// Generated by dart2js (fast startup emitter, strong, trust primitives, omit checks, lax runtime type), the Dart to JavaScript compiler version: 2.13.4. // The code supports the following hooks: // dartPrint(message): // if this function is defined it is called instead of the Dart [print] // method. // // dartMainRunner(main, args): // if this function is defined, the Dart [main] method will not be invoked // directly. Instead, a closure that will invoke [main], and its arguments // [args] is passed to [dartMainRunner]. // // dartDeferredLibraryLoader(uri, successCallback, errorCallback): // if this function is defined, it will be called when a deferred library // is loaded. It should load and eval the javascript of `uri`, and call // successCallback. If it fails to do so, it should call errorCallback with // an error. // // dartCallInstrumentation(id, qualifiedName): // if this function is defined, it will be called at each entry of a // method or constructor. Used only when compiling programs with // --experiment-call-instrumentation. (function dartProgram() { function copyProperties(from, to) { var keys = Object.keys(from); for (var i = 0; i < keys.length; i++) { var key = keys[i]; to[key] = from[key]; } } function mixinProperties(from, to) { var keys = Object.keys(from); for (var i = 0; i < keys.length; i++) { var key = keys[i]; if (!to.hasOwnProperty(key)) to[key] = from[key]; } } var supportsDirectProtoAccess = function() { var cls = function() { }; cls.prototype = {p: {}}; var object = new cls(); if (!(object.__proto__ && object.__proto__.p === cls.prototype.p)) return false; try { if (typeof navigator != "undefined" && typeof navigator.userAgent == "string" && navigator.userAgent.indexOf("Chrome/") >= 0) return true; if (typeof version == "function" && version.length == 0) { var v = version(); if (/^\d+\.\d+\.\d+\.\d+$/.test(v)) return true; } } catch (_) { } return false; }(); function setFunctionNamesIfNecessary(holders) { function t() { } ; if (typeof t.name == "string") return; for (var i = 0; i < holders.length; i++) { var holder = holders[i]; var keys = Object.keys(holder); for (var j = 0; j < keys.length; j++) { var key = keys[j]; var f = holder[key]; if (typeof f == "function") f.name = key; } } } function inherit(cls, sup) { cls.prototype.constructor = cls; cls.prototype["$is" + cls.name] = cls; if (sup != null) { if (supportsDirectProtoAccess) { cls.prototype.__proto__ = sup.prototype; return; } var clsPrototype = Object.create(sup.prototype); copyProperties(cls.prototype, clsPrototype); cls.prototype = clsPrototype; } } function inheritMany(sup, classes) { for (var i = 0; i < classes.length; i++) inherit(classes[i], sup); } function mixin(cls, mixin) { mixinProperties(mixin.prototype, cls.prototype); cls.prototype.constructor = cls; } function lazyOld(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { holder[getterName] = function() { H.throwCyclicInit(name); }; var result; var sentinelInProgress = initializer; try { if (holder[name] === uninitializedSentinel) { result = holder[name] = sentinelInProgress; result = holder[name] = initializer(); } else result = holder[name]; } finally { if (result === sentinelInProgress) holder[name] = null; holder[getterName] = function() { return this[name]; }; } return result; }; } function lazy(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { if (holder[name] === uninitializedSentinel) holder[name] = initializer(); holder[getterName] = function() { return this[name]; }; return holder[name]; }; } function lazyFinal(holder, name, getterName, initializer) { var uninitializedSentinel = holder; holder[name] = uninitializedSentinel; holder[getterName] = function() { if (holder[name] === uninitializedSentinel) { var value = initializer(); if (holder[name] !== uninitializedSentinel) H.throwLateInitializationError(name); holder[name] = value; } holder[getterName] = function() { return this[name]; }; return holder[name]; }; } function makeConstList(list) { list.immutable$list = Array; list.fixed$length = Array; return list; } function convertToFastObject(properties) { function t() { } t.prototype = properties; new t(); return properties; } function convertAllToFastObject(arrayOfObjects) { for (var i = 0; i < arrayOfObjects.length; ++i) convertToFastObject(arrayOfObjects[i]); } var functionCounter = 0; function tearOffGetter(funcs, applyTrampolineIndex, reflectionInfo, name, isIntercepted) { return isIntercepted ? new Function("funcs", "applyTrampolineIndex", "reflectionInfo", "name", "H", "c", "return function tearOff_" + name + functionCounter++ + "(receiver) {" + "if (c === null) c = " + "H.closureFromTearOff" + "(" + "this, funcs, applyTrampolineIndex, reflectionInfo, false, true, name);" + "return new c(this, funcs[0], receiver, name);" + "}")(funcs, applyTrampolineIndex, reflectionInfo, name, H, null) : new Function("funcs", "applyTrampolineIndex", "reflectionInfo", "name", "H", "c", "return function tearOff_" + name + functionCounter++ + "() {" + "if (c === null) c = " + "H.closureFromTearOff" + "(" + "this, funcs, applyTrampolineIndex, reflectionInfo, false, false, name);" + "return new c(this, funcs[0], null, name);" + "}")(funcs, applyTrampolineIndex, reflectionInfo, name, H, null); } function tearOff(funcs, applyTrampolineIndex, reflectionInfo, isStatic, name, isIntercepted) { var cache = null; return isStatic ? function() { if (cache === null) cache = H.closureFromTearOff(this, funcs, applyTrampolineIndex, reflectionInfo, true, false, name).prototype; return cache; } : tearOffGetter(funcs, applyTrampolineIndex, reflectionInfo, name, isIntercepted); } var typesOffset = 0; function installTearOff(container, getterName, isStatic, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex) { var funs = []; for (var i = 0; i < funsOrNames.length; i++) { var fun = funsOrNames[i]; if (typeof fun == "string") fun = container[fun]; fun.$callName = callNames[i]; funs.push(fun); } var fun = funs[0]; fun.$requiredArgCount = requiredParameterCount; fun.$defaultValues = optionalParameterDefaultValues; var reflectionInfo = funType; if (typeof reflectionInfo == "number") reflectionInfo += typesOffset; var name = funsOrNames[0]; fun.$stubName = name; var getterFunction = tearOff(funs, applyIndex || 0, reflectionInfo, isStatic, name, isIntercepted); container[getterName] = getterFunction; if (isStatic) fun.$tearOff = getterFunction; } function installStaticTearOff(container, getterName, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex) { return installTearOff(container, getterName, true, false, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex); } function installInstanceTearOff(container, getterName, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex) { return installTearOff(container, getterName, false, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, funsOrNames, funType, applyIndex); } function setOrUpdateInterceptorsByTag(newTags) { var tags = init.interceptorsByTag; if (!tags) { init.interceptorsByTag = newTags; return; } copyProperties(newTags, tags); } function setOrUpdateLeafTags(newTags) { var tags = init.leafTags; if (!tags) { init.leafTags = newTags; return; } copyProperties(newTags, tags); } function updateTypes(newTypes) { var types = init.types; var length = types.length; types.push.apply(types, newTypes); return length; } function updateHolder(holder, newHolder) { copyProperties(newHolder, holder); return holder; } var hunkHelpers = function() { var mkInstance = function(isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, applyIndex) { return function(container, getterName, name, funType) { return installInstanceTearOff(container, getterName, isIntercepted, requiredParameterCount, optionalParameterDefaultValues, callNames, [name], funType, applyIndex); }; }, mkStatic = function(requiredParameterCount, optionalParameterDefaultValues, callNames, applyIndex) { return function(container, getterName, name, funType) { return installStaticTearOff(container, getterName, requiredParameterCount, optionalParameterDefaultValues, callNames, [name], funType, applyIndex); }; }; return {inherit: inherit, inheritMany: inheritMany, mixin: mixin, installStaticTearOff: installStaticTearOff, installInstanceTearOff: installInstanceTearOff, _instance_0u: mkInstance(0, 0, null, ["call$0"], 0), _instance_1u: mkInstance(0, 1, null, ["call$1"], 0), _instance_2u: mkInstance(0, 2, null, ["call$2"], 0), _instance_0i: mkInstance(1, 0, null, ["call$0"], 0), _instance_1i: mkInstance(1, 1, null, ["call$1"], 0), _instance_2i: mkInstance(1, 2, null, ["call$2"], 0), _static_0: mkStatic(0, null, ["call$0"], 0), _static_1: mkStatic(1, null, ["call$1"], 0), _static_2: mkStatic(2, null, ["call$2"], 0), makeConstList: makeConstList, lazy: lazy, lazyFinal: lazyFinal, lazyOld: lazyOld, updateHolder: updateHolder, convertToFastObject: convertToFastObject, setFunctionNamesIfNecessary: setFunctionNamesIfNecessary, updateTypes: updateTypes, setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag, setOrUpdateLeafTags: setOrUpdateLeafTags}; }(); function initializeDeferredHunk(hunk) { typesOffset = init.types.length; hunk(hunkHelpers, init, holders, $); } function getGlobalFromName(name) { for (var i = 0; i < holders.length; i++) { if (holders[i] == C) continue; if (holders[i][name]) return holders[i][name]; } } var C = {}, H = { initializeEngine: function() { var t1 = {}; if ($._engineInitialized) return; H._addUrlStrategyListener(); P.registerExtension("ext.flutter.disassemble", new H.initializeEngine_closure()); $._engineInitialized = true; $.$get$domRenderer(); if ($.WebExperiments_instance == null) $.WebExperiments_instance = H.WebExperiments$_(); t1.waitingForAnimation = false; $.scheduleFrameCallback = new H.initializeEngine_closure0(t1); if ($.Keyboard__instance == null) $.Keyboard__instance = H.Keyboard$_(); if ($.MouseCursor__instance == null) $.MouseCursor__instance = new H.MouseCursor(); }, _addUrlStrategyListener: function() { self._flutter_web_set_location_strategy = P.allowInterop(new H._addUrlStrategyListener_closure()); $._hotRestartListeners.push(new H._addUrlStrategyListener_closure0()); }, toMatrix32: function(matrix64) { var matrix32 = new Float32Array(16); matrix32[15] = matrix64[15]; matrix32[14] = matrix64[14]; matrix32[13] = matrix64[13]; matrix32[12] = matrix64[12]; matrix32[11] = matrix64[11]; matrix32[10] = matrix64[10]; matrix32[9] = matrix64[9]; matrix32[8] = matrix64[8]; matrix32[7] = matrix64[7]; matrix32[6] = matrix64[6]; matrix32[5] = matrix64[5]; matrix32[4] = matrix64[4]; matrix32[3] = matrix64[3]; matrix32[2] = matrix64[2]; matrix32[1] = matrix64[1]; matrix32[0] = matrix64[0]; return matrix32; }, BitmapCanvas$: function(_bounds, renderStrategy, density) { var t1 = W._ElementFactoryProvider_createElement_tag("flt-canvas", null), t2 = H.setRuntimeTypeInfo([], type$.JSArray_Element), t3 = H.EnginePlatformDispatcher_browserDevicePixelRatio(), t4 = _bounds.left, t5 = _bounds.right - t4, t6 = H.BitmapCanvas__widthToPhysical(t5), t7 = _bounds.top, t8 = _bounds.bottom - t7, t9 = H.BitmapCanvas__heightToPhysical(t8); t8 = new H._CanvasPool(H.BitmapCanvas__widthToPhysical(t5), H.BitmapCanvas__heightToPhysical(t8), density, H.setRuntimeTypeInfo([], type$.JSArray__SaveStackEntry), H.Matrix4$identity()); t3 = new H.BitmapCanvas(_bounds, t1, t8, t2, t6, t9, t3, density, renderStrategy); t9 = t1.style; t9.position = "absolute"; t3._canvasPositionX = C.JSNumber_methods.floor$0(t4) - 1; t3._canvasPositionY = C.JSNumber_methods.floor$0(t7) - 1; t3._updateRootElementTransform$0(); t8._rootElement = type$.HtmlElement._as(t1); t3._setupInitialTransform$0(); return t3; }, BitmapCanvas__widthToPhysical: function(width) { return C.JSNumber_methods.ceil$0((width + 1) * H.EnginePlatformDispatcher_browserDevicePixelRatio()) + 2; }, BitmapCanvas__heightToPhysical: function(height) { return C.JSNumber_methods.ceil$0((height + 1) * H.EnginePlatformDispatcher_browserDevicePixelRatio()) + 2; }, BitmapCanvas__onEvictElement: function(element) { (element && C.ImageElement_methods).remove$0(element); }, _stringForBlendMode: function(blendMode) { if (blendMode == null) return null; switch (blendMode) { case C.BlendMode_3: return "source-over"; case C.BlendMode_5: return "source-in"; case C.BlendMode_7: return "source-out"; case C.BlendMode_9: return "source-atop"; case C.BlendMode_4: return "destination-over"; case C.BlendMode_6: return "destination-in"; case C.BlendMode_8: return "destination-out"; case C.BlendMode_10: return "destination-atop"; case C.BlendMode_12: return "lighten"; case C.BlendMode_1: return "copy"; case C.BlendMode_11: return "xor"; case C.BlendMode_24: case C.BlendMode_13: return "multiply"; case C.BlendMode_14: return "screen"; case C.BlendMode_15: return "overlay"; case C.BlendMode_16: return "darken"; case C.BlendMode_17: return "lighten"; case C.BlendMode_18: return "color-dodge"; case C.BlendMode_19: return "color-burn"; case C.BlendMode_20: return "hard-light"; case C.BlendMode_21: return "soft-light"; case C.BlendMode_22: return "difference"; case C.BlendMode_23: return "exclusion"; case C.BlendMode_25: return "hue"; case C.BlendMode_26: return "saturation"; case C.BlendMode_27: return "color"; case C.BlendMode_28: return "luminosity"; default: throw H.wrapException(P.UnimplementedError$("Flutter Web does not support the blend mode: " + blendMode.toString$0(0))); } }, _stringForStrokeCap: function(strokeCap) { switch (strokeCap) { case C.StrokeCap_0: return "butt"; case C.StrokeCap_1: return "round"; case C.StrokeCap_2: default: return "square"; } }, _stringForStrokeJoin: function(strokeJoin) { switch (strokeJoin) { case C.StrokeJoin_1: return "round"; case C.StrokeJoin_2: return "bevel"; case C.StrokeJoin_0: default: return "miter"; } }, _clipContent: function(clipStack, $content, offset, currentTransform) { var root, curElement, clipIndex, entry, t2, newElement, t3, rect, newClipTransform, transformKind, clipOffsetX, clipOffsetY, newClipTransform0, t4, t5, value, borderRadius, t6, reverseTransformDiv, _s8_ = "absolute", _s16_ = "transform-origin", _s9_ = "transform", _s15_ = "transform-style", t1 = type$.JSArray_Element, clipDefs = H.setRuntimeTypeInfo([], t1), len = clipStack.length; for (root = null, curElement = null, clipIndex = 0; clipIndex < len; ++clipIndex, curElement = reverseTransformDiv) { entry = clipStack[clipIndex]; t2 = document; newElement = t2.createElement("div"); t3 = newElement.style; t3.position = _s8_; t3 = $.___browserEngine; if (t3 === $) { t3 = H.detectBrowserEngineByVendorAgent(window.navigator.vendor, window.navigator.userAgent.toLowerCase()); if ($.___browserEngine === $) $.___browserEngine = t3; else t3 = H.throwExpression(H.LateError$fieldADI("_browserEngine")); } if (t3 === C.BrowserEngine_1) { t3 = newElement.style; t3.zIndex = "0"; } if (root == null) root = newElement; else { t3 = $.$get$domRenderer(); curElement.toString; t3.toString; curElement.appendChild(newElement); } rect = entry.rect; newClipTransform = entry.currentTransform; t3 = newClipTransform.__engine$_m4storage; transformKind = H.transformKindOf(t3); if (rect != null) { clipOffsetX = rect.left; clipOffsetY = rect.top; t3 = new Float32Array(16); newClipTransform0 = new H.Matrix40(t3); newClipTransform0.setFrom$1(newClipTransform); newClipTransform0.translate$2(0, clipOffsetX, clipOffsetY); t4 = newElement.style; t4.overflow = "hidden"; t5 = H.S(rect.right - clipOffsetX) + "px"; t4.width = t5; t5 = H.S(rect.bottom - clipOffsetY) + "px"; t4.height = t5; t4 = newElement.style; t4.toString; t5 = C.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s16_); t4.setProperty(t5, "0 0 0", ""); value = H.float64ListToCssTransform(t3); t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s9_); t4.setProperty(t3, value, ""); newClipTransform = newClipTransform0; } else { t4 = entry.rrect; if (t4 != null) { borderRadius = H.S(t4.tlRadiusX) + "px " + H.S(t4.trRadiusX) + "px " + H.S(t4.brRadiusX) + "px " + H.S(t4.blRadiusX) + "px"; clipOffsetX = t4.left; clipOffsetY = t4.top; t3 = new Float32Array(16); newClipTransform0 = new H.Matrix40(t3); newClipTransform0.setFrom$1(newClipTransform); newClipTransform0.translate$2(0, clipOffsetX, clipOffsetY); t5 = newElement.style; t5.toString; t6 = C.CssStyleDeclaration_methods._browserPropertyName$1(t5, "border-radius"); t5.setProperty(t6, borderRadius, ""); t5.overflow = "hidden"; t6 = H.S(t4.right - clipOffsetX) + "px"; t5.width = t6; t4 = H.S(t4.bottom - clipOffsetY) + "px"; t5.height = t4; t4 = newElement.style; t4.toString; t5 = C.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s16_); t4.setProperty(t5, "0 0 0", ""); value = H.float64ListToCssTransform(t3); t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s9_); t4.setProperty(t3, value, ""); newClipTransform = newClipTransform0; } else { t4 = entry.path; if (t4 != null) { t5 = newElement.style; value = H.float64ListToCssTransform(t3); t5.toString; t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t5, _s9_); t5.setProperty(t3, value, ""); t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t5, _s16_); t5.setProperty(t3, "0 0 0", ""); clipDefs.push(W.Element_Element$html(H.createSvgClipDef(newElement, t4), new H._NullTreeSanitizer(), null)); } } } reverseTransformDiv = t2.createElement("div"); t2 = reverseTransformDiv.style; t2.position = _s8_; t2 = new Float32Array(16); t3 = new H.Matrix40(t2); t3.setFrom$1(newClipTransform); t3.copyInverse$1(t3); t3 = reverseTransformDiv.style; t3.toString; t4 = C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s16_); t3.setProperty(t4, "0 0 0", ""); value = H.float64ListToCssTransform(t2); t2 = C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s9_); t3.setProperty(t2, value, ""); if (transformKind === C.TransformKind_2) { t2 = newElement.style; t2.toString; t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t2, _s15_); t2.setProperty(t3, "preserve-3d", ""); t2 = reverseTransformDiv.style; t2.toString; t3 = C.CssStyleDeclaration_methods._browserPropertyName$1(t2, _s15_); t2.setProperty(t3, "preserve-3d", ""); } newElement.appendChild(reverseTransformDiv); } t2 = root.style; t2.position = _s8_; t2 = $.$get$domRenderer(); curElement.toString; t2.toString; curElement.appendChild($content); H.setElementTransform($content, H.transformWithOffset(currentTransform, offset).__engine$_m4storage); t1 = H.setRuntimeTypeInfo([root], t1); C.JSArray_methods.addAll$1(t1, clipDefs); return t1; }, _maskFilterToCanvasFilter: function(maskFilter) { var t1, t2; if (maskFilter != null) { t1 = maskFilter._sigma; t2 = $.$get$window()._debugDevicePixelRatio; return "blur(" + H.S(t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2)) + "px)"; } else return "none"; }, _browserEngine: function() { var t1 = $.___browserEngine; if (t1 === $) { t1 = H.detectBrowserEngineByVendorAgent(window.navigator.vendor, window.navigator.userAgent.toLowerCase()); if ($.___browserEngine === $) $.___browserEngine = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_browserEngine")); } return t1; }, detectBrowserEngineByVendorAgent: function(vendor, agent) { var exp; if (vendor === "Google Inc.") { exp = P.RegExp_RegExp("SAMSUNG|SGH-[I|N|T]|GT-[I|N]|SM-[A|N|P|T|Z]|SHV-E|SCH-[I|J|R|S]|SPH-L", true, false); if (exp._nativeRegExp.test(agent.toUpperCase())) return C.BrowserEngine_5; return C.BrowserEngine_0; } else if (vendor === "Apple Computer, Inc.") return C.BrowserEngine_1; else if (C.JSString_methods.contains$1(agent, "edge/")) return C.BrowserEngine_3; else if (C.JSString_methods.contains$1(agent, "Edg/")) return C.BrowserEngine_0; else if (C.JSString_methods.contains$1(agent, "trident/7.0")) return C.BrowserEngine_4; else if (vendor === "" && C.JSString_methods.contains$1(agent, "firefox")) return C.BrowserEngine_2; P.print("WARNING: failed to detect current browser engine."); return C.BrowserEngine_6; }, _operatingSystem: function() { var t1 = $.___operatingSystem; if (t1 === $) { t1 = H._detectOperatingSystem(); if ($.___operatingSystem === $) $.___operatingSystem = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_operatingSystem")); } return t1; }, _detectOperatingSystem: function() { var userAgent, t1 = window.navigator.platform; t1.toString; userAgent = window.navigator.userAgent; if (C.JSString_methods.startsWith$1(t1, "Mac")) return C.OperatingSystem_4; else if (C.JSString_methods.contains$1(t1.toLowerCase(), "iphone") || C.JSString_methods.contains$1(t1.toLowerCase(), "ipad") || C.JSString_methods.contains$1(t1.toLowerCase(), "ipod")) return C.OperatingSystem_0; else if (J.contains$1$asx(userAgent, "Android")) return C.OperatingSystem_1; else if (C.JSString_methods.startsWith$1(t1, "Linux")) return C.OperatingSystem_2; else if (C.JSString_methods.startsWith$1(t1, "Win")) return C.OperatingSystem_3; else return C.OperatingSystem_5; }, _detectWebGLVersion: function() { var canvas = W.CanvasElement_CanvasElement(1, 1); if (C.CanvasElement_methods.getContext$1(canvas, "webgl2") != null) return 2; if (C.CanvasElement_methods.getContext$1(canvas, "webgl") != null) return 1; return -1; }, canvasKit: function() { var t1 = $.__canvasKit; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1; }, toSkMatrixFromFloat32: function(matrix4) { var i, matrix4Index, skMatrix = new Float32Array(9); for (i = 0; i < 9; ++i) { matrix4Index = C.List_yXZ[i]; if (matrix4Index < 16) skMatrix[i] = matrix4[matrix4Index]; else skMatrix[i] = 0; } return skMatrix; }, toSkPoint: function(offset) { var point = new Float32Array(2); point[0] = offset._dx; point[1] = offset._dy; return point; }, toSkColorStops: function(colorStops) { var skColorStops, i; if (colorStops == null) return $.$get$_kDefaultSkColorStops(); skColorStops = new Float32Array(4); for (i = 0; i < 4; ++i) skColorStops[i] = colorStops[i]; return skColorStops; }, mallocFloat32List: function(size) { return self.window.flutterCanvasKit.Malloc(self.Float32Array, size); }, _populateSkColor: function(skColor, color) { var array = J.toTypedArray$0$x(skColor), t1 = color.value; array[0] = (t1 >>> 16 & 255) / 255; array[1] = (t1 >>> 8 & 255) / 255; array[2] = (t1 & 255) / 255; array[3] = (t1 >>> 24 & 255) / 255; return array; }, toSkRect: function(rect) { var skRect = new Float32Array(4); skRect[0] = rect.left; skRect[1] = rect.top; skRect[2] = rect.right; skRect[3] = rect.bottom; return skRect; }, fromSkRect: function(skRect) { return new P.Rect(skRect[0], skRect[1], skRect[2], skRect[3]); }, toSkRRect: function(rrect) { var skRRect = new Float32Array(12); skRRect[0] = rrect.left; skRRect[1] = rrect.top; skRRect[2] = rrect.right; skRRect[3] = rrect.bottom; skRRect[4] = rrect.tlRadiusX; skRRect[5] = rrect.tlRadiusY; skRRect[6] = rrect.trRadiusX; skRRect[7] = rrect.trRadiusY; skRRect[8] = rrect.brRadiusX; skRRect[9] = rrect.brRadiusY; skRRect[10] = rrect.blRadiusX; skRRect[11] = rrect.blRadiusY; return skRRect; }, toFlatColors: function(colors) { var i, len = colors.length, result = new Uint32Array(len); for (i = 0; i < len; ++i) result[i] = colors[i].value; return result; }, SkParagraphStyleProperties$: function(receiver) { return new H.SkParagraphStyleProperties(); }, SkTextStyleProperties$: function(receiver) { return new H.SkTextStyleProperties(); }, SkStrutStyleProperties$: function(receiver) { return new H.SkStrutStyleProperties(); }, SkFontStyle$: function(receiver) { return new H.SkFontStyle(); }, SkTextShadow$: function(receiver) { return new H.SkTextShadow(); }, SkFontFeature$: function(receiver) { return new H.SkFontFeature(); }, ProductionCollector$: function() { var t1 = new H.ProductionCollector(H.setRuntimeTypeInfo([], type$.JSArray_SkDeletable)); t1.ProductionCollector$0(); return t1; }, Mutator$transform: function(matrix) { var _null = null; return new H.Mutator(C.MutatorType_3, _null, _null, _null, matrix, _null); }, FontFallbackData_createNotoFontTree: function() { var t2, _i, font, t3, t4, _i0, range, t1 = type$.NotoFont, ranges = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_CodeunitRange); for (t2 = $.$get$_notoFonts(), _i = 0; _i < 25; ++_i) { font = t2[_i]; font._decodingCompleter = font.resolvedFont = null; for (t3 = font.approximateUnicodeRanges, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i0) { range = t3[_i0]; J.add$1$ax(ranges.putIfAbsent$2(0, font, new H.FontFallbackData_createNotoFontTree_closure()), range); } } return H.IntervalTree_IntervalTree$createFromRanges(ranges, t1); }, findFontsForMissingCodeunits: function(codeUnits) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, fonts, t1, coveredCodeUnits, missingCodeUnits, t2, _i, codeUnit, t3, results, unmatchedCodeUnits, resolvedFonts, t4, t5, data; var $async$findFontsForMissingCodeunits = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start data = $.$get$FontFallbackData__instance(); if (C.JSArray_methods.every$1(codeUnits, new H.findFontsForMissingCodeunits_closure(data))) { // goto return $async$goto = 1; break; } fonts = P.LinkedHashSet_LinkedHashSet$_empty(type$.NotoFont); t1 = type$.int; coveredCodeUnits = P.LinkedHashSet_LinkedHashSet$_empty(t1); missingCodeUnits = P.LinkedHashSet_LinkedHashSet$_empty(t1); for (t2 = codeUnits.length, _i = 0; _i < codeUnits.length; codeUnits.length === t2 || (0, H.throwConcurrentModificationError)(codeUnits), ++_i) { codeUnit = codeUnits[_i]; t3 = data.notoTree; results = H.setRuntimeTypeInfo([], t3.$ti._eval$1("JSArray<1>")); t3.root.searchForPoint$2(codeUnit, results); fonts.addAll$1(0, results); if (results.length !== 0) coveredCodeUnits.add$1(0, codeUnit); else missingCodeUnits.add$1(0, codeUnit); } t2 = P._LinkedHashSetIterator$(fonts, fonts._collection$_modifications, fonts.$ti._precomputed1); case 3: // for condition if (!t2.moveNext$0()) { // goto after for $async$goto = 4; break; } $async$goto = 5; return P._asyncAwait(t2._collection$_current.ensureResolved$0(), $async$findFontsForMissingCodeunits); case 5: // returning from await. // goto for condition $async$goto = 3; break; case 4: // after for unmatchedCodeUnits = P.LinkedHashSet_LinkedHashSet$from(coveredCodeUnits, t1); fonts = H.findMinimumFontsForCodeUnits(unmatchedCodeUnits, fonts); resolvedFonts = P.LinkedHashSet_LinkedHashSet$_empty(type$._ResolvedNotoSubset); for (t1 = P._LinkedHashSetIterator$(coveredCodeUnits, coveredCodeUnits._collection$_modifications, coveredCodeUnits.$ti._precomputed1), t2 = H._instanceType(fonts)._eval$1("_LinkedHashSetIterator<1>"); t1.moveNext$0();) { t3 = t1._collection$_current; for (t4 = new P._LinkedHashSetIterator(fonts, fonts._collection$_modifications, t2), t4._collection$_cell = fonts._collection$_first; t4.moveNext$0();) { t5 = t4._collection$_current.resolvedFont; if (t5 == null) continue; t5 = t5.tree; results = H.setRuntimeTypeInfo([], t5.$ti._eval$1("JSArray<1>")); t5.root.searchForPoint$2(t3, results); resolvedFonts.addAll$1(0, results); } } for (t1 = P._LinkedHashSetIterator$(resolvedFonts, resolvedFonts._collection$_modifications, resolvedFonts.$ti._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current; $.$get$notoDownloadQueue().add$1(0, t2); } if (missingCodeUnits._collection$_length !== 0 || unmatchedCodeUnits._collection$_length !== 0) if (!data.registeredSymbolsAndEmoji) H._registerSymbolsAndEmoji(); else { t1 = $.$get$notoDownloadQueue(); t2 = t1.pendingSubsets; if (!(t2.get$isNotEmpty(t2) || t1._fontsLoading != null)) { $.$get$printWarning().call$1("Could not find a set of Noto fonts to display all missing characters. Please add a font asset for the missing characters. See: https://flutter.dev/docs/cookbook/design/fonts"); data.codeUnitsWithNoKnownFont.addAll$1(0, missingCodeUnits); } } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$findFontsForMissingCodeunits, $async$completer); }, _makeResolvedNotoFontFromCss: function(css, $name) { var t1, t2, fontFaceUnicodeRanges, fontFaceUrl, resolvingFontFace, t3, urlStart, rawRanges, _i, startEnd, rangeValue, startRange, endRange, rangesMap, subset, t4, _i0, range, _null = null, _s34_ = "Unable to parse Google Fonts CSS: ", subsets = H.setRuntimeTypeInfo([], type$.JSArray__ResolvedNotoSubset); for (t1 = P.LineSplitter_split(css), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")), t2 = type$.JSArray_CodeunitRange, fontFaceUnicodeRanges = _null, fontFaceUrl = fontFaceUnicodeRanges, resolvingFontFace = false; t1.moveNext$0();) { t3 = t1.get$current(t1); if (!resolvingFontFace) { if (t3 !== "@font-face {") continue; resolvingFontFace = true; } else if (J.startsWith$1$s(t3, " src:")) { urlStart = C.JSString_methods.indexOf$1(t3, "url("); if (urlStart === -1) { $.$get$printWarning().call$1("Unable to resolve Noto font URL: " + t3); return _null; } fontFaceUrl = C.JSString_methods.substring$2(t3, urlStart + 4, C.JSString_methods.indexOf$1(t3, ")")); resolvingFontFace = true; } else if (C.JSString_methods.startsWith$1(t3, " unicode-range:")) { fontFaceUnicodeRanges = H.setRuntimeTypeInfo([], t2); rawRanges = C.JSString_methods.substring$2(t3, 17, t3.length - 1).split(", "); for (t3 = rawRanges.length, _i = 0; _i < t3; ++_i) { startEnd = J.split$1$s(rawRanges[_i], "-"); if (startEnd.length === 1) { rangeValue = P.int_parse(J.substring$1$s(C.JSArray_methods.get$single(startEnd), 2), 16); fontFaceUnicodeRanges.push(new H.CodeunitRange(rangeValue, rangeValue)); } else { startRange = startEnd[0]; endRange = startEnd[1]; fontFaceUnicodeRanges.push(new H.CodeunitRange(P.int_parse(J.substring$1$s(startRange, 2), 16), P.int_parse(endRange, 16))); } } resolvingFontFace = true; } else { if (t3 === "}") { if (fontFaceUrl == null || fontFaceUnicodeRanges == null) { $.$get$printWarning().call$1(_s34_ + H.S(css)); return _null; } subsets.push(new H._ResolvedNotoSubset(fontFaceUrl, $name, fontFaceUnicodeRanges)); } else continue; resolvingFontFace = false; } } if (resolvingFontFace) { $.$get$printWarning().call$1(_s34_ + H.S(css)); return _null; } t1 = type$._ResolvedNotoSubset; rangesMap = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_CodeunitRange); for (t2 = subsets.length, _i = 0; _i < subsets.length; subsets.length === t2 || (0, H.throwConcurrentModificationError)(subsets), ++_i) { subset = subsets[_i]; for (t3 = subset.ranges, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i0) { range = t3[_i0]; J.add$1$ax(rangesMap.putIfAbsent$2(0, subset, new H._makeResolvedNotoFontFromCss_closure()), range); } } if (rangesMap.get$isEmpty(rangesMap)) { $.$get$printWarning().call$1("Parsed Google Fonts CSS was empty: " + H.S(css)); return _null; } return new H._ResolvedNotoFont($name, H.IntervalTree_IntervalTree$createFromRanges(rangesMap, t1)); }, _registerSymbolsAndEmoji: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, symbolsCss, emojiCss, t1, symbolsFontUrl, emojiFontUrl, data; var $async$_registerSymbolsAndEmoji = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start data = $.$get$FontFallbackData__instance(); if (data.registeredSymbolsAndEmoji) { // goto return $async$goto = 1; break; } data.registeredSymbolsAndEmoji = true; $async$goto = 3; return P._asyncAwait($.$get$notoDownloadQueue().downloader.downloadAsString$1("https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols"), $async$_registerSymbolsAndEmoji); case 3: // returning from await. symbolsCss = $async$result; $async$goto = 4; return P._asyncAwait($.$get$notoDownloadQueue().downloader.downloadAsString$1("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji+Compat"), $async$_registerSymbolsAndEmoji); case 4: // returning from await. emojiCss = $async$result; t1 = new H._registerSymbolsAndEmoji_extractUrlFromCss(); symbolsFontUrl = t1.call$1(symbolsCss); emojiFontUrl = t1.call$1(emojiCss); if (symbolsFontUrl != null) $.$get$notoDownloadQueue().add$1(0, new H._ResolvedNotoSubset(symbolsFontUrl, "Noto Sans Symbols", C.List_empty2)); else $.$get$printWarning().call$1("Error parsing CSS for Noto Symbols font."); if (emojiFontUrl != null) $.$get$notoDownloadQueue().add$1(0, new H._ResolvedNotoSubset(emojiFontUrl, "Noto Color Emoji Compat", C.List_empty2)); else $.$get$printWarning().call$1("Error parsing CSS for Noto Emoji font."); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_registerSymbolsAndEmoji, $async$completer); }, findMinimumFontsForCodeUnits: function(codeUnits, fonts) { var language, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _box_0, t12, maxCodeUnitsCovered, t13, t14, codeUnitsCovered, t15, t16, minimumFonts = P.LinkedHashSet_LinkedHashSet$_empty(type$.NotoFont), bestFonts = H.setRuntimeTypeInfo([], type$.JSArray_NotoFont), t1 = window.navigator; t1.toString; language = t1.language || t1.userLanguage; for (t1 = H._instanceType(fonts)._eval$1("_LinkedHashSetIterator<1>"), t2 = H._instanceType(codeUnits)._eval$1("_LinkedHashSetIterator<1>"), t3 = language === "ja", t4 = language === "zh-HK", t5 = language !== "zh-Hant", t6 = language !== "zh-Hans", t7 = language !== "zh-CN", t8 = language !== "zh-SG", t9 = language === "zh-MY", t10 = language !== "zh-TW", t11 = language === "zh-MO"; codeUnits._collection$_length !== 0;) { _box_0 = {}; C.JSArray_methods.set$length(bestFonts, 0); for (t12 = new P._LinkedHashSetIterator(fonts, fonts._collection$_modifications, t1), t12._collection$_cell = fonts._collection$_first, maxCodeUnitsCovered = 0; t12.moveNext$0();) { t13 = t12._collection$_current; for (t14 = new P._LinkedHashSetIterator(codeUnits, codeUnits._collection$_modifications, t2), t14._collection$_cell = codeUnits._collection$_first, codeUnitsCovered = 0; t14.moveNext$0();) { t15 = t14._collection$_current; t16 = t13.resolvedFont; if ((t16 == null ? null : t16.tree.root.containsDeep$1(t15)) === true) ++codeUnitsCovered; } if (codeUnitsCovered > maxCodeUnitsCovered) { C.JSArray_methods.set$length(bestFonts, 0); bestFonts.push(t13); maxCodeUnitsCovered = codeUnitsCovered; } else if (codeUnitsCovered === maxCodeUnitsCovered) bestFonts.push(t13); } if (maxCodeUnitsCovered === 0) break; _box_0.bestFont = C.JSArray_methods.get$first(bestFonts); if (bestFonts.length > 1) if (C.JSArray_methods.every$1(bestFonts, new H.findMinimumFontsForCodeUnits_closure())) if (!t6 || !t7 || !t8 || t9) { if (C.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansSC())) _box_0.bestFont = $.$get$_notoSansSC(); } else if (!t5 || !t10 || t11) { if (C.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansTC())) _box_0.bestFont = $.$get$_notoSansTC(); } else if (t4) { if (C.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansHK())) _box_0.bestFont = $.$get$_notoSansHK(); } else if (t3) if (C.JSArray_methods.contains$1(bestFonts, $.$get$_notoSansJP())) _box_0.bestFont = $.$get$_notoSansJP(); codeUnits._filterWhere$2(new H.findMinimumFontsForCodeUnits_closure0(_box_0), true); minimumFonts.addAll$1(0, bestFonts); } return minimumFonts; }, NotoFont$: function($name, approximateUnicodeRanges) { return new H.NotoFont($name, approximateUnicodeRanges); }, CodeunitRange$: function(start, end) { return new H.CodeunitRange(start, end); }, _RegisteredFont$: function(bytes, family, typeface) { J.getGlyphBounds$3$x(new self.window.flutterCanvasKit.Font(typeface), H.setRuntimeTypeInfo([0], type$.JSArray_int), null, null); return new H._RegisteredFont(family, bytes, typeface); }, ImageCodecException$: function(_message) { return new H.ImageCodecException(_message); }, skiaInstantiateWebImageCodec: function(url, chunkCallback) { var t2, t1 = new P._Future($.Zone__current, type$._Future_Codec), completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_Codec), request = $.$get$httpRequestFactory().call$0(); (request && C.HttpRequest_methods).open$3$async(request, "GET", url, true); request.responseType = "arraybuffer"; t2 = type$.legacy_ProgressEvent; W._EventStreamSubscription$(request, "progress", new H.skiaInstantiateWebImageCodec_closure(chunkCallback), false, t2); W._EventStreamSubscription$(request, "error", new H.skiaInstantiateWebImageCodec_closure0(completer, url), false, t2); W._EventStreamSubscription$(request, "load", new H.skiaInstantiateWebImageCodec_closure1(request, completer, url), false, t2); request.send(); return t1; }, CkAnimatedImage$decodeFromBytes: function(_bytes, src) { var t1 = new H.CkAnimatedImage(src, _bytes); t1.ManagedSkiaObject$1(null); return t1; }, CkImage$: function(skImage) { var t1 = new H.CkImage($); t1.CkImage$1(skImage); return t1; }, CkImage__encodeImage: function(alphaType, colorSpace, colorType, format, skImage) { var t1 = J.getInterceptor$x(skImage), bytes = format === C.ImageByteFormat_0 ? t1.readPixels$3(skImage, 0, 0, {width: t1.width$0(skImage), height: t1.height$0(skImage), alphaType: alphaType, colorSpace: colorSpace, colorType: colorType}) : t1.encodeToBytes$0(skImage); if (bytes == null) t1 = null; else { t1 = J.getInterceptor$x(bytes); t1 = J.asByteData$2$x(t1.get$buffer(bytes), 0, t1.get$length(bytes)); } return t1; }, _detectRenderer: function() { if (self.window.flutterWebRenderer != null) { var t1 = self.window.flutterWebRenderer; t1.toString; return J.$eq$(t1, "canvaskit"); } t1 = H._operatingSystem(); return J.containsKey$1$x(C.Set_m536._collection$_map, t1); }, initializeCanvasKit: function() { var t3, t4, t1 = {}, t2 = new P._Future($.Zone__current, type$._Future_void); t1._loadSubscription = $; t3 = $.$get$domRenderer(); t4 = t3._canvasKitScript; t4.toString; new H.initializeCanvasKit__loadSubscription_set(t1).call$1(W._EventStreamSubscription$(t4, "load", new H.initializeCanvasKit_closure(new H.initializeCanvasKit__loadSubscription_get(t1), new P._AsyncCompleter(t2, type$._AsyncCompleter_void)), false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t1 = W._ElementFactoryProvider_createElement_tag("flt-scene", null); $.skiaSceneHost = t1; t3.renderScene$1(t1); return t2; }, IntervalTree_IntervalTree$createFromRanges: function(rangesMap, $T) { var t1, intervals = H.setRuntimeTypeInfo([], $T._eval$1("JSArray>")); rangesMap.forEach$1(0, new H.IntervalTree_IntervalTree$createFromRanges_closure(intervals, $T)); C.JSArray_methods.sort$1(intervals, new H.IntervalTree_IntervalTree$createFromRanges_closure0($T)); t1 = new H.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree($T).call$1(intervals); t1.toString; new H.IntervalTree_IntervalTree$createFromRanges__computeHigh($T).call$1(t1); return new H.IntervalTree(t1, $T._eval$1("IntervalTree<0>")); }, CkPaint$: function() { var t1 = new H.CkPaint(C.BlendMode_3, C.PaintingStyle_0, C.StrokeCap_0, C.StrokeJoin_0, C.Color_4278190080, C.FilterQuality_0); t1.ManagedSkiaObject$1(null); return t1; }, CkPath$: function() { var t1 = new H.CkPath(C.PathFillType_0); t1.ManagedSkiaObject$1(null); return t1; }, CkPath$_fromSkPath: function(skPath, _fillType) { var t2, t3, t1 = new H.CkPath(_fillType); t1.ManagedSkiaObject$1(skPath); t2 = t1.get$skiaObject(); t3 = t1._fillType; J.setFillType$1$x(t2, $.$get$_skFillTypes()[t3.index]); return t1; }, SkiaObjects_registerCleanupCallback: function() { if ($.SkiaObjects__addedCleanupCallback) return; $.$get$EnginePlatformDispatcher__instance().get$rasterizer()._postFrameCallbacks.push(H._engine_SkiaObjects_postFrameCleanUp$closure()); $.SkiaObjects__addedCleanupCallback = true; }, SkiaObjects_markCacheForResize: function(cache) { H.SkiaObjects_registerCleanupCallback(); if (C.JSArray_methods.contains$1($.SkiaObjects_cachesToResize, cache)) return; $.SkiaObjects_cachesToResize.push(cache); }, SkiaObjects_postFrameCleanUp: function() { var i, object; if ($.SkiaObjects_resurrectableObjects.length === 0 && $.SkiaObjects_cachesToResize.length === 0) return; for (i = 0; i < $.SkiaObjects_resurrectableObjects.length; ++i) { object = $.SkiaObjects_resurrectableObjects[i]; object.delete$0(0); object.rawSkiaObject = null; } C.JSArray_methods.set$length($.SkiaObjects_resurrectableObjects, 0); for (i = 0; i < $.SkiaObjects_cachesToResize.length; ++i) $.SkiaObjects_cachesToResize[i].resize$0(0); C.JSArray_methods.set$length($.SkiaObjects_cachesToResize, 0); }, CkTextStyle_CkTextStyle: function(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing) { return new H.CkTextStyle(color, decoration, decorationColor, decorationStyle, decorationThickness, fontWeight, fontStyle, textBaseline, fontFamily, fontFamilyFallback, fontSize, letterSpacing, wordSpacing, height, locale, background, foreground, shadows, fontFeatures); }, toSkFontStyle: function(fontWeight, fontStyle) { var style = H.SkFontStyle$(null); if (fontWeight != null) style.weight = $.$get$_skFontWeights()[fontWeight.index]; if (fontStyle != null) style.slant = $.$get$_skFontSlants()[fontStyle.index]; return style; }, CkParagraphBuilder$: function(style) { var t2, t3, t4, t5, t6, t7, _null = null, t1 = H.setRuntimeTypeInfo([], type$.JSArray__ParagraphCommand); type$.CkParagraphStyle._as(style); t2 = H.setRuntimeTypeInfo([], type$.JSArray_double); t3 = H.setRuntimeTypeInfo([], type$.JSArray_CkTextStyle); t4 = $.__canvasKit; t4 = J.MakeFromFontProvider$2$x(J.get$ParagraphBuilder$x(t4 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t4), style.skParagraphStyle, $._skiaFontCollection.fontProvider); t5 = style._fontFamily; t6 = style.__engine$_fontSize; t7 = style._fontWeight; t3.push(H.CkTextStyle_CkTextStyle(_null, _null, _null, _null, _null, _null, t5, _null, _null, t6, style._fontStyle, t7, _null, _null, _null, _null, _null, _null, _null)); return new H.CkParagraphBuilder(t4, style, t1, t2, t3); }, _getEffectiveFontFamilies: function(fontFamily, fontFamilyFallback) { var fontFamilies = H.setRuntimeTypeInfo([], type$.JSArray_String); if (fontFamily != null) fontFamilies.push(fontFamily); if (fontFamilyFallback != null && !C.JSArray_methods.every$1(fontFamilyFallback, new H._getEffectiveFontFamilies_closure(fontFamily))) C.JSArray_methods.addAll$1(fontFamilies, fontFamilyFallback); C.JSArray_methods.addAll$1(fontFamilies, $.$get$FontFallbackData__instance().globalFontFallbacks); return fontFamilies; }, CanvasKitError$: function(message) { return new H.CanvasKitError(message); }, makeFreshSkColor: function(color) { var result = new Float32Array(4); result[0] = (color.get$value(color) >>> 16 & 255) / 255; result[1] = (color.get$value(color) >>> 8 & 255) / 255; result[2] = (color.get$value(color) & 255) / 255; result[3] = (color.get$value(color) >>> 24 & 255) / 255; return result; }, computeSkShadowBounds: function(path, elevation, devicePixelRatio, matrix) { var isComplex, ambientBlur, spotBlur, t1, spotOffsetX, spotOffsetY, shadowBounds, inverse, pathBounds = H.fromSkRect(J.getBounds$0$x(path.get$skiaObject())); if (elevation === 0) return pathBounds; isComplex = !matrix.isIdentityOrTranslation$0(); if (isComplex) pathBounds = H.transformRect(matrix, pathBounds); ambientBlur = Math.min(elevation * 0.0078125 * 64, 150); spotBlur = 1.1 * elevation; t1 = -elevation; spotOffsetX = t1 * 0; spotOffsetY = t1 * -0.75; shadowBounds = new P.Rect(pathBounds.left - 1 + (spotOffsetX - ambientBlur - spotBlur) * devicePixelRatio, pathBounds.top - 1 + (spotOffsetY - ambientBlur - spotBlur) * devicePixelRatio, pathBounds.right + 1 + (spotOffsetX + ambientBlur + spotBlur) * devicePixelRatio, pathBounds.bottom + 1 + (spotOffsetY + ambientBlur + spotBlur) * devicePixelRatio); if (isComplex) { inverse = new H.Matrix40(new Float32Array(16)); if (inverse.copyInverse$1(matrix) !== 0) return H.transformRect(inverse, shadowBounds); else return shadowBounds; } else return shadowBounds; }, drawSkShadow: function(skCanvas, path, color, elevation, transparentOccluder, devicePixelRatio) { var t2, t3, t4, flags = transparentOccluder ? 5 : 4, inAmbient = P.Color$fromARGB(C.JSNumber_methods.round$0((color.get$value(color) >>> 24 & 255) * 0.039), color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), inSpot = P.Color$fromARGB(C.JSNumber_methods.round$0((color.get$value(color) >>> 24 & 255) * 0.25), color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), inTonalColors = {ambient: H.makeFreshSkColor(inAmbient), spot: H.makeFreshSkColor(inSpot)}, t1 = $.__canvasKit, tonalColors = J.computeTonalColors$1$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1, inTonalColors); t1 = path.get$skiaObject(); t2 = new Float32Array(3); t2[2] = devicePixelRatio * elevation; t3 = new Float32Array(3); t3[0] = 0; t3[1] = -450; t3[2] = devicePixelRatio * 600; t4 = J.getInterceptor$x(tonalColors); J.drawShadow$7$x(skCanvas, t1, t2, t3, devicePixelRatio * 1.1, t4.get$ambient(tonalColors), t4.get$spot(tonalColors), flags); }, PasteFromClipboardStrategy_PasteFromClipboardStrategy: function() { var t1 = H._browserEngine(); return t1 === C.BrowserEngine_2 || window.navigator.clipboard == null ? new H.ExecCommandPasteStrategy() : new H.ClipboardAPIPasteStrategy(); }, _buildDrawRectElement: function(rect, paint, tagName, transform) { var t1, t2, left, right, $top, bottom, effectiveTransform, translated, style, cssColor, sigma, rectangle = type$.HtmlElement._as($.$get$domRenderer().createElement$1(0, tagName)), isStroke = paint.style === C.PaintingStyle_1, strokeWidth = paint.strokeWidth; if (strokeWidth == null) strokeWidth = 0; t1 = rect.left; t2 = rect.right; left = Math.min(H.checkNum(t1), H.checkNum(t2)); right = Math.max(H.checkNum(t1), H.checkNum(t2)); t2 = rect.top; t1 = rect.bottom; $top = Math.min(H.checkNum(t2), H.checkNum(t1)); bottom = Math.max(H.checkNum(t2), H.checkNum(t1)); if (transform.isIdentity$0(0)) if (isStroke) { t1 = strokeWidth / 2; effectiveTransform = "translate(" + H.S(left - t1) + "px, " + H.S($top - t1) + "px)"; } else effectiveTransform = "translate(" + H.S(left) + "px, " + H.S($top) + "px)"; else { t1 = new Float32Array(16); translated = new H.Matrix40(t1); translated.setFrom$1(transform); if (isStroke) { t2 = strokeWidth / 2; translated.translate$2(0, left - t2, $top - t2); } else translated.translate$2(0, left, $top); effectiveTransform = H.float64ListToCssTransform(t1); } style = rectangle.style; style.position = "absolute"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform-origin"), "0 0 0", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform"), effectiveTransform, ""); t1 = paint.color; if (t1 == null) cssColor = "#000000"; else { t1 = H.colorToCssString(t1); t1.toString; cssColor = t1; } t1 = paint.maskFilter; if (t1 != null) { sigma = t1._sigma; t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1 && !isStroke) { t1 = "0px 0px " + H.S(sigma * 2) + "px " + cssColor; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "box-shadow"), t1, ""); t1 = paint.color; if (t1 == null) t1 = C.Color_4278190080; t1 = H.colorToCssString(new P.Color(((C.JSNumber_methods.round$0((1 - Math.min(Math.sqrt(sigma) / 6.283185307179586, 1)) * (t1.get$value(t1) >>> 24 & 255)) & 255) << 24 | t1.get$value(t1) & 16777215) >>> 0)); t1.toString; cssColor = t1; } else { t1 = "blur(" + H.S(sigma) + "px)"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "filter"), t1, ""); } } t1 = right - left; if (isStroke) { t1 = H.S(t1 - strokeWidth) + "px"; style.width = t1; t1 = H.S(bottom - $top - strokeWidth) + "px"; style.height = t1; t1 = H._borderStrokeToCssUnit(strokeWidth) + " solid " + cssColor; style.border = t1; } else { t1 = H.S(t1) + "px"; style.width = t1; t1 = H.S(bottom - $top) + "px"; style.height = t1; style.backgroundColor = cssColor; } return rectangle; }, _applyRRectBorderRadius: function(style, rrect) { var t3, t4, t1 = rrect.tlRadiusX, t2 = rrect.trRadiusX; if (t1 == t2) { t3 = rrect.blRadiusX; if (t1 == t3) { t4 = rrect.brRadiusX; t3 = t1 == t4 && t1 == rrect.tlRadiusY && t2 == rrect.trRadiusY && t3 == rrect.blRadiusY && t4 == rrect.brRadiusY; } else t3 = false; } else t3 = false; if (t3) { t1 = H._borderStrokeToCssUnit(rrect.blRadiusX); style.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-radius"), t1, ""); return; } t1 = H._borderStrokeToCssUnit(t1) + " " + H._borderStrokeToCssUnit(rrect.tlRadiusY); style.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-left-radius"), t1, ""); t2 = H._borderStrokeToCssUnit(t2) + " " + H._borderStrokeToCssUnit(rrect.trRadiusY); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-right-radius"), t2, ""); t2 = H._borderStrokeToCssUnit(rrect.blRadiusX) + " " + H._borderStrokeToCssUnit(rrect.blRadiusY); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-left-radius"), t2, ""); t2 = H._borderStrokeToCssUnit(rrect.brRadiusX) + " " + H._borderStrokeToCssUnit(rrect.brRadiusY); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-right-radius"), t2, ""); }, _borderStrokeToCssUnit: function(value) { return J.toStringAsFixed$1$n(value === 0 ? 1 : value, 3) + "px"; }, _pathToSvgElement: function(path, paint, width, height) { var color, t2, t3, sb = new P.StringBuffer(""), t1 = ''; sb._contents = t1; t1 = sb._contents = t1 + "'; t1 = sb._contents = t1 + ""; return W.Element_Element$html(t1.charCodeAt(0) == 0 ? t1 : t1, new H._NullTreeSanitizer(), null); }, DomRenderer$: function() { var t2, t1 = document.body; t1.toString; t1 = new H.DomRenderer(t1); t1.reset$0(0); t2 = $.TextMeasurementService_rulerManager; if (t2 != null) J.remove$0$ax(t2._rulerHost); $.TextMeasurementService_rulerManager = null; t2 = new H.RulerManager(10, P.LinkedHashMap_LinkedHashMap$_empty(type$.ParagraphGeometricStyle, type$.ParagraphRuler), W._ElementFactoryProvider_createElement_tag("flt-ruler-host", null)); t2.RulerHost$0(); $.TextMeasurementService_rulerManager = t2; return t1; }, DomRenderer_setElementStyle: function(element, $name, value) { var t1; if (value == null) element.style.removeProperty($name); else { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, $name), value, null); } }, DomRenderer_setClipPath: function(element, value) { var t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1) { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "-webkit-clip-path"), value, null); } t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "clip-path"), value, null); }, DomRenderer_ellipse: function(context, centerX, centerY, radiusX, radiusY, rotation, startAngle, endAngle, antiClockwise) { var t1 = $.DomRenderer__ellipseFeatureDetected; if (t1 == null ? $.DomRenderer__ellipseFeatureDetected = context.ellipse != null : t1) context.ellipse(centerX, centerY, radiusX, radiusY, rotation, startAngle, endAngle, antiClockwise); else { context.save(); context.translate(centerX, centerY); context.rotate(rotation); context.scale(radiusX, radiusY); context.arc(0, 0, 1, startAngle, endAngle, antiClockwise); context.restore(); } }, DomRenderer__deviceOrientationToLockType: function(deviceOrientation) { switch (deviceOrientation) { case "DeviceOrientation.portraitUp": return "portrait-primary"; case "DeviceOrientation.landscapeLeft": return "portrait-secondary"; case "DeviceOrientation.portraitDown": return "landscape-primary"; case "DeviceOrientation.landscapeRight": return "landscape-secondary"; default: return null; } }, transformWithOffset: function(transform, offset) { var effectiveTransform; if (offset.$eq(0, C.Offset_0_0)) return transform; effectiveTransform = new H.Matrix40(new Float32Array(16)); effectiveTransform.setFrom$1(transform); effectiveTransform.translate$3(0, offset._dx, offset._dy, 0); return effectiveTransform; }, _drawParagraphElement: function(paragraph, offset, transform) { var paragraphElement = paragraph.toDomElement$0(); if (transform != null) H.setElementTransform(paragraphElement, H.transformWithOffset(transform, offset).__engine$_m4storage); return paragraphElement; }, createSvgClipDef: function(element, clipPath) { var t3, pathBounds = clipPath.getBounds$0(0), t1 = pathBounds.right, t2 = pathBounds.bottom, svgClipPath = H._pathToSvgClipPath(clipPath, 0, 0, 1 / t1, 1 / t2); H.DomRenderer_setClipPath(element, "url(#svgClip" + $._clipIdCounter + ")"); t3 = element.style; t1 = H.S(t1) + "px"; t3.width = t1; t1 = H.S(t2) + "px"; t3.height = t1; return svgClipPath; }, _blendColorFilterToSvg: function(color, feBlend, swapLayers) { var t1 = $._filterIdCounter + 1; $._filterIdCounter = t1; t1 = string$.x3csvg_w + t1 + string$.x22x20filt + H.S(H.colorToCssString(color)) + '" flood-opacity="1" result="flood">'; return t1 + (swapLayers ? '' : '') + ""; }, Conic__subdivide: function(src, level, pointList) { var dst, t1, t2, startY, endY, midY, t3; if (0 === level) { pointList.push(new P.Offset(src.p1x, src.p1y)); pointList.push(new P.Offset(src.p2x, src.p2y)); return; } dst = new H._ConicPair(); src._chop$1(dst); t1 = dst.first; t1.toString; t2 = dst.second; t2.toString; startY = src.p0y; endY = src.p2y; if (H.SPath_between(startY, src.p1y, endY)) { midY = t1.p2y; if (!H.SPath_between(startY, midY, endY)) t3 = t1.p2y = t2.p0y = Math.abs(midY - startY) < Math.abs(midY - endY) ? startY : endY; else t3 = midY; if (!H.SPath_between(startY, t1.p1y, t3)) t1.p1y = startY; if (!H.SPath_between(t2.p0y, t2.p1y, endY)) t2.p1y = endY; } --level; H.Conic__subdivide(t1, level, pointList); H.Conic__subdivide(t2, level, pointList); }, _conicEvalNumerator: function(p0, p1, p2, w, t) { var src2w = p1 * w; return ((p2 - 2 * src2w + p0) * t + 2 * (src2w - p0)) * t + p0; }, _conicEvalDenominator: function(w, t) { var $B = 2 * (w - 1); return (-$B * t + $B) * t + 1; }, _chopCubicAtYExtrema: function(points, dest) { var t1, roots, t2, t3, rootCount, y0 = points[1], y1 = points[3], y2 = points[5], _quadRoots = new H._QuadRoots(); _quadRoots.findRoots$3(points[7] - y0 + 3 * (y1 - y2), 2 * (y0 - y1 - y1 + y2), y1 - y0); t1 = _quadRoots.root0; if (t1 == null) roots = H.setRuntimeTypeInfo([], type$.JSArray_double); else { t2 = _quadRoots.root1; t3 = type$.JSArray_double; roots = t2 == null ? H.setRuntimeTypeInfo([t1], t3) : H.setRuntimeTypeInfo([t1, t2], t3); } if (roots.length === 0) return 0; H._chopCubicAt(roots, points, dest); rootCount = roots.length; if (rootCount > 0) { t1 = dest[7]; dest[9] = t1; dest[5] = t1; if (rootCount === 2) { t1 = dest[13]; dest[15] = t1; dest[11] = t1; } } return rootCount; }, _chopCubicAt: function(tValues, points, outPts) { var i, t, t1, bufferPos, p3y, p0x, t2, p0y, p1x, p1y, p2x, p2y, bufferPos0, p3x, t3, ab1x, ab1y, bc1x, bc1y, cd1x, cd1y, abc1x, abc1y, bcd1x, bcd1y, outIndex, outIndex0, i0, rootCount = tValues.length; if (0 === rootCount) for (i = 0; i < 8; ++i) outPts[i] = points[i]; else { t = tValues[0]; for (t1 = rootCount - 1, bufferPos = 0, i = 0; i < rootCount; i = i0, bufferPos = bufferPos0) { t.toString; p3y = points[bufferPos + 7]; p0x = points[bufferPos]; t2 = bufferPos + 1; p0y = points[t2]; p1x = points[bufferPos + 2]; p1y = points[bufferPos + 3]; p2x = points[bufferPos + 4]; p2y = points[bufferPos + 5]; bufferPos0 = bufferPos + 6; p3x = points[bufferPos0]; t3 = 1 - t; ab1x = p0x * t3 + p1x * t; ab1y = p0y * t3 + p1y * t; bc1x = p1x * t3 + p2x * t; bc1y = p1y * t3 + p2y * t; cd1x = p2x * t3 + p3x * t; cd1y = p2y * t3 + p3y * t; abc1x = ab1x * t3 + bc1x * t; abc1y = ab1y * t3 + bc1y * t; bcd1x = bc1x * t3 + cd1x * t; bcd1y = bc1y * t3 + cd1y * t; outPts[bufferPos] = p0x; outIndex = t2 + 1; outPts[t2] = p0y; outIndex0 = outIndex + 1; outPts[outIndex] = ab1x; outIndex = outIndex0 + 1; outPts[outIndex0] = ab1y; outIndex0 = outIndex + 1; outPts[outIndex] = abc1x; outIndex = outIndex0 + 1; outPts[outIndex0] = abc1y; outIndex0 = outIndex + 1; outPts[outIndex] = abc1x * t3 + bcd1x * t; outIndex = outIndex0 + 1; outPts[outIndex0] = abc1y * t3 + bcd1y * t; outIndex0 = outIndex + 1; outPts[outIndex] = bcd1x; outIndex = outIndex0 + 1; outPts[outIndex0] = bcd1y; outIndex0 = outIndex + 1; outPts[outIndex] = cd1x; outIndex = outIndex0 + 1; outPts[outIndex0] = cd1y; outPts[outIndex] = p3x; outPts[outIndex + 1] = p3y; if (i === t1) break; i0 = i + 1; t2 = tValues[i0]; t3 = tValues[i]; t = H._validUnitDivide(t2 - t3, 1 - t3); if (t == null) { t1 = points[bufferPos0 + 3]; outPts[bufferPos0 + 6] = t1; outPts[bufferPos0 + 5] = t1; outPts[bufferPos0 + 4] = t1; break; } } } }, _chopMonoAtY: function(_buffer, bufferStartPos, y) { var tNeg, tPos, t1, t2, t3, tMid, y01, y12, y012, y0123, ycrv0 = _buffer[1 + bufferStartPos] - y, ycrv1 = _buffer[3 + bufferStartPos] - y, ycrv2 = _buffer[5 + bufferStartPos] - y, ycrv3 = _buffer[7 + bufferStartPos] - y; if (ycrv0 < 0) { if (ycrv3 < 0) return null; tNeg = 0; tPos = 1; } else { if (!(ycrv0 > 0)) return 0; tNeg = 1; tPos = 0; } t1 = ycrv1 - ycrv0; t2 = ycrv2 - ycrv1; t3 = ycrv3 - ycrv2; do { tMid = (tPos + tNeg) / 2; y01 = ycrv0 + t1 * tMid; y12 = ycrv1 + t2 * tMid; y012 = y01 + (y12 - y01) * tMid; y0123 = y012 + (y12 + (ycrv2 + t3 * tMid - y12) * tMid - y012) * tMid; if (y0123 === 0) return tMid; if (y0123 < 0) tNeg = tMid; else tPos = tMid; } while (Math.abs(tPos - tNeg) > 0.0000152587890625); return (tNeg + tPos) / 2; }, _evalCubicPts: function(c0, c1, c2, c3, t) { return (((c3 + 3 * (c1 - c2) - c0) * t + 3 * (c2 - c1 - c1 + c0)) * t + 3 * (c1 - c0)) * t + c0; }, SurfacePath$: function() { var t1 = new H.SurfacePath(H.PathRef$(), C.PathFillType_0); t1._resetFields$0(); return t1; }, _arcIsLonePoint: function(oval, startAngle, sweepAngle) { var t1; if (0 === sweepAngle) t1 = 0 === startAngle || 360 === startAngle; else t1 = false; if (t1) return new P.Offset(oval.right, oval.get$center()._dy); return null; }, _computeMinScale: function(radius1, radius2, limit, scale) { var totalRadius = radius1 + radius2; if (totalRadius <= limit) return scale; return Math.min(limit / totalRadius, scale); }, _SkQuadCoefficients$: function(x0, y0, x1, y1, x2, y2) { return new H._SkQuadCoefficients(x2 - 2 * x1 + x0, y2 - 2 * y1 + y0, 2 * (x1 - x0), 2 * (y1 - y0), x0, y0); }, PathRef$: function() { var t1 = new Float32Array(16); t1 = new H.PathRef(t1, new Uint8Array(8)); t1._fVerbsCapacity = t1._fPointsCapacity = 8; t1.fRRectOrOvalStartIdx = 172; return t1; }, PathRef__fPointsFromSource: function(source, offsetX, offsetY) { var len, i, t1, sourceLength = source._fPointsLength, sourceCapacity = source._fPointsCapacity, dest = new Float32Array(sourceCapacity * 2), sourcePoints = source._fPoints; for (len = sourceLength * 2, i = 0; i < len; i += 2) { dest[i] = sourcePoints[i] + offsetX; t1 = i + 1; dest[t1] = sourcePoints[t1] + offsetY; } return dest; }, pathToSvg: function(path, sb, offsetX, offsetY) { var outPts, verb, w, points, len, i, t2, t3, t1 = path.pathRef, iter = new H.PathRefIterator(t1); iter.PathRefIterator$1(t1); outPts = new Float32Array(8); for (; verb = iter.next$1(0, outPts), verb !== 6;) switch (verb) { case 0: sb._contents += "M " + H.S(outPts[0] + offsetX) + " " + H.S(outPts[1] + offsetY); break; case 1: sb._contents += "L " + H.S(outPts[2] + offsetX) + " " + H.S(outPts[3] + offsetY); break; case 4: sb._contents += "C " + H.S(outPts[2] + offsetX) + " " + H.S(outPts[3] + offsetY) + " " + H.S(outPts[4] + offsetX) + " " + H.S(outPts[5] + offsetY) + " " + H.S(outPts[6] + offsetX) + " " + H.S(outPts[7] + offsetY); break; case 2: sb._contents += "Q " + H.S(outPts[2] + offsetX) + " " + H.S(outPts[3] + offsetY) + " " + H.S(outPts[4] + offsetX) + " " + H.S(outPts[5] + offsetY); break; case 3: w = t1._conicWeights[iter._conicWeightIndex]; points = new H.Conic(outPts[0], outPts[1], outPts[2], outPts[3], outPts[4], outPts[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t2 = points[i]; t3 = points[i + 1]; sb._contents += "Q " + H.S(t2._dx + offsetX) + " " + H.S(t2._dy + offsetY) + " " + H.S(t3._dx + offsetX) + " " + H.S(t3._dy + offsetY); } break; case 5: sb._contents += "Z"; break; default: throw H.wrapException(P.UnimplementedError$("Unknown path verb " + verb)); } }, SPath_between: function(a, b, c) { return (a - b) * (c - b) <= 0; }, SPath_scalarSignedAsInt: function(x) { var t1; if (x < 0) t1 = -1; else t1 = x > 0 ? 1 : 0; return t1; }, _validUnitDivide: function(numer, denom) { var r; if (numer < 0) { numer = -numer; denom = -denom; } if (denom === 0 || numer === 0 || numer >= denom) return null; r = numer / denom; if (isNaN(r)) return null; if (r === 0) return null; return r; }, _isRRectOval: function(rrect) { var t3, t4, t1 = rrect.tlRadiusX, t2 = rrect.trRadiusX; if (t1 + t2 !== rrect.right - rrect.left) return false; t3 = rrect.tlRadiusY; t4 = rrect.trRadiusY; if (t3 + t4 !== rrect.bottom - rrect.top) return false; if (t1 !== rrect.blRadiusX || t2 !== rrect.brRadiusX || t3 !== rrect.blRadiusY || t4 !== rrect.brRadiusY) return false; return true; }, PathWinding__checkOnCurve: function(x, y, startX, startY, endX, endY) { if (startY == endY) return H.SPath_between(startX, x, endX) && x != endX; else return x == startX && y == startY; }, PathWinding__chopQuadAtExtrema: function(buffer) { var p01x, p01y, p12x, p12y, x0 = buffer[0], y0 = buffer[1], x1 = buffer[2], y1 = buffer[3], x2 = buffer[4], y2 = buffer[5], t1 = y0 - y1, tValueAtExtrema = H._validUnitDivide(t1, t1 - y1 + y2); if (tValueAtExtrema != null) { p01x = x0 + tValueAtExtrema * (x1 - x0); p01y = y0 + tValueAtExtrema * (y1 - y0); p12x = x1 + tValueAtExtrema * (x2 - x1); p12y = y1 + tValueAtExtrema * (y2 - y1); buffer[2] = p01x; buffer[3] = p01y; buffer[4] = p01x + tValueAtExtrema * (p12x - p01x); buffer[5] = p01y + tValueAtExtrema * (p12y - p01y); buffer[6] = p12x; buffer[7] = p12y; buffer[8] = x2; buffer[9] = y2; return 1; } buffer[3] = Math.abs(t1) < Math.abs(y1 - y2) ? y0 : y2; return 0; }, PathWinding__isQuadMonotonic: function(quad) { var y0 = quad[1], y1 = quad[3], y2 = quad[5]; if (y0 === y1) return true; if (y0 < y1) return y1 <= y2; else return y1 >= y2; }, PathIterator$: function(pathRef, forceClose) { var t1 = new H.PathIterator(pathRef, true, pathRef._fVerbsLength); if (pathRef.fBoundsIsDirty) pathRef._computeBounds$0(); if (!pathRef.fIsFinite) t1._verbIndex = pathRef._fVerbsLength; return t1; }, tangentLine: function(pts, x, y, tangents) { var x0, x1, dx, dy, y0 = pts[1], y1 = pts[3]; if (!H.SPath_between(y0, y, y1)) return; x0 = pts[0]; x1 = pts[2]; if (!H.SPath_between(x0, x, x1)) return; dx = x1 - x0; dy = y1 - y0; if (!(Math.abs((x - x0) * dy - dx * (y - y0)) < 0.000244140625)) return; tangents.push(new P.Offset(dx, dy)); }, tangentQuad: function(pts, x, y, tangents) { var x0, x1, x2, roots, n, $A, $B, index, t1, t, y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!H.SPath_between(y0, y, y1) && !H.SPath_between(y1, y, y2)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; if (!H.SPath_between(x0, x, x1) && !H.SPath_between(x1, x, x2)) return; roots = new H._QuadRoots(); n = roots.findRoots$3(y0 - 2 * y1 + y2, 2 * (y1 - y0), y0 - y); for ($A = x2 - 2 * x1 + x0, $B = 2 * (x1 - x0), index = 0; index < n; ++index) { if (index === 0) { t1 = roots.root0; t1.toString; t = t1; } else { t1 = roots.root1; t1.toString; t = t1; } if (!(Math.abs(x - (($A * t + $B) * t + x0)) < 0.000244140625)) continue; tangents.push(H._evalQuadTangentAt(x0, y0, x1, y1, x2, y2, t)); } }, _evalQuadTangentAt: function(x0, y0, x1, y1, x2, y2, t) { var t1, bx, by; if (!(t === 0 && x0 === x1 && y0 === y1)) t1 = t === 1 && x1 === x2 && y1 === y2; else t1 = true; if (t1) return new P.Offset(x2 - x0, y2 - y0); bx = x1 - x0; by = y1 - y0; return new P.Offset(((x2 - x1 - bx) * t + bx) * 2, ((y2 - y1 - by) * t + by) * 2); }, tangentConic: function(pts, x, y, weight, tangents) { var x0, x1, x2, $B, quadRoots, n, src2w, $A, B0, A0, index, t1, t, y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!H.SPath_between(y0, y, y1) && !H.SPath_between(y1, y, y2)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; if (!H.SPath_between(x0, x, x1) && !H.SPath_between(x1, x, x2)) return; $B = y1 * weight - y * weight + y; quadRoots = new H._QuadRoots(); n = quadRoots.findRoots$3(y2 + (y0 - 2 * $B), 2 * ($B - y0), y0 - y); for (src2w = x1 * weight, $A = x2 - 2 * src2w + x0, $B = 2 * (src2w - x0), B0 = 2 * (weight - 1), A0 = -B0, index = 0; index < n; ++index) { if (index === 0) { t1 = quadRoots.root0; t1.toString; t = t1; } else { t1 = quadRoots.root1; t1.toString; t = t1; } if (!(Math.abs(x - (($A * t + $B) * t + x0) / ((A0 * t + B0) * t + 1)) < 0.000244140625)) continue; tangents.push(new H.Conic(x0, y0, x1, y1, x2, y2, weight).evalTangentAt$1(t)); } }, tangentCubic: function(pts, x, y, tangents) { var x0, x1, x2, x3, dst, n, i, bufferPos, t, y3 = pts[7], y0 = pts[1], y1 = pts[3], y2 = pts[5]; if (!H.SPath_between(y0, y, y1) && !H.SPath_between(y1, y, y2) && !H.SPath_between(y2, y, y3)) return; x0 = pts[0]; x1 = pts[2]; x2 = pts[4]; x3 = pts[6]; if (!H.SPath_between(x0, x, x1) && !H.SPath_between(x1, x, x2) && !H.SPath_between(x2, x, x3)) return; dst = new Float32Array(20); n = H._chopCubicAtYExtrema(pts, dst); for (i = 0; i <= n; ++i) { bufferPos = i * 6; t = H._chopMonoAtY(dst, bufferPos, y); if (t == null) continue; if (!(Math.abs(x - H._evalCubicPts(dst[bufferPos], dst[bufferPos + 2], dst[bufferPos + 4], dst[bufferPos + 6], t)) < 0.000244140625)) continue; tangents.push(H._evalCubicTangentAt(dst, bufferPos, t)); } }, _evalCubicTangentAt: function(points, bufferPos, t) { var t2, dx, dy, coeff, y3 = points[7 + bufferPos], y0 = points[1 + bufferPos], y1 = points[3 + bufferPos], y2 = points[5 + bufferPos], x0 = points[bufferPos], x1 = points[2 + bufferPos], x2 = points[4 + bufferPos], x3 = points[6 + bufferPos], t1 = t === 0; if (!(t1 && x0 === x1 && y0 === y1)) t2 = t === 1 && x2 === x3 && y2 === y3; else t2 = true; if (t2) { if (t1) { dx = x2 - x0; dy = y2 - y0; } else { dx = x3 - x1; dy = y3 - y1; } if (dx === 0 && dy === 0) { dx = x3 - x0; dy = y3 - y0; } return new P.Offset(dx, dy); } else { coeff = H._SkQuadCoefficients$(x3 + 3 * (x1 - x2) - x0, y3 + 3 * (y1 - y2) - y0, 2 * (x2 - 2 * x1 + x0), 2 * (y2 - 2 * y1 + y0), x1 - x0, y1 - y0); return new P.Offset(coeff.evalX$1(t), coeff.evalY$1(t)); } }, _reduceCanvasMemoryUsage: function() { var i, t1, t2, canvasCount = $._recycledCanvases.length; for (i = 0; i < canvasCount; ++i) { t1 = $._recycledCanvases[i]._canvasPool; t2 = $.___browserEngine; if (t2 === $) { t2 = H.detectBrowserEngineByVendorAgent(window.navigator.vendor, window.navigator.userAgent.toLowerCase()); if ($.___browserEngine === $) $.___browserEngine = t2; else t2 = H.throwExpression(H.LateError$fieldADI("_browserEngine")); } if (t2 === C.BrowserEngine_1 && t1.__engine$_canvas != null) { t2 = t1.__engine$_canvas; t2.height = 0; t2.width = 0; } t1._clearActiveCanvasList$0(); } C.JSArray_methods.set$length($._recycledCanvases, 0); }, _recycleCanvas: function(canvas) { if (canvas != null && C.JSArray_methods.contains$1($._recycledCanvases, canvas)) return; if (canvas instanceof H.BitmapCanvas) { canvas._elementCache = null; if (canvas.__engine$_devicePixelRatio === H.EnginePlatformDispatcher_browserDevicePixelRatio()) { $._recycledCanvases.push(canvas); if ($._recycledCanvases.length > 30) C.JSArray_methods.removeAt$1($._recycledCanvases, 0)._canvasPool.dispose$0(0); } else canvas._canvasPool.dispose$0(0); } }, PersistedPicture__predictTrend: function(delta, extent) { if (delta <= 0) return extent * 0.1; else return Math.min(Math.max(extent * 0.5, delta * 10), extent); }, _computePixelDensity: function(transform, width, height) { var m, t1, t2, minX, t3, minY, t4, t5, t6, t7, wp, t8, t9, t10, t11, xp, t12, t13, t14, t15, yp, minX0, maxX, minY0, maxY, scale; if (transform == null || transform.isIdentityOrTranslation$0()) return 1; m = transform.__engine$_m4storage; t1 = m[12]; t2 = m[15]; minX = t1 * t2; t3 = m[13]; minY = t3 * t2; t4 = m[3]; t5 = t4 * width; t6 = m[7]; t7 = t6 * height; wp = 1 / (t5 + t7 + t2); t8 = m[0]; t9 = t8 * width; t10 = m[4]; t11 = t10 * height; xp = (t9 + t11 + t1) * wp; t12 = m[1]; t13 = t12 * width; t14 = m[5]; t15 = t14 * height; yp = (t13 + t15 + t3) * wp; minX0 = Math.min(minX, xp); maxX = Math.max(minX, xp); minY0 = Math.min(minY, yp); maxY = Math.max(minY, yp); wp = 1 / (t4 * 0 + t7 + t2); xp = (t8 * 0 + t11 + t1) * wp; yp = (t12 * 0 + t15 + t3) * wp; minX = Math.min(minX0, xp); maxX = Math.max(maxX, xp); minY = Math.min(minY0, yp); maxY = Math.max(maxY, yp); wp = 1 / (t5 + t6 * 0 + t2); xp = (t9 + t10 * 0 + t1) * wp; yp = (t13 + t14 * 0 + t3) * wp; minX = Math.min(minX, xp); maxX = Math.max(maxX, xp); minY = Math.min(minY, yp); scale = Math.min((maxX - minX) / width, (Math.max(maxY, yp) - minY) / height); if (scale < 1e-9 || scale === 1) return 1; if (scale > 1) { scale = Math.min(4, C.JSNumber_methods.ceil$0(scale / 2) * 2); t1 = width * height; if (t1 * scale * scale > 4194304 && scale > 2) scale = 3355443.2 / t1; } else scale = Math.max(2 / C.JSNumber_methods.floor$0(2 / scale), 0.0001); return scale; }, _measureBorderRadius: function(x, y) { var clampedX = x < 0 ? 0 : x, clampedY = y < 0 ? 0 : y; return clampedX * clampedX + clampedY * clampedY; }, _getPaintSpread: function(paint) { var t2, t1 = paint._paintData, maskFilter = t1.maskFilter, spread = maskFilter != null ? 0 + maskFilter._sigma * 2 : 0; t1 = t1.strokeWidth; t2 = t1 == null; if ((t2 ? 0 : t1) !== 0) spread += (t2 ? 0 : t1) * 0.70710678118; return spread; }, _GlContext__programCache: function() { var t1 = $._GlContext____programCache; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_programCache")) : t1; }, NormalizedGradient_NormalizedGradient: function(colors, stops) { var colorCount, addFirst, addLast, normalizedCount, t1, bias, scale, t2, thresholds, targetIndex, thresholdIndex, _i, targetIndex0, t3, thresholdIndex0, lastColorIndex, i, t, colorIndex; if (stops == null) stops = C.List_0_1; colorCount = colors.length; addFirst = stops[0] !== 0; addLast = C.JSArray_methods.get$last(stops) !== 1; normalizedCount = addFirst ? colorCount + 1 : colorCount; if (addLast) ++normalizedCount; t1 = normalizedCount * 4; bias = new Float32Array(t1); scale = new Float32Array(t1); t1 = normalizedCount - 1; t2 = C.JSInt_methods._tdivFast$1(t1, 4); thresholds = new Float32Array(4 * (t2 + 1)); if (addFirst) { t2 = colors[0].value; bias[0] = (t2 >>> 16 & 255) / 255; bias[1] = (t2 >>> 8 & 255) / 255; bias[2] = (t2 & 255) / 255; bias[3] = (t2 >>> 24 & 255) / 255; thresholds[0] = 0; targetIndex = 4; thresholdIndex = 1; } else { targetIndex = 0; thresholdIndex = 0; } for (t2 = colors.length, _i = 0; _i < t2; ++_i) { targetIndex0 = targetIndex + 1; t3 = colors[_i].value; bias[targetIndex] = (t3 >>> 16 & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (t3 >>> 8 & 255) / 255; targetIndex0 = targetIndex + 1; bias[targetIndex] = (t3 & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (t3 >>> 24 & 255) / 255; } for (t2 = stops.length, _i = 0; _i < t2; ++_i, thresholdIndex = thresholdIndex0) { thresholdIndex0 = thresholdIndex + 1; thresholds[thresholdIndex] = stops[_i]; } if (addLast) { targetIndex0 = targetIndex + 1; t2 = C.JSArray_methods.get$last(colors).value; bias[targetIndex] = (t2 >>> 16 & 255) / 255; targetIndex = targetIndex0 + 1; bias[targetIndex0] = (t2 >>> 8 & 255) / 255; bias[targetIndex] = (t2 & 255) / 255; bias[targetIndex + 1] = (t2 >>> 24 & 255) / 255; thresholds[thresholdIndex] = 1; } lastColorIndex = 4 * t1; for (i = 0; i < lastColorIndex; ++i) { thresholdIndex = i >>> 2; scale[i] = (bias[i + 4] - bias[i]) / (thresholds[thresholdIndex + 1] - thresholds[thresholdIndex]); } scale[lastColorIndex] = 0; scale[lastColorIndex + 1] = 0; scale[lastColorIndex + 2] = 0; scale[lastColorIndex + 3] = 0; for (i = 0; i < normalizedCount; ++i) { t = thresholds[i]; colorIndex = i * 4; bias[colorIndex] = bias[colorIndex] - t * scale[colorIndex]; t1 = colorIndex + 1; bias[t1] = bias[t1] - t * scale[t1]; t1 = colorIndex + 2; bias[t1] = bias[t1] - t * scale[t1]; t1 = colorIndex + 3; bias[t1] = bias[t1] - t * scale[t1]; } return new H.NormalizedGradient(thresholds, bias, scale, normalizedCount); }, _writeUnrolledBinarySearch: function(method, start, end, biasName, probe, scaleName, sourcePrefix) { var biasSource, scaleSource, mid, t1, thresholdAtMid; if (start === end) { biasSource = biasName + "_" + start; method.addStatement$1(biasName + " = " + biasSource + ";"); scaleSource = scaleName + "_" + start; method.addStatement$1(scaleName + " = " + scaleSource + ";"); } else { mid = C.JSInt_methods._tdivFast$1(start + end, 2); t1 = mid + 1; thresholdAtMid = sourcePrefix + "_" + C.JSInt_methods._tdivFast$1(t1, 4) + ("." + "xyzw"[C.JSInt_methods.$mod(t1, 4)]); method.addStatement$1("if (" + probe + " < " + thresholdAtMid + ") {"); ++method._indentLevel; H._writeUnrolledBinarySearch(method, start, mid, biasName, probe, scaleName, sourcePrefix); --method._indentLevel; method.addStatement$1("} else {"); ++method._indentLevel; H._writeUnrolledBinarySearch(method, t1, end, biasName, probe, scaleName, sourcePrefix); --method._indentLevel; method.addStatement$1("}"); } }, _addColorStopsToCanvasGradient: function(gradient, colors, colorStops, isDecal) { var scale, offset, t1, i, t2, _s9_ = "#00000000"; if (isDecal) { gradient.addColorStop(0, _s9_); scale = 0.999; offset = 0.0005000000000000004; } else { scale = 1; offset = 0; } if (colorStops == null) { t1 = H.colorToCssString(colors[0]); t1.toString; gradient.addColorStop(offset, t1); t1 = H.colorToCssString(colors[1]); t1.toString; gradient.addColorStop(1 - offset, t1); } else for (i = 0; i < colors.length; ++i) { t1 = colorStops[i]; t2 = H.colorToCssString(colors[i]); t2.toString; gradient.addColorStop(t1 * scale + offset, t2); } if (isDecal) gradient.addColorStop(1, _s9_); }, _writeSharedGradientShader: function(builder, method, gradient, tileMode) { var t1, t2, t3, i, probeName, _s8_ = "tiled_st"; method.addStatement$1("vec4 bias;"); method.addStatement$1("vec4 scale;"); for (t1 = gradient.thresholdCount, t2 = t1 - 1, t3 = C.JSInt_methods._tdivFast$1(t2, 4) + 1, i = 0; i < t3; ++i) builder.addUniform$2$name(11, "threshold_" + i); for (i = 0; i < t1; ++i) { builder.addUniform$2$name(11, "bias_" + i); builder.addUniform$2$name(11, "scale_" + i); } switch (tileMode) { case C.TileMode_0: method.addStatement$1("float tiled_st = clamp(st, 0.0, 1.0);"); probeName = _s8_; break; case C.TileMode_3: probeName = "st"; break; case C.TileMode_1: method.addStatement$1("float tiled_st = fract(st);"); probeName = _s8_; break; case C.TileMode_2: method.addStatement$1("float t_1 = (st - 1.0);"); method.addStatement$1("float tiled_st = abs((t_1 - 2.0 * floor(t_1 * 0.5)) - 1.0);"); probeName = _s8_; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } H._writeUnrolledBinarySearch(method, 0, t2, "bias", probeName, "scale", "threshold"); return probeName; }, ShaderBuilder_typeToString: function(dataType) { switch (dataType) { case 0: return "bool"; case 1: return "int"; case 2: return "float"; case 3: return "bvec2"; case 4: return "bvec3"; case 5: return "bvec4"; case 6: return "ivec2"; case 7: return "ivec3"; case 8: return "ivec4"; case 9: return "vec2"; case 10: return "vec3"; case 11: return "vec4"; case 12: return "mat2"; case 13: return "mat3"; case 14: return "mat4"; case 15: return "sampler1D"; case 16: return "sampler2D"; case 17: return "sampler3D"; case 18: return "void"; } throw H.wrapException(P.ArgumentError$(null)); }, commitScene: function(scene) { var request, _i, i, t1 = $._paintQueue, t2 = t1.length; if (t2 !== 0) try { if (t2 > 1) C.JSArray_methods.sort$1(t1, new H.commitScene_closure()); for (t1 = $._paintQueue, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { request = t1[_i]; request.paintCallback$0(); } } finally { $._paintQueue = H.setRuntimeTypeInfo([], type$.JSArray__PaintRequest); } t1 = $._retainedSurfaces; t2 = t1.length; if (t2 !== 0) { for (i = 0; i < t2; ++i) t1[i].__engine$_state = C.PersistedSurfaceState_1; $._retainedSurfaces = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); } for (t1 = $._frameReferences, i = 0; i < t1.length; ++i) t1[i].value = null; $._frameReferences = H.setRuntimeTypeInfo([], type$.JSArray_FrameReference_dynamic); }, PersistedContainerSurface__discardActiveChildren: function(surface) { var i, child, t1 = surface.__engine$_children, $length = t1.length; for (i = 0; i < $length; ++i) { child = t1[i]; if (child.__engine$_state === C.PersistedSurfaceState_1) child.discard$0(); } }, Keyboard$_: function() { var t1 = new H.Keyboard(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Timer)); t1.Keyboard$_$0(); return t1; }, _noopCallback: function(data) { }, MultiEntriesBrowserHistory$: function(urlStrategy) { var t1 = new H.MultiEntriesBrowserHistory(urlStrategy); t1.MultiEntriesBrowserHistory$1$urlStrategy(urlStrategy); return t1; }, EnginePlatformDispatcher_browserDevicePixelRatio: function() { var ratio = window.devicePixelRatio; return ratio == null || ratio === 0 ? 1 : ratio; }, EnginePlatformDispatcher__zonedPlatformMessageResponseCallback: function(callback) { return new H.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure($.Zone__current, callback); }, EnginePlatformDispatcher_parseBrowserLanguages: function() { var locales, t1, t2, t3, parts, languages = window.navigator.languages; if (languages == null || J.get$isEmpty$asx(languages)) return C.List_Locale_en_US; locales = H.setRuntimeTypeInfo([], type$.JSArray_Locale); for (t1 = J.get$iterator$ax(languages), t2 = type$.JSArray_String; t1.moveNext$0();) { t3 = t1.get$current(t1); parts = H.setRuntimeTypeInfo(t3.split("-"), t2); if (parts.length > 1) locales.push(new P.Locale(C.JSArray_methods.get$first(parts), C.JSArray_methods.get$last(parts))); else locales.push(new P.Locale(t3, null)); } return locales; }, _handleWebTestEnd2EndMessage: function(codec, data) { var decoded = codec.decodeMethodCall$1(data), ratio = P.double_parse(decoded.$arguments); switch (decoded.method) { case "setDevicePixelRatio": $.$get$window()._debugDevicePixelRatio = ratio; $.$get$EnginePlatformDispatcher__instance()._onMetricsChanged.call$0(); return true; } return false; }, invoke: function(callback, zone) { if (callback == null) return; if (zone === $.Zone__current) callback.call$0(); else zone.runGuarded$1(callback); }, invoke1: function(callback, zone, arg, $A) { if (callback == null) return; if (zone === $.Zone__current) callback.call$1(arg); else zone.runUnaryGuarded$1$2(callback, arg, $A); }, invoke3: function(callback, zone, arg1, arg2, arg3) { if (callback == null) return; if (zone === $.Zone__current) callback.call$3(arg1, arg2, arg3); else zone.runGuarded$1(new H.invoke3_closure(callback, arg1, arg2, arg3)); }, convertButtonToButtons: function(button) { switch (button) { case 0: return 1; case 1: return 4; case 2: return 2; default: return C.JSInt_methods.$shl(1, button); } }, _BaseAdapter__eventTimeStampToDuration: function(milliseconds) { var ms = J.toInt$0$n(milliseconds); return P.Duration$(0, 0, C.JSNumber_methods.toInt$0((milliseconds - ms) * 1000), ms, 0, 0); }, timeAction: function($name, action) { var t1 = action.call$0(); return t1; }, _frameTimingsOnVsync: function() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._vsyncStartMicros = C.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, _frameTimingsOnBuildStart: function() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._buildStartMicros = C.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, _frameTimingsOnBuildFinish: function() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._buildFinishMicros = C.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, _frameTimingsOnRasterStart: function() { if ($.$get$EnginePlatformDispatcher__instance()._onReportTimings == null) return; $._rasterStartMicros = C.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, _frameTimingsOnRasterFinish: function() { var now, t2, t1 = $.$get$EnginePlatformDispatcher__instance(); if (t1._onReportTimings == null) return; now = $._rasterFinishMicros = C.JSNumber_methods.toInt$0(window.performance.now() * 1000); $._frameTimings.push(new P.FrameTiming(H.setRuntimeTypeInfo([$._vsyncStartMicros, $._buildStartMicros, $._buildFinishMicros, $._rasterStartMicros, now], type$.JSArray_int))); $._rasterFinishMicros = $._rasterStartMicros = $._buildFinishMicros = $._buildStartMicros = $._vsyncStartMicros = -1; if (now - $.$get$_frameTimingsLastSubmitTime() > 100000) { $._frameTimingsLastSubmitTime = now; t2 = $._frameTimings; H.invoke1(t1._onReportTimings, t1._onReportTimingsZone, t2, type$.List_FrameTiming); $._frameTimings = H.setRuntimeTypeInfo([], type$.JSArray_FrameTiming); } }, _nowMicros: function() { return C.JSNumber_methods.toInt$0(window.performance.now() * 1000); }, AccessibilityAnnouncements$_: function() { var t1 = new H.AccessibilityAnnouncements(); t1.AccessibilityAnnouncements$_$0(); return t1; }, _checkableKindFromSemanticsFlag: function(semanticsObject) { var t1 = semanticsObject.__engine$_flags; if ((t1 & 256) !== 0) return C._CheckableKind_1; else if ((t1 & 65536) !== 0) return C._CheckableKind_2; else return C._CheckableKind_0; }, Incrementable$: function(semanticsObject) { var t1 = new H.Incrementable(W.InputElement_InputElement(null), semanticsObject); t1.Incrementable$1(semanticsObject); return t1; }, SemanticsObject__clearSemanticElementTransform: function(element) { var t1 = element.style; t1.removeProperty("transform-origin"); t1.removeProperty("transform"); t1 = H._operatingSystem(); if (t1 !== C.OperatingSystem_0) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_4; } else t1 = true; if (t1) { t1 = element.style; t1.top = "0px"; t1.left = "0px"; } else { t1 = element.style; t1.removeProperty("top"); t1.removeProperty("left"); } }, EngineSemanticsOwner$_: function() { var t1 = type$.SemanticsObject, t2 = H.setRuntimeTypeInfo([], type$.JSArray_nullable_SemanticsObject), t3 = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), t4 = H._operatingSystem(); t4 = J.containsKey$1$x(C.Set_m536._collection$_map, t4) ? new H.DesktopSemanticsEnabler() : new H.MobileSemanticsEnabler(); t4 = new H.EngineSemanticsOwner(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, t1), P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_int, t1), t2, t3, new H.EngineSemanticsOwner__now_closure(), new H.SemanticsHelper(t4), C.GestureMode_1, H.setRuntimeTypeInfo([], type$.JSArray_of_nullable_void_Function_GestureMode)); t4.EngineSemanticsOwner$_$0(); return t4; }, longestIncreasingSubsequence: function(list) { var longest, i, elem, hi, lo, mid, seq, k, len = list.length, t1 = type$.JSArray_int, predecessors = H.setRuntimeTypeInfo([], t1), mins = H.setRuntimeTypeInfo([0], t1); for (longest = 0, i = 0; i < len; ++i) { elem = list[i]; for (hi = longest, lo = 1; lo <= hi;) { mid = C.JSInt_methods._tdivFast$1(lo + hi, 2); if (list[mins[mid]] < elem) lo = mid + 1; else hi = mid - 1; } predecessors.push(mins[lo - 1]); if (lo >= mins.length) mins.push(i); else mins[lo] = i; if (lo > longest) longest = lo; } seq = P.List_List$filled(longest, 0, false, type$.int); k = mins[longest]; for (i = longest - 1; i >= 0; --i) { seq[i] = k; k = predecessors[k]; } return seq; }, SemanticsTextEditingStrategy_ensureInitialized: function(owner) { var t1 = $.SemanticsTextEditingStrategy__instance; if (t1 != null && t1.owner === owner) { t1.toString; return t1; } return $.SemanticsTextEditingStrategy__instance = new H.SemanticsTextEditingStrategy(owner, H.setRuntimeTypeInfo([], type$.JSArray_StreamSubscription_Event)); }, WriteBuffer_WriteBuffer: function() { var t1 = new Uint8Array(0), eightBytes = new DataView(new ArrayBuffer(8)); return new H.WriteBuffer0(new H.Uint8Buffer0(t1, 0), eightBytes, H.NativeUint8List_NativeUint8List$view(eightBytes.buffer, 0, null)); }, computeShadowOffset: function(elevation) { if (elevation === 0) return C.Offset_0_0; return new P.Offset(200 * elevation / 600, 400 * elevation / 600); }, computePenumbraBounds: function(shape, elevation) { var t1, t2, t3, t4, dx, dy; if (elevation === 0) return shape; t1 = shape.right; t2 = shape.left; t3 = shape.bottom; t4 = shape.top; dx = elevation * ((800 + (t1 - t2) * 0.5) / 600); dy = elevation * ((800 + (t3 - t4) * 0.5) / 600); return new P.Rect(t2 - dx, t4 - dy, t1 + dx, t3 + dy).shift$1(H.computeShadowOffset(elevation)); }, computeShadow: function(shape, elevation) { if (elevation === 0) return null; return new H.SurfaceShadowData(Math.min(elevation * ((800 + (shape.right - shape.left) * 0.5) / 600), elevation * ((800 + (shape.bottom - shape.top) * 0.5) / 600)), H.computeShadowOffset(elevation)); }, applyCssShadow: function(element, shape, elevation, color) { var t1, t2, t3, _s10_ = "box-shadow", shadow = H.computeShadow(shape, elevation); if (shadow == null) { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "none", ""); } else { color = H.toShadowColor(color); t1 = element.style; t2 = shadow.offset; t3 = color.value; t3 = H.S(t2._dx) + "px " + H.S(t2._dy) + "px " + H.S(shadow.blurWidth) + "px 0px rgba(" + (t3 >>> 16 & 255) + ", " + (t3 >>> 8 & 255) + ", " + (t3 & 255) + ", " + H.S((t3 >>> 24 & 255) / 255) + ")"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), t3, ""); } }, toShadowColor: function(color) { var t1 = color.value; return new P.Color(((C.JSNumber_methods.round$0(0.3 * (t1 >>> 24 & 255)) & 255) << 24 | t1 & 16777215) >>> 0); }, FontManager_FontManager: function() { var t1 = type$.JSArray_Future_void; if ($.$get$supportsFontLoadingApi()) return new H.FontManager(H.setRuntimeTypeInfo([], t1)); else return new H._PolyfillFontManager(H.setRuntimeTypeInfo([], t1)); }, LineBuilder$_: function(paragraph, spanometer, accumulatedHeight, lineNumber, maxWidth, start) { return new H.LineBuilder(H.setRuntimeTypeInfo([], type$.JSArray_LineSegment), H.setRuntimeTypeInfo([], type$.JSArray_RangeBox), maxWidth, paragraph, spanometer, start, lineNumber, accumulatedHeight, start); }, nextLineBreak: function(text, index, maxEnd) { var t1, lastNonNewlineIndex, lastNonSpaceIndex, prev1, regionalIndicatorCount, t2, t3, t4, curr0, isCurrZWJ0, t5, t6, t7, codePoint = H.getCodePoint(text, index), curr = $.$get$lineLookup().findForChar$1(codePoint), baseOfSpaceSequence = curr === C.LineCharProperty_5 ? C.LineCharProperty_29 : null, isCurrZWJ = curr === C.LineCharProperty_26; if (curr === C.LineCharProperty_0 || isCurrZWJ) curr = C.LineCharProperty_8; for (t1 = text.length, lastNonNewlineIndex = index, lastNonSpaceIndex = lastNonNewlineIndex, prev1 = null, regionalIndicatorCount = 0; index < t1; isCurrZWJ = isCurrZWJ0, prev1 = curr, curr = curr0) { if (index === maxEnd) return new H.LineBreakResult(index, lastNonNewlineIndex, lastNonSpaceIndex, C.LineBreakType_1); t2 = curr === C.LineCharProperty_35; regionalIndicatorCount = t2 ? regionalIndicatorCount + 1 : 0; index = (codePoint != null && codePoint > 65535 ? index + 1 : index) + 1; t3 = curr === C.LineCharProperty_5; t4 = !t3; if (t4) baseOfSpaceSequence = null; codePoint = H.getCodePoint(text, index); curr0 = $.$get$lineLookup().findForChar$1(codePoint); isCurrZWJ0 = curr0 === C.LineCharProperty_26; if (curr === C.LineCharProperty_2 || curr === C.LineCharProperty_3) return new H.LineBreakResult(index, lastNonNewlineIndex, lastNonSpaceIndex, C.LineBreakType_2); if (curr === C.LineCharProperty_4) if (curr0 === C.LineCharProperty_2) continue; else return new H.LineBreakResult(index, lastNonNewlineIndex, lastNonSpaceIndex, C.LineBreakType_2); if (t4) lastNonSpaceIndex = index; if (curr0 === C.LineCharProperty_2 || curr0 === C.LineCharProperty_3 || curr0 === C.LineCharProperty_4) { lastNonNewlineIndex = index; continue; } if (index >= t1) return new H.LineBreakResult(t1, index, lastNonSpaceIndex, C.LineBreakType_3); if (curr0 === C.LineCharProperty_5) { baseOfSpaceSequence = t3 ? baseOfSpaceSequence : curr; lastNonNewlineIndex = index; continue; } if (curr0 === C.LineCharProperty_25) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_25 || baseOfSpaceSequence === C.LineCharProperty_25) return new H.LineBreakResult(index, index, lastNonSpaceIndex, C.LineBreakType_0); if (curr0 === C.LineCharProperty_0 || isCurrZWJ0) { if (!t3) { if (t2) --regionalIndicatorCount; lastNonNewlineIndex = index; curr0 = curr; continue; } curr0 = C.LineCharProperty_8; } if (isCurrZWJ) { lastNonNewlineIndex = index; continue; } if (curr0 === C.LineCharProperty_29 || curr === C.LineCharProperty_29) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_18) { lastNonNewlineIndex = index; continue; } if (!(!t4 || curr === C.LineCharProperty_1 || curr === C.LineCharProperty_14) && curr0 === C.LineCharProperty_18) { lastNonNewlineIndex = index; continue; } if (curr0 === C.LineCharProperty_17 || curr0 === C.LineCharProperty_12 || curr0 === C.LineCharProperty_6 || curr0 === C.LineCharProperty_13 || curr0 === C.LineCharProperty_15) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_11 || baseOfSpaceSequence === C.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } t2 = curr !== C.LineCharProperty_7; if ((!t2 || baseOfSpaceSequence === C.LineCharProperty_7) && curr0 === C.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } t4 = curr !== C.LineCharProperty_17; if ((!t4 || baseOfSpaceSequence === C.LineCharProperty_17 || curr === C.LineCharProperty_12 || baseOfSpaceSequence === C.LineCharProperty_12) && curr0 === C.LineCharProperty_24) { lastNonNewlineIndex = index; continue; } if ((curr === C.LineCharProperty_27 || baseOfSpaceSequence === C.LineCharProperty_27) && curr0 === C.LineCharProperty_27) { lastNonNewlineIndex = index; continue; } if (t3) return new H.LineBreakResult(index, index, lastNonSpaceIndex, C.LineBreakType_0); if (!t2 || curr0 === C.LineCharProperty_7) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_34 || curr0 === C.LineCharProperty_34) return new H.LineBreakResult(index, index, lastNonSpaceIndex, C.LineBreakType_0); if (curr0 === C.LineCharProperty_1 || curr0 === C.LineCharProperty_14 || curr0 === C.LineCharProperty_24 || curr === C.LineCharProperty_19) { lastNonNewlineIndex = index; continue; } if (prev1 === C.LineCharProperty_20) t2 = curr === C.LineCharProperty_14 || curr === C.LineCharProperty_1; else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } t2 = curr === C.LineCharProperty_15; if (t2 && curr0 === C.LineCharProperty_20) { lastNonNewlineIndex = index; continue; } if (curr0 === C.LineCharProperty_28) { lastNonNewlineIndex = index; continue; } t3 = curr !== C.LineCharProperty_8; if (!((!t3 || curr === C.LineCharProperty_20) && curr0 === C.LineCharProperty_16)) if (curr === C.LineCharProperty_16) t5 = curr0 === C.LineCharProperty_8 || curr0 === C.LineCharProperty_20; else t5 = false; else t5 = true; if (t5) { lastNonNewlineIndex = index; continue; } t5 = curr === C.LineCharProperty_9; if (t5) t6 = curr0 === C.LineCharProperty_30 || curr0 === C.LineCharProperty_31 || curr0 === C.LineCharProperty_36; else t6 = false; if (t6) { lastNonNewlineIndex = index; continue; } if ((curr === C.LineCharProperty_30 || curr === C.LineCharProperty_31 || curr === C.LineCharProperty_36) && curr0 === C.LineCharProperty_10) { lastNonNewlineIndex = index; continue; } t6 = !t5; if (!t6 || curr === C.LineCharProperty_10) t7 = curr0 === C.LineCharProperty_8 || curr0 === C.LineCharProperty_20; else t7 = false; if (t7) { lastNonNewlineIndex = index; continue; } if (!t3 || curr === C.LineCharProperty_20) t7 = curr0 === C.LineCharProperty_9 || curr0 === C.LineCharProperty_10; else t7 = false; if (t7) { lastNonNewlineIndex = index; continue; } if (!t4 || curr === C.LineCharProperty_12 || curr === C.LineCharProperty_16) t4 = curr0 === C.LineCharProperty_10 || curr0 === C.LineCharProperty_9; else t4 = false; if (t4) { lastNonNewlineIndex = index; continue; } t4 = curr !== C.LineCharProperty_10; if ((!t4 || t5) && curr0 === C.LineCharProperty_11) { lastNonNewlineIndex = index; continue; } if ((!t4 || !t6 || curr === C.LineCharProperty_14 || curr === C.LineCharProperty_13 || curr === C.LineCharProperty_16 || t2) && curr0 === C.LineCharProperty_16) { lastNonNewlineIndex = index; continue; } t2 = curr === C.LineCharProperty_21; if (t2) t4 = curr0 === C.LineCharProperty_21 || curr0 === C.LineCharProperty_22 || curr0 === C.LineCharProperty_32 || curr0 === C.LineCharProperty_33; else t4 = false; if (t4) { lastNonNewlineIndex = index; continue; } t4 = curr !== C.LineCharProperty_22; if (!t4 || curr === C.LineCharProperty_32) t6 = curr0 === C.LineCharProperty_22 || curr0 === C.LineCharProperty_23; else t6 = false; if (t6) { lastNonNewlineIndex = index; continue; } t6 = curr !== C.LineCharProperty_23; if ((!t6 || curr === C.LineCharProperty_33) && curr0 === C.LineCharProperty_23) { lastNonNewlineIndex = index; continue; } if ((t2 || !t4 || !t6 || curr === C.LineCharProperty_32 || curr === C.LineCharProperty_33) && curr0 === C.LineCharProperty_10) { lastNonNewlineIndex = index; continue; } if (t5) t2 = curr0 === C.LineCharProperty_21 || curr0 === C.LineCharProperty_22 || curr0 === C.LineCharProperty_23 || curr0 === C.LineCharProperty_32 || curr0 === C.LineCharProperty_33; else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } if (!t3 || curr === C.LineCharProperty_20) t2 = curr0 === C.LineCharProperty_8 || curr0 === C.LineCharProperty_20; else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_13) t2 = curr0 === C.LineCharProperty_8 || curr0 === C.LineCharProperty_20; else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } if (!t3 || curr === C.LineCharProperty_20 || curr === C.LineCharProperty_16) if (curr0 === C.LineCharProperty_11) { t2 = C.JSString_methods.codeUnitAt$1(text, index); if (t2 !== 9001) if (!(t2 >= 12296 && t2 <= 12317)) t2 = t2 >= 65047 && t2 <= 65378; else t2 = true; else t2 = true; t2 = !t2; } else t2 = false; else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } if (curr === C.LineCharProperty_12) { t2 = C.JSString_methods.codeUnitAt$1(text, index - 1); if (t2 !== 9001) if (!(t2 >= 12296 && t2 <= 12317)) t2 = t2 >= 65047 && t2 <= 65378; else t2 = true; else t2 = true; if (!t2) t2 = curr0 === C.LineCharProperty_8 || curr0 === C.LineCharProperty_20 || curr0 === C.LineCharProperty_16; else t2 = false; } else t2 = false; if (t2) { lastNonNewlineIndex = index; continue; } if (curr0 === C.LineCharProperty_35) if ((regionalIndicatorCount & 1) === 1) { lastNonNewlineIndex = index; continue; } else return new H.LineBreakResult(index, index, lastNonSpaceIndex, C.LineBreakType_0); if (curr === C.LineCharProperty_31 && curr0 === C.LineCharProperty_36) { lastNonNewlineIndex = index; continue; } return new H.LineBreakResult(index, index, lastNonSpaceIndex, C.LineBreakType_0); } return new H.LineBreakResult(t1, lastNonNewlineIndex, lastNonSpaceIndex, C.LineBreakType_3); }, _newlinePredicate: function(char) { var prop = $.$get$lineLookup().findForChar$1(char); return prop === C.LineCharProperty_3 || prop === C.LineCharProperty_2 || prop === C.LineCharProperty_4; }, RulerHost$: function() { var t1 = new H.RulerHost(W._ElementFactoryProvider_createElement_tag("flt-ruler-host", null)); t1.RulerHost$0(); return t1; }, TextMeasurementService_forParagraph: function(paragraph) { var style, t1 = $.$get$window().get$physicalSize(); if (!t1.get$isEmpty(t1)) if ($.WebExperiments_instance._useCanvasText) { style = paragraph._geometricStyle; t1 = paragraph._plainText != null && style.decoration == null && style.wordSpacing == null; } else t1 = false; else t1 = false; if (t1) { t1 = $.CanvasTextMeasurementService__instance; return t1 == null ? $.CanvasTextMeasurementService__instance = new H.CanvasTextMeasurementService(W.CanvasElement_CanvasElement(null, null).getContext("2d")) : t1; } t1 = $.DomTextMeasurementService__instance; return t1 == null ? $.DomTextMeasurementService__instance = new H.DomTextMeasurementService() : t1; }, DomTextMeasurementService__applySubPixelRoundingHack: function(minIntrinsicWidth, maxIntrinsicWidth) { if (minIntrinsicWidth <= maxIntrinsicWidth) return maxIntrinsicWidth; if (minIntrinsicWidth - maxIntrinsicWidth < 2) return minIntrinsicWidth; throw H.wrapException(P.Exception_Exception("minIntrinsicWidth (" + H.S(minIntrinsicWidth) + ") is greater than maxIntrinsicWidth (" + H.S(maxIntrinsicWidth) + ").")); }, _measureSubstring: function(_canvasContext, text, start, end, letterSpacing) { var cssFont, width, t1; if (start === end) return 0; cssFont = _canvasContext.font; if (start === $._lastStart && end === $._lastEnd && text == $._lastText && cssFont == $._lastCssFont) width = $._lastWidth; else { t1 = _canvasContext.measureText(start === 0 && end === text.length ? text : J.substring$2$s(text, start, end)).width; t1.toString; width = t1; } $._lastStart = start; $._lastEnd = end; $._lastText = text; $._lastCssFont = cssFont; $._lastWidth = width; if (letterSpacing == null) letterSpacing = 0; return C.JSNumber_methods.round$0((letterSpacing !== 0 ? width + letterSpacing * (end - start) : width) * 100) / 100; }, _excludeTrailing: function(text, start, end, predicate) { while (true) { if (!(start < end && predicate.call$1(C.JSString_methods.codeUnitAt$1(text, end - 1)))) break; --end; } return end; }, _calculateAlignOffsetForLine: function(lineWidth, maxWidth, paragraph) { var emptySpace = maxWidth - lineWidth; switch (paragraph._textAlign) { case C.TextAlign_2: return emptySpace / 2; case C.TextAlign_1: return emptySpace; case C.TextAlign_4: return paragraph._textDirection === C.TextDirection_0 ? emptySpace : 0; case C.TextAlign_5: return paragraph._textDirection === C.TextDirection_0 ? 0 : emptySpace; default: return 0; } }, EngineLineMetrics$withText: function(displayText, endIndex, endIndexWithoutNewlines, hardBreak, left, lineNumber, startIndex, width, widthWithTrailingSpaces) { return new H.EngineLineMetrics(displayText, null, startIndex, endIndex, endIndexWithoutNewlines, null, hardBreak, 1 / 0, 1 / 0, 1 / 0, width, widthWithTrailingSpaces, left, 1 / 0, lineNumber); }, EngineTextStyle$only: function(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing) { var t1 = fontFamily == null, t2 = t1 ? "" : fontFamily; return new H.EngineTextStyle(color, decoration, decorationColor, decorationStyle, decorationThickness, fontWeight, fontStyle, textBaseline, !t1, t2, fontFamilyFallback, fontFeatures, fontSize, letterSpacing, wordSpacing, height, locale, background, foreground, shadows); }, fontWeightToCss: function(fontWeight) { if (fontWeight == null) return null; return H.fontWeightIndexToCss(fontWeight.index); }, fontWeightIndexToCss: function(fontWeightIndex) { switch (fontWeightIndex) { case 0: return "100"; case 1: return "200"; case 2: return "300"; case 3: return "normal"; case 4: return "500"; case 5: return "600"; case 6: return "bold"; case 7: return "800"; case 8: return "900"; } return ""; }, _applyTextStyleToElement: function(element, isSpan, style) { var t2, updateDecoration, t3, textDecoration, decorationColor, fontFeatures, cssStyle = element.style, t1 = style._foreground, color = t1 == null ? null : t1.get$color(t1); if (color == null) color = style.__engine$_color; if (color != null) { t1 = H.colorToCssString(color); cssStyle.toString; cssStyle.color = t1 == null ? "" : t1; } t1 = style.__engine$_height; if (t1 != null) { t1 = H.S(t1); cssStyle.lineHeight = t1; } t1 = style.__engine$_fontSize; if (t1 != null) { t1 = "" + C.JSNumber_methods.floor$0(t1) + "px"; cssStyle.fontSize = t1; } t1 = style._fontWeight; if (t1 != null) { t1 = H.fontWeightToCss(t1); cssStyle.toString; cssStyle.fontWeight = t1 == null ? "" : t1; } t1 = style._fontStyle; if (t1 != null) { t1 = t1 === C.FontStyle_0 ? "normal" : "italic"; cssStyle.fontStyle = t1; } if (isSpan && true) { t1 = H.canonicalizeFontFamily(style._fontFamily); cssStyle.toString; cssStyle.fontFamily = t1 == null ? "" : t1; } else { t1 = H.canonicalizeFontFamily(style.get$_effectiveFontFamily()); cssStyle.toString; cssStyle.fontFamily = t1 == null ? "" : t1; } t1 = style._letterSpacing; if (t1 != null) { t1 = H.S(t1) + "px"; cssStyle.letterSpacing = t1; } t1 = style._wordSpacing; if (t1 != null) { t1 = H.S(t1) + "px"; cssStyle.wordSpacing = t1; } t1 = style._decoration; t2 = t1 != null; updateDecoration = t2 && true; t3 = style._shadows; if (t3 != null) { t3 = H._shadowListToCss(t3); C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, (cssStyle && C.CssStyleDeclaration_methods)._browserPropertyName$1(cssStyle, "text-shadow"), t3, ""); } if (updateDecoration) if (t2) { textDecoration = H._textDecorationToCssString(t1, style._decorationStyle); if (textDecoration != null) { t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1) H.DomRenderer_setElementStyle(element, "-webkit-text-decoration", textDecoration); else cssStyle.textDecoration = textDecoration; decorationColor = style._decorationColor; if (decorationColor != null) { t1 = H.colorToCssString(decorationColor); t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, (cssStyle && C.CssStyleDeclaration_methods)._browserPropertyName$1(cssStyle, "text-decoration-color"), t1, ""); } } } fontFeatures = style._fontFeatures; if (fontFeatures != null && true) { t1 = H._fontFeatureListToCss(fontFeatures); C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, (cssStyle && C.CssStyleDeclaration_methods)._browserPropertyName$1(cssStyle, "font-feature-settings"), t1, ""); } }, _createPlaceholderElement: function(placeholder) { var style, t1, element = $.$get$domRenderer().createElement$1(0, "span"); element.className = "paragraph-placeholder"; style = element.style; style.display = "inline-block"; t1 = H.S(placeholder.get$width(placeholder)) + "px"; style.width = t1; t1 = H.S(placeholder.get$height(placeholder)) + "px"; style.height = t1; t1 = H._placeholderAlignmentToCssVerticalAlign(placeholder); style.verticalAlign = t1; return element; }, _placeholderAlignmentToCssVerticalAlign: function(placeholder) { switch (placeholder.get$alignment()) { case C.PlaceholderAlignment_3: return "top"; case C.PlaceholderAlignment_5: return "middle"; case C.PlaceholderAlignment_4: return "bottom"; case C.PlaceholderAlignment_1: return "baseline"; case C.PlaceholderAlignment_2: return "-" + H.S(placeholder.get$height(placeholder)) + "px"; case C.PlaceholderAlignment_0: return H.S(placeholder.get$baselineOffset().$sub(0, placeholder.get$height(placeholder))) + "px"; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _shadowListToCss: function(shadows) { var i, t1, shadow, t2; shadows.toString; for (i = 0, t1 = ""; i < 1; ++i, t1 = t2) { shadow = shadows[i]; t2 = shadow.offset; t2 = t1 + (H.S(t2._dx) + "px " + H.S(t2._dy) + "px " + H.S(shadow.blurRadius) + "px " + H.S(H.colorToCssString(shadow.color))); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, _fontFeatureListToCss: function(fontFeatures) { var i, t1; for (i = 0, t1 = ""; i < 1; ++i) t1 += '"tnum" 1'; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _applyTextBackgroundToElement: function(element, style) { var newBackground = style._background; if (newBackground != null) H.DomRenderer_setElementStyle(element, "background-color", H.colorToCssString(newBackground.get$color(newBackground))); }, _textDecorationToCssString: function(decoration, decorationStyle) { var t1, t2; if (decoration != null) { t1 = decoration._mask; t2 = (t1 | 1) === t1 ? "underline " : ""; if ((t1 | 2) === t1) t2 += "overline "; t1 = (t1 | 4) === t1 ? t2 + "line-through " : t2; } else t1 = ""; if (decorationStyle != null) t1 += H.S(H._decorationStyleToCssString(decorationStyle)); return t1.length === 0 ? null : t1.charCodeAt(0) == 0 ? t1 : t1; }, _decorationStyleToCssString: function(decorationStyle) { switch (decorationStyle) { case C.TextDecorationStyle_3: return "dashed"; case C.TextDecorationStyle_2: return "dotted"; case C.TextDecorationStyle_1: return "double"; case C.TextDecorationStyle_0: return "solid"; case C.TextDecorationStyle_4: return "wavy"; default: return null; } }, _textDirectionToCss: function(textDirection) { if (textDirection == null) return null; return H.textDirectionIndexToCss(textDirection.index); }, textDirectionIndexToCss: function(textDirectionIndex) { switch (textDirectionIndex) { case 0: return "rtl"; case 1: return null; } return null; }, textAlignToCssValue: function(align, textDirection) { var _s80_ = string$.x60null_c; switch (align) { case C.TextAlign_0: return "left"; case C.TextAlign_1: return "right"; case C.TextAlign_2: return "center"; case C.TextAlign_3: return "justify"; case C.TextAlign_5: switch (textDirection) { case C.TextDirection_1: return "end"; case C.TextDirection_0: return "left"; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.TextAlign_4: switch (textDirection) { case C.TextDirection_1: return ""; case C.TextDirection_0: return "right"; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case null: return ""; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, _listEquals: function(a, b) { var index; if (a == null) return b == null; if (b == null || a.length !== b.length) return false; for (index = 0; index < a.length; ++index) if (!J.$eq$(a[index], b[index])) return false; return true; }, _buildCssFontString: function(fontFamily, fontSize, fontStyle, fontWeight) { var t1; if (fontStyle != null) t1 = fontStyle === C.FontStyle_0 ? "normal" : "italic"; else t1 = "normal"; t1 += " "; t1 = (fontWeight != null ? t1 + H.S(H.fontWeightToCss(fontWeight)) : t1 + "normal") + " "; t1 = (fontSize != null ? t1 + C.JSNumber_methods.floor$0(fontSize) : t1 + "14") + "px " + H.S(H.canonicalizeFontFamily(fontFamily)); return t1.charCodeAt(0) == 0 ? t1 : t1; }, TextHeightRuler$: function(textHeightStyle, rulerHost) { return new H.TextHeightRuler(textHeightStyle, rulerHost, new H.TextDimensions(document.createElement("p"))); }, MeasurementResult$: function(constraintWidth, alphabeticBaseline, height, ideographicBaseline, isSingleLine, lineHeight, lines, maxIntrinsicWidth, minIntrinsicWidth, naturalHeight, placeholderBoxes, textAlign, textDirection, width) { return new H.MeasurementResult(constraintWidth, isSingleLine, width, height, naturalHeight, lineHeight, minIntrinsicWidth, maxIntrinsicWidth, alphabeticBaseline, ideographicBaseline, lines, placeholderBoxes, textAlign, textDirection); }, getCodePoint: function(text, index) { var char; if (index < 0 || index >= text.length) return null; char = J.codeUnitAt$1$s(text, index); if ((char & 63488) === 55296 && index < text.length - 1) return (char >>> 6 & 31) + 1 << 16 | (char & 63) << 10 | C.JSString_methods.codeUnitAt$1(text, index + 1) & 1023; return char; }, UnicodePropertyLookup_UnicodePropertyLookup$fromPackedData: function(packedData, singleRangesCount, propertyEnumValues, defaultProperty, $P) { return new H.UnicodePropertyLookup(H._unpackProperties(packedData, singleRangesCount, propertyEnumValues, $P), defaultProperty, P.LinkedHashMap_LinkedHashMap$_empty(type$.int, $P), $P._eval$1("UnicodePropertyLookup<0>")); }, _unpackProperties: function(packedData, singleRangesCount, propertyEnumValues, $P) { var t1, i, rangeStart, rangeEnd, i0, ranges = H.setRuntimeTypeInfo([], $P._eval$1("JSArray>")), dataLength = packedData.length; for (t1 = $P._eval$1("UnicodeRange<0>"), i = 0; i < dataLength; i = i0) { rangeStart = H._consumeInt(packedData, i); i += 4; if (C.JSString_methods._codeUnitAt$1(packedData, i) === 33) { ++i; rangeEnd = rangeStart; } else { rangeEnd = H._consumeInt(packedData, i); i += 4; } i0 = i + 1; ranges.push(new H.UnicodeRange(rangeStart, rangeEnd, propertyEnumValues[H._getEnumIndexFromPackedValue(C.JSString_methods._codeUnitAt$1(packedData, i))], t1)); } return ranges; }, _getEnumIndexFromPackedValue: function(charCode) { if (charCode <= 90) return charCode - 65; return 26 + charCode - 97; }, _consumeInt: function(packedData, index) { return H._getIntFromCharCode(C.JSString_methods._codeUnitAt$1(packedData, index + 3)) + H._getIntFromCharCode(C.JSString_methods._codeUnitAt$1(packedData, index + 2)) * 36 + H._getIntFromCharCode(C.JSString_methods._codeUnitAt$1(packedData, index + 1)) * 36 * 36 + H._getIntFromCharCode(C.JSString_methods._codeUnitAt$1(packedData, index)) * 36 * 36 * 36; }, _getIntFromCharCode: function(charCode) { if (charCode <= 57) return charCode - 48; return charCode - 97 + 10; }, WordBreaker__findBreakIndex: function(direction, text, index) { var t1 = direction.step, t2 = text.length, i = index; while (true) { if (!(i >= 0 && i <= t2)) break; i += t1; if (H.WordBreaker__isBreak(text, i)) break; } return H.clampInt(i, 0, t2); }, WordBreaker__isBreak: function(text, index) { var t1, immediateRight, immediateLeft, l, t2, codePoint, r, nextRight, nextLeft, _null = null; if (index <= 0 || index >= text.length) return true; t1 = index - 1; if ((C.JSString_methods.codeUnitAt$1(text, t1) & 63488) === 55296) return false; immediateRight = $.$get$wordLookup().find$2(0, text, index); immediateLeft = $.$get$wordLookup().find$2(0, text, t1); if (immediateLeft === C.WordCharProperty_3 && immediateRight === C.WordCharProperty_4) return false; if (H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_5, C.WordCharProperty_3, C.WordCharProperty_4, _null, _null)) return true; if (H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_5, C.WordCharProperty_3, C.WordCharProperty_4, _null, _null)) return true; if (immediateLeft === C.WordCharProperty_17 && immediateRight === C.WordCharProperty_17) return false; if (H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_6, C.WordCharProperty_8, C.WordCharProperty_16, _null, _null)) return false; for (l = 0; H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_6, C.WordCharProperty_8, C.WordCharProperty_16, _null, _null);) { ++l; t1 = index - l - 1; if (t1 < 0) return true; t2 = $.$get$wordLookup(); t2.toString; codePoint = H.getCodePoint(text, t1); immediateLeft = codePoint == null ? t2.defaultProperty : t2.findForChar$1(codePoint); } if (H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null) && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null)) return false; r = 0; do { ++r; nextRight = $.$get$wordLookup().find$2(0, text, index + r); } while (H.WordBreaker__oneOf(nextRight, C.WordCharProperty_6, C.WordCharProperty_8, C.WordCharProperty_16, _null, _null)); do { ++l; nextLeft = $.$get$wordLookup().find$2(0, text, index - l - 1); } while (H.WordBreaker__oneOf(nextLeft, C.WordCharProperty_6, C.WordCharProperty_8, C.WordCharProperty_16, _null, _null)); if (H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null) && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_11, C.WordCharProperty_13, C.WordCharProperty_1, _null, _null) && H.WordBreaker__oneOf(nextRight, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null)) return false; if (H.WordBreaker__oneOf(nextLeft, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null) && H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_11, C.WordCharProperty_13, C.WordCharProperty_1, _null, _null) && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null)) return false; t1 = immediateLeft === C.WordCharProperty_2; if (t1 && immediateRight === C.WordCharProperty_1) return false; if (t1 && immediateRight === C.WordCharProperty_0 && nextRight === C.WordCharProperty_2) return false; if (nextLeft === C.WordCharProperty_2 && immediateLeft === C.WordCharProperty_0 && immediateRight === C.WordCharProperty_2) return false; t1 = immediateLeft === C.WordCharProperty_14; if (t1 && immediateRight === C.WordCharProperty_14) return false; if (H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null) && immediateRight === C.WordCharProperty_14) return false; if (t1 && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_10, C.WordCharProperty_2, _null, _null, _null)) return false; if (nextLeft === C.WordCharProperty_14 && H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_12, C.WordCharProperty_13, C.WordCharProperty_1, _null, _null) && immediateRight === C.WordCharProperty_14) return false; if (t1 && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_12, C.WordCharProperty_13, C.WordCharProperty_1, _null, _null) && nextRight === C.WordCharProperty_14) return false; if (immediateLeft === C.WordCharProperty_9 && immediateRight === C.WordCharProperty_9) return false; if (H.WordBreaker__oneOf(immediateLeft, C.WordCharProperty_10, C.WordCharProperty_2, C.WordCharProperty_14, C.WordCharProperty_9, C.WordCharProperty_15) && immediateRight === C.WordCharProperty_15) return false; if (immediateLeft === C.WordCharProperty_15 && H.WordBreaker__oneOf(immediateRight, C.WordCharProperty_10, C.WordCharProperty_2, C.WordCharProperty_14, C.WordCharProperty_9, _null)) return false; return true; }, WordBreaker__oneOf: function(value, choice1, choice2, choice3, choice4, choice5) { if (value === choice1) return true; if (value === choice2) return true; if (choice3 != null && value === choice3) return true; if (choice4 != null && value === choice4) return true; if (choice5 != null && value === choice5) return true; return false; }, EngineInputType_fromName: function($name, isDecimal) { switch ($name) { case "TextInputType.number": return isDecimal ? C.C_DecimalInputType : C.C_NumberInputType; case "TextInputType.phone": return C.C_PhoneInputType; case "TextInputType.emailAddress": return C.C_EmailInputType; case "TextInputType.url": return C.C_UrlInputType; case "TextInputType.multiline": return C.C_MultilineInputType; case "TextInputType.text": default: return C.C_TextInputType; } }, TextCapitalizationConfig$fromInputConfiguration: function(inputConfiguration) { var t1; if (inputConfiguration === "TextCapitalization.words") t1 = C.TextCapitalization_0; else if (inputConfiguration === "TextCapitalization.characters") t1 = C.TextCapitalization_2; else t1 = inputConfiguration === "TextCapitalization.sentences" ? C.TextCapitalization_1 : C.TextCapitalization_30; return new H.TextCapitalizationConfig(t1); }, _emptyCallback: function(_) { }, _hideAutofillElements: function(domElement, isOffScreen) { var t1, _s11_ = "transparent", _s4_ = "none", elementStyle = domElement.style; elementStyle.whiteSpace = "pre-wrap"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "align-content"), "center", ""); elementStyle.padding = "0"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "1", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; elementStyle.outline = _s4_; elementStyle.border = _s4_; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "resize"), _s4_, ""); elementStyle.width = "0"; elementStyle.height = "0"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "text-shadow"), _s11_, ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "transform-origin"), "0 0 0", ""); if (isOffScreen) { elementStyle.top = "-9999px"; elementStyle.left = "-9999px"; } t1 = H._browserEngine(); if (t1 !== C.BrowserEngine_0) { t1 = H._browserEngine(); if (t1 !== C.BrowserEngine_5) { t1 = H._browserEngine(); t1 = t1 === C.BrowserEngine_1; } else t1 = true; } else t1 = true; if (t1) domElement.classList.add("transparentTextEditing"); C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "caret-color"), _s11_, null); }, EngineAutofillForm_fromFrameworkMessage: function(focusedElementAutofill, fields) { var t1, elements, items, formElement, ids, focusedElement, t2, t3, t4, autofillInfo, t5, autofill, htmlElement, _i, id, formIdentifier, form, submitButton; if (focusedElementAutofill == null) return null; t1 = type$.String; elements = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.HtmlElement); items = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.AutofillInfo); formElement = document.createElement("form"); formElement.noValidate = true; formElement.method = "post"; formElement.action = "#"; C.FormElement_methods.addEventListener$2(formElement, "submit", new H.EngineAutofillForm_fromFrameworkMessage_closure()); H._hideAutofillElements(formElement, false); ids = J.JSArray_JSArray$growable(0, t1); focusedElement = H.AutofillInfo_AutofillInfo$fromFrameworkMessage(focusedElementAutofill, C.TextCapitalizationConfig_TextCapitalization_3); if (fields != null) for (t1 = J.cast$1$0$ax(fields, type$.Map_String_dynamic), t1 = t1.get$iterator(t1), t2 = focusedElement.uniqueIdentifier; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = J.getInterceptor$asx(t3); autofillInfo = t4.$index(t3, "autofill"); t5 = t4.$index(t3, "textCapitalization"); if (t5 === "TextCapitalization.words") t5 = C.TextCapitalization_0; else if (t5 === "TextCapitalization.characters") t5 = C.TextCapitalization_2; else t5 = t5 === "TextCapitalization.sentences" ? C.TextCapitalization_1 : C.TextCapitalization_30; autofill = H.AutofillInfo_AutofillInfo$fromFrameworkMessage(autofillInfo, new H.TextCapitalizationConfig(t5)); t5 = autofill.uniqueIdentifier; ids.push(t5); if (t5 != t2) { htmlElement = H.EngineInputType_fromName(J.$index$asx(t4.$index(t3, "inputType"), "name"), false).createDomElement$0(); autofill.editingState.applyToDomElement$1(htmlElement); autofill.applyToDomElement$1(htmlElement); H._hideAutofillElements(htmlElement, false); items.$indexSet(0, t5, autofill); elements.$indexSet(0, t5, htmlElement); formElement.appendChild(htmlElement); } } else ids.push(focusedElement.uniqueIdentifier); C.JSArray_methods.sort$0(ids); for (t1 = ids.length, _i = 0, t2 = ""; _i < ids.length; ids.length === t1 || (0, H.throwConcurrentModificationError)(ids), ++_i) { id = ids[_i]; if (t2.length > 0) t2 += "*"; t2 += H.S(id); } formIdentifier = t2.charCodeAt(0) == 0 ? t2 : t2; form = $.$get$formsOnTheDom().$index(0, formIdentifier); if (form != null) C.FormElement_methods.remove$0(form); submitButton = W.InputElement_InputElement(null); H._hideAutofillElements(submitButton, true); submitButton.className = "submitBtn"; submitButton.type = "submit"; formElement.appendChild(submitButton); return new H.EngineAutofillForm(formElement, elements, items, formIdentifier); }, AutofillInfo_AutofillInfo$fromFrameworkMessage: function(autofill, textCapitalization) { var hintsList, editingState, t3, t1 = J.getInterceptor$asx(autofill), t2 = t1.$index(autofill, "uniqueIdentifier"); t2.toString; hintsList = t1.$index(autofill, "hints"); editingState = H.EditingState_EditingState$fromFrameworkMessage(t1.$index(autofill, "editingValue")); t1 = $.$get$BrowserAutofillHints__singletonInstance(); t3 = J.$index$asx(hintsList, 0); t1 = t1._flutterToEngineMap.$index(0, t3); return new H.AutofillInfo(editingState, t2, textCapitalization, t1 == null ? t3 : t1); }, EditingState$: function(baseOffset, extentOffset, text) { var t1 = baseOffset == null, t2 = t1 ? 0 : baseOffset, t3 = extentOffset == null, t4 = t3 ? 0 : extentOffset; t4 = Math.max(0, Math.min(t2, t4)); t1 = t1 ? 0 : baseOffset; t2 = t3 ? 0 : extentOffset; return new H.EditingState(text, t4, Math.max(0, Math.max(t1, t2))); }, EditingState_EditingState$fromFrameworkMessage: function(flutterEditingState) { var t1 = J.getInterceptor$asx(flutterEditingState); return H.EditingState$(t1.$index(flutterEditingState, "selectionBase"), t1.$index(flutterEditingState, "selectionExtent"), t1.$index(flutterEditingState, "text")); }, EditingState_EditingState$fromDomElement: function(domElement, textCapitalization) { var t1; if (type$.InputElement._is(domElement)) { t1 = domElement.value; return H.EditingState$(domElement.selectionStart, domElement.selectionEnd, t1); } else if (type$.TextAreaElement._is(domElement)) { t1 = domElement.value; return H.EditingState$(domElement.selectionStart, domElement.selectionEnd, t1); } else throw H.wrapException(P.UnsupportedError$("Initialized with unsupported input type")); }, InputConfiguration$fromFrameworkMessage: function(flutterInputConfiguration) { var t4, t5, t6, t7, t8, _s9_ = "inputType", _s8_ = "autofill", t1 = J.getInterceptor$asx(flutterInputConfiguration), t2 = J.$index$asx(t1.$index(flutterInputConfiguration, _s9_), "name"), t3 = J.$index$asx(t1.$index(flutterInputConfiguration, _s9_), "decimal"); t2 = H.EngineInputType_fromName(t2, t3 == null ? false : t3); t3 = t1.$index(flutterInputConfiguration, "inputAction"); if (t3 == null) t3 = "TextInputAction.done"; t4 = t1.$index(flutterInputConfiguration, "obscureText"); if (t4 == null) t4 = false; t5 = t1.$index(flutterInputConfiguration, "readOnly"); if (t5 == null) t5 = false; t6 = t1.$index(flutterInputConfiguration, "autocorrect"); if (t6 == null) t6 = true; t7 = H.TextCapitalizationConfig$fromInputConfiguration(t1.$index(flutterInputConfiguration, "textCapitalization")); t8 = t1.containsKey$1(flutterInputConfiguration, _s8_) ? H.AutofillInfo_AutofillInfo$fromFrameworkMessage(t1.$index(flutterInputConfiguration, _s8_), C.TextCapitalizationConfig_TextCapitalization_3) : null; return new H.InputConfiguration(t2, t3, t5, t4, t6, t8, H.EngineAutofillForm_fromFrameworkMessage(t1.$index(flutterInputConfiguration, _s8_), t1.$index(flutterInputConfiguration, "fields")), t7); }, saveForms: function() { $.$get$formsOnTheDom().forEach$1(0, new H.saveForms_closure()); }, cleanForms: function() { var t1, t2, t3; for (t1 = $.$get$formsOnTheDom(), t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = t2.parentNode; if (t3 != null) t3.removeChild(t2); } $.$get$formsOnTheDom().clear$0(0); }, setElementTransform: function(element, matrix4) { var t2, t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); t2 = H.float64ListToCssTransform(matrix4); C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, float64ListToCssTransform: function(matrix) { var transformKind = H.transformKindOf(matrix); if (transformKind === C.TransformKind_1) return "matrix(" + H.S(matrix[0]) + "," + H.S(matrix[1]) + "," + H.S(matrix[4]) + "," + H.S(matrix[5]) + "," + H.S(matrix[12]) + "," + H.S(matrix[13]) + ")"; else if (transformKind === C.TransformKind_2) return H.float64ListToCssTransform3d(matrix); else return "none"; }, transformKindOf: function(matrix) { if (!(matrix[15] === 1 && matrix[14] === 0 && matrix[11] === 0 && matrix[10] === 1 && matrix[9] === 0 && matrix[8] === 0 && matrix[7] === 0 && matrix[6] === 0 && matrix[3] === 0 && matrix[2] === 0)) return C.TransformKind_2; if (matrix[0] === 1 && matrix[1] === 0 && matrix[4] === 0 && matrix[5] === 1 && matrix[12] === 0 && matrix[13] === 0) return C.TransformKind_0; else return C.TransformKind_1; }, float64ListToCssTransform3d: function(matrix) { var tx, ty, t1 = matrix[0]; if (t1 === 1 && matrix[1] === 0 && matrix[2] === 0 && matrix[3] === 0 && matrix[4] === 0 && matrix[5] === 1 && matrix[6] === 0 && matrix[7] === 0 && matrix[8] === 0 && matrix[9] === 0 && matrix[10] === 1 && matrix[11] === 0 && matrix[14] === 0 && matrix[15] === 1) { tx = matrix[12]; ty = matrix[13]; return "translate3d(" + H.S(tx) + "px, " + H.S(ty) + "px, 0px)"; } else return "matrix3d(" + H.S(t1) + "," + H.S(matrix[1]) + "," + H.S(matrix[2]) + "," + H.S(matrix[3]) + "," + H.S(matrix[4]) + "," + H.S(matrix[5]) + "," + H.S(matrix[6]) + "," + H.S(matrix[7]) + "," + H.S(matrix[8]) + "," + H.S(matrix[9]) + "," + H.S(matrix[10]) + "," + H.S(matrix[11]) + "," + H.S(matrix[12]) + "," + H.S(matrix[13]) + "," + H.S(matrix[14]) + "," + H.S(matrix[15]) + ")"; }, transformRect: function(transform, rect) { var t1 = $.$get$_tempRectData(); t1[0] = rect.left; t1[1] = rect.top; t1[2] = rect.right; t1[3] = rect.bottom; H.transformLTRB(transform, t1); return new P.Rect(t1[0], t1[1], t1[2], t1[3]); }, transformLTRB: function(transform, ltrb) { var t2, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33, argStorage, w, t1 = $.$get$_tempPointData(); t1[0] = ltrb[0]; t1[4] = ltrb[1]; t1[8] = 0; t1[12] = 1; t1[1] = ltrb[2]; t1[5] = ltrb[1]; t1[9] = 0; t1[13] = 1; t1[2] = ltrb[0]; t1[6] = ltrb[3]; t1[10] = 0; t1[14] = 1; t1[3] = ltrb[2]; t1[7] = ltrb[3]; t1[11] = 0; t1[15] = 1; t2 = $.$get$_tempPointMatrix().__engine$_m4storage; m00 = t2[0]; m01 = t2[4]; m02 = t2[8]; m03 = t2[12]; m10 = t2[1]; m11 = t2[5]; m12 = t2[9]; m13 = t2[13]; m20 = t2[2]; m21 = t2[6]; m22 = t2[10]; m23 = t2[14]; m30 = t2[3]; m31 = t2[7]; m32 = t2[11]; m33 = t2[15]; argStorage = transform.__engine$_m4storage; t2[0] = m00 * argStorage[0] + m01 * argStorage[4] + m02 * argStorage[8] + m03 * argStorage[12]; t2[4] = m00 * argStorage[1] + m01 * argStorage[5] + m02 * argStorage[9] + m03 * argStorage[13]; t2[8] = m00 * argStorage[2] + m01 * argStorage[6] + m02 * argStorage[10] + m03 * argStorage[14]; t2[12] = m00 * argStorage[3] + m01 * argStorage[7] + m02 * argStorage[11] + m03 * argStorage[15]; t2[1] = m10 * argStorage[0] + m11 * argStorage[4] + m12 * argStorage[8] + m13 * argStorage[12]; t2[5] = m10 * argStorage[1] + m11 * argStorage[5] + m12 * argStorage[9] + m13 * argStorage[13]; t2[9] = m10 * argStorage[2] + m11 * argStorage[6] + m12 * argStorage[10] + m13 * argStorage[14]; t2[13] = m10 * argStorage[3] + m11 * argStorage[7] + m12 * argStorage[11] + m13 * argStorage[15]; t2[2] = m20 * argStorage[0] + m21 * argStorage[4] + m22 * argStorage[8] + m23 * argStorage[12]; t2[6] = m20 * argStorage[1] + m21 * argStorage[5] + m22 * argStorage[9] + m23 * argStorage[13]; t2[10] = m20 * argStorage[2] + m21 * argStorage[6] + m22 * argStorage[10] + m23 * argStorage[14]; t2[14] = m20 * argStorage[3] + m21 * argStorage[7] + m22 * argStorage[11] + m23 * argStorage[15]; t2[3] = m30 * argStorage[0] + m31 * argStorage[4] + m32 * argStorage[8] + m33 * argStorage[12]; t2[7] = m30 * argStorage[1] + m31 * argStorage[5] + m32 * argStorage[9] + m33 * argStorage[13]; t2[11] = m30 * argStorage[2] + m31 * argStorage[6] + m32 * argStorage[10] + m33 * argStorage[14]; t2[15] = m30 * argStorage[3] + m31 * argStorage[7] + m32 * argStorage[11] + m33 * argStorage[15]; w = argStorage[15]; if (w === 0) w = 1; ltrb[0] = Math.min(Math.min(Math.min(t1[0], t1[1]), t1[2]), t1[3]) / w; ltrb[1] = Math.min(Math.min(Math.min(t1[4], t1[5]), t1[6]), t1[7]) / w; ltrb[2] = Math.max(Math.max(Math.max(t1[0], t1[1]), t1[2]), t1[3]) / w; ltrb[3] = Math.max(Math.max(Math.max(t1[4], t1[5]), t1[6]), t1[7]) / w; }, rectContainsOther: function(rect, other) { return rect.left <= other.left && rect.top <= other.top && rect.right >= other.right && rect.bottom >= other.bottom; }, _pathToSvgClipPath: function(path, offsetX, offsetY, scaleX, scaleY) { var sb, clipId, _s58_ = '', t1 = $._clipIdCounter + 1; $._clipIdCounter = t1; sb = new P.StringBuffer(""); sb._contents = ''; sb._contents = _s58_; clipId = "svgClip" + t1; t1 = H._browserEngine(); if (t1 === C.BrowserEngine_2) { t1 = _s58_ + (""); sb._contents = t1; sb._contents = t1 + ''); sb._contents = t1; sb._contents = t1 + ('>> 0 === 4278190080) { hexValue = C.JSInt_methods.toRadixString$1(value & 16777215, 16); switch (hexValue.length) { case 1: return "#00000" + hexValue; case 2: return "#0000" + hexValue; case 3: return "#000" + hexValue; case 4: return "#00" + hexValue; case 5: return "#0" + hexValue; default: return "#" + hexValue; } } else { t1 = "rgba(" + C.JSInt_methods.toString$0(value >>> 16 & 255) + "," + C.JSInt_methods.toString$0(value >>> 8 & 255) + "," + C.JSInt_methods.toString$0(value & 255) + "," + C.JSNumber_methods.toString$0((value >>> 24 & 255) / 255) + ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }, colorComponentsToCssString: function(r, g, b, a) { if (a === 255) return "rgb(" + r + "," + g + "," + b + ")"; else return "rgba(" + r + "," + g + "," + b + "," + C.JSNumber_methods.toStringAsFixed$1(a / 255, 2) + ")"; }, isMacOrIOS: function() { var t1 = H._operatingSystem(); if (t1 !== C.OperatingSystem_0) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_4; } else t1 = true; return t1; }, canonicalizeFontFamily: function(fontFamily) { var t1; if (J.containsKey$1$x(C.Set_wIvsi._collection$_map, fontFamily)) return fontFamily; t1 = H._operatingSystem(); if (t1 !== C.OperatingSystem_0) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_4; } else t1 = true; if (t1) if (fontFamily === ".SF Pro Text" || fontFamily === ".SF Pro Display" || fontFamily === ".SF UI Text" || fontFamily === ".SF UI Display") return $.$get$_fallbackFontFamily(); return '"' + H.S(fontFamily) + '", ' + $.$get$_fallbackFontFamily() + ", sans-serif"; }, sendFontChangeMessage: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic); var $async$sendFontChangeMessage = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$._fontChangeScheduled) { $._fontChangeScheduled = true; C.Window_methods.requestAnimationFrame$1(window, new H.sendFontChangeMessage_closure()); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$sendFontChangeMessage, $async$completer); }, clampInt: function(value, min, max) { if (value < min) return min; else if (value > max) return max; else return value; }, Matrix4_tryInvert0: function(other) { var r = new H.Matrix40(new Float32Array(16)); if (r.copyInverse$1(other) === 0) return null; return r; }, Matrix4$identity: function() { var t1 = new Float32Array(16); t1[15] = 1; t1[0] = 1; t1[5] = 1; t1[10] = 1; return new H.Matrix40(t1); }, Matrix4$fromFloat32List: function(_m4storage) { return new H.Matrix40(_m4storage); }, Vector3_Vector3: function(x, y, z) { var t1 = new Float32Array(3); t1[0] = x; t1[1] = y; t1[2] = z; return new H.Vector30(t1); }, WebExperiments$_: function() { var t1 = new H.WebExperiments(); t1.WebExperiments$_$0(); return t1; }, EngineSingletonFlutterWindow$: function(windowId, platformDispatcher) { var t1 = new H.EngineSingletonFlutterWindow(windowId, platformDispatcher, C.WindowPadding_0_0_0_0); t1.EngineFlutterWindow$2(windowId, platformDispatcher); return t1; }, initializeEngine_closure: function initializeEngine_closure() { }, initializeEngine_closure0: function initializeEngine_closure0(t0) { this._box_0 = t0; }, initializeEngine__closure: function initializeEngine__closure(t0) { this._box_0 = t0; }, _addUrlStrategyListener_closure: function _addUrlStrategyListener_closure() { }, _addUrlStrategyListener_closure0: function _addUrlStrategyListener_closure0() { }, _NullTreeSanitizer: function _NullTreeSanitizer() { }, AlarmClock: function AlarmClock(t0) { var _ = this; _._timestampFunction = t0; _._datetime = _._timer = null; _.__AlarmClock_callback = $; }, AssetManager: function AssetManager() { }, AssetManager__baseUrl_closure: function AssetManager__baseUrl_closure() { }, AssetManager__baseUrl_closure0: function AssetManager__baseUrl_closure0() { }, AssetManagerException: function AssetManagerException(t0, t1) { this.url = t0; this.httpStatus = t1; }, BitmapCanvas: function BitmapCanvas(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._bounds = t0; _._elementCache = null; _.rootElement = t1; _._canvasPool = t2; _._cachedLastCssFont = null; _.__engine$_children = t3; _._widthInBitmapPixels = t4; _._heightInBitmapPixels = t5; _._saveCount = 0; _.__engine$_devicePixelRatio = t6; _._canvasPositionY = _._canvasPositionX = null; _._preserveImageData = _._contains3dTransform = _._childOverdraw = false; _._density = t7; _._renderStrategy = t8; }, BrowserEngine: function BrowserEngine(t0) { this.__engine$_name = t0; }, OperatingSystem: function OperatingSystem(t0) { this.__engine$_name = t0; }, _CanvasPool: function _CanvasPool(t0, t1, t2, t3, t4) { var _ = this; _._contextHandle = _.__engine$_context = null; _._widthInBitmapPixels = t0; _._heightInBitmapPixels = t1; _._rootElement = _.__engine$_canvas = _._reusablePool = _._activeCanvasList = null; _._saveContextCount = 0; _._density = t2; _._saveStack = t3; _._clipStack = null; _._currentTransform = t4; }, ContextStateHandle: function ContextStateHandle(t0, t1, t2, t3, t4, t5) { var _ = this; _.context = t0; _._canvasPool = t1; _.density = t2; _._currentBlendMode = t3; _._currentStrokeCap = t4; _._currentStrokeJoin = t5; _._currentStrokeStyle = _._currentFillStyle = null; _._currentLineWidth = 1; _._shaderBounds = _._lastUsedPaint = _._currentFilter = null; _._debugIsPaintSetUp = false; }, _SaveStackTracking: function _SaveStackTracking() { }, CkCanvas: function CkCanvas(t0) { this.skCanvas = t0; }, RecordingCkCanvas: function RecordingCkCanvas(t0, t1) { this.pictureSnapshot = t0; this.skCanvas = t1; }, CkPictureSnapshot: function CkPictureSnapshot(t0, t1) { this._bounds = t0; this._commands = t1; }, CkPaintCommand: function CkPaintCommand() { }, CkClearCommand: function CkClearCommand(t0) { this.color = t0; }, CkSaveCommand: function CkSaveCommand() { }, CkRestoreCommand: function CkRestoreCommand() { }, CkRestoreToCountCommand: function CkRestoreToCountCommand(t0) { this.count = t0; }, CkTranslateCommand: function CkTranslateCommand(t0, t1) { this.dx = t0; this.dy = t1; }, CkScaleCommand: function CkScaleCommand(t0, t1) { this.sx = t0; this.sy = t1; }, CkRotateCommand: function CkRotateCommand(t0) { this.radians = t0; }, CkTransformCommand: function CkTransformCommand(t0) { this.matrix4 = t0; }, CkClipRectCommand: function CkClipRectCommand(t0, t1, t2) { this.rect = t0; this.clipOp = t1; this.doAntiAlias = t2; }, CkDrawArcCommand: function CkDrawArcCommand(t0, t1, t2, t3, t4) { var _ = this; _.oval = t0; _.startAngle = t1; _.sweepAngle = t2; _.useCenter = t3; _.paint = t4; }, CkClipRRectCommand: function CkClipRRectCommand(t0, t1) { this.rrect = t0; this.doAntiAlias = t1; }, CkClipPathCommand: function CkClipPathCommand(t0, t1) { this.path = t0; this.doAntiAlias = t1; }, CkDrawLineCommand: function CkDrawLineCommand(t0, t1, t2) { this.p1 = t0; this.p2 = t1; this.paint = t2; }, CkDrawPaintCommand: function CkDrawPaintCommand(t0) { this.paint = t0; }, CkDrawRectCommand: function CkDrawRectCommand(t0, t1) { this.rect = t0; this.paint = t1; }, CkDrawRRectCommand: function CkDrawRRectCommand(t0, t1) { this.rrect = t0; this.paint = t1; }, CkDrawDRRectCommand: function CkDrawDRRectCommand(t0, t1, t2) { this.outer = t0; this.inner = t1; this.paint = t2; }, CkDrawCircleCommand: function CkDrawCircleCommand(t0, t1, t2) { this.c = t0; this.radius = t1; this.paint = t2; }, CkDrawPathCommand: function CkDrawPathCommand(t0, t1) { this.path = t0; this.paint = t1; }, CkDrawShadowCommand: function CkDrawShadowCommand(t0, t1, t2, t3) { var _ = this; _.path = t0; _.color = t1; _.elevation = t2; _.transparentOccluder = t3; }, CkDrawImageRectCommand: function CkDrawImageRectCommand(t0, t1, t2, t3) { var _ = this; _.image = t0; _.src = t1; _.dst = t2; _.paint = t3; }, CkDrawParagraphCommand: function CkDrawParagraphCommand(t0, t1) { this.paragraph = t0; this.offset = t1; }, CkDrawPictureCommand: function CkDrawPictureCommand(t0) { this.picture = t0; }, CkSaveLayerCommand: function CkSaveLayerCommand(t0, t1) { this.bounds = t0; this.paint = t1; }, CanvasKit: function CanvasKit() { }, CanvasKitInitOptions: function CanvasKitInitOptions() { }, CanvasKitInitPromise: function CanvasKitInitPromise() { }, ColorSpace: function ColorSpace() { }, SkWebGLContextOptions: function SkWebGLContextOptions() { }, SkSurface: function SkSurface() { }, SkGrContext: function SkGrContext() { }, SkFontSlantEnum: function SkFontSlantEnum() { }, SkFontSlant: function SkFontSlant() { }, SkFontWeightEnum: function SkFontWeightEnum() { }, SkFontWeight: function SkFontWeight() { }, SkAffinityEnum: function SkAffinityEnum() { }, SkAffinity: function SkAffinity() { }, SkTextDirectionEnum: function SkTextDirectionEnum() { }, SkTextDirection: function SkTextDirection() { }, SkTextAlignEnum: function SkTextAlignEnum() { }, SkTextAlign: function SkTextAlign() { }, SkRectHeightStyleEnum: function SkRectHeightStyleEnum() { }, SkRectHeightStyle: function SkRectHeightStyle() { }, SkRectWidthStyleEnum: function SkRectWidthStyleEnum() { }, SkRectWidthStyle: function SkRectWidthStyle() { }, SkVertexModeEnum: function SkVertexModeEnum() { }, SkVertexMode: function SkVertexMode() { }, SkPointModeEnum: function SkPointModeEnum() { }, SkPointMode: function SkPointMode() { }, SkClipOpEnum: function SkClipOpEnum() { }, SkClipOp: function SkClipOp() { }, SkFillTypeEnum: function SkFillTypeEnum() { }, SkFillType: function SkFillType() { }, SkPathOpEnum: function SkPathOpEnum() { }, SkPathOp: function SkPathOp() { }, SkBlurStyleEnum: function SkBlurStyleEnum() { }, SkBlurStyle: function SkBlurStyle() { }, SkStrokeCapEnum: function SkStrokeCapEnum() { }, SkStrokeCap: function SkStrokeCap() { }, SkPaintStyleEnum: function SkPaintStyleEnum() { }, SkPaintStyle: function SkPaintStyle() { }, SkBlendModeEnum: function SkBlendModeEnum() { }, SkBlendMode: function SkBlendMode() { }, SkStrokeJoinEnum: function SkStrokeJoinEnum() { }, SkStrokeJoin: function SkStrokeJoin() { }, SkFilterQualityEnum: function SkFilterQualityEnum() { }, SkFilterQuality: function SkFilterQuality() { }, SkTileModeEnum: function SkTileModeEnum() { }, SkTileMode: function SkTileMode() { }, SkFilterModeEnum: function SkFilterModeEnum() { }, SkFilterMode: function SkFilterMode() { }, SkMipmapModeEnum: function SkMipmapModeEnum() { }, SkMipmapMode: function SkMipmapMode() { }, SkAlphaTypeEnum: function SkAlphaTypeEnum() { }, SkAlphaType: function SkAlphaType() { }, SkColorTypeEnum: function SkColorTypeEnum() { }, SkColorType: function SkColorType() { }, SkAnimatedImage: function SkAnimatedImage() { }, SkImage: function SkImage() { }, SkShaderNamespace: function SkShaderNamespace() { }, SkShader: function SkShader() { }, SkMaskFilterNamespace: function SkMaskFilterNamespace() { }, SkPaint: function SkPaint() { }, SkMaskFilter: function SkMaskFilter() { }, SkColorFilterNamespace: function SkColorFilterNamespace() { }, SkColorFilter: function SkColorFilter() { }, SkImageFilterNamespace: function SkImageFilterNamespace() { }, SkImageFilter: function SkImageFilter() { }, SkPathNamespace: function SkPathNamespace() { }, _NativeFloat32ArrayType: function _NativeFloat32ArrayType() { }, SkFloat32List: function SkFloat32List() { }, SkPath: function SkPath() { }, SkContourMeasureIter: function SkContourMeasureIter() { }, SkContourMeasure: function SkContourMeasure() { }, SkPictureRecorder: function SkPictureRecorder() { }, SkCanvas: function SkCanvas() { }, SkPicture: function SkPicture() { }, SkParagraphBuilderNamespace: function SkParagraphBuilderNamespace() { }, SkParagraphBuilder: function SkParagraphBuilder() { }, SkParagraphStyle: function SkParagraphStyle() { }, SkParagraphStyleProperties: function SkParagraphStyleProperties() { }, SkTextStyle: function SkTextStyle() { }, SkTextDecorationStyleEnum: function SkTextDecorationStyleEnum() { }, SkTextDecorationStyle: function SkTextDecorationStyle() { }, SkTextBaselineEnum: function SkTextBaselineEnum() { }, SkTextBaseline: function SkTextBaseline() { }, SkPlaceholderAlignmentEnum: function SkPlaceholderAlignmentEnum() { }, SkPlaceholderAlignment: function SkPlaceholderAlignment() { }, SkTextStyleProperties: function SkTextStyleProperties() { }, SkStrutStyleProperties: function SkStrutStyleProperties() { }, SkFontStyle: function SkFontStyle() { }, SkTextShadow: function SkTextShadow() { }, SkFontFeature: function SkFontFeature() { }, SkTypeface: function SkTypeface() { }, SkFont: function SkFont() { }, SkFontMgr: function SkFontMgr() { }, TypefaceFontProvider: function TypefaceFontProvider() { }, SkLineMetrics: function SkLineMetrics() { }, SkParagraph: function SkParagraph() { }, SkTextPosition: function SkTextPosition() { }, SkTextRange: function SkTextRange() { }, SkVertices: function SkVertices() { }, SkTonalColors: function SkTonalColors() { }, SkFontMgrNamespace: function SkFontMgrNamespace() { }, TypefaceFontProviderNamespace: function TypefaceFontProviderNamespace() { }, ProductionCollector: function ProductionCollector(t0) { this.__ProductionCollector__skObjectFinalizationRegistry = $; this._skiaObjectCollectionQueue = t0; this._skiaObjectCollectionTimer = null; }, ProductionCollector_closure: function ProductionCollector_closure(t0) { this.$this = t0; }, ProductionCollector_collect_closure: function ProductionCollector_collect_closure(t0) { this.$this = t0; }, SkiaObjectCollectionError: function SkiaObjectCollectionError(t0, t1) { this.error = t0; this.stackTrace = t1; }, SkDeletable: function SkDeletable() { }, JsConstructor: function JsConstructor() { }, SkObjectFinalizationRegistry: function SkObjectFinalizationRegistry() { }, SkData: function SkData() { }, SkImageInfo: function SkImageInfo() { }, CanvasKitCanvas: function CanvasKitCanvas(t0) { this.__engine$_canvas = t0; }, _ManagedSkColorFilter: function _ManagedSkColorFilter(t0) { this.ckColorFilter = t0; this.rawSkiaObject = null; }, _CkBlendModeColorFilter: function _CkBlendModeColorFilter() { }, HtmlViewEmbedder: function HtmlViewEmbedder(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._pictureRecorders = t0; _._currentCompositionParams = t1; _.__engine$_views = t2; _._rootViews = t3; _._overlays = t4; _._viewsToRecomposite = t5; _._viewsToDispose = t6; _._compositionOrder = t7; _._activeCompositionOrder = t8; _._clipCount = t9; _._frameSize = t10; _._clipPathCount = 0; _._svgPathDefs = null; _._svgClipDefs = t11; }, HtmlViewEmbedder__applyMutators_closure: function HtmlViewEmbedder__applyMutators_closure() { }, HtmlViewEmbedder__applyMutators_closure0: function HtmlViewEmbedder__applyMutators_closure0() { }, OverlayCache: function OverlayCache(t0, t1) { this.maximumSize = t0; this._cache = t1; }, EmbeddedViewParams: function EmbeddedViewParams(t0, t1, t2) { this.offset = t0; this.size = t1; this.mutators = t2; }, MutatorType: function MutatorType(t0) { this.__engine$_name = t0; }, Mutator: function Mutator(t0, t1, t2, t3, t4, t5) { var _ = this; _.type = t0; _.rect = t1; _.rrect = t2; _.path = t3; _.matrix = t4; _.alpha = t5; }, MutatorsStack: function MutatorsStack(t0) { this._mutators = t0; }, FontFallbackData: function FontFallbackData(t0, t1, t2, t3, t4, t5) { var _ = this; _.registeredSymbolsAndEmoji = false; _.codeUnitsWithNoKnownFont = t0; _.knownCoveredCodeUnits = t1; _.notoTree = t2; _.registeredFallbackFonts = t3; _.globalFontFallbacks = t4; _.fontFallbackCounts = t5; }, FontFallbackData_createNotoFontTree_closure: function FontFallbackData_createNotoFontTree_closure() { }, FontFallbackData_registerFallbackFont_closure: function FontFallbackData_registerFallbackFont_closure() { }, findFontsForMissingCodeunits_closure: function findFontsForMissingCodeunits_closure(t0) { this.data = t0; }, _makeResolvedNotoFontFromCss_closure: function _makeResolvedNotoFontFromCss_closure() { }, _registerSymbolsAndEmoji_extractUrlFromCss: function _registerSymbolsAndEmoji_extractUrlFromCss() { }, findMinimumFontsForCodeUnits_closure: function findMinimumFontsForCodeUnits_closure() { }, findMinimumFontsForCodeUnits_closure0: function findMinimumFontsForCodeUnits_closure0(t0) { this._box_0 = t0; }, NotoFont: function NotoFont(t0, t1) { var _ = this; _.name = t0; _.approximateUnicodeRanges = t1; _.resolvedFont = _._decodingCompleter = null; }, CodeunitRange: function CodeunitRange(t0, t1) { this.start = t0; this.end = t1; }, _ResolvedNotoFont: function _ResolvedNotoFont(t0, t1) { this.name = t0; this.tree = t1; }, _ResolvedNotoSubset: function _ResolvedNotoSubset(t0, t1, t2) { this.url = t0; this.family = t1; this.ranges = t2; }, FallbackFontDownloadQueue: function FallbackFontDownloadQueue(t0, t1, t2) { var _ = this; _.downloader = t0; _.downloadedSubsets = t1; _.pendingSubsets = t2; _._fontsLoading = null; }, FallbackFontDownloadQueue_startDownloads_closure: function FallbackFontDownloadQueue_startDownloads_closure(t0, t1, t2) { this.$this = t0; this.subset = t1; this.downloadedData = t2; }, NotoDownloader: function NotoDownloader() { this._debugActiveDownloadCount = 0; }, NotoDownloader_downloadAsBytes_closure: function NotoDownloader_downloadAsBytes_closure() { }, NotoDownloader_downloadAsBytes__closure: function NotoDownloader_downloadAsBytes__closure() { }, NotoDownloader_downloadAsString_closure: function NotoDownloader_downloadAsString_closure() { }, NotoDownloader_downloadAsString__closure: function NotoDownloader_downloadAsString__closure() { }, SkiaFontCollection: function SkiaFontCollection(t0, t1, t2) { var _ = this; _._unloadedFonts = t0; _._registeredFonts = t1; _.familyToTypefaceMap = t2; _.fontProvider = null; }, SkiaFontCollection_ensureFontsLoaded_closure: function SkiaFontCollection_ensureFontsLoaded_closure() { }, SkiaFontCollection_ensureFontsLoaded_closure0: function SkiaFontCollection_ensureFontsLoaded_closure0() { }, SkiaFontCollection__getArrayBuffer_closure: function SkiaFontCollection__getArrayBuffer_closure() { }, _RegisteredFont: function _RegisteredFont(t0, t1, t2) { this.family = t0; this.bytes = t1; this.typeface = t2; }, ImageCodecException: function ImageCodecException(t0) { this.__engine$_message = t0; }, httpRequestFactory_closure: function httpRequestFactory_closure() { }, skiaInstantiateWebImageCodec_closure: function skiaInstantiateWebImageCodec_closure(t0) { this.chunkCallback = t0; }, skiaInstantiateWebImageCodec_closure0: function skiaInstantiateWebImageCodec_closure0(t0, t1) { this.completer = t0; this.url = t1; }, skiaInstantiateWebImageCodec_closure1: function skiaInstantiateWebImageCodec_closure1(t0, t1, t2) { this.request = t0; this.completer = t1; this.url = t2; }, CkAnimatedImage: function CkAnimatedImage(t0, t1) { var _ = this; _.src = t0; _._bytes = t1; _._disposed = false; _.rawSkiaObject = null; }, CkImage: function CkImage(t0) { this._debugStackTrace = null; this.__CkImage_box = t0; this._disposed = false; }, CkImage_closure: function CkImage_closure(t0, t1, t2) { this.originalWidth = t0; this.originalHeight = t1; this.originalBytes = t2; }, AnimatedImageFrameInfo: function AnimatedImageFrameInfo(t0, t1) { this.__engine$_duration = t0; this.__engine$_image = t1; }, initializeCanvasKit__loadSubscription_set: function initializeCanvasKit__loadSubscription_set(t0) { this._box_0 = t0; }, initializeCanvasKit__loadSubscription_get: function initializeCanvasKit__loadSubscription_get(t0) { this._box_0 = t0; }, initializeCanvasKit_closure: function initializeCanvasKit_closure(t0, t1) { this._loadSubscription_get = t0; this.canvasKitCompleter = t1; }, initializeCanvasKit__closure: function initializeCanvasKit__closure() { }, initializeCanvasKit__closure0: function initializeCanvasKit__closure0(t0) { this.canvasKitCompleter = t0; }, IntervalTree: function IntervalTree(t0, t1) { this.root = t0; this.$ti = t1; }, IntervalTree_IntervalTree$createFromRanges_closure: function IntervalTree_IntervalTree$createFromRanges_closure(t0, t1) { this.intervals = t0; this.T = t1; }, IntervalTree_IntervalTree$createFromRanges_closure0: function IntervalTree_IntervalTree$createFromRanges_closure0(t0) { this.T = t0; }, IntervalTree_IntervalTree$createFromRanges__makeBalancedTree: function IntervalTree_IntervalTree$createFromRanges__makeBalancedTree(t0) { this.T = t0; }, IntervalTree_IntervalTree$createFromRanges__computeHigh: function IntervalTree_IntervalTree$createFromRanges__computeHigh(t0) { this.T = t0; }, IntervalTreeNode: function IntervalTreeNode(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.low = t1; _.high = t2; _.computedHigh = t3; _.right = _.left = null; _.$ti = t4; }, Layer: function Layer() { }, PrerollContext: function PrerollContext(t0, t1) { this.viewEmbedder = t0; this.mutatorsStack = t1; }, PaintContext: function PaintContext(t0, t1, t2) { this.internalNodesCanvas = t0; this.leafNodesCanvas = t1; this.viewEmbedder = t2; }, ContainerLayer: function ContainerLayer() { }, RootLayer: function RootLayer(t0, t1) { this._layers = t0; this.parent = null; this.paintBounds = t1; }, ClipPathEngineLayer: function ClipPathEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipPath = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, ClipRectEngineLayer: function ClipRectEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipRect = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, ClipRRectEngineLayer: function ClipRRectEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_clipRRect = t0; _.__engine$_clipBehavior = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, OpacityEngineLayer: function OpacityEngineLayer(t0, t1, t2, t3) { var _ = this; _.__engine$_alpha = t0; _.__engine$_offset = t1; _._layers = t2; _.parent = null; _.paintBounds = t3; }, TransformEngineLayer: function TransformEngineLayer(t0, t1, t2) { var _ = this; _.__engine$_transform = t0; _._layers = t1; _.parent = null; _.paintBounds = t2; }, OffsetEngineLayer: function OffsetEngineLayer(t0, t1, t2) { var _ = this; _.__engine$_transform = t0; _._layers = t1; _.parent = null; _.paintBounds = t2; }, PictureLayer0: function PictureLayer0(t0, t1, t2) { var _ = this; _.picture = t0; _.offset = t1; _.parent = null; _.paintBounds = t2; }, PhysicalShapeEngineLayer: function PhysicalShapeEngineLayer(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.__engine$_elevation = t0; _.__engine$_color = t1; _.__engine$_shadowColor = t2; _.__engine$_path = t3; _.__engine$_clipBehavior = t4; _._layers = t5; _.parent = null; _.paintBounds = t6; }, PlatformViewLayer0: function PlatformViewLayer0(t0, t1, t2, t3, t4) { var _ = this; _.viewId = t0; _.offset = t1; _.width = t2; _.height = t3; _.parent = null; _.paintBounds = t4; }, LayerScene: function LayerScene(t0) { this.layerTree = t0; }, LayerSceneBuilder: function LayerSceneBuilder(t0) { this.rootLayer = t0; this.__LayerSceneBuilder_currentLayer = $; }, LayerTree: function LayerTree(t0, t1) { this.rootLayer = t0; this.frameSize = t1; }, Frame: function Frame(t0, t1, t2) { this.canvas = t0; this.rasterCache = t1; this.viewEmbedder = t2; }, Frame_raster_closure: function Frame_raster_closure(t0, t1, t2) { this.$this = t0; this.layerTree = t1; this.ignoreRasterCache = t2; }, Frame_raster_closure0: function Frame_raster_closure0(t0, t1, t2) { this.$this = t0; this.layerTree = t1; this.ignoreRasterCache = t2; }, CompositorContext: function CompositorContext() { }, CkMaskFilter: function CkMaskFilter(t0, t1) { this._blurStyle = t0; this.__engine$_sigma = t1; this.rawSkiaObject = null; }, CkNWayCanvas: function CkNWayCanvas(t0) { this._canvases = t0; }, CkPaint: function CkPaint(t0, t1, t2, t3, t4, t5) { var _ = this; _._blendMode = t0; _._style = t1; _._strokeWidth = 0; _._strokeCap = t2; _._strokeJoin = t3; _._isAntiAlias = true; _.__engine$_color = t4; _._ckMaskFilter = _._maskFilter = _._shader = null; _._filterQuality = t5; _.rawSkiaObject = _._managedColorFilter = null; }, CkPath: function CkPath(t0) { this._fillType = t0; this.rawSkiaObject = this._cachedCommands = null; }, CkPicture: function CkPicture(t0, t1) { this.cullRect = t0; this.__engine$_snapshot = t1; this.rawSkiaObject = null; }, CkPictureRecorder: function CkPictureRecorder() { this._recordingCanvas = this._skRecorder = this._cullRect = null; }, Rasterizer: function Rasterizer(t0, t1, t2) { this.surface = t0; this.context = t1; this._postFrameCallbacks = t2; }, CkShader: function CkShader() { }, CkGradientLinear: function CkGradientLinear(t0, t1, t2, t3, t4) { var _ = this; _.from = t0; _.to = t1; _.colors = t2; _.colorStops = t3; _.tileMode = t4; _.rawSkiaObject = null; }, SkiaObjectCache: function SkiaObjectCache(t0, t1, t2) { this.maximumSize = t0; this._itemQueue = t1; this._itemMap = t2; }, SkiaObject: function SkiaObject() { }, ManagedSkiaObject: function ManagedSkiaObject() { }, SkiaObjectBox: function SkiaObjectBox(t0, t1, t2) { var _ = this; _._refCount = 1; _.debugReferrers = t0; _._skDeletable = _.rawSkiaObject = null; _._resurrector = t1; _._isDeletedPermanently = false; _.$ti = t2; }, SurfaceFrame: function SurfaceFrame(t0, t1) { this.skiaSurface = t0; this.submitCallback = t1; }, Surface: function Surface(t0, t1) { var _ = this; _.__engine$_surface = null; _._forceNewContext = true; _._skiaCacheBytes = _._grContext = null; _.htmlElement = t0; _.htmlCanvas = null; _._pixelHeight = _._pixelWidth = -1; _._addedToScene = false; _.viewEmbedder = t1; _._currentSize = null; _._currentDevicePixelRatio = -1; }, Surface_acquireFrame_closure: function Surface_acquireFrame_closure(t0) { this.$this = t0; }, Surface__createNewSurface_closure: function Surface__createNewSurface_closure(t0) { this.$this = t0; }, CkSurface: function CkSurface(t0, t1, t2) { var _ = this; _.__engine$_surface = t0; _._grContext = t1; _._glContext = t2; _._isDisposed = false; }, CkParagraphStyle: function CkParagraphStyle(t0, t1, t2, t3, t4, t5) { var _ = this; _.skParagraphStyle = t0; _._textDirection = t1; _._fontFamily = t2; _.__engine$_fontSize = t3; _._fontWeight = t4; _._fontStyle = t5; }, CkTextStyle: function CkTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.color = t0; _.decoration = t1; _.decorationColor = t2; _.decorationStyle = t3; _.decorationThickness = t4; _.fontWeight = t5; _.fontStyle = t6; _.textBaseline = t7; _.fontFamily = t8; _.fontFamilyFallback = t9; _.fontSize = t10; _.letterSpacing = t11; _.wordSpacing = t12; _.height = t13; _.locale = t14; _.background = t15; _.foreground = t16; _.shadows = t17; _.fontFeatures = t18; _.__CkTextStyle_skTextStyle = _.__CkTextStyle_effectiveFontFamilies = $; }, CkTextStyle_skTextStyle_closure: function CkTextStyle_skTextStyle_closure(t0) { this.$this = t0; }, CkParagraph: function CkParagraph(t0, t1, t2) { var _ = this; _._initialParagraph = t0; _._paragraphStyle = t1; _._paragraphCommands = t2; _.rawSkiaObject = _._lastLayoutConstraints = null; }, CkParagraphBuilder: function CkParagraphBuilder(t0, t1, t2, t3, t4) { var _ = this; _._paragraphBuilder = t0; _._style = t1; _._commands = t2; _._placeholderScales = t3; _._styleStack = t4; }, CkParagraphBuilder__ensureFontsSupportText_closure: function CkParagraphBuilder__ensureFontsSupportText_closure() { }, CkParagraphBuilder__checkIfGlobalFallbacksSupport_closure: function CkParagraphBuilder__checkIfGlobalFallbacksSupport_closure(t0) { this.fallbackData = t0; }, CkParagraphBuilder__checkIfNoFallbackFontSupports_closure: function CkParagraphBuilder__checkIfNoFallbackFontSupports_closure(t0) { this.fallbackData = t0; }, _ParagraphCommand: function _ParagraphCommand(t0, t1, t2, t3) { var _ = this; _.type = t0; _.text = t1; _.style = t2; _.placeholderStyle = t3; }, _ParagraphCommandType: function _ParagraphCommandType(t0) { this.__engine$_name = t0; }, _getEffectiveFontFamilies_closure: function _getEffectiveFontFamilies_closure(t0) { this.fontFamily = t0; }, CanvasKitError: function CanvasKitError(t0) { this.message = t0; }, ClipboardMessageHandler: function ClipboardMessageHandler(t0, t1) { this._copyToClipboardStrategy = t0; this._pasteFromClipboardStrategy = t1; }, ClipboardMessageHandler_setDataMethodCall_closure: function ClipboardMessageHandler_setDataMethodCall_closure(t0, t1) { this._box_0 = t0; this.callback = t1; }, ClipboardMessageHandler_setDataMethodCall_closure0: function ClipboardMessageHandler_setDataMethodCall_closure0(t0, t1) { this._box_0 = t0; this.callback = t1; }, ClipboardMessageHandler_getDataMethodCall_closure: function ClipboardMessageHandler_getDataMethodCall_closure(t0) { this.callback = t0; }, ClipboardMessageHandler_getDataMethodCall_closure0: function ClipboardMessageHandler_getDataMethodCall_closure0(t0) { this.callback = t0; }, ClipboardAPICopyStrategy: function ClipboardAPICopyStrategy() { }, ClipboardAPIPasteStrategy: function ClipboardAPIPasteStrategy() { }, ExecCommandCopyStrategy: function ExecCommandCopyStrategy() { }, ExecCommandPasteStrategy: function ExecCommandPasteStrategy() { }, DomCanvas: function DomCanvas(t0, t1, t2, t3) { var _ = this; _.rootElement = t0; _.SaveElementStackTracking__saveStack = t1; _.SaveElementStackTracking__elementStack = t2; _.SaveElementStackTracking__currentTransform = t3; }, DomRenderer: function DomRenderer(t0) { var _ = this; _._glassPaneElement = _._staleHotRestartState = _._sceneElement = _._semanticsHostElement = _._sceneHostElement = _._canvasKitScript = _._viewportMeta = _._styleElement = _._localeSubscription = _._resizeSubscription = null; _.rootElement = t0; _._debugFrameStatistics = null; }, DomRenderer_reset_closure: function DomRenderer_reset_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.initialInnerWidth = t2; }, DomRenderer_reset_closure0: function DomRenderer_reset_closure0(t0, t1) { this.$this = t0; this.objectConstructor = t1; }, DomRenderer_reset_closure1: function DomRenderer_reset_closure1() { }, DomRenderer_reset_closure2: function DomRenderer_reset_closure2(t0, t1) { this.$this = t0; this.objectConstructor = t1; }, DomRenderer_reset_closure3: function DomRenderer_reset_closure3() { }, DomRenderer_setPreferredOrientation_closure: function DomRenderer_setPreferredOrientation_closure(t0) { this.completer = t0; }, DomRenderer_setPreferredOrientation_closure0: function DomRenderer_setPreferredOrientation_closure0(t0) { this.completer = t0; }, EngineCanvas: function EngineCanvas() { }, _SaveStackEntry: function _SaveStackEntry(t0, t1) { this.transform = t0; this.clipStack = t1; }, _SaveClipEntry: function _SaveClipEntry(t0, t1, t2, t3) { var _ = this; _.rect = t0; _.rrect = t1; _.path = t2; _.currentTransform = t3; }, _SaveElementStackEntry: function _SaveElementStackEntry(t0, t1) { this.savedElement = t0; this.transform = t1; }, SaveElementStackTracking: function SaveElementStackTracking() { }, FrameReference: function FrameReference(t0, t1) { this.value = t0; this.$ti = t1; }, CrossFrameCache: function CrossFrameCache(t0) { this._reusablePool = this._cache = null; this.$ti = t0; }, _CrossFrameCacheItem: function _CrossFrameCacheItem(t0, t1, t2) { this.value = t0; this.evictCallback = t1; this.$ti = t2; }, SurfaceCanvas: function SurfaceCanvas(t0) { this.__engine$_canvas = t0; }, _DomClip: function _DomClip() { }, PersistedClipRect: function PersistedClipRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.clipBehavior = t0; _.rect = t1; _._DomClip__childContainer = t2; _.__engine$_children = t3; _._oldLayer = t4; _.__engine$_index = -1; _.__engine$_state = t5; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedClipRRect: function PersistedClipRRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rrect = t0; _.clipBehavior = t1; _._DomClip__childContainer = t2; _.__engine$_children = t3; _._oldLayer = t4; _.__engine$_index = -1; _.__engine$_state = t5; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedPhysicalShape: function PersistedPhysicalShape(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.path = t0; _.pathBounds = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.clipBehavior = t5; _._svgElement = _._clipElement = null; _._DomClip__childContainer = t6; _.__engine$_children = t7; _._oldLayer = t8; _.__engine$_index = -1; _.__engine$_state = t9; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedClipPath: function PersistedClipPath(t0, t1, t2, t3, t4) { var _ = this; _.clipPath = t0; _.clipBehavior = t1; _._clipElement = null; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedOffset: function PersistedOffset(t0, t1, t2, t3, t4) { var _ = this; _.dx = t0; _.dy = t1; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedOpacity: function PersistedOpacity(t0, t1, t2, t3, t4) { var _ = this; _.alpha = t0; _.offset = t1; _.__engine$_children = t2; _._oldLayer = t3; _.__engine$_index = -1; _.__engine$_state = t4; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, SurfacePaint: function SurfacePaint(t0) { this._paintData = t0; this._frozen = false; }, SurfacePaintData: function SurfacePaintData() { var _ = this; _.strokeJoin = _.strokeCap = _.strokeWidth = _.style = _.blendMode = null; _.isAntiAlias = true; _.colorFilter = _.filterQuality = _.maskFilter = _.shader = _.color = null; }, Conic: function Conic(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.p0x = t0; _.p0y = t1; _.p1x = t2; _.p1y = t3; _.p2x = t4; _.p2y = t5; _.fW = t6; }, _QuadBounds: function _QuadBounds() { var _ = this; _.maxY = _.maxX = _.minY = _.minX = 0; }, _ConicBounds: function _ConicBounds() { var _ = this; _.maxY = _.maxX = _.minY = _.minX = 0; }, _ConicPair: function _ConicPair() { this.second = this.first = null; }, _CubicBounds: function _CubicBounds() { var _ = this; _.maxY = _.minY = _.maxX = _.minX = 0; }, SurfacePath: function SurfacePath(t0, t1) { var _ = this; _.pathRef = t0; _._fillType = t1; _.fLastMoveToIndex = 0; _._firstDirection = _._convexityType = -1; }, _SkQuadCoefficients: function _SkQuadCoefficients(t0, t1, t2, t3, t4, t5) { var _ = this; _.ax = t0; _.ay = t1; _.bx = t2; _.by = t3; _.cx = t4; _.cy = t5; }, PathRef: function PathRef(t0, t1) { var _ = this; _.cachedBounds = _.fBounds = null; _._fVerbsCapacity = _._fPointsLength = _._fPointsCapacity = 0; _._fPoints = t0; _._fVerbs = t1; _._conicWeightsCapacity = _._fVerbsLength = 0; _._conicWeights = null; _._conicWeightsLength = 0; _.fIsFinite = _.fBoundsIsDirty = true; _.fRRectOrOvalIsCCW = _.fIsRect = _.fIsRRect = _.fIsOval = false; _.fRRectOrOvalStartIdx = -1; _.fSegmentMask = 0; }, PathRefIterator: function PathRefIterator(t0) { var _ = this; _.pathRef = t0; _._conicWeightIndex = -1; _.iterIndex = _._pointIndex = _._verbIndex = 0; }, _QuadRoots: function _QuadRoots() { this.root1 = this.root0 = null; }, PathWinding: function PathWinding(t0, t1, t2, t3) { var _ = this; _.pathRef = t0; _.x = t1; _.y = t2; _._onCurveCount = _._w = 0; _.__engine$_buffer = t3; }, PathIterator: function PathIterator(t0, t1, t2) { var _ = this; _.pathRef = t0; _._forceClose = t1; _._verbCount = t2; _._needClose = false; _._segmentState = 0; _._conicWeightIndex = -1; _._pointIndex = _._verbIndex = _._moveToY = _._moveToX = _._lastPointY = _._lastPointX = 0; }, _PaintRequest: function _PaintRequest(t0, t1) { this.canvasSize = t0; this.paintCallback = t1; }, PersistedPicture: function PersistedPicture(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.__engine$_canvas = null; _.dx = t0; _.dy = t1; _.picture = t2; _.localPaintBounds = t3; _._density = 1; _._requiresRepaint = false; _._elementCache = t4; _._exactLocalCullRect = _._exactGlobalCullRect = _._optimalLocalCullRect = null; _._oldLayer = t5; _.__engine$_index = -1; _.__engine$_state = t6; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, PersistedPicture__applyBitmapPaint_closure: function PersistedPicture__applyBitmapPaint_closure(t0) { this.$this = t0; }, PersistedPlatformView: function PersistedPlatformView(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.viewId = t0; _.dx = t1; _.dy = t2; _.width = t3; _.height = t4; _.__PersistedPlatformView__shadowRoot = $; _._oldLayer = t5; _.__engine$_index = -1; _.__engine$_state = t6; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, RecordingCanvas: function RecordingCanvas(t0, t1, t2) { var _ = this; _._paintBounds = t0; _._pictureBounds = null; _._commands = t1; _.renderStrategy = t2; _._recordingEnded = _._didDraw = false; _._saveCount = 1; }, PaintCommand: function PaintCommand() { }, DrawCommand: function DrawCommand() { }, PaintSave: function PaintSave() { }, PaintRestore: function PaintRestore() { }, PaintTranslate: function PaintTranslate(t0, t1) { this.dx = t0; this.dy = t1; }, PaintScale: function PaintScale(t0, t1) { this.sx = t0; this.sy = t1; }, PaintRotate: function PaintRotate(t0) { this.radians = t0; }, PaintTransform: function PaintTransform(t0) { this.matrix4 = t0; }, PaintClipRect: function PaintClipRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rect = t0; _.clipOp = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintClipRRect: function PaintClipRRect(t0, t1, t2, t3, t4) { var _ = this; _.rrect = t0; _.isClippedOut = false; _.leftBound = t1; _.topBound = t2; _.rightBound = t3; _.bottomBound = t4; }, PaintClipPath: function PaintClipPath(t0, t1, t2, t3, t4) { var _ = this; _.path = t0; _.isClippedOut = false; _.leftBound = t1; _.topBound = t2; _.rightBound = t3; _.bottomBound = t4; }, PaintDrawLine: function PaintDrawLine(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.p1 = t0; _.p2 = t1; _.paint = t2; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawRect: function PaintDrawRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rect = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawRRect: function PaintDrawRRect(t0, t1, t2, t3, t4, t5) { var _ = this; _.rrect = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawDRRect: function PaintDrawDRRect(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.outer = t0; _.inner = t1; _.paint = t2; _.path = null; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawCircle: function PaintDrawCircle(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.c = t0; _.radius = t1; _.paint = t2; _.isClippedOut = false; _.leftBound = t3; _.topBound = t4; _.rightBound = t5; _.bottomBound = t6; }, PaintDrawPath: function PaintDrawPath(t0, t1, t2, t3, t4, t5) { var _ = this; _.path = t0; _.paint = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, PaintDrawShadow: function PaintDrawShadow(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.path = t0; _.color = t1; _.elevation = t2; _.transparentOccluder = t3; _.isClippedOut = false; _.leftBound = t4; _.topBound = t5; _.rightBound = t6; _.bottomBound = t7; }, PaintDrawImageRect: function PaintDrawImageRect(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.image = t0; _.src = t1; _.dst = t2; _.paint = t3; _.isClippedOut = false; _.leftBound = t4; _.topBound = t5; _.rightBound = t6; _.bottomBound = t7; }, PaintDrawParagraph: function PaintDrawParagraph(t0, t1, t2, t3, t4, t5) { var _ = this; _.paragraph = t0; _.offset = t1; _.isClippedOut = false; _.leftBound = t2; _.topBound = t3; _.rightBound = t4; _.bottomBound = t5; }, _PaintBounds: function _PaintBounds(t0, t1, t2, t3) { var _ = this; _.maxPaintBounds = t0; _._didPaintInsideClipArea = false; _.__engine$_top = _.__engine$_left = 17976931348623157e292; _.__engine$_bottom = _.__engine$_right = -17976931348623157e292; _.__engine$_transforms = t1; _._clipStack = t2; _._currentMatrixIsIdentity = true; _._currentMatrix = t3; _._clipRectInitialized = false; _._currentClipBottom = _._currentClipRight = _._currentClipTop = _._currentClipLeft = 0; }, RenderStrategy: function RenderStrategy() { var _ = this; _.isInsideShaderMask = _.hasArbitraryPaint = _.hasParagraphs = _.hasImageElements = false; }, _WebGlRenderer: function _WebGlRenderer() { }, _GlProgram: function _GlProgram(t0) { this.program = t0; }, _GlContext: function _GlContext(t0) { var _ = this; _.glContext = t0; _._heightInPixels = _._widthInPixels = _.__engine$_canvas = _._kUnsignedShort = _._kUnsignedByte = _._kLinkStatus = _._kTriangles = _._kColorBufferBit = _._kFloat = _._kStaticDraw = _._kElementArrayBuffer = _._kArrayBuffer = _._kCompileStatus = null; }, _OffScreenCanvas: function _OffScreenCanvas(t0, t1) { var _ = this; _._glCanvas = _.__engine$_canvas = null; _.width = t0; _.height = t1; }, SurfaceScene: function SurfaceScene(t0) { this.webOnlyRootElement = t0; }, PersistedScene: function PersistedScene(t0, t1, t2) { var _ = this; _.__engine$_children = t0; _._oldLayer = t1; _.__engine$_index = -1; _.__engine$_state = t2; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, SurfaceSceneBuilder: function SurfaceSceneBuilder(t0) { this._surfaceStack = t0; }, SurfaceSceneBuilder_build_closure: function SurfaceSceneBuilder_build_closure(t0) { this.$this = t0; }, SurfaceSceneBuilder_build_closure0: function SurfaceSceneBuilder_build_closure0(t0) { this.$this = t0; }, NormalizedGradient: function NormalizedGradient(t0, t1, t2, t3) { var _ = this; _._thresholds = t0; _._bias = t1; _.__engine$_scale = t2; _.thresholdCount = t3; }, EngineGradient: function EngineGradient() { }, GradientLinear: function GradientLinear(t0, t1, t2, t3, t4, t5) { var _ = this; _.from = t0; _.to = t1; _.colors = t2; _.colorStops = t3; _.tileMode = t4; _.matrix4 = t5; }, ShaderBuilder: function ShaderBuilder(t0, t1, t2, t3, t4) { var _ = this; _.declarations = t0; _._methods = t1; _.floatPrecision = null; _._uniformCounter = _._varyingCounter = _._attribCounter = 0; _.isWebGl2 = t2; _._isFragmentShader = t3; _._fragmentColorDeclaration = null; _.__engine$_buffer = t4; }, ShaderMethod: function ShaderMethod(t0, t1) { this.name = t0; this._statements = t1; this._indentLevel = 1; }, ShaderDeclaration: function ShaderDeclaration(t0, t1, t2) { this.name = t0; this.dataType = t1; this.storage = t2; }, commitScene_closure: function commitScene_closure() { }, PersistedSurfaceState: function PersistedSurfaceState(t0) { this.__engine$_name = t0; }, PersistedSurface: function PersistedSurface() { }, PersistedLeafSurface: function PersistedLeafSurface() { }, PersistedContainerSurface: function PersistedContainerSurface() { }, PersistedContainerSurface__matchChildren_closure: function PersistedContainerSurface__matchChildren_closure() { }, _PersistedSurfaceMatch: function _PersistedSurfaceMatch(t0, t1, t2) { this.newChild = t0; this.oldChildIndex = t1; this.matchQuality = t2; }, PersistedTransform: function PersistedTransform(t0, t1, t2, t3) { var _ = this; _.matrix4 = t0; _.__engine$_children = t1; _._oldLayer = t2; _.__engine$_index = -1; _.__engine$_state = t3; _._localTransformInverse = _._localClipBounds = _._projectedClip = _.__engine$_transform = _.parent = _.rootElement = null; }, HtmlCodec: function HtmlCodec(t0, t1) { this.src = t0; this.chunkCallback = t1; }, HtmlCodec_getNextFrame_closure: function HtmlCodec_getNextFrame_closure(t0, t1, t2) { this.$this = t0; this.imgElement = t1; this.completer = t2; }, HtmlCodec_getNextFrame_closure0: function HtmlCodec_getNextFrame_closure0(t0, t1) { this.$this = t0; this.completer = t1; }, HtmlCodec__decodeUsingOnLoad__errorSubscription_set: function HtmlCodec__decodeUsingOnLoad__errorSubscription_set(t0) { this._box_0 = t0; }, HtmlCodec__decodeUsingOnLoad__errorSubscription_get: function HtmlCodec__decodeUsingOnLoad__errorSubscription_get(t0) { this._box_0 = t0; }, HtmlCodec__decodeUsingOnLoad_closure: function HtmlCodec__decodeUsingOnLoad_closure(t0, t1, t2) { this._box_0 = t0; this._errorSubscription_get = t1; this.completer = t2; }, HtmlCodec__decodeUsingOnLoad_closure0: function HtmlCodec__decodeUsingOnLoad_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _._errorSubscription_get = t2; _.imgElement = t3; _.completer = t4; }, HtmlBlobCodec: function HtmlBlobCodec(t0, t1) { this.src = t0; this.chunkCallback = t1; }, SingleFrameInfo: function SingleFrameInfo(t0) { this.image = t0; }, HtmlImage: function HtmlImage(t0, t1, t2) { var _ = this; _.imgElement = t0; _._requiresClone = false; _.width = t1; _.height = t2; }, Keyboard: function Keyboard(t0) { var _ = this; _._keydownTimers = t0; _._keyupListener = _._keydownListener = null; _._lastMetaState = 0; }, Keyboard$__closure: function Keyboard$__closure(t0) { this.$this = t0; }, Keyboard$__closure0: function Keyboard$__closure0(t0) { this.$this = t0; }, Keyboard$__closure1: function Keyboard$__closure1(t0) { this.$this = t0; }, Keyboard__handleHtmlEvent_closure: function Keyboard__handleHtmlEvent_closure(t0, t1, t2) { this.$this = t0; this.timerKey = t1; this.event = t2; }, Keyboard__handleHtmlEvent_closure0: function Keyboard__handleHtmlEvent_closure0(t0) { this.event = t0; }, _kLogicalKeyToModifierGetter_closure: function _kLogicalKeyToModifierGetter_closure() { }, _kLogicalKeyToModifierGetter_closure0: function _kLogicalKeyToModifierGetter_closure0() { }, _kLogicalKeyToModifierGetter_closure1: function _kLogicalKeyToModifierGetter_closure1() { }, _kLogicalKeyToModifierGetter_closure2: function _kLogicalKeyToModifierGetter_closure2() { }, _kLogicalKeyToModifierGetter_closure3: function _kLogicalKeyToModifierGetter_closure3() { }, _kLogicalKeyToModifierGetter_closure4: function _kLogicalKeyToModifierGetter_closure4() { }, _kLogicalKeyToModifierGetter_closure5: function _kLogicalKeyToModifierGetter_closure5() { }, _kLogicalKeyToModifierGetter_closure6: function _kLogicalKeyToModifierGetter_closure6() { }, KeyboardBinding: function KeyboardBinding(t0) { this.__KeyboardBinding__converter = $; this._listeners = t0; }, KeyboardBinding__addEventListener_closure: function KeyboardBinding__addEventListener_closure(t0) { this.handler = t0; }, KeyboardBinding__onKeyData_closure: function KeyboardBinding__onKeyData_closure(t0) { this._box_0 = t0; }, KeyboardBinding__setup_closure: function KeyboardBinding__setup_closure(t0) { this.$this = t0; }, KeyboardBinding__setup_closure0: function KeyboardBinding__setup_closure0(t0) { this.$this = t0; }, FlutterHtmlKeyboardEvent: function FlutterHtmlKeyboardEvent(t0) { this._event = t0; }, KeyboardConverter: function KeyboardConverter(t0, t1, t2, t3) { var _ = this; _.dispatchKeyData = t0; _.onMacOs = t1; _._disposed = false; _._pressingRecords = t2; _._keyGuards = t3; }, KeyboardConverter__scheduleAsyncEvent_closure: function KeyboardConverter__scheduleAsyncEvent_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.callback = t2; _.getData = t3; }, KeyboardConverter__scheduleAsyncEvent_closure0: function KeyboardConverter__scheduleAsyncEvent_closure0(t0) { this._box_0 = t0; }, KeyboardConverter__startGuardingKey_closure: function KeyboardConverter__startGuardingKey_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.currentTimeStamp = t1; _.physicalKey = t2; _.logicalKey = t3; }, KeyboardConverter__startGuardingKey_closure0: function KeyboardConverter__startGuardingKey_closure0(t0, t1) { this.$this = t0; this.physicalKey = t1; }, KeyboardConverter_handleEvent_closure: function KeyboardConverter_handleEvent_closure(t0, t1, t2, t3) { var _ = this; _.event = t0; _.character = t1; _.eventKey = t2; _.physicalKey = t3; }, KeyboardConverter_handleEvent_closure0: function KeyboardConverter_handleEvent_closure0(t0, t1, t2) { this.timeStamp = t0; this.physicalKey = t1; this.logicalKey = t2; }, KeyboardConverter_handleEvent_closure1: function KeyboardConverter_handleEvent_closure1(t0, t1) { this.$this = t0; this.physicalKey = t1; }, KeyboardConverter_handleEvent_closure2: function KeyboardConverter_handleEvent_closure2(t0, t1, t2) { this.$this = t0; this.event = t1; this.timeStamp = t2; }, KeyboardConverter_handleEvent__closure: function KeyboardConverter_handleEvent__closure(t0, t1, t2) { this.$this = t0; this.logicalKey = t1; this.timeStamp = t2; }, MouseCursor: function MouseCursor() { }, BrowserHistory: function BrowserHistory() { }, MultiEntriesBrowserHistory: function MultiEntriesBrowserHistory(t0) { var _ = this; _.urlStrategy = t0; _.__BrowserHistory__unsubscribe = _.__MultiEntriesBrowserHistory__lastSeenSerialCount = $; _._isDisposed = false; }, MultiEntriesBrowserHistory_onPopState_closure: function MultiEntriesBrowserHistory_onPopState_closure() { }, SingleEntryBrowserHistory: function SingleEntryBrowserHistory(t0, t1) { var _ = this; _.urlStrategy = t0; _._flutterState = t1; _._userProvidedRouteName = null; _.__BrowserHistory__unsubscribe = $; _._isDisposed = false; }, SingleEntryBrowserHistory_onPopState_closure: function SingleEntryBrowserHistory_onPopState_closure() { }, SingleEntryBrowserHistory_onPopState_closure0: function SingleEntryBrowserHistory_onPopState_closure0() { }, JsUrlStrategy: function JsUrlStrategy() { }, UrlStrategy: function UrlStrategy() { }, HashUrlStrategy: function HashUrlStrategy() { }, HashUrlStrategy_addPopStateListener_closure: function HashUrlStrategy_addPopStateListener_closure(t0, t1) { this.$this = t0; this.fn = t1; }, HashUrlStrategy__waitForPopState__unsubscribe_set: function HashUrlStrategy__waitForPopState__unsubscribe_set(t0) { this._box_0 = t0; }, HashUrlStrategy__waitForPopState__unsubscribe_get: function HashUrlStrategy__waitForPopState__unsubscribe_get(t0) { this._box_0 = t0; }, HashUrlStrategy__waitForPopState_closure: function HashUrlStrategy__waitForPopState_closure(t0, t1) { this._unsubscribe_get = t0; this.completer = t1; }, CustomUrlStrategy: function CustomUrlStrategy(t0) { this.delegate = t0; }, PlatformLocation: function PlatformLocation() { }, BrowserPlatformLocation: function BrowserPlatformLocation() { }, EnginePictureRecorder: function EnginePictureRecorder() { this.__engine$_canvas = null; this.__EnginePictureRecorder_cullRect = $; this._isRecording = false; }, EnginePicture: function EnginePicture(t0) { this.recordingCanvas = t0; }, EnginePlatformDispatcher: function EnginePlatformDispatcher(t0, t1, t2, t3) { var _ = this; _._configuration = t0; _._windows = t1; _._windowConfigurations = t2; _._onLocaleChanged = _._onPlatformMessageZone = _._onPlatformMessage = _._onReportTimingsZone = _._onReportTimings = _._onPointerDataPacketZone = _._onPointerDataPacket = _._onDrawFrameZone = _._onDrawFrame = _._onBeginFrameZone = _._onBeginFrame = _._onMetricsChangedZone = _._onMetricsChanged = null; _._brightnessMediaQuery = t3; _._defaultRouteName = _._onSemanticsActionZone = _._onSemanticsAction = _._onSemanticsEnabledChangedZone = _._onSemanticsEnabledChanged = _._onPlatformBrightnessChangedZone = _._onPlatformBrightnessChanged = _._brightnessMediaQueryListener = null; _.__EnginePlatformDispatcher_rasterizer = $; }, EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure: function EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure(t0, t1) { this.registrationZone = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure: function EnginePlatformDispatcher__sendPlatformMessage_closure(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure0: function EnginePlatformDispatcher__sendPlatformMessage_closure0(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure1: function EnginePlatformDispatcher__sendPlatformMessage_closure1(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure2: function EnginePlatformDispatcher__sendPlatformMessage_closure2(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__sendPlatformMessage_closure3: function EnginePlatformDispatcher__sendPlatformMessage_closure3(t0, t1) { this.$this = t0; this.callback = t1; }, EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure: function EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure(t0) { this.$this = t0; }, EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0: function EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0(t0) { this.$this = t0; }, EnginePlatformDispatcher__replyToPlatformMessage_closure: function EnginePlatformDispatcher__replyToPlatformMessage_closure(t0, t1) { this.callback = t0; this.data = t1; }, invoke3_closure: function invoke3_closure(t0, t1, t2, t3) { var _ = this; _.callback = t0; _.arg1 = t1; _.arg2 = t2; _.arg3 = t3; }, PointerBinding: function PointerBinding(t0, t1) { this.glassPaneElement = t0; this._pointerDataConverter = t1; this.__PointerBinding__adapter = $; }, PointerSupportDetector: function PointerSupportDetector() { }, _BaseAdapter: function _BaseAdapter() { }, _BaseAdapter_addEventListener_closure: function _BaseAdapter_addEventListener_closure(t0, t1, t2) { this.$this = t0; this.acceptOutsideGlasspane = t1; this.handler = t2; }, _WheelEventListenerMixin: function _WheelEventListenerMixin() { }, _WheelEventListenerMixin__addWheelEventListener_closure: function _WheelEventListenerMixin__addWheelEventListener_closure(t0) { this.handler = t0; }, _SanitizedDetails: function _SanitizedDetails(t0, t1) { this.change = t0; this.buttons = t1; }, _ButtonSanitizer: function _ButtonSanitizer() { this._pressedButtons = 0; }, _PointerAdapter: function _PointerAdapter(t0, t1, t2, t3) { var _ = this; _._sanitizers = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _PointerAdapter__ensureSanitizer_closure: function _PointerAdapter__ensureSanitizer_closure() { }, _PointerAdapter__addPointerEventListener_closure: function _PointerAdapter__addPointerEventListener_closure(t0) { this.handler = t0; }, _PointerAdapter_setup_closure: function _PointerAdapter_setup_closure(t0) { this.$this = t0; }, _PointerAdapter_setup_closure0: function _PointerAdapter_setup_closure0(t0) { this.$this = t0; }, _PointerAdapter_setup_closure1: function _PointerAdapter_setup_closure1(t0) { this.$this = t0; }, _PointerAdapter_setup_closure2: function _PointerAdapter_setup_closure2(t0) { this.$this = t0; }, _PointerAdapter_setup_closure3: function _PointerAdapter_setup_closure3(t0) { this.$this = t0; }, _TouchAdapter: function _TouchAdapter(t0, t1, t2, t3) { var _ = this; _._pressedTouches = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _TouchAdapter__addTouchEventListener_closure: function _TouchAdapter__addTouchEventListener_closure(t0) { this.handler = t0; }, _TouchAdapter_setup_closure: function _TouchAdapter_setup_closure(t0) { this.$this = t0; }, _TouchAdapter_setup_closure0: function _TouchAdapter_setup_closure0(t0) { this.$this = t0; }, _TouchAdapter_setup_closure1: function _TouchAdapter_setup_closure1(t0) { this.$this = t0; }, _TouchAdapter_setup_closure2: function _TouchAdapter_setup_closure2(t0) { this.$this = t0; }, _MouseAdapter: function _MouseAdapter(t0, t1, t2, t3) { var _ = this; _._sanitizer = t0; _.glassPaneElement = t1; _.__engine$_callback = t2; _._pointerDataConverter = t3; }, _MouseAdapter__addMouseEventListener_closure: function _MouseAdapter__addMouseEventListener_closure(t0) { this.handler = t0; }, _MouseAdapter_setup_closure: function _MouseAdapter_setup_closure(t0) { this.$this = t0; }, _MouseAdapter_setup_closure0: function _MouseAdapter_setup_closure0(t0) { this.$this = t0; }, _MouseAdapter_setup_closure1: function _MouseAdapter_setup_closure1(t0) { this.$this = t0; }, _MouseAdapter_setup_closure2: function _MouseAdapter_setup_closure2(t0) { this.$this = t0; }, _PointerState: function _PointerState(t0, t1) { this._pointer = null; this.x = t0; this.y = t1; }, PointerDataConverter: function PointerDataConverter(t0) { this._pointers = t0; this._activeButtons = 0; }, PointerDataConverter__ensureStateForPointer_closure: function PointerDataConverter__ensureStateForPointer_closure(t0, t1) { this.x = t0; this.y = t1; }, Profiler: function Profiler() { }, Instrumentation: function Instrumentation(t0) { this._counters = t0; this._printTimer = null; }, AccessibilityAnnouncements: function AccessibilityAnnouncements() { this.__engine$_element = this._removeElementTimer = null; }, AccessibilityAnnouncements$__closure: function AccessibilityAnnouncements$__closure(t0) { this.$this = t0; }, AccessibilityAnnouncements_handleMessage_closure: function AccessibilityAnnouncements_handleMessage_closure(t0) { this.$this = t0; }, _CheckableKind: function _CheckableKind(t0) { this.__engine$_name = t0; }, Checkable: function Checkable(t0, t1) { this.__engine$_kind = t0; this.semanticsObject = t1; }, ImageRoleManager: function ImageRoleManager(t0) { this._auxiliaryImageElement = null; this.semanticsObject = t0; }, Incrementable: function Incrementable(t0, t1) { var _ = this; _.__engine$_element = t0; _._currentSurrogateValue = 1; _._gestureModeListener = null; _._pendingResync = false; _.semanticsObject = t1; }, Incrementable_closure: function Incrementable_closure(t0, t1) { this.$this = t0; this.semanticsObject = t1; }, Incrementable_closure0: function Incrementable_closure0(t0) { this.$this = t0; }, LabelAndValue: function LabelAndValue(t0) { this._auxiliaryValueElement = null; this.semanticsObject = t0; }, LiveRegion: function LiveRegion(t0) { this.semanticsObject = t0; }, Scrollable0: function Scrollable0(t0) { var _ = this; _._scrollListener = _._gestureModeListener = null; _._effectiveNeutralScrollPosition = 0; _.semanticsObject = t0; }, Scrollable_update_closure: function Scrollable_update_closure(t0) { this.$this = t0; }, Scrollable_update_closure0: function Scrollable_update_closure0(t0) { this.$this = t0; }, Scrollable_update_closure1: function Scrollable_update_closure1(t0) { this.$this = t0; }, SemanticsUpdate: function SemanticsUpdate(t0) { this.__engine$_nodeUpdates = t0; }, SemanticsNodeUpdate: function SemanticsNodeUpdate(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.id = t0; _.flags = t1; _.actions = t2; _.textSelectionBase = t3; _.textSelectionExtent = t4; _.scrollChildren = t5; _.scrollIndex = t6; _.scrollPosition = t7; _.scrollExtentMax = t8; _.scrollExtentMin = t9; _.rect = t10; _.label = t11; _.hint = t12; _.value = t13; _.increasedValue = t14; _.decreasedValue = t15; _.textDirection = t16; _.transform = t17; _.childrenInTraversalOrder = t18; _.childrenInHitTestOrder = t19; _.additionalActions = t20; _.thickness = t21; }, Role: function Role(t0) { this.__engine$_name = t0; }, _roleFactories_closure: function _roleFactories_closure() { }, _roleFactories_closure0: function _roleFactories_closure0() { }, _roleFactories_closure1: function _roleFactories_closure1() { }, _roleFactories_closure2: function _roleFactories_closure2() { }, _roleFactories_closure3: function _roleFactories_closure3() { }, _roleFactories_closure4: function _roleFactories_closure4() { }, _roleFactories_closure5: function _roleFactories_closure5() { }, _roleFactories_closure6: function _roleFactories_closure6() { }, RoleManager: function RoleManager() { }, SemanticsObject: function SemanticsObject(t0, t1, t2, t3) { var _ = this; _.__engine$_flags = 0; _._additionalActions = _._childrenInHitTestOrder = _.__engine$_childrenInTraversalOrder = _.__engine$_transform = _._textDirection = _.__engine$_decreasedValue = _.__engine$_increasedValue = _.__engine$_value = _.__engine$_hint = _.__engine$_label = _.__engine$_rect = _.__engine$_scrollExtentMin = _.__engine$_scrollExtentMax = _.__engine$_scrollPosition = _.__engine$_scrollIndex = _._scrollChildren = _._textSelectionExtent = _._textSelectionBase = _.__engine$_actions = null; _.id = t0; _.owner = t1; _.element = t2; _._dirtyFields = -1; _.__engine$_parent = _._childContainerElement = null; _._roleManagers = t3; _.horizontalContainerAdjustment = _.verticalContainerAdjustment = 0; _._previousChildrenInTraversalOrder = null; }, SemanticsObject_recomputePositionAndSize__effectiveTransform_set: function SemanticsObject_recomputePositionAndSize__effectiveTransform_set(t0) { this._box_0 = t0; }, SemanticsObject_recomputePositionAndSize__effectiveTransform_get: function SemanticsObject_recomputePositionAndSize__effectiveTransform_get(t0) { this._box_0 = t0; }, AccessibilityMode: function AccessibilityMode(t0) { this.__engine$_name = t0; }, GestureMode: function GestureMode(t0) { this.__engine$_name = t0; }, EngineSemanticsOwner: function EngineSemanticsOwner(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._semanticsTree = t0; _._attachments = t1; _._detachments = t2; _._oneTimePostUpdateCallbacks = t3; _._rootSemanticsElement = null; _._now = t4; _.semanticsHelper = t5; _._semanticsEnabled = false; _._gestureMode = t6; _._gestureModeClock = null; _._gestureModeListeners = t7; }, EngineSemanticsOwner$__closure: function EngineSemanticsOwner$__closure(t0) { this.$this = t0; }, EngineSemanticsOwner__now_closure: function EngineSemanticsOwner__now_closure() { }, EngineSemanticsOwner__getGestureModeClock_closure: function EngineSemanticsOwner__getGestureModeClock_closure(t0) { this.$this = t0; }, EnabledState: function EnabledState(t0) { this.__engine$_name = t0; }, SemanticsHelper: function SemanticsHelper(t0) { this._semanticsEnabler = t0; }, SemanticsEnabler: function SemanticsEnabler() { }, DesktopSemanticsEnabler: function DesktopSemanticsEnabler() { var _ = this; _._semanticsPlaceholder = _.semanticsActivationTimer = null; _.semanticsActivationAttempts = 0; _._schedulePlaceholderRemoval = false; }, DesktopSemanticsEnabler_tryEnableSemantics_closure: function DesktopSemanticsEnabler_tryEnableSemantics_closure(t0) { this.$this = t0; }, DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure: function DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure(t0) { this.$this = t0; }, MobileSemanticsEnabler: function MobileSemanticsEnabler() { var _ = this; _._semanticsPlaceholder = _.semanticsActivationTimer = null; _.semanticsActivationAttempts = 0; _._schedulePlaceholderRemoval = false; }, MobileSemanticsEnabler_tryEnableSemantics_closure: function MobileSemanticsEnabler_tryEnableSemantics_closure(t0) { this.$this = t0; }, MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure: function MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure(t0) { this.$this = t0; }, Tappable: function Tappable(t0) { this._clickListener = null; this.semanticsObject = t0; }, Tappable_update_closure: function Tappable_update_closure(t0) { this.$this = t0; }, SemanticsTextEditingStrategy: function SemanticsTextEditingStrategy(t0, t1) { var _ = this; _._queuedStyle = _.onAction = _.onChange = _.inputConfig = _.activeTextField = null; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, TextField0: function TextField0(t0) { this.__TextField_editableElement = $; this._hasFocused = false; this.semanticsObject = t0; }, TextField__initializeForBlink_closure: function TextField__initializeForBlink_closure(t0) { this.$this = t0; }, TextField__initializeForWebkit_closure: function TextField__initializeForWebkit_closure(t0) { this._box_0 = t0; }, TextField__initializeForWebkit_closure0: function TextField__initializeForWebkit_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, TextField_update_closure: function TextField_update_closure(t0) { this.$this = t0; }, _TypedDataBuffer: function _TypedDataBuffer() { }, _IntBuffer: function _IntBuffer() { }, Uint8Buffer0: function Uint8Buffer0(t0, t1) { this.__engine$_buffer = t0; this.__engine$_length = t1; }, MethodCall0: function MethodCall0(t0, t1) { this.method = t0; this.$arguments = t1; }, JSONMessageCodec: function JSONMessageCodec() { }, JSONMethodCodec: function JSONMethodCodec() { }, StandardMessageCodec: function StandardMessageCodec() { }, StandardMessageCodec_writeValue_closure0: function StandardMessageCodec_writeValue_closure0(t0, t1) { this.$this = t0; this.buffer = t1; }, StandardMethodCodec: function StandardMethodCodec() { }, WriteBuffer0: function WriteBuffer0(t0, t1, t2) { var _ = this; _._debugFinalized = false; _.__engine$_buffer = t0; _.__engine$_eightBytes = t1; _.__engine$_eightBytesAsList = t2; }, ReadBuffer0: function ReadBuffer0(t0) { this.data = t0; this.__engine$_position = 0; }, SurfaceShadowData: function SurfaceShadowData(t0, t1) { this.blurWidth = t0; this.offset = t1; }, CanvasParagraph: function CanvasParagraph(t0, t1, t2, t3) { var _ = this; _.spans = t0; _.paragraphStyle = t1; _.plainText = t2; _.drawOnCanvas = t3; _.isLaidOut = false; _._lastUsedConstraints = null; _.__CanvasParagraph__paintService = _.__CanvasParagraph__layoutService = $; _._cachedDomElement = null; }, CanvasParagraph__createDomElement__element_set: function CanvasParagraph__createDomElement__element_set(t0) { this._box_0 = t0; }, CanvasParagraph__createDomElement__element_get: function CanvasParagraph__createDomElement__element_get(t0) { this._box_0 = t0; }, FlatTextSpan: function FlatTextSpan(t0, t1, t2) { this.style = t0; this.start = t1; this.end = t2; }, StyleNode: function StyleNode() { }, ChildStyleNode: function ChildStyleNode(t0, t1) { this.parent = t0; this.style = t1; this._cachedStyle = null; }, RootStyleNode: function RootStyleNode(t0) { this.paragraphStyle = t0; this._cachedStyle = null; }, CanvasParagraphBuilder: function CanvasParagraphBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _._plainTextBuffer = t0; _._paragraphStyle = t1; _._spans = t2; _._styleStack = t3; _._rootStyleNode = t4; _._placeholderScales = t5; _._drawOnCanvas = true; }, FontCollection: function FontCollection() { this._testFontManager = this._assetFontManager = null; }, FontManager: function FontManager(t0) { this._fontLoadingFutures = t0; }, FontManager__loadFontFace_closure: function FontManager__loadFontFace_closure(t0) { this.fontFace = t0; }, FontManager__loadFontFace_closure0: function FontManager__loadFontFace_closure0(t0) { this.family = t0; }, _PolyfillFontManager: function _PolyfillFontManager(t0) { this._fontLoadingFutures = t0; }, _PolyfillFontManager_registerAsset___fontLoadStart_set: function _PolyfillFontManager_registerAsset___fontLoadStart_set(t0) { this._box_0 = t0; }, _PolyfillFontManager_registerAsset___fontLoadStart_get: function _PolyfillFontManager_registerAsset___fontLoadStart_get(t0) { this._box_0 = t0; }, _PolyfillFontManager_registerAsset__watchWidth: function _PolyfillFontManager_registerAsset__watchWidth(t0, t1, t2, t3, t4) { var _ = this; _.paragraph = t0; _.sansSerifWidth = t1; _.completer = t2; _.__fontLoadStart_get = t3; _.family = t4; }, _PolyfillFontManager_registerAsset_closure: function _PolyfillFontManager_registerAsset_closure(t0) { this.fontStyleMap = t0; }, TextLayoutService: function TextLayoutService(t0, t1, t2) { var _ = this; _.paragraph = t0; _.context = t1; _.width = -1; _.height = 0; _.longestLine = null; _.maxIntrinsicWidth = _.minIntrinsicWidth = 0; _.ideographicBaseline = _.alphabeticBaseline = -1; _.didExceedMaxLines = false; _.lines = t2; }, RangeBox: function RangeBox() { }, PlaceholderBox: function PlaceholderBox() { }, SpanBox: function SpanBox(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.spanometer = t0; _.span = t1; _.start = t2; _.end = t3; _.left = t4; _.width = t5; _.height = t6; _.baseline = t7; _.direction = t8; }, LineSegment: function LineSegment(t0, t1, t2, t3, t4) { var _ = this; _.span = t0; _.start = t1; _.end = t2; _.width = t3; _.widthIncludingSpace = t4; }, LineBuilder: function LineBuilder(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._segments = t0; _._boxes = t1; _.maxWidth = t2; _.paragraph = t3; _.spanometer = t4; _.start = t5; _.lineNumber = t6; _.accumulatedHeight = t7; _.end = t8; _.descent = _.ascent = _.widthIncludingSpace = _.width = 0; }, Spanometer: function Spanometer(t0, t1) { var _ = this; _.paragraph = t0; _.context = t1; _._cssFontString = ""; _._currentSpan = _._currentRuler = null; }, LineCharProperty: function LineCharProperty(t0) { this.__engine$_name = t0; }, LineBreakType: function LineBreakType(t0) { this.__engine$_name = t0; }, LineBreakResult: function LineBreakResult(t0, t1, t2, t3) { var _ = this; _.index = t0; _.indexWithoutTrailingNewlines = t1; _.indexWithoutTrailingSpaces = t2; _.type = t3; }, RulerHost: function RulerHost(t0) { this._rulerHost = t0; }, RulerManager: function RulerManager(t0, t1, t2) { var _ = this; _.rulerCacheCapacity = t0; _._rulers = t1; _._rulerCacheCleanupScheduled = false; _._rulerHost = t2; }, RulerManager__scheduleRulerCacheCleanup_closure: function RulerManager__scheduleRulerCacheCleanup_closure(t0) { this.$this = t0; }, RulerManager__evictAllRulers_closure: function RulerManager__evictAllRulers_closure() { }, RulerManager_cleanUpRulerCache_closure: function RulerManager_cleanUpRulerCache_closure() { }, TextMeasurementService: function TextMeasurementService() { }, DomTextMeasurementService: function DomTextMeasurementService() { }, CanvasTextMeasurementService: function CanvasTextMeasurementService(t0) { this._canvasContext = t0; }, LinesCalculator: function LinesCalculator(t0, t1, t2, t3, t4, t5) { var _ = this; _._canvasContext = t0; _.__engine$_paragraph = t1; _._maxWidth = t2; _.lines = t3; _._lastBreak = t4; _._lastTakenBreak = t5; _._reachedMaxLines = false; _._cachedEllipsisWidth = null; }, MaxIntrinsicCalculator: function MaxIntrinsicCalculator(t0, t1, t2) { var _ = this; _._canvasContext = t0; _.__engine$_text = t1; _._style = t2; _._lastHardLineEnd = _.value = 0; }, TextPaintService: function TextPaintService(t0) { this.paragraph = t0; }, EngineLineMetrics: function EngineLineMetrics(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.displayText = t0; _.ellipsis = t1; _.startIndex = t2; _.endIndex = t3; _.endIndexWithoutNewlines = t4; _.boxes = t5; _.hardBreak = t6; _.ascent = t7; _.descent = t8; _.height = t9; _.width = t10; _.widthWithTrailingSpaces = t11; _.left = t12; _.baseline = t13; _.lineNumber = t14; }, DomParagraph: function DomParagraph(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._paragraphElement = t0; _._geometricStyle = t1; _._plainText = t2; _._paint = t3; _._textAlign = t4; _._textDirection = t5; _._background = t6; _.placeholderCount = t7; _._measurementResult = null; _._didExceedMaxLines = false; _._lastUsedConstraints = null; _._alignOffset = 0; }, EngineParagraphStyle: function EngineParagraphStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._textAlign = t0; _._textDirection = t1; _._fontWeight = t2; _._fontStyle = t3; _._maxLines = t4; _._fontFamily = t5; _.__engine$_fontSize = t6; _.__engine$_height = t7; _._textHeightBehavior = t8; _._strutStyle = t9; _._ellipsis = t10; _._locale = t11; }, EngineTextStyle: function EngineTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.__engine$_color = t0; _._decoration = t1; _._decorationColor = t2; _._decorationStyle = t3; _._decorationThickness = t4; _._fontWeight = t5; _._fontStyle = t6; _._textBaseline = t7; _._isFontFamilyProvided = t8; _._fontFamily = t9; _._fontFamilyFallback = t10; _._fontFeatures = t11; _.__engine$_fontSize = t12; _._letterSpacing = t13; _._wordSpacing = t14; _.__engine$_height = t15; _._locale = t16; _._background = t17; _._foreground = t18; _._shadows = t19; _._cssFontString = null; _.__EngineTextStyle_heightStyle = $; }, EngineStrutStyle: function EngineStrutStyle(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._fontFamily = t0; _._fontFamilyFallback = t1; _.__engine$_fontSize = t2; _.__engine$_height = t3; _._leading = t4; _._fontWeight = t5; _._fontStyle = t6; _._forceStrutHeight = t7; }, DomParagraphBuilder: function DomParagraphBuilder(t0, t1, t2, t3) { var _ = this; _._paragraphElement = t0; _._paragraphStyle = t1; _._ops = t2; _._placeholderScales = t3; }, DomParagraphBuilder__buildRichText_currentElement: function DomParagraphBuilder__buildRichText_currentElement(t0, t1) { this.$this = t0; this.elementStack = t1; }, ParagraphGeometricStyle: function ParagraphGeometricStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.textDirection = t0; _.textAlign = t1; _.fontWeight = t2; _.fontStyle = t3; _.fontFamily = t4; _.fontSize = t5; _.lineHeight = t6; _.maxLines = t7; _.letterSpacing = t8; _.wordSpacing = t9; _.decoration = t10; _.ellipsis = t11; _.shadows = t12; _._cachedHeightStyle = _._cssFontString = _._cachedHashCode = null; }, TextHeightStyle: function TextHeightStyle(t0, t1, t2, t3) { var _ = this; _.fontFamily = t0; _.fontSize = t1; _.height = t2; _.fontFeatures = t3; _.__TextHeightStyle_hashCode = $; }, TextDimensions: function TextDimensions(t0) { this.__engine$_element = t0; this._cachedBoundingClientRect = null; }, TextHeightRuler: function TextHeightRuler(t0, t1, t2) { var _ = this; _.textHeightStyle = t0; _.rulerHost = t1; _.__TextHeightRuler__host = _.__TextHeightRuler__probe = $; _._dimensions = t2; _.__TextHeightRuler_height = _.__TextHeightRuler_alphabeticBaseline = $; }, ParagraphRuler: function ParagraphRuler(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.style = t0; _.rulerManager = t1; _._singleLineHost = t2; _.singleLineDimensions = t3; _._minIntrinsicHost = t4; _.minIntrinsicDimensions = t5; _._constrainedHost = t6; _.constrainedDimensions = t7; _.__ParagraphRuler__textHeightRuler = $; _._hitCount = 0; _._debugIsDisposed = false; _.__engine$_paragraph = null; _._measurementCache = t8; _._mruList = t9; }, MeasurementResult: function MeasurementResult(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.constraintWidth = t0; _.isSingleLine = t1; _.width = t2; _.height = t3; _.naturalHeight = t4; _.lineHeight = t5; _.minIntrinsicWidth = t6; _.maxIntrinsicWidth = t7; _.alphabeticBaseline = t8; _.ideographicBaseline = t9; _.lines = t10; _.placeholderBoxes = t11; _.textAlign = t12; _.textDirection = t13; }, _ComparisonResult: function _ComparisonResult(t0) { this.__engine$_name = t0; }, UnicodeRange: function UnicodeRange(t0, t1, t2, t3) { var _ = this; _.start = t0; _.end = t1; _.property = t2; _.$ti = t3; }, UnicodePropertyLookup: function UnicodePropertyLookup(t0, t1, t2, t3) { var _ = this; _.ranges = t0; _.defaultProperty = t1; _._cache = t2; _.$ti = t3; }, WordCharProperty: function WordCharProperty(t0) { this.__engine$_name = t0; }, _FindBreakDirection: function _FindBreakDirection(t0) { this.step = t0; }, BrowserAutofillHints: function BrowserAutofillHints(t0) { this._flutterToEngineMap = t0; }, EngineInputType: function EngineInputType() { }, TextInputType0: function TextInputType0() { }, NumberInputType: function NumberInputType() { }, DecimalInputType: function DecimalInputType() { }, PhoneInputType: function PhoneInputType() { }, EmailInputType: function EmailInputType() { }, UrlInputType: function UrlInputType() { }, MultilineInputType: function MultilineInputType() { }, TextCapitalization: function TextCapitalization(t0) { this.__engine$_name = t0; }, TextCapitalizationConfig: function TextCapitalizationConfig(t0) { this.textCapitalization = t0; }, EngineAutofillForm: function EngineAutofillForm(t0, t1, t2, t3) { var _ = this; _.formElement = t0; _.elements = t1; _.items = t2; _.formIdentifier = t3; }, EngineAutofillForm_fromFrameworkMessage_closure: function EngineAutofillForm_fromFrameworkMessage_closure() { }, EngineAutofillForm_addInputEventListeners_closure: function EngineAutofillForm_addInputEventListeners_closure(t0, t1) { this.$this = t0; this.subscriptions = t1; }, EngineAutofillForm_addInputEventListeners__closure: function EngineAutofillForm_addInputEventListeners__closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.element = t2; }, AutofillInfo: function AutofillInfo(t0, t1, t2, t3) { var _ = this; _.editingState = t0; _.uniqueIdentifier = t1; _.textCapitalization = t2; _.hint = t3; }, EditingState: function EditingState(t0, t1, t2) { this.text = t0; this.baseOffset = t1; this.extentOffset = t2; }, InputConfiguration: function InputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.inputType = t0; _.inputAction = t1; _.readOnly = t2; _.obscureText = t3; _.autocorrect = t4; _.autofill = t5; _.autofillGroup = t6; _.textCapitalization = t7; }, GloballyPositionedTextEditingStrategy: function GloballyPositionedTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, SafariDesktopTextEditingStrategy: function SafariDesktopTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, DefaultTextEditingStrategy: function DefaultTextEditingStrategy() { }, DefaultTextEditingStrategy_addEventHandlers_closure: function DefaultTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure() { }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0() { }, DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1: function DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1() { }, IOSTextEditingStrategy: function IOSTextEditingStrategy(t0, t1) { var _ = this; _._positionInputElementTimer = null; _._canPosition = true; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, IOSTextEditingStrategy_addEventHandlers_closure: function IOSTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, IOSTextEditingStrategy_addEventHandlers_closure0: function IOSTextEditingStrategy_addEventHandlers_closure0(t0) { this.$this = t0; }, IOSTextEditingStrategy__addTapListener_closure: function IOSTextEditingStrategy__addTapListener_closure(t0) { this.$this = t0; }, IOSTextEditingStrategy__schedulePlacement_closure: function IOSTextEditingStrategy__schedulePlacement_closure(t0) { this.$this = t0; }, AndroidTextEditingStrategy: function AndroidTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, AndroidTextEditingStrategy_addEventHandlers_closure: function AndroidTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, FirefoxTextEditingStrategy: function FirefoxTextEditingStrategy(t0, t1) { var _ = this; _.owner = t0; _.isEnabled = false; _.domElement = null; _.__DefaultTextEditingStrategy__inputConfiguration = $; _._onAction = _._onChange = _.__engine$_geometry = _._style = _._lastEditingState = null; _.__engine$_subscriptions = t1; _._appendedToForm = false; }, FirefoxTextEditingStrategy_addEventHandlers_closure: function FirefoxTextEditingStrategy_addEventHandlers_closure(t0) { this.$this = t0; }, FirefoxTextEditingStrategy_addEventHandlers_closure0: function FirefoxTextEditingStrategy_addEventHandlers_closure0(t0) { this.$this = t0; }, FirefoxTextEditingStrategy__postponeFocus_closure: function FirefoxTextEditingStrategy__postponeFocus_closure(t0) { this.$this = t0; }, TextInputCommand: function TextInputCommand() { }, TextInputSetClient: function TextInputSetClient(t0, t1) { this.clientId = t0; this.configuration = t1; }, TextInputUpdateConfig: function TextInputUpdateConfig() { }, TextInputSetEditingState: function TextInputSetEditingState(t0) { this.state = t0; }, TextInputShow: function TextInputShow() { }, TextInputSetEditableSizeAndTransform: function TextInputSetEditableSizeAndTransform(t0) { this.geometry = t0; }, TextInputSetStyle: function TextInputSetStyle(t0) { this.style = t0; }, TextInputClearClient: function TextInputClearClient() { }, TextInputHide: function TextInputHide() { }, TextInputSetMarkedTextRect: function TextInputSetMarkedTextRect() { }, TextInputSetCaretRect: function TextInputSetCaretRect() { }, TextInputFinishAutofillContext: function TextInputFinishAutofillContext(t0) { this.saveForm = t0; }, saveForms_closure: function saveForms_closure() { }, TextEditingChannel: function TextEditingChannel(t0) { this.implementation = t0; }, TextEditingChannel_handleTextInput__command_set: function TextEditingChannel_handleTextInput__command_set(t0) { this._box_0 = t0; }, TextEditingChannel_handleTextInput__command_get: function TextEditingChannel_handleTextInput__command_get(t0) { this._box_0 = t0; }, TextEditingChannel_handleTextInput_closure: function TextEditingChannel_handleTextInput_closure(t0) { this.callback = t0; }, HybridTextEditing: function HybridTextEditing() { var _ = this; _.__HybridTextEditing_channel = $; _.__engine$_clientId = null; _.isEditing = false; _.configuration = null; _.__HybridTextEditing_strategy = $; }, HybridTextEditing__startEditing_closure0: function HybridTextEditing__startEditing_closure0(t0) { this.$this = t0; }, HybridTextEditing__startEditing_closure: function HybridTextEditing__startEditing_closure(t0) { this.$this = t0; }, EditableTextStyle: function EditableTextStyle(t0, t1, t2, t3, t4) { var _ = this; _.fontSize = t0; _.fontWeight = t1; _.fontFamily = t2; _.textAlign = t3; _.textDirection = t4; }, EditableTextGeometry: function EditableTextGeometry(t0, t1, t2) { this.width = t0; this.height = t1; this.globalTransform = t2; }, TransformKind: function TransformKind(t0) { this.__engine$_name = t0; }, sendFontChangeMessage_closure: function sendFontChangeMessage_closure() { }, sendFontChangeMessage__closure: function sendFontChangeMessage__closure() { }, Matrix40: function Matrix40(t0) { this.__engine$_m4storage = t0; }, Vector30: function Vector30(t0) { this.__engine$_v3storage = t0; }, WebExperiments: function WebExperiments() { this._useCanvasRichText = this._useCanvasText = true; }, WebExperiments$__closure: function WebExperiments$__closure() { }, EngineFlutterWindow: function EngineFlutterWindow() { }, EngineFlutterWindow_closure: function EngineFlutterWindow_closure() { }, EngineSingletonFlutterWindow: function EngineSingletonFlutterWindow(t0, t1, t2) { var _ = this; _._debugDevicePixelRatio = null; _._windowId = t0; _.platformDispatcher = t1; _._browserHistory = null; _._usingRouter = false; _._viewInsets = t2; _._physicalSize = null; }, WindowPadding: function WindowPadding(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, _DomCanvas_EngineCanvas_SaveElementStackTracking: function _DomCanvas_EngineCanvas_SaveElementStackTracking() { }, _PersistedClipRRect_PersistedContainerSurface__DomClip: function _PersistedClipRRect_PersistedContainerSurface__DomClip() { }, _PersistedClipRect_PersistedContainerSurface__DomClip: function _PersistedClipRect_PersistedContainerSurface__DomClip() { }, _PersistedPhysicalShape_PersistedContainerSurface__DomClip: function _PersistedPhysicalShape_PersistedContainerSurface__DomClip() { }, __MouseAdapter__BaseAdapter__WheelEventListenerMixin: function __MouseAdapter__BaseAdapter__WheelEventListenerMixin() { }, __PointerAdapter__BaseAdapter__WheelEventListenerMixin: function __PointerAdapter__BaseAdapter__WheelEventListenerMixin() { }, JS_CONST: function JS_CONST() { }, HttpException$: function(message, uri) { return new H.HttpException(message, uri); }, _HeaderValue__isToken: function(token) { var i, codeUnit, t1 = token.length; if (t1 === 0) return false; for (i = 0; i < t1; ++i) { codeUnit = C.JSString_methods._codeUnitAt$1(token, i); if (codeUnit <= 32 || codeUnit >= 127 || C.JSString_methods.indexOf$1('"(),/:;<=>?@[]{}', token[i]) >= 0) return false; } return true; }, HttpException: function HttpException(t0, t1) { this.message = t0; this.uri = t1; }, _HeaderValue: function _HeaderValue() { }, _HeaderValue_toString_closure: function _HeaderValue_toString_closure(t0) { this.sb = t0; }, _HeaderValue__parse_done: function _HeaderValue__parse_done(t0, t1) { this._box_0 = t0; this.s = t1; }, _HeaderValue__parse_skipWS: function _HeaderValue__parse_skipWS(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_parseValue: function _HeaderValue__parse_parseValue(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.valueSeparator = t3; _.parameterSeparator = t4; }, _HeaderValue__parse_expect: function _HeaderValue__parse_expect(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_maybeExpect: function _HeaderValue__parse_maybeExpect(t0, t1, t2) { this._box_0 = t0; this.done = t1; this.s = t2; }, _HeaderValue__parse_parseParameters: function _HeaderValue__parse_parseParameters(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _.$this = t1; _.done = t2; _.s = t3; _.parameterSeparator = t4; _.valueSeparator = t5; _.preserveBackslash = t6; _.parseValue = t7; _.skipWS = t8; _.maybeExpect = t9; _.expect = t10; }, _HeaderValue__parse_parseParameters_parseParameterName: function _HeaderValue__parse_parseParameters_parseParameterName(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.parameterSeparator = t3; _.valueSeparator = t4; }, _HeaderValue__parse_parseParameters_parseParameterValue: function _HeaderValue__parse_parseParameters_parseParameterValue(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.done = t1; _.s = t2; _.preserveBackslash = t3; _.parseValue = t4; }, _ContentType: function _ContentType() { var _ = this; _.__http$_value = _._subType = _._primaryType = ""; _._parameters = null; }, createSentinel: function() { return $; }, CastIterable_CastIterable: function(source, $S, $T) { if ($S._eval$1("EfficientLengthIterable<0>")._is(source)) return new H._EfficientLengthCastIterable(source, $S._eval$1("@<0>")._bind$1($T)._eval$1("_EfficientLengthCastIterable<1,2>")); return new H.CastIterable(source, $S._eval$1("@<0>")._bind$1($T)._eval$1("CastIterable<1,2>")); }, LateError$fieldADI: function(fieldName) { return new H.LateError("Field '" + fieldName + "' has been assigned during initialization."); }, LateError$fieldNI: function(fieldName) { return new H.LateError("Field '" + fieldName + "' has not been initialized."); }, LateError$localNI: function(localName) { return new H.LateError("Local '" + localName + "' has not been initialized."); }, LateError$fieldAI: function(fieldName) { return new H.LateError("Field '" + fieldName + "' has already been initialized."); }, LateError$localAI: function(localName) { return new H.LateError("Local '" + localName + "' has already been initialized."); }, ReachabilityError$: function(_message) { return new H.ReachabilityError(_message); }, hexDigitValue: function(char) { var letter, digit = char ^ 48; if (digit <= 9) return digit; letter = char | 32; if (97 <= letter && letter <= 102) return letter - 87; return -1; }, parseHexByte: function(source, index) { var digit1 = H.hexDigitValue(C.JSString_methods.codeUnitAt$1(source, index)), digit2 = H.hexDigitValue(C.JSString_methods.codeUnitAt$1(source, index + 1)); return digit1 * 16 + digit2 - (digit2 & 256); }, SystemHash_combine: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, SystemHash_finish: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, checkNotNullable: function(value, $name, $T) { if (value == null) throw H.wrapException(new H.NotNullableError($name, $T._eval$1("NotNullableError<0>"))); return value; }, SubListIterable$: function(_iterable, _start, _endOrLength, $E) { P.RangeError_checkNotNegative(_start, "start"); if (_endOrLength != null) { P.RangeError_checkNotNegative(_endOrLength, "end"); if (_start > _endOrLength) H.throwExpression(P.RangeError$range(_start, 0, _endOrLength, "start", null)); } return new H.SubListIterable(_iterable, _start, _endOrLength, $E._eval$1("SubListIterable<0>")); }, MappedIterable_MappedIterable: function(iterable, $function, $S, $T) { if (type$.EfficientLengthIterable_dynamic._is(iterable)) return new H.EfficientLengthMappedIterable(iterable, $function, $S._eval$1("@<0>")._bind$1($T)._eval$1("EfficientLengthMappedIterable<1,2>")); return new H.MappedIterable(iterable, $function, $S._eval$1("@<0>")._bind$1($T)._eval$1("MappedIterable<1,2>")); }, TakeIterable_TakeIterable: function(iterable, takeCount, $E) { P.RangeError_checkNotNegative(takeCount, "takeCount"); if (type$.EfficientLengthIterable_dynamic._is(iterable)) return new H.EfficientLengthTakeIterable(iterable, takeCount, $E._eval$1("EfficientLengthTakeIterable<0>")); return new H.TakeIterable(iterable, takeCount, $E._eval$1("TakeIterable<0>")); }, SkipIterable_SkipIterable: function(iterable, count, $E) { var _s5_ = "count"; if (type$.EfficientLengthIterable_dynamic._is(iterable)) { if (count == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); P.RangeError_checkNotNegative(count, _s5_); return new H.EfficientLengthSkipIterable(iterable, count, $E._eval$1("EfficientLengthSkipIterable<0>")); } if (count == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); P.RangeError_checkNotNegative(count, _s5_); return new H.SkipIterable(iterable, count, $E._eval$1("SkipIterable<0>")); }, FollowedByIterable_FollowedByIterable$firstEfficient: function(first, second, $E) { return new H.FollowedByIterable(first, second, $E._eval$1("FollowedByIterable<0>")); }, IterableElementError_noElement: function() { return new P.StateError("No element"); }, IterableElementError_tooMany: function() { return new P.StateError("Too many elements"); }, IterableElementError_tooFew: function() { return new P.StateError("Too few elements"); }, Sort_sort: function(a, compare) { H.Sort__doSort(a, 0, J.get$length$asx(a) - 1, compare); }, Sort__doSort: function(a, left, right, compare) { if (right - left <= 32) H.Sort__insertionSort(a, left, right, compare); else H.Sort__dualPivotQuicksort(a, left, right, compare); }, Sort__insertionSort: function(a, left, right, compare) { var i, t1, el, j, j0; for (i = left + 1, t1 = J.getInterceptor$asx(a); i <= right; ++i) { el = t1.$index(a, i); j = i; while (true) { if (!(j > left && compare.call$2(t1.$index(a, j - 1), el) > 0)) break; j0 = j - 1; t1.$indexSet(a, j, t1.$index(a, j0)); j = j0; } t1.$indexSet(a, j, el); } }, Sort__dualPivotQuicksort: function(a, left, right, compare) { var t0, less, great, k, ak, comp, great0, less0, pivots_are_equal, t2, sixth = C.JSInt_methods._tdivFast$1(right - left + 1, 6), index1 = left + sixth, index5 = right - sixth, index3 = C.JSInt_methods._tdivFast$1(left + right, 2), index2 = index3 - sixth, index4 = index3 + sixth, t1 = J.getInterceptor$asx(a), el1 = t1.$index(a, index1), el2 = t1.$index(a, index2), el3 = t1.$index(a, index3), el4 = t1.$index(a, index4), el5 = t1.$index(a, index5); if (compare.call$2(el1, el2) > 0) { t0 = el2; el2 = el1; el1 = t0; } if (compare.call$2(el4, el5) > 0) { t0 = el5; el5 = el4; el4 = t0; } if (compare.call$2(el1, el3) > 0) { t0 = el3; el3 = el1; el1 = t0; } if (compare.call$2(el2, el3) > 0) { t0 = el3; el3 = el2; el2 = t0; } if (compare.call$2(el1, el4) > 0) { t0 = el4; el4 = el1; el1 = t0; } if (compare.call$2(el3, el4) > 0) { t0 = el4; el4 = el3; el3 = t0; } if (compare.call$2(el2, el5) > 0) { t0 = el5; el5 = el2; el2 = t0; } if (compare.call$2(el2, el3) > 0) { t0 = el3; el3 = el2; el2 = t0; } if (compare.call$2(el4, el5) > 0) { t0 = el5; el5 = el4; el4 = t0; } t1.$indexSet(a, index1, el1); t1.$indexSet(a, index3, el3); t1.$indexSet(a, index5, el5); t1.$indexSet(a, index2, t1.$index(a, left)); t1.$indexSet(a, index4, t1.$index(a, right)); less = left + 1; great = right - 1; if (J.$eq$(compare.call$2(el2, el4), 0)) { for (k = less; k <= great; ++k) { ak = t1.$index(a, k); comp = compare.call$2(ak, el2); if (comp === 0) continue; if (comp < 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else for (; true;) { comp = compare.call$2(t1.$index(a, great), el2); if (comp > 0) { --great; continue; } else { great0 = great - 1; if (comp < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); great = great0; less = less0; break; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); great = great0; break; } } } } pivots_are_equal = true; } else { for (k = less; k <= great; ++k) { ak = t1.$index(a, k); if (compare.call$2(ak, el2) < 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else if (compare.call$2(ak, el4) > 0) for (; true;) if (compare.call$2(t1.$index(a, great), el4) > 0) { --great; if (great < k) break; continue; } else { great0 = great - 1; if (compare.call$2(t1.$index(a, great), el2) < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); less = less0; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); } great = great0; break; } } pivots_are_equal = false; } t2 = less - 1; t1.$indexSet(a, left, t1.$index(a, t2)); t1.$indexSet(a, t2, el2); t2 = great + 1; t1.$indexSet(a, right, t1.$index(a, t2)); t1.$indexSet(a, t2, el4); H.Sort__doSort(a, left, less - 2, compare); H.Sort__doSort(a, great + 2, right, compare); if (pivots_are_equal) return; if (less < index1 && great > index5) { for (; J.$eq$(compare.call$2(t1.$index(a, less), el2), 0);) ++less; for (; J.$eq$(compare.call$2(t1.$index(a, great), el4), 0);) --great; for (k = less; k <= great; ++k) { ak = t1.$index(a, k); if (compare.call$2(ak, el2) === 0) { if (k !== less) { t1.$indexSet(a, k, t1.$index(a, less)); t1.$indexSet(a, less, ak); } ++less; } else if (compare.call$2(ak, el4) === 0) for (; true;) if (compare.call$2(t1.$index(a, great), el4) === 0) { --great; if (great < k) break; continue; } else { great0 = great - 1; if (compare.call$2(t1.$index(a, great), el2) < 0) { t1.$indexSet(a, k, t1.$index(a, less)); less0 = less + 1; t1.$indexSet(a, less, t1.$index(a, great)); t1.$indexSet(a, great, ak); less = less0; } else { t1.$indexSet(a, k, t1.$index(a, great)); t1.$indexSet(a, great, ak); } great = great0; break; } } H.Sort__doSort(a, less, great, compare); } else H.Sort__doSort(a, less, great, compare); }, _CopyingBytesBuilder: function _CopyingBytesBuilder(t0) { this._length = 0; this._buffer = t0; }, _CastIterableBase: function _CastIterableBase() { }, CastIterator: function CastIterator(t0, t1) { this._source = t0; this.$ti = t1; }, CastIterable: function CastIterable(t0, t1) { this._source = t0; this.$ti = t1; }, _EfficientLengthCastIterable: function _EfficientLengthCastIterable(t0, t1) { this._source = t0; this.$ti = t1; }, _CastListBase: function _CastListBase() { }, _CastListBase_sort_closure: function _CastListBase_sort_closure(t0, t1) { this.$this = t0; this.compare = t1; }, _CastListBase_removeWhere_closure: function _CastListBase_removeWhere_closure(t0, t1) { this.$this = t0; this.test = t1; }, _CastListBase_retainWhere_closure: function _CastListBase_retainWhere_closure(t0, t1) { this.$this = t0; this.test = t1; }, CastList: function CastList(t0, t1) { this._source = t0; this.$ti = t1; }, CastMap: function CastMap(t0, t1) { this._source = t0; this.$ti = t1; }, CastMap_putIfAbsent_closure: function CastMap_putIfAbsent_closure(t0, t1) { this.$this = t0; this.ifAbsent = t1; }, CastMap_forEach_closure: function CastMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, CastMap_entries_closure: function CastMap_entries_closure(t0) { this.$this = t0; }, LateError: function LateError(t0) { this.__internal$_message = t0; }, ReachabilityError: function ReachabilityError(t0) { this.__internal$_message = t0; }, CodeUnits: function CodeUnits(t0) { this.__internal$_string = t0; }, nullFuture_closure: function nullFuture_closure() { }, NotNullableError: function NotNullableError(t0, t1) { this.__internal$_name = t0; this.$ti = t1; }, EfficientLengthIterable: function EfficientLengthIterable() { }, ListIterable: function ListIterable() { }, SubListIterable: function SubListIterable(t0, t1, t2, t3) { var _ = this; _._iterable = t0; _._start = t1; _._endOrLength = t2; _.$ti = t3; }, ListIterator: function ListIterator(t0, t1, t2) { var _ = this; _._iterable = t0; _._length = t1; _.__internal$_index = 0; _.__internal$_current = null; _.$ti = t2; }, MappedIterable: function MappedIterable(t0, t1, t2) { this._iterable = t0; this._f = t1; this.$ti = t2; }, EfficientLengthMappedIterable: function EfficientLengthMappedIterable(t0, t1, t2) { this._iterable = t0; this._f = t1; this.$ti = t2; }, MappedIterator: function MappedIterator(t0, t1, t2) { var _ = this; _.__internal$_current = null; _._iterator = t0; _._f = t1; _.$ti = t2; }, MappedListIterable: function MappedListIterable(t0, t1, t2) { this._source = t0; this._f = t1; this.$ti = t2; }, WhereIterable: function WhereIterable(t0, t1, t2) { this._iterable = t0; this._f = t1; this.$ti = t2; }, WhereIterator: function WhereIterator(t0, t1, t2) { this._iterator = t0; this._f = t1; this.$ti = t2; }, ExpandIterable: function ExpandIterable(t0, t1, t2) { this._iterable = t0; this._f = t1; this.$ti = t2; }, ExpandIterator: function ExpandIterator(t0, t1, t2, t3) { var _ = this; _._iterator = t0; _._f = t1; _._currentExpansion = t2; _.__internal$_current = null; _.$ti = t3; }, TakeIterable: function TakeIterable(t0, t1, t2) { this._iterable = t0; this._takeCount = t1; this.$ti = t2; }, EfficientLengthTakeIterable: function EfficientLengthTakeIterable(t0, t1, t2) { this._iterable = t0; this._takeCount = t1; this.$ti = t2; }, TakeIterator: function TakeIterator(t0, t1, t2) { this._iterator = t0; this._remaining = t1; this.$ti = t2; }, SkipIterable: function SkipIterable(t0, t1, t2) { this._iterable = t0; this._skipCount = t1; this.$ti = t2; }, EfficientLengthSkipIterable: function EfficientLengthSkipIterable(t0, t1, t2) { this._iterable = t0; this._skipCount = t1; this.$ti = t2; }, SkipIterator: function SkipIterator(t0, t1, t2) { this._iterator = t0; this._skipCount = t1; this.$ti = t2; }, SkipWhileIterable: function SkipWhileIterable(t0, t1, t2) { this._iterable = t0; this._f = t1; this.$ti = t2; }, SkipWhileIterator: function SkipWhileIterator(t0, t1, t2) { var _ = this; _._iterator = t0; _._f = t1; _._hasSkipped = false; _.$ti = t2; }, EmptyIterable: function EmptyIterable(t0) { this.$ti = t0; }, EmptyIterator: function EmptyIterator(t0) { this.$ti = t0; }, FollowedByIterable: function FollowedByIterable(t0, t1, t2) { this.__internal$_first = t0; this._second = t1; this.$ti = t2; }, FollowedByIterator: function FollowedByIterator(t0, t1, t2) { this._currentIterator = t0; this._nextIterable = t1; this.$ti = t2; }, WhereTypeIterable: function WhereTypeIterable(t0, t1) { this._source = t0; this.$ti = t1; }, WhereTypeIterator: function WhereTypeIterator(t0, t1) { this._source = t0; this.$ti = t1; }, FixedLengthListMixin: function FixedLengthListMixin() { }, UnmodifiableListMixin: function UnmodifiableListMixin() { }, UnmodifiableListBase: function UnmodifiableListBase() { }, _ListIndicesIterable: function _ListIndicesIterable(t0) { this._backedList = t0; }, ListMapView: function ListMapView(t0, t1) { this._values = t0; this.$ti = t1; }, ReversedListIterable: function ReversedListIterable(t0, t1) { this._source = t0; this.$ti = t1; }, Symbol: function Symbol(t0) { this.__internal$_name = t0; }, __CastListBase__CastIterableBase_ListMixin: function __CastListBase__CastIterableBase_ListMixin() { }, ConstantMap__throwUnmodifiable: function() { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable Map")); }, instantiate1: function(f, T1) { var t1 = new H.Instantiation1(f, T1._eval$1("Instantiation1<0>")); t1.Instantiation$1(f); return t1; }, unminifyOrTag: function(rawClassName) { var preserved = H.unmangleGlobalNameIfPreservedAnyways(rawClassName); if (preserved != null) return preserved; return rawClassName; }, isJsIndexable: function(object, record) { var result; if (record != null) { result = record.x; if (result != null) return result; } return type$.JavaScriptIndexingBehavior_dynamic._is(object); }, S: function(value) { var res; if (typeof value == "string") return value; if (typeof value == "number") { if (value !== 0) return "" + value; } else if (true === value) return "true"; else if (false === value) return "false"; else if (value == null) return "null"; res = J.toString$0$(value); if (typeof res != "string") throw H.wrapException(H.argumentErrorValue(value)); return res; }, Primitives_objectHashCode: function(object) { var hash = object.$identityHash; if (hash == null) { hash = Math.random() * 0x3fffffff | 0; object.$identityHash = hash; } return hash; }, Primitives_parseInt: function(source, radix) { var match, decimalMatch, maxCharCode, digitsPart, t1, i, _null = null; if (typeof source != "string") H.throwExpression(H.argumentErrorValue(source)); match = /^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(source); if (match == null) return _null; decimalMatch = match[3]; if (radix == null) { if (decimalMatch != null) return parseInt(source, 10); if (match[2] != null) return parseInt(source, 16); return _null; } if (radix < 2 || radix > 36) throw H.wrapException(P.RangeError$range(radix, 2, 36, "radix", _null)); if (radix === 10 && decimalMatch != null) return parseInt(source, 10); if (radix < 10 || decimalMatch == null) { maxCharCode = radix <= 10 ? 47 + radix : 86 + radix; digitsPart = match[1]; for (t1 = digitsPart.length, i = 0; i < t1; ++i) if ((C.JSString_methods._codeUnitAt$1(digitsPart, i) | 32) > maxCharCode) return _null; } return parseInt(source, radix); }, Primitives_parseDouble: function(source) { var result, trimmed; if (typeof source != "string") H.throwExpression(H.argumentErrorValue(source)); if (!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(source)) return null; result = parseFloat(source); if (isNaN(result)) { trimmed = J.trim$0$s(source); if (trimmed === "NaN" || trimmed === "+NaN" || trimmed === "-NaN") return result; return null; } return result; }, Primitives_objectTypeName: function(object) { return H.Primitives__objectTypeNameNewRti(object); }, Primitives__objectTypeNameNewRti: function(object) { var dispatchName, t1, $constructor, constructorName; if (object instanceof P.Object) return H._rtiToString(H.instanceType(object), null); if (J.getInterceptor$(object) === C.Interceptor_methods || type$.UnknownJavaScriptObject._is(object)) { dispatchName = C.C_JS_CONST(object); t1 = dispatchName !== "Object" && dispatchName !== ""; if (t1) return dispatchName; $constructor = object.constructor; if (typeof $constructor == "function") { constructorName = $constructor.name; if (typeof constructorName == "string") t1 = constructorName !== "Object" && constructorName !== ""; else t1 = false; if (t1) return constructorName; } } return H._rtiToString(H.instanceType(object), null); }, Primitives_dateNow: function() { return Date.now(); }, Primitives_initTicker: function() { var $window, performance; if ($.Primitives_timerFrequency !== 0) return; $.Primitives_timerFrequency = 1000; if (typeof window == "undefined") return; $window = window; if ($window == null) return; performance = $window.performance; if (performance == null) return; if (typeof performance.now != "function") return; $.Primitives_timerFrequency = 1000000; $.Primitives_timerTicks = new H.Primitives_initTicker_closure(performance); }, Primitives_currentUri: function() { if (!!self.location) return self.location.href; return null; }, Primitives__fromCharCodeApply: function(array) { var result, i, i0, chunkEnd, end = array.length; if (end <= 500) return String.fromCharCode.apply(null, array); for (result = "", i = 0; i < end; i = i0) { i0 = i + 500; chunkEnd = i0 < end ? i0 : end; result += String.fromCharCode.apply(null, array.slice(i, chunkEnd)); } return result; }, Primitives_stringFromCodePoints: function(codePoints) { var t1, _i, i, a = H.setRuntimeTypeInfo([], type$.JSArray_int); for (t1 = codePoints.length, _i = 0; _i < codePoints.length; codePoints.length === t1 || (0, H.throwConcurrentModificationError)(codePoints), ++_i) { i = codePoints[_i]; if (!H._isInt(i)) throw H.wrapException(H.argumentErrorValue(i)); if (i <= 65535) a.push(i); else if (i <= 1114111) { a.push(55296 + (C.JSInt_methods._shrOtherPositive$1(i - 65536, 10) & 1023)); a.push(56320 + (i & 1023)); } else throw H.wrapException(H.argumentErrorValue(i)); } return H.Primitives__fromCharCodeApply(a); }, Primitives_stringFromCharCodes: function(charCodes) { var t1, _i, i; for (t1 = charCodes.length, _i = 0; _i < t1; ++_i) { i = charCodes[_i]; if (!H._isInt(i)) throw H.wrapException(H.argumentErrorValue(i)); if (i < 0) throw H.wrapException(H.argumentErrorValue(i)); if (i > 65535) return H.Primitives_stringFromCodePoints(charCodes); } return H.Primitives__fromCharCodeApply(charCodes); }, Primitives_stringFromNativeUint8List: function(charCodes, start, end) { var i, result, i0, chunkEnd; if (end <= 500 && start === 0 && end === charCodes.length) return String.fromCharCode.apply(null, charCodes); for (i = start, result = ""; i < end; i = i0) { i0 = i + 500; chunkEnd = i0 < end ? i0 : end; result += String.fromCharCode.apply(null, charCodes.subarray(i, chunkEnd)); } return result; }, Primitives_stringFromCharCode: function(charCode) { var bits; if (0 <= charCode) { if (charCode <= 65535) return String.fromCharCode(charCode); if (charCode <= 1114111) { bits = charCode - 65536; return String.fromCharCode((C.JSInt_methods._shrOtherPositive$1(bits, 10) | 55296) >>> 0, bits & 1023 | 56320); } } throw H.wrapException(P.RangeError$range(charCode, 0, 1114111, null, null)); }, Primitives_valueFromDecomposedDate: function(years, month, day, hours, minutes, seconds, milliseconds, isUtc) { var jsMonth, value; if (!H._isInt(years)) H.throwExpression(H.argumentErrorValue(years)); if (!H._isInt(month)) H.throwExpression(H.argumentErrorValue(month)); if (!H._isInt(day)) H.throwExpression(H.argumentErrorValue(day)); if (!H._isInt(hours)) H.throwExpression(H.argumentErrorValue(hours)); if (!H._isInt(minutes)) H.throwExpression(H.argumentErrorValue(minutes)); if (!H._isInt(seconds)) H.throwExpression(H.argumentErrorValue(seconds)); jsMonth = month - 1; if (0 <= years && years < 100) { years += 400; jsMonth -= 4800; } value = isUtc ? Date.UTC(years, jsMonth, day, hours, minutes, seconds, milliseconds) : new Date(years, jsMonth, day, hours, minutes, seconds, milliseconds).valueOf(); if (isNaN(value) || value < -864e13 || value > 864e13) return null; return value; }, Primitives_lazyAsJsDate: function(receiver) { if (receiver.date === void 0) receiver.date = new Date(receiver._value); return receiver.date; }, Primitives_getYear: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCFullYear() + 0 : H.Primitives_lazyAsJsDate(receiver).getFullYear() + 0; }, Primitives_getMonth: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCMonth() + 1 : H.Primitives_lazyAsJsDate(receiver).getMonth() + 1; }, Primitives_getDay: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCDate() + 0 : H.Primitives_lazyAsJsDate(receiver).getDate() + 0; }, Primitives_getHours: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCHours() + 0 : H.Primitives_lazyAsJsDate(receiver).getHours() + 0; }, Primitives_getMinutes: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCMinutes() + 0 : H.Primitives_lazyAsJsDate(receiver).getMinutes() + 0; }, Primitives_getSeconds: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCSeconds() + 0 : H.Primitives_lazyAsJsDate(receiver).getSeconds() + 0; }, Primitives_getMilliseconds: function(receiver) { return receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCMilliseconds() + 0 : H.Primitives_lazyAsJsDate(receiver).getMilliseconds() + 0; }, Primitives_getWeekday: function(receiver) { return C.JSInt_methods.$mod((receiver.isUtc ? H.Primitives_lazyAsJsDate(receiver).getUTCDay() + 0 : H.Primitives_lazyAsJsDate(receiver).getDay() + 0) + 6, 7) + 1; }, Primitives_getProperty: function(object, key) { if (object == null || H._isBool(object) || typeof object == "number" || typeof object == "string") throw H.wrapException(H.argumentErrorValue(object)); return object[key]; }, Primitives_setProperty: function(object, key, value) { if (object == null || H._isBool(object) || typeof object == "number" || typeof object == "string") throw H.wrapException(H.argumentErrorValue(object)); object[key] = value; }, Primitives_functionNoSuchMethod: function($function, positionalArguments, namedArguments) { var $arguments, namedArgumentList, t1 = {}; t1.argumentCount = 0; $arguments = []; namedArgumentList = []; t1.argumentCount = positionalArguments.length; C.JSArray_methods.addAll$1($arguments, positionalArguments); t1.names = ""; if (namedArguments != null && !namedArguments.get$isEmpty(namedArguments)) namedArguments.forEach$1(0, new H.Primitives_functionNoSuchMethod_closure(t1, namedArgumentList, $arguments)); "" + t1.argumentCount; return J.noSuchMethod$1$($function, new H.JSInvocationMirror(C.Symbol_call, 0, $arguments, namedArgumentList, 0)); }, Primitives_applyFunction: function($function, positionalArguments, namedArguments) { var t1, $arguments, argumentCount, jsStub; if (positionalArguments instanceof Array) t1 = namedArguments == null || namedArguments.get$isEmpty(namedArguments); else t1 = false; if (t1) { $arguments = positionalArguments; argumentCount = $arguments.length; if (argumentCount === 0) { if (!!$function.call$0) return $function.call$0(); } else if (argumentCount === 1) { if (!!$function.call$1) return $function.call$1($arguments[0]); } else if (argumentCount === 2) { if (!!$function.call$2) return $function.call$2($arguments[0], $arguments[1]); } else if (argumentCount === 3) { if (!!$function.call$3) return $function.call$3($arguments[0], $arguments[1], $arguments[2]); } else if (argumentCount === 4) { if (!!$function.call$4) return $function.call$4($arguments[0], $arguments[1], $arguments[2], $arguments[3]); } else if (argumentCount === 5) if (!!$function.call$5) return $function.call$5($arguments[0], $arguments[1], $arguments[2], $arguments[3], $arguments[4]); jsStub = $function["call" + "$" + argumentCount]; if (jsStub != null) return jsStub.apply($function, $arguments); } return H.Primitives__genericApplyFunction2($function, positionalArguments, namedArguments); }, Primitives__genericApplyFunction2: function($function, positionalArguments, namedArguments) { var $arguments, argumentCount, requiredParameterCount, defaultValuesClosure, t1, defaultValues, interceptor, jsFunction, keys, _i, defaultValue, used, t2; if (positionalArguments != null) $arguments = positionalArguments instanceof Array ? positionalArguments : P.List_List$from(positionalArguments, true, type$.dynamic); else $arguments = []; argumentCount = $arguments.length; requiredParameterCount = $function.$requiredArgCount; if (argumentCount < requiredParameterCount) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); defaultValuesClosure = $function.$defaultValues; t1 = defaultValuesClosure == null; defaultValues = !t1 ? defaultValuesClosure() : null; interceptor = J.getInterceptor$($function); jsFunction = interceptor["call*"]; if (typeof jsFunction == "string") jsFunction = interceptor[jsFunction]; if (t1) { if (namedArguments != null && namedArguments.get$isNotEmpty(namedArguments)) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); if (argumentCount === requiredParameterCount) return jsFunction.apply($function, $arguments); return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); } if (defaultValues instanceof Array) { if (namedArguments != null && namedArguments.get$isNotEmpty(namedArguments)) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); if (argumentCount > requiredParameterCount + defaultValues.length) return H.Primitives_functionNoSuchMethod($function, $arguments, null); C.JSArray_methods.addAll$1($arguments, defaultValues.slice(argumentCount - requiredParameterCount)); return jsFunction.apply($function, $arguments); } else { if (argumentCount > requiredParameterCount) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); keys = Object.keys(defaultValues); if (namedArguments == null) for (t1 = keys.length, _i = 0; _i < keys.length; keys.length === t1 || (0, H.throwConcurrentModificationError)(keys), ++_i) { defaultValue = defaultValues[keys[_i]]; if (C.C__Required === defaultValue) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); C.JSArray_methods.add$1($arguments, defaultValue); } else { for (t1 = keys.length, used = 0, _i = 0; _i < keys.length; keys.length === t1 || (0, H.throwConcurrentModificationError)(keys), ++_i) { t2 = keys[_i]; if (namedArguments.containsKey$1(0, t2)) { ++used; C.JSArray_methods.add$1($arguments, namedArguments.$index(0, t2)); } else { defaultValue = defaultValues[t2]; if (C.C__Required === defaultValue) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); C.JSArray_methods.add$1($arguments, defaultValue); } } if (used !== namedArguments.get$length(namedArguments)) return H.Primitives_functionNoSuchMethod($function, $arguments, namedArguments); } return jsFunction.apply($function, $arguments); } }, diagnoseIndexError: function(indexable, index) { var $length, _s5_ = "index"; if (!H._isInt(index)) return new P.ArgumentError(true, index, _s5_, null); $length = J.get$length$asx(indexable); if (index < 0 || index >= $length) return P.IndexError$(index, indexable, _s5_, null, $length); return P.RangeError$value(index, _s5_, null); }, diagnoseRangeError: function(start, end, $length) { var _null = null; if (!H._isInt(start)) return new P.ArgumentError(true, start, "start", _null); if (start < 0 || start > $length) return P.RangeError$range(start, 0, $length, "start", _null); if (end != null) if (end < start || end > $length) return P.RangeError$range(end, start, $length, "end", _null); return new P.ArgumentError(true, end, "end", _null); }, argumentErrorValue: function(object) { return new P.ArgumentError(true, object, null, null); }, checkNum: function(value) { if (typeof value != "number") throw H.wrapException(H.argumentErrorValue(value)); return value; }, wrapException: function(ex) { var wrapper, t1; if (ex == null) ex = new P.NullThrownError(); wrapper = new Error(); wrapper.dartException = ex; t1 = H.toStringWrapper; if ("defineProperty" in Object) { Object.defineProperty(wrapper, "message", {get: t1}); wrapper.name = ""; } else wrapper.toString = t1; return wrapper; }, toStringWrapper: function() { return J.toString$0$(this.dartException); }, throwExpression: function(ex) { throw H.wrapException(ex); }, throwConcurrentModificationError: function(collection) { throw H.wrapException(P.ConcurrentModificationError$(collection)); }, TypeErrorDecoder_extractPattern: function(message) { var match, $arguments, argumentsExpr, expr, method, receiver; message = H.quoteStringForRegExp(message.replace(String({}), "$receiver$")); match = message.match(/\\\$[a-zA-Z]+\\\$/g); if (match == null) match = H.setRuntimeTypeInfo([], type$.JSArray_String); $arguments = match.indexOf("\\$arguments\\$"); argumentsExpr = match.indexOf("\\$argumentsExpr\\$"); expr = match.indexOf("\\$expr\\$"); method = match.indexOf("\\$method\\$"); receiver = match.indexOf("\\$receiver\\$"); return new H.TypeErrorDecoder(message.replace(new RegExp("\\\\\\$arguments\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$", "g"), "((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$", "g"), "((?:x|[^x])*)"), $arguments, argumentsExpr, expr, method, receiver); }, TypeErrorDecoder_provokeCallErrorOn: function(expression) { return function($expr$) { var $argumentsExpr$ = "$arguments$"; try { $expr$.$method$($argumentsExpr$); } catch (e) { return e.message; } }(expression); }, TypeErrorDecoder_provokePropertyErrorOn: function(expression) { return function($expr$) { try { $expr$.$method$; } catch (e) { return e.message; } }(expression); }, JsNoSuchMethodError$: function(_message, match) { var t1 = match == null, t2 = t1 ? null : match.method; return new H.JsNoSuchMethodError(_message, t2, t1 ? null : match.receiver); }, unwrapException: function(ex) { if (ex == null) return new H.NullThrownFromJavaScriptException(ex); if (ex instanceof H.ExceptionAndStackTrace) return H.saveStackTrace(ex, ex.dartException); if (typeof ex !== "object") return ex; if ("dartException" in ex) return H.saveStackTrace(ex, ex.dartException); return H._unwrapNonDartException(ex); }, saveStackTrace: function(ex, error) { if (type$.Error._is(error)) if (error.$thrownJsError == null) error.$thrownJsError = ex; return error; }, _unwrapNonDartException: function(ex) { var message, number, ieErrorCode, t1, nsme, notClosure, nullCall, nullLiteralCall, undefCall, undefLiteralCall, nullProperty, undefProperty, undefLiteralProperty, match, _null = null; if (!("message" in ex)) return ex; message = ex.message; if ("number" in ex && typeof ex.number == "number") { number = ex.number; ieErrorCode = number & 65535; if ((C.JSInt_methods._shrOtherPositive$1(number, 16) & 8191) === 10) switch (ieErrorCode) { case 438: return H.saveStackTrace(ex, H.JsNoSuchMethodError$(H.S(message) + " (Error " + ieErrorCode + ")", _null)); case 445: case 5007: t1 = H.S(message) + " (Error " + ieErrorCode + ")"; return H.saveStackTrace(ex, new H.NullError(t1, _null)); } } if (ex instanceof TypeError) { nsme = $.$get$TypeErrorDecoder_noSuchMethodPattern(); notClosure = $.$get$TypeErrorDecoder_notClosurePattern(); nullCall = $.$get$TypeErrorDecoder_nullCallPattern(); nullLiteralCall = $.$get$TypeErrorDecoder_nullLiteralCallPattern(); undefCall = $.$get$TypeErrorDecoder_undefinedCallPattern(); undefLiteralCall = $.$get$TypeErrorDecoder_undefinedLiteralCallPattern(); nullProperty = $.$get$TypeErrorDecoder_nullPropertyPattern(); $.$get$TypeErrorDecoder_nullLiteralPropertyPattern(); undefProperty = $.$get$TypeErrorDecoder_undefinedPropertyPattern(); undefLiteralProperty = $.$get$TypeErrorDecoder_undefinedLiteralPropertyPattern(); match = nsme.matchTypeError$1(message); if (match != null) return H.saveStackTrace(ex, H.JsNoSuchMethodError$(message, match)); else { match = notClosure.matchTypeError$1(message); if (match != null) { match.method = "call"; return H.saveStackTrace(ex, H.JsNoSuchMethodError$(message, match)); } else { match = nullCall.matchTypeError$1(message); if (match == null) { match = nullLiteralCall.matchTypeError$1(message); if (match == null) { match = undefCall.matchTypeError$1(message); if (match == null) { match = undefLiteralCall.matchTypeError$1(message); if (match == null) { match = nullProperty.matchTypeError$1(message); if (match == null) { match = nullLiteralCall.matchTypeError$1(message); if (match == null) { match = undefProperty.matchTypeError$1(message); if (match == null) { match = undefLiteralProperty.matchTypeError$1(message); t1 = match != null; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; } else t1 = true; if (t1) return H.saveStackTrace(ex, new H.NullError(message, match == null ? _null : match.method)); } } return H.saveStackTrace(ex, new H.UnknownJsTypeError(typeof message == "string" ? message : "")); } if (ex instanceof RangeError) { if (typeof message == "string" && message.indexOf("call stack") !== -1) return new P.StackOverflowError(); message = function(ex) { try { return String(ex); } catch (e) { } return null; }(ex); return H.saveStackTrace(ex, new P.ArgumentError(false, _null, _null, typeof message == "string" ? message.replace(/^RangeError:\s*/, "") : message)); } if (typeof InternalError == "function" && ex instanceof InternalError) if (typeof message == "string" && message === "too much recursion") return new P.StackOverflowError(); return ex; }, getTraceFromException: function(exception) { var trace; if (exception instanceof H.ExceptionAndStackTrace) return exception.stackTrace; if (exception == null) return new H._StackTrace(exception); trace = exception.$cachedTrace; if (trace != null) return trace; return exception.$cachedTrace = new H._StackTrace(exception); }, objectHashCode: function(object) { if (object == null || typeof object != "object") return J.get$hashCode$(object); else return H.Primitives_objectHashCode(object); }, fillLiteralMap: function(keyValuePairs, result) { var index, index0, index1, $length = keyValuePairs.length; for (index = 0; index < $length; index = index1) { index0 = index + 1; index1 = index0 + 1; result.$indexSet(0, keyValuePairs[index], keyValuePairs[index0]); } return result; }, fillLiteralSet: function(values, result) { var index, $length = values.length; for (index = 0; index < $length; ++index) result.add$1(0, values[index]); return result; }, invokeClosure: function(closure, numberOfArguments, arg1, arg2, arg3, arg4) { switch (numberOfArguments) { case 0: return closure.call$0(); case 1: return closure.call$1(arg1); case 2: return closure.call$2(arg1, arg2); case 3: return closure.call$3(arg1, arg2, arg3); case 4: return closure.call$4(arg1, arg2, arg3, arg4); } throw H.wrapException(P.Exception_Exception("Unsupported number of arguments for wrapped closure")); }, convertDartClosureToJS: function(closure, arity) { var $function; if (closure == null) return null; $function = closure.$identity; if (!!$function) return $function; $function = function(closure, arity, invoke) { return function(a1, a2, a3, a4) { return invoke(closure, arity, a1, a2, a3, a4); }; }(closure, arity, H.invokeClosure); closure.$identity = $function; return $function; }, Closure_fromTearOff: function(receiver, functions, applyTrampolineIndex, reflectionInfo, isStatic, isIntercepted, propertyName) { var $constructor, t1, trampoline, applyTrampoline, i, stub, stubCallName, $function = functions[0], callName = $function.$callName, $prototype = isStatic ? Object.create(new H.StaticClosure().constructor.prototype) : Object.create(new H.BoundClosure(null, null, null, "").constructor.prototype); $prototype.$initialize = $prototype.constructor; if (isStatic) $constructor = function static_tear_off() { this.$initialize(); }; else { t1 = $.Closure_functionCounter; $.Closure_functionCounter = t1 + 1; t1 = new Function("a,b,c,d" + t1, "this.$initialize(a,b,c,d" + t1 + ")"); $constructor = t1; } $prototype.constructor = $constructor; $constructor.prototype = $prototype; if (!isStatic) { trampoline = H.Closure_forwardCallTo(receiver, $function, isIntercepted); trampoline.$reflectionInfo = reflectionInfo; } else { $prototype.$static_name = propertyName; trampoline = $function; } $prototype.$signature = H.Closure__computeSignatureFunctionNewRti(reflectionInfo, isStatic, isIntercepted); $prototype[callName] = trampoline; for (applyTrampoline = trampoline, i = 1; i < functions.length; ++i) { stub = functions[i]; stubCallName = stub.$callName; if (stubCallName != null) { stub = isStatic ? stub : H.Closure_forwardCallTo(receiver, stub, isIntercepted); $prototype[stubCallName] = stub; } if (i === applyTrampolineIndex) { stub.$reflectionInfo = reflectionInfo; applyTrampoline = stub; } } $prototype["call*"] = applyTrampoline; $prototype.$requiredArgCount = $function.$requiredArgCount; $prototype.$defaultValues = $function.$defaultValues; return $constructor; }, Closure__computeSignatureFunctionNewRti: function(functionType, isStatic, isIntercepted) { var typeEvalMethod; if (typeof functionType == "number") return function(getType, t) { return function() { return getType(t); }; }(H.getTypeFromTypesTable, functionType); if (typeof functionType == "string") { if (isStatic) throw H.wrapException("Cannot compute signature for static tearoff."); typeEvalMethod = isIntercepted ? H.BoundClosure_evalRecipeIntercepted : H.BoundClosure_evalRecipe; return function(recipe, evalOnReceiver) { return function() { return evalOnReceiver(this, recipe); }; }(functionType, typeEvalMethod); } throw H.wrapException("Error in functionType of tearoff"); }, Closure_cspForwardCall: function(arity, isSuperCall, stubName, $function) { var getSelf = H.BoundClosure_selfOf; switch (isSuperCall ? -1 : arity) { case 0: return function(n, S) { return function() { return S(this)[n](); }; }(stubName, getSelf); case 1: return function(n, S) { return function(a) { return S(this)[n](a); }; }(stubName, getSelf); case 2: return function(n, S) { return function(a, b) { return S(this)[n](a, b); }; }(stubName, getSelf); case 3: return function(n, S) { return function(a, b, c) { return S(this)[n](a, b, c); }; }(stubName, getSelf); case 4: return function(n, S) { return function(a, b, c, d) { return S(this)[n](a, b, c, d); }; }(stubName, getSelf); case 5: return function(n, S) { return function(a, b, c, d, e) { return S(this)[n](a, b, c, d, e); }; }(stubName, getSelf); default: return function(f, s) { return function() { return f.apply(s(this), arguments); }; }($function, getSelf); } }, Closure_forwardCallTo: function(receiver, $function, isIntercepted) { var stubName, arity, lookedUpFunction, t1, t2, selfName, $arguments; if (isIntercepted) return H.Closure_forwardInterceptedCallTo(receiver, $function); stubName = $function.$stubName; arity = $function.length; lookedUpFunction = receiver[stubName]; t1 = $function == null ? lookedUpFunction == null : $function === lookedUpFunction; t2 = !t1 || arity >= 27; if (t2) return H.Closure_cspForwardCall(arity, !t1, stubName, $function); if (arity === 0) { t1 = $.Closure_functionCounter; $.Closure_functionCounter = t1 + 1; selfName = "self" + H.S(t1); t1 = "return function(){var " + selfName + " = this."; t2 = $.BoundClosure_selfFieldNameCache; return new Function(t1 + (t2 == null ? $.BoundClosure_selfFieldNameCache = H.BoundClosure_computeFieldNamed("self") : t2) + ";return " + selfName + "." + H.S(stubName) + "();}")(); } $arguments = "abcdefghijklmnopqrstuvwxyz".split("").splice(0, arity).join(","); t1 = $.Closure_functionCounter; $.Closure_functionCounter = t1 + 1; $arguments += H.S(t1); t1 = "return function(" + $arguments + "){return this."; t2 = $.BoundClosure_selfFieldNameCache; return new Function(t1 + (t2 == null ? $.BoundClosure_selfFieldNameCache = H.BoundClosure_computeFieldNamed("self") : t2) + "." + H.S(stubName) + "(" + $arguments + ");}")(); }, Closure_cspForwardInterceptedCall: function(arity, isSuperCall, $name, $function) { var getSelf = H.BoundClosure_selfOf, getReceiver = H.BoundClosure_receiverOf; switch (isSuperCall ? -1 : arity) { case 0: throw H.wrapException(new H.RuntimeError("Intercepted function with no arguments.")); case 1: return function(n, s, r) { return function() { return s(this)[n](r(this)); }; }($name, getSelf, getReceiver); case 2: return function(n, s, r) { return function(a) { return s(this)[n](r(this), a); }; }($name, getSelf, getReceiver); case 3: return function(n, s, r) { return function(a, b) { return s(this)[n](r(this), a, b); }; }($name, getSelf, getReceiver); case 4: return function(n, s, r) { return function(a, b, c) { return s(this)[n](r(this), a, b, c); }; }($name, getSelf, getReceiver); case 5: return function(n, s, r) { return function(a, b, c, d) { return s(this)[n](r(this), a, b, c, d); }; }($name, getSelf, getReceiver); case 6: return function(n, s, r) { return function(a, b, c, d, e) { return s(this)[n](r(this), a, b, c, d, e); }; }($name, getSelf, getReceiver); default: return function(f, s, r, a) { return function() { a = [r(this)]; Array.prototype.push.apply(a, arguments); return f.apply(s(this), a); }; }($function, getSelf, getReceiver); } }, Closure_forwardInterceptedCallTo: function(receiver, $function) { var receiverField, stubName, arity, lookedUpFunction, t1, t2, $arguments, selfField = $.BoundClosure_selfFieldNameCache; if (selfField == null) selfField = $.BoundClosure_selfFieldNameCache = H.BoundClosure_computeFieldNamed("self"); receiverField = $.BoundClosure_receiverFieldNameCache; if (receiverField == null) receiverField = $.BoundClosure_receiverFieldNameCache = H.BoundClosure_computeFieldNamed("receiver"); stubName = $function.$stubName; arity = $function.length; lookedUpFunction = receiver[stubName]; t1 = $function == null ? lookedUpFunction == null : $function === lookedUpFunction; t2 = !t1 || arity >= 28; if (t2) return H.Closure_cspForwardInterceptedCall(arity, !t1, stubName, $function); if (arity === 1) { t1 = "return function(){return this." + selfField + "." + H.S(stubName) + "(this." + receiverField + ");"; t2 = $.Closure_functionCounter; $.Closure_functionCounter = t2 + 1; return new Function(t1 + H.S(t2) + "}")(); } $arguments = "abcdefghijklmnopqrstuvwxyz".split("").splice(0, arity - 1).join(","); t1 = "return function(" + $arguments + "){return this." + selfField + "." + H.S(stubName) + "(this." + receiverField + ", " + $arguments + ");"; t2 = $.Closure_functionCounter; $.Closure_functionCounter = t2 + 1; return new Function(t1 + H.S(t2) + "}")(); }, closureFromTearOff: function(receiver, functions, applyTrampolineIndex, reflectionInfo, isStatic, isIntercepted, $name) { return H.Closure_fromTearOff(receiver, functions, applyTrampolineIndex, reflectionInfo, !!isStatic, !!isIntercepted, $name); }, BoundClosure_evalRecipe: function(closure, recipe) { return H._Universe_evalInEnvironment(init.typeUniverse, H.instanceType(closure._self), recipe); }, BoundClosure_evalRecipeIntercepted: function(closure, recipe) { return H._Universe_evalInEnvironment(init.typeUniverse, H.instanceType(closure._receiver), recipe); }, BoundClosure_selfOf: function(closure) { return closure._self; }, BoundClosure_receiverOf: function(closure) { return closure._receiver; }, BoundClosure_computeFieldNamed: function(fieldName) { var t1, i, $name, template = new H.BoundClosure("self", "target", "receiver", "name"), names = J.JSArray_markFixedList(Object.getOwnPropertyNames(template)); for (t1 = names.length, i = 0; i < t1; ++i) { $name = names[i]; if (template[$name] === fieldName) return $name; } throw H.wrapException(P.ArgumentError$("Field name " + fieldName + " not found.")); }, assertThrow: function(message) { throw H.wrapException(new H._AssertionError(message)); }, throwCyclicInit: function(staticName) { throw H.wrapException(new P.CyclicInitializationError(staticName)); }, getIsolateAffinityTag: function($name) { return init.getIsolateTag($name); }, assertUnreachable: function() { throw H.wrapException(new H._UnreachableError(null)); }, throwLateInitializationError: function($name) { return H.throwExpression(new H.LateError($name)); }, JsLinkedHashMap_JsLinkedHashMap$es6: function($K, $V) { return new H.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>")); }, defineProperty: function(obj, property, value) { Object.defineProperty(obj, property, {value: value, enumerable: false, writable: true, configurable: true}); }, lookupAndCacheInterceptor: function(obj) { var interceptor, interceptorClass, altTag, mark, t1, tag = $.getTagFunction.call$1(obj), record = $.dispatchRecordsForInstanceTags[tag]; if (record != null) { Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } interceptor = $.interceptorsForUncacheableTags[tag]; if (interceptor != null) return interceptor; interceptorClass = init.interceptorsByTag[tag]; if (interceptorClass == null) { altTag = $.alternateTagFunction.call$2(obj, tag); if (altTag != null) { record = $.dispatchRecordsForInstanceTags[altTag]; if (record != null) { Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } interceptor = $.interceptorsForUncacheableTags[altTag]; if (interceptor != null) return interceptor; interceptorClass = init.interceptorsByTag[altTag]; tag = altTag; } } if (interceptorClass == null) return null; interceptor = interceptorClass.prototype; mark = tag[0]; if (mark === "!") { record = H.makeLeafDispatchRecord(interceptor); $.dispatchRecordsForInstanceTags[tag] = record; Object.defineProperty(obj, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); return record.i; } if (mark === "~") { $.interceptorsForUncacheableTags[tag] = interceptor; return interceptor; } if (mark === "-") { t1 = H.makeLeafDispatchRecord(interceptor); Object.defineProperty(Object.getPrototypeOf(obj), init.dispatchPropertyName, {value: t1, enumerable: false, writable: true, configurable: true}); return t1.i; } if (mark === "+") return H.patchInteriorProto(obj, interceptor); if (mark === "*") throw H.wrapException(P.UnimplementedError$(tag)); if (init.leafTags[tag] === true) { t1 = H.makeLeafDispatchRecord(interceptor); Object.defineProperty(Object.getPrototypeOf(obj), init.dispatchPropertyName, {value: t1, enumerable: false, writable: true, configurable: true}); return t1.i; } else return H.patchInteriorProto(obj, interceptor); }, patchInteriorProto: function(obj, interceptor) { var proto = Object.getPrototypeOf(obj); Object.defineProperty(proto, init.dispatchPropertyName, {value: J.makeDispatchRecord(interceptor, proto, null, null), enumerable: false, writable: true, configurable: true}); return interceptor; }, makeLeafDispatchRecord: function(interceptor) { return J.makeDispatchRecord(interceptor, false, null, !!interceptor.$isJavaScriptIndexingBehavior); }, makeDefaultDispatchRecord: function(tag, interceptorClass, proto) { var interceptor = interceptorClass.prototype; if (init.leafTags[tag] === true) return H.makeLeafDispatchRecord(interceptor); else return J.makeDispatchRecord(interceptor, proto, null, null); }, initNativeDispatch: function() { if (true === $.initNativeDispatchFlag) return; $.initNativeDispatchFlag = true; H.initNativeDispatchContinue(); }, initNativeDispatchContinue: function() { var map, tags, fun, i, tag, proto, record, interceptorClass; $.dispatchRecordsForInstanceTags = Object.create(null); $.interceptorsForUncacheableTags = Object.create(null); H.initHooks(); map = init.interceptorsByTag; tags = Object.getOwnPropertyNames(map); if (typeof window != "undefined") { window; fun = function() { }; for (i = 0; i < tags.length; ++i) { tag = tags[i]; proto = $.prototypeForTagFunction.call$1(tag); if (proto != null) { record = H.makeDefaultDispatchRecord(tag, map[tag], proto); if (record != null) { Object.defineProperty(proto, init.dispatchPropertyName, {value: record, enumerable: false, writable: true, configurable: true}); fun.prototype = proto; } } } } for (i = 0; i < tags.length; ++i) { tag = tags[i]; if (/^[A-Za-z_]/.test(tag)) { interceptorClass = map[tag]; map["!" + tag] = interceptorClass; map["~" + tag] = interceptorClass; map["-" + tag] = interceptorClass; map["+" + tag] = interceptorClass; map["*" + tag] = interceptorClass; } } }, initHooks: function() { var transformers, i, transformer, getTag, getUnknownTag, prototypeForTag, hooks = C.C_JS_CONST0(); hooks = H.applyHooksTransformer(C.C_JS_CONST1, H.applyHooksTransformer(C.C_JS_CONST2, H.applyHooksTransformer(C.C_JS_CONST3, H.applyHooksTransformer(C.C_JS_CONST3, H.applyHooksTransformer(C.C_JS_CONST4, H.applyHooksTransformer(C.C_JS_CONST5, H.applyHooksTransformer(C.C_JS_CONST6(C.C_JS_CONST), hooks))))))); if (typeof dartNativeDispatchHooksTransformer != "undefined") { transformers = dartNativeDispatchHooksTransformer; if (typeof transformers == "function") transformers = [transformers]; if (transformers.constructor == Array) for (i = 0; i < transformers.length; ++i) { transformer = transformers[i]; if (typeof transformer == "function") hooks = transformer(hooks) || hooks; } } getTag = hooks.getTag; getUnknownTag = hooks.getUnknownTag; prototypeForTag = hooks.prototypeForTag; $.getTagFunction = new H.initHooks_closure(getTag); $.alternateTagFunction = new H.initHooks_closure0(getUnknownTag); $.prototypeForTagFunction = new H.initHooks_closure1(prototypeForTag); }, applyHooksTransformer: function(transformer, hooks) { return transformer(hooks) || hooks; }, JSSyntaxRegExp_makeNative: function(source, multiLine, caseSensitive, unicode, dotAll, global) { var m = multiLine ? "m" : "", i = caseSensitive ? "" : "i", u = unicode ? "u" : "", s = dotAll ? "s" : "", g = global ? "g" : "", regexp = function(source, modifiers) { try { return new RegExp(source, modifiers); } catch (e) { return e; } }(source, m + i + u + s + g); if (regexp instanceof RegExp) return regexp; throw H.wrapException(P.FormatException$("Illegal RegExp pattern (" + String(regexp) + ")", source, null)); }, stringContainsUnchecked: function(receiver, other, startIndex) { var t1, t2; if (typeof other == "string") return receiver.indexOf(other, startIndex) >= 0; else if (other instanceof H.JSSyntaxRegExp) { t1 = C.JSString_methods.substring$1(receiver, startIndex); t2 = other._nativeRegExp; return t2.test(t1); } else { t1 = J.allMatches$1$s(other, C.JSString_methods.substring$1(receiver, startIndex)); return !t1.get$isEmpty(t1); } }, escapeReplacement: function(replacement) { if (replacement.indexOf("$", 0) >= 0) return replacement.replace(/\$/g, "$$$$"); return replacement; }, stringReplaceFirstRE: function(receiver, regexp, replacement, startIndex) { var match = regexp._execGlobal$2(receiver, startIndex); if (match == null) return receiver; return H.stringReplaceRangeUnchecked(receiver, match._match.index, match.get$end(match), replacement); }, quoteStringForRegExp: function(string) { if (/[[\]{}()*+?.\\^$|]/.test(string)) return string.replace(/[[\]{}()*+?.\\^$|]/g, "\\$&"); return string; }, stringReplaceAllUnchecked: function(receiver, pattern, replacement) { var nativeRegexp; if (typeof pattern == "string") return H.stringReplaceAllUncheckedString(receiver, pattern, replacement); if (pattern instanceof H.JSSyntaxRegExp) { nativeRegexp = pattern.get$_nativeGlobalVersion(); nativeRegexp.lastIndex = 0; return receiver.replace(nativeRegexp, H.escapeReplacement(replacement)); } if (pattern == null) H.throwExpression(H.argumentErrorValue(pattern)); throw H.wrapException("String.replaceAll(Pattern) UNIMPLEMENTED"); }, stringReplaceAllUncheckedString: function(receiver, pattern, replacement) { var $length, t1, i, index; if (pattern === "") { if (receiver === "") return replacement; $length = receiver.length; for (t1 = replacement, i = 0; i < $length; ++i) t1 = t1 + receiver[i] + replacement; return t1.charCodeAt(0) == 0 ? t1 : t1; } index = receiver.indexOf(pattern, 0); if (index < 0) return receiver; if (receiver.length < 500 || replacement.indexOf("$", 0) >= 0) return receiver.split(pattern).join(replacement); return receiver.replace(new RegExp(H.quoteStringForRegExp(pattern), 'g'), H.escapeReplacement(replacement)); }, _matchString: function(match) { return match.$index(0, 0); }, _stringIdentity: function(string) { return string; }, stringReplaceAllFuncUnchecked: function(receiver, pattern, onMatch, onNonMatch) { var t1, startIndex, t2, match; if (onMatch == null) onMatch = H._js_helper___matchString$closure(); if (onNonMatch == null) onNonMatch = H._js_helper___stringIdentity$closure(); if (typeof pattern == "string") return H.stringReplaceAllStringFuncUnchecked(receiver, pattern, onMatch, onNonMatch); if (!type$.Pattern._is(pattern)) throw H.wrapException(P.ArgumentError$value(pattern, "pattern", "is not a Pattern")); for (t1 = J.allMatches$1$s(pattern, receiver), t1 = t1.get$iterator(t1), startIndex = 0, t2 = ""; t1.moveNext$0();) { match = t1.get$current(t1); t2 = t2 + H.S(onNonMatch.call$1(C.JSString_methods.substring$2(receiver, startIndex, match.get$start(match)))) + H.S(onMatch.call$1(match)); startIndex = match.get$end(match); } t1 = t2 + H.S(onNonMatch.call$1(C.JSString_methods.substring$1(receiver, startIndex))); return t1.charCodeAt(0) == 0 ? t1 : t1; }, stringReplaceAllEmptyFuncUnchecked: function(receiver, onMatch, onNonMatch) { var i, i0, $length = receiver.length, t1 = H.S(onNonMatch.call$1("")); for (i = 0; i < $length;) { t1 += H.S(onMatch.call$1(new H.StringMatch(i, ""))); if ((C.JSString_methods._codeUnitAt$1(receiver, i) & 4294966272) === 55296 && $length > i + 1) if ((C.JSString_methods._codeUnitAt$1(receiver, i + 1) & 4294966272) === 56320) { i0 = i + 2; t1 += H.S(onNonMatch.call$1(C.JSString_methods.substring$2(receiver, i, i0))); i = i0; continue; } t1 += H.S(onNonMatch.call$1(receiver[i])); ++i; } t1 = t1 + H.S(onMatch.call$1(new H.StringMatch(i, ""))) + H.S(onNonMatch.call$1("")); return t1.charCodeAt(0) == 0 ? t1 : t1; }, stringReplaceAllStringFuncUnchecked: function(receiver, pattern, onMatch, onNonMatch) { var $length, startIndex, t1, position, patternLength = pattern.length; if (patternLength === 0) return H.stringReplaceAllEmptyFuncUnchecked(receiver, onMatch, onNonMatch); $length = receiver.length; for (startIndex = 0, t1 = ""; startIndex < $length;) { position = receiver.indexOf(pattern, startIndex); if (position === -1) break; t1 = t1 + H.S(onNonMatch.call$1(C.JSString_methods.substring$2(receiver, startIndex, position))) + H.S(onMatch.call$1(new H.StringMatch(position, pattern))); startIndex = position + patternLength; } t1 += H.S(onNonMatch.call$1(C.JSString_methods.substring$1(receiver, startIndex))); return t1.charCodeAt(0) == 0 ? t1 : t1; }, stringReplaceFirstUnchecked: function(receiver, pattern, replacement, startIndex) { var index, t1, matches, match; if (typeof pattern == "string") { index = receiver.indexOf(pattern, startIndex); if (index < 0) return receiver; return H.stringReplaceRangeUnchecked(receiver, index, index + pattern.length, replacement); } if (pattern instanceof H.JSSyntaxRegExp) return startIndex === 0 ? receiver.replace(pattern._nativeRegExp, H.escapeReplacement(replacement)) : H.stringReplaceFirstRE(receiver, pattern, replacement, startIndex); if (pattern == null) H.throwExpression(H.argumentErrorValue(pattern)); t1 = J.allMatches$2$s(pattern, receiver, startIndex); matches = t1.get$iterator(t1); if (!matches.moveNext$0()) return receiver; match = matches.get$current(matches); return C.JSString_methods.replaceRange$3(receiver, match.get$start(match), match.get$end(match), replacement); }, stringReplaceRangeUnchecked: function(receiver, start, end, replacement) { var prefix = receiver.substring(0, start), suffix = receiver.substring(end); return prefix + H.S(replacement) + suffix; }, ConstantMapView: function ConstantMapView(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, ConstantMap: function ConstantMap() { }, ConstantMap_map_closure: function ConstantMap_map_closure(t0, t1, t2) { this.$this = t0; this.transform = t1; this.result = t2; }, ConstantStringMap: function ConstantStringMap(t0, t1, t2, t3) { var _ = this; _.__js_helper$_length = t0; _.__js_helper$_jsObject = t1; _._keys = t2; _.$ti = t3; }, ConstantStringMap_values_closure: function ConstantStringMap_values_closure(t0) { this.$this = t0; }, _ConstantMapKeyIterable: function _ConstantMapKeyIterable(t0, t1) { this._map = t0; this.$ti = t1; }, GeneralConstantMap: function GeneralConstantMap(t0, t1) { this._jsData = t0; this.$ti = t1; }, Instantiation: function Instantiation() { }, Instantiation1: function Instantiation1(t0, t1) { this._genericClosure = t0; this.$ti = t1; }, JSInvocationMirror: function JSInvocationMirror(t0, t1, t2, t3, t4) { var _ = this; _.__js_helper$_memberName = t0; _.__js_helper$_kind = t1; _._arguments = t2; _._namedArgumentNames = t3; _._typeArgumentCount = t4; }, Primitives_initTicker_closure: function Primitives_initTicker_closure(t0) { this.performance = t0; }, Primitives_functionNoSuchMethod_closure: function Primitives_functionNoSuchMethod_closure(t0, t1, t2) { this._box_0 = t0; this.namedArgumentList = t1; this.$arguments = t2; }, TypeErrorDecoder: function TypeErrorDecoder(t0, t1, t2, t3, t4, t5) { var _ = this; _._pattern = t0; _._arguments = t1; _._argumentsExpr = t2; _._expr = t3; _._method = t4; _._receiver = t5; }, NullError: function NullError(t0, t1) { this.__js_helper$_message = t0; this._method = t1; }, JsNoSuchMethodError: function JsNoSuchMethodError(t0, t1, t2) { this.__js_helper$_message = t0; this._method = t1; this._receiver = t2; }, UnknownJsTypeError: function UnknownJsTypeError(t0) { this.__js_helper$_message = t0; }, NullThrownFromJavaScriptException: function NullThrownFromJavaScriptException(t0) { this._irritant = t0; }, ExceptionAndStackTrace: function ExceptionAndStackTrace(t0, t1) { this.dartException = t0; this.stackTrace = t1; }, _StackTrace: function _StackTrace(t0) { this._exception = t0; this._trace = null; }, Closure: function Closure() { }, TearOffClosure: function TearOffClosure() { }, StaticClosure: function StaticClosure() { }, BoundClosure: function BoundClosure(t0, t1, t2, t3) { var _ = this; _._self = t0; _._target = t1; _._receiver = t2; _._name = t3; }, RuntimeError: function RuntimeError(t0) { this.message = t0; }, _AssertionError: function _AssertionError(t0) { this.message = t0; }, _UnreachableError: function _UnreachableError(t0) { this.message = t0; }, _Required: function _Required() { }, JsLinkedHashMap: function JsLinkedHashMap(t0) { var _ = this; _.__js_helper$_length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t0; }, JsLinkedHashMap_values_closure: function JsLinkedHashMap_values_closure(t0) { this.$this = t0; }, JsLinkedHashMap_containsValue_closure: function JsLinkedHashMap_containsValue_closure(t0, t1) { this.$this = t0; this.value = t1; }, JsLinkedHashMap_addAll_closure: function JsLinkedHashMap_addAll_closure(t0) { this.$this = t0; }, LinkedHashMapCell: function LinkedHashMapCell(t0, t1) { var _ = this; _.hashMapCellKey = t0; _.hashMapCellValue = t1; _._previous = _._next = null; }, LinkedHashMapKeyIterable: function LinkedHashMapKeyIterable(t0, t1) { this._map = t0; this.$ti = t1; }, LinkedHashMapKeyIterator: function LinkedHashMapKeyIterator(t0, t1, t2) { var _ = this; _._map = t0; _._modifications = t1; _._current = _._cell = null; _.$ti = t2; }, initHooks_closure: function initHooks_closure(t0) { this.getTag = t0; }, initHooks_closure0: function initHooks_closure0(t0) { this.getUnknownTag = t0; }, initHooks_closure1: function initHooks_closure1(t0) { this.prototypeForTag = t0; }, JSSyntaxRegExp: function JSSyntaxRegExp(t0, t1) { var _ = this; _.pattern = t0; _._nativeRegExp = t1; _._nativeAnchoredRegExp = _._nativeGlobalRegExp = null; }, _MatchImplementation: function _MatchImplementation(t0) { this._match = t0; }, _AllMatchesIterable: function _AllMatchesIterable(t0, t1, t2) { this._re = t0; this._string = t1; this.__js_helper$_start = t2; }, _AllMatchesIterator: function _AllMatchesIterator(t0, t1, t2) { var _ = this; _._regExp = t0; _._string = t1; _._nextIndex = t2; _._current = null; }, StringMatch: function StringMatch(t0, t1) { this.start = t0; this.pattern = t1; }, _StringAllMatchesIterable: function _StringAllMatchesIterable(t0, t1, t2) { this._input = t0; this._pattern = t1; this._index = t2; }, _StringAllMatchesIterator: function _StringAllMatchesIterator(t0, t1, t2) { var _ = this; _._input = t0; _._pattern = t1; _._index = t2; _._current = null; }, _checkViewArguments: function(buffer, offsetInBytes, $length) { if (!H._isInt(offsetInBytes)) throw H.wrapException(P.ArgumentError$("Invalid view offsetInBytes " + H.S(offsetInBytes))); }, _ensureNativeList: function(list) { var t1, result, i; if (type$.JSIndexable_dynamic._is(list)) return list; t1 = J.getInterceptor$asx(list); result = P.List_List$filled(t1.get$length(list), null, false, type$.dynamic); for (i = 0; i < t1.get$length(list); ++i) result[i] = t1.$index(list, i); return result; }, NativeByteData_NativeByteData$view: function(buffer, offsetInBytes, $length) { H._checkViewArguments(buffer, offsetInBytes, $length); return $length == null ? new DataView(buffer, offsetInBytes) : new DataView(buffer, offsetInBytes, $length); }, NativeFloat32List_NativeFloat32List: function($length) { return new Float32Array($length); }, NativeFloat64List_NativeFloat64List$view: function(buffer, offsetInBytes, $length) { H._checkViewArguments(buffer, offsetInBytes, $length); if ($length == null) $length = C.JSInt_methods._tdivFast$1(buffer.byteLength - offsetInBytes, 8); return new Float64Array(buffer, offsetInBytes, $length); }, NativeInt32List_NativeInt32List: function($length) { return new Int32Array($length); }, NativeInt32List_NativeInt32List$view: function(buffer, offsetInBytes, $length) { H._checkViewArguments(buffer, offsetInBytes, $length); if ($length == null) $length = C.JSInt_methods._tdivFast$1(buffer.byteLength - offsetInBytes, 4); return new Int32Array(buffer, offsetInBytes, $length); }, NativeInt8List__create1: function(arg) { return new Int8Array(arg); }, NativeUint16List_NativeUint16List$fromList: function(list) { return new Uint16Array(H._ensureNativeList(list)); }, NativeUint8List_NativeUint8List: function($length) { return new Uint8Array($length); }, NativeUint8List_NativeUint8List$view: function(buffer, offsetInBytes, $length) { H._checkViewArguments(buffer, offsetInBytes, $length); return $length == null ? new Uint8Array(buffer, offsetInBytes) : new Uint8Array(buffer, offsetInBytes, $length); }, _checkValidIndex: function(index, list, $length) { if (index >>> 0 !== index || index >= $length) throw H.wrapException(H.diagnoseIndexError(list, index)); }, _checkValidRange: function(start, end, $length) { var t1; if (!(start >>> 0 !== start)) if (end == null) t1 = start > $length; else t1 = end >>> 0 !== end || start > end || end > $length; else t1 = true; if (t1) throw H.wrapException(H.diagnoseRangeError(start, end, $length)); if (end == null) return $length; return end; }, NativeByteBuffer: function NativeByteBuffer() { }, NativeTypedData: function NativeTypedData() { }, NativeByteData: function NativeByteData() { }, NativeTypedArray: function NativeTypedArray() { }, NativeTypedArrayOfDouble: function NativeTypedArrayOfDouble() { }, NativeTypedArrayOfInt: function NativeTypedArrayOfInt() { }, NativeFloat32List: function NativeFloat32List() { }, NativeFloat64List: function NativeFloat64List() { }, NativeInt16List: function NativeInt16List() { }, NativeInt32List: function NativeInt32List() { }, NativeInt8List: function NativeInt8List() { }, NativeUint16List: function NativeUint16List() { }, NativeUint32List: function NativeUint32List() { }, NativeUint8ClampedList: function NativeUint8ClampedList() { }, NativeUint8List: function NativeUint8List() { }, _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin: function _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin() { }, _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin: function _NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin() { }, _NativeTypedArrayOfInt_NativeTypedArray_ListMixin: function _NativeTypedArrayOfInt_NativeTypedArray_ListMixin() { }, _NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin: function _NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin() { }, Rti__getQuestionFromStar: function(universe, rti) { var question = rti._precomputed1; return question == null ? rti._precomputed1 = H._Universe__lookupQuestionRti(universe, rti._primary, true) : question; }, Rti__getFutureFromFutureOr: function(universe, rti) { var future = rti._precomputed1; return future == null ? rti._precomputed1 = H._Universe__lookupInterfaceRti(universe, "Future", [rti._primary]) : future; }, Rti__isUnionOfFunctionType: function(rti) { var kind = rti._kind; if (kind === 6 || kind === 7 || kind === 8) return H.Rti__isUnionOfFunctionType(rti._primary); return kind === 11 || kind === 12; }, Rti__getCanonicalRecipe: function(rti) { return rti._canonicalRecipe; }, findType: function(recipe) { return H._Universe_eval(init.typeUniverse, recipe, false); }, instantiatedGenericFunctionType: function(genericFunctionRti, instantiationRti) { var t1, cache, key, probe, rti; if (genericFunctionRti == null) return null; t1 = instantiationRti._rest; cache = genericFunctionRti._bindCache; if (cache == null) cache = genericFunctionRti._bindCache = new Map(); key = instantiationRti._canonicalRecipe; probe = cache.get(key); if (probe != null) return probe; rti = H._substitute(init.typeUniverse, genericFunctionRti._primary, t1, 0); cache.set(key, rti); return rti; }, _substitute: function(universe, rti, typeArguments, depth) { var baseType, substitutedBaseType, interfaceTypeArguments, substitutedInterfaceTypeArguments, base, substitutedBase, $arguments, substitutedArguments, returnType, substitutedReturnType, functionParameters, substitutedFunctionParameters, bounds, substitutedBounds, index, argument, kind = rti._kind; switch (kind) { case 5: case 1: case 2: case 3: case 4: return rti; case 6: baseType = rti._primary; substitutedBaseType = H._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return H._Universe__lookupStarRti(universe, substitutedBaseType, true); case 7: baseType = rti._primary; substitutedBaseType = H._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return H._Universe__lookupQuestionRti(universe, substitutedBaseType, true); case 8: baseType = rti._primary; substitutedBaseType = H._substitute(universe, baseType, typeArguments, depth); if (substitutedBaseType === baseType) return rti; return H._Universe__lookupFutureOrRti(universe, substitutedBaseType, true); case 9: interfaceTypeArguments = rti._rest; substitutedInterfaceTypeArguments = H._substituteArray(universe, interfaceTypeArguments, typeArguments, depth); if (substitutedInterfaceTypeArguments === interfaceTypeArguments) return rti; return H._Universe__lookupInterfaceRti(universe, rti._primary, substitutedInterfaceTypeArguments); case 10: base = rti._primary; substitutedBase = H._substitute(universe, base, typeArguments, depth); $arguments = rti._rest; substitutedArguments = H._substituteArray(universe, $arguments, typeArguments, depth); if (substitutedBase === base && substitutedArguments === $arguments) return rti; return H._Universe__lookupBindingRti(universe, substitutedBase, substitutedArguments); case 11: returnType = rti._primary; substitutedReturnType = H._substitute(universe, returnType, typeArguments, depth); functionParameters = rti._rest; substitutedFunctionParameters = H._substituteFunctionParameters(universe, functionParameters, typeArguments, depth); if (substitutedReturnType === returnType && substitutedFunctionParameters === functionParameters) return rti; return H._Universe__lookupFunctionRti(universe, substitutedReturnType, substitutedFunctionParameters); case 12: bounds = rti._rest; depth += bounds.length; substitutedBounds = H._substituteArray(universe, bounds, typeArguments, depth); base = rti._primary; substitutedBase = H._substitute(universe, base, typeArguments, depth); if (substitutedBounds === bounds && substitutedBase === base) return rti; return H._Universe__lookupGenericFunctionRti(universe, substitutedBase, substitutedBounds, true); case 13: index = rti._primary; if (index < depth) return rti; argument = typeArguments[index - depth]; if (argument == null) return rti; return argument; default: throw H.wrapException(P.AssertionError$("Attempted to substitute unexpected RTI kind " + kind)); } }, _substituteArray: function(universe, rtiArray, typeArguments, depth) { var changed, i, rti, substitutedRti, $length = rtiArray.length, result = []; for (changed = false, i = 0; i < $length; ++i) { rti = rtiArray[i]; substitutedRti = H._substitute(universe, rti, typeArguments, depth); if (substitutedRti !== rti) changed = true; result.push(substitutedRti); } return changed ? result : rtiArray; }, _substituteNamed: function(universe, namedArray, typeArguments, depth) { var changed, i, t1, t2, rti, substitutedRti, $length = namedArray.length, result = []; for (changed = false, i = 0; i < $length; i += 3) { t1 = namedArray[i]; t2 = namedArray[i + 1]; rti = namedArray[i + 2]; substitutedRti = H._substitute(universe, rti, typeArguments, depth); if (substitutedRti !== rti) changed = true; result.push(t1); result.push(t2); result.push(substitutedRti); } return changed ? result : namedArray; }, _substituteFunctionParameters: function(universe, functionParameters, typeArguments, depth) { var result, requiredPositional = functionParameters._requiredPositional, substitutedRequiredPositional = H._substituteArray(universe, requiredPositional, typeArguments, depth), optionalPositional = functionParameters._optionalPositional, substitutedOptionalPositional = H._substituteArray(universe, optionalPositional, typeArguments, depth), named = functionParameters._named, substitutedNamed = H._substituteNamed(universe, named, typeArguments, depth); if (substitutedRequiredPositional === requiredPositional && substitutedOptionalPositional === optionalPositional && substitutedNamed === named) return functionParameters; result = new H._FunctionParameters(); result._requiredPositional = substitutedRequiredPositional; result._optionalPositional = substitutedOptionalPositional; result._named = substitutedNamed; return result; }, setRuntimeTypeInfo: function(target, rti) { target[init.arrayRti] = rti; return target; }, closureFunctionType: function(closure) { var signature = closure.$signature; if (signature != null) { if (typeof signature == "number") return H.getTypeFromTypesTable(signature); return closure.$signature(); } return null; }, instanceOrFunctionType: function(object, testRti) { var rti; if (H.Rti__isUnionOfFunctionType(testRti)) if (object instanceof H.Closure) { rti = H.closureFunctionType(object); if (rti != null) return rti; } return H.instanceType(object); }, instanceType: function(object) { var rti; if (object instanceof P.Object) { rti = object.$ti; return rti != null ? rti : H._instanceTypeFromConstructor(object); } if (Array.isArray(object)) return H._arrayInstanceType(object); return H._instanceTypeFromConstructor(J.getInterceptor$(object)); }, _arrayInstanceType: function(object) { var rti = object[init.arrayRti], defaultRti = type$.JSArray_dynamic; if (rti == null) return defaultRti; if (rti.constructor !== defaultRti.constructor) return defaultRti; return rti; }, _instanceType: function(object) { var rti = object.$ti; return rti != null ? rti : H._instanceTypeFromConstructor(object); }, _instanceTypeFromConstructor: function(instance) { var $constructor = instance.constructor, probe = $constructor.$ccache; if (probe != null) return probe; return H._instanceTypeFromConstructorMiss(instance, $constructor); }, _instanceTypeFromConstructorMiss: function(instance, $constructor) { var effectiveConstructor = instance instanceof H.Closure ? instance.__proto__.__proto__.constructor : $constructor, rti = H._Universe_findErasedType(init.typeUniverse, effectiveConstructor.name); $constructor.$ccache = rti; return rti; }, getTypeFromTypesTable: function(index) { var rti, table = init.types, type = table[index]; if (typeof type == "string") { rti = H._Universe_eval(init.typeUniverse, type, false); table[index] = rti; return rti; } return type; }, getRuntimeType: function(object) { var rti = object instanceof H.Closure ? H.closureFunctionType(object) : null; return H.createRuntimeType(rti == null ? H.instanceType(object) : rti); }, createRuntimeType: function(rti) { var recipe, starErasedRecipe, starErasedRti, type = rti._cachedRuntimeType; if (type != null) return type; recipe = rti._canonicalRecipe; starErasedRecipe = recipe.replace(/\*/g, ""); if (starErasedRecipe === recipe) return rti._cachedRuntimeType = new H._Type(rti); starErasedRti = H._Universe_eval(init.typeUniverse, starErasedRecipe, true); type = starErasedRti._cachedRuntimeType; return rti._cachedRuntimeType = type == null ? starErasedRti._cachedRuntimeType = new H._Type(starErasedRti) : type; }, typeLiteral: function(recipe) { return H.createRuntimeType(H._Universe_eval(init.typeUniverse, recipe, false)); }, _installSpecializedIsTest: function(object) { var unstarred, isFn, testRti = this, t1 = type$.Object; if (testRti === t1) return H._finishIsFn(testRti, object, H._isObject); if (!H.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) t1 = testRti === t1; else t1 = true; else t1 = true; if (t1) return H._finishIsFn(testRti, object, H._isTop); t1 = testRti._kind; unstarred = t1 === 6 ? testRti._primary : testRti; if (unstarred === type$.int) isFn = H._isInt; else if (unstarred === type$.double || unstarred === type$.num) isFn = H._isNum; else if (unstarred === type$.String) isFn = H._isString; else isFn = unstarred === type$.bool ? H._isBool : null; if (isFn != null) return H._finishIsFn(testRti, object, isFn); if (unstarred._kind === 9) { t1 = unstarred._primary; if (unstarred._rest.every(H.isTopType)) { testRti._specializedTestResource = "$is" + t1; return H._finishIsFn(testRti, object, H._isTestViaProperty); } } else if (t1 === 7) return H._finishIsFn(testRti, object, H._generalNullableIsTestImplementation); return H._finishIsFn(testRti, object, H._generalIsTestImplementation); }, _finishIsFn: function(testRti, object, isFn) { testRti._is = isFn; return testRti._is(object); }, _installSpecializedAsCheck: function(object) { var t1, asFn, testRti = this; if (!H.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) t1 = testRti === type$.Object; else t1 = true; else t1 = true; if (t1) asFn = H._asTop; else if (testRti === type$.Object) asFn = H._asObject; else asFn = H._generalNullableAsCheckImplementation; testRti._as = asFn; return testRti._as(object); }, _nullIs: function(testRti) { var t1, kind = testRti._kind; if (!H.isStrongTopType(testRti)) if (!(testRti === type$.legacy_Object)) if (!(testRti === type$.legacy_Never)) if (kind !== 7) t1 = kind === 8 && H._nullIs(testRti._primary) || testRti === type$.Null || testRti === type$.JSNull; else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; }, _generalIsTestImplementation: function(object) { var testRti = this; if (object == null) return H._nullIs(testRti); return H._isSubtype(init.typeUniverse, H.instanceOrFunctionType(object, testRti), null, testRti, null); }, _generalNullableIsTestImplementation: function(object) { if (object == null) return true; return this._primary._is(object); }, _isTestViaProperty: function(object) { var tag, testRti = this; if (object == null) return H._nullIs(testRti); tag = testRti._specializedTestResource; if (object instanceof P.Object) return !!object[tag]; return !!J.getInterceptor$(object)[tag]; }, _generalAsCheckImplementation: function(object) { var testRti = this; if (object == null) return object; else if (testRti._is(object)) return object; H._failedAsCheck(object, testRti); }, _generalNullableAsCheckImplementation: function(object) { var testRti = this; if (object == null) return object; else if (testRti._is(object)) return object; H._failedAsCheck(object, testRti); }, _failedAsCheck: function(object, testRti) { throw H.wrapException(H._TypeError$fromMessage(H._Error_compose(object, H.instanceOrFunctionType(object, testRti), H._rtiToString(testRti, null)))); }, _Error_compose: function(object, objectRti, checkedTypeDescription) { var objectDescription = P.Error_safeToString(object), objectTypeDescription = H._rtiToString(objectRti == null ? H.instanceType(object) : objectRti, null); return objectDescription + ": type '" + H.S(objectTypeDescription) + "' is not a subtype of type '" + H.S(checkedTypeDescription) + "'"; }, _TypeError$fromMessage: function(message) { return new H._TypeError("TypeError: " + message); }, _TypeError__TypeError$forType: function(object, type) { return new H._TypeError("TypeError: " + H._Error_compose(object, null, type)); }, _isObject: function(object) { return object != null; }, _asObject: function(object) { return object; }, _isTop: function(object) { return true; }, _asTop: function(object) { return object; }, _isBool: function(object) { return true === object || false === object; }, _asBool: function(object) { if (true === object) return true; if (false === object) return false; throw H.wrapException(H._TypeError__TypeError$forType(object, "bool")); }, _asBoolS: function(object) { if (true === object) return true; if (false === object) return false; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "bool")); }, _asBoolQ: function(object) { if (true === object) return true; if (false === object) return false; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "bool?")); }, _asDouble: function(object) { if (typeof object == "number") return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "double")); }, _asDoubleS: function(object) { if (typeof object == "number") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "double")); }, _asDoubleQ: function(object) { if (typeof object == "number") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "double?")); }, _isInt: function(object) { return typeof object == "number" && Math.floor(object) === object; }, _asInt: function(object) { if (typeof object == "number" && Math.floor(object) === object) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "int")); }, _asIntS: function(object) { if (typeof object == "number" && Math.floor(object) === object) return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "int")); }, _asIntQ: function(object) { if (typeof object == "number" && Math.floor(object) === object) return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "int?")); }, _isNum: function(object) { return typeof object == "number"; }, _asNum: function(object) { if (typeof object == "number") return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "num")); }, _asNumS: function(object) { if (typeof object == "number") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "num")); }, _asNumQ: function(object) { if (typeof object == "number") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "num?")); }, _isString: function(object) { return typeof object == "string"; }, _asString: function(object) { if (typeof object == "string") return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "String")); }, _asStringS: function(object) { if (typeof object == "string") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "String")); }, _asStringQ: function(object) { if (typeof object == "string") return object; if (object == null) return object; throw H.wrapException(H._TypeError__TypeError$forType(object, "String?")); }, _rtiArrayToString: function(array, genericContext) { var s, sep, i; for (s = "", sep = "", i = 0; i < array.length; ++i, sep = ", ") s += C.JSString_methods.$add(sep, H._rtiToString(array[i], genericContext)); return s; }, _functionRtiToString: function(functionType, genericContext, bounds) { var boundsLength, outerContextLength, offset, i, t1, t2, t3, typeParametersText, typeSep, boundRti, kind, t4, parameters, requiredPositional, requiredPositionalLength, optionalPositional, optionalPositionalLength, named, namedLength, returnTypeText, argumentsText, sep, _s2_ = ", "; if (bounds != null) { boundsLength = bounds.length; if (genericContext == null) { genericContext = H.setRuntimeTypeInfo([], type$.JSArray_String); outerContextLength = null; } else outerContextLength = genericContext.length; offset = genericContext.length; for (i = boundsLength; i > 0; --i) genericContext.push("T" + (offset + i)); for (t1 = type$.nullable_Object, t2 = type$.legacy_Object, t3 = type$.Object, typeParametersText = "<", typeSep = "", i = 0; i < boundsLength; ++i, typeSep = _s2_) { typeParametersText = C.JSString_methods.$add(typeParametersText + typeSep, genericContext[genericContext.length - 1 - i]); boundRti = bounds[i]; kind = boundRti._kind; if (!(kind === 2 || kind === 3 || kind === 4 || kind === 5 || boundRti === t1)) if (!(boundRti === t2)) t4 = boundRti === t3; else t4 = true; else t4 = true; if (!t4) typeParametersText += C.JSString_methods.$add(" extends ", H._rtiToString(boundRti, genericContext)); } typeParametersText += ">"; } else { typeParametersText = ""; outerContextLength = null; } t1 = functionType._primary; parameters = functionType._rest; requiredPositional = parameters._requiredPositional; requiredPositionalLength = requiredPositional.length; optionalPositional = parameters._optionalPositional; optionalPositionalLength = optionalPositional.length; named = parameters._named; namedLength = named.length; returnTypeText = H._rtiToString(t1, genericContext); for (argumentsText = "", sep = "", i = 0; i < requiredPositionalLength; ++i, sep = _s2_) argumentsText += C.JSString_methods.$add(sep, H._rtiToString(requiredPositional[i], genericContext)); if (optionalPositionalLength > 0) { argumentsText += sep + "["; for (sep = "", i = 0; i < optionalPositionalLength; ++i, sep = _s2_) argumentsText += C.JSString_methods.$add(sep, H._rtiToString(optionalPositional[i], genericContext)); argumentsText += "]"; } if (namedLength > 0) { argumentsText += sep + "{"; for (sep = "", i = 0; i < namedLength; i += 3, sep = _s2_) { argumentsText += sep; if (named[i + 1]) argumentsText += "required "; argumentsText += J.$add$ansx(H._rtiToString(named[i + 2], genericContext), " ") + named[i]; } argumentsText += "}"; } if (outerContextLength != null) { genericContext.toString; genericContext.length = outerContextLength; } return typeParametersText + "(" + argumentsText + ") => " + H.S(returnTypeText); }, _rtiToString: function(rti, genericContext) { var s, questionArgument, argumentKind, $name, $arguments, t1, kind = rti._kind; if (kind === 5) return "erased"; if (kind === 2) return "dynamic"; if (kind === 3) return "void"; if (kind === 1) return "Never"; if (kind === 4) return "any"; if (kind === 6) { s = H._rtiToString(rti._primary, genericContext); return s; } if (kind === 7) { questionArgument = rti._primary; s = H._rtiToString(questionArgument, genericContext); argumentKind = questionArgument._kind; return J.$add$ansx(argumentKind === 11 || argumentKind === 12 ? C.JSString_methods.$add("(", s) + ")" : s, "?"); } if (kind === 8) return "FutureOr<" + H.S(H._rtiToString(rti._primary, genericContext)) + ">"; if (kind === 9) { $name = H._unminifyOrTag(rti._primary); $arguments = rti._rest; return $arguments.length !== 0 ? $name + ("<" + H._rtiArrayToString($arguments, genericContext) + ">") : $name; } if (kind === 11) return H._functionRtiToString(rti, genericContext, null); if (kind === 12) return H._functionRtiToString(rti._primary, genericContext, rti._rest); if (kind === 13) { genericContext.toString; t1 = rti._primary; return genericContext[genericContext.length - 1 - t1]; } return "?"; }, _unminifyOrTag: function(rawClassName) { var preserved = H.unmangleGlobalNameIfPreservedAnyways(rawClassName); if (preserved != null) return preserved; return rawClassName; }, _Universe_findRule: function(universe, targetType) { var rule = universe.tR[targetType]; for (; typeof rule == "string";) rule = universe.tR[rule]; return rule; }, _Universe_findErasedType: function(universe, cls) { var $length, erased, $arguments, i, $interface, metadata = universe.eT, probe = metadata[cls]; if (probe == null) return H._Universe_eval(universe, cls, false); else if (typeof probe == "number") { $length = probe; erased = H._Universe__lookupTerminalRti(universe, 5, "#"); $arguments = []; for (i = 0; i < $length; ++i) $arguments.push(erased); $interface = H._Universe__lookupInterfaceRti(universe, cls, $arguments); metadata[cls] = $interface; return $interface; } else return probe; }, _Universe_addRules: function(universe, rules) { return H._Utils_objectAssign(universe.tR, rules); }, _Universe_addErasedTypes: function(universe, types) { return H._Utils_objectAssign(universe.eT, types); }, _Universe_eval: function(universe, recipe, normalize) { var rti, cache = universe.eC, probe = cache.get(recipe); if (probe != null) return probe; rti = H._Parser_parse(H._Parser_create(universe, null, recipe, normalize)); cache.set(recipe, rti); return rti; }, _Universe_evalInEnvironment: function(universe, environment, recipe) { var probe, rti, cache = environment._evalCache; if (cache == null) cache = environment._evalCache = new Map(); probe = cache.get(recipe); if (probe != null) return probe; rti = H._Parser_parse(H._Parser_create(universe, environment, recipe, true)); cache.set(recipe, rti); return rti; }, _Universe_bind: function(universe, environment, argumentsRti) { var argumentsRecipe, probe, rti, cache = environment._bindCache; if (cache == null) cache = environment._bindCache = new Map(); argumentsRecipe = argumentsRti._canonicalRecipe; probe = cache.get(argumentsRecipe); if (probe != null) return probe; rti = H._Universe__lookupBindingRti(universe, environment, argumentsRti._kind === 10 ? argumentsRti._rest : [argumentsRti]); cache.set(argumentsRecipe, rti); return rti; }, _Universe__installTypeTests: function(universe, rti) { rti._as = H._installSpecializedAsCheck; rti._is = H._installSpecializedIsTest; return rti; }, _Universe__lookupTerminalRti: function(universe, kind, key) { var rti, t1, probe = universe.eC.get(key); if (probe != null) return probe; rti = new H.Rti(null, null); rti._kind = kind; rti._canonicalRecipe = key; t1 = H._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupStarRti: function(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "*", probe = universe.eC.get(key); if (probe != null) return probe; t1 = H._Universe__createStarRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createStarRti: function(universe, baseType, key, normalize) { var baseKind, t1, rti; if (normalize) { baseKind = baseType._kind; if (!H.isStrongTopType(baseType)) t1 = baseType === type$.Null || baseType === type$.JSNull || baseKind === 7 || baseKind === 6; else t1 = true; if (t1) return baseType; } rti = new H.Rti(null, null); rti._kind = 6; rti._primary = baseType; rti._canonicalRecipe = key; return H._Universe__installTypeTests(universe, rti); }, _Universe__lookupQuestionRti: function(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "?", probe = universe.eC.get(key); if (probe != null) return probe; t1 = H._Universe__createQuestionRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createQuestionRti: function(universe, baseType, key, normalize) { var baseKind, t1, starArgument, rti; if (normalize) { baseKind = baseType._kind; if (!H.isStrongTopType(baseType)) if (!(baseType === type$.Null || baseType === type$.JSNull)) if (baseKind !== 7) t1 = baseKind === 8 && H.isNullable(baseType._primary); else t1 = true; else t1 = true; else t1 = true; if (t1) return baseType; else if (baseKind === 1 || baseType === type$.legacy_Never) return type$.Null; else if (baseKind === 6) { starArgument = baseType._primary; if (starArgument._kind === 8 && H.isNullable(starArgument._primary)) return starArgument; else return H.Rti__getQuestionFromStar(universe, baseType); } } rti = new H.Rti(null, null); rti._kind = 7; rti._primary = baseType; rti._canonicalRecipe = key; return H._Universe__installTypeTests(universe, rti); }, _Universe__lookupFutureOrRti: function(universe, baseType, normalize) { var t1, key = baseType._canonicalRecipe + "/", probe = universe.eC.get(key); if (probe != null) return probe; t1 = H._Universe__createFutureOrRti(universe, baseType, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createFutureOrRti: function(universe, baseType, key, normalize) { var t1, t2, rti; if (normalize) { t1 = baseType._kind; if (!H.isStrongTopType(baseType)) if (!(baseType === type$.legacy_Object)) t2 = baseType === type$.Object; else t2 = true; else t2 = true; if (t2 || baseType === type$.Object) return baseType; else if (t1 === 1) return H._Universe__lookupInterfaceRti(universe, "Future", [baseType]); else if (baseType === type$.Null || baseType === type$.JSNull) return type$.nullable_Future_Null; } rti = new H.Rti(null, null); rti._kind = 8; rti._primary = baseType; rti._canonicalRecipe = key; return H._Universe__installTypeTests(universe, rti); }, _Universe__lookupGenericFunctionParameterRti: function(universe, index) { var rti, t1, key = "" + index + "^", probe = universe.eC.get(key); if (probe != null) return probe; rti = new H.Rti(null, null); rti._kind = 13; rti._primary = index; rti._canonicalRecipe = key; t1 = H._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__canonicalRecipeJoin: function($arguments) { var s, sep, i, $length = $arguments.length; for (s = "", sep = "", i = 0; i < $length; ++i, sep = ",") s += sep + $arguments[i]._canonicalRecipe; return s; }, _Universe__canonicalRecipeJoinNamed: function($arguments) { var s, sep, i, t1, nameSep, s0, $length = $arguments.length; for (s = "", sep = "", i = 0; i < $length; i += 3, sep = ",") { t1 = $arguments[i]; nameSep = $arguments[i + 1] ? "!" : ":"; s0 = $arguments[i + 2]._canonicalRecipe; s += sep + t1 + nameSep + s0; } return s; }, _Universe__lookupInterfaceRti: function(universe, $name, $arguments) { var probe, rti, t1, s = $name; if ($arguments.length !== 0) s += "<" + H._Universe__canonicalRecipeJoin($arguments) + ">"; probe = universe.eC.get(s); if (probe != null) return probe; rti = new H.Rti(null, null); rti._kind = 9; rti._primary = $name; rti._rest = $arguments; if ($arguments.length > 0) rti._precomputed1 = $arguments[0]; rti._canonicalRecipe = s; t1 = H._Universe__installTypeTests(universe, rti); universe.eC.set(s, t1); return t1; }, _Universe__lookupBindingRti: function(universe, base, $arguments) { var newBase, newArguments, key, probe, rti, t1; if (base._kind === 10) { newBase = base._primary; newArguments = base._rest.concat($arguments); } else { newArguments = $arguments; newBase = base; } key = newBase._canonicalRecipe + (";<" + H._Universe__canonicalRecipeJoin(newArguments) + ">"); probe = universe.eC.get(key); if (probe != null) return probe; rti = new H.Rti(null, null); rti._kind = 10; rti._primary = newBase; rti._rest = newArguments; rti._canonicalRecipe = key; t1 = H._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupFunctionRti: function(universe, returnType, parameters) { var sep, t1, key, probe, rti, s = returnType._canonicalRecipe, requiredPositional = parameters._requiredPositional, requiredPositionalLength = requiredPositional.length, optionalPositional = parameters._optionalPositional, optionalPositionalLength = optionalPositional.length, named = parameters._named, namedLength = named.length, recipe = "(" + H._Universe__canonicalRecipeJoin(requiredPositional); if (optionalPositionalLength > 0) { sep = requiredPositionalLength > 0 ? "," : ""; t1 = H._Universe__canonicalRecipeJoin(optionalPositional); recipe += sep + "[" + t1 + "]"; } if (namedLength > 0) { sep = requiredPositionalLength > 0 ? "," : ""; t1 = H._Universe__canonicalRecipeJoinNamed(named); recipe += sep + "{" + t1 + "}"; } key = s + (recipe + ")"); probe = universe.eC.get(key); if (probe != null) return probe; rti = new H.Rti(null, null); rti._kind = 11; rti._primary = returnType; rti._rest = parameters; rti._canonicalRecipe = key; t1 = H._Universe__installTypeTests(universe, rti); universe.eC.set(key, t1); return t1; }, _Universe__lookupGenericFunctionRti: function(universe, baseFunctionType, bounds, normalize) { var t1, key = baseFunctionType._canonicalRecipe + ("<" + H._Universe__canonicalRecipeJoin(bounds) + ">"), probe = universe.eC.get(key); if (probe != null) return probe; t1 = H._Universe__createGenericFunctionRti(universe, baseFunctionType, bounds, key, normalize); universe.eC.set(key, t1); return t1; }, _Universe__createGenericFunctionRti: function(universe, baseFunctionType, bounds, key, normalize) { var $length, typeArguments, count, i, bound, substitutedBase, substitutedBounds, rti; if (normalize) { $length = bounds.length; typeArguments = new Array($length); for (count = 0, i = 0; i < $length; ++i) { bound = bounds[i]; if (bound._kind === 1) { typeArguments[i] = bound; ++count; } } if (count > 0) { substitutedBase = H._substitute(universe, baseFunctionType, typeArguments, 0); substitutedBounds = H._substituteArray(universe, bounds, typeArguments, 0); return H._Universe__lookupGenericFunctionRti(universe, substitutedBase, substitutedBounds, bounds !== substitutedBounds); } } rti = new H.Rti(null, null); rti._kind = 12; rti._primary = baseFunctionType; rti._rest = bounds; rti._canonicalRecipe = key; return H._Universe__installTypeTests(universe, rti); }, _Parser_create: function(universe, environment, recipe, normalize) { return {u: universe, e: environment, r: recipe, s: [], p: 0, n: normalize}; }, _Parser_parse: function(parser) { var t1, i, ch, universe, array, head, base, u, parameters, optionalPositional, named, item, source = parser.r, stack = parser.s; for (t1 = source.length, i = 0; i < t1;) { ch = source.charCodeAt(i); if (ch >= 48 && ch <= 57) i = H._Parser_handleDigit(i + 1, ch, source, stack); else if ((((ch | 32) >>> 0) - 97 & 65535) < 26 || ch === 95 || ch === 36) i = H._Parser_handleIdentifier(parser, i, source, stack, false); else if (ch === 46) i = H._Parser_handleIdentifier(parser, i, source, stack, true); else { ++i; switch (ch) { case 44: break; case 58: stack.push(false); break; case 33: stack.push(true); break; case 59: stack.push(H._Parser_toType(parser.u, parser.e, stack.pop())); break; case 94: stack.push(H._Universe__lookupGenericFunctionParameterRti(parser.u, stack.pop())); break; case 35: stack.push(H._Universe__lookupTerminalRti(parser.u, 5, "#")); break; case 64: stack.push(H._Universe__lookupTerminalRti(parser.u, 2, "@")); break; case 126: stack.push(H._Universe__lookupTerminalRti(parser.u, 3, "~")); break; case 60: stack.push(parser.p); parser.p = stack.length; break; case 62: universe = parser.u; array = stack.splice(parser.p); H._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); head = stack.pop(); if (typeof head == "string") stack.push(H._Universe__lookupInterfaceRti(universe, head, array)); else { base = H._Parser_toType(universe, parser.e, head); switch (base._kind) { case 11: stack.push(H._Universe__lookupGenericFunctionRti(universe, base, array, parser.n)); break; default: stack.push(H._Universe__lookupBindingRti(universe, base, array)); break; } } break; case 38: H._Parser_handleExtendedOperations(parser, stack); break; case 42: u = parser.u; stack.push(H._Universe__lookupStarRti(u, H._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 63: u = parser.u; stack.push(H._Universe__lookupQuestionRti(u, H._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 47: u = parser.u; stack.push(H._Universe__lookupFutureOrRti(u, H._Parser_toType(u, parser.e, stack.pop()), parser.n)); break; case 40: stack.push(parser.p); parser.p = stack.length; break; case 41: universe = parser.u; parameters = new H._FunctionParameters(); optionalPositional = universe.sEA; named = universe.sEA; head = stack.pop(); if (typeof head == "number") switch (head) { case -1: optionalPositional = stack.pop(); break; case -2: named = stack.pop(); break; default: stack.push(head); break; } else stack.push(head); array = stack.splice(parser.p); H._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); parameters._requiredPositional = array; parameters._optionalPositional = optionalPositional; parameters._named = named; stack.push(H._Universe__lookupFunctionRti(universe, H._Parser_toType(universe, parser.e, stack.pop()), parameters)); break; case 91: stack.push(parser.p); parser.p = stack.length; break; case 93: array = stack.splice(parser.p); H._Parser_toTypes(parser.u, parser.e, array); parser.p = stack.pop(); stack.push(array); stack.push(-1); break; case 123: stack.push(parser.p); parser.p = stack.length; break; case 125: array = stack.splice(parser.p); H._Parser_toTypesNamed(parser.u, parser.e, array); parser.p = stack.pop(); stack.push(array); stack.push(-2); break; default: throw "Bad character " + ch; } } } item = stack.pop(); return H._Parser_toType(parser.u, parser.e, item); }, _Parser_handleDigit: function(i, digit, source, stack) { var t1, ch, value = digit - 48; for (t1 = source.length; i < t1; ++i) { ch = source.charCodeAt(i); if (!(ch >= 48 && ch <= 57)) break; value = value * 10 + (ch - 48); } stack.push(value); return i; }, _Parser_handleIdentifier: function(parser, start, source, stack, hasPeriod) { var t1, ch, t2, string, environment, recipe, i = start + 1; for (t1 = source.length; i < t1; ++i) { ch = source.charCodeAt(i); if (ch === 46) { if (hasPeriod) break; hasPeriod = true; } else { if (!((((ch | 32) >>> 0) - 97 & 65535) < 26 || ch === 95 || ch === 36)) t2 = ch >= 48 && ch <= 57; else t2 = true; if (!t2) break; } } string = source.substring(start, i); if (hasPeriod) { t1 = parser.u; environment = parser.e; if (environment._kind === 10) environment = environment._primary; recipe = H._Universe_findRule(t1, environment._primary)[string]; if (recipe == null) H.throwExpression('No "' + string + '" in "' + H.Rti__getCanonicalRecipe(environment) + '"'); stack.push(H._Universe_evalInEnvironment(t1, environment, recipe)); } else stack.push(string); return i; }, _Parser_handleExtendedOperations: function(parser, stack) { var $top = stack.pop(); if (0 === $top) { stack.push(H._Universe__lookupTerminalRti(parser.u, 1, "0&")); return; } if (1 === $top) { stack.push(H._Universe__lookupTerminalRti(parser.u, 4, "1&")); return; } throw H.wrapException(P.AssertionError$("Unexpected extended operation " + H.S($top))); }, _Parser_toType: function(universe, environment, item) { if (typeof item == "string") return H._Universe__lookupInterfaceRti(universe, item, universe.sEA); else if (typeof item == "number") return H._Parser_indexToType(universe, environment, item); else return item; }, _Parser_toTypes: function(universe, environment, items) { var i, $length = items.length; for (i = 0; i < $length; ++i) items[i] = H._Parser_toType(universe, environment, items[i]); }, _Parser_toTypesNamed: function(universe, environment, items) { var i, $length = items.length; for (i = 2; i < $length; i += 3) items[i] = H._Parser_toType(universe, environment, items[i]); }, _Parser_indexToType: function(universe, environment, index) { var typeArguments, len, kind = environment._kind; if (kind === 10) { if (index === 0) return environment._primary; typeArguments = environment._rest; len = typeArguments.length; if (index <= len) return typeArguments[index - 1]; index -= len; environment = environment._primary; kind = environment._kind; } else if (index === 0) return environment; if (kind !== 9) throw H.wrapException(P.AssertionError$("Indexed base must be an interface type")); typeArguments = environment._rest; if (index <= typeArguments.length) return typeArguments[index - 1]; throw H.wrapException(P.AssertionError$("Bad index " + index + " for " + environment.toString$0(0))); }, _isSubtype: function(universe, s, sEnv, t, tEnv) { var t1, sKind, leftTypeVariable, tKind, sBounds, tBounds, sLength, i, sBound, tBound; if (s === t) return true; if (!H.isStrongTopType(t)) if (!(t === type$.legacy_Object)) t1 = t === type$.Object; else t1 = true; else t1 = true; if (t1) return true; sKind = s._kind; if (sKind === 4) return true; if (H.isStrongTopType(s)) return false; if (s._kind !== 1) t1 = s === type$.Null || s === type$.JSNull; else t1 = true; if (t1) return true; leftTypeVariable = sKind === 13; if (leftTypeVariable) if (H._isSubtype(universe, sEnv[s._primary], sEnv, t, tEnv)) return true; tKind = t._kind; if (sKind === 6) return H._isSubtype(universe, s._primary, sEnv, t, tEnv); if (tKind === 6) { t1 = t._primary; return H._isSubtype(universe, s, sEnv, t1, tEnv); } if (sKind === 8) { if (!H._isSubtype(universe, s._primary, sEnv, t, tEnv)) return false; return H._isSubtype(universe, H.Rti__getFutureFromFutureOr(universe, s), sEnv, t, tEnv); } if (sKind === 7) { t1 = H._isSubtype(universe, s._primary, sEnv, t, tEnv); return t1; } if (tKind === 8) { if (H._isSubtype(universe, s, sEnv, t._primary, tEnv)) return true; return H._isSubtype(universe, s, sEnv, H.Rti__getFutureFromFutureOr(universe, t), tEnv); } if (tKind === 7) { t1 = H._isSubtype(universe, s, sEnv, t._primary, tEnv); return t1; } if (leftTypeVariable) return false; t1 = sKind !== 11; if ((!t1 || sKind === 12) && t === type$.Function) return true; if (tKind === 12) { if (s === type$.JavaScriptFunction) return true; if (sKind !== 12) return false; sBounds = s._rest; tBounds = t._rest; sLength = sBounds.length; if (sLength !== tBounds.length) return false; sEnv = sEnv == null ? sBounds : sBounds.concat(sEnv); tEnv = tEnv == null ? tBounds : tBounds.concat(tEnv); for (i = 0; i < sLength; ++i) { sBound = sBounds[i]; tBound = tBounds[i]; if (!H._isSubtype(universe, sBound, sEnv, tBound, tEnv) || !H._isSubtype(universe, tBound, tEnv, sBound, sEnv)) return false; } return H._isFunctionSubtype(universe, s._primary, sEnv, t._primary, tEnv); } if (tKind === 11) { if (s === type$.JavaScriptFunction) return true; if (t1) return false; return H._isFunctionSubtype(universe, s, sEnv, t, tEnv); } if (sKind === 9) { if (tKind !== 9) return false; return H._isInterfaceSubtype(universe, s, sEnv, t, tEnv); } return false; }, _isFunctionSubtype: function(universe, s, sEnv, t, tEnv) { var sParameters, tParameters, sRequiredPositional, tRequiredPositional, sRequiredPositionalLength, tRequiredPositionalLength, requiredPositionalDelta, sOptionalPositional, tOptionalPositional, sOptionalPositionalLength, tOptionalPositionalLength, i, t1, sNamed, tNamed, sNamedLength, tNamedLength, sIndex, tIndex, tName, sName; if (!H._isSubtype(universe, s._primary, sEnv, t._primary, tEnv)) return false; sParameters = s._rest; tParameters = t._rest; sRequiredPositional = sParameters._requiredPositional; tRequiredPositional = tParameters._requiredPositional; sRequiredPositionalLength = sRequiredPositional.length; tRequiredPositionalLength = tRequiredPositional.length; if (sRequiredPositionalLength > tRequiredPositionalLength) return false; requiredPositionalDelta = tRequiredPositionalLength - sRequiredPositionalLength; sOptionalPositional = sParameters._optionalPositional; tOptionalPositional = tParameters._optionalPositional; sOptionalPositionalLength = sOptionalPositional.length; tOptionalPositionalLength = tOptionalPositional.length; if (sRequiredPositionalLength + sOptionalPositionalLength < tRequiredPositionalLength + tOptionalPositionalLength) return false; for (i = 0; i < sRequiredPositionalLength; ++i) { t1 = sRequiredPositional[i]; if (!H._isSubtype(universe, tRequiredPositional[i], tEnv, t1, sEnv)) return false; } for (i = 0; i < requiredPositionalDelta; ++i) { t1 = sOptionalPositional[i]; if (!H._isSubtype(universe, tRequiredPositional[sRequiredPositionalLength + i], tEnv, t1, sEnv)) return false; } for (i = 0; i < tOptionalPositionalLength; ++i) { t1 = sOptionalPositional[requiredPositionalDelta + i]; if (!H._isSubtype(universe, tOptionalPositional[i], tEnv, t1, sEnv)) return false; } sNamed = sParameters._named; tNamed = tParameters._named; sNamedLength = sNamed.length; tNamedLength = tNamed.length; for (sIndex = 0, tIndex = 0; tIndex < tNamedLength; tIndex += 3) { tName = tNamed[tIndex]; for (; true;) { if (sIndex >= sNamedLength) return false; sName = sNamed[sIndex]; sIndex += 3; if (tName < sName) return false; if (sName < tName) continue; t1 = sNamed[sIndex - 1]; if (!H._isSubtype(universe, tNamed[tIndex + 2], tEnv, t1, sEnv)) return false; break; } } return true; }, _isInterfaceSubtype: function(universe, s, sEnv, t, tEnv) { var sArgs, tArgs, $length, i, t1, t2, rule, supertypeArgs, sName = s._primary, tName = t._primary; if (sName === tName) { sArgs = s._rest; tArgs = t._rest; $length = sArgs.length; for (i = 0; i < $length; ++i) { t1 = sArgs[i]; t2 = tArgs[i]; if (!H._isSubtype(universe, t1, sEnv, t2, tEnv)) return false; } return true; } if (t === type$.Object) return true; rule = H._Universe_findRule(universe, sName); if (rule == null) return false; supertypeArgs = rule[tName]; if (supertypeArgs == null) return false; $length = supertypeArgs.length; tArgs = t._rest; for (i = 0; i < $length; ++i) if (!H._isSubtype(universe, H._Universe_evalInEnvironment(universe, s, supertypeArgs[i]), sEnv, tArgs[i], tEnv)) return false; return true; }, isNullable: function(t) { var t1, kind = t._kind; if (!(t === type$.Null || t === type$.JSNull)) if (!H.isStrongTopType(t)) if (kind !== 7) if (!(kind === 6 && H.isNullable(t._primary))) t1 = kind === 8 && H.isNullable(t._primary); else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; }, isTopType: function(t) { var t1; if (!H.isStrongTopType(t)) if (!(t === type$.legacy_Object)) t1 = t === type$.Object; else t1 = true; else t1 = true; return t1; }, isStrongTopType: function(t) { var kind = t._kind; return kind === 2 || kind === 3 || kind === 4 || kind === 5 || t === type$.nullable_Object; }, _Utils_objectAssign: function(o, other) { var i, key, keys = Object.keys(other), $length = keys.length; for (i = 0; i < $length; ++i) { key = keys[i]; o[key] = other[key]; } }, Rti: function Rti(t0, t1) { var _ = this; _._as = t0; _._is = t1; _._cachedRuntimeType = _._specializedTestResource = _._precomputed1 = null; _._kind = 0; _._canonicalRecipe = _._bindCache = _._evalCache = _._rest = _._primary = null; }, _FunctionParameters: function _FunctionParameters() { this._named = this._optionalPositional = this._requiredPositional = null; }, _Type: function _Type(t0) { this._rti = t0; }, _Error: function _Error() { }, _TypeError: function _TypeError(t0) { this._message = t0; }, isBrowserObject: function(o) { return type$.Blob._is(o) || type$.Event._is(o) || type$.KeyRange._is(o) || type$.ImageData._is(o) || type$.Node._is(o) || type$.Window._is(o) || type$.WorkerGlobalScope._is(o); }, unmangleGlobalNameIfPreservedAnyways: function($name) { return init.mangledGlobalNames[$name]; }, printString: function(string) { if (typeof dartPrint == "function") { dartPrint(string); return; } if (typeof console == "object" && typeof console.log != "undefined") { console.log(string); return; } if (typeof window == "object") return; if (typeof print == "function") { print(string); return; } throw "Unable to print message: " + String(string); } }, J = { makeDispatchRecord: function(interceptor, proto, extension, indexability) { return {i: interceptor, p: proto, e: extension, x: indexability}; }, getNativeInterceptor: function(object) { var proto, objectProto, $constructor, interceptor, t1, record = object[init.dispatchPropertyName]; if (record == null) if ($.initNativeDispatchFlag == null) { H.initNativeDispatch(); record = object[init.dispatchPropertyName]; } if (record != null) { proto = record.p; if (false === proto) return record.i; if (true === proto) return object; objectProto = Object.getPrototypeOf(object); if (proto === objectProto) return record.i; if (record.e === objectProto) throw H.wrapException(P.UnimplementedError$("Return interceptor for " + H.S(proto(object, record)))); } $constructor = object.constructor; if ($constructor == null) interceptor = null; else { t1 = $._JS_INTEROP_INTERCEPTOR_TAG; if (t1 == null) t1 = $._JS_INTEROP_INTERCEPTOR_TAG = init.getIsolateTag("_$dart_js"); interceptor = $constructor[t1]; } if (interceptor != null) return interceptor; interceptor = H.lookupAndCacheInterceptor(object); if (interceptor != null) return interceptor; if (typeof object == "function") return C.JavaScriptFunction_methods; proto = Object.getPrototypeOf(object); if (proto == null) return C.PlainJavaScriptObject_methods; if (proto === Object.prototype) return C.PlainJavaScriptObject_methods; if (typeof $constructor == "function") { t1 = $._JS_INTEROP_INTERCEPTOR_TAG; if (t1 == null) t1 = $._JS_INTEROP_INTERCEPTOR_TAG = init.getIsolateTag("_$dart_js"); Object.defineProperty($constructor, t1, {value: C.UnknownJavaScriptObject_methods, enumerable: false, writable: true, configurable: true}); return C.UnknownJavaScriptObject_methods; } return C.UnknownJavaScriptObject_methods; }, JSArray_JSArray$fixed: function($length, $E) { if (!H._isInt($length)) throw H.wrapException(P.ArgumentError$value($length, "length", "is not an integer")); if ($length < 0 || $length > 4294967295) throw H.wrapException(P.RangeError$range($length, 0, 4294967295, "length", null)); return J.JSArray_JSArray$markFixed(new Array($length), $E); }, JSArray_JSArray$growable: function($length, $E) { if (!H._isInt($length) || $length < 0) throw H.wrapException(P.ArgumentError$("Length must be a non-negative integer: " + H.S($length))); return H.setRuntimeTypeInfo(new Array($length), $E._eval$1("JSArray<0>")); }, JSArray_JSArray$allocateGrowable: function($length, $E) { if ($length < 0) throw H.wrapException(P.ArgumentError$("Length must be a non-negative integer: " + $length)); return H.setRuntimeTypeInfo(new Array($length), $E._eval$1("JSArray<0>")); }, JSArray_JSArray$markFixed: function(allocation, $E) { return J.JSArray_markFixedList(H.setRuntimeTypeInfo(allocation, $E._eval$1("JSArray<0>"))); }, JSArray_markFixedList: function(list) { list.fixed$length = Array; return list; }, JSArray_markUnmodifiableList: function(list) { list.fixed$length = Array; list.immutable$list = Array; return list; }, JSArray__compareAny: function(a, b) { return J.compareTo$1$ns(a, b); }, JSString__isWhitespace: function(codeUnit) { if (codeUnit < 256) switch (codeUnit) { case 9: case 10: case 11: case 12: case 13: case 32: case 133: case 160: return true; default: return false; } switch (codeUnit) { case 5760: case 8192: case 8193: case 8194: case 8195: case 8196: case 8197: case 8198: case 8199: case 8200: case 8201: case 8202: case 8232: case 8233: case 8239: case 8287: case 12288: case 65279: return true; default: return false; } }, JSString__skipLeadingWhitespace: function(string, index) { var t1, codeUnit; for (t1 = string.length; index < t1;) { codeUnit = C.JSString_methods._codeUnitAt$1(string, index); if (codeUnit !== 32 && codeUnit !== 13 && !J.JSString__isWhitespace(codeUnit)) break; ++index; } return index; }, JSString__skipTrailingWhitespace: function(string, index) { var index0, codeUnit; for (; index > 0; index = index0) { index0 = index - 1; codeUnit = C.JSString_methods.codeUnitAt$1(string, index0); if (codeUnit !== 32 && codeUnit !== 13 && !J.JSString__isWhitespace(codeUnit)) break; } return index; }, getInterceptor$: function(receiver) { if (typeof receiver == "number") { if (Math.floor(receiver) == receiver) return J.JSInt.prototype; return J.JSNumNotInt.prototype; } if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return J.JSNull.prototype; if (typeof receiver == "boolean") return J.JSBool.prototype; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof P.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$ansx: function(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof P.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$asx: function(receiver) { if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof P.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$ax: function(receiver) { if (receiver == null) return receiver; if (receiver.constructor == Array) return J.JSArray.prototype; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof P.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$in: function(receiver) { if (typeof receiver == "number") { if (Math.floor(receiver) == receiver) return J.JSInt.prototype; return J.JSNumNotInt.prototype; } if (receiver == null) return receiver; if (!(receiver instanceof P.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$n: function(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (receiver == null) return receiver; if (!(receiver instanceof P.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$ns: function(receiver) { if (typeof receiver == "number") return J.JSNumber.prototype; if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (!(receiver instanceof P.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$s: function(receiver) { if (typeof receiver == "string") return J.JSString.prototype; if (receiver == null) return receiver; if (!(receiver instanceof P.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, getInterceptor$x: function(receiver) { if (receiver == null) return receiver; if (typeof receiver != "object") { if (typeof receiver == "function") return J.JavaScriptFunction.prototype; return receiver; } if (receiver instanceof P.Object) return receiver; return J.getNativeInterceptor(receiver); }, getInterceptor$z: function(receiver) { if (receiver == null) return receiver; if (!(receiver instanceof P.Object)) return J.UnknownJavaScriptObject.prototype; return receiver; }, set$height$x: function(receiver, value) { return J.getInterceptor$x(receiver).set$height(receiver, value); }, set$length$asx: function(receiver, value) { return J.getInterceptor$asx(receiver).set$length(receiver, value); }, set$returnValue$x: function(receiver, value) { return J.getInterceptor$x(receiver).set$returnValue(receiver, value); }, set$text$x: function(receiver, value) { return J.getInterceptor$x(receiver).set$text(receiver, value); }, set$textDirection$x: function(receiver, value) { return J.getInterceptor$x(receiver).set$textDirection(receiver, value); }, set$width$x: function(receiver, value) { return J.getInterceptor$x(receiver).set$width(receiver, value); }, get$AlphaType$x: function(receiver) { return J.getInterceptor$x(receiver).get$AlphaType(receiver); }, get$Alphabetic$x: function(receiver) { return J.getInterceptor$x(receiver).get$Alphabetic(receiver); }, get$Bevel$x: function(receiver) { return J.getInterceptor$x(receiver).get$Bevel(receiver); }, get$BlendMode$x: function(receiver) { return J.getInterceptor$x(receiver).get$BlendMode(receiver); }, get$BlurStyle$x: function(receiver) { return J.getInterceptor$x(receiver).get$BlurStyle(receiver); }, get$Bold$x: function(receiver) { return J.getInterceptor$x(receiver).get$Bold(receiver); }, get$Butt$x: function(receiver) { return J.getInterceptor$x(receiver).get$Butt(receiver); }, get$Center$x: function(receiver) { return J.getInterceptor$x(receiver).get$Center(receiver); }, get$Clamp$x: function(receiver) { return J.getInterceptor$x(receiver).get$Clamp(receiver); }, get$Clear$x: function(receiver) { return J.getInterceptor$x(receiver).get$Clear(receiver); }, get$ClipOp$x: function(receiver) { return J.getInterceptor$x(receiver).get$ClipOp(receiver); }, get$Color$x: function(receiver) { return J.getInterceptor$x(receiver).get$Color(receiver); }, get$ColorBurn$x: function(receiver) { return J.getInterceptor$x(receiver).get$ColorBurn(receiver); }, get$ColorDodge$x: function(receiver) { return J.getInterceptor$x(receiver).get$ColorDodge(receiver); }, get$ColorFilter$x: function(receiver) { return J.getInterceptor$x(receiver).get$ColorFilter(receiver); }, get$ColorType$x: function(receiver) { return J.getInterceptor$x(receiver).get$ColorType(receiver); }, get$Darken$x: function(receiver) { return J.getInterceptor$x(receiver).get$Darken(receiver); }, get$Dashed$x: function(receiver) { return J.getInterceptor$x(receiver).get$Dashed(receiver); }, get$Decal$x: function(receiver) { return J.getInterceptor$x(receiver).get$Decal(receiver); }, get$DecorationStyle$x: function(receiver) { return J.getInterceptor$x(receiver).get$DecorationStyle(receiver); }, get$Difference$x: function(receiver) { return J.getInterceptor$x(receiver).get$Difference(receiver); }, get$Dotted$x: function(receiver) { return J.getInterceptor$x(receiver).get$Dotted(receiver); }, get$Double$x: function(receiver) { return J.getInterceptor$x(receiver).get$Double(receiver); }, get$Dst$x: function(receiver) { return J.getInterceptor$x(receiver).get$Dst(receiver); }, get$DstATop$x: function(receiver) { return J.getInterceptor$x(receiver).get$DstATop(receiver); }, get$DstIn$x: function(receiver) { return J.getInterceptor$x(receiver).get$DstIn(receiver); }, get$DstOut$x: function(receiver) { return J.getInterceptor$x(receiver).get$DstOut(receiver); }, get$DstOver$x: function(receiver) { return J.getInterceptor$x(receiver).get$DstOver(receiver); }, get$End$x: function(receiver) { return J.getInterceptor$x(receiver).get$End(receiver); }, get$EvenOdd$x: function(receiver) { return J.getInterceptor$x(receiver).get$EvenOdd(receiver); }, get$Exclusion$x: function(receiver) { return J.getInterceptor$x(receiver).get$Exclusion(receiver); }, get$ExtraBlack$x: function(receiver) { return J.getInterceptor$x(receiver).get$ExtraBlack(receiver); }, get$ExtraBold$x: function(receiver) { return J.getInterceptor$x(receiver).get$ExtraBold(receiver); }, get$ExtraLight$x: function(receiver) { return J.getInterceptor$x(receiver).get$ExtraLight(receiver); }, get$Fill$x: function(receiver) { return J.getInterceptor$x(receiver).get$Fill(receiver); }, get$FillType$x: function(receiver) { return J.getInterceptor$x(receiver).get$FillType(receiver); }, get$FilterMode$x: function(receiver) { return J.getInterceptor$x(receiver).get$FilterMode(receiver); }, get$FilterQuality$x: function(receiver) { return J.getInterceptor$x(receiver).get$FilterQuality(receiver); }, get$FontMgr$x: function(receiver) { return J.getInterceptor$x(receiver).get$FontMgr(receiver); }, get$FontSlant$x: function(receiver) { return J.getInterceptor$x(receiver).get$FontSlant(receiver); }, get$FontWeight$x: function(receiver) { return J.getInterceptor$x(receiver).get$FontWeight(receiver); }, get$HardLight$x: function(receiver) { return J.getInterceptor$x(receiver).get$HardLight(receiver); }, get$High$x: function(receiver) { return J.getInterceptor$x(receiver).get$High(receiver); }, get$Hue$x: function(receiver) { return J.getInterceptor$x(receiver).get$Hue(receiver); }, get$Ideographic$x: function(receiver) { return J.getInterceptor$x(receiver).get$Ideographic(receiver); }, get$Inner$x: function(receiver) { return J.getInterceptor$x(receiver).get$Inner(receiver); }, get$Intersect$x: function(receiver) { return J.getInterceptor$x(receiver).get$Intersect(receiver); }, get$Italic$x: function(receiver) { return J.getInterceptor$x(receiver).get$Italic(receiver); }, get$Justify$x: function(receiver) { return J.getInterceptor$x(receiver).get$Justify(receiver); }, get$LTR$x: function(receiver) { return J.getInterceptor$x(receiver).get$LTR(receiver); }, get$Left$x: function(receiver) { return J.getInterceptor$x(receiver).get$Left(receiver); }, get$Light$x: function(receiver) { return J.getInterceptor$x(receiver).get$Light(receiver); }, get$Lighten$x: function(receiver) { return J.getInterceptor$x(receiver).get$Lighten(receiver); }, get$LineThroughDecoration$x: function(receiver) { return J.getInterceptor$x(receiver).get$LineThroughDecoration(receiver); }, get$Linear$x: function(receiver) { return J.getInterceptor$x(receiver).get$Linear(receiver); }, get$Low$x: function(receiver) { return J.getInterceptor$x(receiver).get$Low(receiver); }, get$Luminosity$x: function(receiver) { return J.getInterceptor$x(receiver).get$Luminosity(receiver); }, get$MaskFilter$x: function(receiver) { return J.getInterceptor$x(receiver).get$MaskFilter(receiver); }, get$Max$x: function(receiver) { return J.getInterceptor$x(receiver).get$Max(receiver); }, get$Medium$x: function(receiver) { return J.getInterceptor$x(receiver).get$Medium(receiver); }, get$MipmapMode$x: function(receiver) { return J.getInterceptor$x(receiver).get$MipmapMode(receiver); }, get$Mirror$x: function(receiver) { return J.getInterceptor$x(receiver).get$Mirror(receiver); }, get$Miter$x: function(receiver) { return J.getInterceptor$x(receiver).get$Miter(receiver); }, get$Modulate$x: function(receiver) { return J.getInterceptor$x(receiver).get$Modulate(receiver); }, get$Multiply$x: function(receiver) { return J.getInterceptor$x(receiver).get$Multiply(receiver); }, get$Nearest$x: function(receiver) { return J.getInterceptor$x(receiver).get$Nearest(receiver); }, get$NoDecoration$x: function(receiver) { return J.getInterceptor$x(receiver).get$NoDecoration(receiver); }, get$None$x: function(receiver) { return J.getInterceptor$x(receiver).get$None(receiver); }, get$Normal$x: function(receiver) { return J.getInterceptor$x(receiver).get$Normal(receiver); }, get$Outer$x: function(receiver) { return J.getInterceptor$x(receiver).get$Outer(receiver); }, get$Overlay$x: function(receiver) { return J.getInterceptor$x(receiver).get$Overlay(receiver); }, get$OverlineDecoration$x: function(receiver) { return J.getInterceptor$x(receiver).get$OverlineDecoration(receiver); }, get$PaintStyle$x: function(receiver) { return J.getInterceptor$x(receiver).get$PaintStyle(receiver); }, get$ParagraphBuilder$x: function(receiver) { return J.getInterceptor$x(receiver).get$ParagraphBuilder(receiver); }, get$Path$x: function(receiver) { return J.getInterceptor$x(receiver).get$Path(receiver); }, get$Plus$x: function(receiver) { return J.getInterceptor$x(receiver).get$Plus(receiver); }, get$Premul$x: function(receiver) { return J.getInterceptor$x(receiver).get$Premul(receiver); }, get$RGBA_8888$x: function(receiver) { return J.getInterceptor$x(receiver).get$RGBA_8888(receiver); }, get$RTL$x: function(receiver) { return J.getInterceptor$x(receiver).get$RTL(receiver); }, get$RectHeightStyle$x: function(receiver) { return J.getInterceptor$x(receiver).get$RectHeightStyle(receiver); }, get$RectWidthStyle$x: function(receiver) { return J.getInterceptor$x(receiver).get$RectWidthStyle(receiver); }, get$Repeat$x: function(receiver) { return J.getInterceptor$x(receiver).get$Repeat(receiver); }, get$Right$x: function(receiver) { return J.getInterceptor$x(receiver).get$Right(receiver); }, get$Round$x: function(receiver) { return J.getInterceptor$x(receiver).get$Round(receiver); }, get$Saturation$x: function(receiver) { return J.getInterceptor$x(receiver).get$Saturation(receiver); }, get$Screen$x: function(receiver) { return J.getInterceptor$x(receiver).get$Screen(receiver); }, get$SemiBold$x: function(receiver) { return J.getInterceptor$x(receiver).get$SemiBold(receiver); }, get$Shader$x: function(receiver) { return J.getInterceptor$x(receiver).get$Shader(receiver); }, get$SoftLight$x: function(receiver) { return J.getInterceptor$x(receiver).get$SoftLight(receiver); }, get$Solid$x: function(receiver) { return J.getInterceptor$x(receiver).get$Solid(receiver); }, get$Square$x: function(receiver) { return J.getInterceptor$x(receiver).get$Square(receiver); }, get$Src$x: function(receiver) { return J.getInterceptor$x(receiver).get$Src(receiver); }, get$SrcATop$x: function(receiver) { return J.getInterceptor$x(receiver).get$SrcATop(receiver); }, get$SrcIn$x: function(receiver) { return J.getInterceptor$x(receiver).get$SrcIn(receiver); }, get$SrcOut$x: function(receiver) { return J.getInterceptor$x(receiver).get$SrcOut(receiver); }, get$SrcOver$x: function(receiver) { return J.getInterceptor$x(receiver).get$SrcOver(receiver); }, get$Start$x: function(receiver) { return J.getInterceptor$x(receiver).get$Start(receiver); }, get$Stroke$x: function(receiver) { return J.getInterceptor$x(receiver).get$Stroke(receiver); }, get$StrokeCap$x: function(receiver) { return J.getInterceptor$x(receiver).get$StrokeCap(receiver); }, get$StrokeJoin$x: function(receiver) { return J.getInterceptor$x(receiver).get$StrokeJoin(receiver); }, get$TextAlign$x: function(receiver) { return J.getInterceptor$x(receiver).get$TextAlign(receiver); }, get$TextBaseline$x: function(receiver) { return J.getInterceptor$x(receiver).get$TextBaseline(receiver); }, get$TextDirection$x: function(receiver) { return J.getInterceptor$x(receiver).get$TextDirection(receiver); }, get$Thin$x: function(receiver) { return J.getInterceptor$x(receiver).get$Thin(receiver); }, get$Tight$x: function(receiver) { return J.getInterceptor$x(receiver).get$Tight(receiver); }, get$TileMode$x: function(receiver) { return J.getInterceptor$x(receiver).get$TileMode(receiver); }, get$TypefaceFontProvider$x: function(receiver) { return J.getInterceptor$x(receiver).get$TypefaceFontProvider(receiver); }, get$UnderlineDecoration$x: function(receiver) { return J.getInterceptor$x(receiver).get$UnderlineDecoration(receiver); }, get$Upright$x: function(receiver) { return J.getInterceptor$x(receiver).get$Upright(receiver); }, get$Wavy$x: function(receiver) { return J.getInterceptor$x(receiver).get$Wavy(receiver); }, get$Winding$x: function(receiver) { return J.getInterceptor$x(receiver).get$Winding(receiver); }, get$Xor$x: function(receiver) { return J.getInterceptor$x(receiver).get$Xor(receiver); }, get$access_token$x: function(receiver) { return J.getInterceptor$x(receiver).get$access_token(receiver); }, get$add$ax: function(receiver) { return J.getInterceptor$ax(receiver).get$add(receiver); }, get$attributes$x: function(receiver) { return J.getInterceptor$x(receiver).get$attributes(receiver); }, get$baseline$z: function(receiver) { return J.getInterceptor$z(receiver).get$baseline(receiver); }, get$body$x: function(receiver) { return J.getInterceptor$x(receiver).get$body(receiver); }, get$bottom$x: function(receiver) { return J.getInterceptor$x(receiver).get$bottom(receiver); }, get$buffer$x: function(receiver) { return J.getInterceptor$x(receiver).get$buffer(receiver); }, get$children$x: function(receiver) { return J.getInterceptor$x(receiver).get$children(receiver); }, get$close$x: function(receiver) { return J.getInterceptor$x(receiver).get$close(receiver); }, get$credentials$z: function(receiver) { return J.getInterceptor$z(receiver).get$credentials(receiver); }, get$current$z: function(receiver) { return J.getInterceptor$z(receiver).get$current(receiver); }, get$currentUser$x: function(receiver) { return J.getInterceptor$x(receiver).get$currentUser(receiver); }, get$document$x: function(receiver) { return J.getInterceptor$x(receiver).get$document(receiver); }, get$entries$x: function(receiver) { return J.getInterceptor$x(receiver).get$entries(receiver); }, get$error$x: function(receiver) { return J.getInterceptor$x(receiver).get$error(receiver); }, get$first$ax: function(receiver) { return J.getInterceptor$ax(receiver).get$first(receiver); }, get$hashCode$: function(receiver) { return J.getInterceptor$(receiver).get$hashCode(receiver); }, get$height$x: function(receiver) { return J.getInterceptor$x(receiver).get$height(receiver); }, get$id$x: function(receiver) { return J.getInterceptor$x(receiver).get$id(receiver); }, get$id_token$x: function(receiver) { return J.getInterceptor$x(receiver).get$id_token(receiver); }, get$index$z: function(receiver) { return J.getInterceptor$z(receiver).get$index(receiver); }, get$isDeleted$x: function(receiver) { return J.getInterceptor$x(receiver).get$isDeleted(receiver); }, get$isEmpty$asx: function(receiver) { return J.getInterceptor$asx(receiver).get$isEmpty(receiver); }, get$isNegative$n: function(receiver) { return J.getInterceptor$n(receiver).get$isNegative(receiver); }, get$isNotEmpty$asx: function(receiver) { return J.getInterceptor$asx(receiver).get$isNotEmpty(receiver); }, get$iterator$ax: function(receiver) { return J.getInterceptor$ax(receiver).get$iterator(receiver); }, get$key$x: function(receiver) { return J.getInterceptor$x(receiver).get$key(receiver); }, get$keys$x: function(receiver) { return J.getInterceptor$x(receiver).get$keys(receiver); }, get$last$ax: function(receiver) { return J.getInterceptor$ax(receiver).get$last(receiver); }, get$left$x: function(receiver) { return J.getInterceptor$x(receiver).get$left(receiver); }, get$length$asx: function(receiver) { return J.getInterceptor$asx(receiver).get$length(receiver); }, get$lengthInBytes$x: function(receiver) { return J.getInterceptor$x(receiver).get$lengthInBytes(receiver); }, get$message$z: function(receiver) { return J.getInterceptor$z(receiver).get$message(receiver); }, get$name$x: function(receiver) { return J.getInterceptor$x(receiver).get$name(receiver); }, get$numPages$x: function(receiver) { return J.getInterceptor$x(receiver).get$numPages(receiver); }, get$offset$x: function(receiver) { return J.getInterceptor$x(receiver).get$offset(receiver); }, get$onBlur$x: function(receiver) { return J.getInterceptor$x(receiver).get$onBlur(receiver); }, get$onFocus$x: function(receiver) { return J.getInterceptor$x(receiver).get$onFocus(receiver); }, get$pageNumber$x: function(receiver) { return J.getInterceptor$x(receiver).get$pageNumber(receiver); }, get$path$x: function(receiver) { return J.getInterceptor$x(receiver).get$path(receiver); }, get$product$x: function(receiver) { return J.getInterceptor$x(receiver).get$product(receiver); }, get$promise$x: function(receiver) { return J.getInterceptor$x(receiver).get$promise(receiver); }, get$reversed$ax: function(receiver) { return J.getInterceptor$ax(receiver).get$reversed(receiver); }, get$right$x: function(receiver) { return J.getInterceptor$x(receiver).get$right(receiver); }, get$runtimeType$: function(receiver) { return J.getInterceptor$(receiver).get$runtimeType(receiver); }, get$setRequestHeader$x: function(receiver) { return J.getInterceptor$x(receiver).get$setRequestHeader(receiver); }, get$sign$in: function(receiver) { if (typeof receiver === "number") return receiver > 0 ? 1 : receiver < 0 ? -1 : receiver; return J.getInterceptor$in(receiver).get$sign(receiver); }, get$source$z: function(receiver) { return J.getInterceptor$z(receiver).get$source(receiver); }, get$stop$z: function(receiver) { return J.getInterceptor$z(receiver).get$stop(receiver); }, get$stream$z: function(receiver) { return J.getInterceptor$z(receiver).get$stream(receiver); }, get$target$x: function(receiver) { return J.getInterceptor$x(receiver).get$target(receiver); }, get$top$x: function(receiver) { return J.getInterceptor$x(receiver).get$top(receiver); }, get$type$x: function(receiver) { return J.getInterceptor$x(receiver).get$type(receiver); }, get$value$x: function(receiver) { return J.getInterceptor$x(receiver).get$value(receiver); }, get$values$x: function(receiver) { return J.getInterceptor$x(receiver).get$values(receiver); }, get$vendor$x: function(receiver) { return J.getInterceptor$x(receiver).get$vendor(receiver); }, get$width$x: function(receiver) { return J.getInterceptor$x(receiver).get$width(receiver); }, $add$ansx: function(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver + a0; return J.getInterceptor$ansx(receiver).$add(receiver, a0); }, $div$n: function(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver / a0; return J.getInterceptor$n(receiver).$div(receiver, a0); }, $eq$: function(receiver, a0) { if (receiver == null) return a0 == null; if (typeof receiver != "object") return a0 != null && receiver === a0; return J.getInterceptor$(receiver).$eq(receiver, a0); }, $get$0$x: function(receiver) { return J.getInterceptor$x(receiver).$get$0(receiver); }, $gt$n: function(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver > a0; return J.getInterceptor$n(receiver).$gt(receiver, a0); }, $index$asx: function(receiver, a0) { if (typeof a0 === "number") if (receiver.constructor == Array || typeof receiver == "string" || H.isJsIndexable(receiver, receiver[init.dispatchPropertyName])) if (a0 >>> 0 === a0 && a0 < receiver.length) return receiver[a0]; return J.getInterceptor$asx(receiver).$index(receiver, a0); }, $indexSet$ax: function(receiver, a0, a1) { if (typeof a0 === "number") if ((receiver.constructor == Array || H.isJsIndexable(receiver, receiver[init.dispatchPropertyName])) && !receiver.immutable$list && a0 >>> 0 === a0 && a0 < receiver.length) return receiver[a0] = a1; return J.getInterceptor$ax(receiver).$indexSet(receiver, a0, a1); }, $mul$ns: function(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver * a0; return J.getInterceptor$ns(receiver).$mul(receiver, a0); }, $sub$n: function(receiver, a0) { if (typeof receiver == "number" && typeof a0 == "number") return receiver - a0; return J.getInterceptor$n(receiver).$sub(receiver, a0); }, GetWebGLContext$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).GetWebGLContext$2(receiver, a0, a1); }, Make$0$x: function(receiver) { return J.getInterceptor$x(receiver).Make$0(receiver); }, MakeAnimatedImageFromEncoded$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).MakeAnimatedImageFromEncoded$1(receiver, a0); }, MakeBlend$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).MakeBlend$2(receiver, a0, a1); }, MakeBlur$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).MakeBlur$3(receiver, a0, a1, a2); }, MakeFromCmds$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).MakeFromCmds$1(receiver, a0); }, MakeFromFontProvider$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).MakeFromFontProvider$2(receiver, a0, a1); }, MakeGrContext$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).MakeGrContext$1(receiver, a0); }, MakeImage$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).MakeImage$3(receiver, a0, a1, a2); }, MakeLinearGradient$5$x: function(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).MakeLinearGradient$5(receiver, a0, a1, a2, a3, a4); }, MakeOnScreenGLSurface$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).MakeOnScreenGLSurface$4(receiver, a0, a1, a2, a3); }, MakeSWCanvasSurface$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).MakeSWCanvasSurface$1(receiver, a0); }, MakeTypefaceFromData$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).MakeTypefaceFromData$1(receiver, a0); }, ParagraphStyle$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).ParagraphStyle$1(receiver, a0); }, RefDefault$0$x: function(receiver) { return J.getInterceptor$x(receiver).RefDefault$0(receiver); }, TextStyle$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).TextStyle$1(receiver, a0); }, _clearChildren$0$x: function(receiver) { return J.getInterceptor$x(receiver)._clearChildren$0(receiver); }, _codeUnitAt$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver)._codeUnitAt$1(receiver, a0); }, _initEvent$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver)._initEvent$3(receiver, a0, a1, a2); }, _replaceChild$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver)._replaceChild$2(receiver, a0, a1); }, add$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).add$1(receiver, a0); }, addAll$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).addAll$1(receiver, a0); }, addArc$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addArc$3(receiver, a0, a1, a2); }, addEventListener$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).addEventListener$2(receiver, a0, a1); }, addEventListener$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addEventListener$3(receiver, a0, a1, a2); }, addListener$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).addListener$1(receiver, a0); }, addOval$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).addOval$3(receiver, a0, a1, a2); }, addPopStateListener$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).addPopStateListener$1(receiver, a0); }, addRRect$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).addRRect$2(receiver, a0, a1); }, addRect$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).addRect$1(receiver, a0); }, addText$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).addText$1(receiver, a0); }, allMatches$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver).allMatches$1(receiver, a0); }, allMatches$2$s: function(receiver, a0, a1) { return J.getInterceptor$s(receiver).allMatches$2(receiver, a0, a1); }, any$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).any$1(receiver, a0); }, arcToOval$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).arcToOval$4(receiver, a0, a1, a2, a3); }, arcToRotated$7$x: function(receiver, a0, a1, a2, a3, a4, a5, a6) { return J.getInterceptor$x(receiver).arcToRotated$7(receiver, a0, a1, a2, a3, a4, a5, a6); }, arrayBuffer$0$x: function(receiver) { return J.getInterceptor$x(receiver).arrayBuffer$0(receiver); }, asByteData$0$x: function(receiver) { return J.getInterceptor$x(receiver).asByteData$0(receiver); }, asByteData$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).asByteData$2(receiver, a0, a1); }, asFloat64List$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).asFloat64List$2(receiver, a0, a1); }, asInt32List$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).asInt32List$2(receiver, a0, a1); }, asInt64List$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).asInt64List$2(receiver, a0, a1); }, asMap$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).asMap$0(receiver); }, asUint8List$0$x: function(receiver) { return J.getInterceptor$x(receiver).asUint8List$0(receiver); }, asUint8List$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).asUint8List$2(receiver, a0, a1); }, beginRecording$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).beginRecording$1(receiver, a0); }, boundingBox$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).boundingBox$1(receiver, a0); }, build$0$x: function(receiver) { return J.getInterceptor$x(receiver).build$0(receiver); }, cancel$0$z: function(receiver) { return J.getInterceptor$z(receiver).cancel$0(receiver); }, cast$1$0$ax: function(receiver, $T1) { return J.getInterceptor$ax(receiver).cast$1$0(receiver, $T1); }, cast$2$0$ax: function(receiver, $T1, $T2) { return J.getInterceptor$ax(receiver).cast$2$0(receiver, $T1, $T2); }, ceil$0$n: function(receiver) { return J.getInterceptor$n(receiver).ceil$0(receiver); }, clamp$2$n: function(receiver, a0, a1) { return J.getInterceptor$n(receiver).clamp$2(receiver, a0, a1); }, clear$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).clear$0(receiver); }, clear$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).clear$1(receiver, a0); }, clipPath$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipPath$3(receiver, a0, a1, a2); }, clipRRect$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipRRect$3(receiver, a0, a1, a2); }, clipRect$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).clipRect$3(receiver, a0, a1, a2); }, close$0$x: function(receiver) { return J.getInterceptor$x(receiver).close$0(receiver); }, codeUnitAt$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver).codeUnitAt$1(receiver, a0); }, compareTo$1$ns: function(receiver, a0) { return J.getInterceptor$ns(receiver).compareTo$1(receiver, a0); }, compareTo$3$expenseCategory$sortAscending$sortField$ns: function(receiver, a0, a1, a2) { return J.getInterceptor$ns(receiver).compareTo$3$expenseCategory$sortAscending$sortField(receiver, a0, a1, a2); }, compareTo$3$sortAscending$sortField$taskStatus$ns: function(receiver, a0, a1, a2) { return J.getInterceptor$ns(receiver).compareTo$3$sortAscending$sortField$taskStatus(receiver, a0, a1, a2); }, compareTo$5$clientMap$invoice$sortAscending$sortField$userMap$ns: function(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$ns(receiver).compareTo$5$clientMap$invoice$sortAscending$sortField$userMap(receiver, a0, a1, a2, a3, a4); }, compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$ns: function(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$ns(receiver).compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap(receiver, a0, a1, a2, a3, a4, a5); }, complete$1$z: function(receiver, a0) { return J.getInterceptor$z(receiver).complete$1(receiver, a0); }, complete$2$isReplaced$z: function(receiver, a0, a1) { return J.getInterceptor$z(receiver).complete$2$isReplaced(receiver, a0, a1); }, computeTonalColors$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).computeTonalColors$1(receiver, a0); }, concat$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).concat$1(receiver, a0); }, contains$1$asx: function(receiver, a0) { return J.getInterceptor$asx(receiver).contains$1(receiver, a0); }, contains$2$asx: function(receiver, a0, a1) { return J.getInterceptor$asx(receiver).contains$2(receiver, a0, a1); }, containsKey$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).containsKey$1(receiver, a0); }, containsPoint$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).containsPoint$1(receiver, a0); }, copy$0$x: function(receiver) { return J.getInterceptor$x(receiver).copy$0(receiver); }, createElement$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).createElement$1(receiver, a0); }, decodeNextFrame$0$x: function(receiver) { return J.getInterceptor$x(receiver).decodeNextFrame$0(receiver); }, delete$0$x: function(receiver) { return J.getInterceptor$x(receiver).delete$0(receiver); }, detach$0$z: function(receiver) { return J.getInterceptor$z(receiver).detach$0(receiver); }, didExceedMaxLines$0$x: function(receiver) { return J.getInterceptor$x(receiver).didExceedMaxLines$0(receiver); }, disconnect$0$x: function(receiver) { return J.getInterceptor$x(receiver).disconnect$0(receiver); }, dispose$0$x: function(receiver) { return J.getInterceptor$x(receiver).dispose$0(receiver); }, drawArc$5$x: function(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).drawArc$5(receiver, a0, a1, a2, a3, a4); }, drawCircle$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).drawCircle$4(receiver, a0, a1, a2, a3); }, drawDRRect$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).drawDRRect$3(receiver, a0, a1, a2); }, drawImageRectCubic$6$x: function(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).drawImageRectCubic$6(receiver, a0, a1, a2, a3, a4, a5); }, drawImageRectOptions$6$x: function(receiver, a0, a1, a2, a3, a4, a5) { return J.getInterceptor$x(receiver).drawImageRectOptions$6(receiver, a0, a1, a2, a3, a4, a5); }, drawLine$5$x: function(receiver, a0, a1, a2, a3, a4) { return J.getInterceptor$x(receiver).drawLine$5(receiver, a0, a1, a2, a3, a4); }, drawPaint$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).drawPaint$1(receiver, a0); }, drawParagraph$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).drawParagraph$3(receiver, a0, a1, a2); }, drawPath$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawPath$2(receiver, a0, a1); }, drawPicture$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).drawPicture$1(receiver, a0); }, drawRRect$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawRRect$2(receiver, a0, a1); }, drawRect$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).drawRect$2(receiver, a0, a1); }, drawShadow$7$x: function(receiver, a0, a1, a2, a3, a4, a5, a6) { return J.getInterceptor$x(receiver).drawShadow$7(receiver, a0, a1, a2, a3, a4, a5, a6); }, elementAt$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).elementAt$1(receiver, a0); }, firstWhere$2$orElse$ax: function(receiver, a0, a1) { return J.getInterceptor$ax(receiver).firstWhere$2$orElse(receiver, a0, a1); }, floor$0$n: function(receiver) { return J.getInterceptor$n(receiver).floor$0(receiver); }, flush$0$x: function(receiver) { return J.getInterceptor$x(receiver).flush$0(receiver); }, focus$0$x: function(receiver) { return J.getInterceptor$x(receiver).focus$0(receiver); }, fold$1$2$ax: function(receiver, a0, a1, $T1) { return J.getInterceptor$ax(receiver).fold$1$2(receiver, a0, a1, $T1); }, forEach$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).forEach$1(receiver, a0); }, getAlphabeticBaseline$0$x: function(receiver) { return J.getInterceptor$x(receiver).getAlphabeticBaseline$0(receiver); }, getAuthResponse$0$x: function(receiver) { return J.getInterceptor$x(receiver).getAuthResponse$0(receiver); }, getBasicProfile$0$x: function(receiver) { return J.getInterceptor$x(receiver).getBasicProfile$0(receiver); }, getBounds$0$x: function(receiver) { return J.getInterceptor$x(receiver).getBounds$0(receiver); }, getCanvas$0$x: function(receiver) { return J.getInterceptor$x(receiver).getCanvas$0(receiver); }, getCurrentFrame$0$x: function(receiver) { return J.getInterceptor$x(receiver).getCurrentFrame$0(receiver); }, getEmail$0$x: function(receiver) { return J.getInterceptor$x(receiver).getEmail$0(receiver); }, getFloat64$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getFloat64$2(receiver, a0, a1); }, getFrameCount$0$x: function(receiver) { return J.getInterceptor$x(receiver).getFrameCount$0(receiver); }, getGlyphBounds$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).getGlyphBounds$3(receiver, a0, a1, a2); }, getGlyphIDs$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).getGlyphIDs$1(receiver, a0); }, getGlyphPositionAtCoordinate$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getGlyphPositionAtCoordinate$2(receiver, a0, a1); }, getHeight$0$x: function(receiver) { return J.getInterceptor$x(receiver).getHeight$0(receiver); }, getId$0$x: function(receiver) { return J.getInterceptor$x(receiver).getId$0(receiver); }, getIdeographicBaseline$0$x: function(receiver) { return J.getInterceptor$x(receiver).getIdeographicBaseline$0(receiver); }, getImageUrl$0$x: function(receiver) { return J.getInterceptor$x(receiver).getImageUrl$0(receiver); }, getInt32$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getInt32$2(receiver, a0, a1); }, getInt64$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getInt64$2(receiver, a0, a1); }, getLineMetrics$0$x: function(receiver) { return J.getInterceptor$x(receiver).getLineMetrics$0(receiver); }, getLongestLine$0$x: function(receiver) { return J.getInterceptor$x(receiver).getLongestLine$0(receiver); }, getMaxIntrinsicWidth$0$x: function(receiver) { return J.getInterceptor$x(receiver).getMaxIntrinsicWidth$0(receiver); }, getMaxWidth$0$x: function(receiver) { return J.getInterceptor$x(receiver).getMaxWidth$0(receiver); }, getMinIntrinsicWidth$0$x: function(receiver) { return J.getInterceptor$x(receiver).getMinIntrinsicWidth$0(receiver); }, getName$0$x: function(receiver) { return J.getInterceptor$x(receiver).getName$0(receiver); }, getPage$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).getPage$1(receiver, a0); }, getPath$0$x: function(receiver) { return J.getInterceptor$x(receiver).getPath$0(receiver); }, getRange$2$ax: function(receiver, a0, a1) { return J.getInterceptor$ax(receiver).getRange$2(receiver, a0, a1); }, getRectsForPlaceholders$0$x: function(receiver) { return J.getInterceptor$x(receiver).getRectsForPlaceholders$0(receiver); }, getRectsForRange$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).getRectsForRange$4(receiver, a0, a1, a2, a3); }, getRepetitionCount$0$x: function(receiver) { return J.getInterceptor$x(receiver).getRepetitionCount$0(receiver); }, getState$0$x: function(receiver) { return J.getInterceptor$x(receiver).getState$0(receiver); }, getUint16$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getUint16$2(receiver, a0, a1); }, getUint32$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).getUint32$2(receiver, a0, a1); }, getUint8$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).getUint8$1(receiver, a0); }, getViewport$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).getViewport$1(receiver, a0); }, getWordBoundary$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).getWordBoundary$1(receiver, a0); }, go$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).go$1(receiver, a0); }, height$0$x: function(receiver) { return J.getInterceptor$x(receiver).height$0(receiver); }, indexOf$1$asx: function(receiver, a0) { return J.getInterceptor$asx(receiver).indexOf$1(receiver, a0); }, indexOf$2$asx: function(receiver, a0, a1) { return J.getInterceptor$asx(receiver).indexOf$2(receiver, a0, a1); }, insert$2$ax: function(receiver, a0, a1) { return J.getInterceptor$ax(receiver).insert$2(receiver, a0, a1); }, isAliasOf$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).isAliasOf$1(receiver, a0); }, isDeleted$0$x: function(receiver) { return J.getInterceptor$x(receiver).isDeleted$0(receiver); }, isEmpty$0$asx: function(receiver) { return J.getInterceptor$asx(receiver).isEmpty$0(receiver); }, isIdentity$0$z: function(receiver) { return J.getInterceptor$z(receiver).isIdentity$0(receiver); }, isSignedIn$0$x: function(receiver) { return J.getInterceptor$x(receiver).isSignedIn$0(receiver); }, join$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).join$1(receiver, a0); }, layout$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).layout$1(receiver, a0); }, lineTo$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).lineTo$2(receiver, a0, a1); }, listen$3$onDone$onError$z: function(receiver, a0, a1, a2) { return J.getInterceptor$z(receiver).listen$3$onDone$onError(receiver, a0, a1, a2); }, listen$4$cancelOnError$onDone$onError$z: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$z(receiver).listen$4$cancelOnError$onDone$onError(receiver, a0, a1, a2, a3); }, listener$0$z: function(receiver) { return J.getInterceptor$z(receiver).listener$0(receiver); }, map$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).map$1(receiver, a0); }, map$1$1$ax: function(receiver, a0, $T1) { return J.getInterceptor$ax(receiver).map$1$1(receiver, a0, $T1); }, map$2$1$ax: function(receiver, a0, $T1, $T2) { return J.getInterceptor$ax(receiver).map$2$1(receiver, a0, $T1, $T2); }, matchAsPrefix$2$s: function(receiver, a0, a1) { return J.getInterceptor$s(receiver).matchAsPrefix$2(receiver, a0, a1); }, moveTo$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).moveTo$2(receiver, a0, a1); }, noSuchMethod$1$: function(receiver, a0) { return J.getInterceptor$(receiver).noSuchMethod$1(receiver, a0); }, open$3$async$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).open$3$async(receiver, a0, a1, a2); }, parse$2$z: function(receiver, a0, a1) { return J.getInterceptor$z(receiver).parse$2(receiver, a0, a1); }, pause$0$z: function(receiver) { return J.getInterceptor$z(receiver).pause$0(receiver); }, pop$0$x: function(receiver) { return J.getInterceptor$x(receiver).pop$0(receiver); }, preventDefault$0$x: function(receiver) { return J.getInterceptor$x(receiver).preventDefault$0(receiver); }, pushPaintStyle$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).pushPaintStyle$3(receiver, a0, a1, a2); }, pushState$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).pushState$3(receiver, a0, a1, a2); }, pushStyle$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).pushStyle$1(receiver, a0); }, putIfAbsent$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).putIfAbsent$2(receiver, a0, a1); }, quadTo$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).quadTo$4(receiver, a0, a1, a2, a3); }, rMoveTo$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).rMoveTo$2(receiver, a0, a1); }, register$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).register$2(receiver, a0, a1); }, registerFont$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).registerFont$2(receiver, a0, a1); }, remove$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).remove$0(receiver); }, remove$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).remove$1(receiver, a0); }, removeAt$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).removeAt$1(receiver, a0); }, removeEventListener$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).removeEventListener$2(receiver, a0, a1); }, removeEventListener$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).removeEventListener$3(receiver, a0, a1, a2); }, removeLast$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).removeLast$0(receiver); }, removeListener$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).removeListener$1(receiver, a0); }, removeRange$2$ax: function(receiver, a0, a1) { return J.getInterceptor$ax(receiver).removeRange$2(receiver, a0, a1); }, removeWhere$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).removeWhere$1(receiver, a0); }, replaceFirst$2$s: function(receiver, a0, a1) { return J.getInterceptor$s(receiver).replaceFirst$2(receiver, a0, a1); }, replaceRange$3$asx: function(receiver, a0, a1, a2) { return J.getInterceptor$asx(receiver).replaceRange$3(receiver, a0, a1, a2); }, replaceState$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).replaceState$3(receiver, a0, a1, a2); }, replaceWith$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).replaceWith$1(receiver, a0); }, reset$0$x: function(receiver) { return J.getInterceptor$x(receiver).reset$0(receiver); }, restore$0$x: function(receiver) { return J.getInterceptor$x(receiver).restore$0(receiver); }, restoreToCount$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).restoreToCount$1(receiver, a0); }, resume$0$z: function(receiver) { return J.getInterceptor$z(receiver).resume$0(receiver); }, retainWhere$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).retainWhere$1(receiver, a0); }, rotate$3$x: function(receiver, a0, a1, a2) { return J.getInterceptor$x(receiver).rotate$3(receiver, a0, a1, a2); }, round$0$n: function(receiver) { return J.getInterceptor$n(receiver).round$0(receiver); }, roundToDouble$0$n: function(receiver) { return J.getInterceptor$n(receiver).roundToDouble$0(receiver); }, save$0$x: function(receiver) { return J.getInterceptor$x(receiver).save$0(receiver); }, saveLayer$4$x: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$x(receiver).saveLayer$4(receiver, a0, a1, a2, a3); }, scale$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).scale$2(receiver, a0, a1); }, select$0$x: function(receiver) { return J.getInterceptor$x(receiver).select$0(receiver); }, send$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).send$1(receiver, a0); }, setAntiAlias$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setAntiAlias$1(receiver, a0); }, setBlendMode$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setBlendMode$1(receiver, a0); }, setColorFilter$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setColorFilter$1(receiver, a0); }, setColorInt$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setColorInt$1(receiver, a0); }, setCurrentContext$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setCurrentContext$1(receiver, a0); }, setFillType$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setFillType$1(receiver, a0); }, setFilterQuality$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setFilterQuality$1(receiver, a0); }, setMaskFilter$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setMaskFilter$1(receiver, a0); }, setRange$3$ax: function(receiver, a0, a1, a2) { return J.getInterceptor$ax(receiver).setRange$3(receiver, a0, a1, a2); }, setRange$4$ax: function(receiver, a0, a1, a2, a3) { return J.getInterceptor$ax(receiver).setRange$4(receiver, a0, a1, a2, a3); }, setResourceCacheLimitBytes$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setResourceCacheLimitBytes$1(receiver, a0); }, setShader$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setShader$1(receiver, a0); }, setStrokeCap$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeCap$1(receiver, a0); }, setStrokeJoin$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeJoin$1(receiver, a0); }, setStrokeWidth$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setStrokeWidth$1(receiver, a0); }, setStyle$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).setStyle$1(receiver, a0); }, signIn$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).signIn$1(receiver, a0); }, signOut$0$x: function(receiver) { return J.getInterceptor$x(receiver).signOut$0(receiver); }, skip$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).skip$1(receiver, a0); }, sort$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).sort$1(receiver, a0); }, split$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver).split$1(receiver, a0); }, startsWith$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver).startsWith$1(receiver, a0); }, startsWith$2$s: function(receiver, a0, a1) { return J.getInterceptor$s(receiver).startsWith$2(receiver, a0, a1); }, stopPropagation$0$x: function(receiver) { return J.getInterceptor$x(receiver).stopPropagation$0(receiver); }, sublist$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).sublist$1(receiver, a0); }, sublist$2$ax: function(receiver, a0, a1) { return J.getInterceptor$ax(receiver).sublist$2(receiver, a0, a1); }, submit$0$z: function(receiver) { return J.getInterceptor$z(receiver).submit$0(receiver); }, substring$1$s: function(receiver, a0) { return J.getInterceptor$s(receiver).substring$1(receiver, a0); }, substring$2$s: function(receiver, a0, a1) { return J.getInterceptor$s(receiver).substring$2(receiver, a0, a1); }, take$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).take$1(receiver, a0); }, text$0$x: function(receiver) { return J.getInterceptor$x(receiver).text$0(receiver); }, then$1$x: function(receiver, a0) { return J.getInterceptor$x(receiver).then$1(receiver, a0); }, then$1$1$x: function(receiver, a0, $T1) { return J.getInterceptor$x(receiver).then$1$1(receiver, a0, $T1); }, then$1$2$onError$x: function(receiver, a0, a1, $T1) { return J.getInterceptor$x(receiver).then$1$2$onError(receiver, a0, a1, $T1); }, then$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).then$2(receiver, a0, a1); }, toCmds$0$x: function(receiver) { return J.getInterceptor$x(receiver).toCmds$0(receiver); }, toInt$0$n: function(receiver) { return J.getInterceptor$n(receiver).toInt$0(receiver); }, toList$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).toList$0(receiver); }, toList$1$growable$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).toList$1$growable(receiver, a0); }, toLowerCase$0$s: function(receiver) { return J.getInterceptor$s(receiver).toLowerCase$0(receiver); }, toRadixString$1$n: function(receiver, a0) { return J.getInterceptor$n(receiver).toRadixString$1(receiver, a0); }, toSVGString$0$x: function(receiver) { return J.getInterceptor$x(receiver).toSVGString$0(receiver); }, toSet$0$ax: function(receiver) { return J.getInterceptor$ax(receiver).toSet$0(receiver); }, toString$0$: function(receiver) { return J.getInterceptor$(receiver).toString$0(receiver); }, toStringAsFixed$1$n: function(receiver, a0) { return J.getInterceptor$n(receiver).toStringAsFixed$1(receiver, a0); }, toTypedArray$0$x: function(receiver) { return J.getInterceptor$x(receiver).toTypedArray$0(receiver); }, total$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).total$2(receiver, a0, a1); }, transform$9$x: function(receiver, a0, a1, a2, a3, a4, a5, a6, a7, a8) { return J.getInterceptor$x(receiver).transform$9(receiver, a0, a1, a2, a3, a4, a5, a6, a7, a8); }, translate$2$x: function(receiver, a0, a1) { return J.getInterceptor$x(receiver).translate$2(receiver, a0, a1); }, trim$0$s: function(receiver) { return J.getInterceptor$s(receiver).trim$0(receiver); }, trimLeft$0$s: function(receiver) { return J.getInterceptor$s(receiver).trimLeft$0(receiver); }, trimRight$0$s: function(receiver) { return J.getInterceptor$s(receiver).trimRight$0(receiver); }, unlock$0$x: function(receiver) { return J.getInterceptor$x(receiver).unlock$0(receiver); }, where$1$ax: function(receiver, a0) { return J.getInterceptor$ax(receiver).where$1(receiver, a0); }, width$0$x: function(receiver) { return J.getInterceptor$x(receiver).width$0(receiver); }, Interceptor: function Interceptor() { }, JSBool: function JSBool() { }, JSNull: function JSNull() { }, JavaScriptObject: function JavaScriptObject() { }, PlainJavaScriptObject: function PlainJavaScriptObject() { }, UnknownJavaScriptObject: function UnknownJavaScriptObject() { }, JavaScriptFunction: function JavaScriptFunction() { }, JSArray: function JSArray(t0) { this.$ti = t0; }, JSUnmodifiableArray: function JSUnmodifiableArray(t0) { this.$ti = t0; }, ArrayIterator: function ArrayIterator(t0, t1, t2) { var _ = this; _.__interceptors$_iterable = t0; _.__interceptors$_length = t1; _.__interceptors$_index = 0; _.__interceptors$_current = null; _.$ti = t2; }, JSNumber: function JSNumber() { }, JSInt: function JSInt() { }, JSNumNotInt: function JSNumNotInt() { }, JSString: function JSString() { } }, P = { _AsyncRun__initializeScheduleImmediate: function() { var div, span, t1 = {}; if (self.scheduleImmediate != null) return P.async__AsyncRun__scheduleImmediateJsOverride$closure(); if (self.MutationObserver != null && self.document != null) { div = self.document.createElement("div"); span = self.document.createElement("span"); t1.storedCallback = null; new self.MutationObserver(H.convertDartClosureToJS(new P._AsyncRun__initializeScheduleImmediate_internalCallback(t1), 1)).observe(div, {childList: true}); return new P._AsyncRun__initializeScheduleImmediate_closure(t1, div, span); } else if (self.setImmediate != null) return P.async__AsyncRun__scheduleImmediateWithSetImmediate$closure(); return P.async__AsyncRun__scheduleImmediateWithTimer$closure(); }, _AsyncRun__scheduleImmediateJsOverride: function(callback) { self.scheduleImmediate(H.convertDartClosureToJS(new P._AsyncRun__scheduleImmediateJsOverride_internalCallback(callback), 0)); }, _AsyncRun__scheduleImmediateWithSetImmediate: function(callback) { self.setImmediate(H.convertDartClosureToJS(new P._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback(callback), 0)); }, _AsyncRun__scheduleImmediateWithTimer: function(callback) { P.Timer__createTimer(C.Duration_0, callback); }, Timer__createTimer: function(duration, callback) { var milliseconds = C.JSInt_methods._tdivFast$1(duration._duration, 1000); return P._TimerImpl$(milliseconds < 0 ? 0 : milliseconds, callback); }, Timer__createPeriodicTimer: function(duration, callback) { var milliseconds = C.JSInt_methods._tdivFast$1(duration._duration, 1000); return P._TimerImpl$periodic(milliseconds < 0 ? 0 : milliseconds, callback); }, _TimerImpl$: function(milliseconds, callback) { var t1 = new P._TimerImpl(true); t1._TimerImpl$2(milliseconds, callback); return t1; }, _TimerImpl$periodic: function(milliseconds, callback) { var t1 = new P._TimerImpl(false); t1._TimerImpl$periodic$2(milliseconds, callback); return t1; }, _makeAsyncAwaitCompleter: function($T) { return new P._AsyncAwaitCompleter(new P._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncAwaitCompleter<0>")); }, _asyncStartSync: function(bodyFunction, completer) { bodyFunction.call$2(0, null); completer.isSync = true; return completer._future; }, _asyncAwait: function(object, bodyFunction) { P._awaitOnObject(object, bodyFunction); }, _asyncReturn: function(object, completer) { completer.complete$1(0, object); }, _asyncRethrow: function(object, completer) { completer.completeError$2(H.unwrapException(object), H.getTraceFromException(object)); }, _awaitOnObject: function(object, bodyFunction) { var t1, future, thenCallback = new P._awaitOnObject_closure(bodyFunction), errorCallback = new P._awaitOnObject_closure0(bodyFunction); if (object instanceof P._Future) object._thenAwait$1$2(thenCallback, errorCallback, type$.dynamic); else { t1 = type$.dynamic; if (type$.Future_dynamic._is(object)) object.then$1$2$onError(0, thenCallback, errorCallback, t1); else { future = new P._Future($.Zone__current, type$._Future_dynamic); future._state = 4; future._resultOrListeners = object; future._thenAwait$1$2(thenCallback, errorCallback, t1); } } }, _wrapJsFunctionForAsync: function($function) { var $protected = function(fn, ERROR) { return function(errorCode, result) { while (true) try { fn(errorCode, result); break; } catch (error) { result = error; errorCode = ERROR; } }; }($function, 1); return $.Zone__current.registerBinaryCallback$3$1(new P._wrapJsFunctionForAsync_closure($protected), type$.void, type$.int, type$.dynamic); }, _asyncStarHelper: function(object, bodyFunctionOrErrorCode, controller) { var t1, t2, stream; if (bodyFunctionOrErrorCode === 0) { t1 = controller.cancelationFuture; if (t1 != null) t1._completeWithValue$1(null); else controller.get$controller(controller).close$0(0); return; } else if (bodyFunctionOrErrorCode === 1) { t1 = controller.cancelationFuture; if (t1 != null) t1._completeError$2(H.unwrapException(object), H.getTraceFromException(object)); else { t1 = H.unwrapException(object); t2 = H.getTraceFromException(object); controller.get$controller(controller).addError$2(t1, t2); controller.get$controller(controller).close$0(0); } return; } if (object instanceof P._IterationMarker) { if (controller.cancelationFuture != null) { bodyFunctionOrErrorCode.call$2(2, null); return; } t1 = object.state; if (t1 === 0) { t1 = object.value; controller.get$controller(controller).add$1(0, t1); P.scheduleMicrotask(new P._asyncStarHelper_closure(controller, bodyFunctionOrErrorCode)); return; } else if (t1 === 1) { stream = object.value; controller.get$controller(controller).addStream$2$cancelOnError(0, stream, false).then$1(0, new P._asyncStarHelper_closure0(controller, bodyFunctionOrErrorCode)); return; } } P._awaitOnObject(object, bodyFunctionOrErrorCode); }, _streamOfController: function(controller) { var t1 = controller.get$controller(controller); return t1.get$stream(t1); }, _AsyncStarStreamController$: function(body, $T) { var t1 = new P._AsyncStarStreamController($T._eval$1("_AsyncStarStreamController<0>")); t1._AsyncStarStreamController$1(body, $T); return t1; }, _makeAsyncStarStreamController: function(body, $T) { return P._AsyncStarStreamController$(body, $T); }, _IterationMarker_yieldStar: function(values) { return new P._IterationMarker(values, 1); }, _IterationMarker_endOfIteration: function() { return C._IterationMarker_null_2; }, _IterationMarker_yieldSingle: function(value) { return new P._IterationMarker(value, 0); }, _IterationMarker_uncaughtError: function(error) { return new P._IterationMarker(error, 3); }, _makeSyncStarIterable: function(body, $T) { return new P._SyncStarIterable(body, $T._eval$1("_SyncStarIterable<0>")); }, AsyncError$: function(error, stackTrace) { var t1 = H.checkNotNullable(error, "error", type$.Object); return new P.AsyncError(t1, stackTrace == null ? P.AsyncError_defaultStackTrace(error) : stackTrace); }, AsyncError_defaultStackTrace: function(error) { var stackTrace; if (type$.Error._is(error)) { stackTrace = error.get$stackTrace(); if (stackTrace != null) return stackTrace; } return C._StringStackTrace_3uE; }, Future_Future: function(computation, $T) { var result = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); P.Timer_Timer(C.Duration_0, new P.Future_Future_closure(result, computation)); return result; }, Future_Future$microtask: function(computation, $T) { var result = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); P.scheduleMicrotask(new P.Future_Future$microtask_closure(result, computation)); return result; }, Future_Future$value: function(value, $T) { var t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); t1._asyncComplete$1(value); return t1; }, Future_Future$error: function(error, stackTrace, $T) { var t1, replacement; H.checkNotNullable(error, "error", type$.Object); t1 = $.Zone__current; if (t1 !== C.C__RootZone) { replacement = t1.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } } if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); t1._asyncCompleteError$2(error, stackTrace); return t1; }, Future_Future$delayed: function(duration, computation, $T) { var result; computation == null; result = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); P.Timer_Timer(duration, new P.Future_Future$delayed_closure(computation, result, $T)); return result; }, Future_wait: function(futures, $T) { var _error_get, _error_set, _stackTrace_get, _stackTrace_set, handleError, future, pos, e, st, t1, t2, exception, _box_0 = {}, cleanUp = null, eagerError = false, _future = new P._Future($.Zone__current, $T._eval$1("_Future>")); _box_0.values = null; _box_0.remaining = 0; _box_0._error = $; _error_get = new P.Future_wait__error_get(_box_0); _error_set = new P.Future_wait__error_set(_box_0); _box_0._stackTrace0 = $; _stackTrace_get = new P.Future_wait__stackTrace_get(_box_0); _stackTrace_set = new P.Future_wait__stackTrace_set(_box_0); handleError = new P.Future_wait_handleError(_box_0, cleanUp, eagerError, _future, _error_set, _stackTrace_set, _error_get, _stackTrace_get); try { for (t1 = J.get$iterator$ax(futures), t2 = type$.Null; t1.moveNext$0();) { future = t1.get$current(t1); pos = _box_0.remaining; J.then$1$2$onError$x(future, new P.Future_wait_closure(_box_0, pos, _future, cleanUp, eagerError, _error_get, _stackTrace_get, $T), handleError, t2); ++_box_0.remaining; } t1 = _box_0.remaining; if (t1 === 0) { t1 = _future; t1._completeWithValue$1(H.setRuntimeTypeInfo([], $T._eval$1("JSArray<0>"))); return t1; } _box_0.values = P.List_List$filled(t1, null, false, $T._eval$1("0?")); } catch (exception) { e = H.unwrapException(exception); st = H.getTraceFromException(exception); if (_box_0.remaining === 0 || eagerError) return P.Future_Future$error(e, st, $T._eval$1("List<0>")); else { _error_set.call$1(e); _stackTrace_set.call$1(st); } } return _future; }, Completer_Completer: function($T) { return new P._AsyncCompleter(new P._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncCompleter<0>")); }, _completeWithErrorCallback: function(result, error, stackTrace) { var replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); result._completeError$2(error, stackTrace); }, _Future$zoneValue: function(value, _zone, $T) { var t1 = new P._Future(_zone, $T._eval$1("_Future<0>")); t1._state = 4; t1._resultOrListeners = value; return t1; }, _Future__chainCoreFuture: function(source, target) { var t1, listeners; for (; t1 = source._state, t1 === 2;) source = source._resultOrListeners; if (t1 >= 4) { listeners = target._removeListeners$0(); target._state = source._state; target._resultOrListeners = source._resultOrListeners; P._Future__propagateToListeners(target, listeners); } else { listeners = target._resultOrListeners; target._state = 2; target._resultOrListeners = source; source._prependListeners$1(listeners); } }, _Future__propagateToListeners: function(source, listeners) { var t2, _box_0, hasError, nextListener, nextListener0, t3, sourceResult, t4, t5, zone, oldZone, result, current, _box_1 = {}, t1 = _box_1.source = source; for (t2 = type$.Future_dynamic; true;) { _box_0 = {}; hasError = t1._state === 8; if (listeners == null) { if (hasError) { t2 = t1._resultOrListeners; t1._zone.handleUncaughtError$2(t2.error, t2.stackTrace); } return; } _box_0.listener = listeners; nextListener = listeners._nextListener; for (t1 = listeners; nextListener != null; t1 = nextListener, nextListener = nextListener0) { t1._nextListener = null; P._Future__propagateToListeners(_box_1.source, t1); _box_0.listener = nextListener; nextListener0 = nextListener._nextListener; } t3 = _box_1.source; sourceResult = t3._resultOrListeners; _box_0.listenerHasError = hasError; _box_0.listenerValueOrError = sourceResult; t4 = !hasError; if (t4) { t5 = t1.state; t5 = (t5 & 1) !== 0 || (t5 & 15) === 8; } else t5 = true; if (t5) { zone = t1.result._zone; if (hasError) { t1 = t3._zone; t1 = !(t1 === zone || t1.get$errorZone() === zone.get$errorZone()); } else t1 = false; if (t1) { t1 = _box_1.source; t2 = t1._resultOrListeners; t1._zone.handleUncaughtError$2(t2.error, t2.stackTrace); return; } oldZone = $.Zone__current; if (oldZone !== zone) $.Zone__current = zone; else oldZone = null; t1 = _box_0.listener.state; if ((t1 & 15) === 8) new P._Future__propagateToListeners_handleWhenCompleteCallback(_box_0, _box_1, hasError).call$0(); else if (t4) { if ((t1 & 1) !== 0) new P._Future__propagateToListeners_handleValueCallback(_box_0, sourceResult).call$0(); } else if ((t1 & 2) !== 0) new P._Future__propagateToListeners_handleError(_box_1, _box_0).call$0(); if (oldZone != null) $.Zone__current = oldZone; t1 = _box_0.listenerValueOrError; if (t2._is(t1)) { t3 = _box_0.listener.$ti; t3 = t3._eval$1("Future<2>")._is(t1) || !t3._rest[1]._is(t1); } else t3 = false; if (t3) { result = _box_0.listener.result; if (t1 instanceof P._Future) if (t1._state >= 4) { current = result._resultOrListeners; result._resultOrListeners = null; listeners = result._reverseListeners$1(current); result._state = t1._state; result._resultOrListeners = t1._resultOrListeners; _box_1.source = t1; continue; } else P._Future__chainCoreFuture(t1, result); else result._chainForeignFuture$1(t1); return; } } result = _box_0.listener.result; current = result._resultOrListeners; result._resultOrListeners = null; listeners = result._reverseListeners$1(current); t1 = _box_0.listenerHasError; t3 = _box_0.listenerValueOrError; if (!t1) { result._state = 4; result._resultOrListeners = t3; } else { result._state = 8; result._resultOrListeners = t3; } _box_1.source = result; t1 = result; } }, _registerErrorHandler: function(errorHandler, zone) { if (type$.dynamic_Function_Object_StackTrace._is(errorHandler)) return zone.registerBinaryCallback$3$1(errorHandler, type$.dynamic, type$.Object, type$.StackTrace); if (type$.dynamic_Function_Object._is(errorHandler)) return zone.registerUnaryCallback$2$1(errorHandler, type$.dynamic, type$.Object); throw H.wrapException(P.ArgumentError$value(errorHandler, "onError", "Error handler must accept one Object or one Object and a StackTrace as arguments, and return a valid result")); }, _microtaskLoop: function() { var entry, next; for (entry = $._nextCallback; entry != null; entry = $._nextCallback) { $._lastPriorityCallback = null; next = entry.next; $._nextCallback = next; if (next == null) $._lastCallback = null; entry.callback.call$0(); } }, _startMicrotaskLoop: function() { $._isInCallbackLoop = true; try { P._microtaskLoop(); } finally { $._lastPriorityCallback = null; $._isInCallbackLoop = false; if ($._nextCallback != null) $.$get$_AsyncRun__scheduleImmediateClosure().call$1(P.async___startMicrotaskLoop$closure()); } }, _scheduleAsyncCallback: function(callback) { var newEntry = new P._AsyncCallbackEntry(callback), lastCallback = $._lastCallback; if (lastCallback == null) { $._nextCallback = $._lastCallback = newEntry; if (!$._isInCallbackLoop) $.$get$_AsyncRun__scheduleImmediateClosure().call$1(P.async___startMicrotaskLoop$closure()); } else $._lastCallback = lastCallback.next = newEntry; }, _schedulePriorityAsyncCallback: function(callback) { var entry, lastPriorityCallback, next, t1 = $._nextCallback; if (t1 == null) { P._scheduleAsyncCallback(callback); $._lastPriorityCallback = $._lastCallback; return; } entry = new P._AsyncCallbackEntry(callback); lastPriorityCallback = $._lastPriorityCallback; if (lastPriorityCallback == null) { entry.next = t1; $._nextCallback = $._lastPriorityCallback = entry; } else { next = lastPriorityCallback.next; entry.next = next; $._lastPriorityCallback = lastPriorityCallback.next = entry; if (next == null) $._lastCallback = entry; } }, scheduleMicrotask: function(callback) { var t1, _null = null, currentZone = $.Zone__current; if (C.C__RootZone === currentZone) { P._rootScheduleMicrotask(_null, _null, C.C__RootZone, callback); return; } if (C.C__RootZone === currentZone.get$_scheduleMicrotask().zone) t1 = C.C__RootZone.get$errorZone() === currentZone.get$errorZone(); else t1 = false; if (t1) { P._rootScheduleMicrotask(_null, _null, currentZone, currentZone.registerCallback$1$1(callback, type$.void)); return; } t1 = $.Zone__current; t1.scheduleMicrotask$1(t1.bindCallbackGuarded$1(callback)); }, Stream_Stream$fromFuture: function(future, $T) { var _null = null, t1 = $T._eval$1("_SyncStreamController<0>"), controller = new P._SyncStreamController(_null, _null, _null, _null, t1); future.then$1$2$onError(0, new P.Stream_Stream$fromFuture_closure(controller, $T), new P.Stream_Stream$fromFuture_closure0(controller), type$.Null); return new P._ControllerStream(controller, t1._eval$1("_ControllerStream<1>")); }, Stream_Stream$fromIterable: function(elements, $T) { return new P._GeneratedStreamImpl(new P.Stream_Stream$fromIterable_closure(elements, $T), $T._eval$1("_GeneratedStreamImpl<0>")); }, StreamIterator_StreamIterator: function(stream, $T) { return new P._StreamIterator(H.checkNotNullable(stream, "stream", type$.Object), $T._eval$1("_StreamIterator<0>")); }, StreamController_StreamController: function(onCancel, onListen, onPause, onResume, sync, $T) { return sync ? new P._SyncStreamController(onListen, onPause, onResume, onCancel, $T._eval$1("_SyncStreamController<0>")) : new P._AsyncStreamController(onListen, onPause, onResume, onCancel, $T._eval$1("_AsyncStreamController<0>")); }, StreamController_StreamController$broadcast: function(onCancel, onListen, sync, $T) { return sync ? new P._SyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_SyncBroadcastStreamController<0>")) : new P._AsyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_AsyncBroadcastStreamController<0>")); }, _runGuarded: function(notificationHandler) { var e, s, exception; if (notificationHandler == null) return; try { notificationHandler.call$0(); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); $.Zone__current.handleUncaughtError$2(e, s); } }, _ControllerSubscription$: function(_controller, onData, onError, onDone, cancelOnError, $T) { var t1 = $.Zone__current, t2 = cancelOnError ? 1 : 0, t3 = P._BufferingStreamSubscription__registerDataHandler(t1, onData, $T), t4 = P._BufferingStreamSubscription__registerErrorHandler(t1, onError), t5 = onDone == null ? P.async___nullDoneHandler$closure() : onDone; return new P._ControllerSubscription(_controller, t3, t4, t1.registerCallback$1$1(t5, type$.void), t1, t2, $T._eval$1("_ControllerSubscription<0>")); }, _AddStreamState$: function(controller, source, cancelOnError, $T) { var t1 = $.Zone__current, t2 = controller.get$_async$_add(controller), t3 = controller.get$_addError(); return new P._AddStreamState(new P._Future(t1, type$._Future_dynamic), source.listen$4$cancelOnError$onDone$onError(0, t2, false, controller.get$_async$_close(), t3), $T._eval$1("_AddStreamState<0>")); }, _AddStreamState_makeErrorHandler: function(controller) { return new P._AddStreamState_makeErrorHandler_closure(controller); }, _BufferingStreamSubscription$: function(onData, onError, onDone, cancelOnError, $T) { var t1 = $.Zone__current, t2 = cancelOnError ? 1 : 0, t3 = P._BufferingStreamSubscription__registerDataHandler(t1, onData, $T), t4 = P._BufferingStreamSubscription__registerErrorHandler(t1, onError), t5 = onDone == null ? P.async___nullDoneHandler$closure() : onDone; return new P._BufferingStreamSubscription(t3, t4, t1.registerCallback$1$1(t5, type$.void), t1, t2, $T._eval$1("_BufferingStreamSubscription<0>")); }, _BufferingStreamSubscription__registerDataHandler: function(zone, handleData, $T) { var t1 = handleData == null ? P.async___nullDataHandler$closure() : handleData; return zone.registerUnaryCallback$2$1(t1, type$.void, $T); }, _BufferingStreamSubscription__registerErrorHandler: function(zone, handleError) { if (handleError == null) handleError = P.async___nullErrorHandler$closure(); if (type$.void_Function_Object_StackTrace._is(handleError)) return zone.registerBinaryCallback$3$1(handleError, type$.dynamic, type$.Object, type$.StackTrace); if (type$.void_Function_Object._is(handleError)) return zone.registerUnaryCallback$2$1(handleError, type$.dynamic, type$.Object); throw H.wrapException(P.ArgumentError$("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.")); }, _nullDataHandler: function(value) { }, _nullErrorHandler: function(error, stackTrace) { $.Zone__current.handleUncaughtError$2(error, stackTrace); }, _nullDoneHandler: function() { }, _DoneStreamSubscription$: function(_onDone, $T) { var t1 = new P._DoneStreamSubscription($.Zone__current, _onDone, $T._eval$1("_DoneStreamSubscription<0>")); t1._schedule$0(); return t1; }, _runUserCode: function(userCode, onSuccess, onError) { var e, s, replacement, error, stackTrace, exception; try { onSuccess.call$1(userCode.call$0()); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); replacement = $.Zone__current.errorCallback$2(e, s); if (replacement == null) onError.call$2(e, s); else { error = replacement.error; stackTrace = replacement.stackTrace; onError.call$2(error, stackTrace); } } }, _cancelAndError: function(subscription, future, error, stackTrace) { var cancelFuture = subscription.cancel$0(0); if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(new P._cancelAndError_closure(future, error, stackTrace)); else future._completeError$2(error, stackTrace); }, _cancelAndErrorClosure: function(subscription, future) { return new P._cancelAndErrorClosure_closure(subscription, future); }, _cancelAndValue: function(subscription, future, value) { var cancelFuture = subscription.cancel$0(0); if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(new P._cancelAndValue_closure(future, value)); else future._complete$1(value); }, _addErrorWithReplacement: function(sink, error, stackTrace) { var replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } sink._addError$2(error, stackTrace); }, _StreamHandlerTransformer$: function(handleData, handleDone, handleError, $S, $T) { return new P._StreamHandlerTransformer(new P._StreamHandlerTransformer_closure(handleData, handleError, handleDone, $T, $S), $S._eval$1("@<0>")._bind$1($T)._eval$1("_StreamHandlerTransformer<1,2>")); }, Timer_Timer: function(duration, callback) { var t1 = $.Zone__current; if (t1 === C.C__RootZone) return t1.createTimer$2(duration, callback); return t1.createTimer$2(duration, t1.bindCallbackGuarded$1(callback)); }, Timer_Timer$periodic: function(duration, callback) { var boundCallback, t1 = $.Zone__current; if (t1 === C.C__RootZone) return t1.createPeriodicTimer$2(duration, callback); boundCallback = t1.bindUnaryCallbackGuarded$1$1(callback, type$.Timer); return $.Zone__current.createPeriodicTimer$2(duration, boundCallback); }, _rootHandleUncaughtError: function($self, $parent, zone, error, stackTrace) { P._schedulePriorityAsyncCallback(new P._rootHandleUncaughtError_closure(error, stackTrace)); }, _rootRun: function($self, $parent, zone, f) { var old, t1 = $.Zone__current; if (t1 === zone) return f.call$0(); if (!(zone instanceof P._Zone)) throw H.wrapException(P.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$0(); return t1; } finally { $.Zone__current = old; } }, _rootRunUnary: function($self, $parent, zone, f, arg) { var old, t1 = $.Zone__current; if (t1 === zone) return f.call$1(arg); if (!(zone instanceof P._Zone)) throw H.wrapException(P.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$1(arg); return t1; } finally { $.Zone__current = old; } }, _rootRunBinary: function($self, $parent, zone, f, arg1, arg2) { var old, t1 = $.Zone__current; if (t1 === zone) return f.call$2(arg1, arg2); if (!(zone instanceof P._Zone)) throw H.wrapException(P.ArgumentError$value(zone, "zone", "Can only run in platform zones")); $.Zone__current = zone; old = t1; try { t1 = f.call$2(arg1, arg2); return t1; } finally { $.Zone__current = old; } }, _rootRegisterCallback: function($self, $parent, zone, f) { return f; }, _rootRegisterUnaryCallback: function($self, $parent, zone, f) { return f; }, _rootRegisterBinaryCallback: function($self, $parent, zone, f) { return f; }, _rootErrorCallback: function($self, $parent, zone, error, stackTrace) { return null; }, _rootScheduleMicrotask: function($self, $parent, zone, f) { var t1, t2; if (C.C__RootZone !== zone) { t1 = C.C__RootZone.get$errorZone(); t2 = zone.get$errorZone(); f = t1 !== t2 ? zone.bindCallbackGuarded$1(f) : zone.bindCallback$1$1(f, type$.void); } P._scheduleAsyncCallback(f); }, _rootCreateTimer: function($self, $parent, zone, duration, callback) { callback = zone.bindCallback$1$1(callback, type$.void); return P.Timer__createTimer(duration, callback); }, _rootCreatePeriodicTimer: function($self, $parent, zone, duration, callback) { callback = zone.bindUnaryCallback$2$1(callback, type$.void, type$.Timer); return P.Timer__createPeriodicTimer(duration, callback); }, _rootPrint: function($self, $parent, zone, line) { H.printString(H.S(line)); }, _printToZone: function(line) { $.Zone__current.print$1(0, line); }, _rootFork: function($self, $parent, zone, specification, zoneValues) { var valueMap, t1, $print, handleUncaughtError; $.printToZone = P.async___printToZone$closure(); if (specification == null) specification = C._ZoneSpecification_ALf; if (zoneValues == null) valueMap = zone.get$_async$_map(); else { t1 = type$.nullable_Object; valueMap = P.HashMap_HashMap$from(zoneValues, t1, t1); } t1 = new P._CustomZone(zone.get$_run(), zone.get$_runUnary(), zone.get$_runBinary(), zone.get$_registerCallback(), zone.get$_registerUnaryCallback(), zone.get$_registerBinaryCallback(), zone.get$_errorCallback(), zone.get$_scheduleMicrotask(), zone.get$_createTimer(), zone.get$_createPeriodicTimer(), zone.get$_print(), zone.get$_fork(), zone.get$_handleUncaughtError(), zone, valueMap); $print = specification.print; if ($print != null) t1._print = new P._ZoneFunction(t1, $print, type$._ZoneFunction_of_void_Function_Zone_ZoneDelegate_Zone_String); handleUncaughtError = specification.handleUncaughtError; if (handleUncaughtError != null) t1._handleUncaughtError = new P._ZoneFunction(t1, handleUncaughtError, type$._ZoneFunction_of_void_Function_Zone_ZoneDelegate_Zone_Object_StackTrace); return t1; }, _AsyncRun__initializeScheduleImmediate_internalCallback: function _AsyncRun__initializeScheduleImmediate_internalCallback(t0) { this._box_0 = t0; }, _AsyncRun__initializeScheduleImmediate_closure: function _AsyncRun__initializeScheduleImmediate_closure(t0, t1, t2) { this._box_0 = t0; this.div = t1; this.span = t2; }, _AsyncRun__scheduleImmediateJsOverride_internalCallback: function _AsyncRun__scheduleImmediateJsOverride_internalCallback(t0) { this.callback = t0; }, _AsyncRun__scheduleImmediateWithSetImmediate_internalCallback: function _AsyncRun__scheduleImmediateWithSetImmediate_internalCallback(t0) { this.callback = t0; }, _TimerImpl: function _TimerImpl(t0) { this._once = t0; this._handle = null; this._tick = 0; }, _TimerImpl_internalCallback: function _TimerImpl_internalCallback(t0, t1) { this.$this = t0; this.callback = t1; }, _TimerImpl$periodic_closure: function _TimerImpl$periodic_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.milliseconds = t1; _.start = t2; _.callback = t3; }, _AsyncAwaitCompleter: function _AsyncAwaitCompleter(t0, t1) { this._future = t0; this.isSync = false; this.$ti = t1; }, _awaitOnObject_closure: function _awaitOnObject_closure(t0) { this.bodyFunction = t0; }, _awaitOnObject_closure0: function _awaitOnObject_closure0(t0) { this.bodyFunction = t0; }, _wrapJsFunctionForAsync_closure: function _wrapJsFunctionForAsync_closure(t0) { this.$protected = t0; }, _asyncStarHelper_closure: function _asyncStarHelper_closure(t0, t1) { this.controller = t0; this.bodyFunction = t1; }, _asyncStarHelper_closure0: function _asyncStarHelper_closure0(t0, t1) { this.controller = t0; this.bodyFunction = t1; }, _AsyncStarStreamController: function _AsyncStarStreamController(t0) { var _ = this; _.___AsyncStarStreamController_controller = $; _.isSuspended = false; _.cancelationFuture = null; _.$ti = t0; }, _AsyncStarStreamController__resumeBody: function _AsyncStarStreamController__resumeBody(t0) { this.body = t0; }, _AsyncStarStreamController__resumeBody_closure: function _AsyncStarStreamController__resumeBody_closure(t0) { this.body = t0; }, _AsyncStarStreamController_closure0: function _AsyncStarStreamController_closure0(t0) { this._resumeBody = t0; }, _AsyncStarStreamController_closure1: function _AsyncStarStreamController_closure1(t0, t1) { this.$this = t0; this._resumeBody = t1; }, _AsyncStarStreamController_closure: function _AsyncStarStreamController_closure(t0, t1) { this.$this = t0; this.body = t1; }, _AsyncStarStreamController__closure: function _AsyncStarStreamController__closure(t0) { this.body = t0; }, _IterationMarker: function _IterationMarker(t0, t1) { this.value = t0; this.state = t1; }, _SyncStarIterator: function _SyncStarIterator(t0, t1) { var _ = this; _._body = t0; _._suspendedBodies = _._nestedIterator = _._async$_current = null; _.$ti = t1; }, _SyncStarIterable: function _SyncStarIterable(t0, t1) { this._outerHelper = t0; this.$ti = t1; }, AsyncError: function AsyncError(t0, t1) { this.error = t0; this.stackTrace = t1; }, _BroadcastStream: function _BroadcastStream(t0, t1) { this._async$_controller = t0; this.$ti = t1; }, _BroadcastSubscription: function _BroadcastSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._eventState = 0; _._async$_previous = _._async$_next = null; _._async$_controller = t0; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _BroadcastStreamController: function _BroadcastStreamController() { }, _SyncBroadcastStreamController: function _SyncBroadcastStreamController(t0, t1, t2) { var _ = this; _.onListen = t0; _.onCancel = t1; _._state = 0; _._doneFuture = _._addStreamState = _._lastSubscription = _._firstSubscription = null; _.$ti = t2; }, _SyncBroadcastStreamController__sendData_closure: function _SyncBroadcastStreamController__sendData_closure(t0, t1) { this.$this = t0; this.data = t1; }, _SyncBroadcastStreamController__sendError_closure: function _SyncBroadcastStreamController__sendError_closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _SyncBroadcastStreamController__sendDone_closure: function _SyncBroadcastStreamController__sendDone_closure(t0) { this.$this = t0; }, _AsyncBroadcastStreamController: function _AsyncBroadcastStreamController(t0, t1, t2) { var _ = this; _.onListen = t0; _.onCancel = t1; _._state = 0; _._doneFuture = _._addStreamState = _._lastSubscription = _._firstSubscription = null; _.$ti = t2; }, _AsBroadcastStreamController: function _AsBroadcastStreamController(t0, t1, t2) { var _ = this; _._pending = null; _.onListen = t0; _.onCancel = t1; _._state = 0; _._doneFuture = _._addStreamState = _._lastSubscription = _._firstSubscription = null; _.$ti = t2; }, Future_Future_closure: function Future_Future_closure(t0, t1) { this.result = t0; this.computation = t1; }, Future_Future$microtask_closure: function Future_Future$microtask_closure(t0, t1) { this.result = t0; this.computation = t1; }, Future_Future$delayed_closure: function Future_Future$delayed_closure(t0, t1, t2) { this.computation = t0; this.result = t1; this.T = t2; }, Future_wait__error_set: function Future_wait__error_set(t0) { this._box_0 = t0; }, Future_wait__stackTrace_set: function Future_wait__stackTrace_set(t0) { this._box_0 = t0; }, Future_wait__error_get: function Future_wait__error_get(t0) { this._box_0 = t0; }, Future_wait__stackTrace_get: function Future_wait__stackTrace_get(t0) { this._box_0 = t0; }, Future_wait_handleError: function Future_wait_handleError(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _.cleanUp = t1; _.eagerError = t2; _._future = t3; _._error_set = t4; _._stackTrace_set = t5; _._error_get = t6; _._stackTrace_get = t7; }, Future_wait_closure: function Future_wait_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _.pos = t1; _._future = t2; _.cleanUp = t3; _.eagerError = t4; _._error_get = t5; _._stackTrace_get = t6; _.T = t7; }, TimeoutException: function TimeoutException(t0, t1) { this.message = t0; this.duration = t1; }, _Completer: function _Completer() { }, _AsyncCompleter: function _AsyncCompleter(t0, t1) { this.future = t0; this.$ti = t1; }, _SyncCompleter: function _SyncCompleter(t0, t1) { this.future = t0; this.$ti = t1; }, _FutureListener: function _FutureListener(t0, t1, t2, t3, t4) { var _ = this; _._nextListener = null; _.result = t0; _.state = t1; _.callback = t2; _.errorCallback = t3; _.$ti = t4; }, _Future: function _Future(t0, t1) { var _ = this; _._state = 0; _._zone = t0; _._resultOrListeners = null; _.$ti = t1; }, _Future__addListener_closure: function _Future__addListener_closure(t0, t1) { this.$this = t0; this.listener = t1; }, _Future__prependListeners_closure: function _Future__prependListeners_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _Future__chainForeignFuture_closure: function _Future__chainForeignFuture_closure(t0) { this.$this = t0; }, _Future__chainForeignFuture_closure0: function _Future__chainForeignFuture_closure0(t0) { this.$this = t0; }, _Future__chainForeignFuture_closure1: function _Future__chainForeignFuture_closure1(t0, t1, t2) { this.$this = t0; this.e = t1; this.s = t2; }, _Future__asyncCompleteWithValue_closure: function _Future__asyncCompleteWithValue_closure(t0, t1) { this.$this = t0; this.value = t1; }, _Future__chainFuture_closure: function _Future__chainFuture_closure(t0, t1) { this.$this = t0; this.value = t1; }, _Future__asyncCompleteError_closure: function _Future__asyncCompleteError_closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _Future__propagateToListeners_handleWhenCompleteCallback: function _Future__propagateToListeners_handleWhenCompleteCallback(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.hasError = t2; }, _Future__propagateToListeners_handleWhenCompleteCallback_closure: function _Future__propagateToListeners_handleWhenCompleteCallback_closure(t0) { this.originalSource = t0; }, _Future__propagateToListeners_handleValueCallback: function _Future__propagateToListeners_handleValueCallback(t0, t1) { this._box_0 = t0; this.sourceResult = t1; }, _Future__propagateToListeners_handleError: function _Future__propagateToListeners_handleError(t0, t1) { this._box_1 = t0; this._box_0 = t1; }, _Future_timeout_closure: function _Future_timeout_closure(t0, t1) { this._future = t0; this.timeLimit = t1; }, _Future_timeout_closure0: function _Future_timeout_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this._future = t2; }, _Future_timeout_closure1: function _Future_timeout_closure1(t0, t1) { this._box_0 = t0; this._future = t1; }, _AsyncCallbackEntry: function _AsyncCallbackEntry(t0) { this.callback = t0; this.next = null; }, Stream: function Stream() { }, Stream_Stream$fromFuture_closure: function Stream_Stream$fromFuture_closure(t0, t1) { this.controller = t0; this.T = t1; }, Stream_Stream$fromFuture_closure0: function Stream_Stream$fromFuture_closure0(t0) { this.controller = t0; }, Stream_Stream$fromIterable_closure: function Stream_Stream$fromIterable_closure(t0, t1) { this.elements = t0; this.T = t1; }, Stream_pipe_closure: function Stream_pipe_closure(t0) { this.streamConsumer = t0; }, Stream_fold_closure: function Stream_fold_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, Stream_fold_closure0: function Stream_fold_closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.combine = t2; _.subscription = t3; _.result = t4; _.S = t5; }, Stream_fold__closure: function Stream_fold__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.combine = t1; _.element = t2; _.S = t3; }, Stream_fold__closure0: function Stream_fold__closure0(t0, t1) { this._box_0 = t0; this.S = t1; }, Stream_forEach_closure: function Stream_forEach_closure(t0) { this.future = t0; }, Stream_forEach_closure0: function Stream_forEach_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.action = t1; _.subscription = t2; _.future = t3; }, Stream_forEach__closure: function Stream_forEach__closure(t0, t1) { this.action = t0; this.element = t1; }, Stream_forEach__closure0: function Stream_forEach__closure0() { }, Stream_length_closure: function Stream_length_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, Stream_length_closure0: function Stream_length_closure0(t0, t1) { this._box_0 = t0; this.future = t1; }, Stream_isEmpty_closure: function Stream_isEmpty_closure(t0) { this.future = t0; }, Stream_isEmpty_closure0: function Stream_isEmpty_closure0(t0, t1, t2) { this.$this = t0; this.subscription = t1; this.future = t2; }, Stream_first_closure: function Stream_first_closure(t0) { this.future = t0; }, Stream_first_closure0: function Stream_first_closure0(t0, t1, t2) { this.$this = t0; this.subscription = t1; this.future = t2; }, StreamSubscription: function StreamSubscription() { }, StreamView: function StreamView() { }, StreamTransformerBase: function StreamTransformerBase() { }, _StreamController: function _StreamController() { }, _StreamController__subscribe_closure: function _StreamController__subscribe_closure(t0) { this.$this = t0; }, _StreamController__recordCancel_complete: function _StreamController__recordCancel_complete(t0) { this.$this = t0; }, _SyncStreamControllerDispatch: function _SyncStreamControllerDispatch() { }, _AsyncStreamControllerDispatch: function _AsyncStreamControllerDispatch() { }, _AsyncStreamController: function _AsyncStreamController(t0, t1, t2, t3, t4) { var _ = this; _._varData = null; _._state = 0; _._doneFuture = null; _.onListen = t0; _.onPause = t1; _.onResume = t2; _.onCancel = t3; _.$ti = t4; }, _SyncStreamController: function _SyncStreamController(t0, t1, t2, t3, t4) { var _ = this; _._varData = null; _._state = 0; _._doneFuture = null; _.onListen = t0; _.onPause = t1; _.onResume = t2; _.onCancel = t3; _.$ti = t4; }, _ControllerStream: function _ControllerStream(t0, t1) { this._async$_controller = t0; this.$ti = t1; }, _ControllerSubscription: function _ControllerSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._async$_controller = t0; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _StreamSinkWrapper0: function _StreamSinkWrapper0(t0, t1) { this._async$_target = t0; this.$ti = t1; }, _AddStreamState: function _AddStreamState(t0, t1, t2) { this.addStreamFuture = t0; this.addSubscription = t1; this.$ti = t2; }, _AddStreamState_makeErrorHandler_closure: function _AddStreamState_makeErrorHandler_closure(t0) { this.controller = t0; }, _AddStreamState_cancel_closure: function _AddStreamState_cancel_closure(t0) { this.$this = t0; }, _StreamControllerAddStreamState: function _StreamControllerAddStreamState(t0, t1, t2, t3) { var _ = this; _.varData = t0; _.addStreamFuture = t1; _.addSubscription = t2; _.$ti = t3; }, _BufferingStreamSubscription: function _BufferingStreamSubscription(t0, t1, t2, t3, t4, t5) { var _ = this; _._async$_onData = t0; _._onError = t1; _._onDone = t2; _._zone = t3; _._state = t4; _._pending = _._cancelFuture = null; _.$ti = t5; }, _BufferingStreamSubscription__sendError_sendError: function _BufferingStreamSubscription__sendError_sendError(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _BufferingStreamSubscription__sendDone_sendDone: function _BufferingStreamSubscription__sendDone_sendDone(t0) { this.$this = t0; }, _StreamImpl: function _StreamImpl() { }, _GeneratedStreamImpl: function _GeneratedStreamImpl(t0, t1) { this._pending = t0; this._isUsed = false; this.$ti = t1; }, _IterablePendingEvents: function _IterablePendingEvents(t0, t1) { this._async$_iterator = t0; this._state = 0; this.$ti = t1; }, _DelayedEvent: function _DelayedEvent() { }, _DelayedData: function _DelayedData(t0, t1) { this.value = t0; this.next = null; this.$ti = t1; }, _DelayedError: function _DelayedError(t0, t1) { this.error = t0; this.stackTrace = t1; this.next = null; }, _DelayedDone: function _DelayedDone() { }, _PendingEvents: function _PendingEvents() { }, _PendingEvents_schedule_closure: function _PendingEvents_schedule_closure(t0, t1) { this.$this = t0; this.dispatch = t1; }, _StreamImplEvents: function _StreamImplEvents(t0) { var _ = this; _.lastPendingEvent = _.firstPendingEvent = null; _._state = 0; _.$ti = t0; }, _DoneStreamSubscription: function _DoneStreamSubscription(t0, t1, t2) { var _ = this; _._zone = t0; _._state = 0; _._onDone = t1; _.$ti = t2; }, _AsBroadcastStream: function _AsBroadcastStream(t0, t1, t2, t3, t4) { var _ = this; _._async$_source = t0; _._onListenHandler = t1; _._onCancelHandler = t2; _._zone = t3; _._async$_subscription = _._async$_controller = null; _.$ti = t4; }, _BroadcastSubscriptionWrapper: function _BroadcastSubscriptionWrapper(t0, t1) { this._stream = t0; this.$ti = t1; }, _StreamIterator: function _StreamIterator(t0, t1) { var _ = this; _._async$_subscription = null; _._stateData = t0; _._async$_hasValue = false; _.$ti = t1; }, _EmptyStream: function _EmptyStream(t0) { this.$ti = t0; }, _cancelAndError_closure: function _cancelAndError_closure(t0, t1, t2) { this.future = t0; this.error = t1; this.stackTrace = t2; }, _cancelAndErrorClosure_closure: function _cancelAndErrorClosure_closure(t0, t1) { this.subscription = t0; this.future = t1; }, _cancelAndValue_closure: function _cancelAndValue_closure(t0, t1) { this.future = t0; this.value = t1; }, _ForwardingStream: function _ForwardingStream() { }, _ForwardingStreamSubscription: function _ForwardingStreamSubscription(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._stream = t0; _._async$_subscription = null; _._async$_onData = t1; _._onError = t2; _._onDone = t3; _._zone = t4; _._state = t5; _._pending = _._cancelFuture = null; _.$ti = t6; }, _WhereStream: function _WhereStream(t0, t1, t2) { this._test = t0; this._async$_source = t1; this.$ti = t2; }, _MapStream: function _MapStream(t0, t1, t2) { this._async$_transform = t0; this._async$_source = t1; this.$ti = t2; }, _EventSinkWrapper: function _EventSinkWrapper(t0, t1) { this._async$_sink = t0; this.$ti = t1; }, _SinkTransformerStreamSubscription: function _SinkTransformerStreamSubscription(t0, t1, t2, t3, t4, t5) { var _ = this; _.___SinkTransformerStreamSubscription__transformerSink = $; _._async$_subscription = null; _._async$_onData = t0; _._onError = t1; _._onDone = t2; _._zone = t3; _._state = t4; _._pending = _._cancelFuture = null; _.$ti = t5; }, _StreamSinkTransformer: function _StreamSinkTransformer() { }, _BoundSinkStream: function _BoundSinkStream(t0, t1, t2) { this._sinkMapper = t0; this._stream = t1; this.$ti = t2; }, _HandlerEventSink: function _HandlerEventSink(t0, t1, t2, t3, t4) { var _ = this; _._handleData = t0; _._async$_handleError = t1; _._handleDone = t2; _._async$_sink = t3; _.$ti = t4; }, _StreamHandlerTransformer: function _StreamHandlerTransformer(t0, t1) { this._sinkMapper = t0; this.$ti = t1; }, _StreamHandlerTransformer_closure: function _StreamHandlerTransformer_closure(t0, t1, t2, t3, t4) { var _ = this; _.handleData = t0; _.handleError = t1; _.handleDone = t2; _.T = t3; _.S = t4; }, _ZoneFunction: function _ZoneFunction(t0, t1, t2) { this.zone = t0; this.$function = t1; this.$ti = t2; }, _RunNullaryZoneFunction: function _RunNullaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _RunUnaryZoneFunction: function _RunUnaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _RunBinaryZoneFunction: function _RunBinaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _RegisterNullaryZoneFunction: function _RegisterNullaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _RegisterUnaryZoneFunction: function _RegisterUnaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _RegisterBinaryZoneFunction: function _RegisterBinaryZoneFunction(t0, t1) { this.zone = t0; this.$function = t1; }, _ZoneSpecification: function _ZoneSpecification(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.handleUncaughtError = t0; _.run = t1; _.runUnary = t2; _.runBinary = t3; _.registerCallback = t4; _.registerUnaryCallback = t5; _.registerBinaryCallback = t6; _.errorCallback = t7; _.scheduleMicrotask = t8; _.createTimer = t9; _.createPeriodicTimer = t10; _.print = t11; _.fork = t12; }, _ZoneDelegate: function _ZoneDelegate(t0) { this._delegationTarget = t0; }, _Zone: function _Zone() { }, _CustomZone: function _CustomZone(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._run = t0; _._runUnary = t1; _._runBinary = t2; _._registerCallback = t3; _._registerUnaryCallback = t4; _._registerBinaryCallback = t5; _._errorCallback = t6; _._scheduleMicrotask = t7; _._createTimer = t8; _._createPeriodicTimer = t9; _._print = t10; _._fork = t11; _._handleUncaughtError = t12; _._delegateCache = null; _.parent = t13; _._async$_map = t14; }, _CustomZone_bindCallback_closure: function _CustomZone_bindCallback_closure(t0, t1, t2) { this.$this = t0; this.registered = t1; this.R = t2; }, _CustomZone_bindUnaryCallback_closure: function _CustomZone_bindUnaryCallback_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.registered = t1; _.T = t2; _.R = t3; }, _CustomZone_bindCallbackGuarded_closure: function _CustomZone_bindCallbackGuarded_closure(t0, t1) { this.$this = t0; this.registered = t1; }, _CustomZone_bindUnaryCallbackGuarded_closure: function _CustomZone_bindUnaryCallbackGuarded_closure(t0, t1, t2) { this.$this = t0; this.registered = t1; this.T = t2; }, _rootHandleUncaughtError_closure: function _rootHandleUncaughtError_closure(t0, t1) { this.error = t0; this.stackTrace = t1; }, _RootZone: function _RootZone() { }, _RootZone_bindCallback_closure: function _RootZone_bindCallback_closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.R = t2; }, _RootZone_bindCallbackGuarded_closure: function _RootZone_bindCallbackGuarded_closure(t0, t1) { this.$this = t0; this.f = t1; }, _RootZone_bindUnaryCallbackGuarded_closure: function _RootZone_bindUnaryCallbackGuarded_closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.T = t2; }, HashMap_HashMap: function(equals, hashCode, isValidKey, $K, $V) { if (isValidKey == null) if (hashCode == null) { if (equals == null) return new P._HashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_HashMap<1,2>")); hashCode = P.collection___defaultHashCode$closure(); } else { if (P.core__identityHashCode$closure() === hashCode && P.core__identical$closure() === equals) return new P._IdentityHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_IdentityHashMap<1,2>")); if (equals == null) equals = P.collection___defaultEquals$closure(); } else { if (hashCode == null) hashCode = P.collection___defaultHashCode$closure(); if (equals == null) equals = P.collection___defaultEquals$closure(); } return P._CustomHashMap$(equals, hashCode, isValidKey, $K, $V); }, _HashMap__getTableEntry: function(table, key) { var entry = table[key]; return entry === table ? null : entry; }, _HashMap__setTableEntry: function(table, key, value) { if (value == null) table[key] = table; else table[key] = value; }, _HashMap__newHashTable: function() { var table = Object.create(null); P._HashMap__setTableEntry(table, "", table); delete table[""]; return table; }, _CustomHashMap$: function(_equals, _hashCode, validKey, $K, $V) { var t1 = validKey != null ? validKey : new P._CustomHashMap_closure($K); return new P._CustomHashMap(_equals, _hashCode, t1, $K._eval$1("@<0>")._bind$1($V)._eval$1("_CustomHashMap<1,2>")); }, LinkedHashMap_LinkedHashMap: function(equals, hashCode, $K, $V) { if (hashCode == null) { if (equals == null) return new H.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>")); hashCode = P.collection___defaultHashCode$closure(); } else { if (P.core__identityHashCode$closure() === hashCode && P.core__identical$closure() === equals) return P._LinkedIdentityHashMap__LinkedIdentityHashMap$es6($K, $V); if (equals == null) equals = P.collection___defaultEquals$closure(); } return P._LinkedCustomHashMap$(equals, hashCode, null, $K, $V); }, LinkedHashMap_LinkedHashMap$_literal: function(keyValuePairs, $K, $V) { return H.fillLiteralMap(keyValuePairs, new H.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>"))); }, LinkedHashMap_LinkedHashMap$_empty: function($K, $V) { return new H.JsLinkedHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("JsLinkedHashMap<1,2>")); }, _LinkedIdentityHashMap__LinkedIdentityHashMap$es6: function($K, $V) { return new P._LinkedIdentityHashMap($K._eval$1("@<0>")._bind$1($V)._eval$1("_LinkedIdentityHashMap<1,2>")); }, _LinkedCustomHashMap$: function(_equals, _hashCode, validKey, $K, $V) { return new P._LinkedCustomHashMap(_equals, _hashCode, new P._LinkedCustomHashMap_closure($K), $K._eval$1("@<0>")._bind$1($V)._eval$1("_LinkedCustomHashMap<1,2>")); }, HashSet_HashSet: function($E) { return new P._HashSet($E._eval$1("_HashSet<0>")); }, _HashSet__newHashTable: function() { var table = Object.create(null); table[""] = table; delete table[""]; return table; }, LinkedHashSet_LinkedHashSet: function($E) { return new P._LinkedHashSet($E._eval$1("_LinkedHashSet<0>")); }, LinkedHashSet_LinkedHashSet$_empty: function($E) { return new P._LinkedHashSet($E._eval$1("_LinkedHashSet<0>")); }, LinkedHashSet_LinkedHashSet$_literal: function(values, $E) { return H.fillLiteralSet(values, new P._LinkedHashSet($E._eval$1("_LinkedHashSet<0>"))); }, _LinkedHashSet__newHashTable: function() { var table = Object.create(null); table[""] = table; delete table[""]; return table; }, _LinkedHashSetIterator$: function(_set, _modifications, $E) { var t1 = new P._LinkedHashSetIterator(_set, _modifications, $E._eval$1("_LinkedHashSetIterator<0>")); t1._collection$_cell = _set._collection$_first; return t1; }, _defaultEquals: function(a, b) { return J.$eq$(a, b); }, _defaultHashCode: function(a) { return J.get$hashCode$(a); }, HashMap_HashMap$from: function(other, $K, $V) { var result = P.HashMap_HashMap(null, null, null, $K, $V); other.forEach$1(0, new P.HashMap_HashMap$from_closure(result, $K, $V)); return result; }, HashSet_HashSet$from: function(elements, $E) { var t1, result = P.HashSet_HashSet($E); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) result.add$1(0, $E._as(t1.get$current(t1))); return result; }, IterableBase_iterableToShortString: function(iterable, leftDelimiter, rightDelimiter) { var parts, t1; if (P._isToStringVisiting(iterable)) { if (leftDelimiter === "(" && rightDelimiter === ")") return "(...)"; return leftDelimiter + "..." + rightDelimiter; } parts = H.setRuntimeTypeInfo([], type$.JSArray_String); $._toStringVisiting.push(iterable); try { P._iterablePartsToStrings(iterable, parts); } finally { $._toStringVisiting.pop(); } t1 = P.StringBuffer__writeAll(leftDelimiter, parts, ", ") + rightDelimiter; return t1.charCodeAt(0) == 0 ? t1 : t1; }, IterableBase_iterableToFullString: function(iterable, leftDelimiter, rightDelimiter) { var buffer, t1; if (P._isToStringVisiting(iterable)) return leftDelimiter + "..." + rightDelimiter; buffer = new P.StringBuffer(leftDelimiter); $._toStringVisiting.push(iterable); try { t1 = buffer; t1._contents = P.StringBuffer__writeAll(t1._contents, iterable, ", "); } finally { $._toStringVisiting.pop(); } buffer._contents += rightDelimiter; t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _isToStringVisiting: function(o) { var t1, i; for (t1 = $._toStringVisiting.length, i = 0; i < t1; ++i) if (o === $._toStringVisiting[i]) return true; return false; }, _iterablePartsToStrings: function(iterable, parts) { var next, ultimateString, penultimateString, penultimate, ultimate, ultimate0, elision, it = J.get$iterator$ax(iterable), $length = 0, count = 0; while (true) { if (!($length < 80 || count < 3)) break; if (!it.moveNext$0()) return; next = H.S(it.get$current(it)); parts.push(next); $length += next.length + 2; ++count; } if (!it.moveNext$0()) { if (count <= 5) return; ultimateString = parts.pop(); penultimateString = parts.pop(); } else { penultimate = it.get$current(it); ++count; if (!it.moveNext$0()) { if (count <= 4) { parts.push(H.S(penultimate)); return; } ultimateString = H.S(penultimate); penultimateString = parts.pop(); $length += ultimateString.length + 2; } else { ultimate = it.get$current(it); ++count; for (; it.moveNext$0(); penultimate = ultimate, ultimate = ultimate0) { ultimate0 = it.get$current(it); ++count; if (count > 100) { while (true) { if (!($length > 75 && count > 3)) break; $length -= parts.pop().length + 2; --count; } parts.push("..."); return; } } penultimateString = H.S(penultimate); ultimateString = H.S(ultimate); $length += ultimateString.length + penultimateString.length + 4; } } if (count > parts.length + 2) { $length += 5; elision = "..."; } else elision = null; while (true) { if (!($length > 80 && parts.length > 3)) break; $length -= parts.pop().length + 2; if (elision == null) { $length += 5; elision = "..."; } } if (elision != null) parts.push(elision); parts.push(penultimateString); parts.push(ultimateString); }, LinkedHashMap_LinkedHashMap$from: function(other, $K, $V) { var result = P.LinkedHashMap_LinkedHashMap(null, null, $K, $V); J.forEach$1$ax(other, new P.LinkedHashMap_LinkedHashMap$from_closure(result, $K, $V)); return result; }, LinkedHashMap_LinkedHashMap$fromIterable: function(iterable, key, value, $K, $V) { var map = P.LinkedHashMap_LinkedHashMap(null, null, $K, $V); P.MapBase__fillMapWithMappedIterable(map, iterable, key, value); return map; }, LinkedHashSet_LinkedHashSet$from: function(elements, $E) { var t1, result = P.LinkedHashSet_LinkedHashSet($E); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) result.add$1(0, $E._as(t1.get$current(t1))); return result; }, LinkedHashSet_LinkedHashSet$of: function(elements, $E) { var t1 = P.LinkedHashSet_LinkedHashSet($E); t1.addAll$1(0, elements); return t1; }, _LinkedListIterator$: function(list, $E) { return new P._LinkedListIterator(list, list._collection$_modificationCount, list._collection$_first, $E._eval$1("_LinkedListIterator<0>")); }, ListMixin__compareAny: function(a, b) { var t1 = type$.Comparable_dynamic; return J.compareTo$1$ns(t1._as(a), t1._as(b)); }, MapBase_mapToString: function(m) { var result, t1 = {}; if (P._isToStringVisiting(m)) return "{...}"; result = new P.StringBuffer(""); try { $._toStringVisiting.push(m); result._contents += "{"; t1.first = true; J.forEach$1$ax(m, new P.MapBase_mapToString_closure(t1, result)); result._contents += "}"; } finally { $._toStringVisiting.pop(); } t1 = result._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, MapBase__fillMapWithMappedIterable: function(map, iterable, key, value) { var t1, element; for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0();) { element = t1.get$current(t1); map.$indexSet(0, key.call$1(element), value.call$1(element)); } }, ListQueue$: function(initialCapacity, $E) { return new P.ListQueue(P.List_List$filled(P.ListQueue__calculateCapacity(initialCapacity), null, false, $E._eval$1("0?")), $E._eval$1("ListQueue<0>")); }, ListQueue__calculateCapacity: function(initialCapacity) { if (initialCapacity == null || initialCapacity < 8) return 8; else if ((initialCapacity & initialCapacity - 1) >>> 0 !== 0) return P.ListQueue__nextPowerOf2(initialCapacity); return initialCapacity; }, ListQueue__nextPowerOf2: function(number) { var nextNumber; number = (number << 1 >>> 0) - 1; for (; true; number = nextNumber) { nextNumber = (number & number - 1) >>> 0; if (nextNumber === 0) return number; } }, _UnmodifiableSetMixin__throwUnmodifiable: function() { throw H.wrapException(P.UnsupportedError$("Cannot change an unmodifiable set")); }, _dynamicCompare: function(a, b) { return J.compareTo$1$ns(a, b); }, _defaultCompare: function($K) { if ($K._eval$1("int(0,0)")._is(P.core_Comparable_compare$closure())) return P.core_Comparable_compare$closure(); return P.collection___dynamicCompare$closure(); }, SplayTreeMap$: function($K, $V) { var t1 = P._defaultCompare($K); return new P.SplayTreeMap(t1, new P.SplayTreeMap_closure($K), $K._eval$1("@<0>")._bind$1($V)._eval$1("SplayTreeMap<1,2>")); }, SplayTreeSet$: function(compare, isValidKey, $E) { var t1 = isValidKey == null ? new P.SplayTreeSet_closure($E) : isValidKey; return new P.SplayTreeSet(compare, t1, $E._eval$1("SplayTreeSet<0>")); }, _HashMap: function _HashMap(t0) { var _ = this; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _HashMap_values_closure: function _HashMap_values_closure(t0) { this.$this = t0; }, _HashMap_addAll_closure: function _HashMap_addAll_closure(t0) { this.$this = t0; }, _IdentityHashMap: function _IdentityHashMap(t0) { var _ = this; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _CustomHashMap: function _CustomHashMap(t0, t1, t2, t3) { var _ = this; _._equals = t0; _._collection$_hashCode = t1; _._validKey = t2; _._collection$_length = 0; _._collection$_keys = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t3; }, _CustomHashMap_closure: function _CustomHashMap_closure(t0) { this.K = t0; }, _HashMapKeyIterable: function _HashMapKeyIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _HashMapKeyIterator: function _HashMapKeyIterator(t0, t1, t2) { var _ = this; _._collection$_map = t0; _._collection$_keys = t1; _._collection$_offset = 0; _._collection$_current = null; _.$ti = t2; }, _LinkedIdentityHashMap: function _LinkedIdentityHashMap(t0) { var _ = this; _.__js_helper$_length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t0; }, _LinkedCustomHashMap: function _LinkedCustomHashMap(t0, t1, t2, t3) { var _ = this; _._equals = t0; _._collection$_hashCode = t1; _._validKey = t2; _.__js_helper$_length = 0; _._last = _._first = _.__js_helper$_rest = _._nums = _._strings = null; _._modifications = 0; _.$ti = t3; }, _LinkedCustomHashMap_closure: function _LinkedCustomHashMap_closure(t0) { this.K = t0; }, _HashSet: function _HashSet(t0) { var _ = this; _._collection$_length = 0; _._elements = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _.$ti = t0; }, _HashSetIterator: function _HashSetIterator(t0, t1, t2) { var _ = this; _._set = t0; _._elements = t1; _._collection$_offset = 0; _._collection$_current = null; _.$ti = t2; }, _LinkedHashSet: function _LinkedHashSet(t0) { var _ = this; _._collection$_length = 0; _._collection$_last = _._collection$_first = _._collection$_rest = _._collection$_nums = _._collection$_strings = null; _._collection$_modifications = 0; _.$ti = t0; }, _LinkedHashSetCell: function _LinkedHashSetCell(t0) { this._collection$_element = t0; this._collection$_previous = this._collection$_next = null; }, _LinkedHashSetIterator: function _LinkedHashSetIterator(t0, t1, t2) { var _ = this; _._set = t0; _._collection$_modifications = t1; _._collection$_current = _._collection$_cell = null; _.$ti = t2; }, UnmodifiableListView: function UnmodifiableListView(t0, t1) { this._collection$_source = t0; this.$ti = t1; }, HashMap_HashMap$from_closure: function HashMap_HashMap$from_closure(t0, t1, t2) { this.result = t0; this.K = t1; this.V = t2; }, IterableMixin: function IterableMixin() { }, IterableBase: function IterableBase() { }, LinkedHashMap_LinkedHashMap$from_closure: function LinkedHashMap_LinkedHashMap$from_closure(t0, t1, t2) { this.result = t0; this.K = t1; this.V = t2; }, LinkedList: function LinkedList(t0) { var _ = this; _._collection$_length = _._collection$_modificationCount = 0; _._collection$_first = null; _.$ti = t0; }, _LinkedListIterator: function _LinkedListIterator(t0, t1, t2, t3) { var _ = this; _._collection$_list = t0; _._collection$_modificationCount = t1; _._collection$_current = null; _._collection$_next = t2; _._visitedFirst = false; _.$ti = t3; }, LinkedListEntry: function LinkedListEntry() { }, ListBase: function ListBase() { }, ListMixin: function ListMixin() { }, MapBase: function MapBase() { }, MapBase_mapToString_closure: function MapBase_mapToString_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, MapMixin: function MapMixin() { }, MapMixin_entries_closure: function MapMixin_entries_closure(t0) { this.$this = t0; }, UnmodifiableMapBase: function UnmodifiableMapBase() { }, _MapBaseValueIterable: function _MapBaseValueIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _MapBaseValueIterator: function _MapBaseValueIterator(t0, t1, t2) { var _ = this; _._collection$_keys = t0; _._collection$_map = t1; _._collection$_current = null; _.$ti = t2; }, _UnmodifiableMapMixin: function _UnmodifiableMapMixin() { }, MapView: function MapView() { }, UnmodifiableMapView: function UnmodifiableMapView(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _DoubleLink: function _DoubleLink() { }, DoubleLinkedQueueEntry: function DoubleLinkedQueueEntry() { }, _DoubleLinkedQueueEntry: function _DoubleLinkedQueueEntry() { }, _DoubleLinkedQueueElement: function _DoubleLinkedQueueElement(t0, t1, t2) { var _ = this; _._collection$_queue = t0; _._collection$_element = t1; _._nextLink = _._previousLink = null; _.$ti = t2; }, _DoubleLinkedQueueSentinel: function _DoubleLinkedQueueSentinel(t0, t1, t2) { var _ = this; _._collection$_queue = t0; _._collection$_element = t1; _._nextLink = _._previousLink = null; _.$ti = t2; }, DoubleLinkedQueue: function DoubleLinkedQueue(t0) { this.__DoubleLinkedQueue__sentinel = $; this._elementCount = 0; this.$ti = t0; }, _DoubleLinkedQueueIterator: function _DoubleLinkedQueueIterator(t0, t1, t2) { var _ = this; _._sentinel = t0; _._nextEntry = t1; _._collection$_current = null; _.$ti = t2; }, ListQueue: function ListQueue(t0, t1) { var _ = this; _._table = t0; _._collection$_modificationCount = _._tail = _._head = 0; _.$ti = t1; }, _ListQueueIterator: function _ListQueueIterator(t0, t1, t2, t3, t4) { var _ = this; _._collection$_queue = t0; _._end = t1; _._collection$_modificationCount = t2; _._collection$_position = t3; _._collection$_current = null; _.$ti = t4; }, SetMixin: function SetMixin() { }, _SetBase: function _SetBase() { }, _UnmodifiableSetMixin: function _UnmodifiableSetMixin() { }, _UnmodifiableSet: function _UnmodifiableSet(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeNode: function _SplayTreeNode() { }, _SplayTreeSetNode: function _SplayTreeSetNode(t0, t1) { var _ = this; _.key = t0; _._collection$_right = _._collection$_left = null; _.$ti = t1; }, _SplayTreeMapNode: function _SplayTreeMapNode(t0, t1, t2) { var _ = this; _.value = t0; _.key = t1; _._collection$_right = _._collection$_left = null; _.$ti = t2; }, _SplayTree: function _SplayTree() { }, SplayTreeMap: function SplayTreeMap(t0, t1, t2) { var _ = this; _._root = null; _._compare = t0; _._validKey = t1; _._splayCount = _._collection$_modificationCount = _._count = 0; _.$ti = t2; }, SplayTreeMap_closure: function SplayTreeMap_closure(t0) { this.K = t0; }, SplayTreeMap_addAll_closure: function SplayTreeMap_addAll_closure(t0) { this.$this = t0; }, _SplayTreeIterator: function _SplayTreeIterator() { }, _SplayTreeKeyIterable: function _SplayTreeKeyIterable(t0, t1) { this._tree = t0; this.$ti = t1; }, _SplayTreeValueIterable: function _SplayTreeValueIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeMapEntryIterable: function _SplayTreeMapEntryIterable(t0, t1) { this._collection$_map = t0; this.$ti = t1; }, _SplayTreeKeyIterator: function _SplayTreeKeyIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._collection$_modificationCount = null; _._splayCount = t2; _.$ti = t3; }, _SplayTreeValueIterator: function _SplayTreeValueIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._collection$_modificationCount = null; _._splayCount = t2; _.$ti = t3; }, _SplayTreeMapEntryIterator: function _SplayTreeMapEntryIterator(t0, t1, t2, t3) { var _ = this; _._tree = t0; _._collection$_path = t1; _._collection$_modificationCount = null; _._splayCount = t2; _.$ti = t3; }, SplayTreeSet: function SplayTreeSet(t0, t1, t2) { var _ = this; _._root = null; _._compare = t0; _._validKey = t1; _._splayCount = _._collection$_modificationCount = _._count = 0; _.$ti = t2; }, SplayTreeSet_closure: function SplayTreeSet_closure(t0) { this.E = t0; }, SplayTreeSet__copyNode_copyChildren: function SplayTreeSet__copyNode_copyChildren(t0, t1) { this.$this = t0; this.Node = t1; }, _ListBase_Object_ListMixin: function _ListBase_Object_ListMixin() { }, _SplayTreeMap__SplayTree_MapMixin: function _SplayTreeMap__SplayTree_MapMixin() { }, _SplayTreeSet__SplayTree_IterableMixin: function _SplayTreeSet__SplayTree_IterableMixin() { }, _SplayTreeSet__SplayTree_IterableMixin_SetMixin: function _SplayTreeSet__SplayTree_IterableMixin_SetMixin() { }, _UnmodifiableMapView_MapView__UnmodifiableMapMixin: function _UnmodifiableMapView_MapView__UnmodifiableMapMixin() { }, __SetBase_Object_SetMixin: function __SetBase_Object_SetMixin() { }, __UnmodifiableSet__SetBase__UnmodifiableSetMixin: function __UnmodifiableSet__SetBase__UnmodifiableSetMixin() { }, _parseJson: function(source, reviver) { var parsed, e, exception, t1; if (typeof source != "string") throw H.wrapException(H.argumentErrorValue(source)); parsed = null; try { parsed = JSON.parse(source); } catch (exception) { e = H.unwrapException(exception); t1 = P.FormatException$(String(e), null, null); throw H.wrapException(t1); } t1 = P._convertJsonToDartLazy(parsed); return t1; }, _convertJsonToDartLazy: function(object) { var i; if (object == null) return null; if (typeof object != "object") return object; if (Object.getPrototypeOf(object) !== Array.prototype) return new P._JsonMap(object, Object.create(null)); for (i = 0; i < object.length; ++i) object[i] = P._convertJsonToDartLazy(object[i]); return object; }, Utf8Decoder__convertIntercepted: function(allowMalformed, codeUnits, start, end) { var casted, result; if (codeUnits instanceof Uint8Array) { casted = codeUnits; end = casted.length; if (end - start < 15) return null; result = P.Utf8Decoder__convertInterceptedUint8List(allowMalformed, casted, start, end); if (result != null && allowMalformed) if (result.indexOf("\ufffd") >= 0) return null; return result; } return null; }, Utf8Decoder__convertInterceptedUint8List: function(allowMalformed, codeUnits, start, end) { var decoder = allowMalformed ? $.$get$Utf8Decoder__decoderNonfatal() : $.$get$Utf8Decoder__decoder(); if (decoder == null) return null; if (0 === start && end === codeUnits.length) return P.Utf8Decoder__useTextDecoder(decoder, codeUnits); return P.Utf8Decoder__useTextDecoder(decoder, codeUnits.subarray(start, P.RangeError_checkValidRange(start, end, codeUnits.length))); }, Utf8Decoder__useTextDecoder: function(decoder, codeUnits) { var t1, exception; try { t1 = decoder.decode(codeUnits); return t1; } catch (exception) { H.unwrapException(exception); } return null; }, Base64Codec__checkPadding: function(source, sourceIndex, sourceEnd, firstPadding, paddingCount, $length) { if (C.JSInt_methods.$mod($length, 4) !== 0) throw H.wrapException(P.FormatException$("Invalid base64 padding, padded length must be multiple of four, is " + $length, source, sourceEnd)); if (firstPadding + paddingCount !== $length) throw H.wrapException(P.FormatException$("Invalid base64 padding, '=' not at the end", source, sourceIndex)); if (paddingCount > 2) throw H.wrapException(P.FormatException$("Invalid base64 padding, more than two '=' characters", source, sourceIndex)); }, _Base64Encoder_encodeChunk: function(alphabet, bytes, start, end, isLast, output, outputIndex, state) { var t1, t2, i, byteOr, byte, outputIndex0, outputIndex1, bits = state >>> 2, expectedChars = 3 - (state & 3); for (t1 = J.getInterceptor$asx(bytes), t2 = J.getInterceptor$ax(output), i = start, byteOr = 0; i < end; ++i) { byte = t1.$index(bytes, i); byteOr = (byteOr | byte) >>> 0; bits = (bits << 8 | byte) & 16777215; --expectedChars; if (expectedChars === 0) { outputIndex0 = outputIndex + 1; t2.$indexSet(output, outputIndex, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 18 & 63)); outputIndex = outputIndex0 + 1; t2.$indexSet(output, outputIndex0, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 12 & 63)); outputIndex0 = outputIndex + 1; t2.$indexSet(output, outputIndex, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 6 & 63)); outputIndex = outputIndex0 + 1; t2.$indexSet(output, outputIndex0, C.JSString_methods._codeUnitAt$1(alphabet, bits & 63)); bits = 0; expectedChars = 3; } } if (byteOr >= 0 && byteOr <= 255) { if (isLast && expectedChars < 3) { outputIndex0 = outputIndex + 1; outputIndex1 = outputIndex0 + 1; if (3 - expectedChars === 1) { t2.$indexSet(output, outputIndex, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 2 & 63)); t2.$indexSet(output, outputIndex0, C.JSString_methods._codeUnitAt$1(alphabet, bits << 4 & 63)); t2.$indexSet(output, outputIndex1, 61); t2.$indexSet(output, outputIndex1 + 1, 61); } else { t2.$indexSet(output, outputIndex, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 10 & 63)); t2.$indexSet(output, outputIndex0, C.JSString_methods._codeUnitAt$1(alphabet, bits >>> 4 & 63)); t2.$indexSet(output, outputIndex1, C.JSString_methods._codeUnitAt$1(alphabet, bits << 2 & 63)); t2.$indexSet(output, outputIndex1 + 1, 61); } return 0; } return (bits << 2 | 3 - expectedChars) >>> 0; } for (i = start; i < end;) { byte = t1.$index(bytes, i); if (byte < 0 || byte > 255) break; ++i; } throw H.wrapException(P.ArgumentError$value(bytes, "Not a byte value at index " + i + ": 0x" + J.toRadixString$1$n(t1.$index(bytes, i), 16), null)); }, _Base64Decoder_decodeChunk: function(input, start, end, output, outIndex, state) { var i, charOr, char, code, outIndex0, expectedPadding, _s31_ = "Invalid encoding before padding", _s17_ = "Invalid character", bits = C.JSInt_methods._shrOtherPositive$1(state, 2), count = state & 3, inverseAlphabet = $.$get$_Base64Decoder__inverseAlphabet(); for (i = start, charOr = 0; i < end; ++i) { char = C.JSString_methods.codeUnitAt$1(input, i); charOr |= char; code = inverseAlphabet[char & 127]; if (code >= 0) { bits = (bits << 6 | code) & 16777215; count = count + 1 & 3; if (count === 0) { outIndex0 = outIndex + 1; output[outIndex] = bits >>> 16 & 255; outIndex = outIndex0 + 1; output[outIndex0] = bits >>> 8 & 255; outIndex0 = outIndex + 1; output[outIndex] = bits & 255; outIndex = outIndex0; bits = 0; } continue; } else if (code === -1 && count > 1) { if (charOr > 127) break; if (count === 3) { if ((bits & 3) !== 0) throw H.wrapException(P.FormatException$(_s31_, input, i)); output[outIndex] = bits >>> 10; output[outIndex + 1] = bits >>> 2; } else { if ((bits & 15) !== 0) throw H.wrapException(P.FormatException$(_s31_, input, i)); output[outIndex] = bits >>> 4; } expectedPadding = (3 - count) * 3; if (char === 37) expectedPadding += 2; return P._Base64Decoder__checkPadding(input, i + 1, end, -expectedPadding - 1); } throw H.wrapException(P.FormatException$(_s17_, input, i)); } if (charOr >= 0 && charOr <= 127) return (bits << 2 | count) >>> 0; for (i = start; i < end; ++i) { char = C.JSString_methods.codeUnitAt$1(input, i); if (char > 127) break; } throw H.wrapException(P.FormatException$(_s17_, input, i)); }, _Base64Decoder__allocateBuffer: function(input, start, end, state) { var paddingStart = P._Base64Decoder__trimPaddingChars(input, start, end), $length = (state & 3) + (paddingStart - start), bufferLength = C.JSInt_methods._shrOtherPositive$1($length, 2) * 3, remainderLength = $length & 3; if (remainderLength !== 0 && paddingStart < end) bufferLength += remainderLength - 1; if (bufferLength > 0) return new Uint8Array(bufferLength); return $.$get$_Base64Decoder__emptyBuffer(); }, _Base64Decoder__trimPaddingChars: function(input, start, end) { var char, newEnd = end, index = newEnd, padding = 0; while (true) { if (!(index > start && padding < 2)) break; c$0: { --index; char = C.JSString_methods.codeUnitAt$1(input, index); if (char === 61) { ++padding; newEnd = index; break c$0; } if ((char | 32) === 100) { if (index === start) break; --index; char = C.JSString_methods.codeUnitAt$1(input, index); } if (char === 51) { if (index === start) break; --index; char = C.JSString_methods.codeUnitAt$1(input, index); } if (char === 37) { ++padding; newEnd = index; break c$0; } break; } } return newEnd; }, _Base64Decoder__checkPadding: function(input, start, end, state) { var expectedPadding, char; if (start === end) return state; expectedPadding = -state - 1; for (; expectedPadding > 0;) { char = C.JSString_methods.codeUnitAt$1(input, start); if (expectedPadding === 3) { if (char === 61) { expectedPadding -= 3; ++start; break; } if (char === 37) { --expectedPadding; ++start; if (start === end) break; char = C.JSString_methods.codeUnitAt$1(input, start); } else break; } if ((expectedPadding > 3 ? expectedPadding - 3 : expectedPadding) === 2) { if (char !== 51) break; ++start; --expectedPadding; if (start === end) break; char = C.JSString_methods.codeUnitAt$1(input, start); } if ((char | 32) !== 100) break; ++start; --expectedPadding; if (start === end) break; } if (start !== end) throw H.wrapException(P.FormatException$("Invalid padding character", input, start)); return -expectedPadding - 1; }, Encoding_getByName: function($name) { if ($name == null) return null; return $.Encoding__nameToEncoding.$index(0, $name.toLowerCase()); }, JsonUnsupportedObjectError$: function(unsupportedObject, cause, partialResult) { return new P.JsonUnsupportedObjectError(unsupportedObject, cause); }, _defaultToEncodable: function(object) { return object.toJson$0(); }, _JsonStringStringifier$: function(_sink, _toEncodable) { var t1 = _toEncodable == null ? P.convert___defaultToEncodable$closure() : _toEncodable; return new P._JsonStringStringifier(_sink, [], t1); }, _JsonStringStringifier_stringify: function(object, toEncodable, indent) { var t1, output = new P.StringBuffer(""); P._JsonStringStringifier_printOn(object, output, toEncodable, indent); t1 = output._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _JsonStringStringifier_printOn: function(object, output, toEncodable, indent) { var stringifier, t1; if (indent == null) stringifier = P._JsonStringStringifier$(output, toEncodable); else { t1 = toEncodable == null ? P.convert___defaultToEncodable$closure() : toEncodable; stringifier = new P._JsonStringStringifierPretty(indent, 0, output, [], t1); } stringifier.writeObject$1(object); }, LineSplitter_split: function($async$lines) { return P._makeSyncStarIterable(function() { var lines = $async$lines; var $async$goto = 0, $async$handler = 1, $async$currentError, t1, sliceStart, char, i, char0, end; return function $async$LineSplitter_split($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start end = P.RangeError_checkValidRange(0, null, lines.length); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); t1 = J.getInterceptor$s(lines), sliceStart = 0, char = 0, i = 0; case 2: // for condition if (!(i < end)) { // goto after for $async$goto = 4; break; } char0 = t1._codeUnitAt$1(lines, i); if (char0 !== 13) { if (char0 !== 10) { // goto for update $async$goto = 3; break; } if (char === 13) { sliceStart = i + 1; // goto for update $async$goto = 3; break; } } $async$goto = 5; return C.JSString_methods.substring$2(lines, sliceStart, i); case 5: // after yield sliceStart = i + 1; case 3: // for update ++i, char = char0; // goto for condition $async$goto = 2; break; case 4: // after for $async$goto = sliceStart < end ? 6 : 7; break; case 6: // then $async$goto = 8; return t1.substring$2(lines, sliceStart, end); case 8: // after yield case 7: // join // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.String); }, _Utf8Decoder_errorDescription: function(state) { switch (state) { case 65: return "Missing extension byte"; case 67: return "Unexpected extension byte"; case 69: return "Invalid UTF-8 byte"; case 71: return "Overlong encoding"; case 73: return "Out of unicode range"; case 75: return "Encoded surrogate"; case 77: return "Unfinished UTF-8 octet sequence"; default: return ""; } }, _Utf8Decoder__makeUint8List: function(codeUnits, start, end) { var t1, i, b, $length = end - start, bytes = new Uint8Array($length); for (t1 = J.getInterceptor$asx(codeUnits), i = 0; i < $length; ++i) { b = t1.$index(codeUnits, start + i); bytes[i] = (b & 4294967040) >>> 0 !== 0 ? 255 : b; } return bytes; }, _JsonMap: function _JsonMap(t0, t1) { this._original = t0; this._processed = t1; this._data = null; }, _JsonMap_values_closure: function _JsonMap_values_closure(t0) { this.$this = t0; }, _JsonMap_addAll_closure: function _JsonMap_addAll_closure(t0) { this.$this = t0; }, _JsonMapKeyIterable: function _JsonMapKeyIterable(t0) { this._parent = t0; }, Utf8Decoder__decoder_closure: function Utf8Decoder__decoder_closure() { }, Utf8Decoder__decoderNonfatal_closure: function Utf8Decoder__decoderNonfatal_closure() { }, AsciiCodec: function AsciiCodec() { }, _UnicodeSubsetEncoder: function _UnicodeSubsetEncoder() { }, AsciiEncoder: function AsciiEncoder(t0) { this._subsetMask = t0; }, _UnicodeSubsetDecoder: function _UnicodeSubsetDecoder() { }, AsciiDecoder: function AsciiDecoder(t0, t1) { this._allowInvalid = t0; this._subsetMask = t1; }, Base64Codec: function Base64Codec() { }, Base64Encoder: function Base64Encoder() { }, _Base64Encoder: function _Base64Encoder(t0) { this._convert$_state = 0; this._alphabet = t0; }, Base64Decoder: function Base64Decoder() { }, _Base64Decoder: function _Base64Decoder() { this._convert$_state = 0; }, ByteConversionSink: function ByteConversionSink() { }, ByteConversionSinkBase: function ByteConversionSinkBase() { }, _ByteCallbackSink: function _ByteCallbackSink(t0, t1) { this._convert$_callback = t0; this._convert$_buffer = t1; this._bufferIndex = 0; }, ChunkedConversionSink: function ChunkedConversionSink() { }, Codec0: function Codec0() { }, Converter: function Converter() { }, Encoding: function Encoding() { }, JsonUnsupportedObjectError: function JsonUnsupportedObjectError(t0, t1) { this.unsupportedObject = t0; this.cause = t1; }, JsonCyclicError: function JsonCyclicError(t0, t1) { this.unsupportedObject = t0; this.cause = t1; }, JsonCodec: function JsonCodec() { }, JsonEncoder: function JsonEncoder(t0, t1) { this.indent = t0; this._toEncodable = t1; }, JsonDecoder: function JsonDecoder(t0) { this._reviver = t0; }, _JsonStringifier: function _JsonStringifier() { }, _JsonStringifier_writeMap_closure: function _JsonStringifier_writeMap_closure(t0, t1) { this._box_0 = t0; this.keyValueList = t1; }, _JsonPrettyPrintMixin: function _JsonPrettyPrintMixin() { }, _JsonPrettyPrintMixin_writeMap_closure: function _JsonPrettyPrintMixin_writeMap_closure(t0, t1) { this._box_0 = t0; this.keyValueList = t1; }, _JsonStringStringifier: function _JsonStringStringifier(t0, t1, t2) { this._sink = t0; this._seen = t1; this._toEncodable = t2; }, _JsonStringStringifierPretty: function _JsonStringStringifierPretty(t0, t1, t2, t3, t4) { var _ = this; _._indent = t0; _._JsonPrettyPrintMixin__indentLevel = t1; _._sink = t2; _._seen = t3; _._toEncodable = t4; }, Latin1Codec: function Latin1Codec() { }, Latin1Encoder: function Latin1Encoder(t0) { this._subsetMask = t0; }, Latin1Decoder: function Latin1Decoder(t0, t1) { this._allowInvalid = t0; this._subsetMask = t1; }, Utf8Codec: function Utf8Codec() { }, Utf8Encoder: function Utf8Encoder() { }, _Utf8Encoder: function _Utf8Encoder(t0) { this._bufferIndex = this._carry = 0; this._convert$_buffer = t0; }, Utf8Decoder: function Utf8Decoder(t0) { this._allowMalformed = t0; }, _Utf8Decoder: function _Utf8Decoder(t0) { this.allowMalformed = t0; this._convert$_state = 16; this._charOrIndex = 0; }, __JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin: function __JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin() { }, _symbolMapToStringMap: function(map) { var result = new H.JsLinkedHashMap(type$.JsLinkedHashMap_String_dynamic); map.forEach$1(0, new P._symbolMapToStringMap_closure(result)); return result; }, identityHashCode: function(object) { return H.objectHashCode(object); }, Function_apply: function($function, positionalArguments, namedArguments) { return H.Primitives_applyFunction($function, positionalArguments, namedArguments == null ? null : P._symbolMapToStringMap(namedArguments)); }, Expando$: function($T) { var t1; if (typeof WeakMap == "function") t1 = new WeakMap(); else { t1 = $.Expando__keyCount; $.Expando__keyCount = t1 + 1; t1 = "expando$key$" + t1; } return new P.Expando(t1, $T._eval$1("Expando<0>")); }, int_parse: function(source, radix) { var value = H.Primitives_parseInt(source, radix); if (value != null) return value; throw H.wrapException(P.FormatException$(source, null, null)); }, double_parse: function(source) { var value = H.Primitives_parseDouble(source); if (value != null) return value; throw H.wrapException(P.FormatException$("Invalid double", source, null)); }, Error__objectToString: function(object) { if (object instanceof H.Closure) return object.toString$0(0); return "Instance of '" + H.S(H.Primitives_objectTypeName(object)) + "'"; }, DateTime$fromMillisecondsSinceEpoch: function(millisecondsSinceEpoch, isUtc) { var t1; if (Math.abs(millisecondsSinceEpoch) <= 864e13) t1 = false; else t1 = true; if (t1) H.throwExpression(P.ArgumentError$("DateTime is outside valid range: " + H.S(millisecondsSinceEpoch))); H.checkNotNullable(isUtc, "isUtc", type$.bool); return new P.DateTime(millisecondsSinceEpoch, isUtc); }, List_List$filled: function($length, fill, growable, $E) { var i, result = growable ? J.JSArray_JSArray$growable($length, $E) : J.JSArray_JSArray$fixed($length, $E); if ($length !== 0 && fill != null) for (i = 0; i < result.length; ++i) result[i] = fill; return result; }, List_List$from: function(elements, growable, $E) { var t1, list = H.setRuntimeTypeInfo([], $E._eval$1("JSArray<0>")); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) list.push(t1.get$current(t1)); if (growable) return list; return J.JSArray_markFixedList(list); }, List_List$of: function(elements, growable, $E) { if (growable === true) return P.List_List$_of(elements, $E); if (growable === false) return J.JSArray_markFixedList(P.List_List$_of(elements, $E)); if (growable == null) H.assertThrow("boolean expression must not be null"); H.assertUnreachable(); H.throwExpression(H.ReachabilityError$(string$.x60null_t)); }, List_List$_of: function(elements, $E) { var list, t1; if (Array.isArray(elements)) return H.setRuntimeTypeInfo(elements.slice(0), $E._eval$1("JSArray<0>")); list = H.setRuntimeTypeInfo([], $E._eval$1("JSArray<0>")); for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) list.push(t1.get$current(t1)); return list; }, List_List$generate: function($length, generator, $E) { var i, result = J.JSArray_JSArray$growable($length, $E); for (i = 0; i < $length; ++i) result[i] = generator.call$1(i); return result; }, List_List$unmodifiable: function(elements, $E) { return J.JSArray_markUnmodifiableList(P.List_List$from(elements, false, $E)); }, String_String$fromCharCodes: function(charCodes, start, end) { var array, len; if (Array.isArray(charCodes)) { array = charCodes; len = array.length; end = P.RangeError_checkValidRange(start, end, len); return H.Primitives_stringFromCharCodes(start > 0 || end < len ? array.slice(start, end) : array); } if (type$.NativeUint8List._is(charCodes)) return H.Primitives_stringFromNativeUint8List(charCodes, start, P.RangeError_checkValidRange(start, end, charCodes.length)); return P.String__stringFromIterable(charCodes, start, end); }, String_String$fromCharCode: function(charCode) { return H.Primitives_stringFromCharCode(charCode); }, String__stringFromIterable: function(charCodes, start, end) { var t1, it, i, list, _null = null; if (start < 0) throw H.wrapException(P.RangeError$range(start, 0, J.get$length$asx(charCodes), _null, _null)); t1 = end == null; if (!t1 && end < start) throw H.wrapException(P.RangeError$range(end, start, J.get$length$asx(charCodes), _null, _null)); it = J.get$iterator$ax(charCodes); for (i = 0; i < start; ++i) if (!it.moveNext$0()) throw H.wrapException(P.RangeError$range(start, 0, i, _null, _null)); list = []; if (t1) for (; it.moveNext$0();) list.push(it.get$current(it)); else for (i = start; i < end; ++i) { if (!it.moveNext$0()) throw H.wrapException(P.RangeError$range(end, start, i, _null, _null)); list.push(it.get$current(it)); } return H.Primitives_stringFromCharCodes(list); }, RegExp_RegExp: function(source, caseSensitive, multiLine) { return new H.JSSyntaxRegExp(source, H.JSSyntaxRegExp_makeNative(source, multiLine, caseSensitive, false, false, false)); }, identical: function(a, b) { return a == null ? b == null : a === b; }, StringBuffer__writeAll: function(string, objects, separator) { var iterator = J.get$iterator$ax(objects); if (!iterator.moveNext$0()) return string; if (separator.length === 0) { do string += H.S(iterator.get$current(iterator)); while (iterator.moveNext$0()); } else { string += H.S(iterator.get$current(iterator)); for (; iterator.moveNext$0();) string = string + separator + H.S(iterator.get$current(iterator)); } return string; }, NoSuchMethodError$: function(receiver, memberName, positionalArguments, namedArguments) { return new P.NoSuchMethodError(receiver, memberName, positionalArguments, namedArguments); }, Uri_base: function() { var uri = H.Primitives_currentUri(); if (uri != null) return P.Uri_parse(uri, 0, null); throw H.wrapException(P.UnsupportedError$("'Uri.base' is not supported")); }, _Uri__uriEncode: function(canonicalTable, text, encoding, spaceToPlus) { var t1, bytes, i, t2, byte, _s16_ = "0123456789ABCDEF"; if (encoding === C.C_Utf8Codec) { t1 = $.$get$_Uri__needsNoEncoding()._nativeRegExp; if (typeof text != "string") H.throwExpression(H.argumentErrorValue(text)); t1 = t1.test(text); } else t1 = false; if (t1) return text; bytes = encoding.encode$1(text); for (t1 = J.getInterceptor$asx(bytes), i = 0, t2 = ""; i < t1.get$length(bytes); ++i) { byte = t1.$index(bytes, i); if (byte < 128 && (canonicalTable[C.JSInt_methods._shrOtherPositive$1(byte, 4)] & 1 << (byte & 15)) !== 0) t2 += H.Primitives_stringFromCharCode(byte); else t2 = spaceToPlus && byte === 32 ? t2 + "+" : t2 + "%" + _s16_[C.JSInt_methods._shrOtherPositive$1(byte, 4) & 15] + _s16_[byte & 15]; } return t2.charCodeAt(0) == 0 ? t2 : t2; }, StackTrace_current: function() { var stackTrace, exception; if ($.$get$_hasErrorStackProperty()) return H.getTraceFromException(new Error()); try { throw H.wrapException(""); } catch (exception) { H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); return stackTrace; } }, _BigIntImpl__parseDecimal: function(source, isNegative) { var part, i, result = $.$get$_BigIntImpl_zero(), t1 = source.length, digitInPartCount = 4 - t1 % 4; if (digitInPartCount === 4) digitInPartCount = 0; for (part = 0, i = 0; i < t1; ++i) { part = part * 10 + C.JSString_methods._codeUnitAt$1(source, i) - 48; ++digitInPartCount; if (digitInPartCount === 4) { result = result.$mul(0, $.$get$_BigIntImpl__bigInt10000()).$add(0, P._BigIntImpl__BigIntImpl$_fromInt(part)); part = 0; digitInPartCount = 0; } } if (isNegative) return result.$negate(0); return result; }, _BigIntImpl__codeUnitToRadixValue: function(codeUnit) { if (48 <= codeUnit && codeUnit <= 57) return codeUnit - 48; return (codeUnit | 32) - 97 + 10; }, _BigIntImpl__parseHex: function(source, startPos, isNegative) { var t3, i, chunk, j, i0, digitValue, digitIndex, digitIndex0, t1 = source.length, sourceLength = t1 - startPos, chunkCount = C.JSNumber_methods.ceil$0(sourceLength / 4), digits = new Uint16Array(chunkCount), t2 = chunkCount - 1, lastDigitLength = sourceLength - t2 * 4; for (t3 = J.getInterceptor$s(source), i = startPos, chunk = 0, j = 0; j < lastDigitLength; ++j, i = i0) { i0 = i + 1; digitValue = P._BigIntImpl__codeUnitToRadixValue(t3._codeUnitAt$1(source, i)); if (digitValue >= 16) return null; chunk = chunk * 16 + digitValue; } digitIndex = t2 - 1; digits[t2] = chunk; for (; i < t1; digitIndex = digitIndex0) { for (chunk = 0, j = 0; j < 4; ++j, i = i0) { i0 = i + 1; digitValue = P._BigIntImpl__codeUnitToRadixValue(C.JSString_methods._codeUnitAt$1(source, i)); if (digitValue >= 16) return null; chunk = chunk * 16 + digitValue; } digitIndex0 = digitIndex - 1; digits[digitIndex] = chunk; } if (chunkCount === 1 && digits[0] === 0) return $.$get$_BigIntImpl_zero(); t1 = P._BigIntImpl__normalize(chunkCount, digits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); }, _BigIntImpl__tryParse: function(source, radix) { var match, t1, isNegative, decimalMatch, hexMatch; if (source === "") return null; match = $.$get$_BigIntImpl__parseRE().firstMatch$1(source); if (match == null) return null; t1 = match._match; isNegative = t1[1] === "-"; decimalMatch = t1[4]; hexMatch = t1[3]; if (decimalMatch != null) return P._BigIntImpl__parseDecimal(decimalMatch, isNegative); if (hexMatch != null) return P._BigIntImpl__parseHex(hexMatch, 2, isNegative); return null; }, _BigIntImpl__normalize: function(used, digits) { while (true) { if (!(used > 0 && digits[used - 1] === 0)) break; --used; } return used; }, _BigIntImpl__cloneDigits: function(digits, from, to, $length) { var resultDigits, n, i; if (!H._isInt($length)) H.throwExpression(P.ArgumentError$("Invalid length " + H.S($length))); resultDigits = new Uint16Array($length); n = to - from; for (i = 0; i < n; ++i) resultDigits[i] = digits[from + i]; return resultDigits; }, _BigIntImpl__BigIntImpl$_fromInt: function(value) { var digits, t1, i, i0, isNegative = value < 0; if (isNegative) { if (value === -9223372036854776e3) { digits = new Uint16Array(4); digits[3] = 32768; t1 = P._BigIntImpl__normalize(4, digits); return new P._BigIntImpl(t1 !== 0 || false, digits, t1); } value = -value; } if (value < 65536) { digits = new Uint16Array(1); digits[0] = value; t1 = P._BigIntImpl__normalize(1, digits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); } if (value <= 4294967295) { digits = new Uint16Array(2); digits[0] = value & 65535; digits[1] = C.JSInt_methods._shrOtherPositive$1(value, 16); t1 = P._BigIntImpl__normalize(2, digits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); } t1 = C.JSInt_methods._tdivFast$1(C.JSInt_methods.get$bitLength(value) - 1, 16) + 1; digits = new Uint16Array(t1); for (i = 0; value !== 0; i = i0) { i0 = i + 1; digits[i] = value & 65535; value = C.JSInt_methods._tdivFast$1(value, 65536); } t1 = P._BigIntImpl__normalize(t1, digits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, digits, t1); }, _BigIntImpl__dlShiftDigits: function(xDigits, xUsed, n, resultDigits) { var i; if (xUsed === 0) return 0; if (n === 0 && resultDigits === xDigits) return xUsed; for (i = xUsed - 1; i >= 0; --i) resultDigits[i + n] = xDigits[i]; for (i = n - 1; i >= 0; --i) resultDigits[i] = 0; return xUsed + n; }, _BigIntImpl__lsh: function(xDigits, xUsed, n, resultDigits) { var i, carry, digit, digitShift = C.JSInt_methods._tdivFast$1(n, 16), bitShift = C.JSInt_methods.$mod(n, 16), carryBitShift = 16 - bitShift, bitMask = C.JSInt_methods.$shl(1, carryBitShift) - 1; for (i = xUsed - 1, carry = 0; i >= 0; --i) { digit = xDigits[i]; resultDigits[i + digitShift + 1] = (C.JSInt_methods._shrReceiverPositive$1(digit, carryBitShift) | carry) >>> 0; carry = C.JSInt_methods.$shl(digit & bitMask, bitShift); } resultDigits[digitShift] = carry; }, _BigIntImpl__lShiftDigits: function(xDigits, xUsed, n, resultDigits) { var resultUsed, i, resultUsed0, digitsShift = C.JSInt_methods._tdivFast$1(n, 16); if (C.JSInt_methods.$mod(n, 16) === 0) return P._BigIntImpl__dlShiftDigits(xDigits, xUsed, digitsShift, resultDigits); resultUsed = xUsed + digitsShift + 1; P._BigIntImpl__lsh(xDigits, xUsed, n, resultDigits); for (i = digitsShift; --i, i >= 0;) resultDigits[i] = 0; resultUsed0 = resultUsed - 1; return resultDigits[resultUsed0] === 0 ? resultUsed0 : resultUsed; }, _BigIntImpl__rsh: function(xDigits, xUsed, n, resultDigits) { var i, digit, digitsShift = C.JSInt_methods._tdivFast$1(n, 16), bitShift = C.JSInt_methods.$mod(n, 16), carryBitShift = 16 - bitShift, bitMask = C.JSInt_methods.$shl(1, bitShift) - 1, carry = C.JSInt_methods._shrReceiverPositive$1(xDigits[digitsShift], bitShift), last = xUsed - digitsShift - 1; for (i = 0; i < last; ++i) { digit = xDigits[i + digitsShift + 1]; resultDigits[i] = (C.JSInt_methods.$shl(digit & bitMask, carryBitShift) | carry) >>> 0; carry = C.JSInt_methods._shrReceiverPositive$1(digit, bitShift); } resultDigits[last] = carry; }, _BigIntImpl__compareDigits: function(digits, used, otherDigits, otherUsed) { var i, result = used - otherUsed; if (result === 0) for (i = used - 1; i >= 0; --i) { result = digits[i] - otherDigits[i]; if (result !== 0) return result; } return result; }, _BigIntImpl__absAdd: function(digits, used, otherDigits, otherUsed, resultDigits) { var carry, i; for (carry = 0, i = 0; i < otherUsed; ++i) { carry += digits[i] + otherDigits[i]; resultDigits[i] = carry & 65535; carry = carry >>> 16; } for (i = otherUsed; i < used; ++i) { carry += digits[i]; resultDigits[i] = carry & 65535; carry = carry >>> 16; } resultDigits[used] = carry; }, _BigIntImpl__absSub: function(digits, used, otherDigits, otherUsed, resultDigits) { var carry, i; for (carry = 0, i = 0; i < otherUsed; ++i) { carry += digits[i] - otherDigits[i]; resultDigits[i] = carry & 65535; carry = 0 - (C.JSInt_methods._shrOtherPositive$1(carry, 16) & 1); } for (i = otherUsed; i < used; ++i) { carry += digits[i]; resultDigits[i] = carry & 65535; carry = 0 - (C.JSInt_methods._shrOtherPositive$1(carry, 16) & 1); } }, _BigIntImpl__mulAdd: function(x, multiplicandDigits, i, accumulatorDigits, j, n) { var c, i0, combined, j0, l; if (x === 0) return; for (c = 0; --n, n >= 0; j = j0, i = i0) { i0 = i + 1; combined = x * multiplicandDigits[i] + accumulatorDigits[j] + c; j0 = j + 1; accumulatorDigits[j] = combined & 65535; c = C.JSInt_methods._tdivFast$1(combined, 65536); } for (; c !== 0; j = j0) { l = accumulatorDigits[j] + c; j0 = j + 1; accumulatorDigits[j] = l & 65535; c = C.JSInt_methods._tdivFast$1(l, 65536); } }, _BigIntImpl__estimateQuotientDigit: function(topDigitDivisor, digits, i) { var quotientDigit, t1 = digits[i]; if (t1 === topDigitDivisor) return 65535; quotientDigit = C.JSInt_methods.$tdiv((t1 << 16 | digits[i - 1]) >>> 0, topDigitDivisor); if (quotientDigit > 65535) return 65535; return quotientDigit; }, Comparable_compare: function(a, b) { return J.compareTo$1$ns(a, b); }, DateTime_parse: function(formattedString) { var t1, t2, t3, years, month, day, hour, minute, second, milliAndMicroseconds, millisecond, tzSign, sign, hourDifference, isUtc, value, _null = null, match = $.$get$DateTime__parseFormat().firstMatch$1(formattedString); if (match != null) { t1 = new P.DateTime_parse_parseIntOrZero(); t2 = match._match; t3 = t2[1]; t3.toString; years = P.int_parse(t3, _null); t3 = t2[2]; t3.toString; month = P.int_parse(t3, _null); t3 = t2[3]; t3.toString; day = P.int_parse(t3, _null); hour = t1.call$1(t2[4]); minute = t1.call$1(t2[5]); second = t1.call$1(t2[6]); milliAndMicroseconds = new P.DateTime_parse_parseMilliAndMicroseconds().call$1(t2[7]); millisecond = C.JSInt_methods._tdivFast$1(milliAndMicroseconds, 1000); if (t2[8] != null) { tzSign = t2[9]; if (tzSign != null) { sign = tzSign === "-" ? -1 : 1; t3 = t2[10]; t3.toString; hourDifference = P.int_parse(t3, _null); minute -= sign * (t1.call$1(t2[11]) + 60 * hourDifference); } isUtc = true; } else isUtc = false; value = H.Primitives_valueFromDecomposedDate(years, month, day, hour, minute, second, millisecond + C.JSNumber_methods.round$0(milliAndMicroseconds % 1000 / 1000), isUtc); if (value == null) throw H.wrapException(P.FormatException$("Time out of range", formattedString, _null)); return P.DateTime$_withValue(value, isUtc); } else throw H.wrapException(P.FormatException$("Invalid date format", formattedString, _null)); }, DateTime_tryParse: function(formattedString) { var t1, exception; try { t1 = P.DateTime_parse(formattedString); return t1; } catch (exception) { if (type$.FormatException._is(H.unwrapException(exception))) return null; else throw exception; } }, DateTime$_withValue: function(_value, isUtc) { var t1; if (Math.abs(_value) <= 864e13) t1 = false; else t1 = true; if (t1) H.throwExpression(P.ArgumentError$("DateTime is outside valid range: " + _value)); H.checkNotNullable(isUtc, "isUtc", type$.bool); return new P.DateTime(_value, isUtc); }, DateTime__fourDigits: function(n) { var absN = Math.abs(n), sign = n < 0 ? "-" : ""; if (absN >= 1000) return "" + n; if (absN >= 100) return sign + "0" + absN; if (absN >= 10) return sign + "00" + absN; return sign + "000" + absN; }, DateTime__sixDigits: function(n) { var absN = Math.abs(n), sign = n < 0 ? "-" : "+"; if (absN >= 100000) return sign + absN; return sign + "0" + absN; }, DateTime__threeDigits: function(n) { if (n >= 100) return "" + n; if (n >= 10) return "0" + n; return "00" + n; }, DateTime__twoDigits: function(n) { if (n >= 10) return "" + n; return "0" + n; }, Duration$: function(days, hours, microseconds, milliseconds, minutes, seconds) { return new P.Duration(864e8 * days + 3600000000 * hours + 60000000 * minutes + 1000000 * seconds + 1000 * milliseconds + microseconds); }, Error_safeToString: function(object) { if (typeof object == "number" || H._isBool(object) || null == object) return J.toString$0$(object); if (typeof object == "string") return JSON.stringify(object); return P.Error__objectToString(object); }, AssertionError$: function(message) { return new P.AssertionError(message); }, ArgumentError$: function(message) { return new P.ArgumentError(false, null, null, message); }, ArgumentError$value: function(value, $name, message) { return new P.ArgumentError(true, value, $name, message); }, ArgumentError$notNull: function($name) { return new P.ArgumentError(false, null, $name, "Must not be null"); }, RangeError$: function(message) { var _null = null; return new P.RangeError(_null, _null, false, _null, _null, message); }, RangeError$value: function(value, $name, message) { return new P.RangeError(null, null, true, value, $name, message == null ? "Value not in range" : message); }, RangeError$range: function(invalidValue, minValue, maxValue, $name, message) { return new P.RangeError(minValue, maxValue, true, invalidValue, $name, "Invalid value"); }, RangeError_checkValueInInterval: function(value, minValue, maxValue, $name) { if (value < minValue || value > maxValue) throw H.wrapException(P.RangeError$range(value, minValue, maxValue, $name, null)); return value; }, RangeError_checkValidIndex: function(index, indexable, $name, $length) { if ($length == null) $length = J.get$length$asx(indexable); if (0 > index || index >= $length) throw H.wrapException(P.IndexError$(index, indexable, $name == null ? "index" : $name, null, $length)); return index; }, RangeError_checkValidRange: function(start, end, $length) { if (0 > start || start > $length) throw H.wrapException(P.RangeError$range(start, 0, $length, "start", null)); if (end != null) { if (start > end || end > $length) throw H.wrapException(P.RangeError$range(end, start, $length, "end", null)); return end; } return $length; }, RangeError_checkNotNegative: function(value, $name) { if (value < 0) throw H.wrapException(P.RangeError$range(value, 0, null, $name, null)); return value; }, IndexError$: function(invalidValue, indexable, $name, message, $length) { var t1 = $length == null ? J.get$length$asx(indexable) : $length; return new P.IndexError(t1, true, invalidValue, $name, "Index out of range"); }, UnsupportedError$: function(message) { return new P.UnsupportedError(message); }, UnimplementedError$: function(message) { return new P.UnimplementedError(message); }, StateError$: function(message) { return new P.StateError(message); }, ConcurrentModificationError$: function(modifiedObject) { return new P.ConcurrentModificationError(modifiedObject); }, Exception_Exception: function(message) { return new P._Exception(message); }, FormatException$: function(message, source, offset) { return new P.FormatException(message, source, offset); }, Iterable_Iterable$generate: function(count, generator, $E) { var t1; if (count <= 0) return new H.EmptyIterable($E._eval$1("EmptyIterable<0>")); t1 = generator == null ? $E._eval$1("0(int)")._as(P.core__GeneratorIterable__id$closure()) : generator; return new P._GeneratorIterable(count, t1, $E._eval$1("_GeneratorIterable<0>")); }, _GeneratorIterable__id: function(n) { return n; }, Map_castFrom: function(source, $K, $V, K2, V2) { return new H.CastMap(source, $K._eval$1("@<0>")._bind$1($V)._bind$1(K2)._bind$1(V2)._eval$1("CastMap<1,2,3,4>")); }, print: function(object) { var line = J.toString$0$(object), toZone = $.printToZone; if (toZone == null) H.printString(H.S(line)); else toZone.call$1(line); }, Stopwatch$: function() { $.$get$Stopwatch__frequency(); return new P.Stopwatch(); }, _combineSurrogatePair: function(start, end) { return 65536 + ((start & 1023) << 10) + (end & 1023); }, Uri_parse: function(uri, start, end) { var t1, delta, indices, t2, schemeEnd, hostStart, portStart, pathStart, queryStart, fragmentStart, isSimple, scheme, t3, schemeAuth, userInfoStart, userInfo, host, portNumber, port, path, query, _null = null; end = uri.length; t1 = start + 5; if (end >= t1) { delta = ((J._codeUnitAt$1$s(uri, start + 4) ^ 58) * 3 | C.JSString_methods._codeUnitAt$1(uri, start) ^ 100 | C.JSString_methods._codeUnitAt$1(uri, start + 1) ^ 97 | C.JSString_methods._codeUnitAt$1(uri, start + 2) ^ 116 | C.JSString_methods._codeUnitAt$1(uri, start + 3) ^ 97) >>> 0; if (delta === 0) return P.UriData__parse(start > 0 || end < end ? C.JSString_methods.substring$2(uri, start, end) : uri, 5, _null).get$uri(); else if (delta === 32) return P.UriData__parse(C.JSString_methods.substring$2(uri, t1, end), 0, _null).get$uri(); } indices = P.List_List$filled(8, 0, false, type$.int); indices[0] = 0; t2 = start - 1; indices[1] = t2; indices[2] = t2; indices[7] = t2; indices[3] = start; indices[4] = start; indices[5] = end; indices[6] = end; if (P._scan(uri, start, end, 0, indices) >= 14) indices[7] = end; schemeEnd = indices[1]; if (schemeEnd >= start) if (P._scan(uri, start, schemeEnd, 20, indices) === 20) indices[7] = schemeEnd; hostStart = indices[2] + 1; portStart = indices[3]; pathStart = indices[4]; queryStart = indices[5]; fragmentStart = indices[6]; if (fragmentStart < queryStart) queryStart = fragmentStart; if (pathStart < hostStart) pathStart = queryStart; else if (pathStart <= schemeEnd) pathStart = schemeEnd + 1; if (portStart < hostStart) portStart = pathStart; isSimple = indices[7] < start; if (isSimple) if (hostStart > schemeEnd + 3) { scheme = _null; isSimple = false; } else { t2 = portStart > start; if (t2 && portStart + 1 === pathStart) { scheme = _null; isSimple = false; } else { if (!(queryStart < end && queryStart === pathStart + 2 && J.startsWith$2$s(uri, "..", pathStart))) t3 = queryStart > pathStart + 2 && J.startsWith$2$s(uri, "/..", queryStart - 3); else t3 = true; if (t3) { scheme = _null; isSimple = false; } else { if (schemeEnd === start + 4) if (J.startsWith$2$s(uri, "file", start)) { if (hostStart <= start) { if (!C.JSString_methods.startsWith$2(uri, "/", pathStart)) { schemeAuth = "file:///"; delta = 3; } else { schemeAuth = "file://"; delta = 2; } uri = schemeAuth + C.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; t1 = delta - start; queryStart += t1; fragmentStart += t1; end = uri.length; start = 0; hostStart = 7; portStart = 7; pathStart = 7; } else if (pathStart === queryStart) if (start === 0 && true) { uri = C.JSString_methods.replaceRange$3(uri, pathStart, queryStart, "/"); ++queryStart; ++fragmentStart; ++end; } else { uri = C.JSString_methods.substring$2(uri, start, pathStart) + "/" + C.JSString_methods.substring$2(uri, queryStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; pathStart -= start; t1 = 1 - start; queryStart += t1; fragmentStart += t1; end = uri.length; start = 0; } scheme = "file"; } else if (C.JSString_methods.startsWith$2(uri, "http", start)) { if (t2 && portStart + 3 === pathStart && C.JSString_methods.startsWith$2(uri, "80", portStart + 1)) if (start === 0 && true) { uri = C.JSString_methods.replaceRange$3(uri, portStart, pathStart, ""); pathStart -= 3; queryStart -= 3; fragmentStart -= 3; end -= 3; } else { uri = C.JSString_methods.substring$2(uri, start, portStart) + C.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; t1 = 3 + start; pathStart -= t1; queryStart -= t1; fragmentStart -= t1; end = uri.length; start = 0; } scheme = "http"; } else scheme = _null; else if (schemeEnd === t1 && J.startsWith$2$s(uri, "https", start)) { if (t2 && portStart + 4 === pathStart && J.startsWith$2$s(uri, "443", portStart + 1)) { t1 = start === 0 && true; t2 = J.getInterceptor$asx(uri); if (t1) { uri = t2.replaceRange$3(uri, portStart, pathStart, ""); pathStart -= 4; queryStart -= 4; fragmentStart -= 4; end -= 3; } else { uri = t2.substring$2(uri, start, portStart) + C.JSString_methods.substring$2(uri, pathStart, end); schemeEnd -= start; hostStart -= start; portStart -= start; t1 = 4 + start; pathStart -= t1; queryStart -= t1; fragmentStart -= t1; end = uri.length; start = 0; } } scheme = "https"; } else scheme = _null; isSimple = true; } } } else scheme = _null; if (isSimple) { if (start > 0 || end < uri.length) { uri = J.substring$2$s(uri, start, end); schemeEnd -= start; hostStart -= start; portStart -= start; pathStart -= start; queryStart -= start; fragmentStart -= start; } return new P._SimpleUri(uri, schemeEnd, hostStart, portStart, pathStart, queryStart, fragmentStart, scheme); } if (scheme == null) if (schemeEnd > start) scheme = P._Uri__makeScheme(uri, start, schemeEnd); else { if (schemeEnd === start) { P._Uri__fail(uri, start, "Invalid empty scheme"); H.ReachabilityError$(string$.x60null_t); } scheme = ""; } if (hostStart > start) { userInfoStart = schemeEnd + 3; userInfo = userInfoStart < hostStart ? P._Uri__makeUserInfo(uri, userInfoStart, hostStart - 1) : ""; host = P._Uri__makeHost(uri, hostStart, portStart, false); t1 = portStart + 1; if (t1 < pathStart) { portNumber = H.Primitives_parseInt(J.substring$2$s(uri, t1, pathStart), _null); port = P._Uri__makePort(portNumber == null ? H.throwExpression(P.FormatException$("Invalid port", uri, t1)) : portNumber, scheme); } else port = _null; } else { port = _null; host = port; userInfo = ""; } path = P._Uri__makePath(uri, pathStart, queryStart, _null, scheme, host != null); query = queryStart < fragmentStart ? P._Uri__makeQuery(uri, queryStart + 1, fragmentStart, _null) : _null; return P._Uri$_internal(scheme, userInfo, host, port, path, query, fragmentStart < end ? P._Uri__makeFragment(uri, fragmentStart + 1, end) : _null); }, Uri_tryParse: function(uri) { var t1, exception, start = 0, end = null; try { t1 = P.Uri_parse(uri, start, end); return t1; } catch (exception) { if (type$.FormatException._is(H.unwrapException(exception))) return null; else throw exception; } }, Uri_decodeComponent: function(encodedComponent) { return P._Uri__uriDecode(encodedComponent, 0, encodedComponent.length, C.C_Utf8Codec, false); }, Uri__parseIPv4Address: function(host, start, end) { var i, partStart, partIndex, char, part, partIndex0, _s43_ = "IPv4 address should contain exactly 4 parts", _s37_ = "each part must be in the range 0..255", error = new P.Uri__parseIPv4Address_error(host), result = new Uint8Array(4); for (i = start, partStart = i, partIndex = 0; i < end; ++i) { char = C.JSString_methods.codeUnitAt$1(host, i); if (char !== 46) { if ((char ^ 48) > 9) error.call$2("invalid character", i); } else { if (partIndex === 3) error.call$2(_s43_, i); part = P.int_parse(C.JSString_methods.substring$2(host, partStart, i), null); if (part > 255) error.call$2(_s37_, partStart); partIndex0 = partIndex + 1; result[partIndex] = part; partStart = i + 1; partIndex = partIndex0; } } if (partIndex !== 3) error.call$2(_s43_, end); part = P.int_parse(C.JSString_methods.substring$2(host, partStart, end), null); if (part > 255) error.call$2(_s37_, partStart); result[partIndex] = part; return result; }, Uri_parseIPv6Address: function(host, start, end) { var parts, i, partStart, wildcardSeen, seenDot, char, atEnd, t1, last, bytes, wildCardLength, index, value, j, error = new P.Uri_parseIPv6Address_error(host), parseHex = new P.Uri_parseIPv6Address_parseHex(error, host); if (host.length < 2) error.call$1("address is too short"); parts = H.setRuntimeTypeInfo([], type$.JSArray_int); for (i = start, partStart = i, wildcardSeen = false, seenDot = false; i < end; ++i) { char = C.JSString_methods.codeUnitAt$1(host, i); if (char === 58) { if (i === start) { ++i; if (C.JSString_methods.codeUnitAt$1(host, i) !== 58) error.call$2("invalid start colon.", i); partStart = i; } if (i === partStart) { if (wildcardSeen) error.call$2("only one wildcard `::` is allowed", i); parts.push(-1); wildcardSeen = true; } else parts.push(parseHex.call$2(partStart, i)); partStart = i + 1; } else if (char === 46) seenDot = true; } if (parts.length === 0) error.call$1("too few parts"); atEnd = partStart === end; t1 = C.JSArray_methods.get$last(parts); if (atEnd && t1 !== -1) error.call$2("expected a part after last `:`", end); if (!atEnd) if (!seenDot) parts.push(parseHex.call$2(partStart, end)); else { last = P.Uri__parseIPv4Address(host, partStart, end); parts.push((last[0] << 8 | last[1]) >>> 0); parts.push((last[2] << 8 | last[3]) >>> 0); } if (wildcardSeen) { if (parts.length > 7) error.call$1("an address with a wildcard must have less than 7 parts"); } else if (parts.length !== 8) error.call$1("an address without a wildcard must contain exactly 8 parts"); bytes = new Uint8Array(16); for (t1 = parts.length, wildCardLength = 9 - t1, i = 0, index = 0; i < t1; ++i) { value = parts[i]; if (value === -1) for (j = 0; j < wildCardLength; ++j) { bytes[index] = 0; bytes[index + 1] = 0; index += 2; } else { bytes[index] = C.JSInt_methods._shrOtherPositive$1(value, 8); bytes[index + 1] = value & 255; index += 2; } } return bytes; }, _Uri$_internal: function(scheme, _userInfo, _host, _port, path, _query, _fragment) { return new P._Uri(scheme, _userInfo, _host, _port, path, _query, _fragment); }, _Uri__Uri: function(host, path, pathSegments, scheme) { var userInfo, query, fragment, port, isFile, t1, hasAuthority, t2, _null = null; scheme = scheme == null ? "" : P._Uri__makeScheme(scheme, 0, scheme.length); userInfo = P._Uri__makeUserInfo(_null, 0, 0); host = P._Uri__makeHost(host, 0, host == null ? 0 : host.length, false); query = P._Uri__makeQuery(_null, 0, 0, _null); fragment = P._Uri__makeFragment(_null, 0, 0); port = P._Uri__makePort(_null, scheme); isFile = scheme === "file"; if (host == null) t1 = userInfo.length !== 0 || port != null || isFile; else t1 = false; if (t1) host = ""; t1 = host == null; hasAuthority = !t1; path = P._Uri__makePath(path, 0, path == null ? 0 : path.length, pathSegments, scheme, hasAuthority); t2 = scheme.length === 0; if (t2 && t1 && !C.JSString_methods.startsWith$1(path, "/")) path = P._Uri__normalizeRelativePath(path, !t2 || hasAuthority); else path = P._Uri__removeDotSegments(path); return P._Uri$_internal(scheme, userInfo, t1 && C.JSString_methods.startsWith$1(path, "//") ? "" : host, port, path, query, fragment); }, _Uri__defaultPort: function(scheme) { if (scheme === "http") return 80; if (scheme === "https") return 443; return 0; }, _Uri__compareScheme: function(scheme, uri) { var t1, i, schemeChar, uriChar, delta, lowerChar; for (t1 = scheme.length, i = 0; i < t1; ++i) { schemeChar = C.JSString_methods._codeUnitAt$1(scheme, i); uriChar = C.JSString_methods._codeUnitAt$1(uri, i); delta = schemeChar ^ uriChar; if (delta !== 0) { if (delta === 32) { lowerChar = uriChar | delta; if (97 <= lowerChar && lowerChar <= 122) continue; } return false; } } return true; }, _Uri__fail: function(uri, index, message) { throw H.wrapException(P.FormatException$(message, uri, index)); }, _Uri__checkNonWindowsPathReservedCharacters: function(segments, argumentError) { var t1, t2; for (t1 = J.get$iterator$ax(segments); t1.moveNext$0();) { t2 = t1.get$current(t1); t2.toString; if (H.stringContainsUnchecked(t2, "/", 0)) { t1 = P.UnsupportedError$("Illegal path character " + t2); throw H.wrapException(t1); } } }, _Uri__checkWindowsPathReservedCharacters: function(segments, argumentError, firstSegment) { var t1, t2, t3; for (t1 = J.skip$1$ax(segments, firstSegment), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = P.RegExp_RegExp('["*/:<>?\\\\|]', true, false); t2.toString; if (H.stringContainsUnchecked(t2, t3, 0)) if (argumentError) throw H.wrapException(P.ArgumentError$("Illegal character in path")); else throw H.wrapException(P.UnsupportedError$("Illegal character in path: " + t2)); } }, _Uri__checkWindowsDriveLetter: function(charCode, argumentError) { var t1, _s21_ = "Illegal drive letter "; if (!(65 <= charCode && charCode <= 90)) t1 = 97 <= charCode && charCode <= 122; else t1 = true; if (t1) return; if (argumentError) throw H.wrapException(P.ArgumentError$(_s21_ + P.String_String$fromCharCode(charCode))); else throw H.wrapException(P.UnsupportedError$(_s21_ + P.String_String$fromCharCode(charCode))); }, _Uri__makePort: function(port, scheme) { if (port != null && port === P._Uri__defaultPort(scheme)) return null; return port; }, _Uri__makeHost: function(host, start, end, strictIPv6) { var t1, t2, index, zoneIDstart, zoneID, i; if (host == null) return null; if (start === end) return ""; if (C.JSString_methods.codeUnitAt$1(host, start) === 91) { t1 = end - 1; if (C.JSString_methods.codeUnitAt$1(host, t1) !== 93) { P._Uri__fail(host, start, "Missing end `]` to match `[` in host"); H.ReachabilityError$(string$.x60null_t); } t2 = start + 1; index = P._Uri__checkZoneID(host, t2, t1); if (index < t1) { zoneIDstart = index + 1; zoneID = P._Uri__normalizeZoneID(host, C.JSString_methods.startsWith$2(host, "25", zoneIDstart) ? index + 3 : zoneIDstart, t1, "%25"); } else zoneID = ""; P.Uri_parseIPv6Address(host, t2, index); return C.JSString_methods.substring$2(host, start, index).toLowerCase() + zoneID + "]"; } for (i = start; i < end; ++i) if (C.JSString_methods.codeUnitAt$1(host, i) === 58) { index = C.JSString_methods.indexOf$2(host, "%", start); index = index >= start && index < end ? index : end; if (index < end) { zoneIDstart = index + 1; zoneID = P._Uri__normalizeZoneID(host, C.JSString_methods.startsWith$2(host, "25", zoneIDstart) ? index + 3 : zoneIDstart, end, "%25"); } else zoneID = ""; P.Uri_parseIPv6Address(host, start, index); return "[" + C.JSString_methods.substring$2(host, start, index) + zoneID + "]"; } return P._Uri__normalizeRegName(host, start, end); }, _Uri__checkZoneID: function(host, start, end) { var index = C.JSString_methods.indexOf$2(host, "%", start); return index >= start && index < end ? index : end; }, _Uri__normalizeZoneID: function(host, start, end, prefix) { var index, sectionStart, isNormalized, char, replacement, t1, t2, tail, sourceLength, slice, buffer = prefix !== "" ? new P.StringBuffer(prefix) : null; for (index = start, sectionStart = index, isNormalized = true; index < end;) { char = C.JSString_methods.codeUnitAt$1(host, index); if (char === 37) { replacement = P._Uri__normalizeEscape(host, index, true); t1 = replacement == null; if (t1 && isNormalized) { index += 3; continue; } if (buffer == null) buffer = new P.StringBuffer(""); t2 = buffer._contents += C.JSString_methods.substring$2(host, sectionStart, index); if (t1) replacement = C.JSString_methods.substring$2(host, index, index + 3); else if (replacement === "%") { P._Uri__fail(host, index, "ZoneID should not contain % anymore"); H.ReachabilityError$(string$.x60null_t); } buffer._contents = t2 + replacement; index += 3; sectionStart = index; isNormalized = true; } else if (char < 127 && (C.List_nxB[char >>> 4] & 1 << (char & 15)) !== 0) { if (isNormalized && 65 <= char && 90 >= char) { if (buffer == null) buffer = new P.StringBuffer(""); if (sectionStart < index) { buffer._contents += C.JSString_methods.substring$2(host, sectionStart, index); sectionStart = index; } isNormalized = false; } ++index; } else { if ((char & 64512) === 55296 && index + 1 < end) { tail = C.JSString_methods.codeUnitAt$1(host, index + 1); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; slice = C.JSString_methods.substring$2(host, sectionStart, index); if (buffer == null) { buffer = new P.StringBuffer(""); t1 = buffer; } else t1 = buffer; t1._contents += slice; t1._contents += P._Uri__escapeChar(char); index += sourceLength; sectionStart = index; } } if (buffer == null) return C.JSString_methods.substring$2(host, start, end); if (sectionStart < end) buffer._contents += C.JSString_methods.substring$2(host, sectionStart, end); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__normalizeRegName: function(host, start, end) { var index, sectionStart, buffer, isNormalized, char, replacement, t1, slice, t2, sourceLength, tail; for (index = start, sectionStart = index, buffer = null, isNormalized = true; index < end;) { char = C.JSString_methods.codeUnitAt$1(host, index); if (char === 37) { replacement = P._Uri__normalizeEscape(host, index, true); t1 = replacement == null; if (t1 && isNormalized) { index += 3; continue; } if (buffer == null) buffer = new P.StringBuffer(""); slice = C.JSString_methods.substring$2(host, sectionStart, index); t2 = buffer._contents += !isNormalized ? slice.toLowerCase() : slice; if (t1) { replacement = C.JSString_methods.substring$2(host, index, index + 3); sourceLength = 3; } else if (replacement === "%") { replacement = "%25"; sourceLength = 1; } else sourceLength = 3; buffer._contents = t2 + replacement; index += sourceLength; sectionStart = index; isNormalized = true; } else if (char < 127 && (C.List_qNA[char >>> 4] & 1 << (char & 15)) !== 0) { if (isNormalized && 65 <= char && 90 >= char) { if (buffer == null) buffer = new P.StringBuffer(""); if (sectionStart < index) { buffer._contents += C.JSString_methods.substring$2(host, sectionStart, index); sectionStart = index; } isNormalized = false; } ++index; } else if (char <= 93 && (C.List_2Vk[char >>> 4] & 1 << (char & 15)) !== 0) { P._Uri__fail(host, index, "Invalid character"); H.ReachabilityError$(string$.x60null_t); } else { if ((char & 64512) === 55296 && index + 1 < end) { tail = C.JSString_methods.codeUnitAt$1(host, index + 1); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; slice = C.JSString_methods.substring$2(host, sectionStart, index); if (!isNormalized) slice = slice.toLowerCase(); if (buffer == null) { buffer = new P.StringBuffer(""); t1 = buffer; } else t1 = buffer; t1._contents += slice; t1._contents += P._Uri__escapeChar(char); index += sourceLength; sectionStart = index; } } if (buffer == null) return C.JSString_methods.substring$2(host, start, end); if (sectionStart < end) { slice = C.JSString_methods.substring$2(host, sectionStart, end); buffer._contents += !isNormalized ? slice.toLowerCase() : slice; } t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__makeScheme: function(scheme, start, end) { var i, containsUpperCase, codeUnit, _s67_ = string$.x60null_t; if (start === end) return ""; if (!P._Uri__isAlphabeticCharacter(J._codeUnitAt$1$s(scheme, start))) { P._Uri__fail(scheme, start, "Scheme not starting with alphabetic character"); H.ReachabilityError$(_s67_); } for (i = start, containsUpperCase = false; i < end; ++i) { codeUnit = C.JSString_methods._codeUnitAt$1(scheme, i); if (!(codeUnit < 128 && (C.List_JYB[codeUnit >>> 4] & 1 << (codeUnit & 15)) !== 0)) { P._Uri__fail(scheme, i, "Illegal scheme character"); H.ReachabilityError$(_s67_); } if (65 <= codeUnit && codeUnit <= 90) containsUpperCase = true; } scheme = C.JSString_methods.substring$2(scheme, start, end); return P._Uri__canonicalizeScheme(containsUpperCase ? scheme.toLowerCase() : scheme); }, _Uri__canonicalizeScheme: function(scheme) { if (scheme === "http") return "http"; if (scheme === "file") return "file"; if (scheme === "https") return "https"; if (scheme === "package") return "package"; return scheme; }, _Uri__makeUserInfo: function(userInfo, start, end) { if (userInfo == null) return ""; return P._Uri__normalizeOrSubstring(userInfo, start, end, C.List_gRj, false); }, _Uri__makePath: function(path, start, end, pathSegments, scheme, hasAuthority) { var result, isFile = scheme === "file", ensureLeadingSlash = isFile || hasAuthority; if (path == null) { if (pathSegments == null) return isFile ? "/" : ""; result = new H.MappedListIterable(pathSegments, new P._Uri__makePath_closure(), H._arrayInstanceType(pathSegments)._eval$1("MappedListIterable<1,String>")).join$1(0, "/"); } else if (pathSegments != null) throw H.wrapException(P.ArgumentError$("Both path and pathSegments specified")); else result = P._Uri__normalizeOrSubstring(path, start, end, C.List_qg4, true); if (result.length === 0) { if (isFile) return "/"; } else if (ensureLeadingSlash && !C.JSString_methods.startsWith$1(result, "/")) result = "/" + result; return P._Uri__normalizePath(result, scheme, hasAuthority); }, _Uri__normalizePath: function(path, scheme, hasAuthority) { var t1 = scheme.length === 0; if (t1 && !hasAuthority && !C.JSString_methods.startsWith$1(path, "/")) return P._Uri__normalizeRelativePath(path, !t1 || hasAuthority); return P._Uri__removeDotSegments(path); }, _Uri__makeQuery: function(query, start, end, queryParameters) { var result, t1 = {}; if (query != null) { if (queryParameters != null) throw H.wrapException(P.ArgumentError$("Both query and queryParameters specified")); return P._Uri__normalizeOrSubstring(query, start, end, C.List_CVk, true); } if (queryParameters == null) return null; result = new P.StringBuffer(""); t1.separator = ""; queryParameters.forEach$1(0, new P._Uri__makeQuery_closure(new P._Uri__makeQuery_writeParameter(t1, result))); t1 = result._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__makeFragment: function(fragment, start, end) { if (fragment == null) return null; return P._Uri__normalizeOrSubstring(fragment, start, end, C.List_CVk, true); }, _Uri__normalizeEscape: function(source, index, lowerCase) { var firstDigit, secondDigit, firstDigitValue, secondDigitValue, value, t1 = index + 2; if (t1 >= source.length) return "%"; firstDigit = C.JSString_methods.codeUnitAt$1(source, index + 1); secondDigit = C.JSString_methods.codeUnitAt$1(source, t1); firstDigitValue = H.hexDigitValue(firstDigit); secondDigitValue = H.hexDigitValue(secondDigit); if (firstDigitValue < 0 || secondDigitValue < 0) return "%"; value = firstDigitValue * 16 + secondDigitValue; if (value < 127 && (C.List_nxB[C.JSInt_methods._shrOtherPositive$1(value, 4)] & 1 << (value & 15)) !== 0) return H.Primitives_stringFromCharCode(lowerCase && 65 <= value && 90 >= value ? (value | 32) >>> 0 : value); if (firstDigit >= 97 || secondDigit >= 97) return C.JSString_methods.substring$2(source, index, index + 3).toUpperCase(); return null; }, _Uri__escapeChar: function(char) { var codeUnits, flag, encodedBytes, index, byte, _s16_ = "0123456789ABCDEF"; if (char < 128) { codeUnits = new Uint8Array(3); codeUnits[0] = 37; codeUnits[1] = C.JSString_methods._codeUnitAt$1(_s16_, char >>> 4); codeUnits[2] = C.JSString_methods._codeUnitAt$1(_s16_, char & 15); } else { if (char > 2047) if (char > 65535) { flag = 240; encodedBytes = 4; } else { flag = 224; encodedBytes = 3; } else { flag = 192; encodedBytes = 2; } codeUnits = new Uint8Array(3 * encodedBytes); for (index = 0; --encodedBytes, encodedBytes >= 0; flag = 128) { byte = C.JSInt_methods._shrReceiverPositive$1(char, 6 * encodedBytes) & 63 | flag; codeUnits[index] = 37; codeUnits[index + 1] = C.JSString_methods._codeUnitAt$1(_s16_, byte >>> 4); codeUnits[index + 2] = C.JSString_methods._codeUnitAt$1(_s16_, byte & 15); index += 3; } } return P.String_String$fromCharCodes(codeUnits, 0, null); }, _Uri__normalizeOrSubstring: function(component, start, end, charTable, escapeDelimiters) { var t1 = P._Uri__normalize(component, start, end, charTable, escapeDelimiters); return t1 == null ? C.JSString_methods.substring$2(component, start, end) : t1; }, _Uri__normalize: function(component, start, end, charTable, escapeDelimiters) { var t1, t2, index, sectionStart, buffer, char, replacement, sourceLength, t3, tail, _null = null; for (t1 = !escapeDelimiters, t2 = J.getInterceptor$s(component), index = start, sectionStart = index, buffer = _null; index < end;) { char = t2.codeUnitAt$1(component, index); if (char < 127 && (charTable[char >>> 4] & 1 << (char & 15)) !== 0) ++index; else { if (char === 37) { replacement = P._Uri__normalizeEscape(component, index, false); if (replacement == null) { index += 3; continue; } if ("%" === replacement) { replacement = "%25"; sourceLength = 1; } else sourceLength = 3; } else if (t1 && char <= 93 && (C.List_2Vk[char >>> 4] & 1 << (char & 15)) !== 0) { P._Uri__fail(component, index, "Invalid character"); H.ReachabilityError$(string$.x60null_t); sourceLength = _null; replacement = sourceLength; } else { if ((char & 64512) === 55296) { t3 = index + 1; if (t3 < end) { tail = C.JSString_methods.codeUnitAt$1(component, t3); if ((tail & 64512) === 56320) { char = (char & 1023) << 10 | tail & 1023 | 65536; sourceLength = 2; } else sourceLength = 1; } else sourceLength = 1; } else sourceLength = 1; replacement = P._Uri__escapeChar(char); } if (buffer == null) { buffer = new P.StringBuffer(""); t3 = buffer; } else t3 = buffer; t3._contents += C.JSString_methods.substring$2(component, sectionStart, index); t3._contents += H.S(replacement); index += sourceLength; sectionStart = index; } } if (buffer == null) return _null; if (sectionStart < end) buffer._contents += t2.substring$2(component, sectionStart, end); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__mayContainDotSegments: function(path) { if (C.JSString_methods.startsWith$1(path, ".")) return true; return C.JSString_methods.indexOf$1(path, "/.") !== -1; }, _Uri__removeDotSegments: function(path) { var output, t1, t2, appendSlash, _i, segment; if (!P._Uri__mayContainDotSegments(path)) return path; output = H.setRuntimeTypeInfo([], type$.JSArray_String); for (t1 = path.split("/"), t2 = t1.length, appendSlash = false, _i = 0; _i < t2; ++_i) { segment = t1[_i]; if (J.$eq$(segment, "..")) { if (output.length !== 0) { output.pop(); if (output.length === 0) output.push(""); } appendSlash = true; } else if ("." === segment) appendSlash = true; else { output.push(segment); appendSlash = false; } } if (appendSlash) output.push(""); return C.JSArray_methods.join$1(output, "/"); }, _Uri__normalizeRelativePath: function(path, allowScheme) { var output, t1, t2, appendSlash, _i, segment; if (!P._Uri__mayContainDotSegments(path)) return !allowScheme ? P._Uri__escapeScheme(path) : path; output = H.setRuntimeTypeInfo([], type$.JSArray_String); for (t1 = path.split("/"), t2 = t1.length, appendSlash = false, _i = 0; _i < t2; ++_i) { segment = t1[_i]; if (".." === segment) if (output.length !== 0 && C.JSArray_methods.get$last(output) !== "..") { output.pop(); appendSlash = true; } else { output.push(".."); appendSlash = false; } else if ("." === segment) appendSlash = true; else { output.push(segment); appendSlash = false; } } t1 = output.length; if (t1 !== 0) t1 = t1 === 1 && output[0].length === 0; else t1 = true; if (t1) return "./"; if (appendSlash || C.JSArray_methods.get$last(output) === "..") output.push(""); if (!allowScheme) output[0] = P._Uri__escapeScheme(output[0]); return C.JSArray_methods.join$1(output, "/"); }, _Uri__escapeScheme: function(path) { var i, char, t1 = path.length; if (t1 >= 2 && P._Uri__isAlphabeticCharacter(J._codeUnitAt$1$s(path, 0))) for (i = 1; i < t1; ++i) { char = C.JSString_methods._codeUnitAt$1(path, i); if (char === 58) return C.JSString_methods.substring$2(path, 0, i) + "%3A" + C.JSString_methods.substring$1(path, i + 1); if (char > 127 || (C.List_JYB[char >>> 4] & 1 << (char & 15)) === 0) break; } return path; }, _Uri__packageNameEnd: function(uri, path) { if (uri.isScheme$1("package") && uri._host == null) return P._skipPackageNameChars(path, 0, path.length); return -1; }, _Uri__toWindowsFilePath: function(uri) { var hasDriveLetter, t2, host, segments = uri.get$pathSegments(), t1 = J.getInterceptor$asx(segments); if (t1.get$length(segments) > 0 && J.get$length$asx(t1.$index(segments, 0)) === 2 && J.codeUnitAt$1$s(t1.$index(segments, 0), 1) === 58) { P._Uri__checkWindowsDriveLetter(J.codeUnitAt$1$s(t1.$index(segments, 0), 0), false); P._Uri__checkWindowsPathReservedCharacters(segments, false, 1); hasDriveLetter = true; } else { P._Uri__checkWindowsPathReservedCharacters(segments, false, 0); hasDriveLetter = false; } t2 = uri.get$hasAbsolutePath() && !hasDriveLetter ? "\\" : ""; if (uri.get$hasAuthority()) { host = uri.get$host(uri); if (host.length !== 0) t2 = t2 + "\\" + host + "\\"; } t2 = P.StringBuffer__writeAll(t2, segments, "\\"); t1 = hasDriveLetter && t1.get$length(segments) === 1 ? t2 + "\\" : t2; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _Uri__hexCharPairToByte: function(s, pos) { var byte, i, charCode; for (byte = 0, i = 0; i < 2; ++i) { charCode = C.JSString_methods._codeUnitAt$1(s, pos + i); if (48 <= charCode && charCode <= 57) byte = byte * 16 + charCode - 48; else { charCode |= 32; if (97 <= charCode && charCode <= 102) byte = byte * 16 + charCode - 87; else throw H.wrapException(P.ArgumentError$("Invalid URL encoding")); } } return byte; }, _Uri__uriDecode: function(text, start, end, encoding, plusToSpace) { var simple, codeUnit, t2, bytes, t1 = J.getInterceptor$s(text), i = start; while (true) { if (!(i < end)) { simple = true; break; } codeUnit = t1._codeUnitAt$1(text, i); if (codeUnit <= 127) if (codeUnit !== 37) t2 = false; else t2 = true; else t2 = true; if (t2) { simple = false; break; } ++i; } if (simple) { if (C.C_Utf8Codec !== encoding) t2 = false; else t2 = true; if (t2) return t1.substring$2(text, start, end); else bytes = new H.CodeUnits(t1.substring$2(text, start, end)); } else { bytes = H.setRuntimeTypeInfo([], type$.JSArray_int); for (i = start; i < end; ++i) { codeUnit = t1._codeUnitAt$1(text, i); if (codeUnit > 127) throw H.wrapException(P.ArgumentError$("Illegal percent encoding in URI")); if (codeUnit === 37) { if (i + 3 > text.length) throw H.wrapException(P.ArgumentError$("Truncated URI")); bytes.push(P._Uri__hexCharPairToByte(text, i + 1)); i += 2; } else bytes.push(codeUnit); } } return encoding.decode$1(0, bytes); }, _Uri__isAlphabeticCharacter: function(codeUnit) { var lowerCase = codeUnit | 32; return 97 <= lowerCase && lowerCase <= 122; }, UriData__parse: function(text, start, sourceUri) { var t1, i, slashIndex, char, equalsIndex, lastSeparator, t2, data, _s17_ = "Invalid MIME type", indices = H.setRuntimeTypeInfo([start - 1], type$.JSArray_int); for (t1 = text.length, i = start, slashIndex = -1, char = null; i < t1; ++i) { char = C.JSString_methods._codeUnitAt$1(text, i); if (char === 44 || char === 59) break; if (char === 47) { if (slashIndex < 0) { slashIndex = i; continue; } throw H.wrapException(P.FormatException$(_s17_, text, i)); } } if (slashIndex < 0 && i > start) throw H.wrapException(P.FormatException$(_s17_, text, i)); for (; char !== 44;) { indices.push(i); ++i; for (equalsIndex = -1; i < t1; ++i) { char = C.JSString_methods._codeUnitAt$1(text, i); if (char === 61) { if (equalsIndex < 0) equalsIndex = i; } else if (char === 59 || char === 44) break; } if (equalsIndex >= 0) indices.push(equalsIndex); else { lastSeparator = C.JSArray_methods.get$last(indices); if (char !== 44 || i !== lastSeparator + 7 || !C.JSString_methods.startsWith$2(text, "base64", lastSeparator + 1)) throw H.wrapException(P.FormatException$("Expecting '='", text, i)); break; } } indices.push(i); t2 = i + 1; if ((indices.length & 1) === 1) text = C.C_Base64Codec.normalize$3(0, text, t2, t1); else { data = P._Uri__normalize(text, t2, t1, C.List_CVk, true); if (data != null) text = C.JSString_methods.replaceRange$3(text, t2, t1, data); } return new P.UriData(text, indices, sourceUri); }, _createTables: function() { var _i, t1, t2, t3, b, _s77_ = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=", _s1_ = ".", _s1_0 = ":", _s1_1 = "/", _s1_2 = "?", _s1_3 = "#", tables = J.JSArray_JSArray$allocateGrowable(22, type$.Uint8List); for (_i = 0; _i < 22; ++_i) tables[_i] = new Uint8Array(96); t1 = new P._createTables_build(tables); t2 = new P._createTables_setChars(); t3 = new P._createTables_setRange(); b = t1.call$2(0, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_, 14); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 3); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(14, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_, 15); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(15, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, "%", 225); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 9); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(1, 225); t2.call$3(b, _s77_, 1); t2.call$3(b, _s1_0, 34); t2.call$3(b, _s1_1, 10); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(2, 235); t2.call$3(b, _s77_, 139); t2.call$3(b, _s1_1, 131); t2.call$3(b, _s1_, 146); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(3, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 68); t2.call$3(b, _s1_, 18); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(4, 229); t2.call$3(b, _s77_, 5); t3.call$3(b, "AZ", 229); t2.call$3(b, _s1_0, 102); t2.call$3(b, "@", 68); t2.call$3(b, "[", 232); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(5, 229); t2.call$3(b, _s77_, 5); t3.call$3(b, "AZ", 229); t2.call$3(b, _s1_0, 102); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(6, 231); t3.call$3(b, "19", 7); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(7, 231); t3.call$3(b, "09", 7); t2.call$3(b, "@", 68); t2.call$3(b, _s1_1, 138); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); t2.call$3(t1.call$2(8, 8), "]", 5); b = t1.call$2(9, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 16); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(16, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 17); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(17, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 9); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(10, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 18); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(18, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_, 19); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(19, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 234); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(11, 235); t2.call$3(b, _s77_, 11); t2.call$3(b, _s1_1, 10); t2.call$3(b, _s1_2, 172); t2.call$3(b, _s1_3, 205); b = t1.call$2(12, 236); t2.call$3(b, _s77_, 12); t2.call$3(b, _s1_2, 12); t2.call$3(b, _s1_3, 205); b = t1.call$2(13, 237); t2.call$3(b, _s77_, 13); t2.call$3(b, _s1_2, 13); t3.call$3(t1.call$2(20, 245), "az", 21); b = t1.call$2(21, 245); t3.call$3(b, "az", 21); t3.call$3(b, "09", 21); t2.call$3(b, "+-.", 21); return tables; }, _scan: function(uri, start, end, state, indices) { var t1, i, table, char, transition, tables = $.$get$_scannerTables(); for (t1 = J.getInterceptor$s(uri), i = start; i < end; ++i) { table = tables[state]; char = t1._codeUnitAt$1(uri, i) ^ 96; transition = table[char > 95 ? 31 : char]; state = transition & 31; indices[transition >>> 5] = i; } return state; }, _SimpleUri__packageNameEnd: function(uri) { if (uri._schemeEnd === 7 && C.JSString_methods.startsWith$1(uri._uri, "package") && uri._hostStart <= 0) return P._skipPackageNameChars(uri._uri, uri._pathStart, uri._queryStart); return -1; }, _skipPackageNameChars: function(source, start, end) { var i, dots, char; for (i = start, dots = 0; i < end; ++i) { char = C.JSString_methods.codeUnitAt$1(source, i); if (char === 47) return dots !== 0 ? i : -1; if (char === 37 || char === 58) return -1; dots |= char ^ 46; } return -1; }, _symbolMapToStringMap_closure: function _symbolMapToStringMap_closure(t0) { this.result = t0; }, NoSuchMethodError_toString_closure: function NoSuchMethodError_toString_closure(t0, t1) { this._box_0 = t0; this.sb = t1; }, _BigIntImpl: function _BigIntImpl(t0, t1, t2) { this._isNegative = t0; this._digits = t1; this._used = t2; }, _BigIntImpl_hashCode_combine: function _BigIntImpl_hashCode_combine() { }, _BigIntImpl_hashCode_finish: function _BigIntImpl_hashCode_finish() { }, _BigIntImpl_toDouble_readBits: function _BigIntImpl_toDouble_readBits(t0, t1) { this._box_0 = t0; this.$this = t1; }, _BigIntImpl_toDouble_roundUp: function _BigIntImpl_toDouble_roundUp(t0) { this.resultBits = t0; }, Comparable: function Comparable() { }, DateTime: function DateTime(t0, t1) { this._value = t0; this.isUtc = t1; }, DateTime_parse_parseIntOrZero: function DateTime_parse_parseIntOrZero() { }, DateTime_parse_parseMilliAndMicroseconds: function DateTime_parse_parseMilliAndMicroseconds() { }, Duration: function Duration(t0) { this._duration = t0; }, Duration_toString_sixDigits: function Duration_toString_sixDigits() { }, Duration_toString_twoDigits: function Duration_toString_twoDigits() { }, Error: function Error() { }, AssertionError: function AssertionError(t0) { this.message = t0; }, TypeError: function TypeError() { }, NullThrownError: function NullThrownError() { }, ArgumentError: function ArgumentError(t0, t1, t2, t3) { var _ = this; _._hasValue = t0; _.invalidValue = t1; _.name = t2; _.message = t3; }, RangeError: function RangeError(t0, t1, t2, t3, t4, t5) { var _ = this; _.start = t0; _.end = t1; _._hasValue = t2; _.invalidValue = t3; _.name = t4; _.message = t5; }, IndexError: function IndexError(t0, t1, t2, t3, t4) { var _ = this; _.length = t0; _._hasValue = t1; _.invalidValue = t2; _.name = t3; _.message = t4; }, NoSuchMethodError: function NoSuchMethodError(t0, t1, t2, t3) { var _ = this; _._core$_receiver = t0; _._memberName = t1; _._core$_arguments = t2; _._namedArguments = t3; }, UnsupportedError: function UnsupportedError(t0) { this.message = t0; }, UnimplementedError: function UnimplementedError(t0) { this.message = t0; }, StateError: function StateError(t0) { this.message = t0; }, ConcurrentModificationError: function ConcurrentModificationError(t0) { this.modifiedObject = t0; }, OutOfMemoryError: function OutOfMemoryError() { }, StackOverflowError: function StackOverflowError() { }, CyclicInitializationError: function CyclicInitializationError(t0) { this.variableName = t0; }, _Exception: function _Exception(t0) { this.message = t0; }, FormatException: function FormatException(t0, t1, t2) { this.message = t0; this.source = t1; this.offset = t2; }, IntegerDivisionByZeroException: function IntegerDivisionByZeroException() { }, Expando: function Expando(t0, t1) { this._jsWeakMapOrKey = t0; this.$ti = t1; }, Iterable: function Iterable() { }, _GeneratorIterable: function _GeneratorIterable(t0, t1, t2) { this.length = t0; this._generator = t1; this.$ti = t2; }, Iterator: function Iterator() { }, MapEntry: function MapEntry(t0, t1, t2) { this.key = t0; this.value = t1; this.$ti = t2; }, Null: function Null() { }, Object: function Object() { }, _StringStackTrace: function _StringStackTrace(t0) { this._stackTrace = t0; }, Stopwatch: function Stopwatch() { this._stop = this._core$_start = 0; }, Runes: function Runes(t0) { this.string = t0; }, RuneIterator: function RuneIterator(t0) { var _ = this; _.string = t0; _._nextPosition = _._core$_position = 0; _._currentCodePoint = -1; }, StringBuffer: function StringBuffer(t0) { this._contents = t0; }, Uri__parseIPv4Address_error: function Uri__parseIPv4Address_error(t0) { this.host = t0; }, Uri_parseIPv6Address_error: function Uri_parseIPv6Address_error(t0) { this.host = t0; }, Uri_parseIPv6Address_parseHex: function Uri_parseIPv6Address_parseHex(t0, t1) { this.error = t0; this.host = t1; }, _Uri: function _Uri(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scheme = t0; _._userInfo = t1; _._host = t2; _._port = t3; _.path = t4; _._query = t5; _._fragment = t6; _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $; }, _Uri__makePath_closure: function _Uri__makePath_closure() { }, _Uri__makeQuery_writeParameter: function _Uri__makeQuery_writeParameter(t0, t1) { this._box_0 = t0; this.result = t1; }, _Uri__makeQuery_closure: function _Uri__makeQuery_closure(t0) { this.writeParameter = t0; }, UriData: function UriData(t0, t1, t2) { this._text = t0; this._separatorIndices = t1; this._uriCache = t2; }, _createTables_build: function _createTables_build(t0) { this.tables = t0; }, _createTables_setChars: function _createTables_setChars() { }, _createTables_setRange: function _createTables_setRange() { }, _SimpleUri: function _SimpleUri(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._uri = t0; _._schemeEnd = t1; _._hostStart = t2; _._portStart = t3; _._pathStart = t4; _._queryStart = t5; _._fragmentStart = t6; _._schemeCache = t7; _._hashCodeCache = null; }, _DataUri: function _DataUri(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scheme = t0; _._userInfo = t1; _._host = t2; _._port = t3; _.path = t4; _._query = t5; _._fragment = t6; _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $; }, ServiceExtensionResponse$result: function(result) { return new P.ServiceExtensionResponse(); }, ServiceExtensionResponse__validateErrorCode: function(errorCode) { if (errorCode === -32602) return; if (errorCode >= -32016 && errorCode <= -32000) return; throw H.wrapException(P.ArgumentError$value(errorCode, "errorCode", "Out of range")); }, registerExtension: function(method, handler) { if (!C.JSString_methods.startsWith$1(method, "ext.")) throw H.wrapException(P.ArgumentError$value(method, "method", "Must begin with ext.")); if ($._extensions.$index(0, method) != null) throw H.wrapException(P.ArgumentError$("Extension already registered: " + method)); $._extensions.$indexSet(0, method, handler); }, postEvent: function(eventKind, eventData) { C.C_JsonCodec.encode$1(eventData); }, Timeline_startSync: function($name, $arguments, flow) { $.Timeline__stack.push(null); return; }, Timeline_finishSync: function() { var block, t1; if ($.Timeline__stack.length === 0) throw H.wrapException(P.StateError$("Uneven calls to startSync and finishSync")); block = $.Timeline__stack.pop(); if (block == null) return; P._argumentsAsJson(block._developer$_arguments); t1 = block._flow; if (t1 != null) { "" + t1.id; block._flow.toString; P._argumentsAsJson(null); } }, Timeline_instantSync: function($name, $arguments) { return; }, Timeline_timeSync: function($name, $function, flow) { var t1; P.Timeline_startSync($name, null, flow); try { t1 = $function.call$0(); return t1; } finally { P.Timeline_finishSync(); } }, _argumentsAsJson: function($arguments) { if ($arguments == null || $arguments.get$length($arguments) === 0) return "{}"; return C.C_JsonCodec.encode$1($arguments); }, ServiceExtensionResponse: function ServiceExtensionResponse() { }, TimelineTask: function TimelineTask(t0, t1, t2) { this._developer$_parent = t0; this._taskId = t1; this._stack = t2; }, _AsyncBlock: function _AsyncBlock(t0, t1) { this.name = t0; this._taskId = t1; }, convertNativeToDart_Dictionary: function(object) { var dict, keys, t1, _i, key; if (object == null) return null; dict = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); keys = Object.getOwnPropertyNames(object); for (t1 = keys.length, _i = 0; _i < keys.length; keys.length === t1 || (0, H.throwConcurrentModificationError)(keys), ++_i) { key = keys[_i]; dict.$indexSet(0, key, object[key]); } return dict; }, _convertDartToNative_Value: function(value) { var array; if (value == null) return value; if (typeof value == "string" || typeof value == "number" || H._isBool(value)) return value; if (type$.Map_dynamic_dynamic._is(value)) return P.convertDartToNative_Dictionary(value); if (type$.List_dynamic._is(value)) { array = []; J.forEach$1$ax(value, new P._convertDartToNative_Value_closure(array)); value = array; } return value; }, convertDartToNative_Dictionary: function(dict) { var object = {}; J.forEach$1$ax(dict, new P.convertDartToNative_Dictionary_closure(object)); return object; }, Device_userAgent: function() { return window.navigator.userAgent; }, _StructuredClone: function _StructuredClone() { }, _StructuredClone_walk_closure: function _StructuredClone_walk_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _StructuredClone_walk_closure0: function _StructuredClone_walk_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, _AcceptStructuredClone: function _AcceptStructuredClone() { }, _AcceptStructuredClone_walk_closure: function _AcceptStructuredClone_walk_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _convertDartToNative_Value_closure: function _convertDartToNative_Value_closure(t0) { this.array = t0; }, convertDartToNative_Dictionary_closure: function convertDartToNative_Dictionary_closure(t0) { this.object = t0; }, _StructuredCloneDart2Js: function _StructuredCloneDart2Js(t0, t1) { this.values = t0; this.copies = t1; }, _AcceptStructuredCloneDart2Js: function _AcceptStructuredCloneDart2Js(t0, t1) { this.values = t0; this.copies = t1; this.mustCopy = false; }, FilteredElementList: function FilteredElementList(t0, t1) { this._node = t0; this._childNodes = t1; }, FilteredElementList__iterable_closure: function FilteredElementList__iterable_closure() { }, FilteredElementList__iterable_closure0: function FilteredElementList__iterable_closure0() { }, FilteredElementList_removeRange_closure: function FilteredElementList_removeRange_closure() { }, _completeRequest: function(request, $T) { var t2, t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")), completer = new P._SyncCompleter(t1, $T._eval$1("_SyncCompleter<0>")); request.toString; t2 = type$.legacy_Event; W._EventStreamSubscription$(request, "success", new P._completeRequest_closure(request, completer), false, t2); W._EventStreamSubscription$(request, "error", completer.get$completeError(), false, t2); return t1; }, Cursor: function Cursor() { }, CursorWithValue: function CursorWithValue() { }, Database: function Database() { }, _completeRequest_closure: function _completeRequest_closure(t0, t1) { this.request = t0; this.completer = t1; }, Index: function Index() { }, KeyRange: function KeyRange() { }, ObjectStore: function ObjectStore() { }, Observation: function Observation() { }, VersionChangeEvent: function VersionChangeEvent() { }, _File__openStdio: function(fd) { throw H.wrapException(P.UnsupportedError$("File._openStdio")); }, _Namespace__namespacePointer: function() { throw H.wrapException(P.UnsupportedError$("_Namespace")); }, _Platform__numberOfProcessors: function() { throw H.wrapException(P.UnsupportedError$("Platform._numberOfProcessors")); }, _Platform__pathSeparator: function() { throw H.wrapException(P.UnsupportedError$("Platform._pathSeparator")); }, _Platform__operatingSystem: function() { throw H.wrapException(P.UnsupportedError$("Platform._operatingSystem")); }, _Platform__operatingSystemVersion: function() { throw H.wrapException(P.UnsupportedError$("Platform._operatingSystemVersion")); }, _Platform__localHostname: function() { throw H.wrapException(P.UnsupportedError$("Platform._localHostname")); }, _Platform__executable: function() { throw H.wrapException(P.UnsupportedError$("Platform._executable")); }, _Platform__resolvedExecutable: function() { throw H.wrapException(P.UnsupportedError$("Platform._resolvedExecutable")); }, _Platform__executableArguments: function() { throw H.wrapException(P.UnsupportedError$("Platform._executableArguments")); }, _Platform__environment: function() { throw H.wrapException(P.UnsupportedError$("Platform._environment")); }, _Platform__localeName: function() { throw H.wrapException(P.UnsupportedError$("Platform._localeName")); }, _Platform__script: function() { throw H.wrapException(P.UnsupportedError$("Platform._script")); }, _StdIOUtils__getStdioInputStream: function(fd) { throw H.wrapException(P.UnsupportedError$("StdIOUtils._getStdioInputStream")); }, _StdIOUtils__getStdioOutputStream: function(fd) { throw H.wrapException(P.UnsupportedError$("StdIOUtils._getStdioOutputStream")); }, _exceptionFromResponse: function(response, message, path) { var t1 = J.getInterceptor$asx(response); switch (t1.$index(response, 0)) { case 1: return new P.ArgumentError(false, null, null, message + ": " + H.S(path)); case 2: return new P.FileSystemException(message, path, new P.OSError(t1.$index(response, 2), t1.$index(response, 1))); case 3: return new P.FileSystemException("File closed", path, null); default: return new P._Exception("Unknown error"); } }, Directory_Directory: function(path) { P.IOOverrides_current(); if (path == null) H.throwExpression(P.ArgumentError$notNull("path")); return new P._Directory(path, P.FileSystemEntity__toNullTerminatedUtf8Array(C.C_Utf8Encoder.convert$1(path))); }, File_File: function(path) { P.IOOverrides_current(); if (path == null) H.throwExpression(P.ArgumentError$notNull("path")); return new P._File(path, P.FileSystemEntity__toNullTerminatedUtf8Array(C.C_Utf8Encoder.convert$1(path))); }, _File__namespacePointer: function() { return P._Namespace__namespacePointer(); }, _File__dispatchWithNamespace: function(request, data) { data[0] = P._File__namespacePointer(); }, FileSystemEntity__toNullTerminatedUtf8Array: function(l) { var t1, tmp; l.toString; if (!C.NativeUint8List_methods.get$isEmpty(l) && !J.$eq$(C.NativeUint8List_methods.get$last(l), 0)) { t1 = l.length; tmp = new Uint8Array(t1 + 1); C.NativeUint8List_methods.setRange$3(tmp, 0, t1, l); return tmp; } else return l; }, IOOverrides_current: function() { var t1 = $.Zone__current.$index(0, $.$get$_ioOverridesToken()); return t1 == null ? null : t1; }, Platform_localeName: function() { return P._Platform_localeName(); }, Platform_executable: function() { return $.$get$_Platform_executable(); }, Platform_resolvedExecutable: function() { return $.$get$_Platform_resolvedExecutable(); }, Platform_script: function() { return P._Platform_script(); }, Platform_executableArguments: function() { return P._Platform_executableArguments(); }, _Platform_localeName: function() { var result = P._Platform__localeName(); return result; }, _Platform_numberOfProcessors: function() { return P._Platform__numberOfProcessors(); }, _Platform_pathSeparator: function() { return P._Platform__pathSeparator(); }, _Platform_operatingSystem: function() { return P._Platform__operatingSystem(); }, _Platform_script: function() { return P._Platform__script(); }, _Platform_localHostname: function() { P._Platform__localHostname(); }, _Platform_executableArguments: function() { return P._Platform__executableArguments(); }, _Platform_environment: function() { var t1 = $._Platform__environmentCache; if (t1 == null) P._Platform__environment(); t1.toString; return t1; }, stdin: function() { var t1 = P._StdIOUtils__getStdioInputStream(0); $._stdin = t1; return t1; }, stdout: function() { var t1 = P._StdIOUtils__getStdioOutputStream(1); $._stdout = t1; return t1; }, OSError: function OSError(t0, t1) { this.message = t0; this.errorCode = t1; }, _Directory: function _Directory(t0, t1) { this._path = t0; this._rawPath = t1; }, FileMode: function FileMode(t0) { this._io$_mode = t0; }, FileSystemException: function FileSystemException(t0, t1, t2) { this.message = t0; this.path = t1; this.osError = t2; }, _FileStream: function _FileStream(t0, t1, t2, t3) { var _ = this; _.___FileStream__controller = $; _._path = t0; _.___FileStream__openedFile = $; _._io$_position = t1; _._io$_end = t2; _._closeCompleter = t3; _._unsubscribed = false; _._readInProgress = true; _._atEnd = _._closed = false; }, _FileStream_listen_closure: function _FileStream_listen_closure(t0) { this.$this = t0; }, _FileStream__closeFile_done: function _FileStream__closeFile_done(t0) { this.$this = t0; }, _FileStream__readBlock_closure: function _FileStream__readBlock_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _FileStream__readBlock_closure0: function _FileStream__readBlock_closure0(t0) { this.$this = t0; }, _FileStream__start_onReady: function _FileStream__start_onReady(t0) { this.$this = t0; }, _FileStream__start_onOpenFile: function _FileStream__start_onOpenFile(t0, t1) { this.$this = t0; this.onReady = t1; }, _FileStream__start_onOpenFile_closure: function _FileStream__start_onOpenFile_closure(t0) { this.$this = t0; }, _FileStream__start_openFailed: function _FileStream__start_openFailed(t0) { this.$this = t0; }, _File: function _File(t0, t1) { this._path = t0; this._rawPath = t1; }, _File_open_closure: function _File_open_closure(t0) { this.$this = t0; }, _File_length_closure: function _File_length_closure(t0) { this.$this = t0; }, FileSystemEntityType: function FileSystemEntityType(t0) { this._io$_type = t0; }, FileSystemEntity: function FileSystemEntity() { }, _callDartFunction: function(callback, captureThis, $self, $arguments) { var arguments0, t1; if (captureThis) { arguments0 = [$self]; C.JSArray_methods.addAll$1(arguments0, $arguments); $arguments = arguments0; } t1 = type$.dynamic; return P._convertToJS(P.Function_apply(callback, P.List_List$from(J.map$1$1$ax($arguments, P.js___convertToDart$closure(), t1), true, t1), null)); }, JsObject_JsObject: function($constructor) { var t1 = P._wrapToDart(new (P._convertToJS($constructor))()); return t1; }, JsObject_JsObject$jsify: function(object) { return P._wrapToDart(P.JsObject__convertDataTree(object)); }, JsObject__convertDataTree: function(data) { return new P.JsObject__convertDataTree__convert(new P._IdentityHashMap(type$._IdentityHashMap_dynamic_dynamic)).call$1(data); }, JsArray__checkRange: function(start, end, $length) { var _null = null; if (start < 0 || start > $length) throw H.wrapException(P.RangeError$range(start, 0, $length, _null, _null)); if (end < start || end > $length) throw H.wrapException(P.RangeError$range(end, start, $length, _null, _null)); }, _castToJsObject: function(o) { return o; }, _defineProperty: function(o, $name, value) { var exception; try { if (Object.isExtensible(o) && !Object.prototype.hasOwnProperty.call(o, $name)) { Object.defineProperty(o, $name, {value: value}); return true; } } catch (exception) { H.unwrapException(exception); } return false; }, _getOwnProperty: function(o, $name) { if (Object.prototype.hasOwnProperty.call(o, $name)) return o[$name]; return null; }, _convertToJS: function(o) { if (o == null || typeof o == "string" || typeof o == "number" || H._isBool(o)) return o; if (o instanceof P.JsObject) return o._jsObject; if (H.isBrowserObject(o)) return o; if (type$.TypedData._is(o)) return o; if (o instanceof P.DateTime) return H.Primitives_lazyAsJsDate(o); if (type$.Function._is(o)) return P._getJsProxy(o, "$dart_jsFunction", new P._convertToJS_closure()); return P._getJsProxy(o, "_$dart_jsObject", new P._convertToJS_closure0($.$get$_dartProxyCtor())); }, _getJsProxy: function(o, propertyName, createProxy) { var jsProxy = P._getOwnProperty(o, propertyName); if (jsProxy == null) { jsProxy = createProxy.call$1(o); P._defineProperty(o, propertyName, jsProxy); } return jsProxy; }, _convertToDart: function(o) { if (o == null || typeof o == "string" || typeof o == "number" || typeof o == "boolean") return o; else if (o instanceof Object && H.isBrowserObject(o)) return o; else if (o instanceof Object && type$.TypedData._is(o)) return o; else if (o instanceof Date) return P.DateTime$fromMillisecondsSinceEpoch(o.getTime(), false); else if (o.constructor === $.$get$_dartProxyCtor()) return o.o; else return P._wrapToDart(o); }, _wrapToDart: function(o) { if (typeof o == "function") return P._getDartProxy(o, $.$get$DART_CLOSURE_PROPERTY_NAME(), new P._wrapToDart_closure()); if (o instanceof Array) return P._getDartProxy(o, $.$get$_DART_OBJECT_PROPERTY_NAME(), new P._wrapToDart_closure0()); return P._getDartProxy(o, $.$get$_DART_OBJECT_PROPERTY_NAME(), new P._wrapToDart_closure1()); }, _getDartProxy: function(o, propertyName, createProxy) { var dartProxy = P._getOwnProperty(o, propertyName); if (dartProxy == null || !(o instanceof Object)) { dartProxy = createProxy.call$1(o); P._defineProperty(o, propertyName, dartProxy); } return dartProxy; }, _convertDartFunctionFast: function(f) { var ret, existing = f.$dart_jsFunction; if (existing != null) return existing; ret = function(_call, f) { return function() { return _call(f, Array.prototype.slice.apply(arguments)); }; }(P._callDartFunctionFast, f); ret[$.$get$DART_CLOSURE_PROPERTY_NAME()] = f; f.$dart_jsFunction = ret; return ret; }, _callDartFunctionFast: function(callback, $arguments) { return P.Function_apply(callback, $arguments, null); }, allowInterop: function(f) { if (typeof f == "function") return f; else return P._convertDartFunctionFast(f); }, JsObject__convertDataTree__convert: function JsObject__convertDataTree__convert(t0) { this._convertedObjects = t0; }, _convertToJS_closure: function _convertToJS_closure() { }, _convertToJS_closure0: function _convertToJS_closure0(t0) { this.ctor = t0; }, _wrapToDart_closure: function _wrapToDart_closure() { }, _wrapToDart_closure0: function _wrapToDart_closure0() { }, _wrapToDart_closure1: function _wrapToDart_closure1() { }, JsObject: function JsObject(t0) { this._jsObject = t0; }, JsFunction: function JsFunction(t0) { this._jsObject = t0; }, JsArray: function JsArray(t0, t1) { this._jsObject = t0; this.$ti = t1; }, _JsArray_JsObject_ListMixin: function _JsArray_JsObject_ListMixin() { }, hasProperty: function(o, $name) { return $name in o; }, callMethod: function(o, method, args) { return o[method].apply(o, args); }, promiseToFuture: function(jsPromise, $T) { var t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")), completer = new P._AsyncCompleter(t1, $T._eval$1("_AsyncCompleter<0>")); jsPromise.then(H.convertDartClosureToJS(new P.promiseToFuture_closure(completer), 1), H.convertDartClosureToJS(new P.promiseToFuture_closure0(completer), 1)); return t1; }, NullRejectionException: function NullRejectionException(t0) { this.isUndefined = t0; }, promiseToFuture_closure: function promiseToFuture_closure(t0) { this.completer = t0; }, promiseToFuture_closure0: function promiseToFuture_closure0(t0) { this.completer = t0; }, max: function(a, b) { return Math.max(H.checkNum(a), H.checkNum(b)); }, log: function(x) { return Math.log(x); }, pow: function(x, exponent) { H.checkNum(exponent); return Math.pow(x, exponent); }, Random_Random: function(seed) { var t1; if (seed == null) t1 = C.C__JSRandom; else { t1 = new P._Random(); t1._Random$1(seed); } return t1; }, Rectangle$: function(left, $top, width, height, $T) { var t1 = width < 0 ? -width * 0 : width, t2 = height < 0 ? -height * 0 : height; return new P.Rectangle(left, $top, t1, t2, $T._eval$1("Rectangle<0>")); }, _JSRandom: function _JSRandom() { }, _Random: function _Random() { this._hi = this._lo = 0; }, Point: function Point(t0, t1, t2) { this.x = t0; this.y = t1; this.$ti = t2; }, _RectangleBase: function _RectangleBase() { }, Rectangle: function Rectangle(t0, t1, t2, t3, t4) { var _ = this; _.left = t0; _.top = t1; _.width = t2; _.height = t3; _.$ti = t4; }, Angle: function Angle() { }, GraphicsElement: function GraphicsElement() { }, Length: function Length() { }, LengthList: function LengthList() { }, Number: function Number() { }, NumberList: function NumberList() { }, PointList: function PointList() { }, Rect0: function Rect0() { }, ScriptElement0: function ScriptElement0() { }, StringList: function StringList() { }, SvgElement: function SvgElement() { }, SvgSvgElement: function SvgSvgElement() { }, Transform0: function Transform0() { }, TransformList: function TransformList() { }, _LengthList_Interceptor_ListMixin: function _LengthList_Interceptor_ListMixin() { }, _LengthList_Interceptor_ListMixin_ImmutableListMixin: function _LengthList_Interceptor_ListMixin_ImmutableListMixin() { }, _NumberList_Interceptor_ListMixin: function _NumberList_Interceptor_ListMixin() { }, _NumberList_Interceptor_ListMixin_ImmutableListMixin: function _NumberList_Interceptor_ListMixin_ImmutableListMixin() { }, _StringList_Interceptor_ListMixin: function _StringList_Interceptor_ListMixin() { }, _StringList_Interceptor_ListMixin_ImmutableListMixin: function _StringList_Interceptor_ListMixin_ImmutableListMixin() { }, _TransformList_Interceptor_ListMixin: function _TransformList_Interceptor_ListMixin() { }, _TransformList_Interceptor_ListMixin_ImmutableListMixin: function _TransformList_Interceptor_ListMixin_ImmutableListMixin() { }, Endian: function Endian() { }, PictureRecorder_PictureRecorder: function() { var t1 = H._detectRenderer(); if (t1) return new H.CkPictureRecorder(); else return new H.EnginePictureRecorder(); }, Canvas_Canvas: function(recorder, cullRect) { var _s62_ = '"recorder" must not already be associated with another Canvas.', t1 = H._detectRenderer(); if (t1) { if (recorder.get$isRecording()) H.throwExpression(P.ArgumentError$(_s62_)); if (cullRect == null) cullRect = C.Rect_aha; return new H.CanvasKitCanvas(type$.CkPictureRecorder._as(recorder).beginRecording$1(0, cullRect)); } else { type$.EnginePictureRecorder._as(recorder); if (recorder._isRecording) H.throwExpression(P.ArgumentError$(_s62_)); return new H.SurfaceCanvas(recorder.beginRecording$1(0, cullRect == null ? C.Rect_aha : cullRect)); } }, SceneBuilder_SceneBuilder: function() { var t2, t3, t1 = H._detectRenderer(); if (t1) { t1 = new H.RootLayer(H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0); t2 = new H.LayerSceneBuilder(t1); t2.__LayerSceneBuilder_currentLayer = t1; return t2; } else { t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedContainerSurface); t2 = $.SurfaceSceneBuilder__lastFrameScene; t3 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = t2 != null && t2.__engine$_state === C.PersistedSurfaceState_1 ? t2 : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); t2 = new H.PersistedScene(t3, t2, C.PersistedSurfaceState_0); t2.__engine$_transform = H.Matrix4$identity(); t1.push(t2); return new H.SurfaceSceneBuilder(t1); } }, Offset_lerp: function(a, b, t) { if (b == null) if (a == null) return null; else return a.$mul(0, 1 - t); else if (a == null) return b.$mul(0, t); else return new P.Offset(P._lerpDouble(a._dx, b._dx, t), P._lerpDouble(a._dy, b._dy, t)); }, Size_lerp: function(a, b, t) { if (b == null) if (a == null) return null; else return a.$mul(0, 1 - t); else if (a == null) return b.$mul(0, t); else return new P.Size(P._lerpDouble(a._dx, b._dx, t), P._lerpDouble(a._dy, b._dy, t)); }, Rect$fromCircle: function(center, radius) { var t1 = center._dx, t2 = radius * 2 / 2, t3 = center._dy; return new P.Rect(t1 - t2, t3 - t2, t1 + t2, t3 + t2); }, Rect$fromCenter: function(center, height, width) { var t1 = center._dx, t2 = width / 2, t3 = center._dy, t4 = height / 2; return new P.Rect(t1 - t2, t3 - t4, t1 + t2, t3 + t4); }, Rect$fromPoints: function(a, b) { var t1 = a._dx, t2 = b._dx, t3 = Math.min(H.checkNum(t1), H.checkNum(t2)), t4 = a._dy, t5 = b._dy; return new P.Rect(t3, Math.min(H.checkNum(t4), H.checkNum(t5)), Math.max(H.checkNum(t1), H.checkNum(t2)), Math.max(H.checkNum(t4), H.checkNum(t5))); }, Rect_lerp: function(a, b, t) { var k, t1, t2, t3, t4; if (b == null) if (a == null) return null; else { k = 1 - t; return new P.Rect(a.left * k, a.top * k, a.right * k, a.bottom * k); } else { t1 = b.left; t2 = b.top; t3 = b.right; t4 = b.bottom; if (a == null) return new P.Rect(t1 * t, t2 * t, t3 * t, t4 * t); else return new P.Rect(P._lerpDouble(a.left, t1, t), P._lerpDouble(a.top, t2, t), P._lerpDouble(a.right, t3, t), P._lerpDouble(a.bottom, t4, t)); } }, Radius_lerp: function(a, b, t) { var k, t1, t2; if (b == null) if (a == null) return null; else { k = 1 - t; return new P.Radius(a.x * k, a.y * k); } else { t1 = b.x; t2 = b.y; if (a == null) return new P.Radius(t1 * t, t2 * t); else return new P.Radius(P._lerpDouble(a.x, t1, t), P._lerpDouble(a.y, t2, t)); } }, RRect$fromRectAndRadius: function(rect, radius) { var t1 = radius.x, t2 = radius.y, t3 = rect.bottom, t4 = rect.left, t5 = rect.right; return new P.RRect(t4, rect.top, t5, t3, t1, t2, t1, t2, t1, t2, t1, t2, t1 == t2); }, RRect$fromRectAndCorners: function(rect, bottomLeft, bottomRight, topLeft, topRight) { var t1 = bottomLeft.x, t2 = bottomLeft.y, t3 = rect.bottom, t4 = bottomRight.x, t5 = bottomRight.y, t6 = rect.left, t7 = rect.right, t8 = topLeft.x, t9 = topLeft.y, t10 = rect.top, t11 = topRight.x, t12 = topRight.y; return new P.RRect(t6, t10, t7, t3, t8, t9, t11, t12, t4, t5, t1, t2, t8 == t9 && t8 == t11 && t8 == t12 && t8 == t1 && t8 == t2 && t8 == t4 && t8 == t5); }, _Jenkins_combine: function(hash, o) { hash = hash + J.get$hashCode$(o) & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _Jenkins_finish: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashValues: function(arg01, arg02, arg03, arg04, arg05, arg06, arg07, arg08, arg09, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) { var result = P._Jenkins_combine(P._Jenkins_combine(0, arg01), arg02); if (!J.$eq$(arg03, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg03); if (!J.$eq$(arg04, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg04); if (!J.$eq$(arg05, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg05); if (!J.$eq$(arg06, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg06); if (!J.$eq$(arg07, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg07); if (!J.$eq$(arg08, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg08); if (!J.$eq$(arg09, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg09); if (!J.$eq$(arg10, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg10); if (!J.$eq$(arg11, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg11); if (!J.$eq$(arg12, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg12); if (!J.$eq$(arg13, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg13); if (!J.$eq$(arg14, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg14); if (!J.$eq$(arg15, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg15); if (!J.$eq$(arg16, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg16); if (!J.$eq$(arg17, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg17); if (!J.$eq$(arg18, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg18); if (!J.$eq$(arg19, C.C__HashEnd)) { result = P._Jenkins_combine(result, arg19); if (!J.$eq$(arg20, C.C__HashEnd)) result = P._Jenkins_combine(result, arg20); } } } } } } } } } } } } } } } } } return P._Jenkins_finish(result); }, hashList: function($arguments) { var t1, result, _i; if ($arguments != null) for (t1 = $arguments.length, result = 0, _i = 0; _i < $arguments.length; $arguments.length === t1 || (0, H.throwConcurrentModificationError)($arguments), ++_i) result = P._Jenkins_combine(result, $arguments[_i]); else result = 0; return P._Jenkins_finish(result); }, webOnlyInitializePlatform: function() { var initializationFuture = P._initializePlatform(null); P.scheduleMicrotask(new P.webOnlyInitializePlatform_closure()); return initializationFuture; }, _initializePlatform: function(assetManager) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), t1; var $async$_initializePlatform = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start H.initializeEngine(); t1 = H._detectRenderer(); $async$goto = t1 ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait(H.initializeCanvasKit(), $async$_initializePlatform); case 4: // returning from await. case 3: // join $async$goto = 5; return P._asyncAwait(P.webOnlySetAssetManager(C.C_AssetManager), $async$_initializePlatform); case 5: // returning from await. t1 = H._detectRenderer(); $async$goto = t1 ? 6 : 8; break; case 6: // then $async$goto = 9; return P._asyncAwait($._skiaFontCollection.ensureFontsLoaded$0(), $async$_initializePlatform); case 9: // returning from await. // goto join $async$goto = 7; break; case 8: // else $async$goto = 10; return P._asyncAwait($._fontCollection.ensureFontsLoaded$0(), $async$_initializePlatform); case 10: // returning from await. case 7: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_initializePlatform, $async$completer); }, webOnlySetAssetManager: function(assetManager) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, t1, t2; var $async$webOnlySetAssetManager = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (assetManager === $._assetManager) { // goto return $async$goto = 1; break; } $._assetManager = assetManager; t1 = H._detectRenderer(); if (t1) { if ($._skiaFontCollection == null) $._skiaFontCollection = new H.SkiaFontCollection(H.setRuntimeTypeInfo([], type$.JSArray_Future_nullable__RegisteredFont), H.setRuntimeTypeInfo([], type$.JSArray__RegisteredFont), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_SkTypeface)); } else { t1 = $._fontCollection; (t1 == null ? $._fontCollection = new H.FontCollection() : t1).clear$0(0); } $async$goto = $._assetManager != null ? 3 : 4; break; case 3: // then t1 = H._detectRenderer(); t2 = $._assetManager; $async$goto = t1 ? 5 : 7; break; case 5: // then t1 = $._skiaFontCollection; t1.toString; t2.toString; $async$goto = 8; return P._asyncAwait(t1.registerFonts$1(t2), $async$webOnlySetAssetManager); case 8: // returning from await. // goto join $async$goto = 6; break; case 7: // else t1 = $._fontCollection; t1.toString; t2.toString; $async$goto = 9; return P._asyncAwait(t1.registerFonts$1(t2), $async$webOnlySetAssetManager); case 9: // returning from await. case 6: // join case 4: // join case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$webOnlySetAssetManager, $async$completer); }, KeyData__typeToString: function(type) { switch (type) { case C.KeyEventType_1: return "up"; case C.KeyEventType_0: return "down"; case C.KeyEventType_2: return "repeat"; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, lerpDouble: function(a, b, t) { var t1; if (a != b) if ((a == null ? null : isNaN(a)) === true) t1 = (b == null ? null : isNaN(b)) === true; else t1 = false; else t1 = true; if (t1) return a == null ? null : a; if (a == null) a = 0; if (b == null) b = 0; return a * (1 - t) + b * t; }, _lerpDouble: function(a, b, t) { return a * (1 - t) + b * t; }, _lerpInt: function(a, b, t) { return a * (1 - t) + b * t; }, _scaleAlpha: function(a, factor) { return P.Color$fromARGB(H.clampInt(C.JSNumber_methods.round$0((a.get$value(a) >>> 24 & 255) * factor), 0, 255), a.get$value(a) >>> 16 & 255, a.get$value(a) >>> 8 & 255, a.get$value(a) & 255); }, Color$fromARGB: function(a, r, g, b) { return new P.Color(((a & 255) << 24 | (r & 255) << 16 | (g & 255) << 8 | b & 255) >>> 0); }, Color__linearizeColorComponent: function(component) { if (component <= 0.03928) return component / 12.92; return Math.pow((component + 0.055) / 1.055, 2.4); }, Color_lerp: function(a, b, t) { if (b == null) if (a == null) return null; else return P._scaleAlpha(a, 1 - t); else if (a == null) return P._scaleAlpha(b, t); else return P.Color$fromARGB(H.clampInt(C.JSNumber_methods.toInt$0(P._lerpInt(a.get$value(a) >>> 24 & 255, b.get$value(b) >>> 24 & 255, t)), 0, 255), H.clampInt(C.JSNumber_methods.toInt$0(P._lerpInt(a.get$value(a) >>> 16 & 255, b.get$value(b) >>> 16 & 255, t)), 0, 255), H.clampInt(C.JSNumber_methods.toInt$0(P._lerpInt(a.get$value(a) >>> 8 & 255, b.get$value(b) >>> 8 & 255, t)), 0, 255), H.clampInt(C.JSNumber_methods.toInt$0(P._lerpInt(a.get$value(a) & 255, b.get$value(b) & 255, t)), 0, 255)); }, Color_alphaBlend: function(foreground, background) { var invAlpha, backAlpha, outAlpha, alpha = foreground.get$value(foreground) >>> 24 & 255; if (alpha === 0) return background; invAlpha = 255 - alpha; backAlpha = background.get$value(background) >>> 24 & 255; if (backAlpha === 255) return P.Color$fromARGB(255, C.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) >>> 16 & 255) + invAlpha * (background.get$value(background) >>> 16 & 255), 255), C.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) >>> 8 & 255) + invAlpha * (background.get$value(background) >>> 8 & 255), 255), C.JSInt_methods._tdivFast$1(alpha * (foreground.get$value(foreground) & 255) + invAlpha * (background.get$value(background) & 255), 255)); else { backAlpha = C.JSInt_methods._tdivFast$1(backAlpha * invAlpha, 255); outAlpha = alpha + backAlpha; return P.Color$fromARGB(outAlpha, C.JSInt_methods.$tdiv((foreground.get$value(foreground) >>> 16 & 255) * alpha + (background.get$value(background) >>> 16 & 255) * backAlpha, outAlpha), C.JSInt_methods.$tdiv((foreground.get$value(foreground) >>> 8 & 255) * alpha + (background.get$value(background) >>> 8 & 255) * backAlpha, outAlpha), C.JSInt_methods.$tdiv((foreground.get$value(foreground) & 255) * alpha + (background.get$value(background) & 255) * backAlpha, outAlpha)); } }, Gradient_Gradient$linear: function(from, to, colors, colorStops, tileMode) { var t1 = H._detectRenderer(); if (t1) { t1 = new H.CkGradientLinear(from, to, colors, colorStops, tileMode); t1.ManagedSkiaObject$1(null); } else t1 = new H.GradientLinear(from, to, colors, colorStops, tileMode, null); return t1; }, instantiateImageCodec: function(list, allowUpscaling, targetHeight, targetWidth) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, t1; var $async$instantiateImageCodec = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = H._detectRenderer(); if (t1) { $async$returnValue = H.CkAnimatedImage$decodeFromBytes(list, "encoded image bytes"); // goto return $async$goto = 1; break; } else { $async$returnValue = new H.HtmlBlobCodec((self.URL || self.webkitURL).createObjectURL(W.Blob_Blob([J.get$buffer$x(list)])), null); // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$instantiateImageCodec, $async$completer); }, webOnlyInstantiateImageCodecFromUrl: function(uri, chunkCallback) { var t1 = H._detectRenderer(); if (t1) return H.skiaInstantiateWebImageCodec(uri.toString$0(0), chunkCallback); else return P._futurize(new P.webOnlyInstantiateImageCodecFromUrl_closure(uri, chunkCallback), type$.Codec); }, Path_Path: function() { var t1 = H._detectRenderer(); if (t1) return H.CkPath$(); else return H.SurfacePath$(); }, PlatformConfiguration$: function(accessibilityFeatures, alwaysUse24HourFormat, defaultRouteName, locales, platformBrightness, semanticsEnabled, textScaleFactor) { return new P.PlatformConfiguration(accessibilityFeatures, false, semanticsEnabled, platformBrightness, textScaleFactor, locales, defaultRouteName); }, ViewConfiguration$: function() { return new P.ViewConfiguration(); }, PointerData$: function(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalDeltaX, physicalDeltaY, physicalX, physicalY, platformData, pointerIdentifier, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, synthesized, tilt, timeStamp) { return new P.PointerData(timeStamp, change, kind, signalKind, device, pointerIdentifier, physicalX, physicalY, physicalDeltaX, physicalDeltaY, buttons, false, synthesized, pressure, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, platformData, scrollDeltaX, scrollDeltaY); }, FontWeight_lerp: function(a, b, t) { var t2, t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.index; if (t1 == null) t1 = 3; t2 = b == null ? null : b.index; t1 = P.lerpDouble(t1, t2 == null ? 3 : t2, t); t1.toString; return C.List_27p[H.clampInt(C.JSNumber_methods.round$0(t1), 0, 8)]; }, TextStyle_TextStyle: function(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing) { var t1 = H._detectRenderer(); if (t1) { t1 = type$.nullable_CkPaint; return H.CkTextStyle_CkTextStyle(t1._as(background), color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, t1._as(foreground), height, letterSpacing, locale, shadows, textBaseline, wordSpacing); } else return H.EngineTextStyle$only(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing); }, ParagraphStyle_ParagraphStyle: function(ellipsis, fontFamily, fontSize, fontStyle, fontWeight, height, locale, maxLines, strutStyle, textAlign, textDirection, textHeightBehavior) { var properties, skStrutStyle, t2, skTextStyle, _null = null, t1 = H._detectRenderer(); if (t1) { properties = H.SkParagraphStyleProperties$(_null); if (textAlign != null) properties.textAlign = $.$get$_skTextAligns()[textAlign.index]; t1 = textDirection == null; if (!t1) properties.textDirection = $.$get$_skTextDirections()[textDirection.index]; if (maxLines != null) properties.maxLines = maxLines; if (height != null) properties.heightMultiplier = height; if (textHeightBehavior != null) properties.textHeightBehavior = textHeightBehavior.encode$0(); if (ellipsis != null) properties.ellipsis = ellipsis; if (strutStyle != null) { skStrutStyle = H.SkStrutStyleProperties$(_null); skStrutStyle.fontFamilies = H._getEffectiveFontFamilies(strutStyle._fontFamily, strutStyle._fontFamilyFallback); t2 = strutStyle.__engine$_fontSize; if (t2 != null) skStrutStyle.fontSize = t2; t2 = strutStyle.__engine$_height; if (t2 != null) skStrutStyle.heightMultiplier = t2; t2 = strutStyle._fontWeight; if (t2 != null || strutStyle._fontStyle != null) skStrutStyle.fontStyle = H.toSkFontStyle(t2, strutStyle._fontStyle); t2 = strutStyle._forceStrutHeight; if (t2 != null) skStrutStyle.forceStrutHeight = t2; skStrutStyle.strutEnabled = true; properties.strutStyle = skStrutStyle; } skTextStyle = H.SkTextStyleProperties$(_null); if (fontWeight != null || fontStyle != null) skTextStyle.fontStyle = H.toSkFontStyle(fontWeight, fontStyle); if (fontSize != null) skTextStyle.fontSize = fontSize; skTextStyle.fontFamilies = H._getEffectiveFontFamilies(fontFamily, _null); properties.textStyle = skTextStyle; t2 = $.__canvasKit; t2 = J.ParagraphStyle$1$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t2, properties); return new H.CkParagraphStyle(t2, t1 ? C.TextDirection_1 : textDirection, fontFamily, fontSize, fontWeight, fontStyle); } else return new H.EngineParagraphStyle(textAlign, textDirection, fontWeight, fontStyle, maxLines, fontFamily, fontSize, height, textHeightBehavior, strutStyle, ellipsis, locale); }, ParagraphBuilder_ParagraphBuilder: function(style) { var t2, t3, strutFontFamilies, t4, cssStyle, t1 = H._detectRenderer(); if (t1) return H.CkParagraphBuilder$(style); else { t1 = type$.EngineParagraphStyle; t2 = type$.JSArray_double; if ($.WebExperiments_instance._useCanvasRichText) { t1._as(style); return new H.CanvasParagraphBuilder(new P.StringBuffer(""), style, H.setRuntimeTypeInfo([], type$.JSArray_ParagraphSpan), H.setRuntimeTypeInfo([], type$.JSArray_StyleNode), new H.RootStyleNode(style), H.setRuntimeTypeInfo([], t2)); } else { t1._as(style); t1 = type$.HtmlElement._as($.$get$domRenderer().createElement$1(0, "p")); t2 = H.setRuntimeTypeInfo([], t2); t3 = style._strutStyle; if (t3 != null) { strutFontFamilies = H.setRuntimeTypeInfo([], type$.JSArray_nullable_String); t4 = t3._fontFamily; if (t4 != null) strutFontFamilies.push(t4); t3 = t3._fontFamilyFallback; if (t3 != null) C.JSArray_methods.addAll$1(strutFontFamilies, t3); } cssStyle = t1.style; t3 = style._textAlign; if (t3 != null) { t4 = style._textDirection; t3 = H.textAlignToCssValue(t3, t4 == null ? C.TextDirection_1 : t4); cssStyle.textAlign = t3; } if (style.get$_lineHeight(style) != null) { t3 = H.S(style.get$_lineHeight(style)); cssStyle.lineHeight = t3; } t3 = style._textDirection; if (t3 != null) { t3 = H._textDirectionToCss(t3); cssStyle.toString; cssStyle.direction = t3 == null ? "" : t3; } t3 = style.__engine$_fontSize; if (t3 != null) { t3 = "" + C.JSNumber_methods.floor$0(t3) + "px"; cssStyle.fontSize = t3; } t3 = style._fontWeight; if (t3 != null) { t3 = H.fontWeightToCss(t3); cssStyle.toString; cssStyle.fontWeight = t3 == null ? "" : t3; } t3 = style._fontStyle; if (t3 != null) { t3 = t3 === C.FontStyle_0 ? "normal" : "italic"; cssStyle.fontStyle = t3; } t3 = H.canonicalizeFontFamily(style.get$_effectiveFontFamily()); cssStyle.toString; cssStyle.fontFamily = t3 == null ? "" : t3; return new H.DomParagraphBuilder(t1, style, [], t2); } } }, PluginUtilities_getCallbackHandle: function(callback) { throw H.wrapException(P.UnimplementedError$(null)); }, PluginUtilities_getCallbackFromHandle: function(handle) { throw H.wrapException(P.UnimplementedError$(null)); }, handlePlatformViewCall: function(data, callback) { var id, t1, t2, decoded = C.C_StandardMethodCodec0.decodeMethodCall$1(data); switch (decoded.method) { case "create": P._createPlatformView(decoded, callback); return; case "dispose": id = decoded.$arguments; t1 = $.$get$platformViewRegistry()._createdViews; t2 = t1.$index(0, id); if (t2 != null) J.remove$0$ax(t2); t1.remove$1(0, id); callback.call$1(C.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); return; } callback.call$1(null); }, _createPlatformView: function(methodCall, callback) { var platformViewFactory, element, args = methodCall.$arguments, t1 = J.getInterceptor$asx(args), id = t1.$index(args, "id"), viewType = t1.$index(args, "viewType"); t1 = $.$get$platformViewRegistry(); platformViewFactory = t1.registeredFactories.$index(0, viewType); if (platformViewFactory == null) { callback.call$1(C.C_StandardMethodCodec0.encodeErrorEnvelope$2$code$message("Unregistered factory", "No factory registered for viewtype '" + H.S(viewType) + "'")); return; } element = platformViewFactory.call$1(id); t1._createdViews.$indexSet(0, id, element); callback.call$1(C.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); }, _futurize: function(callbacker, $T) { var t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")), error = callbacker.call$1(new P._futurize_closure(new P._SyncCompleter(t1, $T._eval$1("_SyncCompleter<0>")), $T)); if (error != null) throw H.wrapException(P.Exception_Exception(error)); return t1; }, ClipOp: function ClipOp(t0, t1) { this.index = t0; this._ui$_name = t1; }, PathFillType: function PathFillType(t0, t1) { this.index = t0; this._ui$_name = t1; }, _StoredMessage: function _StoredMessage(t0, t1, t2) { this.data = t0; this._callback = t1; this._ui$_zone = t2; }, _Channel: function _Channel(t0, t1) { this._ui$_queue = t0; this.debugEnableDiscardWarnings = true; this._capacity = t1; }, ChannelBuffers: function ChannelBuffers(t0) { this._channels = t0; }, ChannelBuffers_push_closure: function ChannelBuffers_push_closure() { }, OffsetBase: function OffsetBase() { }, Offset: function Offset(t0, t1) { this._dx = t0; this._dy = t1; }, Size: function Size(t0, t1) { this._dx = t0; this._dy = t1; }, Rect: function Rect(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, Radius: function Radius(t0, t1) { this.x = t0; this.y = t1; }, RRect: function RRect(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.tlRadiusX = t4; _.tlRadiusY = t5; _.trRadiusX = t6; _.trRadiusY = t7; _.brRadiusX = t8; _.brRadiusY = t9; _.blRadiusX = t10; _.blRadiusY = t11; _.webOnlyUniformRadii = t12; }, _HashEnd: function _HashEnd() { }, webOnlyInitializePlatform_closure: function webOnlyInitializePlatform_closure() { }, KeyEventType: function KeyEventType(t0) { this._ui$_name = t0; }, KeyData: function KeyData(t0, t1, t2, t3) { var _ = this; _.type = t0; _.physical = t1; _.logical = t2; _.character = t3; }, Color: function Color(t0) { this.value = t0; }, StrokeCap: function StrokeCap(t0, t1) { this.index = t0; this._ui$_name = t1; }, StrokeJoin: function StrokeJoin(t0, t1) { this.index = t0; this._ui$_name = t1; }, PaintingStyle: function PaintingStyle(t0, t1) { this.index = t0; this._ui$_name = t1; }, BlendMode: function BlendMode(t0, t1) { this.index = t0; this._ui$_name = t1; }, Clip: function Clip(t0) { this._ui$_name = t0; }, BlurStyle: function BlurStyle(t0, t1) { this.index = t0; this._ui$_name = t1; }, MaskFilter: function MaskFilter(t0, t1) { this._ui$_style = t0; this._sigma = t1; }, FilterQuality: function FilterQuality(t0, t1) { this.index = t0; this._ui$_name = t1; }, ImageByteFormat: function ImageByteFormat(t0) { this._ui$_name = t0; }, webOnlyInstantiateImageCodecFromUrl_closure: function webOnlyInstantiateImageCodecFromUrl_closure(t0, t1) { this.uri = t0; this.chunkCallback = t1; }, Shadow: function Shadow() { }, PlatformDispatcher: function PlatformDispatcher() { }, PlatformConfiguration: function PlatformConfiguration(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.accessibilityFeatures = t0; _.alwaysUse24HourFormat = t1; _.semanticsEnabled = t2; _.platformBrightness = t3; _.textScaleFactor = t4; _.locales = t5; _.defaultRouteName = t6; }, ViewConfiguration: function ViewConfiguration() { }, FrameTiming: function FrameTiming(t0) { this._timestamps = t0; }, AppLifecycleState: function AppLifecycleState(t0) { this._ui$_name = t0; }, Locale: function Locale(t0, t1) { this._languageCode = t0; this._countryCode = t1; }, PointerChange: function PointerChange(t0) { this._ui$_name = t0; }, PointerDeviceKind: function PointerDeviceKind(t0) { this._ui$_name = t0; }, PointerSignalKind: function PointerSignalKind(t0) { this._ui$_name = t0; }, PointerData: function PointerData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.timeStamp = t0; _.change = t1; _.kind = t2; _.signalKind = t3; _.device = t4; _.pointerIdentifier = t5; _.physicalX = t6; _.physicalY = t7; _.physicalDeltaX = t8; _.physicalDeltaY = t9; _.buttons = t10; _.obscured = t11; _.synthesized = t12; _.pressure = t13; _.pressureMin = t14; _.pressureMax = t15; _.distance = t16; _.distanceMax = t17; _.size = t18; _.radiusMajor = t19; _.radiusMinor = t20; _.radiusMin = t21; _.radiusMax = t22; _.orientation = t23; _.tilt = t24; _.platformData = t25; _.scrollDeltaX = t26; _.scrollDeltaY = t27; }, PointerDataPacket: function PointerDataPacket(t0) { this.data = t0; }, SemanticsAction: function SemanticsAction(t0) { this.index = t0; }, SemanticsFlag: function SemanticsFlag(t0) { this.index = t0; }, SemanticsUpdateBuilder: function SemanticsUpdateBuilder(t0) { this._nodeUpdates = t0; }, FontStyle: function FontStyle(t0, t1) { this.index = t0; this._ui$_name = t1; }, PlaceholderAlignment: function PlaceholderAlignment(t0) { this._ui$_name = t0; }, FontWeight: function FontWeight(t0) { this.index = t0; }, FontFeature: function FontFeature() { }, TextAlign: function TextAlign(t0, t1) { this.index = t0; this._ui$_name = t1; }, TextBaseline: function TextBaseline(t0, t1) { this.index = t0; this._ui$_name = t1; }, TextDecoration: function TextDecoration(t0) { this._mask = t0; }, TextDecorationStyle: function TextDecorationStyle(t0, t1) { this.index = t0; this._ui$_name = t1; }, TextDirection: function TextDirection(t0, t1) { this.index = t0; this._ui$_name = t1; }, TextBox: function TextBox(t0, t1, t2, t3, t4) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.direction = t4; }, TextAffinity: function TextAffinity(t0) { this._ui$_name = t0; }, TextPosition: function TextPosition(t0, t1) { this.offset = t0; this.affinity = t1; }, TextRange: function TextRange(t0, t1) { this.start = t0; this.end = t1; }, ParagraphConstraints: function ParagraphConstraints(t0) { this.width = t0; }, BoxHeightStyle: function BoxHeightStyle(t0, t1) { this.index = t0; this._ui$_name = t1; }, BoxWidthStyle: function BoxWidthStyle() { }, TileMode: function TileMode(t0, t1) { this.index = t0; this._ui$_name = t1; }, FlutterView: function FlutterView() { }, FlutterWindow: function FlutterWindow() { }, SingletonFlutterWindow: function SingletonFlutterWindow() { }, AccessibilityFeatures: function AccessibilityFeatures() { }, Brightness: function Brightness(t0) { this._ui$_name = t0; }, CallbackHandle: function CallbackHandle(t0) { this._ui$_handle = t0; }, PlatformViewRegistry: function PlatformViewRegistry(t0, t1) { this.registeredFactories = t0; this._createdViews = t1; }, _futurize_closure: function _futurize_closure(t0, t1) { this.completer = t0; this.T = t1; }, AudioBuffer: function AudioBuffer() { }, AudioParam: function AudioParam() { }, AudioParamMap: function AudioParamMap() { }, AudioParamMap_keys_closure: function AudioParamMap_keys_closure(t0) { this.keys = t0; }, AudioParamMap_values_closure: function AudioParamMap_values_closure(t0) { this.values = t0; }, AudioTrack: function AudioTrack() { }, AudioTrackList: function AudioTrackList() { }, BaseAudioContext: function BaseAudioContext() { }, OfflineAudioContext: function OfflineAudioContext() { }, _AudioParamMap_Interceptor_MapMixin: function _AudioParamMap_Interceptor_MapMixin() { }, ActiveInfo: function ActiveInfo() { }, SqlResultSetRowList: function SqlResultSetRowList() { }, _SqlResultSetRowList_Interceptor_ListMixin: function _SqlResultSetRowList_Interceptor_ListMixin() { }, _SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin: function _SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin() { } }, W = { window: function() { return window; }, document: function() { return document; }, AnchorElement_AnchorElement: function(href) { var e = document.createElement("a"); if (href != null) e.href = href; return e; }, Blob_Blob: function(blobParts) { var t1 = new self.Blob(blobParts); return t1; }, CanvasElement_CanvasElement: function(height, width) { var e = document.createElement("canvas"); if (width != null) e.width = width; if (height != null) e.height = height; return e; }, _ChildrenElementList__addAll: function(_element, iterable) { var t1; for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0();) _element.appendChild(t1.get$current(t1)); }, _ChildrenElementList__remove: function(_element, object) { if (type$.Element._is(object)) if (object.parentNode === _element) { _element.removeChild(object); return true; } return false; }, _ChildrenElementList__first: function(_element) { var result = _element.firstElementChild; if (result == null) throw H.wrapException(P.StateError$("No elements")); return result; }, Element_Element$html: function(html, treeSanitizer, validator) { var fragment, t1 = document.body; t1.toString; fragment = C.BodyElement_methods.createFragment$3$treeSanitizer$validator(t1, html, treeSanitizer, validator); fragment.toString; t1 = new H.WhereIterable(new W._ChildNodeListLazy(fragment), new W.Element_Element$html_closure(), type$._ChildNodeListLazy._eval$1("WhereIterable")); return type$.Element._as(t1.get$single(t1)); }, Element_Element$tag: function(tag) { return W._ElementFactoryProvider_createElement_tag(tag, null); }, Element__safeTagName: function(element) { var t1, exception, result = "element tag unavailable"; try { t1 = J.getInterceptor$x(element); if (typeof t1.get$tagName(element) == "string") result = t1.get$tagName(element); } catch (exception) { H.unwrapException(exception); } return result; }, _ElementFactoryProvider_createElement_tag: function(tag, typeExtension) { return document.createElement(tag); }, FontFace_FontFace: function(family, source, descriptors) { var t1 = new FontFace(family, source, P.convertDartToNative_Dictionary(descriptors)); return t1; }, HttpRequest_request: function(url, responseType) { var t2, t1 = new P._Future($.Zone__current, type$._Future_HttpRequest), completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_HttpRequest), xhr = new XMLHttpRequest(); C.HttpRequest_methods.open$3$async(xhr, "GET", url, true); xhr.responseType = responseType; t2 = type$.legacy_ProgressEvent; W._EventStreamSubscription$(xhr, "load", new W.HttpRequest_request_closure(xhr, completer), false, t2); W._EventStreamSubscription$(xhr, "error", completer.get$completeError(), false, t2); xhr.send(); return t1; }, ImageElement_ImageElement: function() { var e = document.createElement("img"); return e; }, InputElement_InputElement: function(type) { var exception, t1 = document.createElement("input"), e = type$.InputElement._as(t1); if (type != null) try { e.type = type; } catch (exception) { H.unwrapException(exception); } return e; }, _JenkinsSmiHash_combine: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _JenkinsSmiHash_hash4: function(a, b, c, d) { var t1 = W._JenkinsSmiHash_combine(W._JenkinsSmiHash_combine(W._JenkinsSmiHash_combine(W._JenkinsSmiHash_combine(0, a), b), c), d), hash = t1 + ((t1 & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, _EventStreamSubscription$: function(_target, _eventType, onData, _useCapture, $T) { var t1 = onData == null ? null : W._wrapZone(new W._EventStreamSubscription_closure(onData), type$.Event); t1 = new W._EventStreamSubscription(_target, _eventType, t1, false, $T._eval$1("_EventStreamSubscription<0>")); t1._tryResume$0(); return t1; }, _Html5NodeValidator$: function(uriPolicy) { var t1 = W.AnchorElement_AnchorElement(null), t2 = window.location; t1 = new W._Html5NodeValidator(new W._SameOriginUriPolicy(t1, t2)); t1._Html5NodeValidator$1$uriPolicy(uriPolicy); return t1; }, _Html5NodeValidator__standardAttributeValidator: function(element, attributeName, value, context) { return true; }, _Html5NodeValidator__uriAttributeValidator: function(element, attributeName, value, context) { var t3, t1 = context.uriPolicy, t2 = t1._hiddenAnchor; t2.href = value; t3 = t2.hostname; t1 = t1._loc; if (!(t3 == t1.hostname && t2.port == t1.port && t2.protocol == t1.protocol)) if (t3 === "") if (t2.port === "") { t1 = t2.protocol; t1 = t1 === ":" || t1 === ""; } else t1 = false; else t1 = false; else t1 = true; return t1; }, _TemplatingNodeValidator$: function() { var t1 = type$.String, t2 = P.LinkedHashSet_LinkedHashSet$from(C.List_wSV, t1), t3 = H.setRuntimeTypeInfo(["TEMPLATE"], type$.JSArray_String); t1 = new W._TemplatingNodeValidator(t2, P.LinkedHashSet_LinkedHashSet(t1), P.LinkedHashSet_LinkedHashSet(t1), P.LinkedHashSet_LinkedHashSet(t1), null); t1._SimpleNodeValidator$4$allowedAttributes$allowedElements$allowedUriAttributes(null, new H.MappedListIterable(C.List_wSV, new W._TemplatingNodeValidator_closure(), type$.MappedListIterable_of_legacy_String_and_String), t3, null); return t1; }, _convertNativeToDart_EventTarget: function(e) { var $window; if ("postMessage" in e) { $window = W._DOMWindowCrossFrame__createSafe(e); if (type$.EventTarget._is($window)) return $window; return null; } else return e; }, _convertNativeToDart_XHR_Response: function(o) { if (type$.Document._is(o)) return o; return new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(o, true); }, _DOMWindowCrossFrame__createSafe: function(w) { if (w === window) return w; else return new W._DOMWindowCrossFrame(w); }, _wrapZone: function(callback, $T) { var t1 = $.Zone__current; if (t1 === C.C__RootZone) return callback; return t1.bindUnaryCallbackGuarded$1$1(callback, $T); }, querySelector: function(selectors) { return document.querySelector(selectors); }, HtmlElement: function HtmlElement() { }, AccessibleNodeList: function AccessibleNodeList() { }, AnchorElement: function AnchorElement() { }, Animation: function Animation() { }, AreaElement: function AreaElement() { }, BackgroundFetchEvent: function BackgroundFetchEvent() { }, BackgroundFetchRegistration: function BackgroundFetchRegistration() { }, BaseElement: function BaseElement() { }, BeforeUnloadEvent: function BeforeUnloadEvent() { }, Blob: function Blob() { }, BluetoothRemoteGattDescriptor: function BluetoothRemoteGattDescriptor() { }, Body: function Body() { }, BodyElement: function BodyElement() { }, BroadcastChannel: function BroadcastChannel() { }, ButtonElement: function ButtonElement() { }, CanvasElement: function CanvasElement() { }, CanvasElement_toBlob_closure: function CanvasElement_toBlob_closure(t0) { this.completer = t0; }, CanvasRenderingContext2D: function CanvasRenderingContext2D() { }, CharacterData: function CharacterData() { }, Client: function Client() { }, Credential: function Credential() { }, CredentialUserData: function CredentialUserData() { }, CssKeyframesRule: function CssKeyframesRule() { }, CssKeywordValue: function CssKeywordValue() { }, CssNumericValue: function CssNumericValue() { }, CssPerspective: function CssPerspective() { }, CssRule: function CssRule() { }, CssStyleDeclaration: function CssStyleDeclaration() { }, CssStyleDeclarationBase: function CssStyleDeclarationBase() { }, CssStyleSheet: function CssStyleSheet() { }, CssStyleValue: function CssStyleValue() { }, CssTransformComponent: function CssTransformComponent() { }, CssTransformValue: function CssTransformValue() { }, CssUnitValue: function CssUnitValue() { }, CssUnparsedValue: function CssUnparsedValue() { }, DataElement: function DataElement() { }, DataTransferItemList: function DataTransferItemList() { }, DivElement: function DivElement() { }, Document0: function Document0() { }, DomError: function DomError() { }, DomException: function DomException() { }, DomRectList: function DomRectList() { }, DomRectReadOnly: function DomRectReadOnly() { }, DomStringList: function DomStringList() { }, DomTokenList: function DomTokenList() { }, _ChildrenElementList: function _ChildrenElementList(t0, t1) { this._html$_element = t0; this._childElements = t1; }, _ChildrenElementList__filter_closure: function _ChildrenElementList__filter_closure(t0) { this.test = t0; }, _FrozenElementList: function _FrozenElementList(t0, t1) { this._nodeList = t0; this.$ti = t1; }, Element: function Element() { }, Element_Element$html_closure: function Element_Element$html_closure() { }, EmbedElement: function EmbedElement() { }, Entry: function Entry() { }, Entry_remove_closure: function Entry_remove_closure(t0) { this.completer = t0; }, Entry_remove_closure0: function Entry_remove_closure0(t0) { this.completer = t0; }, Event: function Event() { }, EventTarget: function EventTarget() { }, ExtendableEvent: function ExtendableEvent() { }, FederatedCredential: function FederatedCredential() { }, FieldSetElement: function FieldSetElement() { }, File: function File() { }, FileList: function FileList() { }, FileReader: function FileReader() { }, FileSystem: function FileSystem() { }, FileWriter: function FileWriter() { }, FontFace: function FontFace() { }, FontFaceSet: function FontFaceSet() { }, FormElement: function FormElement() { }, Gamepad: function Gamepad() { }, GamepadButton: function GamepadButton() { }, History: function History() { }, HtmlCollection: function HtmlCollection() { }, HtmlDocument: function HtmlDocument() { }, HttpRequest: function HttpRequest() { }, HttpRequest_request_closure: function HttpRequest_request_closure(t0, t1) { this.xhr = t0; this.completer = t1; }, HttpRequestEventTarget: function HttpRequestEventTarget() { }, IFrameElement: function IFrameElement() { }, ImageData: function ImageData() { }, ImageElement: function ImageElement() { }, InputElement: function InputElement() { }, KeyboardEvent: function KeyboardEvent() { }, LIElement: function LIElement() { }, LabelElement: function LabelElement() { }, Location: function Location() { }, MapElement: function MapElement() { }, MediaElement: function MediaElement() { }, MediaKeySession: function MediaKeySession() { }, MediaList: function MediaList() { }, MediaQueryList: function MediaQueryList() { }, MediaQueryListEvent: function MediaQueryListEvent() { }, MediaStream: function MediaStream() { }, MediaStreamTrack: function MediaStreamTrack() { }, MessagePort: function MessagePort() { }, MetaElement: function MetaElement() { }, MeterElement: function MeterElement() { }, MidiInputMap: function MidiInputMap() { }, MidiInputMap_keys_closure: function MidiInputMap_keys_closure(t0) { this.keys = t0; }, MidiInputMap_values_closure: function MidiInputMap_values_closure(t0) { this.values = t0; }, MidiOutputMap: function MidiOutputMap() { }, MidiOutputMap_keys_closure: function MidiOutputMap_keys_closure(t0) { this.keys = t0; }, MidiOutputMap_values_closure: function MidiOutputMap_values_closure(t0) { this.values = t0; }, MidiPort: function MidiPort() { }, MimeType: function MimeType() { }, MimeTypeArray: function MimeTypeArray() { }, MouseEvent: function MouseEvent() { }, Navigator0: function Navigator0() { }, NavigatorConcurrentHardware: function NavigatorConcurrentHardware() { }, NavigatorUserMediaError: function NavigatorUserMediaError() { }, _ChildNodeListLazy: function _ChildNodeListLazy(t0) { this._this = t0; }, Node: function Node() { }, NodeList: function NodeList() { }, Notification: function Notification() { }, ObjectElement: function ObjectElement() { }, OffscreenCanvas: function OffscreenCanvas() { }, OptionElement: function OptionElement() { }, OutputElement: function OutputElement() { }, OverconstrainedError: function OverconstrainedError() { }, ParagraphElement: function ParagraphElement() { }, ParamElement: function ParamElement() { }, PasswordCredential: function PasswordCredential() { }, PaymentRequest: function PaymentRequest() { }, PerformanceEntry: function PerformanceEntry() { }, PerformanceServerTiming: function PerformanceServerTiming() { }, Plugin: function Plugin() { }, PluginArray: function PluginArray() { }, PointerEvent: function PointerEvent() { }, PresentationAvailability: function PresentationAvailability() { }, PresentationConnection: function PresentationConnection() { }, ProgressElement: function ProgressElement() { }, ProgressEvent: function ProgressEvent() { }, PushMessageData: function PushMessageData() { }, RelatedApplication: function RelatedApplication() { }, RtcDataChannel: function RtcDataChannel() { }, RtcLegacyStatsReport: function RtcLegacyStatsReport() { }, RtcStatsReport: function RtcStatsReport() { }, RtcStatsReport_keys_closure: function RtcStatsReport_keys_closure(t0) { this.keys = t0; }, RtcStatsReport_values_closure: function RtcStatsReport_values_closure(t0) { this.values = t0; }, ScreenOrientation: function ScreenOrientation() { }, ScriptElement: function ScriptElement() { }, SelectElement: function SelectElement() { }, SharedWorkerGlobalScope: function SharedWorkerGlobalScope() { }, SlotElement: function SlotElement() { }, SourceBuffer: function SourceBuffer() { }, SourceBufferList: function SourceBufferList() { }, SpanElement: function SpanElement() { }, SpeechGrammar: function SpeechGrammar() { }, SpeechGrammarList: function SpeechGrammarList() { }, SpeechRecognitionResult: function SpeechRecognitionResult() { }, SpeechSynthesisEvent: function SpeechSynthesisEvent() { }, SpeechSynthesisUtterance: function SpeechSynthesisUtterance() { }, SpeechSynthesisVoice: function SpeechSynthesisVoice() { }, Storage: function Storage() { }, Storage_addAll_closure: function Storage_addAll_closure(t0) { this.$this = t0; }, Storage_keys_closure: function Storage_keys_closure(t0) { this.keys = t0; }, Storage_values_closure: function Storage_values_closure(t0) { this.values = t0; }, StyleElement: function StyleElement() { }, StyleSheet: function StyleSheet() { }, TableElement: function TableElement() { }, TableRowElement: function TableRowElement() { }, TableSectionElement: function TableSectionElement() { }, TemplateElement: function TemplateElement() { }, TextAreaElement: function TextAreaElement() { }, TextTrack: function TextTrack() { }, TextTrackCue: function TextTrackCue() { }, TextTrackCueList: function TextTrackCueList() { }, TextTrackList: function TextTrackList() { }, TimeRanges: function TimeRanges() { }, Touch: function Touch() { }, TouchEvent: function TouchEvent() { }, TouchList: function TouchList() { }, TrackDefaultList: function TrackDefaultList() { }, UIEvent: function UIEvent() { }, Url: function Url() { }, VideoElement: function VideoElement() { }, VideoTrack: function VideoTrack() { }, VideoTrackList: function VideoTrackList() { }, VttCue: function VttCue() { }, VttRegion: function VttRegion() { }, WheelEvent: function WheelEvent() { }, Window: function Window() { }, _BeforeUnloadEvent: function _BeforeUnloadEvent(t0) { this.wrapped = t0; }, _BeforeUnloadEventStreamProvider: function _BeforeUnloadEventStreamProvider() { }, _BeforeUnloadEventStreamProvider_forTarget_closure: function _BeforeUnloadEventStreamProvider_forTarget_closure(t0) { this.controller = t0; }, WorkerGlobalScope: function WorkerGlobalScope() { }, _Attr: function _Attr() { }, _CssRuleList: function _CssRuleList() { }, _DomRect: function _DomRect() { }, _GamepadList: function _GamepadList() { }, _NamedNodeMap: function _NamedNodeMap() { }, _Report: function _Report() { }, _SpeechRecognitionResultList: function _SpeechRecognitionResultList() { }, _StyleSheetList: function _StyleSheetList() { }, _AttributeMap: function _AttributeMap() { }, _AttributeMap_addAll_closure: function _AttributeMap_addAll_closure(t0) { this.$this = t0; }, _ElementAttributeMap: function _ElementAttributeMap(t0) { this._html$_element = t0; }, _DataAttributeMap: function _DataAttributeMap(t0) { this._attributes = t0; }, _DataAttributeMap_addAll_closure: function _DataAttributeMap_addAll_closure(t0) { this.$this = t0; }, _DataAttributeMap_forEach_closure: function _DataAttributeMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, _DataAttributeMap_keys_closure: function _DataAttributeMap_keys_closure(t0, t1) { this.$this = t0; this.keys = t1; }, _DataAttributeMap_values_closure: function _DataAttributeMap_values_closure(t0, t1) { this.$this = t0; this.values = t1; }, EventStreamProvider: function EventStreamProvider(t0, t1) { this._eventType = t0; this.$ti = t1; }, _EventStream: function _EventStream(t0, t1, t2, t3) { var _ = this; _._html$_target = t0; _._eventType = t1; _._useCapture = t2; _.$ti = t3; }, _ElementEventStreamImpl: function _ElementEventStreamImpl(t0, t1, t2, t3) { var _ = this; _._html$_target = t0; _._eventType = t1; _._useCapture = t2; _.$ti = t3; }, _EventStreamSubscription: function _EventStreamSubscription(t0, t1, t2, t3, t4) { var _ = this; _._pauseCount = 0; _._html$_target = t0; _._eventType = t1; _._onData = t2; _._useCapture = t3; _.$ti = t4; }, _EventStreamSubscription_closure: function _EventStreamSubscription_closure(t0) { this.onData = t0; }, _EventStreamSubscription_onData_closure: function _EventStreamSubscription_onData_closure(t0) { this.handleData = t0; }, _Html5NodeValidator: function _Html5NodeValidator(t0) { this.uriPolicy = t0; }, ImmutableListMixin: function ImmutableListMixin() { }, NodeValidatorBuilder: function NodeValidatorBuilder(t0) { this._validators = t0; }, NodeValidatorBuilder_allowsElement_closure: function NodeValidatorBuilder_allowsElement_closure(t0) { this.element = t0; }, NodeValidatorBuilder_allowsAttribute_closure: function NodeValidatorBuilder_allowsAttribute_closure(t0, t1, t2) { this.element = t0; this.attributeName = t1; this.value = t2; }, _SimpleNodeValidator: function _SimpleNodeValidator() { }, _SimpleNodeValidator_closure: function _SimpleNodeValidator_closure() { }, _SimpleNodeValidator_closure0: function _SimpleNodeValidator_closure0() { }, _TemplatingNodeValidator: function _TemplatingNodeValidator(t0, t1, t2, t3, t4) { var _ = this; _._templateAttrs = t0; _.allowedElements = t1; _.allowedAttributes = t2; _.allowedUriAttributes = t3; _.uriPolicy = t4; }, _TemplatingNodeValidator_closure: function _TemplatingNodeValidator_closure() { }, _SvgNodeValidator: function _SvgNodeValidator() { }, FixedSizeListIterator: function FixedSizeListIterator(t0, t1, t2) { var _ = this; _._array = t0; _._html$_length = t1; _._position = -1; _._html$_current = null; _.$ti = t2; }, Console: function Console() { }, _DOMWindowCrossFrame: function _DOMWindowCrossFrame(t0) { this._html$_window = t0; }, _WrappedEvent: function _WrappedEvent() { }, _SameOriginUriPolicy: function _SameOriginUriPolicy(t0, t1) { this._hiddenAnchor = t0; this._loc = t1; }, _ValidatingTreeSanitizer: function _ValidatingTreeSanitizer(t0) { this.validator = t0; this.numTreeModifications = 0; }, _ValidatingTreeSanitizer_sanitizeTree_walk: function _ValidatingTreeSanitizer_sanitizeTree_walk(t0) { this.$this = t0; }, _CssStyleDeclaration_Interceptor_CssStyleDeclarationBase: function _CssStyleDeclaration_Interceptor_CssStyleDeclarationBase() { }, _DomRectList_Interceptor_ListMixin: function _DomRectList_Interceptor_ListMixin() { }, _DomRectList_Interceptor_ListMixin_ImmutableListMixin: function _DomRectList_Interceptor_ListMixin_ImmutableListMixin() { }, _DomStringList_Interceptor_ListMixin: function _DomStringList_Interceptor_ListMixin() { }, _DomStringList_Interceptor_ListMixin_ImmutableListMixin: function _DomStringList_Interceptor_ListMixin_ImmutableListMixin() { }, _FileList_Interceptor_ListMixin: function _FileList_Interceptor_ListMixin() { }, _FileList_Interceptor_ListMixin_ImmutableListMixin: function _FileList_Interceptor_ListMixin_ImmutableListMixin() { }, _HtmlCollection_Interceptor_ListMixin: function _HtmlCollection_Interceptor_ListMixin() { }, _HtmlCollection_Interceptor_ListMixin_ImmutableListMixin: function _HtmlCollection_Interceptor_ListMixin_ImmutableListMixin() { }, _MidiInputMap_Interceptor_MapMixin: function _MidiInputMap_Interceptor_MapMixin() { }, _MidiOutputMap_Interceptor_MapMixin: function _MidiOutputMap_Interceptor_MapMixin() { }, _MimeTypeArray_Interceptor_ListMixin: function _MimeTypeArray_Interceptor_ListMixin() { }, _MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin: function _MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin() { }, _NodeList_Interceptor_ListMixin: function _NodeList_Interceptor_ListMixin() { }, _NodeList_Interceptor_ListMixin_ImmutableListMixin: function _NodeList_Interceptor_ListMixin_ImmutableListMixin() { }, _PluginArray_Interceptor_ListMixin: function _PluginArray_Interceptor_ListMixin() { }, _PluginArray_Interceptor_ListMixin_ImmutableListMixin: function _PluginArray_Interceptor_ListMixin_ImmutableListMixin() { }, _RtcStatsReport_Interceptor_MapMixin: function _RtcStatsReport_Interceptor_MapMixin() { }, _SourceBufferList_EventTarget_ListMixin: function _SourceBufferList_EventTarget_ListMixin() { }, _SourceBufferList_EventTarget_ListMixin_ImmutableListMixin: function _SourceBufferList_EventTarget_ListMixin_ImmutableListMixin() { }, _SpeechGrammarList_Interceptor_ListMixin: function _SpeechGrammarList_Interceptor_ListMixin() { }, _SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin: function _SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin() { }, _Storage_Interceptor_MapMixin: function _Storage_Interceptor_MapMixin() { }, _TextTrackCueList_Interceptor_ListMixin: function _TextTrackCueList_Interceptor_ListMixin() { }, _TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin: function _TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin() { }, _TextTrackList_EventTarget_ListMixin: function _TextTrackList_EventTarget_ListMixin() { }, _TextTrackList_EventTarget_ListMixin_ImmutableListMixin: function _TextTrackList_EventTarget_ListMixin_ImmutableListMixin() { }, _TouchList_Interceptor_ListMixin: function _TouchList_Interceptor_ListMixin() { }, _TouchList_Interceptor_ListMixin_ImmutableListMixin: function _TouchList_Interceptor_ListMixin_ImmutableListMixin() { }, __CssRuleList_Interceptor_ListMixin: function __CssRuleList_Interceptor_ListMixin() { }, __CssRuleList_Interceptor_ListMixin_ImmutableListMixin: function __CssRuleList_Interceptor_ListMixin_ImmutableListMixin() { }, __GamepadList_Interceptor_ListMixin: function __GamepadList_Interceptor_ListMixin() { }, __GamepadList_Interceptor_ListMixin_ImmutableListMixin: function __GamepadList_Interceptor_ListMixin_ImmutableListMixin() { }, __NamedNodeMap_Interceptor_ListMixin: function __NamedNodeMap_Interceptor_ListMixin() { }, __NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin: function __NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin() { }, __SpeechRecognitionResultList_Interceptor_ListMixin: function __SpeechRecognitionResultList_Interceptor_ListMixin() { }, __SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin: function __SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin() { }, __StyleSheetList_Interceptor_ListMixin: function __StyleSheetList_Interceptor_ListMixin() { }, __StyleSheetList_Interceptor_ListMixin_ImmutableListMixin: function __StyleSheetList_Interceptor_ListMixin_ImmutableListMixin() { } }, D = {GZipEncoder: function GZipEncoder() { }, BoardItem$: function(boardList, draggable, index, item, onDragItem, onDropItem, onStartDragItem, onTapItem) { return new D.BoardItem(boardList, item, index, onDropItem, onTapItem, onStartDragItem, onDragItem, draggable, null); }, BoardItem: function BoardItem(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.boardList = t0; _.item = t1; _.index = t2; _.onDropItem = t3; _.onTapItem = t4; _.onStartDragItem = t5; _.onDragItem = t6; _.draggable = t7; _.key = t8; }, BoardItemState: function BoardItemState(t0, t1) { var _ = this; _.__BoardItemState_height = $; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, BoardItemState_onDropItem_closure: function BoardItemState_onDropItem_closure() { }, BoardItemState__startDrag_closure: function BoardItemState__startDrag_closure() { }, BoardItemState__startDrag_closure0: function BoardItemState__startDrag_closure0() { }, BoardItemState_build_closure: function BoardItemState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, BoardItemState_build_closure3: function BoardItemState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, BoardItemState_build_closure2: function BoardItemState_build_closure2() { }, BoardItemState_build_closure1: function BoardItemState_build_closure1(t0) { this.$this = t0; }, BoardItemState_build_closure0: function BoardItemState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _BoardItemState_State_AutomaticKeepAliveClientMixin: function _BoardItemState_State_AutomaticKeepAliveClientMixin() { }, BuiltList_BuiltList$from: function(iterable, $E) { var t1; if (iterable instanceof D._BuiltList) { t1 = H.createRuntimeType($E); t1 = H.createRuntimeType(iterable.$ti._precomputed1) === t1; } else t1 = false; if (t1) return $E._eval$1("BuiltList<0>")._as(iterable); else { t1 = new D._BuiltList(P.List_List$from(iterable, false, $E), $E._eval$1("_BuiltList<0>")); t1._maybeCheckForNull$0(); return t1; } }, ListBuilder_ListBuilder: function(iterable, $E) { var t1 = new D.ListBuilder($E._eval$1("ListBuilder<0>")); t1.replace$1(0, iterable); return t1; }, BuiltList: function BuiltList() { }, _BuiltList: function _BuiltList(t0, t1) { this._list = t0; this._list$_hashCode = null; this.$ti = t1; }, ListBuilder: function ListBuilder(t0) { this.__ListBuilder__list = $; this._listOwner = null; this.$ti = t0; }, DoubleSerializer: function DoubleSerializer(t0) { this.types = t0; }, BaseTimeStepper: function BaseTimeStepper() { }, _TimeStepIteratorImpl: function _TimeStepIteratorImpl(t0, t1, t2) { var _ = this; _.extentStartTime = t0; _.extentEndTime = t1; _.stepper = t2; _._base_time_stepper$_current = null; _._tickIncrement = 1; }, _TimeStepIteratorFactoryImpl: function _TimeStepIteratorFactoryImpl(t0, t1) { this.timeExtent = t0; this._timeStepIterator = t1; }, Legend: function Legend() { }, LegendState: function LegendState(t0) { this.__LegendState__legendEntries = $; this._selectionModel = null; this.$ti = t0; }, LegendTapHandling: function LegendTapHandling(t0) { this._legend$_name = t0; }, SelectionModel: function SelectionModel(t0, t1, t2) { this._selectedDatum = t0; this._selectedSeries = t1; this.$ti = t2; }, MutableSelectionModel: function MutableSelectionModel(t0, t1, t2, t3, t4, t5) { var _ = this; _._changedListeners = t0; _._updatedListeners = t1; _._lockChangedListeners = t2; _._selectedDatum = t3; _._selectedSeries = t4; _.$ti = t5; }, MutableSelectionModel_updateSelection_closure: function MutableSelectionModel_updateSelection_closure(t0, t1) { this.$this = t0; this.copyOfSelectionModel = t1; }, MutableSelectionModel_updateSelection_closure0: function MutableSelectionModel_updateSelection_closure0(t0, t1) { this.$this = t0; this.copyOfSelectionModel = t1; }, SelectionModelType: function SelectionModelType() { }, LayoutManagerImpl: function LayoutManagerImpl(t0, t1) { var _ = this; _.config = t0; _._views = t1; _.__LayoutManagerImpl__drawAreaBounds = _.__LayoutManagerImpl__measurements = _.__LayoutManagerImpl__positionOrderedViews = _.__LayoutManagerImpl__paintOrderedViews = $; _._viewsNeedPositionSort = _._viewsNeedPaintSort = _._drawAreaBoundsOutdated = true; }, LayoutManagerImpl_paintOrderedViews_closure: function LayoutManagerImpl_paintOrderedViews_closure() { }, LayoutManagerImpl_positionOrderedViews_closure: function LayoutManagerImpl_positionOrderedViews_closure() { }, LayoutManagerImpl_drawableLayoutAreaBounds_closure: function LayoutManagerImpl_drawableLayoutAreaBounds_closure() { }, LayoutManagerImpl_layout_closure: function LayoutManagerImpl_layout_closure(t0) { this.$this = t0; }, LayoutManagerImpl__viewsForPositions_closure: function LayoutManagerImpl__viewsForPositions_closure(t0, t1) { this.p1 = t0; this.p2 = t1; }, _MeasuredSizes: function _MeasuredSizes(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.leftWidth = t0; _.leftSizes = t1; _.rightWidth = t2; _.rightSizes = t3; _.topHeight = t4; _.topSizes = t5; _.bottomHeight = t6; _.bottomSizes = t7; }, MaterialStyle: function MaterialStyle() { }, Enum: function Enum() { }, CupertinoRouteTransitionMixin__isPopGestureEnabled: function(route) { var t1; if (route.get$isFirst()) return false; t1 = route.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) return false; if (route._willPopCallbacks.length !== 0) return false; t1 = route._animationProxy; if (t1.get$status(t1) !== C.AnimationStatus_3) return false; t1 = route._secondaryAnimationProxy; if (t1.get$status(t1) !== C.AnimationStatus_0) return false; if (route._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) return false; return true; }, CupertinoRouteTransitionMixin_buildPageTransitions: function(route, context, animation, secondaryAnimation, child, $T) { var t4, t5, t6, t7, t1 = route._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value, t2 = t1 ? animation : S.CurvedAnimation$(C.Cubic_izR, animation, C.Cubic_OcD), t3 = $.$get$_kRightMiddleTween(); t2.toString; t4 = type$.Animation_double; t4._as(t2); t3.toString; t5 = t1 ? secondaryAnimation : S.CurvedAnimation$(C.Cubic_izR, secondaryAnimation, C.Cubic_OcD); t6 = $.$get$_kMiddleLeftTween(); t5.toString; t4._as(t5); t6.toString; t1 = t1 ? animation : S.CurvedAnimation$(C.Cubic_izR, animation, null); t7 = $.$get$_CupertinoEdgeShadowDecoration_kTween(); t1.toString; t4._as(t1); t7.toString; return new D.CupertinoPageTransition(new R._AnimatedEvaluation(t2, t3, t3.$ti._eval$1("_AnimatedEvaluation")), new R._AnimatedEvaluation(t5, t6, t6.$ti._eval$1("_AnimatedEvaluation")), new R._AnimatedEvaluation(t1, t7, H._instanceType(t7)._eval$1("_AnimatedEvaluation")), new D._CupertinoBackGestureDetector(child, new D.CupertinoRouteTransitionMixin_buildPageTransitions_closure(route), new D.CupertinoRouteTransitionMixin_buildPageTransitions_closure0(route, $T), null, $T._eval$1("_CupertinoBackGestureDetector<0>")), null); }, _CupertinoEdgeShadowDecoration_lerp: function(a, b, t) { var t2, t3, t4, i, t5, t6, t1 = a == null; if (t1 && b == null) return null; if (t1) { t1 = b._colors; if (t1 == null) t1 = b; else { t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Color>"); t2 = new D._CupertinoEdgeShadowDecoration(P.List_List$of(new H.MappedListIterable(t1, new D._CupertinoEdgeShadowDecoration_lerp_closure(t), t2), true, t2._eval$1("ListIterable.E"))); t1 = t2; } return t1; } if (b == null) { t1 = a._colors; if (t1 == null) t1 = a; else { t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Color>"); t2 = new D._CupertinoEdgeShadowDecoration(P.List_List$of(new H.MappedListIterable(t1, new D._CupertinoEdgeShadowDecoration_lerp_closure0(t), t2), true, t2._eval$1("ListIterable.E"))); t1 = t2; } return t1; } t1 = H.setRuntimeTypeInfo([], type$.JSArray_Color); for (t2 = b._colors, t3 = a._colors, t4 = t3 == null, i = 0; i < t2.length; ++i) { t5 = t4 ? null : t3[i]; t6 = t2[i]; t5 = P.Color_lerp(t5, t6, t); t5.toString; t1.push(t5); } return new D._CupertinoEdgeShadowDecoration(t1); }, CupertinoRouteTransitionMixin_buildPageTransitions_closure: function CupertinoRouteTransitionMixin_buildPageTransitions_closure(t0) { this.route = t0; }, CupertinoRouteTransitionMixin_buildPageTransitions_closure0: function CupertinoRouteTransitionMixin_buildPageTransitions_closure0(t0, t1) { this.route = t0; this.T = t1; }, CupertinoPageTransition: function CupertinoPageTransition(t0, t1, t2, t3, t4) { var _ = this; _._primaryPositionAnimation = t0; _._secondaryPositionAnimation = t1; _._primaryShadowAnimation = t2; _.child = t3; _.key = t4; }, _CupertinoBackGestureDetector: function _CupertinoBackGestureDetector(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.enabledCallback = t1; _.onStartPopGesture = t2; _.key = t3; _.$ti = t4; }, _CupertinoBackGestureDetectorState: function _CupertinoBackGestureDetectorState(t0, t1) { var _ = this; _._backGestureController = null; _.___CupertinoBackGestureDetectorState__recognizer = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _CupertinoBackGestureController: function _CupertinoBackGestureController(t0, t1, t2) { this.controller = t0; this.navigator = t1; this.$ti = t2; }, _CupertinoBackGestureController_dragEnd__animationStatusCallback_set: function _CupertinoBackGestureController_dragEnd__animationStatusCallback_set(t0) { this._box_0 = t0; }, _CupertinoBackGestureController_dragEnd__animationStatusCallback_get: function _CupertinoBackGestureController_dragEnd__animationStatusCallback_get(t0) { this._box_0 = t0; }, _CupertinoBackGestureController_dragEnd_closure: function _CupertinoBackGestureController_dragEnd_closure(t0, t1) { this.$this = t0; this._animationStatusCallback_get = t1; }, _CupertinoEdgeShadowDecoration: function _CupertinoEdgeShadowDecoration(t0) { this._colors = t0; }, _CupertinoEdgeShadowDecoration_lerp_closure: function _CupertinoEdgeShadowDecoration_lerp_closure(t0) { this.t = t0; }, _CupertinoEdgeShadowDecoration_lerp_closure0: function _CupertinoEdgeShadowDecoration_lerp_closure0(t0) { this.t = t0; }, _CupertinoEdgeShadowPainter: function _CupertinoEdgeShadowPainter(t0, t1) { this._route$_decoration = t0; this.onChanged = t1; }, Key: function Key() { }, LocalKey: function LocalKey() { }, ValueKey: function ValueKey(t0, t1) { this.value = t0; this.$ti = t1; }, _TypeLiteral: function _TypeLiteral(t0) { this.$ti = t0; }, GestureDisposition: function GestureDisposition(t0) { this._arena$_name = t0; }, GestureArenaMember: function GestureArenaMember() { }, GestureArenaEntry: function GestureArenaEntry(t0, t1, t2) { this._arena = t0; this._arena$_pointer = t1; this._member = t2; }, _GestureArena: function _GestureArena(t0) { var _ = this; _.members = t0; _.isOpen = true; _.hasPendingSweep = _.isHeld = false; _.eagerWinner = null; }, _GestureArena_toString_closure: function _GestureArena_toString_closure(t0) { this.$this = t0; }, GestureArenaManager: function GestureArenaManager(t0) { this._arenas = t0; }, GestureArenaManager_add_closure: function GestureArenaManager_add_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, GestureArenaManager__tryToResolveArena_closure: function GestureArenaManager__tryToResolveArena_closure(t0, t1, t2) { this.$this = t0; this.pointer = t1; this.state = t2; }, _maxBy: function(input, keyFunc, $T) { var _maxValue_set, maxKey, _i, value, key, _box_0 = {}; _box_0._maxValue = $; _maxValue_set = new D._maxBy__maxValue_set(_box_0, $T); for (maxKey = null, _i = 0; _i < 4; ++_i) { value = input[_i]; key = keyFunc.call$1(value); if (maxKey == null || key > maxKey) { _maxValue_set.call$1(value); maxKey = key; } } return new D._maxBy__maxValue_get(_box_0, $T).call$0(); }, MaterialPointArcTween: function MaterialPointArcTween(t0, t1) { var _ = this; _._arc$_dirty = true; _._endAngle = _._beginAngle = _._radius = _._center = null; _.begin = t0; _.end = t1; }, MaterialPointArcTween__initialize_sweepAngle: function MaterialPointArcTween__initialize_sweepAngle(t0, t1) { this.$this = t0; this.distanceFromAtoB = t1; }, _CornerId: function _CornerId(t0) { this._arc$_name = t0; }, _Diagonal: function _Diagonal(t0, t1) { this.beginId = t0; this.endId = t1; }, _maxBy__maxValue_set: function _maxBy__maxValue_set(t0, t1) { this._box_0 = t0; this.T = t1; }, _maxBy__maxValue_get: function _maxBy__maxValue_get(t0, t1) { this._box_0 = t0; this.T = t1; }, MaterialRectArcTween: function MaterialRectArcTween(t0, t1) { var _ = this; _._arc$_dirty = true; _.__MaterialRectArcTween__endArc = _.__MaterialRectArcTween__beginArc = $; _.begin = t0; _.end = t1; }, MaterialRectArcTween__initialize_closure: function MaterialRectArcTween__initialize_closure(t0, t1) { this.$this = t0; this.centersVector = t1; }, BottomAppBarTheme: function BottomAppBarTheme(t0, t1, t2) { this.color = t0; this.elevation = t1; this.shape = t2; }, _BottomAppBarTheme_Object_Diagnosticable: function _BottomAppBarTheme_Object_Diagnosticable() { }, CheckboxListTile$: function(activeColor, contentPadding, controlAffinity, dense, key, onChanged, title, value) { return new D.CheckboxListTile(value, onChanged, activeColor, title, dense, controlAffinity, contentPadding, key); }, CheckboxListTile: function CheckboxListTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.title = t3; _.dense = t4; _.controlAffinity = t5; _.contentPadding = t6; _.key = t7; }, DataTableSource: function DataTableSource() { }, ElevatedButton$: function(child, onPressed, style) { return new D.ElevatedButton(onPressed, null, style, C.Clip_0, null, false, child, null); }, ElevatedButton_styleFrom: function(alignment, animationDuration, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, minimumSize, onPrimary, onSurface, padding, primary, shadowColor, shape, side, splashFactory, tapTargetSize, textStyle, visualDensity) { var t2, t3, _null = null, t1 = onSurface == null, backgroundColor = t1 && primary == null ? _null : new D._ElevatedButtonDefaultBackground(primary, onSurface), foregroundColor = t1 && onPrimary == null ? _null : new D._ElevatedButtonDefaultForeground(onPrimary, onSurface), overlayColor = onPrimary == null ? _null : new D._ElevatedButtonDefaultOverlay(onPrimary), mouseCursor = enabledMouseCursor == null && disabledMouseCursor == null ? _null : new D._ElevatedButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); t1 = shadowColor == null ? _null : new V._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t2 = padding == null ? _null : new V._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t3 = minimumSize == null ? _null : new V._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); return A.ButtonStyle$(alignment, animationDuration, backgroundColor, new D._ElevatedButtonDefaultElevation(elevation), enableFeedback, _null, foregroundColor, t3, mouseCursor, overlayColor, t2, t1, new V._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder), _null, splashFactory, tapTargetSize, new V._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_nullable_TextStyle), visualDensity); }, ElevatedButton: function ElevatedButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.style = t2; _.clipBehavior = t3; _.focusNode = t4; _.autofocus = t5; _.child = t6; _.key = t7; }, _ElevatedButtonDefaultBackground: function _ElevatedButtonDefaultBackground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _ElevatedButtonDefaultForeground: function _ElevatedButtonDefaultForeground(t0, t1) { this.onPrimary = t0; this.onSurface = t1; }, _ElevatedButtonDefaultOverlay: function _ElevatedButtonDefaultOverlay(t0) { this.onPrimary = t0; }, _ElevatedButtonDefaultElevation: function _ElevatedButtonDefaultElevation(t0) { this.elevation = t0; }, _ElevatedButtonDefaultMouseCursor: function _ElevatedButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, __ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable: function __ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable() { }, _SaltedKey: function _SaltedKey(t0, t1, t2) { this.salt = t0; this.value = t1; this.$ti = t2; }, ExpansionPanel: function ExpansionPanel(t0, t1, t2) { this.headerBuilder = t0; this.body = t1; this.isExpanded = t2; }, ExpansionPanelList: function ExpansionPanelList(t0, t1, t2) { this.children = t0; this.expansionCallback = t1; this.key = t2; }, _ExpansionPanelListState: function _ExpansionPanelListState(t0) { var _ = this; _._widget = _._currentOpenPanel = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ExpansionPanelListState_build_closure: function _ExpansionPanelListState_build_closure(t0, t1) { this.$this = t0; this.index = t1; }, Ink$: function(child, color, decoration, height) { var t1, _null = null; if (decoration == null) t1 = color != null ? new S.BoxDecoration(color, _null, _null, _null, _null, _null, C.BoxShape_0) : _null; else t1 = decoration; return new D.Ink(child, t1, height, _null); }, Ink: function Ink(t0, t1, t2, t3) { var _ = this; _.child = t0; _.decoration = t1; _.height = t2; _.key = t3; }, _InkState: function _InkState(t0, t1) { var _ = this; _._boxKey = t0; _._widget = _._ink = null; _._debugLifecycleState = t1; _._framework$_element = null; }, InkDecoration: function InkDecoration(t0, t1, t2, t3) { var _ = this; _._ink_decoration$_decoration = _._ink_decoration$_painter = null; _._ink_decoration$_configuration = t0; _._material$_controller = t1; _.referenceBox = t2; _.onRemoved = t3; _._material$_debugDisposed = false; }, NetworkImage: function NetworkImage(t0, t1) { this.url = t0; this.scale = t1; }, NetworkImage__loadAsync_closure: function NetworkImage__loadAsync_closure(t0) { this.chunkEvents = t0; }, ShaderWarmUp: function ShaderWarmUp() { }, DefaultShaderWarmUp: function DefaultShaderWarmUp() { }, FrictionSimulation: function FrictionSimulation(t0, t1, t2, t3, t4) { var _ = this; _._drag = t0; _._dragLog = t1; _._friction_simulation$_x = t2; _._v = t3; _.tolerance = t4; }, _isWhitespace: function(codeUnit) { switch (codeUnit) { case 9: case 10: case 11: case 12: case 13: case 28: case 29: case 30: case 31: case 32: case 160: case 5760: case 8192: case 8193: case 8194: case 8195: case 8196: case 8197: case 8198: case 8199: case 8200: case 8201: case 8202: case 8239: case 8287: case 12288: break; default: return false; } return true; }, RenderEditable_nextCharacter: function(index, string, includeWhitespace) { var t1 = {}, t2 = string.length; if (index === t2) return t2; t1.count = 0; return t2 - new T.StringCharacters(string).skipWhile$1(0, new D.RenderEditable_nextCharacter_closure(t1, index, includeWhitespace)).string.length; }, RenderEditable_previousCharacter: function(index, string, includeWhitespace) { var t1, t2, t3, count, lastNonWhitespace, currentString, t4, count0; if (index === 0) return 0; for (t1 = new T.StringCharacterRange(string, 0, 0), t2 = !includeWhitespace, t3 = J.getInterceptor$s(string), count = 0, lastNonWhitespace = null; t1._advanceEnd$2(1, t1._characters_impl$_end); count = count0) { currentString = t1._currentCache; if (currentString == null) currentString = t1._currentCache = t3.substring$2(string, t1._characters_impl$_start, t1._characters_impl$_end); if (t2) { t4 = currentString.length; t4 = !D._isWhitespace(C.JSString_methods._codeUnitAt$1(t4 === 0 ? H.throwExpression(P.StateError$("No element")) : C.JSString_methods.substring$2(currentString, 0, new A.Breaks(currentString, t4, 0, 176).nextBreak$0()), 0)); } else t4 = false; if (t4) lastNonWhitespace = count; count0 = count + currentString.length; if (count0 >= index) { if (includeWhitespace) t1 = count; else t1 = lastNonWhitespace == null ? 0 : lastNonWhitespace; return t1; } } return 0; }, RenderEditable__moveGivenSelectionLeft: function(selection, text) { var previousExtent = selection.start, t1 = previousExtent == selection.end; if (t1 && selection.extentOffset <= 0) return selection; return X.TextSelection$fromPosition(new P.TextPosition(selection.copyWith$1$extentOffset(!t1 ? previousExtent : D.RenderEditable_previousCharacter(selection.extentOffset, text, true)).extentOffset, C.TextAffinity_1)); }, RenderEditable__moveGivenSelectionRight: function(selection, text) { var nextSelection, newOffset, newOffset0, nextExtent = selection.end, t1 = selection.start == nextExtent; if (t1 && selection.extentOffset >= text.length) return selection; nextSelection = selection.copyWith$1$extentOffset(!t1 ? nextExtent : D.RenderEditable_nextCharacter(selection.extentOffset, text, true)); newOffset = nextSelection.baseOffset; newOffset0 = nextSelection.extentOffset; return X.TextSelection$fromPosition(new P.TextPosition(newOffset > newOffset0 ? newOffset : newOffset0, C.TextAffinity_1)); }, RenderEditable__getLeftByWord: function(textPainter, offset, includeWhitespace) { var startPoint; if (offset <= 0) return offset; if (offset === 1) return 0; startPoint = D.RenderEditable_previousCharacter(offset, textPainter._text_painter$_text.toPlainText$0(), false); return textPainter._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(startPoint, C.TextAffinity_1)).start; }, RenderEditable__getRightByWord: function(textPainter, offset, includeWhitespace) { var startPoint, text = textPainter._text_painter$_text.toPlainText$0(), t1 = text.length; if (offset === t1) return offset; if (offset === t1 - 1 || false) return t1; t1 = D._isWhitespace(C.JSString_methods.codeUnitAt$1(text, offset)); startPoint = !t1 ? offset : D.RenderEditable_nextCharacter(offset, text, false); return textPainter._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(startPoint, C.TextAffinity_1)).end; }, RenderEditable__extendGivenSelectionLeftByWord: function(textPainter, selection, includeWhitespace, stopAtReversal) { var t1, leftOffset, t2; if (selection.start == selection.end && selection.extentOffset <= 0) return selection; t1 = selection.extentOffset; leftOffset = D.RenderEditable__getLeftByWord(textPainter, t1, false); if (stopAtReversal) { t2 = selection.baseOffset; t1 = t1 > t2 && leftOffset < t2; } else t1 = false; if (t1) return selection.copyWith$1$extentOffset(selection.baseOffset); return selection.copyWith$1$extentOffset(leftOffset); }, RenderEditable__extendGivenSelectionRightByWord: function(textPainter, selection, includeWhitespace, stopAtReversal) { var t1, rightOffset, t2, text = textPainter._text_painter$_text.toPlainText$0(); if (selection.start == selection.end && selection.extentOffset === text.length) return selection; t1 = selection.extentOffset; rightOffset = D.RenderEditable__getRightByWord(textPainter, t1, false); if (stopAtReversal) { t2 = selection.baseOffset; t1 = t2 > t1 && rightOffset > t2; } else t1 = false; if (t1) return selection.copyWith$1$extentOffset(selection.baseOffset); return selection.copyWith$1$extentOffset(rightOffset); }, RenderEditable__moveGivenSelectionLeftByWord: function(textPainter, selection, includeWhitespace) { var leftOffset; if (selection.start == selection.end && selection.extentOffset <= 0) return selection; leftOffset = D.RenderEditable__getLeftByWord(textPainter, selection.extentOffset, false); return selection.copyWith$2$baseOffset$extentOffset(leftOffset, leftOffset); }, RenderEditable__moveGivenSelectionRightByWord: function(textPainter, selection, includeWhitespace) { var rightOffset, text = textPainter._text_painter$_text.toPlainText$0(); if (selection.start == selection.end && selection.extentOffset === text.length) return selection; rightOffset = D.RenderEditable__getRightByWord(textPainter, selection.extentOffset, false); return selection.copyWith$2$baseOffset$extentOffset(rightOffset, rightOffset); }, RenderEditable__extendGivenSelectionLeft: function(selection, text) { var t1 = selection.extentOffset; if (t1 <= 0) return selection; return selection.copyWith$1$extentOffset(D.RenderEditable_previousCharacter(t1, text, true)); }, RenderEditable__extendGivenSelectionRight: function(selection, text) { var t1 = selection.extentOffset; if (t1 >= text.length) return selection; return selection.copyWith$1$extentOffset(D.RenderEditable_nextCharacter(t1, text, true)); }, _RenderEditableCustomPaint$: function(painter) { var t1 = new D._RenderEditableCustomPaint(painter); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; return t1; }, _TextHighlightPainter$: function() { var t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); return new D._TextHighlightPainter(t1, C.BoxHeightStyle_0, C.BoxWidthStyle_0, new P.LinkedList(type$.LinkedList__ListenerEntry)); }, TextSelectionPoint: function TextSelectionPoint(t0, t1) { this.point = t0; this.direction = t1; }, RenderEditable: function RenderEditable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _._editable$_painter = _._editable$_foregroundPainter = _._backgroundRenderObject = _._foregroundRenderObject = null; _.__RenderEditable__caretPainter = $; _._selectionPainter = t0; _._autocorrectHighlightPainter = t1; _._lastCaretRect = _._textLayoutLastMinWidth = _._textLayoutLastMaxWidth = _._cachedBuiltInPainters = _._cachedBuiltInForegroundPainters = null; _.onCaretChanged = t2; _.ignorePointer = t3; _._devicePixelRatio = t4; _._obscuringCharacter = t5; _._obscureText = t6; _.textSelectionDelegate = t7; _._selectionStartInViewport = t8; _._selectionEndInViewport = t9; _._cursorResetLocation = -1; _._wasSelectingVerticallyWithKeyboard = false; _._cachedPlainText = null; _._textPainter = t10; _._showCursor = t11; _._hasFocus = t12; _._listenerAttached = false; _._forceLine = t13; _._readOnly = t14; _._editable$_maxLines = t15; _._minLines = t16; _._editable$_expands = t17; _._selection = t18; _._editable$_offset = t19; _._cursorWidth = t20; _._cursorHeight = t21; _._paintCursorOnTop = t22; _._editable$_startHandleLayerLink = t23; _._editable$_endHandleLayerLink = t24; _._floatingCursorOn = false; _.__RenderEditable__floatingCursorTextPosition = $; _._enableInteractiveSelection = t25; _._editable$_maxScrollExtent = 0; _._editable$_clipBehavior = t26; _._cachedChildNodes = _._editable$_semanticsInfo = null; _.__RenderEditable__longPress = _.__RenderEditable__tap = $; _._lastSecondaryTapDownPosition = _._lastTapDownPosition = null; _.__RenderEditable__caretPrototype = $; _._relativeOrigin = t27; _._previousOffset = null; _._resetOriginOnBottom = _._resetOriginOnTop = _._resetOriginOnRight = _._resetOriginOnLeft = false; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = _._editable$_clipRectLayer = _._resetFloatingCursorAnimationValue = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderEditable_nextCharacter_closure: function RenderEditable_nextCharacter_closure(t0, t1, t2) { this._box_0 = t0; this.index = t1; this.includeWhitespace = t2; }, RenderEditable_extendSelectionDown__nextSelection_set: function RenderEditable_extendSelectionDown__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionDown__nextSelection_get: function RenderEditable_extendSelectionDown__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionLeftByLine__nextSelection_set: function RenderEditable_extendSelectionLeftByLine__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionLeftByLine__nextSelection_get: function RenderEditable_extendSelectionLeftByLine__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionRightByLine__nextSelection_set: function RenderEditable_extendSelectionRightByLine__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionRightByLine__nextSelection_get: function RenderEditable_extendSelectionRightByLine__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionUp__nextSelection_set: function RenderEditable_extendSelectionUp__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_extendSelectionUp__nextSelection_get: function RenderEditable_extendSelectionUp__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_expandSelectionLeftByLine__nextSelection_set: function RenderEditable_expandSelectionLeftByLine__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_expandSelectionLeftByLine__nextSelection_get: function RenderEditable_expandSelectionLeftByLine__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_expandSelectionRightByLine__nextSelection_set: function RenderEditable_expandSelectionRightByLine__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_expandSelectionRightByLine__nextSelection_get: function RenderEditable_expandSelectionRightByLine__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_moveSelectionDown__nextSelection_set: function RenderEditable_moveSelectionDown__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_moveSelectionDown__nextSelection_get: function RenderEditable_moveSelectionDown__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_moveSelectionUp__nextSelection_set: function RenderEditable_moveSelectionUp__nextSelection_set(t0) { this._box_0 = t0; }, RenderEditable_moveSelectionUp__nextSelection_get: function RenderEditable_moveSelectionUp__nextSelection_get(t0) { this._box_0 = t0; }, RenderEditable_describeSemanticsConfiguration_closure: function RenderEditable_describeSemanticsConfiguration_closure() { }, RenderEditable_getRectForComposingRange_closure: function RenderEditable_getRectForComposingRange_closure() { }, RenderEditable_selectWordEdge__newSelection_set: function RenderEditable_selectWordEdge__newSelection_set(t0) { this._box_0 = t0; }, RenderEditable_selectWordEdge__newSelection_get: function RenderEditable_selectWordEdge__newSelection_get(t0) { this._box_0 = t0; }, _RenderEditableCustomPaint: function _RenderEditableCustomPaint(t0) { var _ = this; _._editable$_painter = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderEditablePainter: function RenderEditablePainter() { }, _TextHighlightPainter: function _TextHighlightPainter(t0, t1, t2, t3) { var _ = this; _.highlightPaint = t0; _._highlightedRange = _._highlightColor = null; _._selectionHeightStyle = t1; _._selectionWidthStyle = t2; _.ChangeNotifier__listeners = t3; }, _FloatingCursorPainter: function _FloatingCursorPainter(t0, t1, t2, t3) { var _ = this; _._shouldPaint = true; _.caretPaintCallback = t0; _.showRegularCaret = false; _.caretPaint = t1; _.___FloatingCursorPainter_floatingCursorPaint = $; _._cursorRadius = _._caretColor = null; _._cursorOffset = t2; _._floatingCursorRect = _._backgroundCursorColor = null; _.ChangeNotifier__listeners = t3; }, _CompositeRenderEditablePainter: function _CompositeRenderEditablePainter(t0, t1) { this.painters = t0; this.ChangeNotifier__listeners = t1; }, _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin: function _RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin() { }, TextEditingController$fromValue: function(value) { var t1 = value == null ? C.TextEditingValue_QOg : value; return new D.TextEditingController(t1, new P.LinkedList(type$.LinkedList__ListenerEntry)); }, EditableText$: function(autocorrect, autocorrectionTextRectColor, autofillHints, autofocus, backgroundCursorColor, controller, cursorColor, cursorHeight, cursorOffset, cursorOpacityAnimates, cursorRadius, cursorWidth, dragStartBehavior, enableInteractiveSelection, enableSuggestions, expands, focusNode, forceLine, inputFormatters, key, keyboardAppearance, keyboardType, maxLines, minLines, mouseCursor, obscureText, obscuringCharacter, onAppPrivateCommand, onChanged, onEditingComplete, onSelectionChanged, onSelectionHandleTapped, onSubmitted, paintCursorAboveText, readOnly, rendererIgnoresPointer, restorationId, scrollController, scrollPadding, scrollPhysics, selectionColor, selectionControls, selectionHeightStyle, selectionWidthStyle, showCursor, showSelectionHandles, smartDashesType, smartQuotesType, strutStyle, style, textAlign, textCapitalization, textDirection, textHeightBehavior, textInputAction, textScaleFactor, textWidthBasis, toolbarOptions) { var t1, t2, t3, t4; if (smartDashesType == null) t1 = obscureText ? C.SmartDashesType_0 : C.SmartDashesType_1; else t1 = smartDashesType; if (smartQuotesType == null) t2 = obscureText ? C.SmartQuotesType_0 : C.SmartQuotesType_1; else t2 = smartQuotesType; t3 = keyboardType == null ? D.EditableText__inferKeyboardType(autofillHints, maxLines) : keyboardType; if (maxLines === 1) { t4 = H.setRuntimeTypeInfo([$.$get$FilteringTextInputFormatter_singleLineFormatter()], type$.JSArray_TextInputFormatter); C.JSArray_methods.addAll$1(t4, inputFormatters == null ? C.C_EmptyIterable : inputFormatters); } else t4 = inputFormatters; return new D.EditableText(controller, focusNode, obscuringCharacter, obscureText, textHeightBehavior, textWidthBasis, readOnly, forceLine, toolbarOptions, showSelectionHandles, showCursor == null ? !readOnly : showCursor, autocorrect, t1, t2, true, style, strutStyle, textAlign, textDirection, textCapitalization, textScaleFactor, cursorColor, autocorrectionTextRectColor, backgroundCursorColor, maxLines, minLines, expands, autofocus, selectionColor, selectionControls, t3, textInputAction, onChanged, onEditingComplete, onSubmitted, onAppPrivateCommand, onSelectionChanged, onSelectionHandleTapped, t4, mouseCursor, true, cursorWidth, cursorHeight, cursorRadius, cursorOpacityAnimates, cursorOffset, paintCursorAboveText, selectionHeightStyle, selectionWidthStyle, keyboardAppearance, scrollPadding, true, dragStartBehavior, scrollController, scrollPhysics, autofillHints, restorationId, key); }, EditableText__inferKeyboardType: function(autofillHints, maxLines) { var effectiveHint, t1 = autofillHints == null ? null : autofillHints.length === 0; if (t1 !== false) return maxLines === 1 ? C.TextInputType_0_null_null : C.TextInputType_1_null_null; autofillHints.toString; effectiveHint = C.JSArray_methods.get$first(autofillHints); if (maxLines !== 1) return C.TextInputType_1_null_null; t1 = C.Map_iBL7U.$index(0, effectiveHint); return t1 == null ? C.TextInputType_0_null_null : t1; }, TextEditingController: function TextEditingController(t0, t1) { this._change_notifier$_value = t0; this.ChangeNotifier__listeners = t1; }, ToolbarOptions: function ToolbarOptions(t0, t1, t2) { this.copy = t0; this.cut = t1; this.paste = t2; }, EditableText: function EditableText(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57) { var _ = this; _.controller = t0; _.focusNode = t1; _.obscuringCharacter = t2; _.obscureText = t3; _.textHeightBehavior = t4; _.textWidthBasis = t5; _.readOnly = t6; _.forceLine = t7; _.toolbarOptions = t8; _.showSelectionHandles = t9; _.showCursor = t10; _.autocorrect = t11; _.smartDashesType = t12; _.smartQuotesType = t13; _.enableSuggestions = t14; _.style = t15; _._editable_text$_strutStyle = t16; _.textAlign = t17; _.textDirection = t18; _.textCapitalization = t19; _.textScaleFactor = t20; _.cursorColor = t21; _.autocorrectionTextRectColor = t22; _.backgroundCursorColor = t23; _.maxLines = t24; _.minLines = t25; _.expands = t26; _.autofocus = t27; _.selectionColor = t28; _.selectionControls = t29; _.keyboardType = t30; _.textInputAction = t31; _.onChanged = t32; _.onEditingComplete = t33; _.onSubmitted = t34; _.onAppPrivateCommand = t35; _.onSelectionChanged = t36; _.onSelectionHandleTapped = t37; _.inputFormatters = t38; _.mouseCursor = t39; _.rendererIgnoresPointer = t40; _.cursorWidth = t41; _.cursorHeight = t42; _.cursorRadius = t43; _.cursorOpacityAnimates = t44; _.cursorOffset = t45; _.paintCursorAboveText = t46; _.selectionHeightStyle = t47; _.selectionWidthStyle = t48; _.keyboardAppearance = t49; _.scrollPadding = t50; _.enableInteractiveSelection = t51; _.dragStartBehavior = t52; _.scrollController = t53; _.scrollPhysics = t54; _.autofillHints = t55; _.restorationId = t56; _.key = t57; }, EditableTextState: function EditableTextState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._cursorTimer = null; _._targetCursorVisibility = false; _._cursorVisibilityNotifier = t0; _._editableKey = t1; _._scrollController = _._selectionOverlay = _._textInputConnection = null; _.__EditableTextState__cursorBlinkOpacityController = $; _._toolbarLayerLink = t2; _._startHandleLayerLink = t3; _._endHandleLayerLink = t4; _._didAutoFocus = false; _._currentAutofillScope = _._editable_text$_focusAttachment = null; _._isInAutofillContext = false; _.__EditableTextState__floatingCursorResetController = $; _._lastBoundedOffset = _._pointOffsetOrigin = _._lastTextPosition = _._startCaretRect = _._lastKnownRemoteTextEditingValue = null; _._batchEditDepth = 0; _._currentCaretRect = null; _._showCaretOnScreenScheduled = false; _.__EditableTextState__lastBottomViewInset = $; _._obscureShowCharTicksPending = 0; _._currentPromptRectRange = _._obscureLatestCharIndex = null; _.TickerProviderStateMixin__tickers = t5; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, EditableTextState_initState_closure: function EditableTextState_initState_closure(t0) { this.$this = t0; }, EditableTextState_didChangeDependencies_closure: function EditableTextState_didChangeDependencies_closure(t0) { this.$this = t0; }, EditableTextState__scheduleShowCaretOnScreen_closure: function EditableTextState__scheduleShowCaretOnScreen_closure(t0) { this.$this = t0; }, EditableTextState__formatAndSetValue_closure: function EditableTextState__formatAndSetValue_closure(t0) { this.$this = t0; }, EditableTextState__cursorTick_closure: function EditableTextState__cursorTick_closure(t0) { this.$this = t0; }, EditableTextState__didChangeTextEditingValue_closure: function EditableTextState__didChangeTextEditingValue_closure() { }, EditableTextState__updateSizeAndTransform_closure: function EditableTextState__updateSizeAndTransform_closure(t0) { this.$this = t0; }, EditableTextState__updateComposingRectIfNeeded_closure: function EditableTextState__updateComposingRectIfNeeded_closure(t0) { this.$this = t0; }, EditableTextState__updateCaretRectIfNeeded_closure: function EditableTextState__updateCaretRectIfNeeded_closure(t0) { this.$this = t0; }, EditableTextState_showAutocorrectionPromptRect_closure: function EditableTextState_showAutocorrectionPromptRect_closure(t0, t1, t2) { this.$this = t0; this.start = t1; this.end = t2; }, EditableTextState__semanticsOnCopy_closure: function EditableTextState__semanticsOnCopy_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState__semanticsOnCut_closure: function EditableTextState__semanticsOnCut_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState__semanticsOnPaste_closure: function EditableTextState__semanticsOnPaste_closure(t0, t1) { this.$this = t0; this.controls = t1; }, EditableTextState_build_closure: function EditableTextState_build_closure(t0, t1) { this.$this = t0; this.controls = t1; }, _Editable: function _Editable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39) { var _ = this; _.textSpan = t0; _.value = t1; _.cursorColor = t2; _.startHandleLayerLink = t3; _.endHandleLayerLink = t4; _.backgroundCursorColor = t5; _.showCursor = t6; _.forceLine = t7; _.readOnly = t8; _.hasFocus = t9; _.maxLines = t10; _.minLines = t11; _.expands = t12; _.strutStyle = t13; _.selectionColor = t14; _.textScaleFactor = t15; _.textAlign = t16; _.textDirection = t17; _.locale = t18; _.obscuringCharacter = t19; _.obscureText = t20; _.textHeightBehavior = t21; _.textWidthBasis = t22; _.offset = t23; _.onCaretChanged = t24; _.rendererIgnoresPointer = t25; _.cursorWidth = t26; _.cursorHeight = t27; _.cursorRadius = t28; _.cursorOffset = t29; _.paintCursorAboveText = t30; _.selectionHeightStyle = t31; _.selectionWidthStyle = t32; _.enableInteractiveSelection = t33; _.textSelectionDelegate = t34; _.devicePixelRatio = t35; _.promptRectRange = t36; _.promptRectColor = t37; _.clipBehavior = t38; _.key = t39; }, _EditableTextState_State_AutomaticKeepAliveClientMixin: function _EditableTextState_State_AutomaticKeepAliveClientMixin() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin() { }, _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate: function _EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate() { }, GestureDetector$: function(behavior, child, dragStartBehavior, excludeFromSemantics, key, onDoubleTap, onHorizontalDragCancel, onHorizontalDragDown, onHorizontalDragEnd, onHorizontalDragStart, onHorizontalDragUpdate, onLongPress, onPanDown, onPanEnd, onPanStart, onPanUpdate, onScaleEnd, onScaleStart, onScaleUpdate, onTap, onTapCancel, onTapDown, onTapUp, onVerticalDragEnd, onVerticalDragStart, onVerticalDragUpdate) { return new D.GestureDetector(child, onTapDown, onTapUp, onTap, onTapCancel, onDoubleTap, onLongPress, onVerticalDragStart, onVerticalDragUpdate, onVerticalDragEnd, onHorizontalDragDown, onHorizontalDragStart, onHorizontalDragUpdate, onHorizontalDragEnd, onHorizontalDragCancel, onPanDown, onPanStart, onPanUpdate, onPanEnd, onScaleStart, onScaleUpdate, onScaleEnd, behavior, excludeFromSemantics, dragStartBehavior, key); }, GestureRecognizerFactory: function GestureRecognizerFactory() { }, GestureRecognizerFactoryWithHandlers: function GestureRecognizerFactoryWithHandlers(t0, t1, t2) { this._constructor = t0; this._initializer = t1; this.$ti = t2; }, GestureDetector: function GestureDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.child = t0; _.onTapDown = t1; _.onTapUp = t2; _.onTap = t3; _.onTapCancel = t4; _.onDoubleTap = t5; _.onLongPress = t6; _.onVerticalDragStart = t7; _.onVerticalDragUpdate = t8; _.onVerticalDragEnd = t9; _.onHorizontalDragDown = t10; _.onHorizontalDragStart = t11; _.onHorizontalDragUpdate = t12; _.onHorizontalDragEnd = t13; _.onHorizontalDragCancel = t14; _.onPanDown = t15; _.onPanStart = t16; _.onPanUpdate = t17; _.onPanEnd = t18; _.onScaleStart = t19; _.onScaleUpdate = t20; _.onScaleEnd = t21; _.behavior = t22; _.excludeFromSemantics = t23; _.dragStartBehavior = t24; _.key = t25; }, GestureDetector_build_closure: function GestureDetector_build_closure(t0) { this.$this = t0; }, GestureDetector_build_closure0: function GestureDetector_build_closure0(t0) { this.$this = t0; }, GestureDetector_build_closure1: function GestureDetector_build_closure1(t0) { this.$this = t0; }, GestureDetector_build_closure2: function GestureDetector_build_closure2(t0) { this.$this = t0; }, GestureDetector_build_closure3: function GestureDetector_build_closure3(t0) { this.$this = t0; }, GestureDetector_build_closure4: function GestureDetector_build_closure4(t0) { this.$this = t0; }, GestureDetector_build_closure5: function GestureDetector_build_closure5(t0) { this.$this = t0; }, GestureDetector_build_closure6: function GestureDetector_build_closure6(t0) { this.$this = t0; }, GestureDetector_build_closure7: function GestureDetector_build_closure7(t0) { this.$this = t0; }, GestureDetector_build_closure8: function GestureDetector_build_closure8(t0) { this.$this = t0; }, GestureDetector_build_closure9: function GestureDetector_build_closure9(t0) { this.$this = t0; }, GestureDetector_build_closure10: function GestureDetector_build_closure10(t0) { this.$this = t0; }, GestureDetector_build_closure11: function GestureDetector_build_closure11(t0) { this.$this = t0; }, GestureDetector_build_closure12: function GestureDetector_build_closure12(t0) { this.$this = t0; }, RawGestureDetector: function RawGestureDetector(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.gestures = t1; _.behavior = t2; _.excludeFromSemantics = t3; _.semantics = t4; _.key = t5; }, RawGestureDetectorState: function RawGestureDetectorState(t0, t1) { var _ = this; _._recognizers = t0; _._widget = _._gesture_detector$_semantics = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GestureSemantics: function _GestureSemantics(t0, t1, t2, t3) { var _ = this; _.behavior = t0; _.assignSemantics = t1; _.child = t2; _.key = t3; }, SemanticsGestureDelegate: function SemanticsGestureDelegate() { }, _DefaultSemanticsGestureDelegate: function _DefaultSemanticsGestureDelegate(t0) { this.detectorState = t0; }, _DefaultSemanticsGestureDelegate__getTapHandler_closure: function _DefaultSemanticsGestureDelegate__getTapHandler_closure(t0) { this.tap = t0; }, _DefaultSemanticsGestureDelegate__getLongPressHandler_closure: function _DefaultSemanticsGestureDelegate__getLongPressHandler_closure(t0) { this.longPress = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure(t0) { this.horizontal = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0(t0) { this.pan = t0; }, _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1: function _DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1(t0, t1) { this.horizontalHandler = t0; this.panHandler = t1; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure(t0) { this.vertical = t0; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0(t0) { this.pan = t0; }, _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1: function _DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1(t0, t1) { this.verticalHandler = t0; this.panHandler = t1; }, PageController$: function(initialPage, viewportFraction) { return new D.PageController(initialPage, viewportFraction, 0, null, H.setRuntimeTypeInfo([], type$.JSArray_ScrollPosition), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, PageView$builder: function(controller, itemBuilder, itemCount, key, onPageChanged, physics, reverse, scrollDirection) { var t1 = controller == null ? $.$get$_defaultPageController() : controller; return new D.PageView(scrollDirection, false, t1, physics, onPageChanged, new G.SliverChildBuilderDelegate(itemBuilder, itemCount, true, true, true, G.sliver___kDefaultSemanticIndexCallback$closure()), C.DragStartBehavior_1, key); }, PageController: function PageController(t0, t1, t2, t3, t4, t5) { var _ = this; _.initialPage = t0; _.viewportFraction = t1; _._initialScrollOffset = t2; _.debugLabel = t3; _._positions = t4; _.ChangeNotifier__listeners = t5; }, PageMetrics: function PageMetrics(t0, t1, t2, t3, t4, t5) { var _ = this; _.viewportFraction = t0; _._scroll_metrics$_minScrollExtent = t1; _._scroll_metrics$_maxScrollExtent = t2; _._scroll_metrics$_pixels = t3; _._scroll_metrics$_viewportDimension = t4; _.axisDirection = t5; }, _PagePosition: function _PagePosition(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._pageToUseOnStartup = t0; _._viewportFraction = t1; _._heldPreviousVelocity = 0; _._userScrollDirection = t2; _._currentDrag = null; _.physics = t3; _.context = t4; _.keepScrollOffset = t5; _.debugLabel = t6; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._semanticActions = _._scroll_position$_lastMetrics = null; _.isScrollingNotifier = t7; _._activity = null; _.ChangeNotifier__listeners = t8; }, _ForceImplicitScrollPhysics: function _ForceImplicitScrollPhysics(t0, t1) { this.allowImplicitScrolling = t0; this.parent = t1; }, PageScrollPhysics: function PageScrollPhysics(t0) { this.parent = t0; }, PageView: function PageView(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.scrollDirection = t0; _.reverse = t1; _.controller = t2; _.physics = t3; _.onPageChanged = t4; _.childrenDelegate = t5; _.dragStartBehavior = t6; _.key = t7; }, _PageViewState: function _PageViewState(t0) { var _ = this; _._lastReportedPage = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PageViewState_build_closure0: function _PageViewState_build_closure0(t0) { this.$this = t0; }, _PageViewState_build_closure: function _PageViewState_build_closure(t0, t1) { this.$this = t0; this.axisDirection = t1; }, DefaultCacheManager: function DefaultCacheManager(t0, t1, t2) { var _ = this; _.ImageCacheManager__runningResizes = t0; _._cache_manager$_config = t1; _._cache_manager$_store = t2; _.__CacheManager__webHelper = $; }, _DefaultCacheManager_CacheManager_ImageCacheManager: function _DefaultCacheManager_CacheManager_ImageCacheManager() { }, CacheStore$: function(config) { var t1 = type$.String, t2 = Date.now(); return new D.CacheStore(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_nullable_CacheObject), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.CacheObject), config.fileSystem, config, config.repo.open$0(0).then$1$1(0, new D.CacheStore_closure(config), type$.CacheInfoRepository), new P.DateTime(t2, false)); }, CacheStore: function CacheStore(t0, t1, t2, t3, t4, t5) { var _ = this; _._futureCache = t0; _._cache_store$_memCache = t1; _.fileSystem = t2; _._cache_store$_config = t3; _._cacheInfoRepository = t4; _.lastCleanupRun = t5; _._scheduledCleanup = null; }, CacheStore_closure: function CacheStore_closure(t0) { this.config = t0; }, CacheStore_retrieveCacheData_closure: function CacheStore_retrieveCacheData_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.completer = t2; }, CacheStore__scheduleCleanup_closure: function CacheStore__scheduleCleanup_closure(t0) { this.$this = t0; }, DownloadProgress: function DownloadProgress(t0, t1) { this.totalSize = t0; this.downloaded = t1; }, Registrar: function Registrar() { }, Registrar_send_closure: function Registrar_send_closure(t0) { this.completer = t0; }, PluginRegistry: function PluginRegistry(t0) { this._handlers = t0; }, MultipartRequest$: function(method, url) { var t1 = type$.String, t2 = H.setRuntimeTypeInfo([], type$.JSArray_MultipartFile), t3 = $.$get$BaseRequest__tokenRE()._nativeRegExp; if (!t3.test(method)) H.throwExpression(P.ArgumentError$value(method, "method", "Not a valid method")); return new D.MultipartRequest(P.LinkedHashMap_LinkedHashMap$_empty(t1, t1), t2, method, url, P.LinkedHashMap_LinkedHashMap(new G.BaseRequest_closure(), new G.BaseRequest_closure0(), t1, t1)); }, MultipartRequest: function MultipartRequest(t0, t1, t2, t3, t4) { var _ = this; _.fields = t0; _.files = t1; _.method = t2; _.url = t3; _.headers = t4; _._finalized = false; }, CreditListResponse: function CreditListResponse() { }, CreditItemResponse: function CreditItemResponse() { }, _$CreditListResponseSerializer: function _$CreditListResponseSerializer() { }, _$CreditItemResponseSerializer: function _$CreditItemResponseSerializer() { }, _$CreditListResponse: function _$CreditListResponse(t0) { this.data = t0; this._credit_model$__hashCode = null; }, CreditListResponseBuilder: function CreditListResponseBuilder() { this._credit_model$_data = this._credit_model$_$v = null; }, _$CreditItemResponse: function _$CreditItemResponse(t0) { this.data = t0; this._credit_model$__hashCode = null; }, CreditItemResponseBuilder: function CreditItemResponseBuilder() { this._credit_model$_data = this._credit_model$_$v = null; }, DesignEntity_DesignEntity: function(design, id, state) { var t1, t2, t3, designMap; if (design == null && state != null) { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); designMap = t3.$index(t1, t2).designState.map; t2 = t3.$index(t1, t2).userCompany.company.settings.defaultInvoiceDesignId; t2 = J.$index$asx(designMap._map$_map, t2); design = t2 == null ? null : t2.design; } if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; if (design == null) { t2 = type$.legacy_String; t2 = A.BuiltMap_BuiltMap(P.LinkedHashMap_LinkedHashMap$_literal(["header", "", "body", "", "footer", "", "product", "", "task", "", "includes", ""], t2, t2), t2, t2); } else t2 = design; return D._$DesignEntity$_(0, null, 0, null, t2, t1, false, true, false, true, "", 0); }, _$DesignPreviewRequest$_: function(design, entityId, entityType) { if (design == null) H.throwExpression(Y.BuiltValueNullFieldError$("DesignPreviewRequest", "design")); return new D._$DesignPreviewRequest(entityType, entityId, design); }, _$DesignEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, design, id, isChanged, isCustom, isDeleted, isFree, $name, updatedAt) { if (design == null) H.throwExpression(Y.BuiltValueNullFieldError$("DesignEntity", "design")); return new D._$DesignEntity($name, design, isCustom, isFree, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, DesignListResponse: function DesignListResponse() { }, DesignItemResponse: function DesignItemResponse() { }, DesignPreviewRequest: function DesignPreviewRequest() { }, DesignEntity: function DesignEntity() { }, DesignEntity_clone_closure: function DesignEntity_clone_closure() { }, _$DesignListResponseSerializer: function _$DesignListResponseSerializer() { }, _$DesignItemResponseSerializer: function _$DesignItemResponseSerializer() { }, _$DesignPreviewRequestSerializer: function _$DesignPreviewRequestSerializer() { }, _$DesignEntitySerializer: function _$DesignEntitySerializer() { }, _$DesignListResponse: function _$DesignListResponse(t0) { this.data = t0; this._design_model$__hashCode = null; }, DesignListResponseBuilder: function DesignListResponseBuilder() { this._design_model$_data = this._design_model$_$v = null; }, _$DesignItemResponse: function _$DesignItemResponse(t0) { this.data = t0; this._design_model$__hashCode = null; }, DesignItemResponseBuilder: function DesignItemResponseBuilder() { this._design_model$_data = this._design_model$_$v = null; }, _$DesignPreviewRequest: function _$DesignPreviewRequest(t0, t1, t2) { var _ = this; _.entityType = t0; _.entityId = t1; _.design = t2; _._design_model$__hashCode = null; }, DesignPreviewRequestBuilder: function DesignPreviewRequestBuilder() { var _ = this; _._design = _._entityId = _._design_model$_entityType = _._design_model$_$v = null; }, _$DesignEntity: function _$DesignEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.name = t0; _.design = t1; _.isCustom = t2; _.isFree = t3; _.isChanged = t4; _.createdAt = t5; _.updatedAt = t6; _.archivedAt = t7; _.isDeleted = t8; _.createdUserId = t9; _.assignedUserId = t10; _.id = t11; _._design_model$__hashCode = null; }, DesignEntityBuilder: function DesignEntityBuilder() { var _ = this; _._design_model$_id = _._design_model$_assignedUserId = _._design_model$_createdUserId = _._design_model$_isDeleted = _._design_model$_archivedAt = _._design_model$_updatedAt = _._design_model$_createdAt = _._design_model$_isChanged = _._isFree = _._isCustom = _._design = _._design_model$_name = _._design_model$_$v = null; }, _DesignEntity_Object_BaseEntity: function _DesignEntity_Object_BaseEntity() { }, DocumentEntity_DocumentEntity: function(id) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return D._$DocumentEntity$_(0, "", 0, "", "", 0, t1, false, false, false, "", "", 0, "", 0, "", 0); }, _$DocumentEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, hash, height, id, isChanged, isDefault, isDeleted, $name, preview, size, type, updatedAt, url, width) { return new D._$DocumentEntity($name, hash, type, url, width, height, size, preview, isDefault, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, DocumentListResponse: function DocumentListResponse() { }, DocumentItemResponse: function DocumentItemResponse() { }, DocumentEntity: function DocumentEntity() { }, _$DocumentListResponseSerializer: function _$DocumentListResponseSerializer() { }, _$DocumentItemResponseSerializer: function _$DocumentItemResponseSerializer() { }, _$DocumentEntitySerializer: function _$DocumentEntitySerializer() { }, _$DocumentListResponse: function _$DocumentListResponse(t0) { this.data = t0; this._document_model$__hashCode = null; }, DocumentListResponseBuilder: function DocumentListResponseBuilder() { this._document_model$_data = this._document_model$_$v = null; }, _$DocumentItemResponse: function _$DocumentItemResponse(t0) { this.data = t0; this._document_model$__hashCode = null; }, DocumentItemResponseBuilder: function DocumentItemResponseBuilder() { this._document_model$_data = this._document_model$_$v = null; }, _$DocumentEntity: function _$DocumentEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.name = t0; _.hash = t1; _.type = t2; _.url = t3; _.width = t4; _.height = t5; _.size = t6; _.preview = t7; _.isDefault = t8; _.isChanged = t9; _.createdAt = t10; _.updatedAt = t11; _.archivedAt = t12; _.isDeleted = t13; _.createdUserId = t14; _.assignedUserId = t15; _.id = t16; _._document_model$__hashCode = null; }, DocumentEntityBuilder: function DocumentEntityBuilder() { var _ = this; _._document_model$_id = _._document_model$_assignedUserId = _._document_model$_createdUserId = _._document_model$_isDeleted = _._document_model$_archivedAt = _._document_model$_updatedAt = _._document_model$_createdAt = _._document_model$_isChanged = _._isDefault = _._preview = _._size = _._document_model$_height = _._document_model$_width = _._url = _._type = _._hash = _._document_model$_name = _._document_model$_$v = null; }, _DocumentEntity_Object_BaseEntity: function _DocumentEntity_Object_BaseEntity() { }, _DocumentEntity_Object_BaseEntity_SelectableEntity: function _DocumentEntity_Object_BaseEntity_SelectableEntity() { }, EntityAction_emailEntityType: function(entityType) { switch (entityType) { case C.EntityType_invoice: return C.EntityAction_emailInvoice; case C.EntityType_quote: return C.EntityAction_emailQuote; case C.EntityType_credit: return C.EntityAction_emailCredit; default: return null; } }, EntityAction_newEntityType: function(entityType) { switch (entityType) { case C.EntityType_client: return C.EntityAction_newClient; case C.EntityType_invoice: return C.EntityAction_newInvoice; case C.EntityType_recurringInvoice: return C.EntityAction_newRecurringInvoice; case C.EntityType_quote: return C.EntityAction_newQuote; case C.EntityType_credit: return C.EntityAction_newCredit; case C.EntityType_payment: return C.EntityAction_newPayment; case C.EntityType_expense: return C.EntityAction_newExpense; case C.EntityType_recurringExpense: return C.EntityAction_newRecurringExpense; case C.EntityType_project: return C.EntityAction_newProject; case C.EntityType_task: return C.EntityAction_newTask; case C.EntityType_vendor: return C.EntityAction_newVendor; default: P.print("ERROR: entityType " + H.S(entityType) + " not defined in EntityAction.newEntityType"); return null; } }, EntityAction: function EntityAction(t0) { this.name = t0; }, SizeListResponse: function SizeListResponse() { }, SizeItemResponse: function SizeItemResponse() { }, SizeEntity: function SizeEntity() { }, _$SizeListResponseSerializer: function _$SizeListResponseSerializer() { }, _$SizeItemResponseSerializer: function _$SizeItemResponseSerializer() { }, _$SizeEntitySerializer: function _$SizeEntitySerializer() { }, _$SizeListResponse: function _$SizeListResponse(t0) { this.data = t0; this._size_model$__hashCode = null; }, SizeListResponseBuilder: function SizeListResponseBuilder() { this._size_model$_data = this._size_model$_$v = null; }, _$SizeItemResponse: function _$SizeItemResponse(t0) { this.data = t0; this._size_model$__hashCode = null; }, SizeItemResponseBuilder: function SizeItemResponseBuilder() { this._size_model$_data = this._size_model$_$v = null; }, _$SizeEntity: function _$SizeEntity(t0, t1) { this.name = t0; this.id = t1; this._size_model$__hashCode = null; }, SizeEntityBuilder: function SizeEntityBuilder() { this._size_model$_id = this._size_model$_name = this._size_model$_$v = null; }, _SizeEntity_Object_SelectableEntity: function _SizeEntity_Object_SelectableEntity() { }, TaskTime_TaskTime: function(endDate, startDate) { return new D._$TaskTime(startDate == null ? P.DateTime$fromMillisecondsSinceEpoch(C.JSNumber_methods.floor$0(Date.now() / 1000) * 1000, true) : startDate, endDate); }, TaskEntity_TaskEntity: function(client, id, project, state, user) { var t2, t3, t4, t5, t6, t7, t8, t9, _null = null, t1 = state == null; if (t1) t2 = _null; else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany.company; t2 = t3; } t2 = t2 == null ? _null : t2.autoStartTasks; if (id == null) { t3 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t3; t3 = "" + t3; } else t3 = id; t4 = project == null; t5 = t4 ? _null : project.clientId; if (t5 == null) t5 = client == null ? _null : client.id; if (t5 == null) t5 = ""; t4 = t4 ? _null : project.id; if (t4 == null) t4 = ""; t2 = t2 === true ? "[[" + C.JSNumber_methods.floor$0(Date.now() / 1000) + ",0]]" : "[]"; t6 = user == null ? _null : user.id; if (t6 == null) t6 = ""; if (t1) t7 = _null; else { t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; t8 = J.$index$asx(t7._list, t8).taskStatusState; t7 = t8; } t7 = t7 == null ? _null : t7.map; t7 = U.defaultTaskStatusId(t7 == null ? A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_TaskStatusEntity) : t7); t8 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity); if (t1) t1 = _null; else { t1 = state.userCompanyStates; t9 = state.uiState.selectedCompanyIndex; t9 = J.$index$asx(t1._list, t9).userCompany.company; t1 = t9; } t1 = t1 == null ? _null : t1.autoStartTasks; return D._$TaskEntity$_(0, t6, t5, 0, "", "", "", "", "", "", t8, 0, t3, "", false, false, "", t4, 0, t1 === true, t7, _null, t2, 0); }, _$TaskEntity$_: function(archivedAt, assignedUserId, clientId, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, description, documents, duration, id, invoiceId, isChanged, isDeleted, number, projectId, rate, showAsRunning, statusId, statusOrder, timeLog, updatedAt) { var _s10_ = "TaskEntity"; if (statusId == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "statusId")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "documents")); return new D._$TaskEntity(description, number, duration, invoiceId, clientId, rate, projectId, timeLog, customValue1, customValue2, customValue3, customValue4, statusId, statusOrder, documents, showAsRunning, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaskListResponse: function TaskListResponse() { }, TaskItemResponse: function TaskItemResponse() { }, TaskTime: function TaskTime() { }, TaskTime_stop_closure: function TaskTime_stop_closure() { }, TaskEntity: function TaskEntity() { }, TaskEntity_clone_closure: function TaskEntity_clone_closure() { }, TaskEntity_areTimesValid_closure: function TaskEntity_areTimesValid_closure(t0) { this._box_0 = t0; }, TaskEntity_isRunning_closure: function TaskEntity_isRunning_closure() { }, TaskEntity_getTaskTimes_closure: function TaskEntity_getTaskTimes_closure(t0) { this.details = t0; }, TaskEntity_getTaskTimes_closure0: function TaskEntity_getTaskTimes_closure0() { }, TaskEntity_addTaskTime_closure: function TaskEntity_addTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_updateTaskTime_closure: function TaskEntity_updateTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_deleteTaskTime_closure: function TaskEntity_deleteTaskTime_closure(t0) { this.taskTimes = t0; }, TaskEntity_calculateDuration_closure: function TaskEntity_calculateDuration_closure(t0, t1) { this._box_0 = t0; this.includeRunning = t1; }, _$TaskListResponseSerializer: function _$TaskListResponseSerializer() { }, _$TaskItemResponseSerializer: function _$TaskItemResponseSerializer() { }, _$TaskEntitySerializer: function _$TaskEntitySerializer() { }, _$TaskListResponse: function _$TaskListResponse(t0) { this.data = t0; this._task_model$__hashCode = null; }, TaskListResponseBuilder: function TaskListResponseBuilder() { this._task_model$_data = this._task_model$_$v = null; }, _$TaskItemResponse: function _$TaskItemResponse(t0) { this.data = t0; this._task_model$__hashCode = null; }, TaskItemResponseBuilder: function TaskItemResponseBuilder() { this._task_model$_data = this._task_model$_$v = null; }, _$TaskTime: function _$TaskTime(t0, t1) { this.startDate = t0; this.endDate = t1; this._task_model$__hashCode = null; }, TaskTimeBuilder: function TaskTimeBuilder() { this._endDate = this._startDate = this._task_model$_$v = null; }, _$TaskEntity: function _$TaskEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.description = t0; _.number = t1; _.duration = t2; _.invoiceId = t3; _.clientId = t4; _.rate = t5; _.projectId = t6; _.timeLog = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.statusId = t12; _.statusOrder = t13; _.documents = t14; _.showAsRunning = t15; _.isChanged = t16; _.createdAt = t17; _.updatedAt = t18; _.archivedAt = t19; _.isDeleted = t20; _.createdUserId = t21; _.assignedUserId = t22; _.id = t23; _._task_model$__hashCode = null; }, TaskEntityBuilder: function TaskEntityBuilder() { var _ = this; _._task_model$_id = _._task_model$_assignedUserId = _._task_model$_createdUserId = _._task_model$_isDeleted = _._task_model$_archivedAt = _._task_model$_updatedAt = _._task_model$_createdAt = _._task_model$_isChanged = _._showAsRunning = _._task_model$_documents = _._statusOrder = _._task_model$_statusId = _._task_model$_customValue4 = _._task_model$_customValue3 = _._task_model$_customValue2 = _._task_model$_customValue1 = _._timeLog = _._task_model$_projectId = _._rate = _._task_model$_clientId = _._task_model$_invoiceId = _._task_model$_duration = _._task_model$_number = _._task_model$_description = _._task_model$_$v = null; }, _TaskEntity_Object_BaseEntity: function _TaskEntity_Object_BaseEntity() { }, _TaskEntity_Object_BaseEntity_SelectableEntity: function _TaskEntity_Object_BaseEntity_SelectableEntity() { }, _TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, TokenEntity_TokenEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return D._$TokenEntity$_(0, "", 0, "", t1, false, false, false, "", "", 0); }, TokenEntity_unobscureToken: function(value) { if (value == null || value.length === 0) return null; return C.C_Utf8Codec.decode$1(0, C.C_Base64Decoder.convert$1(value)); }, _$TokenEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, isSystem, $name, token, updatedAt) { return new D._$TokenEntity(isSystem, token, $name, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TokenListResponse: function TokenListResponse() { }, TokenItemResponse: function TokenItemResponse() { }, TokenEntity: function TokenEntity() { }, _$TokenListResponseSerializer: function _$TokenListResponseSerializer() { }, _$TokenItemResponseSerializer: function _$TokenItemResponseSerializer() { }, _$TokenEntitySerializer: function _$TokenEntitySerializer() { }, _$TokenListResponse: function _$TokenListResponse(t0) { this.data = t0; this._token_model$__hashCode = null; }, TokenListResponseBuilder: function TokenListResponseBuilder() { this._token_model$_data = this._token_model$_$v = null; }, _$TokenItemResponse: function _$TokenItemResponse(t0) { this.data = t0; this._token_model$__hashCode = null; }, TokenItemResponseBuilder: function TokenItemResponseBuilder() { this._token_model$_data = this._token_model$_$v = null; }, _$TokenEntity: function _$TokenEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.isSystem = t0; _.token = t1; _.name = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._token_model$__hashCode = null; }, TokenEntityBuilder: function TokenEntityBuilder() { var _ = this; _._token_model$_id = _._token_model$_assignedUserId = _._token_model$_createdUserId = _._token_model$_isDeleted = _._token_model$_archivedAt = _._token_model$_updatedAt = _._token_model$_createdAt = _._token_model$_isChanged = _._token_model$_name = _._token_model$_token = _._isSystem = _._token_model$_$v = null; }, _TokenEntity_Object_BaseEntity: function _TokenEntity_Object_BaseEntity() { }, _TokenEntity_Object_BaseEntity_SelectableEntity: function _TokenEntity_Object_BaseEntity_SelectableEntity() { }, dashboardUIReducer: function(state, action) { var t1; state.toString; t1 = new Y.DashboardUIStateBuilder(); t1._dashboard_state$_$v = state; new D.dashboardUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, dashboardSettingsReducer: function(state, action) { var settings; if (action instanceof G.UpdateDashboardSettings) { settings = action.settings; if (settings != null) return state.rebuild$1(new D.dashboardSettingsReducer_closure(settings)); else if (action.includeTaxes != null) return state.rebuild$1(new D.dashboardSettingsReducer_closure0(action)); else if (action.offset != null) return state.rebuild$1(new D.dashboardSettingsReducer_closure1(action)); else if (action.currencyId != null) return state.rebuild$1(new D.dashboardSettingsReducer_closure2(action)); } else if (action instanceof E.SelectCompany) return state; return state; }, dashboardUIReducer_closure: function dashboardUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, selectedEntitiesReducer_closure: function selectedEntitiesReducer_closure() { }, selectedEntitiesReducer__closure0: function selectedEntitiesReducer__closure0(t0) { this.action = t0; }, selectedEntitiesReducer_closure0: function selectedEntitiesReducer_closure0() { }, selectedEntitiesReducer__closure: function selectedEntitiesReducer__closure() { }, selectedEntityTypeReducer_closure: function selectedEntityTypeReducer_closure() { }, showSidebarReducer_closure: function showSidebarReducer_closure() { }, dashboardSettingsReducer_closure: function dashboardSettingsReducer_closure(t0) { this.settings = t0; }, dashboardSettingsReducer_closure0: function dashboardSettingsReducer_closure0(t0) { this.action = t0; }, dashboardSettingsReducer_closure1: function dashboardSettingsReducer_closure1(t0) { this.action = t0; }, dashboardSettingsReducer_closure2: function dashboardSettingsReducer_closure2(t0) { this.action = t0; }, invoiceUIReducer: function(state, action) { var t1; state.toString; t1 = new B.InvoiceUIStateBuilder(); t1._invoice_state$_$v = state; new D.invoiceUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing5: function(invoice, action) { var _null = null; return Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); }, _updateEditing6: function(invoice, action) { return action.get$invoice(); }, _addInvoiceItem: function(invoice, action) { var item = action.invoiceItem; return invoice.rebuild$1(new D._addInvoiceItem_closure(item)); }, _addInvoiceItems: function(invoice, action) { return invoice.rebuild$1(new D._addInvoiceItems_closure(action)); }, _removeInvoiceItem: function(invoice, action) { if (J.get$length$asx(invoice.lineItems._list) <= action.index) return invoice; return invoice.rebuild$1(new D._removeInvoiceItem_closure(action)); }, _updateInvoiceItem: function(invoice, action) { if (J.get$length$asx(invoice.lineItems._list) <= action.index) return invoice; return invoice.rebuild$1(new D._updateInvoiceItem_closure(action)); }, _viewInvoiceList0: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._viewInvoiceList_closure()); }, _filterInvoicesByCustom1: function(invoiceListState, action) { var t1 = invoiceListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByCustom1_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByCustom1_closure0(action)); }, _filterInvoicesByCustom2: function(invoiceListState, action) { var t1 = invoiceListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByCustom2_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByCustom2_closure0(action)); }, _filterInvoicesByCustom3: function(invoiceListState, action) { var t1 = invoiceListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByCustom3_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByCustom3_closure0(action)); }, _filterInvoicesByCustom4: function(invoiceListState, action) { var t1 = invoiceListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByCustom4_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByCustom4_closure0(action)); }, _filterInvoicesByState: function(invoiceListState, action) { var t1 = invoiceListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByState_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByState_closure0(action)); }, _filterInvoicesByStatus: function(invoiceListState, action) { var t1 = invoiceListState.statusFilters, t2 = action.status; if (J.contains$1$asx(t1._list, t2)) return invoiceListState.rebuild$1(new D._filterInvoicesByStatus_closure(action)); else return invoiceListState.rebuild$1(new D._filterInvoicesByStatus_closure0(action)); }, _filterInvoices: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._filterInvoices_closure(action, invoiceListState)); }, _sortInvoices: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._sortInvoices_closure(action)); }, _startListMultiselect7: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._startListMultiselect_closure20()); }, _addToListMultiselect7: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._addToListMultiselect_closure20(action)); }, _removeFromListMultiselect7: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._removeFromListMultiselect_closure20(action)); }, _clearListMultiselect7: function(invoiceListState, action) { return invoiceListState.rebuild$1(new D._clearListMultiselect_closure20()); }, _markInvoicesSentSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._markInvoicesSentSuccess_closure(action)); }, _markInvoicesPaidSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._markInvoicesPaidSuccess_closure(action)); }, _reverseInvoicesSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._reverseInvoicesSuccess_closure(action)); }, _cancelInvoicesSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._cancelInvoicesSuccess_closure(action)); }, _archiveInvoiceSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._archiveInvoiceSuccess_closure(action)); }, _deleteInvoiceSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._deleteInvoiceSuccess_closure(action)); }, _emailInvoiceSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._emailInvoiceSuccess_closure(action)); }, _restoreInvoiceSuccess: function(invoiceState, action) { return invoiceState.rebuild$1(new D._restoreInvoiceSuccess_closure(action)); }, _addInvoice: function(invoiceState, action) { return invoiceState.rebuild$1(new D._addInvoice_closure(action)); }, _updateInvoice: function(invoiceState, action) { return invoiceState.rebuild$1(new D._updateInvoice_closure(action, action.get$invoice())); }, _setLoadedInvoices: function(invoiceState, action) { return invoiceState.loadInvoices$1(action.invoices); }, _setLoadedCompany6: function(invoiceState, action) { return invoiceState.loadInvoices$1(action.userCompany.company.invoices); }, invoiceUIReducer_closure: function invoiceUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure159: function forceSelectedReducer_closure159() { }, forceSelectedReducer_closure160: function forceSelectedReducer_closure160() { }, forceSelectedReducer_closure161: function forceSelectedReducer_closure161() { }, forceSelectedReducer_closure162: function forceSelectedReducer_closure162() { }, forceSelectedReducer_closure163: function forceSelectedReducer_closure163() { }, forceSelectedReducer_closure164: function forceSelectedReducer_closure164() { }, forceSelectedReducer_closure165: function forceSelectedReducer_closure165() { }, forceSelectedReducer_closure166: function forceSelectedReducer_closure166() { }, tabIndexReducer_closure19: function tabIndexReducer_closure19() { }, tabIndexReducer_closure20: function tabIndexReducer_closure20() { }, historyActivityIdReducer_closure2: function historyActivityIdReducer_closure2() { }, editingItemIndexReducer_closure1: function editingItemIndexReducer_closure1() { }, editingItemIndexReducer_closure2: function editingItemIndexReducer_closure2() { }, selectedIdReducer_closure316: function selectedIdReducer_closure316() { }, selectedIdReducer_closure317: function selectedIdReducer_closure317() { }, selectedIdReducer_closure318: function selectedIdReducer_closure318() { }, selectedIdReducer_closure319: function selectedIdReducer_closure319() { }, selectedIdReducer_closure320: function selectedIdReducer_closure320() { }, selectedIdReducer_closure321: function selectedIdReducer_closure321() { }, selectedIdReducer_closure322: function selectedIdReducer_closure322() { }, selectedIdReducer_closure323: function selectedIdReducer_closure323() { }, selectedIdReducer_closure324: function selectedIdReducer_closure324() { }, selectedIdReducer_closure325: function selectedIdReducer_closure325() { }, selectedIdReducer_closure326: function selectedIdReducer_closure326() { }, selectedIdReducer_closure327: function selectedIdReducer_closure327() { }, selectedIdReducer_closure328: function selectedIdReducer_closure328() { }, selectedIdReducer_closure329: function selectedIdReducer_closure329() { }, selectedIdReducer_closure330: function selectedIdReducer_closure330() { }, selectedIdReducer_closure331: function selectedIdReducer_closure331() { }, selectedIdReducer_closure332: function selectedIdReducer_closure332() { }, selectedIdReducer_closure333: function selectedIdReducer_closure333() { }, selectedIdReducer_closure334: function selectedIdReducer_closure334() { }, editingReducer_closure101: function editingReducer_closure101() { }, editingReducer__closure44: function editingReducer__closure44() { }, editingReducer_closure102: function editingReducer_closure102() { }, editingReducer__closure43: function editingReducer__closure43() { }, editingReducer_closure103: function editingReducer_closure103() { }, editingReducer_closure104: function editingReducer_closure104() { }, editingReducer__closure42: function editingReducer__closure42() { }, editingReducer_closure105: function editingReducer_closure105() { }, editingReducer__closure41: function editingReducer__closure41() { }, editingReducer_closure106: function editingReducer_closure106() { }, editingReducer__closure40: function editingReducer__closure40(t0) { this.client = t0; }, editingReducer___closure2: function editingReducer___closure2() { }, editingReducer_closure107: function editingReducer_closure107() { }, editingReducer_closure108: function editingReducer_closure108() { }, editingReducer_closure109: function editingReducer_closure109() { }, editingReducer_closure110: function editingReducer_closure110() { }, editingReducer__closure39: function editingReducer__closure39(t0) { this.action = t0; }, editingReducer_closure111: function editingReducer_closure111() { }, editingReducer__closure38: function editingReducer__closure38(t0) { this.action = t0; }, _addInvoiceItem_closure: function _addInvoiceItem_closure(t0) { this.item = t0; }, _addInvoiceItems_closure: function _addInvoiceItems_closure(t0) { this.action = t0; }, _removeInvoiceItem_closure: function _removeInvoiceItem_closure(t0) { this.action = t0; }, _updateInvoiceItem_closure: function _updateInvoiceItem_closure(t0) { this.action = t0; }, _viewInvoiceList_closure: function _viewInvoiceList_closure() { }, _filterInvoicesByCustom1_closure: function _filterInvoicesByCustom1_closure(t0) { this.action = t0; }, _filterInvoicesByCustom1_closure0: function _filterInvoicesByCustom1_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom2_closure: function _filterInvoicesByCustom2_closure(t0) { this.action = t0; }, _filterInvoicesByCustom2_closure0: function _filterInvoicesByCustom2_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom3_closure: function _filterInvoicesByCustom3_closure(t0) { this.action = t0; }, _filterInvoicesByCustom3_closure0: function _filterInvoicesByCustom3_closure0(t0) { this.action = t0; }, _filterInvoicesByCustom4_closure: function _filterInvoicesByCustom4_closure(t0) { this.action = t0; }, _filterInvoicesByCustom4_closure0: function _filterInvoicesByCustom4_closure0(t0) { this.action = t0; }, _filterInvoicesByState_closure: function _filterInvoicesByState_closure(t0) { this.action = t0; }, _filterInvoicesByState_closure0: function _filterInvoicesByState_closure0(t0) { this.action = t0; }, _filterInvoicesByStatus_closure: function _filterInvoicesByStatus_closure(t0) { this.action = t0; }, _filterInvoicesByStatus_closure0: function _filterInvoicesByStatus_closure0(t0) { this.action = t0; }, _filterInvoices_closure: function _filterInvoices_closure(t0, t1) { this.action = t0; this.invoiceListState = t1; }, _sortInvoices_closure: function _sortInvoices_closure(t0) { this.action = t0; }, _startListMultiselect_closure20: function _startListMultiselect_closure20() { }, _addToListMultiselect_closure20: function _addToListMultiselect_closure20(t0) { this.action = t0; }, _removeFromListMultiselect_closure20: function _removeFromListMultiselect_closure20(t0) { this.action = t0; }, _clearListMultiselect_closure20: function _clearListMultiselect_closure20() { }, _markInvoicesSentSuccess_closure: function _markInvoicesSentSuccess_closure(t0) { this.action = t0; }, _markInvoicesPaidSuccess_closure: function _markInvoicesPaidSuccess_closure(t0) { this.action = t0; }, _reverseInvoicesSuccess_closure: function _reverseInvoicesSuccess_closure(t0) { this.action = t0; }, _cancelInvoicesSuccess_closure: function _cancelInvoicesSuccess_closure(t0) { this.action = t0; }, _archiveInvoiceSuccess_closure: function _archiveInvoiceSuccess_closure(t0) { this.action = t0; }, _deleteInvoiceSuccess_closure: function _deleteInvoiceSuccess_closure(t0) { this.action = t0; }, _emailInvoiceSuccess_closure: function _emailInvoiceSuccess_closure(t0) { this.action = t0; }, _restoreInvoiceSuccess_closure: function _restoreInvoiceSuccess_closure(t0) { this.action = t0; }, _addInvoice_closure: function _addInvoice_closure(t0) { this.action = t0; }, _addInvoice__closure: function _addInvoice__closure() { }, _updateInvoice_closure: function _updateInvoice_closure(t0, t1) { this.action = t0; this.invoice = t1; }, _updateInvoice__closure: function _updateInvoice__closure() { }, _editPayment: function() { return new D._editPayment_closure(); }, _viewRefundPayment: function() { return new D._viewRefundPayment_closure(); }, _viewPayment: function() { return new D._viewPayment_closure(); }, _viewPaymentList: function() { return new D._viewPaymentList_closure0(); }, _archivePayment: function(repository) { return new D._archivePayment_closure(repository); }, _deletePayment: function(repository) { return new D._deletePayment_closure(repository); }, _restorePayment: function(repository) { return new D._restorePayment_closure(repository); }, _savePayment: function(repository) { return new D._savePayment_closure(repository); }, _refundPayment: function(repository) { return new D._refundPayment_closure(repository); }, _emailPayment: function(repository) { return new D._emailPayment_closure(repository); }, _loadPayment: function(repository) { return new D._loadPayment_closure(repository); }, _loadPayments: function(repository) { return new D._loadPayments_closure(repository); }, _editPayment_closure: function _editPayment_closure() { }, _editPayment__closure: function _editPayment__closure() { }, _viewRefundPayment_closure: function _viewRefundPayment_closure() { }, _viewRefundPayment__closure: function _viewRefundPayment__closure() { }, _viewPayment_closure: function _viewPayment_closure() { }, _viewPaymentList_closure0: function _viewPaymentList_closure0() { }, _viewPaymentList__closure: function _viewPaymentList__closure() { }, _archivePayment_closure: function _archivePayment_closure(t0) { this.repository = t0; }, _archivePayment__closure: function _archivePayment__closure(t0) { this.store = t0; }, _archivePayment__closure0: function _archivePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archivePayment__closure1: function _archivePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _deletePayment_closure: function _deletePayment_closure(t0) { this.repository = t0; }, _deletePayment__closure: function _deletePayment__closure(t0) { this.store = t0; }, _deletePayment__closure0: function _deletePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deletePayment__closure1: function _deletePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _restorePayment_closure: function _restorePayment_closure(t0) { this.repository = t0; }, _restorePayment__closure: function _restorePayment__closure(t0) { this.store = t0; }, _restorePayment__closure0: function _restorePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restorePayment__closure1: function _restorePayment__closure1(t0, t1, t2) { this.store = t0; this.prevPayments = t1; this.action = t2; }, _savePayment_closure: function _savePayment_closure(t0) { this.repository = t0; }, _savePayment__closure: function _savePayment__closure(t0, t1) { this.action = t0; this.store = t1; }, _savePayment__closure0: function _savePayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _refundPayment_closure: function _refundPayment_closure(t0) { this.repository = t0; }, _refundPayment__closure: function _refundPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _refundPayment__closure0: function _refundPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailPayment_closure: function _emailPayment_closure(t0) { this.repository = t0; }, _emailPayment__closure: function _emailPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailPayment__closure0: function _emailPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPayment_closure: function _loadPayment_closure(t0) { this.repository = t0; }, _loadPayment__closure: function _loadPayment__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPayment__closure0: function _loadPayment__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPayments_closure: function _loadPayments_closure(t0) { this.repository = t0; }, _loadPayments__closure: function _loadPayments__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPayments__closure0: function _loadPayments__closure0(t0, t1) { this.store = t0; this.action = t1; }, handlePaymentTermAction: function(context, paymentTerms, action) { var store, t1, paymentTerm, t2, paymentTermIds, message, _i, t3, _s6_ = ":value", _s12_ = "_dispatchers"; if (paymentTerms.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); paymentTerm = type$.legacy_PaymentTermEntity._as(C.JSArray_methods.get$first(paymentTerms)); t2 = H._arrayInstanceType(paymentTerms)._eval$1("MappedListIterable<1,String*>"); paymentTermIds = P.List_List$of(new H.MappedListIterable(paymentTerms, new D.handlePaymentTermAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(null, context, paymentTerm, null); break; case C.EntityAction_restore: t2 = paymentTermIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_payment_terms"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_payment_term"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.RestorePaymentTermsRequest(t1, paymentTermIds)); break; case C.EntityAction_archive: t2 = paymentTermIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_payment_terms"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_payment_term"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.ArchivePaymentTermsRequest(t1, paymentTermIds)); break; case C.EntityAction_delete: t2 = paymentTermIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_payment_terms"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_payment_term"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.DeletePaymentTermsRequest(t1, paymentTermIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.paymentTermUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.StartPaymentTermMultiselect()); t1 = paymentTerms.length; if (t1 === 0) break; for (_i = 0; _i < paymentTerms.length; paymentTerms.length === t1 || (0, H.throwConcurrentModificationError)(paymentTerms), ++_i) { paymentTerm = paymentTerms[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.paymentTermUIState.listUIState; t3 = J.get$id$x(paymentTerm); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new D.AddToPaymentTermMultiselect(paymentTerm)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new D.RemoveFromPaymentTermMultiselect(paymentTerm)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([paymentTerm], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewPaymentTermList: function ViewPaymentTermList() { }, ViewPaymentTerm: function ViewPaymentTerm(t0) { this.paymentTermId = t0; }, EditPaymentTerm: function EditPaymentTerm(t0) { this.paymentTerm = t0; }, UpdatePaymentTerm: function UpdatePaymentTerm(t0) { this.paymentTerm = t0; }, LoadPaymentTermRequest: function LoadPaymentTermRequest() { }, LoadPaymentTermFailure: function LoadPaymentTermFailure(t0) { this.error = t0; }, LoadPaymentTermSuccess: function LoadPaymentTermSuccess(t0) { this.paymentTerm = t0; }, LoadPaymentTermsRequest: function LoadPaymentTermsRequest() { }, LoadPaymentTermsFailure: function LoadPaymentTermsFailure(t0) { this.error = t0; }, LoadPaymentTermsSuccess: function LoadPaymentTermsSuccess(t0) { this.paymentTerms = t0; }, SavePaymentTermRequest: function SavePaymentTermRequest(t0, t1) { this.completer = t0; this.paymentTerm = t1; }, SavePaymentTermSuccess: function SavePaymentTermSuccess(t0) { this.paymentTerm = t0; }, AddPaymentTermSuccess: function AddPaymentTermSuccess(t0) { this.paymentTerm = t0; }, SavePaymentTermFailure: function SavePaymentTermFailure() { }, ArchivePaymentTermsRequest: function ArchivePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, ArchivePaymentTermsSuccess: function ArchivePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, ArchivePaymentTermsFailure: function ArchivePaymentTermsFailure() { }, DeletePaymentTermsRequest: function DeletePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, DeletePaymentTermsSuccess: function DeletePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, DeletePaymentTermsFailure: function DeletePaymentTermsFailure() { }, RestorePaymentTermsRequest: function RestorePaymentTermsRequest(t0, t1) { this.completer = t0; this.paymentTermIds = t1; }, RestorePaymentTermsSuccess: function RestorePaymentTermsSuccess(t0) { this.paymentTerms = t0; }, RestorePaymentTermsFailure: function RestorePaymentTermsFailure() { }, FilterPaymentTerms: function FilterPaymentTerms(t0) { this.filter = t0; }, SortPaymentTerms: function SortPaymentTerms(t0) { this.field = t0; }, FilterPaymentTermsByState: function FilterPaymentTermsByState(t0) { this.state = t0; }, FilterPaymentTermsByCustom1: function FilterPaymentTermsByCustom1(t0) { this.value = t0; }, FilterPaymentTermsByCustom2: function FilterPaymentTermsByCustom2(t0) { this.value = t0; }, FilterPaymentTermsByCustom3: function FilterPaymentTermsByCustom3(t0) { this.value = t0; }, FilterPaymentTermsByCustom4: function FilterPaymentTermsByCustom4(t0) { this.value = t0; }, handlePaymentTermAction_closure: function handlePaymentTermAction_closure() { }, StartPaymentTermMultiselect: function StartPaymentTermMultiselect() { }, AddToPaymentTermMultiselect: function AddToPaymentTermMultiselect(t0) { this.entity = t0; }, RemoveFromPaymentTermMultiselect: function RemoveFromPaymentTermMultiselect(t0) { this.entity = t0; }, ClearPaymentTermMultiselect: function ClearPaymentTermMultiselect() { }, _$ProjectState$_: function(list, map) { var _s12_ = "ProjectState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new D._$ProjectState(map, list); }, _$ProjectUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("ProjectUIState", "listUIState")); return new D._$ProjectUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ProjectState: function ProjectState() { }, ProjectState_loadProjects_closure0: function ProjectState_loadProjects_closure0() { }, ProjectState_loadProjects_closure1: function ProjectState_loadProjects_closure1() { }, ProjectState_loadProjects_closure: function ProjectState_loadProjects_closure(t0, t1) { this.$this = t0; this.map = t1; }, ProjectUIState: function ProjectUIState() { }, _$ProjectStateSerializer: function _$ProjectStateSerializer() { }, _$ProjectUIStateSerializer: function _$ProjectUIStateSerializer() { }, _$ProjectState: function _$ProjectState(t0, t1) { this.map = t0; this.list = t1; this._project_state$__hashCode = null; }, ProjectStateBuilder: function ProjectStateBuilder() { this._project_state$_list = this._project_state$_map = this._project_state$_$v = null; }, _$ProjectUIState: function _$ProjectUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._project_state$__hashCode = null; }, ProjectUIStateBuilder: function ProjectUIStateBuilder() { var _ = this; _._project_state$_cancelCompleter = _._project_state$_saveCompleter = _._project_state$_tabIndex = _._project_state$_forceSelected = _._project_state$_selectedId = _._project_state$_listUIState = _._project_state$_editing = _._project_state$_$v = null; }, _ProjectUIState_Object_EntityUIState: function _ProjectUIState_Object_EntityUIState() { }, _viewSettings: function() { return new D._viewSettings_closure(); }, _saveCompany: function(settingsRepository) { return new D._saveCompany_closure(settingsRepository); }, _saveAuthUser: function(settingsRepository) { return new D._saveAuthUser_closure(settingsRepository); }, _connectOAuthUser: function(settingsRepository) { return new D._connectOAuthUser_closure0(settingsRepository); }, _connectGmailUser: function(settingsRepository) { return new D._connectGmailUser_closure0(settingsRepository); }, _disableTwoFactor: function(settingsRepository) { return new D._disableTwoFactor_closure(settingsRepository); }, _saveSettings: function(settingsRepository) { return new D._saveSettings_closure(settingsRepository); }, _uploadLogo: function(settingsRepository) { return new D._uploadLogo_closure(settingsRepository); }, _saveDocument7: function(repository) { return new D._saveDocument_closure3(repository); }, _viewSettings_closure: function _viewSettings_closure() { }, _viewSettings__closure: function _viewSettings__closure(t0, t1, t2, t3) { var _ = this; _.action = t0; _.uiState = t1; _.store = t2; _.next = t3; }, _viewSettings___closure: function _viewSettings___closure() { }, _saveCompany_closure: function _saveCompany_closure(t0) { this.settingsRepository = t0; }, _saveCompany__closure: function _saveCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveCompany__closure0: function _saveCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveAuthUser_closure: function _saveAuthUser_closure(t0) { this.settingsRepository = t0; }, _saveAuthUser__closure: function _saveAuthUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveAuthUser__closure0: function _saveAuthUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _connectOAuthUser_closure0: function _connectOAuthUser_closure0(t0) { this.settingsRepository = t0; }, _connectOAuthUser__closure: function _connectOAuthUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _connectOAuthUser__closure0: function _connectOAuthUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _connectGmailUser_closure0: function _connectGmailUser_closure0(t0) { this.settingsRepository = t0; }, _connectGmailUser__closure: function _connectGmailUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _connectGmailUser__closure0: function _connectGmailUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _disableTwoFactor_closure: function _disableTwoFactor_closure(t0) { this.settingsRepository = t0; }, _disableTwoFactor__closure: function _disableTwoFactor__closure(t0, t1) { this.store = t0; this.action = t1; }, _disableTwoFactor__closure0: function _disableTwoFactor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveSettings_closure: function _saveSettings_closure(t0) { this.settingsRepository = t0; }, _saveSettings__closure: function _saveSettings__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveSettings__closure0: function _saveSettings__closure0(t0, t1) { this.store = t0; this.action = t1; }, _uploadLogo_closure: function _uploadLogo_closure(t0) { this.settingsRepository = t0; }, _uploadLogo__closure: function _uploadLogo__closure(t0, t1) { this.action = t0; this.store = t1; }, _uploadLogo__closure0: function _uploadLogo__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure3: function _saveDocument_closure3(t0) { this.repository = t0; }, _saveDocument__closure7: function _saveDocument__closure7(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure8: function _saveDocument__closure8(t0, t1) { this.store = t0; this.action = t1; }, _editToken: function() { return new D._editToken_closure(); }, _viewToken: function() { return new D._viewToken_closure(); }, _viewTokenList: function() { return new D._viewTokenList_closure0(); }, _archiveToken: function(repository) { return new D._archiveToken_closure(repository); }, _deleteToken: function(repository) { return new D._deleteToken_closure(repository); }, _restoreToken: function(repository) { return new D._restoreToken_closure(repository); }, _saveToken: function(repository) { return new D._saveToken_closure(repository); }, _loadToken: function(repository) { return new D._loadToken_closure(repository); }, _loadTokens: function(repository) { return new D._loadTokens_closure(repository); }, _editToken_closure: function _editToken_closure() { }, _viewToken_closure: function _viewToken_closure() { }, _viewTokenList_closure0: function _viewTokenList_closure0() { }, _viewTokenList__closure: function _viewTokenList__closure() { }, _archiveToken_closure: function _archiveToken_closure(t0) { this.repository = t0; }, _archiveToken__closure: function _archiveToken__closure(t0) { this.store = t0; }, _archiveToken__closure0: function _archiveToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveToken__closure1: function _archiveToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _deleteToken_closure: function _deleteToken_closure(t0) { this.repository = t0; }, _deleteToken__closure: function _deleteToken__closure(t0) { this.store = t0; }, _deleteToken__closure0: function _deleteToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteToken__closure1: function _deleteToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _restoreToken_closure: function _restoreToken_closure(t0) { this.repository = t0; }, _restoreToken__closure: function _restoreToken__closure(t0) { this.store = t0; }, _restoreToken__closure0: function _restoreToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreToken__closure1: function _restoreToken__closure1(t0, t1, t2) { this.store = t0; this.prevTokens = t1; this.action = t2; }, _saveToken_closure: function _saveToken_closure(t0) { this.repository = t0; }, _saveToken__closure: function _saveToken__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveToken__closure0: function _saveToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadToken_closure: function _loadToken_closure(t0) { this.repository = t0; }, _loadToken__closure: function _loadToken__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadToken__closure0: function _loadToken__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTokens_closure: function _loadTokens_closure(t0) { this.repository = t0; }, _loadTokens__closure: function _loadTokens__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTokens__closure0: function _loadTokens__closure0(t0, t1) { this.store = t0; this.action = t1; }, uiReducer: function(state, action) { return state.rebuild$1(new D.uiReducer_closure(state, action, $.$get$currentRouteReducer().call$2(state.currentRoute, action))); }, uiReducer_closure: function uiReducer_closure(t0, t1, t2) { this.state = t0; this.action = t1; this.currentRoute = t2; }, lastActivityReducer_closure: function lastActivityReducer_closure() { }, filterReducer_closure: function filterReducer_closure() { }, filterReducer_closure0: function filterReducer_closure0() { }, filterClearedAtReducer_closure: function filterClearedAtReducer_closure() { }, filterClearedAtReducer_closure0: function filterClearedAtReducer_closure0() { }, currentRouteReducer_closure: function currentRouteReducer_closure() { }, selectedCompanyIndexReducer_closure: function selectedCompanyIndexReducer_closure() { }, previewStackReducer_closure: function previewStackReducer_closure() { }, previewStackReducer__closure: function previewStackReducer__closure(t0) { this.action = t0; }, previewStackReducer_closure0: function previewStackReducer_closure0() { }, previewStackReducer_closure1: function previewStackReducer_closure1() { }, filterStackReducer_closure: function filterStackReducer_closure() { }, filterStackReducer_closure0: function filterStackReducer_closure0() { }, filterStackReducer__closure: function filterStackReducer__closure(t0) { this.action = t0; }, filterStackReducer_closure1: function filterStackReducer_closure1() { }, ActionMenuButton$: function(entity, entityActions, iconData, iconSize, isSaving, onSelected) { return new D.ActionMenuButton(entityActions, onSelected, isSaving, iconData, iconSize, null); }, ActionMenuButton: function ActionMenuButton(t0, t1, t2, t3, t4, t5) { var _ = this; _.entityActions = t0; _.onSelected = t1; _.isSaving = t2; _.iconData = t3; _.iconSize = t4; _.key = t5; }, ActionMenuButton_build_closure: function ActionMenuButton_build_closure(t0, t1) { this.actions = t0; this.context = t1; }, ActionMenuButton_build_closure0: function ActionMenuButton_build_closure0(t0) { this.actions = t0; }, ActionMenuButton_build_closure1: function ActionMenuButton_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, ViewActionMenuButton: function ViewActionMenuButton(t0, t1, t2, t3, t4) { var _ = this; _.entity = t0; _.entityActions = t1; _.onSelected = t2; _.isSaving = t3; _.key = t4; }, AppButton: function AppButton(t0, t1, t2, t3, t4, t5) { var _ = this; _.color = t0; _.iconData = t1; _.label = t2; _.onPressed = t3; _.width = t4; _.key = t5; }, EntityHeader$: function(entity, label, secondLabel, secondValue, statusColor, statusLabel, value) { return new D.EntityHeader(entity, statusLabel, label, value, secondLabel, secondValue, null); }, EntityHeader: function EntityHeader(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entity = t0; _.statusLabel = t1; _.label = t2; _.value = t3; _.secondLabel = t4; _.secondValue = t5; _.key = t6; }, EntityHeader_build__value1: function EntityHeader_build__value1(t0, t1) { this.$this = t0; this.textColor = t1; }, EntityHeader_build__value2: function EntityHeader_build__value2(t0, t1) { this.$this = t0; this.textColor = t1; }, TaxRateDropdown: function TaxRateDropdown(t0, t1, t2, t3, t4) { var _ = this; _.labelText = t0; _.onSelected = t1; _.initialTaxName = t2; _.initialTaxRate = t3; _.key = t4; }, _TaxRateDropdownState: function _TaxRateDropdownState(t0, t1) { var _ = this; _._tax_rate_dropdown$_textController = t0; _._widget = _._selectedTaxRate = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaxRateDropdownState_didChangeDependencies_closure: function _TaxRateDropdownState_didChangeDependencies_closure(t0) { this.taxState = t0; }, _TaxRateDropdownState_didChangeDependencies_closure0: function _TaxRateDropdownState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaxRateDropdownState_didChangeDependencies_closure1: function _TaxRateDropdownState_didChangeDependencies_closure1(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure: function _TaxRateDropdownState_build_closure(t0) { this.taxState = t0; }, _TaxRateDropdownState_build_closure0: function _TaxRateDropdownState_build_closure0(t0) { this.taxState = t0; }, _TaxRateDropdownState_build_closure1: function _TaxRateDropdownState_build_closure1(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure2: function _TaxRateDropdownState_build_closure2(t0) { this.$this = t0; }, _TaxRateDropdownState_build_closure3: function _TaxRateDropdownState_build_closure3(t0) { this.$this = t0; }, CachedImage$: function(url, width) { return new D.CachedImage(url, width, null); }, CachedImage: function CachedImage(t0, t1, t2) { this.url = t0; this.width = t1; this.key = t2; }, EntityDataTableSource: function EntityDataTableSource(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.entityType = t0; _.editingId = t1; _.context = t2; _.entityList = t3; _.entityPresenter = t4; _.entityMap = t5; _.tableColumns = t6; _.onTap = t7; _.ChangeNotifier__listeners = t8; }, EntityDataTableSource_getRow_closure: function EntityDataTableSource_getRow_closure() { }, EntityDataTableSource_getRow_closure0: function EntityDataTableSource_getRow_closure0(t0, t1) { this.$this = t0; this.entity = t1; }, EntityDataTableSource_getRow_closure1: function EntityDataTableSource_getRow_closure1(t0) { this.entity = t0; }, EntityDataTableSource_getRow_closure2: function EntityDataTableSource_getRow_closure2(t0, t1) { this.$this = t0; this.entity = t1; }, EntityDataTableSource_getRow_closure3: function EntityDataTableSource_getRow_closure3(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.entity = t2; }, EntityDataTableSource_getRow__closure: function EntityDataTableSource_getRow__closure(t0, t1) { this.$this = t0; this.entity = t1; }, ClientScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).clientState.toString; t5 = $.$get$memoizedFilteredClientList(); t6 = state.getUISelection$1(C.EntityType_client); t7 = t4.$index(t1, t3).clientState.map; t8 = t4.$index(t1, t3).clientState.list; t9 = t4.$index(t1, t3).groupState.map; t2 = t2.clientUIState.listUIState; t9 = t5.call$7(t6, t7, t8, t9, t2, t4.$index(t1, t3).userState.map, state.staticState); t4.$index(t1, t3).toString; t2.toString; return new D.ClientScreenVM(t9); }, ClientScreenBuilder: function ClientScreenBuilder(t0) { this.key = t0; }, ClientScreenBuilder_build_closure: function ClientScreenBuilder_build_closure() { }, ClientScreenVM: function ClientScreenVM(t0) { this.clientList = t0; }, CompanyGatewayScreen: function CompanyGatewayScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CompanyGatewayScreen_build_closure11: function CompanyGatewayScreen_build_closure11(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure10: function CompanyGatewayScreen_build_closure10(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure: function CompanyGatewayScreen_build_closure(t0, t1, t2) { this.$this = t0; this.listUIState = t1; this.store = t2; }, CompanyGatewayScreen_build__closure0: function CompanyGatewayScreen_build__closure0(t0) { this.$this = t0; }, CompanyGatewayScreen_build__closure1: function CompanyGatewayScreen_build__closure1(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure0: function CompanyGatewayScreen_build_closure0(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure1: function CompanyGatewayScreen_build_closure1(t0, t1) { this.settingsUIState = t0; this.store = t1; }, CompanyGatewayScreen_build__closure: function CompanyGatewayScreen_build__closure() { }, CompanyGatewayScreen_build_closure2: function CompanyGatewayScreen_build_closure2(t0, t1) { this.settingsUIState = t0; this.store = t1; }, CompanyGatewayScreen_build_closure4: function CompanyGatewayScreen_build_closure4(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure5: function CompanyGatewayScreen_build_closure5(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure6: function CompanyGatewayScreen_build_closure6(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure7: function CompanyGatewayScreen_build_closure7(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure8: function CompanyGatewayScreen_build_closure8(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure3: function CompanyGatewayScreen_build_closure3(t0) { this.store = t0; }, CompanyGatewayScreen_build_closure9: function CompanyGatewayScreen_build_closure9(t0, t1) { this.settingsUIState = t0; this.context = t1; }, ExpenseEdit: function ExpenseEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseEditState: function _ExpenseEditState(t0, t1) { var _ = this; _._expense_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ExpenseEditState_build_closure1: function _ExpenseEditState_build_closure1(t0) { this.viewModel = t0; }, _ExpenseEditState_build_closure2: function _ExpenseEditState_build_closure2(t0) { this.$this = t0; }, _ExpenseEditState_build_closure0: function _ExpenseEditState_build_closure0(t0) { this.$this = t0; }, _ExpenseEditState_build_closure: function _ExpenseEditState_build_closure(t0) { this.store = t0; }, __ExpenseEditState_State_SingleTickerProviderStateMixin: function __ExpenseEditState_State_SingleTickerProviderStateMixin() { }, ExpenseCategoryView: function ExpenseCategoryView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _ExpenseCategoryViewState: function _ExpenseCategoryViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ExpenseCategoryViewState_build_closure: function _ExpenseCategoryViewState_build_closure(t0) { this.viewModel = t0; }, InvoiceItemSelector: function InvoiceItemSelector(t0, t1, t2, t3, t4) { var _ = this; _.onItemsSelected = t0; _.clientId = t1; _.excluded = t2; _.showTasksAndExpenses = t3; _.key = t4; }, _InvoiceItemSelectorState: function _InvoiceItemSelectorState(t0, t1, t2, t3) { var _ = this; _._invoice_item_selector$_tabController = _._filterClientId = _._invoice_item_selector$_filter = null; _._invoice_item_selector$_selected = t0; _._invoice_item_selector$_textController = t1; _.SingleTickerProviderStateMixin__ticker = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _InvoiceItemSelectorState__onItemsSelected_closure: function _InvoiceItemSelectorState__onItemsSelected_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.items = t1; _.company = t2; _.state = t3; _.context = t4; }, _InvoiceItemSelectorState__toggleEntity_closure: function _InvoiceItemSelectorState__toggleEntity_closure(t0, t1) { this.$this = t0; this.entity = t1; }, _InvoiceItemSelectorState__updateClientId_closure: function _InvoiceItemSelectorState__updateClientId_closure() { }, _InvoiceItemSelectorState__updateClientId_closure0: function _InvoiceItemSelectorState__updateClientId_closure0() { }, _InvoiceItemSelectorState_build_closure: function _InvoiceItemSelectorState_build_closure(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build_closure0: function _InvoiceItemSelectorState_build_closure0(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build_closure1: function _InvoiceItemSelectorState_build_closure1(t0, t1) { this.$this = t0; this.state = t1; }, _InvoiceItemSelectorState_build__productList: function _InvoiceItemSelectorState_build__productList(t0, t1, t2) { this.$this = t0; this.products = t1; this.state = t2; }, _InvoiceItemSelectorState_build__productList_closure: function _InvoiceItemSelectorState_build__productList_closure(t0, t1, t2) { this.$this = t0; this.products = t1; this.state = t2; }, _InvoiceItemSelectorState_build__productList__closure: function _InvoiceItemSelectorState_build__productList__closure(t0, t1) { this.$this = t0; this.product = t1; }, _InvoiceItemSelectorState_build__productList__closure0: function _InvoiceItemSelectorState_build__productList__closure0(t0, t1, t2) { this.$this = t0; this.product = t1; this.context = t2; }, _InvoiceItemSelectorState_build__taskList: function _InvoiceItemSelectorState_build__taskList(t0, t1, t2) { this.$this = t0; this.tasks = t1; this.state = t2; }, _InvoiceItemSelectorState_build__taskList_closure: function _InvoiceItemSelectorState_build__taskList_closure(t0, t1, t2) { this.$this = t0; this.tasks = t1; this.state = t2; }, _InvoiceItemSelectorState_build__taskList__closure: function _InvoiceItemSelectorState_build__taskList__closure(t0, t1) { this.$this = t0; this.task = t1; }, _InvoiceItemSelectorState_build__taskList__closure0: function _InvoiceItemSelectorState_build__taskList__closure0(t0, t1, t2) { this.$this = t0; this.task = t1; this.context = t2; }, _InvoiceItemSelectorState_build__expenseList: function _InvoiceItemSelectorState_build__expenseList(t0, t1, t2) { this.$this = t0; this.expenses = t1; this.state = t2; }, _InvoiceItemSelectorState_build__expenseList_closure: function _InvoiceItemSelectorState_build__expenseList_closure(t0, t1, t2) { this.$this = t0; this.expenses = t1; this.state = t2; }, _InvoiceItemSelectorState_build__expenseList__closure: function _InvoiceItemSelectorState_build__expenseList__closure(t0, t1) { this.$this = t0; this.expense = t1; }, _InvoiceItemSelectorState_build__expenseList__closure0: function _InvoiceItemSelectorState_build__expenseList__closure0(t0, t1, t2) { this.$this = t0; this.expense = t1; this.context = t2; }, _InvoiceItemSelectorState_build_closure2: function _InvoiceItemSelectorState_build_closure2(t0) { this.$this = t0; }, _InvoiceItemSelectorState_build__closure0: function _InvoiceItemSelectorState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceItemSelectorState_build_closure3: function _InvoiceItemSelectorState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, _InvoiceItemSelectorState_build__closure: function _InvoiceItemSelectorState_build__closure(t0) { this.$this = t0; }, _InvoiceItemSelectorState_build_closure4: function _InvoiceItemSelectorState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, _InvoiceItemSelectorState_build_closure5: function _InvoiceItemSelectorState_build_closure5(t0, t1) { this.$this = t0; this.company = t1; }, __InvoiceItemSelectorState_State_SingleTickerProviderStateMixin: function __InvoiceItemSelectorState_State_SingleTickerProviderStateMixin() { }, ProjectViewDocuments: function ProjectViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ProjectViewDocuments_build_closure: function ProjectViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ProjectViewDocuments_build_closure0: function ProjectViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ProjectViewVM_ProjectViewVM$fromStore: function(store) { var t4, t5, project, client, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).projectState.map; t2 = t2.projectUIState.selectedId; project = J.$index$asx(t5._map$_map, t2); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t2, _null, _null); t2 = project.clientId; client = J.$index$asx(t4.$index(t1, t3).clientState.map._map$_map, t2); if (client == null) client = T.ClientEntity_ClientEntity(t2, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; project.get$isNew(); return new D.ProjectViewVM(state, project, client, t1, new D.ProjectViewVM_ProjectViewVM$fromStore_closure(state, project), new D.ProjectViewVM_ProjectViewVM$fromStore_closure0(new D.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh(store, project)), new D.ProjectViewVM_ProjectViewVM$fromStore_closure1(store, project), new D.ProjectViewVM_ProjectViewVM$fromStore_closure2(store, project)); }, ProjectViewScreen: function ProjectViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, ProjectViewScreen_build_closure0: function ProjectViewScreen_build_closure0() { }, ProjectViewScreen_build_closure: function ProjectViewScreen_build_closure(t0) { this.$this = t0; }, ProjectViewVM: function ProjectViewVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.project = t1; _.client = t2; _.company = t3; _.onAddTaskPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; }, ProjectViewVM_ProjectViewVM$fromStore__handleRefresh: function ProjectViewVM_ProjectViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore_closure0: function ProjectViewVM_ProjectViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure: function ProjectViewVM_ProjectViewVM$fromStore_closure(t0, t1) { this.state = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure2: function ProjectViewVM_ProjectViewVM$fromStore__closure2(t0) { this.project = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure1: function ProjectViewVM_ProjectViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure0: function ProjectViewVM_ProjectViewVM$fromStore__closure0(t0) { this.context = t0; }, ProjectViewVM_ProjectViewVM$fromStore__closure1: function ProjectViewVM_ProjectViewVM$fromStore__closure1(t0) { this.context = t0; }, ProjectViewVM_ProjectViewVM$fromStore___closure: function ProjectViewVM_ProjectViewVM$fromStore___closure(t0) { this.error = t0; }, ProjectViewVM_ProjectViewVM$fromStore_closure2: function ProjectViewVM_ProjectViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.project = t1; }, ProjectViewVM_ProjectViewVM$fromStore__closure: function ProjectViewVM_ProjectViewVM$fromStore__closure(t0, t1) { this.store = t0; this.project = t1; }, QuoteEditPDFScreen: function QuoteEditPDFScreen(t0) { this.key = t0; }, QuoteEditPDFScreen_build_closure0: function QuoteEditPDFScreen_build_closure0() { }, QuoteEditPDFScreen_build_closure: function QuoteEditPDFScreen_build_closure() { }, QuoteEditPDFVM: function QuoteEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, RecurringExpensePresenter: function RecurringExpensePresenter() { this.context = this.entity = null; }, lineItemReport0: function(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { var columns, productKeyMap, t4, t5, t6, t7, t8, t9, invoice, client, t10, precision, t11, t12, value, value0, value1, value2, t13, row, t14, skip, t15, value3, productId, t16, t17, t18, selectedColumns, _null = null, _s12_ = "invoice_item", data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, lineItemReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s12_) ? J.$index$asx(reportSettings._map$_map, _s12_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.InvoiceItemReportFields_12, C.InvoiceItemReportFields_13, C.InvoiceItemReportFields_0, C.InvoiceItemReportFields_4, C.InvoiceItemReportFields_2], type$.JSArray_legacy_InvoiceItemReportFields), t1 = lineItemReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_InvoiceItemReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new D.lineItemReport_closure5(), t3).where$1(0, new D.lineItemReport_closure6()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); t1 = type$.legacy_String; productKeyMap = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t2 = productMap._map$_map, t3 = J.getInterceptor$x(t2), t4 = t3.get$entries(t2), t4 = t4.get$iterator(t4); t4.moveNext$0();) { t5 = t4.get$current(t4); productKeyMap.$indexSet(0, t5.get$value(t5).productKey, t5.get$value(t5).id); } for (t4 = J.get$entries$x(invoiceMap._map$_map), t4 = t4.get$iterator(t4), t5 = columns._list, t6 = J.getInterceptor$ax(t5), t7 = type$.JSArray_legacy_ReportElement, t8 = userCompany.company; t4.moveNext$0();) { t9 = t4.get$current(t4); invoice = t9.get$value(t9); t9 = invoice.clientId; client = J.$index$asx(clientMap._map$_map, t9); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t9 = staticState.currencyMap; t10 = client.settings.currencyId; t9 = J.$index$asx(t9._map$_map, t10); precision = t9 == null ? _null : t9.precision; if (precision == null) precision = 2; if (invoice.isDeleted || client.isDeleted) continue; if (!t8.reportIncludeDrafts && invoice.statusId === "1") continue; for (t9 = J.get$iterator$ax(invoice.lineItems._list), t11 = invoice.id, t12 = invoice.entityType, value = invoice.dueDate, value0 = client.displayName, value1 = invoice.date, value2 = invoice.number; t9.moveNext$0();) { t13 = t9.get$current(t9); row = H.setRuntimeTypeInfo([], t7); for (t14 = t6.get$iterator(t5), skip = false; t14.moveNext$0();) { t15 = t14.get$current(t14); value3 = t13.productKey; productId = productKeyMap.$index(0, value3); switch (t15) { case C.InvoiceItemReportFields_2: value3 = t13.cost; break; case C.InvoiceItemReportFields_4: value3 = t13.quantity; break; case C.InvoiceItemReportFields_3: value3 = t13.productCost; if (!(value3 !== 0)) value3 = productId == null ? 0 : t3.$index(t2, productId).cost; break; case C.InvoiceItemReportFields_5: t16 = t13.total$2(0, invoice, precision); t17 = t13.taxAmount$2(invoice, precision); t18 = productId == null ? 0 : t3.$index(t2, productId).cost; value3 = t16 - t17 - t18; break; case C.InvoiceItemReportFields_8: value3 = t13.customValue1; break; case C.InvoiceItemReportFields_9: value3 = t13.customValue2; break; case C.InvoiceItemReportFields_10: value3 = t13.customValue3; break; case C.InvoiceItemReportFields_11: value3 = t13.customValue4; break; case C.InvoiceItemReportFields_1: value3 = t13.notes; break; case C.InvoiceItemReportFields_6: value3 = t13.total$2(0, invoice, precision); break; case C.InvoiceItemReportFields_0: break; case C.InvoiceItemReportFields_7: value3 = t13.discount; break; case C.InvoiceItemReportFields_12: value3 = value2; break; case C.InvoiceItemReportFields_13: value3 = value1; break; case C.InvoiceItemReportFields_14: value3 = value0; break; case C.InvoiceItemReportFields_15: value3 = value; break; case C.InvoiceItemReportFields_16: value3 = t13.get$hasTaxes(); break; case C.InvoiceItemReportFields_17: value3 = t13.get$taxRates(); break; case C.InvoiceItemReportFields_18: value3 = t13.taxAmount$2(invoice, precision); break; case C.InvoiceItemReportFields_19: value3 = t13.total$2(0, invoice, precision) - t13.taxAmount$2(invoice, precision); break; default: value3 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value3)) skip = true; t16 = J.getInterceptor$(value3); if (t16.get$runtimeType(value3) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t12, t11)); else if (t15 === C.InvoiceItemReportFields_4) row.push(new A.ReportNumberValue(value3, _null, _null, _null, t12, t11)); else if (t16.get$runtimeType(value3) === C.Type_double_K1J || t16.get$runtimeType(value3) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t10, _null, t12, t11)); else row.push(new A.ReportStringValue(value3, t12, t11)); } if (!skip) data.push(row); } } selectedColumns = t6.map$1$1(t5, new D.lineItemReport_closure7(), t1).toList$0(0); C.JSArray_methods.sort$1(data, new D.lineItemReport_closure8(lineItemReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_InvoiceItemReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_E34, new D.lineItemReport_closure9(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new D.lineItemReport_closure10(), t1), true, t2), data, true); }, InvoiceItemReportFields: function InvoiceItemReportFields(t0) { this._invoice_item_report$_name = t0; }, memoizedInvoiceItemReport_closure: function memoizedInvoiceItemReport_closure() { }, lineItemReport_closure5: function lineItemReport_closure5() { }, lineItemReport_closure6: function lineItemReport_closure6() { }, lineItemReport_closure7: function lineItemReport_closure7() { }, lineItemReport_closure8: function lineItemReport_closure8(t0, t1) { this.lineItemReportSettings = t0; this.selectedColumns = t1; }, lineItemReport_closure9: function lineItemReport_closure9() { }, lineItemReport_closure10: function lineItemReport_closure10() { }, EmailSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new D.EmailSettingsVM(state, new D.EmailSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.get$settings(), new D.EmailSettingsVM_fromStore_closure0(store)); }, EmailSettingsScreen: function EmailSettingsScreen(t0) { this.key = t0; }, EmailSettingsScreen_build_closure: function EmailSettingsScreen_build_closure() { }, EmailSettingsVM: function EmailSettingsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; }, EmailSettingsVM_fromStore_closure0: function EmailSettingsVM_fromStore_closure0(t0) { this.store = t0; }, EmailSettingsVM_fromStore_closure: function EmailSettingsVM_fromStore_closure(t0) { this.store = t0; }, EmailSettingsVM_fromStore__closure: function EmailSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, ImportExport: function ImportExport(t0) { this.key = t0; }, _ImportExportState: function _ImportExportState(t0, t1) { var _ = this; _._import_export$_response = _._import_export$_focusNode = null; _._import_export$_importType = t0; _._isExporting = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ImportExportState_build_closure0: function _ImportExportState_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _ImportExportState_build__closure3: function _ImportExportState_build__closure3(t0, t1) { this.$this = t0; this.response = t1; }, _ImportExportState_build_closure: function _ImportExportState_build_closure(t0) { this.$this = t0; }, _ImportExportState_build__closure4: function _ImportExportState_build__closure4(t0, t1) { this.$this = t0; this.importType = t1; }, _ImportExportState_build_closure1: function _ImportExportState_build_closure1(t0) { this.$this = t0; }, _ImportExportState_build__closure2: function _ImportExportState_build__closure2(t0) { this.$this = t0; }, _ImportExportState_build_closure2: function _ImportExportState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _ImportExportState_build__closure: function _ImportExportState_build__closure(t0) { this.$this = t0; }, _ImportExportState_build__closure0: function _ImportExportState_build__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _ImportExportState_build___closure0: function _ImportExportState_build___closure0(t0) { this.$this = t0; }, _ImportExportState_build__closure1: function _ImportExportState_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _ImportExportState_build___closure: function _ImportExportState_build___closure(t0) { this.$this = t0; }, _FileImport: function _FileImport(t0, t1, t2, t3) { var _ = this; _.importType = t0; _.onImportTypeChanged = t1; _.onUploaded = t2; _.key = t3; }, _FileImportState: function _FileImportState(t0, t1) { var _ = this; _._multipartFiles = t0; _._importJsonSettings = _._importJsonData = _._import_export$_isLoading = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FileImportState_uploadJsonFile_closure: function _FileImportState_uploadJsonFile_closure(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile_closure0: function _FileImportState_uploadJsonFile_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _FileImportState_uploadJsonFile__closure0: function _FileImportState_uploadJsonFile__closure0(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile_closure1: function _FileImportState_uploadJsonFile_closure1(t0) { this.$this = t0; }, _FileImportState_uploadJsonFile__closure: function _FileImportState_uploadJsonFile__closure(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure: function _FileImportState_uploadFile_closure(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure0: function _FileImportState_uploadFile_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _FileImportState_uploadFile__closure0: function _FileImportState_uploadFile__closure0(t0) { this.$this = t0; }, _FileImportState_uploadFile_closure1: function _FileImportState_uploadFile_closure1(t0) { this.$this = t0; }, _FileImportState_uploadFile__closure: function _FileImportState_uploadFile__closure(t0) { this.$this = t0; }, _FileImportState_build_closure0: function _FileImportState_build_closure0(t0) { this.$this = t0; }, _FileImportState_build_closure: function _FileImportState_build_closure(t0) { this.localization = t0; }, _FileImportState_build_closure1: function _FileImportState_build_closure1(t0, t1) { this.$this = t0; this.uploadPart = t1; }, _FileImportState_build__closure1: function _FileImportState_build__closure1(t0, t1, t2) { this.$this = t0; this.uploadPart = t1; this.multipartFile = t2; }, _FileImportState_build_closure2: function _FileImportState_build_closure2(t0) { this.$this = t0; }, _FileImportState_build__closure0: function _FileImportState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _FileImportState_build_closure3: function _FileImportState_build_closure3(t0) { this.$this = t0; }, _FileImportState_build__closure: function _FileImportState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, _FileImportState_build_closure4: function _FileImportState_build_closure4(t0) { this.$this = t0; }, _FileMapper: function _FileMapper(t0, t1, t2, t3, t4) { var _ = this; _.importType = t0; _.response = t1; _.onCancelPressed = t2; _.formKey = t3; _.key = t4; }, __FileMapperState: function __FileMapperState(t0, t1) { var _ = this; _._useFirstRowAsHeaders = true; _._import_export$_mapping = t0; _._import_export$_isLoading = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __FileMapperState_build_closure: function __FileMapperState_build_closure(t0) { this.$this = t0; }, __FileMapperState_build__closure3: function __FileMapperState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, __FileMapperState_build_closure0: function __FileMapperState_build_closure0(t0, t1, t2) { this.$this = t0; this.entry = t1; this.i = t2; }, __FileMapperState_build__closure2: function __FileMapperState_build__closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.entry = t1; _.i = t2; _.value = t3; }, __FileMapperState_build_closure1: function __FileMapperState_build_closure1(t0) { this.$this = t0; }, __FileMapperState_build_closure2: function __FileMapperState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, __FileMapperState_build__closure: function __FileMapperState_build__closure(t0) { this.$this = t0; }, __FileMapperState_build__closure0: function __FileMapperState_build__closure0(t0, t1) { this.$this = t0; this.localization = t1; }, __FileMapperState_build___closure0: function __FileMapperState_build___closure0(t0) { this.$this = t0; }, __FileMapperState_build__closure1: function __FileMapperState_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, __FileMapperState_build___closure: function __FileMapperState_build___closure(t0) { this.$this = t0; }, _FieldMapper: function _FieldMapper(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.field1 = t0; _.field2 = t1; _.available = t2; _.mappedTo = t3; _.onMappedToChanged = t4; _.mapping = t5; _.key = t6; }, _FieldMapper_build_closure: function _FieldMapper_build_closure(t0) { this.localization = t0; }, _FieldMapper_build_closure1: function _FieldMapper_build_closure1(t0, t1) { this.sorted = t0; this.localization = t1; }, _FieldMapper_build__closure0: function _FieldMapper_build__closure0(t0) { this.localization = t0; }, _FieldMapper_build_closure2: function _FieldMapper_build_closure2(t0, t1) { this.$this = t0; this.localization = t1; }, _FieldMapper_build__closure: function _FieldMapper_build__closure(t0) { this.value = t0; }, _FieldMapper_build_closure0: function _FieldMapper_build_closure0(t0) { this.localization = t0; }, SettingsListVM_fromStore: function(store) { var state = store.get$_store$_state(), settingsUIState = state.uiState.settingsUIState; return new D.SettingsListVM(state, new D.SettingsListVM_fromStore_closure(store, state), new D.SettingsListVM_fromStore_closure0(settingsUIState), new D.SettingsListVM_fromStore_closure1(settingsUIState), new D.SettingsListVM_fromStore_closure2(store)); }, SettingsListBuilder: function SettingsListBuilder(t0) { this.key = t0; }, SettingsListBuilder_build_closure: function SettingsListBuilder_build_closure() { }, SettingsListVM: function SettingsListVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.loadSection = t1; _.onViewGroupPressed = t2; _.onViewClientPressed = t3; _.onClearSettingsFilterPressed = t4; }, SettingsListVM_fromStore_closure: function SettingsListVM_fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, SettingsListVM_fromStore_closure2: function SettingsListVM_fromStore_closure2(t0) { this.store = t0; }, SettingsListVM_fromStore_closure1: function SettingsListVM_fromStore_closure1(t0) { this.settingsUIState = t0; }, SettingsListVM_fromStore_closure0: function SettingsListVM_fromStore_closure0(t0) { this.settingsUIState = t0; }, WorkflowSettings: function WorkflowSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _WorkflowSettingsState: function _WorkflowSettingsState(t0, t1) { var _ = this; _._workflow_settings$_controller = _._workflow_settings$_focusNode = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _WorkflowSettingsState_build_closure: function _WorkflowSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure3: function _WorkflowSettingsState_build__closure3(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure0: function _WorkflowSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure2: function _WorkflowSettingsState_build__closure2(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure1: function _WorkflowSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure1: function _WorkflowSettingsState_build__closure1(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure2: function _WorkflowSettingsState_build_closure2(t0) { this.localization = t0; }, _WorkflowSettingsState_build_closure3: function _WorkflowSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure0: function _WorkflowSettingsState_build__closure0(t0) { this.value = t0; }, _WorkflowSettingsState_build_closure4: function _WorkflowSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _WorkflowSettingsState_build__closure: function _WorkflowSettingsState_build__closure(t0) { this.value = t0; }, __WorkflowSettingsState_State_SingleTickerProviderStateMixin: function __WorkflowSettingsState_State_SingleTickerProviderStateMixin() { }, KanbanStatusCard: function KanbanStatusCard(t0, t1, t2, t3, t4) { var _ = this; _.status = t0; _.onSavePressed = t1; _.isCorrectOrder = t2; _.isSaving = t3; _.key = t4; }, _KanbanStatusCardState: function _KanbanStatusCardState(t0) { var _ = this; _._kanban_status$_isEditing = false; _._kanban_status$_name = ""; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _KanbanStatusCardState__onSavePressed_closure: function _KanbanStatusCardState__onSavePressed_closure(t0) { this.$this = t0; }, _KanbanStatusCardState__onSavePressed__closure: function _KanbanStatusCardState__onSavePressed__closure(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure: function _KanbanStatusCardState_build_closure(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure0: function _KanbanStatusCardState_build_closure0(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure1: function _KanbanStatusCardState_build_closure1(t0) { this.$this = t0; }, _KanbanStatusCardState_build__closure0: function _KanbanStatusCardState_build__closure0(t0) { this.$this = t0; }, _KanbanStatusCardState_build_closure2: function _KanbanStatusCardState_build_closure2(t0) { this.$this = t0; }, _KanbanStatusCardState_build__closure: function _KanbanStatusCardState_build__closure(t0) { this.$this = t0; }, TaskScreen: function TaskScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskScreen_build_closure15: function TaskScreen_build_closure15(t0) { this.store = t0; }, TaskScreen_build_closure13: function TaskScreen_build_closure13(t0) { this.store = t0; }, TaskScreen_build_closure14: function TaskScreen_build_closure14(t0) { this.store = t0; }, TaskScreen_build_closure: function TaskScreen_build_closure(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, TaskScreen_build_closure0: function TaskScreen_build_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskScreen_build_closure9: function TaskScreen_build_closure9(t0) { this.store = t0; }, TaskScreen_build_closure11: function TaskScreen_build_closure11(t0) { this.store = t0; }, TaskScreen_build_closure5: function TaskScreen_build_closure5(t0) { this.store = t0; }, TaskScreen_build_closure6: function TaskScreen_build_closure6(t0) { this.store = t0; }, TaskScreen_build_closure7: function TaskScreen_build_closure7(t0) { this.store = t0; }, TaskScreen_build_closure8: function TaskScreen_build_closure8(t0) { this.store = t0; }, TaskScreen_build_closure1: function TaskScreen_build_closure1(t0) { this.localization = t0; }, TaskScreen_build_closure2: function TaskScreen_build_closure2(t0) { this.localization = t0; }, TaskScreen_build_closure3: function TaskScreen_build_closure3(t0) { this.localization = t0; }, TaskScreen_build_closure10: function TaskScreen_build_closure10(t0) { this.store = t0; }, TaskScreen_build_closure4: function TaskScreen_build_closure4(t0) { this.store = t0; }, TaskScreen_build_closure12: function TaskScreen_build_closure12(t0) { this.context = t0; }, TaxRateSettingsScreen: function TaxRateSettingsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaxRateSettingsScreen_build_closure5: function TaxRateSettingsScreen_build_closure5(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure3: function TaxRateSettingsScreen_build_closure3(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure4: function TaxRateSettingsScreen_build_closure4(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure0: function TaxRateSettingsScreen_build_closure0(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure1: function TaxRateSettingsScreen_build_closure1(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure: function TaxRateSettingsScreen_build_closure(t0) { this.store = t0; }, TaxRateSettingsScreen_build_closure2: function TaxRateSettingsScreen_build_closure2(t0) { this.context = t0; }, VendorEditContacts: function VendorEditContacts(t0, t1, t2) { this.viewModel = t0; this.vendorViewModel = t1; this.key = t2; }, _VendorEditContactsState: function _VendorEditContactsState(t0) { var _ = this; _._widget = _.selectedContact = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _VendorEditContactsState__showContactEditor_closure: function _VendorEditContactsState__showContactEditor_closure(t0, t1) { this.$this = t0; this.contact = t1; }, _VendorEditContactsState__showContactEditor__closure: function _VendorEditContactsState__showContactEditor__closure(t0) { this.contact = t0; }, _VendorEditContactsState_build_closure: function _VendorEditContactsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _VendorEditContactsState_build__closure: function _VendorEditContactsState_build__closure(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _VendorEditContactsState_build_closure0: function _VendorEditContactsState_build_closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _VendorEditContactsState_build_closure1: function _VendorEditContactsState_build_closure1(t0) { this.viewModel = t0; }, ContactListTile: function ContactListTile(t0, t1, t2) { this.onTap = t0; this.contact = t1; this.key = t2; }, VendorContactEditDetails: function VendorContactEditDetails(t0, t1, t2, t3, t4, t5) { var _ = this; _.index = t0; _.contact = t1; _.viewModel = t2; _.vendorViewModel = t3; _.isDialog = t4; _.key = t5; }, VendorContactEditDetailsState: function VendorContactEditDetailsState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._vendor_edit_contacts$_firstNameController = t0; _._vendor_edit_contacts$_lastNameController = t1; _._vendor_edit_contacts$_emailController = t2; _._vendor_edit_contacts$_phoneController = t3; _._vendor_edit_contacts$_debouncer = t4; _._vendor_edit_contacts$_controllers = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, VendorContactEditDetailsState_didChangeDependencies_closure: function VendorContactEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState_didChangeDependencies_closure0: function VendorContactEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorContactEditDetailsState_dispose_closure: function VendorContactEditDetailsState_dispose_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState__onChanged_closure: function VendorContactEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState__onChanged_closure0: function VendorContactEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.contact = t1; }, VendorContactEditDetailsState_build_closure: function VendorContactEditDetailsState_build_closure(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure0: function VendorContactEditDetailsState_build_closure0(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure1: function VendorContactEditDetailsState_build_closure1(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure2: function VendorContactEditDetailsState_build_closure2(t0) { this.localization = t0; }, VendorContactEditDetailsState_build_closure3: function VendorContactEditDetailsState_build_closure3(t0) { this.$this = t0; }, VendorContactEditDetailsState_build_closure4: function VendorContactEditDetailsState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, VendorContactEditDetailsState_build__closure: function VendorContactEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, VendorContactEditDetailsState_build_closure5: function VendorContactEditDetailsState_build_closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, MethodChannelPackageInfo: function MethodChannelPackageInfo(t0) { this._instanceToken = t0; }, QrPolynomial_QrPolynomial: function(thing, shift) { var values, i, t1 = thing.length, offset = 0; while (true) { if (!(offset < t1 && thing[offset] === 0)) break; ++offset; } t1 -= offset; values = new Uint8Array(t1 + shift); for (i = 0; i < t1; ++i) values[i] = thing[i + offset]; return new D.QrPolynomial(values); }, QrPolynomial: function QrPolynomial(t0) { this._polynomial$_values = t0; }, QrCode$: function(typeNumber, errorCorrectLevel) { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_QrByte); t1 = new D.QrCode(typeNumber, errorCorrectLevel, typeNumber * 4 + 17, H.setRuntimeTypeInfo([], type$.JSArray_List_nullable_bool), t1); t1.QrCode$2(typeNumber, errorCorrectLevel); return t1; }, QrCode__calculateTypeNumberFromData: function(errorCorrectLevel, dataList) { var t1, typeNumber, rsBlocks, buffer, t2, totalDataCount, i, data; for (t1 = type$.JSArray_int, typeNumber = 1; typeNumber < 40; ++typeNumber) { rsBlocks = Y.QrRsBlock_getRSBlocks(typeNumber, errorCorrectLevel); buffer = new Q.QrBitBuffer(H.setRuntimeTypeInfo([], t1)); for (t2 = rsBlocks.length, totalDataCount = 0, i = 0; i < t2; ++i) totalDataCount += rsBlocks[i].dataCount; for (i = 0; i < 1; ++i) { data = dataList[i]; buffer.put$2(0, 4, 4); buffer.put$2(0, data._byte$_data.length, D._lengthInBits(4, typeNumber)); data.write$1(0, buffer); } if (buffer._bit_buffer$_length <= totalDataCount * 8) break; } return typeNumber; }, _createData: function(typeNumber, errorCorrectLevel, dataList) { var i, data, t1, totalDataCount, totalByteCount, rsBlocks = Y.QrRsBlock_getRSBlocks(typeNumber, errorCorrectLevel), buffer = new Q.QrBitBuffer(H.setRuntimeTypeInfo([], type$.JSArray_int)); for (i = 0; i < dataList.length; ++i) { data = dataList[i]; buffer.put$2(0, 4, 4); buffer.put$2(0, data._byte$_data.length, D._lengthInBits(4, typeNumber)); data.write$1(0, buffer); } for (t1 = rsBlocks.length, totalDataCount = 0, i = 0; i < t1; ++i) totalDataCount += rsBlocks[i].dataCount; totalByteCount = totalDataCount * 8; t1 = buffer._bit_buffer$_length; if (t1 > totalByteCount) throw H.wrapException(new V.InputTooLongException("Input too long. " + t1 + " > " + totalByteCount)); if (t1 + 4 <= totalByteCount) buffer.put$2(0, 0, 4); for (; C.JSInt_methods.$mod(buffer._bit_buffer$_length, 8) !== 0;) buffer.putBit$1(false); for (; true;) { if (buffer._bit_buffer$_length >= totalByteCount) break; buffer.put$2(0, 236, 8); if (buffer._bit_buffer$_length >= totalByteCount) break; buffer.put$2(0, 17, 8); } return D._createBytes(buffer, rsBlocks); }, _createBytes: function(buffer, rsBlocks) { var offset, maxDcCount, maxEcCount, r, t2, dcCount, ecCount, dcItem, i, rsPoly, modPoly, ecItem, t3, t4, modIndex, data, t1 = type$.nullable_List_int, dcData = P.List_List$filled(rsBlocks.length, null, false, t1), ecData = P.List_List$filled(rsBlocks.length, null, false, t1); for (t1 = buffer._bit_buffer$_buffer, offset = 0, maxDcCount = 0, maxEcCount = 0, r = 0; r < rsBlocks.length; ++r) { t2 = rsBlocks[r]; dcCount = t2.dataCount; ecCount = t2.totalCount - dcCount; maxDcCount = Math.max(maxDcCount, dcCount); maxEcCount = Math.max(maxEcCount, ecCount); dcItem = new Uint8Array(dcCount); dcData[r] = dcItem; for (i = 0; i < dcCount; ++i) dcItem[i] = t1[i + offset] & 255; offset += dcCount; rsPoly = D._errorCorrectPolynomial(ecCount); t2 = rsPoly._polynomial$_values.length - 1; modPoly = D.QrPolynomial_QrPolynomial(dcItem, t2).mod$1(rsPoly); ecItem = new Uint8Array(t2); ecData[r] = ecItem; for (t3 = modPoly._polynomial$_values, t4 = t3.length, i = 0; i < t2; ++i) { modIndex = i + t4 - t2; ecItem[i] = modIndex >= 0 ? t3[modIndex] : 0; } } data = H.setRuntimeTypeInfo([], type$.JSArray_int); for (i = 0; i < maxDcCount; ++i) for (r = 0; r < rsBlocks.length; ++r) { t1 = dcData[r]; if (i < t1.length) data.push(t1[i]); } for (i = 0; i < maxEcCount; ++i) for (r = 0; r < rsBlocks.length; ++r) { t1 = ecData[r]; if (i < t1.length) data.push(t1[i]); } return data; }, _mask: function(maskPattern, i, j) { var t1; switch (maskPattern) { case 0: return (i + j & 1) === 0; case 1: return (i & 1) === 0; case 2: return C.JSInt_methods.$mod(j, 3) === 0; case 3: return C.JSInt_methods.$mod(i + j, 3) === 0; case 4: return (C.JSInt_methods._tdivFast$1(i, 2) + C.JSInt_methods._tdivFast$1(j, 3) & 1) === 0; case 5: t1 = i * j; return C.JSInt_methods.$mod(t1, 2) + C.JSInt_methods.$mod(t1, 3) === 0; case 6: t1 = i * j; return (C.JSInt_methods.$mod(t1, 2) + C.JSInt_methods.$mod(t1, 3) & 1) === 0; case 7: return (C.JSInt_methods.$mod(i * j, 3) + C.JSInt_methods.$mod(i + j, 2) & 1) === 0; default: throw H.wrapException(P.ArgumentError$("bad maskPattern:" + maskPattern)); } }, _lengthInBits: function(mode, type) { if (1 <= type && type < 10) switch (mode) { case 1: return 10; case 2: return 9; case 4: return 8; case 8: return 8; default: throw H.wrapException(P.ArgumentError$("mode:" + mode)); } else if (type < 27) switch (mode) { case 1: return 12; case 2: return 11; case 4: return 16; case 8: return 10; default: throw H.wrapException(P.ArgumentError$("mode:" + mode)); } else if (type < 41) switch (mode) { case 1: return 14; case 2: return 13; case 4: return 16; case 8: return 12; default: throw H.wrapException(P.ArgumentError$("mode:" + mode)); } else throw H.wrapException(P.ArgumentError$("type:" + type)); }, _lostPoint: function(qrCode) { var lostPoint, row, col, dark, sameCount, r, t1, t2, c, t3, row0, count, darkCount, moduleCount = qrCode.moduleCount; for (lostPoint = 0, row = 0; row < moduleCount; ++row) for (col = 0; col < moduleCount; ++col) { dark = qrCode.isDark$2(row, col); for (sameCount = 0, r = -1; r <= 1; ++r) { t1 = row + r; if (t1 < 0 || moduleCount <= t1) continue; for (t2 = r === 0, c = -1; c <= 1; ++c) { t3 = col + c; if (t3 < 0 || moduleCount <= t3) continue; if (t2 && c === 0) continue; if (dark == qrCode.isDark$2(t1, t3)) ++sameCount; } } if (sameCount > 5) lostPoint += 3 + sameCount - 5; } for (t1 = moduleCount - 1, row = 0; row < t1; row = row0) for (row0 = row + 1, col = 0; col < t1;) { count = qrCode.isDark$2(row, col) ? 1 : 0; if (qrCode.isDark$2(row0, col)) ++count; ++col; if (qrCode.isDark$2(row, col)) ++count; if (qrCode.isDark$2(row0, col)) ++count; if (count === 0 || count === 4) lostPoint += 3; } for (t1 = moduleCount - 6, row = 0; row < moduleCount; ++row) for (col = 0; col < t1; ++col) if (qrCode.isDark$2(row, col) && !qrCode.isDark$2(row, col + 1) && qrCode.isDark$2(row, col + 2) && qrCode.isDark$2(row, col + 3) && qrCode.isDark$2(row, col + 4) && !qrCode.isDark$2(row, col + 5) && qrCode.isDark$2(row, col + 6)) lostPoint += 40; for (col = 0; col < moduleCount; ++col) for (row = 0; row < t1; ++row) if (qrCode.isDark$2(row, col) && !qrCode.isDark$2(row + 1, col) && qrCode.isDark$2(row + 2, col) && qrCode.isDark$2(row + 3, col) && qrCode.isDark$2(row + 4, col) && !qrCode.isDark$2(row + 5, col) && qrCode.isDark$2(row + 6, col)) lostPoint += 40; for (col = 0, darkCount = 0; col < moduleCount; ++col) for (row = 0; row < moduleCount; ++row) if (qrCode.isDark$2(row, col)) ++darkCount; return lostPoint + Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5 * 10; }, _errorCorrectPolynomial: function(errorCorrectLength) { var i, t1 = type$.JSArray_int, a = D.QrPolynomial_QrPolynomial(H.setRuntimeTypeInfo([1], t1), 0); for (i = 0; i < errorCorrectLength; ++i) a = a.multiply$1(0, D.QrPolynomial_QrPolynomial(H.setRuntimeTypeInfo([1, K.gexp(i)], t1), 0)); return a; }, QrCode: function QrCode(t0, t1, t2, t3, t4) { var _ = this; _.typeNumber = t0; _.errorCorrectLevel = t1; _.moduleCount = t2; _._modules = t3; _._dataCache = null; _._dataList = t4; }, DeferStream$: function(streamFactory, reusable, $T) { return new D.DeferStream(streamFactory, true, $T._eval$1("DeferStream<0>")); }, DeferStream: function DeferStream(t0, t1, t2) { this._factory = t0; this._isReusable = t1; this.$ti = t2; }, SourceLocationMixin: function SourceLocationMixin() { }, UrlLauncherPlatform: function UrlLauncherPlatform() { }, LinkViewController__viewFactory: function(viewId) { return $.LinkViewController__instances.$index(0, viewId).get$_element(); }, debugPrintThrottled: function(message, wrapWidth) { var messageLines = H.setRuntimeTypeInfo(message.split("\n"), type$.JSArray_String); $.$get$_debugPrintBuffer().addAll$1(0, messageLines); if (!$._debugPrintScheduled) D._debugPrintTask(); }, _debugPrintTask: function() { var line, toZone, t1 = $._debugPrintScheduled = false, t2 = $.$get$_debugPrintStopwatch(); if (P.Duration$(0, 0, t2.get$elapsedMicroseconds(), 0, 0, 0)._duration > 1000000) { if (t2._stop == null) t2._stop = $.Primitives_timerTicks.call$0(); t2.reset$0(0); $._debugPrintedCharacters = 0; } while (true) { if ($._debugPrintedCharacters < 12288) { t2 = $.$get$_debugPrintBuffer(); t2 = !t2.get$isEmpty(t2); } else t2 = t1; if (!t2) break; line = $.$get$_debugPrintBuffer().removeFirst$0(); $._debugPrintedCharacters = $._debugPrintedCharacters + line.length; line = J.toString$0$(line); toZone = $.printToZone; if (toZone == null) H.printString(line); else toZone.call$1(line); } t1 = $.$get$_debugPrintBuffer(); if (!t1.get$isEmpty(t1)) { $._debugPrintScheduled = true; $._debugPrintedCharacters = 0; P.Timer_Timer(C.Duration_1000000, D.print___debugPrintTask$closure()); if ($._debugPrintCompleter == null) $._debugPrintCompleter = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); } else { $.$get$_debugPrintStopwatch().start$0(0); t1 = $._debugPrintCompleter; if (t1 != null) t1.complete$0(0); $._debugPrintCompleter = null; } }, isApple: function() { return false; }, isMacOS: function() { return false; }, isWindows: function() { return false; }, isLinux: function() { return false; }, isAndroid: function() { return false; }, isIOS: function() { return false; }, getPlatformLetter: function() { return "C"; }, getNativePlatform: function() { var userAgent, t1 = window.document.documentElement; t1.toString; userAgent = t1.getAttribute("data-" + new W._DataAttributeMap(new W._ElementAttributeMap(t1))._toHyphenedName$1("user-agent")); if (userAgent == null) userAgent = ""; userAgent = userAgent.toLowerCase(); if (C.JSString_methods.contains$1(userAgent, "ipad") || C.JSString_methods.contains$1(userAgent, "ipod") || C.JSString_methods.contains$1(userAgent, "iphone")) return "iPhone"; else if (C.JSString_methods.contains$1(userAgent, "android")) return "Android"; else if (C.JSString_methods.contains$1(userAgent, "win")) return "Windows"; else if (C.JSString_methods.contains$1(userAgent, "mac")) return "macOS"; else if (C.JSString_methods.contains$1(userAgent, "linux")) return "Linux"; else return ""; }, getNativeAppUrl: function(platform) { switch (platform) { case "Android": return string$.https_p; case "iPhone": return string$.https_as; case "Windows": return string$.https_w; case "macOS": return "https://download.invoiceninja.com/macos"; case "Linux": return "https://download.invoiceninja.com/linux"; } return ""; }, getNativeAppIcon: function(platform) { switch (platform) { case "Android": return C.IconData_57477_MaterialIcons_null_false; case "iPhone": return C._MdiIconData_7T1; case "Windows": return C._MdiIconData_jVE0; case "macOS": return C._MdiIconData_7T1; case "Linux": return C._MdiIconData_ifn; } return null; }, getRateAppURL: function(context) { switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: return string$.https_p; case C.TargetPlatform_2: return string$.https_as; default: return "https://www.capterra.com/p/145215/Invoice-Ninja"; } }, calculateLayout: function(context) { if (context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx < 700) return C.AppLayout_mobile; else return C.AppLayout_desktop; }, getLayout: function(context) { var t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.appLayout; return t1; }, current: function() { var exception, t1, path, lastIndex, uri = null; try { uri = P.Uri_base(); } catch (exception) { if (type$.Exception._is(H.unwrapException(exception))) { t1 = $._current; if (t1 != null) return t1; throw exception; } else throw exception; } if (J.$eq$(uri, $._currentUriBase)) { t1 = $._current; t1.toString; return t1; } $._currentUriBase = uri; if ($.$get$Style_platform() == $.$get$Style_url()) t1 = $._current = uri.resolve$1(".").toString$0(0); else { path = uri.toFilePath$0(); lastIndex = path.length - 1; t1 = $._current = lastIndex === 0 ? path : C.JSString_methods.substring$2(path, 0, lastIndex); } t1.toString; return t1; } }, R = { ArchiveException$: function(message) { return new R.ArchiveException(message, null, null); }, ArchiveException: function ArchiveException(t0, t1, t2) { this.message = t0; this.source = t1; this.offset = t2; }, BuiltListMultimap_BuiltListMultimap: function($K, $V) { var t1 = R._BuiltListMultimap$copy(C.Map_empty0.get$keys(C.Map_empty0), new R.BuiltListMultimap_BuiltListMultimap_closure(C.Map_empty0), $K, $V); return t1; }, _BuiltListMultimap$copy: function(keys, lookup, $K, $V) { var t1 = new R._BuiltListMultimap(P.LinkedHashMap_LinkedHashMap$_empty($K, $V._eval$1("BuiltList<0>")), D.BuiltList_BuiltList$from(C.List_empty, $V), $K._eval$1("@<0>")._bind$1($V)._eval$1("_BuiltListMultimap<1,2>")); t1._BuiltListMultimap$copy$2(keys, lookup, $K, $V); return t1; }, ListMultimapBuilder_ListMultimapBuilder: function($K, $V) { var t1 = new R.ListMultimapBuilder($K._eval$1("@<0>")._bind$1($V)._eval$1("ListMultimapBuilder<1,2>")); t1.replace$1(0, C.Map_empty0); return t1; }, BuiltListMultimap: function BuiltListMultimap() { }, BuiltListMultimap_BuiltListMultimap_closure: function BuiltListMultimap_BuiltListMultimap_closure(t0) { this.multimap = t0; }, BuiltListMultimap_hashCode_closure: function BuiltListMultimap_hashCode_closure(t0) { this.$this = t0; }, BuiltListMultimap_forEach_closure: function BuiltListMultimap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, BuiltListMultimap_forEach__closure: function BuiltListMultimap_forEach__closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.key = t2; }, _BuiltListMultimap: function _BuiltListMultimap(t0, t1, t2) { var _ = this; _._list_multimap$_map = t0; _._emptyList = t1; _._list_multimap$_keys = _._list_multimap$_hashCode = null; _.$ti = t2; }, ListMultimapBuilder: function ListMultimapBuilder(t0) { var _ = this; _.__ListMultimapBuilder__builtMap = $; _._list_multimap$_builtMapOwner = null; _.__ListMultimapBuilder__builderMap = $; _.$ti = t0; }, ListMultimapBuilder_replace_closure: function ListMultimapBuilder_replace_closure(t0) { this.multimap = t0; }, BoolSerializer: function BoolSerializer(t0) { this.types = t0; }, BuiltListMultimapSerializer: function BuiltListMultimapSerializer(t0) { this.types = t0; }, BuiltListMultimapSerializer_serialize_closure: function BuiltListMultimapSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltListMultimapSerializer_deserialize_closure: function BuiltListMultimapSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltSetMultimapSerializer: function BuiltSetMultimapSerializer(t0) { this.types = t0; }, BuiltSetMultimapSerializer_serialize_closure: function BuiltSetMultimapSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BuiltSetMultimapSerializer_deserialize_closure: function BuiltSetMultimapSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.valueType = t1; }, BaseRenderSpec: function BaseRenderSpec() { }, BaseTickDrawStrategy: function BaseTickDrawStrategy() { }, BaseTickDrawStrategy_collides_closure: function BaseTickDrawStrategy_collides_closure(t0) { this.$this = t0; }, BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure: function BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure(t0, t1) { this.$this = t0; this.collision = t1; }, BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure: function BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure(t0, t1) { this.$this = t0; this.collision = t1; }, BaseTickDrawStrategy_splitLabel_closure: function BaseTickDrawStrategy_splitLabel_closure(t0, t1) { this.$this = t0; this.wholeLabel = t1; }, BaseTickDrawStrategy_getLabelWidth_closure: function BaseTickDrawStrategy_getLabelWidth_closure() { }, _PixelVerticalDirection: function _PixelVerticalDirection(t0) { this._base_tick_draw_strategy$_name = t0; }, TimeTickFormatterImpl: function TimeTickFormatterImpl(t0, t1, t2) { this._simpleFormat = t0; this._transitionFormat = t1; this.transitionField = t2; }, CalendarField: function CalendarField(t0) { this._time_tick_formatter_impl$_name = t0; }, SeriesDatum: function SeriesDatum(t0, t1, t2) { var _ = this; _.series = t0; _.datum = t1; _._series_datum$_index = null; _.$ti = t2; }, PointRendererConfig$: function(radiusPx, $D) { return new R.PointRendererConfig(new K.RendererAttributes(P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), radiusPx, null, null, null, C.C_ViewMargin, $D._eval$1("PointRendererConfig<0>")); }, PointRendererConfig: function PointRendererConfig(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.rendererAttributes = t0; _.radiusPx = t1; _.paintOrder = t2; _.position = t3; _.positionOrder = t4; _.viewMargin = t5; _.$ti = t6; }, XFileBase: function XFileBase() { }, noSuchFileOrDirectory: function(path) { var _s25_ = "No such file or directory"; return new P.FileSystemException(_s25_, path, new P.OSError(_s25_, S.ErrorCodes_ENOENT())); }, notADirectory: function(path) { var _s15_ = "Not a directory"; return new P.FileSystemException(_s15_, path, new P.OSError(_s15_, S.ErrorCodes_ENOTDIR())); }, isADirectory: function(path) { var _s14_ = "Is a directory"; return new P.FileSystemException(_s14_, path, new P.OSError(_s14_, S.ErrorCodes_EISDIR())); }, invalidArgument: function(path) { var _s16_ = "Invalid argument"; return new P.FileSystemException(_s16_, path, new P.OSError(_s16_, S.ErrorCodes_EINVAL())); }, _fsException: function(path, msg, errorCode) { return new P.FileSystemException(msg, path, new P.OSError(msg, errorCode)); }, DirectoryAddOnsMixin: function DirectoryAddOnsMixin() { }, Tween$: function(begin, end, $T) { return new R.Tween(begin, end, $T._eval$1("Tween<0>")); }, CurveTween$: function(curve) { return new R.CurveTween(curve); }, Animatable: function Animatable() { }, _AnimatedEvaluation: function _AnimatedEvaluation(t0, t1, t2) { this.parent = t0; this._evaluatable = t1; this.$ti = t2; }, _ChainedEvaluation: function _ChainedEvaluation(t0, t1, t2) { this._tween$_parent = t0; this._evaluatable = t1; this.$ti = t2; }, Tween: function Tween(t0, t1, t2) { this.begin = t0; this.end = t1; this.$ti = t2; }, ReverseTween: function ReverseTween(t0, t1, t2, t3) { var _ = this; _.parent = t0; _.begin = t1; _.end = t2; _.$ti = t3; }, ColorTween: function ColorTween(t0, t1) { this.begin = t0; this.end = t1; }, SizeTween: function SizeTween(t0, t1) { this.begin = t0; this.end = t1; }, RectTween: function RectTween(t0, t1) { this.begin = t0; this.end = t1; }, IntTween: function IntTween(t0, t1) { this.begin = t0; this.end = t1; }, CurveTween: function CurveTween(t0) { this.curve = t0; }, __AnimatedEvaluation_Animation_AnimationWithParentMixin: function __AnimatedEvaluation_Animation_AnimationWithParentMixin() { }, _resolveTextStyle: function(style, context) { return null; }, CupertinoTextThemeData: function CupertinoTextThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._text_theme$_defaults = t0; _._text_theme$_primaryColor = t1; _._textStyle = t2; _._actionTextStyle = t3; _._tabLabelTextStyle = t4; _._navTitleTextStyle = t5; _._navLargeTitleTextStyle = t6; _._navActionTextStyle = t7; _._pickerTextStyle = t8; _._dateTimePickerTextStyle = t9; }, _TextThemeDefaultsBuilder: function _TextThemeDefaultsBuilder(t0, t1) { this.labelColor = t0; this.inactiveGrayColor = t1; }, _CupertinoTextThemeData_Object_Diagnosticable: function _CupertinoTextThemeData_Object_Diagnosticable() { }, ObserverList$: function($T) { return new R.ObserverList(H.setRuntimeTypeInfo([], $T._eval$1("JSArray<0>")), $T._eval$1("ObserverList<0>")); }, ObserverList: function ObserverList(t0, t1) { var _ = this; _._observer_list$_list = t0; _._isDirty = false; _.__ObserverList__set = $; _.$ti = t1; }, HashedObserverList: function HashedObserverList(t0, t1) { this._observer_list$_map = t0; this.$ti = t1; }, StackFrame_fromStackString: function(stack) { var t1 = type$.WhereTypeIterable_StackFrame; return P.List_List$of(new H.WhereTypeIterable(new H.MappedIterable(new H.WhereIterable(H.setRuntimeTypeInfo(C.JSString_methods.trim$0(stack).split("\n"), type$.JSArray_String), new R.StackFrame_fromStackString_closure(), type$.WhereIterable_String), R.stack_frame_StackFrame_fromStackTraceLine$closure(), type$.MappedIterable_of_String_and_nullable_StackFrame), t1), true, t1._eval$1("Iterable.E")); }, StackFrame__parseWebFrame: function(line) { var t1 = R.StackFrame__parseWebNonDebugFrame(line); return t1; }, StackFrame__parseWebNonDebugFrame: function(line) { var classAndMethod, className, _s9_ = "", match = $.$get$StackFrame__webNonDebugFramePattern().firstMatch$1(line); if (match == null) return null; classAndMethod = H.setRuntimeTypeInfo(match._match[1].split("."), type$.JSArray_String); className = classAndMethod.length > 1 ? C.JSArray_methods.get$first(classAndMethod) : _s9_; return new R.StackFrame(line, -1, _s9_, _s9_, _s9_, -1, -1, className, classAndMethod.length > 1 ? H.SubListIterable$(classAndMethod, 1, null, type$.String).join$1(0, ".") : C.JSArray_methods.get$single(classAndMethod)); }, StackFrame_fromStackTraceLine: function(line) { var t1, t2, method, className, parts, packageUri, packagePath, $package, t3, t4, _null = null, _s9_ = ""; if (line === "") return C.StackFrame_SOW; else if (line === "...") return C.StackFrame_8sg; if (!J.startsWith$1$s(line, "#")) return R.StackFrame__parseWebFrame(line); t1 = P.RegExp_RegExp("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$", true, false).firstMatch$1(line)._match; t2 = t1[2]; t2.toString; method = H.stringReplaceAllUnchecked(t2, ".", ""); if (C.JSString_methods.startsWith$1(method, "new")) { className = method.split(" ").length > 1 ? method.split(" ")[1] : _s9_; if (J.contains$1$asx(className, ".")) { parts = className.split("."); className = parts[0]; method = parts[1]; } else method = ""; } else if (C.JSString_methods.contains$1(method, ".")) { parts = method.split("."); className = parts[0]; method = parts[1]; } else className = ""; t2 = t1[3]; t2.toString; packageUri = P.Uri_parse(t2, 0, _null); packagePath = packageUri.get$path(packageUri); if (packageUri.get$scheme() === "dart" || packageUri.get$scheme() === "package") { $package = J.$index$asx(packageUri.get$pathSegments(), 0); packagePath = C.JSString_methods.replaceFirst$2(packageUri.get$path(packageUri), J.$add$ansx(J.$index$asx(packageUri.get$pathSegments(), 0), "/"), ""); } else $package = _s9_; t2 = t1[1]; t2.toString; t2 = P.int_parse(t2, _null); t3 = packageUri.get$scheme(); t4 = t1[4]; if (t4 == null) t4 = -1; else { t4 = t4; t4.toString; t4 = P.int_parse(t4, _null); } t1 = t1[5]; if (t1 == null) t1 = -1; else { t1 = t1; t1.toString; t1 = P.int_parse(t1, _null); } return new R.StackFrame(line, t2, t3, $package, packagePath, t4, t1, className, method); }, StackFrame: function StackFrame(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.source = t0; _.number = t1; _.packageScheme = t2; _.$package = t3; _.packagePath = t4; _.line = t5; _.column = t6; _.className = t7; _.method = t8; }, StackFrame_fromStackString_closure: function StackFrame_fromStackString_closure() { }, Velocity: function Velocity(t0) { this.pixelsPerSecond = t0; }, VelocityEstimate: function VelocityEstimate(t0, t1, t2, t3) { var _ = this; _.pixelsPerSecond = t0; _.confidence = t1; _.duration = t2; _.offset = t3; }, _PointAtTime: function _PointAtTime(t0, t1) { this.time = t0; this.point = t1; }, VelocityTracker: function VelocityTracker(t0, t1) { this.kind = t0; this._samples = t1; this._velocity_tracker$_index = 0; }, IOSScrollViewFlingVelocityTracker: function IOSScrollViewFlingVelocityTracker(t0, t1, t2) { var _ = this; _._touchSamples = t0; _.kind = t1; _._samples = t2; _._velocity_tracker$_index = 0; }, BackButtonIcon__getIconData: function(platform) { switch (platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return C.IconData_57490_MaterialIcons_null_true; case C.TargetPlatform_2: case C.TargetPlatform_4: return C.IconData_57491_MaterialIcons_null_true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, BackButtonIcon: function BackButtonIcon(t0) { this.key = t0; }, BackButton: function BackButton(t0, t1) { this.onPressed = t0; this.key = t1; }, BackButton_build_closure: function BackButton_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, InkResponse$: function(autofocus, borderRadius, canRequestFocus, child, containedInkWell, customBorder, enableFeedback, excludeFromSemantics, focusColor, focusNode, highlightColor, highlightShape, hoverColor, key, mouseCursor, onDoubleTap, onFocusChange, onHighlightChanged, onHover, onLongPress, onTap, onTapCancel, onTapDown, overlayColor, radius, splashColor, splashFactory) { return new R.InkResponse(child, onTap, onTapDown, onTapCancel, onDoubleTap, onLongPress, onHighlightChanged, onHover, mouseCursor, containedInkWell, highlightShape, radius, borderRadius, customBorder, focusColor, hoverColor, highlightColor, overlayColor, splashColor, splashFactory, enableFeedback, false, onFocusChange, autofocus, focusNode, canRequestFocus, key); }, InkWell$: function(autofocus, borderRadius, canRequestFocus, child, customBorder, enableFeedback, focusColor, focusNode, highlightColor, hoverColor, key, mouseCursor, onDoubleTap, onFocusChange, onHighlightChanged, onHover, onLongPress, onTap, onTapCancel, onTapDown, overlayColor, splashColor, splashFactory) { return new R.InkWell(child, onTap, onTapDown, onTapCancel, onDoubleTap, onLongPress, onHighlightChanged, onHover, mouseCursor, true, C.BoxShape_0, null, borderRadius, customBorder, focusColor, hoverColor, highlightColor, overlayColor, splashColor, splashFactory, enableFeedback !== false, false, onFocusChange, autofocus, focusNode, canRequestFocus, key); }, InteractiveInkFeature: function InteractiveInkFeature() { }, InteractiveInkFeatureFactory: function InteractiveInkFeatureFactory() { }, _ParentInkResponseProvider: function _ParentInkResponseProvider(t0, t1, t2) { this.state = t0; this.child = t1; this.key = t2; }, InkResponse: function InkResponse(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapCancel = t3; _.onDoubleTap = t4; _.onLongPress = t5; _.onHighlightChanged = t6; _.onHover = t7; _.mouseCursor = t8; _.containedInkWell = t9; _.highlightShape = t10; _.radius = t11; _.borderRadius = t12; _.customBorder = t13; _.focusColor = t14; _.hoverColor = t15; _.highlightColor = t16; _.overlayColor = t17; _.splashColor = t18; _.splashFactory = t19; _.enableFeedback = t20; _.excludeFromSemantics = t21; _.onFocusChange = t22; _.autofocus = t23; _.focusNode = t24; _.canRequestFocus = t25; _.key = t26; }, _InkResponseStateWidget: function _InkResponseStateWidget(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapCancel = t3; _.onDoubleTap = t4; _.onLongPress = t5; _.onHighlightChanged = t6; _.onHover = t7; _.mouseCursor = t8; _.containedInkWell = t9; _.highlightShape = t10; _.radius = t11; _.borderRadius = t12; _.customBorder = t13; _.focusColor = t14; _.hoverColor = t15; _.highlightColor = t16; _.overlayColor = t17; _.splashColor = t18; _.splashFactory = t19; _.enableFeedback = t20; _.excludeFromSemantics = t21; _.onFocusChange = t22; _.autofocus = t23; _.focusNode = t24; _.canRequestFocus = t25; _.parentState = t26; _.getRectCallback = t27; _.debugCheckContext = t28; _.key = t29; }, _HighlightType: function _HighlightType(t0) { this._ink_well$_name = t0; }, _InkResponseState: function _InkResponseState(t0, t1, t2, t3) { var _ = this; _._currentSplash = _._splashes = null; _._hovering = false; _._highlights = t0; _.___InkResponseState__actionMap = $; _._activeChildren = t1; _._ink_well$_hasFocus = false; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _InkResponseState_highlightsExist_closure: function _InkResponseState_highlightsExist_closure() { }, _InkResponseState_updateHighlight_handleInkRemoval: function _InkResponseState_updateHighlight_handleInkRemoval(t0, t1) { this.$this = t0; this.type = t1; }, _InkResponseState__createInkFeature_onRemoved: function _InkResponseState__createInkFeature_onRemoved(t0, t1) { this._box_0 = t0; this.$this = t1; }, _InkResponseState__handleFocusHighlightModeChange_closure: function _InkResponseState__handleFocusHighlightModeChange_closure(t0) { this.$this = t0; }, InkWell: function InkWell(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapCancel = t3; _.onDoubleTap = t4; _.onLongPress = t5; _.onHighlightChanged = t6; _.onHover = t7; _.mouseCursor = t8; _.containedInkWell = t9; _.highlightShape = t10; _.radius = t11; _.borderRadius = t12; _.customBorder = t13; _.focusColor = t14; _.hoverColor = t15; _.highlightColor = t16; _.overlayColor = t17; _.splashColor = t18; _.splashFactory = t19; _.enableFeedback = t20; _.excludeFromSemantics = t21; _.onFocusChange = t22; _.autofocus = t23; _.focusNode = t24; _.canRequestFocus = t25; _.key = t26; }, __InkResponseState_State_AutomaticKeepAliveClientMixin: function __InkResponseState_State_AutomaticKeepAliveClientMixin() { }, PaginatedDataTable: function PaginatedDataTable(t0, t1, t2, t3, t4, t5) { var _ = this; _.header = t0; _.columns = t1; _.sortColumnIndex = t2; _.sortAscending = t3; _.source = t4; _.key = t5; }, PaginatedDataTableState: function PaginatedDataTableState(t0, t1, t2) { var _ = this; _.__PaginatedDataTableState__rowCountApproximate = _.__PaginatedDataTableState__rowCount = _.__PaginatedDataTableState__firstRowIndex = $; _._selectedRowCount = 0; _._paginated_data_table$_rows = t0; _._tableKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, PaginatedDataTableState__handleDataSourceChanged_closure: function PaginatedDataTableState__handleDataSourceChanged_closure(t0) { this.$this = t0; }, PaginatedDataTableState_pageTo_closure: function PaginatedDataTableState_pageTo_closure(t0, t1) { this.$this = t0; this.rowIndex = t1; }, PaginatedDataTableState__getBlankRowFor_closure: function PaginatedDataTableState__getBlankRowFor_closure() { }, PaginatedDataTableState__getProgressIndicatorRowFor_closure: function PaginatedDataTableState__getProgressIndicatorRowFor_closure(t0) { this._box_0 = t0; }, PaginatedDataTableState__getRows_closure: function PaginatedDataTableState__getRows_closure(t0, t1) { this.$this = t0; this.index = t1; }, PaginatedDataTableState_build_closure: function PaginatedDataTableState_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.headerWidgets = t2; _.themeData = t3; _.footerTextStyle = t4; _.footerWidgets = t5; }, PopupMenuThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.color; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.shape; t4 = Y.ShapeBorder_lerp(t4, t3 ? _null : b.shape, t); t5 = t1 ? _null : a.elevation; t5 = P.lerpDouble(t5, t3 ? _null : b.elevation, t); t6 = t1 ? _null : a.textStyle; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.textStyle, t); if (t < 0.5) t1 = t1 ? _null : a.enableFeedback; else t1 = t3 ? _null : b.enableFeedback; return new R.PopupMenuThemeData(t2, t4, t5, t6, t1); }, PopupMenuTheme_of: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.PopupMenuTheme); t1 = K.Theme_of(context); return t1.popupMenuTheme; }, PopupMenuThemeData: function PopupMenuThemeData(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.shape = t1; _.elevation = t2; _.textStyle = t3; _.enableFeedback = t4; }, _PopupMenuThemeData_Object_Diagnosticable: function _PopupMenuThemeData_Object_Diagnosticable() { }, SwitchThemeData__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new R._LerpProperties(a, b, t, lerpFunction, $T._eval$1("_LerpProperties<0>")); }, SwitchThemeData: function SwitchThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.thumbColor = t0; _.trackColor = t1; _.materialTapTargetSize = t2; _.mouseCursor = t3; _.overlayColor = t4; _.splashRadius = t5; }, _LerpProperties: function _LerpProperties(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _SwitchThemeData_Object_Diagnosticable: function _SwitchThemeData_Object_Diagnosticable() { }, TextSelectionThemeData_lerp: function(a, b, t) { var t2, t3, t4, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.cursorColor; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.cursorColor, t); t4 = t1 ? _null : a.selectionColor; t4 = P.Color_lerp(t4, t3 ? _null : b.selectionColor, t); t1 = t1 ? _null : a.selectionHandleColor; return new R.TextSelectionThemeData(t2, t4, P.Color_lerp(t1, t3 ? _null : b.selectionHandleColor, t)); }, TextSelectionTheme_of: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TextSelectionTheme); t1 = K.Theme_of(context); return t1.textSelectionTheme; }, TextSelectionThemeData: function TextSelectionThemeData(t0, t1, t2) { this.cursorColor = t0; this.selectionColor = t1; this.selectionHandleColor = t2; }, _TextSelectionThemeData_Object_Diagnosticable: function _TextSelectionThemeData_Object_Diagnosticable() { }, TextTheme$: function(bodyText1, bodyText2, button, caption, headline1, headline2, headline3, headline4, headline5, headline6, overline, subtitle1, subtitle2) { var _null = null, t1 = headline1 == null ? _null : headline1, t2 = headline2 == null ? _null : headline2, t3 = headline3 == null ? _null : headline3, t4 = headline4 == null ? _null : headline4, t5 = headline5 == null ? _null : headline5, t6 = headline6 == null ? _null : headline6, t7 = subtitle1 == null ? _null : subtitle1, t8 = subtitle2 == null ? _null : subtitle2, t9 = bodyText1 == null ? _null : bodyText1; return new R.TextTheme(t1, t2, t3, t4, t5, t6, t7, t8, t9, bodyText2 == null ? _null : bodyText2, caption, button, overline); }, TextTheme_lerp: function(a, b, t) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _null = null, t1 = a == null, t2 = t1 ? _null : a.headline1, t3 = b == null; t2 = A.TextStyle_lerp(t2, t3 ? _null : b.headline1, t); t4 = t1 ? _null : a.headline2; t4 = A.TextStyle_lerp(t4, t3 ? _null : b.headline2, t); t5 = t1 ? _null : a.headline3; t5 = A.TextStyle_lerp(t5, t3 ? _null : b.headline3, t); t6 = t1 ? _null : a.headline4; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.headline4, t); t7 = t1 ? _null : a.headline5; t7 = A.TextStyle_lerp(t7, t3 ? _null : b.headline5, t); t8 = t1 ? _null : a.headline6; t8 = A.TextStyle_lerp(t8, t3 ? _null : b.headline6, t); t9 = t1 ? _null : a.subtitle1; t9 = A.TextStyle_lerp(t9, t3 ? _null : b.subtitle1, t); t10 = t1 ? _null : a.subtitle2; t10 = A.TextStyle_lerp(t10, t3 ? _null : b.subtitle2, t); t11 = t1 ? _null : a.bodyText1; t11 = A.TextStyle_lerp(t11, t3 ? _null : b.bodyText1, t); t12 = t1 ? _null : a.bodyText2; t12 = A.TextStyle_lerp(t12, t3 ? _null : b.bodyText2, t); t13 = t1 ? _null : a.caption; t13 = A.TextStyle_lerp(t13, t3 ? _null : b.caption, t); t14 = t1 ? _null : a.button; t14 = A.TextStyle_lerp(t14, t3 ? _null : b.button, t); t1 = t1 ? _null : a.overline; return R.TextTheme$(t11, t12, t14, t13, t2, t4, t5, t6, t7, t8, A.TextStyle_lerp(t1, t3 ? _null : b.overline, t), t9, t10); }, TextTheme: function TextTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.headline1 = t0; _.headline2 = t1; _.headline3 = t2; _.headline4 = t3; _.headline5 = t4; _.headline6 = t5; _.subtitle1 = t6; _.subtitle2 = t7; _.bodyText1 = t8; _.bodyText2 = t9; _.caption = t10; _.button = t11; _.overline = t12; }, _TextTheme_Object_Diagnosticable: function _TextTheme_Object_Diagnosticable() { }, RenderListBody$: function(axisDirection, children) { var t1 = new R.RenderListBody(axisDirection, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, ListBodyParentData: function ListBodyParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.offset = t2; }, RenderListBody: function RenderListBody(t0, t1, t2, t3) { var _ = this; _._list_body$_axisDirection = t0; _.ContainerRenderObjectMixin__childCount = t1; _.ContainerRenderObjectMixin__firstChild = t2; _.ContainerRenderObjectMixin__lastChild = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderListBody_computeMinIntrinsicWidth_closure: function RenderListBody_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, RenderListBody_computeMinIntrinsicWidth_closure0: function RenderListBody_computeMinIntrinsicWidth_closure0(t0) { this.height = t0; }, RenderListBody_computeMaxIntrinsicWidth_closure: function RenderListBody_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, RenderListBody_computeMaxIntrinsicWidth_closure0: function RenderListBody_computeMaxIntrinsicWidth_closure0(t0) { this.height = t0; }, RenderListBody_computeMinIntrinsicHeight_closure: function RenderListBody_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, RenderListBody_computeMinIntrinsicHeight_closure0: function RenderListBody_computeMinIntrinsicHeight_closure0(t0) { this.width = t0; }, RenderListBody_computeMaxIntrinsicHeight_closure: function RenderListBody_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, RenderListBody_computeMaxIntrinsicHeight_closure0: function RenderListBody_computeMaxIntrinsicHeight_closure0(t0) { this.width = t0; }, _RenderListBody_RenderBox_ContainerRenderObjectMixin: function _RenderListBody_RenderBox_ContainerRenderObjectMixin() { }, _RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, PlatformViewsRegistry: function PlatformViewsRegistry() { this._nextPlatformViewId = 0; }, PlatformViewController: function PlatformViewController() { }, ScrollPositionWithSingleContext$: function(context, debugLabel, initialPixels, keepScrollOffset, oldPosition, physics) { var t1 = type$.LinkedList__ListenerEntry; t1 = new R.ScrollPositionWithSingleContext(C.ScrollDirection_0, physics, context, true, debugLabel, new B.ValueNotifier(false, new P.LinkedList(t1), type$.ValueNotifier_bool), new P.LinkedList(t1)); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, debugLabel, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, debugLabel, initialPixels, true, oldPosition, physics); return t1; }, ScrollPositionWithSingleContext: function ScrollPositionWithSingleContext(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._heldPreviousVelocity = 0; _._userScrollDirection = t0; _._currentDrag = null; _.physics = t1; _.context = t2; _.keepScrollOffset = t3; _.debugLabel = t4; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._semanticActions = _._scroll_position$_lastMetrics = null; _.isScrollingNotifier = t5; _._activity = null; _.ChangeNotifier__listeners = t6; }, Spacer: function Spacer(t0) { this.key = t0; }, Config: function Config(t0, t1, t2, t3, t4) { var _ = this; _.repo = t0; _.fileSystem = t1; _.stalePeriod = t2; _.maxNrOfCacheObjects = t3; _.fileService = t4; }, FileInfo: function FileInfo(t0, t1) { this.file = t0; this.validTill = t1; }, IconSlideAction$: function(caption, color, foregroundColor, icon, onTap) { return new R.IconSlideAction(icon, caption, foregroundColor, color, onTap, true, null); }, ClosableSlideAction: function ClosableSlideAction() { }, ClosableSlideAction_build_closure: function ClosableSlideAction_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, IconSlideAction: function IconSlideAction(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.icon = t0; _.caption = t1; _.foregroundColor = t2; _.color = t3; _.onTap = t4; _.closeOnTap = t5; _.key = t6; }, CustomSizeTransition$: function(alignment, axis, axisAlignment, child, sizeFactor) { return new R.CustomSizeTransition(axis, alignment, axisAlignment, child, sizeFactor, null); }, CustomSizeTransition: function CustomSizeTransition(t0, t1, t2, t3, t4, t5) { var _ = this; _.axis = t0; _.alignment = t1; _.axisAlignment = t2; _.child = t3; _.listenable = t4; _.key = t5; }, StyledToastTheme: function StyledToastTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.StyledToastTheme_child = t0; _.textAlign = t1; _.textDirection = t2; _.borderRadius = t3; _.backgroundColor = t4; _.textPadding = t5; _.textStyle = t6; _.shapeBorder = t7; _.duration = t8; _.animDuration = t9; _.toastPositions = t10; _.alignment = t11; _.axis = t12; _.startOffset = t13; _.endOffset = t14; _.reverseStartOffset = t15; _.reverseEndOffset = t16; _.toastAnimation = t17; _.reverseAnimation = t18; _.curve = t19; _.reverseCurve = t20; _.dismissOtherOnShow = t21; _.onDismiss = t22; _.fullWidth = t23; _.isHideKeyboard = t24; _.animationBuilder = t25; _.reverseAnimBuilder = t26; _.isIgnoring = t27; _.onInitState = t28; _.child = t29; _.key = t30; }, MediaType_MediaType$parse: function(mediaType) { return B.wrapFormatException("media type", mediaType, new R.MediaType_MediaType$parse_closure(mediaType)); }, MediaType$: function(type, subtype, parameters) { var t1 = type.toLowerCase(), t2 = subtype.toLowerCase(), t3 = type$.String; t3 = parameters == null ? P.LinkedHashMap_LinkedHashMap$_empty(t3, t3) : Z.CaseInsensitiveMap$from(parameters, t3); return new R.MediaType(t1, t2, new P.UnmodifiableMapView(t3, type$.UnmodifiableMapView_String_String)); }, MediaType: function MediaType(t0, t1, t2) { this.type = t0; this.subtype = t1; this.parameters = t2; }, MediaType_MediaType$parse_closure: function MediaType_MediaType$parse_closure(t0) { this.mediaType = t0; }, MediaType_toString_closure: function MediaType_toString_closure(t0) { this.buffer = t0; }, MediaType_toString__closure: function MediaType_toString__closure() { }, ImagePickerPlatform: function ImagePickerPlatform() { }, ExpenseCategoryEntity_ExpenseCategoryEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return R._$ExpenseCategoryEntity$_(0, "", "", 0, "", t1, false, false, "", 0); }, _$ExpenseCategoryEntity$_: function(archivedAt, assignedUserId, color, createdAt, createdUserId, id, isChanged, isDeleted, $name, updatedAt) { return new R._$ExpenseCategoryEntity($name, color, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ExpenseCategoryListResponse: function ExpenseCategoryListResponse() { }, ExpenseCategoryItemResponse: function ExpenseCategoryItemResponse() { }, ExpenseCategoryEntity: function ExpenseCategoryEntity() { }, _$ExpenseCategoryListResponseSerializer: function _$ExpenseCategoryListResponseSerializer() { }, _$ExpenseCategoryItemResponseSerializer: function _$ExpenseCategoryItemResponseSerializer() { }, _$ExpenseCategoryEntitySerializer: function _$ExpenseCategoryEntitySerializer() { }, _$ExpenseCategoryListResponse: function _$ExpenseCategoryListResponse(t0) { this.data = t0; this._expense_category_model$__hashCode = null; }, ExpenseCategoryListResponseBuilder: function ExpenseCategoryListResponseBuilder() { this._expense_category_model$_data = this._expense_category_model$_$v = null; }, _$ExpenseCategoryItemResponse: function _$ExpenseCategoryItemResponse(t0) { this.data = t0; this._expense_category_model$__hashCode = null; }, ExpenseCategoryItemResponseBuilder: function ExpenseCategoryItemResponseBuilder() { this._expense_category_model$_data = this._expense_category_model$_$v = null; }, _$ExpenseCategoryEntity: function _$ExpenseCategoryEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.color = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._expense_category_model$__hashCode = null; }, ExpenseCategoryEntityBuilder: function ExpenseCategoryEntityBuilder() { var _ = this; _._expense_category_model$_id = _._expense_category_model$_assignedUserId = _._expense_category_model$_createdUserId = _._expense_category_model$_isDeleted = _._expense_category_model$_archivedAt = _._expense_category_model$_updatedAt = _._expense_category_model$_createdAt = _._expense_category_model$_isChanged = _._expense_category_model$_color = _._expense_category_model$_name = _._expense_category_model$_$v = null; }, _ExpenseCategoryEntity_Object_BaseEntity: function _ExpenseCategoryEntity_Object_BaseEntity() { }, _ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity: function _ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity() { }, _createViewDashboard: function() { return new R._createViewDashboard_closure(); }, _createViewDashboard_closure: function _createViewDashboard_closure() { }, _createViewDashboard__closure: function _createViewDashboard__closure(t0, t1, t2) { this.store = t0; this.next = t1; this.action = t2; }, _createViewDashboard___closure: function _createViewDashboard___closure() { }, _editExpense: function() { return new R._editExpense_closure(); }, _viewExpense: function() { return new R._viewExpense_closure(); }, _viewExpenseList: function() { return new R._viewExpenseList_closure0(); }, _archiveExpense: function(repository) { return new R._archiveExpense_closure(repository); }, _deleteExpense: function(repository) { return new R._deleteExpense_closure(repository); }, _restoreExpense: function(repository) { return new R._restoreExpense_closure(repository); }, _saveExpense: function(repository) { return new R._saveExpense_closure(repository); }, _loadExpense: function(repository) { return new R._loadExpense_closure(repository); }, _loadExpenses: function(repository) { return new R._loadExpenses_closure(repository); }, _saveDocument2: function(repository) { return new R._saveDocument_closure8(repository); }, _editExpense_closure: function _editExpense_closure() { }, _viewExpense_closure: function _viewExpense_closure() { }, _viewExpenseList_closure0: function _viewExpenseList_closure0() { }, _viewExpenseList__closure: function _viewExpenseList__closure() { }, _archiveExpense_closure: function _archiveExpense_closure(t0) { this.repository = t0; }, _archiveExpense__closure: function _archiveExpense__closure(t0) { this.store = t0; }, _archiveExpense__closure0: function _archiveExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveExpense__closure1: function _archiveExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _deleteExpense_closure: function _deleteExpense_closure(t0) { this.repository = t0; }, _deleteExpense__closure: function _deleteExpense__closure(t0) { this.store = t0; }, _deleteExpense__closure0: function _deleteExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteExpense__closure1: function _deleteExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _restoreExpense_closure: function _restoreExpense_closure(t0) { this.repository = t0; }, _restoreExpense__closure: function _restoreExpense__closure(t0) { this.store = t0; }, _restoreExpense__closure0: function _restoreExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreExpense__closure1: function _restoreExpense__closure1(t0, t1, t2) { this.store = t0; this.prevExpenses = t1; this.action = t2; }, _saveExpense_closure: function _saveExpense_closure(t0) { this.repository = t0; }, _saveExpense__closure: function _saveExpense__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveExpense__closure0: function _saveExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpense_closure: function _loadExpense_closure(t0) { this.repository = t0; }, _loadExpense__closure: function _loadExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpense__closure0: function _loadExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenses_closure: function _loadExpenses_closure(t0) { this.repository = t0; }, _loadExpenses__closure: function _loadExpenses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenses__closure0: function _loadExpenses__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure8: function _saveDocument_closure8(t0) { this.repository = t0; }, _saveDocument__closure17: function _saveDocument__closure17(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure18: function _saveDocument__closure18(t0, t1) { this.store = t0; this.action = t1; }, _$ExpenseState$_: function(list, map) { var _s12_ = "ExpenseState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new R._$ExpenseState(map, list); }, _$ExpenseUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("ExpenseUIState", "listUIState")); return new R._$ExpenseUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ExpenseState: function ExpenseState() { }, ExpenseState_loadExpenses_closure0: function ExpenseState_loadExpenses_closure0() { }, ExpenseState_loadExpenses_closure1: function ExpenseState_loadExpenses_closure1() { }, ExpenseState_loadExpenses_closure: function ExpenseState_loadExpenses_closure(t0, t1) { this.$this = t0; this.map = t1; }, ExpenseUIState: function ExpenseUIState() { }, _$ExpenseStateSerializer: function _$ExpenseStateSerializer() { }, _$ExpenseUIStateSerializer: function _$ExpenseUIStateSerializer() { }, _$ExpenseState: function _$ExpenseState(t0, t1) { this.map = t0; this.list = t1; this._expense_state$__hashCode = null; }, ExpenseStateBuilder: function ExpenseStateBuilder() { this._expense_state$_list = this._expense_state$_map = this._expense_state$_$v = null; }, _$ExpenseUIState: function _$ExpenseUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._expense_state$__hashCode = null; }, ExpenseUIStateBuilder: function ExpenseUIStateBuilder() { var _ = this; _._expense_state$_cancelCompleter = _._expense_state$_saveCompleter = _._expense_state$_tabIndex = _._expense_state$_forceSelected = _._expense_state$_selectedId = _._expense_state$_listUIState = _._expense_state$_editing = _._expense_state$_$v = null; }, _ExpenseUIState_Object_EntityUIState: function _ExpenseUIState_Object_EntityUIState() { }, paymentUIReducer: function(state, action) { var t1; state.toString; t1 = new L.PaymentUIStateBuilder(); t1._payment_state$_$v = state; new R.paymentUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing6: function(payment, action) { return F.PaymentEntity_PaymentEntity(null, null, null); }, _updateEditing7: function(payment, action) { return action.get$payment(); }, _viewPaymentList0: function(paymentListState, action) { return paymentListState.rebuild$1(new R._viewPaymentList_closure()); }, _filterPaymentsByCustom1: function(paymentListState, action) { var t1 = paymentListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentListState.rebuild$1(new R._filterPaymentsByCustom1_closure(action)); else return paymentListState.rebuild$1(new R._filterPaymentsByCustom1_closure0(action)); }, _filterPaymentsByCustom2: function(paymentListState, action) { var t1 = paymentListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentListState.rebuild$1(new R._filterPaymentsByCustom2_closure(action)); else return paymentListState.rebuild$1(new R._filterPaymentsByCustom2_closure0(action)); }, _filterPaymentsByCustom3: function(paymentListState, action) { var t1 = paymentListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentListState.rebuild$1(new R._filterPaymentsByCustom3_closure(action)); else return paymentListState.rebuild$1(new R._filterPaymentsByCustom3_closure0(action)); }, _filterPaymentsByCustom4: function(paymentListState, action) { var t1 = paymentListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentListState.rebuild$1(new R._filterPaymentsByCustom4_closure(action)); else return paymentListState.rebuild$1(new R._filterPaymentsByCustom4_closure0(action)); }, _filterPaymentsByState: function(paymentListState, action) { var t1 = paymentListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return paymentListState.rebuild$1(new R._filterPaymentsByState_closure(action)); else return paymentListState.rebuild$1(new R._filterPaymentsByState_closure0(action)); }, _filterPayments: function(paymentListState, action) { return paymentListState.rebuild$1(new R._filterPayments_closure(action, paymentListState)); }, _sortPayments: function(paymentListState, action) { return paymentListState.rebuild$1(new R._sortPayments_closure(action)); }, _startListMultiselect8: function(paymentListState, action) { return paymentListState.rebuild$1(new R._startListMultiselect_closure0()); }, _addToListMultiselect8: function(paymentListState, action) { return paymentListState.rebuild$1(new R._addToListMultiselect_closure0(action)); }, _removeFromListMultiselect8: function(paymentListState, action) { return paymentListState.rebuild$1(new R._removeFromListMultiselect_closure0(action)); }, _clearListMultiselect8: function(paymentListState, action) { return paymentListState.rebuild$1(new R._clearListMultiselect_closure0()); }, _archivePaymentSuccess: function(paymentState, action) { return paymentState.rebuild$1(new R._archivePaymentSuccess_closure(action)); }, _deletePaymentSuccess: function(paymentState, action) { return paymentState.rebuild$1(new R._deletePaymentSuccess_closure(action)); }, _restorePaymentSuccess: function(paymentState, action) { return paymentState.rebuild$1(new R._restorePaymentSuccess_closure(action)); }, _addPayment: function(paymentState, action) { return paymentState.rebuild$1(new R._addPayment_closure(action)); }, _updatePayment: function(paymentState, action) { return paymentState.rebuild$1(new R._updatePayment_closure(action)); }, _setLoadedPayment: function(paymentState, action) { return paymentState.rebuild$1(new R._setLoadedPayment_closure(action)); }, _setLoadedPayments: function(paymentState, action) { return paymentState.loadPayments$1(action.payments); }, _setLoadedCompany7: function(paymentState, action) { return paymentState.loadPayments$1(action.userCompany.company.payments); }, paymentUIReducer_closure: function paymentUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure7: function forceSelectedReducer_closure7() { }, forceSelectedReducer_closure8: function forceSelectedReducer_closure8() { }, forceSelectedReducer_closure9: function forceSelectedReducer_closure9() { }, forceSelectedReducer_closure10: function forceSelectedReducer_closure10() { }, forceSelectedReducer_closure11: function forceSelectedReducer_closure11() { }, forceSelectedReducer_closure12: function forceSelectedReducer_closure12() { }, forceSelectedReducer_closure13: function forceSelectedReducer_closure13() { }, forceSelectedReducer_closure14: function forceSelectedReducer_closure14() { }, tabIndexReducer_closure1: function tabIndexReducer_closure1() { }, tabIndexReducer_closure2: function tabIndexReducer_closure2() { }, selectedIdReducer_closure18: function selectedIdReducer_closure18() { }, selectedIdReducer_closure19: function selectedIdReducer_closure19() { }, selectedIdReducer_closure20: function selectedIdReducer_closure20() { }, selectedIdReducer_closure21: function selectedIdReducer_closure21() { }, selectedIdReducer_closure22: function selectedIdReducer_closure22() { }, selectedIdReducer_closure23: function selectedIdReducer_closure23() { }, selectedIdReducer_closure24: function selectedIdReducer_closure24() { }, selectedIdReducer_closure25: function selectedIdReducer_closure25() { }, selectedIdReducer_closure26: function selectedIdReducer_closure26() { }, selectedIdReducer_closure27: function selectedIdReducer_closure27() { }, selectedIdReducer_closure28: function selectedIdReducer_closure28() { }, selectedIdReducer_closure29: function selectedIdReducer_closure29() { }, selectedIdReducer_closure30: function selectedIdReducer_closure30() { }, selectedIdReducer_closure31: function selectedIdReducer_closure31() { }, selectedIdReducer_closure32: function selectedIdReducer_closure32() { }, selectedIdReducer_closure33: function selectedIdReducer_closure33() { }, editingReducer_closure10: function editingReducer_closure10() { }, editingReducer_closure11: function editingReducer_closure11() { }, editingReducer_closure12: function editingReducer_closure12() { }, editingReducer_closure13: function editingReducer_closure13() { }, editingReducer__closure6: function editingReducer__closure6() { }, _viewPaymentList_closure: function _viewPaymentList_closure() { }, _filterPaymentsByCustom1_closure: function _filterPaymentsByCustom1_closure(t0) { this.action = t0; }, _filterPaymentsByCustom1_closure0: function _filterPaymentsByCustom1_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom2_closure: function _filterPaymentsByCustom2_closure(t0) { this.action = t0; }, _filterPaymentsByCustom2_closure0: function _filterPaymentsByCustom2_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom3_closure: function _filterPaymentsByCustom3_closure(t0) { this.action = t0; }, _filterPaymentsByCustom3_closure0: function _filterPaymentsByCustom3_closure0(t0) { this.action = t0; }, _filterPaymentsByCustom4_closure: function _filterPaymentsByCustom4_closure(t0) { this.action = t0; }, _filterPaymentsByCustom4_closure0: function _filterPaymentsByCustom4_closure0(t0) { this.action = t0; }, _filterPaymentsByState_closure: function _filterPaymentsByState_closure(t0) { this.action = t0; }, _filterPaymentsByState_closure0: function _filterPaymentsByState_closure0(t0) { this.action = t0; }, _filterPayments_closure: function _filterPayments_closure(t0, t1) { this.action = t0; this.paymentListState = t1; }, _sortPayments_closure: function _sortPayments_closure(t0) { this.action = t0; }, _startListMultiselect_closure0: function _startListMultiselect_closure0() { }, _addToListMultiselect_closure0: function _addToListMultiselect_closure0(t0) { this.action = t0; }, _removeFromListMultiselect_closure0: function _removeFromListMultiselect_closure0(t0) { this.action = t0; }, _clearListMultiselect_closure0: function _clearListMultiselect_closure0() { }, _archivePaymentSuccess_closure: function _archivePaymentSuccess_closure(t0) { this.action = t0; }, _deletePaymentSuccess_closure: function _deletePaymentSuccess_closure(t0) { this.action = t0; }, _restorePaymentSuccess_closure: function _restorePaymentSuccess_closure(t0) { this.action = t0; }, _addPayment_closure: function _addPayment_closure(t0) { this.action = t0; }, _updatePayment_closure: function _updatePayment_closure(t0) { this.action = t0; }, _setLoadedPayment_closure: function _setLoadedPayment_closure(t0) { this.action = t0; }, _editRecurringExpense: function() { return new R._editRecurringExpense_closure(); }, _viewRecurringExpense: function() { return new R._viewRecurringExpense_closure(); }, _viewRecurringExpenseList: function() { return new R._viewRecurringExpenseList_closure0(); }, _archiveRecurringExpense: function(repository) { return new R._archiveRecurringExpense_closure(repository); }, _deleteRecurringExpense: function(repository) { return new R._deleteRecurringExpense_closure(repository); }, _restoreRecurringExpense: function(repository) { return new R._restoreRecurringExpense_closure(repository); }, _saveRecurringExpense: function(repository) { return new R._saveRecurringExpense_closure(repository); }, _loadRecurringExpense: function(repository) { return new R._loadRecurringExpense_closure(repository); }, _loadRecurringExpenses: function(repository) { return new R._loadRecurringExpenses_closure(repository); }, _startRecurringExpense: function(repository) { return new R._startRecurringExpense_closure(repository); }, _stopRecurringExpense: function(repository) { return new R._stopRecurringExpense_closure(repository); }, _saveDocument8: function(repository) { return new R._saveDocument_closure2(repository); }, _editRecurringExpense_closure: function _editRecurringExpense_closure() { }, _viewRecurringExpense_closure: function _viewRecurringExpense_closure() { }, _viewRecurringExpenseList_closure0: function _viewRecurringExpenseList_closure0() { }, _viewRecurringExpenseList__closure: function _viewRecurringExpenseList__closure() { }, _archiveRecurringExpense_closure: function _archiveRecurringExpense_closure(t0) { this.repository = t0; }, _archiveRecurringExpense__closure: function _archiveRecurringExpense__closure(t0) { this.store = t0; }, _archiveRecurringExpense__closure0: function _archiveRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringExpense__closure1: function _archiveRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _deleteRecurringExpense_closure: function _deleteRecurringExpense_closure(t0) { this.repository = t0; }, _deleteRecurringExpense__closure: function _deleteRecurringExpense__closure(t0) { this.store = t0; }, _deleteRecurringExpense__closure0: function _deleteRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteRecurringExpense__closure1: function _deleteRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _restoreRecurringExpense_closure: function _restoreRecurringExpense_closure(t0) { this.repository = t0; }, _restoreRecurringExpense__closure: function _restoreRecurringExpense__closure(t0) { this.store = t0; }, _restoreRecurringExpense__closure0: function _restoreRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreRecurringExpense__closure1: function _restoreRecurringExpense__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringExpenses = t1; this.action = t2; }, _saveRecurringExpense_closure: function _saveRecurringExpense_closure(t0) { this.repository = t0; }, _saveRecurringExpense__closure: function _saveRecurringExpense__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveRecurringExpense__closure0: function _saveRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpense_closure: function _loadRecurringExpense_closure(t0) { this.repository = t0; }, _loadRecurringExpense__closure: function _loadRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpense__closure0: function _loadRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpenses_closure: function _loadRecurringExpenses_closure(t0) { this.repository = t0; }, _loadRecurringExpenses__closure: function _loadRecurringExpenses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringExpenses__closure0: function _loadRecurringExpenses__closure0(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringExpense_closure: function _startRecurringExpense_closure(t0) { this.repository = t0; }, _startRecurringExpense__closure: function _startRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringExpense__closure0: function _startRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringExpense_closure: function _stopRecurringExpense_closure(t0) { this.repository = t0; }, _stopRecurringExpense__closure: function _stopRecurringExpense__closure(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringExpense__closure0: function _stopRecurringExpense__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure2: function _saveDocument_closure2(t0) { this.repository = t0; }, _saveDocument__closure5: function _saveDocument__closure5(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure6: function _saveDocument__closure6(t0, t1) { this.store = t0; this.action = t1; }, _viewReports: function() { return new R._viewReports_closure(); }, _viewReports_closure: function _viewReports_closure() { }, _viewReports__closure: function _viewReports__closure(t0, t1, t2) { this.store = t0; this.next = t1; this.action = t2; }, _viewReports___closure: function _viewReports___closure() { }, AppHeader: function AppHeader(t0, t1, t2, t3, t4, t5) { var _ = this; _.label = t0; _.value = t1; _.secondLabel = t2; _.secondValue = t3; _.message = t4; _.key = t5; }, AppHeader_build__value1: function AppHeader_build__value1(t0, t1) { this.$this = t0; this.textColor = t1; }, AppHeader_build__value2: function AppHeader_build__value2(t0, t1) { this.$this = t0; this.textColor = t1; }, AppTabBar: function AppTabBar(t0, t1, t2, t3, t4) { var _ = this; _.tabs = t0; _.controller = t1; _.isScrollable = t2; _.onTap = t3; _.key = t4; }, ClientPicker$: function(clientId, clientState, onAddPressed, onSelected) { return new R.ClientPicker(clientId, clientState, onSelected, onAddPressed, null); }, ClientPicker: function ClientPicker(t0, t1, t2, t3, t4) { var _ = this; _.clientId = t0; _.clientState = t1; _.onSelected = t2; _.onAddPressed = t3; _.key = t4; }, ClientPicker_build_closure: function ClientPicker_build_closure(t0) { this.context = t0; }, TaxRateField: function TaxRateField(t0, t1, t2, t3, t4) { var _ = this; _.onNameChanged = t0; _.onAmountChanged = t1; _.initialTaxName = t2; _.initialTaxAmount = t3; _.key = t4; }, TaxRateField_build_closure: function TaxRateField_build_closure(t0) { this.$this = t0; }, TaxRateField_build_closure0: function TaxRateField_build_closure0(t0) { this.$this = t0; }, ClientEditBillingAddress: function ClientEditBillingAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditBillingAddressState: function ClientEditBillingAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._client_edit_billing_address$_address1Controller = t0; _._client_edit_billing_address$_address2Controller = t1; _._client_edit_billing_address$_cityController = t2; _._client_edit_billing_address$_stateController = t3; _._client_edit_billing_address$_postalCodeController = t4; _._client_edit_billing_address$_controllers = t5; _._client_edit_billing_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ClientEditBillingAddressState_didChangeDependencies_closure: function ClientEditBillingAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState_didChangeDependencies_closure0: function ClientEditBillingAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditBillingAddressState_dispose_closure: function ClientEditBillingAddressState_dispose_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState__onChanged_closure: function ClientEditBillingAddressState__onChanged_closure(t0) { this.$this = t0; }, ClientEditBillingAddressState__onChanged_closure0: function ClientEditBillingAddressState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditBillingAddressState_build_closure: function ClientEditBillingAddressState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditBillingAddressState_build__closure0: function ClientEditBillingAddressState_build__closure0(t0) { this.country = t0; }, ClientEditBillingAddressState_build_closure0: function ClientEditBillingAddressState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, ClientEditBillingAddressState_build__closure: function ClientEditBillingAddressState_build__closure(t0) { this.$this = t0; }, ClientEditContacts: function ClientEditContacts(t0, t1, t2) { this.viewModel = t0; this.clientViewModel = t1; this.key = t2; }, _ClientEditContactsState: function _ClientEditContactsState(t0) { var _ = this; _._widget = _.selectedContact = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ClientEditContactsState__showContactEditor_closure: function _ClientEditContactsState__showContactEditor_closure(t0, t1) { this.$this = t0; this.contact = t1; }, _ClientEditContactsState__showContactEditor__closure: function _ClientEditContactsState__showContactEditor__closure(t0) { this.contact = t0; }, _ClientEditContactsState_build_closure: function _ClientEditContactsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _ClientEditContactsState_build__closure: function _ClientEditContactsState_build__closure(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientEditContactsState_build_closure0: function _ClientEditContactsState_build_closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientEditContactsState_build_closure1: function _ClientEditContactsState_build_closure1(t0) { this.viewModel = t0; }, ContactListTile0: function ContactListTile0(t0, t1, t2) { this.onTap = t0; this.contact = t1; this.key = t2; }, ContactEditDetails: function ContactEditDetails(t0, t1, t2, t3, t4, t5) { var _ = this; _.index = t0; _.contact = t1; _.viewModel = t2; _.clientViewModel = t3; _.isDialog = t4; _.key = t5; }, ContactEditDetailsState: function ContactEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._client_edit_contacts$_firstNameController = t0; _._client_edit_contacts$_lastNameController = t1; _._client_edit_contacts$_emailController = t2; _._client_edit_contacts$_passwordController = t3; _._client_edit_contacts$_phoneController = t4; _._client_edit_contacts$_custom1Controller = t5; _._client_edit_contacts$_custom2Controller = t6; _._client_edit_contacts$_custom3Controller = t7; _._client_edit_contacts$_custom4Controller = t8; _._client_edit_contacts$_debouncer = t9; _._client_edit_contacts$_controllers = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ContactEditDetailsState_didChangeDependencies_closure: function ContactEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ContactEditDetailsState_didChangeDependencies_closure0: function ContactEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ContactEditDetailsState_dispose_closure: function ContactEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ContactEditDetailsState__onChanged_closure: function ContactEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ContactEditDetailsState__onChanged_closure0: function ContactEditDetailsState__onChanged_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.contact = t2; }, ContactEditDetailsState_build_closure0: function ContactEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, ContactEditDetailsState_build_closure: function ContactEditDetailsState_build_closure(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure2: function ContactEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, ContactEditDetailsState_build_closure1: function ContactEditDetailsState_build_closure1(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure4: function ContactEditDetailsState_build_closure4(t0) { this.localization = t0; }, ContactEditDetailsState_build_closure3: function ContactEditDetailsState_build_closure3(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure6: function ContactEditDetailsState_build_closure6(t0) { this.localization = t0; }, ContactEditDetailsState_build_closure5: function ContactEditDetailsState_build_closure5(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure7: function ContactEditDetailsState_build_closure7(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure8: function ContactEditDetailsState_build_closure8(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure9: function ContactEditDetailsState_build_closure9(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure10: function ContactEditDetailsState_build_closure10(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure11: function ContactEditDetailsState_build_closure11(t0) { this.$this = t0; }, ContactEditDetailsState_build_closure12: function ContactEditDetailsState_build_closure12(t0, t1) { this.$this = t0; this.context = t1; }, ContactEditDetailsState_build__closure: function ContactEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, ContactEditDetailsState_build_closure13: function ContactEditDetailsState_build_closure13(t0) { this.$this = t0; }, ClientEditShippingAddress: function ClientEditShippingAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditShippingAddressState: function ClientEditShippingAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._shippingAddress1Controller = t0; _._shippingAddress2Controller = t1; _._shippingCityController = t2; _._shippingStateController = t3; _._shippingPostalCodeController = t4; _._client_edit_shipping_address$_controllers = t5; _._client_edit_shipping_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ClientEditShippingAddressState_didChangeDependencies_closure: function ClientEditShippingAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState_didChangeDependencies_closure0: function ClientEditShippingAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditShippingAddressState_dispose_closure: function ClientEditShippingAddressState_dispose_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState__onChanged_closure: function ClientEditShippingAddressState__onChanged_closure(t0) { this.$this = t0; }, ClientEditShippingAddressState__onChanged_closure0: function ClientEditShippingAddressState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditShippingAddressState_build_closure: function ClientEditShippingAddressState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditShippingAddressState_build__closure0: function ClientEditShippingAddressState_build__closure0(t0) { this.country = t0; }, ClientEditShippingAddressState_build_closure0: function ClientEditShippingAddressState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, ClientEditShippingAddressState_build__closure: function ClientEditShippingAddressState_build__closure(t0) { this.$this = t0; }, ClientViewActivity: function ClientViewActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewActivityState: function _ClientViewActivityState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ClientViewActivityState_build_closure0: function _ClientViewActivityState_build_closure0() { }, _ClientViewActivityState_build_closure: function _ClientViewActivityState_build_closure(t0) { this.activities = t0; }, CreditScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).creditState.toString; t5 = $.$get$memoizedFilteredCreditList(); t6 = state.getUISelection$1(C.EntityType_credit); t7 = t4.$index(t1, t3).creditState.map; t8 = t4.$index(t1, t3).creditState.list; t9 = t4.$index(t1, t3).clientState.map; t2 = t2.creditUIState.listUIState; t9 = t5.call$6(t6, t7, t8, t9, t2, t4.$index(t1, t3).userState.map); t4.$index(t1, t3).toString; t2.toString; return new R.CreditScreenVM(t9); }, CreditScreenBuilder: function CreditScreenBuilder(t0) { this.key = t0; }, CreditScreenBuilder_build_closure: function CreditScreenBuilder_build_closure() { }, CreditScreenVM: function CreditScreenVM(t0) { this.creditList = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore: function(store, isTasks) { var t1 = store.get$_store$_state(), t2 = store.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new R.CreditEditItemsVM(t1, J.$index$asx(t3._list, t2).userCompany.company, store.get$_store$_state().uiState.creditUIState.editing, store.get$_store$_state().uiState.creditUIState.editingItemIndex, new R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure(store), new R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0(store), new R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1(store, isTasks), new R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2(store)); }, CreditEditItemsScreen: function CreditEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, CreditEditItemsScreen_build_closure0: function CreditEditItemsScreen_build_closure0(t0) { this.$this = t0; }, CreditEditItemsScreen_build_closure: function CreditEditItemsScreen_build_closure(t0) { this.$this = t0; }, CreditEditItemsVM: function CreditEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure(t0) { this.store = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, CreditEditItemsVM_CreditEditItemsVM$fromStore__closure: function CreditEditItemsVM_CreditEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2: function CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, PaymentListVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userCompany.user; t6 = $.$get$memoizedFilteredPaymentList(); t7 = state.getUISelection$1(C.EntityType_payment); t8 = t4.$index(t1, t3).paymentState.map; t9 = t4.$index(t1, t3).paymentState.list; t10 = t4.$index(t1, t3).invoiceState.map; t11 = t4.$index(t1, t3).clientState.map; t12 = t4.$index(t1, t3).userState.map; t2 = t2.paymentUIState.listUIState; t12 = t6.call$7(t7, t8, t9, t10, t11, t12, t2); t4.$index(t1, t3).paymentState.toString; t4.$index(t1, t3).clientState.toString; t2 = t2.filter; t11 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_payment); if (t11 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "invoice_number", "date", "type", "transaction_reference"], type$.JSArray_legacy_String); } else t1 = t11; return new R.PaymentListVM(state, t5, t12, t2, new R.PaymentListVM_fromStore_closure(new R.PaymentListVM_fromStore__handleRefresh(store)), t1, new R.PaymentListVM_fromStore_closure0(store), new R.PaymentListVM_fromStore_closure1(store)); }, PaymentListBuilder: function PaymentListBuilder(t0) { this.key = t0; }, PaymentListBuilder_build_closure: function PaymentListBuilder_build_closure() { }, PaymentListBuilder_build__closure: function PaymentListBuilder_build__closure(t0) { this.viewModel = t0; }, PaymentListVM: function PaymentListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.user = t1; _.paymentList = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, PaymentListVM_fromStore__handleRefresh: function PaymentListVM_fromStore__handleRefresh(t0) { this.store = t0; }, PaymentListVM_fromStore_closure: function PaymentListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentListVM_fromStore_closure0: function PaymentListVM_fromStore_closure0(t0) { this.store = t0; }, PaymentListVM_fromStore_closure1: function PaymentListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore: function(store, isTasks) { var t1 = store.get$_store$_state(), t2 = store.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new R.RecurringInvoiceEditItemsVM(t1, J.$index$asx(t3._list, t2).userCompany.company, store.get$_store$_state().uiState.recurringInvoiceUIState.editing, store.get$_store$_state().uiState.recurringInvoiceUIState.editingItemIndex, new R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure(store), new R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0(store), new R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1(store, isTasks), new R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2(store)); }, RecurringInvoiceEditItemsScreen: function RecurringInvoiceEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, RecurringInvoiceEditItemsScreen_build_closure0: function RecurringInvoiceEditItemsScreen_build_closure0(t0) { this.$this = t0; }, RecurringInvoiceEditItemsScreen_build_closure: function RecurringInvoiceEditItemsScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceEditItemsVM: function RecurringInvoiceEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2: function RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, documentReport: function(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap) { var t2, reportSettings, documentReportSettings, defaultColumns, t3, t4, t5, selectedColumns, _s8_ = "document", t1 = {}, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement); t1.columns = null; t2 = X.AppLocalization_createLocale(B.defaultLocale()).toString$0(0); reportSettings = userCompany.settings.reportSettings; documentReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s8_) ? J.$index$asx(reportSettings._map$_map, _s8_) : A.ReportSettingsEntity_ReportSettingsEntity(null, null); defaultColumns = H.setRuntimeTypeInfo([C.DocumentReportFields_5, C.DocumentReportFields_6, C.DocumentReportFields_0, C.DocumentReportFields_4], type$.JSArray_legacy_DocumentReportFields); t3 = documentReportSettings.columns._list; t4 = J.getInterceptor$asx(t3); t5 = type$.legacy_DocumentReportFields; if (t4.get$isNotEmpty(t3)) { t3 = t4.map$1$1(t3, new R.documentReport_closure(), t5).where$1(0, new R.documentReport_closure0()); t1.columns = D.BuiltList_BuiltList$from(P.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")), t5); } else t1.columns = D.BuiltList_BuiltList$from(defaultColumns, t5); t2 = new R.documentReport__getRow(t1, userMap, userCompany, reportsUIState, new X.AppLocalization(t2)); J.forEach$1$ax(clientMap._map$_map, new R.documentReport_closure1(t2, data)); J.forEach$1$ax(productMap._map$_map, new R.documentReport_closure2(t2, data)); J.forEach$1$ax(invoiceMap._map$_map, new R.documentReport_closure3(t2, data)); J.forEach$1$ax(quoteMap._map$_map, new R.documentReport_closure4(t2, data)); selectedColumns = J.map$1$1$ax(t1.columns._list, new R.documentReport_closure5(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new R.documentReport_closure6(documentReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_DocumentReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_usR, new R.documentReport_closure7(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new R.documentReport_closure8(), t1), true, t2), data, false); }, DocumentReportFields: function DocumentReportFields(t0) { this._document_report$_name = t0; }, memoizedDocumentReport_closure: function memoizedDocumentReport_closure() { }, documentReport_closure: function documentReport_closure() { }, documentReport_closure0: function documentReport_closure0() { }, documentReport__getRow: function documentReport__getRow(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.userMap = t1; _.userCompany = t2; _.reportsUIState = t3; _.localization = t4; }, documentReport_closure1: function documentReport_closure1(t0, t1) { this._getRow = t0; this.data = t1; }, documentReport__closure2: function documentReport__closure2(t0, t1, t2) { this._getRow = t0; this.client = t1; this.data = t2; }, documentReport_closure2: function documentReport_closure2(t0, t1) { this._getRow = t0; this.data = t1; }, documentReport__closure1: function documentReport__closure1(t0, t1, t2) { this._getRow = t0; this.product = t1; this.data = t2; }, documentReport_closure3: function documentReport_closure3(t0, t1) { this._getRow = t0; this.data = t1; }, documentReport__closure0: function documentReport__closure0(t0, t1, t2) { this._getRow = t0; this.invoice = t1; this.data = t2; }, documentReport_closure4: function documentReport_closure4(t0, t1) { this._getRow = t0; this.data = t1; }, documentReport__closure: function documentReport__closure(t0, t1, t2) { this._getRow = t0; this.quote = t1; this.data = t2; }, documentReport_closure5: function documentReport_closure5() { }, documentReport_closure6: function documentReport_closure6(t0, t1) { this.documentReportSettings = t0; this.selectedColumns = t1; }, documentReport_closure7: function documentReport_closure7() { }, documentReport_closure8: function documentReport_closure8() { }, DeviceSettings: function DeviceSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _DeviceSettingsState: function _DeviceSettingsState(t0, t1, t2) { var _ = this; _._device_settings$_formKey = t0; _._device_settings$_focusNode = _._device_settings$_controller = null; _.SingleTickerProviderStateMixin__ticker = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DeviceSettingsState_build_closure: function _DeviceSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure0: function _DeviceSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure1: function _DeviceSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure2: function _DeviceSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure3: function _DeviceSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure4: function _DeviceSettingsState_build_closure4() { }, _DeviceSettingsState_build_closure5: function _DeviceSettingsState_build_closure5(t0, t1, t2) { this.localization = t0; this.prefState = t1; this.viewModel = t2; }, _DeviceSettingsState_build__closure7: function _DeviceSettingsState_build__closure7(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure6: function _DeviceSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure7: function _DeviceSettingsState_build_closure7(t0, t1, t2) { this.localization = t0; this.state = t1; this.viewModel = t2; }, _DeviceSettingsState_build__closure6: function _DeviceSettingsState_build__closure6(t0, t1) { this.localization = t0; this.state = t1; }, _DeviceSettingsState_build__closure5: function _DeviceSettingsState_build__closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure8: function _DeviceSettingsState_build_closure8(t0, t1) { this.context = t0; this.viewModel = t1; }, _DeviceSettingsState_build__closure4: function _DeviceSettingsState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure9: function _DeviceSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure10: function _DeviceSettingsState_build_closure10() { }, _DeviceSettingsState_build_closure11: function _DeviceSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.context = t1; }, _DeviceSettingsState_build_closure12: function _DeviceSettingsState_build_closure12(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.prefState = t2; _.state = t3; }, _DeviceSettingsState_build__closure2: function _DeviceSettingsState_build__closure2() { }, _DeviceSettingsState_build__closure3: function _DeviceSettingsState_build__closure3(t0) { this.enableDarkMode = t0; }, _DeviceSettingsState_build_closure13: function _DeviceSettingsState_build_closure13(t0, t1, t2, t3) { var _ = this; _.localization = t0; _.prefState = t1; _.viewModel = t2; _.context = t3; }, _DeviceSettingsState_build__closure1: function _DeviceSettingsState_build__closure1(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.prefState = t2; _.selector = t3; }, _DeviceSettingsState_build___closure0: function _DeviceSettingsState_build___closure0(t0, t1) { this.selector = t0; this.value = t1; }, _DeviceSettingsState_build_closure14: function _DeviceSettingsState_build_closure14(t0, t1) { this.prefState = t0; this.localization = t1; }, _DeviceSettingsState_build__closure0: function _DeviceSettingsState_build__closure0(t0) { this.prefState = t0; }, _DeviceSettingsState_build_closure15: function _DeviceSettingsState_build_closure15(t0, t1, t2, t3) { var _ = this; _.context = t0; _.localization = t1; _.prefState = t2; _.viewModel = t3; }, _DeviceSettingsState_build__closure: function _DeviceSettingsState_build__closure(t0, t1, t2) { this.prefState = t0; this.viewModel = t1; this.context = t2; }, _DeviceSettingsState_build___closure: function _DeviceSettingsState_build___closure(t0, t1) { this.i = t0; this.colors = t1; }, __DeviceSettingsState_State_SingleTickerProviderStateMixin: function __DeviceSettingsState_State_SingleTickerProviderStateMixin() { }, SubscriptionEditVM_SubscriptionEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, subscription = t1.subscriptionUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).subscriptionState.map; t5 = subscription.id; J.$index$asx(t4._map$_map, t5); return new R.SubscriptionEditVM(subscription, t3.$index(t2, t1).userCompany.company, new R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure(store), new R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0(store, state), new R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1(state, store), state); }, SubscriptionEditScreen: function SubscriptionEditScreen(t0) { this.key = t0; }, SubscriptionEditScreen_build_closure0: function SubscriptionEditScreen_build_closure0() { }, SubscriptionEditScreen_build_closure: function SubscriptionEditScreen_build_closure() { }, SubscriptionEditVM: function SubscriptionEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.subscription = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure(t0) { this.store = t0; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0: function SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore__closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure(t0) { this.localization = t0; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.subscription = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1: function SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1() { }, SubscriptionEditVM_SubscriptionEditVM$fromStore____closure: function SubscriptionEditVM_SubscriptionEditVM$fromStore____closure(t0) { this.error = t0; }, SubscriptionPresenter: function SubscriptionPresenter() { this.context = this.entity = null; }, TaskEditDesktop: function TaskEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditDesktopState: function _TaskEditDesktopState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._task_edit_desktop$_numberController = t0; _._task_edit_desktop$_rateController = t1; _._task_edit_desktop$_descriptionController = t2; _._task_edit_desktop$_custom1Controller = t3; _._task_edit_desktop$_custom2Controller = t4; _._task_edit_desktop$_custom3Controller = t5; _._task_edit_desktop$_custom4Controller = t6; _._task_edit_desktop$_debouncer = t7; _._task_edit_desktop$_controllers = t8; _._task_edit_desktop$_durationUpdateAt = _._task_edit_desktop$_endTimeUpdatedAt = _._task_edit_desktop$_endDateUpdatedAt = _._task_edit_desktop$_startTimeUpdatedAt = _._task_edit_desktop$_startDateUpdatedAt = _._task_edit_desktop$_updatedAt = 0; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, _TaskEditDesktopState_didChangeDependencies_closure: function _TaskEditDesktopState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskEditDesktopState_didChangeDependencies_closure0: function _TaskEditDesktopState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskEditDesktopState_dispose_closure: function _TaskEditDesktopState_dispose_closure(t0) { this.$this = t0; }, _TaskEditDesktopState__onChanged_closure: function _TaskEditDesktopState__onChanged_closure(t0) { this.$this = t0; }, _TaskEditDesktopState__onChanged_closure0: function _TaskEditDesktopState__onChanged_closure0(t0, t1) { this.$this = t0; this.task = t1; }, _TaskEditDesktopState_build_closure: function _TaskEditDesktopState_build_closure() { }, _TaskEditDesktopState_build_closure0: function _TaskEditDesktopState_build_closure0() { }, _TaskEditDesktopState_build_closure2: function _TaskEditDesktopState_build_closure2(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDesktopState_build__closure8: function _TaskEditDesktopState_build__closure8(t0) { this.client = t0; }, _TaskEditDesktopState_build_closure1: function _TaskEditDesktopState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDesktopState_build_closure3: function _TaskEditDesktopState_build_closure3(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDesktopState_build__closure7: function _TaskEditDesktopState_build__closure7(t0, t1) { this.project = t0; this.task = t1; }, _TaskEditDesktopState_build_closure4: function _TaskEditDesktopState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDesktopState_build_closure5: function _TaskEditDesktopState_build_closure5(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDesktopState_build__closure6: function _TaskEditDesktopState_build__closure6(t0) { this.userId = t0; }, _TaskEditDesktopState_build_closure6: function _TaskEditDesktopState_build_closure6(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDesktopState_build__closure5: function _TaskEditDesktopState_build__closure5(t0) { this.taskStatus = t0; }, _TaskEditDesktopState_build_closure7: function _TaskEditDesktopState_build_closure7(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.showEndDate = t3; _.viewModel = t4; }, _TaskEditDesktopState_build__closure4: function _TaskEditDesktopState_build__closure4(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure8: function _TaskEditDesktopState_build_closure8(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure3: function _TaskEditDesktopState_build__closure3(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure9: function _TaskEditDesktopState_build_closure9(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure2: function _TaskEditDesktopState_build__closure2(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure10: function _TaskEditDesktopState_build_closure10(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure1: function _TaskEditDesktopState_build__closure1(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure11: function _TaskEditDesktopState_build_closure11(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.taskTimes = t1; _.index = t2; _.viewModel = t3; }, _TaskEditDesktopState_build__closure0: function _TaskEditDesktopState_build__closure0(t0) { this.$this = t0; }, _TaskEditDesktopState_build_closure12: function _TaskEditDesktopState_build_closure12(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.index = t2; }, _TaskEditDesktopState_build__closure: function _TaskEditDesktopState_build__closure(t0) { this.$this = t0; }, TaxRateViewVM_TaxRateViewVM$fromStore: function(store) { var t4, t5, taxRate, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).taxRateState.map; t2 = t2.taxRateUIState.selectedId; taxRate = J.$index$asx(t5._map$_map, t2); if (taxRate == null) taxRate = T.TaxRateEntity_TaxRateEntity(t2, null, null, null); t1 = t4.$index(t1, t3).userCompany.company; taxRate.get$isNew(); return new R.TaxRateViewVM(state, taxRate, t1, new R.TaxRateViewVM_TaxRateViewVM$fromStore_closure(store)); }, TaxRateViewScreen: function TaxRateViewScreen(t0) { this.key = t0; }, TaxRateViewScreen_build_closure0: function TaxRateViewScreen_build_closure0() { }, TaxRateViewScreen_build_closure: function TaxRateViewScreen_build_closure(t0) { this.$this = t0; }, TaxRateViewVM: function TaxRateViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.taxRate = t1; _.company = t2; _.onBackPressed = t3; }, TaxRateViewVM_TaxRateViewVM$fromStore_closure: function TaxRateViewVM_TaxRateViewVM$fromStore_closure(t0) { this.store = t0; }, TokenEditVM_TokenEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, token = t1.tokenUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).tokenState.map; t5 = token.id; J.$index$asx(t4._map$_map, t5); return new R.TokenEditVM(token, t3.$index(t2, t1).userCompany.company, new R.TokenEditVM_TokenEditVM$fromStore_closure(store), new R.TokenEditVM_TokenEditVM$fromStore_closure0(store, state), new R.TokenEditVM_TokenEditVM$fromStore_closure1(state, store), state); }, TokenEditScreen: function TokenEditScreen(t0) { this.key = t0; }, TokenEditScreen_build_closure0: function TokenEditScreen_build_closure0() { }, TokenEditScreen_build_closure: function TokenEditScreen_build_closure() { }, TokenEditVM: function TokenEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.token = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TokenEditVM_TokenEditVM$fromStore_closure: function TokenEditVM_TokenEditVM$fromStore_closure(t0) { this.store = t0; }, TokenEditVM_TokenEditVM$fromStore_closure1: function TokenEditVM_TokenEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, TokenEditVM_TokenEditVM$fromStore_closure0: function TokenEditVM_TokenEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TokenEditVM_TokenEditVM$fromStore__closure: function TokenEditVM_TokenEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, TokenEditVM_TokenEditVM$fromStore___closure: function TokenEditVM_TokenEditVM$fromStore___closure(t0, t1, t2) { this.store = t0; this.token = t1; this.state = t2; }, TokenEditVM_TokenEditVM$fromStore____closure: function TokenEditVM_TokenEditVM$fromStore____closure(t0, t1, t2, t3, t4) { var _ = this; _.token = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TokenEditVM_TokenEditVM$fromStore____closure0: function TokenEditVM_TokenEditVM$fromStore____closure0() { }, TokenEditVM_TokenEditVM$fromStore_____closure: function TokenEditVM_TokenEditVM$fromStore_____closure(t0) { this.error = t0; }, QrPainter: function QrPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.version = t0; _.errorCorrectionLevel = t1; _.color = t2; _.gapless = t3; _.embeddedImage = t4; _.embeddedImageStyle = t5; _.eyeStyle = t6; _.dataModuleStyle = t7; _._qr_painter$_qr = t8; _.__QrPainter__calcVersion = $; _._paintCache = t9; _._repaint = t10; }, _PaintMetrics: function _PaintMetrics(t0, t1, t2) { var _ = this; _.moduleCount = t0; _.containerSize = t1; _.gapSize = t2; _.___PaintMetrics__inset = _.___PaintMetrics__innerContentSize = _.___PaintMetrics__pixelSize = $; }, ElevationOverlay_applyOverlay: function(context, color, elevation) { var theme = K.Theme_of(context); if (elevation > 0) theme.toString; return color; }, getExchangeRate: function(currencyMap, fromCurrencyId, toCurrencyId) { var t1, t2, fromCurrency, toCurrency, baseCurrency; if (fromCurrencyId == null || toCurrencyId == null) return 1; t1 = currencyMap._map$_map; t2 = J.getInterceptor$asx(t1); fromCurrency = t2.$index(t1, fromCurrencyId); toCurrency = t2.$index(t1, toCurrencyId); baseCurrency = t2.$index(t1, "1"); if (J.$eq$(fromCurrency, baseCurrency)) return toCurrency.exchangeRate; if (J.$eq$(toCurrency, baseCurrency)) { t1 = fromCurrency == null ? null : fromCurrency.exchangeRate; return 1 / (t1 == null ? 1 : t1); } return toCurrency.exchangeRate * (1 / fromCurrency.exchangeRate); } }, T = { InputStream$: function(data, byteOrder, $length, start) { var t1, t2; if (type$.TypedData._is(data)) { t1 = J.getInterceptor$x(data); t1 = J.asUint8List$2$x(t1.get$buffer(data), t1.get$offsetInBytes(data), t1.get$lengthInBytes(data)); } else t1 = type$.List_int._is(data) ? data : P.List_List$from(data, true, type$.int); t2 = new T.InputStream(t1, start, start, byteOrder); t2.__InputStream__length = $length == null ? J.get$length$asx(t1) : $length; return t2; }, InputStreamBase: function InputStreamBase() { }, InputStream: function InputStream(t0, t1, t2, t3) { var _ = this; _.buffer = t0; _.offset = t1; _.start = t2; _.byteOrder = t3; _.__InputStream__length = $; }, Deflate__smaller: function(tree, n, m, depth) { var t1 = tree[n * 2], t2 = tree[m * 2]; if (t1 >= t2) t1 = t1 === t2 && depth[n] <= depth[m]; else t1 = true; return t1; }, _HuffmanTree$: function() { return new T._HuffmanTree(); }, _HuffmanTree__genCodes: function(tree, max_code, bl_count) { var code, bits, n, t1, len, t2, next_code = new Uint16Array(16); for (code = 0, bits = 1; bits <= 15; ++bits) { code = code + bl_count[bits - 1] << 1 >>> 0; next_code[bits] = code; } for (n = 0; n <= max_code; ++n) { t1 = n * 2; len = tree[t1 + 1]; if (len === 0) continue; t2 = next_code[len]; next_code[len] = t2 + 1; tree[t1] = T._HuffmanTree__reverseBits(t2, len); } }, _HuffmanTree__reverseBits: function(code, len) { var code0, res = 0; do { code0 = T._rshift(code, 1); res = (res | code & 1) << 1 >>> 0; if (--len, len > 0) { code = code0; continue; } else break; } while (true); return T._rshift(res, 1); }, _HuffmanTree__dCode: function(dist) { return dist < 256 ? C.List_AyI[dist] : C.List_AyI[256 + T._rshift(dist, 7)]; }, _StaticTree$: function(staticTree, extraBits, extraBase, numElements, maxLength) { return new T._StaticTree(staticTree, extraBits, extraBase, numElements, maxLength); }, _rshift: function(number, bits) { if (number >= 0) return C.JSInt_methods.$shr(number, bits); else return C.JSInt_methods.$shr(number, bits) + C.JSInt_methods._shlPositive$1(2, (~bits >>> 0) + 65536 & 65535); }, Deflate: function Deflate(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.total = _.crc32 = 0; _._deflate$_input = t0; _._output = t1; _._deflate$_status = null; _.__Deflate__pending = _.__Deflate__pendingOut = _.__Deflate__pendingBufferSize = _.__Deflate__pendingBuffer = $; _._dataType = 2; _.__Deflate__strStart = _.__Deflate__matchAvailable = _.__Deflate__prevMatch = _.__Deflate__matchLength = _.__Deflate__blockStart = _.__Deflate__hashShift = _.__Deflate__hashMask = _.__Deflate__hashBits = _.__Deflate__hashSize = _.__Deflate__insertHash = _.__Deflate__head = _.__Deflate__prev = _.__Deflate__actualWindowSize = _.__Deflate__window = _.__Deflate__windowMask = _.__Deflate__windowBits = _.__Deflate__windowSize = $; _._matchStart = 0; _.__Deflate__bitLengthTree = _.__Deflate__dynamicDistTree = _.__Deflate__dynamicLengthTree = _.__Deflate__strategy = _.__Deflate__level = _.__Deflate__prevLength = _.__Deflate__lookAhead = $; _._lDesc = t2; _._dDesc = t3; _._blDesc = t4; _._bitLengthCount = t5; _._heap = t6; _.__Deflate__heapMax = _.__Deflate__heapLen = $; _._deflate$_depth = t7; _.__Deflate__numValidBits = _.__Deflate__bitBuffer = _.__Deflate__lastEOBLen = _.__Deflate__matches = _.__Deflate__staticLen = _.__Deflate__optimalLen = _.__Deflate__dbuf = _.__Deflate__lastLit = _.__Deflate__litBufferSize = _.__Deflate__lbuf = $; }, _DeflaterConfig: function _DeflaterConfig(t0, t1, t2, t3, t4) { var _ = this; _.goodLength = t0; _.maxLazy = t1; _.niceLength = t2; _.maxChain = t3; _.$function = t4; }, _HuffmanTree: function _HuffmanTree() { this.___HuffmanTree_staticDesc = this.___HuffmanTree_maxCode = this.___HuffmanTree_dynamicTree = $; }, _StaticTree: function _StaticTree(t0, t1, t2, t3, t4) { var _ = this; _.staticTree = t0; _.extraBits = t1; _.extraBase = t2; _.numElements = t3; _.maxLength = t4; }, StandardJsonPlugin: function StandardJsonPlugin() { }, StandardJsonPlugin__toList_closure: function StandardJsonPlugin__toList_closure() { }, StandardJsonPlugin__toList_closure0: function StandardJsonPlugin__toList_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.keepNulls = t2; _.result = t3; _.hasEncodedKeys = t4; }, StandardJsonPlugin__toListUsingDiscriminator_closure: function StandardJsonPlugin__toListUsingDiscriminator_closure() { }, StandardJsonPlugin__toListUsingDiscriminator_closure0: function StandardJsonPlugin__toListUsingDiscriminator_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.result = t2; _.needToDecodeKeys = t3; }, _explodeReplace: function(string, start, end, internalReplacement, outerReplacement) { var t1, breaks, replacement, index; if (start === end) return J.replaceRange$3$asx(string, start, start, outerReplacement); t1 = J.substring$2$s(string, 0, start); breaks = new A.Breaks(string, end, start, 176); for (replacement = outerReplacement; index = breaks.nextBreak$0(), index >= 0; replacement = internalReplacement, start = index) t1 = t1 + replacement + C.JSString_methods.substring$2(string, start, index); t1 = t1 + outerReplacement + C.JSString_methods.substring$1(string, end); return t1.charCodeAt(0) == 0 ? t1 : t1; }, _indexOf: function(source, pattern, start, end) { var realEnd, t1, index, t2, patternLength = pattern.length; if (patternLength === 0) return start; realEnd = end - patternLength; if (realEnd < start) return -1; if (source.length - realEnd <= (realEnd - start) * 2) { t1 = J.getInterceptor$asx(source); index = 0; while (true) { if (start < realEnd) { index = t1.indexOf$2(source, pattern, start); t2 = index >= 0; } else t2 = false; if (!t2) break; if (index > realEnd) return -1; if (A.isGraphemeClusterBoundary(source, start, end, index) && A.isGraphemeClusterBoundary(source, start, end, index + patternLength)) return index; start = index + 1; } return -1; } return T._gcIndexOf(source, pattern, start, end); }, _gcIndexOf: function(source, pattern, start, end) { var t1, index, endIndex, breaks = new A.Breaks(source, end, start, 0); for (t1 = pattern.length; index = breaks.nextBreak$0(), index >= 0;) { endIndex = index + t1; if (endIndex > end) break; if (C.JSString_methods.startsWith$2(source, pattern, index) && A.isGraphemeClusterBoundary(source, start, end, endIndex)) return index; } return -1; }, StringCharacters: function StringCharacters(t0) { this.string = t0; }, StringCharacterRange: function StringCharacterRange(t0, t1, t2) { var _ = this; _._characters_impl$_string = t0; _._characters_impl$_start = t1; _._characters_impl$_end = t2; _._currentCache = null; }, BarRendererConfig$: function(barRendererDecorator, groupingType, $D) { var _null = null, t1 = new B.RoundedRectSymbolRenderer(1, true); return new T.BarRendererConfig(C.C_ConstCornerStrategy, barRendererDecorator, _null, t1, C.BarGroupingType_0, 10, 0, _null, _null, 1, 0, _null, new K.RendererAttributes(P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), _null, _null, _null, C.C_ViewMargin, $D._eval$1("BarRendererConfig<0>")); }, BarRendererConfig: function BarRendererConfig(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.cornerStrategy = t0; _.barRendererDecorator = t1; _.customRendererId = t2; _.symbolRenderer = t3; _.groupingType = t4; _.layoutPaintOrder = t5; _.minBarLengthPx = t6; _.maxBarWidthPx = t7; _.fillPattern = t8; _.stackedBarPaddingPx = t9; _.strokeWidthPx = t10; _.weightPattern = t11; _.rendererAttributes = t12; _.paintOrder = t13; _.position = t14; _.positionOrder = t15; _.viewMargin = t16; _.$ti = t17; }, ConstCornerStrategy: function ConstCornerStrategy() { }, _ReversedSeriesIterator$: function(list, $S) { var t1 = new T._ReversedSeriesIterator(list, H.setRuntimeTypeInfo([], type$.JSArray_int), $S._eval$1("_ReversedSeriesIterator<0>")); t1._ReversedSeriesIterator$1(list, $S); return t1; }, BaseBarRenderer: function BaseBarRenderer() { }, BaseBarRenderer_preprocessSeries_closure: function BaseBarRenderer_preprocessSeries_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.categoryToIndexMap = t2; _.posDomainToStackKeyToDetailsMap = t3; _.negDomainToStackKeyToDetailsMap = t4; }, BaseBarRenderer_preprocessSeries__closure0: function BaseBarRenderer_preprocessSeries__closure0(t0) { this.$this = t0; }, BaseBarRenderer_preprocessSeries__closure1: function BaseBarRenderer_preprocessSeries__closure1() { }, BaseBarRenderer_preprocessSeries__closure2: function BaseBarRenderer_preprocessSeries__closure2(t0) { this.elements = t0; }, BaseBarRenderer_preprocessSeries_closure0: function BaseBarRenderer_preprocessSeries_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.barWeights = t2; }, BaseBarRenderer_preprocessSeries__closure: function BaseBarRenderer_preprocessSeries__closure() { }, BaseBarRenderer_update_closure: function BaseBarRenderer_update_closure(t0) { this.$this = t0; }, BaseBarRenderer_update__closure: function BaseBarRenderer_update__closure(t0) { this.$this = t0; }, BaseBarRenderer_update__closure0: function BaseBarRenderer_update__closure0(t0, t1) { this.$this = t0; this.barKey = t1; }, BaseBarRenderer_update__closure1: function BaseBarRenderer_update__closure1() { }, BaseBarRenderer_update_closure0: function BaseBarRenderer_update_closure0(t0) { this.$this = t0; }, BaseBarRenderer_paint_closure: function BaseBarRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, BaseBarRenderer_paint__closure0: function BaseBarRenderer_paint__closure0(t0) { this.$this = t0; }, BaseBarRenderer_paint_closure0: function BaseBarRenderer_paint_closure0(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, BaseBarRenderer_paint_closure1: function BaseBarRenderer_paint_closure1(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, BaseBarRenderer_paint__closure: function BaseBarRenderer_paint__closure(t0, t1) { this.$this = t0; this.animationPercent = t1; }, BaseBarRenderer_getNearestDatumDetailPerSeries_closure: function BaseBarRenderer_getNearestDatumDetailPerSeries_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, BaseBarRenderer__getSegmentsForDomainValue_closure: function BaseBarRenderer__getSegmentsForDomainValue_closure() { }, BaseBarRenderer__getSegmentsForDomainValue_closure0: function BaseBarRenderer__getSegmentsForDomainValue_closure0(t0, t1, t2) { this.$this = t0; this.where = t1; this.matchingSegments = t2; }, BaseBarRenderer__getVerticalDetailsForDomainValue_closure: function BaseBarRenderer__getVerticalDetailsForDomainValue_closure(t0) { this.$this = t0; }, BaseBarRenderer__getVerticalDetailsForDomainValue_closure0: function BaseBarRenderer__getVerticalDetailsForDomainValue_closure0(t0, t1) { this.$this = t0; this.chartPoint = t1; }, _ReversedSeriesIterable: function _ReversedSeriesIterable(t0, t1) { this.seriesList = t0; this.$ti = t1; }, _ReversedSeriesIterator: function _ReversedSeriesIterator(t0, t1, t2) { var _ = this; _._base_bar_renderer$_list = t0; _._visitIndex = t1; _._base_bar_renderer$_current = null; _.$ti = t2; }, _ReversedSeriesIterator_closure: function _ReversedSeriesIterator_closure() { }, _ReversedSeriesIterator_closure0: function _ReversedSeriesIterator_closure0(t0) { this.$this = t0; }, AxisSpec: function AxisSpec() { }, TextStyleSpec: function TextStyleSpec(t0, t1) { this.fontSize = t0; this.color = t1; }, LineStyleSpec: function LineStyleSpec(t0) { this.color = t0; }, TickLabelAnchor: function TickLabelAnchor(t0) { this._axis_spec$_name = t0; }, TickLabelJustification: function TickLabelJustification() { }, NumericAxisSpec$: function(renderSpec) { var _null = null; return new T.NumericAxisSpec(_null, renderSpec, _null, _null, _null); }, NumericAxisSpec: function NumericAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, LineRenderer_LineRenderer: function(config, rendererId, $D) { var t1, t2, _null = null; if (config == null) { t1 = new B.LineSymbolRenderer(4, true); t1 = new X.LineRendererConfig(t1, new K.RendererAttributes(P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), _null, _null, _null, C.C_ViewMargin, $D._eval$1("LineRendererConfig<0>")); } else t1 = config; t2 = H.setRuntimeTypeInfo([], type$.JSArray_String); return new T.LineRenderer(t1, U.PointRenderer$(R.PointRendererConfig$(3.5, $D), _null, $D), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, $D._eval$1("List<_AnimatedElements<0>>")), t2, X.LayoutViewConfig$(20, C.LayoutPosition_8, 0), "line", t1.symbolRenderer, $D._eval$1("LineRenderer<0>")); }, _DatumPoint__DatumPoint$from: function(other, x, y, $D) { var t1 = other.datum, t2 = other.domain, t3 = other.series, t4 = other.index, t5 = x == null ? other.x : x, t6 = y == null ? other.y : y; return new T._DatumPoint(t1, t2, t3, t4, t5, t6, $D._eval$1("_DatumPoint<0>")); }, LineRenderer: function LineRenderer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.config = t0; _.__LineRenderer__pointRenderer = t1; _._line_renderer$_chart = null; _.__LineRenderer__hasMeasureBounds = $; _._seriesLineMap = t2; _._line_renderer$_currentKeys = t3; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t4; _.rendererId = t5; _.symbolRenderer = t6; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t7; }, LineRenderer_configureSeries_closure: function LineRenderer_configureSeries_closure(t0) { this.$this = t0; }, LineRenderer_configureSeries__closure: function LineRenderer_configureSeries__closure(t0, t1) { this.$this = t0; this.series = t1; }, LineRenderer_preprocessSeries_closure: function LineRenderer_preprocessSeries_closure(t0) { this.$this = t0; }, LineRenderer_preprocessSeries_closure0: function LineRenderer_preprocessSeries_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, LineRenderer_preprocessSeries__closure: function LineRenderer_preprocessSeries__closure(t0) { this.$this = t0; }, LineRenderer__mergeIntoSeriesMap_closure: function LineRenderer__mergeIntoSeriesMap_closure(t0, t1, t2) { this.$this = t0; this.seriesList = t1; this.newLineMap = t2; }, LineRenderer__mergeIntoSeriesMap__closure: function LineRenderer__mergeIntoSeriesMap__closure(t0, t1) { this.$this = t0; this.firstKey = t1; }, LineRenderer_update_closure: function LineRenderer_update_closure(t0, t1, t2) { this.$this = t0; this.previousPointList = t1; this.previousInitialPointList = t2; }, LineRenderer_update__closure: function LineRenderer_update__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.elementsList = t1; _.previousInitialPointList = t2; _.stackIndex = t3; _.series = t4; _.previousPointList = t5; }, LineRenderer_update___closure: function LineRenderer_update___closure(t0, t1) { this.$this = t0; this.styleKey = t1; }, LineRenderer_update_closure0: function LineRenderer_update_closure0(t0) { this.$this = t0; }, LineRenderer__createBoundsSegment_closure: function LineRenderer__createBoundsSegment_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.initializeFromZero = t1; _.measureAxis = t2; _.series = t3; }, LineRenderer__createBoundsSegment_closure0: function LineRenderer__createBoundsSegment_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.initializeFromZero = t1; _.measureAxis = t2; _.series = t3; }, LineRenderer_paint_closure: function LineRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, LineRenderer_paint__closure7: function LineRenderer_paint__closure7(t0) { this.$this = t0; }, LineRenderer_paint_closure0: function LineRenderer_paint_closure0(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, LineRenderer_paint__closure: function LineRenderer_paint__closure(t0) { this.$this = t0; }, LineRenderer_paint__closure0: function LineRenderer_paint__closure0(t0) { this.$this = t0; }, LineRenderer_paint__closure1: function LineRenderer_paint__closure1(t0, t1) { this.$this = t0; this.animationPercent = t1; }, LineRenderer_paint__closure2: function LineRenderer_paint__closure2(t0, t1) { this.$this = t0; this.canvas = t1; }, LineRenderer_paint__closure3: function LineRenderer_paint__closure3(t0) { this.$this = t0; }, LineRenderer_paint__closure4: function LineRenderer_paint__closure4(t0) { this.$this = t0; }, LineRenderer_paint__closure5: function LineRenderer_paint__closure5(t0, t1) { this.$this = t0; this.animationPercent = t1; }, LineRenderer_paint__closure6: function LineRenderer_paint__closure6(t0, t1) { this.$this = t0; this.canvas = t1; }, _DatumPoint: function _DatumPoint(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.index = t3; _.x = t4; _.y = t5; _.$ti = t6; }, _LineRendererElement: function _LineRendererElement(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.points = t0; _.color = t1; _.areaColor = t2; _.dashPattern = t3; _.domainExtent = t4; _.measureAxisPosition = t5; _.positionExtent = t6; _.strokeWidthPx = t7; _.styleKey = t8; _.roundEndCaps = t9; _.$ti = t10; }, _LineRendererElement_updateAnimationPercent__lastPoint_set: function _LineRendererElement_updateAnimationPercent__lastPoint_set(t0, t1) { this._box_0 = t0; this.$this = t1; }, _LineRendererElement_updateAnimationPercent__lastPoint_get: function _LineRendererElement_updateAnimationPercent__lastPoint_get(t0, t1) { this._box_0 = t0; this.$this = t1; }, _AnimatedLine: function _AnimatedLine(t0, t1, t2) { var _ = this; _.key = t0; _.overlaySeries = t1; _._previousLine = null; _.___AnimatedLine__targetLine = $; _._line_renderer$_currentLine = null; _.animatingOut = false; _.$ti = t2; }, _AreaRendererElement: function _AreaRendererElement(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.points = t0; _.color = t1; _.areaColor = t2; _.domainExtent = t3; _.measureAxisPosition = t4; _.positionExtent = t5; _.styleKey = t6; _.$ti = t7; }, _AreaRendererElement_updateAnimationPercent__lastPoint_set: function _AreaRendererElement_updateAnimationPercent__lastPoint_set(t0, t1) { this._box_0 = t0; this.$this = t1; }, _AreaRendererElement_updateAnimationPercent__lastPoint_get: function _AreaRendererElement_updateAnimationPercent__lastPoint_get(t0, t1) { this._box_0 = t0; this.$this = t1; }, _AnimatedArea: function _AnimatedArea(t0, t1, t2) { var _ = this; _.key = t0; _.overlaySeries = t1; _._previousArea = null; _.___AnimatedArea__targetArea = $; _._currentArea = null; _.animatingOut = false; _.$ti = t2; }, _AnimatedElements: function _AnimatedElements(t0, t1, t2, t3, t4, t5) { var _ = this; _.allPoints = t0; _.areas = t1; _.lines = t2; _.bounds = t3; _.styleKey = t4; _.$ti = t5; }, _Range: function _Range(t0, t1, t2) { this._line_renderer$_start = t0; this._line_renderer$_end = t1; this.$ti = t2; }, _FileSink__FileSink$fromFile: function(file, mode, encoding) { var _node_set, e, exception, t2, future, t1 = {}; t1._node0 = $; _node_set = new T._FileSink__FileSink$fromFile__node_set(t1); t1.deferredException = null; try { _node_set.call$1(file.get$_resolvedBackingOrCreate()); } catch (exception) { t2 = H.unwrapException(exception); if (type$.Exception._is(t2)) { e = t2; t1.deferredException = e; } else throw exception; } future = P.Future_Future$microtask(new T._FileSink__FileSink$fromFile_closure(t1, file, new T._FileSink__FileSink$fromFile__node_get(t1), mode), type$.FileNode); return new T._FileSink(new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void), future, encoding); }, MemoryFile: function MemoryFile(t0, t1) { this.fileSystem = t0; this.path = t1; }, MemoryFile__resolvedBackingOrCreate_closure: function MemoryFile__resolvedBackingOrCreate_closure(t0) { this.$this = t0; }, MemoryFile__resolvedBackingOrCreate_closure0: function MemoryFile__resolvedBackingOrCreate_closure0(t0) { this.$this = t0; }, MemoryFile__doCreate_closure: function MemoryFile__doCreate_closure(t0) { this.recursive = t0; }, _FileSink: function _FileSink(t0, t1, t2) { var _ = this; _._memory_file$_completer = t0; _._pendingWrites = t1; _._streamCompleter = null; _._isClosed = false; _.encoding = t2; }, _FileSink__FileSink$fromFile__node_set: function _FileSink__FileSink$fromFile__node_set(t0) { this._box_0 = t0; }, _FileSink__FileSink$fromFile__node_get: function _FileSink__FileSink$fromFile__node_get(t0) { this._box_0 = t0; }, _FileSink__FileSink$fromFile_closure: function _FileSink__FileSink$fromFile_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.file = t1; _._node_get = t2; _.mode = t3; }, _FileSink_addStream_finish: function _FileSink_addStream_finish(t0) { this.$this = t0; }, _FileSink_addStream_closure: function _FileSink_addStream_closure(t0) { this.$this = t0; }, _FileSink_addStream_closure0: function _FileSink_addStream_closure0(t0, t1) { this.$this = t0; this.finish = t1; }, _FileSink_close_closure: function _FileSink_close_closure(t0) { this.$this = t0; }, _FileSink_close_closure0: function _FileSink_close_closure0(t0) { this.$this = t0; }, _FileSink__addData_closure: function _FileSink__addData_closure(t0) { this.data = t0; }, PlatformFile: function PlatformFile(t0, t1, t2, t3) { var _ = this; _.path = t0; _.name = t1; _.bytes = t2; _.size = t3; }, CupertinoIconThemeData: function CupertinoIconThemeData(t0, t1, t2) { this.color = t0; this._opacity = t1; this.size = t2; }, _CupertinoIconThemeData_IconThemeData_Diagnosticable: function _CupertinoIconThemeData_IconThemeData_Diagnosticable() { }, TargetPlatform: function TargetPlatform(t0) { this._platform$_name = t0; }, LongPressGestureRecognizer$: function(debugOwner, duration, kind, postAcceptSlopTolerance) { var t1 = duration == null ? C.Duration_500000 : duration, t2 = type$.int; return new T.LongPressGestureRecognizer(t1, postAcceptSlopTolerance, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), P.HashSet_HashSet(t2), debugOwner, kind, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, LongPressStartDetails: function LongPressStartDetails(t0, t1) { this.globalPosition = t0; this.localPosition = t1; }, LongPressMoveUpdateDetails: function LongPressMoveUpdateDetails(t0, t1, t2) { this.globalPosition = t0; this.localPosition = t1; this.offsetFromOrigin = t2; }, LongPressEndDetails: function LongPressEndDetails(t0, t1) { this.localPosition = t0; this.velocity = t1; }, LongPressGestureRecognizer: function LongPressGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._longPressAccepted = false; _._velocityTracker = _.onSecondaryLongPressEnd = _.onSecondaryLongPressUp = _.onSecondaryLongPressMoveUpdate = _.onSecondaryLongPressStart = _.onSecondaryLongPress = _.onLongPressEnd = _.onLongPressUp = _.onLongPressMoveUpdate = _.onLongPressStart = _.onLongPress = _._long_press$_initialButtons = _._longPressOrigin = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _.state = t2; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, LongPressGestureRecognizer__checkLongPressStart_closure: function LongPressGestureRecognizer__checkLongPressStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, LongPressGestureRecognizer__checkLongPressMoveUpdate_closure: function LongPressGestureRecognizer__checkLongPressMoveUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, LongPressGestureRecognizer__checkLongPressEnd_closure: function LongPressGestureRecognizer__checkLongPressEnd_closure(t0, t1) { this.$this = t0; this.details = t1; }, ElevatedButtonThemeData_lerp: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new T.ElevatedButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, ElevatedButtonThemeData: function ElevatedButtonThemeData(t0) { this.style = t0; }, _ElevatedButtonThemeData_Object_Diagnosticable: function _ElevatedButtonThemeData_Object_Diagnosticable() { }, RadioThemeData__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new T._LerpProperties0(a, b, t, lerpFunction, $T._eval$1("_LerpProperties0<0>")); }, RadioThemeData: function RadioThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.mouseCursor = t0; _.fillColor = t1; _.overlayColor = t2; _.splashRadius = t3; _.materialTapTargetSize = t4; _.visualDensity = t5; }, _LerpProperties0: function _LerpProperties0(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _RadioThemeData_Object_Diagnosticable: function _RadioThemeData_Object_Diagnosticable() { }, UnderlineTabIndicator: function UnderlineTabIndicator(t0, t1) { this.borderSide = t0; this.insets = t1; }, _UnderlinePainter: function _UnderlinePainter(t0, t1) { this.decoration = t0; this.onChanged = t1; }, TextButtonThemeData_lerp: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new T.TextButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, TextButtonThemeData: function TextButtonThemeData(t0) { this.style = t0; }, _TextButtonThemeData_Object_Diagnosticable: function _TextButtonThemeData_Object_Diagnosticable() { }, TooltipThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.height; t3 = b == null; t2 = P.lerpDouble(t2, t3 ? _null : b.height, t); t4 = t1 ? _null : a.padding; t4 = V.EdgeInsetsGeometry_lerp(t4, t3 ? _null : b.padding, t); t5 = t1 ? _null : a.margin; t5 = V.EdgeInsetsGeometry_lerp(t5, t3 ? _null : b.margin, t); t6 = t1 ? _null : a.verticalOffset; t6 = P.lerpDouble(t6, t3 ? _null : b.verticalOffset, t); t7 = t < 0.5; if (t7) t8 = t1 ? _null : a.preferBelow; else t8 = t3 ? _null : b.preferBelow; if (t7) t7 = t1 ? _null : a.excludeFromSemantics; else t7 = t3 ? _null : b.excludeFromSemantics; t9 = t1 ? _null : a.decoration; t9 = Z.Decoration_lerp(t9, t3 ? _null : b.decoration, t); t1 = t1 ? _null : a.textStyle; return new T.TooltipThemeData(t2, t4, t5, t6, t8, t7, t9, A.TextStyle_lerp(t1, t3 ? _null : b.textStyle, t)); }, TooltipThemeData: function TooltipThemeData(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.height = t0; _.padding = t1; _.margin = t2; _.verticalOffset = t3; _.preferBelow = t4; _.excludeFromSemantics = t5; _.decoration = t6; _.textStyle = t7; }, _TooltipThemeData_Object_Diagnosticable: function _TooltipThemeData_Object_Diagnosticable() { }, Simulation: function Simulation() { }, DebugOverflowIndicatorMixin: function DebugOverflowIndicatorMixin() { }, PhysicalModelLayer$: function() { return new T.PhysicalModelLayer(C.Clip_0); }, FollowerLayer__collectTransformForLayerChain: function(layers) { var index, t1, result = new E.Matrix4(new Float64Array(16)); result.setIdentity$0(); for (index = layers.length - 1; index > 0; --index) { t1 = layers[index]; if (t1 != null) t1.applyTransform$2(layers[index - 1], result); } return result; }, FollowerLayer__pathsToCommonAncestor: function(a, b, ancestorsA, ancestorsB) { var t1, t2; if (a == null || b == null) return null; if (a === b) return a; t1 = a._node$_depth; t2 = b._node$_depth; if (t1 < t2) { t1 = type$.nullable_ContainerLayer; ancestorsB.push(t1._as(B.AbstractNode.prototype.get$parent.call(b, b))); return T.FollowerLayer__pathsToCommonAncestor(a, t1._as(B.AbstractNode.prototype.get$parent.call(b, b)), ancestorsA, ancestorsB); } else if (t1 > t2) { t1 = type$.nullable_ContainerLayer; ancestorsA.push(t1._as(B.AbstractNode.prototype.get$parent.call(a, a))); return T.FollowerLayer__pathsToCommonAncestor(t1._as(B.AbstractNode.prototype.get$parent.call(a, a)), b, ancestorsA, ancestorsB); } t1 = type$.nullable_ContainerLayer; ancestorsA.push(t1._as(B.AbstractNode.prototype.get$parent.call(a, a))); ancestorsB.push(t1._as(B.AbstractNode.prototype.get$parent.call(b, b))); return T.FollowerLayer__pathsToCommonAncestor(t1._as(B.AbstractNode.prototype.get$parent.call(a, a)), t1._as(B.AbstractNode.prototype.get$parent.call(b, b)), ancestorsA, ancestorsB); }, AnnotationEntry: function AnnotationEntry(t0, t1, t2) { this.annotation = t0; this.localPosition = t1; this.$ti = t2; }, AnnotationResult: function AnnotationResult(t0, t1) { this._layer$_entries = t0; this.$ti = t1; }, Layer0: function Layer0() { }, PictureLayer: function PictureLayer(t0) { var _ = this; _.canvasBounds = t0; _._picture = null; _._willChangeHint = _._isComplexHint = false; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, PlatformViewLayer: function PlatformViewLayer(t0, t1) { var _ = this; _.rect = t0; _.viewId = t1; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, PerformanceOverlayLayer: function PerformanceOverlayLayer(t0, t1, t2, t3, t4) { var _ = this; _._overlayRect = t0; _.optionsMask = t1; _.rasterizerThreshold = t2; _.checkerboardRasterCacheImages = t3; _.checkerboardOffscreenLayers = t4; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ContainerLayer0: function ContainerLayer0() { }, OffsetLayer: function OffsetLayer(t0) { var _ = this; _._layer$_offset = t0; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ClipRectLayer: function ClipRectLayer(t0) { var _ = this; _._clipRect = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ClipRRectLayer: function ClipRRectLayer(t0) { var _ = this; _._clipRRect = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ClipPathLayer: function ClipPathLayer(t0) { var _ = this; _._clipPath = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, TransformLayer: function TransformLayer(t0, t1) { var _ = this; _._layer$_transform = t0; _._invertedTransform = _._lastEffectiveTransform = null; _._inverseDirty = true; _._layer$_offset = t1; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, OpacityLayer: function OpacityLayer(t0) { var _ = this; _._layer$_alpha = null; _._layer$_offset = t0; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, PhysicalModelLayer: function PhysicalModelLayer(t0) { var _ = this; _._clipPath = null; _._layer$_clipBehavior = t0; _._lastChild = _._firstChild = _._layer$_shadowColor = _._layer$_color = _._layer$_elevation = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, LayerLink: function LayerLink() { this.leaderSize = this._leader = null; }, LeaderLayer: function LeaderLayer(t0, t1) { var _ = this; _._layer$_link = t0; _.offset = t1; _._lastChild = _._firstChild = _._lastOffset = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, FollowerLayer: function FollowerLayer(t0, t1, t2, t3) { var _ = this; _._layer$_link = t0; _.showWhenUnlinked = t1; _.unlinkedOffset = t2; _.linkedOffset = t3; _._invertedTransform = _._lastTransform = _._lastOffset = null; _._inverseDirty = true; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, AnnotatedRegionLayer: function AnnotatedRegionLayer(t0, t1, t2, t3) { var _ = this; _.value = t0; _.size = t1; _.offset = t2; _._lastChild = _._firstChild = null; _._needsAddToScene = true; _.debugCreator = _._previousSibling = _._nextSibling = _._engineLayer = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t3; }, _Layer_AbstractNode_DiagnosticableTreeMixin: function _Layer_AbstractNode_DiagnosticableTreeMixin() { }, RenderShiftedBox: function RenderShiftedBox() { }, RenderShiftedBox_hitTestChildren_closure: function RenderShiftedBox_hitTestChildren_closure(t0, t1, t2) { this.$this = t0; this.position = t1; this.childParentData = t2; }, RenderPadding: function RenderPadding(t0, t1, t2) { var _ = this; _._shifted_box$_resolvedPadding = null; _._shifted_box$_padding = t0; _._shifted_box$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAligningShiftedBox: function RenderAligningShiftedBox() { }, RenderPositionedBox: function RenderPositionedBox(t0, t1, t2, t3, t4) { var _ = this; _._widthFactor = t0; _._heightFactor = t1; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t2; _._shifted_box$_textDirection = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFractionallySizedOverflowBox: function RenderFractionallySizedOverflowBox(t0, t1, t2, t3, t4) { var _ = this; _._widthFactor = t0; _._heightFactor = t1; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t2; _._shifted_box$_textDirection = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, SingleChildLayoutDelegate: function SingleChildLayoutDelegate() { }, RenderCustomSingleChildLayoutBox: function RenderCustomSingleChildLayoutBox(t0, t1) { var _ = this; _._shifted_box$_delegate = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderShiftedBox_RenderBox_RenderObjectWithChildMixin: function _RenderShiftedBox_RenderBox_RenderObjectWithChildMixin() { }, RenderSliverEdgeInsetsPadding: function RenderSliverEdgeInsetsPadding() { }, RenderSliverPadding: function RenderSliverPadding(t0, t1, t2) { var _ = this; _._resolvedPadding = null; _._sliver_padding$_padding = t0; _._sliver_padding$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin: function _RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin() { }, Clipboard_setData: function(data) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$Clipboard_setData = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("Clipboard.setData", P.LinkedHashMap_LinkedHashMap$_literal(["text", data.text], type$.String, type$.dynamic), type$.void), $async$Clipboard_setData); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$Clipboard_setData, $async$completer); }, Clipboard_getData: function(format) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_ClipboardData), $async$returnValue, result; var $async$Clipboard_getData = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("Clipboard.getData", format, type$.Map_String_dynamic), $async$Clipboard_getData); case 3: // returning from await. result = $async$result; if (result == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$returnValue = new T.ClipboardData(H._asStringQ(J.$index$asx(result, "text"))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$Clipboard_getData, $async$completer); }, ClipboardData: function ClipboardData(t0) { this.text = t0; }, Directionality$: function(child, textDirection) { return new T.Directionality(textDirection, child, null); }, Directionality_maybeOf: function(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); return widget == null ? null : widget.textDirection; }, Opacity$: function(alwaysIncludeSemantics, child, opacity) { return new T.Opacity(opacity, false, child, null); }, CustomPaint$: function(child, foregroundPainter, key, painter, size) { return new T.CustomPaint(painter, foregroundPainter, size, child, key); }, ClipRect$: function(child) { return new T.ClipRect(child, null); }, ClipRRect$: function(borderRadius, child) { return new T.ClipRRect(borderRadius, child, null); }, ClipPath$: function(child, clipBehavior, clipper) { return new T.ClipPath(clipper, clipBehavior, child, null); }, PhysicalShape$: function(child, clipBehavior, clipper, color, elevation, shadowColor) { return new T.PhysicalShape(clipper, clipBehavior, elevation, color, shadowColor, child, null); }, Transform$: function(alignment, child, transform, transformHitTests) { return new T.Transform(transform, alignment, transformHitTests, child, null); }, Transform$rotate: function(angle, child) { return new T.Transform(E.Matrix4_Matrix4$rotationZ(angle), C.Alignment_0_0, true, child, null); }, CompositedTransformFollower$: function(child, link, offset, showWhenUnlinked, targetAnchor) { return new T.CompositedTransformFollower(link, false, targetAnchor, offset, child, null); }, FittedBox$: function(child) { return new T.FittedBox(child, null); }, FractionalTranslation$: function(child, transformHitTests, translation) { return new T.FractionalTranslation(translation, transformHitTests, child, null); }, Center$: function(child, heightFactor, widthFactor) { return new T.Center(C.Alignment_0_0, widthFactor, heightFactor, child, null); }, LayoutId$: function(child, id) { return new T.LayoutId(id, child, new D.ValueKey(id, type$.ValueKey_Object)); }, SizedBox$: function(child, height, width) { return new T.SizedBox(width, height, child, null); }, SizedBox$fromSize: function(child, size) { return new T.SizedBox(size._dx, size._dy, child, null); }, FractionallySizedBox$: function(alignment, child, heightFactor, widthFactor) { return new T.FractionallySizedBox(widthFactor, heightFactor, alignment, child, null); }, LimitedBox$: function(child, maxHeight, maxWidth) { return new T.LimitedBox(maxWidth, maxHeight, child, null); }, IntrinsicWidth$: function(child, stepWidth) { return new T.IntrinsicWidth(stepWidth, child, null); }, getAxisDirectionFromAxisReverseAndDirectionality: function(context, axis, reverse) { var t1, axisDirection; switch (axis) { case C.Axis_0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; axisDirection = G.textDirectionToAxisDirection(t1.textDirection); return reverse ? G.flipAxisDirection(axisDirection) : axisDirection; case C.Axis_1: return reverse ? C.AxisDirection_0 : C.AxisDirection_2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, ListBody$: function(children, mainAxis) { return new T.ListBody(mainAxis, children, null); }, Stack$: function(alignment, children, clipBehavior, fit, key, textDirection) { return new T.Stack(alignment, textDirection, fit, clipBehavior, children, key); }, Positioned$: function(bottom, child, height, key, left, right, $top, width) { return new T.Positioned(left, $top, right, bottom, width, height, child, key); }, Positioned$fill: function(child) { return new T.Positioned(0, 0, 0, 0, null, null, child, null); }, Positioned_Positioned$directional: function(bottom, child, end, height, start, textDirection, $top, width) { var right, left; switch (textDirection) { case C.TextDirection_0: right = start; left = end; break; case C.TextDirection_1: right = end; left = start; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return T.Positioned$(bottom, child, height, null, left, right, $top, width); }, Flex$: function(children, crossAxisAlignment, direction, key, mainAxisAlignment, mainAxisSize, textBaseline, textDirection, verticalDirection) { return new T.Flex(direction, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, verticalDirection, textBaseline, children, key); }, Row$: function(children, crossAxisAlignment, mainAxisAlignment, mainAxisSize, textDirection) { return new T.Row(C.Axis_0, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, C.VerticalDirection_1, null, children, null); }, Column$: function(children, crossAxisAlignment, key, mainAxisAlignment, mainAxisSize, verticalDirection) { return new T.Column(C.Axis_1, mainAxisAlignment, mainAxisSize, crossAxisAlignment, null, verticalDirection, null, children, key); }, Expanded$: function(child, flex) { return new T.Expanded(flex, C.FlexFit_0, child, null); }, RichText$: function(locale, maxLines, overflow, softWrap, strutStyle, text, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis) { return new T.RichText(text, textAlign, textDirection, softWrap, overflow, textScaleFactor, maxLines, locale, strutStyle, textWidthBasis, textHeightBehavior, T.RichText__extractChildren(text), null); }, RichText__extractChildren: function(span) { var result, t1 = {}; t1.index = 0; result = H.setRuntimeTypeInfo([], type$.JSArray_Widget); span.visitChildren$1(new T.RichText__extractChildren_closure(t1, result)); return result; }, Listener$: function(behavior, child, onPointerCancel, onPointerDown, onPointerMove, onPointerSignal, onPointerUp) { return new T.Listener(onPointerDown, onPointerMove, onPointerUp, onPointerCancel, onPointerSignal, behavior, child, null); }, AbsorbPointer$: function(absorbing, child) { return new T.AbsorbPointer(absorbing, child, null); }, BlockSemantics$: function(child) { return new T.BlockSemantics(child, null); }, KeyedSubtree_KeyedSubtree$wrap: function(child, childIndex) { var t1 = child.key; return new T.KeyedSubtree(child, t1 != null ? new D.ValueKey(t1, type$.ValueKey_Key) : new D.ValueKey(childIndex, type$.ValueKey_int)); }, KeyedSubtree_ensureUniqueKeysForList: function(items) { var itemsWithUniqueKeys, t2, t3, itemIndex, _i, item, t4, t1 = items.length; if (t1 === 0) return items; itemsWithUniqueKeys = H.setRuntimeTypeInfo([], type$.JSArray_Widget); for (t1 = items.length, t2 = type$.ValueKey_int, t3 = type$.ValueKey_Key, itemIndex = 0, _i = 0; _i < items.length; items.length === t1 || (0, H.throwConcurrentModificationError)(items), ++_i) { item = items[_i]; t4 = item.key; itemsWithUniqueKeys.push(new T.KeyedSubtree(item, t4 != null ? new D.ValueKey(t4, t3) : new D.ValueKey(itemIndex, t2))); ++itemIndex; } return itemsWithUniqueKeys; }, Directionality: function Directionality(t0, t1, t2) { this.textDirection = t0; this.child = t1; this.key = t2; }, Opacity: function Opacity(t0, t1, t2, t3) { var _ = this; _.opacity = t0; _.alwaysIncludeSemantics = t1; _.child = t2; _.key = t3; }, CustomPaint: function CustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.painter = t0; _.foregroundPainter = t1; _.size = t2; _.child = t3; _.key = t4; }, ClipRect: function ClipRect(t0, t1) { this.child = t0; this.key = t1; }, ClipRRect: function ClipRRect(t0, t1, t2) { this.borderRadius = t0; this.child = t1; this.key = t2; }, ClipOval: function ClipOval(t0, t1) { this.child = t0; this.key = t1; }, ClipPath: function ClipPath(t0, t1, t2, t3) { var _ = this; _.clipper = t0; _.clipBehavior = t1; _.child = t2; _.key = t3; }, PhysicalModel: function PhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.shape = t0; _.clipBehavior = t1; _.borderRadius = t2; _.elevation = t3; _.color = t4; _.shadowColor = t5; _.child = t6; _.key = t7; }, PhysicalShape: function PhysicalShape(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.clipper = t0; _.clipBehavior = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.child = t5; _.key = t6; }, Transform: function Transform(t0, t1, t2, t3, t4) { var _ = this; _.transform = t0; _.alignment = t1; _.transformHitTests = t2; _.child = t3; _.key = t4; }, CompositedTransformTarget: function CompositedTransformTarget(t0, t1, t2) { this.link = t0; this.child = t1; this.key = t2; }, CompositedTransformFollower: function CompositedTransformFollower(t0, t1, t2, t3, t4, t5) { var _ = this; _.link = t0; _.showWhenUnlinked = t1; _.targetAnchor = t2; _.offset = t3; _.child = t4; _.key = t5; }, FittedBox: function FittedBox(t0, t1) { this.child = t0; this.key = t1; }, FractionalTranslation: function FractionalTranslation(t0, t1, t2, t3) { var _ = this; _.translation = t0; _.transformHitTests = t1; _.child = t2; _.key = t3; }, Padding: function Padding(t0, t1, t2) { this.padding = t0; this.child = t1; this.key = t2; }, Align: function Align(t0, t1, t2, t3, t4) { var _ = this; _.alignment = t0; _.widthFactor = t1; _.heightFactor = t2; _.child = t3; _.key = t4; }, Center: function Center(t0, t1, t2, t3, t4) { var _ = this; _.alignment = t0; _.widthFactor = t1; _.heightFactor = t2; _.child = t3; _.key = t4; }, CustomSingleChildLayout: function CustomSingleChildLayout(t0, t1, t2) { this.delegate = t0; this.child = t1; this.key = t2; }, LayoutId: function LayoutId(t0, t1, t2) { this.id = t0; this.child = t1; this.key = t2; }, CustomMultiChildLayout: function CustomMultiChildLayout(t0, t1, t2) { this.delegate = t0; this.children = t1; this.key = t2; }, SizedBox: function SizedBox(t0, t1, t2, t3) { var _ = this; _.width = t0; _.height = t1; _.child = t2; _.key = t3; }, ConstrainedBox: function ConstrainedBox(t0, t1, t2) { this.constraints = t0; this.child = t1; this.key = t2; }, FractionallySizedBox: function FractionallySizedBox(t0, t1, t2, t3, t4) { var _ = this; _.widthFactor = t0; _.heightFactor = t1; _.alignment = t2; _.child = t3; _.key = t4; }, LimitedBox: function LimitedBox(t0, t1, t2, t3) { var _ = this; _.maxWidth = t0; _.maxHeight = t1; _.child = t2; _.key = t3; }, Offstage: function Offstage(t0, t1, t2) { this.offstage = t0; this.child = t1; this.key = t2; }, _OffstageElement: function _OffstageElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._framework$_child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, AspectRatio: function AspectRatio(t0, t1, t2) { this.aspectRatio = t0; this.child = t1; this.key = t2; }, IntrinsicWidth: function IntrinsicWidth(t0, t1, t2) { this.stepWidth = t0; this.child = t1; this.key = t2; }, IntrinsicHeight: function IntrinsicHeight(t0, t1) { this.child = t0; this.key = t1; }, SliverPadding: function SliverPadding(t0, t1, t2) { this.padding = t0; this.child = t1; this.key = t2; }, ListBody: function ListBody(t0, t1, t2) { this.mainAxis = t0; this.children = t1; this.key = t2; }, Stack: function Stack(t0, t1, t2, t3, t4, t5) { var _ = this; _.alignment = t0; _.textDirection = t1; _.fit = t2; _.clipBehavior = t3; _.children = t4; _.key = t5; }, IndexedStack: function IndexedStack(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.index = t0; _.alignment = t1; _.textDirection = t2; _.fit = t3; _.clipBehavior = t4; _.children = t5; _.key = t6; }, Positioned: function Positioned(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; _.width = t4; _.height = t5; _.child = t6; _.key = t7; }, PositionedDirectional: function PositionedDirectional(t0, t1, t2, t3, t4, t5) { var _ = this; _.start = t0; _.top = t1; _.bottom = t2; _.width = t3; _.child = t4; _.key = t5; }, Flex: function Flex(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Row: function Row(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Column: function Column(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.direction = t0; _.mainAxisAlignment = t1; _.mainAxisSize = t2; _.crossAxisAlignment = t3; _.textDirection = t4; _.verticalDirection = t5; _.textBaseline = t6; _.children = t7; _.key = t8; }, Flexible: function Flexible(t0, t1, t2, t3) { var _ = this; _.flex = t0; _.fit = t1; _.child = t2; _.key = t3; }, Expanded: function Expanded(t0, t1, t2, t3) { var _ = this; _.flex = t0; _.fit = t1; _.child = t2; _.key = t3; }, Wrap: function Wrap(t0, t1, t2) { this.crossAxisAlignment = t0; this.children = t1; this.key = t2; }, RichText: function RichText(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.text = t0; _.textAlign = t1; _.textDirection = t2; _.softWrap = t3; _.overflow = t4; _.textScaleFactor = t5; _.maxLines = t6; _.locale = t7; _.strutStyle = t8; _.textWidthBasis = t9; _.textHeightBehavior = t10; _.children = t11; _.key = t12; }, RichText__extractChildren_closure: function RichText__extractChildren_closure(t0, t1) { this._box_0 = t0; this.result = t1; }, RawImage: function RawImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.image = t0; _.debugImageLabel = t1; _.width = t2; _.height = t3; _.scale = t4; _.color = t5; _.filterQuality = t6; _.colorBlendMode = t7; _.fit = t8; _.alignment = t9; _.repeat = t10; _.centerSlice = t11; _.matchTextDirection = t12; _.invertColors = t13; _.isAntiAlias = t14; _.key = t15; }, Listener: function Listener(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onPointerDown = t0; _.onPointerMove = t1; _.onPointerUp = t2; _.onPointerCancel = t3; _.onPointerSignal = t4; _.behavior = t5; _.child = t6; _.key = t7; }, MouseRegion: function MouseRegion(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onEnter = t0; _.onHover = t1; _.onExit = t2; _.cursor = t3; _.opaque = t4; _.child = t5; _.key = t6; }, _MouseRegionState: function _MouseRegionState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _RawMouseRegion: function _RawMouseRegion(t0, t1, t2) { this.owner = t0; this.child = t1; this.key = t2; }, RepaintBoundary: function RepaintBoundary(t0, t1) { this.child = t0; this.key = t1; }, IgnorePointer: function IgnorePointer(t0, t1, t2, t3) { var _ = this; _.ignoring = t0; _.ignoringSemantics = t1; _.child = t2; _.key = t3; }, AbsorbPointer: function AbsorbPointer(t0, t1, t2) { this.absorbing = t0; this.child = t1; this.key = t2; }, Semantics: function Semantics(t0, t1, t2, t3, t4, t5) { var _ = this; _.properties = t0; _.container = t1; _.explicitChildNodes = t2; _.excludeSemantics = t3; _.child = t4; _.key = t5; }, MergeSemantics: function MergeSemantics(t0, t1) { this.child = t0; this.key = t1; }, BlockSemantics: function BlockSemantics(t0, t1) { this.child = t0; this.key = t1; }, ExcludeSemantics: function ExcludeSemantics(t0, t1, t2) { this.excluding = t0; this.child = t1; this.key = t2; }, IndexedSemantics: function IndexedSemantics(t0, t1, t2) { this.index = t0; this.child = t1; this.key = t2; }, KeyedSubtree: function KeyedSubtree(t0, t1) { this.child = t0; this.key = t1; }, Builder: function Builder(t0, t1) { this.builder = t0; this.key = t1; }, ColoredBox: function ColoredBox(t0, t1, t2) { this.color = t0; this.child = t1; this.key = t2; }, _RenderColoredBox: function _RenderColoredBox(t0, t1, t2) { var _ = this; _._basic$_color = t0; _.behavior = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, Hero$: function(child, createRectTween, flightShuttleBuilder, placeholderBuilder, tag, transitionOnUserGestures) { return new T.Hero(tag, createRectTween, child, flightShuttleBuilder, placeholderBuilder, false, null); }, Hero__allHeroesFor: function(context, isUserGestureTransition, $navigator) { var result = P.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$._HeroState); context.visitChildren$1(new T.Hero__allHeroesFor_visitor($navigator, new T.Hero__allHeroesFor_inviteHero(result, isUserGestureTransition))); return result; }, _HeroFlightManifest__boundingBoxFor: function(context, ancestorContext) { var t2, t1 = context.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1.getTransformTo$1(0, ancestorContext == null ? null : ancestorContext.get$renderObject()); t1 = t1._box$_size; return T.MatrixUtils_transformRect(t2, new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); }, HeroFlightDirection: function HeroFlightDirection(t0) { this._heroes$_name = t0; }, Hero: function Hero(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.tag = t0; _.createRectTween = t1; _.child = t2; _.flightShuttleBuilder = t3; _.placeholderBuilder = t4; _.transitionOnUserGestures = t5; _.key = t6; }, Hero__allHeroesFor_inviteHero: function Hero__allHeroesFor_inviteHero(t0, t1) { this.result = t0; this.isUserGestureTransition = t1; }, Hero__allHeroesFor_visitor: function Hero__allHeroesFor_visitor(t0, t1) { this.navigator = t0; this.inviteHero = t1; }, _HeroState: function _HeroState(t0, t1) { var _ = this; _._heroes$_key = t0; _._placeholderSize = null; _._shouldIncludeChild = true; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _HeroState_startFlight_closure: function _HeroState_startFlight_closure(t0, t1) { this.$this = t0; this.box = t1; }, _HeroState_endFlight_closure: function _HeroState_endFlight_closure() { }, _HeroFlightManifest: function _HeroFlightManifest(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.type = t0; _.overlay = t1; _.navigatorSize = t2; _.fromRoute = t3; _.toRoute = t4; _.fromHero = t5; _.toHero = t6; _.createRectTween = t7; _.shuttleBuilder = t8; _.isUserGestureTransition = t9; _.isDiverted = t10; _.___HeroFlightManifest_isValid = _.___HeroFlightManifest_toHeroLocation = _.___HeroFlightManifest_fromHeroLocation = $; }, _HeroFlight: function _HeroFlight(t0, t1) { var _ = this; _.onFlightEnded = t0; _.___HeroFlight_heroRectTween = $; _.shuttle = null; _._heroOpacity = t1; _.___HeroFlight_manifest = _.___HeroFlight__proxyAnimation = $; _.overlayEntry = null; _._scheduledPerformAnimtationUpdate = _._aborted = false; }, _HeroFlight__buildOverlay_closure: function _HeroFlight__buildOverlay_closure(t0) { this.$this = t0; }, _HeroFlight__handleAnimationUpdate_delayedPerformAnimtationUpdate: function _HeroFlight__handleAnimationUpdate_delayedPerformAnimtationUpdate(t0, t1) { this.$this = t0; this.navigator = t1; }, HeroController: function HeroController(t0, t1) { this.createRectTween = t0; this._flights = t1; this._navigator$_navigator = null; }, HeroController_didStopUserGesture_isInvalidFlight: function HeroController_didStopUserGesture_isInvalidFlight() { }, HeroController__maybeStartHeroTransition_closure: function HeroController__maybeStartHeroTransition_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.from = t1; _.to = t2; _.animation = t3; _.flightType = t4; _.isUserGestureTransition = t5; }, IconThemeData_lerp: function(a, b, t) { var t4, _null = null, t1 = a == null, t2 = t1 ? _null : a.color, t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.get$opacity(a); t4 = P.lerpDouble(t4, t3 ? _null : b.get$opacity(b), t); t1 = t1 ? _null : a.size; return new T.IconThemeData(t2, t4, P.lerpDouble(t1, t3 ? _null : b.size, t)); }, IconThemeData: function IconThemeData(t0, t1, t2) { this.color = t0; this._opacity = t1; this.size = t2; }, _IconThemeData_Object_Diagnosticable: function _IconThemeData_Object_Diagnosticable() { }, ModalRoute_of: function(context, $T) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._ModalScopeStatus), t1 = widget == null ? null : widget.route; return $T._eval$1("ModalRoute<0>?")._as(t1); }, OverlayRoute: function OverlayRoute() { }, TransitionRoute: function TransitionRoute() { }, TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd: function TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd(t0, t1, t2) { this.$this = t0; this.nextTrain = t1; this.nextRoute = t2; }, TransitionRoute__updateSecondaryAnimation_closure: function TransitionRoute__updateSecondaryAnimation_closure(t0, t1, t2) { this._box_0 = t0; this.nextTrain = t1; this._jumpOnAnimationEnd = t2; }, TransitionRoute__updateSecondaryAnimation_closure0: function TransitionRoute__updateSecondaryAnimation_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.nextRoute = t2; }, TransitionRoute__setSecondaryAnimation_closure: function TransitionRoute__setSecondaryAnimation_closure(t0, t1) { this.$this = t0; this.animation = t1; }, LocalHistoryEntry: function LocalHistoryEntry(t0) { this.onRemove = t0; this._routes$_owner = null; }, LocalHistoryRoute: function LocalHistoryRoute() { }, LocalHistoryRoute_removeLocalHistoryEntry_closure: function LocalHistoryRoute_removeLocalHistoryEntry_closure(t0) { this.$this = t0; }, _DismissModalAction: function _DismissModalAction(t0, t1) { this.context = t0; this._actions$_listeners = t1; }, _ModalScopeStatus: function _ModalScopeStatus(t0, t1, t2, t3, t4) { var _ = this; _.isCurrent = t0; _.canPop = t1; _.route = t2; _.child = t3; _.key = t4; }, _ModalScope: function _ModalScope(t0, t1, t2) { this.route = t0; this.key = t1; this.$ti = t2; }, _ModalScopeState: function _ModalScopeState(t0, t1, t2, t3) { var _ = this; _._page = null; _.___ModalScopeState__listenable = $; _.focusScopeNode = t0; _.primaryScrollController = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; _.$ti = t3; }, _ModalScopeState__forceRebuildPage_closure: function _ModalScopeState__forceRebuildPage_closure(t0) { this.$this = t0; }, _ModalScopeState_build_closure: function _ModalScopeState_build_closure(t0) { this.$this = t0; }, _ModalScopeState_build_closure0: function _ModalScopeState_build_closure0(t0) { this.$this = t0; }, _ModalScopeState_build__closure0: function _ModalScopeState_build__closure0(t0) { this.$this = t0; }, _ModalScopeState_build___closure: function _ModalScopeState_build___closure(t0) { this.$this = t0; }, _ModalScopeState_build__closure: function _ModalScopeState_build__closure(t0) { this.$this = t0; }, ModalRoute: function ModalRoute() { }, ModalRoute_offstage_closure: function ModalRoute_offstage_closure(t0, t1) { this.$this = t0; this.value = t1; }, ModalRoute_changedInternalState_closure: function ModalRoute_changedInternalState_closure() { }, PopupRoute: function PopupRoute() { }, RouteObserver: function RouteObserver() { }, RawDialogRoute: function RawDialogRoute() { }, _ModalRoute_TransitionRoute_LocalHistoryRoute: function _ModalRoute_TransitionRoute_LocalHistoryRoute() { }, CacheObject$: function(url, eTag, id, key, $length, relativePath, touched, validTill) { return new T.CacheObject(id, url, key == null ? url : key, relativePath, validTill, eTag, $length, touched); }, CacheObject: function CacheObject(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.id = t0; _.url = t1; _.key = t2; _.relativePath = t3; _.validTill = t4; _.eTag = t5; _.length = t6; _.touched = t7; }, BaseResponse: function BaseResponse() { }, Intl_pluralLogic: function(howMany, few, locale, many, one, other, two, zero) { var t1, truncated = C.JSInt_methods.toInt$0(howMany); if (truncated === howMany) howMany = truncated; if (howMany === 0 && zero != null) return zero; if (howMany === 1 && one != null) return one; if (howMany === 2 && two != null) return two; switch (T.Intl__pluralRule(locale, howMany, null).call$0()) { case C.PluralCase_0: return zero == null ? other : zero; case C.PluralCase_1: return one == null ? other : one; case C.PluralCase_2: t1 = two == null ? few : two; return t1 == null ? other : t1; case C.PluralCase_3: return few == null ? other : few; case C.PluralCase_4: return many == null ? other : many; case C.PluralCase_5: return other; default: throw H.wrapException(P.ArgumentError$value(howMany, "howMany", "Invalid plural argument")); } }, Intl__pluralRule: function(locale, howMany, precision) { var str, result, t1, base, verifiedLocale; $._n = howMany; $._precision = precision; $._i = C.JSInt_methods.round$0(howMany); str = "" + howMany; result = C.JSString_methods.indexOf$1(str, "."); t1 = result === -1 ? 0 : str.length - result - 1; t1 = Math.min(t1, 3); $._v = t1; base = H._asIntS(Math.pow(10, t1)); t1 = C.JSInt_methods.$mod(C.JSInt_methods.floor$0(howMany * base), base); $._f = t1; E._updateWT(t1, $._v); verifiedLocale = X.verifiedLocale(locale, E.plural_rules__localeHasPluralRules$closure(), new T.Intl__pluralRule_closure()); if ($.Intl__cachedPluralLocale == verifiedLocale) { t1 = $.Intl__cachedPluralRule; t1.toString; return t1; } else { t1 = $.pluralRules.$index(0, verifiedLocale); $.Intl__cachedPluralRule = t1; $.Intl__cachedPluralLocale = verifiedLocale; t1.toString; return t1; } }, Intl__pluralRule_closure: function Intl__pluralRule_closure() { }, ClientEntity_ClientEntity: function(id, state, user) { var t1, t2, t3, t4, t5, t6, t7, t8, _null = null; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = G.SettingsEntity_SettingsEntity(_null, _null, _null); t3 = D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo([T.ContactEntity_ContactEntity().rebuild$1(new T.ClientEntity_ClientEntity_closure())], type$.JSArray_legacy_ContactEntity), type$.legacy_ContactEntity); t4 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ActivityEntity); t5 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_LedgerEntity); t6 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_GatewayTokenEntity); t7 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SystemLogEntity); t8 = user == null ? _null : user.id; if (t8 == null) t8 = ""; return T._$ClientEntity$_(t4, "", "", 0, t8, 0, "", "", t3, "", 0, "", 0, "", "", "", "", "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity), t6, "", t1, "", "", false, false, 0, t5, 0, "", "", 0, "", "", "", "", t2, "", "", "", "", "", "", "", "", t7, 0, "", ""); }, ContactEntity_ContactEntity: function() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return T._$ContactEntity$_(0, "", "", 0, "", "", "", "", "", "", "", "" + t1, false, false, false, 0, "", "", "", "", true, 0); }, _$ClientEntity$_: function(activities, address1, address2, archivedAt, assignedUserId, balance, city, clientHash, contacts, countryId, createdAt, createdUserId, creditBalance, customValue1, customValue2, customValue3, customValue4, displayName, documents, gatewayTokens, groupId, id, idNumber, industryId, isChanged, isDeleted, lastLogin, ledger, loadedAt, $name, number, paidToDate, phone, postalCode, privateNotes, publicNotes, settings, shippingAddress1, shippingAddress2, shippingCity, shippingCountryId, shippingPostalCode, shippingState, sizeId, state, systemLogs, updatedAt, vatNumber, website) { var _s12_ = "ClientEntity"; if (settings == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "settings")); if (contacts == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "contacts")); if (activities == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "activities")); if (ledger == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "ledger")); if (gatewayTokens == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "gatewayTokens")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "documents")); if (systemLogs == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "systemLogs")); return new T._$ClientEntity(groupId, loadedAt, $name, displayName, balance, creditBalance, paidToDate, clientHash, address1, address2, city, state, postalCode, countryId, phone, privateNotes, publicNotes, website, industryId, sizeId, vatNumber, idNumber, number, shippingAddress1, shippingAddress2, shippingCity, shippingState, shippingPostalCode, shippingCountryId, settings, lastLogin, customValue1, customValue2, customValue3, customValue4, contacts, activities, ledger, gatewayTokens, documents, systemLogs, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$ContactEntity$_: function(archivedAt, assignedUserId, contactKey, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, email, firstName, id, isChanged, isDeleted, isPrimary, lastLogin, lastName, link, password, phone, sendEmail, updatedAt) { return new T._$ContactEntity(firstName, lastName, email, password, phone, contactKey, isPrimary, sendEmail, customValue1, customValue2, customValue3, customValue4, lastLogin, link, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ClientListResponse: function ClientListResponse() { }, ClientItemResponse: function ClientItemResponse() { }, ClientEntity: function ClientEntity() { }, ClientEntity_ClientEntity_closure: function ClientEntity_ClientEntity_closure() { }, ClientEntity_getActivities_closure: function ClientEntity_getActivities_closure(t0, t1) { this.invoiceId = t0; this.typeId = t1; }, ClientEntity_primaryContact_closure: function ClientEntity_primaryContact_closure() { }, ClientEntity_primaryContact_closure0: function ClientEntity_primaryContact_closure0() { }, ClientEntity_emailContacts_closure: function ClientEntity_emailContacts_closure() { }, ClientEntity_hasEmailAddress_closure: function ClientEntity_hasEmailAddress_closure() { }, ContactEntity: function ContactEntity() { }, _$ClientListResponseSerializer: function _$ClientListResponseSerializer() { }, _$ClientItemResponseSerializer: function _$ClientItemResponseSerializer() { }, _$ClientEntitySerializer: function _$ClientEntitySerializer() { }, _$ContactEntitySerializer: function _$ContactEntitySerializer() { }, _$ClientListResponse: function _$ClientListResponse(t0) { this.data = t0; this._client_model$__hashCode = null; }, ClientListResponseBuilder: function ClientListResponseBuilder() { this._client_model$_data = this._client_model$_$v = null; }, _$ClientItemResponse: function _$ClientItemResponse(t0) { this.data = t0; this._client_model$__hashCode = null; }, ClientItemResponseBuilder: function ClientItemResponseBuilder() { this._client_model$_data = this._client_model$_$v = null; }, _$ClientEntity: function _$ClientEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48) { var _ = this; _.groupId = t0; _.loadedAt = t1; _.name = t2; _.displayName = t3; _.balance = t4; _.creditBalance = t5; _.paidToDate = t6; _.clientHash = t7; _.address1 = t8; _.address2 = t9; _.city = t10; _.state = t11; _.postalCode = t12; _.countryId = t13; _.phone = t14; _.privateNotes = t15; _.publicNotes = t16; _.website = t17; _.industryId = t18; _.sizeId = t19; _.vatNumber = t20; _.idNumber = t21; _.number = t22; _.shippingAddress1 = t23; _.shippingAddress2 = t24; _.shippingCity = t25; _.shippingState = t26; _.shippingPostalCode = t27; _.shippingCountryId = t28; _.settings = t29; _.lastLogin = t30; _.customValue1 = t31; _.customValue2 = t32; _.customValue3 = t33; _.customValue4 = t34; _.contacts = t35; _.activities = t36; _.ledger = t37; _.gatewayTokens = t38; _.documents = t39; _.systemLogs = t40; _.isChanged = t41; _.createdAt = t42; _.updatedAt = t43; _.archivedAt = t44; _.isDeleted = t45; _.createdUserId = t46; _.assignedUserId = t47; _.id = t48; _._client_model$__hashCode = null; }, ClientEntityBuilder: function ClientEntityBuilder() { var _ = this; _._shippingCountryId = _._shippingPostalCode = _._shippingState = _._shippingCity = _._shippingAddress2 = _._shippingAddress1 = _._number = _._idNumber = _._vatNumber = _._sizeId = _._industryId = _._website = _._publicNotes = _._privateNotes = _._client_model$_phone = _._countryId = _._postalCode = _._client_model$_state = _._city = _._address2 = _._address1 = _._clientHash = _._paidToDate = _._creditBalance = _._balance = _._displayName = _._client_model$_name = _._loadedAt = _._groupId = _._client_model$_$v = null; _._client_model$_id = _._client_model$_assignedUserId = _._client_model$_createdUserId = _._client_model$_isDeleted = _._client_model$_archivedAt = _._client_model$_updatedAt = _._client_model$_createdAt = _._client_model$_isChanged = _._systemLogs = _._client_model$_documents = _._gatewayTokens = _._ledger = _._activities = _._contacts = _._client_model$_customValue4 = _._client_model$_customValue3 = _._client_model$_customValue2 = _._client_model$_customValue1 = _._lastLogin = _._client_model$_settings = null; }, _$ContactEntity: function _$ContactEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.password = t3; _.phone = t4; _.contactKey = t5; _.isPrimary = t6; _.sendEmail = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.lastLogin = t12; _.link = t13; _.isChanged = t14; _.createdAt = t15; _.updatedAt = t16; _.archivedAt = t17; _.isDeleted = t18; _.createdUserId = t19; _.assignedUserId = t20; _.id = t21; _._client_model$__hashCode = null; }, ContactEntityBuilder: function ContactEntityBuilder() { var _ = this; _._client_model$_id = _._client_model$_assignedUserId = _._client_model$_createdUserId = _._client_model$_isDeleted = _._client_model$_archivedAt = _._client_model$_updatedAt = _._client_model$_createdAt = _._client_model$_isChanged = _._link = _._lastLogin = _._client_model$_customValue4 = _._client_model$_customValue3 = _._client_model$_customValue2 = _._client_model$_customValue1 = _._client_model$_sendEmail = _._client_model$_isPrimary = _._contactKey = _._client_model$_phone = _._client_model$_password = _._client_model$_email = _._client_model$_lastName = _._client_model$_firstName = _._client_model$_$v = null; }, _ClientEntity_Object_BaseEntity: function _ClientEntity_Object_BaseEntity() { }, _ClientEntity_Object_BaseEntity_SelectableEntity: function _ClientEntity_Object_BaseEntity_SelectableEntity() { }, _ContactEntity_Object_BaseEntity: function _ContactEntity_Object_BaseEntity() { }, _ContactEntity_Object_BaseEntity_SelectableEntity: function _ContactEntity_Object_BaseEntity_SelectableEntity() { }, _$typeValueOf: function($name) { switch ($name) { case "dashboard": return C.EntityType_dashboard; case "reports": return C.EntityType_reports; case "settings": return C.EntityType_settings; case "taxRate": return C.EntityType_taxRate; case "companyGateway": return C.EntityType_companyGateway; case "invoice": return C.EntityType_invoice; case "recurringInvoice": return C.EntityType_recurringInvoice; case "quote": return C.EntityType_quote; case "product": return C.EntityType_product; case "client": return C.EntityType_client; case "task": return C.EntityType_task; case "project": return C.EntityType_project; case "expense": return C.EntityType_expense; case "expenseCategory": return C.EntityType_expenseCategory; case "vendor": return C.EntityType_vendor; case "credit": return C.EntityType_credit; case "payment": return C.EntityType_payment; case "group": return C.EntityType_group; case "user": return C.EntityType_user; case "company": return C.EntityType_company; case "gateway": return C.EntityType_gateway; case "gatewayToken": return C.EntityType_gatewayToken; case "invoiceItem": return C.EntityType_invoiceItem; case "design": return C.EntityType_design; case "recurringExpense": return C.EntityType_recurringExpense; case "recurringQuote": return C.EntityType_recurringQuote; case "subscription": return C.EntityType_subscription; case "webhook": return C.EntityType_webhook; case "token": return C.EntityType_token; case "paymentTerm": return C.EntityType_paymentTerm; case "quoteItem": return C.EntityType_quoteItem; case "contact": return C.EntityType_contact; case "vendorContact": return C.EntityType_vendorContact; case "country": return C.EntityType_country; case "currency": return C.EntityType_currency; case "language": return C.EntityType_language; case "industry": return C.EntityType_industry; case "size": return C.EntityType_size; case "paymentType": return C.EntityType_paymentType; case "taskStatus": return C.EntityType_taskStatus; case "document": return C.EntityType_document; case "timezone": return C.EntityType_timezone; case "dateFormat": return C.EntityType_dateFormat; case "font": return C.EntityType_font; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$valueOf: function($name) { switch ($name) { case "active": return C.EntityState_active; case "archived": return C.EntityState_archived; case "deleted": return C.EntityState_deleted; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$templateValueOf: function($name) { switch ($name) { case "invoice": return C.EmailTemplate_invoice; case "quote": return C.EmailTemplate_quote; case "payment": return C.EmailTemplate_payment; case "payment_partial": return C.EmailTemplate_payment_partial; case "credit": return C.EmailTemplate_credit; case "statement": return C.EmailTemplate_statement; case "reminder1": return C.EmailTemplate_reminder1; case "reminder2": return C.EmailTemplate_reminder2; case "reminder3": return C.EmailTemplate_reminder3; case "reminder_endless": return C.EmailTemplate_reminder_endless; case "custom1": return C.EmailTemplate_custom1; case "custom2": return C.EmailTemplate_custom2; case "custom3": return C.EmailTemplate_custom3; default: throw H.wrapException(P.ArgumentError$($name)); } }, EntityType: function EntityType(t0) { this.name = t0; }, EntityState: function EntityState(t0) { this.name = t0; }, EmailTemplate: function EmailTemplate(t0) { this.name = t0; }, UserPermission: function UserPermission(t0) { this.name = t0; }, EntityStatus: function EntityStatus() { }, EntityStats: function EntityStats(t0, t1) { this.countActive = t0; this.countArchived = t1; }, SelectableEntity: function SelectableEntity() { }, BaseEntity: function BaseEntity() { }, BelongsToClient: function BelongsToClient() { }, LoginResponse: function LoginResponse() { }, ActivityEntity: function ActivityEntity() { }, ActivityEntity_getDescription_closure: function ActivityEntity_getDescription_closure(t0) { this.$this = t0; }, ActivityEntity_getDescription_closure0: function ActivityEntity_getDescription_closure0() { }, LedgerEntity: function LedgerEntity() { }, _$EntityTypeSerializer: function _$EntityTypeSerializer() { }, _$EntityStateSerializer: function _$EntityStateSerializer() { }, _$EmailTemplateSerializer: function _$EmailTemplateSerializer() { }, _$LoginResponseSerializer: function _$LoginResponseSerializer() { }, _$ActivityEntitySerializer: function _$ActivityEntitySerializer() { }, _$LedgerEntitySerializer: function _$LedgerEntitySerializer() { }, _$LoginResponse: function _$LoginResponse(t0, t1) { this.userCompanies = t0; this.$static = t1; this._entities$__hashCode = null; }, LoginResponseBuilder: function LoginResponseBuilder() { this._static = this._userCompanies = this._entities$_$v = null; }, _$ActivityEntity: function _$ActivityEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.notes = t0; _.key = t1; _.activityTypeId = t2; _.clientId = t3; _.userId = t4; _.invoiceId = t5; _.recurringInvoiceId = t6; _.quoteId = t7; _.paymentId = t8; _.creditId = t9; _.updatedAt = t10; _.expenseId = t11; _.isSystem = t12; _.ip = t13; _.contactId = t14; _.taskId = t15; _.projectId = t16; _.vendorId = t17; _.tokenId = t18; _.history = t19; _._entities$__hashCode = null; }, ActivityEntityBuilder: function ActivityEntityBuilder() { var _ = this; _._entities$_history = _._tokenId = _._entities$_vendorId = _._entities$_projectId = _._entities$_taskId = _._entities$_contactId = _._ip = _._entities$_isSystem = _._entities$_expenseId = _._entities$_updatedAt = _._entities$_creditId = _._paymentId = _._quoteId = _._recurringInvoiceId = _._entities$_invoiceId = _._entities$_userId = _._entities$_clientId = _._activityTypeId = _._entities$_key = _._entities$_notes = _._entities$_$v = null; }, _$LedgerEntity: function _$LedgerEntity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.notes = t0; _.balance = t1; _.adjustment = t2; _.createdAt = t3; _.invoiceId = t4; _.creditId = t5; _.paymentId = t6; _._entities$__hashCode = null; }, LedgerEntityBuilder: function LedgerEntityBuilder() { var _ = this; _._paymentId = _._entities$_creditId = _._entities$_invoiceId = _._entities$_createdAt = _._adjustment = _._entities$_balance = _._entities$_notes = _._entities$_$v = null; }, TaxRateEntity_TaxRateEntity: function(id, $name, rate, state) { var t2, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; t2 = $name == null ? "" : $name; return T._$TaxRateEntity$_(0, "", 0, "", t1, false, false, t2, rate == null ? 0 : rate, 0); }, _$TaxRateEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, $name, rate, updatedAt) { return new T._$TaxRateEntity($name, rate, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaxRateListResponse: function TaxRateListResponse() { }, TaxRateItemResponse: function TaxRateItemResponse() { }, TaxRateEntity: function TaxRateEntity() { }, _$TaxRateListResponseSerializer: function _$TaxRateListResponseSerializer() { }, _$TaxRateItemResponseSerializer: function _$TaxRateItemResponseSerializer() { }, _$TaxRateEntitySerializer: function _$TaxRateEntitySerializer() { }, _$TaxRateListResponse: function _$TaxRateListResponse(t0) { this.data = t0; this._tax_rate_model$__hashCode = null; }, TaxRateListResponseBuilder: function TaxRateListResponseBuilder() { this._tax_rate_model$_data = this._tax_rate_model$_$v = null; }, _$TaxRateItemResponse: function _$TaxRateItemResponse(t0) { this.data = t0; this._tax_rate_model$__hashCode = null; }, TaxRateItemResponseBuilder: function TaxRateItemResponseBuilder() { this._tax_rate_model$_data = this._tax_rate_model$_$v = null; }, _$TaxRateEntity: function _$TaxRateEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.rate = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._tax_rate_model$__hashCode = null; }, TaxRateEntityBuilder: function TaxRateEntityBuilder() { var _ = this; _._tax_rate_model$_id = _._tax_rate_model$_assignedUserId = _._tax_rate_model$_createdUserId = _._tax_rate_model$_isDeleted = _._tax_rate_model$_archivedAt = _._tax_rate_model$_updatedAt = _._tax_rate_model$_createdAt = _._tax_rate_model$_isChanged = _._tax_rate_model$_rate = _._tax_rate_model$_name = _._tax_rate_model$_$v = null; }, _TaxRateEntity_Object_BaseEntity: function _TaxRateEntity_Object_BaseEntity() { }, _TaxRateEntity_Object_BaseEntity_SelectableEntity: function _TaxRateEntity_Object_BaseEntity_SelectableEntity() { }, CreditRepository: function CreditRepository() { }, CreditRepository_saveData_closure: function CreditRepository_saveData_closure() { }, InvoiceRepository: function InvoiceRepository() { }, InvoiceRepository_saveData_closure: function InvoiceRepository_saveData_closure() { }, AppState_AppState: function(currentRoute, prefState, referralCode, reportErrors, url) { var t2, _list, i, i0, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, _null = null, _s4_ = "name", _s6_ = "number", t1 = url == null ? "" : url; t1 = Z._$AuthState$_("", false, false, 0, referralCode == null ? "" : referralCode, t1); t2 = B.StaticState_StaticState(); _list = J.JSArray_JSArray$allocateGrowable(10, type$.legacy_int); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t3 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,UserCompanyState*>"); t3 = D.BuiltList_BuiltList$from(P.List_List$of(new H.MappedListIterable(_list, new T.AppState_AppState_closure(reportErrors), t3), true, t3._eval$1("ListIterable.E")), type$.legacy_UserCompanyState); t4 = prefState == null; t5 = t4 ? _null : prefState.sortFields; t6 = currentRoute == null ? "/login" : currentRoute; t7 = type$.legacy_EntityType; t8 = D.BuiltList_BuiltList$from(C.List_empty, t7); t9 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_BaseEntity); t10 = Y.convertDateTimeToSqlDate(_null); t10 = Y._$DashboardUISettings$_(Y.convertDateTimeToSqlDate(_null), "", C.DateRangeComparison_previousPeriod, "-1", t10, "", C.DateRange_last30Days, true, true, 0); t10 = Y._$DashboardUIState$_(A.BuiltMap_BuiltMap(C.Map_empty0, t7, type$.legacy_BuiltList_legacy_String), C.EntityType_invoice, t10, true); t7 = A.CompanyEntity_CompanyEntity(); t11 = T.ClientEntity_ClientEntity(_null, _null, _null); t12 = Q.GroupEntity_GroupEntity(_null, _null); t13 = B.UserEntity_UserEntity(_null, _null, _null); t14 = T.ClientEntity_ClientEntity(_null, _null, _null); t15 = Q.GroupEntity_GroupEntity(_null, _null); t16 = A.CompanyEntity_CompanyEntity(); t17 = B.UserEntity_UserEntity(_null, _null, _null); t7 = B._$SettingsUIState$_(t11, t7, C.EntityType_company, _null, 0, t12, false, t14, t16, t15, t17, "company_details", C.EmailTemplate_invoice, 0, 0, t13); t11 = G.ReportsUIState_ReportsUIState(); t5 = t5._map$_map; t12 = J.getInterceptor$asx(t5); t13 = t12.$index(t5, C.EntityType_product); t14 = t13 == null; t15 = t14 ? _null : t13.field; if (t15 == null) t15 = "product_key"; t13 = Q.ListUIState_ListUIState(t15, t14 ? _null : t13.ascending); t13 = Y._$ProductUIState$_(_null, A.ProductEntity_ProductEntity(_null, _null), _null, t13, _null, "", 0); t15 = t12.$index(t5, C.EntityType_client); t14 = t15 == null; t16 = t14 ? _null : t15.field; if (t16 == null) t16 = _s4_; t15 = Q.ListUIState_ListUIState(t16, t14 ? _null : t15.ascending); t15 = F._$ClientUIState$_(_null, T.ClientEntity_ClientEntity(_null, _null, _null), T.ContactEntity_ContactEntity(), _null, t15, _null, _null, 0); t16 = t12.$index(t5, C.EntityType_invoice); t14 = t16 == null; t17 = t14 ? _null : t16.field; if (t17 == null) t17 = _s6_; t14 = t14 ? _null : t16.ascending; t14 = Q.ListUIState_ListUIState(t17, t14 === true); t14 = B._$InvoiceUIState$_(_null, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, _null, _null, t14, _null, "", 0); t16 = t12.$index(t5, C.EntityType_subscription); t17 = t16 == null; t18 = t17 ? _null : t16.field; if (t18 == null) t18 = "created_at"; t16 = Q.ListUIState_ListUIState(t18, t17 ? _null : t16.ascending); t16 = M._$SubscriptionUIState$_(_null, X.SubscriptionEntity_SubscriptionEntity(_null, _null), _null, t16, _null, "", 0); t18 = t12.$index(t5, C.EntityType_taskStatus); t17 = t18 == null; t19 = t17 ? _null : t18.field; if (t19 == null) t19 = "order"; t18 = Q.ListUIState_ListUIState(t19, t17 ? _null : t18.ascending); t18 = L._$TaskStatusUIState$_(_null, S.TaskStatusEntity_TaskStatusEntity(_null, _null), _null, t18, _null, "", 0); t19 = t12.$index(t5, C.EntityType_expenseCategory); t17 = t19 == null; t20 = t17 ? _null : t19.field; if (t20 == null) t20 = _s4_; t19 = Q.ListUIState_ListUIState(t20, t17 ? _null : t19.ascending); t19 = Q._$ExpenseCategoryUIState$_(_null, R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null), _null, t19, _null, "", 0); t20 = t12.$index(t5, C.EntityType_recurringInvoice); t17 = t20 == null; t21 = t17 ? _null : t20.field; if (t21 == null) t21 = _s6_; t17 = t17 ? _null : t20.ascending; t17 = Q.ListUIState_ListUIState(t21, t17 === true); t17 = Q._$RecurringInvoiceUIState$_(_null, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, _null, _null, t17, _null, "", 0); t20 = t12.$index(t5, C.EntityType_webhook); t21 = t20 == null; t22 = t21 ? _null : t20.field; if (t22 == null) t22 = "target_url"; t20 = Q.ListUIState_ListUIState(t22, t21 ? _null : t20.ascending); t20 = V._$WebhookUIState$_(_null, E.WebhookEntity_WebhookEntity(_null, _null), _null, t20, _null, "", 0); t22 = t12.$index(t5, C.EntityType_token); t21 = t22 == null; t23 = t21 ? _null : t22.field; if (t23 == null) t23 = _s4_; t22 = Q.ListUIState_ListUIState(t23, t21 ? _null : t22.ascending); t22 = N._$TokenUIState$_(_null, D.TokenEntity_TokenEntity(_null, _null), _null, t22, _null, "", 0); t23 = t12.$index(t5, C.EntityType_paymentTerm); t21 = t23 == null; t24 = t21 ? _null : t23.field; if (t24 == null) t24 = _s4_; t23 = Q.ListUIState_ListUIState(t24, t21 ? _null : t23.ascending); t23 = N._$PaymentTermUIState$_(_null, X.PaymentTermEntity_PaymentTermEntity(_null, _null), _null, t23, _null, "", 0); t24 = t12.$index(t5, C.EntityType_design); t21 = t24 == null; t25 = t21 ? _null : t24.field; if (t25 == null) t25 = _s4_; t24 = Q.ListUIState_ListUIState(t25, t21 ? _null : t24.ascending); t24 = Y._$DesignUIState$_(_null, D.DesignEntity_DesignEntity(_null, _null, _null), _null, t24, _null, "", 0); t25 = t12.$index(t5, C.EntityType_credit); t21 = t25 == null; t26 = t21 ? _null : t25.field; if (t26 == null) t26 = _s6_; t21 = t21 ? _null : t25.ascending; t21 = Q.ListUIState_ListUIState(t26, t21 === true); t21 = G._$CreditUIState$_(_null, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, _null, _null, t21, _null, "", 0); t25 = t12.$index(t5, C.EntityType_user); t26 = t25 == null; t27 = t26 ? _null : t25.field; if (t27 == null) t27 = "first_name"; t25 = Q.ListUIState_ListUIState(t27, t26 ? _null : t25.ascending); t25 = Q._$UserUIState$_(_null, B.UserEntity_UserEntity(_null, _null, _null), _null, t25, _null, "", 0); t27 = t12.$index(t5, C.EntityType_taxRate); t26 = t27 == null; t28 = t26 ? _null : t27.field; if (t28 == null) t28 = _s4_; t27 = Q.ListUIState_ListUIState(t28, t26 ? _null : t27.ascending); t27 = Q._$TaxRateUIState$_(_null, T.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), _null, t27, _null, "", 0); t28 = t12.$index(t5, C.EntityType_companyGateway); t26 = t28 == null; t29 = t26 ? _null : t28.field; if (t29 == null) t29 = _s4_; t28 = Q.ListUIState_ListUIState(t29, t26 ? _null : t28.ascending); t28 = U._$CompanyGatewayUIState$_(_null, O.CompanyGatewayEntity_CompanyGatewayEntity(_null, _null), _null, t28, _null, "", 0); t29 = t12.$index(t5, C.EntityType_group); t26 = t29 == null; t30 = t26 ? _null : t29.field; if (t30 == null) t30 = _s4_; t29 = Q.ListUIState_ListUIState(t30, t26 ? _null : t29.ascending); t29 = E._$GroupUIState$_(_null, Q.GroupEntity_GroupEntity(_null, _null), _null, t29, _null, "", 0); t30 = t12.$index(t5, C.EntityType_document); t26 = t30 == null; t31 = t26 ? _null : t30.field; if (t31 == null) t31 = _s4_; t30 = Q.ListUIState_ListUIState(t31, t26 ? _null : t30.ascending); t30 = Q._$DocumentUIState$_(_null, D.DocumentEntity_DocumentEntity(_null), _null, t30, _null, "", 0); t31 = t12.$index(t5, C.EntityType_expense); t26 = t31 == null; t32 = t26 ? _null : t31.field; if (t32 == null) t32 = _s6_; t26 = t26 ? _null : t31.ascending; t26 = Q.ListUIState_ListUIState(t32, t26 === true); t26 = R._$ExpenseUIState$_(_null, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null), _null, t26, _null, "", 0); t31 = t12.$index(t5, C.EntityType_vendor); t32 = t31 == null; t33 = t32 ? _null : t31.field; if (t33 == null) t33 = _s4_; t31 = Q.ListUIState_ListUIState(t33, t32 ? _null : t31.ascending); t31 = Y._$VendorUIState$_(_null, B.VendorEntity_VendorEntity(_null, _null, _null), B.VendorContactEntity_VendorContactEntity(), _null, t31, _null, "", 0); t33 = t12.$index(t5, C.EntityType_task); t32 = t33 == null; t34 = t32 ? _null : t33.field; if (t34 == null) t34 = _s6_; t32 = t32 ? _null : t33.ascending; t32 = Q.ListUIState_ListUIState(t34, t32 === true); t32 = M._$TaskUIState$_(_null, D.TaskEntity_TaskEntity(_null, _null, _null, _null, _null), _null, _null, t32, _null, "", 0); t33 = t12.$index(t5, C.EntityType_project); t34 = t33 == null; t35 = t34 ? _null : t33.field; if (t35 == null) t35 = _s6_; t33 = t34 ? _null : t33.ascending; t33 = Q.ListUIState_ListUIState(t35, t33 === true); t33 = D._$ProjectUIState$_(_null, A.ProjectEntity_ProjectEntity(_null, _null, _null, _null), _null, t33, _null, "", 0); t34 = t12.$index(t5, C.EntityType_payment); t35 = t34 == null; t36 = t35 ? _null : t34.field; if (t36 == null) t36 = _s6_; t34 = t35 ? _null : t34.ascending; t34 = Q.ListUIState_ListUIState(t36, t34 === true); t34 = L._$PaymentUIState$_(_null, F.PaymentEntity_PaymentEntity(_null, _null, _null), _null, t34, _null, "", 0); t35 = t12.$index(t5, C.EntityType_quote); t36 = t35 == null; t37 = t36 ? _null : t35.field; if (t37 == null) t37 = _s6_; t35 = t36 ? _null : t35.ascending; t35 = Q.ListUIState_ListUIState(t37, t35 === true); t35 = G._$QuoteUIState$_(_null, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, _null, _null, t35, _null, "", 0); t5 = t12.$index(t5, C.EntityType_recurringExpense); t12 = t5 == null; t36 = t12 ? _null : t5.field; if (t36 == null) t36 = _s6_; t5 = Q.ListUIState_ListUIState(t36, t12 ? _null : t5.ascending); t20 = U._$UIState$_(t15, t28, t21, t6, t10, t24, t30, t19, t26, _null, 0, t9, t29, t14, 0, t23, t34, t8, "", t13, t33, t35, K._$RecurringExpenseUIState$_(_null, M.ExpenseEntity_ExpenseEntity(_null, C.EntityType_recurringExpense, _null, _null, _null, _null, _null), _null, t5, _null, "", 0), t17, t11, 0, t7, t16, t18, t32, t27, t22, t25, t31, t20); return T._$AppState$_(t1, false, false, false, "", t4 ? X.PrefState_PrefState() : prefState, t2, t20, t3); }, _$AppState$_: function(authState, isLoading, isSaving, isTesting, lastError, prefState, staticState, uiState, userCompanyStates) { var _s8_ = "AppState"; if (staticState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "staticState")); if (prefState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "prefState")); if (uiState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "uiState")); if (userCompanyStates == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "userCompanyStates")); return new T._$AppState(isLoading, isSaving, isTesting, lastError, authState, staticState, prefState, uiState, userCompanyStates); }, AppState: function AppState() { }, AppState_AppState_closure: function AppState_AppState_closure(t0) { this.reportErrors = t0; }, AppState_companies_closure: function AppState_companies_closure() { }, AppState_historyList_closure: function AppState_historyList_closure(t0) { this.$this = t0; }, Credentials: function Credentials(t0, t1) { this.url = t0; this.token = t1; }, SelectionState: function SelectionState(t0, t1, t2) { this.selectedId = t0; this.filterEntityId = t1; this.filterEntityType = t2; }, _$AppStateSerializer: function _$AppStateSerializer() { }, _$AppState: function _$AppState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.isLoading = t0; _.isSaving = t1; _.isTesting = t2; _.lastError = t3; _.authState = t4; _.staticState = t5; _.prefState = t6; _.uiState = t7; _.userCompanyStates = t8; _._app_state$__hashCode = null; }, AppStateBuilder: function AppStateBuilder() { var _ = this; _._userCompanyStates = _._uiState = _._prefState = _._staticState = _._authState = _._lastError = _._isTesting = _._isSaving = _._isLoading = _._app_state$_$v = null; }, companyReducer: function(state, action) { var t1; if (action instanceof E.DeleteCompanySuccess) return B.UserCompanyState_UserCompanyState(false); state.toString; t1 = new B.UserCompanyStateBuilder(); t1._company_state$_$v = state; new T.companyReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, loadCompanySuccessReducer: function(company, action) { var t1 = {}, userCompany = t1.userCompany = action.userCompany, t2 = userCompany.settings == null ? t1.userCompany = userCompany.rebuild$1(new T.loadCompanySuccessReducer_closure()) : userCompany; userCompany = t2.rebuild$1(new T.loadCompanySuccessReducer_closure0()); t1.userCompany = userCompany; return t1.userCompany = userCompany.rebuild$1(new T.loadCompanySuccessReducer_closure1(t1)); }, saveCompanySuccessReducer: function(userCompany, action) { var company, t1 = {}; t1.userCompany = userCompany; company = action.company.rebuild$1(new T.saveCompanySuccessReducer_closure(t1)); return t1.userCompany = t1.userCompany.rebuild$1(new T.saveCompanySuccessReducer_closure0(company)); }, companyReducer_closure: function companyReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, userCompanyEntityReducer_closure: function userCompanyEntityReducer_closure() { }, userCompanyEntityReducer__closure5: function userCompanyEntityReducer__closure5(t0, t1) { this.action = t0; this.settings = t1; }, userCompanyEntityReducer___closure: function userCompanyEntityReducer___closure(t0, t1) { this.action = t0; this.settings = t1; }, userCompanyEntityReducer__closure6: function userCompanyEntityReducer__closure6(t0) { this.action = t0; }, userCompanyEntityReducer_closure0: function userCompanyEntityReducer_closure0() { }, userCompanyEntityReducer__closure4: function userCompanyEntityReducer__closure4(t0) { this.action = t0; }, userCompanyEntityReducer_closure1: function userCompanyEntityReducer_closure1() { }, userCompanyEntityReducer__closure3: function userCompanyEntityReducer__closure3(t0) { this.action = t0; }, userCompanyEntityReducer_closure2: function userCompanyEntityReducer_closure2() { }, userCompanyEntityReducer__closure2: function userCompanyEntityReducer__closure2(t0) { this.action = t0; }, userCompanyEntityReducer_closure3: function userCompanyEntityReducer_closure3() { }, userCompanyEntityReducer__closure1: function userCompanyEntityReducer__closure1() { }, userCompanyEntityReducer_closure4: function userCompanyEntityReducer_closure4() { }, userCompanyEntityReducer__closure0: function userCompanyEntityReducer__closure0(t0) { this.action = t0; }, userCompanyEntityReducer_closure5: function userCompanyEntityReducer_closure5() { }, userCompanyEntityReducer__closure: function userCompanyEntityReducer__closure(t0) { this.action = t0; }, loadCompanySuccessReducer_closure: function loadCompanySuccessReducer_closure() { }, loadCompanySuccessReducer_closure0: function loadCompanySuccessReducer_closure0() { }, loadCompanySuccessReducer_closure1: function loadCompanySuccessReducer_closure1(t0) { this._box_0 = t0; }, saveCompanySuccessReducer_closure: function saveCompanySuccessReducer_closure(t0) { this._box_0 = t0; }, saveCompanySuccessReducer_closure0: function saveCompanySuccessReducer_closure0(t0) { this.company = t0; }, lastUpdatedReducer_closure: function lastUpdatedReducer_closure() { }, lastUpdatedReducer_closure0: function lastUpdatedReducer_closure0() { }, filteredCompanyGatewaysSelector: function(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll) { var gatewaysIds, t1 = J.where$1$ax(companyGatewayList._list, new T.filteredCompanyGatewaysSelector_closure(companyGatewayMap, companyGatewayListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); t1 = type$.WhereIterable_String; gatewaysIds = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo((companyGatewayIds == null ? "" : companyGatewayIds).split(","), type$.JSArray_String), new T.filteredCompanyGatewaysSelector_closure0(companyGatewayMap, companyGatewayListState), t1), true, t1._eval$1("Iterable.E")); if (includeAll) C.JSArray_methods.forEach$1(list, new T.filteredCompanyGatewaysSelector_closure1(gatewaysIds)); return gatewaysIds; }, calculateCompanyGatewayProcessed: function(companyGatewayId, paymentMap) { var t1 = {}; t1.total = 0; J.forEach$1$ax(paymentMap._map$_map, new T.calculateCompanyGatewayProcessed_closure(t1, companyGatewayId)); return t1.total; }, clientStatsForCompanyGateway: function(companyGatewayId, clientMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(clientMap._map$_map, new T.clientStatsForCompanyGateway_closure(t1, companyGatewayId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, paymentStatsForCompanyGateway: function(companyGatewayId, paymentMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(paymentMap._map$_map, new T.paymentStatsForCompanyGateway_closure(t1, companyGatewayId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, getUnconnectedStripeAccount: function(state) { var t2, t3, t1 = {}; t1.unconnectedGateway = null; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; J.forEach$1$ax(J.$index$asx(t2._list, t3).companyGatewayState.map._map$_map, new T.getUnconnectedStripeAccount_closure(t1)); return t1.unconnectedGateway; }, memoizedFilteredCompanyGatewayList_closure: function memoizedFilteredCompanyGatewayList_closure() { }, filteredCompanyGatewaysSelector_closure: function filteredCompanyGatewaysSelector_closure(t0, t1) { this.companyGatewayMap = t0; this.companyGatewayListState = t1; }, filteredCompanyGatewaysSelector_closure0: function filteredCompanyGatewaysSelector_closure0(t0, t1) { this.companyGatewayMap = t0; this.companyGatewayListState = t1; }, filteredCompanyGatewaysSelector_closure1: function filteredCompanyGatewaysSelector_closure1(t0) { this.gatewaysIds = t0; }, memoizedCalculateCompanyGatewayProcessed_closure: function memoizedCalculateCompanyGatewayProcessed_closure() { }, calculateCompanyGatewayProcessed_closure: function calculateCompanyGatewayProcessed_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, memoizedClientStatsForCompanyGateway_closure: function memoizedClientStatsForCompanyGateway_closure() { }, clientStatsForCompanyGateway_closure: function clientStatsForCompanyGateway_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, clientStatsForCompanyGateway__closure: function clientStatsForCompanyGateway__closure(t0) { this.companyGatewayId = t0; }, memoizedPaymentStatsForCompanyGateway_closure: function memoizedPaymentStatsForCompanyGateway_closure() { }, paymentStatsForCompanyGateway_closure: function paymentStatsForCompanyGateway_closure(t0, t1) { this._box_0 = t0; this.companyGatewayId = t1; }, getUnconnectedStripeAccount_closure: function getUnconnectedStripeAccount_closure(t0) { this._box_0 = t0; }, handleExpenseAction: function(context, expenses, action) { var t4, client, items, message, _i, _null = null, _s6_ = ":value", _s12_ = "_dispatchers", store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), expense = type$.legacy_ExpenseEntity._as(C.JSArray_methods.get$first(expenses)), t2 = H._arrayInstanceType(expenses), t3 = t2._eval$1("MappedListIterable<1,String*>"), expenseIds = P.List_List$of(new H.MappedListIterable(expenses, new T.handleExpenseAction_closure(), t3), true, t3._eval$1("ListIterable.E")); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; client = J.$index$asx(t3._list, t4).clientState.$get$1(0, expense.clientId); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, expense, _null); break; case C.EntityAction_cloneToExpense: M.createEntity(_null, _null, context, expense.get$clone(expense).rebuild$1(new T.handleExpenseAction_closure0()), _null, false); break; case C.EntityAction_cloneToRecurring: M.createEntity(_null, _null, context, expense.get$clone(expense).rebuild$1(new T.handleExpenseAction_closure1()), _null, false); break; case C.EntityAction_invoiceExpense: t1 = t2._eval$1("MappedIterable<1,InvoiceItemEntity*>"); items = P.List_List$of(new H.MappedIterable(new H.WhereIterable(expenses, new T.handleExpenseAction_closure2(), t2._eval$1("WhereIterable<1>")), new T.handleExpenseAction_closure3(context), t1), true, t1._eval$1("Iterable.E")); if (items.length !== 0) M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null).rebuild$1(new T.handleExpenseAction_closure4(items)), _null, false); break; case C.EntityAction_restore: t2 = expenseIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_expenses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_expense"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.RestoreExpenseRequest(t1, expenseIds)); break; case C.EntityAction_archive: t2 = expenseIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_expenses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_expense"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.ArchiveExpenseRequest(t1, expenseIds)); break; case C.EntityAction_delete: t2 = expenseIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_expenses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_expense"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.DeleteExpenseRequest(t1, expenseIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.expenseUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.StartExpenseMultiselect()); t1 = expenses.length; if (t1 === 0) break; for (_i = 0; _i < expenses.length; expenses.length === t1 || (0, H.throwConcurrentModificationError)(expenses), ++_i) { expense = expenses[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.expenseUIState.listUIState; t3 = J.get$id$x(expense); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new T.AddToExpenseMultiselect(expense)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new T.RemoveFromExpenseMultiselect(expense)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([expense], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewExpenseList: function ViewExpenseList() { }, ViewExpense: function ViewExpense(t0) { this.expenseId = t0; }, EditExpense: function EditExpense(t0) { this.expense = t0; }, UpdateExpense: function UpdateExpense(t0) { this.expense = t0; }, LoadExpense: function LoadExpense(t0, t1) { this.completer = t0; this.expenseId = t1; }, LoadExpenses: function LoadExpenses() { }, LoadExpenseRequest: function LoadExpenseRequest() { }, LoadExpenseFailure: function LoadExpenseFailure(t0) { this.error = t0; }, LoadExpenseSuccess: function LoadExpenseSuccess(t0) { this.expense = t0; }, LoadExpensesRequest: function LoadExpensesRequest() { }, LoadExpensesFailure: function LoadExpensesFailure(t0) { this.error = t0; }, LoadExpensesSuccess: function LoadExpensesSuccess(t0) { this.expenses = t0; }, SaveExpenseRequest: function SaveExpenseRequest(t0, t1) { this.completer = t0; this.expense = t1; }, SaveExpenseSuccess: function SaveExpenseSuccess(t0) { this.expense = t0; }, AddExpenseSuccess: function AddExpenseSuccess(t0) { this.expense = t0; }, SaveExpenseFailure: function SaveExpenseFailure() { }, ArchiveExpenseRequest: function ArchiveExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, ArchiveExpenseSuccess: function ArchiveExpenseSuccess(t0) { this.expenses = t0; }, ArchiveExpenseFailure: function ArchiveExpenseFailure() { }, DeleteExpenseRequest: function DeleteExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, DeleteExpenseSuccess: function DeleteExpenseSuccess(t0) { this.expenses = t0; }, DeleteExpenseFailure: function DeleteExpenseFailure() { }, RestoreExpenseRequest: function RestoreExpenseRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, RestoreExpenseSuccess: function RestoreExpenseSuccess(t0) { this.expenses = t0; }, RestoreExpenseFailure: function RestoreExpenseFailure() { }, FilterExpenses: function FilterExpenses(t0) { this.filter = t0; }, SortExpenses: function SortExpenses(t0) { this.field = t0; }, FilterExpensesByState: function FilterExpensesByState(t0) { this.state = t0; }, FilterExpensesByStatus: function FilterExpensesByStatus(t0) { this.status = t0; }, FilterExpensesByCustom1: function FilterExpensesByCustom1(t0) { this.value = t0; }, FilterExpensesByCustom2: function FilterExpensesByCustom2(t0) { this.value = t0; }, FilterExpensesByCustom3: function FilterExpensesByCustom3(t0) { this.value = t0; }, FilterExpensesByCustom4: function FilterExpensesByCustom4(t0) { this.value = t0; }, handleExpenseAction_closure: function handleExpenseAction_closure() { }, handleExpenseAction_closure0: function handleExpenseAction_closure0() { }, handleExpenseAction_closure1: function handleExpenseAction_closure1() { }, handleExpenseAction_closure2: function handleExpenseAction_closure2() { }, handleExpenseAction_closure3: function handleExpenseAction_closure3(t0) { this.context = t0; }, handleExpenseAction_closure4: function handleExpenseAction_closure4(t0) { this.items = t0; }, StartExpenseMultiselect: function StartExpenseMultiselect() { }, AddToExpenseMultiselect: function AddToExpenseMultiselect(t0) { this.entity = t0; }, RemoveFromExpenseMultiselect: function RemoveFromExpenseMultiselect(t0) { this.entity = t0; }, ClearExpenseMultiselect: function ClearExpenseMultiselect() { }, SaveExpenseDocumentRequest: function SaveExpenseDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.expense = t2; }, SaveExpenseDocumentFailure: function SaveExpenseDocumentFailure() { }, UpdateExpenseTab: function UpdateExpenseTab(t0) { this.tabIndex = t0; }, _editSubscription: function() { return new T._editSubscription_closure(); }, _viewSubscription: function() { return new T._viewSubscription_closure(); }, _viewSubscriptionList: function() { return new T._viewSubscriptionList_closure(); }, _archiveSubscription: function(repository) { return new T._archiveSubscription_closure(repository); }, _deleteSubscription: function(repository) { return new T._deleteSubscription_closure(repository); }, _restoreSubscription: function(repository) { return new T._restoreSubscription_closure(repository); }, _saveSubscription: function(repository) { return new T._saveSubscription_closure(repository); }, _loadSubscription: function(repository) { return new T._loadSubscription_closure(repository); }, _loadSubscriptions: function(repository) { return new T._loadSubscriptions_closure(repository); }, _editSubscription_closure: function _editSubscription_closure() { }, _viewSubscription_closure: function _viewSubscription_closure() { }, _viewSubscriptionList_closure: function _viewSubscriptionList_closure() { }, _viewSubscriptionList__closure: function _viewSubscriptionList__closure() { }, _archiveSubscription_closure: function _archiveSubscription_closure(t0) { this.repository = t0; }, _archiveSubscription__closure: function _archiveSubscription__closure(t0) { this.store = t0; }, _archiveSubscription__closure0: function _archiveSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveSubscription__closure1: function _archiveSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _deleteSubscription_closure: function _deleteSubscription_closure(t0) { this.repository = t0; }, _deleteSubscription__closure: function _deleteSubscription__closure(t0) { this.store = t0; }, _deleteSubscription__closure0: function _deleteSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteSubscription__closure1: function _deleteSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _restoreSubscription_closure: function _restoreSubscription_closure(t0) { this.repository = t0; }, _restoreSubscription__closure: function _restoreSubscription__closure(t0) { this.store = t0; }, _restoreSubscription__closure0: function _restoreSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreSubscription__closure1: function _restoreSubscription__closure1(t0, t1, t2) { this.store = t0; this.prevSubscriptions = t1; this.action = t2; }, _saveSubscription_closure: function _saveSubscription_closure(t0) { this.repository = t0; }, _saveSubscription__closure: function _saveSubscription__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveSubscription__closure0: function _saveSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscription_closure: function _loadSubscription_closure(t0) { this.repository = t0; }, _loadSubscription__closure: function _loadSubscription__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscription__closure0: function _loadSubscription__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscriptions_closure: function _loadSubscriptions_closure(t0) { this.repository = t0; }, _loadSubscriptions__closure: function _loadSubscriptions__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadSubscriptions__closure0: function _loadSubscriptions__closure0(t0, t1) { this.store = t0; this.action = t1; }, _editTaxRate: function() { return new T._editTaxRate_closure(); }, _viewTaxRate: function() { return new T._viewTaxRate_closure(); }, _viewTaxRateList: function() { return new T._viewTaxRateList_closure0(); }, _archiveTaxRate: function(repository) { return new T._archiveTaxRate_closure(repository); }, _deleteTaxRate: function(repository) { return new T._deleteTaxRate_closure(repository); }, _restoreTaxRate: function(repository) { return new T._restoreTaxRate_closure(repository); }, _saveTaxRate: function(repository) { return new T._saveTaxRate_closure(repository); }, _loadTaxRate: function(repository) { return new T._loadTaxRate_closure(repository); }, _loadTaxRates: function(repository) { return new T._loadTaxRates_closure(repository); }, _editTaxRate_closure: function _editTaxRate_closure() { }, _viewTaxRate_closure: function _viewTaxRate_closure() { }, _viewTaxRateList_closure0: function _viewTaxRateList_closure0() { }, _viewTaxRateList__closure: function _viewTaxRateList__closure() { }, _archiveTaxRate_closure: function _archiveTaxRate_closure(t0) { this.repository = t0; }, _archiveTaxRate__closure: function _archiveTaxRate__closure(t0) { this.store = t0; }, _archiveTaxRate__closure0: function _archiveTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTaxRate__closure1: function _archiveTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _deleteTaxRate_closure: function _deleteTaxRate_closure(t0) { this.repository = t0; }, _deleteTaxRate__closure: function _deleteTaxRate__closure(t0) { this.store = t0; }, _deleteTaxRate__closure0: function _deleteTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTaxRate__closure1: function _deleteTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _restoreTaxRate_closure: function _restoreTaxRate_closure(t0) { this.repository = t0; }, _restoreTaxRate__closure: function _restoreTaxRate__closure(t0) { this.store = t0; }, _restoreTaxRate__closure0: function _restoreTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTaxRate__closure1: function _restoreTaxRate__closure1(t0, t1, t2) { this.store = t0; this.prevTaxRates = t1; this.action = t2; }, _saveTaxRate_closure: function _saveTaxRate_closure(t0) { this.repository = t0; }, _saveTaxRate__closure: function _saveTaxRate__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTaxRate__closure0: function _saveTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRate_closure: function _loadTaxRate_closure(t0) { this.repository = t0; }, _loadTaxRate__closure: function _loadTaxRate__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRate__closure0: function _loadTaxRate__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRates_closure: function _loadTaxRates_closure(t0) { this.repository = t0; }, _loadTaxRates__closure: function _loadTaxRates__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaxRates__closure0: function _loadTaxRates__closure0(t0, t1) { this.store = t0; this.action = t1; }, _editWebhook: function() { return new T._editWebhook_closure(); }, _viewWebhook: function() { return new T._viewWebhook_closure(); }, _viewWebhookList: function() { return new T._viewWebhookList_closure0(); }, _archiveWebhook: function(repository) { return new T._archiveWebhook_closure(repository); }, _deleteWebhook: function(repository) { return new T._deleteWebhook_closure(repository); }, _restoreWebhook: function(repository) { return new T._restoreWebhook_closure(repository); }, _saveWebhook: function(repository) { return new T._saveWebhook_closure(repository); }, _loadWebhook: function(repository) { return new T._loadWebhook_closure(repository); }, _loadWebhooks: function(repository) { return new T._loadWebhooks_closure(repository); }, _editWebhook_closure: function _editWebhook_closure() { }, _viewWebhook_closure: function _viewWebhook_closure() { }, _viewWebhookList_closure0: function _viewWebhookList_closure0() { }, _viewWebhookList__closure: function _viewWebhookList__closure() { }, _archiveWebhook_closure: function _archiveWebhook_closure(t0) { this.repository = t0; }, _archiveWebhook__closure: function _archiveWebhook__closure(t0) { this.store = t0; }, _archiveWebhook__closure0: function _archiveWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveWebhook__closure1: function _archiveWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _deleteWebhook_closure: function _deleteWebhook_closure(t0) { this.repository = t0; }, _deleteWebhook__closure: function _deleteWebhook__closure(t0) { this.store = t0; }, _deleteWebhook__closure0: function _deleteWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteWebhook__closure1: function _deleteWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _restoreWebhook_closure: function _restoreWebhook_closure(t0) { this.repository = t0; }, _restoreWebhook__closure: function _restoreWebhook__closure(t0) { this.store = t0; }, _restoreWebhook__closure0: function _restoreWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreWebhook__closure1: function _restoreWebhook__closure1(t0, t1, t2) { this.store = t0; this.prevWebhooks = t1; this.action = t2; }, _saveWebhook_closure: function _saveWebhook_closure(t0) { this.repository = t0; }, _saveWebhook__closure: function _saveWebhook__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveWebhook__closure0: function _saveWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhook_closure: function _loadWebhook_closure(t0) { this.repository = t0; }, _loadWebhook__closure: function _loadWebhook__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhook__closure0: function _loadWebhook__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhooks_closure: function _loadWebhooks_closure(t0) { this.repository = t0; }, _loadWebhooks__closure: function _loadWebhooks__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadWebhooks__closure0: function _loadWebhooks__closure0(t0, t1) { this.store = t0; this.action = t1; }, FieldGrid: function FieldGrid(t0, t1) { this.fields = t0; this.key = t1; }, FieldGrid_build_closure: function FieldGrid_build_closure(t0, t1, t2) { this.fieldWidgets = t0; this.localization = t1; this.textColor = t2; }, FieldGrid_build__closure: function FieldGrid_build__closure(t0, t1) { this.value = t0; this.localization = t1; }, FieldGrid_build_closure0: function FieldGrid_build_closure0(t0) { this.fieldWidgets = t0; }, AppBorder: function AppBorder(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.isTop = t1; _.isLeft = t2; _.hideBorder = t3; _.key = t4; }, ConfirmEmail: function ConfirmEmail(t0, t1) { this.viewModel = t0; this.key = t1; }, ConfirmEmail_build_closure: function ConfirmEmail_build_closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, ConfirmEmail_build__closure: function ConfirmEmail_build__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, ConfirmEmail_build___closure: function ConfirmEmail_build___closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.password = t2; _.idToken = t3; }, InvoiceItemListTile: function InvoiceItemListTile(t0, t1, t2, t3) { var _ = this; _.onTap = t0; _.invoice = t1; _.invoiceItem = t2; _.key = t3; }, ClientViewDocuments: function ClientViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientViewDocuments_build_closure: function ClientViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ClientViewDocuments_build_closure0: function ClientViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore: function(store) { var t3, company, state = store.get$_store$_state(), t1 = state.uiState, credit = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); company = t3.$index(t2, t1).userCompany.company; t3.$index(t2, t1).clientState.toString; t3.$index(t2, t1).clientState.toString; return new T.CreditEditDetailsVM(state, company, credit, new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure(store), new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0(state, company, store), new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1(store)); }, CreditEditDetailsScreen: function CreditEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CreditEditDetailsScreen_build_closure0: function CreditEditDetailsScreen_build_closure0() { }, CreditEditDetailsScreen_build_closure: function CreditEditDetailsScreen_build_closure(t0) { this.$this = t0; }, CreditEditDetailsVM: function CreditEditDetailsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onAddClientPressed = t5; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.company = t1; this.store = t2; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure1: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure1(t0) { this.exchangeRate = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0: function CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, DocumentView: function DocumentView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _DocumentViewState: function _DocumentViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, ExpenseEditSettings: function ExpenseEditSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditSettingsState: function ExpenseEditSettingsState(t0, t1, t2, t3) { var _ = this; _._showConvertCurrencyFields = _._showPaymentFields = false; _._expense_edit_settings$_convertedAmount = 0; _._expense_edit_settings$_transactionReferenceController = t0; _._expense_edit_settings$_exchangeRateController = t1; _._expense_edit_settings$_controllers = null; _._expense_edit_settings$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ExpenseEditSettingsState_didChangeDependencies_closure: function ExpenseEditSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState_didChangeDependencies_closure0: function ExpenseEditSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditSettingsState_dispose_closure: function ExpenseEditSettingsState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState__onChanged_closure: function ExpenseEditSettingsState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditSettingsState__onChanged_closure0: function ExpenseEditSettingsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState__setCurrency_closure: function ExpenseEditSettingsState__setCurrency_closure(t0, t1, t2) { this.currency = t0; this.expense = t1; this.exchangeRate = t2; }, ExpenseEditSettingsState__setCurrency_closure0: function ExpenseEditSettingsState__setCurrency_closure0(t0, t1) { this.$this = t0; this.exchangeRate = t1; }, ExpenseEditSettingsState_build_closure: function ExpenseEditSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure12: function ExpenseEditSettingsState_build__closure12(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure0: function ExpenseEditSettingsState_build_closure0(t0, t1, t2) { this.$this = t0; this.expense = t1; this.viewModel = t2; }, ExpenseEditSettingsState_build__closure8: function ExpenseEditSettingsState_build__closure8() { }, ExpenseEditSettingsState_build__closure9: function ExpenseEditSettingsState_build__closure9() { }, ExpenseEditSettingsState_build__closure10: function ExpenseEditSettingsState_build__closure10(t0) { this.$this = t0; }, ExpenseEditSettingsState_build__closure11: function ExpenseEditSettingsState_build__closure11(t0, t1) { this.$this = t0; this.value = t1; }, ExpenseEditSettingsState_build_closure1: function ExpenseEditSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure7: function ExpenseEditSettingsState_build__closure7(t0) { this.paymentType = t0; }, ExpenseEditSettingsState_build_closure2: function ExpenseEditSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure6: function ExpenseEditSettingsState_build__closure6(t0) { this.date = t0; }, ExpenseEditSettingsState_build_closure3: function ExpenseEditSettingsState_build_closure3(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.staticState = t1; _.expense = t2; _.viewModel = t3; }, ExpenseEditSettingsState_build__closure3: function ExpenseEditSettingsState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, ExpenseEditSettingsState_build__closure4: function ExpenseEditSettingsState_build__closure4() { }, ExpenseEditSettingsState_build__closure5: function ExpenseEditSettingsState_build__closure5(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure4: function ExpenseEditSettingsState_build_closure4(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure6: function ExpenseEditSettingsState_build_closure6(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.expense = t1; _.context = t2; _.viewModel = t3; }, ExpenseEditSettingsState_build__closure2: function ExpenseEditSettingsState_build__closure2(t0) { this.exchangeRate = t0; }, ExpenseEditSettingsState_build_closure5: function ExpenseEditSettingsState_build_closure5(t0) { this.$this = t0; }, ExpenseEditSettingsState_build_closure7: function ExpenseEditSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure1: function ExpenseEditSettingsState_build__closure1(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure8: function ExpenseEditSettingsState_build_closure8(t0) { this.context = t0; }, ExpenseEditSettingsState_build_closure9: function ExpenseEditSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure0: function ExpenseEditSettingsState_build__closure0(t0) { this.value = t0; }, ExpenseEditSettingsState_build_closure10: function ExpenseEditSettingsState_build_closure10(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditSettingsState_build__closure: function ExpenseEditSettingsState_build__closure(t0) { this.value = t0; }, GroupListItem: function GroupListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.group = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, GroupListItem_build_closure1: function GroupListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, GroupListItem_build_closure0: function GroupListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, GroupListItem_build_closure: function GroupListItem_build_closure(t0) { this.$this = t0; }, InvoiceListVM_fromStore: function(store) { var t6, t7, t8, t9, t10, state = store.get$_store$_state(), t1 = $.$get$memoizedFilteredInvoiceList(), t2 = state.getUISelection$1(C.EntityType_invoice), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).invoiceState.map; t8 = t6.$index(t3, t5).invoiceState.list; t9 = t6.$index(t3, t5).clientState.map; t10 = t6.$index(t3, t5).paymentState.map; t4 = t4.invoiceUIState.listUIState; t10 = t1.call$8(t2, t7, t8, t9, t10, t4, t6.$index(t3, t5).userState.map, t6.$index(t3, t5).userCompany.company.settings.recurringNumberPrefix); t9 = t6.$index(t3, t5).invoiceState.map; t8 = t6.$index(t3, t5).clientState.map; t4 = t4.filter; t7 = t6.$index(t3, t5).userCompany.settings.getTableColumns$1(C.EntityType_invoice); if (t7 == null) { t6.$index(t3, t5).toString; t1 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "balance", "date", "due_date"], type$.JSArray_legacy_String); } else t1 = t7; return new T.InvoiceListVM(state, t10, t9, t8, t4, new T.InvoiceListVM_fromStore_closure(new T.InvoiceListVM_fromStore__handleRefresh(store)), t1, new T.InvoiceListVM_fromStore_closure0(store), new T.InvoiceListVM_fromStore_closure1(store)); }, InvoiceListBuilder: function InvoiceListBuilder(t0) { this.key = t0; }, InvoiceListBuilder_build_closure: function InvoiceListBuilder_build_closure() { }, InvoiceListBuilder_build__closure: function InvoiceListBuilder_build__closure(t0) { this.viewModel = t0; }, EntityListVM: function EntityListVM() { }, InvoiceListVM: function InvoiceListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, InvoiceListVM_fromStore__handleRefresh: function InvoiceListVM_fromStore__handleRefresh(t0) { this.store = t0; }, InvoiceListVM_fromStore_closure: function InvoiceListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, InvoiceListVM_fromStore_closure0: function InvoiceListVM_fromStore_closure0(t0) { this.store = t0; }, InvoiceListVM_fromStore_closure1: function InvoiceListVM_fromStore_closure1(t0) { this.store = t0; }, ProductListItem$: function(filter, isChecked, isDismissible, onCheckboxChanged, onTap, product) { return new T.ProductListItem(onTap, onCheckboxChanged, isChecked, isDismissible, product, filter, null); }, ProductListItem: function ProductListItem(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onTap = t0; _.onCheckboxChanged = t1; _.isChecked = t2; _.isDismissible = t3; _.product = t4; _.filter = t5; _.key = t6; }, ProductListItem_build_closure: function ProductListItem_build_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.filterMatch = t5; _.subtitle = t6; }, ProductListItem_build__closure2: function ProductListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ProductListItem_build__closure1: function ProductListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, ProductListItem_build__closure: function ProductListItem_build__closure(t0) { this.$this = t0; }, ProductListItem_build__closure0: function ProductListItem_build__closure0(t0) { this.$this = t0; }, ProductListItem_build__closure5: function ProductListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, ProductListItem_build__closure4: function ProductListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, ProductListItem_build__closure3: function ProductListItem_build__closure3(t0) { this.$this = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore: function(store) { var t1 = store.get$_store$_state(), t2 = store.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new T.QuoteEditItemsVM(t1, J.$index$asx(t3._list, t2).userCompany.company, store.get$_store$_state().uiState.quoteUIState.editing, store.get$_store$_state().uiState.quoteUIState.editingItemIndex, new T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure(store), new T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0(store), new T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1(store), new T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2(store)); }, QuoteEditItemsScreen: function QuoteEditItemsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteEditItemsScreen_build_closure0: function QuoteEditItemsScreen_build_closure0() { }, QuoteEditItemsScreen_build_closure: function QuoteEditItemsScreen_build_closure(t0) { this.$this = t0; }, QuoteEditItemsVM: function QuoteEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1(t0) { this.store = t0; }, QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2: function QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, QuoteScreen: function QuoteScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteScreen_build_closure15: function QuoteScreen_build_closure15(t0) { this.store = t0; }, QuoteScreen_build_closure13: function QuoteScreen_build_closure13(t0) { this.store = t0; }, QuoteScreen_build_closure14: function QuoteScreen_build_closure14(t0) { this.store = t0; }, QuoteScreen_build_closure4: function QuoteScreen_build_closure4(t0) { this.store = t0; }, QuoteScreen_build_closure0: function QuoteScreen_build_closure0(t0) { this.store = t0; }, QuoteScreen_build_closure1: function QuoteScreen_build_closure1(t0) { this.store = t0; }, QuoteScreen_build_closure2: function QuoteScreen_build_closure2(t0) { this.store = t0; }, QuoteScreen_build_closure3: function QuoteScreen_build_closure3(t0) { this.store = t0; }, QuoteScreen_build_closure5: function QuoteScreen_build_closure5(t0) { this.store = t0; }, QuoteScreen_build_closure6: function QuoteScreen_build_closure6(t0) { this.store = t0; }, QuoteScreen_build_closure7: function QuoteScreen_build_closure7(t0) { this.localization = t0; }, QuoteScreen_build_closure8: function QuoteScreen_build_closure8(t0) { this.localization = t0; }, QuoteScreen_build_closure9: function QuoteScreen_build_closure9(t0) { this.localization = t0; }, QuoteScreen_build_closure10: function QuoteScreen_build_closure10(t0) { this.localization = t0; }, QuoteScreen_build_closure11: function QuoteScreen_build_closure11(t0) { this.localization = t0; }, QuoteScreen_build_closure: function QuoteScreen_build_closure(t0) { this.store = t0; }, QuoteScreen_build_closure12: function QuoteScreen_build_closure12(t0) { this.context = t0; }, lineItemReport: function(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { var columns, productKeyMap, t4, t5, t6, t7, t8, t9, invoice, client, t10, precision, t11, t12, value, value0, value1, value2, t13, row, t14, skip, t15, value3, productId, t16, t17, t18, selectedColumns, _null = null, _s10_ = "quote_item", data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, lineItemReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s10_) ? J.$index$asx(reportSettings._map$_map, _s10_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.QuoteItemReportFields_12, C.QuoteItemReportFields_13, C.QuoteItemReportFields_0, C.QuoteItemReportFields_4, C.QuoteItemReportFields_2], type$.JSArray_legacy_QuoteItemReportFields), t1 = lineItemReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_QuoteItemReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new T.lineItemReport_closure(), t3).where$1(0, new T.lineItemReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); t1 = type$.legacy_String; productKeyMap = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t2 = productMap._map$_map, t3 = J.getInterceptor$x(t2), t4 = t3.get$entries(t2), t4 = t4.get$iterator(t4); t4.moveNext$0();) { t5 = t4.get$current(t4); productKeyMap.$indexSet(0, t5.get$value(t5).productKey, t5.get$value(t5).id); } for (t4 = J.get$entries$x(invoiceMap._map$_map), t4 = t4.get$iterator(t4), t5 = columns._list, t6 = J.getInterceptor$ax(t5), t7 = type$.JSArray_legacy_ReportElement, t8 = userCompany.company; t4.moveNext$0();) { t9 = t4.get$current(t4); invoice = t9.get$value(t9); t9 = invoice.clientId; client = J.$index$asx(clientMap._map$_map, t9); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t9 = staticState.currencyMap; t10 = client.settings.currencyId; t9 = J.$index$asx(t9._map$_map, t10); precision = t9 == null ? _null : t9.precision; if (precision == null) precision = 2; if (invoice.isDeleted || client.isDeleted) continue; if (!t8.reportIncludeDrafts && invoice.statusId === "1") continue; for (t9 = J.get$iterator$ax(invoice.lineItems._list), t11 = invoice.id, t12 = invoice.entityType, value = invoice.dueDate, value0 = client.displayName, value1 = invoice.date, value2 = invoice.number; t9.moveNext$0();) { t13 = t9.get$current(t9); row = H.setRuntimeTypeInfo([], t7); for (t14 = t6.get$iterator(t5), skip = false; t14.moveNext$0();) { t15 = t14.get$current(t14); value3 = t13.productKey; productId = productKeyMap.$index(0, value3); switch (t15) { case C.QuoteItemReportFields_2: value3 = t13.cost; break; case C.QuoteItemReportFields_4: value3 = t13.quantity; break; case C.QuoteItemReportFields_3: value3 = productId == null ? 0 : t3.$index(t2, productId).cost; break; case C.QuoteItemReportFields_5: t16 = t13.total$2(0, invoice, precision); t17 = t13.taxAmount$2(invoice, precision); t18 = productId == null ? 0 : t3.$index(t2, productId).cost; value3 = t16 - t17 - t18; break; case C.QuoteItemReportFields_8: value3 = t13.customValue1; break; case C.QuoteItemReportFields_9: value3 = t13.customValue2; break; case C.QuoteItemReportFields_10: value3 = t13.customValue3; break; case C.QuoteItemReportFields_11: value3 = t13.customValue4; break; case C.QuoteItemReportFields_1: value3 = t13.notes; break; case C.QuoteItemReportFields_6: value3 = t13.total$2(0, invoice, precision); break; case C.QuoteItemReportFields_0: break; case C.QuoteItemReportFields_7: value3 = t13.discount; break; case C.QuoteItemReportFields_12: value3 = value2; break; case C.QuoteItemReportFields_13: value3 = value1; break; case C.QuoteItemReportFields_14: value3 = value0; break; case C.QuoteItemReportFields_15: value3 = value; break; case C.QuoteItemReportFields_16: value3 = t13.get$hasTaxes(); break; case C.QuoteItemReportFields_17: value3 = t13.get$taxRates(); break; case C.QuoteItemReportFields_18: value3 = t13.taxAmount$2(invoice, precision); break; case C.QuoteItemReportFields_19: value3 = t13.total$2(0, invoice, precision) - t13.taxAmount$2(invoice, precision); break; default: value3 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value3)) skip = true; t16 = J.getInterceptor$(value3); if (t16.get$runtimeType(value3) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t12, t11)); else if (t15 === C.QuoteItemReportFields_4) row.push(new A.ReportNumberValue(value3, _null, _null, _null, t12, t11)); else if (t16.get$runtimeType(value3) === C.Type_double_K1J || t16.get$runtimeType(value3) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t10, _null, t12, t11)); else row.push(new A.ReportStringValue(value3, t12, t11)); } if (!skip) data.push(row); } } selectedColumns = t6.map$1$1(t5, new T.lineItemReport_closure1(), t1).toList$0(0); C.JSArray_methods.sort$1(data, new T.lineItemReport_closure2(lineItemReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_QuoteItemReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_ujV, new T.lineItemReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new T.lineItemReport_closure4(), t1), true, t2), data, true); }, QuoteItemReportFields: function QuoteItemReportFields(t0) { this._quote_item_report$_name = t0; }, memoizedQuoteItemReport_closure: function memoizedQuoteItemReport_closure() { }, lineItemReport_closure: function lineItemReport_closure() { }, lineItemReport_closure0: function lineItemReport_closure0() { }, lineItemReport_closure1: function lineItemReport_closure1() { }, lineItemReport_closure2: function lineItemReport_closure2(t0, t1) { this.lineItemReportSettings = t0; this.selectedColumns = t1; }, lineItemReport_closure3: function lineItemReport_closure3() { }, lineItemReport_closure4: function lineItemReport_closure4() { }, KanbanVM_fromStore: function(store) { var t6, t7, t8, t9, t10, t11, t12, t13, state = store.get$_store$_state(), t1 = $.$get$memoizedKanbanTaskList(), t2 = state.getUISelection$1(C.EntityType_task), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).taskState.map; t8 = t6.$index(t3, t5).clientState.map; t9 = t6.$index(t3, t5).userState.map; t10 = t6.$index(t3, t5).projectState.map; t11 = t6.$index(t3, t5).invoiceState.map; t12 = t6.$index(t3, t5).taskStatusState.map; t13 = t6.$index(t3, t5).taskState.list; t4 = t4.taskUIState.listUIState; return new T.KanbanVM(state, t1.call$9(t2, t7, t8, t9, t10, t11, t12, t13, t4), $.$get$memoizedFilteredTaskList().call$9(state.getUISelection$1(C.EntityType_task), t6.$index(t3, t5).taskState.map, t6.$index(t3, t5).clientState.map, t6.$index(t3, t5).userState.map, t6.$index(t3, t5).projectState.map, t6.$index(t3, t5).invoiceState.map, t6.$index(t3, t5).taskStatusState.map, t6.$index(t3, t5).taskState.list, t4), new T.KanbanVM_fromStore_closure(store), new T.KanbanVM_fromStore_closure0(state, store), new T.KanbanVM_fromStore_closure1(state, store)); }, KanbanViewBuilder: function KanbanViewBuilder(t0) { this.key = t0; }, _KanbanViewBuilderState: function _KanbanViewBuilderState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _KanbanViewBuilderState_build_closure: function _KanbanViewBuilderState_build_closure() { }, KanbanVM: function KanbanVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.taskList = t1; _.filteredTaskList = t2; _.onBoardChanged = t3; _.onSaveTaskPressed = t4; _.onSaveStatusPressed = t5; }, KanbanVM_fromStore_closure: function KanbanVM_fromStore_closure(t0) { this.store = t0; }, KanbanVM_fromStore_closure1: function KanbanVM_fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, KanbanVM_fromStore__closure: function KanbanVM_fromStore__closure(t0, t1, t2) { this._box_0 = t0; this.name = t1; this.statusOrder = t2; }, KanbanVM_fromStore_closure0: function KanbanVM_fromStore_closure0(t0, t1) { this.state = t0; this.store = t1; }, KanbanVM_fromStore__closure0: function KanbanVM_fromStore__closure0(t0, t1, t2, t3) { var _ = this; _._box_1 = t0; _.description = t1; _.statusOrder = t2; _.statusId = t3; }, KanbanVM_fromStore__closure1: function KanbanVM_fromStore__closure1(t0) { this.uiState = t0; }, KanbanVM_fromStore__closure2: function KanbanVM_fromStore__closure2(t0, t1) { this.uiState = t0; this.project = t1; }, KanbanVM_fromStore__closure3: function KanbanVM_fromStore__closure3(t0) { this.uiState = t0; }, TaskPresenter: function TaskPresenter() { this.context = this.entity = null; }, TaskPresenter_getField_closure: function TaskPresenter_getField_closure() { }, TaskPresenter_getField_closure0: function TaskPresenter_getField_closure0(t0, t1) { this.context = t0; this.notes = t1; }, TaskStatusViewVM_TaskStatusViewVM$fromStore: function(store) { var t4, t5, taskStatus, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).taskStatusState.map; t2 = t2.taskStatusUIState.selectedId; taskStatus = J.$index$asx(t5._map$_map, t2); if (taskStatus == null) taskStatus = S.TaskStatusEntity_TaskStatusEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; taskStatus.get$isNew(); return new T.TaskStatusViewVM(state, taskStatus, t1, new T.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure(store)); }, TaskStatusViewScreen: function TaskStatusViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, TaskStatusViewScreen_build_closure0: function TaskStatusViewScreen_build_closure0() { }, TaskStatusViewScreen_build_closure: function TaskStatusViewScreen_build_closure(t0) { this.$this = t0; }, TaskStatusViewVM: function TaskStatusViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.taskStatus = t1; _.company = t2; _.onBackPressed = t3; }, TaskStatusViewVM_TaskStatusViewVM$fromStore_closure: function TaskStatusViewVM_TaskStatusViewVM$fromStore_closure(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.vendorUIState, vendor = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new T.VendorEditContactsVM(J.$index$asx(t3._list, t1).userCompany.company, vendor, t2.editingContact, new T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure(store), new T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0(store), new T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1(store), new T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2(store)); }, VendorEditContactsScreen: function VendorEditContactsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditContactsScreen_build_closure0: function VendorEditContactsScreen_build_closure0() { }, VendorEditContactsScreen_build_closure: function VendorEditContactsScreen_build_closure(t0) { this.$this = t0; }, VendorEditContactsVM: function VendorEditContactsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.vendor = t1; _.contact = t2; _.onAddContactPressed = t3; _.onRemoveContactPressed = t4; _.onDoneContactPressed = t5; _.onChangedContact = t6; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1(t0) { this.store = t0; }, VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2: function VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2(t0) { this.store = t0; }, WebhookScreen: function WebhookScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, WebhookScreen_build_closure9: function WebhookScreen_build_closure9(t0) { this.store = t0; }, WebhookScreen_build_closure7: function WebhookScreen_build_closure7(t0) { this.store = t0; }, WebhookScreen_build_closure8: function WebhookScreen_build_closure8(t0) { this.store = t0; }, WebhookScreen_build_closure4: function WebhookScreen_build_closure4(t0) { this.store = t0; }, WebhookScreen_build_closure5: function WebhookScreen_build_closure5(t0) { this.store = t0; }, WebhookScreen_build_closure: function WebhookScreen_build_closure(t0) { this.store = t0; }, WebhookScreen_build_closure0: function WebhookScreen_build_closure0(t0) { this.store = t0; }, WebhookScreen_build_closure1: function WebhookScreen_build_closure1(t0) { this.store = t0; }, WebhookScreen_build_closure2: function WebhookScreen_build_closure2(t0) { this.store = t0; }, WebhookScreen_build_closure3: function WebhookScreen_build_closure3(t0) { this.store = t0; }, WebhookScreen_build_closure6: function WebhookScreen_build_closure6(t0) { this.context = t0; }, WebhookScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).webhookState.toString; t5 = $.$get$memoizedFilteredWebhookList(); t6 = state.getUISelection$1(C.EntityType_webhook); t7 = t4.$index(t1, t3).webhookState.map; t8 = t4.$index(t1, t3).webhookState.list; t2 = t2.webhookUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new T.WebhookScreenVM(t8); }, WebhookScreenBuilder: function WebhookScreenBuilder(t0) { this.key = t0; }, WebhookScreenBuilder_build_closure: function WebhookScreenBuilder_build_closure() { }, WebhookScreenVM: function WebhookScreenVM(t0) { this.webhookList = t0; }, Repository: function Repository() { }, RepositoryItemNotFoundException: function RepositoryItemNotFoundException() { }, PathProviderPlatform: function PathProviderPlatform() { }, Platform: function Platform() { }, PointPainter_draw: function(canvas, fill, paint, point, radius, stroke, strokeWidthPx) { var t1, t2; if (fill != null) { paint.set$color(0, P.Color$fromARGB(fill.a, fill.r, fill.g, fill.b)); paint.set$style(0, C.PaintingStyle_0); t1 = point.x; t1.toString; t2 = point.y; t2.toString; canvas.drawCircle$3(0, new P.Offset(t1, t2), radius, paint); } if (stroke != null && strokeWidthPx != null && strokeWidthPx > 0) { paint.set$color(0, P.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); paint.set$strokeWidth(strokeWidthPx); paint.set$strokeJoin(C.StrokeJoin_2); paint.set$style(0, C.PaintingStyle_1); t1 = point.x; t1.toString; t2 = point.y; t2.toString; canvas.drawCircle$3(0, new P.Offset(t1, t2), radius, paint); } }, Gradient_lerp: function(a, b, t) { return null; }, MatrixUtils_getAsTranslation: function(transform) { var values = transform._m4storage; if (values[0] === 1 && values[1] === 0 && values[2] === 0 && values[3] === 0 && values[4] === 0 && values[5] === 1 && values[6] === 0 && values[7] === 0 && values[8] === 0 && values[9] === 0 && values[10] === 1 && values[11] === 0 && values[14] === 0 && values[15] === 1) return new P.Offset(values[12], values[13]); return null; }, MatrixUtils_matrixEquals: function(a, b) { var t1, t2, t3; if (a == b) return true; if (a == null) { b.toString; return T.MatrixUtils_isIdentity(b); } if (b == null) return T.MatrixUtils_isIdentity(a); t1 = a._m4storage; t2 = t1[0]; t3 = b._m4storage; return t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8] && t1[9] === t3[9] && t1[10] === t3[10] && t1[11] === t3[11] && t1[12] === t3[12] && t1[13] === t3[13] && t1[14] === t3[14] && t1[15] === t3[15]; }, MatrixUtils_isIdentity: function(a) { var t1 = a._m4storage; return t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 1; }, MatrixUtils_transformPoint: function(transform, point) { var storage = transform._m4storage, x = point._dx, y = point._dy, rx = storage[0] * x + storage[4] * y + storage[12], ry = storage[1] * x + storage[5] * y + storage[13], rw = storage[3] * x + storage[7] * y + storage[15]; if (rw === 1) return new P.Offset(rx, ry); else return new P.Offset(rx / rw, ry / rw); }, MatrixUtils__minMax: function() { var t1 = $.MatrixUtils____minMax; if (t1 === $) { t1 = new Float64Array(4); $.MatrixUtils____minMax = t1; } return t1; }, MatrixUtils__accumulate: function(m, x, y, first, isAffine) { var t1, w = isAffine ? 1 : 1 / (m[3] * x + m[7] * y + m[15]), tx = (m[0] * x + m[4] * y + m[12]) * w, ty = (m[1] * x + m[5] * y + m[13]) * w; if (first) { t1 = T.MatrixUtils__minMax(); J.$indexSet$ax(T.MatrixUtils__minMax(), 2, tx); J.$indexSet$ax(t1, 0, tx); t1 = T.MatrixUtils__minMax(); J.$indexSet$ax(T.MatrixUtils__minMax(), 3, ty); J.$indexSet$ax(t1, 1, ty); } else { if (tx < J.$index$asx(T.MatrixUtils__minMax(), 0)) J.$indexSet$ax(T.MatrixUtils__minMax(), 0, tx); if (ty < J.$index$asx(T.MatrixUtils__minMax(), 1)) J.$indexSet$ax(T.MatrixUtils__minMax(), 1, ty); if (tx > J.$index$asx(T.MatrixUtils__minMax(), 2)) J.$indexSet$ax(T.MatrixUtils__minMax(), 2, tx); if (ty > J.$index$asx(T.MatrixUtils__minMax(), 3)) J.$indexSet$ax(T.MatrixUtils__minMax(), 3, ty); } }, MatrixUtils_transformRect: function(transform, rect) { var isAffine, wx, hx, rx, wy, hy, ry, left, right, $top, bottom, hw, rw, ulx, uly, urx, t3, ury, t4, llx, lly, lrx, lry, storage = transform._m4storage, x = rect.left, y = rect.top, t1 = rect.right, w = t1 - x, t2 = rect.bottom, h = t2 - y; if (!isFinite(w) || !isFinite(h)) { isAffine = storage[3] === 0 && storage[7] === 0 && storage[15] === 1; T.MatrixUtils__accumulate(storage, x, y, true, isAffine); T.MatrixUtils__accumulate(storage, t1, y, false, isAffine); T.MatrixUtils__accumulate(storage, x, t2, false, isAffine); T.MatrixUtils__accumulate(storage, t1, t2, false, isAffine); return new P.Rect(J.$index$asx(T.MatrixUtils__minMax(), 0), J.$index$asx(T.MatrixUtils__minMax(), 1), J.$index$asx(T.MatrixUtils__minMax(), 2), J.$index$asx(T.MatrixUtils__minMax(), 3)); } t1 = storage[0]; wx = t1 * w; t2 = storage[4]; hx = t2 * h; rx = t1 * x + t2 * y + storage[12]; t2 = storage[1]; wy = t2 * w; t1 = storage[5]; hy = t1 * h; ry = t2 * x + t1 * y + storage[13]; t1 = storage[3]; if (t1 === 0 && storage[7] === 0 && storage[15] === 1) { left = rx + wx; if (wx < 0) right = rx; else { right = left; left = rx; } if (hx < 0) left += hx; else right += hx; $top = ry + wy; if (wy < 0) bottom = ry; else { bottom = $top; $top = ry; } if (hy < 0) $top += hy; else bottom += hy; return new P.Rect(left, $top, right, bottom); } else { t2 = storage[7]; hw = t2 * h; rw = t1 * x + t2 * y + storage[15]; ulx = rx / rw; uly = ry / rw; t2 = rx + wx; t1 = rw + t1 * w; urx = t2 / t1; t3 = ry + wy; ury = t3 / t1; t4 = rw + hw; llx = (rx + hx) / t4; lly = (ry + hy) / t4; t1 += hw; lrx = (t2 + hx) / t1; lry = (t3 + hy) / t1; return new P.Rect(T.MatrixUtils__min4(ulx, urx, llx, lrx), T.MatrixUtils__min4(uly, ury, lly, lry), T.MatrixUtils__max4(ulx, urx, llx, lrx), T.MatrixUtils__max4(uly, ury, lly, lry)); } }, MatrixUtils__min4: function(a, b, c, d) { var e = a < b ? a : b, f = c < d ? c : d; return e < f ? e : f; }, MatrixUtils__max4: function(a, b, c, d) { var e = a > b ? a : b, f = c > d ? c : d; return e > f ? e : f; }, MatrixUtils_inverseTransformRect: function(transform, rect) { var transform0; if (T.MatrixUtils_isIdentity(transform)) return rect; transform0 = new E.Matrix4(new Float64Array(16)); transform0.setFrom$1(transform); transform0.copyInverse$1(transform0); return T.MatrixUtils_transformRect(transform0, rect); }, MatrixUtils_forceToPoint: function(offset) { var t2, t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t2 = new E.Vector4(new Float64Array(4)); t2.setValues$4(0, 0, 0, offset._dx); t1.setRow$2(0, t2); t2 = new E.Vector4(new Float64Array(4)); t2.setValues$4(0, 0, 0, offset._dy); t1.setRow$2(1, t2); return t1; }, launch: function(urlString, forceSafariVC, forceWebView) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1, result, url, isWebURL; var $async$launch = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = P.Uri_parse(J.trimLeft$0$s(urlString), 0, null); isWebURL = url.get$scheme() === "http" || url.get$scheme() === "https"; if ((forceSafariVC === true || false) && !isWebURL) throw H.wrapException(F.PlatformException$("NOT_A_WEB_SCHEME", null, "To use webview or safariVC, you need to passin a web URL. This " + urlString + " is not a web URL.", null)); t1 = $.$get$UrlLauncherPlatform__instance(); $async$goto = 3; return P._asyncAwait(t1.launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(urlString, false, false, C.Map_empty6, false, forceSafariVC == null ? isWebURL : forceSafariVC, false, null), $async$launch); case 3: // returning from await. result = $async$result; $async$returnValue = result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$launch, $async$completer); }, canLaunch: function(urlString) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$canLaunch = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($.$get$UrlLauncherPlatform__instance().canLaunch$1(urlString), $async$canLaunch); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$canLaunch, $async$completer); }, UuidUtil_mathRNG: function(seed) { var rand, t1, i, b = new Uint8Array(16); if (seed === -1) rand = $.$get$UuidUtil__random(); else if (seed == null) rand = C.C__JSRandom; else { t1 = new P._Random(); t1._Random$1(seed); rand = t1; } for (i = 0; i < 16; ++i) b[i] = rand.nextInt$1(256); return b; } }, Q = { OutputStream$: function(size) { var t1 = size == null ? 32768 : size; return new Q.OutputStream(new Uint8Array(t1)); }, OutputStreamBase: function OutputStreamBase() { }, OutputStream: function OutputStream(t0) { this._output_stream$_length = 0; this._output_stream$_buffer = t0; }, BoardViewController: function BoardViewController() { this.__BoardViewController_state = $; }, CopyOnWriteList: function CopyOnWriteList(t0, t1, t2) { var _ = this; _._copyBeforeWrite = true; _._growable = t0; _._copy_on_write_list$_list = t1; _.$ti = t2; }, Int64Serializer: function Int64Serializer(t0) { this.types = t0; }, DayTimeStepper: function DayTimeStepper(t0, t1) { this._day_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, TextDirection0: function TextDirection0(t0) { this._text_element0$_name = t0; }, MaxWidthStrategy: function MaxWidthStrategy() { }, TextElement: function TextElement(t0, t1, t2) { var _ = this; _.text = t0; _.textScaleFactor = t1; _._painterReady = false; _._text_element$_textStyle = null; _._text_element$_textDirection = t2; _._maxWidthStrategy = _._text_element$_maxWidth = null; _.__TextElement__measurement = _.__TextElement__textPainter = $; _._text_element$_opacity = null; }, MemoryDirectory: function MemoryDirectory(t0, t1) { this.fileSystem = t0; this.path = t1; }, MemoryDirectory_createSync_closure: function MemoryDirectory_createSync_closure(t0) { this.recursive = t0; }, MemoryDirectory_createTempSync_closure: function MemoryDirectory_createTempSync_closure(t0) { this.dirname = t0; }, MemoryDirectory_createTempSync_closure0: function MemoryDirectory_createTempSync_closure0(t0) { this.dirname = t0; }, MemoryDirectory_createTempSync_name: function MemoryDirectory_createTempSync_name(t0, t1) { this._box_0 = t0; this.basename = t1; }, _MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin: function _MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin() { }, MaterialBannerThemeData: function MaterialBannerThemeData(t0, t1, t2, t3) { var _ = this; _.backgroundColor = t0; _.contentTextStyle = t1; _.padding = t2; _.leadingPadding = t3; }, _MaterialBannerThemeData_Object_Diagnosticable: function _MaterialBannerThemeData_Object_Diagnosticable() { }, CalendarDatePicker: function CalendarDatePicker(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.currentDate = t3; _.onDateChanged = t4; _.initialCalendarMode = t5; _.selectableDayPredicate = t6; _.key = t7; }, _CalendarDatePickerState: function _CalendarDatePickerState(t0, t1, t2) { var _ = this; _._announcedInitialDate = false; _.___CalendarDatePickerState__selectedDate = _.___CalendarDatePickerState__currentDisplayedMonthDate = _.___CalendarDatePickerState__mode = $; _._monthPickerKey = t0; _._yearPickerKey = t1; _.___CalendarDatePickerState__textDirection = _.___CalendarDatePickerState__localizations = $; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CalendarDatePickerState__handleModeChanged_closure: function _CalendarDatePickerState__handleModeChanged_closure(t0, t1) { this.$this = t0; this.mode = t1; }, _CalendarDatePickerState__handleMonthChanged_closure: function _CalendarDatePickerState__handleMonthChanged_closure(t0, t1) { this.$this = t0; this.date = t1; }, _CalendarDatePickerState__handleYearChanged_closure: function _CalendarDatePickerState__handleYearChanged_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _CalendarDatePickerState__handleDayChanged_closure: function _CalendarDatePickerState__handleDayChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _CalendarDatePickerState_build_closure: function _CalendarDatePickerState_build_closure(t0) { this.$this = t0; }, _DatePickerModeToggleButton: function _DatePickerModeToggleButton(t0, t1, t2, t3) { var _ = this; _.mode = t0; _.title = t1; _.onTitlePressed = t2; _.key = t3; }, _DatePickerModeToggleButtonState: function _DatePickerModeToggleButtonState(t0, t1) { var _ = this; _.___DatePickerModeToggleButtonState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MonthPicker: function _MonthPicker(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.initialMonth = t0; _.currentDate = t1; _.firstDate = t2; _.lastDate = t3; _.selectedDate = t4; _.onChanged = t5; _.onDisplayedMonthChanged = t6; _.selectableDayPredicate = t7; _.key = t8; }, _MonthPickerState: function _MonthPickerState(t0, t1) { var _ = this; _._pageViewKey = t0; _.___MonthPickerState__textDirection = _.___MonthPickerState__localizations = _.___MonthPickerState__pageController = _.___MonthPickerState__previousMonthDate = _.___MonthPickerState__nextMonthDate = _.___MonthPickerState__currentMonth = $; _._actionMap = _._shortcutMap = null; _.___MonthPickerState__dayGridFocus = $; _._widget = _._focusedDay = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MonthPickerState_didUpdateWidget_closure: function _MonthPickerState_didUpdateWidget_closure(t0) { this.$this = t0; }, _MonthPickerState__handleMonthPageChanged_closure: function _MonthPickerState__handleMonthPageChanged_closure(t0, t1) { this.$this = t0; this.monthPage = t1; }, _MonthPickerState__handleGridFocusChange_closure: function _MonthPickerState__handleGridFocusChange_closure(t0, t1) { this.$this = t0; this.focused = t1; }, _MonthPickerState__handleDirectionFocus_closure: function _MonthPickerState__handleDirectionFocus_closure(t0, t1) { this.$this = t0; this.intent = t1; }, _FocusedDate: function _FocusedDate(t0, t1, t2) { this.date = t0; this.child = t1; this.key = t2; }, _DayPicker: function _DayPicker(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.selectedDate = t0; _.currentDate = t1; _.onChanged = t2; _.firstDate = t3; _.lastDate = t4; _.displayedMonth = t5; _.selectableDayPredicate = t6; _.key = t7; }, _DayPickerState: function _DayPickerState(t0) { var _ = this; _.___DayPickerState__dayFocusNodes = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DayPickerState_build_closure: function _DayPickerState_build_closure(t0, t1) { this.$this = t0; this.dayToBuild = t1; }, _DayPickerGridDelegate: function _DayPickerGridDelegate() { }, YearPicker: function YearPicker(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.currentDate = t0; _.firstDate = t1; _.lastDate = t2; _.initialDate = t3; _.selectedDate = t4; _.onChanged = t5; _.key = t6; }, _YearPickerState: function _YearPickerState(t0) { var _ = this; _.___YearPickerState__scrollController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _YearPickerState__buildYearItem_closure: function _YearPickerState__buildYearItem_closure(t0, t1) { this.$this = t0; this.year = t1; }, _YearPickerGridDelegate: function _YearPickerGridDelegate() { }, __DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin: function __DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin() { }, DateUtils_isSameDay: function(dateA, dateB) { var _null = null, t1 = dateA == null, t2 = t1 ? _null : H.Primitives_getYear(dateA), t3 = dateB == null; if (t2 == (t3 ? _null : H.Primitives_getYear(dateB))) { t2 = t1 ? _null : H.Primitives_getMonth(dateA); if (t2 == (t3 ? _null : H.Primitives_getMonth(dateB))) { t1 = t1 ? _null : H.Primitives_getDay(dateA); t1 = t1 == (t3 ? _null : H.Primitives_getDay(dateB)); } else t1 = false; } else t1 = false; return t1; }, DateUtils_isSameMonth: function(dateA, dateB) { var _null = null, t1 = dateA == null, t2 = t1 ? _null : H.Primitives_getYear(dateA), t3 = dateB == null; if (t2 == (t3 ? _null : H.Primitives_getYear(dateB))) { t1 = t1 ? _null : H.Primitives_getMonth(dateA); t1 = t1 == (t3 ? _null : H.Primitives_getMonth(dateB)); } else t1 = false; return t1; }, DateUtils_monthDelta: function(startDate, endDate) { endDate.toString; return (H.Primitives_getYear(endDate) - H.Primitives_getYear(startDate)) * 12 + H.Primitives_getMonth(endDate) - H.Primitives_getMonth(startDate); }, DateUtils_getDaysInMonth: function(year, month) { if (month === 2) return C.JSInt_methods.$mod(year, 4) === 0 && C.JSInt_methods.$mod(year, 100) !== 0 || C.JSInt_methods.$mod(year, 400) === 0 ? 29 : 28; return C.List_WB4[month - 1]; }, DatePickerEntryMode: function DatePickerEntryMode(t0, t1) { this.index = t0; this._date$_name = t1; }, DatePickerMode: function DatePickerMode(t0) { this._date$_name = t0; }, ListTileTheme$: function(child, contentPadding, dense, enableFeedback, horizontalTitleGap, iconColor, key, minLeadingWidth, minVerticalPadding, selectedColor, selectedTileColor, shape, style, textColor, tileColor) { return new Q.ListTileTheme(false, shape, style, selectedColor, iconColor, textColor, contentPadding, tileColor, selectedTileColor, horizontalTitleGap, minVerticalPadding, minLeadingWidth, enableFeedback, child, key); }, ListTileTheme_merge: function(child, selectedColor) { var _null = null; return new T.Builder(new Q.ListTileTheme_merge_closure(_null, _null, _null, _null, selectedColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, child), _null); }, ListTileTheme_of: function(context) { var result = context.dependOnInheritedWidgetOfExactType$1$0(type$.ListTileTheme); return result == null ? C.ListTileTheme_Drw : result; }, ListTile$: function(autofocus, contentPadding, dense, enabled, isThreeLine, key, leading, onLongPress, onTap, selected, selectedTileColor, shape, subtitle, tileColor, title, trailing) { return new Q.ListTile(leading, title, subtitle, trailing, isThreeLine, dense, shape, contentPadding, enabled, onTap, onLongPress, selected, false, tileColor, selectedTileColor, key); }, _RenderListTile__layoutBox: function(box, constraints) { var t1; if (box == null) return C.Size_0_0; box.layout$2$parentUsesSize(0, constraints, true); t1 = box._box$_size; t1.toString; return t1; }, ListTileStyle: function ListTileStyle(t0) { this._list_tile$_name = t0; }, ListTileTheme: function ListTileTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.dense = t0; _.shape = t1; _.style = t2; _.selectedColor = t3; _.iconColor = t4; _.textColor = t5; _.contentPadding = t6; _.tileColor = t7; _.selectedTileColor = t8; _.horizontalTitleGap = t9; _.minVerticalPadding = t10; _.minLeadingWidth = t11; _.enableFeedback = t12; _.child = t13; _.key = t14; }, ListTileTheme_merge_closure: function ListTileTheme_merge_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.key = t0; _.dense = t1; _.shape = t2; _.style = t3; _.selectedColor = t4; _.iconColor = t5; _.textColor = t6; _.contentPadding = t7; _.tileColor = t8; _.selectedTileColor = t9; _.enableFeedback = t10; _.horizontalTitleGap = t11; _.minVerticalPadding = t12; _.minLeadingWidth = t13; _.child = t14; }, ListTileControlAffinity: function ListTileControlAffinity(t0) { this._list_tile$_name = t0; }, ListTile: function ListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.leading = t0; _.title = t1; _.subtitle = t2; _.trailing = t3; _.isThreeLine = t4; _.dense = t5; _.shape = t6; _.contentPadding = t7; _.enabled = t8; _.onTap = t9; _.onLongPress = t10; _.selected = t11; _.autofocus = t12; _.tileColor = t13; _.selectedTileColor = t14; _.key = t15; }, _ListTileSlot: function _ListTileSlot(t0) { this._list_tile$_name = t0; }, _ListTile: function _ListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.leading = t0; _.title = t1; _.subtitle = t2; _.trailing = t3; _.isThreeLine = t4; _.isDense = t5; _.visualDensity = t6; _.textDirection = t7; _.titleBaselineType = t8; _.subtitleBaselineType = t9; _.horizontalTitleGap = t10; _.minVerticalPadding = t11; _.minLeadingWidth = t12; _.key = t13; }, _ListTileElement: function _ListTileElement(t0, t1, t2, t3, t4) { var _ = this; _.slotToChild = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _RenderListTile: function _RenderListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.children = t0; _._trailing = _._subtitle = _._title = _._list_tile$_leading = null; _._isDense = t1; _._visualDensity = t2; _._isThreeLine = t3; _._list_tile$_textDirection = t4; _._titleBaselineType = t5; _._subtitleBaselineType = t6; _._horizontalTitleGap = t7; _._minVerticalPadding = t8; _._minLeadingWidth = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderListTile_debugDescribeChildren_add: function _RenderListTile_debugDescribeChildren_add(t0) { this.value = t0; }, _RenderListTile_paint_doPaint: function _RenderListTile_paint_doPaint(t0, t1) { this.context = t0; this.offset = t1; }, _RenderListTile_hitTestChildren_closure: function _RenderListTile_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.parentData = t1; this.child = t2; }, SliderThemeData: function SliderThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.trackHeight = t0; _.activeTrackColor = t1; _.inactiveTrackColor = t2; _.disabledActiveTrackColor = t3; _.disabledInactiveTrackColor = t4; _.activeTickMarkColor = t5; _.inactiveTickMarkColor = t6; _.disabledActiveTickMarkColor = t7; _.disabledInactiveTickMarkColor = t8; _.thumbColor = t9; _.overlappingShapeStrokeColor = t10; _.disabledThumbColor = t11; _.overlayColor = t12; _.valueIndicatorColor = t13; _.overlayShape = t14; _.tickMarkShape = t15; _.thumbShape = t16; _.trackShape = t17; _.valueIndicatorShape = t18; _.rangeTickMarkShape = t19; _.rangeThumbShape = t20; _.rangeTrackShape = t21; _.rangeValueIndicatorShape = t22; _.showValueIndicator = t23; _.valueIndicatorTextStyle = t24; _.minThumbSeparation = t25; _.thumbSelector = t26; }, _SliderThemeData_Object_Diagnosticable: function _SliderThemeData_Object_Diagnosticable() { }, TextSpan$: function(children, recognizer, style, text) { var t1 = recognizer == null ? C.C__DeferringMouseCursor : C.SystemMouseCursor_click; return new Q.TextSpan(text, children, recognizer, t1, style); }, TextSpan: function TextSpan(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.children = t1; _.recognizer = t2; _.mouseCursor = t3; _.style = t4; }, TextSpan_debugDescribeChildren_closure: function TextSpan_debugDescribeChildren_closure() { }, TextOverflow: function TextOverflow(t0) { this._paragraph$_name = t0; }, TextParentData: function TextParentData(t0, t1, t2) { var _ = this; _.scale = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, RenderParagraph: function RenderParagraph(t0, t1, t2, t3, t4, t5) { var _ = this; _._paragraph$_textPainter = t0; _.__RenderParagraph__placeholderSpans = $; _._softWrap = t1; _._paragraph$_overflow = t2; _._needsClipping = false; _._paragraph$_cachedChildNodes = _._semanticsInfo = _._paragraph$_placeholderDimensions = _._overflowShader = null; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderParagraph__extractPlaceholderSpans_closure: function RenderParagraph__extractPlaceholderSpans_closure(t0) { this.$this = t0; }, RenderParagraph_hitTestChildren__hitText_set: function RenderParagraph_hitTestChildren__hitText_set(t0) { this._box_0 = t0; }, RenderParagraph_hitTestChildren__hitText_get: function RenderParagraph_hitTestChildren__hitText_get(t0) { this._box_0 = t0; }, RenderParagraph_hitTestChildren_closure: function RenderParagraph_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.textParentData = t2; }, RenderParagraph_paint_closure: function RenderParagraph_paint_closure(t0) { this._box_0 = t0; }, RenderParagraph_describeSemanticsConfiguration_closure: function RenderParagraph_describeSemanticsConfiguration_closure() { }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin() { }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin: function _RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin() { }, RenderAbstractViewport_of: function(object) { var t1, t2; for (t1 = type$.nullable_RenderObject, t2 = type$.RenderAbstractViewport; object != null;) { if (t2._is(object)) return object; object = t1._as(object.get$parent(object)); } return null; }, RenderViewportBase_showInViewport: function(curve, descendant, duration, offset, rect, viewport) { var leadingEdgeOffset, trailingEdgeOffset, t1, t2, t3, targetOffset, transform; if (descendant == null) return rect; leadingEdgeOffset = viewport.getOffsetToReveal$3$rect(descendant, 0, rect); trailingEdgeOffset = viewport.getOffsetToReveal$3$rect(descendant, 1, rect); t1 = offset._pixels; t1.toString; t2 = leadingEdgeOffset.offset; t3 = trailingEdgeOffset.offset; if (t2 < t3) targetOffset = Math.abs(t1 - t2) < Math.abs(t1 - t3) ? leadingEdgeOffset : trailingEdgeOffset; else if (t1 > t2) targetOffset = leadingEdgeOffset; else { if (!(t1 < t3)) { t1 = viewport._node$_parent; t1.toString; transform = descendant.getTransformTo$1(0, type$.RenderObject._as(t1)); return T.MatrixUtils_transformRect(transform, rect == null ? descendant.get$paintBounds() : rect); } targetOffset = trailingEdgeOffset; } offset.moveTo$3$curve$duration(0, targetOffset.offset, curve, duration); return targetOffset.rect; }, CacheExtentStyle: function CacheExtentStyle(t0) { this._viewport$_name = t0; }, RevealedOffset: function RevealedOffset(t0, t1) { this.offset = t0; this.rect = t1; }, RenderViewportBase: function RenderViewportBase() { }, RenderViewportBase_visitChildrenForSemantics_closure: function RenderViewportBase_visitChildrenForSemantics_closure() { }, RenderViewportBase_hitTestChildren_closure: function RenderViewportBase_hitTestChildren_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.child = t2; _.sliverResult = t3; }, RenderViewport: function RenderViewport(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._anchor = t0; _._viewport$_center = null; _.__RenderViewport__maxScrollExtent = _.__RenderViewport__minScrollExtent = $; _._viewport$_hasVisualOverflow = false; _._viewport$_axisDirection = t1; _._crossAxisDirection = t2; _._viewport$_offset = t3; _._cacheExtent = t4; _._calculatedCacheExtent = null; _._cacheExtentStyle = t5; _._viewport$_clipBehavior = t6; _._viewport$_clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t7; _.ContainerRenderObjectMixin__firstChild = t8; _.ContainerRenderObjectMixin__lastChild = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderShrinkWrappingViewport: function RenderShrinkWrappingViewport(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.__RenderShrinkWrappingViewport__shrinkWrapExtent = _.__RenderShrinkWrappingViewport__maxScrollExtent = $; _._viewport$_hasVisualOverflow = false; _._viewport$_axisDirection = t0; _._crossAxisDirection = t1; _._viewport$_offset = t2; _._cacheExtent = t3; _._calculatedCacheExtent = null; _._cacheExtentStyle = t4; _._viewport$_clipBehavior = t5; _._viewport$_clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t6; _.ContainerRenderObjectMixin__firstChild = t7; _.ContainerRenderObjectMixin__lastChild = t8; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderViewportBase_RenderBox_ContainerRenderObjectMixin: function _RenderViewportBase_RenderBox_ContainerRenderObjectMixin() { }, AssetBundle__utf8decode: function(data) { return C.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(data))); }, AssetBundle: function AssetBundle() { }, CachingAssetBundle: function CachingAssetBundle() { }, CachingAssetBundle_loadStructuredData_closure: function CachingAssetBundle_loadStructuredData_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.key = t2; _.T = t3; }, PlatformAssetBundle: function PlatformAssetBundle(t0, t1) { this._stringCache = t0; this._structuredDataCache = t1; }, BinaryMessenger: function BinaryMessenger() { }, RawKeyEventDataFuchsia: function RawKeyEventDataFuchsia() { }, PreferredSize: function PreferredSize(t0, t1, t2) { this.child = t0; this.preferredSize = t1; this.key = t2; }, SafeArea$: function(bottom, child, minimum, $top) { return new Q.SafeArea($top, bottom, minimum, child, null); }, SafeArea: function SafeArea(t0, t1, t2, t3, t4) { var _ = this; _.top = t0; _.bottom = t1; _.minimum = t2; _.child = t3; _.key = t4; }, Viewport$: function(anchor, axisDirection, cacheExtent, cacheExtentStyle, center, clipBehavior, offset, slivers) { return new Q.Viewport(axisDirection, anchor, offset, center, cacheExtent, cacheExtentStyle, clipBehavior, slivers, null); }, Viewport_getDefaultCrossAxisDirection: function(context, axisDirection) { var t1; switch (axisDirection) { case C.AxisDirection_0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return G.textDirectionToAxisDirection(t1.textDirection); case C.AxisDirection_1: return C.AxisDirection_2; case C.AxisDirection_2: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return G.textDirectionToAxisDirection(t1.textDirection); case C.AxisDirection_3: return C.AxisDirection_2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, Viewport: function Viewport(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.axisDirection = t0; _.anchor = t1; _.offset = t2; _.center = t3; _.cacheExtent = t4; _.cacheExtentStyle = t5; _.clipBehavior = t6; _.children = t7; _.key = t8; }, _ViewportElement: function _ViewportElement(t0, t1, t2, t3, t4) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, ShrinkWrappingViewport: function ShrinkWrappingViewport(t0, t1, t2, t3, t4) { var _ = this; _.axisDirection = t0; _.offset = t1; _.clipBehavior = t2; _.children = t3; _.key = t4; }, WebHelper: function WebHelper(t0, t1, t2, t3) { var _ = this; _._web_helper$_store = t0; _.fileFetcher = t1; _._memCache = t2; _._web_helper$_queue = t3; _.concurrentCalls = 0; }, WebHelper__manageResponse_closure: function WebHelper__manageResponse_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.oldCacheObject = t2; }, WebHelper__saveFileAndPostUpdates_closure: function WebHelper__saveFileAndPostUpdates_closure(t0, t1) { this._box_0 = t0; this.receivedBytesResultController = t1; }, HttpExceptionWithStatus: function HttpExceptionWithStatus(t0, t1) { this.message = t0; this.uri = t1; }, ToastFuture$create: function(duration, _entry, _onDismiss, _containerKey) { var t1 = new Q.ToastFuture(_entry, _onDismiss, _containerKey); t1.ToastFuture$create$4(duration, _entry, _onDismiss, _containerKey); return t1; }, ToastFuture: function ToastFuture(t0, t1, t2) { var _ = this; _._styled_toast_manage$_entry = t0; _._styled_toast_manage$_onDismiss = t1; _._containerKey = t2; _._isShow = true; _._styled_toast_manage$_timer = null; }, ToastFuture$create_closure: function ToastFuture$create_closure(t0) { this.$this = t0; }, ToastManager: function ToastManager(t0) { this.toastSet = t0; }, ToastManager_dismissAll_closure: function ToastManager_dismissAll_closure(t0) { this.showAnim = t0; }, LoadConfig: function LoadConfig() { }, CameraDevice: function CameraDevice(t0, t1) { this.index = t0; this._camera_device$_name = t1; }, NumberFormatParseResult: function NumberFormatParseResult(t0, t1) { var _ = this; _.negativePrefix = t0; _.positiveSuffix = _.negativeSuffix = _.positivePrefix = ""; _.multiplier = 1; _.minimumExponentDigits = 0; _.maximumIntegerDigits = 40; _.minimumIntegerDigits = 1; _.maximumFractionDigits = 3; _.minimumFractionDigits = 0; _.finalGroupingSize = _.groupingSize = 3; _.useExponentialNotation = _.useSignForPositiveExponent = _.decimalSeparatorAlwaysShown = false; _.decimalDigits = t1; }, NumberFormatParser: function NumberFormatParser(t0, t1, t2, t3, t4, t5) { var _ = this; _.symbols = t0; _.pattern = t1; _.isForCurrency = t2; _.currencySymbol = t3; _.currencyName = t4; _.result = t5; _.inQuote = _.groupingSizeSetExplicitly = false; _.decimalPos = -1; _.digitRightCount = _.zeroDigitCount = _.digitLeftCount = 0; _.groupingCount = -1; }, GroupEntity_GroupEntity: function(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = G.SettingsEntity_SettingsEntity(null, null, null); return Q._$GroupEntity$_(0, "", 0, "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity), t1, false, false, "", t2, 0); }, GroupEntity__initializeBuilder: function(builder) { builder.get$documents().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity)); return builder; }, _$GroupEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, documents, id, isChanged, isDeleted, $name, settings, updatedAt) { var _s11_ = "GroupEntity"; if (settings == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "settings")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "documents")); return new Q._$GroupEntity($name, settings, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, GroupListResponse: function GroupListResponse() { }, GroupItemResponse: function GroupItemResponse() { }, GroupEntity: function GroupEntity() { }, _$GroupListResponseSerializer: function _$GroupListResponseSerializer() { }, _$GroupItemResponseSerializer: function _$GroupItemResponseSerializer() { }, _$GroupEntitySerializer: function _$GroupEntitySerializer() { }, _$GroupListResponse: function _$GroupListResponse(t0) { this.data = t0; this._group_model$__hashCode = null; }, GroupListResponseBuilder: function GroupListResponseBuilder() { this._group_model$_data = this._group_model$_$v = null; }, _$GroupItemResponse: function _$GroupItemResponse(t0) { this.data = t0; this._group_model$__hashCode = null; }, GroupItemResponseBuilder: function GroupItemResponseBuilder() { this._group_model$_data = this._group_model$_$v = null; }, _$GroupEntity: function _$GroupEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.name = t0; _.settings = t1; _.documents = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._group_model$__hashCode = null; }, GroupEntityBuilder: function GroupEntityBuilder() { var _ = this; _._group_model$_id = _._group_model$_assignedUserId = _._group_model$_createdUserId = _._group_model$_isDeleted = _._group_model$_archivedAt = _._group_model$_updatedAt = _._group_model$_createdAt = _._group_model$_isChanged = _._group_model$_documents = _._group_model$_settings = _._group_model$_name = _._group_model$_$v = null; }, _GroupEntity_Object_BaseEntity: function _GroupEntity_Object_BaseEntity() { }, _GroupEntity_Object_BaseEntity_SelectableEntity: function _GroupEntity_Object_BaseEntity_SelectableEntity() { }, InvoiceEntity_InvoiceEntity: function(client, entityType, id, state, user) { var company, t1, t2, t3, t4, exchangeRate, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _null = null; if (state == null) company = _null; else { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = J.$index$asx(t1._list, t2).userCompany.company; } t1 = client == null; t2 = t1 ? _null : client.settings.currencyId; if ((t2 == null ? "" : t2).length !== 0) { t2 = state.staticState.currencyMap; t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.company.settings.currencyId; t3 = t4 == null ? "1" : t4; exchangeRate = R.getExchangeRate(t2, t3, client.settings.currencyId); } else exchangeRate = 1; if (id == null) { t2 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t2; t2 = "" + t2; } else t2 = id; t3 = entityType == null ? C.EntityType_invoice : entityType; t4 = t1 ? _null : client.id; if (t4 == null) t4 = ""; t5 = Y.convertDateTimeToSqlDate(_null); t6 = company == null; t7 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t7 == null ? 0 : t7) >= 1) { t7 = t6 ? _null : company.settings; t7 = t7 == null ? _null : t7.defaultTaxName1; if (t7 == null) t7 = ""; } else t7 = ""; t8 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t8 == null ? 0 : t8) >= 1) { t8 = t6 ? _null : company.settings; t8 = t8 == null ? _null : t8.defaultTaxRate1; if (t8 == null) t8 = 0; } else t8 = 0; t9 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t9 == null ? 0 : t9) >= 2) { t9 = t6 ? _null : company.settings; t9 = t9 == null ? _null : t9.defaultTaxName2; if (t9 == null) t9 = ""; } else t9 = ""; t10 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t10 == null ? 0 : t10) >= 2) { t10 = t6 ? _null : company.settings; t10 = t10 == null ? _null : t10.defaultTaxRate2; if (t10 == null) t10 = 0; } else t10 = 0; t11 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t11 == null ? 0 : t11) >= 3) { t11 = t6 ? _null : company.settings; t11 = t11 == null ? _null : t11.defaultTaxName3; if (t11 == null) t11 = ""; } else t11 = ""; t12 = t6 ? _null : company.numberOfInvoiceTaxRates; if ((t12 == null ? 0 : t12) >= 3) { t12 = t6 ? _null : company.settings; t12 = t12 == null ? _null : t12.defaultTaxRate3; if (t12 == null) t12 = 0; } else t12 = 0; t13 = t6 ? _null : company.enableCustomSurchargeTaxes1; t14 = t6 ? _null : company.enableCustomSurchargeTaxes2; t15 = t6 ? _null : company.enableCustomSurchargeTaxes3; t16 = t6 ? _null : company.enableCustomSurchargeTaxes4; t17 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_InvoiceScheduleEntity); t18 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_InvoiceItemEntity); t6 = t6 ? _null : company.settings; t6 = t6 == null ? _null : t6.enableInclusiveTaxes; t19 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity); t20 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ActivityEntity); t21 = type$.legacy_InvitationEntity; if (t1) t1 = D.BuiltList_BuiltList$from(C.List_empty, t21); else { t1 = client.get$emailContacts(); t22 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t21 = D.BuiltList_BuiltList$from(P.List_List$of(new H.MappedListIterable(t1, new Q.InvoiceEntity_InvoiceEntity_closure(), t22), true, t22._eval$1("ListIterable.E")), t21); t1 = t21; } t21 = user == null ? _null : user.id; if (t21 == null) t21 = ""; return Q._$InvoiceEntity$_(t20, 0, 0, t21, _null, false, 0, t4, 0, "", 0, 0, 0, 0, t13 === true, t14 === true, t15 === true, t16 === true, "", "", "", "", t5, "", 0, t19, "", "terms", t3, exchangeRate, "", "", "5", t2, t1, "", false, false, false, "", t18, 0, Y.convertDateTimeToSqlDate(_null), "", 0, 0, "", "", "", "", t17, _null, -1, "", "", "", "", "1", "", 0, t7, t9, t11, t8, t10, t12, "", 0, t6 === true); }, InvoiceEntity__initializeBuilder: function(builder) { builder.get$activities().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ActivityEntity)); builder.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; builder.get$_invoice_model$_$this()._autoBillEnabled = false; builder.get$_invoice_model$_$this()._subscriptionId = ""; return builder; }, InvoiceItemEntity_InvoiceItemEntity: function(productKey, quantity) { var t1 = productKey == null ? "" : productKey, t2 = quantity == null ? 1 : quantity; return Q._$InvoiceItemEntity$_(0, 1000 * Date.now(), "", "", "", "", 0, null, "", 0, t1, t2, null, "", "", "", 0, 0, 0, "1"); }, InvitationEntity_InvitationEntity: function(contactId) { var _null = null, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; return Q._$InvitationEntity$_(0, _null, contactId, 0, _null, _null, _null, t1, false, false, "", "", "", "", 0, ""); }, _$InvoiceEntity$_: function(activities, amount, archivedAt, assignedUserId, autoBill, autoBillEnabled, balance, clientId, createdAt, createdUserId, customSurcharge1, customSurcharge2, customSurcharge3, customSurcharge4, customTaxes1, customTaxes2, customTaxes3, customTaxes4, customValue1, customValue2, customValue3, customValue4, date, designId, discount, documents, dueDate, dueDateDays, entityType, exchangeRate, filename, footer, frequencyId, id, invitations, invoiceId, isAmountDiscount, isChanged, isDeleted, lastSentDate, lineItems, loadedAt, nextSendDate, number, paidToDate, partial, partialDueDate, poNumber, privateNotes, publicNotes, recurringDates, recurringId, remainingCycles, reminder1Sent, reminder2Sent, reminder3Sent, reminderLastSent, statusId, subscriptionId, taxAmount, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, terms, updatedAt, usesInclusiveTaxes) { var _s13_ = "InvoiceEntity"; if (date == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "date")); if (nextSendDate == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "nextSendDate")); if (lineItems == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "lineItems")); if (invitations == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invitations")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "documents")); if (activities == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "activities")); return new Q._$InvoiceEntity(amount, balance, paidToDate, clientId, subscriptionId, statusId, number, discount, poNumber, date, dueDate, publicNotes, privateNotes, terms, footer, designId, usesInclusiveTaxes, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, isAmountDiscount, partial, taxAmount, partialDueDate, autoBill, customValue1, customValue2, customValue3, customValue4, customSurcharge1, customSurcharge2, customSurcharge3, customSurcharge4, customTaxes1, customTaxes2, customTaxes3, customTaxes4, exchangeRate, reminder1Sent, reminder2Sent, reminder3Sent, reminderLastSent, frequencyId, lastSentDate, nextSendDate, remainingCycles, dueDateDays, invoiceId, recurringId, autoBillEnabled, filename, recurringDates, lineItems, invitations, documents, activities, loadedAt, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$InvoiceItemEntity$_: function(cost, createdAt, customValue1, customValue2, customValue3, customValue4, discount, expenseId, notes, productCost, productKey, quantity, taskId, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, typeId) { return new Q._$InvoiceItemEntity(productKey, notes, cost, productCost, quantity, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, typeId, customValue1, customValue2, customValue3, customValue4, discount, taskId, expenseId, createdAt); }, _$InvitationEntity$_: function(archivedAt, assignedUserId, contactId, createdAt, createdUserId, emailStatus, entityType, id, isChanged, isDeleted, key, link, openedDate, sentDate, updatedAt, viewedDate) { return new Q._$InvitationEntity(key, link, contactId, sentDate, viewedDate, openedDate, emailStatus, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, InvoiceListResponse: function InvoiceListResponse() { }, InvoiceItemResponse: function InvoiceItemResponse() { }, InvoiceEntity: function InvoiceEntity() { }, InvoiceEntity_InvoiceEntity_closure: function InvoiceEntity_InvoiceEntity_closure() { }, InvoiceEntity_moveLineItem_closure: function InvoiceEntity_moveLineItem_closure(t0) { this.oldIndex = t0; }, InvoiceEntity_moveLineItem_closure0: function InvoiceEntity_moveLineItem_closure0(t0, t1, t2) { this._box_0 = t0; this.newIndex = t1; this.lineItem = t2; }, InvoiceEntity_clone_closure: function InvoiceEntity_clone_closure(t0) { this.$this = t0; }, InvoiceEntity_clone__closure: function InvoiceEntity_clone__closure() { }, InvoiceEntity_clone__closure0: function InvoiceEntity_clone__closure0() { }, InvoiceEntity_history_closure: function InvoiceEntity_history_closure() { }, InvoiceEntity_history_closure0: function InvoiceEntity_history_closure0() { }, InvoiceEntity_hasTasks_closure: function InvoiceEntity_hasTasks_closure() { }, InvoiceEntity_hasProducts_closure: function InvoiceEntity_hasProducts_closure() { }, InvoiceEntity_hasExpenses_closure: function InvoiceEntity_hasExpenses_closure() { }, InvoiceEntity_applyTax_closure: function InvoiceEntity_applyTax_closure(t0) { this.taxRate = t0; }, InvoiceEntity_applyTax_closure0: function InvoiceEntity_applyTax_closure0(t0) { this.taxRate = t0; }, InvoiceEntity_applyTax_closure1: function InvoiceEntity_applyTax_closure1(t0) { this.taxRate = t0; }, InvoiceEntity_isViewed_closure: function InvoiceEntity_isViewed_closure() { }, InvoiceEntity_getInvitationForContact_closure: function InvoiceEntity_getInvitationForContact_closure(t0) { this.contact = t0; }, InvoiceEntity_getInvitationForContact_closure0: function InvoiceEntity_getInvitationForContact_closure0() { }, InvoiceEntity_getTaxes_calculateAmount: function InvoiceEntity_getTaxes_calculateAmount(t0) { this.$this = t0; }, InvoiceEntity__calculateTax_closure: function InvoiceEntity__calculateTax_closure(t0, t1) { this.name = t0; this.rate = t1; }, InvoiceItemEntity: function InvoiceItemEntity() { }, InvoiceItemEntity_taxAmount_calculateTaxAmount: function InvoiceItemEntity_taxAmount_calculateTaxAmount(t0, t1, t2) { this.$this = t0; this.invoice = t1; this.precision = t2; }, InvoiceItemEntity_applyTax_closure: function InvoiceItemEntity_applyTax_closure(t0) { this.taxRate = t0; }, InvoiceItemEntity_applyTax_closure0: function InvoiceItemEntity_applyTax_closure0(t0) { this.taxRate = t0; }, InvoiceItemEntity_applyTax_closure1: function InvoiceItemEntity_applyTax_closure1(t0) { this.taxRate = t0; }, InvitationEntity: function InvitationEntity() { }, InvoiceScheduleEntity: function InvoiceScheduleEntity() { }, InvoiceHistoryEntity: function InvoiceHistoryEntity() { }, _$InvoiceListResponseSerializer: function _$InvoiceListResponseSerializer() { }, _$InvoiceItemResponseSerializer: function _$InvoiceItemResponseSerializer() { }, _$InvoiceEntitySerializer: function _$InvoiceEntitySerializer() { }, _$InvoiceItemEntitySerializer: function _$InvoiceItemEntitySerializer() { }, _$InvitationEntitySerializer: function _$InvitationEntitySerializer() { }, _$InvoiceScheduleEntitySerializer: function _$InvoiceScheduleEntitySerializer() { }, _$InvoiceHistoryEntitySerializer: function _$InvoiceHistoryEntitySerializer() { }, _$InvoiceListResponse: function _$InvoiceListResponse(t0) { this.data = t0; this._invoice_model$__hashCode = null; }, InvoiceListResponseBuilder: function InvoiceListResponseBuilder() { this._invoice_model$_data = this._invoice_model$_$v = null; }, _$InvoiceItemResponse: function _$InvoiceItemResponse(t0) { this.data = t0; this._invoice_model$__hashCode = null; }, InvoiceItemResponseBuilder: function InvoiceItemResponseBuilder() { this._invoice_model$_data = this._invoice_model$_$v = null; }, _$InvoiceEntity: function _$InvoiceEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68) { var _ = this; _.amount = t0; _.balance = t1; _.paidToDate = t2; _.clientId = t3; _.subscriptionId = t4; _.statusId = t5; _.number = t6; _.discount = t7; _.poNumber = t8; _.date = t9; _.dueDate = t10; _.publicNotes = t11; _.privateNotes = t12; _.terms = t13; _.footer = t14; _.designId = t15; _.usesInclusiveTaxes = t16; _.taxName1 = t17; _.taxRate1 = t18; _.taxName2 = t19; _.taxRate2 = t20; _.taxName3 = t21; _.taxRate3 = t22; _.isAmountDiscount = t23; _.partial = t24; _.taxAmount = t25; _.partialDueDate = t26; _.autoBill = t27; _.customValue1 = t28; _.customValue2 = t29; _.customValue3 = t30; _.customValue4 = t31; _.customSurcharge1 = t32; _.customSurcharge2 = t33; _.customSurcharge3 = t34; _.customSurcharge4 = t35; _.customTaxes1 = t36; _.customTaxes2 = t37; _.customTaxes3 = t38; _.customTaxes4 = t39; _.exchangeRate = t40; _.reminder1Sent = t41; _.reminder2Sent = t42; _.reminder3Sent = t43; _.reminderLastSent = t44; _.frequencyId = t45; _.lastSentDate = t46; _.nextSendDate = t47; _.remainingCycles = t48; _.dueDateDays = t49; _.invoiceId = t50; _.recurringId = t51; _.autoBillEnabled = t52; _.filename = t53; _.recurringDates = t54; _.lineItems = t55; _.invitations = t56; _.documents = t57; _.activities = t58; _.loadedAt = t59; _.isChanged = t60; _.createdAt = t61; _.updatedAt = t62; _.archivedAt = t63; _.isDeleted = t64; _.createdUserId = t65; _.assignedUserId = t66; _.entityType = t67; _.id = t68; _._invoice_model$__hashCode = null; }, InvoiceEntityBuilder: function InvoiceEntityBuilder() { var _ = this; _._invoice_model$_customValue1 = _._invoice_model$_autoBill = _._partialDueDate = _._taxAmount = _._partial = _._isAmountDiscount = _._taxRate3 = _._taxName3 = _._taxRate2 = _._taxName2 = _._taxRate1 = _._taxName1 = _._usesInclusiveTaxes = _._designId = _._footer = _._terms = _._invoice_model$_privateNotes = _._invoice_model$_publicNotes = _._dueDate = _._date = _._poNumber = _._discount = _._invoice_model$_number = _._statusId = _._subscriptionId = _._clientId = _._invoice_model$_paidToDate = _._invoice_model$_balance = _._amount = _._invoice_model$_$v = null; _._invoice_model$_activities = _._invoice_model$_documents = _._invitations = _._lineItems = _._recurringDates = _._filename = _._autoBillEnabled = _._recurringId = _._invoiceId = _._dueDateDays = _._remainingCycles = _._nextSendDate = _._lastSentDate = _._frequencyId = _._reminderLastSent = _._reminder3Sent = _._reminder2Sent = _._reminder1Sent = _._exchangeRate = _._customTaxes4 = _._customTaxes3 = _._customTaxes2 = _._customTaxes1 = _._customSurcharge4 = _._customSurcharge3 = _._customSurcharge2 = _._customSurcharge1 = _._invoice_model$_customValue4 = _._invoice_model$_customValue3 = _._invoice_model$_customValue2 = null; _._invoice_model$_id = _._invoice_model$_entityType = _._invoice_model$_assignedUserId = _._invoice_model$_createdUserId = _._invoice_model$_isDeleted = _._invoice_model$_archivedAt = _._invoice_model$_updatedAt = _._invoice_model$_createdAt = _._invoice_model$_isChanged = _._invoice_model$_loadedAt = null; }, _$InvoiceItemEntity: function _$InvoiceItemEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.productKey = t0; _.notes = t1; _.cost = t2; _.productCost = t3; _.quantity = t4; _.taxName1 = t5; _.taxRate1 = t6; _.taxName2 = t7; _.taxRate2 = t8; _.taxName3 = t9; _.taxRate3 = t10; _.typeId = t11; _.customValue1 = t12; _.customValue2 = t13; _.customValue3 = t14; _.customValue4 = t15; _.discount = t16; _.taskId = t17; _.expenseId = t18; _.createdAt = t19; _._invoice_model$__hashCode = null; }, InvoiceItemEntityBuilder: function InvoiceItemEntityBuilder() { var _ = this; _._invoice_model$_createdAt = _._expenseId = _._invoice_model$_taskId = _._discount = _._invoice_model$_customValue4 = _._invoice_model$_customValue3 = _._invoice_model$_customValue2 = _._invoice_model$_customValue1 = _._invoice_model$_typeId = _._taxRate3 = _._taxName3 = _._taxRate2 = _._taxName2 = _._taxRate1 = _._taxName1 = _._invoice_model$_quantity = _._productCost = _._invoice_model$_cost = _._invoice_model$_notes = _._invoice_model$_productKey = _._invoice_model$_$v = null; }, _$InvitationEntity: function _$InvitationEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.key = t0; _.link = t1; _.contactId = t2; _.sentDate = t3; _.viewedDate = t4; _.openedDate = t5; _.emailStatus = t6; _.isChanged = t7; _.createdAt = t8; _.updatedAt = t9; _.archivedAt = t10; _.isDeleted = t11; _.createdUserId = t12; _.assignedUserId = t13; _.entityType = t14; _.id = t15; _._invoice_model$__hashCode = null; }, InvitationEntityBuilder: function InvitationEntityBuilder() { var _ = this; _._invoice_model$_id = _._invoice_model$_entityType = _._invoice_model$_assignedUserId = _._invoice_model$_createdUserId = _._invoice_model$_isDeleted = _._invoice_model$_archivedAt = _._invoice_model$_updatedAt = _._invoice_model$_createdAt = _._invoice_model$_isChanged = _._emailStatus = _._openedDate = _._viewedDate = _._sentDate = _._contactId = _._invoice_model$_link = _._invoice_model$_key = _._invoice_model$_$v = null; }, _$InvoiceScheduleEntity: function _$InvoiceScheduleEntity(t0, t1) { this.sendDate = t0; this.dueDate = t1; this._invoice_model$__hashCode = null; }, InvoiceScheduleEntityBuilder: function InvoiceScheduleEntityBuilder() { this._dueDate = this._sendDate = this._invoice_model$_$v = null; }, _$InvoiceHistoryEntity: function _$InvoiceHistoryEntity(t0, t1, t2, t3) { var _ = this; _.id = t0; _.activityId = t1; _.createdAt = t2; _.amount = t3; _._invoice_model$__hashCode = null; }, InvoiceHistoryEntityBuilder: function InvoiceHistoryEntityBuilder() { var _ = this; _._amount = _._invoice_model$_createdAt = _._activityId = _._invoice_model$_id = _._invoice_model$_$v = null; }, _InvitationEntity_Object_BaseEntity: function _InvitationEntity_Object_BaseEntity() { }, _InvitationEntity_Object_BaseEntity_SelectableEntity: function _InvitationEntity_Object_BaseEntity_SelectableEntity() { }, _InvoiceEntity_Object_BaseEntity: function _InvoiceEntity_Object_BaseEntity() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity: function _InvoiceEntity_Object_BaseEntity_SelectableEntity() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal: function _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal() { }, _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient: function _InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient() { }, UserRepository: function UserRepository() { }, _editClient: function() { return new Q._editClient_closure(); }, _viewClient: function() { return new Q._viewClient_closure(); }, _viewClientList: function() { return new Q._viewClientList_closure1(); }, _archiveClient: function(repository) { return new Q._archiveClient_closure(repository); }, _deleteClient: function(repository) { return new Q._deleteClient_closure(repository); }, _restoreClient: function(repository) { return new Q._restoreClient_closure(repository); }, _saveClient: function(repository) { return new Q._saveClient_closure(repository); }, _loadClient: function(repository) { return new Q._loadClient_closure(repository); }, _loadClients: function(repository) { return new Q._loadClients_closure(repository); }, _saveDocument0: function(repository) { return new Q._saveDocument_closure10(repository); }, _showPdfClient: function() { return new Q._showPdfClient_closure(); }, _editClient_closure: function _editClient_closure() { }, _viewClient_closure: function _viewClient_closure() { }, _viewClientList_closure1: function _viewClientList_closure1() { }, _viewClientList__closure: function _viewClientList__closure() { }, _archiveClient_closure: function _archiveClient_closure(t0) { this.repository = t0; }, _archiveClient__closure: function _archiveClient__closure(t0) { this.store = t0; }, _archiveClient__closure0: function _archiveClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveClient__closure1: function _archiveClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _deleteClient_closure: function _deleteClient_closure(t0) { this.repository = t0; }, _deleteClient__closure: function _deleteClient__closure(t0) { this.store = t0; }, _deleteClient__closure0: function _deleteClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteClient__closure1: function _deleteClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _restoreClient_closure: function _restoreClient_closure(t0) { this.repository = t0; }, _restoreClient__closure: function _restoreClient__closure(t0) { this.store = t0; }, _restoreClient__closure0: function _restoreClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreClient__closure1: function _restoreClient__closure1(t0, t1, t2) { this.store = t0; this.prevClients = t1; this.action = t2; }, _saveClient_closure: function _saveClient_closure(t0) { this.repository = t0; }, _saveClient__closure: function _saveClient__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveClient__closure0: function _saveClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadClient_closure: function _loadClient_closure(t0) { this.repository = t0; }, _loadClient__closure: function _loadClient__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadClient__closure0: function _loadClient__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadClients_closure: function _loadClients_closure(t0) { this.repository = t0; }, _loadClients__closure: function _loadClients__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadClients__closure0: function _loadClients__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure10: function _saveDocument_closure10(t0) { this.repository = t0; }, _saveDocument__closure21: function _saveDocument__closure21(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure22: function _saveDocument__closure22(t0, t1) { this.store = t0; this.action = t1; }, _showPdfClient_closure: function _showPdfClient_closure() { }, handleCompanyGatewayAction: function(context, companyGateways, action) { var store, t1, companyGateway, t2, companyGatewayIds, message, _i, t3, _s6_ = ":value", _s12_ = "_dispatchers"; if (companyGateways.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); companyGateway = C.JSArray_methods.get$first(companyGateways); t2 = H._arrayInstanceType(companyGateways)._eval$1("MappedListIterable<1,String*>"); companyGatewayIds = P.List_List$of(new H.MappedListIterable(companyGateways, new Q.handleCompanyGatewayAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(null, context, companyGateway, null); break; case C.EntityAction_restore: t2 = companyGatewayIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_company_gateways"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_company_gateway"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.RestoreCompanyGatewayRequest(t1, companyGatewayIds)); break; case C.EntityAction_archive: t2 = companyGatewayIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_company_gateways"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_company_gateway"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ArchiveCompanyGatewayRequest(t1, companyGatewayIds)); break; case C.EntityAction_delete: t2 = companyGatewayIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_company_gateways"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_company_gateway"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DeleteCompanyGatewayRequest(t1, companyGatewayIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.companyGatewayUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.StartCompanyGatewayMultiselect()); t1 = companyGateways.length; if (t1 === 0) break; for (_i = 0; _i < companyGateways.length; companyGateways.length === t1 || (0, H.throwConcurrentModificationError)(companyGateways), ++_i) { companyGateway = companyGateways[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.companyGatewayUIState.listUIState; t3 = J.get$id$x(companyGateway); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.AddToCompanyGatewayMultiselect(companyGateway)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.RemoveFromCompanyGatewayMultiselect(companyGateway)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([companyGateway], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewCompanyGatewayList: function ViewCompanyGatewayList() { }, ViewCompanyGateway: function ViewCompanyGateway(t0) { this.companyGatewayId = t0; }, EditCompanyGateway: function EditCompanyGateway(t0) { this.companyGateway = t0; }, UpdateCompanyGateway: function UpdateCompanyGateway(t0) { this.companyGateway = t0; }, LoadCompanyGateway: function LoadCompanyGateway(t0, t1) { this.completer = t0; this.companyGatewayId = t1; }, LoadCompanyGatewayRequest: function LoadCompanyGatewayRequest() { }, LoadCompanyGatewayFailure: function LoadCompanyGatewayFailure(t0) { this.error = t0; }, LoadCompanyGatewaySuccess: function LoadCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, LoadCompanyGatewaysRequest: function LoadCompanyGatewaysRequest() { }, LoadCompanyGatewaysFailure: function LoadCompanyGatewaysFailure(t0) { this.error = t0; }, LoadCompanyGatewaysSuccess: function LoadCompanyGatewaysSuccess(t0) { this.companyGateways = t0; }, SaveCompanyGatewayRequest: function SaveCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGateway = t1; }, SaveCompanyGatewaySuccess: function SaveCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, AddCompanyGatewaySuccess: function AddCompanyGatewaySuccess(t0) { this.companyGateway = t0; }, SaveCompanyGatewayFailure: function SaveCompanyGatewayFailure() { }, ArchiveCompanyGatewayRequest: function ArchiveCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, ArchiveCompanyGatewaySuccess: function ArchiveCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, ArchiveCompanyGatewayFailure: function ArchiveCompanyGatewayFailure() { }, DeleteCompanyGatewayRequest: function DeleteCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, DeleteCompanyGatewaySuccess: function DeleteCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, DeleteCompanyGatewayFailure: function DeleteCompanyGatewayFailure() { }, RestoreCompanyGatewayRequest: function RestoreCompanyGatewayRequest(t0, t1) { this.completer = t0; this.companyGatewayIds = t1; }, RestoreCompanyGatewaySuccess: function RestoreCompanyGatewaySuccess(t0) { this.companyGateways = t0; }, RestoreCompanyGatewayFailure: function RestoreCompanyGatewayFailure() { }, FilterCompanyGatewaysByState: function FilterCompanyGatewaysByState(t0) { this.state = t0; }, FilterCompanyGatewaysByCustom1: function FilterCompanyGatewaysByCustom1(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom2: function FilterCompanyGatewaysByCustom2(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom3: function FilterCompanyGatewaysByCustom3(t0) { this.value = t0; }, FilterCompanyGatewaysByCustom4: function FilterCompanyGatewaysByCustom4(t0) { this.value = t0; }, handleCompanyGatewayAction_closure: function handleCompanyGatewayAction_closure() { }, StartCompanyGatewayMultiselect: function StartCompanyGatewayMultiselect() { }, AddToCompanyGatewayMultiselect: function AddToCompanyGatewayMultiselect(t0) { this.entity = t0; }, RemoveFromCompanyGatewayMultiselect: function RemoveFromCompanyGatewayMultiselect(t0) { this.entity = t0; }, ClearCompanyGatewayMultiselect: function ClearCompanyGatewayMultiselect() { }, creditUIReducer: function(state, action) { var t1; state.toString; t1 = new G.CreditUIStateBuilder(); t1._credit_state$_$v = state; new Q.creditUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing0: function(credit, action) { var _null = null; return Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); }, _updateEditing0: function(credit, action) { return action.get$credit(); }, _addCreditItem: function(credit, action) { return credit.rebuild$1(new Q._addCreditItem_closure(action)); }, _addCreditItems: function(credit, action) { return credit.rebuild$1(new Q._addCreditItems_closure(action)); }, _removeCreditItem: function(credit, action) { if (J.get$length$asx(credit.lineItems._list) <= action.index) return credit; return credit.rebuild$1(new Q._removeCreditItem_closure(action)); }, _updateCreditItem: function(credit, action) { if (J.get$length$asx(credit.lineItems._list) <= action.index) return credit; return credit.rebuild$1(new Q._updateCreditItem_closure(action)); }, _viewCreditList0: function(creditListState, action) { return creditListState.rebuild$1(new Q._viewCreditList_closure()); }, _filterCreditsByCustom1: function(creditListState, action) { var t1 = creditListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByCustom1_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByCustom1_closure0(action)); }, _filterCreditsByCustom2: function(creditListState, action) { var t1 = creditListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByCustom2_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByCustom2_closure0(action)); }, _filterCreditsByCustom3: function(creditListState, action) { var t1 = creditListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByCustom3_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByCustom3_closure0(action)); }, _filterCreditsByCustom4: function(creditListState, action) { var t1 = creditListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByCustom4_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByCustom4_closure0(action)); }, _filterCreditsByState: function(creditListState, action) { var t1 = creditListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByState_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByState_closure0(action)); }, _filterCreditsByStatus: function(creditListState, action) { var t1 = creditListState.statusFilters, t2 = action.get$status(action); if (J.contains$1$asx(t1._list, t2)) return creditListState.rebuild$1(new Q._filterCreditsByStatus_closure(action)); else return creditListState.rebuild$1(new Q._filterCreditsByStatus_closure0(action)); }, _filterCredits: function(creditListState, action) { return creditListState.rebuild$1(new Q._filterCredits_closure(action, creditListState)); }, _sortCredits: function(creditListState, action) { return creditListState.rebuild$1(new Q._sortCredits_closure(action)); }, _startListMultiselect1: function(creditListState, action) { return creditListState.rebuild$1(new Q._startListMultiselect_closure10()); }, _addToListMultiselect1: function(creditListState, action) { return creditListState.rebuild$1(new Q._addToListMultiselect_closure10(action)); }, _removeFromListMultiselect1: function(creditListState, action) { return creditListState.rebuild$1(new Q._removeFromListMultiselect_closure10(action)); }, _clearListMultiselect1: function(creditListState, action) { return creditListState.rebuild$1(new Q._clearListMultiselect_closure10()); }, _markSentCreditSuccess: function(creditState, action) { return creditState.rebuild$1(new Q._markSentCreditSuccess_closure(P.LinkedHashMap_LinkedHashMap$fromIterable(action.credits, new Q._markSentCreditSuccess_closure0(), new Q._markSentCreditSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _archiveCreditSuccess: function(creditState, action) { return creditState.rebuild$1(new Q._archiveCreditSuccess_closure(action)); }, _deleteCreditSuccess: function(creditState, action) { return creditState.rebuild$1(new Q._deleteCreditSuccess_closure(action)); }, _restoreCreditSuccess: function(creditState, action) { return creditState.rebuild$1(new Q._restoreCreditSuccess_closure(action)); }, _addCredit: function(creditState, action) { return creditState.rebuild$1(new Q._addCredit_closure(action)); }, _updateCredit: function(invoiceState, action) { return invoiceState.rebuild$1(new Q._updateCredit_closure(action.get$credit())); }, _setLoadedCredits: function(creditState, action) { return creditState.loadCredits$1(action.credits); }, _setLoadedCompany1: function(creditState, action) { return creditState.loadCredits$1(action.userCompany.company.credits); }, creditUIReducer_closure: function creditUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure79: function forceSelectedReducer_closure79() { }, forceSelectedReducer_closure80: function forceSelectedReducer_closure80() { }, forceSelectedReducer_closure81: function forceSelectedReducer_closure81() { }, forceSelectedReducer_closure82: function forceSelectedReducer_closure82() { }, forceSelectedReducer_closure83: function forceSelectedReducer_closure83() { }, forceSelectedReducer_closure84: function forceSelectedReducer_closure84() { }, forceSelectedReducer_closure85: function forceSelectedReducer_closure85() { }, forceSelectedReducer_closure86: function forceSelectedReducer_closure86() { }, tabIndexReducer_closure11: function tabIndexReducer_closure11() { }, tabIndexReducer_closure12: function tabIndexReducer_closure12() { }, historyActivityIdReducer_closure0: function historyActivityIdReducer_closure0() { }, editingItemReducer_closure1: function editingItemReducer_closure1() { }, editingItemReducer_closure2: function editingItemReducer_closure2() { }, selectedIdReducer_closure160: function selectedIdReducer_closure160() { }, selectedIdReducer_closure161: function selectedIdReducer_closure161() { }, selectedIdReducer_closure162: function selectedIdReducer_closure162() { }, selectedIdReducer_closure163: function selectedIdReducer_closure163() { }, selectedIdReducer_closure164: function selectedIdReducer_closure164() { }, selectedIdReducer_closure165: function selectedIdReducer_closure165() { }, selectedIdReducer_closure166: function selectedIdReducer_closure166() { }, selectedIdReducer_closure167: function selectedIdReducer_closure167() { }, selectedIdReducer_closure168: function selectedIdReducer_closure168() { }, selectedIdReducer_closure169: function selectedIdReducer_closure169() { }, selectedIdReducer_closure170: function selectedIdReducer_closure170() { }, selectedIdReducer_closure171: function selectedIdReducer_closure171() { }, selectedIdReducer_closure172: function selectedIdReducer_closure172() { }, selectedIdReducer_closure173: function selectedIdReducer_closure173() { }, selectedIdReducer_closure174: function selectedIdReducer_closure174() { }, selectedIdReducer_closure175: function selectedIdReducer_closure175() { }, selectedIdReducer_closure176: function selectedIdReducer_closure176() { }, selectedIdReducer_closure177: function selectedIdReducer_closure177() { }, selectedIdReducer_closure178: function selectedIdReducer_closure178() { }, editingReducer_closure47: function editingReducer_closure47() { }, editingReducer__closure22: function editingReducer__closure22() { }, editingReducer_closure48: function editingReducer_closure48() { }, editingReducer__closure21: function editingReducer__closure21() { }, editingReducer_closure49: function editingReducer_closure49() { }, editingReducer_closure50: function editingReducer_closure50() { }, editingReducer__closure20: function editingReducer__closure20() { }, editingReducer_closure51: function editingReducer_closure51() { }, editingReducer__closure19: function editingReducer__closure19() { }, editingReducer_closure52: function editingReducer_closure52() { }, editingReducer__closure18: function editingReducer__closure18(t0) { this.client = t0; }, editingReducer___closure0: function editingReducer___closure0() { }, editingReducer_closure53: function editingReducer_closure53() { }, editingReducer_closure54: function editingReducer_closure54() { }, editingReducer_closure55: function editingReducer_closure55() { }, editingReducer_closure56: function editingReducer_closure56() { }, editingReducer__closure17: function editingReducer__closure17(t0) { this.action = t0; }, editingReducer_closure57: function editingReducer_closure57() { }, editingReducer__closure16: function editingReducer__closure16(t0) { this.action = t0; }, _addCreditItem_closure: function _addCreditItem_closure(t0) { this.action = t0; }, _addCreditItems_closure: function _addCreditItems_closure(t0) { this.action = t0; }, _removeCreditItem_closure: function _removeCreditItem_closure(t0) { this.action = t0; }, _updateCreditItem_closure: function _updateCreditItem_closure(t0) { this.action = t0; }, _viewCreditList_closure: function _viewCreditList_closure() { }, _filterCreditsByCustom1_closure: function _filterCreditsByCustom1_closure(t0) { this.action = t0; }, _filterCreditsByCustom1_closure0: function _filterCreditsByCustom1_closure0(t0) { this.action = t0; }, _filterCreditsByCustom2_closure: function _filterCreditsByCustom2_closure(t0) { this.action = t0; }, _filterCreditsByCustom2_closure0: function _filterCreditsByCustom2_closure0(t0) { this.action = t0; }, _filterCreditsByCustom3_closure: function _filterCreditsByCustom3_closure(t0) { this.action = t0; }, _filterCreditsByCustom3_closure0: function _filterCreditsByCustom3_closure0(t0) { this.action = t0; }, _filterCreditsByCustom4_closure: function _filterCreditsByCustom4_closure(t0) { this.action = t0; }, _filterCreditsByCustom4_closure0: function _filterCreditsByCustom4_closure0(t0) { this.action = t0; }, _filterCreditsByState_closure: function _filterCreditsByState_closure(t0) { this.action = t0; }, _filterCreditsByState_closure0: function _filterCreditsByState_closure0(t0) { this.action = t0; }, _filterCreditsByStatus_closure: function _filterCreditsByStatus_closure(t0) { this.action = t0; }, _filterCreditsByStatus_closure0: function _filterCreditsByStatus_closure0(t0) { this.action = t0; }, _filterCredits_closure: function _filterCredits_closure(t0, t1) { this.action = t0; this.creditListState = t1; }, _sortCredits_closure: function _sortCredits_closure(t0) { this.action = t0; }, _startListMultiselect_closure10: function _startListMultiselect_closure10() { }, _addToListMultiselect_closure10: function _addToListMultiselect_closure10(t0) { this.action = t0; }, _removeFromListMultiselect_closure10: function _removeFromListMultiselect_closure10(t0) { this.action = t0; }, _clearListMultiselect_closure10: function _clearListMultiselect_closure10() { }, _markSentCreditSuccess_closure0: function _markSentCreditSuccess_closure0() { }, _markSentCreditSuccess_closure1: function _markSentCreditSuccess_closure1() { }, _markSentCreditSuccess_closure: function _markSentCreditSuccess_closure(t0) { this.creditMap = t0; }, _archiveCreditSuccess_closure: function _archiveCreditSuccess_closure(t0) { this.action = t0; }, _deleteCreditSuccess_closure: function _deleteCreditSuccess_closure(t0) { this.action = t0; }, _restoreCreditSuccess_closure: function _restoreCreditSuccess_closure(t0) { this.action = t0; }, _addCredit_closure: function _addCredit_closure(t0) { this.action = t0; }, _addCredit__closure: function _addCredit__closure() { }, _updateCredit_closure: function _updateCredit_closure(t0) { this.credit = t0; }, _updateCredit__closure: function _updateCredit__closure() { }, _$DocumentState$_: function(list, map) { var _s13_ = "DocumentState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "list")); return new Q._$DocumentState(map, list); }, _$DocumentUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("DocumentUIState", "listUIState")); return new Q._$DocumentUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, DocumentState: function DocumentState() { }, DocumentUIState: function DocumentUIState() { }, _$DocumentStateSerializer: function _$DocumentStateSerializer() { }, _$DocumentUIStateSerializer: function _$DocumentUIStateSerializer() { }, _$DocumentState: function _$DocumentState(t0, t1) { this.map = t0; this.list = t1; this._document_state$__hashCode = null; }, DocumentStateBuilder: function DocumentStateBuilder() { this._document_state$_list = this._document_state$_map = this._document_state$_$v = null; }, _$DocumentUIState: function _$DocumentUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._document_state$__hashCode = null; }, DocumentUIStateBuilder: function DocumentUIStateBuilder() { var _ = this; _._document_state$_cancelCompleter = _._document_state$_saveCompleter = _._document_state$_tabIndex = _._document_state$_forceSelected = _._document_state$_selectedId = _._document_state$_listUIState = _._document_state$_editing = _._document_state$_$v = null; }, _DocumentUIState_Object_EntityUIState: function _DocumentUIState_Object_EntityUIState() { }, _$ExpenseCategoryState$_: function(list, map) { var _s20_ = "ExpenseCategoryState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "list")); return new Q._$ExpenseCategoryState(map, list); }, _$ExpenseCategoryUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("ExpenseCategoryUIState", "listUIState")); return new Q._$ExpenseCategoryUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ExpenseCategoryState: function ExpenseCategoryState() { }, ExpenseCategoryState_loadExpenseCategories_closure0: function ExpenseCategoryState_loadExpenseCategories_closure0() { }, ExpenseCategoryState_loadExpenseCategories_closure1: function ExpenseCategoryState_loadExpenseCategories_closure1() { }, ExpenseCategoryState_loadExpenseCategories_closure: function ExpenseCategoryState_loadExpenseCategories_closure(t0, t1) { this.$this = t0; this.map = t1; }, ExpenseCategoryUIState: function ExpenseCategoryUIState() { }, _$ExpenseCategoryStateSerializer: function _$ExpenseCategoryStateSerializer() { }, _$ExpenseCategoryUIStateSerializer: function _$ExpenseCategoryUIStateSerializer() { }, _$ExpenseCategoryState: function _$ExpenseCategoryState(t0, t1) { this.map = t0; this.list = t1; this._expense_category_state$__hashCode = null; }, ExpenseCategoryStateBuilder: function ExpenseCategoryStateBuilder() { this._expense_category_state$_list = this._expense_category_state$_map = this._expense_category_state$_$v = null; }, _$ExpenseCategoryUIState: function _$ExpenseCategoryUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._expense_category_state$__hashCode = null; }, ExpenseCategoryUIStateBuilder: function ExpenseCategoryUIStateBuilder() { var _ = this; _._expense_category_state$_cancelCompleter = _._expense_category_state$_saveCompleter = _._expense_category_state$_tabIndex = _._expense_category_state$_forceSelected = _._expense_category_state$_selectedId = _._expense_category_state$_listUIState = _._expense_category_state$_editing = _._expense_category_state$_$v = null; }, _ExpenseCategoryUIState_Object_EntityUIState: function _ExpenseCategoryUIState_Object_EntityUIState() { }, handleGroupAction: function(context, groups, action) { var store, t1, group, t2, groupIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (groups.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); group = C.JSArray_methods.get$first(groups); t2 = H._arrayInstanceType(groups)._eval$1("MappedListIterable<1,String*>"); groupIds = P.List_List$of(new H.MappedListIterable(groups, new Q.handleGroupAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, group, _null); break; case C.EntityAction_settings: J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, group, _null, _null, false, "company_details", false, _null)); break; case C.EntityAction_newClient: M.createEntity(_null, _null, context, T.ClientEntity_ClientEntity(_null, _null, _null).rebuild$1(new Q.handleGroupAction_closure0(group)), _null, false); break; case C.EntityAction_restore: t2 = groupIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_groups"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_group"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.RestoreGroupRequest(t1, groupIds)); break; case C.EntityAction_archive: t2 = groupIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_groups"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_group"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ArchiveGroupRequest(t1, groupIds)); break; case C.EntityAction_delete: t2 = groupIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_groups"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_group"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DeleteGroupRequest(t1, groupIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.groupUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.StartGroupMultiselect()); t1 = groups.length; if (t1 === 0) break; for (_i = 0; _i < groups.length; groups.length === t1 || (0, H.throwConcurrentModificationError)(groups), ++_i) { group = groups[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.groupUIState.listUIState; t3 = J.get$id$x(group); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.AddToGroupMultiselect(group)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.RemoveFromGroupMultiselect(group)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([group], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewGroupList: function ViewGroupList() { }, ViewGroup: function ViewGroup(t0) { this.groupId = t0; }, EditGroup: function EditGroup(t0) { this.group = t0; }, UpdateGroup: function UpdateGroup(t0) { this.group = t0; }, LoadGroup: function LoadGroup(t0, t1) { this.completer = t0; this.groupId = t1; }, LoadGroupRequest: function LoadGroupRequest() { }, LoadGroupFailure: function LoadGroupFailure(t0) { this.error = t0; }, LoadGroupSuccess: function LoadGroupSuccess(t0) { this.group = t0; }, LoadGroupsRequest: function LoadGroupsRequest() { }, LoadGroupsFailure: function LoadGroupsFailure(t0) { this.error = t0; }, LoadGroupsSuccess: function LoadGroupsSuccess(t0) { this.groups = t0; }, SaveGroupRequest: function SaveGroupRequest(t0, t1) { this.completer = t0; this.group = t1; }, SaveGroupSuccess: function SaveGroupSuccess(t0) { this.group = t0; }, AddGroupSuccess: function AddGroupSuccess(t0) { this.group = t0; }, SaveGroupFailure: function SaveGroupFailure() { }, ArchiveGroupRequest: function ArchiveGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, ArchiveGroupSuccess: function ArchiveGroupSuccess(t0) { this.groups = t0; }, ArchiveGroupFailure: function ArchiveGroupFailure() { }, DeleteGroupRequest: function DeleteGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, DeleteGroupSuccess: function DeleteGroupSuccess(t0) { this.groups = t0; }, DeleteGroupFailure: function DeleteGroupFailure() { }, RestoreGroupRequest: function RestoreGroupRequest(t0, t1) { this.completer = t0; this.groupIds = t1; }, RestoreGroupSuccess: function RestoreGroupSuccess(t0) { this.groups = t0; }, RestoreGroupFailure: function RestoreGroupFailure() { }, FilterGroups: function FilterGroups(t0) { this.filter = t0; }, SortGroups: function SortGroups(t0) { this.field = t0; }, FilterGroupsByState: function FilterGroupsByState(t0) { this.state = t0; }, handleGroupAction_closure: function handleGroupAction_closure() { }, handleGroupAction_closure0: function handleGroupAction_closure0(t0) { this.group = t0; }, StartGroupMultiselect: function StartGroupMultiselect() { }, AddToGroupMultiselect: function AddToGroupMultiselect(t0) { this.entity = t0; }, RemoveFromGroupMultiselect: function RemoveFromGroupMultiselect(t0) { this.entity = t0; }, ClearGroupMultiselect: function ClearGroupMultiselect() { }, SaveGroupDocumentRequest: function SaveGroupDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.group = t2; }, SaveGroupDocumentFailure: function SaveGroupDocumentFailure() { }, handleInvoiceAction: function(context, invoices, action) { return Q.handleInvoiceAction$body(context, invoices, action); }, handleInvoiceAction$body: function(context, invoices, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t1, invoice, t2, invoiceIds, designId, t3, message, _i, _box_0; var $async$handleInvoiceAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; if (invoices.length === 0) { // goto return $async$goto = 1; break; } store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); invoice = type$.legacy_InvoiceEntity._as(C.JSArray_methods.get$first(invoices)); t2 = H._arrayInstanceType(invoices)._eval$1("MappedListIterable<1,String*>"); invoiceIds = P.List_List$of(new H.MappedListIterable(invoices, new Q.handleInvoiceAction_closure(), t2), true, t2._eval$1("ListIterable.E")); case 3: // switch switch (action) { case C.EntityAction_edit: // goto case $async$goto = 5; break; case C.EntityAction_viewPdf: // goto case $async$goto = 6; break; case C.EntityAction_clientPortal: // goto case $async$goto = 7; break; case C.EntityAction_markSent: // goto case $async$goto = 8; break; case C.EntityAction_reverse: // goto case $async$goto = 9; break; case C.EntityAction_cancel: // goto case $async$goto = 10; break; case C.EntityAction_markPaid: // goto case $async$goto = 11; break; case C.EntityAction_emailInvoice: // goto case $async$goto = 12; break; case C.EntityAction_bulkEmailInvoice: // goto case $async$goto = 13; break; case C.EntityAction_cloneToOther: // goto case $async$goto = 14; break; case C.EntityAction_cloneToInvoice: // goto case $async$goto = 15; break; case C.EntityAction_cloneToQuote: // goto case $async$goto = 16; break; case C.EntityAction_cloneToCredit: // goto case $async$goto = 17; break; case C.EntityAction_cloneToRecurring: // goto case $async$goto = 18; break; case C.EntityAction_newPayment: // goto case $async$goto = 19; break; case C.EntityAction_download: // goto case $async$goto = 20; break; case C.EntityAction_restore: // goto case $async$goto = 21; break; case C.EntityAction_archive: // goto case $async$goto = 22; break; case C.EntityAction_delete: // goto case $async$goto = 23; break; case C.EntityAction_toggleMultiselect: // goto case $async$goto = 24; break; case C.EntityAction_more: // goto case $async$goto = 25; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case M.editEntity(null, context, invoice, null); // goto after switch $async$goto = 4; break; case 6: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ShowPdfInvoice(invoice, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = invoice.invitations._list; t2 = J.getInterceptor$asx(t1); $async$goto = 28; return P._asyncAwait(T.canLaunch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true"), $async$handleInvoiceAction); case 28: // returning from await. $async$goto = $async$result ? 26 : 27; break; case 26: // then $async$goto = 29; return P._asyncAwait(T.launch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true", false, false), $async$handleInvoiceAction); case 29: // returning from await. case 27: // join // goto after switch $async$goto = 4; break; case 8: // case if (invoiceIds.length === 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_invoice_as_sent"); if (t1 == null) t1 = ""; } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_invoices_as_sent"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesSentRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 9: // case if (invoiceIds.length === 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "reversed_invoice"); if (t1 == null) t1 = ""; } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "reversed_invoices"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ReverseInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 10: // case if (invoiceIds.length === 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "cancelled_invoice"); if (t1 == null) t1 = ""; } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "cancelled_invoices"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.CancelInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 11: // case if (invoiceIds.length === 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_invoice_as_paid"); if (t1 == null) t1 = ""; } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_invoices_as_paid"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesPaidRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 12: // case case 13: // case _box_0.emailValid = true; C.JSArray_methods.forEach$1(invoiceIds, new Q.handleInvoiceAction_closure0(_box_0, state, invoice)); if (!_box_0.emailValid) { O.showMessageDialog(context, t1.get$clientEmailNotSet(), H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new Q.handleInvoiceAction_closure1(context, state, invoice), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === C.EntityAction_emailInvoice) { t1 = O.snackBarCompleter(context, t1.get$emailedInvoice(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ShowEmailInvoice(invoice, context, t1)); } else { if (invoiceIds.length === 1) t1 = t1.get$emailedInvoice(); else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "emailed_invoices"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.BulkEmailInvoicesRequest(t1, invoiceIds)); } // goto after switch $async$goto = 4; break; case 14: // case O.cloneToDialog(context, invoice); // goto after switch $async$goto = 4; break; case 15: // case M.createEntity(null, null, context, invoice.get$clone(invoice), null, false); // goto after switch $async$goto = 4; break; case 16: // case designId = A.getDesignIdForClientByEntity(invoice.clientId, C.EntityType_quote, state); M.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new Q.handleInvoiceAction_closure2(designId)), null, false); // goto after switch $async$goto = 4; break; case 17: // case designId = A.getDesignIdForClientByEntity(invoice.clientId, C.EntityType_credit, state); M.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new Q.handleInvoiceAction_closure3(designId)), null, false); // goto after switch $async$goto = 4; break; case 18: // case M.createEntity(null, null, context, invoice.get$clone(invoice).rebuild$1(new Q.handleInvoiceAction_closure4()), null, false); // goto after switch $async$goto = 4; break; case 19: // case t1 = F.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new Q.handleInvoiceAction_closure5(invoice, invoices)); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).clientState.map; t2 = invoice.clientId; M.createEntity(null, null, context, t1, J.$index$asx(t3._map$_map, t2), false); // goto after switch $async$goto = 4; break; case 20: // case t1 = O.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DownloadInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 21: // case t2 = invoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.RestoreInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 22: // case t2 = invoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ArchiveInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 23: // case t2 = invoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DeleteInvoicesRequest(t1, invoiceIds)); // goto after switch $async$goto = 4; break; case 24: // case if (store.get$_store$_state().uiState.invoiceUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.StartInvoiceMultiselect()); for (t1 = invoices.length, _i = 0; _i < invoices.length; invoices.length === t1 || (0, H.throwConcurrentModificationError)(invoices), ++_i) { invoice = invoices[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.invoiceUIState.listUIState; t3 = J.get$id$x(invoice); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new Q.AddToInvoiceMultiselect(invoice)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new Q.RemoveFromInvoiceMultiselect(invoice)); } // goto after switch $async$goto = 4; break; case 25: // case L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([invoice], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleInvoiceAction, $async$completer); }, ViewInvoiceList: function ViewInvoiceList() { }, ViewInvoice: function ViewInvoice(t0) { this.invoiceId = t0; }, EditInvoice: function EditInvoice(t0, t1) { this.invoice = t0; this.invoiceItemIndex = t1; }, ShowEmailInvoice: function ShowEmailInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.completer = t2; }, ShowPdfInvoice: function ShowPdfInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.activityId = t2; }, EditInvoiceItem: function EditInvoiceItem(t0) { this.invoiceItemIndex = t0; }, UpdateInvoice: function UpdateInvoice(t0) { this.invoice = t0; }, UpdateInvoiceClient: function UpdateInvoiceClient(t0) { this.client = t0; }, LoadInvoice: function LoadInvoice(t0, t1) { this.completer = t0; this.invoiceId = t1; }, LoadInvoices: function LoadInvoices() { }, LoadInvoiceRequest: function LoadInvoiceRequest() { }, LoadInvoiceFailure: function LoadInvoiceFailure(t0) { this.error = t0; }, LoadInvoiceSuccess: function LoadInvoiceSuccess(t0) { this.invoice = t0; }, LoadInvoicesRequest: function LoadInvoicesRequest() { }, LoadInvoicesFailure: function LoadInvoicesFailure(t0) { this.error = t0; }, LoadInvoicesSuccess: function LoadInvoicesSuccess(t0) { this.invoices = t0; }, AddInvoiceContact: function AddInvoiceContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveInvoiceContact: function RemoveInvoiceContact(t0) { this.invitation = t0; }, AddInvoiceItem: function AddInvoiceItem(t0) { this.invoiceItem = t0; }, MoveInvoiceItem: function MoveInvoiceItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddInvoiceItems: function AddInvoiceItems(t0) { this.lineItems = t0; }, UpdateInvoiceItem: function UpdateInvoiceItem(t0, t1) { this.index = t0; this.invoiceItem = t1; }, DeleteInvoiceItem: function DeleteInvoiceItem(t0) { this.index = t0; }, SaveInvoiceRequest: function SaveInvoiceRequest(t0, t1, t2) { this.completer = t0; this.invoice = t1; this.entityAction = t2; }, SaveInvoiceSuccess: function SaveInvoiceSuccess(t0) { this.invoice = t0; }, AddInvoiceSuccess: function AddInvoiceSuccess(t0) { this.invoice = t0; }, SaveInvoiceFailure: function SaveInvoiceFailure() { }, EmailInvoiceRequest: function EmailInvoiceRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.invoiceId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailInvoiceSuccess: function EmailInvoiceSuccess(t0) { this.invoice = t0; }, EmailInvoiceFailure: function EmailInvoiceFailure() { }, MarkInvoicesSentRequest: function MarkInvoicesSentRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, MarkInvoicesSentSuccess: function MarkInvoicesSentSuccess(t0) { this.invoices = t0; }, MarkInvoicesSentFailure: function MarkInvoicesSentFailure() { }, BulkEmailInvoicesRequest: function BulkEmailInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, BulkEmailInvoicesSuccess: function BulkEmailInvoicesSuccess() { }, BulkEmailInvoicesFailure: function BulkEmailInvoicesFailure() { }, MarkInvoicesPaidRequest: function MarkInvoicesPaidRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, MarkInvoicesPaidSuccess: function MarkInvoicesPaidSuccess(t0) { this.invoices = t0; }, MarkInvoicesPaidFailure: function MarkInvoicesPaidFailure() { }, ReverseInvoicesRequest: function ReverseInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, ReverseInvoicesSuccess: function ReverseInvoicesSuccess(t0) { this.invoices = t0; }, ReverseInvoicesFailure: function ReverseInvoicesFailure() { }, CancelInvoicesRequest: function CancelInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, CancelInvoicesSuccess: function CancelInvoicesSuccess(t0) { this.invoices = t0; }, CancelInvoicesFailure: function CancelInvoicesFailure() { }, ArchiveInvoicesRequest: function ArchiveInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, ArchiveInvoicesSuccess: function ArchiveInvoicesSuccess(t0) { this.invoices = t0; }, ArchiveInvoicesFailure: function ArchiveInvoicesFailure() { }, DeleteInvoicesRequest: function DeleteInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DeleteInvoicesSuccess: function DeleteInvoicesSuccess(t0) { this.invoices = t0; }, DeleteInvoicesFailure: function DeleteInvoicesFailure() { }, DownloadInvoicesRequest: function DownloadInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DownloadInvoicesSuccess: function DownloadInvoicesSuccess() { }, DownloadInvoicesFailure: function DownloadInvoicesFailure() { }, RestoreInvoicesRequest: function RestoreInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, RestoreInvoicesSuccess: function RestoreInvoicesSuccess(t0) { this.invoices = t0; }, RestoreInvoicesFailure: function RestoreInvoicesFailure() { }, FilterInvoices: function FilterInvoices(t0) { this.filter = t0; }, SortInvoices: function SortInvoices(t0) { this.field = t0; }, FilterInvoicesByState: function FilterInvoicesByState(t0) { this.state = t0; }, FilterInvoicesByStatus: function FilterInvoicesByStatus(t0) { this.status = t0; }, FilterInvoicesByCustom1: function FilterInvoicesByCustom1(t0) { this.value = t0; }, FilterInvoicesByCustom2: function FilterInvoicesByCustom2(t0) { this.value = t0; }, FilterInvoicesByCustom3: function FilterInvoicesByCustom3(t0) { this.value = t0; }, FilterInvoicesByCustom4: function FilterInvoicesByCustom4(t0) { this.value = t0; }, StartInvoiceMultiselect: function StartInvoiceMultiselect() { }, AddToInvoiceMultiselect: function AddToInvoiceMultiselect(t0) { this.entity = t0; }, RemoveFromInvoiceMultiselect: function RemoveFromInvoiceMultiselect(t0) { this.entity = t0; }, ClearInvoiceMultiselect: function ClearInvoiceMultiselect() { }, SaveInvoiceDocumentRequest: function SaveInvoiceDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.invoice = t2; }, SaveInvoiceDocumentFailure: function SaveInvoiceDocumentFailure() { }, UpdateInvoiceTab: function UpdateInvoiceTab(t0) { this.tabIndex = t0; }, handleInvoiceAction_closure: function handleInvoiceAction_closure() { }, handleInvoiceAction_closure0: function handleInvoiceAction_closure0(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.invoice = t2; }, handleInvoiceAction_closure1: function handleInvoiceAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.invoice = t2; }, handleInvoiceAction_closure2: function handleInvoiceAction_closure2(t0) { this.designId = t0; }, handleInvoiceAction_closure3: function handleInvoiceAction_closure3(t0) { this.designId = t0; }, handleInvoiceAction_closure4: function handleInvoiceAction_closure4() { }, handleInvoiceAction_closure5: function handleInvoiceAction_closure5(t0, t1) { this.invoice = t0; this.invoices = t1; }, handleInvoiceAction__closure: function handleInvoiceAction__closure() { }, handleInvoiceAction__closure0: function handleInvoiceAction__closure0() { }, handlePaymentAction: function(context, payments, action) { var store, t1, t2, company, paymentIds, payment, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers", _box_0 = {}; if (payments.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = H._arrayInstanceType(payments)._eval$1("MappedListIterable<1,String*>"); paymentIds = P.List_List$of(new H.MappedListIterable(payments, new Q.handlePaymentAction_closure(), t2), true, t2._eval$1("ListIterable.E")); payment = type$.legacy_PaymentEntity._as(C.JSArray_methods.get$first(payments)); _box_0.payment = payment; switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, payment, _null); break; case C.EntityAction_apply: M.viewEntity(false, payment, _null, false); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new Q.handlePaymentAction_closure0(_box_0, context)); break; case C.EntityAction_refund: M.viewEntity(false, payment, _null, false); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new Q.handlePaymentAction_closure1(_box_0, store, company)); break; case C.EntityAction_emailPayment: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "emailed_payment"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.EmailPaymentRequest(t1, paymentIds)); break; case C.EntityAction_restore: t2 = paymentIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_payments"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_payment"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.RestorePaymentsRequest(t1, paymentIds)); break; case C.EntityAction_archive: t2 = paymentIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_payments"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_payment"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ArchivePaymentsRequest(t1, paymentIds)); break; case C.EntityAction_delete: t2 = paymentIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_payments"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_payment"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DeletePaymentsRequest(t1, paymentIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.paymentUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.StartPaymentMultiselect()); t1 = payments.length; if (t1 === 0) break; for (_i = 0; _i < payments.length; payments.length === t1 || (0, H.throwConcurrentModificationError)(payments), ++_i) { payment = payments[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.paymentUIState.listUIState; t3 = J.get$id$x(payment); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.AddToPaymentMultiselect(payment)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.RemoveFromPaymentMultiselect(payment)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([payment], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewPaymentList: function ViewPaymentList() { }, ViewPayment: function ViewPayment(t0) { this.paymentId = t0; }, EditPayment: function EditPayment(t0) { this.payment = t0; }, ViewRefundPayment: function ViewRefundPayment(t0) { this.payment = t0; }, UpdatePayment: function UpdatePayment(t0) { this.payment = t0; }, LoadPayment: function LoadPayment(t0, t1) { this.completer = t0; this.paymentId = t1; }, LoadPayments: function LoadPayments() { }, LoadPaymentRequest: function LoadPaymentRequest() { }, LoadPaymentFailure: function LoadPaymentFailure(t0) { this.error = t0; }, LoadPaymentSuccess: function LoadPaymentSuccess(t0) { this.payment = t0; }, LoadPaymentsRequest: function LoadPaymentsRequest() { }, LoadPaymentsFailure: function LoadPaymentsFailure(t0) { this.error = t0; }, LoadPaymentsSuccess: function LoadPaymentsSuccess(t0) { this.payments = t0; }, SavePaymentRequest: function SavePaymentRequest(t0, t1) { this.completer = t0; this.payment = t1; }, SavePaymentSuccess: function SavePaymentSuccess(t0) { this.payment = t0; }, AddPaymentSuccess: function AddPaymentSuccess(t0) { this.payment = t0; }, SavePaymentFailure: function SavePaymentFailure() { }, RefundPaymentRequest: function RefundPaymentRequest(t0, t1) { this.completer = t0; this.payment = t1; }, RefundPaymentSuccess: function RefundPaymentSuccess(t0) { this.payment = t0; }, RefundPaymentFailure: function RefundPaymentFailure() { }, ArchivePaymentsRequest: function ArchivePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, ArchivePaymentsSuccess: function ArchivePaymentsSuccess(t0) { this.payments = t0; }, ArchivePaymentsFailure: function ArchivePaymentsFailure() { }, DeletePaymentsRequest: function DeletePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, DeletePaymentsSuccess: function DeletePaymentsSuccess(t0) { this.payments = t0; }, DeletePaymentsFailure: function DeletePaymentsFailure() { }, RestorePaymentsRequest: function RestorePaymentsRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, RestorePaymentsSuccess: function RestorePaymentsSuccess(t0) { this.payments = t0; }, RestorePaymentsFailure: function RestorePaymentsFailure() { }, EmailPaymentRequest: function EmailPaymentRequest(t0, t1) { this.completer = t0; this.paymentIds = t1; }, EmailPaymentSuccess: function EmailPaymentSuccess() { }, FilterPayments: function FilterPayments(t0) { this.filter = t0; }, SortPayments: function SortPayments(t0) { this.field = t0; }, FilterPaymentsByState: function FilterPaymentsByState(t0) { this.state = t0; }, FilterPaymentsByCustom1: function FilterPaymentsByCustom1(t0) { this.value = t0; }, FilterPaymentsByCustom2: function FilterPaymentsByCustom2(t0) { this.value = t0; }, FilterPaymentsByCustom3: function FilterPaymentsByCustom3(t0) { this.value = t0; }, FilterPaymentsByCustom4: function FilterPaymentsByCustom4(t0) { this.value = t0; }, StartPaymentMultiselect: function StartPaymentMultiselect() { }, AddToPaymentMultiselect: function AddToPaymentMultiselect(t0) { this.entity = t0; }, RemoveFromPaymentMultiselect: function RemoveFromPaymentMultiselect(t0) { this.entity = t0; }, ClearPaymentMultiselect: function ClearPaymentMultiselect() { }, handlePaymentAction_closure: function handlePaymentAction_closure() { }, handlePaymentAction_closure0: function handlePaymentAction_closure0(t0, t1) { this._box_0 = t0; this.context = t1; }, handlePaymentAction__closure1: function handlePaymentAction__closure1() { }, handlePaymentAction_closure1: function handlePaymentAction_closure1(t0, t1, t2) { this._box_0 = t0; this.store = t1; this.company = t2; }, handlePaymentAction__closure: function handlePaymentAction__closure(t0) { this._box_0 = t0; }, handlePaymentAction__closure0: function handlePaymentAction__closure0(t0) { this.company = t0; }, paymentsByInvoiceSelector: function(invoiceId, paymentMap, paymentList) { var t1 = J.map$1$1$ax(paymentList._list, new Q.paymentsByInvoiceSelector_closure(paymentMap), type$.legacy_PaymentEntity).where$1(0, new Q.paymentsByInvoiceSelector_closure0(invoiceId)); return P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, paymentsByCreditSelector: function(creditId, paymentMap, paymentList) { var t1 = J.map$1$1$ax(paymentList._list, new Q.paymentsByCreditSelector_closure(paymentMap), type$.legacy_PaymentEntity).where$1(0, new Q.paymentsByCreditSelector_closure0(creditId)); return P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, filteredPaymentsSelector: function(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(paymentList._list, new Q.filteredPaymentsSelector_closure(paymentMap, paymentListState, clientMap, selectionState, filterEntityType, filterEntityId)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Q.filteredPaymentsSelector_closure0(paymentMap, paymentListState, invoiceMap, clientMap, userMap)); return list; }, paymentStatsForClient: function(clientId, paymentMap, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(paymentMap._map$_map, new Q.paymentStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, memoizedPaymentsByInvoice_closure: function memoizedPaymentsByInvoice_closure() { }, paymentsByInvoiceSelector_closure: function paymentsByInvoiceSelector_closure(t0) { this.paymentMap = t0; }, paymentsByInvoiceSelector_closure0: function paymentsByInvoiceSelector_closure0(t0) { this.invoiceId = t0; }, paymentsByInvoiceSelector__closure: function paymentsByInvoiceSelector__closure() { }, memoizedPaymentsByCredit_closure: function memoizedPaymentsByCredit_closure() { }, paymentsByCreditSelector_closure: function paymentsByCreditSelector_closure(t0) { this.paymentMap = t0; }, paymentsByCreditSelector_closure0: function paymentsByCreditSelector_closure0(t0) { this.creditId = t0; }, paymentsByCreditSelector__closure: function paymentsByCreditSelector__closure() { }, memoizedFilteredPaymentList_closure: function memoizedFilteredPaymentList_closure() { }, filteredPaymentsSelector_closure: function filteredPaymentsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.paymentMap = t0; _.paymentListState = t1; _.clientMap = t2; _.selectionState = t3; _.filterEntityType = t4; _.filterEntityId = t5; }, filteredPaymentsSelector__closure: function filteredPaymentsSelector__closure() { }, filteredPaymentsSelector_closure0: function filteredPaymentsSelector_closure0(t0, t1, t2, t3, t4) { var _ = this; _.paymentMap = t0; _.paymentListState = t1; _.invoiceMap = t2; _.clientMap = t3; _.userMap = t4; }, memoizedPaymentStatsForClient_closure: function memoizedPaymentStatsForClient_closure() { }, paymentStatsForClient_closure: function paymentStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, _editProject: function() { return new Q._editProject_closure(); }, _viewProject: function() { return new Q._viewProject_closure(); }, _viewProjectList: function() { return new Q._viewProjectList_closure0(); }, _archiveProject: function(repository) { return new Q._archiveProject_closure(repository); }, _deleteProject: function(repository) { return new Q._deleteProject_closure(repository); }, _restoreProject: function(repository) { return new Q._restoreProject_closure(repository); }, _saveProject: function(repository) { return new Q._saveProject_closure(repository); }, _loadProject: function(repository) { return new Q._loadProject_closure(repository); }, _loadProjects: function(repository) { return new Q._loadProjects_closure(repository); }, _saveDocument5: function(repository) { return new Q._saveDocument_closure5(repository); }, _editProject_closure: function _editProject_closure() { }, _viewProject_closure: function _viewProject_closure() { }, _viewProjectList_closure0: function _viewProjectList_closure0() { }, _viewProjectList__closure: function _viewProjectList__closure() { }, _archiveProject_closure: function _archiveProject_closure(t0) { this.repository = t0; }, _archiveProject__closure: function _archiveProject__closure(t0) { this.store = t0; }, _archiveProject__closure0: function _archiveProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveProject__closure1: function _archiveProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _deleteProject_closure: function _deleteProject_closure(t0) { this.repository = t0; }, _deleteProject__closure: function _deleteProject__closure(t0) { this.store = t0; }, _deleteProject__closure0: function _deleteProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteProject__closure1: function _deleteProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _restoreProject_closure: function _restoreProject_closure(t0) { this.repository = t0; }, _restoreProject__closure: function _restoreProject__closure(t0) { this.store = t0; }, _restoreProject__closure0: function _restoreProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreProject__closure1: function _restoreProject__closure1(t0, t1, t2) { this.store = t0; this.prevProjects = t1; this.action = t2; }, _saveProject_closure: function _saveProject_closure(t0) { this.repository = t0; }, _saveProject__closure: function _saveProject__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveProject__closure0: function _saveProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProject_closure: function _loadProject_closure(t0) { this.repository = t0; }, _loadProject__closure: function _loadProject__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProject__closure0: function _loadProject__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProjects_closure: function _loadProjects_closure(t0) { this.repository = t0; }, _loadProjects__closure: function _loadProjects__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProjects__closure0: function _loadProjects__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure5: function _saveDocument_closure5(t0) { this.repository = t0; }, _saveDocument__closure11: function _saveDocument__closure11(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure12: function _saveDocument__closure12(t0, t1) { this.store = t0; this.action = t1; }, convertProjectToInvoiceItem: function(context, project) { var t3, expenses, hasShownNotes, i, item, notes, items = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceItemEntity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), tasks = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TaskEntity), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); J.forEach$1$ax(t3.$index(t1, t2).taskState.map._map$_map, new Q.convertProjectToInvoiceItem_closure(project, tasks)); expenses = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ExpenseEntity); J.forEach$1$ax(t3.$index(t1, t2).expenseState.map._map$_map, new Q.convertProjectToInvoiceItem_closure0(project, expenses)); C.JSArray_methods.sort$1(tasks, new Q.convertProjectToInvoiceItem_closure1()); C.JSArray_methods.sort$1(expenses, new Q.convertProjectToInvoiceItem_closure2()); for (hasShownNotes = false, i = 0; i < expenses.length; ++i) { t1 = {}; item = L.convertExpenseToInvoiceItem(context, expenses[i]); if (i === 0) { notes = t1.notes = "## " + project.name + "\n\n"; t2 = project.publicNotes; if (t2.length !== 0) { t2 = t1.notes = notes + (t2 + "\n\n"); hasShownNotes = true; } else t2 = notes; t1.notes = t2 + item.notes; t2 = new Q.InvoiceItemEntityBuilder(); t2.get$_invoice_model$_$this()._productCost = 0; t2._invoice_model$_$v = item; new Q.convertProjectToInvoiceItem_closure3(t1).call$1(t2); item = t2.build$0(0); } items.push(item); } for (t1 = !hasShownNotes, i = 0; i < tasks.length; ++i) { t2 = {}; item = U.convertTaskToInvoiceItem(context, tasks[i]); if (i === 0) { notes = t2.notes = "## " + project.name + "\n\n"; t3 = project.publicNotes; t3 = t3.length !== 0 && t1 ? t2.notes = notes + (t3 + "\n\n") : notes; t2.notes = t3 + item.notes; t3 = new Q.InvoiceItemEntityBuilder(); t3.get$_invoice_model$_$this()._productCost = 0; t3._invoice_model$_$v = item; new Q.convertProjectToInvoiceItem_closure4(t2).call$1(t3); item = t3.build$0(0); } items.push(item); } return items; }, dropdownProjectsSelector: function(projectMap, projectList, clientMap, userMap, clientId) { var t1 = J.where$1$ax(projectList._list, new Q.dropdownProjectsSelector_closure(projectMap, clientId, clientMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Q.dropdownProjectsSelector_closure0(projectMap, userMap, clientMap)); return list; }, filteredProjectsSelector: function(selectionState, projectMap, projectList, projectListState, clientMap, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(projectList._list, new Q.filteredProjectsSelector_closure(projectMap, clientMap, userMap, selectionState, filterEntityId, filterEntityType, projectListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Q.filteredProjectsSelector_closure0(projectMap, projectListState, userMap, clientMap)); return list; }, taskDurationForProject: function(project, taskMap) { var t1 = {}; t1.total = 0; J.forEach$1$ax(taskMap._map$_map, new Q.taskDurationForProject_closure(t1, project)); return P.Duration$(0, 0, 0, 0, 0, t1.total); }, projectStatsForClient: function(clientId, projectMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(projectMap._map$_map, new Q.projectStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, convertProjectToInvoiceItem_closure: function convertProjectToInvoiceItem_closure(t0, t1) { this.project = t0; this.tasks = t1; }, convertProjectToInvoiceItem_closure0: function convertProjectToInvoiceItem_closure0(t0, t1) { this.project = t0; this.expenses = t1; }, convertProjectToInvoiceItem_closure1: function convertProjectToInvoiceItem_closure1() { }, convertProjectToInvoiceItem_closure2: function convertProjectToInvoiceItem_closure2() { }, convertProjectToInvoiceItem_closure3: function convertProjectToInvoiceItem_closure3(t0) { this._box_0 = t0; }, convertProjectToInvoiceItem_closure4: function convertProjectToInvoiceItem_closure4(t0) { this._box_1 = t0; }, memoizedDropdownProjectList_closure: function memoizedDropdownProjectList_closure() { }, dropdownProjectsSelector_closure: function dropdownProjectsSelector_closure(t0, t1, t2) { this.projectMap = t0; this.clientId = t1; this.clientMap = t2; }, dropdownProjectsSelector_closure0: function dropdownProjectsSelector_closure0(t0, t1, t2) { this.projectMap = t0; this.userMap = t1; this.clientMap = t2; }, memoizedFilteredProjectList_closure: function memoizedFilteredProjectList_closure() { }, filteredProjectsSelector_closure: function filteredProjectsSelector_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.projectMap = t0; _.clientMap = t1; _.userMap = t2; _.selectionState = t3; _.filterEntityId = t4; _.filterEntityType = t5; _.projectListState = t6; }, filteredProjectsSelector_closure0: function filteredProjectsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.projectMap = t0; _.projectListState = t1; _.userMap = t2; _.clientMap = t3; }, taskDurationForProject_closure: function taskDurationForProject_closure(t0, t1) { this._box_0 = t0; this.project = t1; }, memoizedProjectStatsForClient_closure: function memoizedProjectStatsForClient_closure() { }, projectStatsForClient_closure: function projectStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedProjectStatsForUser_closure: function memoizedProjectStatsForUser_closure() { }, _editRecurringInvoice: function() { return new Q._editRecurringInvoice_closure(); }, _viewRecurringInvoice: function() { return new Q._viewRecurringInvoice_closure(); }, _viewRecurringInvoiceList: function() { return new Q._viewRecurringInvoiceList_closure(); }, _showPdfRecurringInvoice: function() { return new Q._showPdfRecurringInvoice_closure(); }, _startRecurringInvoice: function(repository) { return new Q._startRecurringInvoice_closure(repository); }, _stopRecurringInvoice: function(repository) { return new Q._stopRecurringInvoice_closure(repository); }, _archiveRecurringInvoice: function(repository) { return new Q._archiveRecurringInvoice_closure(repository); }, _deleteRecurringInvoice: function(repository) { return new Q._deleteRecurringInvoice_closure(repository); }, _restoreRecurringInvoice: function(repository) { return new Q._restoreRecurringInvoice_closure(repository); }, _saveRecurringInvoice: function(repository) { return new Q._saveRecurringInvoice_closure(repository); }, _loadRecurringInvoice: function(repository) { return new Q._loadRecurringInvoice_closure(repository); }, _loadRecurringInvoices: function(repository) { return new Q._loadRecurringInvoices_closure(repository); }, _saveDocument9: function(repository) { return new Q._saveDocument_closure1(repository); }, _editRecurringInvoice_closure: function _editRecurringInvoice_closure() { }, _viewRecurringInvoice_closure: function _viewRecurringInvoice_closure() { }, _viewRecurringInvoiceList_closure: function _viewRecurringInvoiceList_closure() { }, _viewRecurringInvoiceList__closure: function _viewRecurringInvoiceList__closure() { }, _showPdfRecurringInvoice_closure: function _showPdfRecurringInvoice_closure() { }, _startRecurringInvoice_closure: function _startRecurringInvoice_closure(t0) { this.repository = t0; }, _startRecurringInvoice__closure: function _startRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _startRecurringInvoice__closure0: function _startRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringInvoice_closure: function _stopRecurringInvoice_closure(t0) { this.repository = t0; }, _stopRecurringInvoice__closure: function _stopRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _stopRecurringInvoice__closure0: function _stopRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringInvoice_closure: function _archiveRecurringInvoice_closure(t0) { this.repository = t0; }, _archiveRecurringInvoice__closure: function _archiveRecurringInvoice__closure(t0) { this.store = t0; }, _archiveRecurringInvoice__closure0: function _archiveRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveRecurringInvoice__closure1: function _archiveRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _deleteRecurringInvoice_closure: function _deleteRecurringInvoice_closure(t0) { this.repository = t0; }, _deleteRecurringInvoice__closure: function _deleteRecurringInvoice__closure(t0) { this.store = t0; }, _deleteRecurringInvoice__closure0: function _deleteRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteRecurringInvoice__closure1: function _deleteRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _restoreRecurringInvoice_closure: function _restoreRecurringInvoice_closure(t0) { this.repository = t0; }, _restoreRecurringInvoice__closure: function _restoreRecurringInvoice__closure(t0) { this.store = t0; }, _restoreRecurringInvoice__closure0: function _restoreRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreRecurringInvoice__closure1: function _restoreRecurringInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevRecurringInvoices = t1; this.action = t2; }, _saveRecurringInvoice_closure: function _saveRecurringInvoice_closure(t0) { this.repository = t0; }, _saveRecurringInvoice__closure: function _saveRecurringInvoice__closure(t0) { this.action = t0; }, _saveRecurringInvoice___closure: function _saveRecurringInvoice___closure() { }, _saveRecurringInvoice__closure0: function _saveRecurringInvoice__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveRecurringInvoice__closure1: function _saveRecurringInvoice__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoice_closure: function _loadRecurringInvoice_closure(t0) { this.repository = t0; }, _loadRecurringInvoice__closure: function _loadRecurringInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoice__closure0: function _loadRecurringInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoices_closure: function _loadRecurringInvoices_closure(t0) { this.repository = t0; }, _loadRecurringInvoices__closure: function _loadRecurringInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadRecurringInvoices__closure0: function _loadRecurringInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure1: function _saveDocument_closure1(t0) { this.repository = t0; }, _saveDocument__closure3: function _saveDocument__closure3(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure4: function _saveDocument__closure4(t0, t1) { this.store = t0; this.action = t1; }, _$RecurringInvoiceState$_: function(list, map) { var _s21_ = "RecurringInvoiceState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "list")); return new Q._$RecurringInvoiceState(map, list); }, _$RecurringInvoiceUIState$_: function(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("RecurringInvoiceUIState", "listUIState")); return new Q._$RecurringInvoiceUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, RecurringInvoiceState: function RecurringInvoiceState() { }, RecurringInvoiceState_loadRecurringInvoices_closure0: function RecurringInvoiceState_loadRecurringInvoices_closure0() { }, RecurringInvoiceState_loadRecurringInvoices_closure1: function RecurringInvoiceState_loadRecurringInvoices_closure1() { }, RecurringInvoiceState_loadRecurringInvoices_closure: function RecurringInvoiceState_loadRecurringInvoices_closure(t0, t1) { this.$this = t0; this.map = t1; }, RecurringInvoiceUIState: function RecurringInvoiceUIState() { }, _$RecurringInvoiceStateSerializer: function _$RecurringInvoiceStateSerializer() { }, _$RecurringInvoiceUIStateSerializer: function _$RecurringInvoiceUIStateSerializer() { }, _$RecurringInvoiceState: function _$RecurringInvoiceState(t0, t1) { this.map = t0; this.list = t1; this._recurring_invoice_state$__hashCode = null; }, RecurringInvoiceStateBuilder: function RecurringInvoiceStateBuilder() { this._recurring_invoice_state$_list = this._recurring_invoice_state$_map = this._recurring_invoice_state$_$v = null; }, _$RecurringInvoiceUIState: function _$RecurringInvoiceUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._recurring_invoice_state$__hashCode = null; }, RecurringInvoiceUIStateBuilder: function RecurringInvoiceUIStateBuilder() { var _ = this; _._recurring_invoice_state$_cancelCompleter = _._recurring_invoice_state$_saveCompleter = _._recurring_invoice_state$_tabIndex = _._recurring_invoice_state$_forceSelected = _._recurring_invoice_state$_selectedId = _._recurring_invoice_state$_listUIState = _._recurring_invoice_state$_historyActivityId = _._recurring_invoice_state$_editingItemIndex = _._recurring_invoice_state$_editing = _._recurring_invoice_state$_$v = null; }, _RecurringInvoiceUIState_Object_EntityUIState: function _RecurringInvoiceUIState_Object_EntityUIState() { }, settingsUIReducer_closure: function settingsUIReducer_closure() { }, settingsUIReducer__closure14: function settingsUIReducer__closure14(t0, t1) { this.action = t0; this.state = t1; }, settingsUIReducer_closure0: function settingsUIReducer_closure0() { }, settingsUIReducer__closure13: function settingsUIReducer__closure13(t0) { this.action = t0; }, settingsUIReducer_closure1: function settingsUIReducer_closure1() { }, settingsUIReducer__closure10: function settingsUIReducer__closure10(t0) { this.action = t0; }, settingsUIReducer__closure11: function settingsUIReducer__closure11(t0) { this.action = t0; }, settingsUIReducer__closure12: function settingsUIReducer__closure12(t0) { this.action = t0; }, settingsUIReducer_closure2: function settingsUIReducer_closure2() { }, settingsUIReducer__closure9: function settingsUIReducer__closure9(t0) { this.action = t0; }, settingsUIReducer_closure3: function settingsUIReducer_closure3() { }, settingsUIReducer__closure8: function settingsUIReducer__closure8(t0) { this.state = t0; }, settingsUIReducer_closure4: function settingsUIReducer_closure4() { }, settingsUIReducer__closure7: function settingsUIReducer__closure7(t0) { this.action = t0; }, settingsUIReducer_closure5: function settingsUIReducer_closure5() { }, settingsUIReducer__closure6: function settingsUIReducer__closure6(t0) { this.action = t0; }, settingsUIReducer_closure6: function settingsUIReducer_closure6() { }, settingsUIReducer__closure5: function settingsUIReducer__closure5(t0) { this.action = t0; }, settingsUIReducer_closure7: function settingsUIReducer_closure7() { }, settingsUIReducer__closure4: function settingsUIReducer__closure4(t0) { this.action = t0; }, settingsUIReducer_closure8: function settingsUIReducer_closure8() { }, settingsUIReducer__closure3: function settingsUIReducer__closure3(t0, t1) { this.action = t0; this.state = t1; }, settingsUIReducer_closure9: function settingsUIReducer_closure9() { }, settingsUIReducer__closure2: function settingsUIReducer__closure2(t0) { this.state = t0; }, settingsUIReducer_closure10: function settingsUIReducer_closure10() { }, settingsUIReducer__closure1: function settingsUIReducer__closure1(t0) { this.action = t0; }, settingsUIReducer_closure11: function settingsUIReducer_closure11() { }, settingsUIReducer__closure0: function settingsUIReducer__closure0(t0) { this.action = t0; }, settingsUIReducer_closure12: function settingsUIReducer_closure12() { }, settingsUIReducer__closure: function settingsUIReducer__closure() { }, staticLoadedReducer: function(staticState, action) { var data = action.data, t1 = B.StaticState_StaticState(), t2 = new B.StaticStateBuilder(); t2._static_state$_$v = t1; new Q.staticLoadedReducer_closure(data).call$1(t2); return t2.build$0(0); }, staticLoadedReducer_closure: function staticLoadedReducer_closure(t0) { this.data = t0; }, staticLoadedReducer__closure: function staticLoadedReducer__closure() { }, staticLoadedReducer__closure0: function staticLoadedReducer__closure0() { }, staticLoadedReducer__closure1: function staticLoadedReducer__closure1() { }, staticLoadedReducer__closure2: function staticLoadedReducer__closure2() { }, staticLoadedReducer__closure3: function staticLoadedReducer__closure3() { }, staticLoadedReducer__closure4: function staticLoadedReducer__closure4() { }, staticLoadedReducer__closure5: function staticLoadedReducer__closure5() { }, staticLoadedReducer__closure6: function staticLoadedReducer__closure6() { }, staticLoadedReducer__closure7: function staticLoadedReducer__closure7() { }, staticLoadedReducer__closure8: function staticLoadedReducer__closure8() { }, staticLoadedReducer__closure9: function staticLoadedReducer__closure9() { }, staticLoadedReducer__closure10: function staticLoadedReducer__closure10() { }, staticLoadedReducer__closure11: function staticLoadedReducer__closure11() { }, staticLoadedReducer__closure12: function staticLoadedReducer__closure12() { }, staticLoadedReducer__closure13: function staticLoadedReducer__closure13() { }, staticLoadedReducer__closure14: function staticLoadedReducer__closure14() { }, staticLoadedReducer__closure15: function staticLoadedReducer__closure15() { }, staticLoadedReducer__closure16: function staticLoadedReducer__closure16() { }, _$TaxRateState$_: function(list, map) { var _s12_ = "TaxRateState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new Q._$TaxRateState(map, list); }, _$TaxRateUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("TaxRateUIState", "listUIState")); return new Q._$TaxRateUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaxRateState: function TaxRateState() { }, TaxRateUIState: function TaxRateUIState() { }, _$TaxRateStateSerializer: function _$TaxRateStateSerializer() { }, _$TaxRateUIStateSerializer: function _$TaxRateUIStateSerializer() { }, _$TaxRateState: function _$TaxRateState(t0, t1) { this.map = t0; this.list = t1; this._tax_rate_state$__hashCode = null; }, TaxRateStateBuilder: function TaxRateStateBuilder() { this._tax_rate_state$_list = this._tax_rate_state$_map = this._tax_rate_state$_$v = null; }, _$TaxRateUIState: function _$TaxRateUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._tax_rate_state$__hashCode = null; }, TaxRateUIStateBuilder: function TaxRateUIStateBuilder() { var _ = this; _._tax_rate_state$_cancelCompleter = _._tax_rate_state$_saveCompleter = _._tax_rate_state$_tabIndex = _._tax_rate_state$_forceSelected = _._tax_rate_state$_selectedId = _._tax_rate_state$_listUIState = _._tax_rate_state$_editing = _._tax_rate_state$_$v = null; }, _TaxRateUIState_Object_EntityUIState: function _TaxRateUIState_Object_EntityUIState() { }, handleTokenAction: function(context, tokens, action) { var store, t1, token, t2, tokenIds, message, _i, t3, _s6_ = ":value", _s12_ = "_dispatchers"; if (tokens.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); token = type$.legacy_TokenEntity._as(C.JSArray_methods.get$first(tokens)); t2 = H._arrayInstanceType(tokens)._eval$1("MappedListIterable<1,String*>"); tokenIds = P.List_List$of(new H.MappedListIterable(tokens, new Q.handleTokenAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_copy: T.Clipboard_setData(new T.ClipboardData(token.token)); M.showToast(C.JSString_methods.replaceFirst$2(t1.get$copiedToClipboard(), ":value ", "")); break; case C.EntityAction_edit: M.editEntity(null, context, token, null); break; case C.EntityAction_restore: t2 = tokenIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_tokens"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_token"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.RestoreTokensRequest(t1, tokenIds)); break; case C.EntityAction_archive: t2 = tokenIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_tokens"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_token"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.ArchiveTokensRequest(t1, tokenIds)); break; case C.EntityAction_delete: t2 = tokenIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_tokens"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_token"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.DeleteTokensRequest(t1, tokenIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.tokenUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.StartTokenMultiselect()); t1 = tokens.length; if (t1 === 0) break; for (_i = 0; _i < tokens.length; tokens.length === t1 || (0, H.throwConcurrentModificationError)(tokens), ++_i) { token = tokens[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.tokenUIState.listUIState; t3 = J.get$id$x(token); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.AddToTokenMultiselect(token)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Q.RemoveFromTokenMultiselect(token)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([token], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewTokenList: function ViewTokenList() { }, ViewToken: function ViewToken(t0) { this.tokenId = t0; }, EditToken: function EditToken(t0) { this.token = t0; }, UpdateToken: function UpdateToken(t0) { this.token = t0; }, LoadTokenRequest: function LoadTokenRequest() { }, LoadTokenFailure: function LoadTokenFailure(t0) { this.error = t0; }, LoadTokenSuccess: function LoadTokenSuccess(t0) { this.token = t0; }, LoadTokensRequest: function LoadTokensRequest() { }, LoadTokensFailure: function LoadTokensFailure(t0) { this.error = t0; }, LoadTokensSuccess: function LoadTokensSuccess(t0) { this.tokens = t0; }, SaveTokenRequest: function SaveTokenRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.token = t1; _.password = t2; _.idToken = t3; }, SaveTokenSuccess: function SaveTokenSuccess(t0) { this.token = t0; }, AddTokenSuccess: function AddTokenSuccess(t0) { this.token = t0; }, SaveTokenFailure: function SaveTokenFailure() { }, ArchiveTokensRequest: function ArchiveTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, ArchiveTokensSuccess: function ArchiveTokensSuccess(t0) { this.tokens = t0; }, ArchiveTokensFailure: function ArchiveTokensFailure() { }, DeleteTokensRequest: function DeleteTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, DeleteTokensSuccess: function DeleteTokensSuccess(t0) { this.tokens = t0; }, DeleteTokensFailure: function DeleteTokensFailure() { }, RestoreTokensRequest: function RestoreTokensRequest(t0, t1) { this.completer = t0; this.tokenIds = t1; }, RestoreTokensSuccess: function RestoreTokensSuccess(t0) { this.tokens = t0; }, RestoreTokensFailure: function RestoreTokensFailure() { }, FilterTokens: function FilterTokens(t0) { this.filter = t0; }, SortTokens: function SortTokens(t0) { this.field = t0; }, FilterTokensByState: function FilterTokensByState(t0) { this.state = t0; }, FilterTokensByCustom1: function FilterTokensByCustom1(t0) { this.value = t0; }, FilterTokensByCustom2: function FilterTokensByCustom2(t0) { this.value = t0; }, FilterTokensByCustom3: function FilterTokensByCustom3(t0) { this.value = t0; }, FilterTokensByCustom4: function FilterTokensByCustom4(t0) { this.value = t0; }, handleTokenAction_closure: function handleTokenAction_closure() { }, StartTokenMultiselect: function StartTokenMultiselect() { }, AddToTokenMultiselect: function AddToTokenMultiselect(t0) { this.entity = t0; }, RemoveFromTokenMultiselect: function RemoveFromTokenMultiselect(t0) { this.entity = t0; }, ClearTokenMultiselect: function ClearTokenMultiselect() { }, ListUIState_ListUIState: function(sortField, sortAscending) { var t1 = D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo([C.EntityState_active], type$.JSArray_legacy_EntityState), type$.legacy_EntityState), t2 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_EntityStatus), t3 = type$.legacy_String; return Q._$ListUIState$_(D.BuiltList_BuiltList$from(C.List_empty, t3), D.BuiltList_BuiltList$from(C.List_empty, t3), D.BuiltList_BuiltList$from(C.List_empty, t3), D.BuiltList_BuiltList$from(C.List_empty, t3), null, 0, null, sortAscending !== false, sortField, t1, t2); }, _$ListUIState$_: function(custom1Filters, custom2Filters, custom3Filters, custom4Filters, filter, filterClearedAt, selectedIds, sortAscending, sortField, stateFilters, statusFilters) { var _s11_ = "ListUIState"; if (stateFilters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "stateFilters")); if (statusFilters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "statusFilters")); if (custom1Filters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "custom1Filters")); if (custom2Filters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "custom2Filters")); if (custom3Filters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "custom3Filters")); if (custom4Filters == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "custom4Filters")); return new Q._$ListUIState(filter, filterClearedAt, sortField, sortAscending, stateFilters, statusFilters, custom1Filters, custom2Filters, custom3Filters, custom4Filters, selectedIds); }, ListUIState: function ListUIState() { }, _$ListUIStateSerializer: function _$ListUIStateSerializer() { }, _$ListUIState: function _$ListUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.filter = t0; _.filterClearedAt = t1; _.sortField = t2; _.sortAscending = t3; _.stateFilters = t4; _.statusFilters = t5; _.custom1Filters = t6; _.custom2Filters = t7; _.custom3Filters = t8; _.custom4Filters = t9; _.selectedIds = t10; _._list_ui_state$__hashCode = null; }, ListUIStateBuilder: function ListUIStateBuilder() { var _ = this; _._selectedIds = _._custom4Filters = _._custom3Filters = _._custom2Filters = _._custom1Filters = _._statusFilters = _._stateFilters = _._sortAscending = _._sortField = _._list_ui_state$_filterClearedAt = _._list_ui_state$_filter = _._list_ui_state$_$v = null; }, UpdateCurrentRoute: function UpdateCurrentRoute(t0) { this.route = t0; }, _$UserState$_: function(list, map) { var _s9_ = "UserState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "list")); return new Q._$UserState(map, list); }, _$UserUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("UserUIState", "listUIState")); return new Q._$UserUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, UserState: function UserState() { }, UserUIState: function UserUIState() { }, _$UserStateSerializer: function _$UserStateSerializer() { }, _$UserUIStateSerializer: function _$UserUIStateSerializer() { }, _$UserState: function _$UserState(t0, t1) { this.map = t0; this.list = t1; this._user_state$__hashCode = null; }, UserStateBuilder: function UserStateBuilder() { this._user_state$_list = this._user_state$_map = this._user_state$_$v = null; }, _$UserUIState: function _$UserUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._user_state$__hashCode = null; }, UserUIStateBuilder: function UserUIStateBuilder() { var _ = this; _._user_state$_cancelCompleter = _._user_state$_saveCompleter = _._user_state$_tabIndex = _._user_state$_forceSelected = _._user_state$_selectedId = _._user_state$_listUIState = _._user_state$_editing = _._user_state$_$v = null; }, _UserUIState_Object_EntityUIState: function _UserUIState_Object_EntityUIState() { }, BlankScreen: function BlankScreen(t0, t1) { this.message = t0; this.key = t1; }, AppDropdownButton: function AppDropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.labelText = t0; _.value = t1; _.onChanged = t2; _.items = t3; _.showBlank = t4; _.enabled = t5; _.blankValue = t6; _.key = t7; _.$ti = t8; }, AppDropdownButton_build_closure: function AppDropdownButton_build_closure(t0) { this.$this = t0; }, EntityPresenter_isFieldNumeric: function(field) { if (C.JSString_methods.startsWith$1(field, "converted_")) return true; return C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["balance", "paid_to_date", "amount", "quantity", "price", "cost", "line_total", "discount", "profit", "total", "invoice_amount", "invoice_balance", "client_balance", "credit_balance", "tax_rate", "tax_amount", "tax_paid", "payment_amount", "net_balance", "rate", "calculated_rate", "duration", "net_amount", "net_total"], type$.JSArray_legacy_String), field); }, EntityPresenter: function EntityPresenter() { this.context = this.entity = null; }, ClientEditDetails: function ClientEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditDetailsState: function ClientEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._client_edit_details$_numberController = t0; _._client_edit_details$_nameController = t1; _._client_edit_details$_idNumberController = t2; _._client_edit_details$_vatNumberController = t3; _._client_edit_details$_websiteController = t4; _._client_edit_details$_phoneController = t5; _._client_edit_details$_custom1Controller = t6; _._client_edit_details$_custom2Controller = t7; _._client_edit_details$_custom3Controller = t8; _._client_edit_details$_custom4Controller = t9; _._client_edit_details$_debouncer = t10; _._widget = _._client_edit_details$_controllers = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ClientEditDetailsState_didChangeDependencies_closure: function ClientEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditDetailsState_didChangeDependencies_closure0: function ClientEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditDetailsState_dispose_closure: function ClientEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ClientEditDetailsState__onChanged_closure: function ClientEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ClientEditDetailsState__onChanged_closure0: function ClientEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build_closure: function ClientEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, ClientEditDetailsState_build_closure0: function ClientEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build__closure0: function ClientEditDetailsState_build__closure0(t0) { this.groupId = t0; }, ClientEditDetailsState_build_closure1: function ClientEditDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditDetailsState_build__closure: function ClientEditDetailsState_build__closure(t0) { this.userId = t0; }, ClientViewDetails: function ClientViewDetails(t0, t1) { this.client = t0; this.key = t1; }, _ClientViewDetailsState: function _ClientViewDetailsState(t0) { var _ = this; _._widget = _._client_view_details$_launched = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ClientViewDetailsState_build__buildDetailsList: function _ClientViewDetailsState_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.client = t1; _.localization = t2; _.context = t3; }, _ClientViewDetailsState_build__buildDetailsList_closure: function _ClientViewDetailsState_build__buildDetailsList_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.listTiles = t1; _.localization = t2; _.client = t3; _.context = t4; }, _ClientViewDetailsState_build__buildDetailsList__closure1: function _ClientViewDetailsState_build__buildDetailsList__closure1(t0, t1) { this.contact = t0; this.client = t1; }, _ClientViewDetailsState_build__buildDetailsList__closure2: function _ClientViewDetailsState_build__buildDetailsList__closure2(t0, t1) { this.contact = t0; this.localization = t1; }, _ClientViewDetailsState_build__buildDetailsList__closure3: function _ClientViewDetailsState_build__buildDetailsList__closure3(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientViewDetailsState_build__buildDetailsList___closure0: function _ClientViewDetailsState_build__buildDetailsList___closure0(t0, t1, t2) { this.$this = t0; this.contact = t1; this.context = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure4: function _ClientViewDetailsState_build__buildDetailsList__closure4(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _ClientViewDetailsState_build__buildDetailsList___closure: function _ClientViewDetailsState_build__buildDetailsList___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure0: function _ClientViewDetailsState_build__buildDetailsList_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure0: function _ClientViewDetailsState_build__buildDetailsList__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure1: function _ClientViewDetailsState_build__buildDetailsList_closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList__closure: function _ClientViewDetailsState_build__buildDetailsList__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure2: function _ClientViewDetailsState_build__buildDetailsList_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, _ClientViewDetailsState_build__buildDetailsList_closure3: function _ClientViewDetailsState_build__buildDetailsList_closure3(t0, t1, t2) { this.$this = t0; this.context = t1; this.client = t2; }, DashboardVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, filter = t1.filter, t2 = t1.dashboardUIState, t3 = state.staticState.currencyMap, t4 = $.$get$memoizedFilteredSelector(), t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new Q.DashboardVM(state, t2, t3, filter, t4.call$2(filter, J.$index$asx(t5._list, t1)), new Q.DashboardVM_fromStore_closure(new Q.DashboardVM_fromStore__handleRefresh(store)), new Q.DashboardVM_fromStore_closure0(store), new Q.DashboardVM_fromStore_closure1(store), new Q.DashboardVM_fromStore_closure2(store), new Q.DashboardVM_fromStore_closure3(store), new Q.DashboardVM_fromStore_closure4(store), new Q.DashboardVM_fromStore_closure5(store), new Q.DashboardVM_fromStore_closure6(store)); }, DashboardScreenBuilder: function DashboardScreenBuilder(t0) { this.key = t0; }, DashboardScreenBuilder_build_closure: function DashboardScreenBuilder_build_closure() { }, DashboardVM: function DashboardVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.state = t0; _.dashboardUIState = t1; _.currencyMap = t2; _.filter = t3; _.filteredList = t4; _.onRefreshed = t5; _.onSettingsChanged = t6; _.onSelectionChanged = t7; _.onEntityTypeChanged = t8; _.onOffsetChanged = t9; _.onCurrencyChanged = t10; _.onTaxesChanged = t11; _.onShowSidebar = t12; }, DashboardVM_fromStore__handleRefresh: function DashboardVM_fromStore__handleRefresh(t0) { this.store = t0; }, DashboardVM_fromStore_closure: function DashboardVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DashboardVM_fromStore_closure2: function DashboardVM_fromStore_closure2(t0) { this.store = t0; }, DashboardVM_fromStore_closure0: function DashboardVM_fromStore_closure0(t0) { this.store = t0; }, DashboardVM_fromStore_closure5: function DashboardVM_fromStore_closure5(t0) { this.store = t0; }, DashboardVM_fromStore_closure1: function DashboardVM_fromStore_closure1(t0) { this.store = t0; }, DashboardVM_fromStore_closure3: function DashboardVM_fromStore_closure3(t0) { this.store = t0; }, DashboardVM_fromStore_closure4: function DashboardVM_fromStore_closure4(t0) { this.store = t0; }, DashboardVM_fromStore_closure6: function DashboardVM_fromStore_closure6(t0) { this.store = t0; }, GroupEdit: function GroupEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _GroupEditState: function _GroupEditState(t0, t1, t2, t3, t4, t5) { var _ = this; _._group_edit$_nameController = t0; _._group_edit$_custom1Controller = t1; _._group_edit$_custom2Controller = t2; _._group_edit$_controllers = t3; _._group_edit$_debouncer = t4; _.autoValidate = false; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _GroupEditState_didChangeDependencies_closure: function _GroupEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _GroupEditState_didChangeDependencies_closure0: function _GroupEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _GroupEditState_dispose_closure: function _GroupEditState_dispose_closure(t0) { this.$this = t0; }, _GroupEditState__onChanged_closure: function _GroupEditState__onChanged_closure(t0) { this.$this = t0; }, _GroupEditState__onChanged_closure0: function _GroupEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.group = t1; }, _GroupEditState_build_closure0: function _GroupEditState_build_closure0(t0) { this.viewModel = t0; }, _GroupEditState_build_closure1: function _GroupEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _GroupEditState_build__closure: function _GroupEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _GroupEditState_build_closure: function _GroupEditState_build_closure(t0, t1, t2) { this.$this = t0; this.localization = t1; this.viewModel = t2; }, _GroupEditState_build__closure0: function _GroupEditState_build__closure0(t0) { this.localization = t0; }, InvoicePresenter: function InvoicePresenter() { this.context = this.entity = null; }, PaymentPresenter: function PaymentPresenter() { this.context = this.entity = null; }, PaymentPresenter_getField_closure: function PaymentPresenter_getField_closure(t0) { this.state = t0; }, ProductListVM_fromStore: function(store) { var t6, t7, t8, state = store.get$_store$_state(), t1 = $.$get$memoizedFilteredProductList(), t2 = state.getUISelection$1(C.EntityType_product), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).productState.map; t8 = t6.$index(t3, t5).productState.list; t4 = t4.productUIState.listUIState; t8 = t1.call$5(t2, t7, t8, t4, t6.$index(t3, t5).userState.map); t7 = t6.$index(t3, t5).productState.map; t4 = t4.filter; t2 = t6.$index(t3, t5).userCompany.settings.getTableColumns$1(C.EntityType_product); t1 = t2 == null ? F.ProductPresenter_getDefaultTableFields(t6.$index(t3, t5).userCompany) : t2; return new Q.ProductListVM(state, t8, t7, t4, new Q.ProductListVM_fromStore_closure(new Q.ProductListVM_fromStore__handleRefresh(store)), t1, new Q.ProductListVM_fromStore_closure0(store), new Q.ProductListVM_fromStore_closure1(store)); }, ProductListBuilder: function ProductListBuilder(t0) { this.key = t0; }, ProductListBuilder_build_closure: function ProductListBuilder_build_closure() { }, ProductListBuilder_build__closure: function ProductListBuilder_build__closure(t0) { this.viewModel = t0; }, ProductListVM: function ProductListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.productList = t1; _.productMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ProductListVM_fromStore__handleRefresh: function ProductListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ProductListVM_fromStore_closure: function ProductListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ProductListVM_fromStore_closure0: function ProductListVM_fromStore_closure0(t0) { this.store = t0; }, ProductListVM_fromStore_closure1: function ProductListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, recurringInvoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new Q.RecurringInvoiceEditNotesVM(state, J.$index$asx(t2._list, t1).userCompany.company, recurringInvoice, new Q.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure(store)); }, RecurringInvoiceEditNotesScreen: function RecurringInvoiceEditNotesScreen(t0) { this.key = t0; }, RecurringInvoiceEditNotesScreen_build_closure0: function RecurringInvoiceEditNotesScreen_build_closure0() { }, RecurringInvoiceEditNotesScreen_build_closure: function RecurringInvoiceEditNotesScreen_build_closure() { }, RecurringInvoiceEditNotesVM: function RecurringInvoiceEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure: function RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.recurringInvoiceUIState, recurringInvoice = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t1).userCompany.company; t2 = t2.editingItemIndex; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = J.$index$asx(t4._list, t3).recurringInvoiceState.map; t4 = recurringInvoice.id; J.$index$asx(t3._map$_map, t4); return new Q.RecurringInvoiceEditVM(state, t1, recurringInvoice, t2, new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure(store, state), new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0(store, recurringInvoice), new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1(state, store)); }, RecurringInvoiceEditScreen: function RecurringInvoiceEditScreen(t0) { this.key = t0; }, RecurringInvoiceEditScreen_build_closure0: function RecurringInvoiceEditScreen_build_closure0() { }, RecurringInvoiceEditScreen_build_closure: function RecurringInvoiceEditScreen_build_closure() { }, RecurringInvoiceEditVM: function RecurringInvoiceEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure(t0) { this.localization = t0; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.recurringInvoice = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1() { }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure(t0) { this.error = t0; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.recurringInvoice = t1; }, RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1: function RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, TaskView: function TaskView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _TaskViewState: function _TaskViewState(t0, t1) { var _ = this; _._task_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaskViewState_build_closure: function _TaskViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.task = t2; }, _TaskViewState_build__closure: function _TaskViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskViewState_build__closure0: function _TaskViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, __TaskViewState_State_SingleTickerProviderStateMixin: function __TaskViewState_State_SingleTickerProviderStateMixin() { }, TaskStatusEditVM_TaskStatusEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, taskStatus = t1.taskStatusUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).taskStatusState.map; t5 = taskStatus.id; J.$index$asx(t4._map$_map, t5); return new Q.TaskStatusEditVM(taskStatus, t3.$index(t2, t1).userCompany.company, new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure(store), new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0(store, state), new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1(store, state), state); }, TaskStatusEditScreen: function TaskStatusEditScreen(t0) { this.key = t0; }, TaskStatusEditScreen_build_closure0: function TaskStatusEditScreen_build_closure0() { }, TaskStatusEditScreen_build_closure: function TaskStatusEditScreen_build_closure() { }, TaskStatusEditVM: function TaskStatusEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.taskStatus = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure(t0) { this.store = t0; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0: function TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore__closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, TaskStatusEditVM_TaskStatusEditVM$fromStore___closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.taskStatus = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0: function TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0() { }, TaskStatusEditVM_TaskStatusEditVM$fromStore____closure: function TaskStatusEditVM_TaskStatusEditVM$fromStore____closure(t0) { this.error = t0; }, VendorEditDetails: function VendorEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditDetailsState: function VendorEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._vendor_edit_details$_numberController = t0; _._vendor_edit_details$_nameController = t1; _._vendor_edit_details$_idNumberController = t2; _._vendor_edit_details$_vatNumberController = t3; _._vendor_edit_details$_websiteController = t4; _._vendor_edit_details$_phoneController = t5; _._vendor_edit_details$_custom1Controller = t6; _._vendor_edit_details$_custom2Controller = t7; _._vendor_edit_details$_custom3Controller = t8; _._vendor_edit_details$_custom4Controller = t9; _._vendor_edit_details$_debouncer = t10; _._widget = _._vendor_edit_details$_controllers = null; _._debugLifecycleState = t11; _._framework$_element = null; }, VendorEditDetailsState_didChangeDependencies_closure: function VendorEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditDetailsState_didChangeDependencies_closure0: function VendorEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditDetailsState_dispose_closure: function VendorEditDetailsState_dispose_closure(t0) { this.$this = t0; }, VendorEditDetailsState__onChanged_closure: function VendorEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, VendorEditDetailsState__onChanged_closure0: function VendorEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditDetailsState_build_closure: function VendorEditDetailsState_build_closure(t0) { this.context = t0; }, VendorEditDetailsState_build_closure0: function VendorEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditDetailsState_build__closure: function VendorEditDetailsState_build__closure(t0) { this.userId = t0; }, VendorEditFooter: function VendorEditFooter(t0, t1) { this.vendor = t0; this.key = t1; }, VendorEditFooter_build_closure: function VendorEditFooter_build_closure(t0) { this.store = t0; }, _platform: function() { if ($._manualDartRegistrationNeeded) $._manualDartRegistrationNeeded = false; return $.$get$PathProviderPlatform__instance(); }, getApplicationDocumentsDirectory: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Directory), $async$returnValue, path; var $async$getApplicationDocumentsDirectory = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(Q._platform().getApplicationDocumentsPath$0(), $async$getApplicationDocumentsDirectory); case 3: // returning from await. path = $async$result; if (path == null) throw H.wrapException(new Q.MissingPlatformDirectoryException("Unable to get application documents directory")); $async$returnValue = P.Directory_Directory(path); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getApplicationDocumentsDirectory, $async$completer); }, MissingPlatformDirectoryException: function MissingPlatformDirectoryException(t0) { this.message = t0; }, QrBitBuffer: function QrBitBuffer(t0) { this._bit_buffer$_buffer = t0; this._bit_buffer$_length = 0; }, _QrBitBuffer_Object_ListMixin: function _QrBitBuffer_Object_ListMixin() { }, ValueWrapper: function ValueWrapper(t0, t1) { this.value = t0; this.$ti = t1; }, Version_parse: function(versionString) { var t2, parts, major, minor, patch, preReleaseString, preReleaseList, build, t3, _null = null, t1 = versionString == null ? _null : C.JSString_methods.trim$0(versionString).length === 0; if (t1 !== false) throw H.wrapException(P.FormatException$("Cannot parse empty string into version", _null, _null)); t1 = $.$get$Version__versionRegex(); versionString.toString; t2 = t1._nativeRegExp; if (!t2.test(versionString)) throw H.wrapException(P.FormatException$("Not a properly formatted version string", _null, _null)); t1 = t1.firstMatch$1(versionString)._match; parts = t1[1].split("."); major = P.int_parse(parts[0], _null); t2 = parts.length; if (t2 > 1) { minor = P.int_parse(parts[1], _null); patch = t2 > 2 ? P.int_parse(parts[2], _null) : _null; } else { patch = _null; minor = patch; } preReleaseString = t1[3]; if (preReleaseString == null) preReleaseString = ""; t2 = type$.JSArray_String; preReleaseList = H.setRuntimeTypeInfo([], t2); if (C.JSString_methods.trim$0(preReleaseString).length !== 0) preReleaseList = H.setRuntimeTypeInfo(preReleaseString.split("."), t2); build = t1[5]; if (build == null) build = ""; t1 = minor == null ? 0 : minor; t2 = patch == null ? 0 : patch; t3 = new Q.Version(major, t1, t2, build, preReleaseList); t3.Version$5$build$preRelease(major, t1, t2, build, preReleaseList); return t3; }, Version__compare: function(a, b) { var t3, preReleaseMax, i, aNumeric, bNumeric, t1 = a.major, t2 = b.major; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a.minor; t2 = b.minor; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a.patch; t2 = b.patch; if (t1 > t2) return 1; if (t1 < t2) return -1; t1 = a._preRelease; t2 = type$.String; if (P.List_List$from(t1, true, t2).length === 0) if (P.List_List$from(b._preRelease, true, t2).length === 0) return 0; else return 1; else { t3 = b._preRelease; if (P.List_List$from(t3, true, t2).length === 0) return -1; else { preReleaseMax = P.List_List$from(t1, true, t2).length; if (P.List_List$from(t3, true, t2).length > P.List_List$from(t1, true, t2).length) preReleaseMax = P.List_List$from(t3, true, t2).length; for (i = 0; i < preReleaseMax; ++i) { if (P.List_List$from(t3, true, t2).length <= i) return 1; else if (P.List_List$from(t1, true, t2).length <= i) return -1; if (J.$eq$(P.List_List$from(t1, true, t2)[i], P.List_List$from(t3, true, t2)[i])) continue; aNumeric = Q.Version__isNumeric(P.List_List$from(t1, true, t2)[i]); bNumeric = Q.Version__isNumeric(P.List_List$from(t3, true, t2)[i]); if (aNumeric && bNumeric) if (P.double_parse(P.List_List$from(t1, true, t2)[i]) > P.double_parse(P.List_List$from(t3, true, t2)[i])) return 1; else return -1; else if (bNumeric) return 1; else if (aNumeric) return -1; else { t1 = P.List_List$from(t1, true, t2)[i]; t2 = P.List_List$from(t3, true, t2)[i]; t1.toString; if (typeof t2 != "string") H.throwExpression(H.argumentErrorValue(t2)); if (J.$eq$(t1, t2)) t1 = 0; else t1 = t1 < t2 ? -1 : 1; return t1; } } } } return 0; }, Version__isNumeric: function(s) { if (s == null) return false; return H.Primitives_parseDouble(s) != null; }, Version: function Version(t0, t1, t2, t3, t4) { var _ = this; _.major = t0; _.minor = t1; _.patch = t2; _.build = t3; _._preRelease = t4; }, _PlatformAdaptiveIcons__isCupertino: function() { switch (U.defaultTargetPlatform()) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return false; case C.TargetPlatform_2: case C.TargetPlatform_4: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, pickFile: function(allowedExtensions, fileIndex, fileType) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_MultipartFile), $async$returnValue, t1; var $async$pickFile = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = Q._pickFile(allowedExtensions, fileIndex, fileType); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$pickFile, $async$completer); }, _pickFile: function(allowedExtensions, fileIndex, fileType) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_MultipartFile), $async$returnValue, file, t1, t2, result; var $async$_pickFile = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$FilePicker__instance(); t2 = fileType == null ? C.FileType_5 : fileType; $async$goto = 3; return P._asyncAwait(t1.pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData(true, false, allowedExtensions == null ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : allowedExtensions, t2, true), $async$_pickFile); case 3: // returning from await. result = $async$result; if (result != null && J.get$isNotEmpty$asx(result.files)) { file = J.get$first$ax(result.files); t1 = fileIndex == null ? "file" : fileIndex; $async$returnValue = K.MultipartFile_MultipartFile$fromBytes(t1, file.bytes, file.name); // goto return $async$goto = 1; break; } $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_pickFile, $async$completer); }, getEntityActionIcon: function(entityAction) { switch (entityAction) { case C.EntityAction_edit: return C.IconData_57882_MaterialIcons_null_false; case C.EntityAction_viewStatement: case C.EntityAction_viewPdf: case C.EntityAction_download: return C.IconData_58560_MaterialIcons_null_false; case C.EntityAction_clientPortal: return C.IconData_57712_MaterialIcons_null_false; case C.EntityAction_clone: case C.EntityAction_cloneToOther: case C.EntityAction_cloneToInvoice: case C.EntityAction_cloneToExpense: case C.EntityAction_cloneToQuote: case C.EntityAction_cloneToCredit: case C.EntityAction_cloneToRecurring: return C.IconData_57750_MaterialIcons_null_false; case C.EntityAction_markSent: return C.IconData_58608_MaterialIcons_null_false; case C.EntityAction_markPaid: return C.IconData_58497_MaterialIcons_null_false; case C.EntityAction_bulkEmailCredit: case C.EntityAction_bulkEmailInvoice: case C.EntityAction_bulkEmailQuote: case C.EntityAction_emailQuote: case C.EntityAction_emailInvoice: case C.EntityAction_emailCredit: case C.EntityAction_emailPayment: case C.EntityAction_resendInvite: return C.IconData_58737_MaterialIcons_null_true; case C.EntityAction_archive: return C.IconData_57489_MaterialIcons_null_false; case C.EntityAction_delete: return C.IconData_57785_MaterialIcons_null_false; case C.EntityAction_remove: return C.IconData_58648_MaterialIcons_null_false; case C.EntityAction_restore: return C.IconData_58676_MaterialIcons_null_false; case C.EntityAction_convertToInvoice: return C.IconData_57744_MaterialIcons_null_false; case C.EntityAction_approve: return C.IconData_57690_MaterialIcons_null_false; case C.EntityAction_newInvoice: case C.EntityAction_newExpense: case C.EntityAction_newTask: case C.EntityAction_newClient: case C.EntityAction_newPayment: case C.EntityAction_newQuote: case C.EntityAction_newCredit: case C.EntityAction_newRecurringInvoice: case C.EntityAction_newRecurringQuote: case C.EntityAction_newRecurringExpense: case C.EntityAction_invoiceTask: case C.EntityAction_invoiceExpense: case C.EntityAction_invoiceProject: return C.IconData_57424_MaterialIcons_null_false; case C.EntityAction_resume: case C.EntityAction_start: return C.IconData_58571_MaterialIcons_null_false; case C.EntityAction_stop: return C.IconData_58886_MaterialIcons_null_false; case C.EntityAction_settings: return C.IconData_58751_MaterialIcons_null_false; case C.EntityAction_refund: case C.EntityAction_cancel: return C.IconData_58648_MaterialIcons_null_false; case C.EntityAction_reverse: return C.IconData_59020_MaterialIcons_null_true; case C.EntityAction_copy: return C.IconData_57744_MaterialIcons_null_false; case C.EntityAction_apply: return C.IconData_58497_MaterialIcons_null_false; default: return null; } }, getEntityIcon: function(entityType) { switch (entityType) { case C.EntityType_dashboard: return C._MdiIconData_rJg; case C.EntityType_reports: return C._MdiIconData_egL1; case C.EntityType_settings: return C._MdiIconData_AmO; case C.EntityType_product: return C._MdiIconData_7T12; case C.EntityType_project: return C._MdiIconData_2Nv0; case C.EntityType_client: return C.IconData_58502_MaterialIcons_null_false; case C.EntityType_invoice: return C._MdiIconData_2C7; case C.EntityType_recurringInvoice: case C.EntityType_recurringExpense: case C.EntityType_recurringQuote: return C._MdiIconData_90Y; case C.EntityType_payment: return C._MdiIconData_dEB; case C.EntityType_companyGateway: return C._MdiIconData_ifn0; case C.EntityType_quote: return C._MdiIconData_sUr0; case C.EntityType_vendor: return C.IconData_57627_MaterialIcons_null_false; case C.EntityType_expense: return C._MdiIconData_jVE; case C.EntityType_task: return C._MdiIconData_90Y0; case C.EntityType_group: return C._MdiIconData_I2F; case C.EntityType_user: return C.IconData_58513_MaterialIcons_null_false; case C.EntityType_credit: return C._MdiIconData_yrt; case C.EntityType_design: return C._MdiIconData_atK; case C.EntityType_paymentTerm: return C._MdiIconData_dEB0; case C.EntityType_token: return C._MdiIconData_wMy0; case C.EntityType_webhook: return C._MdiIconData_FFB; case C.EntityType_expenseCategory: case C.EntityType_taskStatus: return C._MdiIconData_yvL; case C.EntityType_subscription: return C._MdiIconData_egL2; default: return C._MdiIconData_UEg; } }, getFileTypeIcon: function(type) { switch (type) { case "pdf": return C._MdiIconData_agj; case "psd": return C._MdiIconData_jVE; case "txt": return C._MdiIconData_Skt0; case "doc": case "docx": return C._MdiIconData_43h0; case "xls": case "xlsx": return C._MdiIconData_UEg0; case "ppt": case "pptt": return C._MdiIconData_MO92; default: return null; } }, getSettingIcon: function(section) { switch (section) { case "company_details": return C.IconData_57627_MaterialIcons_null_false; case "user_details": return C.IconData_58513_MaterialIcons_null_false; case "localization": return C.IconData_58214_MaterialIcons_null_false; case "online_payments": case "company_gateways": return C._MdiIconData_dEB; case "tax_settings": case "tax_settings_rates": return C._MdiIconData_egL; case "import_export": return C.IconData_58168_MaterialIcons_null_false; case "device_settings": return C.IconData_58751_MaterialIcons_null_false; case "group_settings": return C._MdiIconData_I2F; case "generated_numbers": return C._MdiIconData_MO90; case "custom_fields": return C._MdiIconData_Skt; case "custom_designs": return C._MdiIconData_atK; case "invoice_design": return C._MdiIconData_EuK0; case "workflow_settings": return C._MdiIconData_IAW; case "client_portal": return C._MdiIconData_Qa6; case "buy_now_buttons": return C._MdiIconData_FFB; case "email_settings": return C.IconData_58307_MaterialIcons_null_false; case "templates_and_reminders": return C._MdiIconData_CtR; case "credit_cards_and_banks": return C._MdiIconData_FFB; case "data_visualizations": return C._MdiIconData_FFB; case "user_management": return C.IconData_58502_MaterialIcons_null_false; case "account_management": return C._MdiIconData_GDY; case "product_settings": return Q.getEntityIcon(C.EntityType_product); case "expense_settings": case "expense_category": return Q.getEntityIcon(C.EntityType_expense); case "task_settings": case "task_status": return Q.getEntityIcon(C.EntityType_task); case "subscriptions": return Q.getEntityIcon(C.EntityType_subscription); default: return null; } }, getActivityIcon: function(categoryId) { switch (categoryId) { case 2: return C.IconData_57898_MaterialIcons_null_false; case 1: return C.IconData_57759_MaterialIcons_null_false; case 4: return C.IconData_58560_MaterialIcons_null_false; case 5: return C.IconData_58729_MaterialIcons_null_false; case 3: return C._MdiIconData_FFB; default: return C._MdiIconData_UEg; } } }, Y = { HuffmanTable$: function(lengths) { var t1 = new Y.HuffmanTable(); t1.HuffmanTable$1(lengths); return t1; }, HuffmanTable: function HuffmanTable() { this.__HuffmanTable_table = $; this.maxCodeLength = 0; this.minCodeLength = 2147483647; }, $jc: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, $jf: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, BuiltValueNullFieldError$: function(type, field) { return new Y.BuiltValueNullFieldError(type, field); }, BuiltValueNestedFieldError$: function(type, field, error) { return new Y.BuiltValueNestedFieldError(type, field, error); }, EnumClass: function EnumClass() { }, newBuiltValueToStringHelper_closure: function newBuiltValueToStringHelper_closure() { }, IndentingBuiltValueToStringHelper: function IndentingBuiltValueToStringHelper(t0) { this._result = t0; }, BuiltValueNullFieldError: function BuiltValueNullFieldError(t0, t1) { this.type = t0; this.field = t1; }, BuiltValueNestedFieldError: function BuiltValueNestedFieldError(t0, t1, t2) { this.type = t0; this.field = t1; this.error = t2; }, _getRawName: function(type) { var $name = J.toString$0$(type), genericsStart = J.indexOf$1$asx($name, "<"); return genericsStart === -1 ? $name : C.JSString_methods.substring$2($name, 0, genericsStart); }, BuiltJsonSerializers: function BuiltJsonSerializers(t0, t1, t2, t3, t4) { var _ = this; _._typeToSerializer = t0; _._wireNameToSerializer = t1; _._typeNameToSerializer = t2; _.builderFactories = t3; _.serializerPlugins = t4; }, BuiltJsonSerializersBuilder: function BuiltJsonSerializersBuilder(t0, t1, t2, t3, t4) { var _ = this; _._typeToSerializer = t0; _._wireNameToSerializer = t1; _._typeNameToSerializer = t2; _._builderFactories = t3; _._plugins = t4; }, NoneDrawStrategy$: function(chartContext, graphicsFactory, $D) { var t1, t2; $.$get$StyleFactory__styleFactory().toString; graphicsFactory.toString; t1 = new X.LineStyle(); t1.color = C.Color_ePM; t1.strokeWidth = 1; t2 = graphicsFactory.createTextPaint$0(); t2.color = C.Color_WL1; t2.fontSize = 0; return new Y.NoneDrawStrategy(t1, t2, $D._eval$1("NoneDrawStrategy<0>")); }, NoneDrawStrategy: function NoneDrawStrategy(t0, t1, t2) { this.axisLineStyle = t0; this.noneTextStyle = t1; this.$ti = t2; }, NoneDrawStrategy_decorateTicks_closure: function NoneDrawStrategy_decorateTicks_closure(t0) { this.$this = t0; }, TimeStepIteratorFactory: function TimeStepIteratorFactory() { }, BaseLegendContentBuilder: function BaseLegendContentBuilder() { }, BaseLegendContentBuilder_build_closure: function BaseLegendContentBuilder_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.legend = t1; _.context = t2; _.showMeasures = t3; }, TabularLegendContentBuilder: function TabularLegendContentBuilder(t0, t1) { this.legendEntryLayout = t0; this.legendLayout = t1; }, HeapPriorityQueue: function HeapPriorityQueue(t0, t1, t2) { var _ = this; _.comparison = t0; _._queue = t1; _._modificationCount = _._priority_queue$_length = 0; _.$ti = t2; }, TweenSequenceItem$: function(tween, weight, $T) { return new Y.TweenSequenceItem(tween, weight, $T._eval$1("TweenSequenceItem<0>")); }, TweenSequence: function TweenSequence(t0, t1, t2) { this._tween_sequence$_items = t0; this._intervals = t1; this.$ti = t2; }, TweenSequenceItem: function TweenSequenceItem(t0, t1, t2) { this.tween = t0; this.weight = t1; this.$ti = t2; }, _Interval: function _Interval(t0, t1) { this.start = t0; this.end = t1; }, TextTreeConfiguration$: function(addBlankLineIfNoChildren, afterDescriptionIfBody, afterName, afterProperties, beforeName, beforeProperties, bodyIndent, footer, isBlankLineBetweenPropertiesAndChildren, isNameOnOwnLine, lineBreak, lineBreakProperties, linkCharacter, mandatoryFooter, prefixLastChildLineOne, prefixLineOne, prefixOtherLines, prefixOtherLinesRootNode, propertyPrefixIfChildren, propertyPrefixNoChildren, propertySeparator, showChildren, suffixLineOne) { return new Y.TextTreeConfiguration(prefixLineOne, suffixLineOne, prefixOtherLines, prefixLastChildLineOne, prefixOtherLinesRootNode, propertyPrefixIfChildren, propertyPrefixNoChildren, linkCharacter, C.JSString_methods.$mul(" ", linkCharacter.length), lineBreak, lineBreakProperties, beforeName, afterName, afterDescriptionIfBody, beforeProperties, afterProperties, propertySeparator, bodyIndent, showChildren, addBlankLineIfNoChildren, isNameOnOwnLine, footer, mandatoryFooter, isBlankLineBetweenPropertiesAndChildren); }, _PrefixedStringBuilder__wordWrapLine: function(message, wrapRanges, width, otherLineOffset, startOffset) { return Y._PrefixedStringBuilder__wordWrapLine$body(message, wrapRanges, width, otherLineOffset, startOffset); }, _PrefixedStringBuilder__wordWrapLine$body: function($async$message, $async$wrapRanges, $async$width, $async$otherLineOffset, $async$startOffset) { return P._makeSyncStarIterable(function() { var message = $async$message, wrapRanges = $async$wrapRanges, width = $async$width, otherLineOffset = $async$otherLineOffset, startOffset = $async$startOffset; var $async$goto = 0, $async$handler = 2, $async$currentError, startForLengthCalculations, _lastWordStart_get, _lastWordStart_set, noWrap, addPrefix, index, mode, lastWordEnd, start, t2, _box_0, t1; return function $async$_PrefixedStringBuilder__wordWrapLine($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; t1 = message.length; $async$goto = t1 + startOffset < width ? 3 : 4; break; case 3: // then $async$goto = 5; return message; case 5: // after yield // goto return $async$goto = 1; break; case 4: // join startForLengthCalculations = -startOffset; _box_0._lastWordStart = $; _lastWordStart_get = new Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_get(_box_0); _lastWordStart_set = new Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_set(_box_0); _box_0.currentChunk = 0; noWrap = new Y._PrefixedStringBuilder__wordWrapLine_noWrap(_box_0, wrapRanges); addPrefix = false, index = 0, mode = C._WordWrapParseMode_0, lastWordEnd = null, start = 0; case 6: // for condition // trivial condition case 8: // switch switch (mode) { case C._WordWrapParseMode_0: // goto case $async$goto = 10; break; case C._WordWrapParseMode_1: // goto case $async$goto = 11; break; case C._WordWrapParseMode_2: // goto case $async$goto = 12; break; default: // goto default $async$goto = 13; break; } break; case 10: // case while (true) { if (!(index < t1 && message[index] === " ")) break; ++index; } _lastWordStart_set.call$1(index); mode = C._WordWrapParseMode_1; // goto after switch $async$goto = 9; break; case 11: // case while (true) { if (index < t1) t2 = message[index] !== " " || noWrap.call$1(index); else t2 = false; if (!t2) break; ++index; } mode = C._WordWrapParseMode_2; // goto after switch $async$goto = 9; break; case 12: // case t2 = index - startForLengthCalculations; $async$goto = t2 > width || index === t1 ? 14 : 16; break; case 14: // then if (t2 <= width || lastWordEnd == null) lastWordEnd = index; $async$goto = 17; return C.JSString_methods.substring$2(message, start, lastWordEnd); case 17: // after yield if (lastWordEnd >= t1) { // goto return $async$goto = 1; break; } if (lastWordEnd === index) { while (true) { if (!(index < t1 && message[index] === " ")) break; ++index; } start = index; mode = C._WordWrapParseMode_1; } else { start = _lastWordStart_get.call$0(); mode = C._WordWrapParseMode_2; } startForLengthCalculations = start - otherLineOffset; addPrefix = true; lastWordEnd = null; // goto join $async$goto = 15; break; case 16: // else lastWordEnd = index; mode = C._WordWrapParseMode_0; case 15: // join // goto after switch $async$goto = 9; break; case 13: // default throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); case 9: // after switch // goto for condition $async$goto = 6; break; case 7: // after for case 1: // return return P._IterationMarker_endOfIteration(); case 2: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.String); }, DiagnosticsNode_DiagnosticsNode$message: function(message, allowWrap, style) { var _null = null; return Y.DiagnosticsProperty$("", _null, allowWrap, C.C__NoDefaultValue, message, false, _null, _null, C.DiagnosticLevel_3, _null, false, false, true, style, _null, type$.void); }, DiagnosticsProperty$: function($name, value, allowWrap, defaultValue, description, expandableValue, ifEmpty, ifNull, level, linePrefix, missingIfNull, showName, showSeparator, style, tooltip, $T) { var t1; if (ifNull == null) t1 = missingIfNull ? "MISSING" : null; else t1 = ifNull; return new Y.DiagnosticsProperty(description, false, allowWrap, t1, ifEmpty, tooltip, missingIfNull, value, true, defaultValue, level, null, $name, showSeparator, showName, linePrefix, style, $T._eval$1("DiagnosticsProperty<0>")); }, DiagnosticableTreeNode$: function($name, style, value) { return new Y.DiagnosticableTreeNode(value, $name, true, true, null, style); }, shortHash: function(object) { var t1 = J.get$hashCode$(object); t1.toString; return C.JSString_methods.padLeft$2(C.JSInt_methods.toRadixString$1(t1 & 1048575, 16), 5, "0"); }, describeEnum: function(enumEntry) { var description = J.toString$0$(enumEntry); return C.JSString_methods.substring$1(description, J.indexOf$1$asx(description, ".") + 1); }, DiagnosticLevel: function DiagnosticLevel(t0, t1) { this.index = t0; this._diagnostics$_name = t1; }, DiagnosticsTreeStyle: function DiagnosticsTreeStyle(t0) { this._diagnostics$_name = t0; }, TextTreeConfiguration: function TextTreeConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.prefixLineOne = t0; _.suffixLineOne = t1; _.prefixOtherLines = t2; _.prefixLastChildLineOne = t3; _.prefixOtherLinesRootNode = t4; _.propertyPrefixIfChildren = t5; _.propertyPrefixNoChildren = t6; _.linkCharacter = t7; _.childLinkSpace = t8; _.lineBreak = t9; _.lineBreakProperties = t10; _.beforeName = t11; _.afterName = t12; _.afterDescriptionIfBody = t13; _.beforeProperties = t14; _.afterProperties = t15; _.propertySeparator = t16; _.bodyIndent = t17; _.showChildren = t18; _.addBlankLineIfNoChildren = t19; _.isNameOnOwnLine = t20; _.footer = t21; _.mandatoryFooter = t22; _.isBlankLineBetweenPropertiesAndChildren = t23; }, _WordWrapParseMode: function _WordWrapParseMode(t0) { this._diagnostics$_name = t0; }, _PrefixedStringBuilder: function _PrefixedStringBuilder(t0, t1, t2, t3, t4, t5) { var _ = this; _.prefixLineOne = t0; _._prefixOtherLines = t1; _._nextPrefixOtherLines = null; _.wrapWidth = t2; _._diagnostics$_buffer = t3; _._currentLine = t4; _._wrappableRanges = t5; _._numLines = 0; }, _PrefixedStringBuilder__wordWrapLine__lastWordStart_set: function _PrefixedStringBuilder__wordWrapLine__lastWordStart_set(t0) { this._box_0 = t0; }, _PrefixedStringBuilder__wordWrapLine__lastWordStart_get: function _PrefixedStringBuilder__wordWrapLine__lastWordStart_get(t0) { this._box_0 = t0; }, _PrefixedStringBuilder__wordWrapLine_noWrap: function _PrefixedStringBuilder__wordWrapLine_noWrap(t0, t1) { this._box_0 = t0; this.wrapRanges = t1; }, _NoDefaultValue: function _NoDefaultValue() { }, TextTreeRenderer: function TextTreeRenderer(t0, t1, t2, t3) { var _ = this; _._wrapWidth = t0; _._wrapWidthProperties = t1; _._minLevel = t2; _._maxDescendentsTruncatableNode = t3; }, TextTreeRenderer__debugRender_visitor: function TextTreeRenderer__debugRender_visitor(t0, t1) { this._box_0 = t0; this.descendants = t1; }, TextTreeRenderer__debugRender_closure: function TextTreeRenderer__debugRender_closure(t0) { this.$this = t0; }, DiagnosticsNode: function DiagnosticsNode() { }, DiagnosticsProperty: function DiagnosticsProperty(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; _.$ti = t17; }, DiagnosticableNode: function DiagnosticableNode() { }, DiagnosticableTreeNode: function DiagnosticableTreeNode(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _._cachedBuilder = null; _.name = t1; _.showSeparator = t2; _.showName = t3; _.linePrefix = t4; _.style = t5; }, DiagnosticPropertiesBuilder: function DiagnosticPropertiesBuilder(t0, t1) { this.properties = t0; this.defaultDiagnosticsTreeStyle = t1; this.emptyBodyDescription = null; }, Diagnosticable: function Diagnosticable() { }, DiagnosticableTree: function DiagnosticableTree() { }, DiagnosticableTreeMixin: function DiagnosticableTreeMixin() { }, DiagnosticsBlock: function DiagnosticsBlock() { }, _DiagnosticableTree_Object_Diagnosticable: function _DiagnosticableTree_Object_Diagnosticable() { }, DialogTheme: function DialogTheme(t0, t1, t2, t3, t4) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.shape = t2; _.titleTextStyle = t3; _.contentTextStyle = t4; }, _DialogTheme_Object_Diagnosticable: function _DialogTheme_Object_Diagnosticable() { }, InkHighlight: function InkHighlight(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._ink_highlight$_shape = t0; _._ink_highlight$_radius = t1; _._ink_highlight$_borderRadius = t2; _._ink_highlight$_customBorder = t3; _._rectCallback = t4; _._ink_highlight$_textDirection = t5; _.__InkHighlight__alphaController = _.__InkHighlight__alpha = $; _._active = true; _._ink_well$_color = t6; _._material$_controller = t7; _.referenceBox = t8; _.onRemoved = t9; _._material$_debugDisposed = false; }, Radio$: function(activeColor, autofocus, groupValue, materialTapTargetSize, onChanged, toggleable, value, $T) { return new Y.Radio(value, groupValue, onChanged, toggleable, activeColor, materialTapTargetSize, false, null, $T._eval$1("Radio<0>")); }, Radio: function Radio(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.value = t0; _.groupValue = t1; _.onChanged = t2; _.toggleable = t3; _.activeColor = t4; _.materialTapTargetSize = t5; _.autofocus = t6; _.key = t7; _.$ti = t8; }, _RadioState: function _RadioState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._radio$_painter = t0; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; _.$ti = t15; }, _RadioState__widgetFillColor_closure: function _RadioState__widgetFillColor_closure(t0) { this.$this = t0; }, _RadioState__defaultFillColor_closure: function _RadioState__defaultFillColor_closure(t0) { this.themeData = t0; }, _RadioState_build_closure: function _RadioState_build_closure(t0, t1) { this.$this = t0; this.themeData = t1; }, _RadioPainter: function _RadioPainter(t0) { var _ = this; _._isHovered = _._isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._activeColor = _._reactionHoverFade = _._reactionFocusFade = _._toggleable$_reaction = _._toggleable$_position = null; _.ChangeNotifier__listeners = t0; }, __RadioState_State_TickerProviderStateMixin: function __RadioState_State_TickerProviderStateMixin() { }, __RadioState_State_TickerProviderStateMixin_ToggleableStateMixin: function __RadioState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, BorderSide_merge: function(a, b) { var t1 = a.style, aIsNone = t1 === C.BorderStyle_0 && a.width === 0, bIsNone = b.style === C.BorderStyle_0 && b.width === 0; if (aIsNone && bIsNone) return C.BorderSide_m7u; if (aIsNone) return b; if (bIsNone) return a; return new Y.BorderSide(a.color, a.width + b.width, t1); }, BorderSide_canMerge: function(a, b) { var t2, t1 = a.style; if (!(t1 === C.BorderStyle_0 && a.width === 0)) t2 = b.style === C.BorderStyle_0 && b.width === 0; else t2 = true; if (t2) return true; return t1 === b.style && J.$eq$(a.color, b.color); }, BorderSide_lerp: function(a, b, t) { var t1, t2, t3, colorA, colorB, _s80_ = string$.x60null_c; if (t === 0) return a; if (t === 1) return b; t1 = P.lerpDouble(a.width, b.width, t); t1.toString; if (t1 < 0) return C.BorderSide_m7u; t2 = a.style; t3 = b.style; if (t2 === t3) { t3 = P.Color_lerp(a.color, b.color, t); t3.toString; return new Y.BorderSide(t3, t1, t2); } switch (t2) { case C.BorderStyle_1: colorA = a.color; break; case C.BorderStyle_0: t2 = a.color; colorA = P.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (t3) { case C.BorderStyle_1: colorB = b.color; break; case C.BorderStyle_0: t2 = b.color; colorB = P.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t2 = P.Color_lerp(colorA, colorB, t); t2.toString; return new Y.BorderSide(t2, t1, C.BorderStyle_1); }, ShapeBorder_lerp: function(a, b, t) { var t1, result = b != null ? b.lerpFrom$2(a, t) : null; if (result == null && a != null) result = a.lerpTo$2(b, t); if (result == null) t1 = t < 0.5 ? a : b; else t1 = result; return t1; }, _CompoundBorder_lerp: function(a, b, t) { var index, localA, localB, t1, localResult, aList = a instanceof Y._CompoundBorder ? a.borders : H.setRuntimeTypeInfo([a], type$.JSArray_nullable_ShapeBorder), bList = b instanceof Y._CompoundBorder ? b.borders : H.setRuntimeTypeInfo([b], type$.JSArray_nullable_ShapeBorder), results = H.setRuntimeTypeInfo([], type$.JSArray_ShapeBorder), $length = Math.max(aList.length, bList.length); for (index = 0; index < $length; ++index) { localA = index < aList.length ? aList[index] : null; localB = index < bList.length ? bList[index] : null; t1 = localA != null; if (t1 && localB != null) { localResult = localA.lerpTo$2(localB, t); if (localResult == null) localResult = localB.lerpFrom$2(localA, t); if (localResult != null) { results.push(localResult); continue; } } if (localB != null) results.push(localB.scale$1(0, t)); if (t1) results.push(localA.scale$1(0, 1 - t)); } return new Y._CompoundBorder(results); }, paintBorder: function(canvas, rect, bottom, left, right, $top) { var path, t2, t3, t4, _s80_ = string$.x60null_c, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$strokeWidth(0); path = P.Path_Path(); switch ($top.style) { case C.BorderStyle_1: paint.set$color(0, $top.color); path.reset$0(0); t1 = rect.left; t2 = rect.top; path.moveTo$2(0, t1, t2); t3 = rect.right; path.lineTo$2(0, t3, t2); t4 = $top.width; if (t4 === 0) paint.set$style(0, C.PaintingStyle_1); else { paint.set$style(0, C.PaintingStyle_0); t2 += t4; path.lineTo$2(0, t3 - right.width, t2); path.lineTo$2(0, t1 + left.width, t2); } canvas.drawPath$2(0, path, paint); break; case C.BorderStyle_0: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (right.style) { case C.BorderStyle_1: paint.set$color(0, right.color); path.reset$0(0); t1 = rect.right; t2 = rect.top; path.moveTo$2(0, t1, t2); t3 = rect.bottom; path.lineTo$2(0, t1, t3); t4 = right.width; if (t4 === 0) paint.set$style(0, C.PaintingStyle_1); else { paint.set$style(0, C.PaintingStyle_0); t1 -= t4; path.lineTo$2(0, t1, t3 - bottom.width); path.lineTo$2(0, t1, t2 + $top.width); } canvas.drawPath$2(0, path, paint); break; case C.BorderStyle_0: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (bottom.style) { case C.BorderStyle_1: paint.set$color(0, bottom.color); path.reset$0(0); t1 = rect.right; t2 = rect.bottom; path.moveTo$2(0, t1, t2); t3 = rect.left; path.lineTo$2(0, t3, t2); t4 = bottom.width; if (t4 === 0) paint.set$style(0, C.PaintingStyle_1); else { paint.set$style(0, C.PaintingStyle_0); t2 -= t4; path.lineTo$2(0, t3 + left.width, t2); path.lineTo$2(0, t1 - right.width, t2); } canvas.drawPath$2(0, path, paint); break; case C.BorderStyle_0: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (left.style) { case C.BorderStyle_1: paint.set$color(0, left.color); path.reset$0(0); t1 = rect.left; t2 = rect.bottom; path.moveTo$2(0, t1, t2); t3 = rect.top; path.lineTo$2(0, t1, t3); t4 = left.width; if (t4 === 0) paint.set$style(0, C.PaintingStyle_1); else { paint.set$style(0, C.PaintingStyle_0); t1 += t4; path.lineTo$2(0, t1, t3 + $top.width); path.lineTo$2(0, t1, t2 - bottom.width); } canvas.drawPath$2(0, path, paint); break; case C.BorderStyle_0: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, BorderStyle: function BorderStyle(t0) { this._borders$_name = t0; }, BorderSide: function BorderSide(t0, t1, t2) { this.color = t0; this.width = t1; this.style = t2; }, ShapeBorder: function ShapeBorder() { }, OutlinedBorder: function OutlinedBorder() { }, _CompoundBorder: function _CompoundBorder(t0) { this.borders = t0; }, _CompoundBorder_dimensions_closure: function _CompoundBorder_dimensions_closure() { }, _CompoundBorder_scale_closure: function _CompoundBorder_scale_closure(t0) { this.t = t0; }, _CompoundBorder_toString_closure: function _CompoundBorder_toString_closure() { }, IconTheme$: function(child, data, key) { return new Y.IconTheme(data, child, key); }, IconTheme_merge: function(child, data) { return new T.Builder(new Y.IconTheme_merge_closure(null, data, child), null); }, IconTheme__getInheritedIconThemeData: function(context) { var iconTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$.IconTheme), t1 = iconTheme == null ? null : iconTheme.data; return t1 == null ? C.IconThemeData_Color_4278190080_1_24 : t1; }, IconTheme: function IconTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, IconTheme_merge_closure: function IconTheme_merge_closure(t0, t1, t2) { this.key = t0; this.data = t1; this.child = t2; }, ScrollAwareImageProvider: function ScrollAwareImageProvider(t0, t1, t2) { this.context = t0; this.imageProvider = t1; this.$ti = t2; }, ScrollAwareImageProvider_resolveStreamForKey_closure: function ScrollAwareImageProvider_resolveStreamForKey_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.configuration = t1; _.stream = t2; _.key = t3; _.handleError = t4; }, ScrollAwareImageProvider_resolveStreamForKey__closure: function ScrollAwareImageProvider_resolveStreamForKey__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.configuration = t1; _.stream = t2; _.key = t3; _.handleError = t4; }, ClampingScrollSimulation$: function(position, tolerance, velocity) { var t1 = new Y.ClampingScrollSimulation(position, velocity, tolerance), deceleration = t1._splineDeceleration$1(velocity), t2 = $.$get$ClampingScrollSimulation__kDecelerationRate(); t1.__ClampingScrollSimulation__duration = C.JSNumber_methods.round$0(1000 * Math.exp(deceleration / (t2 - 1))); t1.__ClampingScrollSimulation__distance = 778.3530259679998 * Math.exp(t2 / (t2 - 1) * t1._splineDeceleration$1(velocity)); return t1; }, _NBSample$: function(time, duration) { var tInf, t2, dInf, t1 = new Y._NBSample(), t = time * 1000 / duration, index = C.JSNumber_methods.round$0(C.JSNumber_methods.clamp$2(100 * t, 0, 100)); t1.___NBSample__distanceCoef = 1; t1.___NBSample__velocityCoef = 0; if (index < 100) { tInf = index / 100; t2 = index + 1; dInf = $._NBSample__splinePosition[index]; t1.___NBSample__velocityCoef = ($._NBSample__splinePosition[t2] - dInf) / (t2 / 100 - tInf); t1.___NBSample__distanceCoef = dInf + (t - tInf) * t1.get$_velocityCoef(); } return t1; }, BouncingScrollSimulation: function BouncingScrollSimulation(t0, t1, t2, t3) { var _ = this; _.leadingExtent = t0; _.trailingExtent = t1; _.spring = t2; _.__BouncingScrollSimulation__springTime = _.__BouncingScrollSimulation__springSimulation = _.__BouncingScrollSimulation__frictionSimulation = $; _._timeOffset = 0; _.tolerance = t3; }, ClampingScrollSimulation: function ClampingScrollSimulation(t0, t1, t2) { var _ = this; _.position = t0; _.velocity = t1; _.__ClampingScrollSimulation__distance = _.__ClampingScrollSimulation__duration = $; _.tolerance = t2; }, _NBSample: function _NBSample() { this.___NBSample__distanceCoef = this.___NBSample__velocityCoef = $; }, TextEditingAction: function TextEditingAction() { }, CacheManager: function CacheManager() { }, GlobalCupertinoLocalizations: function GlobalCupertinoLocalizations() { }, _GlobalCupertinoLocalizationsDelegate: function _GlobalCupertinoLocalizationsDelegate() { }, _GlobalCupertinoLocalizationsDelegate_load_closure: function _GlobalCupertinoLocalizationsDelegate_load_closure(t0) { this.locale = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_set: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_set(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_get: function _GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_get(t0) { this._box_0 = t0; }, _GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats: function _GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._fullYearFormat_set = t0; _._dayFormat_set = t1; _._mediumDateFormat_set = t2; _._singleDigitHourFormat_set = t3; _._singleDigitMinuteFormat_set = t4; _._doubleDigitMinuteFormat_set = t5; _._singleDigitSecondFormat_set = t6; _._decimalFormat_set = t7; }, MaterialLocalizationDe$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationDe(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationEn$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationEn(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationEs$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationEs(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationFr$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationFr(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationPt$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationPt(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationSr$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationSr(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZh$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationZh(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHant$: function(compactDateFormat, decimalFormat, fullYearFormat, localeName, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationZhHant(localeName, fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHantHk$: function(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationZhHantHk("zh_Hant_HK", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, MaterialLocalizationZhHantTw$: function(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat) { return new Y.MaterialLocalizationZhHantTw("zh_Hant_TW", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); }, getMaterialTranslation: function(locale, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat) { switch (locale.get$languageCode(locale)) { case "af": return new Y.MaterialLocalizationAf("af", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "am": return new Y.MaterialLocalizationAm("am", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ar": return new Y.MaterialLocalizationAr("ar", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "as": return new Y.MaterialLocalizationAs("as", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "az": return new Y.MaterialLocalizationAz("az", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "be": return new Y.MaterialLocalizationBe("be", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bg": return new Y.MaterialLocalizationBg("bg", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bn": return new Y.MaterialLocalizationBn("bn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "bs": return new Y.MaterialLocalizationBs("bs", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ca": return new Y.MaterialLocalizationCa("ca", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "cs": return new Y.MaterialLocalizationCs("cs", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "da": return new Y.MaterialLocalizationDa("da", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "de": switch (locale.get$countryCode()) { case "CH": return new Y.MaterialLocalizationDeCh("de_CH", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationDe$(compactDateFormat, decimalFormat, fullYearFormat, "de", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "el": return new Y.MaterialLocalizationEl("el", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "en": switch (locale.get$countryCode()) { case "AU": return new Y.MaterialLocalizationEnAu("en_AU", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CA": return new Y.MaterialLocalizationEnCa("en_CA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "GB": return new Y.MaterialLocalizationEnGb("en_GB", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "IE": return new Y.MaterialLocalizationEnIe("en_IE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "IN": return new Y.MaterialLocalizationEnIn("en_IN", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "NZ": return new Y.MaterialLocalizationEnNz("en_NZ", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "SG": return new Y.MaterialLocalizationEnSg("en_SG", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ZA": return new Y.MaterialLocalizationEnZa("en_ZA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationEn$(compactDateFormat, decimalFormat, fullYearFormat, "en", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "es": switch (locale.get$countryCode()) { case "419": return new Y.MaterialLocalizationEs419("es_419", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "AR": return new Y.MaterialLocalizationEsAr("es_AR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "BO": return new Y.MaterialLocalizationEsBo("es_BO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CL": return new Y.MaterialLocalizationEsCl("es_CL", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CO": return new Y.MaterialLocalizationEsCo("es_CO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "CR": return new Y.MaterialLocalizationEsCr("es_CR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "DO": return new Y.MaterialLocalizationEsDo("es_DO", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "EC": return new Y.MaterialLocalizationEsEc("es_EC", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "GT": return new Y.MaterialLocalizationEsGt("es_GT", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "HN": return new Y.MaterialLocalizationEsHn("es_HN", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "MX": return new Y.MaterialLocalizationEsMx("es_MX", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "NI": return new Y.MaterialLocalizationEsNi("es_NI", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PA": return new Y.MaterialLocalizationEsPa("es_PA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PE": return new Y.MaterialLocalizationEsPe("es_PE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PR": return new Y.MaterialLocalizationEsPr("es_PR", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "PY": return new Y.MaterialLocalizationEsPy("es_PY", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "SV": return new Y.MaterialLocalizationEsSv("es_SV", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "US": return new Y.MaterialLocalizationEsUs("es_US", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "UY": return new Y.MaterialLocalizationEsUy("es_UY", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "VE": return new Y.MaterialLocalizationEsVe("es_VE", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationEs$(compactDateFormat, decimalFormat, fullYearFormat, "es", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "et": return new Y.MaterialLocalizationEt("et", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "eu": return new Y.MaterialLocalizationEu("eu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fa": return new Y.MaterialLocalizationFa("fa", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fi": return new Y.MaterialLocalizationFi("fi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fil": return new Y.MaterialLocalizationFil("fil", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "fr": switch (locale.get$countryCode()) { case "CA": return new Y.MaterialLocalizationFrCa("fr_CA", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationFr$(compactDateFormat, decimalFormat, fullYearFormat, "fr", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "gl": return new Y.MaterialLocalizationGl("gl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "gsw": return new Y.MaterialLocalizationGsw("gsw", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "gu": return new Y.MaterialLocalizationGu("gu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "he": return new Y.MaterialLocalizationHe("he", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hi": return new Y.MaterialLocalizationHi("hi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hr": return new Y.MaterialLocalizationHr("hr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hu": return new Y.MaterialLocalizationHu("hu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "hy": return new Y.MaterialLocalizationHy("hy", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "id": return new Y.MaterialLocalizationId("id", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "is": return new Y.MaterialLocalizationIs("is", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "it": return new Y.MaterialLocalizationIt("it", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ja": return new Y.MaterialLocalizationJa("ja", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ka": return new Y.MaterialLocalizationKa("ka", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "kk": return new Y.MaterialLocalizationKk("kk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "km": return new Y.MaterialLocalizationKm("km", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "kn": return new Y.MaterialLocalizationKn("kn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ko": return new Y.MaterialLocalizationKo("ko", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ky": return new Y.MaterialLocalizationKy("ky", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lo": return new Y.MaterialLocalizationLo("lo", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lt": return new Y.MaterialLocalizationLt("lt", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "lv": return new Y.MaterialLocalizationLv("lv", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mk": return new Y.MaterialLocalizationMk("mk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ml": return new Y.MaterialLocalizationMl("ml", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mn": return new Y.MaterialLocalizationMn("mn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "mr": return new Y.MaterialLocalizationMr("mr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ms": return new Y.MaterialLocalizationMs("ms", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "my": return new Y.MaterialLocalizationMy("my", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "nb": return new Y.MaterialLocalizationNb("nb", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ne": return new Y.MaterialLocalizationNe("ne", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "nl": return new Y.MaterialLocalizationNl("nl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "no": return new Y.MaterialLocalizationNo("no", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "or": return new Y.MaterialLocalizationOr("or", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pa": return new Y.MaterialLocalizationPa("pa", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pl": return new Y.MaterialLocalizationPl("pl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ps": return new Y.MaterialLocalizationPs("ps", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "pt": switch (locale.get$countryCode()) { case "PT": return new Y.MaterialLocalizationPtPt("pt_PT", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationPt$(compactDateFormat, decimalFormat, fullYearFormat, "pt", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "ro": return new Y.MaterialLocalizationRo("ro", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ru": return new Y.MaterialLocalizationRu("ru", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "si": return new Y.MaterialLocalizationSi("si", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sk": return new Y.MaterialLocalizationSk("sk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sl": return new Y.MaterialLocalizationSl("sl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sq": return new Y.MaterialLocalizationSq("sq", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sr": switch (null) { case "Cyrl": return new Y.MaterialLocalizationSrCyrl("sr_Cyrl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "Latn": return new Y.MaterialLocalizationSrLatn("sr_Latn", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return Y.MaterialLocalizationSr$(compactDateFormat, decimalFormat, fullYearFormat, "sr", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "sv": return new Y.MaterialLocalizationSv("sv", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "sw": return new Y.MaterialLocalizationSw("sw", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ta": return new Y.MaterialLocalizationTa("ta", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "te": return new Y.MaterialLocalizationTe("te", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "th": return new Y.MaterialLocalizationTh("th", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "tl": return new Y.MaterialLocalizationTl("tl", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "tr": return new Y.MaterialLocalizationTr("tr", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "uk": return new Y.MaterialLocalizationUk("uk", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "ur": return new Y.MaterialLocalizationUr("ur", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "uz": return new Y.MaterialLocalizationUz("uz", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "vi": return new Y.MaterialLocalizationVi("vi", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "zh": switch (null) { case "Hans": return new Y.MaterialLocalizationZhHans("zh_Hans", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); case "Hant": switch (locale.get$countryCode()) { case "HK": return Y.MaterialLocalizationZhHantHk$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "TW": return Y.MaterialLocalizationZhHantTw$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } return Y.MaterialLocalizationZhHant$(compactDateFormat, decimalFormat, fullYearFormat, "zh_Hant", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } switch (locale.get$countryCode()) { case "HK": return Y.MaterialLocalizationZhHantHk$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "TW": return Y.MaterialLocalizationZhHantTw$(compactDateFormat, decimalFormat, fullYearFormat, longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); } return Y.MaterialLocalizationZh$(compactDateFormat, decimalFormat, fullYearFormat, "zh", longDateFormat, mediumDateFormat, shortDateFormat, shortMonthDayFormat, twoDigitZeroPaddedFormat, yearMonthFormat); case "zu": return new Y.MaterialLocalizationZu("zu", fullYearFormat, compactDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, decimalFormat, twoDigitZeroPaddedFormat); } return null; }, MaterialLocalizationAf: function MaterialLocalizationAf(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAm: function MaterialLocalizationAm(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAr: function MaterialLocalizationAr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAs: function MaterialLocalizationAs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationAz: function MaterialLocalizationAz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBe: function MaterialLocalizationBe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBg: function MaterialLocalizationBg(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBn: function MaterialLocalizationBn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationBs: function MaterialLocalizationBs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationCa: function MaterialLocalizationCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationCs: function MaterialLocalizationCs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDa: function MaterialLocalizationDa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDe: function MaterialLocalizationDe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationDeCh: function MaterialLocalizationDeCh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEl: function MaterialLocalizationEl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEn: function MaterialLocalizationEn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnAu: function MaterialLocalizationEnAu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnCa: function MaterialLocalizationEnCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnGb: function MaterialLocalizationEnGb(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnIe: function MaterialLocalizationEnIe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnIn: function MaterialLocalizationEnIn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnNz: function MaterialLocalizationEnNz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnSg: function MaterialLocalizationEnSg(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEnZa: function MaterialLocalizationEnZa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEs: function MaterialLocalizationEs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEs419: function MaterialLocalizationEs419(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsAr: function MaterialLocalizationEsAr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsBo: function MaterialLocalizationEsBo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCl: function MaterialLocalizationEsCl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCo: function MaterialLocalizationEsCo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsCr: function MaterialLocalizationEsCr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsDo: function MaterialLocalizationEsDo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsEc: function MaterialLocalizationEsEc(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsGt: function MaterialLocalizationEsGt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsHn: function MaterialLocalizationEsHn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsMx: function MaterialLocalizationEsMx(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsNi: function MaterialLocalizationEsNi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPa: function MaterialLocalizationEsPa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPe: function MaterialLocalizationEsPe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPr: function MaterialLocalizationEsPr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsPy: function MaterialLocalizationEsPy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsSv: function MaterialLocalizationEsSv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsUs: function MaterialLocalizationEsUs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsUy: function MaterialLocalizationEsUy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEsVe: function MaterialLocalizationEsVe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEt: function MaterialLocalizationEt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationEu: function MaterialLocalizationEu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFa: function MaterialLocalizationFa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFi: function MaterialLocalizationFi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFil: function MaterialLocalizationFil(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFr: function MaterialLocalizationFr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationFrCa: function MaterialLocalizationFrCa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGl: function MaterialLocalizationGl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGsw: function MaterialLocalizationGsw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationGu: function MaterialLocalizationGu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHe: function MaterialLocalizationHe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHi: function MaterialLocalizationHi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHr: function MaterialLocalizationHr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHu: function MaterialLocalizationHu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationHy: function MaterialLocalizationHy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationId: function MaterialLocalizationId(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationIs: function MaterialLocalizationIs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationIt: function MaterialLocalizationIt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationJa: function MaterialLocalizationJa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKa: function MaterialLocalizationKa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKk: function MaterialLocalizationKk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKm: function MaterialLocalizationKm(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKn: function MaterialLocalizationKn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKo: function MaterialLocalizationKo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationKy: function MaterialLocalizationKy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLo: function MaterialLocalizationLo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLt: function MaterialLocalizationLt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationLv: function MaterialLocalizationLv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMk: function MaterialLocalizationMk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMl: function MaterialLocalizationMl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMn: function MaterialLocalizationMn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMr: function MaterialLocalizationMr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMs: function MaterialLocalizationMs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationMy: function MaterialLocalizationMy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNb: function MaterialLocalizationNb(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNe: function MaterialLocalizationNe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNl: function MaterialLocalizationNl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationNo: function MaterialLocalizationNo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationOr: function MaterialLocalizationOr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPa: function MaterialLocalizationPa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPl: function MaterialLocalizationPl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPs: function MaterialLocalizationPs(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPt: function MaterialLocalizationPt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationPtPt: function MaterialLocalizationPtPt(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationRo: function MaterialLocalizationRo(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationRu: function MaterialLocalizationRu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSi: function MaterialLocalizationSi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSk: function MaterialLocalizationSk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSl: function MaterialLocalizationSl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSq: function MaterialLocalizationSq(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSr: function MaterialLocalizationSr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSrCyrl: function MaterialLocalizationSrCyrl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSrLatn: function MaterialLocalizationSrLatn(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSv: function MaterialLocalizationSv(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationSw: function MaterialLocalizationSw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTa: function MaterialLocalizationTa(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTe: function MaterialLocalizationTe(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTh: function MaterialLocalizationTh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTl: function MaterialLocalizationTl(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationTr: function MaterialLocalizationTr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUk: function MaterialLocalizationUk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUr: function MaterialLocalizationUr(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationUz: function MaterialLocalizationUz(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationVi: function MaterialLocalizationVi(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZh: function MaterialLocalizationZh(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHans: function MaterialLocalizationZhHans(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHant: function MaterialLocalizationZhHant(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHantHk: function MaterialLocalizationZhHantHk(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZhHantTw: function MaterialLocalizationZhHantTw(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, MaterialLocalizationZu: function MaterialLocalizationZu(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._localeName = t0; _._fullYearFormat0 = t1; _._compactDateFormat = t2; _._mediumDateFormat0 = t3; _._longDateFormat = t4; _._yearMonthFormat = t5; _._decimalFormat0 = t6; _._twoDigitZeroPaddedFormat = t7; }, SettingsRepository: function SettingsRepository() { }, TaskRepository: function TaskRepository() { }, _$DashboardUIState$_: function(selectedEntities, selectedEntityType, settings, showSidebar) { if (selectedEntities == null) H.throwExpression(Y.BuiltValueNullFieldError$("DashboardUIState", "selectedEntities")); return new Y._$DashboardUIState(settings, selectedEntityType, selectedEntities, showSidebar); }, _$DashboardUISettings$_: function(compareCustomEndDate, compareCustomStartDate, compareDateRange, currencyId, customEndDate, customStartDate, dateRange, enableComparison, includeTaxes, offset) { var _s19_ = "DashboardUISettings"; if (customEndDate == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "customEndDate")); if (compareCustomEndDate == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "compareCustomEndDate")); return new Y._$DashboardUISettings(dateRange, customStartDate, customEndDate, enableComparison, compareDateRange, compareCustomStartDate, compareCustomEndDate, offset, currencyId, includeTaxes); }, DashboardUIState: function DashboardUIState() { }, DashboardUISettings: function DashboardUISettings() { }, _$DashboardUIStateSerializer: function _$DashboardUIStateSerializer() { }, _$DashboardUISettingsSerializer: function _$DashboardUISettingsSerializer() { }, _$DashboardUIState: function _$DashboardUIState(t0, t1, t2, t3) { var _ = this; _.settings = t0; _.selectedEntityType = t1; _.selectedEntities = t2; _.showSidebar = t3; _._dashboard_state$__hashCode = null; }, DashboardUIStateBuilder: function DashboardUIStateBuilder() { var _ = this; _._showSidebar = _._selectedEntities = _._selectedEntityType = _._dashboard_state$_settings = _._dashboard_state$_$v = null; }, _$DashboardUISettings: function _$DashboardUISettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dateRange = t0; _.customStartDate = t1; _.customEndDate = t2; _.enableComparison = t3; _.compareDateRange = t4; _.compareCustomStartDate = t5; _.compareCustomEndDate = t6; _.offset = t7; _.currencyId = t8; _.includeTaxes = t9; _._dashboard_state$__hashCode = null; }, DashboardUISettingsBuilder: function DashboardUISettingsBuilder() { var _ = this; _._includeTaxes = _._dashboard_state$_currencyId = _._offset = _._compareCustomEndDate = _._compareCustomStartDate = _._compareDateRange = _._enableComparison = _._dashboard_state$_customEndDate = _._dashboard_state$_customStartDate = _._dateRange = _._dashboard_state$_$v = null; }, _$DesignState$_: function(list, map) { var _s11_ = "DesignState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "list")); return new Y._$DesignState(map, list); }, _$DesignUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("DesignUIState", "listUIState")); return new Y._$DesignUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, DesignState: function DesignState() { }, DesignState_cleanDesign_closure: function DesignState_cleanDesign_closure(t0) { this.$this = t0; }, DesignState_cleanDesign_closure0: function DesignState_cleanDesign_closure0() { }, DesignState_customDesigns_closure: function DesignState_customDesigns_closure(t0) { this.$this = t0; }, DesignState_customDesigns_closure0: function DesignState_customDesigns_closure0(t0) { this.$this = t0; }, DesignState_loadDesigns_closure0: function DesignState_loadDesigns_closure0() { }, DesignState_loadDesigns_closure1: function DesignState_loadDesigns_closure1() { }, DesignState_loadDesigns_closure: function DesignState_loadDesigns_closure(t0, t1) { this.$this = t0; this.map = t1; }, DesignUIState: function DesignUIState() { }, _$DesignStateSerializer: function _$DesignStateSerializer() { }, _$DesignUIStateSerializer: function _$DesignUIStateSerializer() { }, _$DesignState: function _$DesignState(t0, t1) { this.map = t0; this.list = t1; this._design_state$__hashCode = null; }, DesignStateBuilder: function DesignStateBuilder() { this._design_state$_list = this._design_state$_map = this._design_state$_$v = null; }, _$DesignUIState: function _$DesignUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._design_state$__hashCode = null; }, DesignUIStateBuilder: function DesignUIStateBuilder() { var _ = this; _._design_state$_cancelCompleter = _._design_state$_saveCompleter = _._design_state$_tabIndex = _._design_state$_forceSelected = _._design_state$_selectedId = _._design_state$_listUIState = _._design_state$_editing = _._design_state$_$v = null; }, _DesignUIState_Object_EntityUIState: function _DesignUIState_Object_EntityUIState() { }, _editDocument: function() { return new Y._editDocument_closure(); }, _viewDocument: function() { return new Y._viewDocument_closure(); }, _viewDocumentList: function() { return new Y._viewDocumentList_closure0(); }, _archiveDocument: function(repository) { return new Y._archiveDocument_closure(repository); }, _deleteDocument: function(repository) { return new Y._deleteDocument_closure(repository); }, _restoreDocument: function(repository) { return new Y._restoreDocument_closure(repository); }, _loadDocument: function(repository) { return new Y._loadDocument_closure(repository); }, _loadDocuments: function(repository) { return new Y._loadDocuments_closure(repository); }, _editDocument_closure: function _editDocument_closure() { }, _viewDocument_closure: function _viewDocument_closure() { }, _viewDocumentList_closure0: function _viewDocumentList_closure0() { }, _viewDocumentList__closure: function _viewDocumentList__closure() { }, _archiveDocument_closure: function _archiveDocument_closure(t0) { this.repository = t0; }, _archiveDocument__closure: function _archiveDocument__closure(t0) { this.store = t0; }, _archiveDocument__closure0: function _archiveDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveDocument__closure1: function _archiveDocument__closure1(t0, t1, t2) { this.store = t0; this.prevDocuments = t1; this.action = t2; }, _deleteDocument_closure: function _deleteDocument_closure(t0) { this.repository = t0; }, _deleteDocument__closure: function _deleteDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _deleteDocument__closure0: function _deleteDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDocument_closure: function _restoreDocument_closure(t0) { this.repository = t0; }, _restoreDocument__closure: function _restoreDocument__closure(t0) { this.store = t0; }, _restoreDocument__closure0: function _restoreDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDocument__closure1: function _restoreDocument__closure1(t0, t1, t2) { this.store = t0; this.prevDocuments = t1; this.action = t2; }, _loadDocument_closure: function _loadDocument_closure(t0) { this.repository = t0; }, _loadDocument__closure: function _loadDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDocument__closure0: function _loadDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDocuments_closure: function _loadDocuments_closure(t0) { this.repository = t0; }, _loadDocuments__closure: function _loadDocuments__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDocuments__closure0: function _loadDocuments__closure0(t0, t1) { this.store = t0; this.action = t1; }, _$ProductState$_: function(list, map) { var _s12_ = "ProductState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new Y._$ProductState(map, list); }, _$ProductUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("ProductUIState", "listUIState")); return new Y._$ProductUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ProductState: function ProductState() { }, ProductState_loadProducts_closure0: function ProductState_loadProducts_closure0() { }, ProductState_loadProducts_closure1: function ProductState_loadProducts_closure1() { }, ProductState_loadProducts_closure: function ProductState_loadProducts_closure(t0, t1) { this.$this = t0; this.map = t1; }, ProductUIState: function ProductUIState() { }, _$ProductStateSerializer: function _$ProductStateSerializer() { }, _$ProductUIStateSerializer: function _$ProductUIStateSerializer() { }, _$ProductState: function _$ProductState(t0, t1) { this.map = t0; this.list = t1; this._product_state$__hashCode = null; }, ProductStateBuilder: function ProductStateBuilder() { this._product_state$_list = this._product_state$_map = this._product_state$_$v = null; }, _$ProductUIState: function _$ProductUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._product_state$__hashCode = null; }, ProductUIStateBuilder: function ProductUIStateBuilder() { var _ = this; _._product_state$_cancelCompleter = _._product_state$_saveCompleter = _._product_state$_tabIndex = _._product_state$_forceSelected = _._product_state$_selectedId = _._product_state$_listUIState = _._product_state$_editing = _._product_state$_$v = null; }, _ProductUIState_Object_EntityUIState: function _ProductUIState_Object_EntityUIState() { }, filteredQuotesSelector: function(selectionState, quoteMap, quoteList, clientMap, quoteListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(quoteList._list, new Y.filteredQuotesSelector_closure(quoteMap, clientMap, selectionState, filterEntityType, filterEntityId, quoteListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Y.filteredQuotesSelector_closure0(quoteMap, quoteListState, clientMap, userMap)); return list; }, quoteStatsForClient: function(clientId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(quoteMap._map$_map, new Y.quoteStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, quoteStatsForDesign: function(designId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(quoteMap._map$_map, new Y.quoteStatsForDesign_closure(t1, designId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, quoteStatsForUser: function(userId, quoteMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(quoteMap._map$_map, new Y.quoteStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, hasQuoteChanges: function(quote, quoteMap) { var t1; if (quote.get$isNew()) t1 = quote.isChanged; else { t1 = quote.id; t1 = !quote.$eq(0, J.$index$asx(quoteMap._map$_map, t1)); } return t1; }, memoizedFilteredQuoteList_closure: function memoizedFilteredQuoteList_closure() { }, filteredQuotesSelector_closure: function filteredQuotesSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.quoteMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.quoteListState = t5; }, filteredQuotesSelector_closure0: function filteredQuotesSelector_closure0(t0, t1, t2, t3) { var _ = this; _.quoteMap = t0; _.quoteListState = t1; _.clientMap = t2; _.userMap = t3; }, memoizedQuoteStatsForClient_closure: function memoizedQuoteStatsForClient_closure() { }, quoteStatsForClient_closure: function quoteStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedQuoteStatsForDesign_closure: function memoizedQuoteStatsForDesign_closure() { }, quoteStatsForDesign_closure: function quoteStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedQuoteStatsForUser_closure: function memoizedQuoteStatsForUser_closure() { }, quoteStatsForUser_closure: function quoteStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, prefReducer: function(state, action, selectedCompanyId) { return state.rebuild$1(new Y.prefReducer_closure(selectedCompanyId, state, action)); }, _resortFields: function(value, entityType, field) { var t1, sortField = J.$index$asx(value._map$_map, entityType); if (sortField == null) sortField = X._$PrefStateSortField$_(field !== "number", field); t1 = new X.PrefStateSortFieldBuilder(); t1._pref_state$_$v = sortField; new Y._resortFields_closure(sortField, field).call$1(t1); return value.rebuild$1(new Y._resortFields_closure0(entityType, t1.build$0(0))); }, companyPrefReducer: function(state, action) { var t2, t3, t1 = {}; t1.state = state; if (state == null) { t2 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_HistoryRecord); t2 = t1.state = new X._$CompanyPrefState(t2); } else t2 = state; t3 = new X.CompanyPrefStateBuilder(); t3._pref_state$_$v = t2; new Y.companyPrefReducer_closure(t1, action).call$1(t3); return t3.build$0(0); }, _addToHistory: function(list, record) { var old, t1 = record.id, t2 = t1 == null; if (!t2 && C.JSString_methods.startsWith$1(t1, "-")) return list; if (record.entityType === C.EntityType_settings) if (C.JSString_methods.endsWith$1(t2 ? "" : t1, "_edit")) return list; old = J.firstWhere$2$orElse$ax(list._list, new Y._addToHistory_closure(record), new Y._addToHistory_closure0()); if (old != null) return list.rebuild$1(new Y._addToHistory_closure1(old, record)); else return list.rebuild$1(new Y._addToHistory_closure2(record, list)); }, prefReducer_closure: function prefReducer_closure(t0, t1, t2) { this.selectedCompanyId = t0; this.state = t1; this.action = t2; }, _resortFields_closure: function _resortFields_closure(t0, t1) { this.sortField = t0; this.field = t1; }, _resortFields_closure0: function _resortFields_closure0(t0, t1) { this.entityType = t0; this.directon = t1; }, sortFieldsReducer_closure: function sortFieldsReducer_closure() { }, sortFieldsReducer_closure0: function sortFieldsReducer_closure0() { }, sortFieldsReducer_closure1: function sortFieldsReducer_closure1() { }, sortFieldsReducer_closure2: function sortFieldsReducer_closure2() { }, sortFieldsReducer_closure3: function sortFieldsReducer_closure3() { }, sortFieldsReducer_closure4: function sortFieldsReducer_closure4() { }, sortFieldsReducer_closure5: function sortFieldsReducer_closure5() { }, sortFieldsReducer_closure6: function sortFieldsReducer_closure6() { }, sortFieldsReducer_closure7: function sortFieldsReducer_closure7() { }, sortFieldsReducer_closure8: function sortFieldsReducer_closure8() { }, sortFieldsReducer_closure9: function sortFieldsReducer_closure9() { }, sortFieldsReducer_closure10: function sortFieldsReducer_closure10() { }, sortFieldsReducer_closure11: function sortFieldsReducer_closure11() { }, sortFieldsReducer_closure12: function sortFieldsReducer_closure12() { }, sortFieldsReducer_closure13: function sortFieldsReducer_closure13() { }, sortFieldsReducer_closure14: function sortFieldsReducer_closure14() { }, sortFieldsReducer_closure15: function sortFieldsReducer_closure15() { }, sortFieldsReducer_closure16: function sortFieldsReducer_closure16() { }, sortFieldsReducer_closure17: function sortFieldsReducer_closure17() { }, sortFieldsReducer_closure18: function sortFieldsReducer_closure18() { }, sortFieldsReducer_closure19: function sortFieldsReducer_closure19() { }, sortFieldsReducer_closure20: function sortFieldsReducer_closure20() { }, sidebarEditorReducer_closure: function sidebarEditorReducer_closure() { }, sidebarEditorReducer__closure: function sidebarEditorReducer__closure(t0, t1) { this.entityType = t0; this.value = t1; }, sidebarEditorReducer__closure0: function sidebarEditorReducer__closure0(t0) { this.entityType = t0; }, menuVisibleReducer_closure: function menuVisibleReducer_closure() { }, menuVisibleReducer_closure0: function menuVisibleReducer_closure0() { }, historyVisibleReducer_closure: function historyVisibleReducer_closure() { }, historyVisibleReducer_closure0: function historyVisibleReducer_closure0() { }, layoutReducer_closure: function layoutReducer_closure() { }, moduleLayoutReducer_closure: function moduleLayoutReducer_closure() { }, moduleLayoutReducer_closure0: function moduleLayoutReducer_closure0() { }, rowsPerPageReducer_closure: function rowsPerPageReducer_closure() { }, manuSidebarReducer_closure: function manuSidebarReducer_closure() { }, historySidebarReducer_closure: function historySidebarReducer_closure() { }, darkModeReducer_closure: function darkModeReducer_closure() { }, persistDataReducer_closure: function persistDataReducer_closure() { }, showKanbanReducer_closure: function showKanbanReducer_closure() { }, isFilterVisibleReducer_closure: function isFilterVisibleReducer_closure() { }, longPressReducer_closure: function longPressReducer_closure() { }, isPreviewVisibleReducer_closure: function isPreviewVisibleReducer_closure() { }, isPreviewVisibleReducer_closure0: function isPreviewVisibleReducer_closure0() { }, requireAuthenticationReducer_closure: function requireAuthenticationReducer_closure() { }, colorThemeReducer_closure: function colorThemeReducer_closure() { }, customColorsReducer_closure: function customColorsReducer_closure() { }, companyPrefReducer_closure: function companyPrefReducer_closure(t0, t1) { this._box_0 = t0; this.action = t1; }, historyReducer_closure: function historyReducer_closure() { }, historyReducer__closure: function historyReducer__closure() { }, historyReducer_closure0: function historyReducer_closure0() { }, historyReducer_closure1: function historyReducer_closure1() { }, historyReducer_closure2: function historyReducer_closure2() { }, historyReducer_closure3: function historyReducer_closure3() { }, historyReducer_closure4: function historyReducer_closure4() { }, historyReducer_closure5: function historyReducer_closure5() { }, historyReducer_closure6: function historyReducer_closure6() { }, historyReducer_closure7: function historyReducer_closure7() { }, historyReducer_closure8: function historyReducer_closure8() { }, historyReducer_closure9: function historyReducer_closure9() { }, historyReducer_closure10: function historyReducer_closure10() { }, historyReducer_closure11: function historyReducer_closure11() { }, historyReducer_closure12: function historyReducer_closure12() { }, historyReducer_closure13: function historyReducer_closure13() { }, historyReducer_closure14: function historyReducer_closure14() { }, historyReducer_closure15: function historyReducer_closure15() { }, historyReducer_closure16: function historyReducer_closure16() { }, historyReducer_closure17: function historyReducer_closure17() { }, historyReducer_closure18: function historyReducer_closure18() { }, historyReducer_closure19: function historyReducer_closure19() { }, historyReducer_closure20: function historyReducer_closure20() { }, historyReducer_closure21: function historyReducer_closure21() { }, historyReducer_closure22: function historyReducer_closure22() { }, historyReducer_closure23: function historyReducer_closure23() { }, historyReducer_closure24: function historyReducer_closure24() { }, historyReducer_closure25: function historyReducer_closure25() { }, historyReducer_closure26: function historyReducer_closure26() { }, historyReducer_closure27: function historyReducer_closure27() { }, historyReducer_closure28: function historyReducer_closure28() { }, historyReducer_closure29: function historyReducer_closure29() { }, historyReducer_closure30: function historyReducer_closure30() { }, historyReducer_closure31: function historyReducer_closure31() { }, historyReducer_closure32: function historyReducer_closure32() { }, historyReducer_closure33: function historyReducer_closure33() { }, historyReducer_closure34: function historyReducer_closure34() { }, historyReducer_closure35: function historyReducer_closure35() { }, historyReducer_closure36: function historyReducer_closure36() { }, historyReducer_closure37: function historyReducer_closure37() { }, historyReducer_closure38: function historyReducer_closure38() { }, historyReducer_closure39: function historyReducer_closure39() { }, historyReducer_closure40: function historyReducer_closure40() { }, historyReducer_closure41: function historyReducer_closure41() { }, historyReducer_closure42: function historyReducer_closure42() { }, historyReducer_closure43: function historyReducer_closure43() { }, historyReducer_closure44: function historyReducer_closure44() { }, historyReducer_closure45: function historyReducer_closure45() { }, historyReducer_closure46: function historyReducer_closure46() { }, _addToHistory_closure: function _addToHistory_closure(t0) { this.record = t0; }, _addToHistory_closure0: function _addToHistory_closure0() { }, _addToHistory_closure1: function _addToHistory_closure1(t0, t1) { this.old = t0; this.record = t1; }, _addToHistory_closure2: function _addToHistory_closure2(t0, t1) { this.record = t0; this.list = t1; }, _$VendorState$_: function(list, map) { var _s11_ = "VendorState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "list")); return new Y._$VendorState(map, list); }, _$VendorUIState$_: function(cancelCompleter, editing, editingContact, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("VendorUIState", "listUIState")); return new Y._$VendorUIState(editing, editingContact, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, VendorState: function VendorState() { }, VendorState_loadVendors_closure0: function VendorState_loadVendors_closure0() { }, VendorState_loadVendors_closure1: function VendorState_loadVendors_closure1() { }, VendorState_loadVendors_closure: function VendorState_loadVendors_closure(t0, t1) { this.$this = t0; this.map = t1; }, VendorUIState: function VendorUIState() { }, _$VendorStateSerializer: function _$VendorStateSerializer() { }, _$VendorUIStateSerializer: function _$VendorUIStateSerializer() { }, _$VendorState: function _$VendorState(t0, t1) { this.map = t0; this.list = t1; this._vendor_state$__hashCode = null; }, VendorStateBuilder: function VendorStateBuilder() { this._vendor_state$_list = this._vendor_state$_map = this._vendor_state$_$v = null; }, _$VendorUIState: function _$VendorUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editing = t0; _.editingContact = t1; _.listUIState = t2; _.selectedId = t3; _.forceSelected = t4; _.tabIndex = t5; _.saveCompleter = t6; _.cancelCompleter = t7; _._vendor_state$__hashCode = null; }, VendorUIStateBuilder: function VendorUIStateBuilder() { var _ = this; _._vendor_state$_cancelCompleter = _._vendor_state$_saveCompleter = _._vendor_state$_tabIndex = _._vendor_state$_forceSelected = _._vendor_state$_selectedId = _._vendor_state$_listUIState = _._editingContact = _._vendor_state$_editing = _._vendor_state$_$v = null; }, _VendorUIState_Object_EntityUIState: function _VendorUIState_Object_EntityUIState() { }, FormCard$: function(child, children, crossAxisAlignment, elevation, forceNarrow, internalPadding, isLast, padding) { return new Y.FormCard(child, children, crossAxisAlignment, forceNarrow, padding, internalPadding, isLast, elevation, null); }, FormCard: function FormCard(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.children = t1; _.crossAxisAlignment = t2; _.forceNarrow = t3; _.padding = t4; _.internalPadding = t5; _.isLast = t6; _.elevation = t7; _.key = t8; }, DynamicSelector$: function(allowClearing, entityId, entityIds, entityType, key, labelText, onAddPressed, onChanged, overrideSuggestedLabel) { return new Y.DynamicSelector(labelText, allowClearing, entityId, entityIds, entityType, onChanged, overrideSuggestedLabel, onAddPressed, key); }, DynamicSelector: function DynamicSelector(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.labelText = t0; _.allowClearing = t1; _.entityId = t2; _.entityIds = t3; _.entityType = t4; _.onChanged = t5; _.overrideSuggestedLabel = t6; _.onAddPressed = t7; _.key = t8; }, DynamicSelector_build_closure: function DynamicSelector_build_closure(t0) { this.$this = t0; }, DynamicSelector_build_closure0: function DynamicSelector_build_closure0(t0, t1) { this.$this = t0; this.entityMap = t1; }, DynamicSelector_build_closure1: function DynamicSelector_build_closure1(t0) { this.$this = t0; }, ListScaffold$: function(appBarActions, appBarLeadingActions, appBarTitle, body, bottomNavigationBar, entityType, floatingActionButton, onCancelSettingsIndex, onCancelSettingsSection, onCheckboxPressed, onHamburgerLongPress) { return new Y.ListScaffold(entityType, body, bottomNavigationBar, floatingActionButton, appBarTitle, appBarActions, appBarLeadingActions, onHamburgerLongPress, onCancelSettingsSection, onCancelSettingsIndex, onCheckboxPressed, null); }, ListScaffold: function ListScaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.entityType = t0; _.body = t1; _.bottomNavigationBar = t2; _.floatingActionButton = t3; _.appBarTitle = t4; _.appBarActions = t5; _.appBarLeadingActions = t6; _.onHamburgerLongPress = t7; _.onCancelSettingsSection = t8; _.onCancelSettingsIndex = t9; _.onCheckboxPressed = t10; _.key = t11; }, ListScaffold_build_closure: function ListScaffold_build_closure(t0) { this.context = t0; }, ListScaffold_build_closure0: function ListScaffold_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ListScaffold_build_closure1: function ListScaffold_build_closure1(t0, t1) { this.$this = t0; this.localization = t1; }, ListScaffold_build__closure0: function ListScaffold_build__closure0(t0) { this.context = t0; }, ListScaffold_build_closure2: function ListScaffold_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, ListScaffold_build_closure3: function ListScaffold_build_closure3(t0) { this.$this = t0; }, ListScaffold_build_closure6: function ListScaffold_build_closure6(t0) { this.store = t0; }, ListScaffold_build_closure4: function ListScaffold_build_closure4(t0, t1, t2) { this.$this = t0; this.store = t1; this.state = t2; }, ListScaffold_build_closure5: function ListScaffold_build_closure5(t0, t1, t2) { this.localization = t0; this.state = t1; this.store = t2; }, ListScaffold_build__closure: function ListScaffold_build__closure(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, LoginView: function LoginView(t0, t1) { this.viewModel = t0; this.key = t1; }, _LoginState: function _LoginState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._login_view$_formKey = t0; _._login_view$_firstNameController = t1; _._login_view$_lastNameController = t2; _._login_view$_emailController = t3; _._login_view$_passwordController = t4; _._urlController = t5; _._secretController = t6; _._oneTimePasswordController = t7; _._tokenController = t8; _._buttonController = t9; _._loginError = ""; _._isSelfHosted = _._emailLogin = _._tokenLogin = false; _._createAccount = true; _._privacyChecked = _._termsChecked = _._login_view$_autoValidate = _._recoverPassword = _._hideGoogle = false; _._widget = null; _._debugLifecycleState = t10; _._framework$_element = null; }, _LoginState__submitSignUpForm_closure: function _LoginState__submitSignUpForm_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _LoginState__submitSignUpForm_closure0: function _LoginState__submitSignUpForm_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _LoginState__submitSignUpForm__closure1: function _LoginState__submitSignUpForm__closure1(t0) { this.context = t0; }, _LoginState__submitSignUpForm_closure1: function _LoginState__submitSignUpForm_closure1(t0) { this.$this = t0; }, _LoginState__submitSignUpForm__closure0: function _LoginState__submitSignUpForm__closure0(t0) { this.$this = t0; }, _LoginState__submitSignUpForm_closure2: function _LoginState__submitSignUpForm_closure2(t0) { this.$this = t0; }, _LoginState__submitSignUpForm__closure: function _LoginState__submitSignUpForm__closure(t0, t1) { this.$this = t0; this.error = t1; }, _LoginState__submitLoginForm_closure: function _LoginState__submitLoginForm_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _LoginState__submitLoginForm_closure0: function _LoginState__submitLoginForm_closure0(t0) { this.$this = t0; }, _LoginState__submitLoginForm__closure0: function _LoginState__submitLoginForm__closure0(t0) { this.$this = t0; }, _LoginState__submitLoginForm___closure: function _LoginState__submitLoginForm___closure() { }, _LoginState__submitLoginForm_closure1: function _LoginState__submitLoginForm_closure1(t0) { this.$this = t0; }, _LoginState__submitLoginForm__closure: function _LoginState__submitLoginForm__closure(t0, t1) { this.$this = t0; this.error = t1; }, _LoginState_build_closure: function _LoginState_build_closure() { }, _LoginState_build_closure0: function _LoginState_build_closure0(t0) { this.$this = t0; }, _LoginState_build__closure6: function _LoginState_build__closure6(t0) { this.$this = t0; }, _LoginState_build_closure1: function _LoginState_build_closure1(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.context = t2; }, _LoginState_build_closure2: function _LoginState_build_closure2(t0) { this.$this = t0; }, _LoginState_build__closure5: function _LoginState_build__closure5(t0) { this.$this = t0; }, _LoginState_build_closure3: function _LoginState_build_closure3(t0) { this.$this = t0; }, _LoginState_build__closure4: function _LoginState_build__closure4(t0) { this.$this = t0; }, _LoginState_build_closure4: function _LoginState_build_closure4(t0) { this.$this = t0; }, _LoginState_build__closure3: function _LoginState_build__closure3(t0, t1) { this.$this = t0; this.index = t1; }, _LoginState_build_closure5: function _LoginState_build_closure5(t0) { this.$this = t0; }, _LoginState_build__closure2: function _LoginState_build__closure2(t0, t1) { this.$this = t0; this.index = t1; }, _LoginState_build_closure7: function _LoginState_build_closure7(t0) { this.localization = t0; }, _LoginState_build_closure6: function _LoginState_build_closure6(t0) { this.$this = t0; }, _LoginState_build_closure8: function _LoginState_build_closure8(t0) { this.$this = t0; }, _LoginState_build_closure9: function _LoginState_build_closure9(t0) { this.$this = t0; }, _LoginState_build_closure10: function _LoginState_build_closure10(t0) { this.$this = t0; }, _LoginState_build_closure11: function _LoginState_build_closure11(t0) { this.$this = t0; }, _LoginState_build__closure1: function _LoginState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _LoginState_build_closure12: function _LoginState_build_closure12(t0) { this.$this = t0; }, _LoginState_build__closure0: function _LoginState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _LoginState_build_closure13: function _LoginState_build_closure13(t0) { this.$this = t0; }, _LoginState_build_closure14: function _LoginState_build_closure14(t0) { this.$this = t0; }, _LoginState_build_closure15: function _LoginState_build_closure15(t0) { this.$this = t0; }, _LoginState_build__closure: function _LoginState_build__closure(t0) { this.$this = t0; }, _LoginState_build_closure16: function _LoginState_build_closure16() { }, _LoginState_build_closure17: function _LoginState_build_closure17(t0) { this.platform = t0; }, RuledText: function RuledText(t0, t1) { this.text = t0; this.key = t1; }, ClientListVM_fromStore: function(store) { var t6, t7, t8, t9, state = store.get$_store$_state(), t1 = $.$get$memoizedFilteredClientList(), t2 = state.getUISelection$1(C.EntityType_client), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).clientState.map; t8 = t6.$index(t3, t5).clientState.list; t9 = t6.$index(t3, t5).groupState.map; t4 = t4.clientUIState.listUIState; t9 = t1.call$7(t2, t7, t8, t9, t4, t6.$index(t3, t5).userState.map, state.staticState); t8 = t6.$index(t3, t5).clientState.map; t4 = t4.filter; t7 = t6.$index(t3, t5).userCompany.settings.getTableColumns$1(C.EntityType_client); if (t7 == null) { t6.$index(t3, t5).toString; t1 = H.setRuntimeTypeInfo(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], type$.JSArray_legacy_String); } else t1 = t7; return new Y.ClientListVM(state, t9, t8, t4, new Y.ClientListVM_fromStore_closure(new Y.ClientListVM_fromStore__handleRefresh(store)), t1, new Y.ClientListVM_fromStore_closure0(store), new Y.ClientListVM_fromStore_closure1(store)); }, ClientListBuilder: function ClientListBuilder(t0) { this.key = t0; }, ClientListBuilder_build_closure: function ClientListBuilder_build_closure() { }, ClientListBuilder_build__closure: function ClientListBuilder_build__closure(t0) { this.viewModel = t0; }, ClientListVM: function ClientListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.clientList = t1; _.clientMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ClientListVM_fromStore__handleRefresh: function ClientListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ClientListVM_fromStore_closure: function ClientListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ClientListVM_fromStore_closure0: function ClientListVM_fromStore_closure0(t0) { this.store = t0; }, ClientListVM_fromStore_closure1: function ClientListVM_fromStore_closure1(t0) { this.store = t0; }, CompanyGatewayScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).companyGatewayState.map; t6 = $.$get$memoizedFilteredCompanyGatewayList(); t7 = t4.$index(t1, t3).companyGatewayState.map; t8 = t4.$index(t1, t3).companyGatewayState.list; t9 = t2.companyGatewayUIState.listUIState; t2 = t2.settingsUIState; t6.call$5(t7, t8, t9, t2.get$settings().companyGatewayIds, t2.entityType === C.EntityType_company); t4.$index(t1, t3).toString; return new Y.CompanyGatewayScreenVM(t9.selectedIds != null, t5, new Y.CompanyGatewayScreenVM_fromStore_closure(store)); }, CompanyGatewayScreenBuilder: function CompanyGatewayScreenBuilder(t0) { this.key = t0; }, CompanyGatewayScreenBuilder_build_closure: function CompanyGatewayScreenBuilder_build_closure() { }, CompanyGatewayScreenVM: function CompanyGatewayScreenVM(t0, t1, t2) { this.isInMultiselect = t0; this.companyGatewayMap = t1; this.onSavePressed = t2; }, CompanyGatewayScreenVM_fromStore_closure: function CompanyGatewayScreenVM_fromStore_closure(t0) { this.store = t0; }, CompanyGatewayScreenVM_fromStore__closure: function CompanyGatewayScreenVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, _DashboardPanel$: function(context, currentData, isLoaded, onDateSelected, previousData, title, viewModel) { return new Y._DashboardPanel(viewModel, context, title, currentData, previousData, isLoaded, onDateSelected, null); }, DashboardPanels: function DashboardPanels(t0, t1, t2) { this.viewModel = t0; this.scrollController = t1; this.key = t2; }, DashboardPanels__showDateOptions_closure: function DashboardPanels__showDateOptions_closure(t0) { this.$this = t0; }, DashboardPanels__header_closure: function DashboardPanels__header_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.localization = t1; _.settings = t2; _.hasMultipleCurrencies = t3; _.company = t4; _.clientMap = t5; _.groupMap = t6; _.state = t7; }, DashboardPanels__header__closure: function DashboardPanels__header__closure(t0, t1, t2) { this.$this = t0; this.isWide = t1; this.context = t2; }, DashboardPanels__header__closure0: function DashboardPanels__header__closure0(t0, t1) { this.$this = t0; this.localization = t1; }, DashboardPanels__header__closure1: function DashboardPanels__header__closure1(t0, t1, t2) { this.$this = t0; this.isWide = t1; this.context = t2; }, DashboardPanels__header__closure2: function DashboardPanels__header__closure2(t0) { this.$this = t0; }, DashboardPanels__header__closure3: function DashboardPanels__header__closure3(t0) { this.$this = t0; }, DashboardPanels__header__closure4: function DashboardPanels__header__closure4(t0) { this.localization = t0; }, DashboardPanels__header___closure1: function DashboardPanels__header___closure1(t0) { this.localization = t0; }, DashboardPanels__header__closure5: function DashboardPanels__header__closure5(t0, t1, t2) { this.$this = t0; this.state = t1; this.context = t2; }, DashboardPanels__header___closure0: function DashboardPanels__header___closure0(t0, t1) { this.$this = t0; this.context = t1; }, DashboardPanels__header__closure6: function DashboardPanels__header__closure6(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.context = t1; _.localization = t2; _.settings = t3; _.hasMultipleCurrencies = t4; _.company = t5; _.taxSettings = t6; }, DashboardPanels__header___closure: function DashboardPanels__header___closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.localization = t1; _.settings = t2; _.hasMultipleCurrencies = t3; _.company = t4; _.taxSettings = t5; }, DashboardPanels__header____closure: function DashboardPanels__header____closure(t0) { this.context = t0; }, DashboardPanels__header__closure7: function DashboardPanels__header__closure7(t0) { this.$this = t0; }, DashboardPanels__paymentChart_closure: function DashboardPanels__paymentChart_closure() { }, DashboardPanels__paymentChart_closure0: function DashboardPanels__paymentChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__quoteChart_closure: function DashboardPanels__quoteChart_closure() { }, DashboardPanels__quoteChart_closure0: function DashboardPanels__quoteChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__taskChart_closure: function DashboardPanels__taskChart_closure() { }, DashboardPanels__taskChart_closure0: function DashboardPanels__taskChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels__expenseChart_closure: function DashboardPanels__expenseChart_closure() { }, DashboardPanels__expenseChart_closure0: function DashboardPanels__expenseChart_closure0(t0, t1) { this.onDateSelected = t0; this.currentData = t1; }, DashboardPanels_build_closure: function DashboardPanels_build_closure(t0) { this.$this = t0; }, DashboardPanels_build_closure0: function DashboardPanels_build_closure0(t0) { this.$this = t0; }, DashboardPanels_build_closure1: function DashboardPanels_build_closure1(t0) { this.$this = t0; }, DashboardPanels_build_closure2: function DashboardPanels_build_closure2(t0) { this.$this = t0; }, DashboardPanels_build_closure3: function DashboardPanels_build_closure3(t0) { this.$this = t0; }, _DashboardPanel: function _DashboardPanel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.viewModel = t0; _.context = t1; _.title = t2; _.currentData = t3; _.previousData = t4; _.isLoaded = t5; _.onDateSelected = t6; _.key = t7; }, __DashboardPanelState: function __DashboardPanelState(t0) { var _ = this; _._widget = _._dashboard_panels$_chart = _._previousData = _._currentData = null; _._debugLifecycleState = t0; _._framework$_element = null; }, __DashboardPanelState_build_closure: function __DashboardPanelState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.settings = t2; _.localization = t3; }, __DashboardPanelState_build__closure0: function __DashboardPanelState_build__closure0() { }, __DashboardPanelState_build__closure1: function __DashboardPanelState_build__closure1() { }, __DashboardPanelState_build__closure: function __DashboardPanelState_build__closure(t0) { this.state = t0; }, __DashboardPanelState_build__closure3: function __DashboardPanelState_build__closure3() { }, __DashboardPanelState_build__closure4: function __DashboardPanelState_build__closure4() { }, __DashboardPanelState_build__closure2: function __DashboardPanelState_build__closure2() { }, _InvoiceChart: function _InvoiceChart(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.onDateSelected = t2; _.key = t3; }, _InvoiceChart_build_closure: function _InvoiceChart_build_closure() { }, _InvoiceChart_build_closure0: function _InvoiceChart_build_closure0(t0, t1) { this.$this = t0; this.currentData = t1; }, ExpenseViewDocuments: function ExpenseViewDocuments(t0, t1, t2) { this.viewModel = t0; this.expense = t1; this.key = t2; }, ExpenseViewDocuments_build_closure: function ExpenseViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseViewDocuments_build_closure0: function ExpenseViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseCategoryScreen: function ExpenseCategoryScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseCategoryScreen_build_closure9: function ExpenseCategoryScreen_build_closure9(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure8: function ExpenseCategoryScreen_build_closure8(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure7: function ExpenseCategoryScreen_build_closure7(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure4: function ExpenseCategoryScreen_build_closure4(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure5: function ExpenseCategoryScreen_build_closure5(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure: function ExpenseCategoryScreen_build_closure(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure0: function ExpenseCategoryScreen_build_closure0(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure1: function ExpenseCategoryScreen_build_closure1(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure2: function ExpenseCategoryScreen_build_closure2(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure3: function ExpenseCategoryScreen_build_closure3(t0) { this.store = t0; }, ExpenseCategoryScreen_build_closure6: function ExpenseCategoryScreen_build_closure6(t0) { this.context = t0; }, GroupListVM_fromStore: function(store) { var t4, t5, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userCompany; t2 = t2.groupUIState; t2.toString; t2 = t2.listUIState; return new Y.GroupListVM(state, t5, $.$get$memoizedFilteredGroupList().call$4(state.getUISelection$1(C.EntityType_group), t4.$index(t1, t3).groupState.map, t4.$index(t1, t3).groupState.list, t2), t4.$index(t1, t3).groupState.map, t2.filter, new Y.GroupListVM_fromStore_closure(new Y.GroupListVM_fromStore__handleRefresh(store)), new Y.GroupListVM_fromStore_closure0(store), new Y.GroupListVM_fromStore_closure1(store)); }, GroupListBuilder: function GroupListBuilder(t0) { this.key = t0; }, GroupListBuilder_build_closure: function GroupListBuilder_build_closure() { }, GroupListBuilder_build__closure: function GroupListBuilder_build__closure(t0) { this.viewModel = t0; }, GroupListVM: function GroupListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.userCompany = t1; _.groupList = t2; _.groupMap = t3; _.filter = t4; _.onRefreshed = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, GroupListVM_fromStore__handleRefresh: function GroupListVM_fromStore__handleRefresh(t0) { this.store = t0; }, GroupListVM_fromStore_closure: function GroupListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, GroupListVM_fromStore_closure0: function GroupListVM_fromStore_closure0(t0) { this.store = t0; }, GroupListVM_fromStore_closure1: function GroupListVM_fromStore_closure1(t0) { this.store = t0; }, InvoiceScreen: function InvoiceScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceScreen_build_closure17: function InvoiceScreen_build_closure17(t0) { this.store = t0; }, InvoiceScreen_build_closure15: function InvoiceScreen_build_closure15(t0) { this.store = t0; }, InvoiceScreen_build_closure16: function InvoiceScreen_build_closure16(t0) { this.store = t0; }, InvoiceScreen_build_closure4: function InvoiceScreen_build_closure4(t0) { this.store = t0; }, InvoiceScreen_build_closure5: function InvoiceScreen_build_closure5(t0) { this.store = t0; }, InvoiceScreen_build_closure6: function InvoiceScreen_build_closure6(t0) { this.store = t0; }, InvoiceScreen_build_closure0: function InvoiceScreen_build_closure0(t0) { this.store = t0; }, InvoiceScreen_build_closure1: function InvoiceScreen_build_closure1(t0) { this.store = t0; }, InvoiceScreen_build_closure2: function InvoiceScreen_build_closure2(t0) { this.store = t0; }, InvoiceScreen_build_closure3: function InvoiceScreen_build_closure3(t0) { this.store = t0; }, InvoiceScreen_build_closure7: function InvoiceScreen_build_closure7(t0) { this.localization = t0; }, InvoiceScreen_build_closure8: function InvoiceScreen_build_closure8(t0) { this.localization = t0; }, InvoiceScreen_build_closure9: function InvoiceScreen_build_closure9(t0) { this.localization = t0; }, InvoiceScreen_build_closure10: function InvoiceScreen_build_closure10(t0) { this.localization = t0; }, InvoiceScreen_build_closure11: function InvoiceScreen_build_closure11(t0) { this.localization = t0; }, InvoiceScreen_build_closure12: function InvoiceScreen_build_closure12(t0) { this.localization = t0; }, InvoiceScreen_build_closure13: function InvoiceScreen_build_closure13(t0) { this.localization = t0; }, InvoiceScreen_build_closure: function InvoiceScreen_build_closure(t0) { this.store = t0; }, InvoiceScreen_build_closure14: function InvoiceScreen_build_closure14(t0) { this.context = t0; }, PaymentRefund: function PaymentRefund(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentRefundState: function _PaymentRefundState(t0, t1, t2, t3) { var _ = this; _._payment_refund$_amountController = t0; _._payment_refund$_controllers = t1; _._payment_refund$_debouncer = t2; _.autoValidate = false; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _PaymentRefundState_didChangeDependencies_closure: function _PaymentRefundState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentRefundState_didChangeDependencies_closure0: function _PaymentRefundState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentRefundState_dispose_closure: function _PaymentRefundState_dispose_closure(t0) { this.$this = t0; }, _PaymentRefundState__onChanged_closure: function _PaymentRefundState__onChanged_closure(t0) { this.$this = t0; }, _PaymentRefundState__onChanged__closure: function _PaymentRefundState__onChanged__closure(t0) { this.$this = t0; }, _PaymentRefundState_build_closure: function _PaymentRefundState_build_closure() { }, _PaymentRefundState_build_closure1: function _PaymentRefundState_build_closure1(t0) { this.context = t0; }, _PaymentRefundState_build_closure0: function _PaymentRefundState_build_closure0(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure1: function _PaymentRefundState_build__closure1(t0) { this.date = t0; }, _PaymentRefundState_build_closure2: function _PaymentRefundState_build_closure2(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure0: function _PaymentRefundState_build__closure0(t0) { this.value = t0; }, _PaymentRefundState_build_closure3: function _PaymentRefundState_build_closure3(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentRefundState_build__closure: function _PaymentRefundState_build__closure(t0) { this.value = t0; }, _PaymentRefundState_build_onSavePressed: function _PaymentRefundState_build_onSavePressed(t0, t1) { this.$this = t0; this.viewModel = t1; }, _PaymentRefundState_build_onSavePressed_closure: function _PaymentRefundState_build_onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _PaymentRefundState_build_onSavePressed_closure0: function _PaymentRefundState_build_onSavePressed_closure0(t0) { this.context = t0; }, _PaymentRefundState_build_closure4: function _PaymentRefundState_build_closure4(t0) { this.viewModel = t0; }, _PaymentRefundState_build_closure5: function _PaymentRefundState_build_closure5(t0) { this.onSavePressed = t0; }, _PaymentRefundState_build_closure6: function _PaymentRefundState_build_closure6(t0) { this.context = t0; }, _PaymentRefundState_build_closure7: function _PaymentRefundState_build_closure7(t0, t1) { this.onSavePressed = t0; this.context = t1; }, PaymentableEditor0: function PaymentableEditor0(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.paymentable = t1; _.index = t2; _.key = t3; }, _PaymentableEditorState0: function _PaymentableEditorState0(t0, t1, t2) { var _ = this; _._payment_refund$_amountController = t0; _._payment_refund$_invoiceId = ""; _._payment_refund$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PaymentableEditorState_didChangeDependencies_closure1: function _PaymentableEditorState_didChangeDependencies_closure1(t0) { this.$this = t0; }, _PaymentableEditorState_didChangeDependencies_closure2: function _PaymentableEditorState_didChangeDependencies_closure2(t0) { this.$this = t0; }, _PaymentableEditorState_dispose_closure: function _PaymentableEditorState_dispose_closure(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure6: function _PaymentableEditorState__onChanged_closure6(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure7: function _PaymentableEditorState__onChanged_closure7(t0) { this.paymentable = t0; }, _PaymentableEditorState__onChanged_closure8: function _PaymentableEditorState__onChanged_closure8(t0, t1) { this.$this = t0; this.paymentable = t1; }, _PaymentableEditorState__onChanged_closure9: function _PaymentableEditorState__onChanged_closure9(t0) { this.clientId = t0; }, _PaymentableEditorState_build_closure5: function _PaymentableEditorState_build_closure5() { }, _PaymentableEditorState_build_closure7: function _PaymentableEditorState_build_closure7(t0) { this.context = t0; }, _PaymentableEditorState_build_closure6: function _PaymentableEditorState_build_closure6(t0) { this.$this = t0; }, _PaymentableEditorState_build__closure2: function _PaymentableEditorState_build__closure2(t0, t1) { this.$this = t0; this.invoice = t1; }, _PaymentableEditorState_build_closure8: function _PaymentableEditorState_build_closure8(t0, t1) { this.hasMultipleInvoices = t0; this.localization = t1; }, _PaymentableEditorState_build_closure9: function _PaymentableEditorState_build_closure9(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.payment = t2; }, _PaymentableEditorState_build__closure1: function _PaymentableEditorState_build__closure1(t0) { this.$this = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore: function(store) { var t2, t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, payment = t1.paymentUIState.editing; payment.get$isNew(); t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).paymentState.map; t5 = payment.id; J.$index$asx(t4._map$_map, t5); t3.$index(t2, t1).invoiceState.toString; t3.$index(t2, t1).invoiceState.toString; return new Y.PaymentRefundVM(state, payment, new Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure(store), new Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure0(store, payment), new Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure1(store, state)); }, PaymentRefundScreen: function PaymentRefundScreen(t0) { this.key = t0; }, PaymentRefundScreen_build_closure0: function PaymentRefundScreen_build_closure0() { }, PaymentRefundScreen_build_closure: function PaymentRefundScreen_build_closure() { }, PaymentRefundVM: function PaymentRefundVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.payment = t1; _.onChanged = t2; _.onRefundPressed = t3; _.onCancelPressed = t4; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure: function PaymentRefundVM_PaymentRefundVM$fromStore_closure(t0) { this.store = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure1: function PaymentRefundVM_PaymentRefundVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentRefundVM_PaymentRefundVM$fromStore_closure0: function PaymentRefundVM_PaymentRefundVM$fromStore_closure0(t0, t1) { this.store = t0; this.payment = t1; }, PaymentRefundVM_PaymentRefundVM$fromStore__closure: function PaymentRefundVM_PaymentRefundVM$fromStore__closure(t0, t1, t2) { this.context = t0; this.store = t1; this.payment = t2; }, PaymentRefundVM_PaymentRefundVM$fromStore__closure0: function PaymentRefundVM_PaymentRefundVM$fromStore__closure0(t0) { this.context = t0; }, PaymentRefundVM_PaymentRefundVM$fromStore___closure: function PaymentRefundVM_PaymentRefundVM$fromStore___closure(t0) { this.error = t0; }, PaymentTermEditVM_PaymentTermEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, paymentTerm = t1.paymentTermUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).paymentTermState.map; t5 = paymentTerm.id; J.$index$asx(t4._map$_map, t5); return new Y.PaymentTermEditVM(paymentTerm, t3.$index(t2, t1).userCompany.company, new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure(store), new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0(store, state), new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1(store, state), state); }, PaymentTermEditScreen: function PaymentTermEditScreen(t0) { this.key = t0; }, PaymentTermEditScreen_build_closure0: function PaymentTermEditScreen_build_closure0() { }, PaymentTermEditScreen_build_closure: function PaymentTermEditScreen_build_closure() { }, PaymentTermEditVM: function PaymentTermEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.paymentTerm = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure(t0) { this.store = t0; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0: function PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, PaymentTermEditVM_PaymentTermEditVM$fromStore__closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, PaymentTermEditVM_PaymentTermEditVM$fromStore___closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.paymentTerm = t0; _.localization = t1; _.state = t2; _.store = t3; _.context = t4; }, PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0: function PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0() { }, PaymentTermEditVM_PaymentTermEditVM$fromStore____closure: function PaymentTermEditVM_PaymentTermEditVM$fromStore____closure(t0) { this.error = t0; }, ProjectOverview: function ProjectOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _ProjectOverviewState: function _ProjectOverviewState(t0) { var _ = this; _._widget = _._project_view_overview$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ProjectOverviewState_initState_closure: function _ProjectOverviewState_initState_closure(t0) { this.$this = t0; }, _ProjectOverviewState_initState__closure: function _ProjectOverviewState_initState__closure() { }, _ProjectOverviewState_build__buildView: function _ProjectOverviewState_build__buildView(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.project = t1; _.localization = t2; _.state = t3; _.client = t4; _.company = t5; _.fields = t6; }, _ProjectOverviewState_build_closure: function _ProjectOverviewState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, RecurringInvoiceListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.recurringInvoiceUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredRecurringInvoiceList().call$6(state.getUISelection$1(C.EntityType_recurringInvoice), t4.$index(t1, t3).recurringInvoiceState.map, t4.$index(t1, t3).clientState.map, t4.$index(t1, t3).recurringInvoiceState.list, t2, t4.$index(t1, t3).userState.map); t6 = t4.$index(t1, t3).recurringInvoiceState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_recurringInvoice); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "remaining_cycles", "next_send_date", "frequency", "due_date_days", "auto_bill"], type$.JSArray_legacy_String); } else t1 = t7; return new Y.RecurringInvoiceListVM(state, t5, t6, t2, new Y.RecurringInvoiceListVM_fromStore_closure(new Y.RecurringInvoiceListVM_fromStore__handleRefresh(store)), t1, new Y.RecurringInvoiceListVM_fromStore_closure0(store), new Y.RecurringInvoiceListVM_fromStore_closure1(store)); }, RecurringInvoiceListBuilder: function RecurringInvoiceListBuilder(t0) { this.key = t0; }, RecurringInvoiceListBuilder_build_closure: function RecurringInvoiceListBuilder_build_closure() { }, RecurringInvoiceListBuilder_build__closure: function RecurringInvoiceListBuilder_build__closure(t0) { this.viewModel = t0; }, RecurringInvoiceListVM: function RecurringInvoiceListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.recurringInvoiceList = t1; _.recurringInvoiceMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, RecurringInvoiceListVM_fromStore__handleRefresh: function RecurringInvoiceListVM_fromStore__handleRefresh(t0) { this.store = t0; }, RecurringInvoiceListVM_fromStore_closure: function RecurringInvoiceListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringInvoiceListVM_fromStore_closure0: function RecurringInvoiceListVM_fromStore_closure0(t0) { this.store = t0; }, RecurringInvoiceListVM_fromStore_closure1: function RecurringInvoiceListVM_fromStore_closure1(t0) { this.store = t0; }, quoteReport: function(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState) { var columns, t5, t6, t7, t8, t9, quote, t10, client, value, row, t11, t12, value0, value1, value2, value3, value4, value5, value6, value7, value8, t13, value9, value10, value11, value12, t14, value13, value14, value15, value16, value17, value18, value19, value20, value21, value22, value23, value24, value25, value26, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, t15, t16, skip, t17, value38, t18, currencyId, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, quoteReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "quote") ? J.$index$asx(reportSettings._map$_map, "quote") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), t1 = type$.JSArray_legacy_QuoteReportFields, defaultColumns = H.setRuntimeTypeInfo([C.QuoteReportFields_10, C.QuoteReportFields_2, C.QuoteReportFields_0, C.QuoteReportFields_13, C.QuoteReportFields_15], t1), t2 = quoteReportSettings.columns._list, t3 = J.getInterceptor$asx(t2), t4 = type$.legacy_QuoteReportFields; if (t3.get$isNotEmpty(t2)) { t2 = t3.map$1$1(t2, new Y.quoteReport_closure(), t4).where$1(0, new Y.quoteReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t4); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t4); for (t2 = J.get$iterator$ax(quoteMap.get$keys(quoteMap)), t3 = columns._list, t4 = J.getInterceptor$ax(t3), t5 = type$.JSArray_legacy_String, t6 = userCompany.company, t7 = type$.JSArray_legacy_ReportElement, t8 = quoteMap._map$_map, t9 = J.getInterceptor$asx(t8); t2.moveNext$0();) { quote = t9.$index(t8, t2.get$current(t2)); t10 = quote.clientId; client = J.$index$asx(clientMap._map$_map, t10); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); value = quote.isDeleted; if (value || client.isDeleted) continue; if (!t6.reportIncludeDrafts && quote.statusId === "1") continue; row = H.setRuntimeTypeInfo([], t7); for (t10 = t4.get$iterator(t3), t11 = quote.id, t12 = quote.entityType, value0 = client.city, value1 = quote.privateNotes, value2 = quote.publicNotes, value3 = quote.taxRate1, value4 = quote.taxName1, value5 = quote.taxRate2, value6 = quote.taxName2, value7 = client.vatNumber, value8 = client.postalCode, t13 = client.countryId, value9 = quote.exchangeRate, value10 = quote.amount, value11 = quote.taxAmount, value12 = value10 - value11, t14 = quote.statusId, value13 = quote.archivedAt, value14 = quote.updatedAt, value15 = quote.customSurcharge4, value16 = quote.customSurcharge3, value17 = quote.customSurcharge2, value18 = quote.customSurcharge1, value19 = quote.customValue4, value20 = quote.customValue3, value21 = quote.customValue2, value22 = quote.customValue1, value23 = quote.autoBill, value24 = quote.partial, value25 = quote.dueDate, value26 = quote.date, value27 = quote.partialDueDate, value28 = quote.poNumber, value29 = quote.discount, value30 = client.shippingAddress2, value31 = client.shippingAddress1, value32 = client.address2, value33 = client.address1, value34 = client.balance, value35 = client.displayName, value36 = quote.number, value37 = value10 / value9, t15 = client.settings, t16 = t6.settings, skip = false; t10.moveNext$0();) { t17 = t10.get$current(t10); switch (t17) { case C.QuoteReportFields_0: value38 = value10; break; case C.QuoteReportFields_1: value38 = value37; break; case C.QuoteReportFields_10: value38 = value36; break; case C.QuoteReportFields_2: value38 = value35; break; case C.QuoteReportFields_3: value38 = value34; break; case C.QuoteReportFields_4: value38 = value33; break; case C.QuoteReportFields_5: value38 = value32; break; case C.QuoteReportFields_6: value38 = value31; break; case C.QuoteReportFields_7: value38 = value30; break; case C.QuoteReportFields_9: value38 = C.Map_IF4bq.$index(0, t14); if (value38 == null) value38 = ""; break; case C.QuoteReportFields_11: value38 = value29; break; case C.QuoteReportFields_12: value38 = value28; break; case C.QuoteReportFields_14: value38 = value27; break; case C.QuoteReportFields_13: value38 = value26; break; case C.QuoteReportFields_15: value38 = value25; break; case C.QuoteReportFields_16: value38 = value24; break; case C.QuoteReportFields_17: value38 = value23; break; case C.QuoteReportFields_18: value38 = value22; break; case C.QuoteReportFields_19: value38 = value21; break; case C.QuoteReportFields_20: value38 = value20; break; case C.QuoteReportFields_21: value38 = value19; break; case C.QuoteReportFields_22: value38 = value18; break; case C.QuoteReportFields_23: value38 = value17; break; case C.QuoteReportFields_24: value38 = value16; break; case C.QuoteReportFields_25: value38 = value15; break; case C.QuoteReportFields_26: value38 = value14; break; case C.QuoteReportFields_27: value38 = value13; break; case C.QuoteReportFields_28: value38 = value; break; case C.QuoteReportFields_29: value38 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["3", "4"], t5), t14); break; case C.QuoteReportFields_30: value38 = value11; break; case C.QuoteReportFields_31: value38 = value12; break; case C.QuoteReportFields_32: value38 = value9; break; case C.QuoteReportFields_8: t18 = J.$index$asx(staticState.countryMap._map$_map, t13); value38 = t18 == null ? _null : t18.name; if (value38 == null) value38 = ""; break; case C.QuoteReportFields_37: value38 = value8; break; case C.QuoteReportFields_35: value38 = value7; break; case C.QuoteReportFields_41: value38 = value4; break; case C.QuoteReportFields_38: value38 = value3; break; case C.QuoteReportFields_42: value38 = value6; break; case C.QuoteReportFields_39: value38 = value5; break; case C.QuoteReportFields_43: value38 = value4; break; case C.QuoteReportFields_40: value38 = value3; break; case C.QuoteReportFields_33: value38 = value2; break; case C.QuoteReportFields_34: value38 = value1; break; case C.QuoteReportFields_36: value38 = value0; break; default: value38 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t17), _null, reportsUIState, userCompany, value38)) skip = true; t18 = J.getInterceptor$(value38); if (t18.get$runtimeType(value38) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value38, t12, t11)); else if (t18.get$runtimeType(value38) === C.Type_double_K1J || t18.get$runtimeType(value38) === C.Type_int_tHn) { currencyId = t15.currencyId; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.QuoteReportFields_1], t1), t17)) { currencyId = t16.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value38, _null, currencyId, value9, t12, t11)); } else row.push(new A.ReportStringValue(value38, t12, t11)); } if (!skip) data.push(row); } selectedColumns = t4.map$1$1(t3, new Y.quoteReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new Y.quoteReport_closure2(quoteReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_QuoteReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_H6l, new Y.quoteReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new Y.quoteReport_closure4(), t1), true, t2), data, true); }, QuoteReportFields: function QuoteReportFields(t0) { this._quote_report$_name = t0; }, memoizedQuoteReport_closure: function memoizedQuoteReport_closure() { }, quoteReport_closure: function quoteReport_closure() { }, quoteReport_closure0: function quoteReport_closure0() { }, quoteReport_closure1: function quoteReport_closure1() { }, quoteReport_closure2: function quoteReport_closure2(t0, t1) { this.quoteReportSettings = t0; this.selectedColumns = t1; }, quoteReport_closure3: function quoteReport_closure3() { }, quoteReport_closure4: function quoteReport_closure4() { }, WorkflowSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new Y.WorkflowSettingsVM(state, new Y.WorkflowSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.get$settings(), new Y.WorkflowSettingsVM_fromStore_closure0(store)); }, WorkflowSettingsScreen: function WorkflowSettingsScreen(t0) { this.key = t0; }, WorkflowSettingsScreen_build_closure: function WorkflowSettingsScreen_build_closure() { }, WorkflowSettingsVM: function WorkflowSettingsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; }, WorkflowSettingsVM_fromStore_closure0: function WorkflowSettingsVM_fromStore_closure0(t0) { this.store = t0; }, WorkflowSettingsVM_fromStore_closure: function WorkflowSettingsVM_fromStore_closure(t0) { this.store = t0; }, WorkflowSettingsVM_fromStore__closure: function WorkflowSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, SubscriptionListItem: function SubscriptionListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.subscription = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, SubscriptionListItem_build_closure1: function SubscriptionListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, SubscriptionListItem_build_closure0: function SubscriptionListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, SubscriptionListItem_build_closure: function SubscriptionListItem_build_closure(t0) { this.$this = t0; }, TaskScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).taskState.toString; t5 = $.$get$memoizedFilteredTaskList(); t6 = state.getUISelection$1(C.EntityType_task); t7 = t4.$index(t1, t3).taskState.map; t8 = t4.$index(t1, t3).clientState.map; t9 = t4.$index(t1, t3).userState.map; t10 = t4.$index(t1, t3).projectState.map; t11 = t4.$index(t1, t3).invoiceState.map; t12 = t4.$index(t1, t3).taskStatusState.map; t13 = t4.$index(t1, t3).taskState.list; t2 = t2.taskUIState.listUIState; t13 = t5.call$9(t6, t7, t8, t9, t10, t11, t12, t13, t2); t4.$index(t1, t3).toString; t2.toString; return new Y.TaskScreenVM(t13); }, TaskScreenBuilder: function TaskScreenBuilder(t0) { this.key = t0; }, TaskScreenBuilder_build_closure: function TaskScreenBuilder_build_closure() { }, TaskScreenVM: function TaskScreenVM(t0) { this.taskList = t0; }, TaskStatusScreen: function TaskStatusScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskStatusScreen_build_closure9: function TaskStatusScreen_build_closure9(t0) { this.store = t0; }, TaskStatusScreen_build_closure7: function TaskStatusScreen_build_closure7(t0) { this.store = t0; }, TaskStatusScreen_build_closure8: function TaskStatusScreen_build_closure8(t0) { this.store = t0; }, TaskStatusScreen_build_closure4: function TaskStatusScreen_build_closure4(t0) { this.store = t0; }, TaskStatusScreen_build_closure5: function TaskStatusScreen_build_closure5(t0) { this.store = t0; }, TaskStatusScreen_build_closure: function TaskStatusScreen_build_closure(t0) { this.store = t0; }, TaskStatusScreen_build_closure0: function TaskStatusScreen_build_closure0(t0) { this.store = t0; }, TaskStatusScreen_build_closure1: function TaskStatusScreen_build_closure1(t0) { this.store = t0; }, TaskStatusScreen_build_closure2: function TaskStatusScreen_build_closure2(t0) { this.store = t0; }, TaskStatusScreen_build_closure3: function TaskStatusScreen_build_closure3(t0) { this.store = t0; }, TaskStatusScreen_build_closure6: function TaskStatusScreen_build_closure6(t0) { this.context = t0; }, TokenEdit: function TokenEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TokenEditState: function _TokenEditState(t0, t1, t2, t3) { var _ = this; _._token_edit$_debouncer = t0; _._token_edit$_nameController = t1; _._token_edit$_controllers = t2; _._token_edit$_autoValidate = false; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _TokenEditState_didChangeDependencies_closure: function _TokenEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TokenEditState_didChangeDependencies_closure0: function _TokenEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TokenEditState_dispose_closure: function _TokenEditState_dispose_closure(t0) { this.$this = t0; }, _TokenEditState__onChanged_closure: function _TokenEditState__onChanged_closure(t0) { this.$this = t0; }, _TokenEditState__onChanged_closure0: function _TokenEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.token = t1; }, _TokenEditState_build_closure0: function _TokenEditState_build_closure0(t0) { this.viewModel = t0; }, _TokenEditState_build_closure1: function _TokenEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TokenEditState_build__closure: function _TokenEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _TokenEditState_build_closure: function _TokenEditState_build_closure(t0, t1, t2) { this.$this = t0; this.localization = t1; this.viewModel = t2; }, _TokenEditState_build__closure0: function _TokenEditState_build__closure0(t0) { this.localization = t0; }, TokenView: function TokenView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TokenViewState: function _TokenViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TokenViewState_build_closure: function _TokenViewState_build_closure(t0) { this.viewModel = t0; }, _TokenListTile: function _TokenListTile(t0, t1) { this.token = t0; this.key = t1; }, _TokenListTile_build_closure: function _TokenListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, UserEditVM_UserEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, user = t1.userUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).userState.map; t5 = user.id; J.$index$asx(t4._map$_map, t5); t3.$index(t2, t1).toString; return new Y.UserEditVM(user, t3.$index(t2, t1).userCompany.company, new Y.UserEditVM_UserEditVM$fromStore_closure(store), new Y.UserEditVM_UserEditVM$fromStore_closure0(store, state), new Y.UserEditVM_UserEditVM$fromStore_closure1(store, state), state); }, UserEditScreen: function UserEditScreen(t0) { this.key = t0; }, UserEditScreen_build_closure0: function UserEditScreen_build_closure0() { }, UserEditScreen_build_closure: function UserEditScreen_build_closure() { }, UserEditVM: function UserEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.company = t1; _.onUserChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, UserEditVM_UserEditVM$fromStore_closure: function UserEditVM_UserEditVM$fromStore_closure(t0) { this.store = t0; }, UserEditVM_UserEditVM$fromStore_closure1: function UserEditVM_UserEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, UserEditVM_UserEditVM$fromStore_closure0: function UserEditVM_UserEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, UserEditVM_UserEditVM$fromStore__closure: function UserEditVM_UserEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, UserEditVM_UserEditVM$fromStore___closure: function UserEditVM_UserEditVM$fromStore___closure(t0, t1, t2) { this.store = t0; this.completer = t1; this.user = t2; }, UserEditVM_UserEditVM$fromStore___closure0: function UserEditVM_UserEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, UserEditVM_UserEditVM$fromStore___closure1: function UserEditVM_UserEditVM$fromStore___closure1() { }, UserEditVM_UserEditVM$fromStore____closure: function UserEditVM_UserEditVM$fromStore____closure(t0) { this.error = t0; }, VendorViewDetails: function VendorViewDetails(t0, t1) { this.vendor = t0; this.key = t1; }, _VendorViewDetailsState: function _VendorViewDetailsState(t0) { var _ = this; _._widget = _._launched = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _VendorViewDetailsState_build__buildDetailsList: function _VendorViewDetailsState_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.vendor = t1; _.localization = t2; _.context = t3; }, _VendorViewDetailsState_build__buildDetailsList_closure: function _VendorViewDetailsState_build__buildDetailsList_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.listTiles = t1; _.localization = t2; _.context = t3; }, _VendorViewDetailsState_build__buildDetailsList__closure1: function _VendorViewDetailsState_build__buildDetailsList__closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList___closure0: function _VendorViewDetailsState_build__buildDetailsList___closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure2: function _VendorViewDetailsState_build__buildDetailsList__closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList___closure: function _VendorViewDetailsState_build__buildDetailsList___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.contact = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure0: function _VendorViewDetailsState_build__buildDetailsList_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure0: function _VendorViewDetailsState_build__buildDetailsList__closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure1: function _VendorViewDetailsState_build__buildDetailsList_closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList__closure: function _VendorViewDetailsState_build__buildDetailsList__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, _VendorViewDetailsState_build__buildDetailsList_closure2: function _VendorViewDetailsState_build__buildDetailsList_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.vendor = t2; }, WebhookViewVM_WebhookViewVM$fromStore: function(store) { var t4, t5, webhook, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).webhookState.map; t2 = t2.webhookUIState.selectedId; webhook = J.$index$asx(t5._map$_map, t2); if (webhook == null) webhook = E.WebhookEntity_WebhookEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; webhook.get$isNew(); return new Y.WebhookViewVM(state, webhook, t1, new Y.WebhookViewVM_WebhookViewVM$fromStore_closure(store)); }, WebhookViewScreen: function WebhookViewScreen(t0) { this.key = t0; }, WebhookViewScreen_build_closure0: function WebhookViewScreen_build_closure0() { }, WebhookViewScreen_build_closure: function WebhookViewScreen_build_closure(t0) { this.$this = t0; }, WebhookViewVM: function WebhookViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.webhook = t1; _.company = t2; _.onBackPressed = t3; }, WebhookViewVM_WebhookViewVM$fromStore_closure: function WebhookViewVM_WebhookViewVM$fromStore_closure(t0) { this.store = t0; }, round: function(value, precision) { var fac, result; if (isNaN(value)) return 0; fac = Math.pow(10, precision); result = value * fac; return C.JSNumber_methods.round$0(C.JSString_methods.contains$1(H.S(result), "999999") ? result + 0.000001 : result) / fac; }, parseInt: function(value, zeroIsNull) { var intValue, t1 = P.RegExp_RegExp("[^0-9\\.\\-]", true, false); value.toString; intValue = H.Primitives_parseInt(H.stringReplaceAllUnchecked(value, t1, ""), null); if (intValue == null) intValue = 0; return intValue === 0 && zeroIsNull ? null : intValue; }, parseDouble: function(value, zeroIsNull) { var state, t2, doubleValue, t1 = $.$get$navigatorKey(); t1.toString; state = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; if (J.$index$asx(t1._list, t2).userCompany.company.useCommaAsDecimalPlace && J.contains$1$asx(value, ",")) { value = H.stringReplaceAllUnchecked(value, ".", ""); value = H.stringReplaceAllUnchecked(value, ",", "."); } t1 = P.RegExp_RegExp("[^0-9\\.\\-]", true, false); value.toString; doubleValue = H.Primitives_parseDouble(H.stringReplaceAllUnchecked(value, t1, "")); if (doubleValue == null) doubleValue = 0; return doubleValue === 0 && zeroIsNull ? null : doubleValue; }, formatSize: function(size) { return size > 1000000 ? "" + C.JSNumber_methods.toInt$0(Y.round(size / 1000000, 1)) + " MB" : "" + C.JSNumber_methods.toInt$0(Y.round(size / 1000, 0)) + " KB"; }, formatNumber: function(value, context, clientId, currencyId, formatNumberType, roundToPrecision, showCurrencyCode, zeroIsNull) { var state, t1, t2, t3, company, client, t4, t5, t6, group, countryId, currency, t7, t8, companyCurrency, country, companyCountry, thousandSeparator, decimalSeparator, swapCurrencySymbol, thousandSeparator0, decimalSeparator0, formatted, formatter, prefix, _null = null, _s6_ = "custom", _s11_ = "#,##0.#####"; if ((zeroIsNull || formatNumberType === C.FormatNumberType_4 || formatNumberType === C.FormatNumberType_5) && value === 0) return _null; else if (value == null) return ""; if (formatNumberType === C.FormatNumberType_6) return Y.formatDuration(P.Duration$(0, 0, 0, 0, 0, C.JSNumber_methods.toInt$0(value)), true); state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); company = t3.$index(t1, t2).userCompany.company; client = J.$index$asx(t3.$index(t1, t2).clientState.map._map$_map, clientId); t4 = t3.$index(t1, t2).groupState.map; t5 = client == null; t6 = t5 ? _null : client.groupId; group = J.$index$asx(t4._map$_map, t6); t4 = t5 ? _null : client.countryId; countryId = (t4 == null ? "" : t4).length !== 0 && client.get$hasNameSet() ? client.countryId : company.settings.countryId; if (currencyId === "-1") { currencyId = company.settings.currencyId; if (currencyId == null) currencyId = "1"; } else if (!(currencyId != null && currencyId.length !== 0)) if (!t5 && client.get$hasCurrency()) currencyId = client.settings.currencyId; else if (group != null && group.get$hasCurrency()) currencyId = group.settings.currencyId; else { currencyId = company.settings.currencyId; if (currencyId == null) currencyId = "1"; } t4 = state.staticState; t5 = t4.currencyMap._map$_map; t6 = J.getInterceptor$asx(t5); currency = t6.$index(t5, currencyId); t7 = company.settings; t8 = t7.currencyId; companyCurrency = t6.$index(t5, t8 == null ? "1" : t8); t4 = t4.countryMap._map$_map; t5 = J.getInterceptor$asx(t4); country = t5.$index(t4, countryId); if (country == null) country = L.CountryEntity_CountryEntity(); companyCountry = t5.$index(t4, t7.countryId); if (companyCountry == null) companyCountry = L.CountryEntity_CountryEntity(); if (currency == null) return ""; if (formatNumberType === C.FormatNumberType_0 && roundToPrecision) value = Y.round(value, currency.precision); thousandSeparator = currency.thousandSeparator; decimalSeparator = currency.decimalSeparator; swapCurrencySymbol = companyCurrency.swapCurrencySymbol; if (currency.id === "3") { swapCurrencySymbol = companyCountry.swapCurrencySymbol; thousandSeparator0 = country.thousandSeparator; if (thousandSeparator0.length !== 0) thousandSeparator = thousandSeparator0; decimalSeparator0 = country.decimalSeparator; if (decimalSeparator0.length !== 0) decimalSeparator = decimalSeparator0; } if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.FormatNumberType_4, C.FormatNumberType_5], type$.JSArray_legacy_FormatNumberType), formatNumberType)) { decimalSeparator = t3.$index(t1, t2).userCompany.company.useCommaAsDecimalPlace ? "," : "."; thousandSeparator = ""; } $.$get$numberFormatSymbols().$indexSet(0, _s6_, B.NumberSymbols$("", "", decimalSeparator, "", "", thousandSeparator, "", "-", _s6_, "", "", "", "", "+", "", "0")); if (formatNumberType === C.FormatNumberType_2) return S.NumberFormat_NumberFormat("#,##0", _s6_).format$1(value); else if (formatNumberType === C.FormatNumberType_3) return S.NumberFormat_NumberFormat(_s11_, _s6_).format$1(value); else if (formatNumberType === C.FormatNumberType_5) return S.NumberFormat_NumberFormat("#.#####", _s6_).format$1(value); else if (formatNumberType === C.FormatNumberType_4) { t1 = currency.precision; if (t1 === 0) return S.NumberFormat_NumberFormat("#.#####", _s6_).format$1(value); else if (t1 === 1) return S.NumberFormat_NumberFormat("#.0####", _s6_).format$1(value); else if (t1 === 2) return S.NumberFormat_NumberFormat("#.00###", _s6_).format$1(value); else if (t1 === 3) return S.NumberFormat_NumberFormat("#.000##", _s6_).format$1(value); formatted = _null; } else { if (formatNumberType === C.FormatNumberType_1) formatter = S.NumberFormat_NumberFormat(_s11_, _s6_); else { t1 = currency.precision; if (t1 === 0) formatter = S.NumberFormat_NumberFormat(_s11_, _s6_); else if (t1 === 1) formatter = S.NumberFormat_NumberFormat("#,##0.0####", _s6_); else if (t1 === 2) formatter = S.NumberFormat_NumberFormat("#,##0.00###", _s6_); else formatter = t1 === 3 ? S.NumberFormat_NumberFormat("#,##0.000##", _s6_) : _null; } formatted = formatter.format$1(value < 0 ? value * -1 : value); } prefix = value < 0 ? "-" : ""; if (formatNumberType === C.FormatNumberType_1) return prefix + H.S(formatted) + "%"; else { t1 = showCurrencyCode == null ? t7.showCurrencyCode : showCurrencyCode; if (t1 === true || currency.symbol.length === 0) return prefix + H.S(formatted) + " " + currency.code; else { t1 = currency.symbol; if (swapCurrencySymbol) return prefix + H.S(formatted) + " " + C.JSString_methods.trim$0(t1); else return prefix + t1 + H.S(formatted); } } }, formatURL: function(url) { if (C.JSString_methods.startsWith$1(url, "http")) return url; return "http://" + url; }, formatAddress: function(delimiter, isShipping, object) { var address2, city, state, postalCode, str, address1 = isShipping ? object.get$shippingAddress1() : object.get$address1(); if (address1 == null) address1 = ""; address2 = isShipping ? object.get$shippingAddress2() : object.get$address2(); if (address2 == null) address2 = ""; city = isShipping ? object.get$shippingCity() : object.get$city(object); if (city == null) city = ""; state = isShipping ? object.get$shippingState() : object.get$state(object); if (state == null) state = ""; postalCode = isShipping ? object.get$shippingPostalCode() : object.get$postalCode(object); if (postalCode == null) postalCode = ""; str = address1.length !== 0 ? address1 + delimiter : ""; if (address2.length !== 0) str += address2 + delimiter; if (city.length !== 0) str += city + ", "; if (state.length !== 0) str += state + " "; return postalCode.length !== 0 ? str + postalCode : str; }, convertDateTimeToSqlDate: function(date) { return C.JSArray_methods.get$first((date == null ? new P.DateTime(Date.now(), false) : date).toIso8601String$0().split("T")); }, convertSqlDateToDateTime: function(date) { var parts = (date == null ? Y.convertDateTimeToSqlDate(null) : date).split("-"), t1 = Y.parseInt(parts[0], false), t2 = Y.parseInt(parts[1], false), t3 = Y.parseInt(parts[2], false); t1 = H.Primitives_valueFromDecomposedDate(t1, t2, t3, 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, true); }, formatDuration: function(duration, showSeconds) { var parts, time = J.toString$0$(duration).split(".")[0]; if (showSeconds) return time; else { parts = time.split(":"); return H.S(parts[0]) + ":" + H.S(parts[1]); } }, parseDate: function(value, context) { var state, t1, t2, company, dateFormats, dateFormatId; if (value.length === 0) return ""; state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = J.$index$asx(t1._list, t2).userCompany.company; dateFormats = state.staticState.dateFormatMap; dateFormatId = company.settings.dateFormatId; dateFormatId = (dateFormatId == null ? "" : dateFormatId).length !== 0 ? dateFormatId : "5"; return Y.convertDateTimeToSqlDate(A.DateFormat$(J.$index$asx(dateFormats._map$_map, dateFormatId).format, U.localeSelector(state))._date_format$_parse$3$strict$utc(value, false, false)); }, parseTime: function(value, context) { var state, t1, t2, company, enableMilitaryTime, format; if (value.length === 0) return null; state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = J.$index$asx(t1._list, t2).userCompany.company; t2 = C.JSString_methods.allMatches$1(":", value); t2 = t2.get$length(t2); enableMilitaryTime = company.settings.enableMilitaryTime; if (t2 >= 2) format = enableMilitaryTime ? "H:mm:ss" : "h:mm:ss a"; else format = enableMilitaryTime ? "H:mm" : "h:mm a"; return A.DateFormat$("y-M-D " + format, U.localeSelector(state))._date_format$_parse$3$strict$utc("2000-01-01 " + value, false, false); }, formatDate: function(value, context, showDate, showSeconds, showTime) { var state, t1, t2, company, format, dateFormats, dateFormatId, formatter, parsed, _s9_ = "h:mm:ss a"; if (value == null || value.length === 0) return ""; state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; company = J.$index$asx(t1._list, t2).userCompany.company; if (showTime) { if (!showDate) format = company.settings.enableMilitaryTime ? "H:mm:ss" : _s9_; else { dateFormats = state.staticState.dateFormatMap; t1 = company.settings; dateFormatId = t1.dateFormatId; dateFormatId = (dateFormatId == null ? "" : dateFormatId).length !== 0 ? dateFormatId : "5"; format = J.$index$asx(dateFormats._map$_map, dateFormatId).format; t1 = t1.enableMilitaryTime ? "H:mm:ss" : _s9_; format += " " + t1; } formatter = A.DateFormat$(format, U.localeSelector(state)); parsed = P.DateTime_tryParse(value); return parsed == null ? "" : formatter.format$1(parsed.toLocal$0()); } else { dateFormats = state.staticState.dateFormatMap; t1 = company.settings.dateFormatId; formatter = A.DateFormat$(J.$index$asx(dateFormats._map$_map, t1).format, U.localeSelector(state)); parsed = P.DateTime_tryParse(value); return parsed == null ? "" : formatter.format$1(parsed); } }, formatApiUrl: function(url) { url = Y.cleanApiUrl(url); if (url.length === 0) return ""; return url + "/api/v1"; }, cleanApiUrl: function(url) { return C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(C.JSString_methods.trim$0(url == null ? "" : url), P.RegExp_RegExp("/api/v1", true, false), ""), P.RegExp_RegExp("/$", true, false), ""); }, formatCustomValue: function(context, field, value) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; switch (J.$index$asx(t2._list, t3).userCompany.company.getCustomFieldType$1(field)) { case "switch": return value === "yes" ? t1.get$yes() : t1.get$no(); case "date": return Y.formatDate(value, context, true, true, false); default: return value; } }, FormatNumberType: function FormatNumberType(t0) { this._formatting$_name = t0; }, Level: function Level(t0, t1) { this.name = t0; this.value = t1; }, ImageHandler$: function(alignment, color, colorBlendMode, errorBuilder, fadeInCurve, fadeInDuration, fadeOutCurve, fadeOutDuration, filterQuality, fit, height, image, imageBuilder, matchTextDirection, placeholderBuilder, placeholderFadeInDuration, progressIndicatorBuilder, repeat, width) { var t1 = new Y.ImageHandler(image, width, height, fit, alignment, repeat, false, color, colorBlendMode, filterQuality, imageBuilder, placeholderBuilder, progressIndicatorBuilder, errorBuilder, placeholderFadeInDuration, fadeOutDuration, fadeOutCurve, fadeInDuration, fadeInCurve); t1.__ImageHandler__placeholderType = t1._definePlaceholderType$0(); return t1; }, _PlaceholderType: function _PlaceholderType(t0) { this._image_handler$_name = t0; }, ImageHandler: function ImageHandler(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.image = t0; _.width = t1; _.height = t2; _.fit = t3; _.alignment = t4; _.repeat = t5; _.matchTextDirection = t6; _.color = t7; _.colorBlendMode = t8; _.filterQuality = t9; _.__ImageHandler__placeholderType = $; _.imageBuilder = t10; _.placeholderBuilder = t11; _.progressIndicatorBuilder = t12; _.errorBuilder = t13; _.placeholderFadeInDuration = t14; _.fadeOutDuration = t15; _.fadeOutCurve = t16; _.fadeInDuration = t17; _.fadeInCurve = t18; _._isLoaded = _._image_handler$_wasSynchronouslyLoaded = false; }, PhotoViewDefaultError: function PhotoViewDefaultError(t0, t1) { this.decoration = t0; this.key = t1; }, PhotoViewDefaultLoading: function PhotoViewDefaultLoading(t0, t1) { this.event = t0; this.key = t1; }, QrRsBlock_getRSBlocks: function(typeNumber, errorCorrectLevel) { var i, t1, count, totalCount, dataCount, j, rsBlock = Y._getRsBlockTable(typeNumber, errorCorrectLevel), $length = rsBlock.length / 3 | 0, list = H.setRuntimeTypeInfo([], type$.JSArray_QrRsBlock); for (i = 0; i < $length; ++i) { t1 = i * 3; count = rsBlock[t1]; totalCount = rsBlock[t1 + 1]; dataCount = rsBlock[t1 + 2]; for (j = 0; j < count; ++j) list.push(new Y.QrRsBlock(totalCount, dataCount)); } return list; }, _getRsBlockTable: function(typeNumber, errorCorrectLevel) { switch (errorCorrectLevel) { case 1: return C.List_exN[(typeNumber - 1) * 4]; case 0: return C.List_exN[(typeNumber - 1) * 4 + 1]; case 3: return C.List_exN[(typeNumber - 1) * 4 + 2]; case 2: return C.List_exN[(typeNumber - 1) * 4 + 3]; default: throw H.wrapException(P.ArgumentError$("bad rs block @ typeNumber: " + typeNumber + "/errorCorrectLevel:" + errorCorrectLevel)); } }, QrRsBlock: function QrRsBlock(t0, t1) { this.totalCount = t0; this.dataCount = t1; }, FileLocation$_: function(file, offset) { if (offset < 0) H.throwExpression(P.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > file._decodedChars.length) H.throwExpression(P.RangeError$("Offset " + offset + string$.x20must_ + file.get$length(file) + ".")); return new Y.FileLocation(file, offset); }, SourceFile: function SourceFile(t0, t1, t2) { var _ = this; _.url = t0; _._lineStarts = t1; _._decodedChars = t2; _._cachedLine = null; }, FileLocation: function FileLocation(t0, t1) { this.file = t0; this.offset = t1; }, _FileSpan: function _FileSpan(t0, t1, t2) { this.file = t0; this._file$_start = t1; this._file$_end = t2; }, SourceSpanMixin: function SourceSpanMixin() { }, UrlLauncherPlugin: function UrlLauncherPlugin(t0, t1) { this._window = t0; this._isSafari = false; this._instanceToken = t1; }, BoxValueConstraints$: function(constraints, value, $T) { return new Y.BoxValueConstraints(value, constraints.minWidth, constraints.maxWidth, constraints.minHeight, constraints.maxHeight, $T._eval$1("BoxValueConstraints<0>")); }, BoxValueConstraints: function BoxValueConstraints(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.minWidth = t1; _.maxWidth = t2; _.minHeight = t3; _.maxHeight = t4; _.$ti = t5; }, ValueLayoutBuilder: function ValueLayoutBuilder(t0, t1, t2) { this.builder = t0; this.key = t1; this.$ti = t2; }, _RenderValueLayoutBuilder: function _RenderValueLayoutBuilder(t0, t1, t2, t3, t4) { var _ = this; _.RenderConstrainedLayoutBuilder__callback = t0; _.RenderConstrainedLayoutBuilder__needsBuild = t1; _.RenderConstrainedLayoutBuilder__previousConstraints = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t4; }, __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin: function __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin() { }, __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder: function __RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder() { }, groupBy: function(values, key, $S, $T) { var t1, _i, element, t2, t3, map = P.LinkedHashMap_LinkedHashMap$_empty($T, $S._eval$1("List<0>")); for (t1 = $S._eval$1("JSArray<0>"), _i = 0; _i < 1; ++_i) { element = values[_i]; t2 = key.call$1(element); t3 = map.$index(0, t2); if (t3 == null) { t3 = H.setRuntimeTypeInfo([], t1); map.$indexSet(0, t2, t3); t2 = t3; } else t2 = t3; t2.push(element); } return map; } }, S = {Inflate: function Inflate(t0, t1, t2, t3) { var _ = this; _.__Inflate_input = t0; _.inputSet = false; _.output = t1; _._bitBufferLen = _._inflate$_bitBuffer = 0; _._fixedLiteralLengthTable = t2; _._fixedDistanceTable = t3; }, NullSerializer: function NullSerializer(t0) { this.types = t0; }, SmallTickRendererSpec$: function(axisLineStyle, labelAnchor, labelCollisionOffsetFromAxisPx, labelCollisionOffsetFromTickPx, labelCollisionRotation, labelJustification, labelOffsetFromAxisPx, labelOffsetFromTickPx, labelRotation, labelStyle, lineStyle, minimumPaddingBetweenLabelsPx, tickLengthPx, $D) { return new S.SmallTickRendererSpec(lineStyle, tickLengthPx, labelStyle, labelAnchor, labelJustification, labelOffsetFromAxisPx, labelCollisionOffsetFromAxisPx, labelOffsetFromTickPx, labelCollisionOffsetFromTickPx, minimumPaddingBetweenLabelsPx, labelRotation, labelCollisionRotation, axisLineStyle, $D._eval$1("SmallTickRendererSpec<0>")); }, SmallTickRendererSpec: function SmallTickRendererSpec(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.lineStyle = t0; _.tickLengthPx = t1; _.labelStyle = t2; _.labelAnchor = t3; _.labelJustification = t4; _.labelOffsetFromAxisPx = t5; _.labelCollisionOffsetFromAxisPx = t6; _.labelOffsetFromTickPx = t7; _.labelCollisionOffsetFromTickPx = t8; _.minimumPaddingBetweenLabelsPx = t9; _.labelRotation = t10; _.labelCollisionRotation = t11; _.axisLineStyle = t12; _.$ti = t13; }, SmallTickDrawStrategy: function SmallTickDrawStrategy(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.tickLength = t0; _.lineStyle = t1; _.chartContext = t2; _.graphicsFactory = t3; _.axisLineStyle = t4; _.labelStyle = t5; _.tickLabelJustification = t6; _._defaultTickLabelAnchor = t7; _._labelDefaultOffsetFromAxisPx = t8; _._labelCollisionOffsetFromAxisPx = t9; _._labelDefaultOffsetFromTickPx = t10; _._labelCollisionOffsetFromTickPx = t11; _._labelDefaultRotation = t12; _._labelCollisionRotation = t13; _._rotateOnCollision = t14; _.minimumPaddingBetweenLabelsPx = t15; _.$ti = t16; }, Tick: function Tick(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.textElement = t1; _.locationPx = t2; _.labelOffsetPx = t3; _.$ti = t4; }, SelectionTrigger: function SelectionTrigger(t0) { this._selection_trigger$_name = t0; }, getAnimatedColor: function(previous, target, animationPercent) { var g, b, t1 = target.r, t2 = previous.r, r = C.JSNumber_methods.round$0((t1 - t2) * animationPercent + t2); t2 = target.g; t1 = previous.g; g = C.JSNumber_methods.round$0((t2 - t1) * animationPercent + t1); t1 = target.b; t2 = previous.b; b = C.JSNumber_methods.round$0((t1 - t2) * animationPercent + t2); t2 = target.a; t1 = previous.a; return new K.Color0(r, g, b, C.JSNumber_methods.round$0((t2 - t1) * animationPercent + t1), null, null); }, FillPatternType: function FillPatternType(t0) { this._chart_canvas0$_name = t0; }, ChartCanvas: function ChartCanvas(t0, t1) { this.canvas = t0; this._chart_canvas$_paint = t1; }, ErrorCodes_EINVAL: function() { return S.ErrorCodes__platform(new S.ErrorCodes_EINVAL_closure()); }, ErrorCodes_EISDIR: function() { return S.ErrorCodes__platform(new S.ErrorCodes_EISDIR_closure()); }, ErrorCodes_ELOOP: function() { return S.ErrorCodes__platform(new S.ErrorCodes_ELOOP_closure()); }, ErrorCodes_ENOENT: function() { return S.ErrorCodes__platform(new S.ErrorCodes_ENOENT_closure()); }, ErrorCodes_ENOTDIR: function() { return S.ErrorCodes__platform(new S.ErrorCodes_ENOTDIR_closure()); }, ErrorCodes_ENOTEMPTY: function() { return S.ErrorCodes__platform(new S.ErrorCodes_ENOTEMPTY_closure()); }, ErrorCodes__platform: function(getCode) { var t1 = C.Map_IMoEm.$index(0, "linux"); if (t1 == null) t1 = C.Map_IMoEm.$index(0, "linux"); t1.toString; return getCode.call$1(t1); }, ErrorCodes_EINVAL_closure: function ErrorCodes_EINVAL_closure() { }, ErrorCodes_EISDIR_closure: function ErrorCodes_EISDIR_closure() { }, ErrorCodes_ELOOP_closure: function ErrorCodes_ELOOP_closure() { }, ErrorCodes_ENOENT_closure: function ErrorCodes_ENOENT_closure() { }, ErrorCodes_ENOTDIR_closure: function ErrorCodes_ENOTDIR_closure() { }, ErrorCodes_ENOTEMPTY_closure: function ErrorCodes_ENOTEMPTY_closure() { }, _LinuxCodes: function _LinuxCodes() { }, _MacOSCodes: function _MacOSCodes() { }, _WindowsCodes: function _WindowsCodes() { }, ProxyAnimation$: function(animation) { var t1 = new S.ProxyAnimation(new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0); t1._animations$_parent = animation; if (animation == null) { t1._animations$_status = C.AnimationStatus_0; t1._animations$_value = 0; } return t1; }, CurvedAnimation$: function(curve, $parent, reverseCurve) { var t1 = new S.CurvedAnimation($parent, curve, reverseCurve); t1._updateCurveDirection$1($parent.get$status($parent)); $parent.addStatusListener$1(t1.get$_updateCurveDirection()); return t1; }, TrainHoppingAnimation$: function(_currentTrain, _nextTrain, onSwitchedTrain) { var t2, t3, t1 = new S.TrainHoppingAnimation(_currentTrain, _nextTrain, onSwitchedTrain, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); if (J.$eq$(_currentTrain.get$value(_currentTrain), _nextTrain.get$value(_nextTrain))) { t1._currentTrain = _nextTrain; t1._nextTrain = null; t2 = _nextTrain; } else { if (_currentTrain.get$value(_currentTrain) > _nextTrain.get$value(_nextTrain)) t1._mode = C._TrainHoppingMode_1; else t1._mode = C._TrainHoppingMode_0; t2 = _currentTrain; } t2.addStatusListener$1(t1.get$_statusChangeHandler()); t2 = t1.get$_valueChangeHandler(); t1._currentTrain.addListener$1(0, t2); t3 = t1._nextTrain; if (t3 != null) t3.addListener$1(0, t2); return t1; }, AnimationMin$: function(first, next, $T) { return new S.AnimationMin(first, next, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0, $T._eval$1("AnimationMin<0>")); }, _AlwaysCompleteAnimation: function _AlwaysCompleteAnimation() { }, _AlwaysDismissedAnimation: function _AlwaysDismissedAnimation() { }, AlwaysStoppedAnimation: function AlwaysStoppedAnimation(t0, t1) { this.value = t0; this.$ti = t1; }, AnimationWithParentMixin: function AnimationWithParentMixin() { }, ProxyAnimation: function ProxyAnimation(t0, t1, t2) { var _ = this; _._animations$_parent = _._animations$_value = _._animations$_status = null; _.AnimationLocalStatusListenersMixin__statusListeners = t0; _.AnimationLocalListenersMixin__listeners = t1; _.AnimationLazyListenerMixin__listenerCounter = t2; }, ReverseAnimation: function ReverseAnimation(t0, t1, t2) { this.parent = t0; this.AnimationLocalStatusListenersMixin__statusListeners = t1; this.AnimationLazyListenerMixin__listenerCounter = t2; }, CurvedAnimation: function CurvedAnimation(t0, t1, t2) { var _ = this; _.parent = t0; _.curve = t1; _.reverseCurve = t2; _._curveDirection = null; }, _TrainHoppingMode: function _TrainHoppingMode(t0) { this._animations$_name = t0; }, TrainHoppingAnimation: function TrainHoppingAnimation(t0, t1, t2, t3, t4) { var _ = this; _._currentTrain = t0; _._nextTrain = t1; _._mode = null; _.onSwitchedTrain = t2; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t3; _.AnimationLocalListenersMixin__listeners = t4; }, CompoundAnimation: function CompoundAnimation() { }, AnimationMin: function AnimationMin(t0, t1, t2, t3, t4, t5) { var _ = this; _.first = t0; _.next = t1; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t2; _.AnimationLocalListenersMixin__listeners = t3; _.AnimationLazyListenerMixin__listenerCounter = t4; _.$ti = t5; }, _CompoundAnimation_Animation_AnimationLazyListenerMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin() { }, _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin() { }, _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, _CurvedAnimation_Animation_AnimationWithParentMixin: function _CurvedAnimation_Animation_AnimationWithParentMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin() { }, _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, _ReverseAnimation_Animation_AnimationLazyListenerMixin: function _ReverseAnimation_Animation_AnimationLazyListenerMixin() { }, _ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin: function _ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin() { }, _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, AnimationLazyListenerMixin: function AnimationLazyListenerMixin() { }, AnimationEagerListenerMixin: function AnimationEagerListenerMixin() { }, AnimationLocalListenersMixin: function AnimationLocalListenersMixin() { }, AnimationLocalStatusListenersMixin: function AnimationLocalStatusListenersMixin() { }, DragStartBehavior: function DragStartBehavior(t0) { this._recognizer$_name = t0; }, GestureRecognizer: function GestureRecognizer() { }, OneSequenceGestureRecognizer: function OneSequenceGestureRecognizer() { }, GestureRecognizerState: function GestureRecognizerState(t0) { this._recognizer$_name = t0; }, PrimaryPointerGestureRecognizer: function PrimaryPointerGestureRecognizer() { }, PrimaryPointerGestureRecognizer_addAllowedPointer_closure: function PrimaryPointerGestureRecognizer_addAllowedPointer_closure(t0, t1) { this.$this = t0; this.event = t1; }, OffsetPair: function OffsetPair(t0, t1) { this.local = t0; this.global = t1; }, _GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin: function _GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin() { }, MaterialApp_createMaterialHeroController: function() { return new T.HeroController(new S.MaterialApp_createMaterialHeroController_closure(), P.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$._HeroFlight)); }, ThemeMode: function ThemeMode(t0) { this._app0$_name = t0; }, MaterialApp: function MaterialApp(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.navigatorKey = t0; _.home = t1; _.routes = t2; _.onGenerateRoute = t3; _.navigatorObservers = t4; _.title = t5; _.theme = t6; _.locale = t7; _.localizationsDelegates = t8; _.supportedLocales = t9; _.debugShowCheckedModeBanner = t10; _.key = t11; }, MaterialApp_createMaterialHeroController_closure: function MaterialApp_createMaterialHeroController_closure() { }, MaterialScrollBehavior: function MaterialScrollBehavior() { }, _MaterialAppState: function _MaterialAppState(t0) { var _ = this; _.___MaterialAppState__heroController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _MaterialAppState__buildWidgetApp_closure: function _MaterialAppState__buildWidgetApp_closure() { }, DataRow$: function(cells) { return new S.DataRow(null, cells); }, DataRow$byIndex: function(cells, index) { return new S.DataRow(new D.ValueKey(index, type$.ValueKey_nullable_int), cells); }, DataCell$: function(child, onTap) { return new S.DataCell(child, onTap); }, DataTable$: function(checkboxHorizontalMargin, columnSpacing, columns, dataRowHeight, decoration, headingRowHeight, horizontalMargin, key, onSelectAll, rows, showBottomBorder, showCheckboxColumn, sortAscending, sortColumnIndex) { return new S.DataTable(columns, sortColumnIndex, sortAscending, onSelectAll, decoration, dataRowHeight, headingRowHeight, horizontalMargin, columnSpacing, true, rows, showBottomBorder, checkboxHorizontalMargin, S.DataTable__initOnlyTextColumn(columns), key); }, DataTable__initOnlyTextColumn: function(columns) { var t1, result, index; for (t1 = columns.length, result = null, index = 0; index < t1; ++index) if (!columns[index].numeric) { if (result != null) return null; result = index; } return result; }, TableRowInkWell$: function(child, onTap, overlayColor) { var _null = null; return new S.TableRowInkWell(child, onTap, _null, _null, _null, _null, _null, _null, _null, true, C.BoxShape_0, _null, _null, _null, _null, _null, _null, overlayColor, _null, _null, true, false, _null, false, _null, true, _null); }, DataColumn: function DataColumn(t0, t1, t2) { this.label = t0; this.numeric = t1; this.onSort = t2; }, DataRow: function DataRow(t0, t1) { this.key = t0; this.cells = t1; }, DataCell: function DataCell(t0, t1) { this.child = t0; this.onTap = t1; }, DataTable: function DataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.decoration = t4; _.dataRowHeight = t5; _.headingRowHeight = t6; _.horizontalMargin = t7; _.columnSpacing = t8; _.showCheckboxColumn = t9; _.rows = t10; _.showBottomBorder = t11; _.checkboxHorizontalMargin = t12; _._onlyTextColumn = t13; _.key = t14; }, DataTable_build_closure3: function DataTable_build_closure3(t0) { this.theme = t0; }, DataTable_build_closure: function DataTable_build_closure() { }, DataTable_build_closure0: function DataTable_build_closure0() { }, DataTable_build_closure1: function DataTable_build_closure1() { }, DataTable_build_closure2: function DataTable_build_closure2(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.anyRowSelectable = t1; _.effectiveDataRowColor = t2; _.effectiveHeadingRowColor = t3; _.context = t4; _.theme = t5; _.defaultRowColor = t6; _.tableColumns = t7; }, DataTable_build_closure4: function DataTable_build_closure4(t0, t1) { this.$this = t0; this.someChecked = t1; }, DataTable_build_closure5: function DataTable_build_closure5(t0) { this.row = t0; }, DataTable_build_closure6: function DataTable_build_closure6(t0, t1, t2) { this.$this = t0; this.column = t1; this.dataColumnIndex = t2; }, DataTable_build_closure7: function DataTable_build_closure7(t0) { this.row = t0; }, TableRowInkWell: function TableRowInkWell(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapCancel = t3; _.onDoubleTap = t4; _.onLongPress = t5; _.onHighlightChanged = t6; _.onHover = t7; _.mouseCursor = t8; _.containedInkWell = t9; _.highlightShape = t10; _.radius = t11; _.borderRadius = t12; _.customBorder = t13; _.focusColor = t14; _.hoverColor = t15; _.highlightColor = t16; _.overlayColor = t17; _.splashColor = t18; _.splashFactory = t19; _.enableFeedback = t20; _.excludeFromSemantics = t21; _.onFocusChange = t22; _.autofocus = t23; _.focusNode = t24; _.canRequestFocus = t25; _.key = t26; }, TableRowInkWell_getRectCallback_closure: function TableRowInkWell_getRectCallback_closure(t0) { this.referenceBox = t0; }, _SortArrow: function _SortArrow(t0, t1, t2, t3) { var _ = this; _.visible = t0; _.up = t1; _.duration = t2; _.key = t3; }, _SortArrowState: function _SortArrowState(t0, t1) { var _ = this; _.___SortArrowState__orientationAnimation = _.___SortArrowState__orientationController = _.___SortArrowState__opacityAnimation = _.___SortArrowState__opacityController = $; _._orientationOffset = 0; _._data_table$_up = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SortArrowState__rebuild_closure: function _SortArrowState__rebuild_closure() { }, _NullTableColumnWidth: function _NullTableColumnWidth() { }, _NullWidget0: function _NullWidget0(t0) { this.key = t0; }, __SortArrowState_State_TickerProviderStateMixin: function __SortArrowState_State_TickerProviderStateMixin() { }, FloatingActionButtonThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.foregroundColor; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.foregroundColor, t); t4 = t1 ? _null : a.backgroundColor; t4 = P.Color_lerp(t4, t3 ? _null : b.backgroundColor, t); t5 = t1 ? _null : a.focusColor; t5 = P.Color_lerp(t5, t3 ? _null : b.focusColor, t); t6 = t1 ? _null : a.hoverColor; t6 = P.Color_lerp(t6, t3 ? _null : b.hoverColor, t); t7 = t1 ? _null : a.splashColor; t7 = P.Color_lerp(t7, t3 ? _null : b.splashColor, t); t8 = t1 ? _null : a.elevation; t8 = P.lerpDouble(t8, t3 ? _null : b.elevation, t); t9 = t1 ? _null : a.focusElevation; t9 = P.lerpDouble(t9, t3 ? _null : b.focusElevation, t); t10 = t1 ? _null : a.hoverElevation; t10 = P.lerpDouble(t10, t3 ? _null : b.hoverElevation, t); t11 = t1 ? _null : a.disabledElevation; t11 = P.lerpDouble(t11, t3 ? _null : b.disabledElevation, t); t12 = t1 ? _null : a.highlightElevation; t12 = P.lerpDouble(t12, t3 ? _null : b.highlightElevation, t); t1 = t1 ? _null : a.shape; return new S.FloatingActionButtonThemeData(t2, t4, t5, t6, t7, t8, t9, t10, t11, t12, Y.ShapeBorder_lerp(t1, t3 ? _null : b.shape, t)); }, FloatingActionButtonThemeData: function FloatingActionButtonThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.foregroundColor = t0; _.backgroundColor = t1; _.focusColor = t2; _.hoverColor = t3; _.splashColor = t4; _.elevation = t5; _.focusElevation = t6; _.hoverElevation = t7; _.disabledElevation = t8; _.highlightElevation = t9; _.shape = t10; }, _FloatingActionButtonThemeData_Object_Diagnosticable: function _FloatingActionButtonThemeData_Object_Diagnosticable() { }, ToggleButtonsThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.textStyle; t3 = b == null; t2 = A.TextStyle_lerp(t2, t3 ? _null : b.textStyle, t); t4 = t1 ? _null : a.constraints; t4 = S.BoxConstraints_lerp(t4, t3 ? _null : b.constraints, t); t5 = t1 ? _null : a.color; t5 = P.Color_lerp(t5, t3 ? _null : b.color, t); t6 = t1 ? _null : a.selectedColor; t6 = P.Color_lerp(t6, t3 ? _null : b.selectedColor, t); t7 = t1 ? _null : a.disabledColor; t7 = P.Color_lerp(t7, t3 ? _null : b.disabledColor, t); t8 = t1 ? _null : a.fillColor; t8 = P.Color_lerp(t8, t3 ? _null : b.fillColor, t); t9 = t1 ? _null : a.focusColor; t9 = P.Color_lerp(t9, t3 ? _null : b.focusColor, t); t10 = t1 ? _null : a.highlightColor; t10 = P.Color_lerp(t10, t3 ? _null : b.highlightColor, t); t11 = t1 ? _null : a.hoverColor; t11 = P.Color_lerp(t11, t3 ? _null : b.hoverColor, t); t12 = t1 ? _null : a.splashColor; t12 = P.Color_lerp(t12, t3 ? _null : b.splashColor, t); t13 = t1 ? _null : a.borderColor; t13 = P.Color_lerp(t13, t3 ? _null : b.borderColor, t); t14 = t1 ? _null : a.selectedBorderColor; t14 = P.Color_lerp(t14, t3 ? _null : b.selectedBorderColor, t); t15 = t1 ? _null : a.disabledBorderColor; t15 = P.Color_lerp(t15, t3 ? _null : b.disabledBorderColor, t); t16 = t1 ? _null : a.borderRadius; t16 = K.BorderRadius_lerp(t16, t3 ? _null : b.borderRadius, t); t1 = t1 ? _null : a.borderWidth; return new S.ToggleButtonsThemeData(t2, t4, t5, t6, t7, t8, t9, t10, t12, t11, t13, t14, t15, P.lerpDouble(t1, t3 ? _null : b.borderWidth, t), t16); }, ToggleButtonsTheme_of: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.ToggleButtonsTheme); t1 = K.Theme_of(context); return t1.toggleButtonsTheme; }, ToggleButtonsThemeData: function ToggleButtonsThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.textStyle = t0; _.constraints = t1; _.color = t2; _.selectedColor = t3; _.disabledColor = t4; _.fillColor = t5; _.focusColor = t6; _.highlightColor = t7; _.splashColor = t8; _.hoverColor = t9; _.borderColor = t10; _.selectedBorderColor = t11; _.disabledBorderColor = t12; _.borderWidth = t13; _.borderRadius = t14; }, _ToggleButtonsThemeData_Object_Diagnosticable: function _ToggleButtonsThemeData_Object_Diagnosticable() { }, Tooltip$: function(child, message) { return new S.Tooltip(message, child, null); }, Tooltip: function Tooltip(t0, t1, t2) { this.message = t0; this.child = t1; this.key = t2; }, _TooltipState: function _TooltipState(t0, t1) { var _ = this; _.___TooltipState__controller = _.___TooltipState_excludeFromSemantics = _.___TooltipState_preferBelow = _.___TooltipState_verticalOffset = _.___TooltipState_textStyle = _.___TooltipState_decoration = _.___TooltipState_margin = _.___TooltipState_padding = _.___TooltipState_height = $; _._showTimer = _._hideTimer = _._tooltip$_entry = null; _.___TooltipState__mouseIsConnected = _.___TooltipState_waitDuration = _.___TooltipState_showDuration = $; _._longPressActivated = false; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TooltipState__handleMouseTrackerChange_closure: function _TooltipState__handleMouseTrackerChange_closure(t0, t1) { this.$this = t0; this.mouseIsConnected = t1; }, _TooltipState__createNewEntry_closure: function _TooltipState__createNewEntry_closure(t0) { this.overlay = t0; }, _TooltipState_build_closure: function _TooltipState_build_closure(t0) { this.$this = t0; }, _TooltipState_build_closure0: function _TooltipState_build_closure0(t0) { this.$this = t0; }, _TooltipPositionDelegate: function _TooltipPositionDelegate(t0, t1, t2) { this.target = t0; this.verticalOffset = t1; this.preferBelow = t2; }, _TooltipOverlay: function _TooltipOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.message = t0; _.height = t1; _.padding = t2; _.margin = t3; _.decoration = t4; _.textStyle = t5; _.animation = t6; _.target = t7; _.verticalOffset = t8; _.preferBelow = t9; _.key = t10; }, __TooltipState_State_SingleTickerProviderStateMixin: function __TooltipState_State_SingleTickerProviderStateMixin() { }, BoxDecoration_lerp: function(a, b, t) { var t1, t2, t3, t4, t5, t6, t7; if (t === 0) return a; if (t === 1) return b; t1 = P.Color_lerp(a.color, b.color, t); t2 = t < 0.5; t3 = t2 ? a.image : b.image; t4 = F.BoxBorder_lerp(a.border, b.border, t); t5 = K.BorderRadiusGeometry_lerp(a.borderRadius, b.borderRadius, t); t6 = O.BoxShadow_lerpList(a.boxShadow, b.boxShadow, t); t7 = T.Gradient_lerp(a.gradient, b.gradient, t); return new S.BoxDecoration(t1, t3, t4, t5, t6, t7, t2 ? a.shape : b.shape); }, BoxDecoration: function BoxDecoration(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.color = t0; _.image = t1; _.border = t2; _.borderRadius = t3; _.boxShadow = t4; _.gradient = t5; _.shape = t6; }, _BoxDecorationPainter: function _BoxDecorationPainter(t0, t1) { var _ = this; _._box_decoration$_decoration = t0; _._box_decoration$_imagePainter = _._rectForCachedBackgroundPaint = _._cachedBackgroundPaint = null; _.onChanged = t1; }, BoxConstraints$tight: function(size) { var t1 = size._dx, t2 = size._dy; return new S.BoxConstraints(t1, t1, t2, t2); }, BoxConstraints$tightFor: function(height, width) { var t3, t4, t1 = width == null, t2 = t1 ? 0 : width; t1 = t1 ? 1 / 0 : width; t3 = height == null; t4 = t3 ? 0 : height; return new S.BoxConstraints(t2, t1, t4, t3 ? 1 / 0 : height); }, BoxConstraints$tightForFinite: function(height, width) { var t3, t4, t1 = width !== 1 / 0, t2 = t1 ? width : 0; t1 = t1 ? width : 1 / 0; t3 = height !== 1 / 0; t4 = t3 ? height : 0; return new S.BoxConstraints(t2, t1, t4, t3 ? height : 1 / 0); }, BoxConstraints$loose: function(size) { return new S.BoxConstraints(0, size._dx, 0, size._dy); }, BoxConstraints_lerp: function(a, b, t) { var t2, t3, t4, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); t1 = a.minWidth; t1.toString; if (isFinite(t1)) { t1 = P.lerpDouble(t1, b.minWidth, t); t1.toString; } else t1 = 1 / 0; t2 = a.maxWidth; t2.toString; if (isFinite(t2)) { t2 = P.lerpDouble(t2, b.maxWidth, t); t2.toString; } else t2 = 1 / 0; t3 = a.minHeight; t3.toString; if (isFinite(t3)) { t3 = P.lerpDouble(t3, b.minHeight, t); t3.toString; } else t3 = 1 / 0; t4 = a.maxHeight; t4.toString; if (isFinite(t4)) { t4 = P.lerpDouble(t4, b.maxHeight, t); t4.toString; } else t4 = 1 / 0; return new S.BoxConstraints(t1, t2, t3, t4); }, BoxHitTestResult$: function() { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_HitTestEntry), t2 = new E.Matrix4(new Float64Array(16)); t2.setIdentity$0(); return new S.BoxHitTestResult(t1, H.setRuntimeTypeInfo([t2], type$.JSArray_Matrix4), H.setRuntimeTypeInfo([], type$.JSArray__TransformPart)); }, BoxHitTestResult$wrap: function(result) { return new S.BoxHitTestResult(result._hit_test$_path, result._transforms, result._localTransforms); }, BoxConstraints: function BoxConstraints(t0, t1, t2, t3) { var _ = this; _.minWidth = t0; _.maxWidth = t1; _.minHeight = t2; _.maxHeight = t3; }, BoxConstraints_toString_describe: function BoxConstraints_toString_describe() { }, BoxHitTestResult: function BoxHitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, BoxHitTestEntry: function BoxHitTestEntry(t0, t1) { this.localPosition = t0; this.target = t1; this._transform = null; }, BoxParentData: function BoxParentData(t0) { this.offset = t0; }, ContainerBoxParentData: function ContainerBoxParentData() { }, _IntrinsicDimension: function _IntrinsicDimension(t0) { this._box$_name = t0; }, _IntrinsicDimensionsCacheEntry: function _IntrinsicDimensionsCacheEntry(t0, t1) { this.dimension = t0; this.argument = t1; }, RenderBox: function RenderBox() { }, RenderBox__computeIntrinsicDimension_closure: function RenderBox__computeIntrinsicDimension_closure(t0, t1) { this.computer = t0; this.argument = t1; }, RenderBox_getDryLayout_closure: function RenderBox_getDryLayout_closure(t0, t1) { this.$this = t0; this.constraints = t1; }, RenderBox_getDistanceToActualBaseline_closure: function RenderBox_getDistanceToActualBaseline_closure(t0, t1) { this.$this = t0; this.baseline = t1; }, RenderBoxContainerDefaultsMixin: function RenderBoxContainerDefaultsMixin() { }, RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure: function RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.childParentData = t2; }, _ContainerBoxParentData_BoxParentData_ContainerParentDataMixin: function _ContainerBoxParentData_BoxParentData_ContainerParentDataMixin() { }, TableCellParentData: function TableCellParentData(t0) { var _ = this; _.y = _.x = _.verticalAlignment = null; _.offset = t0; }, TableColumnWidth: function TableColumnWidth() { }, IntrinsicColumnWidth: function IntrinsicColumnWidth(t0) { this._flex = t0; }, FixedColumnWidth: function FixedColumnWidth(t0) { this.value = t0; }, FlexColumnWidth: function FlexColumnWidth(t0) { this.value = t0; }, TableCellVerticalAlignment: function TableCellVerticalAlignment(t0) { this._table$_name = t0; }, RenderTable: function RenderTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._table$_children = t0; _._table$_columns = t1; _._rows = t2; _._columnWidths = t3; _._defaultColumnWidth = t4; _._table$_textDirection = t5; _._table$_border = t6; _._rowDecorationPainters = _._table$_rowDecorations = null; _._table$_configuration = t7; _._defaultVerticalAlignment = t8; _._table$_textBaseline = t9; _._baselineDistance = null; _._rowTops = t10; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = _._columnLefts = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTable_computeDryLayout_closure: function RenderTable_computeDryLayout_closure() { }, RenderTable_hitTestChildren_closure: function RenderTable_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, AlignmentGeometryTween: function AlignmentGeometryTween(t0, t1) { this.begin = t0; this.end = t1; }, WidgetsApp_defaultShortcuts: function() { var t1 = $.$get$WidgetsApp__defaultWebShortcuts(); return t1; }, _WidgetsAppState_basicLocaleListResolution: function(preferredLocales, supportedLocales) { var t1, t2, allSupportedLocales, languageAndCountryLocales, languageAndScriptLocales, languageLocales, countryLocales, _i, locale, t3, t4, t5, matchesCountryCode, matchesLanguageCode, localeIndex, userLocale, match, resolvedLocale, _null = null; if (preferredLocales == null || preferredLocales.length === 0) return C.JSArray_methods.get$first(supportedLocales); t1 = type$.String; t2 = type$.Locale; allSupportedLocales = P.HashMap_HashMap(_null, _null, _null, t1, t2); languageAndCountryLocales = P.HashMap_HashMap(_null, _null, _null, t1, t2); languageAndScriptLocales = P.HashMap_HashMap(_null, _null, _null, t1, t2); languageLocales = P.HashMap_HashMap(_null, _null, _null, t1, t2); countryLocales = P.HashMap_HashMap(_null, _null, _null, type$.nullable_String, t2); for (t1 = supportedLocales.length, _i = 0; _i < supportedLocales.length; supportedLocales.length === t1 || (0, H.throwConcurrentModificationError)(supportedLocales), ++_i) { locale = supportedLocales[_i]; t2 = locale._languageCode; t3 = C.Map_YCOho.$index(0, t2); t3 = H.S(t3 == null ? t2 : t3) + "_null_"; t4 = locale._countryCode; t5 = C.Map_0Agg9.$index(0, t4); t3 += H.S(t5 == null ? t4 : t5); if (allSupportedLocales.$index(0, t3) == null) allSupportedLocales.$indexSet(0, t3, locale); t3 = C.Map_YCOho.$index(0, t2); t3 = H.S(t3 == null ? t2 : t3) + "_null"; if (languageAndScriptLocales.$index(0, t3) == null) languageAndScriptLocales.$indexSet(0, t3, locale); t3 = C.Map_YCOho.$index(0, t2); t3 = H.S(t3 == null ? t2 : t3) + "_"; t5 = C.Map_0Agg9.$index(0, t4); t3 += H.S(t5 == null ? t4 : t5); if (languageAndCountryLocales.$index(0, t3) == null) languageAndCountryLocales.$indexSet(0, t3, locale); t3 = C.Map_YCOho.$index(0, t2); t2 = t3 == null ? t2 : t3; if (languageLocales.$index(0, t2) == null) languageLocales.$indexSet(0, t2, locale); t2 = C.Map_0Agg9.$index(0, t4); if (t2 == null) t2 = t4; if (countryLocales.$index(0, t2) == null) countryLocales.$indexSet(0, t2, locale); } for (matchesCountryCode = _null, matchesLanguageCode = matchesCountryCode, localeIndex = 0; localeIndex < preferredLocales.length; ++localeIndex) { userLocale = preferredLocales[localeIndex]; t1 = userLocale._languageCode; t2 = C.Map_YCOho.$index(0, t1); t2 = H.S(t2 == null ? t1 : t2) + "_null_"; t3 = userLocale._countryCode; t4 = C.Map_0Agg9.$index(0, t3); if (allSupportedLocales.containsKey$1(0, t2 + H.S(t4 == null ? t3 : t4))) return userLocale; t2 = C.Map_0Agg9.$index(0, t3); if ((t2 == null ? t3 : t2) != null) { t2 = C.Map_YCOho.$index(0, t1); t2 = H.S(t2 == null ? t1 : t2) + "_"; t4 = C.Map_0Agg9.$index(0, t3); match = languageAndCountryLocales.$index(0, t2 + H.S(t4 == null ? t3 : t4)); if (match != null) return match; } if (matchesLanguageCode != null) return matchesLanguageCode; t2 = C.Map_YCOho.$index(0, t1); match = languageLocales.$index(0, t2 == null ? t1 : t2); if (match != null) { if (localeIndex === 0) { t2 = localeIndex + 1; if (t2 < preferredLocales.length) { t2 = preferredLocales[t2]._languageCode; t4 = C.Map_YCOho.$index(0, t2); t2 = t4 == null ? t2 : t4; t4 = C.Map_YCOho.$index(0, t1); t1 = t2 == (t4 == null ? t1 : t4); } else t1 = false; t1 = !t1; } else t1 = false; if (t1) return match; matchesLanguageCode = match; } if (matchesCountryCode == null) { t1 = C.Map_0Agg9.$index(0, t3); t1 = (t1 == null ? t3 : t1) != null; } else t1 = false; if (t1) { t1 = C.Map_0Agg9.$index(0, t3); match = countryLocales.$index(0, t1 == null ? t3 : t1); if (match != null) matchesCountryCode = match; } } resolvedLocale = matchesLanguageCode == null ? matchesCountryCode : matchesLanguageCode; return resolvedLocale == null ? C.JSArray_methods.get$first(supportedLocales) : resolvedLocale; }, WidgetsApp: function WidgetsApp(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32) { var _ = this; _.navigatorKey = t0; _.onGenerateRoute = t1; _.onGenerateInitialRoutes = t2; _.pageRouteBuilder = t3; _.routeInformationParser = t4; _.routerDelegate = t5; _.backButtonDispatcher = t6; _.routeInformationProvider = t7; _.home = t8; _.routes = t9; _.onUnknownRoute = t10; _.initialRoute = t11; _.navigatorObservers = t12; _.builder = t13; _.title = t14; _.onGenerateTitle = t15; _.textStyle = t16; _.color = t17; _.locale = t18; _.localizationsDelegates = t19; _.localeListResolutionCallback = t20; _.localeResolutionCallback = t21; _.supportedLocales = t22; _.showPerformanceOverlay = t23; _.checkerboardRasterCacheImages = t24; _.checkerboardOffscreenLayers = t25; _.showSemanticsDebugger = t26; _.inspectorSelectButtonBuilder = t27; _.debugShowCheckedModeBanner = t28; _.shortcuts = t29; _.actions = t30; _.restorationScopeId = t31; _.key = t32; }, _WidgetsAppState: function _WidgetsAppState(t0) { var _ = this; _._widget = _._app$_locale = _._navigator = _._defaultRouteInformationProvider = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _WidgetsAppState__onGenerateRoute_closure: function _WidgetsAppState__onGenerateRoute_closure(t0) { this.$this = t0; }, _WidgetsAppState_didChangeLocales_closure: function _WidgetsAppState_didChangeLocales_closure(t0, t1) { this.$this = t0; this.newLocale = t1; }, _WidgetsAppState_build_closure: function _WidgetsAppState_build_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _MediaQueryFromWindow: function _MediaQueryFromWindow(t0, t1) { this.child = t0; this.key = t1; }, _MediaQueryFromWindowsState: function _MediaQueryFromWindowsState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MediaQueryFromWindowsState_didChangeMetrics_closure: function _MediaQueryFromWindowsState_didChangeMetrics_closure() { }, _MediaQueryFromWindowsState_didChangePlatformBrightness_closure: function _MediaQueryFromWindowsState_didChangePlatformBrightness_closure() { }, __MediaQueryFromWindowsState_State_WidgetsBindingObserver: function __MediaQueryFromWindowsState_State_WidgetsBindingObserver() { }, __WidgetsAppState_State_WidgetsBindingObserver: function __WidgetsAppState_State_WidgetsBindingObserver() { }, RawAutocomplete: function RawAutocomplete(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.fieldViewBuilder = t0; _.focusNode = t1; _.optionsViewBuilder = t2; _.displayStringForOption = t3; _.onSelected = t4; _.optionsBuilder = t5; _.textEditingController = t6; _.key = t7; _.$ti = t8; }, _RawAutocompleteState: function _RawAutocompleteState(t0, t1, t2, t3, t4) { var _ = this; _._fieldKey = t0; _._optionsLayerLink = t1; _.___RawAutocompleteState__focusNode = _.___RawAutocompleteState__textEditingController = $; _._autocomplete$_options = t2; _._widget = _._floatingOptions = _._autocomplete$_selection = null; _._debugLifecycleState = t3; _._framework$_element = null; _.$ti = t4; }, _RawAutocompleteState__updateOverlay_closure: function _RawAutocompleteState__updateOverlay_closure(t0) { this.$this = t0; }, _RawAutocompleteState_initState_closure: function _RawAutocompleteState_initState_closure(t0) { this.$this = t0; }, _RawAutocompleteState_didUpdateWidget_closure: function _RawAutocompleteState_didUpdateWidget_closure(t0) { this.$this = t0; }, _InheritedResetNotifier_shouldReset: function(context) { var t1, wasCalled, widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedResetNotifier); if (widget == null) return false; t1 = widget.notifier; wasCalled = t1._wasCalled; t1._wasCalled = false; return wasCalled; }, DraggableScrollableSheet: function DraggableScrollableSheet(t0, t1, t2, t3, t4, t5) { var _ = this; _.initialChildSize = t0; _.minChildSize = t1; _.maxChildSize = t2; _.expand = t3; _.builder = t4; _.key = t5; }, DraggableScrollableNotification: function DraggableScrollableNotification(t0, t1, t2, t3, t4, t5) { var _ = this; _.extent = t0; _.minExtent = t1; _.maxExtent = t2; _.initialExtent = t3; _.context = t4; _.ViewportNotificationMixin__depth = t5; }, _DraggableSheetExtent: function _DraggableSheetExtent(t0, t1, t2, t3, t4) { var _ = this; _.minExtent = t0; _.maxExtent = t1; _.initialExtent = t2; _._currentExtent = t3; _.availablePixels = t4; }, _DraggableScrollableSheetState: function _DraggableScrollableSheetState(t0) { var _ = this; _.___DraggableScrollableSheetState__extent = _.___DraggableScrollableSheetState__scrollController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DraggableScrollableSheetState__setExtent_closure: function _DraggableScrollableSheetState__setExtent_closure() { }, _DraggableScrollableSheetState_build_closure: function _DraggableScrollableSheetState_build_closure(t0) { this.$this = t0; }, _DraggableScrollableSheetScrollController: function _DraggableScrollableSheetScrollController(t0, t1, t2, t3, t4) { var _ = this; _.extent = t0; _._initialScrollOffset = t1; _.debugLabel = t2; _._positions = t3; _.ChangeNotifier__listeners = t4; }, _DraggableScrollableSheetScrollPosition: function _DraggableScrollableSheetScrollPosition(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._dragCancelCallback = null; _.extent = t0; _._heldPreviousVelocity = 0; _._userScrollDirection = t1; _._currentDrag = null; _.physics = t2; _.context = t3; _.keepScrollOffset = t4; _.debugLabel = t5; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._semanticActions = _._scroll_position$_lastMetrics = null; _.isScrollingNotifier = t6; _._activity = null; _.ChangeNotifier__listeners = t7; }, _DraggableScrollableSheetScrollPosition_goBallistic__tick: function _DraggableScrollableSheetScrollPosition_goBallistic__tick(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.ballisticController = t2; }, _DraggableScrollableNotification_Notification_ViewportNotificationMixin: function _DraggableScrollableNotification_Notification_ViewportNotificationMixin() { }, InheritedNotifier: function InheritedNotifier() { }, _InheritedNotifierElement: function _InheritedNotifierElement(t0, t1, t2, t3, t4, t5) { var _ = this; _._inherited_notifier$_dirty = false; _._dependents = t0; _._framework$_parent = _._framework$_child = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t5; }, PageStorageBucket__maybeAddKey: function(context, keys) { var widget = context.get$widget(); widget.toString; return !(widget instanceof S.PageStorage); }, PageStorage_of: function(context) { var widget = context.findAncestorWidgetOfExactType$1$0(type$.PageStorage); return widget == null ? null : widget.bucket; }, _StorageEntryIdentifier: function _StorageEntryIdentifier(t0) { this.keys = t0; }, PageStorageBucket: function PageStorageBucket() { this._storage = null; }, PageStorageBucket__allKeys_closure: function PageStorageBucket__allKeys_closure(t0) { this.keys = t0; }, PageStorage: function PageStorage(t0, t1, t2) { this.child = t0; this.bucket = t1; this.key = t2; }, Table$: function(children, columnWidths, defaultColumnWidth, defaultVerticalAlignment, key) { var t1; if (C.JSArray_methods.any$1(children, new S.Table_closure())) { t1 = H._arrayInstanceType(children)._eval$1("MappedListIterable<1,Decoration?>"); t1 = P.List_List$of(new H.MappedListIterable(children, new S.Table_closure0(), t1), false, t1._eval$1("ListIterable.E")); } else t1 = null; return new S.Table(children, columnWidths, defaultColumnWidth, defaultVerticalAlignment, t1, key); }, TableCell$: function(child, verticalAlignment) { return new S.TableCell(verticalAlignment, child, null); }, TableRow: function TableRow(t0, t1, t2) { this.key = t0; this.decoration = t1; this.children = t2; }, _TableElementRow: function _TableElementRow(t0, t1) { this.key = t0; this.children = t1; }, Table: function Table(t0, t1, t2, t3, t4, t5) { var _ = this; _.children = t0; _.columnWidths = t1; _.defaultColumnWidth = t2; _.defaultVerticalAlignment = t3; _._rowDecorations = t4; _.key = t5; }, Table_closure: function Table_closure() { }, Table_closure0: function Table_closure0() { }, _TableElement: function _TableElement(t0, t1, t2, t3, t4, t5) { var _ = this; _._table0$_children = t0; _._doingMountOrUpdate = false; _._table0$_forgottenChildren = t1; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t2; _._slot = null; _.__Element__depth = $; _._widget = t3; _._owner = null; _._lifecycleState = t4; _._debugForgottenChildrenWithGlobalKey = t5; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _TableElement_mount_closure: function _TableElement_mount_closure(t0, t1) { this._box_1 = t0; this.$this = t1; }, _TableElement_mount__closure: function _TableElement_mount__closure(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.$this = t2; }, _TableElement_update_closure: function _TableElement_update_closure() { }, _TableElement_update_closure0: function _TableElement_update_closure0(t0) { this.taken = t0; }, _TableElement__updateRenderObjectChildren_closure: function _TableElement__updateRenderObjectChildren_closure() { }, _TableElement__updateRenderObjectChildren__closure: function _TableElement__updateRenderObjectChildren__closure() { }, _TableElement_visitChildren_closure: function _TableElement_visitChildren_closure() { }, TableCell: function TableCell(t0, t1, t2) { this.verticalAlignment = t0; this.child = t1; this.key = t2; }, _TableSlot: function _TableSlot(t0, t1) { this.column = t0; this.row = t1; }, __TableSlot_Object_Diagnosticable: function __TableSlot_Object_Diagnosticable() { }, CupertinoLocalizationDe$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationDe(); }, CupertinoLocalizationEn$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationEn(); }, CupertinoLocalizationEs$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationEs(); }, CupertinoLocalizationFr$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationFr(); }, CupertinoLocalizationPt$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationPt(); }, CupertinoLocalizationSr$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationSr(); }, CupertinoLocalizationZh$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationZh(); }, CupertinoLocalizationZhHant$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, localeName, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationZhHant(); }, CupertinoLocalizationZhHantHk$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationZhHantHk(); }, CupertinoLocalizationZhHantTw$: function(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat) { return new S.CupertinoLocalizationZhHantTw(); }, getCupertinoTranslation: function(locale, fullYearFormat, dayFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, doubleDigitMinuteFormat, singleDigitSecondFormat, decimalFormat) { switch (locale.get$languageCode(locale)) { case "af": return new S.CupertinoLocalizationAf(); case "am": return new S.CupertinoLocalizationAm(); case "ar": return new S.CupertinoLocalizationAr(); case "as": return new S.CupertinoLocalizationAs(); case "az": return new S.CupertinoLocalizationAz(); case "be": return new S.CupertinoLocalizationBe(); case "bg": return new S.CupertinoLocalizationBg(); case "bn": return new S.CupertinoLocalizationBn(); case "bs": return new S.CupertinoLocalizationBs(); case "ca": return new S.CupertinoLocalizationCa(); case "cs": return new S.CupertinoLocalizationCs(); case "da": return new S.CupertinoLocalizationDa(); case "de": switch (locale.get$countryCode()) { case "CH": return new S.CupertinoLocalizationDeCh(); } return S.CupertinoLocalizationDe$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "de", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "el": return new S.CupertinoLocalizationEl(); case "en": switch (locale.get$countryCode()) { case "AU": return new S.CupertinoLocalizationEnAu(); case "CA": return new S.CupertinoLocalizationEnCa(); case "GB": return new S.CupertinoLocalizationEnGb(); case "IE": return new S.CupertinoLocalizationEnIe(); case "IN": return new S.CupertinoLocalizationEnIn(); case "NZ": return new S.CupertinoLocalizationEnNz(); case "SG": return new S.CupertinoLocalizationEnSg(); case "ZA": return new S.CupertinoLocalizationEnZa(); } return S.CupertinoLocalizationEn$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "en", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "es": switch (locale.get$countryCode()) { case "419": return new S.CupertinoLocalizationEs419(); case "AR": return new S.CupertinoLocalizationEsAr(); case "BO": return new S.CupertinoLocalizationEsBo(); case "CL": return new S.CupertinoLocalizationEsCl(); case "CO": return new S.CupertinoLocalizationEsCo(); case "CR": return new S.CupertinoLocalizationEsCr(); case "DO": return new S.CupertinoLocalizationEsDo(); case "EC": return new S.CupertinoLocalizationEsEc(); case "GT": return new S.CupertinoLocalizationEsGt(); case "HN": return new S.CupertinoLocalizationEsHn(); case "MX": return new S.CupertinoLocalizationEsMx(); case "NI": return new S.CupertinoLocalizationEsNi(); case "PA": return new S.CupertinoLocalizationEsPa(); case "PE": return new S.CupertinoLocalizationEsPe(); case "PR": return new S.CupertinoLocalizationEsPr(); case "PY": return new S.CupertinoLocalizationEsPy(); case "SV": return new S.CupertinoLocalizationEsSv(); case "US": return new S.CupertinoLocalizationEsUs(); case "UY": return new S.CupertinoLocalizationEsUy(); case "VE": return new S.CupertinoLocalizationEsVe(); } return S.CupertinoLocalizationEs$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "es", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "et": return new S.CupertinoLocalizationEt(); case "eu": return new S.CupertinoLocalizationEu(); case "fa": return new S.CupertinoLocalizationFa(); case "fi": return new S.CupertinoLocalizationFi(); case "fil": return new S.CupertinoLocalizationFil(); case "fr": switch (locale.get$countryCode()) { case "CA": return new S.CupertinoLocalizationFrCa(); } return S.CupertinoLocalizationFr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "fr", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "gl": return new S.CupertinoLocalizationGl(); case "gsw": return new S.CupertinoLocalizationGsw(); case "gu": return new S.CupertinoLocalizationGu(); case "he": return new S.CupertinoLocalizationHe(); case "hi": return new S.CupertinoLocalizationHi(); case "hr": return new S.CupertinoLocalizationHr(); case "hu": return new S.CupertinoLocalizationHu(); case "hy": return new S.CupertinoLocalizationHy(); case "id": return new S.CupertinoLocalizationId(); case "is": return new S.CupertinoLocalizationIs(); case "it": return new S.CupertinoLocalizationIt(); case "ja": return new S.CupertinoLocalizationJa(); case "ka": return new S.CupertinoLocalizationKa(); case "kk": return new S.CupertinoLocalizationKk(); case "km": return new S.CupertinoLocalizationKm(); case "kn": return new S.CupertinoLocalizationKn(); case "ko": return new S.CupertinoLocalizationKo(); case "ky": return new S.CupertinoLocalizationKy(); case "lo": return new S.CupertinoLocalizationLo(); case "lt": return new S.CupertinoLocalizationLt(); case "lv": return new S.CupertinoLocalizationLv(); case "mk": return new S.CupertinoLocalizationMk(); case "ml": return new S.CupertinoLocalizationMl(); case "mn": return new S.CupertinoLocalizationMn(); case "mr": return new S.CupertinoLocalizationMr(); case "ms": return new S.CupertinoLocalizationMs(); case "my": return new S.CupertinoLocalizationMy(); case "nb": return new S.CupertinoLocalizationNb(); case "ne": return new S.CupertinoLocalizationNe(); case "nl": return new S.CupertinoLocalizationNl(); case "no": return new S.CupertinoLocalizationNo(); case "or": return new S.CupertinoLocalizationOr(); case "pa": return new S.CupertinoLocalizationPa(); case "pl": return new S.CupertinoLocalizationPl(); case "pt": switch (locale.get$countryCode()) { case "PT": return new S.CupertinoLocalizationPtPt(); } return S.CupertinoLocalizationPt$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "pt", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "ro": return new S.CupertinoLocalizationRo(); case "ru": return new S.CupertinoLocalizationRu(); case "si": return new S.CupertinoLocalizationSi(); case "sk": return new S.CupertinoLocalizationSk(); case "sl": return new S.CupertinoLocalizationSl(); case "sq": return new S.CupertinoLocalizationSq(); case "sr": switch (null) { case "Cyrl": return new S.CupertinoLocalizationSrCyrl(); case "Latn": return new S.CupertinoLocalizationSrLatn(); } return S.CupertinoLocalizationSr$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "sr", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "sv": return new S.CupertinoLocalizationSv(); case "sw": return new S.CupertinoLocalizationSw(); case "ta": return new S.CupertinoLocalizationTa(); case "te": return new S.CupertinoLocalizationTe(); case "th": return new S.CupertinoLocalizationTh(); case "tl": return new S.CupertinoLocalizationTl(); case "tr": return new S.CupertinoLocalizationTr(); case "uk": return new S.CupertinoLocalizationUk(); case "ur": return new S.CupertinoLocalizationUr(); case "uz": return new S.CupertinoLocalizationUz(); case "vi": return new S.CupertinoLocalizationVi(); case "zh": switch (null) { case "Hans": return new S.CupertinoLocalizationZhHans(); case "Hant": switch (locale.get$countryCode()) { case "HK": return S.CupertinoLocalizationZhHantHk$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "TW": return S.CupertinoLocalizationZhHantTw$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } return S.CupertinoLocalizationZhHant$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "zh_Hant", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } switch (locale.get$countryCode()) { case "HK": return S.CupertinoLocalizationZhHantHk$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "TW": return S.CupertinoLocalizationZhHantTw$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); } return S.CupertinoLocalizationZh$(dayFormat, decimalFormat, doubleDigitMinuteFormat, fullYearFormat, "zh", mediumDateFormat, singleDigitHourFormat, singleDigitMinuteFormat, singleDigitSecondFormat); case "zu": return new S.CupertinoLocalizationZu(); } return null; }, CupertinoLocalizationAf: function CupertinoLocalizationAf() { }, CupertinoLocalizationAm: function CupertinoLocalizationAm() { }, CupertinoLocalizationAr: function CupertinoLocalizationAr() { }, CupertinoLocalizationAs: function CupertinoLocalizationAs() { }, CupertinoLocalizationAz: function CupertinoLocalizationAz() { }, CupertinoLocalizationBe: function CupertinoLocalizationBe() { }, CupertinoLocalizationBg: function CupertinoLocalizationBg() { }, CupertinoLocalizationBn: function CupertinoLocalizationBn() { }, CupertinoLocalizationBs: function CupertinoLocalizationBs() { }, CupertinoLocalizationCa: function CupertinoLocalizationCa() { }, CupertinoLocalizationCs: function CupertinoLocalizationCs() { }, CupertinoLocalizationDa: function CupertinoLocalizationDa() { }, CupertinoLocalizationDe: function CupertinoLocalizationDe() { }, CupertinoLocalizationDeCh: function CupertinoLocalizationDeCh() { }, CupertinoLocalizationEl: function CupertinoLocalizationEl() { }, CupertinoLocalizationEn: function CupertinoLocalizationEn() { }, CupertinoLocalizationEnAu: function CupertinoLocalizationEnAu() { }, CupertinoLocalizationEnCa: function CupertinoLocalizationEnCa() { }, CupertinoLocalizationEnGb: function CupertinoLocalizationEnGb() { }, CupertinoLocalizationEnIe: function CupertinoLocalizationEnIe() { }, CupertinoLocalizationEnIn: function CupertinoLocalizationEnIn() { }, CupertinoLocalizationEnNz: function CupertinoLocalizationEnNz() { }, CupertinoLocalizationEnSg: function CupertinoLocalizationEnSg() { }, CupertinoLocalizationEnZa: function CupertinoLocalizationEnZa() { }, CupertinoLocalizationEs: function CupertinoLocalizationEs() { }, CupertinoLocalizationEs419: function CupertinoLocalizationEs419() { }, CupertinoLocalizationEsAr: function CupertinoLocalizationEsAr() { }, CupertinoLocalizationEsBo: function CupertinoLocalizationEsBo() { }, CupertinoLocalizationEsCl: function CupertinoLocalizationEsCl() { }, CupertinoLocalizationEsCo: function CupertinoLocalizationEsCo() { }, CupertinoLocalizationEsCr: function CupertinoLocalizationEsCr() { }, CupertinoLocalizationEsDo: function CupertinoLocalizationEsDo() { }, CupertinoLocalizationEsEc: function CupertinoLocalizationEsEc() { }, CupertinoLocalizationEsGt: function CupertinoLocalizationEsGt() { }, CupertinoLocalizationEsHn: function CupertinoLocalizationEsHn() { }, CupertinoLocalizationEsMx: function CupertinoLocalizationEsMx() { }, CupertinoLocalizationEsNi: function CupertinoLocalizationEsNi() { }, CupertinoLocalizationEsPa: function CupertinoLocalizationEsPa() { }, CupertinoLocalizationEsPe: function CupertinoLocalizationEsPe() { }, CupertinoLocalizationEsPr: function CupertinoLocalizationEsPr() { }, CupertinoLocalizationEsPy: function CupertinoLocalizationEsPy() { }, CupertinoLocalizationEsSv: function CupertinoLocalizationEsSv() { }, CupertinoLocalizationEsUs: function CupertinoLocalizationEsUs() { }, CupertinoLocalizationEsUy: function CupertinoLocalizationEsUy() { }, CupertinoLocalizationEsVe: function CupertinoLocalizationEsVe() { }, CupertinoLocalizationEt: function CupertinoLocalizationEt() { }, CupertinoLocalizationEu: function CupertinoLocalizationEu() { }, CupertinoLocalizationFa: function CupertinoLocalizationFa() { }, CupertinoLocalizationFi: function CupertinoLocalizationFi() { }, CupertinoLocalizationFil: function CupertinoLocalizationFil() { }, CupertinoLocalizationFr: function CupertinoLocalizationFr() { }, CupertinoLocalizationFrCa: function CupertinoLocalizationFrCa() { }, CupertinoLocalizationGl: function CupertinoLocalizationGl() { }, CupertinoLocalizationGsw: function CupertinoLocalizationGsw() { }, CupertinoLocalizationGu: function CupertinoLocalizationGu() { }, CupertinoLocalizationHe: function CupertinoLocalizationHe() { }, CupertinoLocalizationHi: function CupertinoLocalizationHi() { }, CupertinoLocalizationHr: function CupertinoLocalizationHr() { }, CupertinoLocalizationHu: function CupertinoLocalizationHu() { }, CupertinoLocalizationHy: function CupertinoLocalizationHy() { }, CupertinoLocalizationId: function CupertinoLocalizationId() { }, CupertinoLocalizationIs: function CupertinoLocalizationIs() { }, CupertinoLocalizationIt: function CupertinoLocalizationIt() { }, CupertinoLocalizationJa: function CupertinoLocalizationJa() { }, CupertinoLocalizationKa: function CupertinoLocalizationKa() { }, CupertinoLocalizationKk: function CupertinoLocalizationKk() { }, CupertinoLocalizationKm: function CupertinoLocalizationKm() { }, CupertinoLocalizationKn: function CupertinoLocalizationKn() { }, CupertinoLocalizationKo: function CupertinoLocalizationKo() { }, CupertinoLocalizationKy: function CupertinoLocalizationKy() { }, CupertinoLocalizationLo: function CupertinoLocalizationLo() { }, CupertinoLocalizationLt: function CupertinoLocalizationLt() { }, CupertinoLocalizationLv: function CupertinoLocalizationLv() { }, CupertinoLocalizationMk: function CupertinoLocalizationMk() { }, CupertinoLocalizationMl: function CupertinoLocalizationMl() { }, CupertinoLocalizationMn: function CupertinoLocalizationMn() { }, CupertinoLocalizationMr: function CupertinoLocalizationMr() { }, CupertinoLocalizationMs: function CupertinoLocalizationMs() { }, CupertinoLocalizationMy: function CupertinoLocalizationMy() { }, CupertinoLocalizationNb: function CupertinoLocalizationNb() { }, CupertinoLocalizationNe: function CupertinoLocalizationNe() { }, CupertinoLocalizationNl: function CupertinoLocalizationNl() { }, CupertinoLocalizationNo: function CupertinoLocalizationNo() { }, CupertinoLocalizationOr: function CupertinoLocalizationOr() { }, CupertinoLocalizationPa: function CupertinoLocalizationPa() { }, CupertinoLocalizationPl: function CupertinoLocalizationPl() { }, CupertinoLocalizationPt: function CupertinoLocalizationPt() { }, CupertinoLocalizationPtPt: function CupertinoLocalizationPtPt() { }, CupertinoLocalizationRo: function CupertinoLocalizationRo() { }, CupertinoLocalizationRu: function CupertinoLocalizationRu() { }, CupertinoLocalizationSi: function CupertinoLocalizationSi() { }, CupertinoLocalizationSk: function CupertinoLocalizationSk() { }, CupertinoLocalizationSl: function CupertinoLocalizationSl() { }, CupertinoLocalizationSq: function CupertinoLocalizationSq() { }, CupertinoLocalizationSr: function CupertinoLocalizationSr() { }, CupertinoLocalizationSrCyrl: function CupertinoLocalizationSrCyrl() { }, CupertinoLocalizationSrLatn: function CupertinoLocalizationSrLatn() { }, CupertinoLocalizationSv: function CupertinoLocalizationSv() { }, CupertinoLocalizationSw: function CupertinoLocalizationSw() { }, CupertinoLocalizationTa: function CupertinoLocalizationTa() { }, CupertinoLocalizationTe: function CupertinoLocalizationTe() { }, CupertinoLocalizationTh: function CupertinoLocalizationTh() { }, CupertinoLocalizationTl: function CupertinoLocalizationTl() { }, CupertinoLocalizationTr: function CupertinoLocalizationTr() { }, CupertinoLocalizationUk: function CupertinoLocalizationUk() { }, CupertinoLocalizationUr: function CupertinoLocalizationUr() { }, CupertinoLocalizationUz: function CupertinoLocalizationUz() { }, CupertinoLocalizationVi: function CupertinoLocalizationVi() { }, CupertinoLocalizationZh: function CupertinoLocalizationZh() { }, CupertinoLocalizationZhHans: function CupertinoLocalizationZhHans() { }, CupertinoLocalizationZhHant: function CupertinoLocalizationZhHant() { }, CupertinoLocalizationZhHantHk: function CupertinoLocalizationZhHantHk() { }, CupertinoLocalizationZhHantTw: function CupertinoLocalizationZhHantTw() { }, CupertinoLocalizationZu: function CupertinoLocalizationZu() { }, DateBuilder: function DateBuilder(t0, t1) { var _ = this; _.year = 1970; _.day = _.month = 1; _.fractionalSecond = _.second = _.minute = _.hour = _.dayOfYear = 0; _._hasAmbiguousCentury = _.utc = _.pm = false; _._date_builder$_locale = t0; _._date_builder$_date = null; _._retried = 0; _.dateOnly = false; _._dateTimeConstructor = t1; }, NumberFormat_NumberFormat: function(newPattern, locale) { return S.NumberFormat_NumberFormat$_forPattern(locale, new S.NumberFormat_NumberFormat_closure(newPattern)); }, NumberFormat_NumberFormat$decimalPattern: function(locale) { return S.NumberFormat_NumberFormat$_forPattern(locale, new S.NumberFormat_NumberFormat$decimalPattern_closure()); }, NumberFormat_NumberFormat$_forPattern: function(locale, getPattern) { var symbols, localeZero, t2, $name, pattern, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t1 = X.verifiedLocale(locale, S.number_format_NumberFormat_localeExists$closure(), null); t1.toString; symbols = $.$get$numberFormatSymbols().$index(0, t1); localeZero = C.JSString_methods._codeUnitAt$1(symbols.ZERO_DIGIT, 0); t2 = $.$get$asciiZeroCodeUnit(); $name = symbols.DEF_CURRENCY_CODE; pattern = getPattern.call$1(symbols); t3 = symbols.MINUS_SIGN; if (pattern == null) t3 = new Q.NumberFormatParseResult(t3, null); else { t3 = new Q.NumberFormatParseResult(t3, null); t4 = new K.StringIterator(pattern); t4.moveNext$0(); new Q.NumberFormatParser(symbols, t4, false, $name, $name, t3)._parse$0(); } t4 = t3.positivePrefix; t5 = t3.negativePrefix; t6 = t3.positiveSuffix; t7 = t3.negativeSuffix; t8 = t3.multiplier; t9 = C.JSNumber_methods.round$0(Math.log(t8) / $.$get$_ln10()); t10 = t3.useExponentialNotation; t11 = t3.minimumExponentDigits; t12 = t3.maximumIntegerDigits; t13 = t3.minimumIntegerDigits; t14 = t3.maximumFractionDigits; t15 = t3.minimumFractionDigits; t16 = t3.groupingSize; t17 = t3.finalGroupingSize; t18 = t3.useSignForPositiveExponent; return new S.NumberFormat(t5, t4, t7, t6, t16, t17, t3.decimalSeparatorAlwaysShown, t18, t10, t12, t13, t14, t15, t11, t8, t9, pattern, t1, symbols, new P.StringBuffer(""), localeZero - t2); }, NumberFormat_localeExists: function(localeName) { if (localeName == null) return false; return $.$get$numberFormatSymbols().containsKey$1(0, localeName); }, NumberFormat: function NumberFormat(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.negativePrefix = t0; _.positivePrefix = t1; _.negativeSuffix = t2; _.positiveSuffix = t3; _._groupingSize = t4; _._finalGroupingSize = t5; _._decimalSeparatorAlwaysShown = t6; _._useSignForPositiveExponent = t7; _._useExponentialNotation = t8; _.maximumIntegerDigits = t9; _.minimumIntegerDigits = t10; _.maximumFractionDigits = t11; _.minimumFractionDigits = t12; _.minimumExponentDigits = t13; _.multiplier = t14; _._multiplierDigits = t15; _._number_format$_pattern = t16; _._number_format$_locale = t17; _._symbols = t18; _._number_format$_buffer = t19; _._zeroOffset = t20; }, NumberFormat_NumberFormat_closure: function NumberFormat_NumberFormat_closure(t0) { this.newPattern = t0; }, NumberFormat_NumberFormat$decimalPattern_closure: function NumberFormat_NumberFormat$decimalPattern_closure() { }, FileStorage: function FileStorage(t0) { this.tag = t0; }, PaymentTypeListResponse: function PaymentTypeListResponse() { }, PaymentTypeItemResponse: function PaymentTypeItemResponse() { }, PaymentTypeEntity: function PaymentTypeEntity() { }, _$PaymentTypeListResponseSerializer: function _$PaymentTypeListResponseSerializer() { }, _$PaymentTypeItemResponseSerializer: function _$PaymentTypeItemResponseSerializer() { }, _$PaymentTypeEntitySerializer: function _$PaymentTypeEntitySerializer() { }, _$PaymentTypeListResponse: function _$PaymentTypeListResponse(t0) { this.data = t0; this._payment_type_model$__hashCode = null; }, PaymentTypeListResponseBuilder: function PaymentTypeListResponseBuilder() { this._payment_type_model$_data = this._payment_type_model$_$v = null; }, _$PaymentTypeItemResponse: function _$PaymentTypeItemResponse(t0) { this.data = t0; this._payment_type_model$__hashCode = null; }, PaymentTypeItemResponseBuilder: function PaymentTypeItemResponseBuilder() { this._payment_type_model$_data = this._payment_type_model$_$v = null; }, _$PaymentTypeEntity: function _$PaymentTypeEntity(t0, t1) { this.name = t0; this.id = t1; this._payment_type_model$__hashCode = null; }, PaymentTypeEntityBuilder: function PaymentTypeEntityBuilder() { this._payment_type_model$_id = this._payment_type_model$_name = this._payment_type_model$_$v = null; }, _PaymentTypeEntity_Object_SelectableEntity: function _PaymentTypeEntity_Object_SelectableEntity() { }, _$TemplateEntity$_: function(body, subject) { return new S._$TemplateEntity(subject, body); }, StaticDataItemResponse: function StaticDataItemResponse() { }, StaticDataEntity: function StaticDataEntity() { }, TemplateEntity: function TemplateEntity() { }, _$StaticDataItemResponseSerializer: function _$StaticDataItemResponseSerializer() { }, _$StaticDataEntitySerializer: function _$StaticDataEntitySerializer() { }, _$TemplateEntitySerializer: function _$TemplateEntitySerializer() { }, _$StaticDataItemResponse: function _$StaticDataItemResponse(t0) { this.data = t0; this._static_data_model$__hashCode = null; }, StaticDataItemResponseBuilder: function StaticDataItemResponseBuilder() { this._static_data_model$_data = this._static_data_model$_$v = null; }, _$StaticDataEntity: function _$StaticDataEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.currencies = t0; _.sizes = t1; _.industries = t2; _.timezones = t3; _.gateways = t4; _.dateFormats = t5; _.datetimeFormats = t6; _.languages = t7; _.paymentTypes = t8; _.countries = t9; _.invoiceStatus = t10; _.templates = t11; _._static_data_model$__hashCode = null; }, StaticDataEntityBuilder: function StaticDataEntityBuilder() { var _ = this; _._templates = _._invoiceStatus = _._countries = _._paymentTypes = _._languages = _._datetimeFormats = _._dateFormats = _._gateways = _._timezones = _._industries = _._sizes = _._currencies = _._static_data_model$_$v = null; }, _$TemplateEntity: function _$TemplateEntity(t0, t1) { this.subject = t0; this.body = t1; this._static_data_model$__hashCode = null; }, TemplateEntityBuilder: function TemplateEntityBuilder() { this._static_data_model$_body = this._subject = this._static_data_model$_$v = null; }, TaskStatusEntity_TaskStatusEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return S._$TaskStatusEntity$_(0, "", "", 0, "", t1, false, false, "", null, 0); }, _$TaskStatusEntity$_: function(archivedAt, assignedUserId, color, createdAt, createdUserId, id, isChanged, isDeleted, $name, statusOrder, updatedAt) { return new S._$TaskStatusEntity($name, color, statusOrder, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, TaskStatusListResponse: function TaskStatusListResponse() { }, TaskStatusItemResponse: function TaskStatusItemResponse() { }, TaskStatusEntity: function TaskStatusEntity() { }, _$TaskStatusListResponseSerializer: function _$TaskStatusListResponseSerializer() { }, _$TaskStatusItemResponseSerializer: function _$TaskStatusItemResponseSerializer() { }, _$TaskStatusEntitySerializer: function _$TaskStatusEntitySerializer() { }, _$TaskStatusListResponse: function _$TaskStatusListResponse(t0) { this.data = t0; this._task_status_model$__hashCode = null; }, TaskStatusListResponseBuilder: function TaskStatusListResponseBuilder() { this._task_status_model$_data = this._task_status_model$_$v = null; }, _$TaskStatusItemResponse: function _$TaskStatusItemResponse(t0) { this.data = t0; this._task_status_model$__hashCode = null; }, TaskStatusItemResponseBuilder: function TaskStatusItemResponseBuilder() { this._task_status_model$_data = this._task_status_model$_$v = null; }, _$TaskStatusEntity: function _$TaskStatusEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.name = t0; _.color = t1; _.statusOrder = t2; _.isChanged = t3; _.createdAt = t4; _.updatedAt = t5; _.archivedAt = t6; _.isDeleted = t7; _.createdUserId = t8; _.assignedUserId = t9; _.id = t10; _._task_status_model$__hashCode = null; }, TaskStatusEntityBuilder: function TaskStatusEntityBuilder() { var _ = this; _._task_status_model$_id = _._task_status_model$_assignedUserId = _._task_status_model$_createdUserId = _._task_status_model$_isDeleted = _._task_status_model$_archivedAt = _._task_status_model$_updatedAt = _._task_status_model$_createdAt = _._task_status_model$_isChanged = _._task_status_model$_statusOrder = _._task_status_model$_color = _._task_status_model$_name = _._task_status_model$_$v = null; }, _TaskStatusEntity_Object_BaseEntity: function _TaskStatusEntity_Object_BaseEntity() { }, _TaskStatusEntity_Object_BaseEntity_SelectableEntity: function _TaskStatusEntity_Object_BaseEntity_SelectableEntity() { }, _TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus: function _TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus() { }, DocumentRepository0: function DocumentRepository0() { }, userLoadUrlReducer: function(authState, action) { return authState.rebuild$1(new S.userLoadUrlReducer_closure(action)); }, userSignUpRequestReducer: function(authState, action) { return authState.rebuild$1(new S.userSignUpRequestReducer_closure()); }, userLoginRequestReducer: function(authState, action) { return authState.rebuild$1(new S.userLoginRequestReducer_closure(action)); }, oauthLoginRequestReducer: function(authState, action) { return authState.rebuild$1(new S.oauthLoginRequestReducer_closure(action)); }, oauthSignUpRequestReducer: function(authState, action) { return authState.rebuild$1(new S.oauthSignUpRequestReducer_closure()); }, userLoginSuccessReducer: function(authState, action) { return authState.rebuild$1(new S.userLoginSuccessReducer_closure()); }, userVerifiedPasswordReducer: function(authState, action) { return authState.rebuild$1(new S.userVerifiedPasswordReducer_closure()); }, userUnverifiedPasswordReducer: function(authState, action) { return authState.rebuild$1(new S.userUnverifiedPasswordReducer_closure()); }, userLoadUrlReducer_closure: function userLoadUrlReducer_closure(t0) { this.action = t0; }, userSignUpRequestReducer_closure: function userSignUpRequestReducer_closure() { }, userLoginRequestReducer_closure: function userLoginRequestReducer_closure(t0) { this.action = t0; }, oauthLoginRequestReducer_closure: function oauthLoginRequestReducer_closure(t0) { this.action = t0; }, oauthSignUpRequestReducer_closure: function oauthSignUpRequestReducer_closure() { }, userLoginSuccessReducer_closure: function userLoginSuccessReducer_closure() { }, userVerifiedPasswordReducer_closure: function userVerifiedPasswordReducer_closure() { }, userUnverifiedPasswordReducer_closure: function userUnverifiedPasswordReducer_closure() { }, clientUIReducer: function(state, action) { var t1; state.toString; t1 = new F.ClientUIStateBuilder(); t1._client_state$_$v = state; new S.clientUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _viewClientList0: function(clientListState, action) { return clientListState.rebuild$1(new S._viewClientList_closure()); }, _filterClientsByCustom1: function(clientListState, action) { var t1 = clientListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return clientListState.rebuild$1(new S._filterClientsByCustom1_closure(action)); else return clientListState.rebuild$1(new S._filterClientsByCustom1_closure0(action)); }, _filterClientsByCustom2: function(clientListState, action) { var t1 = clientListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return clientListState.rebuild$1(new S._filterClientsByCustom2_closure(action)); else return clientListState.rebuild$1(new S._filterClientsByCustom2_closure0(action)); }, _filterClientsByCustom3: function(clientListState, action) { var t1 = clientListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return clientListState.rebuild$1(new S._filterClientsByCustom3_closure(action)); else return clientListState.rebuild$1(new S._filterClientsByCustom3_closure0(action)); }, _filterClientsByCustom4: function(clientListState, action) { var t1 = clientListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return clientListState.rebuild$1(new S._filterClientsByCustom4_closure(action)); else return clientListState.rebuild$1(new S._filterClientsByCustom4_closure0(action)); }, _filterClientsByState: function(clientListState, action) { var t1 = clientListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return clientListState.rebuild$1(new S._filterClientsByState_closure(action)); else return clientListState.rebuild$1(new S._filterClientsByState_closure0(action)); }, _filterClients: function(clientListState, action) { return clientListState.rebuild$1(new S._filterClients_closure(action, clientListState)); }, _sortClients: function(clientListState, action) { return clientListState.rebuild$1(new S._sortClients_closure(action)); }, _startListMultiselect: function(clientListState, action) { return clientListState.rebuild$1(new S._startListMultiselect_closure21()); }, _addToListMultiselect: function(clientListState, action) { return clientListState.rebuild$1(new S._addToListMultiselect_closure21(action)); }, _removeFromListMultiselect: function(clientListState, action) { return clientListState.rebuild$1(new S._removeFromListMultiselect_closure21(action)); }, _clearListMultiselect: function(clientListState, action) { return clientListState.rebuild$1(new S._clearListMultiselect_closure21()); }, _archiveClientSuccess: function(clientState, action) { return clientState.rebuild$1(new S._archiveClientSuccess_closure(action)); }, _deleteClientSuccess: function(clientState, action) { return clientState.rebuild$1(new S._deleteClientSuccess_closure(action)); }, _restoreClientSuccess: function(clientState, action) { return clientState.rebuild$1(new S._restoreClientSuccess_closure(action)); }, _addClient: function(clientState, action) { return clientState.rebuild$1(new S._addClient_closure(action)); }, _updateClient: function(clientState, action) { return clientState.rebuild$1(new S._updateClient_closure(action)); }, _setLoadedClient: function(clientState, action) { return clientState.rebuild$1(new S._setLoadedClient_closure(action)); }, _setLoadedClients: function(clientState, action) { return clientState.loadClients$1(action.clients); }, _setLoadedCompany: function(clientState, action) { return clientState.loadClients$1(action.userCompany.company.clients); }, clientUIReducer_closure: function clientUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure167: function forceSelectedReducer_closure167() { }, forceSelectedReducer_closure168: function forceSelectedReducer_closure168() { }, forceSelectedReducer_closure169: function forceSelectedReducer_closure169() { }, forceSelectedReducer_closure170: function forceSelectedReducer_closure170() { }, forceSelectedReducer_closure171: function forceSelectedReducer_closure171() { }, forceSelectedReducer_closure172: function forceSelectedReducer_closure172() { }, forceSelectedReducer_closure173: function forceSelectedReducer_closure173() { }, forceSelectedReducer_closure174: function forceSelectedReducer_closure174() { }, tabIndexReducer_closure21: function tabIndexReducer_closure21() { }, tabIndexReducer_closure22: function tabIndexReducer_closure22() { }, saveCompleterReducer_closure1: function saveCompleterReducer_closure1() { }, cancelCompleterReducer_closure1: function cancelCompleterReducer_closure1() { }, editingContactReducer_closure: function editingContactReducer_closure() { }, editingContactReducer_closure0: function editingContactReducer_closure0() { }, selectedIdReducer_closure335: function selectedIdReducer_closure335() { }, selectedIdReducer_closure336: function selectedIdReducer_closure336() { }, selectedIdReducer_closure337: function selectedIdReducer_closure337() { }, selectedIdReducer_closure338: function selectedIdReducer_closure338() { }, selectedIdReducer_closure339: function selectedIdReducer_closure339() { }, selectedIdReducer_closure340: function selectedIdReducer_closure340() { }, selectedIdReducer_closure341: function selectedIdReducer_closure341() { }, selectedIdReducer_closure342: function selectedIdReducer_closure342() { }, selectedIdReducer_closure343: function selectedIdReducer_closure343() { }, selectedIdReducer_closure344: function selectedIdReducer_closure344() { }, selectedIdReducer_closure345: function selectedIdReducer_closure345() { }, selectedIdReducer_closure346: function selectedIdReducer_closure346() { }, selectedIdReducer_closure347: function selectedIdReducer_closure347() { }, selectedIdReducer_closure348: function selectedIdReducer_closure348() { }, selectedIdReducer_closure349: function selectedIdReducer_closure349() { }, selectedIdReducer_closure350: function selectedIdReducer_closure350() { }, selectedIdReducer_closure351: function selectedIdReducer_closure351() { }, editingReducer_closure112: function editingReducer_closure112() { }, editingReducer_closure113: function editingReducer_closure113() { }, editingReducer_closure114: function editingReducer_closure114() { }, editingReducer_closure115: function editingReducer_closure115() { }, editingReducer_closure116: function editingReducer_closure116() { }, editingReducer_closure117: function editingReducer_closure117() { }, editingReducer_closure118: function editingReducer_closure118() { }, editingReducer__closure48: function editingReducer__closure48() { }, editingReducer_closure119: function editingReducer_closure119() { }, editingReducer__closure47: function editingReducer__closure47(t0) { this.action = t0; }, editingReducer_closure120: function editingReducer_closure120() { }, editingReducer__closure46: function editingReducer__closure46(t0) { this.action = t0; }, editingReducer_closure121: function editingReducer_closure121() { }, editingReducer__closure45: function editingReducer__closure45(t0) { this.action = t0; }, editingReducer_closure122: function editingReducer_closure122() { }, editingReducer_closure123: function editingReducer_closure123() { }, editingReducer_closure124: function editingReducer_closure124() { }, editingReducer_closure125: function editingReducer_closure125() { }, _viewClientList_closure: function _viewClientList_closure() { }, _filterClientsByCustom1_closure: function _filterClientsByCustom1_closure(t0) { this.action = t0; }, _filterClientsByCustom1_closure0: function _filterClientsByCustom1_closure0(t0) { this.action = t0; }, _filterClientsByCustom2_closure: function _filterClientsByCustom2_closure(t0) { this.action = t0; }, _filterClientsByCustom2_closure0: function _filterClientsByCustom2_closure0(t0) { this.action = t0; }, _filterClientsByCustom3_closure: function _filterClientsByCustom3_closure(t0) { this.action = t0; }, _filterClientsByCustom3_closure0: function _filterClientsByCustom3_closure0(t0) { this.action = t0; }, _filterClientsByCustom4_closure: function _filterClientsByCustom4_closure(t0) { this.action = t0; }, _filterClientsByCustom4_closure0: function _filterClientsByCustom4_closure0(t0) { this.action = t0; }, _filterClientsByState_closure: function _filterClientsByState_closure(t0) { this.action = t0; }, _filterClientsByState_closure0: function _filterClientsByState_closure0(t0) { this.action = t0; }, _filterClients_closure: function _filterClients_closure(t0, t1) { this.action = t0; this.clientListState = t1; }, _sortClients_closure: function _sortClients_closure(t0) { this.action = t0; }, _startListMultiselect_closure21: function _startListMultiselect_closure21() { }, _addToListMultiselect_closure21: function _addToListMultiselect_closure21(t0) { this.action = t0; }, _removeFromListMultiselect_closure21: function _removeFromListMultiselect_closure21(t0) { this.action = t0; }, _clearListMultiselect_closure21: function _clearListMultiselect_closure21() { }, _archiveClientSuccess_closure: function _archiveClientSuccess_closure(t0) { this.action = t0; }, _deleteClientSuccess_closure: function _deleteClientSuccess_closure(t0) { this.action = t0; }, _restoreClientSuccess_closure: function _restoreClientSuccess_closure(t0) { this.action = t0; }, _addClient_closure: function _addClient_closure(t0) { this.action = t0; }, _addClient__closure: function _addClient__closure() { }, _updateClient_closure: function _updateClient_closure(t0) { this.action = t0; }, _updateClient__closure: function _updateClient__closure() { }, _setLoadedClient_closure: function _setLoadedClient_closure(t0) { this.action = t0; }, _setLoadedClient__closure: function _setLoadedClient__closure() { }, filteredGroupsSelector: function(selectionState, groupMap, groupList, groupListState) { var t1 = J.where$1$ax(groupList._list, new S.filteredGroupsSelector_closure(groupMap, selectionState, groupListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new S.filteredGroupsSelector_closure0(groupMap, groupListState)); return list; }, clientStatsForGroup: function(clientMap, groupId) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(clientMap._map$_map, new S.clientStatsForGroup_closure(t1, groupId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, memoizedFilteredGroupList_closure: function memoizedFilteredGroupList_closure() { }, filteredGroupsSelector_closure: function filteredGroupsSelector_closure(t0, t1, t2) { this.groupMap = t0; this.selectionState = t1; this.groupListState = t2; }, filteredGroupsSelector_closure0: function filteredGroupsSelector_closure0(t0, t1) { this.groupMap = t0; this.groupListState = t1; }, memoizedClientStatsForGroup_closure: function memoizedClientStatsForGroup_closure() { }, clientStatsForGroup_closure: function clientStatsForGroup_closure(t0, t1) { this._box_0 = t0; this.groupId = t1; }, _viewQuote: function() { return new S._viewQuote_closure(); }, _viewQuoteList: function() { return new S._viewQuoteList_closure0(); }, _editQuote: function() { return new S._editQuote_closure(); }, _showEmailQuote: function() { return new S._showEmailQuote_closure(); }, _showPdfQuote: function() { return new S._showPdfQuote_closure(); }, _archiveQuote: function(repository) { return new S._archiveQuote_closure(repository); }, _deleteQuote: function(repository) { return new S._deleteQuote_closure(repository); }, _restoreQuote: function(repository) { return new S._restoreQuote_closure(repository); }, _convertQuote: function(repository) { return new S._convertQuote_closure(repository); }, _markSentQuote: function(repository) { return new S._markSentQuote_closure(repository); }, _emailQuote: function(repository) { return new S._emailQuote_closure(repository); }, _saveQuote: function(repository) { return new S._saveQuote_closure(repository); }, _loadQuote: function(repository) { return new S._loadQuote_closure(repository); }, _downloadQuotes: function(repository) { return new S._downloadQuotes_closure(repository); }, _bulkEmailQuotes: function(repository) { return new S._bulkEmailQuotes_closure(repository); }, _loadQuotes: function(repository) { return new S._loadQuotes_closure(repository); }, _saveDocument6: function(repository) { return new S._saveDocument_closure4(repository); }, _viewQuote_closure: function _viewQuote_closure() { }, _viewQuoteList_closure0: function _viewQuoteList_closure0() { }, _viewQuoteList__closure: function _viewQuoteList__closure() { }, _editQuote_closure: function _editQuote_closure() { }, _showEmailQuote_closure: function _showEmailQuote_closure() { }, _showPdfQuote_closure: function _showPdfQuote_closure() { }, _archiveQuote_closure: function _archiveQuote_closure(t0) { this.repository = t0; }, _archiveQuote__closure: function _archiveQuote__closure(t0) { this.store = t0; }, _archiveQuote__closure0: function _archiveQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveQuote__closure1: function _archiveQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _deleteQuote_closure: function _deleteQuote_closure(t0) { this.repository = t0; }, _deleteQuote__closure: function _deleteQuote__closure(t0) { this.store = t0; }, _deleteQuote__closure0: function _deleteQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteQuote__closure1: function _deleteQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _restoreQuote_closure: function _restoreQuote_closure(t0) { this.repository = t0; }, _restoreQuote__closure: function _restoreQuote__closure(t0) { this.store = t0; }, _restoreQuote__closure0: function _restoreQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreQuote__closure1: function _restoreQuote__closure1(t0, t1, t2) { this.store = t0; this.prevQuotes = t1; this.action = t2; }, _convertQuote_closure: function _convertQuote_closure(t0) { this.repository = t0; }, _convertQuote__closure: function _convertQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _convertQuote__closure0: function _convertQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markSentQuote_closure: function _markSentQuote_closure(t0) { this.repository = t0; }, _markSentQuote__closure: function _markSentQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _markSentQuote__closure0: function _markSentQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailQuote_closure: function _emailQuote_closure(t0) { this.repository = t0; }, _emailQuote__closure: function _emailQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailQuote__closure0: function _emailQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveQuote_closure: function _saveQuote_closure(t0) { this.repository = t0; }, _saveQuote__closure: function _saveQuote__closure(t0) { this.action = t0; }, _saveQuote___closure: function _saveQuote___closure() { }, _saveQuote__closure0: function _saveQuote__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveQuote__closure1: function _saveQuote__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadQuote_closure: function _loadQuote_closure(t0) { this.repository = t0; }, _loadQuote__closure: function _loadQuote__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadQuote__closure0: function _loadQuote__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadQuotes_closure: function _downloadQuotes_closure(t0) { this.repository = t0; }, _downloadQuotes__closure: function _downloadQuotes__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadQuotes__closure0: function _downloadQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailQuotes_closure: function _bulkEmailQuotes_closure(t0) { this.repository = t0; }, _bulkEmailQuotes__closure: function _bulkEmailQuotes__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailQuotes__closure0: function _bulkEmailQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadQuotes_closure: function _loadQuotes_closure(t0) { this.repository = t0; }, _loadQuotes__closure: function _loadQuotes__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadQuotes__closure0: function _loadQuotes__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure4: function _saveDocument_closure4(t0) { this.repository = t0; }, _saveDocument__closure9: function _saveDocument__closure9(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure10: function _saveDocument__closure10(t0, t1) { this.store = t0; this.action = t1; }, tokenUIReducer: function(state, action) { var t1; state.toString; t1 = new N.TokenUIStateBuilder(); t1._token_state$_$v = state; new S.tokenUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing17: function(token, action) { return D.TokenEntity_TokenEntity(null, null); }, _updateEditing18: function(token, action) { return action.get$token(); }, _viewTokenList0: function(tokenListState, action) { return tokenListState.rebuild$1(new S._viewTokenList_closure()); }, _filterTokensByCustom1: function(tokenListState, action) { var t1 = tokenListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return tokenListState.rebuild$1(new S._filterTokensByCustom1_closure(action)); else return tokenListState.rebuild$1(new S._filterTokensByCustom1_closure0(action)); }, _filterTokensByCustom2: function(tokenListState, action) { var t1 = tokenListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return tokenListState.rebuild$1(new S._filterTokensByCustom2_closure(action)); else return tokenListState.rebuild$1(new S._filterTokensByCustom2_closure0(action)); }, _filterTokensByState: function(tokenListState, action) { var t1 = tokenListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return tokenListState.rebuild$1(new S._filterTokensByState_closure(action)); else return tokenListState.rebuild$1(new S._filterTokensByState_closure0(action)); }, _filterTokens: function(tokenListState, action) { return tokenListState.rebuild$1(new S._filterTokens_closure(action, tokenListState)); }, _sortTokens: function(tokenListState, action) { return tokenListState.rebuild$1(new S._sortTokens_closure(action)); }, _startListMultiselect19: function(productListState, action) { return productListState.rebuild$1(new S._startListMultiselect_closure13()); }, _addToListMultiselect19: function(productListState, action) { return productListState.rebuild$1(new S._addToListMultiselect_closure13(action)); }, _removeFromListMultiselect19: function(productListState, action) { return productListState.rebuild$1(new S._removeFromListMultiselect_closure13(action)); }, _clearListMultiselect19: function(productListState, action) { return productListState.rebuild$1(new S._clearListMultiselect_closure13()); }, _archiveTokenSuccess: function(tokenState, action) { return tokenState.rebuild$1(new S._archiveTokenSuccess_closure(action)); }, _deleteTokenSuccess: function(tokenState, action) { return tokenState.rebuild$1(new S._deleteTokenSuccess_closure(action)); }, _restoreTokenSuccess: function(tokenState, action) { return tokenState.rebuild$1(new S._restoreTokenSuccess_closure(action)); }, _addToken: function(tokenState, action) { return tokenState.rebuild$1(new S._addToken_closure(action)); }, _updateToken: function(tokenState, action) { return tokenState.rebuild$1(new S._updateToken_closure(action)); }, _setLoadedToken: function(tokenState, action) { return tokenState.rebuild$1(new S._setLoadedToken_closure(action)); }, _setLoadedTokens: function(tokenState, action) { return tokenState.loadTokens$1(action.tokens); }, _setLoadedCompany18: function(tokenState, action) { return tokenState.loadTokens$1(action.userCompany.company.tokens); }, tokenUIReducer_closure: function tokenUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure103: function forceSelectedReducer_closure103() { }, forceSelectedReducer_closure104: function forceSelectedReducer_closure104() { }, forceSelectedReducer_closure105: function forceSelectedReducer_closure105() { }, forceSelectedReducer_closure106: function forceSelectedReducer_closure106() { }, forceSelectedReducer_closure107: function forceSelectedReducer_closure107() { }, forceSelectedReducer_closure108: function forceSelectedReducer_closure108() { }, forceSelectedReducer_closure109: function forceSelectedReducer_closure109() { }, forceSelectedReducer_closure110: function forceSelectedReducer_closure110() { }, selectedIdReducer_closure207: function selectedIdReducer_closure207() { }, selectedIdReducer_closure208: function selectedIdReducer_closure208() { }, selectedIdReducer_closure209: function selectedIdReducer_closure209() { }, selectedIdReducer_closure210: function selectedIdReducer_closure210() { }, selectedIdReducer_closure211: function selectedIdReducer_closure211() { }, selectedIdReducer_closure212: function selectedIdReducer_closure212() { }, selectedIdReducer_closure213: function selectedIdReducer_closure213() { }, selectedIdReducer_closure214: function selectedIdReducer_closure214() { }, selectedIdReducer_closure215: function selectedIdReducer_closure215() { }, selectedIdReducer_closure216: function selectedIdReducer_closure216() { }, selectedIdReducer_closure217: function selectedIdReducer_closure217() { }, selectedIdReducer_closure218: function selectedIdReducer_closure218() { }, selectedIdReducer_closure219: function selectedIdReducer_closure219() { }, selectedIdReducer_closure220: function selectedIdReducer_closure220() { }, selectedIdReducer_closure221: function selectedIdReducer_closure221() { }, editingReducer_closure66: function editingReducer_closure66() { }, editingReducer_closure67: function editingReducer_closure67() { }, editingReducer_closure68: function editingReducer_closure68() { }, editingReducer_closure69: function editingReducer_closure69() { }, editingReducer__closure25: function editingReducer__closure25() { }, _viewTokenList_closure: function _viewTokenList_closure() { }, _filterTokensByCustom1_closure: function _filterTokensByCustom1_closure(t0) { this.action = t0; }, _filterTokensByCustom1_closure0: function _filterTokensByCustom1_closure0(t0) { this.action = t0; }, _filterTokensByCustom2_closure: function _filterTokensByCustom2_closure(t0) { this.action = t0; }, _filterTokensByCustom2_closure0: function _filterTokensByCustom2_closure0(t0) { this.action = t0; }, _filterTokensByState_closure: function _filterTokensByState_closure(t0) { this.action = t0; }, _filterTokensByState_closure0: function _filterTokensByState_closure0(t0) { this.action = t0; }, _filterTokens_closure: function _filterTokens_closure(t0, t1) { this.action = t0; this.tokenListState = t1; }, _sortTokens_closure: function _sortTokens_closure(t0) { this.action = t0; }, _startListMultiselect_closure13: function _startListMultiselect_closure13() { }, _addToListMultiselect_closure13: function _addToListMultiselect_closure13(t0) { this.action = t0; }, _removeFromListMultiselect_closure13: function _removeFromListMultiselect_closure13(t0) { this.action = t0; }, _clearListMultiselect_closure13: function _clearListMultiselect_closure13() { }, _archiveTokenSuccess_closure: function _archiveTokenSuccess_closure(t0) { this.action = t0; }, _deleteTokenSuccess_closure: function _deleteTokenSuccess_closure(t0) { this.action = t0; }, _restoreTokenSuccess_closure: function _restoreTokenSuccess_closure(t0) { this.action = t0; }, _addToken_closure: function _addToken_closure(t0) { this.action = t0; }, _updateToken_closure: function _updateToken_closure(t0) { this.action = t0; }, _setLoadedToken_closure: function _setLoadedToken_closure(t0) { this.action = t0; }, handleWebhookAction: function(context, webhooks, action) { var store, t1, webhook, t2, webhookIds, message, _i, t3, _s6_ = ":value", _s12_ = "_dispatchers"; if (webhooks.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); webhook = type$.legacy_WebhookEntity._as(C.JSArray_methods.get$first(webhooks)); t2 = H._arrayInstanceType(webhooks)._eval$1("MappedListIterable<1,String*>"); webhookIds = P.List_List$of(new H.MappedListIterable(webhooks, new S.handleWebhookAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_copy: T.Clipboard_setData(new T.ClipboardData(webhook.targetUrl)); M.showToast(C.JSString_methods.replaceFirst$2(t1.get$copiedToClipboard(), ":value ", "")); break; case C.EntityAction_edit: M.editEntity(null, context, webhook, null); break; case C.EntityAction_restore: t2 = webhookIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_webhooks"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_webhook"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.RestoreWebhooksRequest(t1, webhookIds)); break; case C.EntityAction_archive: t2 = webhookIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_webhooks"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_webhook"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.ArchiveWebhooksRequest(t1, webhookIds)); break; case C.EntityAction_delete: t2 = webhookIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_webhooks"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_webhook"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.DeleteWebhooksRequest(t1, webhookIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.webhookUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.StartWebhookMultiselect()); t1 = webhooks.length; if (t1 === 0) break; for (_i = 0; _i < webhooks.length; webhooks.length === t1 || (0, H.throwConcurrentModificationError)(webhooks), ++_i) { webhook = webhooks[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.webhookUIState.listUIState; t3 = J.get$id$x(webhook); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new S.AddToWebhookMultiselect(webhook)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new S.RemoveFromWebhookMultiselect(webhook)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([webhook], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewWebhookList: function ViewWebhookList() { }, ViewWebhook: function ViewWebhook(t0) { this.webhookId = t0; }, EditWebhook: function EditWebhook(t0) { this.webhook = t0; }, UpdateWebhook: function UpdateWebhook(t0) { this.webhook = t0; }, LoadWebhookRequest: function LoadWebhookRequest() { }, LoadWebhookFailure: function LoadWebhookFailure(t0) { this.error = t0; }, LoadWebhookSuccess: function LoadWebhookSuccess(t0) { this.webhook = t0; }, LoadWebhooksRequest: function LoadWebhooksRequest() { }, LoadWebhooksFailure: function LoadWebhooksFailure(t0) { this.error = t0; }, LoadWebhooksSuccess: function LoadWebhooksSuccess(t0) { this.webhooks = t0; }, SaveWebhookRequest: function SaveWebhookRequest(t0, t1) { this.completer = t0; this.webhook = t1; }, SaveWebhookSuccess: function SaveWebhookSuccess(t0) { this.webhook = t0; }, AddWebhookSuccess: function AddWebhookSuccess(t0) { this.webhook = t0; }, SaveWebhookFailure: function SaveWebhookFailure() { }, ArchiveWebhooksRequest: function ArchiveWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, ArchiveWebhooksSuccess: function ArchiveWebhooksSuccess(t0) { this.webhooks = t0; }, ArchiveWebhooksFailure: function ArchiveWebhooksFailure() { }, DeleteWebhooksRequest: function DeleteWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, DeleteWebhooksSuccess: function DeleteWebhooksSuccess(t0) { this.webhooks = t0; }, DeleteWebhooksFailure: function DeleteWebhooksFailure() { }, RestoreWebhooksRequest: function RestoreWebhooksRequest(t0, t1) { this.completer = t0; this.webhookIds = t1; }, RestoreWebhooksSuccess: function RestoreWebhooksSuccess(t0) { this.webhooks = t0; }, RestoreWebhooksFailure: function RestoreWebhooksFailure() { }, FilterWebhooks: function FilterWebhooks(t0) { this.filter = t0; }, SortWebhooks: function SortWebhooks(t0) { this.field = t0; }, FilterWebhooksByState: function FilterWebhooksByState(t0) { this.state = t0; }, FilterWebhooksByCustom1: function FilterWebhooksByCustom1(t0) { this.value = t0; }, FilterWebhooksByCustom2: function FilterWebhooksByCustom2(t0) { this.value = t0; }, FilterWebhooksByCustom3: function FilterWebhooksByCustom3(t0) { this.value = t0; }, FilterWebhooksByCustom4: function FilterWebhooksByCustom4(t0) { this.value = t0; }, handleWebhookAction_closure: function handleWebhookAction_closure() { }, StartWebhookMultiselect: function StartWebhookMultiselect() { }, AddToWebhookMultiselect: function AddToWebhookMultiselect(t0) { this.entity = t0; }, RemoveFromWebhookMultiselect: function RemoveFromWebhookMultiselect(t0) { this.entity = t0; }, ClearWebhookMultiselect: function ClearWebhookMultiselect() { }, AppWebView: function AppWebView(t0, t1) { this.html = t0; this.key = t1; }, _WebWebView: function _WebWebView(t0, t1) { this.html = t0; this.key = t1; }, DecoratedFormField$: function(autocorrect, autofillHints, autofocus, autovalidate, controller, decoration, enabled, focusNode, hint, initialValue, inputFormatters, isMoney, isPercent, key, keyboardType, label, maxLines, minLines, obscureText, onChanged, onFieldSubmitted, onSavePressed, showClear, suffixIcon, suffixIconButton, textAlign, validator) { return new S.DecoratedFormField(controller, label, hint, initialValue, validator, keyboardType, maxLines, minLines, autovalidate, enabled, false, obscureText, autofocus, onFieldSubmitted, onChanged, suffixIcon, suffixIconButton, autofillHints, onSavePressed, textAlign, decoration, focusNode, isMoney, isPercent, showClear, inputFormatters, key); }, DecoratedFormField: function DecoratedFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.controller = t0; _.label = t1; _.hint = t2; _.initialValue = t3; _.validator = t4; _.keyboardType = t5; _.maxLines = t6; _.minLines = t7; _.autovalidate = t8; _.enabled = t9; _.autocorrect = t10; _.obscureText = t11; _.autofocus = t12; _.onFieldSubmitted = t13; _.onChanged = t14; _.suffixIcon = t15; _.suffixIconButton = t16; _.autofillHints = t17; _.onSavePressed = t18; _.textAlign = t19; _.decoration = t20; _.focusNode = t21; _.isMoney = t22; _.isPercent = t23; _.showClear = t24; _.inputFormatters = t25; _.key = t26; }, _DecoratedFormFieldState: function _DecoratedFormFieldState(t0) { var _ = this; _._showClear = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DecoratedFormFieldState_build_closure: function _DecoratedFormFieldState_build_closure(t0) { this.$this = t0; }, _DecoratedFormFieldState_build__closure: function _DecoratedFormFieldState_build__closure(t0) { this.$this = t0; }, _DecoratedFormFieldState_build_closure0: function _DecoratedFormFieldState_build_closure0(t0) { this.$this = t0; }, _DecoratedFormFieldState_build_closure1: function _DecoratedFormFieldState_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.calcKeyboardType = t1; _.enterShouldSubmit = t2; _.context = t3; }, PasswordFormField: function PasswordFormField(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.onSavePressed = t1; _.autoValidate = t2; _.newPassword = t3; _.labelText = t4; _.key = t5; }, _PasswordFormFieldState: function _PasswordFormFieldState(t0) { var _ = this; _._password_field$_isPasswordObscured = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PasswordFormFieldState_build_closure: function _PasswordFormFieldState_build_closure(t0) { this.$this = t0; }, _PasswordFormFieldState_build__closure: function _PasswordFormFieldState_build__closure(t0) { this.$this = t0; }, _PasswordFormFieldState_build_closure0: function _PasswordFormFieldState_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, IconMessage: function IconMessage(t0, t1, t2, t3) { var _ = this; _.text = t0; _.iconData = t1; _.color = t2; _.key = t3; }, EntityList$: function(entityList, entityType, itemBuilder, onClearMultiselect, onRefreshed, onSortColumn, presenter, state, tableColumns) { return new S.EntityList(state, entityType, tableColumns, entityList, onRefreshed, presenter, onSortColumn, itemBuilder, onClearMultiselect, new D.ValueKey("__" + entityType.toString$0(0) + "_" + H.S(tableColumns) + "__", type$.ValueKey_legacy_String)); }, EntityList: function EntityList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.entityType = t1; _.tableColumns = t2; _.entityList = t3; _.onRefreshed = t4; _.presenter = t5; _.onSortColumn = t6; _.itemBuilder = t7; _.onClearMultiselect = t8; _.key = t9; }, _EntityListState: function _EntityListState(t0) { var _ = this; _.dataTableSource = null; _._entity_list$_firstRowIndex = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityListState_initState_closure: function _EntityListState_initState_closure(t0) { this.$this = t0; }, _EntityListState_build_closure: function _EntityListState_build_closure(t0, t1) { this.entityType = t0; this.entityId = t1; }, _EntityListState_build_closure7: function _EntityListState_build_closure7(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.$this = t0; _.isList = t1; _.uiState = t2; _.context = t3; _.state = t4; _.store = t5; _.entityList = t6; _.listUIState = t7; _.entityMap = t8; _.isInMultiselect = t9; _.entityType = t10; }, _EntityListState_build__closure: function _EntityListState_build__closure(t0) { this.state = t0; }, _EntityListState_build__closure0: function _EntityListState_build__closure0(t0) { this.store = t0; }, _EntityListState_build__closure2: function _EntityListState_build__closure2(t0) { this.entityList = t0; }, _EntityListState_build__closure1: function _EntityListState_build__closure1(t0, t1) { this.$this = t0; this.entityList = t1; }, _EntityListState_build__closure3: function _EntityListState_build__closure3(t0) { this.state = t0; }, _EntityListState_build__closure4: function _EntityListState_build__closure4(t0) { this.store = t0; }, _EntityListState_build__closure6: function _EntityListState_build__closure6(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.entityList = t1; _.rowsPerPage = t2; _.entityMap = t3; _.listUIState = t4; }, _EntityListState_build___closure: function _EntityListState_build___closure(t0) { this.entityMap = t0; }, _EntityListState_build___closure0: function _EntityListState_build___closure0(t0, t1) { this.value = t0; this.listUIState = t1; }, _EntityListState_build__closure5: function _EntityListState_build__closure5(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.entityType = t2; _.state = t3; }, _EntityListState_build___closure1: function _EntityListState_build___closure1(t0, t1) { this.$this = t0; this.field = t1; }, _EntityListState_build__closure7: function _EntityListState_build__closure7(t0) { this.$this = t0; }, _EntityListState_build_closure0: function _EntityListState_build_closure0(t0) { this.entityMap = t0; }, _EntityListState_build_closure1: function _EntityListState_build_closure1() { }, _EntityListState_build_closure8: function _EntityListState_build_closure8(t0, t1) { this.$this = t0; this.context = t1; }, _EntityListState_build_closure2: function _EntityListState_build_closure2(t0, t1, t2) { this.entityList = t0; this.state = t1; this.entityMap = t2; }, _EntityListState_build__closure12: function _EntityListState_build__closure12(t0) { this.entityMap = t0; }, _EntityListState_build_closure4: function _EntityListState_build_closure4(t0, t1, t2) { this.$this = t0; this.localization = t1; this.entities = t2; }, _EntityListState_build__closure9: function _EntityListState_build__closure9(t0, t1, t2) { this.$this = t0; this.entities = t1; this.action = t2; }, _EntityListState_build_closure3: function _EntityListState_build_closure3(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.state = t2; _.entities = t3; _.actions = t4; }, _EntityListState_build__closure11: function _EntityListState_build__closure11(t0, t1) { this.$this = t0; this.entities = t1; }, _EntityListState_build__closure10: function _EntityListState_build__closure10(t0, t1) { this.actions = t0; this.remaining = t1; }, _EntityListState_build___closure2: function _EntityListState_build___closure2(t0) { this.context = t0; }, _EntityListState_build_closure6: function _EntityListState_build_closure6(t0, t1) { this.$this = t0; this.entities = t1; }, _EntityListState_build__closure8: function _EntityListState_build__closure8(t0) { this.$this = t0; }, _EntityListState_build_closure5: function _EntityListState_build_closure5(t0) { this.$this = t0; }, ClientPdfView: function ClientPdfView(t0, t1, t2) { this.viewModel = t0; this.showAppBar = t1; this.key = t2; }, _ClientPdfViewState: function _ClientPdfViewState(t0, t1) { var _ = this; _._client_pdf$_isLoading = true; _._pdfController = _._client_pdf$_response = _._client_pdf$_pdfString = null; _._pageCount = _._pageNumber = 1; _._client_pdf$_dateRange = t0; _._showAging = _._showPayments = true; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ClientPdfViewState_loadPdf_closure: function _ClientPdfViewState_loadPdf_closure(t0) { this.$this = t0; }, _ClientPdfViewState_loadPdf_closure0: function _ClientPdfViewState_loadPdf_closure0(t0) { this.$this = t0; }, _ClientPdfViewState_loadPdf__closure: function _ClientPdfViewState_loadPdf__closure(t0, t1) { this.$this = t0; this.response = t1; }, _ClientPdfViewState_loadPdf_closure1: function _ClientPdfViewState_loadPdf_closure1(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure: function _ClientPdfViewState_build_closure(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure0: function _ClientPdfViewState_build_closure0(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure1: function _ClientPdfViewState_build_closure1(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure0: function _ClientPdfViewState_build__closure0(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure2: function _ClientPdfViewState_build_closure2(t0) { this.$this = t0; }, _ClientPdfViewState_build__closure: function _ClientPdfViewState_build__closure(t0) { this.$this = t0; }, _ClientPdfViewState_build_closure3: function _ClientPdfViewState_build_closure3(t0, t1, t2) { this.$this = t0; this.localization = t1; this.client = t2; }, _ClientPdfViewState_build_closure4: function _ClientPdfViewState_build_closure4(t0) { this.client = t0; }, CompanyGatewayListVM_fromStore: function(store) { var t2, t3, t4, t5, t6, t7, gatewayIds, state = store.get$_store$_state(), t1 = state.uiState, uiState = t1.settingsUIState, companyGatewayIds = uiState.get$settings().companyGatewayIds; if ((companyGatewayIds == null ? "" : companyGatewayIds).length === 0) { t2 = state.userCompanyStates; t3 = t1.selectedCompanyIndex; companyGatewayIds = J.join$1$ax(J.$index$asx(t2._list, t3).companyGatewayState.list._list, ","); } t2 = $.$get$memoizedFilteredCompanyGatewayList(); t3 = state.userCompanyStates; t4 = t1.selectedCompanyIndex; t3 = t3._list; t5 = J.getInterceptor$asx(t3); t6 = t5.$index(t3, t4).companyGatewayState.map; t7 = t5.$index(t3, t4).companyGatewayState.list; t1 = t1.companyGatewayUIState.listUIState; gatewayIds = t2.call$5(t6, t7, t1, companyGatewayIds, uiState.entityType === C.EntityType_company); return new S.CompanyGatewayListVM(state, gatewayIds, t5.$index(t3, t4).companyGatewayState.map, t1.filter, new S.CompanyGatewayListVM_fromStore_closure(new S.CompanyGatewayListVM_fromStore__handleRefresh(store)), new S.CompanyGatewayListVM_fromStore_closure0(gatewayIds, uiState, store), new S.CompanyGatewayListVM_fromStore_closure1(gatewayIds, uiState, store)); }, CompanyGatewayListBuilder: function CompanyGatewayListBuilder(t0) { this.key = t0; }, CompanyGatewayListBuilder_build_closure: function CompanyGatewayListBuilder_build_closure() { }, CompanyGatewayListVM: function CompanyGatewayListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.companyGatewayList = t1; _.companyGatewayMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortChanged = t5; _.onRemovePressed = t6; }, CompanyGatewayListVM_fromStore__handleRefresh: function CompanyGatewayListVM_fromStore__handleRefresh(t0) { this.store = t0; }, CompanyGatewayListVM_fromStore_closure: function CompanyGatewayListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, CompanyGatewayListVM_fromStore_closure1: function CompanyGatewayListVM_fromStore_closure1(t0, t1, t2) { this.gatewayIds = t0; this.uiState = t1; this.store = t2; }, CompanyGatewayListVM_fromStore__closure: function CompanyGatewayListVM_fromStore__closure(t0) { this.gatewayIds = t0; }, CompanyGatewayListVM_fromStore_closure0: function CompanyGatewayListVM_fromStore_closure0(t0, t1, t2) { this.gatewayIds = t0; this.uiState = t1; this.store = t2; }, CompanyGatewayListVM_fromStore__closure0: function CompanyGatewayListVM_fromStore__closure0(t0) { this.gatewayIds = t0; }, EmailCreditVM_EmailCreditVM$fromStore: function(store, credit) { var t4, t5, state = store.get$_store$_state(), t1 = state.isLoading, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).userCompany.company; t3 = t4.$index(t2, t3).clientState.map; t2 = credit.clientId; return new S.EmailCreditVM(state, t1, t5, credit, J.$index$asx(t3._map$_map, t2), new S.EmailCreditVM_EmailCreditVM$fromStore_closure(store, credit), new S.EmailCreditVM_EmailCreditVM$fromStore_closure0(credit, store)); }, CreditEmailScreen: function CreditEmailScreen(t0) { this.key = t0; }, CreditEmailScreen_build_closure1: function CreditEmailScreen_build_closure1() { }, CreditEmailScreen_build_closure0: function CreditEmailScreen_build_closure0() { }, CreditEmailScreen_build_closure: function CreditEmailScreen_build_closure() { }, EmailCreditVM: function EmailCreditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.isLoading = t1; _.company = t2; _.invoice = t3; _.client = t4; _.loadClient = t5; _.onSendPressed = t6; }, EmailCreditVM_EmailCreditVM$fromStore_closure: function EmailCreditVM_EmailCreditVM$fromStore_closure(t0, t1) { this.store = t0; this.credit = t1; }, EmailCreditVM_EmailCreditVM$fromStore_closure0: function EmailCreditVM_EmailCreditVM$fromStore_closure0(t0, t1) { this.credit = t0; this.store = t1; }, EmailCreditVM_EmailCreditVM$fromStore__closure: function EmailCreditVM_EmailCreditVM$fromStore__closure(t0) { this.credit = t0; }, _DashboardSidebar$: function(entityType, label1, label2, label3, list1, list2, list3) { return new S._DashboardSidebar(entityType, label1, label2, label3, list1, list2, list3, null); }, SidebarScaffold: function SidebarScaffold(t0, t1) { this.tabController = t0; this.key = t1; }, SidebarScaffold_build_closure: function SidebarScaffold_build_closure(t0) { this.store = t0; }, InvoiceSidebar: function InvoiceSidebar(t0) { this.key = t0; }, InvoiceSidebar_build_closure: function InvoiceSidebar_build_closure(t0) { this.upcomingInvoices = t0; }, InvoiceSidebar_build_closure0: function InvoiceSidebar_build_closure0() { }, InvoiceSidebar_build_closure1: function InvoiceSidebar_build_closure1(t0) { this.pastDueInvoices = t0; }, InvoiceSidebar_build_closure2: function InvoiceSidebar_build_closure2() { }, InvoiceSidebar_build_closure3: function InvoiceSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, InvoiceSidebar_build_closure4: function InvoiceSidebar_build_closure4() { }, PaymentSidebar: function PaymentSidebar(t0) { this.key = t0; }, PaymentSidebar_build_closure: function PaymentSidebar_build_closure(t0) { this.recentPayments = t0; }, PaymentSidebar_build_closure0: function PaymentSidebar_build_closure0() { }, PaymentSidebar_build_closure1: function PaymentSidebar_build_closure1(t0, t1) { this.state = t0; this.selectedIds = t1; }, PaymentSidebar_build_closure2: function PaymentSidebar_build_closure2() { }, QuoteSidebar: function QuoteSidebar(t0) { this.key = t0; }, QuoteSidebar_build_closure: function QuoteSidebar_build_closure(t0) { this.upcomingQuotes = t0; }, QuoteSidebar_build_closure0: function QuoteSidebar_build_closure0() { }, QuoteSidebar_build_closure1: function QuoteSidebar_build_closure1(t0) { this.expriedQuotes = t0; }, QuoteSidebar_build_closure2: function QuoteSidebar_build_closure2() { }, QuoteSidebar_build_closure3: function QuoteSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, QuoteSidebar_build_closure4: function QuoteSidebar_build_closure4() { }, TaskSidebar: function TaskSidebar(t0) { this.key = t0; }, TaskSidebar_build_closure: function TaskSidebar_build_closure(t0) { this.runningTasks = t0; }, TaskSidebar_build_closure0: function TaskSidebar_build_closure0() { }, TaskSidebar_build_closure1: function TaskSidebar_build_closure1(t0) { this.recentTasks = t0; }, TaskSidebar_build_closure2: function TaskSidebar_build_closure2() { }, TaskSidebar_build_closure3: function TaskSidebar_build_closure3(t0, t1) { this.state = t0; this.selectedIds = t1; }, TaskSidebar_build_closure4: function TaskSidebar_build_closure4() { }, ExpenseSidbar: function ExpenseSidbar(t0) { this.key = t0; }, ExpenseSidbar_build_closure: function ExpenseSidbar_build_closure(t0) { this.recentExpenses = t0; }, ExpenseSidbar_build_closure0: function ExpenseSidbar_build_closure0() { }, ExpenseSidbar_build_closure1: function ExpenseSidbar_build_closure1(t0, t1) { this.state = t0; this.selectedIds = t1; }, ExpenseSidbar_build_closure2: function ExpenseSidbar_build_closure2() { }, _DashboardSidebar: function _DashboardSidebar(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.entityType = t0; _.label1 = t1; _.label2 = t2; _.label3 = t3; _.list1 = t4; _.list2 = t5; _.list3 = t6; _.key = t7; }, _DashboardSidebar_build_closure: function _DashboardSidebar_build_closure(t0, t1) { this.$this = t0; this.store = t1; }, DocumentListItem: function DocumentListItem(t0, t1, t2, t3, t4) { var _ = this; _.userCompany = t0; _.isChecked = t1; _.document = t2; _.filter = t3; _.key = t4; }, DocumentListItem_build_closure1: function DocumentListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, DocumentListItem_build_closure0: function DocumentListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, DocumentListItem_build_closure: function DocumentListItem_build_closure(t0) { this.$this = t0; }, ExpenseEditDesktop: function ExpenseEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpensePresenter: function ExpensePresenter() { this.context = this.entity = null; }, GroupScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).groupState.toString; t5 = $.$get$memoizedFilteredGroupList(); t6 = state.getUISelection$1(C.EntityType_group); t7 = t4.$index(t1, t3).groupState.map; t8 = t4.$index(t1, t3).groupState.list; t2 = t2.groupUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new S.GroupScreenVM(t8); }, GroupScreenBuilder: function GroupScreenBuilder(t0) { this.key = t0; }, GroupScreenBuilder_build_closure: function GroupScreenBuilder_build_closure() { }, GroupScreenVM: function GroupScreenVM(t0) { this.groupList = t0; }, InvoiceEditDesktop: function InvoiceEditDesktop(t0, t1, t2) { this.viewModel = t0; this.entityViewModel = t1; this.key = t2; }, InvoiceEditDesktopState: function InvoiceEditDesktopState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _._tableTabController = _._optionTabController = null; _._invoice_edit_desktop$_showTasksTable = false; _._invoice_edit_desktop$_focusNode = null; _._invoice_edit_desktop$_invoiceNumberController = t0; _._invoice_edit_desktop$_poNumberController = t1; _._invoice_edit_desktop$_discountController = t2; _._invoice_edit_desktop$_partialController = t3; _._invoice_edit_desktop$_custom1Controller = t4; _._invoice_edit_desktop$_custom2Controller = t5; _._invoice_edit_desktop$_custom3Controller = t6; _._invoice_edit_desktop$_custom4Controller = t7; _._invoice_edit_desktop$_surcharge1Controller = t8; _._invoice_edit_desktop$_surcharge2Controller = t9; _._invoice_edit_desktop$_surcharge3Controller = t10; _._invoice_edit_desktop$_surcharge4Controller = t11; _._invoice_edit_desktop$_publicNotesController = t12; _._invoice_edit_desktop$_privateNotesController = t13; _._invoice_edit_desktop$_termsController = t14; _._invoice_edit_desktop$_footerController = t15; _._invoice_edit_desktop$_scrollController = null; _._invoice_edit_desktop$_controllers = t16; _._invoice_edit_desktop$_debouncer = t17; _.TickerProviderStateMixin__tickers = t18; _._widget = null; _._debugLifecycleState = t19; _._framework$_element = null; }, InvoiceEditDesktopState_didChangeDependencies_closure: function InvoiceEditDesktopState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState_didChangeDependencies_closure0: function InvoiceEditDesktopState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditDesktopState_dispose_closure: function InvoiceEditDesktopState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState__onChanged_closure: function InvoiceEditDesktopState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditDesktopState__onChanged_closure0: function InvoiceEditDesktopState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure: function InvoiceEditDesktopState_build_closure() { }, InvoiceEditDesktopState_build_closure0: function InvoiceEditDesktopState_build_closure0() { }, InvoiceEditDesktopState_build_closure2: function InvoiceEditDesktopState_build_closure2(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDesktopState_build_closure1: function InvoiceEditDesktopState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDesktopState_build_closure3: function InvoiceEditDesktopState_build_closure3(t0, t1) { this.context = t0; this.client = t1; }, InvoiceEditDesktopState_build_closure8: function InvoiceEditDesktopState_build_closure8(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure12: function InvoiceEditDesktopState_build__closure12(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure4: function InvoiceEditDesktopState_build_closure4(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure5: function InvoiceEditDesktopState_build_closure5(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure13: function InvoiceEditDesktopState_build__closure13(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure9: function InvoiceEditDesktopState_build_closure9(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure11: function InvoiceEditDesktopState_build__closure11(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure6: function InvoiceEditDesktopState_build_closure6() { }, InvoiceEditDesktopState_build_closure10: function InvoiceEditDesktopState_build_closure10(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure10: function InvoiceEditDesktopState_build__closure10(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure7: function InvoiceEditDesktopState_build_closure7(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure12: function InvoiceEditDesktopState_build_closure12(t0) { this.context = t0; }, InvoiceEditDesktopState_build_closure11: function InvoiceEditDesktopState_build_closure11(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure9: function InvoiceEditDesktopState_build__closure9(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure13: function InvoiceEditDesktopState_build_closure13(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure8: function InvoiceEditDesktopState_build__closure8(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure14: function InvoiceEditDesktopState_build_closure14(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.state = t2; _.localization = t3; }, InvoiceEditDesktopState_build_closure15: function InvoiceEditDesktopState_build_closure15(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure7: function InvoiceEditDesktopState_build__closure7(t0) { this.date = t0; }, InvoiceEditDesktopState_build_closure16: function InvoiceEditDesktopState_build_closure16(t0, t1, t2) { this.invoice = t0; this.originalInvoice = t1; this.context = t2; }, InvoiceEditDesktopState_build_closure17: function InvoiceEditDesktopState_build_closure17(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure6: function InvoiceEditDesktopState_build__closure6(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure18: function InvoiceEditDesktopState_build_closure18(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure5: function InvoiceEditDesktopState_build__closure5(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure19: function InvoiceEditDesktopState_build_closure19(t0) { this.localization = t0; }, InvoiceEditDesktopState_build_closure20: function InvoiceEditDesktopState_build_closure20() { }, InvoiceEditDesktopState_build_closure21: function InvoiceEditDesktopState_build_closure21(t0) { this.$this = t0; }, InvoiceEditDesktopState_build__closure4: function InvoiceEditDesktopState_build__closure4(t0, t1) { this.$this = t0; this.index = t1; }, InvoiceEditDesktopState_build_closure22: function InvoiceEditDesktopState_build_closure22(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure3: function InvoiceEditDesktopState_build__closure3(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure23: function InvoiceEditDesktopState_build_closure23(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure2: function InvoiceEditDesktopState_build__closure2(t0) { this.userId = t0; }, InvoiceEditDesktopState_build_closure24: function InvoiceEditDesktopState_build_closure24(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure1: function InvoiceEditDesktopState_build__closure1(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure25: function InvoiceEditDesktopState_build_closure25(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure0: function InvoiceEditDesktopState_build__closure0(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure26: function InvoiceEditDesktopState_build_closure26(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build__closure: function InvoiceEditDesktopState_build__closure(t0) { this.value = t0; }, InvoiceEditDesktopState_build_closure27: function InvoiceEditDesktopState_build_closure27(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure28: function InvoiceEditDesktopState_build_closure28(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDesktopState_build_closure29: function InvoiceEditDesktopState_build_closure29(t0, t1) { this.viewModel = t0; this.invoice = t1; }, _PdfPreview: function _PdfPreview(t0, t1) { this.invoice = t0; this.key = t1; }, __PdfPreviewState: function __PdfPreviewState(t0, t1) { var _ = this; _._pdfDebouncer = t0; _._currentPage = _._invoice_edit_desktop$_pageCount = 1; _._invoice_edit_desktop$_isLoading = false; _._widget = _._invoice_edit_desktop$_pdfController = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __PdfPreviewState_loadPdf_closure: function __PdfPreviewState_loadPdf_closure(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf_closure: function __PdfPreviewState__loadPdf_closure(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf_closure0: function __PdfPreviewState__loadPdf_closure0(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf__closure0: function __PdfPreviewState__loadPdf__closure0(t0, t1) { this.$this = t0; this.response = t1; }, __PdfPreviewState__loadPdf_closure1: function __PdfPreviewState__loadPdf_closure1(t0) { this.$this = t0; }, __PdfPreviewState__loadPdf__closure: function __PdfPreviewState__loadPdf__closure(t0) { this.$this = t0; }, __PdfPreviewState_build_closure: function __PdfPreviewState_build_closure(t0) { this.$this = t0; }, __PdfPreviewState_build_closure0: function __PdfPreviewState_build_closure0(t0) { this.$this = t0; }, __PdfPreviewState_build_closure1: function __PdfPreviewState_build_closure1(t0) { this.$this = t0; }, __PdfPreviewState_build__closure0: function __PdfPreviewState_build__closure0(t0, t1) { this.$this = t0; this.document = t1; }, __PdfPreviewState_build_closure2: function __PdfPreviewState_build_closure2(t0) { this.$this = t0; }, __PdfPreviewState_build__closure: function __PdfPreviewState_build__closure(t0, t1) { this.$this = t0; this.page = t1; }, _InvoiceEditDesktopState_State_TickerProviderStateMixin: function _InvoiceEditDesktopState_State_TickerProviderStateMixin() { }, InvoiceViewHistory: function InvoiceViewHistory(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewHistoryState: function _InvoiceViewHistoryState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewHistoryState_build_closure: function _InvoiceViewHistoryState_build_closure() { }, _InvoiceViewHistoryState_build_closure0: function _InvoiceViewHistoryState_build_closure0() { }, _InvoiceViewHistoryState_build_closure1: function _InvoiceViewHistoryState_build_closure1(t0, t1, t2) { this.activityList = t0; this.viewModel = t1; this.invoice = t2; }, _InvoiceViewHistoryState_build__closure: function _InvoiceViewHistoryState_build__closure(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.context = t1; _.invoice = t2; _.history = t3; }, _InvoiceViewHistoryState_build_closure2: function _InvoiceViewHistoryState_build_closure2() { }, ProductEditVM_ProductEditVM$fromStore: function(store) { var t3, t4, state = store.get$_store$_state(), t1 = state.uiState, product = t1.productUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).userCompany.company; product.get$isNew(); t1 = t3.$index(t2, t1).productState.map; t2 = product.id; J.$index$asx(t1._map$_map, t2); return new S.ProductEditVM(state, t4, product, new S.ProductEditVM_ProductEditVM$fromStore_closure(store), new S.ProductEditVM_ProductEditVM$fromStore_closure0(store, state), new S.ProductEditVM_ProductEditVM$fromStore_closure1(store, state)); }, ProductEditScreen: function ProductEditScreen(t0) { this.key = t0; }, ProductEditScreen_build_closure0: function ProductEditScreen_build_closure0() { }, ProductEditScreen_build_closure: function ProductEditScreen_build_closure() { }, ProductEditVM: function ProductEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.product = t2; _.onChanged = t3; _.onSavePressed = t4; _.onCancelPressed = t5; }, ProductEditVM_ProductEditVM$fromStore_closure: function ProductEditVM_ProductEditVM$fromStore_closure(t0) { this.store = t0; }, ProductEditVM_ProductEditVM$fromStore_closure1: function ProductEditVM_ProductEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore_closure0: function ProductEditVM_ProductEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore__closure: function ProductEditVM_ProductEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, ProductEditVM_ProductEditVM$fromStore___closure: function ProductEditVM_ProductEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.product = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ProductEditVM_ProductEditVM$fromStore___closure0: function ProductEditVM_ProductEditVM$fromStore___closure0() { }, ProductEditVM_ProductEditVM$fromStore____closure: function ProductEditVM_ProductEditVM$fromStore____closure(t0) { this.error = t0; }, ProjectScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).projectState.toString; t5 = $.$get$memoizedFilteredProjectList(); t6 = state.getUISelection$1(C.EntityType_project); t7 = t4.$index(t1, t3).projectState.map; t8 = t4.$index(t1, t3).projectState.list; t2 = t2.projectUIState.listUIState; t8 = t5.call$6(t6, t7, t8, t2, t4.$index(t1, t3).clientState.map, t4.$index(t1, t3).userState.map); t4.$index(t1, t3).toString; t2.toString; return new S.ProjectScreenVM(t8); }, ProjectScreenBuilder: function ProjectScreenBuilder(t0) { this.key = t0; }, ProjectScreenBuilder_build_closure: function ProjectScreenBuilder_build_closure() { }, ProjectScreenVM: function ProjectScreenVM(t0) { this.projectList = t0; }, RecurringExpenseListItem: function RecurringExpenseListItem(t0, t1, t2, t3) { var _ = this; _.expense = t0; _.filter = t1; _.isChecked = t2; _.key = t3; }, RecurringExpenseListItem_build_closure: function RecurringExpenseListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, RecurringExpenseListItem_build__closure2: function RecurringExpenseListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, RecurringExpenseListItem_build__closure1: function RecurringExpenseListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, RecurringExpenseListItem_build__closure: function RecurringExpenseListItem_build__closure(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure0: function RecurringExpenseListItem_build__closure0(t0) { this.$this = t0; }, RecurringExpenseListItem_build__closure5: function RecurringExpenseListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, RecurringExpenseListItem_build__closure4: function RecurringExpenseListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, RecurringExpenseListItem_build__closure3: function RecurringExpenseListItem_build__closure3(t0) { this.$this = t0; }, ClientPortal: function ClientPortal(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientPortalState: function _ClientPortalState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _._client_portal$_focusNode = t0; _._client_portal$_controller = null; _._webClient = t1; _._client_portal$_autoValidate = false; _._isSubdomainUnique = true; _._isCheckingSubdomain = false; _._client_portal$_debouncer = t2; _._subdomainController = t3; _._portalDomainController = t4; _._customCssController = t5; _._customJavaScriptController = t6; _._customHeaderController = t7; _._customFooterController = t8; _._client_portal$_customMessageDashboard = t9; _._client_portal$_customMessageUnpaidInvoice = t10; _._client_portal$_customMessagePaidInvoice = t11; _._client_portal$_customMessageUnapprovedQuote = t12; _._termsController = t13; _._privacyController = t14; _._client_portal$_controllers = t15; _.SingleTickerProviderStateMixin__ticker = t16; _._widget = null; _._debugLifecycleState = t17; _._framework$_element = null; }, _ClientPortalState__validateSubdomain_closure: function _ClientPortalState__validateSubdomain_closure(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain_closure0: function _ClientPortalState__validateSubdomain_closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure: function _ClientPortalState__validateSubdomain__closure(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure0: function _ClientPortalState__validateSubdomain__closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure1: function _ClientPortalState__validateSubdomain__closure1(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain___closure0: function _ClientPortalState__validateSubdomain___closure0(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain__closure2: function _ClientPortalState__validateSubdomain__closure2(t0) { this.$this = t0; }, _ClientPortalState__validateSubdomain___closure: function _ClientPortalState__validateSubdomain___closure(t0) { this.$this = t0; }, _ClientPortalState_dispose_closure: function _ClientPortalState_dispose_closure(t0) { this.$this = t0; }, _ClientPortalState_didChangeDependencies_closure: function _ClientPortalState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ClientPortalState_didChangeDependencies_closure0: function _ClientPortalState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ClientPortalState__onChanged_closure: function _ClientPortalState__onChanged_closure(t0) { this.$this = t0; }, _ClientPortalState__onChanged__closure: function _ClientPortalState__onChanged__closure(t0) { this.$this = t0; }, _ClientPortalState__onChanged__closure0: function _ClientPortalState__onChanged__closure0(t0) { this.$this = t0; }, _ClientPortalState__onSavePressed_closure: function _ClientPortalState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ClientPortalState_build_closure18: function _ClientPortalState_build_closure18(t0) { this.$this = t0; }, _ClientPortalState_build_closure: function _ClientPortalState_build_closure(t0) { this.viewModel = t0; }, _ClientPortalState_build__closure11: function _ClientPortalState_build__closure11(t0) { this.value = t0; }, _ClientPortalState_build_closure1: function _ClientPortalState_build_closure1(t0, t1) { this.$this = t0; this.localization = t1; }, _ClientPortalState_build_closure0: function _ClientPortalState_build_closure0(t0) { this.$this = t0; }, _ClientPortalState_build_closure2: function _ClientPortalState_build_closure2(t0, t1) { this.state = t0; this.localization = t1; }, _ClientPortalState_build_closure3: function _ClientPortalState_build_closure3() { }, _ClientPortalState_build_closure4: function _ClientPortalState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure10: function _ClientPortalState_build__closure10(t0) { this.value = t0; }, _ClientPortalState_build_closure5: function _ClientPortalState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure9: function _ClientPortalState_build__closure9(t0) { this.value = t0; }, _ClientPortalState_build_closure6: function _ClientPortalState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure8: function _ClientPortalState_build__closure8(t0) { this.value = t0; }, _ClientPortalState_build_closure7: function _ClientPortalState_build_closure7(t0, t1) { this.viewModel = t0; this.company = t1; }, _ClientPortalState_build__closure7: function _ClientPortalState_build__closure7(t0) { this.value = t0; }, _ClientPortalState_build_closure8: function _ClientPortalState_build_closure8(t0, t1) { this.company = t0; this.localization = t1; }, _ClientPortalState_build_closure9: function _ClientPortalState_build_closure9(t0, t1) { this.viewModel = t0; this.company = t1; }, _ClientPortalState_build__closure6: function _ClientPortalState_build__closure6(t0) { this.value = t0; }, _ClientPortalState_build_closure10: function _ClientPortalState_build_closure10(t0, t1) { this.registrationUrl = t0; this.localization = t1; }, _ClientPortalState_build_closure11: function _ClientPortalState_build_closure11(t0, t1, t2, t3) { var _ = this; _.context = t0; _.localization = t1; _.company = t2; _.viewModel = t3; }, _ClientPortalState_build__closure5: function _ClientPortalState_build__closure5(t0, t1, t2) { this.company = t0; this.field = t1; this.viewModel = t2; }, _ClientPortalState_build___closure: function _ClientPortalState_build___closure(t0, t1) { this.index = t0; this.field = t1; }, _ClientPortalState_build____closure: function _ClientPortalState_build____closure(t0) { this.field = t0; }, _ClientPortalState_build_closure12: function _ClientPortalState_build_closure12(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure4: function _ClientPortalState_build__closure4(t0) { this.value = t0; }, _ClientPortalState_build_closure13: function _ClientPortalState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure3: function _ClientPortalState_build__closure3(t0) { this.value = t0; }, _ClientPortalState_build_closure14: function _ClientPortalState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure2: function _ClientPortalState_build__closure2(t0) { this.value = t0; }, _ClientPortalState_build_closure15: function _ClientPortalState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure1: function _ClientPortalState_build__closure1(t0) { this.value = t0; }, _ClientPortalState_build_closure16: function _ClientPortalState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure0: function _ClientPortalState_build__closure0(t0) { this.value = t0; }, _ClientPortalState_build_closure17: function _ClientPortalState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _ClientPortalState_build__closure: function _ClientPortalState_build__closure(t0) { this.value = t0; }, __ClientPortalState_State_SingleTickerProviderStateMixin: function __ClientPortalState_State_SingleTickerProviderStateMixin() { }, CustomFields: function CustomFields(t0, t1) { this.viewModel = t0; this.key = t1; }, _CustomFieldsState: function _CustomFieldsState(t0, t1) { var _ = this; _._custom_fields$_controller = _._custom_fields$_focusNode = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CustomFieldsState_initState_closure: function _CustomFieldsState_initState_closure(t0, t1) { this._box_0 = t0; this.state = t1; }, CustomFieldsSettings: function CustomFieldsSettings(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.showChargeTaxes = t1; _.fieldType = t2; _.key = t3; }, CustomFieldsSettings_build_closure: function CustomFieldsSettings_build_closure(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure6: function CustomFieldsSettings_build__closure6(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure0: function CustomFieldsSettings_build_closure0(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure5: function CustomFieldsSettings_build__closure5(t0) { this.value = t0; }, CustomFieldsSettings_build_closure1: function CustomFieldsSettings_build_closure1(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure4: function CustomFieldsSettings_build__closure4(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure2: function CustomFieldsSettings_build_closure2(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure3: function CustomFieldsSettings_build__closure3(t0) { this.value = t0; }, CustomFieldsSettings_build_closure3: function CustomFieldsSettings_build_closure3(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure2: function CustomFieldsSettings_build__closure2(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure4: function CustomFieldsSettings_build_closure4(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure1: function CustomFieldsSettings_build__closure1(t0) { this.value = t0; }, CustomFieldsSettings_build_closure5: function CustomFieldsSettings_build_closure5(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure0: function CustomFieldsSettings_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, CustomFieldsSettings_build_closure6: function CustomFieldsSettings_build_closure6(t0, t1) { this.$this = t0; this.company = t1; }, CustomFieldsSettings_build__closure: function CustomFieldsSettings_build__closure(t0) { this.value = t0; }, CustomFormField: function CustomFormField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.label = t0; _.value = t1; _.showTaxes = t2; _.taxesEnabled = t3; _.onChanged = t4; _.onTaxesChanged = t5; _.key = t6; }, _CustomFormFieldState: function _CustomFormFieldState(t0, t1, t2, t3) { var _ = this; _._customFieldController = t0; _._optionsController = t1; _._fieldType = "single_line_text"; _._custom_fields$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CustomFormFieldState_dispose_closure: function _CustomFormFieldState_dispose_closure(t0) { this.$this = t0; }, _CustomFormFieldState_didChangeDependencies_closure: function _CustomFormFieldState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CustomFormFieldState_didChangeDependencies_closure0: function _CustomFormFieldState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _CustomFormFieldState__onChanged_closure: function _CustomFormFieldState__onChanged_closure() { }, _CustomFormFieldState_build_closure: function _CustomFormFieldState_build_closure() { }, _CustomFormFieldState_build_closure0: function _CustomFormFieldState_build_closure0(t0) { this.$this = t0; }, _CustomFormFieldState_build_closure1: function _CustomFormFieldState_build_closure1(t0) { this.$this = t0; }, _CustomFormFieldState_build__closure: function _CustomFormFieldState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, __CustomFieldsState_State_SingleTickerProviderStateMixin: function __CustomFieldsState_State_SingleTickerProviderStateMixin() { }, SubscriptionEdit: function SubscriptionEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _SubscriptionEditState: function _SubscriptionEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._subscription_edit$_debouncer = t0; _._subscription_edit$_controller = _._subscription_edit$_focusNode = null; _._subscription_edit$_nameController = t1; _._promoCodeController = t2; _._promoDiscountController = t3; _._maxSeatsLimitController = t4; _._returnUrlController = t5; _._postPurchaseHeaderKeyController = t6; _._postPurchaseHeaderValueController = t7; _._postPurchaseUrlController = t8; _._subscription_edit$_controllers = t9; _.SingleTickerProviderStateMixin__ticker = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, _SubscriptionEditState_didChangeDependencies_closure: function _SubscriptionEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _SubscriptionEditState_didChangeDependencies_closure0: function _SubscriptionEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _SubscriptionEditState_dispose_closure: function _SubscriptionEditState_dispose_closure(t0) { this.$this = t0; }, _SubscriptionEditState__onChanged_closure: function _SubscriptionEditState__onChanged_closure(t0) { this.$this = t0; }, _SubscriptionEditState__onChanged_closure0: function _SubscriptionEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.subscription = t1; }, _SubscriptionEditState_build_closure24: function _SubscriptionEditState_build_closure24(t0) { this.viewModel = t0; }, _SubscriptionEditState_build_closure25: function _SubscriptionEditState_build_closure25(t0) { this.viewModel = t0; }, _SubscriptionEditState_build_closure: function _SubscriptionEditState_build_closure(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure19: function _SubscriptionEditState_build__closure19(t0) { this.groupId = t0; }, _SubscriptionEditState_build_closure0: function _SubscriptionEditState_build_closure0(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure18: function _SubscriptionEditState_build__closure18(t0) { this.userId = t0; }, _SubscriptionEditState_build_closure1: function _SubscriptionEditState_build_closure1(t0, t1) { this.subscription = t0; this.viewModel = t1; }, _SubscriptionEditState_build__closure17: function _SubscriptionEditState_build__closure17(t0, t1) { this.parts = t0; this.value = t1; }, _SubscriptionEditState_build___closure3: function _SubscriptionEditState_build___closure3() { }, _SubscriptionEditState_build_closure2: function _SubscriptionEditState_build_closure2() { }, _SubscriptionEditState_build_closure3: function _SubscriptionEditState_build_closure3(t0, t1, t2) { this.state = t0; this.subscription = t1; this.viewModel = t2; }, _SubscriptionEditState_build__closure16: function _SubscriptionEditState_build__closure16(t0, t1, t2) { this.subscription = t0; this.productId = t1; this.viewModel = t2; }, _SubscriptionEditState_build___closure2: function _SubscriptionEditState_build___closure2(t0) { this.parts = t0; }, _SubscriptionEditState_build_closure4: function _SubscriptionEditState_build_closure4(t0, t1) { this.subscription = t0; this.viewModel = t1; }, _SubscriptionEditState_build__closure15: function _SubscriptionEditState_build__closure15(t0, t1) { this.parts = t0; this.value = t1; }, _SubscriptionEditState_build___closure1: function _SubscriptionEditState_build___closure1() { }, _SubscriptionEditState_build_closure5: function _SubscriptionEditState_build_closure5() { }, _SubscriptionEditState_build_closure6: function _SubscriptionEditState_build_closure6(t0, t1, t2) { this.state = t0; this.subscription = t1; this.viewModel = t2; }, _SubscriptionEditState_build__closure14: function _SubscriptionEditState_build__closure14(t0, t1, t2) { this.subscription = t0; this.productId = t1; this.viewModel = t2; }, _SubscriptionEditState_build___closure0: function _SubscriptionEditState_build___closure0(t0) { this.parts = t0; }, _SubscriptionEditState_build_closure7: function _SubscriptionEditState_build_closure7(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure13: function _SubscriptionEditState_build__closure13(t0) { this.value = t0; }, _SubscriptionEditState_build_closure8: function _SubscriptionEditState_build_closure8(t0) { this.localization = t0; }, _SubscriptionEditState_build_closure9: function _SubscriptionEditState_build_closure9(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure12: function _SubscriptionEditState_build__closure12(t0) { this.value = t0; }, _SubscriptionEditState_build_closure10: function _SubscriptionEditState_build_closure10(t0) { this.localization = t0; }, _SubscriptionEditState_build_closure11: function _SubscriptionEditState_build_closure11(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure11: function _SubscriptionEditState_build__closure11(t0) { this.value = t0; }, _SubscriptionEditState_build_closure12: function _SubscriptionEditState_build_closure12(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure10: function _SubscriptionEditState_build__closure10(t0) { this.value = t0; }, _SubscriptionEditState_build_closure13: function _SubscriptionEditState_build_closure13(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure9: function _SubscriptionEditState_build__closure9(t0) { this.value = t0; }, _SubscriptionEditState_build_closure14: function _SubscriptionEditState_build_closure14(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure8: function _SubscriptionEditState_build__closure8(t0) { this.value = t0; }, _SubscriptionEditState_build_closure15: function _SubscriptionEditState_build_closure15(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure7: function _SubscriptionEditState_build__closure7(t0) { this.value = t0; }, _SubscriptionEditState_build_closure16: function _SubscriptionEditState_build_closure16(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure6: function _SubscriptionEditState_build__closure6(t0) { this.value = t0; }, _SubscriptionEditState_build_closure17: function _SubscriptionEditState_build_closure17(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure5: function _SubscriptionEditState_build__closure5(t0) { this.value = t0; }, _SubscriptionEditState_build_closure18: function _SubscriptionEditState_build_closure18(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure4: function _SubscriptionEditState_build__closure4(t0) { this.value = t0; }, _SubscriptionEditState_build_closure21: function _SubscriptionEditState_build_closure21(t0, t1) { this.viewModel = t0; this.subscription = t1; }, _SubscriptionEditState_build__closure1: function _SubscriptionEditState_build__closure1(t0) { this.value = t0; }, _SubscriptionEditState_build_closure19: function _SubscriptionEditState_build_closure19(t0) { this.$this = t0; }, _SubscriptionEditState_build__closure3: function _SubscriptionEditState_build__closure3() { }, _SubscriptionEditState_build_closure20: function _SubscriptionEditState_build_closure20(t0) { this.$this = t0; }, _SubscriptionEditState_build__closure2: function _SubscriptionEditState_build__closure2() { }, _SubscriptionEditState_build_closure22: function _SubscriptionEditState_build_closure22(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.webhookConfiguration = t1; _.key = t2; _.viewModel = t3; _.subscription = t4; _.value = t5; }, _SubscriptionEditState_build__closure0: function _SubscriptionEditState_build__closure0(t0, t1) { this.key = t0; this.value = t1; }, _SubscriptionEditState_build_closure23: function _SubscriptionEditState_build_closure23(t0, t1, t2, t3) { var _ = this; _.webhookConfiguration = t0; _.localization = t1; _.viewModel = t2; _.subscription = t3; }, _SubscriptionEditState_build__closure: function _SubscriptionEditState_build__closure(t0, t1, t2) { this.viewModel = t0; this.subscription = t1; this.key = t2; }, _SubscriptionEditState_build___closure: function _SubscriptionEditState_build___closure(t0) { this.key = t0; }, __SubscriptionEditState_State_SingleTickerProviderStateMixin: function __SubscriptionEditState_State_SingleTickerProviderStateMixin() { }, SubscriptionListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.subscriptionUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredSubscriptionList().call$4(state.getUISelection$1(C.EntityType_subscription), t4.$index(t1, t3).subscriptionState.map, t4.$index(t1, t3).subscriptionState.list, t2); t6 = t4.$index(t1, t3).subscriptionState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_subscription); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); } else t1 = t7; return new S.SubscriptionListVM(state, t5, t6, t2, new S.SubscriptionListVM_fromStore_closure(new S.SubscriptionListVM_fromStore__handleRefresh(store)), t1, new S.SubscriptionListVM_fromStore_closure0(store), new S.SubscriptionListVM_fromStore_closure1(store)); }, SubscriptionListBuilder: function SubscriptionListBuilder(t0) { this.key = t0; }, SubscriptionListBuilder_build_closure: function SubscriptionListBuilder_build_closure() { }, SubscriptionListBuilder_build__closure: function SubscriptionListBuilder_build__closure(t0) { this.viewModel = t0; }, SubscriptionListVM: function SubscriptionListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.subscriptionList = t1; _.subscriptionMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, SubscriptionListVM_fromStore__handleRefresh: function SubscriptionListVM_fromStore__handleRefresh(t0) { this.store = t0; }, SubscriptionListVM_fromStore_closure: function SubscriptionListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, SubscriptionListVM_fromStore_closure0: function SubscriptionListVM_fromStore_closure0(t0) { this.store = t0; }, SubscriptionListVM_fromStore_closure1: function SubscriptionListVM_fromStore_closure1(t0) { this.store = t0; }, TaskOverview: function TaskOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaskOverviewState: function _TaskOverviewState(t0) { var _ = this; _._widget = _._task_view_overview$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TaskOverviewState_initState_closure: function _TaskOverviewState_initState_closure(t0) { this.$this = t0; }, _TaskOverviewState_initState__closure: function _TaskOverviewState_initState__closure() { }, _TaskOverviewState_build__buildView: function _TaskOverviewState_build__buildView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.$this = t0; _.task = t1; _.state = t2; _.localization = t3; _.company = t4; _.project = t5; _.client = t6; _.group = t7; _.context = t8; _.status = t9; _.user = t10; _.invoice = t11; _.fields = t12; _.viewModel = t13; }, _TaskOverviewState_build__buildView_closure: function _TaskOverviewState_build__buildView_closure(t0, t1, t2) { this.widgets = t0; this.task = t1; this.viewModel = t2; }, _TaskOverviewState_build__buildView__closure: function _TaskOverviewState_build__buildView__closure(t0, t1, t2) { this.viewModel = t0; this.task = t1; this.taskTime = t2; }, _TaskOverviewState_build_closure: function _TaskOverviewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore: function(store) { var t3, t4, t5, taxRate = store.get$_store$_state().uiState.taxRateUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).taxRateState.map; t5 = taxRate.id; J.$index$asx(t4._map$_map, t5); return new S.TaxRateEditVM(taxRate, t3.$index(t1, t2).userCompany.company, new S.TaxRateEditVM_TaxRateEditVM$fromStore_closure(store), new S.TaxRateEditVM_TaxRateEditVM$fromStore_closure0(store, state), new S.TaxRateEditVM_TaxRateEditVM$fromStore_closure1(store, state), state); }, TaxRateEditScreen: function TaxRateEditScreen(t0) { this.key = t0; }, TaxRateEditScreen_build_closure0: function TaxRateEditScreen_build_closure0() { }, TaxRateEditScreen_build_closure: function TaxRateEditScreen_build_closure() { }, TaxRateEditVM: function TaxRateEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.taxRate = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure: function TaxRateEditVM_TaxRateEditVM$fromStore_closure(t0) { this.store = t0; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure1: function TaxRateEditVM_TaxRateEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore_closure0: function TaxRateEditVM_TaxRateEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore__closure: function TaxRateEditVM_TaxRateEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, TaxRateEditVM_TaxRateEditVM$fromStore___closure: function TaxRateEditVM_TaxRateEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.taxRate = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TaxRateEditVM_TaxRateEditVM$fromStore___closure0: function TaxRateEditVM_TaxRateEditVM$fromStore___closure0() { }, TaxRateEditVM_TaxRateEditVM$fromStore____closure: function TaxRateEditVM_TaxRateEditVM$fromStore____closure(t0) { this.error = t0; }, TokenScreen: function TokenScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, TokenScreen_build_closure9: function TokenScreen_build_closure9(t0) { this.store = t0; }, TokenScreen_build_closure7: function TokenScreen_build_closure7(t0) { this.store = t0; }, TokenScreen_build_closure8: function TokenScreen_build_closure8(t0) { this.store = t0; }, TokenScreen_build_closure4: function TokenScreen_build_closure4(t0) { this.store = t0; }, TokenScreen_build_closure5: function TokenScreen_build_closure5(t0) { this.store = t0; }, TokenScreen_build_closure: function TokenScreen_build_closure(t0) { this.store = t0; }, TokenScreen_build_closure0: function TokenScreen_build_closure0(t0) { this.store = t0; }, TokenScreen_build_closure1: function TokenScreen_build_closure1(t0) { this.store = t0; }, TokenScreen_build_closure2: function TokenScreen_build_closure2(t0) { this.store = t0; }, TokenScreen_build_closure3: function TokenScreen_build_closure3(t0) { this.store = t0; }, TokenScreen_build_closure6: function TokenScreen_build_closure6(t0) { this.context = t0; }, PdfDocument_openData: function(data) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.PdfDocument), $async$returnValue, t2, t3, t1; var $async$PdfDocument_openData = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.MethodChannel_EKW._invokeMethod$1$3$arguments$missingOk("open.document.data", data, false, type$.Map_dynamic_dynamic), $async$PdfDocument_openData); case 3: // returning from await. t1 = $async$result; t1.toString; t2 = J.getInterceptor$asx(t1); t3 = H._asStringS(t2.$index(t1, "id")); t1 = H._asIntS(t2.$index(t1, "pagesCount")); $async$returnValue = new S.PdfDocument(O.Lock_Lock(), "memory:binary", t3, t1); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$PdfDocument_openData, $async$completer); }, PdfDocument: function PdfDocument(t0, t1, t2, t3) { var _ = this; _._lock = t0; _.sourceName = t1; _.id = t2; _.pagesCount = t3; }, PdfDocument_getPage_closure: function PdfDocument_getPage_closure(t0, t1) { this.$this = t0; this.pageNumber = t1; }, PdfPageNotFoundException: function PdfPageNotFoundException() { }, Document: function Document(t0, t1) { this.id = t0; this.document = t1; }, DocumentRepository: function DocumentRepository(t0) { this._items = t0; }, PageRepository: function PageRepository(t0) { this._items = t0; }, QrValidator_validate: function(data, errorCorrectionLevel, version) { var _qrCode_get, _qrCode_set, itle, ex, t2, exception, t1 = {}; t1._qrCode0 = $; _qrCode_get = new S.QrValidator_validate__qrCode_get(t1); _qrCode_set = new S.QrValidator_validate__qrCode_set(t1); try { if (version !== -1) { _qrCode_set.call$1(D.QrCode$(version, errorCorrectionLevel)); t1 = _qrCode_get.call$0(); t1.toString; t1._dataList.push(new V.QrByte(C.C_Utf8Encoder.convert$1(data))); t1._dataCache = null; } else { t1 = D.QrCode$(D.QrCode__calculateTypeNumberFromData(errorCorrectionLevel, H.setRuntimeTypeInfo([new V.QrByte(C.C_Utf8Encoder.convert$1(data))], type$.JSArray_QrByte)), errorCorrectionLevel); t1._dataList.push(new V.QrByte(C.C_Utf8Encoder.convert$1(data))); t1._dataCache = null; _qrCode_set.call$1(t1); } t1 = _qrCode_get.call$0(); t2 = t1._getBestMaskPattern$0(); t1._makeImpl$2(false, t2); t1 = _qrCode_get.call$0(); return new S.QrValidationResult(C.QrValidationStatus_0, t1, null); } catch (exception) { t1 = H.unwrapException(exception); if (t1 instanceof V.InputTooLongException) { itle = t1; return new S.QrValidationResult(C.QrValidationStatus_1, null, itle); } else if (type$.Exception._is(t1)) { ex = t1; return new S.QrValidationResult(C.QrValidationStatus_2, null, ex); } else throw exception; } }, QrValidator_validate__qrCode_set: function QrValidator_validate__qrCode_set(t0) { this._box_0 = t0; }, QrValidator_validate__qrCode_get: function QrValidator_validate__qrCode_get(t0) { this._box_0 = t0; }, QrValidationResult: function QrValidationResult(t0, t1, t2) { this.status = t0; this.qrCode = t1; this.error = t2; }, QrValidationStatus: function QrValidationStatus(t0) { this._validator$_name = t0; }, BasicLock: function BasicLock() { this.last = null; }, BasicLock_synchronized__complete: function BasicLock_synchronized__complete(t0, t1) { this.$this = t0; this.completer = t1; }, low: function(codeUnit) { var index = C.JSString_methods._codeUnitAt$1(string$.u0e3b_____, codeUnit >>> 6) + (codeUnit & 63), bit = index & 1, pair = C.JSString_methods._codeUnitAt$1(string$.x22x22____, index >>> 1); return pair >>> 4 & -bit | pair & 15 & bit - 1; }, high: function(lead, tail) { var index = C.JSString_methods._codeUnitAt$1(string$.u0e3b_____, 1024 + (lead & 1023)) + (tail & 1023), bit = index & 1, pair = C.JSString_methods._codeUnitAt$1(string$.x22x22____, index >>> 1); return pair >>> 4 & -bit | pair & 15 & bit - 1; }, setEquals: function(a, b) { var t1; if (a == null) return b == null; if (b == null || a.get$length(a) !== b.get$length(b)) return false; if (a === b) return true; for (t1 = a.get$iterator(a); t1.moveNext$0();) if (!b.contains$1(0, t1.get$current(t1))) return false; return true; }, listEquals: function(a, b) { var index; if (a == null) return b == null; if (b == null || a.length !== b.length) return false; if (a === b) return true; for (index = 0; index < a.length; ++index) if (!J.$eq$(a[index], b[index])) return false; return true; }, mapEquals: function(a, b) { var t1, t2, t3, key; if (a == null) return b == null; if (b == null || J.get$length$asx(a) != J.get$length$asx(b)) return false; if (a === b) return true; for (t1 = J.getInterceptor$x(a), t2 = J.get$iterator$ax(t1.get$keys(a)), t3 = J.getInterceptor$x(b); t2.moveNext$0();) { key = t2.get$current(t2); if (!t3.containsKey$1(b, key) || !J.$eq$(t3.$index(b, key), t1.$index(a, key))) return false; } return true; }, mergeSort: function(list, compare, $T) { var middle, secondLength, scratchSpace, firstTarget, end = list.length, $length = end - 0; if ($length < 2) return; if ($length < 32) { S._insertionSort(list, compare, end, 0, $T); return; } middle = C.JSInt_methods._shrOtherPositive$1($length, 1); secondLength = end - middle; scratchSpace = P.List_List$filled(secondLength, list[0], false, $T); S._mergeSort(list, compare, middle, end, scratchSpace, 0); firstTarget = end - (middle - 0); S._mergeSort(list, compare, 0, middle, list, firstTarget); S._merge(compare, list, firstTarget, end, scratchSpace, 0, secondLength, list, 0); }, _insertionSort: function(list, compare, end, start, $T) { var pos, element, max, min, mid; for (pos = start + 1; pos < end;) { element = list[pos]; for (max = pos, min = start; min < max;) { mid = min + C.JSInt_methods._shrOtherPositive$1(max - min, 1); if (compare.call$2(element, list[mid]) < 0) max = mid; else min = mid + 1; } ++pos; C.JSArray_methods.setRange$4(list, min + 1, pos, list, min); list[min] = element; } }, _movingInsertionSort: function(list, compare, start, end, target, targetOffset) { var i, element, max, max0, min, mid, $length = end - start; if ($length === 0) return; target[targetOffset] = list[start]; for (i = 1; i < $length; ++i) { element = list[start + i]; max = targetOffset + i; for (max0 = max, min = targetOffset; min < max0;) { mid = min + C.JSInt_methods._shrOtherPositive$1(max0 - min, 1); if (compare.call$2(element, target[mid]) < 0) max0 = mid; else min = mid + 1; } C.JSArray_methods.setRange$4(target, min + 1, max + 1, target, min); target[min] = element; } }, _mergeSort: function(list, compare, start, end, target, targetOffset) { var middle, firstLength, targetMiddle, $length = end - start; if ($length < 32) { S._movingInsertionSort(list, compare, start, end, target, targetOffset); return; } middle = start + C.JSInt_methods._shrOtherPositive$1($length, 1); firstLength = middle - start; targetMiddle = targetOffset + firstLength; S._mergeSort(list, compare, middle, end, target, targetMiddle); S._mergeSort(list, compare, start, middle, list, middle); S._merge(compare, list, middle, middle + firstLength, target, targetMiddle, targetMiddle + (end - middle), target, targetOffset); }, _merge: function(compare, firstList, firstStart, firstEnd, secondList, secondStart, secondEnd, target, targetOffset) { var targetOffset0, cursor10, cursor20, cursor1 = firstStart + 1, firstElement = firstList[firstStart], cursor2 = secondStart + 1, secondElement = secondList[secondStart]; for (; true; targetOffset = targetOffset0) { targetOffset0 = targetOffset + 1; if (compare.call$2(firstElement, secondElement) <= 0) { target[targetOffset] = firstElement; if (cursor1 === firstEnd) { targetOffset = targetOffset0; break; } cursor10 = cursor1 + 1; firstElement = firstList[cursor1]; } else { target[targetOffset] = secondElement; if (cursor2 !== secondEnd) { cursor20 = cursor2 + 1; secondElement = secondList[cursor2]; cursor2 = cursor20; continue; } targetOffset = targetOffset0 + 1; target[targetOffset0] = firstElement; C.JSArray_methods.setRange$4(target, targetOffset, targetOffset + (firstEnd - cursor1), firstList, cursor1); return; } cursor1 = cursor10; } targetOffset0 = targetOffset + 1; target[targetOffset] = secondElement; C.JSArray_methods.setRange$4(target, targetOffset0, targetOffset0 + (secondEnd - cursor2), secondList, cursor2); }, SemanticsService_announce: function(message, textDirection) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$SemanticsService_announce = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.BasicMessageChannel_8hp.send$1(0, new E.AnnounceSemanticsEvent(message, textDirection, "announce").toMap$0()), $async$SemanticsService_announce); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$SemanticsService_announce, $async$completer); }, SemanticsService_tooltip: function(message) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$SemanticsService_tooltip = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.BasicMessageChannel_8hp.send$1(0, new E.TooltipSemanticsEvent(message, "tooltip").toMap$0()), $async$SemanticsService_tooltip); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$SemanticsService_tooltip, $async$completer); } }, O = { BoardList$: function(backgroundColor, boardView, draggable, footer, header, headerBackgroundColor, index, items, onDropList, onStartDragList, onTapList) { return new O.BoardList(header, footer, items, backgroundColor, headerBackgroundColor, boardView, onDropList, onTapList, onStartDragList, draggable, index, null); }, BoardList: function BoardList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.header = t0; _.footer = t1; _.items = t2; _.backgroundColor = t3; _.headerBackgroundColor = t4; _.boardView = t5; _.onDropList = t6; _.onTapList = t7; _.onStartDragList = t8; _.draggable = t9; _.index = t10; _.key = t11; }, BoardListState: function BoardListState(t0, t1, t2, t3) { var _ = this; _.itemStates = t0; _.boardListController = t1; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, BoardListState_onDropList_closure: function BoardListState_onDropList_closure() { }, BoardListState__startDrag_closure: function BoardListState__startDrag_closure() { }, BoardListState_build_closure0: function BoardListState_build_closure0(t0) { this.$this = t0; }, BoardListState_build_closure2: function BoardListState_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, BoardListState_build_closure1: function BoardListState_build_closure1() { }, BoardListState_build_closure: function BoardListState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, BoardListState_build_closure3: function BoardListState_build_closure3(t0) { this.$this = t0; }, _BoardListState_State_AutomaticKeepAliveClientMixin: function _BoardListState_State_AutomaticKeepAliveClientMixin() { }, BigIntSerializer: function BigIntSerializer(t0) { this.types = t0; }, BuiltSetSerializer: function BuiltSetSerializer(t0) { this.types = t0; }, BuiltSetSerializer_serialize_closure: function BuiltSetSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltSetSerializer_deserialize_closure: function BuiltSetSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, JsonObjectSerializer: function JsonObjectSerializer(t0) { this.types = t0; }, UriSerializer: function UriSerializer(t0) { this.types = t0; }, LinearScaleViewportSettings: function LinearScaleViewportSettings() { var _ = this; _.range = null; _.keepViewportWithinData = true; _.scalingFactor = 1; _.translatePx = 0; _._domainExtent = null; _._manualDomainExtent = false; }, AutoAdjustingDateTimeTickProvider: function AutoAdjustingDateTimeTickProvider(t0) { this._potentialTickProviders = t0; }, BehaviorPosition: function BehaviorPosition(t0) { this._chart_behavior0$_name = t0; }, OutsideJustification: function OutsideJustification(t0) { this._chart_behavior0$_name = t0; }, InsideJustification: function InsideJustification(t0) { this._chart_behavior0$_name = t0; }, DomainHighlighter0: function DomainHighlighter0(t0, t1) { var _ = this; _.selectionModelType = t0; _.__DomainHighlighter__lifecycleListener = _.__DomainHighlighter__chart = $; _.$ti = t1; }, DomainHighlighter__updateColorFunctions_closure: function DomainHighlighter__updateColorFunctions_closure(t0, t1) { this.$this = t0; this.selectionModel = t1; }, DomainHighlighter__updateColorFunctions__closure: function DomainHighlighter__updateColorFunctions__closure(t0, t1, t2) { this.origColorFn = t0; this.selectionModel = t1; this.series = t2; }, LegendDefaultMeasure: function LegendDefaultMeasure(t0) { this._legend_entry_generator$_name = t0; }, TypedRegistry: function TypedRegistry() { }, TypedKey: function TypedKey() { }, ChartBehavior: function ChartBehavior() { }, GestureType: function GestureType(t0) { this._chart_behavior$_name = t0; }, DomainHighlighter: function DomainHighlighter(t0, t1) { this.desiredGestures = t0; this.$ti = t1; }, FileSystemStyle: function FileSystemStyle() { }, _Posix: function _Posix() { }, SynchronousFuture: function SynchronousFuture(t0, t1) { this._synchronous_future$_value = t0; this.$ti = t1; }, SynchronousFuture_whenComplete_closure: function SynchronousFuture_whenComplete_closure(t0) { this.$this = t0; }, DragDownDetails: function DragDownDetails(t0) { this.globalPosition = t0; }, DragStartDetails: function DragStartDetails(t0, t1, t2) { this.sourceTimeStamp = t0; this.globalPosition = t1; this.kind = t2; }, DragUpdateDetails: function DragUpdateDetails(t0, t1, t2, t3) { var _ = this; _.sourceTimeStamp = t0; _.delta = t1; _.primaryDelta = t2; _.globalPosition = t3; }, DragEndDetails: function DragEndDetails(t0, t1) { this.velocity = t0; this.primaryVelocity = t1; }, HitTestResult$: function() { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_HitTestEntry), t2 = new E.Matrix4(new Float64Array(16)); t2.setIdentity$0(); return new O.HitTestResult(t1, H.setRuntimeTypeInfo([t2], type$.JSArray_Matrix4), H.setRuntimeTypeInfo([], type$.JSArray__TransformPart)); }, HitTestEntry: function HitTestEntry(t0) { this.target = t0; this._transform = null; }, _TransformPart: function _TransformPart() { }, _MatrixTransformPart: function _MatrixTransformPart(t0) { this.matrix = t0; }, _OffsetTransformPart: function _OffsetTransformPart(t0) { this.offset = t0; }, HitTestResult: function HitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, DragGestureRecognizer__defaultBuilder: function($event) { return new R.VelocityTracker($event.get$kind($event), P.List_List$filled(20, null, false, type$.nullable__PointAtTime)); }, VerticalDragGestureRecognizer$: function(debugOwner) { var t1 = type$.int; return new O.VerticalDragGestureRecognizer(C.DragStartBehavior_1, O.monodrag_DragGestureRecognizer__defaultBuilder$closure(), C._DragState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), debugOwner, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, HorizontalDragGestureRecognizer$: function(debugOwner, kind) { var t1 = type$.int; return new O.HorizontalDragGestureRecognizer(C.DragStartBehavior_1, O.monodrag_DragGestureRecognizer__defaultBuilder$closure(), C._DragState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), debugOwner, kind, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, _DragState: function _DragState(t0) { this._monodrag$_name = t0; }, DragGestureRecognizer: function DragGestureRecognizer() { }, DragGestureRecognizer__checkDown_closure: function DragGestureRecognizer__checkDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkStart_closure: function DragGestureRecognizer__checkStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkUpdate_closure: function DragGestureRecognizer__checkUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, DragGestureRecognizer__checkEnd_closure: function DragGestureRecognizer__checkEnd_closure(t0, t1) { this.estimate = t0; this.velocity = t1; }, DragGestureRecognizer__checkEnd_closure0: function DragGestureRecognizer__checkEnd_closure0(t0) { this.estimate = t0; }, DragGestureRecognizer__checkEnd_closure1: function DragGestureRecognizer__checkEnd_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, VerticalDragGestureRecognizer: function VerticalDragGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _._kindFilter = t8; _._pointerToKind = t9; }, HorizontalDragGestureRecognizer: function HorizontalDragGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _._kindFilter = t8; _._pointerToKind = t9; }, PanGestureRecognizer: function PanGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.dragStartBehavior = t0; _.maxFlingVelocity = _.minFlingVelocity = _.minFlingDistance = _.onCancel = _.onEnd = _.onUpdate = _.onStart = _.onDown = null; _.velocityTrackerBuilder = t1; _._monodrag$_state = t2; _.__DragGestureRecognizer__pendingDragOffset = _.__DragGestureRecognizer__initialPosition = $; _._monodrag$_lastTransform = _._initialButtons = _._lastPendingEventTimestamp = null; _.__DragGestureRecognizer__globalDistanceMoved = $; _._monodrag$_velocityTrackers = t3; _._acceptedActivePointers = t4; _._recognizer$_entries = t5; _._trackedPointers = t6; _._team = null; _.debugOwner = t7; _._kindFilter = t8; _._pointerToKind = t9; }, PointerRouter: function PointerRouter(t0, t1) { this._routeMap = t0; this._globalRoutes = t1; }, PointerRouter_addRoute_closure: function PointerRouter_addRoute_closure() { }, PointerRouter__dispatchEventToRoutes_closure: function PointerRouter__dispatchEventToRoutes_closure(t0, t1, t2) { this.$this = t0; this.referenceRoutes = t1; this.event = t2; }, _getClipCallback: function(referenceBox, containedInkWell, rectCallback) { if (rectCallback != null) return rectCallback; if (containedInkWell) return new O._getClipCallback_closure(referenceBox); return null; }, _getClipCallback_closure: function _getClipCallback_closure(t0) { this.referenceBox = t0; }, _InkRippleFactory: function _InkRippleFactory() { }, InkRipple: function InkRipple(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._ink_ripple$_position = t0; _._ink_ripple$_borderRadius = t1; _._ink_ripple$_customBorder = t2; _._ink_ripple$_targetRadius = t3; _._ink_ripple$_clipCallback = t4; _._ink_ripple$_textDirection = t5; _.__InkRipple__fadeOutController = _.__InkRipple__fadeOut = _.__InkRipple__fadeInController = _.__InkRipple__fadeIn = _.__InkRipple__radiusController = _.__InkRipple__radius = $; _._ink_well$_color = t6; _._material$_controller = t7; _.referenceBox = t8; _.onRemoved = t9; _._material$_debugDisposed = false; }, _TextSpanEditingController$: function(textSpan) { var t1 = textSpan.toPlainText$1$includeSemanticsLabels(false); return new O._TextSpanEditingController(textSpan, new N.TextEditingValue(t1, C.TextSelection_TbC, C.TextRange_m1_m1), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, SelectableText$: function(data, style) { return new O.SelectableText(data, style, C.ToolbarOptions_true_false_false, null); }, _TextSpanEditingController: function _TextSpanEditingController(t0, t1, t2) { this._textSpan = t0; this._change_notifier$_value = t1; this.ChangeNotifier__listeners = t2; }, _SelectableTextSelectionGestureDetectorBuilder: function _SelectableTextSelectionGestureDetectorBuilder(t0, t1) { this._selectable_text$_state = t0; this.delegate = t1; this._shouldShowSelectionToolbar = true; }, SelectableText: function SelectableText(t0, t1, t2, t3) { var _ = this; _.data = t0; _.style = t1; _.toolbarOptions = t2; _.key = t3; }, _SelectableTextState: function _SelectableTextState(t0, t1, t2) { var _ = this; _.___SelectableTextState__controller = $; _._selectable_text$_focusNode = null; _._selectable_text$_showSelectionHandles = false; _.___SelectableTextState_forcePressEnabled = _.___SelectableTextState__selectionGestureDetectorBuilder = $; _.editableTextKey = t0; _._lastSeenTextSelection = null; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _SelectableTextState__onControllerChanged_closure: function _SelectableTextState__onControllerChanged_closure(t0, t1) { this.$this = t0; this.showSelectionHandles = t1; }, _SelectableTextState__handleSelectionChanged_closure: function _SelectableTextState__handleSelectionChanged_closure(t0, t1) { this.$this = t0; this.willShowSelectionHandles = t1; }, _SelectableTextState_build_closure: function _SelectableTextState_build_closure(t0) { this.$this = t0; }, __SelectableTextState_State_AutomaticKeepAliveClientMixin: function __SelectableTextState_State_AutomaticKeepAliveClientMixin() { }, SwitchListTile$: function(activeColor, dense, onChanged, secondary, subtitle, title, value) { return new O.SwitchListTile(value, onChanged, activeColor, title, subtitle, secondary, dense, null); }, _SwitchListTileType: function _SwitchListTileType(t0) { this._switch_list_tile$_name = t0; }, SwitchListTile: function SwitchListTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.title = t3; _.subtitle = t4; _.secondary = t5; _.dense = t6; _.key = t7; }, SwitchListTile_build_closure: function SwitchListTile_build_closure(t0) { this.$this = t0; }, BoxShadow_lerp: function(a, b, t) { var t2, t3, t4, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); t1 = P.Color_lerp(a.color, b.color, t); t1.toString; t2 = P.Offset_lerp(a.offset, b.offset, t); t2.toString; t3 = P.lerpDouble(a.blurRadius, b.blurRadius, t); t3.toString; t4 = P.lerpDouble(a.spreadRadius, b.spreadRadius, t); t4.toString; return new O.BoxShadow(t4, t1, t2, t3); }, BoxShadow_lerpList: function(a, b, t) { var commonLength, i, t2, t3, t4, t5, t6, t7, t1 = a == null; if (t1 && b == null) return null; if (t1) a = H.setRuntimeTypeInfo([], type$.JSArray_BoxShadow); if (b == null) b = H.setRuntimeTypeInfo([], type$.JSArray_BoxShadow); commonLength = Math.min(a.length, b.length); t1 = H.setRuntimeTypeInfo([], type$.JSArray_BoxShadow); for (i = 0; i < commonLength; ++i) { t2 = O.BoxShadow_lerp(a[i], b[i], t); t2.toString; t1.push(t2); } for (i = commonLength; i < a.length; ++i) { t2 = a[i]; t3 = 1 - t; t4 = t2.color; t5 = t2.offset; t6 = t5._dx; t5 = t5._dy; t7 = t2.blurRadius; t1.push(new O.BoxShadow(t2.spreadRadius * t3, t4, new P.Offset(t6 * t3, t5 * t3), t7 * t3)); } for (i = commonLength; i < b.length; ++i) { t2 = b[i]; t3 = t2.color; t4 = t2.offset; t5 = t4._dx; t4 = t4._dy; t6 = t2.blurRadius; t1.push(new O.BoxShadow(t2.spreadRadius * t, t3, new P.Offset(t5 * t, t4 * t), t6 * t)); } return t1; }, BoxShadow: function BoxShadow(t0, t1, t2, t3) { var _ = this; _.spreadRadius = t0; _.color = t1; _.offset = t2; _.blurRadius = t3; }, FocusNode$: function(canRequestFocus, debugLabel, descendantsAreFocusable, onKey, skipTraversal) { return new O.FocusNode(skipTraversal, canRequestFocus, true, onKey, H.setRuntimeTypeInfo([], type$.JSArray_FocusNode), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, FocusScopeNode$: function(canRequestFocus, debugLabel, skipTraversal) { var t1 = type$.JSArray_FocusNode; return new O.FocusScopeNode(H.setRuntimeTypeInfo([], t1), skipTraversal, canRequestFocus, true, null, H.setRuntimeTypeInfo([], t1), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, FocusManager__defaultModeForPlatform: function() { switch (U.defaultTargetPlatform()) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_2: var t1 = $.WidgetsBinding__instance.RendererBinding__mouseTracker._mouseStates; if (t1.get$isNotEmpty(t1)) return C.FocusHighlightMode_1; return C.FocusHighlightMode_0; case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return C.FocusHighlightMode_1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, KeyEventResult: function KeyEventResult(t0) { this._focus_manager$_name = t0; }, FocusAttachment: function FocusAttachment(t0) { this._focus_manager$_node = t0; }, UnfocusDisposition: function UnfocusDisposition(t0) { this._focus_manager$_name = t0; }, FocusNode: function FocusNode(t0, t1, t2, t3, t4, t5) { var _ = this; _._skipTraversal = t0; _._focus_manager$_canRequestFocus = t1; _._focus_manager$_descendantsAreFocusable = t2; _._context = null; _.onKey = t3; _._descendants = _._ancestors = _._focus_manager$_manager = null; _._hasKeyboardToken = false; _._focus_manager$_parent = null; _._focus_manager$_children = t4; _._attachment = _._focus_manager$_debugLabel = null; _._requestFocusWhenReparented = false; _.ChangeNotifier__listeners = t5; }, FocusNode_traversalDescendants_closure: function FocusNode_traversalDescendants_closure() { }, FocusNode_debugDescribeChildren_closure: function FocusNode_debugDescribeChildren_closure(t0) { this._box_0 = t0; }, FocusScopeNode: function FocusScopeNode(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._focusedChildren = t0; _._skipTraversal = t1; _._focus_manager$_canRequestFocus = t2; _._focus_manager$_descendantsAreFocusable = t3; _._context = null; _.onKey = t4; _._descendants = _._ancestors = _._focus_manager$_manager = null; _._hasKeyboardToken = false; _._focus_manager$_parent = null; _._focus_manager$_children = t5; _._attachment = _._focus_manager$_debugLabel = null; _._requestFocusWhenReparented = false; _.ChangeNotifier__listeners = t6; }, FocusHighlightMode: function FocusHighlightMode(t0) { this._focus_manager$_name = t0; }, FocusHighlightStrategy: function FocusHighlightStrategy(t0) { this._focus_manager$_name = t0; }, FocusManager: function FocusManager(t0, t1, t2, t3) { var _ = this; _._lastInteractionWasTouch = _._highlightMode = null; _._focus_manager$_listeners = t0; _.rootScope = t1; _._primaryFocus = null; _._dirtyNodes = t2; _._markedForFocus = null; _._haveScheduledUpdate = false; _.ChangeNotifier__listeners = t3; }, _FocusManager_Object_DiagnosticableTreeMixin: function _FocusManager_Object_DiagnosticableTreeMixin() { }, _FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier: function _FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier() { }, _FocusNode_Object_DiagnosticableTreeMixin: function _FocusNode_Object_DiagnosticableTreeMixin() { }, _FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier: function _FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier() { }, StoreProvider_of: function(context, $S) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0($S._eval$1("StoreProvider<0>")); $S._eval$1("StoreProvider<0>?")._as(t1); if (t1 == null) throw H.wrapException(new O.StoreProviderError($S._eval$1("StoreProviderError>"))); return t1._store; }, StoreConnector$: function(builder, converter, onDidChange, onDispose, onInit, onInitialBuild, onWillChange, rebuildOnChange, $S, ViewModel) { return new O.StoreConnector(builder, converter, onInit, onDispose, true, onWillChange, onDidChange, onInitialBuild, null, $S._eval$1("@<0>")._bind$1(ViewModel)._eval$1("StoreConnector<1,2>")); }, StoreBuilder__identity: function(store) { return store; }, StoreBuilder$: function(builder, onInit, $S) { return new O.StoreBuilder(builder, onInit, null, $S._eval$1("StoreBuilder<0>")); }, StoreProvider: function StoreProvider(t0, t1, t2, t3) { var _ = this; _._store = t0; _.child = t1; _.key = t2; _.$ti = t3; }, StoreConnector: function StoreConnector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.builder = t0; _.converter = t1; _.onInit = t2; _.onDispose = t3; _.rebuildOnChange = t4; _.onWillChange = t5; _.onDidChange = t6; _.onInitialBuild = t7; _.key = t8; _.$ti = t9; }, StoreBuilder: function StoreBuilder(t0, t1, t2, t3) { var _ = this; _.builder = t0; _.onInit = t1; _.key = t2; _.$ti = t3; }, _StoreStreamListener: function _StoreStreamListener(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.builder = t0; _.converter = t1; _.store = t2; _.rebuildOnChange = t3; _.distinct = t4; _.onInit = t5; _.onDispose = t6; _.ignoreChange = t7; _.onWillChange = t8; _.onDidChange = t9; _.onInitialBuild = t10; _.key = t11; _.$ti = t12; }, _StoreStreamListenerState: function _StoreStreamListenerState(t0, t1) { var _ = this; _.___StoreStreamListenerState__stream = $; _._widget = _._latestError = _._latestValue = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _StoreStreamListenerState_build_closure: function _StoreStreamListenerState_build_closure(t0) { this.$this = t0; }, StoreProviderError: function StoreProviderError(t0) { this.$ti = t0; }, ConverterError: function ConverterError(t0, t1) { this.error = t0; this.stackTrace = t1; }, MethodChannelGoogleSignIn: function MethodChannelGoogleSignIn() { }, MethodChannelGoogleSignIn_getTokens_closure: function MethodChannelGoogleSignIn_getTokens_closure() { }, BrowserClient: function BrowserClient(t0) { this._xhrs = t0; }, BrowserClient_send_closure: function BrowserClient_send_closure(t0, t1, t2) { this.xhr = t0; this.completer = t1; this.request = t2; }, BrowserClient_send_closure0: function BrowserClient_send_closure0(t0, t1) { this.completer = t0; this.request = t1; }, Request$: function(method, url) { var t1 = new Uint8Array(0), t2 = $.$get$BaseRequest__tokenRE()._nativeRegExp; if (!t2.test(method)) H.throwExpression(P.ArgumentError$value(method, "method", "Not a valid method")); t2 = type$.String; return new O.Request(C.C_Utf8Codec, t1, method, url, P.LinkedHashMap_LinkedHashMap(new G.BaseRequest_closure(), new G.BaseRequest_closure0(), t2, t2)); }, Request: function Request(t0, t1, t2, t3, t4) { var _ = this; _._defaultEncoding = t0; _._bodyBytes = t1; _.method = t2; _.url = t3; _.headers = t4; _._finalized = false; }, AccountEntity__initializeBuilder: function(builder) { builder.get$_account_model$_$this()._debugEnabled = false; builder.get$_account_model$_$this()._isDocker = false; builder.get$_account_model$_$this()._isSchedulerRunning = false; builder.get$_account_model$_$this()._disableAutoUpdate = false; builder.get$_account_model$_$this()._trialPlan = ""; builder.get$_account_model$_$this()._trialStarted = ""; builder.get$_account_model$_$this()._defaultCompanyId = ""; return builder; }, _$AccountEntity$_: function(currentVersion, debugEnabled, defaultCompanyId, defaultUrl, disableAutoUpdate, id, isDocker, isSchedulerRunning, latestVersion, plan, planExpires, reportErrors, trialPlan, trialStarted) { return new O._$AccountEntity(id, trialPlan, trialStarted, defaultUrl, reportErrors, plan, planExpires, latestVersion, currentVersion, debugEnabled, isDocker, isSchedulerRunning, disableAutoUpdate, defaultCompanyId); }, AccountEntity: function AccountEntity() { }, _$AccountEntitySerializer: function _$AccountEntitySerializer() { }, _$AccountEntity: function _$AccountEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.id = t0; _.trialPlan = t1; _.trialStarted = t2; _.defaultUrl = t3; _.reportErrors = t4; _.plan = t5; _.planExpires = t6; _.latestVersion = t7; _.currentVersion = t8; _.debugEnabled = t9; _.isDocker = t10; _.isSchedulerRunning = t11; _.disableAutoUpdate = t12; _.defaultCompanyId = t13; _._account_model$__hashCode = null; }, AccountEntityBuilder: function AccountEntityBuilder() { var _ = this; _._defaultCompanyId = _._disableAutoUpdate = _._isSchedulerRunning = _._isDocker = _._debugEnabled = _._currentVersion = _._latestVersion = _._planExpires = _._plan = _._reportErrors = _._defaultUrl = _._trialStarted = _._trialPlan = _._account_model$_id = _._account_model$_$v = null; }, CompanyGatewayEntity_CompanyGatewayEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return O._$CompanyGatewayEntity$_(0, 0, "", "", 0, "", "", "", "", "", A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_FeesAndLimitsSettings), "", t1, false, false, false, "", null, false, false, false, true, false, false, true, false, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SystemLogEntity), "always", true, 0); }, FeesAndLimitsSettings_FeesAndLimitsSettings: function(isEnabled) { return O._$FeesAndLimitsSettings$_(false, 0, 0, 0, isEnabled === true, -1, -1, "", "", "", 0, 0, 0); }, _$CompanyGatewayEntity$_: function(acceptedCreditCards, archivedAt, assignedUserId, config, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, feesAndLimitsMap, gatewayId, id, isChanged, isDeleted, isTestMode, label, loadedAt, requireBillingAddress, requireClientName, requireClientPhone, requireContactEmail, requireContactName, requireCvv, requirePostalCode, requireShippingAddress, systemLogs, tokenBilling, updateDetails, updatedAt) { var _s20_ = "CompanyGatewayEntity"; if (feesAndLimitsMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "feesAndLimitsMap")); if (systemLogs == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "systemLogs")); return new O._$CompanyGatewayEntity(loadedAt, gatewayId, acceptedCreditCards, requireShippingAddress, requireBillingAddress, requireClientName, requirePostalCode, requireClientPhone, requireContactName, requireContactEmail, requireCvv, updateDetails, feesAndLimitsMap, systemLogs, customValue1, customValue2, customValue3, customValue4, config, tokenBilling, isTestMode, label, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$FeesAndLimitsSettings$_: function(adjustFeePercent, feeAmount, feeCap, feePercent, isEnabled, maxLimit, minLimit, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3) { return new O._$FeesAndLimitsSettings(minLimit, maxLimit, feeAmount, feePercent, feeCap, taxRate1, taxName1, taxRate2, taxName2, taxRate3, taxName3, adjustFeePercent, isEnabled); }, CompanyGatewayListResponse: function CompanyGatewayListResponse() { }, CompanyGatewayItemResponse: function CompanyGatewayItemResponse() { }, CompanyGatewayEntity: function CompanyGatewayEntity() { }, CompanyGatewayEntity_addCard_closure: function CompanyGatewayEntity_addCard_closure(t0, t1) { this.$this = t0; this.cardType = t1; }, CompanyGatewayEntity_removeCard_closure: function CompanyGatewayEntity_removeCard_closure(t0, t1) { this.$this = t0; this.cardType = t1; }, CompanyGatewayEntity_updateConfig_closure: function CompanyGatewayEntity_updateConfig_closure(t0) { this.updatedConfig = t0; }, FeesAndLimitsSettings: function FeesAndLimitsSettings() { }, _$CompanyGatewayListResponseSerializer: function _$CompanyGatewayListResponseSerializer() { }, _$CompanyGatewayItemResponseSerializer: function _$CompanyGatewayItemResponseSerializer() { }, _$CompanyGatewayEntitySerializer: function _$CompanyGatewayEntitySerializer() { }, _$FeesAndLimitsSettingsSerializer: function _$FeesAndLimitsSettingsSerializer() { }, _$CompanyGatewayListResponse: function _$CompanyGatewayListResponse(t0) { this.data = t0; this._company_gateway_model$__hashCode = null; }, CompanyGatewayListResponseBuilder: function CompanyGatewayListResponseBuilder() { this._company_gateway_model$_data = this._company_gateway_model$_$v = null; }, _$CompanyGatewayItemResponse: function _$CompanyGatewayItemResponse(t0) { this.data = t0; this._company_gateway_model$__hashCode = null; }, CompanyGatewayItemResponseBuilder: function CompanyGatewayItemResponseBuilder() { this._company_gateway_model$_data = this._company_gateway_model$_$v = null; }, _$CompanyGatewayEntity: function _$CompanyGatewayEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29) { var _ = this; _.loadedAt = t0; _.gatewayId = t1; _.acceptedCreditCards = t2; _.requireShippingAddress = t3; _.requireBillingAddress = t4; _.requireClientName = t5; _.requirePostalCode = t6; _.requireClientPhone = t7; _.requireContactName = t8; _.requireContactEmail = t9; _.requireCvv = t10; _.updateDetails = t11; _.feesAndLimitsMap = t12; _.systemLogs = t13; _.customValue1 = t14; _.customValue2 = t15; _.customValue3 = t16; _.customValue4 = t17; _.config = t18; _.tokenBilling = t19; _.isTestMode = t20; _.label = t21; _.isChanged = t22; _.createdAt = t23; _.updatedAt = t24; _.archivedAt = t25; _.isDeleted = t26; _.createdUserId = t27; _.assignedUserId = t28; _.id = t29; _._company_gateway_model$__hashCode = null; }, CompanyGatewayEntityBuilder: function CompanyGatewayEntityBuilder() { var _ = this; _._company_gateway_model$_assignedUserId = _._company_gateway_model$_createdUserId = _._company_gateway_model$_isDeleted = _._company_gateway_model$_archivedAt = _._company_gateway_model$_updatedAt = _._company_gateway_model$_createdAt = _._company_gateway_model$_isChanged = _._label = _._isTestMode = _._tokenBilling = _._config = _._company_gateway_model$_customValue4 = _._company_gateway_model$_customValue3 = _._company_gateway_model$_customValue2 = _._company_gateway_model$_customValue1 = _._company_gateway_model$_systemLogs = _._feesAndLimitsMap = _._updateDetails = _._requireCvv = _._requireContactEmail = _._requireContactName = _._requireClientPhone = _._requirePostalCode = _._requireClientName = _._requireBillingAddress = _._requireShippingAddress = _._acceptedCreditCards = _._gatewayId = _._company_gateway_model$_loadedAt = _._company_gateway_model$_$v = null; _._company_gateway_model$_id = null; }, _$FeesAndLimitsSettings: function _$FeesAndLimitsSettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.minLimit = t0; _.maxLimit = t1; _.feeAmount = t2; _.feePercent = t3; _.feeCap = t4; _.taxRate1 = t5; _.taxName1 = t6; _.taxRate2 = t7; _.taxName2 = t8; _.taxRate3 = t9; _.taxName3 = t10; _.adjustFeePercent = t11; _.isEnabled = t12; _._company_gateway_model$__hashCode = null; }, FeesAndLimitsSettingsBuilder: function FeesAndLimitsSettingsBuilder() { var _ = this; _._company_gateway_model$_isEnabled = _._adjustFeePercent = _._company_gateway_model$_taxName3 = _._company_gateway_model$_taxRate3 = _._company_gateway_model$_taxName2 = _._company_gateway_model$_taxRate2 = _._company_gateway_model$_taxName1 = _._company_gateway_model$_taxRate1 = _._feeCap = _._feePercent = _._feeAmount = _._maxLimit = _._minLimit = _._company_gateway_model$_$v = null; }, _CompanyGatewayEntity_Object_BaseEntity: function _CompanyGatewayEntity_Object_BaseEntity() { }, _CompanyGatewayEntity_Object_BaseEntity_SelectableEntity: function _CompanyGatewayEntity_Object_BaseEntity_SelectableEntity() { }, CurrencyEntity_CurrencyEntity: function() { return O._$CurrencyEntity$_("", "", 0, "", "", 2, false, "", ""); }, _$CurrencyEntity$_: function(code, decimalSeparator, exchangeRate, id, $name, precision, swapCurrencySymbol, symbol, thousandSeparator) { return new O._$CurrencyEntity($name, symbol, precision, thousandSeparator, decimalSeparator, code, swapCurrencySymbol, exchangeRate, id); }, CurrencyListResponse: function CurrencyListResponse() { }, CurrencyItemResponse: function CurrencyItemResponse() { }, CurrencyEntity: function CurrencyEntity() { }, _$CurrencyListResponseSerializer: function _$CurrencyListResponseSerializer() { }, _$CurrencyItemResponseSerializer: function _$CurrencyItemResponseSerializer() { }, _$CurrencyEntitySerializer: function _$CurrencyEntitySerializer() { }, _$CurrencyListResponse: function _$CurrencyListResponse(t0) { this.data = t0; this._currency_model$__hashCode = null; }, CurrencyListResponseBuilder: function CurrencyListResponseBuilder() { this._currency_model$_data = this._currency_model$_$v = null; }, _$CurrencyItemResponse: function _$CurrencyItemResponse(t0) { this.data = t0; this._currency_model$__hashCode = null; }, CurrencyItemResponseBuilder: function CurrencyItemResponseBuilder() { this._currency_model$_data = this._currency_model$_$v = null; }, _$CurrencyEntity: function _$CurrencyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.name = t0; _.symbol = t1; _.precision = t2; _.thousandSeparator = t3; _.decimalSeparator = t4; _.code = t5; _.swapCurrencySymbol = t6; _.exchangeRate = t7; _.id = t8; _._currency_model$__hashCode = null; }, CurrencyEntityBuilder: function CurrencyEntityBuilder() { var _ = this; _._currency_model$_id = _._currency_model$_exchangeRate = _._swapCurrencySymbol = _._code = _._decimalSeparator = _._thousandSeparator = _._precision = _._symbol = _._currency_model$_name = _._currency_model$_$v = null; }, _CurrencyEntity_Object_SelectableEntity: function _CurrencyEntity_Object_SelectableEntity() { }, IndustryListResponse: function IndustryListResponse() { }, IndustryItemResponse: function IndustryItemResponse() { }, IndustryEntity: function IndustryEntity() { }, _$IndustryListResponseSerializer: function _$IndustryListResponseSerializer() { }, _$IndustryItemResponseSerializer: function _$IndustryItemResponseSerializer() { }, _$IndustryEntitySerializer: function _$IndustryEntitySerializer() { }, _$IndustryListResponse: function _$IndustryListResponse(t0) { this.data = t0; this._industry_model$__hashCode = null; }, IndustryListResponseBuilder: function IndustryListResponseBuilder() { this._industry_model$_data = this._industry_model$_$v = null; }, _$IndustryItemResponse: function _$IndustryItemResponse(t0) { this.data = t0; this._industry_model$__hashCode = null; }, IndustryItemResponseBuilder: function IndustryItemResponseBuilder() { this._industry_model$_data = this._industry_model$_$v = null; }, _$IndustryEntity: function _$IndustryEntity(t0, t1) { this.name = t0; this.id = t1; this._industry_model$__hashCode = null; }, IndustryEntityBuilder: function IndustryEntityBuilder() { this._industry_model$_id = this._industry_model$_name = this._industry_model$_$v = null; }, _IndustryEntity_Object_SelectableEntity: function _IndustryEntity_Object_SelectableEntity() { }, _chartInvoices: function(clientMap, company, currencyMap, invoiceMap, settings) { var outstandingData, counts, totals, date, t5, _s6_ = "active", _s11_ = "outstanding", t1 = type$.JSArray_legacy_ChartMoneyData, t2 = H.setRuntimeTypeInfo([], t1), t3 = type$.legacy_String, t4 = type$.legacy_List_legacy_String, activeData = new O.ChartDataGroup(_s6_, t2, P.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); t1 = H.setRuntimeTypeInfo([], t1); outstandingData = new O.ChartDataGroup(_s11_, t1, P.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); counts = P.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "outstanding", 0], t3, type$.legacy_int); t4 = type$.legacy_double; totals = P.LinkedHashMap_LinkedHashMap$_literal(["active", P.LinkedHashMap_LinkedHashMap$_empty(t3, t4), "outstanding", P.LinkedHashMap_LinkedHashMap$_empty(t3, t4)], t3, type$.legacy_Map_of_legacy_String_and_legacy_double); J.forEach$1$ax(invoiceMap._map$_map, new O._chartInvoices_closure(clientMap, settings, company, totals, activeData, outstandingData, currencyMap, counts)); date = Y.convertSqlDateToDateTime(settings.startDate$1(company)); for (t3 = Y.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t3;) { t5 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t5)) { t2.push(new O.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t5))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t5); t1.push(new O.ChartMoneyData(date, totals.$index(0, _s11_).$index(0, t5))); outstandingData.total = outstandingData.total + totals.$index(0, _s11_).$index(0, t5); } else { t2.push(new O.ChartMoneyData(date, 0)); t1.push(new O.ChartMoneyData(date, 0)); } t4 += 86400000; t5 = date.isUtc; date = new P.DateTime(t4, t5); date.DateTime$_withValue$2$isUtc(t4, t5); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s11_); outstandingData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(outstandingData.total / counts.$index(0, _s11_), 2) : 0; return H.setRuntimeTypeInfo([activeData, outstandingData], type$.JSArray_legacy_ChartDataGroup); }, chartQuotes: function(clientMap, company, currencyMap, quoteMap, settings) { var t3, t4, activeData, t5, approvedData, unapprovedData, date, t6, _s6_ = "active", _s8_ = "approved", _s10_ = "unapproved", t1 = type$.legacy_String, counts = P.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "approved", 0, "unapproved", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = P.LinkedHashMap_LinkedHashMap$_literal(["active", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "approved", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "unapproved", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = H.setRuntimeTypeInfo([], t2); t4 = type$.legacy_List_legacy_String; activeData = new O.ChartDataGroup(_s6_, t3, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = H.setRuntimeTypeInfo([], t2); approvedData = new O.ChartDataGroup(_s8_, t5, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = H.setRuntimeTypeInfo([], t2); unapprovedData = new O.ChartDataGroup(_s10_, t2, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); J.forEach$1$ax(quoteMap._map$_map, new O.chartQuotes_closure(clientMap, settings, company, totals, activeData, approvedData, unapprovedData, currencyMap, counts)); date = Y.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = Y.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t6 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t6)) { t3.push(new O.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t6))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t6); t5.push(new O.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t6))); approvedData.total = approvedData.total + totals.$index(0, _s8_).$index(0, t6); t2.push(new O.ChartMoneyData(date, totals.$index(0, _s10_).$index(0, t6))); unapprovedData.total = unapprovedData.total + totals.$index(0, _s10_).$index(0, t6); } else { t3.push(new O.ChartMoneyData(date, 0)); t5.push(new O.ChartMoneyData(date, 0)); t2.push(new O.ChartMoneyData(date, 0)); } t4 += 86400000; t6 = date.isUtc; date = new P.DateTime(t4, t6); date.DateTime$_withValue$2$isUtc(t4, t6); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); approvedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(approvedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s10_); unapprovedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(unapprovedData.total / counts.$index(0, _s10_), 2) : 0; return H.setRuntimeTypeInfo([activeData, approvedData, unapprovedData], type$.JSArray_legacy_ChartDataGroup); }, chartPayments: function(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { var t3, t4, activeData, refundedData, date, t5, _s6_ = "active", _s8_ = "refunded", t1 = type$.legacy_String, counts = P.LinkedHashMap_LinkedHashMap$_literal(["active", 0, "refunded", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = P.LinkedHashMap_LinkedHashMap$_literal(["active", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "refunded", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = H.setRuntimeTypeInfo([], t2); t4 = type$.legacy_List_legacy_String; activeData = new O.ChartDataGroup(_s6_, t3, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = H.setRuntimeTypeInfo([], t2); refundedData = new O.ChartDataGroup(_s8_, t2, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); J.forEach$1$ax(paymentMap._map$_map, new O.chartPayments_closure(clientMap, settings, company, totals, activeData, refundedData, currencyMap, counts)); date = Y.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = Y.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t5 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t5)) { t3.push(new O.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t5))); activeData.total = activeData.total + totals.$index(0, _s6_).$index(0, t5); t2.push(new O.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t5))); refundedData.total = refundedData.total + totals.$index(0, _s8_).$index(0, t5); } else { t3.push(new O.ChartMoneyData(date, 0)); t2.push(new O.ChartMoneyData(date, 0)); } t4 += 86400000; t5 = date.isUtc; date = new P.DateTime(t4, t5); date.DateTime$_withValue$2$isUtc(t4, t5); } t1 = counts.$index(0, _s6_); activeData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(activeData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); refundedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(refundedData.total / counts.$index(0, _s8_), 2) : 0; return H.setRuntimeTypeInfo([activeData, refundedData], type$.JSArray_legacy_ChartDataGroup); }, chartTasks: function(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { var t3, t4, loggedData, t5, invoicedData, paidData, date, t6, _s6_ = "logged", _s8_ = "invoiced", _s4_ = "paid", t1 = type$.legacy_String, counts = P.LinkedHashMap_LinkedHashMap$_literal(["logged", 0, "invoiced", 0, "paid", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = P.LinkedHashMap_LinkedHashMap$_literal(["logged", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "invoiced", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "paid", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = H.setRuntimeTypeInfo([], t2); t4 = type$.legacy_List_legacy_String; loggedData = new O.ChartDataGroup(_s6_, t3, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = H.setRuntimeTypeInfo([], t2); invoicedData = new O.ChartDataGroup(_s8_, t5, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = H.setRuntimeTypeInfo([], t2); paidData = new O.ChartDataGroup(_s4_, t2, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); J.forEach$1$ax(taskMap._map$_map, new O.chartTasks_closure(clientMap, invoiceMap, projectMap, groupMap, settings, company, totals, loggedData, invoicedData, paidData, currencyMap, counts)); date = Y.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = Y.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t6 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t6)) { t3.push(new O.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t6))); loggedData.total = loggedData.total + totals.$index(0, _s6_).$index(0, t6); t5.push(new O.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t6))); invoicedData.total = invoicedData.total + totals.$index(0, _s8_).$index(0, t6); t2.push(new O.ChartMoneyData(date, totals.$index(0, _s4_).$index(0, t6))); paidData.total = paidData.total + totals.$index(0, _s4_).$index(0, t6); } else { t3.push(new O.ChartMoneyData(date, 0)); t5.push(new O.ChartMoneyData(date, 0)); t2.push(new O.ChartMoneyData(date, 0)); } t4 += 86400000; t6 = date.isUtc; date = new P.DateTime(t4, t6); date.DateTime$_withValue$2$isUtc(t4, t6); } t1 = counts.$index(0, _s6_); loggedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(loggedData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s8_); invoicedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(invoicedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s4_); paidData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(paidData.total / counts.$index(0, _s4_), 2) : 0; return H.setRuntimeTypeInfo([loggedData, invoicedData, paidData], type$.JSArray_legacy_ChartDataGroup); }, chartExpenses: function(currencyMap, company, settings, invoiceMap, expenseMap) { var t3, t4, loggedData, t5, pendingData, t6, invoicedData, paidData, date, t7, _s6_ = "logged", _s7_ = "pending", _s8_ = "invoiced", _s4_ = "paid", t1 = type$.legacy_String, counts = P.LinkedHashMap_LinkedHashMap$_literal(["logged", 0, "pending", 0, "invoiced", 0, "paid", 0], t1, type$.legacy_int), t2 = type$.legacy_double, totals = P.LinkedHashMap_LinkedHashMap$_literal(["logged", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "pending", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "invoiced", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2), "paid", P.LinkedHashMap_LinkedHashMap$_empty(t1, t2)], t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_ChartMoneyData; t3 = H.setRuntimeTypeInfo([], t2); t4 = type$.legacy_List_legacy_String; loggedData = new O.ChartDataGroup(_s6_, t3, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t5 = H.setRuntimeTypeInfo([], t2); pendingData = new O.ChartDataGroup(_s7_, t5, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t6 = H.setRuntimeTypeInfo([], t2); invoicedData = new O.ChartDataGroup(_s8_, t6, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); t2 = H.setRuntimeTypeInfo([], t2); paidData = new O.ChartDataGroup(_s4_, t2, P.LinkedHashMap_LinkedHashMap$_empty(t1, t4)); J.forEach$1$ax(expenseMap._map$_map, new O.chartExpenses_closure(settings, company, totals, loggedData, pendingData, invoicedData, paidData, currencyMap, invoiceMap, counts)); date = Y.convertSqlDateToDateTime(settings.startDate$1(company)); for (t1 = Y.convertSqlDateToDateTime(settings.endDate$1(company))._value; t4 = date._value, t4 <= t1;) { t7 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); if (totals.$index(0, _s6_).containsKey$1(0, t7)) { t3.push(new O.ChartMoneyData(date, totals.$index(0, _s6_).$index(0, t7))); loggedData.total = loggedData.total + totals.$index(0, _s6_).$index(0, t7); t5.push(new O.ChartMoneyData(date, totals.$index(0, _s7_).$index(0, t7))); pendingData.total = pendingData.total + totals.$index(0, _s7_).$index(0, t7); t6.push(new O.ChartMoneyData(date, totals.$index(0, _s8_).$index(0, t7))); invoicedData.total = invoicedData.total + totals.$index(0, _s8_).$index(0, t7); t2.push(new O.ChartMoneyData(date, totals.$index(0, _s4_).$index(0, t7))); paidData.total = paidData.total + totals.$index(0, _s4_).$index(0, t7); } else { t3.push(new O.ChartMoneyData(date, 0)); t5.push(new O.ChartMoneyData(date, 0)); t6.push(new O.ChartMoneyData(date, 0)); t2.push(new O.ChartMoneyData(date, 0)); } t4 += 86400000; t7 = date.isUtc; date = new P.DateTime(t4, t7); date.DateTime$_withValue$2$isUtc(t4, t7); } t1 = counts.$index(0, _s6_); loggedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(loggedData.total / counts.$index(0, _s6_), 2) : 0; t1 = counts.$index(0, _s7_); pendingData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(pendingData.total / counts.$index(0, _s7_), 2) : 0; t1 = counts.$index(0, _s8_); invoicedData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(invoicedData.total / counts.$index(0, _s8_), 2) : 0; t1 = counts.$index(0, _s4_); paidData.average = (t1 == null ? 0 : t1) > 0 ? Y.round(paidData.total / counts.$index(0, _s4_), 2) : 0; return H.setRuntimeTypeInfo([loggedData, pendingData, invoicedData, paidData], type$.JSArray_legacy_ChartDataGroup); }, ChartDataGroup: function ChartDataGroup(t0, t1, t2) { var _ = this; _.name = t0; _.rawSeries = t1; _.entityMap = t2; _.chartSeries = null; _.previousTotal = _.average = _.total = 0; }, ChartMoneyData: function ChartMoneyData(t0, t1) { this.date = t0; this.amount = t1; }, memoizedChartInvoices_closure: function memoizedChartInvoices_closure() { }, memoizedPreviousChartInvoices_closure: function memoizedPreviousChartInvoices_closure() { }, _chartInvoices_closure: function _chartInvoices_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.outstandingData = t5; _.currencyMap = t6; _.counts = t7; }, memoizedChartQuotes_closure: function memoizedChartQuotes_closure() { }, memoizedPreviousChartQuotes_closure: function memoizedPreviousChartQuotes_closure() { }, chartQuotes_closure: function chartQuotes_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.approvedData = t5; _.unapprovedData = t6; _.currencyMap = t7; _.counts = t8; }, memoizedChartPayments_closure: function memoizedChartPayments_closure() { }, memoizedPreviousChartPayments_closure: function memoizedPreviousChartPayments_closure() { }, chartPayments_closure: function chartPayments_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.clientMap = t0; _.settings = t1; _.company = t2; _.totals = t3; _.activeData = t4; _.refundedData = t5; _.currencyMap = t6; _.counts = t7; }, memoizedChartTasks_closure: function memoizedChartTasks_closure() { }, memoizedPreviousChartTasks_closure: function memoizedPreviousChartTasks_closure() { }, chartTasks_closure: function chartTasks_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.clientMap = t0; _.invoiceMap = t1; _.projectMap = t2; _.groupMap = t3; _.settings = t4; _.company = t5; _.totals = t6; _.loggedData = t7; _.invoicedData = t8; _.paidData = t9; _.currencyMap = t10; _.counts = t11; }, chartTasks__closure: function chartTasks__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.totals = t0; _.loggedData = t1; _.invoicedData = t2; _.paidData = t3; _.company = t4; _.project = t5; _.client = t6; _.task = t7; _.group = t8; _.settings = t9; _.invoice = t10; _.currencyMap = t11; _.invoiceMap = t12; _.counts = t13; }, chartTasks___closure: function chartTasks___closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.totals = t0; _.loggedData = t1; _.invoicedData = t2; _.paidData = t3; _.company = t4; _.project = t5; _.client = t6; _.task = t7; _.group = t8; _.settings = t9; _.invoice = t10; _.currencyMap = t11; _.invoiceMap = t12; _.counts = t13; }, chartExpenses_closure: function chartExpenses_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.settings = t0; _.company = t1; _.totals = t2; _.loggedData = t3; _.pendingData = t4; _.invoicedData = t5; _.paidData = t6; _.currencyMap = t7; _.invoiceMap = t8; _.counts = t9; }, memoizedChartExpenses_closure: function memoizedChartExpenses_closure() { }, memoizedPreviousChartExpenses_closure: function memoizedPreviousChartExpenses_closure() { }, filteredExpenseCategoriesSelector: function(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState) { var t1 = J.where$1$ax(expenseCategoryList._list, new O.filteredExpenseCategoriesSelector_closure(expenseCategoryMap, selectionState, expenseCategoryListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new O.filteredExpenseCategoriesSelector_closure0(expenseCategoryMap, expenseCategoryListState)); return list; }, calculateExpenseCategoryAmount: function(categoryId, expenseMap) { var t1 = {}; t1.total = 0; J.forEach$1$ax(expenseMap._map$_map, new O.calculateExpenseCategoryAmount_closure(t1, categoryId)); return t1.total; }, expenseStatsForExpenseCategory: function(categoryId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new O.expenseStatsForExpenseCategory_closure(t1, categoryId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, memoizedFilteredExpenseCategoryList_closure: function memoizedFilteredExpenseCategoryList_closure() { }, filteredExpenseCategoriesSelector_closure: function filteredExpenseCategoriesSelector_closure(t0, t1, t2) { this.expenseCategoryMap = t0; this.selectionState = t1; this.expenseCategoryListState = t2; }, filteredExpenseCategoriesSelector_closure0: function filteredExpenseCategoriesSelector_closure0(t0, t1) { this.expenseCategoryMap = t0; this.expenseCategoryListState = t1; }, memoizedCalculateExpenseCategoryAmount_closure: function memoizedCalculateExpenseCategoryAmount_closure() { }, calculateExpenseCategoryAmount_closure: function calculateExpenseCategoryAmount_closure(t0, t1) { this._box_0 = t0; this.categoryId = t1; }, memoizedExpenseStatsForExpenseCategory_closure: function memoizedExpenseStatsForExpenseCategory_closure() { }, expenseStatsForExpenseCategory_closure: function expenseStatsForExpenseCategory_closure(t0, t1) { this._box_0 = t0; this.categoryId = t1; }, convertProductToInvoiceItem: function(client, company, currencyMap, invoice, product) { var cost, t2, t3, _null = null, t1 = {}; if (company.fillProducts) { cost = product.price; t1.cost = cost; if (company.convertProductExchangeRate) { t2 = client == null ? _null : client.settings.currencyId; t2 = (t2 == null ? "" : t2).length !== 0; } else t2 = false; if (t2) { t2 = invoice.exchangeRate; t3 = client.settings.currencyId; t1.cost = Y.round(cost * t2, J.$index$asx(currencyMap._map$_map, t3).precision); } return Q.InvoiceItemEntity_InvoiceItemEntity(_null, _null).rebuild$1(new O.convertProductToInvoiceItem_closure(t1, product, company)); } else return Q.InvoiceItemEntity_InvoiceItemEntity(product.productKey, _null); }, dropdownProductsSelector: function(productMap, productList, userMap) { var t1 = J.where$1$ax(productList._list, new O.dropdownProductsSelector_closure(productMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new O.dropdownProductsSelector_closure0(productMap, userMap)); return list; }, productList: function(productMap) { var list = J.where$1$ax(productMap.get$keys(productMap), new O.productList_closure(productMap)).toList$0(0); C.JSArray_methods.sort$1(list, new O.productList_closure0(productMap)); return list; }, filteredProductsSelector: function(selectionState, productMap, productList, productListState, userMap) { var t1 = J.where$1$ax(productList._list, new O.filteredProductsSelector_closure(productMap, selectionState, productListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new O.filteredProductsSelector_closure0(productMap, productListState, userMap)); return list; }, convertProductToInvoiceItem_closure: function convertProductToInvoiceItem_closure(t0, t1, t2) { this._box_0 = t0; this.product = t1; this.company = t2; }, memoizedDropdownProductList_closure: function memoizedDropdownProductList_closure() { }, dropdownProductsSelector_closure: function dropdownProductsSelector_closure(t0) { this.productMap = t0; }, dropdownProductsSelector_closure0: function dropdownProductsSelector_closure0(t0, t1) { this.productMap = t0; this.userMap = t1; }, memoizedProductList_closure: function memoizedProductList_closure() { }, productList_closure: function productList_closure(t0) { this.productMap = t0; }, productList_closure0: function productList_closure0(t0) { this.productMap = t0; }, memoizedFilteredProductList_closure: function memoizedFilteredProductList_closure() { }, filteredProductsSelector_closure: function filteredProductsSelector_closure(t0, t1, t2) { this.productMap = t0; this.selectionState = t1; this.productListState = t2; }, filteredProductsSelector_closure0: function filteredProductsSelector_closure0(t0, t1, t2) { this.productMap = t0; this.productListState = t1; this.userMap = t2; }, filteredTokensSelector: function(selectionState, tokenMap, tokenList, tokenListState) { var t1 = J.where$1$ax(tokenList._list, new O.filteredTokensSelector_closure(tokenMap, selectionState, tokenListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new O.filteredTokensSelector_closure0(tokenMap, tokenListState)); return list; }, memoizedFilteredTokenList_closure: function memoizedFilteredTokenList_closure() { }, filteredTokensSelector_closure: function filteredTokensSelector_closure(t0, t1, t2) { this.tokenMap = t0; this.selectionState = t1; this.tokenListState = t2; }, filteredTokensSelector_closure0: function filteredTokensSelector_closure0(t0, t1) { this.tokenMap = t0; this.tokenListState = t1; }, AppScrollbar: function AppScrollbar(t0, t1, t2, t3) { var _ = this; _.child = t0; _.controller = t1; _.hideMobileThumb = t2; _.key = t3; }, _AppScrollbarState: function _AppScrollbarState(t0) { var _ = this; _._app_scrollbar$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AppScrollbarState_build_closure: function _AppScrollbarState_build_closure(t0) { this.$this = t0; }, _AppScrollbarState_build__closure0: function _AppScrollbarState_build__closure0(t0) { this.$this = t0; }, _AppScrollbarState_build_closure0: function _AppScrollbarState_build_closure0(t0) { this.$this = t0; }, _AppScrollbarState_build__closure: function _AppScrollbarState_build__closure(t0) { this.$this = t0; }, ChangeLayoutBanner: function ChangeLayoutBanner(t0, t1, t2, t3) { var _ = this; _.child = t0; _.appLayout = t1; _.suggestedLayout = t2; _.key = t3; }, _ChangeLayoutBannerState: function _ChangeLayoutBannerState(t0) { var _ = this; _._dismissedChange = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ChangeLayoutBannerState_build_closure: function _ChangeLayoutBannerState_build_closure(t0) { this.$this = t0; }, _ChangeLayoutBannerState_build__closure0: function _ChangeLayoutBannerState_build__closure0(t0) { this.$this = t0; }, _ChangeLayoutBannerState_build_closure0: function _ChangeLayoutBannerState_build_closure0(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, _ChangeLayoutBannerState_build__closure: function _ChangeLayoutBannerState_build__closure(t0, t1) { this.layout = t0; this.store = t1; }, EntityListTile$: function(entity, isFilter, subtitle) { return new O.EntityListTile(subtitle, entity, isFilter, null); }, EntityListTile: function EntityListTile(t0, t1, t2, t3) { var _ = this; _.subtitle = t0; _.entity = t1; _.isFilter = t2; _.key = t3; }, _EntityListTileState: function _EntityListTileState(t0) { var _ = this; _._entity_list_tile$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityListTileState_build_closure: function _EntityListTileState_build_closure(t0) { this.$this = t0; }, _EntityListTileState_build_closure0: function _EntityListTileState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _EntityListTileState_build_closure1: function _EntityListTileState_build_closure1(t0) { this.$this = t0; }, _EntityListTileState_build__closure0: function _EntityListTileState_build__closure0(t0) { this.$this = t0; }, _EntityListTileState_build_closure2: function _EntityListTileState_build_closure2(t0) { this.$this = t0; }, _EntityListTileState_build__closure: function _EntityListTileState_build__closure(t0) { this.$this = t0; }, _EntityListTileState_build_closure4: function _EntityListTileState_build_closure4(t0) { this.$this = t0; }, _EntityListTileState_build_closure3: function _EntityListTileState_build_closure3(t0) { this.$this = t0; }, EntitiesListTile: function EntitiesListTile(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entity = t0; _.entityType = t1; _.title = t2; _.subtitle = t3; _.isFilter = t4; _.hideNew = t5; _.key = t6; }, _EntitiesListTileState: function _EntitiesListTileState(t0) { var _ = this; _._entity_list_tile$_isHovered = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntitiesListTileState_build_closure0: function _EntitiesListTileState_build_closure0(t0) { this.$this = t0; }, _EntitiesListTileState_build__closure0: function _EntitiesListTileState_build__closure0(t0) { this.$this = t0; }, _EntitiesListTileState_build_closure1: function _EntitiesListTileState_build_closure1(t0) { this.$this = t0; }, _EntitiesListTileState_build__closure: function _EntitiesListTileState_build__closure(t0) { this.$this = t0; }, _EntitiesListTileState_build_closure: function _EntitiesListTileState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _EntitiesListTileState_build_closure3: function _EntitiesListTileState_build_closure3() { }, _EntitiesListTileState_build_closure2: function _EntitiesListTileState_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore: function(store) { var expense = store.get$_store$_state().uiState.expenseUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).expenseState.map; t1 = expense.id; J.$index$asx(t2._map$_map, t1); return new O.ExpenseEditVM(expense, new O.ExpenseEditVM_ExpenseEditVM$fromStore_closure(store), new O.ExpenseEditVM_ExpenseEditVM$fromStore_closure0(store, state), new O.ExpenseEditVM_ExpenseEditVM$fromStore_closure1(store, state), state, new O.ExpenseEditVM_ExpenseEditVM$fromStore_closure2(store), new O.ExpenseEditVM_ExpenseEditVM$fromStore_closure3(store)); }, ExpenseEditScreen: function ExpenseEditScreen(t0) { this.key = t0; }, ExpenseEditScreen_build_closure0: function ExpenseEditScreen_build_closure0() { }, ExpenseEditScreen_build_closure: function ExpenseEditScreen_build_closure() { }, AbstractExpenseEditVM: function AbstractExpenseEditVM() { }, ExpenseEditVM: function ExpenseEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.expense = t0; _.onChanged = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.state = t4; _.onAddClientPressed = t5; _.onAddVendorPressed = t6; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure: function ExpenseEditVM_ExpenseEditVM$fromStore_closure(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure1: function ExpenseEditVM_ExpenseEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure2: function ExpenseEditVM_ExpenseEditVM$fromStore_closure2(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure1: function ExpenseEditVM_ExpenseEditVM$fromStore__closure1(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure2: function ExpenseEditVM_ExpenseEditVM$fromStore__closure2(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure3: function ExpenseEditVM_ExpenseEditVM$fromStore_closure3(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure: function ExpenseEditVM_ExpenseEditVM$fromStore__closure(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure0: function ExpenseEditVM_ExpenseEditVM$fromStore__closure0(t0) { this.store = t0; }, ExpenseEditVM_ExpenseEditVM$fromStore_closure0: function ExpenseEditVM_ExpenseEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore__closure3: function ExpenseEditVM_ExpenseEditVM$fromStore__closure3(t0, t1) { this.store = t0; this.state = t1; }, ExpenseEditVM_ExpenseEditVM$fromStore___closure: function ExpenseEditVM_ExpenseEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.expense = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ExpenseEditVM_ExpenseEditVM$fromStore___closure0: function ExpenseEditVM_ExpenseEditVM$fromStore___closure0() { }, ExpenseEditVM_ExpenseEditVM$fromStore____closure: function ExpenseEditVM_ExpenseEditVM$fromStore____closure(t0) { this.error = t0; }, ExpenseCategoryScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).expenseCategoryState.toString; t5 = $.$get$memoizedFilteredExpenseCategoryList(); t6 = state.getUISelection$1(C.EntityType_expenseCategory); t7 = t4.$index(t1, t3).expenseCategoryState.map; t8 = t4.$index(t1, t3).expenseCategoryState.list; t2 = t2.expenseCategoryUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new O.ExpenseCategoryScreenVM(t8); }, ExpenseCategoryScreenBuilder: function ExpenseCategoryScreenBuilder(t0) { this.key = t0; }, ExpenseCategoryScreenBuilder_build_closure: function ExpenseCategoryScreenBuilder_build_closure() { }, ExpenseCategoryScreenVM: function ExpenseCategoryScreenVM(t0) { this.expenseCategoryList = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore: function(store, isTasks) { var t1 = store.get$_store$_state(), t2 = store.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; return new O.InvoiceEditItemsVM(t1, J.$index$asx(t3._list, t2).userCompany.company, store.get$_store$_state().uiState.invoiceUIState.editing, store.get$_store$_state().uiState.invoiceUIState.editingItemIndex, new O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure(store), new O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0(store), new O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1(store, isTasks), new O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2(store)); }, InvoiceEditItemsScreen: function InvoiceEditItemsScreen(t0, t1, t2) { this.viewModel = t0; this.isTasks = t1; this.key = t2; }, InvoiceEditItemsScreen_build_closure0: function InvoiceEditItemsScreen_build_closure0(t0) { this.$this = t0; }, InvoiceEditItemsScreen_build_closure: function InvoiceEditItemsScreen_build_closure(t0) { this.$this = t0; }, EntityEditItemsVM: function EntityEditItemsVM() { }, InvoiceEditItemsVM: function InvoiceEditItemsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onRemoveInvoiceItemPressed = t4; _.clearSelectedInvoiceItem = t5; _.onChangedInvoiceItem = t6; _.onMovedInvoiceItem = t7; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0(t0) { this.store = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1(t0, t1) { this.store = t0; this.isTasks = t1; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure(t0) { this.isTasks = t0; }, InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2: function InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2(t0) { this.store = t0; }, InvoicePdfScreen: function InvoicePdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, InvoicePdfScreen_build_closure0: function InvoicePdfScreen_build_closure0() { }, InvoicePdfScreen_build_closure: function InvoicePdfScreen_build_closure(t0) { this.$this = t0; }, EntityPdfVM: function EntityPdfVM() { }, InvoicePdfVM: function InvoicePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, PaymentListItem: function PaymentListItem(t0, t1, t2, t3) { var _ = this; _.payment = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, PaymentListItem_build_closure: function PaymentListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.textStyle = t7; _.filterMatch = t8; _.textColor = t9; _.mobileSubtitle = t10; _.localization = t11; }, PaymentListItem_build__closure2: function PaymentListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, PaymentListItem_build__closure1: function PaymentListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, PaymentListItem_build__closure: function PaymentListItem_build__closure() { }, PaymentListItem_build__closure0: function PaymentListItem_build__closure0(t0) { this.$this = t0; }, PaymentListItem_build__closure5: function PaymentListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, PaymentListItem_build__closure4: function PaymentListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, PaymentListItem_build__closure3: function PaymentListItem_build__closure3() { }, QuoteViewVM_QuoteViewVM$fromStore: function(store) { var t4, t5, quote, t6, client, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).quoteState.map; t2 = t2.quoteUIState.selectedId; quote = J.$index$asx(t5._map$_map, t2); if (quote == null) quote = Q.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null); t2 = store.get$_store$_state(); t5 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t6 = quote.clientId; client = J.$index$asx(J.$index$asx(t5._list, t2).clientState.map._map$_map, t6); if (client == null) client = T.ClientEntity_ClientEntity(t6, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; quote.get$isNew(); return new O.QuoteViewVM(state, t1, quote, client, new O.QuoteViewVM_QuoteViewVM$fromStore_closure(quote), new O.QuoteViewVM_QuoteViewVM$fromStore_closure0(new O.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh(store, quote)), new O.QuoteViewVM_QuoteViewVM$fromStore_closure1(store, quote), new O.QuoteViewVM_QuoteViewVM$fromStore_closure2(store, quote), _null, new O.QuoteViewVM_QuoteViewVM$fromStore_closure3(store)); }, QuoteViewScreen: function QuoteViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, QuoteViewScreen_build_closure0: function QuoteViewScreen_build_closure0() { }, QuoteViewScreen_build_closure: function QuoteViewScreen_build_closure(t0) { this.$this = t0; }, QuoteViewVM: function QuoteViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, QuoteViewVM_QuoteViewVM$fromStore__handleRefresh: function QuoteViewVM_QuoteViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore_closure: function QuoteViewVM_QuoteViewVM$fromStore_closure(t0) { this.quote = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure0: function QuoteViewVM_QuoteViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure1: function QuoteViewVM_QuoteViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore__closure0: function QuoteViewVM_QuoteViewVM$fromStore__closure0(t0) { this.context = t0; }, QuoteViewVM_QuoteViewVM$fromStore__closure1: function QuoteViewVM_QuoteViewVM$fromStore__closure1(t0) { this.context = t0; }, QuoteViewVM_QuoteViewVM$fromStore___closure: function QuoteViewVM_QuoteViewVM$fromStore___closure(t0) { this.error = t0; }, QuoteViewVM_QuoteViewVM$fromStore_closure2: function QuoteViewVM_QuoteViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore__closure: function QuoteViewVM_QuoteViewVM$fromStore__closure(t0, t1) { this.store = t0; this.quote = t1; }, QuoteViewVM_QuoteViewVM$fromStore_closure3: function QuoteViewVM_QuoteViewVM$fromStore_closure3(t0) { this.store = t0; }, RecurringExpenseScreen: function RecurringExpenseScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringExpenseScreen_build_closure9: function RecurringExpenseScreen_build_closure9(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure7: function RecurringExpenseScreen_build_closure7(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure8: function RecurringExpenseScreen_build_closure8(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure4: function RecurringExpenseScreen_build_closure4(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure5: function RecurringExpenseScreen_build_closure5(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure: function RecurringExpenseScreen_build_closure(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure0: function RecurringExpenseScreen_build_closure0(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure1: function RecurringExpenseScreen_build_closure1(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure2: function RecurringExpenseScreen_build_closure2(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure3: function RecurringExpenseScreen_build_closure3(t0) { this.store = t0; }, RecurringExpenseScreen_build_closure6: function RecurringExpenseScreen_build_closure6(t0) { this.context = t0; }, RecurringInvoiceEdit: function RecurringInvoiceEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _RecurringInvoiceEditState: function _RecurringInvoiceEditState(t0, t1) { var _ = this; _._recurring_invoice_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _RecurringInvoiceEditState_build_closure1: function _RecurringInvoiceEditState_build_closure1(t0) { this.viewModel = t0; }, _RecurringInvoiceEditState_build_closure2: function _RecurringInvoiceEditState_build_closure2(t0) { this.$this = t0; }, _RecurringInvoiceEditState_build_closure0: function _RecurringInvoiceEditState_build_closure0(t0) { this.$this = t0; }, _RecurringInvoiceEditState_build_closure: function _RecurringInvoiceEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _RecurringInvoiceEditState_build__closure: function _RecurringInvoiceEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _RecurringInvoiceEditState_build___closure: function _RecurringInvoiceEditState_build___closure() { }, _RecurringInvoiceEditState_build___closure0: function _RecurringInvoiceEditState_build___closure0(t0) { this.viewModel = t0; }, _RecurringInvoiceEditState_build___closure1: function _RecurringInvoiceEditState_build___closure1(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __RecurringInvoiceEditState_State_SingleTickerProviderStateMixin: function __RecurringInvoiceEditState_State_SingleTickerProviderStateMixin() { }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore: function(store) { var t4, t5, invoice, t6, client, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).recurringInvoiceState.map; t2 = t2.recurringInvoiceUIState.selectedId; invoice = J.$index$asx(t5._map$_map, t2); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null); t2 = store.get$_store$_state(); t5 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t6 = invoice.clientId; client = J.$index$asx(J.$index$asx(t5._list, t2).clientState.map._map$_map, t6); if (client == null) client = T.ClientEntity_ClientEntity(t6, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; invoice.get$isNew(); return new O.RecurringInvoiceViewVM(state, t1, invoice, client, new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure(invoice), new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0(new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh(store, invoice)), new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1(store, invoice), new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2(store, invoice), _null, new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3(store)); }, RecurringInvoiceViewScreen: function RecurringInvoiceViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, RecurringInvoiceViewScreen_build_closure0: function RecurringInvoiceViewScreen_build_closure0() { }, RecurringInvoiceViewScreen_build_closure: function RecurringInvoiceViewScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceViewVM: function RecurringInvoiceViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure(t0) { this.invoice = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0(t0) { this.context = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1(t0) { this.context = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure(t0) { this.error = t0; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure(t0, t1) { this.store = t0; this.invoice = t1; }, RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3: function RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3(t0) { this.store = t0; }, taxReport: function(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { var columns, t4, t5, t6, t7, invoice, t8, client, t9, t10, t11, precision, taxes, t12, t13, value, value0, value1, value2, t14, row, taxName, taxRate, t15, skip, t16, value3, t17, credit, _null = null, _s11_ = "invoice_tax", data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, taxRateReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s11_) ? J.$index$asx(reportSettings._map$_map, _s11_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.TaxRateReportFields_40, C.TaxRateReportFields_60, C.TaxRateReportFields_70, C.TaxRateReportFields_20, C.TaxRateReportFields_30, C.TaxRateReportFields_11], type$.JSArray_legacy_TaxRateReportFields), t1 = taxRateReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_TaxRateReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new O.taxReport_closure(), t3).where$1(0, new O.taxReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(invoiceMap.get$keys(invoiceMap)), t2 = userCompany.company, t3 = invoiceMap._map$_map, t4 = J.getInterceptor$asx(t3), t5 = columns._list, t6 = J.getInterceptor$ax(t5), t7 = type$.JSArray_legacy_ReportElement; t1.moveNext$0();) { invoice = t4.$index(t3, t1.get$current(t1)); if (!t2.reportIncludeDrafts && invoice.statusId === "1") continue; if (!invoice.isDeleted && invoice.statusId !== "1") { t8 = invoice.clientId; client = J.$index$asx(clientMap._map$_map, t8); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t8 = staticState.currencyMap; t9 = client.settings.currencyId; t8 = t8._map$_map; t10 = J.getInterceptor$asx(t8); t11 = t10.$index(t8, t9); precision = t11 == null ? _null : t11.precision; taxes = invoice.getTaxes$1(precision == null ? 2 : precision); for (t11 = taxes.get$keys(taxes), t11 = t11.get$iterator(t11), t12 = invoice.id, t13 = invoice.entityType, value = invoice.amount, value0 = invoice.date, value1 = invoice.number, value2 = client.displayName; t11.moveNext$0();) { t14 = t11.get$current(t11); row = H.setRuntimeTypeInfo([], t7); taxName = J.$index$asx(taxes.$index(0, t14), "name"); taxRate = J.$index$asx(taxes.$index(0, t14), "rate"); if (taxRate == null || taxRate === 0) continue; for (t15 = t6.get$iterator(t5), skip = false; t15.moveNext$0();) { t16 = t15.get$current(t15); switch (t16) { case C.TaxRateReportFields_00: value3 = value2; break; case C.TaxRateReportFields_11: value3 = value1; break; case C.TaxRateReportFields_30: value3 = value0; break; case C.TaxRateReportFields_20: value3 = value; break; case C.TaxRateReportFields_40: value3 = taxName; break; case C.TaxRateReportFields_50: value3 = taxRate; break; case C.TaxRateReportFields_60: value3 = J.$index$asx(taxes.$index(0, t14), "amount"); if (value3 == null) value3 = 0; break; case C.TaxRateReportFields_70: value3 = J.$index$asx(taxes.$index(0, t14), "paid"); if (value3 == null) value3 = 0; break; case C.TaxRateReportFields_80: t17 = t10.$index(t8, t9); value3 = t17 == null ? _null : t17.name; if (value3 == null) { t17 = t10.$index(t8, t9); value3 = t17 == null ? _null : t17.name; } break; default: value3 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t16), _null, reportsUIState, userCompany, value3)) skip = true; t16 = J.getInterceptor$(value3); if (t16.get$runtimeType(value3) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t13, t12)); else if (t16.get$runtimeType(value3) === C.Type_double_K1J || t16.get$runtimeType(value3) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t9, _null, t13, t12)); else row.push(new A.ReportStringValue(value3, t13, t12)); } if (!skip) data.push(row); } } } for (t1 = J.get$iterator$ax(creditMap.get$keys(creditMap)), t2 = creditMap._map$_map, t3 = J.getInterceptor$asx(t2); t1.moveNext$0();) { credit = t3.$index(t2, t1.get$current(t1)); if (!credit.isDeleted && credit.statusId !== "1") { t4 = credit.clientId; client = J.$index$asx(clientMap._map$_map, t4); t4 = staticState.currencyMap; t8 = client.settings.currencyId; t4 = t4._map$_map; t9 = J.getInterceptor$asx(t4); t10 = t9.$index(t4, t8); precision = t10 == null ? _null : t10.precision; taxes = credit.getTaxes$1(precision == null ? 2 : precision); for (t10 = taxes.get$keys(taxes), t10 = t10.get$iterator(t10), t11 = credit.id, t12 = credit.entityType, value = credit.amount * -1, value0 = credit.date, value1 = credit.number, value2 = client.displayName; t10.moveNext$0();) { t13 = t10.get$current(t10); row = H.setRuntimeTypeInfo([], t7); taxName = J.$index$asx(taxes.$index(0, t13), "name"); taxRate = J.$index$asx(taxes.$index(0, t13), "rate"); if (taxRate == null || taxRate === 0) continue; for (t14 = t6.get$iterator(t5), skip = false; t14.moveNext$0();) { t15 = t14.get$current(t14); switch (t15) { case C.TaxRateReportFields_00: value3 = value2; break; case C.TaxRateReportFields_11: value3 = value1; break; case C.TaxRateReportFields_30: value3 = value0; break; case C.TaxRateReportFields_20: value3 = value; break; case C.TaxRateReportFields_40: value3 = taxName; break; case C.TaxRateReportFields_50: value3 = taxRate; break; case C.TaxRateReportFields_60: t16 = J.$index$asx(taxes.$index(0, t13), "amount"); value3 = J.$mul$ns(t16 == null ? 0 : t16, -1); break; case C.TaxRateReportFields_70: t16 = J.$index$asx(taxes.$index(0, t13), "paid"); value3 = J.$mul$ns(t16 == null ? 0 : t16, -1); break; case C.TaxRateReportFields_80: t16 = t9.$index(t4, t8); value3 = t16 == null ? _null : t16.name; if (value3 == null) { t16 = t9.$index(t4, t8); value3 = t16 == null ? _null : t16.name; } break; default: value3 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t15), _null, reportsUIState, userCompany, value3)) skip = true; t15 = J.getInterceptor$(value3); if (t15.get$runtimeType(value3) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value3, t12, t11)); else if (t15.get$runtimeType(value3) === C.Type_double_K1J || t15.get$runtimeType(value3) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value3, _null, t8, _null, t12, t11)); else row.push(new A.ReportStringValue(value3, t12, t11)); } if (!skip) data.push(row); } } } t1 = type$.legacy_String; C.JSArray_methods.sort$1(data, new O.taxReport_closure1(taxRateReportSettings, t6.map$1$1(t5, new O.taxReport_closure2(), t1).toList$0(0))); t2 = type$.MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String; t3 = t2._eval$1("ListIterable.E"); t4 = P.List_List$of(new H.MappedListIterable(C.List_dyC, new O.taxReport_closure3(), t2), true, t3); return new A.ReportResult(t6.map$1$1(t5, new O.taxReport_closure4(), t1).toList$0(0), t4, P.List_List$of(new H.MappedListIterable(defaultColumns, new O.taxReport_closure5(), t2), true, t3), data, true); }, TaxRateReportFields: function TaxRateReportFields(t0) { this._invoice_tax_report$_name = t0; }, memoizedInvoiceTaxReport_closure: function memoizedInvoiceTaxReport_closure() { }, taxReport_closure: function taxReport_closure() { }, taxReport_closure0: function taxReport_closure0() { }, taxReport_closure2: function taxReport_closure2() { }, taxReport_closure1: function taxReport_closure1(t0, t1) { this.taxRateReportSettings = t0; this.selectedColumns = t1; }, taxReport_closure3: function taxReport_closure3() { }, taxReport_closure4: function taxReport_closure4() { }, taxReport_closure5: function taxReport_closure5() { }, AccountManagement: function AccountManagement(t0, t1) { this.viewModel = t0; this.key = t1; }, _AccountManagementState: function _AccountManagementState(t0, t1, t2, t3, t4) { var _ = this; _._account_management$_controller = _._account_management$_focusNode = null; _._account_management$_debouncer = t0; _._trackingIdController = t1; _._account_management$_controllers = t2; _.SingleTickerProviderStateMixin__ticker = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _AccountManagementState_didChangeDependencies_closure: function _AccountManagementState_didChangeDependencies_closure(t0) { this.$this = t0; }, _AccountManagementState_didChangeDependencies_closure0: function _AccountManagementState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _AccountManagementState__onChanged_closure: function _AccountManagementState__onChanged_closure(t0) { this.$this = t0; }, _AccountManagementState__onChanged_closure0: function _AccountManagementState__onChanged_closure0(t0, t1) { this.$this = t0; this.company = t1; }, _AccountManagementState_dispose_closure: function _AccountManagementState_dispose_closure(t0) { this.$this = t0; }, _AccountManagementState_build_closure: function _AccountManagementState_build_closure(t0, t1, t2, t3) { var _ = this; _.localization = t0; _.company = t1; _.context = t2; _.viewModel = t3; }, _AccountManagementState_build__closure2: function _AccountManagementState_build__closure2(t0, t1, t2) { this.company = t0; this.module = t1; this.viewModel = t2; }, _AccountManagementState_build___closure: function _AccountManagementState_build___closure(t0) { this._box_0 = t0; }, _AccountManagementState_build_closure0: function _AccountManagementState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure1: function _AccountManagementState_build__closure1(t0) { this.value = t0; }, _AccountManagementState_build_closure1: function _AccountManagementState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure0: function _AccountManagementState_build__closure0(t0) { this.value = t0; }, _AccountManagementState_build_closure2: function _AccountManagementState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _AccountManagementState_build__closure: function _AccountManagementState_build__closure(t0) { this.value = t0; }, _AccountOverview: function _AccountOverview(t0, t1) { this.viewModel = t0; this.key = t1; }, _AccountOverview_build__getDataStats: function _AccountOverview_build__getDataStats(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure: function _AccountOverview_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure0: function _AccountOverview_build_closure0(t0) { this.state = t0; }, _AccountOverview_build_closure1: function _AccountOverview_build_closure1(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure4: function _AccountOverview_build__closure4(t0) { this.value = t0; }, _AccountOverview_build_closure2: function _AccountOverview_build_closure2(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure3: function _AccountOverview_build__closure3(t0) { this.value = t0; }, _AccountOverview_build_closure3: function _AccountOverview_build_closure3(t0, t1) { this.$this = t0; this.company = t1; }, _AccountOverview_build__closure2: function _AccountOverview_build__closure2(t0) { this.value = t0; }, _AccountOverview_build_closure4: function _AccountOverview_build_closure4() { }, _AccountOverview_build_closure5: function _AccountOverview_build_closure5(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _AccountOverview_build__closure1: function _AccountOverview_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure1: function _AccountOverview_build___closure1() { }, _AccountOverview_build___closure2: function _AccountOverview_build___closure2(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure3: function _AccountOverview_build___closure3(t0) { this.context = t0; }, _AccountOverview_build_closure6: function _AccountOverview_build_closure6(t0) { this.store = t0; }, _AccountOverview_build_closure7: function _AccountOverview_build_closure7(t0) { this.store = t0; }, _AccountOverview_build_closure8: function _AccountOverview_build_closure8() { }, _AccountOverview_build_closure9: function _AccountOverview_build_closure9() { }, _AccountOverview_build_closure10: function _AccountOverview_build_closure10(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.localization = t2; _._getDataStats = t3; }, _AccountOverview_build__closure0: function _AccountOverview_build__closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure0: function _AccountOverview_build___closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build_closure11: function _AccountOverview_build_closure11(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.companies = t1; _.localization = t2; _.company = t3; _._getDataStats = t4; _.context = t5; }, _AccountOverview_build__closure: function _AccountOverview_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, _AccountOverview_build___closure: function _AccountOverview_build___closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.reason = t2; }, __AccountManagementState_State_SingleTickerProviderStateMixin: function __AccountManagementState_State_SingleTickerProviderStateMixin() { }, SubscriptionScreen: function SubscriptionScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, SubscriptionScreen_build_closure9: function SubscriptionScreen_build_closure9(t0) { this.store = t0; }, SubscriptionScreen_build_closure7: function SubscriptionScreen_build_closure7(t0) { this.store = t0; }, SubscriptionScreen_build_closure8: function SubscriptionScreen_build_closure8(t0) { this.store = t0; }, SubscriptionScreen_build_closure4: function SubscriptionScreen_build_closure4(t0) { this.store = t0; }, SubscriptionScreen_build_closure5: function SubscriptionScreen_build_closure5(t0) { this.store = t0; }, SubscriptionScreen_build_closure: function SubscriptionScreen_build_closure(t0) { this.store = t0; }, SubscriptionScreen_build_closure0: function SubscriptionScreen_build_closure0(t0) { this.store = t0; }, SubscriptionScreen_build_closure1: function SubscriptionScreen_build_closure1(t0) { this.store = t0; }, SubscriptionScreen_build_closure2: function SubscriptionScreen_build_closure2(t0) { this.store = t0; }, SubscriptionScreen_build_closure3: function SubscriptionScreen_build_closure3(t0) { this.store = t0; }, SubscriptionScreen_build_closure6: function SubscriptionScreen_build_closure6(t0) { this.context = t0; }, KanbanTaskCard$: function(isCorrectOrder, isDragging, isSaving, isSelected, onCancelPressed, onSavePressed, task) { return new O.KanbanTaskCard(task, onSavePressed, onCancelPressed, isCorrectOrder, isSaving, isSelected, null); }, KanbanTaskCard: function KanbanTaskCard(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.task = t0; _.onSavePressed = t1; _.onCancelPressed = t2; _.isCorrectOrder = t3; _.isSaving = t4; _.isSelected = t5; _.key = t6; }, _KanbanTaskCardState: function _KanbanTaskCardState(t0) { var _ = this; _._kanban_card$_isHovered = _._isEditing = false; _._kanban_card$_description = ""; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _KanbanTaskCardState_build_closure: function _KanbanTaskCardState_build_closure(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure1: function _KanbanTaskCardState_build_closure1(t0, t1) { this.$this = t0; this.task = t1; }, _KanbanTaskCardState_build__closure3: function _KanbanTaskCardState_build__closure3(t0, t1) { this.$this = t0; this.task = t1; }, _KanbanTaskCardState_build_closure0: function _KanbanTaskCardState_build_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.localization = t2; }, _KanbanTaskCardState_build__closure4: function _KanbanTaskCardState_build__closure4(t0) { this.$this = t0; }, _KanbanTaskCardState_build___closure: function _KanbanTaskCardState_build___closure(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure8: function _KanbanTaskCardState_build_closure8(t0, t1) { this.$this = t0; this.state = t1; }, _KanbanTaskCardState_build__closure1: function _KanbanTaskCardState_build__closure1(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure9: function _KanbanTaskCardState_build_closure9(t0) { this.$this = t0; }, _KanbanTaskCardState_build__closure0: function _KanbanTaskCardState_build__closure0(t0) { this.$this = t0; }, _KanbanTaskCardState_build_closure2: function _KanbanTaskCardState_build_closure2(t0, t1) { this.state = t0; this.task = t1; }, _KanbanTaskCardState_build_closure3: function _KanbanTaskCardState_build_closure3(t0, t1) { this.context = t0; this.task = t1; }, _KanbanTaskCardState_build_closure4: function _KanbanTaskCardState_build_closure4(t0) { this.task = t0; }, _KanbanTaskCardState_build_closure5: function _KanbanTaskCardState_build_closure5(t0, t1, t2) { this.task = t0; this.client = t1; this.project = t2; }, _KanbanTaskCardState_build_closure6: function _KanbanTaskCardState_build_closure6(t0, t1) { this.localization = t0; this.startLabel = t1; }, _KanbanTaskCardState_build__closure2: function _KanbanTaskCardState_build__closure2(t0) { this.localization = t0; }, _KanbanTaskCardState_build_closure7: function _KanbanTaskCardState_build_closure7(t0, t1, t2, t3) { var _ = this; _.startLabel = t0; _.task = t1; _.localization = t2; _.context = t3; }, _KanbanTaskCardState_build_closure10: function _KanbanTaskCardState_build_closure10(t0) { this.$this = t0; }, _KanbanTaskCardState_build__closure: function _KanbanTaskCardState_build__closure(t0) { this.$this = t0; }, KanbanView: function KanbanView(t0, t1) { this.viewModel = t0; this.key = t1; }, KanbanViewState: function KanbanViewState(t0, t1) { var _ = this; _._boardViewController = t0; _._kanban_view$_tasks = _._newTask = _._statuses = null; _.isDragging = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, KanbanViewState__initBoard_closure: function KanbanViewState__initBoard_closure(t0) { this.state = t0; }, KanbanViewState__initBoard_closure0: function KanbanViewState__initBoard_closure0(t0) { this.state = t0; }, KanbanViewState__initBoard_closure1: function KanbanViewState__initBoard_closure1(t0, t1) { this.$this = t0; this.state = t1; }, KanbanViewState__initBoard_closure2: function KanbanViewState__initBoard_closure2(t0, t1) { this.$this = t0; this.state = t1; }, KanbanViewState__initBoard__closure: function KanbanViewState__initBoard__closure(t0) { this.state = t0; }, KanbanViewState__onBoardChanged_closure: function KanbanViewState__onBoardChanged_closure(t0) { this.$this = t0; }, KanbanViewState_build_closure: function KanbanViewState_build_closure(t0) { this.$this = t0; }, KanbanViewState_build_closure0: function KanbanViewState_build_closure0(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.state = t1; _.filteredStatusIds = t2; _.color = t3; _.context = t4; }, KanbanViewState_build__closure5: function KanbanViewState_build__closure5(t0) { this.$this = t0; }, KanbanViewState_build___closure: function KanbanViewState_build___closure(t0, t1, t2) { this.$this = t0; this.startIndex = t1; this.endIndex = t2; }, KanbanViewState_build__closure: function KanbanViewState_build__closure(t0, t1) { this.$this = t0; this.statusId = t1; }, KanbanViewState_build__closure1: function KanbanViewState_build__closure1(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build__closure0: function KanbanViewState_build__closure0(t0) { this.$this = t0; }, KanbanViewState_build___closure5: function KanbanViewState_build___closure5(t0) { this.$this = t0; }, KanbanViewState_build__closure2: function KanbanViewState_build__closure2(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build___closure4: function KanbanViewState_build___closure4(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build____closure3: function KanbanViewState_build____closure3(t0) { this.status = t0; }, KanbanViewState_build__closure3: function KanbanViewState_build__closure3(t0) { this.$this = t0; }, KanbanViewState_build__closure4: function KanbanViewState_build__closure4(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.status = t2; _.statusId = t3; }, KanbanViewState_build___closure1: function KanbanViewState_build___closure1(t0, t1, t2) { this.$this = t0; this.status = t1; this.task = t2; }, KanbanViewState_build___closure0: function KanbanViewState_build___closure0(t0, t1) { this.$this = t0; this.task = t1; }, KanbanViewState_build____closure2: function KanbanViewState_build____closure2(t0) { this.$this = t0; }, KanbanViewState_build___closure3: function KanbanViewState_build___closure3(t0) { this.$this = t0; }, KanbanViewState_build____closure: function KanbanViewState_build____closure(t0) { this.$this = t0; }, KanbanViewState_build___closure2: function KanbanViewState_build___closure2(t0, t1) { this.$this = t0; this.status = t1; }, KanbanViewState_build____closure0: function KanbanViewState_build____closure0(t0) { this.$this = t0; }, KanbanViewState_build____closure1: function KanbanViewState_build____closure1(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.oldStatusId = t1; _.taskId = t2; _.newStatusId = t3; _.itemIndex = t4; }, TaskStatusListItem: function TaskStatusListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.taskStatus = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TaskStatusListItem_build_closure1: function TaskStatusListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, TaskStatusListItem_build_closure0: function TaskStatusListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, TaskStatusListItem_build_closure: function TaskStatusListItem_build_closure(t0) { this.$this = t0; }, TaxRateScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).taxRateState.toString; t5 = $.$get$memoizedFilteredTaxRateList(); t6 = state.getUISelection$1(C.EntityType_taxRate); t7 = t4.$index(t1, t3).taxRateState.map; t8 = t4.$index(t1, t3).taxRateState.list; t2 = t2.taxRateUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new O.TaxRateScreenVM(t8); }, TaxRateScreenBuilder: function TaxRateScreenBuilder(t0) { this.key = t0; }, TaxRateScreenBuilder_build_closure: function TaxRateScreenBuilder_build_closure() { }, TaxRateScreenVM: function TaxRateScreenVM(t0) { this.taxRateList = t0; }, snackBarCompleter: function(context, message, shouldPop, $T) { var t1 = new P._Future($.Zone__current, $T._eval$1("_Future<0*>")), $navigator = K.Navigator_of(context, false); t1.then$1$1(0, new O.snackBarCompleter_closure(shouldPop, $navigator, message, null, $T), type$.Null).catchError$1(new O.snackBarCompleter_closure0(shouldPop, $navigator)); return new P._AsyncCompleter(t1, $T._eval$1("_AsyncCompleter<0*>")); }, snackBarCompleter_closure: function snackBarCompleter_closure(t0, t1, t2, t3, t4) { var _ = this; _.shouldPop = t0; _.navigator = t1; _.message = t2; _.callback = t3; _.T = t4; }, snackBarCompleter_closure0: function snackBarCompleter_closure0(t0, t1) { this.shouldPop = t0; this.navigator = t1; }, snackBarCompleter__closure: function snackBarCompleter__closure(t0) { this.error = t0; }, Debouncer: function Debouncer(t0, t1) { this.milliseconds = t0; this.sendFirstAction = t1; }, Debouncer_run_closure: function Debouncer_run_closure(t0) { this.action = t0; }, showRefreshDataDialog: function(context, includeStatic) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), store, t1; var $async$showRefreshDataDialog = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), true, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(t1, true, includeStatic, false)); $async$goto = 2; return P._asyncAwait(E.showDialog(false, new O.showRefreshDataDialog_closure(), context, null, true, type$.legacy_AlertDialog), $async$showRefreshDataDialog); case 2: // returning from await. context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$showRefreshDataDialog, $async$completer); }, showErrorDialog: function(clearErrorOnDismiss, context, message) { E.showDialog(true, new O.showErrorDialog_closure(message, clearErrorOnDismiss), context, null, true, type$.legacy_ErrorDialog); }, showMessageDialog: function(context, message, secondaryActions) { E.showDialog(true, new O.showMessageDialog_closure(message, secondaryActions), context, null, true, type$.legacy_MessageDialog); }, confirmCallback: function(askForReason, callback, context, message, skip, typeToConfirm) { var t1, t2, title; if (skip) { callback.call$1(null); return; } t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = message == null; title = t2 ? t1.get$areYouSure() : message; E.showDialog(true, new O.confirmCallback_closure(typeToConfirm, callback, t1, title, askForReason, t2 ? null : t1.get$areYouSure()), context, null, true, type$.legacy_AlertDialog); }, passwordCallback: function(alwaysRequire, callback, context) { var error, t1, t2, exception, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); if (state.get$hasRecentlyEnteredPassword() && !alwaysRequire) { callback.call$2(null, null); return; } else { t1 = state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; J.$index$asx(t2._list, t1).userCompany.user.toString; } t1 = state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.user.oauthProvider.length === 0 || false) { E.showDialog(false, new O.passwordCallback_closure(callback), context, null, true, type$.Null); return; } try { B.GoogleOAuth_signIn(new O.passwordCallback_closure0(alwaysRequire, state, callback, context), true); } catch (exception) { error = H.unwrapException(exception); O.showErrorDialog(false, context, H.S(error)); } }, fieldCallback: function(callback, context, field, maxLength, secondaryActions, title) { E.showDialog(false, new O.fieldCallback_closure(callback, field, title, maxLength, secondaryActions), context, null, true, type$.legacy_AlertDialog); }, cloneToDialog: function(context, invoice) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; E.showDialog(true, new O.cloneToDialog_closure(t1, J.$index$asx(t2._list, t3).userCompany, invoice), context, null, true, type$.legacy_AlertDialog); }, showRefreshDataDialog_closure: function showRefreshDataDialog_closure() { }, showErrorDialog_closure: function showErrorDialog_closure(t0, t1) { this.message = t0; this.clearErrorOnDismiss = t1; }, showMessageDialog_closure: function showMessageDialog_closure(t0, t1) { this.message = t0; this.secondaryActions = t1; }, confirmCallback_closure: function confirmCallback_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.typeToConfirm = t0; _.callback = t1; _.localization = t2; _.title = t3; _.askForReason = t4; _.content = t5; }, confirmCallback_closure__onPressed: function confirmCallback_closure__onPressed(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.typeToConfirm = t1; _.context = t2; _.callback = t3; _.localization = t4; }, confirmCallback__closure: function confirmCallback__closure(t0) { this._box_0 = t0; }, confirmCallback__closure0: function confirmCallback__closure0(t0) { this._onPressed = t0; }, confirmCallback__closure1: function confirmCallback__closure1(t0) { this._box_0 = t0; }, confirmCallback__closure2: function confirmCallback__closure2(t0) { this.context = t0; }, confirmCallback__closure3: function confirmCallback__closure3(t0) { this._onPressed = t0; }, passwordCallback_closure: function passwordCallback_closure(t0) { this.callback = t0; }, passwordCallback_closure0: function passwordCallback_closure0(t0, t1, t2, t3) { var _ = this; _.alwaysRequire = t0; _.state = t1; _.callback = t2; _.context = t3; }, passwordCallback__closure: function passwordCallback__closure(t0, t1) { this.callback = t0; this.idToken = t1; }, PasswordConfirmation: function PasswordConfirmation(t0, t1, t2) { this.callback = t0; this.idToken = t1; this.key = t2; }, _PasswordConfirmationState: function _PasswordConfirmationState(t0) { var _ = this; _._dialogs$_password = null; _._isPasswordObscured = true; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PasswordConfirmationState_build_closure0: function _PasswordConfirmationState_build_closure0(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure: function _PasswordConfirmationState_build_closure(t0) { this.$this = t0; }, _PasswordConfirmationState_build__closure: function _PasswordConfirmationState_build__closure(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure1: function _PasswordConfirmationState_build_closure1(t0) { this.$this = t0; }, _PasswordConfirmationState_build_closure2: function _PasswordConfirmationState_build_closure2(t0) { this.context = t0; }, _PasswordConfirmationState_build_closure3: function _PasswordConfirmationState_build_closure3(t0) { this.$this = t0; }, fieldCallback_closure: function fieldCallback_closure(t0, t1, t2, t3, t4) { var _ = this; _.callback = t0; _.field = t1; _.title = t2; _.maxLength = t3; _.secondaryActions = t4; }, FieldConfirmation: function FieldConfirmation(t0, t1, t2, t3, t4, t5) { var _ = this; _.callback = t0; _.title = t1; _.field = t2; _.maxLength = t3; _.secondaryActions = t4; _.key = t5; }, _FieldConfirmationState: function _FieldConfirmationState(t0) { var _ = this; _._widget = _._dialogs$_field = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FieldConfirmationState_build_closure0: function _FieldConfirmationState_build_closure0(t0) { this.$this = t0; }, _FieldConfirmationState_build_closure: function _FieldConfirmationState_build_closure() { }, _FieldConfirmationState_build_closure1: function _FieldConfirmationState_build_closure1(t0) { this.$this = t0; }, _FieldConfirmationState_build_closure2: function _FieldConfirmationState_build_closure2(t0) { this.context = t0; }, _FieldConfirmationState_build_closure3: function _FieldConfirmationState_build_closure3(t0) { this.$this = t0; }, cloneToDialog_closure: function cloneToDialog_closure(t0, t1, t2) { this.localization = t0; this.userCompany = t1; this.invoice = t2; }, cloneToDialog__closure: function cloneToDialog__closure(t0, t1) { this.invoice = t0; this.context = t1; }, cloneToDialog__closure0: function cloneToDialog__closure0(t0, t1) { this.invoice = t0; this.context = t1; }, cloneToDialog__closure1: function cloneToDialog__closure1(t0, t1) { this.invoice = t0; this.context = t1; }, cloneToDialog__closure2: function cloneToDialog__closure2(t0, t1) { this.invoice = t0; this.context = t1; }, cloneToDialog__closure3: function cloneToDialog__closure3(t0) { this.context = t0; }, memo1: function(func, $A, $R) { var t1 = {}; t1._prevArg = $; t1._prevResult = $; t1.isInitial = true; return new O.memo1_closure(t1, new O.memo1__prevArg_get(t1, $A), new O.memo1__prevResult_get(t1, $R), new O.memo1__prevArg_set(t1, $A), new O.memo1__prevResult_set(t1, $R), func, $A, $R); }, memo2: function(func, $A, $B, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevResult = $; t1.isInitial = true; return new O.memo2_closure(t1, new O.memo2__prevArgA_get(t1, $A), new O.memo2__prevArgB_get(t1, $B), new O.memo2__prevResult_get(t1, $R), new O.memo2__prevArgA_set(t1, $A), new O.memo2__prevArgB_set(t1, $B), new O.memo2__prevResult_set(t1, $R), func, $A, $B, $R); }, memo3: function(func, $A, $B, $C, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevResult = $; t1.isInitial = true; return new O.memo3_closure(t1, new O.memo3__prevArgA_get(t1, $A), new O.memo3__prevArgB_get(t1, $B), new O.memo3__prevArgC_get(t1, $C), new O.memo3__prevResult_get(t1, $R), new O.memo3__prevArgA_set(t1, $A), new O.memo3__prevArgB_set(t1, $B), new O.memo3__prevArgC_set(t1, $C), new O.memo3__prevResult_set(t1, $R), func, $A, $B, $C, $R); }, memo4: function(func, $A, $B, $C, $D, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevResult = $; t1.isInitial = true; return new O.memo4_closure(t1, new O.memo4__prevArgA_get(t1, $A), new O.memo4__prevArgB_get(t1, $B), new O.memo4__prevArgC_get(t1, $C), new O.memo4__prevArgD_get(t1, $D), new O.memo4__prevResult_get(t1, $R), new O.memo4__prevArgA_set(t1, $A), new O.memo4__prevArgB_set(t1, $B), new O.memo4__prevArgC_set(t1, $C), new O.memo4__prevArgD_set(t1, $D), new O.memo4__prevResult_set(t1, $R), func, $A, $B, $C, $D, $R); }, memo5: function(func, $A, $B, $C, $D, $E, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevResult = $; t1.isInitial = true; return new O.memo5_closure(t1, new O.memo5__prevArgA_get(t1, $A), new O.memo5__prevArgB_get(t1, $B), new O.memo5__prevArgC_get(t1, $C), new O.memo5__prevArgD_get(t1, $D), new O.memo5__prevArgE_get(t1, $E), new O.memo5__prevResult_get(t1, $R), new O.memo5__prevArgA_set(t1, $A), new O.memo5__prevArgB_set(t1, $B), new O.memo5__prevArgC_set(t1, $C), new O.memo5__prevArgD_set(t1, $D), new O.memo5__prevArgE_set(t1, $E), new O.memo5__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $R); }, memo6: function(func, $A, $B, $C, $D, $E, $F, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevArgF = $; t1._prevResult = $; t1.isInitial = true; return new O.memo6_closure(t1, new O.memo6__prevArgA_get(t1, $A), new O.memo6__prevArgB_get(t1, $B), new O.memo6__prevArgC_get(t1, $C), new O.memo6__prevArgD_get(t1, $D), new O.memo6__prevArgE_get(t1, $E), new O.memo6__prevArgF_get(t1, $F), new O.memo6__prevResult_get(t1, $R), new O.memo6__prevArgA_set(t1, $A), new O.memo6__prevArgB_set(t1, $B), new O.memo6__prevArgC_set(t1, $C), new O.memo6__prevArgD_set(t1, $D), new O.memo6__prevArgE_set(t1, $E), new O.memo6__prevArgF_set(t1, $F), new O.memo6__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $F, $R); }, memo7: function(func, $A, $B, $C, $D, $E, $F, $G, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevArgF = $; t1._prevArgG = $; t1._prevResult = $; t1.isInitial = true; return new O.memo7_closure(t1, new O.memo7__prevArgA_get(t1, $A), new O.memo7__prevArgB_get(t1, $B), new O.memo7__prevArgC_get(t1, $C), new O.memo7__prevArgD_get(t1, $D), new O.memo7__prevArgE_get(t1, $E), new O.memo7__prevArgF_get(t1, $F), new O.memo7__prevArgG_get(t1, $G), new O.memo7__prevResult_get(t1, $R), new O.memo7__prevArgA_set(t1, $A), new O.memo7__prevArgB_set(t1, $B), new O.memo7__prevArgC_set(t1, $C), new O.memo7__prevArgD_set(t1, $D), new O.memo7__prevArgE_set(t1, $E), new O.memo7__prevArgF_set(t1, $F), new O.memo7__prevArgG_set(t1, $G), new O.memo7__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $F, $G, $R); }, memo8: function(func, $A, $B, $C, $D, $E, $F, $G, $H, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevArgF = $; t1._prevArgG = $; t1._prevArgH = $; t1._prevResult = $; t1.isInitial = true; return new O.memo8_closure(t1, new O.memo8__prevArgA_get(t1, $A), new O.memo8__prevArgB_get(t1, $B), new O.memo8__prevArgC_get(t1, $C), new O.memo8__prevArgD_get(t1, $D), new O.memo8__prevArgE_get(t1, $E), new O.memo8__prevArgF_get(t1, $F), new O.memo8__prevArgG_get(t1, $G), new O.memo8__prevArgH_get(t1, $H), new O.memo8__prevResult_get(t1, $R), new O.memo8__prevArgA_set(t1, $A), new O.memo8__prevArgB_set(t1, $B), new O.memo8__prevArgC_set(t1, $C), new O.memo8__prevArgD_set(t1, $D), new O.memo8__prevArgE_set(t1, $E), new O.memo8__prevArgF_set(t1, $F), new O.memo8__prevArgG_set(t1, $G), new O.memo8__prevArgH_set(t1, $H), new O.memo8__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $F, $G, $H, $R); }, memo9: function(func, $A, $B, $C, $D, $E, $F, $G, $H, I, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevArgF = $; t1._prevArgG = $; t1._prevArgH = $; t1._prevArgI = $; t1._prevResult = $; t1.isInitial = true; return new O.memo9_closure(t1, new O.memo9__prevArgA_get(t1, $A), new O.memo9__prevArgB_get(t1, $B), new O.memo9__prevArgC_get(t1, $C), new O.memo9__prevArgD_get(t1, $D), new O.memo9__prevArgE_get(t1, $E), new O.memo9__prevArgF_get(t1, $F), new O.memo9__prevArgG_get(t1, $G), new O.memo9__prevArgH_get(t1, $H), new O.memo9__prevArgI_get(t1, I), new O.memo9__prevResult_get(t1, $R), new O.memo9__prevArgA_set(t1, $A), new O.memo9__prevArgB_set(t1, $B), new O.memo9__prevArgC_set(t1, $C), new O.memo9__prevArgD_set(t1, $D), new O.memo9__prevArgE_set(t1, $E), new O.memo9__prevArgF_set(t1, $F), new O.memo9__prevArgG_set(t1, $G), new O.memo9__prevArgH_set(t1, $H), new O.memo9__prevArgI_set(t1, I), new O.memo9__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $F, $G, $H, I, $R); }, memo10: function(func, $A, $B, $C, $D, $E, $F, $G, $H, I, $J, $R) { var t1 = {}; t1._prevArgA = $; t1._prevArgB = $; t1._prevArgC = $; t1._prevArgD = $; t1._prevArgE = $; t1._prevArgF = $; t1._prevArgG = $; t1._prevArgH = $; t1._prevArgI = $; t1._prevArgJ = $; t1._prevResult = $; t1.isInitial = true; return new O.memo10_closure(t1, new O.memo10__prevArgA_get(t1, $A), new O.memo10__prevArgB_get(t1, $B), new O.memo10__prevArgC_get(t1, $C), new O.memo10__prevArgD_get(t1, $D), new O.memo10__prevArgE_get(t1, $E), new O.memo10__prevArgF_get(t1, $F), new O.memo10__prevArgG_get(t1, $G), new O.memo10__prevArgH_get(t1, $H), new O.memo10__prevArgI_get(t1, I), new O.memo10__prevArgJ_get(t1, $J), new O.memo10__prevResult_get(t1, $R), new O.memo10__prevArgA_set(t1, $A), new O.memo10__prevArgB_set(t1, $B), new O.memo10__prevArgC_set(t1, $C), new O.memo10__prevArgD_set(t1, $D), new O.memo10__prevArgE_set(t1, $E), new O.memo10__prevArgF_set(t1, $F), new O.memo10__prevArgG_set(t1, $G), new O.memo10__prevArgH_set(t1, $H), new O.memo10__prevArgI_set(t1, I), new O.memo10__prevArgJ_set(t1, $J), new O.memo10__prevResult_set(t1, $R), func, $A, $B, $C, $D, $E, $F, $G, $H, I, $J, $R); }, memo1__prevArg_set: function memo1__prevArg_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo1__prevResult_set: function memo1__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo1__prevArg_get: function memo1__prevArg_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo1__prevResult_get: function memo1__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo1_closure: function memo1_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._box_0 = t0; _._prevArg_get = t1; _._prevResult_get = t2; _._prevArg_set = t3; _._prevResult_set = t4; _.func = t5; _.A = t6; _.R = t7; }, memo2__prevArgA_set: function memo2__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo2__prevArgB_set: function memo2__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo2__prevResult_set: function memo2__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo2__prevArgA_get: function memo2__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo2__prevArgB_get: function memo2__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo2__prevResult_get: function memo2__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo2_closure: function memo2_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevResult_get = t3; _._prevArgA_set = t4; _._prevArgB_set = t5; _._prevResult_set = t6; _.func = t7; _.A = t8; _.B = t9; _.R = t10; }, memo3__prevArgA_set: function memo3__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo3__prevArgB_set: function memo3__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo3__prevArgC_set: function memo3__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo3__prevResult_set: function memo3__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo3__prevArgA_get: function memo3__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo3__prevArgB_get: function memo3__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo3__prevArgC_get: function memo3__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo3__prevResult_get: function memo3__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo3_closure: function memo3_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevResult_get = t4; _._prevArgA_set = t5; _._prevArgB_set = t6; _._prevArgC_set = t7; _._prevResult_set = t8; _.func = t9; _.A = t10; _.B = t11; _.C = t12; _.R = t13; }, memo4__prevArgA_set: function memo4__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo4__prevArgB_set: function memo4__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo4__prevArgC_set: function memo4__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo4__prevArgD_set: function memo4__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo4__prevResult_set: function memo4__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo4__prevArgA_get: function memo4__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo4__prevArgB_get: function memo4__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo4__prevArgC_get: function memo4__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo4__prevArgD_get: function memo4__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo4__prevResult_get: function memo4__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo4_closure: function memo4_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevResult_get = t5; _._prevArgA_set = t6; _._prevArgB_set = t7; _._prevArgC_set = t8; _._prevArgD_set = t9; _._prevResult_set = t10; _.func = t11; _.A = t12; _.B = t13; _.C = t14; _.D = t15; _.R = t16; }, memo5__prevArgA_set: function memo5__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo5__prevArgB_set: function memo5__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo5__prevArgC_set: function memo5__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo5__prevArgD_set: function memo5__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo5__prevArgE_set: function memo5__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo5__prevResult_set: function memo5__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo5__prevArgA_get: function memo5__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo5__prevArgB_get: function memo5__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo5__prevArgC_get: function memo5__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo5__prevArgD_get: function memo5__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo5__prevArgE_get: function memo5__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo5__prevResult_get: function memo5__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo5_closure: function memo5_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevResult_get = t6; _._prevArgA_set = t7; _._prevArgB_set = t8; _._prevArgC_set = t9; _._prevArgD_set = t10; _._prevArgE_set = t11; _._prevResult_set = t12; _.func = t13; _.A = t14; _.B = t15; _.C = t16; _.D = t17; _.E = t18; _.R = t19; }, memo6__prevArgA_set: function memo6__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo6__prevArgB_set: function memo6__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo6__prevArgC_set: function memo6__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo6__prevArgD_set: function memo6__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo6__prevArgE_set: function memo6__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo6__prevArgF_set: function memo6__prevArgF_set(t0, t1) { this._box_0 = t0; this.F = t1; }, memo6__prevResult_set: function memo6__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo6__prevArgA_get: function memo6__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo6__prevArgB_get: function memo6__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo6__prevArgC_get: function memo6__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo6__prevArgD_get: function memo6__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo6__prevArgE_get: function memo6__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo6__prevArgF_get: function memo6__prevArgF_get(t0, t1) { this._box_0 = t0; this.F = t1; }, memo6__prevResult_get: function memo6__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo6_closure: function memo6_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevArgF_get = t6; _._prevResult_get = t7; _._prevArgA_set = t8; _._prevArgB_set = t9; _._prevArgC_set = t10; _._prevArgD_set = t11; _._prevArgE_set = t12; _._prevArgF_set = t13; _._prevResult_set = t14; _.func = t15; _.A = t16; _.B = t17; _.C = t18; _.D = t19; _.E = t20; _.F = t21; _.R = t22; }, memo7__prevArgA_set: function memo7__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo7__prevArgB_set: function memo7__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo7__prevArgC_set: function memo7__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo7__prevArgD_set: function memo7__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo7__prevArgE_set: function memo7__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo7__prevArgF_set: function memo7__prevArgF_set(t0, t1) { this._box_0 = t0; this.F = t1; }, memo7__prevArgG_set: function memo7__prevArgG_set(t0, t1) { this._box_0 = t0; this.G = t1; }, memo7__prevResult_set: function memo7__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo7__prevArgA_get: function memo7__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo7__prevArgB_get: function memo7__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo7__prevArgC_get: function memo7__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo7__prevArgD_get: function memo7__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo7__prevArgE_get: function memo7__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo7__prevArgF_get: function memo7__prevArgF_get(t0, t1) { this._box_0 = t0; this.F = t1; }, memo7__prevArgG_get: function memo7__prevArgG_get(t0, t1) { this._box_0 = t0; this.G = t1; }, memo7__prevResult_get: function memo7__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo7_closure: function memo7_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevArgF_get = t6; _._prevArgG_get = t7; _._prevResult_get = t8; _._prevArgA_set = t9; _._prevArgB_set = t10; _._prevArgC_set = t11; _._prevArgD_set = t12; _._prevArgE_set = t13; _._prevArgF_set = t14; _._prevArgG_set = t15; _._prevResult_set = t16; _.func = t17; _.A = t18; _.B = t19; _.C = t20; _.D = t21; _.E = t22; _.F = t23; _.G = t24; _.R = t25; }, memo8__prevArgA_set: function memo8__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo8__prevArgB_set: function memo8__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo8__prevArgC_set: function memo8__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo8__prevArgD_set: function memo8__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo8__prevArgE_set: function memo8__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo8__prevArgF_set: function memo8__prevArgF_set(t0, t1) { this._box_0 = t0; this.F = t1; }, memo8__prevArgG_set: function memo8__prevArgG_set(t0, t1) { this._box_0 = t0; this.G = t1; }, memo8__prevArgH_set: function memo8__prevArgH_set(t0, t1) { this._box_0 = t0; this.H = t1; }, memo8__prevResult_set: function memo8__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo8__prevArgA_get: function memo8__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo8__prevArgB_get: function memo8__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo8__prevArgC_get: function memo8__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo8__prevArgD_get: function memo8__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo8__prevArgE_get: function memo8__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo8__prevArgF_get: function memo8__prevArgF_get(t0, t1) { this._box_0 = t0; this.F = t1; }, memo8__prevArgG_get: function memo8__prevArgG_get(t0, t1) { this._box_0 = t0; this.G = t1; }, memo8__prevArgH_get: function memo8__prevArgH_get(t0, t1) { this._box_0 = t0; this.H = t1; }, memo8__prevResult_get: function memo8__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo8_closure: function memo8_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevArgF_get = t6; _._prevArgG_get = t7; _._prevArgH_get = t8; _._prevResult_get = t9; _._prevArgA_set = t10; _._prevArgB_set = t11; _._prevArgC_set = t12; _._prevArgD_set = t13; _._prevArgE_set = t14; _._prevArgF_set = t15; _._prevArgG_set = t16; _._prevArgH_set = t17; _._prevResult_set = t18; _.func = t19; _.A = t20; _.B = t21; _.C = t22; _.D = t23; _.E = t24; _.F = t25; _.G = t26; _.H = t27; _.R = t28; }, memo9__prevArgA_set: function memo9__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo9__prevArgB_set: function memo9__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo9__prevArgC_set: function memo9__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo9__prevArgD_set: function memo9__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo9__prevArgE_set: function memo9__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo9__prevArgF_set: function memo9__prevArgF_set(t0, t1) { this._box_0 = t0; this.F = t1; }, memo9__prevArgG_set: function memo9__prevArgG_set(t0, t1) { this._box_0 = t0; this.G = t1; }, memo9__prevArgH_set: function memo9__prevArgH_set(t0, t1) { this._box_0 = t0; this.H = t1; }, memo9__prevArgI_set: function memo9__prevArgI_set(t0, t1) { this._box_0 = t0; this.I = t1; }, memo9__prevResult_set: function memo9__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo9__prevArgA_get: function memo9__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo9__prevArgB_get: function memo9__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo9__prevArgC_get: function memo9__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo9__prevArgD_get: function memo9__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo9__prevArgE_get: function memo9__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo9__prevArgF_get: function memo9__prevArgF_get(t0, t1) { this._box_0 = t0; this.F = t1; }, memo9__prevArgG_get: function memo9__prevArgG_get(t0, t1) { this._box_0 = t0; this.G = t1; }, memo9__prevArgH_get: function memo9__prevArgH_get(t0, t1) { this._box_0 = t0; this.H = t1; }, memo9__prevArgI_get: function memo9__prevArgI_get(t0, t1) { this._box_0 = t0; this.I = t1; }, memo9__prevResult_get: function memo9__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo9_closure: function memo9_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevArgF_get = t6; _._prevArgG_get = t7; _._prevArgH_get = t8; _._prevArgI_get = t9; _._prevResult_get = t10; _._prevArgA_set = t11; _._prevArgB_set = t12; _._prevArgC_set = t13; _._prevArgD_set = t14; _._prevArgE_set = t15; _._prevArgF_set = t16; _._prevArgG_set = t17; _._prevArgH_set = t18; _._prevArgI_set = t19; _._prevResult_set = t20; _.func = t21; _.A = t22; _.B = t23; _.C = t24; _.D = t25; _.E = t26; _.F = t27; _.G = t28; _.H = t29; _.I = t30; _.R = t31; }, memo10__prevArgA_set: function memo10__prevArgA_set(t0, t1) { this._box_0 = t0; this.A = t1; }, memo10__prevArgB_set: function memo10__prevArgB_set(t0, t1) { this._box_0 = t0; this.B = t1; }, memo10__prevArgC_set: function memo10__prevArgC_set(t0, t1) { this._box_0 = t0; this.C = t1; }, memo10__prevArgD_set: function memo10__prevArgD_set(t0, t1) { this._box_0 = t0; this.D = t1; }, memo10__prevArgE_set: function memo10__prevArgE_set(t0, t1) { this._box_0 = t0; this.E = t1; }, memo10__prevArgF_set: function memo10__prevArgF_set(t0, t1) { this._box_0 = t0; this.F = t1; }, memo10__prevArgG_set: function memo10__prevArgG_set(t0, t1) { this._box_0 = t0; this.G = t1; }, memo10__prevArgH_set: function memo10__prevArgH_set(t0, t1) { this._box_0 = t0; this.H = t1; }, memo10__prevArgI_set: function memo10__prevArgI_set(t0, t1) { this._box_0 = t0; this.I = t1; }, memo10__prevArgJ_set: function memo10__prevArgJ_set(t0, t1) { this._box_0 = t0; this.J = t1; }, memo10__prevResult_set: function memo10__prevResult_set(t0, t1) { this._box_0 = t0; this.R = t1; }, memo10__prevArgA_get: function memo10__prevArgA_get(t0, t1) { this._box_0 = t0; this.A = t1; }, memo10__prevArgB_get: function memo10__prevArgB_get(t0, t1) { this._box_0 = t0; this.B = t1; }, memo10__prevArgC_get: function memo10__prevArgC_get(t0, t1) { this._box_0 = t0; this.C = t1; }, memo10__prevArgD_get: function memo10__prevArgD_get(t0, t1) { this._box_0 = t0; this.D = t1; }, memo10__prevArgE_get: function memo10__prevArgE_get(t0, t1) { this._box_0 = t0; this.E = t1; }, memo10__prevArgF_get: function memo10__prevArgF_get(t0, t1) { this._box_0 = t0; this.F = t1; }, memo10__prevArgG_get: function memo10__prevArgG_get(t0, t1) { this._box_0 = t0; this.G = t1; }, memo10__prevArgH_get: function memo10__prevArgH_get(t0, t1) { this._box_0 = t0; this.H = t1; }, memo10__prevArgI_get: function memo10__prevArgI_get(t0, t1) { this._box_0 = t0; this.I = t1; }, memo10__prevArgJ_get: function memo10__prevArgJ_get(t0, t1) { this._box_0 = t0; this.J = t1; }, memo10__prevResult_get: function memo10__prevResult_get(t0, t1) { this._box_0 = t0; this.R = t1; }, memo10_closure: function memo10_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34) { var _ = this; _._box_0 = t0; _._prevArgA_get = t1; _._prevArgB_get = t2; _._prevArgC_get = t3; _._prevArgD_get = t4; _._prevArgE_get = t5; _._prevArgF_get = t6; _._prevArgG_get = t7; _._prevArgH_get = t8; _._prevArgI_get = t9; _._prevArgJ_get = t10; _._prevResult_get = t11; _._prevArgA_set = t12; _._prevArgB_set = t13; _._prevArgC_set = t14; _._prevArgD_set = t15; _._prevArgE_set = t16; _._prevArgF_set = t17; _._prevArgG_set = t18; _._prevArgH_set = t19; _._prevArgI_set = t20; _._prevArgJ_set = t21; _._prevResult_set = t22; _.func = t23; _.A = t24; _.B = t25; _.C = t26; _.D = t27; _.E = t28; _.F = t29; _.G = t30; _.H = t31; _.I = t32; _.J = t33; _.R = t34; }, PackageInfoPlatform: function PackageInfoPlatform() { }, Style__getPlatformStyle: function() { if (P.Uri_base().get$scheme() !== "file") return $.$get$Style_url(); var t1 = P.Uri_base(); if (!C.JSString_methods.endsWith$1(t1.get$path(t1), "/")) return $.$get$Style_url(); if (P._Uri__Uri(null, "a/b", null, null).toFilePath$0() === "a\\b") return $.$get$Style_windows(); return $.$get$Style_posix(); }, Style: function Style() { }, PhotoViewGestureDetector: function PhotoViewGestureDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.onDoubleTap = t0; _.hitDetector = t1; _.onScaleStart = t2; _.onScaleUpdate = t3; _.onScaleEnd = t4; _.onTapUp = t5; _.onTapDown = t6; _.child = t7; _.key = t8; }, PhotoViewGestureDetector_build_closure: function PhotoViewGestureDetector_build_closure(t0) { this.$this = t0; }, PhotoViewGestureDetector_build_closure0: function PhotoViewGestureDetector_build_closure0(t0) { this.$this = t0; }, PhotoViewGestureDetector_build_closure1: function PhotoViewGestureDetector_build_closure1(t0) { this.$this = t0; }, PhotoViewGestureDetector_build_closure2: function PhotoViewGestureDetector_build_closure2(t0) { this.$this = t0; }, PhotoViewGestureDetector_build_closure3: function PhotoViewGestureDetector_build_closure3(t0, t1) { this.$this = t0; this.axis = t1; }, PhotoViewGestureDetector_build_closure4: function PhotoViewGestureDetector_build_closure4(t0) { this.$this = t0; }, PhotoViewGestureRecognizer: function PhotoViewGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.hitDetector = t0; _.validateAxis = t1; _._photo_view_gesture_detector$_pointerLocations = t2; _._photo_view_gesture_detector$_currentFocalPoint = _._initialFocalPoint = null; _.ready = true; _.dragStartBehavior = t3; _.onEnd = _.onUpdate = _.onStart = null; _._scale$_state = t4; _._scale$_lastTransform = null; _.__ScaleGestureRecognizer__currentVerticalSpan = _.__ScaleGestureRecognizer__initialVerticalSpan = _.__ScaleGestureRecognizer__currentHorizontalSpan = _.__ScaleGestureRecognizer__initialHorizontalSpan = _.__ScaleGestureRecognizer__currentSpan = _.__ScaleGestureRecognizer__initialSpan = _.__ScaleGestureRecognizer__currentFocalPoint = _.__ScaleGestureRecognizer__initialFocalPoint = $; _._scale$_currentLine = _._initialLine = null; _.__ScaleGestureRecognizer__pointerQueue = _.__ScaleGestureRecognizer__pointerLocations = $; _._velocityTrackers = t5; _._recognizer$_entries = t6; _._trackedPointers = t7; _._team = null; _.debugOwner = t8; _._kindFilter = t9; _._pointerToKind = t10; }, PhotoViewGestureDetectorScope: function PhotoViewGestureDetectorScope(t0, t1, t2) { this.axis = t0; this.child = t1; this.key = t2; }, LoggingMiddleware: function LoggingMiddleware(t0, t1, t2, t3) { var _ = this; _.logger = t0; _.level = t1; _.formatter = t2; _.$ti = t3; }, LoggingMiddleware_call_closure: function LoggingMiddleware_call_closure(t0, t1, t2) { this.$this = t0; this.store = t1; this.action = t2; }, _StartWithErrorStreamSink: function _StartWithErrorStreamSink(t0, t1, t2) { var _ = this; _._e = t0; _._st = t1; _._start_with_error$_isFirstEventAdded = false; _.$ti = t2; }, _StartWithErrorStreamSink_onListen_closure: function _StartWithErrorStreamSink_onListen_closure(t0, t1) { this.$this = t0; this.sink = t1; }, StartWithErrorStreamTransformer: function StartWithErrorStreamTransformer(t0, t1, t2) { this.error = t0; this.stackTrace = t1; this.$ti = t2; }, HubAdapter: function HubAdapter() { }, EsMessages: function EsMessages() { }, EsShortMessages: function EsShortMessages() { }, Lock_Lock: function() { return new S.BasicLock(); } }, N = {BoardView: function BoardView(t0, t1, t2, t3) { var _ = this; _.lists = t0; _.boardViewController = t1; _.dragDelay = t2; _.key = t3; }, BoardViewState: function BoardViewState(t0, t1, t2, t3, t4) { var _ = this; _.offsetY = _.offsetX = _.dy = _.dyInit = _.dxInit = _.dx = _.draggedListIndex = _.draggedItemIndex = _.draggedItem = null; _.initialY = _.initialX = 0; _.startItemIndex = _.startListIndex = _.height = _.bottomItemY = _.topItemY = _.bottomListY = _.topListY = _.leftListX = _.rightListX = null; _.canDrag = true; _.boardViewController = t0; _.listStates = t1; _.onDropList = _.onDropItem = null; _._isInWidget = _.isScrolling = false; _._middleWidgetKey = t2; _.pointer = null; _.shown = true; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, BoardViewState_moveDown_closure: function BoardViewState_moveDown_closure() { }, BoardViewState_moveUp_closure: function BoardViewState_moveUp_closure() { }, BoardViewState_moveListRight_closure: function BoardViewState_moveListRight_closure(t0, t1) { this.$this = t0; this.tempListIndex = t1; }, BoardViewState_moveListRight__closure: function BoardViewState_moveListRight__closure(t0) { this.$this = t0; }, BoardViewState_moveListRight_closure0: function BoardViewState_moveListRight_closure0() { }, BoardViewState_moveRight_closure: function BoardViewState_moveRight_closure() { }, BoardViewState_moveRight_closure0: function BoardViewState_moveRight_closure0() { }, BoardViewState_moveRight_closure1: function BoardViewState_moveRight_closure1(t0, t1, t2) { this.$this = t0; this.tempListIndex = t1; this.tempItemIndex = t2; }, BoardViewState_moveRight__closure: function BoardViewState_moveRight__closure(t0) { this.$this = t0; }, BoardViewState_moveRight_closure2: function BoardViewState_moveRight_closure2() { }, BoardViewState_moveListLeft_closure: function BoardViewState_moveListLeft_closure(t0, t1) { this.$this = t0; this.tempListIndex = t1; }, BoardViewState_moveListLeft__closure: function BoardViewState_moveListLeft__closure(t0) { this.$this = t0; }, BoardViewState_moveListLeft_closure0: function BoardViewState_moveListLeft_closure0() { }, BoardViewState_moveLeft_closure: function BoardViewState_moveLeft_closure() { }, BoardViewState_moveLeft_closure0: function BoardViewState_moveLeft_closure0() { }, BoardViewState_moveLeft_closure1: function BoardViewState_moveLeft_closure1(t0, t1, t2) { this.$this = t0; this.tempListIndex = t1; this.tempItemIndex = t2; }, BoardViewState_moveLeft__closure: function BoardViewState_moveLeft__closure(t0) { this.$this = t0; }, BoardViewState_moveLeft_closure2: function BoardViewState_moveLeft_closure2() { }, BoardViewState_build_closure: function BoardViewState_build_closure(t0) { this.$this = t0; }, BoardViewState_build__closure5: function BoardViewState_build__closure5(t0, t1) { this.$this = t0; this._shown = t1; }, BoardViewState_build_closure0: function BoardViewState_build_closure0(t0) { this.$this = t0; }, BoardViewState_build_closure1: function BoardViewState_build_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, BoardViewState_build__closure4: function BoardViewState_build__closure4() { }, BoardViewState_build_closure2: function BoardViewState_build_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, BoardViewState_build__closure3: function BoardViewState_build__closure3() { }, BoardViewState_build_closure3: function BoardViewState_build_closure3(t0) { this.$this = t0; }, BoardViewState_build__closure2: function BoardViewState_build__closure2() { }, BoardViewState_build_closure5: function BoardViewState_build_closure5(t0) { this.$this = t0; }, BoardViewState_build__closure0: function BoardViewState_build__closure0() { }, BoardViewState_build_closure4: function BoardViewState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, BoardViewState_build__closure1: function BoardViewState_build__closure1() { }, BoardViewState_build_closure6: function BoardViewState_build_closure6(t0, t1) { this.$this = t0; this.context = t1; }, BoardViewState_build__closure: function BoardViewState_build__closure() { }, BoardViewState_run_closure: function BoardViewState_run_closure() { }, _BoardViewState_State_AutomaticKeepAliveClientMixin: function _BoardViewState_State_AutomaticKeepAliveClientMixin() { }, TimeRangeTickProvider: function TimeRangeTickProvider() { }, YearTimeStepper: function YearTimeStepper(t0, t1) { this._year_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, MutableSeries$: function(series, $D) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t1 = series.id, t2 = series.displayName; if (t2 == null) t2 = t1; t3 = series.seriesCategory; t4 = series.seriesColor; t5 = series.data; t6 = series.keyFn; t7 = series.domainFn; t8 = series.domainFormatterFn; t9 = series.domainLowerBoundFn; t10 = series.domainUpperBoundFn; t11 = series.measureFn; t12 = series.measureFormatterFn; t13 = series.measureLowerBoundFn; t14 = series.measureUpperBoundFn; t15 = series.measureOffsetFn; t16 = series.areaColorFn; t17 = series.colorFn; t18 = series.dashPatternFn; t19 = series.fillColorFn; t20 = series.fillPatternFn; t21 = series.patternColorFn; t22 = series.insideLabelStyleAccessorFn; t23 = series.outsideLabelStyleAccessorFn; t23 = new N.MutableSeries(t1, t2, false, t3, t4, $, $, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t11, t13, t14, t16, t17, t18, t19, t20, t21, series.radiusPxFn, series.strokeWidthPxFn, null, t22, t23, new F.SeriesAttributes(P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), null, null, $D._eval$1("MutableSeries<0>")); t23.MutableSeries$1(series, $D); return t23; }, MutableSeries: function MutableSeries(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35) { var _ = this; _.id = t0; _.displayName = t1; _.overlaySeries = t2; _.seriesCategory = t3; _.seriesColor = t4; _.__MutableSeries_seriesIndex = t5; _.__MutableSeries_seriesMeasureTotal = t6; _.data = t7; _.MutableSeries_keyFn = t8; _.domainFn = t9; _.domainFormatterFn = t10; _.domainLowerBoundFn = t11; _.domainUpperBoundFn = t12; _.measureFn = t13; _.measureFormatterFn = t14; _.measureLowerBoundFn = t15; _.measureUpperBoundFn = t16; _.measureOffsetFn = t17; _.rawMeasureFn = t18; _.rawMeasureLowerBoundFn = t19; _.rawMeasureUpperBoundFn = t20; _.areaColorFn = t21; _.colorFn = t22; _.dashPatternFn = t23; _.fillColorFn = t24; _.fillPatternFn = t25; _.patternColorFn = t26; _.radiusPxFn = t27; _.strokeWidthPxFn = t28; _.labelAccessorFn = t29; _.MutableSeries_insideLabelStyleAccessorFn = t30; _.MutableSeries_outsideLabelStyleAccessorFn = t31; _._attrs = t32; _.measureAxis = t33; _.domainAxis = t34; _.keyFn = null; _.$ti = t35; }, MutableSeries_closure: function MutableSeries_closure(t0) { this.$this = t0; }, ImmutableSeries: function ImmutableSeries() { }, IdentityConverter: function IdentityConverter(t0) { this.$ti = t0; }, GestureListener$: function(onDragEnd, onDragStart, onDragUpdate, onHover, onLongPress, onTap, onTapTest) { var t1 = onTapTest == null ? $.$get$GestureListener_defaultTapTest() : onTapTest, t2 = $.$get$GestureListener_defaultTapCancel(); return new N.GestureListener(t1, t2, onLongPress, onTap, onDragStart, onDragUpdate, onDragEnd); }, GestureListener: function GestureListener(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onTapTest = t0; _.onTapCancel = t1; _.onLongPress = t2; _.onTap = t3; _.onDragStart = t4; _.onDragUpdate = t5; _.onDragEnd = t6; }, GestureListener_defaultTapCancel_closure: function GestureListener_defaultTapCancel_closure() { }, GestureListener_defaultTapTest_closure: function GestureListener_defaultTapTest_closure() { }, CupertinoSwitch: function CupertinoSwitch(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.trackColor = t3; _.dragStartBehavior = t4; _.key = t5; }, _CupertinoSwitchState: function _CupertinoSwitchState(t0, t1) { var _ = this; _.___CupertinoSwitchState__reaction = _.___CupertinoSwitchState__reactionController = _.___CupertinoSwitchState_position = _.___CupertinoSwitchState__positionController = _.___CupertinoSwitchState__drag = _.___CupertinoSwitchState__tap = $; _.needsPositionAnimation = false; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CupertinoSwitchState__handleDragEnd_closure: function _CupertinoSwitchState__handleDragEnd_closure(t0) { this.$this = t0; }, _CupertinoSwitchRenderObjectWidget: function _CupertinoSwitchRenderObjectWidget(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.value = t0; _.activeColor = t1; _.trackColor = t2; _.onChanged = t3; _.state = t4; _.textDirection = t5; _.key = t6; }, _RenderCupertinoSwitch: function _RenderCupertinoSwitch(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._switch0$_state = t0; _._switch0$_value = t1; _._switch0$_activeColor = t2; _._switch0$_trackColor = t3; _._onChanged = t4; _._switch0$_textDirection = t5; _._clipRRectLayer = null; _._additionalConstraints = t6; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderCupertinoSwitch_paint_closure: function _RenderCupertinoSwitch_paint_closure(t0) { this.thumbBounds = t0; }, __CupertinoSwitchState_State_TickerProviderStateMixin: function __CupertinoSwitchState_State_TickerProviderStateMixin() { }, BindingBase: function BindingBase() { }, BindingBase_lockEvents_closure: function BindingBase_lockEvents_closure(t0) { this.$this = t0; }, BindingBase_registerBoolServiceExtension_closure: function BindingBase_registerBoolServiceExtension_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.setter = t1; _.name = t2; _.getter = t3; }, BindingBase_registerNumericServiceExtension_closure: function BindingBase_registerNumericServiceExtension_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.name = t1; _.setter = t2; _.getter = t3; }, BindingBase_registerServiceExtension_closure: function BindingBase_registerServiceExtension_closure(t0, t1) { this.methodName = t0; this.callback = t1; }, BindingBase_registerServiceExtension_closure__result_set: function BindingBase_registerServiceExtension_closure__result_set(t0) { this._box_0 = t0; }, BindingBase_registerServiceExtension__closure: function BindingBase_registerServiceExtension__closure() { }, BindingBase_registerServiceExtension_closure__result_get: function BindingBase_registerServiceExtension_closure__result_get(t0) { this._box_0 = t0; }, FlutterErrorDetailsForPointerEventDispatcher$: function(context, $event, exception, hitTestEntry, informationCollector, library, stack) { return new N.FlutterErrorDetailsForPointerEventDispatcher(exception, stack, library, context, informationCollector, false); }, _Resampler: function _Resampler(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._resamplers = t0; _._binding2$_frameCallbackScheduled = false; _._frameTime = t1; _._frameTimeAge = t2; _._lastSampleTime = t3; _._lastEventTime = t4; _._handlePointerEvent = t5; _._handleSampleTimeChanged = t6; _._samplingInterval = t7; _._binding2$_timer = null; }, GestureBinding: function GestureBinding() { }, GestureBinding_dispatchEvent_closure: function GestureBinding_dispatchEvent_closure(t0) { this.event = t0; }, GestureBinding_dispatchEvent_closure0: function GestureBinding_dispatchEvent_closure0(t0, t1) { this.event = t0; this.entry = t1; }, FlutterErrorDetailsForPointerEventDispatcher: function FlutterErrorDetailsForPointerEventDispatcher(t0, t1, t2, t3, t4, t5) { var _ = this; _.exception = t0; _.stack = t1; _.library = t2; _.context = t3; _.informationCollector = t4; _.silent = t5; }, TapGestureRecognizer$: function(debugOwner) { var t1 = type$.int; return new N.TapGestureRecognizer(C.Duration_100000, 18, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), debugOwner, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, TapDownDetails: function TapDownDetails(t0, t1, t2) { this.globalPosition = t0; this.kind = t1; this.localPosition = t2; }, TapUpDetails: function TapUpDetails(t0, t1) { this.globalPosition = t0; this.kind = t1; }, BaseTapGestureRecognizer: function BaseTapGestureRecognizer() { }, TapGestureRecognizer: function TapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onTertiaryTapCancel = _.onTertiaryTapUp = _.onTertiaryTapDown = _.onSecondaryTapCancel = _.onSecondaryTapUp = _.onSecondaryTapDown = _.onSecondaryTap = _.onTapCancel = _.onTap = _.onTapUp = _.onTapDown = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _.state = t2; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, TapGestureRecognizer_handleTapDown_closure: function TapGestureRecognizer_handleTapDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapDown_closure0: function TapGestureRecognizer_handleTapDown_closure0(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapUp_closure: function TapGestureRecognizer_handleTapUp_closure(t0, t1) { this.$this = t0; this.details = t1; }, TapGestureRecognizer_handleTapUp_closure0: function TapGestureRecognizer_handleTapUp_closure0(t0) { this.$this = t0; }, ExpandIcon: function ExpandIcon(t0, t1, t2, t3) { var _ = this; _.isExpanded = t0; _.onPressed = t1; _.padding = t2; _.key = t3; }, _ExpandIconState: function _ExpandIconState(t0, t1) { var _ = this; _.___ExpandIconState__iconTurns = _.___ExpandIconState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __ExpandIconState_State_SingleTickerProviderStateMixin: function __ExpandIconState_State_SingleTickerProviderStateMixin() { }, RefreshIndicator$: function(child, onRefresh) { return new N.RefreshIndicator(child, onRefresh, null); }, _RefreshIndicatorMode: function _RefreshIndicatorMode(t0) { this._refresh_indicator$_name = t0; }, RefreshIndicatorTriggerMode: function RefreshIndicatorTriggerMode(t0) { this._refresh_indicator$_name = t0; }, RefreshIndicator: function RefreshIndicator(t0, t1, t2) { this.child = t0; this.onRefresh = t1; this.key = t2; }, RefreshIndicatorState: function RefreshIndicatorState(t0, t1) { var _ = this; _.__RefreshIndicatorState__valueColor = _.__RefreshIndicatorState__value = _.__RefreshIndicatorState__scaleFactor = _.__RefreshIndicatorState__positionFactor = _.__RefreshIndicatorState__scaleController = _.__RefreshIndicatorState__positionController = $; _._dragOffset = _._isIndicatorAtTop = _._refresh_indicator$_mode = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, RefreshIndicatorState__handleScrollNotification_closure: function RefreshIndicatorState__handleScrollNotification_closure(t0) { this.$this = t0; }, RefreshIndicatorState__dismiss_closure: function RefreshIndicatorState__dismiss_closure(t0, t1) { this.$this = t0; this.newMode = t1; }, RefreshIndicatorState__dismiss_closure0: function RefreshIndicatorState__dismiss_closure0(t0) { this.$this = t0; }, RefreshIndicatorState__show_closure: function RefreshIndicatorState__show_closure(t0, t1) { this.$this = t0; this.completer = t1; }, RefreshIndicatorState__show__closure: function RefreshIndicatorState__show__closure(t0) { this.$this = t0; }, RefreshIndicatorState__show__closure0: function RefreshIndicatorState__show__closure0(t0, t1) { this.$this = t0; this.completer = t1; }, RefreshIndicatorState_build_closure: function RefreshIndicatorState_build_closure(t0, t1) { this.$this = t0; this.showIndeterminateIndicator = t1; }, _RefreshIndicatorState_State_TickerProviderStateMixin: function _RefreshIndicatorState_State_TickerProviderStateMixin() { }, SnackBarClosedReason: function SnackBarClosedReason(t0) { this._snack_bar$_name = t0; }, Switch$: function(activeColor, activeThumbImage, activeTrackColor, autofocus, inactiveThumbColor, inactiveThumbImage, inactiveTrackColor, materialTapTargetSize, onChanged, value) { return new N.Switch(value, onChanged, activeColor, activeTrackColor, inactiveThumbColor, inactiveTrackColor, activeThumbImage, inactiveThumbImage, materialTapTargetSize, C._SwitchType_0, false, null); }, _SwitchType: function _SwitchType(t0) { this._switch$_name = t0; }, Switch: function Switch(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.activeTrackColor = t3; _.inactiveThumbColor = t4; _.inactiveTrackColor = t5; _.activeThumbImage = t6; _.inactiveThumbImage = t7; _.materialTapTargetSize = t8; _._switchType = t9; _.autofocus = t10; _.key = t11; }, _MaterialSwitch: function _MaterialSwitch(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.activeTrackColor = t3; _.inactiveThumbColor = t4; _.inactiveTrackColor = t5; _.activeThumbImage = t6; _.onActiveThumbImageError = t7; _.inactiveThumbImage = t8; _.onInactiveThumbImageError = t9; _.thumbColor = t10; _.trackColor = t11; _.dragStartBehavior = t12; _.mouseCursor = t13; _.focusColor = t14; _.hoverColor = t15; _.overlayColor = t16; _.splashRadius = t17; _.focusNode = t18; _.autofocus = t19; _.size = t20; _.key = t21; }, _MaterialSwitchState: function _MaterialSwitchState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._switch$_painter = t0; _._needsPositionAnimation = false; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, _MaterialSwitchState__widgetThumbColor_closure: function _MaterialSwitchState__widgetThumbColor_closure(t0) { this.$this = t0; }, _MaterialSwitchState__defaultThumbColor_closure: function _MaterialSwitchState__defaultThumbColor_closure(t0, t1) { this.isDark = t0; this.theme = t1; }, _MaterialSwitchState__widgetTrackColor_closure: function _MaterialSwitchState__widgetTrackColor_closure(t0) { this.$this = t0; }, _MaterialSwitchState__defaultTrackColor_closure: function _MaterialSwitchState__defaultTrackColor_closure(t0, t1) { this.$this = t0; this.isDark = t1; }, _MaterialSwitchState__handleDragEnd_closure: function _MaterialSwitchState__handleDragEnd_closure(t0) { this.$this = t0; }, _MaterialSwitchState_build_closure: function _MaterialSwitchState_build_closure(t0, t1) { this.$this = t0; this.theme = t1; }, _SwitchPainter: function _SwitchPainter(t0) { var _ = this; _._cachedThumbPainter = _._cachedThumbErrorListener = _._cachedThumbImage = _._cachedThumbColor = _._trackInnerLength = _._isInteractive = _._surfaceColor = _._switch$_textDirection = _._switch$_configuration = _._inactiveTrackColor = _._activeTrackColor = _._onInactiveThumbImageError = _._inactiveThumbImage = _._onActiveThumbImageError = _._activeThumbImage = null; _._isPainting = false; _._isHovered = _._isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._activeColor = _._reactionHoverFade = _._reactionFocusFade = _._toggleable$_reaction = _._toggleable$_position = null; _.ChangeNotifier__listeners = t0; }, __MaterialSwitchState_State_TickerProviderStateMixin: function __MaterialSwitchState_State_TickerProviderStateMixin() { }, __MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin: function __MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, PaintingBinding: function PaintingBinding() { }, _SystemFontsNotifier: function _SystemFontsNotifier(t0) { this._systemFontsCallbacks = t0; }, Tolerance: function Tolerance(t0, t1) { this.distance = t0; this.velocity = t1; }, RendererBinding: function RendererBinding() { }, RendererBinding__scheduleMouseTrackerUpdate_closure: function RendererBinding__scheduleMouseTrackerUpdate_closure(t0) { this.$this = t0; }, flipScrollDirection: function(direction) { switch (direction) { case C.ScrollDirection_0: return C.ScrollDirection_0; case C.ScrollDirection_1: return C.ScrollDirection_2; case C.ScrollDirection_2: return C.ScrollDirection_1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, ScrollDirection: function ScrollDirection(t0) { this._viewport_offset$_name = t0; }, ViewportOffset: function ViewportOffset() { }, WrapAlignment: function WrapAlignment(t0) { this._wrap$_name = t0; }, WrapCrossAlignment: function WrapCrossAlignment(t0) { this._wrap$_name = t0; }, _RunMetrics: function _RunMetrics(t0, t1, t2) { this.mainAxisExtent = t0; this.crossAxisExtent = t1; this.childCount = t2; }, WrapParentData: function WrapParentData(t0, t1, t2) { var _ = this; _._runIndex = 0; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, RenderWrap: function RenderWrap(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._wrap$_direction = t0; _._wrap$_alignment = t1; _._spacing = t2; _._runAlignment = t3; _._runSpacing = t4; _._crossAxisAlignment = t5; _._wrap$_textDirection = t6; _._wrap$_verticalDirection = t7; _._wrap$_clipBehavior = t8; _._wrap$_hasVisualOverflow = false; _._clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t9; _.ContainerRenderObjectMixin__firstChild = t10; _.ContainerRenderObjectMixin__lastChild = t11; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderWrap_RenderBox_ContainerRenderObjectMixin: function _RenderWrap_RenderBox_ContainerRenderObjectMixin() { }, _RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, timeDilation: function(value) { var t1; if ($._timeDilation === value) return; t1 = $.SchedulerBinding__instance; if (t1 != null) t1.resetEpoch$0(); $._timeDilation = value; }, SchedulerBinding__taskSorter: function(e1, e2) { return -C.JSInt_methods.compareTo$1(e1.priority, e2.priority); }, defaultSchedulingStrategy: function(priority, scheduler) { var t1 = scheduler.SchedulerBinding__transientCallbacks; if (t1.get$length(t1) > 0) return priority >= 100000; return true; }, _TaskEntry: function _TaskEntry(t0, t1, t2, t3, t4, t5) { var _ = this; _.task = t0; _.priority = t1; _.debugLabel = t2; _.flow = t3; _.___TaskEntry_debugStack = $; _.completer = t4; _.$ti = t5; }, _TaskEntry_run_closure: function _TaskEntry_run_closure(t0) { this.$this = t0; }, _FrameCallbackEntry: function _FrameCallbackEntry(t0) { this.callback = t0; this.debugStack = null; }, SchedulerPhase: function SchedulerPhase(t0, t1) { this.index = t0; this._binding$_name = t1; }, SchedulerBinding: function SchedulerBinding() { }, SchedulerBinding_endOfFrame_closure: function SchedulerBinding_endOfFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_scheduleWarmUpFrame_closure: function SchedulerBinding_scheduleWarmUpFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_scheduleWarmUpFrame_closure0: function SchedulerBinding_scheduleWarmUpFrame_closure0(t0, t1) { this.$this = t0; this.hadScheduledFrame = t1; }, SchedulerBinding_scheduleWarmUpFrame_closure1: function SchedulerBinding_scheduleWarmUpFrame_closure1(t0) { this.$this = t0; }, SchedulerBinding__handleDrawFrame_closure: function SchedulerBinding__handleDrawFrame_closure(t0) { this.$this = t0; }, SchedulerBinding_handleBeginFrame_closure: function SchedulerBinding_handleBeginFrame_closure(t0) { this.$this = t0; }, SemanticsBinding: function SemanticsBinding() { }, ServicesBinding__parseLicenses: function(rawLicenses) { var t1, t2, _i, license, t3, split, _licenseSeparator = "\n" + C.JSString_methods.$mul("-", 80) + "\n", result = H.setRuntimeTypeInfo([], type$.JSArray_LicenseEntry), licenses = rawLicenses.split(_licenseSeparator); for (t1 = licenses.length, t2 = type$.JSArray_String, _i = 0; _i < t1; ++_i) { license = licenses[_i]; t3 = J.getInterceptor$asx(license); split = t3.indexOf$1(license, "\n\n"); if (split >= 0) result.push(new F.LicenseEntryWithLineBreaks(H.setRuntimeTypeInfo(t3.substring$2(license, 0, split).split("\n"), t2), t3.substring$1(license, split + 2))); else result.push(new F.LicenseEntryWithLineBreaks(C.List_empty1, license)); } return result; }, ServicesBinding__parseAppLifecycleMessage: function(message) { switch (message) { case "AppLifecycleState.paused": return C.AppLifecycleState_2; case "AppLifecycleState.resumed": return C.AppLifecycleState_0; case "AppLifecycleState.inactive": return C.AppLifecycleState_1; case "AppLifecycleState.detached": return C.AppLifecycleState_3; } return null; }, ServicesBinding: function ServicesBinding() { }, ServicesBinding__addLicenses_closure: function ServicesBinding__addLicenses_closure(t0) { this.rawLicenses = t0; }, ServicesBinding__addLicenses_closure0: function ServicesBinding__addLicenses_closure0(t0, t1) { this.parsedLicenses = t0; this.rawLicenses = t1; }, _DefaultBinaryMessenger: function _DefaultBinaryMessenger() { }, _DefaultBinaryMessenger__sendPlatformMessage_closure: function _DefaultBinaryMessenger__sendPlatformMessage_closure(t0) { this.completer = t0; }, _DefaultBinaryMessenger_setMessageHandler_closure: function _DefaultBinaryMessenger_setMessageHandler_closure(t0, t1) { this.$this = t0; this.channel = t1; }, TextInputConfiguration$: function(actionLabel, autocorrect, autofillConfiguration, enableSuggestions, inputAction, inputType, keyboardAppearance, obscureText, readOnly, smartDashesType, smartQuotesType, textCapitalization) { return new N.TextInputConfiguration(inputType, readOnly, obscureText, autocorrect, autofillConfiguration, smartDashesType, smartQuotesType, true, actionLabel, inputAction, textCapitalization, keyboardAppearance); }, _toTextAffinity: function(affinity) { switch (affinity) { case "TextAffinity.downstream": return C.TextAffinity_1; case "TextAffinity.upstream": return C.TextAffinity_0; } return null; }, TextEditingValue_TextEditingValue$fromJSON: function(encoded) { var t4, t5, t6, t1 = J.getInterceptor$asx(encoded), t2 = H._asStringS(t1.$index(encoded, "text")), t3 = H._asIntQ(t1.$index(encoded, "selectionBase")); if (t3 == null) t3 = -1; t4 = H._asIntQ(t1.$index(encoded, "selectionExtent")); if (t4 == null) t4 = -1; t5 = N._toTextAffinity(H._asStringQ(t1.$index(encoded, "selectionAffinity"))); if (t5 == null) t5 = C.TextAffinity_1; t6 = H._asBoolQ(t1.$index(encoded, "selectionIsDirectional")); t3 = X.TextSelection$(t5, t3, t4, t6 === true); t4 = H._asIntQ(t1.$index(encoded, "composingBase")); if (t4 == null) t4 = -1; t1 = H._asIntQ(t1.$index(encoded, "composingExtent")); return new N.TextEditingValue(t2, t3, new P.TextRange(t4, t1 == null ? -1 : t1)); }, TextInputConnection$_: function(_client) { var t1 = $.TextInputConnection__nextId; $.TextInputConnection__nextId = t1 + 1; return new N.TextInputConnection(t1, _client); }, _toTextInputAction: function(action) { switch (action) { case "TextInputAction.none": return C.TextInputAction_0; case "TextInputAction.unspecified": return C.TextInputAction_1; case "TextInputAction.go": return C.TextInputAction_3; case "TextInputAction.search": return C.TextInputAction_4; case "TextInputAction.send": return C.TextInputAction_5; case "TextInputAction.next": return C.TextInputAction_6; case "TextInputAction.previous": return C.TextInputAction_7; case "TextInputAction.continue_action": return C.TextInputAction_8; case "TextInputAction.join": return C.TextInputAction_9; case "TextInputAction.route": return C.TextInputAction_10; case "TextInputAction.emergencyCall": return C.TextInputAction_11; case "TextInputAction.done": return C.TextInputAction_2; case "TextInputAction.newline": return C.TextInputAction_12; } throw H.wrapException(U.FlutterError$fromParts(H.setRuntimeTypeInfo([U.ErrorSummary$("Unknown text input action: " + H.S(action))], type$.JSArray_DiagnosticsNode))); }, _toTextCursorAction: function(state) { switch (state) { case "FloatingCursorDragState.start": return C.FloatingCursorDragState_0; case "FloatingCursorDragState.update": return C.FloatingCursorDragState_1; case "FloatingCursorDragState.end": return C.FloatingCursorDragState_2; } throw H.wrapException(U.FlutterError$fromParts(H.setRuntimeTypeInfo([U.ErrorSummary$("Unknown text cursor action: " + H.S(state))], type$.JSArray_DiagnosticsNode))); }, SmartDashesType: function SmartDashesType(t0, t1) { this.index = t0; this._text_input$_name = t1; }, SmartQuotesType: function SmartQuotesType(t0, t1) { this.index = t0; this._text_input$_name = t1; }, TextInputType: function TextInputType(t0, t1, t2) { this.index = t0; this.signed = t1; this.decimal = t2; }, TextInputAction: function TextInputAction(t0) { this._text_input$_name = t0; }, TextCapitalization0: function TextCapitalization0() { }, TextInputConfiguration: function TextInputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.inputType = t0; _.readOnly = t1; _.obscureText = t2; _.autocorrect = t3; _.autofillConfiguration = t4; _.smartDashesType = t5; _.smartQuotesType = t6; _.enableSuggestions = t7; _.actionLabel = t8; _.inputAction = t9; _.textCapitalization = t10; _.keyboardAppearance = t11; }, FloatingCursorDragState: function FloatingCursorDragState(t0) { this._text_input$_name = t0; }, TextEditingValue: function TextEditingValue(t0, t1, t2) { this.text = t0; this.selection = t1; this.composing = t2; }, SelectionChangedCause: function SelectionChangedCause(t0) { this._text_input$_name = t0; }, TextSelectionDelegate: function TextSelectionDelegate() { }, TextInputConnection: function TextInputConnection(t0, t1) { var _ = this; _._cachedCaretRect = _._cachedRect = _._cachedTransform = _._cachedSize = null; _._text_input$_id = t0; _._text_input$_client = t1; }, TextInput: function TextInput() { var _ = this; _.__TextInput__channel = $; _._currentConnection = null; _.__TextInput__currentConfiguration = $; _._hidePending = false; }, TextInput__scheduleHide_closure: function TextInput__scheduleHide_closure(t0) { this.$this = t0; }, runApp: function(app) { var t1; if ($.WidgetsBinding__instance == null) N.WidgetsFlutterBinding$(); t1 = $.WidgetsBinding__instance; t1.scheduleAttachRootWidget$1(app); t1.scheduleWarmUpFrame$0(); }, RenderObjectToWidgetElement$: function(widget, $T) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.RenderObjectToWidgetElement(t1, widget, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2), $T._eval$1("RenderObjectToWidgetElement<0>")); }, WidgetsFlutterBinding$: function() { var _null = null, t1 = H.setRuntimeTypeInfo([], type$.JSArray_WidgetsBindingObserver), t2 = $.Zone__current, t3 = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_List_FrameTiming), t4 = P.List_List$filled(7, _null, false, type$.nullable__TaskEntry_dynamic), t5 = type$.int, t6 = type$.JSArray_of_void_Function_Duration; t5 = new N.WidgetsFlutterBinding(_null, t1, true, new P._AsyncCompleter(new P._Future(t2, type$._Future_void), type$._AsyncCompleter_void), false, _null, false, false, _null, $, _null, false, 0, false, $, _null, new N._SystemFontsNotifier(P.LinkedHashSet_LinkedHashSet$_empty(type$.void_Function)), $, $, t3, _null, N.binding__defaultSchedulingStrategy$closure(), new Y.HeapPriorityQueue(N.binding_SchedulerBinding__taskSorter$closure(), t4, type$.HeapPriorityQueue__TaskEntry_dynamic), false, 0, P.LinkedHashMap_LinkedHashMap$_empty(t5, type$._FrameCallbackEntry), P.HashSet_HashSet(t5), H.setRuntimeTypeInfo([], t6), H.setRuntimeTypeInfo([], t6), _null, false, C.SchedulerPhase_0, true, false, _null, C.Duration_0, C.Duration_0, _null, 0, _null, false, P.ListQueue$(_null, type$.PointerEvent), new O.PointerRouter(P.LinkedHashMap_LinkedHashMap$_empty(t5, type$.Map_of_void_Function_PointerEvent_and_nullable_Matrix4), P.LinkedHashMap_LinkedHashMap$_empty(type$.void_Function_PointerEvent, type$.nullable_Matrix4)), new D.GestureArenaManager(P.LinkedHashMap_LinkedHashMap$_empty(t5, type$._GestureArena)), new G.PointerSignalResolver(), P.LinkedHashMap_LinkedHashMap$_empty(t5, type$.HitTestResult), $, false, C.Duration_m38000); t5.BindingBase$0(); return t5; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure(t0, t1, t2) { this.$this = t0; this.hitTestResult = t1; this.event = t2; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure(t0) { this.$this = t0; }, WidgetsBindingObserver: function WidgetsBindingObserver() { }, WidgetsBinding: function WidgetsBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(t0) { this.$this = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure_markElementsDirty: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure_markElementsDirty(t0) { this.className = t0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, WidgetsBinding_scheduleAttachRootWidget_closure: function WidgetsBinding_scheduleAttachRootWidget_closure(t0, t1) { this.$this = t0; this.rootWidget = t1; }, RenderObjectToWidgetAdapter: function RenderObjectToWidgetAdapter(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.container = t1; _.debugShortDescription = t2; _.key = t3; _.$ti = t4; }, RenderObjectToWidgetAdapter_attachToRenderTree_closure: function RenderObjectToWidgetAdapter_attachToRenderTree_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.owner = t2; }, RenderObjectToWidgetAdapter_attachToRenderTree_closure0: function RenderObjectToWidgetAdapter_attachToRenderTree_closure0(t0) { this._box_0 = t0; }, RenderObjectToWidgetElement: function RenderObjectToWidgetElement(t0, t1, t2, t3, t4) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._newWidget = _._child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t4; }, WidgetsFlutterBinding: function WidgetsFlutterBinding(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48) { var _ = this; _.WidgetsBinding__buildOwner = t0; _.WidgetsBinding__observers = t1; _.WidgetsBinding__needToReportFirstFrame = t2; _.WidgetsBinding__firstFrameCompleter = t3; _.WidgetsBinding_debugBuildingDirtyElements = t4; _.WidgetsBinding__renderViewElement = t5; _.WidgetsBinding__readyToProduceFrames = t6; _.RendererBinding__debugIsRenderViewInitialized = t7; _.RendererBinding__mouseTracker = t8; _.RendererBinding___RendererBinding__pipelineOwner = t9; _.RendererBinding__semanticsHandle = t10; _.RendererBinding__debugMouseTrackerUpdateScheduled = t11; _.RendererBinding__firstFrameDeferredCount = t12; _.RendererBinding__firstFrameSent = t13; _.SemanticsBinding___SemanticsBinding__accessibilityFeatures = t14; _.PaintingBinding__imageCache = t15; _.PaintingBinding__systemFonts = t16; _.ServicesBinding___ServicesBinding__defaultBinaryMessenger = t17; _.ServicesBinding___ServicesBinding__restorationManager = t18; _.SchedulerBinding__timingsCallbacks = t19; _.SchedulerBinding__lifecycleState = t20; _.SchedulerBinding_schedulingStrategy = t21; _.SchedulerBinding__taskQueue = t22; _.SchedulerBinding__hasRequestedAnEventLoopCallback = t23; _.SchedulerBinding__nextFrameCallbackId = t24; _.SchedulerBinding__transientCallbacks = t25; _.SchedulerBinding__removedIds = t26; _.SchedulerBinding__persistentCallbacks = t27; _.SchedulerBinding__postFrameCallbacks = t28; _.SchedulerBinding__nextFrameCompleter = t29; _.SchedulerBinding__hasScheduledFrame = t30; _.SchedulerBinding__schedulerPhase = t31; _.SchedulerBinding__framesEnabled = t32; _.SchedulerBinding__warmUpFrame = t33; _.SchedulerBinding__firstRawTimeStampInEpoch = t34; _.SchedulerBinding__epochStart = t35; _.SchedulerBinding__lastRawTimeStamp = t36; _.SchedulerBinding__currentFrameTimeStamp = t37; _.SchedulerBinding__debugFrameNumber = t38; _.SchedulerBinding__debugBanner = t39; _.SchedulerBinding__rescheduleAfterWarmUpFrame = t40; _.GestureBinding__pendingPointerEvents = t41; _.GestureBinding_pointerRouter = t42; _.GestureBinding_gestureArena = t43; _.GestureBinding_pointerSignalResolver = t44; _.GestureBinding__hitTests = t45; _.GestureBinding___GestureBinding__resampler = t46; _.GestureBinding_resamplingEnabled = t47; _.GestureBinding_samplingOffset = t48; _._lockCount = 0; }, _WidgetsFlutterBinding_BindingBase_GestureBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding() { }, _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding: function _WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding() { }, DualTransitionBuilder: function DualTransitionBuilder(t0, t1, t2, t3, t4) { var _ = this; _.animation = t0; _.forwardBuilder = t1; _.reverseBuilder = t2; _.child = t3; _.key = t4; }, _DualTransitionBuilderState: function _DualTransitionBuilderState(t0, t1, t2) { var _ = this; _.___DualTransitionBuilderState__effectiveAnimationStatus = $; _._forwardAnimation = t0; _._reverseAnimation = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, UniqueKey$: function() { return new N.UniqueKey(); }, GlobalKey_GlobalKey: function(debugLabel, $T) { return new N.LabeledGlobalKey(debugLabel, $T._eval$1("LabeledGlobalKey<0>")); }, _InactiveElements__deactivateRecursively: function(element) { element.deactivate$0(); element.visitChildren$1(N.framework__InactiveElements__deactivateRecursively$closure()); }, Element__sort: function(a, b) { var t1; if (a.get$_depth() < b.get$_depth()) return -1; if (b.get$_depth() < a.get$_depth()) return 1; t1 = b._dirty; if (t1 && !a._dirty) return -1; if (a._dirty && !t1) return 1; return 0; }, Element__activateRecursively: function(element) { element.activate$0(); element.visitChildren$1(N.framework_Element__activateRecursively$closure()); }, _ElementDiagnosticableTreeNode$: function($name, stateful, style, value) { return new N._ElementDiagnosticableTreeNode(stateful, value, $name, true, true, null, style); }, ErrorWidget__defaultErrorWidgetBuilder: function(details) { var exception = details.exception, t1 = exception instanceof U.FlutterError ? exception : null; return new N.ErrorWidget("", t1, new N.UniqueKey()); }, StatefulElement$: function(widget) { var t1 = widget.createState$0(), t2 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t2; t2 = new N.StatefulElement(t1, t2, widget, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); t1._framework$_element = t2; t1._widget = widget; return t2; }, InheritedElement$: function(widget) { var t1 = type$.Element_2, t2 = P.HashMap_HashMap(null, null, null, t1, type$.nullable_Object), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new N.InheritedElement(t2, t3, widget, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, SingleChildRenderObjectElement$: function(widget) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.SingleChildRenderObjectElement(t1, widget, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); }, MultiChildRenderObjectElement$: function(widget) { var t1 = type$.Element_2, t2 = P.HashSet_HashSet(t1), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new N.MultiChildRenderObjectElement(t2, t3, widget, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, _debugReportException: function(context, exception, stack, informationCollector) { var details = new U.FlutterErrorDetails(exception, stack, "widgets library", context, informationCollector, false); U.FlutterError_reportError(details); return details; }, UniqueKey: function UniqueKey() { }, ObjectKey: function ObjectKey(t0) { this.value = t0; }, GlobalKey: function GlobalKey() { }, LabeledGlobalKey: function LabeledGlobalKey(t0, t1) { this._debugLabel = t0; this.$ti = t1; }, GlobalObjectKey: function GlobalObjectKey(t0, t1) { this.value = t0; this.$ti = t1; }, Widget: function Widget() { }, StatelessWidget: function StatelessWidget() { }, StatefulWidget: function StatefulWidget() { }, _StateLifecycle: function _StateLifecycle(t0) { this._framework$_name = t0; }, State: function State() { }, ProxyWidget: function ProxyWidget() { }, ParentDataWidget: function ParentDataWidget() { }, InheritedWidget: function InheritedWidget() { }, RenderObjectWidget: function RenderObjectWidget() { }, LeafRenderObjectWidget: function LeafRenderObjectWidget() { }, SingleChildRenderObjectWidget: function SingleChildRenderObjectWidget() { }, MultiChildRenderObjectWidget: function MultiChildRenderObjectWidget() { }, _ElementLifecycle: function _ElementLifecycle(t0) { this._framework$_name = t0; }, _InactiveElements: function _InactiveElements(t0) { this._locked = false; this._framework$_elements = t0; }, _InactiveElements__unmount_closure: function _InactiveElements__unmount_closure(t0, t1) { this.$this = t0; this.element = t1; }, BuildOwner: function BuildOwner(t0, t1, t2, t3, t4, t5) { var _ = this; _.onBuildScheduled = null; _._inactiveElements = t0; _._dirtyElements = t1; _._scheduledFlushDirtyElements = false; _._dirtyElementsNeedsResorting = null; _.focusManager = t2; _._debugStateLockLevel = 0; _._debugBuilding = false; _._debugElementsThatWillNeedToBeRebuiltDueToGlobalKeyShenanigans = _._debugCurrentBuildTarget = null; _._globalKeyRegistry = t3; _._debugIllFatedElements = t4; _._debugGlobalKeyReservations = t5; }, BuildOwner_buildScope_closure: function BuildOwner_buildScope_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, BuildOwner_finalizeTree_closure: function BuildOwner_finalizeTree_closure(t0) { this.$this = t0; }, Element0: function Element0() { }, Element_renderObject_visit: function Element_renderObject_visit(t0) { this._box_0 = t0; }, Element_updateSlotForChild_visit: function Element_updateSlotForChild_visit(t0) { this.newSlot = t0; }, Element__updateDepth_closure: function Element__updateDepth_closure(t0) { this.expectedDepth = t0; }, Element_detachRenderObject_closure: function Element_detachRenderObject_closure() { }, Element_attachRenderObject_closure: function Element_attachRenderObject_closure(t0) { this.newSlot = t0; }, Element_debugDescribeChildren_closure: function Element_debugDescribeChildren_closure(t0) { this.children = t0; }, _ElementDiagnosticableTreeNode: function _ElementDiagnosticableTreeNode(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.stateful = t0; _.value = t1; _._cachedBuilder = null; _.name = t2; _.showSeparator = t3; _.showName = t4; _.linePrefix = t5; _.style = t6; }, ErrorWidget: function ErrorWidget(t0, t1, t2) { this.message = t0; this._flutterError = t1; this.key = t2; }, ComponentElement: function ComponentElement() { }, ComponentElement_performRebuild_closure: function ComponentElement_performRebuild_closure(t0) { this.$this = t0; }, ComponentElement_performRebuild_closure0: function ComponentElement_performRebuild_closure0(t0) { this.$this = t0; }, StatelessElement: function StatelessElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = _._framework$_child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, StatefulElement: function StatefulElement(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _._didChangeDependencies = false; _._framework$_parent = _._framework$_child = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, ProxyElement: function ProxyElement() { }, ParentDataElement: function ParentDataElement(t0, t1, t2, t3, t4) { var _ = this; _._framework$_parent = _._framework$_child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t4; }, ParentDataElement__applyParentData_applyParentDataToChild: function ParentDataElement__applyParentData_applyParentDataToChild(t0) { this.widget = t0; }, InheritedElement: function InheritedElement(t0, t1, t2, t3, t4) { var _ = this; _._dependents = t0; _._framework$_parent = _._framework$_child = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, RenderObjectElement: function RenderObjectElement() { }, RenderObjectElement_updateChildren_replaceWithNullIfForgotten: function RenderObjectElement_updateChildren_replaceWithNullIfForgotten(t0) { this.forgottenChildren = t0; }, RenderObjectElement_updateChildren_slotFor: function RenderObjectElement_updateChildren_slotFor(t0) { this.slots = t0; }, RootRenderObjectElement: function RootRenderObjectElement() { }, LeafRenderObjectElement: function LeafRenderObjectElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, SingleChildRenderObjectElement: function SingleChildRenderObjectElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._framework$_child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, MultiChildRenderObjectElement: function MultiChildRenderObjectElement(t0, t1, t2, t3, t4) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, MultiChildRenderObjectElement_children_closure: function MultiChildRenderObjectElement_children_closure(t0) { this.$this = t0; }, DebugCreator: function DebugCreator(t0) { this.element = t0; }, IndexedSlot: function IndexedSlot(t0, t1, t2) { this.value = t0; this.index = t1; this.$ti = t2; }, _NullElement: function _NullElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _NullWidget: function _NullWidget(t0) { this.key = t0; }, _State_Object_Diagnosticable: function _State_Object_Diagnosticable() { }, ValueListenableBuilder$: function(builder, valueListenable, $T) { return new N.ValueListenableBuilder(valueListenable, builder, null, $T._eval$1("ValueListenableBuilder<0>")); }, ValueListenableBuilder: function ValueListenableBuilder(t0, t1, t2, t3) { var _ = this; _.valueListenable = t0; _.builder = t1; _.key = t2; _.$ti = t3; }, _ValueListenableBuilderState: function _ValueListenableBuilderState(t0, t1) { var _ = this; _.___ValueListenableBuilderState_value = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _ValueListenableBuilderState__valueChanged_closure: function _ValueListenableBuilderState__valueChanged_closure(t0) { this.$this = t0; }, _ElementLocationStatsTracker$: function() { var t1 = type$.JSArray__LocationCount; return new N._ElementLocationStatsTracker(H.setRuntimeTypeInfo([], type$.JSArray_nullable__LocationCount), H.setRuntimeTypeInfo([], t1), H.setRuntimeTypeInfo([], t1)); }, transformDebugCreator: function(properties) { return N.transformDebugCreator$body(properties); }, transformDebugCreator$body: function($async$properties) { return P._makeSyncStarIterable(function() { var properties = $async$properties; var $async$goto = 0, $async$handler = 1, $async$currentError, errorSummary, foundStackTrace, pending, t1, t2; return function $async$transformDebugCreator($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start pending = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); t1 = J.getInterceptor$ax(properties); t2 = t1.get$iterator(properties); while (true) { if (!t2.moveNext$0()) { errorSummary = null; break; } errorSummary = t2.get$current(t2); if (errorSummary instanceof U.ErrorSummary) break; } t1 = t1.get$iterator(properties), foundStackTrace = false; case 2: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 3; break; } t2 = t1.get$current(t1); if (!foundStackTrace && t2 instanceof U.DiagnosticsStackTrace) foundStackTrace = true; $async$goto = t2 instanceof K.DiagnosticsDebugCreator ? 4 : 6; break; case 4: // then t2 = N._parseDiagnosticsNode(t2, errorSummary); t2.toString; $async$goto = 7; return P._IterationMarker_yieldStar(t2); case 7: // after yield // goto join $async$goto = 5; break; case 6: // else $async$goto = foundStackTrace ? 8 : 10; break; case 8: // then pending.push(t2); // goto join $async$goto = 9; break; case 10: // else $async$goto = 11; return t2; case 11: // after yield case 9: // join case 5: // join // goto for condition $async$goto = 2; break; case 3: // after for $async$goto = 12; return P._IterationMarker_yieldStar(pending); case 12: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, _parseDiagnosticsNode: function(node, errorSummary) { var t1; if (!(node instanceof K.DiagnosticsDebugCreator)) return null; t1 = node.get$value(node); t1.toString; return N._describeRelevantUserCode(type$.DebugCreator._as(t1).element, errorSummary); }, _describeRelevantUserCode: function(element, errorSummary) { var nodes, t1; if (!$.$get$WidgetInspectorService__instance().isWidgetCreationTracked$0()) return H.setRuntimeTypeInfo([U.ErrorDescription$("Widget creation tracking is currently disabled. Enabling it enables improved error messages. It can be enabled by passing `--track-widget-creation` to `flutter run` or `flutter test`."), U.ErrorSpacer$()], type$.JSArray_DiagnosticsNode); nodes = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); t1 = new N._describeRelevantUserCode_processElement(new N._describeRelevantUserCode_isOverflowError(errorSummary), nodes); if (t1.call$1(element)) element.visitAncestorElements$1(t1); return nodes; }, _WidgetInspectorService: function _WidgetInspectorService(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.WidgetInspectorService__serializeRing = t0; _.WidgetInspectorService__serializeRingIndex = t1; _.WidgetInspectorService_selection = t2; _.WidgetInspectorService_selectionChangedCallback = t3; _.WidgetInspectorService__groups = t4; _.WidgetInspectorService__idToReferenceData = t5; _.WidgetInspectorService__objectToId = t6; _.WidgetInspectorService__nextId = t7; _.WidgetInspectorService__pubRootDirectories = t8; _.WidgetInspectorService__trackRebuildDirtyWidgets = t9; _.WidgetInspectorService__trackRepaintWidgets = t10; _.WidgetInspectorService__structuredExceptionHandler = t11; _.WidgetInspectorService___WidgetInspectorService__registerServiceExtensionCallback = t12; _.WidgetInspectorService__errorsSinceReload = t13; _.WidgetInspectorService__widgetCreationTracked = t14; _.WidgetInspectorService___WidgetInspectorService__frameStart = t15; _.WidgetInspectorService__rebuildStats = t16; _.WidgetInspectorService__repaintStats = t17; }, WidgetInspectorService: function WidgetInspectorService() { }, _ElementLocationStatsTracker: function _ElementLocationStatsTracker(t0, t1, t2) { this._stats = t0; this.active = t1; this.newLocations = t2; }, InspectorSelection: function InspectorSelection(t0) { var _ = this; _._candidates = t0; _._widget_inspector$_index = 0; _._widget_inspector$_currentElement = _._widget_inspector$_current = null; }, _describeRelevantUserCode_isOverflowError: function _describeRelevantUserCode_isOverflowError(t0) { this.errorSummary = t0; }, _describeRelevantUserCode_processElement: function _describeRelevantUserCode_processElement(t0, t1) { this.isOverflowError = t0; this.nodes = t1; }, expectQuotedString: function(scanner) { var string; scanner.expect$2$name($.$get$_quotedString(), "quoted string"); string = scanner.get$lastMatch().$index(0, 0); return H.stringReplaceAllFuncUnchecked(C.JSString_methods.substring$2(string, 1, string.length - 1), $.$get$_quotedPair(), new N.expectQuotedString_closure(), null); }, expectQuotedString_closure: function expectQuotedString_closure() { }, GatewayTokenListResponse: function GatewayTokenListResponse() { }, GatewayTokenItemResponse: function GatewayTokenItemResponse() { }, GatewayTokenEntity: function GatewayTokenEntity() { }, GatewayTokenMetaEntity: function GatewayTokenMetaEntity() { }, _$GatewayTokenListResponseSerializer: function _$GatewayTokenListResponseSerializer() { }, _$GatewayTokenItemResponseSerializer: function _$GatewayTokenItemResponseSerializer() { }, _$GatewayTokenEntitySerializer: function _$GatewayTokenEntitySerializer() { }, _$GatewayTokenMetaEntitySerializer: function _$GatewayTokenMetaEntitySerializer() { }, _$GatewayTokenListResponse: function _$GatewayTokenListResponse(t0) { this.data = t0; this._gateway_token_model$__hashCode = null; }, GatewayTokenListResponseBuilder: function GatewayTokenListResponseBuilder() { this._gateway_token_model$_data = this._gateway_token_model$_$v = null; }, _$GatewayTokenItemResponse: function _$GatewayTokenItemResponse(t0) { this.data = t0; this._gateway_token_model$__hashCode = null; }, GatewayTokenItemResponseBuilder: function GatewayTokenItemResponseBuilder() { this._gateway_token_model$_data = this._gateway_token_model$_$v = null; }, _$GatewayTokenEntity: function _$GatewayTokenEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.token = t0; _.customerReference = t1; _.companyGatewayId = t2; _.gatewayTypeId = t3; _.isDefault = t4; _.meta = t5; _.isChanged = t6; _.createdAt = t7; _.updatedAt = t8; _.archivedAt = t9; _.isDeleted = t10; _.createdUserId = t11; _.assignedUserId = t12; _.id = t13; _._gateway_token_model$__hashCode = null; }, GatewayTokenEntityBuilder: function GatewayTokenEntityBuilder() { var _ = this; _._gateway_token_model$_id = _._gateway_token_model$_assignedUserId = _._gateway_token_model$_createdUserId = _._gateway_token_model$_isDeleted = _._gateway_token_model$_archivedAt = _._gateway_token_model$_updatedAt = _._gateway_token_model$_createdAt = _._gateway_token_model$_isChanged = _._meta = _._gateway_token_model$_isDefault = _._gatewayTypeId = _._gateway_token_model$_companyGatewayId = _._customerReference = _._gateway_token_model$_token = _._gateway_token_model$_$v = null; }, _$GatewayTokenMetaEntity: function _$GatewayTokenMetaEntity(t0, t1, t2, t3, t4) { var _ = this; _.brand = t0; _.last4 = t1; _.type = t2; _.expMonth = t3; _.expYear = t4; _._gateway_token_model$__hashCode = null; }, GatewayTokenMetaEntityBuilder: function GatewayTokenMetaEntityBuilder() { var _ = this; _._expYear = _._expMonth = _._gateway_token_model$_type = _._last4 = _._brand = _._gateway_token_model$_$v = null; }, _GatewayTokenEntity_Object_BaseEntity: function _GatewayTokenEntity_Object_BaseEntity() { }, _GatewayTokenEntity_Object_BaseEntity_SelectableEntity: function _GatewayTokenEntity_Object_BaseEntity_SelectableEntity() { }, RecurringInvoiceRepository: function RecurringInvoiceRepository() { }, companyGatewayUIReducer: function(state, action) { var t1; state.toString; t1 = new U.CompanyGatewayUIStateBuilder(); t1._company_gateway_state$_$v = state; new N.companyGatewayUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing: function(companyGateway, action) { return O.CompanyGatewayEntity_CompanyGatewayEntity(null, null); }, _updateEditing: function(companyGateway, action) { return action.get$companyGateway(); }, _filterCompanyGatewaysByCustom1: function(companyGatewayListState, action) { var t1 = companyGatewayListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByCustom1_closure(action)); else return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByCustom1_closure0(action)); }, _filterCompanyGatewaysByCustom2: function(companyGatewayListState, action) { var t1 = companyGatewayListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByCustom2_closure(action)); else return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByCustom2_closure0(action)); }, _filterCompanyGatewaysByState: function(companyGatewayListState, action) { var t1 = companyGatewayListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByState_closure(action)); else return companyGatewayListState.rebuild$1(new N._filterCompanyGatewaysByState_closure0(action)); }, _filterCompanyGateways: function(companyGatewayListState, action) { return companyGatewayListState.rebuild$1(new N._filterCompanyGateways_closure(action, companyGatewayListState)); }, _sortCompanyGateways: function(companyGatewayListState, action) { return companyGatewayListState.rebuild$1(new N._sortCompanyGateways_closure(action)); }, _startListMultiselect0: function(productListState, action) { return productListState.rebuild$1(new N._startListMultiselect_closure7()); }, _addToListMultiselect0: function(productListState, action) { return productListState.rebuild$1(new N._addToListMultiselect_closure7(action)); }, _removeFromListMultiselect0: function(productListState, action) { return productListState.rebuild$1(new N._removeFromListMultiselect_closure7(action)); }, _clearListMultiselect0: function(productListState, action) { return productListState.rebuild$1(new N._clearListMultiselect_closure7()); }, _archiveCompanyGatewaySuccess: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._archiveCompanyGatewaySuccess_closure(action)); }, _deleteCompanyGatewaySuccess: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._deleteCompanyGatewaySuccess_closure(action)); }, _restoreCompanyGatewaySuccess: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._restoreCompanyGatewaySuccess_closure(action)); }, _addCompanyGateway: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._addCompanyGateway_closure(action)); }, _updateCompanyGateway: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._updateCompanyGateway_closure(action)); }, _setLoadedCompanyGateway: function(companyGatewayState, action) { return companyGatewayState.rebuild$1(new N._setLoadedCompanyGateway_closure(action)); }, _setLoadedCompany0: function(companyGatewayState, action) { var state = companyGatewayState.rebuild$1(new N._setLoadedCompany_closure1(action)); return state.rebuild$1(new N._setLoadedCompany_closure2(state)); }, _setLoadedCompanyGateways: function(companyGatewayState, action) { var state = companyGatewayState.rebuild$1(new N._setLoadedCompanyGateways_closure(action)); return state.rebuild$1(new N._setLoadedCompanyGateways_closure0(state)); }, companyGatewayUIReducer_closure: function companyGatewayUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure59: function forceSelectedReducer_closure59() { }, forceSelectedReducer_closure60: function forceSelectedReducer_closure60() { }, forceSelectedReducer_closure61: function forceSelectedReducer_closure61() { }, forceSelectedReducer_closure62: function forceSelectedReducer_closure62() { }, forceSelectedReducer_closure63: function forceSelectedReducer_closure63() { }, forceSelectedReducer_closure64: function forceSelectedReducer_closure64() { }, forceSelectedReducer_closure65: function forceSelectedReducer_closure65() { }, forceSelectedReducer_closure66: function forceSelectedReducer_closure66() { }, selectedIdReducer_closure119: function selectedIdReducer_closure119() { }, selectedIdReducer_closure120: function selectedIdReducer_closure120() { }, selectedIdReducer_closure121: function selectedIdReducer_closure121() { }, selectedIdReducer_closure122: function selectedIdReducer_closure122() { }, selectedIdReducer_closure123: function selectedIdReducer_closure123() { }, selectedIdReducer_closure124: function selectedIdReducer_closure124() { }, selectedIdReducer_closure125: function selectedIdReducer_closure125() { }, selectedIdReducer_closure126: function selectedIdReducer_closure126() { }, selectedIdReducer_closure127: function selectedIdReducer_closure127() { }, selectedIdReducer_closure128: function selectedIdReducer_closure128() { }, selectedIdReducer_closure129: function selectedIdReducer_closure129() { }, selectedIdReducer_closure130: function selectedIdReducer_closure130() { }, selectedIdReducer_closure131: function selectedIdReducer_closure131() { }, selectedIdReducer_closure132: function selectedIdReducer_closure132() { }, selectedIdReducer_closure133: function selectedIdReducer_closure133() { }, editingReducer_closure35: function editingReducer_closure35() { }, editingReducer_closure36: function editingReducer_closure36() { }, editingReducer_closure37: function editingReducer_closure37() { }, editingReducer_closure38: function editingReducer_closure38() { }, editingReducer__closure13: function editingReducer__closure13() { }, _filterCompanyGatewaysByCustom1_closure: function _filterCompanyGatewaysByCustom1_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom1_closure0: function _filterCompanyGatewaysByCustom1_closure0(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom2_closure: function _filterCompanyGatewaysByCustom2_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByCustom2_closure0: function _filterCompanyGatewaysByCustom2_closure0(t0) { this.action = t0; }, _filterCompanyGatewaysByState_closure: function _filterCompanyGatewaysByState_closure(t0) { this.action = t0; }, _filterCompanyGatewaysByState_closure0: function _filterCompanyGatewaysByState_closure0(t0) { this.action = t0; }, _filterCompanyGateways_closure: function _filterCompanyGateways_closure(t0, t1) { this.action = t0; this.companyGatewayListState = t1; }, _sortCompanyGateways_closure: function _sortCompanyGateways_closure(t0) { this.action = t0; }, _startListMultiselect_closure7: function _startListMultiselect_closure7() { }, _addToListMultiselect_closure7: function _addToListMultiselect_closure7(t0) { this.action = t0; }, _removeFromListMultiselect_closure7: function _removeFromListMultiselect_closure7(t0) { this.action = t0; }, _clearListMultiselect_closure7: function _clearListMultiselect_closure7() { }, _archiveCompanyGatewaySuccess_closure: function _archiveCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _deleteCompanyGatewaySuccess_closure: function _deleteCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _restoreCompanyGatewaySuccess_closure: function _restoreCompanyGatewaySuccess_closure(t0) { this.action = t0; }, _addCompanyGateway_closure: function _addCompanyGateway_closure(t0) { this.action = t0; }, _addCompanyGateway__closure: function _addCompanyGateway__closure() { }, _updateCompanyGateway_closure: function _updateCompanyGateway_closure(t0) { this.action = t0; }, _updateCompanyGateway__closure: function _updateCompanyGateway__closure() { }, _setLoadedCompanyGateway_closure: function _setLoadedCompanyGateway_closure(t0) { this.action = t0; }, _setLoadedCompanyGateway__closure: function _setLoadedCompanyGateway__closure() { }, _setLoadedCompany_closure1: function _setLoadedCompany_closure1(t0) { this.action = t0; }, _setLoadedCompany__closure1: function _setLoadedCompany__closure1() { }, _setLoadedCompany__closure2: function _setLoadedCompany__closure2() { }, _setLoadedCompany_closure2: function _setLoadedCompany_closure2(t0) { this.state = t0; }, _setLoadedCompanyGateways_closure: function _setLoadedCompanyGateways_closure(t0) { this.action = t0; }, _setLoadedCompanyGateways__closure: function _setLoadedCompanyGateways__closure() { }, _setLoadedCompanyGateways__closure0: function _setLoadedCompanyGateways__closure0() { }, _setLoadedCompanyGateways_closure0: function _setLoadedCompanyGateways_closure0(t0) { this.state = t0; }, handleDesignAction: function(context, designs, action) { var store, state, t1, design, t2, designIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (designs.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); design = type$.legacy_DesignEntity._as(C.JSArray_methods.get$first(designs)); t2 = H._arrayInstanceType(designs)._eval$1("MappedListIterable<1,String*>"); designIds = P.List_List$of(new H.MappedListIterable(designs, new N.handleDesignAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, design, _null); break; case C.EntityAction_clone: M.createEntity(_null, _null, context, design.get$clone(design), _null, false); break; case C.EntityAction_newInvoice: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null).rebuild$1(new N.handleDesignAction_closure0(design)), design, false); break; case C.EntityAction_newRecurringInvoice: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_recurringInvoice, _null, state, _null).rebuild$1(new N.handleDesignAction_closure1(design)), design, false); break; case C.EntityAction_newQuote: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_quote, _null, state, _null).rebuild$1(new N.handleDesignAction_closure2(design)), design, false); break; case C.EntityAction_newCredit: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_credit, _null, state, _null).rebuild$1(new N.handleDesignAction_closure3(design)), design, false); break; case C.EntityAction_restore: t2 = designIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_designs"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_design"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.RestoreDesignsRequest(t1, designIds)); break; case C.EntityAction_archive: t2 = designIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_designs"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_design"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.ArchiveDesignsRequest(t1, designIds)); break; case C.EntityAction_delete: t2 = designIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_designs"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_design"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.DeleteDesignsRequest(t1, designIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.designUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.StartDesignMultiselect()); t1 = designs.length; if (t1 === 0) break; for (_i = 0; _i < designs.length; designs.length === t1 || (0, H.throwConcurrentModificationError)(designs), ++_i) { design = designs[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.designUIState.listUIState; t3 = J.get$id$x(design); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new N.AddToDesignMultiselect(design)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new N.RemoveFromDesignMultiselect(design)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([design], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewDesignList: function ViewDesignList() { }, ViewDesign: function ViewDesign(t0) { this.designId = t0; }, EditDesign: function EditDesign(t0) { this.design = t0; }, UpdateDesign: function UpdateDesign(t0) { this.design = t0; }, LoadDesignRequest: function LoadDesignRequest() { }, LoadDesignFailure: function LoadDesignFailure(t0) { this.error = t0; }, LoadDesignSuccess: function LoadDesignSuccess(t0) { this.design = t0; }, LoadDesignsRequest: function LoadDesignsRequest() { }, LoadDesignsFailure: function LoadDesignsFailure(t0) { this.error = t0; }, LoadDesignsSuccess: function LoadDesignsSuccess(t0) { this.designs = t0; }, SaveDesignRequest: function SaveDesignRequest(t0, t1) { this.completer = t0; this.design = t1; }, SaveDesignSuccess: function SaveDesignSuccess(t0) { this.design = t0; }, AddDesignSuccess: function AddDesignSuccess(t0) { this.design = t0; }, SaveDesignFailure: function SaveDesignFailure() { }, ArchiveDesignsRequest: function ArchiveDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, ArchiveDesignsSuccess: function ArchiveDesignsSuccess(t0) { this.designs = t0; }, ArchiveDesignsFailure: function ArchiveDesignsFailure() { }, DeleteDesignsRequest: function DeleteDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, DeleteDesignsSuccess: function DeleteDesignsSuccess(t0) { this.designs = t0; }, DeleteDesignsFailure: function DeleteDesignsFailure() { }, RestoreDesignsRequest: function RestoreDesignsRequest(t0, t1) { this.completer = t0; this.designIds = t1; }, RestoreDesignsSuccess: function RestoreDesignsSuccess(t0) { this.designs = t0; }, RestoreDesignsFailure: function RestoreDesignsFailure() { }, FilterDesigns: function FilterDesigns(t0) { this.filter = t0; }, SortDesigns: function SortDesigns(t0) { this.field = t0; }, FilterDesignsByState: function FilterDesignsByState(t0) { this.state = t0; }, FilterDesignsByCustom1: function FilterDesignsByCustom1(t0) { this.value = t0; }, FilterDesignsByCustom2: function FilterDesignsByCustom2(t0) { this.value = t0; }, FilterDesignsByCustom3: function FilterDesignsByCustom3(t0) { this.value = t0; }, FilterDesignsByCustom4: function FilterDesignsByCustom4(t0) { this.value = t0; }, handleDesignAction_closure: function handleDesignAction_closure() { }, handleDesignAction_closure0: function handleDesignAction_closure0(t0) { this.design = t0; }, handleDesignAction_closure1: function handleDesignAction_closure1(t0) { this.design = t0; }, handleDesignAction_closure2: function handleDesignAction_closure2(t0) { this.design = t0; }, handleDesignAction_closure3: function handleDesignAction_closure3(t0) { this.design = t0; }, StartDesignMultiselect: function StartDesignMultiselect() { }, AddToDesignMultiselect: function AddToDesignMultiselect(t0) { this.entity = t0; }, RemoveFromDesignMultiselect: function RemoveFromDesignMultiselect(t0) { this.entity = t0; }, ClearDesignMultiselect: function ClearDesignMultiselect() { }, _$PaymentTermState$_: function(list, map) { var _s16_ = "PaymentTermState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "list")); return new N._$PaymentTermState(map, list); }, _$PaymentTermUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("PaymentTermUIState", "listUIState")); return new N._$PaymentTermUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, PaymentTermState: function PaymentTermState() { }, PaymentTermState_loadPaymentTerms_closure0: function PaymentTermState_loadPaymentTerms_closure0() { }, PaymentTermState_loadPaymentTerms_closure1: function PaymentTermState_loadPaymentTerms_closure1() { }, PaymentTermState_loadPaymentTerms_closure: function PaymentTermState_loadPaymentTerms_closure(t0, t1) { this.$this = t0; this.map = t1; }, PaymentTermUIState: function PaymentTermUIState() { }, _$PaymentTermStateSerializer: function _$PaymentTermStateSerializer() { }, _$PaymentTermUIStateSerializer: function _$PaymentTermUIStateSerializer() { }, _$PaymentTermState: function _$PaymentTermState(t0, t1) { this.map = t0; this.list = t1; this._payment_term_state$__hashCode = null; }, PaymentTermStateBuilder: function PaymentTermStateBuilder() { this._payment_term_state$_list = this._payment_term_state$_map = this._payment_term_state$_$v = null; }, _$PaymentTermUIState: function _$PaymentTermUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._payment_term_state$__hashCode = null; }, PaymentTermUIStateBuilder: function PaymentTermUIStateBuilder() { var _ = this; _._payment_term_state$_cancelCompleter = _._payment_term_state$_saveCompleter = _._payment_term_state$_tabIndex = _._payment_term_state$_forceSelected = _._payment_term_state$_selectedId = _._payment_term_state$_listUIState = _._payment_term_state$_editing = _._payment_term_state$_$v = null; }, _PaymentTermUIState_Object_EntityUIState: function _PaymentTermUIState_Object_EntityUIState() { }, handleRecurringInvoiceAction: function(context, recurringInvoices, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t1, recurringInvoice, t2, recurringInvoiceIds, designId, message, _i, t3; var $async$handleRecurringInvoiceAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (recurringInvoices.length === 0) { // goto return $async$goto = 1; break; } store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); recurringInvoice = type$.legacy_InvoiceEntity._as(C.JSArray_methods.get$first(recurringInvoices)); t2 = H._arrayInstanceType(recurringInvoices)._eval$1("MappedListIterable<1,String*>"); recurringInvoiceIds = P.List_List$of(new H.MappedListIterable(recurringInvoices, new N.handleRecurringInvoiceAction_closure(), t2), true, t2._eval$1("ListIterable.E")); case 3: // switch switch (action) { case C.EntityAction_edit: // goto case $async$goto = 5; break; case C.EntityAction_viewPdf: // goto case $async$goto = 6; break; case C.EntityAction_clientPortal: // goto case $async$goto = 7; break; case C.EntityAction_cloneToOther: // goto case $async$goto = 8; break; case C.EntityAction_cloneToRecurring: // goto case $async$goto = 9; break; case C.EntityAction_cloneToInvoice: // goto case $async$goto = 10; break; case C.EntityAction_cloneToQuote: // goto case $async$goto = 11; break; case C.EntityAction_cloneToCredit: // goto case $async$goto = 12; break; case C.EntityAction_start: // goto case $async$goto = 13; break; case C.EntityAction_stop: // goto case $async$goto = 14; break; case C.EntityAction_restore: // goto case $async$goto = 15; break; case C.EntityAction_archive: // goto case $async$goto = 16; break; case C.EntityAction_delete: // goto case $async$goto = 17; break; case C.EntityAction_toggleMultiselect: // goto case $async$goto = 18; break; case C.EntityAction_more: // goto case $async$goto = 19; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case M.editEntity(null, context, recurringInvoice, null); // goto after switch $async$goto = 4; break; case 6: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.ShowPdfRecurringInvoice(recurringInvoice, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = recurringInvoice.invitations._list; t2 = J.getInterceptor$asx(t1); $async$goto = 22; return P._asyncAwait(T.canLaunch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true"), $async$handleRecurringInvoiceAction); case 22: // returning from await. $async$goto = $async$result ? 20 : 21; break; case 20: // then $async$goto = 23; return P._asyncAwait(T.launch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true", false, false), $async$handleRecurringInvoiceAction); case 23: // returning from await. case 21: // join // goto after switch $async$goto = 4; break; case 8: // case O.cloneToDialog(context, recurringInvoice); // goto after switch $async$goto = 4; break; case 9: // case M.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice), null, false); // goto after switch $async$goto = 4; break; case 10: // case M.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new N.handleRecurringInvoiceAction_closure0()), null, false); // goto after switch $async$goto = 4; break; case 11: // case designId = A.getDesignIdForClientByEntity(recurringInvoice.clientId, C.EntityType_invoice, state); M.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new N.handleRecurringInvoiceAction_closure1(designId)), null, false); // goto after switch $async$goto = 4; break; case 12: // case designId = A.getDesignIdForClientByEntity(recurringInvoice.clientId, C.EntityType_credit, state); M.createEntity(null, null, context, recurringInvoice.get$clone(recurringInvoice).rebuild$1(new N.handleRecurringInvoiceAction_closure2(designId)), null, false); // goto after switch $async$goto = 4; break; case 13: // case t2 = recurringInvoice.lastSentDate; t1 = t2.length === 0 ? t1.get$startedRecurringInvoice() : t1.get$resumedRecurringInvoice(); t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 14: // case t1 = O.snackBarCompleter(context, t1.get$stoppedRecurringInvoice(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.StopRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 15: // case t2 = recurringInvoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_recurring_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.RestoreRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 16: // case t2 = recurringInvoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_recurring_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.ArchiveRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 17: // case t2 = recurringInvoiceIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_recurring_invoices"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_recurring_invoice"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.DeleteRecurringInvoicesRequest(t1, recurringInvoiceIds)); // goto after switch $async$goto = 4; break; case 18: // case if (store.get$_store$_state().uiState.recurringInvoiceUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoiceMultiselect()); t1 = recurringInvoices.length; if (t1 === 0) { // goto after switch $async$goto = 4; break; } for (_i = 0; _i < recurringInvoices.length; recurringInvoices.length === t1 || (0, H.throwConcurrentModificationError)(recurringInvoices), ++_i) { recurringInvoice = recurringInvoices[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.recurringInvoiceUIState.listUIState; t3 = J.get$id$x(recurringInvoice); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new N.AddToRecurringInvoiceMultiselect(recurringInvoice)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new N.RemoveFromRecurringInvoiceMultiselect(recurringInvoice)); } // goto after switch $async$goto = 4; break; case 19: // case L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([recurringInvoice], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleRecurringInvoiceAction, $async$completer); }, ViewRecurringInvoiceList: function ViewRecurringInvoiceList() { }, ViewRecurringInvoice: function ViewRecurringInvoice(t0) { this.recurringInvoiceId = t0; }, EditRecurringInvoice: function EditRecurringInvoice(t0) { this.recurringInvoice = t0; }, ShowPdfRecurringInvoice: function ShowPdfRecurringInvoice(t0, t1, t2) { this.invoice = t0; this.context = t1; this.activityId = t2; }, EditRecurringInvoiceItem: function EditRecurringInvoiceItem(t0) { this.itemIndex = t0; }, UpdateRecurringInvoice: function UpdateRecurringInvoice(t0) { this.recurringInvoice = t0; }, UpdateRecurringInvoiceClient: function UpdateRecurringInvoiceClient(t0) { this.client = t0; }, LoadRecurringInvoice: function LoadRecurringInvoice(t0, t1) { this.completer = t0; this.recurringInvoiceId = t1; }, LoadRecurringInvoices: function LoadRecurringInvoices() { }, LoadRecurringInvoiceRequest: function LoadRecurringInvoiceRequest() { }, LoadRecurringInvoiceFailure: function LoadRecurringInvoiceFailure(t0) { this.error = t0; }, LoadRecurringInvoiceSuccess: function LoadRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, LoadRecurringInvoicesRequest: function LoadRecurringInvoicesRequest() { }, LoadRecurringInvoicesFailure: function LoadRecurringInvoicesFailure(t0) { this.error = t0; }, LoadRecurringInvoicesSuccess: function LoadRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, AddRecurringInvoiceContact: function AddRecurringInvoiceContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveRecurringInvoiceContact: function RemoveRecurringInvoiceContact(t0) { this.invitation = t0; }, SaveRecurringInvoiceRequest: function SaveRecurringInvoiceRequest(t0, t1, t2) { this.completer = t0; this.recurringInvoice = t1; this.action = t2; }, SaveRecurringInvoiceSuccess: function SaveRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, AddRecurringInvoiceSuccess: function AddRecurringInvoiceSuccess(t0) { this.recurringInvoice = t0; }, AddRecurringInvoiceItem: function AddRecurringInvoiceItem(t0) { this.invoiceItem = t0; }, MoveRecurringInvoiceItem: function MoveRecurringInvoiceItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddRecurringInvoiceItems: function AddRecurringInvoiceItems(t0) { this.items = t0; }, UpdateRecurringInvoiceItem: function UpdateRecurringInvoiceItem(t0, t1) { this.index = t0; this.item = t1; }, DeleteRecurringInvoiceItem: function DeleteRecurringInvoiceItem(t0) { this.index = t0; }, SaveRecurringInvoiceFailure: function SaveRecurringInvoiceFailure() { }, ArchiveRecurringInvoicesRequest: function ArchiveRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, ArchiveRecurringInvoicesSuccess: function ArchiveRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, ArchiveRecurringInvoicesFailure: function ArchiveRecurringInvoicesFailure() { }, DeleteRecurringInvoicesRequest: function DeleteRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, DeleteRecurringInvoicesSuccess: function DeleteRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, DeleteRecurringInvoicesFailure: function DeleteRecurringInvoicesFailure() { }, RestoreRecurringInvoicesRequest: function RestoreRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.recurringInvoiceIds = t1; }, RestoreRecurringInvoicesSuccess: function RestoreRecurringInvoicesSuccess(t0) { this.recurringInvoices = t0; }, RestoreRecurringInvoicesFailure: function RestoreRecurringInvoicesFailure() { }, FilterRecurringInvoices: function FilterRecurringInvoices(t0) { this.filter = t0; }, SortRecurringInvoices: function SortRecurringInvoices(t0) { this.field = t0; }, FilterRecurringInvoicesByState: function FilterRecurringInvoicesByState(t0) { this.state = t0; }, FilterRecurringInvoicesByStatus: function FilterRecurringInvoicesByStatus(t0) { this.status = t0; }, FilterRecurringInvoicesByCustom1: function FilterRecurringInvoicesByCustom1(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom2: function FilterRecurringInvoicesByCustom2(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom3: function FilterRecurringInvoicesByCustom3(t0) { this.value = t0; }, FilterRecurringInvoicesByCustom4: function FilterRecurringInvoicesByCustom4(t0) { this.value = t0; }, SaveRecurringInvoiceDocumentRequest: function SaveRecurringInvoiceDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.invoice = t2; }, SaveRecurringInvoiceDocumentFailure: function SaveRecurringInvoiceDocumentFailure() { }, StartRecurringInvoicesRequest: function StartRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, StartRecurringInvoicesSuccess: function StartRecurringInvoicesSuccess(t0) { this.invoices = t0; }, StartRecurringInvoicesFailure: function StartRecurringInvoicesFailure() { }, StopRecurringInvoicesRequest: function StopRecurringInvoicesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, StopRecurringInvoicesSuccess: function StopRecurringInvoicesSuccess(t0) { this.invoices = t0; }, StopRecurringInvoicesFailure: function StopRecurringInvoicesFailure() { }, handleRecurringInvoiceAction_closure: function handleRecurringInvoiceAction_closure() { }, handleRecurringInvoiceAction_closure0: function handleRecurringInvoiceAction_closure0() { }, handleRecurringInvoiceAction_closure1: function handleRecurringInvoiceAction_closure1(t0) { this.designId = t0; }, handleRecurringInvoiceAction_closure2: function handleRecurringInvoiceAction_closure2(t0) { this.designId = t0; }, StartRecurringInvoiceMultiselect: function StartRecurringInvoiceMultiselect() { }, AddToRecurringInvoiceMultiselect: function AddToRecurringInvoiceMultiselect(t0) { this.entity = t0; }, RemoveFromRecurringInvoiceMultiselect: function RemoveFromRecurringInvoiceMultiselect(t0) { this.entity = t0; }, ClearRecurringInvoiceMultiselect: function ClearRecurringInvoiceMultiselect() { }, UpdateRecurringInvoiceTab: function UpdateRecurringInvoiceTab(t0) { this.tabIndex = t0; }, taskUIReducer: function(state, action) { var t1; state.toString; t1 = new M.TaskUIStateBuilder(); t1._task_state$_$v = state; new N.taskUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing14: function(task, action) { var _null = null; return D.TaskEntity_TaskEntity(_null, _null, _null, _null, _null); }, _updateEditing15: function(task, action) { return action.get$task(); }, _viewTaskList0: function(taskListState, action) { return taskListState.rebuild$1(new N._viewTaskList_closure()); }, _filterTasksByCustom1: function(taskListState, action) { var t1 = taskListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return taskListState.rebuild$1(new N._filterTasksByCustom1_closure(action)); else return taskListState.rebuild$1(new N._filterTasksByCustom1_closure0(action)); }, _filterTasksByCustom2: function(taskListState, action) { var t1 = taskListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return taskListState.rebuild$1(new N._filterTasksByCustom2_closure(action)); else return taskListState.rebuild$1(new N._filterTasksByCustom2_closure0(action)); }, _filterTasksByState: function(taskListState, action) { var t1 = taskListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return taskListState.rebuild$1(new N._filterTasksByState_closure(action)); else return taskListState.rebuild$1(new N._filterTasksByState_closure0(action)); }, _filterTasksByStatus: function(taskListState, action) { var t1 = taskListState.statusFilters, t2 = action.status; if (J.contains$1$asx(t1._list, t2)) return taskListState.rebuild$1(new N._filterTasksByStatus_closure(action)); else return taskListState.rebuild$1(new N._filterTasksByStatus_closure0(action)); }, _filterTasks: function(taskListState, action) { return taskListState.rebuild$1(new N._filterTasks_closure(action, taskListState)); }, _sortTasks0: function(taskListState, action) { return taskListState.rebuild$1(new N._sortTasks_closure(action)); }, _addTaskTime: function(task, action) { return task.addTaskTime$1(action.taskTime).rebuild$1(new N._addTaskTime_closure(action)); }, _removeTaskTime: function(task, action) { return task.deleteTaskTime$1(action.index); }, _updateTaskTime: function(task, action) { return task.updateTaskTime$2(action.taskTime, action.index); }, _startListMultiselect16: function(taskListState, action) { return taskListState.rebuild$1(new N._startListMultiselect_closure2()); }, _addToListMultiselect16: function(taskListState, action) { return taskListState.rebuild$1(new N._addToListMultiselect_closure2(action)); }, _removeFromListMultiselect16: function(taskListState, action) { return taskListState.rebuild$1(new N._removeFromListMultiselect_closure2(action)); }, _clearListMultiselect16: function(taskListState, action) { return taskListState.rebuild$1(new N._clearListMultiselect_closure2()); }, _sortTasksSuccess: function(taskState, action) { return taskState.rebuild$1(new N._sortTasksSuccess_closure(action, taskState)); }, _archiveTaskSuccess: function(taskState, action) { return taskState.rebuild$1(new N._archiveTaskSuccess_closure(action)); }, _deleteTaskSuccess: function(taskState, action) { return taskState.rebuild$1(new N._deleteTaskSuccess_closure(action)); }, _restoreTaskSuccess: function(taskState, action) { return taskState.rebuild$1(new N._restoreTaskSuccess_closure(action)); }, _addTask: function(taskState, action) { return taskState.rebuild$1(new N._addTask_closure(action)); }, _updateTask: function(taskState, action) { return taskState.rebuild$1(new N._updateTask_closure(action)); }, _setLoadedTask: function(taskState, action) { return taskState.rebuild$1(new N._setLoadedTask_closure(action)); }, _setLoadedTasks: function(taskState, action) { return taskState.loadTasks$1(action.tasks); }, _setLoadedCompany15: function(taskState, action) { return taskState.loadTasks$1(action.userCompany.company.tasks); }, taskUIReducer_closure: function taskUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure23: function forceSelectedReducer_closure23() { }, forceSelectedReducer_closure24: function forceSelectedReducer_closure24() { }, forceSelectedReducer_closure25: function forceSelectedReducer_closure25() { }, forceSelectedReducer_closure26: function forceSelectedReducer_closure26() { }, forceSelectedReducer_closure27: function forceSelectedReducer_closure27() { }, forceSelectedReducer_closure28: function forceSelectedReducer_closure28() { }, forceSelectedReducer_closure29: function forceSelectedReducer_closure29() { }, forceSelectedReducer_closure30: function forceSelectedReducer_closure30() { }, tabIndexReducer_closure5: function tabIndexReducer_closure5() { }, tabIndexReducer_closure6: function tabIndexReducer_closure6() { }, editingTimeReducer_closure: function editingTimeReducer_closure() { }, editingTimeReducer_closure0: function editingTimeReducer_closure0() { }, selectedIdReducer_closure49: function selectedIdReducer_closure49() { }, selectedIdReducer_closure50: function selectedIdReducer_closure50() { }, selectedIdReducer_closure51: function selectedIdReducer_closure51() { }, selectedIdReducer_closure52: function selectedIdReducer_closure52() { }, selectedIdReducer_closure53: function selectedIdReducer_closure53() { }, selectedIdReducer_closure54: function selectedIdReducer_closure54() { }, selectedIdReducer_closure55: function selectedIdReducer_closure55() { }, selectedIdReducer_closure56: function selectedIdReducer_closure56() { }, selectedIdReducer_closure57: function selectedIdReducer_closure57() { }, selectedIdReducer_closure58: function selectedIdReducer_closure58() { }, selectedIdReducer_closure59: function selectedIdReducer_closure59() { }, selectedIdReducer_closure60: function selectedIdReducer_closure60() { }, selectedIdReducer_closure61: function selectedIdReducer_closure61() { }, selectedIdReducer_closure62: function selectedIdReducer_closure62() { }, selectedIdReducer_closure63: function selectedIdReducer_closure63() { }, editingReducer_closure18: function editingReducer_closure18() { }, editingReducer_closure19: function editingReducer_closure19() { }, editingReducer_closure20: function editingReducer_closure20() { }, editingReducer_closure21: function editingReducer_closure21() { }, editingReducer__closure8: function editingReducer__closure8() { }, _viewTaskList_closure: function _viewTaskList_closure() { }, _filterTasksByCustom1_closure: function _filterTasksByCustom1_closure(t0) { this.action = t0; }, _filterTasksByCustom1_closure0: function _filterTasksByCustom1_closure0(t0) { this.action = t0; }, _filterTasksByCustom2_closure: function _filterTasksByCustom2_closure(t0) { this.action = t0; }, _filterTasksByCustom2_closure0: function _filterTasksByCustom2_closure0(t0) { this.action = t0; }, _filterTasksByState_closure: function _filterTasksByState_closure(t0) { this.action = t0; }, _filterTasksByState_closure0: function _filterTasksByState_closure0(t0) { this.action = t0; }, _filterTasksByStatus_closure: function _filterTasksByStatus_closure(t0) { this.action = t0; }, _filterTasksByStatus_closure0: function _filterTasksByStatus_closure0(t0) { this.action = t0; }, _filterTasks_closure: function _filterTasks_closure(t0, t1) { this.action = t0; this.taskListState = t1; }, _sortTasks_closure: function _sortTasks_closure(t0) { this.action = t0; }, _addTaskTime_closure: function _addTaskTime_closure(t0) { this.action = t0; }, _startListMultiselect_closure2: function _startListMultiselect_closure2() { }, _addToListMultiselect_closure2: function _addToListMultiselect_closure2(t0) { this.action = t0; }, _removeFromListMultiselect_closure2: function _removeFromListMultiselect_closure2(t0) { this.action = t0; }, _clearListMultiselect_closure2: function _clearListMultiselect_closure2() { }, _sortTasksSuccess_closure: function _sortTasksSuccess_closure(t0, t1) { this.action = t0; this.taskState = t1; }, _sortTasksSuccess__closure: function _sortTasksSuccess__closure(t0, t1, t2) { this.statusId = t0; this.action = t1; this.taskId = t2; }, _archiveTaskSuccess_closure: function _archiveTaskSuccess_closure(t0) { this.action = t0; }, _deleteTaskSuccess_closure: function _deleteTaskSuccess_closure(t0) { this.action = t0; }, _restoreTaskSuccess_closure: function _restoreTaskSuccess_closure(t0) { this.action = t0; }, _addTask_closure: function _addTask_closure(t0) { this.action = t0; }, _updateTask_closure: function _updateTask_closure(t0) { this.action = t0; }, _setLoadedTask_closure: function _setLoadedTask_closure(t0) { this.action = t0; }, _$TokenState$_: function(list, map) { var _s10_ = "TokenState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "list")); return new N._$TokenState(map, list); }, _$TokenUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("TokenUIState", "listUIState")); return new N._$TokenUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TokenState: function TokenState() { }, TokenState_loadTokens_closure0: function TokenState_loadTokens_closure0() { }, TokenState_loadTokens_closure1: function TokenState_loadTokens_closure1() { }, TokenState_loadTokens_closure: function TokenState_loadTokens_closure(t0, t1) { this.$this = t0; this.map = t1; }, TokenUIState: function TokenUIState() { }, _$TokenStateSerializer: function _$TokenStateSerializer() { }, _$TokenUIStateSerializer: function _$TokenUIStateSerializer() { }, _$TokenState: function _$TokenState(t0, t1) { this.map = t0; this.list = t1; this._token_state$__hashCode = null; }, TokenStateBuilder: function TokenStateBuilder() { this._token_state$_list = this._token_state$_map = this._token_state$_$v = null; }, _$TokenUIState: function _$TokenUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._token_state$__hashCode = null; }, TokenUIStateBuilder: function TokenUIStateBuilder() { var _ = this; _._token_state$_cancelCompleter = _._token_state$_saveCompleter = _._token_state$_tabIndex = _._token_state$_forceSelected = _._token_state$_selectedId = _._token_state$_listUIState = _._token_state$_editing = _._token_state$_$v = null; }, _TokenUIState_Object_EntityUIState: function _TokenUIState_Object_EntityUIState() { }, ProjectPicker: function ProjectPicker(t0, t1, t2, t3, t4) { var _ = this; _.projectId = t0; _.clientId = t1; _.onChanged = t2; _.onAddPressed = t3; _.key = t4; }, ListFilter: function ListFilter(t0, t1, t2, t3, t4) { var _ = this; _.entityType = t0; _.filter = t1; _.onFilterChanged = t2; _.entityIds = t3; _.key = t4; }, _ListFilterState: function _ListFilterState(t0, t1) { var _ = this; _._list_filter$_focusNode = _._filterController = null; _._debouncer = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ListFilterState_onFocusChanged_closure: function _ListFilterState_onFocusChanged_closure() { }, _ListFilterState_build_closure: function _ListFilterState_build_closure(t0) { this.$this = t0; }, _ListFilterState_build_closure0: function _ListFilterState_build_closure0(t0) { this.$this = t0; }, _ListFilterState_build__closure: function _ListFilterState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, ActivityListTile: function ActivityListTile(t0, t1, t2) { this.activity = t0; this.enableNavigation = t1; this.key = t2; }, ActivityListTile_build_closure: function ActivityListTile_build_closure(t0, t1) { this.$this = t0; this.client = t1; }, ListFilterMessage: function ListFilterMessage(t0, t1, t2, t3, t4, t5) { var _ = this; _.filterEntityId = t0; _.filterEntityType = t1; _.onPressed = t2; _.onClearPressed = t3; _.isSettings = t4; _.key = t5; }, FilterListTile: function FilterListTile(t0, t1, t2, t3, t4, t5) { var _ = this; _.entityType = t0; _.entity = t1; _.onPressed = t2; _.onClearPressed = t3; _.isSettings = t4; _.key = t5; }, FilterListTile_build_closure: function FilterListTile_build_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, FilterListTile_build__closure: function FilterListTile_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, SelectedIndicator: function SelectedIndicator(t0, t1, t2, t3) { var _ = this; _.child = t0; _.isSelected = t1; _.isMenu = t2; _.key = t3; }, AppPaginatedDataTable: function AppPaginatedDataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.initialFirstRowIndex = t4; _.onPageChanged = t5; _.rowsPerPage = t6; _.source = t7; _.key = t8; }, AppPaginatedDataTableState: function AppPaginatedDataTableState(t0, t1, t2) { var _ = this; _._app_paginated_data_table$_rowCountApproximate = _._app_paginated_data_table$_rowCount = _._app_paginated_data_table$_firstRowIndex = null; _._app_paginated_data_table$_rows = t0; _._app_paginated_data_table$_tableKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, AppPaginatedDataTableState__handleDataSourceChanged_closure: function AppPaginatedDataTableState__handleDataSourceChanged_closure(t0) { this.$this = t0; }, AppPaginatedDataTableState_pageTo_closure: function AppPaginatedDataTableState_pageTo_closure(t0, t1) { this.$this = t0; this.rowIndex = t1; }, AppPaginatedDataTableState__getBlankRowFor_closure: function AppPaginatedDataTableState__getBlankRowFor_closure() { }, AppPaginatedDataTableState__getProgressIndicatorRowFor_closure: function AppPaginatedDataTableState__getProgressIndicatorRowFor_closure(t0) { this._box_0 = t0; }, AppPaginatedDataTableState__getRows_closure: function AppPaginatedDataTableState__getRows_closure(t0, t1) { this.$this = t0; this.index = t1; }, AppPaginatedDataTableState_build_closure: function AppPaginatedDataTableState_build_closure(t0, t1, t2) { this.$this = t0; this.footerTextStyle = t1; this.footerWidgets = t2; }, DesignSettings$: function(draftMode, htmlController, isLoading, nameController, onDraftModeChanged, onLoadDesign, viewModel) { return new N.DesignSettings(viewModel, onLoadDesign, nameController, htmlController, draftMode, isLoading, onDraftModeChanged, null); }, DesignEdit: function DesignEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _DesignEditState: function _DesignEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._design_edit$_debouncer = t0; _._htmlDebouncer = t1; _._design_edit$_nameController = t2; _._htmlController = t3; _._headerController = t4; _._footerController = t5; _._bodyController = t6; _._productsController = t7; _._tasksController = t8; _._includesController = t9; _._pdfBytes = _._tabController = _._design_edit$_focusNode = null; _._html = ""; _._isDraftMode = _._design_edit$_isLoading = false; _._design_edit$_controllers = null; _.SingleTickerProviderStateMixin__ticker = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, _DesignEditState_didChangeDependencies_closure: function _DesignEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DesignEditState_didChangeDependencies_closure0: function _DesignEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _DesignEditState_dispose_closure: function _DesignEditState_dispose_closure(t0) { this.$this = t0; }, _DesignEditState__onChanged_closure: function _DesignEditState__onChanged_closure(t0) { this.$this = t0; }, _DesignEditState__onChanged_closure0: function _DesignEditState__onChanged_closure0(t0) { this.$this = t0; }, _DesignEditState__onChanged__closure: function _DesignEditState__onChanged__closure(t0) { this.$this = t0; }, _DesignEditState__onHtmlChanged_closure: function _DesignEditState__onHtmlChanged_closure(t0) { this.$this = t0; }, _DesignEditState__onHtmlChanged__closure: function _DesignEditState__onHtmlChanged__closure(t0) { this.$this = t0; }, _DesignEditState__loadDesign_closure: function _DesignEditState__loadDesign_closure(t0) { this.$this = t0; }, _DesignEditState__loadDesign_closure0: function _DesignEditState__loadDesign_closure0(t0) { this.$this = t0; }, _DesignEditState__loadPreview_closure: function _DesignEditState__loadPreview_closure(t0) { this.$this = t0; }, _DesignEditState__loadPreview_closure0: function _DesignEditState__loadPreview_closure0(t0) { this.$this = t0; }, _DesignEditState__loadPreview__closure: function _DesignEditState__loadPreview__closure(t0, t1) { this.$this = t0; this.response = t1; }, _DesignEditState__setDraftMode_closure: function _DesignEditState__setDraftMode_closure(t0, t1) { this.$this = t0; this.isDraftMode = t1; }, _DesignEditState_build_closure2: function _DesignEditState_build_closure2(t0) { this.viewModel = t0; }, _DesignEditState_build_closure: function _DesignEditState_build_closure(t0) { this.viewModel = t0; }, _DesignEditState_build_closure0: function _DesignEditState_build_closure0(t0) { this.$this = t0; }, _DesignEditState_build_closure1: function _DesignEditState_build_closure1(t0) { this.$this = t0; }, DesignSection: function DesignSection(t0, t1) { this.textController = t0; this.key = t1; }, DesignSettings: function DesignSettings(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.viewModel = t0; _.onLoadDesign = t1; _.nameController = t2; _.htmlController = t3; _.draftMode = t4; _.isLoading = t5; _.onDraftModeChanged = t6; _.key = t7; }, _DesignSettingsState: function _DesignSettingsState(t0) { var _ = this; _._widget = _._selectedDesign = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DesignSettingsState_build_closure: function _DesignSettingsState_build_closure(t0) { this.$this = t0; }, _DesignSettingsState_build_closure0: function _DesignSettingsState_build_closure0() { }, PdfDesignPreview: function PdfDesignPreview(t0, t1, t2) { this.pdfBytes = t0; this.isLoading = t1; this.key = t2; }, _PdfDesignPreviewState: function _PdfDesignPreviewState(t0) { var _ = this; _._widget = _._design_edit$_pdfController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, HtmlDesignPreview: function HtmlDesignPreview(t0, t1, t2) { this.html = t0; this.isLoading = t1; this.key = t2; }, InsertTabIntent: function InsertTabIntent(t0, t1) { this.numSpaces = t0; this.textController = t1; }, InsertTabAction: function InsertTabAction(t0) { this._actions$_listeners = t0; }, __DesignEditState_State_SingleTickerProviderStateMixin: function __DesignEditState_State_SingleTickerProviderStateMixin() { }, ExpenseViewSchedule: function ExpenseViewSchedule(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseViewScheduleState: function _ExpenseViewScheduleState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ExpenseViewScheduleState_build_closure: function _ExpenseViewScheduleState_build_closure(t0) { this.context = t0; }, InvoiceEditDetails: function InvoiceEditDetails(t0, t1, t2) { this.viewModel = t0; this.entityType = t1; this.key = t2; }, InvoiceEditDetailsState: function InvoiceEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._invoiceNumberController = t0; _._poNumberController = t1; _._invoice_edit_details$_discountController = t2; _._partialController = t3; _._invoice_edit_details$_custom1Controller = t4; _._invoice_edit_details$_custom2Controller = t5; _._invoice_edit_details$_custom3Controller = t6; _._invoice_edit_details$_custom4Controller = t7; _._surcharge1Controller = t8; _._surcharge2Controller = t9; _._surcharge3Controller = t10; _._surcharge4Controller = t11; _._invoice_edit_details$_controllers = t12; _._invoice_edit_details$_debouncer = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, InvoiceEditDetailsState_didChangeDependencies_closure: function InvoiceEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState_didChangeDependencies_closure0: function InvoiceEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditDetailsState_dispose_closure: function InvoiceEditDetailsState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState__onChanged_closure: function InvoiceEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditDetailsState__onChanged_closure0: function InvoiceEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure0: function InvoiceEditDetailsState_build_closure0(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.invoice = t2; }, InvoiceEditDetailsState_build_closure: function InvoiceEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, InvoiceEditDetailsState_build_closure1: function InvoiceEditDetailsState_build_closure1(t0, t1, t2) { this.invoice = t0; this.originalInvoice = t1; this.context = t2; }, InvoiceEditDetailsState_build_closure2: function InvoiceEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure12: function InvoiceEditDetailsState_build__closure12(t0) { this.userId = t0; }, InvoiceEditDetailsState_build_closure7: function InvoiceEditDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure10: function InvoiceEditDetailsState_build__closure10(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure3: function InvoiceEditDetailsState_build_closure3(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure4: function InvoiceEditDetailsState_build_closure4(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure11: function InvoiceEditDetailsState_build__closure11(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure8: function InvoiceEditDetailsState_build_closure8(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure9: function InvoiceEditDetailsState_build__closure9(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure5: function InvoiceEditDetailsState_build_closure5() { }, InvoiceEditDetailsState_build_closure9: function InvoiceEditDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure8: function InvoiceEditDetailsState_build__closure8(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure6: function InvoiceEditDetailsState_build_closure6(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure11: function InvoiceEditDetailsState_build_closure11(t0) { this.context = t0; }, InvoiceEditDetailsState_build_closure10: function InvoiceEditDetailsState_build_closure10(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure7: function InvoiceEditDetailsState_build__closure7(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure12: function InvoiceEditDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure6: function InvoiceEditDetailsState_build__closure6(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure13: function InvoiceEditDetailsState_build_closure13(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.state = t2; _.localization = t3; }, InvoiceEditDetailsState_build_closure14: function InvoiceEditDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure5: function InvoiceEditDetailsState_build__closure5(t0) { this.date = t0; }, InvoiceEditDetailsState_build_closure15: function InvoiceEditDetailsState_build_closure15(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure4: function InvoiceEditDetailsState_build__closure4(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure16: function InvoiceEditDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure3: function InvoiceEditDetailsState_build__closure3(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure17: function InvoiceEditDetailsState_build_closure17(t0) { this.localization = t0; }, InvoiceEditDetailsState_build_closure18: function InvoiceEditDetailsState_build_closure18(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure19: function InvoiceEditDetailsState_build_closure19(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure20: function InvoiceEditDetailsState_build_closure20(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build_closure21: function InvoiceEditDetailsState_build_closure21(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure2: function InvoiceEditDetailsState_build__closure2(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure22: function InvoiceEditDetailsState_build_closure22(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure1: function InvoiceEditDetailsState_build__closure1(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure23: function InvoiceEditDetailsState_build_closure23(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure0: function InvoiceEditDetailsState_build__closure0(t0) { this.value = t0; }, InvoiceEditDetailsState_build_closure24: function InvoiceEditDetailsState_build_closure24(t0, t1) { this.viewModel = t0; this.invoice = t1; }, InvoiceEditDetailsState_build__closure: function InvoiceEditDetailsState_build__closure(t0) { this.value = t0; }, InvoiceViewSchedule: function InvoiceViewSchedule(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewScheduleState: function _InvoiceViewScheduleState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewScheduleState_build_closure: function _InvoiceViewScheduleState_build_closure(t0) { this.context = t0; }, ProjectPresenter: function ProjectPresenter() { this.context = this.entity = null; }, QuoteListItem: function QuoteListItem(t0, t1, t2, t3) { var _ = this; _.quote = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, QuoteListItem_build_closure: function QuoteListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; }, QuoteListItem_build__closure2: function QuoteListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, QuoteListItem_build__closure1: function QuoteListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, QuoteListItem_build__closure: function QuoteListItem_build__closure() { }, QuoteListItem_build__closure0: function QuoteListItem_build__closure0(t0) { this.$this = t0; }, QuoteListItem_build__closure5: function QuoteListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, QuoteListItem_build__closure4: function QuoteListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, QuoteListItem_build__closure3: function QuoteListItem_build__closure3() { }, productReport: function(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState) { var columns, t4, t5, t6, t7, product, row, t8, t9, value, value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, skip, t10, value11, t11, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, productReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "product") ? J.$index$asx(reportSettings._map$_map, "product") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.ProductReportFields_0, C.ProductReportFields_1, C.ProductReportFields_3, C.ProductReportFields_4], type$.JSArray_legacy_ProductReportFields), t1 = productReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_ProductReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new N.productReport_closure(), t3).where$1(0, new N.productReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(productMap.get$keys(productMap)), t2 = columns._list, t3 = J.getInterceptor$ax(t2), t4 = userCompany.company, t5 = type$.JSArray_legacy_ReportElement, t6 = productMap._map$_map, t7 = J.getInterceptor$asx(t6); t1.moveNext$0();) { product = t7.$index(t6, t1.get$current(t1)); if (product.isDeleted) continue; row = H.setRuntimeTypeInfo([], t5); for (t8 = t3.get$iterator(t2), t9 = product.id, value = product.customValue4, value0 = product.customValue3, value1 = product.customValue2, value2 = product.customValue1, value3 = product.taxRate3, value4 = product.taxRate2, value5 = product.taxRate1, value6 = product.quantity, value7 = product.notes, value8 = product.cost, value9 = product.price, value10 = product.productKey, skip = false; t8.moveNext$0();) { t10 = t8.get$current(t8); switch (t10) { case C.ProductReportFields_0: value11 = value10; break; case C.ProductReportFields_1: value11 = value9; break; case C.ProductReportFields_3: value11 = value8; break; case C.ProductReportFields_2: value11 = value7; break; case C.ProductReportFields_4: value11 = value6; break; case C.ProductReportFields_5: value11 = value5; break; case C.ProductReportFields_6: value11 = value4; break; case C.ProductReportFields_7: value11 = value3; break; case C.ProductReportFields_8: value11 = value2; break; case C.ProductReportFields_9: value11 = value1; break; case C.ProductReportFields_10: value11 = value0; break; case C.ProductReportFields_11: value11 = value; break; default: value11 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t10), _null, reportsUIState, userCompany, value11)) skip = true; t11 = J.getInterceptor$(value11); if (t11.get$runtimeType(value11) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value11, product.get$entityType(), t9)); else if (t10 === C.ProductReportFields_4) { t10 = t4.settings.currencyId; if (t10 == null) t10 = "1"; row.push(new A.ReportNumberValue(value11, C.FormatNumberType_3, t10, _null, product.get$entityType(), t9)); } else if (t11.get$runtimeType(value11) === C.Type_double_K1J || t11.get$runtimeType(value11) === C.Type_int_tHn) { t10 = t4.settings.currencyId; if (t10 == null) t10 = "1"; row.push(new A.ReportNumberValue(value11, _null, t10, _null, product.get$entityType(), t9)); } else row.push(new A.ReportStringValue(value11, product.get$entityType(), t9)); } if (!skip) data.push(row); } selectedColumns = t3.map$1$1(t2, new N.productReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new N.productReport_closure2(productReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ProductReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_IwX, new N.productReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new N.productReport_closure4(), t1), true, t2), data, true); }, ProductReportFields: function ProductReportFields(t0) { this._product_report$_name = t0; }, memoizedProductReport_closure: function memoizedProductReport_closure() { }, productReport_closure: function productReport_closure() { }, productReport_closure0: function productReport_closure0() { }, productReport_closure1: function productReport_closure1() { }, productReport_closure2: function productReport_closure2(t0, t1) { this.productReportSettings = t0; this.selectedColumns = t1; }, productReport_closure3: function productReport_closure3() { }, productReport_closure4: function productReport_closure4() { }, EmailSettings: function EmailSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _EmailSettingsState: function _EmailSettingsState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._email_settings$_focusNode = null; _._fromNameController = t0; _._replyToEmailController = t1; _._replyToNameController = t2; _._bccEmailController = t3; _._emailStyleCustomController = t4; _._emailSignatureController = t5; _._email_settings$_controllers = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, _EmailSettingsState_dispose_closure: function _EmailSettingsState_dispose_closure(t0) { this.$this = t0; }, _EmailSettingsState_didChangeDependencies_closure: function _EmailSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _EmailSettingsState_didChangeDependencies_closure0: function _EmailSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _EmailSettingsState__onChanged_closure: function _EmailSettingsState__onChanged_closure(t0) { this.$this = t0; }, _EmailSettingsState_build_closure: function _EmailSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure5: function _EmailSettingsState_build__closure5(t0) { this.value = t0; }, _EmailSettingsState_build_closure0: function _EmailSettingsState_build_closure0(t0) { this.context = t0; }, _EmailSettingsState_build_closure1: function _EmailSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure4: function _EmailSettingsState_build__closure4(t0) { this.userId = t0; }, _EmailSettingsState_build_closure2: function _EmailSettingsState_build_closure2() { }, _EmailSettingsState_build_closure3: function _EmailSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure3: function _EmailSettingsState_build__closure3(t0) { this.value = t0; }, _EmailSettingsState_build_closure4: function _EmailSettingsState_build_closure4(t0) { this.viewModel = t0; }, _EmailSettingsState_build_closure5: function _EmailSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure2: function _EmailSettingsState_build__closure2(t0) { this.value = t0; }, _EmailSettingsState_build_closure6: function _EmailSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure1: function _EmailSettingsState_build__closure1(t0) { this.value = t0; }, _EmailSettingsState_build_closure7: function _EmailSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure0: function _EmailSettingsState_build__closure0(t0) { this.value = t0; }, _EmailSettingsState_build_closure8: function _EmailSettingsState_build_closure8(t0, t1) { this.viewModel = t0; this.settings = t1; }, _EmailSettingsState_build__closure: function _EmailSettingsState_build__closure(t0) { this.value = t0; }, ExpenseSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new N.ExpenseSettingsVM(state, new N.ExpenseSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new N.ExpenseSettingsVM_fromStore_closure0(store), new N.ExpenseSettingsVM_fromStore_closure1(store)); }, ExpenseSettingsScreen: function ExpenseSettingsScreen(t0) { this.key = t0; }, ExpenseSettingsScreen_build_closure: function ExpenseSettingsScreen_build_closure() { }, ExpenseSettingsVM: function ExpenseSettingsVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; _.onConfigureCategoriesPressed = t4; }, ExpenseSettingsVM_fromStore_closure0: function ExpenseSettingsVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseSettingsVM_fromStore_closure: function ExpenseSettingsVM_fromStore_closure(t0) { this.store = t0; }, ExpenseSettingsVM_fromStore__closure: function ExpenseSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, ExpenseSettingsVM_fromStore_closure1: function ExpenseSettingsVM_fromStore_closure1(t0) { this.store = t0; }, ImportExportVM_fromStore: function(store) { return new N.ImportExportVM(store.get$_store$_state()); }, ImportExportScreen: function ImportExportScreen(t0) { this.key = t0; }, ImportExportScreen_build_closure: function ImportExportScreen_build_closure() { }, ImportExportVM: function ImportExportVM(t0) { this.state = t0; }, TaxSettings: function TaxSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaxSettingsState: function _TaxSettingsState(t0) { var _ = this; _._widget = _._tax_settings$_focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TaxSettingsState_build_closure: function _TaxSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaxSettingsState_build__closure4: function _TaxSettingsState_build__closure4(t0) { this.value = t0; }, _TaxSettingsState_build_closure0: function _TaxSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaxSettingsState_build__closure3: function _TaxSettingsState_build__closure3(t0) { this.value = t0; }, _TaxSettingsState_build_closure1: function _TaxSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure2: function _TaxSettingsState_build__closure2(t0) { this.value = t0; }, _TaxSettingsState_build_closure2: function _TaxSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure1: function _TaxSettingsState_build__closure1(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure3: function _TaxSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure0: function _TaxSettingsState_build__closure0(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure4: function _TaxSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaxSettingsState_build__closure: function _TaxSettingsState_build__closure(t0) { this.taxRate = t0; }, _TaxSettingsState_build_closure5: function _TaxSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, NumberOfRatesSelector: function NumberOfRatesSelector(t0, t1, t2, t3) { var _ = this; _.label = t0; _.numberOfRates = t1; _.onChanged = t2; _.key = t3; }, NumberOfRatesSelector_build_closure: function NumberOfRatesSelector_build_closure(t0) { this.$this = t0; }, TaskStatusPresenter: function TaskStatusPresenter() { this.context = this.entity = null; }, VendorEditNotes: function VendorEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditNotesState: function VendorEditNotesState(t0, t1, t2, t3) { var _ = this; _._vendor_edit_notes$_publicNotesController = t0; _._vendor_edit_notes$_privateNotesController = t1; _._vendor_edit_notes$_controllers = null; _._vendor_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, VendorEditNotesState_didChangeDependencies_closure: function VendorEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditNotesState_didChangeDependencies_closure0: function VendorEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditNotesState_dispose_closure: function VendorEditNotesState_dispose_closure(t0) { this.$this = t0; }, VendorEditNotesState__onChanged_closure: function VendorEditNotesState__onChanged_closure(t0) { this.$this = t0; }, VendorEditNotesState__onChanged_closure0: function VendorEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditNotesState_build_closure: function VendorEditNotesState_build_closure(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditNotesState_build__closure: function VendorEditNotesState_build__closure(t0) { this.currency = t0; }, VendorPresenter: function VendorPresenter() { this.context = this.entity = null; }, VendorView: function VendorView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _VendorViewState: function _VendorViewState(t0, t1) { var _ = this; _._vendor_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _VendorViewState_build_closure0: function _VendorViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.vendor = t2; }, _VendorViewState_build__closure: function _VendorViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build__closure0: function _VendorViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build__closure1: function _VendorViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _VendorViewState_build_closure: function _VendorViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, __VendorViewState_State_SingleTickerProviderStateMixin: function __VendorViewState_State_SingleTickerProviderStateMixin() { }, WebhookEdit: function WebhookEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _WebhookEditState: function _WebhookEditState(t0, t1, t2, t3, t4, t5) { var _ = this; _._targetUrlController = t0; _._headerKeyController = t1; _._headerValueController = t2; _._webhook_edit$_debouncer = t3; _._webhook_edit$_controllers = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _WebhookEditState_didChangeDependencies_closure: function _WebhookEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _WebhookEditState_didChangeDependencies_closure0: function _WebhookEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _WebhookEditState_dispose_closure: function _WebhookEditState_dispose_closure(t0) { this.$this = t0; }, _WebhookEditState__onChanged_closure: function _WebhookEditState__onChanged_closure(t0) { this.$this = t0; }, _WebhookEditState__onChanged_closure0: function _WebhookEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.webhook = t1; }, _WebhookEditState_build_closure0: function _WebhookEditState_build_closure0(t0) { this.viewModel = t0; }, _WebhookEditState_build_closure1: function _WebhookEditState_build_closure1(t0) { this.viewModel = t0; }, _WebhookEditState_build_closure: function _WebhookEditState_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.localization = t1; _.webhook = t2; _.viewModel = t3; _.key = t4; _.value = t5; }, _WebhookEditState_build__closure: function _WebhookEditState_build__closure(t0) { this.localization = t0; }, _WebhookEditState_build__closure3: function _WebhookEditState_build__closure3(t0, t1) { this.viewModel = t0; this.webhook = t1; }, _WebhookEditState_build___closure2: function _WebhookEditState_build___closure2(t0) { this.value = t0; }, _WebhookEditState_build__closure0: function _WebhookEditState_build__closure0(t0) { this.localization = t0; }, _WebhookEditState_build__closure4: function _WebhookEditState_build__closure4(t0, t1) { this.viewModel = t0; this.webhook = t1; }, _WebhookEditState_build___closure1: function _WebhookEditState_build___closure1(t0) { this.value = t0; }, _WebhookEditState_build__closure1: function _WebhookEditState_build__closure1(t0) { this.$this = t0; }, _WebhookEditState_build___closure4: function _WebhookEditState_build___closure4() { }, _WebhookEditState_build__closure2: function _WebhookEditState_build__closure2(t0) { this.$this = t0; }, _WebhookEditState_build___closure3: function _WebhookEditState_build___closure3() { }, _WebhookEditState_build__closure5: function _WebhookEditState_build__closure5(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.webhook = t1; _.key = t2; _.viewModel = t3; _.value = t4; }, _WebhookEditState_build___closure0: function _WebhookEditState_build___closure0(t0, t1) { this.key = t0; this.value = t1; }, _WebhookEditState_build__closure6: function _WebhookEditState_build__closure6(t0, t1, t2) { this.webhook = t0; this.localization = t1; this.viewModel = t2; }, _WebhookEditState_build___closure: function _WebhookEditState_build___closure(t0, t1, t2) { this.viewModel = t0; this.webhook = t1; this.key = t2; }, _WebhookEditState_build____closure: function _WebhookEditState_build____closure(t0) { this.key = t0; }, loadDesign: function(context, design, isDraftMode, onComplete) { var request, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), credentials = state.get$credentials(state), url = credentials.url + "/preview"; if (isDraftMode) url += "?html=true"; request = D._$DesignPreviewRequest$_(design, "", C.EntityType_invoice); new F.WebClient().post$4$data$rawResponse(url, credentials.token, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$designPreviewRequestSerializer(), request)), true).then$1$1(0, new N.loadDesign_closure(context, onComplete), type$.Null).catchError$1(new N.loadDesign_closure0(context, onComplete)); }, loadDesign_closure: function loadDesign_closure(t0, t1) { this.context = t0; this.onComplete = t1; }, loadDesign_closure0: function loadDesign_closure0(t0, t1) { this.context = t0; this.onComplete = t1; }, EnumUtils_parse: function(enumItem) { if (enumItem == null) return null; return J.toString$0$(enumItem).split(".")[1]; }, EnumUtils_fromString: function(enumValues, value, $T) { if (value == null || false) return null; return C.JSArray_methods.singleWhere$2$orElse(enumValues, new N.EnumUtils_fromString_closure(value, $T), new N.EnumUtils_fromString_closure0()); }, EnumUtils_fromString_closure: function EnumUtils_fromString_closure(t0, t1) { this.value = t0; this.T = t1; }, EnumUtils_fromString_closure0: function EnumUtils_fromString_closure0() { }, Settings$: function(receiver) { return new N.Settings(); }, PdfJs: function PdfJs() { }, Settings: function Settings() { }, PdfJsDocLoader: function PdfJsDocLoader() { }, PdfJsDoc: function PdfJsDoc() { }, PdfJsPage: function PdfJsPage() { }, PdfJsViewport: function PdfJsViewport() { }, PdfJsRender: function PdfJsRender() { }, LoadingState: function LoadingState(t0) { this._rounded_loading_button$_name = t0; }, RoundedLoadingButton: function RoundedLoadingButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.controller = t0; _.onPressed = t1; _.child = t2; _.color = t3; _.height = t4; _.width = t5; _.borderRadius = t6; _.key = t7; }, RoundedLoadingButtonState: function RoundedLoadingButtonState(t0, t1, t2) { var _ = this; _.__RoundedLoadingButtonState__borderAnimation = _.__RoundedLoadingButtonState__bounceAnimation = _.__RoundedLoadingButtonState__squeezeAnimation = _.__RoundedLoadingButtonState__checkButtonControler = _.__RoundedLoadingButtonState__borderController = _.__RoundedLoadingButtonState__buttonController = $; _._rounded_loading_button$_state = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, RoundedLoadingButtonState_build_closure: function RoundedLoadingButtonState_build_closure(t0, t1) { this.$this = t0; this._loader = t1; }, RoundedLoadingButtonState_initState_closure: function RoundedLoadingButtonState_initState_closure(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure1: function RoundedLoadingButtonState_initState__closure1() { }, RoundedLoadingButtonState_initState_closure0: function RoundedLoadingButtonState_initState_closure0(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure0: function RoundedLoadingButtonState_initState__closure0() { }, RoundedLoadingButtonState_initState_closure1: function RoundedLoadingButtonState_initState_closure1(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState_closure2: function RoundedLoadingButtonState_initState_closure2(t0) { this.$this = t0; }, RoundedLoadingButtonState_initState__closure: function RoundedLoadingButtonState_initState__closure() { }, RoundedLoadingButtonController: function RoundedLoadingButtonController() { this.__RoundedLoadingButtonController__resetListener = this.__RoundedLoadingButtonController__startListener = $; }, _RoundedLoadingButtonState_State_TickerProviderStateMixin: function _RoundedLoadingButtonState_State_TickerProviderStateMixin() { }, positionDependentBox: function(childSize, preferBelow, size, target, verticalOffset) { var fitsAbove, tooltipBelow, y, x, normalizedTargetX, edge, t1 = target._dy, t2 = t1 + verticalOffset, t3 = childSize._dy, t4 = size._dy - 10, fitsBelow = t2 + t3 <= t4; t3 = t1 - verticalOffset - t3; fitsAbove = t3 >= 10; if (preferBelow) tooltipBelow = fitsBelow || !fitsAbove; else tooltipBelow = !(fitsAbove || !fitsBelow); y = tooltipBelow ? Math.min(t2, t4) : Math.max(t3, 10); t1 = size._dx; t2 = childSize._dx; if (t1 - 20 < t2) x = (t1 - t2) / 2; else { t3 = t1 - 10; normalizedTargetX = J.clamp$2$n(target._dx, 10, t3); t4 = t2 / 2; edge = 10 + t4; if (normalizedTargetX < edge) x = 10; else x = normalizedTargetX > t1 - edge ? t3 - t2 : normalizedTargetX - t4; } return new P.Offset(x, y); }, ChildLayoutHelper_dryLayoutChild: function(child, constraints) { return child.getDryLayout$1(constraints); }, ChildLayoutHelper_layoutChild: function(child, constraints) { var t1; child.layout$2$parentUsesSize(0, constraints, true); t1 = child._box$_size; t1.toString; return t1; } }, A = {CopyOnWriteSet: function CopyOnWriteSet(t0, t1, t2) { var _ = this; _._copy_on_write_set$_setFactory = t0; _._copy_on_write_set$_copyBeforeWrite = true; _._copy_on_write_set$_set = t1; _.$ti = t2; }, hashObjects: function(objects) { return A._finish(J.fold$1$2$ax(objects, 0, new A.hashObjects_closure(), type$.int)); }, _combine: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _finish: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashObjects_closure: function hashObjects_closure() { }, BuiltMap_BuiltMap: function(map, $K, $V) { var t1 = type$.Map_dynamic_dynamic._is(map) || false, t2 = J.getInterceptor$(map); if (t1) return A._BuiltMap$copyAndCheckTypes(t2.get$keys(map), new A.BuiltMap_BuiltMap_closure(map), $K, $V); else throw H.wrapException(P.ArgumentError$("expected Map or BuiltMap, got " + t2.get$runtimeType(map).toString$0(0))); }, BuiltMap_BuiltMap$from: function(map, $K, $V) { return A._BuiltMap$copyAndCheckTypes(map.get$keys(map), new A.BuiltMap_BuiltMap$from_closure(map), $K, $V); }, _BuiltMap$copyAndCheckTypes: function(keys, lookup, $K, $V) { var t1 = new A._BuiltMap(null, P.LinkedHashMap_LinkedHashMap$_empty($K, $V), $K._eval$1("@<0>")._bind$1($V)._eval$1("_BuiltMap<1,2>")); t1._BuiltMap$copyAndCheckTypes$2(keys, lookup, $K, $V); return t1; }, MapBuilder_MapBuilder: function($K, $V) { var t1 = new A.MapBuilder(null, $, null, $K._eval$1("@<0>")._bind$1($V)._eval$1("MapBuilder<1,2>")); t1.replace$1(0, C.Map_empty0); return t1; }, BuiltMap: function BuiltMap() { }, BuiltMap_BuiltMap_closure: function BuiltMap_BuiltMap_closure(t0) { this.map = t0; }, BuiltMap_BuiltMap$from_closure: function BuiltMap_BuiltMap$from_closure(t0) { this.map = t0; }, BuiltMap_hashCode_closure: function BuiltMap_hashCode_closure(t0) { this.$this = t0; }, _BuiltMap: function _BuiltMap(t0, t1, t2) { var _ = this; _._mapFactory = t0; _._map$_map = t1; _._map$_keys = _._hashCode = null; _.$ti = t2; }, MapBuilder: function MapBuilder(t0, t1, t2, t3) { var _ = this; _._mapFactory = t0; _.__MapBuilder__map = t1; _._mapOwner = t2; _.$ti = t3; }, MapBuilder_replace_closure: function MapBuilder_replace_closure(t0, t1) { this.$this = t0; this.replacement = t1; }, MapBuilder_replace_closure0: function MapBuilder_replace_closure0(t0, t1) { this.$this = t0; this.replacement = t1; }, JsonObject_JsonObject: function(value) { if (typeof value == "number") return new A.NumJsonObject(value); else if (typeof value == "string") return new A.StringJsonObject(value); else if (H._isBool(value)) return new A.BoolJsonObject(value); else if (type$.List_nullable_Object._is(value)) return new A.ListJsonObject(new P.UnmodifiableListView(value, type$.UnmodifiableListView_nullable_Object)); else if (type$.Map_of_String_and_nullable_Object._is(value)) return new A.MapJsonObject(new P.UnmodifiableMapView(value, type$.UnmodifiableMapView_of_String_and_nullable_Object)); else if (type$.Map_dynamic_dynamic._is(value)) return new A.MapJsonObject(new P.UnmodifiableMapView(J.cast$2$0$ax(value, type$.String, type$.nullable_Object), type$.UnmodifiableMapView_of_String_and_nullable_Object)); else throw H.wrapException(P.ArgumentError$value(value, "value", "Must be bool, List, Map, num or String")); }, JsonObject: function JsonObject() { }, BoolJsonObject: function BoolJsonObject(t0) { this.value = t0; }, ListJsonObject: function ListJsonObject(t0) { this.value = t0; }, MapJsonObject: function MapJsonObject(t0) { this.value = t0; }, NumJsonObject: function NumJsonObject(t0) { this.value = t0; }, StringJsonObject: function StringJsonObject(t0) { this.value = t0; }, CachedNetworkImage$: function(errorWidget, fit, height, httpHeaders, imageRenderMethodForWeb, imageUrl, key, placeholder, width) { return new A.CachedNetworkImage(new X.CachedNetworkImageProvider(null, imageUrl, null, httpHeaders, imageRenderMethodForWeb == null ? C.ImageRenderMethodForWeb_0 : imageRenderMethodForWeb), imageUrl, placeholder, errorWidget, width, height, fit, key); }, CachedNetworkImage: function CachedNetworkImage(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._cached_image_widget$_image = t0; _.imageUrl = t1; _.placeholder = t2; _.errorWidget = t3; _.width = t4; _.height = t5; _.fit = t6; _.key = t7; }, lookAhead: function(base, start, cursor, state) { if (state === 208) return A.lookAheadRegional(base, start, cursor); if (state === 224) { if (A.lookAheadPictorgraphicExtend(base, start, cursor) >= 0) return 145; return 64; } throw H.wrapException(P.StateError$("Unexpected state: " + C.JSInt_methods.toRadixString$1(state, 16))); }, lookAheadRegional: function(base, start, cursor) { var t1, index, count, index0, tail, lead; for (t1 = J.getInterceptor$s(base), index = cursor, count = 0; index0 = index - 2, index0 >= start; index = index0) { tail = t1.codeUnitAt$1(base, index - 1); if ((tail & 64512) !== 56320) break; lead = C.JSString_methods.codeUnitAt$1(base, index0); if ((lead & 64512) !== 55296) break; if (S.high(lead, tail) !== 6) break; count ^= 1; } if (count === 0) return 193; else return 144; }, lookAheadPictorgraphicExtend: function(base, start, cursor) { var t1, index, char, category, prevChar, t2; for (t1 = J.getInterceptor$s(base), index = cursor; index > start;) { --index; char = t1.codeUnitAt$1(base, index); if ((char & 64512) !== 56320) category = S.low(char); else { if (index > start) { --index; prevChar = C.JSString_methods.codeUnitAt$1(base, index); t2 = (prevChar & 64512) === 55296; } else { prevChar = 0; t2 = false; } if (t2) category = S.high(prevChar, char); else break; } if (category === 7) return index; if (category !== 4) break; } return -1; }, isGraphemeClusterBoundary: function(text, start, end, index) { var char, index0, prevChar, catAfter, t1, nextChar, catBefore, prevPrevChar, state, _s208_ = string$.x10__0__; if (start < index && index < end) { char = C.JSString_methods.codeUnitAt$1(text, index); index0 = index - 1; prevChar = C.JSString_methods.codeUnitAt$1(text, index0); if ((char & 63488) !== 55296) catAfter = S.low(char); else if ((char & 64512) === 55296) { t1 = index + 1; if (t1 >= end) return true; nextChar = C.JSString_methods.codeUnitAt$1(text, t1); if ((nextChar & 64512) !== 56320) return true; catAfter = S.high(char, nextChar); } else return (prevChar & 64512) !== 55296; if ((prevChar & 64512) !== 56320) { catBefore = S.low(prevChar); index = index0; } else { index -= 2; if (start <= index) { prevPrevChar = C.JSString_methods.codeUnitAt$1(text, index); if ((prevPrevChar & 64512) !== 55296) return true; catBefore = S.high(prevPrevChar, prevChar); } else return true; } state = C.JSString_methods._codeUnitAt$1(_s208_, C.JSString_methods._codeUnitAt$1(_s208_, catAfter | 176) & 240 | catBefore); return ((state >= 208 ? A.lookAhead(text, start, index, state) : state) & 1) === 0; } return start !== end; }, previousBreak: function(text, start, end, index) { var nextChar, category, indexBefore, indexAfter, secondChar, prevChar; if (index === start || index === end) return index; nextChar = C.JSString_methods.codeUnitAt$1(text, index); if ((nextChar & 63488) !== 55296) { category = S.low(nextChar); indexBefore = index; } else if ((nextChar & 64512) === 55296) { indexAfter = index + 1; if (indexAfter < end) { secondChar = C.JSString_methods.codeUnitAt$1(text, indexAfter); category = (secondChar & 64512) === 56320 ? S.high(nextChar, secondChar) : 2; } else category = 2; indexBefore = index; } else { indexBefore = index - 1; prevChar = C.JSString_methods.codeUnitAt$1(text, indexBefore); if ((prevChar & 64512) === 55296) category = S.high(prevChar, nextChar); else { indexBefore = index; category = 2; } } return new A.BackBreaks(text, start, indexBefore, C.JSString_methods._codeUnitAt$1(string$.x10__0__, category | 176)).nextBreak$0(); }, nextBreak: function(text, start, end, index) { var indexBefore, prevChar, prevCategory, nextChar, secondCharIndex, secondChar, state, t1; if (index === start || index === end) return index; indexBefore = index - 1; prevChar = C.JSString_methods.codeUnitAt$1(text, indexBefore); if ((prevChar & 63488) !== 55296) prevCategory = S.low(prevChar); else if ((prevChar & 64512) === 55296) { nextChar = C.JSString_methods.codeUnitAt$1(text, index); if ((nextChar & 64512) === 56320) { ++index; if (index === end) return end; prevCategory = S.high(prevChar, nextChar); } else prevCategory = 2; } else if (indexBefore > start) { secondCharIndex = indexBefore - 1; secondChar = C.JSString_methods.codeUnitAt$1(text, secondCharIndex); if ((secondChar & 64512) === 55296) { prevCategory = S.high(secondChar, prevChar); indexBefore = secondCharIndex; } else prevCategory = 2; } else prevCategory = 2; if (prevCategory === 6) state = A.lookAheadRegional(text, start, indexBefore) !== 144 ? 160 : 48; else { t1 = prevCategory === 1; if (t1 || prevCategory === 4) if (A.lookAheadPictorgraphicExtend(text, start, indexBefore) >= 0) state = t1 ? 144 : 128; else state = 48; else state = C.JSString_methods._codeUnitAt$1(string$.x200_000, prevCategory | 176); } return new A.Breaks(text, text.length, index, state).nextBreak$0(); }, Breaks: function Breaks(t0, t1, t2, t3) { var _ = this; _.base = t0; _.end = t1; _.cursor = t2; _.state = t3; }, BackBreaks: function BackBreaks(t0, t1, t2, t3) { var _ = this; _.base = t0; _.start = t1; _.cursor = t2; _.state = t3; }, BaseBarRendererConfig: function BaseBarRendererConfig() { }, BarGroupingType: function BarGroupingType(t0) { this._base_bar_renderer_config$_name = t0; }, LinearScaleFunction: function LinearScaleFunction() { var _ = this; _.domainTranslate = _.rangeBandPixels = 0; _.scalingFactor = 1; _.stepSizePixels = _.rangeTranslate = 0; }, NumericTickProvider__getEnclosingPowerOfTen: function(number) { var t1; if (number === 0) return 1; t1 = Math.pow(10, C.JSNumber_methods.ceil$0(0.4342944819032518 * Math.log(Math.abs(number)))); return t1 * (number < 0 ? -1 : 1); }, NumericTickProvider__getStepLessThan: function(number, stepSize) { var t1; if (number === 0 || stepSize === 0) return 0; t1 = number / stepSize; return (stepSize > 0 ? C.JSNumber_methods.floor$0(t1) : C.JSNumber_methods.ceil$0(t1)) * stepSize; }, NumericTickProvider: function NumericTickProvider() { var _ = this; _.__NumericTickProvider__high = _.__NumericTickProvider__low = $; _._maxTickCount = _._minTickCount = null; }, _TickStepInfo: function _TickStepInfo(t0, t1) { this.stepSize = t0; this.tickStart = t1; }, OrdinalScaleDomainInfo: function OrdinalScaleDomainInfo(t0, t1) { this._ordinal_scale_domain_info$_index = 0; this._domainsToOrder = t0; this._domainList = t1; }, Palette: function Palette() { }, GraphicsFactory: function GraphicsFactory(t0, t1) { this.textScaleFactor = t0; this.defaultTextStyle = t1; }, TextStyle0: function TextStyle0() { var _ = this; _.lineHeight = _.color = _.fontFamily = _.fontSize = null; }, XFile$: function(path, lastModified, $length, mimeType, $name) { if (lastModified == null) P.DateTime$fromMillisecondsSinceEpoch(0, false); return new A.XFile($name == null ? "" : $name, path, $length); }, XFile: function XFile(t0, t1, t2) { this.name = t0; this.__XFile_path = t1; this._html0$_length = t2; }, CupertinoThumbPainter: function CupertinoThumbPainter() { }, showLicensePage: function(applicationIcon, applicationLegalese, applicationName, applicationVersion, context) { K.Navigator_of(context, false).push$1(V.MaterialPageRoute$(new A.showLicensePage_closure(applicationName, applicationVersion, applicationIcon, applicationLegalese), null, type$.void)); }, _PackagesViewState$: function() { var t1 = type$._LicenseData; return new A._PackagesViewState(F.LicenseRegistry_licenses().fold$1$2(0, new A._LicenseData(H.setRuntimeTypeInfo([], type$.JSArray_LicenseEntry), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_int), H.setRuntimeTypeInfo([], type$.JSArray_String)), new A._PackagesViewState_licenses_closure(), t1).then$1$1(0, new A._PackagesViewState_licenses_closure0(), t1), C._StateLifecycle_0); }, _MasterDetailFlow_of: function(context) { var pageOpener = context.findAncestorStateOfType$1$0(type$._MasterDetailScaffoldState), t1 = pageOpener == null ? context.findAncestorStateOfType$1$0(type$._MasterDetailFlowState) : pageOpener; return t1 != null ? new A._MasterDetailFlowProxy(t1) : null; }, showLicensePage_closure: function showLicensePage_closure(t0, t1, t2, t3) { var _ = this; _.applicationName = t0; _.applicationVersion = t1; _.applicationIcon = t2; _.applicationLegalese = t3; }, LicensePage: function LicensePage(t0, t1, t2, t3, t4) { var _ = this; _.applicationName = t0; _.applicationVersion = t1; _.applicationIcon = t2; _.applicationLegalese = t3; _.key = t4; }, _LicensePageState: function _LicensePageState(t0, t1) { var _ = this; _.selectedId = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AboutProgram: function _AboutProgram(t0, t1, t2, t3, t4) { var _ = this; _.name = t0; _.version = t1; _.icon = t2; _.legalese = t3; _.key = t4; }, _PackagesView: function _PackagesView(t0, t1, t2, t3) { var _ = this; _.about = t0; _.isLateral = t1; _.selectedId = t2; _.key = t3; }, _PackagesViewState: function _PackagesViewState(t0, t1) { var _ = this; _.licenses = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _PackagesViewState_licenses_closure: function _PackagesViewState_licenses_closure() { }, _PackagesViewState_licenses_closure0: function _PackagesViewState_licenses_closure0() { }, _PackagesViewState_build_closure: function _PackagesViewState_build_closure(t0) { this.$this = t0; }, _PackagesViewState_build__closure: function _PackagesViewState_build__closure(t0, t1) { this.$this = t0; this.snapshot = t1; }, _PackagesViewState_build___closure: function _PackagesViewState_build___closure(t0, t1) { this.$this = t0; this.snapshot = t1; }, _PackagesViewState__initDefaultDetailPage_closure: function _PackagesViewState__initDefaultDetailPage_closure(t0) { this.data = t0; }, _PackagesViewState__packagesList_closure: function _PackagesViewState__packagesList_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.data = t1; _.drawSelection = t2; _.selectedId = t3; _.context = t4; }, _PackagesViewState__packagesList__closure: function _PackagesViewState__packagesList__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.index = t1; _.context = t2; _.packageName = t3; _.bindings = t4; _.data = t5; }, _PackagesViewState__packagesList___closure: function _PackagesViewState__packagesList___closure(t0) { this.data = t0; }, _PackageListTile: function _PackageListTile(t0, t1, t2, t3, t4) { var _ = this; _.packageName = t0; _.isSelected = t1; _.numberLicenses = t2; _.onTap = t3; _.key = t4; }, _LicenseData: function _LicenseData(t0, t1, t2) { var _ = this; _.licenses = t0; _.packageLicenseBindings = t1; _.packages = t2; _.firstPackage = null; }, _LicenseData_sortPackages_closure: function _LicenseData_sortPackages_closure(t0) { this.$this = t0; }, _DetailArguments: function _DetailArguments(t0, t1) { this.packageName = t0; this.licenseEntries = t1; }, _PackageLicensePage: function _PackageLicensePage(t0, t1, t2, t3) { var _ = this; _.packageName = t0; _.licenseEntries = t1; _.scrollController = t2; _.key = t3; }, _PackageLicensePageState: function _PackageLicensePageState(t0, t1) { var _ = this; _._licenses = t0; _._loaded = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _PackageLicensePageState__initLicenses_closure: function _PackageLicensePageState__initLicenses_closure(t0, t1) { this.$this = t0; this.paragraphs = t1; }, _PackageLicensePageState__initLicenses_closure0: function _PackageLicensePageState__initLicenses_closure0(t0) { this.$this = t0; }, _PackageLicensePageState_build_closure: function _PackageLicensePageState_build_closure(t0) { this.listWidgets = t0; }, _PackageLicensePageTitle: function _PackageLicensePageTitle(t0, t1, t2, t3) { var _ = this; _.title = t0; _.subtitle = t1; _.theme = t2; _.key = t3; }, _ActionLevel: function _ActionLevel(t0) { this._about$_name = t0; }, _LayoutMode: function _LayoutMode(t0) { this._about$_name = t0; }, _Focus: function _Focus(t0) { this._about$_name = t0; }, _MasterDetailFlow: function _MasterDetailFlow(t0, t1, t2, t3, t4) { var _ = this; _.masterViewBuilder = t0; _.detailPageBuilder = t1; _.detailPageFABlessGutterWidth = t2; _.title = t3; _.key = t4; }, _MasterDetailFlowProxy: function _MasterDetailFlowProxy(t0) { this._pageOpener = t0; }, _MasterDetailFlowState: function _MasterDetailFlowState(t0, t1, t2) { var _ = this; _.focus = t0; _._builtLayout = _._cachedDetailArguments = null; _._navigatorKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MasterDetailFlowState_build_closure: function _MasterDetailFlowState_build_closure(t0) { this.$this = t0; }, _MasterDetailFlowState__nestedUI_closure1: function _MasterDetailFlowState__nestedUI_closure1(t0) { this.$this = t0; }, _MasterDetailFlowState__nestedUI_closure: function _MasterDetailFlowState__nestedUI_closure(t0, t1) { this.$this = t0; this.masterPageRoute = t1; }, _MasterDetailFlowState__nestedUI_closure0: function _MasterDetailFlowState__nestedUI_closure0(t0, t1) { this.$this = t0; this.masterPageRoute = t1; }, _MasterDetailFlowState__masterPageRoute_closure: function _MasterDetailFlowState__masterPageRoute_closure(t0, t1) { this.$this = t0; this.context = t1; }, _MasterDetailFlowState__masterPageRoute__closure: function _MasterDetailFlowState__masterPageRoute__closure(t0) { this.context = t0; }, _MasterDetailFlowState__detailPageRoute_closure: function _MasterDetailFlowState__detailPageRoute_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailFlowState__detailPageRoute__closure: function _MasterDetailFlowState__detailPageRoute__closure(t0, t1) { this.$this = t0; this.context = t1; }, _MasterDetailFlowState__lateralUI_closure1: function _MasterDetailFlowState__lateralUI_closure1() { }, _MasterDetailFlowState__lateralUI_closure0: function _MasterDetailFlowState__lateralUI_closure0(t0) { this.$this = t0; }, _MasterDetailFlowState__lateralUI_closure: function _MasterDetailFlowState__lateralUI_closure(t0) { this.$this = t0; }, _MasterPage: function _MasterPage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.masterViewBuilder = t0; _.title = t1; _.leading = t2; _.automaticallyImplyLeading = t3; _.centerTitle = t4; _.flexibleSpace = t5; _.actionBuilder = t6; _.floatingActionButton = t7; _.floatingActionButtonLocation = t8; _.key = t9; }, _MasterDetailScaffold: function _MasterDetailScaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.masterViewBuilder = t0; _.detailPageBuilder = t1; _.actionBuilder = t2; _.floatingActionButton = t3; _.floatingActionButtonLocation = t4; _.initialArguments = t5; _.leading = t6; _.title = t7; _.automaticallyImplyLeading = t8; _.centerTitle = t9; _.detailPageFABlessGutterWidth = t10; _.detailPageFABGutterWidth = t11; _.masterViewWidth = t12; _.key = t13; }, _MasterDetailScaffoldState: function _MasterDetailScaffoldState(t0, t1) { var _ = this; _.___MasterDetailScaffoldState_masterViewWidth = _.___MasterDetailScaffoldState_detailPageFABlessGutterWidth = _.___MasterDetailScaffoldState_detailPageFABGutterWidth = _.___MasterDetailScaffoldState_floatingActionButtonLocation = $; _._detailArguments = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MasterDetailScaffoldState_openDetailPage_closure: function _MasterDetailScaffoldState_openDetailPage_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailScaffoldState_setInitialDetailPage_closure: function _MasterDetailScaffoldState_setInitialDetailPage_closure(t0, t1) { this.$this = t0; this.$arguments = t1; }, _MasterDetailScaffoldState_build_closure: function _MasterDetailScaffoldState_build_closure(t0) { this.$this = t0; }, _MasterDetailScaffoldState_build__closure: function _MasterDetailScaffoldState_build__closure() { }, _DetailView: function _DetailView(t0, t1, t2) { this._builder = t0; this._about$_arguments = t1; this.key = t2; }, _DetailView_build_closure: function _DetailView_build_closure(t0) { this.$this = t0; }, ButtonStyle$: function(alignment, animationDuration, backgroundColor, elevation, enableFeedback, fixedSize, foregroundColor, minimumSize, mouseCursor, overlayColor, padding, shadowColor, shape, side, splashFactory, tapTargetSize, textStyle, visualDensity) { return new A.ButtonStyle(textStyle, backgroundColor, foregroundColor, overlayColor, shadowColor, elevation, padding, minimumSize, fixedSize, side, shape, mouseCursor, visualDensity, tapTargetSize, animationDuration, enableFeedback, alignment, splashFactory); }, ButtonStyle_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.textStyle; t3 = b == null; t4 = t3 ? _null : b.textStyle; t4 = A.ButtonStyle__lerpProperties(t2, t4, t, A.text_style_TextStyle_lerp$closure(), type$.nullable_TextStyle); t2 = t1 ? _null : a.backgroundColor; t5 = t3 ? _null : b.backgroundColor; t6 = type$.nullable_Color; t5 = A.ButtonStyle__lerpProperties(t2, t5, t, P.ui_Color_lerp$closure(), t6); t2 = t1 ? _null : a.foregroundColor; t2 = A.ButtonStyle__lerpProperties(t2, t3 ? _null : b.foregroundColor, t, P.ui_Color_lerp$closure(), t6); t7 = t1 ? _null : a.overlayColor; t7 = A.ButtonStyle__lerpProperties(t7, t3 ? _null : b.overlayColor, t, P.ui_Color_lerp$closure(), t6); t8 = t1 ? _null : a.shadowColor; t6 = A.ButtonStyle__lerpProperties(t8, t3 ? _null : b.shadowColor, t, P.ui_Color_lerp$closure(), t6); t8 = t1 ? _null : a.elevation; t9 = t3 ? _null : b.elevation; t9 = A.ButtonStyle__lerpProperties(t8, t9, t, P.ui__lerpDouble$closure(), type$.nullable_double); t8 = t1 ? _null : a.padding; t10 = t3 ? _null : b.padding; t10 = A.ButtonStyle__lerpProperties(t8, t10, t, V.edge_insets_EdgeInsetsGeometry_lerp$closure(), type$.nullable_EdgeInsetsGeometry); t8 = t1 ? _null : a.minimumSize; t11 = t3 ? _null : b.minimumSize; t12 = type$.nullable_Size; t11 = A.ButtonStyle__lerpProperties(t8, t11, t, P.ui_Size_lerp$closure(), t12); t8 = t1 ? _null : a.fixedSize; t8 = A.ButtonStyle__lerpProperties(t8, t3 ? _null : b.fixedSize, t, P.ui_Size_lerp$closure(), t12); t12 = t1 ? _null : a.side; t12 = A.ButtonStyle__lerpSides(t12, t3 ? _null : b.side, t); t13 = t1 ? _null : a.shape; t13 = A.ButtonStyle__lerpShapes(t13, t3 ? _null : b.shape, t); t14 = t < 0.5; if (t14) t15 = t1 ? _null : a.mouseCursor; else t15 = t3 ? _null : b.mouseCursor; if (t14) t16 = t1 ? _null : a.visualDensity; else t16 = t3 ? _null : b.visualDensity; if (t14) t17 = t1 ? _null : a.tapTargetSize; else t17 = t3 ? _null : b.tapTargetSize; if (t14) t18 = t1 ? _null : a.animationDuration; else t18 = t3 ? _null : b.animationDuration; if (t14) t19 = t1 ? _null : a.enableFeedback; else t19 = t3 ? _null : b.enableFeedback; t20 = t1 ? _null : a.alignment; t20 = K.AlignmentGeometry_lerp(t20, t3 ? _null : b.alignment, t); if (t14) t1 = t1 ? _null : a.splashFactory; else t1 = t3 ? _null : b.splashFactory; return A.ButtonStyle$(t20, t18, t5, t9, t19, t8, t2, t11, t15, t7, t10, t6, t13, t12, t1, t17, t4, t16); }, ButtonStyle__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new A._LerpProperties3(a, b, t, lerpFunction, $T._eval$1("_LerpProperties3<0>")); }, ButtonStyle__lerpSides: function(a, b, t) { if (a == null && b == null) return null; return new A._LerpSides(a, b, t); }, ButtonStyle__lerpShapes: function(a, b, t) { if (a == null && b == null) return null; return new A._LerpShapes(a, b, t); }, ButtonStyle: function ButtonStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.textStyle = t0; _.backgroundColor = t1; _.foregroundColor = t2; _.overlayColor = t3; _.shadowColor = t4; _.elevation = t5; _.padding = t6; _.minimumSize = t7; _.fixedSize = t8; _.side = t9; _.shape = t10; _.mouseCursor = t11; _.visualDensity = t12; _.tapTargetSize = t13; _.animationDuration = t14; _.enableFeedback = t15; _.alignment = t16; _.splashFactory = t17; }, _LerpProperties3: function _LerpProperties3(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _LerpSides: function _LerpSides(t0, t1, t2) { this.a = t0; this.b = t1; this.t = t2; }, _LerpShapes: function _LerpShapes(t0, t1, t2) { this.a = t0; this.b = t1; this.t = t2; }, _ButtonStyle_Object_Diagnosticable: function _ButtonStyle_Object_Diagnosticable() { }, CardTheme: function CardTheme(t0, t1, t2, t3, t4, t5) { var _ = this; _.clipBehavior = t0; _.color = t1; _.shadowColor = t2; _.elevation = t3; _.margin = t4; _.shape = t5; }, _CardTheme_Object_Diagnosticable: function _CardTheme_Object_Diagnosticable() { }, ColorScheme: function ColorScheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.primary = t0; _.primaryVariant = t1; _.secondary = t2; _.secondaryVariant = t3; _.surface = t4; _.background = t5; _.error = t6; _.onPrimary = t7; _.onSecondary = t8; _.onSurface = t9; _.onBackground = t10; _.onError = t11; _.brightness = t12; }, _ColorScheme_Object_Diagnosticable: function _ColorScheme_Object_Diagnosticable() { }, _AnimationSwap$: function(first, next, $parent, swapThreshold, $T) { return new A._AnimationSwap($parent, swapThreshold, first, next, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), 0, $T._eval$1("_AnimationSwap<0>")); }, FloatingActionButtonLocation: function FloatingActionButtonLocation() { }, StandardFabLocation: function StandardFabLocation() { }, FabTopOffsetY: function FabTopOffsetY() { }, FabFloatOffsetY: function FabFloatOffsetY() { }, FabDockedOffsetY: function FabDockedOffsetY() { }, FabEndOffsetX: function FabEndOffsetX() { }, _EndTopFabLocation: function _EndTopFabLocation() { }, _EndFloatFabLocation: function _EndFloatFabLocation() { }, _EndDockedFabLocation: function _EndDockedFabLocation() { }, FloatingActionButtonAnimator: function FloatingActionButtonAnimator() { }, _ScalingFabMotionAnimator: function _ScalingFabMotionAnimator() { }, _AnimationSwap: function _AnimationSwap(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.parent = t0; _.swapThreshold = t1; _.first = t2; _.next = t3; _._lastValue = _._lastStatus = null; _.AnimationLocalStatusListenersMixin__statusListeners = t4; _.AnimationLocalListenersMixin__listeners = t5; _.AnimationLazyListenerMixin__listenerCounter = t6; _.$ti = t7; }, __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX: function __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY: function __EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY() { }, __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX: function __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY: function __EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY() { }, __EndTopFabLocation_StandardFabLocation_FabEndOffsetX: function __EndTopFabLocation_StandardFabLocation_FabEndOffsetX() { }, __EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY: function __EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY() { }, TimePickerTheme_of: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TimePickerTheme); t1 = K.Theme_of(context); return t1.timePickerTheme; }, TimePickerThemeData: function TimePickerThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.backgroundColor = t0; _.hourMinuteTextColor = t1; _.hourMinuteColor = t2; _.dayPeriodTextColor = t3; _.dayPeriodColor = t4; _.dialHandColor = t5; _.dialBackgroundColor = t6; _.dialTextColor = t7; _.entryModeIconColor = t8; _.hourMinuteTextStyle = t9; _.dayPeriodTextStyle = t10; _.helpTextStyle = t11; _.shape = t12; _.hourMinuteShape = t13; _.dayPeriodShape = t14; _.dayPeriodBorderSide = t15; _.inputDecorationTheme = t16; }, _TimePickerThemeData_Object_Diagnosticable: function _TimePickerThemeData_Object_Diagnosticable() { }, TextStyle$: function(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, inherit, leadingDistribution, letterSpacing, locale, $package, shadows, textBaseline, wordSpacing) { return new A.TextStyle(inherit, color, backgroundColor, $package == null ? fontFamily : "packages/" + $package + "/" + H.S(fontFamily), fontFamilyFallback, $package, fontSize, fontWeight, fontStyle, letterSpacing, wordSpacing, textBaseline, height, leadingDistribution, locale, foreground, background, decoration, decorationColor, decorationStyle, decorationThickness, debugLabel, shadows, fontFeatures); }, TextStyle_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, _null = null, t1 = a == null; if (t1 && b == null) return _null; if (t1) { t1 = b.inherit; t2 = P.Color_lerp(_null, b.color, t); t3 = P.Color_lerp(_null, b.backgroundColor, t); t4 = t < 0.5; t5 = t4 ? _null : b.fontFamily; t6 = t4 ? _null : b.get$fontFamilyFallback(); t7 = t4 ? _null : b.fontSize; t8 = P.FontWeight_lerp(_null, b.fontWeight, t); t9 = t4 ? _null : b.fontStyle; t10 = t4 ? _null : b.letterSpacing; t11 = t4 ? _null : b.wordSpacing; t12 = t4 ? _null : b.textBaseline; t13 = t4 ? _null : b.height; t14 = t4 ? _null : b.leadingDistribution; t15 = t4 ? _null : b.locale; t16 = t4 ? _null : b.foreground; t17 = t4 ? _null : b.background; t18 = t4 ? _null : b.decoration; t19 = t4 ? _null : b.shadows; t20 = t4 ? _null : b.fontFeatures; t21 = P.Color_lerp(_null, b.decorationColor, t); t22 = t4 ? _null : b.decorationStyle; return A.TextStyle$(t17, t3, t2, _null, t18, t21, t22, t4 ? _null : b.decorationThickness, t5, t6, t20, t7, t9, t8, t16, t13, t1, t14, t10, t15, _null, t19, t12, t11); } if (b == null) { t1 = a.inherit; t2 = P.Color_lerp(a.color, _null, t); t3 = P.Color_lerp(_null, a.backgroundColor, t); t4 = t < 0.5; t5 = t4 ? a.fontFamily : _null; t6 = t4 ? a.get$fontFamilyFallback() : _null; t7 = t4 ? a.fontSize : _null; t8 = P.FontWeight_lerp(a.fontWeight, _null, t); t9 = t4 ? a.fontStyle : _null; t10 = t4 ? a.letterSpacing : _null; t11 = t4 ? a.wordSpacing : _null; t12 = t4 ? a.textBaseline : _null; t13 = t4 ? a.height : _null; t14 = t4 ? a.leadingDistribution : _null; t15 = t4 ? a.locale : _null; t16 = t4 ? a.foreground : _null; t17 = t4 ? a.background : _null; t18 = t4 ? a.shadows : _null; t19 = t4 ? a.fontFeatures : _null; t20 = t4 ? a.decoration : _null; t21 = P.Color_lerp(a.decorationColor, _null, t); t22 = t4 ? a.decorationStyle : _null; return A.TextStyle$(t17, t3, t2, _null, t20, t21, t22, t4 ? a.decorationThickness : _null, t5, t6, t19, t7, t9, t8, t16, t13, t1, t14, t10, t15, _null, t18, t12, t11); } t1 = b.inherit; t2 = a.foreground; t3 = t2 == null; t4 = t3 && b.foreground == null ? P.Color_lerp(a.color, b.color, t) : _null; t5 = a.background; t6 = t5 == null; t7 = t6 && b.background == null ? P.Color_lerp(a.backgroundColor, b.backgroundColor, t) : _null; t8 = t < 0.5; t9 = t8 ? a.fontFamily : b.fontFamily; t10 = t8 ? a.get$fontFamilyFallback() : b.get$fontFamilyFallback(); t11 = a.fontSize; t12 = t11 == null ? b.fontSize : t11; t13 = b.fontSize; t11 = P.lerpDouble(t12, t13 == null ? t11 : t13, t); t12 = P.FontWeight_lerp(a.fontWeight, b.fontWeight, t); t13 = t8 ? a.fontStyle : b.fontStyle; t14 = a.letterSpacing; t15 = t14 == null ? b.letterSpacing : t14; t16 = b.letterSpacing; t14 = P.lerpDouble(t15, t16 == null ? t14 : t16, t); t15 = a.wordSpacing; t16 = t15 == null ? b.wordSpacing : t15; t17 = b.wordSpacing; t15 = P.lerpDouble(t16, t17 == null ? t15 : t17, t); t16 = t8 ? a.textBaseline : b.textBaseline; t17 = a.height; t18 = t17 == null ? b.height : t17; t19 = b.height; t17 = P.lerpDouble(t18, t19 == null ? t17 : t19, t); t18 = t8 ? a.leadingDistribution : b.leadingDistribution; t19 = t8 ? a.locale : b.locale; if (!t3 || b.foreground != null) if (t8) { if (t3) { t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t3 = a.color; t3.toString; t2.set$color(0, t3); } } else { t2 = b.foreground; if (t2 == null) { t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t3 = b.color; t3.toString; t2.set$color(0, t3); } } else t2 = _null; if (!t6 || b.background != null) if (t8) if (t6) { t3 = H._detectRenderer(); t3 = t3 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t5 = a.backgroundColor; t5.toString; t3.set$color(0, t5); } else t3 = t5; else { t3 = b.background; if (t3 == null) { t3 = H._detectRenderer(); t3 = t3 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t5 = b.backgroundColor; t5.toString; t3.set$color(0, t5); } } else t3 = _null; t5 = t8 ? a.shadows : b.shadows; t6 = t8 ? a.fontFeatures : b.fontFeatures; t20 = t8 ? a.decoration : b.decoration; t21 = P.Color_lerp(a.decorationColor, b.decorationColor, t); t8 = t8 ? a.decorationStyle : b.decorationStyle; t22 = a.decorationThickness; t23 = t22 == null ? b.decorationThickness : t22; t24 = b.decorationThickness; return A.TextStyle$(t3, t7, t4, _null, t20, t21, t8, P.lerpDouble(t23, t24 == null ? t22 : t24, t), t9, t10, t6, t11, t13, t12, t2, t17, t1, t18, t14, t19, _null, t5, t16, t15); }, TextStyle: function TextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.inherit = t0; _.color = t1; _.backgroundColor = t2; _.fontFamily = t3; _._text_style$_fontFamilyFallback = t4; _._package = t5; _.fontSize = t6; _.fontWeight = t7; _.fontStyle = t8; _.letterSpacing = t9; _.wordSpacing = t10; _.textBaseline = t11; _.height = t12; _.leadingDistribution = t13; _.locale = t14; _.foreground = t15; _.background = t16; _.decoration = t17; _.decorationColor = t18; _.decorationStyle = t19; _.decorationThickness = t20; _.debugLabel = t21; _.shadows = t22; _.fontFeatures = t23; }, TextStyle_fontFamilyFallback_closure: function TextStyle_fontFamilyFallback_closure(t0) { this.$this = t0; }, _TextStyle_Object_Diagnosticable: function _TextStyle_Object_Diagnosticable() { }, MouseTracker__shouldMarkStateDirty: function(state, $event) { var lastEvent; if (state == null) return true; lastEvent = state._latestEvent; if (type$.PointerSignalEvent._is($event)) return false; return type$.PointerAddedEvent._is(lastEvent) || type$.PointerRemovedEvent._is($event) || !lastEvent.get$position(lastEvent).$eq(0, $event.get$position($event)); }, MouseTracker__handleDeviceUpdateMouseEvents: function(details) { var lastAnnotations, nextAnnotations, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, enteringAnnotations, baseEnterEvent, result = details.triggeringEvent; if (result == null) result = details.previousEvent; lastAnnotations = details.lastAnnotations; nextAnnotations = details.nextAnnotations; t1 = result.get$timeStamp(result); t2 = result.get$pointer(); t3 = result.get$kind(result); t4 = result.get$device(result); t5 = result.get$position(result); t6 = result.get$delta(); t7 = result.get$buttons(result); result.get$obscured(); t8 = result.get$pressureMin(); t9 = result.get$pressureMax(); t10 = result.get$distance(); t11 = result.get$distanceMax(); t12 = result.get$size(result); t13 = result.get$radiusMajor(); t14 = result.get$radiusMinor(); t15 = result.get$radiusMin(); t16 = result.get$radiusMax(); t17 = result.get$orientation(result); t18 = result.get$tilt(); lastAnnotations.forEach$1(0, new A.MouseTracker__handleDeviceUpdateMouseEvents_closure(nextAnnotations, F.PointerExitEvent$(t7, t6, t4, t10, t11, result.get$down(), 0, t3, false, t17, t2, t5, t9, t8, t13, t16, t15, t14, t12, result.get$synthesized(), t18, t1).transformed$1(result.get$transform(result)), lastAnnotations)); t1 = nextAnnotations.get$keys(nextAnnotations); t18 = H._instanceType(t1)._eval$1("WhereIterable"); enteringAnnotations = P.List_List$of(new H.WhereIterable(t1, new A.MouseTracker__handleDeviceUpdateMouseEvents_closure0(lastAnnotations), t18), true, t18._eval$1("Iterable.E")); t18 = result.get$timeStamp(result); t1 = result.get$pointer(); t12 = result.get$kind(result); t14 = result.get$device(result); t15 = result.get$position(result); t16 = result.get$delta(); t13 = result.get$buttons(result); result.get$obscured(); t8 = result.get$pressureMin(); t9 = result.get$pressureMax(); t5 = result.get$distance(); t2 = result.get$distanceMax(); t17 = result.get$size(result); t3 = result.get$radiusMajor(); t11 = result.get$radiusMinor(); t10 = result.get$radiusMin(); t4 = result.get$radiusMax(); t6 = result.get$orientation(result); t7 = result.get$tilt(); baseEnterEvent = F.PointerEnterEvent$(t13, t16, t14, t5, t2, result.get$down(), 0, t12, false, t6, t1, t15, t9, t8, t3, t4, t10, t11, t17, result.get$synthesized(), t7, t18).transformed$1(result.get$transform(result)); for (t1 = H._arrayInstanceType(enteringAnnotations)._eval$1("ReversedListIterable<1>"), t2 = new H.ReversedListIterable(enteringAnnotations, t1), t1 = new H.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2.get$validForMouseTracker() && t2.get$onEnter(t2) != null) { t3 = t2.get$onEnter(t2); t3.toString; t3.call$1(baseEnterEvent.transformed$1(nextAnnotations.$index(0, t2))); } } }, _MouseState: function _MouseState(t0, t1) { this._annotations = t0; this._latestEvent = t1; }, _MouseTrackerUpdateDetails: function _MouseTrackerUpdateDetails(t0, t1, t2, t3) { var _ = this; _.lastAnnotations = t0; _.nextAnnotations = t1; _.previousEvent = t2; _.triggeringEvent = t3; }, MouseTracker: function MouseTracker(t0, t1, t2) { var _ = this; _._mouseCursorMixin = t0; _._mouseStates = t1; _._debugDuringDeviceUpdate = false; _.ChangeNotifier__listeners = t2; }, MouseTracker__handleDeviceUpdate_closure: function MouseTracker__handleDeviceUpdate_closure() { }, MouseTracker_updateWithEvent_closure: function MouseTracker_updateWithEvent_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.existingState = t1; _.event = t2; _.device = t3; _.result = t4; }, MouseTracker_updateWithEvent__closure: function MouseTracker_updateWithEvent__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.existingState = t1; _.event = t2; _.device = t3; _.result = t4; }, MouseTracker_updateAllDevices_closure: function MouseTracker_updateAllDevices_closure(t0, t1) { this.$this = t0; this.hitTest = t1; }, MouseTracker__handleDeviceUpdateMouseEvents_closure: function MouseTracker__handleDeviceUpdateMouseEvents_closure(t0, t1, t2) { this.nextAnnotations = t0; this.baseExitEvent = t1; this.lastAnnotations = t2; }, MouseTracker__handleDeviceUpdateMouseEvents_closure0: function MouseTracker__handleDeviceUpdateMouseEvents_closure0(t0) { this.lastAnnotations = t0; }, __MouseTrackerUpdateDetails_Object_Diagnosticable: function __MouseTrackerUpdateDetails_Object_Diagnosticable() { }, RenderSliverFillViewport: function RenderSliverFillViewport(t0, t1, t2, t3, t4, t5) { var _ = this; _._sliver_fill0$_viewportFraction = t0; _._childManager = t1; _._keepAliveBucket = t2; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ViewConfiguration0: function ViewConfiguration0(t0, t1) { this.size = t0; this.devicePixelRatio = t1; }, RenderView: function RenderView(t0, t1, t2, t3) { var _ = this; _._view$_size = t0; _._view$_configuration = t1; _._view$_window = t2; _.automaticSystemUiAdjustment = true; _._rootTransform = null; _.RenderObjectWithChildMixin__child = t3; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderView_RenderObject_RenderObjectWithChildMixin: function _RenderView_RenderObject_RenderObjectWithChildMixin() { }, CustomSemanticsAction_getIdentifier: function(action) { var result = $.CustomSemanticsAction__ids.$index(0, action); if (result == null) { result = $.CustomSemanticsAction__nextId; $.CustomSemanticsAction__nextId = result + 1; $.CustomSemanticsAction__ids.$indexSet(0, action, result); $.CustomSemanticsAction__actions.$indexSet(0, result, action); } return result; }, SemanticsData__sortedListsEqual: function(left, right) { var i; if (left.length !== right.length) return false; for (i = 0; i < left.length; ++i) if (!J.$eq$(left[i], right[i])) return false; return true; }, _SemanticsDiagnosticableNode$: function(childOrder, $name, style, value) { return new A._SemanticsDiagnosticableNode(childOrder, value, $name, true, true, null, style); }, SemanticsProperties$: function(button, checked, currentValueLength, customSemanticsActions, decreasedValue, enabled, focusable, focused, header, hidden, hint, hintOverrides, image, inMutuallyExclusiveGroup, increasedValue, keyboardKey, label, link, liveRegion, maxValueLength, multiline, namesRoute, obscured, onCopy, onCut, onDecrease, onDidGainAccessibilityFocus, onDidLoseAccessibilityFocus, onDismiss, onIncrease, onLongPress, onMoveCursorBackwardByCharacter, onMoveCursorForwardByCharacter, onPaste, onScrollDown, onScrollLeft, onScrollRight, onScrollUp, onSetSelection, onSetText, onTap, readOnly, scopesRoute, selected, slider, sortKey, tagForChildren, textDirection, textField, toggled, value) { return new A.SemanticsProperties(enabled, checked, toggled, selected, button, link, header, textField, slider, keyboardKey, readOnly, focusable, focused, inMutuallyExclusiveGroup, hidden, obscured, multiline, scopesRoute, namesRoute, image, liveRegion, maxValueLength, currentValueLength, label, value, increasedValue, decreasedValue, hint, hintOverrides, textDirection, sortKey, tagForChildren, onTap, onLongPress, onScrollLeft, onScrollRight, onScrollUp, onScrollDown, onIncrease, onDecrease, onCopy, onCut, onPaste, onMoveCursorForwardByCharacter, onMoveCursorBackwardByCharacter, onSetSelection, onSetText, onDidGainAccessibilityFocus, onDidLoseAccessibilityFocus, onDismiss, customSemanticsActions); }, SemanticsNode$: function(key, showOnScreen) { var t14, t1 = $.$get$SemanticsNode__kEmptyConfig(), t2 = t1._isMergingSemanticsOfDescendants, t3 = t1._actions, t4 = t1._semantics$_customSemanticsActions, t5 = t1._actionsAsBits, t6 = t1._flags, t7 = t1._semantics$_label, t8 = t1._semantics$_value, t9 = t1._semantics$_decreasedValue, t10 = t1._semantics$_increasedValue, t11 = t1._semantics$_hint, t12 = t1._semantics$_elevation, t13 = t1._semantics$_thickness; t1 = t1._semantics$_textDirection; t14 = ($.SemanticsNode__lastIdentifier + 1) % 65535; $.SemanticsNode__lastIdentifier = t14; return new A.SemanticsNode(key, t14, showOnScreen, C.Rect_0_0_0_0, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t1); }, _pointInParentCoordinates: function(node, point) { var t1, vector; if (node._semantics$_transform == null) return point; t1 = new Float64Array(3); vector = new E.Vector3(t1); vector.setValues$3(point._dx, point._dy, 0); node._semantics$_transform.transform3$1(vector); return new P.Offset(t1[0], t1[1]); }, _childrenInDefaultOrder: function(children, textDirection) { var t1, _i, child, t2, t3, t4, t5, verticalGroups, group, depth, edge, edges = H.setRuntimeTypeInfo([], type$.JSArray__BoxEdge); for (t1 = children.length, _i = 0; _i < children.length; children.length === t1 || (0, H.throwConcurrentModificationError)(children), ++_i) { child = children[_i]; t2 = child._semantics$_rect; t3 = t2.left; t4 = t2.top; t5 = t2.right; t2 = t2.bottom; edges.push(new A._BoxEdge(true, A._pointInParentCoordinates(child, new P.Offset(t3 - -0.1, t4 - -0.1))._dy, child)); edges.push(new A._BoxEdge(false, A._pointInParentCoordinates(child, new P.Offset(t5 + -0.1, t2 + -0.1))._dy, child)); } C.JSArray_methods.sort$0(edges); verticalGroups = H.setRuntimeTypeInfo([], type$.JSArray__SemanticsSortGroup); for (t1 = edges.length, t2 = type$.JSArray_SemanticsNode, group = null, depth = 0, _i = 0; _i < edges.length; edges.length === t1 || (0, H.throwConcurrentModificationError)(edges), ++_i) { edge = edges[_i]; if (edge.isLeadingEdge) { ++depth; if (group == null) group = new A._SemanticsSortGroup(edge.offset, textDirection, H.setRuntimeTypeInfo([], t2)); group.nodes.push(edge.node); } else --depth; if (depth === 0) { group.toString; verticalGroups.push(group); group = null; } } C.JSArray_methods.sort$0(verticalGroups); t1 = type$.ExpandIterable__SemanticsSortGroup_SemanticsNode; return P.List_List$of(new H.ExpandIterable(verticalGroups, new A._childrenInDefaultOrder_closure(), t1), true, t1._eval$1("Iterable.E")); }, SemanticsConfiguration$: function() { return new A.SemanticsConfiguration(P.LinkedHashMap_LinkedHashMap$_empty(type$.SemanticsAction, type$.void_Function_nullable_Object), P.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.void_Function)); }, _concatStrings: function(otherString, otherTextDirection, thisString, thisTextDirection) { var nestedLabel; if (otherString.length === 0) return thisString; if (thisTextDirection != otherTextDirection && otherTextDirection != null) switch (otherTextDirection) { case C.TextDirection_0: nestedLabel = "\u202b" + otherString + "\u202c"; break; case C.TextDirection_1: nestedLabel = "\u202a" + otherString + "\u202c"; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } else nestedLabel = otherString; if (thisString.length === 0) return nestedLabel; return thisString + "\n" + nestedLabel; }, SemanticsTag: function SemanticsTag(t0) { this.name = t0; }, CustomSemanticsAction: function CustomSemanticsAction(t0, t1, t2) { this.label = t0; this.hint = t1; this.action = t2; }, SemanticsData: function SemanticsData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.flags = t0; _.actions = t1; _.label = t2; _.value = t3; _.increasedValue = t4; _.decreasedValue = t5; _.hint = t6; _.textDirection = t7; _.textSelection = t8; _.scrollChildCount = t9; _.scrollIndex = t10; _.scrollPosition = t11; _.scrollExtentMax = t12; _.scrollExtentMin = t13; _.platformViewId = t14; _.maxValueLength = t15; _.currentValueLength = t16; _.rect = t17; _.tags = t18; _.transform = t19; _.elevation = t20; _.thickness = t21; _.customSemanticsActionIds = t22; }, _SemanticsDiagnosticableNode: function _SemanticsDiagnosticableNode(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.childOrder = t0; _.value = t1; _._cachedBuilder = null; _.name = t2; _.showSeparator = t3; _.showName = t4; _.linePrefix = t5; _.style = t6; }, SemanticsHintOverrides: function SemanticsHintOverrides(t0, t1) { this.onTapHint = t0; this.onLongPressHint = t1; }, SemanticsProperties: function SemanticsProperties(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50) { var _ = this; _.enabled = t0; _.checked = t1; _.toggled = t2; _.selected = t3; _.button = t4; _.link = t5; _.header = t6; _.textField = t7; _.slider = t8; _.keyboardKey = t9; _.readOnly = t10; _.focusable = t11; _.focused = t12; _.inMutuallyExclusiveGroup = t13; _.hidden = t14; _.obscured = t15; _.multiline = t16; _.scopesRoute = t17; _.namesRoute = t18; _.image = t19; _.liveRegion = t20; _.maxValueLength = t21; _.currentValueLength = t22; _.label = t23; _.value = t24; _.increasedValue = t25; _.decreasedValue = t26; _.hint = t27; _.hintOverrides = t28; _.textDirection = t29; _.sortKey = t30; _.tagForChildren = t31; _.onTap = t32; _.onLongPress = t33; _.onScrollLeft = t34; _.onScrollRight = t35; _.onScrollUp = t36; _.onScrollDown = t37; _.onIncrease = t38; _.onDecrease = t39; _.onCopy = t40; _.onCut = t41; _.onPaste = t42; _.onMoveCursorForwardByCharacter = t43; _.onMoveCursorBackwardByCharacter = t44; _.onSetSelection = t45; _.onSetText = t46; _.onDidGainAccessibilityFocus = t47; _.onDidLoseAccessibilityFocus = t48; _.onDismiss = t49; _.customSemanticsActions = t50; }, SemanticsNode: function SemanticsNode(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.key = t0; _._semantics$_id = t1; _._showOnScreen = t2; _._semantics$_transform = null; _._semantics$_rect = t3; _.indexInParent = _.elevationAdjustment = _.parentPaintClipRect = _.parentSemanticsClipRect = null; _._isMergedIntoParent = false; _._mergeAllDescendantsIntoThisNode = t4; _._semantics$_children = null; _.__SemanticsNode__debugPreviousSnapshot = $; _._semantics$_dirty = _._dead = false; _._actions = t5; _._semantics$_customSemanticsActions = t6; _._actionsAsBits = t7; _.tags = null; _._flags = t8; _._semantics$_label = t9; _._semantics$_value = t10; _._semantics$_decreasedValue = t11; _._semantics$_increasedValue = t12; _._semantics$_hint = t13; _._semantics$_elevation = t14; _._semantics$_thickness = t15; _._semantics$_hintOverrides = null; _._semantics$_textDirection = t16; _._semantics$_currentValueLength = _._semantics$_maxValueLength = _._platformViewId = _._scrollExtentMin = _._scrollExtentMax = _._scrollPosition = _._scrollIndex = _._scrollChildCount = _._textSelection = _._semantics$_sortKey = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, SemanticsNode_getSemanticsData_closure: function SemanticsNode_getSemanticsData_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.customSemanticsActionIds = t2; }, SemanticsNode__childrenInTraversalOrder_closure: function SemanticsNode__childrenInTraversalOrder_closure() { }, SemanticsNode_debugDescribeChildren_closure: function SemanticsNode_debugDescribeChildren_closure(t0) { this.childOrder = t0; }, _BoxEdge: function _BoxEdge(t0, t1, t2) { this.isLeadingEdge = t0; this.offset = t1; this.node = t2; }, _SemanticsSortGroup: function _SemanticsSortGroup(t0, t1, t2) { this.startOffset = t0; this.textDirection = t1; this.nodes = t2; }, _SemanticsSortGroup_sortedWithinVerticalGroup_closure: function _SemanticsSortGroup_sortedWithinVerticalGroup_closure() { }, _SemanticsSortGroup_sortedWithinKnot_closure: function _SemanticsSortGroup_sortedWithinKnot_closure() { }, _SemanticsSortGroup_sortedWithinKnot_search: function _SemanticsSortGroup_sortedWithinKnot_search(t0, t1, t2) { this.visitedIds = t0; this.edges = t1; this.sortedIds = t2; }, _SemanticsSortGroup_sortedWithinKnot_closure0: function _SemanticsSortGroup_sortedWithinKnot_closure0() { }, _SemanticsSortGroup_sortedWithinKnot_closure1: function _SemanticsSortGroup_sortedWithinKnot_closure1(t0) { this.nodeMap = t0; }, _childrenInDefaultOrder_closure: function _childrenInDefaultOrder_closure() { }, _TraversalSortNode: function _TraversalSortNode(t0, t1, t2) { this.node = t0; this.sortKey = t1; this.position = t2; }, SemanticsOwner: function SemanticsOwner(t0, t1, t2, t3) { var _ = this; _._semantics$_dirtyNodes = t0; _._nodes = t1; _._detachedNodes = t2; _.ChangeNotifier__listeners = t3; }, SemanticsOwner_sendSemanticsUpdate_closure: function SemanticsOwner_sendSemanticsUpdate_closure(t0) { this.$this = t0; }, SemanticsOwner_sendSemanticsUpdate_closure0: function SemanticsOwner_sendSemanticsUpdate_closure0() { }, SemanticsOwner_sendSemanticsUpdate_closure1: function SemanticsOwner_sendSemanticsUpdate_closure1() { }, SemanticsOwner__getSemanticsActionHandlerForId_closure: function SemanticsOwner__getSemanticsActionHandlerForId_closure(t0, t1) { this._box_0 = t0; this.action = t1; }, SemanticsConfiguration: function SemanticsConfiguration(t0, t1) { var _ = this; _._hasBeenAnnotated = _.isBlockingSemanticsOfPreviouslyPaintedNodes = _.explicitChildNodes = _._isSemanticBoundary = false; _._actions = t0; _._actionsAsBits = 0; _._semantics$_currentValueLength = _._semantics$_maxValueLength = _._platformViewId = _._scrollIndex = _._scrollChildCount = _._indexInParent = _._semantics$_sortKey = null; _._isMergingSemanticsOfDescendants = false; _._semantics$_customSemanticsActions = t1; _._semantics$_hint = _._semantics$_increasedValue = _._semantics$_decreasedValue = _._semantics$_value = _._semantics$_label = ""; _._semantics$_hintOverrides = null; _._semantics$_thickness = _._semantics$_elevation = 0; _._tagsForChildren = _._scrollExtentMin = _._scrollExtentMax = _._scrollPosition = _._textSelection = _._semantics$_textDirection = null; _._flags = 0; }, SemanticsConfiguration__addArgumentlessAction_closure: function SemanticsConfiguration__addArgumentlessAction_closure(t0) { this.handler = t0; }, SemanticsConfiguration_onMoveCursorForwardByCharacter_closure: function SemanticsConfiguration_onMoveCursorForwardByCharacter_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure: function SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorForwardByWord_closure: function SemanticsConfiguration_onMoveCursorForwardByWord_closure(t0) { this.value = t0; }, SemanticsConfiguration_onMoveCursorBackwardByWord_closure: function SemanticsConfiguration_onMoveCursorBackwardByWord_closure(t0) { this.value = t0; }, SemanticsConfiguration_onSetSelection_closure: function SemanticsConfiguration_onSetSelection_closure(t0) { this.value = t0; }, SemanticsConfiguration_onSetText_closure: function SemanticsConfiguration_onSetText_closure(t0) { this.value = t0; }, DebugSemanticsDumpOrder: function DebugSemanticsDumpOrder(t0) { this._semantics$_name = t0; }, SemanticsSortKey: function SemanticsSortKey() { }, OrdinalSortKey: function OrdinalSortKey(t0, t1) { this.order = t0; this.name = t1; }, _SemanticsData_Object_Diagnosticable: function _SemanticsData_Object_Diagnosticable() { }, _SemanticsNode_AbstractNode_DiagnosticableTreeMixin: function _SemanticsNode_AbstractNode_DiagnosticableTreeMixin() { }, _SemanticsSortKey_Object_Diagnosticable: function _SemanticsSortKey_Object_Diagnosticable() { }, _DeferringMouseCursor_firstNonDeferred: function(cursors) { var t1, t2; for (t1 = H._instanceType(cursors), t1 = new H.MappedIterator(J.get$iterator$ax(cursors._iterable), cursors._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (!J.$eq$(t2, C.C__DeferringMouseCursor)) return t2; } return null; }, MouseCursorManager: function MouseCursorManager(t0, t1) { this.fallbackMouseCursor = t0; this._lastSession = t1; }, MouseCursorSession: function MouseCursorSession() { }, MouseCursor0: function MouseCursor0() { }, _DeferringMouseCursor: function _DeferringMouseCursor() { }, _NoopMouseCursorSession: function _NoopMouseCursorSession(t0, t1) { this.cursor = t0; this.device = t1; }, _NoopMouseCursor: function _NoopMouseCursor() { }, _SystemMouseCursorSession: function _SystemMouseCursorSession(t0, t1) { this.cursor = t0; this.device = t1; }, SystemMouseCursor: function SystemMouseCursor(t0) { this.kind = t0; }, _MouseCursor_Object_Diagnosticable: function _MouseCursor_Object_Diagnosticable() { }, MethodChannel$: function($name, codec, binaryMessenger) { return new A.MethodChannel($name, codec, binaryMessenger); }, BasicMessageChannel: function BasicMessageChannel(t0, t1, t2) { this.name = t0; this.codec = t1; this.$ti = t2; }, BasicMessageChannel_setMessageHandler_closure: function BasicMessageChannel_setMessageHandler_closure(t0, t1) { this.$this = t0; this.handler = t1; }, MethodChannel: function MethodChannel(t0, t1, t2) { this.name = t0; this.codec = t1; this._binaryMessenger = t2; }, MethodChannel_setMethodCallHandler_closure: function MethodChannel_setMethodCallHandler_closure(t0, t1) { this.$this = t0; this.handler = t1; }, OptionalMethodChannel: function OptionalMethodChannel(t0, t1, t2) { this.name = t0; this.codec = t1; this._binaryMessenger = t2; }, EventChannel: function EventChannel(t0) { this.name = t0; }, EventChannel_receiveBroadcastStream__controller_set: function EventChannel_receiveBroadcastStream__controller_set(t0) { this._box_0 = t0; }, EventChannel_receiveBroadcastStream__controller_get: function EventChannel_receiveBroadcastStream__controller_get(t0) { this._box_0 = t0; }, EventChannel_receiveBroadcastStream_closure: function EventChannel_receiveBroadcastStream_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _._controller_get = t1; _.methodChannel = t2; _.$arguments = t3; }, EventChannel_receiveBroadcastStream__closure: function EventChannel_receiveBroadcastStream__closure(t0, t1) { this.$this = t0; this._controller_get = t1; }, EventChannel_receiveBroadcastStream_closure0: function EventChannel_receiveBroadcastStream_closure0(t0, t1, t2) { this.$this = t0; this.methodChannel = t1; this.$arguments = t2; }, RawKeyEventDataWeb: function RawKeyEventDataWeb(t0, t1, t2) { this.code = t0; this.key = t1; this.metaState = t2; }, Form$: function(autovalidate, child, key) { var t1 = autovalidate ? C.AutovalidateMode_1 : C.AutovalidateMode_0; return new A.Form(child, t1, key); }, Form_of: function(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._FormScope); return scope == null ? null : scope._formState; }, Form: function Form(t0, t1, t2) { this.child = t0; this.autovalidateMode = t1; this.key = t2; }, FormState: function FormState(t0, t1) { var _ = this; _._generation = 0; _._hasInteractedByUser = false; _._fields = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, FormState__fieldDidChange_closure: function FormState__fieldDidChange_closure() { }, FormState__forceRebuild_closure: function FormState__forceRebuild_closure(t0) { this.$this = t0; }, _FormScope: function _FormScope(t0, t1, t2, t3) { var _ = this; _._formState = t0; _._generation = t1; _.child = t2; _.key = t3; }, FormField: function FormField() { }, FormFieldState: function FormFieldState(t0, t1) { var _ = this; _._errorText = _._form$_value = null; _._hasInteractedByUser = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, FormFieldState_validate_closure: function FormFieldState_validate_closure(t0) { this.$this = t0; }, FormFieldState_didChange_closure: function FormFieldState_didChange_closure(t0, t1) { this.$this = t0; this.value = t1; }, AutovalidateMode: function AutovalidateMode(t0) { this._form$_name = t0; }, _debugReportException0: function(context, exception, stack, informationCollector) { var details = new U.FlutterErrorDetails(exception, stack, "widgets library", context, informationCollector, false); U.FlutterError_reportError(details); return details; }, ConstrainedLayoutBuilder: function ConstrainedLayoutBuilder() { }, _LayoutBuilderElement: function _LayoutBuilderElement(t0, t1, t2, t3, t4) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _._layout_builder$_child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; _.$ti = t4; }, _LayoutBuilderElement__layout_closure: function _LayoutBuilderElement__layout_closure(t0, t1) { this.$this = t0; this.constraints = t1; }, _LayoutBuilderElement__layout__closure: function _LayoutBuilderElement__layout__closure(t0) { this.$this = t0; }, _LayoutBuilderElement__layout__closure0: function _LayoutBuilderElement__layout__closure0(t0) { this.$this = t0; }, RenderConstrainedLayoutBuilder: function RenderConstrainedLayoutBuilder() { }, LayoutBuilder: function LayoutBuilder(t0, t1) { this.builder = t0; this.key = t1; }, _RenderLayoutBuilder: function _RenderLayoutBuilder(t0, t1, t2, t3) { var _ = this; _.RenderConstrainedLayoutBuilder__callback = t0; _.RenderConstrainedLayoutBuilder__needsBuild = t1; _.RenderConstrainedLayoutBuilder__previousConstraints = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin: function __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin() { }, __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder: function __RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder() { }, ScrollPositionAlignmentPolicy: function ScrollPositionAlignmentPolicy(t0) { this._scroll_position$_name = t0; }, ScrollPosition: function ScrollPosition() { }, ScrollPosition_forcePixels_closure: function ScrollPosition_forcePixels_closure(t0) { this.$this = t0; }, _ScrollPosition_ViewportOffset_ScrollMetrics: function _ScrollPosition_ViewportOffset_ScrollMetrics() { }, SliverFillViewport: function SliverFillViewport(t0, t1, t2) { this.viewportFraction = t0; this.delegate = t1; this.key = t2; }, _SliverFillViewportRenderObjectWidget: function _SliverFillViewportRenderObjectWidget(t0, t1, t2) { this.viewportFraction = t0; this.delegate = t1; this.key = t2; }, _SliverFractionalPadding: function _SliverFractionalPadding(t0, t1, t2) { this.viewportFraction = t0; this.child = t1; this.key = t2; }, _RenderSliverFractionalPadding: function _RenderSliverFractionalPadding(t0, t1) { var _ = this; _._lastResolvedConstraints = null; _._sliver_fill$_viewportFraction = t0; _._sliver_fill$_resolvedPadding = null; _.RenderObjectWithChildMixin__child = t1; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, NonStoringObjectProvider: function NonStoringObjectProvider() { }, _JsonViewerState_getContentWidget: function($content) { return new A.JsonObjectViewer($content, false, null); }, JsonObjectViewerState_getContentWidget: function($content) { if (type$.List_dynamic._is($content)) return new A.JsonArrayViewer($content, true, null); else return new A.JsonObjectViewer($content, true, null); }, JsonObjectViewerState_isInkWell: function($content) { if ($content == null) return false; else if (H._isInt($content)) return false; else if (typeof $content == "string") return false; else if (H._isBool($content)) return false; else if (typeof $content == "number") return false; else if (type$.List_dynamic._is($content)) if (J.get$isEmpty$asx($content)) return false; else return true; return true; }, JsonObjectViewerState_isExtensible: function($content) { if ($content == null) return false; else if (H._isInt($content)) return false; else if (typeof $content == "string") return false; else if (H._isBool($content)) return false; else if (typeof $content == "number") return false; return true; }, JsonObjectViewerState_getTypeName: function($content) { if (H._isInt($content)) return "int"; else if (typeof $content == "string") return "String"; else if (H._isBool($content)) return "bool"; else if (typeof $content == "number") return "double"; else if (type$.List_dynamic._is($content)) return "List"; return "Object"; }, JsonViewer: function JsonViewer(t0, t1) { this.jsonObj = t0; this.key = t1; }, _JsonViewerState: function _JsonViewerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, JsonObjectViewer: function JsonObjectViewer(t0, t1, t2) { this.jsonObj = t0; this.notRoot = t1; this.key = t2; }, JsonObjectViewerState: function JsonObjectViewerState(t0, t1) { var _ = this; _.openFlag = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, JsonObjectViewerState__getList_closure: function JsonObjectViewerState__getList_closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState__getList__closure: function JsonObjectViewerState__getList__closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget_closure: function JsonObjectViewerState_getValueWidget_closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget__closure0: function JsonObjectViewerState_getValueWidget__closure0(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget_closure0: function JsonObjectViewerState_getValueWidget_closure0(t0, t1) { this.$this = t0; this.entry = t1; }, JsonObjectViewerState_getValueWidget__closure: function JsonObjectViewerState_getValueWidget__closure(t0, t1) { this.$this = t0; this.entry = t1; }, JsonArrayViewer: function JsonArrayViewer(t0, t1, t2) { this.jsonArray = t0; this.notRoot = t1; this.key = t2; }, _JsonArrayViewerState: function _JsonArrayViewerState(t0) { var _ = this; _.___JsonArrayViewerState_openFlag = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _JsonArrayViewerState_getInkWell_closure: function _JsonArrayViewerState_getInkWell_closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getInkWell__closure: function _JsonArrayViewerState_getInkWell__closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget_closure: function _JsonArrayViewerState_getValueWidget_closure(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget__closure0: function _JsonArrayViewerState_getValueWidget__closure0(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget_closure0: function _JsonArrayViewerState_getValueWidget_closure0(t0, t1) { this.$this = t0; this.index = t1; }, _JsonArrayViewerState_getValueWidget__closure: function _JsonArrayViewerState_getValueWidget__closure(t0, t1) { this.$this = t0; this.index = t1; }, SlidableRenderingMode: function SlidableRenderingMode(t0) { this._slidable$_name = t0; }, SlideActionType: function SlideActionType(t0) { this._slidable$_name = t0; }, SlideActionDelegate: function SlideActionDelegate() { }, SlideActionListDelegate: function SlideActionListDelegate(t0) { this.actions = t0; }, _SlidableScope: function _SlidableScope(t0, t1, t2) { this.state = t0; this.child = t1; this.key = t2; }, SlidableData: function SlidableData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.actionType = t0; _.renderingMode = t1; _.totalActionsExtent = t2; _.dismissThreshold = t3; _.dismissible = t4; _.actionDelegate = t5; _.overallMoveAnimation = t6; _.actionsMoveAnimation = t7; _.dismissAnimation = t8; _.slidable = t9; _.actionExtentRatio = t10; _.direction = t11; _.child = t12; _.key = t13; }, Slidable: function Slidable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.child = t0; _.controller = t1; _.actionDelegate = t2; _.secondaryActionDelegate = t3; _.actionPane = t4; _.dismissal = t5; _.actionExtentRatio = t6; _.direction = t7; _.showAllActionsThreshold = t8; _.movementDuration = t9; _.closeOnScroll = t10; _.enabled = t11; _.fastThreshold = t12; _.key = t13; }, SlidableState: function SlidableState(t0, t1, t2, t3, t4) { var _ = this; _.__SlidableState__overallMoveController = $; _._resizeAnimation = _._resizeController = _._dismissAnimation = _._actionsMoveAnimation = null; _._dragExtent = 0; _._renderingMode = t0; _._slidable$_scrollPosition = null; _._dragUnderway = false; _._sizePriorToCollapse = null; _._dismissing = false; _._actionType = t1; _.AutomaticKeepAliveClientMixin__keepAliveHandle = t2; _.TickerProviderStateMixin__tickers = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, SlidableState_dismiss_closure: function SlidableState_dismiss_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, SlidableState__handleDragUpdate_closure: function SlidableState__handleDragUpdate_closure(t0) { this.$this = t0; }, SlidableState__handleShowAllActionsStatusChanged_closure: function SlidableState__handleShowAllActionsStatusChanged_closure() { }, SlidableState__handleOverallPositionChanged_closure: function SlidableState__handleOverallPositionChanged_closure() { }, SlidableState__startResizeAnimation_closure: function SlidableState__startResizeAnimation_closure(t0) { this.$this = t0; }, SlidableState__startResizeAnimation_closure0: function SlidableState__startResizeAnimation_closure0(t0) { this.$this = t0; }, _SlidableState_State_TickerProviderStateMixin: function _SlidableState_State_TickerProviderStateMixin() { }, _SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin: function _SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin() { }, DateFormat$: function(newPattern, locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1(newPattern); return t1; }, DateFormat$d: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("d"); return t1; }, DateFormat$MMMd: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("MMMd"); return t1; }, DateFormat$MMMEd: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("MMMEd"); return t1; }, DateFormat$y: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("y"); return t1; }, DateFormat$yMd: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMd"); return t1; }, DateFormat$yMMMd: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMd"); return t1; }, DateFormat$yMMMM: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMM"); return t1; }, DateFormat$yMMMMEEEEd: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("yMMMMEEEEd"); return t1; }, DateFormat$m: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("m"); return t1; }, DateFormat$s: function(locale) { var t1 = X.verifiedLocale(locale, A.date_format_DateFormat_localeExists$closure(), null); t1.toString; t1 = new A.DateFormat(new A.DateFormat_dateTimeConstructor_closure(), t1); t1.addPattern$1("s"); return t1; }, DateFormat_localeExists: function(localeName) { if (localeName == null) return false; return J.containsKey$1$x($.$get$_dateTimeSymbols(), localeName); }, DateFormat__fieldConstructors: function() { return H.setRuntimeTypeInfo([new A.DateFormat__fieldConstructors_closure(), new A.DateFormat__fieldConstructors_closure0(), new A.DateFormat__fieldConstructors_closure1()], type$.JSArray_of__DateFormatField_Function_String_DateFormat); }, _DateFormatQuotedField__patchQuotes: function(pattern) { var t1, t2; if (pattern === "''") return "'"; else { t1 = J.substring$2$s(pattern, 1, pattern.length - 1); t2 = $.$get$_DateFormatQuotedField__twoEscapedQuotes(); return H.stringReplaceAllUnchecked(t1, t2, "'"); } }, DateFormat: function DateFormat(t0, t1) { var _ = this; _.dateTimeConstructor = t0; _._dateOnly = null; _._date_format$_locale = t1; _._localeZero = _._localeZeroCodeUnit = _._digitMatcher = _._useNativeDigits = _._formatFieldsPrivate = _._date_format$_pattern = null; }, DateFormat_dateTimeConstructor_closure: function DateFormat_dateTimeConstructor_closure() { }, DateFormat__checkDateOnly_closure: function DateFormat__checkDateOnly_closure() { }, DateFormat__initDigitMatcher_closure: function DateFormat__initDigitMatcher_closure() { }, DateFormat__initDigitMatcher_closure0: function DateFormat__initDigitMatcher_closure0(t0) { this.$this = t0; }, DateFormat__fieldConstructors_closure: function DateFormat__fieldConstructors_closure() { }, DateFormat__fieldConstructors_closure0: function DateFormat__fieldConstructors_closure0() { }, DateFormat__fieldConstructors_closure1: function DateFormat__fieldConstructors_closure1() { }, _DateFormatField: function _DateFormatField() { }, _DateFormatLiteralField: function _DateFormatLiteralField(t0, t1) { this.pattern = t0; this.parent = t1; }, _DateFormatQuotedField: function _DateFormatQuotedField(t0, t1, t2) { this._fullPattern = t0; this.pattern = t1; this.parent = t2; }, _DateFormatPatternField: function _DateFormatPatternField(t0, t1) { this._forDate = null; this.pattern = t0; this.parent = t1; }, _DateFormatPatternField_parseEnumeratedString_closure: function _DateFormatPatternField_parseEnumeratedString_closure(t0) { this.input = t0; }, _DateFormatPatternField_parseEnumeratedString_closure0: function _DateFormatPatternField_parseEnumeratedString_closure0(t0) { this.possibilities = t0; }, _DateFormatPatternField_parseStandaloneDay_closure: function _DateFormatPatternField_parseStandaloneDay_closure() { }, CompanyEntity_CompanyEntity: function() { var t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t1 = G.SettingsEntity_SettingsEntity(null, null, null), t2 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_GroupEntity), t3 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_TaxRateEntity), t4 = type$.legacy_TaskStatusEntity, t5 = D.BuiltList_BuiltList$from(C.List_empty, t4), t6 = type$.legacy_String; t4 = A.BuiltMap_BuiltMap(C.Map_empty0, t6, t4); t7 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_CompanyGatewayEntity); t8 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ExpenseCategoryEntity); t9 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_UserEntity); t6 = A.BuiltMap_BuiltMap(C.Map_empty0, t6, t6); t10 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ActivityEntity); t11 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ClientEntity); t12 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ProductEntity); t13 = type$.legacy_InvoiceEntity; t14 = D.BuiltList_BuiltList$from(C.List_empty, t13); t15 = D.BuiltList_BuiltList$from(C.List_empty, t13); t16 = type$.legacy_ExpenseEntity; t17 = D.BuiltList_BuiltList$from(C.List_empty, t16); t18 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_PaymentEntity); t19 = D.BuiltList_BuiltList$from(C.List_empty, t13); t13 = D.BuiltList_BuiltList$from(C.List_empty, t13); t20 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_TaskEntity); t16 = D.BuiltList_BuiltList$from(C.List_empty, t16); t21 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ProjectEntity); t22 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_VendorEntity); t23 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DesignEntity); t24 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_PaymentTermEntity); t25 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_TokenEntity); t26 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_WebhookEntity); t27 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity); t28 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SubscriptionEntity); t29 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SystemLogEntity); return A._$CompanyEntity$_(t10, 0, "", false, false, true, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_RegistrationFieldEntity), t11, t7, "", false, 0, "", t13, t6, true, false, t23, t27, false, false, false, false, false, false, true, false, 0, C.EntityType_company, t8, false, t16, true, "0", "0", "", t2, "", "", false, true, false, true, t14, false, false, false, false, false, false, true, 0, 0, false, 1800000, t24, t18, "", "subdomain", t12, t21, t19, t17, t15, false, 0, t1, true, false, false, "", "", "", t28, t29, t4, t5, t20, t3, t25, true, 0, false, t9, t22, t26); }, CompanyEntity__initializeBuilder: function(builder) { builder.get$_company_model$_$this()._calculateExpenseTaxByAmount = false; builder.get$_company_model$_$this()._enableProductDiscount = false; builder.get$_company_model$_$this()._defaultTaskIsDateBased = false; builder.get$_company_model$_$this()._sessionTimeout = 0; builder.get$_company_model$_$this()._passwordTimeout = 1800000; builder.get$_company_model$_$this()._oauthPasswordRequired = false; builder.get$_company_model$_$this()._invoiceTaskDatelog = true; builder.get$_company_model$_$this()._showTaskEndDate = false; builder.get$_company_model$_$this()._markdownEnabled = true; builder.get$_company_model$_$this()._useCommaAsDecimalPlace = false; builder.get$_company_model$_$this()._reportIncludeDrafts = false; builder.get$systemLogs().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SystemLogEntity)); builder.get$subscriptions().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_SubscriptionEntity)); builder.get$recurringExpenses().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ExpenseEntity)); builder.get$clientRegistrationFields().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_RegistrationFieldEntity)); return builder; }, GatewayEntity_GatewayEntity: function() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return A._$GatewayEntity$_("1", "", "" + t1, false, false, "", A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_GatewayOptionsEntity), "", 0); }, GatewayEntity_getClientUrl: function(customerReference, gatewayId) { switch (gatewayId) { case "d14dd26a37cecc30fdd65700bfb55b23": case "d14dd26a47cecc30fdd65700bfb67b34": return "https://dashboard.stripe.com/customers/" + customerReference; default: return null; } }, GatewayEntity_getPaymentUrl: function(gatewayId, transactionReference) { switch (gatewayId) { case "d14dd26a37cecc30fdd65700bfb55b23": case "d14dd26a47cecc30fdd65700bfb67b34": if (C.JSString_methods.startsWith$1(transactionReference, "src")) return "https://dashboard.stripe.com/sources/" + transactionReference; else return "https://dashboard.stripe.com/payments/" + transactionReference; default: return null; } }, UserCompanyEntity_UserCompanyEntity: function(reportErrors) { var _null = null, t1 = A.CompanyEntity_CompanyEntity(), t2 = B.UserEntity_UserEntity(_null, _null, _null), t3 = D.TokenEntity_TokenEntity(_null, _null); return A._$UserCompanyEntity$_(O._$AccountEntity$_("", false, "", "", false, "", false, false, "", "", "", reportErrors, "", ""), t1, false, false, "", A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String).rebuild$1(new A.UserCompanyEntity_UserCompanyEntity_closure()), "", 0, _null, t3, t2); }, UserCompanyEntity__initializeBuilder: function(builder) { var t1 = builder.get$settings(), t2 = A.UserSettingsEntity_UserSettingsEntity(); t1._company_model$_$v = t2; builder.get$notifications().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String).rebuild$1(new A.UserCompanyEntity__initializeBuilder_closure())); builder.get$_company_model$_$this()._permissionsUpdatedAt = 0; builder.get$_company_model$_$this()._ninjaPortalUrl = ""; return builder; }, UserSettingsEntity_UserSettingsEntity: function() { var t1 = type$.legacy_String, t2 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_BuiltList_legacy_String); return A._$UserSettingsEntity$_("#2F7DC3", false, 3, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_ReportSettingsEntity), t2); }, UserSettingsEntity__initializeBuilder: function(builder) { var t1; builder.get$_company_model$_$this()._accentColor = "#2F7DC3"; builder.get$_company_model$_$this()._numberYearsActive = 3; t1 = type$.legacy_String; builder.get$tableColumns().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_BuiltList_legacy_String)); builder.get$reportSettings().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_ReportSettingsEntity)); builder.get$_company_model$_$this()._includeDeletedClients = false; return builder; }, ReportSettingsEntity_ReportSettingsEntity: function(sortColumn, sortTotalsIndex) { var t1 = sortColumn == null ? "" : sortColumn, t2 = sortTotalsIndex == null ? 0 : sortTotalsIndex; return A._$ReportSettingsEntity$_(D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_String), true, t1, true, t2); }, _$CompanyEntity$_: function(activities, archivedAt, assignedUserId, autoStartTasks, calculateExpenseTaxByAmount, clientCanRegister, clientRegistrationFields, clients, companyGateways, companyKey, convertProductExchangeRate, createdAt, createdUserId, credits, customFields, defaultQuantity, defaultTaskIsDateBased, designs, documents, enableCustomSurchargeTaxes1, enableCustomSurchargeTaxes2, enableCustomSurchargeTaxes3, enableCustomSurchargeTaxes4, enableProductCost, enableProductDiscount, enableProductQuantity, enableShopApi, enabledModules, entityType, expenseCategories, expenseInclusiveTaxes, expenses, fillProducts, firstDayOfWeek, firstMonthOfYear, googleAnalyticsKey, groups, id, industryId, invoiceExpenseDocuments, invoiceTaskDatelog, invoiceTaskDocuments, invoiceTaskTimelog, invoices, isChanged, isDeleted, isDisabled, isLarge, markExpensesInvoiceable, markExpensesPaid, markdownEnabled, numberOfInvoiceTaxRates, numberOfItemTaxRates, oauthPasswordRequired, passwordTimeout, paymentTerms, payments, portalDomain, portalMode, products, projects, quotes, recurringExpenses, recurringInvoices, reportIncludeDrafts, sessionTimeout, settings, showProductDetails, showTaskEndDate, showTasksTable, sizeId, slackWebhookUrl, subdomain, subscriptions, systemLogs, taskStatusMap, taskStatuses, tasks, taxRates, tokens, updateProducts, updatedAt, useCommaAsDecimalPlace, users, vendors, webhooks) { var _s13_ = "CompanyEntity"; if (groups == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "groups")); if (activities == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "activities")); if (taxRates == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRates")); if (taskStatuses == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taskStatuses")); if (taskStatusMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taskStatusMap")); if (companyGateways == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "companyGateways")); if (expenseCategories == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "expenseCategories")); if (users == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "users")); if (clients == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clients")); if (products == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "products")); if (invoices == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoices")); if (recurringInvoices == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "recurringInvoices")); if (recurringExpenses == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "recurringExpenses")); if (payments == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "payments")); if (quotes == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "quotes")); if (credits == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "credits")); if (tasks == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tasks")); if (projects == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "projects")); if (expenses == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "expenses")); if (vendors == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "vendors")); if (designs == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "designs")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "documents")); if (tokens == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tokens")); if (webhooks == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "webhooks")); if (subscriptions == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "subscriptions")); if (paymentTerms == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paymentTerms")); if (systemLogs == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "systemLogs")); if (clientRegistrationFields == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientRegistrationFields")); if (customFields == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customFields")); if (settings == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "settings")); return new A._$CompanyEntity(enableCustomSurchargeTaxes1, enableCustomSurchargeTaxes2, enableCustomSurchargeTaxes3, enableCustomSurchargeTaxes4, sizeId, industryId, subdomain, portalMode, portalDomain, updateProducts, convertProductExchangeRate, fillProducts, enableProductCost, enableProductQuantity, enableProductDiscount, defaultTaskIsDateBased, defaultQuantity, showProductDetails, clientCanRegister, isLarge, isDisabled, enableShopApi, companyKey, firstDayOfWeek, firstMonthOfYear, numberOfInvoiceTaxRates, numberOfItemTaxRates, expenseInclusiveTaxes, sessionTimeout, passwordTimeout, oauthPasswordRequired, markdownEnabled, useCommaAsDecimalPlace, reportIncludeDrafts, groups, activities, taxRates, taskStatuses, taskStatusMap, companyGateways, expenseCategories, users, clients, products, invoices, recurringInvoices, recurringExpenses, payments, quotes, credits, tasks, projects, expenses, vendors, designs, documents, tokens, webhooks, subscriptions, paymentTerms, systemLogs, clientRegistrationFields, customFields, slackWebhookUrl, googleAnalyticsKey, markExpensesInvoiceable, markExpensesPaid, invoiceExpenseDocuments, invoiceTaskDocuments, invoiceTaskTimelog, invoiceTaskDatelog, autoStartTasks, showTasksTable, showTaskEndDate, settings, enabledModules, calculateExpenseTaxByAmount, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$GatewayEntity$_: function(defaultGatewayTypeId, fields, id, isOffsite, isVisible, $name, options, siteUrl, sortOrder) { if (options == null) H.throwExpression(Y.BuiltValueNullFieldError$("GatewayEntity", "options")); return new A._$GatewayEntity(id, $name, isOffsite, isVisible, sortOrder, defaultGatewayTypeId, siteUrl, options, fields); }, _$UserCompanyEntity$_: function(account, company, isAdmin, isOwner, ninjaPortalUrl, notifications, permissions, permissionsUpdatedAt, settings, token, user) { return new A._$UserCompanyEntity(isAdmin, isOwner, permissionsUpdatedAt, permissions, notifications, company, user, token, account, settings, ninjaPortalUrl); }, _$UserSettingsEntity$_: function(accentColor, includeDeletedClients, numberYearsActive, reportSettings, tableColumns) { var _s18_ = "UserSettingsEntity"; if (tableColumns == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "tableColumns")); if (reportSettings == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "reportSettings")); return new A._$UserSettingsEntity(accentColor, tableColumns, reportSettings, numberYearsActive, includeDeletedClients); }, _$ReportSettingsEntity$_: function(columns, sortAscending, sortColumn, sortTotalsAscending, sortTotalsIndex) { if (columns == null) H.throwExpression(Y.BuiltValueNullFieldError$("ReportSettingsEntity", "columns")); return new A._$ReportSettingsEntity(sortColumn, sortAscending, sortTotalsIndex, sortTotalsAscending, columns); }, CompanyEntity: function CompanyEntity() { }, CompanyEntity_getCustomFieldValues_closure: function CompanyEntity_getCustomFieldValues_closure() { }, CompanyEntity_coreCompany_closure: function CompanyEntity_coreCompany_closure() { }, GatewayEntity: function GatewayEntity() { }, GatewayEntity_supportsTokenBilling_closure: function GatewayEntity_supportsTokenBilling_closure(t0) { this.$this = t0; }, GatewayEntity_supportsRefunds_closure: function GatewayEntity_supportsRefunds_closure(t0) { this.$this = t0; }, GatewayEntity_supportedEvents_closure: function GatewayEntity_supportedEvents_closure(t0) { this.events = t0; }, GatewayOptionsEntity: function GatewayOptionsEntity() { }, UserCompanyEntity: function UserCompanyEntity() { }, UserCompanyEntity_UserCompanyEntity_closure: function UserCompanyEntity_UserCompanyEntity_closure() { }, UserCompanyEntity__initializeBuilder_closure: function UserCompanyEntity__initializeBuilder_closure() { }, UserSettingsEntity: function UserSettingsEntity() { }, ReportSettingsEntity: function ReportSettingsEntity() { }, CompanyItemResponse: function CompanyItemResponse() { }, RegistrationFieldEntity: function RegistrationFieldEntity() { }, _$CompanyEntitySerializer: function _$CompanyEntitySerializer() { }, _$GatewayEntitySerializer: function _$GatewayEntitySerializer() { }, _$GatewayOptionsEntitySerializer: function _$GatewayOptionsEntitySerializer() { }, _$UserCompanyEntitySerializer: function _$UserCompanyEntitySerializer() { }, _$UserSettingsEntitySerializer: function _$UserSettingsEntitySerializer() { }, _$ReportSettingsEntitySerializer: function _$ReportSettingsEntitySerializer() { }, _$CompanyItemResponseSerializer: function _$CompanyItemResponseSerializer() { }, _$RegistrationFieldEntitySerializer: function _$RegistrationFieldEntitySerializer() { }, _$CompanyEntity: function _$CompanyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85) { var _ = this; _.enableCustomSurchargeTaxes1 = t0; _.enableCustomSurchargeTaxes2 = t1; _.enableCustomSurchargeTaxes3 = t2; _.enableCustomSurchargeTaxes4 = t3; _.sizeId = t4; _.industryId = t5; _.subdomain = t6; _.portalMode = t7; _.portalDomain = t8; _.updateProducts = t9; _.convertProductExchangeRate = t10; _.fillProducts = t11; _.enableProductCost = t12; _.enableProductQuantity = t13; _.enableProductDiscount = t14; _.defaultTaskIsDateBased = t15; _.defaultQuantity = t16; _.showProductDetails = t17; _.clientCanRegister = t18; _.isLarge = t19; _.isDisabled = t20; _.enableShopApi = t21; _.companyKey = t22; _.firstDayOfWeek = t23; _.firstMonthOfYear = t24; _.numberOfInvoiceTaxRates = t25; _.numberOfItemTaxRates = t26; _.expenseInclusiveTaxes = t27; _.sessionTimeout = t28; _.passwordTimeout = t29; _.oauthPasswordRequired = t30; _.markdownEnabled = t31; _.useCommaAsDecimalPlace = t32; _.reportIncludeDrafts = t33; _.groups = t34; _.activities = t35; _.taxRates = t36; _.taskStatuses = t37; _.taskStatusMap = t38; _.companyGateways = t39; _.expenseCategories = t40; _.users = t41; _.clients = t42; _.products = t43; _.invoices = t44; _.recurringInvoices = t45; _.recurringExpenses = t46; _.payments = t47; _.quotes = t48; _.credits = t49; _.tasks = t50; _.projects = t51; _.expenses = t52; _.vendors = t53; _.designs = t54; _.documents = t55; _.tokens = t56; _.webhooks = t57; _.subscriptions = t58; _.paymentTerms = t59; _.systemLogs = t60; _.clientRegistrationFields = t61; _.customFields = t62; _.slackWebhookUrl = t63; _.googleAnalyticsKey = t64; _.markExpensesInvoiceable = t65; _.markExpensesPaid = t66; _.invoiceExpenseDocuments = t67; _.invoiceTaskDocuments = t68; _.invoiceTaskTimelog = t69; _.invoiceTaskDatelog = t70; _.autoStartTasks = t71; _.showTasksTable = t72; _.showTaskEndDate = t73; _.settings = t74; _.enabledModules = t75; _.calculateExpenseTaxByAmount = t76; _.isChanged = t77; _.createdAt = t78; _.updatedAt = t79; _.archivedAt = t80; _.isDeleted = t81; _.createdUserId = t82; _.assignedUserId = t83; _.entityType = t84; _.id = t85; _._company_model$__hashCode = null; }, CompanyEntityBuilder: function CompanyEntityBuilder() { var _ = this; _._sessionTimeout = _._expenseInclusiveTaxes = _._numberOfItemTaxRates = _._numberOfInvoiceTaxRates = _._firstMonthOfYear = _._firstDayOfWeek = _._companyKey = _._enableShopApi = _._isDisabled = _._isLarge = _._clientCanRegister = _._showProductDetails = _._defaultQuantity = _._defaultTaskIsDateBased = _._enableProductDiscount = _._enableProductQuantity = _._enableProductCost = _._fillProducts = _._convertProductExchangeRate = _._updateProducts = _._portalDomain = _._portalMode = _._subdomain = _._company_model$_industryId = _._company_model$_sizeId = _._enableCustomSurchargeTaxes4 = _._enableCustomSurchargeTaxes3 = _._enableCustomSurchargeTaxes2 = _._enableCustomSurchargeTaxes1 = _._company_model$_$v = null; _._subscriptions = _._webhooks = _._tokens = _._company_model$_documents = _._designs = _._vendors = _._expenses = _._projects = _._tasks = _._credits = _._quotes = _._payments = _._recurringExpenses = _._recurringInvoices = _._invoices = _._products = _._clients = _._users = _._expenseCategories = _._companyGateways = _._taskStatusMap = _._taskStatuses = _._taxRates = _._company_model$_activities = _._groups = _._reportIncludeDrafts = _._useCommaAsDecimalPlace = _._markdownEnabled = _._oauthPasswordRequired = _._passwordTimeout = null; _._company_model$_id = _._company_model$_entityType = _._company_model$_assignedUserId = _._company_model$_createdUserId = _._company_model$_isDeleted = _._company_model$_archivedAt = _._company_model$_updatedAt = _._company_model$_createdAt = _._company_model$_isChanged = _._calculateExpenseTaxByAmount = _._enabledModules = _._settings = _._showTaskEndDate = _._showTasksTable = _._autoStartTasks = _._invoiceTaskDatelog = _._invoiceTaskTimelog = _._invoiceTaskDocuments = _._invoiceExpenseDocuments = _._markExpensesPaid = _._markExpensesInvoiceable = _._googleAnalyticsKey = _._slackWebhookUrl = _._customFields = _._clientRegistrationFields = _._company_model$_systemLogs = _._paymentTerms = null; }, _$GatewayEntity: function _$GatewayEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.id = t0; _.name = t1; _.isOffsite = t2; _.isVisible = t3; _.sortOrder = t4; _.defaultGatewayTypeId = t5; _.siteUrl = t6; _.options = t7; _.fields = t8; _._company_model$__hashCode = null; }, GatewayEntityBuilder: function GatewayEntityBuilder() { var _ = this; _._company_model$_fields = _._options = _._siteUrl = _._defaultGatewayTypeId = _._sortOrder = _._isVisible = _._isOffsite = _._company_model$_name = _._company_model$_id = _._company_model$_$v = null; }, _$GatewayOptionsEntity: function _$GatewayOptionsEntity(t0, t1, t2) { var _ = this; _.supportRefunds = t0; _.supportTokenBilling = t1; _.webhooks = t2; _._company_model$__hashCode = null; }, GatewayOptionsEntityBuilder: function GatewayOptionsEntityBuilder() { var _ = this; _._webhooks = _._supportTokenBilling = _._supportRefunds = _._company_model$_$v = null; }, _$UserCompanyEntity: function _$UserCompanyEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.isAdmin = t0; _.isOwner = t1; _.permissionsUpdatedAt = t2; _.permissions = t3; _.notifications = t4; _.company = t5; _.user = t6; _.token = t7; _.account = t8; _.settings = t9; _.ninjaPortalUrl = t10; _._company_model$__hashCode = null; }, UserCompanyEntityBuilder: function UserCompanyEntityBuilder() { var _ = this; _._ninjaPortalUrl = _._settings = _._account = _._token = _._company_model$_user = _._company_model$_company = _._notifications = _._permissions = _._permissionsUpdatedAt = _._isOwner = _._isAdmin = _._company_model$_$v = null; }, _$UserSettingsEntity: function _$UserSettingsEntity(t0, t1, t2, t3, t4) { var _ = this; _.accentColor = t0; _.tableColumns = t1; _.reportSettings = t2; _.numberYearsActive = t3; _.includeDeletedClients = t4; _._company_model$__hashCode = null; }, UserSettingsEntityBuilder: function UserSettingsEntityBuilder() { var _ = this; _._includeDeletedClients = _._numberYearsActive = _._reportSettings = _._tableColumns = _._accentColor = _._company_model$_$v = null; }, _$ReportSettingsEntity: function _$ReportSettingsEntity(t0, t1, t2, t3, t4) { var _ = this; _.sortColumn = t0; _.sortAscending = t1; _.sortTotalsIndex = t2; _.sortTotalsAscending = t3; _.columns = t4; _._company_model$__hashCode = null; }, ReportSettingsEntityBuilder: function ReportSettingsEntityBuilder() { var _ = this; _._columns = _._sortTotalsAscending = _._sortTotalsIndex = _._company_model$_sortAscending = _._sortColumn = _._company_model$_$v = null; }, _$CompanyItemResponse: function _$CompanyItemResponse(t0) { this.data = t0; this._company_model$__hashCode = null; }, CompanyItemResponseBuilder: function CompanyItemResponseBuilder() { this._company_model$_data = this._company_model$_$v = null; }, _$RegistrationFieldEntity: function _$RegistrationFieldEntity(t0, t1) { this.key = t0; this.required = t1; this._company_model$__hashCode = null; }, RegistrationFieldEntityBuilder: function RegistrationFieldEntityBuilder() { this._required = this._company_model$_key = this._company_model$_$v = null; }, _CompanyEntity_Object_BaseEntity: function _CompanyEntity_Object_BaseEntity() { }, _GatewayEntity_Object_SelectableEntity: function _GatewayEntity_Object_SelectableEntity() { }, ProductEntity_ProductEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return A._$ProductEntity$_(0, "", 0, 0, "", "", "", "", "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity), t1, false, false, "", 0, "", 1, "", "", "", 0, 0, 0, 0); }, _$ProductEntity$_: function(archivedAt, assignedUserId, cost, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, documents, id, isChanged, isDeleted, notes, price, productKey, quantity, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, updatedAt) { if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$("ProductEntity", "documents")); return new A._$ProductEntity(productKey, notes, cost, price, quantity, taxName1, taxRate1, taxName2, taxRate2, taxName3, taxRate3, customValue1, customValue2, customValue3, customValue4, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ProductListResponse: function ProductListResponse() { }, ProductItemResponse: function ProductItemResponse() { }, ProductEntity: function ProductEntity() { }, ProductEntity_clone_closure: function ProductEntity_clone_closure() { }, _$ProductListResponseSerializer: function _$ProductListResponseSerializer() { }, _$ProductItemResponseSerializer: function _$ProductItemResponseSerializer() { }, _$ProductEntitySerializer: function _$ProductEntitySerializer() { }, _$ProductListResponse: function _$ProductListResponse(t0) { this.data = t0; this._product_model$__hashCode = null; }, ProductListResponseBuilder: function ProductListResponseBuilder() { this._product_model$_data = this._product_model$_$v = null; }, _$ProductItemResponse: function _$ProductItemResponse(t0) { this.data = t0; this._product_model$__hashCode = null; }, ProductItemResponseBuilder: function ProductItemResponseBuilder() { this._product_model$_data = this._product_model$_$v = null; }, _$ProductEntity: function _$ProductEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.productKey = t0; _.notes = t1; _.cost = t2; _.price = t3; _.quantity = t4; _.taxName1 = t5; _.taxRate1 = t6; _.taxName2 = t7; _.taxRate2 = t8; _.taxName3 = t9; _.taxRate3 = t10; _.customValue1 = t11; _.customValue2 = t12; _.customValue3 = t13; _.customValue4 = t14; _.documents = t15; _.isChanged = t16; _.createdAt = t17; _.updatedAt = t18; _.archivedAt = t19; _.isDeleted = t20; _.createdUserId = t21; _.assignedUserId = t22; _.id = t23; _._product_model$__hashCode = null; }, ProductEntityBuilder: function ProductEntityBuilder() { var _ = this; _._product_model$_id = _._product_model$_assignedUserId = _._product_model$_createdUserId = _._product_model$_isDeleted = _._product_model$_archivedAt = _._product_model$_updatedAt = _._product_model$_createdAt = _._product_model$_isChanged = _._product_model$_documents = _._product_model$_customValue4 = _._product_model$_customValue3 = _._product_model$_customValue2 = _._product_model$_customValue1 = _._product_model$_taxRate3 = _._product_model$_taxName3 = _._product_model$_taxRate2 = _._product_model$_taxName2 = _._product_model$_taxRate1 = _._product_model$_taxName1 = _._quantity = _._product_model$_price = _._cost = _._notes = _._productKey = _._product_model$_$v = null; }, _ProductEntity_Object_BaseEntity: function _ProductEntity_Object_BaseEntity() { }, _ProductEntity_Object_BaseEntity_SelectableEntity: function _ProductEntity_Object_BaseEntity_SelectableEntity() { }, ProjectEntity_ProjectEntity: function(client, id, state, user) { var t1, t2, t3; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = client == null ? null : client.id; if (t2 == null) t2 = ""; t3 = user == null ? null : user.id; if (t3 == null) t3 = ""; return A._$ProjectEntity$_(0, t3, 0, t2, "", 0, "", "", "", "", "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity), "", t1, false, false, "", "", "", "", 0, 0); }, _$ProjectEntity$_: function(archivedAt, assignedUserId, budgetedHours, clientId, color, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, documents, dueDate, id, isChanged, isDeleted, $name, number, privateNotes, publicNotes, taskRate, updatedAt) { if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$("ProjectEntity", "documents")); return new A._$ProjectEntity($name, color, clientId, taskRate, dueDate, privateNotes, publicNotes, budgetedHours, customValue1, customValue2, customValue3, customValue4, number, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, ProjectListResponse: function ProjectListResponse() { }, ProjectItemResponse: function ProjectItemResponse() { }, ProjectEntity: function ProjectEntity() { }, ProjectEntity_clone_closure: function ProjectEntity_clone_closure() { }, _$ProjectListResponseSerializer: function _$ProjectListResponseSerializer() { }, _$ProjectItemResponseSerializer: function _$ProjectItemResponseSerializer() { }, _$ProjectEntitySerializer: function _$ProjectEntitySerializer() { }, _$ProjectListResponse: function _$ProjectListResponse(t0) { this.data = t0; this._project_model$__hashCode = null; }, ProjectListResponseBuilder: function ProjectListResponseBuilder() { this._project_model$_data = this._project_model$_$v = null; }, _$ProjectItemResponse: function _$ProjectItemResponse(t0) { this.data = t0; this._project_model$__hashCode = null; }, ProjectItemResponseBuilder: function ProjectItemResponseBuilder() { this._project_model$_data = this._project_model$_$v = null; }, _$ProjectEntity: function _$ProjectEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.name = t0; _.color = t1; _.clientId = t2; _.taskRate = t3; _.dueDate = t4; _.privateNotes = t5; _.publicNotes = t6; _.budgetedHours = t7; _.customValue1 = t8; _.customValue2 = t9; _.customValue3 = t10; _.customValue4 = t11; _.number = t12; _.documents = t13; _.isChanged = t14; _.createdAt = t15; _.updatedAt = t16; _.archivedAt = t17; _.isDeleted = t18; _.createdUserId = t19; _.assignedUserId = t20; _.id = t21; _._project_model$__hashCode = null; }, ProjectEntityBuilder: function ProjectEntityBuilder() { var _ = this; _._project_model$_id = _._project_model$_assignedUserId = _._project_model$_createdUserId = _._project_model$_isDeleted = _._project_model$_archivedAt = _._project_model$_updatedAt = _._project_model$_createdAt = _._project_model$_isChanged = _._project_model$_documents = _._project_model$_number = _._project_model$_customValue4 = _._project_model$_customValue3 = _._project_model$_customValue2 = _._project_model$_customValue1 = _._budgetedHours = _._project_model$_publicNotes = _._project_model$_privateNotes = _._project_model$_dueDate = _._taskRate = _._project_model$_clientId = _._color = _._project_model$_name = _._project_model$_$v = null; }, _ProjectEntity_Object_BaseEntity: function _ProjectEntity_Object_BaseEntity() { }, _ProjectEntity_Object_BaseEntity_SelectableEntity: function _ProjectEntity_Object_BaseEntity_SelectableEntity() { }, _ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, ColorTheme$: function(colorDanger, colorInfo, colorPrimary, colorSuccess, colorWarning) { return new A.ColorTheme(colorPrimary, colorInfo, colorSuccess, colorWarning, colorDanger); }, ColorTheme: function ColorTheme(t0, t1, t2, t3, t4) { var _ = this; _.colorPrimary = t0; _.colorInfo = t1; _.colorSuccess = t2; _.colorWarning = t3; _.colorDanger = t4; }, _$LanguageEntity$_: function(id, locale, $name) { return new A._$LanguageEntity($name, locale, id); }, LanguageListResponse: function LanguageListResponse() { }, LanguageItemResponse: function LanguageItemResponse() { }, LanguageEntity: function LanguageEntity() { }, _$LanguageListResponseSerializer: function _$LanguageListResponseSerializer() { }, _$LanguageItemResponseSerializer: function _$LanguageItemResponseSerializer() { }, _$LanguageEntitySerializer: function _$LanguageEntitySerializer() { }, _$LanguageListResponse: function _$LanguageListResponse(t0) { this.data = t0; this._language_model$__hashCode = null; }, LanguageListResponseBuilder: function LanguageListResponseBuilder() { this._language_model$_data = this._language_model$_$v = null; }, _$LanguageItemResponse: function _$LanguageItemResponse(t0) { this.data = t0; this._language_model$__hashCode = null; }, LanguageItemResponseBuilder: function LanguageItemResponseBuilder() { this._language_model$_data = this._language_model$_$v = null; }, _$LanguageEntity: function _$LanguageEntity(t0, t1, t2) { var _ = this; _.name = t0; _.locale = t1; _.id = t2; _._language_model$__hashCode = null; }, LanguageEntityBuilder: function LanguageEntityBuilder() { var _ = this; _._language_model$_id = _._language_model$_locale = _._language_model$_name = _._language_model$_$v = null; }, _LanguageEntity_Object_SelectableEntity: function _LanguageEntity_Object_SelectableEntity() { }, RecurringExpenseRepository: function RecurringExpenseRepository() { }, TokenRepository: function TokenRepository() { }, _upcomingInvoices: function(clientMap, invoiceMap) { var invoices = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceEntity); J.forEach$1$ax(invoiceMap._map$_map, new A._upcomingInvoices_closure(clientMap, invoices)); C.JSArray_methods.sort$1(invoices, new A._upcomingInvoices_closure0()); return invoices; }, _pastDueInvoices: function(clientMap, invoiceMap) { var invoices = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceEntity); J.forEach$1$ax(invoiceMap._map$_map, new A._pastDueInvoices_closure(clientMap, invoices)); C.JSArray_methods.sort$1(invoices, new A._pastDueInvoices_closure0()); return invoices; }, _recentPayments: function(clientMap, paymentMap) { var payments = H.setRuntimeTypeInfo([], type$.JSArray_legacy_PaymentEntity), threeMonthsAgo = C.JSNumber_methods.round$0(new P.DateTime(Date.now(), false).subtract$1(P.Duration$(60, 0, 0, 0, 0, 0))._value / 1000); J.forEach$1$ax(paymentMap._map$_map, new A._recentPayments_closure(clientMap, threeMonthsAgo, payments)); C.JSArray_methods.sort$1(payments, new A._recentPayments_closure0()); return payments; }, _upcomingQuotes: function(clientMap, quoteMap) { var quotes = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceEntity); J.forEach$1$ax(quoteMap._map$_map, new A._upcomingQuotes_closure(clientMap, quotes)); C.JSArray_methods.sort$1(quotes, new A._upcomingQuotes_closure0()); return quotes; }, _expiredQuotes: function(clientMap, quoteMap) { var quotes = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceEntity); J.forEach$1$ax(quoteMap._map$_map, new A._expiredQuotes_closure(clientMap, quotes)); C.JSArray_methods.sort$1(quotes, new A._expiredQuotes_closure0()); return quotes; }, _runningTasks: function(clientMap, taskMap) { var tasks = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TaskEntity); J.forEach$1$ax(taskMap._map$_map, new A._runningTasks_closure(clientMap, tasks)); C.JSArray_methods.sort$1(tasks, new A._runningTasks_closure0()); return tasks; }, _recentTasks: function(clientMap, taskMap) { var tasks = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TaskEntity); J.forEach$1$ax(taskMap._map$_map, new A._recentTasks_closure(clientMap, tasks)); C.JSArray_methods.sort$1(tasks, new A._recentTasks_closure0()); return tasks; }, _recentExpenses: function(clientMap, expenseMap) { var expenses = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ExpenseEntity); J.forEach$1$ax(expenseMap._map$_map, new A._recentExpenses_closure(clientMap, expenses)); C.JSArray_methods.sort$1(expenses, new A._recentExpenses_closure0()); return expenses; }, memoizedUpcomingInvoices_closure: function memoizedUpcomingInvoices_closure() { }, _upcomingInvoices_closure: function _upcomingInvoices_closure(t0, t1) { this.clientMap = t0; this.invoices = t1; }, _upcomingInvoices_closure0: function _upcomingInvoices_closure0() { }, memoizedPastDueInvoices_closure: function memoizedPastDueInvoices_closure() { }, _pastDueInvoices_closure: function _pastDueInvoices_closure(t0, t1) { this.clientMap = t0; this.invoices = t1; }, _pastDueInvoices_closure0: function _pastDueInvoices_closure0() { }, memoizedRecentPayments_closure: function memoizedRecentPayments_closure() { }, _recentPayments_closure: function _recentPayments_closure(t0, t1, t2) { this.clientMap = t0; this.threeMonthsAgo = t1; this.payments = t2; }, _recentPayments_closure0: function _recentPayments_closure0() { }, memoizedUpcomingQuotes_closure: function memoizedUpcomingQuotes_closure() { }, _upcomingQuotes_closure: function _upcomingQuotes_closure(t0, t1) { this.clientMap = t0; this.quotes = t1; }, _upcomingQuotes_closure0: function _upcomingQuotes_closure0() { }, memoizedExpiredQuotes_closure: function memoizedExpiredQuotes_closure() { }, _expiredQuotes_closure: function _expiredQuotes_closure(t0, t1) { this.clientMap = t0; this.quotes = t1; }, _expiredQuotes_closure0: function _expiredQuotes_closure0() { }, memoizedRunningTasks_closure: function memoizedRunningTasks_closure() { }, _runningTasks_closure: function _runningTasks_closure(t0, t1) { this.clientMap = t0; this.tasks = t1; }, _runningTasks_closure0: function _runningTasks_closure0() { }, memoizedRecentTasks_closure: function memoizedRecentTasks_closure() { }, _recentTasks_closure: function _recentTasks_closure(t0, t1) { this.clientMap = t0; this.tasks = t1; }, _recentTasks_closure0: function _recentTasks_closure0() { }, memoizedRecentExpenses_closure: function memoizedRecentExpenses_closure() { }, _recentExpenses_closure: function _recentExpenses_closure(t0, t1) { this.clientMap = t0; this.expenses = t1; }, _recentExpenses_closure0: function _recentExpenses_closure0() { }, filteredDesignsSelector: function(designMap, designList, designListState) { var t1 = J.where$1$ax(designList._list, new A.filteredDesignsSelector_closure(designMap, designListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new A.filteredDesignsSelector_closure0(designMap, designListState)); return list; }, getDesignIdForClientByEntity: function(clientId, entityType, state) { var t3, client, group, t4, t5, settings, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); client = t3.$index(t1, t2).clientState.$get$1(0, clientId); group = t3.$index(t1, t2).groupState.$get$1(0, client.groupId); t4 = client.settings; t5 = group.settings; settings = G.SettingsEntity_SettingsEntity(t4, t3.$index(t1, t2).userCompany.company.settings, t5); switch (entityType) { case C.EntityType_invoice: return settings.defaultInvoiceDesignId; case C.EntityType_quote: return settings.defaultQuoteDesignId; case C.EntityType_credit: return settings.defaultCreditDesignId; default: P.print("## ERROR: undefined entity type " + entityType.toString$0(0) + " in design_selectors"); return settings.defaultInvoiceDesignId; } }, memoizedFilteredDesignList_closure: function memoizedFilteredDesignList_closure() { }, filteredDesignsSelector_closure: function filteredDesignsSelector_closure(t0, t1) { this.designMap = t0; this.designListState = t1; }, filteredDesignsSelector_closure0: function filteredDesignsSelector_closure0(t0, t1) { this.designMap = t0; this.designListState = t1; }, filteredDocumentsSelector: function(documentMap, documentList, documentListState) { var t1 = J.where$1$ax(documentList._list, new A.filteredDocumentsSelector_closure(documentMap, documentListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new A.filteredDocumentsSelector_closure0(documentMap, documentListState)); return list; }, memoizedFilteredDocumentList_closure: function memoizedFilteredDocumentList_closure() { }, filteredDocumentsSelector_closure: function filteredDocumentsSelector_closure(t0, t1) { this.documentMap = t0; this.documentListState = t1; }, filteredDocumentsSelector_closure0: function filteredDocumentsSelector_closure0(t0, t1) { this.documentMap = t0; this.documentListState = t1; }, filteredRecurringExpensesSelector: function(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, list = J.where$1$ax(expenseMap.get$keys(expenseMap), new A.filteredRecurringExpensesSelector_closure(expenseMap, expenseCategoryMap, vendorMap, clientMap, selectionState, filterEntityType, filterEntityId, expenseListState)).toList$0(0); C.JSArray_methods.sort$1(list, new A.filteredRecurringExpensesSelector_closure0(expenseMap, expenseListState, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState)); return list; }, recurringExpenseStatsForClient: function(clientId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new A.recurringExpenseStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForVendor: function(vendorId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new A.recurringExpenseStatsForVendor_closure(t1, vendorId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForUser: function(userId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new A.recurringExpenseStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringExpenseStatsForExpense: function(recurrigExpenseId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new A.recurringExpenseStatsForExpense_closure(t1, recurrigExpenseId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, hasRecurringExpenseChanges: function(recurringExpense, recurringExpenseMap) { var t1; if (recurringExpense.get$isNew()) t1 = recurringExpense.isChanged; else { t1 = recurringExpense.id; t1 = !recurringExpense.$eq(0, J.$index$asx(recurringExpenseMap._map$_map, t1)); } return t1; }, memoizedFilteredRecurringExpenseList_closure: function memoizedFilteredRecurringExpenseList_closure() { }, filteredRecurringExpensesSelector_closure: function filteredRecurringExpensesSelector_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseCategoryMap = t1; _.vendorMap = t2; _.clientMap = t3; _.selectionState = t4; _.filterEntityType = t5; _.filterEntityId = t6; _.expenseListState = t7; }, filteredRecurringExpensesSelector_closure0: function filteredRecurringExpensesSelector_closure0(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseListState = t1; _.clientMap = t2; _.userMap = t3; _.vendorMap = t4; _.invoiceMap = t5; _.expenseCategoryMap = t6; _.staticState = t7; }, memoizedRecurringExpenseStatsForClient_closure: function memoizedRecurringExpenseStatsForClient_closure() { }, recurringExpenseStatsForClient_closure: function recurringExpenseStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedRecurringExpenseStatsForVendor_closure: function memoizedRecurringExpenseStatsForVendor_closure() { }, recurringExpenseStatsForVendor_closure: function recurringExpenseStatsForVendor_closure(t0, t1) { this._box_0 = t0; this.vendorId = t1; }, memoizedRecurringExpenseStatsForUser_closure: function memoizedRecurringExpenseStatsForUser_closure() { }, recurringExpenseStatsForUser_closure: function recurringExpenseStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedRecurringExpenseStatsForExpense_closure: function memoizedRecurringExpenseStatsForExpense_closure() { }, recurringExpenseStatsForExpense_closure: function recurringExpenseStatsForExpense_closure(t0, t1) { this._box_0 = t0; this.recurrigExpenseId = t1; }, recurringInvoiceUIReducer: function(state, action) { var t1; state.toString; t1 = new Q.RecurringInvoiceUIStateBuilder(); t1._recurring_invoice_state$_$v = state; new A.recurringInvoiceUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing12: function(recurringInvoice, action) { var _null = null; return Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); }, _updateEditing13: function(recurringInvoice, action) { return action.get$recurringInvoice(); }, _addRecurringInvoiceItem: function(recurringInvoice, action) { var item = action.invoiceItem; return recurringInvoice.rebuild$1(new A._addRecurringInvoiceItem_closure(item)); }, _addRecurringInvoiceItems: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A._addRecurringInvoiceItems_closure(action)); }, _removeRecurringInvoiceItem: function(recurringInvoice, action) { if (J.get$length$asx(recurringInvoice.lineItems._list) <= action.index) return recurringInvoice; return recurringInvoice.rebuild$1(new A._removeRecurringInvoiceItem_closure(action)); }, _updateRecurringInvoiceItem: function(recurringInvoice, action) { if (J.get$length$asx(recurringInvoice.lineItems._list) <= action.index) return recurringInvoice; return recurringInvoice.rebuild$1(new A._updateRecurringInvoiceItem_closure(action)); }, _filterRecurringInvoicesByCustom1: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom1_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom1_closure0(action)); }, _filterRecurringInvoicesByCustom2: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom2_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom2_closure0(action)); }, _filterRecurringInvoicesByCustom3: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom3_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom3_closure0(action)); }, _filterRecurringInvoicesByCustom4: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom4_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByCustom4_closure0(action)); }, _filterRecurringInvoicesByState: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByState_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByState_closure0(action)); }, _filterRecurringInvoicesByStatus: function(recurringInvoiceListState, action) { var t1 = recurringInvoiceListState.statusFilters, t2 = action.status; if (J.contains$1$asx(t1._list, t2)) return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByStatus_closure(action)); else return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoicesByStatus_closure0(action)); }, _filterRecurringInvoices: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._filterRecurringInvoices_closure(action, recurringInvoiceListState)); }, _sortRecurringInvoices: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._sortRecurringInvoices_closure(action)); }, _startListMultiselect14: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._startListMultiselect_closure15()); }, _addToListMultiselect14: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._addToListMultiselect_closure15(action)); }, _removeFromListMultiselect14: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._removeFromListMultiselect_closure15(action)); }, _clearListMultiselect14: function(recurringInvoiceListState, action) { return recurringInvoiceListState.rebuild$1(new A._clearListMultiselect_closure15()); }, _archiveRecurringInvoiceSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._archiveRecurringInvoiceSuccess_closure(action)); }, _deleteRecurringInvoiceSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._deleteRecurringInvoiceSuccess_closure(action)); }, _emailRecurringInvoiceSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._emailRecurringInvoiceSuccess_closure(action)); }, _restoreRecurringInvoiceSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._restoreRecurringInvoiceSuccess_closure(action)); }, _startRecurringInvoicesSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._startRecurringInvoicesSuccess_closure(action)); }, _stopRecurringInvoicesSuccess: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._stopRecurringInvoicesSuccess_closure(action)); }, _addRecurringInvoice: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._addRecurringInvoice_closure(action)); }, _updateRecurringInvoice: function(recurringInvoiceState, action) { return recurringInvoiceState.rebuild$1(new A._updateRecurringInvoice_closure(action, action.get$recurringInvoice())); }, _setLoadedRecurringInvoices: function(recurringInvoiceState, action) { return recurringInvoiceState.loadRecurringInvoices$1(action.recurringInvoices); }, _setLoadedCompany13: function(recurringInvoiceState, action) { return recurringInvoiceState.loadRecurringInvoices$1(action.userCompany.company.recurringInvoices); }, recurringInvoiceUIReducer_closure: function recurringInvoiceUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure119: function forceSelectedReducer_closure119() { }, forceSelectedReducer_closure120: function forceSelectedReducer_closure120() { }, forceSelectedReducer_closure121: function forceSelectedReducer_closure121() { }, forceSelectedReducer_closure122: function forceSelectedReducer_closure122() { }, forceSelectedReducer_closure123: function forceSelectedReducer_closure123() { }, forceSelectedReducer_closure124: function forceSelectedReducer_closure124() { }, forceSelectedReducer_closure125: function forceSelectedReducer_closure125() { }, forceSelectedReducer_closure126: function forceSelectedReducer_closure126() { }, tabIndexReducer_closure13: function tabIndexReducer_closure13() { }, tabIndexReducer_closure14: function tabIndexReducer_closure14() { }, historyActivityIdReducer_closure1: function historyActivityIdReducer_closure1() { }, editingItemIndexReducer_closure: function editingItemIndexReducer_closure() { }, editingItemIndexReducer_closure0: function editingItemIndexReducer_closure0() { }, selectedIdReducer_closure237: function selectedIdReducer_closure237() { }, selectedIdReducer_closure238: function selectedIdReducer_closure238() { }, selectedIdReducer_closure239: function selectedIdReducer_closure239() { }, selectedIdReducer_closure240: function selectedIdReducer_closure240() { }, selectedIdReducer_closure241: function selectedIdReducer_closure241() { }, selectedIdReducer_closure242: function selectedIdReducer_closure242() { }, selectedIdReducer_closure243: function selectedIdReducer_closure243() { }, selectedIdReducer_closure244: function selectedIdReducer_closure244() { }, selectedIdReducer_closure245: function selectedIdReducer_closure245() { }, selectedIdReducer_closure246: function selectedIdReducer_closure246() { }, selectedIdReducer_closure247: function selectedIdReducer_closure247() { }, selectedIdReducer_closure248: function selectedIdReducer_closure248() { }, selectedIdReducer_closure249: function selectedIdReducer_closure249() { }, selectedIdReducer_closure250: function selectedIdReducer_closure250() { }, selectedIdReducer_closure251: function selectedIdReducer_closure251() { }, selectedIdReducer_closure252: function selectedIdReducer_closure252() { }, selectedIdReducer_closure253: function selectedIdReducer_closure253() { }, selectedIdReducer_closure254: function selectedIdReducer_closure254() { }, selectedIdReducer_closure255: function selectedIdReducer_closure255() { }, editingReducer_closure74: function editingReducer_closure74() { }, editingReducer__closure33: function editingReducer__closure33() { }, editingReducer_closure75: function editingReducer_closure75() { }, editingReducer__closure32: function editingReducer__closure32() { }, editingReducer_closure76: function editingReducer_closure76() { }, editingReducer_closure77: function editingReducer_closure77() { }, editingReducer__closure31: function editingReducer__closure31() { }, editingReducer_closure78: function editingReducer_closure78() { }, editingReducer__closure30: function editingReducer__closure30() { }, editingReducer_closure79: function editingReducer_closure79() { }, editingReducer__closure29: function editingReducer__closure29(t0) { this.client = t0; }, editingReducer___closure1: function editingReducer___closure1() { }, editingReducer_closure80: function editingReducer_closure80() { }, editingReducer_closure81: function editingReducer_closure81() { }, editingReducer_closure82: function editingReducer_closure82() { }, editingReducer_closure83: function editingReducer_closure83() { }, editingReducer__closure28: function editingReducer__closure28(t0) { this.action = t0; }, editingReducer_closure84: function editingReducer_closure84() { }, editingReducer__closure27: function editingReducer__closure27(t0) { this.action = t0; }, _addRecurringInvoiceItem_closure: function _addRecurringInvoiceItem_closure(t0) { this.item = t0; }, _addRecurringInvoiceItems_closure: function _addRecurringInvoiceItems_closure(t0) { this.action = t0; }, _removeRecurringInvoiceItem_closure: function _removeRecurringInvoiceItem_closure(t0) { this.action = t0; }, _updateRecurringInvoiceItem_closure: function _updateRecurringInvoiceItem_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom1_closure: function _filterRecurringInvoicesByCustom1_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom1_closure0: function _filterRecurringInvoicesByCustom1_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom2_closure: function _filterRecurringInvoicesByCustom2_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom2_closure0: function _filterRecurringInvoicesByCustom2_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom3_closure: function _filterRecurringInvoicesByCustom3_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom3_closure0: function _filterRecurringInvoicesByCustom3_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom4_closure: function _filterRecurringInvoicesByCustom4_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByCustom4_closure0: function _filterRecurringInvoicesByCustom4_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByState_closure: function _filterRecurringInvoicesByState_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByState_closure0: function _filterRecurringInvoicesByState_closure0(t0) { this.action = t0; }, _filterRecurringInvoicesByStatus_closure: function _filterRecurringInvoicesByStatus_closure(t0) { this.action = t0; }, _filterRecurringInvoicesByStatus_closure0: function _filterRecurringInvoicesByStatus_closure0(t0) { this.action = t0; }, _filterRecurringInvoices_closure: function _filterRecurringInvoices_closure(t0, t1) { this.action = t0; this.recurringInvoiceListState = t1; }, _sortRecurringInvoices_closure: function _sortRecurringInvoices_closure(t0) { this.action = t0; }, _startListMultiselect_closure15: function _startListMultiselect_closure15() { }, _addToListMultiselect_closure15: function _addToListMultiselect_closure15(t0) { this.action = t0; }, _removeFromListMultiselect_closure15: function _removeFromListMultiselect_closure15(t0) { this.action = t0; }, _clearListMultiselect_closure15: function _clearListMultiselect_closure15() { }, _archiveRecurringInvoiceSuccess_closure: function _archiveRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _deleteRecurringInvoiceSuccess_closure: function _deleteRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _emailRecurringInvoiceSuccess_closure: function _emailRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _restoreRecurringInvoiceSuccess_closure: function _restoreRecurringInvoiceSuccess_closure(t0) { this.action = t0; }, _startRecurringInvoicesSuccess_closure: function _startRecurringInvoicesSuccess_closure(t0) { this.action = t0; }, _stopRecurringInvoicesSuccess_closure: function _stopRecurringInvoicesSuccess_closure(t0) { this.action = t0; }, _addRecurringInvoice_closure: function _addRecurringInvoice_closure(t0) { this.action = t0; }, _addRecurringInvoice__closure: function _addRecurringInvoice__closure() { }, _updateRecurringInvoice_closure: function _updateRecurringInvoice_closure(t0, t1) { this.action = t0; this.recurringInvoice = t1; }, _updateRecurringInvoice__closure: function _updateRecurringInvoice__closure() { }, handleSubscriptionAction: function(context, subscriptions, action) { var store, t1, subscription, t2, subscriptionIds, _i, t3, _s12_ = "_dispatchers"; if (subscriptions.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); subscription = type$.legacy_SubscriptionEntity._as(C.JSArray_methods.get$first(subscriptions)); t2 = H._arrayInstanceType(subscriptions)._eval$1("MappedListIterable<1,String*>"); subscriptionIds = P.List_List$of(new H.MappedListIterable(subscriptions, new A.handleSubscriptionAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(null, context, subscription, null); break; case C.EntityAction_restore: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_subscription"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.RestoreSubscriptionsRequest(t1, subscriptionIds)); break; case C.EntityAction_archive: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_subscription"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.ArchiveSubscriptionsRequest(t1, subscriptionIds)); break; case C.EntityAction_delete: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_subscription"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.DeleteSubscriptionsRequest(t1, subscriptionIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.subscriptionUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.StartSubscriptionMultiselect()); t1 = subscriptions.length; if (t1 === 0) break; for (_i = 0; _i < subscriptions.length; subscriptions.length === t1 || (0, H.throwConcurrentModificationError)(subscriptions), ++_i) { subscription = subscriptions[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.subscriptionUIState.listUIState; t3 = J.get$id$x(subscription); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new A.AddToSubscriptionMultiselect(subscription)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new A.RemoveFromSubscriptionMultiselect(subscription)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([subscription], type$.JSArray_legacy_BaseEntity), false); break; default: P.print("## ERROR: unhandled action " + H.S(action) + " in subscription_actions"); break; } }, ViewSubscriptionList: function ViewSubscriptionList() { }, ViewSubscription: function ViewSubscription(t0) { this.subscriptionId = t0; }, EditSubscription: function EditSubscription(t0) { this.subscription = t0; }, UpdateSubscription: function UpdateSubscription(t0) { this.subscription = t0; }, LoadSubscriptionRequest: function LoadSubscriptionRequest() { }, LoadSubscriptionFailure: function LoadSubscriptionFailure(t0) { this.error = t0; }, LoadSubscriptionSuccess: function LoadSubscriptionSuccess(t0) { this.subscription = t0; }, LoadSubscriptionsRequest: function LoadSubscriptionsRequest() { }, LoadSubscriptionsFailure: function LoadSubscriptionsFailure(t0) { this.error = t0; }, LoadSubscriptionsSuccess: function LoadSubscriptionsSuccess(t0) { this.subscriptions = t0; }, SaveSubscriptionRequest: function SaveSubscriptionRequest(t0, t1) { this.completer = t0; this.subscription = t1; }, SaveSubscriptionSuccess: function SaveSubscriptionSuccess(t0) { this.subscription = t0; }, AddSubscriptionSuccess: function AddSubscriptionSuccess(t0) { this.subscription = t0; }, SaveSubscriptionFailure: function SaveSubscriptionFailure() { }, ArchiveSubscriptionsRequest: function ArchiveSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, ArchiveSubscriptionsSuccess: function ArchiveSubscriptionsSuccess(t0) { this.subscriptions = t0; }, ArchiveSubscriptionsFailure: function ArchiveSubscriptionsFailure() { }, DeleteSubscriptionsRequest: function DeleteSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, DeleteSubscriptionsSuccess: function DeleteSubscriptionsSuccess(t0) { this.subscriptions = t0; }, DeleteSubscriptionsFailure: function DeleteSubscriptionsFailure() { }, RestoreSubscriptionsRequest: function RestoreSubscriptionsRequest(t0, t1) { this.completer = t0; this.subscriptionIds = t1; }, RestoreSubscriptionsSuccess: function RestoreSubscriptionsSuccess(t0) { this.subscriptions = t0; }, RestoreSubscriptionsFailure: function RestoreSubscriptionsFailure() { }, FilterSubscriptions: function FilterSubscriptions(t0) { this.filter = t0; }, SortSubscriptions: function SortSubscriptions(t0) { this.field = t0; }, FilterSubscriptionsByState: function FilterSubscriptionsByState(t0) { this.state = t0; }, FilterSubscriptionsByCustom1: function FilterSubscriptionsByCustom1(t0) { this.value = t0; }, FilterSubscriptionsByCustom2: function FilterSubscriptionsByCustom2(t0) { this.value = t0; }, FilterSubscriptionsByCustom3: function FilterSubscriptionsByCustom3(t0) { this.value = t0; }, FilterSubscriptionsByCustom4: function FilterSubscriptionsByCustom4(t0) { this.value = t0; }, StartSubscriptionMultiselect: function StartSubscriptionMultiselect() { }, AddToSubscriptionMultiselect: function AddToSubscriptionMultiselect(t0) { this.entity = t0; }, RemoveFromSubscriptionMultiselect: function RemoveFromSubscriptionMultiselect(t0) { this.entity = t0; }, ClearSubscriptionMultiselect: function ClearSubscriptionMultiselect() { }, handleSubscriptionAction_closure: function handleSubscriptionAction_closure() { }, taskStatusUIReducer: function(state, action) { var t1; state.toString; t1 = new L.TaskStatusUIStateBuilder(); t1._task_status_state$_$v = state; new A.taskStatusUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing15: function(taskStatus, action) { return S.TaskStatusEntity_TaskStatusEntity(null, null); }, _updateEditing16: function(taskStatus, action) { return action.get$taskStatus(); }, _viewTaskStatusList0: function(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._viewTaskStatusList_closure()); }, _filterTaskStatusesByCustom1: function(taskStatusListState, action) { var t1 = taskStatusListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom1_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom1_closure0(action)); }, _filterTaskStatusesByCustom2: function(taskStatusListState, action) { var t1 = taskStatusListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom2_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByCustom2_closure0(action)); }, _filterTaskStatusesByState: function(taskStatusListState, action) { var t1 = taskStatusListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return taskStatusListState.rebuild$1(new A._filterTaskStatusesByState_closure(action)); else return taskStatusListState.rebuild$1(new A._filterTaskStatusesByState_closure0(action)); }, _filterTaskStatuses: function(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._filterTaskStatuses_closure(action, taskStatusListState)); }, _sortTaskStatuses: function(taskStatusListState, action) { return taskStatusListState.rebuild$1(new A._sortTaskStatuses_closure(action)); }, _startListMultiselect17: function(productListState, action) { return productListState.rebuild$1(new A._startListMultiselect_closure17()); }, _addToListMultiselect17: function(productListState, action) { return productListState.rebuild$1(new A._addToListMultiselect_closure17(action)); }, _removeFromListMultiselect17: function(productListState, action) { return productListState.rebuild$1(new A._removeFromListMultiselect_closure17(action)); }, _clearListMultiselect17: function(productListState, action) { return productListState.rebuild$1(new A._clearListMultiselect_closure17()); }, _sortTaskStatusSuccess: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._sortTaskStatusSuccess_closure(action, taskStatusState)); }, _archiveTaskStatusSuccess: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._archiveTaskStatusSuccess_closure(action)); }, _deleteTaskStatusSuccess: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._deleteTaskStatusSuccess_closure(action)); }, _restoreTaskStatusSuccess: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._restoreTaskStatusSuccess_closure(action)); }, _addTaskStatus: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._addTaskStatus_closure(action)); }, _updateTaskStatus: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._updateTaskStatus_closure(action)); }, _setLoadedTaskStatus: function(taskStatusState, action) { return taskStatusState.rebuild$1(new A._setLoadedTaskStatus_closure(action)); }, _setLoadedTaskStatuses: function(taskStatusState, action) { return taskStatusState.loadTaskStatuses$1(action.taskStatuses); }, _setLoadedCompany16: function(taskStatusState, action) { return taskStatusState.loadTaskStatuses$1(action.userCompany.company.taskStatuses); }, taskStatusUIReducer_closure: function taskStatusUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure135: function forceSelectedReducer_closure135() { }, forceSelectedReducer_closure136: function forceSelectedReducer_closure136() { }, forceSelectedReducer_closure137: function forceSelectedReducer_closure137() { }, forceSelectedReducer_closure138: function forceSelectedReducer_closure138() { }, forceSelectedReducer_closure139: function forceSelectedReducer_closure139() { }, forceSelectedReducer_closure140: function forceSelectedReducer_closure140() { }, forceSelectedReducer_closure141: function forceSelectedReducer_closure141() { }, forceSelectedReducer_closure142: function forceSelectedReducer_closure142() { }, selectedIdReducer_closure271: function selectedIdReducer_closure271() { }, selectedIdReducer_closure272: function selectedIdReducer_closure272() { }, selectedIdReducer_closure273: function selectedIdReducer_closure273() { }, selectedIdReducer_closure274: function selectedIdReducer_closure274() { }, selectedIdReducer_closure275: function selectedIdReducer_closure275() { }, selectedIdReducer_closure276: function selectedIdReducer_closure276() { }, selectedIdReducer_closure277: function selectedIdReducer_closure277() { }, selectedIdReducer_closure278: function selectedIdReducer_closure278() { }, selectedIdReducer_closure279: function selectedIdReducer_closure279() { }, selectedIdReducer_closure280: function selectedIdReducer_closure280() { }, selectedIdReducer_closure281: function selectedIdReducer_closure281() { }, selectedIdReducer_closure282: function selectedIdReducer_closure282() { }, selectedIdReducer_closure283: function selectedIdReducer_closure283() { }, selectedIdReducer_closure284: function selectedIdReducer_closure284() { }, selectedIdReducer_closure285: function selectedIdReducer_closure285() { }, editingReducer_closure89: function editingReducer_closure89() { }, editingReducer_closure90: function editingReducer_closure90() { }, editingReducer_closure91: function editingReducer_closure91() { }, editingReducer_closure92: function editingReducer_closure92() { }, editingReducer__closure35: function editingReducer__closure35() { }, _viewTaskStatusList_closure: function _viewTaskStatusList_closure() { }, _filterTaskStatusesByCustom1_closure: function _filterTaskStatusesByCustom1_closure(t0) { this.action = t0; }, _filterTaskStatusesByCustom1_closure0: function _filterTaskStatusesByCustom1_closure0(t0) { this.action = t0; }, _filterTaskStatusesByCustom2_closure: function _filterTaskStatusesByCustom2_closure(t0) { this.action = t0; }, _filterTaskStatusesByCustom2_closure0: function _filterTaskStatusesByCustom2_closure0(t0) { this.action = t0; }, _filterTaskStatusesByState_closure: function _filterTaskStatusesByState_closure(t0) { this.action = t0; }, _filterTaskStatusesByState_closure0: function _filterTaskStatusesByState_closure0(t0) { this.action = t0; }, _filterTaskStatuses_closure: function _filterTaskStatuses_closure(t0, t1) { this.action = t0; this.taskStatusListState = t1; }, _sortTaskStatuses_closure: function _sortTaskStatuses_closure(t0) { this.action = t0; }, _startListMultiselect_closure17: function _startListMultiselect_closure17() { }, _addToListMultiselect_closure17: function _addToListMultiselect_closure17(t0) { this.action = t0; }, _removeFromListMultiselect_closure17: function _removeFromListMultiselect_closure17(t0) { this.action = t0; }, _clearListMultiselect_closure17: function _clearListMultiselect_closure17() { }, _sortTaskStatusSuccess_closure: function _sortTaskStatusSuccess_closure(t0, t1) { this.action = t0; this.taskStatusState = t1; }, _sortTaskStatusSuccess__closure: function _sortTaskStatusSuccess__closure(t0, t1) { this.action = t0; this.statusId = t1; }, _archiveTaskStatusSuccess_closure: function _archiveTaskStatusSuccess_closure(t0) { this.action = t0; }, _deleteTaskStatusSuccess_closure: function _deleteTaskStatusSuccess_closure(t0) { this.action = t0; }, _restoreTaskStatusSuccess_closure: function _restoreTaskStatusSuccess_closure(t0) { this.action = t0; }, _addTaskStatus_closure: function _addTaskStatus_closure(t0) { this.action = t0; }, _updateTaskStatus_closure: function _updateTaskStatus_closure(t0) { this.action = t0; }, _setLoadedTaskStatus_closure: function _setLoadedTaskStatus_closure(t0) { this.action = t0; }, handleTaxRateAction: function(context, taxRates, action) { var store, t1, taxRate, t2, taxRateIds, message, _i, t3, _s6_ = ":value", _s12_ = "_dispatchers"; if (taxRates.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); taxRate = C.JSArray_methods.get$first(taxRates); t2 = H._arrayInstanceType(taxRates)._eval$1("MappedListIterable<1,String*>"); taxRateIds = P.List_List$of(new H.MappedListIterable(taxRates, new A.handleTaxRateAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(null, context, taxRate, null); break; case C.EntityAction_restore: t2 = taxRateIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_tax_rates"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_tax_rate"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.RestoreTaxRateRequest(t1, taxRateIds)); break; case C.EntityAction_archive: t2 = taxRateIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_tax_rates"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_tax_rate"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.ArchiveTaxRateRequest(t1, taxRateIds)); break; case C.EntityAction_delete: t2 = taxRateIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_tax_rates"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_tax_rate"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.DeleteTaxRateRequest(t1, taxRateIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.taxRateUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.StartTaxRateMultiselect()); t1 = taxRates.length; if (t1 === 0) break; for (_i = 0; _i < taxRates.length; taxRates.length === t1 || (0, H.throwConcurrentModificationError)(taxRates), ++_i) { taxRate = taxRates[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.taxRateUIState.listUIState; t3 = J.get$id$x(taxRate); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new A.AddToTaxRateMultiselect(taxRate)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new A.RemoveFromTaxRateMultiselect(taxRate)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([taxRate], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewTaxRateList: function ViewTaxRateList() { }, ViewTaxRate: function ViewTaxRate(t0) { this.taxRateId = t0; }, EditTaxRate: function EditTaxRate(t0) { this.taxRate = t0; }, UpdateTaxRate: function UpdateTaxRate(t0) { this.taxRate = t0; }, LoadTaxRateRequest: function LoadTaxRateRequest() { }, LoadTaxRateFailure: function LoadTaxRateFailure(t0) { this.error = t0; }, LoadTaxRateSuccess: function LoadTaxRateSuccess(t0) { this.taxRate = t0; }, LoadTaxRatesRequest: function LoadTaxRatesRequest() { }, LoadTaxRatesFailure: function LoadTaxRatesFailure(t0) { this.error = t0; }, LoadTaxRatesSuccess: function LoadTaxRatesSuccess(t0) { this.taxRates = t0; }, SaveTaxRateRequest: function SaveTaxRateRequest(t0, t1) { this.completer = t0; this.taxRate = t1; }, SaveTaxRateSuccess: function SaveTaxRateSuccess(t0) { this.taxRate = t0; }, AddTaxRateSuccess: function AddTaxRateSuccess(t0) { this.taxRate = t0; }, SaveTaxRateFailure: function SaveTaxRateFailure() { }, ArchiveTaxRateRequest: function ArchiveTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, ArchiveTaxRatesSuccess: function ArchiveTaxRatesSuccess(t0) { this.taxRates = t0; }, ArchiveTaxRateFailure: function ArchiveTaxRateFailure() { }, DeleteTaxRateRequest: function DeleteTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, DeleteTaxRatesSuccess: function DeleteTaxRatesSuccess(t0) { this.taxRates = t0; }, DeleteTaxRateFailure: function DeleteTaxRateFailure() { }, RestoreTaxRateRequest: function RestoreTaxRateRequest(t0, t1) { this.completer = t0; this.taxRateIds = t1; }, RestoreTaxRatesSuccess: function RestoreTaxRatesSuccess(t0) { this.taxRates = t0; }, RestoreTaxRateFailure: function RestoreTaxRateFailure() { }, FilterTaxRates: function FilterTaxRates(t0) { this.filter = t0; }, SortTaxRates: function SortTaxRates(t0) { this.field = t0; }, FilterTaxRatesByState: function FilterTaxRatesByState(t0) { this.state = t0; }, handleTaxRateAction_closure: function handleTaxRateAction_closure() { }, StartTaxRateMultiselect: function StartTaxRateMultiselect() { }, AddToTaxRateMultiselect: function AddToTaxRateMultiselect(t0) { this.entity = t0; }, RemoveFromTaxRateMultiselect: function RemoveFromTaxRateMultiselect(t0) { this.entity = t0; }, ClearTaxRateMultiselect: function ClearTaxRateMultiselect() { }, FormColorPicker$: function(initialValue, labelText, onSelected) { return new A.FormColorPicker(labelText, initialValue, onSelected, null); }, FormColorPicker: function FormColorPicker(t0, t1, t2, t3) { var _ = this; _.labelText = t0; _.initialValue = t1; _.onSelected = t2; _.key = t3; }, _FormColorPickerState: function _FormColorPickerState(t0, t1, t2, t3) { var _ = this; _._color_picker$_textController = t0; _._selectedColor = _._pendingColor = null; _._color_picker$_debouncer = t1; _._controllers = null; _._defaultColors = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _FormColorPickerState_didChangeDependencies_closure: function _FormColorPickerState_didChangeDependencies_closure(t0) { this.$this = t0; }, _FormColorPickerState_didChangeDependencies_closure0: function _FormColorPickerState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _FormColorPickerState__onChanged_closure: function _FormColorPickerState__onChanged_closure(t0) { this.$this = t0; }, _FormColorPickerState__selectColor_closure: function _FormColorPickerState__selectColor_closure(t0, t1) { this.$this = t0; this.color = t1; }, _FormColorPickerState__showPicker_closure: function _FormColorPickerState__showPicker_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.colors = t2; _.localization = t3; }, _FormColorPickerState__showPicker__closure: function _FormColorPickerState__showPicker__closure(t0) { this.$this = t0; }, _FormColorPickerState__showPicker__closure0: function _FormColorPickerState__showPicker__closure0(t0) { this.context = t0; }, _FormColorPickerState__showPicker__closure1: function _FormColorPickerState__showPicker__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _FormColorPickerState_build_closure: function _FormColorPickerState_build_closure(t0) { this.$this = t0; }, DesignPicker: function DesignPicker(t0, t1, t2, t3) { var _ = this; _.onSelected = t0; _.label = t1; _.initialValue = t2; _.key = t3; }, DesignPicker_build_closure1: function DesignPicker_build_closure1(t0, t1) { this.$this = t0; this.designState = t1; }, DesignPicker_build_closure: function DesignPicker_build_closure(t0, t1, t2) { this.$this = t0; this.designState = t1; this.state = t2; }, DesignPicker_build_closure0: function DesignPicker_build_closure0(t0) { this.designState = t0; }, GrowableFormField: function GrowableFormField(t0, t1, t2, t3) { var _ = this; _.initialValue = t0; _.onChanged = t1; _.autofocus = t2; _.key = t3; }, _GrowableFormFieldState: function _GrowableFormFieldState(t0, t1) { var _ = this; _._growable_form_field$_focusNode = t0; _._growable_form_field$_hasFocus = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GrowableFormFieldState__onFoucsChanged_closure: function _GrowableFormFieldState__onFoucsChanged_closure(t0) { this.$this = t0; }, AppDrawerVM_fromStore: function(store) { var t1, t2, t3, t4, state = store.get$_store$_state(); state.get$companies(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).userCompany.user; t3.$index(t1, t2).userCompany.toString; return new A.AppDrawerVM(t4); }, HistoryDrawerBuilder: function HistoryDrawerBuilder(t0) { this.key = t0; }, HistoryDrawerBuilder_build_closure: function HistoryDrawerBuilder_build_closure() { }, AppDrawerVM: function AppDrawerVM(t0) { this.user = t0; }, MenuDrawerVM_fromStore: function(store) { var t3, t4, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).userCompany.user; return new A.MenuDrawerVM(state, t3.$index(t1, t2).userCompany.company, t4, C.JSInt_methods.toString$0(t2), new A.MenuDrawerVM_fromStore_closure(state, store), new A.MenuDrawerVM_fromStore_closure0(store), new A.MenuDrawerVM_fromStore_closure1(state, store)); }, MenuDrawerBuilder: function MenuDrawerBuilder(t0) { this.key = t0; }, MenuDrawerBuilder_build_closure: function MenuDrawerBuilder_build_closure() { }, MenuDrawerVM: function MenuDrawerVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.selectedCompany = t1; _.user = t2; _.selectedCompanyIndex = t3; _.onCompanyChanged = t4; _.onAddCompany = t5; _.onLogoutTap = t6; }, MenuDrawerVM_fromStore_closure1: function MenuDrawerVM_fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, MenuDrawerVM_fromStore__closure: function MenuDrawerVM_fromStore__closure(t0) { this.store = t0; }, MenuDrawerVM_fromStore_closure: function MenuDrawerVM_fromStore_closure(t0, t1) { this.state = t0; this.store = t1; }, MenuDrawerVM_fromStore__closure1: function MenuDrawerVM_fromStore__closure1(t0, t1, t2, t3, t4) { var _ = this; _.store = t0; _.index = t1; _.context = t2; _.state = t3; _.company = t4; }, MenuDrawerVM_fromStore_closure0: function MenuDrawerVM_fromStore_closure0(t0) { this.store = t0; }, MenuDrawerVM_fromStore__closure0: function MenuDrawerVM_fromStore__closure0(t0, t1) { this.context = t0; this.store = t1; }, MenuDrawerVM_fromStore___closure: function MenuDrawerVM_fromStore___closure() { }, MenuDrawerVM_fromStore___closure0: function MenuDrawerVM_fromStore___closure0() { }, WebSessionTimeout: function WebSessionTimeout(t0, t1) { this.child = t0; this.key = t1; }, _WebSessionTimeoutState: function _WebSessionTimeoutState(t0) { var _ = this; _._widget = _._web_session_timeout$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _WebSessionTimeoutState_initState_closure: function _WebSessionTimeoutState_initState_closure(t0) { this.$this = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore: function(store) { var t4, t5, companyGateway, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).companyGatewayState.map; t2 = t2.companyGatewayUIState.selectedId; companyGateway = J.$index$asx(t5._map$_map, t2); if (companyGateway == null) companyGateway = O.CompanyGatewayEntity_CompanyGatewayEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; companyGateway.get$isNew(); return new A.CompanyGatewayViewVM(state, companyGateway, t1, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure(store), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh(store, companyGateway)), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1(state, store), new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2(state, store)); }, CompanyGatewayViewScreen: function CompanyGatewayViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, CompanyGatewayViewScreen_build_closure0: function CompanyGatewayViewScreen_build_closure0() { }, CompanyGatewayViewScreen_build_closure: function CompanyGatewayViewScreen_build_closure(t0) { this.$this = t0; }, CompanyGatewayViewVM: function CompanyGatewayViewVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.companyGateway = t1; _.company = t2; _.onBackPressed = t3; _.onRefreshed = t4; _.onStripeImportPressed = t5; _.onStripeVerifyPressed = t6; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.companyGateway = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure(t0) { this.store = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.store = t0; _.webClient = t1; _.url = t2; _.credentials = t3; _.localization = t4; _.context = t5; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure(t0, t1) { this.store = t0; this.localization = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure(t0, t1) { this.localization = t0; this.response = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure(t0) { this.context = t0; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0(t0, t1) { this.store = t0; this.context = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.store = t0; _.webClient = t1; _.url = t2; _.credentials = t3; _.context = t4; _.localization = t5; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1(t0, t1, t2) { this.store = t0; this.context = t1; this.localization = t2; }, CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2: function CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2(t0, t1) { this.store = t0; this.context = t1; }, CreditScreen: function CreditScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, CreditScreen_build_closure9: function CreditScreen_build_closure9(t0) { this.store = t0; }, CreditScreen_build_closure7: function CreditScreen_build_closure7(t0) { this.store = t0; }, CreditScreen_build_closure8: function CreditScreen_build_closure8(t0) { this.store = t0; }, CreditScreen_build_closure4: function CreditScreen_build_closure4(t0) { this.store = t0; }, CreditScreen_build_closure5: function CreditScreen_build_closure5(t0) { this.store = t0; }, CreditScreen_build_closure: function CreditScreen_build_closure(t0) { this.store = t0; }, CreditScreen_build_closure0: function CreditScreen_build_closure0(t0) { this.store = t0; }, CreditScreen_build_closure1: function CreditScreen_build_closure1(t0) { this.store = t0; }, CreditScreen_build_closure2: function CreditScreen_build_closure2(t0) { this.store = t0; }, CreditScreen_build_closure3: function CreditScreen_build_closure3(t0) { this.store = t0; }, CreditScreen_build_closure6: function CreditScreen_build_closure6(t0) { this.context = t0; }, DashboardActivity: function DashboardActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, DashboardActivity_build_closure: function DashboardActivity_build_closure(t0) { this.activities = t0; }, DashboardSystemLogs: function DashboardSystemLogs(t0, t1) { this.viewModel = t0; this.key = t1; }, DocumentListVM_fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.documentUIState; t2.toString; t3 = $.$get$memoizedFilteredDocumentList(); t4 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t4 = t4._list; t5 = J.getInterceptor$asx(t4); t2 = t2.listUIState; return new A.DocumentListVM(state, t3.call$3(t5.$index(t4, t1).documentState.map, t5.$index(t4, t1).documentState.list, t2), t5.$index(t4, t1).documentState.map, t2.filter, new A.DocumentListVM_fromStore_closure(new A.DocumentListVM_fromStore__handleRefresh(store)), new A.DocumentListVM_fromStore_closure0(store), new A.DocumentListVM_fromStore_closure1(store)); }, DocumentListBuilder: function DocumentListBuilder(t0) { this.key = t0; }, DocumentListBuilder_build_closure: function DocumentListBuilder_build_closure() { }, DocumentListBuilder_build__closure: function DocumentListBuilder_build__closure(t0) { this.viewModel = t0; }, DocumentListVM: function DocumentListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.documentList = t1; _.documentMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, DocumentListVM_fromStore__handleRefresh: function DocumentListVM_fromStore__handleRefresh(t0) { this.store = t0; }, DocumentListVM_fromStore_closure: function DocumentListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DocumentListVM_fromStore_closure0: function DocumentListVM_fromStore_closure0(t0) { this.store = t0; }, DocumentListVM_fromStore_closure1: function DocumentListVM_fromStore_closure1(t0) { this.store = t0; }, DocumentViewVM_DocumentViewVM$fromStore: function(store) { var t4, t5, $document, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).documentState.map; t2 = t2.documentUIState.selectedId; $document = J.$index$asx(t5._map$_map, t2); if ($document == null) $document = D.DocumentEntity_DocumentEntity(t2); t1 = t4.$index(t1, t3).userCompany.company; $document.get$isNew(); return new A.DocumentViewVM(state, $document, t1); }, DocumentViewScreen: function DocumentViewScreen(t0) { this.key = t0; }, DocumentViewScreen_build_closure0: function DocumentViewScreen_build_closure0() { }, DocumentViewScreen_build_closure: function DocumentViewScreen_build_closure(t0) { this.$this = t0; }, DocumentViewVM: function DocumentViewVM(t0, t1, t2) { this.state = t0; this.document = t1; this.company = t2; }, ExpenseCategoryEdit: function ExpenseCategoryEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseCategoryEditState: function _ExpenseCategoryEditState(t0, t1, t2, t3) { var _ = this; _._expense_category_edit$_debouncer = t0; _._expense_category_edit$_autoValidate = false; _._nameController = t1; _._expense_category_edit$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _ExpenseCategoryEditState_didChangeDependencies_closure: function _ExpenseCategoryEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState_didChangeDependencies_closure0: function _ExpenseCategoryEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ExpenseCategoryEditState_dispose_closure: function _ExpenseCategoryEditState_dispose_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState__onChanged_closure: function _ExpenseCategoryEditState__onChanged_closure(t0) { this.$this = t0; }, _ExpenseCategoryEditState__onChanged_closure0: function _ExpenseCategoryEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.expenseCategory = t1; }, _ExpenseCategoryEditState_build_closure0: function _ExpenseCategoryEditState_build_closure0(t0) { this.viewModel = t0; }, _ExpenseCategoryEditState_build_closure1: function _ExpenseCategoryEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ExpenseCategoryEditState_build__closure: function _ExpenseCategoryEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ExpenseCategoryEditState_build_closure: function _ExpenseCategoryEditState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.viewModel = t2; _.expenseCategory = t3; }, _ExpenseCategoryEditState_build__closure0: function _ExpenseCategoryEditState_build__closure0(t0, t1) { this.viewModel = t0; this.expenseCategory = t1; }, _ExpenseCategoryEditState_build___closure: function _ExpenseCategoryEditState_build___closure(t0) { this.value = t0; }, ExpenseCategoryListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.expenseCategoryUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredExpenseCategoryList().call$4(state.getUISelection$1(C.EntityType_expenseCategory), t4.$index(t1, t3).expenseCategoryState.map, t4.$index(t1, t3).expenseCategoryState.list, t2); t6 = t4.$index(t1, t3).expenseCategoryState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_expenseCategory); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); } else t1 = t7; return new A.ExpenseCategoryListVM(state, t5, t6, t2, new A.ExpenseCategoryListVM_fromStore_closure(new A.ExpenseCategoryListVM_fromStore__handleRefresh(store)), t1, new A.ExpenseCategoryListVM_fromStore_closure0(store), new A.ExpenseCategoryListVM_fromStore_closure1(store)); }, ExpenseCategoryListBuilder: function ExpenseCategoryListBuilder(t0) { this.key = t0; }, ExpenseCategoryListBuilder_build_closure: function ExpenseCategoryListBuilder_build_closure() { }, ExpenseCategoryListBuilder_build__closure: function ExpenseCategoryListBuilder_build__closure(t0) { this.viewModel = t0; }, ExpenseCategoryListVM: function ExpenseCategoryListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.expenseCategoryList = t1; _.expenseCategoryMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ExpenseCategoryListVM_fromStore__handleRefresh: function ExpenseCategoryListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ExpenseCategoryListVM_fromStore_closure: function ExpenseCategoryListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseCategoryListVM_fromStore_closure0: function ExpenseCategoryListVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseCategoryListVM_fromStore_closure1: function ExpenseCategoryListVM_fromStore_closure1(t0) { this.store = t0; }, GroupEditVM_GroupEditVM$fromStore: function(store) { var t3, t4, t5, group = store.get$_store$_state().uiState.groupUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).groupState.map; t5 = group.id; J.$index$asx(t4._map$_map, t5); return new A.GroupEditVM(group, t3.$index(t1, t2).userCompany.company, new A.GroupEditVM_GroupEditVM$fromStore_closure(store), new A.GroupEditVM_GroupEditVM$fromStore_closure0(store, state), new A.GroupEditVM_GroupEditVM$fromStore_closure1(store, state), state); }, GroupEditScreen: function GroupEditScreen(t0) { this.key = t0; }, GroupEditScreen_build_closure0: function GroupEditScreen_build_closure0() { }, GroupEditScreen_build_closure: function GroupEditScreen_build_closure() { }, GroupEditVM: function GroupEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.group = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, GroupEditVM_GroupEditVM$fromStore_closure: function GroupEditVM_GroupEditVM$fromStore_closure(t0) { this.store = t0; }, GroupEditVM_GroupEditVM$fromStore_closure1: function GroupEditVM_GroupEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore_closure0: function GroupEditVM_GroupEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore__closure: function GroupEditVM_GroupEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, GroupEditVM_GroupEditVM$fromStore___closure: function GroupEditVM_GroupEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.group = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, GroupEditVM_GroupEditVM$fromStore___closure0: function GroupEditVM_GroupEditVM$fromStore___closure0() { }, GroupEditVM_GroupEditVM$fromStore____closure: function GroupEditVM_GroupEditVM$fromStore____closure(t0) { this.error = t0; }, GroupViewVM_GroupViewVM$fromStore: function(store) { var t4, t5, group, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).groupState.map; t2 = t2.groupUIState.selectedId; group = J.$index$asx(t5._map$_map, t2); if (group == null) group = Q.GroupEntity_GroupEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; group.get$isNew(); return new A.GroupViewVM(state, group, t1, new A.GroupViewVM_GroupViewVM$fromStore_closure(store), new A.GroupViewVM_GroupViewVM$fromStore_closure0(store, group), new A.GroupViewVM_GroupViewVM$fromStore_closure1(store, group)); }, GroupViewScreen: function GroupViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, GroupViewScreen_build_closure0: function GroupViewScreen_build_closure0() { }, GroupViewScreen_build_closure: function GroupViewScreen_build_closure(t0) { this.$this = t0; }, GroupViewVM: function GroupViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.group = t1; _.company = t2; _.onBackPressed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, GroupViewVM_GroupViewVM$fromStore_closure: function GroupViewVM_GroupViewVM$fromStore_closure(t0) { this.store = t0; }, GroupViewVM_GroupViewVM$fromStore_closure0: function GroupViewVM_GroupViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.group = t1; }, GroupViewVM_GroupViewVM$fromStore__closure0: function GroupViewVM_GroupViewVM$fromStore__closure0(t0) { this.context = t0; }, GroupViewVM_GroupViewVM$fromStore__closure1: function GroupViewVM_GroupViewVM$fromStore__closure1(t0) { this.context = t0; }, GroupViewVM_GroupViewVM$fromStore___closure: function GroupViewVM_GroupViewVM$fromStore___closure(t0) { this.error = t0; }, GroupViewVM_GroupViewVM$fromStore_closure1: function GroupViewVM_GroupViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.group = t1; }, GroupViewVM_GroupViewVM$fromStore__closure: function GroupViewVM_GroupViewVM$fromStore__closure(t0, t1) { this.store = t0; this.group = t1; }, InvoiceEditPDF: function InvoiceEditPDF(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditPDFState: function InvoiceEditPDFState(t0) { var _ = this; _._invoice_edit_pdf$_isLoading = false; _._widget = _._invoice_edit_pdf$_pdfController = _._invoice_edit_pdf$_pdfString = null; _._debugLifecycleState = t0; _._framework$_element = null; }, InvoiceEditPDFState_didChangeDependencies_closure: function InvoiceEditPDFState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies_closure0: function InvoiceEditPDFState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies__closure0: function InvoiceEditPDFState_didChangeDependencies__closure0(t0, t1) { this.$this = t0; this.response = t1; }, InvoiceEditPDFState_didChangeDependencies_closure1: function InvoiceEditPDFState_didChangeDependencies_closure1(t0) { this.$this = t0; }, InvoiceEditPDFState_didChangeDependencies__closure: function InvoiceEditPDFState_didChangeDependencies__closure(t0) { this.$this = t0; }, InvoiceViewActivity: function InvoiceViewActivity(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceViewActivityState: function _InvoiceViewActivityState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceViewActivityState_build_closure0: function _InvoiceViewActivityState_build_closure0() { }, _InvoiceViewActivityState_build_closure: function _InvoiceViewActivityState_build_closure(t0) { this.activities = t0; }, InvoiceOverview: function InvoiceOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, InvoiceOverview_build_closure: function InvoiceOverview_build_closure(t0, t1, t2) { this.invoice = t0; this.paymentMap = t1; this.creditMap = t2; }, InvoiceOverview_build__closure0: function InvoiceOverview_build__closure0(t0, t1, t2) { this.invoice = t0; this.paymentMap = t1; this.payment = t2; }, InvoiceOverview_build__closure1: function InvoiceOverview_build__closure1(t0, t1, t2) { this.invoice = t0; this.creditMap = t1; this.payment = t2; }, InvoiceOverview_build_closure0: function InvoiceOverview_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.client = t2; _.widgets = t3; }, InvoiceOverview_build_closure1: function InvoiceOverview_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.client = t2; _.widgets = t3; }, InvoiceOverview_build_closure2: function InvoiceOverview_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.widgets = t1; _.invoice = t2; _.userCompany = t3; }, InvoiceOverview_build__closure: function InvoiceOverview_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.invoiceItem = t2; _.userCompany = t3; }, InvoiceOverview_build___closure: function InvoiceOverview_build___closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.userCompany = t1; _.invoice = t2; _.context = t3; _.invoiceItem = t4; }, InvoiceOverview_build_surchargeRow: function InvoiceOverview_build_surchargeRow(t0, t1) { this.context = t0; this.invoice = t1; }, InvoiceOverview_build_closure3: function InvoiceOverview_build_closure3(t0, t1) { this.widgets = t0; this.surchargeRow = t1; }, RecurringInvoiceScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).recurringInvoiceState.toString; t5 = $.$get$memoizedFilteredRecurringInvoiceList(); t6 = state.getUISelection$1(C.EntityType_recurringInvoice); t7 = t4.$index(t1, t3).recurringInvoiceState.map; t8 = t4.$index(t1, t3).clientState.map; t9 = t4.$index(t1, t3).recurringInvoiceState.list; t2 = t2.recurringInvoiceUIState.listUIState; t9 = t5.call$6(t6, t7, t8, t9, t2, t4.$index(t1, t3).userState.map); t4.$index(t1, t3).toString; t2.toString; return new A.RecurringInvoiceScreenVM(t9); }, RecurringInvoiceScreenBuilder: function RecurringInvoiceScreenBuilder(t0) { this.key = t0; }, RecurringInvoiceScreenBuilder_build_closure: function RecurringInvoiceScreenBuilder_build_closure() { }, RecurringInvoiceScreenVM: function RecurringInvoiceScreenVM(t0) { this.recurringInvoiceList = t0; }, clientReport: function(userCompany, reportsUIState, clientMap, userMap, staticState) { var columns, t5, t6, t7, t8, client, contact, row, t9, t10, currencyId, currencyId0, t11, exchangeRate, t12, t13, t14, t15, t16, value, value0, value1, value2, value3, value4, value5, value6, t17, t18, value7, value8, value9, value10, t19, t20, value11, value12, value13, value14, value15, t21, value16, value17, value18, value19, value20, value21, value22, value23, value24, t22, t23, t24, t25, value25, value26, t26, value27, value28, skip, t27, value29, t28, t29, t30, t31, currencyId1, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, clientReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "client") ? J.$index$asx(reportSettings._map$_map, "client") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), t1 = type$.JSArray_legacy_ClientReportFields, defaultColumns = H.setRuntimeTypeInfo([C.ClientReportFields_0, C.ClientReportFields_41, C.ClientReportFields_36, C.ClientReportFields_37, C.ClientReportFields_2, C.ClientReportFields_27, C.ClientReportFields_29, C.ClientReportFields_14], t1), t2 = clientReportSettings.columns._list, t3 = J.getInterceptor$asx(t2), t4 = type$.legacy_ClientReportFields; if (t3.get$isNotEmpty(t2)) { t2 = t3.map$1$1(t2, new A.clientReport_closure(), t4).where$1(0, new A.clientReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t4); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t4); for (t2 = J.get$iterator$ax(clientMap.get$keys(clientMap)), t3 = columns._list, t4 = J.getInterceptor$ax(t3), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = clientMap._map$_map, t8 = J.getInterceptor$asx(t7); t2.moveNext$0();) { client = t8.$index(t7, t2.get$current(t2)); contact = client.get$primaryContact(); if (client.isDeleted) continue; row = H.setRuntimeTypeInfo([], t6); t9 = staticState.currencyMap; t10 = client.settings; currencyId = t10.currencyId; currencyId0 = t5.settings.currencyId; t11 = currencyId0 == null; exchangeRate = R.getExchangeRate(t9, currencyId, t11 ? "1" : currencyId0); for (t12 = t4.get$iterator(t3), t13 = client.id, t14 = client.createdAt, t15 = client.updatedAt, t16 = client.archivedAt > 0, value = client.paidToDate, value0 = value * exchangeRate, value1 = client.creditBalance, value2 = value1 * exchangeRate, value3 = client.balance, value4 = value3 * exchangeRate, value5 = value3 + value, value6 = value5 * exchangeRate, t17 = client.createdUserId, t18 = client.assignedUserId, value7 = client.vatNumber, value8 = client.idNumber, value9 = client.number, value10 = client.phone, t19 = staticState.countryMap, t20 = client.shippingCountryId, value11 = client.shippingPostalCode, value12 = client.shippingState, value13 = client.shippingCity, value14 = client.shippingAddress2, value15 = client.shippingAddress1, t21 = client.countryId, value16 = client.postalCode, value17 = client.state, value18 = client.city, value19 = client.address2, value20 = client.address1, value21 = client.customValue4, value22 = client.customValue3, value23 = client.customValue2, value24 = client.customValue1, t22 = staticState.sizeMap, t23 = client.sizeId, t24 = staticState.industryMap, t25 = client.industryId, value25 = client.publicNotes, value26 = client.privateNotes, t26 = staticState.languageMap, value27 = client.website, value28 = client.displayName, t14 *= 1000, t15 *= 1000, t10 = t10.languageId, skip = false; t12.moveNext$0();) { t27 = t12.get$current(t12); switch (t27) { case C.ClientReportFields_0: value29 = value28; break; case C.ClientReportFields_1: value29 = value27; break; case C.ClientReportFields_2: t28 = J.$index$asx(t9._map$_map, currencyId); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_3: t28 = J.$index$asx(t26._map$_map, t10); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_4: value29 = value26; break; case C.ClientReportFields_5: value29 = value25; break; case C.ClientReportFields_6: t28 = J.$index$asx(t24._map$_map, t25); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_7: t28 = J.$index$asx(t22._map$_map, t23); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_21: value29 = value24; break; case C.ClientReportFields_22: value29 = value23; break; case C.ClientReportFields_23: value29 = value22; break; case C.ClientReportFields_24: value29 = value21; break; case C.ClientReportFields_8: value29 = value20; break; case C.ClientReportFields_9: value29 = value19; break; case C.ClientReportFields_10: value29 = value18; break; case C.ClientReportFields_11: value29 = value17; break; case C.ClientReportFields_12: value29 = value16; break; case C.ClientReportFields_14: t28 = J.$index$asx(t19._map$_map, t21); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_15: value29 = value15; break; case C.ClientReportFields_16: value29 = value14; break; case C.ClientReportFields_17: value29 = value13; break; case C.ClientReportFields_18: value29 = value12; break; case C.ClientReportFields_19: value29 = value11; break; case C.ClientReportFields_20: t28 = J.$index$asx(t19._map$_map, t20); value29 = t28 == null ? _null : t28.name; if (value29 == null) value29 = ""; break; case C.ClientReportFields_13: value29 = value10; break; case C.ClientReportFields_35: value29 = value9; break; case C.ClientReportFields_36: value29 = value8; break; case C.ClientReportFields_37: value29 = value7; break; case C.ClientReportFields_26: t28 = J.$index$asx(userMap._map$_map, t18); if (t28 == null) value29 = _null; else { t29 = t28.firstName; t30 = t29 + " "; t31 = t28.lastName; t28 = C.JSString_methods.trim$0(t30 + t31).length !== 0 ? C.JSString_methods.trim$0(t29 + " " + t31) : t28.email; value29 = t28; } if (value29 == null) value29 = ""; break; case C.ClientReportFields_25: t28 = J.$index$asx(userMap._map$_map, t17); if (t28 == null) value29 = _null; else { t29 = t28.firstName; t30 = t29 + " "; t31 = t28.lastName; t28 = C.JSString_methods.trim$0(t30 + t31).length !== 0 ? C.JSString_methods.trim$0(t29 + " " + t31) : t28.email; value29 = t28; } if (value29 == null) value29 = ""; break; case C.ClientReportFields_38: value29 = C.JSString_methods.trim$0(contact.firstName + " " + contact.lastName); break; case C.ClientReportFields_39: value29 = contact.firstName; break; case C.ClientReportFields_40: value29 = contact.lastName; break; case C.ClientReportFields_41: value29 = contact.email; break; case C.ClientReportFields_42: value29 = contact.phone; break; case C.ClientReportFields_43: value29 = contact.customValue1; break; case C.ClientReportFields_44: value29 = contact.customValue2; break; case C.ClientReportFields_45: value29 = contact.customValue3; break; case C.ClientReportFields_46: value29 = contact.customValue4; break; case C.ClientReportFields_47: t28 = contact.lastLogin; t28 *= 1000; t29 = new P.DateTime(t28, false); t29.DateTime$_withValue$2$isUtc(t28, false); value29 = t29.toIso8601String$0(); break; case C.ClientReportFields_30: value29 = value5; break; case C.ClientReportFields_27: value29 = value3; break; case C.ClientReportFields_28: value29 = value1; break; case C.ClientReportFields_29: value29 = value; break; case C.ClientReportFields_34: value29 = value6; break; case C.ClientReportFields_31: value29 = value4; break; case C.ClientReportFields_32: value29 = value2; break; case C.ClientReportFields_33: value29 = value0; break; case C.ClientReportFields_48: t28 = t16 && true; value29 = !t28 && true; break; case C.ClientReportFields_50: t28 = new P.DateTime(t15, false); t28.DateTime$_withValue$2$isUtc(t15, false); value29 = t28.toIso8601String$0(); break; case C.ClientReportFields_49: t28 = new P.DateTime(t14, false); t28.DateTime$_withValue$2$isUtc(t14, false); value29 = t28.toIso8601String$0(); break; default: value29 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t27), _null, reportsUIState, userCompany, value29)) skip = true; t28 = J.getInterceptor$(value29); if (t28.get$runtimeType(value29) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value29, client.get$entityType(), t13)); else if (t28.get$runtimeType(value29) === C.Type_double_K1J || t28.get$runtimeType(value29) === C.Type_int_tHn) { if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.ClientReportFields_31, C.ClientReportFields_32, C.ClientReportFields_33, C.ClientReportFields_34], t1), t27)) currencyId1 = t11 ? "1" : currencyId0; else currencyId1 = currencyId; row.push(new A.ReportNumberValue(value29, _null, currencyId1, exchangeRate, client.get$entityType(), t13)); } else row.push(new A.ReportStringValue(H.S(value29), client.get$entityType(), t13)); } if (!skip) data.push(row); } selectedColumns = t4.map$1$1(t3, new A.clientReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new A.clientReport_closure2(clientReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ClientReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_00, new A.clientReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new A.clientReport_closure4(), t1), true, t2), data, true); }, ClientReportFields: function ClientReportFields(t0) { this._client_report$_name = t0; }, memoizedClientReport_closure: function memoizedClientReport_closure() { }, clientReport_closure: function clientReport_closure() { }, clientReport_closure0: function clientReport_closure0() { }, clientReport_closure1: function clientReport_closure1() { }, clientReport_closure2: function clientReport_closure2(t0, t1) { this.clientReportSettings = t0; this.selectedColumns = t1; }, clientReport_closure3: function clientReport_closure3() { }, clientReport_closure4: function clientReport_closure4() { }, getReportColumnType: function(column, context) { var t1, t2, company; column = A.toSnakeCase(column); t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; if (C.JSString_methods.startsWith$1(column, "surcharge")) return C.ReportColumnType_3; else if (column === "duration") return C.ReportColumnType_6; else if (company.getCustomFieldLabel$1(column).length !== 0) return new A.getReportColumnType_convertCustomFieldType().call$1(company.getCustomFieldType$1(column)); else if (Q.EntityPresenter_isFieldNumeric(column)) return C.ReportColumnType_3; else { t1 = type$.JSArray_legacy_String; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["updated_at", "created_at", "start_time", "end_time"], t1), column)) return C.ReportColumnType_1; else if (C.JSString_methods.contains$1(column, "_date") && column !== "paid_to_date" || C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["date", "valid_until"], t1), column)) return C.ReportColumnType_2; else if (column === "age") return C.ReportColumnType_5; else if (C.JSString_methods.startsWith$1(column, "is_")) return C.ReportColumnType_4; else return C.ReportColumnType_0; } }, ReportResult_matchField: function(column, localization, reportsUIState, userCompany, value) { var filter, min, boolFilter, t1 = reportsUIState.filters._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, column)) { filter = t2.$index(t1, column); if (filter.length !== 0) if (column === "age") { min = C.Map_A2Rmq.$index(0, filter); t1 = J.getInterceptor$n(value); if (t1.$lt(value, min) || t1.$ge(value, min + 30)) return false; } else { t1 = J.getInterceptor$(value); if (t1.get$runtimeType(value) === C.Type_int_tHn || t1.get$runtimeType(value) === C.Type_double_K1J) { if (!A.ReportResult_matchAmount(value, filter)) return false; } else if (t1.get$runtimeType(value) === C.Type_bool_lhE || filter === "true" || filter === "false") { if (filter.toLowerCase() === "yes") boolFilter = "true"; else boolFilter = filter.toLowerCase() === "no" ? "false" : filter; if (t1.get$runtimeType(value) === C.Type_String_k8F) if (J.$eq$(t1.toLowerCase$0(value), "yes")) value = "true"; else if (J.$eq$(t1.toLowerCase$0(value), "no")) value = "false"; if (boolFilter !== H.S(value)) return false; } else if (t1.get$runtimeType(value) === C.Type_EntityType_6qb) return filter.toLowerCase() === H.S(value).toLowerCase(); else if (A.isValidDate(value)) { if (!A.ReportResult_matchDateTime(filter, reportsUIState, userCompany, value)) return false; } else if (!A.ReportResult_matchString(filter, value)) return false; } } return true; }, ReportResult_matchString: function(filter, value) { var t1; filter = C.JSString_methods.trim$0(filter); if (filter.length === 0) return true; t1 = value == null ? "" : value; value = t1.toLowerCase(); if (filter === "null" && value.length === 0) return true; return C.JSString_methods.contains$1(value, filter.toLowerCase()); }, ReportResult_matchAmount: function(amount, filter) { var t1, parts = (H.stringReplaceAllUnchecked(filter, ",", "-") + "-").split("-"), min = Y.parseDouble(parts[0], false), max = parts.length > 1 ? Y.parseDouble(parts[1], false) : 0; if (!(amount < min)) t1 = max > 0 && amount > max; else t1 = true; if (t1) return false; return true; }, ReportResult_matchDateTime: function(filter, reportsUIState, userCompany, value) { var exception, t1, t2, t3, startDate, endDate, dateRange = C.DateRange_last30Days; try { dateRange = F._$valueOf0(filter); } catch (exception) { H.unwrapException(exception); } t1 = userCompany.company; t2 = reportsUIState.customStartDate; t3 = reportsUIState.customEndDate; startDate = V.calculateStartDate(t1, t3, t2, dateRange, 0); endDate = V.calculateEndDate(t1, t3, t2, dateRange, 0); if (dateRange === C.DateRange_custom) { t1 = t2.length !== 0; if (t1 && t3.length !== 0) { if (!(J.compareTo$1$ns(startDate, value) <= 0 && J.compareTo$1$ns(endDate, value) >= 0)) return false; } else if (t1) { if (J.compareTo$1$ns(startDate, value) > 0) return false; } else if (t3.length !== 0) if (J.compareTo$1$ns(endDate, value) < 0) return false; } else if (!(J.compareTo$1$ns(startDate, value) <= 0 && J.compareTo$1$ns(endDate, value) >= 0)) return false; return true; }, sortReportTableRows: function(rowA, rowB, reportSettings, columns) { var index, valueA, valueB, t1 = reportSettings.sortColumn; if (t1.length === 0) return 0; index = C.JSArray_methods.indexOf$1(columns, t1); if (index === -1) return 0; else { t1 = J.getInterceptor$asx(rowA); if (t1.get$length(rowA) <= index || J.get$length$asx(rowB) <= index) return 0; } valueA = J.get$value$x(t1.$index(rowA, index)); valueB = J.get$value$x(J.$index$asx(rowB, index)); if (reportSettings.sortAscending) return J.compareTo$1$ns(valueA, valueB); else return J.compareTo$1$ns(valueB, valueA); }, ReportsScreen: function ReportsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ReportsScreen_build_closure: function ReportsScreen_build_closure(t0) { this.localization = t0; }, ReportsScreen_build__closure2: function ReportsScreen_build__closure2(t0) { this.context = t0; }, ReportsScreen_build_closure0: function ReportsScreen_build_closure0(t0, t1) { this.reportsState = t0; this.context = t1; }, ReportsScreen_build_closure1: function ReportsScreen_build_closure1() { }, ReportsScreen_build_closure2: function ReportsScreen_build_closure2(t0) { this.$this = t0; }, ReportsScreen_build_closure3: function ReportsScreen_build_closure3(t0) { this.localization = t0; }, ReportsScreen_build_closure4: function ReportsScreen_build_closure4(t0) { this.$this = t0; }, ReportsScreen_build_closure5: function ReportsScreen_build_closure5(t0) { this.$this = t0; }, ReportsScreen_build_closure6: function ReportsScreen_build_closure6(t0) { this.$this = t0; }, ReportsScreen_build_closure7: function ReportsScreen_build_closure7(t0) { this.context = t0; }, ReportsScreen_build_closure8: function ReportsScreen_build_closure8(t0, t1) { this.state = t0; this.localization = t1; }, ReportsScreen_build_closure9: function ReportsScreen_build_closure9(t0) { this.$this = t0; }, ReportsScreen_build_closure10: function ReportsScreen_build_closure10(t0) { this.$this = t0; }, ReportsScreen_build_closure11: function ReportsScreen_build_closure11(t0) { this.context = t0; }, ReportsScreen_build_closure12: function ReportsScreen_build_closure12(t0) { this.localization = t0; }, ReportsScreen_build_closure18: function ReportsScreen_build_closure18(t0) { this.store = t0; }, ReportsScreen_build_closure13: function ReportsScreen_build_closure13(t0, t1, t2) { this.$this = t0; this.localization = t1; this.reportResult = t2; }, ReportsScreen_build__closure1: function ReportsScreen_build__closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.reportResult = t2; }, ReportsScreen_build___closure0: function ReportsScreen_build___closure0(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure14: function ReportsScreen_build_closure14(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure15: function ReportsScreen_build_closure15(t0, t1, t2) { this.localization = t0; this.state = t1; this.store = t2; }, ReportsScreen_build__closure0: function ReportsScreen_build__closure0(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, ReportsScreen_build_closure16: function ReportsScreen_build_closure16(t0, t1, t2) { this.$this = t0; this.localization = t1; this.reportResult = t2; }, ReportsScreen_build__closure: function ReportsScreen_build__closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.reportResult = t2; }, ReportsScreen_build___closure: function ReportsScreen_build___closure(t0, t1) { this.$this = t0; this.context = t1; }, ReportsScreen_build_closure17: function ReportsScreen_build_closure17(t0, t1) { this.$this = t0; this.context = t1; }, ReportDataTable: function ReportDataTable(t0, t1) { this.viewModel = t0; this.key = t1; }, _ReportDataTableState: function _ReportDataTableState(t0, t1) { var _ = this; _._textEditingControllers = t0; _._widget = _.dataTableSource = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ReportDataTableState_initState_closure: function _ReportDataTableState_initState_closure(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ReportDataTableState_initState__closure: function _ReportDataTableState_initState__closure(t0, t1) { this.column = t0; this.value = t1; }, _ReportDataTableState_didChangeDependencies_closure: function _ReportDataTableState_didChangeDependencies_closure(t0, t1, t2) { this.$this = t0; this.column = t1; this.textEditingController = t2; }, _ReportDataTableState__onChanged_closure: function _ReportDataTableState__onChanged_closure(t0, t1) { this.column = t0; this.value = t1; }, _ReportDataTableState_dispose_closure: function _ReportDataTableState_dispose_closure(t0) { this.$this = t0; }, _ReportDataTableState_dispose__closure: function _ReportDataTableState_dispose__closure(t0, t1) { this.$this = t0; this.i = t1; }, _ReportDataTableState_build_closure: function _ReportDataTableState_build_closure(t0, t1) { this.$this = t0; this.sortedColumns = t1; }, TotalsDataTable: function TotalsDataTable(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.reportSettings = t1; _.reportResult = t2; _.key = t3; }, TotalsDataTable_build_closure: function TotalsDataTable_build_closure(t0) { this.$this = t0; }, ReportColumnType: function ReportColumnType(t0) { this._reports_screen$_name = t0; }, getReportColumnType_convertCustomFieldType: function getReportColumnType_convertCustomFieldType() { }, ReportDataTableSource: function ReportDataTableSource(t0, t1, t2, t3, t4) { var _ = this; _.viewModel = t0; _.context = t1; _.textEditingControllers = t2; _.onFilterChanged = t3; _.ChangeNotifier__listeners = t4; }, ReportDataTableSource_getRow_closure: function ReportDataTableSource_getRow_closure(t0) { this.$this = t0; }, ReportResult: function ReportResult(t0, t1, t2, t3, t4) { var _ = this; _.columns = t0; _.allColumns = t1; _.defaultColumns = t2; _.data = t3; _.showTotals = t4; }, ReportResult_tableFilters_closure: function ReportResult_tableFilters_closure(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure0: function ReportResult_tableFilters_closure0(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure1: function ReportResult_tableFilters_closure1(t0) { this.localization = t0; }, ReportResult_tableFilters_closure2: function ReportResult_tableFilters_closure2(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure4: function ReportResult_tableFilters_closure4(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure3: function ReportResult_tableFilters_closure3(t0) { this.localization = t0; }, ReportResult_tableFilters_closure7: function ReportResult_tableFilters_closure7() { }, ReportResult_tableFilters_closure9: function ReportResult_tableFilters_closure9(t0, t1, t2) { this.$this = t0; this.column = t1; this.context = t2; }, ReportResult_tableFilters__closure: function ReportResult_tableFilters__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.index = t1; _.context = t2; _.column = t3; }, ReportResult_tableFilters__closure0: function ReportResult_tableFilters__closure0(t0, t1, t2) { this.index = t0; this.context = t1; this.column = t2; }, ReportResult_tableFilters_closure6: function ReportResult_tableFilters_closure6(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters__closure1: function ReportResult_tableFilters__closure1(t0, t1, t2, t3) { var _ = this; _.textEditingControllers = t0; _.column = t1; _.value = t2; _.onFilterChanged = t3; }, ReportResult_tableFilters_closure8: function ReportResult_tableFilters_closure8(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableFilters_closure5: function ReportResult_tableFilters_closure5(t0, t1, t2) { this.textEditingControllers = t0; this.column = t1; this.onFilterChanged = t2; }, ReportResult_tableRow_closure: function ReportResult_tableRow_closure(t0) { this.cell = t0; }, ReportResult_tableRow_closure0: function ReportResult_tableRow_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.group = t0; _.column = t1; _.groupBy = t2; _.context = t3; _.reportState = t4; _.localization = t5; _.store = t6; }, ReportResult_tableRow__closure: function ReportResult_tableRow__closure(t0, t1) { this._box_0 = t0; this.column = t1; }, ReportResult_totalColumns_closure: function ReportResult_totalColumns_closure() { }, ReportResult_totalRows_closure: function ReportResult_totalRows_closure() { }, ReportResult_totalRows_closure0: function ReportResult_totalRows_closure0(t0, t1, t2) { this.reportSettings = t0; this.state = t1; this.totals = t2; }, ReportResult_totalRows__closure0: function ReportResult_totalRows__closure0() { }, ReportResult_totalRows_closure1: function ReportResult_totalRows_closure1(t0, t1) { this._box_0 = t0; this.totals = t1; }, ReportResult_totalRows_closure2: function ReportResult_totalRows_closure2() { }, ReportResult_totalRows_closure3: function ReportResult_totalRows_closure3(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.totals = t1; _.store = t2; _.context = t3; _.rows = t4; }, ReportResult_totalRows__closure: function ReportResult_totalRows__closure(t0, t1, t2, t3) { var _ = this; _.values = t0; _.context = t1; _.currencyId = t2; _.cells = t3; }, ReportElement: function ReportElement() { }, ReportStringValue: function ReportStringValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportEntityTypeValue: function ReportEntityTypeValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportAgeValue: function ReportAgeValue(t0, t1, t2, t3) { var _ = this; _.value = t0; _.currencyId = t1; _.entityType = t2; _.entityId = t3; }, ReportDurationValue: function ReportDurationValue(t0, t1, t2, t3) { var _ = this; _.value = t0; _.currencyId = t1; _.entityType = t2; _.entityId = t3; }, ReportIntValue: function ReportIntValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, ReportNumberValue: function ReportNumberValue(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _.formatNumberType = t1; _.currencyId = t2; _.exchangeRate = t3; _.entityType = t4; _.entityId = t5; }, ReportBoolValue: function ReportBoolValue(t0, t1, t2) { this.value = t0; this.entityType = t1; this.entityId = t2; }, AccountManagementVM_fromStore: function(store) { var state = store.get$_store$_state(); return new A.AccountManagementVM(state, new A.AccountManagementVM_fromStore_closure(store), state.uiState.settingsUIState.company, new A.AccountManagementVM_fromStore_closure0(store), new A.AccountManagementVM_fromStore_closure1(store), new A.AccountManagementVM_fromStore_closure2(state, store), new A.AccountManagementVM_fromStore_closure3(store), new A.AccountManagementVM_fromStore_closure4(store)); }, AccountManagementScreen: function AccountManagementScreen(t0) { this.key = t0; }, AccountManagementScreen_build_closure: function AccountManagementScreen_build_closure() { }, AccountManagementVM: function AccountManagementVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onSetPrimaryCompany = t3; _.onCompanyChanged = t4; _.onCompanyDelete = t5; _.onPurgeData = t6; _.onAppliedLicense = t7; }, AccountManagementVM_fromStore_closure1: function AccountManagementVM_fromStore_closure1(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure2: function AccountManagementVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, AccountManagementVM_fromStore__closure: function AccountManagementVM_fromStore__closure() { }, AccountManagementVM_fromStore__closure0: function AccountManagementVM_fromStore__closure0(t0, t1) { this.store = t0; this.companyLength = t1; }, AccountManagementVM_fromStore___closure0: function AccountManagementVM_fromStore___closure0(t0, t1) { this.store = t0; this.context = t1; }, AccountManagementVM_fromStore__closure1: function AccountManagementVM_fromStore__closure1() { }, AccountManagementVM_fromStore___closure: function AccountManagementVM_fromStore___closure(t0) { this.error = t0; }, AccountManagementVM_fromStore_closure: function AccountManagementVM_fromStore_closure(t0) { this.store = t0; }, AccountManagementVM_fromStore__closure2: function AccountManagementVM_fromStore__closure2(t0, t1) { this.store = t0; this.context = t1; }, AccountManagementVM_fromStore_closure3: function AccountManagementVM_fromStore_closure3(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure4: function AccountManagementVM_fromStore_closure4(t0) { this.store = t0; }, AccountManagementVM_fromStore_closure0: function AccountManagementVM_fromStore_closure0(t0) { this.store = t0; }, ClientPortalVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.ClientPortalVM(state, t1.company, t2, new A.ClientPortalVM_fromStore_closure(store, state), new A.ClientPortalVM_fromStore_closure0(store), new A.ClientPortalVM_fromStore_closure1(store)); }, ClientPortalScreen: function ClientPortalScreen(t0) { this.key = t0; }, ClientPortalScreen_build_closure: function ClientPortalScreen_build_closure() { }, ClientPortalVM: function ClientPortalVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSavePressed = t3; _.onCompanyChanged = t4; _.onSettingsChanged = t5; }, ClientPortalVM_fromStore_closure1: function ClientPortalVM_fromStore_closure1(t0) { this.store = t0; }, ClientPortalVM_fromStore_closure0: function ClientPortalVM_fromStore_closure0(t0) { this.store = t0; }, ClientPortalVM_fromStore_closure: function ClientPortalVM_fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, ClientPortalVM_fromStore__closure: function ClientPortalVM_fromStore__closure(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, ClientPortalVM_fromStore___closure: function ClientPortalVM_fromStore___closure() { }, CompanyDetails: function CompanyDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyDetailsState: function _CompanyDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _._company_details$_focusNode = t0; _._company_details$_controller = null; _._company_details$_debouncer = t1; _._company_details$_nameController = t2; _._idNumberController = t3; _._vatNumberController = t4; _._company_details$_emailController = t5; _._websiteController = t6; _._company_details$_phoneController = t7; _._address1Controller = t8; _._address2Controller = t9; _._cityController = t10; _._stateController = t11; _._postalCodeController = t12; _._company_details$_custom1Controller = t13; _._company_details$_custom2Controller = t14; _._company_details$_custom3Controller = t15; _._company_details$_custom4Controller = t16; _._invoiceTermsController = t17; _._invoiceFooterController = t18; _._quoteTermsController = t19; _._quoteFooterController = t20; _._creditTermsController = t21; _._creditFooterController = t22; _._company_details$_controllers = t23; _.SingleTickerProviderStateMixin__ticker = t24; _._widget = null; _._debugLifecycleState = t25; _._framework$_element = null; }, _CompanyDetailsState_dispose_closure: function _CompanyDetailsState_dispose_closure(t0) { this.$this = t0; }, _CompanyDetailsState_didChangeDependencies_closure: function _CompanyDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CompanyDetailsState_didChangeDependencies_closure0: function _CompanyDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _CompanyDetailsState__onSettingsChanged_closure: function _CompanyDetailsState__onSettingsChanged_closure(t0) { this.$this = t0; }, _CompanyDetailsState__onSettingsChanged_closure0: function _CompanyDetailsState__onSettingsChanged_closure0(t0, t1) { this.$this = t0; this.settings = t1; }, _CompanyDetailsState_build_closure: function _CompanyDetailsState_build_closure(t0) { this.localization = t0; }, _CompanyDetailsState_build_closure0: function _CompanyDetailsState_build_closure0(t0) { this.state = t0; }, _CompanyDetailsState_build_closure1: function _CompanyDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _CompanyDetailsState_build__closure12: function _CompanyDetailsState_build__closure12(t0) { this.sizeId = t0; }, _CompanyDetailsState_build_closure2: function _CompanyDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _CompanyDetailsState_build__closure11: function _CompanyDetailsState_build__closure11(t0) { this.industry = t0; }, _CompanyDetailsState_build_closure3: function _CompanyDetailsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure10: function _CompanyDetailsState_build__closure10(t0) { this.country = t0; }, _CompanyDetailsState_build_closure4: function _CompanyDetailsState_build_closure4(t0, t1, t2) { this.settings = t0; this.localization = t1; this.viewModel = t2; }, _CompanyDetailsState_build__closure8: function _CompanyDetailsState_build__closure8(t0, t1) { this.context = t0; this.viewModel = t1; }, _CompanyDetailsState_build___closure: function _CompanyDetailsState_build___closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build__closure9: function _CompanyDetailsState_build__closure9(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build_closure6: function _CompanyDetailsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure7: function _CompanyDetailsState_build__closure7(t0) { this.value = t0; }, _CompanyDetailsState_build_closure5: function _CompanyDetailsState_build_closure5(t0) { this.localization = t0; }, _CompanyDetailsState_build_closure7: function _CompanyDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure6: function _CompanyDetailsState_build__closure6(t0) { this.paymentType = t0; }, _CompanyDetailsState_build_closure8: function _CompanyDetailsState_build_closure8(t0) { this.state = t0; }, _CompanyDetailsState_build_closure9: function _CompanyDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure5: function _CompanyDetailsState_build__closure5(t0) { this.numDays = t0; }, _CompanyDetailsState_build_closure10: function _CompanyDetailsState_build_closure10(t0) { this.state = t0; }, _CompanyDetailsState_build_closure11: function _CompanyDetailsState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure4: function _CompanyDetailsState_build__closure4(t0) { this.numDays = t0; }, _CompanyDetailsState_build_closure12: function _CompanyDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build_closure13: function _CompanyDetailsState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure3: function _CompanyDetailsState_build__closure3(t0) { this.value = t0; }, _CompanyDetailsState_build_closure14: function _CompanyDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure2: function _CompanyDetailsState_build__closure2(t0) { this.value = t0; }, _CompanyDetailsState_build_closure15: function _CompanyDetailsState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure1: function _CompanyDetailsState_build__closure1(t0) { this.value = t0; }, _CompanyDetailsState_build_closure16: function _CompanyDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure0: function _CompanyDetailsState_build__closure0(t0) { this.value = t0; }, _CompanyDetailsState_build_closure17: function _CompanyDetailsState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _CompanyDetailsState_build__closure: function _CompanyDetailsState_build__closure(t0) { this.value = t0; }, _CompanyDetailsState_build_closure18: function _CompanyDetailsState_build_closure18(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyDetailsState_build_closure19: function _CompanyDetailsState_build_closure19(t0, t1) { this.viewModel = t0; this.context = t1; }, __CompanyDetailsState_State_SingleTickerProviderStateMixin: function __CompanyDetailsState_State_SingleTickerProviderStateMixin() { }, CompanyDetailsVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new A.CompanyDetailsVM(state, t1.company, t2, new A.CompanyDetailsVM_fromStore_closure(store), new A.CompanyDetailsVM_fromStore_closure0(store), new A.CompanyDetailsVM_fromStore_closure1(store), new A.CompanyDetailsVM_fromStore_closure2(state, store), new A.CompanyDetailsVM_fromStore_closure3(state, store), new A.CompanyDetailsVM_fromStore_closure4(state, store), new A.CompanyDetailsVM_fromStore_closure5(store), new A.CompanyDetailsVM_fromStore_closure6(store)); }, CompanyDetailsScreen: function CompanyDetailsScreen(t0) { this.key = t0; }, CompanyDetailsScreen_build_closure: function CompanyDetailsScreen_build_closure() { }, CompanyDetailsVM: function CompanyDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSettingsChanged = t3; _.onCompanyChanged = t4; _.onSavePressed = t5; _.onUploadLogo = t6; _.onDeleteLogo = t7; _.onConfigurePaymentTermsPressed = t8; _.onUploadDocument = t9; _.onDeleteDocument = t10; }, CompanyDetailsVM_fromStore_closure: function CompanyDetailsVM_fromStore_closure(t0) { this.store = t0; }, CompanyDetailsVM_fromStore_closure0: function CompanyDetailsVM_fromStore_closure0(t0) { this.store = t0; }, CompanyDetailsVM_fromStore_closure3: function CompanyDetailsVM_fromStore_closure3(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore__closure2: function CompanyDetailsVM_fromStore__closure2() { }, CompanyDetailsVM_fromStore__closure3: function CompanyDetailsVM_fromStore__closure3() { }, CompanyDetailsVM_fromStore__closure4: function CompanyDetailsVM_fromStore__closure4() { }, CompanyDetailsVM_fromStore_closure1: function CompanyDetailsVM_fromStore_closure1(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure5: function CompanyDetailsVM_fromStore__closure5(t0, t1) { this.store = t0; this.context = t1; }, CompanyDetailsVM_fromStore_closure2: function CompanyDetailsVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore_closure4: function CompanyDetailsVM_fromStore_closure4(t0, t1) { this.state = t0; this.store = t1; }, CompanyDetailsVM_fromStore_closure5: function CompanyDetailsVM_fromStore_closure5(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure0: function CompanyDetailsVM_fromStore__closure0(t0) { this.context = t0; }, CompanyDetailsVM_fromStore__closure1: function CompanyDetailsVM_fromStore__closure1(t0) { this.context = t0; }, CompanyDetailsVM_fromStore___closure: function CompanyDetailsVM_fromStore___closure(t0) { this.error = t0; }, CompanyDetailsVM_fromStore_closure6: function CompanyDetailsVM_fromStore_closure6(t0) { this.store = t0; }, CompanyDetailsVM_fromStore__closure: function CompanyDetailsVM_fromStore__closure(t0) { this.store = t0; }, SettingsScreen: function SettingsScreen(t0) { this.key = t0; }, SettingsScreen_build_closure: function SettingsScreen_build_closure(t0) { this.store = t0; }, TaxSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState; return new A.TaxSettingsVM(state, new A.TaxSettingsVM_fromStore_closure(store), t1.get$settings(), new A.TaxSettingsVM_fromStore_closure0(store), t1.company, new A.TaxSettingsVM_fromStore_closure1(store), new A.TaxSettingsVM_fromStore_closure2(store)); }, TaxSettingsScreen: function TaxSettingsScreen(t0) { this.key = t0; }, TaxSettingsScreen_build_closure: function TaxSettingsScreen_build_closure() { }, TaxSettingsVM: function TaxSettingsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; _.company = t4; _.onCompanyChanged = t5; _.onConfigureRatesPressed = t6; }, TaxSettingsVM_fromStore_closure0: function TaxSettingsVM_fromStore_closure0(t0) { this.store = t0; }, TaxSettingsVM_fromStore_closure1: function TaxSettingsVM_fromStore_closure1(t0) { this.store = t0; }, TaxSettingsVM_fromStore_closure: function TaxSettingsVM_fromStore_closure(t0) { this.store = t0; }, TaxSettingsVM_fromStore__closure: function TaxSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TaxSettingsVM_fromStore_closure2: function TaxSettingsVM_fromStore_closure2(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore: function(store) { var t4, t5, t6, task = store.get$_store$_state().uiState.taskUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).taskState.map; t6 = task.id; J.$index$asx(t5._map$_map, t6); t2.taskUIState.toString; return new A.TaskEditDetailsVM(task, t4.$index(t1, t3).userCompany.company, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure(store), state, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0(store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1(task, store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2(task, store), new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3(store)); }, TaskEditDetailsScreen: function TaskEditDetailsScreen(t0) { this.key = t0; }, TaskEditDetailsScreen_build_closure0: function TaskEditDetailsScreen_build_closure0() { }, TaskEditDetailsScreen_build_closure: function TaskEditDetailsScreen_build_closure() { }, TaskEditDetailsVM: function TaskEditDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.task = t0; _.company = t1; _.onChanged = t2; _.state = t3; _.onAddClientPressed = t4; _.onAddProjectPressed = t5; _.onUpdatedTaskTime = t6; _.onRemoveTaskTime = t7; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2(t0, t1) { this.task = t0; this.store = t1; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1(t0, t1) { this.task = t0; this.store = t1; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure(t0) { this.task = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1: function TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1(t0) { this.store = t0; }, TaxRateEdit: function TaxRateEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaxRateEditState: function _TaxRateEditState(t0, t1, t2, t3, t4) { var _ = this; _._tax_rate_edit$_nameController = t0; _._rateController = t1; _._tax_rate_edit$_controllers = t2; _._tax_rate_edit$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _TaxRateEditState_didChangeDependencies_closure: function _TaxRateEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaxRateEditState_didChangeDependencies_closure0: function _TaxRateEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaxRateEditState_dispose_closure: function _TaxRateEditState_dispose_closure(t0) { this.$this = t0; }, _TaxRateEditState__onChanged_closure: function _TaxRateEditState__onChanged_closure(t0) { this.$this = t0; }, _TaxRateEditState__onChanged_closure0: function _TaxRateEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.taxRate = t1; }, _TaxRateEditState_build_closure: function _TaxRateEditState_build_closure(t0) { this.localization = t0; }, UserScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).userState.toString; t5 = $.$get$memoizedFilteredUserList(); t6 = state.getUISelection$1(C.EntityType_user); t7 = t4.$index(t1, t3).userState.map; t8 = t4.$index(t1, t3).userState.list; t2 = t2.userUIState.listUIState; t8 = t5.call$5(t6, t7, t8, t2, t4.$index(t1, t3).userCompany.user.id); t4.$index(t1, t3).toString; t2.toString; return new A.UserScreenVM(t8); }, UserScreenBuilder: function UserScreenBuilder(t0) { this.key = t0; }, UserScreenBuilder_build_closure: function UserScreenBuilder_build_closure() { }, UserScreenVM: function UserScreenVM(t0) { this.userList = t0; }, VendorEditVM_VendorEditVM$fromStore: function(store) { var t3, t4, t5, vendor = store.get$_store$_state().uiState.vendorUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).vendorState.map; t5 = vendor.id; J.$index$asx(t4._map$_map, t5); return new A.VendorEditVM(vendor, t3.$index(t1, t2).userCompany.company, new A.VendorEditVM_VendorEditVM$fromStore_closure(store), new A.VendorEditVM_VendorEditVM$fromStore_closure0(store, state), new A.VendorEditVM_VendorEditVM$fromStore_closure1(state, store), state); }, VendorEditScreen: function VendorEditScreen(t0) { this.key = t0; }, VendorEditScreen_build_closure0: function VendorEditScreen_build_closure0() { }, VendorEditScreen_build_closure: function VendorEditScreen_build_closure() { }, VendorEditVM: function VendorEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.vendor = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, VendorEditVM_VendorEditVM$fromStore_closure: function VendorEditVM_VendorEditVM$fromStore_closure(t0) { this.store = t0; }, VendorEditVM_VendorEditVM$fromStore_closure1: function VendorEditVM_VendorEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, VendorEditVM_VendorEditVM$fromStore_closure0: function VendorEditVM_VendorEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, VendorEditVM_VendorEditVM$fromStore__closure: function VendorEditVM_VendorEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, VendorEditVM_VendorEditVM$fromStore___closure: function VendorEditVM_VendorEditVM$fromStore___closure(t0) { this.localization = t0; }, VendorEditVM_VendorEditVM$fromStore___closure0: function VendorEditVM_VendorEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.vendor = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, VendorEditVM_VendorEditVM$fromStore___closure1: function VendorEditVM_VendorEditVM$fromStore___closure1() { }, VendorEditVM_VendorEditVM$fromStore____closure: function VendorEditVM_VendorEditVM$fromStore____closure(t0) { this.error = t0; }, toSnakeCase: function(value) { var t1; if ((value == null ? "" : value).length === 0) return ""; t1 = P.RegExp_RegExp("[A-Z]", true, false); value.toString; return H.stringReplaceAllFuncUnchecked(value, t1, new A.toSnakeCase_closure(), null); }, toCamelCase: function(subject) { var _firstWord, t1, t2, _splittedString = H.setRuntimeTypeInfo(subject.split("_"), type$.JSArray_String); if (_splittedString.length === 0) return ""; _firstWord = _splittedString[0].toLowerCase(); t1 = C.JSArray_methods.sublist$1(_splittedString, 1); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String*>"); return _firstWord + C.JSArray_methods.join$1(P.List_List$of(new H.MappedListIterable(t1, new A.toCamelCase_closure(), t2), true, t2._eval$1("ListIterable.E")), ""); }, toSpaceCase: function(value) { if (value.length === 0) return ""; return H.stringReplaceAllFuncUnchecked(value, P.RegExp_RegExp("[A-Z]", true, false), new A.toSpaceCase_closure(), null); }, toTitleCase: function(text) { if ((text == null ? "" : text).length === 0) return ""; if (text.length <= 1) return text.toUpperCase(); return new H.MappedListIterable(H.setRuntimeTypeInfo(A.toSpaceCase(text).split(" "), type$.JSArray_String), new A.toTitleCase_closure(), type$.MappedListIterable_of_String_and_legacy_String).join$1(0, " "); }, isValidDate: function(input) { var exception; try { P.DateTime_parse(input); return true; } catch (exception) { H.unwrapException(exception); return false; } }, matchesStrings: function(haystacks, needle) { var t1 = {}; if (needle == null || needle.length === 0) return true; t1.isMatch = false; C.JSArray_methods.forEach$1(haystacks, new A.matchesStrings_closure(t1, needle)); return t1.isMatch; }, matchesString: function(haystack, needle) { if (needle.length === 0) return true; return C.JSString_methods.contains$1(haystack.toLowerCase(), needle.toLowerCase()); }, matchesStringsValue: function(haystacks, needle) { var t1 = {}; if (needle == null || needle.length === 0) return null; t1.match = null; C.JSArray_methods.forEach$1(haystacks, new A.matchesStringsValue_closure(t1, needle)); return t1.match; }, matchesStringValue: function(haystack, needle) { if (needle.length === 0) return null; if (C.JSString_methods.contains$1(haystack.toLowerCase(), needle.toLowerCase())) return haystack; else return null; }, toSnakeCase_closure: function toSnakeCase_closure() { }, toCamelCase_closure: function toCamelCase_closure() { }, toSpaceCase_closure: function toSpaceCase_closure() { }, toTitleCase_closure: function toTitleCase_closure() { }, matchesStrings_closure: function matchesStrings_closure(t0, t1) { this._box_0 = t0; this.needle = t1; }, matchesStringsValue_closure: function matchesStringsValue_closure(t0, t1) { this._box_0 = t0; this.needle = t1; }, hashObjects1: function(objects) { return A._finish0(J.fold$1$2$ax(objects, 0, new A.hashObjects_closure1(), type$.int)); }, _combine0: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, _finish0: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashObjects_closure1: function hashObjects_closure1() { }, hashObjects0: function(objects) { var t1 = J.fold$1$2$ax(objects, 0, new A.hashObjects_closure0(), type$.int), hash = t1 + ((t1 & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, hashObjects_closure0: function hashObjects_closure0() { }, IterableExtension_firstWhereOrNull: function(_this, test) { var t1, element; for (t1 = J.get$iterator$ax(_this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) return element; } return null; } }, X = { BuiltSet_BuiltSet: function(iterable, $E) { return X.BuiltSet_BuiltSet$from(iterable, $E); }, BuiltSet_BuiltSet$from: function(iterable, $E) { var t1 = new X._BuiltSet(null, P.LinkedHashSet_LinkedHashSet$from(iterable, $E), $E._eval$1("_BuiltSet<0>")); t1._set$_maybeCheckForNull$0(); return t1; }, SetBuilder_SetBuilder: function($E) { var t1 = new X.SetBuilder(null, $, null, $E._eval$1("SetBuilder<0>")); t1.replace$1(0, C.List_empty); return t1; }, BuiltSet: function BuiltSet() { }, BuiltSet_hashCode_closure: function BuiltSet_hashCode_closure(t0) { this.$this = t0; }, _BuiltSet: function _BuiltSet(t0, t1, t2) { var _ = this; _._setFactory = t0; _._set$_set = t1; _._set$_hashCode = null; _.$ti = t2; }, SetBuilder: function SetBuilder(t0, t1, t2, t3) { var _ = this; _._setFactory = t0; _.__SetBuilder__set = t1; _._setOwner = t2; _.$ti = t3; }, CachedNetworkImageProvider: function CachedNetworkImageProvider(t0, t1, t2, t3, t4) { var _ = this; _.cacheManager = t0; _.url = t1; _.cacheKey = t2; _.headers = t3; _._imageRenderMethodForWeb = t4; }, CachedNetworkImageProvider__loadAsyncHttpGet_closure: function CachedNetworkImageProvider__loadAsyncHttpGet_closure(t0) { this.key = t0; }, BarChart0: function BarChart0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.vertical = t0; _._domainAxis = null; _._newDomainAxis = t1; _._newPrimaryMeasureAxisSpec = _._primaryMeasureAxisSpec = _._newDomainAxisSpec = _._domainAxisSpec = null; _._primaryMeasureAxis = t2; _._newSecondaryMeasureAxisSpec = _._secondaryMeasureAxisSpec = null; _._secondaryMeasureAxis = t3; _._newDisjointMeasureAxesSpec = _._disjointMeasureAxesSpec = null; _._disjointMeasureAxes = t4; _._useSecondaryMeasureAxis = _._usePrimaryMeasureAxis = _.flipVerticalAxisOutput = false; _.__BaseChart_context = $; _.graphicsFactory = null; _._layoutManager = t5; _._chartHeight = _._chartWidth = null; _.transition = t6; _.animationPercent = 0; _._animationsTemporarilyDisabled = false; _.__BaseChart__originalSeriesList = $; _._currentSeriesList = null; _._usingRenderers = t7; _._rendererToSeriesList = null; _._seriesRenderers = t8; _._behaviorRoleMap = t9; _._behaviorStack = t10; _._behaviorTappableMap = t11; _._gestureProxy = t12; _._selectionModels = t13; _._lifecycleListeners = t14; }, BaseChart0: function BaseChart0() { }, BaseChart_init_closure: function BaseChart_init_closure(t0) { this.graphicsFactory = t0; }, BaseChart_getSelectionModel_closure: function BaseChart_getSelectionModel_closure(t0) { this.$this = t0; }, BaseChart_pointWithinRenderer_closure: function BaseChart_pointWithinRenderer_closure(t0, t1) { this.$this = t0; this.chartPosition = t1; }, BaseChart_getNearestDatumDetailPerSeries_closure: function BaseChart_getNearestDatumDetailPerSeries_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.details = t1; _.drawAreaPoint = t2; _.boundsOverride = t3; }, BaseChart_getNearestDatumDetailPerSeries_closure0: function BaseChart_getNearestDatumDetailPerSeries_closure0(t0) { this.$this = t0; }, BaseChart_draw_closure: function BaseChart_draw_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, BaseChart_drawInternal_closure: function BaseChart_drawInternal_closure(t0) { this.$this = t0; }, BaseChart_configureSeries_closure: function BaseChart_configureSeries_closure(t0, t1) { this.$this = t0; this.rendererToSeriesList = t1; }, BaseChart_configureSeries__closure: function BaseChart_configureSeries__closure(t0) { this.$this = t0; }, BaseChart_configureSeries_closure0: function BaseChart_configureSeries_closure0(t0) { this.$this = t0; }, BaseChart_preprocessSeries_closure: function BaseChart_preprocessSeries_closure(t0, t1, t2) { this.$this = t0; this.rendererToSeriesList = t1; this.unusedRenderers = t2; }, BaseChart_preprocessSeries__closure: function BaseChart_preprocessSeries__closure(t0) { this.$this = t0; }, BaseChart_preprocessSeries_closure0: function BaseChart_preprocessSeries_closure0(t0, t1) { this.$this = t0; this.rendererToSeriesList = t1; }, BaseChart_preprocessSeries_closure1: function BaseChart_preprocessSeries_closure1(t0) { this.$this = t0; }, BaseChart_onPostLayout_closure: function BaseChart_onPostLayout_closure(t0) { this.$this = t0; }, BaseChart_paint_closure: function BaseChart_paint_closure(t0, t1) { this.$this = t0; this.canvas = t1; }, BaseChart_fireOnDraw_closure: function BaseChart_fireOnDraw_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnPreprocess_closure: function BaseChart_fireOnPreprocess_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnPostprocess_closure: function BaseChart_fireOnPostprocess_closure(t0, t1) { this.$this = t0; this.seriesList = t1; }, BaseChart_fireOnAxisConfigured_closure: function BaseChart_fireOnAxisConfigured_closure(t0) { this.$this = t0; }, BaseChart_fireOnPostrender_closure: function BaseChart_fireOnPostrender_closure(t0, t1) { this.$this = t0; this.canvas = t1; }, BaseChart_fireOnAnimationComplete_closure: function BaseChart_fireOnAnimationComplete_closure(t0) { this.$this = t0; }, LifecycleListener: function LifecycleListener(t0, t1, t2, t3, t4) { var _ = this; _.onData = t0; _.onPreprocess = t1; _.onPostprocess = t2; _.onAxisConfigured = t3; _.$ti = t4; }, LayoutViewConfig$: function(paintOrder, position, positionOrder) { return new X.LayoutViewConfig(paintOrder, position, positionOrder, C.C_ViewMargin); }, ViewMeasuredSizes$: function(preferredHeight, preferredWidth) { return new X.ViewMeasuredSizes(preferredWidth, preferredHeight, 0, 0); }, LayoutPosition: function LayoutPosition(t0) { this._layout_view$_name = t0; }, ViewMargin: function ViewMargin() { }, LayoutViewConfig: function LayoutViewConfig(t0, t1, t2, t3) { var _ = this; _.paintOrder = t0; _.position = t1; _.positionOrder = t2; _.viewMargin = t3; }, ViewMeasuredSizes: function ViewMeasuredSizes(t0, t1, t2, t3) { var _ = this; _.preferredWidth = t0; _.preferredHeight = t1; _.minWidth = t2; _.minHeight = t3; }, LayoutView: function LayoutView() { }, LineRendererConfig: function LineRendererConfig(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.symbolRenderer = t0; _.rendererAttributes = t1; _.paintOrder = t2; _.position = t3; _.positionOrder = t4; _.viewMargin = t5; _.$ti = t6; }, TextMeasurement: function TextMeasurement(t0, t1) { this.horizontalSliceWidth = t0; this.verticalSliceWidth = t1; }, BarChart: function BarChart(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.domainAxis = t0; _.primaryMeasureAxis = t1; _.secondaryMeasureAxis = t2; _.disjointMeasureAxes = t3; _.flipVerticalAxis = t4; _.seriesList = t5; _.animate = t6; _.animationDuration = t7; _.layoutConfig = t8; _.defaultRenderer = t9; _.defaultInteractions = t10; _.behaviors = t11; _.selectionModels = t12; _.customSeriesRenderers = t13; _.rtlSpec = t14; _.userManagedState = t15; _.key = t16; }, BaseChart: function BaseChart() { }, BaseChart__updateBehaviors_closure: function BaseChart__updateBehaviors_closure(t0, t1) { this.$this = t0; this.behaviorList = t1; }, BaseChart__updateBehaviors_closure0: function BaseChart__updateBehaviors_closure0(t0, t1, t2) { this.$this = t0; this.chartState = t1; this.chart = t2; }, BaseChart__notACustomBehavior_closure: function BaseChart__notACustomBehavior_closure(t0) { this.behavior = t0; }, BaseChart__updateSelectionModel_closure: function BaseChart__updateSelectionModel_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.chart = t1; _.chartState = t2; _.prevTypes = t3; }, BaseChart__updateSelectionModel_closure0: function BaseChart__updateSelectionModel_closure0(t0, t1) { this.chart = t0; this.chartState = t1; }, BaseChart_getDesiredGestures_closure: function BaseChart_getDesiredGestures_closure(t0) { this.types = t0; }, BaseChart_getDesiredGestures_closure0: function BaseChart_getDesiredGestures_closure0(t0) { this.types = t0; }, ChartContainerCustomPaint_ChartContainerCustomPaint: function(a11yNodes, chart, exploreMode, oldPainter, textDirection) { var t1; if (oldPainter != null) t1 = oldPainter.a11yNodes === a11yNodes && oldPainter.textDirection === textDirection; else t1 = false; if (t1) return oldPainter; else return new X.ChartContainerCustomPaint(chart, false, a11yNodes, textDirection, null); }, ChartContainer: function ChartContainer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.chartWidget = t0; _.oldChartWidget = t1; _.chartState = t2; _.animationValue = t3; _.rtl = t4; _.rtlSpec = t5; _.userManagedState = t6; _.painter = t7; _.foregroundPainter = t8; _.size = t9; _.child = t10; _.key = t11; _.$ti = t12; }, ChartContainerRenderObject: function ChartContainerRenderObject(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._seriesList = _._chart_container$_chart = null; _.__ChartContainerRenderObject__chartState = $; _._chartContainerIsRtl = false; _._a11yNodes = _._dateTimeFactory = _._rtlSpec = null; _._chart_container$_log = t0; _._lastConfigurationChangeTime = null; _._painter = t1; _._foregroundPainter = t2; _._preferredSize = t3; _.isComplex = t4; _.willChange = t5; _._foregroundSemanticsNodes = _._backgroundSemanticsNodes = _._foregroundSemanticsBuilder = _._backgroundSemanticsBuilder = null; _.RenderObjectWithChildMixin__child = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t7; }, ChartContainerRenderObject_requestAnimation_startAnimationController: function ChartContainerRenderObject_requestAnimation_startAnimationController(t0, t1) { this.$this = t0; this.transition = t1; }, ChartContainerRenderObject_requestRebuild_doRebuild: function ChartContainerRenderObject_requestRebuild_doRebuild(t0) { this.$this = t0; }, ChartContainerCustomPaint: function ChartContainerCustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.chart = t0; _.exploreMode = t1; _.a11yNodes = t2; _.textDirection = t3; _._repaint = t4; }, LineStyle: function LineStyle() { this.dashPattern = this.color = null; this.strokeWidth = 0; }, _defaultOpHandle: function(context, operation) { }, _MemoryFileSystem: function _MemoryFileSystem(t0, t1, t2, t3) { var _ = this; _._systemTemp = _._memory_file_system$_root = null; _._memory_file_system$_context = t0; _.opHandle = t1; _.clock = t2; _.style = t3; }, _MemoryFileSystem_findNode_subpath: function _MemoryFileSystem_findNode_subpath(t0, t1, t2) { this.$this = t0; this.parts = t1; this.i = t2; }, _MemoryFileSystem_findNode_closure: function _MemoryFileSystem_findNode_closure(t0, t1, t2) { this.segmentVisitor = t0; this.i = t1; this.finalSegment = t2; }, AnimationStatus: function AnimationStatus(t0) { this._animation$_name = t0; }, Animation0: function Animation0() { }, BottomSheetThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.elevation; t4 = P.lerpDouble(t4, t3 ? _null : b.elevation, t); t5 = t1 ? _null : a.modalBackgroundColor; t5 = P.Color_lerp(t5, t3 ? _null : b.modalBackgroundColor, t); t6 = t1 ? _null : a.modalElevation; t6 = P.lerpDouble(t6, t3 ? _null : b.modalElevation, t); t7 = t1 ? _null : a.shape; t7 = Y.ShapeBorder_lerp(t7, t3 ? _null : b.shape, t); if (t < 0.5) t1 = t1 ? _null : a.clipBehavior; else t1 = t3 ? _null : b.clipBehavior; return new X.BottomSheetThemeData(t2, t4, t5, t6, t7, t1); }, BottomSheetThemeData: function BottomSheetThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.modalBackgroundColor = t2; _.modalElevation = t3; _.shape = t4; _.clipBehavior = t5; }, _BottomSheetThemeData_Object_Diagnosticable: function _BottomSheetThemeData_Object_Diagnosticable() { }, ScrollbarThemeData__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new X._LerpProperties4(a, b, t, lerpFunction, $T._eval$1("_LerpProperties4<0>")); }, ScrollbarThemeData: function ScrollbarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.thickness = t0; _.showTrackOnHover = t1; _.isAlwaysShown = t2; _.interactive = t3; _.radius = t4; _.thumbColor = t5; _.trackColor = t6; _.trackBorderColor = t7; _.crossAxisMargin = t8; _.mainAxisMargin = t9; _.minThumbLength = t10; }, _LerpProperties4: function _LerpProperties4(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _ScrollbarThemeData_Object_Diagnosticable: function _ScrollbarThemeData_Object_Diagnosticable() { }, ThemeData_ThemeData: function(accentColor, appBarTheme, backgroundColor, bottomAppBarColor, brightness, buttonColor, canvasColor, cardColor, fontFamily, iconTheme, indicatorColor, outlinedButtonTheme, pageTransitionsTheme, primaryColor, primaryColorDark, primaryColorLight, scaffoldBackgroundColor, tabBarTheme, textButtonTheme, textSelectionTheme, unselectedWidgetColor) { var _brightness, isDark, visualDensity, t1, primaryColorBrightness, primaryIsDark, toggleableActiveColor, accentColorBrightness, accentIsDark, dividerColor, primaryIsDark0, t2, t3, t4, t5, t6, t7, colorScheme, selectedRowColor, secondaryHeaderColor, textSelectionColor, textSelectionHandleColor, dialogBackgroundColor, hintColor, errorColor, primaryIconTheme, accentIconTheme, platform, typography, defaultTextTheme, defaultPrimaryTextTheme, defaultAccentTextTheme, textTheme, primaryTextTheme, accentTextTheme, materialTapTargetSize, focusColor, hoverColor, buttonTheme, disabledColor, highlightColor, splashColor, chipTheme, _null = null; if (brightness == null) _brightness = _null; else _brightness = brightness; if (_brightness == null) _brightness = C.Brightness_1; isDark = _brightness === C.Brightness_0; visualDensity = X.VisualDensity_adaptivePlatformDensity(); if (primaryColor == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 900); t1.toString; primaryColor = t1; } else primaryColor = C.MaterialColor_Map_JNwaj_4280391411; primaryColorBrightness = X.ThemeData_estimateBrightnessForColor(primaryColor); if (primaryColorLight == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 500); t1.toString; primaryColorLight = t1; } else { t1 = C.Map_JNwaj.$index(0, 100); t1.toString; primaryColorLight = t1; } if (primaryColorDark == null) if (isDark) primaryColorDark = C.Color_4278190080; else { t1 = C.Map_JNwaj.$index(0, 700); t1.toString; primaryColorDark = t1; } primaryIsDark = primaryColorBrightness === C.Brightness_0; if (isDark) { t1 = C.Map_iTYZn.$index(0, 200); t1.toString; toggleableActiveColor = t1; } else if (accentColor == null) { t1 = C.Map_JNwaj.$index(0, 600); t1.toString; toggleableActiveColor = t1; } else toggleableActiveColor = accentColor; if (accentColor == null) if (isDark) { t1 = C.Map_iTYZn.$index(0, 200); t1.toString; accentColor = t1; } else { t1 = C.Map_JNwaj.$index(0, 500); t1.toString; accentColor = t1; } accentColorBrightness = X.ThemeData_estimateBrightnessForColor(accentColor); accentIsDark = accentColorBrightness === C.Brightness_0; if (canvasColor == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 850); t1.toString; canvasColor = t1; } else { t1 = C.Map_HFpTk.$index(0, 50); t1.toString; canvasColor = t1; } if (scaffoldBackgroundColor == null) scaffoldBackgroundColor = canvasColor; if (bottomAppBarColor == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 800); t1.toString; bottomAppBarColor = t1; } else bottomAppBarColor = C.Color_4294967295; if (cardColor == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 800); t1.toString; cardColor = t1; } else cardColor = C.Color_4294967295; dividerColor = isDark ? C.Color_536870911 : C.Color_520093696; primaryIsDark0 = X.ThemeData_estimateBrightnessForColor(C.MaterialColor_Map_JNwaj_4280391411) === C.Brightness_0; t1 = X.ThemeData_estimateBrightnessForColor(accentColor); if (isDark) { t2 = C.Map_iTYZn.$index(0, 700); t2.toString; } else { t2 = C.Map_JNwaj.$index(0, 700); t2.toString; } if (backgroundColor == null) if (isDark) { t3 = C.Map_HFpTk.$index(0, 700); t3.toString; } else { t3 = C.Map_JNwaj.$index(0, 200); t3.toString; } else t3 = backgroundColor; t4 = C.Map_JNc9P.$index(0, 700); t4.toString; t5 = primaryIsDark0 ? C.Color_4294967295 : C.Color_4278190080; t1 = t1 === C.Brightness_0 ? C.Color_4294967295 : C.Color_4278190080; t6 = isDark ? C.Color_4294967295 : C.Color_4278190080; t7 = primaryIsDark0 ? C.Color_4294967295 : C.Color_4278190080; colorScheme = new A.ColorScheme(C.MaterialColor_Map_JNwaj_4280391411, primaryColorDark, accentColor, t2, cardColor, t3, t4, t5, t1, t6, t7, isDark ? C.Color_4278190080 : C.Color_4294967295, _brightness); t1 = C.Map_HFpTk.$index(0, 100); t1.toString; selectedRowColor = t1; if (unselectedWidgetColor == null) unselectedWidgetColor = isDark ? C.Color_3019898879 : C.Color_2315255808; if (isDark) { t1 = C.Map_HFpTk.$index(0, 700); t1.toString; secondaryHeaderColor = t1; } else { t1 = C.Map_JNwaj.$index(0, 50); t1.toString; secondaryHeaderColor = t1; } if (isDark) textSelectionColor = accentColor; else { t1 = C.Map_JNwaj.$index(0, 200); t1.toString; textSelectionColor = t1; } if (isDark) { t1 = C.Map_iTYZn.$index(0, 400); t1.toString; textSelectionHandleColor = t1; } else { t1 = C.Map_JNwaj.$index(0, 300); t1.toString; textSelectionHandleColor = t1; } if (backgroundColor == null) if (isDark) { t1 = C.Map_HFpTk.$index(0, 700); t1.toString; backgroundColor = t1; } else { t1 = C.Map_JNwaj.$index(0, 200); t1.toString; backgroundColor = t1; } if (isDark) { t1 = C.Map_HFpTk.$index(0, 800); t1.toString; dialogBackgroundColor = t1; } else dialogBackgroundColor = C.Color_4294967295; if (indicatorColor == null) indicatorColor = accentColor.$eq(0, primaryColor) ? C.Color_4294967295 : accentColor; hintColor = isDark ? C.Color_2583691263 : P.Color$fromARGB(153, 0, 0, 0); t1 = C.Map_JNc9P.$index(0, 700); t1.toString; errorColor = t1; if (pageTransitionsTheme == null) pageTransitionsTheme = C.PageTransitionsTheme_Map_23gMT; primaryIconTheme = primaryIsDark ? C.IconThemeData_Color_4294967295_null_null : C.IconThemeData_Color_4278190080_null_null; accentIconTheme = accentIsDark ? C.IconThemeData_Color_4294967295_null_null : C.IconThemeData_Color_4278190080_null_null; if (iconTheme == null) iconTheme = isDark ? C.IconThemeData_Color_4294967295_null_null : C.IconThemeData_Color_3707764736_null_null; platform = U.defaultTargetPlatform(); typography = U.Typography_Typography$material2014(platform); defaultTextTheme = isDark ? typography.white : typography.black; defaultPrimaryTextTheme = primaryIsDark ? typography.white : typography.black; defaultAccentTextTheme = accentIsDark ? typography.white : typography.black; if (fontFamily != null) { defaultTextTheme = defaultTextTheme.apply$1$fontFamily(fontFamily); defaultPrimaryTextTheme = defaultPrimaryTextTheme.apply$1$fontFamily(fontFamily); defaultAccentTextTheme = defaultAccentTextTheme.apply$1$fontFamily(fontFamily); } textTheme = defaultTextTheme.merge$1(_null); primaryTextTheme = defaultPrimaryTextTheme.merge$1(_null); accentTextTheme = defaultAccentTextTheme.merge$1(_null); switch (platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_2: materialTapTargetSize = C.MaterialTapTargetSize_0; break; case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: materialTapTargetSize = C.MaterialTapTargetSize_1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (buttonColor == null) if (isDark) { t1 = C.Map_JNwaj.$index(0, 600); t1.toString; buttonColor = t1; } else { t1 = C.Map_HFpTk.$index(0, 300); t1.toString; buttonColor = t1; } focusColor = isDark ? P.Color$fromARGB(31, 255, 255, 255) : P.Color$fromARGB(31, 0, 0, 0); hoverColor = isDark ? P.Color$fromARGB(10, 255, 255, 255) : P.Color$fromARGB(10, 0, 0, 0); buttonTheme = M.ButtonThemeData$(false, buttonColor, colorScheme, _null, focusColor, 36, _null, hoverColor, C.ButtonBarLayoutBehavior_1, materialTapTargetSize, 88, _null, _null, _null, C.ButtonTextTheme_0); disabledColor = isDark ? C.Color_1660944383 : C.Color_1627389952; highlightColor = isDark ? C.Color_1087163596 : C.Color_1723645116; splashColor = isDark ? C.Color_1087163596 : C.Color_1724434632; if (tabBarTheme == null) tabBarTheme = C.TabBarTheme_Srx; if (appBarTheme == null) appBarTheme = C.AppBarTheme_IEl; if (isDark) { t1 = C.Map_iTYZn.$index(0, 200); t1.toString; } else t1 = primaryColor; t2 = textTheme.bodyText1; t2.toString; chipTheme = K.ChipThemeData_ChipThemeData$fromDefaults(colorScheme.brightness, t2, t1); if (textButtonTheme == null) textButtonTheme = C.TextButtonThemeData_null; if (outlinedButtonTheme == null) outlinedButtonTheme = C.OutlinedButtonThemeData_null; if (textSelectionTheme == null) textSelectionTheme = C.TextSelectionThemeData_null_null_null; return X.ThemeData$raw(accentColor, accentColorBrightness, accentIconTheme, accentTextTheme, appBarTheme, false, backgroundColor, C.MaterialBannerThemeData_null_null_null_null, bottomAppBarColor, C.BottomAppBarTheme_null_null_null, C.BottomNavigationBarThemeData_gg4, C.BottomSheetThemeData_M2D, C.ButtonBarThemeData_A0t, buttonColor, buttonTheme, canvasColor, cardColor, C.CardTheme_hKX, C.CheckboxThemeData_EkK, chipTheme, colorScheme, _null, C.Color_4282549748, C.DataTableThemeData_SL9, dialogBackgroundColor, C.DialogTheme_maI, disabledColor, dividerColor, C.DividerThemeData_Tnu, C.ElevatedButtonThemeData_null, errorColor, false, C.FloatingActionButtonThemeData_IWY, focusColor, highlightColor, hintColor, hoverColor, iconTheme, indicatorColor, C.C_InputDecorationTheme, materialTapTargetSize, C.NavigationRailThemeData_U06, outlinedButtonTheme, pageTransitionsTheme, platform, C.PopupMenuThemeData_XJe, primaryColor, primaryColorBrightness, primaryColorDark, primaryColorLight, primaryIconTheme, primaryTextTheme, C.RadioThemeData_gDe, scaffoldBackgroundColor, C.ScrollbarThemeData_I7P, secondaryHeaderColor, selectedRowColor, C.Color_4278190080, C.SliderThemeData_Q5Z, C.SnackBarThemeData_gc6, splashColor, C.C__InkSplashFactory, C.SwitchThemeData_v9F, tabBarTheme, textButtonTheme, textSelectionColor, textSelectionHandleColor, textSelectionTheme, textTheme, C.TimePickerThemeData_10O, C.ToggleButtonsThemeData_UsI, toggleableActiveColor, C.TooltipThemeData_kSE, typography, unselectedWidgetColor, true, visualDensity); }, ThemeData$raw: function(accentColor, accentColorBrightness, accentIconTheme, accentTextTheme, appBarTheme, applyElevationOverlayColor, backgroundColor, bannerTheme, bottomAppBarColor, bottomAppBarTheme, bottomNavigationBarTheme, bottomSheetTheme, buttonBarTheme, buttonColor, buttonTheme, canvasColor, cardColor, cardTheme, checkboxTheme, chipTheme, colorScheme, cupertinoOverrideTheme, cursorColor, dataTableTheme, dialogBackgroundColor, dialogTheme, disabledColor, dividerColor, dividerTheme, elevatedButtonTheme, errorColor, fixTextFieldOutlineLabel, floatingActionButtonTheme, focusColor, highlightColor, hintColor, hoverColor, iconTheme, indicatorColor, inputDecorationTheme, materialTapTargetSize, navigationRailTheme, outlinedButtonTheme, pageTransitionsTheme, platform, popupMenuTheme, primaryColor, primaryColorBrightness, primaryColorDark, primaryColorLight, primaryIconTheme, primaryTextTheme, radioTheme, scaffoldBackgroundColor, scrollbarTheme, secondaryHeaderColor, selectedRowColor, shadowColor, sliderTheme, snackBarTheme, splashColor, splashFactory, switchTheme, tabBarTheme, textButtonTheme, textSelectionColor, textSelectionHandleColor, textSelectionTheme, textTheme, timePickerTheme, toggleButtonsTheme, toggleableActiveColor, tooltipTheme, typography, unselectedWidgetColor, useTextSelectionTheme, visualDensity) { return new X.ThemeData(visualDensity, primaryColor, primaryColorBrightness, primaryColorLight, primaryColorDark, canvasColor, shadowColor, accentColor, accentColorBrightness, scaffoldBackgroundColor, bottomAppBarColor, cardColor, dividerColor, focusColor, hoverColor, highlightColor, splashColor, splashFactory, selectedRowColor, unselectedWidgetColor, disabledColor, buttonTheme, toggleButtonsTheme, buttonColor, secondaryHeaderColor, textSelectionColor, cursorColor, textSelectionHandleColor, backgroundColor, dialogBackgroundColor, indicatorColor, hintColor, errorColor, toggleableActiveColor, textTheme, primaryTextTheme, accentTextTheme, inputDecorationTheme, iconTheme, primaryIconTheme, accentIconTheme, sliderTheme, tabBarTheme, tooltipTheme, cardTheme, chipTheme, platform, materialTapTargetSize, false, pageTransitionsTheme, appBarTheme, scrollbarTheme, bottomAppBarTheme, colorScheme, snackBarTheme, dialogTheme, floatingActionButtonTheme, navigationRailTheme, typography, cupertinoOverrideTheme, bottomSheetTheme, popupMenuTheme, bannerTheme, dividerTheme, buttonBarTheme, bottomNavigationBarTheme, timePickerTheme, textButtonTheme, elevatedButtonTheme, outlinedButtonTheme, textSelectionTheme, dataTableTheme, checkboxTheme, radioTheme, switchTheme, false, true); }, ThemeData_ThemeData$fallback: function() { var _null = null; return X.ThemeData_ThemeData(_null, _null, _null, _null, C.Brightness_1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, ThemeData_localize: function(baseTheme, localTextGeometry) { return $.$get$ThemeData__localizedThemeDataCache().putIfAbsent$2(0, new X._IdentityThemeDataCacheKey(baseTheme, localTextGeometry), new X.ThemeData_localize_closure(baseTheme, localTextGeometry)); }, ThemeData_estimateBrightnessForColor: function(color) { var t1 = 0.2126 * P.Color__linearizeColorComponent((color.get$value(color) >>> 16 & 255) / 255) + 0.7152 * P.Color__linearizeColorComponent((color.get$value(color) >>> 8 & 255) / 255) + 0.0722 * P.Color__linearizeColorComponent((color.get$value(color) & 255) / 255) + 0.05; if (t1 * t1 > 0.15) return C.Brightness_1; return C.Brightness_0; }, MaterialBasedCupertinoThemeData$_: function(_materialTheme, _cupertinoOverrideTheme) { return new X.MaterialBasedCupertinoThemeData(_materialTheme, _cupertinoOverrideTheme, C._CupertinoThemeDefaults_iF8, _cupertinoOverrideTheme.brightness, _cupertinoOverrideTheme.primaryColor, _cupertinoOverrideTheme.primaryContrastingColor, _cupertinoOverrideTheme.textTheme, _cupertinoOverrideTheme.barBackgroundColor, _cupertinoOverrideTheme.scaffoldBackgroundColor); }, VisualDensity_adaptivePlatformDensity: function() { switch (U.defaultTargetPlatform()) { case C.TargetPlatform_0: case C.TargetPlatform_2: case C.TargetPlatform_1: break; case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return C.VisualDensity_m2_m2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return C.VisualDensity_0_0; }, MaterialTapTargetSize: function MaterialTapTargetSize(t0) { this._theme_data$_name = t0; }, ThemeData: function ThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76) { var _ = this; _.visualDensity = t0; _.primaryColor = t1; _.primaryColorBrightness = t2; _.primaryColorLight = t3; _.primaryColorDark = t4; _.canvasColor = t5; _.shadowColor = t6; _.accentColor = t7; _.accentColorBrightness = t8; _.scaffoldBackgroundColor = t9; _.bottomAppBarColor = t10; _.cardColor = t11; _.dividerColor = t12; _.focusColor = t13; _.hoverColor = t14; _.highlightColor = t15; _.splashColor = t16; _.splashFactory = t17; _.selectedRowColor = t18; _.unselectedWidgetColor = t19; _.disabledColor = t20; _.buttonTheme = t21; _.toggleButtonsTheme = t22; _.buttonColor = t23; _.secondaryHeaderColor = t24; _.textSelectionColor = t25; _.cursorColor = t26; _.textSelectionHandleColor = t27; _.backgroundColor = t28; _.dialogBackgroundColor = t29; _.indicatorColor = t30; _.hintColor = t31; _.errorColor = t32; _.toggleableActiveColor = t33; _.textTheme = t34; _.primaryTextTheme = t35; _.accentTextTheme = t36; _.inputDecorationTheme = t37; _.iconTheme = t38; _.primaryIconTheme = t39; _.accentIconTheme = t40; _.sliderTheme = t41; _.tabBarTheme = t42; _.tooltipTheme = t43; _.cardTheme = t44; _.chipTheme = t45; _.platform = t46; _.materialTapTargetSize = t47; _.applyElevationOverlayColor = t48; _.pageTransitionsTheme = t49; _.appBarTheme = t50; _.scrollbarTheme = t51; _.bottomAppBarTheme = t52; _.colorScheme = t53; _.snackBarTheme = t54; _.dialogTheme = t55; _.floatingActionButtonTheme = t56; _.navigationRailTheme = t57; _.typography = t58; _.cupertinoOverrideTheme = t59; _.bottomSheetTheme = t60; _.popupMenuTheme = t61; _.bannerTheme = t62; _.dividerTheme = t63; _.buttonBarTheme = t64; _.bottomNavigationBarTheme = t65; _.timePickerTheme = t66; _.textButtonTheme = t67; _.elevatedButtonTheme = t68; _.outlinedButtonTheme = t69; _.textSelectionTheme = t70; _.dataTableTheme = t71; _.checkboxTheme = t72; _.radioTheme = t73; _.switchTheme = t74; _.fixTextFieldOutlineLabel = t75; _.useTextSelectionTheme = t76; }, ThemeData_localize_closure: function ThemeData_localize_closure(t0, t1) { this.baseTheme = t0; this.localTextGeometry = t1; }, MaterialBasedCupertinoThemeData: function MaterialBasedCupertinoThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._materialTheme = t0; _._cupertinoOverrideTheme = t1; _._defaults = t2; _.brightness = t3; _.primaryColor = t4; _.primaryContrastingColor = t5; _.textTheme = t6; _.barBackgroundColor = t7; _.scaffoldBackgroundColor = t8; }, _IdentityThemeDataCacheKey: function _IdentityThemeDataCacheKey(t0, t1) { this.baseTheme = t0; this.localTextGeometry = t1; }, _FifoCache: function _FifoCache(t0, t1, t2) { this._theme_data$_cache = t0; this._maximumSize = t1; this.$ti = t2; }, VisualDensity: function VisualDensity(t0, t1) { this.horizontal = t0; this.vertical = t1; }, _ThemeData_Object_Diagnosticable: function _ThemeData_Object_Diagnosticable() { }, _VisualDensity_Object_Diagnosticable: function _VisualDensity_Object_Diagnosticable() { }, CircleBorder: function CircleBorder(t0) { this.side = t0; }, paintImage: function(alignment, canvas, centerSlice, colorFilter, debugImageLabel, filterQuality, fit, flipHorizontally, image, invertColors, isAntiAlias, rect, repeat, scale) { var t1, t2, t3, t4, outputSize, t5, t6, fittedSizes, sourceSize, destinationSize, t7, paint, halfWidthDelta, t8, halfHeightDelta, destinationRect, sizeInfo, existingSizeInfo, needSave, dx, sourceRect; if (rect.get$isEmpty(rect)) return; t1 = rect.right; t2 = rect.left; t1 -= t2; t3 = rect.bottom; t4 = rect.top; t3 -= t4; outputSize = new P.Size(t1, t3); t5 = image.get$width(image); t5.toString; t6 = image.get$height(image); t6.toString; if (fit == null) fit = C.BoxFit_6; fittedSizes = U.applyBoxFit(fit, new P.Size(t5, t6).$div(0, scale), outputSize); sourceSize = fittedSizes.source.$mul(0, scale); destinationSize = fittedSizes.destination; if (repeat !== C.ImageRepeat_3 && destinationSize.$eq(0, outputSize)) repeat = C.ImageRepeat_3; t7 = H._detectRenderer(); paint = t7 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$isAntiAlias(false); if (colorFilter != null) paint.set$colorFilter(colorFilter); paint.set$filterQuality(filterQuality); paint.set$invertColors(invertColors); t7 = destinationSize._dx; halfWidthDelta = (t1 - t7) / 2; t8 = destinationSize._dy; halfHeightDelta = (t3 - t8) / 2; t3 = flipHorizontally ? -alignment.x : alignment.x; t3 = t2 + (halfWidthDelta + t3 * halfWidthDelta); t4 += halfHeightDelta + alignment.y * halfHeightDelta; destinationRect = new P.Rect(t3, t4, t3 + t7, t4 + t8); t3 = debugImageLabel == null ? "" : debugImageLabel; t4 = image.get$width(image); t4.toString; t7 = image.get$height(image); t7.toString; sizeInfo = new E.ImageSizeInfo(t3, outputSize, new P.Size(t4, t7)); if (!$._lastFrameImageSizeInfo.contains$1(0, sizeInfo)) { existingSizeInfo = $._pendingImageSizeInfo.$index(0, t3); if (existingSizeInfo == null || existingSizeInfo._sizeToBytes$1(existingSizeInfo.displaySize) < sizeInfo._sizeToBytes$1(outputSize)) $._pendingImageSizeInfo.$indexSet(0, t3, sizeInfo); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new X.paintImage_closure()); } needSave = repeat !== C.ImageRepeat_3 || flipHorizontally; if (needSave) canvas.save$0(0); t3 = repeat === C.ImageRepeat_3; if (!t3) canvas.clipRect$1(0, rect); if (flipHorizontally) { dx = -(t2 + t1 / 2); canvas.translate$2(0, -dx, 0); canvas.scale$2(0, -1, 1); canvas.translate$2(0, dx, 0); } sourceRect = alignment.inscribe$2(sourceSize, new P.Rect(0, 0, t5, t6)); if (t3) canvas.drawImageRect$4(image, sourceRect, destinationRect, paint); else for (t1 = X._generateImageTileRects(rect, destinationRect, repeat), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) canvas.drawImageRect$4(image, sourceRect, t1.get$current(t1), paint); if (needSave) canvas.restore$0(0); }, _generateImageTileRects: function($async$outputRect, $async$fundamentalRect, $async$repeat) { return P._makeSyncStarIterable(function() { var outputRect = $async$outputRect, fundamentalRect = $async$fundamentalRect, repeat = $async$repeat; var $async$goto = 0, $async$handler = 1, $async$currentError, startX, stopX, startY, stopY, i, j, t1, t2, strideX, t3, t4, strideY, t5; return function $async$_generateImageTileRects($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = fundamentalRect.right; t2 = fundamentalRect.left; strideX = t1 - t2; t3 = fundamentalRect.bottom; t4 = fundamentalRect.top; strideY = t3 - t4; t5 = repeat !== C.ImageRepeat_0; if (!t5 || repeat === C.ImageRepeat_1) { startX = C.JSNumber_methods.floor$0((outputRect.left - t2) / strideX); stopX = C.JSNumber_methods.ceil$0((outputRect.right - t1) / strideX); } else { startX = 0; stopX = 0; } if (!t5 || repeat === C.ImageRepeat_2) { startY = C.JSNumber_methods.floor$0((outputRect.top - t4) / strideY); stopY = C.JSNumber_methods.ceil$0((outputRect.bottom - t3) / strideY); } else { startY = 0; stopY = 0; } i = startX; case 2: // for condition if (!(i <= stopX)) { // goto after for $async$goto = 4; break; } t1 = i * strideX, j = startY; case 5: // for condition if (!(j <= stopY)) { // goto after for $async$goto = 7; break; } $async$goto = 8; return fundamentalRect.shift$1(new P.Offset(t1, j * strideY)); case 8: // after yield case 6: // for update ++j; // goto for condition $async$goto = 5; break; case 7: // after for case 3: // for update ++i; // goto for condition $async$goto = 2; break; case 4: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.Rect); }, ImageRepeat: function ImageRepeat(t0) { this._decoration_image$_name = t0; }, DecorationImage: function DecorationImage(t0, t1) { this.image = t0; this.onError = t1; }, DecorationImagePainter: function DecorationImagePainter(t0, t1) { var _ = this; _._details = t0; _._decoration_image$_onChanged = t1; _._decoration_image$_image = _._decoration_image$_imageStream = null; }, paintImage_closure: function paintImage_closure() { }, FractionalOffset$: function(dx, dy) { return new X.FractionalOffset(dx * 2 - 1, dy * 2 - 1); }, FractionalOffset: function FractionalOffset(t0, t1) { this.x = t0; this.y = t1; }, RoundedRectangleBorder: function RoundedRectangleBorder(t0, t1) { this.borderRadius = t0; this.side = t1; }, _RoundedRectangleToCircleBorder: function _RoundedRectangleToCircleBorder(t0, t1, t2) { this.borderRadius = t0; this.circleness = t1; this.side = t2; }, RenderSliverFixedExtentBoxAdaptor: function RenderSliverFixedExtentBoxAdaptor() { }, SystemChrome_setApplicationSwitcherDescription: function(description) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$SystemChrome_setApplicationSwitcherDescription = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2(string$.System, P.LinkedHashMap_LinkedHashMap$_literal(["label", description.label, "primaryColor", description.primaryColor], type$.String, type$.dynamic), type$.void), $async$SystemChrome_setApplicationSwitcherDescription); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$SystemChrome_setApplicationSwitcherDescription, $async$completer); }, SystemChrome_setSystemUIOverlayStyle: function(style) { if ($.SystemChrome__pendingStyle != null) { $.SystemChrome__pendingStyle = style; return; } if (style.$eq(0, $.SystemChrome__latestStyle)) return; $.SystemChrome__pendingStyle = style; P.scheduleMicrotask(new X.SystemChrome_setSystemUIOverlayStyle_closure()); }, ApplicationSwitcherDescription: function ApplicationSwitcherDescription(t0, t1) { this.label = t0; this.primaryColor = t1; }, SystemUiOverlayStyle: function SystemUiOverlayStyle(t0, t1, t2, t3, t4, t5) { var _ = this; _.systemNavigationBarColor = t0; _.systemNavigationBarDividerColor = t1; _.systemNavigationBarIconBrightness = t2; _.statusBarColor = t3; _.statusBarBrightness = t4; _.statusBarIconBrightness = t5; }, SystemChrome_setSystemUIOverlayStyle_closure: function SystemChrome_setSystemUIOverlayStyle_closure() { }, TextSelection$: function(affinity, baseOffset, extentOffset, isDirectional) { var t1 = baseOffset < extentOffset, t2 = t1 ? extentOffset : baseOffset; return new X.TextSelection(baseOffset, extentOffset, affinity, isDirectional, t1 ? baseOffset : extentOffset, t2); }, TextSelection$collapsed: function(affinity, offset) { return new X.TextSelection(offset, offset, affinity, false, offset, offset); }, TextSelection$fromPosition: function(position) { var t1 = position.offset; return new X.TextSelection(t1, t1, position.affinity, false, t1, t1); }, TextSelection: function TextSelection(t0, t1, t2, t3, t4, t5) { var _ = this; _.baseOffset = t0; _.extentOffset = t1; _.affinity = t2; _.isDirectional = t3; _.start = t4; _.end = t5; }, AnnotatedRegion: function AnnotatedRegion(t0, t1, t2, t3) { var _ = this; _.value = t0; _.child = t1; _.key = t2; _.$ti = t3; }, IconData: function IconData(t0, t1, t2, t3) { var _ = this; _.codePoint = t0; _.fontFamily = t1; _.fontPackage = t2; _.matchTextDirection = t3; }, ModalBarrier: function ModalBarrier(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.dismissible = t1; _.barrierSemanticsDismissible = t2; _.semanticsLabel = t3; _.key = t4; }, ModalBarrier_build_handleDismiss: function ModalBarrier_build_handleDismiss(t0) { this.context = t0; }, ModalBarrier_build_closure: function ModalBarrier_build_closure(t0, t1) { this.$this = t0; this.handleDismiss = t1; }, AnimatedModalBarrier: function AnimatedModalBarrier(t0, t1, t2, t3, t4) { var _ = this; _.dismissible = t0; _.semanticsLabel = t1; _.barrierSemanticsDismissible = t2; _.listenable = t3; _.key = t4; }, _AnyTapGestureRecognizer: function _AnyTapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onAnyTapUp = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _.state = t2; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, _ModalBarrierSemanticsDelegate: function _ModalBarrierSemanticsDelegate(t0) { this.onDismiss = t0; }, _AnyTapGestureRecognizerFactory: function _AnyTapGestureRecognizerFactory(t0) { this.onAnyTapUp = t0; }, _ModalBarrierGestureDetector: function _ModalBarrierGestureDetector(t0, t1, t2) { this.child = t0; this.onDismiss = t1; this.key = t2; }, OverlayEntry$: function(builder, maintainState) { return new X.OverlayEntry(builder, maintainState, new N.LabeledGlobalKey(null, type$.LabeledGlobalKey__OverlayEntryWidgetState), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, OverlayEntry: function OverlayEntry(t0, t1, t2, t3) { var _ = this; _.builder = t0; _._opaque = false; _._maintainState = t1; _._mounted = false; _._overlay = null; _._key = t2; _.ChangeNotifier__listeners = t3; }, OverlayEntry_remove_closure: function OverlayEntry_remove_closure(t0) { this.overlay = t0; }, _OverlayEntryWidget: function _OverlayEntryWidget(t0, t1, t2) { this.entry = t0; this.tickerEnabled = t1; this.key = t2; }, _OverlayEntryWidgetState: function _OverlayEntryWidgetState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _OverlayEntryWidgetState__markNeedsBuild_closure: function _OverlayEntryWidgetState__markNeedsBuild_closure() { }, Overlay: function Overlay(t0, t1) { this.initialEntries = t0; this.key = t1; }, OverlayState: function OverlayState(t0, t1, t2) { var _ = this; _._entries = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, OverlayState_insert_closure: function OverlayState_insert_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.below = t1; _.above = t2; _.entry = t3; }, OverlayState_insertAll_closure: function OverlayState_insertAll_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.below = t1; _.above = t2; _.entries = t3; }, OverlayState_rearrange_closure: function OverlayState_rearrange_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.newEntriesList = t1; _.old = t2; _.below = t3; _.above = t4; }, OverlayState__markDirty_closure: function OverlayState__markDirty_closure() { }, OverlayState__didChangeEntryOpacity_closure: function OverlayState__didChangeEntryOpacity_closure() { }, _Theatre: function _Theatre(t0, t1, t2, t3) { var _ = this; _.skipCount = t0; _.clipBehavior = t1; _.children = t2; _.key = t3; }, _TheatreElement: function _TheatreElement(t0, t1, t2, t3, t4) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _RenderTheatre: function _RenderTheatre(t0, t1, t2, t3, t4, t5) { var _ = this; _._overlay$_hasVisualOverflow = false; _._overlay$_resolvedAlignment = null; _._overlay$_textDirection = t0; _._overlay$_skipCount = t1; _._overlay$_clipBehavior = t2; _._overlay$_clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderTheatre_computeMinIntrinsicWidth_closure: function _RenderTheatre_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, _RenderTheatre_computeMaxIntrinsicWidth_closure: function _RenderTheatre_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, _RenderTheatre_computeMinIntrinsicHeight_closure: function _RenderTheatre_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, _RenderTheatre_computeMaxIntrinsicHeight_closure: function _RenderTheatre_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, _RenderTheatre_hitTestChildren_closure: function _RenderTheatre_hitTestChildren_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.childParentData = t2; }, _OverlayState_State_TickerProviderStateMixin: function _OverlayState_State_TickerProviderStateMixin() { }, __RenderTheatre_RenderBox_ContainerRenderObjectMixin: function __RenderTheatre_RenderBox_ContainerRenderObjectMixin() { }, KeySet__computeHashCode: function(keys) { var h1, h2, sortedHashes, $length = keys._collection$_length, iterator = new P._HashSetIterator(keys, keys._computeElements$0(), H._instanceType(keys)._eval$1("_HashSetIterator<1>")); iterator.moveNext$0(); h1 = J.get$hashCode$(iterator._collection$_current); if ($length === 1) return h1; iterator.moveNext$0(); h2 = J.get$hashCode$(iterator._collection$_current); if ($length === 2) return h1 < h2 ? P.hashValues(h1, h2, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd) : P.hashValues(h2, h1, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); sortedHashes = $length === 3 ? $.KeySet__tempHashStore3 : $.KeySet__tempHashStore4; sortedHashes[0] = h1; sortedHashes[1] = h2; iterator.moveNext$0(); sortedHashes[2] = J.get$hashCode$(iterator._collection$_current); if ($length === 4) { iterator.moveNext$0(); sortedHashes[3] = J.get$hashCode$(iterator._collection$_current); } C.JSArray_methods.sort$0(sortedHashes); return P.hashList(sortedHashes); }, LogicalKeySet$: function(key1, key2, key3) { var t1 = type$.LogicalKeyboardKey, t2 = P.HashSet_HashSet(t1); t2.add$1(0, key1); t2 = new X.LogicalKeySet(t2); t2.KeySet$4(key1, key2, key3, null, {}, t1); return t2; }, ShortcutManager$: function() { return new X.ShortcutManager(C.Map_empty1, new P.LinkedList(type$.LinkedList__ListenerEntry)); }, KeySet: function KeySet() { }, LogicalKeySet: function LogicalKeySet(t0) { this._shortcuts$_keys = t0; this.__KeySet_hashCode = $; }, ShortcutManager: function ShortcutManager(t0, t1) { this._shortcuts = t0; this.ChangeNotifier__listeners = t1; }, Shortcuts: function Shortcuts(t0, t1, t2, t3) { var _ = this; _.shortcuts = t0; _.child = t1; _.debugLabel = t2; _.key = t3; }, _ShortcutsState: function _ShortcutsState(t0) { var _ = this; _._widget = _._internalManager = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ShortcutsMarker: function _ShortcutsMarker(t0, t1, t2) { this.notifier = t0; this.child = t1; this.key = t2; }, _LogicalKeySet_KeySet_Diagnosticable: function _LogicalKeySet_KeySet_Diagnosticable() { }, _ShortcutManager_ChangeNotifier_Diagnosticable: function _ShortcutManager_ChangeNotifier_Diagnosticable() { }, GoogleSignInPlatform_instance: function(instance) { var exception; try { } catch (exception) { if (type$.NoSuchMethodError._is(H.unwrapException(exception))) throw H.wrapException(P.AssertionError$(string$.Platfo)); else throw exception; } $.GoogleSignInPlatform__instance = instance; }, GoogleSignInPlatform: function GoogleSignInPlatform() { }, StreamedResponse$: function(stream, statusCode, contentLength, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = new X.StreamedResponse(B.toByteStream(stream), request, statusCode, reasonPhrase, contentLength, headers, false, true); t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, contentLength, headers, false, true, reasonPhrase, request); return t1; }, StreamedResponse: function StreamedResponse(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.stream = t0; _.request = t1; _.statusCode = t2; _.reasonPhrase = t3; _.contentLength = t4; _.headers = t5; _.isRedirect = t6; _.persistentConnection = t7; }, UninitializedLocaleData$: function(message, fallbackData, $F) { return new X.UninitializedLocaleData(message, fallbackData, H.setRuntimeTypeInfo([], type$.JSArray_String), $F._eval$1("UninitializedLocaleData<0>")); }, canonicalizedLocale: function(aLocale) { var t1, region; if (aLocale == null) { if (B.defaultLocale() == null) $._defaultLocale = "en_US"; t1 = B.defaultLocale(); t1.toString; return t1; } if (aLocale === "C") return "en_ISO"; if (aLocale.length < 5) return aLocale; t1 = aLocale[2]; if (t1 !== "-" && t1 !== "_") return aLocale; region = C.JSString_methods.substring$1(aLocale, 3); if (region.length <= 3) region = region.toUpperCase(); return aLocale[0] + aLocale[1] + "_" + region; }, verifiedLocale: function(newLocale, localeExists, onFailure) { var t1, _i, each; if (newLocale == null) { if (B.defaultLocale() == null) $._defaultLocale = "en_US"; t1 = B.defaultLocale(); t1.toString; return X.verifiedLocale(t1, localeExists, onFailure); } if (localeExists.call$1(newLocale)) return newLocale; for (t1 = [X.canonicalizedLocale(newLocale), X.shortLocale(newLocale), "fallback"], _i = 0; _i < 3; ++_i) { each = t1[_i]; if (localeExists.call$1(each)) return each; } return (onFailure == null ? X.intl_helpers___throwLocaleError$closure() : onFailure).call$1(newLocale); }, _throwLocaleError: function(localeName) { throw H.wrapException(P.ArgumentError$('Invalid locale "' + localeName + '"')); }, shortLocale: function(aLocale) { if (aLocale.length < 2) return aLocale; return C.JSString_methods.substring$2(aLocale, 0, 2).toLowerCase(); }, UninitializedLocaleData: function UninitializedLocaleData(t0, t1, t2, t3) { var _ = this; _.message = t0; _.fallbackData = t1; _._badMessages = t2; _.$ti = t3; }, LocaleDataException: function LocaleDataException(t0) { this.message = t0; }, CalculateInvoiceTotal: function CalculateInvoiceTotal() { }, CalculateInvoiceTotal_calculateTaxes_closure: function CalculateInvoiceTotal_calculateTaxes_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.precision = t2; _.useInclusiveTaxes = t3; _.map = t4; }, CalculateInvoiceTotal_calculateTaxes__closure: function CalculateInvoiceTotal_calculateTaxes__closure(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure0: function CalculateInvoiceTotal_calculateTaxes__closure0(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure1: function CalculateInvoiceTotal_calculateTaxes__closure1(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure2: function CalculateInvoiceTotal_calculateTaxes__closure2(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure3: function CalculateInvoiceTotal_calculateTaxes__closure3(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes__closure4: function CalculateInvoiceTotal_calculateTaxes__closure4(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure0: function CalculateInvoiceTotal_calculateTaxes_closure0(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure1: function CalculateInvoiceTotal_calculateTaxes_closure1(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure2: function CalculateInvoiceTotal_calculateTaxes_closure2(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure3: function CalculateInvoiceTotal_calculateTaxes_closure3(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure4: function CalculateInvoiceTotal_calculateTaxes_closure4(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_calculateTaxes_closure5: function CalculateInvoiceTotal_calculateTaxes_closure5(t0) { this._box_0 = t0; }, CalculateInvoiceTotal_getTaxable_closure: function CalculateInvoiceTotal_getTaxable_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, CalculateInvoiceTotal_calculateTotal_closure: function CalculateInvoiceTotal_calculateTotal_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.precision = t2; }, CalculateInvoiceTotal_calculateSubtotal_closure: function CalculateInvoiceTotal_calculateSubtotal_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.precision = t2; }, PaymentTermEntity_PaymentTermEntity: function(id, state) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return X._$PaymentTermEntity$_(0, null, 0, null, t1, false, false, "", 0, 0); }, _$PaymentTermEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, id, isChanged, isDeleted, $name, numDays, updatedAt) { return new X._$PaymentTermEntity($name, numDays, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, PaymentTermListResponse: function PaymentTermListResponse() { }, PaymentTermItemResponse: function PaymentTermItemResponse() { }, PaymentTermEntity: function PaymentTermEntity() { }, _$PaymentTermListResponseSerializer: function _$PaymentTermListResponseSerializer() { }, _$PaymentTermItemResponseSerializer: function _$PaymentTermItemResponseSerializer() { }, _$PaymentTermEntitySerializer: function _$PaymentTermEntitySerializer() { }, _$PaymentTermListResponse: function _$PaymentTermListResponse(t0) { this.data = t0; this._payment_term_model$__hashCode = null; }, PaymentTermListResponseBuilder: function PaymentTermListResponseBuilder() { this._payment_term_model$_data = this._payment_term_model$_$v = null; }, _$PaymentTermItemResponse: function _$PaymentTermItemResponse(t0) { this.data = t0; this._payment_term_model$__hashCode = null; }, PaymentTermItemResponseBuilder: function PaymentTermItemResponseBuilder() { this._payment_term_model$_data = this._payment_term_model$_$v = null; }, _$PaymentTermEntity: function _$PaymentTermEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.name = t0; _.numDays = t1; _.isChanged = t2; _.createdAt = t3; _.updatedAt = t4; _.archivedAt = t5; _.isDeleted = t6; _.createdUserId = t7; _.assignedUserId = t8; _.id = t9; _._payment_term_model$__hashCode = null; }, PaymentTermEntityBuilder: function PaymentTermEntityBuilder() { var _ = this; _._payment_term_model$_id = _._payment_term_model$_assignedUserId = _._payment_term_model$_createdUserId = _._payment_term_model$_isDeleted = _._payment_term_model$_archivedAt = _._payment_term_model$_updatedAt = _._payment_term_model$_createdAt = _._payment_term_model$_isChanged = _._numDays = _._payment_term_model$_name = _._payment_term_model$_$v = null; }, _PaymentTermEntity_Object_BaseEntity: function _PaymentTermEntity_Object_BaseEntity() { }, _PaymentTermEntity_Object_BaseEntity_SelectableEntity: function _PaymentTermEntity_Object_BaseEntity_SelectableEntity() { }, SubscriptionEntity_SubscriptionEntity: function(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = type$.legacy_String; return X._$SubscriptionEntity$_(false, false, false, 0, "", "", 0, "", "", "", t1, true, false, false, 0, "", false, 0, "", "", 0, "", "", 0, 0, false, 0, X._$WebhookConfigurationEntity$_("", A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2), "", "", "")); }, WebhookConfigurationEntity__initializeBuilder: function(builder) { var t1; builder.get$_subscription_model$_$this()._returnUrl = ""; builder.get$_subscription_model$_$this()._postPurchaseBody = ""; t1 = type$.legacy_String; builder.get$postPurchaseHeaders().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, t1)); builder.get$_subscription_model$_$this()._postPurchaseRestMethod = ""; builder.get$_subscription_model$_$this()._postPurchaseUrl = ""; return builder; }, _$SubscriptionEntity$_: function(allowCancellation, allowPlanChanges, allowQueryOverrides, archivedAt, assignedUserId, autoBill, createdAt, createdUserId, frequencyId, groupId, id, isAmountDiscount, isChanged, isDeleted, maxSeatsLimit, $name, perSeatEnabled, price, productIds, promoCode, promoDiscount, purchasePage, recurringProductIds, refundPeriod, trialDuration, trialEnabled, updatedAt, webhookConfiguration) { if (webhookConfiguration == null) H.throwExpression(Y.BuiltValueNullFieldError$("SubscriptionEntity", "webhookConfiguration")); return new X._$SubscriptionEntity($name, groupId, productIds, recurringProductIds, frequencyId, autoBill, promoCode, promoDiscount, price, isAmountDiscount, allowCancellation, perSeatEnabled, maxSeatsLimit, trialEnabled, trialDuration, allowQueryOverrides, allowPlanChanges, refundPeriod, webhookConfiguration, purchasePage, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$WebhookConfigurationEntity$_: function(postPurchaseBody, postPurchaseHeaders, postPurchaseRestMethod, postPurchaseUrl, returnUrl) { if (postPurchaseHeaders == null) H.throwExpression(Y.BuiltValueNullFieldError$("WebhookConfigurationEntity", "postPurchaseHeaders")); return new X._$WebhookConfigurationEntity(returnUrl, postPurchaseUrl, postPurchaseRestMethod, postPurchaseHeaders, postPurchaseBody); }, SubscriptionListResponse: function SubscriptionListResponse() { }, SubscriptionItemResponse: function SubscriptionItemResponse() { }, SubscriptionEntity: function SubscriptionEntity() { }, WebhookConfigurationEntity: function WebhookConfigurationEntity() { }, _$SubscriptionListResponseSerializer: function _$SubscriptionListResponseSerializer() { }, _$SubscriptionItemResponseSerializer: function _$SubscriptionItemResponseSerializer() { }, _$SubscriptionEntitySerializer: function _$SubscriptionEntitySerializer() { }, _$WebhookConfigurationEntitySerializer: function _$WebhookConfigurationEntitySerializer() { }, _$SubscriptionListResponse: function _$SubscriptionListResponse(t0) { this.data = t0; this._subscription_model$__hashCode = null; }, SubscriptionListResponseBuilder: function SubscriptionListResponseBuilder() { this._subscription_model$_data = this._subscription_model$_$v = null; }, _$SubscriptionItemResponse: function _$SubscriptionItemResponse(t0) { this.data = t0; this._subscription_model$__hashCode = null; }, SubscriptionItemResponseBuilder: function SubscriptionItemResponseBuilder() { this._subscription_model$_data = this._subscription_model$_$v = null; }, _$SubscriptionEntity: function _$SubscriptionEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.name = t0; _.groupId = t1; _.productIds = t2; _.recurringProductIds = t3; _.frequencyId = t4; _.autoBill = t5; _.promoCode = t6; _.promoDiscount = t7; _.price = t8; _.isAmountDiscount = t9; _.allowCancellation = t10; _.perSeatEnabled = t11; _.maxSeatsLimit = t12; _.trialEnabled = t13; _.trialDuration = t14; _.allowQueryOverrides = t15; _.allowPlanChanges = t16; _.refundPeriod = t17; _.webhookConfiguration = t18; _.purchasePage = t19; _.isChanged = t20; _.createdAt = t21; _.updatedAt = t22; _.archivedAt = t23; _.isDeleted = t24; _.createdUserId = t25; _.assignedUserId = t26; _.id = t27; _._subscription_model$__hashCode = null; }, SubscriptionEntityBuilder: function SubscriptionEntityBuilder() { var _ = this; _._subscription_model$_id = _._subscription_model$_assignedUserId = _._subscription_model$_createdUserId = _._subscription_model$_isDeleted = _._subscription_model$_archivedAt = _._subscription_model$_updatedAt = _._subscription_model$_createdAt = _._subscription_model$_isChanged = _._purchasePage = _._webhookConfiguration = _._refundPeriod = _._allowPlanChanges = _._allowQueryOverrides = _._trialDuration = _._trialEnabled = _._maxSeatsLimit = _._perSeatEnabled = _._allowCancellation = _._subscription_model$_isAmountDiscount = _._price = _._promoDiscount = _._promoCode = _._subscription_model$_autoBill = _._subscription_model$_frequencyId = _._recurringProductIds = _._productIds = _._subscription_model$_groupId = _._subscription_model$_name = _._subscription_model$_$v = null; }, _$WebhookConfigurationEntity: function _$WebhookConfigurationEntity(t0, t1, t2, t3, t4) { var _ = this; _.returnUrl = t0; _.postPurchaseUrl = t1; _.postPurchaseRestMethod = t2; _.postPurchaseHeaders = t3; _.postPurchaseBody = t4; _._subscription_model$__hashCode = null; }, WebhookConfigurationEntityBuilder: function WebhookConfigurationEntityBuilder() { var _ = this; _._postPurchaseBody = _._postPurchaseHeaders = _._postPurchaseRestMethod = _._postPurchaseUrl = _._returnUrl = _._subscription_model$_$v = null; }, _SubscriptionEntity_Object_BaseEntity: function _SubscriptionEntity_Object_BaseEntity() { }, PersistenceRepository: function PersistenceRepository(t0) { this.fileStorage = t0; }, ProjectRepository: function ProjectRepository() { }, TaskStatusRepository: function TaskStatusRepository() { }, _viewCredit: function() { return new X._viewCredit_closure(); }, _viewCreditList: function() { return new X._viewCreditList_closure0(); }, _editCredit: function() { return new X._editCredit_closure(); }, _showEmailCredit: function() { return new X._showEmailCredit_closure(); }, _showPdfCredit: function() { return new X._showPdfCredit_closure(); }, _archiveCredit: function(repository) { return new X._archiveCredit_closure(repository); }, _deleteCredit: function(repository) { return new X._deleteCredit_closure(repository); }, _restoreCredit: function(repository) { return new X._restoreCredit_closure(repository); }, _markSentCredit: function(repository) { return new X._markSentCredit_closure(repository); }, _emailCredit: function(repository) { return new X._emailCredit_closure(repository); }, _saveCredit: function(repository) { return new X._saveCredit_closure(repository); }, _loadCredit: function(repository) { return new X._loadCredit_closure(repository); }, _loadCredits: function(repository) { return new X._loadCredits_closure(repository); }, _downloadCredits: function(repository) { return new X._downloadCredits_closure(repository); }, _bulkEmailCredits: function(repository) { return new X._bulkEmailCredits_closure(repository); }, _saveDocument10: function(repository) { return new X._saveDocument_closure0(repository); }, _viewCredit_closure: function _viewCredit_closure() { }, _viewCreditList_closure0: function _viewCreditList_closure0() { }, _viewCreditList__closure: function _viewCreditList__closure() { }, _editCredit_closure: function _editCredit_closure() { }, _showEmailCredit_closure: function _showEmailCredit_closure() { }, _showPdfCredit_closure: function _showPdfCredit_closure() { }, _archiveCredit_closure: function _archiveCredit_closure(t0) { this.repository = t0; }, _archiveCredit__closure: function _archiveCredit__closure(t0) { this.store = t0; }, _archiveCredit__closure0: function _archiveCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveCredit__closure1: function _archiveCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _deleteCredit_closure: function _deleteCredit_closure(t0) { this.repository = t0; }, _deleteCredit__closure: function _deleteCredit__closure(t0) { this.store = t0; }, _deleteCredit__closure0: function _deleteCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCredit__closure1: function _deleteCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _restoreCredit_closure: function _restoreCredit_closure(t0) { this.repository = t0; }, _restoreCredit__closure: function _restoreCredit__closure(t0) { this.store = t0; }, _restoreCredit__closure0: function _restoreCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreCredit__closure1: function _restoreCredit__closure1(t0, t1, t2) { this.store = t0; this.prevCredits = t1; this.action = t2; }, _markSentCredit_closure: function _markSentCredit_closure(t0) { this.repository = t0; }, _markSentCredit__closure: function _markSentCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _markSentCredit__closure0: function _markSentCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailCredit_closure: function _emailCredit_closure(t0) { this.repository = t0; }, _emailCredit__closure: function _emailCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _emailCredit__closure0: function _emailCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveCredit_closure: function _saveCredit_closure(t0) { this.repository = t0; }, _saveCredit__closure: function _saveCredit__closure(t0) { this.action = t0; }, _saveCredit___closure: function _saveCredit___closure() { }, _saveCredit__closure0: function _saveCredit__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveCredit__closure1: function _saveCredit__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadCredit_closure: function _loadCredit_closure(t0) { this.repository = t0; }, _loadCredit__closure: function _loadCredit__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCredit__closure0: function _loadCredit__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCredits_closure: function _loadCredits_closure(t0) { this.repository = t0; }, _loadCredits__closure: function _loadCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCredits__closure0: function _loadCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadCredits_closure: function _downloadCredits_closure(t0) { this.repository = t0; }, _downloadCredits__closure: function _downloadCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadCredits__closure0: function _downloadCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailCredits_closure: function _bulkEmailCredits_closure(t0) { this.repository = t0; }, _bulkEmailCredits__closure: function _bulkEmailCredits__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailCredits__closure0: function _bulkEmailCredits__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure0: function _saveDocument_closure0(t0) { this.repository = t0; }, _saveDocument__closure1: function _saveDocument__closure1(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure2: function _saveDocument__closure2(t0, t1) { this.store = t0; this.action = t1; }, handleDocumentAction: function(context, documents, action) { var store, t1, $document, t2, documentIds, message, _i, t3, _s12_ = "_dispatchers"; if (documents.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $document = C.JSArray_methods.get$first(documents); t2 = H._arrayInstanceType(documents)._eval$1("MappedListIterable<1,String*>"); documentIds = P.List_List$of(new H.MappedListIterable(documents, new X.handleDocumentAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(null, context, $document, null); break; case C.EntityAction_restore: t2 = documentIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_documents"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_document"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.RestoreDocumentRequest(t1, documentIds)); break; case C.EntityAction_archive: t2 = documentIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_documents"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_document"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.ArchiveDocumentRequest(t1, documentIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.documentUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.StartDocumentMultiselect()); t1 = documents.length; if (t1 === 0) break; for (_i = 0; _i < documents.length; documents.length === t1 || (0, H.throwConcurrentModificationError)(documents), ++_i) { $document = documents[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.documentUIState.listUIState; t3 = J.get$id$x($document); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.AddToDocumentMultiselect($document)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.RemoveFromDocumentMultiselect($document)); } break; case C.EntityAction_more: L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([$document], type$.JSArray_legacy_BaseEntity), false); break; } }, UpdateDocument: function UpdateDocument(t0) { this.document = t0; }, LoadDocumentRequest: function LoadDocumentRequest() { }, LoadDocumentFailure: function LoadDocumentFailure(t0) { this.error = t0; }, LoadDocumentSuccess: function LoadDocumentSuccess(t0) { this.document = t0; }, LoadDocumentsRequest: function LoadDocumentsRequest() { }, LoadDocumentsFailure: function LoadDocumentsFailure(t0) { this.error = t0; }, LoadDocumentsSuccess: function LoadDocumentsSuccess(t0) { this.documents = t0; }, ArchiveDocumentRequest: function ArchiveDocumentRequest(t0, t1) { this.completer = t0; this.documentIds = t1; }, ArchiveDocumentSuccess: function ArchiveDocumentSuccess(t0) { this.documents = t0; }, ArchiveDocumentFailure: function ArchiveDocumentFailure() { }, DeleteDocumentRequest: function DeleteDocumentRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.documentIds = t1; _.password = t2; _.idToken = t3; }, DeleteDocumentSuccess: function DeleteDocumentSuccess() { }, DeleteDocumentFailure: function DeleteDocumentFailure() { }, RestoreDocumentRequest: function RestoreDocumentRequest(t0, t1) { this.completer = t0; this.documentIds = t1; }, RestoreDocumentSuccess: function RestoreDocumentSuccess(t0) { this.documents = t0; }, RestoreDocumentFailure: function RestoreDocumentFailure() { }, FilterDocuments: function FilterDocuments(t0) { this.filter = t0; }, SortDocuments: function SortDocuments(t0) { this.field = t0; }, FilterDocumentsByState: function FilterDocumentsByState(t0) { this.state = t0; }, FilterDocumentsByCustom1: function FilterDocumentsByCustom1(t0) { this.value = t0; }, FilterDocumentsByCustom2: function FilterDocumentsByCustom2(t0) { this.value = t0; }, FilterDocumentsByCustom3: function FilterDocumentsByCustom3(t0) { this.value = t0; }, FilterDocumentsByCustom4: function FilterDocumentsByCustom4(t0) { this.value = t0; }, handleDocumentAction_closure: function handleDocumentAction_closure() { }, StartDocumentMultiselect: function StartDocumentMultiselect() { }, AddToDocumentMultiselect: function AddToDocumentMultiselect(t0) { this.entity = t0; }, RemoveFromDocumentMultiselect: function RemoveFromDocumentMultiselect(t0) { this.entity = t0; }, ClearDocumentMultiselect: function ClearDocumentMultiselect() { }, handleExpenseCategoryAction: function(context, expenseCategories, action) { var store, state, t1, expenseCategory, t2, expenseCategoryIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (expenseCategories.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); expenseCategory = type$.legacy_ExpenseCategoryEntity._as(C.JSArray_methods.get$first(expenseCategories)); t2 = H._arrayInstanceType(expenseCategories)._eval$1("MappedListIterable<1,String*>"); expenseCategoryIds = P.List_List$of(new H.MappedListIterable(expenseCategories, new X.handleExpenseCategoryAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, expenseCategory, _null); break; case C.EntityAction_restore: t2 = expenseCategoryIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_expense_categories"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_expense_category"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.RestoreExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case C.EntityAction_archive: t2 = expenseCategoryIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_expense_categories"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_expense_category"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.ArchiveExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case C.EntityAction_delete: t2 = expenseCategoryIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_expense_categories"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_expense_category"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.DeleteExpenseCategoriesRequest(t1, expenseCategoryIds)); break; case C.EntityAction_newExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, _null).rebuild$1(new X.handleExpenseCategoryAction_closure0(expenseCategory)), expenseCategory, false); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.expenseCategoryUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.StartExpenseCategoryMultiselect()); t1 = expenseCategories.length; if (t1 === 0) break; for (_i = 0; _i < expenseCategories.length; expenseCategories.length === t1 || (0, H.throwConcurrentModificationError)(expenseCategories), ++_i) { expenseCategory = expenseCategories[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.expenseCategoryUIState.listUIState; t3 = J.get$id$x(expenseCategory); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.AddToExpenseCategoryMultiselect(expenseCategory)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.RemoveFromExpenseCategoryMultiselect(expenseCategory)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([expenseCategory], type$.JSArray_legacy_BaseEntity), false); break; default: P.print("## ERROR: unhandled action " + H.S(action)); break; } }, ViewExpenseCategoryList: function ViewExpenseCategoryList() { }, ViewExpenseCategory: function ViewExpenseCategory(t0) { this.expenseCategoryId = t0; }, EditExpenseCategory: function EditExpenseCategory(t0) { this.expenseCategory = t0; }, UpdateExpenseCategory: function UpdateExpenseCategory(t0) { this.expenseCategory = t0; }, LoadExpenseCategoryRequest: function LoadExpenseCategoryRequest() { }, LoadExpenseCategoryFailure: function LoadExpenseCategoryFailure(t0) { this.error = t0; }, LoadExpenseCategorySuccess: function LoadExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, LoadExpenseCategoriesRequest: function LoadExpenseCategoriesRequest() { }, LoadExpenseCategoriesFailure: function LoadExpenseCategoriesFailure(t0) { this.error = t0; }, LoadExpenseCategoriesSuccess: function LoadExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, SaveExpenseCategoryRequest: function SaveExpenseCategoryRequest(t0, t1) { this.completer = t0; this.expenseCategory = t1; }, SaveExpenseCategorySuccess: function SaveExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, AddExpenseCategorySuccess: function AddExpenseCategorySuccess(t0) { this.expenseCategory = t0; }, SaveExpenseCategoryFailure: function SaveExpenseCategoryFailure() { }, ArchiveExpenseCategoriesRequest: function ArchiveExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, ArchiveExpenseCategoriesSuccess: function ArchiveExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, ArchiveExpenseCategoriesFailure: function ArchiveExpenseCategoriesFailure() { }, DeleteExpenseCategoriesRequest: function DeleteExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, DeleteExpenseCategoriesSuccess: function DeleteExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, DeleteExpenseCategoriesFailure: function DeleteExpenseCategoriesFailure() { }, RestoreExpenseCategoriesRequest: function RestoreExpenseCategoriesRequest(t0, t1) { this.completer = t0; this.expenseCategoryIds = t1; }, RestoreExpenseCategoriesSuccess: function RestoreExpenseCategoriesSuccess(t0) { this.expenseCategories = t0; }, RestoreExpenseCategoriesFailure: function RestoreExpenseCategoriesFailure() { }, FilterExpenseCategories: function FilterExpenseCategories(t0) { this.filter = t0; }, SortExpenseCategories: function SortExpenseCategories(t0) { this.field = t0; }, FilterExpenseCategoriesByState: function FilterExpenseCategoriesByState(t0) { this.state = t0; }, FilterExpenseCategoriesByCustom1: function FilterExpenseCategoriesByCustom1(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom2: function FilterExpenseCategoriesByCustom2(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom3: function FilterExpenseCategoriesByCustom3(t0) { this.value = t0; }, FilterExpenseCategoriesByCustom4: function FilterExpenseCategoriesByCustom4(t0) { this.value = t0; }, StartExpenseCategoryMultiselect: function StartExpenseCategoryMultiselect() { }, AddToExpenseCategoryMultiselect: function AddToExpenseCategoryMultiselect(t0) { this.entity = t0; }, RemoveFromExpenseCategoryMultiselect: function RemoveFromExpenseCategoryMultiselect(t0) { this.entity = t0; }, ClearExpenseCategoryMultiselect: function ClearExpenseCategoryMultiselect() { }, handleExpenseCategoryAction_closure: function handleExpenseCategoryAction_closure() { }, handleExpenseCategoryAction_closure0: function handleExpenseCategoryAction_closure0(t0) { this.expenseCategory = t0; }, _editGroup: function() { return new X._editGroup_closure(); }, _viewGroup: function() { return new X._viewGroup_closure(); }, _viewGroupList: function() { return new X._viewGroupList_closure0(); }, _archiveGroup: function(repository) { return new X._archiveGroup_closure(repository); }, _deleteGroup: function(repository) { return new X._deleteGroup_closure(repository); }, _restoreGroup: function(repository) { return new X._restoreGroup_closure(repository); }, _saveGroup: function(repository) { return new X._saveGroup_closure(repository); }, _loadGroup: function(repository) { return new X._loadGroup_closure(repository); }, _loadGroups: function(repository) { return new X._loadGroups_closure(repository); }, _saveDocument11: function(repository) { return new X._saveDocument_closure(repository); }, _editGroup_closure: function _editGroup_closure() { }, _viewGroup_closure: function _viewGroup_closure() { }, _viewGroupList_closure0: function _viewGroupList_closure0() { }, _viewGroupList__closure: function _viewGroupList__closure() { }, _archiveGroup_closure: function _archiveGroup_closure(t0) { this.repository = t0; }, _archiveGroup__closure: function _archiveGroup__closure(t0) { this.store = t0; }, _archiveGroup__closure0: function _archiveGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveGroup__closure1: function _archiveGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _deleteGroup_closure: function _deleteGroup_closure(t0) { this.repository = t0; }, _deleteGroup__closure: function _deleteGroup__closure(t0) { this.store = t0; }, _deleteGroup__closure0: function _deleteGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteGroup__closure1: function _deleteGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _restoreGroup_closure: function _restoreGroup_closure(t0) { this.repository = t0; }, _restoreGroup__closure: function _restoreGroup__closure(t0) { this.store = t0; }, _restoreGroup__closure0: function _restoreGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreGroup__closure1: function _restoreGroup__closure1(t0, t1, t2) { this.store = t0; this.prevGroups = t1; this.action = t2; }, _saveGroup_closure: function _saveGroup_closure(t0) { this.repository = t0; }, _saveGroup__closure: function _saveGroup__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveGroup__closure0: function _saveGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadGroup_closure: function _loadGroup_closure(t0) { this.repository = t0; }, _loadGroup__closure: function _loadGroup__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadGroup__closure0: function _loadGroup__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadGroups_closure: function _loadGroups_closure(t0) { this.repository = t0; }, _loadGroups__closure: function _loadGroups__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadGroups__closure0: function _loadGroups__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure: function _saveDocument_closure(t0) { this.repository = t0; }, _saveDocument__closure: function _saveDocument__closure(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure0: function _saveDocument__closure0(t0, t1) { this.store = t0; this.action = t1; }, reportsUIReducer: function(state, action) { var t1; if (action instanceof L.SaveAuthUserSuccess) return state.rebuild$1(new X.reportsUIReducer_closure()); else if (action instanceof K.UpdateReportSettings) { t1 = action.report; t1 = t1.length !== 0 && t1 !== state.report; if (t1) return G.ReportsUIState_ReportsUIState().rebuild$1(new X.reportsUIReducer_closure0(action)); else return state.rebuild$1(new X.reportsUIReducer_closure1(action, state)); } else if (action instanceof E.SelectCompany) return state; return state; }, reportsUIReducer_closure: function reportsUIReducer_closure() { }, reportsUIReducer_closure0: function reportsUIReducer_closure0(t0) { this.action = t0; }, reportsUIReducer_closure1: function reportsUIReducer_closure1(t0, t1) { this.action = t0; this.state = t1; }, subscriptionUIReducer: function(state, action) { var t1; state.toString; t1 = new M.SubscriptionUIStateBuilder(); t1._subscription_state$_$v = state; new X.subscriptionUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing13: function(subscription, action) { return X.SubscriptionEntity_SubscriptionEntity(null, null); }, _updateEditing14: function(subscription, action) { return action.get$subscription(); }, _filterSubscriptionsByCustom1: function(subscriptionListState, action) { var t1 = subscriptionListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return subscriptionListState.rebuild$1(new X._filterSubscriptionsByCustom1_closure(action)); else return subscriptionListState.rebuild$1(new X._filterSubscriptionsByCustom1_closure0(action)); }, _filterSubscriptionsByCustom2: function(subscriptionListState, action) { var t1 = subscriptionListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return subscriptionListState.rebuild$1(new X._filterSubscriptionsByCustom2_closure(action)); else return subscriptionListState.rebuild$1(new X._filterSubscriptionsByCustom2_closure0(action)); }, _filterSubscriptionsByState: function(subscriptionListState, action) { var t1 = subscriptionListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return subscriptionListState.rebuild$1(new X._filterSubscriptionsByState_closure(action)); else return subscriptionListState.rebuild$1(new X._filterSubscriptionsByState_closure0(action)); }, _filterSubscriptions: function(subscriptionListState, action) { return subscriptionListState.rebuild$1(new X._filterSubscriptions_closure(action, subscriptionListState)); }, _sortSubscriptions: function(subscriptionListState, action) { return subscriptionListState.rebuild$1(new X._sortSubscriptions_closure(action)); }, _startListMultiselect15: function(productListState, action) { return productListState.rebuild$1(new X._startListMultiselect_closure18()); }, _addToListMultiselect15: function(productListState, action) { return productListState.rebuild$1(new X._addToListMultiselect_closure18(action)); }, _removeFromListMultiselect15: function(productListState, action) { return productListState.rebuild$1(new X._removeFromListMultiselect_closure18(action)); }, _clearListMultiselect15: function(productListState, action) { return productListState.rebuild$1(new X._clearListMultiselect_closure18()); }, _archiveSubscriptionSuccess: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._archiveSubscriptionSuccess_closure(action)); }, _deleteSubscriptionSuccess: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._deleteSubscriptionSuccess_closure(action)); }, _restoreSubscriptionSuccess: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._restoreSubscriptionSuccess_closure(action)); }, _addSubscription: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._addSubscription_closure(action)); }, _updateSubscription: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._updateSubscription_closure(action)); }, _setLoadedSubscription: function(subscriptionState, action) { return subscriptionState.rebuild$1(new X._setLoadedSubscription_closure(action)); }, _setLoadedSubscriptions: function(subscriptionState, action) { return subscriptionState.loadSubscriptions$1(action.subscriptions); }, _setLoadedCompany14: function(subscriptionState, action) { return subscriptionState.loadSubscriptions$1(action.userCompany.company.subscriptions); }, subscriptionUIReducer_closure: function subscriptionUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure143: function forceSelectedReducer_closure143() { }, forceSelectedReducer_closure144: function forceSelectedReducer_closure144() { }, forceSelectedReducer_closure145: function forceSelectedReducer_closure145() { }, forceSelectedReducer_closure146: function forceSelectedReducer_closure146() { }, forceSelectedReducer_closure147: function forceSelectedReducer_closure147() { }, forceSelectedReducer_closure148: function forceSelectedReducer_closure148() { }, forceSelectedReducer_closure149: function forceSelectedReducer_closure149() { }, forceSelectedReducer_closure150: function forceSelectedReducer_closure150() { }, tabIndexReducer_closure15: function tabIndexReducer_closure15() { }, tabIndexReducer_closure16: function tabIndexReducer_closure16() { }, selectedIdReducer_closure286: function selectedIdReducer_closure286() { }, selectedIdReducer_closure287: function selectedIdReducer_closure287() { }, selectedIdReducer_closure288: function selectedIdReducer_closure288() { }, selectedIdReducer_closure289: function selectedIdReducer_closure289() { }, selectedIdReducer_closure290: function selectedIdReducer_closure290() { }, selectedIdReducer_closure291: function selectedIdReducer_closure291() { }, selectedIdReducer_closure292: function selectedIdReducer_closure292() { }, selectedIdReducer_closure293: function selectedIdReducer_closure293() { }, selectedIdReducer_closure294: function selectedIdReducer_closure294() { }, selectedIdReducer_closure295: function selectedIdReducer_closure295() { }, selectedIdReducer_closure296: function selectedIdReducer_closure296() { }, selectedIdReducer_closure297: function selectedIdReducer_closure297() { }, selectedIdReducer_closure298: function selectedIdReducer_closure298() { }, selectedIdReducer_closure299: function selectedIdReducer_closure299() { }, selectedIdReducer_closure300: function selectedIdReducer_closure300() { }, editingReducer_closure93: function editingReducer_closure93() { }, editingReducer_closure94: function editingReducer_closure94() { }, editingReducer_closure95: function editingReducer_closure95() { }, editingReducer_closure96: function editingReducer_closure96() { }, editingReducer__closure36: function editingReducer__closure36() { }, _filterSubscriptionsByCustom1_closure: function _filterSubscriptionsByCustom1_closure(t0) { this.action = t0; }, _filterSubscriptionsByCustom1_closure0: function _filterSubscriptionsByCustom1_closure0(t0) { this.action = t0; }, _filterSubscriptionsByCustom2_closure: function _filterSubscriptionsByCustom2_closure(t0) { this.action = t0; }, _filterSubscriptionsByCustom2_closure0: function _filterSubscriptionsByCustom2_closure0(t0) { this.action = t0; }, _filterSubscriptionsByState_closure: function _filterSubscriptionsByState_closure(t0) { this.action = t0; }, _filterSubscriptionsByState_closure0: function _filterSubscriptionsByState_closure0(t0) { this.action = t0; }, _filterSubscriptions_closure: function _filterSubscriptions_closure(t0, t1) { this.action = t0; this.subscriptionListState = t1; }, _sortSubscriptions_closure: function _sortSubscriptions_closure(t0) { this.action = t0; }, _startListMultiselect_closure18: function _startListMultiselect_closure18() { }, _addToListMultiselect_closure18: function _addToListMultiselect_closure18(t0) { this.action = t0; }, _removeFromListMultiselect_closure18: function _removeFromListMultiselect_closure18(t0) { this.action = t0; }, _clearListMultiselect_closure18: function _clearListMultiselect_closure18() { }, _archiveSubscriptionSuccess_closure: function _archiveSubscriptionSuccess_closure(t0) { this.action = t0; }, _deleteSubscriptionSuccess_closure: function _deleteSubscriptionSuccess_closure(t0) { this.action = t0; }, _restoreSubscriptionSuccess_closure: function _restoreSubscriptionSuccess_closure(t0) { this.action = t0; }, _addSubscription_closure: function _addSubscription_closure(t0) { this.action = t0; }, _updateSubscription_closure: function _updateSubscription_closure(t0) { this.action = t0; }, _setLoadedSubscription_closure: function _setLoadedSubscription_closure(t0) { this.action = t0; }, PrefState_PrefState: function() { var t1 = type$.legacy_EntityType, t2 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_bool), t3 = type$.legacy_String, t4 = A.BuiltMap_BuiltMap(C.Map_empty0, t3, type$.legacy_CompanyPrefState); t1 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_PrefStateSortField); return X._$PrefState$_(C.AppLayout_desktop, "light", t4, A.BuiltMap_BuiltMap(C.Map_so4CA, t3, t3), false, C.AppSidebarMode_float, false, false, true, false, true, C.AppSidebarMode_collapse, C.ModuleLayout_table, false, false, 10, false, t1, t2); }, PrefState__initializeBuilder: function(builder) { var t2, t1 = type$.legacy_EntityType; builder.get$useSidebarEditor().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_bool)); builder.get$sortFields().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_PrefStateSortField)); t1 = builder.get$customColors(); t2 = type$.legacy_String; t1.replace$1(0, builder.get$_pref_state$_$this()._enableDarkMode === true ? A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2) : A.BuiltMap_BuiltMap(C.Map_so4CA, t2, t2)); builder.get$_pref_state$_$this()._showKanban = false; builder.get$_pref_state$_$this()._isPreviewVisible = false; builder.get$_pref_state$_$this()._isFilterVisible = false; builder.get$_pref_state$_$this()._persistData = false; builder.get$_pref_state$_$this(); builder.get$_pref_state$_$this()._colorTheme = "light"; return builder; }, _$valueOf1: function($name) { switch ($name) { case "mobile": return C.AppLayout_mobile; case "desktop": return C.AppLayout_desktop; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$moduleLayoutValueOf: function($name) { switch ($name) { case "list": return C.ModuleLayout_list; case "table": return C.ModuleLayout_table; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$valueOfSidebarMode: function($name) { switch ($name) { case "float": return C.AppSidebarMode_float; case "visible": return C.AppSidebarMode_visible; case "collapse": return C.AppSidebarMode_collapse; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$PrefState$_: function(appLayout, colorTheme, companyPrefs, customColors, enableDarkMode, historySidebarMode, isFilterVisible, isHistoryVisible, isMenuVisible, isPreviewVisible, longPressSelectionIsDefault, menuSidebarMode, moduleLayout, persistData, requireAuthentication, rowsPerPage, showKanban, sortFields, useSidebarEditor) { var _s9_ = "PrefState"; if (useSidebarEditor == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "useSidebarEditor")); if (customColors == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "customColors")); if (sortFields == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "sortFields")); if (companyPrefs == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "companyPrefs")); return new X._$PrefState(appLayout, moduleLayout, menuSidebarMode, historySidebarMode, useSidebarEditor, customColors, isPreviewVisible, isMenuVisible, showKanban, isHistoryVisible, enableDarkMode, isFilterVisible, persistData, longPressSelectionIsDefault, requireAuthentication, rowsPerPage, colorTheme, sortFields, companyPrefs); }, _$PrefStateSortField$_: function(ascending, field) { if (field == null) H.throwExpression(Y.BuiltValueNullFieldError$("PrefStateSortField", "field")); return new X._$PrefStateSortField(field, ascending); }, _$HistoryRecord$_: function(entityType, id, timestamp) { if (entityType == null) H.throwExpression(Y.BuiltValueNullFieldError$("HistoryRecord", "entityType")); return new X._$HistoryRecord(id, entityType, timestamp); }, PrefState: function PrefState() { }, PrefStateSortField: function PrefStateSortField() { }, CompanyPrefState: function CompanyPrefState() { }, AppLayout: function AppLayout(t0) { this.name = t0; }, ModuleLayout: function ModuleLayout(t0) { this.name = t0; }, AppSidebar: function AppSidebar(t0) { this.name = t0; }, AppSidebarMode: function AppSidebarMode(t0) { this.name = t0; }, HistoryRecord: function HistoryRecord() { }, _$PrefStateSerializer: function _$PrefStateSerializer() { }, _$PrefStateSortFieldSerializer: function _$PrefStateSortFieldSerializer() { }, _$CompanyPrefStateSerializer: function _$CompanyPrefStateSerializer() { }, _$AppLayoutSerializer: function _$AppLayoutSerializer() { }, _$ModuleLayoutSerializer: function _$ModuleLayoutSerializer() { }, _$AppSidebarModeSerializer: function _$AppSidebarModeSerializer() { }, _$HistoryRecordSerializer: function _$HistoryRecordSerializer() { }, _$PrefState: function _$PrefState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.appLayout = t0; _.moduleLayout = t1; _.menuSidebarMode = t2; _.historySidebarMode = t3; _.useSidebarEditor = t4; _.customColors = t5; _.isPreviewVisible = t6; _.isMenuVisible = t7; _.showKanban = t8; _.isHistoryVisible = t9; _.enableDarkMode = t10; _.isFilterVisible = t11; _.persistData = t12; _.longPressSelectionIsDefault = t13; _.requireAuthentication = t14; _.rowsPerPage = t15; _.colorTheme = t16; _.sortFields = t17; _.companyPrefs = t18; _.__hashCode = null; }, PrefStateBuilder: function PrefStateBuilder() { var _ = this; _._companyPrefs = _._sortFields = _._colorTheme = _._rowsPerPage = _._requireAuthentication = _._longPressSelectionIsDefault = _._persistData = _._isFilterVisible = _._enableDarkMode = _._isHistoryVisible = _._showKanban = _._isMenuVisible = _._isPreviewVisible = _._customColors = _._useSidebarEditor = _._historySidebarMode = _._menuSidebarMode = _._moduleLayout = _._appLayout = _._pref_state$_$v = null; }, _$PrefStateSortField: function _$PrefStateSortField(t0, t1) { this.field = t0; this.ascending = t1; this.__hashCode = null; }, PrefStateSortFieldBuilder: function PrefStateSortFieldBuilder() { this._ascending = this._field = this._pref_state$_$v = null; }, _$CompanyPrefState: function _$CompanyPrefState(t0) { this.historyList = t0; this.__hashCode = null; }, CompanyPrefStateBuilder: function CompanyPrefStateBuilder() { this._historyList = this._pref_state$_$v = null; }, _$HistoryRecord: function _$HistoryRecord(t0, t1, t2) { var _ = this; _.id = t0; _.entityType = t1; _.timestamp = t2; _.__hashCode = null; }, HistoryRecordBuilder: function HistoryRecordBuilder() { var _ = this; _._timestamp = _._pref_state$_entityType = _._pref_state$_id = _._pref_state$_$v = null; }, handleUserAction: function(context, users, action) { var store, state, t1, user, t2, userIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (users.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); user = type$.legacy_UserEntity._as(C.JSArray_methods.get$first(users)); t2 = H._arrayInstanceType(users)._eval$1("MappedListIterable<1,String*>"); userIds = P.List_List$of(new H.MappedListIterable(users, new X.handleUserAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, user, _null); break; case C.EntityAction_newClient: M.createEntity(_null, _null, context, T.ClientEntity_ClientEntity(_null, state, _null).rebuild$1(new X.handleUserAction_closure0(user)), user, false); break; case C.EntityAction_newInvoice: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null).rebuild$1(new X.handleUserAction_closure1(user)), user, false); break; case C.EntityAction_newRecurringInvoice: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_recurringInvoice, _null, state, _null).rebuild$1(new X.handleUserAction_closure2(user)), user, false); break; case C.EntityAction_newQuote: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_quote, _null, state, _null).rebuild$1(new X.handleUserAction_closure3(user)), user, false); break; case C.EntityAction_newCredit: M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, C.EntityType_credit, _null, state, _null).rebuild$1(new X.handleUserAction_closure4(user)), user, false); break; case C.EntityAction_newExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, _null).rebuild$1(new X.handleUserAction_closure5(user)), user, false); break; case C.EntityAction_newPayment: M.createEntity(_null, _null, context, F.PaymentEntity_PaymentEntity(_null, _null, state).rebuild$1(new X.handleUserAction_closure6(user)), user, false); break; case C.EntityAction_newProject: M.createEntity(_null, _null, context, A.ProjectEntity_ProjectEntity(_null, _null, state, _null).rebuild$1(new X.handleUserAction_closure7(user)), user, false); break; case C.EntityAction_newTask: M.createEntity(_null, _null, context, D.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new X.handleUserAction_closure8(user)), user, false); break; case C.EntityAction_newVendor: M.createEntity(_null, _null, context, B.VendorEntity_VendorEntity(_null, state, _null).rebuild$1(new X.handleUserAction_closure9(user)), user, false); break; case C.EntityAction_restore: t2 = userIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_users"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_user"); message = t1 == null ? "" : t1; } O.passwordCallback(false, new X.handleUserAction_closure10(new X.handleUserAction_closure11(store, context, message, userIds)), context); break; case C.EntityAction_archive: t2 = userIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_users"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_user"); message = t1 == null ? "" : t1; } O.passwordCallback(false, new X.handleUserAction_closure12(new X.handleUserAction_closure13(store, context, message, userIds)), context); break; case C.EntityAction_delete: t2 = userIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_users"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_user"); message = t1 == null ? "" : t1; } O.passwordCallback(false, new X.handleUserAction_closure14(new X.handleUserAction_closure15(store, context, message, userIds)), context); break; case C.EntityAction_newRecurringExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, C.EntityType_recurringExpense, _null, _null, state, user, _null), user, false); break; case C.EntityAction_remove: t2 = userIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "removed_users"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "removed_user"); message = t1 == null ? "" : t1; } O.confirmCallback(false, new X.handleUserAction_closure16(context, new X.handleUserAction_closure17(store, context, message, user)), context, _null, false, _null); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.userUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.StartUserMultiselect()); t1 = users.length; if (t1 === 0) break; for (_i = 0; _i < users.length; users.length === t1 || (0, H.throwConcurrentModificationError)(users), ++_i) { user = users[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.userUIState.listUIState; t3 = J.get$id$x(user); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.AddToUserMultiselect(user)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new X.RemoveFromUserMultiselect(user)); } break; case C.EntityAction_resendInvite: O.passwordCallback(false, new X.handleUserAction_closure18(store, user, context, t1), context); break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([user], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewUserList: function ViewUserList() { }, ViewUser: function ViewUser(t0) { this.userId = t0; }, EditUser: function EditUser(t0) { this.user = t0; }, UpdateUser: function UpdateUser(t0) { this.user = t0; }, LoadUserRequest: function LoadUserRequest() { }, LoadUserFailure: function LoadUserFailure(t0) { this.error = t0; }, LoadUserSuccess: function LoadUserSuccess(t0) { this.user = t0; }, LoadUsersRequest: function LoadUsersRequest() { }, LoadUsersFailure: function LoadUsersFailure(t0) { this.error = t0; }, LoadUsersSuccess: function LoadUsersSuccess(t0) { this.users = t0; }, SaveUserRequest: function SaveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.user = t1; _.password = t2; _.idToken = t3; }, SaveUserSuccess: function SaveUserSuccess(t0) { this.user = t0; }, AddUserSuccess: function AddUserSuccess(t0) { this.user = t0; }, SaveUserFailure: function SaveUserFailure() { }, ArchiveUserRequest: function ArchiveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, ArchiveUserSuccess: function ArchiveUserSuccess(t0) { this.users = t0; }, ArchiveUserFailure: function ArchiveUserFailure() { }, DeleteUserRequest: function DeleteUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, DeleteUserSuccess: function DeleteUserSuccess(t0) { this.users = t0; }, DeleteUserFailure: function DeleteUserFailure() { }, RestoreUserRequest: function RestoreUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userIds = t1; _.password = t2; _.idToken = t3; }, RestoreUserSuccess: function RestoreUserSuccess(t0) { this.users = t0; }, RestoreUserFailure: function RestoreUserFailure() { }, RemoveUserRequest: function RemoveUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userId = t1; _.password = t2; _.idToken = t3; }, RemoveUserSuccess: function RemoveUserSuccess(t0) { this.userId = t0; }, RemoveUserFailure: function RemoveUserFailure() { }, ResendInviteRequest: function ResendInviteRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.userId = t1; _.password = t2; _.idToken = t3; }, ResendInviteSuccess: function ResendInviteSuccess() { }, ResendInviteFailure: function ResendInviteFailure() { }, FilterUsers: function FilterUsers(t0) { this.filter = t0; }, SortUsers: function SortUsers(t0) { this.field = t0; }, FilterUsersByState: function FilterUsersByState(t0) { this.state = t0; }, FilterUsersByCustom1: function FilterUsersByCustom1(t0) { this.value = t0; }, FilterUsersByCustom2: function FilterUsersByCustom2(t0) { this.value = t0; }, FilterUsersByCustom3: function FilterUsersByCustom3(t0) { this.value = t0; }, FilterUsersByCustom4: function FilterUsersByCustom4(t0) { this.value = t0; }, handleUserAction_closure: function handleUserAction_closure() { }, handleUserAction_closure0: function handleUserAction_closure0(t0) { this.user = t0; }, handleUserAction_closure1: function handleUserAction_closure1(t0) { this.user = t0; }, handleUserAction_closure2: function handleUserAction_closure2(t0) { this.user = t0; }, handleUserAction_closure3: function handleUserAction_closure3(t0) { this.user = t0; }, handleUserAction_closure4: function handleUserAction_closure4(t0) { this.user = t0; }, handleUserAction_closure5: function handleUserAction_closure5(t0) { this.user = t0; }, handleUserAction_closure6: function handleUserAction_closure6(t0) { this.user = t0; }, handleUserAction_closure7: function handleUserAction_closure7(t0) { this.user = t0; }, handleUserAction_closure8: function handleUserAction_closure8(t0) { this.user = t0; }, handleUserAction_closure9: function handleUserAction_closure9(t0) { this.user = t0; }, handleUserAction_closure11: function handleUserAction_closure11(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure10: function handleUserAction_closure10(t0) { this.dispatch = t0; }, handleUserAction_closure13: function handleUserAction_closure13(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure12: function handleUserAction_closure12(t0) { this.dispatch = t0; }, handleUserAction_closure15: function handleUserAction_closure15(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.userIds = t3; }, handleUserAction_closure14: function handleUserAction_closure14(t0) { this.dispatch = t0; }, handleUserAction_closure17: function handleUserAction_closure17(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.message = t2; _.user = t3; }, handleUserAction_closure16: function handleUserAction_closure16(t0, t1) { this.context = t0; this.dispatch = t1; }, handleUserAction__closure: function handleUserAction__closure(t0) { this.dispatch = t0; }, handleUserAction_closure18: function handleUserAction_closure18(t0, t1, t2, t3) { var _ = this; _.store = t0; _.user = t1; _.context = t2; _.localization = t3; }, StartUserMultiselect: function StartUserMultiselect() { }, AddToUserMultiselect: function AddToUserMultiselect(t0) { this.entity = t0; }, RemoveFromUserMultiselect: function RemoveFromUserMultiselect(t0) { this.entity = t0; }, ClearUserMultiselect: function ClearUserMultiselect() { }, AppTextButton: function AppTextButton(t0, t1, t2, t3, t4) { var _ = this; _.label = t0; _.onPressed = t1; _.isInHeader = t2; _.color = t3; _.key = t4; }, AppForm: function AppForm(t0, t1, t2, t3, t4) { var _ = this; _.formKey = t0; _.children = t1; _.child = t2; _.focusNode = t3; _.key = t4; }, AppTabForm: function AppTabForm(t0, t1, t2, t3, t4, t5) { var _ = this; _.focusNode = t0; _.formKey = t1; _.children = t2; _.tabController = t3; _.tabBarKey = t4; _.key = t5; }, MainScreen: function MainScreen(t0) { this.key = t0; }, MainScreen_build_closure: function MainScreen_build_closure() { }, MainScreen_build__closure: function MainScreen_build__closure(t0) { this.store = t0; }, EntityScreens: function EntityScreens(t0, t1, t2) { this.entityType = t0; this.editingFilterEntity = t1; this.key = t2; }, SettingsScreens: function SettingsScreens(t0) { this.key = t0; }, ScrollableListViewBuilder$: function(itemBuilder, itemCount, padding, separatorBuilder) { return new X.ScrollableListViewBuilder(itemBuilder, separatorBuilder, itemCount, padding, null); }, ScrollableListView: function ScrollableListView(t0, t1, t2, t3, t4) { var _ = this; _.children = t0; _.scrollController = t1; _.padding = t2; _.hideMobileThumb = t3; _.key = t4; }, _ScrollableListViewState: function _ScrollableListViewState(t0) { var _ = this; _._widget = _._scrollable_listview$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ScrollableListViewBuilder: function ScrollableListViewBuilder(t0, t1, t2, t3, t4) { var _ = this; _.itemBuilder = t0; _.separatorBuilder = t1; _.itemCount = t2; _.padding = t3; _.key = t4; }, _ScrollableListViewBuilderState: function _ScrollableListViewBuilderState(t0) { var _ = this; _._widget = _._scrollable_listview$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ClientEditDesktop: function ClientEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientViewVM_ClientViewVM$fromStore: function(store) { var t4, t5, client, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).clientState.map; t2 = t2.clientUIState.selectedId; client = J.$index$asx(t5._map$_map, t2); if (client == null) client = T.ClientEntity_ClientEntity(t2, null, null); client.get$isNew(); return new X.ClientViewVM(state, client, t4.$index(t1, t3).userCompany.company, new X.ClientViewVM_ClientViewVM$fromStore_closure(new X.ClientViewVM_ClientViewVM$fromStore__handleRefresh(store, client)), new X.ClientViewVM_ClientViewVM$fromStore_closure0(store, client), new X.ClientViewVM_ClientViewVM$fromStore_closure1(store, client)); }, ClientViewScreen: function ClientViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, ClientViewScreen_build_closure0: function ClientViewScreen_build_closure0() { }, ClientViewScreen_build_closure: function ClientViewScreen_build_closure(t0) { this.$this = t0; }, ClientViewVM: function ClientViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.client = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ClientViewVM_ClientViewVM$fromStore__handleRefresh: function ClientViewVM_ClientViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore_closure: function ClientViewVM_ClientViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ClientViewVM_ClientViewVM$fromStore_closure0: function ClientViewVM_ClientViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore__closure0: function ClientViewVM_ClientViewVM$fromStore__closure0(t0) { this.context = t0; }, ClientViewVM_ClientViewVM$fromStore__closure1: function ClientViewVM_ClientViewVM$fromStore__closure1(t0) { this.context = t0; }, ClientViewVM_ClientViewVM$fromStore___closure: function ClientViewVM_ClientViewVM$fromStore___closure(t0) { this.error = t0; }, ClientViewVM_ClientViewVM$fromStore_closure1: function ClientViewVM_ClientViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.client = t1; }, ClientViewVM_ClientViewVM$fromStore__closure: function ClientViewVM_ClientViewVM$fromStore__closure(t0, t1) { this.store = t0; this.client = t1; }, CreditEditVM_CreditEditVM$fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.creditUIState, credit = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t1).userCompany.company; t2 = t2.editingItemIndex; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = J.$index$asx(t4._list, t3).creditState.map; t4 = credit.id; J.$index$asx(t3._map$_map, t4); return new X.CreditEditVM(state, t1, credit, t2, new X.CreditEditVM_CreditEditVM$fromStore_closure(store, state), new X.CreditEditVM_CreditEditVM$fromStore_closure0(store, credit), new X.CreditEditVM_CreditEditVM$fromStore_closure1(state, store)); }, CreditEditScreen: function CreditEditScreen(t0) { this.key = t0; }, CreditEditScreen_build_closure0: function CreditEditScreen_build_closure0() { }, CreditEditScreen_build_closure: function CreditEditScreen_build_closure() { }, CreditEditVM: function CreditEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, CreditEditVM_CreditEditVM$fromStore_closure: function CreditEditVM_CreditEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, CreditEditVM_CreditEditVM$fromStore__closure: function CreditEditVM_CreditEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, CreditEditVM_CreditEditVM$fromStore___closure: function CreditEditVM_CreditEditVM$fromStore___closure(t0) { this.localization = t0; }, CreditEditVM_CreditEditVM$fromStore___closure0: function CreditEditVM_CreditEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.credit = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, CreditEditVM_CreditEditVM$fromStore___closure1: function CreditEditVM_CreditEditVM$fromStore___closure1() { }, CreditEditVM_CreditEditVM$fromStore____closure: function CreditEditVM_CreditEditVM$fromStore____closure(t0) { this.error = t0; }, CreditEditVM_CreditEditVM$fromStore_closure0: function CreditEditVM_CreditEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.credit = t1; }, CreditEditVM_CreditEditVM$fromStore_closure1: function CreditEditVM_CreditEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, ExpenseScreen: function ExpenseScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseScreen_build_closure13: function ExpenseScreen_build_closure13(t0) { this.store = t0; }, ExpenseScreen_build_closure11: function ExpenseScreen_build_closure11(t0) { this.store = t0; }, ExpenseScreen_build_closure12: function ExpenseScreen_build_closure12(t0) { this.store = t0; }, ExpenseScreen_build_closure4: function ExpenseScreen_build_closure4(t0) { this.store = t0; }, ExpenseScreen_build_closure0: function ExpenseScreen_build_closure0(t0) { this.store = t0; }, ExpenseScreen_build_closure1: function ExpenseScreen_build_closure1(t0) { this.store = t0; }, ExpenseScreen_build_closure2: function ExpenseScreen_build_closure2(t0) { this.store = t0; }, ExpenseScreen_build_closure3: function ExpenseScreen_build_closure3(t0) { this.store = t0; }, ExpenseScreen_build_closure5: function ExpenseScreen_build_closure5(t0) { this.store = t0; }, ExpenseScreen_build_closure7: function ExpenseScreen_build_closure7(t0) { this.localization = t0; }, ExpenseScreen_build_closure8: function ExpenseScreen_build_closure8(t0) { this.localization = t0; }, ExpenseScreen_build_closure9: function ExpenseScreen_build_closure9(t0) { this.localization = t0; }, ExpenseScreen_build_closure6: function ExpenseScreen_build_closure6(t0) { this.store = t0; }, ExpenseScreen_build_closure: function ExpenseScreen_build_closure(t0) { this.store = t0; }, ExpenseScreen_build_closure10: function ExpenseScreen_build_closure10(t0) { this.context = t0; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore: function(store, entityType) { var t2, entity, t3, t4, t5, t6, t1 = {}, state = store.get$_store$_state(); t1.entity = null; if (entityType === C.EntityType_invoice) t2 = t1.entity = state.uiState.invoiceUIState.editing; else if (entityType === C.EntityType_quote) { entity = state.uiState.quoteUIState.editing; t1.entity = entity; t2 = entity; } else if (entityType === C.EntityType_credit) { entity = state.uiState.creditUIState.editing; t1.entity = entity; t2 = entity; } else if (entityType === C.EntityType_recurringInvoice) { entity = state.uiState.recurringInvoiceUIState.editing; t1.entity = entity; t2 = entity; } else { P.print("ERROR: entityType " + H.S(entityType) + " not handled in invoice_edit_contacts_vm"); t2 = null; } t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t3 = t3._list; t5 = J.getInterceptor$asx(t3); t6 = t5.$index(t3, t4).userCompany.company; t4 = t5.$index(t3, t4).clientState.map; t3 = t2.clientId; return new X.InvoiceEditContactsVM(state, t6, t2, J.$index$asx(t4._map$_map, t3), new X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure(t1, state, entityType, store), new X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0(t1, store, entityType)); }, InvoiceEditContactsScreen: function InvoiceEditContactsScreen(t0, t1) { this.entityType = t0; this.key = t1; }, InvoiceEditContactsScreen_build_closure0: function InvoiceEditContactsScreen_build_closure0(t0) { this.$this = t0; }, InvoiceEditContactsScreen_build_closure: function InvoiceEditContactsScreen_build_closure() { }, EntityEditContactsVM: function EntityEditContactsVM() { }, InvoiceEditContactsVM: function InvoiceEditContactsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onAddContact = t4; _.onRemoveContact = t5; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure: function InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.state = t1; _.entityType = t2; _.store = t3; }, InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0: function InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0(t0, t1, t2) { this._box_0 = t0; this.store = t1; this.entityType = t2; }, InvoiceViewDocuments: function InvoiceViewDocuments(t0, t1, t2) { this.viewModel = t0; this.invoice = t1; this.key = t2; }, InvoiceViewDocuments_build_closure: function InvoiceViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceViewDocuments_build_closure0: function InvoiceViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceViewDocuments_build_closure1: function InvoiceViewDocuments_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, ProjectListVM_fromStore: function(store) { var t3, t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.projectUIState; t2.toString; t3 = $.$get$memoizedFilteredProjectList(); t4 = state.getUISelection$1(C.EntityType_project); t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t5 = t5._list; t6 = J.getInterceptor$asx(t5); t2 = t2.listUIState; t4 = t3.call$6(t4, t6.$index(t5, t1).projectState.map, t6.$index(t5, t1).projectState.list, t2, t6.$index(t5, t1).clientState.map, t6.$index(t5, t1).userState.map); t3 = t6.$index(t5, t1).projectState.map; t6.$index(t5, t1).clientState.toString; t2 = t2.filter; t7 = t6.$index(t5, t1).userCompany.settings.getTableColumns$1(C.EntityType_project); if (t7 == null) { t6.$index(t5, t1).toString; t1 = H.setRuntimeTypeInfo(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], type$.JSArray_legacy_String); } else t1 = t7; return new X.ProjectListVM(state, t4, t3, t2, new X.ProjectListVM_fromStore_closure(new X.ProjectListVM_fromStore__handleRefresh(store)), t1, new X.ProjectListVM_fromStore_closure0(store), new X.ProjectListVM_fromStore_closure1(store)); }, ProjectListBuilder: function ProjectListBuilder(t0) { this.key = t0; }, ProjectListBuilder_build_closure: function ProjectListBuilder_build_closure() { }, ProjectListBuilder_build__closure: function ProjectListBuilder_build__closure(t0) { this.viewModel = t0; }, ProjectListVM: function ProjectListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.projectList = t1; _.projectMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, ProjectListVM_fromStore__handleRefresh: function ProjectListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ProjectListVM_fromStore_closure: function ProjectListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ProjectListVM_fromStore_closure0: function ProjectListVM_fromStore_closure0(t0) { this.store = t0; }, ProjectListVM_fromStore_closure1: function ProjectListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringInvoicePdfScreen: function RecurringInvoicePdfScreen(t0) { this.key = t0; }, RecurringInvoicePdfScreen_build_closure0: function RecurringInvoicePdfScreen_build_closure0() { }, RecurringInvoicePdfScreen_build_closure: function RecurringInvoicePdfScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoicePdfVM: function RecurringInvoicePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, invoiceReport: function(userCompany, reportsUIState, invoiceMap, clientMap, userMap, staticState) { var columns, t5, t6, t7, t8, invoice, t9, client, value, row, t10, t11, value0, value1, value2, value3, value4, value5, value6, value7, value8, t12, value9, value10, t13, t14, value11, value12, value13, t15, value14, value15, value16, value17, value18, value19, value20, value21, value22, value23, value24, value25, t16, value26, value27, value28, value29, value30, value31, value32, value33, value34, value35, value36, value37, value38, value39, value40, t17, t18, skip, t19, value41, t20, dueDate, ageInDays, currencyId, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, invoiceReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "invoice") ? J.$index$asx(reportSettings._map$_map, "invoice") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), t1 = type$.JSArray_legacy_InvoiceReportFields, defaultColumns = H.setRuntimeTypeInfo([C.InvoiceReportFields_12, C.InvoiceReportFields_4, C.InvoiceReportFields_0, C.InvoiceReportFields_1, C.InvoiceReportFields_15, C.InvoiceReportFields_16, C.InvoiceReportFields_17], t1), t2 = invoiceReportSettings.columns._list, t3 = J.getInterceptor$asx(t2), t4 = type$.legacy_InvoiceReportFields; if (t3.get$isNotEmpty(t2)) { t2 = t3.map$1$1(t2, new X.invoiceReport_closure(), t4).where$1(0, new X.invoiceReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t4); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t4); for (t2 = J.get$iterator$ax(invoiceMap.get$keys(invoiceMap)), t3 = columns._list, t4 = J.getInterceptor$ax(t3), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = invoiceMap._map$_map, t8 = J.getInterceptor$asx(t7); t2.moveNext$0();) { invoice = t8.$index(t7, t2.get$current(t2)); t9 = invoice.clientId; client = J.$index$asx(clientMap._map$_map, t9); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); value = invoice.isDeleted; if (value || client.isDeleted) continue; if (!t5.reportIncludeDrafts && invoice.statusId === "1") continue; row = H.setRuntimeTypeInfo([], t6); for (t9 = t4.get$iterator(t3), t10 = invoice.id, t11 = invoice.entityType, value0 = client.city, value1 = invoice.privateNotes, value2 = invoice.publicNotes, value3 = invoice.taxRate1, value4 = invoice.taxName1, value5 = invoice.taxRate2, value6 = invoice.taxName2, value7 = client.vatNumber, value8 = client.postalCode, t12 = client.countryId, value9 = invoice.exchangeRate, value10 = invoice.amount, t13 = invoice.statusId, t14 = t13 !== "1", value11 = invoice.taxAmount, value12 = invoice.balance, value13 = value10 - value11, t15 = invoice.createdAt, value14 = invoice.customSurcharge4, value15 = invoice.customSurcharge3, value16 = invoice.customSurcharge2, value17 = invoice.customSurcharge1, value18 = invoice.customValue4, value19 = invoice.customValue3, value20 = invoice.customValue2, value21 = invoice.customValue1, value22 = invoice.autoBill, value23 = invoice.partialDueDate, value24 = invoice.partial, value25 = invoice.dueDate, t16 = value23.length === 0, value26 = invoice.reminderLastSent, value27 = invoice.reminder3Sent, value28 = invoice.reminder2Sent, value29 = invoice.reminder1Sent, value30 = invoice.date, value31 = invoice.poNumber, value32 = invoice.discount, value33 = invoice.number, value34 = client.shippingAddress2, value35 = client.shippingAddress1, value36 = client.address2, value37 = client.address1, value38 = client.balance, value39 = client.displayName, value40 = value10 / value9, t17 = client.settings, t15 *= 1000, t18 = t5.settings, skip = false; t9.moveNext$0();) { t19 = t9.get$current(t9); switch (t19) { case C.InvoiceReportFields_0: value41 = value10; break; case C.InvoiceReportFields_1: value41 = t14 ? value12 : value10; break; case C.InvoiceReportFields_2: value41 = value40; break; case C.InvoiceReportFields_3: value41 = (t14 ? value12 : value10) / value9; break; case C.InvoiceReportFields_4: value41 = value39; break; case C.InvoiceReportFields_5: value41 = value38; break; case C.InvoiceReportFields_6: value41 = value37; break; case C.InvoiceReportFields_7: value41 = value36; break; case C.InvoiceReportFields_8: value41 = value35; break; case C.InvoiceReportFields_9: value41 = value34; break; case C.InvoiceReportFields_11: value41 = C.Map_j34mP.$index(0, t13); if (value41 == null) value41 = ""; break; case C.InvoiceReportFields_12: value41 = value33; break; case C.InvoiceReportFields_13: value41 = value32; break; case C.InvoiceReportFields_14: value41 = value31; break; case C.InvoiceReportFields_15: value41 = value30; break; case C.InvoiceReportFields_37: value41 = value29; break; case C.InvoiceReportFields_38: value41 = value28; break; case C.InvoiceReportFields_39: value41 = value27; break; case C.InvoiceReportFields_40: value41 = value26; break; case C.InvoiceReportFields_17: if (invoice.get$isPastDue()) { t20 = Date.now(); dueDate = P.DateTime_tryParse(t16 ? value25 : value23); ageInDays = dueDate != null ? C.JSInt_methods._tdivFast$1(1000 * (t20 - dueDate._value), 864e8) : 0; } else ageInDays = 0; value41 = ageInDays; break; case C.InvoiceReportFields_16: value41 = value25; break; case C.InvoiceReportFields_18: value41 = value24; break; case C.InvoiceReportFields_19: value41 = value23; break; case C.InvoiceReportFields_20: value41 = value22; break; case C.InvoiceReportFields_21: value41 = value21; break; case C.InvoiceReportFields_22: value41 = value20; break; case C.InvoiceReportFields_23: value41 = value19; break; case C.InvoiceReportFields_24: value41 = value18; break; case C.InvoiceReportFields_25: value41 = invoice.get$hasExpenses(); break; case C.InvoiceReportFields_26: value41 = invoice.get$hasTasks(); break; case C.InvoiceReportFields_27: value41 = value17; break; case C.InvoiceReportFields_28: value41 = value16; break; case C.InvoiceReportFields_29: value41 = value15; break; case C.InvoiceReportFields_30: value41 = value14; break; case C.InvoiceReportFields_31: t20 = new P.DateTime(t15, false); t20.DateTime$_withValue$2$isUtc(t15, false); value41 = t20.toIso8601String$0(); break; case C.InvoiceReportFields_32: t20 = new P.DateTime(t15, false); t20.DateTime$_withValue$2$isUtc(t15, false); value41 = t20.toIso8601String$0(); break; case C.InvoiceReportFields_33: value41 = value; break; case C.InvoiceReportFields_34: value41 = value11; break; case C.InvoiceReportFields_35: value41 = value13; break; case C.InvoiceReportFields_36: t20 = t14 ? value12 : value10; value41 = t20 - value11 * (t14 ? value12 : value10) / value10; break; case C.InvoiceReportFields_41: value41 = value9; break; case C.InvoiceReportFields_10: t20 = J.$index$asx(staticState.countryMap._map$_map, t12); value41 = t20 == null ? _null : t20.name; if (value41 == null) value41 = ""; break; case C.InvoiceReportFields_46: value41 = value8; break; case C.InvoiceReportFields_44: value41 = value7; break; case C.InvoiceReportFields_50: value41 = value4; break; case C.InvoiceReportFields_47: value41 = value3; break; case C.InvoiceReportFields_51: value41 = value6; break; case C.InvoiceReportFields_48: value41 = value5; break; case C.InvoiceReportFields_52: value41 = value4; break; case C.InvoiceReportFields_49: value41 = value3; break; case C.InvoiceReportFields_42: value41 = value2; break; case C.InvoiceReportFields_43: value41 = value1; break; case C.InvoiceReportFields_45: value41 = value0; break; default: value41 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t19), _null, reportsUIState, userCompany, value41)) skip = true; t20 = J.getInterceptor$(value41); if (t20.get$runtimeType(value41) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value41, t11, t10)); else if (t19 === C.InvoiceReportFields_17) row.push(new A.ReportAgeValue(value41, t17.currencyId, t11, t10)); else if (t20.get$runtimeType(value41) === C.Type_double_K1J || t20.get$runtimeType(value41) === C.Type_int_tHn) { currencyId = t17.currencyId; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.InvoiceReportFields_2, C.InvoiceReportFields_3], t1), t19)) { currencyId = t18.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value41, _null, currencyId, value9, t11, t10)); } else row.push(new A.ReportStringValue(value41, t11, t10)); } if (!skip) data.push(row); } selectedColumns = t4.map$1$1(t3, new X.invoiceReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new X.invoiceReport_closure2(invoiceReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_InvoiceReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_PEP, new X.invoiceReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new X.invoiceReport_closure4(), t1), true, t2), data, true); }, InvoiceReportFields: function InvoiceReportFields(t0) { this._invoice_report$_name = t0; }, memoizedInvoiceReport_closure: function memoizedInvoiceReport_closure() { }, invoiceReport_closure: function invoiceReport_closure() { }, invoiceReport_closure0: function invoiceReport_closure0() { }, invoiceReport_closure1: function invoiceReport_closure1() { }, invoiceReport_closure2: function invoiceReport_closure2(t0, t1) { this.invoiceReportSettings = t0; this.selectedColumns = t1; }, invoiceReport_closure3: function invoiceReport_closure3() { }, invoiceReport_closure4: function invoiceReport_closure4() { }, paymentTaxReport: function(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { var columns, t4, t5, t6, payment, client, t7, t8, t9, t10, precision, value, value0, t11, t12, invoice, multiplier, taxes, t13, t14, value1, t15, value2, value3, value4, t16, row, taxName, taxRate, t17, skip, t18, value5, t19, _null = null, _s11_ = "payment_tax", data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, taxRateReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s11_) ? J.$index$asx(reportSettings._map$_map, _s11_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.TaxRateReportFields_5, C.TaxRateReportFields_7, C.TaxRateReportFields_8, C.TaxRateReportFields_2, C.TaxRateReportFields_3, C.TaxRateReportFields_1, C.TaxRateReportFields_4], type$.JSArray_legacy_TaxRateReportFields_2), t1 = taxRateReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_TaxRateReportFields_2; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new X.paymentTaxReport_closure(), t3).where$1(0, new X.paymentTaxReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(paymentMap.get$keys(paymentMap)), t2 = paymentMap._map$_map, t3 = J.getInterceptor$asx(t2), t4 = columns._list, t5 = J.getInterceptor$ax(t4), t6 = type$.JSArray_legacy_ReportElement; t1.moveNext$0();) { payment = t3.$index(t2, t1.get$current(t1)); if (payment == null) payment = F.PaymentEntity_PaymentEntity(_null, _null, _null); if (!payment.isDeleted) { client = J.$index$asx(clientMap._map$_map, payment.clientId); t7 = staticState.currencyMap; t8 = client.settings.currencyId; t7 = t7._map$_map; t9 = J.getInterceptor$asx(t7); t10 = t9.$index(t7, t8); precision = t10 == null ? _null : t10.precision; if (precision == null) precision = 2; for (t10 = J.get$iterator$ax(payment.paymentables._list), value = payment.date, value0 = client.displayName; t10.moveNext$0();) { t11 = t10.get$current(t10); t12 = t11.invoiceId; if (((t12 == null ? "" : t12).length === 0 ? C.EntityType_credit : C.EntityType_invoice) === C.EntityType_invoice) { invoice = J.$index$asx(invoiceMap._map$_map, t12); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); multiplier = 1; } else { t12 = t11.creditId; invoice = J.$index$asx(creditMap._map$_map, t12); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); multiplier = -1; } if (invoice.statusId !== "1" && !invoice.isDeleted) { taxes = invoice.getTaxes$1(precision); for (t12 = taxes.get$keys(taxes), t12 = t12.get$iterator(t12), t13 = invoice.id, t14 = invoice.entityType, t11 = t11.amount, value1 = t11 * multiplier, t15 = invoice.amount, value2 = t15 * t11 / t15 * multiplier, value3 = invoice.date, value4 = invoice.number; t12.moveNext$0();) { t16 = t12.get$current(t12); row = H.setRuntimeTypeInfo([], t6); taxName = J.$index$asx(taxes.$index(0, t16), "name"); taxRate = J.$index$asx(taxes.$index(0, t16), "rate"); if (taxRate == null || taxRate === 0) continue; for (t17 = t5.get$iterator(t4), skip = false; t17.moveNext$0();) { t18 = t17.get$current(t17); switch (t18) { case C.TaxRateReportFields_0: value5 = value0; break; case C.TaxRateReportFields_1: value5 = value4; break; case C.TaxRateReportFields_3: value5 = value3; break; case C.TaxRateReportFields_4: value5 = value; break; case C.TaxRateReportFields_2: value5 = value2; break; case C.TaxRateReportFields_5: value5 = taxName; break; case C.TaxRateReportFields_6: value5 = taxRate; break; case C.TaxRateReportFields_7: t19 = J.$index$asx(taxes.$index(0, t16), "amount"); value5 = J.$mul$ns(J.$div$n(J.$mul$ns(t19 == null ? 0 : t19, t11), t15), multiplier); break; case C.TaxRateReportFields_8: t19 = J.$index$asx(taxes.$index(0, t16), "paid"); value5 = J.$mul$ns(J.$div$n(J.$mul$ns(t19 == null ? 0 : t19, t11), t15), multiplier); break; case C.TaxRateReportFields_9: value5 = value1; break; case C.TaxRateReportFields_10: t19 = t9.$index(t7, t8); value5 = t19 == null ? _null : t19.name; if (value5 == null) { t19 = t9.$index(t7, t8); value5 = t19 == null ? _null : t19.name; } break; default: value5 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t18), _null, reportsUIState, userCompany, value5)) skip = true; t18 = J.getInterceptor$(value5); if (t18.get$runtimeType(value5) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value5, t14, t13)); else if (t18.get$runtimeType(value5) === C.Type_double_K1J || t18.get$runtimeType(value5) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value5, _null, t8, _null, t14, t13)); else row.push(new A.ReportStringValue(value5, t14, t13)); } if (!skip) data.push(row); } } } } } t1 = type$.legacy_String; C.JSArray_methods.sort$1(data, new X.paymentTaxReport_closure1(taxRateReportSettings, t5.map$1$1(t4, new X.paymentTaxReport_closure2(), t1).toList$0(0))); t2 = type$.MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String_2; t3 = t2._eval$1("ListIterable.E"); t6 = P.List_List$of(new H.MappedListIterable(C.List_QsP, new X.paymentTaxReport_closure3(), t2), true, t3); return new A.ReportResult(t5.map$1$1(t4, new X.paymentTaxReport_closure4(), t1).toList$0(0), t6, P.List_List$of(new H.MappedListIterable(defaultColumns, new X.paymentTaxReport_closure5(), t2), true, t3), data, true); }, TaxRateReportFields0: function TaxRateReportFields0(t0) { this._payment_tax_report$_name = t0; }, memoizedPaymentTaxReport_closure: function memoizedPaymentTaxReport_closure() { }, paymentTaxReport_closure: function paymentTaxReport_closure() { }, paymentTaxReport_closure0: function paymentTaxReport_closure0() { }, paymentTaxReport_closure2: function paymentTaxReport_closure2() { }, paymentTaxReport_closure1: function paymentTaxReport_closure1(t0, t1) { this.taxRateReportSettings = t0; this.selectedColumns = t1; }, paymentTaxReport_closure3: function paymentTaxReport_closure3() { }, paymentTaxReport_closure4: function paymentTaxReport_closure4() { }, paymentTaxReport_closure5: function paymentTaxReport_closure5() { }, CreditCardsAndBanks: function CreditCardsAndBanks(t0) { this.key = t0; }, _CreditCardsAndBanksState: function _CreditCardsAndBanksState(t0, t1, t2, t3) { var _ = this; _._credit_cards_and_banks$_controller = null; _._credit_cards_and_banks$_nameController = t0; _._credit_cards_and_banks$_controllers = t1; _.SingleTickerProviderStateMixin__ticker = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _CreditCardsAndBanksState_dispose_closure: function _CreditCardsAndBanksState_dispose_closure(t0) { this.$this = t0; }, _CreditCardsAndBanksState_didChangeDependencies_closure: function _CreditCardsAndBanksState_didChangeDependencies_closure(t0) { this.$this = t0; }, _CreditCardsAndBanksState_didChangeDependencies_closure0: function _CreditCardsAndBanksState_didChangeDependencies_closure0(t0) { this.$this = t0; }, __CreditCardsAndBanksState_State_SingleTickerProviderStateMixin: function __CreditCardsAndBanksState_State_SingleTickerProviderStateMixin() { }, SettingsWizard: function SettingsWizard(t0, t1) { this.user = t0; this.key = t1; }, _SettingsWizardState: function _SettingsWizardState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._settings_wizard$_focusNode = t0; _._settings_wizard$_debouncer = t1; _._settings_wizard$_isCheckingSubdomain = _._settings_wizard$_isSubdomainUnique = _._settings_wizard$_isSaving = _._settings_wizard$_autoValidate = false; _._settings_wizard$_languageId = _._settings_wizard$_currencyId = "1"; _._settings_wizard$_nameController = t2; _._settings_wizard$_firstNameController = t3; _._settings_wizard$_lastNameController = t4; _._settings_wizard$_subdomainController = t5; _._settings_wizard$_webClient = t6; _._settings_wizard$_controllers = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; }, _SettingsWizardState_dispose_closure: function _SettingsWizardState_dispose_closure() { }, _SettingsWizardState__validateSubdomain_closure: function _SettingsWizardState__validateSubdomain_closure(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure: function _SettingsWizardState__validateSubdomain__closure(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure0: function _SettingsWizardState__validateSubdomain__closure0(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure1: function _SettingsWizardState__validateSubdomain__closure1(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain___closure0: function _SettingsWizardState__validateSubdomain___closure0(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain__closure2: function _SettingsWizardState__validateSubdomain__closure2(t0) { this.$this = t0; }, _SettingsWizardState__validateSubdomain___closure: function _SettingsWizardState__validateSubdomain___closure(t0) { this.$this = t0; }, _SettingsWizardState__onRefreshPressed_closure: function _SettingsWizardState__onRefreshPressed_closure(t0, t1, t2) { this.$this = t0; this.store = t1; this.localization = t2; }, _SettingsWizardState__onRefreshPressed__closure0: function _SettingsWizardState__onRefreshPressed__closure0(t0) { this.$this = t0; }, _SettingsWizardState__onRefreshPressed_closure0: function _SettingsWizardState__onRefreshPressed_closure0(t0) { this.$this = t0; }, _SettingsWizardState__onRefreshPressed__closure: function _SettingsWizardState__onRefreshPressed__closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed_closure: function _SettingsWizardState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _SettingsWizardState__onSavePressed_closure0: function _SettingsWizardState__onSavePressed_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.navigator = t1; _.store = t2; _.state = t3; }, _SettingsWizardState__onSavePressed__closure: function _SettingsWizardState__onSavePressed__closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.navigator = t2; _.store = t3; _.state = t4; }, _SettingsWizardState__onSavePressed___closure0: function _SettingsWizardState__onSavePressed___closure0(t0) { this.navigator = t0; }, _SettingsWizardState__onSavePressed___closure1: function _SettingsWizardState__onSavePressed___closure1(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed____closure: function _SettingsWizardState__onSavePressed____closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed___closure2: function _SettingsWizardState__onSavePressed___closure2(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure0: function _SettingsWizardState__onSavePressed__closure0(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed___closure: function _SettingsWizardState__onSavePressed___closure(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure1: function _SettingsWizardState__onSavePressed__closure1(t0) { this.$this = t0; }, _SettingsWizardState__onSavePressed__closure2: function _SettingsWizardState__onSavePressed__closure2(t0) { this.$this = t0; }, _SettingsWizardState_build_closure: function _SettingsWizardState_build_closure(t0) { this.localization = t0; }, _SettingsWizardState_build_closure0: function _SettingsWizardState_build_closure0(t0) { this.localization = t0; }, _SettingsWizardState_build_closure1: function _SettingsWizardState_build_closure1(t0) { this.localization = t0; }, _SettingsWizardState_build_closure2: function _SettingsWizardState_build_closure2(t0) { this.$this = t0; }, _SettingsWizardState_build__closure1: function _SettingsWizardState_build__closure1(t0, t1) { this.$this = t0; this.currency = t1; }, _SettingsWizardState_build_closure3: function _SettingsWizardState_build_closure3(t0) { this.localization = t0; }, _SettingsWizardState_build_closure4: function _SettingsWizardState_build_closure4(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, _SettingsWizardState_build__closure0: function _SettingsWizardState_build__closure0(t0, t1) { this.$this = t0; this.language = t1; }, _SettingsWizardState_build_closure5: function _SettingsWizardState_build_closure5(t0) { this.localization = t0; }, _SettingsWizardState_build_closure6: function _SettingsWizardState_build_closure6(t0, t1, t2) { this.localization = t0; this.state = t1; this.store = t2; }, _SettingsWizardState_build__closure: function _SettingsWizardState_build__closure(t0, t1) { this.store = t0; this.context = t1; }, _SettingsWizardState_build_closure8: function _SettingsWizardState_build_closure8(t0, t1) { this.$this = t0; this.localization = t1; }, _SettingsWizardState_build_closure7: function _SettingsWizardState_build_closure7(t0) { this.$this = t0; }, _SettingsWizardState_build_closure9: function _SettingsWizardState_build_closure9(t0) { this.context = t0; }, TaskEdit: function TaskEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditState: function _TaskEditState(t0, t1) { var _ = this; _._task_edit$_controller = _._task_edit$_timer = null; _._task_edit$_updatedAt = 0; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaskEditState_initState_closure: function _TaskEditState_initState_closure(t0) { this.$this = t0; }, _TaskEditState_initState__closure: function _TaskEditState_initState__closure() { }, _TaskEditState_build_closure2: function _TaskEditState_build_closure2(t0) { this.viewModel = t0; }, _TaskEditState_build_closure3: function _TaskEditState_build_closure3(t0) { this.viewModel = t0; }, _TaskEditState_build_closure: function _TaskEditState_build_closure(t0) { this.store = t0; }, _TaskEditState_build_closure0: function _TaskEditState_build_closure0(t0, t1, t2) { this.localization = t0; this.task = t1; this.context = t2; }, _TaskEditState_build_closure1: function _TaskEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TaskEditState_build__closure: function _TaskEditState_build__closure(t0) { this.$this = t0; }, __TaskEditState_State_SingleTickerProviderStateMixin: function __TaskEditState_State_SingleTickerProviderStateMixin() { }, TaxRateListVM_fromStore: function(store) { var t4, t5, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userCompany; t2 = t2.taxRateUIState; t2.toString; t2 = t2.listUIState; return new X.TaxRateListVM(state, t5, $.$get$memoizedFilteredTaxRateList().call$4(state.getUISelection$1(C.EntityType_taxRate), t4.$index(t1, t3).taxRateState.map, t4.$index(t1, t3).taxRateState.list, t2), t4.$index(t1, t3).taxRateState.map, t2.filter, new X.TaxRateListVM_fromStore_closure(new X.TaxRateListVM_fromStore__handleRefresh(store)), new X.TaxRateListVM_fromStore_closure0(store), new X.TaxRateListVM_fromStore_closure1(store)); }, TaxRateListBuilder: function TaxRateListBuilder(t0) { this.key = t0; }, TaxRateListBuilder_build_closure: function TaxRateListBuilder_build_closure() { }, TaxRateListBuilder_build__closure: function TaxRateListBuilder_build__closure(t0) { this.viewModel = t0; }, TaxRateListVM: function TaxRateListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.userCompany = t1; _.taxRateList = t2; _.taxRateMap = t3; _.filter = t4; _.onRefreshed = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TaxRateListVM_fromStore__handleRefresh: function TaxRateListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaxRateListVM_fromStore_closure: function TaxRateListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaxRateListVM_fromStore_closure0: function TaxRateListVM_fromStore_closure0(t0) { this.store = t0; }, TaxRateListVM_fromStore_closure1: function TaxRateListVM_fromStore_closure1(t0) { this.store = t0; }, UserViewVM_UserViewVM$fromStore: function(store) { var t4, t5, user, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userState.map; t2 = t2.userUIState.selectedId; user = J.$index$asx(t5._map$_map, t2); if (user == null) user = B.UserEntity_UserEntity(t2, null, null); t1 = t4.$index(t1, t3).userCompany.company; user.get$isNew(); return new X.UserViewVM(state, user, t1, new X.UserViewVM_UserViewVM$fromStore_closure(store)); }, UserViewScreen: function UserViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, UserViewScreen_build_closure0: function UserViewScreen_build_closure0() { }, UserViewScreen_build_closure: function UserViewScreen_build_closure(t0) { this.$this = t0; }, UserViewVM: function UserViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.user = t1; _.company = t2; _.onBackPressed = t3; }, UserViewVM_UserViewVM$fromStore_closure: function UserViewVM_UserViewVM$fromStore_closure(t0) { this.store = t0; }, WebhookListItem: function WebhookListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.webhook = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, WebhookListItem_build_closure1: function WebhookListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, WebhookListItem_build_closure0: function WebhookListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, WebhookListItem_build_closure: function WebhookListItem_build_closure(t0) { this.$this = t0; }, WebhookListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.webhookUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredWebhookList().call$4(state.getUISelection$1(C.EntityType_webhook), t4.$index(t1, t3).webhookState.map, t4.$index(t1, t3).webhookState.list, t2); t6 = t4.$index(t1, t3).webhookState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_webhook); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); } else t1 = t7; return new X.WebhookListVM(state, t5, t6, t2, new X.WebhookListVM_fromStore_closure(new X.WebhookListVM_fromStore__handleRefresh(store)), t1, new X.WebhookListVM_fromStore_closure0(store), new X.WebhookListVM_fromStore_closure1(store)); }, WebhookListBuilder: function WebhookListBuilder(t0) { this.key = t0; }, WebhookListBuilder_build_closure: function WebhookListBuilder_build_closure() { }, WebhookListBuilder_build__closure: function WebhookListBuilder_build__closure(t0) { this.viewModel = t0; }, WebhookListVM: function WebhookListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.webhookList = t1; _.webhookMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, WebhookListVM_fromStore__handleRefresh: function WebhookListVM_fromStore__handleRefresh(t0) { this.store = t0; }, WebhookListVM_fromStore_closure: function WebhookListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, WebhookListVM_fromStore_closure0: function WebhookListVM_fromStore_closure0(t0) { this.store = t0; }, WebhookListVM_fromStore_closure1: function WebhookListVM_fromStore_closure1(t0) { this.store = t0; }, AppLocalization_createLocale: function(locale) { var parts, t1; if (!C.JSArray_methods.contains$1(C.List_Hn1, locale)) return new P.Locale("en", null); parts = locale.split("_"); t1 = parts[0]; return new P.Locale(t1, parts.length > 1 ? parts[1] : null); }, AppLocalization: function AppLocalization(t0) { this.localeCode = t0; }, AppLocalizationsDelegate: function AppLocalizationsDelegate() { }, _AppLocalization_LocaleCodeAware_LocalizationsProvider: function _AppLocalization_LocaleCodeAware_LocalizationsProvider() { }, PdfView$: function(controller, onDocumentLoaded, onPageChanged) { return new X.PdfView(controller, onPageChanged, onDocumentLoaded, null); }, PdfView__render: function(page) { var t1 = page.width; return page.render$4$backgroundColor$format$height$width(0, "#ffffff", C.PdfPageFormat_0, page.height * 2, t1 * 2); }, PdfView__pageBuilder: function(pageImage, index, $document) { var _s9_ = "contained", t1 = $document.id; return new M.PhotoViewGalleryPageOptions(new V.PdfPageImageProvider(pageImage, index, t1), new F.PhotoViewHeroAttributes(H.S(t1) + "-" + H.S(index)), new M.PhotoViewComputedScale(_s9_, 1), new M.PhotoViewComputedScale(_s9_, 3), new M.PhotoViewComputedScale(_s9_, 1)); }, PdfController: function PdfController(t0) { var _ = this; _.document = t0; _._document = _._native_pdf_view$_pageController = _._pdfViewState = null; }, PdfView: function PdfView(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.onPageChanged = t1; _.onDocumentLoaded = t2; _.key = t3; }, _PdfViewState: function _PdfViewState(t0, t1, t2) { var _ = this; _._native_pdf_view$_pages = t0; _.___PdfViewState__loadingState = $; _._loadingError = null; _.SingleTickerProviderStateMixin__ticker = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PdfViewState__getPageImage_closure: function _PdfViewState__getPageImage_closure(t0, t1) { this.$this = t0; this.pageIndex = t1; }, _PdfViewState__changeLoadingState_closure: function _PdfViewState__changeLoadingState_closure(t0, t1) { this.$this = t0; this.state = t1; }, _PdfViewState__buildLoaded_closure: function _PdfViewState__buildLoaded_closure(t0) { this.$this = t0; }, _PdfViewState__buildLoaded_closure0: function _PdfViewState__buildLoaded_closure0(t0) { this.$this = t0; }, _PdfViewState__buildLoaded_closure1: function _PdfViewState__buildLoaded_closure1(t0) { this.$this = t0; }, _PdfViewState_build_closure: function _PdfViewState_build_closure() { }, _PdfViewLoadingState: function _PdfViewLoadingState(t0) { this._native_pdf_view$_name = t0; }, __PdfViewState_State_SingleTickerProviderStateMixin: function __PdfViewState_State_SingleTickerProviderStateMixin() { }, ParsedPath_ParsedPath$parse: function(path, style) { var t1, parts, separators, start, i, root = style.getRoot$1(path), isRootRelative = style.isRootRelative$1(path); if (root != null) path = J.substring$1$s(path, root.length); t1 = type$.JSArray_String; parts = H.setRuntimeTypeInfo([], t1); separators = H.setRuntimeTypeInfo([], t1); t1 = path.length; if (t1 !== 0 && style.isSeparator$1(C.JSString_methods._codeUnitAt$1(path, 0))) { separators.push(path[0]); start = 1; } else { separators.push(""); start = 0; } for (i = start; i < t1; ++i) if (style.isSeparator$1(C.JSString_methods._codeUnitAt$1(path, i))) { parts.push(C.JSString_methods.substring$2(path, start, i)); separators.push(path[i]); start = i + 1; } if (start < t1) { parts.push(C.JSString_methods.substring$1(path, start)); separators.push(""); } return new X.ParsedPath(style, root, isRootRelative, parts, separators); }, ParsedPath: function ParsedPath(t0, t1, t2, t3, t4) { var _ = this; _.style = t0; _.root = t1; _.isRootRelative = t2; _.parts = t3; _.separators = t4; }, PathException$: function(message) { return new X.PathException(message); }, PathException: function PathException(t0) { this.message = t0; }, MiddlewareClass: function MiddlewareClass() { }, Store: function Store(t0, t1, t2) { var _ = this; _.reducer = t0; _._changeController = t1; _.__Store__dispatchers = _.__Store__state = $; _.$ti = t2; }, Store__createReduceAndNotify_closure: function Store__createReduceAndNotify_closure(t0, t1) { this.$this = t0; this.distinct = t1; }, Store__createDispatchers_closure: function Store__createDispatchers_closure(t0, t1, t2) { this.$this = t0; this.nextMiddleware = t1; this.next = t2; }, SourceSpanWithContext$: function(start, end, text, _context) { var t1 = new X.SourceSpanWithContext(_context, start, end, text); t1.SourceSpanBase$3(start, end, text); if (!C.JSString_methods.contains$1(_context, text)) H.throwExpression(P.ArgumentError$('The context line "' + _context + '" must contain "' + text + '".')); if (B.findLineStart(_context, text, start.get$column()) == null) H.throwExpression(P.ArgumentError$('The span text "' + text + '" must start at column ' + (start.get$column() + 1) + ' in a line within "' + _context + '".')); return t1; }, SourceSpanWithContext: function SourceSpanWithContext(t0, t1, t2, t3) { var _ = this; _._span_with_context$_context = t0; _.start = t1; _.end = t2; _.text = t3; }, StringScanner: function StringScanner(t0, t1) { var _ = this; _.sourceUrl = t0; _.string = t1; _._string_scanner$_position = 0; _._lastMatchPosition = _._lastMatch = null; }, EnMessages: function EnMessages() { }, EnShortMessages: function EnShortMessages() { }, getCrc32: function(array, crc) { var ip, ip0, t1 = J.getInterceptor$asx(array), len = t1.get$length(array); crc ^= 4294967295; for (ip = 0; len >= 8;) { ip0 = ip + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; ip0 = ip + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; ip = ip0 + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip0)) & 255] ^ crc >>> 8; len -= 8; } if (len > 0) do { ip0 = ip + 1; crc = C.List_B8J[(crc ^ t1.$index(array, ip)) & 255] ^ crc >>> 8; if (--len, len > 0) { ip = ip0; continue; } else break; } while (true); return (crc ^ 4294967295) >>> 0; }, HapticFeedback_vibrate: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_vibrate = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$1("HapticFeedback.vibrate", type$.void), $async$HapticFeedback_vibrate); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$HapticFeedback_vibrate, $async$completer); }, HapticFeedback_lightImpact: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_lightImpact = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("HapticFeedback.vibrate", "HapticFeedbackType.lightImpact", type$.void), $async$HapticFeedback_lightImpact); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$HapticFeedback_lightImpact, $async$completer); }, HapticFeedback_mediumImpact: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$HapticFeedback_mediumImpact = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("HapticFeedback.vibrate", "HapticFeedbackType.mediumImpact", type$.void), $async$HapticFeedback_mediumImpact); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$HapticFeedback_mediumImpact, $async$completer); }, KeyboardVisibility__onKeyboardEvent: function(arg) { var t1 = H._asIntS(arg) === 1; $.KeyboardVisibility_isVisible = t1; $.$get$KeyboardVisibility__onChangeController().add$1(0, t1); }, _emptySymbols: function() { return P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.DateSymbols); }, _emptyPatterns: function() { return P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Map_String_String); } }, M = { SetMultimapBuilder_SetMultimapBuilder: function($K, $V) { var t1 = new M.SetMultimapBuilder($K._eval$1("@<0>")._bind$1($V)._eval$1("SetMultimapBuilder<1,2>")); t1.replace$1(0, C.Map_empty0); return t1; }, BuiltSetMultimap: function BuiltSetMultimap() { }, BuiltSetMultimap_hashCode_closure: function BuiltSetMultimap_hashCode_closure(t0) { this.$this = t0; }, BuiltSetMultimap_forEach_closure: function BuiltSetMultimap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, BuiltSetMultimap_forEach__closure: function BuiltSetMultimap_forEach__closure(t0, t1, t2) { this.$this = t0; this.f = t1; this.key = t2; }, _BuiltSetMultimap: function _BuiltSetMultimap(t0, t1, t2) { var _ = this; _._set_multimap$_map = t0; _._emptySet = t1; _._set_multimap$_keys = _._set_multimap$_hashCode = null; _.$ti = t2; }, SetMultimapBuilder: function SetMultimapBuilder(t0) { var _ = this; _.__SetMultimapBuilder__builtMap = $; _._builtMapOwner = null; _.__SetMultimapBuilder__builderMap = $; _.$ti = t0; }, SetMultimapBuilder_replace_closure: function SetMultimapBuilder_replace_closure(t0) { this.multimap = t0; }, StringSerializer: function StringSerializer(t0) { this.types = t0; }, NumericAxis$: function() { var t1 = K.LinearScale$(), formatter = B.NumericTickFormatter__getFormatter(S.NumberFormat_NumberFormat$decimalPattern(null)), t2 = new B.NumericTickFormatter(formatter), t3 = new A.NumericTickProvider(); return new M.NumericAxis(t1, t1, t3, t3, t2, t2, P.LinkedHashMap_LinkedHashMap$_empty(type$.num, type$.String), H.setRuntimeTypeInfo([], type$.JSArray_AxisTicks_num)); }, OrdinalAxis$: function() { var t1, t2; $.$get$StyleFactory__styleFactory().toString; t1 = type$.String; t2 = new E.SimpleOrdinalScale(new B.StepSizeConfig(), new A.OrdinalScaleDomainInfo(P.HashMap_HashMap(null, null, null, t1, type$.int), H.setRuntimeTypeInfo([], type$.JSArray_String)), new B.ScaleOutputExtent(0, 1), 1, 0, new B.RangeBandConfig(C.RangeBandType_4, 0.65)); return new M.OrdinalAxis(t2, t2, C.C_OrdinalTickProvider, C.C_OrdinalTickProvider, C.C_OrdinalTickFormatter, C.C_OrdinalTickFormatter, P.LinkedHashMap_LinkedHashMap$_empty(t1, t1), H.setRuntimeTypeInfo([], type$.JSArray_AxisTicks_String)); }, AxisOrientation: function AxisOrientation(t0) { this._axis$_name = t0; }, ImmutableAxis: function ImmutableAxis() { }, Axis: function Axis() { }, Axis__updateAxisTicks_closure: function Axis__updateAxisTicks_closure(t0, t1) { this.$this = t0; this.animatedTick = t1; }, Axis__updateAxisTicks_closure0: function Axis__updateAxisTicks_closure0(t0, t1) { this.$this = t0; this.scale = t1; }, Axis_paint_closure: function Axis_paint_closure(t0) { this.$this = t0; }, NumericAxis: function NumericAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, OrdinalAxis: function OrdinalAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, OrdinalTickProvider: function OrdinalTickProvider() { }, LayoutConfig$: function(bottomSpec, leftSpec, rightSpec, topSpec) { var t1 = leftSpec == null ? C.MarginSpec_null_null_null_50 : leftSpec, t2 = rightSpec == null ? C.MarginSpec_null_null_null_50 : rightSpec, t3 = topSpec == null ? C.MarginSpec_null_null_null_50 : topSpec; return new M.LayoutConfig(t1, t2, t3, bottomSpec == null ? C.MarginSpec_null_null_null_50 : bottomSpec); }, MarginSpec_MarginSpec$fromPixel: function(minPixel) { return new M.MarginSpec(minPixel, null, null, null); }, LayoutConfig: function LayoutConfig(t0, t1, t2, t3) { var _ = this; _.leftSpec = t0; _.rightSpec = t1; _.topSpec = t2; _.bottomSpec = t3; }, MarginSpec: function MarginSpec(t0, t1, t2, t3) { var _ = this; _._minPixel = t0; _._maxPixel = t1; _._minPercent = t2; _._maxPercent = t3; }, TimeSeriesChart: function TimeSeriesChart(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.dateTimeFactory = t0; _.vertical = t1; _._domainAxis = null; _._newDomainAxis = t2; _._newPrimaryMeasureAxisSpec = _._primaryMeasureAxisSpec = _._newDomainAxisSpec = _._domainAxisSpec = null; _._primaryMeasureAxis = t3; _._newSecondaryMeasureAxisSpec = _._secondaryMeasureAxisSpec = null; _._secondaryMeasureAxis = t4; _._newDisjointMeasureAxesSpec = _._disjointMeasureAxesSpec = null; _._disjointMeasureAxes = t5; _._useSecondaryMeasureAxis = _._usePrimaryMeasureAxis = _.flipVerticalAxisOutput = false; _.__BaseChart_context = $; _.graphicsFactory = null; _._layoutManager = t6; _._chartHeight = _._chartWidth = null; _.transition = t7; _.animationPercent = 0; _._animationsTemporarilyDisabled = false; _.__BaseChart__originalSeriesList = $; _._currentSeriesList = null; _._usingRenderers = t8; _._rendererToSeriesList = null; _._seriesRenderers = t9; _._behaviorRoleMap = t10; _._behaviorStack = t11; _._behaviorTappableMap = t12; _._gestureProxy = t13; _._selectionModels = t14; _._lifecycleListeners = t15; }, MaterialPalette__orderedPalettes_closure: function MaterialPalette__orderedPalettes_closure() { }, MaterialPalette__orderedPalettes_closure0: function MaterialPalette__orderedPalettes_closure0() { }, MaterialPalette__orderedPalettes_closure1: function MaterialPalette__orderedPalettes_closure1() { }, MaterialPalette__orderedPalettes_closure2: function MaterialPalette__orderedPalettes_closure2() { }, MaterialPalette__orderedPalettes_closure3: function MaterialPalette__orderedPalettes_closure3() { }, MaterialPalette__orderedPalettes_closure4: function MaterialPalette__orderedPalettes_closure4() { }, MaterialPalette__orderedPalettes_closure5: function MaterialPalette__orderedPalettes_closure5() { }, MaterialPalette__orderedPalettes_closure6: function MaterialPalette__orderedPalettes_closure6() { }, MaterialPalette__orderedPalettes_closure7: function MaterialPalette__orderedPalettes_closure7() { }, MaterialPalette__orderedPalettes_closure8: function MaterialPalette__orderedPalettes_closure8() { }, MaterialPalette__orderedPalettes_closure9: function MaterialPalette__orderedPalettes_closure9() { }, MaterialPalette__orderedPalettes_closure10: function MaterialPalette__orderedPalettes_closure10() { }, MaterialBlue: function MaterialBlue() { }, MaterialRed: function MaterialRed() { }, MaterialYellow: function MaterialYellow() { }, MaterialGreen: function MaterialGreen() { }, MaterialPurple: function MaterialPurple() { }, MaterialCyan: function MaterialCyan() { }, MaterialDeepOrange: function MaterialDeepOrange() { }, MaterialLime: function MaterialLime() { }, MaterialIndigo: function MaterialIndigo() { }, MaterialPink: function MaterialPink() { }, MaterialTeal: function MaterialTeal() { }, StyleFactory: function StyleFactory() { }, SimpleLegendEntryLayout: function SimpleLegendEntryLayout() { }, SimpleLegendEntryLayout_makeTapUpCallback_closure: function SimpleLegendEntryLayout_makeTapUpCallback_closure(t0, t1) { this.legend = t0; this.legendEntry = t1; }, TimeSeriesChart$: function(seriesList, animate, behaviors, domainAxis, primaryMeasureAxis, selectionModels) { var _null = null; return new M.TimeSeriesChart0(domainAxis, primaryMeasureAxis, _null, _null, _null, seriesList, true, C.Duration_300000, _null, _null, true, behaviors, selectionModels, _null, _null, _null, _null); }, TimeSeriesChart0: function TimeSeriesChart0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.domainAxis = t0; _.primaryMeasureAxis = t1; _.secondaryMeasureAxis = t2; _.disjointMeasureAxes = t3; _.flipVerticalAxis = t4; _.seriesList = t5; _.animate = t6; _.animationDuration = t7; _.layoutConfig = t8; _.defaultRenderer = t9; _.defaultInteractions = t10; _.behaviors = t11; _.selectionModels = t12; _.customSeriesRenderers = t13; _.rtlSpec = t14; _.userManagedState = t15; _.key = t16; }, getChartContainerRenderObject: function(box) { return type$.ChartContainerRenderObject_dynamic._as(type$.RenderPointerListener._as(type$.RenderSemanticsGestureHandler._as(C.JSArray_methods.firstWhere$1(type$.RenderCustomMultiChildLayoutBox._as(box).getChildrenAsList$0(), new M.getChartContainerRenderObject_closure())).RenderObjectWithChildMixin__child).RenderObjectWithChildMixin__child); }, getChartContainerRenderObject_closure: function getChartContainerRenderObject_closure() { }, CanonicalizedMap: function CanonicalizedMap() { }, CanonicalizedMap_addAll_closure: function CanonicalizedMap_addAll_closure(t0) { this.$this = t0; }, CanonicalizedMap_entries_closure: function CanonicalizedMap_entries_closure(t0) { this.$this = t0; }, CanonicalizedMap_forEach_closure: function CanonicalizedMap_forEach_closure(t0, t1) { this.$this = t0; this.f = t1; }, CanonicalizedMap_keys_closure: function CanonicalizedMap_keys_closure(t0) { this.$this = t0; }, CanonicalizedMap_map_closure: function CanonicalizedMap_map_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.transform = t1; _.K2 = t2; _.V2 = t3; }, CanonicalizedMap_putIfAbsent_closure: function CanonicalizedMap_putIfAbsent_closure(t0, t1, t2) { this.$this = t0; this.key = t1; this.ifAbsent = t2; }, CanonicalizedMap_values_closure: function CanonicalizedMap_values_closure(t0) { this.$this = t0; }, DraggableScrollbar_buildScrollThumbAndLabel: function(alwaysVisibleScrollThumb, backgroundColor, labelAnimation, labelConstraints, labelText, scrollThumb, thumbAnimation) { var scrollThumbAndLabel = labelText == null ? scrollThumb : T.Row$(H.setRuntimeTypeInfo([new M.ScrollLabel(labelAnimation, backgroundColor, labelText, labelConstraints, null), scrollThumb], type$.JSArray_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_0, null); thumbAnimation.toString; return new M.SlideFadeTransition(thumbAnimation, scrollThumbAndLabel, null); }, DraggableScrollbar__thumbSemicircleBuilder: function(width, scrollThumbKey, alwaysVisibleScrollThumb) { return new M.DraggableScrollbar__thumbSemicircleBuilder_closure(scrollThumbKey, width, false); }, ArrowCustomPainter__trianglePath: function(o, width, height, isUp) { var t1 = P.Path_Path(), t2 = o._dx, t3 = o._dy; t1.moveTo$2(0, t2, t3); t1.lineTo$2(0, t2 + width, t3); t3 = isUp ? t3 - height : t3 + height; t1.lineTo$2(0, t2 + width / 2, t3); t1.close$0(0); return t1; }, DraggableScrollbar: function DraggableScrollbar(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.scrollThumbBuilder = t1; _.scrollbarTimeToFade = t2; _.controller = t3; _.key = t4; }, DraggableScrollbar__thumbSemicircleBuilder_closure: function DraggableScrollbar__thumbSemicircleBuilder_closure(t0, t1, t2) { this.scrollThumbKey = t0; this.width = t1; this.alwaysVisibleScrollThumb = t2; }, ScrollLabel: function ScrollLabel(t0, t1, t2, t3, t4) { var _ = this; _.animation = t0; _.backgroundColor = t1; _.child = t2; _.constraints = t3; _.key = t4; }, _DraggableScrollbarState: function _DraggableScrollbarState(t0, t1) { var _ = this; _.___DraggableScrollbarState__labelAnimation = _.___DraggableScrollbarState__labelAnimationController = _.___DraggableScrollbarState__thumbAnimation = _.___DraggableScrollbarState__thumbAnimationController = _.___DraggableScrollbarState__isDragInProcess = _.___DraggableScrollbarState__viewOffset = _.___DraggableScrollbarState__barOffset = $; _._draggable_scrollbar$_fadeoutTimer = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _DraggableScrollbarState_build_closure: function _DraggableScrollbarState_build_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, _DraggableScrollbarState_build__closure: function _DraggableScrollbarState_build__closure(t0) { this.$this = t0; }, _DraggableScrollbarState_changePosition_closure: function _DraggableScrollbarState_changePosition_closure(t0, t1) { this.$this = t0; this.notification = t1; }, _DraggableScrollbarState_changePosition__closure: function _DraggableScrollbarState_changePosition__closure(t0) { this.$this = t0; }, _DraggableScrollbarState__onVerticalDragStart_closure: function _DraggableScrollbarState__onVerticalDragStart_closure(t0) { this.$this = t0; }, _DraggableScrollbarState__onVerticalDragUpdate_closure: function _DraggableScrollbarState__onVerticalDragUpdate_closure(t0, t1) { this.$this = t0; this.details = t1; }, _DraggableScrollbarState__onVerticalDragEnd_closure: function _DraggableScrollbarState__onVerticalDragEnd_closure(t0) { this.$this = t0; }, _DraggableScrollbarState__onVerticalDragEnd_closure0: function _DraggableScrollbarState__onVerticalDragEnd_closure0(t0) { this.$this = t0; }, ArrowCustomPainter: function ArrowCustomPainter(t0, t1) { this.color = t0; this._repaint = t1; }, SlideFadeTransition: function SlideFadeTransition(t0, t1, t2) { this.animation = t0; this.child = t1; this.key = t2; }, SlideFadeTransition_build_closure: function SlideFadeTransition_build_closure(t0) { this.$this = t0; }, __DraggableScrollbarState_State_TickerProviderStateMixin: function __DraggableScrollbarState_State_TickerProviderStateMixin() { }, MemoryFileStat: function MemoryFileStat(t0, t1, t2) { this.type = t0; this.mode = t1; this.size = t2; }, BottomNavigationBarThemeData: function BottomNavigationBarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.selectedIconTheme = t2; _.unselectedIconTheme = t3; _.selectedItemColor = t4; _.unselectedItemColor = t5; _.selectedLabelStyle = t6; _.unselectedLabelStyle = t7; _.showSelectedLabels = t8; _.showUnselectedLabels = t9; _.type = t10; _.enableFeedback = t11; }, _BottomNavigationBarThemeData_Object_Diagnosticable: function _BottomNavigationBarThemeData_Object_Diagnosticable() { }, ButtonBarThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t < 0.5; if (t2) t3 = t1 ? _null : a.alignment; else t3 = b == null ? _null : b.alignment; if (t2) t4 = t1 ? _null : a.mainAxisSize; else t4 = b == null ? _null : b.mainAxisSize; if (t2) t5 = t1 ? _null : a.buttonTextTheme; else t5 = b == null ? _null : b.buttonTextTheme; t6 = t1 ? _null : a.buttonMinWidth; t7 = b == null; t6 = P.lerpDouble(t6, t7 ? _null : b.buttonMinWidth, t); t8 = t1 ? _null : a.buttonHeight; t8 = P.lerpDouble(t8, t7 ? _null : b.buttonHeight, t); t9 = t1 ? _null : a.buttonPadding; t9 = V.EdgeInsetsGeometry_lerp(t9, t7 ? _null : b.buttonPadding, t); if (t2) t10 = t1 ? _null : a.buttonAlignedDropdown; else t10 = t7 ? _null : b.buttonAlignedDropdown; if (t2) t11 = t1 ? _null : a.layoutBehavior; else t11 = t7 ? _null : b.layoutBehavior; if (t2) t1 = t1 ? _null : a.overflowDirection; else t1 = t7 ? _null : b.overflowDirection; return new M.ButtonBarThemeData(t3, t4, t5, t6, t8, t9, t10, t11, t1); }, ButtonBarThemeData: function ButtonBarThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.alignment = t0; _.mainAxisSize = t1; _.buttonTextTheme = t2; _.buttonMinWidth = t3; _.buttonHeight = t4; _.buttonPadding = t5; _.buttonAlignedDropdown = t6; _.layoutBehavior = t7; _.overflowDirection = t8; }, _ButtonBarThemeData_Object_Diagnosticable: function _ButtonBarThemeData_Object_Diagnosticable() { }, ButtonTheme_of: function(context) { var theme, t2, t3, inheritedButtonTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$.ButtonTheme), buttonTheme = inheritedButtonTheme == null ? null : inheritedButtonTheme.data, t1 = buttonTheme == null; if ((t1 ? null : buttonTheme.colorScheme) == null) { theme = K.Theme_of(context); if (t1) buttonTheme = theme.buttonTheme; if (buttonTheme.colorScheme == null) { t1 = theme.buttonTheme.colorScheme; if (t1 == null) t1 = theme.colorScheme; t2 = buttonTheme.get$padding(buttonTheme); t3 = buttonTheme.get$shape(buttonTheme); buttonTheme = M.ButtonThemeData$(false, buttonTheme._buttonColor, t1, buttonTheme._disabledColor, buttonTheme._focusColor, buttonTheme.height, buttonTheme._button_theme$_highlightColor, buttonTheme._hoverColor, buttonTheme.layoutBehavior, buttonTheme._materialTapTargetSize, buttonTheme.minWidth, t2, t3, buttonTheme._splashColor, buttonTheme.textTheme); } } buttonTheme.toString; return buttonTheme; }, ButtonThemeData$: function(alignedDropdown, buttonColor, colorScheme, disabledColor, focusColor, height, highlightColor, hoverColor, layoutBehavior, materialTapTargetSize, minWidth, padding, shape, splashColor, textTheme) { return new M.ButtonThemeData(minWidth, height, textTheme, layoutBehavior, padding, shape, false, buttonColor, disabledColor, focusColor, hoverColor, highlightColor, splashColor, colorScheme, materialTapTargetSize); }, ButtonTextTheme: function ButtonTextTheme(t0) { this._button_theme$_name = t0; }, ButtonBarLayoutBehavior: function ButtonBarLayoutBehavior() { }, ButtonTheme: function ButtonTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, ButtonThemeData: function ButtonThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.minWidth = t0; _.height = t1; _.textTheme = t2; _.layoutBehavior = t3; _._padding = t4; _._shape = t5; _.alignedDropdown = t6; _._buttonColor = t7; _._disabledColor = t8; _._focusColor = t9; _._hoverColor = t10; _._button_theme$_highlightColor = t11; _._splashColor = t12; _.colorScheme = t13; _._materialTapTargetSize = t14; }, _ButtonThemeData_Object_Diagnosticable: function _ButtonThemeData_Object_Diagnosticable() { }, Feedback_forTap: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue; var $async$Feedback_forTap = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) $async$outer: switch ($async$goto) { case 0: // Function start context.get$renderObject().sendSemanticsEvent$1(C.TapSemanticEvent_tap); switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: $async$returnValue = V.SystemSound_play(C.SystemSoundType_0); // goto return $async$goto = 1; break $async$outer; case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: $async$returnValue = P.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break $async$outer; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$Feedback_forTap, $async$completer); }, Feedback_wrapForTap: function(callback, context) { return new M.Feedback_wrapForTap_closure(context, callback); }, Feedback_forLongPress: function(context) { context.get$renderObject().sendSemanticsEvent$1(C.LongPressSemanticsEvent_longPress); switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: return X.HapticFeedback_vibrate(); case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return P.Future_Future$value(null, type$.void); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, Feedback_wrapForTap_closure: function Feedback_wrapForTap_closure(t0, t1) { this.context = t0; this.callback = t1; }, Material$: function(animationDuration, borderOnForeground, borderRadius, child, clipBehavior, color, elevation, key, shadowColor, shape, textStyle, type) { return new M.Material(child, type, elevation, color, shadowColor, textStyle, shape, true, clipBehavior, animationDuration, borderRadius, key); }, _MaterialState__transparentInterior: function(clipBehavior, contents, context, shape) { var child = new M._ShapeBorderPaint(contents, shape, true, null); if (clipBehavior === C.Clip_0) return child; return T.ClipPath$(child, clipBehavior, new E.ShapeBorderClipper(shape, T.Directionality_maybeOf(context), null)); }, MaterialType: function MaterialType(t0) { this._material$_name = t0; }, Material: function Material(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.child = t0; _.type = t1; _.elevation = t2; _.color = t3; _.shadowColor = t4; _.textStyle = t5; _.shape = t6; _.borderOnForeground = t7; _.clipBehavior = t8; _.animationDuration = t9; _.borderRadius = t10; _.key = t11; }, _MaterialState: function _MaterialState(t0, t1, t2) { var _ = this; _._inkFeatureRenderer = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MaterialState_build_closure: function _MaterialState_build_closure(t0) { this.$this = t0; }, _RenderInkFeatures: function _RenderInkFeatures(t0, t1, t2, t3) { var _ = this; _.vsync = t0; _.color = t1; _.absorbHitTest = t2; _._inkFeatures = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _InkFeatures: function _InkFeatures(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.vsync = t1; _.absorbHitTest = t2; _.child = t3; _.key = t4; }, InkFeature: function InkFeature() { }, ShapeBorderTween: function ShapeBorderTween(t0, t1) { this.begin = t0; this.end = t1; }, _MaterialInterior: function _MaterialInterior(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.child = t0; _.shape = t1; _.borderOnForeground = t2; _.clipBehavior = t3; _.elevation = t4; _.color = t5; _.shadowColor = t6; _.curve = t7; _.duration = t8; _.onEnd = t9; _.key = t10; }, _MaterialInteriorState: function _MaterialInteriorState(t0, t1) { var _ = this; _._border = _._shadowColor = _._elevation = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _MaterialInteriorState_forEachTween_closure: function _MaterialInteriorState_forEachTween_closure() { }, _MaterialInteriorState_forEachTween_closure0: function _MaterialInteriorState_forEachTween_closure0() { }, _MaterialInteriorState_forEachTween_closure1: function _MaterialInteriorState_forEachTween_closure1() { }, _ShapeBorderPaint: function _ShapeBorderPaint(t0, t1, t2, t3) { var _ = this; _.child = t0; _.shape = t1; _.borderOnForeground = t2; _.key = t3; }, _ShapeBorderPainter: function _ShapeBorderPainter(t0, t1, t2) { this.border = t0; this.textDirection = t1; this._repaint = t2; }, __MaterialState_State_TickerProviderStateMixin: function __MaterialState_State_TickerProviderStateMixin() { }, Scaffold$: function(appBar, backgroundColor, body, bottomNavigationBar, drawer, endDrawer, floatingActionButton, floatingActionButtonLocation) { return new M.Scaffold(appBar, body, floatingActionButton, floatingActionButtonLocation, drawer, endDrawer, backgroundColor, bottomNavigationBar, null); }, Scaffold_of: function(context) { var result = context.findAncestorStateOfType$1$0(type$.ScaffoldState); if (result != null) return result; throw H.wrapException(U.FlutterError$fromParts(H.setRuntimeTypeInfo([U.ErrorSummary$("Scaffold.of() called with a context that does not contain a Scaffold."), U.ErrorDescription$("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."), U.ErrorHint$(string$.There_a), U.ErrorHint$("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."), context.describeElement$1("The context used was")], type$.JSArray_DiagnosticsNode))); }, _ScaffoldSlot: function _ScaffoldSlot(t0) { this._scaffold$_name = t0; }, ScaffoldMessenger: function ScaffoldMessenger(t0, t1) { this.child = t0; this.key = t1; }, ScaffoldMessengerState: function ScaffoldMessengerState(t0, t1, t2, t3) { var _ = this; _._scaffolds = t0; _._snackBars = t1; _._accessibleNavigation = _._snackBarTimer = null; _.TickerProviderStateMixin__tickers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ScaffoldMessengerState_hideCurrentSnackBar_closure: function ScaffoldMessengerState_hideCurrentSnackBar_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.reason = t2; }, _ScaffoldMessengerScope: function _ScaffoldMessengerScope(t0, t1, t2) { this._scaffoldMessengerState = t0; this.child = t1; this.key = t2; }, ScaffoldPrelayoutGeometry: function ScaffoldPrelayoutGeometry(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.floatingActionButtonSize = t0; _.bottomSheetSize = t1; _.contentBottom = t2; _.contentTop = t3; _.minInsets = t4; _.minViewPadding = t5; _.scaffoldSize = t6; _.snackBarSize = t7; _.textDirection = t8; }, _TransitionSnapshotFabLocation: function _TransitionSnapshotFabLocation(t0, t1, t2, t3) { var _ = this; _.begin = t0; _.end = t1; _.animator = t2; _.progress = t3; }, ScaffoldGeometry: function ScaffoldGeometry(t0, t1) { this.bottomNavigationBarTop = t0; this.floatingActionButtonArea = t1; }, _ScaffoldGeometryNotifier: function _ScaffoldGeometryNotifier(t0, t1, t2) { var _ = this; _.context = t0; _.floatingActionButtonScale = null; _.geometry = t1; _.ChangeNotifier__listeners = t2; }, _BodyBoxConstraints: function _BodyBoxConstraints(t0, t1, t2, t3, t4, t5) { var _ = this; _.bottomWidgetsHeight = t0; _.appBarHeight = t1; _.minWidth = t2; _.maxWidth = t3; _.minHeight = t4; _.maxHeight = t5; }, _BodyBuilder: function _BodyBuilder(t0, t1, t2, t3) { var _ = this; _.body = t0; _.extendBody = t1; _.extendBodyBehindAppBar = t2; _.key = t3; }, _ScaffoldLayout: function _ScaffoldLayout(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.extendBody = t0; _.extendBodyBehindAppBar = t1; _.minInsets = t2; _.minViewPadding = t3; _.textDirection = t4; _.geometryNotifier = t5; _.previousFloatingActionButtonLocation = t6; _.currentFloatingActionButtonLocation = t7; _.floatingActionButtonMoveAnimationProgress = t8; _.floatingActionButtonMotionAnimator = t9; _.isSnackBarFloating = t10; _.snackBarWidth = t11; _._debugChildrenNeedingLayout = _._idToChild = null; }, _ScaffoldLayout_performLayout__floatingActionButtonRect_set: function _ScaffoldLayout_performLayout__floatingActionButtonRect_set(t0) { this._box_0 = t0; }, _ScaffoldLayout_performLayout__floatingActionButtonRect_get: function _ScaffoldLayout_performLayout__floatingActionButtonRect_get(t0) { this._box_0 = t0; }, _FloatingActionButtonTransition: function _FloatingActionButtonTransition(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.fabMoveAnimation = t1; _.fabMotionAnimator = t2; _.geometryNotifier = t3; _.currentController = t4; _.key = t5; }, _FloatingActionButtonTransitionState: function _FloatingActionButtonTransitionState(t0, t1) { var _ = this; _.___FloatingActionButtonTransitionState__currentRotationAnimation = _.___FloatingActionButtonTransitionState__extendedCurrentScaleAnimation = _.___FloatingActionButtonTransitionState__currentScaleAnimation = _.___FloatingActionButtonTransitionState__previousRotationAnimation = _.___FloatingActionButtonTransitionState__previousScaleAnimation = _.___FloatingActionButtonTransitionState__previousController = $; _._previousChild = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure: function _FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure(t0, t1) { this.$this = t0; this.status = t1; }, Scaffold: function Scaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.appBar = t0; _.body = t1; _.floatingActionButton = t2; _.floatingActionButtonLocation = t3; _.drawer = t4; _.endDrawer = t5; _.backgroundColor = t6; _.bottomNavigationBar = t7; _.key = t8; }, ScaffoldState: function ScaffoldState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._scaffold$_drawerKey = t0; _._endDrawerKey = t1; _._appBarMaxHeight = null; _._drawerOpened = t2; _._endDrawerOpened = t3; _._snackBars = t4; _._messengerSnackBar = _._scaffoldMessenger = _._accessibleNavigation = _._snackBarTimer = null; _._dismissedBottomSheets = t5; _._currentBottomSheet = null; _._currentBottomSheetKey = t6; _.__ScaffoldState__floatingActionButtonAnimator = _.__ScaffoldState__floatingActionButtonMoveController = $; _._floatingActionButtonLocation = _._previousFloatingActionButtonLocation = null; _.__ScaffoldState__geometryNotifier = _.__ScaffoldState__floatingActionButtonVisibilityController = $; _._showBodyScrim = false; _._bodyScrimColor = t7; _.RestorationMixin__bucket = t8; _.RestorationMixin__properties = t9; _.RestorationMixin__debugPropertiesWaitingForReregistration = t10; _.RestorationMixin__firstRestorePending = t11; _.RestorationMixin__currentParent = t12; _.TickerProviderStateMixin__tickers = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, ScaffoldState__drawerOpenedCallback_closure: function ScaffoldState__drawerOpenedCallback_closure(t0, t1) { this.$this = t0; this.isOpened = t1; }, ScaffoldState__endDrawerOpenedCallback_closure: function ScaffoldState__endDrawerOpenedCallback_closure(t0, t1) { this.$this = t0; this.isOpened = t1; }, ScaffoldState_hideCurrentSnackBar_closure: function ScaffoldState_hideCurrentSnackBar_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.reason = t2; }, ScaffoldState__updateSnackBar_closure: function ScaffoldState__updateSnackBar_closure(t0) { this.$this = t0; }, ScaffoldState__buildBottomSheet__bottomSheet_set: function ScaffoldState__buildBottomSheet__bottomSheet_set(t0) { this._box_0 = t0; }, ScaffoldState__buildBottomSheet__bottomSheet_get: function ScaffoldState__buildBottomSheet__bottomSheet_get(t0) { this._box_0 = t0; }, ScaffoldState__buildBottomSheet__removeCurrentBottomSheet: function ScaffoldState__buildBottomSheet__removeCurrentBottomSheet(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _._bottomSheet_get = t2; _.bottomSheetKey = t3; _.animationController = t4; _.completer = t5; }, ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure: function ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure(t0) { this.$this = t0; }, ScaffoldState__buildBottomSheet_closure: function ScaffoldState__buildBottomSheet_closure(t0, t1) { this._box_0 = t0; this._removeCurrentBottomSheet = t1; }, ScaffoldState__buildBottomSheet_closure0: function ScaffoldState__buildBottomSheet_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _._bottomSheet_get = t2; _.isPersistent = t3; _.entry = t4; }, ScaffoldState__buildBottomSheet_closure1: function ScaffoldState__buildBottomSheet_closure1(t0, t1) { this.$this = t0; this._bottomSheet_get = t1; }, ScaffoldState__buildBottomSheet__closure: function ScaffoldState__buildBottomSheet__closure(t0, t1) { this.$this = t0; this._bottomSheet_get = t1; }, ScaffoldState_showBottomSheet_closure: function ScaffoldState_showBottomSheet_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.builder = t1; _.controller = t2; _.backgroundColor = t3; _.elevation = t4; _.shape = t5; _.clipBehavior = t6; _.T = t7; }, ScaffoldState__moveFloatingActionButton_closure: function ScaffoldState__moveFloatingActionButton_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.newLocation = t2; }, ScaffoldState_showBodyScrim_closure: function ScaffoldState_showBodyScrim_closure(t0, t1, t2) { this.$this = t0; this.value = t1; this.opacity = t2; }, ScaffoldState_build_closure: function ScaffoldState_build_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.children = t2; _._extendBody = t3; _.minInsets = t4; _.minViewPadding = t5; _.textDirection = t6; }, ScaffoldFeatureController: function ScaffoldFeatureController() { }, _BottomSheetSuspendedCurve: function _BottomSheetSuspendedCurve(t0, t1) { this.startingPoint = t0; this.curve = t1; }, _StandardBottomSheet: function _StandardBottomSheet(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.animationController = t0; _.enableDrag = t1; _.onClosing = t2; _.onDismissed = t3; _.builder = t4; _.backgroundColor = t5; _.elevation = t6; _.shape = t7; _.clipBehavior = t8; _.key = t9; }, _StandardBottomSheetState: function _StandardBottomSheetState(t0, t1) { var _ = this; _.animationCurve = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _StandardBottomSheetState_build_closure: function _StandardBottomSheetState_build_closure(t0) { this.$this = t0; }, PersistentBottomSheetController: function PersistentBottomSheetController(t0, t1, t2, t3, t4) { var _ = this; _._isLocalHistoryEntry = t0; _._scaffold$_widget = t1; _._scaffold$_completer = t2; _.close = t3; _.$ti = t4; }, _ScaffoldScope: function _ScaffoldScope(t0, t1, t2, t3) { var _ = this; _.hasDrawer = t0; _.geometryNotifier = t1; _.child = t2; _.key = t3; }, _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, _ScaffoldMessengerState_State_TickerProviderStateMixin: function _ScaffoldMessengerState_State_TickerProviderStateMixin() { }, _ScaffoldState_State_TickerProviderStateMixin: function _ScaffoldState_State_TickerProviderStateMixin() { }, _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin: function _ScaffoldState_State_TickerProviderStateMixin_RestorationMixin() { }, __FloatingActionButtonTransitionState_State_TickerProviderStateMixin: function __FloatingActionButtonTransitionState_State_TickerProviderStateMixin() { }, _DayPeriodInputPadding$: function(child, minSize, orientation) { return new M._DayPeriodInputPadding(minSize, orientation, child, null); }, _DialState__nearest: function(target, a, b) { return Math.abs(target - a) < Math.abs(target - b) ? a : b; }, _HourMinuteTextField$: function(autofocus, isHour, onChanged, onSavedSubmitted, selectedTime, semanticHintText, style, validator) { return new M._HourMinuteTextField(selectedTime, isHour, autofocus, style, semanticHintText, validator, onSavedSubmitted, onChanged, null); }, showTimePicker: function(builder, context, initialTime) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_TimeOfDay), $async$returnValue; var $async$showTimePicker = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = E.showDialog(true, new M.showTimePicker_closure(builder, new M._TimePickerDialog(initialTime, C.TimePickerEntryMode_0, null, null, null, null)), context, null, true, type$.TimeOfDay); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$showTimePicker, $async$completer); }, _TimePickerMode: function _TimePickerMode(t0) { this._time_picker0$_name = t0; }, TimePickerEntryMode: function TimePickerEntryMode(t0) { this._time_picker0$_name = t0; }, _TimePickerFragmentContext: function _TimePickerFragmentContext(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.selectedTime = t0; _.mode = t1; _.onTimeChange = t2; _.onModeChange = t3; _.onHourDoubleTapped = t4; _.onMinuteDoubleTapped = t5; _.use24HourDials = t6; }, _TimePickerHeader: function _TimePickerHeader(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.selectedTime = t0; _.mode = t1; _.orientation = t2; _.onModeChanged = t3; _.onChanged = t4; _.onHourDoubleTapped = t5; _.onMinuteDoubleTapped = t6; _.use24HourDials = t7; _.helpText = t8; _.key = t9; }, _HourMinuteControl: function _HourMinuteControl(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.onTap = t1; _.onDoubleTap = t2; _.isSelected = t3; _.key = t4; }, _HourMinuteControl_build_closure: function _HourMinuteControl_build_closure(t0) { this.themeData = t0; }, _HourMinuteControl_build_closure0: function _HourMinuteControl_build_closure0(t0, t1) { this.themeData = t0; this.isDark = t1; }, _HourControl: function _HourControl(t0, t1) { this.fragmentContext = t0; this.key = t1; }, _HourControl_build_hoursFromSelected: function _HourControl_build_hoursFromSelected(t0) { this.$this = t0; }, _HourControl_build_closure1: function _HourControl_build_closure1(t0, t1) { this.$this = t0; this.nextHour = t1; }, _HourControl_build_closure0: function _HourControl_build_closure0(t0, t1) { this.$this = t0; this.previousHour = t1; }, _HourControl_build_closure: function _HourControl_build_closure(t0) { this.$this = t0; }, _StringFragment: function _StringFragment(t0, t1) { this.timeOfDayFormat = t0; this.key = t1; }, _MinuteControl: function _MinuteControl(t0, t1) { this.fragmentContext = t0; this.key = t1; }, _MinuteControl_build_closure1: function _MinuteControl_build_closure1(t0, t1) { this.$this = t0; this.nextMinute = t1; }, _MinuteControl_build_closure0: function _MinuteControl_build_closure0(t0, t1) { this.$this = t0; this.previousMinute = t1; }, _MinuteControl_build_closure: function _MinuteControl_build_closure(t0) { this.$this = t0; }, _DayPeriodControl: function _DayPeriodControl(t0, t1, t2, t3) { var _ = this; _.selectedTime = t0; _.orientation = t1; _.onChanged = t2; _.key = t3; }, _DayPeriodControl_build_closure: function _DayPeriodControl_build_closure(t0) { this.colorScheme = t0; }, _DayPeriodControl_build_closure0: function _DayPeriodControl_build_closure0(t0, t1) { this.colorScheme = t0; this.isDark = t1; }, _DayPeriodControl_build_closure1: function _DayPeriodControl_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _DayPeriodControl_build_closure2: function _DayPeriodControl_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, _DayPeriodInputPadding: function _DayPeriodInputPadding(t0, t1, t2, t3) { var _ = this; _.minSize = t0; _.orientation = t1; _.child = t2; _.key = t3; }, _RenderInputPadding1: function _RenderInputPadding1(t0, t1, t2) { var _ = this; _.orientation = t0; _._minSize = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure1: function _RenderInputPadding_hitTest_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, _TappableLabel: function _TappableLabel(t0, t1) { this.value = t0; this.painter = t1; }, _DialPainter: function _DialPainter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.primaryLabels = t0; _.secondaryLabels = t1; _.backgroundColor = t2; _.accentColor = t3; _.dotColor = t4; _.theta = t5; _._repaint = t6; }, _DialPainter_paint_getOffsetForTheta: function _DialPainter_paint_getOffsetForTheta(t0, t1) { this.center = t0; this.labelRadius = t1; }, _DialPainter_paint_paintLabels: function _DialPainter_paint_paintLabels(t0, t1) { this.canvas = t0; this.getOffsetForTheta = t1; }, _Dial: function _Dial(t0, t1, t2, t3, t4, t5) { var _ = this; _.selectedTime = t0; _.mode = t1; _.use24HourDials = t2; _.onChanged = t3; _.onHourSelected = t4; _.key = t5; }, _DialState: function _DialState(t0, t1) { var _ = this; _.___DialState__thetaController = _.___DialState__theta = _.___DialState__thetaTween = _.___DialState_media = _.___DialState_localizations = _.___DialState_themeData = $; _._time_picker0$_dragging = false; _._time_picker0$_center = _._time_picker0$_position = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _DialState_initState_closure: function _DialState_initState_closure(t0) { this.$this = t0; }, _DialState_initState__closure: function _DialState_initState__closure() { }, _DialState__updateThetaForPan_closure: function _DialState__updateThetaForPan_closure(t0, t1) { this.$this = t0; this.roundMinutes = t1; }, _DialState__build24HourRing_closure: function _DialState__build24HourRing_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _DialState__build12HourRing_closure: function _DialState__build12HourRing_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _DialState__buildMinutes_closure: function _DialState__buildMinutes_closure(t0, t1) { this.$this = t0; this.timeOfDay = t1; }, _TimePickerInput: function _TimePickerInput(t0, t1, t2, t3, t4, t5) { var _ = this; _.initialSelectedTime = t0; _.helpText = t1; _.autofocusHour = t2; _.autofocusMinute = t3; _.onChanged = t4; _.key = t5; }, _TimePickerInputState: function _TimePickerInputState(t0) { var _ = this; _.___TimePickerInputState__selectedTime = $; _.minuteHasError = _.hourHasError = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TimePickerInputState__validateHour_closure: function _TimePickerInputState__validateHour_closure(t0, t1) { this.$this = t0; this.newHour = t1; }, _TimePickerInputState__validateMinute_closure: function _TimePickerInputState__validateMinute_closure(t0, t1) { this.$this = t0; this.newMinute = t1; }, _HourTextField: function _HourTextField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.selectedTime = t0; _.style = t1; _.autofocus = t2; _.validator = t3; _.onSavedSubmitted = t4; _.onChanged = t5; _.key = t6; }, _MinuteTextField: function _MinuteTextField(t0, t1, t2, t3, t4, t5) { var _ = this; _.selectedTime = t0; _.style = t1; _.autofocus = t2; _.validator = t3; _.onSavedSubmitted = t4; _.key = t5; }, _HourMinuteTextField: function _HourMinuteTextField(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.selectedTime = t0; _.isHour = t1; _.autofocus = t2; _.style = t3; _.semanticHintText = t4; _.validator = t5; _.onSavedSubmitted = t6; _.onChanged = t7; _.key = t8; }, _HourMinuteTextFieldState: function _HourMinuteTextFieldState(t0) { var _ = this; _.controller = null; _.___HourMinuteTextFieldState_focusNode = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _HourMinuteTextFieldState_initState_closure: function _HourMinuteTextFieldState_initState_closure(t0) { this.$this = t0; }, _HourMinuteTextFieldState_initState__closure: function _HourMinuteTextFieldState_initState__closure() { }, _HourMinuteTextFieldState_build_closure: function _HourMinuteTextFieldState_build_closure(t0) { this.$this = t0; }, _TimePickerDialog: function _TimePickerDialog(t0, t1, t2, t3, t4, t5) { var _ = this; _.initialTime = t0; _.initialEntryMode = t1; _.cancelText = t2; _.confirmText = t3; _.helpText = t4; _.key = t5; }, _TimePickerDialogState: function _TimePickerDialogState(t0, t1, t2) { var _ = this; _._time_picker0$_formKey = t0; _.___TimePickerDialogState__entryMode = $; _._time_picker0$_mode = t1; _._lastModeAnnounced = null; _.___TimePickerDialogState__autoValidate = $; _._autofocusMinute = _._autofocusHour = null; _.___TimePickerDialogState__selectedTime = $; _._vibrateTimer = null; _.___TimePickerDialogState_localizations = $; _._announcedInitialTime = false; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _TimePickerDialogState__vibrate_closure: function _TimePickerDialogState__vibrate_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleModeChanged_closure: function _TimePickerDialogState__handleModeChanged_closure(t0, t1) { this.$this = t0; this.mode = t1; }, _TimePickerDialogState__handleEntryModeToggle_closure: function _TimePickerDialogState__handleEntryModeToggle_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleTimeChanged_closure: function _TimePickerDialogState__handleTimeChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _TimePickerDialogState__handleHourSelected_closure: function _TimePickerDialogState__handleHourSelected_closure(t0) { this.$this = t0; }, _TimePickerDialogState__handleOk_closure: function _TimePickerDialogState__handleOk_closure(t0) { this.$this = t0; }, showTimePicker_closure: function showTimePicker_closure(t0, t1) { this.builder = t0; this.dialog = t1; }, __DialState_State_SingleTickerProviderStateMixin: function __DialState_State_SingleTickerProviderStateMixin() { }, ResizeImage_resizeIfNeeded: function(cacheWidth, cacheHeight, provider) { return provider; }, ImageConfiguration: function ImageConfiguration(t0, t1, t2, t3, t4, t5) { var _ = this; _.bundle = t0; _.devicePixelRatio = t1; _.locale = t2; _.textDirection = t3; _.size = t4; _.platform = t5; }, ImageProvider: function ImageProvider() { }, ImageProvider_resolve_closure: function ImageProvider_resolve_closure(t0, t1, t2) { this.$this = t0; this.configuration = t1; this.stream = t2; }, ImageProvider_resolve_closure0: function ImageProvider_resolve_closure0(t0, t1, t2) { this.$this = t0; this.stream = t1; this.configuration = t2; }, ImageProvider__createErrorHandlerAndKey_handleError: function ImageProvider__createErrorHandlerAndKey_handleError(t0, t1) { this._box_0 = t0; this.errorCallback = t1; }, ImageProvider__createErrorHandlerAndKey_closure: function ImageProvider__createErrorHandlerAndKey_closure(t0) { this.handleError = t0; }, ImageProvider__createErrorHandlerAndKey_closure0: function ImageProvider__createErrorHandlerAndKey_closure0(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.configuration = t2; _.handleError = t3; _.successCallback = t4; }, ImageProvider__createErrorHandlerAndKey__closure: function ImageProvider__createErrorHandlerAndKey__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.successCallback = t2; _.handleError = t3; }, ImageProvider_resolveStreamForKey_closure: function ImageProvider_resolveStreamForKey_closure(t0) { this.stream = t0; }, ImageProvider_resolveStreamForKey_closure0: function ImageProvider_resolveStreamForKey_closure0(t0, t1) { this.$this = t0; this.key = t1; }, AssetBundleImageKey: function AssetBundleImageKey(t0, t1, t2) { this.bundle = t0; this.name = t1; this.scale = t2; }, AssetBundleImageProvider: function AssetBundleImageProvider() { }, _ErrorImageCompleter: function _ErrorImageCompleter(t0, t1) { var _ = this; _._image_stream$_listeners = t0; _.debugLabel = _._currentError = _._currentImage = null; _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t1; }, StrutStyle: function StrutStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.fontFamily = t0; _._strut_style$_fontFamilyFallback = t1; _.fontSize = t2; _.height = t3; _.fontWeight = t4; _.fontStyle = t5; _.leading = t6; _.forceStrutHeight = t7; _.debugLabel = t8; }, _StrutStyle_Object_Diagnosticable: function _StrutStyle_Object_Diagnosticable() { }, SpringDescription$withDampingRatio: function(mass, ratio, stiffness) { return new M.SpringDescription(mass, stiffness, ratio * 2 * Math.sqrt(mass * stiffness)); }, _SpringSolution__SpringSolution: function(spring, initialPosition, initialVelocity) { var r, r1, r2, c2, w, t1 = spring.damping, t2 = t1 * t1, t3 = spring.mass, t4 = 4 * t3 * spring.stiffness, cmk = t2 - t4; if (cmk === 0) { r = -t1 / (2 * t3); return new M._CriticalSolution(r, initialPosition, initialVelocity / (r * initialPosition)); } if (cmk > 0) { t1 = -t1; t3 = 2 * t3; r1 = (t1 - Math.sqrt(cmk)) / t3; r2 = (t1 + Math.sqrt(cmk)) / t3; c2 = (initialVelocity - r1 * initialPosition) / (r2 - r1); return new M._OverdampedSolution(r1, r2, initialPosition - c2, c2); } w = Math.sqrt(t4 - t2) / (2 * t3); r = -(t1 / 2 * t3); return new M._UnderdampedSolution(w, r, initialPosition, (initialVelocity - r * initialPosition) / w); }, SpringDescription: function SpringDescription(t0, t1, t2) { this.mass = t0; this.stiffness = t1; this.damping = t2; }, SpringType: function SpringType(t0) { this._spring_simulation$_name = t0; }, SpringSimulation: function SpringSimulation(t0, t1, t2) { this._endPosition = t0; this._solution = t1; this.tolerance = t2; }, ScrollSpringSimulation: function ScrollSpringSimulation(t0, t1, t2) { this._endPosition = t0; this._solution = t1; this.tolerance = t2; }, _CriticalSolution: function _CriticalSolution(t0, t1, t2) { this._r = t0; this._c1 = t1; this._c2 = t2; }, _OverdampedSolution: function _OverdampedSolution(t0, t1, t2, t3) { var _ = this; _._r1 = t0; _._r2 = t1; _._c1 = t2; _._c2 = t3; }, _UnderdampedSolution: function _UnderdampedSolution(t0, t1, t2, t3) { var _ = this; _._spring_simulation$_w = t0; _._r = t1; _._c1 = t2; _._c2 = t3; }, TickerFuture$complete: function() { var t1 = new M.TickerFuture(new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void)); t1._ticker$_complete$0(); return t1; }, Ticker: function Ticker(t0, t1) { var _ = this; _._ticker$_future = null; _._muted = false; _._startTime = null; _._onTick = t0; _._animationId = null; _.debugLabel = t1; _.__Ticker__debugCreationStack = $; }, TickerFuture: function TickerFuture(t0) { this._primaryCompleter = t0; this._completed = this._secondaryCompleter = null; }, TickerFuture_whenCompleteOrCancel_thunk: function TickerFuture_whenCompleteOrCancel_thunk(t0) { this.callback = t0; }, TickerCanceled: function TickerCanceled(t0) { this.ticker = t0; }, DecoratedBox$: function(child, decoration, position) { return new M.DecoratedBox(decoration, position, child, null); }, Container$: function(alignment, child, clipBehavior, color, constraints, decoration, foregroundDecoration, height, key, margin, padding, transform, transformAlignment, width) { var t1; if (width != null || height != null) { t1 = constraints == null ? null : constraints.tighten$2$height$width(height, width); if (t1 == null) t1 = S.BoxConstraints$tightFor(height, width); } else t1 = constraints; return new M.Container(child, alignment, padding, color, decoration, foregroundDecoration, t1, margin, transform, transformAlignment, clipBehavior, key); }, DecoratedBox: function DecoratedBox(t0, t1, t2, t3) { var _ = this; _.decoration = t0; _.position = t1; _.child = t2; _.key = t3; }, Container: function Container(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.child = t0; _.alignment = t1; _.padding = t2; _.color = t3; _.decoration = t4; _.foregroundDecoration = t5; _.constraints = t6; _.margin = t7; _.transform = t8; _.transformAlignment = t9; _.clipBehavior = t10; _.key = t11; }, _DecorationClipper: function _DecorationClipper(t0, t1, t2) { this.textDirection = t0; this.decoration = t1; this._reclip = t2; }, InheritedTheme_capture: function(from, to) { var themes, t1 = {}; if (J.$eq$(from, to)) return new M.CapturedThemes(C.List_empty6); themes = H.setRuntimeTypeInfo([], type$.JSArray_InheritedTheme); t1._debugDidFindAncestor = $; from.visitAncestorElements$1(new M.InheritedTheme_capture_closure(to, new M.InheritedTheme_capture__debugDidFindAncestor_set(t1), P.LinkedHashSet_LinkedHashSet$_empty(type$.Type), themes)); return new M.CapturedThemes(themes); }, InheritedTheme: function InheritedTheme() { }, InheritedTheme_capture__debugDidFindAncestor_set: function InheritedTheme_capture__debugDidFindAncestor_set(t0) { this._box_0 = t0; }, InheritedTheme_capture_closure: function InheritedTheme_capture_closure(t0, t1, t2, t3) { var _ = this; _.to = t0; _._debugDidFindAncestor_set = t1; _.themeTypes = t2; _.themes = t3; }, CapturedThemes: function CapturedThemes(t0) { this._themes = t0; }, _CaptureAll: function _CaptureAll(t0, t1, t2) { this.themes = t0; this.child = t1; this.key = t2; }, ScrollActivity: function ScrollActivity() { }, IdleScrollActivity: function IdleScrollActivity(t0) { this._delegate = t0; }, HoldScrollActivity: function HoldScrollActivity(t0, t1) { this.onHoldCanceled = t0; this._delegate = t1; }, ScrollDragController: function ScrollDragController(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._delegate = t0; _.onDragCanceled = t1; _.carriedVelocity = t2; _.motionStartDistanceThreshold = t3; _._lastNonStationaryTimestamp = t4; _._retainMomentum = t5; _._offsetSinceLastStop = t6; _._lastDetails = t7; }, DragScrollActivity: function DragScrollActivity(t0, t1) { this._scroll_activity$_controller = t0; this._delegate = t1; }, BallisticScrollActivity: function BallisticScrollActivity(t0) { this.__BallisticScrollActivity__controller = $; this._delegate = t0; }, DrivenScrollActivity: function DrivenScrollActivity(t0) { this.__DrivenScrollActivity__controller = this.__DrivenScrollActivity__completer = $; this._delegate = t0; }, ScrollMetrics: function ScrollMetrics() { }, FixedScrollMetrics: function FixedScrollMetrics(t0, t1, t2, t3, t4) { var _ = this; _._scroll_metrics$_minScrollExtent = t0; _._scroll_metrics$_maxScrollExtent = t1; _._scroll_metrics$_pixels = t2; _._scroll_metrics$_viewportDimension = t3; _.axisDirection = t4; }, _FixedScrollMetrics_Object_ScrollMetrics: function _FixedScrollMetrics_Object_ScrollMetrics() { }, DoNothingAndStopPropagationTextIntent: function DoNothingAndStopPropagationTextIntent() { }, MemoryCacheSystem: function MemoryCacheSystem(t0) { this.directory = t0; }, showToast: function(msg) { var textPadding, backgroundColor, borderRadius, shapeBorder, textDirection, textAlign, _null = null, context = $.currentContext, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.StyledToastTheme), textStyle = t1 == null ? _null : t1.textStyle; if (textStyle == null) textStyle = A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); textPadding = t1 == null ? _null : t1.textPadding; if (textPadding == null) textPadding = new V.EdgeInsets(17, 10, 17, 10); backgroundColor = t1 == null ? _null : t1.backgroundColor; if (backgroundColor == null) backgroundColor = C.Color_2566914048; borderRadius = t1 == null ? _null : t1.borderRadius; if (borderRadius == null) borderRadius = K.BorderRadius$circular(5); shapeBorder = new X.RoundedRectangleBorder(borderRadius, C.BorderSide_m7u); textDirection = t1 == null ? _null : t1.textDirection; if (textDirection == null) textDirection = C.TextDirection_1; textAlign = t1 == null ? _null : t1.textAlign; if (textAlign == null) textAlign = C.TextAlign_2; return M.showToastWidget(M.Container$(_null, L.Text$(msg == null ? "" : msg, _null, _null, _null, _null, _null, textStyle, textAlign, _null, _null), C.Clip_0, _null, _null, new V.ShapeDecoration(backgroundColor, _null, _null, _null, shapeBorder), _null, _null, _null, new V.EdgeInsets(50, 0, 50, 0), textPadding, _null, _null, _null), _null, _null, _null, _null, _null, context, _null, _null, _null, _null, _null, _null, _null, _null, C.C_StyledToastPosition, _null, _null, _null, _null, _null, _null, textDirection); }, showToastWidget: function(widget, alignment, animDuration, animation, animationBuilder, axis, context, curve, dismissOtherToast, duration, endOffset, isHideKeyboard, isIgnoring, onDismiss, onInitState, position, reverseAnimBuilder, reverseAnimation, reverseCurve, reverseEndOffset, reverseStartOffset, startOffset, textDirection) { var t2, t3, key, entry, future, result, _null = null, t1 = {}; t1.duration = duration; t1.animDuration = animDuration; t1.textDirection = textDirection; t1.alignment = alignment; t1.axis = axis; t1.startOffset = startOffset; t1.endOffset = endOffset; t1.reverseStartOffset = reverseStartOffset; t1.reverseEndOffset = reverseEndOffset; t1.position = position; t1.animation = animation; t1.reverseAnimation = reverseAnimation; t1.curve = curve; t1.reverseCurve = reverseCurve; t1.animationBuilder = animationBuilder; t1.reverseAnimBuilder = reverseAnimBuilder; t1.isIgnoring = isIgnoring; t1.onInitState = onInitState; context = context != null ? context : $.currentContext; t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.StyledToastTheme); duration = t2 == null ? _null : t2.duration; t1.duration = duration == null ? C.Duration_2300000 : duration; t1.animDuration = C.Duration_400000; t3 = t2 != null || _null; dismissOtherToast = t3 !== false; t1.alignment = C.Alignment_0_0; t1.axis = C.Axis_1; t1.startOffset = t2 == null ? _null : t2.startOffset; t1.endOffset = t2 == null ? _null : t2.endOffset; t1.reverseStartOffset = t2 == null ? _null : t2.reverseStartOffset; t1.reverseEndOffset = t2 == null ? _null : t2.reverseEndOffset; t3 = t2 == null ? _null : t2.curve; t1.curve = C.C__Linear; t3 = t2 == null ? _null : t2.reverseCurve; t1.reverseCurve = C.C__Linear; t3 = t2 == null ? _null : t2.toastAnimation; t1.animation = C.StyledToastAnimation_18; t3 = t2 == null ? _null : t2.reverseAnimation; t1.reverseAnimation = C.StyledToastAnimation_18; animationBuilder = t2 == null ? _null : t2.animationBuilder; t1.animationBuilder = animationBuilder; reverseAnimBuilder = t2 == null ? _null : t2.reverseAnimBuilder; t1.reverseAnimBuilder = reverseAnimBuilder; onInitState = t2 == null ? _null : t2.onInitState; t1.onInitState = onInitState; onDismiss = t2 == null ? _null : t2.onDismiss; t2 = t2 != null || _null; t1.isIgnoring = t2 !== false; key = new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_StyledToastWidgetState); entry = X.OverlayEntry$(new M.showToastWidget_closure(t1, key, widget), false); if (dismissOtherToast) { t2 = $.ToastManager__instance; (t2 == null ? $.ToastManager__instance = new Q.ToastManager(P.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t2).dismissAll$1$showAnim(false); } future = Q.ToastFuture$create(t1.duration, entry, onDismiss, key); result = context.findAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, entry); t1 = $.ToastManager__instance; (t1 == null ? $.ToastManager__instance = new Q.ToastManager(P.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t1).toastSet.add$1(0, future); return future; }, showToastWidget_closure: function showToastWidget_closure(t0, t1, t2) { this._box_0 = t0; this.key = t1; this.widget = t2; }, StyledToast: function StyledToast(t0, t1, t2, t3, t4, t5) { var _ = this; _.child = t0; _.backgroundColor = t1; _.textStyle = t2; _.duration = t3; _.locale = t4; _.key = t5; }, _StyledToastState: function _StyledToastState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _StyledToastState_build_closure: function _StyledToastState_build_closure(t0) { this.$this = t0; }, _StyledToastWidget: function _StyledToastWidget(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.child = t0; _.duration = t1; _.animDuration = t2; _.curve = t3; _.reverseCurve = t4; _.position = t5; _.alignment = t6; _.axis = t7; _.startOffset = t8; _.endOffset = t9; _.reverseStartOffset = t10; _.reverseEndOffset = t11; _.animation = t12; _.reverseAnimation = t13; _.animationBuilder = t14; _.reverseAnimBuilder = t15; _.onInitState = t16; _.key = t17; }, StyledToastWidgetState: function StyledToastWidgetState(t0, t1) { var _ = this; _.__StyledToastWidgetState_rotateAnimReverse = _.__StyledToastWidgetState_slideToRightAnimReverse = _.__StyledToastWidgetState_slideToLeftAnimReverse = _.__StyledToastWidgetState_slideToBottomAnimReverse = _.__StyledToastWidgetState_slideToTopAnimReverse = _.__StyledToastWidgetState_sizeAnimReverse = _.__StyledToastWidgetState_scaleAnimReverse = _.__StyledToastWidgetState_fadeAnimReverse = _.__StyledToastWidgetState_rotateAnim = _.__StyledToastWidgetState_slideFromRightAnim = _.__StyledToastWidgetState_slideFromLeftAnim = _.__StyledToastWidgetState_slideFromBottomAnim = _.__StyledToastWidgetState_slideFromTopAnim = _.__StyledToastWidgetState_sizeAnim = _.__StyledToastWidgetState_scaleAnim = _.__StyledToastWidgetState_fadeAnim = _.__StyledToastWidgetState__reverseAnimController = _.__StyledToastWidgetState__animationController = $; _.opacity = 1; _._toastTimer = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, StyledToastWidgetState_initState_closure: function StyledToastWidgetState_initState_closure(t0) { this.$this = t0; }, StyledToastWidgetState_dismissToast_closure: function StyledToastWidgetState_dismissToast_closure(t0) { this.$this = t0; }, StyledToastWidgetState_didChangeMetrics_closure: function StyledToastWidgetState_didChangeMetrics_closure() { }, _StyledToastWidgetState_State_TickerProviderStateMixin: function _StyledToastWidgetState_State_TickerProviderStateMixin() { }, _StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver: function _StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver() { }, GoogleSignInPlugin$: function() { var t1 = new M.GoogleSignInPlugin(); t1.GoogleSignInPlugin$0(); return t1; }, GoogleSignInPlugin: function GoogleSignInPlugin() { var _ = this; _.__GoogleSignInPlugin__isAuthInitialized = _.__GoogleSignInPlugin__isGapiInitialized = $; _._isInitCalled = false; _._autoDetectedClientId = null; }, GoogleSignInPlugin_closure: function GoogleSignInPlugin_closure() { }, GoogleSignInPlugin_init_closure: function GoogleSignInPlugin_init_closure(t0) { this.isAuthInitialized = t0; }, GoogleSignInPlugin_init_closure0: function GoogleSignInPlugin_init_closure0(t0) { this.isAuthInitialized = t0; }, ExpenseEntity_ExpenseEntity: function(client, entityType, id, project, state, user, vendor) { var company, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _null = null, t1 = state == null; if (t1) company = _null; else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t3).userCompany.company; } if (id == null) { t2 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t2; t2 = "" + t2; } else t2 = id; t3 = entityType == null ? C.EntityType_expense : entityType; t4 = company == null; t5 = t4 ? _null : company.markExpensesInvoiceable; t6 = t4 ? _null : company.invoiceExpenseDocuments; t7 = Y.convertDateTimeToSqlDate(_null); t8 = t4 ? _null : company.markExpensesPaid; t8 = t8 === true ? Y.convertDateTimeToSqlDate(_null) : ""; t9 = vendor == null; if (!t9) t10 = vendor.currencyId.length !== 0; else t10 = false; if (t10) t10 = vendor.currencyId; else { if (t1) t10 = _null; else { t10 = state.userCompanyStates; t11 = state.uiState.selectedCompanyIndex; t11 = J.$index$asx(t10._list, t11).userCompany.company; t10 = t11; } if (t10 == null) t10 = _null; else { t10 = t10.settings.currencyId; if (t10 == null) t10 = "1"; } if (t10 == null) t10 = "1"; } t11 = client == null; if (!t11 && client.get$hasCurrency()) t1 = client.settings.currencyId; else { if (t1) t1 = _null; else { t1 = state.userCompanyStates; t12 = state.uiState.selectedCompanyIndex; t12 = J.$index$asx(t1._list, t12).userCompany.company; t1 = t12; } if (t1 == null) t1 = _null; else { t1 = t1.settings.currencyId; if (t1 == null) t1 = "1"; } if (t1 == null) t1 = "1"; } t12 = D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity); t13 = t4 ? _null : company.expenseInclusiveTaxes; t4 = t4 ? _null : company.calculateExpenseTaxByAmount; t14 = project == null; t15 = t14 ? _null : project.clientId; if (t15 == null) t11 = t11 ? _null : client.id; else t11 = t15; t9 = t9 ? _null : vendor.id; t14 = t14 ? _null : project.id; t15 = user == null ? _null : user.id; if (t15 == null) t15 = ""; return M._$ExpenseEntity$_(0, 0, t15, "", t4 === true, "", t11, 0, "", t10, "", "", "", "", t7, t12, t3, 1, "5", t2, t1, t6 === true, "", false, false, "", _null, Y.convertDateTimeToSqlDate(_null), "", t8, "", "", t14, "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_ExpenseScheduleEntity), _null, -1, t5 === true, _null, 0, 0, 0, "", "", "", 0, 0, 0, "", "", 0, t13 === true, t9); }, ExpenseEntity__initializeBuilder: function(builder) { builder.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; builder.get$_expense_model$_$this()._expense_model$_frequencyId = ""; builder.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; builder.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; builder.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; return builder; }, _$ExpenseEntity$_: function(amount, archivedAt, assignedUserId, bankId, calculateTaxByAmount, categoryId, clientId, createdAt, createdUserId, currencyId, customValue1, customValue2, customValue3, customValue4, date, documents, entityType, exchangeRate, frequencyId, id, invoiceCurrencyId, invoiceDocuments, invoiceId, isChanged, isDeleted, lastSentDate, loadedAt, nextSendDate, number, paymentDate, paymentTypeId, privateNotes, projectId, publicNotes, recurringDates, recurringId, remainingCycles, shouldBeInvoiced, statusId, taxAmount1, taxAmount2, taxAmount3, taxName1, taxName2, taxName3, taxRate1, taxRate2, taxRate3, transactionId, transactionReference, updatedAt, usesInclusiveTaxes, vendorId) { var _s13_ = "ExpenseEntity"; if (paymentDate == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paymentDate")); if (invoiceCurrencyId == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceCurrencyId")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "documents")); if (nextSendDate == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "nextSendDate")); return new M._$ExpenseEntity(privateNotes, publicNotes, shouldBeInvoiced, invoiceDocuments, transactionId, transactionReference, bankId, currencyId, categoryId, amount, date, paymentDate, exchangeRate, invoiceCurrencyId, paymentTypeId, taxName1, taxName2, taxRate1, taxRate2, taxName3, taxRate3, clientId, invoiceId, vendorId, projectId, statusId, customValue1, customValue2, customValue3, customValue4, taxAmount1, taxAmount2, taxAmount3, usesInclusiveTaxes, calculateTaxByAmount, documents, number, recurringId, frequencyId, lastSentDate, nextSendDate, remainingCycles, recurringDates, loadedAt, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, entityType, id); }, _$ExpenseStatusEntity$_: function(id, $name) { return new M._$ExpenseStatusEntity(id, $name); }, ExpenseListResponse: function ExpenseListResponse() { }, ExpenseItemResponse: function ExpenseItemResponse() { }, ExpenseEntity: function ExpenseEntity() { }, ExpenseEntity_clone_closure: function ExpenseEntity_clone_closure() { }, ExpenseScheduleEntity: function ExpenseScheduleEntity() { }, ExpenseStatusEntity: function ExpenseStatusEntity() { }, _$ExpenseListResponseSerializer: function _$ExpenseListResponseSerializer() { }, _$ExpenseItemResponseSerializer: function _$ExpenseItemResponseSerializer() { }, _$ExpenseEntitySerializer: function _$ExpenseEntitySerializer() { }, _$ExpenseScheduleEntitySerializer: function _$ExpenseScheduleEntitySerializer() { }, _$ExpenseStatusEntitySerializer: function _$ExpenseStatusEntitySerializer() { }, _$ExpenseListResponse: function _$ExpenseListResponse(t0) { this.data = t0; this._expense_model$__hashCode = null; }, ExpenseListResponseBuilder: function ExpenseListResponseBuilder() { this._expense_model$_data = this._expense_model$_$v = null; }, _$ExpenseItemResponse: function _$ExpenseItemResponse(t0) { this.data = t0; this._expense_model$__hashCode = null; }, ExpenseItemResponseBuilder: function ExpenseItemResponseBuilder() { this._expense_model$_data = this._expense_model$_$v = null; }, _$ExpenseEntity: function _$ExpenseEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52) { var _ = this; _.privateNotes = t0; _.publicNotes = t1; _.shouldBeInvoiced = t2; _.invoiceDocuments = t3; _.transactionId = t4; _.transactionReference = t5; _.bankId = t6; _.currencyId = t7; _.categoryId = t8; _.amount = t9; _.date = t10; _.paymentDate = t11; _.exchangeRate = t12; _.invoiceCurrencyId = t13; _.paymentTypeId = t14; _.taxName1 = t15; _.taxName2 = t16; _.taxRate1 = t17; _.taxRate2 = t18; _.taxName3 = t19; _.taxRate3 = t20; _.clientId = t21; _.invoiceId = t22; _.vendorId = t23; _.projectId = t24; _.statusId = t25; _.customValue1 = t26; _.customValue2 = t27; _.customValue3 = t28; _.customValue4 = t29; _.taxAmount1 = t30; _.taxAmount2 = t31; _.taxAmount3 = t32; _.usesInclusiveTaxes = t33; _.calculateTaxByAmount = t34; _.documents = t35; _.number = t36; _.recurringId = t37; _.frequencyId = t38; _.lastSentDate = t39; _.nextSendDate = t40; _.remainingCycles = t41; _.recurringDates = t42; _.loadedAt = t43; _.isChanged = t44; _.createdAt = t45; _.updatedAt = t46; _.archivedAt = t47; _.isDeleted = t48; _.createdUserId = t49; _.assignedUserId = t50; _.entityType = t51; _.id = t52; _._expense_model$__hashCode = null; }, ExpenseEntityBuilder: function ExpenseEntityBuilder() { var _ = this; _._expense_model$_customValue3 = _._expense_model$_customValue2 = _._expense_model$_customValue1 = _._expense_model$_statusId = _._expense_model$_projectId = _._expense_model$_vendorId = _._expense_model$_invoiceId = _._expense_model$_clientId = _._expense_model$_taxRate3 = _._expense_model$_taxName3 = _._expense_model$_taxRate2 = _._expense_model$_taxRate1 = _._expense_model$_taxName2 = _._expense_model$_taxName1 = _._paymentTypeId = _._invoiceCurrencyId = _._expense_model$_exchangeRate = _._paymentDate = _._expense_model$_date = _._expense_model$_amount = _._categoryId = _._expense_model$_currencyId = _._bankId = _._expense_model$_transactionReference = _._transactionId = _._invoiceDocuments = _._shouldBeInvoiced = _._expense_model$_publicNotes = _._expense_model$_privateNotes = _._expense_model$_$v = null; _._expense_model$_id = _._expense_model$_entityType = _._expense_model$_assignedUserId = _._expense_model$_createdUserId = _._expense_model$_isDeleted = _._expense_model$_archivedAt = _._expense_model$_updatedAt = _._expense_model$_createdAt = _._expense_model$_isChanged = _._expense_model$_loadedAt = _._expense_model$_recurringDates = _._expense_model$_remainingCycles = _._expense_model$_nextSendDate = _._expense_model$_lastSentDate = _._expense_model$_frequencyId = _._expense_model$_recurringId = _._expense_model$_number = _._expense_model$_documents = _._calculateTaxByAmount = _._expense_model$_usesInclusiveTaxes = _._taxAmount3 = _._taxAmount2 = _._taxAmount1 = _._expense_model$_customValue4 = null; }, _$ExpenseScheduleEntity: function _$ExpenseScheduleEntity(t0) { this.sendDate = t0; this._expense_model$__hashCode = null; }, ExpenseScheduleEntityBuilder: function ExpenseScheduleEntityBuilder() { this._expense_model$_sendDate = this._expense_model$_$v = null; }, _$ExpenseStatusEntity: function _$ExpenseStatusEntity(t0, t1) { this.id = t0; this.name = t1; this._expense_model$__hashCode = null; }, ExpenseStatusEntityBuilder: function ExpenseStatusEntityBuilder() { this._expense_model$_name = this._expense_model$_id = this._expense_model$_$v = null; }, _ExpenseEntity_Object_BaseEntity: function _ExpenseEntity_Object_BaseEntity() { }, _ExpenseEntity_Object_BaseEntity_SelectableEntity: function _ExpenseEntity_Object_BaseEntity_SelectableEntity() { }, _ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, _ExpenseStatusEntity_Object_EntityStatus: function _ExpenseStatusEntity_Object_EntityStatus() { }, _ExpenseStatusEntity_Object_EntityStatus_SelectableEntity: function _ExpenseStatusEntity_Object_EntityStatus_SelectableEntity() { }, DateFormatListResponse: function DateFormatListResponse() { }, DateFormatItemResponse: function DateFormatItemResponse() { }, DateFormatEntity: function DateFormatEntity() { }, _$DateFormatListResponseSerializer: function _$DateFormatListResponseSerializer() { }, _$DateFormatItemResponseSerializer: function _$DateFormatItemResponseSerializer() { }, _$DateFormatEntitySerializer: function _$DateFormatEntitySerializer() { }, _$DateFormatListResponse: function _$DateFormatListResponse(t0) { this.data = t0; this._date_format_model$__hashCode = null; }, DateFormatListResponseBuilder: function DateFormatListResponseBuilder() { this._date_format_model$_data = this._date_format_model$_$v = null; }, _$DateFormatItemResponse: function _$DateFormatItemResponse(t0) { this.data = t0; this._date_format_model$__hashCode = null; }, DateFormatItemResponseBuilder: function DateFormatItemResponseBuilder() { this._date_format_model$_data = this._date_format_model$_$v = null; }, _$DateFormatEntity: function _$DateFormatEntity(t0, t1) { this.format = t0; this.id = t1; this._date_format_model$__hashCode = null; }, DateFormatEntityBuilder: function DateFormatEntityBuilder() { this._date_format_model$_id = this._date_format_model$_format = this._date_format_model$_$v = null; }, _DateFormatEntity_Object_SelectableEntity: function _DateFormatEntity_Object_SelectableEntity() { }, UpdateUserPreferences$: function(appLayout, colorTheme, customColors, enableDarkMode, historyMode, isFilterVisible, isPreviewVisible, longPressSelectionIsDefault, menuMode, moduleLayout, persistData, requireAuthentication, rowsPerPage, showKanban, $sidebar) { return new M.UpdateUserPreferences(appLayout, moduleLayout, $sidebar, menuMode, historyMode, enableDarkMode, longPressSelectionIsDefault, requireAuthentication, isPreviewVisible, isFilterVisible, showKanban, rowsPerPage, colorTheme, persistData, customColors); }, filterByEntity: function(context, entity) { if (entity.get$isNew()) return; J.$index$asx(O.StoreProvider_of(context, type$.legacy_AppState).get$_dispatchers(), 0).call$1(new M.FilterByEntity(entity, false)); }, viewEntitiesByType: function(entityType, filterEntity) { var store, uiState, t1 = {}, t2 = $.$get$navigatorKey(); t2.toString; store = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), type$.legacy_AppState); uiState = store.get$_store$_state().uiState; t1.action = null; M.checkForChanges(new M.viewEntitiesByType_closure(t1, filterEntity, uiState, store, entityType), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), false, store); }, viewEntity: function(addToStack, entity, filterEntity, force) { return M.viewEntityById(addToStack, entity.get$id(entity), entity.get$entityType(), filterEntity, force, true); }, viewEntityById: function(addToStack, entityId, entityType, filterEntity, force, showError) { var store, t1 = $.$get$navigatorKey(); t1.toString; store = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); M.checkForChanges(new M.viewEntityById_closure(addToStack, store, entityId, entityType, store.get$_store$_state(), filterEntity, store.get$_store$_state().uiState, showError, force), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), force, store); }, createEntityByType: function(applyFilter, context, entityType) { var store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; if (!J.$index$asx(t1._list, t2).userCompany.can$2(C.UserPermission_create, entityType)) return; M.checkForChanges(new M.createEntityByType_closure(state, store, entityType, applyFilter, false), context, false, store); }, createEntity: function(cancelCompleter, completer, context, entity, filterEntity, force) { var store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex; if (!J.$index$asx(t1._list, t2).userCompany.can$2(C.UserPermission_create, entity.get$entityType())) return; M.checkForChanges(new M.createEntity_closure(filterEntity, uiState, context, store, state, entity, force, completer, cancelCompleter), context, force, store); }, editEntity: function(completer, context, entity, subIndex) { var store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); M.checkForChanges(new M.editEntity_closure(state, entity.get$entityType(), store, entity, completer, context, t1, subIndex), context, false, store); }, handleEntitiesActions: function(entities, action, autoPop) { var t1, store, context; if (entities.length === 0) return; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_archive, C.EntityAction_delete], type$.JSArray_legacy_EntityAction), action) && autoPop) { t1 = $.$get$navigatorKey(); t1.toString; if (D.getLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1)) === C.AppLayout_mobile) t1.get$currentState().pop$0(0); else if (C.JSArray_methods.get$first(entities).get$entityType().get$isSetting()) { store = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); switch (C.JSArray_methods.get$first(entities).get$entityType()) { case C.EntityType_paymentTerm: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/payment_terms")); break; case C.EntityType_taxRate: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/tax_settings_rates")); break; case C.EntityType_companyGateway: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/company_gateways")); break; case C.EntityType_user: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/user_management")); break; case C.EntityType_group: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/group_settings")); break; case C.EntityType_design: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/custom_designs")); break; case C.EntityType_token: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/tokens")); break; case C.EntityType_webhook: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/webhook")); break; case C.EntityType_expenseCategory: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/expense_category")); break; case C.EntityType_taskStatus: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/task_status")); break; case C.EntityType_subscription: J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/subscriptions")); break; default: P.print("ERROR: " + H.S(C.JSArray_methods.get$first(entities).get$entityType()) + " entity type not supported"); } } } t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); switch (C.JSArray_methods.get$first(entities).get$entityType()) { case C.EntityType_client: E.handleClientAction(context, entities, action); break; case C.EntityType_product: Z.handleProductAction(context, entities, action); break; case C.EntityType_invoice: Q.handleInvoiceAction(context, entities, action); break; case C.EntityType_payment: Q.handlePaymentAction(context, entities, action); break; case C.EntityType_quote: E.handleQuoteAction(context, entities, action); break; case C.EntityType_task: U.handleTaskAction(context, entities, action); break; case C.EntityType_project: M.handleProjectAction(context, entities, action); break; case C.EntityType_expense: T.handleExpenseAction(context, entities, action); break; case C.EntityType_vendor: L.handleVendorAction(context, entities, action); break; case C.EntityType_user: X.handleUserAction(context, entities, action); break; case C.EntityType_companyGateway: Q.handleCompanyGatewayAction(context, entities, action); break; case C.EntityType_taxRate: A.handleTaxRateAction(context, entities, action); break; case C.EntityType_group: Q.handleGroupAction(context, entities, action); break; case C.EntityType_document: X.handleDocumentAction(context, entities, action); break; case C.EntityType_recurringExpense: U.handleRecurringExpenseAction(context, entities, action); break; case C.EntityType_subscription: A.handleSubscriptionAction(context, entities, action); break; case C.EntityType_taskStatus: V.handleTaskStatusAction(context, entities, action); break; case C.EntityType_expenseCategory: X.handleExpenseCategoryAction(context, entities, action); break; case C.EntityType_recurringInvoice: N.handleRecurringInvoiceAction(context, entities, action); break; case C.EntityType_webhook: S.handleWebhookAction(context, entities, action); break; case C.EntityType_token: Q.handleTokenAction(context, entities, action); break; case C.EntityType_paymentTerm: D.handlePaymentTermAction(context, entities, action); break; case C.EntityType_design: N.handleDesignAction(context, entities, action); break; case C.EntityType_credit: E.handleCreditAction(context, entities, action); break; default: P.print("Error: unhandled type " + H.S(C.JSArray_methods.get$first(entities).get$entityType()) + " in handleEntitiesActions"); } }, selectEntity: function(context, entity, forceView, longPress) { var store, state, uiState, entityUIState, t2, t3, client, _null = null, t1 = $.$get$navigatorKey(); t1.toString; store = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); state = store.get$_store$_state(); uiState = state.uiState; entityUIState = state.getUIState$1(entity.get$entityType()); t1 = state.getUIState$1(entity.get$entityType()).get$listUIState().selectedIds == null; if (longPress) { t2 = state.prefState; t3 = t2.longPressSelectionIsDefault; t1 = (t3 || t2.moduleLayout === C.ModuleLayout_table) && t1 && uiState.currentRoute !== "/dashboard"; t2 = type$.JSArray_legacy_BaseEntity; if (t1) M.handleEntitiesActions(H.setRuntimeTypeInfo([entity], t2), C.EntityAction_toggleMultiselect, false); else L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([entity], t2), false); } else if (!t1 && !forceView) M.handleEntitiesActions(H.setRuntimeTypeInfo([entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_toggleMultiselect, false); else if (D.getLayout(context) === C.AppLayout_desktop && !state.prefState.isPreviewVisible) if (uiState.get$isEditing() && entityUIState.get$editingId() === entity.get$id(entity)) M.viewEntitiesByType(entity.get$entityType(), _null); else { if (!state.prefState.isPreviewVisible) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); M.viewEntity(false, entity, _null, false); } else { if (D.getLayout(context) === C.AppLayout_desktop) t1 = uiState.get$isEditing() || J.get$isNotEmpty$asx(uiState.previewStack._list); else t1 = false; if (t1) M.viewEntity(false, entity, _null, false); else { if (D.getLayout(context) === C.AppLayout_desktop) if (!forceView) t1 = !uiState.get$isEditing() && !C.JSString_methods.endsWith$1(uiState.currentRoute, "/email") && !entity.get$entityType().get$isSetting() && entityUIState.get$selectedId() === entity.get$id(entity); else t1 = false; else t1 = false; if (t1) if (entityUIState.get$tabIndex(entityUIState) > 0) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.PreviewEntity(_null, _null)); else M.editEntity(_null, context, entity, _null); else { if (forceView && type$.legacy_BelongsToClient._is(entity)) { t1 = state.userCompanyStates; t2 = uiState.selectedCompanyIndex; client = J.$index$asx(t1._list, t2).clientState.$get$1(0, entity.get$clientId(entity)); } else client = _null; M.viewEntity(false, entity, client, false); } } } }, inspectEntity: function(entity, longPress) { var store, state, previewStack, t2, entityType, t1 = $.$get$navigatorKey(); t1.toString; store = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState); state = store.get$_store$_state(); previewStack = state.uiState.previewStack; if (D.getLayout($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1)) === C.AppLayout_desktop) if (longPress) M.viewEntity(false, entity, null, false); else { t1 = previewStack._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1)) { entityType = t2.get$last(t1); M.viewEntityById(false, state.getUIState$1(entityType).get$selectedId(), entityType, entity, false, true); } else J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.FilterByEntity(entity, false)); } else if (longPress) L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([entity], type$.JSArray_legacy_BaseEntity), false); else M.viewEntity(false, entity, null, false); }, checkForChanges: function(callback, context, force, store) { if (context == null) { P.print("WARNING: context is null in hasChanges"); return; } if (force) { J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.DiscardChanges()); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.ResetSettings()); callback.call$0(); } else if (store.get$_store$_state().hasChanges$0() && D.getLayout(context) !== C.AppLayout_mobile) E.showDialog(true, new M.checkForChanges_closure(context, store, callback), context, null, true, type$.legacy_MessageDialog); else callback.call$0(); }, PersistData: function PersistData() { }, SwitchListTableLayout: function SwitchListTableLayout() { }, PopLastHistory: function PopLastHistory() { }, ViewMainScreen: function ViewMainScreen() { }, StartSaving: function StartSaving() { }, StopSaving: function StopSaving() { }, LoadStaticSuccess: function LoadStaticSuccess(t0) { this.data = t0; }, ToggleEditorLayout: function ToggleEditorLayout(t0) { this.entityType = t0; }, TogglePreviewSidebar: function TogglePreviewSidebar() { }, UpdateUserPreferences: function UpdateUserPreferences(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.appLayout = t0; _.moduleLayout = t1; _.sidebar = t2; _.menuMode = t3; _.historyMode = t4; _.enableDarkMode = t5; _.longPressSelectionIsDefault = t6; _.requireAuthentication = t7; _.isPreviewVisible = t8; _.isFilterVisible = t9; _.showKanban = t10; _.rowsPerPage = t11; _.colorTheme = t12; _.persistData = t13; _.customColors = t14; }, LoadAccountSuccess: function LoadAccountSuccess(t0, t1) { this.completer = t0; this.loginResponse = t1; }, ResendConfirmation: function ResendConfirmation() { }, ResendConfirmationFailure: function ResendConfirmationFailure() { }, ResendConfirmationSuccess: function ResendConfirmationSuccess() { }, RefreshData: function RefreshData(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.clearData = t1; _.includeStatic = t2; _.allCompanies = t3; }, RefreshDataSuccess: function RefreshDataSuccess(t0, t1) { this.completer = t0; this.data = t1; }, RefreshDataFailure: function RefreshDataFailure(t0) { this.error = t0; }, PreviewEntity: function PreviewEntity(t0, t1) { this.entityId = t0; this.entityType = t1; }, ClearPreviewStack: function ClearPreviewStack() { }, PopPreviewStack: function PopPreviewStack() { }, PopFilterStack: function PopFilterStack() { }, ClearData: function ClearData() { }, ClearLastError: function ClearLastError() { }, DiscardChanges: function DiscardChanges() { }, ClearEntityFilter: function ClearEntityFilter() { }, ClearEntitySelection: function ClearEntitySelection(t0) { this.entityType = t0; }, FilterByEntity: function FilterByEntity(t0, t1) { this.entity = t0; this.clearSelection = t1; }, FilterCompany: function FilterCompany(t0) { this.filter = t0; }, viewEntitiesByType_closure: function viewEntitiesByType_closure(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.filterEntity = t1; _.uiState = t2; _.store = t3; _.entityType = t4; }, viewEntityById_closure: function viewEntityById_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.addToStack = t0; _.store = t1; _.entityId = t2; _.entityType = t3; _.state = t4; _.filterEntity = t5; _.uiState = t6; _.showError = t7; _.force = t8; }, createEntityByType_closure: function createEntityByType_closure(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.store = t1; _.entityType = t2; _.applyFilter = t3; _.force = t4; }, createEntity_closure: function createEntity_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.filterEntity = t0; _.uiState = t1; _.context = t2; _.store = t3; _.state = t4; _.entity = t5; _.force = t6; _.completer = t7; _.cancelCompleter = t8; }, editEntity_closure: function editEntity_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.entityType = t1; _.store = t2; _.entity = t3; _.completer = t4; _.context = t5; _.localization = t6; _.subIndex = t7; }, editEntity__closure: function editEntity__closure(t0) { this.entity = t0; }, checkForChanges_closure: function checkForChanges_closure(t0, t1, t2) { this.context = t0; this.store = t1; this.callback = t2; }, checkForChanges__closure: function checkForChanges__closure(t0, t1) { this.store = t0; this.callback = t1; }, documentUIReducer: function(state, action) { var t1; state.toString; t1 = new Q.DocumentUIStateBuilder(); t1._document_state$_$v = state; new M.documentUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _updateEditing2: function($document, action) { return J.get$document$x(action); }, _viewDocumentList0: function(documentListState, action) { return documentListState.rebuild$1(new M._viewDocumentList_closure()); }, _filterDocumentsByCustom1: function(documentListState, action) { var t1 = documentListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return documentListState.rebuild$1(new M._filterDocumentsByCustom1_closure(action)); else return documentListState.rebuild$1(new M._filterDocumentsByCustom1_closure0(action)); }, _filterDocumentsByCustom2: function(documentListState, action) { var t1 = documentListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return documentListState.rebuild$1(new M._filterDocumentsByCustom2_closure(action)); else return documentListState.rebuild$1(new M._filterDocumentsByCustom2_closure0(action)); }, _filterDocumentsByState: function(documentListState, action) { var t1 = documentListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return documentListState.rebuild$1(new M._filterDocumentsByState_closure(action)); else return documentListState.rebuild$1(new M._filterDocumentsByState_closure0(action)); }, _filterDocuments: function(documentListState, action) { return documentListState.rebuild$1(new M._filterDocuments_closure(action, documentListState)); }, _sortDocuments: function(documentListState, action) { return documentListState.rebuild$1(new M._sortDocuments_closure(action)); }, _startListMultiselect3: function(documentListState, action) { return documentListState.rebuild$1(new M._startListMultiselect_closure5()); }, _addToListMultiselect3: function(documentListState, action) { return documentListState.rebuild$1(new M._addToListMultiselect_closure5(action)); }, _removeFromListMultiselect3: function(documentListState, action) { return documentListState.rebuild$1(new M._removeFromListMultiselect_closure5(action)); }, _clearListMultiselect3: function(documentListState, action) { return documentListState.rebuild$1(new M._clearListMultiselect_closure5()); }, _archiveDocumentSuccess: function(documentState, action) { return documentState.rebuild$1(new M._archiveDocumentSuccess_closure(action)); }, _deleteDocumentSuccess: function(documentState, action) { return documentState.rebuild$1(new M._deleteDocumentSuccess_closure(action)); }, _restoreDocumentSuccess: function(documentState, action) { return documentState.rebuild$1(new M._restoreDocumentSuccess_closure(action)); }, _updateDocument: function(documentState, action) { return documentState.rebuild$1(new M._updateDocument_closure(action)); }, _setLoadedDocument: function(documentState, action) { return documentState.rebuild$1(new M._setLoadedDocument_closure(action)); }, _setLoadedDocuments: function(documentState, action) { var state = documentState.rebuild$1(new M._setLoadedDocuments_closure(action)); return state.rebuild$1(new M._setLoadedDocuments_closure0(state)); }, documentUIReducer_closure: function documentUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure47: function forceSelectedReducer_closure47() { }, forceSelectedReducer_closure48: function forceSelectedReducer_closure48() { }, forceSelectedReducer_closure49: function forceSelectedReducer_closure49() { }, forceSelectedReducer_closure50: function forceSelectedReducer_closure50() { }, forceSelectedReducer_closure51: function forceSelectedReducer_closure51() { }, forceSelectedReducer_closure52: function forceSelectedReducer_closure52() { }, forceSelectedReducer_closure53: function forceSelectedReducer_closure53() { }, forceSelectedReducer_closure54: function forceSelectedReducer_closure54() { }, selectedIdReducer_closure94: function selectedIdReducer_closure94() { }, selectedIdReducer_closure95: function selectedIdReducer_closure95() { }, selectedIdReducer_closure96: function selectedIdReducer_closure96() { }, selectedIdReducer_closure97: function selectedIdReducer_closure97() { }, selectedIdReducer_closure98: function selectedIdReducer_closure98() { }, selectedIdReducer_closure99: function selectedIdReducer_closure99() { }, selectedIdReducer_closure100: function selectedIdReducer_closure100() { }, selectedIdReducer_closure101: function selectedIdReducer_closure101() { }, selectedIdReducer_closure102: function selectedIdReducer_closure102() { }, selectedIdReducer_closure103: function selectedIdReducer_closure103() { }, selectedIdReducer_closure104: function selectedIdReducer_closure104() { }, selectedIdReducer_closure105: function selectedIdReducer_closure105() { }, selectedIdReducer_closure106: function selectedIdReducer_closure106() { }, editingReducer_closure30: function editingReducer_closure30() { }, editingReducer__closure11: function editingReducer__closure11() { }, _viewDocumentList_closure: function _viewDocumentList_closure() { }, _filterDocumentsByCustom1_closure: function _filterDocumentsByCustom1_closure(t0) { this.action = t0; }, _filterDocumentsByCustom1_closure0: function _filterDocumentsByCustom1_closure0(t0) { this.action = t0; }, _filterDocumentsByCustom2_closure: function _filterDocumentsByCustom2_closure(t0) { this.action = t0; }, _filterDocumentsByCustom2_closure0: function _filterDocumentsByCustom2_closure0(t0) { this.action = t0; }, _filterDocumentsByState_closure: function _filterDocumentsByState_closure(t0) { this.action = t0; }, _filterDocumentsByState_closure0: function _filterDocumentsByState_closure0(t0) { this.action = t0; }, _filterDocuments_closure: function _filterDocuments_closure(t0, t1) { this.action = t0; this.documentListState = t1; }, _sortDocuments_closure: function _sortDocuments_closure(t0) { this.action = t0; }, _startListMultiselect_closure5: function _startListMultiselect_closure5() { }, _addToListMultiselect_closure5: function _addToListMultiselect_closure5(t0) { this.action = t0; }, _removeFromListMultiselect_closure5: function _removeFromListMultiselect_closure5(t0) { this.action = t0; }, _clearListMultiselect_closure5: function _clearListMultiselect_closure5() { }, _archiveDocumentSuccess_closure: function _archiveDocumentSuccess_closure(t0) { this.action = t0; }, _deleteDocumentSuccess_closure: function _deleteDocumentSuccess_closure(t0) { this.action = t0; }, _restoreDocumentSuccess_closure: function _restoreDocumentSuccess_closure(t0) { this.action = t0; }, _updateDocument_closure: function _updateDocument_closure(t0) { this.action = t0; }, _setLoadedDocument_closure: function _setLoadedDocument_closure(t0) { this.action = t0; }, _setLoadedDocuments_closure: function _setLoadedDocuments_closure(t0) { this.action = t0; }, _setLoadedDocuments__closure: function _setLoadedDocuments__closure() { }, _setLoadedDocuments__closure0: function _setLoadedDocuments__closure0() { }, _setLoadedDocuments_closure0: function _setLoadedDocuments_closure0(t0) { this.state = t0; }, _editExpenseCategory: function() { return new M._editExpenseCategory_closure(); }, _viewExpenseCategory: function() { return new M._viewExpenseCategory_closure(); }, _viewExpenseCategoryList: function() { return new M._viewExpenseCategoryList_closure(); }, _archiveExpenseCategory: function(repository) { return new M._archiveExpenseCategory_closure(repository); }, _deleteExpenseCategory: function(repository) { return new M._deleteExpenseCategory_closure(repository); }, _restoreExpenseCategory: function(repository) { return new M._restoreExpenseCategory_closure(repository); }, _saveExpenseCategory: function(repository) { return new M._saveExpenseCategory_closure(repository); }, _loadExpenseCategory: function(repository) { return new M._loadExpenseCategory_closure(repository); }, _loadExpenseCategories: function(repository) { return new M._loadExpenseCategories_closure(repository); }, _editExpenseCategory_closure: function _editExpenseCategory_closure() { }, _viewExpenseCategory_closure: function _viewExpenseCategory_closure() { }, _viewExpenseCategoryList_closure: function _viewExpenseCategoryList_closure() { }, _viewExpenseCategoryList__closure: function _viewExpenseCategoryList__closure() { }, _archiveExpenseCategory_closure: function _archiveExpenseCategory_closure(t0) { this.repository = t0; }, _archiveExpenseCategory__closure: function _archiveExpenseCategory__closure(t0) { this.store = t0; }, _archiveExpenseCategory__closure0: function _archiveExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveExpenseCategory__closure1: function _archiveExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _deleteExpenseCategory_closure: function _deleteExpenseCategory_closure(t0) { this.repository = t0; }, _deleteExpenseCategory__closure: function _deleteExpenseCategory__closure(t0) { this.store = t0; }, _deleteExpenseCategory__closure0: function _deleteExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteExpenseCategory__closure1: function _deleteExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _restoreExpenseCategory_closure: function _restoreExpenseCategory_closure(t0) { this.repository = t0; }, _restoreExpenseCategory__closure: function _restoreExpenseCategory__closure(t0) { this.store = t0; }, _restoreExpenseCategory__closure0: function _restoreExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreExpenseCategory__closure1: function _restoreExpenseCategory__closure1(t0, t1, t2) { this.store = t0; this.prevExpenseCategories = t1; this.action = t2; }, _saveExpenseCategory_closure: function _saveExpenseCategory_closure(t0) { this.repository = t0; }, _saveExpenseCategory__closure: function _saveExpenseCategory__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveExpenseCategory__closure0: function _saveExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategory_closure: function _loadExpenseCategory_closure(t0) { this.repository = t0; }, _loadExpenseCategory__closure: function _loadExpenseCategory__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategory__closure0: function _loadExpenseCategory__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategories_closure: function _loadExpenseCategories_closure(t0) { this.repository = t0; }, _loadExpenseCategories__closure: function _loadExpenseCategories__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadExpenseCategories__closure0: function _loadExpenseCategories__closure0(t0, t1) { this.store = t0; this.action = t1; }, handleProjectAction: function(context, projects, action) { var store, state, project, t1, projectIds, t2, client, items, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (projects.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); project = type$.legacy_ProjectEntity._as(C.JSArray_methods.get$first(projects)); t1 = H._arrayInstanceType(projects)._eval$1("MappedListIterable<1,String*>"); projectIds = P.List_List$of(new H.MappedListIterable(projects, new M.handleProjectAction_closure(), t1), true, t1._eval$1("ListIterable.E")); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; client = J.$index$asx(t1._list, t2).clientState.$get$1(0, project.clientId); t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, project, _null); break; case C.EntityAction_newTask: M.createEntity(_null, _null, context, D.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new M.handleProjectAction_closure0(project)), _null, false); break; case C.EntityAction_invoiceProject: items = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceItemEntity); C.JSArray_methods.forEach$1(projects, new M.handleProjectAction_closure1(items, context)); M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null).rebuild$1(new M.handleProjectAction_closure2(items)), _null, false); break; case C.EntityAction_newExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(client, _null, _null, _null, state, _null, _null).rebuild$1(new M.handleProjectAction_closure3(project)), _null, false); break; case C.EntityAction_clone: M.createEntity(_null, _null, context, project.get$clone(project), _null, false); break; case C.EntityAction_restore: t1 = projectIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "restored_projects"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "restored_project"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RestoreProjectRequest(t1, projectIds)); break; case C.EntityAction_archive: t1 = projectIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "archived_projects"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "archived_project"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.ArchiveProjectRequest(t1, projectIds)); break; case C.EntityAction_delete: t1 = projectIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "deleted_projects"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "deleted_project"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.DeleteProjectRequest(t1, projectIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.projectUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.StartProjectMultiselect()); t1 = projects.length; if (t1 === 0) break; for (_i = 0; _i < projects.length; projects.length === t1 || (0, H.throwConcurrentModificationError)(projects), ++_i) { project = projects[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.projectUIState.listUIState; t3 = J.get$id$x(project); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new M.AddToProjectMultiselect(project)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new M.RemoveFromProjectMultiselect(project)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([project], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewProjectList: function ViewProjectList() { }, ViewProject: function ViewProject(t0) { this.projectId = t0; }, EditProject: function EditProject(t0, t1, t2) { this.project = t0; this.completer = t1; this.cancelCompleter = t2; }, UpdateProject: function UpdateProject(t0) { this.project = t0; }, LoadProject: function LoadProject(t0, t1) { this.completer = t0; this.projectId = t1; }, LoadProjects: function LoadProjects() { }, LoadProjectRequest: function LoadProjectRequest() { }, LoadProjectFailure: function LoadProjectFailure(t0) { this.error = t0; }, LoadProjectSuccess: function LoadProjectSuccess(t0) { this.project = t0; }, LoadProjectsRequest: function LoadProjectsRequest() { }, LoadProjectsFailure: function LoadProjectsFailure(t0) { this.error = t0; }, LoadProjectsSuccess: function LoadProjectsSuccess(t0) { this.projects = t0; }, SaveProjectRequest: function SaveProjectRequest(t0, t1) { this.completer = t0; this.project = t1; }, SaveProjectSuccess: function SaveProjectSuccess(t0) { this.project = t0; }, AddProjectSuccess: function AddProjectSuccess(t0) { this.project = t0; }, SaveProjectFailure: function SaveProjectFailure() { }, ArchiveProjectRequest: function ArchiveProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, ArchiveProjectSuccess: function ArchiveProjectSuccess(t0) { this.projects = t0; }, ArchiveProjectFailure: function ArchiveProjectFailure() { }, DeleteProjectRequest: function DeleteProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, DeleteProjectSuccess: function DeleteProjectSuccess(t0) { this.projects = t0; }, DeleteProjectFailure: function DeleteProjectFailure() { }, RestoreProjectRequest: function RestoreProjectRequest(t0, t1) { this.completer = t0; this.projectIds = t1; }, RestoreProjectSuccess: function RestoreProjectSuccess(t0) { this.projects = t0; }, RestoreProjectFailure: function RestoreProjectFailure() { }, FilterProjects: function FilterProjects(t0) { this.filter = t0; }, SortProjects: function SortProjects(t0) { this.field = t0; }, FilterProjectsByState: function FilterProjectsByState(t0) { this.state = t0; }, FilterProjectsByCustom1: function FilterProjectsByCustom1(t0) { this.value = t0; }, FilterProjectsByCustom2: function FilterProjectsByCustom2(t0) { this.value = t0; }, FilterProjectsByCustom3: function FilterProjectsByCustom3(t0) { this.value = t0; }, FilterProjectsByCustom4: function FilterProjectsByCustom4(t0) { this.value = t0; }, handleProjectAction_closure: function handleProjectAction_closure() { }, handleProjectAction_closure0: function handleProjectAction_closure0(t0) { this.project = t0; }, handleProjectAction_closure1: function handleProjectAction_closure1(t0, t1) { this.items = t0; this.context = t1; }, handleProjectAction_closure2: function handleProjectAction_closure2(t0) { this.items = t0; }, handleProjectAction_closure3: function handleProjectAction_closure3(t0) { this.project = t0; }, StartProjectMultiselect: function StartProjectMultiselect() { }, AddToProjectMultiselect: function AddToProjectMultiselect(t0) { this.entity = t0; }, RemoveFromProjectMultiselect: function RemoveFromProjectMultiselect(t0) { this.entity = t0; }, ClearProjectMultiselect: function ClearProjectMultiselect() { }, SaveProjectDocumentRequest: function SaveProjectDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.project = t2; }, SaveProjectDocumentFailure: function SaveProjectDocumentFailure() { }, UpdateProjectTab: function UpdateProjectTab(t0) { this.tabIndex = t0; }, _$SubscriptionState$_: function(list, map) { var _s17_ = "SubscriptionState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "list")); return new M._$SubscriptionState(map, list); }, _$SubscriptionUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("SubscriptionUIState", "listUIState")); return new M._$SubscriptionUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, SubscriptionState: function SubscriptionState() { }, SubscriptionState_loadSubscriptions_closure0: function SubscriptionState_loadSubscriptions_closure0() { }, SubscriptionState_loadSubscriptions_closure1: function SubscriptionState_loadSubscriptions_closure1() { }, SubscriptionState_loadSubscriptions_closure: function SubscriptionState_loadSubscriptions_closure(t0, t1) { this.$this = t0; this.map = t1; }, SubscriptionUIState: function SubscriptionUIState() { }, _$SubscriptionStateSerializer: function _$SubscriptionStateSerializer() { }, _$SubscriptionUIStateSerializer: function _$SubscriptionUIStateSerializer() { }, _$SubscriptionState: function _$SubscriptionState(t0, t1) { this.map = t0; this.list = t1; this._subscription_state$__hashCode = null; }, SubscriptionStateBuilder: function SubscriptionStateBuilder() { this._subscription_state$_list = this._subscription_state$_map = this._subscription_state$_$v = null; }, _$SubscriptionUIState: function _$SubscriptionUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._subscription_state$__hashCode = null; }, SubscriptionUIStateBuilder: function SubscriptionUIStateBuilder() { var _ = this; _._subscription_state$_cancelCompleter = _._subscription_state$_saveCompleter = _._subscription_state$_tabIndex = _._subscription_state$_forceSelected = _._subscription_state$_selectedId = _._subscription_state$_listUIState = _._subscription_state$_editing = _._subscription_state$_$v = null; }, _SubscriptionUIState_Object_EntityUIState: function _SubscriptionUIState_Object_EntityUIState() { }, _$TaskState$_: function(list, map) { var _s9_ = "TaskState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "list")); return new M._$TaskState(map, list); }, _$TaskUIState$_: function(cancelCompleter, editing, editingTimeIndex, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("TaskUIState", "listUIState")); return new M._$TaskUIState(editing, editingTimeIndex, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaskState: function TaskState() { }, TaskState_loadTasks_closure0: function TaskState_loadTasks_closure0() { }, TaskState_loadTasks_closure1: function TaskState_loadTasks_closure1() { }, TaskState_loadTasks_closure: function TaskState_loadTasks_closure(t0, t1) { this.$this = t0; this.map = t1; }, TaskUIState: function TaskUIState() { }, _$TaskStateSerializer: function _$TaskStateSerializer() { }, _$TaskUIStateSerializer: function _$TaskUIStateSerializer() { }, _$TaskState: function _$TaskState(t0, t1) { this.map = t0; this.list = t1; this._task_state$__hashCode = null; }, TaskStateBuilder: function TaskStateBuilder() { this._task_state$_list = this._task_state$_map = this._task_state$_$v = null; }, _$TaskUIState: function _$TaskUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editing = t0; _.editingTimeIndex = t1; _.listUIState = t2; _.selectedId = t3; _.forceSelected = t4; _.tabIndex = t5; _.saveCompleter = t6; _.cancelCompleter = t7; _._task_state$__hashCode = null; }, TaskUIStateBuilder: function TaskUIStateBuilder() { var _ = this; _._task_state$_cancelCompleter = _._task_state$_saveCompleter = _._task_state$_tabIndex = _._task_state$_forceSelected = _._task_state$_selectedId = _._task_state$_listUIState = _._editingTimeIndex = _._task_state$_editing = _._task_state$_$v = null; }, _TaskUIState_Object_EntityUIState: function _TaskUIState_Object_EntityUIState() { }, _editUser: function() { return new M._editUser_closure(); }, _viewUser: function() { return new M._viewUser_closure(); }, _viewUserList: function() { return new M._viewUserList_closure0(); }, _archiveUser: function(repository) { return new M._archiveUser_closure(repository); }, _deleteUser: function(repository) { return new M._deleteUser_closure(repository); }, _restoreUser: function(repository) { return new M._restoreUser_closure(repository); }, _removeUser: function(repository) { return new M._removeUser_closure(repository); }, _resendInvite: function(repository) { return new M._resendInvite_closure(repository); }, _saveUser: function(repository) { return new M._saveUser_closure(repository); }, _loadUser: function(repository) { return new M._loadUser_closure(repository); }, _loadUsers: function(repository) { return new M._loadUsers_closure(repository); }, _editUser_closure: function _editUser_closure() { }, _viewUser_closure: function _viewUser_closure() { }, _viewUserList_closure0: function _viewUserList_closure0() { }, _viewUserList__closure: function _viewUserList__closure() { }, _archiveUser_closure: function _archiveUser_closure(t0) { this.repository = t0; }, _archiveUser__closure: function _archiveUser__closure(t0) { this.store = t0; }, _archiveUser__closure0: function _archiveUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveUser__closure1: function _archiveUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _deleteUser_closure: function _deleteUser_closure(t0) { this.repository = t0; }, _deleteUser__closure: function _deleteUser__closure(t0) { this.store = t0; }, _deleteUser__closure0: function _deleteUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteUser__closure1: function _deleteUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _restoreUser_closure: function _restoreUser_closure(t0) { this.repository = t0; }, _restoreUser__closure: function _restoreUser__closure(t0) { this.store = t0; }, _restoreUser__closure0: function _restoreUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreUser__closure1: function _restoreUser__closure1(t0, t1, t2) { this.store = t0; this.prevUsers = t1; this.action = t2; }, _removeUser_closure: function _removeUser_closure(t0) { this.repository = t0; }, _removeUser__closure: function _removeUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _removeUser__closure0: function _removeUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _resendInvite_closure: function _resendInvite_closure(t0) { this.repository = t0; }, _resendInvite__closure: function _resendInvite__closure(t0, t1) { this.store = t0; this.action = t1; }, _resendInvite__closure0: function _resendInvite__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveUser_closure: function _saveUser_closure(t0) { this.repository = t0; }, _saveUser__closure: function _saveUser__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveUser__closure0: function _saveUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadUser_closure: function _loadUser_closure(t0) { this.repository = t0; }, _loadUser__closure: function _loadUser__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadUser__closure0: function _loadUser__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadUsers_closure: function _loadUsers_closure(t0) { this.repository = t0; }, _loadUsers__closure: function _loadUsers__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadUsers__closure0: function _loadUsers__closure0(t0, t1) { this.store = t0; this.action = t1; }, ErrorDialog: function ErrorDialog(t0, t1, t2) { this.error = t0; this.clearErrorOnDismiss = t1; this.key = t2; }, ErrorDialog_build_closure: function ErrorDialog_build_closure(t0, t1) { this.context = t0; this.store = t1; }, ErrorDialog_build__closure: function ErrorDialog_build__closure(t0) { this.store = t0; }, ErrorDialog_build_closure0: function ErrorDialog_build_closure0(t0) { this._box_0 = t0; }, ErrorDialog_build_closure1: function ErrorDialog_build_closure1(t0, t1, t2) { this.$this = t0; this.store = t1; this.context = t2; }, TimePicker$: function(isEndTime, key, labelText, onSelected, selectedDateTime) { return new M.TimePicker(labelText, selectedDateTime, onSelected, key); }, TimePicker: function TimePicker(t0, t1, t2, t3) { var _ = this; _.labelText = t0; _.selectedDateTime = t1; _.onSelected = t2; _.key = t3; }, _TimePickerState: function _TimePickerState(t0, t1, t2) { var _ = this; _._time_picker$_textController = t0; _._time_picker$_focusNode = t1; _._widget = _._time_picker$_pendingValue = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _TimePickerState__onFoucsChanged_closure: function _TimePickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _TimePickerState__showTimePicker_closure: function _TimePickerState__showTimePicker_closure() { }, _TimePickerState_build_closure: function _TimePickerState_build_closure(t0) { this.$this = t0; }, _TimePickerState_build_closure0: function _TimePickerState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _TimePickerState_build__closure: function _TimePickerState_build__closure() { }, _TimePickerState_build__closure0: function _TimePickerState_build__closure0() { }, _TimePickerState_build__closure1: function _TimePickerState_build__closure1(t0, t1, t2) { this.$this = t0; this.selectedDate = t1; this.context = t2; }, ClientEdit: function ClientEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientEditState: function _ClientEditState(t0, t1) { var _ = this; _._client_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ClientEditState_build_closure: function _ClientEditState_build_closure(t0) { this.viewModel = t0; }, _ClientEditState_build_closure0: function _ClientEditState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ClientEditState_build__closure: function _ClientEditState_build__closure() { }, __ClientEditState_State_SingleTickerProviderStateMixin: function __ClientEditState_State_SingleTickerProviderStateMixin() { }, ClientEditSettings: function ClientEditSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditSettingsState: function ClientEditSettingsState(t0, t1, t2) { var _ = this; _._client_edit_settings$_taskRateController = t0; _._client_edit_settings$_controllers = null; _._client_edit_settings$_debouncer = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, ClientEditSettingsState_didChangeDependencies_closure: function ClientEditSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditSettingsState_didChangeDependencies_closure0: function ClientEditSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditSettingsState_dispose_closure: function ClientEditSettingsState_dispose_closure(t0) { this.$this = t0; }, ClientEditSettingsState__onChanged_closure: function ClientEditSettingsState__onChanged_closure(t0) { this.$this = t0; }, ClientEditSettingsState__onChanged_closure0: function ClientEditSettingsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build_closure: function ClientEditSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure3: function ClientEditSettingsState_build__closure3(t0) { this.currency = t0; }, ClientEditSettingsState_build_closure0: function ClientEditSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure2: function ClientEditSettingsState_build__closure2(t0) { this.language = t0; }, ClientEditSettingsState_build_closure1: function ClientEditSettingsState_build_closure1(t0) { this.state = t0; }, ClientEditSettingsState_build_closure2: function ClientEditSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure1: function ClientEditSettingsState_build__closure1(t0) { this.numDays = t0; }, ClientEditSettingsState_build_closure3: function ClientEditSettingsState_build_closure3(t0) { this.state = t0; }, ClientEditSettingsState_build_closure4: function ClientEditSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure0: function ClientEditSettingsState_build__closure0(t0) { this.numDays = t0; }, ClientEditSettingsState_build_closure5: function ClientEditSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditSettingsState_build__closure: function ClientEditSettingsState_build__closure(t0) { this.value = t0; }, ClientEditVM_ClientEditVM$fromStore: function(store) { var t3, t4, state = store.get$_store$_state(), t1 = state.uiState, client = t1.clientUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).userCompany.company; t1 = t3.$index(t2, t1).clientState.map; t2 = client.id; J.$index$asx(t1._map$_map, t2); return new M.ClientEditVM(state, t4, client, new M.ClientEditVM_ClientEditVM$fromStore_closure(store), new M.ClientEditVM_ClientEditVM$fromStore_closure0(store, state), new M.ClientEditVM_ClientEditVM$fromStore_closure1(state, store), state.staticState, new M.ClientEditVM_ClientEditVM$fromStore_closure2(store, client), new M.ClientEditVM_ClientEditVM$fromStore_closure3(store, client)); }, ClientEditScreen: function ClientEditScreen(t0) { this.key = t0; }, ClientEditScreen_build_closure0: function ClientEditScreen_build_closure0() { }, ClientEditScreen_build_closure: function ClientEditScreen_build_closure() { }, ClientEditVM: function ClientEditVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.company = t1; _.client = t2; _.onChanged = t3; _.onSavePressed = t4; _.onCancelPressed = t5; _.staticState = t6; _.copyShippingAddress = t7; _.copyBillingAddress = t8; }, ClientEditVM_ClientEditVM$fromStore_closure: function ClientEditVM_ClientEditVM$fromStore_closure(t0) { this.store = t0; }, ClientEditVM_ClientEditVM$fromStore_closure3: function ClientEditVM_ClientEditVM$fromStore_closure3(t0, t1) { this.store = t0; this.client = t1; }, ClientEditVM_ClientEditVM$fromStore__closure: function ClientEditVM_ClientEditVM$fromStore__closure(t0) { this.client = t0; }, ClientEditVM_ClientEditVM$fromStore_closure2: function ClientEditVM_ClientEditVM$fromStore_closure2(t0, t1) { this.store = t0; this.client = t1; }, ClientEditVM_ClientEditVM$fromStore__closure0: function ClientEditVM_ClientEditVM$fromStore__closure0(t0) { this.client = t0; }, ClientEditVM_ClientEditVM$fromStore_closure1: function ClientEditVM_ClientEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, ClientEditVM_ClientEditVM$fromStore_closure0: function ClientEditVM_ClientEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ClientEditVM_ClientEditVM$fromStore__closure1: function ClientEditVM_ClientEditVM$fromStore__closure1(t0, t1, t2) { this.store = t0; this.context = t1; this.state = t2; }, ClientEditVM_ClientEditVM$fromStore___closure: function ClientEditVM_ClientEditVM$fromStore___closure() { }, ClientEditVM_ClientEditVM$fromStore___closure0: function ClientEditVM_ClientEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.client = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ClientEditVM_ClientEditVM$fromStore___closure1: function ClientEditVM_ClientEditVM$fromStore___closure1() { }, ClientEditVM_ClientEditVM$fromStore____closure: function ClientEditVM_ClientEditVM$fromStore____closure(t0) { this.error = t0; }, CreditEdit: function CreditEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _CreditEditState: function _CreditEditState(t0, t1) { var _ = this; _._credit_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CreditEditState_build_closure1: function _CreditEditState_build_closure1(t0) { this.viewModel = t0; }, _CreditEditState_build_closure2: function _CreditEditState_build_closure2(t0) { this.$this = t0; }, _CreditEditState_build_closure0: function _CreditEditState_build_closure0(t0) { this.$this = t0; }, _CreditEditState_build_closure: function _CreditEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _CreditEditState_build__closure: function _CreditEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _CreditEditState_build___closure: function _CreditEditState_build___closure() { }, _CreditEditState_build___closure1: function _CreditEditState_build___closure1(t0) { this.viewModel = t0; }, _CreditEditState_build___closure0: function _CreditEditState_build___closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __CreditEditState_State_SingleTickerProviderStateMixin: function __CreditEditState_State_SingleTickerProviderStateMixin() { }, CreditViewVM_CreditViewVM$fromStore: function(store) { var t4, t5, credit, t6, client, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).creditState.map; t2 = t2.creditUIState.selectedId; credit = J.$index$asx(t5._map$_map, t2); if (credit == null) credit = Q.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null); t2 = store.get$_store$_state(); t5 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t6 = credit.clientId; client = J.$index$asx(J.$index$asx(t5._list, t2).clientState.map._map$_map, t6); if (client == null) client = T.ClientEntity_ClientEntity(t6, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; credit.get$isNew(); return new M.CreditViewVM(state, t1, credit, client, new M.CreditViewVM_CreditViewVM$fromStore_closure(credit), new M.CreditViewVM_CreditViewVM$fromStore_closure0(new M.CreditViewVM_CreditViewVM$fromStore__handleRefresh(store, credit)), new M.CreditViewVM_CreditViewVM$fromStore_closure1(store, credit), new M.CreditViewVM_CreditViewVM$fromStore_closure2(store, credit), _null, new M.CreditViewVM_CreditViewVM$fromStore_closure3(store)); }, CreditViewScreen: function CreditViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, CreditViewScreen_build_closure0: function CreditViewScreen_build_closure0() { }, CreditViewScreen_build_closure: function CreditViewScreen_build_closure(t0) { this.$this = t0; }, CreditViewVM: function CreditViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, CreditViewVM_CreditViewVM$fromStore__handleRefresh: function CreditViewVM_CreditViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore_closure: function CreditViewVM_CreditViewVM$fromStore_closure(t0) { this.credit = t0; }, CreditViewVM_CreditViewVM$fromStore_closure0: function CreditViewVM_CreditViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, CreditViewVM_CreditViewVM$fromStore_closure1: function CreditViewVM_CreditViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore__closure0: function CreditViewVM_CreditViewVM$fromStore__closure0(t0) { this.context = t0; }, CreditViewVM_CreditViewVM$fromStore__closure1: function CreditViewVM_CreditViewVM$fromStore__closure1(t0) { this.context = t0; }, CreditViewVM_CreditViewVM$fromStore___closure: function CreditViewVM_CreditViewVM$fromStore___closure(t0) { this.error = t0; }, CreditViewVM_CreditViewVM$fromStore_closure2: function CreditViewVM_CreditViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore__closure: function CreditViewVM_CreditViewVM$fromStore__closure(t0, t1) { this.store = t0; this.credit = t1; }, CreditViewVM_CreditViewVM$fromStore_closure3: function CreditViewVM_CreditViewVM$fromStore_closure3(t0) { this.store = t0; }, ExpenseEditDetails: function ExpenseEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditDetailsState: function ExpenseEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._expense_edit_details$_numberController = t0; _._expense_edit_details$_amountController = t1; _._expense_edit_details$_custom1Controller = t2; _._expense_edit_details$_custom2Controller = t3; _._expense_edit_details$_custom3Controller = t4; _._expense_edit_details$_custom4Controller = t5; _._expense_edit_details$_controllers = null; _._expense_edit_details$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, ExpenseEditDetailsState_didChangeDependencies_closure: function ExpenseEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState_didChangeDependencies_closure0: function ExpenseEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditDetailsState_dispose_closure: function ExpenseEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState__onChanged_closure: function ExpenseEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditDetailsState__onChanged_closure0: function ExpenseEditDetailsState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build_closure0: function ExpenseEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure17: function ExpenseEditDetailsState_build__closure17(t0) { this.vendor = t0; }, ExpenseEditDetailsState_build_closure: function ExpenseEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, ExpenseEditDetailsState_build_closure2: function ExpenseEditDetailsState_build_closure2(t0, t1, t2) { this.company = t0; this.viewModel = t1; this.expense = t2; }, ExpenseEditDetailsState_build__closure16: function ExpenseEditDetailsState_build__closure16(t0, t1) { this.client = t0; this.currencyId = t1; }, ExpenseEditDetailsState_build_closure1: function ExpenseEditDetailsState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, ExpenseEditDetailsState_build_closure3: function ExpenseEditDetailsState_build_closure3(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.expense = t2; }, ExpenseEditDetailsState_build__closure15: function ExpenseEditDetailsState_build__closure15(t0, t1) { this.project = t0; this.expense = t1; }, ExpenseEditDetailsState_build_closure4: function ExpenseEditDetailsState_build_closure4(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.expense = t2; }, ExpenseEditDetailsState_build__closure14: function ExpenseEditDetailsState_build__closure14(t0) { this.category = t0; }, ExpenseEditDetailsState_build_closure5: function ExpenseEditDetailsState_build_closure5(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure13: function ExpenseEditDetailsState_build__closure13(t0) { this.userId = t0; }, ExpenseEditDetailsState_build_closure6: function ExpenseEditDetailsState_build_closure6(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure12: function ExpenseEditDetailsState_build__closure12(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure7: function ExpenseEditDetailsState_build_closure7(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure11: function ExpenseEditDetailsState_build__closure11(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure8: function ExpenseEditDetailsState_build_closure8(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure10: function ExpenseEditDetailsState_build__closure10(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure9: function ExpenseEditDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure9: function ExpenseEditDetailsState_build__closure9(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure10: function ExpenseEditDetailsState_build_closure10(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure8: function ExpenseEditDetailsState_build__closure8(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure11: function ExpenseEditDetailsState_build_closure11(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure7: function ExpenseEditDetailsState_build__closure7(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure12: function ExpenseEditDetailsState_build_closure12(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure6: function ExpenseEditDetailsState_build__closure6(t0) { this.name = t0; }, ExpenseEditDetailsState_build_closure13: function ExpenseEditDetailsState_build_closure13(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure5: function ExpenseEditDetailsState_build__closure5(t0) { this.amount = t0; }, ExpenseEditDetailsState_build_closure14: function ExpenseEditDetailsState_build_closure14(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure4: function ExpenseEditDetailsState_build__closure4(t0) { this.taxRate = t0; }, ExpenseEditDetailsState_build_closure15: function ExpenseEditDetailsState_build_closure15(t0) { this.viewModel = t0; }, ExpenseEditDetailsState_build__closure3: function ExpenseEditDetailsState_build__closure3(t0) { this.currency = t0; }, ExpenseEditDetailsState_build_closure16: function ExpenseEditDetailsState_build_closure16(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure2: function ExpenseEditDetailsState_build__closure2(t0) { this.date = t0; }, ExpenseEditDetailsState_build_closure20: function ExpenseEditDetailsState_build_closure20(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure0: function ExpenseEditDetailsState_build__closure0(t0) { this.value = t0; }, ExpenseEditDetailsState_build_closure17: function ExpenseEditDetailsState_build_closure17(t0) { this.localization = t0; }, ExpenseEditDetailsState_build_closure18: function ExpenseEditDetailsState_build_closure18(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure1: function ExpenseEditDetailsState_build__closure1(t0) { this.date = t0; }, ExpenseEditDetailsState_build_closure21: function ExpenseEditDetailsState_build_closure21(t0, t1) { this.viewModel = t0; this.expense = t1; }, ExpenseEditDetailsState_build__closure: function ExpenseEditDetailsState_build__closure(t0) { this.value = t0; }, ExpenseEditDetailsState_build_closure19: function ExpenseEditDetailsState_build_closure19() { }, InvoiceEditVM_InvoiceEditVM$fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.invoiceUIState, invoice = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t1).userCompany.company; t2 = t2.editingItemIndex; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = J.$index$asx(t4._list, t3).invoiceState.map; t4 = invoice.id; J.$index$asx(t3._map$_map, t4); return new M.InvoiceEditVM(state, t1, invoice, t2, new M.InvoiceEditVM_InvoiceEditVM$fromStore_closure(store), new M.InvoiceEditVM_InvoiceEditVM$fromStore_closure0(state, store, invoice), new M.InvoiceEditVM_InvoiceEditVM$fromStore_closure1(state, store)); }, InvoiceEditScreen: function InvoiceEditScreen(t0) { this.key = t0; }, InvoiceEditScreen_build_closure0: function InvoiceEditScreen_build_closure0() { }, InvoiceEditScreen_build_closure: function InvoiceEditScreen_build_closure() { }, AbstractInvoiceEditVM: function AbstractInvoiceEditVM() { }, InvoiceEditVM: function InvoiceEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, InvoiceEditVM_InvoiceEditVM$fromStore_closure: function InvoiceEditVM_InvoiceEditVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore__closure0: function InvoiceEditVM_InvoiceEditVM$fromStore__closure0(t0, t1) { this.store = t0; this.action = t1; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure0: function InvoiceEditVM_InvoiceEditVM$fromStore___closure0(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure1: function InvoiceEditVM_InvoiceEditVM$fromStore___closure1(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure2: function InvoiceEditVM_InvoiceEditVM$fromStore___closure2(t0) { this.localization = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure3: function InvoiceEditVM_InvoiceEditVM$fromStore___closure3(t0, t1, t2, t3, t4, t5) { var _ = this; _.invoice = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure4: function InvoiceEditVM_InvoiceEditVM$fromStore___closure4() { }, InvoiceEditVM_InvoiceEditVM$fromStore____closure: function InvoiceEditVM_InvoiceEditVM$fromStore____closure(t0) { this.error = t0; }, InvoiceEditVM_InvoiceEditVM$fromStore_closure0: function InvoiceEditVM_InvoiceEditVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.store = t1; this.invoice = t2; }, InvoiceEditVM_InvoiceEditVM$fromStore__closure: function InvoiceEditVM_InvoiceEditVM$fromStore__closure(t0, t1) { this.clientId = t0; this.client = t1; }, InvoiceEditVM_InvoiceEditVM$fromStore___closure: function InvoiceEditVM_InvoiceEditVM$fromStore___closure() { }, InvoiceEditVM_InvoiceEditVM$fromStore_closure1: function InvoiceEditVM_InvoiceEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, EmailInvoiceVM_EmailInvoiceVM$fromStore: function(store, invoice) { var t4, t5, state = store.get$_store$_state(), t1 = state.isLoading, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).userCompany.company; t3 = t4.$index(t2, t3).clientState.map; t2 = invoice.clientId; t3 = J.$index$asx(t3._map$_map, t2); t2 = t3 == null ? T.ClientEntity_ClientEntity(t2, null, null) : t3; return new M.EmailInvoiceVM(state, t1, t5, invoice, t2, new M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure(store, invoice), new M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure0(invoice, store)); }, InvoiceEmailScreen: function InvoiceEmailScreen(t0) { this.key = t0; }, InvoiceEmailScreen_build_closure1: function InvoiceEmailScreen_build_closure1() { }, InvoiceEmailScreen_build_closure0: function InvoiceEmailScreen_build_closure0() { }, InvoiceEmailScreen_build_closure: function InvoiceEmailScreen_build_closure() { }, EmailEntityVM: function EmailEntityVM() { }, EmailInvoiceVM: function EmailInvoiceVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.isLoading = t1; _.company = t2; _.invoice = t3; _.client = t4; _.loadClient = t5; _.onSendPressed = t6; }, EmailInvoiceVM_EmailInvoiceVM$fromStore_closure: function EmailInvoiceVM_EmailInvoiceVM$fromStore_closure(t0, t1) { this.store = t0; this.invoice = t1; }, EmailInvoiceVM_EmailInvoiceVM$fromStore_closure0: function EmailInvoiceVM_EmailInvoiceVM$fromStore_closure0(t0, t1) { this.invoice = t0; this.store = t1; }, EmailInvoiceVM_EmailInvoiceVM$fromStore__closure: function EmailInvoiceVM_EmailInvoiceVM$fromStore__closure(t0) { this.invoice = t0; }, InvoiceListItem: function InvoiceListItem(t0, t1, t2, t3) { var _ = this; _.invoice = t0; _.filter = t1; _.showCheckbox = t2; _.key = t3; }, InvoiceListItem_build_closure: function InvoiceListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; _.statusLabel = t11; _.statusColor = t12; }, InvoiceListItem_build__closure2: function InvoiceListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceListItem_build__closure1: function InvoiceListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceListItem_build__closure: function InvoiceListItem_build__closure() { }, InvoiceListItem_build__closure0: function InvoiceListItem_build__closure0(t0) { this.$this = t0; }, InvoiceListItem_build__closure5: function InvoiceListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceListItem_build__closure4: function InvoiceListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, InvoiceListItem_build__closure3: function InvoiceListItem_build__closure3() { }, PaymentEdit: function PaymentEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentEditState: function _PaymentEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._payment_edit$_amountController = t0; _._numberController = t1; _._transactionReferenceController = t2; _._privateNotesController = t3; _._payment_edit$_custom1Controller = t4; _._payment_edit$_custom2Controller = t5; _._payment_edit$_custom3Controller = t6; _._payment_edit$_custom4Controller = t7; _._exchangeRateController = t8; _._payment_edit$_controllers = t9; _._payment_edit$_debouncer = t10; _._showConvertCurrency = _.autoValidate = false; _._convertedAmount = 0; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, _PaymentEditState_didChangeDependencies_closure: function _PaymentEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentEditState_didChangeDependencies_closure0: function _PaymentEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentEditState_dispose_closure: function _PaymentEditState_dispose_closure(t0) { this.$this = t0; }, _PaymentEditState__onChanged_closure: function _PaymentEditState__onChanged_closure(t0) { this.$this = t0; }, _PaymentEditState__onChanged_closure0: function _PaymentEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.payment = t1; }, _PaymentEditState_convertCurrency_closure: function _PaymentEditState_convertCurrency_closure(t0, t1) { this._box_0 = t0; this.currency = t1; }, _PaymentEditState_build_closure: function _PaymentEditState_build_closure() { }, _PaymentEditState_build_closure0: function _PaymentEditState_build_closure0() { }, _PaymentEditState_build_closure1: function _PaymentEditState_build_closure1(t0) { this._box_0 = t0; }, _PaymentEditState_build_closure2: function _PaymentEditState_build_closure2(t0) { this._box_0 = t0; }, _PaymentEditState_build_closure4: function _PaymentEditState_build_closure4(t0) { this.context = t0; }, _PaymentEditState_build_closure3: function _PaymentEditState_build_closure3(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure5: function _PaymentEditState_build__closure5(t0) { this.client = t0; }, _PaymentEditState_build_closure5: function _PaymentEditState_build_closure5(t0) { this.localization = t0; }, _PaymentEditState_build_closure7: function _PaymentEditState_build_closure7(t0) { this.context = t0; }, _PaymentEditState_build_closure6: function _PaymentEditState_build_closure6(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure4: function _PaymentEditState_build__closure4(t0) { this.date = t0; }, _PaymentEditState_build_closure8: function _PaymentEditState_build_closure8(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure3: function _PaymentEditState_build__closure3(t0) { this.paymentType = t0; }, _PaymentEditState_build_closure9: function _PaymentEditState_build_closure9(t0, t1) { this.viewModel = t0; this.payment = t1; }, _PaymentEditState_build__closure2: function _PaymentEditState_build__closure2(t0) { this.value = t0; }, _PaymentEditState_build_closure10: function _PaymentEditState_build_closure10(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.payment = t2; _.state = t3; }, _PaymentEditState_build__closure0: function _PaymentEditState_build__closure0() { }, _PaymentEditState_build__closure1: function _PaymentEditState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _PaymentEditState_build_closure11: function _PaymentEditState_build_closure11(t0) { this.$this = t0; }, _PaymentEditState_build_closure13: function _PaymentEditState_build_closure13(t0, t1, t2, t3, t4) { var _ = this; _._box_0 = t0; _.$this = t1; _.payment = t2; _.context = t3; _.viewModel = t4; }, _PaymentEditState_build__closure: function _PaymentEditState_build__closure(t0) { this.exchangeRate = t0; }, _PaymentEditState_build_closure12: function _PaymentEditState_build_closure12(t0) { this.$this = t0; }, _PaymentEditState_build_onSavePressed: function _PaymentEditState_build_onSavePressed(t0, t1) { this.$this = t0; this.viewModel = t1; }, _PaymentEditState_build_onSavePressed_closure: function _PaymentEditState_build_onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _PaymentEditState_build_closure14: function _PaymentEditState_build_closure14(t0) { this.context = t0; }, _PaymentEditState_build_closure15: function _PaymentEditState_build_closure15(t0, t1) { this.onSavePressed = t0; this.context = t1; }, _PaymentEditState_build_closure16: function _PaymentEditState_build_closure16(t0) { this.viewModel = t0; }, PaymentableEditor: function PaymentableEditor(t0, t1, t2, t3, t4, t5) { var _ = this; _.viewModel = t0; _.paymentable = t1; _.index = t2; _.entityType = t3; _.limit = t4; _.key = t5; }, _PaymentableEditorState: function _PaymentableEditorState(t0, t1, t2) { var _ = this; _._payment_edit$_amountController = t0; _._payment_edit$_creditId = _._payment_edit$_invoiceId = null; _._payment_edit$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _PaymentableEditorState_didChangeDependencies_closure: function _PaymentableEditorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentableEditorState_didChangeDependencies_closure0: function _PaymentableEditorState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentableEditorState_dispose_closure0: function _PaymentableEditorState_dispose_closure0(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure: function _PaymentableEditorState__onChanged_closure(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure0: function _PaymentableEditorState__onChanged_closure0(t0) { this.$this = t0; }, _PaymentableEditorState__onChanged_closure1: function _PaymentableEditorState__onChanged_closure1(t0) { this._box_0 = t0; }, _PaymentableEditorState__onChanged_closure2: function _PaymentableEditorState__onChanged_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, _PaymentableEditorState__onChanged_closure3: function _PaymentableEditorState__onChanged_closure3(t0) { this._box_0 = t0; }, _PaymentableEditorState__onChanged_closure4: function _PaymentableEditorState__onChanged_closure4(t0, t1) { this._box_0 = t0; this.$this = t1; }, _PaymentableEditorState__onChanged_closure5: function _PaymentableEditorState__onChanged_closure5(t0) { this.clientId = t0; }, _PaymentableEditorState_build_closure: function _PaymentableEditorState_build_closure() { }, _PaymentableEditorState_build_closure0: function _PaymentableEditorState_build_closure0() { }, _PaymentableEditorState_build_closure2: function _PaymentableEditorState_build_closure2(t0) { this.localization = t0; }, _PaymentableEditorState_build_closure1: function _PaymentableEditorState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _PaymentableEditorState_build_closure3: function _PaymentableEditorState_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, _PaymentableEditorState_build_closure4: function _PaymentableEditorState_build_closure4(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.payment = t2; }, _PaymentableEditorState_build__closure: function _PaymentableEditorState_build__closure(t0) { this.$this = t0; }, _PaymentableEditorState_build__closure0: function _PaymentableEditorState_build__closure0(t0) { this.$this = t0; }, ProjectView: function ProjectView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ProjectViewState: function _ProjectViewState(t0, t1) { var _ = this; _._project_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ProjectViewState_build_closure0: function _ProjectViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.project = t2; }, _ProjectViewState_build__closure: function _ProjectViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectViewState_build__closure0: function _ProjectViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectViewState_build_closure: function _ProjectViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, __ProjectViewState_State_SingleTickerProviderStateMixin: function __ProjectViewState_State_SingleTickerProviderStateMixin() { }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, recurringExpense = t1.recurringExpenseUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).recurringExpenseState.map; t2 = recurringExpense.id; J.$index$asx(t1._map$_map, t2); return new M.RecurringExpenseEditVM(recurringExpense, new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure(store), new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0(store, state), new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1(state, store), state, null, null); }, RecurringExpenseEditScreen: function RecurringExpenseEditScreen(t0) { this.key = t0; }, RecurringExpenseEditScreen_build_closure0: function RecurringExpenseEditScreen_build_closure0() { }, RecurringExpenseEditScreen_build_closure: function RecurringExpenseEditScreen_build_closure() { }, RecurringExpenseEditVM: function RecurringExpenseEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.expense = t0; _.onChanged = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.state = t4; _.onAddClientPressed = t5; _.onAddVendorPressed = t6; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure(t0) { this.store = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.state = t2; _.action = t3; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.recurringExpense = t0; _.localization = t1; _.state = t2; _.store = t3; _.context = t4; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0(t0) { this.context = t0; }, RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure: function RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure(t0) { this.error = t0; }, expenseReport: function(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState) { var columns, t4, t5, t6, expense, t7, client, invoice, vendor, row, t8, t9, t10, value, value0, value1, value2, value3, value4, value5, value6, value7, t11, value8, value9, t12, skip, t13, value10, t14, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, expenseReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "expense") ? J.$index$asx(reportSettings._map$_map, "expense") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.ExpenseReportFields_0, C.ExpenseReportFields_3, C.ExpenseReportFields_10, C.ExpenseReportFields_16, C.ExpenseReportFields_18, C.ExpenseReportFields_23], type$.JSArray_legacy_ExpenseReportFields), t1 = expenseReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_ExpenseReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new M.expenseReport_closure(), t3).where$1(0, new M.expenseReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(expenseMap.get$keys(expenseMap)), t2 = columns._list, t3 = J.getInterceptor$ax(t2), t4 = type$.JSArray_legacy_ReportElement, t5 = expenseMap._map$_map, t6 = J.getInterceptor$asx(t5); t1.moveNext$0();) { expense = t6.$index(t5, t1.get$current(t1)); t7 = expense.clientId; client = J.$index$asx(clientMap._map$_map, t7); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t7 = expense.invoiceId; invoice = J.$index$asx(invoiceMap._map$_map, t7); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); t7 = expense.vendorId; vendor = J.$index$asx(vendorMap._map$_map, t7); if (vendor == null) vendor = B.VendorEntity_VendorEntity(_null, _null, _null); if (expense.isDeleted) continue; row = H.setRuntimeTypeInfo([], t4); for (t7 = t3.get$iterator(t2), t8 = expense.id, t9 = expense.entityType, t10 = expense.categoryId, value = expense.customValue4, value0 = expense.customValue3, value1 = expense.customValue2, value2 = expense.customValue1, value3 = expense.taxRate3, value4 = expense.taxRate2, value5 = expense.taxRate1, value6 = expense.paymentDate, value7 = expense.date, t11 = expense.currencyId, value8 = expense.transactionReference, value9 = expense.amount, t12 = expense.usesInclusiveTaxes, skip = false; t7.moveNext$0();) { t13 = t7.get$current(t7); switch (t13) { case C.ExpenseReportFields_0: value10 = t12 ? value9 : value9 + expense.get$taxAmount(); break; case C.ExpenseReportFields_1: value10 = t12 ? value9 - expense.get$taxAmount() : value9; break; case C.ExpenseReportFields_2: value10 = expense.get$taxAmount(); break; case C.ExpenseReportFields_3: value10 = value8; break; case C.ExpenseReportFields_4: value10 = J.$index$asx(staticState.currencyMap._map$_map, t11); break; case C.ExpenseReportFields_5: value10 = value7; break; case C.ExpenseReportFields_6: value10 = value6; break; case C.ExpenseReportFields_7: value10 = value5; break; case C.ExpenseReportFields_8: value10 = value4; break; case C.ExpenseReportFields_9: value10 = value3; break; case C.ExpenseReportFields_10: value10 = client.displayName; break; case C.ExpenseReportFields_11: value10 = client.balance; break; case C.ExpenseReportFields_12: value10 = client.address1; break; case C.ExpenseReportFields_13: value10 = client.address2; break; case C.ExpenseReportFields_14: value10 = client.shippingAddress1; break; case C.ExpenseReportFields_15: value10 = client.shippingAddress2; break; case C.ExpenseReportFields_16: value10 = invoice.number; break; case C.ExpenseReportFields_17: value10 = invoice.amount; break; case C.ExpenseReportFields_18: value10 = vendor.name; break; case C.ExpenseReportFields_19: value10 = value2; break; case C.ExpenseReportFields_20: value10 = value1; break; case C.ExpenseReportFields_21: value10 = value0; break; case C.ExpenseReportFields_22: value10 = value; break; case C.ExpenseReportFields_23: t14 = J.$index$asx(expenseCategoryMap._map$_map, t10); value10 = t14 == null ? _null : t14.name; if (value10 == null) value10 = ""; break; default: value10 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t13), _null, reportsUIState, userCompany, value10)) skip = true; t13 = J.getInterceptor$(value10); if (t13.get$runtimeType(value10) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value10, t9, t8)); else if (t13.get$runtimeType(value10) === C.Type_double_K1J || t13.get$runtimeType(value10) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value10, _null, t11, _null, t9, t8)); else row.push(new A.ReportStringValue(value10, t9, t8)); } if (!skip) data.push(row); } selectedColumns = t3.map$1$1(t2, new M.expenseReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new M.expenseReport_closure2(expenseReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_ExpenseReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_KYr, new M.expenseReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new M.expenseReport_closure4(), t1), true, t2), data, true); }, ExpenseReportFields: function ExpenseReportFields(t0) { this._expense_report$_name = t0; }, memoizedExpenseReport_closure: function memoizedExpenseReport_closure() { }, expenseReport_closure: function expenseReport_closure() { }, expenseReport_closure0: function expenseReport_closure0() { }, expenseReport_closure1: function expenseReport_closure1() { }, expenseReport_closure2: function expenseReport_closure2(t0, t1) { this.expenseReportSettings = t0; this.selectedColumns = t1; }, expenseReport_closure3: function expenseReport_closure3() { }, expenseReport_closure4: function expenseReport_closure4() { }, ReportCharts: function ReportCharts(t0, t1) { this.viewModel = t0; this.key = t1; }, ReportCharts_build_closure: function ReportCharts_build_closure(t0) { this.state = t0; }, ReportCharts_build_closure1: function ReportCharts_build_closure1(t0, t1) { this.columnType = t0; this.localization = t1; }, ReportCharts_build_closure2: function ReportCharts_build_closure2() { }, ReportCharts_build_closure0: function ReportCharts_build_closure0(t0, t1) { this.$this = t0; this.reportState = t1; }, ReportCharts_build_closure3: function ReportCharts_build_closure3() { }, ReportCharts_build_closure4: function ReportCharts_build_closure4() { }, ReportCharts_build_closure5: function ReportCharts_build_closure5(t0) { this.state = t0; }, ReportCharts_build_closure7: function ReportCharts_build_closure7() { }, ReportCharts_build_closure8: function ReportCharts_build_closure8() { }, ReportCharts_build_closure6: function ReportCharts_build_closure6(t0, t1) { this.$this = t0; this.reportState = t1; }, CustomFieldsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new M.CustomFieldsVM(state, new M.CustomFieldsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new M.CustomFieldsVM_fromStore_closure0(store)); }, CustomFieldsScreen: function CustomFieldsScreen(t0) { this.key = t0; }, CustomFieldsScreen_build_closure: function CustomFieldsScreen_build_closure() { }, CustomFieldsVM: function CustomFieldsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; }, CustomFieldsVM_fromStore_closure0: function CustomFieldsVM_fromStore_closure0(t0) { this.store = t0; }, CustomFieldsVM_fromStore_closure: function CustomFieldsVM_fromStore_closure(t0) { this.store = t0; }, CustomFieldsVM_fromStore__closure: function CustomFieldsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, DataVisualizationsVM_fromStore: function(store) { return new M.DataVisualizationsVM(store.get$_store$_state()); }, DataVisualizationsScreen: function DataVisualizationsScreen(t0) { this.key = t0; }, DataVisualizationsScreen_build_closure: function DataVisualizationsScreen_build_closure() { }, DataVisualizationsVM: function DataVisualizationsVM(t0) { this.state = t0; }, UserDetailsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new M.UserDetailsVM(state, state.uiState.settingsUIState.user, new M.UserDetailsVM_fromStore_closure(store), new M.UserDetailsVM_fromStore_closure0(state, store), new M.UserDetailsVM_fromStore_closure1(store), new M.UserDetailsVM_fromStore_closure2(state, store), new M.UserDetailsVM_fromStore_closure3(store, state), new M.UserDetailsVM_fromStore_closure4(store)); }, UserDetailsScreen: function UserDetailsScreen(t0) { this.key = t0; }, UserDetailsScreen_build_closure: function UserDetailsScreen_build_closure() { }, UserDetailsVM: function UserDetailsVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.user = t1; _.onChanged = t2; _.onSavePressed = t3; _.onConnectGooglePressed = t4; _.onDisconnectGooglePressed = t5; _.onDisconnectGmailPressed = t6; _.onDisableTwoFactorPressed = t7; }, UserDetailsVM_fromStore_closure: function UserDetailsVM_fromStore_closure(t0) { this.store = t0; }, UserDetailsVM_fromStore_closure3: function UserDetailsVM_fromStore_closure3(t0, t1) { this.store = t0; this.state = t1; }, UserDetailsVM_fromStore__closure0: function UserDetailsVM_fromStore__closure0(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure0: function UserDetailsVM_fromStore___closure0(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure: function UserDetailsVM_fromStore____closure() { }, UserDetailsVM_fromStore_closure4: function UserDetailsVM_fromStore_closure4(t0) { this.store = t0; }, UserDetailsVM_fromStore__closure: function UserDetailsVM_fromStore__closure(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore___closure: function UserDetailsVM_fromStore___closure(t0, t1) { this.store = t0; this.completer = t1; }, UserDetailsVM_fromStore_closure2: function UserDetailsVM_fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure1: function UserDetailsVM_fromStore__closure1(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore___closure1: function UserDetailsVM_fromStore___closure1(t0, t1, t2) { this.context = t0; this.store = t1; this.state = t2; }, UserDetailsVM_fromStore____closure0: function UserDetailsVM_fromStore____closure0() { }, UserDetailsVM_fromStore____closure1: function UserDetailsVM_fromStore____closure1() { }, UserDetailsVM_fromStore_closure1: function UserDetailsVM_fromStore_closure1(t0) { this.store = t0; }, UserDetailsVM_fromStore__closure2: function UserDetailsVM_fromStore__closure2(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore___closure2: function UserDetailsVM_fromStore___closure2(t0, t1, t2, t3) { var _ = this; _.context = t0; _.store = t1; _.password = t2; _.completer = t3; }, UserDetailsVM_fromStore_closure0: function UserDetailsVM_fromStore_closure0(t0, t1) { this.state = t0; this.store = t1; }, UserDetailsVM_fromStore__closure3: function UserDetailsVM_fromStore__closure3(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, UserDetailsVM_fromStore___closure3: function UserDetailsVM_fromStore___closure3(t0, t1, t2, t3) { var _ = this; _.store = t0; _.origUserSettings = t1; _.localization = t2; _.appBuilder = t3; }, UserDetailsVM_fromStore____closure3: function UserDetailsVM_fromStore____closure3() { }, UserDetailsVM_fromStore___closure4: function UserDetailsVM_fromStore___closure4(t0, t1, t2) { this.context = t0; this.store = t1; this.completer = t2; }, UserDetailsVM_fromStore____closure2: function UserDetailsVM_fromStore____closure2(t0, t1) { this.store = t0; this.completer = t1; }, SubscriptionView: function SubscriptionView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _SubscriptionViewState: function _SubscriptionViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _SubscriptionViewState_build_closure1: function _SubscriptionViewState_build_closure1(t0) { this.viewModel = t0; }, _SubscriptionViewState_build_closure0: function _SubscriptionViewState_build_closure0(t0, t1) { this.subscription = t0; this.localization = t1; }, _SubscriptionViewState_build_closure: function _SubscriptionViewState_build_closure(t0) { this.subscription = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.taskUIState, task = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new M.TaskEditTimesVM(J.$index$asx(t3._list, t1).userCompany.company, task, t2.editingTimeIndex, new M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure(store), new M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0(store), new M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1(store), new M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2(store)); }, TaskEditTimesScreen: function TaskEditTimesScreen(t0) { this.key = t0; }, TaskEditTimesScreen_build_closure0: function TaskEditTimesScreen_build_closure0() { }, TaskEditTimesScreen_build_closure: function TaskEditTimesScreen_build_closure() { }, TaskEditTimesVM: function TaskEditTimesVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.task = t1; _.taskTimeIndex = t2; _.onRemoveTaskTimePressed = t3; _.onDoneTaskTimePressed = t4; _.onUpdatedTaskTime = t5; _.clearSelectedTaskTime = t6; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1(t0) { this.store = t0; }, TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2: function TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2(t0) { this.store = t0; }, TaskTimeListTile: function TaskTimeListTile(t0, t1, t2, t3) { var _ = this; _.onTap = t0; _.task = t1; _.taskTime = t2; _.key = t3; }, TaskTimeListTile_build_closure: function TaskTimeListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, TokenListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.tokenUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredTokenList().call$4(state.getUISelection$1(C.EntityType_token), t4.$index(t1, t3).tokenState.map, t4.$index(t1, t3).tokenState.list, t2); t6 = t4.$index(t1, t3).tokenState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_token); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); } else t1 = t7; return new M.TokenListVM(state, t5, t6, t2, new M.TokenListVM_fromStore_closure(new M.TokenListVM_fromStore__handleRefresh(store)), t1, new M.TokenListVM_fromStore_closure0(store), new M.TokenListVM_fromStore_closure1(store)); }, TokenListBuilder: function TokenListBuilder(t0) { this.key = t0; }, TokenListBuilder_build_closure: function TokenListBuilder_build_closure() { }, TokenListBuilder_build__closure: function TokenListBuilder_build__closure(t0) { this.viewModel = t0; }, TokenListVM: function TokenListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.tokenList = t1; _.tokenMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TokenListVM_fromStore__handleRefresh: function TokenListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TokenListVM_fromStore_closure: function TokenListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TokenListVM_fromStore_closure0: function TokenListVM_fromStore_closure0(t0) { this.store = t0; }, TokenListVM_fromStore_closure1: function TokenListVM_fromStore_closure1(t0) { this.store = t0; }, UserListVM_fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.userUIState; t2.toString; t2 = t2.listUIState; return new M.UserListVM(state, $.$get$memoizedFilteredUserList().call$5(state.getUISelection$1(C.EntityType_user), t4.$index(t1, t3).userState.map, t4.$index(t1, t3).userState.list, t2, t4.$index(t1, t3).userCompany.user.id), t4.$index(t1, t3).userState.map, t2.filter, new M.UserListVM_fromStore_closure(new M.UserListVM_fromStore__handleRefresh(store)), new M.UserListVM_fromStore_closure0(store), new M.UserListVM_fromStore_closure1(store)); }, UserListBuilder: function UserListBuilder(t0) { this.key = t0; }, UserListBuilder_build_closure: function UserListBuilder_build_closure() { }, UserListBuilder_build__closure: function UserListBuilder_build__closure(t0) { this.viewModel = t0; }, UserListBuilder_build__closure_showDialog: function UserListBuilder_build__closure_showDialog(t0) { this.user = t0; }, UserListBuilder_build___closure: function UserListBuilder_build___closure(t0) { this.showDialog = t0; }, UserListVM: function UserListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.userList = t1; _.userMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, UserListVM_fromStore__handleRefresh: function UserListVM_fromStore__handleRefresh(t0) { this.store = t0; }, UserListVM_fromStore_closure: function UserListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, UserListVM_fromStore_closure0: function UserListVM_fromStore_closure0(t0) { this.store = t0; }, UserListVM_fromStore_closure1: function UserListVM_fromStore_closure1(t0) { this.store = t0; }, NativePdfRendererPlugin: function NativePdfRendererPlugin(t0, t1) { this._documents = t0; this._pages = t1; }, PackageInfoPlugin: function PackageInfoPlugin(t0) { this._instanceToken = t0; }, Context_Context: function(current, style) { if (current == null) current = style == null ? D.current() : "."; if (style == null) style = $.$get$Style_platform(); return new M.Context(style, current); }, _parseUri: function(uri) { if (type$.Uri._is(uri)) return uri; throw H.wrapException(P.ArgumentError$value(uri, "uri", "Value must be a String or a Uri")); }, _validateArgList: function(method, args) { var numArgs, i, numArgs0, message, t1, t2, t3, t4; for (numArgs = args.length, i = 1; i < numArgs; ++i) { if (args[i] == null || args[i - 1] != null) continue; for (; numArgs >= 1; numArgs = numArgs0) { numArgs0 = numArgs - 1; if (args[numArgs0] != null) break; } message = new P.StringBuffer(""); t1 = method + "("; message._contents = t1; t2 = H._arrayInstanceType(args); t3 = t2._eval$1("SubListIterable<1>"); t4 = new H.SubListIterable(args, 0, numArgs, t3); t4.SubListIterable$3(args, 0, numArgs, t2._precomputed1); t3 = t1 + new H.MappedListIterable(t4, new M._validateArgList_closure(), t3._eval$1("MappedListIterable")).join$1(0, ", "); message._contents = t3; message._contents = t3 + ("): part " + (i - 1) + " was null, but part " + i + " was not."); throw H.wrapException(P.ArgumentError$(message.toString$0(0))); } }, Context: function Context(t0, t1) { this.style = t0; this._context$_current = t1; }, Context_joinAll_closure: function Context_joinAll_closure() { }, Context_split_closure: function Context_split_closure() { }, _validateArgList_closure: function _validateArgList_closure() { }, PermissionHandlerPlatform: function PermissionHandlerPlatform() { }, PermissionStatus0: function PermissionStatus0(t0) { this._permission_handler_platform_interface$_name = t0; }, Permission: function Permission(t0) { this.value = t0; }, PhotoViewGallery: function PhotoViewGallery(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.itemCount = t0; _.builder = t1; _.scrollPhysics = t2; _.loadingBuilder = t3; _.backgroundDecoration = t4; _.pageController = t5; _.onPageChanged = t6; _.scrollDirection = t7; _.key = t8; }, _PhotoViewGalleryState: function _PhotoViewGalleryState(t0) { var _ = this; _.___PhotoViewGalleryState__controller = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, PhotoViewGalleryPageOptions: function PhotoViewGalleryPageOptions(t0, t1, t2, t3, t4) { var _ = this; _.imageProvider = t0; _.heroAttributes = t1; _.minScale = t2; _.maxScale = t3; _.initialScale = t4; }, PhotoViewScaleStateController$: function() { var t1 = new P._AsyncBroadcastStreamController(null, null, type$._AsyncBroadcastStreamController_PhotoViewScaleState); t1.add$1(0, C.PhotoViewScaleState_0); return new M.PhotoViewScaleStateController(t1, C.PhotoViewScaleState_0); }, PhotoViewScaleStateController: function PhotoViewScaleStateController(t0, t1) { this.__PhotoViewScaleStateController__scaleStateNotifier = $; this._outputScaleStateCtrl = t0; this.prevScaleState = t1; }, PhotoViewCore: function PhotoViewCore(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.backgroundDecoration = t0; _.imageProvider = t1; _.gaplessPlayback = t2; _.heroAttributes = t3; _.enableRotation = t4; _.customChild = t5; _.controller = t6; _.scaleStateController = t7; _.scaleBoundaries = t8; _.scaleStateCycle = t9; _.basePosition = t10; _.onTapUp = t11; _.onTapDown = t12; _.tightMode = t13; _.disableGestures = t14; _.filterQuality = t15; _.key = t16; }, PhotoViewCoreState: function PhotoViewCoreState(t0, t1, t2, t3) { var _ = this; _._rotationBefore = _._scaleBefore = _._normalizedPosition = null; _.__PhotoViewCoreState__scaleAnimationController = $; _._scaleAnimation = null; _.__PhotoViewCoreState__positionAnimationController = $; _._photo_view_core$_positionAnimation = null; _.__PhotoViewCoreState__rotationAnimationController = $; _._rotationAnimation = null; _.__PhotoViewCoreState_cachedScaleBoundaries = $; _.PhotoViewControllerDelegate__animateScale = t0; _.PhotoViewControllerDelegate_markNeedsScaleRecalc = t1; _.TickerProviderStateMixin__tickers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, PhotoViewCoreState_build_closure: function PhotoViewCoreState_build_closure(t0) { this.$this = t0; }, _CenterWithOriginalSizeDelegate: function _CenterWithOriginalSizeDelegate(t0, t1, t2) { this.subjectSize = t0; this.basePosition = t1; this.useImageScale = t2; }, _PhotoViewCoreState_State_TickerProviderStateMixin: function _PhotoViewCoreState_State_TickerProviderStateMixin() { }, _PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate: function _PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate() { }, _PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector: function _PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector() { }, PhotoViewComputedScale: function PhotoViewComputedScale(t0, t1) { this._photo_view_computed_scale$_value = t0; this.multiplier = t1; }, getScaleForScaleState: function(scaleState, scaleBoundaries) { switch (scaleState) { case C.PhotoViewScaleState_0: case C.PhotoViewScaleState_3: case C.PhotoViewScaleState_4: return C.JSNumber_methods.clamp$2(scaleBoundaries.get$initialScale(), scaleBoundaries.get$minScale(), scaleBoundaries.get$maxScale()); case C.PhotoViewScaleState_1: return C.JSNumber_methods.clamp$2(M._scaleForCovering(scaleBoundaries.outerSize, scaleBoundaries.childSize), scaleBoundaries.get$minScale(), scaleBoundaries.get$maxScale()); case C.PhotoViewScaleState_2: return C.JSInt_methods.clamp$2(1, scaleBoundaries.get$minScale(), scaleBoundaries.get$maxScale()); default: return 0; } }, _scaleForContained: function(size, childSize) { return Math.min(size._dx / childSize._dx, size._dy / childSize._dy); }, _scaleForCovering: function(size, childSize) { return Math.max(size._dx / childSize._dx, size._dy / childSize._dy); }, ScaleBoundaries: function ScaleBoundaries(t0, t1, t2, t3, t4) { var _ = this; _._minScale = t0; _._maxScale = t1; _._initialScale = t2; _.outerSize = t3; _.childSize = t4; }, CornersRange: function CornersRange(t0, t1) { this.min = t0; this.max = t1; }, RouteObserverBreadcrumb__formatArgs: function(args) { if (args == null) return null; if (type$.Map_String_dynamic._is(args)) return J.map$2$1$ax(args, new M.RouteObserverBreadcrumb__formatArgs_closure(), type$.String, type$.dynamic); return J.toString$0$(args); }, SentryNavigatorObserver: function SentryNavigatorObserver(t0, t1) { this.hub = t0; this._routes$_listeners = t1; this._navigator$_navigator = null; }, RouteObserverBreadcrumb: function RouteObserverBreadcrumb(t0, t1, t2, t3, t4, t5) { var _ = this; _.message = t0; _.category = t1; _.data = t2; _.level = t3; _.type = t4; _.timestamp = t5; }, RouteObserverBreadcrumb__formatArgs_closure: function RouteObserverBreadcrumb__formatArgs_closure() { }, SystemNavigator_pop: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$SystemNavigator_pop = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("SystemNavigator.pop", null, type$.void), $async$SystemNavigator_pop); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$SystemNavigator_pop, $async$completer); }, bchTypeInfo: function(data) { var d0, d = data << 10 >>> 0; for (d0 = d; M._bchDigit(d0) - M._bchDigit(1335) >= 0;) d0 = (d0 ^ C.JSInt_methods.$shl(1335, M._bchDigit(d0) - M._bchDigit(1335))) >>> 0; return ((d | d0) ^ 21522) >>> 0; }, bchTypeNumber: function(data) { var d0, d = data << 12 >>> 0; for (d0 = d; M._bchDigit(d0) - M._bchDigit(7973) >= 0;) d0 = (d0 ^ C.JSInt_methods.$shl(7973, M._bchDigit(d0) - M._bchDigit(7973))) >>> 0; return (d | d0) >>> 0; }, _bchDigit: function(data) { var digit; for (digit = 0; data !== 0;) { ++digit; data = data >>> 1; } return digit; } }, U = { Serializers_Serializers: function() { var t1 = type$.Type, t2 = type$.Serializer_dynamic, t3 = type$.String; t2 = new Y.BuiltJsonSerializersBuilder(A.MapBuilder_MapBuilder(t1, t2), A.MapBuilder_MapBuilder(t3, t2), A.MapBuilder_MapBuilder(t3, t2), A.MapBuilder_MapBuilder(type$.FullType, type$.Function), D.ListBuilder_ListBuilder(C.List_empty, type$.SerializerPlugin)); t2.add$1(0, new O.BigIntSerializer(D.BuiltList_BuiltList$from([C.Type_BigInt_8OV, J.get$runtimeType$($.$get$_BigIntImpl_zero())], t1))); t2.add$1(0, new R.BoolSerializer(D.BuiltList_BuiltList$from([C.Type_bool_lhE], t1))); t3 = type$.Object; t2.add$1(0, new K.BuiltListSerializer(D.BuiltList_BuiltList$from([C.Type_BuiltList_iTR, H.getRuntimeType(D.BuiltList_BuiltList$from(C.List_empty, t3))], t1))); t2.add$1(0, new R.BuiltListMultimapSerializer(D.BuiltList_BuiltList$from([C.Type_BuiltListMultimap_2Mt, H.getRuntimeType(R.BuiltListMultimap_BuiltListMultimap(t3, t3))], t1))); t2.add$1(0, new K.BuiltMapSerializer(D.BuiltList_BuiltList$from([C.Type_BuiltMap_qd4, H.getRuntimeType(A.BuiltMap_BuiltMap(C.Map_empty0, t3, t3))], t1))); t2.add$1(0, new O.BuiltSetSerializer(D.BuiltList_BuiltList$from([C.Type_BuiltSet_fcN, H.getRuntimeType(X.BuiltSet_BuiltSet$from(C.List_empty, t3))], t1))); t2.add$1(0, new R.BuiltSetMultimapSerializer(X.BuiltSet_BuiltSet$from([C.Type_BuiltSetMultimap_9Fi], t1))); t2.add$1(0, new Z.DateTimeSerializer(D.BuiltList_BuiltList$from([C.Type_DateTime_8AS], t1))); t2.add$1(0, new D.DoubleSerializer(D.BuiltList_BuiltList$from([C.Type_double_K1J], t1))); t2.add$1(0, new K.DurationSerializer(D.BuiltList_BuiltList$from([C.Type_Duration_SnA], t1))); t2.add$1(0, new B.IntSerializer(D.BuiltList_BuiltList$from([C.Type_int_tHn], t1))); t2.add$1(0, new Q.Int64Serializer(D.BuiltList_BuiltList$from([C.Type_Int64_gc6], t1))); t2.add$1(0, new O.JsonObjectSerializer(D.BuiltList_BuiltList$from([C.Type_JsonObject_gyf, C.Type_BoolJsonObject_8HQ, C.Type_ListJsonObject_yPV, C.Type_MapJsonObject_bBG, C.Type_NumJsonObject_H9C, C.Type_StringJsonObject_GAC], t1))); t2.add$1(0, new S.NullSerializer(D.BuiltList_BuiltList$from([C.Type_Null_Yyn], t1))); t2.add$1(0, new K.NumSerializer(D.BuiltList_BuiltList$from([C.Type_num_cv7], t1))); t2.add$1(0, new K.RegExpSerializer(D.BuiltList_BuiltList$from([C.Type_RegExp_Eeh, $.$get$_runtimeType()], t1))); t2.add$1(0, new M.StringSerializer(D.BuiltList_BuiltList$from([C.Type_String_k8F], t1))); t2.add$1(0, new O.UriSerializer(D.BuiltList_BuiltList$from([C.Type_Uri_EFX, H.getRuntimeType(P.Uri_parse("http://example.com", 0, null)), H.getRuntimeType(P.Uri_parse("http://example.com:", 0, null))], t1))); t2.addBuilderFactory$2(C.FullType_eLJ, new U.Serializers_Serializers_closure()); t2.addBuilderFactory$2(C.FullType_4Wf, new U.Serializers_Serializers_closure0()); t2.addBuilderFactory$2(C.FullType_wIv, new U.Serializers_Serializers_closure1()); t2.addBuilderFactory$2(C.FullType_4e8, new U.Serializers_Serializers_closure2()); t2.addBuilderFactory$2(C.FullType_Ofx, new U.Serializers_Serializers_closure3()); return t2.build$0(0); }, FullType__getRawName: function(type) { var $name = J.toString$0$(type), genericsStart = J.indexOf$1$asx($name, "<"); return genericsStart === -1 ? $name : C.JSString_methods.substring$2($name, 0, genericsStart); }, DeserializationError_DeserializationError: function(json, type, error) { var limitedJson = J.toString$0$(json), t1 = limitedJson.length; return new U.DeserializationError(t1 > 80 ? J.replaceRange$3$asx(limitedJson, 77, t1, "...") : limitedJson, type, error); }, Serializers_Serializers_closure: function Serializers_Serializers_closure() { }, Serializers_Serializers_closure0: function Serializers_Serializers_closure0() { }, Serializers_Serializers_closure1: function Serializers_Serializers_closure1() { }, Serializers_Serializers_closure2: function Serializers_Serializers_closure2() { }, Serializers_Serializers_closure3: function Serializers_Serializers_closure3() { }, FullType: function FullType(t0, t1, t2) { this.root = t0; this.parameters = t1; this.nullable = t2; }, DeserializationError: function DeserializationError(t0, t1, t2) { this.json = t0; this.type = t1; this.error = t2; }, LinearScaleDomainInfo: function LinearScaleDomainInfo(t0, t1, t2) { var _ = this; _.domainOverride = null; _._dataDomainStart = t0; _._dataDomainEnd = t1; _._previouslyAddedDomain = null; _._minimumDetectedDomainStep = t2; }, PointRenderer$: function(config, rendererId, $D) { var t1 = P.LinkedHashMap_LinkedHashMap(null, null, type$.String, $D._eval$1("List>")), t2 = H.setRuntimeTypeInfo([], type$.JSArray_String), t3 = C.List_empty13; return new U.PointRenderer(config, t3, t1, t2, X.LayoutViewConfig$(25, C.LayoutPosition_8, 0), "point", new B.CircleSymbolRenderer(true), $D._eval$1("PointRenderer<0>")); }, DatumPoint_DatumPoint$from: function(other, x, xLower, xUpper, y, yLower, yUpper, $D) { var t1 = other.datum, t2 = other.domain, t3 = other.series, t4 = x == null ? other.x : x, t5 = xLower == null ? other.xLower : xLower, t6 = xUpper == null ? other.xUpper : xUpper, t7 = y == null ? other.y : y, t8 = yLower == null ? other.yLower : yLower, t9 = yUpper == null ? other.yUpper : yUpper; return new U.DatumPoint(t1, t2, t3, t5, t6, t8, t9, t4, t7, $D._eval$1("DatumPoint<0>")); }, PointRenderer: function PointRenderer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.config = t0; _.pointRendererDecorators = t1; _._point_renderer$_chart = null; _.seriesPointMap = t2; _._point_renderer$_currentKeys = t3; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t4; _.rendererId = t5; _.symbolRenderer = t6; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t7; }, PointRenderer_paint_closure: function PointRenderer_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, PointRenderer_paint__closure1: function PointRenderer_paint__closure1(t0) { this.$this = t0; }, PointRenderer_paint_closure0: function PointRenderer_paint_closure0(t0, t1, t2) { this.$this = t0; this.animationPercent = t1; this.canvas = t2; }, PointRenderer_paint__closure: function PointRenderer_paint__closure(t0, t1) { this.$this = t0; this.animationPercent = t1; }, PointRenderer_paint__closure0: function PointRenderer_paint__closure0(t0, t1, t2) { this.$this = t0; this.canvas = t1; this.animationPercent = t2; }, PointRenderer_paint___closure: function PointRenderer_paint___closure(t0) { this.$this = t0; }, PointRenderer_paint___closure0: function PointRenderer_paint___closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.point = t1; _.canvas = t2; _.animationPercent = t3; }, PointRenderer_paint___closure1: function PointRenderer_paint___closure1(t0) { this.$this = t0; }, PointRenderer_paint___closure2: function PointRenderer_paint___closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.point = t1; _.canvas = t2; _.animationPercent = t3; }, DatumPoint: function DatumPoint(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.xLower = t3; _.xUpper = t4; _.yLower = t5; _.yUpper = t6; _.x = t7; _.y = t8; _.$ti = t9; }, BaseChartState: function BaseChartState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.__BaseChartState__animationController = $; _._animationValue = 0; _._chartGestureDetector = _._oldWidget = null; _._configurationChanged = false; _.autoBehaviorWidgets = t0; _.addedBehaviorWidgets = t1; _.addedCommonBehaviorsByRole = t2; _.addedSelectionChangedListenersByType = t3; _.addedSelectionUpdatedListenersByType = t4; _._behaviorAnimationControllers = t5; _.TickerProviderStateMixin__tickers = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; _.$ti = t8; }, BaseChartState_requestRebuild_closure: function BaseChartState_requestRebuild_closure() { }, BaseChartState_build_closure: function BaseChartState_build_closure(t0, t1, t2) { this.idAndBehaviorMap = t0; this.context = t1; this.chartWidgets = t2; }, BaseChartState_dispose_closure: function BaseChartState_dispose_closure() { }, BaseChartState__animationTick_closure: function BaseChartState__animationTick_closure(t0) { this.$this = t0; }, _BaseChartState_State_TickerProviderStateMixin: function _BaseChartState_State_TickerProviderStateMixin() { }, DefaultEquality: function DefaultEquality(t0) { this.$ti = t0; }, IterableEquality: function IterableEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, ListEquality: function ListEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, _UnorderedEquality: function _UnorderedEquality() { }, UnorderedIterableEquality: function UnorderedIterableEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, SetEquality: function SetEquality(t0, t1) { this._elementEquality = t0; this.$ti = t1; }, _MapEntry: function _MapEntry(t0, t1, t2) { this.equality = t0; this.key = t1; this.value = t2; }, MapEquality: function MapEquality(t0, t1, t2) { this._keyEquality = t0; this._valueEquality = t1; this.$ti = t2; }, DeepCollectionEquality: function DeepCollectionEquality(t0) { this._unordered = t0; }, MemoryFileSystemEntity: function MemoryFileSystemEntity() { }, MemoryFileSystemEntity_backing_closure: function MemoryFileSystemEntity_backing_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_resolvedBacking_closure: function MemoryFileSystemEntity_resolvedBacking_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_resolvedBacking_closure0: function MemoryFileSystemEntity_resolvedBacking_closure0(t0) { this.$this = t0; }, MemoryFileSystemEntity_defaultCheckType_closure: function MemoryFileSystemEntity_defaultCheckType_closure(t0) { this.$this = t0; }, MemoryFileSystemEntity_internalCreateSync_closure: function MemoryFileSystemEntity_internalCreateSync_closure(t0) { this.createChild = t0; }, defaultTargetPlatform: function() { var t1 = $.$get$_testPlatform(); return t1 == null ? $.$get$_browserPlatform() : t1; }, _testPlatform_closure: function _testPlatform_closure() { }, _browserPlatform_closure: function _browserPlatform_closure() { }, ErrorDescription$: function(message) { var _null = null, t1 = H.setRuntimeTypeInfo([message], type$.JSArray_Object); return new U.ErrorDescription(_null, false, true, _null, _null, _null, false, t1, true, _null, C.DiagnosticLevel_3, _null, _null, false, false, _null, C.DiagnosticsTreeStyle_7); }, ErrorSummary$: function(message) { var _null = null, t1 = H.setRuntimeTypeInfo([message], type$.JSArray_Object); return new U.ErrorSummary(_null, false, true, _null, _null, _null, false, t1, true, _null, C.DiagnosticLevel_6, _null, _null, false, false, _null, C.DiagnosticsTreeStyle_7); }, ErrorHint$: function(message) { var _null = null, t1 = H.setRuntimeTypeInfo([message], type$.JSArray_Object); return new U.ErrorHint(_null, false, true, _null, _null, _null, false, t1, true, _null, C.DiagnosticLevel_5, _null, _null, false, false, _null, C.DiagnosticsTreeStyle_7); }, ErrorSpacer$: function() { var _null = null; return new U.ErrorSpacer("", false, true, _null, _null, _null, false, _null, true, C.C__NoDefaultValue, C.DiagnosticLevel_3, _null, "", true, false, _null, C.DiagnosticsTreeStyle_8); }, FlutterError_FlutterError: function(message) { var lines = H.setRuntimeTypeInfo(message.split("\n"), type$.JSArray_String), t1 = H.setRuntimeTypeInfo([U.ErrorSummary$(C.JSArray_methods.get$first(lines))], type$.JSArray_DiagnosticsNode), t2 = H.SubListIterable$(lines, 1, null, type$.String); C.JSArray_methods.addAll$1(t1, new H.MappedListIterable(t2, new U.FlutterError_FlutterError_closure(), t2.$ti._eval$1("MappedListIterable"))); return new U.FlutterError(t1); }, FlutterError$fromParts: function(diagnostics) { return new U.FlutterError(diagnostics); }, FlutterError__defaultErrorHandler: function(details) { return $.FlutterError_presentError.call$1(details); }, FlutterError__defaultStackTraceDemangler: function(stackTrace) { return stackTrace; }, FlutterError_dumpErrorToConsole: function(details, forceReport) { var t1; if (!!details.silent && true) return; if ($.FlutterError__errorCount === 0 || false) { t1 = details.stack; U.debugPrintStack(J.toString$0$(details.exception), 100, t1); } else D.print__debugPrintThrottled$closure().call$1("Another exception was thrown: " + details.get$summary().toString$0(0)); $.FlutterError__errorCount = $.FlutterError__errorCount + 1; }, FlutterError_defaultStackFilter: function($frames) { var skipped, index, t1, frame, className, $package, reasons, t2, _i, result, index0, t3, suffix, removedPackagesAndClasses = P.LinkedHashMap_LinkedHashMap$_literal(["dart:async-patch", 0, "dart:async", 0, "package:stack_trace", 0, "class _AssertionError", 0, "class _FakeAsync", 0, "class _FrameCallbackEntry", 0, "class _Timer", 0, "class _RawReceivePortImpl", 0], type$.String, type$.int), parsedFrames = R.StackFrame_fromStackString(J.join$1$ax($frames, "\n")); for (skipped = 0, index = 0; t1 = parsedFrames.length, index < t1; ++index) { frame = parsedFrames[index]; className = "class " + H.S(frame.className); $package = frame.packageScheme + ":" + H.S(frame.$package); if (removedPackagesAndClasses.containsKey$1(0, className)) { ++skipped; removedPackagesAndClasses.update$2(removedPackagesAndClasses, className, new U.FlutterError_defaultStackFilter_closure()); C.JSArray_methods.removeAt$1(parsedFrames, index); --index; } else if (removedPackagesAndClasses.containsKey$1(0, $package)) { ++skipped; removedPackagesAndClasses.update$2(removedPackagesAndClasses, $package, new U.FlutterError_defaultStackFilter_closure0()); C.JSArray_methods.removeAt$1(parsedFrames, index); --index; } } reasons = P.List_List$filled(t1, null, false, type$.nullable_String); for (t2 = $.FlutterError__stackFilters.length, _i = 0; _i < $.FlutterError__stackFilters.length; $.FlutterError__stackFilters.length === t2 || (0, H.throwConcurrentModificationError)($.FlutterError__stackFilters), ++_i) $.FlutterError__stackFilters[_i].filter$2(0, parsedFrames, reasons); t2 = type$.JSArray_String; result = H.setRuntimeTypeInfo([], t2); for (--t1, index = 0; index < parsedFrames.length; index = index0 + 1) { index0 = index; while (true) { if (index0 < t1) { t3 = reasons[index0]; t3 = t3 != null && J.$eq$(reasons[index0 + 1], t3); } else t3 = false; if (!t3) break; ++index0; } if (reasons[index0] != null) suffix = index0 !== index ? " (" + (index0 - index + 2) + " frames)" : " (1 frame)"; else suffix = ""; t3 = reasons[index0]; result.push(H.S(t3 == null ? parsedFrames[index0].source : t3) + suffix); } t1 = H.setRuntimeTypeInfo([], t2); for (t2 = removedPackagesAndClasses.get$entries(removedPackagesAndClasses), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); if (t3.get$value(t3) > 0) t1.push(t3.get$key(t3)); } C.JSArray_methods.sort$0(t1); if (skipped === 1) result.push("(elided one frame from " + H.S(C.JSArray_methods.get$single(t1)) + ")"); else if (skipped > 1) { t2 = t1.length; if (t2 > 1) t1[t2 - 1] = "and " + H.S(C.JSArray_methods.get$last(t1)); if (t1.length > 2) result.push("(elided " + skipped + " frames from " + C.JSArray_methods.join$1(t1, ", ") + ")"); else result.push("(elided " + skipped + " frames from " + C.JSArray_methods.join$1(t1, " ") + ")"); } return result; }, FlutterError_reportError: function(details) { var t1 = $.FlutterError_onError; if (t1 != null) t1.call$1(details); }, debugPrintStack: function(label, maxFrames, stackTrace) { var lines, t1; if (label != null) D.print__debugPrintThrottled$closure().call$1(label); lines = H.setRuntimeTypeInfo(C.JSString_methods.trimRight$0(J.toString$0$(stackTrace == null ? P.StackTrace_current() : U.FlutterError__defaultStackTraceDemangler(stackTrace))).split("\n"), type$.JSArray_String); t1 = lines.length; lines = J.take$1$ax(t1 !== 0 ? new H.SkipWhileIterable(lines, new U.debugPrintStack_closure(), type$.SkipWhileIterable_String) : lines, maxFrames); D.print__debugPrintThrottled$closure().call$1(C.JSArray_methods.join$1(U.FlutterError_defaultStackFilter(lines), "\n")); }, DiagnosticsStackTrace$: function($name, stack, stackFilter) { var t1 = U.DiagnosticsStackTrace__applyStackFilter(stack, stackFilter); return new U.DiagnosticsStackTrace(C.List_empty0, t1, stack, true, $name, true, true, null, C.DiagnosticsTreeStyle_7); }, DiagnosticsStackTrace__applyStackFilter: function(stack, stackFilter) { if (stack == null) return H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); return J.map$1$1$ax(U.FlutterError_defaultStackFilter(H.setRuntimeTypeInfo(C.JSString_methods.trimRight$0(H.S(U.FlutterError__defaultStackTraceDemangler(stack))).split("\n"), type$.JSArray_String)), U.assertions_DiagnosticsStackTrace__createStackFrame$closure(), type$.DiagnosticsNode).toList$0(0); }, DiagnosticsStackTrace__createStackFrame: function(frame) { return Y.DiagnosticsNode_DiagnosticsNode$message(frame, false, C.DiagnosticsTreeStyle_8); }, _FlutterErrorDetailsNode$: function($name, style, value) { return new U._FlutterErrorDetailsNode(value, $name, true, true, null, style); }, _ErrorDiagnostic: function _ErrorDiagnostic() { }, ErrorDescription: function ErrorDescription(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorSummary: function ErrorSummary(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorHint: function ErrorHint(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, ErrorSpacer: function ErrorSpacer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, FlutterErrorDetails: function FlutterErrorDetails(t0, t1, t2, t3, t4, t5) { var _ = this; _.exception = t0; _.stack = t1; _.library = t2; _.context = t3; _.informationCollector = t4; _.silent = t5; }, FlutterErrorDetails_summary_formatException: function FlutterErrorDetails_summary_formatException(t0) { this.$this = t0; }, FlutterErrorDetails_summary_closure: function FlutterErrorDetails_summary_closure() { }, FlutterErrorDetails_summary_closure0: function FlutterErrorDetails_summary_closure0() { }, FlutterErrorDetails_debugFillProperties_closure: function FlutterErrorDetails_debugFillProperties_closure() { }, FlutterError: function FlutterError(t0) { this.diagnostics = t0; }, FlutterError_FlutterError_closure: function FlutterError_FlutterError_closure() { }, FlutterError_defaultStackFilter_closure: function FlutterError_defaultStackFilter_closure() { }, FlutterError_defaultStackFilter_closure0: function FlutterError_defaultStackFilter_closure0() { }, FlutterError_toString_closure: function FlutterError_toString_closure(t0) { this.renderer = t0; }, debugPrintStack_closure: function debugPrintStack_closure() { }, DiagnosticsStackTrace: function DiagnosticsStackTrace(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._children = t0; _._properties = t1; _.value = t2; _.allowTruncate = t3; _.name = t4; _.showSeparator = t5; _.showName = t6; _.linePrefix = t7; _.style = t8; }, _FlutterErrorDetailsNode: function _FlutterErrorDetailsNode(t0, t1, t2, t3, t4, t5) { var _ = this; _.value = t0; _._cachedBuilder = null; _.name = t1; _.showSeparator = t2; _.showName = t3; _.linePrefix = t4; _.style = t5; }, _FlutterError_Error_DiagnosticableTreeMixin: function _FlutterError_Error_DiagnosticableTreeMixin() { }, _FlutterErrorDetails_Object_Diagnosticable: function _FlutterErrorDetails_Object_Diagnosticable() { }, _getClipCallback0: function(referenceBox, containedInkWell, rectCallback) { if (rectCallback != null) return rectCallback; if (containedInkWell) return new U._getClipCallback_closure0(referenceBox); return null; }, _getTargetRadius: function(referenceBox, containedInkWell, rectCallback, position) { var t1, size, d1, d2, d3, d4; if (containedInkWell) { if (rectCallback != null) { t1 = rectCallback.call$0(); size = new P.Size(t1.right - t1.left, t1.bottom - t1.top); } else { t1 = referenceBox._box$_size; t1.toString; size = t1; } d1 = position.$sub(0, C.Offset_0_0).get$distance(); d2 = position.$sub(0, new P.Offset(0 + size._dx, 0)).get$distance(); d3 = position.$sub(0, new P.Offset(0, 0 + size._dy)).get$distance(); d4 = position.$sub(0, size.bottomRight$1(0, C.Offset_0_0)).get$distance(); return Math.ceil(Math.max(Math.max(d1, d2), Math.max(d3, d4))); } return 35; }, _getClipCallback_closure0: function _getClipCallback_closure0(t0) { this.referenceBox = t0; }, _InkSplashFactory: function _InkSplashFactory() { }, InkSplash: function InkSplash(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _._ink_splash$_position = t0; _._ink_splash$_borderRadius = t1; _._customBorder = t2; _._targetRadius = t3; _._clipCallback = t4; _._repositionToReferenceBox = t5; _._ink_splash$_textDirection = t6; _.__InkSplash__alpha = _.__InkSplash__radiusController = _.__InkSplash__radius = $; _._ink_splash$_alphaController = null; _._ink_well$_color = t7; _._material$_controller = t8; _.referenceBox = t9; _.onRemoved = t10; _._material$_debugDisposed = false; }, InputDatePickerFormField: function InputDatePickerFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.onDateSubmitted = t3; _.onDateSaved = t4; _.selectableDayPredicate = t5; _.errorFormatText = t6; _.errorInvalidText = t7; _.fieldHintText = t8; _.fieldLabelText = t9; _.autofocus = t10; _.key = t11; }, _InputDatePickerFormFieldState: function _InputDatePickerFormFieldState(t0, t1) { var _ = this; _._input_date_picker_form_field$_controller = t0; _._inputText = _._input_date_picker_form_field$_selectedDate = null; _._autoSelected = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InputDatePickerFormFieldState_didUpdateWidget_closure: function _InputDatePickerFormFieldState_didUpdateWidget_closure(t0) { this.$this = t0; }, _InputDatePickerFormFieldState_didUpdateWidget__closure: function _InputDatePickerFormFieldState_didUpdateWidget__closure(t0) { this.$this = t0; }, _MaterialLocalizationsDelegate: function _MaterialLocalizationsDelegate() { }, DefaultMaterialLocalizations: function DefaultMaterialLocalizations() { }, OutlinedButtonThemeData_lerp: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; t1 = t1 ? null : a.style; return new U.OutlinedButtonThemeData(A.ButtonStyle_lerp(t1, b == null ? null : b.style, t)); }, OutlinedButtonThemeData: function OutlinedButtonThemeData(t0) { this.style = t0; }, _OutlinedButtonThemeData_Object_Diagnosticable: function _OutlinedButtonThemeData_Object_Diagnosticable() { }, LinearProgressIndicator$: function() { var _null = null; return new U.LinearProgressIndicator(_null, _null, _null, _null, _null, _null, _null); }, _CircularProgressIndicatorPainter$: function(backgroundColor, headValue, offsetValue, rotationValue, strokeWidth, tailValue, value, valueColor) { var t1 = value != null, t2 = t1 ? -1.5707963267948966 : -1.5707963267948966 + tailValue * 3 / 2 * 3.141592653589793 + rotationValue * 3.141592653589793 * 2 + offsetValue * 0.5 * 3.141592653589793; return new U._CircularProgressIndicatorPainter(backgroundColor, valueColor, value, headValue, tailValue, offsetValue, rotationValue, strokeWidth, t2, t1 ? C.JSNumber_methods.clamp$2(value, 0, 1) * 6.282185307179586 : Math.max(headValue * 3 / 2 * 3.141592653589793 - tailValue * 3 / 2 * 3.141592653589793, 0.001), null); }, CircularProgressIndicator$: function(backgroundColor, color, key, semanticsLabel, semanticsValue, strokeWidth, value, valueColor) { return new U.CircularProgressIndicator(strokeWidth, value, backgroundColor, color, valueColor, semanticsLabel, semanticsValue, key); }, _ActivityIndicatorType: function _ActivityIndicatorType(t0) { this._progress_indicator$_name = t0; }, ProgressIndicator: function ProgressIndicator() { }, _LinearProgressIndicatorPainter: function _LinearProgressIndicatorPainter(t0, t1, t2, t3, t4, t5) { var _ = this; _.backgroundColor = t0; _.valueColor = t1; _.value = t2; _.animationValue = t3; _.textDirection = t4; _._repaint = t5; }, _LinearProgressIndicatorPainter_paint_drawBar: function _LinearProgressIndicatorPainter_paint_drawBar(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.size = t1; _.canvas = t2; _.paint = t3; }, LinearProgressIndicator: function LinearProgressIndicator(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.value = t0; _.backgroundColor = t1; _.color = t2; _.valueColor = t3; _.semanticsLabel = t4; _.semanticsValue = t5; _.key = t6; }, _LinearProgressIndicatorState: function _LinearProgressIndicatorState(t0, t1) { var _ = this; _.___LinearProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _LinearProgressIndicatorState_build_closure: function _LinearProgressIndicatorState_build_closure(t0, t1) { this.$this = t0; this.textDirection = t1; }, _CircularProgressIndicatorPainter: function _CircularProgressIndicatorPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.backgroundColor = t0; _.valueColor = t1; _.value = t2; _.headValue = t3; _.tailValue = t4; _.offsetValue = t5; _.rotationValue = t6; _.strokeWidth = t7; _.arcStart = t8; _.arcSweep = t9; _._repaint = t10; }, CircularProgressIndicator: function CircularProgressIndicator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.strokeWidth = t0; _.value = t1; _.backgroundColor = t2; _.color = t3; _.valueColor = t4; _.semanticsLabel = t5; _.semanticsValue = t6; _.key = t7; }, _CircularProgressIndicatorState: function _CircularProgressIndicatorState(t0, t1) { var _ = this; _.___CircularProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CircularProgressIndicatorState__buildAnimation_closure: function _CircularProgressIndicatorState__buildAnimation_closure(t0) { this.$this = t0; }, _RefreshProgressIndicatorPainter: function _RefreshProgressIndicatorPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.arrowheadScale = t0; _.backgroundColor = t1; _.valueColor = t2; _.value = t3; _.headValue = t4; _.tailValue = t5; _.offsetValue = t6; _.rotationValue = t7; _.strokeWidth = t8; _.arcStart = t9; _.arcSweep = t10; _._repaint = t11; }, RefreshProgressIndicator: function RefreshProgressIndicator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.strokeWidth = t0; _.value = t1; _.backgroundColor = t2; _.color = t3; _.valueColor = t4; _.semanticsLabel = t5; _.semanticsValue = t6; _.key = t7; }, _RefreshProgressIndicatorState: function _RefreshProgressIndicatorState(t0, t1) { var _ = this; _.___CircularProgressIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __CircularProgressIndicatorState_State_SingleTickerProviderStateMixin: function __CircularProgressIndicatorState_State_SingleTickerProviderStateMixin() { }, __LinearProgressIndicatorState_State_SingleTickerProviderStateMixin: function __LinearProgressIndicatorState_State_SingleTickerProviderStateMixin() { }, TabBarTheme: function TabBarTheme(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.indicator = t0; _.indicatorSize = t1; _.labelColor = t2; _.labelPadding = t3; _.labelStyle = t4; _.unselectedLabelColor = t5; _.unselectedLabelStyle = t6; }, _TabBarTheme_Object_Diagnosticable: function _TabBarTheme_Object_Diagnosticable() { }, TabController$: function(initialIndex, $length, vsync) { return new U.TabController(G.AnimationController$unbounded(null, initialIndex, vsync), $length, initialIndex, initialIndex, new P.LinkedList(type$.LinkedList__ListenerEntry)); }, DefaultTabController$: function(child, $length) { return new U.DefaultTabController($length, child, null); }, DefaultTabController_of: function(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._TabControllerScope); return scope == null ? null : scope.controller; }, TabController: function TabController(t0, t1, t2, t3, t4) { var _ = this; _._tab_controller$_animationController = t0; _.length = t1; _._tab_controller$_index = t2; _._previousIndex = t3; _._indexIsChangingCount = 0; _.ChangeNotifier__listeners = t4; }, TabController__changeIndex_closure: function TabController__changeIndex_closure(t0) { this.$this = t0; }, _TabControllerScope: function _TabControllerScope(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.enabled = t1; _.child = t2; _.key = t3; }, DefaultTabController: function DefaultTabController(t0, t1, t2) { this.length = t0; this.child = t1; this.key = t2; }, _DefaultTabControllerState: function _DefaultTabControllerState(t0, t1) { var _ = this; _.___DefaultTabControllerState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, __DefaultTabControllerState_State_SingleTickerProviderStateMixin: function __DefaultTabControllerState_State_SingleTickerProviderStateMixin() { }, TextButton$: function(autofocus, child, onLongPress, onPressed, style) { return new U.TextButton(onPressed, onLongPress, style, C.Clip_0, null, autofocus, child, null); }, TextButton_styleFrom: function(alignment, animationDuration, backgroundColor, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, minimumSize, onSurface, padding, primary, shadowColor, shape, side, splashFactory, tapTargetSize, textStyle, visualDensity) { var mouseCursor, t1, t2, t3, t4, t5, t6, _null = null, foregroundColor = onSurface == null && primary == null ? _null : new U._TextButtonDefaultForeground(primary, onSurface), overlayColor = primary == null ? _null : new U._TextButtonDefaultOverlay(primary); if (enabledMouseCursor == null && disabledMouseCursor == null) mouseCursor = _null; else { enabledMouseCursor.toString; disabledMouseCursor.toString; mouseCursor = new U._TextButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); } t1 = textStyle == null ? _null : new V._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_TextStyle); t2 = backgroundColor == null ? _null : new V._MaterialStatePropertyAll(backgroundColor, type$._MaterialStatePropertyAll_Color); t3 = shadowColor == null ? _null : new V._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t4 = elevation == null ? _null : new V._MaterialStatePropertyAll(elevation, type$._MaterialStatePropertyAll_double); t5 = padding == null ? _null : new V._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t6 = minimumSize == null ? _null : new V._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); return A.ButtonStyle$(alignment, animationDuration, t2, t4, enableFeedback, _null, foregroundColor, t6, mouseCursor, overlayColor, t5, t3, shape == null ? _null : new V._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder), _null, splashFactory, tapTargetSize, t1, visualDensity); }, TextButton: function TextButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.style = t2; _.clipBehavior = t3; _.focusNode = t4; _.autofocus = t5; _.child = t6; _.key = t7; }, _TextButtonDefaultForeground: function _TextButtonDefaultForeground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _TextButtonDefaultOverlay: function _TextButtonDefaultOverlay(t0) { this.primary = t0; }, _TextButtonDefaultMouseCursor: function _TextButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, Typography_Typography$material2014: function(platform) { return U.Typography_Typography$_withPlatform(platform, null, null, C.TextTheme_chs, C.TextTheme_BCG, C.TextTheme_aB5); }, Typography_Typography$_withPlatform: function(platform, black, white, englishLike, dense, tall) { switch (platform) { case C.TargetPlatform_2: black = C.TextTheme_WPD; white = C.TextTheme_Uhl; break; case C.TargetPlatform_0: case C.TargetPlatform_1: black = C.TextTheme_6Hm; white = C.TextTheme_A8Z; break; case C.TargetPlatform_5: black = C.TextTheme_6hH; white = C.TextTheme_nfu; break; case C.TargetPlatform_4: black = C.TextTheme_0vk; white = C.TextTheme_iz0; break; case C.TargetPlatform_3: black = C.TextTheme_kdB; white = C.TextTheme_69H; break; case null: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } black.toString; white.toString; return new U.Typography(black, white, englishLike, dense, tall); }, ScriptCategory: function ScriptCategory(t0) { this._typography$_name = t0; }, Typography: function Typography(t0, t1, t2, t3, t4) { var _ = this; _.black = t0; _.white = t1; _.englishLike = t2; _.dense = t3; _.tall = t4; }, _Typography_Object_Diagnosticable: function _Typography_Object_Diagnosticable() { }, applyBoxFit: function(fit, inputSize, outputSize) { var destinationSize, sourceSize, t2, t3, t4, aspectRatio, t1 = inputSize._dy; if (t1 <= 0 || inputSize._dx <= 0 || outputSize._dy <= 0 || outputSize._dx <= 0) return C.FittedSizes_46c; switch (fit) { case C.BoxFit_0: destinationSize = outputSize; sourceSize = inputSize; break; case C.BoxFit_1: t2 = outputSize._dx; t3 = outputSize._dy; t4 = inputSize._dx; destinationSize = t2 / t3 > t4 / t1 ? new P.Size(t4 * t3 / t1, t3) : new P.Size(t2, t1 * t2 / t4); sourceSize = inputSize; break; case C.BoxFit_2: t2 = outputSize._dx; t3 = outputSize._dy; t4 = inputSize._dx; sourceSize = t2 / t3 > t4 / t1 ? new P.Size(t4, t4 * t3 / t2) : new P.Size(t1 * t2 / t3, t1); destinationSize = outputSize; break; case C.BoxFit_3: t1 = inputSize._dx; t2 = outputSize._dy; t3 = outputSize._dx; t2 = t1 * t2 / t3; sourceSize = new P.Size(t1, t2); destinationSize = new P.Size(t3, t2 * t3 / t1); break; case C.BoxFit_4: t2 = outputSize._dx; t3 = outputSize._dy; t2 = t1 * t2 / t3; sourceSize = new P.Size(t2, t1); destinationSize = new P.Size(t2 * t3 / t1, t3); break; case C.BoxFit_5: t2 = inputSize._dx; t3 = outputSize._dx; sourceSize = new P.Size(Math.min(H.checkNum(t2), H.checkNum(t3)), Math.min(t1, H.checkNum(outputSize._dy))); destinationSize = sourceSize; break; case C.BoxFit_6: aspectRatio = inputSize._dx / t1; t2 = outputSize._dy; destinationSize = t1 > t2 ? new P.Size(t2 * aspectRatio, t2) : inputSize; t1 = outputSize._dx; if (destinationSize._dx > t1) destinationSize = new P.Size(t1, t1 / aspectRatio); sourceSize = inputSize; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return new U.FittedSizes(sourceSize, destinationSize); }, BoxFit: function BoxFit(t0) { this._box_fit$_name = t0; }, FittedSizes: function FittedSizes(t0, t1) { this.source = t0; this.destination = t1; }, TextPainter$: function(ellipsis, locale, maxLines, strutStyle, text, textAlign, textDirection, textHeightBehavior, textScaleFactor, textWidthBasis) { return new U.TextPainter(text, textAlign, textDirection, textScaleFactor, ellipsis, locale, maxLines, strutStyle, textWidthBasis, textHeightBehavior); }, PlaceholderDimensions: function PlaceholderDimensions(t0, t1) { this.size = t0; this.baseline = t1; }, TextWidthBasis: function TextWidthBasis(t0) { this._text_painter$_name = t0; }, _CaretMetrics: function _CaretMetrics(t0, t1) { this.offset = t0; this.fullHeight = t1; }, TextPainter: function TextPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._text_painter$_paragraph = null; _._text_painter$_needsLayout = true; _._text_painter$_text = t0; _._text_painter$_textAlign = t1; _._text_painter$_textDirection = t2; _._textScaleFactor = t3; _._text_painter$_ellipsis = t4; _._text_painter$_locale = t5; _._text_painter$_maxLines = t6; _._text_painter$_strutStyle = t7; _._textWidthBasis = t8; _._text_painter$_textHeightBehavior = t9; _._lastMaxWidth = _._lastMinWidth = _._placeholderDimensions = _._inlinePlaceholderScales = _._inlinePlaceholderBoxes = _._layoutTemplate = null; _.__TextPainter__caretMetrics = $; _._previousCaretPrototype = _._previousCaretPosition = null; }, RenderImage: function RenderImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _._flipHorizontally = _._image$_resolvedAlignment = null; _._image$_image = t0; _.debugImageLabel = t1; _._image$_width = t2; _._image$_height = t3; _._image$_scale = t4; _._colorFilter = null; _._image$_color = t5; _._image$_filterQuality = t6; _._colorBlendMode = t7; _._image$_fit = t8; _._image$_alignment = t9; _._repeat = t10; _._centerSlice = t11; _._invertColors = t12; _._matchTextDirection = t13; _._image$_textDirection = t14; _._image$_isAntiAlias = t15; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSliverList: function RenderSliverList(t0, t1, t2, t3, t4) { var _ = this; _._childManager = t0; _._keepAliveBucket = t1; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t2; _.ContainerRenderObjectMixin__firstChild = t3; _.ContainerRenderObjectMixin__lastChild = t4; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSliverList_performLayout_advance: function RenderSliverList_performLayout_advance(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.childConstraints = t2; }, _trim: function(original, bottom, left, right, $top) { return original == null ? null : original.intersect$1(new P.Rect(left, $top, right, bottom)); }, PersistentHeaderShowOnScreenConfiguration: function PersistentHeaderShowOnScreenConfiguration(t0) { this.minShowOnScreenExtent = t0; }, RenderSliverPersistentHeader: function RenderSliverPersistentHeader() { }, RenderSliverPersistentHeader_layoutChild_closure: function RenderSliverPersistentHeader_layoutChild_closure(t0, t1, t2) { this.$this = t0; this.shrinkOffset = t1; this.overlapsContent = t2; }, RenderSliverPinnedPersistentHeader: function RenderSliverPinnedPersistentHeader() { }, _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin: function _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin() { }, _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers: function _RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers() { }, StringCodec: function StringCodec() { }, JSONMessageCodec0: function JSONMessageCodec0() { }, JSONMethodCodec0: function JSONMethodCodec0() { }, StandardMessageCodec0: function StandardMessageCodec0() { }, StandardMessageCodec_writeValue_closure: function StandardMessageCodec_writeValue_closure(t0, t1) { this.$this = t0; this.buffer = t1; }, StandardMethodCodec0: function StandardMethodCodec0() { }, _getParent: function(context) { var t1 = {}; t1._parent0 = $; context.visitAncestorElements$1(new U._getParent_closure(new U._getParent__parent_set(t1))); return new U._getParent__parent_get(t1).call$0(); }, Actions__visitActionsAncestors: function(context, visitor) { var t2, ancestor, t1 = type$._ActionsMarker, actionsElement = context.getElementForInheritedWidgetOfExactType$1$0(t1); for (; t2 = actionsElement != null, t2; actionsElement = ancestor) { if (J.$eq$(visitor.call$1(actionsElement), true)) break; t2 = U._getParent(actionsElement)._inheritedWidgets; ancestor = t2 == null ? null : t2.$index(0, H.createRuntimeType(t1)); } return t2; }, Actions__findDispatcher: function(context) { var t1 = {}; t1.dispatcher = null; U.Actions__visitActionsAncestors(context, new U.Actions__findDispatcher_closure(t1)); return C.C_ActionDispatcher; }, Actions_maybeFind: function(context, intent, $T) { var type, t1 = {}; t1.action = null; type = intent == null ? null : H.getRuntimeType(intent); U.Actions__visitActionsAncestors(context, new U.Actions_maybeFind_closure(t1, type == null ? H.createRuntimeType($T) : type, $T, context)); return t1.action; }, FocusableActionDetector$: function(actions, autofocus, child, enabled, focusNode, mouseCursor, onFocusChange, onShowFocusHighlight, onShowHoverHighlight, shortcuts) { return new U.FocusableActionDetector(enabled, focusNode, false, actions, shortcuts, onShowFocusHighlight, onShowHoverHighlight, onFocusChange, mouseCursor, child, null); }, DoNothingAction$: function(consumesKey) { return new U.DoNothingAction(consumesKey, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent)); }, _getParent__parent_set: function _getParent__parent_set(t0) { this._box_0 = t0; }, _getParent__parent_get: function _getParent__parent_get(t0) { this._box_0 = t0; }, _getParent_closure: function _getParent_closure(t0) { this._parent_set = t0; }, Intent: function Intent() { }, Action: function Action() { }, ContextAction: function ContextAction() { }, CallbackAction: function CallbackAction(t0, t1, t2) { this.onInvoke = t0; this._actions$_listeners = t1; this.$ti = t2; }, ActionDispatcher: function ActionDispatcher() { }, Actions: function Actions(t0, t1, t2) { this.actions = t0; this.child = t1; this.key = t2; }, Actions__findDispatcher_closure: function Actions__findDispatcher_closure(t0) { this._box_0 = t0; }, Actions_maybeFind_closure: function Actions_maybeFind_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.type = t1; _.T = t2; _.context = t3; }, _ActionsState: function _ActionsState(t0, t1, t2) { var _ = this; _.listenedActions = t0; _.rebuildKey = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ActionsState__handleActionChanged_closure: function _ActionsState__handleActionChanged_closure(t0) { this.$this = t0; }, _ActionsMarker: function _ActionsMarker(t0, t1, t2, t3, t4) { var _ = this; _.dispatcher = t0; _.actions = t1; _.rebuildKey = t2; _.child = t3; _.key = t4; }, FocusableActionDetector: function FocusableActionDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.enabled = t0; _.focusNode = t1; _.autofocus = t2; _.actions = t3; _.shortcuts = t4; _.onShowFocusHighlight = t5; _.onShowHoverHighlight = t6; _.onFocusChange = t7; _.mouseCursor = t8; _.child = t9; _.key = t10; }, _FocusableActionDetectorState: function _FocusableActionDetectorState(t0, t1) { var _ = this; _._actions$_focused = _._actions$_hovering = _._canShowHighlight = false; _._mouseRegionKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FocusableActionDetectorState_initState_closure: function _FocusableActionDetectorState_initState_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__updateHighlightMode_closure: function _FocusableActionDetectorState__updateHighlightMode_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleMouseEnter_closure: function _FocusableActionDetectorState__handleMouseEnter_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleMouseExit_closure: function _FocusableActionDetectorState__handleMouseExit_closure(t0) { this.$this = t0; }, _FocusableActionDetectorState__handleFocusChange_closure: function _FocusableActionDetectorState__handleFocusChange_closure(t0, t1) { this.$this = t0; this.focused = t1; }, _FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight: function _FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight(t0) { this.$this = t0; }, _FocusableActionDetectorState__mayTriggerCallback_canRequestFocus: function _FocusableActionDetectorState__mayTriggerCallback_canRequestFocus(t0) { this.$this = t0; }, _FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight: function _FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight(t0, t1) { this.$this = t0; this.canRequestFocus = t1; }, _FocusableActionDetectorState_didUpdateWidget_closure: function _FocusableActionDetectorState_didUpdateWidget_closure(t0, t1) { this.$this = t0; this.oldWidget = t1; }, DoNothingAction: function DoNothingAction(t0, t1) { this._consumesKey = t0; this._actions$_listeners = t1; }, ActivateIntent: function ActivateIntent() { }, ButtonActivateIntent: function ButtonActivateIntent() { }, DismissIntent: function DismissIntent() { }, DismissAction: function DismissAction() { }, PrioritizedIntents: function PrioritizedIntents() { }, PrioritizedAction: function PrioritizedAction(t0) { this.__PrioritizedAction__selectedIntent = this.__PrioritizedAction__selectedAction = $; this._actions$_listeners = t0; }, _Action_Object_Diagnosticable: function _Action_Object_Diagnosticable() { }, _ActionDispatcher_Object_Diagnosticable: function _ActionDispatcher_Object_Diagnosticable() { }, _Intent_Object_Diagnosticable: function _Intent_Object_Diagnosticable() { }, AnimatedCrossFade_defaultLayoutBuilder: function(topChild, topChildKey, bottomChild, bottomChildKey) { var _null = null; return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([T.Positioned$(_null, bottomChild, _null, bottomChildKey, 0, 0, 0, _null), T.Positioned$(_null, topChild, _null, topChildKey, _null, _null, _null, _null)], type$.JSArray_Widget), C.Clip_0, C.StackFit_0, _null, _null); }, CrossFadeState: function CrossFadeState(t0) { this._animated_cross_fade$_name = t0; }, AnimatedCrossFade: function AnimatedCrossFade(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.firstChild = t0; _.secondChild = t1; _.crossFadeState = t2; _.duration = t3; _.firstCurve = t4; _.secondCurve = t5; _.sizeCurve = t6; _.key = t7; }, _AnimatedCrossFadeState: function _AnimatedCrossFadeState(t0, t1) { var _ = this; _._animated_cross_fade$_controller = null; _.___AnimatedCrossFadeState__secondAnimation = _.___AnimatedCrossFadeState__firstAnimation = $; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedCrossFadeState_initState_closure: function _AnimatedCrossFadeState_initState_closure(t0) { this.$this = t0; }, _AnimatedCrossFadeState_initState__closure: function _AnimatedCrossFadeState_initState__closure() { }, __AnimatedCrossFadeState_State_TickerProviderStateMixin: function __AnimatedCrossFadeState_State_TickerProviderStateMixin() { }, _getAncestor: function(context, count) { var t1 = {}; t1.count = count; t1.target = null; context.visitAncestorElements$1(new U._getAncestor_closure(t1)); return t1.target; }, _focusAndEnsureVisible: function(node, alignmentPolicy) { var t1; node.requestFocus$0(); t1 = node._context; t1.toString; F.Scrollable_ensureVisible(t1, 1, alignmentPolicy); }, _FocusTraversalGroupInfo$: function(marker, defaultPolicy, members) { var t1 = marker == null ? null : marker.policy; if (t1 == null) t1 = defaultPolicy; return new U._FocusTraversalGroupInfo(t1, members); }, _ReadingOrderSortData_commonDirectionalityOf: function(list) { var common, common0, t1 = H._arrayInstanceType(list)._eval$1("MappedListIterable<1,Set>"), allAncestors = new H.MappedListIterable(list, new U._ReadingOrderSortData_commonDirectionalityOf_closure(), t1); for (t1 = new H.ListIterator(allAncestors, allAncestors.get$length(allAncestors), t1._eval$1("ListIterator")), common = null; t1.moveNext$0();) { common0 = t1.__internal$_current; common = (common == null ? common0 : common).intersection$1(0, common0); } if (common.get$isEmpty(common)) return C.JSArray_methods.get$first(list).directionality; t1 = C.JSArray_methods.get$first(list).get$directionalAncestors(); return (t1 && C.JSArray_methods).firstWhere$1(t1, common.get$contains(common)).textDirection; }, _ReadingOrderSortData_sortWithDirectionality: function(list, directionality) { S.mergeSort(list, new U._ReadingOrderSortData_sortWithDirectionality_closure(directionality), type$._ReadingOrderSortData); }, _ReadingOrderDirectionalGroupData_sortWithDirectionality: function(list, directionality) { S.mergeSort(list, new U._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure(directionality), type$._ReadingOrderDirectionalGroupData); }, FocusTraversalGroup$: function(child, policy) { return new U.FocusTraversalGroup(policy == null ? new U.ReadingOrderTraversalPolicy(P.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData)) : policy, child, null); }, _getAncestor_closure: function _getAncestor_closure(t0) { this._box_0 = t0; }, _FocusTraversalGroupInfo: function _FocusTraversalGroupInfo(t0, t1) { this.policy = t0; this.members = t1; }, TraversalDirection: function TraversalDirection(t0) { this._focus_traversal$_name = t0; }, FocusTraversalPolicy: function FocusTraversalPolicy() { }, FocusTraversalPolicy__sortAllDescendants_visitGroups: function FocusTraversalPolicy__sortAllDescendants_visitGroups(t0, t1, t2) { this.groupKeys = t0; this.groups = t1; this.sortedDescendants = t2; }, FocusTraversalPolicy__sortAllDescendants_closure: function FocusTraversalPolicy__sortAllDescendants_closure() { }, _DirectionalPolicyDataEntry: function _DirectionalPolicyDataEntry(t0, t1) { this.direction = t0; this.node = t1; }, _DirectionalPolicyData: function _DirectionalPolicyData(t0) { this.history = t0; }, DirectionalFocusTraversalPolicyMixin: function DirectionalFocusTraversalPolicyMixin() { }, _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure: function _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure(t0) { this.node = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure(t0, t1) { this.vertical = t0; this.first = t1; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure() { }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1: function DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure() { }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1: function DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1(t0) { this.target = t0; }, DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate: function DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate(t0, t1, t2) { this.$this = t0; this.policyData = t1; this.nearestScope = t2; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure: function DirectionalFocusTraversalPolicyMixin_inDirection_closure(t0) { this.focusedScrollable = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure0: function DirectionalFocusTraversalPolicyMixin_inDirection_closure0(t0) { this.band = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure1: function DirectionalFocusTraversalPolicyMixin_inDirection_closure1(t0) { this.focusedChild = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure2: function DirectionalFocusTraversalPolicyMixin_inDirection_closure2(t0) { this.focusedScrollable = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure3: function DirectionalFocusTraversalPolicyMixin_inDirection_closure3(t0) { this.band = t0; }, DirectionalFocusTraversalPolicyMixin_inDirection_closure4: function DirectionalFocusTraversalPolicyMixin_inDirection_closure4(t0) { this.focusedChild = t0; }, _ReadingOrderSortData: function _ReadingOrderSortData(t0, t1, t2) { var _ = this; _.directionality = t0; _.rect = t1; _.node = t2; _._directionalAncestors = null; }, _ReadingOrderSortData_commonDirectionalityOf_closure: function _ReadingOrderSortData_commonDirectionalityOf_closure() { }, _ReadingOrderSortData_sortWithDirectionality_closure: function _ReadingOrderSortData_sortWithDirectionality_closure(t0) { this.directionality = t0; }, _ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors: function _ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors() { }, _ReadingOrderDirectionalGroupData: function _ReadingOrderDirectionalGroupData(t0) { this.members = t0; this._rect = null; }, _ReadingOrderDirectionalGroupData_rect_closure: function _ReadingOrderDirectionalGroupData_rect_closure() { }, _ReadingOrderDirectionalGroupData_sortWithDirectionality_closure: function _ReadingOrderDirectionalGroupData_sortWithDirectionality_closure(t0) { this.directionality = t0; }, ReadingOrderTraversalPolicy: function ReadingOrderTraversalPolicy(t0) { this.DirectionalFocusTraversalPolicyMixin__policyData = t0; }, ReadingOrderTraversalPolicy__pickNext_closure: function ReadingOrderTraversalPolicy__pickNext_closure() { }, ReadingOrderTraversalPolicy__pickNext_inBand: function ReadingOrderTraversalPolicy__pickNext_inBand() { }, ReadingOrderTraversalPolicy__pickNext_inBand_closure: function ReadingOrderTraversalPolicy__pickNext_inBand_closure(t0) { this.band = t0; }, FocusTraversalGroup: function FocusTraversalGroup(t0, t1, t2) { this.policy = t0; this.child = t1; this.key = t2; }, _FocusTraversalGroupState: function _FocusTraversalGroupState(t0) { var _ = this; _._widget = _.focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusTraversalGroupMarker: function _FocusTraversalGroupMarker(t0, t1, t2, t3) { var _ = this; _.policy = t0; _.focusNode = t1; _.child = t2; _.key = t3; }, RequestFocusAction: function RequestFocusAction(t0) { this._actions$_listeners = t0; }, NextFocusIntent: function NextFocusIntent() { }, NextFocusAction: function NextFocusAction(t0) { this._actions$_listeners = t0; }, PreviousFocusIntent: function PreviousFocusIntent() { }, PreviousFocusAction: function PreviousFocusAction(t0) { this._actions$_listeners = t0; }, DirectionalFocusIntent: function DirectionalFocusIntent(t0) { this.direction = t0; }, DirectionalFocusAction: function DirectionalFocusAction(t0) { this._actions$_listeners = t0; }, _FocusTraversalPolicy_Object_Diagnosticable: function _FocusTraversalPolicy_Object_Diagnosticable() { }, _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin: function _ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin() { }, __ReadingOrderDirectionalGroupData_Object_Diagnosticable: function __ReadingOrderDirectionalGroupData_Object_Diagnosticable() { }, __ReadingOrderSortData_Object_Diagnosticable: function __ReadingOrderSortData_Object_Diagnosticable() { }, createLocalImageConfiguration: function(context, size) { var t1, t2; context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultAssetBundle); t1 = $.$get$rootBundle(); t2 = F.MediaQuery_maybeOf(context); t2 = t2 == null ? null : t2.devicePixelRatio; if (t2 == null) t2 = 1; return new M.ImageConfiguration(t1, t2, L.Localizations_maybeLocaleOf(context), T.Directionality_maybeOf(context), size, U.defaultTargetPlatform()); }, Image$: function(alignment, color, colorBlendMode, errorBuilder, filterQuality, fit, frameBuilder, gaplessPlayback, height, image, loadingBuilder, matchTextDirection, repeat, width) { return new U.Image(image, frameBuilder, loadingBuilder, errorBuilder, width, height, color, filterQuality, colorBlendMode, fit, alignment, repeat, false, false, null); }, Image$asset: function($name, height, width) { var _null = null; return new U.Image(M.ResizeImage_resizeIfNeeded(_null, _null, new L.AssetImage($name, _null, _null)), _null, _null, _null, width, height, _null, C.FilterQuality_1, _null, _null, C.Alignment_0_0, C.ImageRepeat_3, false, false, _null); }, Image: function Image(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.image = t0; _.frameBuilder = t1; _.loadingBuilder = t2; _.errorBuilder = t3; _.width = t4; _.height = t5; _.color = t6; _.filterQuality = t7; _.colorBlendMode = t8; _.fit = t9; _.alignment = t10; _.repeat = t11; _.matchTextDirection = t12; _.gaplessPlayback = t13; _.key = t14; }, _ImageState: function _ImageState(t0) { var _ = this; _._loadingProgress = _._imageInfo = _._imageStream = null; _._isListeningToStream = false; _.___ImageState__invertColors = $; _._frameNumber = null; _._wasSynchronouslyLoaded = false; _.___ImageState__scrollAwareContext = $; _._widget = _._imageStreamListener = _._completerHandle = _._lastStack = _._lastException = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ImageState__getListener_closure: function _ImageState__getListener_closure(t0) { this.$this = t0; }, _ImageState__getListener__closure: function _ImageState__getListener__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _ImageState__handleImageFrame_closure: function _ImageState__handleImageFrame_closure(t0, t1, t2) { this.$this = t0; this.imageInfo = t1; this.synchronousCall = t2; }, _ImageState__handleImageChunk_closure: function _ImageState__handleImageChunk_closure(t0, t1) { this.$this = t0; this.event = t1; }, _ImageState__updateSourceStream_closure: function _ImageState__updateSourceStream_closure(t0) { this.$this = t0; }, _ImageState__updateSourceStream_closure0: function _ImageState__updateSourceStream_closure0(t0) { this.$this = t0; }, __ImageState_State_WidgetsBindingObserver: function __ImageState_State_WidgetsBindingObserver() { }, Notification0: function Notification0() { }, NotificationListener: function NotificationListener(t0, t1, t2, t3) { var _ = this; _.child = t0; _.onNotification = t1; _.key = t2; _.$ti = t3; }, LayoutChangedNotification: function LayoutChangedNotification() { }, RestorableValue: function RestorableValue() { }, _RestorablePrimitiveValueN: function _RestorablePrimitiveValueN() { }, _RestorablePrimitiveValue: function _RestorablePrimitiveValue() { }, RestorableNum: function RestorableNum(t0, t1, t2) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t1; _.$ti = t2; }, RestorableBool: function RestorableBool(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t1; }, RestorableDateTime: function RestorableDateTime(t0, t1) { var _ = this; _._defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t1; }, RestorableListenable: function RestorableListenable() { }, RestorableChangeNotifier: function RestorableChangeNotifier() { }, RestorableTextEditingController: function RestorableTextEditingController(t0, t1) { var _ = this; _._initialValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t1; }, SliverPersistentHeaderDelegate: function SliverPersistentHeaderDelegate() { }, SliverPersistentHeader: function SliverPersistentHeader(t0, t1, t2, t3) { var _ = this; _.delegate = t0; _.pinned = t1; _.floating = t2; _.key = t3; }, _SliverPersistentHeaderElement: function _SliverPersistentHeaderElement(t0, t1, t2, t3) { var _ = this; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = _.child = null; _._cachedHash = t0; _._slot = null; _.__Element__depth = $; _._widget = t1; _._owner = null; _._lifecycleState = t2; _._debugForgottenChildrenWithGlobalKey = t3; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _SliverPersistentHeaderElement__build_closure: function _SliverPersistentHeaderElement__build_closure(t0, t1, t2) { this.$this = t0; this.shrinkOffset = t1; this.overlapsContent = t2; }, _SliverPersistentHeaderRenderObjectWidget: function _SliverPersistentHeaderRenderObjectWidget() { }, _RenderSliverPersistentHeaderForWidgetsMixin: function _RenderSliverPersistentHeaderForWidgetsMixin() { }, _SliverPinnedPersistentHeader: function _SliverPinnedPersistentHeader(t0, t1) { this.delegate = t0; this.key = t1; }, _RenderSliverPinnedPersistentHeaderForWidgets: function _RenderSliverPinnedPersistentHeaderForWidgets(t0, t1, t2) { var _ = this; _._RenderSliverPersistentHeaderForWidgetsMixin__element = t0; _.__RenderSliverPersistentHeader__lastStretchOffset = $; _._needsUpdateChild = true; _._lastShrinkOffset = 0; _._lastOverlapsContent = false; _.stretchConfiguration = t1; _.RenderObjectWithChildMixin__child = t2; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, __RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin: function __RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin() { }, TickerMode_of: function(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._EffectiveTickerMode), t1 = widget == null ? null : widget.enabled; return t1 !== false; }, TickerMode: function TickerMode(t0, t1, t2) { this.enabled = t0; this.child = t1; this.key = t2; }, _EffectiveTickerMode: function _EffectiveTickerMode(t0, t1, t2) { this.enabled = t0; this.child = t1; this.key = t2; }, SingleTickerProviderStateMixin: function SingleTickerProviderStateMixin() { }, TickerProviderStateMixin: function TickerProviderStateMixin() { }, _WidgetTicker: function _WidgetTicker(t0, t1, t2) { var _ = this; _._creator = t0; _._ticker$_future = null; _._muted = false; _._startTime = null; _._onTick = t1; _._animationId = null; _.debugLabel = t2; _.__Ticker__debugCreationStack = $; }, Title: function Title(t0, t1, t2, t3) { var _ = this; _.title = t0; _.color = t1; _.child = t2; _.key = t3; }, _get24HourVersionOf: function(original) { switch (original) { case C.TimeOfDayFormat_0: case C.TimeOfDayFormat_1: case C.TimeOfDayFormat_2: case C.TimeOfDayFormat_3: return original; case C.TimeOfDayFormat_4: case C.TimeOfDayFormat_5: return C.TimeOfDayFormat_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, GlobalMaterialLocalizations: function GlobalMaterialLocalizations() { }, _MaterialLocalizationsDelegate0: function _MaterialLocalizationsDelegate0() { }, _MaterialLocalizationsDelegate_load_closure: function _MaterialLocalizationsDelegate_load_closure(t0) { this.locale = t0; }, GoogleAuthInitFailureError: function GoogleAuthInitFailureError() { }, GoogleAuthSignInError: function GoogleAuthSignInError() { }, OfflineAccessResponse: function OfflineAccessResponse() { }, GoogleAuth: function GoogleAuth() { }, _GoogleAuth: function _GoogleAuth() { }, IsSignedIn: function IsSignedIn() { }, CurrentUser: function CurrentUser() { }, SigninOptions: function SigninOptions() { }, OfflineAccessOptions: function OfflineAccessOptions() { }, ClientConfig: function ClientConfig() { }, SigninOptionsBuilder: function SigninOptionsBuilder() { }, BasicProfile: function BasicProfile() { }, AuthResponse: function AuthResponse() { }, AuthorizeConfig: function AuthorizeConfig() { }, AuthorizeResponse: function AuthorizeResponse() { }, GoogleUser: function GoogleUser() { }, _GoogleUser: function _GoogleUser() { }, Promise: function Promise() { }, Response$bytes: function(bodyBytes, statusCode, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = B.toUint8List(bodyBytes), t2 = J.get$length$asx(bodyBytes); t1 = new U.Response(t1, request, statusCode, reasonPhrase, t2, headers, false, true); t1.BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, t2, headers, false, true, reasonPhrase, request); return t1; }, Response_fromStream: function(response) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Response), $async$returnValue, body, t1, t2; var $async$Response_fromStream = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(response.stream.toBytes$0(), $async$Response_fromStream); case 3: // returning from await. body = $async$result; t1 = response.statusCode; t2 = response.request; $async$returnValue = U.Response$bytes(body, t1, response.headers, false, true, response.reasonPhrase, t2); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$Response_fromStream, $async$completer); }, _contentTypeForHeaders: function(headers) { var contentType = headers.$index(0, "content-type"); if (contentType != null) return R.MediaType_MediaType$parse(contentType); return R.MediaType$("application", "octet-stream", null); }, Response: function Response(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.bodyBytes = t0; _.request = t1; _.statusCode = t2; _.reasonPhrase = t3; _.contentLength = t4; _.headers = t5; _.isRedirect = t6; _.persistentConnection = t7; }, IntlStream: function IntlStream(t0) { this.contents = t0; this.index = 0; }, HealthCheckResponse: function HealthCheckResponse() { }, HealthCheckPHPResponse: function HealthCheckPHPResponse() { }, _$HealthCheckResponseSerializer: function _$HealthCheckResponseSerializer() { }, _$HealthCheckPHPResponseSerializer: function _$HealthCheckPHPResponseSerializer() { }, _$HealthCheckResponse: function _$HealthCheckResponse(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.systemHealth = t0; _.phpVersion = t1; _.envWritable = t2; _.dbCheck = t3; _.cacheEnabled = t4; _.phantomEnabled = t5; _.openBasedir = t6; _.execEnabled = t7; _.emailDriver = t8; _.pendingJobs = t9; _.pdfEngine = t10; _.trailingSlash = t11; _.queue = t12; _._health_check_model$__hashCode = null; }, HealthCheckResponseBuilder: function HealthCheckResponseBuilder() { var _ = this; _._health_check_model$_queue = _._trailingSlash = _._pdfEngine = _._pendingJobs = _._emailDriver = _._execEnabled = _._openBasedir = _._phantomEnabled = _._cacheEnabled = _._dbCheck = _._envWritable = _._phpVersion = _._systemHealth = _._health_check_model$_$v = null; }, _$HealthCheckPHPResponse: function _$HealthCheckPHPResponse(t0, t1, t2, t3) { var _ = this; _.minimumPHPVersion = t0; _.currentPHPVersion = t1; _.currentPHPCLIVersion = t2; _.isOkay = t3; _._health_check_model$__hashCode = null; }, HealthCheckPHPResponseBuilder: function HealthCheckPHPResponseBuilder() { var _ = this; _._isOkay = _._currentPHPCLIVersion = _._currentPHPVersion = _._minimumPHPVersion = _._health_check_model$_$v = null; }, TimezoneListResponse: function TimezoneListResponse() { }, TimezoneItemResponse: function TimezoneItemResponse() { }, TimezoneEntity: function TimezoneEntity() { }, _$TimezoneListResponseSerializer: function _$TimezoneListResponseSerializer() { }, _$TimezoneItemResponseSerializer: function _$TimezoneItemResponseSerializer() { }, _$TimezoneEntitySerializer: function _$TimezoneEntitySerializer() { }, _$TimezoneListResponse: function _$TimezoneListResponse(t0) { this.data = t0; this._timezone_model$__hashCode = null; }, TimezoneListResponseBuilder: function TimezoneListResponseBuilder() { this._timezone_model$_data = this._timezone_model$_$v = null; }, _$TimezoneItemResponse: function _$TimezoneItemResponse(t0) { this.data = t0; this._timezone_model$__hashCode = null; }, TimezoneItemResponseBuilder: function TimezoneItemResponseBuilder() { this._timezone_model$_data = this._timezone_model$_$v = null; }, _$TimezoneEntity: function _$TimezoneEntity(t0, t1, t2) { var _ = this; _.name = t0; _.location = t1; _.id = t2; _._timezone_model$__hashCode = null; }, TimezoneEntityBuilder: function TimezoneEntityBuilder() { var _ = this; _._timezone_model$_id = _._location = _._timezone_model$_name = _._timezone_model$_$v = null; }, _TimezoneEntity_Object_SelectableEntity: function _TimezoneEntity_Object_SelectableEntity() { }, ExpenseCategoryRepository: function ExpenseCategoryRepository() { }, ProductRepository: function ProductRepository() { }, ProductRepository_saveData_closure: function ProductRepository_saveData_closure() { }, QuoteRepository: function QuoteRepository() { }, QuoteRepository_saveData_closure: function QuoteRepository_saveData_closure() { }, dropdownExpenseCategoriesSelector: function(categoryMap, categoryList) { var t1 = J.where$1$ax(categoryList._list, new U.dropdownExpenseCategoriesSelector_closure(categoryMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new U.dropdownExpenseCategoriesSelector_closure0(categoryMap)); return list; }, getCurrencyIds: function(company, clientMap, groupMap) { var t2, currencyIds, t1 = company.settings.currencyId; if (t1 == null) t1 = "1"; t2 = type$.JSArray_legacy_String; currencyIds = H.setRuntimeTypeInfo([t1], t2); J.forEach$1$ax(clientMap._map$_map, new U.getCurrencyIds_closure(groupMap, currencyIds)); if (currencyIds.length > 1) { t1 = H.setRuntimeTypeInfo(["-1"], t2); C.JSArray_methods.addAll$1(t1, currencyIds); } else t1 = currencyIds; return t1; }, filteredSelector: function(filter, state) { var t2, list = H.setRuntimeTypeInfo([], type$.JSArray_legacy_BaseEntity), t1 = J.map$1$1$ax(state.productState.list._list, new U.filteredSelector_closure(state), type$.legacy_ProductEntity).where$1(0, new U.filteredSelector_closure0(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = J.map$1$1$ax(state.clientState.list._list, new U.filteredSelector_closure1(state), type$.legacy_ClientEntity).where$1(0, new U.filteredSelector_closure2(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); t1 = type$.legacy_InvoiceEntity; t2 = J.map$1$1$ax(state.quoteState.list._list, new U.filteredSelector_closure3(state), t1).where$1(0, new U.filteredSelector_closure4(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E"))); t2 = J.map$1$1$ax(state.paymentState.list._list, new U.filteredSelector_closure5(state), type$.legacy_PaymentEntity).where$1(0, new U.filteredSelector_closure6(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E"))); t2 = J.map$1$1$ax(state.projectState.list._list, new U.filteredSelector_closure7(state), type$.legacy_ProjectEntity).where$1(0, new U.filteredSelector_closure8(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E"))); t2 = J.map$1$1$ax(state.taskState.list._list, new U.filteredSelector_closure9(state), type$.legacy_TaskEntity).where$1(0, new U.filteredSelector_closure10(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E"))); t1 = J.map$1$1$ax(state.invoiceState.list._list, new U.filteredSelector_closure11(state), t1).where$1(0, new U.filteredSelector_closure12(filter)); C.JSArray_methods.addAll$1(list, P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E"))); C.JSArray_methods.sort$1(list, new U.filteredSelector_closure13()); return list; }, localeSelector: function(state) { var t2, t3, locale, _null = null, t1 = state.staticState; t1 = t1 == null ? _null : t1.languageMap; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany.company; t2 = t3 == null ? _null : t3.settings; t2 = t2 == null ? _null : t2.languageId; t2 = J.$index$asx(t1._map$_map, t2); locale = t2 == null ? _null : t2.locale; if (locale == null) locale = "en"; if (locale === "mk_MK" || locale === "sq") return "en"; else return locale; }, memoizedDropdownExpenseCategoriesList_closure: function memoizedDropdownExpenseCategoriesList_closure() { }, dropdownExpenseCategoriesSelector_closure: function dropdownExpenseCategoriesSelector_closure(t0) { this.categoryMap = t0; }, dropdownExpenseCategoriesSelector_closure0: function dropdownExpenseCategoriesSelector_closure0(t0) { this.categoryMap = t0; }, memoizedHasMultipleCurrencies_closure: function memoizedHasMultipleCurrencies_closure() { }, memoizedGetCurrencyIds_closure: function memoizedGetCurrencyIds_closure() { }, getCurrencyIds_closure: function getCurrencyIds_closure(t0, t1) { this.groupMap = t0; this.currencyIds = t1; }, memoizedFilteredSelector_closure: function memoizedFilteredSelector_closure() { }, filteredSelector_closure: function filteredSelector_closure(t0) { this.state = t0; }, filteredSelector_closure0: function filteredSelector_closure0(t0) { this.filter = t0; }, filteredSelector_closure1: function filteredSelector_closure1(t0) { this.state = t0; }, filteredSelector_closure2: function filteredSelector_closure2(t0) { this.filter = t0; }, filteredSelector_closure3: function filteredSelector_closure3(t0) { this.state = t0; }, filteredSelector_closure4: function filteredSelector_closure4(t0) { this.filter = t0; }, filteredSelector_closure5: function filteredSelector_closure5(t0) { this.state = t0; }, filteredSelector_closure6: function filteredSelector_closure6(t0) { this.filter = t0; }, filteredSelector_closure7: function filteredSelector_closure7(t0) { this.state = t0; }, filteredSelector_closure8: function filteredSelector_closure8(t0) { this.filter = t0; }, filteredSelector_closure9: function filteredSelector_closure9(t0) { this.state = t0; }, filteredSelector_closure10: function filteredSelector_closure10(t0) { this.filter = t0; }, filteredSelector_closure11: function filteredSelector_closure11(t0) { this.state = t0; }, filteredSelector_closure12: function filteredSelector_closure12(t0) { this.filter = t0; }, filteredSelector_closure13: function filteredSelector_closure13() { }, _$CompanyGatewayState$_: function(list, map) { var _s19_ = "CompanyGatewayState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "list")); return new U._$CompanyGatewayState(map, list); }, _$CompanyGatewayUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("CompanyGatewayUIState", "listUIState")); return new U._$CompanyGatewayUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, CompanyGatewayState: function CompanyGatewayState() { }, CompanyGatewayUIState: function CompanyGatewayUIState() { }, _$CompanyGatewayStateSerializer: function _$CompanyGatewayStateSerializer() { }, _$CompanyGatewayUIStateSerializer: function _$CompanyGatewayUIStateSerializer() { }, _$CompanyGatewayState: function _$CompanyGatewayState(t0, t1) { this.map = t0; this.list = t1; this._company_gateway_state$__hashCode = null; }, CompanyGatewayStateBuilder: function CompanyGatewayStateBuilder() { this._company_gateway_state$_list = this._company_gateway_state$_map = this._company_gateway_state$_$v = null; }, _$CompanyGatewayUIState: function _$CompanyGatewayUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._company_gateway_state$__hashCode = null; }, CompanyGatewayUIStateBuilder: function CompanyGatewayUIStateBuilder() { var _ = this; _._company_gateway_state$_cancelCompleter = _._company_gateway_state$_saveCompleter = _._company_gateway_state$_tabIndex = _._company_gateway_state$_forceSelected = _._company_gateway_state$_selectedId = _._company_gateway_state$_listUIState = _._company_gateway_state$_editing = _._company_gateway_state$_$v = null; }, _CompanyGatewayUIState_Object_EntityUIState: function _CompanyGatewayUIState_Object_EntityUIState() { }, designUIReducer: function(state, action) { var t1; state.toString; t1 = new Y.DesignUIStateBuilder(); t1._design_state$_$v = state; new U.designUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing1: function(design, action) { return D.DesignEntity_DesignEntity(null, null, null); }, _updateEditing1: function(design, action) { return action.get$design(); }, _viewDesignList0: function(designListState, action) { return designListState.rebuild$1(new U._viewDesignList_closure()); }, _filterDesignsByCustom1: function(designListState, action) { var t1 = designListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return designListState.rebuild$1(new U._filterDesignsByCustom1_closure(action)); else return designListState.rebuild$1(new U._filterDesignsByCustom1_closure0(action)); }, _filterDesignsByCustom2: function(designListState, action) { var t1 = designListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return designListState.rebuild$1(new U._filterDesignsByCustom2_closure(action)); else return designListState.rebuild$1(new U._filterDesignsByCustom2_closure0(action)); }, _filterDesignsByState: function(designListState, action) { var t1 = designListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return designListState.rebuild$1(new U._filterDesignsByState_closure(action)); else return designListState.rebuild$1(new U._filterDesignsByState_closure0(action)); }, _filterDesigns: function(designListState, action) { return designListState.rebuild$1(new U._filterDesigns_closure(action, designListState)); }, _sortDesigns: function(designListState, action) { return designListState.rebuild$1(new U._sortDesigns_closure(action)); }, _startListMultiselect2: function(productListState, action) { return productListState.rebuild$1(new U._startListMultiselect_closure11()); }, _addToListMultiselect2: function(productListState, action) { return productListState.rebuild$1(new U._addToListMultiselect_closure11(action)); }, _removeFromListMultiselect2: function(productListState, action) { return productListState.rebuild$1(new U._removeFromListMultiselect_closure11(action)); }, _clearListMultiselect2: function(productListState, action) { return productListState.rebuild$1(new U._clearListMultiselect_closure11()); }, _archiveDesignSuccess: function(designState, action) { return designState.rebuild$1(new U._archiveDesignSuccess_closure(action)); }, _deleteDesignSuccess: function(designState, action) { return designState.rebuild$1(new U._deleteDesignSuccess_closure(action)); }, _restoreDesignSuccess: function(designState, action) { return designState.rebuild$1(new U._restoreDesignSuccess_closure(action)); }, _addDesign: function(designState, action) { return designState.rebuild$1(new U._addDesign_closure(action)); }, _updateDesign: function(designState, action) { return designState.rebuild$1(new U._updateDesign_closure(action)); }, _setLoadedDesign: function(designState, action) { return designState.rebuild$1(new U._setLoadedDesign_closure(action)); }, _setLoadedDesigns: function(designState, action) { return designState.loadDesigns$1(action.designs); }, _setLoadedCompany2: function(designState, action) { return designState.loadDesigns$1(action.userCompany.company.designs); }, designUIReducer_closure: function designUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure87: function forceSelectedReducer_closure87() { }, forceSelectedReducer_closure88: function forceSelectedReducer_closure88() { }, forceSelectedReducer_closure89: function forceSelectedReducer_closure89() { }, forceSelectedReducer_closure90: function forceSelectedReducer_closure90() { }, forceSelectedReducer_closure91: function forceSelectedReducer_closure91() { }, forceSelectedReducer_closure92: function forceSelectedReducer_closure92() { }, forceSelectedReducer_closure93: function forceSelectedReducer_closure93() { }, forceSelectedReducer_closure94: function forceSelectedReducer_closure94() { }, selectedIdReducer_closure179: function selectedIdReducer_closure179() { }, selectedIdReducer_closure180: function selectedIdReducer_closure180() { }, selectedIdReducer_closure181: function selectedIdReducer_closure181() { }, selectedIdReducer_closure182: function selectedIdReducer_closure182() { }, selectedIdReducer_closure183: function selectedIdReducer_closure183() { }, selectedIdReducer_closure184: function selectedIdReducer_closure184() { }, selectedIdReducer_closure185: function selectedIdReducer_closure185() { }, selectedIdReducer_closure186: function selectedIdReducer_closure186() { }, selectedIdReducer_closure187: function selectedIdReducer_closure187() { }, selectedIdReducer_closure188: function selectedIdReducer_closure188() { }, selectedIdReducer_closure189: function selectedIdReducer_closure189() { }, selectedIdReducer_closure190: function selectedIdReducer_closure190() { }, selectedIdReducer_closure191: function selectedIdReducer_closure191() { }, selectedIdReducer_closure192: function selectedIdReducer_closure192() { }, editingReducer_closure58: function editingReducer_closure58() { }, editingReducer_closure59: function editingReducer_closure59() { }, editingReducer_closure60: function editingReducer_closure60() { }, editingReducer_closure61: function editingReducer_closure61() { }, editingReducer__closure23: function editingReducer__closure23() { }, _viewDesignList_closure: function _viewDesignList_closure() { }, _filterDesignsByCustom1_closure: function _filterDesignsByCustom1_closure(t0) { this.action = t0; }, _filterDesignsByCustom1_closure0: function _filterDesignsByCustom1_closure0(t0) { this.action = t0; }, _filterDesignsByCustom2_closure: function _filterDesignsByCustom2_closure(t0) { this.action = t0; }, _filterDesignsByCustom2_closure0: function _filterDesignsByCustom2_closure0(t0) { this.action = t0; }, _filterDesignsByState_closure: function _filterDesignsByState_closure(t0) { this.action = t0; }, _filterDesignsByState_closure0: function _filterDesignsByState_closure0(t0) { this.action = t0; }, _filterDesigns_closure: function _filterDesigns_closure(t0, t1) { this.action = t0; this.designListState = t1; }, _sortDesigns_closure: function _sortDesigns_closure(t0) { this.action = t0; }, _startListMultiselect_closure11: function _startListMultiselect_closure11() { }, _addToListMultiselect_closure11: function _addToListMultiselect_closure11(t0) { this.action = t0; }, _removeFromListMultiselect_closure11: function _removeFromListMultiselect_closure11(t0) { this.action = t0; }, _clearListMultiselect_closure11: function _clearListMultiselect_closure11() { }, _archiveDesignSuccess_closure: function _archiveDesignSuccess_closure(t0) { this.action = t0; }, _deleteDesignSuccess_closure: function _deleteDesignSuccess_closure(t0) { this.action = t0; }, _restoreDesignSuccess_closure: function _restoreDesignSuccess_closure(t0) { this.action = t0; }, _addDesign_closure: function _addDesign_closure(t0) { this.action = t0; }, _updateDesign_closure: function _updateDesign_closure(t0) { this.action = t0; }, _setLoadedDesign_closure: function _setLoadedDesign_closure(t0) { this.action = t0; }, handleRecurringExpenseAction: function(context, recurringExpenses, action) { var store, t1, recurringExpense, t2, recurringExpenseIds, _i, t3, _null = null, _s26_ = "restored_recurring_expense", _s26_0 = "archived_recurring_expense", _s25_ = "deleted_recurring_expense", _s12_ = "_dispatchers"; if (recurringExpenses.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); recurringExpense = type$.legacy_ExpenseEntity._as(C.JSArray_methods.get$first(recurringExpenses)); t2 = H._arrayInstanceType(recurringExpenses)._eval$1("MappedListIterable<1,String*>"); recurringExpenseIds = P.List_List$of(new H.MappedListIterable(recurringExpenses, new U.handleRecurringExpenseAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, recurringExpense, _null); break; case C.EntityAction_restore: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s26_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s26_); t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.RestoreRecurringExpensesRequest(t1, recurringExpenseIds)); break; case C.EntityAction_archive: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s26_0); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s26_0); t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.ArchiveRecurringExpensesRequest(t1, recurringExpenseIds)); break; case C.EntityAction_delete: t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s25_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s25_); t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.DeleteRecurringExpensesRequest(t1, recurringExpenseIds)); break; case C.EntityAction_start: t2 = recurringExpense.lastSentDate; t1 = t2.length === 0 ? t1.get$startedRecurringInvoice() : t1.get$resumedRecurringInvoice(); t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.StartRecurringExpensesRequest(t1, recurringExpenseIds)); break; case C.EntityAction_stop: t1 = O.snackBarCompleter(context, t1.get$stoppedRecurringInvoice(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.StopRecurringExpensesRequest(t1, recurringExpenseIds)); break; case C.EntityAction_cloneToExpense: M.createEntity(_null, _null, context, recurringExpense.get$clone(recurringExpense).rebuild$1(new U.handleRecurringExpenseAction_closure0()), _null, false); break; case C.EntityAction_cloneToRecurring: M.createEntity(_null, _null, context, recurringExpense.get$clone(recurringExpense).rebuild$1(new U.handleRecurringExpenseAction_closure1()), _null, false); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.recurringExpenseUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.StartRecurringExpenseMultiselect()); t1 = recurringExpenses.length; if (t1 === 0) break; for (_i = 0; _i < recurringExpenses.length; recurringExpenses.length === t1 || (0, H.throwConcurrentModificationError)(recurringExpenses), ++_i) { recurringExpense = recurringExpenses[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.recurringExpenseUIState.listUIState; t3 = J.get$id$x(recurringExpense); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new U.AddToRecurringExpenseMultiselect(recurringExpense)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new U.RemoveFromRecurringExpenseMultiselect(recurringExpense)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([recurringExpense], type$.JSArray_legacy_BaseEntity), false); break; default: P.print("## ERROR: unhandled action " + H.S(action) + " in recurring_expense_actions"); break; } }, ViewRecurringExpenseList: function ViewRecurringExpenseList() { }, ViewRecurringExpense: function ViewRecurringExpense(t0) { this.recurringExpenseId = t0; }, EditRecurringExpense: function EditRecurringExpense(t0) { this.recurringExpense = t0; }, UpdateRecurringExpense: function UpdateRecurringExpense(t0) { this.recurringExpense = t0; }, LoadRecurringExpense: function LoadRecurringExpense(t0, t1) { this.completer = t0; this.recurringExpenseId = t1; }, LoadRecurringExpenses: function LoadRecurringExpenses() { }, LoadRecurringExpenseRequest: function LoadRecurringExpenseRequest() { }, LoadRecurringExpenseFailure: function LoadRecurringExpenseFailure(t0) { this.error = t0; }, LoadRecurringExpenseSuccess: function LoadRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, LoadRecurringExpensesRequest: function LoadRecurringExpensesRequest() { }, LoadRecurringExpensesFailure: function LoadRecurringExpensesFailure(t0) { this.error = t0; }, LoadRecurringExpensesSuccess: function LoadRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, SaveRecurringExpenseRequest: function SaveRecurringExpenseRequest(t0, t1) { this.completer = t0; this.recurringExpense = t1; }, SaveRecurringExpenseSuccess: function SaveRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, AddRecurringExpenseSuccess: function AddRecurringExpenseSuccess(t0) { this.recurringExpense = t0; }, SaveRecurringExpenseFailure: function SaveRecurringExpenseFailure() { }, ArchiveRecurringExpensesRequest: function ArchiveRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, ArchiveRecurringExpensesSuccess: function ArchiveRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, ArchiveRecurringExpensesFailure: function ArchiveRecurringExpensesFailure() { }, DeleteRecurringExpensesRequest: function DeleteRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, DeleteRecurringExpensesSuccess: function DeleteRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, DeleteRecurringExpensesFailure: function DeleteRecurringExpensesFailure() { }, RestoreRecurringExpensesRequest: function RestoreRecurringExpensesRequest(t0, t1) { this.completer = t0; this.recurringExpenseIds = t1; }, RestoreRecurringExpensesSuccess: function RestoreRecurringExpensesSuccess(t0) { this.recurringExpenses = t0; }, RestoreRecurringExpensesFailure: function RestoreRecurringExpensesFailure() { }, FilterRecurringExpenses: function FilterRecurringExpenses(t0) { this.filter = t0; }, SortRecurringExpenses: function SortRecurringExpenses(t0) { this.field = t0; }, FilterRecurringExpensesByState: function FilterRecurringExpensesByState(t0) { this.state = t0; }, FilterRecurringExpensesByCustom1: function FilterRecurringExpensesByCustom1(t0) { this.value = t0; }, FilterRecurringExpensesByCustom2: function FilterRecurringExpensesByCustom2(t0) { this.value = t0; }, FilterRecurringExpensesByCustom3: function FilterRecurringExpensesByCustom3(t0) { this.value = t0; }, FilterRecurringExpensesByCustom4: function FilterRecurringExpensesByCustom4(t0) { this.value = t0; }, StartRecurringExpenseMultiselect: function StartRecurringExpenseMultiselect() { }, AddToRecurringExpenseMultiselect: function AddToRecurringExpenseMultiselect(t0) { this.entity = t0; }, RemoveFromRecurringExpenseMultiselect: function RemoveFromRecurringExpenseMultiselect(t0) { this.entity = t0; }, ClearRecurringExpenseMultiselect: function ClearRecurringExpenseMultiselect() { }, UpdateRecurringExpenseTab: function UpdateRecurringExpenseTab(t0) { this.tabIndex = t0; }, StartRecurringExpensesRequest: function StartRecurringExpensesRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, StartRecurringExpensesSuccess: function StartRecurringExpensesSuccess(t0) { this.expenses = t0; }, StartRecurringExpensesFailure: function StartRecurringExpensesFailure() { }, StopRecurringExpensesRequest: function StopRecurringExpensesRequest(t0, t1) { this.completer = t0; this.expenseIds = t1; }, StopRecurringExpensesSuccess: function StopRecurringExpensesSuccess(t0) { this.expenses = t0; }, StopRecurringExpensesFailure: function StopRecurringExpensesFailure() { }, SaveRecurringExpenseDocumentRequest: function SaveRecurringExpenseDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.expense = t2; }, SaveRecurringExpenseDocumentFailure: function SaveRecurringExpenseDocumentFailure() { }, handleRecurringExpenseAction_closure: function handleRecurringExpenseAction_closure() { }, handleRecurringExpenseAction_closure0: function handleRecurringExpenseAction_closure0() { }, handleRecurringExpenseAction_closure1: function handleRecurringExpenseAction_closure1() { }, handleTaskAction: function(context, tasks, action) { var store, state, t1, t2, task, t3, t4, client, taskIds, items, message, _i, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (tasks.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = type$.legacy_AppLocalization; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); task = type$.legacy_TaskEntity._as(C.JSArray_methods.get$first(tasks)); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; client = J.$index$asx(t3._list, t4).clientState.$get$1(0, task.clientId); t4 = H._arrayInstanceType(tasks); t3 = t4._eval$1("MappedListIterable<1,String*>"); taskIds = P.List_List$of(new H.MappedListIterable(tasks, new U.handleTaskAction_closure(), t3), true, t3._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, task, _null); break; case C.EntityAction_start: case C.EntityAction_stop: case C.EntityAction_resume: t2 = new P._Future($.Zone__current, type$._Future_legacy_TaskEntity); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); t3 = task.get$isRunning() ? task.stop$0(0) : task.addTaskTime$1(D.TaskTime_TaskTime(_null, _null)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.SaveTaskRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaskEntity), t3, true)); t2.then$1$1(0, new U.handleTaskAction_closure0(t1), type$.Null).catchError$1(new U.handleTaskAction_closure1(context)); break; case C.EntityAction_invoiceTask: C.JSArray_methods.sort$1(tasks, new U.handleTaskAction_closure2()); t1 = t4._eval$1("MappedIterable<1,InvoiceItemEntity*>"); items = P.List_List$of(new H.MappedIterable(new H.WhereIterable(tasks, new U.handleTaskAction_closure3(), t4._eval$1("WhereIterable<1>")), new U.handleTaskAction_closure4(context), t1), true, t1._eval$1("Iterable.E")); if (items.length !== 0) M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(client, _null, _null, state, _null).rebuild$1(new U.handleTaskAction_closure5(items)), _null, false); break; case C.EntityAction_clone: M.createEntity(_null, _null, context, task.get$clone(task), _null, false); break; case C.EntityAction_restore: t1 = taskIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "restored_tasks"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "restored_task"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.RestoreTaskRequest(t1, taskIds)); break; case C.EntityAction_archive: t1 = taskIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "archived_tasks"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "archived_task"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.ArchiveTaskRequest(t1, taskIds)); break; case C.EntityAction_delete: t1 = taskIds.length; if (t1 > 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "deleted_tasks"); if (t2 == null) t2 = ""; message = C.JSString_methods.replaceFirst$2(t2, _s6_, C.JSInt_methods.toString$0(t1)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "deleted_task"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.DeleteTaskRequest(t1, taskIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.taskUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.StartTaskMultiselect()); t1 = tasks.length; if (t1 === 0) break; for (_i = 0; _i < tasks.length; tasks.length === t1 || (0, H.throwConcurrentModificationError)(tasks), ++_i) { task = tasks[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.taskUIState.listUIState; t3 = J.get$id$x(task); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new U.AddToTaskMultiselect(task)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new U.RemoveFromTaskMultiselect(task)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([task], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewTaskList: function ViewTaskList() { }, ViewTask: function ViewTask(t0) { this.taskId = t0; }, EditTask: function EditTask(t0, t1) { this.taskTimeIndex = t0; this.task = t1; }, UpdateTask: function UpdateTask(t0) { this.task = t0; }, LoadTask: function LoadTask(t0, t1) { this.completer = t0; this.taskId = t1; }, LoadTasks: function LoadTasks() { }, LoadTaskRequest: function LoadTaskRequest() { }, LoadTaskFailure: function LoadTaskFailure(t0) { this.error = t0; }, LoadTaskSuccess: function LoadTaskSuccess(t0) { this.task = t0; }, EditTaskTime: function EditTaskTime() { }, AddTaskTime: function AddTaskTime(t0, t1) { this.taskTime = t0; this.showAsRunning = t1; }, UpdateTaskTime: function UpdateTaskTime(t0, t1) { this.index = t0; this.taskTime = t1; }, DeleteTaskTime: function DeleteTaskTime(t0) { this.index = t0; }, LoadTasksRequest: function LoadTasksRequest() { }, LoadTasksFailure: function LoadTasksFailure(t0) { this.error = t0; }, LoadTasksSuccess: function LoadTasksSuccess(t0) { this.tasks = t0; }, SaveTaskRequest: function SaveTaskRequest(t0, t1, t2) { this.completer = t0; this.task = t1; this.autoSelect = t2; }, SaveTaskSuccess: function SaveTaskSuccess(t0) { this.task = t0; }, AddTaskSuccess: function AddTaskSuccess(t0, t1) { this.task = t0; this.autoSelect = t1; }, SaveTaskFailure: function SaveTaskFailure() { }, ArchiveTaskRequest: function ArchiveTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, ArchiveTaskSuccess: function ArchiveTaskSuccess(t0) { this.tasks = t0; }, ArchiveTaskFailure: function ArchiveTaskFailure() { }, DeleteTaskRequest: function DeleteTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, DeleteTaskSuccess: function DeleteTaskSuccess(t0) { this.tasks = t0; }, DeleteTaskFailure: function DeleteTaskFailure() { }, RestoreTaskRequest: function RestoreTaskRequest(t0, t1) { this.completer = t0; this.taskIds = t1; }, RestoreTaskSuccess: function RestoreTaskSuccess(t0) { this.tasks = t0; }, RestoreTaskFailure: function RestoreTaskFailure() { }, SortTasksRequest: function SortTasksRequest(t0, t1, t2) { this.completer = t0; this.statusIds = t1; this.taskIds = t2; }, SortTasksSuccess: function SortTasksSuccess(t0, t1) { this.statusIds = t0; this.taskIds = t1; }, SortTasksFailure: function SortTasksFailure() { }, FilterTasks: function FilterTasks(t0) { this.filter = t0; }, SortTasks: function SortTasks(t0) { this.field = t0; }, FilterTasksByState: function FilterTasksByState(t0) { this.state = t0; }, FilterTasksByStatus: function FilterTasksByStatus(t0) { this.status = t0; }, FilterTasksByCustom1: function FilterTasksByCustom1(t0) { this.value = t0; }, FilterTasksByCustom2: function FilterTasksByCustom2(t0) { this.value = t0; }, FilterTasksByCustom3: function FilterTasksByCustom3(t0) { this.value = t0; }, FilterTasksByCustom4: function FilterTasksByCustom4(t0) { this.value = t0; }, handleTaskAction_closure: function handleTaskAction_closure() { }, handleTaskAction_closure0: function handleTaskAction_closure0(t0) { this.localization = t0; }, handleTaskAction_closure1: function handleTaskAction_closure1(t0) { this.context = t0; }, handleTaskAction__closure: function handleTaskAction__closure(t0) { this.error = t0; }, handleTaskAction_closure2: function handleTaskAction_closure2() { }, handleTaskAction_closure3: function handleTaskAction_closure3() { }, handleTaskAction_closure4: function handleTaskAction_closure4(t0) { this.context = t0; }, handleTaskAction_closure5: function handleTaskAction_closure5(t0) { this.items = t0; }, StartTaskMultiselect: function StartTaskMultiselect() { }, AddToTaskMultiselect: function AddToTaskMultiselect(t0) { this.entity = t0; }, RemoveFromTaskMultiselect: function RemoveFromTaskMultiselect(t0) { this.entity = t0; }, ClearTaskMultiselect: function ClearTaskMultiselect() { }, SaveTaskDocumentRequest: function SaveTaskDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.task = t2; }, SaveTaskDocumentFailure: function SaveTaskDocumentFailure() { }, UpdateTaskTab: function UpdateTaskTab(t0) { this.tabIndex = t0; }, _editTask: function() { return new U._editTask_closure(); }, _viewTask: function() { return new U._viewTask_closure(); }, _viewTaskList: function() { return new U._viewTaskList_closure0(); }, _archiveTask: function(repository) { return new U._archiveTask_closure(repository); }, _deleteTask: function(repository) { return new U._deleteTask_closure(repository); }, _restoreTask: function(repository) { return new U._restoreTask_closure(repository); }, _saveTask: function(repository) { return new U._saveTask_closure(repository); }, _loadTask: function(repository) { return new U._loadTask_closure(repository); }, _loadTasks: function(repository) { return new U._loadTasks_closure(repository); }, _saveDocument4: function(repository) { return new U._saveDocument_closure6(repository); }, _sortTasks: function(repository) { return new U._sortTasks_closure0(repository); }, _editTask_closure: function _editTask_closure() { }, _viewTask_closure: function _viewTask_closure() { }, _viewTaskList_closure0: function _viewTaskList_closure0() { }, _viewTaskList__closure: function _viewTaskList__closure() { }, _archiveTask_closure: function _archiveTask_closure(t0) { this.repository = t0; }, _archiveTask__closure: function _archiveTask__closure(t0) { this.store = t0; }, _archiveTask__closure0: function _archiveTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTask__closure1: function _archiveTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _deleteTask_closure: function _deleteTask_closure(t0) { this.repository = t0; }, _deleteTask__closure: function _deleteTask__closure(t0) { this.store = t0; }, _deleteTask__closure0: function _deleteTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTask__closure1: function _deleteTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _restoreTask_closure: function _restoreTask_closure(t0) { this.repository = t0; }, _restoreTask__closure: function _restoreTask__closure(t0) { this.store = t0; }, _restoreTask__closure0: function _restoreTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTask__closure1: function _restoreTask__closure1(t0, t1, t2) { this.store = t0; this.prevTasks = t1; this.action = t2; }, _saveTask_closure: function _saveTask_closure(t0) { this.repository = t0; }, _saveTask__closure: function _saveTask__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTask__closure0: function _saveTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTask_closure: function _loadTask_closure(t0) { this.repository = t0; }, _loadTask__closure: function _loadTask__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTask__closure0: function _loadTask__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTasks_closure: function _loadTasks_closure(t0) { this.repository = t0; }, _loadTasks__closure: function _loadTasks__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTasks__closure0: function _loadTasks__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure6: function _saveDocument_closure6(t0) { this.repository = t0; }, _saveDocument__closure13: function _saveDocument__closure13(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure14: function _saveDocument__closure14(t0, t1) { this.store = t0; this.action = t1; }, _sortTasks_closure0: function _sortTasks_closure0(t0) { this.repository = t0; }, _sortTasks__closure: function _sortTasks__closure(t0, t1) { this.store = t0; this.action = t1; }, _sortTasks__closure0: function _sortTasks__closure0(t0, t1) { this.store = t0; this.action = t1; }, convertTaskToInvoiceItem: function(context, task) { var t4, t5, t6, project, client, group, notes, dates, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).projectState.map; t6 = task.projectId; project = J.$index$asx(t5._map$_map, t6); client = t4.$index(t2, t3).clientState.$get$1(0, task.clientId); group = t4.$index(t2, t3).groupState.$get$1(0, client.groupId); notes = t1.notes = task.description; dates = P.LinkedHashSet_LinkedHashSet$_empty(type$.legacy_String); if (t4.$index(t2, t3).userCompany.company.invoiceTaskDatelog || t4.$index(t2, t3).userCompany.company.invoiceTaskTimelog) { if (C.JSString_methods.trim$0(notes).length !== 0) t1.notes = notes + "\n\n"; t5 = task.getTaskTimes$0(); new H.WhereIterable(t5, new U.convertTaskToInvoiceItem_closure(), H._arrayInstanceType(t5)._eval$1("WhereIterable<1>")).forEach$1(0, new U.convertTaskToInvoiceItem_closure0(t1, state, context, dates)); if (t4.$index(t2, t3).userCompany.company.invoiceTaskDatelog && !t4.$index(t2, t3).userCompany.company.invoiceTaskTimelog) t1.notes = t1.notes + ("\n" + dates.join$1(0, "\n")); t1.notes = C.JSString_methods.trim$0(t1.notes); } return Q.InvoiceItemEntity_InvoiceItemEntity(null, null).rebuild$1(new U.convertTaskToInvoiceItem_closure1(t1, task, state, project, client, group)); }, taskList: function(taskMap, clientId, userMap, clientMap, projectMap) { var list = J.where$1$ax(taskMap.get$keys(taskMap), new U.taskList_closure(taskMap, clientId)).toList$0(0); C.JSArray_methods.sort$1(list, new U.taskList_closure0(taskMap)); return list; }, kanbanTasksSelector: function(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(taskList._list, new U.kanbanTasksSelector_closure(taskMap, clientMap, filterEntityType, filterEntityId)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new U.kanbanTasksSelector_closure0(taskMap, taskListState, userMap, clientMap, projectMap, invoiceMap, taskStatusMap)); return list; }, filteredTasksSelector: function(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(taskList._list, new U.filteredTasksSelector_closure(taskMap, clientMap, projectMap, selectionState, filterEntityType, filterEntityId, taskListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new U.filteredTasksSelector_closure0(taskMap, taskListState, userMap, clientMap, projectMap, invoiceMap, taskStatusMap)); return list; }, taskRateSelector: function(client, company, group, project, task) { var t1 = task.rate; if (t1 > 0) return t1; else if (project != null && project.taskRate > 0) return project.taskRate; else { if (client != null) { t1 = client.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return client.settings.defaultTaskRate; else { if (group != null) { t1 = group.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return group.settings.defaultTaskRate; else { if (company != null) { t1 = company.settings.defaultTaskRate; t1 = (t1 == null ? 0 : t1) > 0; } else t1 = false; if (t1) return company.settings.defaultTaskRate; } } } return 0; }, taskStatsForClient: function(clientId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(taskMap._map$_map, new U.taskStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, taskStatsForProject: function(projectId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(taskMap._map$_map, new U.taskStatsForProject_closure(t1, projectId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, convertTaskToInvoiceItem_closure: function convertTaskToInvoiceItem_closure() { }, convertTaskToInvoiceItem_closure0: function convertTaskToInvoiceItem_closure0(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.state = t1; _.context = t2; _.dates = t3; }, convertTaskToInvoiceItem_closure1: function convertTaskToInvoiceItem_closure1(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.task = t1; _.state = t2; _.project = t3; _.client = t4; _.group = t5; }, memoizedTaskList_closure: function memoizedTaskList_closure() { }, taskList_closure: function taskList_closure(t0, t1) { this.taskMap = t0; this.clientId = t1; }, taskList_closure0: function taskList_closure0(t0) { this.taskMap = t0; }, memoizedKanbanTaskList_closure: function memoizedKanbanTaskList_closure() { }, kanbanTasksSelector_closure: function kanbanTasksSelector_closure(t0, t1, t2, t3) { var _ = this; _.taskMap = t0; _.clientMap = t1; _.filterEntityType = t2; _.filterEntityId = t3; }, kanbanTasksSelector_closure0: function kanbanTasksSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.taskListState = t1; _.userMap = t2; _.clientMap = t3; _.projectMap = t4; _.invoiceMap = t5; _.taskStatusMap = t6; }, memoizedFilteredTaskList_closure: function memoizedFilteredTaskList_closure() { }, filteredTasksSelector_closure: function filteredTasksSelector_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.clientMap = t1; _.projectMap = t2; _.selectionState = t3; _.filterEntityType = t4; _.filterEntityId = t5; _.taskListState = t6; }, filteredTasksSelector_closure0: function filteredTasksSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.taskMap = t0; _.taskListState = t1; _.userMap = t2; _.clientMap = t3; _.projectMap = t4; _.invoiceMap = t5; _.taskStatusMap = t6; }, memoizedTaskStatsForClient_closure: function memoizedTaskStatsForClient_closure() { }, taskStatsForClient_closure: function taskStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedTaskStatsForProject_closure: function memoizedTaskStatsForProject_closure() { }, taskStatsForProject_closure: function taskStatsForProject_closure(t0, t1) { this._box_0 = t0; this.projectId = t1; }, memoizedTaskStatsForUser_closure: function memoizedTaskStatsForUser_closure() { }, dropdownTaskStatusesSelector: function(taskStatusMap, taskStatusList, staticState, userMap) { var t1 = J.where$1$ax(taskStatusList._list, new U.dropdownTaskStatusesSelector_closure(taskStatusMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new U.dropdownTaskStatusesSelector_closure0(taskStatusMap)); return list; }, filteredTaskStatusesSelector: function(selectionState, taskStatusMap, taskStatusList, taskStatusListState) { var t1 = J.where$1$ax(taskStatusList._list, new U.filteredTaskStatusesSelector_closure(taskStatusMap, selectionState, taskStatusListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new U.filteredTaskStatusesSelector_closure0(taskStatusMap, taskStatusListState)); return list; }, calculateTaskStatusAmount: function(taskMap, taskStatusId) { var t1 = {}; t1.total = 0; J.forEach$1$ax(taskMap._map$_map, new U.calculateTaskStatusAmount_closure(t1, taskStatusId)); return t1.total; }, taskStatsForTaskStatus: function(statusId, taskMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(taskMap._map$_map, new U.taskStatsForTaskStatus_closure(t1, statusId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, defaultTaskStatusId: function(taskStatusMap) { var statusIds = J.where$1$ax(taskStatusMap.get$keys(taskStatusMap), new U.defaultTaskStatusId_closure(taskStatusMap)).toList$0(0); C.JSArray_methods.sort$1(statusIds, new U.defaultTaskStatusId_closure0(taskStatusMap)); if (statusIds.length !== 0) return C.JSArray_methods.get$first(statusIds); else return ""; }, memoizedDropdownTaskStatusList_closure: function memoizedDropdownTaskStatusList_closure() { }, dropdownTaskStatusesSelector_closure: function dropdownTaskStatusesSelector_closure(t0) { this.taskStatusMap = t0; }, dropdownTaskStatusesSelector_closure0: function dropdownTaskStatusesSelector_closure0(t0) { this.taskStatusMap = t0; }, memoizedFilteredTaskStatusList_closure: function memoizedFilteredTaskStatusList_closure() { }, filteredTaskStatusesSelector_closure: function filteredTaskStatusesSelector_closure(t0, t1, t2) { this.taskStatusMap = t0; this.selectionState = t1; this.taskStatusListState = t2; }, filteredTaskStatusesSelector_closure0: function filteredTaskStatusesSelector_closure0(t0, t1) { this.taskStatusMap = t0; this.taskStatusListState = t1; }, memoizedCalculateTaskStatusAmount_closure: function memoizedCalculateTaskStatusAmount_closure() { }, calculateTaskStatusAmount_closure: function calculateTaskStatusAmount_closure(t0, t1) { this._box_0 = t0; this.taskStatusId = t1; }, memoizedTaskStatsForTaskStatus_closure: function memoizedTaskStatsForTaskStatus_closure() { }, taskStatsForTaskStatus_closure: function taskStatsForTaskStatus_closure(t0, t1) { this._box_0 = t0; this.statusId = t1; }, defaultTaskStatusId_closure: function defaultTaskStatusId_closure(t0) { this.taskStatusMap = t0; }, defaultTaskStatusId_closure0: function defaultTaskStatusId_closure0(t0) { this.taskStatusMap = t0; }, EntityUIState: function EntityUIState() { }, UIState__initializeBuilder: function(builder) { builder.get$_ui_state$_$this()._lastActivityAt = 0; builder.get$filterStack().replace$1(0, D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_BaseEntity)); return builder; }, _$UIState$_: function(clientUIState, companyGatewayUIState, creditUIState, currentRoute, dashboardUIState, designUIState, documentUIState, expenseCategoryUIState, expenseUIState, filter, filterClearedAt, filterStack, groupUIState, invoiceUIState, lastActivityAt, paymentTermUIState, paymentUIState, previewStack, previousRoute, productUIState, projectUIState, quoteUIState, recurringExpenseUIState, recurringInvoiceUIState, reportsUIState, selectedCompanyIndex, settingsUIState, subscriptionUIState, taskStatusUIState, taskUIState, taxRateUIState, tokenUIState, userUIState, vendorUIState, webhookUIState) { var _s7_ = "UIState"; if (previewStack == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "previewStack")); if (filterStack == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "filterStack")); if (dashboardUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "dashboardUIState")); if (productUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "productUIState")); if (clientUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "clientUIState")); if (invoiceUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "invoiceUIState")); if (recurringExpenseUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "recurringExpenseUIState")); if (subscriptionUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "subscriptionUIState")); if (taskStatusUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "taskStatusUIState")); if (expenseCategoryUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "expenseCategoryUIState")); if (recurringInvoiceUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "recurringInvoiceUIState")); if (webhookUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "webhookUIState")); if (tokenUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "tokenUIState")); if (paymentTermUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "paymentTermUIState")); if (designUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "designUIState")); if (creditUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "creditUIState")); if (userUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "userUIState")); if (taxRateUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "taxRateUIState")); if (companyGatewayUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "companyGatewayUIState")); if (groupUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "groupUIState")); if (documentUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "documentUIState")); if (expenseUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "expenseUIState")); if (vendorUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "vendorUIState")); if (taskUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "taskUIState")); if (projectUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "projectUIState")); if (paymentUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "paymentUIState")); if (quoteUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "quoteUIState")); if (settingsUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "settingsUIState")); if (reportsUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "reportsUIState")); return new U._$UIState(selectedCompanyIndex, currentRoute, previousRoute, previewStack, filterStack, filter, filterClearedAt, lastActivityAt, dashboardUIState, productUIState, clientUIState, invoiceUIState, recurringExpenseUIState, subscriptionUIState, taskStatusUIState, expenseCategoryUIState, recurringInvoiceUIState, webhookUIState, tokenUIState, paymentTermUIState, designUIState, creditUIState, userUIState, taxRateUIState, companyGatewayUIState, groupUIState, documentUIState, expenseUIState, vendorUIState, taskUIState, projectUIState, paymentUIState, quoteUIState, settingsUIState, reportsUIState); }, UIState: function UIState() { }, UIState_mainRoute_closure: function UIState_mainRoute_closure() { }, UIState_subRoute_closure: function UIState_subRoute_closure() { }, UIState_previousMainRoute_closure: function UIState_previousMainRoute_closure() { }, UIState_previousSubRoute_closure: function UIState_previousSubRoute_closure() { }, _$UIStateSerializer: function _$UIStateSerializer() { }, _$UIState: function _$UIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34) { var _ = this; _.selectedCompanyIndex = t0; _.currentRoute = t1; _.previousRoute = t2; _.previewStack = t3; _.filterStack = t4; _.filter = t5; _.filterClearedAt = t6; _.lastActivityAt = t7; _.dashboardUIState = t8; _.productUIState = t9; _.clientUIState = t10; _.invoiceUIState = t11; _.recurringExpenseUIState = t12; _.subscriptionUIState = t13; _.taskStatusUIState = t14; _.expenseCategoryUIState = t15; _.recurringInvoiceUIState = t16; _.webhookUIState = t17; _.tokenUIState = t18; _.paymentTermUIState = t19; _.designUIState = t20; _.creditUIState = t21; _.userUIState = t22; _.taxRateUIState = t23; _.companyGatewayUIState = t24; _.groupUIState = t25; _.documentUIState = t26; _.expenseUIState = t27; _.vendorUIState = t28; _.taskUIState = t29; _.projectUIState = t30; _.paymentUIState = t31; _.quoteUIState = t32; _.settingsUIState = t33; _.reportsUIState = t34; _._ui_state$__hashCode = null; }, UIStateBuilder: function UIStateBuilder() { var _ = this; _._vendorUIState = _._expenseUIState = _._documentUIState = _._groupUIState = _._companyGatewayUIState = _._taxRateUIState = _._userUIState = _._creditUIState = _._designUIState = _._paymentTermUIState = _._tokenUIState = _._webhookUIState = _._recurringInvoiceUIState = _._expenseCategoryUIState = _._taskStatusUIState = _._subscriptionUIState = _._recurringExpenseUIState = _._invoiceUIState = _._clientUIState = _._productUIState = _._dashboardUIState = _._lastActivityAt = _._filterClearedAt = _._filter = _._filterStack = _._previewStack = _._previousRoute = _._currentRoute = _._selectedCompanyIndex = _._ui_state$_$v = null; _._reportsUIState = _._settingsUIState = _._quoteUIState = _._paymentUIState = _._projectUIState = _._taskUIState = null; }, DurationPicker: function DurationPicker(t0, t1, t2, t3) { var _ = this; _.selectedDuration = t0; _.onSelected = t1; _.labelText = t2; _.key = t3; }, _DurationPickerState: function _DurationPickerState(t0, t1, t2) { var _ = this; _._duration_picker$_textController = t0; _._duration_picker$_focusNode = t1; _._widget = _._pendingDuration = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DurationPickerState__onFoucsChanged_closure: function _DurationPickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _DurationPickerState_build_closure1: function _DurationPickerState_build_closure1(t0) { this.$this = t0; }, _DurationPickerState_build__closure: function _DurationPickerState_build__closure(t0, t1) { this.$this = t0; this.duration = t1; }, _DurationPickerState_build_closure: function _DurationPickerState_build_closure() { }, _DurationPickerState_build__closure0: function _DurationPickerState_build__closure0() { }, _DurationPickerState_build_closure0: function _DurationPickerState_build_closure0(t0) { this.$this = t0; }, HelpText: function HelpText(t0, t1) { this.message = t0; this.key = t1; }, IconText: function IconText(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.icon = t1; _.style = t2; _.alignment = t3; _.key = t4; }, ClientEditFooter: function ClientEditFooter(t0, t1) { this.client = t0; this.key = t1; }, ClientEditFooter_build_closure: function ClientEditFooter_build_closure(t0) { this.store = t0; }, ClientViewLedger: function ClientViewLedger(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewLedgerState: function _ClientViewLedgerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ClientViewLedgerState_build_closure: function _ClientViewLedgerState_build_closure() { }, _ClientViewLedgerState_build_closure1: function _ClientViewLedgerState_build_closure1() { }, _ClientViewLedgerState_build_closure0: function _ClientViewLedgerState_build_closure0(t0, t1) { this.ledgers = t0; this.client = t1; }, _ClientViewLedgerState_build__closure0: function _ClientViewLedgerState_build__closure0(t0) { this.entity = t0; }, _ClientViewLedgerState_build__closure: function _ClientViewLedgerState_build__closure(t0) { this.entity = t0; }, CreditListVM_fromStore: function(store) { var t6, t7, t8, t9, state = store.get$_store$_state(), t1 = $.$get$memoizedFilteredCreditList(), t2 = state.getUISelection$1(C.EntityType_credit), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).creditState.map; t8 = t6.$index(t3, t5).creditState.list; t9 = t6.$index(t3, t5).clientState.map; t4 = t4.creditUIState.listUIState; t9 = t1.call$6(t2, t7, t8, t9, t4, t6.$index(t3, t5).userState.map); t8 = t6.$index(t3, t5).creditState.map; t7 = t6.$index(t3, t5).clientState.map; t4 = t4.filter; t2 = t6.$index(t3, t5).userCompany.settings.getTableColumns$1(C.EntityType_credit); if (t2 == null) { t6.$index(t3, t5).toString; t1 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "balance"], type$.JSArray_legacy_String); } else t1 = t2; return new U.CreditListVM(state, t9, t8, t7, t4, new U.CreditListVM_fromStore_closure(new U.CreditListVM_fromStore__handleRefresh(store)), t1, new U.CreditListVM_fromStore_closure0(store), new U.CreditListVM_fromStore_closure1(store)); }, CreditListBuilder: function CreditListBuilder(t0) { this.key = t0; }, CreditListBuilder_build_closure: function CreditListBuilder_build_closure() { }, CreditListBuilder_build__closure: function CreditListBuilder_build__closure(t0) { this.viewModel = t0; }, CreditListVM: function CreditListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, CreditListVM_fromStore__handleRefresh: function CreditListVM_fromStore__handleRefresh(t0) { this.store = t0; }, CreditListVM_fromStore_closure: function CreditListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, CreditListVM_fromStore_closure0: function CreditListVM_fromStore_closure0(t0) { this.store = t0; }, CreditListVM_fromStore_closure1: function CreditListVM_fromStore_closure1(t0) { this.store = t0; }, CreditPdfScreen: function CreditPdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, CreditPdfScreen_build_closure0: function CreditPdfScreen_build_closure0() { }, CreditPdfScreen_build_closure: function CreditPdfScreen_build_closure(t0) { this.$this = t0; }, CreditPdfVM: function CreditPdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, CreditEditPDFScreen: function CreditEditPDFScreen(t0) { this.key = t0; }, CreditEditPDFScreen_build_closure0: function CreditEditPDFScreen_build_closure0() { }, CreditEditPDFScreen_build_closure: function CreditEditPDFScreen_build_closure() { }, CreditEditPDFVM: function CreditEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, DashboardChart: function DashboardChart(t0, t1, t2, t3, t4) { var _ = this; _.data = t0; _.title = t1; _.currencyId = t2; _.onDateSelected = t3; _.key = t4; }, _DashboardChartState: function _DashboardChartState(t0) { var _ = this; _._dashboard_chart$_selected = null; _._dashboard_chart$_selectedIndex = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DashboardChartState__onSelectionChanged_closure: function _DashboardChartState__onSelectionChanged_closure() { }, _DashboardChartState__onSelectionChanged_closure0: function _DashboardChartState__onSelectionChanged_closure0(t0, t1) { this._box_0 = t0; this.measures = t1; }, _DashboardChartState__onSelectionChanged_closure1: function _DashboardChartState__onSelectionChanged_closure1(t0, t1) { this._box_0 = t0; this.$this = t1; }, _DashboardChartState_build_closure: function _DashboardChartState_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.context = t1; _.settings = t2; _.state = t3; _.theme = t4; _.localization = t5; }, _DashboardChartState_build__closure: function _DashboardChartState_build__closure(t0, t1) { this.$this = t0; this.index = t1; }, _DashboardChartState_build___closure: function _DashboardChartState_build___closure(t0, t1) { this.$this = t0; this.index = t1; }, DocumentScreenVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).documentState.toString; t5 = $.$get$memoizedFilteredDocumentList(); t6 = t4.$index(t1, t3).documentState.map; t7 = t4.$index(t1, t3).documentState.list; t2 = t2.documentUIState.listUIState; t7 = t5.call$3(t6, t7, t2); t4.$index(t1, t3).toString; t2.toString; return new U.DocumentScreenVM(t7); }, DocumentScreenBuilder: function DocumentScreenBuilder(t0) { this.key = t0; }, DocumentScreenBuilder_build_closure: function DocumentScreenBuilder_build_closure() { }, DocumentScreenVM: function DocumentScreenVM(t0) { this.documentList = t0; }, ExpenseScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).expenseState.toString; t5 = $.$get$memoizedFilteredExpenseList(); t6 = state.getUISelection$1(C.EntityType_expense); t7 = t4.$index(t1, t3).expenseState.map; t8 = t4.$index(t1, t3).clientState.map; t9 = t4.$index(t1, t3).vendorState.map; t10 = t4.$index(t1, t3).userState.map; t2 = t2.expenseUIState.listUIState; t10 = t5.call$9(t6, t7, t8, t9, t10, t2, t4.$index(t1, t3).invoiceState.map, t4.$index(t1, t3).expenseCategoryState.map, state.staticState); t4.$index(t1, t3).toString; t2.toString; return new U.ExpenseScreenVM(t10); }, ExpenseScreenBuilder: function ExpenseScreenBuilder(t0) { this.key = t0; }, ExpenseScreenBuilder_build_closure: function ExpenseScreenBuilder_build_closure() { }, ExpenseScreenVM: function ExpenseScreenVM(t0) { this.expenseList = t0; }, ExpenseView: function ExpenseView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ExpenseViewState: function _ExpenseViewState(t0, t1) { var _ = this; _._expense_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ExpenseViewState_build_closure: function _ExpenseViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.expense = t2; }, _ExpenseViewState_build__closure: function _ExpenseViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ExpenseViewState_build__closure0: function _ExpenseViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ExpenseViewState_build__closure1: function _ExpenseViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, __ExpenseViewState_State_SingleTickerProviderStateMixin: function __ExpenseViewState_State_SingleTickerProviderStateMixin() { }, ExpenseViewVM_ExpenseViewVM$fromStore: function(store) { var t4, t5, expense, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).expenseState.map; t2 = t2.expenseUIState.selectedId; expense = J.$index$asx(t5._map$_map, t2); if (expense == null) expense = M.ExpenseEntity_ExpenseEntity(_null, _null, t2, _null, _null, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; expense.get$isNew(); return new U.ExpenseViewVM(state, expense, t1, new U.ExpenseViewVM_ExpenseViewVM$fromStore_closure(new U.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh(store, expense)), new U.ExpenseViewVM_ExpenseViewVM$fromStore_closure0(store, expense), new U.ExpenseViewVM_ExpenseViewVM$fromStore_closure1(store, expense)); }, ExpenseViewScreen: function ExpenseViewScreen(t0) { this.key = t0; }, ExpenseViewScreen_build_closure0: function ExpenseViewScreen_build_closure0() { }, ExpenseViewScreen_build_closure: function ExpenseViewScreen_build_closure(t0) { this.$this = t0; }, AbstractExpenseViewVM: function AbstractExpenseViewVM() { }, ExpenseViewVM: function ExpenseViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.expense = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh: function ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure: function ExpenseViewVM_ExpenseViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure0: function ExpenseViewVM_ExpenseViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure0: function ExpenseViewVM_ExpenseViewVM$fromStore__closure0(t0) { this.context = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure1: function ExpenseViewVM_ExpenseViewVM$fromStore__closure1() { }, ExpenseViewVM_ExpenseViewVM$fromStore___closure: function ExpenseViewVM_ExpenseViewVM$fromStore___closure(t0) { this.error = t0; }, ExpenseViewVM_ExpenseViewVM$fromStore_closure1: function ExpenseViewVM_ExpenseViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.expense = t1; }, ExpenseViewVM_ExpenseViewVM$fromStore__closure: function ExpenseViewVM_ExpenseViewVM$fromStore__closure(t0, t1) { this.store = t0; this.expense = t1; }, PaymentTermEdit: function PaymentTermEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentTermEditState: function _PaymentTermEditState(t0, t1, t2, t3) { var _ = this; _._payment_term_edit$_debouncer = t0; _._payment_term_edit$_controllers = t1; _._numDaysController = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _PaymentTermEditState_didChangeDependencies_closure: function _PaymentTermEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _PaymentTermEditState_didChangeDependencies_closure0: function _PaymentTermEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _PaymentTermEditState_dispose_closure: function _PaymentTermEditState_dispose_closure(t0) { this.$this = t0; }, _PaymentTermEditState__onChanged_closure: function _PaymentTermEditState__onChanged_closure(t0) { this.$this = t0; }, _PaymentTermEditState__onChanged_closure0: function _PaymentTermEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.paymentTerm = t1; }, _PaymentTermEditState_build_closure0: function _PaymentTermEditState_build_closure0(t0) { this.viewModel = t0; }, _PaymentTermEditState_build_closure1: function _PaymentTermEditState_build_closure1(t0) { this.viewModel = t0; }, _PaymentTermEditState_build_closure: function _PaymentTermEditState_build_closure(t0, t1) { this.$this = t0; this.localization = t1; }, _PaymentTermEditState_build__closure: function _PaymentTermEditState_build__closure(t0) { this.localization = t0; }, PaymentTermListVM_fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.paymentTermUIState; t2.toString; t2 = t2.listUIState; return new U.PaymentTermListVM(state, $.$get$memoizedFilteredPaymentTermList().call$4(state.getUISelection$1(C.EntityType_paymentTerm), t4.$index(t1, t3).paymentTermState.map, t4.$index(t1, t3).paymentTermState.list, t2), t4.$index(t1, t3).paymentTermState.map, t2.filter, new U.PaymentTermListVM_fromStore_closure(new U.PaymentTermListVM_fromStore__handleRefresh(store)), new U.PaymentTermListVM_fromStore_closure0(store), new U.PaymentTermListVM_fromStore_closure1(store)); }, PaymentTermListBuilder: function PaymentTermListBuilder(t0) { this.key = t0; }, PaymentTermListBuilder_build_closure: function PaymentTermListBuilder_build_closure() { }, PaymentTermListBuilder_build__closure: function PaymentTermListBuilder_build__closure(t0) { this.viewModel = t0; }, PaymentTermListVM: function PaymentTermListVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.paymentTermList = t1; _.paymentTermMap = t2; _.filter = t3; _.onRefreshed = t4; _.onSortColumn = t5; _.onClearMultielsect = t6; }, PaymentTermListVM_fromStore__handleRefresh: function PaymentTermListVM_fromStore__handleRefresh(t0) { this.store = t0; }, PaymentTermListVM_fromStore_closure: function PaymentTermListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentTermListVM_fromStore_closure0: function PaymentTermListVM_fromStore_closure0(t0) { this.store = t0; }, PaymentTermListVM_fromStore_closure1: function PaymentTermListVM_fromStore_closure1(t0) { this.store = t0; }, PaymentTermViewVM_PaymentTermViewVM$fromStore: function(store) { var t4, t5, paymentTerm, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).paymentTermState.map; t2 = t2.paymentTermUIState.selectedId; paymentTerm = J.$index$asx(t5._map$_map, t2); if (paymentTerm == null) paymentTerm = X.PaymentTermEntity_PaymentTermEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; paymentTerm.get$isNew(); return new U.PaymentTermViewVM(state, paymentTerm, t1, new U.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure(store)); }, PaymentTermViewScreen: function PaymentTermViewScreen(t0) { this.key = t0; }, PaymentTermViewScreen_build_closure0: function PaymentTermViewScreen_build_closure0() { }, PaymentTermViewScreen_build_closure: function PaymentTermViewScreen_build_closure() { }, PaymentTermViewVM: function PaymentTermViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.paymentTerm = t1; _.company = t2; _.onBackPressed = t3; }, PaymentTermViewVM_PaymentTermViewVM$fromStore_closure: function PaymentTermViewVM_PaymentTermViewVM$fromStore_closure(t0) { this.store = t0; }, QuoteListVM_fromStore: function(store) { var t6, t7, t8, t9, state = store.get$_store$_state(), t1 = $.$get$memoizedFilteredQuoteList(), t2 = state.getUISelection$1(C.EntityType_quote), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); t7 = t6.$index(t3, t5).quoteState.map; t8 = t6.$index(t3, t5).quoteState.list; t9 = t6.$index(t3, t5).clientState.map; t4 = t4.quoteUIState.listUIState; t9 = t1.call$6(t2, t7, t8, t9, t4, t6.$index(t3, t5).userState.map); t8 = t6.$index(t3, t5).quoteState.map; t7 = t6.$index(t3, t5).clientState.map; t4 = t4.filter; t2 = t6.$index(t3, t5).userCompany.settings.getTableColumns$1(C.EntityType_quote); if (t2 == null) { t6.$index(t3, t5).toString; t1 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "valid_until"], type$.JSArray_legacy_String); } else t1 = t2; return new U.QuoteListVM(state, t9, t8, t7, t4, new U.QuoteListVM_fromStore_closure(new U.QuoteListVM_fromStore__handleRefresh(store)), t1, new U.QuoteListVM_fromStore_closure0(store), new U.QuoteListVM_fromStore_closure1(store)); }, QuoteListBuilder: function QuoteListBuilder(t0) { this.key = t0; }, QuoteListBuilder_build_closure: function QuoteListBuilder_build_closure() { }, QuoteListBuilder_build__closure: function QuoteListBuilder_build__closure(t0) { this.viewModel = t0; }, QuoteListVM: function QuoteListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.invoiceList = t1; _.invoiceMap = t2; _.clientMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultiselect = t8; }, QuoteListVM_fromStore__handleRefresh: function QuoteListVM_fromStore__handleRefresh(t0) { this.store = t0; }, QuoteListVM_fromStore_closure: function QuoteListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, QuoteListVM_fromStore_closure0: function QuoteListVM_fromStore_closure0(t0) { this.store = t0; }, QuoteListVM_fromStore_closure1: function QuoteListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringExpenseListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.recurringExpenseUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredRecurringExpenseList().call$9(state.getUISelection$1(C.EntityType_recurringExpense), t4.$index(t1, t3).recurringExpenseState.map, t4.$index(t1, t3).clientState.map, t4.$index(t1, t3).vendorState.map, t4.$index(t1, t3).userState.map, t2, t4.$index(t1, t3).invoiceState.map, t4.$index(t1, t3).expenseCategoryState.map, state.staticState); t6 = t4.$index(t1, t3).recurringExpenseState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_recurringExpense); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo(["status", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], type$.JSArray_legacy_String); } else t1 = t7; return new U.RecurringExpenseListVM(state, t5, t6, t2, new U.RecurringExpenseListVM_fromStore_closure(new U.RecurringExpenseListVM_fromStore__handleRefresh(store)), t1, new U.RecurringExpenseListVM_fromStore_closure0(store), new U.RecurringExpenseListVM_fromStore_closure1(store)); }, RecurringExpenseListBuilder: function RecurringExpenseListBuilder(t0) { this.key = t0; }, RecurringExpenseListBuilder_build_closure: function RecurringExpenseListBuilder_build_closure() { }, RecurringExpenseListBuilder_build__closure: function RecurringExpenseListBuilder_build__closure(t0) { this.viewModel = t0; }, RecurringExpenseListVM: function RecurringExpenseListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.recurringExpenseList = t1; _.recurringExpenseMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, RecurringExpenseListVM_fromStore__handleRefresh: function RecurringExpenseListVM_fromStore__handleRefresh(t0) { this.store = t0; }, RecurringExpenseListVM_fromStore_closure: function RecurringExpenseListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringExpenseListVM_fromStore_closure0: function RecurringExpenseListVM_fromStore_closure0(t0) { this.store = t0; }, RecurringExpenseListVM_fromStore_closure1: function RecurringExpenseListVM_fromStore_closure1(t0) { this.store = t0; }, RecurringInvoiceEditPDFScreen: function RecurringInvoiceEditPDFScreen(t0) { this.key = t0; }, RecurringInvoiceEditPDFScreen_build_closure0: function RecurringInvoiceEditPDFScreen_build_closure0() { }, RecurringInvoiceEditPDFScreen_build_closure: function RecurringInvoiceEditPDFScreen_build_closure() { }, RecurringInvoiceEditPDFVM: function RecurringInvoiceEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, RecurringInvoiceListItem: function RecurringInvoiceListItem(t0, t1, t2) { this.invoice = t0; this.filter = t1; this.key = t2; }, RecurringInvoiceListItem_build_closure: function RecurringInvoiceListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._box_0 = t0; _.$this = t1; _.isInMultiselect = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.client = t6; _.localization = t7; _.textStyle = t8; _.filterMatch = t9; _.textColor = t10; _.statusLabel = t11; _.statusColor = t12; }, RecurringInvoiceListItem_build__closure2: function RecurringInvoiceListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, RecurringInvoiceListItem_build__closure1: function RecurringInvoiceListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, RecurringInvoiceListItem_build__closure: function RecurringInvoiceListItem_build__closure() { }, RecurringInvoiceListItem_build__closure0: function RecurringInvoiceListItem_build__closure0(t0) { this.$this = t0; }, RecurringInvoiceListItem_build__closure5: function RecurringInvoiceListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, RecurringInvoiceListItem_build__closure4: function RecurringInvoiceListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, RecurringInvoiceListItem_build__closure3: function RecurringInvoiceListItem_build__closure3() { }, SettingsList: function SettingsList(t0, t1) { this.viewModel = t0; this.key = t1; }, _SettingsListState: function _SettingsListState(t0) { var _ = this; _._widget = _._settings_list$_scrollController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, SettingsListTile: function SettingsListTile(t0, t1, t2) { this.section = t0; this.viewModel = t1; this.key = t2; }, SettingsListTile_build_closure: function SettingsListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, SettingsSearch: function SettingsSearch(t0, t1, t2) { this.viewModel = t0; this.filter = t1; this.key = t2; }, SettingsSearch_build_closure: function SettingsSearch_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.section = t2; _.i = t3; }, TaskEditTimes: function TaskEditTimes(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditTimesState: function _TaskEditTimesState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaskEditTimesState__showTaskTimeEditor_closure: function _TaskEditTimesState__showTaskTimeEditor_closure(t0, t1) { this.$this = t0; this.taskTime = t1; }, _TaskEditTimesState__showTaskTimeEditor__closure: function _TaskEditTimesState__showTaskTimeEditor__closure(t0) { this.taskTime = t0; }, _TaskEditTimesState_build_closure: function _TaskEditTimesState_build_closure(t0, t1, t2) { this.$this = t0; this.taskTime = t1; this.context = t2; }, _TaskEditTimesState_build_closure0: function _TaskEditTimesState_build_closure0(t0, t1) { this.$this = t0; this.task = t1; }, _TaskEditTimesState_build__closure: function _TaskEditTimesState_build__closure(t0, t1) { this.$this = t0; this.taskTime = t1; }, TimeEditDetails: function TimeEditDetails(t0, t1, t2, t3) { var _ = this; _.index = t0; _.taskTime = t1; _.viewModel = t2; _.key = t3; }, TimeEditDetailsState: function TimeEditDetailsState(t0, t1) { var _ = this; _._taskTime = t0; _._durationUpdateAt = _._endTimeUpdatedAt = _._endDateUpdatedAt = _._startTimeUpdatedAt = _._startDateUpdatedAt = 0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, TimeEditDetailsState_build_closure: function TimeEditDetailsState_build_closure(t0, t1, t2) { this.$this = t0; this.showEndDate = t1; this.viewModel = t2; }, TimeEditDetailsState_build__closure3: function TimeEditDetailsState_build__closure3(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.date = t1; _.showEndDate = t2; _.viewModel = t3; }, TimeEditDetailsState_build_closure0: function TimeEditDetailsState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure2: function TimeEditDetailsState_build__closure2(t0, t1, t2) { this.$this = t0; this.timeOfDay = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure1: function TimeEditDetailsState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure1: function TimeEditDetailsState_build__closure1(t0, t1, t2) { this.$this = t0; this.timeOfDay = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure2: function TimeEditDetailsState_build_closure2(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure0: function TimeEditDetailsState_build__closure0(t0, t1, t2) { this.$this = t0; this.date = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure3: function TimeEditDetailsState_build_closure3(t0, t1) { this.$this = t0; this.viewModel = t1; }, TimeEditDetailsState_build__closure: function TimeEditDetailsState_build__closure(t0, t1, t2) { this.$this = t0; this.duration = t1; this.viewModel = t2; }, TimeEditDetailsState_build_closure4: function TimeEditDetailsState_build_closure4(t0, t1) { this.$this = t0; this.context = t1; }, TimeEditDetailsState_build_closure5: function TimeEditDetailsState_build_closure5(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem$: function(filter, isChecked, isDismissible, onCheckboxChanged, onTap, showCheckbox, task) { return new U.TaskListItem(onCheckboxChanged, onTap, task, filter, showCheckbox, isDismissible, isChecked, null); }, TaskListItem: function TaskListItem(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onCheckboxChanged = t0; _.onTap = t1; _.task = t2; _.filter = t3; _.showCheckbox = t4; _.isDismissible = t5; _.isChecked = t6; _.key = t7; }, TaskListItem_build_closure1: function TaskListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build_closure: function TaskListItem_build_closure(t0) { this.$this = t0; }, TaskListItem_build_closure0: function TaskListItem_build_closure0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; _.duration = t9; _.startStopButton = t10; _.localization = t11; }, TaskListItem_build__closure2: function TaskListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build__closure1: function TaskListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build__closure: function TaskListItem_build__closure(t0) { this.$this = t0; }, TaskListItem_build__closure0: function TaskListItem_build__closure0(t0) { this.$this = t0; }, TaskListItem_build__closure5: function TaskListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build__closure4: function TaskListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, TaskListItem_build__closure3: function TaskListItem_build__closure3(t0) { this.$this = t0; }, TaskStatusListVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.taskStatusUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredTaskStatusList().call$4(state.getUISelection$1(C.EntityType_taskStatus), t4.$index(t1, t3).taskStatusState.map, t4.$index(t1, t3).taskStatusState.list, t2); t6 = t4.$index(t1, t3).taskStatusState.map; t2 = t2.filter; t7 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_taskStatus); if (t7 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); } else t1 = t7; return new U.TaskStatusListVM(state, t5, t6, t2, new U.TaskStatusListVM_fromStore_closure(new U.TaskStatusListVM_fromStore__handleRefresh(store)), t1, new U.TaskStatusListVM_fromStore_closure0(store), new U.TaskStatusListVM_fromStore_closure1(store)); }, TaskStatusListBuilder: function TaskStatusListBuilder(t0) { this.key = t0; }, TaskStatusListBuilder_build_closure: function TaskStatusListBuilder_build_closure() { }, TaskStatusListBuilder_build__closure: function TaskStatusListBuilder_build__closure(t0) { this.viewModel = t0; }, TaskStatusListVM: function TaskStatusListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.taskStatusList = t1; _.taskStatusMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, TaskStatusListVM_fromStore__handleRefresh: function TaskStatusListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaskStatusListVM_fromStore_closure: function TaskStatusListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaskStatusListVM_fromStore_closure0: function TaskStatusListVM_fromStore_closure0(t0) { this.store = t0; }, TaskStatusListVM_fromStore_closure1: function TaskStatusListVM_fromStore_closure1(t0) { this.store = t0; }, TaskStatusScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).taskStatusState.toString; t5 = $.$get$memoizedFilteredTaskStatusList(); t6 = state.getUISelection$1(C.EntityType_taskStatus); t7 = t4.$index(t1, t3).taskStatusState.map; t8 = t4.$index(t1, t3).taskStatusState.list; t2 = t2.taskStatusUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new U.TaskStatusScreenVM(t8); }, TaskStatusScreenBuilder: function TaskStatusScreenBuilder(t0) { this.key = t0; }, TaskStatusScreenBuilder_build_closure: function TaskStatusScreenBuilder_build_closure() { }, TaskStatusScreenVM: function TaskStatusScreenVM(t0) { this.taskStatusList = t0; }, TokenViewVM_TokenViewVM$fromStore: function(store) { var t4, t5, token, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).tokenState.map; t2 = t2.tokenUIState.selectedId; token = J.$index$asx(t5._map$_map, t2); if (token == null) token = D.TokenEntity_TokenEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; token.get$isNew(); return new U.TokenViewVM(state, token, t1, new U.TokenViewVM_TokenViewVM$fromStore_closure(store)); }, TokenViewScreen: function TokenViewScreen(t0) { this.key = t0; }, TokenViewScreen_build_closure0: function TokenViewScreen_build_closure0() { }, TokenViewScreen_build_closure: function TokenViewScreen_build_closure(t0) { this.$this = t0; }, TokenViewVM: function TokenViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.token = t1; _.company = t2; _.onBackPressed = t3; }, TokenViewVM_TokenViewVM$fromStore_closure: function TokenViewVM_TokenViewVM$fromStore_closure(t0) { this.store = t0; }, UserEdit: function UserEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _UserEditState: function _UserEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._user_edit$_debouncer = t0; _._user_edit$_focusNode = t1; _._user_edit$_controller = null; _.autoValidate = false; _._firstNameController = t2; _._lastNameController = t3; _._phoneController = t4; _._emailController = t5; _._custom1Controller = t6; _._custom2Controller = t7; _._custom3Controller = t8; _._custom4Controller = t9; _._user_edit$_controllers = t10; _.SingleTickerProviderStateMixin__ticker = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, _UserEditState_didChangeDependencies_closure: function _UserEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _UserEditState_didChangeDependencies_closure0: function _UserEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _UserEditState_dispose_closure: function _UserEditState_dispose_closure(t0) { this.$this = t0; }, _UserEditState__onChanged_closure: function _UserEditState__onChanged_closure(t0) { this.$this = t0; }, _UserEditState__onChanged_closure0: function _UserEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.user = t1; }, _UserEditState__togglePermission_closure: function _UserEditState__togglePermission_closure() { }, _UserEditState__togglePermission_closure0: function _UserEditState__togglePermission_closure0(t0) { this.permissionsString = t0; }, _UserEditState_build_closure13: function _UserEditState_build_closure13(t0) { this.viewModel = t0; }, _UserEditState_build_closure14: function _UserEditState_build_closure14(t0, t1) { this.$this = t0; this.viewModel = t1; }, _UserEditState_build__closure: function _UserEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _UserEditState_build_closure: function _UserEditState_build_closure(t0) { this.localization = t0; }, _UserEditState_build_closure0: function _UserEditState_build_closure0(t0) { this.localization = t0; }, _UserEditState_build_closure1: function _UserEditState_build_closure1(t0) { this.localization = t0; }, _UserEditState_build_closure2: function _UserEditState_build_closure2(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserEditState_build__closure9: function _UserEditState_build__closure9(t0, t1) { this.channel = t0; this.options = t1; }, _UserEditState_build_closure3: function _UserEditState_build_closure3(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserEditState_build__closure8: function _UserEditState_build__closure8(t0) { this.value = t0; }, _UserEditState_build_closure4: function _UserEditState_build_closure4(t0) { this.$this = t0; }, _UserEditState_build__closure7: function _UserEditState_build__closure7(t0) { this.$this = t0; }, _UserEditState_build___closure0: function _UserEditState_build___closure0(t0) { this.$this = t0; }, _UserEditState_build_closure5: function _UserEditState_build_closure5(t0) { this.$this = t0; }, _UserEditState_build_closure6: function _UserEditState_build_closure6(t0) { this.$this = t0; }, _UserEditState_build_closure7: function _UserEditState_build_closure7(t0) { this.$this = t0; }, _UserEditState_build_closure8: function _UserEditState_build_closure8(t0) { this.$this = t0; }, _UserEditState_build_closure9: function _UserEditState_build_closure9(t0) { this.$this = t0; }, _UserEditState_build_closure10: function _UserEditState_build_closure10(t0) { this.$this = t0; }, _UserEditState_build_closure11: function _UserEditState_build_closure11(t0) { this.state = t0; }, _UserEditState_build_closure12: function _UserEditState_build_closure12(t0, t1, t2) { this.$this = t0; this.localization = t1; this.userCompany = t2; }, _UserEditState_build__closure0: function _UserEditState_build__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.createPermission = t1; _.viewPermission = t2; _.editPermission = t3; }, _UserEditState_build___closure: function _UserEditState_build___closure(t0, t1, t2) { this.$this = t0; this.viewPermission = t1; this.editPermission = t2; }, _UserEditState_build____closure: function _UserEditState_build____closure(t0, t1) { this.$this = t0; this.editPermission = t1; }, _UserEditState_build__closure2: function _UserEditState_build__closure2(t0, t1) { this.$this = t0; this.createPermission = t1; }, _UserEditState_build__closure1: function _UserEditState_build__closure1(t0, t1) { this.$this = t0; this.createPermission = t1; }, _UserEditState_build__closure4: function _UserEditState_build__closure4(t0, t1) { this.$this = t0; this.viewPermission = t1; }, _UserEditState_build__closure3: function _UserEditState_build__closure3(t0, t1) { this.$this = t0; this.viewPermission = t1; }, _UserEditState_build__closure6: function _UserEditState_build__closure6(t0, t1) { this.$this = t0; this.editPermission = t1; }, _UserEditState_build__closure5: function _UserEditState_build__closure5(t0, t1) { this.$this = t0; this.editPermission = t1; }, _PermissionCheckbox: function _PermissionCheckbox(t0, t1, t2, t3, t4) { var _ = this; _.userCompany = t0; _.permission = t1; _.onChanged = t2; _.checkAll = t3; _.key = t4; }, __UserEditState_State_SingleTickerProviderStateMixin: function __UserEditState_State_SingleTickerProviderStateMixin() { }, OctoImage: function OctoImage(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.image = t0; _.imageBuilder = t1; _.placeholderBuilder = t2; _.progressIndicatorBuilder = t3; _.errorBuilder = t4; _.placeholderFadeInDuration = t5; _.fadeOutDuration = t6; _.fadeOutCurve = t7; _.fadeInDuration = t8; _.fadeInCurve = t9; _.width = t10; _.height = t11; _.fit = t12; _.alignment = t13; _.repeat = t14; _.matchTextDirection = t15; _.color = t16; _.colorBlendMode = t17; _.filterQuality = t18; _.gaplessPlayback = t19; _.key = t20; }, _OctoImageState: function _OctoImageState(t0) { var _ = this; _._previousHandler = null; _.___OctoImageState__imageHandler = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, BehaviorSubject_BehaviorSubject: function(onCancel, onListen, sync, $T) { var controller = sync ? new P._SyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_SyncBroadcastStreamController<0>")) : new P._AsyncBroadcastStreamController(onListen, onCancel, $T._eval$1("_AsyncBroadcastStreamController<0>")), wrapper = new U._Wrapper(null, $T._eval$1("_Wrapper<0>")), t1 = D.DeferStream$(U.BehaviorSubject__deferStream(wrapper, controller, sync, $T), true, $T); return new U.BehaviorSubject(wrapper, t1, controller, t1, $T._eval$1("BehaviorSubject<0>")); }, BehaviorSubject__deferStream: function(wrapper, controller, sync, $T) { return new U.BehaviorSubject__deferStream_closure(wrapper, controller, $T); }, BehaviorSubject: function BehaviorSubject(t0, t1, t2, t3, t4) { var _ = this; _._wrapper = t0; _._behavior_subject$_stream = t1; _._subject$_controller = t2; _._isAddingStreamItems = false; _._stream = t3; _.$ti = t4; }, BehaviorSubject__deferStream_closure: function BehaviorSubject__deferStream_closure(t0, t1, t2) { this.wrapper = t0; this.controller = t1; this.T = t2; }, BehaviorSubject_map_closure: function BehaviorSubject_map_closure(t0, t1, t2) { this.$this = t0; this.convert = t1; this.S = t2; }, BehaviorSubject__forwardBehaviorSubject__subject_set: function BehaviorSubject__forwardBehaviorSubject__subject_set(t0, t1) { this._box_0 = t0; this.R = t1; }, BehaviorSubject__forwardBehaviorSubject__subscription_set: function BehaviorSubject__forwardBehaviorSubject__subscription_set(t0, t1) { this._box_0 = t0; this.R = t1; }, BehaviorSubject__forwardBehaviorSubject__subject_get: function BehaviorSubject__forwardBehaviorSubject__subject_get(t0, t1) { this._box_0 = t0; this.R = t1; }, BehaviorSubject__forwardBehaviorSubject__subscription_get: function BehaviorSubject__forwardBehaviorSubject__subscription_get(t0, t1) { this._box_0 = t0; this.R = t1; }, BehaviorSubject__forwardBehaviorSubject_closure0: function BehaviorSubject__forwardBehaviorSubject_closure0(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _._subscription_set = t1; _.transformerStream = t2; _._subject_get = t3; _.R = t4; }, BehaviorSubject__forwardBehaviorSubject_closure: function BehaviorSubject__forwardBehaviorSubject_closure(t0) { this._subscription_get = t0; }, _Wrapper: function _Wrapper(t0, t1) { this.latestValue = t0; this.latestErrorAndStackTrace = null; this.$ti = t1; }, NoOpHub_NoOpHub: function() { return $.$get$NoOpHub__instance(); }, NoOpHub: function NoOpHub() { }, Highlighter$: function(span, color) { var t1 = U.Highlighter__collateLines(H.setRuntimeTypeInfo([U._Highlight$(span, true)], type$.JSArray__Highlight)), t2 = new U.Highlighter_closure(color).call$0(), t3 = C.JSInt_methods.toString$0(C.JSArray_methods.get$last(t1).number + 1), t4 = U.Highlighter__contiguous(t1) ? 0 : 3, t5 = H._arrayInstanceType(t1); return new U.Highlighter(t1, t2, null, 1 + Math.max(t3.length, t4), new H.MappedListIterable(t1, new U.Highlighter$__closure(), t5._eval$1("MappedListIterable<1,int>")).reduce$1(0, C.CONSTANT), !B.isAllTheSame(new H.MappedListIterable(t1, new U.Highlighter$__closure0(), t5._eval$1("MappedListIterable<1,Object?>"))), new P.StringBuffer("")); }, Highlighter__contiguous: function(lines) { var i, thisLine, nextLine; for (i = 0; i < lines.length - 1;) { thisLine = lines[i]; ++i; nextLine = lines[i]; if (thisLine.number + 1 !== nextLine.number && J.$eq$(thisLine.url, nextLine.url)) return false; } return true; }, Highlighter__collateLines: function(highlights) { var t1, t2, highlightsByUrl = Y.groupBy(highlights, new U.Highlighter__collateLines_closure(), type$._Highlight, type$.nullable_Uri); for (t1 = highlightsByUrl.get$values(highlightsByUrl), t1 = t1.get$iterator(t1); t1.moveNext$0();) J.sort$1$ax(t1.get$current(t1), new U.Highlighter__collateLines_closure0()); t1 = highlightsByUrl.get$values(highlightsByUrl); t2 = H._instanceType(t1)._eval$1("ExpandIterable"); return P.List_List$of(new H.ExpandIterable(t1, new U.Highlighter__collateLines_closure1(), t2), true, t2._eval$1("Iterable.E")); }, _Highlight$: function(span, primary) { return new U._Highlight(new U._Highlight_closure(span).call$0(), true); }, _Highlight__normalizeNewlines: function(span) { var t1, endOffset, i, t2, t3, t4, text = span.get$text(span); if (!C.JSString_methods.contains$1(text, "\r\n")) return span; t1 = span.get$end(span); endOffset = t1.get$offset(t1); for (t1 = text.length - 1, i = 0; i < t1; ++i) if (C.JSString_methods._codeUnitAt$1(text, i) === 13 && C.JSString_methods._codeUnitAt$1(text, i + 1) === 10) --endOffset; t1 = span.get$start(span); t2 = span.get$sourceUrl(); t3 = span.get$end(span); t3 = t3.get$line(t3); t2 = V.SourceLocation$(endOffset, span.get$end(span).get$column(), t3, t2); t3 = H.stringReplaceAllUnchecked(text, "\r\n", "\n"); t4 = span.get$context(span); return X.SourceSpanWithContext$(t1, t2, t3, H.stringReplaceAllUnchecked(t4, "\r\n", "\n")); }, _Highlight__normalizeTrailingNewline: function(span) { var context, text, start, end, t1, t2, t3; if (!C.JSString_methods.endsWith$1(span.get$context(span), "\n")) return span; if (C.JSString_methods.endsWith$1(span.get$text(span), "\n\n")) return span; context = C.JSString_methods.substring$2(span.get$context(span), 0, span.get$context(span).length - 1); text = span.get$text(span); start = span.get$start(span); end = span.get$end(span); if (C.JSString_methods.endsWith$1(span.get$text(span), "\n")) { t1 = B.findLineStart(span.get$context(span), span.get$text(span), span.get$start(span).get$column()); t1.toString; t1 = t1 + span.get$start(span).get$column() + span.get$length(span) === span.get$context(span).length; } else t1 = false; if (t1) { text = C.JSString_methods.substring$2(span.get$text(span), 0, span.get$text(span).length - 1); if (text.length === 0) end = start; else { t1 = span.get$end(span); t1 = t1.get$offset(t1); t2 = span.get$sourceUrl(); t3 = span.get$end(span); t3 = t3.get$line(t3); end = V.SourceLocation$(t1 - 1, U._Highlight__lastLineLength(context), t3 - 1, t2); t1 = span.get$start(span); t1 = t1.get$offset(t1); t2 = span.get$end(span); start = t1 === t2.get$offset(t2) ? end : span.get$start(span); } } return X.SourceSpanWithContext$(start, end, text, context); }, _Highlight__normalizeEndOfLine: function(span) { var t1, t2, text, t3, t4; if (span.get$end(span).get$column() !== 0) return span; t1 = span.get$end(span); t1 = t1.get$line(t1); t2 = span.get$start(span); if (t1 == t2.get$line(t2)) return span; text = C.JSString_methods.substring$2(span.get$text(span), 0, span.get$text(span).length - 1); t1 = span.get$start(span); t2 = span.get$end(span); t2 = t2.get$offset(t2); t3 = span.get$sourceUrl(); t4 = span.get$end(span); t4 = t4.get$line(t4); t3 = V.SourceLocation$(t2 - 1, text.length - C.JSString_methods.lastIndexOf$1(text, "\n") - 1, t4 - 1, t3); return X.SourceSpanWithContext$(t1, t3, text, C.JSString_methods.endsWith$1(span.get$context(span), "\n") ? C.JSString_methods.substring$2(span.get$context(span), 0, span.get$context(span).length - 1) : span.get$context(span)); }, _Highlight__lastLineLength: function(text) { var t1 = text.length; if (t1 === 0) return 0; else if (C.JSString_methods.codeUnitAt$1(text, t1 - 1) === 10) return t1 === 1 ? 0 : t1 - C.JSString_methods.lastIndexOf$2(text, "\n", t1 - 2) - 1; else return t1 - C.JSString_methods.lastIndexOf$1(text, "\n") - 1; }, Highlighter: function Highlighter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._lines = t0; _._highlighter$_primaryColor = t1; _._highlighter$_secondaryColor = t2; _._paddingBeforeSidebar = t3; _._maxMultilineSpans = t4; _._multipleFiles = t5; _._highlighter$_buffer = t6; }, Highlighter_closure: function Highlighter_closure(t0) { this.color = t0; }, Highlighter$__closure: function Highlighter$__closure() { }, Highlighter$___closure: function Highlighter$___closure() { }, Highlighter$__closure0: function Highlighter$__closure0() { }, Highlighter__collateLines_closure: function Highlighter__collateLines_closure() { }, Highlighter__collateLines_closure0: function Highlighter__collateLines_closure0() { }, Highlighter__collateLines_closure1: function Highlighter__collateLines_closure1() { }, Highlighter__collateLines__closure: function Highlighter__collateLines__closure(t0) { this.line = t0; }, Highlighter_highlight_closure: function Highlighter_highlight_closure() { }, Highlighter__writeFileStart_closure: function Highlighter__writeFileStart_closure(t0) { this.$this = t0; }, Highlighter__writeMultilineHighlights_closure: function Highlighter__writeMultilineHighlights_closure(t0, t1, t2) { this.$this = t0; this.startLine = t1; this.line = t2; }, Highlighter__writeMultilineHighlights_closure0: function Highlighter__writeMultilineHighlights_closure0(t0, t1) { this.$this = t0; this.highlight = t1; }, Highlighter__writeMultilineHighlights_closure1: function Highlighter__writeMultilineHighlights_closure1(t0) { this.$this = t0; }, Highlighter__writeMultilineHighlights_closure2: function Highlighter__writeMultilineHighlights_closure2(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.current = t2; _.startLine = t3; _.line = t4; _.highlight = t5; _.endLine = t6; }, Highlighter__writeMultilineHighlights__closure: function Highlighter__writeMultilineHighlights__closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, Highlighter__writeMultilineHighlights__closure0: function Highlighter__writeMultilineHighlights__closure0(t0, t1) { this.$this = t0; this.vertical = t1; }, Highlighter__writeHighlightedText_closure: function Highlighter__writeHighlightedText_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.text = t1; _.startColumn = t2; _.endColumn = t3; }, Highlighter__writeIndicator_closure: function Highlighter__writeIndicator_closure(t0, t1, t2) { this.$this = t0; this.line = t1; this.highlight = t2; }, Highlighter__writeIndicator_closure0: function Highlighter__writeIndicator_closure0(t0, t1, t2) { this.$this = t0; this.line = t1; this.highlight = t2; }, Highlighter__writeIndicator_closure1: function Highlighter__writeIndicator_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.coversWholeLine = t1; _.line = t2; _.highlight = t3; }, Highlighter__writeSidebar_closure: function Highlighter__writeSidebar_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.end = t2; }, _Highlight: function _Highlight(t0, t1) { this.span = t0; this.isPrimary = t1; }, _Highlight_closure: function _Highlight_closure(t0) { this.span = t0; }, _Line: function _Line(t0, t1, t2, t3) { var _ = this; _.text = t0; _.number = t1; _.url = t2; _.highlights = t3; }, compute: function(callback, message, debugLabel, $Q, $R) { return U.compute$body(callback, message, debugLabel, $Q, $R, $R); }, compute$body: function(callback, message, debugLabel, $Q, $R, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue; var $async$compute = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(null, $async$compute); case 3: // returning from await. $async$returnValue = callback.call$1(message); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$compute, $async$completer); } }, K = {BuiltListSerializer: function BuiltListSerializer(t0) { this.types = t0; }, BuiltListSerializer_serialize_closure: function BuiltListSerializer_serialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltListSerializer_deserialize_closure: function BuiltListSerializer_deserialize_closure(t0, t1) { this.serializers = t0; this.elementType = t1; }, BuiltMapSerializer: function BuiltMapSerializer(t0) { this.types = t0; }, DurationSerializer: function DurationSerializer(t0) { this.types = t0; }, NumSerializer: function NumSerializer(t0) { this.types = t0; }, RegExpSerializer: function RegExpSerializer(t0) { this.types = t0; }, LinearScale$: function() { return new K.LinearScale(new U.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0), new O.LinearScaleViewportSettings(), new A.LinearScaleFunction(), C.RangeBandConfig_RangeBandType_0_0, C.C_StepSizeConfig); }, LinearScale$_copy: function(other) { var t3, t1 = other._domainInfo, t2 = new U.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0); t2._dataDomainStart = t1._dataDomainStart; t2._dataDomainEnd = t1._dataDomainEnd; t2._previouslyAddedDomain = t1._previouslyAddedDomain; t2._minimumDetectedDomainStep = t1._minimumDetectedDomainStep; t1 = other._viewportSettings; t3 = new O.LinearScaleViewportSettings(); t3.range = t1.range; t3.scalingFactor = t1.scalingFactor; t3.translatePx = t1.translatePx; t3._manualDomainExtent = t1._manualDomainExtent; t3._domainExtent = t1._domainExtent; return new K.LinearScale(t2, t3, new A.LinearScaleFunction(), other.rangeBandConfig, other.stepSizeConfig); }, LinearScale: function LinearScale(t0, t1, t2, t3, t4) { var _ = this; _._domainInfo = t0; _._viewportSettings = t1; _._scaleFunction = t2; _.rangeBandConfig = t3; _.stepSizeConfig = t4; _._scaleReady = false; }, BaseTickProvider: function BaseTickProvider() { }, LegendEntryBase: function LegendEntryBase() { }, LegendEntry: function LegendEntry(t0, t1, t2, t3, t4) { var _ = this; _.series = t0; _.color = t1; _.formattedValue = _.value = null; _.isSelected = false; _.label = t2; _.textStyle = t3; _.$ti = t4; }, RendererAttributes: function RendererAttributes(t0) { this._registry = t0; }, Color$fromOther: function(color, lighter) { var t1 = color.r, t2 = color.g, t3 = color.b, t4 = color.a, t5 = color._darker; return new K.Color0(t1, t2, t3, t4, t5, lighter == null ? color._lighter : lighter); }, Color0: function Color0(t0, t1, t2, t3, t4, t5) { var _ = this; _.r = t0; _.g = t1; _.b = t2; _.a = t3; _._darker = t4; _._lighter = t5; }, withinBounds: function(value, lowerBound, upperBound) { return value + 2e-10 >= lowerBound && value - 2e-10 <= upperBound; }, NullablePointsToPoints_toPoints: function(_this) { var t2, t3, _i, nullablePoint, t4, t5, t1 = H.setRuntimeTypeInfo([], type$.JSArray_Point_double); for (t2 = _this.length, t3 = type$.Point_double, _i = 0; _i < _this.length; _this.length === t2 || (0, H.throwConcurrentModificationError)(_this), ++_i) { nullablePoint = _this[_i]; t4 = nullablePoint.x; if (t4 != null && nullablePoint.y != null) { t4.toString; t5 = nullablePoint.y; t5.toString; t1.push(new P.Point(t4, t5, t3)); } } return t1; }, NullablePoint: function NullablePoint(t0, t1) { this.x = t0; this.y = t1; }, ChartGestureDetector: function ChartGestureDetector() { var _ = this; _._isDragging = _._listeningForLongPress = false; _._lastScale = _._lastTapPoint = _._longPressTimer = null; _.__ChartGestureDetector__containerResolver = $; }, ChartGestureDetector_makeWidget_closure: function ChartGestureDetector_makeWidget_closure(t0) { this.context = t0; }, ChartGestureDetector_onTapDown_closure: function ChartGestureDetector_onTapDown_closure(t0) { this.$this = t0; }, FilePickerResult: function FilePickerResult(t0) { this.files = t0; }, CupertinoUserInterfaceLevel_maybeOf: function(context) { context.dependOnInheritedWidgetOfExactType$1$0(type$.CupertinoUserInterfaceLevel); return null; }, CupertinoUserInterfaceLevelData: function CupertinoUserInterfaceLevelData(t0) { this._interface_level$_name = t0; }, CupertinoTheme_of: function(context) { var inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedCupertinoTheme), t1 = inheritedTheme == null ? null : inheritedTheme.theme.data; return (t1 == null ? C.CupertinoThemeData_KQb : t1).resolveFrom$1(context); }, CupertinoThemeData$_rawWithDefaults: function(brightness, primaryColor, primaryContrastingColor, textTheme, barBackgroundColor, scaffoldBackgroundColor, _defaults) { return new K.CupertinoThemeData(_defaults, brightness, primaryColor, primaryContrastingColor, textTheme, barBackgroundColor, scaffoldBackgroundColor); }, CupertinoTheme: function CupertinoTheme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, _InheritedCupertinoTheme: function _InheritedCupertinoTheme(t0, t1, t2) { this.theme = t0; this.child = t1; this.key = t2; }, CupertinoThemeData: function CupertinoThemeData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._defaults = t0; _.brightness = t1; _.primaryColor = t2; _.primaryContrastingColor = t3; _.textTheme = t4; _.barBackgroundColor = t5; _.scaffoldBackgroundColor = t6; }, CupertinoThemeData_resolveFrom_convertColor: function CupertinoThemeData_resolveFrom_convertColor(t0) { this.context = t0; }, NoDefaultCupertinoThemeData: function NoDefaultCupertinoThemeData(t0, t1, t2, t3, t4, t5) { var _ = this; _.brightness = t0; _.primaryColor = t1; _.primaryContrastingColor = t2; _.textTheme = t3; _.barBackgroundColor = t4; _.scaffoldBackgroundColor = t5; }, NoDefaultCupertinoThemeData_resolveFrom_convertColor: function NoDefaultCupertinoThemeData_resolveFrom_convertColor(t0) { this.context = t0; }, _CupertinoThemeDefaults: function _CupertinoThemeDefaults(t0, t1, t2, t3, t4, t5) { var _ = this; _.brightness = t0; _.primaryColor = t1; _.primaryContrastingColor = t2; _.barBackgroundColor = t3; _.scaffoldBackgroundColor = t4; _.textThemeDefaults = t5; }, _CupertinoThemeDefaults_resolveFrom_convertColor: function _CupertinoThemeDefaults_resolveFrom_convertColor(t0) { this.context = t0; }, _CupertinoTextThemeDefaults: function _CupertinoTextThemeDefaults(t0, t1) { this.labelColor = t0; this.inactiveGray = t1; }, _DefaultCupertinoTextThemeData: function _DefaultCupertinoTextThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.labelColor = t0; _.inactiveGray = t1; _._text_theme$_defaults = t2; _._text_theme$_primaryColor = t3; _._textStyle = t4; _._actionTextStyle = t5; _._tabLabelTextStyle = t6; _._navTitleTextStyle = t7; _._navLargeTitleTextStyle = t8; _._navActionTextStyle = t9; _._pickerTextStyle = t10; _._dateTimePickerTextStyle = t11; }, _CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable: function _CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable() { }, ForcePressGestureRecognizer$: function(debugOwner) { var t1 = type$.int; return new K.ForcePressGestureRecognizer(C._ForceState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), debugOwner, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, ForcePressGestureRecognizer__inverseLerp: function(min, max, t) { var value = (t - min) / (max - min); return !isNaN(value) ? C.JSNumber_methods.clamp$2(value, 0, 1) : value; }, _ForceState: function _ForceState(t0) { this._force_press$_name = t0; }, ForcePressDetails: function ForcePressDetails(t0) { this.globalPosition = t0; }, ForcePressGestureRecognizer: function ForcePressGestureRecognizer(t0, t1, t2, t3, t4, t5) { var _ = this; _.onEnd = _.onPeak = _.onUpdate = _.onStart = null; _.__ForcePressGestureRecognizer__lastPressure = _.__ForcePressGestureRecognizer__lastPosition = $; _._force_press$_state = t0; _._recognizer$_entries = t1; _._trackedPointers = t2; _._team = null; _.debugOwner = t3; _._kindFilter = t4; _._pointerToKind = t5; }, ForcePressGestureRecognizer_handleEvent_closure: function ForcePressGestureRecognizer_handleEvent_closure(t0, t1) { this.$this = t0; this.pressure = t1; }, ForcePressGestureRecognizer_acceptGesture_closure: function ForcePressGestureRecognizer_acceptGesture_closure(t0) { this.$this = t0; }, ForcePressGestureRecognizer_didStopTrackingLastPointer_closure: function ForcePressGestureRecognizer_didStopTrackingLastPointer_closure(t0) { this.$this = t0; }, ButtonStyleButton_scaledPadding: function(geometry1x, geometry2x, geometry3x, textScaleFactor) { var t1; if (textScaleFactor <= 1) return geometry1x; else if (textScaleFactor >= 3) return geometry3x; else if (textScaleFactor <= 2) { t1 = V.EdgeInsetsGeometry_lerp(geometry1x, geometry2x, textScaleFactor - 1); t1.toString; return t1; } t1 = V.EdgeInsetsGeometry_lerp(geometry2x, geometry3x, textScaleFactor - 2); t1.toString; return t1; }, ButtonStyleButton: function ButtonStyleButton() { }, _ButtonStyleState: function _ButtonStyleState(t0, t1, t2) { var _ = this; _._backgroundColor = _._button_style_button$_elevation = _._button_style_button$_controller = null; _._button_style_button$_states = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ButtonStyleState__handleHighlightChanged_closure: function _ButtonStyleState__handleHighlightChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _ButtonStyleState__handleHoveredChanged_closure: function _ButtonStyleState__handleHoveredChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _ButtonStyleState__handleFocusedChanged_closure: function _ButtonStyleState__handleFocusedChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _ButtonStyleState_build_effectiveValue: function _ButtonStyleState_build_effectiveValue(t0, t1, t2) { this.widgetStyle = t0; this.themeStyle = t1; this.defaultStyle = t2; }, _ButtonStyleState_build_resolve: function _ButtonStyleState_build_resolve(t0, t1) { this.$this = t0; this.effectiveValue = t1; }, _ButtonStyleState_build_resolve_closure: function _ButtonStyleState_build_resolve_closure(t0, t1, t2) { this.$this = t0; this.getProperty = t1; this.T = t2; }, _ButtonStyleState_build_closure: function _ButtonStyleState_build_closure() { }, _ButtonStyleState_build_closure0: function _ButtonStyleState_build_closure0() { }, _ButtonStyleState_build_closure1: function _ButtonStyleState_build_closure1() { }, _ButtonStyleState_build_closure2: function _ButtonStyleState_build_closure2() { }, _ButtonStyleState_build_closure3: function _ButtonStyleState_build_closure3() { }, _ButtonStyleState_build_closure4: function _ButtonStyleState_build_closure4() { }, _ButtonStyleState_build_closure5: function _ButtonStyleState_build_closure5() { }, _ButtonStyleState_build_closure6: function _ButtonStyleState_build_closure6() { }, _ButtonStyleState_build_closure7: function _ButtonStyleState_build_closure7() { }, _ButtonStyleState_build_closure8: function _ButtonStyleState_build_closure8() { }, _ButtonStyleState_build_closure16: function _ButtonStyleState_build_closure16(t0) { this.effectiveValue = t0; }, _ButtonStyleState_build__closure0: function _ButtonStyleState_build__closure0(t0) { this.states = t0; }, _ButtonStyleState_build_closure17: function _ButtonStyleState_build_closure17(t0) { this.effectiveValue = t0; }, _ButtonStyleState_build__closure: function _ButtonStyleState_build__closure(t0) { this.states = t0; }, _ButtonStyleState_build_closure9: function _ButtonStyleState_build_closure9() { }, _ButtonStyleState_build_closure10: function _ButtonStyleState_build_closure10() { }, _ButtonStyleState_build_closure11: function _ButtonStyleState_build_closure11() { }, _ButtonStyleState_build_closure12: function _ButtonStyleState_build_closure12() { }, _ButtonStyleState_build_closure13: function _ButtonStyleState_build_closure13() { }, _ButtonStyleState_build_closure14: function _ButtonStyleState_build_closure14() { }, _ButtonStyleState_build_closure15: function _ButtonStyleState_build_closure15(t0) { this.$this = t0; }, _ButtonStyleState_build__closure1: function _ButtonStyleState_build__closure1() { }, _MouseCursor: function _MouseCursor(t0) { this.resolveCallback = t0; }, _InputPadding0: function _InputPadding0(t0, t1, t2) { this.minSize = t0; this.child = t1; this.key = t2; }, _RenderInputPadding0: function _RenderInputPadding0(t0, t1) { var _ = this; _._button_style_button$_minSize = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure0: function _RenderInputPadding_hitTest_closure0(t0, t1) { this.$this = t0; this.center = t1; }, __ButtonStyleState_State_TickerProviderStateMixin: function __ButtonStyleState_State_TickerProviderStateMixin() { }, Checkbox$: function(activeColor, autofocus, checkColor, materialTapTargetSize, onChanged, tristate, value) { return new K.Checkbox(value, onChanged, activeColor, checkColor, tristate, materialTapTargetSize, false, null); }, Checkbox: function Checkbox(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.value = t0; _.onChanged = t1; _.activeColor = t2; _.checkColor = t3; _.tristate = t4; _.materialTapTargetSize = t5; _.autofocus = t6; _.key = t7; }, _CheckboxState: function _CheckboxState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _._checkbox$_painter = t0; _._previousValue = null; _.ToggleableStateMixin___ToggleableStateMixin__positionController = t1; _.ToggleableStateMixin___ToggleableStateMixin__position = t2; _.ToggleableStateMixin___ToggleableStateMixin__reactionController = t3; _.ToggleableStateMixin___ToggleableStateMixin__reaction = t4; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = t5; _.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = t6; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = t7; _.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = t8; _.ToggleableStateMixin___ToggleableStateMixin__actionMap = t9; _.ToggleableStateMixin__downPosition = t10; _.ToggleableStateMixin__focused = t11; _.ToggleableStateMixin__hovering = t12; _.TickerProviderStateMixin__tickers = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, _CheckboxState__widgetFillColor_closure: function _CheckboxState__widgetFillColor_closure(t0) { this.$this = t0; }, _CheckboxState__defaultFillColor_closure: function _CheckboxState__defaultFillColor_closure(t0) { this.themeData = t0; }, _CheckboxState_build_closure: function _CheckboxState_build_closure(t0, t1) { this.$this = t0; this.themeData = t1; }, _CheckboxPainter: function _CheckboxPainter(t0) { var _ = this; _._isHovered = _._isFocused = _._downPosition = _._splashRadius = _._toggleable$_focusColor = _._toggleable$_hoverColor = _._reactionColor = _._inactiveReactionColor = _._inactiveColor = _._activeColor = _._reactionHoverFade = _._reactionFocusFade = _._toggleable$_reaction = _._toggleable$_position = _._side = _._checkbox$_shape = _._previousValue = _._checkbox$_value = _._checkColor = null; _.ChangeNotifier__listeners = t0; }, __CheckboxState_State_TickerProviderStateMixin: function __CheckboxState_State_TickerProviderStateMixin() { }, __CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin: function __CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin() { }, ChipThemeData$: function(backgroundColor, brightness, checkmarkColor, deleteIconColor, disabledColor, elevation, labelPadding, labelStyle, padding, pressElevation, secondaryLabelStyle, secondarySelectedColor, selectedColor, selectedShadowColor, shadowColor, shape, side) { return new K.ChipThemeData(backgroundColor, deleteIconColor, disabledColor, selectedColor, secondarySelectedColor, shadowColor, selectedShadowColor, checkmarkColor, labelPadding, padding, side, shape, labelStyle, secondaryLabelStyle, brightness, elevation, pressElevation); }, ChipThemeData_ChipThemeData$fromDefaults: function(brightness, labelStyle, secondaryColor) { var backgroundColor, deleteIconColor, disabledColor, selectedColor, secondarySelectedColor, secondaryLabelStyle, _null = null, primaryColor = brightness === C.Brightness_1 ? C.Color_4278190080 : C.Color_4294967295, t1 = primaryColor.value, t2 = t1 >>> 16 & 255, t3 = t1 >>> 8 & 255; t1 &= 255; backgroundColor = P.Color$fromARGB(31, t2, t3, t1); deleteIconColor = P.Color$fromARGB(222, t2, t3, t1); disabledColor = P.Color$fromARGB(12, t2, t3, t1); selectedColor = P.Color$fromARGB(61, t2, t3, t1); secondarySelectedColor = P.Color$fromARGB(61, secondaryColor.get$value(secondaryColor) >>> 16 & 255, secondaryColor.get$value(secondaryColor) >>> 8 & 255, secondaryColor.get$value(secondaryColor) & 255); secondaryLabelStyle = labelStyle.copyWith$1$color(P.Color$fromARGB(222, secondaryColor.get$value(secondaryColor) >>> 16 & 255, secondaryColor.get$value(secondaryColor) >>> 8 & 255, secondaryColor.get$value(secondaryColor) & 255)); return K.ChipThemeData$(backgroundColor, brightness, _null, deleteIconColor, disabledColor, _null, _null, labelStyle.copyWith$1$color(P.Color$fromARGB(222, t2, t3, t1)), C.EdgeInsets_4_4_4_4, _null, secondaryLabelStyle, secondarySelectedColor, selectedColor, _null, _null, _null, _null); }, ChipThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t2.toString; t4 = t1 ? _null : a.deleteIconColor; t4 = P.Color_lerp(t4, t3 ? _null : b.deleteIconColor, t); t5 = t1 ? _null : a.disabledColor; t5 = P.Color_lerp(t5, t3 ? _null : b.disabledColor, t); t5.toString; t6 = t1 ? _null : a.selectedColor; t6 = P.Color_lerp(t6, t3 ? _null : b.selectedColor, t); t6.toString; t7 = t1 ? _null : a.secondarySelectedColor; t7 = P.Color_lerp(t7, t3 ? _null : b.secondarySelectedColor, t); t7.toString; t8 = t1 ? _null : a.shadowColor; t8 = P.Color_lerp(t8, t3 ? _null : b.shadowColor, t); t9 = t1 ? _null : a.selectedShadowColor; t9 = P.Color_lerp(t9, t3 ? _null : b.selectedShadowColor, t); t10 = t1 ? _null : a.checkmarkColor; t10 = P.Color_lerp(t10, t3 ? _null : b.checkmarkColor, t); t11 = t1 ? _null : a.labelPadding; t11 = V.EdgeInsetsGeometry_lerp(t11, t3 ? _null : b.labelPadding, t); t12 = t1 ? _null : a.padding; t12 = V.EdgeInsetsGeometry_lerp(t12, t3 ? _null : b.padding, t); t12.toString; t13 = t1 ? _null : a.side; t13 = K.ChipThemeData__lerpSides(t13, t3 ? _null : b.side, t); t14 = t1 ? _null : a.shape; t14 = K.ChipThemeData__lerpShapes(t14, t3 ? _null : b.shape, t); t15 = t1 ? _null : a.labelStyle; t15 = A.TextStyle_lerp(t15, t3 ? _null : b.labelStyle, t); t15.toString; t16 = t1 ? _null : a.secondaryLabelStyle; t16 = A.TextStyle_lerp(t16, t3 ? _null : b.secondaryLabelStyle, t); t16.toString; if (t < 0.5) { t17 = t1 ? _null : a.brightness; if (t17 == null) t17 = C.Brightness_1; } else { t17 = t3 ? _null : b.brightness; if (t17 == null) t17 = C.Brightness_1; } t18 = t1 ? _null : a.elevation; t18 = P.lerpDouble(t18, t3 ? _null : b.elevation, t); t1 = t1 ? _null : a.pressElevation; return K.ChipThemeData$(t2, t17, t10, t4, t5, t18, t11, t15, t12, P.lerpDouble(t1, t3 ? _null : b.pressElevation, t), t16, t7, t6, t9, t8, t14, t13); }, ChipThemeData__lerpSides: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) { t1 = b.color; return Y.BorderSide_lerp(new Y.BorderSide(P.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, C.BorderStyle_1), b, t); } if (b == null) { t1 = a.color; return Y.BorderSide_lerp(new Y.BorderSide(P.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, C.BorderStyle_1), a, t); } return Y.BorderSide_lerp(a, b, t); }, ChipThemeData__lerpShapes: function(a, b, t) { if (a == null && b == null) return null; return type$.nullable_OutlinedBorder._as(Y.ShapeBorder_lerp(a, b, t)); }, ChipThemeData: function ChipThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.backgroundColor = t0; _.deleteIconColor = t1; _.disabledColor = t2; _.selectedColor = t3; _.secondarySelectedColor = t4; _.shadowColor = t5; _.selectedShadowColor = t6; _.checkmarkColor = t7; _.labelPadding = t8; _.padding = t9; _.side = t10; _.shape = t11; _.labelStyle = t12; _.secondaryLabelStyle = t13; _.brightness = t14; _.elevation = t15; _.pressElevation = t16; }, _ChipThemeData_Object_Diagnosticable: function _ChipThemeData_Object_Diagnosticable() { }, showDatePicker: function(context, firstDate, initialDate, lastDate) { return K.showDatePicker$body(context, firstDate, initialDate, lastDate); }, showDatePicker$body: function(context, firstDate, initialDate, lastDate) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_DateTime), $async$returnValue, t2, t3, t4, t5, t1; var $async$showDatePicker = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; initialDate.toString; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(initialDate), H.Primitives_getMonth(initialDate), H.Primitives_getDay(initialDate), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); initialDate = new P.DateTime(t2, false); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDate), H.Primitives_getMonth(firstDate), H.Primitives_getDay(firstDate), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); firstDate = new P.DateTime(t2, false); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(lastDate), H.Primitives_getMonth(lastDate), H.Primitives_getDay(lastDate), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); lastDate = new P.DateTime(t2, false); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(initialDate), H.Primitives_getMonth(initialDate), H.Primitives_getDay(initialDate), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t3 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDate), H.Primitives_getMonth(firstDate), H.Primitives_getDay(firstDate), 0, 0, 0, 0, false); if (!H._isInt(t3)) H.throwExpression(H.argumentErrorValue(t3)); t4 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(lastDate), H.Primitives_getMonth(lastDate), H.Primitives_getDay(lastDate), 0, 0, 0, 0, false); if (!H._isInt(t4)) H.throwExpression(H.argumentErrorValue(t4)); t5 = new P.DateTime(Date.now(), false); t5 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t5), H.Primitives_getMonth(t5), H.Primitives_getDay(t5), 0, 0, 0, 0, false); if (!H._isInt(t5)) H.throwExpression(H.argumentErrorValue(t5)); t1.dialog = new K.DatePickerDialog(new P.DateTime(t2, false), new P.DateTime(t3, false), new P.DateTime(t4, false), new P.DateTime(t5, false), C.DatePickerEntryMode_0, null, null, null, null, C.DatePickerMode_0, null, null, null, null, null); $async$returnValue = E.showDialog(true, new K.showDatePicker_closure(t1, null), context, null, true, type$.DateTime); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$showDatePicker, $async$completer); }, showDatePicker_closure: function showDatePicker_closure(t0, t1) { this._box_0 = t0; this.builder = t1; }, DatePickerDialog: function DatePickerDialog(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.initialDate = t0; _.firstDate = t1; _.lastDate = t2; _.currentDate = t3; _.initialEntryMode = t4; _.selectableDayPredicate = t5; _.cancelText = t6; _.confirmText = t7; _.helpText = t8; _.initialCalendarMode = t9; _.errorFormatText = t10; _.errorInvalidText = t11; _.fieldHintText = t12; _.fieldLabelText = t13; _.key = t14; }, _DatePickerDialogState: function _DatePickerDialogState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.___DatePickerDialogState__entryMode = _.___DatePickerDialogState__selectedDate = $; _._autoValidate = t0; _._calendarPickerKey = t1; _._formKey = t2; _.RestorationMixin__bucket = t3; _.RestorationMixin__properties = t4; _.RestorationMixin__debugPropertiesWaitingForReregistration = t5; _.RestorationMixin__firstRestorePending = t6; _.RestorationMixin__currentParent = t7; _._widget = null; _._debugLifecycleState = t8; _._framework$_element = null; }, _DatePickerDialogState__handleOk_closure: function _DatePickerDialogState__handleOk_closure(t0) { this.$this = t0; }, _DatePickerDialogState__handleEntryModeToggle_closure: function _DatePickerDialogState__handleEntryModeToggle_closure(t0) { this.$this = t0; }, _DatePickerDialogState__handleDateChanged_closure: function _DatePickerDialogState__handleDateChanged_closure(t0, t1) { this.$this = t0; this.date = t1; }, _DatePickerDialogState_build_calendarDatePicker: function _DatePickerDialogState_build_calendarDatePicker(t0) { this.$this = t0; }, _DatePickerDialogState_build_inputDatePicker: function _DatePickerDialogState_build_inputDatePicker(t0, t1) { this.$this = t0; this.orientation = t1; }, _DatePickerDialogState_build_closure: function _DatePickerDialogState_build_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.orientation = t1; _.header = t2; _.actions = t3; }, _RestorableDatePickerEntryMode: function _RestorableDatePickerEntryMode(t0, t1) { var _ = this; _._date_picker0$_defaultValue = t0; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t1; }, _DatePickerHeader: function _DatePickerHeader(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.helpText = t0; _.titleText = t1; _.titleStyle = t2; _.orientation = t3; _.isShort = t4; _.entryModeButton = t5; _.key = t6; }, __DatePickerDialogState_State_RestorationMixin_dispose_closure: function __DatePickerDialogState_State_RestorationMixin_dispose_closure() { }, __DatePickerDialogState_State_RestorationMixin: function __DatePickerDialogState_State_RestorationMixin() { }, DropdownMenuItem$: function(child, value, $T) { return new K.DropdownMenuItem(value, child, null, $T._eval$1("DropdownMenuItem<0>")); }, DropdownButton$: function(autofocus, disabledHint, dropdownColor, elevation, focusColor, focusNode, hint, icon, iconDisabledColor, iconEnabledColor, iconSize, isDense, isExpanded, itemHeight, items, menuMaxHeight, onChanged, onTap, selectedItemBuilder, style, value, $T) { return new K.DropdownButton(items, value, hint, disabledHint, onChanged, onTap, selectedItemBuilder, elevation, style, icon, iconDisabledColor, iconEnabledColor, iconSize, isDense, isExpanded, itemHeight, focusColor, focusNode, false, dropdownColor, menuMaxHeight, null, $T._eval$1("DropdownButton<0>")); }, DropdownButtonFormField$: function(isExpanded, items, onChanged, selectedItemBuilder, validator, value, $T) { var _null = null; L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new K.DropdownButtonFormField(onChanged, _null, validator, new K.DropdownButtonFormField_closure($T, _null, _null, items, selectedItemBuilder, _null, _null, onChanged, _null, 8, _null, _null, _null, _null, 24, true, true, _null, _null, false, _null, _null), value, true, C.AutovalidateMode_0, _null, $T._eval$1("DropdownButtonFormField<0>")); }, _DropdownMenuPainter: function _DropdownMenuPainter(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.color = t0; _.elevation = t1; _.selectedIndex = t2; _.resize = t3; _.getSelectedItemOffset = t4; _._dropdown$_painter = t5; _._repaint = t6; }, _DropdownMenuItemButton: function _DropdownMenuItemButton(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.route = t0; _.padding = t1; _.buttonRect = t2; _.constraints = t3; _.itemIndex = t4; _.key = t5; _.$ti = t6; }, _DropdownMenuItemButtonState: function _DropdownMenuItemButtonState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownMenu: function _DropdownMenu(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.route = t0; _.padding = t1; _.buttonRect = t2; _.constraints = t3; _.dropdownColor = t4; _.key = t5; _.$ti = t6; }, _DropdownMenuState: function _DropdownMenuState(t0, t1) { var _ = this; _.___DropdownMenuState__resize = _.___DropdownMenuState__fadeOpacity = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownMenuState_build_closure: function _DropdownMenuState_build_closure(t0) { this.route = t0; }, _DropdownMenuRouteLayout: function _DropdownMenuRouteLayout(t0, t1, t2, t3) { var _ = this; _.buttonRect = t0; _.route = t1; _.textDirection = t2; _.$ti = t3; }, _DropdownRouteResult: function _DropdownRouteResult(t0, t1) { this.result = t0; this.$ti = t1; }, _MenuLimits: function _MenuLimits(t0, t1, t2) { this.top = t0; this.height = t1; this.scrollOffset = t2; }, _DropdownRoute: function _DropdownRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.items = t0; _.padding = t1; _.buttonRect = t2; _.selectedIndex = t3; _.elevation = t4; _.capturedThemes = t5; _.style = t6; _.dropdownColor = t7; _.menuMaxHeight = t8; _.itemHeights = t9; _.scrollController = null; _.barrierLabel = t10; _.filter = t11; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t12; _._scopeKey = t13; _._subtreeKey = t14; _._storageBucket = t15; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t16; _._transitionCompleter = t17; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t18; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t19; _._navigator$_navigator = null; _._navigator$_settings = t20; _._restorationScopeId = t21; _._popCompleter = t22; _.$ti = t23; }, _DropdownRoute_buildPage_closure: function _DropdownRoute_buildPage_closure(t0) { this.$this = t0; }, _DropdownRoute_getItemOffset_closure: function _DropdownRoute_getItemOffset_closure() { }, _DropdownRoute_getMenuLimits_closure: function _DropdownRoute_getMenuLimits_closure() { }, _DropdownRoutePage: function _DropdownRoutePage(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.route = t0; _.constraints = t1; _.padding = t2; _.buttonRect = t3; _.selectedIndex = t4; _.capturedThemes = t5; _.dropdownColor = t6; _.key = t7; _.$ti = t8; }, _DropdownRoutePage_build_closure: function _DropdownRoutePage_build_closure(t0, t1, t2) { this.$this = t0; this.textDirection = t1; this.menu = t2; }, _MenuItem: function _MenuItem(t0, t1, t2, t3, t4) { var _ = this; _.onLayout = t0; _.item = t1; _.child = t2; _.key = t3; _.$ti = t4; }, _RenderMenuItem: function _RenderMenuItem(t0, t1) { var _ = this; _.onLayout = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _DropdownMenuItemContainer: function _DropdownMenuItemContainer(t0, t1) { this.child = t0; this.key = t1; }, DropdownMenuItem: function DropdownMenuItem(t0, t1, t2, t3) { var _ = this; _.value = t0; _.child = t1; _.key = t2; _.$ti = t3; }, DropdownButtonHideUnderline: function DropdownButtonHideUnderline(t0, t1) { this.child = t0; this.key = t1; }, DropdownButton: function DropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.items = t0; _.value = t1; _.hint = t2; _.disabledHint = t3; _.onChanged = t4; _.onTap = t5; _.selectedItemBuilder = t6; _.elevation = t7; _.style = t8; _.icon = t9; _.iconDisabledColor = t10; _.iconEnabledColor = t11; _.iconSize = t12; _.isDense = t13; _.isExpanded = t14; _.itemHeight = t15; _.focusColor = t16; _.focusNode = t17; _.autofocus = t18; _.dropdownColor = t19; _.menuMaxHeight = t20; _.key = t21; _.$ti = t22; }, _DropdownButtonState: function _DropdownButtonState(t0, t1) { var _ = this; _._dropdown$_internalNode = _._lastOrientation = _._dropdownRoute = _._selectedIndex = null; _._dropdown$_hasPrimaryFocus = false; _.___DropdownButtonState__focusHighlightMode = _.___DropdownButtonState__actionMap = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _DropdownButtonState_initState_closure: function _DropdownButtonState_initState_closure(t0) { this.$this = t0; }, _DropdownButtonState_initState_closure0: function _DropdownButtonState_initState_closure0(t0) { this.$this = t0; }, _DropdownButtonState__handleFocusChanged_closure: function _DropdownButtonState__handleFocusChanged_closure(t0) { this.$this = t0; }, _DropdownButtonState__handleFocusHighlightModeChange_closure: function _DropdownButtonState__handleFocusHighlightModeChange_closure(t0, t1) { this.$this = t0; this.mode = t1; }, _DropdownButtonState__updateSelectedIndex_closure: function _DropdownButtonState__updateSelectedIndex_closure(t0) { this.$this = t0; }, _DropdownButtonState__handleTap_closure: function _DropdownButtonState__handleTap_closure(t0, t1) { this.$this = t0; this.index = t1; }, _DropdownButtonState__handleTap_closure0: function _DropdownButtonState__handleTap_closure0(t0) { this.$this = t0; }, _DropdownButtonState_build_closure: function _DropdownButtonState_build_closure(t0) { this.$this = t0; }, DropdownButtonFormField: function DropdownButtonFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.onChanged = t0; _.onSaved = t1; _.validator = t2; _.builder = t3; _.initialValue = t4; _.enabled = t5; _.autovalidateMode = t6; _.key = t7; _.$ti = t8; }, DropdownButtonFormField_closure: function DropdownButtonFormField_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.T = t0; _.decoration = t1; _.focusColor = t2; _.items = t3; _.selectedItemBuilder = t4; _.hint = t5; _.disabledHint = t6; _.onChanged = t7; _.onTap = t8; _.elevation = t9; _.style = t10; _.icon = t11; _.iconDisabledColor = t12; _.iconEnabledColor = t13; _.iconSize = t14; _.isDense = t15; _.isExpanded = t16; _.itemHeight = t17; _.focusNode = t18; _.autofocus = t19; _.dropdownColor = t20; _.menuMaxHeight = t21; }, DropdownButtonFormField__closure: function DropdownButtonFormField__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.effectiveDecoration = t0; _.field = t1; _.state = t2; _.items = t3; _.selectedItemBuilder = t4; _.hint = t5; _.disabledHint = t6; _.onChanged = t7; _.onTap = t8; _.elevation = t9; _.style = t10; _.icon = t11; _.iconDisabledColor = t12; _.iconEnabledColor = t13; _.iconSize = t14; _.isDense = t15; _.isExpanded = t16; _.itemHeight = t17; _.focusColor = t18; _.focusNode = t19; _.autofocus = t20; _.dropdownColor = t21; _.menuMaxHeight = t22; _.T = t23; }, _DropdownButtonFormFieldState: function _DropdownButtonFormFieldState(t0, t1) { var _ = this; _._errorText = _._form$_value = null; _._hasInteractedByUser = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, __DropdownButtonState_State_WidgetsBindingObserver: function __DropdownButtonState_State_WidgetsBindingObserver() { }, _FadeUpwardsPageTransition$: function(child, routeAnimation) { var t3, t4, t1 = $.$get$_FadeUpwardsPageTransition__bottomUpTween(), t2 = $.$get$_FadeUpwardsPageTransition__fastOutSlowInTween(); t1.toString; t3 = t1.$ti._eval$1("_ChainedEvaluation"); routeAnimation.toString; type$.Animation_double._as(routeAnimation); t4 = $.$get$_FadeUpwardsPageTransition__easeInTween(); t4.toString; return new K._FadeUpwardsPageTransition(new R._AnimatedEvaluation(routeAnimation, new R._ChainedEvaluation(t2, t1, t3), t3._eval$1("_AnimatedEvaluation")), new R._AnimatedEvaluation(routeAnimation, t4, H._instanceType(t4)._eval$1("_AnimatedEvaluation")), child, null); }, _FadeUpwardsPageTransition: function _FadeUpwardsPageTransition(t0, t1, t2, t3) { var _ = this; _._positionAnimation = t0; _._opacityAnimation = t1; _.child = t2; _.key = t3; }, _ZoomPageTransition: function _ZoomPageTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.secondaryAnimation = t1; _.child = t2; _.key = t3; }, _ZoomPageTransition_build_closure: function _ZoomPageTransition_build_closure() { }, _ZoomPageTransition_build_closure0: function _ZoomPageTransition_build_closure0() { }, _ZoomPageTransition_build_closure1: function _ZoomPageTransition_build_closure1() { }, _ZoomPageTransition_build_closure2: function _ZoomPageTransition_build_closure2() { }, _ZoomEnterTransition: function _ZoomEnterTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.child = t1; _.reverse = t2; _.key = t3; }, _ZoomEnterTransition_build_closure: function _ZoomEnterTransition_build_closure(t0) { this._box_0 = t0; }, _ZoomExitTransition: function _ZoomExitTransition(t0, t1, t2, t3) { var _ = this; _.animation = t0; _.reverse = t1; _.child = t2; _.key = t3; }, PageTransitionsBuilder: function PageTransitionsBuilder() { }, FadeUpwardsPageTransitionsBuilder: function FadeUpwardsPageTransitionsBuilder() { }, ZoomPageTransitionsBuilder: function ZoomPageTransitionsBuilder() { }, CupertinoPageTransitionsBuilder: function CupertinoPageTransitionsBuilder() { }, PageTransitionsTheme: function PageTransitionsTheme(t0) { this._builders = t0; }, PageTransitionsTheme__all_closure: function PageTransitionsTheme__all_closure(t0) { this.builders = t0; }, _PageTransitionsTheme_Object_Diagnosticable: function _PageTransitionsTheme_Object_Diagnosticable() { }, SnackBarThemeData: function SnackBarThemeData(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.backgroundColor = t0; _.actionTextColor = t1; _.disabledActionTextColor = t2; _.contentTextStyle = t3; _.elevation = t4; _.shape = t5; _.behavior = t6; }, _SnackBarThemeData_Object_Diagnosticable: function _SnackBarThemeData_Object_Diagnosticable() { }, Theme_of: function(context) { var theme, inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedTheme), localizations = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations), category = localizations == null ? null : localizations.get$scriptCategory(); if (category == null) category = C.ScriptCategory_0; theme = inheritedTheme == null ? null : inheritedTheme.theme.data; if (theme == null) theme = $.$get$Theme__kFallbackTheme(); return X.ThemeData_localize(theme, theme.typography.geometryThemeFor$1(category)); }, Theme: function Theme(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, _InheritedTheme: function _InheritedTheme(t0, t1, t2) { this.theme = t0; this.child = t1; this.key = t2; }, ThemeDataTween: function ThemeDataTween(t0, t1) { this.begin = t0; this.end = t1; }, AnimatedTheme: function AnimatedTheme(t0, t1, t2, t3, t4, t5) { var _ = this; _.data = t0; _.child = t1; _.curve = t2; _.duration = t3; _.onEnd = t4; _.key = t5; }, _AnimatedThemeState: function _AnimatedThemeState(t0, t1) { var _ = this; _._theme$_data = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedThemeState_forEachTween_closure: function _AnimatedThemeState_forEachTween_closure() { }, AlignmentGeometry_lerp: function(a, b, t) { var t2, t3, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); if (a instanceof K.Alignment && b instanceof K.Alignment) return K.Alignment_lerp(a, b, t); if (a instanceof K.AlignmentDirectional && b instanceof K.AlignmentDirectional) return K.AlignmentDirectional_lerp(a, b, t); t1 = P.lerpDouble(a.get$_x(), b.get$_x(), t); t1.toString; t2 = P.lerpDouble(a.get$_alignment$_start(a), b.get$_alignment$_start(b), t); t2.toString; t3 = P.lerpDouble(a.get$_y(), b.get$_y(), t); t3.toString; return new K._MixedAlignment(t1, t2, t3); }, Alignment_lerp: function(a, b, t) { var t2, t1 = P.lerpDouble(a.x, b.x, t); t1.toString; t2 = P.lerpDouble(a.y, b.y, t); t2.toString; return new K.Alignment(t1, t2); }, Alignment__stringify: function(x, y) { var t2, t3, t1 = x === -1; if (t1 && y === -1) return "Alignment.topLeft"; t2 = x === 0; if (t2 && y === -1) return "Alignment.topCenter"; t3 = x === 1; if (t3 && y === -1) return "Alignment.topRight"; if (t1 && y === 0) return "Alignment.centerLeft"; if (t2 && y === 0) return "Alignment.center"; if (t3 && y === 0) return "Alignment.centerRight"; if (t1 && y === 1) return "Alignment.bottomLeft"; if (t2 && y === 1) return "Alignment.bottomCenter"; if (t3 && y === 1) return "Alignment.bottomRight"; return "Alignment(" + J.toStringAsFixed$1$n(x, 1) + ", " + J.toStringAsFixed$1$n(y, 1) + ")"; }, AlignmentDirectional_lerp: function(a, b, t) { var t2, t1 = P.lerpDouble(a.start, b.start, t); t1.toString; t2 = P.lerpDouble(a.y, b.y, t); t2.toString; return new K.AlignmentDirectional(t1, t2); }, AlignmentDirectional__stringify: function(start, y) { var t2, t3, t1 = start === -1; if (t1 && y === -1) return "AlignmentDirectional.topStart"; t2 = start === 0; if (t2 && y === -1) return "AlignmentDirectional.topCenter"; t3 = start === 1; if (t3 && y === -1) return "AlignmentDirectional.topEnd"; if (t1 && y === 0) return "AlignmentDirectional.centerStart"; if (t2 && y === 0) return "AlignmentDirectional.center"; if (t3 && y === 0) return "AlignmentDirectional.centerEnd"; if (t1 && y === 1) return "AlignmentDirectional.bottomStart"; if (t2 && y === 1) return "AlignmentDirectional.bottomCenter"; if (t3 && y === 1) return "AlignmentDirectional.bottomEnd"; return "AlignmentDirectional(" + J.toStringAsFixed$1$n(start, 1) + ", " + J.toStringAsFixed$1$n(y, 1) + ")"; }, AlignmentGeometry: function AlignmentGeometry() { }, Alignment: function Alignment(t0, t1) { this.x = t0; this.y = t1; }, AlignmentDirectional: function AlignmentDirectional(t0, t1) { this.start = t0; this.y = t1; }, _MixedAlignment: function _MixedAlignment(t0, t1, t2) { this._x = t0; this._alignment$_start = t1; this._y = t2; }, TextAlignVertical: function TextAlignVertical(t0) { this.y = t0; }, BorderRadiusGeometry_lerp: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) a = C.BorderRadius_tLn; return a.add$1(0, (b == null ? C.BorderRadius_tLn : b).subtract$1(a).$mul(0, t)); }, BorderRadius$all: function(radius) { return new K.BorderRadius(radius, radius, radius, radius); }, BorderRadius$circular: function(radius) { var t1 = new P.Radius(radius, radius); return new K.BorderRadius(t1, t1, t1, t1); }, BorderRadius_lerp: function(a, b, t) { var t2, t3, t4, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); t1 = P.Radius_lerp(a.topLeft, b.topLeft, t); t1.toString; t2 = P.Radius_lerp(a.topRight, b.topRight, t); t2.toString; t3 = P.Radius_lerp(a.bottomLeft, b.bottomLeft, t); t3.toString; t4 = P.Radius_lerp(a.bottomRight, b.bottomRight, t); t4.toString; return new K.BorderRadius(t1, t2, t3, t4); }, BorderRadiusGeometry: function BorderRadiusGeometry() { }, BorderRadius: function BorderRadius(t0, t1, t2, t3) { var _ = this; _.topLeft = t0; _.topRight = t1; _.bottomLeft = t2; _.bottomRight = t3; }, _MixedBorderRadius: function _MixedBorderRadius(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._topLeft = t0; _._topRight = t1; _._bottomLeft = t2; _._bottomRight = t3; _._topStart = t4; _._topEnd = t5; _._bottomStart = t6; _._bottomEnd = t7; }, PaintingContext__repaintCompositedChild: function(child, childContext, debugAlsoPaintedParent) { var t1, childLayer = type$.nullable_OffsetLayer._as(child._layer); if (childLayer == null) child._layer = new T.OffsetLayer(C.Offset_0_0); else childLayer.removeAllChildren$0(); t1 = child._layer; t1.toString; childContext = new K.PaintingContext(t1, child.get$paintBounds()); child._paintWithContext$2(childContext, C.Offset_0_0); childContext.stopRecordingIfNeeded$0(); }, RenderObject__cleanChildRelayoutBoundary: function(child) { child._cleanRelayoutBoundary$0(); }, _SemanticsGeometry__transformRect: function(rect, transform) { var t1; if (rect == null) return null; if (!rect.get$isEmpty(rect)) { t1 = transform._m4storage; t1 = t1[0] === 0 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 0 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 0 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 0; } else t1 = true; if (t1) return C.Rect_0_0_0_0; return T.MatrixUtils_inverseTransformRect(transform, rect); }, _SemanticsGeometry__applyIntermediatePaintTransforms: function(ancestor, child, transform, clipRectTransform) { var t2, intermediateParent, t3, t1 = child.get$parent(child); t1.toString; t2 = type$.RenderObject; t2._as(t1); for (intermediateParent = t1; intermediateParent !== ancestor; intermediateParent = t1, child = t3) { intermediateParent.applyPaintTransform$2(child, transform); t1 = intermediateParent.get$parent(intermediateParent); t1.toString; t2._as(t1); t3 = child.get$parent(child); t3.toString; t2._as(t3); } ancestor.applyPaintTransform$2(child, transform); ancestor.applyPaintTransform$2(child, clipRectTransform); }, _SemanticsGeometry__intersectRects: function(a, b) { if (a == null) return b; if (b == null) return a; return a.intersect$1(b); }, DiagnosticsDebugCreator$: function(value) { var _null = null; return new K.DiagnosticsDebugCreator(_null, false, true, _null, _null, _null, false, value, true, C.C__NoDefaultValue, C.DiagnosticLevel_0, _null, "debugCreator", true, true, _null, C.DiagnosticsTreeStyle_8); }, ParentData: function ParentData() { }, PaintingContext: function PaintingContext(t0, t1) { var _ = this; _._containerLayer = t0; _.estimatedBounds = t1; _._canvas = _._recorder = _._currentLayer = null; }, PaintingContext_pushClipRect_closure: function PaintingContext_pushClipRect_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, PaintingContext_pushClipRRect_closure: function PaintingContext_pushClipRRect_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, PaintingContext_pushClipPath_closure: function PaintingContext_pushClipPath_closure(t0, t1, t2) { this.$this = t0; this.painter = t1; this.offset = t2; }, Constraints: function Constraints() { }, SemanticsHandle: function SemanticsHandle(t0, t1) { this._object$_owner = t0; this.listener = t1; }, PipelineOwner: function PipelineOwner(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.onNeedVisualUpdate = t0; _.onSemanticsOwnerCreated = t1; _.onSemanticsOwnerDisposed = t2; _._rootNode = null; _._nodesNeedingLayout = t3; _._debugAllowMutationsToDirtySubtrees = _._debugDoingLayout = false; _._nodesNeedingCompositingBitsUpdate = t4; _._nodesNeedingPaint = t5; _._debugDoingPaint = false; _._semanticsOwner = null; _._outstandingSemanticsHandles = 0; _._debugDoingSemantics = false; _._nodesNeedingSemantics = t6; }, PipelineOwner_flushLayout_closure: function PipelineOwner_flushLayout_closure() { }, PipelineOwner_flushCompositingBits_closure: function PipelineOwner_flushCompositingBits_closure() { }, PipelineOwner_flushPaint_closure: function PipelineOwner_flushPaint_closure() { }, PipelineOwner_flushSemantics_closure: function PipelineOwner_flushSemantics_closure() { }, RenderObject: function RenderObject() { }, RenderObject__debugReportException_closure: function RenderObject__debugReportException_closure(t0) { this.$this = t0; }, RenderObject_invokeLayoutCallback_closure: function RenderObject_invokeLayoutCallback_closure(t0, t1, t2) { this.$this = t0; this.callback = t1; this.T = t2; }, RenderObject__updateCompositingBits_closure: function RenderObject__updateCompositingBits_closure(t0) { this.$this = t0; }, RenderObject_clearSemantics_closure: function RenderObject_clearSemantics_closure() { }, RenderObject__getSemanticsForParent_closure: function RenderObject__getSemanticsForParent_closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._box_0 = t0; _.$this = t1; _.childrenMergeIntoParent = t2; _.fragments = t3; _.toBeMarkedExplicit = t4; _.config = t5; _.producesForkingFragment = t6; }, RenderObjectWithChildMixin: function RenderObjectWithChildMixin() { }, ContainerParentDataMixin: function ContainerParentDataMixin() { }, ContainerRenderObjectMixin: function ContainerRenderObjectMixin() { }, RelayoutWhenSystemFontsChangeMixin: function RelayoutWhenSystemFontsChangeMixin() { }, _SemanticsFragment: function _SemanticsFragment() { }, _ContainerSemanticsFragment: function _ContainerSemanticsFragment(t0, t1) { this.interestingFragments = t0; this.dropsSemanticsOfPreviousSiblings = t1; }, _InterestingSemanticsFragment: function _InterestingSemanticsFragment() { }, _RootSemanticsFragment: function _RootSemanticsFragment(t0, t1, t2) { var _ = this; _._object$_children = t0; _._ancestorChain = t1; _._object$_tagsForChildren = null; _.dropsSemanticsOfPreviousSiblings = t2; }, _SwitchableSemanticsFragment: function _SwitchableSemanticsFragment(t0, t1, t2, t3, t4) { var _ = this; _._mergeIntoParent = t0; _._object$_config = t1; _._isConfigWritable = false; _._object$_children = t2; _._isExplicit = false; _._ancestorChain = t3; _._object$_tagsForChildren = null; _.dropsSemanticsOfPreviousSiblings = t4; }, _AbortingSemanticsFragment: function _AbortingSemanticsFragment(t0, t1) { this._ancestorChain = t0; this._object$_tagsForChildren = null; this.dropsSemanticsOfPreviousSiblings = t1; }, _SemanticsGeometry: function _SemanticsGeometry() { var _ = this; _._semanticsClipRect = _._paintClipRect = null; _.___SemanticsGeometry__rect = _.___SemanticsGeometry__transform = $; _._markAsHidden = false; }, DiagnosticsDebugCreator: function DiagnosticsDebugCreator(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _._description = t0; _.expandableValue = t1; _.allowWrap = t2; _.ifNull = t3; _.ifEmpty = t4; _.tooltip = t5; _.missingIfNull = t6; _._diagnostics$_value = t7; _._valueComputed = t8; _._diagnostics$_exception = null; _.defaultValue = t9; _._defaultLevel = t10; _._computeValue = t11; _.name = t12; _.showSeparator = t13; _.showName = t14; _.linePrefix = t15; _.style = t16; }, _RenderObject_AbstractNode_DiagnosticableTreeMixin: function _RenderObject_AbstractNode_DiagnosticableTreeMixin() { }, RelativeRect_RelativeRect$fromRect: function(rect, container) { return new K.RelativeRect(rect.left - container.left, rect.top - container.top, container.right - rect.right, container.bottom - rect.bottom); }, RenderStack$: function(alignment, children, clipBehavior, fit, textDirection) { var t1 = new K.RenderStack(alignment, textDirection, fit, clipBehavior, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, RenderStack_getIntrinsicDimension: function(firstChild, mainChildSizeGetter) { var t1, child, extent, t2; for (t1 = type$.StackParentData, child = firstChild, extent = 0; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (!t2.get$isPositioned()) extent = Math.max(extent, H.checkNum(mainChildSizeGetter.call$1(child))); child = t2.ContainerParentDataMixin_nextSibling; } return extent; }, RenderStack_layoutPositionedChild: function(child, childParentData, size, alignment) { var t3, t4, childConstraints, t5, hasVisualOverflow, t1 = {}, t2 = childParentData.left; if (t2 != null && childParentData.right != null) { t3 = size._dx; t4 = childParentData.right; t4.toString; t2.toString; childConstraints = C.BoxConstraints_mlX4.tighten$1$width(t3 - t4 - t2); } else { t2 = childParentData.width; childConstraints = t2 != null ? C.BoxConstraints_mlX4.tighten$1$width(t2) : C.BoxConstraints_mlX4; } t2 = childParentData.top; if (t2 != null && childParentData.bottom != null) { t3 = size._dy; t4 = childParentData.bottom; t4.toString; t2.toString; childConstraints = childConstraints.tighten$1$height(t3 - t4 - t2); } else { t2 = childParentData.height; if (t2 != null) childConstraints = childConstraints.tighten$1$height(t2); } child.layout$2$parentUsesSize(0, childConstraints, true); t1._x0 = $; t2 = new K.RenderStack_layoutPositionedChild__x_get(t1); t3 = new K.RenderStack_layoutPositionedChild__x_set(t1); t4 = childParentData.left; if (t4 != null) t3.call$1(t4); else { t4 = childParentData.right; t5 = child._box$_size; if (t4 != null) t3.call$1(size._dx - t4 - t5._dx); else { t5.toString; t3.call$1(alignment.alongOffset$1(type$.Offset._as(size.$sub(0, t5)))._dx); } } hasVisualOverflow = (t2.call$0() < 0 || t2.call$0() + child._box$_size._dx > size._dx) && true; t1._y0 = $; t3 = new K.RenderStack_layoutPositionedChild__y_get(t1); t1 = new K.RenderStack_layoutPositionedChild__y_set(t1); t4 = childParentData.top; if (t4 != null) t1.call$1(t4); else { t4 = childParentData.bottom; t5 = child._box$_size; if (t4 != null) t1.call$1(size._dy - t4 - t5._dy); else { t5.toString; t1.call$1(alignment.alongOffset$1(type$.Offset._as(size.$sub(0, t5)))._dy); } } if (t3.call$0() < 0 || t3.call$0() + child._box$_size._dy > size._dy) hasVisualOverflow = true; childParentData.offset = new P.Offset(t2.call$0(), t3.call$0()); return hasVisualOverflow; }, RelativeRect: function RelativeRect(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, StackParentData: function StackParentData(t0, t1, t2) { var _ = this; _.height = _.width = _.left = _.bottom = _.right = _.top = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, StackFit: function StackFit(t0) { this._stack$_name = t0; }, Overflow: function Overflow(t0) { this._stack$_name = t0; }, RenderStack: function RenderStack(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._stack$_hasVisualOverflow = false; _._stack$_resolvedAlignment = null; _._stack$_alignment = t0; _._stack$_textDirection = t1; _._stack$_fit = t2; _._stack$_clipBehavior = t3; _._stack$_clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t4; _.ContainerRenderObjectMixin__firstChild = t5; _.ContainerRenderObjectMixin__lastChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderStack_computeMinIntrinsicWidth_closure: function RenderStack_computeMinIntrinsicWidth_closure(t0) { this.height = t0; }, RenderStack_computeMaxIntrinsicWidth_closure: function RenderStack_computeMaxIntrinsicWidth_closure(t0) { this.height = t0; }, RenderStack_computeMinIntrinsicHeight_closure: function RenderStack_computeMinIntrinsicHeight_closure(t0) { this.width = t0; }, RenderStack_computeMaxIntrinsicHeight_closure: function RenderStack_computeMaxIntrinsicHeight_closure(t0) { this.width = t0; }, RenderStack_layoutPositionedChild__x_set: function RenderStack_layoutPositionedChild__x_set(t0) { this._box_0 = t0; }, RenderStack_layoutPositionedChild__y_set: function RenderStack_layoutPositionedChild__y_set(t0) { this._box_0 = t0; }, RenderStack_layoutPositionedChild__x_get: function RenderStack_layoutPositionedChild__x_get(t0) { this._box_0 = t0; }, RenderStack_layoutPositionedChild__y_get: function RenderStack_layoutPositionedChild__y_get(t0) { this._box_0 = t0; }, RenderIndexedStack: function RenderIndexedStack(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._stack$_index = t0; _._stack$_hasVisualOverflow = false; _._stack$_resolvedAlignment = null; _._stack$_alignment = t1; _._stack$_textDirection = t2; _._stack$_fit = t3; _._stack$_clipBehavior = t4; _._stack$_clipRectLayer = null; _.ContainerRenderObjectMixin__childCount = t5; _.ContainerRenderObjectMixin__firstChild = t6; _.ContainerRenderObjectMixin__lastChild = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIndexedStack_hitTestChildren_closure: function RenderIndexedStack_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, _RenderStack_RenderBox_ContainerRenderObjectMixin: function _RenderStack_RenderBox_ContainerRenderObjectMixin() { }, _RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, RestorationManager: function RestorationManager(t0, t1) { var _ = this; _._pendingRootBucket = _._restoration$_rootBucket = null; _._serializationScheduled = _._debugDoingUpdate = _._isReplacing = _._rootBucketIsValid = false; _._bucketsNeedingSerialization = t0; _.ChangeNotifier__listeners = t1; }, RestorationManager_handleRestorationUpdateFromEngine_closure: function RestorationManager_handleRestorationUpdateFromEngine_closure(t0) { this.$this = t0; }, RestorationManager_scheduleSerializationFor_closure: function RestorationManager_scheduleSerializationFor_closure(t0) { this.$this = t0; }, RestorationBucket: function RestorationBucket(t0, t1, t2, t3, t4, t5) { var _ = this; _._rawData = t0; _._debugOwner = null; _._manager = t1; _._restoration$_parent = t2; _._restorationId = t3; _._claimedChildren = t4; _._childrenToAdd = t5; _._debugDisposed = _._needsSerialization = false; }, RestorationBucket__rawChildren_closure: function RestorationBucket__rawChildren_closure() { }, RestorationBucket__rawValues_closure: function RestorationBucket__rawValues_closure() { }, RestorationBucket__addChildData_closure: function RestorationBucket__addChildData_closure() { }, RestorationBucket__visitChildren_closure: function RestorationBucket__visitChildren_closure() { }, DisposableBuildContext: function DisposableBuildContext(t0, t1) { this._disposable_build_context$_state = t0; this.$ti = t1; }, Navigator$: function(initialRoute, key, observers, onGenerateInitialRoutes, onGenerateRoute, onUnknownRoute, reportsRouteUpdateToEngine, restorationScopeId) { return new K.Navigator(initialRoute, onGenerateRoute, onUnknownRoute, observers, restorationScopeId, onGenerateInitialRoutes, reportsRouteUpdateToEngine, key); }, Navigator_maybePop: function(context) { return K.Navigator_of(context, false).maybePop$1(null); }, Navigator_of: function(context, rootNavigator) { var navigator0, t1, $navigator = context instanceof N.StatefulElement && context.state instanceof K.NavigatorState ? type$.NavigatorState._as(context.state) : null; if (rootNavigator) { navigator0 = context.findRootAncestorStateOfType$1$0(type$.NavigatorState); $navigator = navigator0 == null ? $navigator : navigator0; t1 = $navigator; } else { if ($navigator == null) $navigator = context.findAncestorStateOfType$1$0(type$.NavigatorState); t1 = $navigator; } t1.toString; return t1; }, Navigator_maybeOf: function(context) { var $navigator = context.findAncestorStateOfType$1$0(type$.NavigatorState); return $navigator; }, Navigator_defaultGenerateInitialRoutes: function($navigator, initialRouteName) { var t1, routeParts, t2, _i, t3, routeName, _null = null, result = H.setRuntimeTypeInfo([], type$.JSArray_nullable_Route_dynamic); if (C.JSString_methods.startsWith$1(initialRouteName, "/") && initialRouteName.length > 1) { initialRouteName = C.JSString_methods.substring$1(initialRouteName, 1); t1 = type$.dynamic; result.push($navigator._routeNamed$1$3$allowNull$arguments("/", true, _null, t1)); routeParts = initialRouteName.split("/"); if (initialRouteName.length !== 0) for (t2 = routeParts.length, _i = 0, t3 = ""; _i < t2; ++_i, t3 = routeName) { routeName = t3 + ("/" + H.S(routeParts[_i])); result.push($navigator._routeNamed$1$3$allowNull$arguments(routeName, true, _null, t1)); } if (C.JSArray_methods.get$last(result) == null) C.JSArray_methods.set$length(result, 0); } else if (initialRouteName !== "/") result.push($navigator._routeNamed$1$3$allowNull$arguments(initialRouteName, true, _null, type$.dynamic)); if (!!result.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(result, new K.Navigator_defaultGenerateInitialRoutes_closure(), true); if (result.length === 0) result.push($navigator._routeNamed$1$2$arguments("/", _null, type$.dynamic)); return new H.CastList(result, type$.CastList_of_nullable_Route_dynamic_and_Route_dynamic); }, _RouteEntry$: function(route, initialState, restorationInformation) { var t1 = $.$get$_RouteEntry_notAnnounced(); return new K._RouteEntry(route, restorationInformation, initialState, t1, t1, t1); }, _RouteEntry_isPresentPredicate: function(entry) { return entry.get$isPresent(); }, _RouteEntry_suitableForTransitionAnimationPredicate: function(entry) { var t1 = entry.currentState.index; return t1 <= 9 && t1 >= 3; }, _RouteEntry_willBePresentPredicate: function(entry) { var t1 = entry.currentState.index; return t1 <= 7 && t1 >= 1; }, _RouteEntry_isRoutePredicate: function(route) { return new K._RouteEntry_isRoutePredicate_closure(route); }, _RestorationInformation__RestorationInformation$fromSerializableData: function(data) { var t1, t2, t3; type$.List_nullable_Object._as(data); t1 = J.getInterceptor$asx(data); t2 = t1.$index(data, 0); t2.toString; switch (C.List_ato[H._asIntS(t2)]) { case C._RouteRestorationType_0: t1 = t1.sublist$1(data, 1); t2 = t1[0]; t2.toString; H._asIntS(t2); t3 = t1[1]; t3.toString; H._asStringS(t3); return new K._NamedRestorationInformation(t2, t3, t1.length > 2 ? t1[2] : null, C._RouteRestorationType_0); case C._RouteRestorationType_1: t1 = t1.sublist$1(data, 1)[1]; t1.toString; type$.Route_dynamic_Function_2_BuildContext_and_nullable_Object._as(P.PluginUtilities_getCallbackFromHandle(new P.CallbackHandle(H._asIntS(t1)))); return null; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, RoutePopDisposition: function RoutePopDisposition(t0) { this._navigator$_name = t0; }, Route: function Route() { }, Route_didPush_closure: function Route_didPush_closure(t0) { this.$this = t0; }, Route_didAdd_closure: function Route_didAdd_closure(t0) { this.$this = t0; }, Route_isCurrent_closure: function Route_isCurrent_closure() { }, Route_isCurrent_closure0: function Route_isCurrent_closure0() { }, Route_isFirst_closure: function Route_isFirst_closure() { }, Route_isFirst_closure0: function Route_isFirst_closure0() { }, Route_isActive_closure: function Route_isActive_closure(t0) { this.$this = t0; }, Route_isActive_closure0: function Route_isActive_closure0() { }, RouteSettings: function RouteSettings(t0, t1) { this.name = t0; this.$arguments = t1; }, NavigatorObserver: function NavigatorObserver() { }, HeroControllerScope: function HeroControllerScope(t0, t1, t2) { this.controller = t0; this.child = t1; this.key = t2; }, RouteTransitionRecord: function RouteTransitionRecord() { }, TransitionDelegate: function TransitionDelegate() { }, DefaultTransitionDelegate: function DefaultTransitionDelegate(t0) { this.$ti = t0; }, Navigator: function Navigator(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.initialRoute = t0; _.onGenerateRoute = t1; _.onUnknownRoute = t2; _.observers = t3; _.restorationScopeId = t4; _.onGenerateInitialRoutes = t5; _.reportsRouteUpdateToEngine = t6; _.key = t7; }, Navigator_defaultGenerateInitialRoutes_closure: function Navigator_defaultGenerateInitialRoutes_closure() { }, _RouteLifecycle: function _RouteLifecycle(t0, t1) { this.index = t0; this._navigator$_name = t1; }, _NotAnnounced: function _NotAnnounced(t0, t1, t2) { var _ = this; _._navigator$_navigator = null; _._navigator$_settings = t0; _._restorationScopeId = t1; _._popCompleter = t2; }, _RouteEntry: function _RouteEntry(t0, t1, t2, t3, t4, t5) { var _ = this; _.route = t0; _.restorationInformation = t1; _.currentState = t2; _.lastAnnouncedPreviousRoute = t3; _.lastAnnouncedPoppedNextRoute = t4; _.lastAnnouncedNextRoute = t5; _.doingPop = false; _._reportRemovalToObserver = true; _._isWaitingForExitingDecision = false; }, _RouteEntry_handlePush_closure: function _RouteEntry_handlePush_closure(t0, t1) { this.$this = t0; this.navigator = t1; }, _RouteEntry_dispose_closure: function _RouteEntry_dispose_closure() { }, _RouteEntry_dispose__listener_set: function _RouteEntry_dispose__listener_set(t0) { this._box_0 = t0; }, _RouteEntry_dispose__listener_get: function _RouteEntry_dispose__listener_get(t0) { this._box_0 = t0; }, _RouteEntry_dispose_closure0: function _RouteEntry_dispose_closure0(t0, t1, t2, t3) { var _ = this; _._box_1 = t0; _.$this = t1; _.entry = t2; _._listener_get = t3; }, _RouteEntry_isRoutePredicate_closure: function _RouteEntry_isRoutePredicate_closure(t0) { this.route = t0; }, _NavigatorObservation: function _NavigatorObservation() { }, _NavigatorPushObservation: function _NavigatorPushObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorPopObservation: function _NavigatorPopObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorRemoveObservation: function _NavigatorRemoveObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, _NavigatorReplaceObservation: function _NavigatorReplaceObservation(t0, t1) { this.primaryRoute = t0; this.secondaryRoute = t1; }, NavigatorState: function NavigatorState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.__NavigatorState__overlayKey = $; _._history = t0; _._serializableHistory = t1; _._observedRouteAdditions = t2; _._observedRouteDeletions = t3; _.focusScopeNode = t4; _._debugLocked = false; _._heroControllerFromScope = null; _.__NavigatorState__effectiveObservers = $; _._rawNextPagelessRestorationScopeId = t5; _._lastAnnouncedRouteName = null; _._debugUpdatingPage = false; _._userGesturesInProgressCount = 0; _.userGestureInProgressNotifier = t6; _._activePointers = t7; _.RestorationMixin__bucket = t8; _.RestorationMixin__properties = t9; _.RestorationMixin__debugPropertiesWaitingForReregistration = t10; _.RestorationMixin__firstRestorePending = t11; _.RestorationMixin__currentParent = t12; _.TickerProviderStateMixin__tickers = t13; _._widget = null; _._debugLifecycleState = t14; _._framework$_element = null; }, NavigatorState_restoreState_closure: function NavigatorState_restoreState_closure(t0) { this.$this = t0; }, NavigatorState__flushHistoryUpdates_closure: function NavigatorState__flushHistoryUpdates_closure() { }, NavigatorState__flushHistoryUpdates_closure0: function NavigatorState__flushHistoryUpdates_closure0() { }, NavigatorState__afterNavigation_closure: function NavigatorState__afterNavigation_closure() { }, NavigatorState_maybePop_closure: function NavigatorState_maybePop_closure() { }, NavigatorState_maybePop_closure0: function NavigatorState_maybePop_closure0() { }, NavigatorState_maybePop_closure1: function NavigatorState_maybePop_closure1() { }, NavigatorState_maybePop_closure2: function NavigatorState_maybePop_closure2() { }, NavigatorState_removeRoute_closure: function NavigatorState_removeRoute_closure() { }, NavigatorState_removeRoute_closure0: function NavigatorState_removeRoute_closure0() { }, NavigatorState__cancelActivePointers_closure: function NavigatorState__cancelActivePointers_closure(t0) { this.absorber = t0; }, _RouteRestorationType: function _RouteRestorationType(t0, t1) { this.index = t0; this._navigator$_name = t1; }, _RestorationInformation: function _RestorationInformation() { }, _NamedRestorationInformation: function _NamedRestorationInformation(t0, t1, t2, t3) { var _ = this; _.restorationScopeId = t0; _.name = t1; _.$arguments = t2; _.type = t3; _._serializableData = null; }, _AnonymousRestorationInformation: function _AnonymousRestorationInformation(t0, t1, t2, t3) { var _ = this; _.restorationScopeId = t0; _.routeBuilder = t1; _.$arguments = t2; _.type = t3; _._serializableData = null; }, _HistoryProperty: function _HistoryProperty(t0) { var _ = this; _._pageToPagelessRoutes = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t0; }, _HistoryProperty_fromPrimitives_closure: function _HistoryProperty_fromPrimitives_closure() { }, _NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, _NavigatorState_State_TickerProviderStateMixin: function _NavigatorState_State_TickerProviderStateMixin() { }, _NavigatorState_State_TickerProviderStateMixin_RestorationMixin: function _NavigatorState_State_TickerProviderStateMixin_RestorationMixin() { }, RestorationScope_of: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.UnmanagedRestorationScope); return t1 == null ? null : t1.bucket; }, UnmanagedRestorationScope$: function(bucket, child) { return new K.UnmanagedRestorationScope(bucket, child, null); }, RestorationScope: function RestorationScope(t0, t1, t2) { this.child = t0; this.restorationId = t1; this.key = t2; }, _RestorationScopeState: function _RestorationScopeState(t0, t1, t2, t3, t4, t5) { var _ = this; _.RestorationMixin__bucket = t0; _.RestorationMixin__properties = t1; _.RestorationMixin__debugPropertiesWaitingForReregistration = t2; _.RestorationMixin__firstRestorePending = t3; _.RestorationMixin__currentParent = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, UnmanagedRestorationScope: function UnmanagedRestorationScope(t0, t1, t2) { this.bucket = t0; this.child = t1; this.key = t2; }, RootRestorationScope: function RootRestorationScope(t0, t1, t2) { this.child = t0; this.restorationId = t1; this.key = t2; }, _RootRestorationScopeState: function _RootRestorationScopeState(t0) { var _ = this; _._okToRenderBlankContainer = null; _._rootBucketValid = false; _._ancestorBucket = _._rootBucket = null; _._isLoadingRootBucket = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _RootRestorationScopeState__loadRootBucketIfNecessary_closure: function _RootRestorationScopeState__loadRootBucketIfNecessary_closure(t0) { this.$this = t0; }, _RootRestorationScopeState__loadRootBucketIfNecessary__closure: function _RootRestorationScopeState__loadRootBucketIfNecessary__closure(t0, t1) { this.$this = t0; this.bucket = t1; }, RestorableProperty: function RestorableProperty() { }, RestorationMixin: function RestorationMixin() { }, RestorationMixin_registerForRestoration_listener: function RestorationMixin_registerForRestoration_listener(t0, t1) { this.$this = t0; this.property = t1; }, __RestorationScopeState_State_RestorationMixin_dispose_closure: function __RestorationScopeState_State_RestorationMixin_dispose_closure() { }, __RestorationScopeState_State_RestorationMixin: function __RestorationScopeState_State_RestorationMixin() { }, ScrollConfiguration$: function(behavior, child) { return new K.ScrollConfiguration(behavior, child, null); }, ScrollConfiguration_of: function(context) { var configuration = context.dependOnInheritedWidgetOfExactType$1$0(type$.ScrollConfiguration), t1 = configuration == null ? null : configuration.behavior; return t1 == null ? C.C_ScrollBehavior : t1; }, ScrollBehavior: function ScrollBehavior() { }, ScrollBehavior_velocityTrackerBuilder_closure: function ScrollBehavior_velocityTrackerBuilder_closure() { }, ScrollBehavior_velocityTrackerBuilder_closure0: function ScrollBehavior_velocityTrackerBuilder_closure0() { }, _WrappedScrollBehavior: function _WrappedScrollBehavior(t0, t1, t2, t3, t4) { var _ = this; _.delegate = t0; _.scrollbar = t1; _.overscrollIndicator = t2; _.physics = t3; _.platform = t4; }, ScrollConfiguration: function ScrollConfiguration(t0, t1, t2) { this.behavior = t0; this.child = t1; this.key = t2; }, SlideTransition$: function(child, position, textDirection, transformHitTests) { return new K.SlideTransition(textDirection, transformHitTests, child, position, null); }, ScaleTransition$: function(alignment, child, scale) { return new K.ScaleTransition(alignment, child, scale, null); }, RotationTransition$: function(alignment, child, turns) { return new K.RotationTransition(alignment, child, turns, null); }, SizeTransition$: function(axis, axisAlignment, child, sizeFactor) { return new K.SizeTransition(axis, axisAlignment, child, sizeFactor, null); }, FadeTransition$: function(alwaysIncludeSemantics, child, opacity) { return new K.FadeTransition(opacity, alwaysIncludeSemantics, child, null); }, AnimatedBuilder$: function(animation, builder, child) { return new K.AnimatedBuilder(builder, child, animation, null); }, AnimatedWidget: function AnimatedWidget() { }, _AnimatedState: function _AnimatedState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _AnimatedState__handleChange_closure: function _AnimatedState__handleChange_closure() { }, SlideTransition: function SlideTransition(t0, t1, t2, t3, t4) { var _ = this; _.textDirection = t0; _.transformHitTests = t1; _.child = t2; _.listenable = t3; _.key = t4; }, ScaleTransition: function ScaleTransition(t0, t1, t2, t3) { var _ = this; _.alignment = t0; _.child = t1; _.listenable = t2; _.key = t3; }, RotationTransition: function RotationTransition(t0, t1, t2, t3) { var _ = this; _.alignment = t0; _.child = t1; _.listenable = t2; _.key = t3; }, SizeTransition: function SizeTransition(t0, t1, t2, t3, t4) { var _ = this; _.axis = t0; _.axisAlignment = t1; _.child = t2; _.listenable = t3; _.key = t4; }, FadeTransition: function FadeTransition(t0, t1, t2, t3) { var _ = this; _.opacity = t0; _.alwaysIncludeSemantics = t1; _.child = t2; _.key = t3; }, DecoratedBoxTransition: function DecoratedBoxTransition(t0, t1, t2, t3) { var _ = this; _.decoration = t0; _.child = t1; _.listenable = t2; _.key = t3; }, AnimatedBuilder: function AnimatedBuilder(t0, t1, t2, t3) { var _ = this; _.builder = t0; _.child = t1; _.listenable = t2; _.key = t3; }, GoogleSignIn__waitFor: function(future) { var t1 = new P._Future($.Zone__current, type$._Future_void), completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_void); future.whenComplete$1(completer.get$complete(completer)).catchError$1(new K.GoogleSignIn__waitFor_closure()); return t1; }, GoogleSignInAuthentication: function GoogleSignInAuthentication(t0) { this._google_sign_in$_data = t0; }, GoogleSignInAccount: function GoogleSignInAccount(t0, t1, t2, t3, t4, t5) { var _ = this; _.displayName = t0; _.email = t1; _.id = t2; _.photoUrl = t3; _._idToken = t4; _._googleSignIn = t5; }, GoogleSignIn: function GoogleSignIn(t0, t1) { var _ = this; _.scopes = t0; _._currentUserController = t1; _._currentUser = _._lastMethodCall = _._initialization = null; }, GoogleSignIn__ensureInitialized_closure: function GoogleSignIn__ensureInitialized_closure(t0) { this.$this = t0; }, GoogleSignIn__waitFor_closure: function GoogleSignIn__waitFor_closure() { }, GoogleSignIn__addMethodCall_closure: function GoogleSignIn__addMethodCall_closure(t0, t1, t2) { this.$this = t0; this.canSkipCall = t1; this.method = t2; }, GoogleSignIn_signIn_isCanceled: function GoogleSignIn_signIn_isCanceled() { }, GoogleSignIn_signIn_closure: function GoogleSignIn_signIn_closure() { }, MultipartFile_MultipartFile$fromBytes: function(field, value, filename) { var t3, t1 = P.Stream_Stream$fromIterable(H.setRuntimeTypeInfo([value], type$.JSArray_List_int), type$.List_int), t2 = J.get$length$asx(value); t1 = B.toByteStream(new Z.ByteStream(t1)); t3 = R.MediaType$("application", "octet-stream", null); return new K.MultipartFile(field, t2, filename, t3, t1); }, MultipartFile: function MultipartFile(t0, t1, t2, t3, t4) { var _ = this; _.field = t0; _.length = t1; _.filename = t2; _.contentType = t3; _._multipart_file$_stream = t4; _._isFinalized = false; }, StringIterator: function StringIterator(t0) { this.input = t0; this.nextIndex = 0; this._string_iterator$_current = null; }, _$serializers_closure: function _$serializers_closure() { }, _$serializers_closure0: function _$serializers_closure0() { }, _$serializers_closure1: function _$serializers_closure1() { }, _$serializers_closure2: function _$serializers_closure2() { }, _$serializers_closure3: function _$serializers_closure3() { }, _$serializers_closure4: function _$serializers_closure4() { }, _$serializers_closure5: function _$serializers_closure5() { }, _$serializers_closure6: function _$serializers_closure6() { }, _$serializers_closure7: function _$serializers_closure7() { }, _$serializers_closure8: function _$serializers_closure8() { }, _$serializers_closure9: function _$serializers_closure9() { }, _$serializers_closure10: function _$serializers_closure10() { }, _$serializers_closure11: function _$serializers_closure11() { }, _$serializers_closure12: function _$serializers_closure12() { }, _$serializers_closure13: function _$serializers_closure13() { }, _$serializers_closure14: function _$serializers_closure14() { }, _$serializers_closure15: function _$serializers_closure15() { }, _$serializers_closure16: function _$serializers_closure16() { }, _$serializers_closure17: function _$serializers_closure17() { }, _$serializers_closure18: function _$serializers_closure18() { }, _$serializers_closure19: function _$serializers_closure19() { }, _$serializers_closure20: function _$serializers_closure20() { }, _$serializers_closure21: function _$serializers_closure21() { }, _$serializers_closure22: function _$serializers_closure22() { }, _$serializers_closure23: function _$serializers_closure23() { }, _$serializers_closure24: function _$serializers_closure24() { }, _$serializers_closure25: function _$serializers_closure25() { }, _$serializers_closure26: function _$serializers_closure26() { }, _$serializers_closure27: function _$serializers_closure27() { }, _$serializers_closure28: function _$serializers_closure28() { }, _$serializers_closure29: function _$serializers_closure29() { }, _$serializers_closure30: function _$serializers_closure30() { }, _$serializers_closure31: function _$serializers_closure31() { }, _$serializers_closure32: function _$serializers_closure32() { }, _$serializers_closure33: function _$serializers_closure33() { }, _$serializers_closure34: function _$serializers_closure34() { }, _$serializers_closure35: function _$serializers_closure35() { }, _$serializers_closure36: function _$serializers_closure36() { }, _$serializers_closure37: function _$serializers_closure37() { }, _$serializers_closure38: function _$serializers_closure38() { }, _$serializers_closure39: function _$serializers_closure39() { }, _$serializers_closure40: function _$serializers_closure40() { }, _$serializers_closure41: function _$serializers_closure41() { }, _$serializers_closure42: function _$serializers_closure42() { }, _$serializers_closure43: function _$serializers_closure43() { }, _$serializers_closure44: function _$serializers_closure44() { }, _$serializers_closure45: function _$serializers_closure45() { }, _$serializers_closure46: function _$serializers_closure46() { }, _$serializers_closure47: function _$serializers_closure47() { }, _$serializers_closure48: function _$serializers_closure48() { }, _$serializers_closure49: function _$serializers_closure49() { }, _$serializers_closure50: function _$serializers_closure50() { }, _$serializers_closure51: function _$serializers_closure51() { }, _$serializers_closure52: function _$serializers_closure52() { }, _$serializers_closure53: function _$serializers_closure53() { }, _$serializers_closure54: function _$serializers_closure54() { }, _$serializers_closure55: function _$serializers_closure55() { }, _$serializers_closure56: function _$serializers_closure56() { }, _$serializers_closure57: function _$serializers_closure57() { }, _$serializers_closure58: function _$serializers_closure58() { }, _$serializers_closure59: function _$serializers_closure59() { }, _$serializers_closure60: function _$serializers_closure60() { }, _$serializers_closure61: function _$serializers_closure61() { }, _$serializers_closure62: function _$serializers_closure62() { }, _$serializers_closure63: function _$serializers_closure63() { }, _$serializers_closure64: function _$serializers_closure64() { }, _$serializers_closure65: function _$serializers_closure65() { }, _$serializers_closure66: function _$serializers_closure66() { }, _$serializers_closure67: function _$serializers_closure67() { }, _$serializers_closure68: function _$serializers_closure68() { }, _$serializers_closure69: function _$serializers_closure69() { }, _$serializers_closure70: function _$serializers_closure70() { }, _$serializers_closure71: function _$serializers_closure71() { }, _$serializers_closure72: function _$serializers_closure72() { }, _$serializers_closure73: function _$serializers_closure73() { }, _$serializers_closure74: function _$serializers_closure74() { }, _$serializers_closure75: function _$serializers_closure75() { }, _$serializers_closure76: function _$serializers_closure76() { }, _$serializers_closure77: function _$serializers_closure77() { }, _$serializers_closure78: function _$serializers_closure78() { }, _$serializers_closure79: function _$serializers_closure79() { }, _$serializers_closure80: function _$serializers_closure80() { }, _$serializers_closure81: function _$serializers_closure81() { }, _$serializers_closure82: function _$serializers_closure82() { }, _$serializers_closure83: function _$serializers_closure83() { }, _$serializers_closure84: function _$serializers_closure84() { }, _$serializers_closure85: function _$serializers_closure85() { }, _$serializers_closure86: function _$serializers_closure86() { }, _$serializers_closure87: function _$serializers_closure87() { }, _$serializers_closure88: function _$serializers_closure88() { }, _$serializers_closure89: function _$serializers_closure89() { }, _$serializers_closure90: function _$serializers_closure90() { }, _$serializers_closure91: function _$serializers_closure91() { }, _$serializers_closure92: function _$serializers_closure92() { }, _$serializers_closure93: function _$serializers_closure93() { }, _$serializers_closure94: function _$serializers_closure94() { }, _$serializers_closure95: function _$serializers_closure95() { }, _$serializers_closure96: function _$serializers_closure96() { }, _$serializers_closure97: function _$serializers_closure97() { }, _$serializers_closure98: function _$serializers_closure98() { }, _$serializers_closure99: function _$serializers_closure99() { }, _$serializers_closure100: function _$serializers_closure100() { }, _$serializers_closure101: function _$serializers_closure101() { }, _$serializers_closure102: function _$serializers_closure102() { }, _$serializers_closure103: function _$serializers_closure103() { }, _$serializers_closure104: function _$serializers_closure104() { }, _$serializers_closure105: function _$serializers_closure105() { }, _$serializers_closure106: function _$serializers_closure106() { }, _$serializers_closure107: function _$serializers_closure107() { }, _$serializers_closure108: function _$serializers_closure108() { }, _$serializers_closure109: function _$serializers_closure109() { }, _$serializers_closure110: function _$serializers_closure110() { }, _$serializers_closure111: function _$serializers_closure111() { }, _$serializers_closure112: function _$serializers_closure112() { }, _$serializers_closure113: function _$serializers_closure113() { }, _$serializers_closure114: function _$serializers_closure114() { }, _$serializers_closure115: function _$serializers_closure115() { }, _$serializers_closure116: function _$serializers_closure116() { }, _$serializers_closure117: function _$serializers_closure117() { }, _$serializers_closure118: function _$serializers_closure118() { }, _$serializers_closure119: function _$serializers_closure119() { }, _$serializers_closure120: function _$serializers_closure120() { }, _$serializers_closure121: function _$serializers_closure121() { }, _$serializers_closure122: function _$serializers_closure122() { }, _$serializers_closure123: function _$serializers_closure123() { }, _$serializers_closure124: function _$serializers_closure124() { }, _$serializers_closure125: function _$serializers_closure125() { }, _$serializers_closure126: function _$serializers_closure126() { }, _$serializers_closure127: function _$serializers_closure127() { }, _$serializers_closure128: function _$serializers_closure128() { }, _$serializers_closure129: function _$serializers_closure129() { }, _$serializers_closure130: function _$serializers_closure130() { }, _$serializers_closure131: function _$serializers_closure131() { }, _$serializers_closure132: function _$serializers_closure132() { }, _$serializers_closure133: function _$serializers_closure133() { }, _$serializers_closure134: function _$serializers_closure134() { }, _$serializers_closure135: function _$serializers_closure135() { }, _$serializers_closure136: function _$serializers_closure136() { }, _$serializers_closure137: function _$serializers_closure137() { }, _$serializers_closure138: function _$serializers_closure138() { }, _$serializers_closure139: function _$serializers_closure139() { }, _$serializers_closure140: function _$serializers_closure140() { }, _$serializers_closure141: function _$serializers_closure141() { }, _$serializers_closure142: function _$serializers_closure142() { }, _$serializers_closure143: function _$serializers_closure143() { }, _$serializers_closure144: function _$serializers_closure144() { }, _$serializers_closure145: function _$serializers_closure145() { }, _$serializers_closure146: function _$serializers_closure146() { }, _$serializers_closure147: function _$serializers_closure147() { }, _$serializers_closure148: function _$serializers_closure148() { }, _$serializers_closure149: function _$serializers_closure149() { }, _$serializers_closure150: function _$serializers_closure150() { }, _$serializers_closure151: function _$serializers_closure151() { }, _$serializers_closure152: function _$serializers_closure152() { }, _$serializers_closure153: function _$serializers_closure153() { }, _$serializers_closure154: function _$serializers_closure154() { }, _$serializers_closure155: function _$serializers_closure155() { }, _$serializers_closure156: function _$serializers_closure156() { }, _$serializers_closure157: function _$serializers_closure157() { }, _$serializers_closure158: function _$serializers_closure158() { }, _$serializers_closure159: function _$serializers_closure159() { }, _$serializers_closure160: function _$serializers_closure160() { }, _$serializers_closure161: function _$serializers_closure161() { }, _$serializers_closure162: function _$serializers_closure162() { }, _$serializers_closure163: function _$serializers_closure163() { }, _$serializers_closure164: function _$serializers_closure164() { }, _$serializers_closure165: function _$serializers_closure165() { }, _$serializers_closure166: function _$serializers_closure166() { }, _$serializers_closure167: function _$serializers_closure167() { }, _$serializers_closure168: function _$serializers_closure168() { }, _$serializers_closure169: function _$serializers_closure169() { }, _$serializers_closure170: function _$serializers_closure170() { }, _$serializers_closure171: function _$serializers_closure171() { }, _$serializers_closure172: function _$serializers_closure172() { }, _$serializers_closure173: function _$serializers_closure173() { }, _$serializers_closure174: function _$serializers_closure174() { }, _$serializers_closure175: function _$serializers_closure175() { }, _$serializers_closure176: function _$serializers_closure176() { }, _$serializers_closure177: function _$serializers_closure177() { }, _$serializers_closure178: function _$serializers_closure178() { }, _$serializers_closure179: function _$serializers_closure179() { }, _$serializers_closure180: function _$serializers_closure180() { }, _$serializers_closure181: function _$serializers_closure181() { }, _$serializers_closure182: function _$serializers_closure182() { }, _$serializers_closure183: function _$serializers_closure183() { }, _$serializers_closure184: function _$serializers_closure184() { }, _$serializers_closure185: function _$serializers_closure185() { }, _$serializers_closure186: function _$serializers_closure186() { }, FontEntity: function FontEntity() { }, _$FontEntity: function _$FontEntity(t0, t1) { this.name = t0; this.id = t1; this._font_model$__hashCode = null; }, _FontEntity_Object_SelectableEntity: function _FontEntity_Object_SelectableEntity() { }, InvoiceNinjaApp: function InvoiceNinjaApp(t0, t1) { this.store = t0; this.key = t1; }, InvoiceNinjaAppState: function InvoiceNinjaAppState(t0) { var _ = this; _._authenticated = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, InvoiceNinjaAppState__authenticate_closure: function InvoiceNinjaAppState__authenticate_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_initState_closure: function InvoiceNinjaAppState_initState_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_generateRoute_closure: function InvoiceNinjaAppState_generateRoute_closure() { }, InvoiceNinjaAppState_generateRoute_closure0: function InvoiceNinjaAppState_generateRoute_closure0() { }, InvoiceNinjaAppState_build_closure: function InvoiceNinjaAppState_build_closure(t0) { this.$this = t0; }, InvoiceNinjaAppState_build__closure: function InvoiceNinjaAppState_build__closure() { }, InvoiceNinjaAppState_build__closure0: function InvoiceNinjaAppState_build__closure0() { }, InvoiceNinjaAppState_build__closure1: function InvoiceNinjaAppState_build__closure1() { }, InvoiceNinjaAppState_build__closure2: function InvoiceNinjaAppState_build__closure2(t0) { this.state = t0; }, InvoiceNinjaAppState_build__closure3: function InvoiceNinjaAppState_build__closure3() { }, InvoiceNinjaAppState_build__closure4: function InvoiceNinjaAppState_build__closure4() { }, InvoiceNinjaAppState_build__closure5: function InvoiceNinjaAppState_build__closure5() { }, InvoiceNinjaAppState_build__closure6: function InvoiceNinjaAppState_build__closure6() { }, InvoiceNinjaAppState_build__closure7: function InvoiceNinjaAppState_build__closure7() { }, InvoiceNinjaAppState_build__closure8: function InvoiceNinjaAppState_build__closure8() { }, InvoiceNinjaAppState_build__closure9: function InvoiceNinjaAppState_build__closure9() { }, InvoiceNinjaAppState_build__closure10: function InvoiceNinjaAppState_build__closure10() { }, InvoiceNinjaAppState_build__closure11: function InvoiceNinjaAppState_build__closure11() { }, InvoiceNinjaAppState_build__closure12: function InvoiceNinjaAppState_build__closure12() { }, InvoiceNinjaAppState_build__closure13: function InvoiceNinjaAppState_build__closure13() { }, InvoiceNinjaAppState_build__closure14: function InvoiceNinjaAppState_build__closure14() { }, InvoiceNinjaAppState_build__closure15: function InvoiceNinjaAppState_build__closure15() { }, InvoiceNinjaAppState_build__closure16: function InvoiceNinjaAppState_build__closure16() { }, InvoiceNinjaAppState_build__closure17: function InvoiceNinjaAppState_build__closure17() { }, InvoiceNinjaAppState_build__closure18: function InvoiceNinjaAppState_build__closure18() { }, InvoiceNinjaAppState_build__closure19: function InvoiceNinjaAppState_build__closure19() { }, InvoiceNinjaAppState_build__closure20: function InvoiceNinjaAppState_build__closure20() { }, InvoiceNinjaAppState_build__closure21: function InvoiceNinjaAppState_build__closure21() { }, InvoiceNinjaAppState_build__closure22: function InvoiceNinjaAppState_build__closure22() { }, InvoiceNinjaAppState_build__closure23: function InvoiceNinjaAppState_build__closure23() { }, InvoiceNinjaAppState_build__closure24: function InvoiceNinjaAppState_build__closure24() { }, InvoiceNinjaAppState_build__closure25: function InvoiceNinjaAppState_build__closure25() { }, InvoiceNinjaAppState_build__closure26: function InvoiceNinjaAppState_build__closure26() { }, InvoiceNinjaAppState_build__closure27: function InvoiceNinjaAppState_build__closure27() { }, InvoiceNinjaAppState_build__closure28: function InvoiceNinjaAppState_build__closure28() { }, InvoiceNinjaAppState_build__closure29: function InvoiceNinjaAppState_build__closure29() { }, InvoiceNinjaAppState_build__closure30: function InvoiceNinjaAppState_build__closure30() { }, InvoiceNinjaAppState_build__closure31: function InvoiceNinjaAppState_build__closure31() { }, InvoiceNinjaAppState_build__closure32: function InvoiceNinjaAppState_build__closure32() { }, InvoiceNinjaAppState_build__closure33: function InvoiceNinjaAppState_build__closure33() { }, InvoiceNinjaAppState_build__closure34: function InvoiceNinjaAppState_build__closure34() { }, InvoiceNinjaAppState_build__closure35: function InvoiceNinjaAppState_build__closure35() { }, InvoiceNinjaAppState_build__closure36: function InvoiceNinjaAppState_build__closure36() { }, InvoiceNinjaAppState_build__closure37: function InvoiceNinjaAppState_build__closure37() { }, InvoiceNinjaAppState_build__closure38: function InvoiceNinjaAppState_build__closure38() { }, InvoiceNinjaAppState_build__closure39: function InvoiceNinjaAppState_build__closure39() { }, InvoiceNinjaAppState_build__closure40: function InvoiceNinjaAppState_build__closure40() { }, InvoiceNinjaAppState_build__closure41: function InvoiceNinjaAppState_build__closure41() { }, InvoiceNinjaAppState_build__closure42: function InvoiceNinjaAppState_build__closure42() { }, InvoiceNinjaAppState_build__closure43: function InvoiceNinjaAppState_build__closure43() { }, InvoiceNinjaAppState_build__closure44: function InvoiceNinjaAppState_build__closure44() { }, InvoiceNinjaAppState_build__closure45: function InvoiceNinjaAppState_build__closure45() { }, InvoiceNinjaAppState_build__closure46: function InvoiceNinjaAppState_build__closure46() { }, InvoiceNinjaAppState_build__closure47: function InvoiceNinjaAppState_build__closure47() { }, InvoiceNinjaAppState_build__closure48: function InvoiceNinjaAppState_build__closure48() { }, InvoiceNinjaAppState_build__closure49: function InvoiceNinjaAppState_build__closure49() { }, InvoiceNinjaAppState_build__closure50: function InvoiceNinjaAppState_build__closure50() { }, InvoiceNinjaAppState_build__closure51: function InvoiceNinjaAppState_build__closure51() { }, InvoiceNinjaAppState_build__closure52: function InvoiceNinjaAppState_build__closure52() { }, InvoiceNinjaAppState_build__closure53: function InvoiceNinjaAppState_build__closure53() { }, InvoiceNinjaAppState_build__closure54: function InvoiceNinjaAppState_build__closure54() { }, InvoiceNinjaAppState_build__closure55: function InvoiceNinjaAppState_build__closure55() { }, InvoiceNinjaAppState_build__closure56: function InvoiceNinjaAppState_build__closure56() { }, InvoiceNinjaAppState_build__closure57: function InvoiceNinjaAppState_build__closure57() { }, InvoiceNinjaAppState_build__closure58: function InvoiceNinjaAppState_build__closure58() { }, InvoiceNinjaAppState_build__closure59: function InvoiceNinjaAppState_build__closure59() { }, InvoiceNinjaAppState_build__closure60: function InvoiceNinjaAppState_build__closure60() { }, InvoiceNinjaAppState_build__closure61: function InvoiceNinjaAppState_build__closure61() { }, InvoiceNinjaAppState_build__closure62: function InvoiceNinjaAppState_build__closure62() { }, InvoiceNinjaAppState_build__closure63: function InvoiceNinjaAppState_build__closure63() { }, InvoiceNinjaAppState_build__closure64: function InvoiceNinjaAppState_build__closure64() { }, InvoiceNinjaAppState_build__closure65: function InvoiceNinjaAppState_build__closure65() { }, InvoiceNinjaAppState_build__closure66: function InvoiceNinjaAppState_build__closure66() { }, InvoiceNinjaAppState_build__closure67: function InvoiceNinjaAppState_build__closure67() { }, InvoiceNinjaAppState_build__closure68: function InvoiceNinjaAppState_build__closure68() { }, InvoiceNinjaAppState_build__closure69: function InvoiceNinjaAppState_build__closure69() { }, InvoiceNinjaAppState_build__closure70: function InvoiceNinjaAppState_build__closure70() { }, InvoiceNinjaAppState_build__closure71: function InvoiceNinjaAppState_build__closure71() { }, InvoiceNinjaAppState_build__closure72: function InvoiceNinjaAppState_build__closure72() { }, InvoiceNinjaAppState_build__closure73: function InvoiceNinjaAppState_build__closure73() { }, InvoiceNinjaAppState_build__closure74: function InvoiceNinjaAppState_build__closure74() { }, InvoiceNinjaAppState_build__closure75: function InvoiceNinjaAppState_build__closure75() { }, InvoiceNinjaAppState_build__closure76: function InvoiceNinjaAppState_build__closure76() { }, InvoiceNinjaAppState_build__closure77: function InvoiceNinjaAppState_build__closure77() { }, InvoiceNinjaAppState_build__closure78: function InvoiceNinjaAppState_build__closure78() { }, InvoiceNinjaAppState_build__closure79: function InvoiceNinjaAppState_build__closure79() { }, InvoiceNinjaAppState_build__closure80: function InvoiceNinjaAppState_build__closure80() { }, InvoiceNinjaAppState_build__closure81: function InvoiceNinjaAppState_build__closure81() { }, InvoiceNinjaAppState_build__closure82: function InvoiceNinjaAppState_build__closure82() { }, InvoiceNinjaAppState_build__closure83: function InvoiceNinjaAppState_build__closure83() { }, InvoiceNinjaAppState_build__closure84: function InvoiceNinjaAppState_build__closure84() { }, InvoiceNinjaAppState_build__closure85: function InvoiceNinjaAppState_build__closure85() { }, InvoiceNinjaAppState_build__closure86: function InvoiceNinjaAppState_build__closure86() { }, InvoiceNinjaAppState_build__closure87: function InvoiceNinjaAppState_build__closure87() { }, InvoiceNinjaAppState_build__closure88: function InvoiceNinjaAppState_build__closure88() { }, InvoiceNinjaAppState_build__closure89: function InvoiceNinjaAppState_build__closure89() { }, InvoiceNinjaAppState_build__closure90: function InvoiceNinjaAppState_build__closure90() { }, InvoiceNinjaAppState_build__closure91: function InvoiceNinjaAppState_build__closure91() { }, InvoiceNinjaAppState_build__closure92: function InvoiceNinjaAppState_build__closure92() { }, InvoiceNinjaAppState_build__closure93: function InvoiceNinjaAppState_build__closure93() { }, InvoiceNinjaAppState_build__closure94: function InvoiceNinjaAppState_build__closure94() { }, InvoiceNinjaAppState_build__closure95: function InvoiceNinjaAppState_build__closure95() { }, InvoiceNinjaAppState_build__closure96: function InvoiceNinjaAppState_build__closure96() { }, InvoiceNinjaAppState_build__closure97: function InvoiceNinjaAppState_build__closure97() { }, InvoiceNinjaAppState_build__closure98: function InvoiceNinjaAppState_build__closure98() { }, InvoiceNinjaAppState_build__closure99: function InvoiceNinjaAppState_build__closure99() { }, InvoiceNinjaAppState_build__closure100: function InvoiceNinjaAppState_build__closure100() { }, InvoiceNinjaAppState_build__closure101: function InvoiceNinjaAppState_build__closure101() { }, InvoiceNinjaAppState_build__closure102: function InvoiceNinjaAppState_build__closure102() { }, InvoiceNinjaAppState_build__closure103: function InvoiceNinjaAppState_build__closure103() { }, InvoiceNinjaAppState_build__closure104: function InvoiceNinjaAppState_build__closure104() { }, InvoiceNinjaAppState_build__closure105: function InvoiceNinjaAppState_build__closure105() { }, InvoiceNinjaAppState_build__closure106: function InvoiceNinjaAppState_build__closure106() { }, _createLoadState: function(authRepository, uiRepository, staticRepository, companyRepositories) { var t1 = {}; t1.staticState = t1.uiState = t1.authState = null; return new K._createLoadState_closure(t1, authRepository, uiRepository, staticRepository, companyRepositories, H.setRuntimeTypeInfo([], type$.JSArray_legacy_UserCompanyState)); }, _getRoutes: function(state) { var t1 = {}, routes = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t1.route = ""; t1.entityType = null; new H.WhereIterable(H.setRuntimeTypeInfo(state.uiState.currentRoute.split("/"), type$.JSArray_String), new K._getRoutes_closure(), type$.WhereIterable_String).forEach$1(0, new K._getRoutes_closure0(t1, state, routes)); return routes; }, _createUserLoggedIn: function(authRepository, uiRepository, staticRepository, companyRepositories) { return new K._createUserLoggedIn_closure(authRepository, uiRepository, staticRepository, companyRepositories); }, _createPersistData: function(companyRepositories) { return new K._createPersistData_closure(companyRepositories); }, _createPersistUI: function(uiRepository) { return new K._createPersistUI_closure(uiRepository); }, _createPersistPrefs: function() { return new K._createPersistPrefs_closure(); }, _createAccountLoaded: function() { return new K._createAccountLoaded_closure(); }, _createDataRefreshed: function() { return new K._createDataRefreshed_closure(); }, _createPersistStatic: function(staticRepository) { return new K._createPersistStatic_closure(staticRepository); }, _createDeleteState: function(authRepository, uiRepository, staticRepository, companyRepositories) { return new K._createDeleteState_closure(authRepository, uiRepository, staticRepository, companyRepositories); }, _createViewMainScreen: function() { return new K._createViewMainScreen_closure(); }, _createLoadState_closure: function _createLoadState_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_1 = t0; _.authRepository = t1; _.uiRepository = t2; _.staticRepository = t3; _.companyRepositories = t4; _.companyStates = t5; }, _createLoadState__closure: function _createLoadState__closure(t0) { this.state = t0; }, _createLoadState__closure0: function _createLoadState__closure0(t0, t1) { this._box_1 = t0; this.companyStates = t1; }, _createLoadState__closure1: function _createLoadState__closure1(t0) { this.store = t0; }, _createLoadState__closure2: function _createLoadState__closure2() { }, _createLoadState__closure3: function _createLoadState__closure3(t0) { this.store = t0; }, _createLoadState__closure4: function _createLoadState__closure4(t0, t1) { this._box_0 = t0; this.navigator = t1; }, _createLoadState__closure5: function _createLoadState__closure5(t0, t1) { this.action = t0; this.store = t1; }, _createLoadState___closure: function _createLoadState___closure(t0) { this.store = t0; }, _createLoadState__closure6: function _createLoadState__closure6(t0) { this.store = t0; }, _getRoutes_closure: function _getRoutes_closure() { }, _getRoutes_closure0: function _getRoutes_closure0(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.routes = t2; }, _createUserLoggedIn_closure: function _createUserLoggedIn_closure(t0, t1, t2, t3) { var _ = this; _.authRepository = t0; _.uiRepository = t1; _.staticRepository = t2; _.companyRepositories = t3; }, _createPersistData_closure: function _createPersistData_closure(t0) { this.companyRepositories = t0; }, _createPersistUI_closure: function _createPersistUI_closure(t0) { this.uiRepository = t0; }, _createPersistPrefs_closure: function _createPersistPrefs_closure() { }, _createPersistPrefs__closure: function _createPersistPrefs__closure(t0) { this.string = t0; }, _createAccountLoaded_closure: function _createAccountLoaded_closure() { }, _createDataRefreshed_closure: function _createDataRefreshed_closure() { }, _createPersistStatic_closure: function _createPersistStatic_closure(t0) { this.staticRepository = t0; }, _createDeleteState_closure: function _createDeleteState_closure(t0, t1, t2, t3) { var _ = this; _.authRepository = t0; _.uiRepository = t1; _.staticRepository = t2; _.companyRepositories = t3; }, _createDeleteState__closure: function _createDeleteState__closure() { }, _createViewMainScreen_closure: function _createViewMainScreen_closure() { }, _createViewMainScreen__closure: function _createViewMainScreen__closure() { }, expenseUIReducer: function(state, action) { var t1; state.toString; t1 = new R.ExpenseUIStateBuilder(); t1._expense_state$_$v = state; new K.expenseUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing2: function(expense, action) { var _null = null; return M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); }, _updateEditing3: function(expense, action) { return action.get$expense(); }, _viewExpenseList0: function(expenseListState, action) { return expenseListState.rebuild$1(new K._viewExpenseList_closure()); }, _filterExpensesByCustom1: function(expenseListState, action) { var t1 = expenseListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByCustom1_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByCustom1_closure0(action)); }, _filterExpensesByCustom2: function(expenseListState, action) { var t1 = expenseListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByCustom2_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByCustom2_closure0(action)); }, _filterExpensesByCustom3: function(expenseListState, action) { var t1 = expenseListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByCustom3_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByCustom3_closure0(action)); }, _filterExpensesByCustom4: function(expenseListState, action) { var t1 = expenseListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByCustom4_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByCustom4_closure0(action)); }, _filterExpensesByState: function(expenseListState, action) { var t1 = expenseListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByState_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByState_closure0(action)); }, _filterExpensesByStatus: function(expenseListState, action) { var t1 = expenseListState.statusFilters, t2 = action.status; if (J.contains$1$asx(t1._list, t2)) return expenseListState.rebuild$1(new K._filterExpensesByStatus_closure(action)); else return expenseListState.rebuild$1(new K._filterExpensesByStatus_closure0(action)); }, _filterExpenses: function(expenseListState, action) { return expenseListState.rebuild$1(new K._filterExpenses_closure(action, expenseListState)); }, _sortExpenses: function(expenseListState, action) { return expenseListState.rebuild$1(new K._sortExpenses_closure(action)); }, _startListMultiselect4: function(expenseListState, action) { return expenseListState.rebuild$1(new K._startListMultiselect_closure4()); }, _addToListMultiselect4: function(expenseListState, action) { return expenseListState.rebuild$1(new K._addToListMultiselect_closure4(action)); }, _removeFromListMultiselect4: function(expenseListState, action) { return expenseListState.rebuild$1(new K._removeFromListMultiselect_closure4(action)); }, _clearListMultiselect4: function(expenseListState, action) { return expenseListState.rebuild$1(new K._clearListMultiselect_closure4()); }, _archiveExpenseSuccess: function(expenseState, action) { return expenseState.rebuild$1(new K._archiveExpenseSuccess_closure(action)); }, _deleteExpenseSuccess: function(expenseState, action) { return expenseState.rebuild$1(new K._deleteExpenseSuccess_closure(action)); }, _restoreExpenseSuccess: function(expenseState, action) { return expenseState.rebuild$1(new K._restoreExpenseSuccess_closure(action)); }, _addExpense: function(expenseState, action) { return expenseState.rebuild$1(new K._addExpense_closure(action)); }, _updateExpense: function(expenseState, action) { return expenseState.rebuild$1(new K._updateExpense_closure(action)); }, _setLoadedExpense: function(expenseState, action) { return expenseState.rebuild$1(new K._setLoadedExpense_closure(action)); }, _setLoadedExpenses: function(expenseState, action) { return expenseState.loadExpenses$1(action.expenses); }, _setLoadedCompany3: function(expenseState, action) { return expenseState.loadExpenses$1(action.userCompany.company.expenses); }, expenseUIReducer_closure: function expenseUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure39: function forceSelectedReducer_closure39() { }, forceSelectedReducer_closure40: function forceSelectedReducer_closure40() { }, forceSelectedReducer_closure41: function forceSelectedReducer_closure41() { }, forceSelectedReducer_closure42: function forceSelectedReducer_closure42() { }, forceSelectedReducer_closure43: function forceSelectedReducer_closure43() { }, forceSelectedReducer_closure44: function forceSelectedReducer_closure44() { }, forceSelectedReducer_closure45: function forceSelectedReducer_closure45() { }, forceSelectedReducer_closure46: function forceSelectedReducer_closure46() { }, tabIndexReducer_closure9: function tabIndexReducer_closure9() { }, tabIndexReducer_closure10: function tabIndexReducer_closure10() { }, selectedIdReducer_closure79: function selectedIdReducer_closure79() { }, selectedIdReducer_closure80: function selectedIdReducer_closure80() { }, selectedIdReducer_closure81: function selectedIdReducer_closure81() { }, selectedIdReducer_closure82: function selectedIdReducer_closure82() { }, selectedIdReducer_closure83: function selectedIdReducer_closure83() { }, selectedIdReducer_closure84: function selectedIdReducer_closure84() { }, selectedIdReducer_closure85: function selectedIdReducer_closure85() { }, selectedIdReducer_closure86: function selectedIdReducer_closure86() { }, selectedIdReducer_closure87: function selectedIdReducer_closure87() { }, selectedIdReducer_closure88: function selectedIdReducer_closure88() { }, selectedIdReducer_closure89: function selectedIdReducer_closure89() { }, selectedIdReducer_closure90: function selectedIdReducer_closure90() { }, selectedIdReducer_closure91: function selectedIdReducer_closure91() { }, selectedIdReducer_closure92: function selectedIdReducer_closure92() { }, selectedIdReducer_closure93: function selectedIdReducer_closure93() { }, editingReducer_closure26: function editingReducer_closure26() { }, editingReducer_closure27: function editingReducer_closure27() { }, editingReducer_closure28: function editingReducer_closure28() { }, editingReducer_closure29: function editingReducer_closure29() { }, editingReducer__closure10: function editingReducer__closure10() { }, _viewExpenseList_closure: function _viewExpenseList_closure() { }, _filterExpensesByCustom1_closure: function _filterExpensesByCustom1_closure(t0) { this.action = t0; }, _filterExpensesByCustom1_closure0: function _filterExpensesByCustom1_closure0(t0) { this.action = t0; }, _filterExpensesByCustom2_closure: function _filterExpensesByCustom2_closure(t0) { this.action = t0; }, _filterExpensesByCustom2_closure0: function _filterExpensesByCustom2_closure0(t0) { this.action = t0; }, _filterExpensesByCustom3_closure: function _filterExpensesByCustom3_closure(t0) { this.action = t0; }, _filterExpensesByCustom3_closure0: function _filterExpensesByCustom3_closure0(t0) { this.action = t0; }, _filterExpensesByCustom4_closure: function _filterExpensesByCustom4_closure(t0) { this.action = t0; }, _filterExpensesByCustom4_closure0: function _filterExpensesByCustom4_closure0(t0) { this.action = t0; }, _filterExpensesByState_closure: function _filterExpensesByState_closure(t0) { this.action = t0; }, _filterExpensesByState_closure0: function _filterExpensesByState_closure0(t0) { this.action = t0; }, _filterExpensesByStatus_closure: function _filterExpensesByStatus_closure(t0) { this.action = t0; }, _filterExpensesByStatus_closure0: function _filterExpensesByStatus_closure0(t0) { this.action = t0; }, _filterExpenses_closure: function _filterExpenses_closure(t0, t1) { this.action = t0; this.expenseListState = t1; }, _sortExpenses_closure: function _sortExpenses_closure(t0) { this.action = t0; }, _startListMultiselect_closure4: function _startListMultiselect_closure4() { }, _addToListMultiselect_closure4: function _addToListMultiselect_closure4(t0) { this.action = t0; }, _removeFromListMultiselect_closure4: function _removeFromListMultiselect_closure4(t0) { this.action = t0; }, _clearListMultiselect_closure4: function _clearListMultiselect_closure4() { }, _archiveExpenseSuccess_closure: function _archiveExpenseSuccess_closure(t0) { this.action = t0; }, _deleteExpenseSuccess_closure: function _deleteExpenseSuccess_closure(t0) { this.action = t0; }, _restoreExpenseSuccess_closure: function _restoreExpenseSuccess_closure(t0) { this.action = t0; }, _addExpense_closure: function _addExpense_closure(t0) { this.action = t0; }, _updateExpense_closure: function _updateExpense_closure(t0) { this.action = t0; }, _setLoadedExpense_closure: function _setLoadedExpense_closure(t0) { this.action = t0; }, groupUIReducer: function(state, action) { var t1; state.toString; t1 = new E.GroupUIStateBuilder(); t1._group_state$_$v = state; new K.groupUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing4: function(group, action) { return Q.GroupEntity_GroupEntity(null, null); }, _updateEditing5: function(group, action) { return action.get$group(); }, _viewGroupList0: function(groupListState, action) { return groupListState.rebuild$1(new K._viewGroupList_closure()); }, _filterGroupsByState: function(groupListState, action) { var t1 = groupListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return groupListState.rebuild$1(new K._filterGroupsByState_closure(action)); else return groupListState.rebuild$1(new K._filterGroupsByState_closure0(action)); }, _filterGroups: function(groupListState, action) { return groupListState.rebuild$1(new K._filterGroups_closure(action, groupListState)); }, _sortGroups: function(groupListState, action) { return groupListState.rebuild$1(new K._sortGroups_closure(action)); }, _startListMultiselect6: function(groupListState, action) { return groupListState.rebuild$1(new K._startListMultiselect_closure6()); }, _addToListMultiselect6: function(groupListState, action) { return groupListState.rebuild$1(new K._addToListMultiselect_closure6(action)); }, _removeFromListMultiselect6: function(groupListState, action) { return groupListState.rebuild$1(new K._removeFromListMultiselect_closure6(action)); }, _clearListMultiselect6: function(groupListState, action) { return groupListState.rebuild$1(new K._clearListMultiselect_closure6()); }, _archiveGroupSuccess: function(groupState, action) { return groupState.rebuild$1(new K._archiveGroupSuccess_closure(action)); }, _deleteGroupSuccess: function(groupState, action) { return groupState.rebuild$1(new K._deleteGroupSuccess_closure(action)); }, _restoreGroupSuccess: function(groupState, action) { return groupState.rebuild$1(new K._restoreGroupSuccess_closure(action)); }, _addGroup: function(groupState, action) { return groupState.rebuild$1(new K._addGroup_closure(action)); }, _updateGroup: function(groupState, action) { return groupState.rebuild$1(new K._updateGroup_closure(action)); }, _setLoadedGroup: function(groupState, action) { return groupState.rebuild$1(new K._setLoadedGroup_closure(action)); }, _setLoadedGroups: function(groupState, action) { var state = groupState.rebuild$1(new K._setLoadedGroups_closure(action)); return state.rebuild$1(new K._setLoadedGroups_closure0(state)); }, _setLoadedCompany5: function(groupState, action) { var state = groupState.rebuild$1(new K._setLoadedCompany_closure(action)); return state.rebuild$1(new K._setLoadedCompany_closure0(state)); }, groupUIReducer_closure: function groupUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure55: function forceSelectedReducer_closure55() { }, forceSelectedReducer_closure56: function forceSelectedReducer_closure56() { }, forceSelectedReducer_closure57: function forceSelectedReducer_closure57() { }, forceSelectedReducer_closure58: function forceSelectedReducer_closure58() { }, selectedIdReducer_closure107: function selectedIdReducer_closure107() { }, selectedIdReducer_closure108: function selectedIdReducer_closure108() { }, selectedIdReducer_closure109: function selectedIdReducer_closure109() { }, selectedIdReducer_closure110: function selectedIdReducer_closure110() { }, selectedIdReducer_closure111: function selectedIdReducer_closure111() { }, selectedIdReducer_closure112: function selectedIdReducer_closure112() { }, selectedIdReducer_closure113: function selectedIdReducer_closure113() { }, selectedIdReducer_closure114: function selectedIdReducer_closure114() { }, selectedIdReducer_closure115: function selectedIdReducer_closure115() { }, selectedIdReducer_closure116: function selectedIdReducer_closure116() { }, selectedIdReducer_closure117: function selectedIdReducer_closure117() { }, selectedIdReducer_closure118: function selectedIdReducer_closure118() { }, editingReducer_closure31: function editingReducer_closure31() { }, editingReducer_closure32: function editingReducer_closure32() { }, editingReducer_closure33: function editingReducer_closure33() { }, editingReducer_closure34: function editingReducer_closure34() { }, editingReducer__closure12: function editingReducer__closure12() { }, _viewGroupList_closure: function _viewGroupList_closure() { }, _filterGroupsByState_closure: function _filterGroupsByState_closure(t0) { this.action = t0; }, _filterGroupsByState_closure0: function _filterGroupsByState_closure0(t0) { this.action = t0; }, _filterGroups_closure: function _filterGroups_closure(t0, t1) { this.action = t0; this.groupListState = t1; }, _sortGroups_closure: function _sortGroups_closure(t0) { this.action = t0; }, _startListMultiselect_closure6: function _startListMultiselect_closure6() { }, _addToListMultiselect_closure6: function _addToListMultiselect_closure6(t0) { this.action = t0; }, _removeFromListMultiselect_closure6: function _removeFromListMultiselect_closure6(t0) { this.action = t0; }, _clearListMultiselect_closure6: function _clearListMultiselect_closure6() { }, _archiveGroupSuccess_closure: function _archiveGroupSuccess_closure(t0) { this.action = t0; }, _deleteGroupSuccess_closure: function _deleteGroupSuccess_closure(t0) { this.action = t0; }, _restoreGroupSuccess_closure: function _restoreGroupSuccess_closure(t0) { this.action = t0; }, _addGroup_closure: function _addGroup_closure(t0) { this.action = t0; }, _updateGroup_closure: function _updateGroup_closure(t0) { this.action = t0; }, _setLoadedGroup_closure: function _setLoadedGroup_closure(t0) { this.action = t0; }, _setLoadedGroups_closure: function _setLoadedGroups_closure(t0) { this.action = t0; }, _setLoadedGroups__closure: function _setLoadedGroups__closure() { }, _setLoadedGroups__closure0: function _setLoadedGroups__closure0() { }, _setLoadedGroups_closure0: function _setLoadedGroups_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure: function _setLoadedCompany_closure(t0) { this.action = t0; }, _setLoadedCompany__closure: function _setLoadedCompany__closure() { }, _setLoadedCompany__closure0: function _setLoadedCompany__closure0() { }, _setLoadedCompany_closure0: function _setLoadedCompany_closure0(t0) { this.state = t0; }, _$RecurringExpenseState$_: function(list, map) { var _s21_ = "RecurringExpenseState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "list")); return new K._$RecurringExpenseState(map, list); }, _$RecurringExpenseUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("RecurringExpenseUIState", "listUIState")); return new K._$RecurringExpenseUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, RecurringExpenseState: function RecurringExpenseState() { }, RecurringExpenseState_loadRecurringExpenses_closure0: function RecurringExpenseState_loadRecurringExpenses_closure0() { }, RecurringExpenseState_loadRecurringExpenses_closure1: function RecurringExpenseState_loadRecurringExpenses_closure1() { }, RecurringExpenseState_loadRecurringExpenses_closure: function RecurringExpenseState_loadRecurringExpenses_closure(t0, t1) { this.$this = t0; this.map = t1; }, RecurringExpenseUIState: function RecurringExpenseUIState() { }, _$RecurringExpenseStateSerializer: function _$RecurringExpenseStateSerializer() { }, _$RecurringExpenseUIStateSerializer: function _$RecurringExpenseUIStateSerializer() { }, _$RecurringExpenseState: function _$RecurringExpenseState(t0, t1) { this.map = t0; this.list = t1; this._recurring_expense_state$__hashCode = null; }, RecurringExpenseStateBuilder: function RecurringExpenseStateBuilder() { this._recurring_expense_state$_list = this._recurring_expense_state$_map = this._recurring_expense_state$_$v = null; }, _$RecurringExpenseUIState: function _$RecurringExpenseUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._recurring_expense_state$__hashCode = null; }, RecurringExpenseUIStateBuilder: function RecurringExpenseUIStateBuilder() { var _ = this; _._recurring_expense_state$_cancelCompleter = _._recurring_expense_state$_saveCompleter = _._recurring_expense_state$_tabIndex = _._recurring_expense_state$_forceSelected = _._recurring_expense_state$_selectedId = _._recurring_expense_state$_listUIState = _._recurring_expense_state$_editing = _._recurring_expense_state$_$v = null; }, _RecurringExpenseUIState_Object_EntityUIState: function _RecurringExpenseUIState_Object_EntityUIState() { }, ViewReports: function ViewReports() { }, UpdateReportSettings: function UpdateReportSettings(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.report = t0; _.filters = t1; _.group = t2; _.selectedGroup = t3; _.chart = t4; _.subgroup = t5; _.sortColumn = t6; _.sortTotalsIndex = t7; _.customStartDate = t8; _.customEndDate = t9; }, vendorUIReducer: function(state, action) { var t1; state.toString; t1 = new Y.VendorUIStateBuilder(); t1._vendor_state$_$v = state; new K.vendorUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, editVendorContact: function(contact, action) { var t1 = action.get$contact(); return t1 == null ? B.VendorContactEntity_VendorContactEntity() : t1; }, _clearEditing19: function(vendor, action) { return B.VendorEntity_VendorEntity(null, null, null); }, _updateEditing20: function(vendor, action) { return J.get$vendor$x(action); }, _addContact: function(vendor, action) { return vendor.rebuild$1(new K._addContact_closure(action)); }, _removeContact: function(vendor, action) { return vendor.rebuild$1(new K._removeContact_closure(action)); }, _updateContact: function(vendor, action) { return vendor.rebuild$1(new K._updateContact_closure(action)); }, _viewVendorList0: function(vendorListState, action) { return vendorListState.rebuild$1(new K._viewVendorList_closure()); }, _filterVendorsByCustom1: function(vendorListState, action) { var t1 = vendorListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return vendorListState.rebuild$1(new K._filterVendorsByCustom1_closure(action)); else return vendorListState.rebuild$1(new K._filterVendorsByCustom1_closure0(action)); }, _filterVendorsByCustom2: function(vendorListState, action) { var t1 = vendorListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return vendorListState.rebuild$1(new K._filterVendorsByCustom2_closure(action)); else return vendorListState.rebuild$1(new K._filterVendorsByCustom2_closure0(action)); }, _filterVendorsByCustom3: function(vendorListState, action) { var t1 = vendorListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return vendorListState.rebuild$1(new K._filterVendorsByCustom3_closure(action)); else return vendorListState.rebuild$1(new K._filterVendorsByCustom3_closure0(action)); }, _filterVendorsByCustom4: function(vendorListState, action) { var t1 = vendorListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return vendorListState.rebuild$1(new K._filterVendorsByCustom4_closure(action)); else return vendorListState.rebuild$1(new K._filterVendorsByCustom4_closure0(action)); }, _filterVendorsByState: function(vendorListState, action) { var t1 = vendorListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return vendorListState.rebuild$1(new K._filterVendorsByState_closure(action)); else return vendorListState.rebuild$1(new K._filterVendorsByState_closure0(action)); }, _filterVendors: function(vendorListState, action) { return vendorListState.rebuild$1(new K._filterVendors_closure(action, vendorListState)); }, _sortVendors: function(vendorListState, action) { return vendorListState.rebuild$1(new K._sortVendors_closure(action)); }, _startListMultiselect21: function(vendorListState, action) { return vendorListState.rebuild$1(new K._startListMultiselect_closure3()); }, _addToListMultiselect21: function(vendorListState, action) { return vendorListState.rebuild$1(new K._addToListMultiselect_closure3(action)); }, _removeFromListMultiselect21: function(vendorListState, action) { return vendorListState.rebuild$1(new K._removeFromListMultiselect_closure3(action)); }, _clearListMultiselect21: function(vendorListState, action) { return vendorListState.rebuild$1(new K._clearListMultiselect_closure3()); }, _archiveVendorSuccess: function(vendorState, action) { return vendorState.rebuild$1(new K._archiveVendorSuccess_closure(action)); }, _deleteVendorSuccess: function(vendorState, action) { return vendorState.rebuild$1(new K._deleteVendorSuccess_closure(action)); }, _restoreVendorSuccess: function(vendorState, action) { return vendorState.rebuild$1(new K._restoreVendorSuccess_closure(action)); }, _addVendor: function(vendorState, action) { return vendorState.rebuild$1(new K._addVendor_closure(action)); }, _updateVendor: function(vendorState, action) { return vendorState.rebuild$1(new K._updateVendor_closure(action)); }, _setLoadedVendor: function(vendorState, action) { return vendorState.rebuild$1(new K._setLoadedVendor_closure(action)); }, _setLoadedVendors: function(vendorState, action) { return vendorState.loadVendors$1(action.vendors); }, _setLoadedCompany20: function(vendorState, action) { return vendorState.loadVendors$1(action.userCompany.company.vendors); }, vendorUIReducer_closure: function vendorUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure31: function forceSelectedReducer_closure31() { }, forceSelectedReducer_closure32: function forceSelectedReducer_closure32() { }, forceSelectedReducer_closure33: function forceSelectedReducer_closure33() { }, forceSelectedReducer_closure34: function forceSelectedReducer_closure34() { }, forceSelectedReducer_closure35: function forceSelectedReducer_closure35() { }, forceSelectedReducer_closure36: function forceSelectedReducer_closure36() { }, forceSelectedReducer_closure37: function forceSelectedReducer_closure37() { }, forceSelectedReducer_closure38: function forceSelectedReducer_closure38() { }, tabIndexReducer_closure7: function tabIndexReducer_closure7() { }, tabIndexReducer_closure8: function tabIndexReducer_closure8() { }, saveCompleterReducer_closure0: function saveCompleterReducer_closure0() { }, cancelCompleterReducer_closure0: function cancelCompleterReducer_closure0() { }, selectedIdReducer_closure64: function selectedIdReducer_closure64() { }, selectedIdReducer_closure65: function selectedIdReducer_closure65() { }, selectedIdReducer_closure66: function selectedIdReducer_closure66() { }, selectedIdReducer_closure67: function selectedIdReducer_closure67() { }, selectedIdReducer_closure68: function selectedIdReducer_closure68() { }, selectedIdReducer_closure69: function selectedIdReducer_closure69() { }, selectedIdReducer_closure70: function selectedIdReducer_closure70() { }, selectedIdReducer_closure71: function selectedIdReducer_closure71() { }, selectedIdReducer_closure72: function selectedIdReducer_closure72() { }, selectedIdReducer_closure73: function selectedIdReducer_closure73() { }, selectedIdReducer_closure74: function selectedIdReducer_closure74() { }, selectedIdReducer_closure75: function selectedIdReducer_closure75() { }, selectedIdReducer_closure76: function selectedIdReducer_closure76() { }, selectedIdReducer_closure77: function selectedIdReducer_closure77() { }, selectedIdReducer_closure78: function selectedIdReducer_closure78() { }, editingReducer_closure22: function editingReducer_closure22() { }, editingReducer_closure23: function editingReducer_closure23() { }, editingReducer_closure24: function editingReducer_closure24() { }, editingReducer_closure25: function editingReducer_closure25() { }, editingReducer__closure9: function editingReducer__closure9() { }, _addContact_closure: function _addContact_closure(t0) { this.action = t0; }, _removeContact_closure: function _removeContact_closure(t0) { this.action = t0; }, _updateContact_closure: function _updateContact_closure(t0) { this.action = t0; }, _viewVendorList_closure: function _viewVendorList_closure() { }, _filterVendorsByCustom1_closure: function _filterVendorsByCustom1_closure(t0) { this.action = t0; }, _filterVendorsByCustom1_closure0: function _filterVendorsByCustom1_closure0(t0) { this.action = t0; }, _filterVendorsByCustom2_closure: function _filterVendorsByCustom2_closure(t0) { this.action = t0; }, _filterVendorsByCustom2_closure0: function _filterVendorsByCustom2_closure0(t0) { this.action = t0; }, _filterVendorsByCustom3_closure: function _filterVendorsByCustom3_closure(t0) { this.action = t0; }, _filterVendorsByCustom3_closure0: function _filterVendorsByCustom3_closure0(t0) { this.action = t0; }, _filterVendorsByCustom4_closure: function _filterVendorsByCustom4_closure(t0) { this.action = t0; }, _filterVendorsByCustom4_closure0: function _filterVendorsByCustom4_closure0(t0) { this.action = t0; }, _filterVendorsByState_closure: function _filterVendorsByState_closure(t0) { this.action = t0; }, _filterVendorsByState_closure0: function _filterVendorsByState_closure0(t0) { this.action = t0; }, _filterVendors_closure: function _filterVendors_closure(t0, t1) { this.action = t0; this.vendorListState = t1; }, _sortVendors_closure: function _sortVendors_closure(t0) { this.action = t0; }, _startListMultiselect_closure3: function _startListMultiselect_closure3() { }, _addToListMultiselect_closure3: function _addToListMultiselect_closure3(t0) { this.action = t0; }, _removeFromListMultiselect_closure3: function _removeFromListMultiselect_closure3(t0) { this.action = t0; }, _clearListMultiselect_closure3: function _clearListMultiselect_closure3() { }, _archiveVendorSuccess_closure: function _archiveVendorSuccess_closure(t0) { this.action = t0; }, _deleteVendorSuccess_closure: function _deleteVendorSuccess_closure(t0) { this.action = t0; }, _restoreVendorSuccess_closure: function _restoreVendorSuccess_closure(t0) { this.action = t0; }, _addVendor_closure: function _addVendor_closure(t0) { this.action = t0; }, _updateVendor_closure: function _updateVendor_closure(t0) { this.action = t0; }, _setLoadedVendor_closure: function _setLoadedVendor_closure(t0) { this.action = t0; }, DesktopSessionTimeout: function DesktopSessionTimeout(t0, t1) { this.child = t0; this.key = t1; }, _DesktopSessionTimeoutState: function _DesktopSessionTimeoutState(t0) { var _ = this; _._desktop_session_timeout$_timer = null; _._isWarned = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DesktopSessionTimeoutState_initState_closure: function _DesktopSessionTimeoutState_initState_closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_initState__closure: function _DesktopSessionTimeoutState_initState__closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_build_closure: function _DesktopSessionTimeoutState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _DesktopSessionTimeoutState_build__closure: function _DesktopSessionTimeoutState_build__closure(t0) { this.$this = t0; }, _DesktopSessionTimeoutState_build___closure: function _DesktopSessionTimeoutState_build___closure(t0) { this.$this = t0; }, EditScaffold$: function(actions, appBarBottom, body, bottomNavigationBar, entity, floatingActionButton, isFullscreen, onActionPressed, onCancelPressed, onSavePressed, saveLabel, title) { return new K.EditScaffold(entity, title, onSavePressed, onCancelPressed, onActionPressed, actions, appBarBottom, floatingActionButton, body, bottomNavigationBar, saveLabel, isFullscreen, null); }, EditScaffold: function EditScaffold(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.entity = t0; _.title = t1; _.onSavePressed = t2; _.onCancelPressed = t3; _.onActionPressed = t4; _.actions = t5; _.appBarBottom = t6; _.floatingActionButton = t7; _.body = t8; _.bottomNavigationBar = t9; _.saveLabel = t10; _.isFullscreen = t11; _.key = t12; }, EditScaffold_build_closure4: function EditScaffold_build_closure4() { }, EditScaffold_build_closure: function EditScaffold_build_closure(t0) { this.state = t0; }, EditScaffold_build_closure1: function EditScaffold_build_closure1(t0) { this.$this = t0; }, EditScaffold_build_closure0: function EditScaffold_build_closure0(t0, t1) { this.$this = t0; this.store = t1; }, EditScaffold_build_closure2: function EditScaffold_build_closure2(t0) { this.$this = t0; }, EditScaffold_build__closure: function EditScaffold_build__closure(t0) { this.context = t0; }, EditScaffold_build_closure3: function EditScaffold_build_closure3(t0, t1) { this.$this = t0; this.context = t1; }, BoolDropdownButton$: function(disabledLabel, enabledLabel, helpLabel, iconData, label, minWidth, onChanged, showBlank, value) { return new K.BoolDropdownButton(label, helpLabel, value, onChanged, iconData, showBlank, enabledLabel, disabledLabel, minWidth, null); }, BoolDropdownButton: function BoolDropdownButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.label = t0; _.helpLabel = t1; _.value = t2; _.onChanged = t3; _.iconData = t4; _.showBlank = t5; _.enabledLabel = t6; _.disabledLabel = t7; _.minWidth = t8; _.key = t9; }, BoolDropdownButton_build_closure: function BoolDropdownButton_build_closure(t0) { this.$this = t0; }, BoolDropdownButton_build_closure0: function BoolDropdownButton_build_closure0(t0) { this.$this = t0; }, BoolDropdownButton_build_closure2: function BoolDropdownButton_build_closure2(t0) { this.$this = t0; }, BoolDropdownButton_build_closure1: function BoolDropdownButton_build_closure1() { }, BoolDropdownButton_build_closure4: function BoolDropdownButton_build_closure4(t0) { this.$this = t0; }, BoolDropdownButton_build_closure3: function BoolDropdownButton_build_closure3() { }, DatePicker$: function(autoValidate, firstDate, key, labelText, message, onSelected, selectedDate, validator) { return new K.DatePicker(labelText, selectedDate, onSelected, validator, message, firstDate, key); }, DatePicker: function DatePicker(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.labelText = t0; _.selectedDate = t1; _.onSelected = t2; _.validator = t3; _.message = t4; _.firstDate = t5; _.key = t6; }, _DatePickerState: function _DatePickerState(t0, t1, t2) { var _ = this; _._textController = t0; _._date_picker$_focusNode = t1; _._widget = _._pendingValue = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DatePickerState__onFoucsChanged_closure: function _DatePickerState__onFoucsChanged_closure(t0) { this.$this = t0; }, _DatePickerState_build_closure: function _DatePickerState_build_closure(t0) { this.$this = t0; }, _DatePickerState_build_closure0: function _DatePickerState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _DatePickerState_build__closure: function _DatePickerState_build__closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.context = t2; }, TokenMeta: function TokenMeta(t0, t1) { this.meta = t0; this.key = t1; }, AppDataTableSource: function AppDataTableSource() { }, VariablesHelp: function VariablesHelp(t0, t1) { this.showInvoiceAsQuote = t0; this.key = t1; }, _VariablesHelpState: function _VariablesHelpState(t0, t1) { var _ = this; _._variables$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _VariablesHelpState_build_closure: function _VariablesHelpState_build_closure() { }, _VariablesHelpState_build_closure0: function _VariablesHelpState_build_closure0() { }, _VariablesHelpState_build_closure1: function _VariablesHelpState_build_closure1() { }, _VariableGrid: function _VariableGrid(t0, t1) { this.fields = t0; this.key = t1; }, _VariableGrid_build_closure: function _VariableGrid_build_closure() { }, _VariableGrid_build_closure0: function _VariableGrid_build_closure0(t0) { this.$this = t0; }, _VariableGrid_build__closure: function _VariableGrid_build__closure(t0) { this.context = t0; }, _VariableGrid_build___closure: function _VariableGrid_build___closure(t0, t1) { this.field = t0; this.context = t1; }, __VariablesHelpState_State_SingleTickerProviderStateMixin: function __VariablesHelpState_State_SingleTickerProviderStateMixin() { }, ClientViewSystemLogs: function ClientViewSystemLogs(t0, t1) { this.viewModel = t0; this.key = t1; }, _ClientViewSystemLogsState: function _ClientViewSystemLogsState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, CreditListItem: function CreditListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.credit = t1; _.client = t2; _.filter = t3; _.isChecked = t4; _.key = t5; }, CreditListItem_build_closure: function CreditListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.state = t4; _.localization = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, CreditListItem_build__closure2: function CreditListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, CreditListItem_build__closure1: function CreditListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, CreditListItem_build__closure: function CreditListItem_build__closure(t0) { this.$this = t0; }, CreditListItem_build__closure0: function CreditListItem_build__closure0(t0) { this.$this = t0; }, CreditListItem_build__closure5: function CreditListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, CreditListItem_build__closure4: function CreditListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, CreditListItem_build__closure3: function CreditListItem_build__closure3(t0) { this.$this = t0; }, CreditPresenter: function CreditPresenter() { this.context = this.entity = null; }, DesignView: function DesignView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _DesignViewState: function _DesignViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _DesignViewState_build_closure: function _DesignViewState_build_closure(t0) { this.state = t0; }, _DesignViewState_build_closure0: function _DesignViewState_build_closure0(t0) { this.design = t0; }, _DesignViewState_build_closure1: function _DesignViewState_build_closure1(t0) { this.state = t0; }, _DesignViewState_build_closure2: function _DesignViewState_build_closure2(t0) { this.design = t0; }, _DesignViewState_build_closure3: function _DesignViewState_build_closure3(t0) { this.state = t0; }, _DesignViewState_build_closure4: function _DesignViewState_build_closure4(t0) { this.design = t0; }, _DesignViewState_build_closure5: function _DesignViewState_build_closure5(t0) { this.state = t0; }, _DesignViewState_build_closure6: function _DesignViewState_build_closure6(t0) { this.design = t0; }, _DesignViewState_build_closure7: function _DesignViewState_build_closure7(t0) { this.viewModel = t0; }, GroupSettingsScreen: function GroupSettingsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, GroupSettingsScreen_build_closure5: function GroupSettingsScreen_build_closure5(t0) { this.store = t0; }, GroupSettingsScreen_build_closure3: function GroupSettingsScreen_build_closure3(t0) { this.store = t0; }, GroupSettingsScreen_build_closure4: function GroupSettingsScreen_build_closure4(t0) { this.store = t0; }, GroupSettingsScreen_build_closure0: function GroupSettingsScreen_build_closure0(t0) { this.store = t0; }, GroupSettingsScreen_build_closure1: function GroupSettingsScreen_build_closure1(t0) { this.store = t0; }, GroupSettingsScreen_build_closure: function GroupSettingsScreen_build_closure(t0) { this.store = t0; }, GroupSettingsScreen_build_closure2: function GroupSettingsScreen_build_closure2(t0) { this.context = t0; }, InvoiceEditFooter: function InvoiceEditFooter(t0, t1) { this.invoice = t0; this.key = t1; }, InvoiceEditFooter_build_closure: function InvoiceEditFooter_build_closure(t0) { this.store = t0; }, PaymentScreen: function PaymentScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PaymentScreen_build_closure9: function PaymentScreen_build_closure9(t0) { this.store = t0; }, PaymentScreen_build_closure7: function PaymentScreen_build_closure7(t0) { this.store = t0; }, PaymentScreen_build_closure8: function PaymentScreen_build_closure8(t0) { this.store = t0; }, PaymentScreen_build_closure4: function PaymentScreen_build_closure4(t0) { this.store = t0; }, PaymentScreen_build_closure0: function PaymentScreen_build_closure0(t0) { this.store = t0; }, PaymentScreen_build_closure1: function PaymentScreen_build_closure1(t0) { this.store = t0; }, PaymentScreen_build_closure2: function PaymentScreen_build_closure2(t0) { this.store = t0; }, PaymentScreen_build_closure3: function PaymentScreen_build_closure3(t0) { this.store = t0; }, PaymentScreen_build_closure5: function PaymentScreen_build_closure5(t0) { this.store = t0; }, PaymentScreen_build_closure: function PaymentScreen_build_closure(t0) { this.store = t0; }, PaymentScreen_build_closure6: function PaymentScreen_build_closure6(t0) { this.context = t0; }, PaymentTermListItem: function PaymentTermListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.paymentTerm = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, PaymentTermListItem_build_closure1: function PaymentTermListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, PaymentTermListItem_build_closure0: function PaymentTermListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, PaymentTermListItem_build_closure: function PaymentTermListItem_build_closure(t0) { this.$this = t0; }, PaymentTermView: function PaymentTermView(t0, t1) { this.viewModel = t0; this.key = t1; }, _PaymentTermViewState: function _PaymentTermViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _PaymentTermViewState_build_closure: function _PaymentTermViewState_build_closure(t0) { this.viewModel = t0; }, ProductScreen: function ProductScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ProductScreen_build_closure9: function ProductScreen_build_closure9(t0) { this.store = t0; }, ProductScreen_build_closure7: function ProductScreen_build_closure7(t0) { this.store = t0; }, ProductScreen_build_closure8: function ProductScreen_build_closure8(t0) { this.store = t0; }, ProductScreen_build_closure4: function ProductScreen_build_closure4(t0) { this.store = t0; }, ProductScreen_build_closure0: function ProductScreen_build_closure0(t0) { this.store = t0; }, ProductScreen_build_closure1: function ProductScreen_build_closure1(t0) { this.store = t0; }, ProductScreen_build_closure2: function ProductScreen_build_closure2(t0) { this.store = t0; }, ProductScreen_build_closure3: function ProductScreen_build_closure3(t0) { this.store = t0; }, ProductScreen_build_closure5: function ProductScreen_build_closure5(t0) { this.store = t0; }, ProductScreen_build_closure: function ProductScreen_build_closure(t0) { this.store = t0; }, ProductScreen_build_closure6: function ProductScreen_build_closure6(t0) { this.context = t0; }, ProjectEdit: function ProjectEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProjectEditState: function _ProjectEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _._project_edit$_debouncer = t0; _._project_edit$_autoValidate = false; _._project_edit$_numberController = t1; _._project_edit$_nameController = t2; _._dueDateController = t3; _._hoursController = t4; _._project_edit$_taskRateController = t5; _._project_edit$_privateNotesController = t6; _._project_edit$_publicNotesController = t7; _._project_edit$_custom1Controller = t8; _._project_edit$_custom2Controller = t9; _._project_edit$_custom3Controller = t10; _._project_edit$_custom4Controller = t11; _._project_edit$_controllers = t12; _._widget = null; _._debugLifecycleState = t13; _._framework$_element = null; }, _ProjectEditState_didChangeDependencies_closure: function _ProjectEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ProjectEditState_didChangeDependencies_closure0: function _ProjectEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ProjectEditState_dispose_closure: function _ProjectEditState_dispose_closure(t0) { this.$this = t0; }, _ProjectEditState__onChanged_closure: function _ProjectEditState__onChanged_closure(t0) { this.$this = t0; }, _ProjectEditState__onChanged_closure0: function _ProjectEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.project = t1; }, _ProjectEditState_build_closure0: function _ProjectEditState_build_closure0(t0) { this.viewModel = t0; }, _ProjectEditState_build_closure1: function _ProjectEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ProjectEditState_build__closure: function _ProjectEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ProjectEditState_build_closure: function _ProjectEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.project = t1; _.localization = t2; _.viewModel = t3; _.state = t4; }, _ProjectEditState_build__closure0: function _ProjectEditState_build__closure0(t0) { this.localization = t0; }, _ProjectEditState_build__closure3: function _ProjectEditState_build__closure3(t0) { this.localization = t0; }, _ProjectEditState_build__closure2: function _ProjectEditState_build__closure2(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure1: function _ProjectEditState_build___closure1(t0) { this.client = t0; }, _ProjectEditState_build__closure1: function _ProjectEditState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProjectEditState_build__closure5: function _ProjectEditState_build__closure5(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure: function _ProjectEditState_build___closure(t0) { this.userId = t0; }, _ProjectEditState_build__closure4: function _ProjectEditState_build__closure4(t0, t1) { this.viewModel = t0; this.project = t1; }, _ProjectEditState_build___closure0: function _ProjectEditState_build___closure0(t0) { this.date = t0; }, paymentReport: function(userCompany, reportsUIState, paymentMap, clientMap, userMap, staticState) { var columns, t4, t5, t6, payment, client, row, t7, t8, value, value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11, value12, value13, t9, value14, t10, t11, skip, t12, value15, t13, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, paymentReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "payment") ? J.$index$asx(reportSettings._map$_map, "payment") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.PaymentReportFields_0, C.PaymentReportFields_1, C.PaymentReportFields_2, C.PaymentReportFields_9, C.PaymentReportFields_8], type$.JSArray_legacy_PaymentReportFields), t1 = paymentReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_PaymentReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new K.paymentReport_closure(), t3).where$1(0, new K.paymentReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(paymentMap.get$keys(paymentMap)), t2 = columns._list, t3 = J.getInterceptor$ax(t2), t4 = type$.JSArray_legacy_ReportElement, t5 = paymentMap._map$_map, t6 = J.getInterceptor$asx(t5); t1.moveNext$0();) { payment = t6.$index(t5, t1.get$current(t1)); if (payment == null) payment = F.PaymentEntity_PaymentEntity(_null, _null, _null); client = J.$index$asx(clientMap._map$_map, payment.clientId); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); if (payment.isDeleted || client.isDeleted) continue; row = H.setRuntimeTypeInfo([], t4); for (t7 = t3.get$iterator(t2), t8 = payment.id, value = payment.amount, value0 = payment.exchangeRate, value1 = value * value0, value2 = payment.customValue4, value3 = payment.customValue3, value4 = payment.customValue2, value5 = payment.customValue1, value6 = payment.date, value7 = payment.transactionReference, value8 = client.shippingAddress2, value9 = client.shippingAddress1, value10 = client.address2, value11 = client.address1, value12 = client.balance, value13 = client.displayName, t9 = payment.typeId, value14 = payment.number, t10 = payment.currencyId, t11 = payment.exchangeCurrencyId, skip = false; t7.moveNext$0();) { t12 = t7.get$current(t7); switch (t12) { case C.PaymentReportFields_0: value15 = value14; break; case C.PaymentReportFields_10: t13 = J.$index$asx(staticState.paymentTypeMap._map$_map, t9); value15 = t13 == null ? _null : t13.name; if (value15 == null) value15 = ""; break; case C.PaymentReportFields_1: value15 = value; break; case C.PaymentReportFields_2: value15 = value13; break; case C.PaymentReportFields_3: value15 = value12; break; case C.PaymentReportFields_4: value15 = value11; break; case C.PaymentReportFields_5: value15 = value10; break; case C.PaymentReportFields_6: value15 = value9; break; case C.PaymentReportFields_7: value15 = value8; break; case C.PaymentReportFields_8: value15 = value7; break; case C.PaymentReportFields_9: value15 = value6; break; case C.PaymentReportFields_11: value15 = value5; break; case C.PaymentReportFields_12: value15 = value4; break; case C.PaymentReportFields_13: value15 = value3; break; case C.PaymentReportFields_14: value15 = value2; break; case C.PaymentReportFields_15: value15 = value0; break; case C.PaymentReportFields_16: value15 = value1; break; default: value15 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t12), _null, reportsUIState, userCompany, value15)) skip = true; t13 = J.getInterceptor$(value15); if (t13.get$runtimeType(value15) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value15, payment.get$entityType(), t8)); else if (t12 === C.PaymentReportFields_16) row.push(new A.ReportNumberValue(value15, _null, t11, _null, payment.get$entityType(), t8)); else if (t13.get$runtimeType(value15) === C.Type_double_K1J || t13.get$runtimeType(value15) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value15, _null, t10, _null, payment.get$entityType(), t8)); else row.push(new A.ReportStringValue(value15, payment.get$entityType(), t8)); } if (!skip) data.push(row); } selectedColumns = t3.map$1$1(t2, new K.paymentReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new K.paymentReport_closure2(paymentReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_PaymentReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_Fb0, new K.paymentReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new K.paymentReport_closure4(), t1), true, t2), data, true); }, PaymentReportFields: function PaymentReportFields(t0) { this._payment_report$_name = t0; }, memoizedPaymentReport_closure: function memoizedPaymentReport_closure() { }, paymentReport_closure: function paymentReport_closure() { }, paymentReport_closure0: function paymentReport_closure0() { }, paymentReport_closure1: function paymentReport_closure1() { }, paymentReport_closure2: function paymentReport_closure2(t0, t1) { this.paymentReportSettings = t0; this.selectedColumns = t1; }, paymentReport_closure3: function paymentReport_closure3() { }, paymentReport_closure4: function paymentReport_closure4() { }, profitAndLossReport: function(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState) { var columns, t4, t5, t6, payment, t7, client, vendor, skip, row, t8, t9, t10, value, t11, t12, expense, value0, value1, t13, t14, _null = null, _s15_ = "profit_and_loss", data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, profitAndLossReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, _s15_) ? J.$index$asx(reportSettings._map$_map, _s15_) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.ProfitAndLossReportFields_12, C.ProfitAndLossReportFields_13, C.ProfitAndLossReportFields_0, C.ProfitAndLossReportFields_6, C.ProfitAndLossReportFields_14], type$.JSArray_legacy_ProfitAndLossReportFields), t1 = profitAndLossReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_ProfitAndLossReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new K.profitAndLossReport_closure(), t3).where$1(0, new K.profitAndLossReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(paymentMap.get$keys(paymentMap)), t2 = columns._list, t3 = J.getInterceptor$ax(t2), t4 = type$.JSArray_legacy_ReportElement, t5 = paymentMap._map$_map, t6 = J.getInterceptor$asx(t5); t1.moveNext$0();) { payment = t6.$index(t5, t1.get$current(t1)); t7 = payment.clientId; client = J.$index$asx(clientMap._map$_map, t7); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t7 = payment.vendorId; vendor = J.$index$asx(vendorMap._map$_map, t7); if (vendor == null) vendor = B.VendorEntity_VendorEntity(_null, _null, _null); skip = payment.isDeleted || client.isDeleted; row = H.setRuntimeTypeInfo([], t4); for (t7 = t3.get$iterator(t2), t8 = payment.id, t9 = payment.currencyId; t7.moveNext$0();) { t10 = t7.get$current(t7); switch (t10) { case C.ProfitAndLossReportFields_12: value = C.EntityType_payment; break; case C.ProfitAndLossReportFields_0: value = client.displayName; break; case C.ProfitAndLossReportFields_1: value = client.address1; break; case C.ProfitAndLossReportFields_2: value = client.address2; break; case C.ProfitAndLossReportFields_3: value = client.city; break; case C.ProfitAndLossReportFields_4: value = client.state; break; case C.ProfitAndLossReportFields_5: t11 = staticState.countryMap; t12 = client.countryId; t12 = J.$index$asx(t11._map$_map, t12); value = t12 == null ? _null : t12.name; if (value == null) value = ""; break; case C.ProfitAndLossReportFields_6: value = vendor.name; break; case C.ProfitAndLossReportFields_7: value = vendor.address1; break; case C.ProfitAndLossReportFields_8: value = vendor.address2; break; case C.ProfitAndLossReportFields_9: value = vendor.city; break; case C.ProfitAndLossReportFields_10: value = vendor.state; break; case C.ProfitAndLossReportFields_11: t11 = staticState.countryMap; t12 = vendor.countryId; t12 = J.$index$asx(t11._map$_map, t12); value = t12 == null ? _null : t12.name; if (value == null) value = ""; break; case C.ProfitAndLossReportFields_13: value = payment.amount; break; case C.ProfitAndLossReportFields_14: value = payment.date; break; case C.ProfitAndLossReportFields_15: value = ""; break; default: value = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t10), _null, reportsUIState, userCompany, value)) skip = true; t10 = J.getInterceptor$(value); if (t10.get$runtimeType(value) === C.Type_EntityType_6qb) { t10 = payment.get$entityType(); row.push(new A.ReportEntityTypeValue(payment.get$entityType(), t10, t8)); } else if (t10.get$runtimeType(value) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value, payment.get$entityType(), t8)); else if (t10.get$runtimeType(value) === C.Type_double_K1J || t10.get$runtimeType(value) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value, _null, t9, _null, payment.get$entityType(), t8)); else row.push(new A.ReportStringValue(value, payment.get$entityType(), t8)); } if (!skip) data.push(row); } for (t1 = J.get$iterator$ax(expenseMap.get$keys(expenseMap)), t5 = expenseMap._map$_map, t6 = J.getInterceptor$asx(t5); t1.moveNext$0();) { expense = t6.$index(t5, t1.get$current(t1)); t7 = expense.clientId; client = J.$index$asx(clientMap._map$_map, t7); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t7 = expense.vendorId; vendor = J.$index$asx(vendorMap._map$_map, t7); if (vendor == null) vendor = B.VendorEntity_VendorEntity(_null, _null, _null); if (!expense.isDeleted) skip = client.isDeleted === true; else skip = true; row = H.setRuntimeTypeInfo([], t4); for (t7 = t3.get$iterator(t2), t8 = expense.id, t9 = expense.entityType, t10 = expense.categoryId, value = expense.date, value0 = -expense.amount, t11 = expense.currencyId; t7.moveNext$0();) { t12 = t7.get$current(t7); switch (t12) { case C.ProfitAndLossReportFields_12: value1 = C.EntityType_expense; break; case C.ProfitAndLossReportFields_0: value1 = client.displayName; break; case C.ProfitAndLossReportFields_1: value1 = client.address1; break; case C.ProfitAndLossReportFields_2: value1 = client.address2; break; case C.ProfitAndLossReportFields_3: value1 = client.city; break; case C.ProfitAndLossReportFields_4: value1 = client.state; break; case C.ProfitAndLossReportFields_5: t13 = staticState.countryMap; t14 = client.countryId; t14 = J.$index$asx(t13._map$_map, t14); value1 = t14 == null ? _null : t14.name; if (value1 == null) value1 = ""; break; case C.ProfitAndLossReportFields_6: value1 = vendor.name; break; case C.ProfitAndLossReportFields_7: value1 = vendor.address1; break; case C.ProfitAndLossReportFields_8: value1 = vendor.address2; break; case C.ProfitAndLossReportFields_9: value1 = vendor.city; break; case C.ProfitAndLossReportFields_10: value1 = vendor.state; break; case C.ProfitAndLossReportFields_11: t13 = staticState.countryMap; t14 = vendor.countryId; value1 = J.$index$asx(t13._map$_map, t14); break; case C.ProfitAndLossReportFields_13: value1 = value0; break; case C.ProfitAndLossReportFields_14: value1 = value; break; case C.ProfitAndLossReportFields_15: t13 = J.$index$asx(expenseCategoryMap._map$_map, t10); value1 = t13 == null ? _null : t13.name; if (value1 == null) value1 = ""; break; default: value1 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t12), _null, reportsUIState, userCompany, value1)) skip = true; t12 = J.getInterceptor$(value1); if (t12.get$runtimeType(value1) === C.Type_EntityType_6qb) row.push(new A.ReportEntityTypeValue(t9, t9, t8)); else if (t12.get$runtimeType(value1) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value1, t9, t8)); else if (t12.get$runtimeType(value1) === C.Type_double_K1J || t12.get$runtimeType(value1) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value1, _null, t11, _null, t9, t8)); else row.push(new A.ReportStringValue(value1, t9, t8)); } if (!skip) data.push(row); } t1 = type$.legacy_String; C.JSArray_methods.sort$1(data, new K.profitAndLossReport_closure1(profitAndLossReportSettings, t3.map$1$1(t2, new K.profitAndLossReport_closure2(), t1).toList$0(0))); t4 = type$.MappedListIterable_of_legacy_ProfitAndLossReportFields_and_legacy_String; t5 = t4._eval$1("ListIterable.E"); t6 = P.List_List$of(new H.MappedListIterable(C.List_EKR, new K.profitAndLossReport_closure3(), t4), true, t5); return new A.ReportResult(t3.map$1$1(t2, new K.profitAndLossReport_closure4(), t1).toList$0(0), t6, P.List_List$of(new H.MappedListIterable(defaultColumns, new K.profitAndLossReport_closure5(), t4), true, t5), data, true); }, ProfitAndLossReportFields: function ProfitAndLossReportFields(t0) { this._profit_loss_report$_name = t0; }, memoizedProfitAndLossReport_closure: function memoizedProfitAndLossReport_closure() { }, profitAndLossReport_closure: function profitAndLossReport_closure() { }, profitAndLossReport_closure0: function profitAndLossReport_closure0() { }, profitAndLossReport_closure2: function profitAndLossReport_closure2() { }, profitAndLossReport_closure1: function profitAndLossReport_closure1(t0, t1) { this.profitAndLossReportSettings = t0; this.selectedColumns = t1; }, profitAndLossReport_closure3: function profitAndLossReport_closure3() { }, profitAndLossReport_closure4: function profitAndLossReport_closure4() { }, profitAndLossReport_closure5: function profitAndLossReport_closure5() { }, UserDetails: function UserDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _UserDetailsState: function _UserDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._user_details$_focusNode = t0; _._user_details$_controller = null; _.autoValidate = false; _._user_details$_firstNameController = t1; _._user_details$_lastNameController = t2; _._user_details$_phoneController = t3; _._user_details$_emailController = t4; _._passwordController = t5; _._user_details$_controllers = t6; _._user_details$_debouncer = t7; _.SingleTickerProviderStateMixin__ticker = t8; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, _UserDetailsState_dispose_closure: function _UserDetailsState_dispose_closure(t0) { this.$this = t0; }, _UserDetailsState_didChangeDependencies_closure: function _UserDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _UserDetailsState_didChangeDependencies_closure0: function _UserDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _UserDetailsState__onChanged_closure: function _UserDetailsState__onChanged_closure(t0) { this.$this = t0; }, _UserDetailsState__onChanged_closure0: function _UserDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build_closure10: function _UserDetailsState_build_closure10(t0, t1) { this.$this = t0; this.viewModel = t1; }, _UserDetailsState_build__closure: function _UserDetailsState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _UserDetailsState_build_closure: function _UserDetailsState_build_closure(t0) { this.localization = t0; }, _UserDetailsState_build_closure0: function _UserDetailsState_build_closure0(t0) { this.localization = t0; }, _UserDetailsState_build_closure1: function _UserDetailsState_build_closure1(t0) { this.localization = t0; }, _UserDetailsState_build_closure2: function _UserDetailsState_build_closure2(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure3: function _UserDetailsState_build_closure3(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; }, _UserDetailsState_build_closure4: function _UserDetailsState_build_closure4(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.context = t1; _.localization = t2; _.viewModel = t3; _.user = t4; }, _UserDetailsState_build__closure4: function _UserDetailsState_build__closure4(t0) { this.viewModel = t0; }, _UserDetailsState_build_closure5: function _UserDetailsState_build_closure5(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure3: function _UserDetailsState_build__closure3(t0) { this.value = t0; }, _UserDetailsState_build_closure7: function _UserDetailsState_build_closure7(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure2: function _UserDetailsState_build__closure2(t0) { this.value = t0; }, _UserDetailsState_build_closure6: function _UserDetailsState_build_closure6() { }, _UserDetailsState_build_closure8: function _UserDetailsState_build_closure8(t0, t1) { this.$this = t0; this.user = t1; }, _UserDetailsState_build__closure1: function _UserDetailsState_build__closure1(t0) { this.value = t0; }, _UserDetailsState_build_closure9: function _UserDetailsState_build_closure9(t0, t1) { this.viewModel = t0; this.user = t1; }, _UserDetailsState_build__closure0: function _UserDetailsState_build__closure0(t0, t1) { this.channel = t0; this.options = t1; }, _EnableTwoFactor: function _EnableTwoFactor(t0, t1) { this.state = t0; this.key = t1; }, _EnableTwoFactorState: function _EnableTwoFactorState(t0, t1, t2) { var _ = this; _._oneTimePassword = _._user_details$_qrCode = _._user_details$_secret = null; _._user_details$_isLoading = true; _._user_details$_webClient = t0; _._user_details$_focusNode = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _EnableTwoFactorState_initState_closure: function _EnableTwoFactorState_initState_closure(t0) { this.$this = t0; }, _EnableTwoFactorState_initState__closure: function _EnableTwoFactorState_initState__closure(t0, t1) { this.$this = t0; this.response = t1; }, _EnableTwoFactorState_initState_closure0: function _EnableTwoFactorState_initState_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure: function _EnableTwoFactorState__onSavePressed_closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _EnableTwoFactorState__onSavePressed_closure0: function _EnableTwoFactorState__onSavePressed_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure1: function _EnableTwoFactorState__onSavePressed_closure1(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed__closure0: function _EnableTwoFactorState__onSavePressed__closure0(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed_closure2: function _EnableTwoFactorState__onSavePressed_closure2(t0) { this.$this = t0; }, _EnableTwoFactorState__onSavePressed__closure: function _EnableTwoFactorState__onSavePressed__closure(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure: function _EnableTwoFactorState_build_closure(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure1: function _EnableTwoFactorState_build_closure1(t0) { this.context = t0; }, _EnableTwoFactorState_build_closure0: function _EnableTwoFactorState_build_closure0(t0) { this.$this = t0; }, _EnableTwoFactorState_build_closure2: function _EnableTwoFactorState_build_closure2() { }, _EnableTwoFactorState_build_closure3: function _EnableTwoFactorState_build_closure3(t0) { this.context = t0; }, _EnableTwoFactorState_build_closure4: function _EnableTwoFactorState_build_closure4(t0) { this.$this = t0; }, __UserDetailsState_State_SingleTickerProviderStateMixin: function __UserDetailsState_State_SingleTickerProviderStateMixin() { }, TaskListVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userCompany.user; t2 = t2.taskUIState; t2.toString; t2 = t2.listUIState; t6 = $.$get$memoizedFilteredTaskList().call$9(state.getUISelection$1(C.EntityType_task), t4.$index(t1, t3).taskState.map, t4.$index(t1, t3).clientState.map, t4.$index(t1, t3).userState.map, t4.$index(t1, t3).projectState.map, t4.$index(t1, t3).invoiceState.map, t4.$index(t1, t3).taskStatusState.map, t4.$index(t1, t3).taskState.list, t2); t7 = t4.$index(t1, t3).taskState.map; t4.$index(t1, t3).clientState.toString; t2 = t2.filter; t8 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_task); if (t8 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo(["status", "client", "project", "description", "duration", "entity_state"], type$.JSArray_legacy_String); } else t1 = t8; return new K.TaskListVM(state, t5, t6, t7, t2, new K.TaskListVM_fromStore_closure(new K.TaskListVM_fromStore__handleRefresh(store)), t1, new K.TaskListVM_fromStore_closure0(store), new K.TaskListVM_fromStore_closure1(store)); }, TaskListBuilder: function TaskListBuilder(t0) { this.key = t0; }, TaskListBuilder_build_closure: function TaskListBuilder_build_closure() { }, TaskListBuilder_build__closure: function TaskListBuilder_build__closure(t0) { this.viewModel = t0; }, TaskListVM: function TaskListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.user = t1; _.taskList = t2; _.taskMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultielsect = t8; }, TaskListVM_fromStore__handleRefresh: function TaskListVM_fromStore__handleRefresh(t0) { this.store = t0; }, TaskListVM_fromStore_closure0: function TaskListVM_fromStore_closure0(t0) { this.store = t0; }, TaskListVM_fromStore_closure: function TaskListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, TaskListVM_fromStore_closure1: function TaskListVM_fromStore_closure1(t0) { this.store = t0; }, TaxRateView: function TaxRateView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaxRateViewState: function _TaxRateViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaxRateViewState_build_closure: function _TaxRateViewState_build_closure(t0) { this.viewModel = t0; }, TokenListItem: function TokenListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.token = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TokenListItem_build_closure1: function TokenListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, TokenListItem_build_closure0: function TokenListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, TokenListItem_build_closure: function TokenListItem_build_closure(t0) { this.$this = t0; }, TokenScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).tokenState.toString; t5 = $.$get$memoizedFilteredTokenList(); t6 = state.getUISelection$1(C.EntityType_token); t7 = t4.$index(t1, t3).tokenState.map; t8 = t4.$index(t1, t3).tokenState.list; t2 = t2.tokenUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new K.TokenScreenVM(t8); }, TokenScreenBuilder: function TokenScreenBuilder(t0) { this.key = t0; }, TokenScreenBuilder_build_closure: function TokenScreenBuilder_build_closure() { }, TokenScreenVM: function TokenScreenVM(t0) { this.tokenList = t0; }, VendorEdit: function VendorEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _VendorEditState: function _VendorEditState(t0, t1) { var _ = this; _._vendor_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _VendorEditState_build_closure: function _VendorEditState_build_closure(t0) { this.viewModel = t0; }, _VendorEditState_build_closure0: function _VendorEditState_build_closure0(t0) { this.viewModel = t0; }, __VendorEditState_State_SingleTickerProviderStateMixin: function __VendorEditState_State_SingleTickerProviderStateMixin() { }, VendorScreen: function VendorScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorScreen_build_closure9: function VendorScreen_build_closure9(t0) { this.store = t0; }, VendorScreen_build_closure7: function VendorScreen_build_closure7(t0) { this.store = t0; }, VendorScreen_build_closure8: function VendorScreen_build_closure8(t0) { this.store = t0; }, VendorScreen_build_closure4: function VendorScreen_build_closure4(t0) { this.store = t0; }, VendorScreen_build_closure0: function VendorScreen_build_closure0(t0) { this.store = t0; }, VendorScreen_build_closure1: function VendorScreen_build_closure1(t0) { this.store = t0; }, VendorScreen_build_closure2: function VendorScreen_build_closure2(t0) { this.store = t0; }, VendorScreen_build_closure3: function VendorScreen_build_closure3(t0) { this.store = t0; }, VendorScreen_build_closure5: function VendorScreen_build_closure5(t0) { this.store = t0; }, VendorScreen_build_closure: function VendorScreen_build_closure(t0) { this.store = t0; }, VendorScreen_build_closure6: function VendorScreen_build_closure6(t0) { this.context = t0; }, OverflowViewParentData: function OverflowViewParentData(t0, t1, t2) { var _ = this; _.offstage = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, OverflowViewLayoutBehavior: function OverflowViewLayoutBehavior(t0) { this._overflow_view$_name = t0; }, RenderOverflowView: function RenderOverflowView(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._overflow_view$_direction = t0; _._overflow_view$_spacing = t1; _._overflow_view$_layoutBehavior = t2; _._isHorizontal = t3; _._hasOverflow = false; _.ContainerRenderObjectMixin__childCount = t4; _.ContainerRenderObjectMixin__firstChild = t5; _.ContainerRenderObjectMixin__lastChild = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOverflowView_resetOffstage_closure: function RenderOverflowView_resetOffstage_closure() { }, RenderOverflowView_performFixedLayout_getChildOffset: function RenderOverflowView_performFixedLayout_getChildOffset(t0, t1) { this.$this = t0; this.childStride = t1; }, RenderOverflowView_performFlexibleLayout_closure: function RenderOverflowView_performFlexibleLayout_closure(t0) { this.$this = t0; }, RenderOverflowView_visitOnlyOnStageChildren_closure: function RenderOverflowView_visitOnlyOnStageChildren_closure(t0) { this.visitor = t0; }, RenderOverflowView_paint_paintChild: function RenderOverflowView_paint_paintChild(t0, t1, t2) { this.$this = t0; this.context = t1; this.offset = t2; }, RenderOverflowView_paint_defaultPaint: function RenderOverflowView_paint_defaultPaint(t0, t1) { this.$this = t0; this.paintChild = t1; }, RenderOverflowView_hitTestChildren_closure: function RenderOverflowView_hitTestChildren_closure(t0, t1) { this.result = t0; this.position = t1; }, RenderOverflowView_hitTestChildren__closure: function RenderOverflowView_hitTestChildren__closure(t0, t1, t2) { this.position = t0; this.childParentData = t1; this.child = t2; }, _RenderOverflowView_RenderBox_ContainerRenderObjectMixin: function _RenderOverflowView_RenderBox_ContainerRenderObjectMixin() { }, _RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, OverflowView$flexible: function(builder, children, spacing) { var t1 = P.List_List$of(children, true, type$.Widget); t1.push(new Y.ValueLayoutBuilder(new K.OverflowView$_all_closure(builder), null, type$.ValueLayoutBuilder_int)); return new K.OverflowView(C.Axis_0, spacing, C.OverflowViewLayoutBehavior_1, t1, null); }, OverflowView: function OverflowView(t0, t1, t2, t3, t4) { var _ = this; _.direction = t0; _.spacing = t1; _._layoutBehavior = t2; _.children = t3; _.key = t4; }, OverflowView$_all_closure: function OverflowView$_all_closure(t0) { this.builder = t0; }, _OverflowViewElement: function _OverflowViewElement(t0, t1, t2, t3, t4) { var _ = this; _.__MultiChildRenderObjectElement__children = $; _._forgottenChildren = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, SentryLevel: function SentryLevel(t0) { this.name = t0; }, Uuid$: function() { return new K.Uuid(); }, Uuid_unparse: function(buffer) { var t2, t1 = J.getInterceptor$asx(buffer); if (t1.get$length(buffer) !== 16) throw H.wrapException(P.Exception_Exception("The provided buffer needs to have a length of 16.")); t2 = $.$get$Uuid__byteToHex(); return t2[t1.$index(buffer, 0)] + t2[t1.$index(buffer, 1)] + t2[t1.$index(buffer, 2)] + t2[t1.$index(buffer, 3)] + "-" + t2[t1.$index(buffer, 4)] + t2[t1.$index(buffer, 5)] + "-" + t2[t1.$index(buffer, 6)] + t2[t1.$index(buffer, 7)] + "-" + t2[t1.$index(buffer, 8)] + t2[t1.$index(buffer, 9)] + "-" + t2[t1.$index(buffer, 10)] + t2[t1.$index(buffer, 11)] + t2[t1.$index(buffer, 12)] + t2[t1.$index(buffer, 13)] + t2[t1.$index(buffer, 14)] + t2[t1.$index(buffer, 15)]; }, Uuid: function Uuid() { }, ColorUtil_fromDartColor: function(color) { var t1 = color.value; return new K.Color0(t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255, t1 >>> 24 & 255, null, null); }, clock: function() { var t1 = type$.nullable_Clock._as($.Zone__current.$index(0, $.$get$_clockKey())); return t1 == null ? C.C_Clock : t1; }, compareNatural: function(a, b) { var t1, t2, i, aChar, bChar; for (t1 = a.length, t2 = b.length, i = 0; i < t1; ++i) { if (i >= t2) return 1; aChar = C.JSString_methods._codeUnitAt$1(a, i); bChar = C.JSString_methods._codeUnitAt$1(b, i); if (aChar !== bChar) return K._compareNaturally(a, b, i, aChar, bChar); } if (t2 > t1) return -1; return 0; }, _compareNaturally: function(a, b, index, aChar, bChar) { var bIsDigit = (bChar ^ 48) <= 9; if ((aChar ^ 48) <= 9) { if (bIsDigit) return K._compareNumerically(a, b, aChar, bChar, index); else if (index > 0 && (C.JSString_methods.codeUnitAt$1(a, index - 1) ^ 48) <= 9) return 1; } else if (bIsDigit && index > 0 && (C.JSString_methods.codeUnitAt$1(b, index - 1) ^ 48) <= 9) return -1; return C.JSInt_methods.get$sign(aChar - bChar); }, _compareNumerically: function(a, b, aChar, bChar, index) { var result, t1, aIndex, bIndex, t2, aIsDigit, bIsDigit; if (K._isNonZeroNumberSuffix(a, index)) { result = K._compareDigitCount(a, b, index, index); if (result !== 0) return result; return C.JSInt_methods.get$sign(aChar - bChar); } if (aChar === 48) { t1 = a.length; aIndex = index; do { ++aIndex; if (aIndex === t1) return -1; aChar = C.JSString_methods._codeUnitAt$1(a, aIndex); } while (aChar === 48); if ((aChar ^ 48) > 9) return -1; bIndex = index; } else { if (bChar === 48) { t1 = b.length; bIndex = index; do { ++bIndex; if (bIndex === t1) return 1; bChar = C.JSString_methods._codeUnitAt$1(b, bIndex); } while (bChar === 48); if ((bChar ^ 48) > 9) return 1; } else bIndex = index; aIndex = index; } if (aChar !== bChar) { result = K._compareDigitCount(a, b, aIndex, bIndex); if (result !== 0) return result; return C.JSInt_methods.get$sign(aChar - bChar); } for (t1 = b.length, t2 = a.length; true;) { ++aIndex; if (aIndex < t2) { aChar = C.JSString_methods._codeUnitAt$1(a, aIndex); aIsDigit = (aChar ^ 48) <= 9; } else { aChar = 0; aIsDigit = false; } ++bIndex; if (bIndex < t1) { bChar = C.JSString_methods._codeUnitAt$1(b, bIndex); bIsDigit = (bChar ^ 48) <= 9; } else { bChar = 0; bIsDigit = false; } if (aIsDigit) { if (bIsDigit) { if (aChar === bChar) continue; break; } return 1; } else if (bIsDigit) return -1; else { t1 = aIndex - bIndex; if (t1 > 0) t1 = 1; else if (t1 < 0) t1 = -1; return t1; } } result = K._compareDigitCount(a, b, aIndex, bIndex); if (result !== 0) return result; return C.JSInt_methods.get$sign(aChar - bChar); }, _compareDigitCount: function(a, b, i, j) { var t1, t2, aIsDigit, bIsDigit; for (t1 = a.length, t2 = b.length; ++i, i < t1;) { aIsDigit = (C.JSString_methods._codeUnitAt$1(a, i) ^ 48) <= 9; ++j; if (j === t2) return aIsDigit ? 1 : 0; bIsDigit = (C.JSString_methods._codeUnitAt$1(b, j) ^ 48) <= 9; if (aIsDigit) { if (bIsDigit) continue; return 1; } else if (bIsDigit) return -1; else return 0; } ++j; if (j < t2 && (C.JSString_methods._codeUnitAt$1(b, j) ^ 48) <= 9) return -1; return 0; }, _isNonZeroNumberSuffix: function(string, index) { var char; for (; --index, index >= 0;) { char = C.JSString_methods.codeUnitAt$1(string, index); if (char !== 48) return (char ^ 48) <= 9; } return false; }, glog: function(n) { if (n < 1) throw H.wrapException(P.ArgumentError$("glog(" + n + ")")); return $.$get$_logTable()[n]; }, gexp: function(n) { for (; n < 0;) n += 255; for (; n >= 256;) n -= 255; return $.$get$_expTable()[n]; }, _createExpTable: function() { var i, list = new Uint8Array(256); for (i = 0; i < 8; ++i) list[i] = C.JSInt_methods._shlPositive$1(1, i); for (i = 8; i < 256; ++i) list[i] = (list[i - 4] ^ list[i - 5] ^ list[i - 6] ^ list[i - 8]) >>> 0; return list; }, _createLogTable: function() { var i, list = new Uint8Array(256); for (i = 0; i < 255; ++i) list[$.$get$_expTable()[i]] = i; return list; } }, Z = {DateTimeSerializer: function DateTimeSerializer(t0) { this.types = t0; }, ImageRenderMethodForWeb: function ImageRenderMethodForWeb(t0) { this._cached_network_image_provider$_name = t0; }, OrdinalAxisSpec: function OrdinalAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, SeriesLegend0: function SeriesLegend0() { }, SeriesLegend_onData_closure0: function SeriesLegend_onData_closure0(t0) { this.$this = t0; }, SeriesLegend_onData_closure: function SeriesLegend_onData_closure(t0) { this.seriesIds = t0; }, SeriesLegend_preProcessSeriesList_closure: function SeriesLegend_preProcessSeriesList_closure(t0) { this.$this = t0; }, SeriesLegend_showSeries_closure: function SeriesLegend_showSeries_closure(t0) { this.seriesId = t0; }, SelectNearest0: function SelectNearest0(t0, t1, t2, t3, t4, t5) { var _ = this; _.__SelectNearest__listener = $; _.selectionModelType = t0; _.eventTrigger = t1; _.selectionMode = t2; _.selectClosestSeries = t3; _.maximumDomainDistancePx = t4; _._select_nearest$_chart = null; _._delaySelect = false; _.$ti = t5; }, SelectNearest__onSelect_closure: function SelectNearest__onSelect_closure(t0) { this.$this = t0; }, SelectNearest__onSelect_closure0: function SelectNearest__onSelect_closure0(t0) { this.$this = t0; }, SelectNearest__extractSeriesFromNearestSelection_closure: function SelectNearest__extractSeriesFromNearestSelection_closure(t0) { this.$this = t0; }, SelectionMode: function SelectionMode(t0) { this._select_nearest$_name = t0; }, LocalDateTimeFactory: function LocalDateTimeFactory() { }, SeriesLegend: function SeriesLegend(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.desiredGestures = t0; _.selectionModelType = t1; _.contentBuilder = t2; _.position = t3; _.outsideJustification = t4; _.insideJustification = t5; _.showMeasures = t6; _.legendDefaultMeasure = t7; _.measureFormatter = t8; _.secondaryMeasureFormatter = t9; _.entryTextStyle = t10; _.defaultHiddenSeries = t11; _.$ti = t12; }, _FlutterSeriesLegend: function _FlutterSeriesLegend(t0, t1, t2, t3, t4, t5) { var _ = this; _.config = t0; _._hiddenSeriesList = t1; _._defaultHiddenSeries = null; _.selectionModelType = t2; _.legendState = t3; _.legendEntryGenerator = t4; _.__Legend__lifecycleListener = _.__Legend__chart = $; _._legend$_drawAreaBounds = _._legend$_componentBounds = null; _.__Legend__currentSeriesList = $; _._postProcessSeriesList = null; _.$ti = t5; }, _FlutterSeriesLegend_build_closure: function _FlutterSeriesLegend_build_closure(t0) { this.$this = t0; }, SelectNearest: function SelectNearest(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.desiredGestures = t0; _.selectionModelType = t1; _.eventTrigger = t2; _.selectionMode = t3; _.selectClosestSeries = t4; _.maximumDomainDistancePx = t5; _.$ti = t6; }, FileSystemOp: function FileSystemOp(t0) { this._operations$_value = t0; }, ParametricCurve: function ParametricCurve() { }, Curve: function Curve() { }, _Linear: function _Linear() { }, SawTooth: function SawTooth(t0) { this.count = t0; }, Interval: function Interval(t0, t1, t2) { this.begin = t0; this.end = t1; this.curve = t2; }, Threshold: function Threshold(t0) { this.threshold = t0; }, Cubic: function Cubic(t0, t1, t2, t3) { var _ = this; _.a = t0; _.b = t1; _.c = t2; _.d = t3; }, FlippedCurve: function FlippedCurve(t0) { this.curve = t0; }, _DecelerateCurve: function _DecelerateCurve() { }, ElasticOutCurve: function ElasticOutCurve() { }, RawMaterialButton$: function(autofocus, child, clipBehavior, constraints, disabledElevation, elevation, fillColor, focusColor, focusElevation, focusNode, highlightColor, highlightElevation, hoverColor, hoverElevation, materialTapTargetSize, mouseCursor, onPressed, shape, splashColor, textStyle) { return new Z.RawMaterialButton(onPressed, mouseCursor, textStyle, fillColor, focusColor, hoverColor, highlightColor, splashColor, elevation, hoverElevation, focusElevation, highlightElevation, disabledElevation, constraints, shape, child, materialTapTargetSize, focusNode, false, clipBehavior, null); }, RawMaterialButton: function RawMaterialButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.onPressed = t0; _.mouseCursor = t1; _.textStyle = t2; _.fillColor = t3; _.focusColor = t4; _.hoverColor = t5; _.highlightColor = t6; _.splashColor = t7; _.elevation = t8; _.hoverElevation = t9; _.focusElevation = t10; _.highlightElevation = t11; _.disabledElevation = t12; _.constraints = t13; _.shape = t14; _.child = t15; _.materialTapTargetSize = t16; _.focusNode = t17; _.autofocus = t18; _.clipBehavior = t19; _.key = t20; }, _RawMaterialButtonState: function _RawMaterialButtonState(t0, t1) { var _ = this; _._states = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _RawMaterialButtonState__handleHighlightChanged_closure: function _RawMaterialButtonState__handleHighlightChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _RawMaterialButtonState__handleHoveredChanged_closure: function _RawMaterialButtonState__handleHoveredChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _RawMaterialButtonState__handleFocusedChanged_closure: function _RawMaterialButtonState__handleFocusedChanged_closure(t0, t1) { this.$this = t0; this.value = t1; }, _InputPadding: function _InputPadding(t0, t1, t2) { this.minSize = t0; this.child = t1; this.key = t2; }, _RenderInputPadding: function _RenderInputPadding(t0, t1) { var _ = this; _._button$_minSize = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderInputPadding_hitTest_closure: function _RenderInputPadding_hitTest_closure(t0, t1) { this.$this = t0; this.center = t1; }, DataTableThemeData__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new Z._LerpProperties2(a, b, t, lerpFunction, $T._eval$1("_LerpProperties2<0>")); }, DataTableThemeData: function DataTableThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.decoration = t0; _.dataRowColor = t1; _.dataRowHeight = t2; _.dataTextStyle = t3; _.headingRowColor = t4; _.headingRowHeight = t5; _.headingTextStyle = t6; _.horizontalMargin = t7; _.columnSpacing = t8; _.dividerThickness = t9; _.checkboxHorizontalMargin = t10; }, _LerpProperties2: function _LerpProperties2(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _DataTableThemeData_Object_Diagnosticable: function _DataTableThemeData_Object_Diagnosticable() { }, Divider$: function(color, height, thickness) { return new Z.Divider(height, thickness, color, null); }, Divider_createBorderSide: function(context, color, width) { var t1, effectiveColor, effectiveWidth; if (color == null) { t1 = G.DividerTheme_of(context).color; if (t1 == null) t1 = K.Theme_of(context).dividerColor; effectiveColor = t1; } else effectiveColor = color; effectiveWidth = width; if (effectiveColor == null) return new Y.BorderSide(C.Color_4278190080, effectiveWidth, C.BorderStyle_1); return new Y.BorderSide(effectiveColor, effectiveWidth, C.BorderStyle_1); }, Divider: function Divider(t0, t1, t2, t3) { var _ = this; _.height = t0; _.thickness = t1; _.color = t2; _.key = t3; }, Drawer$: function(child) { return new Z.Drawer(child, null); }, DrawerAlignment: function DrawerAlignment(t0) { this._drawer$_name = t0; }, Drawer: function Drawer(t0, t1) { this.child = t0; this.key = t1; }, DrawerController: function DrawerController(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.alignment = t1; _.drawerCallback = t2; _.dragStartBehavior = t3; _.scrimColor = t4; _.enableOpenDragGesture = t5; _.edgeDragWidth = t6; _.isDrawerOpen = t7; _.key = t8; }, DrawerControllerState: function DrawerControllerState(t0, t1, t2, t3, t4) { var _ = this; _._historyEntry = null; _._focusScopeNode = t0; _.__DrawerControllerState__controller = $; _._drawerKey = t1; _._previouslyOpened = false; _.__DrawerControllerState__scrimColorTween = $; _._drawer$_gestureDetectorKey = t2; _.SingleTickerProviderStateMixin__ticker = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, DrawerControllerState__animationChanged_closure: function DrawerControllerState__animationChanged_closure() { }, _DrawerControllerState_State_SingleTickerProviderStateMixin: function _DrawerControllerState_State_SingleTickerProviderStateMixin() { }, FlexibleSpaceBar_createSettings: function(child, currentExtent, maxExtent, minExtent, toolbarOpacity) { var t1 = toolbarOpacity == null ? 1 : toolbarOpacity, t2 = minExtent == null ? currentExtent : minExtent; return new Z.FlexibleSpaceBarSettings(t1, t2, maxExtent == null ? currentExtent : maxExtent, currentExtent, child, null); }, FlexibleSpaceBarSettings: function FlexibleSpaceBarSettings(t0, t1, t2, t3, t4, t5) { var _ = this; _.toolbarOpacity = t0; _.minExtent = t1; _.maxExtent = t2; _.currentExtent = t3; _.child = t4; _.key = t5; }, PopupMenuItem$: function(child, value, $T) { return new Z.PopupMenuItem(value, child, null, $T._eval$1("PopupMenuItem<0>")); }, PopupMenuButton$: function(child, color, enabled, icon, initialValue, itemBuilder, onSelected, padding, tooltip, $T) { return new Z.PopupMenuButton(itemBuilder, initialValue, onSelected, tooltip, padding, child, icon, enabled, color, null, $T._eval$1("PopupMenuButton<0>")); }, PopupMenuEntry: function PopupMenuEntry() { }, PopupMenuDivider: function PopupMenuDivider(t0) { this.key = t0; }, _PopupMenuDividerState: function _PopupMenuDividerState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MenuItem0: function _MenuItem0(t0, t1, t2) { this.onLayout = t0; this.child = t1; this.key = t2; }, _RenderMenuItem0: function _RenderMenuItem0(t0, t1) { var _ = this; _.onLayout = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, PopupMenuItem: function PopupMenuItem(t0, t1, t2, t3) { var _ = this; _.value = t0; _.child = t1; _.key = t2; _.$ti = t3; }, PopupMenuItemState: function PopupMenuItemState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _PopupMenu: function _PopupMenu(t0, t1, t2, t3) { var _ = this; _.route = t0; _.semanticLabel = t1; _.key = t2; _.$ti = t3; }, _PopupMenu_build_closure: function _PopupMenu_build_closure(t0, t1) { this.$this = t0; this.i = t1; }, _PopupMenu_build_closure0: function _PopupMenu_build_closure0(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.opacity = t1; _.popupMenuTheme = t2; _.width = t3; _.height = t4; }, _PopupMenuRouteLayout: function _PopupMenuRouteLayout(t0, t1, t2, t3, t4) { var _ = this; _.position = t0; _.itemSizes = t1; _.selectedItemIndex = t2; _.textDirection = t3; _.padding = t4; }, _PopupMenuRoute: function _PopupMenuRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22) { var _ = this; _.position = t0; _.items = t1; _.itemSizes = t2; _.initialValue = t3; _.elevation = t4; _.semanticLabel = t5; _.shape = t6; _.color = t7; _.capturedThemes = t8; _.barrierLabel = t9; _.filter = t10; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t11; _._scopeKey = t12; _._subtreeKey = t13; _._storageBucket = t14; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t15; _._transitionCompleter = t16; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t17; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t18; _._navigator$_navigator = null; _._navigator$_settings = t19; _._restorationScopeId = t20; _._popCompleter = t21; _.$ti = t22; }, _PopupMenuRoute_buildPage_closure: function _PopupMenuRoute_buildPage_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.mediaQuery = t2; _.menu = t3; }, PopupMenuButton: function PopupMenuButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.itemBuilder = t0; _.initialValue = t1; _.onSelected = t2; _.tooltip = t3; _.padding = t4; _.child = t5; _.icon = t6; _.enabled = t7; _.color = t8; _.key = t9; _.$ti = t10; }, PopupMenuButtonState: function PopupMenuButtonState(t0, t1) { var _ = this; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, PopupMenuButtonState_showButtonMenu_closure: function PopupMenuButtonState_showButtonMenu_closure(t0) { this.$this = t0; }, ReorderableListView$: function(children, onReorder, scrollController) { return new Z.ReorderableListView(new Z.ReorderableListView_closure(children), children.length, onReorder, scrollController, null); }, ReorderableListView: function ReorderableListView(t0, t1, t2, t3, t4) { var _ = this; _.itemBuilder = t0; _.itemCount = t1; _.onReorder = t2; _.scrollController = t3; _.key = t4; }, ReorderableListView_closure: function ReorderableListView_closure(t0) { this.children = t0; }, _ReorderableListViewState: function _ReorderableListViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _ReorderableListViewState__wrapWithSemantics_reorder: function _ReorderableListViewState__wrapWithSemantics_reorder(t0) { this.$this = t0; }, _ReorderableListViewState__wrapWithSemantics_moveToStart: function _ReorderableListViewState__wrapWithSemantics_moveToStart(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__wrapWithSemantics_moveToEnd: function _ReorderableListViewState__wrapWithSemantics_moveToEnd(t0, t1, t2) { this.$this = t0; this.reorder = t1; this.index = t2; }, _ReorderableListViewState__wrapWithSemantics_moveBefore: function _ReorderableListViewState__wrapWithSemantics_moveBefore(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__wrapWithSemantics_moveAfter: function _ReorderableListViewState__wrapWithSemantics_moveAfter(t0, t1) { this.reorder = t0; this.index = t1; }, _ReorderableListViewState__proxyDecorator_closure: function _ReorderableListViewState__proxyDecorator_closure(t0) { this.animation = t0; }, _ReorderableListViewState_build__listPadding_set: function _ReorderableListViewState_build__listPadding_set(t0) { this._box_0 = t0; }, _ReorderableListViewState_build__outerPadding_set: function _ReorderableListViewState_build__outerPadding_set(t0) { this._box_0 = t0; }, _ReorderableListViewState_build__outerPadding_get: function _ReorderableListViewState_build__outerPadding_get(t0) { this._box_0 = t0; }, _ReorderableListViewState_build__listPadding_get: function _ReorderableListViewState_build__listPadding_get(t0) { this._box_0 = t0; }, _ReorderableListViewChildGlobalKey: function _ReorderableListViewChildGlobalKey(t0, t1, t2) { this.subKey = t0; this.state = t1; this.value = t2; }, TextField$: function(autocorrect, autofillHints, autofocus, buildCounter, controller, cursorColor, cursorHeight, cursorRadius, cursorWidth, decoration, enableInteractiveSelection, enableSuggestions, enabled, expands, focusNode, inputFormatters, keyboardAppearance, keyboardType, maxLength, maxLengthEnforced, maxLengthEnforcement, maxLines, minLines, obscureText, obscuringCharacter, onChanged, onEditingComplete, onSubmitted, onTap, readOnly, scrollController, scrollPadding, scrollPhysics, selectionControls, showCursor, smartDashesType, smartQuotesType, strutStyle, style, textAlign, textAlignVertical, textCapitalization, textDirection, textInputAction, toolbarOptions) { var t1, t2, t3, t4; if (smartDashesType == null) t1 = obscureText ? C.SmartDashesType_0 : C.SmartDashesType_1; else t1 = smartDashesType; if (smartQuotesType == null) t2 = obscureText ? C.SmartQuotesType_0 : C.SmartQuotesType_1; else t2 = smartQuotesType; if (keyboardType == null) t3 = maxLines === 1 ? C.TextInputType_0_null_null : C.TextInputType_1_null_null; else t3 = keyboardType; t4 = obscureText ? C.ToolbarOptions_false_false_true : C.ToolbarOptions_true_true_true; return new Z.TextField(controller, focusNode, decoration, t3, textInputAction, textCapitalization, style, strutStyle, textAlign, textAlignVertical, textDirection, autofocus, obscuringCharacter, obscureText, autocorrect, t1, t2, true, maxLines, minLines, expands, readOnly, t4, showCursor, maxLength, true, maxLengthEnforcement, onChanged, onEditingComplete, onSubmitted, inputFormatters, enabled, cursorWidth, cursorHeight, cursorRadius, cursorColor, keyboardAppearance, scrollPadding, true, selectionControls, onTap, buildCounter, scrollPhysics, scrollController, autofillHints, null); }, _TextFieldSelectionGestureDetectorBuilder: function _TextFieldSelectionGestureDetectorBuilder(t0, t1) { this._text_field$_state = t0; this.delegate = t1; this._shouldShowSelectionToolbar = true; }, TextField: function TextField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45) { var _ = this; _.controller = t0; _.focusNode = t1; _.decoration = t2; _.keyboardType = t3; _.textInputAction = t4; _.textCapitalization = t5; _.style = t6; _.strutStyle = t7; _.textAlign = t8; _.textAlignVertical = t9; _.textDirection = t10; _.autofocus = t11; _.obscuringCharacter = t12; _.obscureText = t13; _.autocorrect = t14; _.smartDashesType = t15; _.smartQuotesType = t16; _.enableSuggestions = t17; _.maxLines = t18; _.minLines = t19; _.expands = t20; _.readOnly = t21; _.toolbarOptions = t22; _.showCursor = t23; _.maxLength = t24; _.maxLengthEnforced = t25; _.maxLengthEnforcement = t26; _.onChanged = t27; _.onEditingComplete = t28; _.onSubmitted = t29; _.inputFormatters = t30; _.enabled = t31; _.cursorWidth = t32; _.cursorHeight = t33; _.cursorRadius = t34; _.cursorColor = t35; _.keyboardAppearance = t36; _.scrollPadding = t37; _.enableInteractiveSelection = t38; _.selectionControls = t39; _.onTap = t40; _.buildCounter = t41; _.scrollPhysics = t42; _.scrollController = t43; _.autofillHints = t44; _.key = t45; }, _TextFieldState: function _TextFieldState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._text_field$_focusNode = _._text_field$_controller = null; _._showSelectionHandles = _._isHovering = false; _.___TextFieldState_forcePressEnabled = _.___TextFieldState__selectionGestureDetectorBuilder = $; _.editableTextKey = t0; _.RestorationMixin__bucket = t1; _.RestorationMixin__properties = t2; _.RestorationMixin__debugPropertiesWaitingForReregistration = t3; _.RestorationMixin__firstRestorePending = t4; _.RestorationMixin__currentParent = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, _TextFieldState__handleSelectionChanged_closure: function _TextFieldState__handleSelectionChanged_closure(t0, t1) { this.$this = t0; this.willShowSelectionHandles = t1; }, _TextFieldState__handleHover_closure: function _TextFieldState__handleHover_closure(t0, t1) { this.$this = t0; this.hovering = t1; }, _TextFieldState_build_closure: function _TextFieldState_build_closure(t0) { this.$this = t0; }, _TextFieldState_build_closure0: function _TextFieldState_build_closure0(t0, t1, t2) { this.$this = t0; this.focusNode = t1; this.controller = t2; }, _TextFieldState_build_closure1: function _TextFieldState_build_closure1(t0) { this.$this = t0; }, _TextFieldState_build_closure2: function _TextFieldState_build_closure2(t0) { this.$this = t0; }, _TextFieldState_build_closure3: function _TextFieldState_build_closure3(t0, t1) { this._box_0 = t0; this.$this = t1; }, _TextFieldState_build__closure: function _TextFieldState_build__closure(t0) { this.$this = t0; }, __TextFieldState_State_RestorationMixin_dispose_closure: function __TextFieldState_State_RestorationMixin_dispose_closure() { }, __TextFieldState_State_RestorationMixin: function __TextFieldState_State_RestorationMixin() { }, hourFormat: function(of) { switch (of) { case C.TimeOfDayFormat_4: case C.TimeOfDayFormat_5: return C.HourFormat_2; case C.TimeOfDayFormat_3: return C.HourFormat_1; case C.TimeOfDayFormat_1: case C.TimeOfDayFormat_0: case C.TimeOfDayFormat_2: return C.HourFormat_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, DayPeriod: function DayPeriod(t0) { this._time$_name = t0; }, TimeOfDay: function TimeOfDay(t0, t1) { this.hour = t0; this.minute = t1; }, TimeOfDay_toString__addLeadingZeroIfNeeded: function TimeOfDay_toString__addLeadingZeroIfNeeded() { }, TimeOfDayFormat: function TimeOfDayFormat(t0) { this._time$_name = t0; }, HourFormat: function HourFormat(t0) { this._time$_name = t0; }, ClipContext: function ClipContext() { }, ClipContext_clipPathAndPaint_closure: function ClipContext_clipPathAndPaint_closure(t0, t1) { this.$this = t0; this.path = t1; }, ClipContext_clipRRectAndPaint_closure: function ClipContext_clipRRectAndPaint_closure(t0, t1) { this.$this = t0; this.rrect = t1; }, ClipContext_clipRectAndPaint_closure: function ClipContext_clipRectAndPaint_closure(t0, t1) { this.$this = t0; this.rect = t1; }, Decoration_lerp: function(a, b, t) { var _null = null, t1 = a == null; if (t1 && b == null) return _null; if (t1) { t1 = b.lerpFrom$2(_null, t); return t1 == null ? b : t1; } if (b == null) { t1 = a.lerpTo$2(_null, t); return t1 == null ? a : t1; } if (t === 0) return a; if (t === 1) return b; t1 = b.lerpFrom$2(a, t); if (t1 == null) t1 = a.lerpTo$2(b, t); if (t1 == null) if (t < 0.5) { t1 = a.lerpTo$2(_null, t * 2); if (t1 == null) t1 = a; } else { t1 = b.lerpFrom$2(_null, (t - 0.5) * 2); if (t1 == null) t1 = b; } return t1; }, Decoration: function Decoration() { }, BoxPainter: function BoxPainter() { }, _Decoration_Object_Diagnosticable: function _Decoration_Object_Diagnosticable() { }, _overlayOrigin: function(context) { var result = context.findAncestorStateOfType$1$0(type$.OverlayState), t1 = result._framework$_element.get$renderObject(); t1.toString; return T.MatrixUtils_transformPoint(type$.RenderBox._as(t1).getTransformTo$1(0, null), C.Offset_0_0); }, _sizeExtent: function(size, scrollDirection) { switch (scrollDirection) { case C.Axis_0: return size._dx; case C.Axis_1: return size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _offsetExtent: function(offset, scrollDirection) { switch (scrollDirection) { case C.Axis_0: return offset._dx; case C.Axis_1: return offset._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _extentOffset: function(extent, scrollDirection) { switch (scrollDirection) { case C.Axis_0: return new P.Offset(extent, 0); case C.Axis_1: return new P.Offset(0, extent); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _restrictAxis: function(offset, scrollDirection) { switch (scrollDirection) { case C.Axis_0: return new P.Offset(offset._dx, 0); case C.Axis_1: return new P.Offset(0, offset._dy); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, SliverReorderableList: function SliverReorderableList(t0, t1, t2, t3, t4) { var _ = this; _.itemBuilder = t0; _.itemCount = t1; _.onReorder = t2; _.proxyDecorator = t3; _.key = t4; }, SliverReorderableListState: function SliverReorderableListState(t0, t1, t2) { var _ = this; _._reorderable_list$_items = t0; _._recognizer = _._finalDropPosition = _._insertIndex = _._dragInfo = _._dragIndex = _._reorderable_list$_overlayEntry = null; _._autoScrolling = false; _.__SliverReorderableListState__scrollable = $; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, SliverReorderableListState_startItemDragReorder_closure: function SliverReorderableListState_startItemDragReorder_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.index = t1; _.recognizer = t2; _.event = t3; }, SliverReorderableListState__dragUpdate_closure: function SliverReorderableListState__dragUpdate_closure(t0) { this.$this = t0; }, SliverReorderableListState__dragEnd_closure: function SliverReorderableListState__dragEnd_closure(t0, t1) { this.$this = t0; this.item = t1; }, SliverReorderableListState__dragReset_closure: function SliverReorderableListState__dragReset_closure(t0) { this.$this = t0; }, _ReorderableItem: function _ReorderableItem(t0, t1, t2, t3) { var _ = this; _.index = t0; _.child = t1; _.capturedThemes = t2; _.key = t3; }, _ReorderableItemState: function _ReorderableItemState(t0, t1, t2) { var _ = this; _.___ReorderableItemState__listState = $; _._startOffset = t0; _._targetOffset = t1; _._offsetAnimation = null; _._dragging = false; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _ReorderableItemState_dragging_closure: function _ReorderableItemState_dragging_closure(t0, t1) { this.$this = t0; this.dragging = t1; }, _ReorderableItemState_updateForGap_closure: function _ReorderableItemState_updateForGap_closure(t0) { this.$this = t0; }, _ReorderableItemState_rebuild_closure: function _ReorderableItemState_rebuild_closure() { }, ReorderableDragStartListener: function ReorderableDragStartListener(t0, t1, t2) { this.child = t0; this.index = t1; this.key = t2; }, ReorderableDragStartListener_build_closure: function ReorderableDragStartListener_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ReorderableDelayedDragStartListener: function ReorderableDelayedDragStartListener(t0, t1, t2) { this.child = t0; this.index = t1; this.key = t2; }, _DragInfo: function _DragInfo(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.scrollDirection = t0; _.onUpdate = t1; _.onEnd = t2; _.onCancel = t3; _.onDropCompleted = t4; _.proxyDecorator = t5; _.tickerProvider = t6; _.___DragInfo_capturedThemes = _.___DragInfo_itemExtent = _.___DragInfo_itemSize = _.___DragInfo_dragOffset = _.___DragInfo_dragPosition = _.___DragInfo_child = _.___DragInfo_index = _.___DragInfo_listState = $; _._reorderable_list$_proxyAnimation = _.scrollable = null; }, _DragInfo_startDrag_closure: function _DragInfo_startDrag_closure(t0) { this.$this = t0; }, _DragItemProxy: function _DragItemProxy(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.listState = t0; _.index = t1; _.child = t2; _.position = t3; _.size = t4; _.animation = t5; _.proxyDecorator = t6; _.key = t7; }, _DragItemProxy_build_closure: function _DragItemProxy_build_closure(t0, t1) { this.$this = t0; this.overlayOrigin = t1; }, _ReorderableItemGlobalKey: function _ReorderableItemGlobalKey(t0, t1, t2, t3) { var _ = this; _.subKey = t0; _.index = t1; _.state = t2; _.value = t3; }, _SliverReorderableListState_State_TickerProviderStateMixin: function _SliverReorderableListState_State_TickerProviderStateMixin() { }, RouteInformation: function RouteInformation(t0, t1) { this.location = t0; this.state = t1; }, StyledToastPosition: function StyledToastPosition() { }, StyledToastAnimation: function StyledToastAnimation(t0) { this._styled_toast_enum$_name = t0; }, ByteStream: function ByteStream(t0) { this._stream = t0; }, ByteStream_toBytes_closure: function ByteStream_toBytes_closure(t0) { this.completer = t0; }, CaseInsensitiveMap$from: function(other, $V) { var t1 = new Z.CaseInsensitiveMap(new Z.CaseInsensitiveMap$from_closure(), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, $V._eval$1("MapEntry")), $V._eval$1("CaseInsensitiveMap<0>")); t1.addAll$1(0, other); return t1; }, CaseInsensitiveMap: function CaseInsensitiveMap(t0, t1, t2) { this._canonicalize = t0; this._base = t1; this.$ti = t2; }, CaseInsensitiveMap$from_closure: function CaseInsensitiveMap$from_closure() { }, AuthRepository: function AuthRepository() { }, CompanyGatewayRepository: function CompanyGatewayRepository() { }, _$AuthState$_: function(email, isAuthenticated, isInitialized, lastEnteredPasswordAt, referralCode, url) { return new Z._$AuthState(email, url, isInitialized, isAuthenticated, lastEnteredPasswordAt, referralCode); }, AuthState: function AuthState() { }, _$AuthStateSerializer: function _$AuthStateSerializer() { }, _$AuthState: function _$AuthState(t0, t1, t2, t3, t4, t5) { var _ = this; _.email = t0; _.url = t1; _.isInitialized = t2; _.isAuthenticated = t3; _.lastEnteredPasswordAt = t4; _.referralCode = t5; _._auth_state$__hashCode = null; }, AuthStateBuilder: function AuthStateBuilder() { var _ = this; _._referralCode = _._lastEnteredPasswordAt = _._isAuthenticated = _._isInitialized = _._auth_state$_url = _._auth_state$_email = _._$v = null; }, dropdownInvoiceSelector: function(invoiceMap, clientMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix) { var t1 = J.where$1$ax(invoiceList._list, new Z.dropdownInvoiceSelector_closure(invoiceMap, excludedIds, clientId, clientMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Z.dropdownInvoiceSelector_closure0(invoiceMap, clientMap, recurringPrefix, userMap)); return list; }, filteredInvoicesSelector: function(selectionState, invoiceMap, invoiceList, clientMap, paymentMap, invoiceListState, userMap, recurringPrefix) { var t1, list, filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, invoicePaymentMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_List_legacy_String); if (filterEntityType === C.EntityType_payment) J.forEach$1$ax(paymentMap._map$_map, new Z.filteredInvoicesSelector_closure(invoicePaymentMap)); t1 = J.where$1$ax(invoiceList._list, new Z.filteredInvoicesSelector_closure0(invoiceMap, clientMap, selectionState, filterEntityType, filterEntityId, invoicePaymentMap, invoiceListState)); list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new Z.filteredInvoicesSelector_closure1(invoiceMap, invoiceListState, clientMap, userMap, recurringPrefix)); return list; }, invoiceStatsForClient: function(clientId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new Z.invoiceStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForDesign: function(designId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new Z.invoiceStatsForDesign_closure(t1, designId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForSubscription: function(subscriptionId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new Z.invoiceStatsForSubscription_closure(t1, subscriptionId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, invoiceStatsForUser: function(userId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new Z.invoiceStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, precisionForInvoice: function(state, invoice) { var currency, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, client = J.$index$asx(t1._list, t2).clientState.$get$1(0, invoice.clientId); t2 = state.staticState.currencyMap; t1 = client.settings.currencyId; currency = J.$index$asx(t2._map$_map, t1); t1 = currency == null ? null : currency.precision; return t1 == null ? 2 : t1; }, hasInvoiceChanges: function(invoice, invoiceMap) { var t1; if (invoice.get$isNew()) t1 = invoice.isChanged; else { t1 = invoice.id; t1 = !invoice.$eq(0, J.$index$asx(invoiceMap._map$_map, t1)); } return t1; }, memoizedDropdownInvoiceList_closure: function memoizedDropdownInvoiceList_closure() { }, dropdownInvoiceSelector_closure: function dropdownInvoiceSelector_closure(t0, t1, t2, t3) { var _ = this; _.invoiceMap = t0; _.excludedIds = t1; _.clientId = t2; _.clientMap = t3; }, dropdownInvoiceSelector_closure0: function dropdownInvoiceSelector_closure0(t0, t1, t2, t3) { var _ = this; _.invoiceMap = t0; _.clientMap = t1; _.recurringPrefix = t2; _.userMap = t3; }, memoizedFilteredInvoiceList_closure: function memoizedFilteredInvoiceList_closure() { }, filteredInvoicesSelector_closure: function filteredInvoicesSelector_closure(t0) { this.invoicePaymentMap = t0; }, filteredInvoicesSelector__closure0: function filteredInvoicesSelector__closure0(t0, t1) { this.invoicePaymentMap = t0; this.payment = t1; }, filteredInvoicesSelector_closure0: function filteredInvoicesSelector_closure0(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.invoiceMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.invoicePaymentMap = t5; _.invoiceListState = t6; }, filteredInvoicesSelector__closure: function filteredInvoicesSelector__closure(t0, t1) { this._box_0 = t0; this.filterEntityId = t1; }, filteredInvoicesSelector_closure1: function filteredInvoicesSelector_closure1(t0, t1, t2, t3, t4) { var _ = this; _.invoiceMap = t0; _.invoiceListState = t1; _.clientMap = t2; _.userMap = t3; _.recurringPrefix = t4; }, memoizedInvoiceStatsForClient_closure: function memoizedInvoiceStatsForClient_closure() { }, invoiceStatsForClient_closure: function invoiceStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedInvoiceStatsForDesign_closure: function memoizedInvoiceStatsForDesign_closure() { }, invoiceStatsForDesign_closure: function invoiceStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedInvoiceStatsForSubscription_closure: function memoizedInvoiceStatsForSubscription_closure() { }, invoiceStatsForSubscription_closure: function invoiceStatsForSubscription_closure(t0, t1) { this._box_0 = t0; this.subscriptionId = t1; }, memoizedInvoiceStatsForUser_closure: function memoizedInvoiceStatsForUser_closure() { }, invoiceStatsForUser_closure: function invoiceStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, handleProductAction: function(context, products, action) { var store, state, t1, t2, productIds, product, invoice, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (products.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = H._arrayInstanceType(products)._eval$1("MappedListIterable<1,String*>"); productIds = P.List_List$of(new H.MappedListIterable(products, new Z.handleProductAction_closure(), t2), true, t2._eval$1("ListIterable.E")); product = C.JSArray_methods.get$first(products); switch (action) { case C.EntityAction_newInvoice: invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, state, _null); M.createEntity(_null, _null, context, invoice.rebuild$1(new Z.handleProductAction_closure0(productIds, state, invoice)), _null, false); break; case C.EntityAction_edit: M.editEntity(_null, context, product, _null); break; case C.EntityAction_clone: type$.legacy_ProductEntity._as(product); M.createEntity(_null, _null, context, product.get$clone(product), _null, false); break; case C.EntityAction_restore: t2 = productIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_products"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_product"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.RestoreProductsRequest(t1, productIds)); break; case C.EntityAction_archive: t2 = productIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_products"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_product"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.ArchiveProductsRequest(t1, productIds)); break; case C.EntityAction_delete: t2 = productIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_products"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_product"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.DeleteProductsRequest(t1, productIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.productUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.StartProductMultiselect()); t1 = products.length; if (t1 === 0) break; for (_i = 0; _i < products.length; products.length === t1 || (0, H.throwConcurrentModificationError)(products), ++_i) { product = products[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.productUIState.listUIState; t3 = J.get$id$x(product); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Z.AddToProductMultiselect(product)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new Z.RemoveFromProductMultiselect(product)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([product], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewProductList: function ViewProductList() { }, ViewProduct: function ViewProduct(t0) { this.productId = t0; }, EditProduct: function EditProduct(t0) { this.product = t0; }, UpdateProduct: function UpdateProduct(t0) { this.product = t0; }, LoadProductRequest: function LoadProductRequest() { }, LoadProduct: function LoadProduct(t0, t1) { this.completer = t0; this.productId = t1; }, LoadProductSuccess: function LoadProductSuccess(t0) { this.product = t0; }, LoadProductFailure: function LoadProductFailure(t0) { this.error = t0; }, LoadProducts: function LoadProducts() { }, LoadProductsRequest: function LoadProductsRequest() { }, LoadProductsFailure: function LoadProductsFailure(t0) { this.error = t0; }, LoadProductsSuccess: function LoadProductsSuccess(t0) { this.products = t0; }, SaveProductRequest: function SaveProductRequest(t0, t1) { this.completer = t0; this.product = t1; }, SaveProductSuccess: function SaveProductSuccess(t0) { this.product = t0; }, AddProductSuccess: function AddProductSuccess(t0) { this.product = t0; }, SaveProductFailure: function SaveProductFailure() { }, ArchiveProductsRequest: function ArchiveProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, ArchiveProductsSuccess: function ArchiveProductsSuccess(t0) { this.products = t0; }, ArchiveProductsFailure: function ArchiveProductsFailure() { }, DeleteProductsRequest: function DeleteProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, DeleteProductsSuccess: function DeleteProductsSuccess(t0) { this.products = t0; }, DeleteProductsFailure: function DeleteProductsFailure() { }, RestoreProductsRequest: function RestoreProductsRequest(t0, t1) { this.completer = t0; this.productIds = t1; }, RestoreProductsSuccess: function RestoreProductsSuccess(t0) { this.products = t0; }, RestoreProductsFailure: function RestoreProductsFailure() { }, FilterProducts: function FilterProducts(t0) { this.filter = t0; }, SortProducts: function SortProducts(t0) { this.field = t0; }, FilterProductsByState: function FilterProductsByState(t0) { this.state = t0; }, FilterProductsByCustom1: function FilterProductsByCustom1(t0) { this.value = t0; }, FilterProductsByCustom2: function FilterProductsByCustom2(t0) { this.value = t0; }, FilterProductsByCustom3: function FilterProductsByCustom3(t0) { this.value = t0; }, FilterProductsByCustom4: function FilterProductsByCustom4(t0) { this.value = t0; }, handleProductAction_closure: function handleProductAction_closure() { }, handleProductAction_closure0: function handleProductAction_closure0(t0, t1, t2) { this.productIds = t0; this.state = t1; this.invoice = t2; }, handleProductAction__closure: function handleProductAction__closure(t0, t1) { this.state = t0; this.invoice = t1; }, StartProductMultiselect: function StartProductMultiselect() { }, AddToProductMultiselect: function AddToProductMultiselect(t0) { this.entity = t0; }, RemoveFromProductMultiselect: function RemoveFromProductMultiselect(t0) { this.entity = t0; }, ClearProductMultiselect: function ClearProductMultiselect() { }, SaveProductDocumentRequest: function SaveProductDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.product = t2; }, SaveProductDocumentFailure: function SaveProductDocumentFailure() { }, UpdateProductTab: function UpdateProductTab(t0) { this.tabIndex = t0; }, taxRateUIReducer: function(state, action) { var t1; state.toString; t1 = new Q.TaxRateUIStateBuilder(); t1._tax_rate_state$_$v = state; new Z.taxRateUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing16: function(taxRate, action) { var _null = null; return T.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null); }, _updateEditing17: function(taxRate, action) { return action.get$taxRate(); }, _viewTaxRateList0: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._viewTaxRateList_closure()); }, _filterTaxRatesByState: function(taxRateListState, action) { var t1 = taxRateListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return taxRateListState.rebuild$1(new Z._filterTaxRatesByState_closure(action)); else return taxRateListState.rebuild$1(new Z._filterTaxRatesByState_closure0(action)); }, _filterTaxRates: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._filterTaxRates_closure(action, taxRateListState)); }, _sortTaxRates: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._sortTaxRates_closure(action)); }, _startListMultiselect18: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._startListMultiselect_closure8()); }, _addToListMultiselect18: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._addToListMultiselect_closure8(action)); }, _removeFromListMultiselect18: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._removeFromListMultiselect_closure8(action)); }, _clearListMultiselect18: function(taxRateListState, action) { return taxRateListState.rebuild$1(new Z._clearListMultiselect_closure8()); }, _archiveTaxRateSuccess: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._archiveTaxRateSuccess_closure(action)); }, _deleteTaxRateSuccess: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._deleteTaxRateSuccess_closure(action)); }, _restoreTaxRateSuccess: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._restoreTaxRateSuccess_closure(action)); }, _addTaxRate: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._addTaxRate_closure(action)); }, _updateTaxRate: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._updateTaxRate_closure(action)); }, _setLoadedTaxRate: function(taxRateState, action) { return taxRateState.rebuild$1(new Z._setLoadedTaxRate_closure(action)); }, _setLoadedTaxRates: function(taxRateState, action) { var state = taxRateState.rebuild$1(new Z._setLoadedTaxRates_closure(action)); return state.rebuild$1(new Z._setLoadedTaxRates_closure0(state)); }, _setLoadedCompany17: function(taxRateState, action) { var state = taxRateState.rebuild$1(new Z._setLoadedCompany_closure3(action)); return state.rebuild$1(new Z._setLoadedCompany_closure4(state)); }, taxRateUIReducer_closure: function taxRateUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure67: function forceSelectedReducer_closure67() { }, forceSelectedReducer_closure68: function forceSelectedReducer_closure68() { }, forceSelectedReducer_closure69: function forceSelectedReducer_closure69() { }, forceSelectedReducer_closure70: function forceSelectedReducer_closure70() { }, selectedIdReducer_closure134: function selectedIdReducer_closure134() { }, selectedIdReducer_closure135: function selectedIdReducer_closure135() { }, selectedIdReducer_closure136: function selectedIdReducer_closure136() { }, selectedIdReducer_closure137: function selectedIdReducer_closure137() { }, selectedIdReducer_closure138: function selectedIdReducer_closure138() { }, selectedIdReducer_closure139: function selectedIdReducer_closure139() { }, selectedIdReducer_closure140: function selectedIdReducer_closure140() { }, selectedIdReducer_closure141: function selectedIdReducer_closure141() { }, selectedIdReducer_closure142: function selectedIdReducer_closure142() { }, selectedIdReducer_closure143: function selectedIdReducer_closure143() { }, editingReducer_closure39: function editingReducer_closure39() { }, editingReducer_closure40: function editingReducer_closure40() { }, editingReducer_closure41: function editingReducer_closure41() { }, editingReducer_closure42: function editingReducer_closure42() { }, editingReducer__closure14: function editingReducer__closure14() { }, _viewTaxRateList_closure: function _viewTaxRateList_closure() { }, _filterTaxRatesByState_closure: function _filterTaxRatesByState_closure(t0) { this.action = t0; }, _filterTaxRatesByState_closure0: function _filterTaxRatesByState_closure0(t0) { this.action = t0; }, _filterTaxRates_closure: function _filterTaxRates_closure(t0, t1) { this.action = t0; this.taxRateListState = t1; }, _sortTaxRates_closure: function _sortTaxRates_closure(t0) { this.action = t0; }, _startListMultiselect_closure8: function _startListMultiselect_closure8() { }, _addToListMultiselect_closure8: function _addToListMultiselect_closure8(t0) { this.action = t0; }, _removeFromListMultiselect_closure8: function _removeFromListMultiselect_closure8(t0) { this.action = t0; }, _clearListMultiselect_closure8: function _clearListMultiselect_closure8() { }, _archiveTaxRateSuccess_closure: function _archiveTaxRateSuccess_closure(t0) { this.action = t0; }, _deleteTaxRateSuccess_closure: function _deleteTaxRateSuccess_closure(t0) { this.action = t0; }, _restoreTaxRateSuccess_closure: function _restoreTaxRateSuccess_closure(t0) { this.action = t0; }, _addTaxRate_closure: function _addTaxRate_closure(t0) { this.action = t0; }, _updateTaxRate_closure: function _updateTaxRate_closure(t0) { this.action = t0; }, _setLoadedTaxRate_closure: function _setLoadedTaxRate_closure(t0) { this.action = t0; }, _setLoadedTaxRates_closure: function _setLoadedTaxRates_closure(t0) { this.action = t0; }, _setLoadedTaxRates__closure: function _setLoadedTaxRates__closure() { }, _setLoadedTaxRates__closure0: function _setLoadedTaxRates__closure0() { }, _setLoadedTaxRates_closure0: function _setLoadedTaxRates_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure3: function _setLoadedCompany_closure3(t0) { this.action = t0; }, _setLoadedCompany__closure3: function _setLoadedCompany__closure3() { }, _setLoadedCompany__closure4: function _setLoadedCompany__closure4() { }, _setLoadedCompany_closure4: function _setLoadedCompany_closure4(t0) { this.state = t0; }, AppBottomBar$: function(customValues1, customValues2, customValues3, customValues4, defaultTableColumns, entityType, hideListOptions, iconButtons, onCheckboxPressed, onSelectedCustom1, onSelectedCustom2, onSelectedCustom3, onSelectedCustom4, onSelectedSortField, onSelectedState, onSelectedStatus, sortFields, statuses, tableColumns) { return new Z.AppBottomBar(entityType, sortFields, statuses, onCheckboxPressed, onSelectedSortField, onSelectedState, onSelectedStatus, onSelectedCustom1, onSelectedCustom2, onSelectedCustom3, onSelectedCustom4, customValues1, customValues2, customValues3, customValues4, tableColumns, defaultTableColumns, hideListOptions, iconButtons, null); }, AppBottomBar: function AppBottomBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.entityType = t0; _.sortFields = t1; _.statuses = t2; _.onCheckboxPressed = t3; _.onSelectedSortField = t4; _.onSelectedState = t5; _.onSelectedStatus = t6; _.onSelectedCustom1 = t7; _.onSelectedCustom2 = t8; _.onSelectedCustom3 = t9; _.onSelectedCustom4 = t10; _.customValues1 = t11; _.customValues2 = t12; _.customValues3 = t13; _.customValues4 = t14; _.tableColumns = t15; _.defaultTableColumns = t16; _.hideListOptions = t17; _.iconButtons = t18; _.key = t19; }, _AppBottomBarState: function _AppBottomBarState(t0) { var _ = this; _._widget = _._filterCustom4Controller = _._filterCustom3Controller = _._filterCustom2Controller = _._filterCustom1Controller = _._filterStatusController = _._filterStateController = _._sortController = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AppBottomBarState_build_closure0: function _AppBottomBarState_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure14: function _AppBottomBarState_build__closure14(t0) { this.$this = t0; }, _AppBottomBarState_build___closure8: function _AppBottomBarState_build___closure8(t0) { this.$this = t0; }, _AppBottomBarState_build___closure7: function _AppBottomBarState_build___closure7(t0) { this.$this = t0; }, _AppBottomBarState_build____closure1: function _AppBottomBarState_build____closure1(t0, t1, t2) { this.$this = t0; this.context = t1; this.stateFilters = t2; }, _AppBottomBarState_build_____closure2: function _AppBottomBarState_build_____closure2(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build__closure15: function _AppBottomBarState_build__closure15(t0) { this.$this = t0; }, _AppBottomBarState_build_closure1: function _AppBottomBarState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure12: function _AppBottomBarState_build__closure12(t0) { this.$this = t0; }, _AppBottomBarState_build___closure6: function _AppBottomBarState_build___closure6(t0) { this.$this = t0; }, _AppBottomBarState_build___closure5: function _AppBottomBarState_build___closure5(t0) { this.$this = t0; }, _AppBottomBarState_build____closure0: function _AppBottomBarState_build____closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.statusFilters = t2; }, _AppBottomBarState_build_____closure1: function _AppBottomBarState_build_____closure1(t0, t1) { this.$this = t0; this.status = t1; }, _AppBottomBarState_build__closure13: function _AppBottomBarState_build__closure13(t0) { this.$this = t0; }, _AppBottomBarState_build_closure6: function _AppBottomBarState_build_closure6(t0, t1) { this.$this = t0; this.context = t1; }, _AppBottomBarState_build__closure2: function _AppBottomBarState_build__closure2(t0) { this.$this = t0; }, _AppBottomBarState_build___closure0: function _AppBottomBarState_build___closure0(t0) { this.$this = t0; }, _AppBottomBarState_build___closure: function _AppBottomBarState_build___closure(t0) { this.$this = t0; }, _AppBottomBarState_build____closure: function _AppBottomBarState_build____closure(t0, t1, t2) { this.$this = t0; this.context = t1; this.listUIState = t2; }, _AppBottomBarState_build_____closure0: function _AppBottomBarState_build_____closure0(t0, t1) { this.$this = t0; this.sortField = t1; }, _AppBottomBarState_build_____closure: function _AppBottomBarState_build_____closure(t0, t1, t2) { this.$this = t0; this.listUIState = t1; this.field = t2; }, _AppBottomBarState_build__closure3: function _AppBottomBarState_build__closure3(t0) { this.$this = t0; }, _AppBottomBarState_build_closure2: function _AppBottomBarState_build_closure2(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure10: function _AppBottomBarState_build__closure10(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure4: function _AppBottomBarState_build___closure4(t0) { this.$this = t0; }, _AppBottomBarState_build__closure11: function _AppBottomBarState_build__closure11(t0) { this.$this = t0; }, _AppBottomBarState_build_closure3: function _AppBottomBarState_build_closure3(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure8: function _AppBottomBarState_build__closure8(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure3: function _AppBottomBarState_build___closure3(t0) { this.$this = t0; }, _AppBottomBarState_build__closure9: function _AppBottomBarState_build__closure9(t0) { this.$this = t0; }, _AppBottomBarState_build_closure4: function _AppBottomBarState_build_closure4(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure6: function _AppBottomBarState_build__closure6(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure2: function _AppBottomBarState_build___closure2(t0) { this.$this = t0; }, _AppBottomBarState_build__closure7: function _AppBottomBarState_build__closure7(t0) { this.$this = t0; }, _AppBottomBarState_build_closure5: function _AppBottomBarState_build_closure5(t0, t1, t2) { this.$this = t0; this.context = t1; this.state = t2; }, _AppBottomBarState_build__closure4: function _AppBottomBarState_build__closure4(t0, t1) { this.$this = t0; this.state = t1; }, _AppBottomBarState_build___closure1: function _AppBottomBarState_build___closure1(t0) { this.$this = t0; }, _AppBottomBarState_build__closure5: function _AppBottomBarState_build__closure5(t0) { this.$this = t0; }, _AppBottomBarState_build_closure: function _AppBottomBarState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.state = t1; _._showFilterStateSheet = t2; _._showFilterStatusSheet = t3; _._showFilterCustom1Sheet = t4; _._showFilterCustom2Sheet = t5; _._showFilterCustom3Sheet = t6; _._showFilterCustom4Sheet = t7; _._showSortSheet = t8; }, _AppBottomBarState_build_closure__onColumnsPressed: function _AppBottomBarState_build_closure__onColumnsPressed(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.store = t2; _.state = t3; }, _AppBottomBarState_build___onColumnsPressed_closure: function _AppBottomBarState_build___onColumnsPressed_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.store = t1; _.state = t2; _.context = t3; }, _AppBottomBarState_build___onColumnsPressed__closure: function _AppBottomBarState_build___onColumnsPressed__closure(t0, t1) { this.$this = t0; this.selected = t1; }, _AppBottomBarState_build___onColumnsPressed__closure0: function _AppBottomBarState_build___onColumnsPressed__closure0(t0) { this.settings = t0; }, _AppBottomBarState_build___onColumnsPressed__closure1: function _AppBottomBarState_build___onColumnsPressed__closure1(t0) { this.userCompany = t0; }, _AppBottomBarState_build__closure: function _AppBottomBarState_build__closure(t0) { this.$this = t0; }, _AppBottomBarState_build__closure0: function _AppBottomBarState_build__closure0(t0) { this.store = t0; }, _AppBottomBarState_build__closure1: function _AppBottomBarState_build__closure1(t0) { this.store = t0; }, CustomFieldSelector: function CustomFieldSelector(t0, t1, t2, t3, t4) { var _ = this; _.customNumber = t0; _.entityType = t1; _.customValues = t2; _.onSelected = t3; _.key = t4; }, CustomFieldSelector_build_closure0: function CustomFieldSelector_build_closure0(t0) { this.$this = t0; }, CustomFieldSelector_build_closure: function CustomFieldSelector_build_closure(t0) { this.$this = t0; }, CustomFieldSelector_build__closure: function CustomFieldSelector_build__closure(t0, t1, t2) { this.$this = t0; this.customFilters = t1; this.context = t2; }, CustomFieldSelector_build___closure: function CustomFieldSelector_build___closure(t0, t1) { this.$this = t0; this.customField = t1; }, BottomButtons: function BottomButtons(t0, t1, t2, t3, t4, t5) { var _ = this; _.entity = t0; _.action1 = t1; _.action2 = t2; _.action1Enabled = t3; _.action2Enabled = t4; _.key = t5; }, BottomButtons_build_closure: function BottomButtons_build_closure(t0) { this.$this = t0; }, BottomButtons_build_closure0: function BottomButtons_build_closure0(t0) { this.$this = t0; }, AppToggleButtons: function AppToggleButtons(t0, t1, t2, t3) { var _ = this; _.tabLabels = t0; _.selectedIndex = t1; _.onTabChanged = t2; _.key = t3; }, AppToggleButtons_build_closure: function AppToggleButtons_build_closure(t0) { this.$this = t0; }, LinkTextSpan$: function(style, text, url) { var t1 = N.TapGestureRecognizer$(null); t1.onTap = new Z.LinkTextSpan_closure(url); return new Z.LinkTextSpan(text, null, t1, C.SystemMouseCursor_click, style); }, LinkTextSpan: function LinkTextSpan(t0, t1, t2, t3, t4) { var _ = this; _.text = t0; _.children = t1; _.recognizer = t2; _.mouseCursor = t3; _.style = t4; }, LinkTextSpan_closure: function LinkTextSpan_closure(t0) { this.url = t0; }, LockScreen: function LockScreen(t0, t1) { this.onAuthenticatePressed = t0; this.key = t1; }, ClientOverview: function ClientOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, ClientOverview_build_closure: function ClientOverview_build_closure(t0, t1, t2, t3) { var _ = this; _.state = t0; _.gatewayMap = t1; _.linkMap = t2; _.tokenMap = t3; }, ClientOverview_build_closure0: function ClientOverview_build_closure0() { }, ClientOverview_build_closure1: function ClientOverview_build_closure1(t0, t1) { this.linkMap = t0; this.customerReference = t1; }, ClientOverview_build_closure2: function ClientOverview_build_closure2() { }, ClientOverview_build_closure3: function ClientOverview_build_closure3() { }, CompanyGatewayListItem: function CompanyGatewayListItem(t0, t1, t2, t3, t4, t5) { var _ = this; _.user = t0; _.companyGateway = t1; _.filter = t2; _.onRemovePressed = t3; _.isChecked = t4; _.key = t5; }, CompanyGatewayListItem_build_closure0: function CompanyGatewayListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, CompanyGatewayListItem_build_closure: function CompanyGatewayListItem_build_closure(t0) { this.$this = t0; }, DocumentEdit: function DocumentEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _DocumentEditState: function _DocumentEditState(t0, t1, t2) { var _ = this; _._document_edit$_debouncer = t0; _._document_edit$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DocumentEditState_didChangeDependencies_closure: function _DocumentEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DocumentEditState_didChangeDependencies_closure0: function _DocumentEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _DocumentEditState_dispose_closure: function _DocumentEditState_dispose_closure(t0) { this.$this = t0; }, _DocumentEditState__onChanged_closure: function _DocumentEditState__onChanged_closure() { }, _DocumentEditState__onChanged_closure0: function _DocumentEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.document = t1; }, _DocumentEditState_build_closure0: function _DocumentEditState_build_closure0(t0) { this.viewModel = t0; }, _DocumentEditState_build_closure: function _DocumentEditState_build_closure() { }, InvoiceEditNotes: function InvoiceEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditNotesState: function InvoiceEditNotesState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _._invoice_edit_notes$_publicNotesController = t0; _._invoice_edit_notes$_privateNotesController = t1; _._invoice_edit_notes$_termsController = t2; _._invoice_edit_notes$_footerController = t3; _._invoice_edit_notes$_controllers = t4; _._invoice_edit_notes$_debouncer = t5; _._widget = null; _._debugLifecycleState = t6; _._framework$_element = null; }, InvoiceEditNotesState_didChangeDependencies_closure: function InvoiceEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, InvoiceEditNotesState_didChangeDependencies_closure0: function InvoiceEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, InvoiceEditNotesState_dispose_closure: function InvoiceEditNotesState_dispose_closure(t0) { this.$this = t0; }, InvoiceEditNotesState__onChanged_closure: function InvoiceEditNotesState__onChanged_closure(t0) { this.$this = t0; }, InvoiceEditNotesState__onChanged_closure0: function InvoiceEditNotesState__onChanged_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, PaymentTermScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).paymentTermState.toString; t5 = $.$get$memoizedFilteredPaymentTermList(); t6 = state.getUISelection$1(C.EntityType_paymentTerm); t7 = t4.$index(t1, t3).paymentTermState.map; t8 = t4.$index(t1, t3).paymentTermState.list; t2 = t2.paymentTermUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new Z.PaymentTermScreenVM(t8); }, PaymentTermScreenBuilder: function PaymentTermScreenBuilder(t0) { this.key = t0; }, PaymentTermScreenBuilder_build_closure: function PaymentTermScreenBuilder_build_closure() { }, PaymentTermScreenVM: function PaymentTermScreenVM(t0) { this.paymentTermList = t0; }, ProductView: function ProductView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ProductViewState: function _ProductViewState(t0, t1) { var _ = this; _._product_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ProductViewState_build_closure: function _ProductViewState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.product = t2; }, _ProductViewState_build__closure: function _ProductViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ProductViewState_build__closure0: function _ProductViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, __ProductViewState_State_SingleTickerProviderStateMixin: function __ProductViewState_State_SingleTickerProviderStateMixin() { }, ProjectScreen: function ProjectScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ProjectScreen_build_closure9: function ProjectScreen_build_closure9(t0) { this.store = t0; }, ProjectScreen_build_closure7: function ProjectScreen_build_closure7(t0) { this.store = t0; }, ProjectScreen_build_closure8: function ProjectScreen_build_closure8(t0) { this.store = t0; }, ProjectScreen_build_closure4: function ProjectScreen_build_closure4(t0) { this.store = t0; }, ProjectScreen_build_closure0: function ProjectScreen_build_closure0(t0) { this.store = t0; }, ProjectScreen_build_closure1: function ProjectScreen_build_closure1(t0) { this.store = t0; }, ProjectScreen_build_closure2: function ProjectScreen_build_closure2(t0) { this.store = t0; }, ProjectScreen_build_closure3: function ProjectScreen_build_closure3(t0) { this.store = t0; }, ProjectScreen_build_closure5: function ProjectScreen_build_closure5(t0) { this.store = t0; }, ProjectScreen_build_closure: function ProjectScreen_build_closure(t0) { this.store = t0; }, ProjectScreen_build_closure6: function ProjectScreen_build_closure6(t0) { this.context = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore: function(store) { var t4, t5, recurringExpense, _null = null, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).recurringExpenseState.map; t2 = t2.recurringExpenseUIState.selectedId; recurringExpense = J.$index$asx(t5._map$_map, t2); if (recurringExpense == null) recurringExpense = M.ExpenseEntity_ExpenseEntity(_null, _null, t2, _null, _null, _null, _null); t1 = t4.$index(t1, t3).userCompany.company; recurringExpense.get$isNew(); return new Z.RecurringExpenseViewVM(state, recurringExpense, t1, new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure(new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh(store, recurringExpense)), new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0(store, recurringExpense), new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1(store, recurringExpense)); }, RecurringExpenseViewScreen: function RecurringExpenseViewScreen(t0) { this.key = t0; }, RecurringExpenseViewScreen_build_closure0: function RecurringExpenseViewScreen_build_closure0() { }, RecurringExpenseViewScreen_build_closure: function RecurringExpenseViewScreen_build_closure(t0) { this.$this = t0; }, RecurringExpenseViewVM: function RecurringExpenseViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.expense = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0(t0) { this.context = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1() { }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure(t0) { this.error = t0; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.recurringExpense = t1; }, RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure: function RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure(t0, t1) { this.store = t0; this.recurringExpense = t1; }, InvoiceDesign: function InvoiceDesign(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceDesignState: function _InvoiceDesignState(t0, t1) { var _ = this; _._invoice_design$_focusNode = _._invoice_design$_controller = null; _._updateAllCreditDesigns = _._updateAllQuoteDesigns = _._updateAllInvoiceDesigns = _._wasCreditDesignChanged = _._wasQuoteDesignChanged = _._wasInvoiceDesignChanged = false; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InvoiceDesignState_build_closure49: function _InvoiceDesignState_build_closure49(t0, t1) { this.$this = t0; this.viewModel = t1; }, _InvoiceDesignState_build_closure15: function _InvoiceDesignState_build_closure15(t0, t1, t2) { this.state = t0; this.context = t1; this.store = t2; }, _InvoiceDesignState_build_closure: function _InvoiceDesignState_build_closure(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure14: function _InvoiceDesignState_build__closure14(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure15: function _InvoiceDesignState_build__closure15(t0) { this.value = t0; }, _InvoiceDesignState_build_closure0: function _InvoiceDesignState_build_closure0(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure13: function _InvoiceDesignState_build__closure13(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure1: function _InvoiceDesignState_build_closure1(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure11: function _InvoiceDesignState_build__closure11(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure12: function _InvoiceDesignState_build__closure12(t0) { this.value = t0; }, _InvoiceDesignState_build_closure2: function _InvoiceDesignState_build_closure2(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure10: function _InvoiceDesignState_build__closure10(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure3: function _InvoiceDesignState_build_closure3(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.settings = t2; }, _InvoiceDesignState_build__closure8: function _InvoiceDesignState_build__closure8(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure9: function _InvoiceDesignState_build__closure9(t0) { this.value = t0; }, _InvoiceDesignState_build_closure4: function _InvoiceDesignState_build_closure4(t0) { this.$this = t0; }, _InvoiceDesignState_build__closure7: function _InvoiceDesignState_build__closure7(t0, t1) { this.$this = t0; this.value = t1; }, _InvoiceDesignState_build_closure5: function _InvoiceDesignState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure6: function _InvoiceDesignState_build__closure6(t0) { this.value = t0; }, _InvoiceDesignState_build_closure6: function _InvoiceDesignState_build_closure6(t0) { this.localization = t0; }, _InvoiceDesignState_build_closure7: function _InvoiceDesignState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure5: function _InvoiceDesignState_build__closure5(t0) { this.value = t0; }, _InvoiceDesignState_build_closure8: function _InvoiceDesignState_build_closure8(t0) { this.localization = t0; }, _InvoiceDesignState_build_closure9: function _InvoiceDesignState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure4: function _InvoiceDesignState_build__closure4(t0) { this.value = t0; }, _InvoiceDesignState_build_closure10: function _InvoiceDesignState_build_closure10() { }, _InvoiceDesignState_build_closure11: function _InvoiceDesignState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure3: function _InvoiceDesignState_build__closure3(t0) { this.font = t0; }, _InvoiceDesignState_build_closure12: function _InvoiceDesignState_build_closure12(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure2: function _InvoiceDesignState_build__closure2(t0) { this.font = t0; }, _InvoiceDesignState_build_closure13: function _InvoiceDesignState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure1: function _InvoiceDesignState_build__closure1(t0) { this.value = t0; }, _InvoiceDesignState_build_closure14: function _InvoiceDesignState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure0: function _InvoiceDesignState_build__closure0(t0) { this.value = t0; }, _InvoiceDesignState_build_closure16: function _InvoiceDesignState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build__closure: function _InvoiceDesignState_build__closure(t0) { this.value = t0; }, _InvoiceDesignState_build_closure17: function _InvoiceDesignState_build_closure17() { }, _InvoiceDesignState_build_closure18: function _InvoiceDesignState_build_closure18() { }, _InvoiceDesignState_build_closure19: function _InvoiceDesignState_build_closure19() { }, _InvoiceDesignState_build_closure20: function _InvoiceDesignState_build_closure20() { }, _InvoiceDesignState_build_closure21: function _InvoiceDesignState_build_closure21(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure22: function _InvoiceDesignState_build_closure22() { }, _InvoiceDesignState_build_closure23: function _InvoiceDesignState_build_closure23() { }, _InvoiceDesignState_build_closure24: function _InvoiceDesignState_build_closure24(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure25: function _InvoiceDesignState_build_closure25() { }, _InvoiceDesignState_build_closure26: function _InvoiceDesignState_build_closure26() { }, _InvoiceDesignState_build_closure27: function _InvoiceDesignState_build_closure27(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure28: function _InvoiceDesignState_build_closure28() { }, _InvoiceDesignState_build_closure29: function _InvoiceDesignState_build_closure29() { }, _InvoiceDesignState_build_closure30: function _InvoiceDesignState_build_closure30() { }, _InvoiceDesignState_build_closure31: function _InvoiceDesignState_build_closure31(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure32: function _InvoiceDesignState_build_closure32() { }, _InvoiceDesignState_build_closure33: function _InvoiceDesignState_build_closure33() { }, _InvoiceDesignState_build_closure34: function _InvoiceDesignState_build_closure34() { }, _InvoiceDesignState_build_closure35: function _InvoiceDesignState_build_closure35(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure36: function _InvoiceDesignState_build_closure36() { }, _InvoiceDesignState_build_closure37: function _InvoiceDesignState_build_closure37() { }, _InvoiceDesignState_build_closure38: function _InvoiceDesignState_build_closure38() { }, _InvoiceDesignState_build_closure39: function _InvoiceDesignState_build_closure39(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure40: function _InvoiceDesignState_build_closure40() { }, _InvoiceDesignState_build_closure41: function _InvoiceDesignState_build_closure41() { }, _InvoiceDesignState_build_closure42: function _InvoiceDesignState_build_closure42(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure43: function _InvoiceDesignState_build_closure43() { }, _InvoiceDesignState_build_closure44: function _InvoiceDesignState_build_closure44() { }, _InvoiceDesignState_build_closure45: function _InvoiceDesignState_build_closure45(t0, t1) { this.viewModel = t0; this.settings = t1; }, _InvoiceDesignState_build_closure46: function _InvoiceDesignState_build_closure46() { }, _InvoiceDesignState_build_closure47: function _InvoiceDesignState_build_closure47() { }, _InvoiceDesignState_build_closure48: function _InvoiceDesignState_build_closure48(t0, t1) { this.viewModel = t0; this.settings = t1; }, __InvoiceDesignState_State_SingleTickerProviderStateMixin: function __InvoiceDesignState_State_SingleTickerProviderStateMixin() { }, TaxRateListItem: function TaxRateListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.taxRate = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, TaxRateListItem_build_closure1: function TaxRateListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, TaxRateListItem_build_closure0: function TaxRateListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, TaxRateListItem_build_closure: function TaxRateListItem_build_closure(t0) { this.$this = t0; }, VendorListItem: function VendorListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.vendor = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, VendorListItem_build_closure: function VendorListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.documents = t5; _.filterMatch = t6; _.textColor = t7; }, VendorListItem_build__closure2: function VendorListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, VendorListItem_build__closure1: function VendorListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, VendorListItem_build__closure: function VendorListItem_build__closure(t0) { this.$this = t0; }, VendorListItem_build__closure0: function VendorListItem_build__closure0(t0) { this.$this = t0; }, VendorListItem_build__closure5: function VendorListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, VendorListItem_build__closure4: function VendorListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, VendorListItem_build__closure3: function VendorListItem_build__closure3(t0) { this.$this = t0; }, _MdiIconData: function _MdiIconData(t0, t1, t2, t3) { var _ = this; _.codePoint = t0; _.fontFamily = t1; _.fontPackage = t2; _.matchTextDirection = t3; }, MethodChannelPathProvider: function MethodChannelPathProvider(t0, t1) { this.methodChannel = t0; this._instanceToken = t1; }, IgnorableValueNotifier$: function(_value, $T) { return new Z.IgnorableValueNotifier(_value, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function), new P.LinkedList(type$.LinkedList__ListenerEntry), $T._eval$1("IgnorableValueNotifier<0>")); }, IgnorableChangeNotifier: function IgnorableChangeNotifier() { }, IgnorableValueNotifier: function IgnorableValueNotifier(t0, t1, t2, t3) { var _ = this; _._ignorable_change_notifier$_value = t0; _._ignorableListeners = t1; _.ChangeNotifier__listeners = t2; _.$ti = t3; }, SentryFlutterWeb: function SentryFlutterWeb() { } }, B = {IntSerializer: function IntSerializer(t0) { this.types = t0; }, MultiImageStreamCompleter$: function(chunkEvents, codec, informationCollector, scale) { var t1 = new B.MultiImageStreamCompleter(scale, informationCollector, H.setRuntimeTypeInfo([], type$.JSArray_ImageStreamListener), H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function)); t1.MultiImageStreamCompleter$4$chunkEvents$codec$informationCollector$scale(chunkEvents, codec, informationCollector, scale); return t1; }, MultiImageStreamCompleter: function MultiImageStreamCompleter(t0, t1, t2, t3) { var _ = this; _._nextImageCodec = _._multi_image_stream_completer$_codec = null; _._multi_image_stream_completer$_scale = t0; _._multi_image_stream_completer$_informationCollector = t1; _._multi_image_stream_completer$_frameDuration = _._multi_image_stream_completer$_shownTimestamp = _._multi_image_stream_completer$_nextFrame = null; _._multi_image_stream_completer$_framesEmitted = 0; _._multi_image_stream_completer$_timer = null; _._multi_image_stream_completer$_frameCallbackScheduled = false; _._image_stream$_listeners = t2; _.debugLabel = _._currentError = _._currentImage = null; _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t3; }, MultiImageStreamCompleter_closure: function MultiImageStreamCompleter_closure(t0) { this.$this = t0; }, MultiImageStreamCompleter_closure0: function MultiImageStreamCompleter_closure0(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiImageStreamCompleter_closure1: function MultiImageStreamCompleter_closure1(t0, t1) { this.$this = t0; this.informationCollector = t1; }, BaseBarRendererElement: function BaseBarRendererElement() { }, BaseAnimatedBar: function BaseAnimatedBar() { }, Scale: function Scale() { }, MutableScale: function MutableScale() { }, ScaleOutputExtent: function ScaleOutputExtent(t0, t1) { this.start = t0; this.end = t1; }, RangeBandType: function RangeBandType(t0) { this._scale0$_name = t0; }, RangeBandConfig: function RangeBandConfig(t0, t1) { this.type = t0; this.size = t1; }, StepSizeType: function StepSizeType(t0) { this._scale0$_name = t0; }, StepSizeConfig: function StepSizeConfig() { }, Extents: function Extents() { }, NumericTickFormatter__getFormatter: function(numberFormat) { return new B.NumericTickFormatter__getFormatter_closure(numberFormat); }, SimpleTickFormatterBase: function SimpleTickFormatterBase() { }, SimpleTickFormatterBase_format_closure: function SimpleTickFormatterBase_format_closure(t0, t1) { this.$this = t0; this.cache = t1; }, OrdinalTickFormatter: function OrdinalTickFormatter() { }, NumericTickFormatter: function NumericTickFormatter(t0) { this.formatter = t0; }, NumericTickFormatter__getFormatter_closure: function NumericTickFormatter__getFormatter_closure(t0) { this.numberFormat = t0; }, DateTimeScale: function DateTimeScale(t0, t1) { this.dateTimeFactory = t0; this._linearScale = t1; }, HourTickFormatter: function HourTickFormatter(t0, t1, t2) { var _ = this; _.__HourTickFormatter__noonFormat = $; _._simpleFormat = t0; _._transitionFormat = t1; _.transitionField = t2; }, MinuteTimeStepper: function MinuteTimeStepper(t0, t1) { this._allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, BaseSeriesRenderer: function BaseSeriesRenderer() { }, BaseSeriesRenderer_assignMissingColors_closure: function BaseSeriesRenderer_assignMissingColors_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.missingColorCountPerCategory = t2; }, BaseSeriesRenderer_assignMissingColors__closure3: function BaseSeriesRenderer_assignMissingColors__closure3(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure0: function BaseSeriesRenderer_assignMissingColors_closure0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.palettes = t2; }, BaseSeriesRenderer_assignMissingColors__closure2: function BaseSeriesRenderer_assignMissingColors__closure2(t0) { this.color = t0; }, BaseSeriesRenderer_assignMissingColors_closure1: function BaseSeriesRenderer_assignMissingColors_closure1(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.colorsByCategory = t1; _.colorPalettes = t2; _.missingColorCountPerCategory = t3; }, BaseSeriesRenderer_assignMissingColors_closure2: function BaseSeriesRenderer_assignMissingColors_closure2(t0, t1, t2) { this.$this = t0; this.missingColorCountPerCategory = t1; this.colorsByCategory = t2; }, BaseSeriesRenderer_assignMissingColors__closure0: function BaseSeriesRenderer_assignMissingColors__closure0(t0) { this.color = t0; }, BaseSeriesRenderer_assignMissingColors__closure1: function BaseSeriesRenderer_assignMissingColors__closure1(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure3: function BaseSeriesRenderer_assignMissingColors_closure3(t0) { this.$this = t0; }, BaseSeriesRenderer_assignMissingColors__closure: function BaseSeriesRenderer_assignMissingColors__closure(t0) { this.series = t0; }, BaseSeriesRenderer_assignMissingColors_closure4: function BaseSeriesRenderer_assignMissingColors_closure4(t0) { this.$this = t0; }, SizeList: function SizeList(t0) { this._layout_margin_strategy$_sizes = t0; this._total = 0; }, _DesiredViewSizes: function _DesiredViewSizes(t0, t1) { this.preferredSizes = t0; this.minimumSizes = t1; }, VerticalMarginStrategy: function VerticalMarginStrategy() { }, VerticalMarginStrategy_measure_closure: function VerticalMarginStrategy_measure_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.fullHeight = t1; _.height = t2; _.measuredWidths = t3; }, LeftMarginLayoutStrategy: function LeftMarginLayoutStrategy() { }, LeftMarginLayoutStrategy_layout_closure: function LeftMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, RightMarginLayoutStrategy: function RightMarginLayoutStrategy() { }, RightMarginLayoutStrategy_layout_closure: function RightMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, HorizontalMarginStrategy: function HorizontalMarginStrategy() { }, HorizontalMarginStrategy_measure_closure: function HorizontalMarginStrategy_measure_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.fullWidth = t1; _.width = t2; _.measuredHeights = t3; }, TopMarginLayoutStrategy: function TopMarginLayoutStrategy() { }, TopMarginLayoutStrategy_layout_closure: function TopMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, BottomMarginLayoutStrategy: function BottomMarginLayoutStrategy() { }, BottomMarginLayoutStrategy_layout_closure: function BottomMarginLayoutStrategy_layout_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.measuredSizes = t1; _.fullBounds = t2; _.drawAreaBounds = t3; }, BaseSymbolRenderer: function BaseSymbolRenderer() { }, SymbolRenderer: function SymbolRenderer() { }, RoundedRectSymbolRenderer: function RoundedRectSymbolRenderer(t0, t1) { this.radius = t0; this.isSolid = t1; }, LineSymbolRenderer: function LineSymbolRenderer(t0, t1) { this.strokeWidth = t0; this.isSolid = t1; }, CircleSymbolRenderer: function CircleSymbolRenderer(t0) { this.isSolid = t0; }, SymbolRendererCanvas: function SymbolRendererCanvas(t0, t1) { this.commonSymbolRenderer = t0; this.dashPattern = t1; }, _SymbolCustomPaint: function _SymbolCustomPaint(t0, t1, t2, t3, t4) { var _ = this; _.context = t0; _.symbolRenderer = t1; _.color = t2; _.dashPattern = t3; _._repaint = t4; }, DirectoryNode$: function($parent) { var t2, t1 = new B.DirectoryNode(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Node_2), $parent); if ($parent == null) { t1.get$isRoot(); t2 = true; } else t2 = false; if (t2) H.throwExpression(C.FileSystemException_sV6); t1.RealNode$1($parent); return t1; }, Node0: function Node0() { }, RealNode: function RealNode() { }, DirectoryNode: function DirectoryNode(t0, t1) { var _ = this; _.children = t0; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node0$_parent = t1; }, RootNode: function RootNode(t0, t1, t2) { var _ = this; _.fs = t0; _.children = t1; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node0$_parent = t2; }, FileNode: function FileNode(t0, t1) { var _ = this; _._content = t0; _.__RealNode_accessed = _.__RealNode_modified = _.__RealNode_changed = $; _._node0$_parent = t1; }, checkIsDir: function(node, path) { if ((node == null ? null : node.get$type(node)) !== C.FileSystemEntityType_1) throw H.wrapException(R.notADirectory(H._asStringS(path.call$0()))); }, checkType: function(expectedType, actualType, path) { if (expectedType !== actualType) switch (expectedType) { case C.FileSystemEntityType_1: throw H.wrapException(R.notADirectory(H._asStringS(path.call$0()))); case C.FileSystemEntityType_0: throw H.wrapException(R.isADirectory(H._asStringS(path.call$0()))); case C.FileSystemEntityType_2: throw H.wrapException(R.invalidArgument(H._asStringS(path.call$0()))); default: throw H.wrapException(P.AssertionError$(null)); } }, isEmpty: function(str) { return str.length === 0; }, resolveLinks: function(link, path, ledger, tailVisitor) { var t2, t3, breadcrumbs = P.LinkedHashSet_LinkedHashSet(type$.LinkNode), t1 = ledger != null, node = link; while (true) { if (!false) break; if (!breadcrumbs.add$1(0, node)) throw H.wrapException(R._fsException(H._asStringS(path.call$0()), "Too many levels of symbolic links", S.ErrorCodes_ELOOP())); if (t1) { t2 = node.get$fs(); if (t2.get$path(t2).isAbsolute$1(node.get$target(node))) C.JSArray_methods.set$length(ledger, 0); else if (ledger.length !== 0) ledger.pop(); t2 = node.get$target(node); t3 = node.get$fs(); C.JSArray_methods.addAll$1(ledger, t2.split$1(0, t3.get$path(t3).get$separator())); } node = node.getReferent$1$tailVisitor(new B.resolveLinks_closure(tailVisitor)); } return node; }, resolveLinks_closure: function resolveLinks_closure(t0) { this.tailVisitor = t0; }, FilePickerIO: function FilePickerIO(t0) { this._instanceToken = t0; }, ValueNotifier$: function(_value, $T) { return new B.ValueNotifier(_value, new P.LinkedList(type$.LinkedList__ListenerEntry), $T._eval$1("ValueNotifier<0>")); }, Listenable: function Listenable() { }, _ListenerEntry: function _ListenerEntry(t0) { var _ = this; _.listener = t0; _._collection$_previous = _._collection$_next = _._collection$_list = null; }, ChangeNotifier: function ChangeNotifier() { }, ChangeNotifier_notifyListeners_closure: function ChangeNotifier_notifyListeners_closure(t0) { this.$this = t0; }, _MergingListenable: function _MergingListenable(t0) { this._change_notifier$_children = t0; }, ValueNotifier: function ValueNotifier(t0, t1, t2) { this._change_notifier$_value = t0; this.ChangeNotifier__listeners = t1; this.$ti = t2; }, AbstractNode: function AbstractNode() { }, _Vector: function _Vector(t0, t1, t2) { this._lsq_solver$_offset = t0; this._lsq_solver$_length = t1; this._lsq_solver$_elements = t2; }, _Matrix: function _Matrix(t0, t1) { this._lsq_solver$_columns = t0; this._lsq_solver$_elements = t1; }, PolynomialFit: function PolynomialFit(t0) { this.coefficients = t0; this.__PolynomialFit_confidence = $; }, LeastSquaresSolver: function LeastSquaresSolver(t0, t1, t2) { this.x = t0; this.y = t1; this.w = t2; }, ScaleGestureRecognizer$: function(debugOwner, kind) { var t1 = type$.int; return new B.ScaleGestureRecognizer(C.DragStartBehavior_0, C._ScaleState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), debugOwner, kind, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, _ScaleState: function _ScaleState(t0, t1) { this.index = t0; this._scale$_name = t1; }, ScaleStartDetails: function ScaleStartDetails(t0, t1, t2) { this.focalPoint = t0; this.localFocalPoint = t1; this.pointerCount = t2; }, ScaleUpdateDetails: function ScaleUpdateDetails(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.focalPoint = t0; _.localFocalPoint = t1; _.scale = t2; _.horizontalScale = t3; _.verticalScale = t4; _.rotation = t5; _.pointerCount = t6; }, ScaleEndDetails: function ScaleEndDetails(t0, t1) { this.velocity = t0; this.pointerCount = t1; }, _LineBetweenPointers: function _LineBetweenPointers(t0, t1, t2, t3) { var _ = this; _.pointerStartLocation = t0; _.pointerStartId = t1; _.pointerEndLocation = t2; _.pointerEndId = t3; }, ScaleGestureRecognizer: function ScaleGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.dragStartBehavior = t0; _.onEnd = _.onUpdate = _.onStart = null; _._scale$_state = t1; _._scale$_lastTransform = null; _.__ScaleGestureRecognizer__currentVerticalSpan = _.__ScaleGestureRecognizer__initialVerticalSpan = _.__ScaleGestureRecognizer__currentHorizontalSpan = _.__ScaleGestureRecognizer__initialHorizontalSpan = _.__ScaleGestureRecognizer__currentSpan = _.__ScaleGestureRecognizer__initialSpan = _.__ScaleGestureRecognizer__currentFocalPoint = _.__ScaleGestureRecognizer__initialFocalPoint = $; _._scale$_currentLine = _._initialLine = null; _.__ScaleGestureRecognizer__pointerQueue = _.__ScaleGestureRecognizer__pointerLocations = $; _._velocityTrackers = t2; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, ScaleGestureRecognizer__reconfigure_closure: function ScaleGestureRecognizer__reconfigure_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, ScaleGestureRecognizer__reconfigure_closure0: function ScaleGestureRecognizer__reconfigure_closure0(t0) { this.$this = t0; }, ScaleGestureRecognizer__advanceStateMachine_closure: function ScaleGestureRecognizer__advanceStateMachine_closure(t0) { this.$this = t0; }, ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure: function ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure(t0) { this.$this = t0; }, BottomAppBar$: function(child, color, elevation, shape) { return new B.BottomAppBar(child, color, elevation, shape, null); }, BottomAppBar: function BottomAppBar(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.color = t1; _.elevation = t2; _.shape = t3; _.key = t4; }, _BottomAppBarState: function _BottomAppBarState(t0) { var _ = this; _.___BottomAppBarState_geometryListenable = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _BottomAppBarClipper: function _BottomAppBarClipper(t0, t1, t2, t3) { var _ = this; _.geometry = t0; _.shape = t1; _.notchMargin = t2; _._reclip = t3; }, IconButton$: function(alignment, color, disabledColor, enableFeedback, icon, iconSize, onPressed, padding, tooltip, visualDensity) { return new B.IconButton(iconSize, visualDensity, padding, alignment, icon, color, disabledColor, onPressed, tooltip, true, null); }, IconButton: function IconButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.iconSize = t0; _.visualDensity = t1; _.padding = t2; _.alignment = t3; _.icon = t4; _.color = t5; _.disabledColor = t6; _.onPressed = t7; _.tooltip = t8; _.enableFeedback = t9; _.key = t10; }, MergeableMaterialItem: function MergeableMaterialItem() { }, MaterialSlice: function MaterialSlice(t0, t1, t2) { this.child = t0; this.color = t1; this.key = t2; }, MaterialGap: function MaterialGap(t0, t1) { this.size = t0; this.key = t1; }, MergeableMaterial: function MergeableMaterial(t0, t1, t2, t3, t4) { var _ = this; _.children = t0; _.elevation = t1; _.hasDividers = t2; _.dividerColor = t3; _.key = t4; }, _AnimationTuple: function _AnimationTuple(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.startAnimation = t1; _.endAnimation = t2; _.gapAnimation = t3; _.gapStart = 0; }, _MergeableMaterialState: function _MergeableMaterialState(t0, t1, t2) { var _ = this; _.___MergeableMaterialState__children = $; _._animationTuples = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MergeableMaterialState__handleTick_closure: function _MergeableMaterialState__handleTick_closure() { }, _MergeableMaterialState_didUpdateWidget_closure: function _MergeableMaterialState_didUpdateWidget_closure() { }, _MergeableMaterialState_didUpdateWidget_closure0: function _MergeableMaterialState_didUpdateWidget_closure0() { }, _MergeableMaterialSliceKey: function _MergeableMaterialSliceKey(t0) { this.value = t0; }, _MergeableMaterialListBody: function _MergeableMaterialListBody(t0, t1, t2, t3) { var _ = this; _.boxShadows = t0; _.mainAxis = t1; _.children = t2; _.key = t3; }, _RenderMergeableMaterialListBody: function _RenderMergeableMaterialListBody(t0, t1, t2, t3, t4) { var _ = this; _.boxShadows = t0; _._list_body$_axisDirection = t1; _.ContainerRenderObjectMixin__childCount = t2; _.ContainerRenderObjectMixin__firstChild = t3; _.ContainerRenderObjectMixin__lastChild = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, __MergeableMaterialState_State_TickerProviderStateMixin: function __MergeableMaterialState_State_TickerProviderStateMixin() { }, OutlinedButton$: function(child, onPressed) { var _null = null; return new B.OutlinedButton(onPressed, _null, _null, C.Clip_0, _null, false, child, _null); }, OutlinedButton_styleFrom: function(alignment, animationDuration, backgroundColor, disabledMouseCursor, elevation, enableFeedback, enabledMouseCursor, minimumSize, onSurface, padding, primary, shadowColor, shape, side, splashFactory, tapTargetSize, textStyle, visualDensity) { var mouseCursor, t1, t2, t3, t4, t5, t6, t7, _null = null, foregroundColor = onSurface == null && primary == null ? _null : new B._OutlinedButtonDefaultForeground(primary, onSurface), overlayColor = primary == null ? _null : new B._OutlinedButtonDefaultOverlay(primary); if (enabledMouseCursor == null && disabledMouseCursor == null) mouseCursor = _null; else { enabledMouseCursor.toString; disabledMouseCursor.toString; mouseCursor = new B._OutlinedButtonDefaultMouseCursor(enabledMouseCursor, disabledMouseCursor); } t1 = textStyle == null ? _null : new V._MaterialStatePropertyAll(textStyle, type$._MaterialStatePropertyAll_TextStyle); t2 = backgroundColor == null ? _null : new V._MaterialStatePropertyAll(backgroundColor, type$._MaterialStatePropertyAll_Color); t3 = shadowColor == null ? _null : new V._MaterialStatePropertyAll(shadowColor, type$._MaterialStatePropertyAll_Color); t4 = elevation == null ? _null : new V._MaterialStatePropertyAll(elevation, type$._MaterialStatePropertyAll_double); t5 = padding == null ? _null : new V._MaterialStatePropertyAll(padding, type$._MaterialStatePropertyAll_EdgeInsetsGeometry); t6 = minimumSize == null ? _null : new V._MaterialStatePropertyAll(minimumSize, type$._MaterialStatePropertyAll_Size); t7 = side == null ? _null : new V._MaterialStatePropertyAll(side, type$._MaterialStatePropertyAll_BorderSide); return A.ButtonStyle$(alignment, animationDuration, t2, t4, enableFeedback, _null, foregroundColor, t6, mouseCursor, overlayColor, t5, t3, shape == null ? _null : new V._MaterialStatePropertyAll(shape, type$._MaterialStatePropertyAll_OutlinedBorder), t7, splashFactory, tapTargetSize, t1, visualDensity); }, OutlinedButton: function OutlinedButton(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onPressed = t0; _.onLongPress = t1; _.style = t2; _.clipBehavior = t3; _.focusNode = t4; _.autofocus = t5; _.child = t6; _.key = t7; }, _OutlinedButtonDefaultForeground: function _OutlinedButtonDefaultForeground(t0, t1) { this.primary = t0; this.onSurface = t1; }, _OutlinedButtonDefaultOverlay: function _OutlinedButtonDefaultOverlay(t0) { this.primary = t0; }, _OutlinedButtonDefaultMouseCursor: function _OutlinedButtonDefaultMouseCursor(t0, t1) { this.enabledCursor = t0; this.disabledCursor = t1; }, __OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable() { }, __OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable() { }, __OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable: function __OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable() { }, MultiChildLayoutParentData: function MultiChildLayoutParentData(t0, t1, t2) { var _ = this; _.id = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, MultiChildLayoutDelegate: function MultiChildLayoutDelegate() { }, RenderCustomMultiChildLayoutBox: function RenderCustomMultiChildLayoutBox(t0, t1, t2, t3) { var _ = this; _._custom_layout$_delegate = t0; _.ContainerRenderObjectMixin__childCount = t1; _.ContainerRenderObjectMixin__firstChild = t2; _.ContainerRenderObjectMixin__lastChild = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin: function _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin() { }, _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, SliverGridGeometry: function SliverGridGeometry(t0, t1, t2, t3) { var _ = this; _.scrollOffset = t0; _.crossAxisOffset = t1; _.mainAxisExtent = t2; _.crossAxisExtent = t3; }, SliverGridLayout: function SliverGridLayout() { }, SliverGridRegularTileLayout: function SliverGridRegularTileLayout(t0, t1, t2, t3, t4, t5) { var _ = this; _.crossAxisCount = t0; _.mainAxisStride = t1; _.crossAxisStride = t2; _.childMainAxisExtent = t3; _.childCrossAxisExtent = t4; _.reverseCrossAxis = t5; }, SliverGridDelegate: function SliverGridDelegate() { }, SliverGridDelegateWithFixedCrossAxisCount: function SliverGridDelegateWithFixedCrossAxisCount(t0, t1, t2, t3) { var _ = this; _.crossAxisCount = t0; _.mainAxisSpacing = t1; _.crossAxisSpacing = t2; _.childAspectRatio = t3; }, SliverGridParentData: function SliverGridParentData(t0, t1, t2) { var _ = this; _.index = _.crossAxisOffset = null; _._keptAlive = false; _.KeepAliveParentDataMixin_keepAlive = t0; _.ContainerParentDataMixin_previousSibling = t1; _.ContainerParentDataMixin_nextSibling = t2; _.layoutOffset = null; }, RenderSliverGrid: function RenderSliverGrid(t0, t1, t2, t3, t4, t5) { var _ = this; _._gridDelegate = t0; _._childManager = t1; _._keepAliveBucket = t2; _.__RenderSliverMultiBoxAdaptor__debugDanglingKeepAlives = $; _._debugChildIntegrityEnabled = true; _.ContainerRenderObjectMixin__childCount = t3; _.ContainerRenderObjectMixin__firstChild = t4; _.ContainerRenderObjectMixin__lastChild = t5; _.debugCreator = _.parentData = _._geometry = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RawKeyEvent_RawKeyEvent$fromMessage: function(message) { var t3, t4, t5, data, type, t1 = J.getInterceptor$asx(message), key = H._asStringQ(t1.$index(message, "key")), t2 = H._asStringQ(t1.$index(message, "code")); if (t2 == null) t2 = ""; t3 = key == null; t4 = t3 ? "" : key; t5 = H._asIntQ(t1.$index(message, "metaState")); data = new A.RawKeyEventDataWeb(t2, t4, t5 == null ? 0 : t5); !t3; type = H._asStringS(t1.$index(message, "type")); switch (type) { case "keydown": return new B.RawKeyDownEvent(data); case "keyup": return new B.RawKeyUpEvent(data); default: throw H.wrapException(U.FlutterError_FlutterError("Unknown key event type: " + H.S(type))); } }, KeyboardSide: function KeyboardSide(t0) { this._raw_keyboard$_name = t0; }, ModifierKey: function ModifierKey(t0) { this._raw_keyboard$_name = t0; }, RawKeyEventData: function RawKeyEventData() { }, RawKeyEvent: function RawKeyEvent() { }, RawKeyDownEvent: function RawKeyDownEvent(t0) { this.data = t0; }, RawKeyUpEvent: function RawKeyUpEvent(t0) { this.data = t0; }, RawKeyboard: function RawKeyboard(t0, t1, t2) { var _ = this; _._raw_keyboard$_listeners = t0; _.keyEventHandler = null; _._keysPressed = t1; _._hiddenKeysPressed = t2; }, _ModifierSidePair: function _ModifierSidePair(t0, t1) { this.modifier = t0; this.side = t1; }, _RawKeyEvent_Object_Diagnosticable: function _RawKeyEvent_Object_Diagnosticable() { }, RawKeyEventDataMacOs: function RawKeyEventDataMacOs() { }, LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement: function(platform) { return C.MaxLengthEnforcement_2; }, LengthLimitingTextInputFormatter_truncate: function(value, maxLength) { var truncated, t2, t3, t4, t1 = value.text, iterator = new T.StringCharacterRange(t1, 0, 0); t1 = new T.StringCharacters(t1); if (t1.get$length(t1) > maxLength) iterator._advanceEnd$2(maxLength, 0); truncated = iterator.get$current(iterator); t1 = value.selection; t2 = truncated.length; t1 = t1.copyWith$2$baseOffset$extentOffset(Math.min(H.checkNum(t1.start), t2), Math.min(H.checkNum(t1.end), t2)); t3 = value.composing; t4 = t3.start; t3 = t3.end; return new N.TextEditingValue(truncated, t1, t4 != t3 && t2 > t4 ? new P.TextRange(t4, Math.min(H.checkNum(t3), t2)) : C.TextRange_m1_m1); }, MaxLengthEnforcement: function MaxLengthEnforcement(t0) { this._text_formatter$_name = t0; }, TextInputFormatter: function TextInputFormatter() { }, FilteringTextInputFormatter: function FilteringTextInputFormatter(t0, t1) { this.filterPattern = t0; this.allow = t1; }, FilteringTextInputFormatter_formatEditUpdate_closure: function FilteringTextInputFormatter_formatEditUpdate_closure(t0) { this.$this = t0; }, FilteringTextInputFormatter_formatEditUpdate__closure: function FilteringTextInputFormatter_formatEditUpdate__closure(t0) { this.$this = t0; }, FilteringTextInputFormatter_formatEditUpdate__closure0: function FilteringTextInputFormatter_formatEditUpdate__closure0(t0) { this.$this = t0; }, LengthLimitingTextInputFormatter: function LengthLimitingTextInputFormatter(t0, t1) { this.maxLength = t0; this.maxLengthEnforcement = t1; }, AsyncSnapshot$nothing: function($T) { return new B.AsyncSnapshot(C.ConnectionState_0, null, null, null, $T._eval$1("AsyncSnapshot<0>")); }, StreamBuilder$: function(builder, initialData, stream, $T) { return new B.StreamBuilder(builder, initialData, stream, null, $T._eval$1("StreamBuilder<0>")); }, FutureBuilder$: function(builder, future, $T) { return new B.FutureBuilder(future, builder, null, $T._eval$1("FutureBuilder<0>")); }, StreamBuilderBase: function StreamBuilderBase() { }, _StreamBuilderBaseState: function _StreamBuilderBaseState(t0, t1) { var _ = this; _._subscription = null; _.___StreamBuilderBaseState__summary = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _StreamBuilderBaseState__subscribe_closure: function _StreamBuilderBaseState__subscribe_closure(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure1: function _StreamBuilderBaseState__subscribe__closure1(t0, t1) { this.$this = t0; this.data = t1; }, _StreamBuilderBaseState__subscribe_closure1: function _StreamBuilderBaseState__subscribe_closure1(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure: function _StreamBuilderBaseState__subscribe__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _StreamBuilderBaseState__subscribe_closure0: function _StreamBuilderBaseState__subscribe_closure0(t0) { this.$this = t0; }, _StreamBuilderBaseState__subscribe__closure0: function _StreamBuilderBaseState__subscribe__closure0(t0) { this.$this = t0; }, ConnectionState: function ConnectionState(t0) { this._async0$_name = t0; }, AsyncSnapshot: function AsyncSnapshot(t0, t1, t2, t3, t4) { var _ = this; _.connectionState = t0; _.data = t1; _.error = t2; _.stackTrace = t3; _.$ti = t4; }, StreamBuilder: function StreamBuilder(t0, t1, t2, t3, t4) { var _ = this; _.builder = t0; _.initialData = t1; _.stream = t2; _.key = t3; _.$ti = t4; }, FutureBuilder: function FutureBuilder(t0, t1, t2, t3) { var _ = this; _.future = t0; _.builder = t1; _.key = t2; _.$ti = t3; }, _FutureBuilderState: function _FutureBuilderState(t0, t1) { var _ = this; _._activeCallbackIdentity = null; _.___FutureBuilderState__snapshot = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, _FutureBuilderState__subscribe_closure: function _FutureBuilderState__subscribe_closure(t0, t1) { this.$this = t0; this.callbackIdentity = t1; }, _FutureBuilderState__subscribe__closure0: function _FutureBuilderState__subscribe__closure0(t0, t1) { this.$this = t0; this.data = t1; }, _FutureBuilderState__subscribe_closure0: function _FutureBuilderState__subscribe_closure0(t0, t1) { this.$this = t0; this.callbackIdentity = t1; }, _FutureBuilderState__subscribe__closure: function _FutureBuilderState__subscribe__closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, CustomScrollView$: function(anchor, cacheExtent, clipBehavior, controller, dragStartBehavior, keyboardDismissBehavior, physics, primary, restorationId, reverse, scrollDirection, shrinkWrap, slivers) { var _null = null, t1 = controller == null && scrollDirection === C.Axis_1, t2 = controller == null && scrollDirection === C.Axis_1; t2 = t2 ? C.AlwaysScrollableScrollPhysics_null : _null; return new B.CustomScrollView(slivers, scrollDirection, false, controller, t1, t2, _null, false, _null, anchor, cacheExtent, _null, dragStartBehavior, keyboardDismissBehavior, restorationId, clipBehavior, _null); }, ListView$: function(children, controller, padding, primary, reverse, scrollDirection, shrinkWrap) { var t4, _null = null, t1 = G.SliverChildListDelegate$(children, true, true, true), t2 = children.length, t3 = primary == null; if (t3) t4 = controller == null && scrollDirection === C.Axis_1; else t4 = primary; if (primary !== true) t3 = t3 && controller == null && scrollDirection === C.Axis_1; else t3 = true; t3 = t3 ? C.AlwaysScrollableScrollPhysics_null : _null; return new B.ListView(t1, padding, scrollDirection, reverse, controller, t4, t3, _null, shrinkWrap, _null, 0, _null, t2, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null); }, ListView$builder: function(controller, itemBuilder, itemCount, padding, physics, scrollDirection, shrinkWrap) { var t2, _null = null, t1 = controller == null && scrollDirection === C.Axis_1; if (physics == null) { t2 = controller == null && scrollDirection === C.Axis_1; t2 = t2 ? C.AlwaysScrollableScrollPhysics_null : _null; } else t2 = physics; return new B.ListView(new G.SliverChildBuilderDelegate(itemBuilder, itemCount, true, true, true, G.sliver___kDefaultSemanticIndexCallback$closure()), padding, scrollDirection, false, controller, t1, t2, _null, shrinkWrap, _null, 0, _null, itemCount, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null); }, ListView$separated: function(controller, itemBuilder, itemCount, padding, separatorBuilder, shrinkWrap) { var _null = null, t1 = Math.max(0, itemCount * 2 - 1), t2 = controller == null && true, t3 = controller == null && true; t3 = t3 ? C.AlwaysScrollableScrollPhysics_null : _null; return new B.ListView(new G.SliverChildBuilderDelegate(new B.ListView$separated_closure(itemBuilder, separatorBuilder), t1, true, true, true, new B.ListView$separated_closure0()), padding, C.Axis_1, false, controller, t2, t3, _null, true, _null, 0, _null, itemCount, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null); }, GridView$count: function(childAspectRatio, children, crossAxisCount, crossAxisSpacing, mainAxisSpacing, padding, physics, primary, shrinkWrap) { var t4, _null = null, t1 = G.SliverChildListDelegate$(children, true, true, true), t2 = children.length, t3 = primary == null; if (t3) t4 = true; else t4 = primary; if (physics == null) { if (primary !== true) if (t3) t3 = true; else t3 = false; else t3 = true; t3 = t3 ? C.AlwaysScrollableScrollPhysics_null : _null; } else t3 = physics; return new B.GridView(new B.SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount, mainAxisSpacing, crossAxisSpacing, childAspectRatio), t1, padding, C.Axis_1, false, _null, t4, t3, _null, shrinkWrap, _null, 0, _null, t2, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null); }, ScrollViewKeyboardDismissBehavior: function ScrollViewKeyboardDismissBehavior(t0) { this._scroll_view$_name = t0; }, ScrollView: function ScrollView() { }, ScrollView_build_closure: function ScrollView_build_closure(t0, t1, t2) { this.$this = t0; this.axisDirection = t1; this.slivers = t2; }, ScrollView_build_closure0: function ScrollView_build_closure0(t0) { this.context = t0; }, CustomScrollView: function CustomScrollView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.slivers = t0; _.scrollDirection = t1; _.reverse = t2; _.controller = t3; _.primary = t4; _.physics = t5; _.scrollBehavior = t6; _.shrinkWrap = t7; _.center = t8; _.anchor = t9; _.cacheExtent = t10; _.semanticChildCount = t11; _.dragStartBehavior = t12; _.keyboardDismissBehavior = t13; _.restorationId = t14; _.clipBehavior = t15; _.key = t16; }, BoxScrollView: function BoxScrollView() { }, ListView: function ListView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17) { var _ = this; _.childrenDelegate = t0; _.padding = t1; _.scrollDirection = t2; _.reverse = t3; _.controller = t4; _.primary = t5; _.physics = t6; _.scrollBehavior = t7; _.shrinkWrap = t8; _.center = t9; _.anchor = t10; _.cacheExtent = t11; _.semanticChildCount = t12; _.dragStartBehavior = t13; _.keyboardDismissBehavior = t14; _.restorationId = t15; _.clipBehavior = t16; _.key = t17; }, ListView$separated_closure: function ListView$separated_closure(t0, t1) { this.itemBuilder = t0; this.separatorBuilder = t1; }, ListView$separated_closure0: function ListView$separated_closure0() { }, GridView: function GridView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _.gridDelegate = t0; _.childrenDelegate = t1; _.padding = t2; _.scrollDirection = t3; _.reverse = t4; _.controller = t5; _.primary = t6; _.physics = t7; _.scrollBehavior = t8; _.shrinkWrap = t9; _.center = t10; _.anchor = t11; _.cacheExtent = t12; _.semanticChildCount = t13; _.dragStartBehavior = t14; _.keyboardDismissBehavior = t15; _.restorationId = t16; _.clipBehavior = t17; _.key = t18; }, QueueItem: function QueueItem(t0, t1, t2) { this.url = t0; this.key = t1; this.headers = t2; }, BlockPicker_defaultLayoutBuilder: function(context, colors, child) { var t2, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, orientation = t1.get$orientation(t1); t1 = orientation === C.Orientation_0; t2 = t1 ? 360 : 200; t1 = t1 ? 4 : 6; return M.Container$(_null, B.GridView$count(1, J.map$1$1$ax(colors, new B.BlockPicker_defaultLayoutBuilder_closure(child), type$.Widget).toList$0(0), t1, 5, 5, _null, _null, _null, false), C.Clip_0, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, 300); }, BlockPicker_defaultItemBuilder: function(color, isCurrentColor, changeColor) { var _null = null, t1 = K.BorderRadius$circular(50), t2 = H.setRuntimeTypeInfo([new O.BoxShadow(0, P.Color$fromARGB(204, color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255), new P.Offset(1, 2), 3)], type$.JSArray_BoxShadow), t3 = K.BorderRadius$circular(50), t4 = isCurrentColor ? 1 : 0; return M.Container$(_null, M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, t3, true, G.AnimatedOpacity$(false, L.Icon$(C.IconData_57846_MaterialIcons_null_false, C.JSNumber_methods.round$0(Math.sqrt(Math.pow(color.get$value(color) >>> 16 & 255, 2) * 0.299 + Math.pow(color.get$value(color) >>> 8 & 255, 2) * 0.587 + Math.pow(color.get$value(color) & 255, 2) * 0.114)) < 130 && true ? C.Color_4294967295 : C.Color_4278190080, _null), C.C__Linear, C.Duration_210000, t4), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, changeColor, _null, _null, _null, _null, _null), C.Clip_0, C.Color_0, 0, _null, _null, _null, _null, C.MaterialType_0), C.Clip_0, _null, _null, new S.BoxDecoration(color, _null, _null, t1, t2, _null, C.BoxShape_0), _null, _null, _null, new V.EdgeInsets(5, 5, 5, 5), _null, _null, _null, _null); }, BlockPicker: function BlockPicker(t0, t1, t2, t3) { var _ = this; _.pickerColor = t0; _.onColorChanged = t1; _.availableColors = t2; _.key = t3; }, BlockPicker_defaultLayoutBuilder_closure: function BlockPicker_defaultLayoutBuilder_closure(t0) { this.child = t0; }, _BlockPickerState: function _BlockPickerState(t0) { var _ = this; _.___BlockPickerState__currentColor = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _BlockPickerState_changeColor_closure: function _BlockPickerState_changeColor_closure(t0, t1) { this.$this = t0; this.color = t1; }, _BlockPickerState_build_closure: function _BlockPickerState_build_closure(t0) { this.$this = t0; }, _BlockPickerState_build__closure: function _BlockPickerState_build__closure(t0, t1) { this.$this = t0; this.color = t1; }, GlobalWidgetsLocalizations: function GlobalWidgetsLocalizations(t0) { this.locale = t0; this.__GlobalWidgetsLocalizations__textDirection = $; }, _WidgetsLocalizationsDelegate0: function _WidgetsLocalizationsDelegate0() { }, injectJSLibraries: function(libraries) { var targetElement, loading = H.setRuntimeTypeInfo([], type$.JSArray_Future_void), tags = H.setRuntimeTypeInfo([], type$.JSArray_HtmlElement), t1 = document.querySelector("head"); t1.toString; targetElement = t1; C.JSArray_methods.forEach$1(libraries, new B.injectJSLibraries_closure(loading, tags)); J.get$children$x(targetElement).addAll$1(0, tags); return P.Future_wait(loading, type$.void); }, gapiUserToPluginUserData: function(currentUser) { var profile, t2, t3, t4, t5, _null = null, t1 = currentUser == null, isSignedIn = t1 ? _null : J.isSignedIn$0$x(currentUser); if (isSignedIn == null) isSignedIn = false; profile = t1 ? _null : J.getBasicProfile$0$x(currentUser); if (isSignedIn) t2 = (profile == null ? _null : J.getId$0$x(profile)) == null; else t2 = true; if (t2) return _null; t2 = profile == null; t3 = t2 ? _null : J.getName$0$x(profile); t4 = t2 ? _null : J.getEmail$0$x(profile); if (t4 == null) t4 = ""; t5 = t2 ? _null : J.getId$0$x(profile); if (t5 == null) t5 = ""; t2 = t2 ? _null : J.getImageUrl$0$x(profile); return new G.GoogleSignInUserData(t3, t4, t5, t2, t1 ? _null : J.get$id_token$x(J.getAuthResponse$0$x(currentUser))); }, injectJSLibraries_closure: function injectJSLibraries_closure(t0, t1) { this.loading = t0; this.tags = t1; }, mapToQuery: function(map, encoding) { var pairs = H.setRuntimeTypeInfo([], type$.JSArray_List_String); map.forEach$1(0, new B.mapToQuery_closure(pairs, encoding)); return new H.MappedListIterable(pairs, new B.mapToQuery_closure0(), type$.MappedListIterable_of_List_String_and_String).join$1(0, "&"); }, encodingForCharset: function(charset) { var t1; if (charset == null) return C.C_Latin1Codec; t1 = P.Encoding_getByName(charset); return t1 == null ? C.C_Latin1Codec : t1; }, toUint8List: function(input) { if (type$.Uint8List._is(input)) return input; if (type$.TypedData._is(input)) return J.asUint8List$2$x(J.get$buffer$x(input), 0, null); return new Uint8Array(H._ensureNativeList(input)); }, toByteStream: function(stream) { if (stream instanceof Z.ByteStream) return stream; return new Z.ByteStream(stream); }, onDone: function(stream, onDone, $T) { return P._StreamHandlerTransformer$(null, new B.onDone_closure(onDone, $T), null, $T, $T).bind$1(stream); }, mapToQuery_closure: function mapToQuery_closure(t0, t1) { this.pairs = t0; this.encoding = t1; }, mapToQuery_closure0: function mapToQuery_closure0() { }, onDone_closure: function onDone_closure(t0, t1) { this.onDone = t0; this.T = t1; }, DateSymbols$: function(AMPMS, AVAILABLEFORMATS, DATEFORMATS, DATETIMEFORMATS, ERANAMES, ERAS, FIRSTDAYOFWEEK, FIRSTWEEKCUTOFFDAY, MONTHS, NAME, NARROWMONTHS, NARROWWEEKDAYS, QUARTERS, SHORTMONTHS, SHORTQUARTERS, SHORTWEEKDAYS, STANDALONEMONTHS, STANDALONENARROWMONTHS, STANDALONENARROWWEEKDAYS, STANDALONESHORTMONTHS, STANDALONESHORTWEEKDAYS, STANDALONEWEEKDAYS, TIMEFORMATS, WEEKDAYS, WEEKENDRANGE, ZERODIGIT) { return new B.DateSymbols(NAME, ERAS, ERANAMES, NARROWMONTHS, STANDALONENARROWMONTHS, MONTHS, STANDALONEMONTHS, SHORTMONTHS, STANDALONESHORTMONTHS, WEEKDAYS, STANDALONEWEEKDAYS, SHORTWEEKDAYS, STANDALONESHORTWEEKDAYS, NARROWWEEKDAYS, STANDALONENARROWWEEKDAYS, SHORTQUARTERS, QUARTERS, AMPMS, FIRSTDAYOFWEEK, ZERODIGIT); }, DateSymbols_DateSymbols$deserializeFromMap: function(map) { var t25, t26, t1 = new B.DateSymbols_DateSymbols$deserializeFromMap__getStringList(map), t2 = J.getInterceptor$asx(map), t3 = t2.$index(map, "NAME"), t4 = t1.call$1("ERAS"), t5 = t1.call$1("ERANAMES"), t6 = t1.call$1("NARROWMONTHS"), t7 = t1.call$1("STANDALONENARROWMONTHS"), t8 = t1.call$1("MONTHS"), t9 = t1.call$1("STANDALONEMONTHS"), t10 = t1.call$1("SHORTMONTHS"), t11 = t1.call$1("STANDALONESHORTMONTHS"), t12 = t1.call$1("WEEKDAYS"), t13 = t1.call$1("STANDALONEWEEKDAYS"), t14 = t1.call$1("SHORTWEEKDAYS"), t15 = t1.call$1("STANDALONESHORTWEEKDAYS"), t16 = t1.call$1("NARROWWEEKDAYS"), t17 = t1.call$1("STANDALONENARROWWEEKDAYS"), t18 = t1.call$1("SHORTQUARTERS"), t19 = t1.call$1("QUARTERS"), t20 = t1.call$1("AMPMS"), t21 = t2.$index(map, "ZERODIGIT"), t22 = t1.call$1("DATEFORMATS"), t23 = t1.call$1("TIMEFORMATS"), t24 = t2.$index(map, "AVAILABLEFORMATS"); if (t24 == null) { t24 = type$.dynamic; t24 = P.LinkedHashMap_LinkedHashMap$_empty(t24, t24); } t25 = type$.String; t25 = P.LinkedHashMap_LinkedHashMap$from(t24, t25, t25); t24 = t2.$index(map, "FIRSTDAYOFWEEK"); t26 = P.List_List$from(t2.$index(map, "WEEKENDRANGE"), true, type$.int); t2 = t2.$index(map, "FIRSTWEEKCUTOFFDAY"); return B.DateSymbols$(t20, t25, t22, t1.call$1("DATETIMEFORMATS"), t5, t4, t24, t2, t8, t3, t6, t16, t19, t10, t18, t14, t9, t7, t17, t11, t15, t13, t23, t12, t26, t21); }, DateSymbols: function DateSymbols(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.NAME = t0; _.ERAS = t1; _.ERANAMES = t2; _.NARROWMONTHS = t3; _.STANDALONENARROWMONTHS = t4; _.MONTHS = t5; _.STANDALONEMONTHS = t6; _.SHORTMONTHS = t7; _.STANDALONESHORTMONTHS = t8; _.WEEKDAYS = t9; _.STANDALONEWEEKDAYS = t10; _.SHORTWEEKDAYS = t11; _.STANDALONESHORTWEEKDAYS = t12; _.NARROWWEEKDAYS = t13; _.STANDALONENARROWWEEKDAYS = t14; _.SHORTQUARTERS = t15; _.QUARTERS = t16; _.AMPMS = t17; _.FIRSTDAYOFWEEK = t18; _.ZERODIGIT = t19; }, DateSymbols_DateSymbols$deserializeFromMap__getStringList: function DateSymbols_DateSymbols$deserializeFromMap__getStringList(t0) { this.map = t0; }, NumberSymbols$: function(CURRENCY_PATTERN, DECIMAL_PATTERN, DECIMAL_SEP, DEF_CURRENCY_CODE, EXP_SYMBOL, GROUP_SEP, INFINITY, MINUS_SIGN, NAME, NAN, PERCENT, PERCENT_PATTERN, PERMILL, PLUS_SIGN, SCIENTIFIC_PATTERN, ZERO_DIGIT) { return new B.NumberSymbols(NAME, DECIMAL_SEP, GROUP_SEP, PERCENT, ZERO_DIGIT, PLUS_SIGN, MINUS_SIGN, EXP_SYMBOL, PERMILL, INFINITY, NAN, DECIMAL_PATTERN, DEF_CURRENCY_CODE); }, NumberSymbols: function NumberSymbols(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.NAME = t0; _.DECIMAL_SEP = t1; _.GROUP_SEP = t2; _.PERCENT = t3; _.ZERO_DIGIT = t4; _.PLUS_SIGN = t5; _.MINUS_SIGN = t6; _.EXP_SYMBOL = t7; _.PERMILL = t8; _.INFINITY = t9; _.NAN = t10; _.DECIMAL_PATTERN = t11; _.DEF_CURRENCY_CODE = t12; }, _$ImportRequest$_: function(columnMap, hash, importType, skipHeader) { var _s13_ = "ImportRequest"; if (skipHeader == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "skipHeader")); if (columnMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "columnMap")); return new B._$ImportRequest(hash, importType, skipHeader, columnMap); }, PreImportResponse: function PreImportResponse() { }, PreImportResponseEntityDetails: function PreImportResponseEntityDetails() { }, ImportRequest: function ImportRequest() { }, ImportRequestMapping: function ImportRequestMapping() { }, ImportType: function ImportType(t0) { this.name = t0; }, _$PreImportResponseSerializer: function _$PreImportResponseSerializer() { }, _$PreImportResponseEntityDetailsSerializer: function _$PreImportResponseEntityDetailsSerializer() { }, _$ImportRequestSerializer: function _$ImportRequestSerializer() { }, _$ImportRequestMappingSerializer: function _$ImportRequestMappingSerializer() { }, _$PreImportResponse: function _$PreImportResponse(t0, t1) { this.hash = t0; this.mappings = t1; this._import_model$__hashCode = null; }, PreImportResponseBuilder: function PreImportResponseBuilder() { this._mappings = this._import_model$_hash = this._import_model$_$v = null; }, _$PreImportResponseEntityDetails: function _$PreImportResponseEntityDetails(t0, t1) { this.available = t0; this.headers = t1; this._import_model$__hashCode = null; }, PreImportResponseEntityDetailsBuilder: function PreImportResponseEntityDetailsBuilder() { this._import_model$_headers = this._available = this._import_model$_$v = null; }, _$ImportRequest: function _$ImportRequest(t0, t1, t2, t3) { var _ = this; _.hash = t0; _.importType = t1; _.skipHeader = t2; _.columnMap = t3; _._import_model$__hashCode = null; }, ImportRequestBuilder: function ImportRequestBuilder() { var _ = this; _._columnMap = _._skipHeader = _._importType = _._import_model$_hash = _._import_model$_$v = null; }, _$ImportRequestMapping: function _$ImportRequestMapping(t0) { this.mapping = t0; this._import_model$__hashCode = null; }, ImportRequestMappingBuilder: function ImportRequestMappingBuilder() { this._mapping = this._import_model$_$v = null; }, UserEntity_UserEntity: function(id, state, userCompany) { var t1; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; return B._$UserEntity$_(0, "", 0, "", "", "", "", "", "", null, "", false, t1, false, false, false, "", "", "", "", "", "", 0, userCompany); }, UserEntity__initializeBuilder: function(builder) { builder.get$_user_model$_$this()._isTwoFactorEnabled = false; builder.get$_user_model$_$this()._hasPassword = false; builder.get$_user_model$_$this()._password = ""; builder.get$_user_model$_$this()._lastEmailAddress = ""; builder.get$_user_model$_$this()._oauthUserToken = ""; return builder; }, _$UserEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, customValue1, customValue2, customValue3, customValue4, email, emailVerifiedAt, firstName, hasPassword, id, isChanged, isDeleted, isTwoFactorEnabled, lastEmailAddress, lastName, oauthProvider, oauthUserToken, password, phone, updatedAt, userCompany) { return new B._$UserEntity(firstName, lastName, email, phone, password, emailVerifiedAt, customValue1, customValue2, customValue3, customValue4, isTwoFactorEnabled, hasPassword, lastEmailAddress, oauthUserToken, userCompany, oauthProvider, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, UserListResponse: function UserListResponse() { }, UserItemResponse: function UserItemResponse() { }, UserTwoFactorResponse: function UserTwoFactorResponse() { }, UserTwoFactorData: function UserTwoFactorData() { }, UserCompanyItemResponse: function UserCompanyItemResponse() { }, UserEntity: function UserEntity() { }, _$UserListResponseSerializer: function _$UserListResponseSerializer() { }, _$UserItemResponseSerializer: function _$UserItemResponseSerializer() { }, _$UserTwoFactorResponseSerializer: function _$UserTwoFactorResponseSerializer() { }, _$UserTwoFactorDataSerializer: function _$UserTwoFactorDataSerializer() { }, _$UserCompanyItemResponseSerializer: function _$UserCompanyItemResponseSerializer() { }, _$UserEntitySerializer: function _$UserEntitySerializer() { }, _$UserListResponse: function _$UserListResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserListResponseBuilder: function UserListResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserItemResponse: function _$UserItemResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserItemResponseBuilder: function UserItemResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserTwoFactorResponse: function _$UserTwoFactorResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserTwoFactorResponseBuilder: function UserTwoFactorResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserTwoFactorData: function _$UserTwoFactorData(t0, t1) { this.secret = t0; this.qrCode = t1; this._user_model$__hashCode = null; }, UserTwoFactorDataBuilder: function UserTwoFactorDataBuilder() { this._qrCode = this._secret = this._user_model$_$v = null; }, _$UserCompanyItemResponse: function _$UserCompanyItemResponse(t0) { this.data = t0; this._user_model$__hashCode = null; }, UserCompanyItemResponseBuilder: function UserCompanyItemResponseBuilder() { this._user_model$_data = this._user_model$_$v = null; }, _$UserEntity: function _$UserEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.phone = t3; _.password = t4; _.emailVerifiedAt = t5; _.customValue1 = t6; _.customValue2 = t7; _.customValue3 = t8; _.customValue4 = t9; _.isTwoFactorEnabled = t10; _.hasPassword = t11; _.lastEmailAddress = t12; _.oauthUserToken = t13; _.userCompany = t14; _.oauthProvider = t15; _.isChanged = t16; _.createdAt = t17; _.updatedAt = t18; _.archivedAt = t19; _.isDeleted = t20; _.createdUserId = t21; _.assignedUserId = t22; _.id = t23; _._user_model$__hashCode = null; }, UserEntityBuilder: function UserEntityBuilder() { var _ = this; _._id = _._assignedUserId = _._createdUserId = _._isDeleted = _._archivedAt = _._user_model$_updatedAt = _._createdAt = _._user_model$_isChanged = _._oauthProvider = _._userCompany = _._oauthUserToken = _._lastEmailAddress = _._hasPassword = _._isTwoFactorEnabled = _._customValue4 = _._customValue3 = _._customValue2 = _._customValue1 = _._emailVerifiedAt = _._password = _._phone = _._email = _._lastName = _._firstName = _._user_model$_$v = null; }, _UserEntity_Object_BaseEntity: function _UserEntity_Object_BaseEntity() { }, _UserEntity_Object_BaseEntity_SelectableEntity: function _UserEntity_Object_BaseEntity_SelectableEntity() { }, VendorEntity_VendorEntity: function(id, state, user) { var t1, t2, t3; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo([B.VendorContactEntity_VendorContactEntity().rebuild$1(new B.VendorEntity_VendorEntity_closure())], type$.JSArray_legacy_VendorContactEntity), type$.legacy_VendorContactEntity); t3 = user == null ? null : user.id; if (t3 == null) t3 = ""; return B._$VendorEntity$_("", "", 0, t3, "", t2, "", 0, "", "", "", "", "", "", D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_DocumentEntity), t1, "", false, false, "", "", "", "", "", "", "", 0, "", ""); }, VendorContactEntity_VendorContactEntity: function() { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; return B._$VendorContactEntity$_(0, "", 0, "", "", "", "" + t1, false, false, false, "", "", 0); }, _$VendorEntity$_: function(address1, address2, archivedAt, assignedUserId, city, contacts, countryId, createdAt, createdUserId, currencyId, customValue1, customValue2, customValue3, customValue4, documents, id, idNumber, isChanged, isDeleted, $name, number, phone, postalCode, privateNotes, publicNotes, state, updatedAt, vatNumber, website) { var _s12_ = "VendorEntity"; if (contacts == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "contacts")); if (documents == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "documents")); return new B._$VendorEntity($name, address1, address2, city, state, postalCode, countryId, phone, privateNotes, publicNotes, website, number, vatNumber, idNumber, currencyId, customValue1, customValue2, customValue3, customValue4, contacts, documents, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$VendorContactEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, email, firstName, id, isChanged, isDeleted, isPrimary, lastName, phone, updatedAt) { return new B._$VendorContactEntity(firstName, lastName, email, isPrimary, phone, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, VendorListResponse: function VendorListResponse() { }, VendorItemResponse: function VendorItemResponse() { }, VendorEntity: function VendorEntity() { }, VendorEntity_VendorEntity_closure: function VendorEntity_VendorEntity_closure() { }, VendorContactEntity: function VendorContactEntity() { }, _$VendorListResponseSerializer: function _$VendorListResponseSerializer() { }, _$VendorItemResponseSerializer: function _$VendorItemResponseSerializer() { }, _$VendorEntitySerializer: function _$VendorEntitySerializer() { }, _$VendorContactEntitySerializer: function _$VendorContactEntitySerializer() { }, _$VendorListResponse: function _$VendorListResponse(t0) { this.data = t0; this._vendor_model$__hashCode = null; }, VendorListResponseBuilder: function VendorListResponseBuilder() { this._vendor_model$_data = this._vendor_model$_$v = null; }, _$VendorItemResponse: function _$VendorItemResponse(t0) { this.data = t0; this._vendor_model$__hashCode = null; }, VendorItemResponseBuilder: function VendorItemResponseBuilder() { this._vendor_model$_data = this._vendor_model$_$v = null; }, _$VendorEntity: function _$VendorEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28) { var _ = this; _.name = t0; _.address1 = t1; _.address2 = t2; _.city = t3; _.state = t4; _.postalCode = t5; _.countryId = t6; _.phone = t7; _.privateNotes = t8; _.publicNotes = t9; _.website = t10; _.number = t11; _.vatNumber = t12; _.idNumber = t13; _.currencyId = t14; _.customValue1 = t15; _.customValue2 = t16; _.customValue3 = t17; _.customValue4 = t18; _.contacts = t19; _.documents = t20; _.isChanged = t21; _.createdAt = t22; _.updatedAt = t23; _.archivedAt = t24; _.isDeleted = t25; _.createdUserId = t26; _.assignedUserId = t27; _.id = t28; _._vendor_model$__hashCode = null; }, VendorEntityBuilder: function VendorEntityBuilder() { var _ = this; _._vendor_model$_id = _._vendor_model$_assignedUserId = _._vendor_model$_createdUserId = _._vendor_model$_isDeleted = _._vendor_model$_archivedAt = _._vendor_model$_updatedAt = _._vendor_model$_createdAt = _._vendor_model$_isChanged = _._vendor_model$_documents = _._vendor_model$_contacts = _._vendor_model$_customValue4 = _._vendor_model$_customValue3 = _._vendor_model$_customValue2 = _._vendor_model$_customValue1 = _._vendor_model$_currencyId = _._vendor_model$_idNumber = _._vendor_model$_vatNumber = _._vendor_model$_number = _._vendor_model$_website = _._vendor_model$_publicNotes = _._vendor_model$_privateNotes = _._vendor_model$_phone = _._vendor_model$_countryId = _._vendor_model$_postalCode = _._vendor_model$_state = _._vendor_model$_city = _._vendor_model$_address2 = _._vendor_model$_address1 = _._vendor_model$_name = _._vendor_model$_$v = null; }, _$VendorContactEntity: function _$VendorContactEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.firstName = t0; _.lastName = t1; _.email = t2; _.isPrimary = t3; _.phone = t4; _.isChanged = t5; _.createdAt = t6; _.updatedAt = t7; _.archivedAt = t8; _.isDeleted = t9; _.createdUserId = t10; _.assignedUserId = t11; _.id = t12; _._vendor_model$__hashCode = null; }, VendorContactEntityBuilder: function VendorContactEntityBuilder() { var _ = this; _._vendor_model$_id = _._vendor_model$_assignedUserId = _._vendor_model$_createdUserId = _._vendor_model$_isDeleted = _._vendor_model$_archivedAt = _._vendor_model$_updatedAt = _._vendor_model$_createdAt = _._vendor_model$_isChanged = _._vendor_model$_phone = _._isPrimary = _._vendor_model$_email = _._vendor_model$_lastName = _._vendor_model$_firstName = _._vendor_model$_$v = null; }, _VendorContactEntity_Object_BaseEntity: function _VendorContactEntity_Object_BaseEntity() { }, _VendorEntity_Object_BaseEntity: function _VendorEntity_Object_BaseEntity() { }, _VendorEntity_Object_BaseEntity_SelectableEntity: function _VendorEntity_Object_BaseEntity_SelectableEntity() { }, ExpenseRepository: function ExpenseRepository() { }, TaxRateRepository: function TaxRateRepository() { }, LoadStateRequest: function LoadStateRequest(t0) { this.context = t0; }, LoadStateSuccess: function LoadStateSuccess(t0) { this.state = t0; }, OAuthLoginRequest: function OAuthLoginRequest(t0, t1, t2, t3, t4, t5) { var _ = this; _.completer = t0; _.idToken = t1; _.accessToken = t2; _.url = t3; _.secret = t4; _.platform = t5; }, UserLoadUrl: function UserLoadUrl(t0) { this.url = t0; }, UserLoginRequest: function UserLoginRequest(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.completer = t0; _.email = t1; _.password = t2; _.url = t3; _.secret = t4; _.platform = t5; _.oneTimePassword = t6; }, UserLoginSuccess: function UserLoginSuccess() { }, UserLoginFailure: function UserLoginFailure() { }, RecoverPasswordRequest: function RecoverPasswordRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.email = t1; _.url = t2; _.secret = t3; }, RecoverPasswordSuccess: function RecoverPasswordSuccess() { }, RecoverPasswordFailure: function RecoverPasswordFailure() { }, UserLogout: function UserLogout() { }, UserLogoutAll: function UserLogoutAll(t0) { this.completer = t0; }, UserLogoutAllSuccess: function UserLogoutAllSuccess() { }, UserLogoutAllFailure: function UserLogoutAllFailure() { }, UserSignUpRequest: function UserSignUpRequest(t0, t1, t2) { this.completer = t0; this.email = t1; this.password = t2; }, OAuthSignUpRequest: function OAuthSignUpRequest(t0, t1, t2) { this.completer = t0; this.idToken = t1; this.accessToken = t2; }, UserVerifiedPassword: function UserVerifiedPassword() { }, UserUnverifiedPassword: function UserUnverifiedPassword() { }, UserCompanyState_UserCompanyState: function(reportErrors) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t1 = A.UserCompanyEntity_UserCompanyEntity(reportErrors), t2 = type$.legacy_String, t3 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_DocumentEntity); t3 = Q._$DocumentState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t3); t4 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_ProductEntity); t4 = Y._$ProductState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t4); t5 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_ClientEntity); t5 = F._$ClientState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t5); t6 = type$.legacy_InvoiceEntity; t7 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t6); t7 = B._$InvoiceState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t7); t8 = type$.legacy_ExpenseEntity; t9 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t8); t9 = R._$ExpenseState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t9); t10 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_VendorEntity); t10 = Y._$VendorState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t10); t11 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_TaskEntity); t11 = M._$TaskState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t11); t12 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_ProjectEntity); t12 = D._$ProjectState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t12); t13 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_PaymentEntity); t13 = L._$PaymentState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t13); t14 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t6); t14 = G._$QuoteState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t14); t8 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t8); t8 = K._$RecurringExpenseState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t8); t15 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_SubscriptionEntity); t15 = M._$SubscriptionState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t15); t16 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_TaskStatusEntity); t16 = L._$TaskStatusState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t16); t17 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_ExpenseCategoryEntity); t17 = Q._$ExpenseCategoryState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t17); t18 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t6); t18 = Q._$RecurringInvoiceState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t18); t19 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_WebhookEntity); t19 = V._$WebhookState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t19); t20 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_TokenEntity); t20 = N._$TokenState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t20); t21 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_PaymentTermEntity); t21 = N._$PaymentTermState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t21); t22 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_DesignEntity); t22 = Y._$DesignState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t22); t6 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t6); t6 = G._$CreditState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t6); t23 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_UserEntity); t23 = Q._$UserState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t23); t24 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_TaxRateEntity); t24 = Q._$TaxRateState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t24); t25 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_CompanyGatewayEntity); t25 = U._$CompanyGatewayState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t25); t26 = A.BuiltMap_BuiltMap(C.Map_empty0, t2, type$.legacy_GroupEntity); return B._$UserCompanyState$_(t5, t25, t6, t22, t3, t17, t9, E._$GroupState$_(D.BuiltList_BuiltList$from(C.List_empty, t2), t26), t7, 0, t13, t21, t4, t12, t14, t8, t18, t15, t11, t16, t24, t20, t1, t23, t10, t19); }, _$UserCompanyState$_: function(clientState, companyGatewayState, creditState, designState, documentState, expenseCategoryState, expenseState, groupState, invoiceState, lastUpdated, paymentState, paymentTermState, productState, projectState, quoteState, recurringExpenseState, recurringInvoiceState, subscriptionState, taskState, taskStatusState, taxRateState, tokenState, userCompany, userState, vendorState, webhookState) { var _s16_ = "UserCompanyState"; if (documentState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "documentState")); if (productState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "productState")); if (clientState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "clientState")); if (invoiceState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "invoiceState")); if (expenseState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "expenseState")); if (vendorState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "vendorState")); if (taskState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "taskState")); if (projectState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "projectState")); if (paymentState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "paymentState")); if (quoteState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "quoteState")); if (recurringExpenseState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "recurringExpenseState")); if (subscriptionState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "subscriptionState")); if (taskStatusState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "taskStatusState")); if (expenseCategoryState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "expenseCategoryState")); if (recurringInvoiceState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "recurringInvoiceState")); if (webhookState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "webhookState")); if (tokenState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "tokenState")); if (paymentTermState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "paymentTermState")); if (designState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "designState")); if (creditState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "creditState")); if (userState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "userState")); if (taxRateState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "taxRateState")); if (companyGatewayState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "companyGatewayState")); if (groupState == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "groupState")); return new B._$UserCompanyState(lastUpdated, userCompany, documentState, productState, clientState, invoiceState, expenseState, vendorState, taskState, projectState, paymentState, quoteState, recurringExpenseState, subscriptionState, taskStatusState, expenseCategoryState, recurringInvoiceState, webhookState, tokenState, paymentTermState, designState, creditState, userState, taxRateState, companyGatewayState, groupState); }, _$SettingsUIState$_: function(client, company, entityType, filter, filterClearedAt, group, isChanged, origClient, origCompany, origGroup, origUser, section, selectedTemplate, tabIndex, updatedAt, user) { var _s15_ = "SettingsUIState"; if (company == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "company")); if (origCompany == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "origCompany")); if (client == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "client")); if (origClient == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "origClient")); if (group == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "group")); if (origGroup == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "origGroup")); if (user == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "user")); if (origUser == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "origUser")); return new B._$SettingsUIState(company, origCompany, client, origClient, group, origGroup, user, origUser, entityType, isChanged, updatedAt, section, tabIndex, selectedTemplate, filter, filterClearedAt); }, UserCompanyState: function UserCompanyState() { }, SettingsUIState: function SettingsUIState() { }, _$UserCompanyStateSerializer: function _$UserCompanyStateSerializer() { }, _$SettingsUIStateSerializer: function _$SettingsUIStateSerializer() { }, _$UserCompanyState: function _$UserCompanyState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.lastUpdated = t0; _.userCompany = t1; _.documentState = t2; _.productState = t3; _.clientState = t4; _.invoiceState = t5; _.expenseState = t6; _.vendorState = t7; _.taskState = t8; _.projectState = t9; _.paymentState = t10; _.quoteState = t11; _.recurringExpenseState = t12; _.subscriptionState = t13; _.taskStatusState = t14; _.expenseCategoryState = t15; _.recurringInvoiceState = t16; _.webhookState = t17; _.tokenState = t18; _.paymentTermState = t19; _.designState = t20; _.creditState = t21; _.userState = t22; _.taxRateState = t23; _.companyGatewayState = t24; _.groupState = t25; _._company_state$__hashCode = null; }, UserCompanyStateBuilder: function UserCompanyStateBuilder() { var _ = this; _._groupState = _._companyGatewayState = _._taxRateState = _._userState = _._creditState = _._designState = _._paymentTermState = _._tokenState = _._webhookState = _._recurringInvoiceState = _._expenseCategoryState = _._taskStatusState = _._subscriptionState = _._recurringExpenseState = _._quoteState = _._paymentState = _._projectState = _._taskState = _._vendorState = _._expenseState = _._invoiceState = _._clientState = _._productState = _._documentState = _._company_state$_userCompany = _._lastUpdated = _._company_state$_$v = null; }, _$SettingsUIState: function _$SettingsUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15) { var _ = this; _.company = t0; _.origCompany = t1; _.client = t2; _.origClient = t3; _.group = t4; _.origGroup = t5; _.user = t6; _.origUser = t7; _.entityType = t8; _.isChanged = t9; _.updatedAt = t10; _.section = t11; _.tabIndex = t12; _.selectedTemplate = t13; _.filter = t14; _.filterClearedAt = t15; _._company_state$__hashCode = null; }, SettingsUIStateBuilder: function SettingsUIStateBuilder() { var _ = this; _._company_state$_filterClearedAt = _._company_state$_filter = _._selectedTemplate = _._tabIndex = _._section = _._updatedAt = _._isChanged = _._entityType = _._origUser = _._user = _._origGroup = _._company_state$_group = _._origClient = _._client = _._origCompany = _._company = _._company_state$_$v = null; }, dropdownCreditSelector: function(creditMap, clientMap, creditList, clientId, userMap, excludedIds) { var t1 = J.where$1$ax(creditList._list, new B.dropdownCreditSelector_closure(creditMap, excludedIds, clientId, clientMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new B.dropdownCreditSelector_closure0(creditMap, clientMap, userMap)); return list; }, filteredCreditsSelector: function(selectionState, creditMap, creditList, clientMap, creditListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(creditList._list, new B.filteredCreditsSelector_closure(creditMap, clientMap, selectionState, filterEntityType, filterEntityId, creditListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new B.filteredCreditsSelector_closure0(creditMap, creditListState, clientMap, userMap)); return list; }, creditStatsForDesign: function(designId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(creditMap._map$_map, new B.creditStatsForDesign_closure(t1, designId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, creditStatsForClient: function(clientId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(creditMap._map$_map, new B.creditStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, creditStatsForUser: function(userId, creditMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(creditMap._map$_map, new B.creditStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, hasCreditChanges: function(credit, creditMap) { var t1; if (credit.get$isNew()) t1 = credit.isChanged; else { t1 = credit.id; t1 = !credit.$eq(0, J.$index$asx(creditMap._map$_map, t1)); } return t1; }, memoizedDropdownCreditList_closure: function memoizedDropdownCreditList_closure() { }, dropdownCreditSelector_closure: function dropdownCreditSelector_closure(t0, t1, t2, t3) { var _ = this; _.creditMap = t0; _.excludedIds = t1; _.clientId = t2; _.clientMap = t3; }, dropdownCreditSelector_closure0: function dropdownCreditSelector_closure0(t0, t1, t2) { this.creditMap = t0; this.clientMap = t1; this.userMap = t2; }, memoizedFilteredCreditList_closure: function memoizedFilteredCreditList_closure() { }, filteredCreditsSelector_closure: function filteredCreditsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.creditMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.creditListState = t5; }, filteredCreditsSelector_closure0: function filteredCreditsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.creditMap = t0; _.creditListState = t1; _.clientMap = t2; _.userMap = t3; }, memoizedCreditStatsForDesign_closure: function memoizedCreditStatsForDesign_closure() { }, creditStatsForDesign_closure: function creditStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedCreditStatsForClient_closure: function memoizedCreditStatsForClient_closure() { }, creditStatsForClient_closure: function creditStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedCreditStatsForUser_closure: function memoizedCreditStatsForUser_closure() { }, creditStatsForUser_closure: function creditStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$InvoiceState$_: function(list, map) { var _s12_ = "InvoiceState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new B._$InvoiceState(map, list); }, _$InvoiceUIState$_: function(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("InvoiceUIState", "listUIState")); return new B._$InvoiceUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, InvoiceState: function InvoiceState() { }, InvoiceState_loadInvoices_closure0: function InvoiceState_loadInvoices_closure0() { }, InvoiceState_loadInvoices_closure1: function InvoiceState_loadInvoices_closure1() { }, InvoiceState_loadInvoices_closure: function InvoiceState_loadInvoices_closure(t0, t1) { this.$this = t0; this.map = t1; }, InvoiceUIState: function InvoiceUIState() { }, _$InvoiceStateSerializer: function _$InvoiceStateSerializer() { }, _$InvoiceUIStateSerializer: function _$InvoiceUIStateSerializer() { }, _$InvoiceState: function _$InvoiceState(t0, t1) { this.map = t0; this.list = t1; this._invoice_state$__hashCode = null; }, InvoiceStateBuilder: function InvoiceStateBuilder() { this._invoice_state$_list = this._invoice_state$_map = this._invoice_state$_$v = null; }, _$InvoiceUIState: function _$InvoiceUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._invoice_state$__hashCode = null; }, InvoiceUIStateBuilder: function InvoiceUIStateBuilder() { var _ = this; _._invoice_state$_cancelCompleter = _._invoice_state$_saveCompleter = _._invoice_state$_tabIndex = _._invoice_state$_forceSelected = _._invoice_state$_selectedId = _._invoice_state$_listUIState = _._invoice_state$_historyActivityId = _._invoice_state$_editingItemIndex = _._invoice_state$_editing = _._invoice_state$_$v = null; }, _InvoiceUIState_Object_EntityUIState: function _InvoiceUIState_Object_EntityUIState() { }, productUIReducer: function(state, action) { var t1; state.toString; t1 = new Y.ProductUIStateBuilder(); t1._product_state$_$v = state; new B.productUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing8: function(product, action) { return A.ProductEntity_ProductEntity(null, null); }, _updateEditing9: function(product, action) { return J.get$product$x(action); }, _viewClientList1: function(productListState, action) { return productListState.rebuild$1(new B._viewClientList_closure0()); }, _filterProductsByState: function(productListState, action) { var t1 = productListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return productListState.rebuild$1(new B._filterProductsByState_closure(action)); else return productListState.rebuild$1(new B._filterProductsByState_closure0(action)); }, _filterProductsByCustom1: function(productListState, action) { var t1 = productListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return productListState.rebuild$1(new B._filterProductsByCustom1_closure(action)); else return productListState.rebuild$1(new B._filterProductsByCustom1_closure0(action)); }, _filterProductsByCustom2: function(productListState, action) { var t1 = productListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return productListState.rebuild$1(new B._filterProductsByCustom2_closure(action)); else return productListState.rebuild$1(new B._filterProductsByCustom2_closure0(action)); }, _filterProductsByCustom3: function(productListState, action) { var t1 = productListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return productListState.rebuild$1(new B._filterProductsByCustom3_closure(action)); else return productListState.rebuild$1(new B._filterProductsByCustom3_closure0(action)); }, _filterProductsByCustom4: function(productListState, action) { var t1 = productListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return productListState.rebuild$1(new B._filterProductsByCustom4_closure(action)); else return productListState.rebuild$1(new B._filterProductsByCustom4_closure0(action)); }, _filterProducts: function(productListState, action) { return productListState.rebuild$1(new B._filterProducts_closure(action, productListState)); }, _sortProducts: function(productListState, action) { return productListState.rebuild$1(new B._sortProducts_closure(action)); }, _startListMultiselect10: function(productListState, action) { return productListState.rebuild$1(new B._startListMultiselect_closure22()); }, _addToListMultiselect10: function(productListState, action) { return productListState.rebuild$1(new B._addToListMultiselect_closure22(action)); }, _removeFromListMultiselect10: function(productListState, action) { return productListState.rebuild$1(new B._removeFromListMultiselect_closure22(action)); }, _clearListMultiselect10: function(productListState, action) { return productListState.rebuild$1(new B._clearListMultiselect_closure22()); }, _archiveProductSuccess: function(productState, action) { return productState.rebuild$1(new B._archiveProductSuccess_closure(action)); }, _deleteProductSuccess: function(productState, action) { return productState.rebuild$1(new B._deleteProductSuccess_closure(action)); }, _restoreProductSuccess: function(productState, action) { return productState.rebuild$1(new B._restoreProductSuccess_closure(action)); }, _addProduct: function(productState, action) { return productState.rebuild$1(new B._addProduct_closure(action)); }, _updateProduct: function(productState, action) { return productState.rebuild$1(new B._updateProduct_closure(action)); }, _setLoadedProduct: function(productState, action) { return productState.rebuild$1(new B._setLoadedProduct_closure(action)); }, _setLoadedProducts: function(productState, action) { return productState.loadProducts$1(action.products); }, _setLoadedCompany9: function(productState, action) { return productState.loadProducts$1(action.userCompany.company.products); }, productUIReducer_closure: function productUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure175: function forceSelectedReducer_closure175() { }, forceSelectedReducer_closure176: function forceSelectedReducer_closure176() { }, forceSelectedReducer_closure177: function forceSelectedReducer_closure177() { }, forceSelectedReducer_closure178: function forceSelectedReducer_closure178() { }, forceSelectedReducer_closure179: function forceSelectedReducer_closure179() { }, forceSelectedReducer_closure180: function forceSelectedReducer_closure180() { }, forceSelectedReducer_closure181: function forceSelectedReducer_closure181() { }, forceSelectedReducer_closure182: function forceSelectedReducer_closure182() { }, tabIndexReducer_closure23: function tabIndexReducer_closure23() { }, tabIndexReducer_closure24: function tabIndexReducer_closure24() { }, editingReducer_closure126: function editingReducer_closure126() { }, editingReducer__closure49: function editingReducer__closure49() { }, editingReducer_closure127: function editingReducer_closure127() { }, editingReducer_closure128: function editingReducer_closure128() { }, editingReducer_closure129: function editingReducer_closure129() { }, selectedIdReducer_closure352: function selectedIdReducer_closure352() { }, selectedIdReducer_closure353: function selectedIdReducer_closure353() { }, selectedIdReducer_closure354: function selectedIdReducer_closure354() { }, selectedIdReducer_closure355: function selectedIdReducer_closure355() { }, selectedIdReducer_closure356: function selectedIdReducer_closure356() { }, selectedIdReducer_closure357: function selectedIdReducer_closure357() { }, selectedIdReducer_closure358: function selectedIdReducer_closure358() { }, selectedIdReducer_closure359: function selectedIdReducer_closure359() { }, selectedIdReducer_closure360: function selectedIdReducer_closure360() { }, selectedIdReducer_closure361: function selectedIdReducer_closure361() { }, selectedIdReducer_closure362: function selectedIdReducer_closure362() { }, selectedIdReducer_closure363: function selectedIdReducer_closure363() { }, selectedIdReducer_closure364: function selectedIdReducer_closure364() { }, selectedIdReducer_closure365: function selectedIdReducer_closure365() { }, _viewClientList_closure0: function _viewClientList_closure0() { }, _filterProductsByState_closure: function _filterProductsByState_closure(t0) { this.action = t0; }, _filterProductsByState_closure0: function _filterProductsByState_closure0(t0) { this.action = t0; }, _filterProductsByCustom1_closure: function _filterProductsByCustom1_closure(t0) { this.action = t0; }, _filterProductsByCustom1_closure0: function _filterProductsByCustom1_closure0(t0) { this.action = t0; }, _filterProductsByCustom2_closure: function _filterProductsByCustom2_closure(t0) { this.action = t0; }, _filterProductsByCustom2_closure0: function _filterProductsByCustom2_closure0(t0) { this.action = t0; }, _filterProductsByCustom3_closure: function _filterProductsByCustom3_closure(t0) { this.action = t0; }, _filterProductsByCustom3_closure0: function _filterProductsByCustom3_closure0(t0) { this.action = t0; }, _filterProductsByCustom4_closure: function _filterProductsByCustom4_closure(t0) { this.action = t0; }, _filterProductsByCustom4_closure0: function _filterProductsByCustom4_closure0(t0) { this.action = t0; }, _filterProducts_closure: function _filterProducts_closure(t0, t1) { this.action = t0; this.productListState = t1; }, _sortProducts_closure: function _sortProducts_closure(t0) { this.action = t0; }, _startListMultiselect_closure22: function _startListMultiselect_closure22() { }, _addToListMultiselect_closure22: function _addToListMultiselect_closure22(t0) { this.action = t0; }, _removeFromListMultiselect_closure22: function _removeFromListMultiselect_closure22(t0) { this.action = t0; }, _clearListMultiselect_closure22: function _clearListMultiselect_closure22() { }, _archiveProductSuccess_closure: function _archiveProductSuccess_closure(t0) { this.action = t0; }, _deleteProductSuccess_closure: function _deleteProductSuccess_closure(t0) { this.action = t0; }, _restoreProductSuccess_closure: function _restoreProductSuccess_closure(t0) { this.action = t0; }, _addProduct_closure: function _addProduct_closure(t0) { this.action = t0; }, _updateProduct_closure: function _updateProduct_closure(t0) { this.action = t0; }, _setLoadedProduct_closure: function _setLoadedProduct_closure(t0) { this.action = t0; }, StaticState_StaticState: function() { var t1 = type$.legacy_String, t2 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_CurrencyEntity), t3 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_SizeEntity), t4 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_GatewayEntity), t5 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_IndustryEntity), t6 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_TimezoneEntity), t7 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_DateFormatEntity), t8 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_LanguageEntity), t9 = A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_PaymentTypeEntity); return B._$StaticState$_(A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_CountryEntity), t2, t7, t4, t5, t8, t9, t3, A.BuiltMap_BuiltMap(C.Map_empty0, t1, type$.legacy_TemplateEntity), t6, null); }, _$StaticState$_: function(countryMap, currencyMap, dateFormatMap, gatewayMap, industryMap, languageMap, paymentTypeMap, sizeMap, templateMap, timezoneMap, updatedAt) { var _s11_ = "StaticState"; if (currencyMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "currencyMap")); if (sizeMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "sizeMap")); if (gatewayMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "gatewayMap")); if (industryMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "industryMap")); if (timezoneMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "timezoneMap")); if (dateFormatMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "dateFormatMap")); if (languageMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "languageMap")); if (paymentTypeMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "paymentTypeMap")); if (countryMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "countryMap")); if (templateMap == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "templateMap")); return new B._$StaticState(updatedAt, currencyMap, sizeMap, gatewayMap, industryMap, timezoneMap, dateFormatMap, languageMap, paymentTypeMap, countryMap, templateMap); }, StaticState: function StaticState() { }, _$StaticStateSerializer: function _$StaticStateSerializer() { }, _$StaticState: function _$StaticState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.updatedAt = t0; _.currencyMap = t1; _.sizeMap = t2; _.gatewayMap = t3; _.industryMap = t4; _.timezoneMap = t5; _.dateFormatMap = t6; _.languageMap = t7; _.paymentTypeMap = t8; _.countryMap = t9; _.templateMap = t10; _._static_state$__hashCode = null; }, StaticStateBuilder: function StaticStateBuilder() { var _ = this; _._templateMap = _._countryMap = _._paymentTypeMap = _._languageMap = _._dateFormatMap = _._timezoneMap = _._industryMap = _._gatewayMap = _._sizeMap = _._currencyMap = _._static_state$_updatedAt = _._static_state$_$v = null; }, _editTaskStatus: function() { return new B._editTaskStatus_closure(); }, _viewTaskStatus: function() { return new B._viewTaskStatus_closure(); }, _viewTaskStatusList: function() { return new B._viewTaskStatusList_closure0(); }, _archiveTaskStatus: function(repository) { return new B._archiveTaskStatus_closure(repository); }, _deleteTaskStatus: function(repository) { return new B._deleteTaskStatus_closure(repository); }, _restoreTaskStatus: function(repository) { return new B._restoreTaskStatus_closure(repository); }, _saveTaskStatus: function(repository) { return new B._saveTaskStatus_closure(repository); }, _loadTaskStatus: function(repository) { return new B._loadTaskStatus_closure(repository); }, _loadTaskStatuses: function(repository) { return new B._loadTaskStatuses_closure(repository); }, _editTaskStatus_closure: function _editTaskStatus_closure() { }, _viewTaskStatus_closure: function _viewTaskStatus_closure() { }, _viewTaskStatusList_closure0: function _viewTaskStatusList_closure0() { }, _viewTaskStatusList__closure: function _viewTaskStatusList__closure() { }, _archiveTaskStatus_closure: function _archiveTaskStatus_closure(t0) { this.repository = t0; }, _archiveTaskStatus__closure: function _archiveTaskStatus__closure(t0) { this.store = t0; }, _archiveTaskStatus__closure0: function _archiveTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveTaskStatus__closure1: function _archiveTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _deleteTaskStatus_closure: function _deleteTaskStatus_closure(t0) { this.repository = t0; }, _deleteTaskStatus__closure: function _deleteTaskStatus__closure(t0) { this.store = t0; }, _deleteTaskStatus__closure0: function _deleteTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteTaskStatus__closure1: function _deleteTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _restoreTaskStatus_closure: function _restoreTaskStatus_closure(t0) { this.repository = t0; }, _restoreTaskStatus__closure: function _restoreTaskStatus__closure(t0) { this.store = t0; }, _restoreTaskStatus__closure0: function _restoreTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreTaskStatus__closure1: function _restoreTaskStatus__closure1(t0, t1, t2) { this.store = t0; this.prevTaskStatuses = t1; this.action = t2; }, _saveTaskStatus_closure: function _saveTaskStatus_closure(t0) { this.repository = t0; }, _saveTaskStatus__closure: function _saveTaskStatus__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveTaskStatus__closure0: function _saveTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatus_closure: function _loadTaskStatus_closure(t0) { this.repository = t0; }, _loadTaskStatus__closure: function _loadTaskStatus__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatus__closure0: function _loadTaskStatus__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatuses_closure: function _loadTaskStatuses_closure(t0) { this.repository = t0; }, _loadTaskStatuses__closure: function _loadTaskStatuses__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadTaskStatuses__closure0: function _loadTaskStatuses__closure0(t0, t1) { this.store = t0; this.action = t1; }, ConfirmEmailVM_fromStore: function(store) { return new B.ConfirmEmailVM(store.get$_store$_state(), new B.ConfirmEmailVM_fromStore_closure(store), new B.ConfirmEmailVM_fromStore_closure0(store), new B.ConfirmEmailVM_fromStore_closure1(store)); }, ConfirmEmailBuilder: function ConfirmEmailBuilder(t0) { this.key = t0; }, ConfirmEmailBuilder_build_closure: function ConfirmEmailBuilder_build_closure() { }, ConfirmEmailVM: function ConfirmEmailVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onResendPressed = t1; _.onRefreshPressed = t2; _.onChangeEmail = t3; }, ConfirmEmailVM_fromStore_closure0: function ConfirmEmailVM_fromStore_closure0(t0) { this.store = t0; }, ConfirmEmailVM_fromStore_closure: function ConfirmEmailVM_fromStore_closure(t0) { this.store = t0; }, ConfirmEmailVM_fromStore_closure1: function ConfirmEmailVM_fromStore_closure1(t0) { this.store = t0; }, ConfirmEmailVM_fromStore__closure: function ConfirmEmailVM_fromStore__closure(t0) { this.email = t0; }, CustomField: function CustomField(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.controller = t0; _.onChanged = t1; _.onSavePressed = t2; _.field = t3; _.value = t4; _.hideFieldLabel = t5; _.key = t6; }, _CustomFieldState: function _CustomFieldState(t0) { var _ = this; _._widget = _._custom_field$_value = _._custom_field$_controller = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _CustomFieldState_build_closure: function _CustomFieldState_build_closure(t0) { this.$this = t0; }, _CustomFieldState_build_closure0: function _CustomFieldState_build_closure0(t0) { this.$this = t0; }, _CustomFieldState_build_closure1: function _CustomFieldState_build_closure1() { }, _CustomFieldState_build_closure2: function _CustomFieldState_build_closure2(t0) { this.$this = t0; }, _CustomFieldState_build__closure: function _CustomFieldState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, LearnMoreUrl: function LearnMoreUrl(t0, t1, t2, t3) { var _ = this; _.child = t0; _.url = t1; _.label = t2; _.key = t3; }, LearnMoreUrl_build_closure: function LearnMoreUrl_build_closure(t0) { this.$this = t0; }, NotificationSettings: function NotificationSettings(t0, t1, t2) { this.user = t0; this.onChanged = t1; this.key = t2; }, NotificationSettings_build_closure: function NotificationSettings_build_closure(t0) { this.$this = t0; }, NotificationSettings_build_closure0: function NotificationSettings_build_closure0(t0) { this.state = t0; }, NotificationSettings_build_closure1: function NotificationSettings_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.emailNotifications = t1; _.localization = t2; _.hasMultipleUsers = t3; }, NotificationSettings_build__closure: function NotificationSettings_build__closure(t0, t1, t2) { this.$this = t0; this.emailNotifications = t1; this.eventType = t2; }, _NotificationSelector: function _NotificationSelector(t0, t1, t2, t3, t4) { var _ = this; _.value = t0; _.onChanged = t1; _.hasMultipleUsers = t2; _.showNoneAsCustom = t3; _.key = t4; }, _NotificationSelector_build_closure: function _NotificationSelector_build_closure(t0) { this.$this = t0; }, WebSocketRefresh: function WebSocketRefresh(t0, t1) { this.child = t0; this.key = t1; }, _WebSocketRefreshState: function _WebSocketRefreshState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, InitScreen: function InitScreen(t0) { this.key = t0; }, InitScreen_build_closure0: function InitScreen_build_closure0(t0) { this.context = t0; }, InitScreen_build_closure: function InitScreen_build_closure() { }, ClientScreen: function ClientScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientScreen_build_closure9: function ClientScreen_build_closure9(t0) { this.store = t0; }, ClientScreen_build_closure7: function ClientScreen_build_closure7(t0) { this.store = t0; }, ClientScreen_build_closure8: function ClientScreen_build_closure8(t0) { this.store = t0; }, ClientScreen_build_closure4: function ClientScreen_build_closure4(t0) { this.store = t0; }, ClientScreen_build_closure5: function ClientScreen_build_closure5(t0) { this.store = t0; }, ClientScreen_build_closure: function ClientScreen_build_closure(t0) { this.store = t0; }, ClientScreen_build_closure0: function ClientScreen_build_closure0(t0) { this.store = t0; }, ClientScreen_build_closure1: function ClientScreen_build_closure1(t0) { this.store = t0; }, ClientScreen_build_closure2: function ClientScreen_build_closure2(t0) { this.store = t0; }, ClientScreen_build_closure3: function ClientScreen_build_closure3(t0) { this.store = t0; }, ClientScreen_build_closure6: function ClientScreen_build_closure6(t0) { this.context = t0; }, DesignViewVM_DesignViewVM$fromStore: function(store) { var t4, t5, design, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).designState.map; t2 = t2.designUIState.selectedId; design = J.$index$asx(t5._map$_map, t2); if (design == null) design = D.DesignEntity_DesignEntity(null, t2, null); t1 = t4.$index(t1, t3).userCompany.company; design.get$isNew(); return new B.DesignViewVM(state, design, t1, new B.DesignViewVM_DesignViewVM$fromStore_closure(store)); }, DesignViewScreen: function DesignViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, DesignViewScreen_build_closure0: function DesignViewScreen_build_closure0() { }, DesignViewScreen_build_closure: function DesignViewScreen_build_closure(t0) { this.$this = t0; }, DesignViewVM: function DesignViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.design = t1; _.company = t2; _.onBackPressed = t3; }, DesignViewVM_DesignViewVM$fromStore_closure: function DesignViewVM_DesignViewVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditPDFScreen: function InvoiceEditPDFScreen(t0) { this.key = t0; }, InvoiceEditPDFScreen_build_closure0: function InvoiceEditPDFScreen_build_closure0() { }, InvoiceEditPDFScreen_build_closure: function InvoiceEditPDFScreen_build_closure() { }, EntityEditPDFVM: function EntityEditPDFVM() { }, InvoiceEditPDFVM: function InvoiceEditPDFVM(t0, t1, t2) { this.state = t0; this.company = t1; this.invoice = t2; }, InvoiceViewContacts: function InvoiceViewContacts(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceViewContacts_build_closure: function InvoiceViewContacts_build_closure(t0) { this.$this = t0; }, _InvitationListTile: function _InvitationListTile(t0, t1, t2) { this.invitation = t0; this.viewModel = t1; this.key = t2; }, _InvitationListTile_build_closure: function _InvitationListTile_build_closure(t0) { this.$this = t0; }, _InvitationListTile_build_closure0: function _InvitationListTile_build_closure0() { }, _InvitationListTile_build_closure1: function _InvitationListTile_build_closure1(t0, t1) { this.$this = t0; this.client = t1; }, _InvitationListTile_build_closure2: function _InvitationListTile_build_closure2(t0, t1) { this.$this = t0; this.localization = t1; }, PaymentEditVM_PaymentEditVM$fromStore: function(store) { var t2, state = store.get$_store$_state(), t1 = state.uiState, payment = t1.paymentUIState.editing; payment.get$isNew(); t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).paymentState.map; t2 = payment.id; J.$index$asx(t1._map$_map, t2); return new B.PaymentEditVM(state, payment, new B.PaymentEditVM_PaymentEditVM$fromStore_closure(store), new B.PaymentEditVM_PaymentEditVM$fromStore_closure0(store, state), new B.PaymentEditVM_PaymentEditVM$fromStore_closure1(store, state), state.staticState); }, PaymentEditScreen: function PaymentEditScreen(t0) { this.key = t0; }, PaymentEditScreen_build_closure0: function PaymentEditScreen_build_closure0() { }, PaymentEditScreen_build_closure: function PaymentEditScreen_build_closure() { }, PaymentEditVM: function PaymentEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.payment = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.staticState = t5; }, PaymentEditVM_PaymentEditVM$fromStore_closure: function PaymentEditVM_PaymentEditVM$fromStore_closure(t0) { this.store = t0; }, PaymentEditVM_PaymentEditVM$fromStore_closure1: function PaymentEditVM_PaymentEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore_closure0: function PaymentEditVM_PaymentEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore__closure: function PaymentEditVM_PaymentEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, PaymentEditVM_PaymentEditVM$fromStore___closure: function PaymentEditVM_PaymentEditVM$fromStore___closure(t0) { this._box_0 = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure0: function PaymentEditVM_PaymentEditVM$fromStore___closure0(t0) { this._box_0 = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure1: function PaymentEditVM_PaymentEditVM$fromStore___closure1(t0) { this.localization = t0; }, PaymentEditVM_PaymentEditVM$fromStore___closure2: function PaymentEditVM_PaymentEditVM$fromStore___closure2(t0, t1, t2, t3, t4) { var _ = this; _.payment = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, PaymentEditVM_PaymentEditVM$fromStore___closure3: function PaymentEditVM_PaymentEditVM$fromStore___closure3() { }, PaymentEditVM_PaymentEditVM$fromStore____closure: function PaymentEditVM_PaymentEditVM$fromStore____closure(t0) { this.error = t0; }, ProductOverview: function ProductOverview(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductOverviewState: function _ProductOverviewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, QuoteEditVM_QuoteEditVM$fromStore: function(store) { var t4, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.quoteUIState, quote = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t1).userCompany.company; t2 = t2.editingItemIndex; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = J.$index$asx(t4._list, t3).quoteState.map; t4 = quote.id; J.$index$asx(t3._map$_map, t4); return new B.QuoteEditVM(state, t1, quote, t2, new B.QuoteEditVM_QuoteEditVM$fromStore_closure(store, state), new B.QuoteEditVM_QuoteEditVM$fromStore_closure0(store, quote), new B.QuoteEditVM_QuoteEditVM$fromStore_closure1(state, store)); }, QuoteEditScreen: function QuoteEditScreen(t0) { this.key = t0; }, QuoteEditScreen_build_closure0: function QuoteEditScreen_build_closure0() { }, QuoteEditScreen_build_closure: function QuoteEditScreen_build_closure() { }, QuoteEditVM: function QuoteEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.invoiceItemIndex = t3; _.onSavePressed = t4; _.onItemsAdded = t5; _.onCancelPressed = t6; }, QuoteEditVM_QuoteEditVM$fromStore_closure: function QuoteEditVM_QuoteEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, QuoteEditVM_QuoteEditVM$fromStore__closure: function QuoteEditVM_QuoteEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, QuoteEditVM_QuoteEditVM$fromStore___closure: function QuoteEditVM_QuoteEditVM$fromStore___closure(t0) { this.localization = t0; }, QuoteEditVM_QuoteEditVM$fromStore___closure0: function QuoteEditVM_QuoteEditVM$fromStore___closure0(t0, t1, t2, t3, t4, t5) { var _ = this; _.quote = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; _.action = t5; }, QuoteEditVM_QuoteEditVM$fromStore___closure1: function QuoteEditVM_QuoteEditVM$fromStore___closure1() { }, QuoteEditVM_QuoteEditVM$fromStore____closure: function QuoteEditVM_QuoteEditVM$fromStore____closure(t0) { this.error = t0; }, QuoteEditVM_QuoteEditVM$fromStore_closure0: function QuoteEditVM_QuoteEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.quote = t1; }, QuoteEditVM_QuoteEditVM$fromStore_closure1: function QuoteEditVM_QuoteEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, QuoteEdit: function QuoteEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _QuoteEditState: function _QuoteEditState(t0, t1) { var _ = this; _._quote_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _QuoteEditState_build_closure1: function _QuoteEditState_build_closure1(t0) { this.viewModel = t0; }, _QuoteEditState_build_closure2: function _QuoteEditState_build_closure2(t0) { this.$this = t0; }, _QuoteEditState_build_closure0: function _QuoteEditState_build_closure0(t0) { this.$this = t0; }, _QuoteEditState_build_closure: function _QuoteEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _QuoteEditState_build__closure: function _QuoteEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _QuoteEditState_build___closure: function _QuoteEditState_build___closure() { }, _QuoteEditState_build___closure1: function _QuoteEditState_build___closure1(t0) { this.viewModel = t0; }, _QuoteEditState_build___closure0: function _QuoteEditState_build___closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __QuoteEditState_State_SingleTickerProviderStateMixin: function __QuoteEditState_State_SingleTickerProviderStateMixin() { }, EmailQuoteVM_EmailQuoteVM$fromStore: function(store, quote) { var t4, t5, state = store.get$_store$_state(), t1 = state.isLoading, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).userCompany.company; t3 = t4.$index(t2, t3).clientState.map; t2 = quote.clientId; return new B.EmailQuoteVM(state, t1, t5, quote, J.$index$asx(t3._map$_map, t2), new B.EmailQuoteVM_EmailQuoteVM$fromStore_closure(store, quote), new B.EmailQuoteVM_EmailQuoteVM$fromStore_closure0(quote, store)); }, QuoteEmailScreen: function QuoteEmailScreen(t0) { this.key = t0; }, QuoteEmailScreen_build_closure1: function QuoteEmailScreen_build_closure1() { }, QuoteEmailScreen_build_closure0: function QuoteEmailScreen_build_closure0() { }, QuoteEmailScreen_build_closure: function QuoteEmailScreen_build_closure() { }, EmailQuoteVM: function EmailQuoteVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.isLoading = t1; _.company = t2; _.invoice = t3; _.client = t4; _.loadClient = t5; _.onSendPressed = t6; }, EmailQuoteVM_EmailQuoteVM$fromStore_closure: function EmailQuoteVM_EmailQuoteVM$fromStore_closure(t0, t1) { this.store = t0; this.quote = t1; }, EmailQuoteVM_EmailQuoteVM$fromStore_closure0: function EmailQuoteVM_EmailQuoteVM$fromStore_closure0(t0, t1) { this.quote = t0; this.store = t1; }, EmailQuoteVM_EmailQuoteVM$fromStore__closure: function EmailQuoteVM_EmailQuoteVM$fromStore__closure(t0) { this.quote = t0; }, QuotePresenter: function QuotePresenter() { this.context = this.entity = null; }, QuoteScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).quoteState.toString; t5 = $.$get$memoizedFilteredQuoteList(); t6 = state.getUISelection$1(C.EntityType_quote); t7 = t4.$index(t1, t3).quoteState.map; t8 = t4.$index(t1, t3).quoteState.list; t9 = t4.$index(t1, t3).clientState.map; t2 = t2.quoteUIState.listUIState; t9 = t5.call$6(t6, t7, t8, t9, t2, t4.$index(t1, t3).userState.map); t4.$index(t1, t3).toString; t2.toString; return new B.QuoteScreenVM(t9); }, QuoteScreenBuilder: function QuoteScreenBuilder(t0) { this.key = t0; }, QuoteScreenBuilder_build_closure: function QuoteScreenBuilder_build_closure() { }, QuoteScreenVM: function QuoteScreenVM(t0) { this.quoteList = t0; }, RecurringExpenseScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).recurringExpenseState.toString; t5 = $.$get$memoizedFilteredRecurringExpenseList(); t6 = state.getUISelection$1(C.EntityType_recurringExpense); t7 = t4.$index(t1, t3).recurringExpenseState.map; t8 = t4.$index(t1, t3).clientState.map; t9 = t4.$index(t1, t3).vendorState.map; t10 = t4.$index(t1, t3).userState.map; t2 = t2.recurringExpenseUIState.listUIState; t10 = t5.call$9(t6, t7, t8, t9, t10, t2, t4.$index(t1, t3).invoiceState.map, t4.$index(t1, t3).expenseCategoryState.map, state.staticState); t4.$index(t1, t3).toString; t2.toString; return new B.RecurringExpenseScreenVM(t10); }, RecurringExpenseScreenBuilder: function RecurringExpenseScreenBuilder(t0) { this.key = t0; }, RecurringExpenseScreenBuilder_build_closure: function RecurringExpenseScreenBuilder_build_closure() { }, RecurringExpenseScreenVM: function RecurringExpenseScreenVM(t0) { this.recurringExpenseList = t0; }, BuyNowButtonsVM_fromStore: function(store) { return new B.BuyNowButtonsVM(store.get$_store$_state()); }, BuyNowButtonsScreen: function BuyNowButtonsScreen(t0) { this.key = t0; }, BuyNowButtonsScreen_build_closure: function BuyNowButtonsScreen_build_closure() { }, BuyNowButtonsVM: function BuyNowButtonsVM(t0) { this.state = t0; }, InvoiceDesignVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState; return new B.InvoiceDesignVM(state, t1.get$settings(), t1.company, new B.InvoiceDesignVM_fromStore_closure(store), new B.InvoiceDesignVM_fromStore_closure0(store, state)); }, InvoiceDesignScreen: function InvoiceDesignScreen(t0) { this.key = t0; }, InvoiceDesignScreen_build_closure: function InvoiceDesignScreen_build_closure() { }, InvoiceDesignVM: function InvoiceDesignVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.settings = t1; _.company = t2; _.onSettingsChanged = t3; _.onSavePressed = t4; }, InvoiceDesignVM_fromStore_closure: function InvoiceDesignVM_fromStore_closure(t0) { this.store = t0; }, InvoiceDesignVM_fromStore_closure0: function InvoiceDesignVM_fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, InvoiceDesignVM_fromStore__closure: function InvoiceDesignVM_fromStore__closure(t0, t1, t2, t3) { var _ = this; _.store = t0; _.context = t1; _.state = t2; _.entityTypes = t3; }, InvoiceDesignVM_fromStore___closure: function InvoiceDesignVM_fromStore___closure(t0, t1, t2) { this.state = t0; this.store = t1; this.entityTypes = t2; }, InvoiceDesignVM_fromStore____closure: function InvoiceDesignVM_fromStore____closure(t0, t1, t2, t3) { var _ = this; _.webClient = t0; _.url = t1; _.credentials = t2; _.settings = t3; }, InvoiceDesignVM_fromStore_____closure: function InvoiceDesignVM_fromStore_____closure() { }, InvoiceDesignVM_fromStore_____closure0: function InvoiceDesignVM_fromStore_____closure0() { }, LocalizationSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState, t2 = t1.get$settings(); return new B.LocalizationSettingsVM(state, t1.company, new B.LocalizationSettingsVM_fromStore_closure(store), t2, new B.LocalizationSettingsVM_fromStore_closure0(store), new B.LocalizationSettingsVM_fromStore_closure1(store)); }, LocalizationScreen: function LocalizationScreen(t0) { this.key = t0; }, LocalizationScreen_build_closure: function LocalizationScreen_build_closure() { }, LocalizationSettingsVM: function LocalizationSettingsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.onCompanyChanged = t2; _.settings = t3; _.onSettingsChanged = t4; _.onSavePressed = t5; }, LocalizationSettingsVM_fromStore_closure0: function LocalizationSettingsVM_fromStore_closure0(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore_closure: function LocalizationSettingsVM_fromStore_closure(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore_closure1: function LocalizationSettingsVM_fromStore_closure1(t0) { this.store = t0; }, LocalizationSettingsVM_fromStore__closure: function LocalizationSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, LocalizationSettingsVM_fromStore___closure: function LocalizationSettingsVM_fromStore___closure(t0, t1) { this.appBuilder = t0; this.store = t1; }, LocalizationSettingsVM_fromStore____closure: function LocalizationSettingsVM_fromStore____closure(t0) { this.appBuilder = t0; }, OnlinePaymentsVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState; return new B.OnlinePaymentsVM(state, t1.company, t1.get$settings(), new B.OnlinePaymentsVM_fromStore_closure(store), new B.OnlinePaymentsVM_fromStore_closure0(store), new B.OnlinePaymentsVM_fromStore_closure1(store)); }, OnlinePaymentsScreen: function OnlinePaymentsScreen(t0) { this.key = t0; }, OnlinePaymentsScreen_build_closure: function OnlinePaymentsScreen_build_closure() { }, OnlinePaymentsVM: function OnlinePaymentsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.settings = t2; _.onSavePressed = t3; _.onSettingsChanged = t4; _.onConfigureGatewaysPressed = t5; }, OnlinePaymentsVM_fromStore_closure0: function OnlinePaymentsVM_fromStore_closure0(t0) { this.store = t0; }, OnlinePaymentsVM_fromStore_closure: function OnlinePaymentsVM_fromStore_closure(t0) { this.store = t0; }, OnlinePaymentsVM_fromStore__closure: function OnlinePaymentsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, OnlinePaymentsVM_fromStore_closure1: function OnlinePaymentsVM_fromStore_closure1(t0) { this.store = t0; }, UpdateDialog: function UpdateDialog(t0) { this.key = t0; }, UpdateState: function UpdateState(t0) { this._update_dialog$_name = t0; }, _UpdateDialogState: function _UpdateDialogState(t0, t1) { var _ = this; _.updateState = t0; _._widget = _.updateResponse = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _UpdateDialogState_build_closure: function _UpdateDialogState_build_closure(t0) { this.localization = t0; }, _UpdateDialogState_build_closure0: function _UpdateDialogState_build_closure0(t0) { this.context = t0; }, _UpdateDialogState_build_closure1: function _UpdateDialogState_build_closure1(t0) { this.account = t0; }, _UpdateDialogState_build_closure2: function _UpdateDialogState_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, _UpdateDialogState_build_closure3: function _UpdateDialogState_build_closure3(t0, t1) { this.context = t0; this.store = t1; }, _UpdateDialogState_updateApp_closure: function _UpdateDialogState_updateApp_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.store = t2; _.context = t3; }, _UpdateDialogState_updateApp__closure: function _UpdateDialogState_updateApp__closure(t0) { this.$this = t0; }, _UpdateDialogState_updateApp__closure0: function _UpdateDialogState_updateApp__closure0(t0, t1) { this.$this = t0; this.store = t1; }, _UpdateDialogState_updateApp___closure0: function _UpdateDialogState_updateApp___closure0(t0, t1) { this.$this = t0; this.response = t1; }, _UpdateDialogState_updateApp__closure1: function _UpdateDialogState_updateApp__closure1(t0, t1) { this.$this = t0; this.context = t1; }, _UpdateDialogState_updateApp___closure: function _UpdateDialogState_updateApp___closure(t0) { this.$this = t0; }, TaskEditDetails: function TaskEditDetails(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskEditDetailsState: function _TaskEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._task_edit_details$_numberController = t0; _._task_edit_details$_rateController = t1; _._descriptionController = t2; _._task_edit_details$_custom1Controller = t3; _._task_edit_details$_custom2Controller = t4; _._task_edit_details$_custom3Controller = t5; _._task_edit_details$_custom4Controller = t6; _._task_edit_details$_debouncer = t7; _._task_edit_details$_controllers = t8; _._widget = null; _._debugLifecycleState = t9; _._framework$_element = null; }, _TaskEditDetailsState_didChangeDependencies_closure: function _TaskEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskEditDetailsState_didChangeDependencies_closure0: function _TaskEditDetailsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskEditDetailsState_dispose_closure: function _TaskEditDetailsState_dispose_closure(t0) { this.$this = t0; }, _TaskEditDetailsState__onChanged_closure: function _TaskEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, _TaskEditDetailsState__onChanged_closure0: function _TaskEditDetailsState__onChanged_closure0(t0, t1) { this.$this = t0; this.task = t1; }, _TaskEditDetailsState_build_closure0: function _TaskEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDetailsState_build__closure2: function _TaskEditDetailsState_build__closure2(t0) { this.client = t0; }, _TaskEditDetailsState_build_closure: function _TaskEditDetailsState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDetailsState_build_closure1: function _TaskEditDetailsState_build_closure1(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDetailsState_build__closure1: function _TaskEditDetailsState_build__closure1(t0, t1) { this.project = t0; this.task = t1; }, _TaskEditDetailsState_build_closure2: function _TaskEditDetailsState_build_closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _TaskEditDetailsState_build_closure3: function _TaskEditDetailsState_build_closure3(t0, t1) { this.viewModel = t0; this.task = t1; }, _TaskEditDetailsState_build__closure0: function _TaskEditDetailsState_build__closure0(t0) { this.userId = t0; }, _TaskEditDetailsState_build_closure4: function _TaskEditDetailsState_build_closure4(t0, t1, t2) { this.state = t0; this.viewModel = t1; this.task = t2; }, _TaskEditDetailsState_build__closure: function _TaskEditDetailsState_build__closure(t0) { this.taskStatus = t0; }, TaskEditVM_TaskEditVM$fromStore: function(store) { var t4, t5, t6, task = store.get$_store$_state().uiState.taskUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).taskState.map; t6 = task.id; J.$index$asx(t5._map$_map, t6); return new B.TaskEditVM(task, t2.taskUIState.editingTimeIndex, t4.$index(t1, t3).userCompany.company, new B.TaskEditVM_TaskEditVM$fromStore_closure(store, state), new B.TaskEditVM_TaskEditVM$fromStore_closure0(store, state), new B.TaskEditVM_TaskEditVM$fromStore_closure1(task, store), state); }, TaskEditScreen: function TaskEditScreen(t0) { this.key = t0; }, TaskEditScreen_build_closure0: function TaskEditScreen_build_closure0() { }, TaskEditScreen_build_closure: function TaskEditScreen_build_closure() { }, TaskEditVM: function TaskEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.task = t0; _.taskTimeIndex = t1; _.company = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.onFabPressed = t5; _.state = t6; }, TaskEditVM_TaskEditVM$fromStore_closure0: function TaskEditVM_TaskEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskEditVM_TaskEditVM$fromStore_closure1: function TaskEditVM_TaskEditVM$fromStore_closure1(t0, t1) { this.task = t0; this.store = t1; }, TaskEditVM_TaskEditVM$fromStore__closure: function TaskEditVM_TaskEditVM$fromStore__closure() { }, TaskEditVM_TaskEditVM$fromStore_closure: function TaskEditVM_TaskEditVM$fromStore_closure(t0, t1) { this.store = t0; this.state = t1; }, TaskEditVM_TaskEditVM$fromStore__closure0: function TaskEditVM_TaskEditVM$fromStore__closure0(t0, t1) { this.store = t0; this.state = t1; }, TaskEditVM_TaskEditVM$fromStore___closure: function TaskEditVM_TaskEditVM$fromStore___closure(t0) { this.localization = t0; }, TaskEditVM_TaskEditVM$fromStore___closure0: function TaskEditVM_TaskEditVM$fromStore___closure0(t0, t1, t2, t3, t4) { var _ = this; _.task = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, TaskEditVM_TaskEditVM$fromStore___closure1: function TaskEditVM_TaskEditVM$fromStore___closure1() { }, TaskEditVM_TaskEditVM$fromStore____closure: function TaskEditVM_TaskEditVM$fromStore____closure(t0) { this.error = t0; }, TaskViewDocuments: function TaskViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, TaskViewDocuments_build_closure: function TaskViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, TaskViewDocuments_build_closure0: function TaskViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, UserView: function UserView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, UserView_build_closure: function UserView_build_closure(t0) { this.$this = t0; }, VendorScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).vendorState.toString; t5 = $.$get$memoizedFilteredVendorList(); t6 = state.getUISelection$1(C.EntityType_vendor); t7 = t4.$index(t1, t3).vendorState.map; t8 = t4.$index(t1, t3).vendorState.list; t2 = t2.vendorUIState.listUIState; t8 = t5.call$6(t6, t7, t8, t2, t4.$index(t1, t3).userState.map, state.staticState); t4.$index(t1, t3).toString; t2.toString; return new B.VendorScreenVM(t8); }, VendorScreenBuilder: function VendorScreenBuilder(t0) { this.key = t0; }, VendorScreenBuilder_build_closure: function VendorScreenBuilder_build_closure() { }, VendorScreenVM: function VendorScreenVM(t0) { this.vendorList = t0; }, WebhookPresenter: function WebhookPresenter() { this.context = this.entity = null; }, LocaleCodeAware: function LocaleCodeAware() { }, LocalizationsProvider: function LocalizationsProvider() { }, GoogleOAuth_signIn: function(callback, isSilent) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, account; var $async$GoogleOAuth_signIn = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = isSilent ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait($.$get$_googleSignIn().signInSilently$0(), $async$GoogleOAuth_signIn); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$result = null; case 4: // join account = $async$result; $async$goto = account == null ? 7 : 8; break; case 7: // then $async$goto = 9; return P._asyncAwait($.$get$_googleSignIn().signIn$0(0), $async$GoogleOAuth_signIn); case 9: // returning from await. account = $async$result; case 8: // join if (account != null) { account.get$authentication().then$1$1(0, new B.GoogleOAuth_signIn_closure(callback), type$.Null); $async$returnValue = true; // goto return $async$goto = 1; break; } else { P.print("## ERROR: sign in failed"); $async$returnValue = false; // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$GoogleOAuth_signIn, $async$completer); }, GoogleOAuth_signUp: function(callback) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, account; var $async$GoogleOAuth_signUp = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($.$get$_googleSignIn().signIn$0(0), $async$GoogleOAuth_signUp); case 3: // returning from await. account = $async$result; if (account != null) { account.get$authentication().then$1$1(0, new B.GoogleOAuth_signUp_closure(callback), type$.Null); $async$returnValue = true; // goto return $async$goto = 1; break; } else { P.print("## ERROR: sign up failed"); $async$returnValue = false; // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$GoogleOAuth_signUp, $async$completer); }, GoogleOAuth_signOut: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_GoogleSignInAccount), $async$returnValue, t2, t1; var $async$GoogleOAuth_signOut = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$_googleSignIn(); t1.toString; t2 = $.$get$GoogleSignInPlatform__instance(); $async$goto = 3; return P._asyncAwait(t1._addMethodCall$1(t2.get$signOut(t2)), $async$GoogleOAuth_signOut); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$GoogleOAuth_signOut, $async$completer); }, GoogleOAuth_disconnect: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_GoogleSignInAccount), $async$returnValue, t2, t1; var $async$GoogleOAuth_disconnect = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$_googleSignIn(); t1.toString; t2 = $.$get$GoogleSignInPlatform__instance(); $async$goto = 3; return P._asyncAwait(t1._addMethodCall$1(t2.get$disconnect(t2)), $async$GoogleOAuth_disconnect); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$GoogleOAuth_disconnect, $async$completer); }, GoogleOAuth_signIn_closure: function GoogleOAuth_signIn_closure(t0) { this.callback = t0; }, GoogleOAuth_signUp_closure: function GoogleOAuth_signUp_closure(t0) { this.callback = t0; }, InternalStyle: function InternalStyle() { }, TypedReducer$: function(reducer, State, Action) { return new B.TypedReducer(reducer, State._eval$1("@<0>")._bind$1(Action)._eval$1("TypedReducer<1,2>")); }, combineReducers: function(reducers, State) { return new B.combineReducers_closure(reducers, State); }, TypedReducer: function TypedReducer(t0, t1) { this.reducer = t0; this.$ti = t1; }, TypedMiddleware: function TypedMiddleware(t0, t1) { this.middleware = t0; this.$ti = t1; }, combineReducers_closure: function combineReducers_closure(t0, t1) { this.reducers = t0; this.State = t1; }, Breadcrumb: function Breadcrumb() { }, nearEqual: function(a, b, epsilon) { if (a == null || b == null) return a == b; return a > b - epsilon && a < b + epsilon || a === b; }, getUserDataFromMap: function(data) { var t1, t2, t3; if (data == null) return null; t1 = J.getInterceptor$asx(data); t2 = t1.$index(data, "email"); t2.toString; t3 = t1.$index(data, "id"); t3.toString; return new G.GoogleSignInUserData(t1.$index(data, "displayName"), t2, t3, t1.$index(data, "photoUrl"), t1.$index(data, "idToken")); }, wrapFormatException: function($name, value, body) { var error, error0, t1, exception; try { t1 = body.call$0(); return t1; } catch (exception) { t1 = H.unwrapException(exception); if (t1 instanceof G.SourceSpanFormatException) { error = t1; throw H.wrapException(G.SourceSpanFormatException$("Invalid " + $name + ": " + error._span_exception$_message, error._span, J.get$source$z(error))); } else if (type$.FormatException._is(t1)) { error0 = t1; throw H.wrapException(P.FormatException$("Invalid " + $name + ' "' + value + '": ' + H.S(J.get$message$z(error0)), J.get$source$z(error0), J.get$offset$x(error0))); } else throw exception; } }, defaultLocale: function() { var zoneLocale = H._asStringQ($.Zone__current.$index(0, C.Symbol_89P)); return zoneLocale == null ? $._defaultLocale : zoneLocale; }, isAlphabetic: function(char) { var t1; if (!(char >= 65 && char <= 90)) t1 = char >= 97 && char <= 122; else t1 = true; return t1; }, isDriveLetter: function(path, index) { var t1 = path.length, t2 = index + 2; if (t1 < t2) return false; if (!B.isAlphabetic(C.JSString_methods.codeUnitAt$1(path, index))) return false; if (C.JSString_methods.codeUnitAt$1(path, index + 1) !== 58) return false; if (t1 === t2) return true; return C.JSString_methods.codeUnitAt$1(path, t2) === 47; }, formatDateAsIso8601WithMillisPrecision: function(date) { var iso = date.toIso8601String$0(), millisecondSeparatorIndex = C.JSString_methods.lastIndexOf$1(iso, "."); return (millisecondSeparatorIndex !== -1 ? C.JSString_methods.substring$2(iso, 0, millisecondSeparatorIndex + 4) : iso) + "Z"; }, isAllTheSame: function(iter) { var firstValue, t1; if (iter.get$length(iter) === 0) return true; firstValue = iter.get$first(iter); for (t1 = H.SubListIterable$(iter, 1, null, iter.$ti._eval$1("ListIterable.E")), t1 = new H.ListIterator(t1, t1.get$length(t1), t1.$ti._eval$1("ListIterator")); t1.moveNext$0();) if (!J.$eq$(t1.__internal$_current, firstValue)) return false; return true; }, replaceFirstNull: function(list, element) { var index = C.JSArray_methods.indexOf$1(list, null); if (index < 0) throw H.wrapException(P.ArgumentError$(H.S(list) + " contains no null elements.")); list[index] = element; }, replaceWithNull: function(list, element) { var index = C.JSArray_methods.indexOf$1(list, element); if (index < 0) throw H.wrapException(P.ArgumentError$(H.S(list) + " contains no elements matching " + element.toString$0(0) + ".")); list[index] = null; }, countCodeUnits: function(string, codeUnit) { var t1, count; for (t1 = new H.CodeUnits(string), t1 = new H.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")), count = 0; t1.moveNext$0();) if (t1.__internal$_current === codeUnit) ++count; return count; }, findLineStart: function(context, text, column) { var beginningOfLine, index, lineStart; if (text.length === 0) for (beginningOfLine = 0; true;) { index = C.JSString_methods.indexOf$2(context, "\n", beginningOfLine); if (index === -1) return context.length - beginningOfLine >= column ? beginningOfLine : null; if (index - beginningOfLine >= column) return beginningOfLine; beginningOfLine = index + 1; } index = C.JSString_methods.indexOf$1(context, text); for (; index !== -1;) { lineStart = index === 0 ? 0 : C.JSString_methods.lastIndexOf$2(context, "\n", index - 1) + 1; if (column === index - lineStart) return lineStart; index = C.JSString_methods.indexOf$2(context, text, index + 1); } return null; } }, G = { loadAsyncHtmlImage: function(key, chunkEvents, decode) { return P.webOnlyInstantiateImageCodecFromUrl(P.Uri_base().resolve$1(key.url), new G.loadAsyncHtmlImage_closure(chunkEvents)); }, loadAsyncHtmlImage_closure: function loadAsyncHtmlImage_closure(t0) { this.chunkEvents = t0; }, CanvasBarStack_CanvasBarStack: function(segments, radius, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight, stackedBarPadding) { var barIndex, bounds, t2, t3, t4, firstBarBounds = C.JSArray_methods.get$first(segments).bounds, left = firstBarBounds.left, $top = firstBarBounds.top, t1 = H._instanceType(firstBarBounds)._precomputed1, right = t1._as(left + firstBarBounds.width), bottom = t1._as($top + firstBarBounds.height); for (t1 = segments.length, barIndex = 1; barIndex < t1; ++barIndex) { bounds = segments[barIndex].bounds; t2 = bounds.left; left = Math.min(left, t2); t3 = bounds.top; $top = Math.min($top, t3); t4 = H._instanceType(bounds)._precomputed1; right = Math.max(right, t4._as(t2 + bounds.width)); bottom = Math.max(bottom, t4._as(t3 + bounds.height)); } return new G.CanvasBarStack(segments, radius, roundTopLeft, roundTopRight, roundBottomLeft, roundBottomRight, P.Rectangle$(left, $top, right - left, bottom - $top, type$.int)); }, CanvasRect: function CanvasRect(t0, t1, t2, t3, t4) { var _ = this; _.bounds = t0; _.fill = t1; _.pattern = t2; _.stroke = t3; _.strokeWidthPx = t4; }, CanvasBarStack: function CanvasBarStack(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.segments = t0; _.radius = t1; _.roundTopLeft = t2; _.roundTopRight = t3; _.roundBottomLeft = t4; _.roundBottomRight = t5; _.fullStackRect = t6; }, ProxyGestureListener: function ProxyGestureListener(t0, t1) { this._proxy_gesture_listener$_listeners = t0; this._activeListeners = t1; }, ProxyGestureListener_onLongPress_closure: function ProxyGestureListener_onLongPress_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onTap_closure: function ProxyGestureListener_onTap_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onDragStart_closure: function ProxyGestureListener_onDragStart_closure(t0) { this.localPosition = t0; }, ProxyGestureListener_onDragUpdate_closure: function ProxyGestureListener_onDragUpdate_closure(t0, t1) { this.localPosition = t0; this.scale = t1; }, ProxyGestureListener_onDragEnd_closure: function ProxyGestureListener_onDragEnd_closure(t0, t1, t2) { this.localPosition = t0; this.scale = t1; this.pixelsPerSecond = t2; }, ProxyGestureListener__cancel_closure: function ProxyGestureListener__cancel_closure(t0) { this.keep = t0; }, ProxyGestureListener__populateActiveListeners_closure: function ProxyGestureListener__populateActiveListeners_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.localPosition = t2; }, FilePickerWeb__fileType: function(type, allowedExtensions) { switch (type) { case C.FileType_0: return ""; case C.FileType_4: return "audio/*"; case C.FileType_2: return "image/*"; case C.FileType_3: return "video/*"; case C.FileType_1: return "video/*|image/*"; case C.FileType_5: return C.JSArray_methods.fold$1$2(allowedExtensions, "", new G.FilePickerWeb__fileType_closure(), type$.String); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, FilePickerWeb: function FilePickerWeb(t0) { this.__FilePickerWeb__target = $; this._instanceToken = t0; }, FilePickerWeb_pickFiles_changeEventListener: function FilePickerWeb_pickFiles_changeEventListener(t0, t1, t2, t3, t4, t5) { var _ = this; _._box_0 = t0; _.$this = t1; _.uploadInput = t2; _.filesCompleter = t3; _.withReadStream = t4; _.withData = t5; }, FilePickerWeb_pickFiles_changeEventListener_addPickedFile: function FilePickerWeb_pickFiles_changeEventListener_addPickedFile(t0, t1, t2) { this.pickedFiles = t0; this.files = t1; this.filesCompleter = t2; }, FilePickerWeb_pickFiles_changeEventListener_closure: function FilePickerWeb_pickFiles_changeEventListener_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.withReadStream = t1; _.addPickedFile = t2; _.withData = t3; }, FilePickerWeb_pickFiles_changeEventListener__closure: function FilePickerWeb_pickFiles_changeEventListener__closure(t0, t1, t2) { this.addPickedFile = t0; this.file = t1; this.reader = t2; }, FilePickerWeb_pickFiles_changeEventListener__closure0: function FilePickerWeb_pickFiles_changeEventListener__closure0(t0, t1, t2) { this.addPickedFile = t0; this.file = t1; this.reader = t2; }, FilePickerWeb_pickFiles_cancelledEventListener: function FilePickerWeb_pickFiles_cancelledEventListener(t0, t1) { this._box_0 = t0; this.filesCompleter = t1; }, FilePickerWeb_pickFiles_cancelledEventListener_closure: function FilePickerWeb_pickFiles_cancelledEventListener_closure(t0, t1) { this._box_0 = t0; this.filesCompleter = t1; }, FilePickerWeb__fileType_closure: function FilePickerWeb__fileType_closure() { }, FileType: function FileType(t0) { this._file_picker$_name = t0; }, FilePicker: function FilePicker() { }, AnimationController$: function(debugLabel, duration, lowerBound, reverseDuration, upperBound, value, vsync) { var t1 = new G.AnimationController(lowerBound, upperBound, debugLabel, C.AnimationBehavior_0, duration, reverseDuration, C._AnimationDirection_0, C.AnimationStatus_0, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); t1._ticker = vsync.createTicker$1(t1.get$_animation_controller$_tick()); t1._internalSetValue$1(value == null ? lowerBound : value); return t1; }, AnimationController$unbounded: function(debugLabel, value, vsync) { var t1 = new G.AnimationController(-1 / 0, 1 / 0, debugLabel, C.AnimationBehavior_1, null, null, C._AnimationDirection_0, C.AnimationStatus_0, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function), type$.ObserverList_of_void_Function)); t1._ticker = vsync.createTicker$1(t1.get$_animation_controller$_tick()); t1._internalSetValue$1(value); return t1; }, _AnimationDirection: function _AnimationDirection(t0) { this._animation_controller$_name = t0; }, AnimationBehavior: function AnimationBehavior(t0) { this._animation_controller$_name = t0; }, AnimationController: function AnimationController(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.lowerBound = t0; _.upperBound = t1; _.debugLabel = t2; _.animationBehavior = t3; _.duration = t4; _.reverseDuration = t5; _._simulation = _._ticker = null; _.__AnimationController__value = $; _._lastElapsedDuration = null; _._direction = t6; _.__AnimationController__status = $; _._lastReportedStatus = t7; _.AnimationLocalStatusListenersMixin__statusListeners = t8; _.AnimationLocalListenersMixin__listeners = t9; }, _InterpolationSimulation: function _InterpolationSimulation(t0, t1, t2, t3, t4) { var _ = this; _._durationInSeconds = t0; _._begin = t1; _._animation_controller$_end = t2; _._curve = t3; _.tolerance = t4; }, _RepeatingSimulation: function _RepeatingSimulation(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.min = t0; _.max = t1; _.reverse = t2; _.directionSetter = t3; _._periodInSeconds = t4; _._initialT = t5; _.tolerance = t6; }, _AnimationController_Animation_AnimationEagerListenerMixin: function _AnimationController_Animation_AnimationEagerListenerMixin() { }, _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin: function _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin() { }, _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin: function _AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin() { }, WriteBuffer$: function() { var t1 = new Uint8Array(0), t2 = new DataView(new ArrayBuffer(8)); t1 = new G.WriteBuffer(new E.Uint8Buffer(t1, 0), t2); t1.__WriteBuffer__eightBytesAsList = H.NativeUint8List_NativeUint8List$view(t2.buffer, 0, null); return t1; }, WriteBuffer: function WriteBuffer(t0, t1) { this._serialization$_buffer = t0; this._eightBytes = t1; this.__WriteBuffer__eightBytesAsList = $; }, ReadBuffer: function ReadBuffer(t0) { this.data = t0; this._serialization$_position = 0; }, PointerSignalResolver: function PointerSignalResolver() { this._currentEvent = this._firstRegisteredCallback = null; }, DividerTheme_of: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.DividerTheme); t1 = K.Theme_of(context); return t1.dividerTheme; }, DividerThemeData: function DividerThemeData(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.space = t1; _.thickness = t2; _.indent = t3; _.endIndent = t4; }, _DividerThemeData_Object_Diagnosticable: function _DividerThemeData_Object_Diagnosticable() { }, RadioListTile: function RadioListTile(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.value = t0; _.groupValue = t1; _.onChanged = t2; _.toggleable = t3; _.activeColor = t4; _.title = t5; _.subtitle = t6; _.dense = t7; _.key = t8; _.$ti = t9; }, RadioListTile_build_closure: function RadioListTile_build_closure(t0) { this.$this = t0; }, flipAxis: function(direction) { switch (direction) { case C.Axis_0: return C.Axis_1; case C.Axis_1: return C.Axis_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, axisDirectionToAxis: function(axisDirection) { switch (axisDirection) { case C.AxisDirection_0: case C.AxisDirection_2: return C.Axis_1; case C.AxisDirection_3: case C.AxisDirection_1: return C.Axis_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, textDirectionToAxisDirection: function(textDirection) { switch (textDirection) { case C.TextDirection_0: return C.AxisDirection_3; case C.TextDirection_1: return C.AxisDirection_1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, flipAxisDirection: function(axisDirection) { switch (axisDirection) { case C.AxisDirection_0: return C.AxisDirection_2; case C.AxisDirection_1: return C.AxisDirection_3; case C.AxisDirection_2: return C.AxisDirection_0; case C.AxisDirection_3: return C.AxisDirection_1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, axisDirectionIsReversed: function(axisDirection) { switch (axisDirection) { case C.AxisDirection_0: case C.AxisDirection_3: return true; case C.AxisDirection_2: case C.AxisDirection_1: return false; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, RenderComparison: function RenderComparison(t0, t1) { this.index = t0; this._basic_types$_name = t1; }, Axis0: function Axis0(t0) { this._basic_types$_name = t0; }, VerticalDirection: function VerticalDirection(t0) { this._basic_types$_name = t0; }, AxisDirection: function AxisDirection(t0) { this._basic_types$_name = t0; }, combineSemanticsInfo: function(infoList) { var t1, workingLabel, workingText, _i, info, t2, t3, _null = null, combined = H.setRuntimeTypeInfo([], type$.JSArray_InlineSpanSemanticsInformation); for (t1 = infoList.length, workingLabel = _null, workingText = "", _i = 0; _i < infoList.length; infoList.length === t1 || (0, H.throwConcurrentModificationError)(infoList), ++_i) { info = infoList[_i]; if (info.requiresOwnNode) { t2 = workingLabel == null ? workingText : workingLabel; combined.push(new G.InlineSpanSemanticsInformation(workingText, t2, _null, false)); combined.push(info); workingLabel = _null; workingText = ""; } else { t2 = info.text; workingText = C.JSString_methods.$add(workingText, t2); if (workingLabel == null) workingLabel = ""; t3 = info.semanticsLabel; workingLabel = t3 != null ? workingLabel + t3 : C.JSString_methods.$add(workingLabel, t2); } } combined.push(new G.InlineSpanSemanticsInformation(workingText, workingLabel, _null, false)); return combined; }, Accumulator: function Accumulator() { this._inline_span$_value = 0; }, InlineSpanSemanticsInformation: function InlineSpanSemanticsInformation(t0, t1, t2, t3) { var _ = this; _.text = t0; _.semanticsLabel = t1; _.recognizer = t2; _.requiresOwnNode = t3; }, InlineSpan: function InlineSpan() { }, InlineSpan_getSpanForPosition_closure: function InlineSpan_getSpanForPosition_closure(t0, t1, t2) { this._box_0 = t0; this.position = t1; this.offset = t2; }, InlineSpan_codeUnitAt_closure: function InlineSpan_codeUnitAt_closure(t0, t1, t2) { this._box_0 = t0; this.index = t1; this.offset = t2; }, _factoryTypesSetEquals: function(a, b, $T) { if (a === b) return true; if (b == null) return false; return S.setEquals(G._factoriesTypeSet(a, $T), G._factoriesTypeSet(b, $T)); }, _factoriesTypeSet: function(factories, $T) { var t1 = H._instanceType(factories)._eval$1("EfficientLengthMappedIterable"); return P.LinkedHashSet_LinkedHashSet$of(new H.EfficientLengthMappedIterable(factories, new G._factoriesTypeSet_closure($T), t1), t1._eval$1("Iterable.E")); }, _PlatformViewGestureRecognizer$: function(handlePointerEvent, gestureRecognizerFactories) { var t1 = type$.int; t1 = new G._PlatformViewGestureRecognizer(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_PointerEvent), P.LinkedHashSet_LinkedHashSet$_empty(t1), gestureRecognizerFactories, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), null, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); t1._PlatformViewGestureRecognizer$3$kind(handlePointerEvent, gestureRecognizerFactories, null); return t1; }, PlatformViewHitTestBehavior: function PlatformViewHitTestBehavior(t0) { this._platform_view0$_name = t0; }, _factoriesTypeSet_closure: function _factoriesTypeSet_closure(t0) { this.T = t0; }, _PlatformViewGestureRecognizer: function _PlatformViewGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.___PlatformViewGestureRecognizer__handlePointerEvent = $; _.cachedEvents = t0; _.forwardedPointers = t1; _.gestureRecognizerFactories = t2; _.___PlatformViewGestureRecognizer__gestureRecognizers = $; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, _PlatformViewGestureRecognizer_closure: function _PlatformViewGestureRecognizer_closure(t0) { this.$this = t0; }, PlatformViewRenderBox: function PlatformViewRenderBox(t0, t1, t2, t3) { var _ = this; _._platform_view0$_controller = t0; _._PlatformViewGestureMixin__hitTestBehavior = t1; _._PlatformViewGestureMixin__handlePointerEvent = t2; _._PlatformViewGestureMixin__gestureRecognizer = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _PlatformViewGestureMixin: function _PlatformViewGestureMixin() { }, _PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin: function _PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin() { }, applyGrowthDirectionToAxisDirection: function(axisDirection, growthDirection) { switch (growthDirection) { case C.GrowthDirection_0: return axisDirection; case C.GrowthDirection_1: return G.flipAxisDirection(axisDirection); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, applyGrowthDirectionToScrollDirection: function(scrollDirection, growthDirection) { switch (growthDirection) { case C.GrowthDirection_0: return scrollDirection; case C.GrowthDirection_1: return N.flipScrollDirection(scrollDirection); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, SliverGeometry$: function(cacheExtent, hasVisualOverflow, hitTestExtent, layoutExtent, maxPaintExtent, maxScrollObstructionExtent, paintExtent, paintOrigin, scrollExtent, scrollOffsetCorrection) { var t1 = layoutExtent == null ? paintExtent : layoutExtent, t2 = hitTestExtent == null ? paintExtent : hitTestExtent, t3 = cacheExtent == null ? layoutExtent : cacheExtent; if (t3 == null) t3 = paintExtent; return new G.SliverGeometry(scrollExtent, paintOrigin, paintExtent, t1, maxPaintExtent, maxScrollObstructionExtent, t2, paintExtent > 0, hasVisualOverflow, scrollOffsetCorrection, t3); }, GrowthDirection: function GrowthDirection(t0) { this._sliver0$_name = t0; }, SliverConstraints: function SliverConstraints(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.axisDirection = t0; _.growthDirection = t1; _.userScrollDirection = t2; _.scrollOffset = t3; _.precedingScrollExtent = t4; _.overlap = t5; _.remainingPaintExtent = t6; _.crossAxisExtent = t7; _.crossAxisDirection = t8; _.viewportMainAxisExtent = t9; _.cacheOrigin = t10; _.remainingCacheExtent = t11; }, SliverGeometry: function SliverGeometry(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.scrollExtent = t0; _.paintOrigin = t1; _.paintExtent = t2; _.layoutExtent = t3; _.maxPaintExtent = t4; _.maxScrollObstructionExtent = t5; _.hitTestExtent = t6; _.visible = t7; _.hasVisualOverflow = t8; _.scrollOffsetCorrection = t9; _.cacheExtent = t10; }, SliverHitTestResult: function SliverHitTestResult(t0, t1, t2) { this._hit_test$_path = t0; this._transforms = t1; this._localTransforms = t2; }, SliverHitTestEntry: function SliverHitTestEntry(t0, t1, t2) { var _ = this; _.mainAxisPosition = t0; _.crossAxisPosition = t1; _.target = t2; _._transform = null; }, SliverLogicalParentData: function SliverLogicalParentData() { }, SliverLogicalContainerParentData: function SliverLogicalContainerParentData(t0, t1) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.layoutOffset = null; }, SliverPhysicalParentData: function SliverPhysicalParentData(t0) { this.paintOffset = t0; }, SliverPhysicalContainerParentData: function SliverPhysicalContainerParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.paintOffset = t2; }, RenderSliver: function RenderSliver() { }, RenderSliverHelpers: function RenderSliverHelpers() { }, RenderSliverHelpers_hitTestBoxChild_closure: function RenderSliverHelpers_hitTestBoxChild_closure(t0, t1) { this._box_0 = t0; this.child = t1; }, _SliverGeometry_Object_Diagnosticable: function _SliverGeometry_Object_Diagnosticable() { }, _SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin: function _SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin() { }, _SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin: function _SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin() { }, KeyboardKey: function KeyboardKey() { }, LogicalKeyboardKey: function LogicalKeyboardKey(t0) { this.keyId = t0; }, PhysicalKeyboardKey: function PhysicalKeyboardKey(t0) { this.usbHidUsage = t0; }, _KeyboardKey_Object_Diagnosticable: function _KeyboardKey_Object_Diagnosticable() { }, AnimatedSwitcher$: function(child, duration, transitionBuilder) { return new G.AnimatedSwitcher(child, duration, transitionBuilder, null); }, AnimatedSwitcher_defaultTransitionBuilder: function(child, animation) { return K.FadeTransition$(false, child, animation); }, AnimatedSwitcher_defaultLayoutBuilder: function(currentChild, previousChildren) { var t1 = P.List_List$of(previousChildren, true, type$.Widget); if (currentChild != null) t1.push(currentChild); return T.Stack$(C.Alignment_0_0, t1, C.Clip_1, C.StackFit_0, null, null); }, _ChildEntry: function _ChildEntry(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.animation = t1; _.transition = t2; _.widgetChild = t3; }, AnimatedSwitcher: function AnimatedSwitcher(t0, t1, t2, t3) { var _ = this; _.child = t0; _.duration = t1; _.transitionBuilder = t2; _.key = t3; }, _AnimatedSwitcherState: function _AnimatedSwitcherState(t0, t1, t2, t3) { var _ = this; _._currentEntry = null; _._outgoingEntries = t0; _._outgoingWidgets = t1; _._childNumber = 0; _.TickerProviderStateMixin__tickers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _AnimatedSwitcherState__newEntry_closure: function _AnimatedSwitcherState__newEntry_closure(t0, t1, t2) { this.$this = t0; this.entry = t1; this.controller = t2; }, _AnimatedSwitcherState__newEntry__closure: function _AnimatedSwitcherState__newEntry__closure(t0, t1) { this.$this = t0; this.entry = t1; }, _AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure: function _AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure() { }, __AnimatedSwitcherState_State_TickerProviderStateMixin: function __AnimatedSwitcherState_State_TickerProviderStateMixin() { }, DecorationTween$: function(begin, end) { return new G.DecorationTween(begin, end); }, AnimatedContainer$: function(child, color, curve, decoration, duration, height, key, margin, padding, width) { var t1, t2, _null = null; if (decoration == null) t1 = color != null ? new S.BoxDecoration(color, _null, _null, _null, _null, _null, C.BoxShape_0) : _null; else t1 = decoration; if (width != null || height != null) t2 = S.BoxConstraints$tightFor(height, width); else t2 = _null; return new G.AnimatedContainer(child, padding, t1, t2, margin, curve, duration, _null, key); }, AnimatedOpacity$: function(alwaysIncludeSemantics, child, curve, duration, opacity) { return new G.AnimatedOpacity(child, opacity, alwaysIncludeSemantics, curve, duration, null, null); }, AnimatedDefaultTextStyle$: function(child, curve, duration, softWrap, style) { return new G.AnimatedDefaultTextStyle(child, style, softWrap, curve, duration, null, null); }, BoxConstraintsTween: function BoxConstraintsTween(t0, t1) { this.begin = t0; this.end = t1; }, DecorationTween: function DecorationTween(t0, t1) { this.begin = t0; this.end = t1; }, EdgeInsetsGeometryTween: function EdgeInsetsGeometryTween(t0, t1) { this.begin = t0; this.end = t1; }, BorderRadiusTween: function BorderRadiusTween(t0, t1) { this.begin = t0; this.end = t1; }, Matrix4Tween: function Matrix4Tween(t0, t1) { this.begin = t0; this.end = t1; }, TextStyleTween: function TextStyleTween(t0, t1) { this.begin = t0; this.end = t1; }, ImplicitlyAnimatedWidget: function ImplicitlyAnimatedWidget() { }, ImplicitlyAnimatedWidgetState: function ImplicitlyAnimatedWidgetState() { }, ImplicitlyAnimatedWidgetState_initState_closure: function ImplicitlyAnimatedWidgetState_initState_closure(t0) { this.$this = t0; }, ImplicitlyAnimatedWidgetState_didUpdateWidget_closure: function ImplicitlyAnimatedWidgetState_didUpdateWidget_closure(t0) { this.$this = t0; }, ImplicitlyAnimatedWidgetState__constructTweens_closure: function ImplicitlyAnimatedWidgetState__constructTweens_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, AnimatedWidgetBaseState: function AnimatedWidgetBaseState() { }, AnimatedWidgetBaseState__handleAnimationChanged_closure: function AnimatedWidgetBaseState__handleAnimationChanged_closure() { }, AnimatedContainer: function AnimatedContainer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.child = t0; _.padding = t1; _.decoration = t2; _.constraints = t3; _.margin = t4; _.curve = t5; _.duration = t6; _.onEnd = t7; _.key = t8; }, _AnimatedContainerState: function _AnimatedContainerState(t0, t1) { var _ = this; _._transformAlignment = _._implicit_animations$_transform = _._margin = _._implicit_animations$_constraints = _._foregroundDecoration = _._implicit_animations$_decoration = _._implicit_animations$_padding = _._implicit_animations$_alignment = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedContainerState_forEachTween_closure: function _AnimatedContainerState_forEachTween_closure() { }, _AnimatedContainerState_forEachTween_closure0: function _AnimatedContainerState_forEachTween_closure0() { }, _AnimatedContainerState_forEachTween_closure1: function _AnimatedContainerState_forEachTween_closure1() { }, _AnimatedContainerState_forEachTween_closure2: function _AnimatedContainerState_forEachTween_closure2() { }, _AnimatedContainerState_forEachTween_closure3: function _AnimatedContainerState_forEachTween_closure3() { }, _AnimatedContainerState_forEachTween_closure4: function _AnimatedContainerState_forEachTween_closure4() { }, _AnimatedContainerState_forEachTween_closure5: function _AnimatedContainerState_forEachTween_closure5() { }, _AnimatedContainerState_forEachTween_closure6: function _AnimatedContainerState_forEachTween_closure6() { }, AnimatedPadding: function AnimatedPadding(t0, t1, t2, t3, t4, t5) { var _ = this; _.padding = t0; _.child = t1; _.curve = t2; _.duration = t3; _.onEnd = t4; _.key = t5; }, _AnimatedPaddingState: function _AnimatedPaddingState(t0, t1) { var _ = this; _._implicit_animations$_padding = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedPaddingState_forEachTween_closure: function _AnimatedPaddingState_forEachTween_closure() { }, AnimatedOpacity: function AnimatedOpacity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.opacity = t1; _.alwaysIncludeSemantics = t2; _.curve = t3; _.duration = t4; _.onEnd = t5; _.key = t6; }, _AnimatedOpacityState: function _AnimatedOpacityState(t0, t1) { var _ = this; _._implicit_animations$_opacity = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = _.___AnimatedOpacityState__opacityAnimation = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedOpacityState_forEachTween_closure: function _AnimatedOpacityState_forEachTween_closure() { }, AnimatedDefaultTextStyle: function AnimatedDefaultTextStyle(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.style = t1; _.softWrap = t2; _.curve = t3; _.duration = t4; _.onEnd = t5; _.key = t6; }, _AnimatedDefaultTextStyleState: function _AnimatedDefaultTextStyleState(t0, t1) { var _ = this; _._implicit_animations$_style = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedDefaultTextStyleState_forEachTween_closure: function _AnimatedDefaultTextStyleState_forEachTween_closure() { }, AnimatedPhysicalModel: function AnimatedPhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.child = t0; _.shape = t1; _.clipBehavior = t2; _.borderRadius = t3; _.elevation = t4; _.color = t5; _.animateColor = t6; _.shadowColor = t7; _.curve = t8; _.duration = t9; _.onEnd = t10; _.key = t11; }, _AnimatedPhysicalModelState: function _AnimatedPhysicalModelState(t0, t1) { var _ = this; _._implicit_animations$_shadowColor = _._implicit_animations$_color = _._implicit_animations$_elevation = _._borderRadius = null; _.__ImplicitlyAnimatedWidgetState__animation = _.__ImplicitlyAnimatedWidgetState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AnimatedPhysicalModelState_forEachTween_closure: function _AnimatedPhysicalModelState_forEachTween_closure() { }, _AnimatedPhysicalModelState_forEachTween_closure0: function _AnimatedPhysicalModelState_forEachTween_closure0() { }, _AnimatedPhysicalModelState_forEachTween_closure1: function _AnimatedPhysicalModelState_forEachTween_closure1() { }, _AnimatedPhysicalModelState_forEachTween_closure2: function _AnimatedPhysicalModelState_forEachTween_closure2() { }, _ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin: function _ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin() { }, HtmlElementView: function HtmlElementView(t0, t1) { this.viewType = t0; this.key = t1; }, HtmlElementView_build_closure: function HtmlElementView_build_closure() { }, HtmlElementView__createHtmlElementView_closure: function HtmlElementView__createHtmlElementView_closure(t0) { this.params = t0; }, _HtmlElementViewController: function _HtmlElementViewController(t0, t1) { this.viewId = t0; this.viewType = t1; this._initialized = false; }, PlatformViewCreationParams: function PlatformViewCreationParams(t0, t1) { this.id = t0; this.onPlatformViewCreated = t1; }, PlatformViewLink: function PlatformViewLink(t0, t1, t2, t3) { var _ = this; _._surfaceFactory = t0; _._onCreatePlatformView = t1; _.viewType = t2; _.key = t3; }, _PlatformViewLinkState: function _PlatformViewLinkState(t0) { var _ = this; _._platform_view$_controller = _._platform_view$_id = null; _._platformViewCreated = false; _._widget = _._focusNode = _._surface = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PlatformViewLinkState__onPlatformViewCreated_closure: function _PlatformViewLinkState__onPlatformViewCreated_closure(t0) { this.$this = t0; }, PlatformViewSurface: function PlatformViewSurface(t0, t1, t2, t3) { var _ = this; _.controller = t0; _.gestureRecognizers = t1; _.hitTestBehavior = t2; _.key = t3; }, defaultScrollNotificationPredicate: function(notification) { return notification.ViewportNotificationMixin__depth === 0; }, ViewportNotificationMixin: function ViewportNotificationMixin() { }, ScrollNotification: function ScrollNotification() { }, ScrollStartNotification: function ScrollStartNotification(t0, t1, t2, t3) { var _ = this; _.dragDetails = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, ScrollUpdateNotification: function ScrollUpdateNotification(t0, t1, t2, t3, t4) { var _ = this; _.dragDetails = t0; _.scrollDelta = t1; _.metrics = t2; _.context = t3; _.ViewportNotificationMixin__depth = t4; }, OverscrollNotification: function OverscrollNotification(t0, t1, t2, t3, t4, t5) { var _ = this; _.dragDetails = t0; _.overscroll = t1; _.velocity = t2; _.metrics = t3; _.context = t4; _.ViewportNotificationMixin__depth = t5; }, ScrollEndNotification: function ScrollEndNotification(t0, t1, t2, t3) { var _ = this; _.dragDetails = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, UserScrollNotification: function UserScrollNotification(t0, t1, t2, t3) { var _ = this; _.direction = t0; _.metrics = t1; _.context = t2; _.ViewportNotificationMixin__depth = t3; }, _ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin: function _ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin() { }, _kDefaultSemanticIndexCallback: function(_, localIndex) { return localIndex; }, SliverChildListDelegate$: function(children, addAutomaticKeepAlives, addRepaintBoundaries, addSemanticIndexes) { return new G.SliverChildListDelegate(true, addRepaintBoundaries, true, children, P.LinkedHashMap_LinkedHashMap$_literal([null, 0], type$.nullable_Key, type$.int)); }, SliverList$: function(delegate) { return new G.SliverList(delegate, null); }, SliverMultiBoxAdaptorElement$: function(widget, replaceMovedChildren) { var t1 = P.SplayTreeMap$(type$.int, type$.nullable_Element), t2 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t2; return new G.SliverMultiBoxAdaptorElement(replaceMovedChildren, t1, t2, widget, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); }, SliverMultiBoxAdaptorElement__extrapolateMaxScrollOffset: function(firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset, childCount) { if (lastIndex === childCount - 1) return trailingScrollOffset; return trailingScrollOffset + (trailingScrollOffset - leadingScrollOffset) / (lastIndex - firstIndex + 1) * (childCount - lastIndex - 1); }, KeepAlive$: function(child, keepAlive) { return new G.KeepAlive(keepAlive, child, null); }, SliverChildDelegate: function SliverChildDelegate() { }, _SaltedValueKey: function _SaltedValueKey(t0) { this.value = t0; }, SliverChildBuilderDelegate: function SliverChildBuilderDelegate(t0, t1, t2, t3, t4, t5) { var _ = this; _.builder = t0; _.childCount = t1; _.addAutomaticKeepAlives = t2; _.addRepaintBoundaries = t3; _.addSemanticIndexes = t4; _.semanticIndexCallback = t5; }, SliverChildListDelegate: function SliverChildListDelegate(t0, t1, t2, t3, t4) { var _ = this; _.addAutomaticKeepAlives = t0; _.addRepaintBoundaries = t1; _.addSemanticIndexes = t2; _.children = t3; _._keyToIndex = t4; }, SliverWithKeepAliveWidget: function SliverWithKeepAliveWidget() { }, SliverMultiBoxAdaptorWidget: function SliverMultiBoxAdaptorWidget() { }, SliverList: function SliverList(t0, t1) { this.delegate = t0; this.key = t1; }, SliverGrid: function SliverGrid(t0, t1, t2) { this.gridDelegate = t0; this.delegate = t1; this.key = t2; }, SliverMultiBoxAdaptorElement: function SliverMultiBoxAdaptorElement(t0, t1, t2, t3, t4, t5) { var _ = this; _._replaceMovedChildren = t0; _._sliver$_childElements = t1; _._currentlyUpdatingChildIndex = _._currentBeforeChild = null; _._didUnderflow = false; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t2; _._slot = null; _.__Element__depth = $; _._widget = t3; _._owner = null; _._lifecycleState = t4; _._debugForgottenChildrenWithGlobalKey = t5; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, SliverMultiBoxAdaptorElement_performRebuild_processElement: function SliverMultiBoxAdaptorElement_performRebuild_processElement(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.newChildren = t2; _.indexToLayoutOffset = t3; }, SliverMultiBoxAdaptorElement_performRebuild_closure: function SliverMultiBoxAdaptorElement_performRebuild_closure() { }, SliverMultiBoxAdaptorElement_performRebuild_closure0: function SliverMultiBoxAdaptorElement_performRebuild_closure0(t0, t1) { this.$this = t0; this.index = t1; }, SliverMultiBoxAdaptorElement_createChild_closure: function SliverMultiBoxAdaptorElement_createChild_closure(t0, t1, t2) { this.$this = t0; this.after = t1; this.index = t2; }, SliverMultiBoxAdaptorElement_removeChild_closure: function SliverMultiBoxAdaptorElement_removeChild_closure(t0, t1) { this.$this = t0; this.index = t1; }, KeepAlive: function KeepAlive(t0, t1, t2) { this.keepAlive = t0; this.child = t1; this.key = t2; }, SignInOption: function SignInOption() { }, GoogleSignInUserData: function GoogleSignInUserData(t0, t1, t2, t3, t4) { var _ = this; _.displayName = t0; _.email = t1; _.id = t2; _.photoUrl = t3; _.idToken = t4; }, GoogleSignInTokenData: function GoogleSignInTokenData(t0, t1, t2) { this.idToken = t0; this.accessToken = t1; this.serverAuthCode = t2; }, BaseRequest: function BaseRequest() { }, BaseRequest_closure: function BaseRequest_closure() { }, BaseRequest_closure0: function BaseRequest_closure0() { }, SettingsEntity_SettingsEntity: function(clientSettings, companySettings, groupSettings) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _null = null, t1 = clientSettings == null, t2 = t1 ? _null : clientSettings.defaultInvoiceDesignId; if (t2 == null) t2 = groupSettings == null ? _null : groupSettings.defaultInvoiceDesignId; if (t2 == null) t2 = companySettings == null ? _null : companySettings.defaultInvoiceDesignId; t3 = t1 ? _null : clientSettings.defaultQuoteDesignId; if (t3 == null) t3 = groupSettings == null ? _null : groupSettings.defaultQuoteDesignId; if (t3 == null) t3 = companySettings == null ? _null : companySettings.defaultQuoteDesignId; t4 = t1 ? _null : clientSettings.defaultCreditDesignId; if (t4 == null) t4 = groupSettings == null ? _null : groupSettings.defaultCreditDesignId; if (t4 == null) t4 = companySettings == null ? _null : companySettings.defaultCreditDesignId; t5 = t1 ? _null : clientSettings.defaultInvoiceTerms; if (t5 == null) t5 = groupSettings == null ? _null : groupSettings.defaultInvoiceTerms; if (t5 == null) t5 = companySettings == null ? _null : companySettings.defaultInvoiceTerms; t6 = t1 ? _null : clientSettings.defaultInvoiceFooter; if (t6 == null) t6 = groupSettings == null ? _null : groupSettings.defaultInvoiceFooter; if (t6 == null) t6 = companySettings == null ? _null : companySettings.defaultInvoiceFooter; t7 = t1 ? _null : clientSettings.defaultQuoteTerms; if (t7 == null) t7 = groupSettings == null ? _null : groupSettings.defaultQuoteTerms; if (t7 == null) t7 = companySettings == null ? _null : companySettings.defaultQuoteTerms; t8 = t1 ? _null : clientSettings.defaultQuoteFooter; if (t8 == null) t8 = groupSettings == null ? _null : groupSettings.defaultQuoteFooter; if (t8 == null) t8 = companySettings == null ? _null : companySettings.defaultQuoteFooter; t9 = t1 ? _null : clientSettings.defaultCreditTerms; if (t9 == null) t9 = groupSettings == null ? _null : groupSettings.defaultCreditTerms; if (t9 == null) t9 = companySettings == null ? _null : companySettings.defaultCreditTerms; t10 = t1 ? _null : clientSettings.defaultCreditFooter; if (t10 == null) t10 = groupSettings == null ? _null : groupSettings.defaultCreditFooter; if (t10 == null) t10 = companySettings == null ? _null : companySettings.defaultCreditFooter; t11 = t1 ? _null : clientSettings.lockInvoices; if (t11 == null) t11 = groupSettings == null ? _null : groupSettings.lockInvoices; if (t11 == null) t11 = companySettings == null ? _null : companySettings.lockInvoices; t12 = t1 ? _null : clientSettings.emailSubjectCustom1; if (t12 == null) t12 = groupSettings == null ? _null : groupSettings.emailSubjectCustom1; if (t12 == null) t12 = companySettings == null ? _null : companySettings.emailSubjectCustom1; t13 = t1 ? _null : clientSettings.emailSubjectCustom2; if (t13 == null) t13 = groupSettings == null ? _null : groupSettings.emailSubjectCustom2; if (t13 == null) t13 = companySettings == null ? _null : companySettings.emailSubjectCustom2; t14 = t1 ? _null : clientSettings.emailSubjectCustom3; if (t14 == null) t14 = groupSettings == null ? _null : groupSettings.emailSubjectCustom3; if (t14 == null) t14 = companySettings == null ? _null : companySettings.emailSubjectCustom3; t15 = t1 ? _null : clientSettings.defaultPaymentTerms; if (t15 == null) t15 = groupSettings == null ? _null : groupSettings.defaultPaymentTerms; if (t15 == null) t15 = companySettings == null ? _null : companySettings.defaultPaymentTerms; t1 = t1 ? _null : clientSettings.defaultValidUntil; if (t1 == null) t1 = groupSettings == null ? _null : groupSettings.defaultValidUntil; if (t1 == null) t1 = companySettings == null ? _null : companySettings.defaultValidUntil; return G._$SettingsEntity$_(_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, t4, t10, t9, t2, t6, t5, t15, _null, t3, t8, t7, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t12, t13, t14, _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, t11, _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, _null, _null, _null, _null, _null, _null); }, _$SettingsEntity$_: function(address1, address2, allPagesFooter, allPagesHeader, autoArchiveInvoice, autoArchiveQuote, autoBill, autoBillDate, autoConvertQuote, autoEmailInvoice, bccEmail, city, clientManualPaymentNotification, clientNumberCounter, clientNumberPattern, clientOnlinePaymentNotification, clientPortalAllowOverPayment, clientPortalAllowUnderPayment, clientPortalCustomCss, clientPortalCustomFooter, clientPortalCustomHeader, clientPortalCustomJs, clientPortalPrivacy, clientPortalTasks, clientPortalTerms, clientPortalUnderPaymentMinimum, companyGatewayIds, companyLogo, counterNumberApplied, counterPadding, countryId, creditNumberCounter, creditNumberPattern, currencyId, customMessageDashboard, customMessagePaidInvoice, customMessageUnapprovedQuote, customMessageUnpaidInvoice, customValue1, customValue2, customValue3, customValue4, dateFormatId, defaultCreditDesignId, defaultCreditFooter, defaultCreditTerms, defaultInvoiceDesignId, defaultInvoiceFooter, defaultInvoiceTerms, defaultPaymentTerms, defaultPaymentTypeId, defaultQuoteDesignId, defaultQuoteFooter, defaultQuoteTerms, defaultTaskRate, defaultTaxName1, defaultTaxName2, defaultTaxName3, defaultTaxRate1, defaultTaxRate2, defaultTaxRate3, defaultValidUntil, documentEmailAttachment, email, emailBodyCredit, emailBodyCustom1, emailBodyCustom2, emailBodyCustom3, emailBodyInvoice, emailBodyPayment, emailBodyPaymentPartial, emailBodyQuote, emailBodyReminder1, emailBodyReminder2, emailBodyReminder3, emailBodyReminderEndless, emailBodyStatement, emailFromName, emailSendingMethod, emailSignature, emailStyle, emailStyleCustom, emailSubjectCredit, emailSubjectCustom1, emailSubjectCustom2, emailSubjectCustom3, emailSubjectInvoice, emailSubjectPayment, emailSubjectPaymentPartial, emailSubjectQuote, emailSubjectReminder1, emailSubjectReminder2, emailSubjectReminder3, emailSubjectReminderEndless, emailSubjectStatement, embedDocuments, enableEmailMarkup, enableInclusiveTaxes, enableMilitaryTime, enablePortal, enablePortalDashboard, enablePortalPassword, enablePortalTasks, enablePortalUploads, enableReminder1, enableReminder2, enableReminder3, enableReminderEndless, endlessReminderFrequencyId, entitySendTime, expenseNumberCounter, expenseNumberPattern, fontSize, gmailSendingUserId, hideEmptyColumnsOnPdf, hidePaidToDate, idNumber, invoiceNumberCounter, invoiceNumberPattern, languageId, lateFeeAmount1, lateFeeAmount2, lateFeeAmount3, lateFeeAmountEndless, lateFeePercent1, lateFeePercent2, lateFeePercent3, lateFeePercentEndless, lockInvoices, $name, numDaysReminder1, numDaysReminder2, numDaysReminder3, pageLayout, pageSize, paymentNumberCounter, paymentNumberPattern, pdfEmailAttachment, pdfVariables, phone, postalCode, primaryColor, primaryFont, projectNumberCounter, projectNumberPattern, quoteNumberCounter, quoteNumberPattern, recurringExpenseNumberCounter, recurringExpenseNumberPattern, recurringInvoiceNumberCounter, recurringInvoiceNumberPattern, recurringNumberPrefix, replyToEmail, replyToName, requireInvoiceSignature, requireQuoteSignature, resetCounterDate, resetCounterFrequencyId, scheduleReminder1, scheduleReminder2, scheduleReminder3, secondaryColor, secondaryFont, sendReminders, sharedInvoiceCreditCounter, sharedInvoiceQuoteCounter, showAcceptInvoiceTerms, showAcceptQuoteTerms, showCurrencyCode, signatureOnPdf, state, taskNumberCounter, taskNumberPattern, ticketNumberCounter, ticketNumberPattern, timezoneId, translations, ublEmailAttachment, useCreditsPayment, vatNumber, vendorNumberCounter, vendorNumberPattern, website) { return new G._$SettingsEntity(timezoneId, dateFormatId, enableMilitaryTime, languageId, showCurrencyCode, currencyId, customValue1, customValue2, customValue3, customValue4, defaultPaymentTerms, defaultValidUntil, companyGatewayIds, defaultTaskRate, sendReminders, enablePortal, enablePortalDashboard, enablePortalTasks, enablePortalUploads, emailStyle, replyToEmail, replyToName, emailFromName, bccEmail, pdfEmailAttachment, ublEmailAttachment, documentEmailAttachment, emailStyleCustom, customMessageDashboard, customMessageUnpaidInvoice, customMessagePaidInvoice, customMessageUnapprovedQuote, autoArchiveInvoice, autoArchiveQuote, autoEmailInvoice, autoConvertQuote, enableInclusiveTaxes, translations, taskNumberPattern, taskNumberCounter, expenseNumberPattern, expenseNumberCounter, recurringExpenseNumberPattern, recurringExpenseNumberCounter, vendorNumberPattern, vendorNumberCounter, ticketNumberPattern, ticketNumberCounter, paymentNumberPattern, paymentNumberCounter, projectNumberPattern, projectNumberCounter, invoiceNumberPattern, invoiceNumberCounter, recurringInvoiceNumberPattern, recurringInvoiceNumberCounter, quoteNumberPattern, quoteNumberCounter, clientNumberPattern, clientNumberCounter, creditNumberPattern, creditNumberCounter, recurringNumberPrefix, resetCounterFrequencyId, resetCounterDate, counterPadding, sharedInvoiceQuoteCounter, sharedInvoiceCreditCounter, defaultInvoiceTerms, defaultQuoteTerms, defaultQuoteFooter, defaultCreditTerms, defaultCreditFooter, defaultInvoiceDesignId, defaultQuoteDesignId, defaultCreditDesignId, defaultInvoiceFooter, defaultTaxName1, defaultTaxRate1, defaultTaxName2, defaultTaxRate2, defaultTaxName3, defaultTaxRate3, defaultPaymentTypeId, pdfVariables, emailSignature, emailSubjectInvoice, emailSubjectQuote, emailSubjectCredit, emailSubjectPayment, emailSubjectPaymentPartial, emailBodyInvoice, emailBodyQuote, emailBodyCredit, emailBodyPayment, emailBodyPaymentPartial, emailSubjectReminder1, emailSubjectReminder2, emailSubjectReminder3, emailBodyReminder1, emailBodyReminder2, emailBodyReminder3, emailSubjectCustom1, emailBodyCustom1, emailSubjectCustom2, emailBodyCustom2, emailSubjectCustom3, emailBodyCustom3, emailSubjectStatement, emailBodyStatement, enablePortalPassword, signatureOnPdf, enableEmailMarkup, showAcceptInvoiceTerms, showAcceptQuoteTerms, requireInvoiceSignature, requireQuoteSignature, $name, companyLogo, website, address1, address2, city, state, postalCode, phone, email, countryId, vatNumber, idNumber, pageSize, pageLayout, fontSize, primaryColor, secondaryColor, primaryFont, secondaryFont, hidePaidToDate, embedDocuments, allPagesHeader, allPagesFooter, enableReminder1, enableReminder2, enableReminder3, enableReminderEndless, numDaysReminder1, numDaysReminder2, numDaysReminder3, scheduleReminder1, scheduleReminder2, scheduleReminder3, endlessReminderFrequencyId, lateFeeAmount1, lateFeeAmount2, lateFeeAmount3, lateFeeAmountEndless, lateFeePercent1, lateFeePercent2, lateFeePercent3, lateFeePercentEndless, emailSubjectReminderEndless, emailBodyReminderEndless, clientOnlinePaymentNotification, clientManualPaymentNotification, counterNumberApplied, emailSendingMethod, gmailSendingUserId, clientPortalTerms, clientPortalPrivacy, lockInvoices, autoBill, clientPortalAllowUnderPayment, clientPortalAllowOverPayment, autoBillDate, clientPortalUnderPaymentMinimum, useCreditsPayment, clientPortalCustomHeader, clientPortalCustomCss, clientPortalCustomFooter, clientPortalCustomJs, hideEmptyColumnsOnPdf, entitySendTime, clientPortalTasks); }, SettingsEntity: function SettingsEntity() { }, SettingsEntity_setFieldsForSection_closure: function SettingsEntity_setFieldsForSection_closure(t0, t1) { this.section = t0; this.fields = t1; }, SettingsEntity_setFieldsForSection_closure0: function SettingsEntity_setFieldsForSection_closure0(t0, t1) { this.section = t0; this.fields = t1; }, _$SettingsEntitySerializer: function _$SettingsEntitySerializer() { }, _$SettingsEntity: function _$SettingsEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182) { var _ = this; _.timezoneId = t0; _.dateFormatId = t1; _.enableMilitaryTime = t2; _.languageId = t3; _.showCurrencyCode = t4; _.currencyId = t5; _.customValue1 = t6; _.customValue2 = t7; _.customValue3 = t8; _.customValue4 = t9; _.defaultPaymentTerms = t10; _.defaultValidUntil = t11; _.companyGatewayIds = t12; _.defaultTaskRate = t13; _.sendReminders = t14; _.enablePortal = t15; _.enablePortalDashboard = t16; _.enablePortalTasks = t17; _.enablePortalUploads = t18; _.emailStyle = t19; _.replyToEmail = t20; _.replyToName = t21; _.emailFromName = t22; _.bccEmail = t23; _.pdfEmailAttachment = t24; _.ublEmailAttachment = t25; _.documentEmailAttachment = t26; _.emailStyleCustom = t27; _.customMessageDashboard = t28; _.customMessageUnpaidInvoice = t29; _.customMessagePaidInvoice = t30; _.customMessageUnapprovedQuote = t31; _.autoArchiveInvoice = t32; _.autoArchiveQuote = t33; _.autoEmailInvoice = t34; _.autoConvertQuote = t35; _.enableInclusiveTaxes = t36; _.translations = t37; _.taskNumberPattern = t38; _.taskNumberCounter = t39; _.expenseNumberPattern = t40; _.expenseNumberCounter = t41; _.recurringExpenseNumberPattern = t42; _.recurringExpenseNumberCounter = t43; _.vendorNumberPattern = t44; _.vendorNumberCounter = t45; _.ticketNumberPattern = t46; _.ticketNumberCounter = t47; _.paymentNumberPattern = t48; _.paymentNumberCounter = t49; _.projectNumberPattern = t50; _.projectNumberCounter = t51; _.invoiceNumberPattern = t52; _.invoiceNumberCounter = t53; _.recurringInvoiceNumberPattern = t54; _.recurringInvoiceNumberCounter = t55; _.quoteNumberPattern = t56; _.quoteNumberCounter = t57; _.clientNumberPattern = t58; _.clientNumberCounter = t59; _.creditNumberPattern = t60; _.creditNumberCounter = t61; _.recurringNumberPrefix = t62; _.resetCounterFrequencyId = t63; _.resetCounterDate = t64; _.counterPadding = t65; _.sharedInvoiceQuoteCounter = t66; _.sharedInvoiceCreditCounter = t67; _.defaultInvoiceTerms = t68; _.defaultQuoteTerms = t69; _.defaultQuoteFooter = t70; _.defaultCreditTerms = t71; _.defaultCreditFooter = t72; _.defaultInvoiceDesignId = t73; _.defaultQuoteDesignId = t74; _.defaultCreditDesignId = t75; _.defaultInvoiceFooter = t76; _.defaultTaxName1 = t77; _.defaultTaxRate1 = t78; _.defaultTaxName2 = t79; _.defaultTaxRate2 = t80; _.defaultTaxName3 = t81; _.defaultTaxRate3 = t82; _.defaultPaymentTypeId = t83; _.pdfVariables = t84; _.emailSignature = t85; _.emailSubjectInvoice = t86; _.emailSubjectQuote = t87; _.emailSubjectCredit = t88; _.emailSubjectPayment = t89; _.emailSubjectPaymentPartial = t90; _.emailBodyInvoice = t91; _.emailBodyQuote = t92; _.emailBodyCredit = t93; _.emailBodyPayment = t94; _.emailBodyPaymentPartial = t95; _.emailSubjectReminder1 = t96; _.emailSubjectReminder2 = t97; _.emailSubjectReminder3 = t98; _.emailBodyReminder1 = t99; _.emailBodyReminder2 = t100; _.emailBodyReminder3 = t101; _.emailSubjectCustom1 = t102; _.emailBodyCustom1 = t103; _.emailSubjectCustom2 = t104; _.emailBodyCustom2 = t105; _.emailSubjectCustom3 = t106; _.emailBodyCustom3 = t107; _.emailSubjectStatement = t108; _.emailBodyStatement = t109; _.enablePortalPassword = t110; _.signatureOnPdf = t111; _.enableEmailMarkup = t112; _.showAcceptInvoiceTerms = t113; _.showAcceptQuoteTerms = t114; _.requireInvoiceSignature = t115; _.requireQuoteSignature = t116; _.name = t117; _.companyLogo = t118; _.website = t119; _.address1 = t120; _.address2 = t121; _.city = t122; _.state = t123; _.postalCode = t124; _.phone = t125; _.email = t126; _.countryId = t127; _.vatNumber = t128; _.idNumber = t129; _.pageSize = t130; _.pageLayout = t131; _.fontSize = t132; _.primaryColor = t133; _.secondaryColor = t134; _.primaryFont = t135; _.secondaryFont = t136; _.hidePaidToDate = t137; _.embedDocuments = t138; _.allPagesHeader = t139; _.allPagesFooter = t140; _.enableReminder1 = t141; _.enableReminder2 = t142; _.enableReminder3 = t143; _.enableReminderEndless = t144; _.numDaysReminder1 = t145; _.numDaysReminder2 = t146; _.numDaysReminder3 = t147; _.scheduleReminder1 = t148; _.scheduleReminder2 = t149; _.scheduleReminder3 = t150; _.endlessReminderFrequencyId = t151; _.lateFeeAmount1 = t152; _.lateFeeAmount2 = t153; _.lateFeeAmount3 = t154; _.lateFeeAmountEndless = t155; _.lateFeePercent1 = t156; _.lateFeePercent2 = t157; _.lateFeePercent3 = t158; _.lateFeePercentEndless = t159; _.emailSubjectReminderEndless = t160; _.emailBodyReminderEndless = t161; _.clientOnlinePaymentNotification = t162; _.clientManualPaymentNotification = t163; _.counterNumberApplied = t164; _.emailSendingMethod = t165; _.gmailSendingUserId = t166; _.clientPortalTerms = t167; _.clientPortalPrivacy = t168; _.lockInvoices = t169; _.autoBill = t170; _.clientPortalAllowUnderPayment = t171; _.clientPortalAllowOverPayment = t172; _.autoBillDate = t173; _.clientPortalUnderPaymentMinimum = t174; _.useCreditsPayment = t175; _.clientPortalCustomHeader = t176; _.clientPortalCustomCss = t177; _.clientPortalCustomFooter = t178; _.clientPortalCustomJs = t179; _.hideEmptyColumnsOnPdf = t180; _.entitySendTime = t181; _.clientPortalTasks = t182; _._settings_model$__hashCode = null; }, SettingsEntityBuilder: function SettingsEntityBuilder() { var _ = this; _._customMessageDashboard = _._emailStyleCustom = _._documentEmailAttachment = _._ublEmailAttachment = _._pdfEmailAttachment = _._bccEmail = _._emailFromName = _._replyToName = _._replyToEmail = _._emailStyle = _._enablePortalUploads = _._enablePortalTasks = _._enablePortalDashboard = _._enablePortal = _._sendReminders = _._defaultTaskRate = _._companyGatewayIds = _._defaultValidUntil = _._defaultPaymentTerms = _._settings_model$_customValue4 = _._settings_model$_customValue3 = _._settings_model$_customValue2 = _._settings_model$_customValue1 = _._currencyId = _._showCurrencyCode = _._languageId = _._enableMilitaryTime = _._dateFormatId = _._timezoneId = _._settings_model$_$v = null; _._clientNumberPattern = _._quoteNumberCounter = _._quoteNumberPattern = _._recurringInvoiceNumberCounter = _._recurringInvoiceNumberPattern = _._invoiceNumberCounter = _._invoiceNumberPattern = _._projectNumberCounter = _._projectNumberPattern = _._paymentNumberCounter = _._paymentNumberPattern = _._ticketNumberCounter = _._ticketNumberPattern = _._vendorNumberCounter = _._vendorNumberPattern = _._recurringExpenseNumberCounter = _._recurringExpenseNumberPattern = _._expenseNumberCounter = _._expenseNumberPattern = _._taskNumberCounter = _._taskNumberPattern = _._translations = _._enableInclusiveTaxes = _._autoConvertQuote = _._autoEmailInvoice = _._autoArchiveQuote = _._autoArchiveInvoice = _._customMessageUnapprovedQuote = _._customMessagePaidInvoice = _._customMessageUnpaidInvoice = null; _._emailSubjectCredit = _._emailSubjectQuote = _._emailSubjectInvoice = _._emailSignature = _._pdfVariables = _._defaultPaymentTypeId = _._defaultTaxRate3 = _._defaultTaxName3 = _._defaultTaxRate2 = _._defaultTaxName2 = _._defaultTaxRate1 = _._defaultTaxName1 = _._defaultInvoiceFooter = _._defaultCreditDesignId = _._defaultQuoteDesignId = _._defaultInvoiceDesignId = _._defaultCreditFooter = _._defaultCreditTerms = _._defaultQuoteFooter = _._defaultQuoteTerms = _._defaultInvoiceTerms = _._sharedInvoiceCreditCounter = _._sharedInvoiceQuoteCounter = _._counterPadding = _._resetCounterDate = _._resetCounterFrequencyId = _._recurringNumberPrefix = _._creditNumberCounter = _._creditNumberPattern = _._clientNumberCounter = null; _._companyLogo = _._settings_model$_name = _._requireQuoteSignature = _._requireInvoiceSignature = _._showAcceptQuoteTerms = _._showAcceptInvoiceTerms = _._enableEmailMarkup = _._signatureOnPdf = _._enablePortalPassword = _._emailBodyStatement = _._emailSubjectStatement = _._emailBodyCustom3 = _._emailSubjectCustom3 = _._emailBodyCustom2 = _._emailSubjectCustom2 = _._emailBodyCustom1 = _._emailSubjectCustom1 = _._emailBodyReminder3 = _._emailBodyReminder2 = _._emailBodyReminder1 = _._emailSubjectReminder3 = _._emailSubjectReminder2 = _._emailSubjectReminder1 = _._emailBodyPaymentPartial = _._emailBodyPayment = _._emailBodyCredit = _._emailBodyQuote = _._emailBodyInvoice = _._emailSubjectPaymentPartial = _._emailSubjectPayment = null; _._scheduleReminder1 = _._numDaysReminder3 = _._numDaysReminder2 = _._numDaysReminder1 = _._enableReminderEndless = _._enableReminder3 = _._enableReminder2 = _._enableReminder1 = _._allPagesFooter = _._allPagesHeader = _._embedDocuments = _._hidePaidToDate = _._secondaryFont = _._primaryFont = _._secondaryColor = _._primaryColor = _._fontSize = _._pageLayout = _._pageSize = _._settings_model$_idNumber = _._settings_model$_vatNumber = _._settings_model$_countryId = _._settings_model$_email = _._settings_model$_phone = _._settings_model$_postalCode = _._settings_model$_state = _._settings_model$_city = _._settings_model$_address2 = _._settings_model$_address1 = _._settings_model$_website = null; _._clientPortalCustomFooter = _._clientPortalCustomCss = _._clientPortalCustomHeader = _._useCreditsPayment = _._clientPortalUnderPaymentMinimum = _._autoBillDate = _._clientPortalAllowOverPayment = _._clientPortalAllowUnderPayment = _._autoBill = _._lockInvoices = _._clientPortalPrivacy = _._clientPortalTerms = _._gmailSendingUserId = _._emailSendingMethod = _._counterNumberApplied = _._clientManualPaymentNotification = _._clientOnlinePaymentNotification = _._emailBodyReminderEndless = _._emailSubjectReminderEndless = _._lateFeePercentEndless = _._lateFeePercent3 = _._lateFeePercent2 = _._lateFeePercent1 = _._lateFeeAmountEndless = _._lateFeeAmount3 = _._lateFeeAmount2 = _._lateFeeAmount1 = _._endlessReminderFrequencyId = _._scheduleReminder3 = _._scheduleReminder2 = null; _._clientPortalTasks = _._entitySendTime = _._hideEmptyColumnsOnPdf = _._clientPortalCustomJs = null; }, ClientRepository: function ClientRepository() { }, ClientRepository_saveData_closure: function ClientRepository_saveData_closure() { }, WebhookRepository: function WebhookRepository() { }, appReducer: function(state, action) { var t1, t2, t3; if (action instanceof B.UserLogout) { t1 = state.prefState; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; return T.AppState_AppState(null, t1, null, J.$index$asx(t2._list, t3).userCompany.account.reportErrors, null).rebuild$1(new G.appReducer_closure(state)); } else if (action instanceof B.LoadStateSuccess) return action.state.rebuild$1(new G.appReducer_closure0()); else if (action instanceof M.ClearData) return state.rebuild$1(new G.appReducer_closure1(state)); return state.rebuild$1(new G.appReducer_closure2(state, action)); }, appReducer_closure: function appReducer_closure(t0) { this.state = t0; }, appReducer__closure: function appReducer__closure() { }, appReducer_closure0: function appReducer_closure0() { }, appReducer_closure1: function appReducer_closure1(t0) { this.state = t0; }, appReducer_closure2: function appReducer_closure2(t0, t1) { this.state = t0; this.action = t1; }, lastErrorReducer_closure: function lastErrorReducer_closure() { }, lastErrorReducer_closure0: function lastErrorReducer_closure0() { }, lastErrorReducer_closure1: function lastErrorReducer_closure1() { }, lastErrorReducer_closure2: function lastErrorReducer_closure2() { }, lastErrorReducer_closure3: function lastErrorReducer_closure3() { }, lastErrorReducer_closure4: function lastErrorReducer_closure4() { }, lastErrorReducer_closure5: function lastErrorReducer_closure5() { }, lastErrorReducer_closure6: function lastErrorReducer_closure6() { }, lastErrorReducer_closure7: function lastErrorReducer_closure7() { }, lastErrorReducer_closure8: function lastErrorReducer_closure8() { }, lastErrorReducer_closure9: function lastErrorReducer_closure9() { }, lastErrorReducer_closure10: function lastErrorReducer_closure10() { }, lastErrorReducer_closure11: function lastErrorReducer_closure11() { }, lastErrorReducer_closure12: function lastErrorReducer_closure12() { }, lastErrorReducer_closure13: function lastErrorReducer_closure13() { }, lastErrorReducer_closure14: function lastErrorReducer_closure14() { }, lastErrorReducer_closure15: function lastErrorReducer_closure15() { }, lastErrorReducer_closure16: function lastErrorReducer_closure16() { }, lastErrorReducer_closure17: function lastErrorReducer_closure17() { }, lastErrorReducer_closure18: function lastErrorReducer_closure18() { }, dropdownClientsSelector: function(clientMap, clientList, userMap, staticState) { var t1 = J.where$1$ax(clientList._list, new G.dropdownClientsSelector_closure(clientMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new G.dropdownClientsSelector_closure0(clientMap, userMap, staticState)); return list; }, clientStatsForUser: function(userId, clientMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(clientMap._map$_map, new G.clientStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, filteredClientsSelector: function(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(clientList._list, new G.filteredClientsSelector_closure(clientMap, groupMap, selectionState, filterEntityType, filterEntityId, clientListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new G.filteredClientsSelector_closure0(clientMap, clientListState, userMap, staticState)); return list; }, memoizedDropdownClientList_closure: function memoizedDropdownClientList_closure() { }, dropdownClientsSelector_closure: function dropdownClientsSelector_closure(t0) { this.clientMap = t0; }, dropdownClientsSelector_closure0: function dropdownClientsSelector_closure0(t0, t1, t2) { this.clientMap = t0; this.userMap = t1; this.staticState = t2; }, memoizedClientStatsForUser_closure: function memoizedClientStatsForUser_closure() { }, clientStatsForUser_closure: function clientStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedFilteredClientList_closure: function memoizedFilteredClientList_closure() { }, filteredClientsSelector_closure: function filteredClientsSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.clientMap = t0; _.groupMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.clientListState = t5; }, filteredClientsSelector__closure: function filteredClientsSelector__closure(t0) { this.filterEntityId = t0; }, filteredClientsSelector_closure0: function filteredClientsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.clientMap = t0; _.clientListState = t1; _.userMap = t2; _.staticState = t3; }, _$CreditState$_: function(list, map) { var _s11_ = "CreditState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "list")); return new G._$CreditState(map, list); }, _$CreditUIState$_: function(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("CreditUIState", "listUIState")); return new G._$CreditUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, CreditState: function CreditState() { }, CreditState_loadCredits_closure0: function CreditState_loadCredits_closure0() { }, CreditState_loadCredits_closure1: function CreditState_loadCredits_closure1() { }, CreditState_loadCredits_closure: function CreditState_loadCredits_closure(t0, t1) { this.$this = t0; this.map = t1; }, CreditUIState: function CreditUIState() { }, _$CreditStateSerializer: function _$CreditStateSerializer() { }, _$CreditUIStateSerializer: function _$CreditUIStateSerializer() { }, _$CreditState: function _$CreditState(t0, t1) { this.map = t0; this.list = t1; this._credit_state$__hashCode = null; }, CreditStateBuilder: function CreditStateBuilder() { this._credit_state$_list = this._credit_state$_map = this._credit_state$_$v = null; }, _$CreditUIState: function _$CreditUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._credit_state$__hashCode = null; }, CreditUIStateBuilder: function CreditUIStateBuilder() { var _ = this; _._credit_state$_cancelCompleter = _._credit_state$_saveCompleter = _._credit_state$_tabIndex = _._credit_state$_forceSelected = _._credit_state$_selectedId = _._credit_state$_listUIState = _._credit_state$_historyActivityId = _._credit_state$_editingItemIndex = _._credit_state$_editing = _._credit_state$_$v = null; }, _CreditUIState_Object_EntityUIState: function _CreditUIState_Object_EntityUIState() { }, ViewDashboard: function ViewDashboard(t0, t1) { this.force = t0; this.filter = t1; }, UpdateDashboardSettings: function UpdateDashboardSettings(t0, t1, t2, t3) { var _ = this; _.settings = t0; _.offset = t1; _.currencyId = t2; _.includeTaxes = t3; }, UpdateDashboardSelection: function UpdateDashboardSelection(t0, t1) { this.entityType = t0; this.entityIds = t1; }, UpdateDashboardEntityType: function UpdateDashboardEntityType(t0) { this.entityType = t0; }, UpdateDashboardSidebar: function UpdateDashboardSidebar(t0) { this.showSidebar = t0; }, _viewInvoiceList: function() { return new G._viewInvoiceList_closure0(); }, _viewInvoice: function() { return new G._viewInvoice_closure(); }, _editInvoice: function() { return new G._editInvoice_closure(); }, _showEmailInvoice: function() { return new G._showEmailInvoice_closure(); }, _showPdfInvoice: function() { return new G._showPdfInvoice_closure(); }, _cancelInvoices: function(repository) { return new G._cancelInvoices_closure(repository); }, _reverseInvoices: function(repository) { return new G._reverseInvoices_closure(repository); }, _archiveInvoice: function(repository) { return new G._archiveInvoice_closure(repository); }, _deleteInvoice: function(repository) { return new G._deleteInvoice_closure(repository); }, _restoreInvoice: function(repository) { return new G._restoreInvoice_closure(repository); }, _markInvoiceSent: function(repository) { return new G._markInvoiceSent_closure(repository); }, _markInvoicePaid: function(repository) { return new G._markInvoicePaid_closure(repository); }, _downloadInvoices: function(repository) { return new G._downloadInvoices_closure(repository); }, _emailInvoice: function(repository) { return new G._emailInvoice_closure(repository); }, _bulkEmailInvoices: function(repository) { return new G._bulkEmailInvoices_closure(repository); }, _saveInvoice: function(repository) { return new G._saveInvoice_closure(repository); }, _loadInvoice: function(repository) { return new G._loadInvoice_closure(repository); }, _loadInvoices: function(repository) { return new G._loadInvoices_closure(repository); }, _saveDocument1: function(repository) { return new G._saveDocument_closure9(repository); }, _viewInvoiceList_closure0: function _viewInvoiceList_closure0() { }, _viewInvoiceList__closure: function _viewInvoiceList__closure() { }, _viewInvoice_closure: function _viewInvoice_closure() { }, _editInvoice_closure: function _editInvoice_closure() { }, _showEmailInvoice_closure: function _showEmailInvoice_closure() { }, _showPdfInvoice_closure: function _showPdfInvoice_closure() { }, _cancelInvoices_closure: function _cancelInvoices_closure(t0) { this.repository = t0; }, _cancelInvoices__closure: function _cancelInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _cancelInvoices__closure0: function _cancelInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _reverseInvoices_closure: function _reverseInvoices_closure(t0) { this.repository = t0; }, _reverseInvoices__closure: function _reverseInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _reverseInvoices__closure0: function _reverseInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveInvoice_closure: function _archiveInvoice_closure(t0) { this.repository = t0; }, _archiveInvoice__closure: function _archiveInvoice__closure(t0) { this.store = t0; }, _archiveInvoice__closure0: function _archiveInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveInvoice__closure1: function _archiveInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _deleteInvoice_closure: function _deleteInvoice_closure(t0) { this.repository = t0; }, _deleteInvoice__closure: function _deleteInvoice__closure(t0) { this.store = t0; }, _deleteInvoice__closure0: function _deleteInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteInvoice__closure1: function _deleteInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _restoreInvoice_closure: function _restoreInvoice_closure(t0) { this.repository = t0; }, _restoreInvoice__closure: function _restoreInvoice__closure(t0) { this.store = t0; }, _restoreInvoice__closure0: function _restoreInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreInvoice__closure1: function _restoreInvoice__closure1(t0, t1, t2) { this.store = t0; this.prevInvoices = t1; this.action = t2; }, _markInvoiceSent_closure: function _markInvoiceSent_closure(t0) { this.repository = t0; }, _markInvoiceSent__closure: function _markInvoiceSent__closure(t0, t1) { this.store = t0; this.action = t1; }, _markInvoiceSent__closure0: function _markInvoiceSent__closure0(t0, t1) { this.store = t0; this.action = t1; }, _markInvoicePaid_closure: function _markInvoicePaid_closure(t0) { this.repository = t0; }, _markInvoicePaid__closure: function _markInvoicePaid__closure(t0, t1) { this.store = t0; this.action = t1; }, _markInvoicePaid__closure0: function _markInvoicePaid__closure0(t0, t1) { this.store = t0; this.action = t1; }, _downloadInvoices_closure: function _downloadInvoices_closure(t0) { this.repository = t0; }, _downloadInvoices__closure: function _downloadInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _downloadInvoices__closure0: function _downloadInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _emailInvoice_closure: function _emailInvoice_closure(t0) { this.repository = t0; }, _emailInvoice__closure: function _emailInvoice__closure(t0, t1, t2) { this.store = t0; this.origInvoice = t1; this.action = t2; }, _emailInvoice__closure0: function _emailInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailInvoices_closure: function _bulkEmailInvoices_closure(t0) { this.repository = t0; }, _bulkEmailInvoices__closure: function _bulkEmailInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _bulkEmailInvoices__closure0: function _bulkEmailInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveInvoice_closure: function _saveInvoice_closure(t0) { this.repository = t0; }, _saveInvoice__closure: function _saveInvoice__closure(t0) { this.action = t0; }, _saveInvoice___closure: function _saveInvoice___closure() { }, _saveInvoice__closure0: function _saveInvoice__closure0(t0, t1) { this.action = t0; this.store = t1; }, _saveInvoice__closure1: function _saveInvoice__closure1(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoice_closure: function _loadInvoice_closure(t0) { this.repository = t0; }, _loadInvoice__closure: function _loadInvoice__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoice__closure0: function _loadInvoice__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoices_closure: function _loadInvoices_closure(t0) { this.repository = t0; }, _loadInvoices__closure: function _loadInvoices__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadInvoices__closure0: function _loadInvoices__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure9: function _saveDocument_closure9(t0) { this.repository = t0; }, _saveDocument__closure19: function _saveDocument__closure19(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure20: function _saveDocument__closure20(t0, t1) { this.store = t0; this.action = t1; }, projectUIReducer: function(state, action) { var t1; state.toString; t1 = new D.ProjectUIStateBuilder(); t1._project_state$_$v = state; new G.projectUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing9: function(project, dynamicAction) { var _null = null; return A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); }, _updateEditing10: function(project, action) { return action.get$project(); }, _viewProjectList0: function(projectListState, action) { return projectListState.rebuild$1(new G._viewProjectList_closure()); }, _filterProjectsByCustom1: function(projectListState, action) { var t1 = projectListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return projectListState.rebuild$1(new G._filterProjectsByCustom1_closure(action)); else return projectListState.rebuild$1(new G._filterProjectsByCustom1_closure0(action)); }, _filterProjectsByCustom2: function(projectListState, action) { var t1 = projectListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return projectListState.rebuild$1(new G._filterProjectsByCustom2_closure(action)); else return projectListState.rebuild$1(new G._filterProjectsByCustom2_closure0(action)); }, _filterProjectsByCustom3: function(projectListState, action) { var t1 = projectListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return projectListState.rebuild$1(new G._filterProjectsByCustom3_closure(action)); else return projectListState.rebuild$1(new G._filterProjectsByCustom3_closure0(action)); }, _filterProjectsByCustom4: function(projectListState, action) { var t1 = projectListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return projectListState.rebuild$1(new G._filterProjectsByCustom4_closure(action)); else return projectListState.rebuild$1(new G._filterProjectsByCustom4_closure0(action)); }, _filterProjectsByState: function(projectListState, action) { var t1 = projectListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return projectListState.rebuild$1(new G._filterProjectsByState_closure(action)); else return projectListState.rebuild$1(new G._filterProjectsByState_closure0(action)); }, _filterProjects: function(projectListState, action) { return projectListState.rebuild$1(new G._filterProjects_closure(action, projectListState)); }, _sortProjects: function(projectListState, action) { return projectListState.rebuild$1(new G._sortProjects_closure(action)); }, _startListMultiselect11: function(projectListState, action) { return projectListState.rebuild$1(new G._startListMultiselect_closure1()); }, _addToListMultiselect11: function(projectListState, action) { return projectListState.rebuild$1(new G._addToListMultiselect_closure1(action)); }, _removeFromListMultiselect11: function(projectListState, action) { return projectListState.rebuild$1(new G._removeFromListMultiselect_closure1(action)); }, _clearListMultiselect11: function(projectListState, action) { return projectListState.rebuild$1(new G._clearListMultiselect_closure1()); }, _archiveProjectSuccess: function(projectState, action) { return projectState.rebuild$1(new G._archiveProjectSuccess_closure(action)); }, _deleteProjectSuccess: function(projectState, action) { return projectState.rebuild$1(new G._deleteProjectSuccess_closure(action)); }, _restoreProjectSuccess: function(projectState, action) { return projectState.rebuild$1(new G._restoreProjectSuccess_closure(action)); }, _addProject: function(projectState, action) { return projectState.rebuild$1(new G._addProject_closure(action)); }, _updateProject: function(projectState, action) { return projectState.rebuild$1(new G._updateProject_closure(action)); }, _setLoadedProject: function(projectState, action) { return projectState.rebuild$1(new G._setLoadedProject_closure(action)); }, _setLoadedProjects: function(projectState, action) { return projectState.loadProjects$1(action.projects); }, _setLoadedCompany10: function(projectState, action) { return projectState.loadProjects$1(action.userCompany.company.projects); }, projectUIReducer_closure: function projectUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure15: function forceSelectedReducer_closure15() { }, forceSelectedReducer_closure16: function forceSelectedReducer_closure16() { }, forceSelectedReducer_closure17: function forceSelectedReducer_closure17() { }, forceSelectedReducer_closure18: function forceSelectedReducer_closure18() { }, forceSelectedReducer_closure19: function forceSelectedReducer_closure19() { }, forceSelectedReducer_closure20: function forceSelectedReducer_closure20() { }, forceSelectedReducer_closure21: function forceSelectedReducer_closure21() { }, forceSelectedReducer_closure22: function forceSelectedReducer_closure22() { }, tabIndexReducer_closure3: function tabIndexReducer_closure3() { }, tabIndexReducer_closure4: function tabIndexReducer_closure4() { }, saveCompleterReducer_closure: function saveCompleterReducer_closure() { }, cancelCompleterReducer_closure: function cancelCompleterReducer_closure() { }, selectedIdReducer_closure34: function selectedIdReducer_closure34() { }, selectedIdReducer_closure35: function selectedIdReducer_closure35() { }, selectedIdReducer_closure36: function selectedIdReducer_closure36() { }, selectedIdReducer_closure37: function selectedIdReducer_closure37() { }, selectedIdReducer_closure38: function selectedIdReducer_closure38() { }, selectedIdReducer_closure39: function selectedIdReducer_closure39() { }, selectedIdReducer_closure40: function selectedIdReducer_closure40() { }, selectedIdReducer_closure41: function selectedIdReducer_closure41() { }, selectedIdReducer_closure42: function selectedIdReducer_closure42() { }, selectedIdReducer_closure43: function selectedIdReducer_closure43() { }, selectedIdReducer_closure44: function selectedIdReducer_closure44() { }, selectedIdReducer_closure45: function selectedIdReducer_closure45() { }, selectedIdReducer_closure46: function selectedIdReducer_closure46() { }, selectedIdReducer_closure47: function selectedIdReducer_closure47() { }, selectedIdReducer_closure48: function selectedIdReducer_closure48() { }, editingReducer_closure14: function editingReducer_closure14() { }, editingReducer_closure15: function editingReducer_closure15() { }, editingReducer_closure16: function editingReducer_closure16() { }, editingReducer_closure17: function editingReducer_closure17() { }, editingReducer__closure7: function editingReducer__closure7() { }, _viewProjectList_closure: function _viewProjectList_closure() { }, _filterProjectsByCustom1_closure: function _filterProjectsByCustom1_closure(t0) { this.action = t0; }, _filterProjectsByCustom1_closure0: function _filterProjectsByCustom1_closure0(t0) { this.action = t0; }, _filterProjectsByCustom2_closure: function _filterProjectsByCustom2_closure(t0) { this.action = t0; }, _filterProjectsByCustom2_closure0: function _filterProjectsByCustom2_closure0(t0) { this.action = t0; }, _filterProjectsByCustom3_closure: function _filterProjectsByCustom3_closure(t0) { this.action = t0; }, _filterProjectsByCustom3_closure0: function _filterProjectsByCustom3_closure0(t0) { this.action = t0; }, _filterProjectsByCustom4_closure: function _filterProjectsByCustom4_closure(t0) { this.action = t0; }, _filterProjectsByCustom4_closure0: function _filterProjectsByCustom4_closure0(t0) { this.action = t0; }, _filterProjectsByState_closure: function _filterProjectsByState_closure(t0) { this.action = t0; }, _filterProjectsByState_closure0: function _filterProjectsByState_closure0(t0) { this.action = t0; }, _filterProjects_closure: function _filterProjects_closure(t0, t1) { this.action = t0; this.projectListState = t1; }, _sortProjects_closure: function _sortProjects_closure(t0) { this.action = t0; }, _startListMultiselect_closure1: function _startListMultiselect_closure1() { }, _addToListMultiselect_closure1: function _addToListMultiselect_closure1(t0) { this.action = t0; }, _removeFromListMultiselect_closure1: function _removeFromListMultiselect_closure1(t0) { this.action = t0; }, _clearListMultiselect_closure1: function _clearListMultiselect_closure1() { }, _archiveProjectSuccess_closure: function _archiveProjectSuccess_closure(t0) { this.action = t0; }, _deleteProjectSuccess_closure: function _deleteProjectSuccess_closure(t0) { this.action = t0; }, _restoreProjectSuccess_closure: function _restoreProjectSuccess_closure(t0) { this.action = t0; }, _addProject_closure: function _addProject_closure(t0) { this.action = t0; }, _updateProject_closure: function _updateProject_closure(t0) { this.action = t0; }, _setLoadedProject_closure: function _setLoadedProject_closure(t0) { this.action = t0; }, _$QuoteState$_: function(list, map) { var _s10_ = "QuoteState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "list")); return new G._$QuoteState(map, list); }, _$QuoteUIState$_: function(cancelCompleter, editing, editingItemIndex, forceSelected, historyActivityId, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("QuoteUIState", "listUIState")); return new G._$QuoteUIState(editing, editingItemIndex, historyActivityId, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, QuoteState: function QuoteState() { }, QuoteState_loadQuotes_closure0: function QuoteState_loadQuotes_closure0() { }, QuoteState_loadQuotes_closure1: function QuoteState_loadQuotes_closure1() { }, QuoteState_loadQuotes_closure: function QuoteState_loadQuotes_closure(t0, t1) { this.$this = t0; this.map = t1; }, QuoteUIState: function QuoteUIState() { }, _$QuoteStateSerializer: function _$QuoteStateSerializer() { }, _$QuoteUIStateSerializer: function _$QuoteUIStateSerializer() { }, _$QuoteState: function _$QuoteState(t0, t1) { this.map = t0; this.list = t1; this._quote_state$__hashCode = null; }, QuoteStateBuilder: function QuoteStateBuilder() { this._quote_state$_list = this._quote_state$_map = this._quote_state$_$v = null; }, _$QuoteUIState: function _$QuoteUIState(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.editing = t0; _.editingItemIndex = t1; _.historyActivityId = t2; _.listUIState = t3; _.selectedId = t4; _.forceSelected = t5; _.tabIndex = t6; _.saveCompleter = t7; _.cancelCompleter = t8; _._quote_state$__hashCode = null; }, QuoteUIStateBuilder: function QuoteUIStateBuilder() { var _ = this; _._cancelCompleter = _._saveCompleter = _._quote_state$_tabIndex = _._forceSelected = _._selectedId = _._listUIState = _._historyActivityId = _._editingItemIndex = _._editing = _._quote_state$_$v = null; }, _QuoteUIState_Object_EntityUIState: function _QuoteUIState_Object_EntityUIState() { }, ReportsUIState_ReportsUIState: function() { var t1 = type$.legacy_String; return G._$ReportsUIState$_("", "", "", A.BuiltMap_BuiltMap(C.Map_empty0, t1, t1), "", "client", "", "day"); }, _$ReportsUIState$_: function(chart, customEndDate, customStartDate, filters, group, report, selectedGroup, subgroup) { if (filters == null) H.throwExpression(Y.BuiltValueNullFieldError$("ReportsUIState", "filters")); return new G._$ReportsUIState(report, group, selectedGroup, chart, subgroup, customStartDate, customEndDate, filters); }, ReportsUIState: function ReportsUIState() { }, _$ReportsUIStateSerializer: function _$ReportsUIStateSerializer() { }, _$ReportsUIState: function _$ReportsUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.report = t0; _.group = t1; _.selectedGroup = t2; _.chart = t3; _.subgroup = t4; _.customStartDate = t5; _.customEndDate = t6; _.filters = t7; _._reports_state$__hashCode = null; }, ReportsUIStateBuilder: function ReportsUIStateBuilder() { var _ = this; _._filters = _._customEndDate = _._customStartDate = _._subgroup = _._chart = _._selectedGroup = _._group = _._report = _._reports_state$_$v = null; }, filteredTaxRatesSelector: function(selectionState, taxRateMap, taxRateList, taxRateListState) { var t1 = J.where$1$ax(taxRateList._list, new G.filteredTaxRatesSelector_closure(taxRateMap, selectionState, taxRateListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new G.filteredTaxRatesSelector_closure0(taxRateMap, taxRateListState)); return list; }, memoizedFilteredTaxRateList_closure: function memoizedFilteredTaxRateList_closure() { }, filteredTaxRatesSelector_closure: function filteredTaxRatesSelector_closure(t0, t1, t2) { this.taxRateMap = t0; this.selectionState = t1; this.taxRateListState = t2; }, filteredTaxRatesSelector_closure0: function filteredTaxRatesSelector_closure0(t0, t1) { this.taxRateMap = t0; this.taxRateListState = t1; }, dropdownVendorsSelector: function(vendorMap, vendorList, userMap, staticState) { var t1 = J.where$1$ax(vendorList._list, new G.dropdownVendorsSelector_closure(vendorMap)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new G.dropdownVendorsSelector_closure0(vendorMap, userMap, staticState)); return list; }, filteredVendorsSelector: function(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState) { var t1 = J.where$1$ax(vendorList._list, new G.filteredVendorsSelector_closure(vendorMap, selectionState, vendorListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new G.filteredVendorsSelector_closure0(vendorMap, vendorListState, userMap, staticState)); return list; }, vendorStatsForUser: function(userId, vendorMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(vendorMap._map$_map, new G.vendorStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, calculateVendorBalance: function(vendorId, currencyId, expenseMap, expenseList) { var t1 = {}; t1.total = 0; J.forEach$1$ax(expenseList._list, new G.calculateVendorBalance_closure(t1, expenseMap, vendorId, currencyId)); return t1.total; }, memoizedDropdownVendorList_closure: function memoizedDropdownVendorList_closure() { }, dropdownVendorsSelector_closure: function dropdownVendorsSelector_closure(t0) { this.vendorMap = t0; }, dropdownVendorsSelector_closure0: function dropdownVendorsSelector_closure0(t0, t1, t2) { this.vendorMap = t0; this.userMap = t1; this.staticState = t2; }, memoizedFilteredVendorList_closure: function memoizedFilteredVendorList_closure() { }, filteredVendorsSelector_closure: function filteredVendorsSelector_closure(t0, t1, t2) { this.vendorMap = t0; this.selectionState = t1; this.vendorListState = t2; }, filteredVendorsSelector_closure0: function filteredVendorsSelector_closure0(t0, t1, t2, t3) { var _ = this; _.vendorMap = t0; _.vendorListState = t1; _.userMap = t2; _.staticState = t3; }, memoizedVendorStatsForUser_closure: function memoizedVendorStatsForUser_closure() { }, vendorStatsForUser_closure: function vendorStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedCalculateVendorBalance_closure: function memoizedCalculateVendorBalance_closure() { }, calculateVendorBalance_closure: function calculateVendorBalance_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.expenseMap = t1; _.vendorId = t2; _.currencyId = t3; }, AppBuilder: function AppBuilder(t0, t1) { this.builder = t0; this.key = t1; }, AppBuilderState: function AppBuilderState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, AppBuilderState_rebuild_closure: function AppBuilderState_rebuild_closure() { }, AppListTile$: function(buttons, copyValue, icon, onTap, subtitle, title) { return new G.AppListTile(icon, title, subtitle, onTap, copyValue, buttons, null); }, AppListTile: function AppListTile(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.icon = t0; _.title = t1; _.subtitle = t2; _.onTap = t3; _.copyValue = t4; _.buttons = t5; _.key = t6; }, AppListTile_build_closure0: function AppListTile_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, AppListTile_build_closure: function AppListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ListDivider: function ListDivider(t0) { this.key = t0; }, ViewScaffold: function ViewScaffold(t0, t1, t2, t3, t4, t5) { var _ = this; _.isFilter = t0; _.entity = t1; _.body = t2; _.onBackPressed = t3; _.appBarBottom = t4; _.key = t5; }, ViewScaffold_build_closure: function ViewScaffold_build_closure(t0) { this.store = t0; }, ViewScaffold_build_closure0: function ViewScaffold_build_closure0(t0) { this.store = t0; }, ViewScaffold_build_closure1: function ViewScaffold_build_closure1(t0) { this.store = t0; }, ViewScaffold_build_closure2: function ViewScaffold_build_closure2(t0) { this.store = t0; }, ViewScaffold_build_closure6: function ViewScaffold_build_closure6() { }, ViewScaffold_build_closure3: function ViewScaffold_build_closure3(t0, t1, t2) { this.$this = t0; this.store = t1; this.state = t2; }, ViewScaffold_build_closure4: function ViewScaffold_build_closure4(t0, t1, t2) { this.$this = t0; this.state = t1; this.localization = t2; }, ViewScaffold_build__closure: function ViewScaffold_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, ViewScaffold_build_closure5: function ViewScaffold_build_closure5(t0) { this.$this = t0; }, LoginVM_fromStore: function(store) { var t1 = new G.LoginVM_fromStore__handleLogin(store), t2 = new G.LoginVM_fromStore__formatApiUrl(), t3 = store.get$_store$_state(); store.get$_store$_state().toString; return new G.LoginVM(t3, store.get$_store$_state().authState, new G.LoginVM_fromStore_closure(store, t2, t1), new G.LoginVM_fromStore_closure0(store, t2), new G.LoginVM_fromStore_closure1(store, t1), new G.LoginVM_fromStore_closure2(), new G.LoginVM_fromStore_closure3(store, t2, t1), new G.LoginVM_fromStore_closure4(store, t1)); }, LoginScreen: function LoginScreen(t0) { this.key = t0; }, LoginScreen_build_closure: function LoginScreen_build_closure() { }, LoginVM: function LoginVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.authState = t1; _.onLoginPressed = t2; _.onRecoverPressed = t3; _.onSignUpPressed = t4; _.onTokenLoginPressed = t5; _.onGoogleLoginPressed = t6; _.onGoogleSignUpPressed = t7; }, LoginVM_fromStore__handleLogin: function LoginVM_fromStore__handleLogin(t0) { this.store = t0; }, LoginVM_fromStore__handleLogin_closure: function LoginVM_fromStore__handleLogin_closure(t0, t1, t2) { this.layout = t0; this.isSignUp = t1; this.store = t2; }, LoginVM_fromStore__formatApiUrl: function LoginVM_fromStore__formatApiUrl() { }, LoginVM_fromStore_closure3: function LoginVM_fromStore_closure3(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure0: function LoginVM_fromStore__closure0(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.completer = t0; _.context = t1; _.store = t2; _._formatApiUrl = t3; _.url = t4; _.secret = t5; _.oneTimePassword = t6; _._handleLogin = t7; }, LoginVM_fromStore___closure0: function LoginVM_fromStore___closure0(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure4: function LoginVM_fromStore_closure4(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure: function LoginVM_fromStore__closure(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.context = t1; _.store = t2; _._handleLogin = t3; }, LoginVM_fromStore___closure: function LoginVM_fromStore___closure(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure1: function LoginVM_fromStore_closure1(t0, t1) { this.store = t0; this._handleLogin = t1; }, LoginVM_fromStore__closure1: function LoginVM_fromStore__closure1(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure0: function LoginVM_fromStore_closure0(t0, t1) { this.store = t0; this._formatApiUrl = t1; }, LoginVM_fromStore_closure: function LoginVM_fromStore_closure(t0, t1, t2) { this.store = t0; this._formatApiUrl = t1; this._handleLogin = t2; }, LoginVM_fromStore__closure2: function LoginVM_fromStore__closure2(t0, t1) { this._handleLogin = t0; this.context = t1; }, LoginVM_fromStore_closure2: function LoginVM_fromStore_closure2() { }, ClientView: function ClientView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _ClientViewState: function _ClientViewState(t0, t1) { var _ = this; _._client_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _ClientViewState_build_closure0: function _ClientViewState_build_closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.client = t2; }, _ClientViewState_build__closure: function _ClientViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure0: function _ClientViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure1: function _ClientViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure2: function _ClientViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure3: function _ClientViewState_build__closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build__closure4: function _ClientViewState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, _ClientViewState_build_closure: function _ClientViewState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.context = t0; _.userCompany = t1; _.localization = t2; _.client = t3; _.store = t4; }, _ClientViewState_build__closure5: function _ClientViewState_build__closure5(t0, t1, t2, t3) { var _ = this; _.userCompany = t0; _.localization = t1; _.client = t2; _.store = t3; }, _ClientViewState_build___closure: function _ClientViewState_build___closure(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure0: function _ClientViewState_build___closure0(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure1: function _ClientViewState_build___closure1(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure2: function _ClientViewState_build___closure2(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure3: function _ClientViewState_build___closure3(t0, t1) { this.context = t0; this.client = t1; }, _ClientViewState_build___closure4: function _ClientViewState_build___closure4(t0, t1, t2) { this.context = t0; this.store = t1; this.client = t2; }, __ClientViewState_State_SingleTickerProviderStateMixin: function __ClientViewState_State_SingleTickerProviderStateMixin() { }, CompanyGatewayList: function CompanyGatewayList(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyGatewayListState: function _CompanyGatewayListState(t0) { var _ = this; _._widget = _._company_gateway_list$_controller = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _CompanyGatewayListState_build_closure1: function _CompanyGatewayListState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayListState_build_closure0: function _CompanyGatewayListState_build_closure0(t0) { this.$this = t0; }, _CompanyGatewayListState_build_closure: function _CompanyGatewayListState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.state = t1; _.isInMultiselect = t2; _.listUIState = t3; }, _CompanyGatewayListState_build__closure: function _CompanyGatewayListState_build__closure(t0, t1) { this.$this = t0; this.companyGatewayId = t1; }, CompanyGatewayView: function CompanyGatewayView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _CompanyGatewayViewState: function _CompanyGatewayViewState(t0, t1) { var _ = this; _._company_gateway_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CompanyGatewayViewState_build_closure1: function _CompanyGatewayViewState_build_closure1(t0) { this.$this = t0; }, _CompanyGatewayViewState_build_closure: function _CompanyGatewayViewState_build_closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyGatewayViewState_build_closure0: function _CompanyGatewayViewState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _CompanyGatewayOverview: function _CompanyGatewayOverview(t0, t1, t2) { this.isFilter = t0; this.viewModel = t1; this.key = t2; }, _CompanyGatewayOverview_build_closure: function _CompanyGatewayOverview_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayOverview_build_closure0: function _CompanyGatewayOverview_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _CompanyGatewayOverview_build_closure2: function _CompanyGatewayOverview_build_closure2() { }, _CompanyGatewayOverview_build_closure1: function _CompanyGatewayOverview_build_closure1(t0, t1) { this.webhookUrl = t0; this.localization = t1; }, _CompanyGatewaySystemLog: function _CompanyGatewaySystemLog(t0, t1) { this.viewModel = t0; this.key = t1; }, __CompanyGatewaySystemLogState: function __CompanyGatewaySystemLogState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, __CompanyGatewayViewState_State_SingleTickerProviderStateMixin: function __CompanyGatewayViewState_State_SingleTickerProviderStateMixin() { }, CreditEditNotesVM_CreditEditNotesVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, credit = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new G.CreditEditNotesVM(state, J.$index$asx(t2._list, t1).userCompany.company, credit, new G.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure(store)); }, CreditEditNotesScreen: function CreditEditNotesScreen(t0) { this.key = t0; }, CreditEditNotesScreen_build_closure0: function CreditEditNotesScreen_build_closure0() { }, CreditEditNotesScreen_build_closure: function CreditEditNotesScreen_build_closure() { }, CreditEditNotesVM: function CreditEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, CreditEditNotesVM_CreditEditNotesVM$fromStore_closure: function CreditEditNotesVM_CreditEditNotesVM$fromStore_closure(t0) { this.store = t0; }, DesignListItem: function DesignListItem(t0, t1, t2, t3) { var _ = this; _.design = t0; _.filter = t1; _.isChecked = t2; _.key = t3; }, DesignListItem_build_closure1: function DesignListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, DesignListItem_build_closure0: function DesignListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, DesignListItem_build_closure: function DesignListItem_build_closure(t0) { this.$this = t0; }, DesignScreenVM_fromStore: function(store) { var t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).designState.toString; t5 = $.$get$memoizedFilteredDesignList(); t6 = t4.$index(t1, t3).designState.map; t7 = t4.$index(t1, t3).designState.list; t2 = t2.designUIState.listUIState; t7 = t5.call$3(t6, t7, t2); t4.$index(t1, t3).toString; t2.toString; return new G.DesignScreenVM(t7); }, DesignScreenBuilder: function DesignScreenBuilder(t0) { this.key = t0; }, DesignScreenBuilder_build_closure: function DesignScreenBuilder_build_closure() { }, DesignScreenVM: function DesignScreenVM(t0) { this.designList = t0; }, DesignEditVM_DesignEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, design = t1.designUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).designState.map; t5 = design.id; J.$index$asx(t4._map$_map, t5); return new G.DesignEditVM(design, t3.$index(t2, t1).userCompany.company, new G.DesignEditVM_DesignEditVM$fromStore_closure(store), new G.DesignEditVM_DesignEditVM$fromStore_closure0(store), new G.DesignEditVM_DesignEditVM$fromStore_closure1(store, state), state); }, DesignEditScreen: function DesignEditScreen(t0) { this.key = t0; }, DesignEditScreen_build_closure0: function DesignEditScreen_build_closure0() { }, DesignEditScreen_build_closure: function DesignEditScreen_build_closure() { }, DesignEditVM: function DesignEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.design = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, DesignEditVM_DesignEditVM$fromStore_closure: function DesignEditVM_DesignEditVM$fromStore_closure(t0) { this.store = t0; }, DesignEditVM_DesignEditVM$fromStore_closure1: function DesignEditVM_DesignEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, DesignEditVM_DesignEditVM$fromStore_closure0: function DesignEditVM_DesignEditVM$fromStore_closure0(t0) { this.store = t0; }, DesignEditVM_DesignEditVM$fromStore__closure: function DesignEditVM_DesignEditVM$fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, DocumentScreen: function DocumentScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, DocumentScreen_build_closure9: function DocumentScreen_build_closure9(t0) { this.store = t0; }, DocumentScreen_build_closure7: function DocumentScreen_build_closure7(t0) { this.store = t0; }, DocumentScreen_build_closure8: function DocumentScreen_build_closure8(t0) { this.store = t0; }, DocumentScreen_build_closure4: function DocumentScreen_build_closure4(t0) { this.store = t0; }, DocumentScreen_build_closure0: function DocumentScreen_build_closure0(t0) { this.store = t0; }, DocumentScreen_build_closure1: function DocumentScreen_build_closure1(t0) { this.store = t0; }, DocumentScreen_build_closure2: function DocumentScreen_build_closure2(t0) { this.store = t0; }, DocumentScreen_build_closure3: function DocumentScreen_build_closure3(t0) { this.store = t0; }, DocumentScreen_build_closure5: function DocumentScreen_build_closure5(t0) { this.store = t0; }, DocumentScreen_build_closure: function DocumentScreen_build_closure(t0) { this.store = t0; }, DocumentScreen_build_closure6: function DocumentScreen_build_closure6(t0) { this.context = t0; }, InvoiceEditItems: function InvoiceEditItems(t0, t1, t2) { this.viewModel = t0; this.entityViewModel = t1; this.key = t2; }, _InvoiceEditItemsState: function _InvoiceEditItemsState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _InvoiceEditItemsState__showInvoiceItemEditor_closure: function _InvoiceEditItemsState__showInvoiceItemEditor_closure(t0, t1) { this.$this = t0; this.lineItemIndex = t1; }, _InvoiceEditItemsState_build_closure: function _InvoiceEditItemsState_build_closure(t0, t1, t2) { this.$this = t0; this.itemIndex = t1; this.context = t2; }, _InvoiceEditItemsState_build_closure0: function _InvoiceEditItemsState_build_closure0(t0, t1, t2) { this.$this = t0; this.i = t1; this.context = t2; }, ItemEditDetails: function ItemEditDetails(t0, t1, t2, t3, t4) { var _ = this; _.index = t0; _.invoiceItem = t1; _.viewModel = t2; _.entityViewModel = t3; _.key = t4; }, ItemEditDetailsState: function ItemEditDetailsState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._invoice_edit_items$_productKeyController = t0; _._invoice_edit_items$_notesController = t1; _._invoice_edit_items$_costController = t2; _._qtyController = t3; _._discountController = t4; _._invoice_edit_items$_custom1Controller = t5; _._invoice_edit_items$_custom2Controller = t6; _._invoice_edit_items$_custom3Controller = t7; _._invoice_edit_items$_custom4Controller = t8; _._invoice_edit_items$_taxRate3 = _._invoice_edit_items$_taxRate2 = _._invoice_edit_items$_taxRate1 = null; _._invoice_edit_items$_controllers = t9; _._invoice_edit_items$_debouncer = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ItemEditDetailsState_didChangeDependencies_closure: function ItemEditDetailsState_didChangeDependencies_closure(t0) { this.$this = t0; }, ItemEditDetailsState_dispose_closure: function ItemEditDetailsState_dispose_closure(t0) { this.$this = t0; }, ItemEditDetailsState__onTextChanged_closure: function ItemEditDetailsState__onTextChanged_closure(t0) { this.$this = t0; }, ItemEditDetailsState__onChanged_closure: function ItemEditDetailsState__onChanged_closure(t0) { this.$this = t0; }, ItemEditDetailsState_build_closure: function ItemEditDetailsState_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ItemEditDetailsState_build__closure2: function ItemEditDetailsState_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ItemEditDetailsState_build_closure0: function ItemEditDetailsState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, ItemEditDetailsState_build_closure1: function ItemEditDetailsState_build_closure1(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure1: function ItemEditDetailsState_build__closure1(t0, t1) { this.$this = t0; this.taxRate = t1; }, ItemEditDetailsState_build_closure2: function ItemEditDetailsState_build_closure2(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure0: function ItemEditDetailsState_build__closure0(t0, t1) { this.$this = t0; this.taxRate = t1; }, ItemEditDetailsState_build_closure3: function ItemEditDetailsState_build_closure3(t0) { this.$this = t0; }, ItemEditDetailsState_build__closure: function ItemEditDetailsState_build__closure(t0, t1) { this.$this = t0; this.taxRate = t1; }, PaymentScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, t11, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).paymentState.toString; t5 = $.$get$memoizedFilteredPaymentList(); t6 = state.getUISelection$1(C.EntityType_payment); t7 = t4.$index(t1, t3).paymentState.map; t8 = t4.$index(t1, t3).paymentState.list; t9 = t4.$index(t1, t3).invoiceState.map; t10 = t4.$index(t1, t3).clientState.map; t11 = t4.$index(t1, t3).userState.map; t2 = t2.paymentUIState.listUIState; t11 = t5.call$7(t6, t7, t8, t9, t10, t11, t2); t4.$index(t1, t3).toString; t2.toString; return new G.PaymentScreenVM(t11); }, PaymentScreenBuilder: function PaymentScreenBuilder(t0) { this.key = t0; }, PaymentScreenBuilder_build_closure: function PaymentScreenBuilder_build_closure() { }, PaymentScreenVM: function PaymentScreenVM(t0) { this.paymentList = t0; }, ProjectEditVM_ProjectEditVM$fromStore: function(store) { var t3, t4, project = store.get$_store$_state().uiState.projectUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).userCompany.company; t2 = t3.$index(t1, t2).projectState.map; t1 = project.id; J.$index$asx(t2._map$_map, t1); return new G.ProjectEditVM(project, t4, new G.ProjectEditVM_ProjectEditVM$fromStore_closure(store), new G.ProjectEditVM_ProjectEditVM$fromStore_closure0(store, state), new G.ProjectEditVM_ProjectEditVM$fromStore_closure1(state, store), state, new G.ProjectEditVM_ProjectEditVM$fromStore_closure2(store)); }, ProjectEditScreen: function ProjectEditScreen(t0) { this.key = t0; }, ProjectEditScreen_build_closure0: function ProjectEditScreen_build_closure0() { }, ProjectEditScreen_build_closure: function ProjectEditScreen_build_closure() { }, ProjectEditVM: function ProjectEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.project = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; _.onAddClientPressed = t6; }, ProjectEditVM_ProjectEditVM$fromStore_closure: function ProjectEditVM_ProjectEditVM$fromStore_closure(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore_closure1: function ProjectEditVM_ProjectEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, ProjectEditVM_ProjectEditVM$fromStore_closure2: function ProjectEditVM_ProjectEditVM$fromStore_closure2(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore__closure: function ProjectEditVM_ProjectEditVM$fromStore__closure(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore__closure0: function ProjectEditVM_ProjectEditVM$fromStore__closure0(t0) { this.store = t0; }, ProjectEditVM_ProjectEditVM$fromStore_closure0: function ProjectEditVM_ProjectEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ProjectEditVM_ProjectEditVM$fromStore__closure1: function ProjectEditVM_ProjectEditVM$fromStore__closure1(t0, t1) { this.store = t0; this.state = t1; }, ProjectEditVM_ProjectEditVM$fromStore___closure: function ProjectEditVM_ProjectEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.project = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ProjectEditVM_ProjectEditVM$fromStore___closure0: function ProjectEditVM_ProjectEditVM$fromStore___closure0() { }, ProjectEditVM_ProjectEditVM$fromStore____closure: function ProjectEditVM_ProjectEditVM$fromStore____closure(t0) { this.error = t0; }, RecurringInvoicePresenter: function RecurringInvoicePresenter() { this.context = this.entity = null; }, LocalizationSettings: function LocalizationSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _LocalizationSettingsState: function _LocalizationSettingsState(t0, t1, t2, t3) { var _ = this; _._localization_settings$_firstNameController = t0; _._localization_settings$_focusNode = _._localization_settings$_controller = null; _._localization_settings$_controllers = t1; _.SingleTickerProviderStateMixin__ticker = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _LocalizationSettingsState_dispose_closure: function _LocalizationSettingsState_dispose_closure(t0) { this.$this = t0; }, _LocalizationSettingsState_didChangeDependencies_closure: function _LocalizationSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _LocalizationSettingsState_didChangeDependencies_closure0: function _LocalizationSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _LocalizationSettingsState_build_closure: function _LocalizationSettingsState_build_closure(t0) { this.translations = t0; }, _LocalizationSettingsState_build_closure0: function _LocalizationSettingsState_build_closure0(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure1: function _LocalizationSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure11: function _LocalizationSettingsState_build__closure11(t0) { this.currency = t0; }, _LocalizationSettingsState_build_closure2: function _LocalizationSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure10: function _LocalizationSettingsState_build__closure10(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure3: function _LocalizationSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure9: function _LocalizationSettingsState_build__closure9(t0) { this.language = t0; }, _LocalizationSettingsState_build_closure4: function _LocalizationSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure8: function _LocalizationSettingsState_build__closure8(t0) { this.timezone = t0; }, _LocalizationSettingsState_build_closure5: function _LocalizationSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure7: function _LocalizationSettingsState_build__closure7(t0) { this.dateFormat = t0; }, _LocalizationSettingsState_build_closure6: function _LocalizationSettingsState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure6: function _LocalizationSettingsState_build__closure6(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure7: function _LocalizationSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.company = t1; }, _LocalizationSettingsState_build__closure5: function _LocalizationSettingsState_build__closure5(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure9: function _LocalizationSettingsState_build_closure9(t0, t1) { this.viewModel = t0; this.company = t1; }, _LocalizationSettingsState_build__closure4: function _LocalizationSettingsState_build__closure4(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure8: function _LocalizationSettingsState_build_closure8(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure10: function _LocalizationSettingsState_build_closure10(t0) { this.localization = t0; }, _LocalizationSettingsState_build_closure11: function _LocalizationSettingsState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build__closure3: function _LocalizationSettingsState_build__closure3(t0) { this.value = t0; }, _LocalizationSettingsState_build_closure12: function _LocalizationSettingsState_build_closure12(t0, t1, t2, t3) { var _ = this; _.context = t0; _.viewModel = t1; _.settings = t2; _.localization = t3; }, _LocalizationSettingsState_build__closure1: function _LocalizationSettingsState_build__closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _LocalizationSettingsState_build___closure: function _LocalizationSettingsState_build___closure(t0) { this.value = t0; }, _LocalizationSettingsState_build__closure2: function _LocalizationSettingsState_build__closure2() { }, _LocalizationSettingsState_build_closure13: function _LocalizationSettingsState_build_closure13(t0, t1, t2) { this.viewModel = t0; this.settings = t1; this.key = t2; }, _LocalizationSettingsState_build__closure0: function _LocalizationSettingsState_build__closure0(t0, t1) { this.key = t0; this.value = t1; }, _LocalizationSettingsState_build_closure14: function _LocalizationSettingsState_build_closure14(t0, t1, t2) { this.viewModel = t0; this.settings = t1; this.key = t2; }, _LocalizationSettingsState_build__closure: function _LocalizationSettingsState_build__closure(t0) { this.key = t0; }, __LocalizationSettingsState_State_SingleTickerProviderStateMixin: function __LocalizationSettingsState_State_SingleTickerProviderStateMixin() { }, ProductSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(); return new G.ProductSettingsVM(state, new G.ProductSettingsVM_fromStore_closure(store), state.uiState.settingsUIState.company, new G.ProductSettingsVM_fromStore_closure0(store)); }, ProductSettingsScreen: function ProductSettingsScreen(t0) { this.key = t0; }, ProductSettingsScreen_build_closure: function ProductSettingsScreen_build_closure() { }, ProductSettingsVM: function ProductSettingsVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.onCompanyChanged = t3; }, ProductSettingsVM_fromStore_closure0: function ProductSettingsVM_fromStore_closure0(t0) { this.store = t0; }, ProductSettingsVM_fromStore_closure: function ProductSettingsVM_fromStore_closure(t0) { this.store = t0; }, ProductSettingsVM_fromStore__closure: function ProductSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, UserScreen: function UserScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, UserScreen_build_closure9: function UserScreen_build_closure9(t0) { this.store = t0; }, UserScreen_build_closure7: function UserScreen_build_closure7(t0) { this.store = t0; }, UserScreen_build_closure8: function UserScreen_build_closure8(t0) { this.store = t0; }, UserScreen_build_closure4: function UserScreen_build_closure4(t0) { this.store = t0; }, UserScreen_build_closure0: function UserScreen_build_closure0(t0) { this.store = t0; }, UserScreen_build_closure1: function UserScreen_build_closure1(t0) { this.store = t0; }, UserScreen_build_closure2: function UserScreen_build_closure2(t0) { this.store = t0; }, UserScreen_build_closure3: function UserScreen_build_closure3(t0) { this.store = t0; }, UserScreen_build_closure5: function UserScreen_build_closure5(t0) { this.store = t0; }, UserScreen_build_closure: function UserScreen_build_closure(t0) { this.store = t0; }, UserScreen_build_closure6: function UserScreen_build_closure6(t0) { this.context = t0; }, VendorEditAddress: function VendorEditAddress(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorEditAddressState: function VendorEditAddressState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._vendor_edit_address$_address1Controller = t0; _._vendor_edit_address$_address2Controller = t1; _._vendor_edit_address$_cityController = t2; _._vendor_edit_address$_stateController = t3; _._vendor_edit_address$_postalCodeController = t4; _._vendor_edit_address$_controllers = t5; _._vendor_edit_address$_debouncer = t6; _._widget = null; _._debugLifecycleState = t7; _._framework$_element = null; }, VendorEditAddressState_didChangeDependencies_closure: function VendorEditAddressState_didChangeDependencies_closure(t0) { this.$this = t0; }, VendorEditAddressState_didChangeDependencies_closure0: function VendorEditAddressState_didChangeDependencies_closure0(t0) { this.$this = t0; }, VendorEditAddressState_dispose_closure: function VendorEditAddressState_dispose_closure(t0) { this.$this = t0; }, VendorEditAddressState__onChanged_closure: function VendorEditAddressState__onChanged_closure(t0) { this.$this = t0; }, VendorEditAddressState__onChanged_closure0: function VendorEditAddressState__onChanged_closure0(t0, t1) { this.$this = t0; this.vendor = t1; }, VendorEditAddressState_build_closure: function VendorEditAddressState_build_closure(t0, t1) { this.viewModel = t0; this.vendor = t1; }, VendorEditAddressState_build__closure: function VendorEditAddressState_build__closure(t0) { this.country = t0; }, VendorEditDesktop: function VendorEditDesktop(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorViewDocuments: function VendorViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, VendorViewDocuments_build_closure: function VendorViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, VendorViewDocuments_build_closure0: function VendorViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, HitCornersDetector: function HitCornersDetector() { }, HitCorners: function HitCorners(t0, t1) { this.hasHitMin = t0; this.hasHitMax = t1; }, PhotoViewScaleState: function PhotoViewScaleState(t0) { this._photo_view_scale_state$_name = t0; }, QrCodeElement: function QrCodeElement(t0) { this._types$_name = t0; }, FinderPatternPosition: function FinderPatternPosition(t0) { this._types$_name = t0; }, QrEyeShape: function QrEyeShape() { }, QrDataModuleShape: function QrDataModuleShape() { }, QrEyeStyle: function QrEyeStyle() { }, QrDataModuleStyle: function QrDataModuleStyle() { }, _StartWithStreamSink: function _StartWithStreamSink(t0, t1) { this._startValue = t0; this._isFirstEventAdded = false; this.$ti = t1; }, _StartWithStreamSink_onListen_closure: function _StartWithStreamSink_onListen_closure(t0, t1) { this.$this = t0; this.sink = t1; }, StartWithStreamTransformer: function StartWithStreamTransformer(t0, t1) { this.startValue = t0; this.$ti = t1; }, ErrorAndStackTrace: function ErrorAndStackTrace(t0, t1) { this.error = t0; this.stackTrace = t1; }, SourceSpanFormatException$: function(message, span, source) { return new G.SourceSpanFormatException(source, message, span); }, SourceSpanException: function SourceSpanException() { }, SourceSpanFormatException: function SourceSpanFormatException(t0, t1, t2) { this.source = t0; this._span_exception$_message = t1; this._span = t2; }, _synthesiseDownButtons: function(buttons, kind) { switch (kind) { case C.PointerDeviceKind_1: return buttons; case C.PointerDeviceKind_0: case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: return (buttons | 1) >>> 0; case C.PointerDeviceKind_4: return buttons === 0 ? 1 : buttons; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, PointerEventConverter_expand: function($async$data, $async$devicePixelRatio) { return P._makeSyncStarIterable(function() { var data = $async$data, devicePixelRatio = $async$devicePixelRatio; var $async$goto = 0, $async$handler = 1, $async$currentError, t1, _i, datum, position, delta, radiusMinor, radiusMajor, radiusMin, radiusMax, timeStamp, kind, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11; return function $async$PointerEventConverter_expand($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = data.length, _i = 0; case 2: // for condition if (!(_i < data.length)) { // goto after for $async$goto = 4; break; } datum = data[_i]; position = new P.Offset(datum.physicalX / devicePixelRatio, datum.physicalY / devicePixelRatio); delta = new P.Offset(datum.physicalDeltaX / devicePixelRatio, datum.physicalDeltaY / devicePixelRatio); radiusMinor = datum.radiusMinor / devicePixelRatio; radiusMajor = datum.radiusMajor / devicePixelRatio; radiusMin = datum.radiusMin / devicePixelRatio; radiusMax = datum.radiusMax / devicePixelRatio; timeStamp = datum.timeStamp; kind = datum.kind; t2 = datum.signalKind; $async$goto = t2 == null || t2 === C.PointerSignalKind_0 ? 5 : 7; break; case 5: // then case 8: // switch switch (datum.change) { case C.PointerChange_1: // goto case $async$goto = 10; break; case C.PointerChange_3: // goto case $async$goto = 11; break; case C.PointerChange_4: // goto case $async$goto = 12; break; case C.PointerChange_5: // goto case $async$goto = 13; break; case C.PointerChange_6: // goto case $async$goto = 14; break; case C.PointerChange_0: // goto case $async$goto = 15; break; case C.PointerChange_2: // goto case $async$goto = 16; break; default: // goto default $async$goto = 17; break; } break; case 10: // case t2 = datum.device; t3 = datum.pressureMin; t4 = datum.pressureMax; $async$goto = 18; return F.PointerAddedEvent$(t2, datum.distance, datum.distanceMax, 0, kind, false, datum.orientation, position, t4, t3, radiusMax, radiusMin, datum.tilt, timeStamp); case 18: // after yield // goto after switch $async$goto = 9; break; case 11: // case t2 = datum.device; t3 = datum.buttons; t4 = datum.pressureMin; t5 = datum.pressureMax; t6 = datum.distance; t7 = datum.distanceMax; t8 = datum.size; t9 = datum.orientation; t10 = datum.tilt; $async$goto = 19; return F.PointerHoverEvent$(t3, delta, t2, t6, t7, 0, kind, false, t9, position, t5, t4, radiusMajor, radiusMax, radiusMin, radiusMinor, t8, datum.synthesized, t10, timeStamp); case 19: // after yield // goto after switch $async$goto = 9; break; case 12: // case t2 = datum.pointerIdentifier; t3 = datum.device; t4 = G._synthesiseDownButtons(datum.buttons, kind); t5 = datum.pressure; t6 = datum.pressureMin; t7 = datum.pressureMax; t8 = datum.distanceMax; t9 = datum.size; $async$goto = 20; return F.PointerDownEvent$(t4, t3, t8, 0, kind, false, datum.orientation, t2, position, t5, t7, t6, radiusMajor, radiusMax, radiusMin, radiusMinor, t9, datum.tilt, timeStamp); case 20: // after yield // goto after switch $async$goto = 9; break; case 13: // case t2 = datum.pointerIdentifier; t3 = datum.device; t4 = G._synthesiseDownButtons(datum.buttons, kind); t5 = datum.pressure; t6 = datum.pressureMin; t7 = datum.pressureMax; t8 = datum.distanceMax; t9 = datum.size; t10 = datum.orientation; t11 = datum.tilt; $async$goto = 21; return F.PointerMoveEvent$(t4, delta, t3, t8, 0, kind, false, t10, datum.platformData, t2, position, t5, t7, t6, radiusMajor, radiusMax, radiusMin, radiusMinor, t9, datum.synthesized, t11, timeStamp); case 21: // after yield // goto after switch $async$goto = 9; break; case 14: // case t2 = datum.pointerIdentifier; t3 = datum.device; t4 = datum.buttons; t5 = datum.pressure; t6 = datum.pressureMin; t7 = datum.pressureMax; t8 = datum.distance; t9 = datum.distanceMax; t10 = datum.size; $async$goto = 22; return F.PointerUpEvent$(t4, t3, t8, t9, 0, kind, false, datum.orientation, t2, position, t5, t7, t6, radiusMajor, radiusMax, radiusMin, radiusMinor, t10, datum.tilt, timeStamp); case 22: // after yield // goto after switch $async$goto = 9; break; case 15: // case t2 = datum.pointerIdentifier; t3 = datum.device; t4 = datum.buttons; t5 = datum.pressureMin; t6 = datum.pressureMax; t7 = datum.distance; t8 = datum.distanceMax; t9 = datum.size; $async$goto = 23; return F.PointerCancelEvent$(t4, t3, t7, t8, 0, kind, false, datum.orientation, t2, position, t6, t5, radiusMajor, radiusMax, radiusMin, radiusMinor, t9, datum.tilt, timeStamp); case 23: // after yield // goto after switch $async$goto = 9; break; case 16: // case t2 = datum.device; t3 = datum.pressureMin; t4 = datum.pressureMax; $async$goto = 24; return F.PointerRemovedEvent$(t2, datum.distanceMax, 0, kind, false, position, t4, t3, radiusMax, radiusMin, timeStamp); case 24: // after yield // goto after switch $async$goto = 9; break; case 17: // default throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); case 9: // after switch // goto join $async$goto = 6; break; case 7: // else t2.toString; case 25: // switch switch (t2) { case C.PointerSignalKind_1: // goto case $async$goto = 27; break; case C.PointerSignalKind_0: // goto case $async$goto = 28; break; case C.PointerSignalKind_2: // goto case $async$goto = 29; break; default: // goto default $async$goto = 30; break; } break; case 27: // case t2 = datum.scrollDeltaX; t3 = datum.scrollDeltaY; $async$goto = 31; return F.PointerScrollEvent$(datum.device, 0, kind, position, new P.Offset(t2 / devicePixelRatio, t3 / devicePixelRatio), timeStamp); case 31: // after yield // goto after switch $async$goto = 26; break; case 28: // case // goto after switch $async$goto = 26; break; case 29: // case // goto after switch $async$goto = 26; break; case 30: // default throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); case 26: // after switch case 6: // join case 3: // for update data.length === t1 || (0, H.throwConcurrentModificationError)(data), ++_i; // goto for condition $async$goto = 2; break; case 4: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.PointerEvent); }, SerializationUtils_computeDecode: function(list) { var t1 = J.getInterceptor$asx(list); return $.$get$serializers().deserializeWith$1$2(t1.$index(list, 0), t1.$index(list, 1), type$.dynamic); } }, L = { BarRenderer_BarRenderer: function(config, rendererId, $D) { var _null = null; if (config == null) config = T.BarRendererConfig$(_null, _null, $D); return new L.BarRenderer(config.stackedBarPaddingPx, config.barRendererDecorator, config, P.LinkedHashMap_LinkedHashMap(_null, _null, type$.String, $D._eval$1("List>")), H.setRuntimeTypeInfo([], type$.JSArray_String), P.LinkedHashMap_LinkedHashMap(_null, _null, $D, type$.Set_String), X.LayoutViewConfig$(config.layoutPaintOrder, C.LayoutPosition_8, 0), "bar", config.symbolRenderer, $D._eval$1("BarRenderer<0>")); }, BarRendererElement$clone: function(other, $D) { var t1 = new L.BarRendererElement($D._eval$1("BarRendererElement<0>")); t1.BaseBarRendererElement$clone$1(other); t1.series = other.series; t1.bounds = other.bounds; t1.roundPx = other.roundPx; t1.index = other.index; t1._datum = other._datum; return t1; }, BarRenderer: function BarRenderer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._stackedBarPaddingPx = t0; _.barRendererDecorator = t1; _.config = t2; _._lastVertical = true; _._barStackMap = t3; _._currentKeys = t4; _._currentGroupsStackKeys = t5; _._prevDomainAxis = null; _.__BaseCartesianRenderer_chart = $; _.layoutConfig = t6; _.rendererId = t7; _.symbolRenderer = t8; _.graphicsFactory = _._drawAreaBounds = null; _.$ti = t9; }, BarRendererElement: function BarRendererElement(t0) { var _ = this; _.measureIsNegative = _.measureIsNull = _.strokeWidthPx = _.measureOffsetPlusMeasure = _.measureOffset = _.measureAxisPosition = _.fillPattern = _.fillColor = _.dashPattern = _.cumulativeTotal = _.color = _.barStackIndex = _._datum = _.index = _.roundPx = _.bounds = _.series = null; _.$ti = t0; }, AnimatedBar: function AnimatedBar(t0, t1, t2, t3, t4) { var _ = this; _.key = t0; _.datum = t1; _.series = t2; _.domainValue = t3; _._currentBar = _._targetBar = _._previousBar = null; _.animatingOut = false; _.$ti = t4; }, GridlineRendererSpec$: function(labelRotation, labelStyle, lineStyle, $D) { var _null = null; return new L.GridlineRendererSpec(lineStyle, _null, labelStyle, _null, _null, _null, _null, _null, _null, _null, labelRotation, _null, _null, $D._eval$1("GridlineRendererSpec<0>")); }, GridlineRendererSpec: function GridlineRendererSpec(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.lineStyle = t0; _.tickLengthPx = t1; _.labelStyle = t2; _.labelAnchor = t3; _.labelJustification = t4; _.labelOffsetFromAxisPx = t5; _.labelCollisionOffsetFromAxisPx = t6; _.labelOffsetFromTickPx = t7; _.labelCollisionOffsetFromTickPx = t8; _.minimumPaddingBetweenLabelsPx = t9; _.labelRotation = t10; _.labelCollisionRotation = t11; _.axisLineStyle = t12; _.$ti = t13; }, GridlineTickDrawStrategy: function GridlineTickDrawStrategy(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.tickLength = t0; _.lineStyle = t1; _.chartContext = t2; _.graphicsFactory = t3; _.axisLineStyle = t4; _.labelStyle = t5; _.tickLabelJustification = t6; _._defaultTickLabelAnchor = t7; _._labelDefaultOffsetFromAxisPx = t8; _._labelCollisionOffsetFromAxisPx = t9; _._labelDefaultOffsetFromTickPx = t10; _._labelCollisionOffsetFromTickPx = t11; _._labelDefaultRotation = t12; _._labelCollisionRotation = t13; _._rotateOnCollision = t14; _.minimumPaddingBetweenLabelsPx = t15; _.$ti = t16; }, NumericExtents: function NumericExtents(t0, t1) { this.min = t0; this.max = t1; }, DateTimeAxisSpec$: function(renderSpec) { var _null = null; return new L.DateTimeAxisSpec(_null, renderSpec, _null, _null, _null); }, DateTimeAxisSpec: function DateTimeAxisSpec(t0, t1, t2, t3, t4) { var _ = this; _.showAxisLine = t0; _.renderSpec = t1; _.tickProviderSpec = t2; _.tickFormatterSpec = t3; _.scaleSpec = t4; }, TimeRangeTickProviderImpl: function TimeRangeTickProviderImpl(t0) { this.timeStepper = t0; }, TimeRangeTickProviderImpl_getTicks__currentTicks_set: function TimeRangeTickProviderImpl_getTicks__currentTicks_set(t0) { this._box_0 = t0; }, TimeRangeTickProviderImpl_getTicks__currentTicks_get: function TimeRangeTickProviderImpl_getTicks__currentTicks_get(t0) { this._box_0 = t0; }, OrdinalCartesianChart: function OrdinalCartesianChart() { }, CartesianChart: function CartesianChart() { }, CartesianChart_init_closure: function CartesianChart_init_closure(t0, t1) { this.context = t0; this.graphicsFactory = t1; }, CartesianChart_makeSeries_closure: function CartesianChart_makeSeries_closure() { }, CartesianChart_preprocessSeries_closure: function CartesianChart_preprocessSeries_closure(t0) { this.$this = t0; }, CartesianChart_preprocessSeries_closure0: function CartesianChart_preprocessSeries_closure0() { }, CartesianChart_preprocessSeries_closure1: function CartesianChart_preprocessSeries_closure1(t0, t1) { this.$this = t0; this.reverseAxisDirection = t1; }, CartesianChart_preprocessSeries_closure2: function CartesianChart_preprocessSeries_closure2(t0) { this.$this = t0; }, CartesianChart_onSkipLayout_closure: function CartesianChart_onSkipLayout_closure() { }, DatumDetails$: function(areaColor, bounds, chartPosition, chartPositionLower, chartPositionUpper, color, dashPattern, datum, domain, domainDistance, domainFormatter, domainLowerBound, domainUpperBound, fillColor, fillPattern, index, measure, measureDistance, measureFormatter, measureLowerBound, measureOffset, measureUpperBound, radiusPx, rawMeasure, rawMeasureLowerBound, rawMeasureUpperBound, relativeDistance, series, strokeWidthPx, symbolRenderer, $D) { return new L.DatumDetails(datum, index, domain, domainLowerBound, domainUpperBound, measure, measureLowerBound, measureUpperBound, measureOffset, rawMeasure, rawMeasureLowerBound, rawMeasureUpperBound, series, color, fillColor, fillPattern, areaColor, dashPattern, chartPosition, chartPositionLower, chartPositionUpper, bounds, domainDistance, measureDistance, relativeDistance, radiusPx, symbolRenderer, strokeWidthPx, domainFormatter, measureFormatter, $D._eval$1("DatumDetails<0>")); }, DatumDetails_DatumDetails$from: function(other, bounds, chartPosition, chartPositionLower, chartPositionUpper, symbolRenderer, $D) { var t1 = chartPositionLower == null ? other.chartPositionLower : chartPositionLower, t2 = chartPositionUpper == null ? other.chartPositionUpper : chartPositionUpper, t3 = bounds == null ? other.bounds : bounds, t4 = symbolRenderer == null ? other.symbolRenderer : symbolRenderer; return L.DatumDetails$(other.areaColor, t3, chartPosition, t1, t2, other.color, other.dashPattern, other.datum, other.domain, other.domainDistance, other.domainFormatter, other.domainLowerBound, other.domainUpperBound, other.fillColor, other.fillPattern, other.index, other.measure, other.measureDistance, other.measureFormatter, other.measureLowerBound, other.measureOffset, other.measureUpperBound, other.radiusPx, other.rawMeasure, other.rawMeasureLowerBound, other.rawMeasureUpperBound, null, other.series, other.strokeWidthPx, t4, $D); }, DatumDetails: function DatumDetails(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30) { var _ = this; _.datum = t0; _.index = t1; _.domain = t2; _.domainLowerBound = t3; _.domainUpperBound = t4; _.measure = t5; _.measureLowerBound = t6; _.measureUpperBound = t7; _.measureOffset = t8; _.rawMeasure = t9; _.rawMeasureLowerBound = t10; _.rawMeasureUpperBound = t11; _.series = t12; _.color = t13; _.fillColor = t14; _.fillPattern = t15; _.areaColor = t16; _.dashPattern = t17; _.chartPosition = t18; _.chartPositionLower = t19; _.chartPositionUpper = t20; _.bounds = t21; _.domainDistance = t22; _.measureDistance = t23; _.relativeDistance = t24; _.radiusPx = t25; _.symbolRenderer = t26; _.strokeWidthPx = t27; _.domainFormatter = t28; _.measureFormatter = t29; _.$ti = t30; }, TabularLegendLayout_TabularLegendLayout$horizontalFirst: function(cellPadding, desiredMaxColumns) { return new L.TabularLegendLayout(true, -1, -1, cellPadding); }, TabularLegendLayout: function TabularLegendLayout(t0, t1, t2, t3) { var _ = this; _.isHorizontalFirst = t0; _.desiredMaxRows = t1; _.desiredMaxColumns = t2; _.cellPadding = t3; }, TabularLegendLayout_build_closure: function TabularLegendLayout_build_closure(t0) { this.$this = t0; }, TabularLegendLayout__buildTableFromRows_closure: function TabularLegendLayout__buildTableFromRows_closure() { }, TabularLegendLayout__buildTableFromRows_closure0: function TabularLegendLayout__buildTableFromRows_closure0() { }, TabularLegendLayout__buildTableFromRows_closure1: function TabularLegendLayout__buildTableFromRows_closure1(t0) { this.padWidget = t0; }, CartesianChart0: function CartesianChart0() { }, _CupertinoDesktopTextSelectionControls: function _CupertinoDesktopTextSelectionControls() { }, _CupertinoLocalizationsDelegate: function _CupertinoLocalizationsDelegate() { }, DefaultCupertinoLocalizations: function DefaultCupertinoLocalizations() { }, _DesktopTextSelectionControls: function _DesktopTextSelectionControls() { }, InputDecorator$: function(baseStyle, child, decoration, expands, isEmpty, isFocused, isHovering, textAlign, textAlignVertical) { return new L.InputDecorator(decoration, baseStyle, textAlign, textAlignVertical, isFocused, isHovering, expands, isEmpty, child, null); }, InputDecoration$: function(alignLabelWithHint, border, contentPadding, counter, counterStyle, counterText, disabledBorder, enabled, enabledBorder, errorBorder, errorMaxLines, errorStyle, errorText, fillColor, filled, floatingLabelBehavior, focusColor, focusedBorder, focusedErrorBorder, hasFloatingPlaceholder, helperMaxLines, helperStyle, helperText, hintMaxLines, hintStyle, hintText, hintTextDirection, hoverColor, icon, isCollapsed, isDense, labelStyle, labelText, prefix, prefixIcon, prefixIconConstraints, prefixStyle, prefixText, semanticCounterText, suffix, suffixIcon, suffixIconConstraints, suffixStyle, suffixText) { return new L.InputDecoration(icon, labelText, labelStyle, helperText, helperStyle, helperMaxLines, hintText, hintStyle, hintTextDirection, hintMaxLines, errorText, errorStyle, errorMaxLines, true, floatingLabelBehavior, isDense, contentPadding, false, prefixIcon, prefixIconConstraints, prefix, prefixText, prefixStyle, suffixIcon, suffix, suffixText, suffixStyle, suffixIconConstraints, counterText, counter, counterStyle, filled, fillColor, focusColor, hoverColor, errorBorder, focusedBorder, focusedErrorBorder, disabledBorder, enabledBorder, border, enabled, semanticCounterText, alignLabelWithHint); }, _InputBorderGap: function _InputBorderGap(t0) { this._input_decorator$_start = null; this._extent = 0; this.ChangeNotifier__listeners = t0; }, _InputBorderTween: function _InputBorderTween(t0, t1) { this.begin = t0; this.end = t1; }, _InputBorderPainter: function _InputBorderPainter(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.borderAnimation = t0; _.border = t1; _.gapAnimation = t2; _.gap = t3; _.textDirection = t4; _.fillColor = t5; _.hoverColorTween = t6; _.hoverAnimation = t7; _._repaint = t8; }, _BorderContainer: function _BorderContainer(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.border = t0; _.gap = t1; _.gapAnimation = t2; _.fillColor = t3; _.hoverColor = t4; _.isHovering = t5; _.key = t6; }, _BorderContainerState: function _BorderContainerState(t0, t1) { var _ = this; _.___BorderContainerState__hoverColorTween = _.___BorderContainerState__hoverAnimation = _.___BorderContainerState__border = _.___BorderContainerState__borderAnimation = _.___BorderContainerState__hoverColorController = _.___BorderContainerState__controller = $; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _Shaker: function _Shaker(t0, t1, t2) { this.child = t0; this.listenable = t1; this.key = t2; }, _HelperError: function _HelperError(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.textAlign = t0; _.helperText = t1; _.helperStyle = t2; _.helperMaxLines = t3; _.errorText = t4; _.errorStyle = t5; _.errorMaxLines = t6; _.key = t7; }, _HelperErrorState: function _HelperErrorState(t0, t1) { var _ = this; _.___HelperErrorState__controller = $; _._error0 = _._helper = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _HelperErrorState__handleChange_closure: function _HelperErrorState__handleChange_closure() { }, FloatingLabelBehavior: function FloatingLabelBehavior(t0) { this._input_decorator$_name = t0; }, _DecorationSlot: function _DecorationSlot(t0) { this._input_decorator$_name = t0; }, _Decoration: function _Decoration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20) { var _ = this; _.contentPadding = t0; _.isCollapsed = t1; _.floatingLabelHeight = t2; _.floatingLabelProgress = t3; _.border = t4; _.borderGap = t5; _.alignLabelWithHint = t6; _.isDense = t7; _.visualDensity = t8; _.icon = t9; _.input = t10; _.label = t11; _.hint = t12; _.prefix = t13; _.suffix = t14; _.prefixIcon = t15; _.suffixIcon = t16; _.helperError = t17; _.counter = t18; _.container = t19; _.fixTextFieldOutlineLabel = t20; }, _RenderDecorationLayout: function _RenderDecorationLayout(t0, t1, t2, t3, t4, t5) { var _ = this; _.boxToBaseline = t0; _.inputBaseline = t1; _.outlineBaseline = t2; _.subtextBaseline = t3; _.containerHeight = t4; _.subtextHeight = t5; }, _RenderDecoration: function _RenderDecoration(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.children = t0; _._input_decorator$_container = _._counter = _._helperError = _._suffixIcon = _._prefixIcon = _._suffix = _._prefix = _._hint = _._input_decorator$_label = _._input_decorator$_input = _._icon = null; _._input_decorator$_decoration = t1; _._input_decorator$_textDirection = t2; _._input_decorator$_textBaseline = t3; _._textAlignVertical = t4; _._input_decorator$_isFocused = t5; _._expands = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = _._transformLayer = _._labelTransform = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderDecoration_debugDescribeChildren_add: function _RenderDecoration_debugDescribeChildren_add(t0) { this.value = t0; }, _RenderDecoration_performLayout_centerLayout: function _RenderDecoration_performLayout_centerLayout(t0) { this._box_0 = t0; }, _RenderDecoration_performLayout_baselineLayout: function _RenderDecoration_performLayout_baselineLayout(t0, t1) { this._box_0 = t0; this.layout = t1; }, _RenderDecoration_paint_doPaint: function _RenderDecoration_paint_doPaint(t0, t1) { this.context = t0; this.offset = t1; }, _RenderDecoration_hitTestChildren_closure: function _RenderDecoration_hitTestChildren_closure(t0, t1, t2) { this.position = t0; this.offset = t1; this.child = t2; }, _DecorationElement: function _DecorationElement(t0, t1, t2, t3, t4) { var _ = this; _.slotToChild = t0; _._framework$_parent = _._ancestorRenderObjectElement = _._renderObject = null; _._cachedHash = t1; _._slot = null; _.__Element__depth = $; _._widget = t2; _._owner = null; _._lifecycleState = t3; _._debugForgottenChildrenWithGlobalKey = t4; _._dependencies = _._inheritedWidgets = null; _._hadUnsatisfiedDependencies = false; _._dirty = true; _._debugAllowIgnoredCallsToMarkNeedsBuild = _._debugBuiltOnce = _._inDirtyList = false; }, _Decorator: function _Decorator(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.decoration = t0; _.textDirection = t1; _.textBaseline = t2; _.textAlignVertical = t3; _.isFocused = t4; _.expands = t5; _.key = t6; }, InputDecorator: function InputDecorator(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.decoration = t0; _.baseStyle = t1; _.textAlign = t2; _.textAlignVertical = t3; _.isFocused = t4; _.isHovering = t5; _.expands = t6; _.isEmpty = t7; _.child = t8; _.key = t9; }, _InputDecoratorState: function _InputDecoratorState(t0, t1, t2) { var _ = this; _.___InputDecoratorState__shakingLabelController = _.___InputDecoratorState__floatingLabelController = $; _._borderGap = t0; _._effectiveDecoration = null; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _InputDecoratorState__handleChange_closure: function _InputDecoratorState__handleChange_closure() { }, InputDecoration: function InputDecoration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43) { var _ = this; _.icon = t0; _.labelText = t1; _.labelStyle = t2; _.helperText = t3; _.helperStyle = t4; _.helperMaxLines = t5; _.hintText = t6; _.hintStyle = t7; _.hintTextDirection = t8; _.hintMaxLines = t9; _.errorText = t10; _.errorStyle = t11; _.errorMaxLines = t12; _.hasFloatingPlaceholder = t13; _.floatingLabelBehavior = t14; _.isDense = t15; _.contentPadding = t16; _.isCollapsed = t17; _.prefixIcon = t18; _.prefixIconConstraints = t19; _.prefix = t20; _.prefixText = t21; _.prefixStyle = t22; _.suffixIcon = t23; _.suffix = t24; _.suffixText = t25; _.suffixStyle = t26; _.suffixIconConstraints = t27; _.counterText = t28; _.counter = t29; _.counterStyle = t30; _.filled = t31; _.fillColor = t32; _.focusColor = t33; _.hoverColor = t34; _.errorBorder = t35; _.focusedBorder = t36; _.focusedErrorBorder = t37; _.disabledBorder = t38; _.enabledBorder = t39; _.border = t40; _.enabled = t41; _.semanticCounterText = t42; _.alignLabelWithHint = t43; }, InputDecorationTheme: function InputDecorationTheme() { }, _InputDecorationTheme_Object_Diagnosticable: function _InputDecorationTheme_Object_Diagnosticable() { }, __BorderContainerState_State_TickerProviderStateMixin: function __BorderContainerState_State_TickerProviderStateMixin() { }, __HelperErrorState_State_SingleTickerProviderStateMixin: function __HelperErrorState_State_SingleTickerProviderStateMixin() { }, __InputDecoratorState_State_TickerProviderStateMixin: function __InputDecoratorState_State_TickerProviderStateMixin() { }, AssetImage__manifestParser: function(jsonData) { var parsedJson, t1, t2, t3, t4, t5, t6; if (jsonData == null) return new O.SynchronousFuture(null, type$.SynchronousFuture_nullable_Map_of_String_and_List_String); parsedJson = type$.Map_String_dynamic._as(C.C_JsonCodec.decode$1(0, jsonData)); t1 = J.getInterceptor$x(parsedJson); t2 = type$.String; t3 = P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_String); for (t4 = J.get$iterator$ax(t1.get$keys(parsedJson)), t5 = type$.List_dynamic; t4.moveNext$0();) { t6 = t4.get$current(t4); t3.$indexSet(0, t6, P.List_List$from(t5._as(t1.$index(parsedJson, t6)), true, t2)); } return new O.SynchronousFuture(t3, type$.SynchronousFuture_nullable_Map_of_String_and_List_String); }, AssetImage: function AssetImage(t0, t1, t2) { this.assetName = t0; this.bundle = t1; this.$package = t2; }, AssetImage_obtainKey_closure: function AssetImage_obtainKey_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.configuration = t2; _.chosenBundle = t3; }, AssetImage_obtainKey_closure0: function AssetImage_obtainKey_closure0(t0) { this._box_0 = t0; }, MultiFrameImageStreamCompleter$: function(chunkEvents, codec, debugLabel, informationCollector, scale) { var t1 = new L.MultiFrameImageStreamCompleter(scale, informationCollector, H.setRuntimeTypeInfo([], type$.JSArray_ImageStreamListener), H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function)); t1.MultiFrameImageStreamCompleter$5$chunkEvents$codec$debugLabel$informationCollector$scale(chunkEvents, codec, debugLabel, informationCollector, scale); return t1; }, ImageInfo: function ImageInfo(t0, t1, t2) { this.image = t0; this.scale = t1; this.debugLabel = t2; }, ImageStreamListener: function ImageStreamListener(t0, t1, t2) { this.onImage = t0; this.onChunk = t1; this.onError = t2; }, ImageChunkEvent: function ImageChunkEvent(t0, t1) { this.cumulativeBytesLoaded = t0; this.expectedTotalBytes = t1; }, ImageStream: function ImageStream() { this._image_stream$_listeners = this._image_stream$_completer = null; }, ImageStreamCompleterHandle: function ImageStreamCompleterHandle(t0) { this._image_stream$_completer = t0; }, ImageStreamCompleter: function ImageStreamCompleter() { }, ImageStreamCompleter_reportError_closure: function ImageStreamCompleter_reportError_closure() { }, ImageStreamCompleter_reportImageChunkEvent_closure: function ImageStreamCompleter_reportImageChunkEvent_closure() { }, MultiFrameImageStreamCompleter: function MultiFrameImageStreamCompleter(t0, t1, t2, t3) { var _ = this; _._codec = null; _._scale = t0; _._informationCollector = t1; _._nextFrame = null; _.__MultiFrameImageStreamCompleter__shownTimestamp = $; _._frameDuration = null; _._framesEmitted = 0; _._image_stream$_timer = null; _._frameCallbackScheduled = false; _._image_stream$_listeners = t2; _.debugLabel = _._currentError = _._currentImage = null; _._hadAtLeastOneListener = false; _._keepAliveHandles = 0; _._image_stream$_disposed = false; _._onLastListenerRemovedCallbacks = t3; }, MultiFrameImageStreamCompleter_closure: function MultiFrameImageStreamCompleter_closure(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiFrameImageStreamCompleter_closure0: function MultiFrameImageStreamCompleter_closure0(t0, t1) { this.$this = t0; this.informationCollector = t1; }, MultiFrameImageStreamCompleter__handleAppFrame_closure: function MultiFrameImageStreamCompleter__handleAppFrame_closure(t0) { this.$this = t0; }, _ImageChunkEvent_Object_Diagnosticable: function _ImageChunkEvent_Object_Diagnosticable() { }, _ImageStream_Object_Diagnosticable: function _ImageStream_Object_Diagnosticable() { }, _ImageStreamCompleter_Object_Diagnosticable: function _ImageStreamCompleter_Object_Diagnosticable() { }, RenderPerformanceOverlay: function RenderPerformanceOverlay(t0, t1, t2, t3) { var _ = this; _._optionsMask = t0; _._rasterizerThreshold = t1; _._checkerboardRasterCacheImages = t2; _._checkerboardOffscreenLayers = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, AutomaticKeepAlive: function AutomaticKeepAlive(t0, t1) { this.child = t0; this.key = t1; }, _AutomaticKeepAliveState: function _AutomaticKeepAliveState(t0) { var _ = this; _._automatic_keep_alive$_child = _._automatic_keep_alive$_handles = null; _._keepingAlive = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _AutomaticKeepAliveState__addClient_closure: function _AutomaticKeepAliveState__addClient_closure(t0) { this.$this = t0; }, _AutomaticKeepAliveState__getChildElement_closure: function _AutomaticKeepAliveState__getChildElement_closure(t0) { this._box_0 = t0; }, _AutomaticKeepAliveState__createCallback_closure: function _AutomaticKeepAliveState__createCallback_closure(t0, t1) { this.$this = t0; this.handle = t1; }, _AutomaticKeepAliveState__createCallback__closure: function _AutomaticKeepAliveState__createCallback__closure(t0) { this.$this = t0; }, _AutomaticKeepAliveState__createCallback__closure0: function _AutomaticKeepAliveState__createCallback__closure0(t0) { this.$this = t0; }, _AutomaticKeepAliveState__createCallback___closure: function _AutomaticKeepAliveState__createCallback___closure(t0) { this.$this = t0; }, KeepAliveNotification: function KeepAliveNotification(t0) { this.handle = t0; }, KeepAliveHandle: function KeepAliveHandle(t0) { this.ChangeNotifier__listeners = t0; }, AutomaticKeepAliveClientMixin: function AutomaticKeepAliveClientMixin() { }, _NullWidget1: function _NullWidget1(t0) { this.key = t0; }, Focus$: function(autofocus, canRequestFocus, child, debugLabel, descendantsAreFocusable, focusNode, includeSemantics, key, onFocusChange, onKey, skipTraversal) { return new L.Focus(debugLabel, child, onKey, onFocusChange, autofocus, focusNode, skipTraversal, includeSemantics, canRequestFocus, true, key); }, Focus_maybeOf: function(context, scopeOk) { var marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker), node = marker == null ? null : marker.notifier; if (node == null) return null; return node; }, FocusScope$: function(autofocus, child, key, node) { var _null = null; return new L.FocusScope(_null, child, _null, _null, autofocus, node, _null, true, _null, true, key); }, FocusScope_of: function(context) { var t1, marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker); if (marker == null) t1 = null; else { t1 = marker.notifier; t1 = t1 == null ? null : t1.get$nearestScope(); } return t1 == null ? context._owner.focusManager.rootScope : t1; }, _FocusMarker$: function(child, node) { return new L._FocusMarker(node, child, null); }, Focus: function Focus(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.debugLabel = t0; _.child = t1; _.onKey = t2; _.onFocusChange = t3; _.autofocus = t4; _.focusNode = t5; _.skipTraversal = t6; _.includeSemantics = t7; _.canRequestFocus = t8; _.descendantsAreFocusable = t9; _.key = t10; }, _FocusState: function _FocusState(t0) { var _ = this; _._descendantsAreFocusable = _._canRequestFocus = _._hasPrimaryFocus = _._internalNode = null; _._didAutofocus = false; _._widget = _._focusAttachment = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusState__handleFocusChanged_closure: function _FocusState__handleFocusChanged_closure(t0, t1) { this.$this = t0; this.hasPrimaryFocus = t1; }, _FocusState__handleFocusChanged_closure0: function _FocusState__handleFocusChanged_closure0(t0, t1) { this.$this = t0; this.canRequestFocus = t1; }, _FocusState__handleFocusChanged_closure1: function _FocusState__handleFocusChanged_closure1(t0, t1) { this.$this = t0; this.descendantsAreFocusable = t1; }, FocusScope: function FocusScope(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.debugLabel = t0; _.child = t1; _.onKey = t2; _.onFocusChange = t3; _.autofocus = t4; _.focusNode = t5; _.skipTraversal = t6; _.includeSemantics = t7; _.canRequestFocus = t8; _.descendantsAreFocusable = t9; _.key = t10; }, _FocusScopeState: function _FocusScopeState(t0) { var _ = this; _._descendantsAreFocusable = _._canRequestFocus = _._hasPrimaryFocus = _._internalNode = null; _._didAutofocus = false; _._widget = _._focusAttachment = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _FocusMarker: function _FocusMarker(t0, t1, t2) { this.notifier = t0; this.child = t1; this.key = t2; }, Icon$: function(icon, color, size) { return new L.Icon(icon, size, color, null); }, Icon: function Icon(t0, t1, t2, t3) { var _ = this; _.icon = t0; _.size = t1; _.color = t2; _.key = t3; }, _loadAll: function(locale, allDelegates) { var types, delegates, _i, delegate, t3, t4, inputValue, futureValue, _box_1 = {}, t1 = type$.Type, t2 = type$.dynamic, output = P.LinkedHashMap_LinkedHashMap$_empty(t1, t2); _box_1.pendingList = null; types = P.LinkedHashSet_LinkedHashSet$_empty(t1); delegates = H.setRuntimeTypeInfo([], type$.JSArray_LocalizationsDelegate_dynamic); for (t1 = allDelegates.length, _i = 0; _i < allDelegates.length; allDelegates.length === t1 || (0, H.throwConcurrentModificationError)(allDelegates), ++_i) { delegate = allDelegates[_i]; delegate.toString; t3 = H.instanceType(delegate)._eval$1("LocalizationsDelegate.T"); if (!types.contains$1(0, H.createRuntimeType(t3)) && delegate.isSupported$1(locale)) { types.add$1(0, H.createRuntimeType(t3)); delegates.push(delegate); } } for (t1 = delegates.length, t3 = type$.JSArray__Pending, _i = 0; _i < delegates.length; delegates.length === t1 || (0, H.throwConcurrentModificationError)(delegates), ++_i) { t4 = {}; delegate = delegates[_i]; inputValue = delegate.load$1(0, locale); t4.completedValue = null; futureValue = inputValue.then$1$1(0, new L._loadAll_closure(t4), t2); if (t4.completedValue != null) output.$indexSet(0, H.createRuntimeType(H._instanceType(delegate)._eval$1("LocalizationsDelegate.T")), t4.completedValue); else { t4 = _box_1.pendingList; if (t4 == null) t4 = _box_1.pendingList = H.setRuntimeTypeInfo([], t3); t4.push(new L._Pending(delegate, futureValue)); } } t1 = _box_1.pendingList; if (t1 == null) return new O.SynchronousFuture(output, type$.SynchronousFuture_Map_Type_dynamic); return P.Future_wait(new H.MappedListIterable(t1, new L._loadAll_closure0(), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Future<@>>")), t2).then$1$1(0, new L._loadAll_closure1(_box_1, output), type$.Map_Type_dynamic); }, Localizations_Localizations$override: function(child, context, locale) { var mergedDelegates = P.List_List$from(context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope).localizationsState._widget.delegates, true, type$.LocalizationsDelegate_dynamic); return new L.Localizations(locale, mergedDelegates, child, null); }, Localizations_maybeLocaleOf: function(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope); return scope == null ? null : scope.localizationsState._localizations$_locale; }, Localizations_of: function(context, type, $T) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._LocalizationsScope); return scope == null ? null : $T._eval$1("0?")._as(J.$index$asx(scope.localizationsState._typeToResources, type)); }, _Pending: function _Pending(t0, t1) { this.delegate = t0; this.futureValue = t1; }, _loadAll_closure: function _loadAll_closure(t0) { this._box_0 = t0; }, _loadAll_closure0: function _loadAll_closure0() { }, _loadAll_closure1: function _loadAll_closure1(t0, t1) { this._box_1 = t0; this.output = t1; }, LocalizationsDelegate: function LocalizationsDelegate() { }, _WidgetsLocalizationsDelegate: function _WidgetsLocalizationsDelegate() { }, DefaultWidgetsLocalizations: function DefaultWidgetsLocalizations() { }, _LocalizationsScope: function _LocalizationsScope(t0, t1, t2, t3) { var _ = this; _.localizationsState = t0; _.typeToResources = t1; _.child = t2; _.key = t3; }, Localizations: function Localizations(t0, t1, t2, t3) { var _ = this; _.locale = t0; _.delegates = t1; _.child = t2; _.key = t3; }, _LocalizationsState: function _LocalizationsState(t0, t1, t2) { var _ = this; _._localizedResourcesScopeKey = t0; _._typeToResources = t1; _._widget = _._localizations$_locale = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _LocalizationsState_load_closure: function _LocalizationsState_load_closure(t0) { this._box_0 = t0; }, _LocalizationsState_load_closure0: function _LocalizationsState_load_closure0(t0, t1) { this.$this = t0; this.locale = t1; }, _LocalizationsState_load__closure: function _LocalizationsState_load__closure(t0, t1, t2) { this.$this = t0; this.value = t1; this.locale = t2; }, GlowingOverscrollIndicator$: function(axisDirection, child, color) { return new L.GlowingOverscrollIndicator(axisDirection, color, child, null); }, _GlowController$: function(axis, color, vsync) { var decelerator, _null = null, t1 = type$.Tween_double, t2 = new R.Tween(0, 0, t1), t3 = new R.Tween(0, 0, t1), t4 = new L._GlowController(C._GlowState_0, t2, t3, 0.5, 0.5, color, axis, new P.LinkedList(type$.LinkedList__ListenerEntry)), t5 = G.AnimationController$(_null, _null, 0, _null, 1, _null, vsync); t5.addStatusListener$1(t4.get$_changePhase()); if (t4.___GlowController__glowController === $) t4.___GlowController__glowController = t5; else H.throwExpression(H.LateError$fieldAI("_glowController")); decelerator = S.CurvedAnimation$(C.C__DecelerateCurve, t4.get$_glowController(), _null); decelerator.parent.addListener$1(0, t4.get$notifyListeners()); type$.Animation_double._as(decelerator); if (t4.___GlowController__glowOpacity === $) t4.___GlowController__glowOpacity = new R._AnimatedEvaluation(decelerator, t2, t1._eval$1("_AnimatedEvaluation")); else H.throwExpression(H.LateError$fieldAI("_glowOpacity")); if (t4.___GlowController__glowSize === $) t4.___GlowController__glowSize = new R._AnimatedEvaluation(decelerator, t3, t1._eval$1("_AnimatedEvaluation")); else H.throwExpression(H.LateError$fieldAI("_glowSize")); t1 = vsync.createTicker$1(t4.get$_tickDisplacement()); if (t4.___GlowController__displacementTicker === $) t4.___GlowController__displacementTicker = t1; else H.throwExpression(H.LateError$fieldAI("_displacementTicker")); return t4; }, GlowingOverscrollIndicator: function GlowingOverscrollIndicator(t0, t1, t2, t3) { var _ = this; _.axisDirection = t0; _.color = t1; _.child = t2; _.key = t3; }, _GlowingOverscrollIndicatorState: function _GlowingOverscrollIndicatorState(t0, t1, t2) { var _ = this; _._lastNotificationType = _._leadingAndTrailingListener = _._trailingController = _._leadingController = null; _._accepted = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _GlowState: function _GlowState(t0) { this._overscroll_indicator$_name = t0; }, _GlowController: function _GlowController(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._overscroll_indicator$_state = t0; _.___GlowController__glowController = $; _._pullRecedeTimer = null; _._paintOffsetScrollPixels = _._overscroll_indicator$_paintOffset = 0; _._glowOpacityTween = t1; _.___GlowController__glowOpacity = $; _._glowSizeTween = t2; _.___GlowController__displacementTicker = _.___GlowController__glowSize = $; _._displacementTickerLastElapsed = null; _._displacementTarget = t3; _._displacement = t4; _._pullDistance = 0; _._overscroll_indicator$_color = t5; _._axis = t6; _.ChangeNotifier__listeners = t7; }, _GlowController_pull_closure: function _GlowController_pull_closure(t0) { this.$this = t0; }, _GlowingOverscrollIndicatorPainter: function _GlowingOverscrollIndicatorPainter(t0, t1, t2, t3) { var _ = this; _.leadingController = t0; _.trailingController = t1; _.axisDirection = t2; _._repaint = t3; }, OverscrollIndicatorNotification: function OverscrollIndicatorNotification(t0, t1) { this.leading = t0; this._accepted = true; this.ViewportNotificationMixin__depth = t1; }, _OverscrollIndicatorNotification_Notification_ViewportNotificationMixin: function _OverscrollIndicatorNotification_Notification_ViewportNotificationMixin() { }, __GlowingOverscrollIndicatorState_State_TickerProviderStateMixin: function __GlowingOverscrollIndicatorState_State_TickerProviderStateMixin() { }, PerformanceOverlay: function PerformanceOverlay(t0, t1, t2, t3) { var _ = this; _.optionsMask = t0; _.checkerboardRasterCacheImages = t1; _.checkerboardOffscreenLayers = t2; _.key = t3; }, BouncingScrollPhysics__applyFriction: function(extentOutside, absDelta, gamma) { var deltaToLimit, total; if (extentOutside > 0) { deltaToLimit = extentOutside / gamma; if (absDelta < deltaToLimit) return absDelta * gamma; total = 0 + extentOutside; absDelta -= deltaToLimit; } else total = 0; return total + absDelta; }, ScrollPhysics: function ScrollPhysics(t0) { this.parent = t0; }, RangeMaintainingScrollPhysics: function RangeMaintainingScrollPhysics(t0) { this.parent = t0; }, BouncingScrollPhysics: function BouncingScrollPhysics(t0) { this.parent = t0; }, ClampingScrollPhysics: function ClampingScrollPhysics(t0) { this.parent = t0; }, AlwaysScrollableScrollPhysics: function AlwaysScrollableScrollPhysics(t0) { this.parent = t0; }, NeverScrollableScrollPhysics: function NeverScrollableScrollPhysics(t0) { this.parent = t0; }, DefaultTextStyle$: function(child, key, maxLines, overflow, softWrap, style, textAlign, textHeightBehavior, textWidthBasis) { return new L.DefaultTextStyle(style, textAlign, softWrap, overflow, maxLines, textWidthBasis, textHeightBehavior, child, key); }, DefaultTextHeightBehavior_of: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextHeightBehavior); return t1 == null ? null : t1.get$textHeightBehavior(t1); }, Text$: function(data, key, maxLines, overflow, semanticsLabel, softWrap, style, textAlign, textDirection, textScaleFactor) { return new L.Text(data, style, textAlign, textDirection, softWrap, overflow, textScaleFactor, maxLines, semanticsLabel, key); }, DefaultTextStyle: function DefaultTextStyle(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.style = t0; _.textAlign = t1; _.softWrap = t2; _.overflow = t3; _.maxLines = t4; _.textWidthBasis = t5; _.textHeightBehavior = t6; _.child = t7; _.key = t8; }, _NullWidget2: function _NullWidget2(t0) { this.key = t0; }, Text: function Text(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.data = t0; _.style = t1; _.textAlign = t2; _.textDirection = t3; _.softWrap = t4; _.overflow = t5; _.textScaleFactor = t6; _.maxLines = t7; _.semanticsLabel = t8; _.key = t9; }, Visibility: function Visibility(t0, t1, t2) { this.child = t0; this.visible = t1; this.key = t2; }, loadDateIntlDataIfNotLoaded: function() { if (!$._dateIntlDataInitialized) { var t1 = type$.String; C.Map_2zqtW.cast$2$0(0, t1, type$.Map_String_dynamic).forEach$1(0, new L.loadDateIntlDataIfNotLoaded_closure(P.LinkedHashSet_LinkedHashSet$_empty(t1))); $._dateIntlDataInitialized = true; } }, loadDateIntlDataIfNotLoaded_closure: function loadDateIntlDataIfNotLoaded_closure(t0) { this.initializedLocales = t0; }, TypeAheadFormField$: function(animationStart, autoFlipDirection, debounceDuration, initialValue, itemBuilder, key, noItemsFoundBuilder, onSuggestionSelected, suggestionsBoxDecoration, suggestionsCallback, textFieldConfiguration, $T) { var _null = null, t1 = textFieldConfiguration.controller; if (t1 != null) t1 = t1._change_notifier$_value.text; else t1 = initialValue == null ? "" : initialValue; return new L.TypeAheadFormField(textFieldConfiguration, _null, _null, new L.TypeAheadFormField_closure(false, _null, _null, noItemsFoundBuilder, _null, debounceDuration, suggestionsBoxDecoration, _null, textFieldConfiguration, 5, onSuggestionSelected, itemBuilder, suggestionsCallback, animationStart, C.Duration_500000, C.AxisDirection_2, false, false, false, true, true, false, true, $T), t1, true, C.AutovalidateMode_0, key, $T._eval$1("TypeAheadFormField<0>")); }, TextFieldConfiguration$: function(autocorrect, autofocus, controller, cursorColor, cursorRadius, cursorWidth, decoration, enableInteractiveSelection, enabled, focusNode, inputFormatters, keyboardAppearance, keyboardType, maxLength, maxLengthEnforced, maxLines, minLines, obscureText, onChanged, onEditingComplete, onSubmitted, onTap, scrollPadding, style, textAlign, textCapitalization, textDirection, textInputAction) { return new L.TextFieldConfiguration(decoration, controller, focusNode, style, textAlign, textDirection, true, keyboardType, false, inputFormatters, true, maxLines, minLines, maxLength, true, false, onChanged, onSubmitted, cursorColor, cursorRadius, cursorWidth, keyboardAppearance, onEditingComplete, onTap, scrollPadding, textCapitalization, textInputAction, true); }, TypeAheadFormField: function TypeAheadFormField(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.textFieldConfiguration = t0; _.onSaved = t1; _.validator = t2; _.builder = t3; _.initialValue = t4; _.enabled = t5; _.autovalidateMode = t6; _.key = t7; _.$ti = t8; }, TypeAheadFormField_closure: function TypeAheadFormField_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23) { var _ = this; _.getImmediateSuggestions = t0; _.transitionBuilder = t1; _.errorBuilder = t2; _.noItemsFoundBuilder = t3; _.loadingBuilder = t4; _.debounceDuration = t5; _.suggestionsBoxDecoration = t6; _.suggestionsBoxController = t7; _.textFieldConfiguration = t8; _.suggestionsBoxVerticalOffset = t9; _.onSuggestionSelected = t10; _.itemBuilder = t11; _.suggestionsCallback = t12; _.animationStart = t13; _.animationDuration = t14; _.direction = t15; _.hideOnLoading = t16; _.hideOnEmpty = t17; _.hideOnError = t18; _.hideSuggestionsOnKeyboardHide = t19; _.keepSuggestionsOnLoading = t20; _.keepSuggestionsOnSuggestionSelected = t21; _.autoFlipDirection = t22; _.T = t23; }, TypeAheadFormField__closure: function TypeAheadFormField__closure(t0, t1) { this.state = t0; this.textFieldConfiguration = t1; }, _TypeAheadFormFieldState: function _TypeAheadFormFieldState(t0, t1) { var _ = this; _._errorText = _._form$_value = _._flutter_typeahead$_controller = null; _._hasInteractedByUser = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; _.$ti = t1; }, TypeAheadField: function TypeAheadField(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.suggestionsCallback = t0; _.onSuggestionSelected = t1; _.itemBuilder = t2; _.suggestionsBoxDecoration = t3; _.suggestionsBoxController = t4; _.debounceDuration = t5; _.loadingBuilder = t6; _.noItemsFoundBuilder = t7; _.errorBuilder = t8; _.transitionBuilder = t9; _.animationDuration = t10; _.direction = t11; _.animationStart = t12; _.textFieldConfiguration = t13; _.suggestionsBoxVerticalOffset = t14; _.getImmediateSuggestions = t15; _.hideOnLoading = t16; _.hideOnEmpty = t17; _.hideOnError = t18; _.hideSuggestionsOnKeyboardHide = t19; _.keepSuggestionsOnLoading = t20; _.keepSuggestionsOnSuggestionSelected = t21; _.autoFlipDirection = t22; _.key = t23; _.$ti = t24; }, _TypeAheadFieldState: function _TypeAheadFieldState(t0, t1, t2, t3) { var _ = this; _._focusNodeListener = _._suggestionsBox = _._textEditingController = _._flutter_typeahead$_focusNode = null; _._layerLink = t0; _._flutter_typeahead$_scrollPosition = _._resizeOnScrollTimer = null; _._keyboardVisibility = t1; _._widget = _._keyboardVisibilitySubscription = null; _._debugLifecycleState = t2; _._framework$_element = null; _.$ti = t3; }, _TypeAheadFieldState_initState_closure: function _TypeAheadFieldState_initState_closure(t0) { this.$this = t0; }, _TypeAheadFieldState_initState_closure0: function _TypeAheadFieldState_initState_closure0(t0) { this.$this = t0; }, _TypeAheadFieldState_initState_closure1: function _TypeAheadFieldState_initState_closure1(t0) { this.$this = t0; }, _TypeAheadFieldState__scrollResizeListener_closure: function _TypeAheadFieldState__scrollResizeListener_closure(t0) { this.$this = t0; }, _TypeAheadFieldState__initOverlayEntry_closure: function _TypeAheadFieldState__initOverlayEntry_closure(t0) { this.$this = t0; }, _TypeAheadFieldState__initOverlayEntry__closure: function _TypeAheadFieldState__initOverlayEntry__closure(t0) { this.$this = t0; }, _SuggestionsList: function _SuggestionsList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19) { var _ = this; _.suggestionsBox = t0; _.controller = t1; _.getImmediateSuggestions = t2; _.onSuggestionSelected = t3; _.suggestionsCallback = t4; _.itemBuilder = t5; _.decoration = t6; _.debounceDuration = t7; _.loadingBuilder = t8; _.noItemsFoundBuilder = t9; _.errorBuilder = t10; _.transitionBuilder = t11; _.animationDuration = t12; _.animationStart = t13; _.hideOnLoading = t14; _.hideOnEmpty = t15; _.hideOnError = t16; _.keepSuggestionsOnLoading = t17; _.key = t18; _.$ti = t19; }, _SuggestionsListState: function _SuggestionsListState(t0, t1, t2) { var _ = this; _._flutter_typeahead$_activeCallbackIdentity = _._lastTextValue = _._flutter_typeahead$_animationController = _._flutter_typeahead$_error = _._isQueued = _._flutter_typeahead$_isLoading = _._debounceTimer = _._controllerListener = _._suggestions = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; _.$ti = t2; }, _SuggestionsListState_initState_closure: function _SuggestionsListState_initState_closure(t0) { this.$this = t0; }, _SuggestionsListState_initState__closure: function _SuggestionsListState_initState__closure(t0) { this.$this = t0; }, _SuggestionsListState__getSuggestions_closure: function _SuggestionsListState__getSuggestions_closure(t0) { this.$this = t0; }, _SuggestionsListState__getSuggestions_closure0: function _SuggestionsListState__getSuggestions_closure0(t0, t1) { this._box_0 = t0; this.$this = t1; }, _SuggestionsListState_createSuggestionsWidget_closure: function _SuggestionsListState_createSuggestionsWidget_closure(t0) { this.$this = t0; }, _SuggestionsListState_createSuggestionsWidget__closure: function _SuggestionsListState_createSuggestionsWidget__closure(t0, t1) { this.$this = t0; this.suggestion = t1; }, SuggestionsBoxDecoration: function SuggestionsBoxDecoration(t0) { this.constraints = t0; }, TextFieldConfiguration: function TextFieldConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27) { var _ = this; _.decoration = t0; _.controller = t1; _.focusNode = t2; _.style = t3; _.textAlign = t4; _.textDirection = t5; _.enabled = t6; _.keyboardType = t7; _.autofocus = t8; _.inputFormatters = t9; _.autocorrect = t10; _.maxLines = t11; _.minLines = t12; _.maxLength = t13; _.maxLengthEnforced = t14; _.obscureText = t15; _.onChanged = t16; _.onSubmitted = t17; _.cursorColor = t18; _.cursorRadius = t19; _.cursorWidth = t20; _.keyboardAppearance = t21; _.onEditingComplete = t22; _.onTap = t23; _.scrollPadding = t24; _.textCapitalization = t25; _.textInputAction = t26; _.enableInteractiveSelection = t27; }, _SuggestionsBox: function _SuggestionsBox(t0, t1, t2, t3) { var _ = this; _.context = t0; _.desiredDirection = t1; _.autoFlipDirection = t2; _._overlayEntry = null; _.direction = t3; _.isOpened = false; _.widgetMounted = true; _.maxHeight = 300; _.textBoxHeight = _.textBoxWidth = 100; _.directionUpOffset = null; }, _SuggestionsBox__findRootMediaQuery_closure: function _SuggestionsBox__findRootMediaQuery_closure(t0) { this._box_0 = t0; }, __SuggestionsListState_State_SingleTickerProviderStateMixin: function __SuggestionsListState_State_SingleTickerProviderStateMixin() { }, __TypeAheadFieldState_State_WidgetsBindingObserver: function __TypeAheadFieldState_State_WidgetsBindingObserver() { }, JsUrlStrategy0: function JsUrlStrategy0() { }, inject: function(url) { var allLibraries, t1 = new P._Future($.Zone__current, type$._Future_void); self.gapiOnloadCallback = P.allowInterop(new L.inject_closure(new P._AsyncCompleter(t1, type$._AsyncCompleter_void))); allLibraries = H.setRuntimeTypeInfo([C.JSString_methods.startsWith$1(url, "data:") ? url : url + "?onload=gapiOnloadCallback"], type$.JSArray_String); C.JSArray_methods.addAll$1(allLibraries, C.List_empty1); return P.Future_wait(H.setRuntimeTypeInfo([B.injectJSLibraries(allLibraries), t1], type$.JSArray_Future_void), type$.void); }, init: function() { var t1 = new P._Future($.Zone__current, type$._Future_void); self.gapi.load("auth2", P.allowInterop(new L.init_closure(new P._AsyncCompleter(t1, type$._AsyncCompleter_void)))); return t1; }, inject_closure: function inject_closure(t0) { this.gapiOnLoad = t0; }, init_closure: function init_closure(t0) { this.gapiLoadCompleter = t0; }, ImagePicker: function ImagePicker() { }, MethodChannelImagePicker: function MethodChannelImagePicker(t0) { this._instanceToken = t0; }, CountryEntity_CountryEntity: function() { return L._$CountryEntity$_("", "", "", "", "", false, false, ""); }, _$CountryEntity$_: function(decimalSeparator, id, iso2, iso3, $name, swapCurrencySymbol, swapPostalCode, thousandSeparator) { return new L._$CountryEntity($name, swapPostalCode, swapCurrencySymbol, thousandSeparator, decimalSeparator, iso2, iso3, id); }, CountryListResponse: function CountryListResponse() { }, CountryItemResponse: function CountryItemResponse() { }, CountryEntity: function CountryEntity() { }, _$CountryListResponseSerializer: function _$CountryListResponseSerializer() { }, _$CountryItemResponseSerializer: function _$CountryItemResponseSerializer() { }, _$CountryEntitySerializer: function _$CountryEntitySerializer() { }, _$CountryListResponse: function _$CountryListResponse(t0) { this.data = t0; this._country_model$__hashCode = null; }, CountryListResponseBuilder: function CountryListResponseBuilder() { this._country_model$_data = this._country_model$_$v = null; }, _$CountryItemResponse: function _$CountryItemResponse(t0) { this.data = t0; this._country_model$__hashCode = null; }, CountryItemResponseBuilder: function CountryItemResponseBuilder() { this._country_model$_data = this._country_model$_$v = null; }, _$CountryEntity: function _$CountryEntity(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.name = t0; _.swapPostalCode = t1; _.swapCurrencySymbol = t2; _.thousandSeparator = t3; _.decimalSeparator = t4; _.iso2 = t5; _.iso3 = t6; _.id = t7; _._country_model$__hashCode = null; }, CountryEntityBuilder: function CountryEntityBuilder() { var _ = this; _._country_model$_id = _._iso3 = _._iso2 = _._country_model$_decimalSeparator = _._country_model$_thousandSeparator = _._country_model$_swapCurrencySymbol = _._swapPostalCode = _._country_model$_name = _._country_model$_$v = null; }, _CountryEntity_Object_SelectableEntity: function _CountryEntity_Object_SelectableEntity() { }, DesignRepository: function DesignRepository() { }, PaymentRepository: function PaymentRepository() { }, SubscriptionRepository: function SubscriptionRepository() { }, _editCompanyGateway: function() { return new L._editCompanyGateway_closure(); }, _viewCompanyGateway: function() { return new L._viewCompanyGateway_closure(); }, _viewCompanyGatewayList: function() { return new L._viewCompanyGatewayList_closure(); }, _archiveCompanyGateway: function(repository) { return new L._archiveCompanyGateway_closure(repository); }, _deleteCompanyGateway: function(repository) { return new L._deleteCompanyGateway_closure(repository); }, _restoreCompanyGateway: function(repository) { return new L._restoreCompanyGateway_closure(repository); }, _saveCompanyGateway: function(repository) { return new L._saveCompanyGateway_closure(repository); }, _loadCompanyGateway: function(repository) { return new L._loadCompanyGateway_closure(repository); }, _loadCompanyGateways: function(repository) { return new L._loadCompanyGateways_closure(repository); }, _editCompanyGateway_closure: function _editCompanyGateway_closure() { }, _viewCompanyGateway_closure: function _viewCompanyGateway_closure() { }, _viewCompanyGatewayList_closure: function _viewCompanyGatewayList_closure() { }, _viewCompanyGatewayList__closure: function _viewCompanyGatewayList__closure() { }, _archiveCompanyGateway_closure: function _archiveCompanyGateway_closure(t0) { this.repository = t0; }, _archiveCompanyGateway__closure: function _archiveCompanyGateway__closure(t0) { this.store = t0; }, _archiveCompanyGateway__closure0: function _archiveCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveCompanyGateway__closure1: function _archiveCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _deleteCompanyGateway_closure: function _deleteCompanyGateway_closure(t0) { this.repository = t0; }, _deleteCompanyGateway__closure: function _deleteCompanyGateway__closure(t0) { this.store = t0; }, _deleteCompanyGateway__closure0: function _deleteCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompanyGateway__closure1: function _deleteCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _restoreCompanyGateway_closure: function _restoreCompanyGateway_closure(t0) { this.repository = t0; }, _restoreCompanyGateway__closure: function _restoreCompanyGateway__closure(t0) { this.store = t0; }, _restoreCompanyGateway__closure0: function _restoreCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreCompanyGateway__closure1: function _restoreCompanyGateway__closure1(t0, t1, t2) { this.store = t0; this.prevCompanyGateways = t1; this.action = t2; }, _saveCompanyGateway_closure: function _saveCompanyGateway_closure(t0) { this.repository = t0; }, _saveCompanyGateway__closure: function _saveCompanyGateway__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveCompanyGateway__closure0: function _saveCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateway_closure: function _loadCompanyGateway_closure(t0) { this.repository = t0; }, _loadCompanyGateway__closure: function _loadCompanyGateway__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateway__closure0: function _loadCompanyGateway__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateways_closure: function _loadCompanyGateways_closure(t0) { this.repository = t0; }, _loadCompanyGateways__closure: function _loadCompanyGateways__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadCompanyGateways__closure0: function _loadCompanyGateways__closure0(t0, t1) { this.store = t0; this.action = t1; }, convertExpenseToInvoiceItem: function(context, expense) { var t3, company, categoryMap, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); company = t3.$index(t1, t2).userCompany.company; categoryMap = t3.$index(t1, t2).expenseCategoryState.map; return Q.InvoiceItemEntity_InvoiceItemEntity(null, null).rebuild$1(new L.convertExpenseToInvoiceItem_closure(expense, categoryMap, company)); }, filteredExpensesSelector: function(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, list = J.where$1$ax(expenseMap.get$keys(expenseMap), new L.filteredExpensesSelector_closure(expenseMap, expenseCategoryMap, vendorMap, clientMap, selectionState, filterEntityType, filterEntityId, expenseListState)).toList$0(0); C.JSArray_methods.sort$1(list, new L.filteredExpensesSelector_closure0(expenseMap, expenseListState, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState)); return list; }, expenseStatsForVendor: function(vendorId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new L.expenseStatsForVendor_closure(t1, vendorId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, expenseStatsForClient: function(clientId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new L.expenseStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, clientExpenseList: function(expenseMap, clientId) { var list = J.where$1$ax(expenseMap.get$keys(expenseMap), new L.clientExpenseList_closure(expenseMap, clientId)).toList$0(0); C.JSArray_methods.sort$1(list, new L.clientExpenseList_closure0(expenseMap)); return list; }, expenseStatsForProject: function(projectId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new L.expenseStatsForProject_closure(t1, projectId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, expenseStatsForUser: function(userId, expenseMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(expenseMap._map$_map, new L.expenseStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, convertExpenseToInvoiceItem_closure: function convertExpenseToInvoiceItem_closure(t0, t1, t2) { this.expense = t0; this.categoryMap = t1; this.company = t2; }, memoizedFilteredExpenseList_closure: function memoizedFilteredExpenseList_closure() { }, filteredExpensesSelector_closure: function filteredExpensesSelector_closure(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseCategoryMap = t1; _.vendorMap = t2; _.clientMap = t3; _.selectionState = t4; _.filterEntityType = t5; _.filterEntityId = t6; _.expenseListState = t7; }, filteredExpensesSelector_closure0: function filteredExpensesSelector_closure0(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.expenseMap = t0; _.expenseListState = t1; _.clientMap = t2; _.userMap = t3; _.vendorMap = t4; _.invoiceMap = t5; _.expenseCategoryMap = t6; _.staticState = t7; }, memoizedExpenseStatsForVendor_closure: function memoizedExpenseStatsForVendor_closure() { }, expenseStatsForVendor_closure: function expenseStatsForVendor_closure(t0, t1) { this._box_0 = t0; this.vendorId = t1; }, memoizedExpenseStatsForClient_closure: function memoizedExpenseStatsForClient_closure() { }, expenseStatsForClient_closure: function expenseStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedClientExpenseList_closure: function memoizedClientExpenseList_closure() { }, clientExpenseList_closure: function clientExpenseList_closure(t0, t1) { this.expenseMap = t0; this.clientId = t1; }, clientExpenseList_closure0: function clientExpenseList_closure0(t0) { this.expenseMap = t0; }, memoizedExpenseStatsForProject_closure: function memoizedExpenseStatsForProject_closure() { }, expenseStatsForProject_closure: function expenseStatsForProject_closure(t0, t1) { this._box_0 = t0; this.projectId = t1; }, memoizedExpenseStatsForUser_closure: function memoizedExpenseStatsForUser_closure() { }, expenseStatsForUser_closure: function expenseStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, _$PaymentState$_: function(list, map) { var _s12_ = "PaymentState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new L._$PaymentState(map, list); }, _$PaymentUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("PaymentUIState", "listUIState")); return new L._$PaymentUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, PaymentState: function PaymentState() { }, PaymentState_loadPayments_closure0: function PaymentState_loadPayments_closure0() { }, PaymentState_loadPayments_closure1: function PaymentState_loadPayments_closure1() { }, PaymentState_loadPayments_closure: function PaymentState_loadPayments_closure(t0, t1) { this.$this = t0; this.map = t1; }, PaymentUIState: function PaymentUIState() { }, _$PaymentStateSerializer: function _$PaymentStateSerializer() { }, _$PaymentUIStateSerializer: function _$PaymentUIStateSerializer() { }, _$PaymentState: function _$PaymentState(t0, t1) { this.map = t0; this.list = t1; this._payment_state$__hashCode = null; }, PaymentStateBuilder: function PaymentStateBuilder() { this._payment_state$_list = this._payment_state$_map = this._payment_state$_$v = null; }, _$PaymentUIState: function _$PaymentUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._payment_state$__hashCode = null; }, PaymentUIStateBuilder: function PaymentUIStateBuilder() { var _ = this; _._payment_state$_cancelCompleter = _._payment_state$_saveCompleter = _._payment_state$_tabIndex = _._payment_state$_forceSelected = _._payment_state$_selectedId = _._payment_state$_listUIState = _._payment_state$_editing = _._payment_state$_$v = null; }, _PaymentUIState_Object_EntityUIState: function _PaymentUIState_Object_EntityUIState() { }, paymentTermUIReducer: function(state, action) { var t1; state.toString; t1 = new N.PaymentTermUIStateBuilder(); t1._payment_term_state$_$v = state; new L.paymentTermUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing7: function(paymentTerm, action) { return X.PaymentTermEntity_PaymentTermEntity(null, null); }, _updateEditing8: function(paymentTerm, action) { return action.get$paymentTerm(); }, _viewPaymentTermList0: function(paymentTermListState, action) { return paymentTermListState.rebuild$1(new L._viewPaymentTermList_closure()); }, _filterPaymentTermsByCustom1: function(paymentTermListState, action) { var t1 = paymentTermListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentTermListState.rebuild$1(new L._filterPaymentTermsByCustom1_closure(action)); else return paymentTermListState.rebuild$1(new L._filterPaymentTermsByCustom1_closure0(action)); }, _filterPaymentTermsByCustom2: function(paymentTermListState, action) { var t1 = paymentTermListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return paymentTermListState.rebuild$1(new L._filterPaymentTermsByCustom2_closure(action)); else return paymentTermListState.rebuild$1(new L._filterPaymentTermsByCustom2_closure0(action)); }, _filterPaymentTermsByState: function(paymentTermListState, action) { var t1 = paymentTermListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return paymentTermListState.rebuild$1(new L._filterPaymentTermsByState_closure(action)); else return paymentTermListState.rebuild$1(new L._filterPaymentTermsByState_closure0(action)); }, _filterPaymentTerms: function(paymentTermListState, action) { return paymentTermListState.rebuild$1(new L._filterPaymentTerms_closure(action, paymentTermListState)); }, _sortPaymentTerms: function(paymentTermListState, action) { return paymentTermListState.rebuild$1(new L._sortPaymentTerms_closure(action)); }, _startListMultiselect9: function(productListState, action) { return productListState.rebuild$1(new L._startListMultiselect_closure12()); }, _addToListMultiselect9: function(productListState, action) { return productListState.rebuild$1(new L._addToListMultiselect_closure12(action)); }, _removeFromListMultiselect9: function(productListState, action) { return productListState.rebuild$1(new L._removeFromListMultiselect_closure12(action)); }, _clearListMultiselect9: function(productListState, action) { return productListState.rebuild$1(new L._clearListMultiselect_closure12()); }, _archivePaymentTermSuccess: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._archivePaymentTermSuccess_closure(action)); }, _deletePaymentTermSuccess: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._deletePaymentTermSuccess_closure(action)); }, _restorePaymentTermSuccess: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._restorePaymentTermSuccess_closure(action)); }, _addPaymentTerm: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._addPaymentTerm_closure(action)); }, _updatePaymentTerm: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._updatePaymentTerm_closure(action)); }, _setLoadedPaymentTerm: function(paymentTermState, action) { return paymentTermState.rebuild$1(new L._setLoadedPaymentTerm_closure(action)); }, _setLoadedPaymentTerms: function(paymentTermState, action) { return paymentTermState.loadPaymentTerms$1(action.paymentTerms); }, _setLoadedCompany8: function(paymentTermState, action) { var state = paymentTermState.rebuild$1(new L._setLoadedCompany_closure7(action)); return state.rebuild$1(new L._setLoadedCompany_closure8(state)); }, paymentTermUIReducer_closure: function paymentTermUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure95: function forceSelectedReducer_closure95() { }, forceSelectedReducer_closure96: function forceSelectedReducer_closure96() { }, forceSelectedReducer_closure97: function forceSelectedReducer_closure97() { }, forceSelectedReducer_closure98: function forceSelectedReducer_closure98() { }, forceSelectedReducer_closure99: function forceSelectedReducer_closure99() { }, forceSelectedReducer_closure100: function forceSelectedReducer_closure100() { }, forceSelectedReducer_closure101: function forceSelectedReducer_closure101() { }, forceSelectedReducer_closure102: function forceSelectedReducer_closure102() { }, selectedIdReducer_closure193: function selectedIdReducer_closure193() { }, selectedIdReducer_closure194: function selectedIdReducer_closure194() { }, selectedIdReducer_closure195: function selectedIdReducer_closure195() { }, selectedIdReducer_closure196: function selectedIdReducer_closure196() { }, selectedIdReducer_closure197: function selectedIdReducer_closure197() { }, selectedIdReducer_closure198: function selectedIdReducer_closure198() { }, selectedIdReducer_closure199: function selectedIdReducer_closure199() { }, selectedIdReducer_closure200: function selectedIdReducer_closure200() { }, selectedIdReducer_closure201: function selectedIdReducer_closure201() { }, selectedIdReducer_closure202: function selectedIdReducer_closure202() { }, selectedIdReducer_closure203: function selectedIdReducer_closure203() { }, selectedIdReducer_closure204: function selectedIdReducer_closure204() { }, selectedIdReducer_closure205: function selectedIdReducer_closure205() { }, selectedIdReducer_closure206: function selectedIdReducer_closure206() { }, editingReducer_closure62: function editingReducer_closure62() { }, editingReducer_closure63: function editingReducer_closure63() { }, editingReducer_closure64: function editingReducer_closure64() { }, editingReducer_closure65: function editingReducer_closure65() { }, editingReducer__closure24: function editingReducer__closure24() { }, _viewPaymentTermList_closure: function _viewPaymentTermList_closure() { }, _filterPaymentTermsByCustom1_closure: function _filterPaymentTermsByCustom1_closure(t0) { this.action = t0; }, _filterPaymentTermsByCustom1_closure0: function _filterPaymentTermsByCustom1_closure0(t0) { this.action = t0; }, _filterPaymentTermsByCustom2_closure: function _filterPaymentTermsByCustom2_closure(t0) { this.action = t0; }, _filterPaymentTermsByCustom2_closure0: function _filterPaymentTermsByCustom2_closure0(t0) { this.action = t0; }, _filterPaymentTermsByState_closure: function _filterPaymentTermsByState_closure(t0) { this.action = t0; }, _filterPaymentTermsByState_closure0: function _filterPaymentTermsByState_closure0(t0) { this.action = t0; }, _filterPaymentTerms_closure: function _filterPaymentTerms_closure(t0, t1) { this.action = t0; this.paymentTermListState = t1; }, _sortPaymentTerms_closure: function _sortPaymentTerms_closure(t0) { this.action = t0; }, _startListMultiselect_closure12: function _startListMultiselect_closure12() { }, _addToListMultiselect_closure12: function _addToListMultiselect_closure12(t0) { this.action = t0; }, _removeFromListMultiselect_closure12: function _removeFromListMultiselect_closure12(t0) { this.action = t0; }, _clearListMultiselect_closure12: function _clearListMultiselect_closure12() { }, _archivePaymentTermSuccess_closure: function _archivePaymentTermSuccess_closure(t0) { this.action = t0; }, _deletePaymentTermSuccess_closure: function _deletePaymentTermSuccess_closure(t0) { this.action = t0; }, _restorePaymentTermSuccess_closure: function _restorePaymentTermSuccess_closure(t0) { this.action = t0; }, _addPaymentTerm_closure: function _addPaymentTerm_closure(t0) { this.action = t0; }, _updatePaymentTerm_closure: function _updatePaymentTerm_closure(t0) { this.action = t0; }, _setLoadedPaymentTerm_closure: function _setLoadedPaymentTerm_closure(t0) { this.action = t0; }, _setLoadedCompany_closure7: function _setLoadedCompany_closure7(t0) { this.action = t0; }, _setLoadedCompany__closure7: function _setLoadedCompany__closure7() { }, _setLoadedCompany__closure8: function _setLoadedCompany__closure8() { }, _setLoadedCompany_closure8: function _setLoadedCompany_closure8(t0) { this.state = t0; }, quoteUIReducer: function(state, action) { var t1; state.toString; t1 = new G.QuoteUIStateBuilder(); t1._quote_state$_$v = state; new L.quoteUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing10: function(quote, action) { var _null = null; return Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); }, _updateEditing11: function(quote, action) { return action.get$quote(); }, _addQuoteItem: function(quote, action) { return quote.rebuild$1(new L._addQuoteItem_closure(action)); }, _addQuoteItems: function(quote, action) { return quote.rebuild$1(new L._addQuoteItems_closure(action)); }, _removeQuoteItem: function(quote, action) { if (J.get$length$asx(quote.lineItems._list) <= action.index) return quote; return quote.rebuild$1(new L._removeQuoteItem_closure(action)); }, _updateQuoteItem: function(quote, action) { if (J.get$length$asx(quote.lineItems._list) <= action.index) return quote; return quote.rebuild$1(new L._updateQuoteItem_closure(action)); }, _viewQuoteList0: function(quoteListState, action) { return quoteListState.rebuild$1(new L._viewQuoteList_closure()); }, _filterQuotesByCustom1: function(quoteListState, action) { var t1 = quoteListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByCustom1_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByCustom1_closure0(action)); }, _filterQuotesByCustom2: function(quoteListState, action) { var t1 = quoteListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByCustom2_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByCustom2_closure0(action)); }, _filterQuotesByCustom3: function(quoteListState, action) { var t1 = quoteListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByCustom3_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByCustom3_closure0(action)); }, _filterQuotesByCustom4: function(quoteListState, action) { var t1 = quoteListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByCustom4_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByCustom4_closure0(action)); }, _filterQuotesByState: function(quoteListState, action) { var t1 = quoteListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByState_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByState_closure0(action)); }, _filterQuotesByStatus: function(quoteListState, action) { var t1 = quoteListState.statusFilters, t2 = action.status; if (J.contains$1$asx(t1._list, t2)) return quoteListState.rebuild$1(new L._filterQuotesByStatus_closure(action)); else return quoteListState.rebuild$1(new L._filterQuotesByStatus_closure0(action)); }, _filterQuotes: function(quoteListState, action) { return quoteListState.rebuild$1(new L._filterQuotes_closure(action, quoteListState)); }, _sortQuotes: function(quoteListState, action) { return quoteListState.rebuild$1(new L._sortQuotes_closure(action)); }, _startListMultiselect12: function(quoteListState, action) { return quoteListState.rebuild$1(new L._startListMultiselect_closure()); }, _addToListMultiselect12: function(quoteListState, action) { return quoteListState.rebuild$1(new L._addToListMultiselect_closure(action)); }, _removeFromListMultiselect12: function(quoteListState, action) { return quoteListState.rebuild$1(new L._removeFromListMultiselect_closure(action)); }, _clearListMultiselect12: function(quoteListState, action) { return quoteListState.rebuild$1(new L._clearListMultiselect_closure()); }, _markSentQuoteSuccess: function(quoteState, action) { return quoteState.rebuild$1(new L._markSentQuoteSuccess_closure(P.LinkedHashMap_LinkedHashMap$fromIterable(action.quotes, new L._markSentQuoteSuccess_closure0(), new L._markSentQuoteSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _archiveQuoteSuccess: function(quoteState, action) { return quoteState.rebuild$1(new L._archiveQuoteSuccess_closure(action)); }, _deleteQuoteSuccess: function(quoteState, action) { return quoteState.rebuild$1(new L._deleteQuoteSuccess_closure(action)); }, _restoreQuoteSuccess: function(quoteState, action) { return quoteState.rebuild$1(new L._restoreQuoteSuccess_closure(action)); }, _convertQuoteSuccess: function(quoteState, action) { return quoteState.rebuild$1(new L._convertQuoteSuccess_closure(P.LinkedHashMap_LinkedHashMap$fromIterable(action.quotes, new L._convertQuoteSuccess_closure0(), new L._convertQuoteSuccess_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, _addQuote: function(quoteState, action) { return quoteState.rebuild$1(new L._addQuote_closure(action)); }, _updateQuote: function(invoiceState, action) { return invoiceState.rebuild$1(new L._updateQuote_closure(action.get$quote())); }, _setLoadedQuotes: function(quoteState, action) { return quoteState.loadQuotes$1(action.quotes); }, _setLoadedCompany11: function(quoteState, action) { return quoteState.loadQuotes$1(action.userCompany.company.quotes); }, quoteUIReducer_closure: function quoteUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure: function forceSelectedReducer_closure() { }, forceSelectedReducer_closure0: function forceSelectedReducer_closure0() { }, forceSelectedReducer_closure1: function forceSelectedReducer_closure1() { }, forceSelectedReducer_closure2: function forceSelectedReducer_closure2() { }, forceSelectedReducer_closure3: function forceSelectedReducer_closure3() { }, forceSelectedReducer_closure4: function forceSelectedReducer_closure4() { }, forceSelectedReducer_closure5: function forceSelectedReducer_closure5() { }, forceSelectedReducer_closure6: function forceSelectedReducer_closure6() { }, tabIndexReducer_closure: function tabIndexReducer_closure() { }, tabIndexReducer_closure0: function tabIndexReducer_closure0() { }, historyActivityIdReducer_closure: function historyActivityIdReducer_closure() { }, editingItemReducer_closure: function editingItemReducer_closure() { }, editingItemReducer_closure0: function editingItemReducer_closure0() { }, selectedIdReducer_closure: function selectedIdReducer_closure() { }, selectedIdReducer_closure0: function selectedIdReducer_closure0() { }, selectedIdReducer_closure1: function selectedIdReducer_closure1() { }, selectedIdReducer_closure2: function selectedIdReducer_closure2() { }, selectedIdReducer_closure3: function selectedIdReducer_closure3() { }, selectedIdReducer_closure4: function selectedIdReducer_closure4() { }, selectedIdReducer_closure5: function selectedIdReducer_closure5() { }, selectedIdReducer_closure6: function selectedIdReducer_closure6() { }, selectedIdReducer_closure7: function selectedIdReducer_closure7() { }, selectedIdReducer_closure8: function selectedIdReducer_closure8() { }, selectedIdReducer_closure9: function selectedIdReducer_closure9() { }, selectedIdReducer_closure10: function selectedIdReducer_closure10() { }, selectedIdReducer_closure11: function selectedIdReducer_closure11() { }, selectedIdReducer_closure12: function selectedIdReducer_closure12() { }, selectedIdReducer_closure13: function selectedIdReducer_closure13() { }, selectedIdReducer_closure14: function selectedIdReducer_closure14() { }, selectedIdReducer_closure15: function selectedIdReducer_closure15() { }, selectedIdReducer_closure16: function selectedIdReducer_closure16() { }, selectedIdReducer_closure17: function selectedIdReducer_closure17() { }, editingReducer_closure: function editingReducer_closure() { }, editingReducer__closure5: function editingReducer__closure5() { }, editingReducer_closure0: function editingReducer_closure0() { }, editingReducer__closure4: function editingReducer__closure4() { }, editingReducer_closure1: function editingReducer_closure1() { }, editingReducer_closure2: function editingReducer_closure2() { }, editingReducer__closure3: function editingReducer__closure3() { }, editingReducer_closure3: function editingReducer_closure3() { }, editingReducer__closure2: function editingReducer__closure2() { }, editingReducer_closure4: function editingReducer_closure4() { }, editingReducer__closure1: function editingReducer__closure1(t0) { this.client = t0; }, editingReducer___closure: function editingReducer___closure() { }, editingReducer_closure5: function editingReducer_closure5() { }, editingReducer_closure6: function editingReducer_closure6() { }, editingReducer_closure7: function editingReducer_closure7() { }, editingReducer_closure8: function editingReducer_closure8() { }, editingReducer__closure0: function editingReducer__closure0(t0) { this.action = t0; }, editingReducer_closure9: function editingReducer_closure9() { }, editingReducer__closure: function editingReducer__closure(t0) { this.action = t0; }, _addQuoteItem_closure: function _addQuoteItem_closure(t0) { this.action = t0; }, _addQuoteItems_closure: function _addQuoteItems_closure(t0) { this.action = t0; }, _removeQuoteItem_closure: function _removeQuoteItem_closure(t0) { this.action = t0; }, _updateQuoteItem_closure: function _updateQuoteItem_closure(t0) { this.action = t0; }, _viewQuoteList_closure: function _viewQuoteList_closure() { }, _filterQuotesByCustom1_closure: function _filterQuotesByCustom1_closure(t0) { this.action = t0; }, _filterQuotesByCustom1_closure0: function _filterQuotesByCustom1_closure0(t0) { this.action = t0; }, _filterQuotesByCustom2_closure: function _filterQuotesByCustom2_closure(t0) { this.action = t0; }, _filterQuotesByCustom2_closure0: function _filterQuotesByCustom2_closure0(t0) { this.action = t0; }, _filterQuotesByCustom3_closure: function _filterQuotesByCustom3_closure(t0) { this.action = t0; }, _filterQuotesByCustom3_closure0: function _filterQuotesByCustom3_closure0(t0) { this.action = t0; }, _filterQuotesByCustom4_closure: function _filterQuotesByCustom4_closure(t0) { this.action = t0; }, _filterQuotesByCustom4_closure0: function _filterQuotesByCustom4_closure0(t0) { this.action = t0; }, _filterQuotesByState_closure: function _filterQuotesByState_closure(t0) { this.action = t0; }, _filterQuotesByState_closure0: function _filterQuotesByState_closure0(t0) { this.action = t0; }, _filterQuotesByStatus_closure: function _filterQuotesByStatus_closure(t0) { this.action = t0; }, _filterQuotesByStatus_closure0: function _filterQuotesByStatus_closure0(t0) { this.action = t0; }, _filterQuotes_closure: function _filterQuotes_closure(t0, t1) { this.action = t0; this.quoteListState = t1; }, _sortQuotes_closure: function _sortQuotes_closure(t0) { this.action = t0; }, _startListMultiselect_closure: function _startListMultiselect_closure() { }, _addToListMultiselect_closure: function _addToListMultiselect_closure(t0) { this.action = t0; }, _removeFromListMultiselect_closure: function _removeFromListMultiselect_closure(t0) { this.action = t0; }, _clearListMultiselect_closure: function _clearListMultiselect_closure() { }, _markSentQuoteSuccess_closure0: function _markSentQuoteSuccess_closure0() { }, _markSentQuoteSuccess_closure1: function _markSentQuoteSuccess_closure1() { }, _markSentQuoteSuccess_closure: function _markSentQuoteSuccess_closure(t0) { this.quoteMap = t0; }, _archiveQuoteSuccess_closure: function _archiveQuoteSuccess_closure(t0) { this.action = t0; }, _deleteQuoteSuccess_closure: function _deleteQuoteSuccess_closure(t0) { this.action = t0; }, _restoreQuoteSuccess_closure: function _restoreQuoteSuccess_closure(t0) { this.action = t0; }, _convertQuoteSuccess_closure0: function _convertQuoteSuccess_closure0() { }, _convertQuoteSuccess_closure1: function _convertQuoteSuccess_closure1() { }, _convertQuoteSuccess_closure: function _convertQuoteSuccess_closure(t0) { this.quoteMap = t0; }, _addQuote_closure: function _addQuote_closure(t0) { this.action = t0; }, _addQuote__closure: function _addQuote__closure() { }, _updateQuote_closure: function _updateQuote_closure(t0) { this.quote = t0; }, _updateQuote__closure: function _updateQuote__closure() { }, filteredRecurringInvoicesSelector: function(selectionState, recurringInvoiceMap, clientMap, recurringInvoiceList, invoiceListState, userMap) { var filterEntityId = selectionState.filterEntityId, filterEntityType = selectionState.filterEntityType, t1 = J.where$1$ax(recurringInvoiceList._list, new L.filteredRecurringInvoicesSelector_closure(recurringInvoiceMap, clientMap, selectionState, filterEntityType, filterEntityId, invoiceListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new L.filteredRecurringInvoicesSelector_closure0(recurringInvoiceMap, invoiceListState, clientMap, userMap)); return list; }, recurringInvoiceStatsForClient: function(clientId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new L.recurringInvoiceStatsForClient_closure(t1, clientId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForUser: function(userId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new L.recurringInvoiceStatsForUser_closure(t1, userId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForInvoice: function(recurrinInvoiceId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new L.recurringInvoiceStatsForInvoice_closure(t1, recurrinInvoiceId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForDesign: function(designId, recurringInvoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(recurringInvoiceMap._map$_map, new L.recurringInvoiceStatsForDesign_closure(t1, designId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, recurringInvoiceStatsForSubscription: function(subscriptionId, invoiceMap) { var t1 = {}; t1.countArchived = t1.countActive = 0; J.forEach$1$ax(invoiceMap._map$_map, new L.recurringInvoiceStatsForSubscription_closure(t1, subscriptionId)); return new T.EntityStats(t1.countActive, t1.countArchived); }, hasRecurringInvoiceChanges: function(recurringInvoice, recurringInvoiceMap) { var t1; if (recurringInvoice.get$isNew()) t1 = recurringInvoice.isChanged; else { t1 = recurringInvoice.id; t1 = !recurringInvoice.$eq(0, J.$index$asx(recurringInvoiceMap._map$_map, t1)); } return t1; }, memoizedFilteredRecurringInvoiceList_closure: function memoizedFilteredRecurringInvoiceList_closure() { }, filteredRecurringInvoicesSelector_closure: function filteredRecurringInvoicesSelector_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.recurringInvoiceMap = t0; _.clientMap = t1; _.selectionState = t2; _.filterEntityType = t3; _.filterEntityId = t4; _.invoiceListState = t5; }, filteredRecurringInvoicesSelector_closure0: function filteredRecurringInvoicesSelector_closure0(t0, t1, t2, t3) { var _ = this; _.recurringInvoiceMap = t0; _.invoiceListState = t1; _.clientMap = t2; _.userMap = t3; }, memoizedRecurringInvoiceStatsForClient_closure: function memoizedRecurringInvoiceStatsForClient_closure() { }, recurringInvoiceStatsForClient_closure: function recurringInvoiceStatsForClient_closure(t0, t1) { this._box_0 = t0; this.clientId = t1; }, memoizedRecurringInvoiceStatsForUser_closure: function memoizedRecurringInvoiceStatsForUser_closure() { }, recurringInvoiceStatsForUser_closure: function recurringInvoiceStatsForUser_closure(t0, t1) { this._box_0 = t0; this.userId = t1; }, memoizedRecurringInvoiceStatsForInvoice_closure: function memoizedRecurringInvoiceStatsForInvoice_closure() { }, recurringInvoiceStatsForInvoice_closure: function recurringInvoiceStatsForInvoice_closure(t0, t1) { this._box_0 = t0; this.recurrinInvoiceId = t1; }, memoizedRecurringInvoiceStatsForDesign_closure: function memoizedRecurringInvoiceStatsForDesign_closure() { }, recurringInvoiceStatsForDesign_closure: function recurringInvoiceStatsForDesign_closure(t0, t1) { this._box_0 = t0; this.designId = t1; }, memoizedRecurringInvoiceStatsForSubscription_closure: function memoizedRecurringInvoiceStatsForSubscription_closure() { }, recurringInvoiceStatsForSubscription_closure: function recurringInvoiceStatsForSubscription_closure(t0, t1) { this._box_0 = t0; this.subscriptionId = t1; }, ViewSettings: function ViewSettings(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.company = t0; _.group = t1; _.client = t2; _.user = t3; _.force = t4; _.section = t5; _.clearFilter = t6; _.tabIndex = t7; }, ClearSettingsFilter: function ClearSettingsFilter() { }, ResetSettings: function ResetSettings() { }, UpdateSettings: function UpdateSettings(t0) { this.settings = t0; }, UpdateSettingsTab: function UpdateSettingsTab(t0) { this.tabIndex = t0; }, UpdatedSetting: function UpdatedSetting() { }, UpdateSettingsTemplate: function UpdateSettingsTemplate(t0) { this.selectedTemplate = t0; }, UpdateUserSettings: function UpdateUserSettings(t0) { this.user = t0; }, UploadLogoRequest: function UploadLogoRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.type = t2; }, UploadLogoFailure: function UploadLogoFailure() { }, SaveUserSettingsRequest: function SaveUserSettingsRequest(t0, t1) { this.completer = t0; this.user = t1; }, SaveUserSettingsSuccess: function SaveUserSettingsSuccess(t0) { this.userCompany = t0; }, SaveUserSettingsFailure: function SaveUserSettingsFailure() { }, SaveAuthUserRequest: function SaveAuthUserRequest(t0, t1, t2, t3) { var _ = this; _.completer = t0; _.user = t1; _.password = t2; _.idToken = t3; }, SaveAuthUserSuccess: function SaveAuthUserSuccess(t0) { this.user = t0; }, SaveAuthUserFailure: function SaveAuthUserFailure() { }, ConnecOAuthUserRequest: function ConnecOAuthUserRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.idToken = t2; }, ConnecOAuthUserSuccess: function ConnecOAuthUserSuccess(t0) { this.user = t0; }, ConnecOAuthUserFailure: function ConnecOAuthUserFailure() { }, DisableTwoFactorRequest: function DisableTwoFactorRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.idToken = t2; }, DisableTwoFactorSuccess: function DisableTwoFactorSuccess() { }, DisableTwoFactorFailure: function DisableTwoFactorFailure() { }, ConnecGmailUserSuccess: function ConnecGmailUserSuccess(t0) { this.user = t0; }, ConnecGmailUserFailure: function ConnecGmailUserFailure() { }, FilterSettings: function FilterSettings(t0) { this.filter = t0; }, _$TaskStatusState$_: function(list, map) { var _s15_ = "TaskStatusState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "list")); return new L._$TaskStatusState(map, list); }, _$TaskStatusUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("TaskStatusUIState", "listUIState")); return new L._$TaskStatusUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, TaskStatusState: function TaskStatusState() { }, TaskStatusState_loadTaskStatuses_closure0: function TaskStatusState_loadTaskStatuses_closure0() { }, TaskStatusState_loadTaskStatuses_closure1: function TaskStatusState_loadTaskStatuses_closure1() { }, TaskStatusState_loadTaskStatuses_closure: function TaskStatusState_loadTaskStatuses_closure(t0, t1) { this.$this = t0; this.map = t1; }, TaskStatusUIState: function TaskStatusUIState() { }, _$TaskStatusStateSerializer: function _$TaskStatusStateSerializer() { }, _$TaskStatusUIStateSerializer: function _$TaskStatusUIStateSerializer() { }, _$TaskStatusState: function _$TaskStatusState(t0, t1) { this.map = t0; this.list = t1; this._task_status_state$__hashCode = null; }, TaskStatusStateBuilder: function TaskStatusStateBuilder() { this._task_status_state$_list = this._task_status_state$_map = this._task_status_state$_$v = null; }, _$TaskStatusUIState: function _$TaskStatusUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._task_status_state$__hashCode = null; }, TaskStatusUIStateBuilder: function TaskStatusUIStateBuilder() { var _ = this; _._task_status_state$_cancelCompleter = _._task_status_state$_saveCompleter = _._task_status_state$_tabIndex = _._task_status_state$_forceSelected = _._task_status_state$_selectedId = _._task_status_state$_listUIState = _._task_status_state$_editing = _._task_status_state$_$v = null; }, _TaskStatusUIState_Object_EntityUIState: function _TaskStatusUIState_Object_EntityUIState() { }, filteredUsersSelector: function(selectionState, userMap, userList, userListState, authUserId) { var t1 = J.where$1$ax(userList._list, new L.filteredUsersSelector_closure(userMap, selectionState, userListState, authUserId)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new L.filteredUsersSelector_closure0(userMap, userListState)); return list; }, userList: function(userMap) { var list = J.where$1$ax(userMap.get$keys(userMap), new L.userList_closure(userMap)).toList$0(0); C.JSArray_methods.sort$1(list, new L.userList_closure0(userMap)); return list; }, gmailUserList: function(userMap) { var t1 = L.userList(userMap), t2 = H._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); return P.List_List$of(new H.WhereIterable(t1, new L.gmailUserList_closure(userMap), t2), true, t2._eval$1("Iterable.E")); }, memoizedFilteredUserList_closure: function memoizedFilteredUserList_closure() { }, filteredUsersSelector_closure: function filteredUsersSelector_closure(t0, t1, t2, t3) { var _ = this; _.userMap = t0; _.selectionState = t1; _.userListState = t2; _.authUserId = t3; }, filteredUsersSelector_closure0: function filteredUsersSelector_closure0(t0, t1) { this.userMap = t0; this.userListState = t1; }, memoizedUserList_closure: function memoizedUserList_closure() { }, userList_closure: function userList_closure(t0) { this.userMap = t0; }, userList_closure0: function userList_closure0(t0) { this.userMap = t0; }, memoizedGmailUserList_closure: function memoizedGmailUserList_closure() { }, gmailUserList_closure: function gmailUserList_closure(t0) { this.userMap = t0; }, handleVendorAction: function(context, vendors, action) { var store, state, t1, vendor, t2, vendorIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (vendors.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); vendor = type$.legacy_VendorEntity._as(C.JSArray_methods.get$first(vendors)); t2 = H._arrayInstanceType(vendors)._eval$1("MappedListIterable<1,String*>"); vendorIds = P.List_List$of(new H.MappedListIterable(vendors, new L.handleVendorAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, vendor, _null); break; case C.EntityAction_newExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, state, _null, vendor), vendor, false); break; case C.EntityAction_newRecurringExpense: M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, C.EntityType_recurringExpense, _null, _null, state, _null, vendor), vendor, false); break; case C.EntityAction_restore: t2 = vendorIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_vendors"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_vendor"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.RestoreVendorRequest(t1, vendorIds)); break; case C.EntityAction_archive: t2 = vendorIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_vendors"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_vendor"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.ArchiveVendorRequest(t1, vendorIds)); break; case C.EntityAction_delete: t2 = vendorIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_vendors"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_vendor"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.DeleteVendorRequest(t1, vendorIds)); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.vendorUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.StartVendorMultiselect()); t1 = vendors.length; if (t1 === 0) break; for (_i = 0; _i < vendors.length; vendors.length === t1 || (0, H.throwConcurrentModificationError)(vendors), ++_i) { vendor = vendors[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.vendorUIState.listUIState; t3 = J.get$id$x(vendor); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new L.AddToVendorMultiselect(vendor)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new L.RemoveFromVendorMultiselect(vendor)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([vendor], type$.JSArray_legacy_BaseEntity), false); break; } }, ViewVendorList: function ViewVendorList() { }, ViewVendor: function ViewVendor(t0) { this.vendorId = t0; }, EditVendor: function EditVendor(t0, t1, t2) { this.vendor = t0; this.completer = t1; this.cancelCompleter = t2; }, UpdateVendor: function UpdateVendor(t0) { this.vendor = t0; }, LoadVendor: function LoadVendor(t0, t1) { this.completer = t0; this.vendorId = t1; }, LoadVendors: function LoadVendors() { }, LoadVendorRequest: function LoadVendorRequest() { }, LoadVendorFailure: function LoadVendorFailure(t0) { this.error = t0; }, LoadVendorSuccess: function LoadVendorSuccess(t0) { this.vendor = t0; }, LoadVendorsRequest: function LoadVendorsRequest() { }, LoadVendorsFailure: function LoadVendorsFailure(t0) { this.error = t0; }, LoadVendorsSuccess: function LoadVendorsSuccess(t0) { this.vendors = t0; }, SaveVendorRequest: function SaveVendorRequest(t0, t1) { this.completer = t0; this.vendor = t1; }, SaveVendorSuccess: function SaveVendorSuccess(t0) { this.vendor = t0; }, AddVendorSuccess: function AddVendorSuccess(t0) { this.vendor = t0; }, SaveVendorFailure: function SaveVendorFailure() { }, ArchiveVendorRequest: function ArchiveVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, ArchiveVendorSuccess: function ArchiveVendorSuccess(t0) { this.vendors = t0; }, ArchiveVendorFailure: function ArchiveVendorFailure() { }, DeleteVendorRequest: function DeleteVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, DeleteVendorSuccess: function DeleteVendorSuccess(t0) { this.vendors = t0; }, DeleteVendorFailure: function DeleteVendorFailure() { }, RestoreVendorRequest: function RestoreVendorRequest(t0, t1) { this.completer = t0; this.vendorIds = t1; }, RestoreVendorSuccess: function RestoreVendorSuccess(t0) { this.vendors = t0; }, RestoreVendorFailure: function RestoreVendorFailure() { }, EditVendorContact: function EditVendorContact(t0) { this.contact = t0; }, AddVendorContact: function AddVendorContact(t0) { this.contact = t0; }, UpdateVendorContact: function UpdateVendorContact(t0, t1) { this.index = t0; this.contact = t1; }, DeleteVendorContact: function DeleteVendorContact(t0) { this.index = t0; }, FilterVendors: function FilterVendors(t0) { this.filter = t0; }, SortVendors: function SortVendors(t0) { this.field = t0; }, FilterVendorsByState: function FilterVendorsByState(t0) { this.state = t0; }, FilterVendorsByCustom1: function FilterVendorsByCustom1(t0) { this.value = t0; }, FilterVendorsByCustom2: function FilterVendorsByCustom2(t0) { this.value = t0; }, FilterVendorsByCustom3: function FilterVendorsByCustom3(t0) { this.value = t0; }, FilterVendorsByCustom4: function FilterVendorsByCustom4(t0) { this.value = t0; }, handleVendorAction_closure: function handleVendorAction_closure() { }, StartVendorMultiselect: function StartVendorMultiselect() { }, AddToVendorMultiselect: function AddToVendorMultiselect(t0) { this.entity = t0; }, RemoveFromVendorMultiselect: function RemoveFromVendorMultiselect(t0) { this.entity = t0; }, ClearVendorMultiselect: function ClearVendorMultiselect() { }, SaveVendorDocumentRequest: function SaveVendorDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.vendor = t2; }, SaveVendorDocumentFailure: function SaveVendorDocumentFailure() { }, UpdateVendorTab: function UpdateVendorTab(t0) { this.tabIndex = t0; }, webhookUIReducer: function(state, action) { var t1; state.toString; t1 = new V.WebhookUIStateBuilder(); t1._webhook_state$_$v = state; new L.webhookUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing20: function(webhook, action) { return E.WebhookEntity_WebhookEntity(null, null); }, _updateEditing21: function(webhook, action) { return action.get$webhook(); }, _viewWebhookList0: function(webhookListState, action) { return webhookListState.rebuild$1(new L._viewWebhookList_closure()); }, _filterWebhooksByCustom1: function(webhookListState, action) { var t1 = webhookListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return webhookListState.rebuild$1(new L._filterWebhooksByCustom1_closure(action)); else return webhookListState.rebuild$1(new L._filterWebhooksByCustom1_closure0(action)); }, _filterWebhooksByCustom2: function(webhookListState, action) { var t1 = webhookListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return webhookListState.rebuild$1(new L._filterWebhooksByCustom2_closure(action)); else return webhookListState.rebuild$1(new L._filterWebhooksByCustom2_closure0(action)); }, _filterWebhooksByState: function(webhookListState, action) { var t1 = webhookListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return webhookListState.rebuild$1(new L._filterWebhooksByState_closure(action)); else return webhookListState.rebuild$1(new L._filterWebhooksByState_closure0(action)); }, _filterWebhooks: function(webhookListState, action) { return webhookListState.rebuild$1(new L._filterWebhooks_closure(action, webhookListState)); }, _sortWebhooks: function(webhookListState, action) { return webhookListState.rebuild$1(new L._sortWebhooks_closure(action)); }, _startListMultiselect22: function(productListState, action) { return productListState.rebuild$1(new L._startListMultiselect_closure14()); }, _addToListMultiselect22: function(productListState, action) { return productListState.rebuild$1(new L._addToListMultiselect_closure14(action)); }, _removeFromListMultiselect22: function(productListState, action) { return productListState.rebuild$1(new L._removeFromListMultiselect_closure14(action)); }, _clearListMultiselect22: function(productListState, action) { return productListState.rebuild$1(new L._clearListMultiselect_closure14()); }, _archiveWebhookSuccess: function(webhookState, action) { return webhookState.rebuild$1(new L._archiveWebhookSuccess_closure(action)); }, _deleteWebhookSuccess: function(webhookState, action) { return webhookState.rebuild$1(new L._deleteWebhookSuccess_closure(action)); }, _restoreWebhookSuccess: function(webhookState, action) { return webhookState.rebuild$1(new L._restoreWebhookSuccess_closure(action)); }, _addWebhook: function(webhookState, action) { return webhookState.rebuild$1(new L._addWebhook_closure(action)); }, _updateWebhook: function(webhookState, action) { return webhookState.rebuild$1(new L._updateWebhook_closure(action)); }, _setLoadedWebhook: function(webhookState, action) { return webhookState.rebuild$1(new L._setLoadedWebhook_closure(action)); }, _setLoadedWebhooks: function(webhookState, action) { return webhookState.loadWebhooks$1(action.webhooks); }, _setLoadedCompany21: function(webhookState, action) { return webhookState.loadWebhooks$1(action.userCompany.company.webhooks); }, webhookUIReducer_closure: function webhookUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure111: function forceSelectedReducer_closure111() { }, forceSelectedReducer_closure112: function forceSelectedReducer_closure112() { }, forceSelectedReducer_closure113: function forceSelectedReducer_closure113() { }, forceSelectedReducer_closure114: function forceSelectedReducer_closure114() { }, forceSelectedReducer_closure115: function forceSelectedReducer_closure115() { }, forceSelectedReducer_closure116: function forceSelectedReducer_closure116() { }, forceSelectedReducer_closure117: function forceSelectedReducer_closure117() { }, forceSelectedReducer_closure118: function forceSelectedReducer_closure118() { }, selectedIdReducer_closure222: function selectedIdReducer_closure222() { }, selectedIdReducer_closure223: function selectedIdReducer_closure223() { }, selectedIdReducer_closure224: function selectedIdReducer_closure224() { }, selectedIdReducer_closure225: function selectedIdReducer_closure225() { }, selectedIdReducer_closure226: function selectedIdReducer_closure226() { }, selectedIdReducer_closure227: function selectedIdReducer_closure227() { }, selectedIdReducer_closure228: function selectedIdReducer_closure228() { }, selectedIdReducer_closure229: function selectedIdReducer_closure229() { }, selectedIdReducer_closure230: function selectedIdReducer_closure230() { }, selectedIdReducer_closure231: function selectedIdReducer_closure231() { }, selectedIdReducer_closure232: function selectedIdReducer_closure232() { }, selectedIdReducer_closure233: function selectedIdReducer_closure233() { }, selectedIdReducer_closure234: function selectedIdReducer_closure234() { }, selectedIdReducer_closure235: function selectedIdReducer_closure235() { }, selectedIdReducer_closure236: function selectedIdReducer_closure236() { }, editingReducer_closure70: function editingReducer_closure70() { }, editingReducer_closure71: function editingReducer_closure71() { }, editingReducer_closure72: function editingReducer_closure72() { }, editingReducer_closure73: function editingReducer_closure73() { }, editingReducer__closure26: function editingReducer__closure26() { }, _viewWebhookList_closure: function _viewWebhookList_closure() { }, _filterWebhooksByCustom1_closure: function _filterWebhooksByCustom1_closure(t0) { this.action = t0; }, _filterWebhooksByCustom1_closure0: function _filterWebhooksByCustom1_closure0(t0) { this.action = t0; }, _filterWebhooksByCustom2_closure: function _filterWebhooksByCustom2_closure(t0) { this.action = t0; }, _filterWebhooksByCustom2_closure0: function _filterWebhooksByCustom2_closure0(t0) { this.action = t0; }, _filterWebhooksByState_closure: function _filterWebhooksByState_closure(t0) { this.action = t0; }, _filterWebhooksByState_closure0: function _filterWebhooksByState_closure0(t0) { this.action = t0; }, _filterWebhooks_closure: function _filterWebhooks_closure(t0, t1) { this.action = t0; this.webhookListState = t1; }, _sortWebhooks_closure: function _sortWebhooks_closure(t0) { this.action = t0; }, _startListMultiselect_closure14: function _startListMultiselect_closure14() { }, _addToListMultiselect_closure14: function _addToListMultiselect_closure14(t0) { this.action = t0; }, _removeFromListMultiselect_closure14: function _removeFromListMultiselect_closure14(t0) { this.action = t0; }, _clearListMultiselect_closure14: function _clearListMultiselect_closure14() { }, _archiveWebhookSuccess_closure: function _archiveWebhookSuccess_closure(t0) { this.action = t0; }, _deleteWebhookSuccess_closure: function _deleteWebhookSuccess_closure(t0) { this.action = t0; }, _restoreWebhookSuccess_closure: function _restoreWebhookSuccess_closure(t0) { this.action = t0; }, _addWebhook_closure: function _addWebhook_closure(t0) { this.action = t0; }, _updateWebhook_closure: function _updateWebhook_closure(t0) { this.action = t0; }, _setLoadedWebhook_closure: function _setLoadedWebhook_closure(t0) { this.action = t0; }, DismissibleEntity: function DismissibleEntity(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.userCompany = t0; _.entity = t1; _.child = t2; _.isSelected = t3; _.showCheckbox = t4; _.isDismissible = t5; _.key = t6; }, DismissibleEntity_build_closure: function DismissibleEntity_build_closure(t0) { this.$this = t0; }, DismissibleEntity_build_closure0: function DismissibleEntity_build_closure0(t0) { this.$this = t0; }, DismissibleEntity_build_closure1: function DismissibleEntity_build_closure1(t0) { this.$this = t0; }, DismissibleEntity_build_closure2: function DismissibleEntity_build_closure2(t0) { this.$this = t0; }, DismissibleEntity_build_closure3: function DismissibleEntity_build_closure3(t0) { this.$this = t0; }, DismissibleEntity_build_closure4: function DismissibleEntity_build_closure4(t0) { this.$this = t0; }, showEntityActionsDialog: function(completer, entities, multiselect) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, mainContext, state, actions, first, t2, t3, client, t1; var $async$showEntityActionsDialog = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$navigatorKey(); t1.toString; mainContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); state = O.StoreProvider_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), type$.legacy_AppState).get$_store$_state(); actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); first = entities[0]; if (type$.legacy_BelongsToClient._is(first)) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; client = J.$index$asx(t2._list, t3).clientState.$get$1(0, first.get$clientId(first)); } else client = null; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = first.getActions$4$client$includeEdit$multiselect$userCompany(client, true, multiselect, J.$index$asx(t2._list, t3).userCompany); t2 = H._arrayInstanceType(t3)._eval$1("MappedListIterable<1,StatelessWidget*>"); C.JSArray_methods.addAll$1(actions, P.List_List$of(new H.MappedListIterable(t3, new L.showEntityActionsDialog_closure(entities, mainContext, completer), t2), true, t2._eval$1("ListIterable.E"))); if (actions.length === 0) { // goto return $async$goto = 1; break; } E.showDialog(true, new L.showEntityActionsDialog_closure0(actions), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_String); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$showEntityActionsDialog, $async$completer); }, showEntityActionsDialog_closure: function showEntityActionsDialog_closure(t0, t1, t2) { this.entities = t0; this.mainContext = t1; this.completer = t2; }, showEntityActionsDialog_closure0: function showEntityActionsDialog_closure0(t0) { this.actions = t0; }, EntityActionListTile: function EntityActionListTile(t0, t1, t2, t3, t4) { var _ = this; _.entities = t0; _.action = t1; _.mainContext = t2; _.completer = t3; _.key = t4; }, EntityActionListTile_build_closure: function EntityActionListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, EntityStateLabel: function EntityStateLabel(t0, t1) { this.entity = t0; this.key = t1; }, DiscountField: function DiscountField(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.value = t1; _.isAmountDiscount = t2; _.onTypeChanged = t3; _.label = t4; _.key = t5; }, AppDataTable__initOnlyTextColumn: function(columns) { var t1, result, index, index0; for (t1 = columns.length, result = null, index = 0; index < t1; index0 = index + 1, result = index, index = index0) { columns[index].toString; if (result != null) return null; } return result; }, TableRowInkWell$0: function(child, onTap) { var _null = null; return new L.TableRowInkWell0(child, onTap, _null, _null, _null, _null, _null, _null, _null, true, C.BoxShape_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, false, _null, false, _null, true, _null); }, DataColumn0: function DataColumn0(t0, t1) { this.label = t0; this.onSort = t1; }, DataRow0: function DataRow0(t0, t1, t2, t3) { var _ = this; _.key = t0; _.onSelectChanged = t1; _.selected = t2; _.cells = t3; }, DataCell0: function DataCell0(t0, t1, t2) { this.child = t0; this.onTap = t1; this.backgroundColor = t2; }, AppDataTable: function AppDataTable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.columns = t0; _.sortColumnIndex = t1; _.sortAscending = t2; _.onSelectAll = t3; _.dataRowHeight = t4; _.headingRowHeight = t5; _.horizontalMargin = t6; _.columnSpacing = t7; _.showCheckboxColumn = t8; _.rows = t9; _._app_data_table$_onlyTextColumn = t10; _.key = t11; }, AppDataTable__buildHeadingCell_arrowWithPadding: function AppDataTable__buildHeadingCell_arrowWithPadding(t0, t1, t2) { this.onSort = t0; this.sorted = t1; this.ascending = t2; }, AppDataTable_build_closure: function AppDataTable_build_closure() { }, AppDataTable_build_closure0: function AppDataTable_build_closure0() { }, AppDataTable_build_closure1: function AppDataTable_build_closure1(t0) { this.row = t0; }, AppDataTable_build_closure2: function AppDataTable_build_closure2(t0, t1, t2) { this.$this = t0; this.column = t1; this.dataColumnIndex = t2; }, AppDataTable_build_closure3: function AppDataTable_build_closure3(t0) { this.row = t0; }, TableRowInkWell0: function TableRowInkWell0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.child = t0; _.onTap = t1; _.onTapDown = t2; _.onTapCancel = t3; _.onDoubleTap = t4; _.onLongPress = t5; _.onHighlightChanged = t6; _.onHover = t7; _.mouseCursor = t8; _.containedInkWell = t9; _.highlightShape = t10; _.radius = t11; _.borderRadius = t12; _.customBorder = t13; _.focusColor = t14; _.hoverColor = t15; _.highlightColor = t16; _.overlayColor = t17; _.splashColor = t18; _.splashFactory = t19; _.enableFeedback = t20; _.excludeFromSemantics = t21; _.onFocusChange = t22; _.autofocus = t23; _.focusNode = t24; _.canRequestFocus = t25; _.key = t26; }, TableRowInkWell_getRectCallback_closure0: function TableRowInkWell_getRectCallback_closure0(t0) { this.referenceBox = t0; }, _SortArrow0: function _SortArrow0(t0, t1, t2, t3) { var _ = this; _.visible = t0; _.down = t1; _.duration = t2; _.key = t3; }, _SortArrowState0: function _SortArrowState0(t0, t1) { var _ = this; _._orientationAnimation = _._app_data_table$_orientationController = _._app_data_table$_opacityAnimation = _._app_data_table$_opacityController = null; _._app_data_table$_orientationOffset = 0; _._app_data_table$_down = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SortArrowState__rebuild_closure0: function _SortArrowState__rebuild_closure0() { }, _NullTableColumnWidth0: function _NullTableColumnWidth0() { }, _NullWidget3: function _NullWidget3(t0) { this.key = t0; }, __SortArrowState_State_TickerProviderStateMixin0: function __SortArrowState_State_TickerProviderStateMixin0() { }, ClientEditNotes: function ClientEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditNotesState: function ClientEditNotesState(t0, t1, t2, t3) { var _ = this; _._client_edit_notes$_publicNotesController = t0; _._client_edit_notes$_privateNotesController = t1; _._client_edit_notes$_controllers = null; _._client_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ClientEditNotesState_didChangeDependencies_closure: function ClientEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, ClientEditNotesState_didChangeDependencies_closure0: function ClientEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ClientEditNotesState_dispose_closure: function ClientEditNotesState_dispose_closure(t0) { this.$this = t0; }, ClientEditNotesState__onChanged_closure: function ClientEditNotesState__onChanged_closure(t0) { this.$this = t0; }, ClientEditNotesState__onChanged_closure0: function ClientEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build_closure: function ClientEditNotesState_build_closure(t0) { this.state = t0; }, ClientEditNotesState_build_closure0: function ClientEditNotesState_build_closure0(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build__closure0: function ClientEditNotesState_build__closure0(t0) { this.sizeId = t0; }, ClientEditNotesState_build_closure1: function ClientEditNotesState_build_closure1(t0, t1) { this.viewModel = t0; this.client = t1; }, ClientEditNotesState_build__closure: function ClientEditNotesState_build__closure(t0) { this.industry = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore: function(store) { var t3, t4, t5, companyGateway = store.get$_store$_state().uiState.companyGatewayUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).companyGatewayState.map; t5 = companyGateway.id; J.$index$asx(t4._map$_map, t5); return new L.CompanyGatewayEditVM(companyGateway, t3.$index(t1, t2).userCompany.company, new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(store), new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0(store, state), new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1(store, state), state, new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2(state, store)); }, CompanyGatewayEditScreen: function CompanyGatewayEditScreen(t0) { this.key = t0; }, CompanyGatewayEditScreen_build_closure0: function CompanyGatewayEditScreen_build_closure0() { }, CompanyGatewayEditScreen_build_closure: function CompanyGatewayEditScreen_build_closure() { }, CompanyGatewayEditVM: function CompanyGatewayEditVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.companyGateway = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; _.onGatewaySignUpPressed = t6; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(t0) { this.store = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1(t0, t1) { this.store = t0; this.state = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.companyGateway = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0() { }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure(t0) { this.error = t0; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2(t0, t1) { this.state = t0; this.store = t1; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure(t0, t1, t2) { this.store = t0; this.gatewayId = t1; this.credentials = t2; }, CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0: function CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0(t0) { this.store = t0; }, DesignScreen: function DesignScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, DesignScreen_build_closure9: function DesignScreen_build_closure9(t0) { this.store = t0; }, DesignScreen_build_closure7: function DesignScreen_build_closure7(t0) { this.store = t0; }, DesignScreen_build_closure8: function DesignScreen_build_closure8(t0) { this.store = t0; }, DesignScreen_build_closure4: function DesignScreen_build_closure4(t0) { this.store = t0; }, DesignScreen_build_closure5: function DesignScreen_build_closure5(t0) { this.store = t0; }, DesignScreen_build_closure: function DesignScreen_build_closure(t0) { this.store = t0; }, DesignScreen_build_closure0: function DesignScreen_build_closure0(t0) { this.store = t0; }, DesignScreen_build_closure1: function DesignScreen_build_closure1(t0) { this.store = t0; }, DesignScreen_build_closure2: function DesignScreen_build_closure2(t0) { this.store = t0; }, DesignScreen_build_closure3: function DesignScreen_build_closure3(t0) { this.store = t0; }, DesignScreen_build_closure6: function DesignScreen_build_closure6(t0, t1) { this.context = t0; this.state = t1; }, ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore: function(store) { var t4, t5, expenseCategory, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).expenseCategoryState.map; t2 = t2.expenseCategoryUIState.selectedId; expenseCategory = J.$index$asx(t5._map$_map, t2); if (expenseCategory == null) expenseCategory = R.ExpenseCategoryEntity_ExpenseCategoryEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; expenseCategory.get$isNew(); return new L.ExpenseCategoryViewVM(state, expenseCategory, t1, new L.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure(store)); }, ExpenseCategoryViewScreen: function ExpenseCategoryViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, ExpenseCategoryViewScreen_build_closure0: function ExpenseCategoryViewScreen_build_closure0() { }, ExpenseCategoryViewScreen_build_closure: function ExpenseCategoryViewScreen_build_closure(t0) { this.$this = t0; }, ExpenseCategoryViewVM: function ExpenseCategoryViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.expenseCategory = t1; _.company = t2; _.onBackPressed = t3; }, ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure: function ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditContacts: function InvoiceEditContacts(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditContacts_build_closure: function InvoiceEditContacts_build_closure() { }, InvoiceEditContacts_build_closure0: function InvoiceEditContacts_build_closure0(t0, t1) { this.$this = t0; this.invoice = t1; }, InvoiceEditContacts_build__closure: function InvoiceEditContacts_build__closure(t0, t1, t2) { this.$this = t0; this.invitation = t1; this.contact = t2; }, _ContactListTile: function _ContactListTile(t0, t1, t2, t3, t4) { var _ = this; _.invoice = t0; _.contact = t1; _.invitation = t2; _.onTap = t3; _.key = t4; }, _ContactListTile_build_closure: function _ContactListTile_build_closure() { }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore: function(store) { var t3, company, state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); company = t3.$index(t2, t1).userCompany.company; t3.$index(t2, t1).clientState.toString; t3.$index(t2, t1).clientState.toString; return new L.InvoiceEditDetailsVM(state, company, invoice, new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure(store), new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0(state, company, store), new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1(store)); }, InvoiceEditDetailsScreen: function InvoiceEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, InvoiceEditDetailsScreen_build_closure0: function InvoiceEditDetailsScreen_build_closure0() { }, InvoiceEditDetailsScreen_build_closure: function InvoiceEditDetailsScreen_build_closure(t0) { this.$this = t0; }, EntityEditDetailsVM: function EntityEditDetailsVM() { }, InvoiceEditDetailsVM: function InvoiceEditDetailsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onAddClientPressed = t5; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.company = t1; this.store = t2; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure1: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure1(t0) { this.exchangeRate = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0: function InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, PaymentView: function PaymentView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _PaymentViewState: function _PaymentViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _PaymentViewState_build_closure: function _PaymentViewState_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.viewModel = t1; _.payment = t2; _.state = t3; _.localization = t4; _.client = t5; _.companyGateway = t6; _.companyGatewayLink = t7; _.fields = t8; }, _PaymentViewState_build__closure2: function _PaymentViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _PaymentViewState_build__closure: function _PaymentViewState_build__closure(t0) { this.companyGatewayLink = t0; }, _PaymentViewState_build__closure0: function _PaymentViewState_build__closure0() { }, _PaymentViewState_build__closure1: function _PaymentViewState_build__closure1() { }, creditReport: function(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState) { var columns, t5, t6, t7, t8, credit, t9, client, value, row, t10, t11, value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, t12, value10, value11, value12, value13, value14, t13, value15, value16, value17, value18, value19, value20, value21, value22, value23, value24, value25, value26, value27, value28, value29, value30, t14, value31, value32, value33, value34, value35, value36, value37, t15, t16, skip, t17, value38, t18, currencyId, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, creditReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "credit") ? J.$index$asx(reportSettings._map$_map, "credit") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), t1 = type$.JSArray_legacy_CreditReportFields, defaultColumns = H.setRuntimeTypeInfo([C.CreditReportFields_12, C.CreditReportFields_0, C.CreditReportFields_1, C.CreditReportFields_15, C.CreditReportFields_16, C.CreditReportFields_4], t1), t2 = creditReportSettings.columns._list, t3 = J.getInterceptor$asx(t2), t4 = type$.legacy_CreditReportFields; if (t3.get$isNotEmpty(t2)) { t2 = t3.map$1$1(t2, new L.creditReport_closure(), t4).where$1(0, new L.creditReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")), t4); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t4); for (t2 = J.get$iterator$ax(creditMap.get$keys(creditMap)), t3 = columns._list, t4 = J.getInterceptor$ax(t3), t5 = userCompany.company, t6 = type$.JSArray_legacy_ReportElement, t7 = creditMap._map$_map, t8 = J.getInterceptor$asx(t7); t2.moveNext$0();) { credit = t8.$index(t7, t2.get$current(t2)); t9 = credit.clientId; client = J.$index$asx(clientMap._map$_map, t9); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); value = credit.isDeleted; if (value || client.isDeleted) continue; if (!t5.reportIncludeDrafts && credit.statusId === "1") continue; row = H.setRuntimeTypeInfo([], t6); for (t9 = t4.get$iterator(t3), t10 = credit.id, t11 = credit.entityType, value0 = client.city, value1 = credit.privateNotes, value2 = credit.publicNotes, value3 = credit.taxRate1, value4 = credit.taxName1, value5 = credit.taxRate2, value6 = credit.taxName2, value7 = client.vatNumber, value8 = client.postalCode, value9 = credit.exchangeRate, t12 = client.countryId, value10 = credit.balance, value11 = credit.taxAmount, value12 = credit.amount, value13 = value10 - value11 * value10 / value12, value14 = value12 - value11, t13 = credit.createdAt, value15 = credit.customSurcharge4, value16 = credit.customSurcharge3, value17 = credit.customSurcharge2, value18 = credit.customSurcharge1, value19 = credit.customValue4, value20 = credit.customValue3, value21 = credit.customValue2, value22 = credit.customValue1, value23 = credit.autoBill, value24 = credit.partialDueDate, value25 = credit.partial, value26 = credit.dueDate, value27 = credit.date, value28 = credit.poNumber, value29 = credit.discount, value30 = credit.number, t14 = credit.statusId, value31 = client.shippingAddress2, value32 = client.shippingAddress1, value33 = client.address2, value34 = client.address1, value35 = client.balance, value36 = value10 / value9, value37 = value12 / value9, t15 = client.settings, t13 *= 1000, t16 = t5.settings, skip = false; t9.moveNext$0();) { t17 = t9.get$current(t9); switch (t17) { case C.CreditReportFields_0: value38 = value12; break; case C.CreditReportFields_1: value38 = value10; break; case C.CreditReportFields_2: value38 = value37; break; case C.CreditReportFields_3: value38 = value36; break; case C.CreditReportFields_4: value38 = client.displayName; break; case C.CreditReportFields_5: value38 = value35; break; case C.CreditReportFields_6: value38 = value34; break; case C.CreditReportFields_7: value38 = value33; break; case C.CreditReportFields_8: value38 = value32; break; case C.CreditReportFields_9: value38 = value31; break; case C.CreditReportFields_11: value38 = C.Map_qBa3g.$index(0, t14); if (value38 == null) value38 = ""; break; case C.CreditReportFields_12: value38 = value30; break; case C.CreditReportFields_13: value38 = value29; break; case C.CreditReportFields_14: value38 = value28; break; case C.CreditReportFields_15: value38 = value27; break; case C.CreditReportFields_16: value38 = value26; break; case C.CreditReportFields_17: value38 = value25; break; case C.CreditReportFields_18: value38 = value24; break; case C.CreditReportFields_19: value38 = value23; break; case C.CreditReportFields_20: value38 = value22; break; case C.CreditReportFields_21: value38 = value21; break; case C.CreditReportFields_22: value38 = value20; break; case C.CreditReportFields_23: value38 = value19; break; case C.CreditReportFields_24: value38 = value18; break; case C.CreditReportFields_25: value38 = value17; break; case C.CreditReportFields_26: value38 = value16; break; case C.CreditReportFields_27: value38 = value15; break; case C.CreditReportFields_28: t18 = new P.DateTime(t13, false); t18.DateTime$_withValue$2$isUtc(t13, false); value38 = t18.toIso8601String$0(); break; case C.CreditReportFields_29: t18 = new P.DateTime(t13, false); t18.DateTime$_withValue$2$isUtc(t13, false); value38 = t18.toIso8601String$0(); break; case C.CreditReportFields_30: value38 = value; break; case C.CreditReportFields_31: value38 = value11; break; case C.CreditReportFields_32: value38 = value14; break; case C.CreditReportFields_33: value38 = value13; break; case C.CreditReportFields_10: t18 = J.$index$asx(staticState.countryMap._map$_map, t12); value38 = t18 == null ? _null : t18.name; if (value38 == null) value38 = ""; break; case C.CreditReportFields_34: value38 = value9; break; case C.CreditReportFields_39: value38 = value8; break; case C.CreditReportFields_37: value38 = value7; break; case C.CreditReportFields_43: value38 = value4; break; case C.CreditReportFields_40: value38 = value3; break; case C.CreditReportFields_44: value38 = value6; break; case C.CreditReportFields_41: value38 = value5; break; case C.CreditReportFields_45: value38 = value4; break; case C.CreditReportFields_42: value38 = value3; break; case C.CreditReportFields_35: value38 = value2; break; case C.CreditReportFields_36: value38 = value1; break; case C.CreditReportFields_38: value38 = value0; break; default: value38 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t17), _null, reportsUIState, userCompany, value38)) skip = true; t18 = J.getInterceptor$(value38); if (t18.get$runtimeType(value38) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value38, t11, t10)); else if (t18.get$runtimeType(value38) === C.Type_double_K1J || t18.get$runtimeType(value38) === C.Type_int_tHn) { currencyId = t15.currencyId; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.CreditReportFields_2, C.CreditReportFields_3], t1), t17)) { currencyId = t16.currencyId; if (currencyId == null) currencyId = "1"; } row.push(new A.ReportNumberValue(value38, _null, currencyId, value9, t11, t10)); } else row.push(new A.ReportStringValue(value38, t11, t10)); } if (!skip) data.push(row); } selectedColumns = t4.map$1$1(t3, new L.creditReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new L.creditReport_closure2(creditReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_CreditReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_8Gl, new L.creditReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new L.creditReport_closure4(), t1), true, t2), data, true); }, CreditReportFields: function CreditReportFields(t0) { this._credit_report$_name = t0; }, memoizedCreditReport_closure: function memoizedCreditReport_closure() { }, creditReport_closure: function creditReport_closure() { }, creditReport_closure0: function creditReport_closure0() { }, creditReport_closure1: function creditReport_closure1() { }, creditReport_closure2: function creditReport_closure2(t0, t1) { this.creditReportSettings = t0; this.selectedColumns = t1; }, creditReport_closure3: function creditReport_closure3() { }, creditReport_closure4: function creditReport_closure4() { }, ReportsScreenVM_fromStore: function(store) { var t4, t5, allReportSettings, reportSettings, groupTotals, _null = null, _box_1 = {}, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.reportsUIState, report = t2.report, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t3 = t3._list; t4 = J.getInterceptor$asx(t3); t5 = t4.$index(t3, t1).userCompany; t5 = t5 == null ? _null : t5.settings; allReportSettings = t5 == null ? _null : t5.reportSettings; reportSettings = allReportSettings != null && J.containsKey$1$x(allReportSettings._map$_map, report) ? J.$index$asx(allReportSettings._map$_map, report) : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); _box_1.reportResult = null; switch (report) { case "invoice": t5 = _box_1.reportResult = $.$get$memoizedInvoiceReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "document": t5 = _box_1.reportResult = $.$get$memoizedDocumentReport().call$10(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).productState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).quoteState.map, t4.$index(t3, t1).expenseState.map, t4.$index(t3, t1).projectState.map, t4.$index(t3, t1).vendorState.map, t4.$index(t3, t1).userState.map); break; case "expense": t5 = _box_1.reportResult = $.$get$memoizedExpenseReport().call$9(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).expenseState.map, t4.$index(t3, t1).expenseCategoryState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).vendorState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "payment": t5 = _box_1.reportResult = $.$get$memoizedPaymentReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).paymentState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "product": t5 = _box_1.reportResult = $.$get$memoizedProductReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).productState.map, t4.$index(t3, t1).vendorState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "task": t5 = _box_1.reportResult = $.$get$memoizedTaskReport().call$10(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).taskState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).groupState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).taskStatusState.map, t4.$index(t3, t1).userState.map, t4.$index(t3, t1).projectState.map, state.staticState); break; case "quote": t5 = _box_1.reportResult = $.$get$memoizedQuoteReport().call$7(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).quoteState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).vendorState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "invoice_tax": t5 = _box_1.reportResult = $.$get$memoizedInvoiceTaxReport().call$9(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).taxRateState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).creditState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).paymentState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "payment_tax": t5 = _box_1.reportResult = $.$get$memoizedPaymentTaxReport().call$9(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).taxRateState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).creditState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).paymentState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "credit": t5 = _box_1.reportResult = $.$get$memoizedCreditReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).creditState.map, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "profit_and_loss": t5 = _box_1.reportResult = $.$get$memoizedProfitAndLossReport().call$9(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).paymentState.map, t4.$index(t3, t1).expenseState.map, t4.$index(t3, t1).expenseCategoryState.map, t4.$index(t3, t1).vendorState.map, t4.$index(t3, t1).userState.map, state.staticState); break; case "invoice_item": t5 = _box_1.reportResult = $.$get$memoizedInvoiceItemReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).productState.map, t4.$index(t3, t1).invoiceState.map, t4.$index(t3, t1).clientState.map, state.staticState); break; case "quote_item": t5 = _box_1.reportResult = $.$get$memoizedQuoteItemReport().call$6(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).productState.map, t4.$index(t3, t1).quoteState.map, t4.$index(t3, t1).clientState.map, state.staticState); break; default: t5 = _box_1.reportResult = $.$get$memoizedClientReport().call$5(t4.$index(t3, t1).userCompany, t2, t4.$index(t3, t1).clientState.map, t4.$index(t3, t1).userState.map, state.staticState); break; } groupTotals = $.$get$memoizeedGroupTotals().call$5(t5, t2, reportSettings, state.staticState.currencyMap, t4.$index(t3, t1).userCompany.company); return new L.ReportsScreenVM(state, t5, t2, groupTotals, new L.ReportsScreenVM_fromStore_closure(state, reportSettings, store), new L.ReportsScreenVM_fromStore_closure0(_box_1, state, groupTotals), new L.ReportsScreenVM_fromStore_closure1(store, report), new L.ReportsScreenVM_fromStore_closure2(store, state), new L.ReportsScreenVM_fromStore_closure3(store, state), new L.ReportsScreenVM_fromStore_closure4(state, store)); }, calculateReportTotals: function(company, currencyMap, reportResult, reportSettings, reportState) { var t3, t4, t5, i, row, j, cell, column, columnIndex, line, toZone, groupCell, group, t6, date, t7, cellValue, rate, rows, sortedColumns, t1 = type$.legacy_String, totals = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_double), data = reportResult.data, columns = reportResult.columns, t2 = reportState.group; if (t2.length === 0) return new L.GroupTotals(null, null); for (t3 = reportState.subgroup, t4 = t3 === "month", t3 = t3 === "year", t5 = type$.legacy_double, i = 0; i < data.length; ++i) { row = data[i]; for (j = 0; j < row.length; ++j) { cell = row[j]; column = columns[j]; columnIndex = C.JSArray_methods.indexOf$1(columns, t2); if (columnIndex === -1) { line = "## ERROR: colum not found - " + t2; toZone = $.printToZone; if (toZone == null) H.printString(line); else toZone.call$1(line); continue; } groupCell = row[columnIndex]; group = groupCell.get$stringValue(groupCell); if (groupCell instanceof A.ReportAgeValue) { t6 = groupCell.value; t6.toString; if (t6 < 30) group = "age_group_0"; else if (t6 < 60) group = "age_group_30"; else if (t6 < 90) group = "age_group_60"; else group = t6 < 120 ? "age_group_90" : "age_group_120"; } else if (group.length !== 0 && A.isValidDate(group)) { date = P.DateTime_tryParse(group); group = C.JSArray_methods.get$first((date == null ? new P.DateTime(Date.now(), false) : date).toIso8601String$0().split("T")); if (t3) group = J.substring$2$s(group, 0, 4) + "-01-01"; else if (t4) group = J.substring$2$s(group, 0, 7) + "-01"; } if (!totals.containsKey$1(0, group)) totals.$indexSet(0, group, P.LinkedHashMap_LinkedHashMap$_literal(["count", 0], t1, t5)); if (column === t2) { t6 = totals.$index(0, group); t6.$indexSet(0, "count", t6.$index(0, "count") + 1); } t6 = cell instanceof A.ReportNumberValue; if (t6 || cell instanceof A.ReportAgeValue || cell instanceof A.ReportDurationValue) { if (!totals.$index(0, group).containsKey$1(0, column)) totals.$index(0, group).$indexSet(0, column, 0); if (t6) { t6 = cell.currencyId; t7 = company.settings.currencyId; t6 = t6 !== (t7 == null ? "1" : t7); } else t6 = false; if (t6) { cellValue = cell.value; rate = cell.exchangeRate; if (rate == null || rate === 0 || rate === 1) { t6 = cell.currencyId; t7 = company.settings.currencyId; rate = R.getExchangeRate(currencyMap, t6, t7 == null ? "1" : t7); } t6 = company.settings.currencyId; if (t6 == null) t6 = "1"; cellValue = Y.round(cellValue / rate, J.$index$asx(currencyMap._map$_map, t6).precision); t6 = totals.$index(0, group); t6.$indexSet(0, column, t6.$index(0, column) + cellValue); } else { t6 = totals.$index(0, group); t6.$indexSet(0, column, t6.$index(0, column) + cell.get$doubleValue()); } } } } t1 = totals.get$keys(totals); rows = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")); sortedColumns = reportResult.sortedColumns$1(reportState); t1 = reportSettings.sortColumn; C.JSArray_methods.sort$1(rows, new L.calculateReportTotals_closure(totals, C.JSArray_methods.contains$1(sortedColumns, t1) ? C.JSArray_methods.indexOf$1(sortedColumns, t1) : 0, columns, sortedColumns, reportSettings)); return new L.GroupTotals(totals, rows); }, ReportsScreenBuilder: function ReportsScreenBuilder(t0) { this.key = t0; }, ReportsScreenBuilder_build_closure: function ReportsScreenBuilder_build_closure() { }, ReportsScreenVM: function ReportsScreenVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.reportResult = t1; _.reportState = t2; _.groupTotals = t3; _.onReportColumnsChanged = t4; _.onExportPressed = t5; _.onReportFiltersChanged = t6; _.onReportSorted = t7; _.onReportTotalsSorted = t8; _.onSettingsChanged = t9; }, ReportsScreenVM_fromStore_closure2: function ReportsScreenVM_fromStore_closure2(t0, t1) { this.store = t0; this.state = t1; }, ReportsScreenVM_fromStore_closure3: function ReportsScreenVM_fromStore_closure3(t0, t1) { this.store = t0; this.state = t1; }, ReportsScreenVM_fromStore_closure1: function ReportsScreenVM_fromStore_closure1(t0, t1) { this.store = t0; this.report = t1; }, ReportsScreenVM_fromStore__closure0: function ReportsScreenVM_fromStore__closure0(t0, t1, t2) { this.store = t0; this.report = t1; this.filterMap = t2; }, ReportsScreenVM_fromStore_closure: function ReportsScreenVM_fromStore_closure(t0, t1, t2) { this.state = t0; this.reportSettings = t1; this.store = t2; }, ReportsScreenVM_fromStore__closure7: function ReportsScreenVM_fromStore__closure7(t0, t1, t2) { this.state = t0; this.reportSettings = t1; this.columns = t2; }, ReportsScreenVM_fromStore___closure0: function ReportsScreenVM_fromStore___closure0(t0) { this.columns = t0; }, ReportsScreenVM_fromStore__closure8: function ReportsScreenVM_fromStore__closure8(t0) { this.settings = t0; }, ReportsScreenVM_fromStore__closure9: function ReportsScreenVM_fromStore__closure9(t0) { this.userCompany = t0; }, ReportsScreenVM_fromStore_closure4: function ReportsScreenVM_fromStore_closure4(t0, t1) { this.state = t0; this.store = t1; }, ReportsScreenVM_fromStore__closure: function ReportsScreenVM_fromStore__closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.group = t1; _.store = t2; _.report = t3; _.chart = t4; _.subgroup = t5; _.selectedGroup = t6; _.customStartDate = t7; _.customEndDate = t8; }, ReportsScreenVM_fromStore_closure0: function ReportsScreenVM_fromStore_closure0(t0, t1, t2) { this._box_1 = t0; this.state = t1; this.groupTotals = t2; }, ReportsScreenVM_fromStore__closure1: function ReportsScreenVM_fromStore__closure1(t0, t1) { this._box_0 = t0; this.localization = t1; }, ReportsScreenVM_fromStore__closure2: function ReportsScreenVM_fromStore__closure2(t0, t1, t2) { this._box_0 = t0; this._box_1 = t1; this.context = t2; }, ReportsScreenVM_fromStore__closure3: function ReportsScreenVM_fromStore__closure3(t0) { this.context = t0; }, ReportsScreenVM_fromStore__closure4: function ReportsScreenVM_fromStore__closure4() { }, ReportsScreenVM_fromStore__closure5: function ReportsScreenVM_fromStore__closure5(t0, t1) { this._box_0 = t0; this.localization = t1; }, ReportsScreenVM_fromStore__closure6: function ReportsScreenVM_fromStore__closure6(t0, t1, t2) { this._box_0 = t0; this.groupTotals = t1; this.columns = t2; }, ReportsScreenVM_fromStore___closure: function ReportsScreenVM_fromStore___closure(t0, t1) { this._box_0 = t0; this.row = t1; }, GroupTotals: function GroupTotals(t0, t1) { this.totals = t0; this.rows = t1; }, memoizeedGroupTotals_closure: function memoizeedGroupTotals_closure() { }, calculateReportTotals_closure: function calculateReportTotals_closure(t0, t1, t2, t3, t4) { var _ = this; _.totals = t0; _.index = t1; _.columns = t2; _.sortedColumns = t3; _.reportSettings = t4; }, DeviceSettingsVM_fromStore: function(store) { return new L.DeviceSettingsVM(store.get$_store$_state(), new L.DeviceSettingsVM_fromStore_closure(), new L.DeviceSettingsVM_fromStore_closure0(store), new L.DeviceSettingsVM_fromStore_closure1(store), new L.DeviceSettingsVM_fromStore_closure2(store), new L.DeviceSettingsVM_fromStore_closure3(store), new L.DeviceSettingsVM_fromStore_closure4(store), new L.DeviceSettingsVM_fromStore_closure5(store), new L.DeviceSettingsVM_fromStore_closure6(store), new L.DeviceSettingsVM_fromStore_closure7(store), new L.DeviceSettingsVM_fromStore_closure8(store), new L.DeviceSettingsVM_fromStore_closure9(store), new L.DeviceSettingsVM_fromStore_closure10(store), P.Future_Future(new L.DeviceSettingsVM_fromStore_closure11(), type$.legacy_bool)); }, DeviceSettingsScreen: function DeviceSettingsScreen(t0) { this.key = t0; }, DeviceSettingsScreen_build_closure: function DeviceSettingsScreen_build_closure() { }, DeviceSettingsVM: function DeviceSettingsVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.state = t0; _.onRefreshTap = t1; _.onLogoutTap = t2; _.onDarkModeChanged = t3; _.onCustomColorsChanged = t4; _.onLayoutChanged = t5; _.onMenuModeChanged = t6; _.onHistoryModeChanged = t7; _.onColorThemeChanged = t8; _.onLongPressSelectionIsDefault = t9; _.onRequireAuthenticationChanged = t10; _.onPersistDataChanged = t11; _.onRowsPerPageChanged = t12; _.authenticationSupported = t13; }, DeviceSettingsVM_fromStore_closure: function DeviceSettingsVM_fromStore_closure() { }, DeviceSettingsVM_fromStore_closure0: function DeviceSettingsVM_fromStore_closure0(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure1: function DeviceSettingsVM_fromStore_closure1(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure7: function DeviceSettingsVM_fromStore_closure7(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure4: function DeviceSettingsVM_fromStore_closure4(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure5: function DeviceSettingsVM_fromStore_closure5(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure6: function DeviceSettingsVM_fromStore_closure6(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure10: function DeviceSettingsVM_fromStore_closure10(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure3: function DeviceSettingsVM_fromStore_closure3(t0) { this.store = t0; }, DeviceSettingsVM_fromStore__closure: function DeviceSettingsVM_fromStore__closure(t0, t1) { this.value = t0; this.store = t1; }, DeviceSettingsVM_fromStore_closure8: function DeviceSettingsVM_fromStore_closure8(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure11: function DeviceSettingsVM_fromStore_closure11() { }, DeviceSettingsVM_fromStore_closure2: function DeviceSettingsVM_fromStore_closure2(t0) { this.store = t0; }, DeviceSettingsVM_fromStore_closure9: function DeviceSettingsVM_fromStore_closure9(t0) { this.store = t0; }, ProductSettings: function ProductSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductSettingsState: function _ProductSettingsState(t0) { var _ = this; _._widget = _._product_settings$_focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ProductSettingsState_build_closure: function _ProductSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure5: function _ProductSettingsState_build__closure5(t0) { this.value = t0; }, _ProductSettingsState_build_closure0: function _ProductSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure4: function _ProductSettingsState_build__closure4(t0) { this.value = t0; }, _ProductSettingsState_build_closure1: function _ProductSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure3: function _ProductSettingsState_build__closure3(t0) { this.value = t0; }, _ProductSettingsState_build_closure2: function _ProductSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure2: function _ProductSettingsState_build__closure2(t0) { this.value = t0; }, _ProductSettingsState_build_closure3: function _ProductSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure1: function _ProductSettingsState_build__closure1(t0) { this.value = t0; }, _ProductSettingsState_build_closure4: function _ProductSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure0: function _ProductSettingsState_build__closure0(t0) { this.value = t0; }, _ProductSettingsState_build_closure5: function _ProductSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.company = t1; }, _ProductSettingsState_build__closure: function _ProductSettingsState_build__closure(t0) { this.value = t0; }, SettingsScreenVM_fromStore: function(store) { return new L.SettingsScreenVM(store.get$_store$_state()); }, SettingsScreenBuilder: function SettingsScreenBuilder(t0) { this.key = t0; }, SettingsScreenBuilder_build_closure: function SettingsScreenBuilder_build_closure() { }, SettingsScreenVM: function SettingsScreenVM(t0) { this.state = t0; }, TaskSettings: function TaskSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskSettingsState: function _TaskSettingsState(t0, t1) { var _ = this; _._task_settings$_focusNode = null; _._taskRateController = t0; _._widget = _._task_settings$_controllers = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _TaskSettingsState_didChangeDependencies_closure: function _TaskSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskSettingsState_didChangeDependencies_closure0: function _TaskSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskSettingsState_dispose_closure: function _TaskSettingsState_dispose_closure(t0) { this.$this = t0; }, _TaskSettingsState__onChanged_closure: function _TaskSettingsState__onChanged_closure(t0, t1) { this.$this = t0; this.state = t1; }, _TaskSettingsState_build_closure: function _TaskSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure5: function _TaskSettingsState_build__closure5(t0) { this.value = t0; }, _TaskSettingsState_build_closure0: function _TaskSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure4: function _TaskSettingsState_build__closure4(t0) { this.value = t0; }, _TaskSettingsState_build_closure1: function _TaskSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure3: function _TaskSettingsState_build__closure3(t0) { this.value = t0; }, _TaskSettingsState_build_closure2: function _TaskSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure2: function _TaskSettingsState_build__closure2(t0) { this.value = t0; }, _TaskSettingsState_build_closure3: function _TaskSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure1: function _TaskSettingsState_build__closure1(t0) { this.value = t0; }, _TaskSettingsState_build_closure4: function _TaskSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.company = t1; }, _TaskSettingsState_build__closure0: function _TaskSettingsState_build__closure0(t0) { this.value = t0; }, _TaskSettingsState_build_closure5: function _TaskSettingsState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TaskSettingsState_build__closure: function _TaskSettingsState_build__closure(t0) { this.value = t0; }, _TaskSettingsState_build_closure6: function _TaskSettingsState_build_closure6(t0) { this.localization = t0; }, _TaskSettingsState_build_closure7: function _TaskSettingsState_build_closure7(t0, t1) { this.viewModel = t0; this.context = t1; }, TemplatesAndReminders: function TemplatesAndReminders(t0, t1) { this.viewModel = t0; this.key = t1; }, _TemplatesAndRemindersState: function _TemplatesAndRemindersState(t0, t1, t2, t3, t4, t5) { var _ = this; _._templates_and_reminders$_debouncer = t0; _._lastBody = _._lastSubject = null; _._defaultBody = _._defaultSubject = _._bodyPreview = _._subjectPreview = ""; _._templates_and_reminders$_isLoading = false; _._templates_and_reminders$_controller = _._templates_and_reminders$_focusNode = null; _._subjectController = t1; _._templates_and_reminders$_bodyController = t2; _._templates_and_reminders$_controllers = t3; _.SingleTickerProviderStateMixin__ticker = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _TemplatesAndRemindersState_dispose_closure: function _TemplatesAndRemindersState_dispose_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__loadTemplate_closure: function _TemplatesAndRemindersState__loadTemplate_closure(t0, t1, t2) { this.$this = t0; this.templateMap = t1; this.emailTemplate = t2; }, _TemplatesAndRemindersState__onChanged_closure: function _TemplatesAndRemindersState__onChanged_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__onChanged__closure: function _TemplatesAndRemindersState__onChanged__closure(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure0: function _TemplatesAndRemindersState__onChanged__closure0(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure1: function _TemplatesAndRemindersState__onChanged__closure1(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure2: function _TemplatesAndRemindersState__onChanged__closure2(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure3: function _TemplatesAndRemindersState__onChanged__closure3(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure4: function _TemplatesAndRemindersState__onChanged__closure4(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure5: function _TemplatesAndRemindersState__onChanged__closure5(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure6: function _TemplatesAndRemindersState__onChanged__closure6(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure7: function _TemplatesAndRemindersState__onChanged__closure7(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure8: function _TemplatesAndRemindersState__onChanged__closure8(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure9: function _TemplatesAndRemindersState__onChanged__closure9(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure10: function _TemplatesAndRemindersState__onChanged__closure10(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__onChanged__closure11: function _TemplatesAndRemindersState__onChanged__closure11(t0, t1) { this.body = t0; this.subject = t1; }, _TemplatesAndRemindersState__handleTabSelection_closure: function _TemplatesAndRemindersState__handleTabSelection_closure(t0) { this.$this = t0; }, _TemplatesAndRemindersState__handleTabSelection_closure0: function _TemplatesAndRemindersState__handleTabSelection_closure0(t0) { this.$this = t0; }, _TemplatesAndRemindersState__handleTabSelection__closure: function _TemplatesAndRemindersState__handleTabSelection__closure(t0, t1, t2) { this.$this = t0; this.subject = t1; this.body = t2; }, _TemplatesAndRemindersState_build_closure1: function _TemplatesAndRemindersState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TemplatesAndRemindersState_build__closure4: function _TemplatesAndRemindersState_build__closure4(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.value = t2; }, _TemplatesAndRemindersState_build_closure: function _TemplatesAndRemindersState_build_closure(t0) { this.company = t0; }, _TemplatesAndRemindersState_build_closure0: function _TemplatesAndRemindersState_build_closure0(t0) { this.localization = t0; }, _TemplatesAndRemindersState_build_closure2: function _TemplatesAndRemindersState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TemplatesAndRemindersState_build__closure3: function _TemplatesAndRemindersState_build__closure3(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure3: function _TemplatesAndRemindersState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TemplatesAndRemindersState_build__closure2: function _TemplatesAndRemindersState_build__closure2(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure4: function _TemplatesAndRemindersState_build_closure4(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TemplatesAndRemindersState_build__closure1: function _TemplatesAndRemindersState_build__closure1(t0, t1, t2, t3, t4) { var _ = this; _.enabled = t0; _.days = t1; _.schedule = t2; _.feeAmount = t3; _.feePercent = t4; }, _TemplatesAndRemindersState_build_closure5: function _TemplatesAndRemindersState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TemplatesAndRemindersState_build__closure0: function _TemplatesAndRemindersState_build__closure0(t0) { this.value = t0; }, _TemplatesAndRemindersState_build_closure7: function _TemplatesAndRemindersState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _TemplatesAndRemindersState_build__closure: function _TemplatesAndRemindersState_build__closure(t0) { this.value = t0; }, _TemplatesAndRemindersState_build_closure6: function _TemplatesAndRemindersState_build_closure6(t0) { this.localization = t0; }, ReminderSettings: function ReminderSettings(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.enabled = t0; _.numDays = t1; _.feeAmount = t2; _.feePercent = t3; _.schedule = t4; _.onChanged = t5; _.key = t6; }, _ReminderSettingsState: function _ReminderSettingsState(t0, t1, t2, t3, t4, t5) { var _ = this; _._daysController = t0; _._feeAmountController = t1; _._feePercentController = t2; _._templates_and_reminders$_schedule = _._templates_and_reminders$_enabled = null; _._templates_and_reminders$_controllers = t3; _._templates_and_reminders$_debouncer = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _ReminderSettingsState_dispose_closure: function _ReminderSettingsState_dispose_closure(t0) { this.$this = t0; }, _ReminderSettingsState_didChangeDependencies_closure: function _ReminderSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ReminderSettingsState_didChangeDependencies_closure0: function _ReminderSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ReminderSettingsState__onTextChanged_closure: function _ReminderSettingsState__onTextChanged_closure(t0) { this.$this = t0; }, _ReminderSettingsState_build_closure0: function _ReminderSettingsState_build_closure0(t0) { this.$this = t0; }, _ReminderSettingsState_build_closure: function _ReminderSettingsState_build_closure(t0) { this.$this = t0; }, EmailPreview: function EmailPreview(t0, t1, t2, t3) { var _ = this; _.subject = t0; _.body = t1; _.isLoading = t2; _.key = t3; }, __TemplatesAndRemindersState_State_SingleTickerProviderStateMixin: function __TemplatesAndRemindersState_State_SingleTickerProviderStateMixin() { }, SubscriptionScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).subscriptionState.toString; t5 = $.$get$memoizedFilteredSubscriptionList(); t6 = state.getUISelection$1(C.EntityType_subscription); t7 = t4.$index(t1, t3).subscriptionState.map; t8 = t4.$index(t1, t3).subscriptionState.list; t2 = t2.subscriptionUIState.listUIState; t8 = t5.call$4(t6, t7, t8, t2); t4.$index(t1, t3).toString; t2.toString; return new L.SubscriptionScreenVM(t8); }, SubscriptionScreenBuilder: function SubscriptionScreenBuilder(t0) { this.key = t0; }, SubscriptionScreenBuilder_build_closure: function SubscriptionScreenBuilder_build_closure() { }, SubscriptionScreenVM: function SubscriptionScreenVM(t0) { this.subscriptionList = t0; }, TaskViewVM_TaskViewVM$fromStore: function(store) { var t4, task, t5, client, project, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); task = t4.$index(t1, t3).taskState.$get$1(0, t2.taskUIState.selectedId); t2 = t4.$index(t1, t3).clientState.map; t5 = task.clientId; client = J.$index$asx(t2._map$_map, t5); t5 = t4.$index(t1, t3).projectState.map; t2 = task.projectId; project = J.$index$asx(t5._map$_map, t2); t3 = t4.$index(t1, t3).userCompany.company; task.get$isNew(); return new L.TaskViewVM(state, task, client, project, t3, new L.TaskViewVM_TaskViewVM$fromStore_closure(task), new L.TaskViewVM_TaskViewVM$fromStore_closure0(new L.TaskViewVM_TaskViewVM$fromStore__toggleTask(store, task)), new L.TaskViewVM_TaskViewVM$fromStore_closure1(new L.TaskViewVM_TaskViewVM$fromStore__handleRefresh(store, task)), new L.TaskViewVM_TaskViewVM$fromStore_closure2(store, task), new L.TaskViewVM_TaskViewVM$fromStore_closure3(store, task)); }, TaskViewScreen: function TaskViewScreen(t0) { this.key = t0; }, TaskViewScreen_build_closure0: function TaskViewScreen_build_closure0() { }, TaskViewScreen_build_closure: function TaskViewScreen_build_closure(t0) { this.$this = t0; }, TaskViewVM: function TaskViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.task = t1; _.client = t2; _.project = t3; _.company = t4; _.onEditPressed = t5; _.onFabPressed = t6; _.onRefreshed = t7; _.onUploadDocument = t8; _.onDeleteDocument = t9; }, TaskViewVM_TaskViewVM$fromStore__handleRefresh: function TaskViewVM_TaskViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__toggleTask: function TaskViewVM_TaskViewVM$fromStore__toggleTask(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__toggleTask_closure: function TaskViewVM_TaskViewVM$fromStore__toggleTask_closure(t0) { this.localization = t0; }, TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0: function TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore__toggleTask__closure: function TaskViewVM_TaskViewVM$fromStore__toggleTask__closure(t0) { this.error = t0; }, TaskViewVM_TaskViewVM$fromStore_closure0: function TaskViewVM_TaskViewVM$fromStore_closure0(t0) { this._toggleTask = t0; }, TaskViewVM_TaskViewVM$fromStore_closure: function TaskViewVM_TaskViewVM$fromStore_closure(t0) { this.task = t0; }, TaskViewVM_TaskViewVM$fromStore_closure1: function TaskViewVM_TaskViewVM$fromStore_closure1(t0) { this._handleRefresh = t0; }, TaskViewVM_TaskViewVM$fromStore_closure2: function TaskViewVM_TaskViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__closure0: function TaskViewVM_TaskViewVM$fromStore__closure0(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore__closure1: function TaskViewVM_TaskViewVM$fromStore__closure1(t0) { this.context = t0; }, TaskViewVM_TaskViewVM$fromStore___closure: function TaskViewVM_TaskViewVM$fromStore___closure(t0) { this.error = t0; }, TaskViewVM_TaskViewVM$fromStore_closure3: function TaskViewVM_TaskViewVM$fromStore_closure3(t0, t1) { this.store = t0; this.task = t1; }, TaskViewVM_TaskViewVM$fromStore__closure: function TaskViewVM_TaskViewVM$fromStore__closure(t0, t1) { this.store = t0; this.task = t1; }, TaskStatusEdit: function TaskStatusEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _TaskStatusEditState: function _TaskStatusEditState(t0, t1, t2, t3) { var _ = this; _._task_status_edit$_debouncer = t0; _._task_status_edit$_autoValidate = false; _._task_status_edit$_nameController = t1; _._task_status_edit$_controllers = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, _TaskStatusEditState_didChangeDependencies_closure: function _TaskStatusEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _TaskStatusEditState_didChangeDependencies_closure0: function _TaskStatusEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _TaskStatusEditState_dispose_closure: function _TaskStatusEditState_dispose_closure(t0) { this.$this = t0; }, _TaskStatusEditState__onChanged_closure: function _TaskStatusEditState__onChanged_closure(t0) { this.$this = t0; }, _TaskStatusEditState__onChanged_closure0: function _TaskStatusEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.taskStatus = t1; }, _TaskStatusEditState_build_closure0: function _TaskStatusEditState_build_closure0(t0) { this.viewModel = t0; }, _TaskStatusEditState_build_closure1: function _TaskStatusEditState_build_closure1(t0, t1) { this.$this = t0; this.viewModel = t1; }, _TaskStatusEditState_build__closure: function _TaskStatusEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _TaskStatusEditState_build_closure: function _TaskStatusEditState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.viewModel = t2; _.taskStatus = t3; }, _TaskStatusEditState_build__closure0: function _TaskStatusEditState_build__closure0(t0) { this.localization = t0; }, _TaskStatusEditState_build__closure1: function _TaskStatusEditState_build__closure1(t0, t1) { this.viewModel = t0; this.taskStatus = t1; }, _TaskStatusEditState_build___closure: function _TaskStatusEditState_build___closure(t0) { this.value = t0; }, TaskStatusView: function TaskStatusView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _TaskStatusViewState: function _TaskStatusViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _TaskStatusViewState_build_closure: function _TaskStatusViewState_build_closure(t0) { this.viewModel = t0; }, WebhookView: function WebhookView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _WebhookViewState: function _WebhookViewState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _WebhookViewState_build_closure: function _WebhookViewState_build_closure(t0) { this.viewModel = t0; }, TargetListTile: function TargetListTile(t0, t1) { this.webhook = t0; this.key = t1; }, TargetListTile_build_closure: function TargetListTile_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, loadEmailTemplate: function(body, context, invoice, onComplete, subject, template) { var state, credentials, url, t2, t3, t4, t5, t1 = {}; t1.subject = subject; t1.body = body; state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/templates"; template = "email_template_" + template; t2 = invoice == null; t3 = t2 ? null : invoice.entityType; t3 = H.S(t3 == null ? "" : t3); t2 = t2 ? null : invoice.id; if (t2 == null) t2 = ""; t4 = subject.length === 0 && body.length === 0 && true ? template : ""; t5 = type$.legacy_String; new F.WebClient().post$3$data(url, credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["entity", t3, "entity_id", t2, "template", t4, "subject", subject, "body", body], t5, t5))).then$1$1(0, new L.loadEmailTemplate_closure(onComplete), type$.Null).catchError$1(new L.loadEmailTemplate_closure0(t1, context, onComplete)); }, loadEmailTemplate_closure: function loadEmailTemplate_closure(t0) { this.onComplete = t0; }, loadEmailTemplate_closure0: function loadEmailTemplate_closure0(t0, t1, t2) { this._box_0 = t0; this.context = t1; this.onComplete = t2; }, WebUtils_downloadBinaryFile: function(filename, data) { var t1 = W.AnchorElement_AnchorElement("data:application/octet-stream;charset=utf-16le;base64," + C.C_Base64Codec.get$encoder().convert$1(data)); t1.setAttribute("download", filename); t1.click(); }, WebUtils_registerWebView: function(html) { $.$get$platformViewRegistry().registerViewFactory$2(html, new L.WebUtils_registerWebView_closure(html)); }, WebUtils_warnChanges: function(store) { C.C__BeforeUnloadEventStreamProvider.forTarget$1(window).listen$1(0, new L.WebUtils_warnChanges_closure(store)); }, WebUtils_registerWebView_closure: function WebUtils_registerWebView_closure(t0) { this.html = t0; }, WebUtils_warnChanges_closure: function WebUtils_warnChanges_closure(t0) { this.store = t0; }, LocalAuthentication: function LocalAuthentication() { }, LogRecord: function LogRecord(t0, t1, t2) { this.level = t0; this.message = t1; this.loggerName = t2; }, WindowsStyle: function WindowsStyle(t0, t1, t2, t3) { var _ = this; _.separatorPattern = t0; _.needsSeparatorPattern = t1; _.rootPattern = t2; _.relativeRootPattern = t3; }, ImageWrapper: function ImageWrapper(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21) { var _ = this; _.imageProvider = t0; _.loadingBuilder = t1; _.errorBuilder = t2; _.backgroundDecoration = t3; _.gaplessPlayback = t4; _.heroAttributes = t5; _.enableRotation = t6; _.maxScale = t7; _.minScale = t8; _.initialScale = t9; _.controller = t10; _.scaleStateController = t11; _.basePosition = t12; _.scaleStateCycle = t13; _.onTapUp = t14; _.onTapDown = t15; _.outerSize = t16; _.gestureDetectorBehavior = t17; _.tightMode = t18; _.filterQuality = t19; _.disableGestures = t20; _.key = t21; }, _ImageWrapperState: function _ImageWrapperState(t0) { var _ = this; _._photo_view_wrappers$_imageInfo = _._imageChunkEvent = _._photo_view_wrappers$_imageStream = _._photo_view_wrappers$_imageStreamListener = null; _._loading = true; _._widget = _._photo_view_wrappers$_stackTrace = _._photo_view_wrappers$_lastException = _._imageSize = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ImageWrapperState__getOrCreateListener_handleImageChunk: function _ImageWrapperState__getOrCreateListener_handleImageChunk(t0) { this.$this = t0; }, _ImageWrapperState__getOrCreateListener_handleImageChunk_closure: function _ImageWrapperState__getOrCreateListener_handleImageChunk_closure(t0, t1) { this.$this = t0; this.event = t1; }, _ImageWrapperState__getOrCreateListener_handleImageFrame: function _ImageWrapperState__getOrCreateListener_handleImageFrame(t0) { this.$this = t0; }, _ImageWrapperState__getOrCreateListener_handleImageFrame_closure: function _ImageWrapperState__getOrCreateListener_handleImageFrame_closure(t0, t1) { this.$this = t0; this.info = t1; }, _ImageWrapperState__getOrCreateListener_handleError: function _ImageWrapperState__getOrCreateListener_handleError(t0) { this.$this = t0; }, _ImageWrapperState__getOrCreateListener_handleError_closure: function _ImageWrapperState__getOrCreateListener_handleError_closure(t0, t1, t2) { this.$this = t0; this.error = t1; this.stackTrace = t2; }, _registerFactory: function(debug) { var viewType = debug ? "__webPointerInterceptorViewType__debug__" : "__webPointerInterceptorViewType__"; $.$get$platformViewRegistry().registerViewFactory$2(viewType, new L._registerFactory_closure(debug)); }, PointerInterceptor$: function(child) { if (!$.PointerInterceptor__registered) { L._registerFactory(false); L._registerFactory(true); $.PointerInterceptor__registered = true; } return new L.PointerInterceptor(child, null); }, _registerFactory_closure: function _registerFactory_closure(t0) { this.debug = t0; }, PointerInterceptor: function PointerInterceptor(t0, t1) { this.child = t0; this.key = t1; } }, E = { AxisTicks$: function(tick, $D) { var t1 = tick.locationPx, t2 = tick.labelOffsetPx, t3 = tick.textElement; return new E.AxisTicks(t1, tick.value, t3, t1, t2, $D._eval$1("AxisTicks<0>")); }, AxisTicks: function AxisTicks(t0, t1, t2, t3, t4, t5) { var _ = this; _._markedForRemoval = false; _._previousLocation = _._currentLocation = null; _._targetLocation = t0; _._targetOpacity = _._previousOpacity = _._currentOpacity = null; _.value = t1; _.textElement = t2; _.locationPx = t3; _.labelOffsetPx = t4; _.$ti = t5; }, SimpleOrdinalScale: function SimpleOrdinalScale(t0, t1, t2, t3, t4, t5) { var _ = this; _._stepSizeConfig = t0; _._domain = t1; _._range = t2; _._viewportScale = t3; _._viewportTranslatePx = t4; _._rangeBandConfig = t5; _._scaleChanged = true; _.__SimpleOrdinalScale__cachedRangeBandSize = _.__SimpleOrdinalScale__cachedRangeBandShift = _.__SimpleOrdinalScale__cachedStepSizePixels = $; _._viewportStartingDomain = _._viewportDataSize = null; }, _DatumPoint__DatumPoint$from0: function(other, x, y, $D) { var t1 = x == null ? other.x : x, t2 = y == null ? other.y : y; return new E._DatumPoint0(other.datum, other.domain, other.series, t1, t2, $D._eval$1("_DatumPoint0<0>")); }, LinePointHighlighter0: function LinePointHighlighter0(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.selectionModelType = t0; _.defaultRadiusPx = t1; _.radiusPaddingPx = t2; _.showHorizontalFollowLine = t3; _.showVerticalFollowLine = t4; _.dashPattern = t5; _.drawFollowLinesAcrossChart = t6; _.symbolRenderer = t7; _.__LinePointHighlighter__lifecycleListener = _.__LinePointHighlighter__view = _.__LinePointHighlighter__chart = $; _._seriesPointMap = t8; _._line_point_highlighter$_currentKeys = t9; _.$ti = t10; }, LinePointHighlighter__updateViewData_closure: function LinePointHighlighter__updateViewData_closure(t0, t1) { this.$this = t0; this.newSeriesMap = t1; }, _LinePointLayoutView: function _LinePointLayoutView(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.layoutConfig = t0; _.showHorizontalFollowLine = t1; _.showVerticalFollowLine = t2; _.chart = t3; _.dashPattern = t4; _.___LinePointLayoutView__drawAreaBounds = $; _.drawFollowLinesAcrossChart = t5; _.symbolRenderer = t6; _._seriesPointMap = null; _.$ti = t7; }, _LinePointLayoutView_paint_closure: function _LinePointLayoutView_paint_closure(t0, t1) { this.$this = t0; this.keysToRemove = t1; }, _LinePointLayoutView_paint_closure0: function _LinePointLayoutView_paint_closure0(t0, t1, t2) { this.$this = t0; this.points = t1; this.animationPercent = t2; }, _DatumPoint0: function _DatumPoint0(t0, t1, t2, t3, t4, t5) { var _ = this; _.datum = t0; _.domain = t1; _.series = t2; _.x = t3; _.y = t4; _.$ti = t5; }, _PointRendererElement: function _PointRendererElement(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.point = t0; _.color = t1; _.fillColor = t2; _.radiusPx = t3; _.measureAxisPosition = t4; _.strokeWidthPx = t5; _.symbolRenderer = t6; _.$ti = t7; }, _AnimatedPoint: function _AnimatedPoint(t0, t1) { var _ = this; _.key = t0; _._previousPoint = null; _.___AnimatedPoint__targetPoint = $; _._currentPoint = null; _.animatingOut = false; _.$ti = t1; }, LinePointHighlighterFollowLineType: function LinePointHighlighterFollowLineType(t0) { this._line_point_highlighter$_name = t0; }, LinePointHighlighter: function LinePointHighlighter(t0, t1) { this.desiredGestures = t0; this.$ti = t1; }, WidgetLayoutDelegate: function WidgetLayoutDelegate(t0, t1, t2) { var _ = this; _.chartID = t0; _.isRTL = t1; _.idAndBehavior = t2; _._debugChildrenNeedingLayout = _._idToChild = null; }, WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_set: function WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_set(t0) { this._box_0 = t0; }, WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_get: function WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_get(t0) { this._box_0 = t0; }, _HorizontalJustification: function _HorizontalJustification(t0) { this._widget_layout_delegate$_name = t0; }, Clock: function Clock() { }, Clock0: function Clock0() { }, _RealtimeClock: function _RealtimeClock() { }, FileSystem0: function FileSystem0() { }, CupertinoDynamicColor_maybeResolve: function(resolvable, context) { if (resolvable == null) return null; return resolvable instanceof E.CupertinoDynamicColor ? resolvable.resolveFrom$1(context) : resolvable; }, CupertinoDynamicColor: function CupertinoDynamicColor(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._effectiveColor = t0; _._colors$_debugLabel = t1; _._debugResolveContext = t2; _.color = t3; _.darkColor = t4; _.highContrastColor = t5; _.darkHighContrastColor = t6; _.elevatedColor = t7; _.darkElevatedColor = t8; _.highContrastElevatedColor = t9; _.darkHighContrastElevatedColor = t10; _.value = t11; }, CupertinoDynamicColor_toString_toString: function CupertinoDynamicColor_toString_toString(t0) { this.$this = t0; }, _CupertinoDynamicColor_Color_Diagnosticable: function _CupertinoDynamicColor_Color_Diagnosticable() { }, CupertinoScrollbar: function CupertinoScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.thicknessWhileDragging = t0; _.radiusWhileDragging = t1; _.child = t2; _.controller = t3; _.isAlwaysShown = t4; _.radius = t5; _.thickness = t6; _.fadeDuration = t7; _.timeToFade = t8; _.pressDuration = t9; _.notificationPredicate = t10; _.interactive = t11; _.key = t12; }, _CupertinoScrollbarState: function _CupertinoScrollbarState(t0, t1, t2) { var _ = this; _.___CupertinoScrollbarState__thicknessAnimationController = $; _._pressStartAxisPosition = 0; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisPosition = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CupertinoScrollbarState_initState_closure: function _CupertinoScrollbarState_initState_closure(t0) { this.$this = t0; }, _CupertinoScrollbarState_handleThumbPress_closure: function _CupertinoScrollbarState_handleThumbPress_closure() { }, AppBar$: function(actions, actionsIconTheme, automaticallyImplyLeading, backgroundColor, backwardsCompatibility, bottom, bottomOpacity, brightness, centerTitle, elevation, excludeHeaderSemantics, flexibleSpace, foregroundColor, iconTheme, leading, leadingWidth, primary, shadowColor, shape, systemOverlayStyle, textTheme, title, titleSpacing, titleTextStyle, toolbarHeight, toolbarOpacity, toolbarTextStyle) { var t1; if (toolbarHeight == null) { t1 = bottom == null ? null : bottom.get$preferredSize()._dy; t1 = 56 + (t1 == null ? 0 : t1); } else t1 = toolbarHeight; return new E.AppBar(leading, automaticallyImplyLeading, title, actions, flexibleSpace, bottom, elevation, shadowColor, shape, backgroundColor, foregroundColor, brightness, iconTheme, actionsIconTheme, textTheme, true, centerTitle, false, titleSpacing, toolbarOpacity, bottomOpacity, new P.Size(1 / 0, t1), toolbarHeight, leadingWidth, backwardsCompatibility, toolbarTextStyle, titleTextStyle, systemOverlayStyle, null); }, _ToolbarContainerLayout: function _ToolbarContainerLayout(t0) { this.toolbarHeight = t0; }, AppBar: function AppBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28) { var _ = this; _.leading = t0; _.automaticallyImplyLeading = t1; _.title = t2; _.actions = t3; _.flexibleSpace = t4; _.bottom = t5; _.elevation = t6; _.shadowColor = t7; _.shape = t8; _.backgroundColor = t9; _.foregroundColor = t10; _.brightness = t11; _.iconTheme = t12; _.actionsIconTheme = t13; _.textTheme = t14; _.primary = t15; _.centerTitle = t16; _.excludeHeaderSemantics = t17; _.titleSpacing = t18; _.toolbarOpacity = t19; _.bottomOpacity = t20; _.preferredSize = t21; _.toolbarHeight = t22; _.leadingWidth = t23; _.backwardsCompatibility = t24; _.toolbarTextStyle = t25; _.titleTextStyle = t26; _.systemOverlayStyle = t27; _.key = t28; }, _AppBarState: function _AppBarState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _SliverAppBarDelegate: function _SliverAppBarDelegate(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35) { var _ = this; _.leading = t0; _.automaticallyImplyLeading = t1; _.title = t2; _.actions = t3; _.flexibleSpace = t4; _.bottom = t5; _.elevation = t6; _.shadowColor = t7; _.forceElevated = t8; _.backgroundColor = t9; _.foregroundColor = t10; _.brightness = t11; _.iconTheme = t12; _.actionsIconTheme = t13; _.textTheme = t14; _.primary = t15; _.centerTitle = t16; _.excludeHeaderSemantics = t17; _.titleSpacing = t18; _.expandedHeight = t19; _.collapsedHeight = t20; _.topPadding = t21; _.floating = t22; _.pinned = t23; _.shape = t24; _.toolbarHeight = t25; _.leadingWidth = t26; _.backwardsCompatibility = t27; _.toolbarTextStyle = t28; _.titleTextStyle = t29; _.systemOverlayStyle = t30; _._bottomHeight = t31; _.vsync = t32; _.snapConfiguration = t33; _.stretchConfiguration = t34; _.showOnScreenConfiguration = t35; }, SliverAppBar: function SliverAppBar(t0, t1, t2, t3, t4) { var _ = this; _.automaticallyImplyLeading = t0; _.title = t1; _.backgroundColor = t2; _.pinned = t3; _.key = t4; }, _SliverAppBarState: function _SliverAppBarState(t0, t1) { var _ = this; _._showOnScreenConfiguration = _._stretchConfiguration = _._snapConfiguration = null; _.TickerProviderStateMixin__tickers = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _AppBarTitleBox: function _AppBarTitleBox(t0, t1) { this.child = t0; this.key = t1; }, _RenderAppBarTitleBox: function _RenderAppBarTitleBox(t0, t1, t2) { var _ = this; _._shifted_box$_resolvedAlignment = null; _._shifted_box$_alignment = t0; _._shifted_box$_textDirection = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, __SliverAppBarState_State_TickerProviderStateMixin: function __SliverAppBarState_State_TickerProviderStateMixin() { }, BottomSheet: function BottomSheet(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.animationController = t0; _.onClosing = t1; _.builder = t2; _.enableDrag = t3; _.onDragStart = t4; _.onDragEnd = t5; _.backgroundColor = t6; _.elevation = t7; _.shape = t8; _.clipBehavior = t9; _.key = t10; }, _BottomSheetState: function _BottomSheetState(t0, t1) { var _ = this; _._childKey = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, MaterialColor: function MaterialColor(t0, t1) { this._swatch = t0; this.value = t1; }, MaterialAccentColor: function MaterialAccentColor(t0, t1) { this._swatch = t0; this.value = t1; }, Dialog$: function(backgroundColor, child, clipBehavior, elevation, insetPadding, shape) { return new E.Dialog(backgroundColor, elevation, insetPadding, clipBehavior, shape, child, null); }, AlertDialog$: function(actions, actionsPadding, backgroundColor, $content, contentPadding, key, semanticLabel, title) { return new E.AlertDialog(title, $content, contentPadding, actions, actionsPadding, backgroundColor, semanticLabel, key); }, SimpleDialog$: function(children) { return new E.SimpleDialog(children, null); }, _buildMaterialDialogTransitions: function(context, animation, secondaryAnimation, child) { return K.FadeTransition$(false, child, S.CurvedAnimation$(C.Cubic_xDo0, animation, null)); }, showDialog: function(barrierDismissible, builder, context, routeSettings, useRootNavigator, $T) { var themes, t1 = K.Navigator_of(context, true)._framework$_element; t1.toString; themes = M.InheritedTheme_capture(context, t1); return K.Navigator_of(context, true).push$1(E.DialogRoute$(C.Color_2315255808, barrierDismissible, null, builder, context, routeSettings, themes, true, $T)); }, DialogRoute$: function(barrierColor, barrierDismissible, barrierLabel, builder, context, settings, themes, useSafeArea, $T) { var t2, t3, t4, t5, t6, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$modalBarrierDismissLabel(); t2 = H.setRuntimeTypeInfo([], type$.JSArray_of_Future_bool_Function); t3 = $.Zone__current; t4 = S.ProxyAnimation$(C.C__AlwaysDismissedAnimation); t5 = H.setRuntimeTypeInfo([], type$.JSArray_OverlayEntry); t6 = $.Zone__current; return new E.DialogRoute(new E.DialogRoute_closure(builder, themes, true), barrierDismissible, t1, barrierColor, C.Duration_150000, E.dialog___buildMaterialDialogTransitions$closure(), _null, t2, new N.LabeledGlobalKey(_null, $T._eval$1("LabeledGlobalKey<_ModalScopeState<0>>")), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new S.PageStorageBucket(), _null, new P._AsyncCompleter(new P._Future(t3, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), t4, t5, C.RouteSettings_null_null, new B.ValueNotifier(_null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_String), new P._AsyncCompleter(new P._Future(t6, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), $T._eval$1("DialogRoute<0>")); }, _paddingScaleFactor: function(textScaleFactor) { var t1 = P.lerpDouble(1, 0.3333333333333333, C.JSNumber_methods.clamp$2(textScaleFactor, 1, 2) - 1); t1.toString; return t1; }, Dialog: function Dialog(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.insetPadding = t2; _.clipBehavior = t3; _.shape = t4; _.child = t5; _.key = t6; }, AlertDialog: function AlertDialog(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.title = t0; _.content = t1; _.contentPadding = t2; _.actions = t3; _.actionsPadding = t4; _.backgroundColor = t5; _.semanticLabel = t6; _.key = t7; }, SimpleDialog: function SimpleDialog(t0, t1) { this.children = t0; this.key = t1; }, DialogRoute: function DialogRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18) { var _ = this; _._pageBuilder = t0; _._barrierDismissible = t1; _._barrierLabel = t2; _._barrierColor = t3; _._transitionDuration = t4; _._transitionBuilder = t5; _.filter = t6; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t7; _._scopeKey = t8; _._subtreeKey = t9; _._storageBucket = t10; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t11; _._transitionCompleter = t12; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t13; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t14; _._navigator$_navigator = null; _._navigator$_settings = t15; _._restorationScopeId = t16; _._popCompleter = t17; _.$ti = t18; }, DialogRoute_closure: function DialogRoute_closure(t0, t1, t2) { this.builder = t0; this.themes = t1; this.useSafeArea = t2; }, FloatingActionButton$: function(backgroundColor, child, heroTag, mini, onPressed, tooltip) { return new E.FloatingActionButton(child, tooltip, backgroundColor, heroTag, onPressed, mini ? C.BoxConstraints_40_40_40_40 : C.BoxConstraints_56_56_56_56, null); }, _DefaultHeroTag: function _DefaultHeroTag() { }, FloatingActionButton: function FloatingActionButton(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.child = t0; _.tooltip = t1; _.backgroundColor = t2; _.heroTag = t3; _.onPressed = t4; _._sizeConstraints = t5; _.key = t6; }, NavigationRailThemeData_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t7, t8, t9, _null = null, t1 = a == null; if (t1 && b == null) return _null; t2 = t1 ? _null : a.backgroundColor; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.backgroundColor, t); t4 = t1 ? _null : a.elevation; t4 = P.lerpDouble(t4, t3 ? _null : b.elevation, t); t5 = t1 ? _null : a.unselectedLabelTextStyle; t5 = A.TextStyle_lerp(t5, t3 ? _null : b.unselectedLabelTextStyle, t); t6 = t1 ? _null : a.selectedLabelTextStyle; t6 = A.TextStyle_lerp(t6, t3 ? _null : b.selectedLabelTextStyle, t); t7 = t1 ? _null : a.unselectedIconTheme; t7 = T.IconThemeData_lerp(t7, t3 ? _null : b.unselectedIconTheme, t); t8 = t1 ? _null : a.selectedIconTheme; t8 = T.IconThemeData_lerp(t8, t3 ? _null : b.selectedIconTheme, t); t9 = t1 ? _null : a.groupAlignment; t9 = P.lerpDouble(t9, t3 ? _null : b.groupAlignment, t); if (t < 0.5) t1 = t1 ? _null : a.labelType; else t1 = t3 ? _null : b.labelType; return new E.NavigationRailThemeData(t2, t4, t5, t6, t7, t8, t9, t1); }, NavigationRailThemeData: function NavigationRailThemeData(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.backgroundColor = t0; _.elevation = t1; _.unselectedLabelTextStyle = t2; _.selectedLabelTextStyle = t3; _.unselectedIconTheme = t4; _.selectedIconTheme = t5; _.groupAlignment = t6; _.labelType = t7; }, _NavigationRailThemeData_Object_Diagnosticable: function _NavigationRailThemeData_Object_Diagnosticable() { }, Scrollbar$: function(child, controller, isAlwaysShown) { return new E.Scrollbar(child, controller, isAlwaysShown, null); }, Scrollbar: function Scrollbar(t0, t1, t2, t3) { var _ = this; _.child = t0; _.controller = t1; _.isAlwaysShown = t2; _.key = t3; }, _ScrollbarState: function _ScrollbarState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _MaterialScrollbar: function _MaterialScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.showTrackOnHover = t0; _.hoverThickness = t1; _.child = t2; _.controller = t3; _.isAlwaysShown = t4; _.radius = t5; _.thickness = t6; _.fadeDuration = t7; _.timeToFade = t8; _.pressDuration = t9; _.notificationPredicate = t10; _.interactive = t11; _.key = t12; }, _MaterialScrollbarState: function _MaterialScrollbarState(t0, t1, t2) { var _ = this; _.___MaterialScrollbarState__hoverAnimationController = $; _._scrollbar0$_hoverIsActive = _._dragIsActive = false; _.___MaterialScrollbarState__useAndroidScrollbar = _.___MaterialScrollbarState__scrollbarTheme = _.___MaterialScrollbarState__colorScheme = $; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisPosition = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _MaterialScrollbarState__thumbColor__dragColor_set: function _MaterialScrollbarState__thumbColor__dragColor_set(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor__hoverColor_set: function _MaterialScrollbarState__thumbColor__hoverColor_set(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor__idleColor_set: function _MaterialScrollbarState__thumbColor__idleColor_set(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor__dragColor_get: function _MaterialScrollbarState__thumbColor__dragColor_get(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor__hoverColor_get: function _MaterialScrollbarState__thumbColor__hoverColor_get(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor__idleColor_get: function _MaterialScrollbarState__thumbColor__idleColor_get(t0) { this._box_0 = t0; }, _MaterialScrollbarState__thumbColor_closure: function _MaterialScrollbarState__thumbColor_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _._dragColor_get = t1; _._hoverColor_get = t2; _._idleColor_get = t3; }, _MaterialScrollbarState__trackColor_closure: function _MaterialScrollbarState__trackColor_closure(t0, t1, t2) { this.$this = t0; this.brightness = t1; this.onSurface = t2; }, _MaterialScrollbarState__trackBorderColor_closure: function _MaterialScrollbarState__trackBorderColor_closure(t0, t1, t2) { this.$this = t0; this.brightness = t1; this.onSurface = t2; }, _MaterialScrollbarState__thickness_closure: function _MaterialScrollbarState__thickness_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_initState_closure: function _MaterialScrollbarState_initState_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleThumbPressStart_closure: function _MaterialScrollbarState_handleThumbPressStart_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleThumbPressEnd_closure: function _MaterialScrollbarState_handleThumbPressEnd_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHover_closure: function _MaterialScrollbarState_handleHover_closure(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHover_closure0: function _MaterialScrollbarState_handleHover_closure0(t0) { this.$this = t0; }, _MaterialScrollbarState_handleHoverExit_closure: function _MaterialScrollbarState_handleHoverExit_closure(t0) { this.$this = t0; }, Tab$: function(child, text) { return new E.Tab(text, child, null); }, _TabStyle$: function(animation, child, labelColor, labelStyle, selected, unselectedLabelColor, unselectedLabelStyle) { return new E._TabStyle(labelStyle, unselectedLabelStyle, selected, labelColor, unselectedLabelColor, child, animation, null); }, _indexChangeProgress: function(controller) { var controllerValue = controller.get$animation(controller).get$_animation_controller$_value(), previousIndex = controller._previousIndex, currentIndex = controller._tab_controller$_index; if (controller._indexIsChangingCount === 0) return C.JSNumber_methods.clamp$2(Math.abs(currentIndex - controllerValue), 0, 1); return Math.abs(controllerValue - currentIndex) / Math.abs(currentIndex - previousIndex); }, TabBar$: function(controller, indicatorColor, isScrollable, key, onTap, tabs) { return new E.TabBar(tabs, controller, isScrollable, indicatorColor, onTap, key); }, TabBarView$: function(children, controller, key) { return new E.TabBarView(controller, children, key); }, Tab: function Tab(t0, t1, t2) { this.text = t0; this.child = t1; this.key = t2; }, _TabStyle: function _TabStyle(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.labelStyle = t0; _.unselectedLabelStyle = t1; _.selected = t2; _.labelColor = t3; _.unselectedLabelColor = t4; _.child = t5; _.listenable = t6; _.key = t7; }, _TabLabelBarRenderer: function _TabLabelBarRenderer(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.onPerformLayout = t0; _._flex$_direction = t1; _._mainAxisAlignment = t2; _._mainAxisSize = t3; _._flex$_crossAxisAlignment = t4; _._flex$_textDirection = t5; _._flex$_verticalDirection = t6; _._flex$_textBaseline = t7; _._overflow = 0; _._flex$_clipBehavior = t8; _._flex$_clipRectLayer = null; _.DebugOverflowIndicatorMixin__indicatorLabel = t9; _.DebugOverflowIndicatorMixin__overflowReportNeeded = t10; _.ContainerRenderObjectMixin__childCount = t11; _.ContainerRenderObjectMixin__firstChild = t12; _.ContainerRenderObjectMixin__lastChild = t13; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _TabLabelBar: function _TabLabelBar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.onPerformLayout = t0; _.direction = t1; _.mainAxisAlignment = t2; _.mainAxisSize = t3; _.crossAxisAlignment = t4; _.textDirection = t5; _.verticalDirection = t6; _.textBaseline = t7; _.children = t8; _.key = t9; }, _IndicatorPainter: function _IndicatorPainter(t0, t1, t2, t3, t4, t5) { var _ = this; _.controller = t0; _.indicator = t1; _.indicatorSize = t2; _.indicatorPadding = t3; _.tabKeys = t4; _._tabs$_painter = _._currentRect = _._currentTextDirection = _._currentTabOffsets = null; _._tabs$_needsPaint = false; _._repaint = t5; }, _ChangeAnimation: function _ChangeAnimation(t0) { this.controller = t0; }, _DragAnimation: function _DragAnimation(t0, t1) { this.controller = t0; this.index = t1; }, _TabBarScrollPosition: function _TabBarScrollPosition(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.tabBar = t0; _._initialViewportDimensionWasZero = null; _._heldPreviousVelocity = 0; _._userScrollDirection = t1; _._currentDrag = null; _.physics = t2; _.context = t3; _.keepScrollOffset = t4; _.debugLabel = t5; _._maxScrollExtent = _._minScrollExtent = null; _._impliedVelocity = 0; _._viewportDimension = _._pixels = null; _._haveDimensions = false; _._didChangeViewportDimensionOrReceiveCorrection = true; _._pendingDimensions = false; _._semanticActions = _._scroll_position$_lastMetrics = null; _.isScrollingNotifier = t6; _._activity = null; _.ChangeNotifier__listeners = t7; }, _TabBarScrollController: function _TabBarScrollController(t0, t1, t2, t3, t4) { var _ = this; _.tabBar = t0; _._initialScrollOffset = t1; _.debugLabel = t2; _._positions = t3; _.ChangeNotifier__listeners = t4; }, TabBar: function TabBar(t0, t1, t2, t3, t4, t5) { var _ = this; _.tabs = t0; _.controller = t1; _.isScrollable = t2; _.indicatorColor = t3; _.onTap = t4; _.key = t5; }, _TabBarState: function _TabBarState(t0) { var _ = this; _._currentIndex = _._indicatorPainter = _._tabs$_controller = _._tabs$_scrollController = null; _.___TabBarState__tabKeys = _.___TabBarState__tabStripWidth = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TabBarState_initState_closure: function _TabBarState_initState_closure() { }, _TabBarState__handleTabControllerTick_closure: function _TabBarState__handleTabControllerTick_closure() { }, _TabBarState_build_closure: function _TabBarState_build_closure(t0, t1) { this.$this = t0; this.index = t1; }, TabBarView: function TabBarView(t0, t1, t2) { this.controller = t0; this.children = t1; this.key = t2; }, _TabBarViewState: function _TabBarViewState(t0) { var _ = this; _._tabs$_controller = null; _.___TabBarViewState__childrenWithKey = _.___TabBarViewState__children = _.___TabBarViewState__pageController = $; _._currentIndex = null; _._warpUnderwayCount = 0; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TabBarViewState__warpToCurrentIndex_closure: function _TabBarViewState__warpToCurrentIndex_closure(t0, t1, t2) { this.$this = t0; this.initialPage = t1; this.previousIndex = t2; }, _TabBarViewState__warpToCurrentIndex_closure0: function _TabBarViewState__warpToCurrentIndex_closure0(t0, t1) { this.$this = t0; this.originalChildren = t1; }, __ChangeAnimation_Animation_AnimationWithParentMixin: function __ChangeAnimation_Animation_AnimationWithParentMixin() { }, __DragAnimation_Animation_AnimationWithParentMixin: function __DragAnimation_Animation_AnimationWithParentMixin() { }, TextFormField$: function(autocorrect, autofillHints, autofocus, autovalidateMode, controller, decoration, enabled, expands, focusNode, initialValue, inputFormatters, key, keyboardType, maxLines, minLines, obscureText, onChanged, onEditingComplete, onFieldSubmitted, onSaved, readOnly, style, textAlign, textInputAction, validator) { var t2, t3, _null = null, t1 = autovalidateMode == null ? C.AutovalidateMode_0 : autovalidateMode; if (enabled == null) t2 = decoration == null ? _null : decoration.enabled; else t2 = enabled; if (controller != null) t3 = controller._change_notifier$_value.text; else t3 = initialValue == null ? "" : initialValue; return new E.TextFormField(controller, onSaved, validator, new E.TextFormField_closure(decoration, onChanged, focusNode, keyboardType, textInputAction, style, _null, textAlign, _null, _null, C.TextCapitalization_3, autofocus, _null, readOnly, _null, "\u2022", obscureText, autocorrect, _null, _null, true, true, _null, maxLines, minLines, expands, _null, _null, onEditingComplete, onFieldSubmitted, inputFormatters, enabled, 2, _null, _null, _null, C.EdgeInsets_20_20_20_20, _null, _null, true, _null, _null, autofillHints, _null), t3, t2 !== false, t1, key); }, TextFormField: function TextFormField(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.controller = t0; _.onSaved = t1; _.validator = t2; _.builder = t3; _.initialValue = t4; _.enabled = t5; _.autovalidateMode = t6; _.key = t7; }, TextFormField_closure: function TextFormField_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43) { var _ = this; _.decoration = t0; _.onChanged = t1; _.focusNode = t2; _.keyboardType = t3; _.textInputAction = t4; _.style = t5; _.strutStyle = t6; _.textAlign = t7; _.textAlignVertical = t8; _.textDirection = t9; _.textCapitalization = t10; _.autofocus = t11; _.toolbarOptions = t12; _.readOnly = t13; _.showCursor = t14; _.obscuringCharacter = t15; _.obscureText = t16; _.autocorrect = t17; _.smartDashesType = t18; _.smartQuotesType = t19; _.enableSuggestions = t20; _.maxLengthEnforced = t21; _.maxLengthEnforcement = t22; _.maxLines = t23; _.minLines = t24; _.expands = t25; _.maxLength = t26; _.onTap = t27; _.onEditingComplete = t28; _.onFieldSubmitted = t29; _.inputFormatters = t30; _.enabled = t31; _.cursorWidth = t32; _.cursorHeight = t33; _.cursorRadius = t34; _.cursorColor = t35; _.scrollPadding = t36; _.scrollPhysics = t37; _.keyboardAppearance = t38; _.enableInteractiveSelection = t39; _.selectionControls = t40; _.buildCounter = t41; _.autofillHints = t42; _.scrollController = t43; }, TextFormField_closure_onChangedHandler: function TextFormField_closure_onChangedHandler(t0, t1) { this.field = t0; this.onChanged = t1; }, _TextFormFieldState: function _TextFormFieldState(t0) { var _ = this; _._errorText = _._form$_value = _._text_form_field$_controller = null; _._hasInteractedByUser = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, ToggleButtons$: function(children, constraints, isSelected, onPressed) { return new E.ToggleButtons(children, isSelected, onPressed, constraints, null); }, ToggleButtons: function ToggleButtons(t0, t1, t2, t3, t4) { var _ = this; _.children = t0; _.isSelected = t1; _.onPressed = t2; _.constraints = t3; _.key = t4; }, ToggleButtons_build_closure: function ToggleButtons_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.textDirection = t1; _.toggleButtonsTheme = t2; _.theme = t3; }, ToggleButtons_build__closure: function ToggleButtons_build__closure(t0, t1) { this.$this = t0; this.index = t1; }, _ToggleButton: function _ToggleButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.selected = t0; _.textStyle = t1; _.constraints = t2; _.color = t3; _.selectedColor = t4; _.disabledColor = t5; _.fillColor = t6; _.focusColor = t7; _.hoverColor = t8; _.highlightColor = t9; _.splashColor = t10; _.focusNode = t11; _.onPressed = t12; _.mouseCursor = t13; _.leadingBorderSide = t14; _.borderSide = t15; _.trailingBorderSide = t16; _.borderRadius = t17; _.clipRadius = t18; _.isFirstButton = t19; _.isLastButton = t20; _.direction = t21; _.verticalDirection = t22; _.child = t23; _.key = t24; }, _SelectToggleButton: function _SelectToggleButton(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.leadingBorderSide = t0; _.borderSide = t1; _.trailingBorderSide = t2; _.borderRadius = t3; _.isFirstButton = t4; _.isLastButton = t5; _.direction = t6; _.verticalDirection = t7; _.child = t8; _.key = t9; }, _SelectToggleButtonRenderObject: function _SelectToggleButtonRenderObject(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _._toggle_buttons$_direction = t0; _._verticalDirection = t1; _._leadingBorderSide = t2; _._borderSide = t3; _._trailingBorderSide = t4; _._toggle_buttons$_borderRadius = t5; _._isFirstButton = t6; _._isLastButton = t7; _._toggle_buttons$_textDirection = t8; _.RenderObjectWithChildMixin__child = t9; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ColorSwatch: function ColorSwatch() { }, ImageSizeInfo: function ImageSizeInfo(t0, t1, t2) { this.source = t0; this.displaySize = t1; this.imageSize = t2; }, _LiveImage$: function(completer, handleRemove) { var t1; if (completer._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t1 = new L.ImageStreamCompleterHandle(completer); t1.ImageStreamCompleterHandle$_$1(completer); t1 = new E._LiveImage(completer, null, t1); t1._LiveImage$3$sizeBytes(completer, handleRemove, null); return t1; }, ImageCache: function ImageCache(t0, t1, t2) { var _ = this; _._pendingImages = t0; _._image_cache$_cache = t1; _._liveImages = t2; _._currentSizeBytes = 0; }, ImageCache__trackLiveImage_closure: function ImageCache__trackLiveImage_closure(t0, t1, t2) { this.$this = t0; this.completer = t1; this.key = t2; }, ImageCache__trackLiveImage__closure: function ImageCache__trackLiveImage__closure(t0, t1) { this.$this = t0; this.key = t1; }, ImageCache_putIfAbsent_listener: function ImageCache_putIfAbsent_listener(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.key = t2; }, _CachedImageBase: function _CachedImageBase() { }, _CachedImageBase_dispose_closure: function _CachedImageBase_dispose_closure(t0) { this.$this = t0; }, _CachedImage: function _CachedImage(t0, t1, t2) { this.completer = t0; this.sizeBytes = t1; this.handle = t2; }, _LiveImage: function _LiveImage(t0, t1, t2) { var _ = this; _.___LiveImage__handleRemove = $; _.completer = t0; _.sizeBytes = t1; _.handle = t2; }, _LiveImage_closure: function _LiveImage_closure(t0, t1) { this.$this = t0; this.handleRemove = t1; }, _PendingImage: function _PendingImage(t0, t1) { this.completer = t0; this.listener = t1; }, RenderConstrainedBox$: function(additionalConstraints) { var t1 = new E.RenderConstrainedBox(additionalConstraints, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, RenderIntrinsicWidth__applyStep: function(input, step) { if (step == null) return input; return C.JSNumber_methods.ceil$0(input / step) * step; }, RenderProxyBox: function RenderProxyBox() { }, RenderProxyBoxMixin: function RenderProxyBoxMixin() { }, HitTestBehavior: function HitTestBehavior(t0) { this._proxy_box$_name = t0; }, RenderProxyBoxWithHitTestBehavior: function RenderProxyBoxWithHitTestBehavior() { }, RenderConstrainedBox: function RenderConstrainedBox(t0, t1) { var _ = this; _._additionalConstraints = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderLimitedBox: function RenderLimitedBox(t0, t1, t2) { var _ = this; _._proxy_box$_maxWidth = t0; _._maxHeight = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAspectRatio: function RenderAspectRatio(t0, t1) { var _ = this; _._aspectRatio = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIntrinsicWidth: function RenderIntrinsicWidth(t0, t1, t2) { var _ = this; _._stepWidth = t0; _._stepHeight = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIntrinsicHeight: function RenderIntrinsicHeight(t0) { var _ = this; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOpacity: function RenderOpacity(t0, t1, t2, t3) { var _ = this; _._alpha = t0; _._proxy_box$_opacity = t1; _._alwaysIncludeSemantics = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAnimatedOpacityMixin: function RenderAnimatedOpacityMixin() { }, RenderAnimatedOpacity: function RenderAnimatedOpacity(t0, t1, t2, t3, t4) { var _ = this; _.RenderAnimatedOpacityMixin__alpha = t0; _.RenderAnimatedOpacityMixin__currentlyNeedsCompositing = t1; _.RenderAnimatedOpacityMixin__opacity = t2; _.RenderAnimatedOpacityMixin__alwaysIncludeSemantics = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, CustomClipper: function CustomClipper() { }, ShapeBorderClipper: function ShapeBorderClipper(t0, t1, t2) { this.shape = t0; this.textDirection = t1; this._reclip = t2; }, _RenderCustomClip: function _RenderCustomClip() { }, RenderClipRect: function RenderClipRect(t0, t1, t2) { var _ = this; _._clipper = t0; _._clip = null; _._clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipRRect: function RenderClipRRect(t0, t1, t2, t3) { var _ = this; _._proxy_box$_borderRadius = t0; _._clipper = t1; _._clip = null; _._clipBehavior = t2; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipOval: function RenderClipOval(t0, t1, t2) { var _ = this; _._proxy_box$_cachedRect = null; _.__RenderClipOval__cachedPath = $; _._clipper = t0; _._clip = null; _._clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderClipPath: function RenderClipPath(t0, t1, t2) { var _ = this; _._clipper = t0; _._clip = null; _._clipBehavior = t1; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderPhysicalModelBase: function _RenderPhysicalModelBase() { }, RenderPhysicalModel: function RenderPhysicalModel(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._proxy_box$_shape = t0; _._proxy_box$_borderRadius = t1; _._proxy_box$_elevation = t2; _._proxy_box$_shadowColor = t3; _._proxy_box$_color = t4; _._clipper = t5; _._clip = null; _._clipBehavior = t6; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderPhysicalShape: function RenderPhysicalShape(t0, t1, t2, t3, t4, t5) { var _ = this; _._proxy_box$_elevation = t0; _._proxy_box$_shadowColor = t1; _._proxy_box$_color = t2; _._clipper = t3; _._clip = null; _._clipBehavior = t4; _._debugText = _._debugPaint = null; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, DecorationPosition: function DecorationPosition(t0) { this._proxy_box$_name = t0; }, RenderDecoratedBox: function RenderDecoratedBox(t0, t1, t2, t3) { var _ = this; _._proxy_box$_painter = null; _._proxy_box$_decoration = t0; _._proxy_box$_position = t1; _._proxy_box$_configuration = t2; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTransform: function RenderTransform(t0, t1) { var _ = this; _._proxy_box$_textDirection = _._alignment = _._origin = null; _.transformHitTests = t0; _._proxy_box$_transform = null; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderTransform_hitTestChildren_closure: function RenderTransform_hitTestChildren_closure(t0) { this.$this = t0; }, RenderFittedBox: function RenderFittedBox(t0, t1, t2, t3, t4) { var _ = this; _._resolvedAlignment = null; _._fit = t0; _._alignment = t1; _._proxy_box$_textDirection = t2; _._proxy_box$_transform = _._hasVisualOverflow = null; _._clipBehavior = t3; _.RenderObjectWithChildMixin__child = t4; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFittedBox_hitTestChildren_closure: function RenderFittedBox_hitTestChildren_closure(t0) { this.$this = t0; }, RenderFractionalTranslation: function RenderFractionalTranslation(t0, t1, t2) { var _ = this; _._translation = t0; _.transformHitTests = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFractionalTranslation_hitTestChildren_closure: function RenderFractionalTranslation_hitTestChildren_closure(t0) { this.$this = t0; }, RenderPointerListener: function RenderPointerListener(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onPointerDown = t0; _.onPointerMove = t1; _.onPointerUp = t2; _.onPointerHover = t3; _.onPointerCancel = t4; _.onPointerSignal = t5; _.behavior = t6; _.RenderObjectWithChildMixin__child = t7; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderMouseRegion: function RenderMouseRegion(t0, t1, t2, t3, t4, t5) { var _ = this; _._proxy_box$_opaque = t0; _.onEnter = t1; _.onHover = t2; _.onExit = t3; _._cursor = t4; _._validForMouseTracker = true; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderRepaintBoundary: function RenderRepaintBoundary(t0) { var _ = this; _._debugAsymmetricPaintCount = _._debugSymmetricPaintCount = 0; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIgnorePointer: function RenderIgnorePointer(t0, t1, t2) { var _ = this; _._ignoring = t0; _._ignoringSemantics = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderOffstage: function RenderOffstage(t0, t1) { var _ = this; _._proxy_box$_offstage = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAbsorbPointer: function RenderAbsorbPointer(t0, t1, t2) { var _ = this; _._absorbing = t0; _._ignoringSemantics = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSemanticsGestureHandler: function RenderSemanticsGestureHandler(t0, t1) { var _ = this; _._onVerticalDragUpdate = _._onHorizontalDragUpdate = _._onLongPress = _._onTap = _._validActions = null; _.behavior = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderSemanticsAnnotations: function RenderSemanticsAnnotations(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56) { var _ = this; _._container = t0; _._explicitChildNodes = t1; _._excludeSemantics = t2; _._checked = t3; _._enabled = t4; _._selected = t5; _._button = t6; _._slider = t7; _._keyboardKey = t8; _._proxy_box$_link = t9; _._header = t10; _._textField = t11; _._proxy_box$_readOnly = t12; _._focusable = t13; _._focused = t14; _._inMutuallyExclusiveGroup = t15; _._obscured = t16; _._multiline = t17; _._scopesRoute = t18; _._namesRoute = t19; _._hidden = t20; _._image = t21; _._liveRegion = t22; _._maxValueLength = t23; _._currentValueLength = t24; _._toggled = t25; _._proxy_box$_label = t26; _._proxy_box$_value = t27; _._increasedValue = t28; _._decreasedValue = t29; _._proxy_box$_hint = t30; _._hintOverrides = t31; _._proxy_box$_textDirection = t32; _._sortKey = t33; _._tagForChildren = t34; _._onTap = t35; _._onDismiss = t36; _._onLongPress = t37; _._onScrollLeft = t38; _._onScrollRight = t39; _._onScrollUp = t40; _._onScrollDown = t41; _._onIncrease = t42; _._onDecrease = t43; _._onCopy = t44; _._onCut = t45; _._onPaste = t46; _._onMoveCursorForwardByCharacter = t47; _._onMoveCursorBackwardByCharacter = t48; _._onMoveCursorForwardByWord = t49; _._onMoveCursorBackwardByWord = t50; _._onSetSelection = t51; _._onSetText = t52; _._onDidGainAccessibilityFocus = t53; _._onDidLoseAccessibilityFocus = t54; _._customSemanticsActions = t55; _.RenderObjectWithChildMixin__child = t56; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderBlockSemantics: function RenderBlockSemantics(t0, t1) { var _ = this; _._blocking = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderMergeSemantics: function RenderMergeSemantics(t0) { var _ = this; _.RenderObjectWithChildMixin__child = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderExcludeSemantics: function RenderExcludeSemantics(t0, t1) { var _ = this; _._excluding = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderIndexedSemantics: function RenderIndexedSemantics(t0, t1) { var _ = this; _._proxy_box$_index = t0; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderLeaderLayer: function RenderLeaderLayer(t0, t1) { var _ = this; _._proxy_box$_link = t0; _._previousLayoutSize = null; _.RenderObjectWithChildMixin__child = t1; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFollowerLayer: function RenderFollowerLayer(t0, t1, t2, t3, t4, t5) { var _ = this; _._proxy_box$_link = t0; _._showWhenUnlinked = t1; _._proxy_box$_offset = t2; _._leaderAnchor = t3; _._followerAnchor = t4; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFollowerLayer_hitTestChildren_closure: function RenderFollowerLayer_hitTestChildren_closure(t0) { this.$this = t0; }, RenderAnnotatedRegion: function RenderAnnotatedRegion(t0, t1, t2, t3) { var _ = this; _._proxy_box$_value = t0; _._sized = t1; _.RenderObjectWithChildMixin__child = t2; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; _.$ti = t3; }, _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin: function _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin() { }, _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin: function _RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin() { }, _RenderProxyBox_RenderBox_RenderObjectWithChildMixin: function _RenderProxyBox_RenderBox_RenderObjectWithChildMixin() { }, _RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin: function _RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin() { }, SemanticsEvent: function SemanticsEvent() { }, AnnounceSemanticsEvent: function AnnounceSemanticsEvent(t0, t1, t2) { this.message = t0; this.textDirection = t1; this.type = t2; }, TooltipSemanticsEvent: function TooltipSemanticsEvent(t0, t1) { this.message = t0; this.type = t1; }, LongPressSemanticsEvent: function LongPressSemanticsEvent(t0) { this.type = t0; }, TapSemanticEvent: function TapSemanticEvent(t0) { this.type = t0; }, DefaultTextEditingActions: function DefaultTextEditingActions(t0, t1, t2) { this.actions = t0; this.child = t1; this.key = t2; }, _DoNothingAndStopPropagationTextAction: function _DoNothingAndStopPropagationTextAction(t0) { this._actions$_listeners = t0; }, _ExpandSelectionLeftByLineTextAction: function _ExpandSelectionLeftByLineTextAction(t0) { this._actions$_listeners = t0; }, _ExpandSelectionRightByLineTextAction: function _ExpandSelectionRightByLineTextAction(t0) { this._actions$_listeners = t0; }, _ExpandSelectionToEndTextAction: function _ExpandSelectionToEndTextAction(t0) { this._actions$_listeners = t0; }, _ExpandSelectionToStartTextAction: function _ExpandSelectionToStartTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionDownTextAction: function _ExtendSelectionDownTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionLeftByLineTextAction: function _ExtendSelectionLeftByLineTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionLeftByWordAndStopAtReversalTextAction: function _ExtendSelectionLeftByWordAndStopAtReversalTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionLeftByWordTextAction: function _ExtendSelectionLeftByWordTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionLeftTextAction: function _ExtendSelectionLeftTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionRightByLineTextAction: function _ExtendSelectionRightByLineTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionRightByWordAndStopAtReversalTextAction: function _ExtendSelectionRightByWordAndStopAtReversalTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionRightByWordTextAction: function _ExtendSelectionRightByWordTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionRightTextAction: function _ExtendSelectionRightTextAction(t0) { this._actions$_listeners = t0; }, _ExtendSelectionUpTextAction: function _ExtendSelectionUpTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionDownTextAction: function _MoveSelectionDownTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionLeftTextAction: function _MoveSelectionLeftTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionRightTextAction: function _MoveSelectionRightTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionUpTextAction: function _MoveSelectionUpTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionLeftByLineTextAction: function _MoveSelectionLeftByLineTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionLeftByWordTextAction: function _MoveSelectionLeftByWordTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionRightByLineTextAction: function _MoveSelectionRightByLineTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionRightByWordTextAction: function _MoveSelectionRightByWordTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionToEndTextAction: function _MoveSelectionToEndTextAction(t0) { this._actions$_listeners = t0; }, _MoveSelectionToStartTextAction: function _MoveSelectionToStartTextAction(t0) { this._actions$_listeners = t0; }, DefaultTextEditingShortcuts__shortcuts: function() { var t1 = $.$get$DefaultTextEditingShortcuts__webShortcuts(); return t1; }, DefaultTextEditingShortcuts: function DefaultTextEditingShortcuts(t0, t1, t2, t3) { var _ = this; _.shortcuts = t0; _.child = t1; _.debugLabel = t2; _.key = t3; }, NavigationToolbar: function NavigationToolbar(t0, t1, t2, t3, t4, t5) { var _ = this; _.leading = t0; _.middle = t1; _.trailing = t2; _.centerMiddle = t3; _.middleSpacing = t4; _.key = t5; }, _ToolbarSlot: function _ToolbarSlot(t0) { this._navigation_toolbar$_name = t0; }, _ToolbarLayout: function _ToolbarLayout(t0, t1, t2) { var _ = this; _.centerMiddle = t0; _.middleSpacing = t1; _.textDirection = t2; _._debugChildrenNeedingLayout = _._idToChild = null; }, OverflowBar$: function(children, overflowAlignment, overflowDirection, overflowSpacing, spacing) { return new E.OverflowBar(spacing, overflowSpacing, overflowAlignment, overflowDirection, children, null); }, OverflowBarAlignment: function OverflowBarAlignment(t0) { this._overflow_bar$_name = t0; }, OverflowBar: function OverflowBar(t0, t1, t2, t3, t4, t5) { var _ = this; _.spacing = t0; _.overflowSpacing = t1; _.overflowAlignment = t2; _.overflowDirection = t3; _.children = t4; _.key = t5; }, _OverflowBarParentData: function _OverflowBarParentData(t0, t1, t2) { this.ContainerParentDataMixin_previousSibling = t0; this.ContainerParentDataMixin_nextSibling = t1; this.offset = t2; }, _RenderOverflowBar: function _RenderOverflowBar(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._overflow_bar$_spacing = t0; _._overflowSpacing = t1; _._overflowAlignment = t2; _._overflowDirection = t3; _._overflow_bar$_textDirection = t4; _._overflow_bar$_clipBehavior = t5; _.ContainerRenderObjectMixin__childCount = t6; _.ContainerRenderObjectMixin__firstChild = t7; _.ContainerRenderObjectMixin__lastChild = t8; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderOverflowBar_performLayout_nextChild: function _RenderOverflowBar_performLayout_nextChild(t0, t1) { this._box_0 = t0; this.$this = t1; }, _RenderOverflowBar_performLayout_nextChild0: function _RenderOverflowBar_performLayout_nextChild0(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.rtl = t2; }, __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin: function __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin() { }, __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function __RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, PrimaryScrollController$: function(child, controller) { return new E.PrimaryScrollController(controller, child, null); }, PrimaryScrollController$none: function(child) { return new E.PrimaryScrollController(null, child, null); }, PrimaryScrollController_of: function(context) { var result = context.dependOnInheritedWidgetOfExactType$1$0(type$.PrimaryScrollController); return result == null ? null : result.controller; }, PrimaryScrollController: function PrimaryScrollController(t0, t1, t2) { this.controller = t0; this.child = t1; this.key = t2; }, RawScrollbar$: function(child, controller, fadeDuration, interactive, isAlwaysShown, key, notificationPredicate, pressDuration, radius, thickness, timeToFade) { return new E.RawScrollbar(child, controller, isAlwaysShown, radius, thickness, fadeDuration, timeToFade, pressDuration, notificationPredicate, interactive, key); }, RawScrollbarState$: function($T) { return new E.RawScrollbarState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, C._StateLifecycle_0, $T._eval$1("RawScrollbarState<0>")); }, _getLocalOffset: function(scrollbarPainterKey, position) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, scrollbarPainterKey).get$renderObject(); t1.toString; return type$.RenderBox._as(t1).globalToLocal$1(position); }, ScrollbarPainter: function ScrollbarPainter(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._scrollbar$_color = t0; _._scrollbar$_trackColor = t1; _._scrollbar$_trackBorderColor = t2; _._scrollbar$_textDirection = null; _._thickness = t3; _.fadeoutOpacityAnimation = t4; _._crossAxisMargin = _._mainAxisMargin = 0; _._scrollbar$_radius = null; _._scrollbar$_padding = t5; _._minLength = 18; _._minOverscrollLength = t6; _._trackRect = _._thumbRect = _._lastAxisDirection = _._lastMetrics = null; _.__ScrollbarPainter__thumbOffset = $; _.ChangeNotifier__listeners = t7; }, RawScrollbar: function RawScrollbar(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; _.child = t0; _.controller = t1; _.isAlwaysShown = t2; _.radius = t3; _.thickness = t4; _.fadeDuration = t5; _.timeToFade = t6; _.pressDuration = t7; _.notificationPredicate = t8; _.interactive = t9; _.key = t10; }, RawScrollbarState: function RawScrollbarState(t0, t1, t2, t3) { var _ = this; _._fadeoutTimer = _._currentController = _._dragScrollbarAxisPosition = null; _.__RawScrollbarState__fadeoutOpacityAnimation = _.__RawScrollbarState__fadeoutAnimationController = $; _._scrollbarPainterKey = t0; _._hoverIsActive = false; _.__RawScrollbarState_scrollbarPainter = $; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; _.$ti = t3; }, RawScrollbarState__maybeTriggerScrollbar_closure: function RawScrollbarState__maybeTriggerScrollbar_closure(t0) { this.$this = t0; }, RawScrollbarState__maybeStartFadeoutTimer_closure: function RawScrollbarState__maybeStartFadeoutTimer_closure(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure: function RawScrollbarState__gestures_closure(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure0: function RawScrollbarState__gestures_closure0(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure: function RawScrollbarState__gestures__closure(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure0: function RawScrollbarState__gestures__closure0(t0) { this.$this = t0; }, RawScrollbarState__gestures__closure1: function RawScrollbarState__gestures__closure1(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure1: function RawScrollbarState__gestures_closure1(t0) { this.$this = t0; }, RawScrollbarState__gestures_closure2: function RawScrollbarState__gestures_closure2(t0) { this.$this = t0; }, RawScrollbarState_build_closure0: function RawScrollbarState_build_closure0(t0) { this.$this = t0; }, RawScrollbarState_build_closure: function RawScrollbarState_build_closure(t0) { this.$this = t0; }, _ThumbPressGestureRecognizer: function _ThumbPressGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._customPaintKey = t0; _._longPressAccepted = false; _._velocityTracker = _.onSecondaryLongPressEnd = _.onSecondaryLongPressUp = _.onSecondaryLongPressMoveUpdate = _.onSecondaryLongPressStart = _.onSecondaryLongPress = _.onLongPressEnd = _.onLongPressUp = _.onLongPressMoveUpdate = _.onLongPressStart = _.onLongPress = _._long_press$_initialButtons = _._longPressOrigin = null; _.deadline = t1; _.postAcceptSlopTolerance = t2; _.state = t3; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t4; _._trackedPointers = t5; _._team = null; _.debugOwner = t6; _._kindFilter = t7; _._pointerToKind = t8; }, _TrackTapGestureRecognizer: function _TrackTapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._customPaintKey = t0; _.onTertiaryTapCancel = _.onTertiaryTapUp = _.onTertiaryTapDown = _.onSecondaryTapCancel = _.onSecondaryTapUp = _.onSecondaryTapDown = _.onSecondaryTap = _.onTapCancel = _.onTap = _.onTapUp = _.onTapDown = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t1; _.postAcceptSlopTolerance = t2; _.state = t3; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t4; _._trackedPointers = t5; _._team = null; _.debugOwner = t6; _._kindFilter = t7; _._pointerToKind = t8; }, _RawScrollbarState_State_TickerProviderStateMixin: function _RawScrollbarState_State_TickerProviderStateMixin() { }, SingleChildScrollView$: function(child, controller, dragStartBehavior, padding, physics, reverse, scrollDirection) { var t1 = controller == null && scrollDirection === C.Axis_1; return new E.SingleChildScrollView(scrollDirection, reverse, padding, controller, t1, physics, child, dragStartBehavior, null); }, SingleChildScrollView: function SingleChildScrollView(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.scrollDirection = t0; _.reverse = t1; _.padding = t2; _.controller = t3; _.primary = t4; _.physics = t5; _.child = t6; _.dragStartBehavior = t7; _.key = t8; }, SingleChildScrollView_build_closure: function SingleChildScrollView_build_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.axisDirection = t2; }, _SingleChildViewport: function _SingleChildViewport(t0, t1, t2, t3, t4) { var _ = this; _.axisDirection = t0; _.offset = t1; _.clipBehavior = t2; _.child = t3; _.key = t4; }, _RenderSingleChildViewport: function _RenderSingleChildViewport(t0, t1, t2, t3) { var _ = this; _._axisDirection = t0; _._single_child_scroll_view$_offset = t1; _._single_child_scroll_view$_clipBehavior = t2; _._single_child_scroll_view$_clipRectLayer = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, _RenderSingleChildViewport_paint_paintContents: function _RenderSingleChildViewport_paint_paintContents(t0, t1) { this.$this = t0; this.paintOffset = t1; }, _RenderSingleChildViewport_hitTestChildren_closure: function _RenderSingleChildViewport_hitTestChildren_closure(t0, t1) { this.$this = t0; this.position = t1; }, __RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin: function __RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin() { }, HttpFileService$: function() { return new E.HttpFileService(new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest))); }, FileService: function FileService() { }, HttpFileService: function HttpFileService(t0) { this._httpClient = t0; }, HttpGetResponse: function HttpGetResponse(t0, t1) { this._receivedTime = t0; this._file_service$_response = t1; }, BaseClient: function BaseClient() { }, ClientException: function ClientException(t0) { this.message = t0; }, ImageSource: function ImageSource() { }, _default_rule: function() { return C.PluralCase_5; }, _updateWT: function(v, f) { if (f === 0) { $._t = 0; return; } for (; C.JSInt_methods.$mod(f, 10) === 0;) { f = C.JSNumber_methods.floor$0(f / 10); --v; } $._t = f; }, _fil_rule: function() { var t2, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = t2 === 1 || t2 === 2 || t2 === 3; } else t2 = false; if (!t2) { if (t1) { t2 = C.JSInt_methods.$mod($._i, 10); t2 = t2 !== 4 && t2 !== 6 && t2 !== 9; } else t2 = false; if (!t2) if (!t1) { t1 = C.JSInt_methods.$mod($._f, 10); t1 = t1 !== 4 && t1 !== 6 && t1 !== 9; } else t1 = false; else t1 = true; } else t1 = true; if (t1) return C.PluralCase_1; return C.PluralCase_5; }, _pt_PT_rule: function() { if ($._n === 1 && $._v === 0) return C.PluralCase_1; return C.PluralCase_5; }, _br_rule: function() { var t3, t1 = $._n, t2 = C.JSInt_methods.$mod(t1, 10); if (t2 === 1) { t3 = C.JSInt_methods.$mod(t1, 100); t3 = t3 !== 11 && t3 !== 71 && t3 !== 91; } else t3 = false; if (t3) return C.PluralCase_1; if (t2 === 2) { t3 = C.JSInt_methods.$mod(t1, 100); t3 = t3 !== 12 && t3 !== 72 && t3 !== 92; } else t3 = false; if (t3) return C.PluralCase_2; if (t2 >= 3 && t2 <= 4 || t2 === 9) { t2 = C.JSInt_methods.$mod(t1, 100); if (t2 < 10 || t2 > 19) if (t2 < 70 || t2 > 79) t2 = t2 < 90 || false; else t2 = false; else t2 = false; } else t2 = false; if (t2) return C.PluralCase_3; if (t1 !== 0 && C.JSInt_methods.$mod(t1, 1000000) === 0) return C.PluralCase_4; return C.PluralCase_5; }, _sr_rule: function() { var t2, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = C.JSInt_methods.$mod(t2, 10) === 1 && C.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (!t2) { t2 = $._f; t2 = C.JSInt_methods.$mod(t2, 10) === 1 && C.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = true; if (t2) return C.PluralCase_1; if (t1) { t1 = $._i; t2 = C.JSInt_methods.$mod(t1, 10); if (t2 >= 2) if (t2 <= 4) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 < 12 || t1 > 14; } else t1 = false; else t1 = false; } else t1 = false; if (!t1) { t1 = $._f; t2 = C.JSInt_methods.$mod(t1, 10); if (t2 >= 2) if (t2 <= 4) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 < 12 || t1 > 14; } else t1 = false; else t1 = false; } else t1 = true; if (t1) return C.PluralCase_3; return C.PluralCase_5; }, _ro_rule: function() { if ($._i === 1 && $._v === 0) return C.PluralCase_1; if ($._v === 0) { var t1 = $._n; if (t1 !== 0) if (t1 !== 1) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 >= 1 && t1 <= 19; } else t1 = false; else t1 = true; } else t1 = true; if (t1) return C.PluralCase_3; return C.PluralCase_5; }, _hi_rule: function() { if ($._i === 0 || $._n === 1) return C.PluralCase_1; return C.PluralCase_5; }, _fr_rule: function() { var t1 = $._i; if (t1 === 0 || t1 === 1) return C.PluralCase_1; return C.PluralCase_5; }, _cs_rule: function() { var t1 = $._i; if (t1 === 1 && $._v === 0) return C.PluralCase_1; if (t1 >= 2 && t1 <= 4 && $._v === 0) return C.PluralCase_3; if ($._v !== 0) return C.PluralCase_4; return C.PluralCase_5; }, _pl_rule: function() { var t3, t4, t1 = $._i, t2 = t1 === 1; if (t2 && $._v === 0) return C.PluralCase_1; t3 = $._v === 0; if (t3) { t4 = C.JSInt_methods.$mod(t1, 10); if (t4 >= 2) if (t4 <= 4) { t4 = C.JSInt_methods.$mod(t1, 100); t4 = t4 < 12 || t4 > 14; } else t4 = false; else t4 = false; } else t4 = false; if (t4) return C.PluralCase_3; if (t3) if (!t2) t2 = C.JSInt_methods.$mod(t1, 10) <= 1; else t2 = false; else t2 = false; if (!t2) if (!(t3 && C.JSInt_methods.$mod(t1, 10) >= 5 && true)) if (t3) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 >= 12 && t1 <= 14; } else t1 = false; else t1 = true; else t1 = true; if (t1) return C.PluralCase_4; return C.PluralCase_5; }, _lv_rule: function() { var t3, t1 = $._n, t2 = C.JSInt_methods.$mod(t1, 10); if (t2 !== 0) { t3 = C.JSInt_methods.$mod(t1, 100); if (!(t3 >= 11 && t3 <= 19)) if ($._v === 2) { t3 = C.JSInt_methods.$mod($._f, 100); t3 = t3 >= 11 && t3 <= 19; } else t3 = false; else t3 = true; } else t3 = true; if (t3) return C.PluralCase_0; if (!(t2 === 1 && C.JSInt_methods.$mod(t1, 100) !== 11)) { t1 = $._v === 2; if (t1) { t2 = $._f; t2 = C.JSInt_methods.$mod(t2, 10) === 1 && C.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (!t2) t1 = !t1 && C.JSInt_methods.$mod($._f, 10) === 1; else t1 = true; } else t1 = true; if (t1) return C.PluralCase_1; return C.PluralCase_5; }, _he_rule: function() { var t1 = $._i; if (t1 === 1 && $._v === 0) return C.PluralCase_1; if (t1 === 2 && $._v === 0) return C.PluralCase_2; if ($._v === 0) { t1 = $._n; t1 = (t1 < 0 || t1 > 10) && C.JSInt_methods.$mod(t1, 10) === 0; } else t1 = false; if (t1) return C.PluralCase_4; return C.PluralCase_5; }, _mt_rule: function() { var t2, t1 = $._n; if (t1 === 1) return C.PluralCase_1; if (t1 !== 0) { t2 = C.JSInt_methods.$mod(t1, 100); t2 = t2 >= 2 && t2 <= 10; } else t2 = true; if (t2) return C.PluralCase_3; t1 = C.JSInt_methods.$mod(t1, 100); if (t1 >= 11 && t1 <= 19) return C.PluralCase_4; return C.PluralCase_5; }, _si_rule: function() { var t1 = $._n; if (t1 !== 0) if (t1 !== 1) t1 = $._i === 0 && $._f === 1; else t1 = true; else t1 = true; if (t1) return C.PluralCase_1; return C.PluralCase_5; }, _cy_rule: function() { var t1 = $._n; if (t1 === 0) return C.PluralCase_0; if (t1 === 1) return C.PluralCase_1; if (t1 === 2) return C.PluralCase_2; if (t1 === 3) return C.PluralCase_3; if (t1 === 6) return C.PluralCase_4; return C.PluralCase_5; }, _da_rule: function() { if ($._n !== 1) if ($._t !== 0) { var t1 = $._i; t1 = t1 === 0 || t1 === 1; } else t1 = false; else t1 = true; if (t1) return C.PluralCase_1; return C.PluralCase_5; }, _ru_rule: function() { var t2, t3, t1 = $._v === 0; if (t1) { t2 = $._i; t2 = C.JSInt_methods.$mod(t2, 10) === 1 && C.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (t2) return C.PluralCase_1; if (t1) { t2 = $._i; t3 = C.JSInt_methods.$mod(t2, 10); if (t3 >= 2) if (t3 <= 4) { t2 = C.JSInt_methods.$mod(t2, 100); t2 = t2 < 12 || t2 > 14; } else t2 = false; else t2 = false; } else t2 = false; if (t2) return C.PluralCase_3; if (!(t1 && C.JSInt_methods.$mod($._i, 10) === 0)) if (!(t1 && C.JSInt_methods.$mod($._i, 10) >= 5 && true)) if (t1) { t1 = C.JSInt_methods.$mod($._i, 100); t1 = t1 >= 11 && t1 <= 14; } else t1 = false; else t1 = true; else t1 = true; if (t1) return C.PluralCase_4; return C.PluralCase_5; }, _be_rule: function() { var t3, t1 = $._n, t2 = C.JSInt_methods.$mod(t1, 10); if (t2 === 1 && C.JSInt_methods.$mod(t1, 100) !== 11) return C.PluralCase_1; if (t2 >= 2) if (t2 <= 4) { t3 = C.JSInt_methods.$mod(t1, 100); t3 = t3 < 12 || t3 > 14; } else t3 = false; else t3 = false; if (t3) return C.PluralCase_3; if (t2 !== 0) if (!(t2 >= 5 && true)) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 >= 11 && t1 <= 14; } else t1 = true; else t1 = true; if (t1) return C.PluralCase_4; return C.PluralCase_5; }, _mk_rule: function() { if ($._v === 0 && C.JSInt_methods.$mod($._i, 10) === 1 || C.JSInt_methods.$mod($._f, 10) === 1) return C.PluralCase_1; return C.PluralCase_5; }, _ga_rule: function() { var t1 = $._n; if (t1 === 1) return C.PluralCase_1; if (t1 === 2) return C.PluralCase_2; if (t1 >= 3 && t1 <= 6) return C.PluralCase_3; if (t1 >= 7 && t1 <= 10) return C.PluralCase_4; return C.PluralCase_5; }, _pt_rule: function() { var t1 = $._n; if (t1 >= 0 && t1 <= 2 && t1 !== 2) return C.PluralCase_1; return C.PluralCase_5; }, _es_rule: function() { if ($._n === 1) return C.PluralCase_1; return C.PluralCase_5; }, _is_rule: function() { var t2, t1 = $._t === 0; if (t1) { t2 = $._i; t2 = C.JSInt_methods.$mod(t2, 10) === 1 && C.JSInt_methods.$mod(t2, 100) !== 11; } else t2 = false; if (t2 || !t1) return C.PluralCase_1; return C.PluralCase_5; }, _ar_rule: function() { var t1 = $._n; if (t1 === 0) return C.PluralCase_0; if (t1 === 1) return C.PluralCase_1; if (t1 === 2) return C.PluralCase_2; t1 = C.JSInt_methods.$mod(t1, 100); if (t1 >= 3 && t1 <= 10) return C.PluralCase_3; if (t1 >= 11 && true) return C.PluralCase_4; return C.PluralCase_5; }, _sl_rule: function() { var t2, t1 = $._v === 0; if (t1 && C.JSInt_methods.$mod($._i, 100) === 1) return C.PluralCase_1; if (t1 && C.JSInt_methods.$mod($._i, 100) === 2) return C.PluralCase_2; if (t1) { t2 = C.JSInt_methods.$mod($._i, 100); t2 = t2 >= 3 && t2 <= 4; } else t2 = false; if (t2 || !t1) return C.PluralCase_3; return C.PluralCase_5; }, _lt_rule: function() { var t3, t1 = $._n, t2 = C.JSInt_methods.$mod(t1, 10); if (t2 === 1) { t3 = C.JSInt_methods.$mod(t1, 100); t3 = t3 < 11 || t3 > 19; } else t3 = false; if (t3) return C.PluralCase_1; if (t2 >= 2) { t1 = C.JSInt_methods.$mod(t1, 100); t1 = t1 < 11 || t1 > 19; } else t1 = false; if (t1) return C.PluralCase_3; if ($._f !== 0) return C.PluralCase_4; return C.PluralCase_5; }, _en_rule: function() { if ($._i === 1 && $._v === 0) return C.PluralCase_1; return C.PluralCase_5; }, _ak_rule: function() { var t1 = $._n; if (t1 >= 0 && t1 <= 1) return C.PluralCase_1; return C.PluralCase_5; }, localeHasPluralRules: function(locale) { return $.pluralRules.containsKey$1(0, locale); }, PluralCase: function PluralCase(t0) { this._plural_rules$_name = t0; }, InvoiceStatusColors: function InvoiceStatusColors(t0) { this._colors0$_colorTheme = t0; }, RecurringInvoiceStatusColors: function RecurringInvoiceStatusColors(t0) { this._colors0$_colorTheme = t0; }, CreditStatusColors: function CreditStatusColors(t0) { this._colors0$_colorTheme = t0; }, QuoteStatusColors: function QuoteStatusColors(t0) { this._colors0$_colorTheme = t0; }, PaymentStatusColors: function PaymentStatusColors(t0) { this._colors0$_colorTheme = t0; }, ExpenseStatusColors: function ExpenseStatusColors(t0) { this._colors0$_colorTheme = t0; }, WebhookEntity_WebhookEntity: function(id, state) { var t1, t2; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = type$.legacy_String; return E._$WebhookEntity$_(0, "", 0, "", "", "JSON", A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2), t1, false, false, "", "", 0); }, WebhookEntity__initializeBuilder: function(builder) { var t1 = type$.legacy_String; builder.get$headers(builder).replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t1, t1)); builder.get$_webhook_model$_$this()._restMethod = ""; return builder; }, _$WebhookEntity$_: function(archivedAt, assignedUserId, createdAt, createdUserId, eventId, format, headers, id, isChanged, isDeleted, restMethod, targetUrl, updatedAt) { if (headers == null) H.throwExpression(Y.BuiltValueNullFieldError$("WebhookEntity", "headers")); return new E._$WebhookEntity(eventId, targetUrl, format, restMethod, headers, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, WebhookListResponse: function WebhookListResponse() { }, WebhookItemResponse: function WebhookItemResponse() { }, WebhookEntity: function WebhookEntity() { }, _$WebhookListResponseSerializer: function _$WebhookListResponseSerializer() { }, _$WebhookItemResponseSerializer: function _$WebhookItemResponseSerializer() { }, _$WebhookEntitySerializer: function _$WebhookEntitySerializer() { }, _$WebhookListResponse: function _$WebhookListResponse(t0) { this.data = t0; this._webhook_model$__hashCode = null; }, WebhookListResponseBuilder: function WebhookListResponseBuilder() { this._webhook_model$_data = this._webhook_model$_$v = null; }, _$WebhookItemResponse: function _$WebhookItemResponse(t0) { this.data = t0; this._webhook_model$__hashCode = null; }, WebhookItemResponseBuilder: function WebhookItemResponseBuilder() { this._webhook_model$_data = this._webhook_model$_$v = null; }, _$WebhookEntity: function _$WebhookEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.eventId = t0; _.targetUrl = t1; _.format = t2; _.restMethod = t3; _.headers = t4; _.isChanged = t5; _.createdAt = t6; _.updatedAt = t7; _.archivedAt = t8; _.isDeleted = t9; _.createdUserId = t10; _.assignedUserId = t11; _.id = t12; _._webhook_model$__hashCode = null; }, WebhookEntityBuilder: function WebhookEntityBuilder() { var _ = this; _._webhook_model$_id = _._webhook_model$_assignedUserId = _._webhook_model$_createdUserId = _._webhook_model$_isDeleted = _._webhook_model$_archivedAt = _._webhook_model$_updatedAt = _._webhook_model$_createdAt = _._webhook_model$_isChanged = _._headers = _._restMethod = _._format = _._targetUrl = _._eventId = _._webhook_model$_$v = null; }, _WebhookEntity_Object_BaseEntity: function _WebhookEntity_Object_BaseEntity() { }, _WebhookEntity_Object_BaseEntity_SelectableEntity: function _WebhookEntity_Object_BaseEntity_SelectableEntity() { }, GroupRepository: function GroupRepository() { }, handleClientAction: function(context, clients, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, store, state, t1, t2, clientIds, client, url, message, _i, t3, $async$temp1; var $async$handleClientAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (clients.length === 0) { // goto return $async$goto = 1; break; } store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = H._arrayInstanceType(clients)._eval$1("MappedListIterable<1,String*>"); clientIds = P.List_List$of(new H.MappedListIterable(clients, new E.handleClientAction_closure(), t2), true, t2._eval$1("ListIterable.E")); client = type$.legacy_ClientEntity._as(clients[0]); case 3: // switch switch (action) { case C.EntityAction_edit: // goto case $async$goto = 5; break; case C.EntityAction_viewStatement: // goto case $async$goto = 6; break; case C.EntityAction_clientPortal: // goto case $async$goto = 7; break; case C.EntityAction_settings: // goto case $async$goto = 8; break; case C.EntityAction_newTask: // goto case $async$goto = 9; break; case C.EntityAction_newInvoice: // goto case $async$goto = 10; break; case C.EntityAction_newRecurringInvoice: // goto case $async$goto = 11; break; case C.EntityAction_newRecurringExpense: // goto case $async$goto = 12; break; case C.EntityAction_newQuote: // goto case $async$goto = 13; break; case C.EntityAction_newCredit: // goto case $async$goto = 14; break; case C.EntityAction_newExpense: // goto case $async$goto = 15; break; case C.EntityAction_newPayment: // goto case $async$goto = 16; break; case C.EntityAction_newProject: // goto case $async$goto = 17; break; case C.EntityAction_restore: // goto case $async$goto = 18; break; case C.EntityAction_archive: // goto case $async$goto = 19; break; case C.EntityAction_delete: // goto case $async$goto = 20; break; case C.EntityAction_toggleMultiselect: // goto case $async$goto = 21; break; case C.EntityAction_more: // goto case $async$goto = 22; break; default: // goto default $async$goto = 23; break; } break; case 5: // case M.editEntity(null, context, client, null); // goto after switch $async$goto = 4; break; case 6: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ShowPdfClient(client, context)); // goto after switch $async$goto = 4; break; case 7: // case t1 = client.get$primaryContact(); url = t1 == null ? null : t1.link + "?silent=true"; if (url == null) url = ""; $async$temp1 = url.length !== 0; if ($async$temp1) { // goto then $async$goto = 26; break; } else $async$result = $async$temp1; // goto join $async$goto = 27; break; case 26: // then $async$goto = 28; return P._asyncAwait(T.canLaunch(url), $async$handleClientAction); case 28: // returning from await. case 27: // join $async$goto = $async$result ? 24 : 25; break; case 24: // then $async$goto = 29; return P._asyncAwait(T.launch(url, null, false), $async$handleClientAction); case 29: // returning from await. case 25: // join // goto after switch $async$goto = 4; break; case 8: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.ViewSettings(null, null, client, null, false, "localization", false, null)); // goto after switch $async$goto = 4; break; case 9: // case M.createEntity(null, null, context, D.TaskEntity_TaskEntity(null, null, null, state, null).rebuild$1(new E.handleClientAction_closure0(client)), client, false); // goto after switch $async$goto = 4; break; case 10: // case M.createEntity(null, null, context, Q.InvoiceEntity_InvoiceEntity(client, null, null, state, null), client, false); // goto after switch $async$goto = 4; break; case 11: // case M.createEntity(null, null, context, Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_recurringInvoice, null, state, null), client, false); // goto after switch $async$goto = 4; break; case 12: // case M.createEntity(null, null, context, M.ExpenseEntity_ExpenseEntity(client, C.EntityType_recurringExpense, null, null, state, null, null), client, false); // goto after switch $async$goto = 4; break; case 13: // case M.createEntity(null, null, context, Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_quote, null, state, null), client, false); // goto after switch $async$goto = 4; break; case 14: // case M.createEntity(null, null, context, Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_credit, null, state, null), client, false); // goto after switch $async$goto = 4; break; case 15: // case M.createEntity(null, null, context, M.ExpenseEntity_ExpenseEntity(client, null, null, null, state, null, null), client, false); // goto after switch $async$goto = 4; break; case 16: // case M.createEntity(null, null, context, F.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new E.handleClientAction_closure1(client)), client, false); // goto after switch $async$goto = 4; break; case 17: // case M.createEntity(null, null, context, A.ProjectEntity_ProjectEntity(null, null, state, null).rebuild$1(new E.handleClientAction_closure2(client)), client, false); // goto after switch $async$goto = 4; break; case 18: // case t2 = clientIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_clients"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_client"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.RestoreClientsRequest(t1, clientIds)); // goto after switch $async$goto = 4; break; case 19: // case t2 = clientIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_clients"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_client"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ArchiveClientsRequest(t1, clientIds)); // goto after switch $async$goto = 4; break; case 20: // case t2 = clientIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_clients"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_client"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.DeleteClientsRequest(t1, clientIds)); // goto after switch $async$goto = 4; break; case 21: // case if (store.get$_store$_state().uiState.clientUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.StartClientMultiselect()); t1 = clients.length; if (t1 === 0) { // goto after switch $async$goto = 4; break; } for (_i = 0; _i < clients.length; clients.length === t1 || (0, H.throwConcurrentModificationError)(clients), ++_i) { client = clients[_i]; t2 = state.uiState.clientUIState.listUIState; t3 = J.get$id$x(client); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.AddToClientMultiselect(client)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.RemoveFromClientMultiselect(client)); } // goto after switch $async$goto = 4; break; case 22: // case L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([client], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 23: // default P.print("## Error: action " + H.S(action) + " not handled in client_actions"); case 4: // after switch case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleClientAction, $async$completer); }, ViewClientList: function ViewClientList() { }, ViewClient: function ViewClient(t0) { this.clientId = t0; }, EditClient: function EditClient(t0, t1, t2) { this.client = t0; this.completer = t1; this.cancelCompleter = t2; }, EditContact: function EditContact(t0) { this.contact = t0; }, ShowPdfClient: function ShowPdfClient(t0, t1) { this.client = t0; this.context = t1; }, UpdateClient: function UpdateClient(t0) { this.client = t0; }, LoadClient: function LoadClient(t0, t1) { this.completer = t0; this.clientId = t1; }, LoadClients: function LoadClients(t0) { this.completer = t0; }, LoadClientRequest: function LoadClientRequest() { }, LoadClientFailure: function LoadClientFailure(t0) { this.error = t0; }, LoadClientSuccess: function LoadClientSuccess(t0) { this.client = t0; }, LoadClientsRequest: function LoadClientsRequest() { }, LoadClientsFailure: function LoadClientsFailure(t0) { this.error = t0; }, LoadClientsSuccess: function LoadClientsSuccess(t0) { this.clients = t0; }, AddContact: function AddContact(t0) { this.contact = t0; }, UpdateContact: function UpdateContact(t0, t1) { this.index = t0; this.contact = t1; }, DeleteContact: function DeleteContact(t0) { this.index = t0; }, SaveClientRequest: function SaveClientRequest(t0, t1) { this.completer = t0; this.client = t1; }, SaveClientSuccess: function SaveClientSuccess(t0) { this.client = t0; }, AddClientSuccess: function AddClientSuccess(t0) { this.client = t0; }, SaveClientFailure: function SaveClientFailure() { }, ArchiveClientsRequest: function ArchiveClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, ArchiveClientsSuccess: function ArchiveClientsSuccess(t0) { this.clients = t0; }, ArchiveClientsFailure: function ArchiveClientsFailure() { }, DeleteClientsRequest: function DeleteClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, DeleteClientsSuccess: function DeleteClientsSuccess(t0) { this.clients = t0; }, DeleteClientsFailure: function DeleteClientsFailure() { }, RestoreClientsRequest: function RestoreClientsRequest(t0, t1) { this.completer = t0; this.clientIds = t1; }, RestoreClientSuccess: function RestoreClientSuccess(t0) { this.clients = t0; }, RestoreClientFailure: function RestoreClientFailure() { }, FilterClients: function FilterClients(t0) { this.filter = t0; }, SortClients: function SortClients(t0) { this.field = t0; }, FilterClientsByState: function FilterClientsByState(t0) { this.state = t0; }, FilterClientsByCustom1: function FilterClientsByCustom1(t0) { this.value = t0; }, FilterClientsByCustom2: function FilterClientsByCustom2(t0) { this.value = t0; }, FilterClientsByCustom3: function FilterClientsByCustom3(t0) { this.value = t0; }, FilterClientsByCustom4: function FilterClientsByCustom4(t0) { this.value = t0; }, handleClientAction_closure: function handleClientAction_closure() { }, handleClientAction_closure0: function handleClientAction_closure0(t0) { this.client = t0; }, handleClientAction_closure1: function handleClientAction_closure1(t0) { this.client = t0; }, handleClientAction_closure2: function handleClientAction_closure2(t0) { this.client = t0; }, StartClientMultiselect: function StartClientMultiselect() { }, AddToClientMultiselect: function AddToClientMultiselect(t0) { this.entity = t0; }, RemoveFromClientMultiselect: function RemoveFromClientMultiselect(t0) { this.entity = t0; }, ClearClientMultiselect: function ClearClientMultiselect() { }, SaveClientDocumentRequest: function SaveClientDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.client = t2; }, SaveClientDocumentFailure: function SaveClientDocumentFailure() { }, UpdateClientTab: function UpdateClientTab(t0) { this.tabIndex = t0; }, SelectCompany: function SelectCompany(t0, t1) { this.companyIndex = t0; this.clearSelection = t1; }, LoadCompanySuccess: function LoadCompanySuccess(t0) { this.userCompany = t0; }, UpdateCompany: function UpdateCompany(t0) { this.company = t0; }, SaveCompanyRequest: function SaveCompanyRequest(t0, t1) { this.completer = t0; this.company = t1; }, SaveCompanySuccess: function SaveCompanySuccess(t0) { this.company = t0; }, SaveCompanyFailure: function SaveCompanyFailure() { }, AddCompany: function AddCompany(t0, t1) { this.context = t0; this.completer = t1; }, AddCompanySuccess: function AddCompanySuccess() { }, DeleteCompanyRequest: function DeleteCompanyRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.reason = t2; }, DeleteCompanySuccess: function DeleteCompanySuccess() { }, DeleteCompanyFailure: function DeleteCompanyFailure() { }, PurgeDataRequest: function PurgeDataRequest(t0, t1, t2) { this.completer = t0; this.password = t1; this.idToken = t2; }, PurgeDataSuccess: function PurgeDataSuccess() { }, PurgeDataFailure: function PurgeDataFailure() { }, UpdateCompanyLanguage: function UpdateCompanyLanguage(t0) { this.languageId = t0; }, SaveCompanyDocumentRequest: function SaveCompanyDocumentRequest(t0, t1) { this.completer = t0; this.multipartFile = t1; }, SaveCompanyDocumentFailure: function SaveCompanyDocumentFailure() { }, SetDefaultCompanyRequest: function SetDefaultCompanyRequest(t0) { this.completer = t0; }, SetDefaultCompanySuccess: function SetDefaultCompanySuccess() { }, SetDefaultCompanyFailure: function SetDefaultCompanyFailure() { }, handleCreditAction: function(context, credits, action) { return E.handleCreditAction$body(context, credits, action); }, handleCreditAction$body: function(context, credits, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, designId, t3, message, _i, _box_0, store, state, t1, credit, t2, creditIds; var $async$handleCreditAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); credit = type$.legacy_InvoiceEntity._as(C.JSArray_methods.get$first(credits)); t2 = H._arrayInstanceType(credits)._eval$1("MappedListIterable<1,String*>"); creditIds = P.List_List$of(new H.MappedListIterable(credits, new E.handleCreditAction_closure(), t2), true, t2._eval$1("ListIterable.E")); case 3: // switch switch (action) { case C.EntityAction_edit: // goto case $async$goto = 5; break; case C.EntityAction_viewPdf: // goto case $async$goto = 6; break; case C.EntityAction_clientPortal: // goto case $async$goto = 7; break; case C.EntityAction_markSent: // goto case $async$goto = 8; break; case C.EntityAction_emailCredit: // goto case $async$goto = 9; break; case C.EntityAction_bulkEmailCredit: // goto case $async$goto = 10; break; case C.EntityAction_cloneToOther: // goto case $async$goto = 11; break; case C.EntityAction_cloneToInvoice: // goto case $async$goto = 12; break; case C.EntityAction_cloneToQuote: // goto case $async$goto = 13; break; case C.EntityAction_cloneToCredit: // goto case $async$goto = 14; break; case C.EntityAction_cloneToRecurring: // goto case $async$goto = 15; break; case C.EntityAction_newPayment: // goto case $async$goto = 16; break; case C.EntityAction_download: // goto case $async$goto = 17; break; case C.EntityAction_restore: // goto case $async$goto = 18; break; case C.EntityAction_archive: // goto case $async$goto = 19; break; case C.EntityAction_delete: // goto case $async$goto = 20; break; case C.EntityAction_toggleMultiselect: // goto case $async$goto = 21; break; case C.EntityAction_more: // goto case $async$goto = 22; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case M.editEntity(null, context, credit, null); // goto after switch $async$goto = 4; break; case 6: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ShowPdfCredit(credit, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = credit.invitations._list; t2 = J.getInterceptor$asx(t1); $async$goto = 25; return P._asyncAwait(T.canLaunch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true"), $async$handleCreditAction); case 25: // returning from await. $async$goto = $async$result ? 23 : 24; break; case 23: // then $async$goto = 26; return P._asyncAwait(T.launch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true", false, false), $async$handleCreditAction); case 26: // returning from await. case 24: // join // goto after switch $async$goto = 4; break; case 8: // case t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_credit_as_sent"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.MarkSentCreditRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 9: // case case 10: // case _box_0.emailValid = true; C.JSArray_methods.forEach$1(creditIds, new E.handleCreditAction_closure0(_box_0, state, credit)); if (!_box_0.emailValid) { O.showMessageDialog(context, t1.get$clientEmailNotSet(), H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new E.handleCreditAction_closure1(context, state, credit), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === C.EntityAction_emailCredit) { t1 = O.snackBarCompleter(context, t1.get$emailedCredit(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ShowEmailCredit(credit, context, t1)); } else { if (creditIds.length === 1) t1 = t1.get$emailedCredit(); else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "emailed_credits"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.BulkEmailCreditsRequest(t1, creditIds)); } // goto after switch $async$goto = 4; break; case 11: // case O.cloneToDialog(context, credit); // goto after switch $async$goto = 4; break; case 12: // case designId = A.getDesignIdForClientByEntity(credit.clientId, C.EntityType_invoice, state); M.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new E.handleCreditAction_closure2(designId)), null, false); // goto after switch $async$goto = 4; break; case 13: // case designId = A.getDesignIdForClientByEntity(credit.clientId, C.EntityType_quote, state); M.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new E.handleCreditAction_closure3(designId)), null, false); // goto after switch $async$goto = 4; break; case 14: // case M.createEntity(null, null, context, credit.get$clone(credit), null, false); // goto after switch $async$goto = 4; break; case 15: // case designId = A.getDesignIdForClientByEntity(credit.clientId, C.EntityType_invoice, state); M.createEntity(null, null, context, credit.get$clone(credit).rebuild$1(new E.handleCreditAction_closure4(designId)), null, false); // goto after switch $async$goto = 4; break; case 16: // case t1 = F.PaymentEntity_PaymentEntity(null, null, state).rebuild$1(new E.handleCreditAction_closure5(credit, credits)); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).clientState.map; t2 = credit.clientId; M.createEntity(null, null, context, t1, J.$index$asx(t3._map$_map, t2), false); // goto after switch $async$goto = 4; break; case 17: // case t1 = O.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.DownloadCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 18: // case t2 = creditIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_credits"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_credit"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.RestoreCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 19: // case t2 = creditIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_credits"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_credit"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ArchiveCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 20: // case t2 = creditIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_credits"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_credit"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.DeleteCreditsRequest(t1, creditIds)); // goto after switch $async$goto = 4; break; case 21: // case if (store.get$_store$_state().uiState.creditUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.StartCreditMultiselect()); for (t1 = credits.length, _i = 0; _i < credits.length; credits.length === t1 || (0, H.throwConcurrentModificationError)(credits), ++_i) { credit = credits[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.creditUIState.listUIState; t3 = J.get$id$x(credit); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.AddToCreditMultiselect(credit)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.RemoveFromCreditMultiselect(credit)); } // goto after switch $async$goto = 4; break; case 22: // case L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([credit], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleCreditAction, $async$completer); }, ViewCreditList: function ViewCreditList() { }, ViewCredit: function ViewCredit(t0) { this.creditId = t0; }, EditCredit: function EditCredit(t0) { this.credit = t0; }, ShowEmailCredit: function ShowEmailCredit(t0, t1, t2) { this.credit = t0; this.context = t1; this.completer = t2; }, ShowPdfCredit: function ShowPdfCredit(t0, t1, t2) { this.credit = t0; this.context = t1; this.activityId = t2; }, EditCreditItem: function EditCreditItem(t0) { this.creditItemIndex = t0; }, UpdateCredit: function UpdateCredit(t0) { this.credit = t0; }, UpdateCreditClient: function UpdateCreditClient(t0) { this.client = t0; }, LoadCredit: function LoadCredit(t0, t1) { this.completer = t0; this.creditId = t1; }, LoadCredits: function LoadCredits() { }, LoadCreditRequest: function LoadCreditRequest() { }, LoadCreditFailure: function LoadCreditFailure(t0) { this.error = t0; }, LoadCreditSuccess: function LoadCreditSuccess(t0) { this.credit = t0; }, LoadCreditsRequest: function LoadCreditsRequest() { }, LoadCreditsFailure: function LoadCreditsFailure(t0) { this.error = t0; }, LoadCreditsSuccess: function LoadCreditsSuccess(t0) { this.credits = t0; }, AddCreditContact: function AddCreditContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveCreditContact: function RemoveCreditContact(t0) { this.invitation = t0; }, AddCreditItem: function AddCreditItem(t0) { this.creditItem = t0; }, MoveCreditItem: function MoveCreditItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddCreditItems: function AddCreditItems(t0) { this.creditItems = t0; }, UpdateCreditItem: function UpdateCreditItem(t0, t1) { this.index = t0; this.creditItem = t1; }, DeleteCreditItem: function DeleteCreditItem(t0) { this.index = t0; }, SaveCreditRequest: function SaveCreditRequest(t0, t1) { this.completer = t0; this.credit = t1; }, SaveCreditSuccess: function SaveCreditSuccess(t0) { this.credit = t0; }, AddCreditSuccess: function AddCreditSuccess(t0) { this.credit = t0; }, SaveCreditFailure: function SaveCreditFailure() { }, EmailCreditRequest: function EmailCreditRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.creditId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailCreditSuccess: function EmailCreditSuccess() { }, EmailCreditFailure: function EmailCreditFailure() { }, MarkSentCreditRequest: function MarkSentCreditRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, MarkSentCreditSuccess: function MarkSentCreditSuccess(t0) { this.credits = t0; }, MarkSentCreditFailure: function MarkSentCreditFailure() { }, BulkEmailCreditsRequest: function BulkEmailCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, BulkEmailCreditsSuccess: function BulkEmailCreditsSuccess() { }, BulkEmailCreditsFailure: function BulkEmailCreditsFailure() { }, ArchiveCreditsRequest: function ArchiveCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, ArchiveCreditsSuccess: function ArchiveCreditsSuccess(t0) { this.credits = t0; }, ArchiveCreditsFailure: function ArchiveCreditsFailure() { }, DeleteCreditsRequest: function DeleteCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, DeleteCreditsSuccess: function DeleteCreditsSuccess(t0) { this.credits = t0; }, DeleteCreditsFailure: function DeleteCreditsFailure() { }, DownloadCreditsRequest: function DownloadCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, DownloadCreditsSuccess: function DownloadCreditsSuccess() { }, DownloadCreditsFailure: function DownloadCreditsFailure() { }, RestoreCreditsRequest: function RestoreCreditsRequest(t0, t1) { this.completer = t0; this.creditIds = t1; }, RestoreCreditsSuccess: function RestoreCreditsSuccess(t0) { this.credits = t0; }, RestoreCreditsFailure: function RestoreCreditsFailure() { }, FilterCredits: function FilterCredits(t0) { this.filter = t0; }, SortCredits: function SortCredits(t0) { this.field = t0; }, FilterCreditsByState: function FilterCreditsByState(t0) { this.state = t0; }, FilterCreditsByCustom1: function FilterCreditsByCustom1(t0) { this.value = t0; }, FilterCreditsByCustom2: function FilterCreditsByCustom2(t0) { this.value = t0; }, FilterCreditsByCustom3: function FilterCreditsByCustom3(t0) { this.value = t0; }, FilterCreditsByCustom4: function FilterCreditsByCustom4(t0) { this.value = t0; }, SaveCreditDocumentRequest: function SaveCreditDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.credit = t2; }, SaveCreditDocumentFailure: function SaveCreditDocumentFailure() { }, handleCreditAction_closure: function handleCreditAction_closure() { }, handleCreditAction_closure0: function handleCreditAction_closure0(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.credit = t2; }, handleCreditAction_closure1: function handleCreditAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.credit = t2; }, handleCreditAction_closure2: function handleCreditAction_closure2(t0) { this.designId = t0; }, handleCreditAction_closure3: function handleCreditAction_closure3(t0) { this.designId = t0; }, handleCreditAction_closure4: function handleCreditAction_closure4(t0) { this.designId = t0; }, handleCreditAction_closure5: function handleCreditAction_closure5(t0, t1) { this.credit = t0; this.credits = t1; }, handleCreditAction__closure: function handleCreditAction__closure() { }, StartCreditMultiselect: function StartCreditMultiselect() { }, AddToCreditMultiselect: function AddToCreditMultiselect(t0) { this.entity = t0; }, RemoveFromCreditMultiselect: function RemoveFromCreditMultiselect(t0) { this.entity = t0; }, ClearCreditMultiselect: function ClearCreditMultiselect() { }, UpdateCreditTab: function UpdateCreditTab(t0) { this.tabIndex = t0; }, _$GroupState$_: function(list, map) { var _s10_ = "GroupState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "list")); return new E._$GroupState(map, list); }, _$GroupUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("GroupUIState", "listUIState")); return new E._$GroupUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, GroupState: function GroupState() { }, GroupUIState: function GroupUIState() { }, _$GroupStateSerializer: function _$GroupStateSerializer() { }, _$GroupUIStateSerializer: function _$GroupUIStateSerializer() { }, _$GroupState: function _$GroupState(t0, t1) { this.map = t0; this.list = t1; this._group_state$__hashCode = null; }, GroupStateBuilder: function GroupStateBuilder() { this._group_state$_list = this._group_state$_map = this._group_state$_$v = null; }, _$GroupUIState: function _$GroupUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._group_state$__hashCode = null; }, GroupUIStateBuilder: function GroupUIStateBuilder() { var _ = this; _._group_state$_cancelCompleter = _._group_state$_saveCompleter = _._group_state$_tabIndex = _._group_state$_forceSelected = _._group_state$_selectedId = _._group_state$_listUIState = _._group_state$_editing = _._group_state$_$v = null; }, _GroupUIState_Object_EntityUIState: function _GroupUIState_Object_EntityUIState() { }, _editPaymentTerm: function() { return new E._editPaymentTerm_closure(); }, _viewPaymentTerm: function() { return new E._viewPaymentTerm_closure(); }, _viewPaymentTermList: function() { return new E._viewPaymentTermList_closure0(); }, _archivePaymentTerm: function(repository) { return new E._archivePaymentTerm_closure(repository); }, _deletePaymentTerm: function(repository) { return new E._deletePaymentTerm_closure(repository); }, _restorePaymentTerm: function(repository) { return new E._restorePaymentTerm_closure(repository); }, _savePaymentTerm: function(repository) { return new E._savePaymentTerm_closure(repository); }, _loadPaymentTerm: function(repository) { return new E._loadPaymentTerm_closure(repository); }, _loadPaymentTerms: function(repository) { return new E._loadPaymentTerms_closure(repository); }, _editPaymentTerm_closure: function _editPaymentTerm_closure() { }, _viewPaymentTerm_closure: function _viewPaymentTerm_closure() { }, _viewPaymentTermList_closure0: function _viewPaymentTermList_closure0() { }, _viewPaymentTermList__closure: function _viewPaymentTermList__closure() { }, _archivePaymentTerm_closure: function _archivePaymentTerm_closure(t0) { this.repository = t0; }, _archivePaymentTerm__closure: function _archivePaymentTerm__closure(t0) { this.store = t0; }, _archivePaymentTerm__closure0: function _archivePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archivePaymentTerm__closure1: function _archivePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _deletePaymentTerm_closure: function _deletePaymentTerm_closure(t0) { this.repository = t0; }, _deletePaymentTerm__closure: function _deletePaymentTerm__closure(t0) { this.store = t0; }, _deletePaymentTerm__closure0: function _deletePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deletePaymentTerm__closure1: function _deletePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _restorePaymentTerm_closure: function _restorePaymentTerm_closure(t0) { this.repository = t0; }, _restorePaymentTerm__closure: function _restorePaymentTerm__closure(t0) { this.store = t0; }, _restorePaymentTerm__closure0: function _restorePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restorePaymentTerm__closure1: function _restorePaymentTerm__closure1(t0, t1, t2) { this.store = t0; this.prevPaymentTerms = t1; this.action = t2; }, _savePaymentTerm_closure: function _savePaymentTerm_closure(t0) { this.repository = t0; }, _savePaymentTerm__closure: function _savePaymentTerm__closure(t0, t1) { this.action = t0; this.store = t1; }, _savePaymentTerm__closure0: function _savePaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerm_closure: function _loadPaymentTerm_closure(t0) { this.repository = t0; }, _loadPaymentTerm__closure: function _loadPaymentTerm__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerm__closure0: function _loadPaymentTerm__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerms_closure: function _loadPaymentTerms_closure(t0) { this.repository = t0; }, _loadPaymentTerms__closure: function _loadPaymentTerms__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadPaymentTerms__closure0: function _loadPaymentTerms__closure0(t0, t1) { this.store = t0; this.action = t1; }, _editProduct: function() { return new E._editProduct_closure(); }, _viewProduct: function() { return new E._viewProduct_closure(); }, _viewProductList: function() { return new E._viewProductList_closure(); }, _archiveProduct: function(repository) { return new E._archiveProduct_closure(repository); }, _deleteProduct: function(repository) { return new E._deleteProduct_closure(repository); }, _restoreProduct: function(repository) { return new E._restoreProduct_closure(repository); }, _saveProduct: function(repository) { return new E._saveProduct_closure(repository); }, _loadProduct: function(repository) { return new E._loadProduct_closure(repository); }, _loadProducts: function(repository) { return new E._loadProducts_closure(repository); }, _saveDocument: function(repository) { return new E._saveDocument_closure11(repository); }, _editProduct_closure: function _editProduct_closure() { }, _viewProduct_closure: function _viewProduct_closure() { }, _viewProductList_closure: function _viewProductList_closure() { }, _viewProductList__closure: function _viewProductList__closure() { }, _archiveProduct_closure: function _archiveProduct_closure(t0) { this.repository = t0; }, _archiveProduct__closure: function _archiveProduct__closure(t0) { this.store = t0; }, _archiveProduct__closure0: function _archiveProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveProduct__closure1: function _archiveProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _deleteProduct_closure: function _deleteProduct_closure(t0) { this.repository = t0; }, _deleteProduct__closure: function _deleteProduct__closure(t0) { this.store = t0; }, _deleteProduct__closure0: function _deleteProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteProduct__closure1: function _deleteProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _restoreProduct_closure: function _restoreProduct_closure(t0) { this.repository = t0; }, _restoreProduct__closure: function _restoreProduct__closure(t0) { this.store = t0; }, _restoreProduct__closure0: function _restoreProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreProduct__closure1: function _restoreProduct__closure1(t0, t1, t2) { this.store = t0; this.prevProducts = t1; this.action = t2; }, _saveProduct_closure: function _saveProduct_closure(t0) { this.repository = t0; }, _saveProduct__closure: function _saveProduct__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveProduct__closure0: function _saveProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProduct_closure: function _loadProduct_closure(t0) { this.repository = t0; }, _loadProduct__closure: function _loadProduct__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProduct__closure0: function _loadProduct__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadProducts_closure: function _loadProducts_closure(t0) { this.repository = t0; }, _loadProducts__closure: function _loadProducts__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadProducts__closure0: function _loadProducts__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure11: function _saveDocument_closure11(t0) { this.repository = t0; }, _saveDocument__closure23: function _saveDocument__closure23(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure24: function _saveDocument__closure24(t0, t1) { this.store = t0; this.action = t1; }, handleQuoteAction: function(context, quotes, action) { return E.handleQuoteAction$body(context, quotes, action); }, handleQuoteAction$body: function(context, quotes, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, designId, message, _i, t3, _box_0, store, state, t1, quote, t2, quoteIds; var $async$handleQuoteAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); quote = type$.legacy_InvoiceEntity._as(C.JSArray_methods.get$first(quotes)); t2 = H._arrayInstanceType(quotes)._eval$1("MappedListIterable<1,String*>"); quoteIds = P.List_List$of(new H.MappedListIterable(quotes, new E.handleQuoteAction_closure(), t2), true, t2._eval$1("ListIterable.E")); case 3: // switch switch (action) { case C.EntityAction_edit: // goto case $async$goto = 5; break; case C.EntityAction_viewPdf: // goto case $async$goto = 6; break; case C.EntityAction_clientPortal: // goto case $async$goto = 7; break; case C.EntityAction_convertToInvoice: // goto case $async$goto = 8; break; case C.EntityAction_markSent: // goto case $async$goto = 9; break; case C.EntityAction_emailQuote: // goto case $async$goto = 10; break; case C.EntityAction_bulkEmailQuote: // goto case $async$goto = 11; break; case C.EntityAction_cloneToOther: // goto case $async$goto = 12; break; case C.EntityAction_cloneToInvoice: // goto case $async$goto = 13; break; case C.EntityAction_cloneToQuote: // goto case $async$goto = 14; break; case C.EntityAction_cloneToCredit: // goto case $async$goto = 15; break; case C.EntityAction_cloneToRecurring: // goto case $async$goto = 16; break; case C.EntityAction_download: // goto case $async$goto = 17; break; case C.EntityAction_restore: // goto case $async$goto = 18; break; case C.EntityAction_archive: // goto case $async$goto = 19; break; case C.EntityAction_delete: // goto case $async$goto = 20; break; case C.EntityAction_toggleMultiselect: // goto case $async$goto = 21; break; case C.EntityAction_more: // goto case $async$goto = 22; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case M.editEntity(null, context, quote, null); // goto after switch $async$goto = 4; break; case 6: // case J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ShowPdfQuote(quote, context, null)); // goto after switch $async$goto = 4; break; case 7: // case t1 = quote.invitations._list; t2 = J.getInterceptor$asx(t1); $async$goto = 25; return P._asyncAwait(T.canLaunch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true"), $async$handleQuoteAction); case 25: // returning from await. $async$goto = $async$result ? 23 : 24; break; case 23: // then $async$goto = 26; return P._asyncAwait(T.launch(t2.get$isEmpty(t1) ? "" : t2.get$first(t1).link + "?silent=true", false, false), $async$handleQuoteAction); case 26: // returning from await. case 24: // join // goto after switch $async$goto = 4; break; case 8: // case t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "converted_quote"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ConvertQuotes(quoteIds, t1)); // goto after switch $async$goto = 4; break; case 9: // case t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "marked_quote_as_sent"); if (t1 == null) t1 = ""; t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.MarkSentQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 10: // case case 11: // case _box_0.emailValid = true; C.JSArray_methods.forEach$1(quoteIds, new E.handleQuoteAction_closure0(_box_0, state, quote)); if (!_box_0.emailValid) { O.showMessageDialog(context, t1.get$clientEmailNotSet(), H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$editClient().toUpperCase(), null, null, null, null, null, null, null, null, null), null, new E.handleQuoteAction_closure1(context, state, quote), null)], type$.JSArray_legacy_TextButton)); // goto return $async$goto = 1; break; } if (action === C.EntityAction_emailQuote) { t1 = O.snackBarCompleter(context, t1.get$emailedQuote(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ShowEmailQuote(quote, context, t1)); } else { if (quoteIds.length === 1) t1 = t1.get$emailedQuote(); else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "emailed_quotes"); if (t1 == null) t1 = ""; } t1 = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.BulkEmailQuotesRequest(t1, quoteIds)); } // goto after switch $async$goto = 4; break; case 12: // case O.cloneToDialog(context, quote); // goto after switch $async$goto = 4; break; case 13: // case designId = A.getDesignIdForClientByEntity(quote.clientId, C.EntityType_invoice, state); M.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new E.handleQuoteAction_closure2(designId)), null, false); // goto after switch $async$goto = 4; break; case 14: // case M.createEntity(null, null, context, quote.get$clone(quote), null, false); // goto after switch $async$goto = 4; break; case 15: // case designId = A.getDesignIdForClientByEntity(quote.clientId, C.EntityType_credit, state); M.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new E.handleQuoteAction_closure3(designId)), null, false); // goto after switch $async$goto = 4; break; case 16: // case designId = A.getDesignIdForClientByEntity(quote.clientId, C.EntityType_invoice, state); M.createEntity(null, null, context, quote.get$clone(quote).rebuild$1(new E.handleQuoteAction_closure4(designId)), null, false); // goto after switch $async$goto = 4; break; case 17: // case t1 = O.snackBarCompleter(context, t1.get$exportedData(), false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.DownloadQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 18: // case t2 = quoteIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_quotes"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_quote"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.RestoreQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 19: // case t2 = quoteIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_quotes"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_quote"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.ArchiveQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 20: // case t2 = quoteIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_quotes"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, ":value", C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_quote"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.DeleteQuotesRequest(t1, quoteIds)); // goto after switch $async$goto = 4; break; case 21: // case if (store.get$_store$_state().uiState.quoteUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.StartQuoteMultiselect()); for (t1 = quotes.length, _i = 0; _i < quotes.length; quotes.length === t1 || (0, H.throwConcurrentModificationError)(quotes), ++_i) { quote = quotes[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.quoteUIState.listUIState; t3 = J.get$id$x(quote); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.AddToQuoteMultiselect(quote)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t3, 0).call$1(new E.RemoveFromQuoteMultiselect(quote)); } // goto after switch $async$goto = 4; break; case 22: // case L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([quote], type$.JSArray_legacy_BaseEntity), false); // goto after switch $async$goto = 4; break; case 4: // after switch case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleQuoteAction, $async$completer); }, ViewQuoteList: function ViewQuoteList() { }, ViewQuote: function ViewQuote(t0) { this.quoteId = t0; }, EditQuote: function EditQuote(t0, t1) { this.quote = t0; this.quoteItemIndex = t1; }, ShowEmailQuote: function ShowEmailQuote(t0, t1, t2) { this.quote = t0; this.context = t1; this.completer = t2; }, ShowPdfQuote: function ShowPdfQuote(t0, t1, t2) { this.quote = t0; this.context = t1; this.activityId = t2; }, EditQuoteItem: function EditQuoteItem(t0) { this.quoteItemIndex = t0; }, UpdateQuote: function UpdateQuote(t0) { this.quote = t0; }, UpdateQuoteClient: function UpdateQuoteClient(t0) { this.client = t0; }, LoadQuote: function LoadQuote(t0, t1) { this.completer = t0; this.quoteId = t1; }, LoadQuotes: function LoadQuotes() { }, LoadQuoteRequest: function LoadQuoteRequest() { }, LoadQuoteFailure: function LoadQuoteFailure(t0) { this.error = t0; }, LoadQuoteSuccess: function LoadQuoteSuccess(t0) { this.quote = t0; }, LoadQuotesRequest: function LoadQuotesRequest() { }, LoadQuotesFailure: function LoadQuotesFailure(t0) { this.error = t0; }, LoadQuotesSuccess: function LoadQuotesSuccess(t0) { this.quotes = t0; }, AddQuoteContact: function AddQuoteContact(t0, t1) { this.contact = t0; this.invitation = t1; }, RemoveQuoteContact: function RemoveQuoteContact(t0) { this.invitation = t0; }, AddQuoteItem: function AddQuoteItem(t0) { this.quoteItem = t0; }, MoveQuoteItem: function MoveQuoteItem(t0, t1) { this.oldIndex = t0; this.newIndex = t1; }, AddQuoteItems: function AddQuoteItems(t0) { this.quoteItems = t0; }, UpdateQuoteItem: function UpdateQuoteItem(t0, t1) { this.index = t0; this.quoteItem = t1; }, DeleteQuoteItem: function DeleteQuoteItem(t0) { this.index = t0; }, SaveQuoteRequest: function SaveQuoteRequest(t0, t1, t2) { this.completer = t0; this.quote = t1; this.action = t2; }, SaveQuoteSuccess: function SaveQuoteSuccess(t0) { this.quote = t0; }, AddQuoteSuccess: function AddQuoteSuccess(t0) { this.quote = t0; }, SaveQuoteFailure: function SaveQuoteFailure() { }, EmailQuoteRequest: function EmailQuoteRequest(t0, t1, t2, t3, t4) { var _ = this; _.completer = t0; _.quoteId = t1; _.template = t2; _.subject = t3; _.body = t4; }, EmailQuoteSuccess: function EmailQuoteSuccess() { }, EmailQuoteFailure: function EmailQuoteFailure() { }, MarkSentQuotesRequest: function MarkSentQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, MarkSentQuoteSuccess: function MarkSentQuoteSuccess(t0) { this.quotes = t0; }, MarkSentQuoteFailure: function MarkSentQuoteFailure() { }, BulkEmailQuotesRequest: function BulkEmailQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, BulkEmailQuotesSuccess: function BulkEmailQuotesSuccess() { }, BulkEmailQuotesFailure: function BulkEmailQuotesFailure() { }, ArchiveQuotesRequest: function ArchiveQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, ArchiveQuotesSuccess: function ArchiveQuotesSuccess(t0) { this.quotes = t0; }, ArchiveQuotesFailure: function ArchiveQuotesFailure() { }, DeleteQuotesRequest: function DeleteQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, DeleteQuotesSuccess: function DeleteQuotesSuccess(t0) { this.quotes = t0; }, DeleteQuotesFailure: function DeleteQuotesFailure() { }, DownloadQuotesRequest: function DownloadQuotesRequest(t0, t1) { this.completer = t0; this.invoiceIds = t1; }, DownloadQuotesSuccess: function DownloadQuotesSuccess() { }, DownloadQuotesFailure: function DownloadQuotesFailure() { }, RestoreQuotesRequest: function RestoreQuotesRequest(t0, t1) { this.completer = t0; this.quoteIds = t1; }, RestoreQuotesSuccess: function RestoreQuotesSuccess(t0) { this.quotes = t0; }, RestoreQuotesFailure: function RestoreQuotesFailure() { }, FilterQuotes: function FilterQuotes(t0) { this.filter = t0; }, SortQuotes: function SortQuotes(t0) { this.field = t0; }, FilterQuotesByState: function FilterQuotesByState(t0) { this.state = t0; }, FilterQuotesByStatus: function FilterQuotesByStatus(t0) { this.status = t0; }, FilterQuotesByCustom1: function FilterQuotesByCustom1(t0) { this.value = t0; }, FilterQuotesByCustom2: function FilterQuotesByCustom2(t0) { this.value = t0; }, FilterQuotesByCustom3: function FilterQuotesByCustom3(t0) { this.value = t0; }, FilterQuotesByCustom4: function FilterQuotesByCustom4(t0) { this.value = t0; }, ConvertQuotes: function ConvertQuotes(t0, t1) { this.quoteIds = t0; this.completer = t1; }, ConvertQuoteSuccess: function ConvertQuoteSuccess(t0) { this.quotes = t0; }, ConvertQuoteFailure: function ConvertQuoteFailure() { }, SaveQuoteDocumentRequest: function SaveQuoteDocumentRequest(t0, t1, t2) { this.completer = t0; this.multipartFile = t1; this.quote = t2; }, SaveQuoteDocumentFailure: function SaveQuoteDocumentFailure() { }, handleQuoteAction_closure: function handleQuoteAction_closure() { }, handleQuoteAction_closure0: function handleQuoteAction_closure0(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.quote = t2; }, handleQuoteAction_closure1: function handleQuoteAction_closure1(t0, t1, t2) { this.context = t0; this.state = t1; this.quote = t2; }, handleQuoteAction_closure2: function handleQuoteAction_closure2(t0) { this.designId = t0; }, handleQuoteAction_closure3: function handleQuoteAction_closure3(t0) { this.designId = t0; }, handleQuoteAction_closure4: function handleQuoteAction_closure4(t0) { this.designId = t0; }, StartQuoteMultiselect: function StartQuoteMultiselect() { }, AddToQuoteMultiselect: function AddToQuoteMultiselect(t0) { this.entity = t0; }, RemoveFromQuoteMultiselect: function RemoveFromQuoteMultiselect(t0) { this.entity = t0; }, ClearQuoteMultiselect: function ClearQuoteMultiselect() { }, UpdateQuoteTab: function UpdateQuoteTab(t0) { this.tabIndex = t0; }, recurringExpenseUIReducer: function(state, action) { var t1; state.toString; t1 = new K.RecurringExpenseUIStateBuilder(); t1._recurring_expense_state$_$v = state; new E.recurringExpenseUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing11: function(recurringExpense, action) { var _null = null; return M.ExpenseEntity_ExpenseEntity(_null, C.EntityType_recurringExpense, _null, _null, _null, _null, _null); }, _updateEditing12: function(recurringExpense, action) { return action.get$recurringExpense(); }, _viewRecurringExpenseList0: function(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new E._viewRecurringExpenseList_closure()); }, _filterRecurringExpensesByCustom1: function(recurringExpenseListState, action) { var t1 = recurringExpenseListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByCustom1_closure(action)); else return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByCustom1_closure0(action)); }, _filterRecurringExpensesByCustom2: function(recurringExpenseListState, action) { var t1 = recurringExpenseListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByCustom2_closure(action)); else return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByCustom2_closure0(action)); }, _filterRecurringExpensesByState: function(recurringExpenseListState, action) { var t1 = recurringExpenseListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByState_closure(action)); else return recurringExpenseListState.rebuild$1(new E._filterRecurringExpensesByState_closure0(action)); }, _filterRecurringExpenses: function(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new E._filterRecurringExpenses_closure(action, recurringExpenseListState)); }, _sortRecurringExpenses: function(recurringExpenseListState, action) { return recurringExpenseListState.rebuild$1(new E._sortRecurringExpenses_closure(action)); }, _startListMultiselect13: function(productListState, action) { return productListState.rebuild$1(new E._startListMultiselect_closure19()); }, _addToListMultiselect13: function(productListState, action) { return productListState.rebuild$1(new E._addToListMultiselect_closure19(action)); }, _removeFromListMultiselect13: function(productListState, action) { return productListState.rebuild$1(new E._removeFromListMultiselect_closure19(action)); }, _clearListMultiselect13: function(productListState, action) { return productListState.rebuild$1(new E._clearListMultiselect_closure19()); }, _archiveRecurringExpenseSuccess: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._archiveRecurringExpenseSuccess_closure(action)); }, _deleteRecurringExpenseSuccess: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._deleteRecurringExpenseSuccess_closure(action)); }, _restoreRecurringExpenseSuccess: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._restoreRecurringExpenseSuccess_closure(action)); }, _addRecurringExpense: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._addRecurringExpense_closure(action)); }, _updateRecurringExpense: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._updateRecurringExpense_closure(action)); }, _startRecurringExpensesSuccess: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._startRecurringExpensesSuccess_closure(action)); }, _stopRecurringExpensesSuccess: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._stopRecurringExpensesSuccess_closure(action)); }, _setLoadedRecurringExpense: function(recurringExpenseState, action) { return recurringExpenseState.rebuild$1(new E._setLoadedRecurringExpense_closure(action)); }, _setLoadedRecurringExpenses: function(recurringExpenseState, action) { return recurringExpenseState.loadRecurringExpenses$1(action.recurringExpenses); }, _setLoadedCompany12: function(recurringExpenseState, action) { return recurringExpenseState.loadRecurringExpenses$1(action.userCompany.company.recurringExpenses); }, recurringExpenseUIReducer_closure: function recurringExpenseUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure151: function forceSelectedReducer_closure151() { }, forceSelectedReducer_closure152: function forceSelectedReducer_closure152() { }, forceSelectedReducer_closure153: function forceSelectedReducer_closure153() { }, forceSelectedReducer_closure154: function forceSelectedReducer_closure154() { }, forceSelectedReducer_closure155: function forceSelectedReducer_closure155() { }, forceSelectedReducer_closure156: function forceSelectedReducer_closure156() { }, forceSelectedReducer_closure157: function forceSelectedReducer_closure157() { }, forceSelectedReducer_closure158: function forceSelectedReducer_closure158() { }, tabIndexReducer_closure17: function tabIndexReducer_closure17() { }, tabIndexReducer_closure18: function tabIndexReducer_closure18() { }, selectedIdReducer_closure301: function selectedIdReducer_closure301() { }, selectedIdReducer_closure302: function selectedIdReducer_closure302() { }, selectedIdReducer_closure303: function selectedIdReducer_closure303() { }, selectedIdReducer_closure304: function selectedIdReducer_closure304() { }, selectedIdReducer_closure305: function selectedIdReducer_closure305() { }, selectedIdReducer_closure306: function selectedIdReducer_closure306() { }, selectedIdReducer_closure307: function selectedIdReducer_closure307() { }, selectedIdReducer_closure308: function selectedIdReducer_closure308() { }, selectedIdReducer_closure309: function selectedIdReducer_closure309() { }, selectedIdReducer_closure310: function selectedIdReducer_closure310() { }, selectedIdReducer_closure311: function selectedIdReducer_closure311() { }, selectedIdReducer_closure312: function selectedIdReducer_closure312() { }, selectedIdReducer_closure313: function selectedIdReducer_closure313() { }, selectedIdReducer_closure314: function selectedIdReducer_closure314() { }, selectedIdReducer_closure315: function selectedIdReducer_closure315() { }, editingReducer_closure97: function editingReducer_closure97() { }, editingReducer_closure98: function editingReducer_closure98() { }, editingReducer_closure99: function editingReducer_closure99() { }, editingReducer_closure100: function editingReducer_closure100() { }, editingReducer__closure37: function editingReducer__closure37() { }, _viewRecurringExpenseList_closure: function _viewRecurringExpenseList_closure() { }, _filterRecurringExpensesByCustom1_closure: function _filterRecurringExpensesByCustom1_closure(t0) { this.action = t0; }, _filterRecurringExpensesByCustom1_closure0: function _filterRecurringExpensesByCustom1_closure0(t0) { this.action = t0; }, _filterRecurringExpensesByCustom2_closure: function _filterRecurringExpensesByCustom2_closure(t0) { this.action = t0; }, _filterRecurringExpensesByCustom2_closure0: function _filterRecurringExpensesByCustom2_closure0(t0) { this.action = t0; }, _filterRecurringExpensesByState_closure: function _filterRecurringExpensesByState_closure(t0) { this.action = t0; }, _filterRecurringExpensesByState_closure0: function _filterRecurringExpensesByState_closure0(t0) { this.action = t0; }, _filterRecurringExpenses_closure: function _filterRecurringExpenses_closure(t0, t1) { this.action = t0; this.recurringExpenseListState = t1; }, _sortRecurringExpenses_closure: function _sortRecurringExpenses_closure(t0) { this.action = t0; }, _startListMultiselect_closure19: function _startListMultiselect_closure19() { }, _addToListMultiselect_closure19: function _addToListMultiselect_closure19(t0) { this.action = t0; }, _removeFromListMultiselect_closure19: function _removeFromListMultiselect_closure19(t0) { this.action = t0; }, _clearListMultiselect_closure19: function _clearListMultiselect_closure19() { }, _archiveRecurringExpenseSuccess_closure: function _archiveRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _deleteRecurringExpenseSuccess_closure: function _deleteRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _restoreRecurringExpenseSuccess_closure: function _restoreRecurringExpenseSuccess_closure(t0) { this.action = t0; }, _addRecurringExpense_closure: function _addRecurringExpense_closure(t0) { this.action = t0; }, _addRecurringExpense__closure: function _addRecurringExpense__closure() { }, _updateRecurringExpense_closure: function _updateRecurringExpense_closure(t0) { this.action = t0; }, _updateRecurringExpense__closure: function _updateRecurringExpense__closure() { }, _startRecurringExpensesSuccess_closure: function _startRecurringExpensesSuccess_closure(t0) { this.action = t0; }, _stopRecurringExpensesSuccess_closure: function _stopRecurringExpensesSuccess_closure(t0) { this.action = t0; }, _setLoadedRecurringExpense_closure: function _setLoadedRecurringExpense_closure(t0) { this.action = t0; }, _setLoadedRecurringExpense__closure: function _setLoadedRecurringExpense__closure() { }, userUIReducer: function(state, action) { var t1; state.toString; t1 = new Q.UserUIStateBuilder(); t1._user_state$_$v = state; new E.userUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing18: function(user, action) { return B.UserEntity_UserEntity(null, null, null); }, _updateEditing19: function(user, action) { return action.get$user(); }, _viewUserList0: function(userListState, action) { return userListState.rebuild$1(new E._viewUserList_closure()); }, _filterUsersByCustom1: function(userListState, action) { var t1 = userListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return userListState.rebuild$1(new E._filterUsersByCustom1_closure(action)); else return userListState.rebuild$1(new E._filterUsersByCustom1_closure0(action)); }, _filterUsersByCustom2: function(userListState, action) { var t1 = userListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return userListState.rebuild$1(new E._filterUsersByCustom2_closure(action)); else return userListState.rebuild$1(new E._filterUsersByCustom2_closure0(action)); }, _filterUsersByCustom3: function(userListState, action) { var t1 = userListState.custom3Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return userListState.rebuild$1(new E._filterUsersByCustom3_closure(action)); else return userListState.rebuild$1(new E._filterUsersByCustom3_closure0(action)); }, _filterUsersByCustom4: function(userListState, action) { var t1 = userListState.custom4Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return userListState.rebuild$1(new E._filterUsersByCustom4_closure(action)); else return userListState.rebuild$1(new E._filterUsersByCustom4_closure0(action)); }, _filterUsersByState: function(userListState, action) { var t1 = userListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return userListState.rebuild$1(new E._filterUsersByState_closure(action)); else return userListState.rebuild$1(new E._filterUsersByState_closure0(action)); }, _filterUsers: function(userListState, action) { return userListState.rebuild$1(new E._filterUsers_closure(action, userListState)); }, _sortUsers: function(userListState, action) { return userListState.rebuild$1(new E._sortUsers_closure(action)); }, _startListMultiselect20: function(userListState, action) { return userListState.rebuild$1(new E._startListMultiselect_closure9()); }, _addToListMultiselect20: function(userListState, action) { return userListState.rebuild$1(new E._addToListMultiselect_closure9(action)); }, _removeFromListMultiselect20: function(userListState, action) { return userListState.rebuild$1(new E._removeFromListMultiselect_closure9(action)); }, _clearListMultiselect20: function(userListState, action) { return userListState.rebuild$1(new E._clearListMultiselect_closure9()); }, _archiveUserSuccess: function(userState, action) { return userState.rebuild$1(new E._archiveUserSuccess_closure(action)); }, _deleteUserSuccess: function(userState, action) { return userState.rebuild$1(new E._deleteUserSuccess_closure(action)); }, _restoreUserSuccess: function(userState, action) { return userState.rebuild$1(new E._restoreUserSuccess_closure(action)); }, _removeUserSuccess: function(userState, action) { return userState.rebuild$1(new E._removeUserSuccess_closure(action)); }, _addUser: function(userState, action) { return userState.rebuild$1(new E._addUser_closure(action)); }, _updateUser: function(userState, action) { return userState.rebuild$1(new E._updateUser_closure(action)); }, _updateAuthUser: function(userState, action) { return userState.rebuild$1(new E._updateAuthUser_closure(action)); }, _connectOAuthUser0: function(userState, action) { return userState.rebuild$1(new E._connectOAuthUser_closure(action)); }, _connectGmailUser0: function(userState, action) { return userState.rebuild$1(new E._connectGmailUser_closure(action)); }, _setLoadedUser: function(userState, action) { return userState.rebuild$1(new E._setLoadedUser_closure(action)); }, _setLoadedUsers: function(userState, action) { var state = userState.rebuild$1(new E._setLoadedUsers_closure(action)); return state.rebuild$1(new E._setLoadedUsers_closure0(state)); }, _setLoadedCompany19: function(userState, action) { var state = userState.rebuild$1(new E._setLoadedCompany_closure5(action)); return state.rebuild$1(new E._setLoadedCompany_closure6(state)); }, userUIReducer_closure: function userUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure71: function forceSelectedReducer_closure71() { }, forceSelectedReducer_closure72: function forceSelectedReducer_closure72() { }, forceSelectedReducer_closure73: function forceSelectedReducer_closure73() { }, forceSelectedReducer_closure74: function forceSelectedReducer_closure74() { }, forceSelectedReducer_closure75: function forceSelectedReducer_closure75() { }, forceSelectedReducer_closure76: function forceSelectedReducer_closure76() { }, forceSelectedReducer_closure77: function forceSelectedReducer_closure77() { }, forceSelectedReducer_closure78: function forceSelectedReducer_closure78() { }, selectedIdReducer_closure144: function selectedIdReducer_closure144() { }, selectedIdReducer_closure145: function selectedIdReducer_closure145() { }, selectedIdReducer_closure146: function selectedIdReducer_closure146() { }, selectedIdReducer_closure147: function selectedIdReducer_closure147() { }, selectedIdReducer_closure148: function selectedIdReducer_closure148() { }, selectedIdReducer_closure149: function selectedIdReducer_closure149() { }, selectedIdReducer_closure150: function selectedIdReducer_closure150() { }, selectedIdReducer_closure151: function selectedIdReducer_closure151() { }, selectedIdReducer_closure152: function selectedIdReducer_closure152() { }, selectedIdReducer_closure153: function selectedIdReducer_closure153() { }, selectedIdReducer_closure154: function selectedIdReducer_closure154() { }, selectedIdReducer_closure155: function selectedIdReducer_closure155() { }, selectedIdReducer_closure156: function selectedIdReducer_closure156() { }, selectedIdReducer_closure157: function selectedIdReducer_closure157() { }, selectedIdReducer_closure158: function selectedIdReducer_closure158() { }, selectedIdReducer_closure159: function selectedIdReducer_closure159() { }, editingReducer_closure43: function editingReducer_closure43() { }, editingReducer_closure44: function editingReducer_closure44() { }, editingReducer_closure45: function editingReducer_closure45() { }, editingReducer_closure46: function editingReducer_closure46() { }, editingReducer__closure15: function editingReducer__closure15() { }, _viewUserList_closure: function _viewUserList_closure() { }, _filterUsersByCustom1_closure: function _filterUsersByCustom1_closure(t0) { this.action = t0; }, _filterUsersByCustom1_closure0: function _filterUsersByCustom1_closure0(t0) { this.action = t0; }, _filterUsersByCustom2_closure: function _filterUsersByCustom2_closure(t0) { this.action = t0; }, _filterUsersByCustom2_closure0: function _filterUsersByCustom2_closure0(t0) { this.action = t0; }, _filterUsersByCustom3_closure: function _filterUsersByCustom3_closure(t0) { this.action = t0; }, _filterUsersByCustom3_closure0: function _filterUsersByCustom3_closure0(t0) { this.action = t0; }, _filterUsersByCustom4_closure: function _filterUsersByCustom4_closure(t0) { this.action = t0; }, _filterUsersByCustom4_closure0: function _filterUsersByCustom4_closure0(t0) { this.action = t0; }, _filterUsersByState_closure: function _filterUsersByState_closure(t0) { this.action = t0; }, _filterUsersByState_closure0: function _filterUsersByState_closure0(t0) { this.action = t0; }, _filterUsers_closure: function _filterUsers_closure(t0, t1) { this.action = t0; this.userListState = t1; }, _sortUsers_closure: function _sortUsers_closure(t0) { this.action = t0; }, _startListMultiselect_closure9: function _startListMultiselect_closure9() { }, _addToListMultiselect_closure9: function _addToListMultiselect_closure9(t0) { this.action = t0; }, _removeFromListMultiselect_closure9: function _removeFromListMultiselect_closure9(t0) { this.action = t0; }, _clearListMultiselect_closure9: function _clearListMultiselect_closure9() { }, _archiveUserSuccess_closure: function _archiveUserSuccess_closure(t0) { this.action = t0; }, _deleteUserSuccess_closure: function _deleteUserSuccess_closure(t0) { this.action = t0; }, _restoreUserSuccess_closure: function _restoreUserSuccess_closure(t0) { this.action = t0; }, _removeUserSuccess_closure: function _removeUserSuccess_closure(t0) { this.action = t0; }, _addUser_closure: function _addUser_closure(t0) { this.action = t0; }, _updateUser_closure: function _updateUser_closure(t0) { this.action = t0; }, _updateAuthUser_closure: function _updateAuthUser_closure(t0) { this.action = t0; }, _connectOAuthUser_closure: function _connectOAuthUser_closure(t0) { this.action = t0; }, _connectGmailUser_closure: function _connectGmailUser_closure(t0) { this.action = t0; }, _setLoadedUser_closure: function _setLoadedUser_closure(t0) { this.action = t0; }, _setLoadedUsers_closure: function _setLoadedUsers_closure(t0) { this.action = t0; }, _setLoadedUsers__closure: function _setLoadedUsers__closure() { }, _setLoadedUsers__closure0: function _setLoadedUsers__closure0() { }, _setLoadedUsers_closure0: function _setLoadedUsers_closure0(t0) { this.state = t0; }, _setLoadedCompany_closure5: function _setLoadedCompany_closure5(t0) { this.action = t0; }, _setLoadedCompany__closure5: function _setLoadedCompany__closure5() { }, _setLoadedCompany__closure6: function _setLoadedCompany__closure6() { }, _setLoadedCompany_closure6: function _setLoadedCompany_closure6(t0) { this.state = t0; }, filteredWebhooksSelector: function(selectionState, webhookMap, webhookList, webhookListState) { var t1 = J.where$1$ax(webhookList._list, new E.filteredWebhooksSelector_closure(webhookMap, selectionState, webhookListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new E.filteredWebhooksSelector_closure0(webhookMap, webhookListState)); return list; }, memoizedFilteredWebhookList_closure: function memoizedFilteredWebhookList_closure() { }, filteredWebhooksSelector_closure: function filteredWebhooksSelector_closure(t0, t1, t2) { this.webhookMap = t0; this.selectionState = t1; this.webhookListState = t2; }, filteredWebhooksSelector_closure0: function filteredWebhooksSelector_closure0(t0, t1) { this.webhookMap = t0; this.webhookListState = t1; }, MessageDialog$: function(message, dismissLabel, onDiscard, secondaryActions) { return new E.MessageDialog(message, dismissLabel, secondaryActions, onDiscard, null); }, MessageDialog: function MessageDialog(t0, t1, t2, t3, t4) { var _ = this; _.message = t0; _.dismissLabel = t1; _.secondaryActions = t2; _.onDiscard = t3; _.key = t4; }, MessageDialog_build_closure: function MessageDialog_build_closure() { }, MessageDialog_build_closure0: function MessageDialog_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, MessageDialog_build_closure1: function MessageDialog_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, HealthCheckDialog: function HealthCheckDialog(t0) { this.key = t0; }, _HealthCheckDialogState: function _HealthCheckDialogState(t0) { var _ = this; _._widget = _._response = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _HealthCheckDialogState_runCheck_closure: function _HealthCheckDialogState_runCheck_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_runCheck_closure0: function _HealthCheckDialogState_runCheck_closure0(t0) { this.$this = t0; }, _HealthCheckDialogState_runCheck__closure: function _HealthCheckDialogState_runCheck__closure(t0, t1) { this.$this = t0; this.response = t1; }, _HealthCheckDialogState_runCheck_closure1: function _HealthCheckDialogState_runCheck_closure1(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure: function _HealthCheckDialogState_clearCache_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure0: function _HealthCheckDialogState_clearCache_closure0(t0, t1) { this.$this = t0; this.store = t1; }, _HealthCheckDialogState_clearCache__closure: function _HealthCheckDialogState_clearCache__closure(t0) { this.$this = t0; }, _HealthCheckDialogState_clearCache_closure1: function _HealthCheckDialogState_clearCache_closure1(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure: function _HealthCheckDialogState_build_closure(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure0: function _HealthCheckDialogState_build_closure0(t0) { this.$this = t0; }, _HealthCheckDialogState_build_closure1: function _HealthCheckDialogState_build_closure1(t0) { this.context = t0; }, _HealthListTile: function _HealthListTile(t0, t1, t2, t3, t4, t5) { var _ = this; _.title = t0; _.isValid = t1; _.isWarning = t2; _.subtitle = t3; _.url = t4; _.key = t5; }, _HealthListTile_build_closure: function _HealthListTile_build_closure(t0) { this.$this = t0; }, multiselectDialog: function(context, defaultSelected, onSelected, options, selected) { E.showDialog(false, new E.multiselectDialog_closure(options, selected, defaultSelected, onSelected), context, null, true, type$.legacy_AlertDialog); }, MultiSelectList$: function(addTitle, allowDuplicates, defaultSelected, isDialog, liveChanges, onSelected, options, prefix, selected) { return new E.MultiSelectList(options, selected, defaultSelected, addTitle, onSelected, liveChanges, prefix, allowDuplicates, isDialog, null); }, multiselectDialog_closure: function multiselectDialog_closure(t0, t1, t2, t3) { var _ = this; _.options = t0; _.selected = t1; _.defaultSelected = t2; _.onSelected = t3; }, multiselectDialog__closure: function multiselectDialog__closure(t0) { this.onSelected = t0; }, MultiSelectList: function MultiSelectList(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.options = t0; _.selected = t1; _.defaultSelected = t2; _.addTitle = t3; _.onSelected = t4; _.liveChanges = t5; _.prefix = t6; _.allowDuplicates = t7; _.isDialog = t8; _.key = t9; }, MultiSelectListState: function MultiSelectListState(t0) { var _ = this; _._widget = _._multiselect_dialog$_controller = _.selected = null; _._debugLifecycleState = t0; _._framework$_element = null; }, MultiSelectListState_build_closure: function MultiSelectListState_build_closure(t0) { this.$this = t0; }, MultiSelectListState_build_closure0: function MultiSelectListState_build_closure0(t0, t1, t2) { this.$this = t0; this.state = t1; this.options = t2; }, MultiSelectListState_build_closure1: function MultiSelectListState_build_closure1(t0) { this.$this = t0; }, MultiSelectListState_build_closure2: function MultiSelectListState_build_closure2(t0) { this.options = t0; }, MultiSelectListState_build_closure3: function MultiSelectListState_build_closure3(t0) { this.$this = t0; }, MultiSelectListState_build__closure3: function MultiSelectListState_build__closure3(t0, t1) { this.$this = t0; this.value = t1; }, MultiSelectListState_build_closure4: function MultiSelectListState_build_closure4(t0, t1, t2) { this.$this = t0; this.state = t1; this.context = t2; }, MultiSelectListState_build__closure2: function MultiSelectListState_build__closure2(t0, t1) { this.$this = t0; this.option = t1; }, MultiSelectListState_build___closure: function MultiSelectListState_build___closure(t0, t1) { this.$this = t0; this.option = t1; }, MultiSelectListState_build_closure5: function MultiSelectListState_build_closure5(t0) { this.$this = t0; }, MultiSelectListState_build__closure1: function MultiSelectListState_build__closure1(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.oldIndex = t2; }, MultiSelectListState_build_closure6: function MultiSelectListState_build_closure6(t0) { this.$this = t0; }, MultiSelectListState_build__closure0: function MultiSelectListState_build__closure0(t0) { this.$this = t0; }, MultiSelectListState_build_closure7: function MultiSelectListState_build_closure7(t0) { this.$this = t0; }, MultiSelectListState_build__closure: function MultiSelectListState_build__closure(t0) { this.$this = t0; }, MultiSelectListState_build_closure8: function MultiSelectListState_build_closure8(t0) { this.context = t0; }, MultiSelectListState_build_closure9: function MultiSelectListState_build_closure9(t0, t1) { this.$this = t0; this.context = t1; }, EntityTopFilter: function EntityTopFilter(t0, t1) { this.show = t0; this.key = t1; }, EntityTopFilter_build_closure: function EntityTopFilter_build_closure(t0) { this.state = t0; }, EntityTopFilter_build_closure1: function EntityTopFilter_build_closure1(t0, t1) { this.store = t0; this.prefState = t1; }, EntityTopFilter_build_closure0: function EntityTopFilter_build_closure0(t0, t1) { this.context = t0; this.filterEntity = t1; }, EntityTopFilter_build_closure2: function EntityTopFilter_build_closure2(t0, t1, t2) { this.relatedTypes = t0; this.i = t1; this.filterEntity = t2; }, EntityTopFilter_build_closure3: function EntityTopFilter_build_closure3(t0, t1, t2) { this.filterEntity = t0; this.relatedTypes = t1; this.i = t2; }, EntityTopFilter_build_closure4: function EntityTopFilter_build_closure4(t0, t1, t2, t3, t4, t5) { var _ = this; _.localization = t0; _.state = t1; _.routeEntityType = t2; _.filterEntityType = t3; _.filterEntity = t4; _.relatedTypes = t5; }, EntityTopFilter_build__closure0: function EntityTopFilter_build__closure0(t0, t1) { this.filterEntityType = t0; this.filterEntity = t1; }, EntityTopFilter_build__closure: function EntityTopFilter_build__closure(t0, t1, t2, t3, t4) { var _ = this; _.filterEntityType = t0; _.relatedTypes = t1; _.remaining = t2; _.state = t3; _.localization = t4; }, EntityTopFilter_build___closure: function EntityTopFilter_build___closure(t0) { this.state = t0; }, EntityTopFilter_build___closure0: function EntityTopFilter_build___closure0(t0, t1) { this.filterEntityType = t0; this.localization = t1; }, EntityTopFilter_build_closure5: function EntityTopFilter_build_closure5(t0, t1) { this.store = t0; this.uiState = t1; }, InvoiceEmailView: function InvoiceEmailView(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceEmailViewState: function _InvoiceEmailViewState(t0, t1, t2, t3, t4, t5) { var _ = this; _.selectedTemplate = null; _._invoice_email_view$_subjectPreview = _._invoice_email_view$_bodyPreview = ""; _._invoice_email_view$_isLoading = false; _._invoice_email_view$_subjectController = t0; _._invoice_email_view$_bodyController = t1; _._invoice_email_view$_debouncer = t2; _._invoice_email_view$_controller = null; _._invoice_email_view$_controllers = t3; _.SingleTickerProviderStateMixin__ticker = t4; _._widget = null; _._debugLifecycleState = t5; _._framework$_element = null; }, _InvoiceEmailViewState_dispose_closure: function _InvoiceEmailViewState_dispose_closure() { }, _InvoiceEmailViewState__onChanged_closure: function _InvoiceEmailViewState__onChanged_closure(t0) { this.$this = t0; }, _InvoiceEmailViewState__loadTemplate_closure: function _InvoiceEmailViewState__loadTemplate_closure(t0) { this.$this = t0; }, _InvoiceEmailViewState__loadTemplate_closure0: function _InvoiceEmailViewState__loadTemplate_closure0(t0, t1, t2) { this.$this = t0; this.origSubject = t1; this.origBody = t2; }, _InvoiceEmailViewState__loadTemplate__closure: function _InvoiceEmailViewState__loadTemplate__closure(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.subject = t1; _.body = t2; _.origSubject = t3; _.origBody = t4; _.rawSubject = t5; _.rawBody = t6; }, _InvoiceEmailViewState__buildTemplateDropdown_closure: function _InvoiceEmailViewState__buildTemplateDropdown_closure(t0) { this.client = t0; }, _InvoiceEmailViewState__buildTemplateDropdown__closure0: function _InvoiceEmailViewState__buildTemplateDropdown__closure0(t0) { this.invitation = t0; }, _InvoiceEmailViewState__buildTemplateDropdown__closure1: function _InvoiceEmailViewState__buildTemplateDropdown__closure1() { }, _InvoiceEmailViewState__buildTemplateDropdown_closure0: function _InvoiceEmailViewState__buildTemplateDropdown_closure0() { }, _InvoiceEmailViewState__buildTemplateDropdown_closure1: function _InvoiceEmailViewState__buildTemplateDropdown_closure1() { }, _InvoiceEmailViewState__buildTemplateDropdown_closure2: function _InvoiceEmailViewState__buildTemplateDropdown_closure2(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildTemplateDropdown__closure: function _InvoiceEmailViewState__buildTemplateDropdown__closure(t0, t1) { this.$this = t0; this.template = t1; }, _InvoiceEmailViewState__buildEdit_closure: function _InvoiceEmailViewState__buildEdit_closure(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildEdit_closure0: function _InvoiceEmailViewState__buildEdit_closure0(t0) { this.$this = t0; }, _InvoiceEmailViewState__buildHistory_closure: function _InvoiceEmailViewState__buildHistory_closure(t0) { this.activities = t0; }, _InvoiceEmailViewState_build_closure: function _InvoiceEmailViewState_build_closure(t0) { this.invoice = t0; }, _InvoiceEmailViewState_build_closure0: function _InvoiceEmailViewState_build_closure0(t0, t1) { this.$this = t0; this.viewModel = t1; }, _InvoiceEmailViewState_build_closure1: function _InvoiceEmailViewState_build_closure1(t0) { this.invoice = t0; }, _InvoiceEmailViewState_build_closure2: function _InvoiceEmailViewState_build_closure2(t0, t1) { this.$this = t0; this.viewModel = t1; }, __InvoiceEmailViewState_State_SingleTickerProviderStateMixin: function __InvoiceEmailViewState_State_SingleTickerProviderStateMixin() { }, LiveText: function LiveText(t0, t1, t2, t3) { var _ = this; _.duration = t0; _.value = t1; _.style = t2; _.key = t3; }, _LiveTextState: function _LiveTextState(t0) { var _ = this; _._widget = _._live_text$_timer = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _LiveTextState_initState_closure: function _LiveTextState_initState_closure(t0) { this.$this = t0; }, _LiveTextState_initState__closure: function _LiveTextState_initState__closure() { }, ResponsivePadding: function ResponsivePadding(t0, t1) { this.child = t0; this.key = t1; }, DashboardDateRangePicker: function DashboardDateRangePicker(t0, t1, t2) { this.state = t0; this.onSettingsChanged = t1; this.key = t2; }, _DashboardDateRangePickerState: function _DashboardDateRangePickerState(t0) { var _ = this; _._widget = _._dashboard_date_range_picker$_settings = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _DashboardDateRangePickerState_build_closure: function _DashboardDateRangePickerState_build_closure(t0) { this.localization = t0; }, _DashboardDateRangePickerState_build_closure0: function _DashboardDateRangePickerState_build_closure0(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure2: function _DashboardDateRangePickerState_build__closure2(t0, t1) { this.$this = t0; this.dateRange = t1; }, _DashboardDateRangePickerState_build_closure1: function _DashboardDateRangePickerState_build_closure1(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure1: function _DashboardDateRangePickerState_build__closure1(t0, t1) { this.$this = t0; this.value = t1; }, _DashboardDateRangePickerState_build_closure2: function _DashboardDateRangePickerState_build_closure2(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build_closure3: function _DashboardDateRangePickerState_build_closure3(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build_closure4: function _DashboardDateRangePickerState_build_closure4(t0) { this.localization = t0; }, _DashboardDateRangePickerState_build_closure5: function _DashboardDateRangePickerState_build_closure5(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build__closure0: function _DashboardDateRangePickerState_build__closure0(t0, t1) { this.$this = t0; this.dateRange = t1; }, _DashboardDateRangePickerState_build_closure6: function _DashboardDateRangePickerState_build_closure6(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build_closure7: function _DashboardDateRangePickerState_build_closure7(t0) { this.$this = t0; }, _DashboardDateRangePickerState_build_closure8: function _DashboardDateRangePickerState_build_closure8(t0, t1) { this.$this = t0; this.context = t1; }, _DashboardDateRangePickerState_build__closure: function _DashboardDateRangePickerState_build__closure() { }, DocumentEditVM_DocumentEditVM$fromStore: function(store) { var t3, t4, t5, $document = store.get$_store$_state().uiState.documentUIState.editing, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).documentState.map; t5 = $document.id; J.$index$asx(t4._map$_map, t5); return new E.DocumentEditVM($document, t3.$index(t1, t2).userCompany.company, new E.DocumentEditVM_DocumentEditVM$fromStore_closure(store), new E.DocumentEditVM_DocumentEditVM$fromStore_closure0(), state); }, DocumentEditScreen: function DocumentEditScreen(t0) { this.key = t0; }, DocumentEditScreen_build_closure0: function DocumentEditScreen_build_closure0() { }, DocumentEditScreen_build_closure: function DocumentEditScreen_build_closure() { }, DocumentEditVM: function DocumentEditVM(t0, t1, t2, t3, t4) { var _ = this; _.document = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.state = t4; }, DocumentEditVM_DocumentEditVM$fromStore_closure: function DocumentEditVM_DocumentEditVM$fromStore_closure(t0) { this.store = t0; }, DocumentEditVM_DocumentEditVM$fromStore_closure0: function DocumentEditVM_DocumentEditVM$fromStore_closure0() { }, ExpenseEditNotes: function ExpenseEditNotes(t0, t1) { this.viewModel = t0; this.key = t1; }, ExpenseEditNotesState: function ExpenseEditNotesState(t0, t1, t2, t3) { var _ = this; _._publicNotesController = t0; _._expense_edit_notes$_privateNotesController = t1; _._expense_edit_notes$_controllers = null; _._expense_edit_notes$_debouncer = t2; _._widget = null; _._debugLifecycleState = t3; _._framework$_element = null; }, ExpenseEditNotesState_didChangeDependencies_closure: function ExpenseEditNotesState_didChangeDependencies_closure(t0) { this.$this = t0; }, ExpenseEditNotesState_didChangeDependencies_closure0: function ExpenseEditNotesState_didChangeDependencies_closure0(t0) { this.$this = t0; }, ExpenseEditNotesState_dispose_closure: function ExpenseEditNotesState_dispose_closure(t0) { this.$this = t0; }, ExpenseEditNotesState__onChanged_closure: function ExpenseEditNotesState__onChanged_closure(t0) { this.$this = t0; }, ExpenseEditNotesState__onChanged_closure0: function ExpenseEditNotesState__onChanged_closure0(t0, t1) { this.viewModel = t0; this.expense = t1; }, GroupView: function GroupView(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, _GroupViewState: function _GroupViewState(t0, t1) { var _ = this; _._group_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GroupViewState_build_closure2: function _GroupViewState_build_closure2(t0) { this.viewModel = t0; }, _GroupViewState_build_closure: function _GroupViewState_build_closure(t0, t1) { this.context = t0; this.group = t1; }, _GroupViewState_build_closure0: function _GroupViewState_build_closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _GroupViewState_build_closure1: function _GroupViewState_build_closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, SettingsViewer: function SettingsViewer(t0, t1, t2) { this.settings = t0; this.state = t1; this.key = t2; }, __GroupViewState_State_SingleTickerProviderStateMixin: function __GroupViewState_State_SingleTickerProviderStateMixin() { }, InvoiceEditItemsDesktop: function InvoiceEditItemsDesktop(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.entityViewModel = t1; _.isTasks = t2; _.key = t3; }, _InvoiceEditItemsDesktopState: function _InvoiceEditItemsDesktopState(t0, t1) { var _ = this; _._invoice_edit_items_desktop$_debouncer = t0; _._invoice_edit_items_desktop$_updatedAt = null; _._autocompleteFocusIndex = -1; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InvoiceEditItemsDesktopState__updateTable_closure: function _InvoiceEditItemsDesktopState__updateTable_closure(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState__onChanged_closure: function _InvoiceEditItemsDesktopState__onChanged_closure(t0, t1, t2) { this.viewModel = t0; this.lineItem = t1; this.index = t2; }, _InvoiceEditItemsDesktopState__onFocusChange_closure: function _InvoiceEditItemsDesktopState__onFocusChange_closure() { }, _InvoiceEditItemsDesktopState_build_closure: function _InvoiceEditItemsDesktopState_build_closure(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure0: function _InvoiceEditItemsDesktopState_build_closure0() { }, _InvoiceEditItemsDesktopState_build_closure1: function _InvoiceEditItemsDesktopState_build_closure1() { }, _InvoiceEditItemsDesktopState_build_closure2: function _InvoiceEditItemsDesktopState_build_closure2() { }, _InvoiceEditItemsDesktopState_build_closure3: function _InvoiceEditItemsDesktopState_build_closure3() { }, _InvoiceEditItemsDesktopState_build_closure9: function _InvoiceEditItemsDesktopState_build_closure9(t0, t1) { this.$this = t0; this.index = t1; }, _InvoiceEditItemsDesktopState_build_closure5: function _InvoiceEditItemsDesktopState_build_closure5() { }, _InvoiceEditItemsDesktopState_build_closure7: function _InvoiceEditItemsDesktopState_build_closure7(t0, t1) { this.productIds = t0; this.productState = t1; }, _InvoiceEditItemsDesktopState_build__closure12: function _InvoiceEditItemsDesktopState_build__closure12(t0, t1) { this.productState = t0; this.pattern = t1; }, _InvoiceEditItemsDesktopState_build_closure4: function _InvoiceEditItemsDesktopState_build_closure4(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.productState = t1; _.lineItems = t2; _.index = t3; _.state = t4; _.invoice = t5; _.company = t6; }, _InvoiceEditItemsDesktopState_build__closure13: function _InvoiceEditItemsDesktopState_build__closure13(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.$this = t0; _.lineItems = t1; _.index = t2; _.productState = t3; _.productId = t4; _.state = t5; _.invoice = t6; _.company = t7; }, _InvoiceEditItemsDesktopState_build___closure: function _InvoiceEditItemsDesktopState_build___closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.product = t1; _.item = t2; _.company = t3; }, _InvoiceEditItemsDesktopState_build_closure6: function _InvoiceEditItemsDesktopState_build_closure6(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.$this = t0; _.lineItems = t1; _.index = t2; _.productState = t3; _.state = t4; _.invoice = t5; _.company = t6; }, _InvoiceEditItemsDesktopState_build_closure8: function _InvoiceEditItemsDesktopState_build_closure8(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure11: function _InvoiceEditItemsDesktopState_build__closure11(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure11: function _InvoiceEditItemsDesktopState_build_closure11(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure10: function _InvoiceEditItemsDesktopState_build_closure10(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure10: function _InvoiceEditItemsDesktopState_build__closure10(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure13: function _InvoiceEditItemsDesktopState_build_closure13(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure12: function _InvoiceEditItemsDesktopState_build_closure12(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure9: function _InvoiceEditItemsDesktopState_build__closure9(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure15: function _InvoiceEditItemsDesktopState_build_closure15(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure14: function _InvoiceEditItemsDesktopState_build_closure14(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure8: function _InvoiceEditItemsDesktopState_build__closure8(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure17: function _InvoiceEditItemsDesktopState_build_closure17(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure16: function _InvoiceEditItemsDesktopState_build_closure16(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure7: function _InvoiceEditItemsDesktopState_build__closure7(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure19: function _InvoiceEditItemsDesktopState_build_closure19(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure18: function _InvoiceEditItemsDesktopState_build_closure18(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure6: function _InvoiceEditItemsDesktopState_build__closure6(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure21: function _InvoiceEditItemsDesktopState_build_closure21(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure20: function _InvoiceEditItemsDesktopState_build_closure20(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure5: function _InvoiceEditItemsDesktopState_build__closure5(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build_closure23: function _InvoiceEditItemsDesktopState_build_closure23(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure22: function _InvoiceEditItemsDesktopState_build_closure22(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure4: function _InvoiceEditItemsDesktopState_build__closure4(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build_closure25: function _InvoiceEditItemsDesktopState_build_closure25(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure24: function _InvoiceEditItemsDesktopState_build_closure24(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure3: function _InvoiceEditItemsDesktopState_build__closure3(t0) { this.taxRate = t0; }, _InvoiceEditItemsDesktopState_build_closure27: function _InvoiceEditItemsDesktopState_build_closure27(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure26: function _InvoiceEditItemsDesktopState_build_closure26(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure2: function _InvoiceEditItemsDesktopState_build__closure2(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure29: function _InvoiceEditItemsDesktopState_build_closure29(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure28: function _InvoiceEditItemsDesktopState_build_closure28(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure1: function _InvoiceEditItemsDesktopState_build__closure1(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure31: function _InvoiceEditItemsDesktopState_build_closure31(t0) { this.$this = t0; }, _InvoiceEditItemsDesktopState_build_closure30: function _InvoiceEditItemsDesktopState_build_closure30(t0, t1, t2) { this.$this = t0; this.lineItems = t1; this.index = t2; }, _InvoiceEditItemsDesktopState_build__closure0: function _InvoiceEditItemsDesktopState_build__closure0(t0) { this.value = t0; }, _InvoiceEditItemsDesktopState_build_closure32: function _InvoiceEditItemsDesktopState_build_closure32(t0, t1, t2, t3) { var _ = this; _.includedLineItems = t0; _.lineItems = t1; _.index = t2; _.localization = t3; }, _InvoiceEditItemsDesktopState_build__closure: function _InvoiceEditItemsDesktopState_build__closure(t0) { this.options = t0; }, _InvoiceEditItemsDesktopState_build_closure33: function _InvoiceEditItemsDesktopState_build_closure33(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.localization = t1; _.viewModel = t2; _.index = t3; _.lineItems = t4; }, TableHeader: function TableHeader(t0, t1, t2) { this.label = t0; this.isFirst = t1; this.key = t2; }, InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new E.InvoiceEditNotesVM(state, J.$index$asx(t2._list, t1).userCompany.company, invoice, new E.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure(store)); }, InvoiceEditNotesScreen: function InvoiceEditNotesScreen(t0) { this.key = t0; }, InvoiceEditNotesScreen_build_closure0: function InvoiceEditNotesScreen_build_closure0() { }, InvoiceEditNotesScreen_build_closure: function InvoiceEditNotesScreen_build_closure() { }, EntityEditNotesVM: function EntityEditNotesVM() { }, InvoiceEditNotesVM: function InvoiceEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure: function InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure(t0) { this.store = t0; }, _loadPDF: function(context, invoice, isDeliveryNote, activityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, $async$next = [], errorMessage, credential, url, t1, t2, exception, response; var $async$_loadPDF = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start response = null; $async$goto = activityId != null || isDeliveryNote ? 3 : 5; break; case 3: // then credential = J.get$credentials$z(O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state()); url = isDeliveryNote ? "/invoices/" + invoice.id + "/delivery_note" : "/activities/download_entity/" + H.S(activityId); $async$goto = 6; return P._asyncAwait(new F.WebClient().$get$3$rawResponse(0, credential.url + url, credential.token, true), $async$_loadPDF); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(new F.WebClient().$get$3$rawResponse(0, J.get$first$ax(invoice.invitations._list).link + "/download?t=" + Date.now(), "", true), $async$_loadPDF); case 7: // returning from await. response = $async$result; case 4: // join if (response.statusCode >= 400) { errorMessage = H.S(response.statusCode) + ": " + H.S(response.reasonPhrase) + "\n\n"; try { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, J.$index$asx(C.C_JsonCodec.decode$2$reviver(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes), null), "message")); } catch (exception) { H.unwrapException(exception); t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes)); } O.showErrorDialog(false, context, errorMessage); throw H.wrapException(errorMessage); } $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_loadPDF, $async$completer); }, InvoicePdfView: function InvoicePdfView(t0, t1, t2) { this.viewModel = t0; this.showAppBar = t1; this.key = t2; }, _InvoicePdfViewState: function _InvoicePdfViewState(t0) { var _ = this; _._invoice_pdf$_isLoading = true; _._isDeliveryNote = false; _._invoice_pdf$_pdfController = _._invoice_pdf$_response = _._invoice_pdf$_pdfString = _._invoice_pdf$_activityId = null; _._invoice_pdf$_pageCount = _._invoice_pdf$_pageNumber = 1; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _InvoicePdfViewState_loadPdf_closure: function _InvoicePdfViewState_loadPdf_closure(t0) { this.$this = t0; }, _InvoicePdfViewState_loadPdf_closure0: function _InvoicePdfViewState_loadPdf_closure0(t0) { this.$this = t0; }, _InvoicePdfViewState_loadPdf__closure: function _InvoicePdfViewState_loadPdf__closure(t0, t1) { this.$this = t0; this.response = t1; }, _InvoicePdfViewState_loadPdf_closure1: function _InvoicePdfViewState_loadPdf_closure1(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure: function _InvoicePdfViewState_build_closure(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure0: function _InvoicePdfViewState_build_closure0(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure1: function _InvoicePdfViewState_build_closure1(t0) { this.$this = t0; }, _InvoicePdfViewState_build__closure: function _InvoicePdfViewState_build__closure(t0) { this.$this = t0; }, _InvoicePdfViewState_build_closure2: function _InvoicePdfViewState_build_closure2(t0) { this.invoice = t0; }, _InvoicePdfViewState_build_closure3: function _InvoicePdfViewState_build_closure3(t0, t1, t2) { this.$this = t0; this.localization = t1; this.invoice = t2; }, _InvoicePdfViewState_build_closure4: function _InvoicePdfViewState_build_closure4(t0) { this.invoice = t0; }, InvoiceScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, t9, t10, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).invoiceState.toString; t5 = $.$get$memoizedFilteredInvoiceList(); t6 = state.getUISelection$1(C.EntityType_invoice); t7 = t4.$index(t1, t3).invoiceState.map; t8 = t4.$index(t1, t3).invoiceState.list; t9 = t4.$index(t1, t3).clientState.map; t10 = t4.$index(t1, t3).paymentState.map; t2 = t2.invoiceUIState.listUIState; t10 = t5.call$8(t6, t7, t8, t9, t10, t2, t4.$index(t1, t3).userState.map, t4.$index(t1, t3).userCompany.company.settings.recurringNumberPrefix); t4.$index(t1, t3).toString; t2.toString; return new E.InvoiceScreenVM(t10); }, InvoiceScreenBuilder: function InvoiceScreenBuilder(t0) { this.key = t0; }, InvoiceScreenBuilder_build_closure: function InvoiceScreenBuilder_build_closure() { }, InvoiceScreenVM: function InvoiceScreenVM(t0) { this.invoiceList = t0; }, InvoiceView: function InvoiceView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.isFilter = t1; _.tabIndex = t2; _.key = t3; }, _InvoiceViewState: function _InvoiceViewState(t0, t1) { var _ = this; _._invoice_view$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InvoiceViewState_build_closure: function _InvoiceViewState_build_closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.viewModel = t2; _.invoice = t3; }, _InvoiceViewState_build__closure5: function _InvoiceViewState_build__closure5(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure: function _InvoiceViewState_build__closure(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure0: function _InvoiceViewState_build__closure0(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure1: function _InvoiceViewState_build__closure1(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure2: function _InvoiceViewState_build__closure2(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure3: function _InvoiceViewState_build__closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, _InvoiceViewState_build__closure4: function _InvoiceViewState_build__closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, __InvoiceViewState_State_SingleTickerProviderStateMixin: function __InvoiceViewState_State_SingleTickerProviderStateMixin() { }, ProductScreenVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).productState.toString; t5 = $.$get$memoizedFilteredProductList(); t6 = state.getUISelection$1(C.EntityType_product); t7 = t4.$index(t1, t3).productState.map; t8 = t4.$index(t1, t3).productState.list; t2 = t2.productUIState.listUIState; t8 = t5.call$5(t6, t7, t8, t2, t4.$index(t1, t3).userState.map); t4.$index(t1, t3).toString; t2.toString; return new E.ProductScreenVM(t8); }, ProductScreenBuilder: function ProductScreenBuilder(t0) { this.key = t0; }, ProductScreenBuilder_build_closure: function ProductScreenBuilder_build_closure() { }, ProductScreenVM: function ProductScreenVM(t0) { this.productList = t0; }, ProjectListItem: function ProjectListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.project = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ProjectListItem_build_closure: function ProjectListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.client = t4; _.textStyle = t5; _.subtitle = t6; _.filterMatch = t7; _.textColor = t8; }, ProjectListItem_build__closure2: function ProjectListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ProjectListItem_build__closure1: function ProjectListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, ProjectListItem_build__closure: function ProjectListItem_build__closure(t0) { this.$this = t0; }, ProjectListItem_build__closure0: function ProjectListItem_build__closure0(t0) { this.$this = t0; }, ProjectListItem_build__closure5: function ProjectListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, ProjectListItem_build__closure4: function ProjectListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, ProjectListItem_build__closure3: function ProjectListItem_build__closure3(t0) { this.$this = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore: function(store) { var t3, company, state = store.get$_store$_state(), t1 = state.uiState, quote = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); company = t3.$index(t2, t1).userCompany.company; t3.$index(t2, t1).clientState.toString; t3.$index(t2, t1).clientState.toString; return new E.QuoteEditDetailsVM(state, company, quote, new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure(store), new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0(state, company, store), new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1(store)); }, QuoteEditDetailsScreen: function QuoteEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, QuoteEditDetailsScreen_build_closure0: function QuoteEditDetailsScreen_build_closure0() { }, QuoteEditDetailsScreen_build_closure: function QuoteEditDetailsScreen_build_closure(t0) { this.$this = t0; }, QuoteEditDetailsVM: function QuoteEditDetailsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onAddClientPressed = t5; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.company = t1; this.store = t2; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure1: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure1(t0) { this.exchangeRate = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0: function QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, taskReport: function(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState) { var columns, t4, t5, t6, t7, task, t8, t9, t10, client, t11, invoice, t12, t13, project, group, row, t14, t15, t16, value, value0, value1, value2, value3, value4, value5, value6, value7, value8, value9, value10, value11, value12, t17, skip, t18, value13, timestamp, t19, t20, t21, selectedColumns, _null = null, data = H.setRuntimeTypeInfo([], type$.JSArray_legacy_List_legacy_ReportElement), reportSettings = userCompany.settings.reportSettings, taskReportSettings = reportSettings != null && J.containsKey$1$x(reportSettings._map$_map, "task") ? J.$index$asx(reportSettings._map$_map, "task") : A.ReportSettingsEntity_ReportSettingsEntity(_null, _null), defaultColumns = H.setRuntimeTypeInfo([C.TaskReportFields_2, C.TaskReportFields_3, C.TaskReportFields_4, C.TaskReportFields_5, C.TaskReportFields_11, C.TaskReportFields_10, C.TaskReportFields_6, C.TaskReportFields_21], type$.JSArray_legacy_TaskReportFields), t1 = taskReportSettings.columns._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_TaskReportFields; if (t2.get$isNotEmpty(t1)) { t1 = t2.map$1$1(t1, new E.taskReport_closure(), t3).where$1(0, new E.taskReport_closure0()); columns = D.BuiltList_BuiltList$from(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t3); } else columns = D.BuiltList_BuiltList$from(defaultColumns, t3); for (t1 = J.get$iterator$ax(taskMap.get$keys(taskMap)), t2 = columns._list, t3 = J.getInterceptor$ax(t2), t4 = userCompany.company, t5 = type$.JSArray_legacy_ReportElement, t6 = taskMap._map$_map, t7 = J.getInterceptor$asx(t6); t1.moveNext$0();) { task = t7.$index(t6, t1.get$current(t1)); t8 = task.clientId; t9 = clientMap._map$_map; t10 = J.getInterceptor$asx(t9); client = t10.$index(t9, t8); if (client == null) client = T.ClientEntity_ClientEntity(_null, _null, _null); t11 = task.invoiceId; invoice = J.$index$asx(invoiceMap._map$_map, t11); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); t11 = task.projectId; t12 = projectMap._map$_map; t13 = J.getInterceptor$asx(t12); project = t13.$index(t12, t11); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); group = J.$index$asx(groupMap._map$_map, client.groupId); if (group == null) group = Q.GroupEntity_GroupEntity(_null, _null); if (task.isDeleted || client.isDeleted) continue; row = H.setRuntimeTypeInfo([], t5); for (t14 = t3.get$iterator(t2), t15 = task.id, t16 = task.statusId, value = task.customValue4, value0 = task.customValue3, value1 = task.customValue2, value2 = task.customValue1, value3 = client.shippingAddress2, value4 = client.shippingAddress1, value5 = client.address2, value6 = client.address1, value7 = client.balance, value8 = invoice.dueDate, value9 = invoice.date, value10 = invoice.amount, value11 = task.description, value12 = task.rate, t17 = client.settings, skip = false; t14.moveNext$0();) { t18 = t14.get$current(t14); switch (t18) { case C.TaskReportFields_0: value13 = value12; break; case C.TaskReportFields_1: value13 = U.taskRateSelector(client, t4, group, project, task); break; case C.TaskReportFields_2: timestamp = task.get$startTimestamp(); t19 = timestamp == null; if ((t19 ? 0 : timestamp) > 0) { t20 = (t19 ? 0 : timestamp) * 1000; t21 = new P.DateTime(t20, false); t21.DateTime$_withValue$2$isUtc(t20, false); value13 = t21.toIso8601String$0(); } else value13 = ""; break; case C.TaskReportFields_3: timestamp = task.get$endTimestamp(); t19 = timestamp == null; if ((t19 ? 0 : timestamp) > 0) { t20 = (t19 ? 0 : timestamp) * 1000; t21 = new P.DateTime(t20, false); t21.DateTime$_withValue$2$isUtc(t20, false); value13 = t21.toIso8601String$0(); } else value13 = ""; break; case C.TaskReportFields_5: value13 = value11; break; case C.TaskReportFields_6: t19 = invoice.number; value13 = t19; break; case C.TaskReportFields_7: value13 = value10; break; case C.TaskReportFields_8: value13 = value9; break; case C.TaskReportFields_9: value13 = value8; break; case C.TaskReportFields_4: value13 = C.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); break; case C.TaskReportFields_10: t19 = t13.$index(t12, t11); value13 = t19 == null ? _null : t19.name; if (value13 == null) value13 = ""; break; case C.TaskReportFields_11: t19 = t10.$index(t9, t8); value13 = t19 == null ? _null : t19.displayName; if (value13 == null) value13 = ""; break; case C.TaskReportFields_12: value13 = value7; break; case C.TaskReportFields_13: value13 = value6; break; case C.TaskReportFields_14: value13 = value5; break; case C.TaskReportFields_15: value13 = value4; break; case C.TaskReportFields_16: value13 = value3; break; case C.TaskReportFields_17: value13 = value2; break; case C.TaskReportFields_18: value13 = value1; break; case C.TaskReportFields_19: value13 = value0; break; case C.TaskReportFields_20: value13 = value; break; case C.TaskReportFields_21: t19 = J.$index$asx(taskStatusMap._map$_map, t16); value13 = t19 == null ? _null : t19.name; if (value13 == null) value13 = ""; break; default: value13 = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t18), _null, reportsUIState, userCompany, value13)) skip = true; if (t18 === C.TaskReportFields_4) { t18 = t17.currencyId; row.push(new A.ReportDurationValue(value13, t18, task.get$entityType(), t15)); } else { t18 = J.getInterceptor$(value13); if (t18.get$runtimeType(value13) === C.Type_bool_lhE) row.push(new A.ReportBoolValue(value13, task.get$entityType(), t15)); else if (t18.get$runtimeType(value13) === C.Type_double_K1J || t18.get$runtimeType(value13) === C.Type_int_tHn) row.push(new A.ReportNumberValue(value13, _null, t17.currencyId, _null, task.get$entityType(), t15)); else row.push(new A.ReportStringValue(value13, task.get$entityType(), t15)); } } if (!skip) data.push(row); } selectedColumns = t3.map$1$1(t2, new E.taskReport_closure1(), type$.legacy_String).toList$0(0); C.JSArray_methods.sort$1(data, new E.taskReport_closure2(taskReportSettings, selectedColumns)); t1 = type$.MappedListIterable_of_legacy_TaskReportFields_and_legacy_String; t2 = t1._eval$1("ListIterable.E"); return new A.ReportResult(selectedColumns, P.List_List$of(new H.MappedListIterable(C.List_7BT, new E.taskReport_closure3(), t1), true, t2), P.List_List$of(new H.MappedListIterable(defaultColumns, new E.taskReport_closure4(), t1), true, t2), data, true); }, TaskReportFields: function TaskReportFields(t0) { this._task_report$_name = t0; }, memoizedTaskReport_closure: function memoizedTaskReport_closure() { }, taskReport_closure: function taskReport_closure() { }, taskReport_closure0: function taskReport_closure0() { }, taskReport_closure1: function taskReport_closure1() { }, taskReport_closure2: function taskReport_closure2(t0, t1) { this.taskReportSettings = t0; this.selectedColumns = t1; }, taskReport_closure3: function taskReport_closure3() { }, taskReport_closure4: function taskReport_closure4() { }, SubscriptionViewVM_SubscriptionViewVM$fromStore: function(store) { var t4, t5, subscription, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).subscriptionState.map; t2 = t2.subscriptionUIState.selectedId; subscription = J.$index$asx(t5._map$_map, t2); if (subscription == null) subscription = X.SubscriptionEntity_SubscriptionEntity(t2, null); t1 = t4.$index(t1, t3).userCompany.company; subscription.get$isNew(); return new E.SubscriptionViewVM(state, subscription, t1, new E.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure(store)); }, SubscriptionViewScreen: function SubscriptionViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, SubscriptionViewScreen_build_closure0: function SubscriptionViewScreen_build_closure0() { }, SubscriptionViewScreen_build_closure: function SubscriptionViewScreen_build_closure(t0) { this.$this = t0; }, SubscriptionViewVM: function SubscriptionViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.subscription = t1; _.company = t2; _.onBackPressed = t3; }, SubscriptionViewVM_SubscriptionViewVM$fromStore_closure: function SubscriptionViewVM_SubscriptionViewVM$fromStore_closure(t0) { this.store = t0; }, UserListItem: function UserListItem(t0, t1, t2, t3) { var _ = this; _.user = t0; _.onLongPress = t1; _.filter = t2; _.key = t3; }, UserListItem_build_closure1: function UserListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, UserListItem_build_closure0: function UserListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, UserListItem_build_closure: function UserListItem_build_closure(t0) { this.$this = t0; }, VendorListVM_fromStore: function(store) { var t3, t4, t5, t6, t7, state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.vendorUIState; t2.toString; t3 = $.$get$memoizedFilteredVendorList(); t4 = state.getUISelection$1(C.EntityType_vendor); t5 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t5 = t5._list; t6 = J.getInterceptor$asx(t5); t2 = t2.listUIState; t4 = t3.call$6(t4, t6.$index(t5, t1).vendorState.map, t6.$index(t5, t1).vendorState.list, t2, t6.$index(t5, t1).userState.map, state.staticState); t3 = t6.$index(t5, t1).vendorState.map; t2 = t2.filter; t7 = t6.$index(t5, t1).userCompany.settings.getTableColumns$1(C.EntityType_vendor); if (t7 == null) { t6.$index(t5, t1).toString; t1 = H.setRuntimeTypeInfo(["number", "name", "city", "phone", "entity_state", "created_at"], type$.JSArray_legacy_String); } else t1 = t7; return new E.VendorListVM(state, t4, t3, t2, new E.VendorListVM_fromStore_closure(new E.VendorListVM_fromStore__handleRefresh(store)), t1, new E.VendorListVM_fromStore_closure0(store), new E.VendorListVM_fromStore_closure1(store)); }, VendorListBuilder: function VendorListBuilder(t0) { this.key = t0; }, VendorListBuilder_build_closure: function VendorListBuilder_build_closure() { }, VendorListBuilder_build__closure: function VendorListBuilder_build__closure(t0) { this.viewModel = t0; }, VendorListVM: function VendorListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.vendorList = t1; _.vendorMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, VendorListVM_fromStore__handleRefresh: function VendorListVM_fromStore__handleRefresh(t0) { this.store = t0; }, VendorListVM_fromStore_closure: function VendorListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, VendorListVM_fromStore_closure0: function VendorListVM_fromStore_closure0(t0) { this.store = t0; }, VendorListVM_fromStore_closure1: function VendorListVM_fromStore_closure1(t0) { this.store = t0; }, VendorOverview: function VendorOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, PosixStyle: function PosixStyle(t0, t1, t2) { this.separatorPattern = t0; this.needsSeparatorPattern = t1; this.rootPattern = t2; }, MethodChannelPermissionHandler: function MethodChannelPermissionHandler(t0) { this._instanceToken = t0; }, defaultScaleStateCycle: function(actual) { switch (actual) { case C.PhotoViewScaleState_0: return C.PhotoViewScaleState_1; case C.PhotoViewScaleState_1: return C.PhotoViewScaleState_2; case C.PhotoViewScaleState_2: return C.PhotoViewScaleState_0; case C.PhotoViewScaleState_3: case C.PhotoViewScaleState_4: return C.PhotoViewScaleState_0; default: return C.PhotoViewScaleState_0; } }, PhotoView: function PhotoView(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24) { var _ = this; _.imageProvider = t0; _.loadingBuilder = t1; _.errorBuilder = t2; _.backgroundDecoration = t3; _.gaplessPlayback = t4; _.heroAttributes = t5; _.customSize = t6; _.scaleStateChangedCallback = t7; _.enableRotation = t8; _.child = t9; _.childSize = t10; _.maxScale = t11; _.minScale = t12; _.initialScale = t13; _.controller = t14; _.scaleStateController = t15; _.basePosition = t16; _.scaleStateCycle = t17; _.onTapUp = t18; _.onTapDown = t19; _.gestureDetectorBehavior = t20; _.tightMode = t21; _.filterQuality = t22; _.disableGestures = t23; _.key = t24; }, _PhotoViewState: function _PhotoViewState(t0) { var _ = this; _.___PhotoViewState__scaleStateController = _.___PhotoViewState__controlledScaleStateController = _.___PhotoViewState__controller = _.___PhotoViewState__controlledController = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _PhotoViewState_build_closure: function _PhotoViewState_build_closure(t0) { this.$this = t0; }, PhotoViewController$: function() { var _null = null, t1 = Z.IgnorableValueNotifier$(new E.PhotoViewControllerValue(C.Offset_0_0, _null, 0, _null), type$.PhotoViewControllerValue), t2 = new E.PhotoViewController(t1); t2.__PhotoViewController_initial = t1._ignorable_change_notifier$_value; t2.__PhotoViewController_prevValue = t2.get$initial(); t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2.get$_changeListener()), false); t2.__PhotoViewController__outputCtrl = new P._AsyncBroadcastStreamController(_null, _null, type$._AsyncBroadcastStreamController_PhotoViewControllerValue); t2.get$_outputCtrl().get$sink().add$1(0, t2.get$initial()); return t2; }, PhotoViewControllerValue: function PhotoViewControllerValue(t0, t1, t2, t3) { var _ = this; _.position = t0; _.scale = t1; _.rotation = t2; _.rotationFocusPoint = t3; }, PhotoViewController: function PhotoViewController(t0) { var _ = this; _._valueNotifier = t0; _.__PhotoViewController_prevValue = _.__PhotoViewController__outputCtrl = _.__PhotoViewController_initial = $; }, PhotoViewControllerDelegate: function PhotoViewControllerDelegate() { }, LocalPlatform: function LocalPlatform() { }, PlatformInterface_verifyToken: function(instance, token) { if (token != instance._instanceToken) throw H.wrapException(P.AssertionError$(string$.Platfo)); }, PlatformInterface: function PlatformInterface() { }, QrImage: function QrImage(t0, t1, t2, t3, t4) { var _ = this; _._qr_image$_data = t0; _.backgroundColor = t1; _.version = t2; _.size = t3; _.key = t4; }, _QrImageState: function _QrImageState(t0) { var _ = this; _._qr = null; _.___QrImageState_streamListener = _.___QrImageState__validationResult = $; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _QrImageState_build_closure: function _QrImageState_build_closure(t0) { this.$this = t0; }, _QrContentView: function _QrContentView(t0, t1, t2, t3, t4, t5) { var _ = this; _.edgeLength = t0; _.backgroundColor = t1; _.padding = t2; _.child = t3; _.semanticsLabel = t4; _.key = t5; }, SharedPreferencesStorePlatform_instance: function(value) { var exception; try { } catch (exception) { if (type$.NoSuchMethodError._is(H.unwrapException(exception))) throw H.wrapException(P.AssertionError$(string$.Platfo)); else throw exception; } $.SharedPreferencesStorePlatform__instance = value; }, SharedPreferencesStorePlatform: function SharedPreferencesStorePlatform() { }, StringScannerException: function StringScannerException(t0, t1, t2) { this.source = t0; this._span_exception$_message = t1; this._span = t2; }, format: function(date, locale) { var messages, t1, prefix, suffix, seconds, minutes, hours, days, months, years, result, _locale = locale == null ? "en" : locale; if ($.$get$_lookupMessagesMap().$index(0, _locale) == null) P.print("Locale [" + _locale + "] has not been added, using [en] as fallback. To add a locale use [setLocaleMessages]"); messages = $.$get$_lookupMessagesMap().$index(0, _locale); if (messages == null) messages = new X.EnMessages(); t1 = Date.now(); prefix = messages.prefixAgo$0(); suffix = messages.suffixAgo$0(); seconds = (t1 - date._value) / 1000; minutes = seconds / 60; hours = minutes / 60; days = hours / 24; months = days / 30; years = days / 365; if (seconds < 45) result = messages.lessThanOneMinute$1(C.JSNumber_methods.round$0(seconds)); else if (seconds < 90) result = messages.aboutAMinute$1(C.JSNumber_methods.round$0(minutes)); else if (minutes < 45) result = messages.minutes$1(C.JSNumber_methods.round$0(minutes)); else if (minutes < 90) result = messages.aboutAnHour$1(C.JSNumber_methods.round$0(minutes)); else if (hours < 24) result = messages.hours$1(C.JSNumber_methods.round$0(hours)); else if (hours < 48) result = messages.aDay$1(C.JSNumber_methods.round$0(hours)); else if (days < 30) result = messages.days$1(C.JSNumber_methods.round$0(days)); else if (days < 60) result = messages.aboutAMonth$1(C.JSNumber_methods.round$0(days)); else if (days < 365) result = messages.months$1(C.JSNumber_methods.round$0(months)); else result = years < 2 ? messages.aboutAYear$1(C.JSNumber_methods.round$0(months)) : messages.years$1(C.JSNumber_methods.round$0(years)); return new H.WhereIterable(H.setRuntimeTypeInfo([prefix, result, suffix], type$.JSArray_String), new E.format_closure(), type$.WhereIterable_String).join$1(0, messages.wordSeparator$0()); }, format_closure: function format_closure() { }, TypedDataBuffer: function TypedDataBuffer() { }, _IntBuffer0: function _IntBuffer0() { }, Uint8Buffer: function Uint8Buffer(t0, t1) { this._typed_buffer$_buffer = t0; this._typed_buffer$_length = t1; }, Matrix4_tryInvert: function(other) { var r = new E.Matrix4(new Float64Array(16)); if (r.copyInverse$1(other) === 0) return null; return r; }, Matrix4$zero: function() { return new E.Matrix4(new Float64Array(16)); }, Matrix4_Matrix4$identity: function() { var t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); return t1; }, Matrix4_Matrix4$rotationZ: function(radians) { var c, s, t1 = new Float64Array(16); t1[15] = 1; c = Math.cos(radians); s = Math.sin(radians); t1[0] = c; t1[1] = s; t1[2] = 0; t1[4] = -s; t1[5] = c; t1[6] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 1; t1[3] = 0; t1[7] = 0; t1[11] = 0; return new E.Matrix4(t1); }, Matrix4_Matrix4$translationValues: function(x, y, z) { var t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t1.setTranslationRaw$3(x, y, z); return t1; }, Matrix4_Matrix4$diagonal3Values: function(x, y, z) { var t1 = new Float64Array(16); t1[15] = 1; t1[10] = z; t1[5] = y; t1[0] = x; return new E.Matrix4(t1); }, Quaternion_Quaternion$identity: function() { var t1 = new Float64Array(4); t1[3] = 1; return new E.Quaternion(t1); }, Matrix3: function Matrix3(t0) { this._m3storage = t0; }, Matrix4: function Matrix4(t0) { this._m4storage = t0; }, Quaternion: function Quaternion(t0) { this._qStorage = t0; }, Vector3: function Vector3(t0) { this._v3storage = t0; }, Vector4: function Vector4(t0) { this._v4storage = t0; }, PolygonPainter_draw: function(canvas, clipBounds, fill, paint, points, stroke, strokeWidthPx) { var t1, t2, fillColor, point, path, _i, t3; if (points.length === 0) return; canvas.save$0(0); t1 = clipBounds.left; t2 = clipBounds.top; canvas.clipRect$1(0, new P.Rect(t1, t2, t1 + clipBounds.width, t2 + clipBounds.height)); fillColor = fill != null ? P.Color$fromARGB(fill.a, fill.r, fill.g, fill.b) : null; if (points.length === 1) { point = C.JSArray_methods.get$first(points); if (fillColor != null) paint.set$color(0, fillColor); paint.set$style(0, C.PaintingStyle_0); t1 = point.x; t1.toString; t2 = point.y; t2.toString; strokeWidthPx.toString; canvas.drawCircle$3(0, new P.Offset(t1, t2), strokeWidthPx, paint); } else { if (fillColor != null) { paint.set$color(0, fillColor); paint.set$style(0, C.PaintingStyle_0); } path = P.Path_Path(); t1 = C.JSArray_methods.get$first(points).x; t1.toString; t2 = C.JSArray_methods.get$first(points).y; t2.toString; path.moveTo$2(0, t1, t2); for (t1 = points.length, _i = 0; _i < points.length; points.length === t1 || (0, H.throwConcurrentModificationError)(points), ++_i) { point = points[_i]; t2 = point.x; t2.toString; t3 = point.y; t3.toString; path.lineTo$2(0, t2, t3); } canvas.drawPath$2(0, path, paint); } canvas.restore$0(0); }, systemTime: function() { return new P.DateTime(Date.now(), false); }, debugInstrumentAction: function(description, action, $T) { return E.debugInstrumentAction$body(description, action, $T, $T); }, debugInstrumentAction$body: function(description, action, $T, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, t1; var $async$debugInstrumentAction = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = action.call$0(); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$debugInstrumentAction, $async$completer); }, debugFormatDouble: function(value) { if (value == null) return "null"; return C.JSNumber_methods.toStringAsFixed$1(value, 1); }, dayOfYear: function(month, day, leapYear) { var t1, t2; if (month === 1) return day; if (month === 2) return day + 31; t1 = C.JSNumber_methods.floor$0(30.6 * month - 91.4); t2 = leapYear ? 1 : 0; return t1 + day + 59 + t2; }, convertHexStringToColor: function(value) { var t1, exception; value = value; if (value == null) return null; t1 = value; value = H.stringReplaceAllUnchecked(t1, "#", ""); if (J.get$length$asx(value) !== 6) return null; try { t1 = P.int_parse(value, 16); return new P.Color(t1 + 4278190080 >>> 0); } catch (exception) { H.unwrapException(exception); return null; } }, convertColorToHexString: function(color) { var hex, t1, exception; try { hex = C.JSInt_methods.toRadixString$1(color.get$value(color), 16); t1 = "#" + J.substring$2$s(hex, 2, J.get$length$asx(hex)); return t1; } catch (exception) { H.unwrapException(exception); return null; } } }, V = { CollisionReport$: function(alternateTicksUsed, ticks, ticksCollide, $D) { var t1 = ticks == null ? H.setRuntimeTypeInfo([], $D._eval$1("JSArray>")) : ticks; return new V.CollisionReport(ticksCollide, t1, alternateTicksUsed === true, $D._eval$1("CollisionReport<0>")); }, CollisionReport: function CollisionReport(t0, t1, t2, t3) { var _ = this; _.ticksCollide = t0; _.ticks = t1; _.alternateTicksUsed = t2; _.$ti = t3; }, MonthTimeStepper: function MonthTimeStepper(t0, t1) { this._month_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, PerSeriesLegendEntryGenerator: function PerSeriesLegendEntryGenerator(t0) { var _ = this; _.secondaryMeasureFormatter = _.measureFormatter = _.entryTextStyle = null; _.showOverlaySeries = false; _.__PerSeriesLegendEntryGenerator_legendDefaultMeasure = $; _.$ti = t0; }, PerSeriesLegendEntryGenerator_getLegendEntries_closure: function PerSeriesLegendEntryGenerator_getLegendEntries_closure(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator_getLegendEntries_closure0: function PerSeriesLegendEntryGenerator_getLegendEntries_closure0(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator__updateFromSelection_closure: function PerSeriesLegendEntryGenerator__updateFromSelection_closure(t0, t1) { this.$this = t0; this.entry = t1; }, PerSeriesLegendEntryGenerator__updateFromSelection_closure0: function PerSeriesLegendEntryGenerator__updateFromSelection_closure0(t0) { this.$this = t0; }, PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal: function PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal(t0) { this.$this = t0; }, Performance_time_closure: function Performance_time_closure() { }, Performance_timeEnd_closure: function Performance_timeEnd_closure() { }, LinePainter_draw: function(canvas, clipBounds, dashPattern, fill, paint, points, roundEndCaps, shader, stroke, strokeWidthPx) { var t1, t2, t3, point, t4; if (points.length === 0) return; t1 = clipBounds != null; if (t1) { canvas.save$0(0); t2 = clipBounds.left; t3 = clipBounds.top; canvas.clipRect$1(0, new P.Rect(t2, t3, t2 + clipBounds.width, t3 + clipBounds.height)); } paint.set$color(0, P.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); if (shader != null) paint.set$shader(shader); if (points.length === 1) { point = C.JSArray_methods.get$first(points); paint.set$style(0, C.PaintingStyle_0); t2 = point.x; t2.toString; t3 = point.y; t3.toString; t4 = strokeWidthPx == null ? 0 : strokeWidthPx; canvas.drawCircle$3(0, new P.Offset(t2, t3), t4, paint); } else { if (strokeWidthPx != null) paint.set$strokeWidth(strokeWidthPx); paint.set$strokeJoin(C.StrokeJoin_1); paint.set$style(0, C.PaintingStyle_1); if (dashPattern == null || J.get$isEmpty$asx(dashPattern)) { if (roundEndCaps === true) paint.set$strokeCap(C.StrokeCap_1); V.LinePainter__drawSolidLine(canvas, paint, points); } else V.LinePainter__drawDashedLine(canvas, paint, points, dashPattern); } if (t1) canvas.restore$0(0); }, LinePainter__drawSolidLine: function(canvas, paint, points) { var t2, _i, point, t3, path = P.Path_Path(), t1 = C.JSArray_methods.get$first(points).x; t1.toString; t2 = C.JSArray_methods.get$first(points).y; t2.toString; path.moveTo$2(0, t1, t2); for (t1 = points.length, _i = 0; _i < points.length; points.length === t1 || (0, H.throwConcurrentModificationError)(points), ++_i) { point = points[_i]; t2 = point.x; t2.toString; t3 = point.y; t3.toString; path.lineTo$2(0, t2, t3); } canvas.drawPath$2(0, path, paint); }, LinePainter__drawDashedLine: function(canvas, paint, points, dashPattern) { var t1, t2, previousSeriesPoint, getNextDashPatternSegment, remainder, solid, remainderPoints, pointIndex, t3, t4, seriesPoint, d, previousPoint, dashSegment, t5, t6, t7, t8, t9, t10, t11, distance, nextPoint, path, _i, p, _box_0 = {}, localDashPattern = P.List_List$from(dashPattern, true, type$.dynamic); if (C.JSInt_methods.$mod(J.get$length$asx(dashPattern), 2) === 1) C.JSArray_methods.addAll$1(localDashPattern, dashPattern); t1 = C.JSArray_methods.get$first(points); t2 = t1.x; t2.toString; t1 = t1.y; t1.toString; previousSeriesPoint = new P.Offset(t2, t1); _box_0.dashPatternIndex = 0; getNextDashPatternSegment = new V.LinePainter__drawDashedLine_closure(_box_0, localDashPattern); for (t1 = type$.JSArray_Offset, t2 = type$.Point_double, remainder = 0, solid = true, remainderPoints = null, pointIndex = 1; pointIndex < points.length; ++pointIndex, previousSeriesPoint = seriesPoint) { t3 = points[pointIndex]; t4 = t3.x; t4.toString; t3 = t3.y; t3.toString; seriesPoint = new P.Offset(t4, t3); if (!previousSeriesPoint.$eq(0, seriesPoint)) { d = new P.Point(previousSeriesPoint._dx, previousSeriesPoint._dy, t2).distanceTo$1(new P.Point(t4, t3, t2)); for (previousPoint = previousSeriesPoint; d > 0; previousPoint = nextPoint, remainder = 0) { dashSegment = remainder > 0 ? remainder : getNextDashPatternSegment.call$0(); t5 = previousPoint._dx; t6 = t4 - t5; t7 = previousPoint._dy; t8 = t3 - t7; t9 = t6 * t6 + t8 * t8; t10 = Math.sqrt(t9); t9 = Math.sqrt(t9); t11 = d < dashSegment; distance = t11 ? d : C.JSNumber_methods.toDouble$0(dashSegment); t6 = t5 + t6 / t10 * distance; t9 = t7 + t8 / t9 * distance; nextPoint = new P.Offset(t6, t9); if (solid) if (remainderPoints != null) { remainderPoints.push(new P.Offset(t6, t9)); path = P.Path_Path(); path.moveTo$2(0, C.JSArray_methods.get$first(remainderPoints)._dx, C.JSArray_methods.get$first(remainderPoints)._dy); for (t5 = remainderPoints.length, _i = 0; _i < remainderPoints.length; remainderPoints.length === t5 || (0, H.throwConcurrentModificationError)(remainderPoints), ++_i) { p = remainderPoints[_i]; path.lineTo$2(0, p.get$dx(p), p.get$dy(p)); } canvas.drawPath$2(0, path, paint); remainderPoints = null; } else if (t11 && pointIndex < points.length - 1) remainderPoints = H.setRuntimeTypeInfo([new P.Offset(t5, t7), new P.Offset(t6, t9)], t1); else canvas.drawLine$3(0, previousPoint, nextPoint, paint); solid = !solid; d -= dashSegment; } remainder = -C.JSNumber_methods.round$0(d); if (remainder > 0) solid = !solid; } } }, LinePainter__drawDashedLine_closure: function LinePainter__drawDashedLine_closure(t0, t1) { this._box_0 = t0; this.localDashPattern = t1; }, Int32__decodeDigit: function(c) { if (c >= 48 && c <= 57) return c - 48; else if (c >= 97 && c <= 122) return c - 97 + 10; else if (c >= 65 && c <= 90) return c - 65 + 10; else return -1; }, Int64__parseRadix: function(s, radix) { var i, negative, d0, d1, d2, c, digit, d00, d10, _null = null, t1 = s.length; if (0 < t1 && s[0] === "-") { i = 1; negative = true; } else { i = 0; negative = false; } if (i >= t1) throw H.wrapException(P.FormatException$("No digits in '" + s + "'", _null, _null)); for (d0 = 0, d1 = 0, d2 = 0; i < t1; ++i, d1 = d10, d0 = d00) { c = C.JSString_methods._codeUnitAt$1(s, i); digit = V.Int32__decodeDigit(c); if (digit < 0 || digit >= radix) throw H.wrapException(P.FormatException$("Non-radix char code: " + c, _null, _null)); d0 = d0 * radix + digit; d00 = d0 & 4194303; d1 = d1 * radix + C.JSInt_methods._shrOtherPositive$1(d0, 22); d10 = d1 & 4194303; d2 = d2 * radix + (d1 >>> 22) & 1048575; } if (negative) return V.Int64__sub(0, 0, 0, d0, d1, d2); return new V.Int64(d0 & 4194303, d1 & 4194303, d2 & 1048575); }, Int64_Int64: function(value) { var negative, v2, v1, t1, t2, t3; if (value < 0) { value = -value; negative = true; } else negative = false; v2 = C.JSInt_methods._tdivFast$1(value, 17592186044416); value -= v2 * 17592186044416; v1 = C.JSInt_methods._tdivFast$1(value, 4194304); t1 = v1 & 4194303; t2 = v2 & 1048575; t3 = value - v1 * 4194304 & 4194303; return negative ? V.Int64__sub(0, 0, 0, t3, t1, t2) : new V.Int64(t3, t1, t2); }, Int64__promote: function(value) { if (value instanceof V.Int64) return value; else if (H._isInt(value)) return V.Int64_Int64(value); throw H.wrapException(P.ArgumentError$value(value, null, null)); }, Int64__toRadixStringUnsigned: function(radix, d0, d1, d2, sign) { var d4, d3, fatRadix, chunk1, chunk2, chunk3, q, q0, q1, q2, q3, chunk10, residue; if (d0 === 0 && d1 === 0 && d2 === 0) return "0"; d4 = (d2 << 4 | d1 >>> 18) >>> 0; d3 = d1 >>> 8 & 1023; d2 = (d1 << 2 | d0 >>> 20) & 1023; d1 = d0 >>> 10 & 1023; d0 &= 1023; fatRadix = C.List_WrN[radix]; chunk1 = ""; chunk2 = ""; chunk3 = ""; while (true) { if (!!(d4 === 0 && d3 === 0)) break; q = C.JSInt_methods.$tdiv(d4, fatRadix); d3 += d4 - q * fatRadix << 10 >>> 0; q0 = C.JSInt_methods.$tdiv(d3, fatRadix); d2 += d3 - q0 * fatRadix << 10 >>> 0; q1 = C.JSInt_methods.$tdiv(d2, fatRadix); d1 += d2 - q1 * fatRadix << 10 >>> 0; q2 = C.JSInt_methods.$tdiv(d1, fatRadix); d0 += d1 - q2 * fatRadix << 10 >>> 0; q3 = C.JSInt_methods.$tdiv(d0, fatRadix); chunk10 = C.JSString_methods.substring$1(C.JSInt_methods.toRadixString$1(fatRadix + (d0 - q3 * fatRadix), radix), 1); chunk3 = chunk2; chunk2 = chunk1; chunk1 = chunk10; d3 = q0; d4 = q; d2 = q1; d1 = q2; d0 = q3; } residue = (d2 << 20 >>> 0) + (d1 << 10 >>> 0) + d0; return sign + (residue === 0 ? "" : C.JSInt_methods.toRadixString$1(residue, radix)) + chunk1 + chunk2 + chunk3; }, Int64__sub: function(a0, a1, a2, b0, b1, b2) { var diff0 = a0 - b0, diff1 = a1 - b1 - (C.JSInt_methods._shrOtherPositive$1(diff0, 22) & 1); return new V.Int64(diff0 & 4194303, diff1 & 4194303, a2 - b2 - (C.JSInt_methods._shrOtherPositive$1(diff1, 22) & 1) & 1048575); }, Int64: function Int64(t0, t1, t2) { this._l = t0; this._m = t1; this._h = t2; }, Drag: function Drag() { }, MultiDragPointerState: function MultiDragPointerState() { }, MultiDragGestureRecognizer: function MultiDragGestureRecognizer() { }, MultiDragGestureRecognizer_acceptGesture_closure: function MultiDragGestureRecognizer_acceptGesture_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, MultiDragGestureRecognizer__startDrag_closure: function MultiDragGestureRecognizer__startDrag_closure(t0, t1) { this.$this = t0; this.initialPosition = t1; }, _ImmediatePointerState: function _ImmediatePointerState(t0, t1, t2, t3) { var _ = this; _.initialPosition = t0; _._multidrag$_velocityTracker = t1; _.kind = t2; _._multidrag$_client = null; _._pendingDelta = t3; _._arenaEntry = _._multidrag$_lastPendingEventTimestamp = null; }, ImmediateMultiDragGestureRecognizer: function ImmediateMultiDragGestureRecognizer(t0, t1, t2, t3) { var _ = this; _.onStart = null; _._multidrag$_pointers = t0; _.debugOwner = t1; _._kindFilter = t2; _._pointerToKind = t3; }, _DelayedPointerState: function _DelayedPointerState(t0, t1, t2, t3) { var _ = this; _._starter = _._multidrag$_timer = null; _.initialPosition = t0; _._multidrag$_velocityTracker = t1; _.kind = t2; _._multidrag$_client = null; _._pendingDelta = t3; _._arenaEntry = _._multidrag$_lastPendingEventTimestamp = null; }, DelayedMultiDragGestureRecognizer: function DelayedMultiDragGestureRecognizer(t0, t1, t2, t3) { var _ = this; _.onStart = null; _._multidrag$_pointers = t0; _.debugOwner = t1; _._kindFilter = t2; _._pointerToKind = t3; }, _CombiningGestureArenaEntry: function _CombiningGestureArenaEntry(t0, t1) { this._combiner = t0; this._team$_member = t1; }, _CombiningGestureArenaMember: function _CombiningGestureArenaMember(t0, t1, t2) { var _ = this; _._team$_owner = t0; _._members = t1; _._team$_pointer = t2; _._resolved = false; _._entry = _._winner = null; }, GestureArenaTeam: function GestureArenaTeam(t0) { this._combiners = t0; this.captain = null; }, GestureArenaTeam_add_closure: function GestureArenaTeam_add_closure(t0, t1) { this.$this = t0; this.pointer = t1; }, AppBarTheme$: function(actionsIconTheme, backgroundColor, backwardsCompatibility, brightness, centerTitle, color, elevation, foregroundColor, iconTheme, shadowColor, systemOverlayStyle, textTheme, titleSpacing, titleTextStyle, toolbarTextStyle) { return new V.AppBarTheme(brightness, backgroundColor == null ? color : backgroundColor, foregroundColor, elevation, shadowColor, iconTheme, actionsIconTheme, textTheme, centerTitle, titleSpacing, toolbarTextStyle, titleTextStyle, systemOverlayStyle, backwardsCompatibility); }, AppBarTheme: function AppBarTheme(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.brightness = t0; _.backgroundColor = t1; _.foregroundColor = t2; _.elevation = t3; _.shadowColor = t4; _.iconTheme = t5; _.actionsIconTheme = t6; _.textTheme = t7; _.centerTitle = t8; _.titleSpacing = t9; _.toolbarTextStyle = t10; _.titleTextStyle = t11; _.systemOverlayStyle = t12; _.backwardsCompatibility = t13; }, _AppBarTheme_Object_Diagnosticable: function _AppBarTheme_Object_Diagnosticable() { }, Card$: function(child, clipBehavior, color, elevation, margin, semanticContainer, shape) { return new V.Card(color, elevation, shape, clipBehavior, margin, semanticContainer, child, null); }, Card: function Card(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.color = t0; _.elevation = t1; _.shape = t2; _.clipBehavior = t3; _.margin = t4; _.semanticContainer = t5; _.child = t6; _.key = t7; }, _MaterialStateColor$: function(_resolve) { return new V._MaterialStateColor(_resolve, J.get$value$x(_resolve.call$1(C.Set_empty0))); }, MaterialStateProperty_resolveAs: function(value, states, $T) { if ($T._eval$1("MaterialStateProperty<0>")._is(value)) return value.resolve$1(states); return value; }, MaterialState: function MaterialState(t0) { this._material_state$_name = t0; }, MaterialStateColor: function MaterialStateColor() { }, _MaterialStateColor: function _MaterialStateColor(t0, t1) { this._material_state$_resolve = t0; this.value = t1; }, MaterialStateMouseCursor: function MaterialStateMouseCursor() { }, _EnabledAndDisabledMouseCursor: function _EnabledAndDisabledMouseCursor(t0, t1) { this.enabledCursor = t0; this.name = t1; }, MaterialStateProperty: function MaterialStateProperty() { }, _MaterialStatePropertyWith: function _MaterialStatePropertyWith(t0, t1) { this._material_state$_resolve = t0; this.$ti = t1; }, _MaterialStatePropertyAll: function _MaterialStatePropertyAll(t0, t1) { this.value = t0; this.$ti = t1; }, MaterialPageRoute$: function(builder, settings, $T) { var _null = null, t1 = H.setRuntimeTypeInfo([], type$.JSArray_of_Future_bool_Function), t2 = $.Zone__current, t3 = S.ProxyAnimation$(C.C__AlwaysDismissedAnimation), t4 = H.setRuntimeTypeInfo([], type$.JSArray_OverlayEntry), t5 = $.Zone__current, t6 = settings == null ? C.RouteSettings_null_null : settings; return new V.MaterialPageRoute(builder, false, _null, t1, new N.LabeledGlobalKey(_null, $T._eval$1("LabeledGlobalKey<_ModalScopeState<0>>")), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new S.PageStorageBucket(), _null, new P._AsyncCompleter(new P._Future(t2, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), t3, t4, t6, new B.ValueNotifier(_null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_String), new P._AsyncCompleter(new P._Future(t5, $T._eval$1("_Future<0?>")), $T._eval$1("_AsyncCompleter<0?>")), $T._eval$1("MaterialPageRoute<0>")); }, MaterialPageRoute: function MaterialPageRoute(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.builder = t0; _.fullscreenDialog = t1; _.filter = t2; _._offstage = false; _._secondaryAnimationProxy = _._animationProxy = null; _._willPopCallbacks = t3; _._scopeKey = t4; _._subtreeKey = t5; _._storageBucket = t6; _.__ModalRoute__modalBarrier = $; _._modalScopeCache = null; _.__ModalRoute__modalScope = $; _.LocalHistoryRoute__localHistory = t7; _._transitionCompleter = t8; _._routes$_controller = _._routes$_animation = null; _._secondaryAnimation = t9; _._trainHoppingListenerRemover = _._routes$_result = null; _._overlayEntries = t10; _._navigator$_navigator = null; _._navigator$_settings = t11; _._restorationScopeId = t12; _._popCompleter = t13; _.$ti = t14; }, MaterialRouteTransitionMixin: function MaterialRouteTransitionMixin() { }, _MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin: function _MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin() { }, EdgeInsetsGeometry_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.$mul(0, t); if (b == null) return a.$mul(0, 1 - t); if (a instanceof V.EdgeInsets && b instanceof V.EdgeInsets) return V.EdgeInsets_lerp(a, b, t); if (a instanceof V.EdgeInsetsDirectional && b instanceof V.EdgeInsetsDirectional) return V.EdgeInsetsDirectional_lerp(a, b, t); t1 = P.lerpDouble(a.get$_left(a), b.get$_left(b), t); t1.toString; t2 = P.lerpDouble(a.get$_right(a), b.get$_right(b), t); t2.toString; t3 = P.lerpDouble(a.get$_edge_insets$_start(a), b.get$_edge_insets$_start(b), t); t3.toString; t4 = P.lerpDouble(a.get$_edge_insets$_end(), b.get$_edge_insets$_end(), t); t4.toString; t5 = P.lerpDouble(a.get$_top(a), b.get$_top(b), t); t5.toString; t6 = P.lerpDouble(a.get$_bottom(a), b.get$_bottom(b), t); t6.toString; return new V._MixedEdgeInsets(t1, t2, t3, t4, t5, t6); }, EdgeInsets$fromWindowPadding: function(padding, devicePixelRatio) { return new V.EdgeInsets(padding.left / devicePixelRatio, padding.top / devicePixelRatio, padding.right / devicePixelRatio, padding.bottom / devicePixelRatio); }, EdgeInsets_lerp: function(a, b, t) { var t2, t3, t4, t1 = P.lerpDouble(a.left, b.left, t); t1.toString; t2 = P.lerpDouble(a.top, b.top, t); t2.toString; t3 = P.lerpDouble(a.right, b.right, t); t3.toString; t4 = P.lerpDouble(a.bottom, b.bottom, t); t4.toString; return new V.EdgeInsets(t1, t2, t3, t4); }, EdgeInsetsDirectional_lerp: function(a, b, t) { var t2, t3, t4, t1 = P.lerpDouble(a.start, b.start, t); t1.toString; t2 = P.lerpDouble(a.top, b.top, t); t2.toString; t3 = P.lerpDouble(a.end, b.end, t); t3.toString; t4 = P.lerpDouble(a.bottom, b.bottom, t); t4.toString; return new V.EdgeInsetsDirectional(t1, t2, t3, t4); }, EdgeInsetsGeometry: function EdgeInsetsGeometry() { }, EdgeInsets: function EdgeInsets(t0, t1, t2, t3) { var _ = this; _.left = t0; _.top = t1; _.right = t2; _.bottom = t3; }, EdgeInsetsDirectional: function EdgeInsetsDirectional(t0, t1, t2, t3) { var _ = this; _.start = t0; _.top = t1; _.end = t2; _.bottom = t3; }, _MixedEdgeInsets: function _MixedEdgeInsets(t0, t1, t2, t3, t4, t5) { var _ = this; _._left = t0; _._right = t1; _._edge_insets$_start = t2; _._edge_insets$_end = t3; _._top = t4; _._bottom = t5; }, NotchedShape: function NotchedShape() { }, CircularNotchedRectangle: function CircularNotchedRectangle() { }, ShapeDecoration_ShapeDecoration$fromBoxDecoration: function(source) { var t1, shape, t2; switch (source.shape) { case C.BoxShape_1: t1 = source.border; shape = t1 != null ? new X.CircleBorder(t1.get$top(t1)) : C.CircleBorder_61T; break; case C.BoxShape_0: t1 = source.borderRadius; shape = source.border; if (t1 != null) { t2 = shape == null ? null : shape.get$top(shape); shape = new X.RoundedRectangleBorder(t1, t2 == null ? C.BorderSide_m7u : t2); } else if (shape == null) shape = C.Border_A43; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return new V.ShapeDecoration(source.color, source.gradient, source.image, source.boxShadow, shape); }, ShapeDecoration_lerp: function(a, b, t) { var t2, t3, t4, t5, t6, _null = null, t1 = a == null; if (t1 && b == null) return _null; if (!t1 && b != null) { if (t === 0) return a; if (t === 1) return b; } t2 = t1 ? _null : a.color; t3 = b == null; t2 = P.Color_lerp(t2, t3 ? _null : b.color, t); t4 = t1 ? _null : a.gradient; t4 = T.Gradient_lerp(t4, t3 ? _null : b.gradient, t); t5 = t < 0.5 ? a.image : b.image; t6 = t1 ? _null : a.shadows; t6 = O.BoxShadow_lerpList(t6, t3 ? _null : b.shadows, t); t1 = t1 ? _null : a.shape; t1 = Y.ShapeBorder_lerp(t1, t3 ? _null : b.shape, t); t1.toString; return new V.ShapeDecoration(t2, t4, t5, t6, t1); }, ShapeDecoration: function ShapeDecoration(t0, t1, t2, t3, t4) { var _ = this; _.color = t0; _.gradient = t1; _.image = t2; _.shadows = t3; _.shape = t4; }, _ShapeDecorationPainter: function _ShapeDecorationPainter(t0, t1) { var _ = this; _._shape_decoration$_decoration = t0; _._lastTextDirection = _._lastRect = null; _.___ShapeDecorationPainter__outerPath = $; _._shadowCount = _._interiorPaint = _._innerPath = null; _.___ShapeDecorationPainter__shadowPaints = _.___ShapeDecorationPainter__shadowPaths = $; _._imagePainter = null; _.onChanged = t1; }, _ShapeDecorationPainter__precache_closure: function _ShapeDecorationPainter__precache_closure() { }, _ShapeDecorationPainter__precache_closure0: function _ShapeDecorationPainter__precache_closure0(t0, t1, t2) { this.$this = t0; this.rect = t1; this.textDirection = t2; }, RenderCustomPaint$: function(foregroundPainter, isComplex, painter, preferredSize, willChange) { var t1 = new V.RenderCustomPaint(painter, foregroundPainter, preferredSize, false, false, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, RenderCustomPaint__updateSemanticsChildren: function(oldSemantics, newChildSemantics) { var t1, newChildrenBottom, t2, oldChildrenBottom, newChildren, newChildrenTop, oldChildrenTop, oldChild, newSemantics, haveOldChildren, newChild, _box_0 = {}; _box_0.newChildSemantics = newChildSemantics; if (oldSemantics == null) oldSemantics = C.List_empty16; if (newChildSemantics == null) newChildSemantics = C.List_empty17; _box_0.newChildSemantics = newChildSemantics; t1 = J.getInterceptor$asx(newChildSemantics); newChildrenBottom = t1.get$length(newChildSemantics) - 1; t2 = J.getInterceptor$asx(oldSemantics); oldChildrenBottom = t2.get$length(oldSemantics) - 1; newChildren = P.List_List$filled(t1.get$length(newChildSemantics), null, false, type$.nullable_SemanticsNode); newChildrenTop = 0; oldChildrenTop = 0; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; oldChild = t2.$index(oldSemantics, oldChildrenTop); newSemantics = J.$index$asx(_box_0.newChildSemantics, newChildrenTop); oldChild.toString; newSemantics.toString; newChildren[newChildrenTop] = V.RenderCustomPaint__updateSemanticsChild(oldChild, newSemantics); ++newChildrenTop; ++oldChildrenTop; } while (true) { haveOldChildren = oldChildrenTop <= oldChildrenBottom; if (!(haveOldChildren && newChildrenTop <= newChildrenBottom)) break; oldChild = t2.$index(oldSemantics, oldChildrenBottom); newChild = J.$index$asx(_box_0.newChildSemantics, newChildrenBottom); oldChild.toString; newChild.toString; --oldChildrenBottom; --newChildrenBottom; } _box_0._oldKeyedChildren = $; if (haveOldChildren) { new V.RenderCustomPaint__updateSemanticsChildren__oldKeyedChildren_set(_box_0).call$1(P.LinkedHashMap_LinkedHashMap$_empty(type$.Key, type$.SemanticsNode)); for (; oldChildrenTop <= oldChildrenBottom;) { t2.$index(oldSemantics, oldChildrenTop).toString; ++oldChildrenTop; } haveOldChildren = true; } for (; newChildrenTop <= newChildrenBottom;) { newSemantics = J.$index$asx(_box_0.newChildSemantics, newChildrenTop); if (haveOldChildren) newSemantics.toString; newChildren[newChildrenTop] = V.RenderCustomPaint__updateSemanticsChild(null, newSemantics); ++newChildrenTop; } newChildrenBottom = J.get$length$asx(_box_0.newChildSemantics) - 1; oldChildrenBottom = t2.get$length(oldSemantics) - 1; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; newChildren[newChildrenTop] = V.RenderCustomPaint__updateSemanticsChild(t2.$index(oldSemantics, oldChildrenTop), J.$index$asx(_box_0.newChildSemantics, newChildrenTop)); ++newChildrenTop; ++oldChildrenTop; } return new H.CastList(newChildren, H._arrayInstanceType(newChildren)._eval$1("CastList<1,SemanticsNode>")); }, RenderCustomPaint__updateSemanticsChild: function(oldChild, newSemantics) { var newChild, properties, config, t1; if (oldChild == null) { newSemantics.toString; newChild = A.SemanticsNode$(null, null); } else newChild = oldChild; properties = newSemantics.properties; config = A.SemanticsConfiguration$(); t1 = properties.sortKey; if (t1 != null) { config._semantics$_sortKey = t1; config._hasBeenAnnotated = true; } t1 = properties.checked; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_1, true); config._setFlag$2(C.SemanticsFlag_2, t1); } t1 = properties.selected; if (t1 != null) config._setFlag$2(C.SemanticsFlag_4, t1); t1 = properties.button; if (t1 != null) config._setFlag$2(C.SemanticsFlag_8, t1); t1 = properties.focusable; if (t1 != null) config._setFlag$2(C.SemanticsFlag_2097152, t1); t1 = properties.focused; if (t1 != null) config._setFlag$2(C.SemanticsFlag_32, t1); t1 = properties.enabled; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_64, true); config._setFlag$2(C.SemanticsFlag_128, t1); } t1 = properties.inMutuallyExclusiveGroup; if (t1 != null) config._setFlag$2(C.SemanticsFlag_256, t1); t1 = properties.header; if (t1 != null) config._setFlag$2(C.SemanticsFlag_512, t1); t1 = properties.scopesRoute; if (t1 != null) config._setFlag$2(C.SemanticsFlag_2048, t1); t1 = properties.namesRoute; if (t1 != null) config._setFlag$2(C.SemanticsFlag_4096, t1); t1 = properties.liveRegion; if (t1 != null) config._setFlag$2(C.SemanticsFlag_32768, t1); t1 = properties.maxValueLength; if (t1 != null) config.set$maxValueLength(t1); t1 = properties.currentValueLength; if (t1 != null) config.set$currentValueLength(t1); t1 = properties.toggled; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_65536, true); config._setFlag$2(C.SemanticsFlag_131072, t1); } t1 = properties.image; if (t1 != null) config._setFlag$2(C.SemanticsFlag_16384, t1); t1 = properties.label; if (t1 != null) { config._semantics$_label = t1; config._hasBeenAnnotated = true; } t1 = properties.value; if (t1 != null) { config._semantics$_value = t1; config._hasBeenAnnotated = true; } t1 = properties.increasedValue; if (t1 != null) { config._semantics$_increasedValue = t1; config._hasBeenAnnotated = true; } t1 = properties.decreasedValue; if (t1 != null) { config._semantics$_decreasedValue = t1; config._hasBeenAnnotated = true; } t1 = properties.textDirection; if (t1 != null) { config._semantics$_textDirection = t1; config._hasBeenAnnotated = true; } t1 = properties.onTap; if (t1 != null) config.set$onTap(t1); t1 = properties.onLongPress; if (t1 != null) config.set$onLongPress(t1); t1 = properties.onIncrease; if (t1 != null) config.set$onIncrease(t1); t1 = properties.onDecrease; if (t1 != null) config.set$onDecrease(t1); t1 = properties.onCopy; if (t1 != null) config.set$onCopy(0, t1); t1 = properties.onCut; if (t1 != null) config.set$onCut(0, t1); t1 = properties.onPaste; if (t1 != null) config.set$onPaste(0, t1); t1 = properties.onDidGainAccessibilityFocus; if (t1 != null) config.set$onDidGainAccessibilityFocus(t1); t1 = properties.onDismiss; if (t1 != null) config.set$onDismiss(t1); newChild.updateWith$2$childrenInInversePaintOrder$config(0, C.List_empty16, config); newChild.set$rect(0, newSemantics.rect); newChild.set$transform(0, null); newChild.tags = null; return newChild; }, CustomPainter: function CustomPainter() { }, CustomPainterSemantics: function CustomPainterSemantics(t0, t1) { this.rect = t0; this.properties = t1; }, RenderCustomPaint: function RenderCustomPaint(t0, t1, t2, t3, t4, t5) { var _ = this; _._painter = t0; _._foregroundPainter = t1; _._preferredSize = t2; _.isComplex = t3; _.willChange = t4; _._foregroundSemanticsNodes = _._backgroundSemanticsNodes = _._foregroundSemanticsBuilder = _._backgroundSemanticsBuilder = null; _.RenderObjectWithChildMixin__child = t5; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderCustomPaint__updateSemanticsChildren__oldKeyedChildren_set: function RenderCustomPaint__updateSemanticsChildren__oldKeyedChildren_set(t0) { this._box_0 = t0; }, RenderErrorBox: function RenderErrorBox(t0) { var _ = this; _.message = t0; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = _._paragraph = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, Priority: function Priority(t0) { this._priority$_value = t0; }, SystemSound_play: function(type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$SystemSound_play = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.OptionalMethodChannel_0.invokeMethod$1$2("SystemSound.play", type._system_sound$_name, type$.void), $async$SystemSound_play); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$SystemSound_play, $async$completer); }, SystemSoundType: function SystemSoundType(t0) { this._system_sound$_name = t0; }, PageRoute: function PageRoute() { }, ImageCacheManager: function ImageCacheManager() { }, FileResponse: function FileResponse() { }, _SlidableStackActionPane: function _SlidableStackActionPane(t0, t1, t2, t3) { var _ = this; _.child = t0; _.data = t1; _._slidable_action_pane$_animation = t2; _.key = t3; }, SlidableDrawerActionPane: function SlidableDrawerActionPane(t0) { this.key = t0; }, SlidableDrawerActionPane_build_closure: function SlidableDrawerActionPane_build_closure(t0, t1) { this.startOffset = t0; this.data = t1; }, SlidableDrawerActionPane_build_closure0: function SlidableDrawerActionPane_build_closure0(t0, t1, t2) { this.data = t0; this.animations = t1; this.context = t2; }, ImagePickerPlugin: function ImagePickerPlugin(t0) { this.__ImagePickerPlugin__target = $; this._instanceToken = t0; }, ImagePickerPlugin__getSelectedXFiles_closure: function ImagePickerPlugin__getSelectedXFiles_closure(t0, t1) { this.$this = t0; this._completer = t1; }, ImagePickerPlugin__getSelectedXFiles__closure: function ImagePickerPlugin__getSelectedXFiles__closure() { }, ImagePickerPlugin__getSelectedXFiles_closure0: function ImagePickerPlugin__getSelectedXFiles_closure0(t0) { this._completer = t0; }, PaymentTermRepository: function PaymentTermRepository() { }, VendorRepository: function VendorRepository() { }, _saveAuthLocal: function(url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic); var $async$_saveAuthLocal = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$_saveAuthLocal); case 2: // returning from await. $async$result._setValue$3("String", "url", Y.formatApiUrl(url)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_saveAuthLocal, $async$completer); }, _createUserLogout: function() { return new V._createUserLogout_closure(); }, _createUserLogoutAll: function(repository) { return new V._createUserLogoutAll_closure(repository); }, _createLoginRequest: function(repository) { return new V._createLoginRequest_closure(repository); }, _createSignUpRequest: function(repository) { return new V._createSignUpRequest_closure(repository); }, _createOAuthLoginRequest: function(repository) { return new V._createOAuthLoginRequest_closure(repository); }, _createOAuthSignUpRequest: function(repository) { return new V._createOAuthSignUpRequest_closure(repository); }, _createRefreshRequest: function(repository) { return new V._createRefreshRequest_closure(repository); }, _createRecoverRequest: function(repository) { return new V._createRecoverRequest_closure(repository); }, _createCompany: function(repository) { return new V._createCompany_closure(repository); }, _setDefaultCompany: function(repository) { return new V._setDefaultCompany_closure(repository); }, _deleteCompany: function(repository) { return new V._deleteCompany_closure(repository); }, _purgeData: function(repository) { return new V._purgeData_closure(repository); }, _resendConfirmation: function(repository) { return new V._resendConfirmation_closure(repository); }, _parseError0: function(error) { var lastIndex, secondToLastIndex, _s28_ = "failed due to: Deserializing"; if (C.JSString_methods.contains$1(error, _s28_)) { lastIndex = C.JSString_methods.lastIndexOf$1(error, _s28_); secondToLastIndex = C.JSString_methods.lastIndexOf$1(C.JSString_methods.substring$2(error, 0, C.JSString_methods.lastIndexOf$1(error, _s28_)), _s28_); error = "Error :: " + C.JSString_methods.trim$0(C.JSString_methods.substring$1(error, (secondToLastIndex >= 0 ? secondToLastIndex : lastIndex) + 28)); } else if (C.JSString_methods.contains$1(error.toLowerCase(), "no host specified")) error = "An error occurred, please check the URL is correct"; else if (C.JSString_methods.contains$1(error, "404")) error += ", you may need to add /public to the URL"; return error; }, _createUserLogout_closure: function _createUserLogout_closure() { }, _createUserLogout__closure: function _createUserLogout__closure() { }, _createUserLogoutAll_closure: function _createUserLogoutAll_closure(t0) { this.repository = t0; }, _createUserLogoutAll__closure: function _createUserLogoutAll__closure(t0) { this.store = t0; }, _createUserLogoutAll__closure0: function _createUserLogoutAll__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createLoginRequest_closure: function _createLoginRequest_closure(t0) { this.repository = t0; }, _createLoginRequest__closure: function _createLoginRequest__closure(t0, t1) { this.action = t0; this.store = t1; }, _createLoginRequest__closure0: function _createLoginRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createSignUpRequest_closure: function _createSignUpRequest_closure(t0) { this.repository = t0; }, _createSignUpRequest__closure: function _createSignUpRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createSignUpRequest__closure0: function _createSignUpRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthLoginRequest_closure: function _createOAuthLoginRequest_closure(t0) { this.repository = t0; }, _createOAuthLoginRequest__closure: function _createOAuthLoginRequest__closure(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthLoginRequest__closure0: function _createOAuthLoginRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createOAuthSignUpRequest_closure: function _createOAuthSignUpRequest_closure(t0) { this.repository = t0; }, _createOAuthSignUpRequest__closure: function _createOAuthSignUpRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createOAuthSignUpRequest__closure0: function _createOAuthSignUpRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createRefreshRequest_closure: function _createRefreshRequest_closure(t0) { this.repository = t0; }, _createRefreshRequest__closure: function _createRefreshRequest__closure(t0, t1, t2) { this.state = t0; this.store = t1; this.action = t2; }, _createRefreshRequest___closure: function _createRefreshRequest___closure(t0, t1) { this._box_0 = t0; this.state = t1; }, _createRefreshRequest____closure: function _createRefreshRequest____closure(t0, t1) { this._box_0 = t0; this.userCompany = t1; }, _createRefreshRequest__closure0: function _createRefreshRequest__closure0(t0, t1) { this.action = t0; this.store = t1; }, _createRecoverRequest_closure: function _createRecoverRequest_closure(t0) { this.repository = t0; }, _createRecoverRequest__closure: function _createRecoverRequest__closure(t0, t1) { this.store = t0; this.action = t1; }, _createRecoverRequest__closure0: function _createRecoverRequest__closure0(t0, t1) { this.store = t0; this.action = t1; }, _createCompany_closure: function _createCompany_closure(t0) { this.repository = t0; }, _createCompany__closure: function _createCompany__closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _createCompany___closure: function _createCompany___closure(t0, t1, t2) { this.store = t0; this.state = t1; this.action = t2; }, _setDefaultCompany_closure: function _setDefaultCompany_closure(t0) { this.repository = t0; }, _setDefaultCompany__closure: function _setDefaultCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _setDefaultCompany__closure0: function _setDefaultCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompany_closure: function _deleteCompany_closure(t0) { this.repository = t0; }, _deleteCompany__closure: function _deleteCompany__closure(t0, t1) { this.store = t0; this.action = t1; }, _deleteCompany__closure0: function _deleteCompany__closure0(t0, t1) { this.store = t0; this.action = t1; }, _purgeData_closure: function _purgeData_closure(t0) { this.repository = t0; }, _purgeData__closure: function _purgeData__closure(t0, t1) { this.store = t0; this.action = t1; }, _purgeData___closure: function _purgeData___closure(t0) { this.action = t0; }, _purgeData__closure0: function _purgeData__closure0(t0, t1) { this.store = t0; this.action = t1; }, _resendConfirmation_closure: function _resendConfirmation_closure(t0) { this.repository = t0; }, _resendConfirmation__closure: function _resendConfirmation__closure(t0) { this.store = t0; }, _resendConfirmation__closure0: function _resendConfirmation__closure0(t0) { this.store = t0; }, _editDesign: function() { return new V._editDesign_closure(); }, _viewDesign: function() { return new V._viewDesign_closure(); }, _viewDesignList: function() { return new V._viewDesignList_closure0(); }, _archiveDesign: function(repository) { return new V._archiveDesign_closure(repository); }, _deleteDesign: function(repository) { return new V._deleteDesign_closure(repository); }, _restoreDesign: function(repository) { return new V._restoreDesign_closure(repository); }, _saveDesign: function(repository) { return new V._saveDesign_closure(repository); }, _loadDesign: function(repository) { return new V._loadDesign_closure(repository); }, _loadDesigns: function(repository) { return new V._loadDesigns_closure(repository); }, _editDesign_closure: function _editDesign_closure() { }, _viewDesign_closure: function _viewDesign_closure() { }, _viewDesignList_closure0: function _viewDesignList_closure0() { }, _viewDesignList__closure: function _viewDesignList__closure() { }, _archiveDesign_closure: function _archiveDesign_closure(t0) { this.repository = t0; }, _archiveDesign__closure: function _archiveDesign__closure(t0) { this.store = t0; }, _archiveDesign__closure0: function _archiveDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveDesign__closure1: function _archiveDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _deleteDesign_closure: function _deleteDesign_closure(t0) { this.repository = t0; }, _deleteDesign__closure: function _deleteDesign__closure(t0) { this.store = t0; }, _deleteDesign__closure0: function _deleteDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteDesign__closure1: function _deleteDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _restoreDesign_closure: function _restoreDesign_closure(t0) { this.repository = t0; }, _restoreDesign__closure: function _restoreDesign__closure(t0) { this.store = t0; }, _restoreDesign__closure0: function _restoreDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreDesign__closure1: function _restoreDesign__closure1(t0, t1, t2) { this.store = t0; this.prevDesigns = t1; this.action = t2; }, _saveDesign_closure: function _saveDesign_closure(t0) { this.repository = t0; }, _saveDesign__closure: function _saveDesign__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveDesign__closure0: function _saveDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDesign_closure: function _loadDesign_closure(t0) { this.repository = t0; }, _loadDesign__closure: function _loadDesign__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDesign__closure0: function _loadDesign__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadDesigns_closure: function _loadDesigns_closure(t0) { this.repository = t0; }, _loadDesigns__closure: function _loadDesigns__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadDesigns__closure0: function _loadDesigns__closure0(t0, t1) { this.store = t0; this.action = t1; }, dropdownPaymentTermsSelector: function(paymentTermMap, paymentTermList) { var t1 = J.where$1$ax(paymentTermList._list, new V.dropdownPaymentTermsSelector_closure(paymentTermMap, P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_bool))), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new V.dropdownPaymentTermsSelector_closure0(paymentTermMap)); return list; }, filteredPaymentTermsSelector: function(selectionState, paymentTermMap, paymentTermList, paymentTermListState) { var t1 = J.where$1$ax(paymentTermList._list, new V.filteredPaymentTermsSelector_closure(paymentTermMap, selectionState, paymentTermListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new V.filteredPaymentTermsSelector_closure0(paymentTermMap, paymentTermListState)); return list; }, memoizedDropdownPaymentTermList_closure: function memoizedDropdownPaymentTermList_closure() { }, dropdownPaymentTermsSelector_closure: function dropdownPaymentTermsSelector_closure(t0, t1) { this.paymentTermMap = t0; this.numDays = t1; }, dropdownPaymentTermsSelector_closure0: function dropdownPaymentTermsSelector_closure0(t0) { this.paymentTermMap = t0; }, memoizedFilteredPaymentTermList_closure: function memoizedFilteredPaymentTermList_closure() { }, filteredPaymentTermsSelector_closure: function filteredPaymentTermsSelector_closure(t0, t1, t2) { this.paymentTermMap = t0; this.selectionState = t1; this.paymentTermListState = t2; }, filteredPaymentTermsSelector_closure0: function filteredPaymentTermsSelector_closure0(t0, t1) { this.paymentTermMap = t0; this.paymentTermListState = t1; }, countryList: function(countryMap) { var list = J.toList$0$ax(countryMap.get$keys(countryMap)); J.sort$1$ax(list, new V.countryList_closure(countryMap)); return list; }, groupList: function(groupMap) { var list = J.toList$0$ax(groupMap.get$keys(groupMap)); J.sort$1$ax(list, new V.groupList_closure(groupMap)); return list; }, languageList: function(languageMap) { var list = J.toList$0$ax(languageMap.get$keys(languageMap)); J.sort$1$ax(list, new V.languageList_closure(languageMap)); return list; }, currencyList: function(currencyMap) { var list = J.toList$0$ax(currencyMap.get$keys(currencyMap)); J.sort$1$ax(list, new V.currencyList_closure(currencyMap)); return list; }, timezoneList: function(timezoneMap) { var list = J.toList$0$ax(timezoneMap.get$keys(timezoneMap)); J.sort$1$ax(list, new V.timezoneList_closure(timezoneMap)); return list; }, dateFormatList: function(dateFormatMap) { var list = J.toList$0$ax(dateFormatMap.get$keys(dateFormatMap)); J.sort$1$ax(list, new V.dateFormatList_closure(dateFormatMap)); return list; }, industryList: function(industryMap) { var list = J.toList$0$ax(industryMap.get$keys(industryMap)); J.sort$1$ax(list, new V.industryList_closure(industryMap)); return list; }, sizeList: function(sizeMap) { var list = J.toList$0$ax(sizeMap.get$keys(sizeMap)); J.sort$1$ax(list, new V.sizeList_closure(sizeMap)); return list; }, gatewayList: function(gatewayMap) { var list = J.where$1$ax(gatewayMap.get$keys(gatewayMap), new V.gatewayList_closure(gatewayMap)).toList$0(0); C.JSArray_methods.sort$1(list, new V.gatewayList_closure0(gatewayMap)); return list; }, paymentTypeList: function(paymentTypeMap) { var list = J.toList$0$ax(paymentTypeMap.get$keys(paymentTypeMap)); J.sort$1$ax(list, new V.paymentTypeList_closure(paymentTypeMap)); return list; }, fontMap: function(fonts) { var t1 = type$.legacy_String, t2 = type$.legacy_SelectableEntity; return A.BuiltMap_BuiltMap$from(P.LinkedHashMap_LinkedHashMap$fromIterable(fonts, new V.fontMap_closure(), new V.fontMap_closure0(), t1, t2), t1, t2); }, memoizedCountryList_closure: function memoizedCountryList_closure() { }, countryList_closure: function countryList_closure(t0) { this.countryMap = t0; }, memoizedGroupList_closure: function memoizedGroupList_closure() { }, groupList_closure: function groupList_closure(t0) { this.groupMap = t0; }, memoizedLanguageList_closure: function memoizedLanguageList_closure() { }, languageList_closure: function languageList_closure(t0) { this.languageMap = t0; }, memoizedCurrencyList_closure: function memoizedCurrencyList_closure() { }, currencyList_closure: function currencyList_closure(t0) { this.currencyMap = t0; }, memoizedTimezoneList_closure: function memoizedTimezoneList_closure() { }, timezoneList_closure: function timezoneList_closure(t0) { this.timezoneMap = t0; }, memoizedDateFormatList_closure: function memoizedDateFormatList_closure() { }, dateFormatList_closure: function dateFormatList_closure(t0) { this.dateFormatMap = t0; }, memoizedIndustryList_closure: function memoizedIndustryList_closure() { }, industryList_closure: function industryList_closure(t0) { this.industryMap = t0; }, memoizedSizeList_closure: function memoizedSizeList_closure() { }, sizeList_closure: function sizeList_closure(t0) { this.sizeMap = t0; }, memoizedGatewayList_closure: function memoizedGatewayList_closure() { }, gatewayList_closure: function gatewayList_closure(t0) { this.gatewayMap = t0; }, gatewayList_closure0: function gatewayList_closure0(t0) { this.gatewayMap = t0; }, memoizedPaymentTypeList_closure: function memoizedPaymentTypeList_closure() { }, paymentTypeList_closure: function paymentTypeList_closure(t0) { this.paymentTypeMap = t0; }, memoizedFontMap_closure: function memoizedFontMap_closure() { }, fontMap_closure: function fontMap_closure() { }, fontMap_closure0: function fontMap_closure0() { }, handleTaskStatusAction: function(context, taskStatuses, action) { var store, state, t1, taskStatus, t2, taskStatusIds, message, _i, t3, _null = null, _s6_ = ":value", _s12_ = "_dispatchers"; if (taskStatuses.length === 0) return; store = O.StoreProvider_of(context, type$.legacy_AppState); state = store.get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); taskStatus = type$.legacy_TaskStatusEntity._as(C.JSArray_methods.get$first(taskStatuses)); t2 = H._arrayInstanceType(taskStatuses)._eval$1("MappedListIterable<1,String*>"); taskStatusIds = P.List_List$of(new H.MappedListIterable(taskStatuses, new V.handleTaskStatusAction_closure(), t2), true, t2._eval$1("ListIterable.E")); switch (action) { case C.EntityAction_edit: M.editEntity(_null, context, taskStatus, _null); break; case C.EntityAction_restore: t2 = taskStatusIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_task_statuses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "restored_task_status"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.RestoreTaskStatusesRequest(t1, taskStatusIds)); break; case C.EntityAction_archive: t2 = taskStatusIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_task_statuses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "archived_task_status"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.ArchiveTaskStatusesRequest(t1, taskStatusIds)); break; case C.EntityAction_delete: t2 = taskStatusIds.length; if (t2 > 1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_task_statuses"); if (t1 == null) t1 = ""; message = C.JSString_methods.replaceFirst$2(t1, _s6_, C.JSInt_methods.toString$0(t2)); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "deleted_task_status"); message = t1 == null ? "" : t1; } t1 = O.snackBarCompleter(context, message, false, type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.DeleteTaskStatusesRequest(t1, taskStatusIds)); break; case C.EntityAction_newTask: M.createEntity(_null, _null, context, D.TaskEntity_TaskEntity(_null, _null, _null, state, _null).rebuild$1(new V.handleTaskStatusAction_closure0(taskStatus)), _null, false); break; case C.EntityAction_toggleMultiselect: if (store.get$_store$_state().uiState.taskStatusUIState.listUIState.selectedIds == null) J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.StartTaskStatusMultiselect()); t1 = taskStatuses.length; if (t1 === 0) break; for (_i = 0; _i < taskStatuses.length; taskStatuses.length === t1 || (0, H.throwConcurrentModificationError)(taskStatuses), ++_i) { taskStatus = taskStatuses[_i]; t2 = store.__Store__state; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t2).uiState.taskStatusUIState.listUIState; t3 = J.get$id$x(taskStatus); t2 = t2.selectedIds; t2 = t2 != null && J.contains$1$asx(t2._list, t3); t3 = store.__Store__dispatchers; if (!t2) J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new V.AddToTaskStatusMultiselect(taskStatus)); else J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3, 0).call$1(new V.RemoveFromTaskStatusMultiselect(taskStatus)); } break; case C.EntityAction_more: L.showEntityActionsDialog(_null, H.setRuntimeTypeInfo([taskStatus], type$.JSArray_legacy_BaseEntity), false); break; default: P.print("## ERROR: unhandled action " + H.S(action) + " in task_status_actions"); break; } }, ViewTaskStatusList: function ViewTaskStatusList() { }, ViewTaskStatus: function ViewTaskStatus(t0) { this.taskStatusId = t0; }, EditTaskStatus: function EditTaskStatus(t0) { this.taskStatus = t0; }, UpdateTaskStatus: function UpdateTaskStatus(t0) { this.taskStatus = t0; }, LoadTaskStatusRequest: function LoadTaskStatusRequest() { }, LoadTaskStatusFailure: function LoadTaskStatusFailure(t0) { this.error = t0; }, LoadTaskStatusSuccess: function LoadTaskStatusSuccess(t0) { this.taskStatus = t0; }, LoadTaskStatusesRequest: function LoadTaskStatusesRequest() { }, LoadTaskStatusesFailure: function LoadTaskStatusesFailure(t0) { this.error = t0; }, LoadTaskStatusesSuccess: function LoadTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, SaveTaskStatusRequest: function SaveTaskStatusRequest(t0, t1) { this.completer = t0; this.taskStatus = t1; }, SaveTaskStatusSuccess: function SaveTaskStatusSuccess(t0) { this.taskStatus = t0; }, AddTaskStatusSuccess: function AddTaskStatusSuccess(t0) { this.taskStatus = t0; }, SaveTaskStatusFailure: function SaveTaskStatusFailure() { }, ArchiveTaskStatusesRequest: function ArchiveTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, ArchiveTaskStatusesSuccess: function ArchiveTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, ArchiveTaskStatusesFailure: function ArchiveTaskStatusesFailure() { }, DeleteTaskStatusesRequest: function DeleteTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, DeleteTaskStatusesSuccess: function DeleteTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, DeleteTaskStatusesFailure: function DeleteTaskStatusesFailure() { }, RestoreTaskStatusesRequest: function RestoreTaskStatusesRequest(t0, t1) { this.completer = t0; this.taskStatusIds = t1; }, RestoreTaskStatusesSuccess: function RestoreTaskStatusesSuccess(t0) { this.taskStatuses = t0; }, RestoreTaskStatusesFailure: function RestoreTaskStatusesFailure() { }, FilterTaskStatuses: function FilterTaskStatuses(t0) { this.filter = t0; }, SortTaskStatuses: function SortTaskStatuses(t0) { this.field = t0; }, FilterTaskStatusesByState: function FilterTaskStatusesByState(t0) { this.state = t0; }, FilterTaskStatusesByCustom1: function FilterTaskStatusesByCustom1(t0) { this.value = t0; }, FilterTaskStatusesByCustom2: function FilterTaskStatusesByCustom2(t0) { this.value = t0; }, FilterTaskStatusesByCustom3: function FilterTaskStatusesByCustom3(t0) { this.value = t0; }, FilterTaskStatusesByCustom4: function FilterTaskStatusesByCustom4(t0) { this.value = t0; }, StartTaskStatusMultiselect: function StartTaskStatusMultiselect() { }, AddToTaskStatusMultiselect: function AddToTaskStatusMultiselect(t0) { this.entity = t0; }, RemoveFromTaskStatusMultiselect: function RemoveFromTaskStatusMultiselect(t0) { this.entity = t0; }, ClearTaskStatusMultiselect: function ClearTaskStatusMultiselect() { }, handleTaskStatusAction_closure: function handleTaskStatusAction_closure() { }, handleTaskStatusAction_closure0: function handleTaskStatusAction_closure0(t0) { this.taskStatus = t0; }, _$WebhookState$_: function(list, map) { var _s12_ = "WebhookState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "list")); return new V._$WebhookState(map, list); }, _$WebhookUIState$_: function(cancelCompleter, editing, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("WebhookUIState", "listUIState")); return new V._$WebhookUIState(editing, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, WebhookState: function WebhookState() { }, WebhookState_loadWebhooks_closure0: function WebhookState_loadWebhooks_closure0() { }, WebhookState_loadWebhooks_closure1: function WebhookState_loadWebhooks_closure1() { }, WebhookState_loadWebhooks_closure: function WebhookState_loadWebhooks_closure(t0, t1) { this.$this = t0; this.map = t1; }, WebhookUIState: function WebhookUIState() { }, _$WebhookStateSerializer: function _$WebhookStateSerializer() { }, _$WebhookUIStateSerializer: function _$WebhookUIStateSerializer() { }, _$WebhookState: function _$WebhookState(t0, t1) { this.map = t0; this.list = t1; this._webhook_state$__hashCode = null; }, WebhookStateBuilder: function WebhookStateBuilder() { this._webhook_state$_list = this._webhook_state$_map = this._webhook_state$_$v = null; }, _$WebhookUIState: function _$WebhookUIState(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.editing = t0; _.listUIState = t1; _.selectedId = t2; _.forceSelected = t3; _.tabIndex = t4; _.saveCompleter = t5; _.cancelCompleter = t6; _._webhook_state$__hashCode = null; }, WebhookUIStateBuilder: function WebhookUIStateBuilder() { var _ = this; _._webhook_state$_cancelCompleter = _._webhook_state$_saveCompleter = _._webhook_state$_tabIndex = _._webhook_state$_forceSelected = _._webhook_state$_selectedId = _._webhook_state$_listUIState = _._webhook_state$_editing = _._webhook_state$_$v = null; }, _WebhookUIState_Object_EntityUIState: function _WebhookUIState_Object_EntityUIState() { }, DocumentGrid: function DocumentGrid(t0, t1, t2, t3, t4) { var _ = this; _.documents = t0; _.onUploadDocument = t1; _.onDeleteDocument = t2; _.onViewExpense = t3; _.key = t4; }, DocumentGrid_build_closure: function DocumentGrid_build_closure(t0) { this.$this = t0; }, DocumentGrid_build_closure0: function DocumentGrid_build_closure0(t0) { this.$this = t0; }, DocumentGrid_build_closure1: function DocumentGrid_build_closure1(t0) { this.$this = t0; }, DocumentGrid_build__closure: function DocumentGrid_build__closure(t0) { this.$this = t0; }, DocumentTile: function DocumentTile(t0, t1, t2, t3) { var _ = this; _.document = t0; _.onDeleteDocument = t1; _.onViewExpense = t2; _.key = t3; }, DocumentTile_build_closure0: function DocumentTile_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.localization = t1; _.state = t2; _.context = t3; }, DocumentTile_build__closure: function DocumentTile_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, DocumentTile_build___closure: function DocumentTile_build___closure(t0, t1) { this.$this = t0; this.context = t1; }, DocumentTile_build_closure: function DocumentTile_build_closure(t0) { this.localization = t0; }, DocumentPreview: function DocumentPreview(t0, t1, t2) { this.document = t0; this.height = t1; this.key = t2; }, DocumentPreview_build_closure0: function DocumentPreview_build_closure0(t0) { this.$this = t0; }, DocumentPreview_build_closure: function DocumentPreview_build_closure() { }, EntityStatusChip: function EntityStatusChip(t0, t1, t2) { this.entity = t0; this.width = t1; this.key = t2; }, CustomSurcharges: function CustomSurcharges(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.surcharge1Controller = t0; _.surcharge2Controller = t1; _.surcharge3Controller = t2; _.surcharge4Controller = t3; _.onSavePressed = t4; _.isAfterTaxes = t5; _.key = t6; }, SaveCancelButtons$: function(isCancelEnabled, isEnabled, isHeader, onCancelPressed, onSavePressed, saveLabel) { return new V.SaveCancelButtons(isEnabled, isCancelEnabled, saveLabel, isHeader, onCancelPressed, onSavePressed, null); }, SaveCancelButtons: function SaveCancelButtons(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.isEnabled = t0; _.isCancelEnabled = t1; _.saveLabel = t2; _.isHeader = t3; _.onCancelPressed = t4; _.onSavePressed = t5; _.key = t6; }, SaveCancelButtons_build_closure: function SaveCancelButtons_build_closure(t0, t1) { this.$this = t0; this.localization = t1; }, SaveCancelButtons_build__closure0: function SaveCancelButtons_build__closure0(t0, t1) { this.$this = t0; this.context = t1; }, SaveCancelButtons_build_closure0: function SaveCancelButtons_build_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, SaveCancelButtons_build__closure: function SaveCancelButtons_build__closure(t0, t1) { this.$this = t0; this.context = t1; }, UserPicker: function UserPicker(t0, t1, t2) { this.userId = t0; this.onChanged = t1; this.key = t2; }, HistoryDrawer: function HistoryDrawer(t0) { this.key = t0; }, HistoryDrawer_build_closure: function HistoryDrawer_build_closure() { }, HistoryDrawer_build__closure: function HistoryDrawer_build__closure(t0) { this.context = t0; }, HistoryDrawer_build_closure0: function HistoryDrawer_build_closure0(t0) { this.store = t0; }, HistoryListTile: function HistoryListTile(t0, t1) { this.history = t0; this.key = t1; }, _HistoryListTileState: function _HistoryListTileState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _HistoryListTileState_build_closure1: function _HistoryListTileState_build_closure1(t0) { this.history = t0; }, _HistoryListTileState_build_closure0: function _HistoryListTileState_build_closure0(t0, t1, t2, t3) { var _ = this; _.state = t0; _.context = t1; _.history = t2; _.store = t3; }, _HistoryListTileState_build_closure: function _HistoryListTileState_build_closure(t0, t1, t2) { this._box_0 = t0; this.state = t1; this.context = t2; }, _HistoryListTileState_build__closure: function _HistoryListTileState_build__closure(t0) { this.context = t0; }, LoadingIndicator: function LoadingIndicator(t0, t1, t2) { this.height = t0; this.useCard = t1; this.key = t2; }, DrawerTile$: function(company, entityType, icon, iconTooltip, onLongPress, onTap, title) { return new V.DrawerTile(company, entityType, icon, title, onTap, onLongPress, iconTooltip, null); }, _showContactUs: function(context) { E.showDialog(true, new V._showContactUs_closure(), context, null, true, type$.legacy_ContactUsDialog); }, _showUpdate: function(context) { E.showDialog(false, new V._showUpdate_closure(), context, null, true, type$.legacy_UpdateDialog); }, _showConnectStripe: function(context) { var _null = null, _s27_ = "unauthorized_stripe_warning", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), _s27_); if (t2 == null) t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s27_); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "view_settings"); if (t1 == null) t1 = ""; O.showMessageDialog(context, t2, H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showConnectStripe_closure(), _null)], type$.JSArray_legacy_TextButton)); }, _showAbout: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), state, t1, appLegalese, apppIcon, t2, t3, t4; var $async$_showAbout = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); appLegalese = "\xa9 " + H.Primitives_getYear(new P.DateTime(Date.now(), false)) + " Invoice Ninja"; apppIcon = U.Image$asset("assets/images/icon.png", 40, 40); t2 = Date.now(); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.company.createdAt; E.showDialog(true, new V._showAbout_closure(t1, apppIcon, appLegalese, state, C.JSInt_methods._tdivFast$1(P.Duration$(0, 0, 0, t2 - P.DateTime$fromMillisecondsSinceEpoch(t4 * 1000, false)._value, 0, 0)._duration, 864e8)), context, null, true, type$.Null); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_showAbout, $async$completer); }, MenuDrawer: function MenuDrawer(t0, t1) { this.viewModel = t0; this.key = t1; }, MenuDrawer_build__companyLogo: function MenuDrawer_build__companyLogo() { }, MenuDrawer_build__companyListItem: function MenuDrawer_build__companyListItem(t0, t1, t2, t3) { var _ = this; _.state = t0; _._companyLogo = t1; _.localization = t2; _.context = t3; }, MenuDrawer_build__companyListItem_closure: function MenuDrawer_build__companyListItem_closure(t0) { this.company = t0; }, MenuDrawer_build_closure: function MenuDrawer_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _._companyListItem = t1; _.state = t2; _.localization = t3; }, MenuDrawer_build__closure0: function MenuDrawer_build__closure0(t0) { this._companyListItem = t0; }, MenuDrawer_build_closure0: function MenuDrawer_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.localization = t3; }, MenuDrawer_build__closure: function MenuDrawer_build__closure(t0) { this.companyId = t0; }, MenuDrawer_build_closure1: function MenuDrawer_build_closure1(t0, t1) { this.state = t0; this._companyListItem = t1; }, MenuDrawer_build_closure2: function MenuDrawer_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.context = t1; _.state = t2; _.localization = t3; }, MenuDrawer_build_closure3: function MenuDrawer_build_closure3() { }, MenuDrawer_build_closure4: function MenuDrawer_build_closure4() { }, MenuDrawer_build_closure6: function MenuDrawer_build_closure6() { }, MenuDrawer_build_closure5: function MenuDrawer_build_closure5(t0) { this.store = t0; }, MenuDrawer_build_closure7: function MenuDrawer_build_closure7() { }, MenuDrawer_build_closure8: function MenuDrawer_build_closure8() { }, DrawerTile: function DrawerTile(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.company = t0; _.entityType = t1; _.icon = t2; _.title = t3; _.onTap = t4; _.onLongPress = t5; _.iconTooltip = t6; _.key = t7; }, _DrawerTileState: function _DrawerTileState(t0) { this._widget = null; this._debugLifecycleState = t0; this._framework$_element = null; }, _DrawerTileState_build_closure: function _DrawerTileState_build_closure(t0, t1, t2, t3) { var _ = this; _.context = t0; _.navigator = t1; _.store = t2; _.uiState = t3; }, _DrawerTileState_build_closure0: function _DrawerTileState_build_closure0(t0, t1, t2) { this.$this = t0; this.context = t1; this.navigator = t2; }, _DrawerTileState_build_closure2: function _DrawerTileState_build_closure2(t0) { this.$this = t0; }, _DrawerTileState_build_closure1: function _DrawerTileState_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, SidebarFooter: function SidebarFooter(t0) { this.key = t0; }, SidebarFooter_build_closure: function SidebarFooter_build_closure(t0, t1, t2) { this.context = t0; this.localization = t1; this.store = t2; }, SidebarFooter_build__closure0: function SidebarFooter_build__closure0() { }, SidebarFooter_build__closure1: function SidebarFooter_build__closure1(t0, t1) { this.store = t0; this.context = t1; }, SidebarFooter_build_closure0: function SidebarFooter_build_closure0(t0) { this.context = t0; }, SidebarFooter_build_closure1: function SidebarFooter_build_closure1(t0) { this.context = t0; }, SidebarFooter_build_closure2: function SidebarFooter_build_closure2(t0) { this.context = t0; }, SidebarFooter_build_closure3: function SidebarFooter_build_closure3(t0, t1) { this.context = t0; this.state = t1; }, SidebarFooter_build_closure4: function SidebarFooter_build_closure4(t0) { this.context = t0; }, SidebarFooter_build_closure5: function SidebarFooter_build_closure5() { }, SidebarFooter_build_closure6: function SidebarFooter_build_closure6(t0) { this.state = t0; }, SidebarFooter_build_closure7: function SidebarFooter_build_closure7(t0) { this.context = t0; }, SidebarFooter_build_closure8: function SidebarFooter_build_closure8(t0, t1) { this.context = t0; this.state = t1; }, SidebarFooter_build__closure: function SidebarFooter_build__closure(t0) { this.state = t0; }, SidebarFooter_build_closure9: function SidebarFooter_build_closure9(t0) { this.store = t0; }, SidebarFooterCollapsed: function SidebarFooterCollapsed(t0) { this.key = t0; }, SidebarFooterCollapsed_build_closure0: function SidebarFooterCollapsed_build_closure0(t0, t1) { this.localization = t0; this.context = t1; }, SidebarFooterCollapsed_build_closure: function SidebarFooterCollapsed_build_closure(t0, t1) { this.isUpdateAvailable = t0; this.localization = t1; }, SidebarFooterCollapsed_build_closure1: function SidebarFooterCollapsed_build_closure1(t0) { this.store = t0; }, _showContactUs_closure: function _showContactUs_closure() { }, _showUpdate_closure: function _showUpdate_closure() { }, _showConnectStripe_closure: function _showConnectStripe_closure() { }, _showAbout_closure: function _showAbout_closure(t0, t1, t2, t3, t4) { var _ = this; _.localization = t0; _.apppIcon = t1; _.appLegalese = t2; _.state = t3; _.daysActive = t4; }, _showAbout__closure: function _showAbout__closure(t0, t1, t2, t3) { var _ = this; _.context = t0; _.apppIcon = t1; _.appLegalese = t2; _.state = t3; }, _showAbout__closure0: function _showAbout__closure0(t0) { this.context = t0; }, _showAbout__closure2: function _showAbout__closure2(t0, t1) { this.state = t0; this.localization = t1; }, _showAbout__closure1: function _showAbout__closure1(t0) { this.context = t0; }, _showAbout__closure3: function _showAbout__closure3(t0, t1) { this.context = t0; this.localization = t1; }, _showAbout___closure0: function _showAbout___closure0(t0) { this.localization = t0; }, _showAbout____closure: function _showAbout____closure(t0, t1) { this.context = t0; this.localization = t1; }, _showAbout_____closure: function _showAbout_____closure(t0) { this.localization = t0; }, _showAbout______closure: function _showAbout______closure(t0) { this.context = t0; }, _showAbout______closure0: function _showAbout______closure0() { }, _showAbout______closure1: function _showAbout______closure1() { }, _showAbout______closure2: function _showAbout______closure2() { }, _showAbout____closure0: function _showAbout____closure0(t0) { this.context = t0; }, _showAbout____closure1: function _showAbout____closure1() { }, _showAbout____closure2: function _showAbout____closure2() { }, _showAbout____closure3: function _showAbout____closure3() { }, _showAbout____closure4: function _showAbout____closure4() { }, _showAbout____closure5: function _showAbout____closure5() { }, _showAbout____closure6: function _showAbout____closure6() { }, _showAbout__closure4: function _showAbout__closure4(t0) { this.context = t0; }, _showAbout___closure: function _showAbout___closure() { }, _showAbout__closure5: function _showAbout__closure5(t0) { this.context = t0; }, _showAbout__closure6: function _showAbout__closure6(t0) { this.context = t0; }, _showAbout__closure7: function _showAbout__closure7() { }, _showAbout__closure8: function _showAbout__closure8() { }, _showAbout__closure9: function _showAbout__closure9() { }, ContactUsDialog: function ContactUsDialog(t0) { this.key = t0; }, _ContactUsDialogState: function _ContactUsDialogState(t0) { var _ = this; _._menu_drawer$_message = ""; _._menu_drawer$_isSaving = _._includeLogs = false; _._widget = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ContactUsDialogState__sendMessage_closure: function _ContactUsDialogState__sendMessage_closure(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage_closure0: function _ContactUsDialogState__sendMessage_closure0(t0, t1) { this.$this = t0; this.localization = t1; }, _ContactUsDialogState__sendMessage__closure0: function _ContactUsDialogState__sendMessage__closure0(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage__closure1: function _ContactUsDialogState__sendMessage__closure1(t0) { this.localization = t0; }, _ContactUsDialogState__sendMessage_closure1: function _ContactUsDialogState__sendMessage_closure1(t0) { this.$this = t0; }, _ContactUsDialogState__sendMessage__closure: function _ContactUsDialogState__sendMessage__closure(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure: function _ContactUsDialogState_build_closure(t0) { this.context = t0; }, _ContactUsDialogState_build_closure0: function _ContactUsDialogState_build_closure0(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure1: function _ContactUsDialogState_build_closure1(t0) { this.$this = t0; }, _ContactUsDialogState_build_closure2: function _ContactUsDialogState_build_closure2(t0) { this.$this = t0; }, _ContactUsDialogState_build__closure: function _ContactUsDialogState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, SystemLogViewer: function SystemLogViewer(t0, t1) { this.systemLogs = t0; this.key = t1; }, _SystemLogViewerState: function _SystemLogViewerState(t0, t1) { var _ = this; _._isExpanded = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _SystemLogViewerState_build_closure: function _SystemLogViewerState_build_closure() { }, _SystemLogViewerState_build_closure2: function _SystemLogViewerState_build_closure2(t0, t1) { this._box_0 = t0; this.$this = t1; }, _SystemLogViewerState_build__closure: function _SystemLogViewerState_build__closure(t0, t1, t2, t3) { var _ = this; _._box_0 = t0; _.$this = t1; _.index = t2; _.isExpanded = t3; }, _SystemLogViewerState_build_closure0: function _SystemLogViewerState_build_closure0() { }, _SystemLogViewerState_build_closure1: function _SystemLogViewerState_build_closure1(t0, t1, t2) { this.$this = t0; this.state = t1; this.localization = t2; }, _SystemLogViewerState_build__closure0: function _SystemLogViewerState_build__closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.systemLog = t1; _.localization = t2; _.client = t3; }, _SystemLogViewerState_build___closure: function _SystemLogViewerState_build___closure(t0, t1) { this.$this = t0; this.systemLog = t1; }, _SystemLogViewerState_build____closure: function _SystemLogViewerState_build____closure(t0, t1) { this.$this = t0; this.systemLog = t1; }, ClientListItem: function ClientListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.client = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ClientListItem_build_closure: function ClientListItem_build_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.showCheckbox = t1; _.listUIState = t2; _.state = t3; _.textStyle = t4; _.filterMatch = t5; }, ClientListItem_build__closure2: function ClientListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ClientListItem_build__closure1: function ClientListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, ClientListItem_build__closure: function ClientListItem_build__closure(t0) { this.$this = t0; }, ClientListItem_build__closure0: function ClientListItem_build__closure0(t0) { this.$this = t0; }, ClientListItem_build__closure5: function ClientListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, ClientListItem_build__closure4: function ClientListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, ClientListItem_build__closure3: function ClientListItem_build__closure3(t0) { this.$this = t0; }, ClientPdfScreen: function ClientPdfScreen(t0) { this.key = t0; }, ClientPdfScreen_build_closure0: function ClientPdfScreen_build_closure0() { }, ClientPdfScreen_build_closure: function ClientPdfScreen_build_closure(t0) { this.$this = t0; }, ClientPdfVM: function ClientPdfVM(t0, t1) { this.state = t0; this.client = t1; }, ClientPresenter: function ClientPresenter() { this.context = this.entity = null; }, CompanyGatewayEdit: function CompanyGatewayEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _CompanyGatewayEditState: function _CompanyGatewayEditState(t0, t1, t2) { var _ = this; _._company_gateway_edit$_focusNode = t0; _._company_gateway_edit$_controller = null; _._company_gateway_edit$_gatewayTypeId = "1"; _.SingleTickerProviderStateMixin__ticker = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _CompanyGatewayEditState_didChangeDependencies_closure: function _CompanyGatewayEditState_didChangeDependencies_closure(t0) { this.companyGateway = t0; }, _CompanyGatewayEditState_build_closure: function _CompanyGatewayEditState_build_closure(t0) { this.companyGateway = t0; }, _CompanyGatewayEditState_build_closure0: function _CompanyGatewayEditState_build_closure0(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure12: function _CompanyGatewayEditState_build__closure12(t0) { this._box_0 = t0; }, _CompanyGatewayEditState_build_closure1: function _CompanyGatewayEditState_build_closure1(t0, t1, t2) { this.viewModel = t0; this.context = t1; this.companyGateway = t2; }, _CompanyGatewayEditState_build_closure2: function _CompanyGatewayEditState_build_closure2() { }, _CompanyGatewayEditState_build_closure3: function _CompanyGatewayEditState_build_closure3(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure11: function _CompanyGatewayEditState_build__closure11(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure4: function _CompanyGatewayEditState_build_closure4(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure10: function _CompanyGatewayEditState_build__closure10(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure5: function _CompanyGatewayEditState_build_closure5(t0) { this.localization = t0; }, _CompanyGatewayEditState_build_closure6: function _CompanyGatewayEditState_build_closure6(t0, t1, t2) { this.companyGateway = t0; this.gatewayTypeId = t1; this.viewModel = t2; }, _CompanyGatewayEditState_build__closure9: function _CompanyGatewayEditState_build__closure9(t0, t1, t2) { this.gatewayTypeId = t0; this.settings = t1; this.value = t2; }, _CompanyGatewayEditState_build___closure: function _CompanyGatewayEditState_build___closure(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure7: function _CompanyGatewayEditState_build_closure7(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure8: function _CompanyGatewayEditState_build__closure8(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure8: function _CompanyGatewayEditState_build_closure8(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure7: function _CompanyGatewayEditState_build__closure7(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure9: function _CompanyGatewayEditState_build_closure9(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure6: function _CompanyGatewayEditState_build__closure6(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure10: function _CompanyGatewayEditState_build_closure10(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure5: function _CompanyGatewayEditState_build__closure5(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure11: function _CompanyGatewayEditState_build_closure11(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure4: function _CompanyGatewayEditState_build__closure4(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure12: function _CompanyGatewayEditState_build_closure12(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure3: function _CompanyGatewayEditState_build__closure3(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure13: function _CompanyGatewayEditState_build_closure13(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure2: function _CompanyGatewayEditState_build__closure2(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure14: function _CompanyGatewayEditState_build_closure14(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure1: function _CompanyGatewayEditState_build__closure1(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure15: function _CompanyGatewayEditState_build_closure15(t0, t1) { this.viewModel = t0; this.companyGateway = t1; }, _CompanyGatewayEditState_build__closure0: function _CompanyGatewayEditState_build__closure0(t0) { this.value = t0; }, _CompanyGatewayEditState_build_closure17: function _CompanyGatewayEditState_build_closure17(t0) { this.localization = t0; }, _CompanyGatewayEditState_build_closure16: function _CompanyGatewayEditState_build_closure16(t0) { this.$this = t0; }, _CompanyGatewayEditState_build__closure: function _CompanyGatewayEditState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, CardListTile: function CardListTile(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.paymentType = t1; _.cardType = t2; _.key = t3; }, CardListTile_build_closure: function CardListTile_build_closure(t0, t1) { this.$this = t0; this.companyGateway = t1; }, GatewayConfigSettings: function GatewayConfigSettings(t0, t1, t2) { this.companyGateway = t0; this.viewModel = t1; this.key = t2; }, GatewayConfigSettings_build_closure: function GatewayConfigSettings_build_closure(t0) { this.gateway = t0; }, GatewayConfigSettings_build_closure0: function GatewayConfigSettings_build_closure0(t0, t1) { this.$this = t0; this.gateway = t1; }, GatewayConfigSettings_build__closure: function GatewayConfigSettings_build__closure(t0, t1) { this.$this = t0; this.field = t1; }, GatewayConfigField: function GatewayConfigField(t0, t1, t2, t3, t4, t5) { var _ = this; _.gateway = t0; _.field = t1; _.value = t2; _.defaultValue = t3; _.onChanged = t4; _.key = t5; }, _GatewayConfigFieldState: function _GatewayConfigFieldState(t0, t1) { var _ = this; _._company_gateway_edit$_textController = null; _._company_gateway_edit$_debouncer = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _GatewayConfigFieldState__onChanged_closure: function _GatewayConfigFieldState__onChanged_closure(t0) { this.$this = t0; }, _GatewayConfigFieldState__obscureText_closure: function _GatewayConfigFieldState__obscureText_closure(t0, t1) { this._box_0 = t0; this.field = t1; }, _GatewayConfigFieldState_build_closure: function _GatewayConfigFieldState_build_closure(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure0: function _GatewayConfigFieldState_build_closure0() { }, _GatewayConfigFieldState_build_closure1: function _GatewayConfigFieldState_build_closure1(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure2: function _GatewayConfigFieldState_build_closure2(t0) { this.$this = t0; }, _GatewayConfigFieldState_build_closure3: function _GatewayConfigFieldState_build_closure3(t0) { this.$this = t0; }, LimitEditor: function LimitEditor(t0, t1, t2, t3) { var _ = this; _.companyGateway = t0; _.viewModel = t1; _.gatewayTypeId = t2; _.key = t3; }, _LimitEditorState: function _LimitEditorState(t0, t1) { var _ = this; _._company_gateway_edit$_debouncer = t0; _._enableMax = _._enableMin = false; _._widget = _._maxController = _._minController = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _LimitEditorState__onChanged_closure: function _LimitEditorState__onChanged_closure(t0) { this.$this = t0; }, _LimitEditorState__onChanged_closure0: function _LimitEditorState__onChanged_closure0(t0, t1) { this.$this = t0; this.updatedSettings = t1; }, _LimitEditorState__onTextChange_closure: function _LimitEditorState__onTextChange_closure(t0) { this.$this = t0; }, _LimitEditorState_build_closure: function _LimitEditorState_build_closure(t0) { this.$this = t0; }, _LimitEditorState_build__closure0: function _LimitEditorState_build__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _LimitEditorState_build_closure0: function _LimitEditorState_build_closure0(t0) { this.$this = t0; }, _LimitEditorState_build__closure: function _LimitEditorState_build__closure(t0, t1) { this.$this = t0; this.value = t1; }, FeesEditor: function FeesEditor(t0, t1, t2, t3) { var _ = this; _.companyGateway = t0; _.viewModel = t1; _.gatewayTypeId = t2; _.key = t3; }, _FeesEditorState: function _FeesEditorState(t0, t1, t2, t3, t4) { var _ = this; _._amountController = t0; _._percentController = t1; _._capController = t2; _._company_gateway_edit$_controllers = null; _._company_gateway_edit$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _FeesEditorState_dispose_closure: function _FeesEditorState_dispose_closure(t0) { this.$this = t0; }, _FeesEditorState_didChangeDependencies_closure: function _FeesEditorState_didChangeDependencies_closure(t0) { this.$this = t0; }, _FeesEditorState_didChangeDependencies_closure0: function _FeesEditorState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _FeesEditorState__onChanged_closure: function _FeesEditorState__onChanged_closure(t0, t1, t2) { this.amount = t0; this.percent = t1; this.cap = t2; }, _FeesEditorState__onChanged_closure0: function _FeesEditorState__onChanged_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.updatedSettings = t3; }, _FeesEditorState__onChanged__closure: function _FeesEditorState__onChanged__closure(t0, t1) { this.$this = t0; this.updatedSettings = t1; }, _FeesEditorState_build_closure: function _FeesEditorState_build_closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure2: function _FeesEditorState_build__closure2(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure2: function _FeesEditorState_build___closure2(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure0: function _FeesEditorState_build_closure0(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure1: function _FeesEditorState_build__closure1(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure1: function _FeesEditorState_build___closure1(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure1: function _FeesEditorState_build_closure1(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure0: function _FeesEditorState_build__closure0(t0, t1, t2) { this.$this = t0; this.settings = t1; this.taxRate = t2; }, _FeesEditorState_build___closure0: function _FeesEditorState_build___closure0(t0) { this.taxRate = t0; }, _FeesEditorState_build_closure2: function _FeesEditorState_build_closure2(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.viewModel = t1; _.companyGateway = t2; _.settings = t3; }, _FeesEditorState_build__closure: function _FeesEditorState_build__closure(t0, t1, t2) { this.$this = t0; this.settings = t1; this.value = t2; }, _FeesEditorState_build___closure: function _FeesEditorState_build___closure(t0) { this.value = t0; }, __CompanyGatewayEditState_State_SingleTickerProviderStateMixin: function __CompanyGatewayEditState_State_SingleTickerProviderStateMixin() { }, ExpenseListItem$: function(expense, filter, isChecked, isDismissible, onCheckboxChanged, onTap, showCheckbox) { return new V.ExpenseListItem(onCheckboxChanged, onTap, expense, filter, showCheckbox, isDismissible, isChecked, null); }, ExpenseListItem: function ExpenseListItem(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onCheckboxChanged = t0; _.onTap = t1; _.expense = t2; _.filter = t3; _.showCheckbox = t4; _.isDismissible = t5; _.isChecked = t6; _.key = t7; }, ExpenseListItem_build_closure: function ExpenseListItem_build_closure(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _._box_0 = t0; _.$this = t1; _.showCheckbox = t2; _.listUIState = t3; _.isChecked = t4; _.state = t5; _.textStyle = t6; _.filterMatch = t7; _.textColor = t8; }, ExpenseListItem_build__closure2: function ExpenseListItem_build__closure2(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseListItem_build__closure1: function ExpenseListItem_build__closure1(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseListItem_build__closure: function ExpenseListItem_build__closure(t0) { this.$this = t0; }, ExpenseListItem_build__closure0: function ExpenseListItem_build__closure0(t0) { this.$this = t0; }, ExpenseListItem_build__closure5: function ExpenseListItem_build__closure5(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseListItem_build__closure4: function ExpenseListItem_build__closure4(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseListItem_build__closure3: function ExpenseListItem_build__closure3(t0) { this.$this = t0; }, QuoteEditNotesVM_QuoteEditNotesVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, quote = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new V.QuoteEditNotesVM(state, J.$index$asx(t2._list, t1).userCompany.company, quote, new V.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure(store)); }, QuoteEditNotesScreen: function QuoteEditNotesScreen(t0) { this.key = t0; }, QuoteEditNotesScreen_build_closure0: function QuoteEditNotesScreen_build_closure0() { }, QuoteEditNotesScreen_build_closure: function QuoteEditNotesScreen_build_closure() { }, QuoteEditNotesVM: function QuoteEditNotesVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; }, QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure: function QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure(t0) { this.store = t0; }, QuotePdfScreen: function QuotePdfScreen(t0, t1) { this.showAppBar = t0; this.key = t1; }, QuotePdfScreen_build_closure0: function QuotePdfScreen_build_closure0() { }, QuotePdfScreen_build_closure: function QuotePdfScreen_build_closure(t0) { this.$this = t0; }, QuotePdfVM: function QuotePdfVM(t0, t1, t2) { this.state = t0; this.invoice = t1; this.activityId = t2; }, RecurringInvoiceScreen: function RecurringInvoiceScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringInvoiceScreen_build_closure15: function RecurringInvoiceScreen_build_closure15(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure13: function RecurringInvoiceScreen_build_closure13(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure14: function RecurringInvoiceScreen_build_closure14(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure9: function RecurringInvoiceScreen_build_closure9(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure11: function RecurringInvoiceScreen_build_closure11(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure10: function RecurringInvoiceScreen_build_closure10(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure4: function RecurringInvoiceScreen_build_closure4(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure: function RecurringInvoiceScreen_build_closure(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure0: function RecurringInvoiceScreen_build_closure0(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure1: function RecurringInvoiceScreen_build_closure1(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure2: function RecurringInvoiceScreen_build_closure2(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure3: function RecurringInvoiceScreen_build_closure3(t0) { this.localization = t0; }, RecurringInvoiceScreen_build_closure5: function RecurringInvoiceScreen_build_closure5(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure6: function RecurringInvoiceScreen_build_closure6(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure7: function RecurringInvoiceScreen_build_closure7(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure8: function RecurringInvoiceScreen_build_closure8(t0) { this.store = t0; }, RecurringInvoiceScreen_build_closure12: function RecurringInvoiceScreen_build_closure12(t0) { this.context = t0; }, BuyNowButtons: function BuyNowButtons(t0) { this.key = t0; }, _BuyNowButtonsState: function _BuyNowButtonsState(t0, t1, t2) { var _ = this; _._buy_now_buttons$_firstNameController = t0; _._buy_now_buttons$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _BuyNowButtonsState_dispose_closure: function _BuyNowButtonsState_dispose_closure(t0) { this.$this = t0; }, _BuyNowButtonsState_didChangeDependencies_closure: function _BuyNowButtonsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _BuyNowButtonsState_didChangeDependencies_closure0: function _BuyNowButtonsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _BuyNowButtonsState_build_closure0: function _BuyNowButtonsState_build_closure0() { }, _BuyNowButtonsState_build_closure: function _BuyNowButtonsState_build_closure(t0) { this.localization = t0; }, DataVisualizations: function DataVisualizations(t0) { this.key = t0; }, _DataVisualizationsState: function _DataVisualizationsState(t0, t1, t2) { var _ = this; _._data_visualizations$_firstNameController = t0; _._data_visualizations$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DataVisualizationsState_dispose_closure: function _DataVisualizationsState_dispose_closure(t0) { this.$this = t0; }, _DataVisualizationsState_didChangeDependencies_closure: function _DataVisualizationsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _DataVisualizationsState_didChangeDependencies_closure0: function _DataVisualizationsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, OnlinePayments: function OnlinePayments(t0, t1) { this.viewModel = t0; this.key = t1; }, _OnlinePaymentsState: function _OnlinePaymentsState(t0, t1, t2) { var _ = this; _._online_payments$_focusNode = null; _._minimumAmountController = t0; _._online_payments$_controllers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _OnlinePaymentsState_didChangeDependencies_closure: function _OnlinePaymentsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _OnlinePaymentsState_didChangeDependencies_closure0: function _OnlinePaymentsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _OnlinePaymentsState__onChanged_closure: function _OnlinePaymentsState__onChanged_closure(t0) { this.$this = t0; }, _OnlinePaymentsState_build_closure0: function _OnlinePaymentsState_build_closure0(t0, t1) { this.viewModel = t0; this.settings = t1; }, _OnlinePaymentsState_build__closure1: function _OnlinePaymentsState_build__closure1(t0) { this.value = t0; }, _OnlinePaymentsState_build_closure1: function _OnlinePaymentsState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _OnlinePaymentsState_build__closure0: function _OnlinePaymentsState_build__closure0(t0) { this.value = t0; }, _OnlinePaymentsState_build_closure: function _OnlinePaymentsState_build_closure(t0, t1) { this.viewModel = t0; this.settings = t1; }, _OnlinePaymentsState_build__closure2: function _OnlinePaymentsState_build__closure2(t0) { this.value = t0; }, _OnlinePaymentsState_build_closure2: function _OnlinePaymentsState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _OnlinePaymentsState_build__closure: function _OnlinePaymentsState_build__closure(t0) { this.value = t0; }, _OnlinePaymentsState_build_closure3: function _OnlinePaymentsState_build_closure3(t0, t1) { this.viewModel = t0; this.context = t1; }, AndroidAuthMessages: function AndroidAuthMessages() { }, IOSAuthMessages: function IOSAuthMessages() { }, PdfPageImage__render: function(backgroundColor, crop, format, height, pageId, pageNumber, width) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_PdfPageImage), $async$returnValue, t2, obj, t1; var $async$PdfPageImage__render = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = format._enum$_value; if (2 === t1) t2 = $.$get$Platform_isIOS() || $.$get$Platform_isWindows(); else t2 = false; if (t2) throw H.wrapException(new V.PdfNotSupportException("PDF Renderer on IOS & Windows platforms do not support WEBP format")); $async$goto = 3; return P._asyncAwait(C.MethodChannel_EKW._invokeMethod$1$3$arguments$missingOk("render", P.LinkedHashMap_LinkedHashMap$_literal(["pageId", pageId, "width", width, "height", height, "format", t1, "backgroundColor", backgroundColor, "crop", false, "crop_x", null, "crop_y", null, "crop_height", null, "crop_width", null], type$.String, type$.nullable_Object), false, type$.dynamic), $async$PdfPageImage__render); case 3: // returning from await. obj = $async$result; if (!type$.Map_dynamic_dynamic._is(obj)) { $async$returnValue = null; // goto return $async$goto = 1; break; } t1 = J.getInterceptor$asx(obj); $async$returnValue = new V.PdfPageImage(pageId, pageNumber, H._asIntQ(t1.$index(obj, "width")), H._asIntQ(t1.$index(obj, "height")), new Uint8Array(H._ensureNativeList(t1.$index(obj, "data")))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$PdfPageImage__render, $async$completer); }, PdfPageFormat: function PdfPageFormat(t0) { this._enum$_value = t0; }, PdfPage: function PdfPage(t0, t1, t2, t3, t4, t5) { var _ = this; _._page$_lock = t0; _.document = t1; _.id = t2; _.pageNumber = t3; _.width = t4; _.height = t5; _.isClosed = false; }, PdfPage_render_closure: function PdfPage_render_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.$this = t0; _.width = t1; _.height = t2; _.format = t3; _.backgroundColor = t4; _.cropRect = t5; }, PdfPage_close_closure: function PdfPage_close_closure(t0) { this.$this = t0; }, PdfPageAlreadyClosedException: function PdfPageAlreadyClosedException() { }, PdfPageImage: function PdfPageImage(t0, t1, t2, t3, t4) { var _ = this; _.id = t0; _.pageNumber = t1; _.width = t2; _.height = t3; _.bytes = t4; }, PdfNotSupportException: function PdfNotSupportException(t0) { this.message = t0; }, Page: function Page(t0, t1, t2, t3) { var _ = this; _.id = t0; _.documentId = t1; _.page = t2; _._viewport = t3; }, Page_render_closure: function Page_render_closure(t0, t1, t2) { this.data = t0; this.reader = t1; this.completer = t2; }, Data: function Data(t0, t1, t2) { this.width = t0; this.height = t1; this.data = t2; }, PdfPageImageProvider: function PdfPageImageProvider(t0, t1, t2) { this.pdfPageImage = t0; this.pageNumber = t1; this.documentId = t2; }, PdfPageImageProvider_load_closure: function PdfPageImageProvider_load_closure(t0) { this.$this = t0; }, QrByte: function QrByte(t0) { this._byte$_data = t0; }, InputTooLongException: function InputTooLongException(t0) { this.message = t0; }, SharedPreferences__store: function() { if ($.SharedPreferences__manualDartRegistrationNeeded) $.SharedPreferences__manualDartRegistrationNeeded = false; return $.$get$SharedPreferencesStorePlatform__instance(); }, SharedPreferences_getInstance: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.SharedPreferences), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], completer, preferencesMap, e, sharedPrefsFuture, exception, t1, $async$exception; var $async$SharedPreferences_getInstance = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $.SharedPreferences__completer; $async$goto = t1 == null ? 3 : 4; break; case 3: // then completer = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_SharedPreferences), type$._AsyncCompleter_SharedPreferences); $async$handler = 6; $async$goto = 9; return P._asyncAwait(V.SharedPreferences__getSharedPreferencesMap(), $async$SharedPreferences_getInstance); case 9: // returning from await. preferencesMap = $async$result; J.complete$1$z(completer, new V.SharedPreferences(preferencesMap)); $async$handler = 2; // goto after finally $async$goto = 8; break; case 6: // catch $async$handler = 5; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (type$.Exception._is(t1)) { e = t1; completer.completeError$1(e); sharedPrefsFuture = completer.future; $.SharedPreferences__completer = null; $async$returnValue = sharedPrefsFuture; // goto return $async$goto = 1; break; } else throw $async$exception; // goto after finally $async$goto = 8; break; case 5: // uncaught // goto rethrow $async$goto = 2; break; case 8: // after finally t1 = $.SharedPreferences__completer = completer; case 4: // join $async$returnValue = t1.future; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$SharedPreferences_getInstance, $async$completer); }, SharedPreferences__getSharedPreferencesMap: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, t2, t3, t4, fromSystem, preferencesMap; var $async$SharedPreferences__getSharedPreferencesMap = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences__store().getAll$0(0), $async$SharedPreferences__getSharedPreferencesMap); case 3: // returning from await. fromSystem = $async$result; preferencesMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Object); for (t1 = J.getInterceptor$x(fromSystem), t2 = J.get$iterator$ax(t1.get$keys(fromSystem)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = J.substring$1$s(t3, 8); t3 = t1.$index(fromSystem, t3); t3.toString; preferencesMap.$indexSet(0, t4, t3); } $async$returnValue = preferencesMap; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$SharedPreferences__getSharedPreferencesMap, $async$completer); }, SharedPreferences: function SharedPreferences(t0) { this._preferenceCache = t0; }, SharedPreferencesPlugin: function SharedPreferencesPlugin() { }, SharedPreferencesPlugin__storedFlutterKeys_closure: function SharedPreferencesPlugin__storedFlutterKeys_closure() { }, SourceLocation$: function(offset, column, line, sourceUrl) { var t1 = line == null, t2 = t1 ? 0 : line; if (offset < 0) H.throwExpression(P.RangeError$("Offset may not be negative, was " + offset + ".")); else if (!t1 && line < 0) H.throwExpression(P.RangeError$("Line may not be negative, was " + H.S(line) + ".")); else if (column < 0) H.throwExpression(P.RangeError$("Column may not be negative, was " + column + ".")); return new V.SourceLocation(sourceUrl, offset, t2, column); }, SourceLocation: function SourceLocation(t0, t1, t2, t3) { var _ = this; _.sourceUrl = t0; _.offset = t1; _.line = t2; _.column = t3; }, SourceSpanBase: function SourceSpanBase() { }, addMonths: function(dateTime, offset) { var newYear, newMonth, result, t1, newDay, r = C.JSInt_methods.$mod(offset, 12), q = C.JSInt_methods._tdivFast$1(offset - r, 12); dateTime.toString; newYear = H.Primitives_getYear(dateTime) + q; newMonth = H.Primitives_getMonth(dateTime) + r; if (newMonth > 12) { ++newYear; newMonth -= 12; } result = C.List_mC8[newMonth]; if (newMonth === 2) if (C.JSInt_methods.$mod(newYear, 400) !== 0) t1 = C.JSInt_methods.$mod(newYear, 4) === 0 && C.JSInt_methods.$mod(newYear, 100) !== 0; else t1 = true; else t1 = false; if (t1) ++result; newDay = Math.min(H.Primitives_getDay(dateTime), result); if (dateTime.isUtc) { t1 = H.Primitives_valueFromDecomposedDate(newYear, newMonth, newDay, H.Primitives_getHours(dateTime), H.Primitives_getMinutes(dateTime), H.Primitives_getSeconds(dateTime), H.Primitives_getMilliseconds(dateTime), true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, true); } else { t1 = H.Primitives_valueFromDecomposedDate(newYear, newMonth, newDay, H.Primitives_getHours(dateTime), H.Primitives_getMinutes(dateTime), H.Primitives_getSeconds(dateTime), H.Primitives_getMilliseconds(dateTime), false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, false); } }, calculateStartDate: function(company, customEndDate, customStartDate, dateRange, offset) { var firstDayOfMonth, firstMonthOfYear, firstDayOfYear, startDate, today = new P.DateTime(Date.now(), false), t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(today), H.Primitives_getMonth(today), 1, 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); firstDayOfMonth = new P.DateTime(t1, true); firstMonthOfYear = H.Primitives_parseInt(company.firstMonthOfYear, null); if (firstMonthOfYear == null) firstMonthOfYear = 1; t1 = firstMonthOfYear > H.Primitives_getMonth(today) ? 1 : 0; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(today) - t1, firstMonthOfYear, 1, 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); firstDayOfYear = new P.DateTime(t1, true); switch (dateRange) { case C.DateRange_last7Days: return Y.convertDateTimeToSqlDate(today.subtract$1(P.Duration$(7 * (1 + offset), 0, 0, 0, 0, 0))); case C.DateRange_last30Days: return Y.convertDateTimeToSqlDate(today.subtract$1(P.Duration$(30 * (1 + offset), 0, 0, 0, 0, 0))); case C.DateRange_thisMonth: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, offset * -1)); case C.DateRange_lastMonth: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, (1 + offset) * -1)); case C.DateRange_thisQuarter: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, offset * -3 + C.JSInt_methods.$mod(H.Primitives_getMonth(today) - 1, 3) * -1)); case C.DateRange_lastQuarter: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, (offset + 1) * -3 + C.JSInt_methods.$mod(H.Primitives_getMonth(today) - 1, 3) * -1)); case C.DateRange_thisYear: t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDayOfYear) + offset * -1, H.Primitives_getMonth(firstDayOfYear), H.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return Y.convertDateTimeToSqlDate(new P.DateTime(t1, true)); case C.DateRange_lastYear: t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDayOfYear) + (1 + offset) * -1, H.Primitives_getMonth(firstDayOfYear), H.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return Y.convertDateTimeToSqlDate(new P.DateTime(t1, true)); default: startDate = customStartDate.length === 0 ? new P.DateTime(Date.now(), false) : P.DateTime_parse(customStartDate); return Y.convertDateTimeToSqlDate(startDate.subtract$1(P.Duration$(C.JSInt_methods._tdivFast$1(P.Duration$(0, 0, 0, (customEndDate.length === 0 ? new P.DateTime(Date.now(), false) : P.DateTime_parse(customEndDate))._value - startDate._value, 0, 0)._duration, 864e8) * offset, 0, 0, 0, 0, 0))); } }, calculateEndDate: function(company, customEndDate, customStartDate, dateRange, offset) { var firstDayOfMonth, firstMonthOfYear, firstDayOfYear, startDate, endDate, today = new P.DateTime(Date.now(), false), t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(today), H.Primitives_getMonth(today), 1, 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); firstDayOfMonth = new P.DateTime(t1, true); firstMonthOfYear = H.Primitives_parseInt(company.firstMonthOfYear, null); if (firstMonthOfYear == null) firstMonthOfYear = 1; t1 = firstMonthOfYear > H.Primitives_getMonth(today) ? 1 : 0; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(today) - t1, firstMonthOfYear, 1, 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); firstDayOfYear = new P.DateTime(t1, true); switch (dateRange) { case C.DateRange_last7Days: return Y.convertDateTimeToSqlDate(today.subtract$1(P.Duration$(7 * offset, 0, 0, 0, 0, 0))); case C.DateRange_last30Days: return Y.convertDateTimeToSqlDate(today.subtract$1(P.Duration$(30 * offset, 0, 0, 0, 0, 0))); case C.DateRange_thisMonth: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, (offset - 1) * -1).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); case C.DateRange_lastMonth: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, offset * -1).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); case C.DateRange_thisQuarter: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, offset * -3 + C.JSInt_methods.$mod(H.Primitives_getMonth(today) - 1, 3) * -1 + 3).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); case C.DateRange_lastQuarter: return Y.convertDateTimeToSqlDate(V.addMonths(firstDayOfMonth, (offset + 1) * -3 + C.JSInt_methods.$mod(H.Primitives_getMonth(today) - 1, 3) * -1 + 3).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); case C.DateRange_thisYear: t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDayOfYear) + (offset - 1) * -1, H.Primitives_getMonth(firstDayOfYear), H.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return Y.convertDateTimeToSqlDate(new P.DateTime(t1, true).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); case C.DateRange_lastYear: t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(firstDayOfYear) + offset * -1, H.Primitives_getMonth(firstDayOfYear), H.Primitives_getDay(firstDayOfYear), 0, 0, 0, 0, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return Y.convertDateTimeToSqlDate(new P.DateTime(t1, true).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))); default: startDate = customStartDate.length === 0 ? new P.DateTime(Date.now(), false) : P.DateTime_parse(customStartDate); endDate = customEndDate.length === 0 ? new P.DateTime(Date.now(), false) : P.DateTime_parse(customEndDate); return Y.convertDateTimeToSqlDate(endDate.subtract$1(P.Duration$(C.JSInt_methods._tdivFast$1(P.Duration$(0, 0, 0, endDate._value - startDate._value, 0, 0)._duration, 864e8) * offset, 0, 0, 0, 0, 0))); } } }, F = { DateTimeAxis$: function(dateTimeFactory) { var map, _null = null, t1 = new B.DateTimeScale(dateTimeFactory, K.LinearScale$()), t2 = A.DateFormat$("mm", _null), t3 = A.DateFormat$("h mm", _null), t4 = new B.HourTickFormatter(A.DateFormat$("h", _null), A.DateFormat$("MMM d ha", _null), C.CalendarField_2), t5 = A.DateFormat$("ha", _null); t4.__HourTickFormatter__noonFormat = t5; map = P.LinkedHashMap_LinkedHashMap$_literal([60000, new R.TimeTickFormatterImpl(t2, t3, C.CalendarField_3), 3600000, t4, 82800000, new R.TimeTickFormatterImpl(A.DateFormat$("d", _null), A.DateFormat$("MMM d", _null), C.CalendarField_1), 2419200000, new R.TimeTickFormatterImpl(A.DateFormat$("MMM", _null), A.DateFormat$("MMM yyyy", _null), C.CalendarField_0), 314496e5, new R.TimeTickFormatterImpl(A.DateFormat$("yyyy", _null), A.DateFormat$("yyyy", _null), C.CalendarField_0)], type$.int, type$.TimeTickFormatter); t2 = new F.DateTimeTickFormatter(map); t2.DateTimeTickFormatter$_internal$1(map); t3 = new O.AutoAdjustingDateTimeTickProvider(H.setRuntimeTypeInfo([new L.TimeRangeTickProviderImpl(new N.YearTimeStepper(C.List_2Vk0, dateTimeFactory)), new L.TimeRangeTickProviderImpl(new V.MonthTimeStepper(C.List_ww8, dateTimeFactory)), new L.TimeRangeTickProviderImpl(new Q.DayTimeStepper(C.List_yTu, dateTimeFactory)), new L.TimeRangeTickProviderImpl(new F.HourTimeStepper(C.List_E7y, dateTimeFactory)), new L.TimeRangeTickProviderImpl(new B.MinuteTimeStepper(C.List_yTu0, dateTimeFactory))], type$.JSArray_TimeRangeTickProvider)); return new F.DateTimeAxis(t1, t1, t3, t3, t2, t2, P.LinkedHashMap_LinkedHashMap$_empty(type$.DateTime, type$.String), H.setRuntimeTypeInfo([], type$.JSArray_AxisTicks_DateTime)); }, DateTimeAxis: function DateTimeAxis(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _._defaultScale = t0; _.scale = t1; _._previousScale = null; _._defaultTickProvider = t2; _.tickProvider = t3; _._defaultTickFormatter = t4; _._tickFormatter = t5; _._formatterValueCache = t6; _.context = _.axisOrientation = _.tickDrawStrategy = null; _.reverseOutputRange = false; _.autoViewport = true; _._providedTicks = _.forceDrawAxisLine = null; _._axisTicks = t7; _._axis$_drawAreaBounds = _._componentBounds = null; _.layoutPaintOrder = 0; _.hasTickCollision = false; _.graphicsFactory = null; }, DateTimeExtents: function DateTimeExtents(t0, t1) { this.start = t0; this.end = t1; }, DateTimeTickFormatter__checkPositiveAndSorted: function(values) { var prev, isSorted, valuesIterator = values.get$iterator(values); valuesIterator.moveNext$0(); prev = valuesIterator.get$current(valuesIterator); if (prev <= 0) throw H.wrapException(P.ArgumentError$("Formatter keys must be positive")); isSorted = true; while (true) { if (!(valuesIterator.moveNext$0() && isSorted)) break; isSorted = prev < valuesIterator.get$current(valuesIterator); prev = valuesIterator.get$current(valuesIterator); } if (!isSorted) throw H.wrapException(P.ArgumentError$("Formatters must be sorted with keys in increasing order")); }, DateTimeTickFormatter: function DateTimeTickFormatter(t0) { this._timeFormatters = t0; }, HourTimeStepper: function HourTimeStepper(t0, t1) { this._hour_time_stepper$_allowedTickIncrements = t0; this.dateTimeFactory = t1; this._stepsIterable = null; }, BaseCartesianRenderer: function BaseCartesianRenderer() { }, BaseCartesianRenderer_configureDomainAxes_closure: function BaseCartesianRenderer_configureDomainAxes_closure(t0) { this.$this = t0; }, BaseCartesianRenderer_configureMeasureAxes_closure: function BaseCartesianRenderer_configureMeasureAxes_closure(t0) { this.$this = t0; }, Series_Series: function(colorFn, data, displayName, domainFn, id, measureFn, $T, $D) { var _null = null; return new F.Series(id, displayName, false, _null, _null, data, _null, new F.Series_Series_closure(domainFn, data, $D), _null, _null, _null, new F.Series_Series_closure0(measureFn, data), _null, _null, _null, _null, _null, new F.Series_Series_closure1(colorFn, data), _null, _null, _null, _null, _null, _null, _null, _null, _null, new F.SeriesAttributes(P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object)), $T._eval$1("@<0>")._bind$1($D)._eval$1("Series<1,2>")); }, Series: function Series(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28) { var _ = this; _.id = t0; _.displayName = t1; _.overlaySeries = t2; _.seriesCategory = t3; _.seriesColor = t4; _.data = t5; _.keyFn = t6; _.domainFn = t7; _.domainFormatterFn = t8; _.domainLowerBoundFn = t9; _.domainUpperBoundFn = t10; _.measureFn = t11; _.measureFormatterFn = t12; _.measureLowerBoundFn = t13; _.measureUpperBoundFn = t14; _.measureOffsetFn = t15; _.areaColorFn = t16; _.colorFn = t17; _.dashPatternFn = t18; _.fillColorFn = t19; _.patternColorFn = t20; _.fillPatternFn = t21; _.radiusPxFn = t22; _.strokeWidthPxFn = t23; _.labelAccessorFn = t24; _.insideLabelStyleAccessorFn = t25; _.outsideLabelStyleAccessorFn = t26; _.attributes = t27; _.$ti = t28; }, Series_Series_closure: function Series_Series_closure(t0, t1, t2) { this.domainFn = t0; this.data = t1; this.D = t2; }, Series_Series_closure0: function Series_Series_closure0(t0, t1) { this.measureFn = t0; this.data = t1; }, Series_Series_closure1: function Series_Series_closure1(t0, t1) { this.colorFn = t0; this.data = t1; }, AttributeKey: function AttributeKey(t0, t1) { this.uniqueKey = t0; this.$ti = t1; }, SeriesAttributes: function SeriesAttributes(t0) { this._registry = t0; }, SelectionModelConfig: function SelectionModelConfig(t0, t1, t2) { this.type = t0; this.changedListener = t1; this.$ti = t2; }, CupertinoActivityIndicator: function CupertinoActivityIndicator(t0) { this.key = t0; }, _CupertinoActivityIndicatorState: function _CupertinoActivityIndicatorState(t0, t1) { var _ = this; _.___CupertinoActivityIndicatorState__controller = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _CupertinoActivityIndicatorPainter: function _CupertinoActivityIndicatorPainter(t0, t1, t2, t3, t4, t5) { var _ = this; _.position = t0; _.activeColor = t1; _.radius = t2; _.progress = t3; _.tickFundamentalRRect = t4; _._repaint = t5; }, __CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin: function __CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin() { }, _TextSelectionHandlePainter0: function _TextSelectionHandlePainter0(t0, t1) { this.color = t0; this._repaint = t1; }, CupertinoTextSelectionControls: function CupertinoTextSelectionControls() { }, LicenseRegistry_licenses: function() { var $async$LicenseRegistry_licenses = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $.LicenseRegistry__collectors; if (t1 == null) { // goto return $async$goto = 1; break; } t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 5; break; } $async$goto = 6; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldStar(t1[_i].call$0()), $async$LicenseRegistry_licenses, $async$controller); case 6: // after yield case 4: // for update t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 3; break; case 5: // after for case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$LicenseRegistry_licenses, type$.LicenseEntry), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], t2, _i, t1; return P._streamOfController($async$controller); }, LicenseParagraph: function LicenseParagraph(t0, t1) { this.text = t0; this.indent = t1; }, LicenseEntry: function LicenseEntry() { }, _LicenseEntryWithLineBreaksParserState: function _LicenseEntryWithLineBreaksParserState(t0) { this._licenses$_name = t0; }, LicenseEntryWithLineBreaks: function LicenseEntryWithLineBreaks(t0, t1) { this.packages = t0; this.text = t1; }, LicenseEntryWithLineBreaks_paragraphs_addLine: function LicenseEntryWithLineBreaks_paragraphs_addLine(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.lines = t2; }, LicenseEntryWithLineBreaks_paragraphs_getParagraph: function LicenseEntryWithLineBreaks_paragraphs_getParagraph(t0, t1) { this._box_0 = t0; this.lines = t1; }, PointerEvent_transformPosition: function(transform, position) { var t1, t2, position3; if (transform == null) return position; t1 = position._dx; t2 = position._dy; position3 = new E.Vector3(new Float64Array(3)); position3.setValues$3(t1, t2, 0); t1 = transform.perspectiveTransform$1(position3)._v3storage; return new P.Offset(t1[0], t1[1]); }, PointerEvent_transformDeltaViaPositions: function(transform, transformedEndPosition, untransformedDelta, untransformedEndPosition) { if (transform == null) return untransformedDelta; if (transformedEndPosition == null) transformedEndPosition = F.PointerEvent_transformPosition(transform, untransformedEndPosition); return transformedEndPosition.$sub(0, F.PointerEvent_transformPosition(transform, untransformedEndPosition.$sub(0, untransformedDelta))); }, PointerEvent_removePerspectiveTransform: function(transform) { var t2, t3, t1 = new Float64Array(4), vector = new E.Vector4(t1); vector.setValues$4(0, 0, 1, 0); transform.toString; t2 = new Float64Array(16); t3 = new E.Matrix4(t2); t3.setFrom$1(transform); t2[11] = t1[3]; t2[10] = t1[2]; t2[9] = t1[1]; t2[8] = t1[0]; t3.setRow$2(2, vector); return t3; }, PointerAddedEvent$: function(device, distance, distanceMax, embedderId, kind, obscured, orientation, position, pressureMax, pressureMin, radiusMax, radiusMin, tilt, timeStamp) { return new F.PointerAddedEvent(embedderId, timeStamp, 0, kind, device, position, C.Offset_0_0, 0, false, false, 0, pressureMin, pressureMax, distance, distanceMax, 0, 0, 0, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerRemovedEvent$: function(device, distanceMax, embedderId, kind, obscured, position, pressureMax, pressureMin, radiusMax, radiusMin, timeStamp) { return new F.PointerRemovedEvent(embedderId, timeStamp, 0, kind, device, position, C.Offset_0_0, 0, false, false, 0, pressureMin, pressureMax, 0, distanceMax, 0, 0, 0, radiusMin, radiusMax, 0, 0, 0, false, null, null); }, PointerHoverEvent$: function(buttons, delta, device, distance, distanceMax, embedderId, kind, obscured, orientation, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new F.PointerHoverEvent(embedderId, timeStamp, 0, kind, device, position, delta, buttons, false, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerEnterEvent$: function(buttons, delta, device, distance, distanceMax, down, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new F.PointerEnterEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, down, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerExitEvent$: function(buttons, delta, device, distance, distanceMax, down, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new F.PointerExitEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, down, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, synthesized, null, null); }, PointerDownEvent$: function(buttons, device, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new F.PointerDownEvent(embedderId, timeStamp, pointer, kind, device, position, C.Offset_0_0, buttons, true, false, pressure, pressureMin, pressureMax, 0, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerMoveEvent$: function(buttons, delta, device, distanceMax, embedderId, kind, obscured, orientation, platformData, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, synthesized, tilt, timeStamp) { return new F.PointerMoveEvent(embedderId, timeStamp, pointer, kind, device, position, delta, buttons, true, false, pressure, pressureMin, pressureMax, 0, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, platformData, synthesized, null, null); }, PointerUpEvent$: function(buttons, device, distance, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new F.PointerUpEvent(embedderId, timeStamp, pointer, kind, device, position, C.Offset_0_0, buttons, false, false, pressure, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, PointerScrollEvent$: function(device, embedderId, kind, position, scrollDelta, timeStamp) { return new F.PointerScrollEvent(scrollDelta, embedderId, timeStamp, 0, kind, device, position, C.Offset_0_0, 0, false, false, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, null, null); }, PointerCancelEvent$: function(buttons, device, distance, distanceMax, embedderId, kind, obscured, orientation, pointer, position, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, size, tilt, timeStamp) { return new F.PointerCancelEvent(embedderId, timeStamp, pointer, kind, device, position, C.Offset_0_0, buttons, false, false, 0, pressureMin, pressureMax, distance, distanceMax, size, radiusMajor, radiusMinor, radiusMin, radiusMax, orientation, tilt, 0, false, null, null); }, computeHitSlop: function(kind) { switch (kind) { case C.PointerDeviceKind_1: return 1; case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: case C.PointerDeviceKind_0: return 18; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computePanSlop: function(kind) { switch (kind) { case C.PointerDeviceKind_1: return 2; case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: case C.PointerDeviceKind_0: return 36; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeScaleSlop: function(kind) { switch (kind) { case C.PointerDeviceKind_1: return 1; case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: case C.PointerDeviceKind_0: return 18; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, PointerEvent0: function PointerEvent0() { }, _PointerEventDescription: function _PointerEventDescription() { }, _AbstractPointerEvent: function _AbstractPointerEvent() { }, _TransformedPointerEvent: function _TransformedPointerEvent() { }, _CopyPointerAddedEvent: function _CopyPointerAddedEvent() { }, PointerAddedEvent: function PointerAddedEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerAddedEvent: function _TransformedPointerAddedEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerRemovedEvent: function _CopyPointerRemovedEvent() { }, PointerRemovedEvent: function PointerRemovedEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerRemovedEvent: function _TransformedPointerRemovedEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerHoverEvent: function _CopyPointerHoverEvent() { }, PointerHoverEvent: function PointerHoverEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerHoverEvent: function _TransformedPointerHoverEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerEnterEvent: function _CopyPointerEnterEvent() { }, PointerEnterEvent: function PointerEnterEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerEnterEvent: function _TransformedPointerEnterEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerExitEvent: function _CopyPointerExitEvent() { }, PointerExitEvent: function PointerExitEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerExitEvent: function _TransformedPointerExitEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerDownEvent: function _CopyPointerDownEvent() { }, PointerDownEvent: function PointerDownEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerDownEvent: function _TransformedPointerDownEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerMoveEvent: function _CopyPointerMoveEvent() { }, PointerMoveEvent: function PointerMoveEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerMoveEvent: function _TransformedPointerMoveEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerUpEvent: function _CopyPointerUpEvent() { }, PointerUpEvent: function PointerUpEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerUpEvent: function _TransformedPointerUpEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, PointerSignalEvent: function PointerSignalEvent() { }, _CopyPointerScrollEvent: function _CopyPointerScrollEvent() { }, PointerScrollEvent: function PointerScrollEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26) { var _ = this; _.scrollDelta = t0; _.embedderId = t1; _.timeStamp = t2; _.pointer = t3; _.kind = t4; _.device = t5; _.position = t6; _.delta = t7; _.buttons = t8; _.down = t9; _.obscured = t10; _.pressure = t11; _.pressureMin = t12; _.pressureMax = t13; _.distance = t14; _.distanceMax = t15; _.size = t16; _.radiusMajor = t17; _.radiusMinor = t18; _.radiusMin = t19; _.radiusMax = t20; _.orientation = t21; _.tilt = t22; _.platformData = t23; _.synthesized = t24; _.transform = t25; _.original = t26; }, _TransformedPointerScrollEvent: function _TransformedPointerScrollEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _CopyPointerCancelEvent: function _CopyPointerCancelEvent() { }, PointerCancelEvent: function PointerCancelEvent(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25) { var _ = this; _.embedderId = t0; _.timeStamp = t1; _.pointer = t2; _.kind = t3; _.device = t4; _.position = t5; _.delta = t6; _.buttons = t7; _.down = t8; _.obscured = t9; _.pressure = t10; _.pressureMin = t11; _.pressureMax = t12; _.distance = t13; _.distanceMax = t14; _.size = t15; _.radiusMajor = t16; _.radiusMinor = t17; _.radiusMin = t18; _.radiusMax = t19; _.orientation = t20; _.tilt = t21; _.platformData = t22; _.synthesized = t23; _.transform = t24; _.original = t25; }, _TransformedPointerCancelEvent: function _TransformedPointerCancelEvent(t0, t1) { var _ = this; _.original = t0; _.transform = t1; _.___TransformedPointerEvent_localDelta = _.___TransformedPointerEvent_localPosition = $; }, _PointerAddedEvent_PointerEvent__PointerEventDescription: function _PointerAddedEvent_PointerEvent__PointerEventDescription() { }, _PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent: function _PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent() { }, _PointerCancelEvent_PointerEvent__PointerEventDescription: function _PointerCancelEvent_PointerEvent__PointerEventDescription() { }, _PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent: function _PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent() { }, _PointerDownEvent_PointerEvent__PointerEventDescription: function _PointerDownEvent_PointerEvent__PointerEventDescription() { }, _PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent: function _PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent() { }, _PointerEnterEvent_PointerEvent__PointerEventDescription: function _PointerEnterEvent_PointerEvent__PointerEventDescription() { }, _PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent: function _PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent() { }, _PointerEvent_Object_Diagnosticable: function _PointerEvent_Object_Diagnosticable() { }, _PointerExitEvent_PointerEvent__PointerEventDescription: function _PointerExitEvent_PointerEvent__PointerEventDescription() { }, _PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent: function _PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent() { }, _PointerHoverEvent_PointerEvent__PointerEventDescription: function _PointerHoverEvent_PointerEvent__PointerEventDescription() { }, _PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent: function _PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent() { }, _PointerMoveEvent_PointerEvent__PointerEventDescription: function _PointerMoveEvent_PointerEvent__PointerEventDescription() { }, _PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent: function _PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent() { }, _PointerRemovedEvent_PointerEvent__PointerEventDescription: function _PointerRemovedEvent_PointerEvent__PointerEventDescription() { }, _PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent: function _PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent() { }, _PointerScrollEvent_PointerSignalEvent__PointerEventDescription: function _PointerScrollEvent_PointerSignalEvent__PointerEventDescription() { }, _PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent: function _PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent() { }, _PointerUpEvent_PointerEvent__PointerEventDescription: function _PointerUpEvent_PointerEvent__PointerEventDescription() { }, _PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent: function _PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent() { }, __TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent: function __TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent() { }, __TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent: function __TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent() { }, __TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent: function __TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent() { }, __TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent: function __TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent() { }, __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable: function __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable() { }, __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription: function __TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription() { }, __TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent: function __TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent() { }, __TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent: function __TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent() { }, __TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent: function __TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent() { }, __TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent: function __TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent() { }, __TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent: function __TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent() { }, __TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent: function __TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent() { }, DoubleTapGestureRecognizer$: function(debugOwner) { var t1 = type$.int; return new F.DoubleTapGestureRecognizer(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._TapTracker), debugOwner, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, _CountdownZoned: function _CountdownZoned() { this._timeout = false; }, _TapTracker: function _TapTracker(t0, t1, t2, t3, t4) { var _ = this; _.pointer = t0; _.entry = t1; _._initialGlobalPosition = t2; _.initialButtons = t3; _._doubleTapMinTimeCountdown = t4; _._isTrackingPointer = false; }, DoubleTapGestureRecognizer: function DoubleTapGestureRecognizer(t0, t1, t2, t3) { var _ = this; _._firstTap = _._doubleTapTimer = _.onDoubleTapCancel = _.onDoubleTap = _.onDoubleTapDown = null; _._trackers = t0; _.debugOwner = t1; _._kindFilter = t2; _._pointerToKind = t3; }, CheckboxThemeData__lerpProperties: function(a, b, t, lerpFunction, $T) { if (a == null && b == null) return null; return new F._LerpProperties1(a, b, t, lerpFunction, $T._eval$1("_LerpProperties1<0>")); }, CheckboxThemeData__lerpSides: function(a, b, t) { if (a == null && b == null) return null; a.toString; b.toString; return Y.BorderSide_lerp(a, b, t); }, CheckboxThemeData: function CheckboxThemeData(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.mouseCursor = t0; _.fillColor = t1; _.checkColor = t2; _.overlayColor = t3; _.splashRadius = t4; _.materialTapTargetSize = t5; _.visualDensity = t6; _.shape = t7; _.side = t8; }, _LerpProperties1: function _LerpProperties1(t0, t1, t2, t3, t4) { var _ = this; _.a = t0; _.b = t1; _.t = t2; _.lerpFunction = t3; _.$ti = t4; }, _CheckboxThemeData_Object_Diagnosticable: function _CheckboxThemeData_Object_Diagnosticable() { }, InputBorder: function InputBorder() { }, _NoInputBorder: function _NoInputBorder(t0) { this.borderSide = t0; }, UnderlineInputBorder: function UnderlineInputBorder(t0, t1) { this.borderRadius = t0; this.borderSide = t1; }, OutlineInputBorder: function OutlineInputBorder(t0, t1, t2) { this.gapPadding = t0; this.borderRadius = t1; this.borderSide = t2; }, MaterialTextSelectionControls: function MaterialTextSelectionControls() { }, _TextSelectionHandlePainter: function _TextSelectionHandlePainter(t0, t1) { this.color = t0; this._repaint = t1; }, ToggleableStateMixin: function ToggleableStateMixin() { }, ToggleableStateMixin__handleTapDown_closure: function ToggleableStateMixin__handleTapDown_closure(t0, t1) { this.$this = t0; this.details = t1; }, ToggleableStateMixin__handleTapEnd_closure: function ToggleableStateMixin__handleTapEnd_closure(t0) { this.$this = t0; }, ToggleableStateMixin__handleFocusHighlightChanged_closure: function ToggleableStateMixin__handleFocusHighlightChanged_closure(t0, t1) { this.$this = t0; this.focused = t1; }, ToggleableStateMixin__handleHoverChanged_closure: function ToggleableStateMixin__handleHoverChanged_closure(t0, t1) { this.$this = t0; this.hovering = t1; }, ToggleablePainter: function ToggleablePainter() { }, BoxBorder_lerp: function(a, b, t) { var t0, t2, t1 = type$.nullable_Border; if (t1._is(a) && t1._is(b)) return F.Border_lerp(a, b, t); t1 = type$.nullable_BorderDirectional; if (t1._is(a) && t1._is(b)) return F.BorderDirectional_lerp(a, b, t); if (b instanceof F.Border && a instanceof F.BorderDirectional) { t = 1 - t; t0 = b; b = a; a = t0; } if (a instanceof F.Border && b instanceof F.BorderDirectional) { t1 = b.start; if (J.$eq$(t1, C.BorderSide_m7u) && J.$eq$(b.end, C.BorderSide_m7u)) return new F.Border(Y.BorderSide_lerp(a.top, b.top, t), Y.BorderSide_lerp(a.right, C.BorderSide_m7u, t), Y.BorderSide_lerp(a.bottom, b.bottom, t), Y.BorderSide_lerp(a.left, C.BorderSide_m7u, t)); t2 = a.left; if (J.$eq$(t2, C.BorderSide_m7u) && J.$eq$(a.right, C.BorderSide_m7u)) return new F.BorderDirectional(Y.BorderSide_lerp(a.top, b.top, t), Y.BorderSide_lerp(C.BorderSide_m7u, t1, t), Y.BorderSide_lerp(C.BorderSide_m7u, b.end, t), Y.BorderSide_lerp(a.bottom, b.bottom, t)); if (t < 0.5) { t1 = t * 2; return new F.Border(Y.BorderSide_lerp(a.top, b.top, t), Y.BorderSide_lerp(a.right, C.BorderSide_m7u, t1), Y.BorderSide_lerp(a.bottom, b.bottom, t), Y.BorderSide_lerp(t2, C.BorderSide_m7u, t1)); } t2 = (t - 0.5) * 2; return new F.BorderDirectional(Y.BorderSide_lerp(a.top, b.top, t), Y.BorderSide_lerp(C.BorderSide_m7u, t1, t2), Y.BorderSide_lerp(C.BorderSide_m7u, b.end, t2), Y.BorderSide_lerp(a.bottom, b.bottom, t)); } throw H.wrapException(U.FlutterError$fromParts(H.setRuntimeTypeInfo([U.ErrorSummary$("BoxBorder.lerp can only interpolate Border and BorderDirectional classes."), U.ErrorDescription$("BoxBorder.lerp() was called with two objects of type " + J.get$runtimeType$(a).toString$0(0) + " and " + J.get$runtimeType$(b).toString$0(0) + ":\n " + H.S(a) + "\n " + H.S(b) + "\nHowever, only Border and BorderDirectional classes are supported by this method."), U.ErrorHint$("For a more general interpolation method, consider using ShapeBorder.lerp instead.")], type$.JSArray_DiagnosticsNode))); }, BoxBorder__paintUniformBorderWithRadius: function(canvas, rect, side, borderRadius) { var outer, width, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, side.color); outer = borderRadius.toRRect$1(rect); width = side.width; if (width === 0) { paint.set$style(0, C.PaintingStyle_1); paint.set$strokeWidth(0); canvas.drawRRect$2(0, outer, paint); } else canvas.drawDRRect$3(0, outer, outer.inflate$1(-width), paint); }, BoxBorder__paintUniformBorderWithCircle: function(canvas, rect, side) { var width = side.width, paint = side.toPaint$0(), t1 = rect.get$shortestSide(); canvas.drawCircle$3(0, rect.get$center(), (t1 - width) / 2, paint); }, BoxBorder__paintUniformBorderWithRectangle: function(canvas, rect, side) { var width = side.width, paint = side.toPaint$0(); canvas.drawRect$2(0, rect.inflate$1(-(width / 2)), paint); }, Border_Border$all: function(color, width) { var side = new Y.BorderSide(color, width, C.BorderStyle_1); return new F.Border(side, side, side, side); }, Border_lerp: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); return new F.Border(Y.BorderSide_lerp(a.top, b.top, t), Y.BorderSide_lerp(a.right, b.right, t), Y.BorderSide_lerp(a.bottom, b.bottom, t), Y.BorderSide_lerp(a.left, b.left, t)); }, BorderDirectional_lerp: function(a, b, t) { var t2, t3, t1 = a == null; if (t1 && b == null) return null; if (t1) return b.scale$1(0, t); if (b == null) return a.scale$1(0, 1 - t); t1 = Y.BorderSide_lerp(a.top, b.top, t); t2 = Y.BorderSide_lerp(a.end, b.end, t); t3 = Y.BorderSide_lerp(a.bottom, b.bottom, t); return new F.BorderDirectional(t1, Y.BorderSide_lerp(a.start, b.start, t), t2, t3); }, BoxShape: function BoxShape(t0) { this._box_border$_name = t0; }, BoxBorder: function BoxBorder() { }, Border: function Border(t0, t1, t2, t3) { var _ = this; _.top = t0; _.right = t1; _.bottom = t2; _.left = t3; }, BorderDirectional: function BorderDirectional(t0, t1, t2, t3) { var _ = this; _.top = t0; _.start = t1; _.end = t2; _.bottom = t3; }, RenderAnimatedSize$: function(alignment, clipBehavior, curve, duration, reverseDuration, textDirection, vsync) { var _null = null, t1 = new F.RenderAnimatedSize(new R.SizeTween(_null, _null), C.RenderAnimatedSizeState_0, clipBehavior, vsync, alignment, textDirection, _null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); t1.RenderAnimatedSize$8$alignment$child$clipBehavior$curve$duration$reverseDuration$textDirection$vsync(alignment, _null, clipBehavior, curve, duration, reverseDuration, textDirection, vsync); return t1; }, RenderAnimatedSizeState: function RenderAnimatedSizeState(t0) { this._animated_size$_name = t0; }, RenderAnimatedSize: function RenderAnimatedSize(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.__RenderAnimatedSize__animation = _.__RenderAnimatedSize__controller = $; _._sizeTween = t0; _.__RenderAnimatedSize__hasVisualOverflow = $; _._animated_size$_lastValue = null; _._animated_size$_state = t1; _._animated_size$_clipBehavior = t2; _._vsync = t3; _._shifted_box$_resolvedAlignment = _._animated_size$_clipRectLayer = null; _._shifted_box$_alignment = t4; _._shifted_box$_textDirection = t5; _.RenderObjectWithChildMixin__child = t6; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderAnimatedSize_closure: function RenderAnimatedSize_closure(t0) { this.$this = t0; }, _startIsTopLeft: function(direction, textDirection, verticalDirection) { var _s80_ = string$.x60null_c; switch (direction) { case C.Axis_0: switch (textDirection) { case C.TextDirection_1: return true; case C.TextDirection_0: return false; case null: return null; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.Axis_1: switch (verticalDirection) { case C.VerticalDirection_1: return true; case C.VerticalDirection_0: return false; case null: return null; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, RenderFlex$: function(children, clipBehavior, crossAxisAlignment, direction, mainAxisAlignment, mainAxisSize, textBaseline, textDirection, verticalDirection) { var _null = null, t1 = new F.RenderFlex(direction, mainAxisAlignment, mainAxisSize, crossAxisAlignment, textDirection, verticalDirection, textBaseline, clipBehavior, P.List_List$filled(4, U.TextPainter$(_null, _null, _null, _null, _null, C.TextAlign_4, C.TextDirection_1, _null, 1, C.TextWidthBasis_0), false, type$.TextPainter), true, 0, _null, _null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, children); return t1; }, FlexFit: function FlexFit(t0) { this._flex$_name = t0; }, FlexParentData: function FlexParentData(t0, t1, t2) { var _ = this; _.fit = _.flex = null; _.ContainerParentDataMixin_previousSibling = t0; _.ContainerParentDataMixin_nextSibling = t1; _.offset = t2; }, MainAxisSize: function MainAxisSize(t0) { this._flex$_name = t0; }, MainAxisAlignment: function MainAxisAlignment(t0) { this._flex$_name = t0; }, CrossAxisAlignment: function CrossAxisAlignment(t0) { this._flex$_name = t0; }, RenderFlex: function RenderFlex(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._flex$_direction = t0; _._mainAxisAlignment = t1; _._mainAxisSize = t2; _._flex$_crossAxisAlignment = t3; _._flex$_textDirection = t4; _._flex$_verticalDirection = t5; _._flex$_textBaseline = t6; _._overflow = 0; _._flex$_clipBehavior = t7; _._flex$_clipRectLayer = null; _.DebugOverflowIndicatorMixin__indicatorLabel = t8; _.DebugOverflowIndicatorMixin__overflowReportNeeded = t9; _.ContainerRenderObjectMixin__childCount = t10; _.ContainerRenderObjectMixin__firstChild = t11; _.ContainerRenderObjectMixin__lastChild = t12; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, RenderFlex__getIntrinsicSize__crossSize_set: function RenderFlex__getIntrinsicSize__crossSize_set(t0) { this._box_0 = t0; }, RenderFlex__getIntrinsicSize__mainSize_set: function RenderFlex__getIntrinsicSize__mainSize_set(t0) { this._box_0 = t0; }, RenderFlex__getIntrinsicSize__mainSize_get: function RenderFlex__getIntrinsicSize__mainSize_get(t0) { this._box_0 = t0; }, RenderFlex__getIntrinsicSize__crossSize_get: function RenderFlex__getIntrinsicSize__crossSize_get(t0) { this._box_0 = t0; }, RenderFlex_computeMinIntrinsicWidth_closure: function RenderFlex_computeMinIntrinsicWidth_closure() { }, RenderFlex_computeMaxIntrinsicWidth_closure: function RenderFlex_computeMaxIntrinsicWidth_closure() { }, RenderFlex_computeMinIntrinsicHeight_closure: function RenderFlex_computeMinIntrinsicHeight_closure() { }, RenderFlex_computeMaxIntrinsicHeight_closure: function RenderFlex_computeMaxIntrinsicHeight_closure() { }, RenderFlex__computeSizes__minChildExtent_set: function RenderFlex__computeSizes__minChildExtent_set(t0) { this._box_0 = t0; }, RenderFlex__computeSizes__minChildExtent_get: function RenderFlex__computeSizes__minChildExtent_get(t0) { this._box_0 = t0; }, RenderFlex_performLayout__betweenSpace_set: function RenderFlex_performLayout__betweenSpace_set(t0) { this._box_0 = t0; }, RenderFlex_performLayout__leadingSpace_set: function RenderFlex_performLayout__leadingSpace_set(t0) { this._box_0 = t0; }, RenderFlex_performLayout__leadingSpace_get: function RenderFlex_performLayout__leadingSpace_get(t0) { this._box_0 = t0; }, RenderFlex_performLayout__betweenSpace_get: function RenderFlex_performLayout__betweenSpace_get(t0) { this._box_0 = t0; }, _LayoutSizes: function _LayoutSizes(t0, t1, t2) { this.mainSize = t0; this.crossSize = t1; this.allocatedSize = t2; }, _RenderFlex_RenderBox_ContainerRenderObjectMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin() { }, _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin() { }, _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin: function _RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin() { }, KeepAliveParentDataMixin: function KeepAliveParentDataMixin() { }, RenderSliverWithKeepAliveMixin: function RenderSliverWithKeepAliveMixin() { }, SliverMultiBoxAdaptorParentData: function SliverMultiBoxAdaptorParentData(t0, t1, t2) { var _ = this; _.index = null; _._keptAlive = false; _.KeepAliveParentDataMixin_keepAlive = t0; _.ContainerParentDataMixin_previousSibling = t1; _.ContainerParentDataMixin_nextSibling = t2; _.layoutOffset = null; }, RenderSliverMultiBoxAdaptor: function RenderSliverMultiBoxAdaptor() { }, RenderSliverMultiBoxAdaptor__createOrObtainChild_closure: function RenderSliverMultiBoxAdaptor__createOrObtainChild_closure(t0, t1, t2) { this.$this = t0; this.index = t1; this.after = t2; }, RenderSliverMultiBoxAdaptor_collectGarbage_closure: function RenderSliverMultiBoxAdaptor_collectGarbage_closure(t0, t1) { this._box_0 = t0; this.$this = t1; }, RenderSliverMultiBoxAdaptor_collectGarbage__closure: function RenderSliverMultiBoxAdaptor_collectGarbage__closure() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers() { }, _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin: function _RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin() { }, _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin: function _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin() { }, _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin: function _SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin() { }, AutofillConfiguration: function AutofillConfiguration(t0, t1, t2) { this.uniqueIdentifier = t0; this.autofillHints = t1; this.currentEditingValue = t2; }, _AutofillScopeTextInputConfiguration: function _AutofillScopeTextInputConfiguration(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _.allConfigurations = t0; _.inputType = t1; _.readOnly = t2; _.obscureText = t3; _.autocorrect = t4; _.autofillConfiguration = t5; _.smartDashesType = t6; _.smartQuotesType = t7; _.enableSuggestions = t8; _.actionLabel = t9; _.inputAction = t10; _.textCapitalization = t11; _.keyboardAppearance = t12; }, _AutofillScopeTextInputConfiguration_toJson_closure: function _AutofillScopeTextInputConfiguration_toJson_closure() { }, AutofillScopeMixin: function AutofillScopeMixin() { }, AutofillScopeMixin_attach_closure: function AutofillScopeMixin_attach_closure() { }, PlatformException$: function(code, details, message, stacktrace) { return new F.PlatformException(code, message, details, stacktrace); }, MissingPluginException$: function(message) { return new F.MissingPluginException(message); }, MethodCall: function MethodCall(t0, t1) { this.method = t0; this.$arguments = t1; }, PlatformException: function PlatformException(t0, t1, t2, t3) { var _ = this; _.code = t0; _.message = t1; _.details = t2; _.stacktrace = t3; }, MissingPluginException: function MissingPluginException(t0) { this.message = t0; }, AnimatedSize$: function(alignment, child, curve, duration, reverseDuration, vsync) { return new F.AnimatedSize(alignment, curve, duration, reverseDuration, vsync, child, null); }, AnimatedSize: function AnimatedSize(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.alignment = t0; _.curve = t1; _.duration = t2; _.reverseDuration = t3; _.vsync = t4; _.child = t5; _.key = t6; }, AutofillGroup_of: function(context) { var scope = context.dependOnInheritedWidgetOfExactType$1$0(type$._AutofillScope); return scope == null ? null : scope._scope; }, AutofillContextAction: function AutofillContextAction(t0) { this._autofill$_name = t0; }, AutofillGroup: function AutofillGroup(t0, t1) { this.child = t0; this.key = t1; }, AutofillGroupState: function AutofillGroupState(t0, t1) { var _ = this; _._autofill$_clients = t0; _._isTopmostAutofillGroup = false; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, AutofillGroupState_autofillClients_closure: function AutofillGroupState_autofillClients_closure() { }, AutofillGroupState_register_closure: function AutofillGroupState_register_closure(t0) { this.client = t0; }, _AutofillScope: function _AutofillScope(t0, t1, t2) { this._scope = t0; this.child = t1; this.key = t2; }, _AutofillGroupState_State_AutofillScopeMixin: function _AutofillGroupState_State_AutofillScopeMixin() { }, MediaQueryData$fromWindow: function($window) { var t3, t4, t5, t6, t7, t1 = $window.get$physicalSize(), t2 = $window._debugDevicePixelRatio; t1 = t1.$div(0, t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t2 = $window._debugDevicePixelRatio; if (t2 == null) t2 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t3 = $window.platformDispatcher._configuration; $window.get$viewConfiguration(); t4 = $window._debugDevicePixelRatio; t4 = V.EdgeInsets$fromWindowPadding(C.WindowPadding_0_0_0_0, t4 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t4); $window.get$viewConfiguration(); t5 = $window._debugDevicePixelRatio; t5 = V.EdgeInsets$fromWindowPadding(C.WindowPadding_0_0_0_0, t5 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t5); t6 = $window._viewInsets; t7 = $window._debugDevicePixelRatio; t6 = V.EdgeInsets$fromWindowPadding(t6, t7 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t7); $window.get$viewConfiguration(); t7 = $window._debugDevicePixelRatio; return new F.MediaQueryData(t1, t2, t3.textScaleFactor, t3.platformBrightness, t6, t4, t5, V.EdgeInsets$fromWindowPadding(C.WindowPadding_0_0_0_0, t7 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t7), false, false, false, false, false, false, C.NavigationMode_0); }, MediaQuery_MediaQuery$removePadding: function(child, context, removeBottom, removeLeft, removeRight, removeTop) { return new F.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.removePadding$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, removeLeft, removeRight, removeTop), child, null); }, MediaQuery_maybeOf: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery); return t1 == null ? null : t1.data; }, MediaQuery_textScaleFactorOf: function(context) { var t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; return t1 == null ? 1 : t1; }, MediaQuery_boldTextOverride: function(context) { var t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.boldText; return t1 === true; }, Orientation: function Orientation(t0) { this._media_query$_name = t0; }, MediaQueryData: function MediaQueryData(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14) { var _ = this; _.size = t0; _.devicePixelRatio = t1; _.textScaleFactor = t2; _.platformBrightness = t3; _.viewInsets = t4; _.padding = t5; _.viewPadding = t6; _.systemGestureInsets = t7; _.alwaysUse24HourFormat = t8; _.accessibleNavigation = t9; _.invertColors = t10; _.highContrast = t11; _.disableAnimations = t12; _.boldText = t13; _.navigationMode = t14; }, MediaQuery: function MediaQuery(t0, t1, t2) { this.data = t0; this.child = t1; this.key = t2; }, NavigationMode: function NavigationMode(t0) { this._media_query$_name = t0; }, ScrollController$: function(debugLabel, initialScrollOffset) { return new F.ScrollController(initialScrollOffset, debugLabel, H.setRuntimeTypeInfo([], type$.JSArray_ScrollPosition), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, ScrollController: function ScrollController(t0, t1, t2, t3) { var _ = this; _._initialScrollOffset = t0; _.debugLabel = t1; _._positions = t2; _.ChangeNotifier__listeners = t3; }, Scrollable$: function(axisDirection, controller, dragStartBehavior, excludeFromSemantics, physics, restorationId, scrollBehavior, semanticChildCount, viewportBuilder) { return new F.Scrollable(axisDirection, controller, physics, viewportBuilder, excludeFromSemantics, semanticChildCount, dragStartBehavior, restorationId, scrollBehavior, null); }, Scrollable_of: function(context) { var widget = context.dependOnInheritedWidgetOfExactType$1$0(type$._ScrollableScope); return widget == null ? null : widget.scrollable; }, Scrollable_recommendDeferredLoadingForContext: function(context) { var t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._ScrollableScope); t1 = t1 == null ? null : t1.get$widget(); type$.nullable__ScrollableScope._as(t1); if (t1 == null) return false; t1 = t1.position; return t1.physics.recommendDeferredLoading$3(t1._activity.get$velocity() + t1._impliedVelocity, t1.copyWith$0(), context); }, Scrollable_ensureVisible: function(context, alignment, alignmentPolicy) { var t1, targetRenderObject, t2, t3, widget, futures = H.setRuntimeTypeInfo([], type$.JSArray_Future_void), scrollable = F.Scrollable_of(context); for (t1 = type$._ScrollableScope, targetRenderObject = null; scrollable != null;) { t2 = scrollable._scrollable$_position; t2.toString; t3 = context.get$renderObject(); t3.toString; futures.push(t2.ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject(t3, alignment, alignmentPolicy, C.Cubic_JUR, C.Duration_0, targetRenderObject)); if (targetRenderObject == null) targetRenderObject = context.get$renderObject(); context = scrollable._framework$_element; widget = context.dependOnInheritedWidgetOfExactType$1$0(t1); scrollable = widget == null ? null : widget.scrollable; } futures.length !== 0; t1 = P.Future_Future$value(null, type$.void); return t1; }, _ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure: function _ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure() { }, Scrollable: function Scrollable(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.axisDirection = t0; _.controller = t1; _.physics = t2; _.viewportBuilder = t3; _.excludeFromSemantics = t4; _.semanticChildCount = t5; _.dragStartBehavior = t6; _.restorationId = t7; _.scrollBehavior = t8; _.key = t9; }, _ScrollableScope: function _ScrollableScope(t0, t1, t2, t3) { var _ = this; _.scrollable = t0; _.position = t1; _.child = t2; _.key = t3; }, ScrollableState: function ScrollableState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _._scrollable$_position = null; _._persistedScrollOffset = t0; _.__ScrollableState__configuration = $; _._fallbackScrollController = _._physics = null; _._scrollSemanticsKey = t1; _._gestureDetectorKey = t2; _._ignorePointerKey = t3; _._gestureRecognizers = t4; _._shouldIgnorePointer = false; _._hold = _._scrollable$_drag = _._scrollable$_lastAxisDirection = _._lastCanDrag = null; _.RestorationMixin__bucket = t5; _.RestorationMixin__properties = t6; _.RestorationMixin__debugPropertiesWaitingForReregistration = t7; _.RestorationMixin__firstRestorePending = t8; _.RestorationMixin__currentParent = t9; _.TickerProviderStateMixin__tickers = t10; _._widget = null; _._debugLifecycleState = t11; _._framework$_element = null; }, ScrollableState_setCanDrag_closure: function ScrollableState_setCanDrag_closure() { }, ScrollableState_setCanDrag_closure0: function ScrollableState_setCanDrag_closure0(t0) { this.$this = t0; }, ScrollableState_setCanDrag_closure1: function ScrollableState_setCanDrag_closure1() { }, ScrollableState_setCanDrag_closure2: function ScrollableState_setCanDrag_closure2(t0) { this.$this = t0; }, ScrollableDetails: function ScrollableDetails(t0, t1) { this.direction = t0; this.controller = t1; }, _ScrollSemantics: function _ScrollSemantics(t0, t1, t2, t3, t4) { var _ = this; _.position = t0; _.allowImplicitScrolling = t1; _.semanticChildCount = t2; _.child = t3; _.key = t4; }, _RenderScrollSemantics: function _RenderScrollSemantics(t0, t1, t2, t3) { var _ = this; _._scrollable$_position = t0; _._allowImplicitScrolling = t1; _._semanticChildCount = t2; _._innerNode = null; _.RenderObjectWithChildMixin__child = t3; _._cachedDryLayoutSizes = _._cachedIntrinsicDimensions = null; _._computingThisDryLayout = false; _._cachedBaselines = _._box$_size = null; _._debugActivePointers = 0; _.debugCreator = _.parentData = null; _._debugDoingThisLayout = _._debugDoingThisResize = false; _._debugCanParentUseSize = null; _._debugMutationsLocked = false; _._needsLayout = true; _._relayoutBoundary = null; _._doingThisLayoutWithCallback = false; _._constraints = null; _._debugDoingThisPaint = false; _._layer = null; _._needsCompositingBitsUpdate = false; _.__RenderObject__needsCompositing = $; _._needsPaint = true; _._cachedSemanticsConfiguration = null; _._needsSemanticsUpdate = true; _._semantics = null; _._node$_depth = 0; _._node$_parent = _._node$_owner = null; }, ScrollIncrementType: function ScrollIncrementType(t0) { this._scrollable$_name = t0; }, ScrollIntent: function ScrollIntent(t0, t1) { this.direction = t0; this.type = t1; }, ScrollAction: function ScrollAction(t0) { this._actions$_listeners = t0; }, _RestorableScrollOffset: function _RestorableScrollOffset(t0) { var _ = this; _._restoration_properties$_value = null; _._restoration0$_disposed = false; _._restoration0$_owner = _._restoration0$_restorationId = null; _.ChangeNotifier__listeners = t0; }, _ScrollableState_State_TickerProviderStateMixin: function _ScrollableState_State_TickerProviderStateMixin() { }, _ScrollableState_State_TickerProviderStateMixin_RestorationMixin: function _ScrollableState_State_TickerProviderStateMixin_RestorationMixin() { }, TextSelectionHandleType: function TextSelectionHandleType(t0) { this._text_selection$_name = t0; }, _TextSelectionHandlePosition: function _TextSelectionHandlePosition(t0) { this._text_selection$_name = t0; }, TextSelectionControls: function TextSelectionControls() { }, TextSelectionOverlay: function TextSelectionOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11) { var _ = this; _.context = t0; _.debugRequiredFor = t1; _.toolbarLayerLink = t2; _.startHandleLayerLink = t3; _.endHandleLayerLink = t4; _.renderObject = t5; _.selectionControls = t6; _.selectionDelegate = t7; _.dragStartBehavior = t8; _.onSelectionHandleTapped = t9; _.clipboardStatus = t10; _.__TextSelectionOverlay__toolbarController = $; _._text_selection$_value = t11; _._toolbar = _._handles = null; _._handlesVisible = false; }, TextSelectionOverlay_showHandles_closure: function TextSelectionOverlay_showHandles_closure(t0) { this.$this = t0; }, TextSelectionOverlay_showHandles_closure0: function TextSelectionOverlay_showHandles_closure0(t0) { this.$this = t0; }, TextSelectionOverlay__buildHandle_closure: function TextSelectionOverlay__buildHandle_closure(t0, t1) { this.$this = t0; this.position = t1; }, _TextSelectionHandleOverlay: function _TextSelectionHandleOverlay(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.selection = t0; _.position = t1; _.startHandleLayerLink = t2; _.endHandleLayerLink = t3; _.renderObject = t4; _.onSelectionHandleChanged = t5; _.onSelectionHandleTapped = t6; _.selectionControls = t7; _.dragStartBehavior = t8; _.key = t9; }, _TextSelectionHandleOverlayState: function _TextSelectionHandleOverlayState(t0, t1) { var _ = this; _.___TextSelectionHandleOverlayState__controller = _.___TextSelectionHandleOverlayState__dragPosition = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, TextSelectionGestureDetectorBuilder: function TextSelectionGestureDetectorBuilder() { }, TextSelectionGestureDetector: function TextSelectionGestureDetector(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16) { var _ = this; _.onTapDown = t0; _.onForcePressStart = t1; _.onForcePressEnd = t2; _.onSecondaryTap = t3; _.onSecondaryTapDown = t4; _.onSingleTapUp = t5; _.onSingleTapCancel = t6; _.onSingleLongTapStart = t7; _.onSingleLongTapMoveUpdate = t8; _.onSingleLongTapEnd = t9; _.onDoubleTapDown = t10; _.onDragSelectionStart = t11; _.onDragSelectionUpdate = t12; _.onDragSelectionEnd = t13; _.behavior = t14; _.child = t15; _.key = t16; }, _TextSelectionGestureDetectorState: function _TextSelectionGestureDetectorState(t0) { var _ = this; _._lastTapOffset = _._text_selection$_doubleTapTimer = null; _._isDoubleTap = false; _._widget = _._dragUpdateThrottleTimer = _._lastDragUpdateDetails = _._lastDragStartDetails = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _TextSelectionGestureDetectorState_build_closure: function _TextSelectionGestureDetectorState_build_closure(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure0: function _TextSelectionGestureDetectorState_build_closure0(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure1: function _TextSelectionGestureDetectorState_build_closure1(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure2: function _TextSelectionGestureDetectorState_build_closure2(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure3: function _TextSelectionGestureDetectorState_build_closure3(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure4: function _TextSelectionGestureDetectorState_build_closure4(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure5: function _TextSelectionGestureDetectorState_build_closure5(t0) { this.$this = t0; }, _TextSelectionGestureDetectorState_build_closure6: function _TextSelectionGestureDetectorState_build_closure6(t0) { this.$this = t0; }, _TransparentTapGestureRecognizer: function _TransparentTapGestureRecognizer(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.onTertiaryTapCancel = _.onTertiaryTapUp = _.onTertiaryTapDown = _.onSecondaryTapCancel = _.onSecondaryTapUp = _.onSecondaryTapDown = _.onSecondaryTap = _.onTapCancel = _.onTap = _.onTapUp = _.onTapDown = null; _._wonArenaForPrimaryPointer = _._sentTapDown = false; _._up = _._down = null; _.deadline = t0; _.postAcceptSlopTolerance = t1; _.state = t2; _.initialPosition = _.primaryPointer = null; _._gestureAccepted = false; _._recognizer$_timer = null; _._recognizer$_entries = t3; _._trackedPointers = t4; _._team = null; _.debugOwner = t5; _._kindFilter = t6; _._pointerToKind = t7; }, __TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin: function __TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin() { }, WillPopScope: function WillPopScope(t0, t1, t2) { this.child = t0; this.onWillPop = t1; this.key = t2; }, _WillPopScopeState: function _WillPopScopeState(t0) { var _ = this; _._widget = _._route = null; _._debugLifecycleState = t0; _._framework$_element = null; }, DashboardSettings_fromState: function(state) { var settings = state.settings, t1 = new F.DashboardSettings(); t1.dateRange = settings.dateRange; t1.startDate = settings.customStartDate; t1.endDate = settings.customEndDate; t1.enableComparison = settings.enableComparison; t1.compareDateRange = settings.compareDateRange; t1.compareStartDate = settings.compareCustomStartDate; t1.compareEndDate = settings.compareCustomEndDate; return t1; }, _$valueOf0: function($name) { switch ($name) { case "last7Days": return C.DateRange_last7Days; case "last30Days": return C.DateRange_last30Days; case "thisMonth": return C.DateRange_thisMonth; case "lastMonth": return C.DateRange_lastMonth; case "thisQuarter": return C.DateRange_thisQuarter; case "lastQuarter": return C.DateRange_lastQuarter; case "thisYear": return C.DateRange_thisYear; case "lastYear": return C.DateRange_lastYear; case "custom": return C.DateRange_custom; default: throw H.wrapException(P.ArgumentError$($name)); } }, _$comparisonValueOf: function($name) { switch ($name) { case "previousPeriod": return C.DateRangeComparison_previousPeriod; case "previousYear": return C.DateRangeComparison_previousYear; case "customRange": return C.DateRangeComparison_customRange; default: throw H.wrapException(P.ArgumentError$($name)); } }, DateRange: function DateRange(t0) { this.name = t0; }, DateRangeComparison: function DateRangeComparison(t0) { this.name = t0; }, DashboardSettings: function DashboardSettings() { var _ = this; _.compareEndDate = _.compareStartDate = _.compareDateRange = _.enableComparison = _.endDate = _.startDate = _.dateRange = null; }, _$DateRangeSerializer: function _$DateRangeSerializer() { }, _$DateRangeComparisonSerializer: function _$DateRangeComparisonSerializer() { }, PaymentEntity_PaymentEntity: function(client, id, state) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _null = null; if (id == null) { t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; } else t1 = id; t2 = Y.convertDateTimeToSqlDate(_null); t3 = state == null; if (t3) t4 = _null; else { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = J.$index$asx(t4._list, t5).userCompany.company; t4 = t5; } if (t4 != null) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = J.$index$asx(t4._list, t5).userCompany.company.settings.defaultPaymentTypeId; t4 = (t5 == null ? "" : t5).length !== 0; } else t4 = false; if (t4) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = J.$index$asx(t4._list, t5).userCompany.company.settings.defaultPaymentTypeId; t4 = t5; } else t4 = ""; t5 = client == null ? _null : client.id; if (t5 == null) t5 = ""; if (t3) t6 = _null; else { t6 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t7 = J.$index$asx(t6._list, t7).userCompany.company; t6 = t7; } if (t6 == null) t6 = _null; else { t6 = t6.settings.currencyId; if (t6 == null) t6 = "1"; } if (t6 == null) t6 = ""; t7 = type$.legacy_PaymentableEntity; t8 = D.BuiltList_BuiltList$from(C.List_empty, t7); t9 = D.BuiltList_BuiltList$from(C.List_empty, t7); t7 = D.BuiltList_BuiltList$from(C.List_empty, t7); if (t3) t3 = _null; else { t3 = state.userCompanyStates; t10 = state.uiState.selectedCompanyIndex; t10 = J.$index$asx(t3._list, t10).userCompany.company; t3 = t10; } t3 = t3 == null ? _null : t3.settings; return F._$PaymentEntity$_(0, 0, 0, "", "", t5, "", 0, "", t7, "", "", "", "", "", t2, t6, 1, _null, t1, "", t9, false, false, false, false, true, "", t8, "", "", 0, t3 == null ? _null : t3.clientManualPaymentNotification, "", "", t4, 0, ""); }, PaymentableEntity_PaymentableEntity: function(amount, creditId, invoiceId) { var t2, t3, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; t2 = invoiceId == null ? "" : invoiceId; t3 = creditId == null ? "" : creditId; return F._$PaymentableEntity$_(amount == null ? 0 : amount, null, t3, t1, t2, null); }, _$PaymentEntity$_: function(amount, applied, archivedAt, assignedUserId, clientContactId, clientId, companyGatewayId, createdAt, createdUserId, credits, currencyId, customValue1, customValue2, customValue3, customValue4, date, exchangeCurrencyId, exchangeRate, gatewayRefund, id, invitationId, invoices, isApplying, isChanged, isDeleted, isForInvoice, isManual, number, paymentables, privateNotes, projectId, refunded, sendEmail, statusId, transactionReference, typeId, updatedAt, vendorId) { var _s13_ = "PaymentEntity"; if (date == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "date")); if (typeId == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "typeId")); if (paymentables == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paymentables")); if (invoices == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoices")); if (credits == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "credits")); return new F._$PaymentEntity(amount, applied, refunded, number, clientId, statusId, transactionReference, date, typeId, privateNotes, customValue1, customValue2, customValue3, customValue4, exchangeRate, exchangeCurrencyId, isManual, projectId, vendorId, invitationId, clientContactId, companyGatewayId, currencyId, isForInvoice, isApplying, sendEmail, gatewayRefund, paymentables, invoices, credits, isChanged, createdAt, updatedAt, archivedAt, isDeleted, createdUserId, assignedUserId, id); }, _$PaymentableEntity$_: function(amount, createdAt, creditId, id, invoiceId, updatedAt) { return new F._$PaymentableEntity(createdAt, updatedAt, invoiceId, creditId, amount, id); }, PaymentListResponse: function PaymentListResponse() { }, PaymentItemResponse: function PaymentItemResponse() { }, PaymentEntity: function PaymentEntity() { }, PaymentEntity_invoicePaymentables_closure: function PaymentEntity_invoicePaymentables_closure() { }, PaymentEntity_creditPaymentables_closure: function PaymentEntity_creditPaymentables_closure() { }, PaymentEntity_invoiceId_closure: function PaymentEntity_invoiceId_closure() { }, PaymentableEntity: function PaymentableEntity() { }, _$PaymentListResponseSerializer: function _$PaymentListResponseSerializer() { }, _$PaymentItemResponseSerializer: function _$PaymentItemResponseSerializer() { }, _$PaymentEntitySerializer: function _$PaymentEntitySerializer() { }, _$PaymentableEntitySerializer: function _$PaymentableEntitySerializer() { }, _$PaymentListResponse: function _$PaymentListResponse(t0) { this.data = t0; this._payment_model$__hashCode = null; }, PaymentListResponseBuilder: function PaymentListResponseBuilder() { this._payment_model$_data = this._payment_model$_$v = null; }, _$PaymentItemResponse: function _$PaymentItemResponse(t0) { this.data = t0; this._payment_model$__hashCode = null; }, PaymentItemResponseBuilder: function PaymentItemResponseBuilder() { this._payment_model$_data = this._payment_model$_$v = null; }, _$PaymentEntity: function _$PaymentEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37) { var _ = this; _.amount = t0; _.applied = t1; _.refunded = t2; _.number = t3; _.clientId = t4; _.statusId = t5; _.transactionReference = t6; _.date = t7; _.typeId = t8; _.privateNotes = t9; _.customValue1 = t10; _.customValue2 = t11; _.customValue3 = t12; _.customValue4 = t13; _.exchangeRate = t14; _.exchangeCurrencyId = t15; _.isManual = t16; _.projectId = t17; _.vendorId = t18; _.invitationId = t19; _.clientContactId = t20; _.companyGatewayId = t21; _.currencyId = t22; _.isForInvoice = t23; _.isApplying = t24; _.sendEmail = t25; _.gatewayRefund = t26; _.paymentables = t27; _.invoices = t28; _.credits = t29; _.isChanged = t30; _.createdAt = t31; _.updatedAt = t32; _.archivedAt = t33; _.isDeleted = t34; _.createdUserId = t35; _.assignedUserId = t36; _.id = t37; _._payment_model$__hashCode = null; }, PaymentEntityBuilder: function PaymentEntityBuilder() { var _ = this; _._payment_model$_invoices = _._paymentables = _._gatewayRefund = _._sendEmail = _._isApplying = _._isForInvoice = _._payment_model$_currencyId = _._companyGatewayId = _._clientContactId = _._invitationId = _._vendorId = _._projectId = _._isManual = _._exchangeCurrencyId = _._payment_model$_exchangeRate = _._payment_model$_customValue4 = _._payment_model$_customValue3 = _._payment_model$_customValue2 = _._payment_model$_customValue1 = _._payment_model$_privateNotes = _._typeId = _._payment_model$_date = _._transactionReference = _._payment_model$_statusId = _._payment_model$_clientId = _._payment_model$_number = _._refunded = _._applied = _._payment_model$_amount = _._payment_model$_$v = null; _._payment_model$_id = _._payment_model$_assignedUserId = _._payment_model$_createdUserId = _._payment_model$_isDeleted = _._payment_model$_archivedAt = _._payment_model$_updatedAt = _._payment_model$_createdAt = _._payment_model$_isChanged = _._payment_model$_credits = null; }, _$PaymentableEntity: function _$PaymentableEntity(t0, t1, t2, t3, t4, t5) { var _ = this; _.createdAt = t0; _.updatedAt = t1; _.invoiceId = t2; _.creditId = t3; _.amount = t4; _.id = t5; _._payment_model$__hashCode = null; }, PaymentableEntityBuilder: function PaymentableEntityBuilder() { var _ = this; _._payment_model$_id = _._payment_model$_amount = _._creditId = _._payment_model$_invoiceId = _._payment_model$_updatedAt = _._payment_model$_createdAt = _._payment_model$_$v = null; }, _PaymentEntity_Object_BaseEntity: function _PaymentEntity_Object_BaseEntity() { }, _PaymentEntity_Object_BaseEntity_SelectableEntity: function _PaymentEntity_Object_BaseEntity_SelectableEntity() { }, _PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient: function _PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient() { }, _PaymentableEntity_Object_SelectableEntity: function _PaymentableEntity_Object_SelectableEntity() { }, DatetimeFormatListResponse: function DatetimeFormatListResponse() { }, DatetimeFormatItemResponse: function DatetimeFormatItemResponse() { }, DatetimeFormatEntity: function DatetimeFormatEntity() { }, _$DatetimeFormatListResponseSerializer: function _$DatetimeFormatListResponseSerializer() { }, _$DatetimeFormatItemResponseSerializer: function _$DatetimeFormatItemResponseSerializer() { }, _$DatetimeFormatEntitySerializer: function _$DatetimeFormatEntitySerializer() { }, _$DatetimeFormatListResponse: function _$DatetimeFormatListResponse(t0) { this.data = t0; this._datetime_format_model$__hashCode = null; }, DatetimeFormatListResponseBuilder: function DatetimeFormatListResponseBuilder() { this._datetime_format_model$_data = this._datetime_format_model$_$v = null; }, _$DatetimeFormatItemResponse: function _$DatetimeFormatItemResponse(t0) { this.data = t0; this._datetime_format_model$__hashCode = null; }, DatetimeFormatItemResponseBuilder: function DatetimeFormatItemResponseBuilder() { this._datetime_format_model$_data = this._datetime_format_model$_$v = null; }, _$DatetimeFormatEntity: function _$DatetimeFormatEntity(t0, t1) { this.id = t0; this.format = t1; this._datetime_format_model$__hashCode = null; }, DatetimeFormatEntityBuilder: function DatetimeFormatEntityBuilder() { this._datetime_format_model$_format = this._datetime_format_model$_id = this._datetime_format_model$_$v = null; }, _$InvoiceStatusEntity$_: function(id, $name) { return new F._$InvoiceStatusEntity(id, $name); }, InvoiceStatusEntity: function InvoiceStatusEntity() { }, _$InvoiceStatusEntitySerializer: function _$InvoiceStatusEntitySerializer() { }, _$InvoiceStatusEntity: function _$InvoiceStatusEntity(t0, t1) { this.id = t0; this.name = t1; this._invoice_status_model$__hashCode = null; }, InvoiceStatusEntityBuilder: function InvoiceStatusEntityBuilder() { this._invoice_status_model$_name = this._invoice_status_model$_id = this._invoice_status_model$_$v = null; }, _InvoiceStatusEntity_Object_EntityStatus: function _InvoiceStatusEntity_Object_EntityStatus() { }, SystemLogEntity: function SystemLogEntity() { }, _$SystemLogEntitySerializer: function _$SystemLogEntitySerializer() { }, _$SystemLogEntity: function _$SystemLogEntity(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.id = t0; _.companyId = t1; _.userId = t2; _.clientId = t3; _.eventId = t4; _.categoryId = t5; _.typeId = t6; _.log = t7; _.createdAt = t8; _._system_log_model$__hashCode = null; }, SystemLogEntityBuilder: function SystemLogEntityBuilder() { var _ = this; _._system_log_model$_createdAt = _._log = _._system_log_model$_typeId = _._system_log_model$_categoryId = _._system_log_model$_eventId = _._system_log_model$_clientId = _._userId = _._companyId = _._system_log_model$_id = _._system_log_model$_$v = null; }, _getHeaders: function(url, token, idToken, password, secret) { var t1, headers; if (C.JSString_methods.startsWith$1(url, "https://invoicing.co")) secret = ""; t1 = type$.legacy_String; headers = P.LinkedHashMap_LinkedHashMap$_literal(["X-CLIENT-VERSION", "5.0.62", "X-API-SECRET", secret, "X-Requested-With", "XMLHttpRequest", "Content-Type", "application/json; charset=utf-8"], t1, t1); if (token.length !== 0) headers.$indexSet(0, "X-API-Token", token); if ((idToken == null ? "" : idToken).length !== 0) headers.$indexSet(0, "X-API-OAUTH-PASSWORD", idToken); if ((password == null ? "" : password).length !== 0) { t1 = C.C_Utf8Codec.get$encoder().convert$1(password); headers.$indexSet(0, "X-API-PASSWORD-BASE64", C.C_Base64Codec.get$encoder().convert$1(t1)); } return headers; }, _checkResponse: function(response) { var t1, serverVersion, minClientVersion, t2; P.print("Response: " + Y.formatSize(B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes).length)); t1 = response.headers; serverVersion = t1.$index(0, "x-app-version"); minClientVersion = t1.$index(0, "x-minimum-client-version"); t1 = response.statusCode; if (t1 >= 500) throw H.wrapException(F._parseError(t1, response.get$body(response))); else if (serverVersion == null) throw H.wrapException("Error: please check that Invoice Ninja v5 is installed on the server"); else { t2 = Q.Version__compare(Q.Version_parse("5.0.62"), Q.Version_parse(minClientVersion)); if (t2 < 0) throw H.wrapException("Error: client not supported, please update to the latest version [Current v5.0.62 < Minimum v" + H.S(minClientVersion) + "]"); else { t2 = Q.Version__compare(Q.Version_parse(serverVersion), Q.Version_parse("5.0.4")); if (t2 < 0) throw H.wrapException("Error: server not supported, please update to the latest version [Current v" + serverVersion + " < Minimum v5.0.4]"); else if (t1 >= 400) throw H.wrapException(F._parseError(t1, response.get$body(response))); } } }, _parseError: function(code, response) { var jsonResponse, error, error0, message, exception, _s6_ = "errors", _s23_ = "Failed to parse error: ", t1 = {}; t1.message = response; if (C.JSString_methods.contains$1(response, "DOCTYPE html")) return H.S(code) + ": An error occurred"; try { jsonResponse = C.C_JsonCodec.decode$1(0, response); message = J.$index$asx(jsonResponse, "message"); if (message == null) message = jsonResponse; t1.message = message; if (J.$index$asx(jsonResponse, _s6_) != null && J.get$isNotEmpty$asx(type$.legacy_Map_dynamic_dynamic._as(J.$index$asx(jsonResponse, _s6_)))) { t1.message = J.$add$ansx(message, "\n"); try { J.forEach$1$ax(J.$index$asx(jsonResponse, _s6_), new F._parseError_closure(t1)); } catch (exception) { error = H.unwrapException(exception); P.print(_s23_ + H.S(error)); } } } catch (exception) { error0 = H.unwrapException(exception); P.print(_s23_ + H.S(error0)); } return H.S(code) + ": " + H.S(t1.message); }, _uploadFiles: function(url, token, multipartFiles, data, fileIndex, method) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, t1, request, $async$temp1; var $async$_uploadFiles = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start request = D.MultipartRequest$(method, P.Uri_parse(url, 0, null)); if (data == null) { t1 = type$.legacy_String; t1 = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } else t1 = data; request.fields.addAll$1(0, t1); request.headers.addAll$1(0, F._getHeaders(url, token, null, null, null)); C.JSArray_methods.addAll$1(request.files, multipartFiles); $async$temp1 = U; $async$goto = 4; return P._asyncAwait(request.send$0(0), $async$_uploadFiles); case 4: // returning from await. $async$goto = 3; return P._asyncAwait($async$temp1.Response_fromStream($async$result).timeout$1(0, C.Duration_600000000), $async$_uploadFiles); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_uploadFiles, $async$completer); }, WebClient: function WebClient() { }, _parseError_closure: function _parseError_closure(t0) { this._box_0 = t0; }, _parseError__closure: function _parseError__closure(t0) { this._box_0 = t0; }, main: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), t1, t2, t3, userLogout, userLogoutAll, loginRequest, oauthLoginRequest, signUpRequest, oauthSignUpRequest, refreshRequest, recoverRequest, addCompany, deleteCompany, setDefaultCompany, purgeData, resendConfirmation, t4, viewDocumentList, viewDocument, editDocument, loadDocuments, loadDocument, archiveDocument, deleteDocument, restoreDocument, viewDashboard, viewProductList, viewProduct, editProduct, loadProducts, loadProduct, saveProduct, archiveProduct, deleteProduct, restoreProduct, saveDocument, viewClientList, viewClient, editClient, showPdfClient, loadClients, loadClient, saveClient, archiveClient, deleteClient, restoreClient, viewInvoiceList, viewInvoice, editInvoice, showEmailInvoice, showPdfInvoice, loadInvoices, loadInvoice, saveInvoice, archiveInvoice, deleteInvoice, restoreInvoice, emailInvoice, bulkEmailInvoices, markInvoiceSent, markInvoicePaid, reverseInvoices, cancelInvoices, downloadInvoices, viewExpenseList, viewExpense, editExpense, loadExpenses, loadExpense, saveExpense, archiveExpense, deleteExpense, restoreExpense, viewVendorList, viewVendor, editVendor, loadVendors, loadVendor, saveVendor, archiveVendor, deleteVendor, restoreVendor, viewTaskList, viewTask, editTask, loadTasks, loadTask, saveTask, archiveTask, deleteTask, restoreTask, sortTasks, viewProjectList, viewProject, editProject, loadProjects, loadProject, saveProject, archiveProject, deleteProject, restoreProject, viewPaymentList, viewPayment, editPayment, viewRefundPayment, loadPayments, loadPayment, savePayment, refundPayment, archivePayment, deletePayment, restorePayment, emailPayment, viewQuoteList, viewQuote, editQuote, showEmailQuote, showPdfQuote, convertQuote, loadQuotes, loadQuote, saveQuote, archiveQuote, deleteQuote, restoreQuote, emailQuote, bulkEmailQuotes, markSentQuote, downloadQuotes, viewSettings, saveCompany, saveAuthUser, connectOAuthUser, connectGmailUser, saveSettings, uploadLogo, disableTwoFactor, viewReports, viewRecurringExpenseList, viewRecurringExpense, editRecurringExpense, loadRecurringExpenses, loadRecurringExpense, saveRecurringExpense, archiveRecurringExpense, deleteRecurringExpense, restoreRecurringExpense, startRecurringExpense, stopRecurringExpense, viewSubscriptionList, viewSubscription, editSubscription, loadSubscriptions, loadSubscription, saveSubscription, archiveSubscription, deleteSubscription, restoreSubscription, viewTaskStatusList, viewTaskStatus, editTaskStatus, loadTaskStatuses, loadTaskStatus, saveTaskStatus, archiveTaskStatus, deleteTaskStatus, restoreTaskStatus, viewExpenseCategoryList, viewExpenseCategory, editExpenseCategory, loadExpenseCategories, loadExpenseCategory, saveExpenseCategory, archiveExpenseCategory, deleteExpenseCategory, restoreExpenseCategory, viewRecurringInvoiceList, viewRecurringInvoice, editRecurringInvoice, showPdfRecurringInvoice, loadRecurringInvoices, loadRecurringInvoice, saveRecurringInvoice, archiveRecurringInvoice, deleteRecurringInvoice, restoreRecurringInvoice, startRecurringInvoice, stopRecurringInvoice, viewWebhookList, viewWebhook, editWebhook, loadWebhooks, loadWebhook, saveWebhook, archiveWebhook, deleteWebhook, restoreWebhook, viewTokenList, viewToken, editToken, loadTokens, loadToken, saveToken, archiveToken, deleteToken, restoreToken, viewPaymentTermList, viewPaymentTerm, editPaymentTerm, loadPaymentTerms, loadPaymentTerm, savePaymentTerm, archivePaymentTerm, deletePaymentTerm, restorePaymentTerm, viewDesignList, viewDesign, editDesign, loadDesigns, loadDesign, saveDesign, archiveDesign, deleteDesign, restoreDesign, viewCreditList, viewCredit, editCredit, showEmailCredit, showPdfCredit, loadCredits, loadCredit, saveCredit, archiveCredit, deleteCredit, restoreCredit, emailCredit, bulkEmailCredits, markSentCredit, downloadCredits, viewUserList, viewUser, editUser, loadUsers, loadUser, saveUser, archiveUser, deleteUser, restoreUser, removeUser, resendInvite, viewTaxRateList, viewTaxRate, editTaxRate, loadTaxRates, loadTaxRate, saveTaxRate, archiveTaxRate, deleteTaxRate, restoreTaxRate, viewCompanyGatewayList, viewCompanyGateway, editCompanyGateway, loadCompanyGateways, loadCompanyGateway, saveCompanyGateway, archiveCompanyGateway, deleteCompanyGateway, restoreCompanyGateway, viewGroupList, viewGroup, editGroup, loadGroups, loadGroup, saveGroup, archiveGroup, deleteGroup, restoreGroup, loadState, accountLoaded, dataRefreshed, persistData, persistStatic, userLoggedIn, persistUI, persistPrefs, deleteState, viewMainScreen, store; var $async$main = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.WidgetsBinding__instance == null) N.WidgetsFlutterBinding$(); $.WidgetsBinding__instance.toString; $async$goto = 2; return P._asyncAwait(F._initialState(false), $async$main); case 2: // returning from await. t1 = $async$result; t2 = type$.JSArray_of_legacy_dynamic_Function_3_legacy_Store_legacy_AppState_and_dynamic_and_legacy_dynamic_Function_dynamic; t3 = H.setRuntimeTypeInfo([], t2); userLogout = V._createUserLogout(); userLogoutAll = V._createUserLogoutAll(C.C_AuthRepository); loginRequest = V._createLoginRequest(C.C_AuthRepository); oauthLoginRequest = V._createOAuthLoginRequest(C.C_AuthRepository); signUpRequest = V._createSignUpRequest(C.C_AuthRepository); oauthSignUpRequest = V._createOAuthSignUpRequest(C.C_AuthRepository); refreshRequest = V._createRefreshRequest(C.C_AuthRepository); recoverRequest = V._createRecoverRequest(C.C_AuthRepository); addCompany = V._createCompany(C.C_AuthRepository); deleteCompany = V._deleteCompany(C.C_AuthRepository); setDefaultCompany = V._setDefaultCompany(C.C_AuthRepository); purgeData = V._purgeData(C.C_AuthRepository); resendConfirmation = V._resendConfirmation(C.C_AuthRepository); t4 = type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLogout; C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(userLogout, t4).get$$call(), new B.TypedMiddleware(userLogoutAll, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLogoutAll).get$$call(), new B.TypedMiddleware(loginRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginRequest).get$$call(), new B.TypedMiddleware(oauthLoginRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_OAuthLoginRequest).get$$call(), new B.TypedMiddleware(signUpRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserSignUpRequest).get$$call(), new B.TypedMiddleware(oauthSignUpRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_OAuthSignUpRequest).get$$call(), new B.TypedMiddleware(refreshRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefreshData).get$$call(), new B.TypedMiddleware(recoverRequest, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RecoverPasswordRequest).get$$call(), new B.TypedMiddleware(addCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_AddCompany).get$$call(), new B.TypedMiddleware(deleteCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyRequest).get$$call(), new B.TypedMiddleware(setDefaultCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SetDefaultCompanyRequest).get$$call(), new B.TypedMiddleware(purgeData, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PurgeDataRequest).get$$call(), new B.TypedMiddleware(resendConfirmation, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ResendConfirmation).get$$call()], t2)); viewDocumentList = Y._viewDocumentList(); viewDocument = Y._viewDocument(); editDocument = Y._editDocument(); loadDocuments = Y._loadDocuments(C.C_DocumentRepository); loadDocument = Y._loadDocument(C.C_DocumentRepository); archiveDocument = Y._archiveDocument(C.C_DocumentRepository); deleteDocument = Y._deleteDocument(C.C_DocumentRepository); restoreDocument = Y._restoreDocument(C.C_DocumentRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewDocumentList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocumentList).get$$call(), new B.TypedMiddleware(viewDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocument).get$$call(), new B.TypedMiddleware(editDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditDocument).get$$call(), new B.TypedMiddleware(loadDocuments, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocuments).get$$call(), new B.TypedMiddleware(loadDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocument).get$$call(), new B.TypedMiddleware(archiveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDocumentRequest).get$$call(), new B.TypedMiddleware(deleteDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDocumentRequest).get$$call(), new B.TypedMiddleware(restoreDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDocumentRequest).get$$call()], t2)); viewDashboard = R._createViewDashboard(); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewDashboard, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDashboard).get$$call()], t2)); viewProductList = E._viewProductList(); viewProduct = E._viewProduct(); editProduct = E._editProduct(); loadProducts = E._loadProducts(C.C_ProductRepository); loadProduct = E._loadProduct(C.C_ProductRepository); saveProduct = E._saveProduct(C.C_ProductRepository); archiveProduct = E._archiveProduct(C.C_ProductRepository); deleteProduct = E._deleteProduct(C.C_ProductRepository); restoreProduct = E._restoreProduct(C.C_ProductRepository); saveDocument = E._saveDocument(C.C_ProductRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewProductList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProductList).get$$call(), new B.TypedMiddleware(viewProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProduct).get$$call(), new B.TypedMiddleware(editProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditProduct).get$$call(), new B.TypedMiddleware(loadProducts, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProducts).get$$call(), new B.TypedMiddleware(loadProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProduct).get$$call(), new B.TypedMiddleware(saveProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductRequest).get$$call(), new B.TypedMiddleware(archiveProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProductsRequest).get$$call(), new B.TypedMiddleware(deleteProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProductsRequest).get$$call(), new B.TypedMiddleware(restoreProduct, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProductsRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductDocumentRequest).get$$call()], t2)); viewClientList = Q._viewClientList(); viewClient = Q._viewClient(); editClient = Q._editClient(); showPdfClient = Q._showPdfClient(); loadClients = Q._loadClients(C.C_ClientRepository); loadClient = Q._loadClient(C.C_ClientRepository); saveClient = Q._saveClient(C.C_ClientRepository); archiveClient = Q._archiveClient(C.C_ClientRepository); deleteClient = Q._deleteClient(C.C_ClientRepository); restoreClient = Q._restoreClient(C.C_ClientRepository); saveDocument = Q._saveDocument0(C.C_ClientRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewClientList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewClientList).get$$call(), new B.TypedMiddleware(viewClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewClient).get$$call(), new B.TypedMiddleware(editClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditClient).get$$call(), new B.TypedMiddleware(showPdfClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfClient).get$$call(), new B.TypedMiddleware(loadClients, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadClients).get$$call(), new B.TypedMiddleware(loadClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadClient).get$$call(), new B.TypedMiddleware(saveClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientRequest).get$$call(), new B.TypedMiddleware(archiveClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveClientsRequest).get$$call(), new B.TypedMiddleware(deleteClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteClientsRequest).get$$call(), new B.TypedMiddleware(restoreClient, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreClientsRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientDocumentRequest).get$$call()], t2)); viewInvoiceList = G._viewInvoiceList(); viewInvoice = G._viewInvoice(); editInvoice = G._editInvoice(); showEmailInvoice = G._showEmailInvoice(); showPdfInvoice = G._showPdfInvoice(); loadInvoices = G._loadInvoices(C.C_InvoiceRepository); loadInvoice = G._loadInvoice(C.C_InvoiceRepository); saveInvoice = G._saveInvoice(C.C_InvoiceRepository); archiveInvoice = G._archiveInvoice(C.C_InvoiceRepository); deleteInvoice = G._deleteInvoice(C.C_InvoiceRepository); restoreInvoice = G._restoreInvoice(C.C_InvoiceRepository); emailInvoice = G._emailInvoice(C.C_InvoiceRepository); bulkEmailInvoices = G._bulkEmailInvoices(C.C_InvoiceRepository); markInvoiceSent = G._markInvoiceSent(C.C_InvoiceRepository); markInvoicePaid = G._markInvoicePaid(C.C_InvoiceRepository); reverseInvoices = G._reverseInvoices(C.C_InvoiceRepository); cancelInvoices = G._cancelInvoices(C.C_InvoiceRepository); downloadInvoices = G._downloadInvoices(C.C_InvoiceRepository); saveDocument = G._saveDocument1(C.C_InvoiceRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewInvoiceList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoiceList).get$$call(), new B.TypedMiddleware(viewInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoice).get$$call(), new B.TypedMiddleware(editInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditInvoice).get$$call(), new B.TypedMiddleware(showEmailInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailInvoice).get$$call(), new B.TypedMiddleware(showPdfInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfInvoice).get$$call(), new B.TypedMiddleware(loadInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoices).get$$call(), new B.TypedMiddleware(loadInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoice).get$$call(), new B.TypedMiddleware(saveInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceRequest).get$$call(), new B.TypedMiddleware(archiveInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveInvoicesRequest).get$$call(), new B.TypedMiddleware(deleteInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteInvoicesRequest).get$$call(), new B.TypedMiddleware(restoreInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreInvoicesRequest).get$$call(), new B.TypedMiddleware(emailInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailInvoiceRequest).get$$call(), new B.TypedMiddleware(bulkEmailInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailInvoicesRequest).get$$call(), new B.TypedMiddleware(markInvoiceSent, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesSentRequest).get$$call(), new B.TypedMiddleware(markInvoicePaid, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesPaidRequest).get$$call(), new B.TypedMiddleware(reverseInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ReverseInvoicesRequest).get$$call(), new B.TypedMiddleware(cancelInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_CancelInvoicesRequest).get$$call(), new B.TypedMiddleware(downloadInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadInvoicesRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceDocumentRequest).get$$call()], t2)); viewExpenseList = R._viewExpenseList(); viewExpense = R._viewExpense(); editExpense = R._editExpense(); loadExpenses = R._loadExpenses(C.C_ExpenseRepository); loadExpense = R._loadExpense(C.C_ExpenseRepository); saveExpense = R._saveExpense(C.C_ExpenseRepository); archiveExpense = R._archiveExpense(C.C_ExpenseRepository); deleteExpense = R._deleteExpense(C.C_ExpenseRepository); restoreExpense = R._restoreExpense(C.C_ExpenseRepository); saveDocument = R._saveDocument2(C.C_ExpenseRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewExpenseList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseList).get$$call(), new B.TypedMiddleware(viewExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpense).get$$call(), new B.TypedMiddleware(editExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditExpense).get$$call(), new B.TypedMiddleware(loadExpenses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenses).get$$call(), new B.TypedMiddleware(loadExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpense).get$$call(), new B.TypedMiddleware(saveExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseRequest).get$$call(), new B.TypedMiddleware(archiveExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseRequest).get$$call(), new B.TypedMiddleware(deleteExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseRequest).get$$call(), new B.TypedMiddleware(restoreExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseDocumentRequest).get$$call()], t2)); viewVendorList = F._viewVendorList(); viewVendor = F._viewVendor(); editVendor = F._editVendor(); loadVendors = F._loadVendors(C.C_VendorRepository); loadVendor = F._loadVendor(C.C_VendorRepository); saveVendor = F._saveVendor(C.C_VendorRepository); archiveVendor = F._archiveVendor(C.C_VendorRepository); deleteVendor = F._deleteVendor(C.C_VendorRepository); restoreVendor = F._restoreVendor(C.C_VendorRepository); saveDocument = F._saveDocument3(C.C_VendorRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewVendorList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendorList).get$$call(), new B.TypedMiddleware(viewVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendor).get$$call(), new B.TypedMiddleware(editVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditVendor).get$$call(), new B.TypedMiddleware(loadVendors, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendors).get$$call(), new B.TypedMiddleware(loadVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendor).get$$call(), new B.TypedMiddleware(saveVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorRequest).get$$call(), new B.TypedMiddleware(archiveVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveVendorRequest).get$$call(), new B.TypedMiddleware(deleteVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteVendorRequest).get$$call(), new B.TypedMiddleware(restoreVendor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreVendorRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorDocumentRequest).get$$call()], t2)); viewTaskList = U._viewTaskList(); viewTask = U._viewTask(); editTask = U._editTask(); loadTasks = U._loadTasks(C.C_TaskRepository); loadTask = U._loadTask(C.C_TaskRepository); saveTask = U._saveTask(C.C_TaskRepository); archiveTask = U._archiveTask(C.C_TaskRepository); deleteTask = U._deleteTask(C.C_TaskRepository); restoreTask = U._restoreTask(C.C_TaskRepository); saveDocument = U._saveDocument4(C.C_TaskRepository); sortTasks = U._sortTasks(C.C_TaskRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewTaskList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskList).get$$call(), new B.TypedMiddleware(viewTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTask).get$$call(), new B.TypedMiddleware(editTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTask).get$$call(), new B.TypedMiddleware(loadTasks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTasks).get$$call(), new B.TypedMiddleware(loadTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTask).get$$call(), new B.TypedMiddleware(saveTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskRequest).get$$call(), new B.TypedMiddleware(archiveTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskRequest).get$$call(), new B.TypedMiddleware(deleteTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskRequest).get$$call(), new B.TypedMiddleware(restoreTask, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskDocumentRequest).get$$call(), new B.TypedMiddleware(sortTasks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SortTasksRequest).get$$call()], t2)); viewProjectList = Q._viewProjectList(); viewProject = Q._viewProject(); editProject = Q._editProject(); loadProjects = Q._loadProjects(C.C_ProjectRepository); loadProject = Q._loadProject(C.C_ProjectRepository); saveProject = Q._saveProject(C.C_ProjectRepository); archiveProject = Q._archiveProject(C.C_ProjectRepository); deleteProject = Q._deleteProject(C.C_ProjectRepository); restoreProject = Q._restoreProject(C.C_ProjectRepository); saveDocument = Q._saveDocument5(C.C_ProjectRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewProjectList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProjectList).get$$call(), new B.TypedMiddleware(viewProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewProject).get$$call(), new B.TypedMiddleware(editProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditProject).get$$call(), new B.TypedMiddleware(loadProjects, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProjects).get$$call(), new B.TypedMiddleware(loadProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadProject).get$$call(), new B.TypedMiddleware(saveProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectRequest).get$$call(), new B.TypedMiddleware(archiveProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProjectRequest).get$$call(), new B.TypedMiddleware(deleteProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProjectRequest).get$$call(), new B.TypedMiddleware(restoreProject, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProjectRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectDocumentRequest).get$$call()], t2)); viewPaymentList = D._viewPaymentList(); viewPayment = D._viewPayment(); editPayment = D._editPayment(); viewRefundPayment = D._viewRefundPayment(); loadPayments = D._loadPayments(C.C_PaymentRepository); loadPayment = D._loadPayment(C.C_PaymentRepository); savePayment = D._savePayment(C.C_PaymentRepository); refundPayment = D._refundPayment(C.C_PaymentRepository); archivePayment = D._archivePayment(C.C_PaymentRepository); deletePayment = D._deletePayment(C.C_PaymentRepository); restorePayment = D._restorePayment(C.C_PaymentRepository); emailPayment = D._emailPayment(C.C_PaymentRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewPaymentList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentList).get$$call(), new B.TypedMiddleware(viewPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPayment).get$$call(), new B.TypedMiddleware(editPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditPayment).get$$call(), new B.TypedMiddleware(viewRefundPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRefundPayment).get$$call(), new B.TypedMiddleware(loadPayments, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayments).get$$call(), new B.TypedMiddleware(loadPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayment).get$$call(), new B.TypedMiddleware(savePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentRequest).get$$call(), new B.TypedMiddleware(refundPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefundPaymentRequest).get$$call(), new B.TypedMiddleware(archivePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentsRequest).get$$call(), new B.TypedMiddleware(deletePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentsRequest).get$$call(), new B.TypedMiddleware(restorePayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentsRequest).get$$call(), new B.TypedMiddleware(emailPayment, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailPaymentRequest).get$$call()], t2)); viewQuoteList = S._viewQuoteList(); viewQuote = S._viewQuote(); editQuote = S._editQuote(); showEmailQuote = S._showEmailQuote(); showPdfQuote = S._showPdfQuote(); convertQuote = S._convertQuote(C.C_QuoteRepository); loadQuotes = S._loadQuotes(C.C_QuoteRepository); loadQuote = S._loadQuote(C.C_QuoteRepository); saveQuote = S._saveQuote(C.C_QuoteRepository); archiveQuote = S._archiveQuote(C.C_QuoteRepository); deleteQuote = S._deleteQuote(C.C_QuoteRepository); restoreQuote = S._restoreQuote(C.C_QuoteRepository); emailQuote = S._emailQuote(C.C_QuoteRepository); bulkEmailQuotes = S._bulkEmailQuotes(C.C_QuoteRepository); markSentQuote = S._markSentQuote(C.C_QuoteRepository); downloadQuotes = S._downloadQuotes(C.C_QuoteRepository); saveDocument = S._saveDocument6(C.C_QuoteRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewQuoteList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuoteList).get$$call(), new B.TypedMiddleware(viewQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuote).get$$call(), new B.TypedMiddleware(editQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditQuote).get$$call(), new B.TypedMiddleware(convertQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConvertQuotes).get$$call(), new B.TypedMiddleware(showEmailQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailQuote).get$$call(), new B.TypedMiddleware(showPdfQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfQuote).get$$call(), new B.TypedMiddleware(loadQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuotes).get$$call(), new B.TypedMiddleware(loadQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuote).get$$call(), new B.TypedMiddleware(saveQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteRequest).get$$call(), new B.TypedMiddleware(archiveQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveQuotesRequest).get$$call(), new B.TypedMiddleware(deleteQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteQuotesRequest).get$$call(), new B.TypedMiddleware(restoreQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreQuotesRequest).get$$call(), new B.TypedMiddleware(emailQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailQuoteRequest).get$$call(), new B.TypedMiddleware(bulkEmailQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailQuotesRequest).get$$call(), new B.TypedMiddleware(markSentQuote, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentQuotesRequest).get$$call(), new B.TypedMiddleware(downloadQuotes, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadQuotesRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteDocumentRequest).get$$call()], t2)); viewSettings = D._viewSettings(); saveCompany = D._saveCompany(C.C_SettingsRepository); saveAuthUser = D._saveAuthUser(C.C_SettingsRepository); connectOAuthUser = D._connectOAuthUser(C.C_SettingsRepository); connectGmailUser = D._connectGmailUser(C.C_SettingsRepository); saveSettings = D._saveSettings(C.C_SettingsRepository); uploadLogo = D._uploadLogo(C.C_SettingsRepository); saveDocument = D._saveDocument7(C.C_SettingsRepository); disableTwoFactor = D._disableTwoFactor(C.C_SettingsRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewSettings, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSettings).get$$call(), new B.TypedMiddleware(saveCompany, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyRequest).get$$call(), new B.TypedMiddleware(saveAuthUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveAuthUserRequest).get$$call(), new B.TypedMiddleware(connectOAuthUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConnecOAuthUserRequest).get$$call(), new B.TypedMiddleware(connectGmailUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ConnecGmailUserRequest).get$$call(), new B.TypedMiddleware(disableTwoFactor, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DisableTwoFactorRequest).get$$call(), new B.TypedMiddleware(saveSettings, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserSettingsRequest).get$$call(), new B.TypedMiddleware(uploadLogo, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UploadLogoRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyDocumentRequest).get$$call()], t2)); viewReports = R._viewReports(); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewReports, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewReports).get$$call()], t2)); viewRecurringExpenseList = R._viewRecurringExpenseList(); viewRecurringExpense = R._viewRecurringExpense(); editRecurringExpense = R._editRecurringExpense(); loadRecurringExpenses = R._loadRecurringExpenses(C.C_RecurringExpenseRepository); loadRecurringExpense = R._loadRecurringExpense(C.C_RecurringExpenseRepository); saveRecurringExpense = R._saveRecurringExpense(C.C_RecurringExpenseRepository); archiveRecurringExpense = R._archiveRecurringExpense(C.C_RecurringExpenseRepository); deleteRecurringExpense = R._deleteRecurringExpense(C.C_RecurringExpenseRepository); restoreRecurringExpense = R._restoreRecurringExpense(C.C_RecurringExpenseRepository); startRecurringExpense = R._startRecurringExpense(C.C_RecurringExpenseRepository); stopRecurringExpense = R._stopRecurringExpense(C.C_RecurringExpenseRepository); saveDocument = R._saveDocument8(C.C_RecurringExpenseRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewRecurringExpenseList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpenseList).get$$call(), new B.TypedMiddleware(viewRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpense).get$$call(), new B.TypedMiddleware(editRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringExpense).get$$call(), new B.TypedMiddleware(loadRecurringExpenses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpenses).get$$call(), new B.TypedMiddleware(loadRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpense).get$$call(), new B.TypedMiddleware(saveRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseRequest).get$$call(), new B.TypedMiddleware(archiveRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringExpensesRequest).get$$call(), new B.TypedMiddleware(deleteRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringExpensesRequest).get$$call(), new B.TypedMiddleware(restoreRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringExpensesRequest).get$$call(), new B.TypedMiddleware(startRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringExpensesRequest).get$$call(), new B.TypedMiddleware(stopRecurringExpense, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringExpensesRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseDocumentRequest).get$$call()], t2)); viewSubscriptionList = T._viewSubscriptionList(); viewSubscription = T._viewSubscription(); editSubscription = T._editSubscription(); loadSubscriptions = T._loadSubscriptions(C.C_SubscriptionRepository); loadSubscription = T._loadSubscription(C.C_SubscriptionRepository); saveSubscription = T._saveSubscription(C.C_SubscriptionRepository); archiveSubscription = T._archiveSubscription(C.C_SubscriptionRepository); deleteSubscription = T._deleteSubscription(C.C_SubscriptionRepository); restoreSubscription = T._restoreSubscription(C.C_SubscriptionRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewSubscriptionList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscriptionList).get$$call(), new B.TypedMiddleware(viewSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscription).get$$call(), new B.TypedMiddleware(editSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditSubscription).get$$call(), new B.TypedMiddleware(loadSubscriptions, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscriptions).get$$call(), new B.TypedMiddleware(loadSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscription).get$$call(), new B.TypedMiddleware(saveSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveSubscriptionRequest).get$$call(), new B.TypedMiddleware(archiveSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveSubscriptionsRequest).get$$call(), new B.TypedMiddleware(deleteSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteSubscriptionsRequest).get$$call(), new B.TypedMiddleware(restoreSubscription, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreSubscriptionsRequest).get$$call()], t2)); viewTaskStatusList = B._viewTaskStatusList(); viewTaskStatus = B._viewTaskStatus(); editTaskStatus = B._editTaskStatus(); loadTaskStatuses = B._loadTaskStatuses(C.C_TaskStatusRepository); loadTaskStatus = B._loadTaskStatus(C.C_TaskStatusRepository); saveTaskStatus = B._saveTaskStatus(C.C_TaskStatusRepository); archiveTaskStatus = B._archiveTaskStatus(C.C_TaskStatusRepository); deleteTaskStatus = B._deleteTaskStatus(C.C_TaskStatusRepository); restoreTaskStatus = B._restoreTaskStatus(C.C_TaskStatusRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewTaskStatusList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatusList).get$$call(), new B.TypedMiddleware(viewTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatus).get$$call(), new B.TypedMiddleware(editTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTaskStatus).get$$call(), new B.TypedMiddleware(loadTaskStatuses, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatuses).get$$call(), new B.TypedMiddleware(loadTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatus).get$$call(), new B.TypedMiddleware(saveTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskStatusRequest).get$$call(), new B.TypedMiddleware(archiveTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskStatusesRequest).get$$call(), new B.TypedMiddleware(deleteTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskStatusesRequest).get$$call(), new B.TypedMiddleware(restoreTaskStatus, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskStatusesRequest).get$$call()], t2)); viewExpenseCategoryList = M._viewExpenseCategoryList(); viewExpenseCategory = M._viewExpenseCategory(); editExpenseCategory = M._editExpenseCategory(); loadExpenseCategories = M._loadExpenseCategories(C.C_ExpenseCategoryRepository); loadExpenseCategory = M._loadExpenseCategory(C.C_ExpenseCategoryRepository); saveExpenseCategory = M._saveExpenseCategory(C.C_ExpenseCategoryRepository); archiveExpenseCategory = M._archiveExpenseCategory(C.C_ExpenseCategoryRepository); deleteExpenseCategory = M._deleteExpenseCategory(C.C_ExpenseCategoryRepository); restoreExpenseCategory = M._restoreExpenseCategory(C.C_ExpenseCategoryRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewExpenseCategoryList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategoryList).get$$call(), new B.TypedMiddleware(viewExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategory).get$$call(), new B.TypedMiddleware(editExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditExpenseCategory).get$$call(), new B.TypedMiddleware(loadExpenseCategories, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategories).get$$call(), new B.TypedMiddleware(loadExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategory).get$$call(), new B.TypedMiddleware(saveExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseCategoryRequest).get$$call(), new B.TypedMiddleware(archiveExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseCategoriesRequest).get$$call(), new B.TypedMiddleware(deleteExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseCategoriesRequest).get$$call(), new B.TypedMiddleware(restoreExpenseCategory, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseCategoriesRequest).get$$call()], t2)); viewRecurringInvoiceList = Q._viewRecurringInvoiceList(); viewRecurringInvoice = Q._viewRecurringInvoice(); editRecurringInvoice = Q._editRecurringInvoice(); showPdfRecurringInvoice = Q._showPdfRecurringInvoice(); loadRecurringInvoices = Q._loadRecurringInvoices(C.C_RecurringInvoiceRepository); loadRecurringInvoice = Q._loadRecurringInvoice(C.C_RecurringInvoiceRepository); saveRecurringInvoice = Q._saveRecurringInvoice(C.C_RecurringInvoiceRepository); archiveRecurringInvoice = Q._archiveRecurringInvoice(C.C_RecurringInvoiceRepository); deleteRecurringInvoice = Q._deleteRecurringInvoice(C.C_RecurringInvoiceRepository); restoreRecurringInvoice = Q._restoreRecurringInvoice(C.C_RecurringInvoiceRepository); startRecurringInvoice = Q._startRecurringInvoice(C.C_RecurringInvoiceRepository); stopRecurringInvoice = Q._stopRecurringInvoice(C.C_RecurringInvoiceRepository); saveDocument = Q._saveDocument9(C.C_RecurringInvoiceRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewRecurringInvoiceList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoiceList).get$$call(), new B.TypedMiddleware(viewRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoice).get$$call(), new B.TypedMiddleware(editRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringInvoice).get$$call(), new B.TypedMiddleware(loadRecurringInvoices, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoices).get$$call(), new B.TypedMiddleware(loadRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoice).get$$call(), new B.TypedMiddleware(showPdfRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfRecurringInvoice).get$$call(), new B.TypedMiddleware(saveRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceRequest).get$$call(), new B.TypedMiddleware(archiveRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringInvoicesRequest).get$$call(), new B.TypedMiddleware(deleteRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringInvoicesRequest).get$$call(), new B.TypedMiddleware(restoreRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringInvoicesRequest).get$$call(), new B.TypedMiddleware(startRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringInvoicesRequest).get$$call(), new B.TypedMiddleware(stopRecurringInvoice, type$.TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringInvoicesRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceDocumentRequest).get$$call()], t2)); viewWebhookList = T._viewWebhookList(); viewWebhook = T._viewWebhook(); editWebhook = T._editWebhook(); loadWebhooks = T._loadWebhooks(C.C_WebhookRepository); loadWebhook = T._loadWebhook(C.C_WebhookRepository); saveWebhook = T._saveWebhook(C.C_WebhookRepository); archiveWebhook = T._archiveWebhook(C.C_WebhookRepository); deleteWebhook = T._deleteWebhook(C.C_WebhookRepository); restoreWebhook = T._restoreWebhook(C.C_WebhookRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewWebhookList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhookList).get$$call(), new B.TypedMiddleware(viewWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhook).get$$call(), new B.TypedMiddleware(editWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditWebhook).get$$call(), new B.TypedMiddleware(loadWebhooks, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhooks).get$$call(), new B.TypedMiddleware(loadWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhook).get$$call(), new B.TypedMiddleware(saveWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveWebhookRequest).get$$call(), new B.TypedMiddleware(archiveWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveWebhooksRequest).get$$call(), new B.TypedMiddleware(deleteWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteWebhooksRequest).get$$call(), new B.TypedMiddleware(restoreWebhook, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreWebhooksRequest).get$$call()], t2)); viewTokenList = D._viewTokenList(); viewToken = D._viewToken(); editToken = D._editToken(); loadTokens = D._loadTokens(C.C_TokenRepository); loadToken = D._loadToken(C.C_TokenRepository); saveToken = D._saveToken(C.C_TokenRepository); archiveToken = D._archiveToken(C.C_TokenRepository); deleteToken = D._deleteToken(C.C_TokenRepository); restoreToken = D._restoreToken(C.C_TokenRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewTokenList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTokenList).get$$call(), new B.TypedMiddleware(viewToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewToken).get$$call(), new B.TypedMiddleware(editToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditToken).get$$call(), new B.TypedMiddleware(loadTokens, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTokens).get$$call(), new B.TypedMiddleware(loadToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadToken).get$$call(), new B.TypedMiddleware(saveToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTokenRequest).get$$call(), new B.TypedMiddleware(archiveToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTokensRequest).get$$call(), new B.TypedMiddleware(deleteToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTokensRequest).get$$call(), new B.TypedMiddleware(restoreToken, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTokensRequest).get$$call()], t2)); viewPaymentTermList = E._viewPaymentTermList(); viewPaymentTerm = E._viewPaymentTerm(); editPaymentTerm = E._editPaymentTerm(); loadPaymentTerms = E._loadPaymentTerms(C.C_PaymentTermRepository); loadPaymentTerm = E._loadPaymentTerm(C.C_PaymentTermRepository); savePaymentTerm = E._savePaymentTerm(C.C_PaymentTermRepository); archivePaymentTerm = E._archivePaymentTerm(C.C_PaymentTermRepository); deletePaymentTerm = E._deletePaymentTerm(C.C_PaymentTermRepository); restorePaymentTerm = E._restorePaymentTerm(C.C_PaymentTermRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewPaymentTermList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTermList).get$$call(), new B.TypedMiddleware(viewPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTerm).get$$call(), new B.TypedMiddleware(editPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditPaymentTerm).get$$call(), new B.TypedMiddleware(loadPaymentTerms, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerms).get$$call(), new B.TypedMiddleware(loadPaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerm).get$$call(), new B.TypedMiddleware(savePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentTermRequest).get$$call(), new B.TypedMiddleware(archivePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentTermsRequest).get$$call(), new B.TypedMiddleware(deletePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentTermsRequest).get$$call(), new B.TypedMiddleware(restorePaymentTerm, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentTermsRequest).get$$call()], t2)); viewDesignList = V._viewDesignList(); viewDesign = V._viewDesign(); editDesign = V._editDesign(); loadDesigns = V._loadDesigns(C.C_DesignRepository); loadDesign = V._loadDesign(C.C_DesignRepository); saveDesign = V._saveDesign(C.C_DesignRepository); archiveDesign = V._archiveDesign(C.C_DesignRepository); deleteDesign = V._deleteDesign(C.C_DesignRepository); restoreDesign = V._restoreDesign(C.C_DesignRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewDesignList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesignList).get$$call(), new B.TypedMiddleware(viewDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesign).get$$call(), new B.TypedMiddleware(editDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditDesign).get$$call(), new B.TypedMiddleware(loadDesigns, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesigns).get$$call(), new B.TypedMiddleware(loadDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesign).get$$call(), new B.TypedMiddleware(saveDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveDesignRequest).get$$call(), new B.TypedMiddleware(archiveDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDesignsRequest).get$$call(), new B.TypedMiddleware(deleteDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDesignsRequest).get$$call(), new B.TypedMiddleware(restoreDesign, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDesignsRequest).get$$call()], t2)); viewCreditList = X._viewCreditList(); viewCredit = X._viewCredit(); editCredit = X._editCredit(); showEmailCredit = X._showEmailCredit(); showPdfCredit = X._showPdfCredit(); loadCredits = X._loadCredits(C.C_CreditRepository); loadCredit = X._loadCredit(C.C_CreditRepository); saveCredit = X._saveCredit(C.C_CreditRepository); archiveCredit = X._archiveCredit(C.C_CreditRepository); deleteCredit = X._deleteCredit(C.C_CreditRepository); restoreCredit = X._restoreCredit(C.C_CreditRepository); emailCredit = X._emailCredit(C.C_CreditRepository); bulkEmailCredits = X._bulkEmailCredits(C.C_CreditRepository); markSentCredit = X._markSentCredit(C.C_CreditRepository); downloadCredits = X._downloadCredits(C.C_CreditRepository); saveDocument = X._saveDocument10(C.C_CreditRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewCreditList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCreditList).get$$call(), new B.TypedMiddleware(viewCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCredit).get$$call(), new B.TypedMiddleware(editCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditCredit).get$$call(), new B.TypedMiddleware(showEmailCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailCredit).get$$call(), new B.TypedMiddleware(showPdfCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfCredit).get$$call(), new B.TypedMiddleware(loadCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredits).get$$call(), new B.TypedMiddleware(loadCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredit).get$$call(), new B.TypedMiddleware(saveCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditRequest).get$$call(), new B.TypedMiddleware(archiveCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCreditsRequest).get$$call(), new B.TypedMiddleware(deleteCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCreditsRequest).get$$call(), new B.TypedMiddleware(restoreCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCreditsRequest).get$$call(), new B.TypedMiddleware(emailCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EmailCreditRequest).get$$call(), new B.TypedMiddleware(bulkEmailCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailCreditsRequest).get$$call(), new B.TypedMiddleware(markSentCredit, type$.TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentCreditRequest).get$$call(), new B.TypedMiddleware(downloadCredits, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DownloadCreditsRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditDocumentRequest).get$$call()], t2)); viewUserList = M._viewUserList(); viewUser = M._viewUser(); editUser = M._editUser(); loadUsers = M._loadUsers(C.C_UserRepository); loadUser = M._loadUser(C.C_UserRepository); saveUser = M._saveUser(C.C_UserRepository); archiveUser = M._archiveUser(C.C_UserRepository); deleteUser = M._deleteUser(C.C_UserRepository); restoreUser = M._restoreUser(C.C_UserRepository); removeUser = M._removeUser(C.C_UserRepository); resendInvite = M._resendInvite(C.C_UserRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewUserList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewUserList).get$$call(), new B.TypedMiddleware(viewUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewUser).get$$call(), new B.TypedMiddleware(editUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditUser).get$$call(), new B.TypedMiddleware(loadUsers, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadUsers).get$$call(), new B.TypedMiddleware(loadUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadUser).get$$call(), new B.TypedMiddleware(saveUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserRequest).get$$call(), new B.TypedMiddleware(archiveUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveUserRequest).get$$call(), new B.TypedMiddleware(deleteUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteUserRequest).get$$call(), new B.TypedMiddleware(restoreUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreUserRequest).get$$call(), new B.TypedMiddleware(removeUser, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RemoveUserRequest).get$$call(), new B.TypedMiddleware(resendInvite, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ResendInviteRequest).get$$call()], t2)); viewTaxRateList = T._viewTaxRateList(); viewTaxRate = T._viewTaxRate(); editTaxRate = T._editTaxRate(); loadTaxRates = T._loadTaxRates(C.C_TaxRateRepository); loadTaxRate = T._loadTaxRate(C.C_TaxRateRepository); saveTaxRate = T._saveTaxRate(C.C_TaxRateRepository); archiveTaxRate = T._archiveTaxRate(C.C_TaxRateRepository); deleteTaxRate = T._deleteTaxRate(C.C_TaxRateRepository); restoreTaxRate = T._restoreTaxRate(C.C_TaxRateRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewTaxRateList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRateList).get$$call(), new B.TypedMiddleware(viewTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRate).get$$call(), new B.TypedMiddleware(editTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditTaxRate).get$$call(), new B.TypedMiddleware(loadTaxRates, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRates).get$$call(), new B.TypedMiddleware(loadTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRate).get$$call(), new B.TypedMiddleware(saveTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaxRateRequest).get$$call(), new B.TypedMiddleware(archiveTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaxRateRequest).get$$call(), new B.TypedMiddleware(deleteTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaxRateRequest).get$$call(), new B.TypedMiddleware(restoreTaxRate, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaxRateRequest).get$$call()], t2)); viewCompanyGatewayList = L._viewCompanyGatewayList(); viewCompanyGateway = L._viewCompanyGateway(); editCompanyGateway = L._editCompanyGateway(); loadCompanyGateways = L._loadCompanyGateways(C.C_CompanyGatewayRepository); loadCompanyGateway = L._loadCompanyGateway(C.C_CompanyGatewayRepository); saveCompanyGateway = L._saveCompanyGateway(C.C_CompanyGatewayRepository); archiveCompanyGateway = L._archiveCompanyGateway(C.C_CompanyGatewayRepository); deleteCompanyGateway = L._deleteCompanyGateway(C.C_CompanyGatewayRepository); restoreCompanyGateway = L._restoreCompanyGateway(C.C_CompanyGatewayRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewCompanyGatewayList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGatewayList).get$$call(), new B.TypedMiddleware(viewCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGateway).get$$call(), new B.TypedMiddleware(editCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditCompanyGateway).get$$call(), new B.TypedMiddleware(loadCompanyGateways, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateways).get$$call(), new B.TypedMiddleware(loadCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateway).get$$call(), new B.TypedMiddleware(saveCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyGatewayRequest).get$$call(), new B.TypedMiddleware(archiveCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCompanyGatewayRequest).get$$call(), new B.TypedMiddleware(deleteCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyGatewayRequest).get$$call(), new B.TypedMiddleware(restoreCompanyGateway, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCompanyGatewayRequest).get$$call()], t2)); viewGroupList = X._viewGroupList(); viewGroup = X._viewGroup(); editGroup = X._editGroup(); loadGroups = X._loadGroups(C.C_GroupRepository); loadGroup = X._loadGroup(C.C_GroupRepository); saveGroup = X._saveGroup(C.C_GroupRepository); archiveGroup = X._archiveGroup(C.C_GroupRepository); deleteGroup = X._deleteGroup(C.C_GroupRepository); restoreGroup = X._restoreGroup(C.C_GroupRepository); saveDocument = X._saveDocument11(C.C_GroupRepository); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(viewGroupList, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroupList).get$$call(), new B.TypedMiddleware(viewGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroup).get$$call(), new B.TypedMiddleware(editGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_EditGroup).get$$call(), new B.TypedMiddleware(loadGroups, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroups).get$$call(), new B.TypedMiddleware(loadGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroup).get$$call(), new B.TypedMiddleware(saveGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupRequest).get$$call(), new B.TypedMiddleware(archiveGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveGroupRequest).get$$call(), new B.TypedMiddleware(deleteGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_DeleteGroupRequest).get$$call(), new B.TypedMiddleware(restoreGroup, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RestoreGroupRequest).get$$call(), new B.TypedMiddleware(saveDocument, type$.TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupDocumentRequest).get$$call()], t2)); loadState = K._createLoadState(C.PersistenceRepository_FileStorage_auth_state, C.PersistenceRepository_FileStorage_ui_state, C.PersistenceRepository_FileStorage_static_state, C.List_Ga5); accountLoaded = K._createAccountLoaded(); dataRefreshed = K._createDataRefreshed(); persistData = K._createPersistData(C.List_Ga5); persistStatic = K._createPersistStatic(C.PersistenceRepository_FileStorage_static_state); userLoggedIn = K._createUserLoggedIn(C.PersistenceRepository_FileStorage_auth_state, C.PersistenceRepository_FileStorage_ui_state, C.PersistenceRepository_FileStorage_static_state, C.List_Ga5); persistUI = K._createPersistUI(C.PersistenceRepository_FileStorage_ui_state); persistPrefs = K._createPersistPrefs(); deleteState = K._createDeleteState(C.PersistenceRepository_FileStorage_auth_state, C.PersistenceRepository_FileStorage_ui_state, C.PersistenceRepository_FileStorage_static_state, C.List_Ga5); viewMainScreen = K._createViewMainScreen(); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new B.TypedMiddleware(deleteState, t4).get$$call(), new B.TypedMiddleware(loadState, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadStateRequest).get$$call(), new B.TypedMiddleware(userLoggedIn, type$.TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginSuccess).get$$call(), new B.TypedMiddleware(accountLoaded, type$.TypedMiddleware_of_legacy_AppState_and_legacy_LoadAccountSuccess).get$$call(), new B.TypedMiddleware(dataRefreshed, type$.TypedMiddleware_of_legacy_AppState_and_legacy_RefreshDataSuccess).get$$call(), new B.TypedMiddleware(persistData, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistData).get$$call(), new B.TypedMiddleware(persistStatic, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistStatic).get$$call(), new B.TypedMiddleware(persistUI, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistUI).get$$call(), new B.TypedMiddleware(persistPrefs, type$.TypedMiddleware_of_legacy_AppState_and_legacy_PersistPrefs).get$$call(), new B.TypedMiddleware(viewMainScreen, type$.TypedMiddleware_of_legacy_AppState_and_legacy_ViewMainScreen).get$$call()], t2)); t2 = H.setRuntimeTypeInfo([], t2); C.JSArray_methods.addAll$1(t3, t2); store = new X.Store(G.app_reducer__appReducer$closure(), new P._AsyncBroadcastStreamController(null, null, type$._AsyncBroadcastStreamController_legacy_AppState), type$.Store_legacy_AppState); store.__Store__state = t1; t1 = store._createDispatchers$2(t3, store._createReduceAndNotify$1(false)); if (store.__Store__dispatchers === $) store.__Store__dispatchers = t1; else H.throwExpression(H.LateError$fieldAI("_dispatchers")); N.runApp(new K.InvoiceNinjaApp(store, null)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$main, $async$completer); }, _initialState: function(isTesting) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_AppState), $async$returnValue, $async$next = [], prefState, e, exception, t1, browserRoute, reportErrors, referralCode, prefs, prefString, url; var $async$_initialState = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$_initialState); case 3: // returning from await. prefs = $async$result; prefString = prefs == null ? null : H._asStringQ(J.$index$asx(prefs._preferenceCache, "shared_prefs")); url = window.location.href; if (J.contains$1$asx(url, "?")) url = url.split("?")[0]; url = Y.formatApiUrl(J.contains$1$asx(url, "#") ? url.split("#")[0] : url); prefState = X.PrefState_PrefState(); if (prefString != null) try { prefState = $.$get$serializers().deserializeWith$1$2($.$get$_$prefStateSerializer(), C.C_JsonCodec.decode$1(0, prefString), type$.legacy_PrefState); } catch (exception) { e = H.unwrapException(exception); P.print("Failed to load prefs: " + H.S(e)); } t1 = prefState; if (t1.appLayout === C.AppLayout_desktop) { browserRoute = J.replaceFirst$2$s(window.location.hash, "#", ""); t1 = browserRoute.length; if (t1 !== 0 && t1 > 4) { if (browserRoute === "/kanban") { prefState = prefState.rebuild$1(new F._initialState_closure()); browserRoute = "/task"; } } else browserRoute = null; } else browserRoute = null; t1 = window.document.documentElement; t1.toString; reportErrors = t1.getAttribute("data-" + new W._DataAttributeMap(new W._ElementAttributeMap(t1))._toHyphenedName$1("report-errors")) === "1"; t1 = window.document.documentElement; t1.toString; referralCode = t1.getAttribute("data-" + new W._DataAttributeMap(new W._ElementAttributeMap(t1))._toHyphenedName$1("rc")); if (reportErrors) P.print("## Error reporting is enabled"); t1 = prefState; $async$returnValue = T.AppState_AppState(browserRoute, t1, referralCode, reportErrors, url); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_initialState, $async$completer); }, _initialState_closure: function _initialState_closure() { }, _$ClientState$_: function(list, map) { var _s11_ = "ClientState"; if (map == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "map")); if (list == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "list")); return new F._$ClientState(map, list); }, _$ClientUIState$_: function(cancelCompleter, editing, editingContact, forceSelected, listUIState, saveCompleter, selectedId, tabIndex) { if (listUIState == null) H.throwExpression(Y.BuiltValueNullFieldError$("ClientUIState", "listUIState")); return new F._$ClientUIState(editing, editingContact, listUIState, selectedId, forceSelected, tabIndex, saveCompleter, cancelCompleter); }, ClientState: function ClientState() { }, ClientState_loadClients_closure0: function ClientState_loadClients_closure0() { }, ClientState_loadClients_closure1: function ClientState_loadClients_closure1() { }, ClientState_loadClients_closure: function ClientState_loadClients_closure(t0, t1) { this.$this = t0; this.map = t1; }, ClientUIState: function ClientUIState() { }, _$ClientStateSerializer: function _$ClientStateSerializer() { }, _$ClientUIStateSerializer: function _$ClientUIStateSerializer() { }, _$ClientState: function _$ClientState(t0, t1) { this.map = t0; this.list = t1; this._client_state$__hashCode = null; }, ClientStateBuilder: function ClientStateBuilder() { this._client_state$_list = this._client_state$_map = this._client_state$_$v = null; }, _$ClientUIState: function _$ClientUIState(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editing = t0; _.editingContact = t1; _.listUIState = t2; _.selectedId = t3; _.forceSelected = t4; _.tabIndex = t5; _.saveCompleter = t6; _.cancelCompleter = t7; _._client_state$__hashCode = null; }, ClientUIStateBuilder: function ClientUIStateBuilder() { var _ = this; _._client_state$_cancelCompleter = _._client_state$_saveCompleter = _._client_state$_tabIndex = _._client_state$_forceSelected = _._client_state$_selectedId = _._client_state$_listUIState = _._client_state$_editingContact = _._client_state$_editing = _._client_state$_$v = null; }, _ClientUIState_Object_EntityUIState: function _ClientUIState_Object_EntityUIState() { }, expenseCategoryUIReducer: function(state, action) { var t1; state.toString; t1 = new Q.ExpenseCategoryUIStateBuilder(); t1._expense_category_state$_$v = state; new F.expenseCategoryUIReducer_closure(state, action).call$1(t1); return t1.build$0(0); }, _clearEditing3: function(expenseCategory, action) { return R.ExpenseCategoryEntity_ExpenseCategoryEntity(null, null); }, _updateEditing4: function(expenseCategory, action) { return action.get$expenseCategory(); }, _filterExpenseCategoriesByCustom1: function(expenseCategoryListState, action) { var t1 = expenseCategoryListState.custom1Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByCustom1_closure(action)); else return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByCustom1_closure0(action)); }, _filterExpenseCategoriesByCustom2: function(expenseCategoryListState, action) { var t1 = expenseCategoryListState.custom2Filters, t2 = action.value; if (J.contains$1$asx(t1._list, t2)) return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByCustom2_closure(action)); else return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByCustom2_closure0(action)); }, _filterExpenseCategoriesByState: function(expenseCategoryListState, action) { var t1 = expenseCategoryListState.stateFilters, t2 = action.state; if (J.contains$1$asx(t1._list, t2)) return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByState_closure(action)); else return expenseCategoryListState.rebuild$1(new F._filterExpenseCategoriesByState_closure0(action)); }, _filterExpenseCategories: function(expenseCategoryListState, action) { return expenseCategoryListState.rebuild$1(new F._filterExpenseCategories_closure(action, expenseCategoryListState)); }, _sortExpenseCategories: function(expenseCategoryListState, action) { return expenseCategoryListState.rebuild$1(new F._sortExpenseCategories_closure(action)); }, _startListMultiselect5: function(productListState, action) { return productListState.rebuild$1(new F._startListMultiselect_closure16()); }, _addToListMultiselect5: function(productListState, action) { return productListState.rebuild$1(new F._addToListMultiselect_closure16(action)); }, _removeFromListMultiselect5: function(productListState, action) { return productListState.rebuild$1(new F._removeFromListMultiselect_closure16(action)); }, _clearListMultiselect5: function(productListState, action) { return productListState.rebuild$1(new F._clearListMultiselect_closure16()); }, _archiveExpenseCategorySuccess: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._archiveExpenseCategorySuccess_closure(action)); }, _deleteExpenseCategorySuccess: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._deleteExpenseCategorySuccess_closure(action)); }, _restoreExpenseCategorySuccess: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._restoreExpenseCategorySuccess_closure(action)); }, _addExpenseCategory: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._addExpenseCategory_closure(action)); }, _updateExpenseCategory: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._updateExpenseCategory_closure(action)); }, _setLoadedExpenseCategory: function(expenseCategoryState, action) { return expenseCategoryState.rebuild$1(new F._setLoadedExpenseCategory_closure(action)); }, _setLoadedExpenseCategories: function(expenseCategoryState, action) { return expenseCategoryState.loadExpenseCategories$1(action.expenseCategories); }, _setLoadedCompany4: function(expenseCategoryState, action) { return expenseCategoryState.loadExpenseCategories$1(action.userCompany.company.expenseCategories); }, expenseCategoryUIReducer_closure: function expenseCategoryUIReducer_closure(t0, t1) { this.state = t0; this.action = t1; }, forceSelectedReducer_closure127: function forceSelectedReducer_closure127() { }, forceSelectedReducer_closure128: function forceSelectedReducer_closure128() { }, forceSelectedReducer_closure129: function forceSelectedReducer_closure129() { }, forceSelectedReducer_closure130: function forceSelectedReducer_closure130() { }, forceSelectedReducer_closure131: function forceSelectedReducer_closure131() { }, forceSelectedReducer_closure132: function forceSelectedReducer_closure132() { }, forceSelectedReducer_closure133: function forceSelectedReducer_closure133() { }, forceSelectedReducer_closure134: function forceSelectedReducer_closure134() { }, selectedIdReducer_closure256: function selectedIdReducer_closure256() { }, selectedIdReducer_closure257: function selectedIdReducer_closure257() { }, selectedIdReducer_closure258: function selectedIdReducer_closure258() { }, selectedIdReducer_closure259: function selectedIdReducer_closure259() { }, selectedIdReducer_closure260: function selectedIdReducer_closure260() { }, selectedIdReducer_closure261: function selectedIdReducer_closure261() { }, selectedIdReducer_closure262: function selectedIdReducer_closure262() { }, selectedIdReducer_closure263: function selectedIdReducer_closure263() { }, selectedIdReducer_closure264: function selectedIdReducer_closure264() { }, selectedIdReducer_closure265: function selectedIdReducer_closure265() { }, selectedIdReducer_closure266: function selectedIdReducer_closure266() { }, selectedIdReducer_closure267: function selectedIdReducer_closure267() { }, selectedIdReducer_closure268: function selectedIdReducer_closure268() { }, selectedIdReducer_closure269: function selectedIdReducer_closure269() { }, selectedIdReducer_closure270: function selectedIdReducer_closure270() { }, editingReducer_closure85: function editingReducer_closure85() { }, editingReducer_closure86: function editingReducer_closure86() { }, editingReducer_closure87: function editingReducer_closure87() { }, editingReducer_closure88: function editingReducer_closure88() { }, editingReducer__closure34: function editingReducer__closure34() { }, _filterExpenseCategoriesByCustom1_closure: function _filterExpenseCategoriesByCustom1_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom1_closure0: function _filterExpenseCategoriesByCustom1_closure0(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom2_closure: function _filterExpenseCategoriesByCustom2_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByCustom2_closure0: function _filterExpenseCategoriesByCustom2_closure0(t0) { this.action = t0; }, _filterExpenseCategoriesByState_closure: function _filterExpenseCategoriesByState_closure(t0) { this.action = t0; }, _filterExpenseCategoriesByState_closure0: function _filterExpenseCategoriesByState_closure0(t0) { this.action = t0; }, _filterExpenseCategories_closure: function _filterExpenseCategories_closure(t0, t1) { this.action = t0; this.expenseCategoryListState = t1; }, _sortExpenseCategories_closure: function _sortExpenseCategories_closure(t0) { this.action = t0; }, _startListMultiselect_closure16: function _startListMultiselect_closure16() { }, _addToListMultiselect_closure16: function _addToListMultiselect_closure16(t0) { this.action = t0; }, _removeFromListMultiselect_closure16: function _removeFromListMultiselect_closure16(t0) { this.action = t0; }, _clearListMultiselect_closure16: function _clearListMultiselect_closure16() { }, _archiveExpenseCategorySuccess_closure: function _archiveExpenseCategorySuccess_closure(t0) { this.action = t0; }, _deleteExpenseCategorySuccess_closure: function _deleteExpenseCategorySuccess_closure(t0) { this.action = t0; }, _restoreExpenseCategorySuccess_closure: function _restoreExpenseCategorySuccess_closure(t0) { this.action = t0; }, _addExpenseCategory_closure: function _addExpenseCategory_closure(t0) { this.action = t0; }, _updateExpenseCategory_closure: function _updateExpenseCategory_closure(t0) { this.action = t0; }, _setLoadedExpenseCategory_closure: function _setLoadedExpenseCategory_closure(t0) { this.action = t0; }, filteredSubscriptionsSelector: function(selectionState, subscriptionMap, subscriptionList, subscriptionListState) { var filterEntityId = selectionState.filterEntityId, t1 = J.where$1$ax(subscriptionList._list, new F.filteredSubscriptionsSelector_closure(subscriptionMap, selectionState, filterEntityId, subscriptionListState)), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(list, new F.filteredSubscriptionsSelector_closure0(subscriptionMap, subscriptionListState)); return list; }, memoizedFilteredSubscriptionList_closure: function memoizedFilteredSubscriptionList_closure() { }, filteredSubscriptionsSelector_closure: function filteredSubscriptionsSelector_closure(t0, t1, t2, t3) { var _ = this; _.subscriptionMap = t0; _.selectionState = t1; _.filterEntityId = t2; _.subscriptionListState = t3; }, filteredSubscriptionsSelector_closure0: function filteredSubscriptionsSelector_closure0(t0, t1) { this.subscriptionMap = t0; this.subscriptionListState = t1; }, _editVendor: function() { return new F._editVendor_closure(); }, _viewVendor: function() { return new F._viewVendor_closure(); }, _viewVendorList: function() { return new F._viewVendorList_closure0(); }, _archiveVendor: function(repository) { return new F._archiveVendor_closure(repository); }, _deleteVendor: function(repository) { return new F._deleteVendor_closure(repository); }, _restoreVendor: function(repository) { return new F._restoreVendor_closure(repository); }, _saveVendor: function(repository) { return new F._saveVendor_closure(repository); }, _loadVendor: function(repository) { return new F._loadVendor_closure(repository); }, _loadVendors: function(repository) { return new F._loadVendors_closure(repository); }, _saveDocument3: function(repository) { return new F._saveDocument_closure7(repository); }, _editVendor_closure: function _editVendor_closure() { }, _viewVendor_closure: function _viewVendor_closure() { }, _viewVendorList_closure0: function _viewVendorList_closure0() { }, _viewVendorList__closure: function _viewVendorList__closure() { }, _archiveVendor_closure: function _archiveVendor_closure(t0) { this.repository = t0; }, _archiveVendor__closure: function _archiveVendor__closure(t0) { this.store = t0; }, _archiveVendor__closure0: function _archiveVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _archiveVendor__closure1: function _archiveVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _deleteVendor_closure: function _deleteVendor_closure(t0) { this.repository = t0; }, _deleteVendor__closure: function _deleteVendor__closure(t0) { this.store = t0; }, _deleteVendor__closure0: function _deleteVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _deleteVendor__closure1: function _deleteVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _restoreVendor_closure: function _restoreVendor_closure(t0) { this.repository = t0; }, _restoreVendor__closure: function _restoreVendor__closure(t0) { this.store = t0; }, _restoreVendor__closure0: function _restoreVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _restoreVendor__closure1: function _restoreVendor__closure1(t0, t1, t2) { this.store = t0; this.prevVendors = t1; this.action = t2; }, _saveVendor_closure: function _saveVendor_closure(t0) { this.repository = t0; }, _saveVendor__closure: function _saveVendor__closure(t0, t1) { this.action = t0; this.store = t1; }, _saveVendor__closure0: function _saveVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadVendor_closure: function _loadVendor_closure(t0) { this.repository = t0; }, _loadVendor__closure: function _loadVendor__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadVendor__closure0: function _loadVendor__closure0(t0, t1) { this.store = t0; this.action = t1; }, _loadVendors_closure: function _loadVendors_closure(t0) { this.repository = t0; }, _loadVendors__closure: function _loadVendors__closure(t0, t1) { this.store = t0; this.action = t1; }, _loadVendors__closure0: function _loadVendors__closure0(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument_closure7: function _saveDocument_closure7(t0) { this.repository = t0; }, _saveDocument__closure15: function _saveDocument__closure15(t0, t1) { this.store = t0; this.action = t1; }, _saveDocument__closure16: function _saveDocument__closure16(t0, t1) { this.store = t0; this.action = t1; }, LoadingDialog: function LoadingDialog(t0) { this.key = t0; }, EntityDropdown$: function(allowClearing, autoValidate, autofocus, entityId, entityList, entityMap, entityType, key, labelText, onAddPressed, onSelected, overrideSuggestedAmount, overrideSuggestedLabel, validator) { return new F.EntityDropdown(entityType, entityList, labelText, entityId, autofocus, entityMap, onSelected, validator, autoValidate, allowClearing, onAddPressed, overrideSuggestedAmount, overrideSuggestedLabel, key); }, EntityDropdown: function EntityDropdown(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13) { var _ = this; _.entityType = t0; _.entityList = t1; _.labelText = t2; _.entityId = t3; _.autofocus = t4; _.entityMap = t5; _.onSelected = t6; _.validator = t7; _.autoValidate = t8; _.allowClearing = t9; _.onAddPressed = t10; _.overrideSuggestedAmount = t11; _.overrideSuggestedLabel = t12; _.key = t13; }, _EntityDropdownState: function _EntityDropdownState(t0, t1, t2) { var _ = this; _._entity_dropdown$_textController = t0; _._entity_dropdown$_focusNode = t1; _._entity_dropdown$_filter = ""; _._widget = _._entityMap = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _EntityDropdownState__showOptions_closure: function _EntityDropdownState__showOptions_closure(t0) { this.$this = t0; }, _EntityDropdownState__showOptions__closure0: function _EntityDropdownState__showOptions__closure0(t0) { this.$this = t0; }, _EntityDropdownState__showOptions__closure: function _EntityDropdownState__showOptions__closure(t0) { this.$this = t0; }, _EntityDropdownState_build_closure: function _EntityDropdownState_build_closure(t0) { this.$this = t0; }, _EntityDropdownState_build_closure0: function _EntityDropdownState_build_closure0(t0) { this.$this = t0; }, _EntityDropdownState_build__closure4: function _EntityDropdownState_build__closure4(t0) { this.$this = t0; }, _EntityDropdownState_build_closure5: function _EntityDropdownState_build_closure5(t0) { this.$this = t0; }, _EntityDropdownState_build__closure: function _EntityDropdownState_build__closure(t0) { this.$this = t0; }, _EntityDropdownState_build__closure0: function _EntityDropdownState_build__closure0(t0) { this.textEditingValue = t0; }, _EntityDropdownState_build_closure3: function _EntityDropdownState_build_closure3() { }, _EntityDropdownState_build_closure4: function _EntityDropdownState_build_closure4(t0) { this.$this = t0; }, _EntityDropdownState_build_closure1: function _EntityDropdownState_build_closure1(t0, t1) { this.$this = t0; this.iconButton = t1; }, _EntityDropdownState_build__closure3: function _EntityDropdownState_build__closure3(t0) { this.onFieldSubmitted = t0; }, _EntityDropdownState_build__closure2: function _EntityDropdownState_build__closure2(t0) { this.$this = t0; }, _EntityDropdownState_build_closure2: function _EntityDropdownState_build_closure2(t0, t1) { this.$this = t0; this.theme = t1; }, _EntityDropdownState_build__closure1: function _EntityDropdownState_build__closure1(t0, t1, t2) { this.$this = t0; this.onSelected = t1; this.options = t2; }, _EntityDropdownState_build___closure: function _EntityDropdownState_build___closure(t0) { this.onSelected = t0; }, _EntityDropdownState_build_closure6: function _EntityDropdownState_build_closure6(t0) { this.$this = t0; }, _EntityDropdownState_build_closure7: function _EntityDropdownState_build_closure7(t0) { this.$this = t0; }, EntityDropdownDialog: function EntityDropdownDialog(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.entityMap = t0; _.entityList = t1; _.onSelected = t2; _.onAddPressed = t3; _.overrideSuggestedAmount = t4; _.overrideSuggestedLabel = t5; _.key = t6; }, _EntityDropdownDialogState: function _EntityDropdownDialogState(t0) { var _ = this; _._widget = _._entity_dropdown$_filter = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _EntityDropdownDialogState_build__selectEntity: function _EntityDropdownDialogState_build__selectEntity(t0, t1) { this.$this = t0; this.context = t1; }, _EntityDropdownDialogState_build__headerRow: function _EntityDropdownDialogState_build__headerRow(t0, t1, t2) { this.$this = t0; this.localization = t1; this.context = t2; }, _EntityDropdownDialogState_build__headerRow_closure: function _EntityDropdownDialogState_build__headerRow_closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__headerRow__closure0: function _EntityDropdownDialogState_build__headerRow__closure0(t0, t1) { this.$this = t0; this.value = t1; }, _EntityDropdownDialogState_build__headerRow_closure0: function _EntityDropdownDialogState_build__headerRow_closure0(t0) { this.context = t0; }, _EntityDropdownDialogState_build__headerRow_closure1: function _EntityDropdownDialogState_build__headerRow_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _EntityDropdownDialogState_build__headerRow__closure: function _EntityDropdownDialogState_build__headerRow__closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__createList: function _EntityDropdownDialogState_build__createList(t0, t1) { this.$this = t0; this._selectEntity = t1; }, _EntityDropdownDialogState_build__createList_closure: function _EntityDropdownDialogState_build__createList_closure(t0) { this.$this = t0; }, _EntityDropdownDialogState_build__createList_closure0: function _EntityDropdownDialogState_build__createList_closure0(t0, t1, t2) { this.$this = t0; this.matches = t1; this._selectEntity = t2; }, _EntityDropdownDialogState_build__createList__closure: function _EntityDropdownDialogState_build__createList__closure(t0) { this._selectEntity = t0; }, _EntityListTile: function _EntityListTile(t0, t1, t2, t3, t4, t5) { var _ = this; _.entity = t0; _.onTap = t1; _.filter = t2; _.overrideSuggestedAmount = t3; _.overrideSuggestedLabel = t4; _.key = t5; }, _EntityListTile_build_closure: function _EntityListTile_build_closure(t0) { this.$this = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, t2 = t1.clientUIState, client = t2.editing, t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new F.ClientEditContactsVM(J.$index$asx(t3._list, t1).userCompany.company, client, t2.editingContact, new F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure(store), new F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0(store), new F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1(store), new F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2(store)); }, ClientEditContactsScreen: function ClientEditContactsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, ClientEditContactsScreen_build_closure0: function ClientEditContactsScreen_build_closure0() { }, ClientEditContactsScreen_build_closure: function ClientEditContactsScreen_build_closure(t0) { this.$this = t0; }, ClientEditContactsVM: function ClientEditContactsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.company = t0; _.client = t1; _.contact = t2; _.onAddContactPressed = t3; _.onRemoveContactPressed = t4; _.onDoneContactPressed = t5; _.onChangedContact = t6; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1(t0) { this.store = t0; }, ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2: function ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2(t0) { this.store = t0; }, DashboardScreen: function DashboardScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, _DashboardScreenState: function _DashboardScreenState(t0, t1, t2) { var _ = this; _._dashboard_screen$_scrollController = _._sideTabController = _._mainTabController = null; _._tabs = t0; _.TickerProviderStateMixin__tickers = t1; _._widget = null; _._debugLifecycleState = t2; _._framework$_element = null; }, _DashboardScreenState_initState_closure: function _DashboardScreenState_initState_closure(t0, t1) { this.$this = t0; this.company = t1; }, _DashboardScreenState_initState_closure0: function _DashboardScreenState_initState_closure0(t0, t1) { this.$this = t0; this.state = t1; }, _DashboardScreenState_initState__closure: function _DashboardScreenState_initState__closure(t0) { this.state = t0; }, _DashboardScreenState_build_closure: function _DashboardScreenState_build_closure(t0) { this.localization = t0; }, _DashboardScreenState_build__closure0: function _DashboardScreenState_build__closure0(t0) { this.context = t0; }, _DashboardScreenState_build_closure0: function _DashboardScreenState_build_closure0(t0) { this.store = t0; }, _DashboardScreenState_build_closure1: function _DashboardScreenState_build_closure1(t0, t1, t2) { this.localization = t0; this.state = t1; this.store = t2; }, _DashboardScreenState_build__closure: function _DashboardScreenState_build__closure(t0, t1, t2) { this.context = t0; this.state = t1; this.store = t2; }, _DashboardScreenState_build_closure2: function _DashboardScreenState_build_closure2() { }, _CustomTabBarView: function _CustomTabBarView(t0, t1, t2, t3) { var _ = this; _.viewModel = t0; _.tabController = t1; _.scrollController = t2; _.key = t3; }, _CustomTabBarView_build_closure: function _CustomTabBarView_build_closure(t0) { this.$this = t0; }, _CustomTabBarView_build__closure: function _CustomTabBarView_build__closure(t0) { this.entity = t0; }, _CustomTabBarView_build_closure0: function _CustomTabBarView_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, _CustomTabBarView_build_closure1: function _CustomTabBarView_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, _CustomTabBarView_build_closure2: function _CustomTabBarView_build_closure2(t0, t1) { this.$this = t0; this.context = t1; }, __DashboardScreenState_State_TickerProviderStateMixin: function __DashboardScreenState_State_TickerProviderStateMixin() { }, DesignListVM_fromStore: function(store) { var t4, t5, t6, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t4.$index(t1, t3).toString; t2 = t2.designUIState; t2.toString; t2 = t2.listUIState; t5 = $.$get$memoizedFilteredDesignList().call$3(t4.$index(t1, t3).designState.map, t4.$index(t1, t3).designState.list, t2); t6 = t4.$index(t1, t3).designState.map; t2 = t2.filter; t4.$index(t1, t3).toString; return new F.DesignListVM(state, t5, t6, t2, new F.DesignListVM_fromStore_closure(new F.DesignListVM_fromStore__handleRefresh(store)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), new F.DesignListVM_fromStore_closure0(store), new F.DesignListVM_fromStore_closure1(store)); }, DesignListBuilder: function DesignListBuilder(t0) { this.key = t0; }, DesignListBuilder_build_closure: function DesignListBuilder_build_closure() { }, DesignListBuilder_build__closure: function DesignListBuilder_build__closure(t0) { this.viewModel = t0; }, DesignListVM: function DesignListVM(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.state = t0; _.designList = t1; _.designMap = t2; _.filter = t3; _.onRefreshed = t4; _.tableColumns = t5; _.onSortColumn = t6; _.onClearMultielsect = t7; }, DesignListVM_fromStore__handleRefresh: function DesignListVM_fromStore__handleRefresh(t0) { this.store = t0; }, DesignListVM_fromStore_closure: function DesignListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, DesignListVM_fromStore_closure0: function DesignListVM_fromStore_closure0(t0) { this.store = t0; }, DesignListVM_fromStore_closure1: function DesignListVM_fromStore_closure1(t0) { this.store = t0; }, ExpenseListVM_fromStore: function(store) { var t4, t5, t6, t7, t8, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).userCompany.user; t2 = t2.expenseUIState; t2.toString; t2 = t2.listUIState; t6 = $.$get$memoizedFilteredExpenseList().call$9(state.getUISelection$1(C.EntityType_expense), t4.$index(t1, t3).expenseState.map, t4.$index(t1, t3).clientState.map, t4.$index(t1, t3).vendorState.map, t4.$index(t1, t3).userState.map, t2, t4.$index(t1, t3).invoiceState.map, t4.$index(t1, t3).expenseCategoryState.map, state.staticState); t7 = t4.$index(t1, t3).expenseState.map; t2 = t2.filter; t8 = t4.$index(t1, t3).userCompany.settings.getTableColumns$1(C.EntityType_expense); if (t8 == null) { t4.$index(t1, t3).toString; t1 = H.setRuntimeTypeInfo(["status", "vendor", "client", "date", "amount", "public_notes", "entity_state"], type$.JSArray_legacy_String); } else t1 = t8; return new F.ExpenseListVM(state, t5, t6, t7, t2, new F.ExpenseListVM_fromStore_closure(new F.ExpenseListVM_fromStore__handleRefresh(store)), t1, new F.ExpenseListVM_fromStore_closure0(store), new F.ExpenseListVM_fromStore_closure1(store)); }, ExpenseListBuilder: function ExpenseListBuilder(t0) { this.key = t0; }, ExpenseListBuilder_build_closure: function ExpenseListBuilder_build_closure() { }, ExpenseListBuilder_build__closure: function ExpenseListBuilder_build__closure(t0) { this.viewModel = t0; }, ExpenseListVM: function ExpenseListVM(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.state = t0; _.user = t1; _.expenseList = t2; _.expenseMap = t3; _.filter = t4; _.onRefreshed = t5; _.tableColumns = t6; _.onSortColumn = t7; _.onClearMultielsect = t8; }, ExpenseListVM_fromStore__handleRefresh: function ExpenseListVM_fromStore__handleRefresh(t0) { this.store = t0; }, ExpenseListVM_fromStore_closure: function ExpenseListVM_fromStore_closure(t0) { this._handleRefresh = t0; }, ExpenseListVM_fromStore_closure0: function ExpenseListVM_fromStore_closure0(t0) { this.store = t0; }, ExpenseListVM_fromStore_closure1: function ExpenseListVM_fromStore_closure1(t0) { this.store = t0; }, ExpenseOverview: function ExpenseOverview(t0, t1, t2) { this.viewModel = t0; this.isFilter = t1; this.key = t2; }, ExpenseOverview_build__buildDetailsList: function ExpenseOverview_build__buildDetailsList(t0, t1, t2, t3) { var _ = this; _.expense = t0; _.context = t1; _.localization = t2; _.state = t3; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, expenseCategory = t1.expenseCategoryUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).expenseCategoryState.map; t5 = expenseCategory.id; J.$index$asx(t4._map$_map, t5); return new F.ExpenseCategoryEditVM(expenseCategory, t3.$index(t2, t1).userCompany.company, new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure(store), new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0(store, state), new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1(store, state), state); }, ExpenseCategoryEditScreen: function ExpenseCategoryEditScreen(t0) { this.key = t0; }, ExpenseCategoryEditScreen_build_closure0: function ExpenseCategoryEditScreen_build_closure0() { }, ExpenseCategoryEditScreen_build_closure: function ExpenseCategoryEditScreen_build_closure() { }, ExpenseCategoryEditVM: function ExpenseCategoryEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.expenseCategory = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure(t0) { this.store = t0; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.expenseCategory = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0() { }, ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure: function ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure(t0) { this.error = t0; }, ExpenseCategoryListItem: function ExpenseCategoryListItem(t0, t1, t2, t3, t4) { var _ = this; _.user = t0; _.expenseCategory = t1; _.filter = t2; _.isChecked = t3; _.key = t4; }, ExpenseCategoryListItem_build_closure1: function ExpenseCategoryListItem_build_closure1(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseCategoryListItem_build_closure0: function ExpenseCategoryListItem_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ExpenseCategoryListItem_build_closure: function ExpenseCategoryListItem_build_closure(t0) { this.$this = t0; }, ExpenseCategoryPresenter: function ExpenseCategoryPresenter() { this.context = this.entity = null; }, InvoiceEdit: function InvoiceEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _InvoiceEditState: function _InvoiceEditState(t0, t1) { var _ = this; _._invoice_edit$_controller = null; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _InvoiceEditState_build_closure1: function _InvoiceEditState_build_closure1(t0) { this.viewModel = t0; }, _InvoiceEditState_build_closure2: function _InvoiceEditState_build_closure2(t0) { this.$this = t0; }, _InvoiceEditState_build_closure0: function _InvoiceEditState_build_closure0(t0) { this.$this = t0; }, _InvoiceEditState_build_closure: function _InvoiceEditState_build_closure(t0, t1, t2, t3, t4) { var _ = this; _.$this = t0; _.context = t1; _.invoice = t2; _.viewModel = t3; _.isFullscreen = t4; }, _InvoiceEditState_build__closure: function _InvoiceEditState_build__closure(t0, t1, t2, t3) { var _ = this; _.$this = t0; _.invoice = t1; _.viewModel = t2; _.isFullscreen = t3; }, _InvoiceEditState_build___closure: function _InvoiceEditState_build___closure() { }, _InvoiceEditState_build___closure1: function _InvoiceEditState_build___closure1(t0) { this.viewModel = t0; }, _InvoiceEditState_build___closure0: function _InvoiceEditState_build___closure0(t0, t1, t2) { this.$this = t0; this.viewModel = t1; this.isFullscreen = t2; }, __InvoiceEditState_State_SingleTickerProviderStateMixin: function __InvoiceEditState_State_SingleTickerProviderStateMixin() { }, InvoiceViewVM_InvoiceViewVM$fromStore: function(store) { var t4, invoice, client, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); invoice = t4.$index(t1, t3).invoiceState.$get$1(0, t2.invoiceUIState.selectedId); client = t4.$index(t1, t3).clientState.$get$1(0, invoice.clientId); t3 = t4.$index(t1, t3).userCompany.company; invoice.get$isNew(); return new F.InvoiceViewVM(state, t3, invoice, client, new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure(invoice), new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure0(new F.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh(store, invoice)), new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure1(store, invoice), new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure2(store, invoice), new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure3(), new F.InvoiceViewVM_InvoiceViewVM$fromStore_closure4(store)); }, InvoiceViewScreen: function InvoiceViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, InvoiceViewScreen_build_closure0: function InvoiceViewScreen_build_closure0() { }, InvoiceViewScreen_build_closure: function InvoiceViewScreen_build_closure(t0) { this.$this = t0; }, AbstractInvoiceViewVM: function AbstractInvoiceViewVM() { }, InvoiceViewVM: function InvoiceViewVM(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.client = t3; _.onEditPressed = t4; _.onRefreshed = t5; _.onUploadDocument = t6; _.onDeleteDocument = t7; _.onViewExpense = t8; _.onViewPdf = t9; }, InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh: function InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure: function InvoiceViewVM_InvoiceViewVM$fromStore_closure(t0) { this.invoice = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure0: function InvoiceViewVM_InvoiceViewVM$fromStore_closure0(t0) { this._handleRefresh = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure1: function InvoiceViewVM_InvoiceViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure0: function InvoiceViewVM_InvoiceViewVM$fromStore__closure0(t0) { this.context = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure1: function InvoiceViewVM_InvoiceViewVM$fromStore__closure1(t0) { this.context = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore___closure: function InvoiceViewVM_InvoiceViewVM$fromStore___closure(t0) { this.error = t0; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure2: function InvoiceViewVM_InvoiceViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore__closure: function InvoiceViewVM_InvoiceViewVM$fromStore__closure(t0, t1) { this.store = t0; this.invoice = t1; }, InvoiceViewVM_InvoiceViewVM$fromStore_closure3: function InvoiceViewVM_InvoiceViewVM$fromStore_closure3() { }, InvoiceViewVM_InvoiceViewVM$fromStore_closure4: function InvoiceViewVM_InvoiceViewVM$fromStore_closure4(t0) { this.store = t0; }, PaymentViewVM_PaymentViewVM$fromStore: function(store) { var t4, t5, payment, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).paymentState.map; t2 = t2.paymentUIState.selectedId; payment = J.$index$asx(t5._map$_map, t2); if (payment == null) payment = F.PaymentEntity_PaymentEntity(null, t2, null); t1 = t4.$index(t1, t3).userCompany.company; payment.get$isNew(); return new F.PaymentViewVM(state, payment, t1, new F.PaymentViewVM_PaymentViewVM$fromStore_closure(new F.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh(store, payment))); }, PaymentViewScreen: function PaymentViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, PaymentViewScreen_build_closure0: function PaymentViewScreen_build_closure0() { }, PaymentViewScreen_build_closure: function PaymentViewScreen_build_closure(t0) { this.$this = t0; }, PaymentViewVM: function PaymentViewVM(t0, t1, t2, t3) { var _ = this; _.state = t0; _.payment = t1; _.company = t2; _.onRefreshed = t3; }, PaymentViewVM_PaymentViewVM$fromStore__handleRefresh: function PaymentViewVM_PaymentViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.payment = t1; }, PaymentViewVM_PaymentViewVM$fromStore_closure: function PaymentViewVM_PaymentViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, PaymentTermScreen: function PaymentTermScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, PaymentTermScreen_build_closure9: function PaymentTermScreen_build_closure9(t0) { this.store = t0; }, PaymentTermScreen_build_closure7: function PaymentTermScreen_build_closure7(t0) { this.store = t0; }, PaymentTermScreen_build_closure8: function PaymentTermScreen_build_closure8(t0) { this.store = t0; }, PaymentTermScreen_build_closure4: function PaymentTermScreen_build_closure4(t0) { this.store = t0; }, PaymentTermScreen_build_closure5: function PaymentTermScreen_build_closure5(t0) { this.store = t0; }, PaymentTermScreen_build_closure: function PaymentTermScreen_build_closure(t0) { this.store = t0; }, PaymentTermScreen_build_closure0: function PaymentTermScreen_build_closure0(t0) { this.store = t0; }, PaymentTermScreen_build_closure1: function PaymentTermScreen_build_closure1(t0) { this.store = t0; }, PaymentTermScreen_build_closure2: function PaymentTermScreen_build_closure2(t0) { this.store = t0; }, PaymentTermScreen_build_closure3: function PaymentTermScreen_build_closure3(t0) { this.store = t0; }, PaymentTermScreen_build_closure6: function PaymentTermScreen_build_closure6(t0) { this.context = t0; }, ProductEdit: function ProductEdit(t0, t1) { this.viewModel = t0; this.key = t1; }, _ProductEditState: function _ProductEditState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) { var _ = this; _._product_edit$_focusNode = t0; _._product_edit$_autoValidate = false; _._productKeyController = t1; _._notesController = t2; _._priceController = t3; _._quantityController = t4; _._costController = t5; _._product_edit$_custom1Controller = t6; _._product_edit$_custom2Controller = t7; _._product_edit$_custom3Controller = t8; _._product_edit$_custom4Controller = t9; _._product_edit$_controllers = t10; _._product_edit$_debouncer = t11; _._widget = null; _._debugLifecycleState = t12; _._framework$_element = null; }, _ProductEditState_didChangeDependencies_closure: function _ProductEditState_didChangeDependencies_closure(t0) { this.$this = t0; }, _ProductEditState_didChangeDependencies_closure0: function _ProductEditState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _ProductEditState_dispose_closure: function _ProductEditState_dispose_closure(t0) { this.$this = t0; }, _ProductEditState__onChanged_closure: function _ProductEditState__onChanged_closure(t0) { this.$this = t0; }, _ProductEditState__onChanged_closure0: function _ProductEditState__onChanged_closure0(t0, t1) { this.$this = t0; this.product = t1; }, _ProductEditState_build_closure3: function _ProductEditState_build_closure3(t0) { this.viewModel = t0; }, _ProductEditState_build_closure4: function _ProductEditState_build_closure4(t0, t1) { this.$this = t0; this.viewModel = t1; }, _ProductEditState_build__closure: function _ProductEditState_build__closure(t0, t1) { this.$this = t0; this.isValid = t1; }, _ProductEditState_build_closure: function _ProductEditState_build_closure(t0) { this.localization = t0; }, _ProductEditState_build_closure0: function _ProductEditState_build_closure0(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure2: function _ProductEditState_build__closure2(t0) { this.taxRate = t0; }, _ProductEditState_build_closure1: function _ProductEditState_build_closure1(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure1: function _ProductEditState_build__closure1(t0) { this.taxRate = t0; }, _ProductEditState_build_closure2: function _ProductEditState_build_closure2(t0, t1) { this.viewModel = t0; this.product = t1; }, _ProductEditState_build__closure0: function _ProductEditState_build__closure0(t0) { this.taxRate = t0; }, ProductPresenter_getDefaultTableFields: function(userCompany) { var company = userCompany.company, t1 = H.setRuntimeTypeInfo(["product_key", "description"], type$.JSArray_legacy_String); if (company.enableProductCost) t1.push("cost"); t1.push("price"); if (company.enableProductQuantity) t1.push("quantity"); return t1; }, ProductPresenter: function ProductPresenter() { this.context = this.entity = null; }, ProductViewDocuments: function ProductViewDocuments(t0, t1) { this.viewModel = t0; this.key = t1; }, ProductViewDocuments_build_closure: function ProductViewDocuments_build_closure(t0, t1) { this.$this = t0; this.context = t1; }, ProductViewDocuments_build_closure0: function ProductViewDocuments_build_closure0(t0, t1) { this.$this = t0; this.context = t1; }, ProductViewVM_ProductViewVM$fromStore: function(store) { var t4, t5, product, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).productState.map; t2 = t2.productUIState.selectedId; product = J.$index$asx(t5._map$_map, t2); if (product == null) product = A.ProductEntity_ProductEntity(t2, null); product.get$isNew(); return new F.ProductViewVM(state, product, t4.$index(t1, t3).userCompany.company, new F.ProductViewVM_ProductViewVM$fromStore_closure(new F.ProductViewVM_ProductViewVM$fromStore__handleRefresh(store, product)), new F.ProductViewVM_ProductViewVM$fromStore_closure0(store, product), new F.ProductViewVM_ProductViewVM$fromStore_closure1(store, product)); }, ProductViewScreen: function ProductViewScreen(t0) { this.key = t0; }, ProductViewScreen_build_closure0: function ProductViewScreen_build_closure0() { }, ProductViewScreen_build_closure: function ProductViewScreen_build_closure(t0) { this.$this = t0; }, ProductViewVM: function ProductViewVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.product = t1; _.company = t2; _.onRefreshed = t3; _.onUploadDocument = t4; _.onDeleteDocument = t5; }, ProductViewVM_ProductViewVM$fromStore__handleRefresh: function ProductViewVM_ProductViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore_closure: function ProductViewVM_ProductViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, ProductViewVM_ProductViewVM$fromStore_closure0: function ProductViewVM_ProductViewVM$fromStore_closure0(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore__closure0: function ProductViewVM_ProductViewVM$fromStore__closure0(t0) { this.context = t0; }, ProductViewVM_ProductViewVM$fromStore__closure1: function ProductViewVM_ProductViewVM$fromStore__closure1(t0) { this.context = t0; }, ProductViewVM_ProductViewVM$fromStore___closure: function ProductViewVM_ProductViewVM$fromStore___closure(t0) { this.error = t0; }, ProductViewVM_ProductViewVM$fromStore_closure1: function ProductViewVM_ProductViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.product = t1; }, ProductViewVM_ProductViewVM$fromStore__closure: function ProductViewVM_ProductViewVM$fromStore__closure(t0, t1) { this.store = t0; this.product = t1; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore: function(store) { var t3, company, state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); company = t3.$index(t2, t1).userCompany.company; t3.$index(t2, t1).clientState.toString; t3.$index(t2, t1).clientState.toString; return new F.RecurringInvoiceEditDetailsVM(state, company, invoice, new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure(store), new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0(state, company, store), new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1(store)); }, RecurringInvoiceEditDetailsScreen: function RecurringInvoiceEditDetailsScreen(t0, t1) { this.viewModel = t0; this.key = t1; }, RecurringInvoiceEditDetailsScreen_build_closure0: function RecurringInvoiceEditDetailsScreen_build_closure0() { }, RecurringInvoiceEditDetailsScreen_build_closure: function RecurringInvoiceEditDetailsScreen_build_closure(t0) { this.$this = t0; }, RecurringInvoiceEditDetailsVM: function RecurringInvoiceEditDetailsVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.company = t1; _.invoice = t2; _.onChanged = t3; _.onClientChanged = t4; _.onAddClientPressed = t5; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0(t0, t1, t2) { this.state = t0; this.company = t1; this.store = t2; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure1: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure1(t0) { this.exchangeRate = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure(t0) { this.store = t0; }, RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0: function RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0(t0) { this.store = t0; }, CreditCardsAndBanksVM_fromStore: function(store) { return new F.CreditCardsAndBanksVM(store.get$_store$_state()); }, CreditCardsAndBanksScreen: function CreditCardsAndBanksScreen(t0) { this.key = t0; }, CreditCardsAndBanksScreen_build_closure: function CreditCardsAndBanksScreen_build_closure() { }, CreditCardsAndBanksVM: function CreditCardsAndBanksVM(t0) { this.state = t0; }, ExpenseSettings: function ExpenseSettings(t0, t1) { this.viewModel = t0; this.key = t1; }, _ExpenseSettingsState: function _ExpenseSettingsState(t0) { var _ = this; _._widget = _._expense_settings$_focusNode = null; _._debugLifecycleState = t0; _._framework$_element = null; }, _ExpenseSettingsState_build_closure: function _ExpenseSettingsState_build_closure(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure3: function _ExpenseSettingsState_build__closure3(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure0: function _ExpenseSettingsState_build_closure0(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure2: function _ExpenseSettingsState_build__closure2(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure1: function _ExpenseSettingsState_build_closure1(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure1: function _ExpenseSettingsState_build__closure1(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure2: function _ExpenseSettingsState_build_closure2(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure0: function _ExpenseSettingsState_build__closure0(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure3: function _ExpenseSettingsState_build_closure3(t0, t1) { this.viewModel = t0; this.company = t1; }, _ExpenseSettingsState_build__closure: function _ExpenseSettingsState_build__closure(t0) { this.value = t0; }, _ExpenseSettingsState_build_closure4: function _ExpenseSettingsState_build_closure4(t0, t1) { this.viewModel = t0; this.context = t1; }, GeneratedNumbers: function GeneratedNumbers(t0, t1) { this.viewModel = t0; this.key = t1; }, _GeneratedNumbersState: function _GeneratedNumbersState(t0, t1, t2, t3, t4) { var _ = this; _._generated_numbers$_controller = _._generated_numbers$_focusNode = null; _._recurringPrefixController = t0; _._generated_numbers$_controllers = t1; _._generated_numbers$_debouncer = t2; _.SingleTickerProviderStateMixin__ticker = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _GeneratedNumbersState_initState_closure: function _GeneratedNumbersState_initState_closure(t0, t1) { this._box_0 = t0; this.company = t1; }, _GeneratedNumbersState_dispose_closure: function _GeneratedNumbersState_dispose_closure(t0) { this.$this = t0; }, _GeneratedNumbersState_didChangeDependencies_closure: function _GeneratedNumbersState_didChangeDependencies_closure(t0) { this.$this = t0; }, _GeneratedNumbersState_didChangeDependencies_closure0: function _GeneratedNumbersState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _GeneratedNumbersState__onChanged_closure: function _GeneratedNumbersState__onChanged_closure(t0) { this.$this = t0; }, _GeneratedNumbersState__onChanged__closure: function _GeneratedNumbersState__onChanged__closure(t0) { this.$this = t0; }, _GeneratedNumbersState__onSavePressed_closure: function _GeneratedNumbersState__onSavePressed_closure(t0) { this._box_0 = t0; }, _GeneratedNumbersState__onSavePressed_closure0: function _GeneratedNumbersState__onSavePressed_closure0() { }, _GeneratedNumbersState_build_closure0: function _GeneratedNumbersState_build_closure0(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure15: function _GeneratedNumbersState_build__closure15(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure: function _GeneratedNumbersState_build_closure() { }, _GeneratedNumbersState_build_closure1: function _GeneratedNumbersState_build_closure1(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure14: function _GeneratedNumbersState_build__closure14(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure2: function _GeneratedNumbersState_build_closure2(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure13: function _GeneratedNumbersState_build__closure13(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure3: function _GeneratedNumbersState_build_closure3(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure12: function _GeneratedNumbersState_build__closure12(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure5: function _GeneratedNumbersState_build_closure5(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure11: function _GeneratedNumbersState_build__closure11(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure4: function _GeneratedNumbersState_build_closure4(t0) { this.localization = t0; }, _GeneratedNumbersState_build_closure6: function _GeneratedNumbersState_build_closure6(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure10: function _GeneratedNumbersState_build__closure10(t0) { this.value = t0; }, _GeneratedNumbersState_build_closure7: function _GeneratedNumbersState_build_closure7(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure9: function _GeneratedNumbersState_build__closure9(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure8: function _GeneratedNumbersState_build_closure8(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure8: function _GeneratedNumbersState_build__closure8(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure9: function _GeneratedNumbersState_build_closure9(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure7: function _GeneratedNumbersState_build__closure7(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure10: function _GeneratedNumbersState_build_closure10(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure6: function _GeneratedNumbersState_build__closure6(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure11: function _GeneratedNumbersState_build_closure11(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure5: function _GeneratedNumbersState_build__closure5(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure12: function _GeneratedNumbersState_build_closure12(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure4: function _GeneratedNumbersState_build__closure4(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure13: function _GeneratedNumbersState_build_closure13(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure3: function _GeneratedNumbersState_build__closure3(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure14: function _GeneratedNumbersState_build_closure14(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure2: function _GeneratedNumbersState_build__closure2(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure15: function _GeneratedNumbersState_build_closure15(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure1: function _GeneratedNumbersState_build__closure1(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure16: function _GeneratedNumbersState_build_closure16(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure0: function _GeneratedNumbersState_build__closure0(t0, t1) { this.counter = t0; this.pattern = t1; }, _GeneratedNumbersState_build_closure17: function _GeneratedNumbersState_build_closure17(t0, t1) { this.viewModel = t0; this.settings = t1; }, _GeneratedNumbersState_build__closure: function _GeneratedNumbersState_build__closure(t0, t1) { this.counter = t0; this.pattern = t1; }, EntityNumberSettings: function EntityNumberSettings(t0, t1, t2, t3, t4, t5) { var _ = this; _.counterValue = t0; _.patternValue = t1; _.onChanged = t2; _.showVendorFields = t3; _.showClientFields = t4; _.key = t5; }, _EntityNumberSettingsState: function _EntityNumberSettingsState(t0, t1, t2, t3, t4) { var _ = this; _._counterController = t0; _._patternController = t1; _._generated_numbers$_controllers = t2; _._generated_numbers$_debouncer = t3; _._widget = null; _._debugLifecycleState = t4; _._framework$_element = null; }, _EntityNumberSettingsState_dispose_closure: function _EntityNumberSettingsState_dispose_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_didChangeDependencies_closure: function _EntityNumberSettingsState_didChangeDependencies_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_didChangeDependencies_closure0: function _EntityNumberSettingsState_didChangeDependencies_closure0(t0) { this.$this = t0; }, _EntityNumberSettingsState__onChanged_closure: function _EntityNumberSettingsState__onChanged_closure(t0) { this.$this = t0; }, _EntityNumberSettingsState_build_closure: function _EntityNumberSettingsState_build_closure() { }, _EntityNumberSettingsState_build_closure0: function _EntityNumberSettingsState_build_closure0(t0) { this.$this = t0; }, HelpPanel: function HelpPanel(t0, t1, t2, t3) { var _ = this; _.showVendorFields = t0; _.showClientFields = t1; _.onFieldPressed = t2; _.key = t3; }, HelpPanel_build_closure: function HelpPanel_build_closure(t0) { this.$this = t0; }, HelpPanel_build_closure0: function HelpPanel_build_closure0(t0) { this.$this = t0; }, HelpPanel_build_closure1: function HelpPanel_build_closure1() { }, HelpPanel_build_closure2: function HelpPanel_build_closure2(t0) { this.$this = t0; }, HelpPanel_build__closure: function HelpPanel_build__closure(t0, t1) { this.$this = t0; this.field = t1; }, __GeneratedNumbersState_State_SingleTickerProviderStateMixin: function __GeneratedNumbersState_State_SingleTickerProviderStateMixin() { }, GeneratedNumbersVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState, t2 = t1.company; return new F.GeneratedNumbersVM(state, new F.GeneratedNumbersVM_fromStore_closure(store), t1.get$settings(), new F.GeneratedNumbersVM_fromStore_closure0(store), t2); }, GeneratedNumbersScreen: function GeneratedNumbersScreen(t0) { this.key = t0; }, GeneratedNumbersScreen_build_closure: function GeneratedNumbersScreen_build_closure() { }, GeneratedNumbersVM: function GeneratedNumbersVM(t0, t1, t2, t3, t4) { var _ = this; _.state = t0; _.onSavePressed = t1; _.settings = t2; _.onSettingsChanged = t3; _.company = t4; }, GeneratedNumbersVM_fromStore_closure0: function GeneratedNumbersVM_fromStore_closure0(t0) { this.store = t0; }, GeneratedNumbersVM_fromStore_closure: function GeneratedNumbersVM_fromStore_closure(t0) { this.store = t0; }, GeneratedNumbersVM_fromStore__closure: function GeneratedNumbersVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TaskSettingsVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState; return new F.TaskSettingsVM(state, new F.TaskSettingsVM_fromStore_closure(store), t1.company, t1.get$settings(), new F.TaskSettingsVM_fromStore_closure0(store), new F.TaskSettingsVM_fromStore_closure1(store), new F.TaskSettingsVM_fromStore_closure2(store)); }, TaskSettingsScreen: function TaskSettingsScreen(t0) { this.key = t0; }, TaskSettingsScreen_build_closure: function TaskSettingsScreen_build_closure() { }, TaskSettingsVM: function TaskSettingsVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.onSavePressed = t1; _.company = t2; _.settings = t3; _.onCompanyChanged = t4; _.onSettingsChanged = t5; _.onConfigureStatusesPressed = t6; }, TaskSettingsVM_fromStore_closure0: function TaskSettingsVM_fromStore_closure0(t0) { this.store = t0; }, TaskSettingsVM_fromStore_closure1: function TaskSettingsVM_fromStore_closure1(t0) { this.store = t0; }, TaskSettingsVM_fromStore_closure: function TaskSettingsVM_fromStore_closure(t0) { this.store = t0; }, TaskSettingsVM_fromStore__closure: function TaskSettingsVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TaskSettingsVM_fromStore_closure2: function TaskSettingsVM_fromStore_closure2(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore: function(store) { var state = store.get$_store$_state(), t1 = state.uiState.settingsUIState, t2 = t1.selectedTemplate; return new F.TemplatesAndRemindersVM(state, t1.get$settings(), t2, new F.TemplatesAndRemindersVM_fromStore_closure(store), new F.TemplatesAndRemindersVM_fromStore_closure0(store), new F.TemplatesAndRemindersVM_fromStore_closure1(store)); }, TemplatesAndRemindersScreen: function TemplatesAndRemindersScreen(t0) { this.key = t0; }, TemplatesAndRemindersScreen_build_closure: function TemplatesAndRemindersScreen_build_closure() { }, TemplatesAndRemindersVM: function TemplatesAndRemindersVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.state = t0; _.settings = t1; _.selectedTemplate = t2; _.onTemplateChanged = t3; _.onSettingsChanged = t4; _.onSavePressed = t5; }, TemplatesAndRemindersVM_fromStore_closure0: function TemplatesAndRemindersVM_fromStore_closure0(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore_closure: function TemplatesAndRemindersVM_fromStore_closure(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore_closure1: function TemplatesAndRemindersVM_fromStore_closure1(t0) { this.store = t0; }, TemplatesAndRemindersVM_fromStore__closure: function TemplatesAndRemindersVM_fromStore__closure(t0, t1) { this.store = t0; this.context = t1; }, TokenPresenter: function TokenPresenter() { this.context = this.entity = null; }, VendorViewVM_VendorViewVM$fromStore: function(store) { var t4, t5, vendor, state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); t5 = t4.$index(t1, t3).vendorState.map; t2 = t2.vendorUIState.selectedId; vendor = J.$index$asx(t5._map$_map, t2); if (vendor == null) vendor = B.VendorEntity_VendorEntity(t2, null, null); t1 = t4.$index(t1, t3).userCompany.company; vendor.get$isNew(); return new F.VendorViewVM(state, vendor, t1, new F.VendorViewVM_VendorViewVM$fromStore_closure(new F.VendorViewVM_VendorViewVM$fromStore__handleRefresh(store, vendor)), new F.VendorViewVM_VendorViewVM$fromStore_closure0(state, vendor), new F.VendorViewVM_VendorViewVM$fromStore_closure1(store, vendor), new F.VendorViewVM_VendorViewVM$fromStore_closure2(store, vendor)); }, VendorViewScreen: function VendorViewScreen(t0, t1) { this.isFilter = t0; this.key = t1; }, VendorViewScreen_build_closure0: function VendorViewScreen_build_closure0() { }, VendorViewScreen_build_closure: function VendorViewScreen_build_closure(t0) { this.$this = t0; }, VendorViewVM: function VendorViewVM(t0, t1, t2, t3, t4, t5, t6) { var _ = this; _.state = t0; _.vendor = t1; _.company = t2; _.onRefreshed = t3; _.onAddExpensePressed = t4; _.onUploadDocument = t5; _.onDeleteDocument = t6; }, VendorViewVM_VendorViewVM$fromStore__handleRefresh: function VendorViewVM_VendorViewVM$fromStore__handleRefresh(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore_closure: function VendorViewVM_VendorViewVM$fromStore_closure(t0) { this._handleRefresh = t0; }, VendorViewVM_VendorViewVM$fromStore_closure0: function VendorViewVM_VendorViewVM$fromStore_closure0(t0, t1) { this.state = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore_closure1: function VendorViewVM_VendorViewVM$fromStore_closure1(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore__closure0: function VendorViewVM_VendorViewVM$fromStore__closure0(t0) { this.context = t0; }, VendorViewVM_VendorViewVM$fromStore__closure1: function VendorViewVM_VendorViewVM$fromStore__closure1(t0) { this.context = t0; }, VendorViewVM_VendorViewVM$fromStore___closure: function VendorViewVM_VendorViewVM$fromStore___closure(t0) { this.error = t0; }, VendorViewVM_VendorViewVM$fromStore_closure2: function VendorViewVM_VendorViewVM$fromStore_closure2(t0, t1) { this.store = t0; this.vendor = t1; }, VendorViewVM_VendorViewVM$fromStore__closure: function VendorViewVM_VendorViewVM$fromStore__closure(t0, t1) { this.store = t0; this.vendor = t1; }, WebhookEditVM_WebhookEditVM$fromStore: function(store) { var t3, t4, t5, state = store.get$_store$_state(), t1 = state.uiState, webhook = t1.webhookUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, t1).webhookState.map; t5 = webhook.id; J.$index$asx(t4._map$_map, t5); return new F.WebhookEditVM(webhook, t3.$index(t2, t1).userCompany.company, new F.WebhookEditVM_WebhookEditVM$fromStore_closure(store), new F.WebhookEditVM_WebhookEditVM$fromStore_closure0(store, state), new F.WebhookEditVM_WebhookEditVM$fromStore_closure1(state, store), state); }, WebhookEditScreen: function WebhookEditScreen(t0) { this.key = t0; }, WebhookEditScreen_build_closure0: function WebhookEditScreen_build_closure0() { }, WebhookEditScreen_build_closure: function WebhookEditScreen_build_closure() { }, WebhookEditVM: function WebhookEditVM(t0, t1, t2, t3, t4, t5) { var _ = this; _.webhook = t0; _.company = t1; _.onChanged = t2; _.onSavePressed = t3; _.onCancelPressed = t4; _.state = t5; }, WebhookEditVM_WebhookEditVM$fromStore_closure: function WebhookEditVM_WebhookEditVM$fromStore_closure(t0) { this.store = t0; }, WebhookEditVM_WebhookEditVM$fromStore_closure1: function WebhookEditVM_WebhookEditVM$fromStore_closure1(t0, t1) { this.state = t0; this.store = t1; }, WebhookEditVM_WebhookEditVM$fromStore_closure0: function WebhookEditVM_WebhookEditVM$fromStore_closure0(t0, t1) { this.store = t0; this.state = t1; }, WebhookEditVM_WebhookEditVM$fromStore__closure: function WebhookEditVM_WebhookEditVM$fromStore__closure(t0, t1) { this.store = t0; this.state = t1; }, WebhookEditVM_WebhookEditVM$fromStore___closure: function WebhookEditVM_WebhookEditVM$fromStore___closure(t0, t1, t2, t3, t4) { var _ = this; _.webhook = t0; _.localization = t1; _.state = t2; _.store = t3; _.navigator = t4; }, WebhookEditVM_WebhookEditVM$fromStore___closure0: function WebhookEditVM_WebhookEditVM$fromStore___closure0() { }, WebhookEditVM_WebhookEditVM$fromStore____closure: function WebhookEditVM_WebhookEditVM$fromStore____closure(t0) { this.error = t0; }, Logger_Logger: function($name) { return $.Logger__loggers.putIfAbsent$2(0, $name, new F.Logger_Logger_closure($name)); }, Logger: function Logger(t0, t1, t2) { var _ = this; _.name = t0; _.parent = t1; _._level = null; _._logger$_children = t2; _._logger$_controller = null; }, Logger_Logger_closure: function Logger_Logger_closure(t0) { this.name = t0; }, AnimationDirection: function AnimationDirection(t0) { this._fade_widget$_name = t0; }, FadeWidget: function FadeWidget(t0, t1, t2, t3, t4) { var _ = this; _.child = t0; _.duration = t1; _.direction = t2; _.curve = t3; _.key = t4; }, _FadeWidgetState: function _FadeWidgetState(t0, t1) { var _ = this; _.___FadeWidgetState_hideWidget = _.___FadeWidgetState_controller = _.___FadeWidgetState_opacity = $; _.SingleTickerProviderStateMixin__ticker = t0; _._widget = null; _._debugLifecycleState = t1; _._framework$_element = null; }, _FadeWidgetState_animationStatusChange_closure: function _FadeWidgetState_animationStatusChange_closure(t0, t1) { this.$this = t0; this.status = t1; }, __FadeWidgetState_State_SingleTickerProviderStateMixin: function __FadeWidgetState_State_SingleTickerProviderStateMixin() { }, UrlStyle: function UrlStyle(t0, t1, t2, t3) { var _ = this; _.separatorPattern = t0; _.needsSeparatorPattern = t1; _.rootPattern = t2; _.relativeRootPattern = t3; }, PhotoViewHeroAttributes: function PhotoViewHeroAttributes(t0) { this.tag = t0; }, PaintCache: function PaintCache(t0, t1) { this._pixelPaints = t0; this._keyedPaints = t1; }, Subject: function Subject() { }, Subject_addStream_closure: function Subject_addStream_closure(t0, t1, t2) { this._box_0 = t0; this.$this = t1; this.completer = t2; }, Subject_addStream_closure0: function Subject_addStream_closure0(t0) { this.$this = t0; }, Subject_addStream_closure2: function Subject_addStream_closure2(t0, t1, t2) { this.$this = t0; this.cancelOnError = t1; this.complete = t2; }, Subject_addStream_closure1: function Subject_addStream_closure1(t0) { this.complete = t0; }, _StreamSinkWrapper: function _StreamSinkWrapper(t0, t1) { this._subject$_target = t0; this.$ti = t1; }, forwardStream: function(stream, connectedSink, $T, $R) { var t2, t3, t4, t5, onListen, onCancel, t1 = {}; t1._controller0 = $; t2 = new F.forwardStream__controller_get(t1, $R); t3 = new F.forwardStream__controller_set(t1, $R); t1._subscription0 = $; t4 = new F.forwardStream__subscription_get(t1, $T); t5 = new F.forwardStream_runCatching(connectedSink, t2); onListen = new F.forwardStream_closure(t5, connectedSink, t2, new F.forwardStream__subscription_set(t1, $T), stream, $T); onCancel = new F.forwardStream_closure0(t4, connectedSink, t2); if ($T._eval$1("Subject<0>")._is(stream)) t3.call$1(stream.createForwardingSubject$1$3$onCancel$onListen$sync(onCancel, onListen, true, $R)); else if (stream.get$isBroadcast()) t3.call$1(new P._SyncBroadcastStreamController(onListen, onCancel, $R._eval$1("_SyncBroadcastStreamController<0>"))); else t3.call$1(P.StreamController_StreamController(onCancel, onListen, new F.forwardStream_closure1(t4, t5, connectedSink, t2), new F.forwardStream_closure2(t4, t5, connectedSink, t2), true, $R)); return J.get$stream$z(t2.call$0()); }, forwardStream__controller_set: function forwardStream__controller_set(t0, t1) { this._box_0 = t0; this.R = t1; }, forwardStream__subscription_set: function forwardStream__subscription_set(t0, t1) { this._box_0 = t0; this.T = t1; }, forwardStream__controller_get: function forwardStream__controller_get(t0, t1) { this._box_0 = t0; this.R = t1; }, forwardStream__subscription_get: function forwardStream__subscription_get(t0, t1) { this._box_0 = t0; this.T = t1; }, forwardStream_runCatching: function forwardStream_runCatching(t0, t1) { this.connectedSink = t0; this._controller_get = t1; }, forwardStream_closure: function forwardStream_closure(t0, t1, t2, t3, t4, t5) { var _ = this; _.runCatching = t0; _.connectedSink = t1; _._controller_get = t2; _._subscription_set = t3; _.stream = t4; _.T = t5; }, forwardStream__closure1: function forwardStream__closure1(t0, t1) { this.connectedSink = t0; this._controller_get = t1; }, forwardStream__closure2: function forwardStream__closure2(t0, t1, t2, t3) { var _ = this; _.runCatching = t0; _.connectedSink = t1; _._controller_get = t2; _.T = t3; }, forwardStream___closure1: function forwardStream___closure1(t0, t1, t2) { this.connectedSink = t0; this._controller_get = t1; this.data = t2; }, forwardStream__closure4: function forwardStream__closure4(t0, t1, t2) { this.runCatching = t0; this.connectedSink = t1; this._controller_get = t2; }, forwardStream___closure: function forwardStream___closure(t0, t1, t2, t3) { var _ = this; _.connectedSink = t0; _._controller_get = t1; _.e = t2; _.st = t3; }, forwardStream__closure3: function forwardStream__closure3(t0, t1, t2) { this.runCatching = t0; this.connectedSink = t1; this._controller_get = t2; }, forwardStream___closure0: function forwardStream___closure0(t0, t1) { this.connectedSink = t0; this._controller_get = t1; }, forwardStream_closure0: function forwardStream_closure0(t0, t1, t2) { this._subscription_get = t0; this.connectedSink = t1; this._controller_get = t2; }, forwardStream_closure1: function forwardStream_closure1(t0, t1, t2, t3) { var _ = this; _._subscription_get = t0; _.runCatching = t1; _.connectedSink = t2; _._controller_get = t3; }, forwardStream__closure0: function forwardStream__closure0(t0, t1) { this.connectedSink = t0; this._controller_get = t1; }, forwardStream_closure2: function forwardStream_closure2(t0, t1, t2, t3) { var _ = this; _._subscription_get = t0; _.runCatching = t1; _.connectedSink = t2; _._controller_get = t3; }, forwardStream__closure: function forwardStream__closure(t0, t1) { this.connectedSink = t0; this._controller_get = t1; }, MethodChannelSharedPreferencesStore: function MethodChannelSharedPreferencesStore() { }, MethodChannelUrlLauncher: function MethodChannelUrlLauncher(t0) { this._instanceToken = t0; }, MethodChannelUrlLauncher_canLaunch_closure: function MethodChannelUrlLauncher_canLaunch_closure() { }, MethodChannelUrlLauncher_launch_closure: function MethodChannelUrlLauncher_launch_closure() { }, _setLoading: function(state, action) { return true; }, _setLoaded: function(state, action) { return false; }, _setSaving: function(state, action) { return true; }, _setSaved: function(state, action) { return false; }, ValueStreamExtensions_get_value: function(_this) { var t1 = _this._wrapper.latestValue; return t1 == null ? null : t1.value; }, main0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), t3, t4, target, vendor, appVersion, t1, t2; var $async$main0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$webPluginRegistrar(); t2 = $.$get$FilePickerWeb_platform(); E.PlatformInterface_verifyToken(t2, $.$get$FilePicker__token()); $.FilePicker__instance = t2; X.GoogleSignInPlatform_instance(M.GoogleSignInPlugin$()); t2 = $.$get$ImagePickerPlatform__token(); t3 = new V.ImagePickerPlugin(t2); t4 = document; target = t4.querySelector("#__image_picker_web-file-input"); if (target == null) { target = W._ElementFactoryProvider_createElement_tag("flt-image-picker-inputs", null); target.id = "__image_picker_web-file-input"; t4 = t4.querySelector("body"); t4.toString; J.get$children$x(t4).add$1(0, target); } t3.__ImagePickerPlugin__target = target; E.PlatformInterface_verifyToken(t3, t2); $.ImagePickerPlatform__instance = t3; t2 = type$.nullable_String; new A.MethodChannel("io.scer.native_pdf_renderer", C.C_StandardMethodCodec, t1).setMethodCallHandler$1(new M.NativePdfRendererPlugin(new S.DocumentRepository(P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Document_2)), new S.PageRepository(P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Page))).get$onMethodCall()); t2 = $.$get$PackageInfoPlatform__token(); t3 = new M.PackageInfoPlugin(t2); E.PlatformInterface_verifyToken(t3, t2); $.PackageInfoPlatform__instance = t3; new A.MethodChannel("sentry_flutter", C.C_StandardMethodCodec, t1).setMethodCallHandler$1(new Z.SentryFlutterWeb().get$handleMethodCall()); E.SharedPreferencesStorePlatform_instance(new V.SharedPreferencesPlugin()); t2 = window; t3 = $.$get$UrlLauncherPlatform__token(); t4 = new Y.UrlLauncherPlugin(t2, t3); t2 = t2.navigator; vendor = t2.vendor; appVersion = t2.appVersion; t4._isSafari = vendor != null && C.JSString_methods.contains$1(vendor, "Apple") && appVersion != null && C.JSString_methods.contains$1(appVersion, "Version"); E.PlatformInterface_verifyToken(t4, t3); $.UrlLauncherPlatform__instance = t4; $.$get$platformViewRegistry().registerViewFactory$2("__url_launcher::link", D.link_LinkViewController__viewFactory$closure()); $.pluginMessageCallHandler = t1.get$handleFrameworkMessage(); $async$goto = 2; return P._asyncAwait(P.webOnlyInitializePlatform(), $async$main0); case 2: // returning from await. F.main(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$main0, $async$completer); } }; var holders = [C, H, J, P, W, D, R, T, Q, Y, S, O, N, A, X, M, U, K, Z, B, G, L, E, V, F]; hunkHelpers.setFunctionNamesIfNecessary(holders); var $ = {}; H.initializeEngine_closure.prototype = { call$2: function(_, __) { var t1, _i; for (t1 = $._hotRestartListeners.length, _i = 0; _i < $._hotRestartListeners.length; $._hotRestartListeners.length === t1 || (0, H.throwConcurrentModificationError)($._hotRestartListeners), ++_i) $._hotRestartListeners[_i].call$0(); return P.Future_Future$value(P.ServiceExtensionResponse$result("OK"), type$.ServiceExtensionResponse); }, "call*": "call$2", $requiredArgCount: 2, $signature: 658 }; H.initializeEngine_closure0.prototype = { call$0: function() { var t1 = this._box_0; if (!t1.waitingForAnimation) { t1.waitingForAnimation = true; C.Window_methods.requestAnimationFrame$1(window, new H.initializeEngine__closure(t1)); } }, $signature: 0 }; H.initializeEngine__closure.prototype = { call$1: function(highResTime) { var highResTimeMicroseconds, t1, t2, t3; H._frameTimingsOnVsync(); this._box_0.waitingForAnimation = false; highResTimeMicroseconds = C.JSNumber_methods.toInt$0(1000 * highResTime); H._frameTimingsOnBuildStart(); t1 = $.$get$EnginePlatformDispatcher__instance(); t2 = t1._onBeginFrame; if (t2 != null) { t3 = P.Duration$(0, 0, highResTimeMicroseconds, 0, 0, 0); H.invoke1(t2, t1._onBeginFrameZone, t3, type$.Duration); } t2 = t1._onDrawFrame; if (t2 != null) H.invoke(t2, t1._onDrawFrameZone); }, $signature: 592 }; H._addUrlStrategyListener_closure.prototype = { call$1: function(jsStrategy) { var t1 = jsStrategy == null ? null : new H.CustomUrlStrategy(jsStrategy); $._isUrlStrategySet = true; $._customUrlStrategy = t1; }, $signature: 1105 }; H._addUrlStrategyListener_closure0.prototype = { call$0: function() { self._flutter_web_set_location_strategy = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H._NullTreeSanitizer.prototype = { sanitizeTree$1: function(node) { } }; H.AlarmClock.prototype = { get$callback: function(_) { var t1 = this.__AlarmClock_callback; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("callback")) : t1; }, set$datetime: function(value) { var now, t1, t2, _this = this; if (J.$eq$(value, _this._datetime)) return; if (value == null) { _this._cancelTimer$0(); _this._datetime = null; return; } now = _this._timestampFunction.call$0(); t1 = value._value; t2 = now._value; if (t1 < t2) { _this._cancelTimer$0(); _this._datetime = value; return; } if (_this._timer == null) _this._timer = P.Timer_Timer(P.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); else if (_this._datetime._value > t1) { _this._cancelTimer$0(); _this._timer = P.Timer_Timer(P.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); } _this._datetime = value; }, _cancelTimer$0: function() { var t1 = this._timer; if (t1 != null) t1.cancel$0(0); this._timer = null; }, _timerDidFire$0: function() { var t2, _this = this, now = _this._timestampFunction.call$0(), t1 = _this._datetime; t1.toString; t2 = now._value; t1 = t1._value; if (t2 >= t1) { _this._timer = null; _this.callback$0(0); } else _this._timer = P.Timer_Timer(P.Duration$(0, 0, 0, t1 - t2, 0, 0), _this.get$_timerDidFire()); }, callback$0: function($receiver) { return this.get$callback(this).call$0(); } }; H.AssetManager.prototype = { get$_baseUrl: function() { var t1 = new H.WhereTypeIterable(new W._FrozenElementList(window.document.querySelectorAll("meta"), type$._FrozenElementList_Element), type$.WhereTypeIterable_nullable_MetaElement).firstWhere$2$orElse(0, new H.AssetManager__baseUrl_closure(), new H.AssetManager__baseUrl_closure0()); return t1 == null ? null : t1.content; }, getAssetUrl$1: function(asset) { var t1; if (P.Uri_parse(asset, 0, null).get$hasScheme()) return P._Uri__uriEncode(C.List_gnE, asset, C.C_Utf8Codec, false); t1 = this.get$_baseUrl(); if (t1 == null) t1 = ""; return P._Uri__uriEncode(C.List_gnE, t1 + ("assets/" + H.S(asset)), C.C_Utf8Codec, false); }, load$1: function(_, asset) { return this.load$body$AssetManager(_, asset); }, load$body$AssetManager: function(_, asset) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.ByteData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, request, response, e, target, t1, exception, url, $async$exception; var $async$load$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start url = $async$self.getAssetUrl$1(asset); $async$handler = 4; $async$goto = 7; return P._asyncAwait(W.HttpRequest_request(url, "arraybuffer"), $async$load$1); case 7: // returning from await. request = $async$result; response = W._convertNativeToDart_XHR_Response(request.response); t1 = J.asByteData$0$x(response); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (type$.ProgressEvent._is(t1)) { e = t1; target = W._convertNativeToDart_EventTarget(e.target); if (type$.HttpRequest._is(target)) { if (target.status === 404 && asset === "AssetManifest.json") { $.$get$printWarning().call$1("Asset manifest does not exist at `" + H.S(url) + "` \u2013 ignoring."); $async$returnValue = H.NativeByteData_NativeByteData$view(new Uint8Array(H._ensureNativeList(C.C_Utf8Codec.get$encoder().convert$1("{}"))).buffer, 0, null); // goto return $async$goto = 1; break; } t1 = target.status; t1.toString; throw H.wrapException(new H.AssetManagerException(url, t1)); } $.$get$printWarning().call$1("Caught ProgressEvent with target: " + H.S(target)); throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$load$1, $async$completer); } }; H.AssetManager__baseUrl_closure.prototype = { call$1: function(e) { return J.$eq$(J.get$name$x(e), "assetBase"); }, $signature: 110 }; H.AssetManager__baseUrl_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; H.AssetManagerException.prototype = { toString$0: function(_) { return 'Failed to load asset at "' + H.S(this.url) + '" (' + H.S(this.httpStatus) + ")"; }, $isException: 1 }; H.BitmapCanvas.prototype = { set$bounds: function(_, newValue) { var newCanvasPositionX, newCanvasPositionY, _this = this; _this._bounds = newValue; newCanvasPositionX = J.floor$0$n(newValue.left) - 1; newCanvasPositionY = J.floor$0$n(_this._bounds.top) - 1; if (_this._canvasPositionX !== newCanvasPositionX || _this._canvasPositionY !== newCanvasPositionY) { _this._canvasPositionX = newCanvasPositionX; _this._canvasPositionY = newCanvasPositionY; _this._updateRootElementTransform$0(); } }, _updateRootElementTransform$0: function() { var t1 = this.rootElement.style, t2 = "translate(" + this._canvasPositionX + "px, " + this._canvasPositionY + "px)"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, _setupInitialTransform$0: function() { var _this = this, t1 = _this._bounds, t2 = t1.left, t3 = _this._canvasPositionX; t1 = t1.top; _this._canvasPool.translate$2(0, -t2 + (t2 - 1 - t3) + 1, -t1 + (t1 - 1 - _this._canvasPositionY) + 1); }, doesFitBounds$2: function(newBounds, newDensity) { return this._widthInBitmapPixels >= H.BitmapCanvas__widthToPhysical(newBounds.right - newBounds.left) && this._heightInBitmapPixels >= H.BitmapCanvas__heightToPhysical(newBounds.bottom - newBounds.top) && this._density === newDensity; }, dispose$0: function(_) { this._canvasPool.dispose$0(0); }, clear$0: function(_) { var t1, len, t2, i, child, t3, _this = this; _this._contains3dTransform = false; _this._canvasPool.clear$0(0); t1 = _this.__engine$_children; len = t1.length; for (t2 = _this.rootElement, i = 0; i < len; ++i) { child = t1[i]; if (child.parentElement === t2) { t3 = child.parentNode; if (t3 != null) t3.removeChild(child); } } C.JSArray_methods.set$length(t1, 0); _this._childOverdraw = false; _this._cachedLastCssFont = null; _this._setupInitialTransform$0(); }, save$0: function(_) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$save(0); if (t1.__engine$_canvas != null) { t1.get$context(t1).save(); ++t1._saveContextCount; } return this._saveCount++; }, restore$0: function(_) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$restore(0); if (t1.__engine$_canvas != null) { t1.get$context(t1).restore(); t1.get$contextHandle().reset$0(0); --t1._saveContextCount; } --this._saveCount; this._cachedLastCssFont = null; }, translate$2: function(_, dx, dy) { this._canvasPool.translate$2(0, dx, dy); }, scale$2: function(_, sx, sy) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$scale(0, sx, sy); if (t1.__engine$_canvas != null) t1.get$context(t1).scale(sx, sy); }, rotate$1: function(_, radians) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$rotate(0, radians); if (t1.__engine$_canvas != null) t1.get$context(t1).rotate(radians); }, transform$1: function(_, matrix4) { var t1; if (H.transformKindOf(matrix4) === C.TransformKind_2) this._contains3dTransform = true; t1 = this._canvasPool; t1.super$_SaveStackTracking$transform(0, matrix4); if (t1.__engine$_canvas != null) t1.get$context(t1).transform(matrix4[0], matrix4[1], matrix4[4], matrix4[5], matrix4[12], matrix4[13]); }, clipRect$2: function(_, rect, op) { var path, t2, t1 = this._canvasPool; if (op === C.ClipOp_0) { path = H.SurfacePath$(); path._fillType = C.PathFillType_1; t2 = this._bounds; path.addRectWithDirection$3(new P.Rect(0, 0, 0 + (t2.right - t2.left), 0 + (t2.bottom - t2.top)), 0, 0); path.addRectWithDirection$3(rect, 0, 0); t1.clipPath$1(0, path); } else { t1.super$_SaveStackTracking$clipRect(0, rect); if (t1.__engine$_canvas != null) t1.__engine$_clipRect$2(t1.get$context(t1), rect); } }, clipRRect$1: function(_, rrect) { var t1 = this._canvasPool; t1.super$_SaveStackTracking$clipRRect(0, rrect); if (t1.__engine$_canvas != null) t1.__engine$_clipRRect$2(t1.get$context(t1), rrect); }, clipPath$1: function(_, path) { this._canvasPool.clipPath$1(0, path); }, _useDomForRenderingFill$1: function(paint) { var t1, _this = this; if (!_this._renderStrategy.isInsideShaderMask) if (!(!_this._preserveImageData && _this._contains3dTransform)) t1 = _this._childOverdraw && _this._canvasPool.__engine$_canvas == null && paint.maskFilter == null && paint.shader == null && paint.style !== C.PaintingStyle_1; else t1 = true; else t1 = true; return t1; }, _useDomForRenderingFillAndStroke$1: function(paint) { var _this = this, t1 = _this._renderStrategy; if (!t1.isInsideShaderMask) if (!(!_this._preserveImageData && _this._contains3dTransform)) t1 = (_this._childOverdraw || t1.hasImageElements || t1.hasParagraphs) && _this._canvasPool.__engine$_canvas == null && paint.maskFilter == null && paint.shader == null; else t1 = true; else t1 = true; return t1; }, drawLine$3: function(_, p1, p2, paint) { var path, shaderBounds, t1, ctx, t2, t3, t4, t5, t6, t7; if (this._useDomForRenderingFill$1(paint)) { path = H.SurfacePath$(); path.moveTo$2(0, p1._dx, p1._dy); path.lineTo$2(0, p2._dx, p2._dy); this.drawPath$2(0, path, paint); } else { shaderBounds = paint.shader != null ? P.Rect$fromPoints(p1, p2) : null; t1 = this._canvasPool; t1.get$contextHandle().setUpPaint$2(paint, shaderBounds); ctx = t1.get$context(t1); ctx.beginPath(); shaderBounds = t1.get$contextHandle()._shaderBounds; t2 = p1._dx; t3 = p1._dy; t4 = p2._dx; t5 = p2._dy; if (shaderBounds == null) { ctx.moveTo(t2, t3); ctx.lineTo(t4, t5); } else { t6 = shaderBounds.left; t7 = shaderBounds.top; ctx.moveTo(t2 - t6, t3 - t7); ctx.lineTo(t4 - t6, t5 - t7); } ctx.stroke(); t1.get$contextHandle().tearDownPaint$0(); } }, drawRect$2: function(_, rect, paint) { var element, t2, t3, shaderBounds, t4, t5, t6, t1 = this._canvasPool; if (this._useDomForRenderingFillAndStroke$1(paint)) { element = H._buildDrawRectElement(rect, paint, "draw-rect", t1._currentTransform); t1 = rect.left; t2 = rect.right; t2 = Math.min(H.checkNum(t1), H.checkNum(t2)); t1 = rect.top; t3 = rect.bottom; this._drawElement$3(element, new P.Offset(t2, Math.min(H.checkNum(t1), H.checkNum(t3))), paint); } else { t1.get$contextHandle().setUpPaint$2(paint, rect); t2 = paint.style; t1.get$context(t1).beginPath(); shaderBounds = t1.get$contextHandle()._shaderBounds; if (shaderBounds == null) { t3 = t1.get$context(t1); t4 = rect.left; t5 = rect.top; t3.rect(t4, t5, rect.right - t4, rect.bottom - t5); } else { t3 = t1.get$context(t1); t4 = rect.left; t5 = shaderBounds.left; t6 = rect.top; t3.rect(t4 - t5, t6 - shaderBounds.top, rect.right - t4, rect.bottom - t6); } t1.get$contextHandle().paint$1(t2); t1.get$contextHandle().tearDownPaint$0(); } }, _drawElement$3: function(element, offset, paint) { var clipElements, t3, _i, clipElement, blendMode, _this = this, t1 = _this._canvasPool, t2 = t1._clipStack; if (t2 != null) { clipElements = H._clipContent(t2, element, C.Offset_0_0, H.transformWithOffset(t1._currentTransform, offset)); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, H.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { _this.rootElement.appendChild(element); _this.__engine$_children.push(element); } blendMode = paint.blendMode; if (blendMode != null) { t1 = element.style; t2 = H._stringForBlendMode(blendMode); if (t2 == null) t2 = ""; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "mix-blend-mode"), t2, ""); } _this._closeCurrentCanvas$0(); }, drawRRect$2: function(_, rrect, paint) { var element, shaderBounds, left, right, $top, bottom, t0, trRadiusX, tlRadiusX, trRadiusY, tlRadiusY, blRadiusX, brRadiusX, blRadiusY, brRadiusY, t1 = rrect.left, t2 = rrect.top, t3 = rrect.right, t4 = rrect.bottom, t5 = this._canvasPool; if (this._useDomForRenderingFillAndStroke$1(paint)) { element = H._buildDrawRectElement(new P.Rect(t1, t2, t3, t4), paint, "draw-rrect", t5._currentTransform); H._applyRRectBorderRadius(element.style, rrect); this._drawElement$3(element, new P.Offset(Math.min(H.checkNum(t1), H.checkNum(t3)), Math.min(H.checkNum(t2), H.checkNum(t4))), paint); } else { t5.get$contextHandle().setUpPaint$2(paint, new P.Rect(t1, t2, t3, t4)); t1 = paint.style; shaderBounds = t5.get$contextHandle()._shaderBounds; t2 = t5.get$context(t5); rrect = (shaderBounds == null ? rrect : rrect.shift$1(new P.Offset(-shaderBounds.left, -shaderBounds.top))).scaleRadii$0(); left = rrect.left; right = rrect.right; $top = rrect.top; bottom = rrect.bottom; if (left > right) { t0 = right; right = left; left = t0; } if ($top > bottom) { t0 = bottom; bottom = $top; $top = t0; } trRadiusX = Math.abs(rrect.trRadiusX); tlRadiusX = Math.abs(rrect.tlRadiusX); trRadiusY = Math.abs(rrect.trRadiusY); tlRadiusY = Math.abs(rrect.tlRadiusY); blRadiusX = Math.abs(rrect.blRadiusX); brRadiusX = Math.abs(rrect.brRadiusX); blRadiusY = Math.abs(rrect.blRadiusY); brRadiusY = Math.abs(rrect.brRadiusY); t2.beginPath(); t2.moveTo(left + trRadiusX, $top); t3 = right - trRadiusX; t2.lineTo(t3, $top); H.DomRenderer_ellipse(t2, t3, $top + trRadiusY, trRadiusX, trRadiusY, 0, 4.71238898038469, 6.283185307179586, false); t3 = bottom - brRadiusY; t2.lineTo(right, t3); H.DomRenderer_ellipse(t2, right - brRadiusX, t3, brRadiusX, brRadiusY, 0, 0, 1.5707963267948966, false); t3 = left + blRadiusX; t2.lineTo(t3, bottom); H.DomRenderer_ellipse(t2, t3, bottom - blRadiusY, blRadiusX, blRadiusY, 0, 1.5707963267948966, 3.141592653589793, false); t3 = $top + tlRadiusY; t2.lineTo(left, t3); H.DomRenderer_ellipse(t2, left + tlRadiusX, t3, tlRadiusX, tlRadiusY, 0, 3.141592653589793, 4.71238898038469, false); t5.get$contextHandle().paint$1(t1); t5.get$contextHandle().tearDownPaint$0(); } }, drawCircle$3: function(_, c, radius, paint) { var element, t1, t2, shaderBounds, t3, cx, cy, _this = this, rect = P.Rect$fromCircle(c, radius); if (_this._useDomForRenderingFillAndStroke$1(paint)) { element = H._buildDrawRectElement(rect, paint, "draw-circle", _this._canvasPool._currentTransform); _this._drawElement$3(element, new P.Offset(Math.min(H.checkNum(rect.left), H.checkNum(rect.right)), Math.min(H.checkNum(rect.top), H.checkNum(rect.bottom))), paint); t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "border-radius"), "50%", ""); } else { t1 = paint.shader != null ? P.Rect$fromCircle(c, radius) : null; t2 = _this._canvasPool; t2.get$contextHandle().setUpPaint$2(paint, t1); t1 = paint.style; t2.get$context(t2).beginPath(); shaderBounds = t2.get$contextHandle()._shaderBounds; t3 = shaderBounds == null; cx = t3 ? c._dx : c._dx - shaderBounds.left; cy = t3 ? c._dy : c._dy - shaderBounds.top; H.DomRenderer_ellipse(t2.get$context(t2), cx, cy, radius, radius, 0, 0, 6.283185307179586, false); t2.get$contextHandle().paint$1(t1); t2.get$contextHandle().tearDownPaint$0(); } }, drawPath$2: function(_, path, paint) { var t1, transform, pathAsLine, t2, t3, t4, rect, pathAsRect, pathAsRRect, pathBounds, svgElm, style, cssColor, sigma, _this = this; if (_this._useDomForRenderingFill$1(paint)) { t1 = _this._canvasPool; transform = t1._currentTransform; type$.SurfacePath._as(path); pathAsLine = path.pathRef.getStraightLine$0(); if (pathAsLine != null) { t2 = pathAsLine.top; t3 = pathAsLine.bottom; t4 = pathAsLine.left; rect = t2 == t3 ? new P.Rect(t4, t2, t4 + (pathAsLine.right - t4), t2 + 1) : new P.Rect(t4, t2, t4 + 1, t2 + (t3 - t2)); _this._drawElement$3(H._buildDrawRectElement(rect, paint, "draw-rect", t1._currentTransform), new P.Offset(Math.min(H.checkNum(rect.left), H.checkNum(rect.right)), Math.min(H.checkNum(rect.top), H.checkNum(rect.bottom))), paint); return; } pathAsRect = path.pathRef.getRect$0(); if (pathAsRect != null) { _this.drawRect$2(0, pathAsRect, paint); return; } t2 = path.pathRef; pathAsRRect = t2.fIsRRect ? t2._getRRect$0() : null; if (pathAsRRect != null) { _this.drawRRect$2(0, pathAsRRect, paint); return; } pathBounds = path.getBounds$0(0); svgElm = H._pathToSvgElement(path, paint, H.S(pathBounds.right), H.S(pathBounds.bottom)); if (t1._clipStack == null) { style = svgElm.style; style.position = "absolute"; if (!transform.isIdentity$0(0)) { t1 = H.float64ListToCssTransform(transform.__engine$_m4storage); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform"), t1, ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "transform-origin"), "0 0 0", ""); } } if (paint.maskFilter != null) { t1 = paint.style; t2 = paint.color; if (t2 == null) cssColor = "#000000"; else { t2 = H.colorToCssString(t2); t2.toString; cssColor = t2; } sigma = paint.maskFilter._sigma; t2 = H._browserEngine(); if (t2 === C.BrowserEngine_1 && t1 !== C.PaintingStyle_1) { t1 = svgElm.style; t2 = "0px 0px " + H.S(sigma * 2) + "px " + cssColor; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "box-shadow"), t2, ""); } else { t1 = svgElm.style; t2 = "blur(" + H.S(sigma) + "px)"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "filter"), t2, ""); } } _this._drawElement$3(svgElm, new P.Offset(0, 0), paint); } else { t1 = paint.shader != null ? path.getBounds$0(0) : null; t2 = _this._canvasPool; t2.get$contextHandle().setUpPaint$2(paint, t1); t1 = paint.style; if (t1 == null && paint.strokeWidth != null) t2.drawPath$2(0, path, C.PaintingStyle_1); else t2.drawPath$2(0, path, t1); t2.get$contextHandle().tearDownPaint$0(); } }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { var t2, solidColor, t3, t4, t5, t1 = this._canvasPool, shadow = H.computeShadow(path.getBounds$0(0), elevation); if (shadow != null) { t2 = H.toShadowColor(color).value; solidColor = H.colorComponentsToCssString(t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255, 255); t1.get$context(t1).save(); t1.get$context(t1).globalAlpha = (t2 >>> 24 & 255) / 255; if (transparentOccluder) { t2 = H._browserEngine(); t2 = t2 !== C.BrowserEngine_1; } else t2 = false; t3 = shadow.offset; t4 = shadow.blurWidth; t5 = t3._dx; t3 = t3._dy; if (t2) { t1.get$context(t1).translate(t5, t3); t1.get$context(t1).filter = H._maskFilterToCanvasFilter(new P.MaskFilter(C.BlurStyle_0, t4)); t1.get$context(t1).strokeStyle = ""; t1.get$context(t1).fillStyle = solidColor; } else { t1.get$context(t1).filter = "none"; t1.get$context(t1).strokeStyle = ""; t1.get$context(t1).fillStyle = solidColor; t1.get$context(t1).shadowBlur = t4; t1.get$context(t1).shadowColor = solidColor; t1.get$context(t1).shadowOffsetX = t5; t1.get$context(t1).shadowOffsetY = t3; } t1._runPath$2(t1.get$context(t1), path); t1.get$context(t1).fill(); t1.get$context(t1).restore(); } }, _reuseOrCreateImage$1: function(htmlImage) { var t2, imageElement, newImageElement, t1 = htmlImage.imgElement.src; t1.toString; t2 = this._elementCache; if (t2 != null) { imageElement = t2.reuse$1(t1); if (imageElement != null) return imageElement; } newImageElement = htmlImage.cloneImageElement$0(); t2 = this._elementCache; if (t2 != null) t2._addToCache$2(t1, new H._CrossFrameCacheItem(newImageElement, H._engine_BitmapCanvas__onEvictElement$closure(), t2.$ti._eval$1("_CrossFrameCacheItem<1>"))); return newImageElement; }, _drawImage$3: function(image, p, paint) { var blendMode, colorFilter, t1, filterColor, t2, svgFilter, r, b, g, filterElement, imgElement, t3, style, clipElements, _i, clipElement, cssTransform, _this = this, _s8_ = "absolute", _s68_ = string$.x3csvg_w, _s97_ = string$.x22x20filt; type$.HtmlImage._as(image); blendMode = paint.blendMode; colorFilter = paint.colorFilter; if (colorFilter instanceof H._CkBlendModeColorFilter) { t1 = colorFilter.blendMode; switch (t1) { case C.BlendMode_19: case C.BlendMode_18: case C.BlendMode_25: case C.BlendMode_13: case C.BlendMode_15: case C.BlendMode_12: case C.BlendMode_5: case C.BlendMode_9: case C.BlendMode_7: case C.BlendMode_26: case C.BlendMode_27: case C.BlendMode_28: case C.BlendMode_11: case C.BlendMode_10: filterColor = colorFilter.color; switch (t1) { case C.BlendMode_5: case C.BlendMode_9: t2 = $._filterIdCounter + 1; $._filterIdCounter = t2; svgFilter = _s68_ + t2 + '" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">'; break; case C.BlendMode_7: t2 = $._filterIdCounter + 1; $._filterIdCounter = t2; svgFilter = _s68_ + t2 + _s97_ + H.S(H.colorToCssString(filterColor)) + '" flood-opacity="1" result="flood">'; break; case C.BlendMode_10: t2 = $._filterIdCounter + 1; $._filterIdCounter = t2; svgFilter = _s68_ + t2 + _s97_ + H.S(H.colorToCssString(filterColor)) + '" flood-opacity="1" result="flood">'; break; case C.BlendMode_11: t2 = $._filterIdCounter + 1; $._filterIdCounter = t2; svgFilter = _s68_ + t2 + _s97_ + H.S(H.colorToCssString(filterColor)) + '" flood-opacity="1" result="flood">'; break; case C.BlendMode_12: t2 = $._filterIdCounter + 1; $._filterIdCounter = t2; svgFilter = _s68_ + t2 + _s97_ + H.S(H.colorToCssString(filterColor)) + '" flood-opacity="1" result="flood">'; break; case C.BlendMode_13: filterColor.toString; $._filterIdCounter = $._filterIdCounter + 1; r = filterColor.get$red().$div(0, 255); b = filterColor.get$blue().$div(0, 255); g = filterColor.get$green().$div(0, 255); svgFilter = _s68_ + $._filterIdCounter + '" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">'; break; case C.BlendMode_15: svgFilter = H._blendColorFilterToSvg(filterColor, "hard-light", true); break; case C.BlendMode_26: case C.BlendMode_18: case C.BlendMode_19: case C.BlendMode_25: case C.BlendMode_27: case C.BlendMode_28: case C.BlendMode_24: case C.BlendMode_14: case C.BlendMode_15: case C.BlendMode_16: case C.BlendMode_17: case C.BlendMode_18: case C.BlendMode_19: case C.BlendMode_20: case C.BlendMode_21: case C.BlendMode_22: case C.BlendMode_23: svgFilter = H._blendColorFilterToSvg(filterColor, H._stringForBlendMode(t1), false); break; case C.BlendMode_1: case C.BlendMode_2: case C.BlendMode_6: case C.BlendMode_8: case C.BlendMode_4: case C.BlendMode_0: case C.BlendMode_3: svgFilter = null; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); svgFilter = null; } filterElement = W.Element_Element$html(svgFilter, new H._NullTreeSanitizer(), null); _this.rootElement.appendChild(filterElement); _this.__engine$_children.push(filterElement); imgElement = _this._reuseOrCreateImage$1(image); t2 = imgElement.style; t3 = "url(#_fcf" + $._filterIdCounter + ")"; t2.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t2, C.CssStyleDeclaration_methods._browserPropertyName$1(t2, "filter"), t3, ""); if (t1 === C.BlendMode_26) { t1 = imgElement.style; t2 = H.colorToCssString(filterColor); t1.toString; t1.backgroundColor = t2 == null ? "" : t2; } break; default: filterColor = colorFilter.color; imgElement = document.createElement("div"); style = imgElement.style; switch (t1) { case C.BlendMode_0: case C.BlendMode_8: style.position = _s8_; break; case C.BlendMode_1: case C.BlendMode_3: style.position = _s8_; t1 = H.colorToCssString(filterColor); style.backgroundColor = t1 == null ? "" : t1; break; case C.BlendMode_2: case C.BlendMode_6: style.position = _s8_; t1 = "url('" + H.S(image.imgElement.src) + "')"; style.backgroundImage = t1; break; default: style.position = _s8_; t2 = "url('" + H.S(image.imgElement.src) + "')"; style.backgroundImage = t2; t1 = H._stringForBlendMode(t1); if (t1 == null) t1 = ""; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "background-blend-mode"), t1, ""); t1 = H.colorToCssString(filterColor); style.backgroundColor = t1 == null ? "" : t1; break; } break; } } else imgElement = _this._reuseOrCreateImage$1(image); t1 = imgElement.style; t2 = H._stringForBlendMode(blendMode); if (t2 == null) t2 = ""; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "mix-blend-mode"), t2, ""); t1 = _this._canvasPool; if (t1._clipStack != null) { t2 = imgElement.style; t2.removeProperty("width"); t2.removeProperty("height"); t2 = t1._clipStack; t2.toString; clipElements = H._clipContent(t2, imgElement, p, t1._currentTransform); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, H.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { cssTransform = H.float64ListToCssTransform(H.transformWithOffset(t1._currentTransform, p).__engine$_m4storage); t1 = imgElement.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), cssTransform, ""); t1.removeProperty("width"); t1.removeProperty("height"); _this.rootElement.appendChild(imgElement); _this.__engine$_children.push(imgElement); } return imgElement; }, drawImageRect$4: function(image, src, dst, paint) { var t2, requiresClipping, targetLeft, targetWidth, targetTop, t3, targetTop0, imgElement, targetHeight, imageStyle, widthPx, heightPx, _this = this, t1 = src.left; if (t1 === 0) { t2 = src.top; requiresClipping = t2 !== 0 || src.right - t1 !== image.get$width(image) || src.bottom - t2 !== image.get$height(image); } else requiresClipping = true; t2 = dst.right; targetLeft = dst.left; targetWidth = t2 - targetLeft; if (targetWidth === image.get$width(image) && dst.bottom - dst.top === image.get$height(image) && !requiresClipping && paint.colorFilter == null) _this._drawImage$3(image, new P.Offset(targetLeft, dst.top), paint); else { if (requiresClipping) { _this.save$0(0); _this.clipRect$2(0, dst, C.ClipOp_1); } targetTop = dst.top; if (requiresClipping) { t2 = src.right - t1; if (t2 !== image.get$width(image)) targetLeft += -t1 * (targetWidth / t2); t2 = src.top; t3 = src.bottom - t2; targetTop0 = t3 !== image.get$height(image) ? targetTop + -t2 * ((dst.bottom - targetTop) / t3) : targetTop; } else targetTop0 = targetTop; imgElement = _this._drawImage$3(image, new P.Offset(targetLeft, targetTop0), paint); targetHeight = dst.bottom - targetTop; if (requiresClipping) { targetWidth *= image.get$width(image) / (src.right - t1); targetHeight *= image.get$height(image) / (src.bottom - src.top); } imageStyle = imgElement.style; widthPx = C.JSNumber_methods.toStringAsFixed$1(targetWidth, 2) + "px"; heightPx = C.JSNumber_methods.toStringAsFixed$1(targetHeight, 2) + "px"; imageStyle.left = "0px"; imageStyle.top = "0px"; imageStyle.width = widthPx; imageStyle.height = heightPx; if (!type$.ImageElement._is(imgElement)) { t1 = imgElement.style; t2 = widthPx + " " + heightPx; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "background-size"), t2, ""); } if (requiresClipping) _this.restore$0(0); } _this._closeCurrentCanvas$0(); }, _closeCurrentCanvas$0: function() { var t2, t3, t1 = this._canvasPool; if (t1.__engine$_canvas != null) { t1._restoreContextSave$0(); t1._contextHandle.reset$0(0); t2 = t1._activeCanvasList; if (t2 == null) t2 = t1._activeCanvasList = H.setRuntimeTypeInfo([], type$.JSArray_CanvasElement); t3 = t1.__engine$_canvas; t3.toString; t2.push(t3); t1._contextHandle = t1.__engine$_context = t1.__engine$_canvas = null; } this._childOverdraw = true; this._cachedLastCssFont = null; }, setCssFont$1: function(cssFont) { var t1; if (cssFont !== this._cachedLastCssFont) { t1 = this._canvasPool; t1.get$context(t1).font = cssFont; this._cachedLastCssFont = cssFont; } }, fillText$4$shadows: function(_, text, x, y, shadows) { var _i, shadow, t1 = this._canvasPool, ctx = t1.get$context(t1); if (shadows != null) { ctx.save(); for (_i = 0; _i < 1; ++_i) { shadow = shadows[_i]; t1 = H.colorToCssString(shadow.color); t1.toString; ctx.shadowColor = t1; ctx.shadowBlur = shadow.blurRadius; t1 = shadow.offset; ctx.shadowOffsetX = t1._dx; ctx.shadowOffsetY = t1._dy; ctx.fillText(text, x, y); } ctx.restore(); } (ctx && C.CanvasRenderingContext2D_methods).fillText$3(ctx, text, x, y); }, fillText$3: function($receiver, text, x, y) { return this.fillText$4$shadows($receiver, text, x, y, null); }, drawParagraph$2: function(_, paragraph, offset) { var paragraphElement, t1, t2, clipElements, t3, _i, clipElement, _this = this; if (paragraph.get$drawOnCanvas() && !_this._childOverdraw) { paragraph.paint$2(_this, offset); return; } paragraphElement = H._drawParagraphElement(paragraph, offset, null); t1 = _this._canvasPool; t2 = t1._clipStack; t1 = t1._currentTransform; if (t2 != null) { clipElements = H._clipContent(t2, paragraphElement, offset, t1); for (t1 = clipElements.length, t2 = _this.rootElement, t3 = _this.__engine$_children, _i = 0; _i < clipElements.length; clipElements.length === t1 || (0, H.throwConcurrentModificationError)(clipElements), ++_i) { clipElement = clipElements[_i]; t2.appendChild(clipElement); t3.push(clipElement); } } else { H.setElementTransform(paragraphElement, H.transformWithOffset(t1, offset).__engine$_m4storage); _this.rootElement.appendChild(paragraphElement); } _this.__engine$_children.push(paragraphElement); t1 = paragraphElement.style; t1.left = "0px"; t1.top = "0px"; _this._closeCurrentCanvas$0(); }, endOfPaint$0: function() { var t1, t2, t3, t4, paintOrderElement, t5, t6, _this = this; _this._canvasPool.endOfPaint$0(); t1 = _this._elementCache; if (t1 != null) t1.commitFrame$0(); if (_this._contains3dTransform) { t1 = H._browserEngine(); t1 = t1 === C.BrowserEngine_1; } else t1 = false; if (t1) for (t1 = _this.rootElement, t2 = J.get$children$x(t1), t2 = t2.get$iterator(t2), t3 = _this.__engine$_children; t2.moveNext$0();) { t4 = t2.__interceptors$_current; paintOrderElement = document.createElement("div"); t5 = paintOrderElement.style; t5.toString; t6 = C.CssStyleDeclaration_methods._browserPropertyName$1(t5, "transform"); t5.setProperty(t6, "translate3d(0,0,0)", ""); paintOrderElement.appendChild(t4); t1.appendChild(paintOrderElement); t3.push(paintOrderElement); } t1 = _this.rootElement.firstChild; t2 = type$.HtmlElement; if (t2._is(t1) && t1.tagName.toLowerCase() === "canvas") { t1 = t2._as(t1).style; t1.zIndex = "-1"; } } }; H.BrowserEngine.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.OperatingSystem.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H._CanvasPool.prototype = { get$context: function(_) { var t1, ctx = this.__engine$_context; if (ctx == null) { this._createCanvas$0(); t1 = this.__engine$_context; t1.toString; ctx = t1; } return ctx; }, get$contextHandle: function() { if (this.__engine$_canvas == null) this._createCanvas$0(); var t1 = this._contextHandle; t1.toString; return t1; }, _createCanvas$0: function() { var canvas0, requiresClearRect, t2, t3, t4, t5, exception, ctx, _this = this, reused = false, canvas = null, t1 = _this.__engine$_canvas; if (t1 != null) { t1.width = 0; _this.__engine$_canvas.height = 0; _this.__engine$_canvas = null; } t1 = _this._reusablePool; if (t1 != null && t1.length !== 0) { t1.toString; canvas0 = C.JSArray_methods.removeAt$1(t1, 0); _this.__engine$_canvas = canvas0; canvas = canvas0; reused = true; requiresClearRect = true; } else { t1 = _this._widthInBitmapPixels; t2 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t3 = _this._heightInBitmapPixels; t4 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); canvas = _this._allocCanvas$2(t1, t3); t5 = canvas; _this.__engine$_canvas = t5; if (t5 == null) { H._reduceCanvasMemoryUsage(); canvas = _this._allocCanvas$2(t1, t3); } t5 = canvas.style; t5.position = "absolute"; t1 = H.S(t1 / t2) + "px"; t5.width = t1; t1 = H.S(t3 / t4) + "px"; t5.height = t1; requiresClearRect = false; } t1 = _this._rootElement; t2 = t1.lastChild; t3 = canvas; if (t2 == null ? t3 != null : t2 !== t3) t1.appendChild(canvas); try { if (reused) canvas.style.removeProperty("z-index"); _this.__engine$_context = canvas.getContext("2d"); } catch (exception) { H.unwrapException(exception); } t1 = _this.__engine$_context; if (t1 == null) { H._reduceCanvasMemoryUsage(); t1 = _this.__engine$_context = canvas.getContext("2d"); } if (t1 == null) { t1 = _this.__engine$_canvas; if (t1 != null) t1.width = 0; t1 = _this.__engine$_canvas; if (t1 != null) t1.height = 0; _this.__engine$_canvas = null; return; } t2 = _this._density; _this._contextHandle = new H.ContextStateHandle(t1, _this, t2, C.BlendMode_3, C.StrokeCap_0, C.StrokeJoin_0); ctx = _this.get$context(_this); ctx.save(); ++_this._saveContextCount; ctx.setTransform(1, 0, 0, 1, 0, 0); if (requiresClearRect) ctx.clearRect(0, 0, _this._widthInBitmapPixels * t2, _this._heightInBitmapPixels * t2); ctx.scale(H.EnginePlatformDispatcher_browserDevicePixelRatio() * t2, H.EnginePlatformDispatcher_browserDevicePixelRatio() * t2); _this._replayClipStack$0(); }, _allocCanvas$2: function(width, height) { var exception, t1 = document, canvas = t1.createElement.apply(t1, ["CANVAS"]); if (canvas != null) { try { t1 = this._density; J.set$width$x(canvas, C.JSNumber_methods.ceil$0(width * t1)); J.set$height$x(canvas, C.JSNumber_methods.ceil$0(height * t1)); } catch (exception) { H.unwrapException(exception); return null; } return type$.CanvasElement._as(canvas); } return null; }, clear$0: function(_) { var ctx, e, exception, t1, t2, _this = this; _this.super$_SaveStackTracking$clear(0); if (_this.__engine$_canvas != null) { ctx = _this.__engine$_context; if (ctx != null) try { ctx.font = ""; } catch (exception) { e = H.unwrapException(exception); if (!J.$eq$(e.name, "NS_ERROR_FAILURE")) throw exception; } } if (_this.__engine$_canvas != null) { _this._restoreContextSave$0(); _this._contextHandle.reset$0(0); t1 = _this._activeCanvasList; if (t1 == null) t1 = _this._activeCanvasList = H.setRuntimeTypeInfo([], type$.JSArray_CanvasElement); t2 = _this.__engine$_canvas; t2.toString; t1.push(t2); _this._contextHandle = _this.__engine$_context = null; } _this._reusablePool = _this._activeCanvasList; _this._contextHandle = _this.__engine$_context = _this.__engine$_canvas = _this._activeCanvasList = null; }, _replaySingleSaveEntry$4: function(clipDepth, prevTransform, transform, clipStack) { var clipCount, t1, t2, clipEntry, clipTimeTransform, t3, t4, ratio, t5, path, _this = this, ctx = _this.get$context(_this); if (clipStack != null) for (clipCount = clipStack.length, t1 = _this._density, t2 = type$.SurfacePath; clipDepth < clipCount; ++clipDepth) { clipEntry = clipStack[clipDepth]; clipTimeTransform = clipEntry.currentTransform; t3 = clipTimeTransform.__engine$_m4storage; t4 = prevTransform.__engine$_m4storage; if (t3[0] !== t4[0] || t3[1] !== t4[1] || t3[4] !== t4[4] || t3[5] !== t4[5] || t3[12] !== t4[12] || t3[13] !== t4[13]) { ratio = window.devicePixelRatio; ratio = (ratio == null || ratio === 0 ? 1 : ratio) * t1; ctx.setTransform(ratio, 0, 0, ratio, 0, 0); ctx.transform(t3[0], t3[1], t3[4], t3[5], t3[12], t3[13]); prevTransform = clipTimeTransform; } t3 = clipEntry.rect; if (t3 != null) { ctx.beginPath(); t4 = t3.left; t5 = t3.top; ctx.rect(t4, t5, t3.right - t4, t3.bottom - t5); ctx.clip(); } else { t3 = clipEntry.rrect; if (t3 != null) { path = P.Path_Path(); path.addRRect$1(0, t3); _this._runPath$2(ctx, t2._as(path)); ctx.clip(); } else { t3 = clipEntry.path; if (t3 != null) { _this._runPath$2(ctx, t3); if (t3._fillType === C.PathFillType_0) ctx.clip(); else ctx.clip("evenodd"); } } } } t1 = transform.__engine$_m4storage; t2 = prevTransform.__engine$_m4storage; if (t1[0] !== t2[0] || t1[1] !== t2[1] || t1[4] !== t2[4] || t1[5] !== t2[5] || t1[12] !== t2[12] || t1[13] !== t2[13]) { ratio = H.EnginePlatformDispatcher_browserDevicePixelRatio() * _this._density; ctx.setTransform(ratio, 0, 0, ratio, 0, 0); ctx.transform(t1[0], t1[1], t1[4], t1[5], t1[12], t1[13]); } return clipDepth; }, _replayClipStack$0: function() { var t1, len, clipDepth, saveStackIndex, saveEntry, prevTransform0, _this = this, ctx = _this.get$context(_this), prevTransform = H.Matrix4$identity(); for (t1 = _this._saveStack, len = t1.length, clipDepth = 0, saveStackIndex = 0; saveStackIndex < len; ++saveStackIndex, prevTransform = prevTransform0) { saveEntry = t1[saveStackIndex]; prevTransform0 = saveEntry.transform; clipDepth = _this._replaySingleSaveEntry$4(clipDepth, prevTransform, prevTransform0, saveEntry.clipStack); ctx.save(); ++_this._saveContextCount; } _this._replaySingleSaveEntry$4(clipDepth, prevTransform, _this._currentTransform, _this._clipStack); }, endOfPaint$0: function() { var t2, _i, e, t3, t1 = this._reusablePool; if (t1 != null) { for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { e = t1[_i]; t3 = $.___browserEngine; if (t3 === $) { t3 = H.detectBrowserEngineByVendorAgent(window.navigator.vendor, window.navigator.userAgent.toLowerCase()); if ($.___browserEngine === $) $.___browserEngine = t3; else t3 = H.throwExpression(H.LateError$fieldADI("_browserEngine")); } if (t3 === C.BrowserEngine_1) { e.height = 0; e.width = 0; } t3 = e.parentNode; if (t3 != null) t3.removeChild(e); } this._reusablePool = null; } this._restoreContextSave$0(); }, _restoreContextSave$0: function() { for (; this._saveContextCount !== 0;) { this.__engine$_context.restore(); --this._saveContextCount; } }, translate$2: function(_, dx, dy) { var _this = this; _this.super$_SaveStackTracking$translate(0, dx, dy); if (_this.__engine$_canvas != null) _this.get$context(_this).translate(dx, dy); }, __engine$_clipRect$2: function(ctx, rect) { var t1, t2; ctx.beginPath(); t1 = rect.left; t2 = rect.top; ctx.rect(t1, t2, rect.right - t1, rect.bottom - t2); ctx.clip(); }, __engine$_clipRRect$2: function(ctx, rrect) { var path = P.Path_Path(); path.addRRect$1(0, rrect); this._runPath$2(ctx, type$.SurfacePath._as(path)); ctx.clip(); }, clipPath$1: function(_, path) { var ctx, _this = this; _this.super$_SaveStackTracking$clipPath(0, path); if (_this.__engine$_canvas != null) { ctx = _this.get$context(_this); _this._runPath$2(ctx, path); if (path._fillType === C.PathFillType_0) ctx.clip(); else ctx.clip("evenodd"); } }, _runPath$2: function(ctx, path) { var p, t1, iter, verb, w, points, len, i, t2, t3; ctx.beginPath(); p = $.$get$_CanvasPool__runBuffer(); t1 = path.pathRef; iter = new H.PathRefIterator(t1); iter.PathRefIterator$1(t1); for (; verb = iter.next$1(0, p), verb !== 6;) switch (verb) { case 0: ctx.moveTo(p[0], p[1]); break; case 1: ctx.lineTo(p[2], p[3]); break; case 4: ctx.bezierCurveTo(p[2], p[3], p[4], p[5], p[6], p[7]); break; case 2: ctx.quadraticCurveTo(p[2], p[3], p[4], p[5]); break; case 3: w = t1._conicWeights[iter._conicWeightIndex]; points = new H.Conic(p[0], p[1], p[2], p[3], p[4], p[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t2 = points[i]; t3 = points[i + 1]; ctx.quadraticCurveTo(t2._dx, t2._dy, t3._dx, t3._dy); } break; case 5: ctx.closePath(); break; default: throw H.wrapException(P.UnimplementedError$("Unknown path verb " + verb)); } }, _runPathWithOffset$4: function(ctx, path, offsetX, offsetY) { var p, t1, iter, verb, w, points, len, i, t2, t3; ctx.beginPath(); p = $.$get$_CanvasPool__runBuffer(); t1 = path.pathRef; iter = new H.PathRefIterator(t1); iter.PathRefIterator$1(t1); for (; verb = iter.next$1(0, p), verb !== 6;) switch (verb) { case 0: ctx.moveTo(p[0] + offsetX, p[1] + offsetY); break; case 1: ctx.lineTo(p[2] + offsetX, p[3] + offsetY); break; case 4: ctx.bezierCurveTo(p[2] + offsetX, p[3] + offsetY, p[4] + offsetX, p[5] + offsetY, p[6] + offsetX, p[7] + offsetY); break; case 2: ctx.quadraticCurveTo(p[2] + offsetX, p[3] + offsetY, p[4] + offsetX, p[5] + offsetY); break; case 3: w = t1._conicWeights[iter._conicWeightIndex]; points = new H.Conic(p[0], p[1], p[2], p[3], p[4], p[5], w).toQuads$0(); len = points.length; for (i = 1; i < len; i += 2) { t2 = points[i]; t3 = points[i + 1]; ctx.quadraticCurveTo(t2._dx + offsetX, t2._dy + offsetY, t3._dx + offsetX, t3._dy + offsetY); } break; case 5: ctx.closePath(); break; default: throw H.wrapException(P.UnimplementedError$("Unknown path verb " + verb)); } }, drawPath$2: function(_, path, style) { var t2, _this = this, shaderBounds = _this.get$contextHandle()._shaderBounds, t1 = type$.SurfacePath; if (shaderBounds == null) _this._runPath$2(_this.get$context(_this), t1._as(path)); else _this._runPathWithOffset$4(_this.get$context(_this), t1._as(path), -shaderBounds.left, -shaderBounds.top); t1 = _this.get$contextHandle(); t2 = path._fillType; t1.toString; if (style === C.PaintingStyle_1) t1.context.stroke(); else { t1 = t1.context; if (t2 === C.PathFillType_0) t1.fill(); else t1.fill("evenodd"); } }, dispose$0: function(_) { var t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1 && this.__engine$_canvas != null) { t1 = this.__engine$_canvas; t1.height = 0; t1.width = 0; } this._clearActiveCanvasList$0(); }, _clearActiveCanvasList$0: function() { var t2, _i, c, t3, t1 = this._activeCanvasList; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { c = t1[_i]; t3 = $.___browserEngine; if (t3 === $) { t3 = H.detectBrowserEngineByVendorAgent(window.navigator.vendor, window.navigator.userAgent.toLowerCase()); if ($.___browserEngine === $) $.___browserEngine = t3; else t3 = H.throwExpression(H.LateError$fieldADI("_browserEngine")); } if (t3 === C.BrowserEngine_1) { c.height = 0; c.width = 0; } t3 = c.parentNode; if (t3 != null) t3.removeChild(c); } this._activeCanvasList = null; } }; H.ContextStateHandle.prototype = { set$fillStyle: function(_, colorOrGradient) { var t1 = this._currentFillStyle; if (colorOrGradient == null ? t1 != null : colorOrGradient !== t1) { this._currentFillStyle = colorOrGradient; this.context.fillStyle = colorOrGradient; } }, set$strokeStyle: function(_, colorOrGradient) { var t1 = this._currentStrokeStyle; if (colorOrGradient == null ? t1 != null : colorOrGradient !== t1) { this._currentStrokeStyle = colorOrGradient; this.context.strokeStyle = colorOrGradient; } }, setUpPaint$2: function(paint, shaderBounds) { var t1, strokeCap, strokeJoin, t2, paintStyle, colorString, maskFilter, tempVector, shadowOffsetX, shadowOffsetY, _this = this; _this._lastUsedPaint = paint; t1 = paint.strokeWidth; if (t1 == null) t1 = 1; if (t1 !== _this._currentLineWidth) { _this._currentLineWidth = t1; _this.context.lineWidth = t1; } t1 = paint.blendMode; if (t1 != _this._currentBlendMode) { _this._currentBlendMode = t1; t1 = H._stringForBlendMode(t1); if (t1 == null) t1 = "source-over"; _this.context.globalCompositeOperation = t1; } strokeCap = paint.strokeCap; if (strokeCap == null) strokeCap = C.StrokeCap_0; if (strokeCap !== _this._currentStrokeCap) { _this._currentStrokeCap = strokeCap; t1 = H._stringForStrokeCap(strokeCap); t1.toString; _this.context.lineCap = t1; } strokeJoin = paint.strokeJoin; if (strokeJoin == null) strokeJoin = C.StrokeJoin_0; if (strokeJoin !== _this._currentStrokeJoin) { _this._currentStrokeJoin = strokeJoin; _this.context.lineJoin = H._stringForStrokeJoin(strokeJoin); } t1 = paint.shader; if (t1 != null) { t2 = _this._canvasPool; paintStyle = type$.EngineGradient._as(t1).createPaintStyle$3(t2.get$context(t2), shaderBounds, _this.density); _this.set$fillStyle(0, paintStyle); _this.set$strokeStyle(0, paintStyle); _this._shaderBounds = shaderBounds; _this.context.translate(shaderBounds.left, shaderBounds.top); } else { t1 = paint.color; if (t1 != null) { colorString = H.colorToCssString(t1); _this.set$fillStyle(0, colorString); _this.set$strokeStyle(0, colorString); } else { _this.set$fillStyle(0, "#000000"); _this.set$strokeStyle(0, "#000000"); } } maskFilter = paint.maskFilter; t1 = H._browserEngine(); if (!(t1 === C.BrowserEngine_1 || false)) { if (!J.$eq$(_this._currentFilter, maskFilter)) { _this._currentFilter = maskFilter; _this.context.filter = H._maskFilterToCanvasFilter(maskFilter); } } else if (maskFilter != null) { t1 = _this.context; t1.save(); t1.shadowBlur = maskFilter._sigma * 2; t2 = paint.color; if (t2 != null) { t2 = H.colorToCssString(P.Color$fromARGB(255, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); t2.toString; t1.shadowColor = t2; } else { t2 = H.colorToCssString(C.Color_4278190080); t2.toString; t1.shadowColor = t2; } t1.translate(-50000, 0); tempVector = new Float32Array(2); t2 = $.$get$window()._debugDevicePixelRatio; tempVector[0] = 50000 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t2 = _this._canvasPool; t2._currentTransform.transform2$1(tempVector); shadowOffsetX = tempVector[0]; shadowOffsetY = tempVector[1]; tempVector[1] = 0; tempVector[0] = 0; t2._currentTransform.transform2$1(tempVector); t1.shadowOffsetX = shadowOffsetX - tempVector[0]; t1.shadowOffsetY = shadowOffsetY - tempVector[1]; } }, tearDownPaint$0: function() { var _this = this, t1 = _this._lastUsedPaint; if ((t1 == null ? null : t1.maskFilter) != null) { t1 = H._browserEngine(); t1 = t1 === C.BrowserEngine_1 || false; } else t1 = false; if (t1) _this.context.restore(); t1 = _this._shaderBounds; if (t1 != null) { _this.context.translate(-t1.left, -t1.top); _this._shaderBounds = null; } }, paint$1: function(style) { var t1 = this.context; if (style === C.PaintingStyle_1) t1.stroke(); else t1.fill(); }, reset$0: function(_) { var _this = this, t1 = _this.context; t1.fillStyle = ""; _this._currentFillStyle = t1.fillStyle; t1.strokeStyle = ""; _this._currentStrokeStyle = t1.strokeStyle; t1.shadowBlur = 0; t1.shadowColor = "none"; t1.shadowOffsetX = 0; t1.shadowOffsetY = 0; t1.globalCompositeOperation = "source-over"; _this._currentBlendMode = C.BlendMode_3; t1.lineWidth = 1; _this._currentLineWidth = 1; t1.lineCap = "butt"; _this._currentStrokeCap = C.StrokeCap_0; t1.lineJoin = "miter"; _this._currentStrokeJoin = C.StrokeJoin_0; _this._shaderBounds = null; } }; H._SaveStackTracking.prototype = { clear$0: function(_) { C.JSArray_methods.set$length(this._saveStack, 0); this._clipStack = null; this._currentTransform = H.Matrix4$identity(); }, save$0: function(_) { var t1 = this._currentTransform, t2 = new H.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); t1 = this._clipStack; t1 = t1 == null ? null : P.List_List$from(t1, true, type$._SaveClipEntry); this._saveStack.push(new H._SaveStackEntry(t2, t1)); }, restore$0: function(_) { var entry, t1 = this._saveStack; if (t1.length === 0) return; entry = t1.pop(); this._currentTransform = entry.transform; this._clipStack = entry.clipStack; }, translate$2: function(_, dx, dy) { this._currentTransform.translate$2(0, dx, dy); }, scale$2: function(_, sx, sy) { this._currentTransform.scale$2(0, sx, sy); }, rotate$1: function(_, radians) { this._currentTransform.rotate$2(0, $.$get$_SaveStackTracking__unitZ(), radians); }, transform$1: function(_, matrix4) { this._currentTransform.multiply$1(0, new H.Matrix40(matrix4)); }, clipRect$1: function(_, rect) { var t2, t3, t1 = this._clipStack; if (t1 == null) t1 = this._clipStack = H.setRuntimeTypeInfo([], type$.JSArray__SaveClipEntry); t2 = this._currentTransform; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new H._SaveClipEntry(rect, null, null, t3)); }, clipRRect$1: function(_, rrect) { var t2, t3, t1 = this._clipStack; if (t1 == null) t1 = this._clipStack = H.setRuntimeTypeInfo([], type$.JSArray__SaveClipEntry); t2 = this._currentTransform; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new H._SaveClipEntry(null, rrect, null, t3)); }, clipPath$1: function(_, path) { var t2, t3, t1 = this._clipStack; if (t1 == null) t1 = this._clipStack = H.setRuntimeTypeInfo([], type$.JSArray__SaveClipEntry); t2 = this._currentTransform; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); t1.push(new H._SaveClipEntry(null, null, path, t3)); } }; H.CkCanvas.prototype = { clear$1: function(_, color) { J.clear$1$ax(this.skCanvas, H._populateSkColor($.$get$_sharedSkColor1(), color)); }, clipPath$2: function(_, path, doAntiAlias) { J.clipPath$3$x(this.skCanvas, path.get$skiaObject(), $.$get$_clipOpIntersect(), doAntiAlias); }, clipRRect$2: function(_, rrect, doAntiAlias) { J.clipRRect$3$x(this.skCanvas, H.toSkRRect(rrect), $.$get$_clipOpIntersect(), doAntiAlias); }, clipRect$3: function(_, rect, clipOp, doAntiAlias) { J.clipRect$3$x(this.skCanvas, H.toSkRect(rect), $.$get$_skClipOps()[clipOp.index], doAntiAlias); }, drawArc$5: function(_, oval, startAngle, sweepAngle, useCenter, paint) { J.drawArc$5$x(this.skCanvas, H.toSkRect(oval), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232, false, paint.get$skiaObject()); }, drawCircle$3: function(_, c, radius, paint) { J.drawCircle$4$x(this.skCanvas, c._dx, c._dy, radius, paint.get$skiaObject()); }, drawDRRect$3: function(_, outer, inner, paint) { J.drawDRRect$3$x(this.skCanvas, H.toSkRRect(outer), H.toSkRRect(inner), paint.get$skiaObject()); }, drawImageRect$4: function(image, src, dst, paint) { var t2, t3, t4, t5, t6, _s9_ = "canvasKit", filterQuality = paint._filterQuality, t1 = this.skCanvas; if (filterQuality === C.FilterQuality_3) J.drawImageRectCubic$6$x(t1, image.get$box().get$skiaObject(), H.toSkRect(src), H.toSkRect(dst), 0.3333333333333333, 0.3333333333333333, paint.get$skiaObject()); else { t2 = image.get$box().get$skiaObject(); t3 = H.toSkRect(src); t4 = H.toSkRect(dst); t5 = $.__canvasKit; if (filterQuality === C.FilterQuality_0) t5 = J.get$Nearest$x(J.get$FilterMode$x(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5)); else t5 = J.get$Linear$x(J.get$FilterMode$x(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5)); t6 = $.__canvasKit; if (filterQuality === C.FilterQuality_2) t6 = J.get$Linear$x(J.get$MipmapMode$x(t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t6)); else t6 = J.get$None$x(J.get$MipmapMode$x(t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t6)); J.drawImageRectOptions$6$x(t1, t2, t3, t4, t5, t6, paint.get$skiaObject()); } }, drawLine$3: function(_, p1, p2, paint) { J.drawLine$5$x(this.skCanvas, p1._dx, p1._dy, p2._dx, p2._dy, paint.get$skiaObject()); }, drawPaint$1: function(_, paint) { J.drawPaint$1$x(this.skCanvas, paint.get$skiaObject()); }, drawParagraph$2: function(_, paragraph, offset) { J.drawParagraph$3$x(this.skCanvas, paragraph.get$skiaObject(), offset._dx, offset._dy); }, drawPath$2: function(_, path, paint) { J.drawPath$2$x(this.skCanvas, path.get$skiaObject(), paint.get$skiaObject()); }, drawPicture$1: function(_, picture) { J.drawPicture$1$x(this.skCanvas, picture.get$skiaObject()); }, drawRRect$2: function(_, rrect, paint) { J.drawRRect$2$x(this.skCanvas, H.toSkRRect(rrect), paint.get$skiaObject()); }, drawRect$2: function(_, rect, paint) { J.drawRect$2$x(this.skCanvas, H.toSkRect(rect), paint.get$skiaObject()); }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { var t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); H.drawSkShadow(this.skCanvas, path, color, elevation, transparentOccluder, t1); }, restore$0: function(_) { J.restore$0$x(this.skCanvas); }, restoreToCount$1: function(_, count) { J.restoreToCount$1$x(this.skCanvas, count); }, rotate$1: function(_, radians) { J.rotate$3$x(this.skCanvas, radians * 180 / 3.141592653589793, 0, 0); }, save$0: function(_) { return J.save$0$x(this.skCanvas); }, saveLayer$2: function(_, bounds, paint) { var t1 = paint == null ? null : paint.get$skiaObject(); J.saveLayer$4$x(this.skCanvas, t1, H.toSkRect(bounds), null, null); }, scale$2: function(_, sx, sy) { J.scale$2$x(this.skCanvas, sx, sy); }, transform$1: function(_, matrix4) { J.concat$1$x(this.skCanvas, H.toSkMatrixFromFloat32(matrix4)); }, translate$2: function(_, dx, dy) { J.translate$2$x(this.skCanvas, dx, dy); }, get$pictureSnapshot: function() { return null; } }; H.RecordingCkCanvas.prototype = { clear$1: function(_, color) { this.super$CkCanvas$clear(0, color); this.pictureSnapshot._commands.push(new H.CkClearCommand(color)); }, clipPath$2: function(_, path, doAntiAlias) { this.super$CkCanvas$clipPath(0, path, doAntiAlias); this.pictureSnapshot._commands.push(new H.CkClipPathCommand(path, doAntiAlias)); }, clipRRect$2: function(_, rrect, doAntiAlias) { this.super$CkCanvas$clipRRect(0, rrect, doAntiAlias); this.pictureSnapshot._commands.push(new H.CkClipRRectCommand(rrect, doAntiAlias)); }, clipRect$3: function(_, rect, clipOp, doAntiAlias) { this.super$CkCanvas$clipRect(0, rect, clipOp, doAntiAlias); this.pictureSnapshot._commands.push(new H.CkClipRectCommand(rect, clipOp, doAntiAlias)); }, drawArc$5: function(_, oval, startAngle, sweepAngle, useCenter, paint) { this.super$CkCanvas$drawArc(0, oval, startAngle, sweepAngle, false, paint); this.pictureSnapshot._commands.push(new H.CkDrawArcCommand(oval, startAngle, sweepAngle, false, paint)); }, drawCircle$3: function(_, c, radius, paint) { this.super$CkCanvas$drawCircle(0, c, radius, paint); this.pictureSnapshot._commands.push(new H.CkDrawCircleCommand(c, radius, paint)); }, drawDRRect$3: function(_, outer, inner, paint) { this.super$CkCanvas$drawDRRect(0, outer, inner, paint); this.pictureSnapshot._commands.push(new H.CkDrawDRRectCommand(outer, inner, paint)); }, drawImageRect$4: function(image, src, dst, paint) { var t1, t2; this.super$CkCanvas$drawImageRect(image, src, dst, paint); t1 = image.get$box(); t2 = new H.CkImage(t1); t2.CkImage$cloneOf$1(t1); this.pictureSnapshot._commands.push(new H.CkDrawImageRectCommand(t2, src, dst, paint)); }, drawLine$3: function(_, p1, p2, paint) { this.super$CkCanvas$drawLine(0, p1, p2, paint); this.pictureSnapshot._commands.push(new H.CkDrawLineCommand(p1, p2, paint)); }, drawPaint$1: function(_, paint) { this.super$CkCanvas$drawPaint(0, paint); this.pictureSnapshot._commands.push(new H.CkDrawPaintCommand(paint)); }, drawParagraph$2: function(_, paragraph, offset) { this.super$CkCanvas$drawParagraph(0, paragraph, offset); this.pictureSnapshot._commands.push(new H.CkDrawParagraphCommand(paragraph, offset)); }, drawPath$2: function(_, path, paint) { this.super$CkCanvas$drawPath(0, path, paint); this.pictureSnapshot._commands.push(new H.CkDrawPathCommand(path, paint)); }, drawPicture$1: function(_, picture) { this.super$CkCanvas$drawPicture(0, picture); this.pictureSnapshot._commands.push(new H.CkDrawPictureCommand(picture)); }, drawRRect$2: function(_, rrect, paint) { this.super$CkCanvas$drawRRect(0, rrect, paint); this.pictureSnapshot._commands.push(new H.CkDrawRRectCommand(rrect, paint)); }, drawRect$2: function(_, rect, paint) { this.super$CkCanvas$drawRect(0, rect, paint); this.pictureSnapshot._commands.push(new H.CkDrawRectCommand(rect, paint)); }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { this.super$CkCanvas$drawShadow(0, path, color, elevation, transparentOccluder); this.pictureSnapshot._commands.push(new H.CkDrawShadowCommand(path, color, elevation, transparentOccluder)); }, restore$0: function(_) { this.super$CkCanvas$restore(0); this.pictureSnapshot._commands.push(C.C_CkRestoreCommand); }, restoreToCount$1: function(_, count) { this.super$CkCanvas$restoreToCount(0, count); this.pictureSnapshot._commands.push(new H.CkRestoreToCountCommand(count)); }, rotate$1: function(_, radians) { this.super$CkCanvas$rotate(0, radians); this.pictureSnapshot._commands.push(new H.CkRotateCommand(radians)); }, save$0: function(_) { this.pictureSnapshot._commands.push(C.C_CkSaveCommand); return this.super$CkCanvas$save(0); }, saveLayer$2: function(_, bounds, paint) { this.super$CkCanvas$saveLayer(0, bounds, paint); this.pictureSnapshot._commands.push(new H.CkSaveLayerCommand(bounds, paint)); }, scale$2: function(_, sx, sy) { this.super$CkCanvas$scale(0, sx, sy); this.pictureSnapshot._commands.push(new H.CkScaleCommand(sx, sy)); }, transform$1: function(_, matrix4) { this.super$CkCanvas$transform(0, matrix4); this.pictureSnapshot._commands.push(new H.CkTransformCommand(matrix4)); }, translate$2: function(_, dx, dy) { this.super$CkCanvas$translate(0, dx, dy); this.pictureSnapshot._commands.push(new H.CkTranslateCommand(dx, dy)); }, get$pictureSnapshot: function() { return this.pictureSnapshot; } }; H.CkPictureSnapshot.prototype = { toPicture$0: function() { var t2, t3, _i, skPicture, recorder = new self.window.flutterCanvasKit.PictureRecorder(), t1 = J.getInterceptor$x(recorder), skCanvas = t1.beginRecording$1(recorder, H.toSkRect(this._bounds)); for (t2 = this._commands, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) t2[_i].apply$1(skCanvas); skPicture = t1.finishRecordingAsPicture$0(recorder); t1.delete$0(recorder); return skPicture; }, dispose$0: function(_) { var t1, t2, _i; for (t1 = this._commands, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].dispose$0(0); } }; H.CkPaintCommand.prototype = { dispose$0: function(_) { } }; H.CkClearCommand.prototype = { apply$1: function(canvas) { J.clear$1$ax(canvas, H._populateSkColor($.$get$_sharedSkColor1(), this.color)); } }; H.CkSaveCommand.prototype = { apply$1: function(canvas) { J.save$0$x(canvas); } }; H.CkRestoreCommand.prototype = { apply$1: function(canvas) { J.restore$0$x(canvas); } }; H.CkRestoreToCountCommand.prototype = { apply$1: function(canvas) { J.restoreToCount$1$x(canvas, this.count); } }; H.CkTranslateCommand.prototype = { apply$1: function(canvas) { J.translate$2$x(canvas, this.dx, this.dy); } }; H.CkScaleCommand.prototype = { apply$1: function(canvas) { J.scale$2$x(canvas, this.sx, this.sy); } }; H.CkRotateCommand.prototype = { apply$1: function(canvas) { J.rotate$3$x(canvas, this.radians * 180 / 3.141592653589793, 0, 0); } }; H.CkTransformCommand.prototype = { apply$1: function(canvas) { J.concat$1$x(canvas, H.toSkMatrixFromFloat32(this.matrix4)); } }; H.CkClipRectCommand.prototype = { apply$1: function(canvas) { J.clipRect$3$x(canvas, H.toSkRect(this.rect), $.$get$_skClipOps()[this.clipOp.index], this.doAntiAlias); } }; H.CkDrawArcCommand.prototype = { apply$1: function(canvas) { var _this = this; J.drawArc$5$x(canvas, H.toSkRect(_this.oval), _this.startAngle * 57.29577951308232, _this.sweepAngle * 57.29577951308232, false, _this.paint.get$skiaObject()); } }; H.CkClipRRectCommand.prototype = { apply$1: function(canvas) { J.clipRRect$3$x(canvas, H.toSkRRect(this.rrect), $.$get$_clipOpIntersect(), this.doAntiAlias); } }; H.CkClipPathCommand.prototype = { apply$1: function(canvas) { J.clipPath$3$x(canvas, this.path.get$skiaObject(), $.$get$_clipOpIntersect(), this.doAntiAlias); } }; H.CkDrawLineCommand.prototype = { apply$1: function(canvas) { var t1 = this.p1, t2 = this.p2; J.drawLine$5$x(canvas, t1._dx, t1._dy, t2._dx, t2._dy, this.paint.get$skiaObject()); } }; H.CkDrawPaintCommand.prototype = { apply$1: function(canvas) { J.drawPaint$1$x(canvas, this.paint.get$skiaObject()); } }; H.CkDrawRectCommand.prototype = { apply$1: function(canvas) { J.drawRect$2$x(canvas, H.toSkRect(this.rect), this.paint.get$skiaObject()); } }; H.CkDrawRRectCommand.prototype = { apply$1: function(canvas) { J.drawRRect$2$x(canvas, H.toSkRRect(this.rrect), this.paint.get$skiaObject()); } }; H.CkDrawDRRectCommand.prototype = { apply$1: function(canvas) { J.drawDRRect$3$x(canvas, H.toSkRRect(this.outer), H.toSkRRect(this.inner), this.paint.get$skiaObject()); } }; H.CkDrawCircleCommand.prototype = { apply$1: function(canvas) { var t1 = this.c; J.drawCircle$4$x(canvas, t1._dx, t1._dy, this.radius, this.paint.get$skiaObject()); } }; H.CkDrawPathCommand.prototype = { apply$1: function(canvas) { J.drawPath$2$x(canvas, this.path.get$skiaObject(), this.paint.get$skiaObject()); } }; H.CkDrawShadowCommand.prototype = { apply$1: function(canvas) { var _this = this, t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); H.drawSkShadow(canvas, _this.path, _this.color, _this.elevation, _this.transparentOccluder, t1); } }; H.CkDrawImageRectCommand.prototype = { apply$1: function(canvas) { var t5, t6, _this = this, _s9_ = "canvasKit", t1 = _this.paint, filterQuality = t1._filterQuality, t2 = _this.image, t3 = _this.src, t4 = _this.dst; if (filterQuality === C.FilterQuality_3) J.drawImageRectCubic$6$x(canvas, t2.get$box().get$skiaObject(), H.toSkRect(t3), H.toSkRect(t4), 0.3333333333333333, 0.3333333333333333, t1.get$skiaObject()); else { t2 = t2.get$box().get$skiaObject(); t3 = H.toSkRect(t3); t4 = H.toSkRect(t4); t5 = $.__canvasKit; if (filterQuality === C.FilterQuality_0) t5 = J.get$Nearest$x(J.get$FilterMode$x(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5)); else t5 = J.get$Linear$x(J.get$FilterMode$x(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5)); t6 = $.__canvasKit; if (filterQuality === C.FilterQuality_2) t6 = J.get$Linear$x(J.get$MipmapMode$x(t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t6)); else t6 = J.get$None$x(J.get$MipmapMode$x(t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t6)); J.drawImageRectOptions$6$x(canvas, t2, t3, t4, t5, t6, t1.get$skiaObject()); } }, dispose$0: function(_) { var t1 = this.image; t1._disposed = true; t1.get$box().unref$1(t1); } }; H.CkDrawParagraphCommand.prototype = { apply$1: function(canvas) { var t1 = this.offset; J.drawParagraph$3$x(canvas, this.paragraph.get$skiaObject(), t1._dx, t1._dy); } }; H.CkDrawPictureCommand.prototype = { apply$1: function(canvas) { J.drawPicture$1$x(canvas, this.picture.get$skiaObject()); } }; H.CkSaveLayerCommand.prototype = { apply$1: function(canvas) { var t1 = this.paint; t1 = t1 == null ? null : t1.get$skiaObject(); J.saveLayer$4$x(canvas, t1, H.toSkRect(this.bounds), null, null); } }; H.CanvasKit.prototype = {}; H.CanvasKitInitOptions.prototype = {}; H.CanvasKitInitPromise.prototype = {}; H.ColorSpace.prototype = {}; H.SkWebGLContextOptions.prototype = {}; H.SkSurface.prototype = {}; H.SkGrContext.prototype = {}; H.SkFontSlantEnum.prototype = {}; H.SkFontSlant.prototype = {}; H.SkFontWeightEnum.prototype = {}; H.SkFontWeight.prototype = {}; H.SkAffinityEnum.prototype = {}; H.SkAffinity.prototype = {}; H.SkTextDirectionEnum.prototype = {}; H.SkTextDirection.prototype = {}; H.SkTextAlignEnum.prototype = {}; H.SkTextAlign.prototype = {}; H.SkRectHeightStyleEnum.prototype = {}; H.SkRectHeightStyle.prototype = {}; H.SkRectWidthStyleEnum.prototype = {}; H.SkRectWidthStyle.prototype = {}; H.SkVertexModeEnum.prototype = {}; H.SkVertexMode.prototype = {}; H.SkPointModeEnum.prototype = {}; H.SkPointMode.prototype = {}; H.SkClipOpEnum.prototype = {}; H.SkClipOp.prototype = {}; H.SkFillTypeEnum.prototype = {}; H.SkFillType.prototype = {}; H.SkPathOpEnum.prototype = {}; H.SkPathOp.prototype = {}; H.SkBlurStyleEnum.prototype = {}; H.SkBlurStyle.prototype = {}; H.SkStrokeCapEnum.prototype = {}; H.SkStrokeCap.prototype = {}; H.SkPaintStyleEnum.prototype = {}; H.SkPaintStyle.prototype = {}; H.SkBlendModeEnum.prototype = {}; H.SkBlendMode.prototype = {}; H.SkStrokeJoinEnum.prototype = {}; H.SkStrokeJoin.prototype = {}; H.SkFilterQualityEnum.prototype = {}; H.SkFilterQuality.prototype = {}; H.SkTileModeEnum.prototype = {}; H.SkTileMode.prototype = {}; H.SkFilterModeEnum.prototype = {}; H.SkFilterMode.prototype = {}; H.SkMipmapModeEnum.prototype = {}; H.SkMipmapMode.prototype = {}; H.SkAlphaTypeEnum.prototype = {}; H.SkAlphaType.prototype = {}; H.SkColorTypeEnum.prototype = {}; H.SkColorType.prototype = {}; H.SkAnimatedImage.prototype = {}; H.SkImage.prototype = {}; H.SkShaderNamespace.prototype = {}; H.SkShader.prototype = {}; H.SkMaskFilterNamespace.prototype = {}; H.SkPaint.prototype = {}; H.SkMaskFilter.prototype = {}; H.SkColorFilterNamespace.prototype = {}; H.SkColorFilter.prototype = {}; H.SkImageFilterNamespace.prototype = {}; H.SkImageFilter.prototype = {}; H.SkPathNamespace.prototype = {}; H._NativeFloat32ArrayType.prototype = {}; H.SkFloat32List.prototype = {}; H.SkPath.prototype = {}; H.SkContourMeasureIter.prototype = {}; H.SkContourMeasure.prototype = {}; H.SkPictureRecorder.prototype = {}; H.SkCanvas.prototype = {}; H.SkPicture.prototype = {}; H.SkParagraphBuilderNamespace.prototype = {}; H.SkParagraphBuilder.prototype = {}; H.SkParagraphStyle.prototype = {}; H.SkParagraphStyleProperties.prototype = {}; H.SkTextStyle.prototype = {}; H.SkTextDecorationStyleEnum.prototype = {}; H.SkTextDecorationStyle.prototype = {}; H.SkTextBaselineEnum.prototype = {}; H.SkTextBaseline.prototype = {}; H.SkPlaceholderAlignmentEnum.prototype = {}; H.SkPlaceholderAlignment.prototype = {}; H.SkTextStyleProperties.prototype = {}; H.SkStrutStyleProperties.prototype = {}; H.SkFontStyle.prototype = {}; H.SkTextShadow.prototype = {}; H.SkFontFeature.prototype = {}; H.SkTypeface.prototype = {}; H.SkFont.prototype = {}; H.SkFontMgr.prototype = {}; H.TypefaceFontProvider.prototype = {}; H.SkLineMetrics.prototype = {}; H.SkParagraph.prototype = {}; H.SkTextPosition.prototype = {}; H.SkTextRange.prototype = {}; H.SkVertices.prototype = {}; H.SkTonalColors.prototype = {}; H.SkFontMgrNamespace.prototype = {}; H.TypefaceFontProviderNamespace.prototype = {}; H.ProductionCollector.prototype = { ProductionCollector$0: function() { var t1 = new self.window.FinalizationRegistry(P.allowInterop(new H.ProductionCollector_closure(this))); if (this.__ProductionCollector__skObjectFinalizationRegistry === $) this.__ProductionCollector__skObjectFinalizationRegistry = t1; else H.throwExpression(H.LateError$fieldAI("_skObjectFinalizationRegistry")); }, register$2: function(_, wrapper, deletable) { var t1 = this.__ProductionCollector__skObjectFinalizationRegistry; J.register$2$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_skObjectFinalizationRegistry")) : t1, wrapper, deletable); }, collect$1: function(deletable) { var _this = this; _this._skiaObjectCollectionQueue.push(deletable); if (_this._skiaObjectCollectionTimer == null) _this._skiaObjectCollectionTimer = P.Timer_Timer(C.Duration_0, new H.ProductionCollector_collect_closure(_this)); }, collectSkiaObjectsNow$0: function() { var firstError, firstStackTrace, deletable, error, stackTrace, $length, i, exception, _s25_ = "SkObject collection-start", _s23_ = "SkObject collection-end"; window.performance.mark(_s25_); $length = this._skiaObjectCollectionQueue.length; firstError = null; firstStackTrace = null; for (i = 0; i < $length; ++i) { deletable = this._skiaObjectCollectionQueue[i]; if (J.isDeleted$0$x(deletable)) continue; try { J.delete$0$x(deletable); } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); if (firstError == null) { firstError = error; firstStackTrace = stackTrace; } } } this._skiaObjectCollectionQueue = H.setRuntimeTypeInfo([], type$.JSArray_SkDeletable); window.performance.mark(_s23_); window.performance.measure("SkObject collection", _s25_, _s23_); if (firstError != null) throw H.wrapException(new H.SkiaObjectCollectionError(firstError, firstStackTrace)); } }; H.ProductionCollector_closure.prototype = { call$1: function(deletable) { if (!J.isDeleted$0$x(deletable)) this.$this.collect$1(deletable); }, $signature: 1569 }; H.ProductionCollector_collect_closure.prototype = { call$0: function() { var t1 = this.$this; t1._skiaObjectCollectionTimer = null; t1.collectSkiaObjectsNow$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.SkiaObjectCollectionError.prototype = { toString$0: function(_) { return "SkiaObjectCollectionError: " + H.S(this.error) + "\n" + H.S(this.stackTrace); }, $isError: 1, get$stackTrace: function() { return this.stackTrace; } }; H.SkDeletable.prototype = {}; H.JsConstructor.prototype = {}; H.SkObjectFinalizationRegistry.prototype = {}; H.SkData.prototype = {}; H.SkImageInfo.prototype = {}; H.CanvasKitCanvas.prototype = { save$0: function(_) { this.__engine$_canvas.save$0(0); }, saveLayer$2: function(_, bounds, paint) { this.__engine$_canvas.saveLayer$2(0, bounds, type$.CkPaint._as(paint)); }, restore$0: function(_) { this.__engine$_canvas.restore$0(0); }, translate$2: function(_, dx, dy) { this.__engine$_canvas.translate$2(0, dx, dy); }, scale$2: function(_, sx, sy) { var t1 = sy == null ? sx : sy; this.__engine$_canvas.scale$2(0, sx, t1); return null; }, rotate$1: function(_, radians) { this.__engine$_canvas.rotate$1(0, radians); }, transform$1: function(_, matrix4) { this.__engine$_canvas.transform$1(0, H.toMatrix32(matrix4)); }, clipRect$3$clipOp$doAntiAlias: function(_, rect, clipOp, doAntiAlias) { this.__engine$_canvas.clipRect$3(0, rect, clipOp, doAntiAlias); }, clipRect$2$doAntiAlias: function($receiver, rect, doAntiAlias) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, C.ClipOp_1, doAntiAlias); }, clipRect$1: function($receiver, rect) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, C.ClipOp_1, true); }, clipRRect$2$doAntiAlias: function(_, rrect, doAntiAlias) { this.__engine$_canvas.clipRRect$2(0, rrect, doAntiAlias); }, clipRRect$1: function($receiver, rrect) { return this.clipRRect$2$doAntiAlias($receiver, rrect, true); }, clipPath$2$doAntiAlias: function(_, path, doAntiAlias) { this.__engine$_canvas.clipPath$2(0, type$.CkPath._as(path), doAntiAlias); }, clipPath$1: function($receiver, path) { return this.clipPath$2$doAntiAlias($receiver, path, true); }, drawLine$3: function(_, p1, p2, paint) { this.__engine$_canvas.drawLine$3(0, p1, p2, type$.CkPaint._as(paint)); }, drawRect$2: function(_, rect, paint) { this.__engine$_canvas.drawRect$2(0, rect, type$.CkPaint._as(paint)); }, drawRRect$2: function(_, rrect, paint) { this.__engine$_canvas.drawRRect$2(0, rrect, type$.CkPaint._as(paint)); }, drawDRRect$3: function(_, outer, inner, paint) { this.__engine$_canvas.drawDRRect$3(0, outer, inner, type$.CkPaint._as(paint)); }, drawCircle$3: function(_, c, radius, paint) { this.__engine$_canvas.drawCircle$3(0, c, radius, type$.CkPaint._as(paint)); }, drawArc$5: function(_, rect, startAngle, sweepAngle, useCenter, paint) { this.__engine$_canvas.drawArc$5(0, rect, startAngle, sweepAngle, false, type$.CkPaint._as(paint)); }, drawPath$2: function(_, path, paint) { this.__engine$_canvas.drawPath$2(0, type$.CkPath._as(path), type$.CkPaint._as(paint)); }, drawImageRect$4: function(image, src, dst, paint) { this.__engine$_canvas.drawImageRect$4(type$.CkImage._as(image), src, dst, type$.CkPaint._as(paint)); }, drawParagraph$2: function(_, paragraph, offset) { this.__engine$_canvas.drawParagraph$2(0, type$.CkParagraph._as(paragraph), offset); }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { this.__engine$_canvas.drawShadow$4(0, type$.CkPath._as(path), color, elevation, transparentOccluder); } }; H._ManagedSkColorFilter.prototype = { createDefault$0: function() { return this.ckColorFilter._initRawColorFilter$0(); }, resurrect$0: function() { return this.ckColorFilter._initRawColorFilter$0(); }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, get$hashCode: function(_) { var t1 = this.ckColorFilter; return P.hashValues(t1.color, t1.blendMode, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { if (other == null) return false; if (H.getRuntimeType(this) !== J.get$runtimeType$(other)) return false; return other instanceof H._ManagedSkColorFilter && other.ckColorFilter.$eq(0, this.ckColorFilter); }, toString$0: function(_) { var t1 = this.ckColorFilter; return "ColorFilter.mode(" + H.S(t1.color) + ", " + t1.blendMode.toString$0(0) + ")"; } }; H._CkBlendModeColorFilter.prototype = {constructor: H._CkBlendModeColorFilter, $is_CkBlendModeColorFilter: 1}; H.HtmlViewEmbedder.prototype = { set$frameSize: function(size) { if (J.$eq$(this._frameSize, size)) return; C.JSArray_methods.set$length(this._activeCompositionOrder, 0); this._frameSize = size; }, handlePlatformViewCall$2: function(data, callback) { var decoded = C.C_StandardMethodCodec0.decodeMethodCall$1(data); switch (decoded.method) { case "create": this._create$2(decoded, callback); return; case "dispose": callback.toString; this._dispose$2(decoded, callback); return; } callback.call$1(null); }, _create$2: function(methodCall, callback) { var factory, embeddedView, args = methodCall.$arguments, t1 = J.getInterceptor$asx(args), viewId = t1.$index(args, "id"), viewType = t1.$index(args, "viewType"); t1 = this.__engine$_views; if (t1.$index(0, viewId) != null) { callback.toString; callback.call$1(C.C_StandardMethodCodec0.encodeErrorEnvelope$3$code$details$message("recreating_view", "view id: " + H.S(viewId), "trying to create an already created view")); return; } factory = $.$get$platformViewRegistry().registeredFactories.$index(0, viewType); if (factory == null) { callback.toString; callback.call$1(C.C_StandardMethodCodec0.encodeErrorEnvelope$3$code$details$message("unregistered_view_type", "unregistered view type: " + H.S(viewType), "trying to create a view with an unregistered type")); return; } viewId.toString; embeddedView = factory.call$1(viewId); t1.$indexSet(0, viewId, embeddedView); this._rootViews.$indexSet(0, viewId, embeddedView); callback.toString; callback.call$1(C.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); }, _dispose$2: function(methodCall, callback) { var viewId = methodCall.$arguments; if (viewId == null || !this.__engine$_views.containsKey$1(0, viewId)) { callback.call$1(C.C_StandardMethodCodec0.encodeErrorEnvelope$3$code$details$message("unknown_view", "view id: " + H.S(viewId), "trying to dispose an unknown view")); return; } this._viewsToDispose.add$1(0, viewId); callback.call$1(C.C_StandardMethodCodec0.encodeSuccessEnvelope$1(null)); }, getCurrentCanvases$0: function() { var t1, t2, i, canvases = H.setRuntimeTypeInfo([], type$.JSArray_nullable_CkCanvas); for (t1 = this._compositionOrder, t2 = this._pictureRecorders, i = 0; i < t1.length; ++i) canvases.push(t2.$index(0, t1[i])._recordingCanvas); return canvases; }, prerollCompositeEmbeddedView$2: function(viewId, params) { var _this = this, pictureRecorder = new H.CkPictureRecorder(), t1 = _this._frameSize; pictureRecorder.beginRecording$1(0, new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); pictureRecorder._recordingCanvas.clear$1(0, new P.Color(0)); _this._pictureRecorders.$indexSet(0, viewId, pictureRecorder); _this._compositionOrder.push(viewId); t1 = _this._currentCompositionParams; if (J.$eq$(t1.$index(0, viewId), params)) return; t1.$indexSet(0, viewId, params); _this._viewsToRecomposite.add$1(0, viewId); }, compositeEmbeddedView$1: function(viewId) { var t2, platformView, t3, t4, t5, currentClippingCount, _this = this, t1 = _this._viewsToRecomposite; if (!t1.contains$1(0, viewId)) return _this._pictureRecorders.$index(0, viewId)._recordingCanvas; t2 = _this._currentCompositionParams.$index(0, viewId); t2.toString; platformView = _this.__engine$_views.$index(0, viewId); t3 = platformView.style; t4 = t2.size; t5 = H.S(t4._dx) + "px"; t3.width = t5; t3 = platformView.style; t4 = H.S(t4._dy) + "px"; t3.height = t4; t3 = platformView.style; t3.position = "absolute"; t3 = platformView.style; t3.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, "pointer-events"), "auto", ""); t2 = t2.mutators; currentClippingCount = _this._countClips$1(t2); t3 = _this._clipCount; if (currentClippingCount !== t3.$index(0, viewId)) { t3.$indexSet(0, viewId, currentClippingCount); t3 = _this._rootViews; t4 = t3.$index(0, viewId); t4.toString; t3.$indexSet(0, viewId, _this._reconstructClipViewsChain$3(currentClippingCount, platformView, t4)); } _this._applyMutators$3(t2, platformView, viewId); t1.remove$1(0, viewId); return _this._pictureRecorders.$index(0, viewId)._recordingCanvas; }, _countClips$1: function(mutators) { var t1, t2, clipCount; for (t1 = mutators._mutators, t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new H.ReversedListIterable(t1, t2), t2 = new H.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), clipCount = 0; t2.moveNext$0();) { t1 = t2.__internal$_current.type; if (t1 === C.MutatorType_0 || t1 === C.MutatorType_1 || t1 === C.MutatorType_2) ++clipCount; } return clipCount; }, _reconstructClipViewsChain$3: function(numClips, platformView, headClipView) { var t1, indexInFlutterView, head, clipIndex, head0; if (headClipView.parentElement != null) { t1 = $.skiaSceneHost; t1.toString; t1 = J.get$children$x(t1); indexInFlutterView = t1.indexOf$1(t1, headClipView); J.remove$0$ax(headClipView); } else indexInFlutterView = -1; head = platformView; clipIndex = 0; while (true) { if (!((head == null ? headClipView != null : head !== headClipView) && clipIndex < numClips)) break; head = head.parentElement; ++clipIndex; } for (; clipIndex < numClips; head = head0) { head0 = W._ElementFactoryProvider_createElement_tag("flt-clip", null); head.toString; head0.appendChild(head); ++clipIndex; } head.toString; J.remove$0$ax(head); if (indexInFlutterView > -1) { t1 = $.skiaSceneHost; t1.toString; J.get$children$x(t1).insert$2(0, indexInFlutterView, head); } return head; }, _cleanUpClipDefs$1: function(viewId) { var t2, nodesToRemove, t3, t4, _i, node, t1 = this._svgClipDefs; if (t1.containsKey$1(0, viewId)) { t2 = this._svgPathDefs.querySelector("#sk_path_defs"); t2.toString; nodesToRemove = H.setRuntimeTypeInfo([], type$.JSArray_Element); t3 = t1.$index(0, viewId); t3.toString; for (t2 = J.get$children$x(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t4 = t2.__interceptors$_current; if (t3.contains$1(0, t4.id)) nodesToRemove.push(t4); } for (t2 = nodesToRemove.length, _i = 0; _i < nodesToRemove.length; nodesToRemove.length === t2 || (0, H.throwConcurrentModificationError)(nodesToRemove), ++_i) { node = nodesToRemove[_i]; t3 = node.parentNode; if (t3 != null) t3.removeChild(node); } t1 = t1.$index(0, viewId); t1.toString; J.clear$0$ax(t1); } }, _applyMutators$3: function(mutators, embeddedView, viewId) { var t2, t3, t4, head, embeddedOpacity, t5, t6, headTransform0, value, clipView, t7, path, clipId, t8, scale, inverseScale, _this = this, _s16_ = "transform-origin", _s8_ = "absolute", _s9_ = "transform", _s9_0 = "clip-path", _s13_ = "#sk_path_defs", _s20_ = '">', headTransform = H.Matrix4$identity(), t1 = embeddedView.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s16_), "0 0 0", ""); t1 = embeddedView.style; t1.position = _s8_; _this._cleanUpClipDefs$1(viewId); for (t1 = mutators._mutators, t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"), t1 = new H.ReversedListIterable(t1, t2), t2 = new H.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")), t1 = type$.SvgElement, t3 = type$.SvgSvgElement, t4 = _this._svgClipDefs, head = embeddedView, embeddedOpacity = 1; t2.moveNext$0();) { t5 = t2.__internal$_current; switch (t5.type) { case C.MutatorType_3: t5 = t5.matrix; t5.toString; t6 = new Float32Array(16); headTransform0 = new H.Matrix40(t6); headTransform0.setFrom$1(t5); headTransform0.multiply$1(0, headTransform); t5 = head.style; value = H.float64ListToCssTransform(t6); t5.toString; t6 = C.CssStyleDeclaration_methods._browserPropertyName$1(t5, _s9_); t5.setProperty(t6, value, ""); headTransform = headTransform0; break; case C.MutatorType_0: case C.MutatorType_1: case C.MutatorType_2: clipView = head.parentElement; t6 = clipView.style; t6.clip = ""; t6 = clipView.style; t6.toString; t7 = C.CssStyleDeclaration_methods._browserPropertyName$1(t6, _s9_0); t6.setProperty(t7, "", ""); headTransform = new H.Matrix40(new Float32Array(16)); headTransform.Matrix4$identity$0(); t6 = clipView.style; t6.toString; t7 = C.CssStyleDeclaration_methods._browserPropertyName$1(t6, _s9_); t6.setProperty(t7, "", ""); t6 = t5.rect; if (t6 != null) { t5 = clipView.style; t6 = "rect(" + H.S(t6.top) + "px, " + H.S(t6.right) + "px, " + H.S(t6.bottom) + "px, " + H.S(t6.left) + "px)"; t5.clip = t6; } else { t6 = t5.rrect; if (t6 != null) { path = new H.CkPath(C.PathFillType_0); path.ManagedSkiaObject$1(null); t5 = path.rawSkiaObject; if (t5 == null) t5 = path._doResurrect$0(); J.addRRect$2$x(t5, H.toSkRRect(t6), false); _this._ensureSvgPathDefs$0(); t6 = _this._svgPathDefs.querySelector(_s13_); t6.toString; clipId = "svgClip" + ++_this._clipPathCount; t5 = '', new H._NullTreeSanitizer(), null); this._svgPathDefs = t1; t2 = $.skiaSceneHost; t2.toString; t1.toString; t2.appendChild(t1); }, submitFrame$0: function(_) { var t1, t2, t3, i, viewId, frame, t4, t5, t6, unusedViews, overlay, t7, t8, _this = this; _this.disposeViews$0(); for (t1 = _this._compositionOrder, t2 = _this._overlays, t3 = _this._pictureRecorders, i = 0; i < t1.length; ++i) { viewId = t1[i]; _this._ensureOverlayInitialized$1(viewId); frame = t2.$index(0, viewId).acquireFrame$1(_this._frameSize); t4 = J.getCanvas$0$x(frame.skiaSurface.__engine$_surface); t5 = t3.$index(0, viewId).endRecording$0(); t6 = t5.rawSkiaObject; J.drawPicture$1$x(t4, t6 == null ? t5._doResurrect$0() : t6); frame.submit$0(0); } t3.clear$0(0); t3 = _this._activeCompositionOrder; if (H._listEquals(t1, t3)) { C.JSArray_methods.set$length(t1, 0); return; } unusedViews = P.LinkedHashSet_LinkedHashSet$from(t3, type$.int); C.JSArray_methods.set$length(t3, 0); for (t4 = _this._rootViews, i = 0; i < t1.length; ++i) { viewId = t1[i]; unusedViews.remove$1(0, viewId); t5 = t4.$index(0, viewId); t5.toString; overlay = t2.$index(0, viewId).htmlElement; t6 = t5.parentNode; if (t6 != null) t6.removeChild(t5); $.skiaSceneHost.appendChild(t5); t5 = overlay.parentNode; if (t5 != null) t5.removeChild(overlay); $.skiaSceneHost.appendChild(overlay); t3.push(viewId); } C.JSArray_methods.set$length(t1, 0); for (t1 = P._LinkedHashSetIterator$(unusedViews, unusedViews._collection$_modifications, H._instanceType(unusedViews)._precomputed1); t1.moveNext$0();) { t3 = t1._collection$_current; if (t2.$index(0, t3) != null) { t5 = $.$get$OverlayCache_instance(); t6 = t2.$index(0, t3); t6.toString; t5.toString; t7 = t6.htmlElement; t8 = t7.parentNode; if (t8 != null) t8.removeChild(t7); t8 = t5._cache; if (t8.length < t5.maximumSize) t8.push(t6); else { t5 = t7.parentNode; if (t5 != null) t5.removeChild(t7); t5 = t6.__engine$_surface; if (t5 != null) t5.dispose$0(0); } t2.remove$1(0, t3); } t3 = t4.$index(0, t3); if (t3 != null) { t5 = t3.parentNode; if (t5 != null) t5.removeChild(t3); } } }, disposeViews$0: function() { var t2, t3, t4, t5, t6, t7, t8, t9, t10, rootView, t11, t12, t13, t14, _this = this, t1 = _this._viewsToDispose; if (t1._collection$_length === 0) return; for (t2 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1), t3 = _this._currentCompositionParams, t4 = _this._clipCount, t5 = _this._viewsToRecomposite, t6 = _this._svgClipDefs, t7 = _this._overlays, t8 = _this.__engine$_views, t9 = _this._rootViews; t2.moveNext$0();) { t10 = t2._collection$_current; rootView = t9.$index(0, t10); t11 = rootView.parentNode; if (t11 != null) t11.removeChild(rootView); t8.remove$1(0, t10); t9.remove$1(0, t10); if (t7.$index(0, t10) != null) { t11 = $.$get$OverlayCache_instance(); t12 = t7.$index(0, t10); t12.toString; t11.toString; t13 = t12.htmlElement; t14 = t13.parentNode; if (t14 != null) t14.removeChild(t13); t14 = t11._cache; if (t14.length < t11.maximumSize) t14.push(t12); else { t11 = t13.parentNode; if (t11 != null) t11.removeChild(t13); t11 = t12.__engine$_surface; if (t11 != null) t11.dispose$0(0); } t7.remove$1(0, t10); } t3.remove$1(0, t10); t4.remove$1(0, t10); t5.remove$1(0, t10); _this._cleanUpClipDefs$1(t10); t6.remove$1(0, t10); } t1.clear$0(0); }, _ensureOverlayInitialized$1: function(viewId) { var overlay, t1 = this._overlays; if (t1.$index(0, viewId) != null) return; overlay = $.$get$OverlayCache_instance().reserveOverlay$0(); t1.$indexSet(0, viewId, overlay == null ? new H.Surface(W._ElementFactoryProvider_createElement_tag("flt-canvas-container", null), this) : overlay); } }; H.HtmlViewEmbedder__applyMutators_closure.prototype = { call$0: function() { return P.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 395 }; H.HtmlViewEmbedder__applyMutators_closure0.prototype = { call$0: function() { return P.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 395 }; H.OverlayCache.prototype = { reserveOverlay$0: function() { var t1 = this._cache; if (t1.length === 0) return null; return t1.pop(); } }; H.EmbeddedViewParams.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof H.EmbeddedViewParams && other.offset.$eq(0, _this.offset) && other.size.$eq(0, _this.size) && other.mutators.$eq(0, _this.mutators); }, get$hashCode: function(_) { return P.hashValues(this.offset, this.size, this.mutators, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; H.MutatorType.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.Mutator.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof H.Mutator)) return false; t1 = _this.type; if (t1 !== other.type) return false; switch (t1) { case C.MutatorType_0: return J.$eq$(_this.rect, other.rect); case C.MutatorType_1: return J.$eq$(_this.rrect, other.rrect); case C.MutatorType_2: return _this.path == other.path; case C.MutatorType_3: return _this.matrix == other.matrix; case C.MutatorType_4: return _this.alpha == other.alpha; default: return false; } }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.type, _this.rect, _this.rrect, _this.path, _this.matrix, _this.alpha, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; H.MutatorsStack.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof H.MutatorsStack && H._listEquals(other._mutators, this._mutators); }, get$hashCode: function(_) { return P.hashList(this._mutators); }, get$iterator: function(_) { var t1 = this._mutators, t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); t1 = new H.ReversedListIterable(t1, t2); return new H.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); } }; H.FontFallbackData.prototype = { registerFallbackFont$2: function(family, bytes) { var t2, t3, countedFamily, t1 = $.__canvasKit, typeface = J.MakeTypefaceFromData$1$x(J.RefDefault$0$x(J.get$FontMgr$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1)), bytes); if (typeface == null) { $.$get$printWarning().call$1("Failed to parse fallback font " + family + " as a font."); return; } t1 = this.fontFallbackCounts; t1.putIfAbsent$2(0, family, new H.FontFallbackData_registerFallbackFont_closure()); t2 = t1.$index(0, family); t2.toString; t3 = t1.$index(0, family); t3.toString; t1.$indexSet(0, family, t3 + 1); countedFamily = family + " " + H.S(t2); this.registeredFallbackFonts.push(H._RegisteredFont$(bytes, countedFamily, typeface)); this.globalFontFallbacks.push(countedFamily); } }; H.FontFallbackData_createNotoFontTree_closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_CodeunitRange); }, $signature: 492 }; H.FontFallbackData_registerFallbackFont_closure.prototype = { call$0: function() { return 0; }, $signature: 218 }; H.findFontsForMissingCodeunits_closure.prototype = { call$1: function(u) { return this.data.codeUnitsWithNoKnownFont.contains$1(0, u); }, $signature: 186 }; H._makeResolvedNotoFontFromCss_closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_CodeunitRange); }, $signature: 492 }; H._registerSymbolsAndEmoji_extractUrlFromCss.prototype = { call$1: function(css) { var t1, t2, urlStart; for (t1 = P.LineSplitter_split(css), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) { t2 = t1.get$current(t1); if (J.startsWith$1$s(t2, " src:")) { urlStart = C.JSString_methods.indexOf$1(t2, "url("); if (urlStart === -1) { $.$get$printWarning().call$1("Unable to resolve Noto font URL: " + t2); return null; } return C.JSString_methods.substring$2(t2, urlStart + 4, C.JSString_methods.indexOf$1(t2, ")")); } } $.$get$printWarning().call$1("Unable to determine URL for Noto font"); return null; }, $signature: 1911 }; H.findMinimumFontsForCodeUnits_closure.prototype = { call$1: function(font) { return C.JSArray_methods.contains$1($.$get$_cjkFonts(), font); }, $signature: 1941 }; H.findMinimumFontsForCodeUnits_closure0.prototype = { call$1: function(codeUnit) { return this._box_0.bestFont.resolvedFont.tree.root.containsDeep$1(codeUnit); }, $signature: 186 }; H.NotoFont.prototype = { ensureResolved$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, $async$temp1; var $async$ensureResolved$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.resolvedFont == null ? 2 : 3; break; case 2: // then t1 = $async$self._decodingCompleter; $async$goto = t1 == null ? 4 : 6; break; case 4: // then $async$self._decodingCompleter = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t1 = $.$get$notoDownloadQueue().downloader; t2 = $async$self.name; $async$temp1 = H; $async$goto = 7; return P._asyncAwait(t1.downloadAsString$1("https://fonts.googleapis.com/css2?family=" + H.stringReplaceAllUnchecked(t2, " ", "+")), $async$ensureResolved$0); case 7: // returning from await. $async$self.resolvedFont = $async$temp1._makeResolvedNotoFontFromCss($async$result, t2); $async$self._decodingCompleter.complete$0(0); // goto join $async$goto = 5; break; case 6: // else $async$goto = 8; return P._asyncAwait(t1.future, $async$ensureResolved$0); case 8: // returning from await. case 5: // join case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$ensureResolved$0, $async$completer); }, get$name: function(receiver) { return this.name; } }; H.CodeunitRange.prototype = { $eq: function(_, other) { if (other == null) return false; if (!(other instanceof H.CodeunitRange)) return false; return other.start === this.start && other.end === this.end; }, get$hashCode: function(_) { return P.hashValues(this.start, this.end, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "[" + this.start + ", " + this.end + "]"; } }; H._ResolvedNotoFont.prototype = { get$name: function(receiver) { return this.name; } }; H._ResolvedNotoSubset.prototype = { toString$0: function(_) { return "_ResolvedNotoSubset(" + this.family + ", " + this.url + ")"; } }; H.FallbackFontDownloadQueue.prototype = { add$1: function(_, subset) { var t1, firstInBatch, _this = this; if (_this.downloadedSubsets.contains$1(0, subset) || _this.pendingSubsets.containsKey$1(0, subset.url)) return; t1 = _this.pendingSubsets; firstInBatch = t1.get$isEmpty(t1); t1.$indexSet(0, subset.url, subset); if (firstInBatch) P.Timer_Timer(C.Duration_0, _this.get$startDownloads()); }, startDownloads$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, t2, t3, t4, downloadOrder, _i, url, t1, downloads, downloadedData; var $async$startDownloads$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; downloads = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_void); downloadedData = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Uint8List); for (t1 = $async$self.pendingSubsets, t2 = t1.get$values(t1), t2 = t2.get$iterator(t2), t3 = type$.void; t2.moveNext$0();) { t4 = t2.get$current(t2); downloads.$indexSet(0, t4.url, P.Future_Future(new H.FallbackFontDownloadQueue_startDownloads_closure($async$self, t4, downloadedData), t3)); } $async$goto = 2; return P._asyncAwait(P.Future_wait(downloads.get$values(downloads), t3), $async$startDownloads$0); case 2: // returning from await. t2 = downloadedData.get$keys(downloadedData); t2 = P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")); C.JSArray_methods.sort$0(t2); t3 = H._arrayInstanceType(t2)._eval$1("ReversedListIterable<1>"); downloadOrder = P.List_List$of(new H.ReversedListIterable(t2, t3), true, t3._eval$1("ListIterable.E")); t2 = downloadOrder.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } url = downloadOrder[_i]; t3 = t1.remove$1(0, url); t3.toString; t4 = downloadedData.$index(0, url); t4.toString; $.$get$FontFallbackData__instance().registerFallbackFont$2(t3.family, t4); $async$goto = t1.get$isEmpty(t1) ? 6 : 7; break; case 6: // then t3 = $._skiaFontCollection.ensureFontsLoaded$0(); $async$self._fontsLoading = t3; $async$handler = 8; $async$goto = 11; return P._asyncAwait(t3, $async$startDownloads$0); case 11: // returning from await. $async$next.push(10); // goto finally $async$goto = 9; break; case 8: // uncaught $async$next = [1]; case 9: // finally $async$handler = 1; $async$self._fontsLoading = null; // goto the next finally handler $async$goto = $async$next.pop(); break; case 10: // after finally H.sendFontChangeMessage(); case 7: // join case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$goto = t1.get$isNotEmpty(t1) ? 12 : 13; break; case 12: // then $async$goto = 14; return P._asyncAwait($async$self.startDownloads$0(), $async$startDownloads$0); case 14: // returning from await. case 13: // join // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$startDownloads$0, $async$completer); } }; H.FallbackFontDownloadQueue_startDownloads_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, t1, exception, t2, buffer, $async$exception; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start buffer = null; $async$handler = 4; t1 = $async$self.subset; $async$goto = 7; return P._asyncAwait($async$self.$this.downloader.downloadAsBytes$2$debugDescription(t1.url, t1.family), $async$call$0); case 7: // returning from await. buffer = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = H.unwrapException($async$exception); t1 = $async$self.subset; t2 = t1.url; $async$self.$this.pendingSubsets.remove$1(0, t2); $.$get$printWarning().call$1("Failed to load font " + t1.family + " at " + t2); $.$get$printWarning().call$1(J.toString$0$(e)); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally t1 = $async$self.subset; $async$self.$this.downloadedSubsets.add$1(0, t1); $async$self.downloadedData.$indexSet(0, t1.url, J.asUint8List$0$x(buffer)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 93 }; H.NotoDownloader.prototype = { downloadAsBytes$2$debugDescription: function(url, debugDescription) { var result = C.Window_methods.fetch$1(window, url).then$1$1(0, new H.NotoDownloader_downloadAsBytes_closure(), type$.ByteBuffer); return result; }, downloadAsString$1: function(url) { var result = C.Window_methods.fetch$1(window, url).then$1$1(0, new H.NotoDownloader_downloadAsString_closure(), type$.String); return result; } }; H.NotoDownloader_downloadAsBytes_closure.prototype = { call$1: function(fetchResult) { return J.then$1$1$x(J.arrayBuffer$0$x(fetchResult), new H.NotoDownloader_downloadAsBytes__closure(), type$.ByteBuffer); }, $signature: 2026 }; H.NotoDownloader_downloadAsBytes__closure.prototype = { call$1: function(x) { return type$.ByteBuffer._as(x); }, $signature: 579 }; H.NotoDownloader_downloadAsString_closure.prototype = { call$1: function(response) { return J.then$1$1$x(J.text$0$x(response), new H.NotoDownloader_downloadAsString__closure(), type$.String); }, $signature: 2223 }; H.NotoDownloader_downloadAsString__closure.prototype = { call$1: function(x) { return H._asStringS(x); }, $signature: 2434 }; H.SkiaFontCollection.prototype = { ensureFontsLoaded$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3, _i, font, t4, t5; var $async$ensureFontsLoaded$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self._loadFonts$0(), $async$ensureFontsLoaded$0); case 2: // returning from await. t1 = $async$self.fontProvider; if (t1 != null) { J.delete$0$x(t1); $async$self.fontProvider = null; } t1 = $.__canvasKit; $async$self.fontProvider = J.Make$0$x(J.get$TypefaceFontProvider$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1)); t1 = $async$self.familyToTypefaceMap; t1.clear$0(0); for (t2 = $async$self._registeredFonts, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; t4 = $async$self.fontProvider; t4.toString; t5 = font.family; J.registerFont$2$x(t4, font.bytes, t5); J.add$1$ax(t1.putIfAbsent$2(0, t5, new H.SkiaFontCollection_ensureFontsLoaded_closure()), font.typeface); } for (t2 = $.$get$FontFallbackData__instance().registeredFallbackFonts, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; t4 = $async$self.fontProvider; t4.toString; t5 = font.family; J.registerFont$2$x(t4, font.bytes, t5); J.add$1$ax(t1.putIfAbsent$2(0, t5, new H.SkiaFontCollection_ensureFontsLoaded_closure0()), font.typeface); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$ensureFontsLoaded$0, $async$completer); }, _loadFonts$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t2, t3, t4, t1, $async$temp1; var $async$_loadFonts$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._unloadedFonts; if (t1.length === 0) { // goto return $async$goto = 1; break; } $async$temp1 = J; $async$goto = 3; return P._asyncAwait(P.Future_wait(t1, type$.nullable__RegisteredFont), $async$_loadFonts$0); case 3: // returning from await. t2 = $async$temp1.get$iterator$ax($async$result), t3 = $async$self._registeredFonts; case 4: // for condition if (!t2.moveNext$0()) { // goto after for $async$goto = 5; break; } t4 = t2.get$current(t2); if (t4 != null) t3.push(t4); // goto for condition $async$goto = 4; break; case 5: // after for C.JSArray_methods.set$length(t1, 0); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_loadFonts$0, $async$completer); }, registerFonts$1: function(assetManager) { return this.registerFonts$body$SkiaFontCollection(assetManager); }, registerFonts$body$SkiaFontCollection: function(assetManager) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, t1, fontManifest, t2, registeredRoboto, t3, t4, t5, fontAssets, byteData, $async$exception; var $async$registerFonts$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start byteData = null; $async$handler = 4; $async$goto = 7; return P._asyncAwait(assetManager.load$1(0, "FontManifest.json"), $async$registerFonts$1); case 7: // returning from await. byteData = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (t1 instanceof H.AssetManagerException) { e = t1; if (e.httpStatus === 404) { $.$get$printWarning().call$1("Font manifest does not exist at `" + H.S(e.url) + "` \u2013 ignoring."); // goto return $async$goto = 1; break; } else throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally fontManifest = C.C_JsonCodec.decode$1(0, C.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(byteData)))); if (fontManifest == null) throw H.wrapException(P.AssertionError$(string$.There_w)); for (t1 = J.cast$1$0$ax(fontManifest, type$.Map_String_dynamic), t1 = t1.get$iterator(t1), t2 = $async$self._unloadedFonts, registeredRoboto = false; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = J.getInterceptor$asx(t3); t5 = t4.$index(t3, "family"); t5.toString; fontAssets = t4.$index(t3, "fonts"); if (t5 === "Roboto") registeredRoboto = true; for (t3 = J.get$iterator$ax(fontAssets); t3.moveNext$0();) t2.push($async$self._registerFont$2(assetManager.getAssetUrl$1(J.$index$asx(t3.get$current(t3), "asset")), t5)); } if (!registeredRoboto) t2.push($async$self._registerFont$2("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", "Roboto")); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$registerFonts$1, $async$completer); }, _registerFont$2: function(url, family) { return this._registerFont$body$SkiaFontCollection(url, family); }, _registerFont$body$SkiaFontCollection: function(url, family) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable__RegisteredFont), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, bytes, t1, typeface, buffer, $async$exception; var $async$_registerFont$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start buffer = null; $async$handler = 4; $async$goto = 7; return P._asyncAwait(C.Window_methods.fetch$1(window, url).then$1$1(0, $async$self.get$_getArrayBuffer(), type$.ByteBuffer), $async$_registerFont$2); case 7: // returning from await. buffer = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = H.unwrapException($async$exception); $.$get$printWarning().call$1("Failed to load font " + H.S(family) + " at " + H.S(url)); $.$get$printWarning().call$1(J.toString$0$(e)); $async$returnValue = null; // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally bytes = J.asUint8List$0$x(buffer); t1 = $.__canvasKit; typeface = J.MakeTypefaceFromData$1$x(J.RefDefault$0$x(J.get$FontMgr$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1)), bytes); if (typeface != null) { $async$returnValue = H._RegisteredFont$(bytes, family, typeface); // goto return $async$goto = 1; break; } else { $.$get$printWarning().call$1("Failed to load font " + H.S(family) + " at " + H.S(url)); $.$get$printWarning().call$1("Verify that " + H.S(url) + " contains a valid font."); $async$returnValue = null; // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_registerFont$2, $async$completer); }, _getArrayBuffer$1: function(fetchResult) { return J.then$1$1$x(J.arrayBuffer$0$x(fetchResult), new H.SkiaFontCollection__getArrayBuffer_closure(), type$.ByteBuffer); } }; H.SkiaFontCollection_ensureFontsLoaded_closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_SkTypeface); }, $signature: 461 }; H.SkiaFontCollection_ensureFontsLoaded_closure0.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_SkTypeface); }, $signature: 461 }; H.SkiaFontCollection__getArrayBuffer_closure.prototype = { call$1: function(x) { return type$.ByteBuffer._as(x); }, $signature: 579 }; H._RegisteredFont.prototype = {}; H.ImageCodecException.prototype = { toString$0: function(_) { return "ImageCodecException: " + this.__engine$_message; }, $isException: 1 }; H.httpRequestFactory_closure.prototype = { call$0: function() { return new XMLHttpRequest(); }, $signature: 2855 }; H.skiaInstantiateWebImageCodec_closure.prototype = { call$1: function($event) { var t2, t1 = $event.loaded; t1.toString; t2 = $event.total; t2.toString; this.chunkCallback.call$2(t1, t2); }, $signature: 175 }; H.skiaInstantiateWebImageCodec_closure0.prototype = { call$1: function($event) { this.completer.completeError$1(new H.ImageCodecException(string$.Failed + H.S(this.url) + "\nTrying to load an image from another domain? Find answers at:\nhttps://flutter.dev/docs/development/platform-integration/web-images")); }, $signature: 175 }; H.skiaInstantiateWebImageCodec_closure1.prototype = { call$1: function($event) { var list, codec, error, stackTrace, accepted, unknownRedirect, exception, _this = this, t1 = _this.request, t2 = t1.status; t2.toString; accepted = t2 >= 200 && t2 < 300; unknownRedirect = t2 > 307 && t2 < 400; if (!(accepted || t2 === 0 || t2 === 304 || unknownRedirect)) { _this.completer.completeError$1(new H.ImageCodecException(string$.Failed + H.S(_this.url) + "\nServer response code: " + t2)); return; } try { list = J.asUint8List$2$x(type$.ByteBuffer._as(W._convertNativeToDart_XHR_Response(t1.response)), 0, null); codec = H.CkAnimatedImage$decodeFromBytes(list, _this.url); _this.completer.complete$1(0, codec); } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); _this.completer.completeError$2(error, stackTrace); } }, $signature: 175 }; H.CkAnimatedImage.prototype = { createDefault$0: function() { var animatedImage, t1 = $.__canvasKit; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("canvasKit")); animatedImage = J.MakeAnimatedImageFromEncoded$1$x(t1, this._bytes); if (animatedImage == null) throw H.wrapException(H.ImageCodecException$("Failed to decode image data.\nImage source: " + H.S(this.src))); return animatedImage; }, resurrect$0: function() { return this.createDefault$0(); }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, dispose$0: function(_) { this._disposed = true; this.delete$0(0); }, get$frameCount: function() { return J.getFrameCount$0$x(this.get$skiaObject()); }, get$repetitionCount: function() { return J.getRepetitionCount$0$x(this.get$skiaObject()); }, getNextFrame$0: function() { return P.Future_Future$value(new H.AnimatedImageFrameInfo(P.Duration$(0, 0, 0, J.decodeNextFrame$0$x(this.get$skiaObject()), 0, 0), H.CkImage$(J.getCurrentFrame$0$x(this.get$skiaObject()))), type$.FrameInfo); }, $isCodec: 1 }; H.CkImage.prototype = { CkImage$1: function(skImage) { var t1, t2, t3, originalBytes, _this = this, _s9_ = "canvasKit"; if ($.$get$browserSupportsFinalizationRegistry()) { t1 = new H.SkiaObjectBox(P.LinkedHashSet_LinkedHashSet$_empty(type$.CkImage), null, type$.SkiaObjectBox_CkImage_SkImage); t1.__engine$_initialize$2(_this, skImage); t2 = $.$get$Collector__instance(); t3 = t1._skDeletable; t3.toString; t2.register$2(0, t1, t3); _this.set$box(t1); } else { t1 = $.__canvasKit; t1 = J.get$Premul$x(J.get$AlphaType$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1)); t2 = $.__canvasKit; t2 = J.get$RGBA_8888$x(J.get$ColorType$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2)); originalBytes = H.CkImage__encodeImage(t1, self.window.flutterCanvasKit.ColorSpace.SRGB, t2, C.ImageByteFormat_0, skImage); if (originalBytes == null) { $.$get$printWarning().call$1("Unable to encode image to bytes. We will not be able to resurrect it once it has been garbage collected."); return; } t1 = J.getInterceptor$x(skImage); t1 = new H.SkiaObjectBox(P.LinkedHashSet_LinkedHashSet$_empty(type$.CkImage), new H.CkImage_closure(t1.width$0(skImage), t1.height$0(skImage), originalBytes), type$.SkiaObjectBox_CkImage_SkImage); t1.__engine$_initialize$2(_this, skImage); H.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, t1); _this.set$box(t1); } }, CkImage$cloneOf$1: function(box) { ++this.get$box()._refCount; }, get$box: function() { var t1 = this.__CkImage_box; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("box")) : t1; }, set$box: function(t1) { if (this.__CkImage_box === $) this.__CkImage_box = t1; else throw H.wrapException(H.LateError$fieldAI("box")); }, dispose$0: function(_) { var t1, t2; this._disposed = true; t1 = this.get$box(); if (--t1._refCount === 0) { t2 = t1._skDeletable; if (t2 != null) if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().collect$1(t2); else { t1.delete$0(0); t1.didDelete$0(); } t1._resurrector = t1._skDeletable = t1.rawSkiaObject = null; t1._isDeletedPermanently = true; } }, clone$0: function(_) { var t1 = new H.CkImage(this.get$box()); ++t1.get$box()._refCount; return t1; }, isCloneOf$1: function(other) { return other instanceof H.CkImage && J.isAliasOf$1$x(other.get$box().get$skiaObject(), this.get$box().get$skiaObject()); }, get$width: function(_) { return J.width$0$x(this.get$box().get$skiaObject()); }, get$height: function(_) { return J.height$0$x(this.get$box().get$skiaObject()); }, toString$0: function(_) { return "[" + H.S(J.width$0$x(this.get$box().get$skiaObject())) + "\xd7" + H.S(J.height$0$x(this.get$box().get$skiaObject())) + "]"; } }; H.CkImage_closure.prototype = { call$0: function() { var t3, t4, _s9_ = "canvasKit", t1 = $.__canvasKit, t2 = t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1; t1 = J.get$Premul$x(J.get$AlphaType$x(t1)); t3 = $.__canvasKit; t3 = J.get$RGBA_8888$x(J.get$ColorType$x(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3)); t4 = this.originalWidth; return J.MakeImage$3$x(t2, {width: t4, height: this.originalHeight, alphaType: t1, colorSpace: self.window.flutterCanvasKit.ColorSpace.SRGB, colorType: t3}, J.asUint8List$0$x(J.get$buffer$x(this.originalBytes)), 4 * t4); }, $signature: 901 }; H.AnimatedImageFrameInfo.prototype = { get$duration: function(_) { return this.__engine$_duration; }, get$image: function(_) { return this.__engine$_image; }, $isFrameInfo: 1 }; H.initializeCanvasKit__loadSubscription_set.prototype = { call$1: function(t1) { return this._box_0._loadSubscription = t1; }, $signature: 733 }; H.initializeCanvasKit__loadSubscription_get.prototype = { call$0: function() { var t1 = this._box_0._loadSubscription; return t1 === $ ? H.throwExpression(H.LateError$localNI("loadSubscription")) : t1; }, $signature: 722 }; H.initializeCanvasKit_closure.prototype = { call$1: function(_) { J.cancel$0$z(this._loadSubscription_get.call$0()); J.then$1$x(self.window.CanvasKitInit({locateFile: P.allowInterop(new H.initializeCanvasKit__closure())}), P.allowInterop(new H.initializeCanvasKit__closure0(this.canvasKitCompleter))); }, $signature: 66 }; H.initializeCanvasKit__closure.prototype = { call$2: function(file, unusedBase) { return C.JSString_methods.$add("https://unpkg.com/canvaskit-wasm@0.25.1/bin/profiling/", file); }, "call*": "call$2", $requiredArgCount: 2, $signature: 644 }; H.initializeCanvasKit__closure0.prototype = { call$1: function(ck) { $.__canvasKit = ck; self.window.flutterCanvasKit = ck === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : ck; this.canvasKitCompleter.complete$0(0); }, $signature: 1260 }; H.IntervalTree.prototype = {}; H.IntervalTree_IntervalTree$createFromRanges_closure.prototype = { call$2: function(key, rangeList) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(rangeList), t2 = this.intervals, t3 = this.T._eval$1("IntervalTreeNode<0>"); t1.moveNext$0();) { t4 = t1.get$current(t1); t5 = t4.start; t4 = t4.end; t2.push(new H.IntervalTreeNode(key, t5, t4, t4, t3)); } }, $signature: function() { return this.T._eval$1("~(0,List)"); } }; H.IntervalTree_IntervalTree$createFromRanges_closure0.prototype = { call$2: function(a, b) { return a.low - b.low; }, $signature: function() { return this.T._eval$1("int(IntervalTreeNode<0>,IntervalTreeNode<0>)"); } }; H.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree.prototype = { call$1: function(nodes) { var mid, root, t1 = nodes.length; if (t1 === 0) return null; if (t1 === 1) return C.JSArray_methods.get$single(nodes); mid = t1 / 2 | 0; root = nodes[mid]; root.left = this.call$1(C.JSArray_methods.sublist$2(nodes, 0, mid)); root.right = this.call$1(C.JSArray_methods.sublist$1(nodes, mid + 1)); return root; }, $signature: function() { return this.T._eval$1("IntervalTreeNode<0>?(List>)"); } }; H.IntervalTree_IntervalTree$createFromRanges__computeHigh.prototype = { call$1: function(root) { var t3, _this = this, t1 = root.left, t2 = t1 == null; if (t2 && root.right == null) root.computedHigh = root.high; else if (t2) { t1 = root.right; t1.toString; _this.call$1(t1); root.computedHigh = Math.max(root.high, root.right.computedHigh); } else { t2 = root.right; t3 = root.high; if (t2 == null) { _this.call$1(t1); root.computedHigh = Math.max(t3, root.left.computedHigh); } else { _this.call$1(t2); t1 = root.left; t1.toString; _this.call$1(t1); root.computedHigh = Math.max(t3, Math.max(root.left.computedHigh, root.right.computedHigh)); } } }, $signature: function() { return this.T._eval$1("~(IntervalTreeNode<0>)"); } }; H.IntervalTreeNode.prototype = { containsShallow$1: function(x) { return this.low <= x && x <= this.high; }, containsDeep$1: function(x) { var t1, _this = this; if (x > _this.computedHigh) return false; if (_this.containsShallow$1(x)) return true; t1 = _this.left; if ((t1 == null ? null : t1.containsDeep$1(x)) === true) return true; if (x < _this.low) return false; t1 = _this.right; return (t1 == null ? null : t1.containsDeep$1(x)) === true; }, searchForPoint$2: function(x, result) { var t1, _this = this; if (x > _this.computedHigh) return; t1 = _this.left; if (t1 != null) t1.searchForPoint$2(x, result); if (_this.containsShallow$1(x)) result.push(_this.value); if (x < _this.low) return; t1 = _this.right; if (t1 != null) t1.searchForPoint$2(x, result); }, get$value: function(receiver) { return this.value; } }; H.Layer.prototype = {}; H.PrerollContext.prototype = {}; H.PaintContext.prototype = {}; H.ContainerLayer.prototype = { add$1: function(_, child) { child.parent = this; this._layers.push(child); }, preroll$2: function(prerollContext, matrix) { this.paintBounds = this.prerollChildren$2(prerollContext, matrix); }, prerollChildren$2: function(context, childMatrix) { var t1, t2, childPaintBounds, _i, layer, t3; for (t1 = this._layers, t2 = t1.length, childPaintBounds = C.Rect_0_0_0_0, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { layer = t1[_i]; layer.preroll$2(context, childMatrix); if (childPaintBounds.left >= childPaintBounds.right || childPaintBounds.top >= childPaintBounds.bottom) childPaintBounds = layer.paintBounds; else { t3 = layer.paintBounds; if (!(t3.left >= t3.right || t3.top >= t3.bottom)) childPaintBounds = childPaintBounds.expandToInclude$1(t3); } } return childPaintBounds; }, paintChildren$1: function(context) { var t1, t2, _i, layer, t3; for (t1 = this._layers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { layer = t1[_i]; t3 = layer.paintBounds; if (!(t3.left >= t3.right || t3.top >= t3.bottom)) layer.paint$1(context); } } }; H.RootLayer.prototype = { paint$1: function(context) { this.paintChildren$1(context); } }; H.ClipPathEngineLayer.prototype = { preroll$2: function(context, matrix) { var childPaintBounds, clipBounds, _null = null, t1 = this.__engine$_clipPath, t2 = context.mutatorsStack._mutators; t2.push(new H.Mutator(C.MutatorType_2, _null, _null, t1, _null, _null)); childPaintBounds = this.prerollChildren$2(context, matrix); clipBounds = H.fromSkRect(J.getBounds$0$x(t1.get$skiaObject())); if (childPaintBounds.overlaps$1(clipBounds)) this.paintBounds = childPaintBounds.intersect$1(clipBounds); t2.pop(); }, paint$1: function(paintContext) { var t2, _this = this, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_clipBehavior; t1.clipPath$2(0, _this.__engine$_clipPath, t2 !== C.Clip_1); t2 = t2 === C.Clip_3; if (t2) t1.saveLayer$2(0, _this.paintBounds, null); _this.paintChildren$1(paintContext); if (t2) t1.restore$0(0); t1.restore$0(0); }, $isClipPathEngineLayer0: 1 }; H.ClipRectEngineLayer.prototype = { preroll$2: function(context, matrix) { var childPaintBounds, _null = null, t1 = this.__engine$_clipRect, t2 = context.mutatorsStack._mutators; t2.push(new H.Mutator(C.MutatorType_0, t1, _null, _null, _null, _null)); childPaintBounds = this.prerollChildren$2(context, matrix); if (childPaintBounds.overlaps$1(t1)) this.paintBounds = childPaintBounds.intersect$1(t1); t2.pop(); }, paint$1: function(paintContext) { var t2, t3, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = this.__engine$_clipRect; t3 = this.__engine$_clipBehavior; t1.clipRect$3(0, t2, C.ClipOp_1, t3 !== C.Clip_1); t3 = t3 === C.Clip_3; if (t3) t1.saveLayer$2(0, t2, null); this.paintChildren$1(paintContext); if (t3) t1.restore$0(0); t1.restore$0(0); }, $isClipRectEngineLayer0: 1 }; H.ClipRRectEngineLayer.prototype = { preroll$2: function(context, matrix) { var childPaintBounds, t3, t4, t5, _null = null, t1 = this.__engine$_clipRRect, t2 = context.mutatorsStack._mutators; t2.push(new H.Mutator(C.MutatorType_1, _null, t1, _null, _null, _null)); childPaintBounds = this.prerollChildren$2(context, matrix); t3 = t1.left; t4 = t1.top; t5 = t1.right; t1 = t1.bottom; if (childPaintBounds.overlaps$1(new P.Rect(t3, t4, t5, t1))) this.paintBounds = childPaintBounds.intersect$1(new P.Rect(t3, t4, t5, t1)); t2.pop(); }, paint$1: function(paintContext) { var t2, _this = this, t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_clipBehavior; t1.clipRRect$2(0, _this.__engine$_clipRRect, t2 !== C.Clip_1); t2 = t2 === C.Clip_3; if (t2) t1.saveLayer$2(0, _this.paintBounds, null); _this.paintChildren$1(paintContext); if (t2) t1.restore$0(0); t1.restore$0(0); }, $isClipRRectEngineLayer0: 1 }; H.OpacityEngineLayer.prototype = { preroll$2: function(context, matrix) { var t1, t2, t3, t4, _this = this, _null = null, childMatrix = new H.Matrix40(new Float32Array(16)); childMatrix.setFrom$1(matrix); t1 = _this.__engine$_offset; t2 = t1._dx; t1 = t1._dy; childMatrix.translate$2(0, t2, t1); t3 = H.Matrix4$identity(); t3.setTranslationRaw$3(t2, t1, 0); t4 = context.mutatorsStack._mutators; t4.push(H.Mutator$transform(t3)); t4.push(new H.Mutator(C.MutatorType_4, _null, _null, _null, _null, _this.__engine$_alpha)); _this.super$ContainerLayer$preroll(context, childMatrix); t4.pop(); t4.pop(); _this.paintBounds = _this.paintBounds.translate$2(0, t2, t1); }, paint$1: function(paintContext) { var t1, t2, t3, _this = this, paint = H.CkPaint$(); paint.set$color(0, P.Color$fromARGB(_this.__engine$_alpha, 0, 0, 0)); t1 = paintContext.internalNodesCanvas; t1.save$0(0); t2 = _this.__engine$_offset; t3 = t2._dx; t2 = t2._dy; t1.translate$2(0, t3, t2); t1.saveLayer$2(0, _this.paintBounds.shift$1(new P.Offset(-t3, -t2)), paint); _this.paintChildren$1(paintContext); t1.restore$0(0); t1.restore$0(0); }, $isOpacityEngineLayer0: 1 }; H.TransformEngineLayer.prototype = { preroll$2: function(context, matrix) { var t1 = this.__engine$_transform, childMatrix = matrix.$mul(0, t1), t2 = context.mutatorsStack._mutators; t2.push(H.Mutator$transform(t1)); this.paintBounds = H.transformRect(t1, this.prerollChildren$2(context, childMatrix)); t2.pop(); }, paint$1: function(paintContext) { var t1 = paintContext.internalNodesCanvas; t1.save$0(0); t1.transform$1(0, this.__engine$_transform.__engine$_m4storage); this.paintChildren$1(paintContext); t1.restore$0(0); }, $isTransformEngineLayer0: 1 }; H.OffsetEngineLayer.prototype = {$isOffsetEngineLayer0: 1}; H.PictureLayer0.prototype = { preroll$2: function(prerollContext, matrix) { this.paintBounds = this.picture.cullRect.shift$1(this.offset); }, paint$1: function(paintContext) { var t1; paintContext.leafNodesCanvas.save$0(0); t1 = this.offset; paintContext.leafNodesCanvas.translate$2(0, t1._dx, t1._dy); paintContext.leafNodesCanvas.drawPicture$1(0, this.picture); paintContext.leafNodesCanvas.restore$0(0); } }; H.PhysicalShapeEngineLayer.prototype = { preroll$2: function(prerollContext, matrix) { var t1, _this = this; _this.prerollChildren$2(prerollContext, matrix); t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); _this.paintBounds = H.computeSkShadowBounds(_this.__engine$_path, _this.__engine$_elevation, t1, matrix); }, paint$1: function(paintContext) { var t2, t3, t4, paint, saveCount, _this = this, t1 = _this.__engine$_elevation; if (t1 !== 0) { t2 = paintContext.leafNodesCanvas; t2.toString; t3 = _this.__engine$_shadowColor; t3.toString; t4 = _this.__engine$_color; t2.drawShadow$4(0, _this.__engine$_path, t3, t1, (t4.get$value(t4) >>> 24 & 255) !== 255); } paint = H.CkPaint$(); paint.set$color(0, _this.__engine$_color); t1 = _this.__engine$_clipBehavior; t2 = t1 === C.Clip_3; if (!t2) paintContext.leafNodesCanvas.drawPath$2(0, _this.__engine$_path, paint); t3 = paintContext.internalNodesCanvas; saveCount = t3.save$0(0); switch (t1) { case C.Clip_1: t3.clipPath$2(0, _this.__engine$_path, false); break; case C.Clip_2: t3.clipPath$2(0, _this.__engine$_path, true); break; case C.Clip_3: t3.clipPath$2(0, _this.__engine$_path, true); t3.saveLayer$2(0, _this.paintBounds, null); break; case C.Clip_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (t2) paintContext.leafNodesCanvas.drawPaint$1(0, paint); _this.paintChildren$1(paintContext); t3.restoreToCount$1(0, saveCount); }, $isPhysicalShapeEngineLayer0: 1 }; H.PlatformViewLayer0.prototype = { preroll$2: function(context, matrix) { var _this = this, t1 = _this.offset, t2 = t1._dx, t3 = t1._dy, t4 = _this.width, t5 = _this.height; _this.paintBounds = new P.Rect(t2, t3, t2 + t4, t3 + t5); t3 = context.viewEmbedder; t3.toString; t3.prerollCompositeEmbeddedView$2(_this.viewId, new H.EmbeddedViewParams(t1, new P.Size(t4, t5), new H.MutatorsStack(P.List_List$from(context.mutatorsStack._mutators, true, type$.Mutator)))); }, paint$1: function(context) { context.leafNodesCanvas = context.viewEmbedder.compositeEmbeddedView$1(this.viewId); } }; H.LayerScene.prototype = { dispose$0: function(_) { } }; H.LayerSceneBuilder.prototype = { get$currentLayer: function() { var t1 = this.__LayerSceneBuilder_currentLayer; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("currentLayer")) : t1; }, addPerformanceOverlay$2: function(enabledOptions, bounds) { throw H.wrapException(P.UnimplementedError$(null)); }, addPicture$4$isComplexHint$willChangeHint: function(offset, picture, isComplexHint, willChangeHint) { var t1 = this.get$currentLayer(), t2 = new H.PictureLayer0(type$.CkPicture._as(picture), offset, C.Rect_0_0_0_0); t1.toString; t2.parent = t1; t1._layers.push(t2); }, addRetained$1: function(retainedLayer) { var t1 = this.get$currentLayer(); type$.Layer._as(retainedLayer); t1.toString; retainedLayer.parent = t1; t1._layers.push(retainedLayer); }, addPlatformView$4$height$offset$width: function(viewId, height, offset, width) { var t1 = this.get$currentLayer(), t2 = new H.PlatformViewLayer0(viewId, offset, width, height, C.Rect_0_0_0_0); t1.toString; t2.parent = t1; t1._layers.push(t2); }, build$0: function(_) { return new H.LayerScene(new H.LayerTree(this.rootLayer, $.$get$window().get$physicalSize())); }, pop$0: function(_) { var t1, _this = this; if (_this.get$currentLayer() === _this.rootLayer) return; t1 = _this.get$currentLayer().parent; t1.toString; _this.__LayerSceneBuilder_currentLayer = t1; }, pushClipPath$3$clipBehavior$oldLayer: function(path, clipBehavior, oldLayer) { return this.pushLayer$1(new H.ClipPathEngineLayer(type$.CkPath._as(path), clipBehavior, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushClipRRect$3$clipBehavior$oldLayer: function(rrect, clipBehavior, oldLayer) { return this.pushLayer$1(new H.ClipRRectEngineLayer(rrect, clipBehavior, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushClipRect$3$clipBehavior$oldLayer: function(rect, clipBehavior, oldLayer) { return this.pushLayer$1(new H.ClipRectEngineLayer(rect, clipBehavior, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushOffset$3$oldLayer: function(dx, dy, oldLayer) { var t1 = H.Matrix4$identity(); t1.setTranslationRaw$3(dx, dy, 0); return this.pushLayer$1(new H.OffsetEngineLayer(t1, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushOpacity$3$offset$oldLayer: function(alpha, offset, oldLayer) { return this.pushLayer$1(new H.OpacityEngineLayer(alpha, offset, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor: function(clipBehavior, color, elevation, oldLayer, path, shadowColor) { return this.pushLayer$1(new H.PhysicalShapeEngineLayer(elevation, color, shadowColor, type$.CkPath._as(path), clipBehavior, H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, pushTransform$2$oldLayer: function(matrix4, oldLayer) { return this.pushLayer$1(new H.TransformEngineLayer(new H.Matrix40(H.toMatrix32(matrix4)), H.setRuntimeTypeInfo([], type$.JSArray_Layer), C.Rect_0_0_0_0)); }, setCheckerboardOffscreenLayers$1: function(checkerboard) { }, setCheckerboardRasterCacheImages$1: function(checkerboard) { }, setRasterizerTracingThreshold$1: function(frameInterval) { }, pushLayer$1$1: function(layer) { var t1 = this.get$currentLayer(); t1.toString; layer.parent = t1; t1._layers.push(layer); return this.__LayerSceneBuilder_currentLayer = layer; }, pushLayer$1: function(layer) { return this.pushLayer$1$1(layer, type$.ContainerLayer); } }; H.LayerTree.prototype = { paint$2$ignoreRasterCache: function(frame, ignoreRasterCache) { var t3, overlayCanvases, i, t4, t5, t1 = H.setRuntimeTypeInfo([], type$.JSArray_nullable_CkCanvas), t2 = frame.canvas; t1.push(t2); t3 = frame.viewEmbedder; overlayCanvases = t3.getCurrentCanvases$0(); for (i = 0; i < overlayCanvases.length; ++i) t1.push(overlayCanvases[i]); t4 = this.rootLayer; t5 = t4.paintBounds; if (!t5.get$isEmpty(t5)) t4.paintChildren$1(new H.PaintContext(new H.CkNWayCanvas(t1), t2, t3)); } }; H.Frame.prototype = { raster$2$ignoreRasterCache: function(layerTree, ignoreRasterCache) { H.timeAction("preroll_frame", new H.Frame_raster_closure(this, layerTree, true)); H.timeAction("apply_frame", new H.Frame_raster_closure0(this, layerTree, true)); return true; } }; H.Frame_raster_closure.prototype = { call$0: function() { var t1 = this.layerTree.rootLayer; t1.paintBounds = t1.prerollChildren$2(new H.PrerollContext(this.$this.viewEmbedder, new H.MutatorsStack(H.setRuntimeTypeInfo([], type$.JSArray_Mutator))), H.Matrix4$identity()); }, $signature: 0 }; H.Frame_raster_closure0.prototype = { call$0: function() { this.layerTree.paint$2$ignoreRasterCache(this.$this, this.ignoreRasterCache); }, $signature: 0 }; H.CompositorContext.prototype = {}; H.CkMaskFilter.prototype = { createDefault$0: function() { return this._initSkiaObject$0(); }, resurrect$0: function() { return this._initSkiaObject$0(); }, _initSkiaObject$0: function() { var t1 = $.__canvasKit; return J.MakeBlur$3$x(J.get$MaskFilter$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1), $.$get$_skBlurStyles()[this._blurStyle.index], this.__engine$_sigma, true); }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } }; H.CkNWayCanvas.prototype = { save$0: function(_) { var t1, saveCount, i; for (t1 = this._canvases, saveCount = 0, i = 0; i < t1.length; ++i) saveCount = t1[i].save$0(0); return saveCount; }, saveLayer$2: function(_, bounds, paint) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].saveLayer$2(0, bounds, paint); }, restore$0: function(_) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].restore$0(0); }, restoreToCount$1: function(_, count) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].restoreToCount$1(0, count); }, translate$2: function(_, dx, dy) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].translate$2(0, dx, dy); }, transform$1: function(_, matrix) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].transform$1(0, matrix); }, clipPath$2: function(_, path, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipPath$2(0, path, doAntiAlias); }, clipRect$3: function(_, rect, clipOp, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipRect$3(0, rect, clipOp, doAntiAlias); }, clipRRect$2: function(_, rrect, doAntiAlias) { var t1, i; for (t1 = this._canvases, i = 0; i < t1.length; ++i) t1[i].clipRRect$2(0, rrect, doAntiAlias); } }; H.CkPaint.prototype = { set$blendMode: function(value) { if (this._blendMode == value) return; this._blendMode = value; J.setBlendMode$1$x(this.get$skiaObject(), $.$get$_skBlendModes()[value.index]); }, set$style: function(_, value) { if (this._style === value) return; this._style = value; J.setStyle$1$x(this.get$skiaObject(), $.$get$_skPaintStyles()[value.index]); }, set$strokeWidth: function(value) { if (this._strokeWidth == value) return; this._strokeWidth = value; J.setStrokeWidth$1$x(this.get$skiaObject(), value); }, set$strokeCap: function(value) { if (this._strokeCap === value) return; this._strokeCap = value; J.setStrokeCap$1$x(this.get$skiaObject(), $.$get$_skStrokeCaps()[value.index]); }, set$strokeJoin: function(value) { if (this._strokeJoin === value) return; this._strokeJoin = value; J.setStrokeJoin$1$x(this.get$skiaObject(), $.$get$_skStrokeJoins()[value.index]); }, set$isAntiAlias: function(value) { if (this._isAntiAlias === value) return; this._isAntiAlias = value; J.setAntiAlias$1$x(this.get$skiaObject(), value); }, get$color: function(_) { return this.__engine$_color; }, set$color: function(_, value) { if (J.$eq$(this.__engine$_color, value)) return; this.__engine$_color = value; J.setColorInt$1$x(this.get$skiaObject(), value.get$value(value)); }, set$invertColors: function(value) { }, set$shader: function(value) { var t1, t2, _this = this; if (_this._shader == value) return; _this._shader = type$.nullable_CkShader._as(value); t1 = _this.get$skiaObject(); t2 = _this._shader; J.setShader$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, set$maskFilter: function(value) { var t1, t2, _this = this; if (value.$eq(0, _this._maskFilter)) return; _this._maskFilter = value; t1 = new H.CkMaskFilter(value._ui$_style, value._sigma); t1.ManagedSkiaObject$1(null); _this._ckMaskFilter = t1; t1 = _this.get$skiaObject(); t2 = _this._ckMaskFilter; J.setMaskFilter$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, set$filterQuality: function(value) { var t1, t2, _this = this; if (_this._filterQuality === value) return; _this._filterQuality = value; t1 = _this.get$skiaObject(); t2 = _this._shader; J.setShader$1$x(t1, t2 == null ? null : t2.get$skiaObject()); J.setFilterQuality$1$x(_this.get$skiaObject(), $.$get$_skFilterQualitys()[value.index]); }, set$colorFilter: function(value) { var t2, _this = this, t1 = _this._managedColorFilter; if (J.$eq$(t1 == null ? null : t1.ckColorFilter, value)) return; t1 = new H._ManagedSkColorFilter(value); t1.ManagedSkiaObject$1(null); _this._managedColorFilter = t1; t1 = _this.get$skiaObject(); t2 = _this._managedColorFilter; J.setColorFilter$1$x(t1, t2 == null ? null : t2.get$skiaObject()); }, createDefault$0: function() { var t2, paint = new self.window.flutterCanvasKit.Paint(), t1 = J.getInterceptor$x(paint); t1.setAntiAlias$1(paint, this._isAntiAlias); t2 = this.__engine$_color; t1.setColorInt$1(paint, t2.get$value(t2)); return paint; }, resurrect$0: function() { var _this = this, _null = null, paint = new self.window.flutterCanvasKit.Paint(), t1 = _this._blendMode, t2 = J.getInterceptor$x(paint); t2.setBlendMode$1(paint, $.$get$_skBlendModes()[t1.index]); t1 = _this._style; t2.setStyle$1(paint, $.$get$_skPaintStyles()[t1.index]); t2.setStrokeWidth$1(paint, _this._strokeWidth); t2.setAntiAlias$1(paint, _this._isAntiAlias); t1 = _this.__engine$_color; t2.setColorInt$1(paint, t1.get$value(t1)); t1 = _this._shader; t2.setShader$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._ckMaskFilter; t2.setMaskFilter$1(paint, t1 == null ? _null : t1.get$skiaObject()); t1 = _this._managedColorFilter; t2.setColorFilter$1(paint, t1 == null ? _null : t1.get$skiaObject()); t2.setImageFilter$1(paint, _null); t1 = _this._filterQuality; t2.setFilterQuality$1(paint, $.$get$_skFilterQualitys()[t1.index]); t1 = _this._strokeCap; t2.setStrokeCap$1(paint, $.$get$_skStrokeCaps()[t1.index]); t1 = _this._strokeJoin; t2.setStrokeJoin$1(paint, $.$get$_skStrokeJoins()[t1.index]); t2.setStrokeMiter$1(paint, 0); return paint; }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, $isPaint: 1 }; H.CkPath.prototype = { set$fillType: function(newFillType) { if (this._fillType === newFillType) return; this._fillType = newFillType; J.setFillType$1$x(this.get$skiaObject(), $.$get$_skFillTypes()[newFillType.index]); }, addArc$3: function(_, oval, startAngle, sweepAngle) { J.addArc$3$x(this.get$skiaObject(), H.toSkRect(oval), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232); }, addOval$1: function(_, oval) { J.addOval$3$x(this.get$skiaObject(), H.toSkRect(oval), false, 1); }, addRRect$1: function(_, rrect) { J.addRRect$2$x(this.get$skiaObject(), H.toSkRRect(rrect), false); }, addRect$1: function(_, rect) { J.addRect$1$x(this.get$skiaObject(), H.toSkRect(rect)); }, arcTo$4: function(_, rect, startAngle, sweepAngle, forceMoveTo) { J.arcToOval$4$x(this.get$skiaObject(), H.toSkRect(rect), startAngle * 57.29577951308232, sweepAngle * 57.29577951308232, forceMoveTo); }, arcToPoint$3$clockwise$radius: function(arcEnd, clockwise, radius) { J.arcToRotated$7$x(this.get$skiaObject(), radius.x, radius.y, 0, true, true, arcEnd._dx, arcEnd._dy); }, close$0: function(_) { J.close$0$x(this.get$skiaObject()); }, contains$1: function(_, point) { return J.contains$2$asx(this.get$skiaObject(), point._dx, point._dy); }, getBounds$0: function(_) { var t1 = J.getBounds$0$x(this.get$skiaObject()); return new P.Rect(t1[0], t1[1], t1[2], t1[3]); }, lineTo$2: function(_, x, y) { J.lineTo$2$x(this.get$skiaObject(), x, y); }, moveTo$2: function(_, x, y) { J.moveTo$2$x(this.get$skiaObject(), x, y); }, quadraticBezierTo$4: function(x1, y1, x2, y2) { J.quadTo$4$x(this.get$skiaObject(), x1, y1, x2, y2); }, relativeMoveTo$2: function(dx, dy) { J.rMoveTo$2$x(this.get$skiaObject(), dx, dy); }, reset$0: function(_) { this._fillType = C.PathFillType_0; J.reset$0$x(this.get$skiaObject()); }, shift$1: function(offset) { var newPath = J.copy$0$x(this.get$skiaObject()); J.transform$9$x(newPath, 1, 0, offset._dx, 0, 1, offset._dy, 0, 0, 0); return H.CkPath$_fromSkPath(newPath, this._fillType); }, get$isEmpty: function(_) { return J.isEmpty$0$asx(this.get$skiaObject()); }, get$isResurrectionExpensive: function() { return true; }, createDefault$0: function() { var path = new self.window.flutterCanvasKit.Path(), t1 = this._fillType; J.setFillType$1$x(path, $.$get$_skFillTypes()[t1.index]); return path; }, delete$0: function(_) { var t1; this._cachedCommands = J.toCmds$0$x(this.get$skiaObject()); t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, resurrect$0: function() { var t2, path, t1 = $.__canvasKit; t1 = J.get$Path$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1); t2 = this._cachedCommands; t2.toString; path = J.MakeFromCmds$1$x(t1, t2); t2 = this._fillType; J.setFillType$1$x(path, $.$get$_skFillTypes()[t2.index]); return path; }, $isPath: 1 }; H.CkPicture.prototype = { dispose$0: function(_) { var t1 = this.__engine$_snapshot; if (t1 != null) t1.dispose$0(0); J.delete$0$x(this.get$skiaObject()); }, get$isResurrectionExpensive: function() { return true; }, createDefault$0: function() { throw H.wrapException(P.StateError$("Unreachable code")); }, resurrect$0: function() { return this.__engine$_snapshot.toPicture$0(); }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } }; H.CkPictureRecorder.prototype = { beginRecording$1: function(_, bounds) { var recorder, skCanvas; this._cullRect = bounds; recorder = new self.window.flutterCanvasKit.PictureRecorder(); this._skRecorder = recorder; skCanvas = J.beginRecording$1$x(recorder, H.toSkRect(bounds)); return this._recordingCanvas = $.$get$browserSupportsFinalizationRegistry() ? new H.CkCanvas(skCanvas) : new H.RecordingCkCanvas(new H.CkPictureSnapshot(bounds, H.setRuntimeTypeInfo([], type$.JSArray_CkPaintCommand)), skCanvas); }, endRecording$0: function() { var t1, skPicture, _this = this, recorder = _this._skRecorder; if (recorder == null) throw H.wrapException(P.StateError$("PictureRecorder is not recording")); t1 = J.getInterceptor$x(recorder); skPicture = t1.finishRecordingAsPicture$0(recorder); t1.delete$0(recorder); _this._skRecorder = null; t1 = new H.CkPicture(_this._cullRect, _this._recordingCanvas.get$pictureSnapshot()); t1.ManagedSkiaObject$1(skPicture); return t1; }, get$isRecording: function() { return this._skRecorder != null; } }; H.Rasterizer.prototype = { draw$1: function(layerTree) { var frame, canvas, compositorFrame, t1, t2, t3; try { t1 = layerTree.frameSize; if (t1.get$isEmpty(t1)) return; t2 = this.surface; frame = t2.acquireFrame$1(t1); t3 = t2.viewEmbedder; t3.set$frameSize(t1); canvas = new H.CkCanvas(J.getCanvas$0$x(frame.skiaSurface.__engine$_surface)); compositorFrame = new H.Frame(canvas, null, t3); compositorFrame.raster$2$ignoreRasterCache(layerTree, true); if (!t2._addedToScene) { t1 = $.skiaSceneHost; t1.toString; J.get$children$x(t1).insert$2(0, 0, t2.htmlElement); } t2._addedToScene = true; J.submit$0$z(frame); t3.submitFrame$0(0); } finally { this._runPostFrameCallbacks$0(); } }, _runPostFrameCallbacks$0: function() { var t1, i; for (t1 = this._postFrameCallbacks, i = 0; i < t1.length; ++i) t1[i].call$0(); for (t1 = $._frameReferences, i = 0; i < t1.length; ++i) t1[i].value = null; C.JSArray_methods.set$length(t1, 0); } }; H.CkShader.prototype = { delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); } }; H.CkGradientLinear.prototype = { createDefault$0: function() { var _this = this, t1 = $.__canvasKit; return J.MakeLinearGradient$5$x(J.get$Shader$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1), H.toSkPoint(_this.from), H.toSkPoint(_this.to), H.toFlatColors(_this.colors), H.toSkColorStops(_this.colorStops), $.$get$_skTileModes()[_this.tileMode.index]); }, resurrect$0: function() { return this.createDefault$0(); } }; H.SkiaObjectCache.prototype = { get$length: function(_) { return this._itemQueue._elementCount; }, add$1: function(_, object) { var t2, _this = this, t1 = _this._itemQueue; t1.addFirst$1(object); t2 = t1.get$_sentinel(); t2 = H._instanceType(t2)._eval$1("_DoubleLinkedQueueEntry<1>")._as(t2._nextLink)._asNonSentinelEntry$0(); t2.toString; _this._itemMap.$indexSet(0, object, t2); if (t1._elementCount > _this.maximumSize) H.SkiaObjects_markCacheForResize(_this); }, resize$0: function(_) { var t1, t2, t3, t4, i, t5, result, itemsToDelete = this.maximumSize / 2 | 0; for (t1 = this._itemMap, t2 = this._itemQueue, t3 = t2.$ti, t4 = t3._eval$1("_DoubleLinkedQueueSentinel<1>"), i = 0; i < itemsToDelete; ++i) { t5 = t2.__DoubleLinkedQueue__sentinel; if (t5 === $) { t5 = new P._DoubleLinkedQueueSentinel(t2, null, t4); t5._previousLink = t5; t2.__DoubleLinkedQueue__sentinel = t5._nextLink = t5; } result = t3._eval$1("_DoubleLinkedQueueEntry<1>")._as(t5._previousLink)._collection$_remove$0(0); --t2._elementCount; t1.remove$1(0, result); result.delete$0(0); result.didDelete$0(); } } }; H.SkiaObject.prototype = {}; H.ManagedSkiaObject.prototype = { ManagedSkiaObject$1: function(instance) { var _this = this, defaultObject = instance == null ? _this.createDefault$0() : instance; _this.rawSkiaObject = defaultObject; if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().register$2(0, _this, defaultObject); else if (_this.get$isResurrectionExpensive()) { H.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { H.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } }, get$skiaObject: function() { var skiaObject, _this = this, t1 = _this.rawSkiaObject; if (t1 == null) { skiaObject = _this.resurrect$0(); _this.rawSkiaObject = skiaObject; if (_this.get$isResurrectionExpensive()) { H.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { H.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } t1 = skiaObject; } return t1; }, _doResurrect$0: function() { var _this = this, skiaObject = _this.resurrect$0(); _this.rawSkiaObject = skiaObject; if (_this.get$isResurrectionExpensive()) { H.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); } else { H.SkiaObjects_registerCleanupCallback(); $.SkiaObjects_resurrectableObjects.push(_this); } return skiaObject; }, didDelete$0: function() { this.rawSkiaObject = null; }, get$isResurrectionExpensive: function() { return false; } }; H.SkiaObjectBox.prototype = { __engine$_initialize$2: function(debugReferrer, initialValue) { this._skDeletable = this.rawSkiaObject = initialValue; }, get$skiaObject: function() { var _this = this, t1 = _this.rawSkiaObject; if (t1 == null) { t1 = _this._resurrector.call$0(); _this.rawSkiaObject = t1; _this._skDeletable = type$.nullable_SkDeletable._as(t1); H.SkiaObjects_registerCleanupCallback(); $.$get$SkiaObjects_expensiveCache().add$1(0, _this); t1 = _this.get$skiaObject(); } return t1; }, delete$0: function(_) { var t1 = this._skDeletable; if (t1 != null) J.delete$0$x(t1); }, didDelete$0: function() { this._skDeletable = this.rawSkiaObject = null; }, unref$1: function(debugReferrer) { var t1, _this = this; if (--_this._refCount === 0) { t1 = _this._skDeletable; if (t1 != null) if ($.$get$browserSupportsFinalizationRegistry()) $.$get$Collector__instance().collect$1(t1); else { _this.delete$0(0); _this.didDelete$0(); } _this._resurrector = _this._skDeletable = _this.rawSkiaObject = null; _this._isDeletedPermanently = true; } } }; H.SurfaceFrame.prototype = { submit$0: function(_) { return this.submitCallback.call$2(this, new H.CkCanvas(J.getCanvas$0$x(this.skiaSurface.__engine$_surface))); } }; H.Surface.prototype = { _syncCacheBytes$0: function() { var t2, t1 = this._skiaCacheBytes; if (t1 != null) { t2 = this._grContext; if (t2 != null) J.setResourceCacheLimitBytes$1$x(t2, t1); } }, acquireFrame$1: function(size) { var t2, surface = this._createOrUpdateSurfaces$1(size), t1 = surface._glContext; if (t1 != null) { t2 = $.__canvasKit; J.setCurrentContext$1$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t2, t1); } return new H.SurfaceFrame(surface, new H.Surface_acquireFrame_closure(this)); }, _createOrUpdateSurfaces$1: function(size) { var previousSize, t1, _this = this; if (size.get$isEmpty(size)) throw H.wrapException(H.CanvasKitError$("Cannot create surfaces of empty size.")); previousSize = _this._currentSize; if (!_this._forceNewContext && previousSize != null && size._dx <= previousSize._dx && size._dy <= previousSize._dy) { t1 = $.$get$window()._debugDevicePixelRatio; if (t1 == null) t1 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); if (t1 !== _this._currentDevicePixelRatio) _this._updateLogicalHtmlCanvasSize$0(); t1 = _this.__engine$_surface; t1.toString; return t1; } t1 = $.$get$window()._debugDevicePixelRatio; _this._currentDevicePixelRatio = t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1; _this._currentSize = _this._currentSize == null ? size : size.$mul(0, 1.4); t1 = _this.__engine$_surface; if (t1 != null) t1.dispose$0(0); _this.__engine$_surface = null; _this._addedToScene = false; t1 = _this._currentSize; t1.toString; return _this.__engine$_surface = _this._createNewSurface$1(t1); }, _updateLogicalHtmlCanvasSize$0: function() { var t4, t5, t1 = this._pixelWidth, t2 = $.$get$window(), t3 = t2._debugDevicePixelRatio; if (t3 == null) t3 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t4 = this._pixelHeight; t2 = t2._debugDevicePixelRatio; if (t2 == null) t2 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t5 = this.htmlCanvas.style; t3 = H.S(t1 / t3) + "px"; t5.width = t3; t1 = H.S(t4 / t2) + "px"; t5.height = t1; }, _createNewSurface$1: function(physicalSize) { var htmlCanvas, t2, glContext, skSurface, _this = this, _s9_ = "canvasKit", t1 = _this.htmlCanvas; if (t1 != null) C.CanvasElement_methods.remove$0(t1); _this._pixelWidth = J.ceil$0$n(physicalSize._dx); t1 = J.ceil$0$n(physicalSize._dy); _this._pixelHeight = t1; htmlCanvas = _this.htmlCanvas = W.CanvasElement_CanvasElement(t1, _this._pixelWidth); t1 = htmlCanvas.style; t1.position = "absolute"; _this._updateLogicalHtmlCanvasSize$0(); C.CanvasElement_methods.addEventListener$3(htmlCanvas, "webglcontextlost", new H.Surface__createNewSurface_closure(_this), false); _this._forceNewContext = false; _this.htmlElement.appendChild(htmlCanvas); t1 = $._cachedWebGLVersion; if (t1 == null) { t1 = $._cachedWebGLVersion = H._detectWebGLVersion(); t2 = t1; } else t2 = t1; if (t1 === -1) return _this._makeSoftwareCanvasSurface$2(htmlCanvas, "WebGL support not detected"); else { t1 = $.__canvasKit; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s9_)); glContext = J.GetWebGLContext$2$x(t1, htmlCanvas, {anitalias: 0, majorVersion: t2}); if (glContext === 0) return _this._makeSoftwareCanvasSurface$2(htmlCanvas, "Failed to initialize WebGL context"); t1 = $.__canvasKit; t1 = J.MakeGrContext$1$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1, glContext); _this._grContext = t1; if (t1 == null) throw H.wrapException(H.CanvasKitError$("Failed to initialize CanvasKit. CanvasKit.MakeGrContext returned null.")); _this._syncCacheBytes$0(); t1 = $.__canvasKit; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s9_)); t2 = _this._grContext; t2.toString; skSurface = J.MakeOnScreenGLSurface$4$x(t1, t2, _this._pixelWidth, _this._pixelHeight, self.window.flutterCanvasKit.ColorSpace.SRGB); if (skSurface == null) return _this._makeSoftwareCanvasSurface$2(htmlCanvas, "Failed to initialize WebGL surface"); return new H.CkSurface(skSurface, _this._grContext, glContext); } }, _makeSoftwareCanvasSurface$2: function(htmlCanvas, reason) { var t1; if (!$.Surface__didWarnAboutWebGlInitializationFailure) { $.$get$printWarning().call$1("WARNING: Falling back to CPU-only rendering. " + reason + "."); $.Surface__didWarnAboutWebGlInitializationFailure = true; } t1 = $.__canvasKit; return new H.CkSurface(J.MakeSWCanvasSurface$1$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t1, htmlCanvas), null, null); }, dispose$0: function(_) { var t1; J.remove$0$ax(this.htmlElement); t1 = this.__engine$_surface; if (t1 != null) t1.dispose$0(0); } }; H.Surface_acquireFrame_closure.prototype = { call$2: function(surfaceFrame, canvas) { var t3, t1 = this.$this, t2 = t1.__engine$_surface._glContext; if (t2 != null) { t3 = $.__canvasKit; J.setCurrentContext$1$x(t3 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t3, t2); } J.flush$0$x(t1.__engine$_surface.__engine$_surface); return true; }, $signature: 1362 }; H.Surface__createNewSurface_closure.prototype = { call$1: function($event) { var t1; P.print("Flutter: restoring WebGL context."); this.$this._forceNewContext = true; $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); t1 = J.getInterceptor$x($event); t1.stopPropagation$0($event); t1.preventDefault$0($event); }, $signature: 61 }; H.CkSurface.prototype = { dispose$0: function(_) { var t1, t2, _this = this; if (_this._isDisposed) return; t1 = _this._glContext; if (t1 != null) { t2 = $.__canvasKit; J.setCurrentContext$1$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI("canvasKit")) : t2, t1); } J.dispose$0$x(_this.__engine$_surface); t1 = _this._grContext; if (t1 != null) { t2 = J.getInterceptor$x(t1); t2.releaseResourcesAndAbandonContext$0(t1); t2.delete$0(t1); } _this._isDisposed = true; } }; H.CkParagraphStyle.prototype = {}; H.CkTextStyle.prototype = { get$skTextStyle: function() { var _this = this, t1 = _this.__CkTextStyle_skTextStyle; if (t1 === $) { t1 = new H.CkTextStyle_skTextStyle_closure(_this).call$0(); if (_this.__CkTextStyle_skTextStyle === $) _this.__CkTextStyle_skTextStyle = t1; else t1 = H.throwExpression(H.LateError$fieldADI("skTextStyle")); } return t1; } }; H.CkTextStyle_skTextStyle_closure.prototype = { call$0: function() { var t2, decorationValue, t3, ckShadows, _i, shadow, ckShadow, point, skFontFeatures, skFontFeature, _s9_ = "canvasKit", t1 = this.$this, color = t1.color, decoration = t1.decoration, decorationColor = t1.decorationColor, decorationStyle = t1.decorationStyle, decorationThickness = t1.decorationThickness, fontWeight = t1.fontWeight, fontStyle = t1.fontStyle, textBaseline = t1.textBaseline, fontSize = t1.fontSize, letterSpacing = t1.letterSpacing, wordSpacing = t1.wordSpacing, height = t1.height, background = t1.background, foreground = t1.foreground, shadows = t1.shadows, properties = H.SkTextStyleProperties$(null); if (background != null) properties.backgroundColor = H.makeFreshSkColor(background.__engine$_color); if (color != null) properties.color = H.makeFreshSkColor(color); if (decoration != null) { t2 = $.__canvasKit; decorationValue = J.get$NoDecoration$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2); t2 = decoration._mask; if ((t2 | 1) === t2) { t3 = $.__canvasKit; decorationValue = (decorationValue | J.get$UnderlineDecoration$x(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3)) >>> 0; } if ((t2 | 2) === t2) { t3 = $.__canvasKit; decorationValue = (decorationValue | J.get$OverlineDecoration$x(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3)) >>> 0; } if ((t2 | 4) === t2) { t2 = $.__canvasKit; decorationValue = (decorationValue | J.get$LineThroughDecoration$x(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2)) >>> 0; } properties.decoration = decorationValue; } if (decorationThickness != null) properties.decorationThickness = decorationThickness; if (decorationColor != null) properties.decorationColor = H.makeFreshSkColor(decorationColor); if (decorationStyle != null) properties.decorationStyle = $.$get$_skTextDecorationStyles()[decorationStyle.index]; if (textBaseline != null) properties.textBaseline = $.$get$_skTextBaselines()[textBaseline.index]; if (fontSize != null) properties.fontSize = fontSize; if (letterSpacing != null) properties.letterSpacing = letterSpacing; if (wordSpacing != null) properties.wordSpacing = wordSpacing; if (height != null) properties.heightMultiplier = height; t2 = t1.__CkTextStyle_effectiveFontFamilies; if (t2 === $) { t2 = H._getEffectiveFontFamilies(t1.fontFamily, t1.fontFamilyFallback); if (t1.__CkTextStyle_effectiveFontFamilies === $) t1.__CkTextStyle_effectiveFontFamilies = t2; else t2 = H.throwExpression(H.LateError$fieldADI("effectiveFontFamilies")); } properties.fontFamilies = t2; if (fontWeight != null || fontStyle != null) properties.fontStyle = H.toSkFontStyle(fontWeight, fontStyle); if (foreground != null) properties.foregroundColor = H.makeFreshSkColor(foreground.__engine$_color); if (shadows != null) { ckShadows = H.setRuntimeTypeInfo([], type$.JSArray_SkTextShadow); for (_i = 0; _i < 1; ++_i) { shadow = shadows[_i]; ckShadow = H.SkTextShadow$(null); ckShadow.color = H.makeFreshSkColor(shadow.color); t2 = shadow.offset; point = new Float32Array(2); point[0] = t2._dx; point[1] = t2._dy; ckShadow.offset = point; ckShadow.blurRadius = shadow.blurRadius; ckShadows.push(ckShadow); } properties.shadows = ckShadows; } if (t1.fontFeatures != null) { skFontFeatures = H.setRuntimeTypeInfo([], type$.JSArray_SkFontFeature); for (_i = 0; _i < 1; ++_i) { skFontFeature = H.SkFontFeature$(null); skFontFeature.name = "tnum"; skFontFeature.value = 1; skFontFeatures.push(skFontFeature); } properties.fontFeatures = skFontFeatures; } t1 = $.__canvasKit; return J.TextStyle$1$x(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1, properties); }, $signature: 1875 }; H.CkParagraph.prototype = { createDefault$0: function() { return this._initialParagraph; }, resurrect$0: function() { var t1, t2, t3, t4, t5, _i, command, t6, result, _this = this, _null = null, builder = H.CkParagraphBuilder$(_this._paragraphStyle); for (t1 = _this._paragraphCommands, t2 = t1.length, t3 = builder._commands, t4 = builder._paragraphBuilder, t5 = J.getInterceptor$x(t4), _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { command = t1[_i]; switch (command.type) { case C._ParagraphCommandType_0: t6 = command.text; t6.toString; builder._ensureFontsSupportText$1(t6); t3.push(new H._ParagraphCommand(C._ParagraphCommandType_0, t6, _null, _null)); t5.addText$1(t4, t6); break; case C._ParagraphCommandType_1: builder.pop$0(0); break; case C._ParagraphCommandType_2: t6 = command.style; t6.toString; builder.pushStyle$1(0, t6); break; case C._ParagraphCommandType_3: t6 = command.placeholderStyle; t6.toString; t3.push(new H._ParagraphCommand(C._ParagraphCommandType_3, _null, _null, t6)); t5.addPlaceholder$5(t4, t6.get$width(t6), t6.get$height(t6), t6.get$alignment(), t6.get$baseline(t6), t6.get$offset(t6)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } result = builder._buildCkParagraph$0(); t1 = _this._lastLayoutConstraints; if (t1 != null) { _this.rawSkiaObject = result; _this.layout$1(0, t1); } return result; }, delete$0: function(_) { var t1 = this.rawSkiaObject; if (t1 != null) J.delete$0$x(t1); }, get$isResurrectionExpensive: function() { return true; }, get$alphabeticBaseline: function(_) { return J.getAlphabeticBaseline$0$x(this.get$skiaObject()); }, get$didExceedMaxLines: function(_) { return J.didExceedMaxLines$0$x(this.get$skiaObject()); }, get$height: function(_) { return J.getHeight$0$x(this.get$skiaObject()); }, get$ideographicBaseline: function(_) { return J.getIdeographicBaseline$0$x(this.get$skiaObject()); }, get$longestLine: function() { return J.getLongestLine$0$x(this.get$skiaObject()); }, get$maxIntrinsicWidth: function() { return J.getMaxIntrinsicWidth$0$x(this.get$skiaObject()); }, get$minIntrinsicWidth: function() { return J.getMinIntrinsicWidth$0$x(this.get$skiaObject()); }, get$width: function(_) { return J.getMaxWidth$0$x(this.get$skiaObject()); }, getBoxesForPlaceholders$0: function() { return this.skRectsToTextBoxes$1(J.getRectsForPlaceholders$0$x(this.get$skiaObject())); }, getBoxesForRange$4$boxHeightStyle$boxWidthStyle: function(start, end, boxHeightStyle, boxWidthStyle) { var t1, index, t2, t3; if (start < 0 || end < 0) return C.List_empty5; t1 = this.get$skiaObject(); index = boxHeightStyle.index; t2 = $.$get$_skRectHeightStyles(); t2 = t2[index < 2 ? index : 0]; t3 = $.$get$_skRectWidthStyles(); return this.skRectsToTextBoxes$1(J.getRectsForRange$4$x(t1, start, end, t2, t3[0])); }, getBoxesForRange$3$boxHeightStyle: function(start, end, boxHeightStyle) { return this.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, C.BoxWidthStyle_0); }, skRectsToTextBoxes$1: function(skRects) { var t1, t2, i, rect, t3, result = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = J.getInterceptor$asx(skRects), t2 = this._paragraphStyle, i = 0; i < t1.get$length(skRects); ++i) { rect = t1.$index(skRects, i); t3 = J.getInterceptor$asx(rect); result.push(new P.TextBox(t3.$index(rect, 0), t3.$index(rect, 1), t3.$index(rect, 2), t3.$index(rect, 3), t2._textDirection)); } return result; }, getPositionForOffset$1: function(offset) { var positionWithAffinity = J.getGlyphPositionAtCoordinate$2$x(this.get$skiaObject(), offset._dx, offset._dy), t1 = J.getInterceptor$x(positionWithAffinity), affinity = C.List_TextAffinity_0_TextAffinity_1[J.get$value$x(t1.get$affinity(positionWithAffinity))]; return new P.TextPosition(t1.get$pos(positionWithAffinity), affinity); }, getWordBoundary$1: function(_, position) { var skRange = J.getWordBoundary$1$x(this.get$skiaObject(), position.offset), t1 = J.getInterceptor$x(skRange); return new P.TextRange(t1.get$start(skRange), t1.get$end(skRange)); }, layout$1: function(_, constraints) { var e, exception, t1; this._lastLayoutConstraints = constraints; try { J.layout$1$x(this.get$skiaObject(), constraints.width); } catch (exception) { e = H.unwrapException(exception); t1 = $.$get$printWarning(); t1.call$1('CanvasKit threw an exception while laying out the paragraph. The font was "' + H.S(this._paragraphStyle._fontFamily) + '". Exception:\n' + H.S(e)); throw exception; } }, getLineBoundary$1: function(position) { var t1, t2, t3, offset = position.offset; for (t1 = J.get$iterator$ax(J.getLineMetrics$0$x(this.get$skiaObject())); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = J.getInterceptor$x(t2); if (offset >= t3.get$startIndex(t2) && offset <= t3.get$endIndex(t2)) return new P.TextRange(t3.get$startIndex(t2), t3.get$endIndex(t2)); } return new P.TextRange(-1, -1); } }; H.CkParagraphBuilder.prototype = { _ensureFontsSupportText$1: function(text) { var t1, codeUnits, isAscii, i, style, fontFamilies, typefaces, _i, font, typefacesForFamily, codeUnitsSupported, testString, t2, glyphs, t3, t4, t5, missingCodeUnits; text.toString; t1 = P.LinkedHashSet_LinkedHashSet$of(new P.Runes(text), type$.Runes._eval$1("Iterable.E")); codeUnits = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")); if (this._checkIfGlobalFallbacksSupport$1(codeUnits)) return; if (this._checkIfNoFallbackFontSupports$1(codeUnits)) return; t1 = text.length; i = 0; while (true) { if (!(i < t1)) { isAscii = true; break; } if (C.JSString_methods._codeUnitAt$1(text, i) >= 160) { isAscii = false; break; } ++i; } if (isAscii) return; style = C.JSArray_methods.get$last(this._styleStack); fontFamilies = H.setRuntimeTypeInfo([], type$.JSArray_String); t1 = style.fontFamily; if (t1 != null) fontFamilies.push(t1); t1 = style.fontFamilyFallback; if (t1 != null) C.JSArray_methods.addAll$1(fontFamilies, t1); typefaces = H.setRuntimeTypeInfo([], type$.JSArray_SkTypeface); for (t1 = fontFamilies.length, _i = 0; _i < fontFamilies.length; fontFamilies.length === t1 || (0, H.throwConcurrentModificationError)(fontFamilies), ++_i) { font = fontFamilies[_i]; typefacesForFamily = $._skiaFontCollection.familyToTypefaceMap.$index(0, font); if (typefacesForFamily != null) C.JSArray_methods.addAll$1(typefaces, typefacesForFamily); } t1 = codeUnits.length; codeUnitsSupported = P.List_List$filled(t1, false, false, type$.bool); testString = P.String_String$fromCharCodes(codeUnits, 0, null); for (t2 = typefaces.length, _i = 0; _i < typefaces.length; typefaces.length === t2 || (0, H.throwConcurrentModificationError)(typefaces), ++_i) { glyphs = J.getGlyphIDs$1$x(new self.window.flutterCanvasKit.Font(typefaces[_i]), testString); for (t3 = J.getInterceptor$asx(glyphs), i = 0; i < t3.get$length(glyphs); ++i) { t4 = codeUnitsSupported[i]; if (t3.$index(glyphs, i) === 0) { t5 = codeUnits[i]; if (!(t5 < 32)) t5 = t5 > 127 && t5 < 160; else t5 = true; } else t5 = true; codeUnitsSupported[i] = C.JSBool_methods.$or(t4, t5); } } if (C.JSArray_methods.any$1(codeUnitsSupported, new H.CkParagraphBuilder__ensureFontsSupportText_closure())) { missingCodeUnits = H.setRuntimeTypeInfo([], type$.JSArray_int); for (i = 0; i < t1; ++i) if (!codeUnitsSupported[i]) missingCodeUnits.push(codeUnits[i]); H.findFontsForMissingCodeunits(missingCodeUnits); } }, _checkIfGlobalFallbacksSupport$1: function(codeUnits) { var t1, codeUnitsSupported, testString, t2, t3, t4, _i, font, typefacesForFamily, t5, glyphs, t6, i, t7, t8, keepGoing, _i0, fallbackData = $.$get$FontFallbackData__instance(); if (!!codeUnits.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(codeUnits, new H.CkParagraphBuilder__checkIfGlobalFallbacksSupport_closure(fallbackData), true); t1 = codeUnits.length; if (t1 === 0) return true; codeUnitsSupported = P.List_List$filled(t1, false, false, type$.bool); testString = P.String_String$fromCharCodes(codeUnits, 0, null); for (t2 = fallbackData.globalFontFallbacks, t3 = t2.length, t4 = fallbackData.knownCoveredCodeUnits, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { font = t2[_i]; typefacesForFamily = $._skiaFontCollection.familyToTypefaceMap.$index(0, font); if (typefacesForFamily == null) { $.$get$printWarning().call$1("A fallback font was registered but we cannot retrieve the typeface for it."); continue; } for (t5 = J.get$iterator$ax(typefacesForFamily); t5.moveNext$0();) { glyphs = J.getGlyphIDs$1$x(new self.window.flutterCanvasKit.Font(t5.get$current(t5)), testString); for (t6 = J.getInterceptor$asx(glyphs), i = 0; i < t6.get$length(glyphs); ++i) { t7 = t6.$index(glyphs, i) === 0; if (!t7) t4.add$1(0, codeUnits[i]); t8 = codeUnitsSupported[i]; if (t7) { t7 = codeUnits[i]; if (!(t7 < 32)) t7 = t7 > 127 && t7 < 160; else t7 = true; } else t7 = true; codeUnitsSupported[i] = C.JSBool_methods.$or(t8, t7); } } _i0 = 0; while (true) { if (!(_i0 < t1)) { keepGoing = false; break; } if (!codeUnitsSupported[_i0]) { keepGoing = true; break; } ++_i0; } if (!keepGoing) { C.JSArray_methods.set$length(codeUnits, 0); return true; } } for (i = codeUnits.length - 1; i >= 0; --i) if (codeUnitsSupported[i]) C.JSArray_methods.removeAt$1(codeUnits, i); return false; }, _checkIfNoFallbackFontSupports$1: function(codeUnits) { var fallbackData = $.$get$FontFallbackData__instance(); if (!!codeUnits.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(codeUnits, new H.CkParagraphBuilder__checkIfNoFallbackFontSupports_closure(fallbackData), true); return codeUnits.length === 0; }, addText$1: function(_, text) { this._ensureFontsSupportText$1(text); this._commands.push(new H._ParagraphCommand(C._ParagraphCommandType_0, text, null, null)); J.addText$1$x(this._paragraphBuilder, text); }, build$0: function(_) { var t1 = new H.CkParagraph(this._buildCkParagraph$0(), this._style, this._commands); t1.ManagedSkiaObject$1(null); return t1; }, _buildCkParagraph$0: function() { var t1 = this._paragraphBuilder, t2 = J.getInterceptor$x(t1), result = t2.build$0(t1); t2.delete$0(t1); return result; }, get$placeholderScales: function() { return this._placeholderScales; }, pop$0: function(_) { var t1 = this._styleStack; if (t1.length <= 1) return; this._commands.push(C._ParagraphCommand_rx2); t1.pop(); J.pop$0$x(this._paragraphBuilder); }, pushStyle$1: function(_, style) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, skStyle, foreground, background, _this = this, _null = null, t1 = _this._styleStack, baseStyle = C.JSArray_methods.get$last(t1); type$.CkTextStyle._as(style); t2 = style.color; if (t2 == null) t2 = baseStyle.color; t3 = style.decoration; if (t3 == null) t3 = baseStyle.decoration; t4 = style.decorationColor; if (t4 == null) t4 = baseStyle.decorationColor; t5 = style.decorationStyle; if (t5 == null) t5 = baseStyle.decorationStyle; t6 = style.decorationThickness; if (t6 == null) t6 = baseStyle.decorationThickness; t7 = style.fontWeight; if (t7 == null) t7 = baseStyle.fontWeight; t8 = style.fontStyle; if (t8 == null) t8 = baseStyle.fontStyle; t9 = style.textBaseline; if (t9 == null) t9 = baseStyle.textBaseline; t10 = style.fontFamily; if (t10 == null) t10 = baseStyle.fontFamily; t11 = style.fontFamilyFallback; if (t11 == null) t11 = baseStyle.fontFamilyFallback; t12 = style.fontSize; if (t12 == null) t12 = baseStyle.fontSize; t13 = style.letterSpacing; if (t13 == null) t13 = baseStyle.letterSpacing; t14 = style.wordSpacing; if (t14 == null) t14 = baseStyle.wordSpacing; t15 = style.height; if (t15 == null) t15 = baseStyle.height; t16 = style.background; if (t16 == null) t16 = baseStyle.background; t17 = style.foreground; if (t17 == null) t17 = baseStyle.foreground; t18 = style.shadows; if (t18 == null) t18 = baseStyle.shadows; t19 = style.fontFeatures; if (t19 == null) t19 = baseStyle.fontFeatures; skStyle = H.CkTextStyle_CkTextStyle(t16, t2, t3, t4, t5, t6, t10, t11, t19, t12, t8, t7, t17, t15, t13, baseStyle.locale, t18, t9, t14); t1.push(skStyle); _this._commands.push(new H._ParagraphCommand(C._ParagraphCommandType_2, _null, style, _null)); t1 = skStyle.foreground; t2 = t1 == null; if (!t2 || skStyle.background != null) { foreground = t2 ? _null : t1.get$skiaObject(); if (foreground == null) { foreground = $.$get$CkParagraphBuilder__defaultTextForeground(); t1 = skStyle.color; t1 = t1 == null ? _null : t1.get$value(t1); J.setColorInt$1$x(foreground, t1 == null ? 4278190080 : t1); } t1 = skStyle.background; background = t1 == null ? _null : t1.get$skiaObject(); if (background == null) background = $.$get$CkParagraphBuilder__defaultTextBackground(); J.pushPaintStyle$3$x(_this._paragraphBuilder, skStyle.get$skTextStyle(), foreground, background); } else J.pushStyle$1$x(_this._paragraphBuilder, skStyle.get$skTextStyle()); } }; H.CkParagraphBuilder__ensureFontsSupportText_closure.prototype = { call$1: function(x) { return !x; }, $signature: 1909 }; H.CkParagraphBuilder__checkIfGlobalFallbacksSupport_closure.prototype = { call$1: function(codeUnit) { return this.fallbackData.knownCoveredCodeUnits.contains$1(0, codeUnit); }, $signature: 186 }; H.CkParagraphBuilder__checkIfNoFallbackFontSupports_closure.prototype = { call$1: function(codeUnit) { return this.fallbackData.codeUnitsWithNoKnownFont.contains$1(0, codeUnit); }, $signature: 186 }; H._ParagraphCommand.prototype = { text$0: function($receiver) { return this.text.call$0(); } }; H._ParagraphCommandType.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H._getEffectiveFontFamilies_closure.prototype = { call$1: function(font) { return this.fontFamily == font; }, $signature: 73 }; H.CanvasKitError.prototype = { toString$0: function(_) { return "CanvasKitError: " + this.message; } }; H.ClipboardMessageHandler.prototype = { setDataMethodCall$2: function(methodCall, callback) { var t1 = {}; t1.errorEnvelopeEncoded = false; this._copyToClipboardStrategy.setData$1(0, J.$index$asx(methodCall.$arguments, "text")).then$1$1(0, new H.ClipboardMessageHandler_setDataMethodCall_closure(t1, callback), type$.Null).catchError$1(new H.ClipboardMessageHandler_setDataMethodCall_closure0(t1, callback)); }, getDataMethodCall$1: function(callback) { this._pasteFromClipboardStrategy.getData$0(0).then$1$1(0, new H.ClipboardMessageHandler_getDataMethodCall_closure(callback), type$.Null).catchError$1(new H.ClipboardMessageHandler_getDataMethodCall_closure0(callback)); } }; H.ClipboardMessageHandler_setDataMethodCall_closure.prototype = { call$1: function(success) { var t1 = this.callback; if (success) { t1.toString; t1.call$1(C.C_JSONMessageCodec.encodeMessage$1([true])); } else { t1.toString; t1.call$1(C.C_JSONMessageCodec.encodeMessage$1(["copy_fail", "Clipboard.setData failed", null])); this._box_0.errorEnvelopeEncoded = true; } }, $signature: 394 }; H.ClipboardMessageHandler_setDataMethodCall_closure0.prototype = { call$1: function(_) { var t1; if (!this._box_0.errorEnvelopeEncoded) { t1 = this.callback; t1.toString; t1.call$1(C.C_JSONMessageCodec.encodeMessage$1(["copy_fail", "Clipboard.setData failed", null])); } }, $signature: 8 }; H.ClipboardMessageHandler_getDataMethodCall_closure.prototype = { call$1: function(data) { var map = P.LinkedHashMap_LinkedHashMap$_literal(["text", data], type$.String, type$.dynamic), t1 = this.callback; t1.toString; t1.call$1(C.C_JSONMessageCodec.encodeMessage$1([map])); }, $signature: 1980 }; H.ClipboardMessageHandler_getDataMethodCall_closure0.prototype = { call$1: function(error) { var t1; P.print("Could not get text from clipboard: " + H.S(error)); t1 = this.callback; t1.toString; t1.call$1(C.C_JSONMessageCodec.encodeMessage$1(["paste_fail", "Clipboard.getData failed", null])); }, $signature: 8 }; H.ClipboardAPICopyStrategy.prototype = { setData$1: function(_, text) { return this.setData$body$ClipboardAPICopyStrategy(_, text); }, setData$body$ClipboardAPICopyStrategy: function(_, text) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], error, t1, exception, $async$exception; var $async$setData$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; t1 = window.navigator.clipboard; t1.toString; text.toString; $async$goto = 7; return P._asyncAwait(P.promiseToFuture(t1.writeText(text), type$.dynamic), $async$setData$1); case 7: // returning from await. $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; error = H.unwrapException($async$exception); P.print("copy is not successful " + H.S(error)); t1 = P.Future_Future$value(false, type$.bool); $async$returnValue = t1; // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally $async$returnValue = P.Future_Future$value(true, type$.bool); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$setData$1, $async$completer); } }; H.ClipboardAPIPasteStrategy.prototype = { getData$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.String), $async$returnValue; var $async$getData$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = P.promiseToFuture(window.navigator.clipboard.readText(), type$.String); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getData$0, $async$completer); } }; H.ExecCommandCopyStrategy.prototype = { setData$1: function(_, text) { return P.Future_Future$value(this._setDataSync$1(text), type$.bool); }, _setDataSync$1: function(text) { var tempTextArea, result, error, exception, _s8_ = "-99999px", _s11_ = "transparent", t1 = document, tempElement = t1.createElement("textarea"), elementStyle = tempElement.style; elementStyle.position = "absolute"; elementStyle.top = _s8_; elementStyle.left = _s8_; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "0", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; t1.body.appendChild(tempElement); tempTextArea = tempElement; tempTextArea.value = text; J.focus$0$x(tempTextArea); J.select$0$x(tempTextArea); result = false; try { result = t1.execCommand("copy"); if (!result) P.print("copy is not successful"); } catch (exception) { error = H.unwrapException(exception); P.print("copy is not successful " + H.S(error)); } finally { J.remove$0$ax(tempTextArea); } return result; } }; H.ExecCommandPasteStrategy.prototype = { getData$0: function(_) { throw H.wrapException(P.UnimplementedError$("Paste is not implemented for this browser.")); } }; H.DomCanvas.prototype = { clear$0: function(_) { this.super$SaveElementStackTracking$clear(0); $.$get$domRenderer().clearDom$1(this.rootElement); }, clipRect$2: function(_, rect, op) { throw H.wrapException(P.UnimplementedError$(null)); }, clipRRect$1: function(_, rrect) { throw H.wrapException(P.UnimplementedError$(null)); }, clipPath$1: function(_, path) { throw H.wrapException(P.UnimplementedError$(null)); }, drawLine$3: function(_, p1, p2, paint) { throw H.wrapException(P.UnimplementedError$(null)); }, drawRect$2: function(_, rect, paint) { var t1 = this.SaveElementStackTracking__elementStack; t1 = t1.length === 0 ? this.rootElement : C.JSArray_methods.get$last(t1); t1.appendChild(H._buildDrawRectElement(rect, paint, "draw-rect", this.SaveElementStackTracking__currentTransform)); }, drawRRect$2: function(_, rrect, paint) { var t1, element = H._buildDrawRectElement(new P.Rect(rrect.left, rrect.top, rrect.right, rrect.bottom), paint, "draw-rrect", this.SaveElementStackTracking__currentTransform); H._applyRRectBorderRadius(element.style, rrect); t1 = this.SaveElementStackTracking__elementStack; (t1.length === 0 ? this.rootElement : C.JSArray_methods.get$last(t1)).appendChild(element); }, drawCircle$3: function(_, c, radius, paint) { throw H.wrapException(P.UnimplementedError$(null)); }, drawPath$2: function(_, path, paint) { throw H.wrapException(P.UnimplementedError$(null)); }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { throw H.wrapException(P.UnimplementedError$(null)); }, drawImageRect$4: function(image, src, dst, paint) { throw H.wrapException(P.UnimplementedError$(null)); }, drawParagraph$2: function(_, paragraph, offset) { var paragraphElement = H._drawParagraphElement(paragraph, offset, this.SaveElementStackTracking__currentTransform), t1 = this.SaveElementStackTracking__elementStack; (t1.length === 0 ? this.rootElement : C.JSArray_methods.get$last(t1)).appendChild(paragraphElement); }, endOfPaint$0: function() { } }; H.DomRenderer.prototype = { renderScene$1: function(sceneElement) { var t1 = this._sceneElement; if (sceneElement == null ? t1 != null : sceneElement !== t1) { if (t1 != null) J.remove$0$ax(t1); this._sceneElement = sceneElement; t1 = this._sceneHostElement; t1.toString; sceneElement.toString; t1.appendChild(sceneElement); } }, createElement$1: function(_, tagName) { var element = document.createElement(tagName); return element; }, reset$0: function(_) { var t2, sheet, isWebKit, isFirefox, t3, t4, t5, glassPaneElement, semanticsHostElement, objectConstructor, _this = this, _s1_ = "0", _s4_ = "none", _s8_ = "absolute", _s14_ = "defineProperty", _box_0 = {}, t1 = _this._styleElement; if (t1 != null) C.StyleElement_methods.remove$0(t1); t1 = document; t2 = t1.createElement("style"); _this._styleElement = t2; t1.head.appendChild(t2); sheet = type$.CssStyleSheet._as(_this._styleElement.sheet); t2 = H._browserEngine(); isWebKit = t2 === C.BrowserEngine_1; t2 = H._browserEngine(); isFirefox = t2 === C.BrowserEngine_2; if (isFirefox) sheet.insertRule("flt-ruler-host p, flt-scene p { margin: 0; line-height: 100%;}", sheet.cssRules.length); else sheet.insertRule("flt-ruler-host p, flt-scene p { margin: 0; }", sheet.cssRules.length); sheet.insertRule("flt-semantics input[type=range] {\n appearance: none;\n -webkit-appearance: none;\n width: 100%;\n position: absolute;\n border: none;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n}", sheet.cssRules.length); if (isWebKit) sheet.insertRule("flt-semantics input[type=range]::-webkit-slider-thumb { -webkit-appearance: none;}", sheet.cssRules.length); if (isFirefox) { sheet.insertRule("input::-moz-selection { background-color: transparent;}", sheet.cssRules.length); sheet.insertRule("textarea::-moz-selection { background-color: transparent;}", sheet.cssRules.length); } else { sheet.insertRule("input::selection { background-color: transparent;}", sheet.cssRules.length); sheet.insertRule("textarea::selection { background-color: transparent;}", sheet.cssRules.length); } sheet.insertRule('flt-semantics input,\nflt-semantics textarea,\nflt-semantics [contentEditable="true"] {\n caret-color: transparent;\n}\n', sheet.cssRules.length); if (isWebKit) sheet.insertRule("flt-glass-pane * {\n -webkit-tap-highlight-color: transparent;\n}\n", sheet.cssRules.length); t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_0) { t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_5) { t2 = H._browserEngine(); t2 = t2 === C.BrowserEngine_1; } else t2 = true; } else t2 = true; if (t2) sheet.insertRule(".transparentTextEditing:-webkit-autofill,\n.transparentTextEditing:-webkit-autofill:hover,\n.transparentTextEditing:-webkit-autofill:focus,\n.transparentTextEditing:-webkit-autofill:active {\n -webkit-transition-delay: 99999s;\n}\n", sheet.cssRules.length); t2 = t1.body; t2.toString; t3 = H._detectRenderer(); t2.setAttribute("flt-renderer", (t3 ? "canvaskit" : "html") + " (auto-selected)"); t2.setAttribute("flt-build-mode", "profile"); H.DomRenderer_setElementStyle(t2, "position", "fixed"); H.DomRenderer_setElementStyle(t2, "top", _s1_); H.DomRenderer_setElementStyle(t2, "right", _s1_); H.DomRenderer_setElementStyle(t2, "bottom", _s1_); H.DomRenderer_setElementStyle(t2, "left", _s1_); H.DomRenderer_setElementStyle(t2, "overflow", "hidden"); H.DomRenderer_setElementStyle(t2, "padding", _s1_); H.DomRenderer_setElementStyle(t2, "margin", _s1_); H.DomRenderer_setElementStyle(t2, "user-select", _s4_); H.DomRenderer_setElementStyle(t2, "-webkit-user-select", _s4_); H.DomRenderer_setElementStyle(t2, "-ms-user-select", _s4_); H.DomRenderer_setElementStyle(t2, "-moz-user-select", _s4_); H.DomRenderer_setElementStyle(t2, "touch-action", _s4_); H.DomRenderer_setElementStyle(t2, "font", "normal normal 14px sans-serif"); H.DomRenderer_setElementStyle(t2, "color", "red"); t2.spellcheck = false; for (t3 = type$._FrozenElementList_Element, t4 = new W._FrozenElementList(t1.head.querySelectorAll('meta[name="viewport"]'), t3), t3 = new H.ListIterator(t4, t4.get$length(t4), t3._eval$1("ListIterator")); t3.moveNext$0();) { t4 = t3.__internal$_current; t5 = t4.parentNode; if (t5 != null) t5.removeChild(t4); } t3 = _this._viewportMeta; if (t3 != null) C.MetaElement_methods.remove$0(t3); t3 = t1.createElement("meta"); t3.setAttribute("flt-viewport", ""); t3.name = "viewport"; t3.content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"; _this._viewportMeta = t3; t1.head.appendChild(t3); t3 = _this._glassPaneElement; if (t3 != null) J.remove$0$ax(t3); glassPaneElement = _this._glassPaneElement = _this.createElement$1(0, "flt-glass-pane"); t3 = glassPaneElement.style; t3.position = _s8_; t3.top = _s1_; t3.right = _s1_; t3.bottom = _s1_; t3.left = _s1_; t2.appendChild(glassPaneElement); _this._sceneHostElement = _this.createElement$1(0, "flt-scene-host"); semanticsHostElement = _this.createElement$1(0, "flt-semantics-host"); t2 = semanticsHostElement.style; t2.position = _s8_; C.CssStyleDeclaration_methods._setPropertyHelper$3(t2, C.CssStyleDeclaration_methods._browserPropertyName$1(t2, "transform-origin"), "0 0 0", ""); _this._semanticsHostElement = semanticsHostElement; _this.updateSemanticsScreenProperties$0(); glassPaneElement.appendChild(semanticsHostElement); t2 = _this._sceneHostElement.style; t2.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t2, C.CssStyleDeclaration_methods._browserPropertyName$1(t2, "pointer-events"), _s4_, ""); t2 = _this._sceneHostElement; t2.toString; glassPaneElement.appendChild(t2); t2 = $.EngineSemanticsOwner__instance; glassPaneElement.insertBefore((t2 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t2).semanticsHelper._semanticsEnabler.prepareAccessibilityPlaceholder$0(), _this._sceneHostElement); if ($.PointerBinding__instance == null) { t2 = new H.PointerBinding(glassPaneElement, new H.PointerDataConverter(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._PointerState))); t2.__PointerBinding__adapter = t2._createAdapter$0(); $.PointerBinding__instance = t2; } if ($.KeyboardBinding__instance == null) { t2 = new H.KeyboardBinding(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event)); t2._setup$0(); $.KeyboardBinding__instance = t2; } _this._sceneHostElement.setAttribute("aria-hidden", "true"); if (window.visualViewport == null && isWebKit) { t2 = window.innerWidth; t2.toString; _box_0.checkCount = 0; P.Timer_Timer$periodic(C.Duration_100000, new H.DomRenderer_reset_closure(_box_0, _this, t2)); } t2 = H._detectRenderer(); if (t2) { t2 = _this._canvasKitScript; if (t2 != null) C.ScriptElement_methods.remove$0(t2); t2 = t1.createElement("script"); _this._canvasKitScript = t2; t2.src = $.$get$canvasKitJavaScriptBindingsUrl(); t2 = $.$get$_context(); objectConstructor = t2.$index(0, "Object"); if (t2.$index(0, "exports") == null) objectConstructor.callMethod$2(_s14_, [t2, "exports", P.JsObject_JsObject$jsify(P.LinkedHashMap_LinkedHashMap$_literal(["get", P.allowInterop(new H.DomRenderer_reset_closure0(_this, objectConstructor)), "set", P.allowInterop(new H.DomRenderer_reset_closure1()), "configurable", true], type$.String, type$.Object))]); if (t2.$index(0, "module") == null) objectConstructor.callMethod$2(_s14_, [t2, "module", P.JsObject_JsObject$jsify(P.LinkedHashMap_LinkedHashMap$_literal(["get", P.allowInterop(new H.DomRenderer_reset_closure2(_this, objectConstructor)), "set", P.allowInterop(new H.DomRenderer_reset_closure3()), "configurable", true], type$.String, type$.Object))]); t1 = t1.head; t1.toString; t2 = _this._canvasKitScript; t2.toString; t1.appendChild(t2); } t1 = _this.get$_metricsDidChange(); t2 = type$.legacy_Event; if (window.visualViewport != null) { t3 = window.visualViewport; t3.toString; _this._resizeSubscription = W._EventStreamSubscription$(t3, "resize", t1, false, t2); } else _this._resizeSubscription = W._EventStreamSubscription$(window, "resize", t1, false, t2); _this._localeSubscription = W._EventStreamSubscription$(window, "languagechange", _this.get$_languageDidChange(), false, t2); t1 = $.$get$EnginePlatformDispatcher__instance(); t1._configuration = t1._configuration.copyWith$1$locales(H.EnginePlatformDispatcher_parseBrowserLanguages()); }, updateSemanticsScreenProperties$0: function() { var t1 = this._semanticsHostElement.style, t2 = "scale(" + H.S(1 / window.devicePixelRatio) + ")"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, _metricsDidChange$1: function($event) { var t1; this.updateSemanticsScreenProperties$0(); t1 = H._operatingSystem(); if (!J.containsKey$1$x(C.Set_m536._collection$_map, t1) && !$.$get$window().isRotation$0() && $.$get$textEditing().isEditing) { $.$get$window().computeOnScreenKeyboardInsets$0(); $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); } else { t1 = $.$get$window(); t1._computePhysicalSize$0(); t1.computeOnScreenKeyboardInsets$0(); $.$get$EnginePlatformDispatcher__instance().invokeOnMetricsChanged$0(); } }, _languageDidChange$1: function($event) { var t1 = $.$get$EnginePlatformDispatcher__instance(); t1._configuration = t1._configuration.copyWith$1$locales(H.EnginePlatformDispatcher_parseBrowserLanguages()); t1 = $.$get$window().platformDispatcher._onLocaleChanged; if (t1 != null) t1.call$0(); }, clearDom$1: function(node) { var t1, t2; for (; t1 = node.lastChild, t1 != null;) { t2 = t1.parentNode; if (t2 != null) t2.removeChild(t1); } }, setPreferredOrientation$1: function(orientations) { var lockType, completer, t1, exception, screenOrientation = window.screen.orientation; if (screenOrientation != null) { orientations.toString; t1 = J.getInterceptor$asx(orientations); if (t1.get$isEmpty(orientations)) { t1 = screenOrientation; t1.toString; J.unlock$0$x(t1); return P.Future_Future$value(true, type$.bool); } else { lockType = H.DomRenderer__deviceOrientationToLockType(t1.get$first(orientations)); if (lockType != null) { completer = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_bool), type$._AsyncCompleter_bool); try { P.promiseToFuture(screenOrientation.lock(lockType), type$.dynamic).then$1$1(0, new H.DomRenderer_setPreferredOrientation_closure(completer), type$.Null).catchError$1(new H.DomRenderer_setPreferredOrientation_closure0(completer)); } catch (exception) { H.unwrapException(exception); t1 = P.Future_Future$value(false, type$.bool); return t1; } return completer.future; } } } return P.Future_Future$value(false, type$.bool); } }; H.DomRenderer_reset_closure.prototype = { call$1: function(t) { var t1 = ++this._box_0.checkCount; if (this.initialInnerWidth != window.innerWidth) { t.cancel$0(0); this.$this._metricsDidChange$1(null); } else if (t1 > 5) t.cancel$0(0); }, $signature: 407 }; H.DomRenderer_reset_closure0.prototype = { call$0: function() { var t1 = document.currentScript, t2 = this.$this._canvasKitScript; if (t1 == null ? t2 == null : t1 === t2) return P.JsObject_JsObject(this.objectConstructor); else return $.$get$_context().$index(0, "_flutterWebCachedExports"); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; H.DomRenderer_reset_closure1.prototype = { call$1: function(value) { $.$get$_context().$indexSet(0, "_flutterWebCachedExports", value); }, $signature: 8 }; H.DomRenderer_reset_closure2.prototype = { call$0: function() { var t1 = document.currentScript, t2 = this.$this._canvasKitScript; if (t1 == null ? t2 == null : t1 === t2) return P.JsObject_JsObject(this.objectConstructor); else return $.$get$_context().$index(0, "_flutterWebCachedModule"); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; H.DomRenderer_reset_closure3.prototype = { call$1: function(value) { $.$get$_context().$indexSet(0, "_flutterWebCachedModule", value); }, $signature: 8 }; H.DomRenderer_setPreferredOrientation_closure.prototype = { call$1: function(_) { this.completer.complete$1(0, true); }, $signature: 8 }; H.DomRenderer_setPreferredOrientation_closure0.prototype = { call$1: function(error) { this.completer.complete$1(0, false); }, $signature: 8 }; H.EngineCanvas.prototype = { dispose$0: function(_) { this.clear$0(0); } }; H._SaveStackEntry.prototype = {}; H._SaveClipEntry.prototype = {}; H._SaveElementStackEntry.prototype = {}; H.SaveElementStackTracking.prototype = { clear$0: function(_) { C.JSArray_methods.set$length(this.SaveElementStackTracking__saveStack, 0); C.JSArray_methods.set$length(this.SaveElementStackTracking__elementStack, 0); this.SaveElementStackTracking__currentTransform = H.Matrix4$identity(); }, save$0: function(_) { var t2, t3, _this = this, t1 = _this.SaveElementStackTracking__elementStack; t1 = t1.length === 0 ? _this.rootElement : C.JSArray_methods.get$last(t1); t2 = _this.SaveElementStackTracking__currentTransform; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t2); _this.SaveElementStackTracking__saveStack.push(new H._SaveElementStackEntry(t1, t3)); }, restore$0: function(_) { var entry, t2, t3, _this = this, t1 = _this.SaveElementStackTracking__saveStack; if (t1.length === 0) return; entry = t1.pop(); _this.SaveElementStackTracking__currentTransform = entry.transform; t1 = _this.SaveElementStackTracking__elementStack; t2 = entry.savedElement; t3 = _this.rootElement; while (true) { if (!((t1.length === 0 ? t3 : C.JSArray_methods.get$last(t1)) == null ? t2 != null : (t1.length === 0 ? t3 : C.JSArray_methods.get$last(t1)) !== t2)) break; t1.pop(); } }, translate$2: function(_, dx, dy) { this.SaveElementStackTracking__currentTransform.translate$2(0, dx, dy); }, scale$2: function(_, sx, sy) { this.SaveElementStackTracking__currentTransform.scale$2(0, sx, sy); }, rotate$1: function(_, radians) { this.SaveElementStackTracking__currentTransform.rotate$2(0, $.$get$SaveElementStackTracking__unitZ(), radians); }, transform$1: function(_, matrix4) { this.SaveElementStackTracking__currentTransform.multiply$1(0, new H.Matrix40(matrix4)); } }; H.FrameReference.prototype = { get$value: function(receiver) { return this.value; } }; H.CrossFrameCache.prototype = { commitFrame$0: function() { var t2, t3, _this = this, t1 = _this._reusablePool; if (t1 != null) for (t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) for (t2 = J.get$iterator$ax(t1.get$current(t1)); t2.moveNext$0();) { t3 = t2.get$current(t2); t3.evictCallback.call$1(t3.value); } _this._reusablePool = _this._cache; _this._cache = null; }, _addToCache$2: function(key, item) { var t2, _this = this, t1 = _this._cache; if (t1 == null) t1 = _this._cache = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, _this.$ti._eval$1("List<_CrossFrameCacheItem<1>>")); t2 = t1.$index(0, key); if (t2 == null) { t2 = H.setRuntimeTypeInfo([], _this.$ti._eval$1("JSArray<_CrossFrameCacheItem<1>>")); t1.$indexSet(0, key, t2); t1 = t2; } else t1 = t2; t1.push(item); }, reuse$1: function(key) { var items, item, t1 = this._reusablePool; if (t1 == null) return null; items = t1.$index(0, key); if (items == null || items.length === 0) return null; item = (items && C.JSArray_methods).removeAt$1(items, 0); this._addToCache$2(key, item); return item.value; } }; H._CrossFrameCacheItem.prototype = { get$value: function(receiver) { return this.value; } }; H.SurfaceCanvas.prototype = { save$0: function(_) { var t1 = this.__engine$_canvas; t1._paintBounds.saveTransformsAndClip$0(); t1._commands.push(C.C_PaintSave); ++t1._saveCount; }, saveLayer$2: function(_, bounds, paint) { var t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(C.C_PaintSave); t1._paintBounds.saveTransformsAndClip$0(); ++t1._saveCount; }, restore$0: function(_) { var t2, clipRect, t1 = this.__engine$_canvas; if (!t1._recordingEnded && t1._saveCount > 1) { t2 = t1._paintBounds; t2._currentMatrix = t2.__engine$_transforms.pop(); clipRect = t2._clipStack.pop(); if (clipRect != null) { t2._currentClipLeft = clipRect.left; t2._currentClipTop = clipRect.top; t2._currentClipRight = clipRect.right; t2._currentClipBottom = clipRect.bottom; t2._clipRectInitialized = true; } else if (t2._clipRectInitialized) t2._clipRectInitialized = false; } t2 = t1._commands; if (t2.length !== 0 && C.JSArray_methods.get$last(t2) instanceof H.PaintSave) t2.pop(); else t2.push(C.C_PaintRestore); --t1._saveCount; }, translate$2: function(_, dx, dy) { var t1 = this.__engine$_canvas, t2 = t1._paintBounds; if (dx !== 0 || dy !== 0) t2._currentMatrixIsIdentity = false; t2._currentMatrix.translate$2(0, dx, dy); t1._commands.push(new H.PaintTranslate(dx, dy)); }, scale$2: function(_, sx, sy) { var t1 = sy == null ? sx : sy, t2 = this.__engine$_canvas, t3 = t2._paintBounds; if (sx !== 1 || t1 !== 1) t3._currentMatrixIsIdentity = false; t3._currentMatrix.scale$2(0, sx, t1); t2._commands.push(new H.PaintScale(sx, t1)); return null; }, rotate$1: function(_, radians) { var cosAngle, sinAngle, t3, t4, t5, t6, t7, t8, t9, t10, t11, t1 = this.__engine$_canvas, t2 = t1._paintBounds; if (radians !== 0) t2._currentMatrixIsIdentity = false; t2 = t2._currentMatrix; cosAngle = Math.cos(radians); sinAngle = Math.sin(radians); t2 = t2.__engine$_m4storage; t3 = t2[0]; t4 = t2[4]; t5 = t2[1]; t6 = t2[5]; t7 = t2[2]; t8 = t2[6]; t9 = t2[3]; t10 = t2[7]; t11 = -sinAngle; t2[0] = t3 * cosAngle + t4 * sinAngle; t2[1] = t5 * cosAngle + t6 * sinAngle; t2[2] = t7 * cosAngle + t8 * sinAngle; t2[3] = t9 * cosAngle + t10 * sinAngle; t2[4] = t3 * t11 + t4 * cosAngle; t2[5] = t5 * t11 + t6 * cosAngle; t2[6] = t7 * t11 + t8 * cosAngle; t2[7] = t9 * t11 + t10 * cosAngle; t1._commands.push(new H.PaintRotate(radians)); }, transform$1: function(_, matrix4) { var t1 = H.toMatrix32(matrix4), t2 = this.__engine$_canvas, t3 = t2._paintBounds; t3._currentMatrix.multiply$1(0, new H.Matrix40(t1)); t3._currentMatrixIsIdentity = t3._currentMatrix.isIdentity$0(0); t2._commands.push(new H.PaintTransform(t1)); }, clipRect$3$clipOp$doAntiAlias: function(_, rect, clipOp, doAntiAlias) { var t1 = this.__engine$_canvas, command = new H.PaintClipRect(rect, clipOp, -1 / 0, -1 / 0, 1 / 0, 1 / 0); switch (clipOp) { case C.ClipOp_1: t1._paintBounds.clipRect$2(0, rect, command); break; case C.ClipOp_0: break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipRect$2$doAntiAlias: function($receiver, rect, doAntiAlias) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, C.ClipOp_1, doAntiAlias); }, clipRect$1: function($receiver, rect) { return this.clipRect$3$clipOp$doAntiAlias($receiver, rect, C.ClipOp_1, true); }, clipRRect$2$doAntiAlias: function(_, rrect, doAntiAlias) { var t1 = this.__engine$_canvas, command = new H.PaintClipRRect(rrect, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.clipRect$2(0, new P.Rect(rrect.left, rrect.top, rrect.right, rrect.bottom), command); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipRRect$1: function($receiver, rrect) { return this.clipRRect$2$doAntiAlias($receiver, rrect, true); }, clipPath$2$doAntiAlias: function(_, path, doAntiAlias) { var command, t1 = this.__engine$_canvas; type$.SurfacePath._as(path); command = new H.PaintClipPath(path, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.clipRect$2(0, path.getBounds$0(0), command); t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, clipPath$1: function($receiver, path) { return this.clipPath$2$doAntiAlias($receiver, path, true); }, drawLine$3: function(_, p1, p2, paint) { var paintSpread, command, t2, t3, t4, t5, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); paintSpread = Math.max(H._getPaintSpread(paint), 1); paint._frozen = true; command = new H.PaintDrawLine(p1, p2, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t2 = p1._dx; t3 = p2._dx; t4 = p1._dy; t5 = p2._dy; t1._paintBounds.growLTRB$5(Math.min(H.checkNum(t2), H.checkNum(t3)) - paintSpread, Math.min(H.checkNum(t4), H.checkNum(t5)) - paintSpread, Math.max(H.checkNum(t2), H.checkNum(t3)) + paintSpread, Math.max(H.checkNum(t4), H.checkNum(t5)) + paintSpread, command); t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; t1._commands.push(command); }, drawRect$2: function(_, rect, paint) { this.__engine$_canvas.drawRect$2(0, rect, type$.SurfacePaint._as(paint)); }, drawRRect$2: function(_, rrect, paint) { this.__engine$_canvas.drawRRect$2(0, rrect, type$.SurfacePaint._as(paint)); }, drawDRRect$3: function(_, outer, inner, paint) { this.__engine$_canvas.drawDRRect$3(0, outer, inner, type$.SurfacePaint._as(paint)); }, drawCircle$3: function(_, c, radius, paint) { var paintSpread, command, distance, t2, t3, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; paintSpread = H._getPaintSpread(paint); paint._frozen = true; command = new H.PaintDrawCircle(c, radius, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); distance = radius + paintSpread; t2 = c._dx; t3 = c._dy; t1._paintBounds.growLTRB$5(t2 - distance, t3 - distance, t2 + distance, t3 + distance, command); t1._commands.push(command); }, drawArc$5: function(_, rect, startAngle, sweepAngle, useCenter, paint) { var forceMoveTo, path = P.Path_Path(); if (sweepAngle <= -6.283185307179586) { path.arcTo$4(0, rect, startAngle, -3.141592653589793, true); startAngle -= 3.141592653589793; path.arcTo$4(0, rect, startAngle, -3.141592653589793, false); startAngle -= 3.141592653589793; sweepAngle += 6.283185307179586; forceMoveTo = false; } else forceMoveTo = true; for (; sweepAngle >= 6.283185307179586; forceMoveTo = false) { path.arcTo$4(0, rect, startAngle, 3.141592653589793, forceMoveTo); startAngle += 3.141592653589793; path.arcTo$4(0, rect, startAngle, 3.141592653589793, false); startAngle += 3.141592653589793; sweepAngle -= 6.283185307179586; } path.arcTo$4(0, rect, startAngle, sweepAngle, forceMoveTo); this.__engine$_canvas.drawPath$2(0, path, type$.SurfacePaint._as(paint)); }, drawPath$2: function(_, path, paint) { this.__engine$_canvas.drawPath$2(0, path, type$.SurfacePaint._as(paint)); }, drawImageRect$4: function(image, src, dst, paint) { var t2, command, t1 = this.__engine$_canvas; type$.SurfacePaint._as(paint); t2 = t1.renderStrategy; paint._frozen = t1._didDraw = t2.hasImageElements = t2.hasArbitraryPaint = true; command = new H.PaintDrawImageRect(image, src, dst, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.grow$2(dst, command); t1._commands.push(command); }, drawParagraph$2: function(_, paragraph, offset) { this.__engine$_canvas.drawParagraph$2(0, paragraph, offset); }, drawShadow$4: function(_, path, color, elevation, transparentOccluder) { var shadowRect, command, t1 = this.__engine$_canvas; t1._didDraw = t1.renderStrategy.hasArbitraryPaint = true; shadowRect = H.computePenumbraBounds(path.getBounds$0(0), elevation); command = new H.PaintDrawShadow(type$.SurfacePath._as(path), color, elevation, transparentOccluder, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1._paintBounds.grow$2(shadowRect, command); t1._commands.push(command); } }; H._DomClip.prototype = { get$childContainer: function() { return this._DomClip__childContainer; }, createElement$0: function(_) { var element = this.defaultCreateElement$1("flt-clip"), t1 = W._ElementFactoryProvider_createElement_tag("flt-clip-interior", null); this._DomClip__childContainer = t1; t1 = t1.style; t1.position = "absolute"; t1 = this._DomClip__childContainer; t1.toString; element.appendChild(t1); return element; }, applyOverflow$2: function(element, clipBehaviour) { var t1; if (clipBehaviour !== C.Clip_0) { t1 = element.style; t1.overflow = "hidden"; t1.zIndex = "0"; } } }; H.PersistedClipRect.prototype = { recomputeTransformAndClip$0: function() { var _this = this; _this.__engine$_transform = _this.parent.__engine$_transform; if (_this.clipBehavior !== C.Clip_0) _this._localClipBounds = _this.rect; else _this._localClipBounds = null; _this._projectedClip = _this._localTransformInverse = null; }, createElement$0: function(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "rect"); return t1; }, apply$0: function() { var t5, _this = this, t1 = _this.rootElement.style, t2 = _this.rect, t3 = t2.left, t4 = H.S(t3) + "px"; t1.left = t4; t4 = t2.top; t5 = H.S(t4) + "px"; t1.top = t5; t5 = H.S(t2.right - t3) + "px"; t1.width = t5; t2 = H.S(t2.bottom - t4) + "px"; t1.height = t2; t1 = _this.rootElement; t1.toString; _this.applyOverflow$2(t1, _this.clipBehavior); t1 = _this._DomClip__childContainer.style; t3 = H.S(-t3) + "px"; t1.left = t3; t2 = H.S(-t4) + "px"; t1.top = t2; }, update$1: function(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (!J.$eq$(_this.rect, oldSurface.rect) || _this.clipBehavior !== oldSurface.clipBehavior) { _this._localClipBounds = null; _this.apply$0(); } }, $isClipRectEngineLayer0: 1 }; H.PersistedClipRRect.prototype = { recomputeTransformAndClip$0: function() { var t1, _this = this; _this.__engine$_transform = _this.parent.__engine$_transform; if (_this.clipBehavior !== C.Clip_0) { t1 = _this.rrect; _this._localClipBounds = new P.Rect(t1.left, t1.top, t1.right, t1.bottom); } else _this._localClipBounds = null; _this._projectedClip = _this._localTransformInverse = null; }, createElement$0: function(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "rrect"); return t1; }, apply$0: function() { var t4, _this = this, style = _this.rootElement.style, t1 = _this.rrect, t2 = t1.left, t3 = H.S(t2) + "px"; style.left = t3; t3 = t1.top; t4 = H.S(t3) + "px"; style.top = t4; t4 = H.S(t1.right - t2) + "px"; style.width = t4; t4 = H.S(t1.bottom - t3) + "px"; style.height = t4; t4 = H.S(t1.tlRadiusX) + "px"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-left-radius"), t4, ""); t4 = H.S(t1.trRadiusX) + "px"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-top-right-radius"), t4, ""); t4 = H.S(t1.brRadiusX) + "px"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-right-radius"), t4, ""); t1 = H.S(t1.blRadiusX) + "px"; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, "border-bottom-left-radius"), t1, ""); t1 = _this.rootElement; t1.toString; _this.applyOverflow$2(t1, _this.clipBehavior); t1 = _this._DomClip__childContainer.style; t2 = H.S(-t2) + "px"; t1.left = t2; t2 = H.S(-t3) + "px"; t1.top = t2; }, update$1: function(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (!J.$eq$(_this.rrect, oldSurface.rrect) || _this.clipBehavior !== oldSurface.clipBehavior) { _this._localClipBounds = null; _this.apply$0(); } }, $isClipRRectEngineLayer0: 1 }; H.PersistedPhysicalShape.prototype = { recomputeTransformAndClip$0: function() { var t1, t2, roundRect, rect, _this = this; _this.__engine$_transform = _this.parent.__engine$_transform; if (_this.clipBehavior !== C.Clip_0) { t1 = _this.path; t2 = t1.pathRef; roundRect = t2.fIsRRect ? t2._getRRect$0() : null; if (roundRect != null) _this._localClipBounds = new P.Rect(roundRect.left, roundRect.top, roundRect.right, roundRect.bottom); else { rect = t1.pathRef.getRect$0(); if (rect != null) _this._localClipBounds = rect; else _this._localClipBounds = null; } } else _this._localClipBounds = null; _this._projectedClip = _this._localTransformInverse = null; }, createElement$0: function(_) { var t1 = this.super$_DomClip$createElement(0); t1.setAttribute("clip-type", "physical-shape"); return t1; }, apply$0: function() { this._applyShape$0(); }, _applyShape$0: function() { var roundRect, borderRadius, style, rect, ovalRect, rx, ry, t4, t5, t6, t7, t8, t9, svgClipPath, t10, rootElementStyle, pathBounds2, boxShadowColor, _this = this, _s13_ = "border-radius", _s6_ = "hidden", t1 = _this.rootElement.style, t2 = _this.color, t3 = H.colorToCssString(t2); t1.toString; t1.backgroundColor = t3 == null ? "" : t3; t1 = _this.path; t3 = t1.pathRef; roundRect = t3.fIsRRect ? t3._getRRect$0() : null; if (roundRect != null) { borderRadius = H.S(roundRect.tlRadiusX) + "px " + H.S(roundRect.trRadiusX) + "px " + H.S(roundRect.brRadiusX) + "px " + H.S(roundRect.blRadiusX) + "px"; style = _this.rootElement.style; t1 = roundRect.left; t2 = H.S(t1) + "px"; style.left = t2; t2 = roundRect.top; t3 = H.S(t2) + "px"; style.top = t3; t3 = H.S(roundRect.right - t1) + "px"; style.width = t3; t3 = H.S(roundRect.bottom - t2) + "px"; style.height = t3; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), borderRadius, ""); t3 = _this._DomClip__childContainer.style; t1 = H.S(-t1) + "px"; t3.left = t1; t1 = H.S(-t2) + "px"; t3.top = t1; if (_this.clipBehavior !== C.Clip_0) style.overflow = _s6_; H.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } else { rect = t1.pathRef.getRect$0(); if (rect != null) { style = _this.rootElement.style; t1 = rect.left; t2 = H.S(t1) + "px"; style.left = t2; t2 = rect.top; t3 = H.S(t2) + "px"; style.top = t3; t3 = H.S(rect.right - t1) + "px"; style.width = t3; t3 = H.S(rect.bottom - t2) + "px"; style.height = t3; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), "", ""); t3 = _this._DomClip__childContainer.style; t1 = H.S(-t1) + "px"; t3.left = t1; t1 = H.S(-t2) + "px"; t3.top = t1; if (_this.clipBehavior !== C.Clip_0) style.overflow = _s6_; H.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } else { t3 = t1.pathRef; ovalRect = (t3.fIsOval ? t3.fRRectOrOvalStartIdx : -1) === -1 ? null : t3.getBounds$0(0); if (ovalRect != null) { t1 = ovalRect.right; t2 = ovalRect.left; rx = (t1 - t2) / 2; t1 = ovalRect.bottom; t3 = ovalRect.top; ry = (t1 - t3) / 2; borderRadius = rx === ry ? H.S(rx) + "px " : H.S(rx) + "px " + H.S(ry) + "px "; style = _this.rootElement.style; t1 = H.S(t2) + "px"; style.left = t1; t1 = H.S(t3) + "px"; style.top = t1; t1 = H.S(rx * 2) + "px"; style.width = t1; t1 = H.S(ry * 2) + "px"; style.height = t1; C.CssStyleDeclaration_methods._setPropertyHelper$3(style, C.CssStyleDeclaration_methods._browserPropertyName$1(style, _s13_), borderRadius, ""); t1 = _this._DomClip__childContainer.style; t2 = H.S(-t2) + "px"; t1.left = t2; t2 = H.S(-t3) + "px"; t1.top = t2; if (_this.clipBehavior !== C.Clip_0) style.overflow = _s6_; H.applyCssShadow(_this.rootElement, _this.pathBounds, _this.elevation, _this.shadowColor); return; } } } t3 = _this.elevation; t4 = t3 === 0; t5 = _this.pathBounds; if (t4) { t6 = t5.left; t7 = t5.top; t8 = t5.right; t9 = t5.bottom; svgClipPath = H._pathToSvgClipPath(t1, -t6, -t7, 1 / (t8 - t6), 1 / (t9 - t7)); t7 = t9; t6 = t8; } else { t6 = t5.right; t7 = t5.bottom; svgClipPath = H._pathToSvgClipPath(t1, 0, 0, 1 / t6, 1 / t7); } t8 = _this._clipElement; if (t8 != null) J.remove$0$ax(t8); t8 = _this._svgElement; if (t8 != null) J.remove$0$ax(t8); t8 = W.Element_Element$html(svgClipPath, new H._NullTreeSanitizer(), null); _this._clipElement = t8; t9 = $.$get$domRenderer(); t10 = _this.rootElement; t10.toString; t8.toString; t9.toString; t10.appendChild(t8); if (t4) { t1 = _this.rootElement; t1.toString; H.DomRenderer_setClipPath(t1, "url(#svgClip" + $._clipIdCounter + ")"); rootElementStyle = _this.rootElement.style; rootElementStyle.overflow = ""; t1 = t5.left; t2 = H.S(t1) + "px"; rootElementStyle.left = t2; t2 = t5.top; t3 = H.S(t2) + "px"; rootElementStyle.top = t3; t3 = H.S(t6 - t1) + "px"; rootElementStyle.width = t3; t3 = H.S(t7 - t2) + "px"; rootElementStyle.height = t3; C.CssStyleDeclaration_methods._setPropertyHelper$3(rootElementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(rootElementStyle, _s13_), "", ""); t3 = _this._DomClip__childContainer.style; t1 = "-" + H.S(t1) + "px"; t3.left = t1; t1 = "-" + H.S(t2) + "px"; t3.top = t1; return; } t4 = _this._DomClip__childContainer; t4.toString; H.DomRenderer_setClipPath(t4, "url(#svgClip" + $._clipIdCounter + ")"); rootElementStyle = _this.rootElement.style; rootElementStyle.overflow = ""; t4 = t5.left; t8 = H.S(t4) + "px"; rootElementStyle.left = t8; t8 = t5.top; t9 = H.S(t8) + "px"; rootElementStyle.top = t9; t9 = H.S(t6 - t4) + "px"; rootElementStyle.width = t9; t9 = H.S(t7 - t8) + "px"; rootElementStyle.height = t9; C.CssStyleDeclaration_methods._setPropertyHelper$3(rootElementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(rootElementStyle, _s13_), "", ""); t9 = _this._DomClip__childContainer.style; t4 = "-" + H.S(t4) + "px"; t9.left = t4; t4 = "-" + H.S(t8) + "px"; t9.top = t4; t4 = H.S(t6) + "px"; t9.width = t4; t4 = H.S(t7) + "px"; t9.height = t4; pathBounds2 = t1.getBounds$0(0); t4 = new H.SurfacePaintData(); t4.style = C.PaintingStyle_0; t4.color = t2; t4 = H._pathToSvgElement(t1, t4, H.S(pathBounds2.right), H.S(pathBounds2.bottom)); _this._svgElement = t4; t1 = _this.rootElement; t1.toString; t4.toString; t1.insertBefore(t4, _this._DomClip__childContainer); t3 = H.computeShadow(t5, t3); t3.toString; boxShadowColor = H.toShadowColor(_this.shadowColor); t5 = _this._svgElement.style; t4 = t3.offset; t1 = boxShadowColor.value; t1 = "drop-shadow(" + H.S(t4._dx) + "px " + H.S(t4._dy) + "px " + H.S(t3.blurWidth) + "px rgba(" + (t1 >>> 16 & 255) + ", " + (t1 >>> 8 & 255) + ", " + (t1 & 255) + ", " + H.S((t1 >>> 24 & 255) / 255) + "))"; t5.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t5, C.CssStyleDeclaration_methods._browserPropertyName$1(t5, "filter"), t1, ""); t1 = "translate(-" + H.S(pathBounds2.left) + "px, -" + H.S(pathBounds2.top) + "px)"; C.CssStyleDeclaration_methods._setPropertyHelper$3(t5, C.CssStyleDeclaration_methods._browserPropertyName$1(t5, "transform"), t1, ""); t1 = _this.rootElement.style; t1.backgroundColor = ""; }, update$1: function(_, oldSurface) { var t1, t2, t3, _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); t1 = oldSurface.path == _this.path; if (!t1) _this._localClipBounds = null; t1 = !t1 || oldSurface.elevation != _this.elevation || !oldSurface.shadowColor.$eq(0, _this.shadowColor) || !oldSurface.color.$eq(0, _this.color); t2 = oldSurface._clipElement; if (t1) { if (t2 != null) J.remove$0$ax(t2); oldSurface._clipElement = null; t1 = oldSurface._svgElement; if (t1 != null) J.remove$0$ax(t1); oldSurface._svgElement = null; t1 = _this._clipElement; if (t1 != null) J.remove$0$ax(t1); _this._clipElement = null; t1 = _this._svgElement; if (t1 != null) J.remove$0$ax(t1); _this._svgElement = null; t1 = _this.rootElement; t1.toString; H.DomRenderer_setClipPath(t1, ""); _this._applyShape$0(); } else { _this._clipElement = t2; if (t2 != null) { t1 = $.$get$domRenderer(); t3 = _this.rootElement; t3.toString; t1.toString; t3.appendChild(t2); } oldSurface._clipElement = null; t1 = _this._svgElement = oldSurface._svgElement; if (t1 != null) _this.rootElement.insertBefore(t1, _this._DomClip__childContainer); } }, $isPhysicalShapeEngineLayer0: 1 }; H.PersistedClipPath.prototype = { createElement$0: function(_) { return this.defaultCreateElement$1("flt-clippath"); }, recomputeTransformAndClip$0: function() { var _this = this; _this.super$PersistedContainerSurface$recomputeTransformAndClip(); if (_this.clipBehavior !== C.Clip_0) { if (_this._localClipBounds == null) _this._localClipBounds = _this.clipPath.getBounds$0(0); } else _this._localClipBounds = null; }, apply$0: function() { var t2, t3, _this = this, t1 = _this._clipElement; if (t1 != null) J.remove$0$ax(t1); t1 = W.Element_Element$html(H.createSvgClipDef(type$.HtmlElement._as(_this.rootElement), _this.clipPath), new H._NullTreeSanitizer(), null); _this._clipElement = t1; t2 = $.$get$domRenderer(); t3 = _this.rootElement; t3.toString; t1.toString; t2.toString; t3.appendChild(t1); }, update$1: function(_, oldSurface) { var t1, _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (oldSurface.clipPath != _this.clipPath) { _this._localClipBounds = null; t1 = oldSurface._clipElement; if (t1 != null) J.remove$0$ax(t1); _this.apply$0(); } else _this._clipElement = oldSurface._clipElement; oldSurface._clipElement = null; }, discard$0: function() { var t1 = this._clipElement; if (t1 != null) J.remove$0$ax(t1); this._clipElement = null; this.super$PersistedContainerSurface$discard(); }, $isClipPathEngineLayer0: 1 }; H.PersistedOffset.prototype = { recomputeTransformAndClip$0: function() { var t2, t3, _this = this, t1 = _this.parent.__engine$_transform; _this.__engine$_transform = t1; t2 = _this.dx; if (t2 !== 0 || _this.dy !== 0) { t1.toString; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t1); _this.__engine$_transform = t3; t3.translate$2(0, t2, _this.dy); } _this._localTransformInverse = _this._projectedClip = null; }, get$localTransformInverse: function() { var _this = this, t1 = _this._localTransformInverse; if (t1 == null) { t1 = H.Matrix4$identity(); t1.setTranslationRaw$3(-_this.dx, -_this.dy, 0); _this._localTransformInverse = t1; } return t1; }, createElement$0: function(_) { var element = document.createElement("flt-offset"); H.DomRenderer_setElementStyle(element, "position", "absolute"); H.DomRenderer_setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0: function() { var t2, t1 = this.rootElement; t1.toString; t2 = "translate(" + H.S(this.dx) + "px, " + H.S(this.dy) + "px)"; t1.style.transform = t2; }, update$1: function(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (oldSurface.dx !== _this.dx || oldSurface.dy !== _this.dy) _this.apply$0(); }, $isOffsetEngineLayer0: 1 }; H.PersistedOpacity.prototype = { recomputeTransformAndClip$0: function() { var t2, dx, dy, _this = this, t1 = _this.parent.__engine$_transform; _this.__engine$_transform = t1; t2 = _this.offset; dx = t2._dx; dy = t2._dy; if (dx !== 0 || dy !== 0) { t1.toString; t2 = new H.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); _this.__engine$_transform = t2; t2.translate$2(0, dx, dy); } _this._projectedClip = _this._localTransformInverse = null; }, get$localTransformInverse: function() { var t2, t1 = this._localTransformInverse; if (t1 == null) { t1 = this.offset; t2 = H.Matrix4$identity(); t2.setTranslationRaw$3(-t1._dx, -t1._dy, 0); this._localTransformInverse = t2; t1 = t2; } return t1; }, createElement$0: function(_) { var element = $.$get$domRenderer().createElement$1(0, "flt-opacity"); H.DomRenderer_setElementStyle(element, "position", "absolute"); H.DomRenderer_setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0: function() { var t2, t1 = this.rootElement; t1.toString; H.DomRenderer_setElementStyle(t1, "opacity", H.S(this.alpha / 255)); t2 = this.offset; t2 = "translate(" + H.S(t2._dx) + "px, " + H.S(t2._dy) + "px)"; t1.style.transform = t2; }, update$1: function(_, oldSurface) { var _this = this; _this.super$PersistedContainerSurface$update(0, oldSurface); if (_this.alpha != oldSurface.alpha || !_this.offset.$eq(0, oldSurface.offset)) _this.apply$0(); }, $isOpacityEngineLayer0: 1 }; H.SurfacePaint.prototype = { set$blendMode: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.blendMode = value; }, set$style: function(_, value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.style = value; }, set$strokeWidth: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeWidth = value; }, set$strokeCap: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeCap = value; }, set$strokeJoin: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.strokeJoin = value; }, set$isAntiAlias: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.isAntiAlias = value; }, get$color: function(_) { var t1 = this._paintData.color; return t1 == null ? C.Color_4278190080 : t1; }, set$color: function(_, value) { var t1, _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } t1 = _this._paintData; t1.color = J.get$runtimeType$(value) === C.Type_Color_MG2 ? value : new P.Color(value.get$value(value)); }, set$invertColors: function(value) { }, set$shader: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.shader = value; }, set$maskFilter: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.maskFilter = value; }, set$filterQuality: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.filterQuality = value; }, set$colorFilter: function(value) { var _this = this; if (_this._frozen) { _this._paintData = _this._paintData.clone$0(0); _this._frozen = false; } _this._paintData.colorFilter = value; }, toString$0: function(_) { var t3, semicolon, _this = this, t1 = _this._paintData.style, t2 = t1 == null; if ((t2 ? C.PaintingStyle_0 : t1) === C.PaintingStyle_1) { t1 = "Paint(" + (t2 ? C.PaintingStyle_0 : t1).toString$0(0); t2 = _this._paintData.strokeWidth; t3 = t2 == null; if ((t3 ? 0 : t2) !== 0) t1 += " " + H.S(t3 ? 0 : t2); else t1 += " hairline"; t2 = _this._paintData.strokeCap; t3 = t2 == null; if ((t3 ? C.StrokeCap_0 : t2) !== C.StrokeCap_0) t1 += " " + (t3 ? C.StrokeCap_0 : t2).toString$0(0); semicolon = "; "; } else { semicolon = ""; t1 = "Paint("; } t2 = _this._paintData; if (!t2.isAntiAlias) { t1 += semicolon + "antialias off"; semicolon = "; "; } t2 = t2.color; if (!(t2 == null ? C.Color_4278190080 : t2).$eq(0, C.Color_4278190080)) { t2 = _this._paintData.color; t1 += semicolon + (t2 == null ? C.Color_4278190080 : t2).toString$0(0); } t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isPaint: 1 }; H.SurfacePaintData.prototype = { clone$0: function(_) { var _this = this, t1 = new H.SurfacePaintData(); t1.blendMode = _this.blendMode; t1.filterQuality = _this.filterQuality; t1.maskFilter = _this.maskFilter; t1.shader = _this.shader; t1.isAntiAlias = _this.isAntiAlias; t1.color = _this.color; t1.colorFilter = _this.colorFilter; t1.strokeWidth = _this.strokeWidth; t1.style = _this.style; t1.strokeJoin = _this.strokeJoin; t1.strokeCap = _this.strokeCap; return t1; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.Conic.prototype = { toQuads$0: function() { var dst, t1, t2, t3, controlPointOffset, skipSubdivide, pointCount, hasNonFinitePoints, p, _this = this, pointList = H.setRuntimeTypeInfo([], type$.JSArray_Offset), subdivideCount = _this._computeSubdivisionCount$1(0.25), quadCount = C.JSInt_methods._shlPositive$1(1, subdivideCount); pointList.push(new P.Offset(_this.p0x, _this.p0y)); if (subdivideCount === 5) { dst = new H._ConicPair(); _this._chop$1(dst); t1 = dst.first; t1.toString; t2 = dst.second; t2.toString; t3 = t1.p1x; if (t3 == t1.p2x && t1.p1y == t1.p2y && t2.p0x == t2.p1x && t2.p0y == t2.p1y) { controlPointOffset = new P.Offset(t3, t1.p1y); pointList.push(controlPointOffset); pointList.push(controlPointOffset); pointList.push(controlPointOffset); pointList.push(new P.Offset(t2.p2x, t2.p2y)); quadCount = 2; skipSubdivide = true; } else skipSubdivide = false; } else skipSubdivide = false; if (!skipSubdivide) H.Conic__subdivide(_this, subdivideCount, pointList); pointCount = 2 * quadCount + 1; p = 0; while (true) { if (!(p < pointCount)) { hasNonFinitePoints = false; break; } t1 = pointList[p]; t2 = t1._dx; t2.toString; if (!isNaN(t2)) { t1 = t1._dy; t1.toString; t1 = isNaN(t1); } else t1 = true; if (t1) { hasNonFinitePoints = true; break; } ++p; } if (hasNonFinitePoints) for (t1 = pointCount - 1, t2 = _this.p1x, t3 = _this.p1y, p = 1; p < t1; ++p) pointList[p] = new P.Offset(t2, t3); return pointList; }, _chop$1: function(pair) { var w2, scaleHalf, _this = this, t1 = _this.fW, scale = 1 / (1 + t1), newW = Math.sqrt(0.5 + t1 * 0.5), t2 = _this.p1x, t3 = t1 * t2, t4 = _this.p1y, t5 = t1 * t4, t6 = _this.p0x, t7 = _this.p2x, t8 = (t6 + 2 * t3 + t7) * scale * 0.5, t9 = _this.p0y, t10 = _this.p2y, t11 = (t9 + 2 * t5 + t10) * scale * 0.5, m = new P.Offset(t8, t11); if (isNaN(t8) || isNaN(t11)) { w2 = t1 * 2; scaleHalf = scale * 0.5; m = new P.Offset((t6 + w2 * t2 + t7) * scaleHalf, (t9 + w2 * t4 + t10) * scaleHalf); } t1 = m._dx; t2 = m._dy; pair.first = new H.Conic(t6, t9, (t6 + t3) * scale, (t9 + t5) * scale, t1, t2, newW); pair.second = new H.Conic(t1, t2, (t7 + t3) * scale, (t10 + t5) * scale, t7, t10, newW); }, chopAtYExtrema$1: function(dst) { var _this = this, t = _this._findYExtrema$0(); if (t == null) { dst.push(_this); return; } if (!_this._chopAt$3$cleanupMiddle(t, dst, true)) { dst.push(_this); return; } }, _findYExtrema$0: function() { var wP10, quadRoots, _this = this, t1 = _this.p2y, t2 = _this.p0y, p20 = t1 - t2; t1 = _this.fW; wP10 = t1 * (_this.p1y - t2); quadRoots = new H._QuadRoots(); if (quadRoots.findRoots$3(t1 * p20 - p20, p20 - 2 * wP10, wP10) === 1) return quadRoots.root0; return null; }, _chopAt$3$cleanupMiddle: function(t, dst, cleanupMiddle) { var chopPointX, chopPointY, t2, t3, t4, _this = this, tx0 = _this.p0x, ty0 = _this.p0y, t1 = _this.fW, tx1 = _this.p1x * t1, ty1 = _this.p1y * t1, ty2 = _this.p2y, dx0 = tx0 + (tx1 - tx0) * t, dx2 = tx1 + (_this.p2x - tx1) * t, dy0 = ty0 + (ty1 - ty0) * t, dz0 = 1 + (t1 - 1) * t, dz2 = t1 + (1 - t1) * t, dz1 = dz0 + (dz2 - dz0) * t, root = Math.sqrt(dz1); if (Math.abs(root - 0) < 0.000244140625) return false; if (Math.abs(dz0 - 0) < 0.000244140625 || Math.abs(dz1 - 0) < 0.000244140625 || Math.abs(dz2 - 0) < 0.000244140625) return false; chopPointX = (dx0 + (dx2 - dx0) * t) / dz1; chopPointY = (dy0 + (ty1 + (ty2 - ty1) * t - dy0) * t) / dz1; t1 = _this.p0x; t2 = _this.p0y; t3 = _this.p2x; t4 = _this.p2y; dst.push(new H.Conic(t1, t2, dx0 / dz0, chopPointY, chopPointX, chopPointY, dz0 / root)); dst.push(new H.Conic(chopPointX, chopPointY, dx2 / dz2, chopPointY, t3, t4, dz2 / root)); return true; }, _computeSubdivisionCount$1: function(tolerance) { var a, k, x, y, error, pow2, _this = this; if (tolerance < 0) return 0; a = _this.fW - 1; k = a / (4 * (2 + a)); x = k * (_this.p0x - 2 * _this.p1x + _this.p2x); y = k * (_this.p0y - 2 * _this.p1y + _this.p2y); error = Math.sqrt(x * x + y * y); for (pow2 = 0; pow2 < 5; ++pow2) { if (error <= tolerance) break; error *= 0.25; } return pow2; }, evalTangentAt$1: function(t) { var t1, t2, p20x, t3, p20y, cx, cy, quadC, _this = this; if (!(t === 0 && _this.p0x == _this.p1x && _this.p0y == _this.p1y)) t1 = t === 1 && _this.p1x == _this.p2x && _this.p1y == _this.p2y; else t1 = true; if (t1) return new P.Offset(_this.p2x - _this.p0x, _this.p2y - _this.p0y); t1 = _this.p2x; t2 = _this.p0x; p20x = t1 - t2; t1 = _this.p2y; t3 = _this.p0y; p20y = t1 - t3; t1 = _this.fW; cx = t1 * (_this.p1x - t2); cy = t1 * (_this.p1y - t3); quadC = H._SkQuadCoefficients$(t1 * p20x - p20x, t1 * p20y - p20y, p20x - cx - cx, p20y - cy - cy, cx, cy); return new P.Offset(quadC.evalX$1(t), quadC.evalY$1(t)); } }; H._QuadBounds.prototype = {}; H._ConicBounds.prototype = {}; H._ConicPair.prototype = {}; H._CubicBounds.prototype = {}; H.SurfacePath.prototype = { _resetFields$0: function() { var _this = this; _this.fLastMoveToIndex = 0; _this._fillType = C.PathFillType_0; _this._firstDirection = _this._convexityType = -1; }, _copyFields$1: function(source) { var _this = this; _this._fillType = source._fillType; _this.fLastMoveToIndex = source.fLastMoveToIndex; _this._convexityType = source._convexityType; _this._firstDirection = source._firstDirection; }, set$fillType: function(value) { this._fillType = value; }, reset$0: function(_) { if (this.pathRef._fVerbsLength !== 0) { this.pathRef = H.PathRef$(); this._resetFields$0(); } }, moveTo$2: function(_, x, y) { var _this = this, pointIndex = _this.pathRef.growForVerb$2(0, 0); _this.fLastMoveToIndex = pointIndex + 1; _this.pathRef.setPoint$3(pointIndex, x, y); _this._firstDirection = _this._convexityType = -1; }, relativeMoveTo$2: function(dx, dy) { var pointIndex, t1 = this.pathRef, pointCount = t1._fPointsLength; if (pointCount === 0) this.moveTo$2(0, dx, dy); else { pointIndex = (pointCount - 1) * 2; t1 = t1._fPoints; this.moveTo$2(0, t1[pointIndex] + dx, t1[pointIndex + 1] + dy); } }, _injectMoveToIfNeeded$0: function() { var t2, x, y, pointIndex, t1 = this.fLastMoveToIndex; if (t1 <= 0) { t2 = this.pathRef; if (t2._fPointsLength === 0) { x = 0; y = 0; } else { pointIndex = 2 * (-t1 - 1); t1 = t2._fPoints; x = t1[pointIndex]; y = t1[pointIndex + 1]; } this.moveTo$2(0, x, y); } }, lineTo$2: function(_, x, y) { var pointIndex, _this = this; if (_this.fLastMoveToIndex <= 0) _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(1, 0); _this.pathRef.setPoint$3(pointIndex, x, y); _this._firstDirection = _this._convexityType = -1; }, quadraticBezierTo$4: function(x1, y1, x2, y2) { var pointIndex, _this = this; _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(2, 0); _this.pathRef.setPoint$3(pointIndex, x1, y1); _this.pathRef.setPoint$3(pointIndex + 1, x2, y2); _this._firstDirection = _this._convexityType = -1; }, conicTo$5: function(_, x1, y1, x2, y2, w) { var pointIndex, _this = this; _this._injectMoveToIfNeeded$0(); pointIndex = _this.pathRef.growForVerb$2(3, w); _this.pathRef.setPoint$3(pointIndex, x1, y1); _this.pathRef.setPoint$3(pointIndex + 1, x2, y2); _this._firstDirection = _this._convexityType = -1; }, close$0: function(_) { var _this = this, t1 = _this.pathRef, verbCount = t1._fVerbsLength; if (verbCount !== 0 && t1._fVerbs[verbCount - 1] !== 5) t1.growForVerb$2(5, 0); t1 = _this.fLastMoveToIndex; if (t1 >= 0) _this.fLastMoveToIndex = -t1; _this._firstDirection = _this._convexityType = -1; }, addRect$1: function(_, rect) { this.addRectWithDirection$3(rect, 0, 0); }, _hasOnlyMoveTos$0: function() { var i, t1 = this.pathRef, verbCount = t1._fVerbsLength; for (t1 = t1._fVerbs, i = 0; i < verbCount; ++i) switch (t1[i]) { case 1: case 2: case 3: case 4: return false; } return true; }, addRectWithDirection$3: function(rect, direction, startIndex) { var pointIndex1, pointIndex2, pointIndex3, t1, t2, t3, t4, _this = this, isRect = _this._hasOnlyMoveTos$0(), finalDirection = _this._hasOnlyMoveTos$0() ? direction : -1, pointIndex0 = _this.pathRef.growForVerb$2(0, 0); _this.fLastMoveToIndex = pointIndex0 + 1; pointIndex1 = _this.pathRef.growForVerb$2(1, 0); pointIndex2 = _this.pathRef.growForVerb$2(1, 0); pointIndex3 = _this.pathRef.growForVerb$2(1, 0); _this.pathRef.growForVerb$2(5, 0); t1 = _this.pathRef; if (direction === 0) { t2 = rect.left; t3 = rect.top; t1.setPoint$3(pointIndex0, t2, t3); t1 = _this.pathRef; t4 = rect.right; t1.setPoint$3(pointIndex1, t4, t3); t3 = _this.pathRef; t1 = rect.bottom; t3.setPoint$3(pointIndex2, t4, t1); _this.pathRef.setPoint$3(pointIndex3, t2, t1); } else { t2 = rect.left; t3 = rect.bottom; t1.setPoint$3(pointIndex3, t2, t3); t1 = _this.pathRef; t4 = rect.right; t1.setPoint$3(pointIndex2, t4, t3); t3 = _this.pathRef; t1 = rect.top; t3.setPoint$3(pointIndex1, t4, t1); _this.pathRef.setPoint$3(pointIndex0, t2, t1); } t1 = _this.pathRef; t1.fIsRect = isRect; t1.fRRectOrOvalIsCCW = direction === 1; t1.fRRectOrOvalStartIdx = 0; _this._firstDirection = _this._convexityType = -1; _this._firstDirection = finalDirection; }, arcTo$4: function(_, rect, startAngle, sweepAngle, forceMoveTo) { var lonePoint, t2, t3, stopAngle, cosStart, sinStart, cosStop, sinStop, sweep, deltaRad, stopAngle0, dir, radiusX, radiusY, px, py, x, y, quadrant, conics, i, quadPointIndex, p0, p1, p2, lastQuadrantPoint, dot, offCurveX, offCurveY, cosThetaOver2, t4, conicCount, centerX, centerY, _i, conic, firstConicPx, firstConicPy, _this = this, t1 = rect.right - rect.left; if (t1 === 0 && rect.bottom - rect.top === 0) return; if (_this.pathRef._fPointsLength === 0) forceMoveTo = true; lonePoint = H._arcIsLonePoint(rect, startAngle, sweepAngle); if (lonePoint != null) { t2 = lonePoint._dx; t3 = lonePoint._dy; if (forceMoveTo) _this.moveTo$2(0, t2, t3); else _this.lineTo$2(0, t2, t3); } stopAngle = startAngle + sweepAngle; cosStart = Math.cos(startAngle); sinStart = Math.sin(startAngle); cosStop = Math.cos(stopAngle); sinStop = Math.sin(stopAngle); if (Math.abs(cosStart - cosStop) < 0.000244140625 && Math.abs(sinStart - sinStop) < 0.000244140625) { sweep = Math.abs(sweepAngle) * 180 / 3.141592653589793; if (sweep <= 360 && sweep > 359) { deltaRad = sweepAngle < 0 ? -0.001953125 : 0.001953125; stopAngle0 = stopAngle; do { stopAngle0 -= deltaRad; cosStop = Math.cos(stopAngle0); sinStop = Math.sin(stopAngle0); } while (cosStart === cosStop && sinStart === sinStop); } } dir = sweepAngle > 0 ? 0 : 1; radiusX = t1 / 2; radiusY = (rect.bottom - rect.top) / 2; px = rect.get$center()._dx + radiusX * Math.cos(stopAngle); py = rect.get$center()._dy + radiusY * Math.sin(stopAngle); if (cosStart === cosStop && sinStart === sinStop) { if (forceMoveTo) _this.moveTo$2(0, px, py); else _this._lineToIfNotTooCloseToLastPoint$2(px, py); return; } x = cosStart * cosStop + sinStart * sinStop; y = cosStart * sinStop - sinStart * cosStop; if (Math.abs(y) <= 0.000244140625) if (x > 0) if (!(y >= 0 && dir === 0)) t1 = y <= 0 && dir === 1; else t1 = true; else t1 = false; else t1 = false; if (t1) { if (forceMoveTo) _this.moveTo$2(0, px, py); else _this._lineToIfNotTooCloseToLastPoint$2(px, py); return; } t1 = dir === 1; if (t1) y = -y; if (0 === y) quadrant = 2; else if (0 === x) quadrant = y > 0 ? 1 : 3; else { t2 = y < 0; quadrant = t2 ? 2 : 0; if (x < 0 !== t2) ++quadrant; } conics = H.setRuntimeTypeInfo([], type$.JSArray_Conic); for (i = 0; i < quadrant; ++i) { quadPointIndex = i * 2; p0 = C.List_SbI[quadPointIndex]; p1 = C.List_SbI[quadPointIndex + 1]; p2 = C.List_SbI[quadPointIndex + 2]; conics.push(new H.Conic(p0._dx, p0._dy, p1._dx, p1._dy, p2._dx, p2._dy, 0.707106781)); } lastQuadrantPoint = C.List_SbI[quadrant * 2]; t2 = lastQuadrantPoint._dx; t3 = lastQuadrantPoint._dy; dot = x * t2 + y * t3; if (dot < 1) { offCurveX = t2 + x; offCurveY = t3 + y; cosThetaOver2 = Math.sqrt((1 + dot) / 2); t4 = cosThetaOver2 * Math.sqrt(offCurveX * offCurveX + offCurveY * offCurveY); offCurveX /= t4; offCurveY /= t4; if (!(Math.abs(offCurveX - t2) < 0.000244140625) || !(Math.abs(offCurveY - t3) < 0.000244140625)) { conics.push(new H.Conic(t2, t3, offCurveX, offCurveY, x, y, cosThetaOver2)); conicCount = quadrant + 1; } else conicCount = quadrant; } else conicCount = quadrant; centerX = rect.get$center()._dx; centerY = rect.get$center()._dy; for (t2 = conics.length, _i = 0; _i < t2; ++_i) { conic = conics[_i]; x = conic.p0x; y = conic.p0y; if (t1) y = -y; conic.p0x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p0y = (cosStart * y + sinStart * x) * radiusY + centerY; x = conic.p1x; y = conic.p1y; if (t1) y = -y; conic.p1x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p1y = (cosStart * y + sinStart * x) * radiusY + centerY; x = conic.p2x; y = conic.p2y; if (t1) y = -y; conic.p2x = (cosStart * x - sinStart * y) * radiusX + centerX; conic.p2y = (cosStart * y + sinStart * x) * radiusY + centerY; } t1 = conics[0]; firstConicPx = t1.p0x; firstConicPy = t1.p0y; if (forceMoveTo) _this.moveTo$2(0, firstConicPx, firstConicPy); else _this._lineToIfNotTooCloseToLastPoint$2(firstConicPx, firstConicPy); for (i = 0; i < conicCount; ++i) { conic = conics[i]; _this.conicTo$5(0, conic.p1x, conic.p1y, conic.p2x, conic.p2y, conic.fW); } _this._firstDirection = _this._convexityType = -1; }, _lineToIfNotTooCloseToLastPoint$2: function(px, py) { var lastPoint, t1 = this.pathRef, pointCount = t1._fPointsLength; if (pointCount !== 0) { lastPoint = t1.atPoint$1(pointCount - 1); if (!(Math.abs(px - lastPoint._dx) < 0.000244140625) || !(Math.abs(py - lastPoint._dy) < 0.000244140625)) this.lineTo$2(0, px, py); } }, arcToPoint$3$clockwise$radius: function(arcEnd, clockwise, radius) { var t1, pointCount, lastPointX, lastPointY, pointIndex, x, y, rx, ry, midPointX, midPointY, cosXAxisRotation, sinXAxisRotation, xPrime, yPrime, radiiScale, unitPts0x, unitPts0y, unitPts1x, unitPts1y, deltaX, deltaY, scaleFactor, centerPointX, centerPointY, theta1, thetaArc, segments, thetaWidth, t, w, expectIntegers, startTheta, i, endTheta, sinEndTheta, cosEndTheta, xStart, yStart, xEnd, yEnd, _this = this; _this._injectMoveToIfNeeded$0(); t1 = _this.pathRef; pointCount = t1._fPointsLength; if (pointCount === 0) { lastPointX = 0; lastPointY = 0; } else { pointIndex = (pointCount - 1) * 2; t1 = t1._fPoints; lastPointX = t1[pointIndex]; lastPointY = t1[pointIndex + 1]; } x = arcEnd._dx; y = arcEnd._dy; rx = Math.abs(radius.x); ry = Math.abs(radius.y); if (lastPointX === x && lastPointY === y || C.JSNumber_methods.toInt$0(rx) === 0 || C.JSNumber_methods.toInt$0(ry) === 0) if (rx === 0 || ry === 0) { _this.lineTo$2(0, x, y); return; } midPointX = (lastPointX - x) / 2; midPointY = (lastPointY - y) / 2; cosXAxisRotation = Math.cos(0); sinXAxisRotation = Math.sin(0); xPrime = cosXAxisRotation * midPointX + sinXAxisRotation * midPointY; yPrime = -sinXAxisRotation * midPointX + cosXAxisRotation * midPointY; radiiScale = xPrime * xPrime / (rx * rx) + yPrime * yPrime / (ry * ry); if (radiiScale > 1) { radiiScale = Math.sqrt(radiiScale); rx *= radiiScale; ry *= radiiScale; } unitPts0x = (lastPointX * cosXAxisRotation + lastPointY * sinXAxisRotation) / rx; unitPts0y = (lastPointY * cosXAxisRotation - lastPointX * sinXAxisRotation) / ry; unitPts1x = (x * cosXAxisRotation + y * sinXAxisRotation) / rx; unitPts1y = (y * cosXAxisRotation - x * sinXAxisRotation) / ry; deltaX = unitPts1x - unitPts0x; deltaY = unitPts1y - unitPts0y; scaleFactor = -Math.sqrt(Math.max(1 / (deltaX * deltaX + deltaY * deltaY) - 0.25, 0)); centerPointX = (unitPts0x + unitPts1x) / 2 - deltaY * scaleFactor; centerPointY = (unitPts0y + unitPts1y) / 2 + deltaX * scaleFactor; theta1 = Math.atan2(unitPts0y - centerPointY, unitPts0x - centerPointX); thetaArc = Math.atan2(unitPts1y - centerPointY, unitPts1x - centerPointX) - theta1; if (thetaArc > 0) thetaArc -= 6.283185307179586; if (Math.abs(thetaArc) < 0.0000031415926535897933) { _this.lineTo$2(0, x, y); return; } segments = C.JSInt_methods.toInt$0(C.JSNumber_methods.ceil$0(Math.abs(thetaArc / 2.0943951023931953))); thetaWidth = thetaArc / segments; t = Math.tan(thetaWidth / 2); if (!isFinite(t)) return; w = Math.sqrt(0.5 + Math.cos(thetaWidth) * 0.5); expectIntegers = Math.abs(1.5707963267948966 - Math.abs(thetaWidth) - 0) < 0.000244140625 && C.JSNumber_methods.floor$0(rx) === rx && C.JSNumber_methods.floor$0(ry) === ry && C.JSNumber_methods.floor$0(x) === x && C.JSNumber_methods.floor$0(y) === y; for (startTheta = theta1, i = 0; i < segments; ++i, startTheta = endTheta) { endTheta = startTheta + thetaWidth; sinEndTheta = Math.sin(endTheta); if (Math.abs(sinEndTheta - 0) < 0.000244140625) sinEndTheta = 0; cosEndTheta = Math.cos(endTheta); if (Math.abs(cosEndTheta - 0) < 0.000244140625) cosEndTheta = 0; unitPts1x = cosEndTheta + centerPointX; unitPts1y = sinEndTheta + centerPointY; unitPts0x = (unitPts1x + t * sinEndTheta) * rx; unitPts0y = (unitPts1y - t * cosEndTheta) * ry; unitPts1x *= rx; unitPts1y *= ry; xStart = unitPts0x * cosXAxisRotation - unitPts0y * sinXAxisRotation; yStart = unitPts0y * cosXAxisRotation + unitPts0x * sinXAxisRotation; xEnd = unitPts1x * cosXAxisRotation - unitPts1y * sinXAxisRotation; yEnd = unitPts1y * cosXAxisRotation + unitPts1x * sinXAxisRotation; if (expectIntegers) { xStart = Math.floor(xStart + 0.5); yStart = Math.floor(yStart + 0.5); xEnd = Math.floor(xEnd + 0.5); yEnd = Math.floor(yEnd + 0.5); } _this.conicTo$5(0, xStart, yStart, xEnd, yEnd, w); } }, addOval$1: function(_, oval) { this._addOval$3(oval, 0, 0); }, _addOval$3: function(oval, direction, startIndex) { var t1, _this = this, isOval = _this._hasOnlyMoveTos$0(), left = oval.left, right = oval.right, centerX = (left + right) / 2, $top = oval.top, bottom = oval.bottom, centerY = ($top + bottom) / 2; if (direction === 0) { _this.moveTo$2(0, right, centerY); _this.conicTo$5(0, right, bottom, centerX, bottom, 0.707106781); _this.conicTo$5(0, left, bottom, left, centerY, 0.707106781); _this.conicTo$5(0, left, $top, centerX, $top, 0.707106781); _this.conicTo$5(0, right, $top, right, centerY, 0.707106781); } else { _this.moveTo$2(0, right, centerY); _this.conicTo$5(0, right, $top, centerX, $top, 0.707106781); _this.conicTo$5(0, left, $top, left, centerY, 0.707106781); _this.conicTo$5(0, left, bottom, centerX, bottom, 0.707106781); _this.conicTo$5(0, right, bottom, right, centerY, 0.707106781); } _this.close$0(0); t1 = _this.pathRef; t1.fIsOval = isOval; t1.fRRectOrOvalIsCCW = direction === 1; t1.fRRectOrOvalStartIdx = 0; _this._firstDirection = _this._convexityType = -1; if (isOval) _this._firstDirection = direction; }, addArc$3: function(_, oval, startAngle, sweepAngle) { var startOver90, startOver90I, startIndex, t1; if (0 === sweepAngle) return; if (sweepAngle >= 6.283185307179586 || sweepAngle <= -6.283185307179586) { startOver90 = startAngle / 1.5707963267948966; startOver90I = Math.floor(startOver90 + 0.5); if (Math.abs(startOver90 - startOver90I - 0) < 0.000244140625) { startIndex = startOver90I + 1; if (startIndex < 0) startIndex += 4; t1 = sweepAngle > 0 ? 0 : 1; this._addOval$3(oval, t1, C.JSNumber_methods.toInt$0(startIndex)); return; } } this.arcTo$4(0, oval, startAngle, sweepAngle, true); }, addRRect$1: function(_, rrect) { var t6, width, height, tlRadiusX, trRadiusX, blRadiusX, brRadiusX, tlRadiusY, trRadiusY, blRadiusY, brRadiusY, scale, _this = this, isRRect = _this._hasOnlyMoveTos$0(), t1 = rrect.left, t2 = rrect.top, t3 = rrect.right, t4 = rrect.bottom, bounds = new P.Rect(t1, t2, t3, t4), t5 = rrect.tlRadiusX; if (t5 === 0 || rrect.tlRadiusY === 0) if (rrect.trRadiusX === 0 || rrect.trRadiusY === 0) if (rrect.blRadiusX === 0 || rrect.blRadiusY === 0) t6 = rrect.brRadiusX === 0 || rrect.brRadiusY === 0; else t6 = false; else t6 = false; else t6 = false; if (t6 || rrect.get$isEmpty(rrect)) _this.addRectWithDirection$3(bounds, 0, 3); else if (H._isRRectOval(rrect)) _this._addOval$3(bounds, 0, 3); else { width = t3 - t1; height = t4 - t2; tlRadiusX = Math.max(0, H.checkNum(t5)); trRadiusX = Math.max(0, H.checkNum(rrect.trRadiusX)); blRadiusX = Math.max(0, H.checkNum(rrect.blRadiusX)); brRadiusX = Math.max(0, H.checkNum(rrect.brRadiusX)); tlRadiusY = Math.max(0, H.checkNum(rrect.tlRadiusY)); trRadiusY = Math.max(0, H.checkNum(rrect.trRadiusY)); blRadiusY = Math.max(0, H.checkNum(rrect.blRadiusY)); brRadiusY = Math.max(0, H.checkNum(rrect.brRadiusY)); scale = H._computeMinScale(blRadiusY, brRadiusY, height, H._computeMinScale(tlRadiusY, trRadiusY, height, H._computeMinScale(blRadiusX, brRadiusX, width, H._computeMinScale(tlRadiusX, trRadiusX, width, 1)))); t5 = t4 - scale * blRadiusY; _this.moveTo$2(0, t1, t5); _this.lineTo$2(0, t1, t2 + scale * tlRadiusY); _this.conicTo$5(0, t1, t2, t1 + scale * tlRadiusX, t2, 0.707106781); _this.lineTo$2(0, t3 - scale * trRadiusX, t2); _this.conicTo$5(0, t3, t2, t3, t2 + scale * trRadiusY, 0.707106781); _this.lineTo$2(0, t3, t4 - scale * brRadiusY); _this.conicTo$5(0, t3, t4, t3 - scale * brRadiusX, t4, 0.707106781); _this.lineTo$2(0, t1 + scale * blRadiusX, t4); _this.conicTo$5(0, t1, t4, t1, t5, 0.707106781); _this.close$0(0); _this._firstDirection = isRRect ? 0 : -1; t1 = _this.pathRef; t1.fIsRRect = isRRect; t1.fRRectOrOvalIsCCW = false; t1.fRRectOrOvalStartIdx = 6; } }, contains$1: function(_, point) { var bounds, x, y, t1, windings, evenOddFill, w, onCurveCount, iter, _buffer, tangents, done, oldCount, t2, last, tangent, dx, dy, index, test, t3, offset, _this = this; if (_this.pathRef._fVerbsLength === 0) return false; bounds = _this.getBounds$0(0); x = point._dx; y = point._dy; if (x < bounds.left || y < bounds.top || x > bounds.right || y > bounds.bottom) return false; t1 = _this.pathRef; windings = new H.PathWinding(t1, x, y, new Float32Array(18)); windings._walkPath$0(); evenOddFill = C.PathFillType_1 === _this._fillType; w = windings._w; if ((evenOddFill ? w & 1 : w) !== 0) return true; onCurveCount = windings._onCurveCount; if (onCurveCount <= 1) return C.JSBool_methods.$xor(onCurveCount !== 0, false); t1 = onCurveCount & 1; if (t1 !== 0 || evenOddFill) return t1 !== 0; iter = H.PathIterator$(_this.pathRef, true); _buffer = new Float32Array(18); tangents = H.setRuntimeTypeInfo([], type$.JSArray_Offset); t1 = iter.pathRef; done = false; do { oldCount = tangents.length; switch (iter.next$1(0, _buffer)) { case 0: case 5: break; case 1: H.tangentLine(_buffer, x, y, tangents); break; case 2: H.tangentQuad(_buffer, x, y, tangents); break; case 3: t2 = iter._conicWeightIndex; H.tangentConic(_buffer, x, y, t1._conicWeights[t2], tangents); break; case 4: H.tangentCubic(_buffer, x, y, tangents); break; case 6: done = true; break; } t2 = tangents.length; if (t2 > oldCount) { last = t2 - 1; tangent = tangents[last]; dx = tangent._dx; dy = tangent._dy; if (Math.abs(dx * dx + dy * dy - 0) < 0.000244140625) C.JSArray_methods.remove$1(tangents, last); else for (index = 0; index < last; ++index) { test = tangents[index]; t2 = test._dx; t3 = test._dy; if (Math.abs(t2 * dy - t3 * dx - 0) < 0.000244140625) { t2 = dx * t2; if (t2 < 0) t2 = -1; else t2 = t2 > 0 ? 1 : 0; if (t2 <= 0) { t2 = dy * t3; if (t2 < 0) t2 = -1; else t2 = t2 > 0 ? 1 : 0; t2 = t2 <= 0; } else t2 = false; } else t2 = false; if (t2) { offset = C.JSArray_methods.removeAt$1(tangents, last); if (index !== tangents.length) tangents[index] = offset; break; } } } } while (!done); return tangents.length !== 0 || false; }, shift$1: function(offset) { var t6, t1 = offset._dx, t2 = offset._dy, t3 = this.pathRef, t4 = H.PathRef__fPointsFromSource(t3, t1, t2), t5 = t3._fVerbsCapacity, verbs = new Uint8Array(t5); C.NativeUint8List_methods.setAll$2(verbs, 0, t3._fVerbs); t4 = new H.PathRef(t4, verbs); t5 = t3._conicWeightsCapacity; t4._conicWeightsCapacity = t5; t4._conicWeightsLength = t3._conicWeightsLength; t6 = t3._conicWeights; if (t6 != null) { t5 = new Float32Array(t5); t4._conicWeights = t5; C.NativeFloat32List_methods.setAll$2(t5, 0, t6); } t4._fVerbsCapacity = t3._fVerbsCapacity; t4._fVerbsLength = t3._fVerbsLength; t4._fPointsCapacity = t3._fPointsCapacity; t4._fPointsLength = t3._fPointsLength; t5 = t3.fBoundsIsDirty; t4.fBoundsIsDirty = t5; if (!t5) { t4.fBounds = t3.fBounds.translate$2(0, t1, t2); t5 = t3.cachedBounds; t4.cachedBounds = t5 == null ? null : t5.translate$2(0, t1, t2); t4.fIsFinite = t3.fIsFinite; } t4.fSegmentMask = t3.fSegmentMask; t4.fIsOval = t3.fIsOval; t4.fIsRRect = t3.fIsRRect; t4.fIsRect = t3.fIsRect; t4.fRRectOrOvalIsCCW = t3.fRRectOrOvalIsCCW; t4.fRRectOrOvalStartIdx = t3.fRRectOrOvalStartIdx; t1 = new H.SurfacePath(t4, C.PathFillType_0); t1._copyFields$1(this); return t1; }, getBounds$0: function(_) { var t2, iter, points, ltrbInitialized, left, $top, right, bottom, minX, maxX, minY, maxY, cubicBounds, quadBounds, conicBounds, verb, pIndex, pointIndex, x1, pointIndex0, y1, cpX, cpY, x2, y2, t3, t4, t5, denom, t10, tprime, t6, t7, extremaX, extremaY, t20, tprime2, extrema2X, extrema2Y, roots, P20x, wP10x, $B, src2w, P20y, wP10y, startX, startY, cpX1, cpY1, cpX2, cpY2, endX, endY, a, b, s, t, newBounds, _this = this, t1 = _this.pathRef; if ((t1.fIsRRect ? t1.fRRectOrOvalStartIdx : -1) === -1) t2 = (t1.fIsOval ? t1.fRRectOrOvalStartIdx : -1) !== -1; else t2 = true; if (t2) return t1.getBounds$0(0); if (!t1.fBoundsIsDirty && t1.cachedBounds != null) { t1 = t1.cachedBounds; t1.toString; return t1; } iter = new H.PathRefIterator(t1); iter.PathRefIterator$1(t1); points = _this.pathRef._fPoints; for (ltrbInitialized = false, left = 0, $top = 0, right = 0, bottom = 0, minX = 0, maxX = 0, minY = 0, maxY = 0, cubicBounds = null, quadBounds = null, conicBounds = null; verb = iter.nextIndex$0(), verb !== 6;) { pIndex = iter.iterIndex; switch (verb) { case 0: maxX = points[pIndex]; maxY = points[pIndex + 1]; minY = maxY; minX = maxX; break; case 1: maxX = points[pIndex + 2]; maxY = points[pIndex + 3]; minY = maxY; minX = maxX; break; case 2: if (quadBounds == null) quadBounds = new H._QuadBounds(); pointIndex = pIndex + 1; x1 = points[pIndex]; pointIndex0 = pointIndex + 1; y1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY = points[pointIndex]; x2 = points[pointIndex0]; y2 = points[pointIndex0 + 1]; t2 = quadBounds.minX = Math.min(x1, x2); t3 = quadBounds.minY = Math.min(y1, y2); t4 = quadBounds.maxX = Math.max(x1, x2); t5 = quadBounds.maxY = Math.max(y1, y2); denom = x1 - 2 * cpX + x2; if (Math.abs(denom) > 0.000244140625) { t10 = (x1 - cpX) / denom; if (t10 >= 0 && t10 <= 1) { tprime = 1 - t10; t6 = tprime * tprime; t7 = 2 * t10 * tprime; t10 *= t10; extremaX = t6 * x1 + t7 * cpX + t10 * x2; extremaY = t6 * y1 + t7 * cpY + t10 * y2; t2 = Math.min(t2, extremaX); quadBounds.minX = t2; t4 = Math.max(t4, extremaX); quadBounds.maxX = t4; t3 = Math.min(t3, extremaY); quadBounds.minY = t3; t5 = Math.max(t5, extremaY); quadBounds.maxY = t5; } } denom = y1 - 2 * cpY + y2; if (Math.abs(denom) > 0.000244140625) { t20 = (y1 - cpY) / denom; if (t20 >= 0 && t20 <= 1) { tprime2 = 1 - t20; t6 = tprime2 * tprime2; t7 = 2 * t20 * tprime2; t20 *= t20; extrema2X = t6 * x1 + t7 * cpX + t20 * x2; extrema2Y = t6 * y1 + t7 * cpY + t20 * y2; t2 = Math.min(t2, extrema2X); quadBounds.minX = t2; t4 = Math.max(t4, extrema2X); quadBounds.maxX = t4; t3 = Math.min(t3, extrema2Y); quadBounds.minY = t3; t5 = Math.max(t5, extrema2Y); quadBounds.maxY = t5; } maxY = t5; maxX = t4; minY = t3; minX = t2; } else { maxY = t5; maxX = t4; minY = t3; minX = t2; } break; case 3: if (conicBounds == null) conicBounds = new H._ConicBounds(); t2 = t1._conicWeights[iter._conicWeightIndex]; pointIndex = pIndex + 1; x1 = points[pIndex]; pointIndex0 = pointIndex + 1; y1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY = points[pointIndex]; x2 = points[pointIndex0]; y2 = points[pointIndex0 + 1]; conicBounds.minX = Math.min(x1, x2); conicBounds.minY = Math.min(y1, y2); conicBounds.maxX = Math.max(x1, x2); conicBounds.maxY = Math.max(y1, y2); roots = new H._QuadRoots(); P20x = x2 - x1; wP10x = t2 * (cpX - x1); if (roots.findRoots$3(t2 * P20x - P20x, P20x - 2 * wP10x, wP10x) !== 0) { t3 = roots.root0; t3.toString; if (t3 >= 0 && t3 <= 1) { $B = 2 * (t2 - 1); denom = (-$B * t3 + $B) * t3 + 1; src2w = cpX * t2; extremaX = (((x2 - 2 * src2w + x1) * t3 + 2 * (src2w - x1)) * t3 + x1) / denom; src2w = cpY * t2; extremaY = (((y2 - 2 * src2w + y1) * t3 + 2 * (src2w - y1)) * t3 + y1) / denom; conicBounds.minX = Math.min(conicBounds.minX, extremaX); conicBounds.maxX = Math.max(conicBounds.maxX, extremaX); conicBounds.minY = Math.min(conicBounds.minY, extremaY); conicBounds.maxY = Math.max(conicBounds.maxY, extremaY); } } P20y = y2 - y1; wP10y = t2 * (cpY - y1); if (roots.findRoots$3(t2 * P20y - P20y, P20y - 2 * wP10y, wP10y) !== 0) { t3 = roots.root0; t3.toString; if (t3 >= 0 && t3 <= 1) { $B = 2 * (t2 - 1); denom = (-$B * t3 + $B) * t3 + 1; src2w = cpX * t2; extrema2X = (((x2 - 2 * src2w + x1) * t3 + 2 * (src2w - x1)) * t3 + x1) / denom; src2w = cpY * t2; extrema2Y = (((y2 - 2 * src2w + y1) * t3 + 2 * (src2w - y1)) * t3 + y1) / denom; conicBounds.minX = Math.min(conicBounds.minX, extrema2X); conicBounds.maxX = Math.max(conicBounds.maxX, extrema2X); conicBounds.minY = Math.min(conicBounds.minY, extrema2Y); conicBounds.maxY = Math.max(conicBounds.maxY, extrema2Y); } } minX = conicBounds.minX; minY = conicBounds.minY; maxX = conicBounds.maxX; maxY = conicBounds.maxY; break; case 4: if (cubicBounds == null) cubicBounds = new H._CubicBounds(); pointIndex = pIndex + 1; startX = points[pIndex]; pointIndex0 = pointIndex + 1; startY = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX1 = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY1 = points[pointIndex]; pointIndex = pointIndex0 + 1; cpX2 = points[pointIndex0]; pointIndex0 = pointIndex + 1; cpY2 = points[pointIndex]; endX = points[pointIndex0]; endY = points[pointIndex0 + 1]; t2 = Math.min(startX, endX); cubicBounds.minX = t2; cubicBounds.minY = Math.min(startY, endY); t3 = Math.max(startX, endX); cubicBounds.maxX = t3; cubicBounds.maxY = Math.max(startY, endY); if (!(startX < cpX1 && cpX1 < cpX2 && cpX2 < endX)) t4 = startX > cpX1 && cpX1 > cpX2 && cpX2 > endX; else t4 = true; if (!t4) { t4 = -startX; a = t4 + 3 * (cpX1 - cpX2) + endX; b = 2 * (startX - 2 * cpX1 + cpX2); s = b * b - 4 * a * (t4 + cpX1); if (s >= 0 && Math.abs(a) > 0.000244140625) { t4 = -b; t5 = 2 * a; if (s === 0) { t = t4 / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t4 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t4 * tprime * t * cpX1 + t4 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, t2); cubicBounds.maxX = Math.max(extremaX, t3); } } else { s = Math.sqrt(s); t = (t4 - s) / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t2 * tprime * t * cpX1 + t2 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, cubicBounds.minX); cubicBounds.maxX = Math.max(extremaX, cubicBounds.maxX); } t = (t4 + s) / t5; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaX = tprime * tprime * tprime * startX + t2 * tprime * t * cpX1 + t2 * t * t * cpX2 + t * t * t * endX; cubicBounds.minX = Math.min(extremaX, cubicBounds.minX); cubicBounds.maxX = Math.max(extremaX, cubicBounds.maxX); } } } } if (!(startY < cpY1 && cpY1 < cpY2 && cpY2 < endY)) t2 = startY > cpY1 && cpY1 > cpY2 && cpY2 > endY; else t2 = true; if (!t2) { t2 = -startY; a = t2 + 3 * (cpY1 - cpY2) + endY; b = 2 * (startY - 2 * cpY1 + cpY2); s = b * b - 4 * a * (t2 + cpY1); if (s >= 0 && Math.abs(a) > 0.000244140625) { t2 = -b; t3 = 2 * a; if (s === 0) { t = t2 / t3; tprime = 1 - t; if (t >= 0 && t <= 1) { t2 = 3 * tprime; extremaY = tprime * tprime * tprime * startY + t2 * tprime * t * cpY1 + t2 * t * t * cpY2 + t * t * t * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } } else { s = Math.sqrt(s); t = (t2 - s) / t3; tprime = 1 - t; if (t >= 0 && t <= 1) { t4 = 3 * tprime; extremaY = tprime * tprime * tprime * startY + t4 * tprime * t * cpY1 + t4 * t * t * cpY2 + t * t * t * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } t2 = (t2 + s) / t3; tprime2 = 1 - t2; if (t2 >= 0 && t2 <= 1) { t3 = 3 * tprime2; extremaY = tprime2 * tprime2 * tprime2 * startY + t3 * tprime2 * t2 * cpY1 + t3 * t2 * t2 * cpY2 + t2 * t2 * t2 * endY; cubicBounds.minY = Math.min(extremaY, cubicBounds.minY); cubicBounds.maxY = Math.max(extremaY, cubicBounds.maxY); } } } } minX = cubicBounds.minX; minY = cubicBounds.minY; maxX = cubicBounds.maxX; maxY = cubicBounds.maxY; break; } if (!ltrbInitialized) { bottom = maxY; right = maxX; $top = minY; left = minX; ltrbInitialized = true; } else { left = Math.min(left, minX); right = Math.max(right, maxX); $top = Math.min($top, minY); bottom = Math.max(bottom, maxY); } } newBounds = ltrbInitialized ? new P.Rect(left, $top, right, bottom) : C.Rect_0_0_0_0; _this.pathRef.getBounds$0(0); return _this.pathRef.cachedBounds = newBounds; }, get$isEmpty: function(_) { return 0 === this.pathRef._fVerbsLength; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; }, $isPath: 1 }; H._SkQuadCoefficients.prototype = { evalX$1: function(t) { return (this.ax * t + this.bx) * t + this.cx; }, evalY$1: function(t) { return (this.ay * t + this.by) * t + this.cy; } }; H.PathRef.prototype = { setPoint$3: function(pointIndex, x, y) { var index = pointIndex * 2, t1 = this._fPoints; t1[index] = x; t1[index + 1] = y; }, atPoint$1: function(index) { var t1 = this._fPoints, t2 = index * 2; return new P.Offset(t1[t2], t1[t2 + 1]); }, getRect$0: function() { var _this = this; if (_this.fIsRect) return new P.Rect(_this.atPoint$1(0)._dx, _this.atPoint$1(0)._dy, _this.atPoint$1(1)._dx, _this.atPoint$1(2)._dy); else return _this._fVerbsLength === 4 ? _this._detectRect$0() : null; }, getBounds$0: function(_) { var t1; if (this.fBoundsIsDirty) this._computeBounds$0(); t1 = this.fBounds; t1.toString; return t1; }, _detectRect$0: function() { var width, x2, y2, height, t1, y3, _this = this, _null = null, x0 = _this.atPoint$1(0)._dx, y0 = _this.atPoint$1(0)._dy, x1 = _this.atPoint$1(1)._dx, y1 = _this.atPoint$1(1)._dy; if (_this._fVerbs[1] !== 1 || y1 != y0) return _null; width = x1 - x0; x2 = _this.atPoint$1(2)._dx; y2 = _this.atPoint$1(2)._dy; if (_this._fVerbs[2] !== 1 || x2 !== x1) return _null; height = y2 - y1; t1 = _this.atPoint$1(3); y3 = _this.atPoint$1(3)._dy; if (_this._fVerbs[3] !== 1 || y3 !== y2) return _null; if (x2 - t1._dx !== width || y3 - y0 !== height) return _null; return new P.Rect(x0, y0, x0 + width, y0 + height); }, getStraightLine$0: function() { var t1, x0, y0, x1, y1; if (this._fVerbsLength === 2) { t1 = this._fVerbs; t1 = t1[0] !== 0 || t1[1] !== 1; } else t1 = true; if (t1) return null; t1 = this._fPoints; x0 = t1[0]; y0 = t1[1]; x1 = t1[2]; y1 = t1[3]; if (y0 === y1 || x0 === x1) return new P.Rect(x0, y0, x1, y1); return null; }, _getRRect$0: function() { var pts, cornerIndex, verb, controlPx, controlPy, vector1_0x, vector1_0y, t1, t2, dx, dy, t3, bounds = this.getBounds$0(0), radii = H.setRuntimeTypeInfo([], type$.JSArray_Radius), iter = new H.PathRefIterator(this); iter.PathRefIterator$1(this); pts = new Float32Array(8); iter.next$1(0, pts); for (cornerIndex = 0; verb = iter.next$1(0, pts), verb !== 6;) if (3 === verb) { controlPx = pts[2]; controlPy = pts[3]; vector1_0x = controlPx - pts[0]; vector1_0y = controlPy - pts[1]; t1 = pts[4]; t2 = pts[5]; if (vector1_0x !== 0) { dx = Math.abs(vector1_0x); dy = Math.abs(t2 - controlPy); } else { dy = Math.abs(vector1_0y); dx = vector1_0y !== 0 ? Math.abs(t1 - controlPx) : Math.abs(vector1_0x); } radii.push(new P.Radius(dx, dy)); ++cornerIndex; } t1 = radii[0]; t2 = radii[1]; t3 = radii[2]; return P.RRect$fromRectAndCorners(bounds, radii[3], t3, t1, t2); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return this.equals$1(type$.PathRef._as(other)); }, equals$1: function(ref) { var pointCount, len, t1, t2, i, weightCount, verbCount, _this = this; if (_this.fSegmentMask !== ref.fSegmentMask) return false; pointCount = _this._fPointsLength; if (pointCount !== ref._fPointsLength) return false; for (len = pointCount * 2, t1 = _this._fPoints, t2 = ref._fPoints, i = 0; i < len; ++i) if (t1[i] !== t2[i]) return false; t1 = _this._conicWeights; if (t1 == null) { if (ref._conicWeights != null) return false; } else { t2 = ref._conicWeights; if (t2 == null) return false; weightCount = t1.length; if (t2.length !== weightCount) return false; for (i = 0; i < weightCount; ++i) if (t1[i] !== t2[i]) return false; } verbCount = _this._fVerbsLength; if (verbCount !== ref._fVerbsLength) return false; for (t1 = _this._fVerbs, t2 = ref._fVerbs, i = 0; i < verbCount; ++i) if (t1[i] !== t2[i]) return false; return true; }, _resizePoints$1: function(newLength) { var t1, newPoints, _this = this; if (newLength > _this._fPointsCapacity) { t1 = newLength + 10; _this._fPointsCapacity = t1; newPoints = new Float32Array(t1 * 2); newPoints.set.apply(newPoints, [_this._fPoints]); _this._fPoints = newPoints; } _this._fPointsLength = newLength; }, _resizeVerbs$1: function(newLength) { var t1, newVerbs, _this = this; if (newLength > _this._fVerbsCapacity) { t1 = newLength + 8; _this._fVerbsCapacity = t1; newVerbs = new Uint8Array(t1); newVerbs.set.apply(newVerbs, [_this._fVerbs]); _this._fVerbs = newVerbs; } _this._fVerbsLength = newLength; }, _resizeConicWeights$1: function(newLength) { var t1, newWeights, _this = this; if (newLength > _this._conicWeightsCapacity) { t1 = newLength + 4; _this._conicWeightsCapacity = t1; newWeights = new Float32Array(t1); t1 = _this._conicWeights; if (t1 != null) newWeights.set.apply(newWeights, [t1]); _this._conicWeights = newWeights; } _this._conicWeightsLength = newLength; }, _computeBounds$0: function() { var t1, maxX, maxY, accum, len, minY, minX, i, x, y, _this = this, pointCount = _this._fPointsLength; _this.fBoundsIsDirty = false; _this.cachedBounds = null; if (pointCount === 0) { _this.fBounds = C.Rect_0_0_0_0; _this.fIsFinite = true; } else { t1 = _this._fPoints; maxX = t1[0]; maxY = t1[1]; accum = 0 * maxX * maxY; for (len = 2 * pointCount, minY = maxY, minX = maxX, i = 2; i < len; i += 2) { x = t1[i]; y = t1[i + 1]; accum = accum * x * y; minX = Math.min(minX, x); minY = Math.min(minY, y); maxX = Math.max(maxX, x); maxY = Math.max(maxY, y); } if (accum * 0 === 0) { _this.fBounds = new P.Rect(minX, minY, maxX, maxY); _this.fIsFinite = true; } else { _this.fBounds = C.Rect_0_0_0_0; _this.fIsFinite = false; } } }, growForVerb$2: function(verb, weight) { var pCnt, mask, verbCount, weightCount, ptsIndex, _this = this; switch (verb) { case 0: pCnt = 1; mask = 0; break; case 1: pCnt = 1; mask = 1; break; case 2: pCnt = 2; mask = 2; break; case 3: pCnt = 2; mask = 4; break; case 4: pCnt = 3; mask = 8; break; case 5: pCnt = 0; mask = 0; break; case 6: pCnt = 0; mask = 0; break; default: pCnt = 0; mask = 0; break; } _this.fSegmentMask |= mask; _this.fBoundsIsDirty = true; _this.startEdit$0(); verbCount = _this._fVerbsLength; _this._resizeVerbs$1(verbCount + 1); _this._fVerbs[verbCount] = verb; if (3 === verb) { weightCount = _this._conicWeightsLength; _this._resizeConicWeights$1(weightCount + 1); _this._conicWeights[weightCount] = weight; } ptsIndex = _this._fPointsLength; _this._resizePoints$1(ptsIndex + pCnt); return ptsIndex; }, startEdit$0: function() { var _this = this; _this.fIsRect = _this.fIsRRect = _this.fIsOval = false; _this.cachedBounds = null; _this.fBoundsIsDirty = true; }, get$isEmpty: function(_) { return this._fVerbsLength === 0; } }; H.PathRefIterator.prototype = { PathRefIterator$1: function(pathRef) { var t1; this._pointIndex = 0; t1 = this.pathRef; if (t1.fBoundsIsDirty) t1._computeBounds$0(); if (!t1.fIsFinite) this._verbIndex = t1._fVerbsLength; }, nextIndex$0: function() { var verb, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) return 6; t2 = t2._fVerbs; _this._verbIndex = t1 + 1; verb = t2[t1]; switch (verb) { case 0: t1 = _this._pointIndex; _this.iterIndex = t1; _this._pointIndex = t1 + 2; break; case 1: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 2; break; case 3: ++_this._conicWeightIndex; t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 4; break; case 2: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 4; break; case 4: t1 = _this._pointIndex; _this.iterIndex = t1 - 2; _this._pointIndex = t1 + 6; break; case 5: break; case 6: break; default: throw H.wrapException(P.FormatException$("Unsupport Path verb " + verb, null, null)); } return verb; }, next$1: function(_, outPts) { var t3, verb, points, pointIndex, pointIndex0, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) return 6; t3 = t2._fVerbs; _this._verbIndex = t1 + 1; verb = t3[t1]; points = t2._fPoints; pointIndex = _this._pointIndex; switch (verb) { case 0: pointIndex0 = pointIndex + 1; outPts[0] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[1] = points[pointIndex0]; break; case 1: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; break; case 3: ++_this._conicWeightIndex; outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; break; case 2: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; break; case 4: outPts[0] = points[pointIndex - 2]; outPts[1] = points[pointIndex - 1]; pointIndex0 = pointIndex + 1; outPts[2] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[3] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[4] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[5] = points[pointIndex0]; pointIndex0 = pointIndex + 1; outPts[6] = points[pointIndex]; pointIndex = pointIndex0 + 1; outPts[7] = points[pointIndex0]; break; case 5: break; case 6: break; default: throw H.wrapException(P.FormatException$("Unsupport Path verb " + verb, null, null)); } _this._pointIndex = pointIndex; return verb; } }; H._QuadRoots.prototype = { findRoots$3: function(a, b, c) { var t1, dr, q, res, rootCount, rootCount0, t2, _this = this; if (a === 0) { t1 = H._validUnitDivide(-c, b); _this.root0 = t1; return t1 == null ? 0 : 1; } dr = b * b - 4 * a * c; if (dr < 0) return 0; dr = Math.sqrt(dr); if (!isFinite(dr)) return 0; q = b < 0 ? -(b - dr) / 2 : -(b + dr) / 2; res = H._validUnitDivide(q, a); if (res != null) { _this.root0 = res; rootCount = 1; } else rootCount = 0; res = H._validUnitDivide(c, q); if (res != null) { rootCount0 = rootCount + 1; if (rootCount === 0) _this.root0 = res; else _this.root1 = res; rootCount = rootCount0; } if (rootCount === 2) { t1 = _this.root0; t1.toString; t2 = _this.root1; t2.toString; if (t1 > t2) { _this.root0 = t2; _this.root1 = t1; } else if (t1 === t2) return 1; } return rootCount; } }; H.PathWinding.prototype = { _walkPath$0: function() { var t2, t3, verb, n, winding, t4, t5, t6, t7, t8, t9, t10, isMono, conics, _this = this, t1 = _this.pathRef, iter = H.PathIterator$(t1, true); for (t2 = _this.__engine$_buffer, t3 = type$.JSArray_Conic; verb = iter.next$1(0, t2), verb !== 6;) switch (verb) { case 0: case 5: break; case 1: _this._computeLineWinding$0(); break; case 2: n = !H.PathWinding__isQuadMonotonic(t2) ? H.PathWinding__chopQuadAtExtrema(t2) : 0; winding = _this._computeMonoQuadWinding$6(t2[0], t2[1], t2[2], t2[3], t2[4], t2[5]); _this._w += n > 0 ? winding + _this._computeMonoQuadWinding$6(t2[4], t2[5], t2[6], t2[7], t2[8], t2[9]) : winding; break; case 3: t4 = t1._conicWeights[iter._conicWeightIndex]; t5 = t2[0]; t6 = t2[1]; t7 = t2[2]; t8 = t2[3]; t9 = t2[4]; t10 = t2[5]; isMono = H.PathWinding__isQuadMonotonic(t2); conics = H.setRuntimeTypeInfo([], t3); new H.Conic(t5, t6, t7, t8, t9, t10, t4).chopAtYExtrema$1(conics); _this._computeMonoConicWinding$1(conics[0]); if (!isMono && conics.length === 2) _this._computeMonoConicWinding$1(conics[1]); break; case 4: _this._computeCubicWinding$0(); break; } }, _computeLineWinding$0: function() { var y1, y0, dir, t2, crossProduct, _this = this, t1 = _this.__engine$_buffer, x0 = t1[0], startY = t1[1], x1 = t1[2], endY = t1[3]; if (startY > endY) { y1 = startY; y0 = endY; dir = -1; } else { y1 = endY; y0 = startY; dir = 1; } t1 = _this.y; if (t1 < y0 || t1 > y1) return; t2 = _this.x; if (H.PathWinding__checkOnCurve(t2, t1, x0, startY, x1, endY)) { ++_this._onCurveCount; return; } if (t1 === y1) return; crossProduct = (x1 - x0) * (t1 - startY) - (endY - startY) * (t2 - x0); if (crossProduct === 0) { if (t2 !== x1 || t1 !== endY) ++_this._onCurveCount; dir = 0; } else if (H.SPath_scalarSignedAsInt(crossProduct) === dir) dir = 0; _this._w += dir; }, _computeMonoQuadWinding$6: function(x0, y0, x1, y1, x2, y2) { var y20, y00, dir, t1, t2, quadRoots, xt, t3, _this = this; if (y0 > y2) { y20 = y0; y00 = y2; dir = -1; } else { y20 = y2; y00 = y0; dir = 1; } t1 = _this.y; if (t1 < y00 || t1 > y20) return 0; t2 = _this.x; if (H.PathWinding__checkOnCurve(t2, t1, x0, y0, x2, y2)) { ++_this._onCurveCount; return 0; } if (t1 === y20) return 0; quadRoots = new H._QuadRoots(); if (0 === quadRoots.findRoots$3(y0 - 2 * y1 + y2, 2 * (y1 - y0), y0 - t1)) xt = dir === 1 ? x0 : x2; else { t3 = quadRoots.root0; t3.toString; xt = ((x2 - 2 * x1 + x0) * t3 + 2 * (x1 - x0)) * t3 + x0; } if (Math.abs(xt - t2) < 0.000244140625) if (t2 !== x2 || t1 !== y2) { ++_this._onCurveCount; return 0; } return xt < t2 ? dir : 0; }, _computeMonoConicWinding$1: function(conic) { var y20, y00, dir, t1, t2, t3, $B, quadRoots, xt, t4, _this = this, y0 = conic.p0y, y2 = conic.p2y; if (y0 > y2) { y20 = y0; y00 = y2; dir = -1; } else { y20 = y2; y00 = y0; dir = 1; } t1 = _this.y; if (t1 < y00 || t1 > y20) return; t2 = _this.x; if (H.PathWinding__checkOnCurve(t2, t1, conic.p0x, y0, conic.p2x, y2)) { ++_this._onCurveCount; return; } if (t1 === y20) return; t3 = conic.fW; $B = conic.p1y * t3 - t1 * t3 + t1; quadRoots = new H._QuadRoots(); if (0 === quadRoots.findRoots$3(y2 + (y0 - 2 * $B), 2 * ($B - y0), y0 - t1)) xt = dir === 1 ? conic.p0x : conic.p2x; else { t4 = quadRoots.root0; t4.toString; xt = H._conicEvalNumerator(conic.p0x, conic.p1x, conic.p2x, t3, t4) / H._conicEvalDenominator(t3, t4); } if (Math.abs(xt - t2) < 0.000244140625) if (t2 !== conic.p2x || t1 !== conic.p2y) { ++_this._onCurveCount; return; } t1 = _this._w; _this._w = t1 + (xt < t2 ? dir : 0); }, _computeCubicWinding$0: function() { var i, t1 = this.__engine$_buffer, n = H._chopCubicAtYExtrema(t1, t1); for (i = 0; i <= n; ++i) this._windingMonoCubic$1(i * 3 * 2); }, _windingMonoCubic$1: function(bufferIndex) { var px2, px3, py3, y3, y0, dir, t2, t3, min, max, t, xt, _this = this, t1 = _this.__engine$_buffer, bufferIndex0 = bufferIndex + 1, px0 = t1[bufferIndex], bufferIndex1 = bufferIndex0 + 1, py0 = t1[bufferIndex0], px1 = t1[bufferIndex1]; bufferIndex0 = bufferIndex1 + 1 + 1; px2 = t1[bufferIndex0]; bufferIndex0 = bufferIndex0 + 1 + 1; px3 = t1[bufferIndex0]; py3 = t1[bufferIndex0 + 1]; if (py0 > py3) { y3 = py0; y0 = py3; dir = -1; } else { y3 = py3; y0 = py0; dir = 1; } t2 = _this.y; if (t2 < y0 || t2 > y3) return; t3 = _this.x; if (H.PathWinding__checkOnCurve(t3, t2, px0, py0, px3, py3)) { ++_this._onCurveCount; return; } if (t2 === y3) return; min = Math.min(px0, Math.min(px1, Math.min(px2, px3))); max = Math.max(px0, Math.max(px1, Math.max(px2, px3))); if (t3 < min) return; if (t3 > max) { _this._w += dir; return; } t = H._chopMonoAtY(t1, bufferIndex, t2); if (t == null) return; xt = H._evalCubicPts(px0, px1, px2, px3, t); if (Math.abs(xt - t3) < 0.000244140625) if (t3 !== px3 || t2 !== py3) { ++_this._onCurveCount; return; } t1 = _this._w; _this._w = t1 + (xt < t3 ? dir : 0); } }; H.PathIterator.prototype = { _autoClose$1: function(outPts) { var _this = this, t1 = _this._lastPointX, t2 = _this._moveToX; if (t1 !== t2 || _this._lastPointY !== _this._moveToY) { if (isNaN(t1) || isNaN(_this._lastPointY) || isNaN(t2) || isNaN(_this._moveToY)) return 5; outPts[0] = t1; outPts[1] = _this._lastPointY; outPts[2] = t2; t1 = _this._moveToY; outPts[3] = t1; _this._lastPointX = t2; _this._lastPointY = t1; return 1; } else { outPts[0] = t2; outPts[1] = _this._moveToY; return 5; } }, _constructMoveTo$0: function() { var t1, t2, _this = this; if (_this._segmentState === 1) { _this._segmentState = 2; return new P.Offset(_this._moveToX, _this._moveToY); } t1 = _this.pathRef._fPoints; t2 = _this._pointIndex; return new P.Offset(t1[t2 - 2], t1[t2 - 1]); }, next$1: function(_, outPts) { var t3, t4, verb, autoVerb, offsetX, offsetY, start, _this = this, t1 = _this._verbIndex, t2 = _this.pathRef; if (t1 === t2._fVerbsLength) { if (_this._needClose && _this._segmentState === 2) { if (1 === _this._autoClose$1(outPts)) return 1; _this._needClose = false; return 5; } return 6; } t3 = t2._fVerbs; t4 = _this._verbIndex = t1 + 1; verb = t3[t1]; switch (verb) { case 0: if (_this._needClose) { _this._verbIndex = t4 - 1; autoVerb = _this._autoClose$1(outPts); if (autoVerb === 5) _this._needClose = false; return autoVerb; } if (t4 === _this._verbCount) return 6; t1 = t2._fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; offsetX = t1[t2]; _this._pointIndex = t3 + 1; offsetY = t1[t3]; _this._moveToX = offsetX; _this._moveToY = offsetY; outPts[0] = offsetX; outPts[1] = offsetY; _this._segmentState = 1; _this._lastPointX = offsetX; _this._lastPointY = offsetY; _this._needClose = true; break; case 1: start = _this._constructMoveTo$0(); t1 = t2._fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; offsetX = t1[t2]; _this._pointIndex = t3 + 1; offsetY = t1[t3]; outPts[0] = start._dx; outPts[1] = start._dy; outPts[2] = offsetX; outPts[3] = offsetY; _this._lastPointX = offsetX; _this._lastPointY = offsetY; break; case 3: ++_this._conicWeightIndex; start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2._fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[4] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[5] = t3; _this._lastPointY = t3; break; case 2: start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2._fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[4] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[5] = t3; _this._lastPointY = t3; break; case 4: start = _this._constructMoveTo$0(); outPts[0] = start._dx; outPts[1] = start._dy; t1 = t2._fPoints; t2 = _this._pointIndex; t3 = _this._pointIndex = t2 + 1; outPts[2] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[3] = t1[t3]; t3 = _this._pointIndex = t2 + 1; outPts[4] = t1[t2]; t2 = _this._pointIndex = t3 + 1; outPts[5] = t1[t3]; t3 = _this._pointIndex = t2 + 1; t2 = t1[t2]; outPts[6] = t2; _this._lastPointX = t2; _this._pointIndex = t3 + 1; t3 = t1[t3]; outPts[7] = t3; _this._lastPointY = t3; break; case 5: verb = _this._autoClose$1(outPts); if (verb === 1) --_this._verbIndex; else { _this._needClose = false; _this._segmentState = 0; } _this._lastPointX = _this._moveToX; _this._lastPointY = _this._moveToY; break; case 6: break; default: throw H.wrapException(P.FormatException$("Unsupport Path verb " + verb, null, null)); } return verb; } }; H._PaintRequest.prototype = { paintCallback$0: function() { return this.paintCallback.call$0(); } }; H.PersistedPicture.prototype = { createElement$0: function(_) { return this.defaultCreateElement$1("flt-picture"); }, preroll$0: function() { this.super$PersistedSurface$preroll(); }, recomputeTransformAndClip$0: function() { var t2, t3, paintWidth, paintHeight, newDensity, _this = this, t1 = _this.parent.__engine$_transform; _this.__engine$_transform = t1; t2 = _this.dx; if (t2 !== 0 || _this.dy !== 0) { t1.toString; t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(t1); _this.__engine$_transform = t3; t3.translate$2(0, t2, _this.dy); } t1 = _this.localPaintBounds; paintWidth = t1.right - t1.left; paintHeight = t1.bottom - t1.top; t1 = paintWidth === 0 || paintHeight === 0; newDensity = t1 ? 1 : H._computePixelDensity(_this.__engine$_transform, paintWidth, paintHeight); if (newDensity !== _this._density) { _this._density = newDensity; _this._requiresRepaint = true; } _this._computeExactCullRects$0(); }, _computeExactCullRects$0: function() { var clipTransform, bounds, localClipBounds, localInverse, t1, t2, _this = this, parentSurface = _this.parent; if (parentSurface._projectedClip == null) { clipTransform = H.Matrix4$identity(); for (bounds = null; parentSurface != null;) { localClipBounds = parentSurface._localClipBounds; if (localClipBounds != null) bounds = bounds == null ? H.transformRect(clipTransform, localClipBounds) : bounds.intersect$1(H.transformRect(clipTransform, localClipBounds)); localInverse = parentSurface.get$localTransformInverse(); if (localInverse != null && !localInverse.isIdentity$0(0)) clipTransform.multiply$1(0, localInverse); parentSurface = parentSurface.parent; } if (bounds != null) t1 = bounds.right - bounds.left <= 0 || bounds.bottom - bounds.top <= 0; else t1 = false; if (t1) bounds = C.Rect_0_0_0_0; t1 = _this.parent; t1._projectedClip = bounds; } else t1 = parentSurface; t1 = t1._projectedClip; t2 = _this.localPaintBounds; if (t1 == null) { _this._exactLocalCullRect = t2; t1 = t2; } else t1 = _this._exactLocalCullRect = t2.intersect$1(t1); if (t1.right - t1.left <= 0 || t1.bottom - t1.top <= 0) _this._exactGlobalCullRect = _this._exactLocalCullRect = C.Rect_0_0_0_0; }, _computeOptimalCullRect$1: function(oldSurface) { var oldOptimalLocalCullRect, t1, t2, t3, t4, t5, t6, t7, t8, t9, newLocalCullRect, _this = this; if (oldSurface == null || !oldSurface.picture.recordingCanvas._didDraw) { _this._optimalLocalCullRect = _this._exactLocalCullRect; _this._requiresRepaint = true; return; } oldOptimalLocalCullRect = oldSurface === _this ? _this._optimalLocalCullRect : oldSurface._optimalLocalCullRect; if (J.$eq$(_this._exactLocalCullRect, C.Rect_0_0_0_0)) { _this._optimalLocalCullRect = C.Rect_0_0_0_0; if (!J.$eq$(oldOptimalLocalCullRect, C.Rect_0_0_0_0)) _this._requiresRepaint = true; return; } oldOptimalLocalCullRect.toString; t1 = _this._exactLocalCullRect; t1.toString; if (H.rectContainsOther(oldOptimalLocalCullRect, t1)) { _this._optimalLocalCullRect = oldOptimalLocalCullRect; return; } t2 = t1.left; t3 = t1.top; t4 = t1.right; t1 = t1.bottom; t5 = t4 - t2; t6 = H.PersistedPicture__predictTrend(oldOptimalLocalCullRect.left - t2, t5); t7 = t1 - t3; t8 = H.PersistedPicture__predictTrend(oldOptimalLocalCullRect.top - t3, t7); t5 = H.PersistedPicture__predictTrend(t4 - oldOptimalLocalCullRect.right, t5); t7 = H.PersistedPicture__predictTrend(t1 - oldOptimalLocalCullRect.bottom, t7); t9 = _this.localPaintBounds; t9.toString; newLocalCullRect = new P.Rect(t2 - t6, t3 - t8, t4 + t5, t1 + t7).intersect$1(t9); _this._requiresRepaint = !J.$eq$(_this._optimalLocalCullRect, newLocalCullRect); _this._optimalLocalCullRect = newLocalCullRect; }, _applyPaint$1: function(oldSurface) { var t2, t3, domCanvas, _this = this, t1 = oldSurface == null, oldCanvas = t1 ? null : oldSurface.__engine$_canvas; _this._requiresRepaint = false; t2 = _this.picture.recordingCanvas; if (t2._didDraw) { t3 = _this._optimalLocalCullRect; t3 = t3.get$isEmpty(t3); } else t3 = true; if (t3) { H._recycleCanvas(oldCanvas); if (!t1) oldSurface.__engine$_canvas = null; t1 = _this.rootElement; if (t1 != null) $.$get$domRenderer().clearDom$1(t1); t1 = _this.__engine$_canvas; if (t1 != null && t1 !== oldCanvas) H._recycleCanvas(t1); _this.__engine$_canvas = null; return; } if (t2.renderStrategy.hasArbitraryPaint) _this._applyBitmapPaint$1(oldCanvas); else { H._recycleCanvas(_this.__engine$_canvas); t1 = _this.rootElement; t1.toString; domCanvas = _this.__engine$_canvas = new H.DomCanvas(t1, H.setRuntimeTypeInfo([], type$.JSArray__SaveElementStackEntry), H.setRuntimeTypeInfo([], type$.JSArray_Element), H.Matrix4$identity()); t1 = $.$get$domRenderer(); t3 = _this.rootElement; t3.toString; t1.clearDom$1(t3); t3 = _this._optimalLocalCullRect; t3.toString; t2.applyCommands$2(domCanvas, t3); domCanvas.endOfPaint$0(); } }, matchForUpdate$1: function(existingSurface) { var didRequireBitmap, requiresBitmap, oldCanvas, oldPixelCount, _this = this, t1 = existingSurface.picture, t2 = _this.picture; if (t1 == t2) return 0; t1 = t1.recordingCanvas; if (!t1._didDraw) return 1; didRequireBitmap = t1.renderStrategy.hasArbitraryPaint; requiresBitmap = t2.recordingCanvas.renderStrategy.hasArbitraryPaint; if (didRequireBitmap !== requiresBitmap) return 1; else if (!requiresBitmap) return 1; else { oldCanvas = type$.nullable_BitmapCanvas._as(existingSurface.__engine$_canvas); if (oldCanvas == null) return 1; else { t1 = _this._exactLocalCullRect; t1.toString; if (!oldCanvas.doesFitBounds$2(t1, _this._density)) return 1; else { t1 = _this._exactLocalCullRect; t1 = H.BitmapCanvas__widthToPhysical(t1.right - t1.left); t2 = _this._exactLocalCullRect; t2 = H.BitmapCanvas__heightToPhysical(t2.bottom - t2.top); oldPixelCount = oldCanvas._widthInBitmapPixels * oldCanvas._heightInBitmapPixels; if (oldPixelCount === 0) return 1; return 1 - t1 * t2 / oldPixelCount; } } } }, _applyBitmapPaint$1: function(oldCanvas) { var t1, t2, _this = this; if (oldCanvas instanceof H.BitmapCanvas) { t1 = _this._optimalLocalCullRect; t1.toString; t1 = oldCanvas.doesFitBounds$2(t1, _this._density) && oldCanvas.__engine$_devicePixelRatio === H.EnginePlatformDispatcher_browserDevicePixelRatio(); } else t1 = false; if (t1) { t1 = _this._optimalLocalCullRect; t1.toString; oldCanvas.set$bounds(0, t1); _this.__engine$_canvas = oldCanvas; oldCanvas._elementCache = _this._elementCache; oldCanvas.clear$0(0); t1 = _this.picture.recordingCanvas; t1.toString; t2 = _this._optimalLocalCullRect; t2.toString; t1.applyCommands$2(oldCanvas, t2); oldCanvas.endOfPaint$0(); } else { H._recycleCanvas(oldCanvas); t1 = _this.__engine$_canvas; if (t1 instanceof H.BitmapCanvas) t1._elementCache = null; _this.__engine$_canvas = null; t1 = $._paintQueue; t2 = _this._optimalLocalCullRect; t1.push(new H._PaintRequest(new P.Size(t2.right - t2.left, t2.bottom - t2.top), new H.PersistedPicture__applyBitmapPaint_closure(_this))); } }, _findOrCreateCanvas$1: function(bounds) { var boundsWidth, boundsHeight, requestedPixelCount, t3, bestRecycledCanvas, lastPixelCount, i, candidate, ratio, t4, t5, candidatePixelCount, t6, fits, isSmaller, canvas, _this = this, t1 = bounds.right - bounds.left, t2 = bounds.bottom - bounds.top; for (boundsWidth = t1 + 1, boundsHeight = t2 + 1, requestedPixelCount = t1 * t2, t3 = requestedPixelCount > 1, bestRecycledCanvas = null, lastPixelCount = 1 / 0, i = 0; i < $._recycledCanvases.length; ++i) { candidate = $._recycledCanvases[i]; ratio = window.devicePixelRatio; t4 = ratio == null || ratio === 0 ? 1 : ratio; if (candidate.__engine$_devicePixelRatio !== t4) continue; t4 = candidate._bounds; t5 = t4.right - t4.left; t4 = t4.bottom - t4.top; candidatePixelCount = t5 * t4; t6 = _this._density; ratio = window.devicePixelRatio; if (candidate._widthInBitmapPixels >= C.JSNumber_methods.ceil$0(boundsWidth * (ratio == null || ratio === 0 ? 1 : ratio)) + 2) { ratio = window.devicePixelRatio; fits = candidate._heightInBitmapPixels >= C.JSNumber_methods.ceil$0(boundsHeight * (ratio == null || ratio === 0 ? 1 : ratio)) + 2 && candidate._density === t6; } else fits = false; isSmaller = candidatePixelCount < lastPixelCount; if (fits && isSmaller) if (!(isSmaller && t3 && candidatePixelCount / requestedPixelCount > 4)) { if (t5 === t1 && t4 === t2) { bestRecycledCanvas = candidate; break; } lastPixelCount = candidatePixelCount; bestRecycledCanvas = candidate; } } if (bestRecycledCanvas != null) { C.JSArray_methods.remove$1($._recycledCanvases, bestRecycledCanvas); bestRecycledCanvas.set$bounds(0, bounds); bestRecycledCanvas._elementCache = _this._elementCache; return bestRecycledCanvas; } canvas = H.BitmapCanvas$(bounds, _this.picture.recordingCanvas.renderStrategy, _this._density); canvas._elementCache = _this._elementCache; return canvas; }, _applyTranslate$0: function() { var t1 = this.rootElement.style, t2 = "translate(" + H.S(this.dx) + "px, " + H.S(this.dy) + "px)"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, apply$0: function() { this._applyTranslate$0(); this._applyPaint$1(null); }, build$0: function(_) { this._computeOptimalCullRect$1(null); this._requiresRepaint = true; this.super$PersistedSurface$build(0); }, update$1: function(_, oldSurface) { var t1, densityChanged, _this = this; _this.super$PersistedSurface$update(0, oldSurface); _this._elementCache = oldSurface._elementCache; if (oldSurface !== _this) oldSurface._elementCache = null; if (_this.dx != oldSurface.dx || _this.dy != oldSurface.dy) _this._applyTranslate$0(); _this._computeOptimalCullRect$1(oldSurface); if (_this.picture == oldSurface.picture) { t1 = _this.__engine$_canvas; densityChanged = t1 instanceof H.BitmapCanvas && _this._density !== t1._density; if (_this._requiresRepaint || densityChanged) _this._applyPaint$1(oldSurface); else _this.__engine$_canvas = oldSurface.__engine$_canvas; } else _this._applyPaint$1(oldSurface); }, retain$0: function() { var _this = this; _this.super$PersistedSurface$retain(); _this._computeOptimalCullRect$1(_this); if (_this._requiresRepaint) _this._applyPaint$1(_this); }, discard$0: function() { H._recycleCanvas(this.__engine$_canvas); this.__engine$_canvas = null; this.super$PersistedSurface$discard(); } }; H.PersistedPicture__applyBitmapPaint_closure.prototype = { call$0: function() { var bitmapCanvas, t3, t1 = this.$this, t2 = t1._optimalLocalCullRect; t2.toString; bitmapCanvas = t1.__engine$_canvas = t1._findOrCreateCanvas$1(t2); bitmapCanvas._elementCache = t1._elementCache; t2 = $.$get$domRenderer(); t3 = t1.rootElement; t3.toString; t2.clearDom$1(t3); t1.rootElement.appendChild(bitmapCanvas.rootElement); bitmapCanvas.clear$0(0); t3 = t1.picture.recordingCanvas; t3.toString; t1 = t1._optimalLocalCullRect; t1.toString; t3.applyCommands$2(bitmapCanvas, t1); bitmapCanvas.endOfPaint$0(); }, $signature: 0 }; H.PersistedPlatformView.prototype = { get$_shadowRoot: function() { var t1 = this.__PersistedPlatformView__shadowRoot; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_shadowRoot")) : t1; }, createElement$0: function(_) { var _styleReset, platformView, _this = this, element = _this.defaultCreateElement$1("flt-platform-view"), t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "pointer-events"), "auto", ""); t1 = element.style; t1.overflow = "hidden"; t1 = type$.String; _this.__PersistedPlatformView__shadowRoot = element.attachShadow(P.convertDartToNative_Dictionary(P.LinkedHashMap_LinkedHashMap$_literal(["mode", "open"], t1, t1))); _styleReset = document.createElement("style"); C.StyleElement_methods.setInnerHtml$1(_styleReset, " :host {\n all: initial;\n cursor: inherit;\n }"); _this.get$_shadowRoot().appendChild(_styleReset); t1 = _this.viewId; platformView = $.$get$platformViewRegistry()._createdViews.$index(0, t1); if (platformView != null) _this.get$_shadowRoot().appendChild(platformView); else $.$get$printWarning().call$1("No platform view created for id " + H.S(t1)); return element; }, apply$0: function() { var t3, t4, platformView, _this = this, t1 = _this.rootElement.style, t2 = "translate(" + H.S(_this.dx) + "px, " + H.S(_this.dy) + "px)"; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); t2 = _this.width; t3 = H.S(t2) + "px"; t1.width = t3; t3 = _this.height; t4 = H.S(t3) + "px"; t1.height = t4; platformView = $.$get$platformViewRegistry()._createdViews.$index(0, _this.viewId); if (platformView != null) { t1 = platformView.style; t2 = H.S(t2) + "px"; t1.width = t2; t2 = H.S(t3) + "px"; t1.height = t2; } }, canUpdateAsMatch$1: function(oldSurface) { if (this.super$PersistedSurface$canUpdateAsMatch(oldSurface)) return this.viewId == type$.PersistedPlatformView._as(oldSurface).viewId; return false; }, matchForUpdate$1: function(existingSurface) { return existingSurface.viewId == this.viewId ? 0 : 1; }, update$1: function(_, oldSurface) { var _this = this; _this.super$PersistedSurface$update(0, oldSurface); if (_this.dx != oldSurface.dx || _this.dy != oldSurface.dy || _this.width !== oldSurface.width || _this.height !== oldSurface.height) _this.apply$0(); } }; H.RecordingCanvas.prototype = { applyCommands$2: function(engineCanvas, clipRect) { var i, len, i0, len0, command, e, t1, exception; try { t1 = this._pictureBounds; t1.toString; if (H.rectContainsOther(clipRect, t1)) for (i = 0, t1 = this._commands, len = t1.length; i < len; ++i) t1[i].apply$1(engineCanvas); else for (i0 = 0, t1 = this._commands, len0 = t1.length; i0 < len0; ++i0) { command = t1[i0]; if (command instanceof H.DrawCommand) if (command.isInvisible$1(clipRect)) continue; command.apply$1(engineCanvas); } } catch (exception) { e = H.unwrapException(exception); if (!J.$eq$(e.name, "NS_ERROR_FAILURE")) throw exception; } }, drawRect$2: function(_, rect, paint) { var paintSpread, command, _this = this, t1 = paint._paintData; if (t1.shader != null) _this.renderStrategy.hasArbitraryPaint = true; _this._didDraw = true; paintSpread = H._getPaintSpread(paint); paint._frozen = true; command = new H.PaintDrawRect(rect, t1, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t1 = _this._paintBounds; if (paintSpread !== 0) t1.grow$2(rect.inflate$1(paintSpread), command); else t1.grow$2(rect, command); _this._commands.push(command); }, drawRRect$2: function(_, rrect, paint) { var paintSpread, t2, t3, t4, t5, t6, t7, command, _this = this, t1 = paint._paintData; if (t1.shader != null || !rrect.webOnlyUniformRadii) _this.renderStrategy.hasArbitraryPaint = true; _this._didDraw = true; paintSpread = H._getPaintSpread(paint); t2 = rrect.left; t3 = rrect.right; t4 = Math.min(H.checkNum(t2), H.checkNum(t3)); t5 = rrect.top; t6 = rrect.bottom; t7 = Math.min(H.checkNum(t5), H.checkNum(t6)); t3 = Math.max(H.checkNum(t2), H.checkNum(t3)); t6 = Math.max(H.checkNum(t5), H.checkNum(t6)); paint._frozen = true; command = new H.PaintDrawRRect(rrect, t1, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.growLTRB$5(t4 - paintSpread, t7 - paintSpread, t3 + paintSpread, t6 + paintSpread, command); _this._commands.push(command); }, drawDRRect$3: function(_, outer, inner, paint) { var scaledOuter, scaledInner, outerTl, outerTr, outerBl, outerBr, innerTl, innerTr, innerBl, innerBr, paintSpread, command, t5, left, right, _this = this, innerRect = new P.Rect(inner.left, inner.top, inner.right, inner.bottom), t1 = outer.left, t2 = outer.top, t3 = outer.right, t4 = outer.bottom, outerRect = new P.Rect(t1, t2, t3, t4); if (outerRect.$eq(0, innerRect) || !outerRect.intersect$1(innerRect).$eq(0, innerRect)) return; scaledOuter = outer.scaleRadii$0(); scaledInner = inner.scaleRadii$0(); outerTl = H._measureBorderRadius(scaledOuter.tlRadiusX, scaledOuter.tlRadiusY); outerTr = H._measureBorderRadius(scaledOuter.trRadiusX, scaledOuter.trRadiusY); outerBl = H._measureBorderRadius(scaledOuter.blRadiusX, scaledOuter.blRadiusY); outerBr = H._measureBorderRadius(scaledOuter.brRadiusX, scaledOuter.brRadiusY); innerTl = H._measureBorderRadius(scaledInner.tlRadiusX, scaledInner.tlRadiusY); innerTr = H._measureBorderRadius(scaledInner.trRadiusX, scaledInner.trRadiusY); innerBl = H._measureBorderRadius(scaledInner.blRadiusX, scaledInner.blRadiusY); innerBr = H._measureBorderRadius(scaledInner.brRadiusX, scaledInner.brRadiusY); if (innerTl > outerTl || innerTr > outerTr || innerBl > outerBl || innerBr > outerBr) return; _this._didDraw = _this.renderStrategy.hasArbitraryPaint = true; paintSpread = H._getPaintSpread(paint); paint._frozen = true; command = new H.PaintDrawDRRect(outer, inner, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); t5 = P.Path_Path(); t5.set$fillType(C.PathFillType_1); t5.addRRect$1(0, outer); t5.addRRect$1(0, inner); t5.close$0(0); command.path = t5; left = Math.min(H.checkNum(t1), H.checkNum(t3)); right = Math.max(H.checkNum(t1), H.checkNum(t3)); _this._paintBounds.growLTRB$5(left - paintSpread, Math.min(H.checkNum(t2), H.checkNum(t4)) - paintSpread, right + paintSpread, Math.max(H.checkNum(t2), H.checkNum(t4)) + paintSpread, command); _this._commands.push(command); }, drawPath$2: function(_, path, paint) { var rect, t1, rrect, pathBounds, paintSpread, t2, t3, clone, command, _this = this; if (paint._paintData.shader == null) { type$.SurfacePath._as(path); rect = path.pathRef.getRect$0(); if (rect != null) { _this.drawRect$2(0, rect, paint); return; } t1 = path.pathRef; rrect = t1.fIsRRect ? t1._getRRect$0() : null; if (rrect != null) { _this.drawRRect$2(0, rrect, paint); return; } } type$.SurfacePath._as(path); if (path.pathRef._fVerbsLength !== 0) { _this._didDraw = _this.renderStrategy.hasArbitraryPaint = true; pathBounds = path.getBounds$0(0); paintSpread = H._getPaintSpread(paint); if (paintSpread !== 0) pathBounds = pathBounds.inflate$1(paintSpread); t1 = path.pathRef; t2 = new H.PathRef(t1._fPoints, t1._fVerbs); t2._fVerbsCapacity = t1._fVerbsCapacity; t2._fVerbsLength = t1._fVerbsLength; t2._fPointsCapacity = t1._fPointsCapacity; t2._fPointsLength = t1._fPointsLength; t2._conicWeightsCapacity = t1._conicWeightsCapacity; t2._conicWeightsLength = t1._conicWeightsLength; t2._conicWeights = t1._conicWeights; t3 = t1.fBoundsIsDirty; t2.fBoundsIsDirty = t3; if (!t3) { t2.fBounds = t1.fBounds; t2.cachedBounds = t1.cachedBounds; t2.fIsFinite = t1.fIsFinite; } t2.fSegmentMask = t1.fSegmentMask; t2.fIsOval = t1.fIsOval; t2.fIsRRect = t1.fIsRRect; t2.fIsRect = t1.fIsRect; t2.fRRectOrOvalIsCCW = t1.fRRectOrOvalIsCCW; t2.fRRectOrOvalStartIdx = t1.fRRectOrOvalStartIdx; clone = new H.SurfacePath(t2, C.PathFillType_0); clone._copyFields$1(path); paint._frozen = true; command = new H.PaintDrawPath(clone, paint._paintData, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.grow$2(pathBounds, command); clone._fillType = path._fillType; _this._commands.push(command); } }, drawParagraph$2: function(_, paragraph, offset) { var left, $top, command, _this = this; type$.EngineParagraph._as(paragraph); if (!paragraph.get$isLaidOut()) return; _this._didDraw = true; if (paragraph.get$hasArbitraryPaint()) _this.renderStrategy.hasArbitraryPaint = true; _this.renderStrategy.hasParagraphs = true; left = offset._dx; $top = offset._dy; command = new H.PaintDrawParagraph(paragraph, offset, -1 / 0, -1 / 0, 1 / 0, 1 / 0); _this._paintBounds.growLTRB$5(left, $top, left + paragraph.get$width(paragraph), $top + paragraph.get$height(paragraph), command); _this._commands.push(command); } }; H.PaintCommand.prototype = {}; H.DrawCommand.prototype = { isInvisible$1: function(clipRect) { var _this = this; if (_this.isClippedOut) return true; return _this.bottomBound < clipRect.top || _this.topBound > clipRect.bottom || _this.rightBound < clipRect.left || _this.leftBound > clipRect.right; } }; H.PaintSave.prototype = { apply$1: function(canvas) { canvas.save$0(0); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintRestore.prototype = { apply$1: function(canvas) { canvas.restore$0(0); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintTranslate.prototype = { apply$1: function(canvas) { canvas.translate$2(0, this.dx, this.dy); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintScale.prototype = { apply$1: function(canvas) { canvas.scale$2(0, this.sx, this.sy); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintRotate.prototype = { apply$1: function(canvas) { canvas.rotate$1(0, this.radians); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintTransform.prototype = { apply$1: function(canvas) { canvas.transform$1(0, this.matrix4); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintClipRect.prototype = { apply$1: function(canvas) { canvas.clipRect$2(0, this.rect, this.clipOp); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintClipRRect.prototype = { apply$1: function(canvas) { canvas.clipRRect$1(0, this.rrect); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintClipPath.prototype = { apply$1: function(canvas) { canvas.clipPath$1(0, this.path); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawLine.prototype = { apply$1: function(canvas) { canvas.drawLine$3(0, this.p1, this.p2, this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawRect.prototype = { apply$1: function(canvas) { canvas.drawRect$2(0, this.rect, this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawRRect.prototype = { apply$1: function(canvas) { canvas.drawRRect$2(0, this.rrect, this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawDRRect.prototype = { apply$1: function(canvas) { var t1 = this.paint; if (t1.style == null) t1.style = C.PaintingStyle_0; canvas.drawPath$2(0, this.path, t1); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawCircle.prototype = { apply$1: function(canvas) { canvas.drawCircle$3(0, this.c, this.radius, this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawPath.prototype = { apply$1: function(canvas) { canvas.drawPath$2(0, this.path, this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawShadow.prototype = { apply$1: function(canvas) { var _this = this; canvas.drawShadow$4(0, _this.path, _this.color, _this.elevation, _this.transparentOccluder); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawImageRect.prototype = { apply$1: function(canvas) { var _this = this; canvas.drawImageRect$4(_this.image, _this.src, _this.dst, _this.paint); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PaintDrawParagraph.prototype = { apply$1: function(canvas) { canvas.drawParagraph$2(0, this.paragraph, this.offset); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H._PaintBounds.prototype = { clipRect$2: function(_, rect, command) { var t1, t4, t3, t2, _this = this, left = rect.left, $top = rect.top, right = rect.right, bottom = rect.bottom; if (!_this._currentMatrixIsIdentity) { t1 = $.$get$_PaintBounds__tempRectData(); t1[0] = left; t1[1] = $top; t1[2] = right; t1[3] = bottom; H.transformLTRB(_this._currentMatrix, t1); left = t1[0]; $top = t1[1]; right = t1[2]; bottom = t1[3]; } if (!_this._clipRectInitialized) { _this._currentClipLeft = left; _this._currentClipTop = $top; _this._currentClipRight = right; _this._currentClipBottom = bottom; _this._clipRectInitialized = true; t4 = bottom; t3 = right; t2 = $top; t1 = left; } else { t1 = _this._currentClipLeft; if (left > t1) { _this._currentClipLeft = left; t1 = left; } t2 = _this._currentClipTop; if ($top > t2) { _this._currentClipTop = $top; t2 = $top; } t3 = _this._currentClipRight; if (right < t3) { _this._currentClipRight = right; t3 = right; } t4 = _this._currentClipBottom; if (bottom < t4) { _this._currentClipBottom = bottom; t4 = bottom; } } if (t1 >= t3 || t2 >= t4) command.isClippedOut = true; else { command.leftBound = t1; command.topBound = t2; command.rightBound = t3; command.bottomBound = t4; } }, grow$2: function(r, command) { this.growLTRB$5(r.left, r.top, r.right, r.bottom, command); }, growLTRB$5: function(left, $top, right, bottom, command) { var t1, transformedPointLeft, transformedPointTop, transformedPointRight, transformedPointBottom, transformedPointRight0, transformedPointLeft0, transformedPointBottom0, transformedPointTop0, _this = this; if (left == right || $top == bottom) { command.isClippedOut = true; return; } if (!_this._currentMatrixIsIdentity) { t1 = $.$get$_PaintBounds__tempRectData(); t1[0] = left; t1[1] = $top; t1[2] = right; t1[3] = bottom; H.transformLTRB(_this._currentMatrix, t1); transformedPointLeft = t1[0]; transformedPointTop = t1[1]; transformedPointRight = t1[2]; transformedPointBottom = t1[3]; } else { transformedPointBottom = bottom; transformedPointRight = right; transformedPointTop = $top; transformedPointLeft = left; } if (_this._clipRectInitialized) { transformedPointRight0 = _this._currentClipRight; if (transformedPointLeft > transformedPointRight0) { command.isClippedOut = true; return; } transformedPointLeft0 = _this._currentClipLeft; if (transformedPointRight < transformedPointLeft0) { command.isClippedOut = true; return; } transformedPointBottom0 = _this._currentClipBottom; if (transformedPointTop > transformedPointBottom0) { command.isClippedOut = true; return; } transformedPointTop0 = _this._currentClipTop; if (transformedPointBottom < transformedPointTop0) { command.isClippedOut = true; return; } if (transformedPointLeft < transformedPointLeft0) transformedPointLeft = transformedPointLeft0; if (transformedPointRight > transformedPointRight0) transformedPointRight = transformedPointRight0; if (transformedPointTop < transformedPointTop0) transformedPointTop = transformedPointTop0; if (transformedPointBottom > transformedPointBottom0) transformedPointBottom = transformedPointBottom0; } command.leftBound = transformedPointLeft; command.topBound = transformedPointTop; command.rightBound = transformedPointRight; command.bottomBound = transformedPointBottom; if (_this._didPaintInsideClipArea) { _this.__engine$_left = Math.min(Math.min(_this.__engine$_left, H.checkNum(transformedPointLeft)), H.checkNum(transformedPointRight)); _this.__engine$_right = Math.max(Math.max(_this.__engine$_right, H.checkNum(transformedPointLeft)), H.checkNum(transformedPointRight)); _this.__engine$_top = Math.min(Math.min(_this.__engine$_top, H.checkNum(transformedPointTop)), H.checkNum(transformedPointBottom)); _this.__engine$_bottom = Math.max(Math.max(_this.__engine$_bottom, H.checkNum(transformedPointTop)), H.checkNum(transformedPointBottom)); } else { _this.__engine$_left = Math.min(H.checkNum(transformedPointLeft), H.checkNum(transformedPointRight)); _this.__engine$_right = Math.max(H.checkNum(transformedPointLeft), H.checkNum(transformedPointRight)); _this.__engine$_top = Math.min(H.checkNum(transformedPointTop), H.checkNum(transformedPointBottom)); _this.__engine$_bottom = Math.max(H.checkNum(transformedPointTop), H.checkNum(transformedPointBottom)); } _this._didPaintInsideClipArea = true; }, saveTransformsAndClip$0: function() { var _this = this, t1 = _this._currentMatrix, t2 = new H.Matrix40(new Float32Array(16)); t2.setFrom$1(t1); _this.__engine$_transforms.push(t2); t1 = _this._clipRectInitialized ? new P.Rect(_this._currentClipLeft, _this._currentClipTop, _this._currentClipRight, _this._currentClipBottom) : null; _this._clipStack.push(t1); }, computeBounds$0: function() { var t1, t2, maxLeft, maxRight, maxTop, maxBottom, left, right, $top, bottom, _this = this; if (!_this._didPaintInsideClipArea) return C.Rect_0_0_0_0; t1 = _this.maxPaintBounds; t2 = t1.left; t2.toString; if (isNaN(t2)) maxLeft = -1 / 0; else maxLeft = t2; t2 = t1.right; t2.toString; if (isNaN(t2)) maxRight = 1 / 0; else maxRight = t2; t2 = t1.top; t2.toString; if (isNaN(t2)) maxTop = -1 / 0; else maxTop = t2; t1 = t1.bottom; t1.toString; if (isNaN(t1)) maxBottom = 1 / 0; else maxBottom = t1; t1 = _this.__engine$_left; t2 = _this.__engine$_right; left = Math.min(t1, t2); right = Math.max(t1, t2); t2 = _this.__engine$_top; t1 = _this.__engine$_bottom; $top = Math.min(t2, t1); bottom = Math.max(t2, t1); if (right < maxLeft || bottom < maxTop) return C.Rect_0_0_0_0; return new P.Rect(Math.max(left, maxLeft), Math.max($top, maxTop), Math.min(right, maxRight), Math.min(bottom, maxBottom)); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.RenderStrategy.prototype = {}; H._WebGlRenderer.prototype = { drawRectToGl$6: function(targetRect, gl, glProgram, gradient, widthInPixels, heightInPixels) { var t1, t2, t3, colorsBuffer, colors, indexBuffer, t4, left = targetRect.left, $top = targetRect.top, right = targetRect.right, bottom = targetRect.bottom, vertices = new Float32Array(8); vertices[0] = left; vertices[1] = $top; vertices[2] = right; vertices[3] = $top; vertices[4] = right; vertices[5] = bottom; vertices[6] = left; vertices[7] = bottom; t1 = glProgram.program; t2 = gl.glContext; t2.uniformMatrix4fv.apply(t2, [gl.getUniformLocation$2(0, t1, "u_ctransform"), false, H.Matrix4$identity().__engine$_m4storage]); t2.uniform4f.apply(t2, [gl.getUniformLocation$2(0, t1, "u_scale"), 2 / widthInPixels, -2 / heightInPixels, 1, 1]); t2.uniform4f.apply(t2, [gl.getUniformLocation$2(0, t1, "u_shift"), -1, 1, 0, 0]); t3 = t2.createBuffer.apply(t2, C.List_empty); t3.toString; t2.bindBuffer.apply(t2, [gl.get$kArrayBuffer(), t3]); t3 = gl.get$kStaticDraw(); t2.bufferData.apply(t2, [gl.get$kArrayBuffer(), vertices, t3]); t3 = gl._kFloat; t2.vertexAttribPointer.apply(t2, [0, 2, t3 == null ? gl._kFloat = t2.FLOAT : t3, false, 0, 0]); t2.enableVertexAttribArray.apply(t2, [0]); colorsBuffer = t2.createBuffer.apply(t2, C.List_empty); t2.bindBuffer.apply(t2, [gl.get$kArrayBuffer(), colorsBuffer]); colors = new Int32Array(H._ensureNativeList(H.setRuntimeTypeInfo([4278255360, 4278190335, 4294967040, 4278255615], type$.JSArray_int))); t3 = gl.get$kStaticDraw(); t2.bufferData.apply(t2, [gl.get$kArrayBuffer(), colors, t3]); t3 = gl._kUnsignedByte; t2.vertexAttribPointer.apply(t2, [1, 4, t3 == null ? gl._kUnsignedByte = t2.UNSIGNED_BYTE : t3, true, 0, 0]); t2.enableVertexAttribArray.apply(t2, [1]); indexBuffer = t2.createBuffer.apply(t2, C.List_empty); t2.bindBuffer.apply(t2, [gl.get$kElementArrayBuffer(), indexBuffer]); t3 = $.$get$_WebGlRenderer__vertexIndicesForRect(); t4 = gl.get$kStaticDraw(); t2.bufferData.apply(t2, [gl.get$kElementArrayBuffer(), t3, t4]); if (t2.getUniformLocation.apply(t2, [t1, "u_resolution"]) != null) t2.uniform2f.apply(t2, [gl.getUniformLocation$2(0, t1, "u_resolution"), widthInPixels, heightInPixels]); t2.clear.apply(t2, [gl.get$kColorBufferBit()]); t2.viewport.apply(t2, [0, 0, widthInPixels, heightInPixels]); t1 = gl._kTriangles; if (t1 == null) t1 = gl._kTriangles = t2.TRIANGLES; t3 = t3.length; t4 = gl._kUnsignedShort; t2.drawElements.apply(t2, [t1, t3, t4 == null ? gl._kUnsignedShort = t2.UNSIGNED_SHORT : t4, 0]); } }; H._GlProgram.prototype = {}; H._GlContext.prototype = { drawImage$3: function(_, context, left, $top) { var t1 = this.__engine$_canvas, t2 = this._widthInPixels, t3 = this._heightInPixels; context.drawImage.apply(context, [t1, 0, 0, t2, t3, left, $top, t2, t3]); }, compileShader$2: function(_, shaderType, source) { var t2, t1 = this.glContext, shader = t1.createShader.apply(t1, [t1[shaderType]]); if (shader == null) throw H.wrapException(P.Exception_Exception(P.callMethod(t1, "getError", C.List_empty))); t1.shaderSource.apply(t1, [shader, source]); t1.compileShader.apply(t1, [shader]); t2 = this._kCompileStatus; if (!t1.getShaderParameter.apply(t1, [shader, t2 == null ? this._kCompileStatus = t1.COMPILE_STATUS : t2])) throw H.wrapException(P.Exception_Exception("Shader compilation failed: " + H.S(P.callMethod(t1, "getShaderInfoLog", [shader])))); return shader; }, dispose$0: function(_) { var t1 = this.glContext; t1 = t1.getExtension.apply(t1, ["WEBGL_lose_context"]); t1.loseContext.apply(t1, C.List_empty); }, get$kArrayBuffer: function() { var t1 = this._kArrayBuffer; return t1 == null ? this._kArrayBuffer = this.glContext.ARRAY_BUFFER : t1; }, get$kElementArrayBuffer: function() { var t1 = this._kElementArrayBuffer; return t1 == null ? this._kElementArrayBuffer = this.glContext.ELEMENT_ARRAY_BUFFER : t1; }, get$kStaticDraw: function() { var t1 = this._kStaticDraw; return t1 == null ? this._kStaticDraw = this.glContext.STATIC_DRAW : t1; }, get$kColorBufferBit: function() { var t1 = this._kColorBufferBit; return t1 == null ? this._kColorBufferBit = this.glContext.COLOR_BUFFER_BIT : t1; }, getUniformLocation$2: function(_, program, uniformName) { var t1 = this.glContext, res = t1.getUniformLocation.apply(t1, [program, uniformName]); if (res == null) throw H.wrapException(P.Exception_Exception(uniformName + " not found")); else return res; }, readPatternData$0: function() { var canvas, _this = this, t1 = _this.__engine$_canvas, t2 = "transferToImageBitmap" in t1; if (t2) { t1.getContext.apply(t1, ["webgl2"]); t1 = _this.__engine$_canvas; return t1.transferToImageBitmap.apply(t1, []); } else { t1 = _this._widthInPixels; canvas = W.CanvasElement_CanvasElement(_this._heightInPixels, t1); _this.drawImage$3(0, canvas.getContext("2d"), 0, 0); return canvas; } } }; H._OffScreenCanvas.prototype = { dispose$0: function(_) { this._glCanvas = this.__engine$_canvas = null; }, set$width: function(receiver, val) { return this.width = val; }, set$height: function(receiver, val) { return this.height = val; } }; H.SurfaceScene.prototype = { dispose$0: function(_) { } }; H.PersistedScene.prototype = { recomputeTransformAndClip$0: function() { var t2, t1 = window.innerWidth; t1.toString; t2 = window.innerHeight; t2.toString; this._localClipBounds = new P.Rect(0, 0, t1, t2); this._localTransformInverse = H.Matrix4$identity(); this._projectedClip = null; }, get$localTransformInverse: function() { return this._localTransformInverse; }, createElement$0: function(_) { return this.defaultCreateElement$1("flt-scene"); }, apply$0: function() { } }; H.SurfaceSceneBuilder.prototype = { _pushSurface$1$1: function(surface) { var t2, t1 = surface._oldLayer.value; if (t1 != null) t1.__engine$_state = C.PersistedSurfaceState_3; t1 = this._surfaceStack; t2 = C.JSArray_methods.get$last(t1); t2.__engine$_children.push(surface); surface.parent = t2; t1.push(surface); return surface; }, _pushSurface$1: function(surface) { return this._pushSurface$1$1(surface, type$.PersistedContainerSurface); }, pushOffset$3$oldLayer: function(dx, dy, oldLayer) { var t1, t2; type$.nullable_PersistedOffset._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedOffset(dx, dy, t1, t2, C.PersistedSurfaceState_0)); }, pushTransform$2$oldLayer: function(matrix4, oldLayer) { var matrix, t1, t2; if (this._surfaceStack.length === 1) matrix = H.Matrix4$identity().__engine$_m4storage; else matrix = H.toMatrix32(matrix4); type$.nullable_PersistedTransform._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedTransform(matrix, t1, t2, C.PersistedSurfaceState_0)); }, pushClipRect$3$clipBehavior$oldLayer: function(rect, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedClipRect._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedClipRect(clipBehavior, rect, null, t1, t2, C.PersistedSurfaceState_0)); }, pushClipRRect$3$clipBehavior$oldLayer: function(rrect, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedSurface._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedClipRRect(rrect, clipBehavior, null, t1, t2, C.PersistedSurfaceState_0)); }, pushClipPath$3$clipBehavior$oldLayer: function(path, clipBehavior, oldLayer) { var t1, t2; type$.nullable_PersistedClipPath._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedClipPath(path, clipBehavior, t1, t2, C.PersistedSurfaceState_0)); }, pushOpacity$3$offset$oldLayer: function(alpha, offset, oldLayer) { var t1, t2; type$.nullable_PersistedOpacity._as(oldLayer); t1 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t2 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t2 = new H.FrameReference(t2, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); return this._pushSurface$1(new H.PersistedOpacity(alpha, offset, t1, t2, C.PersistedSurfaceState_0)); }, pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor: function(clipBehavior, color, elevation, oldLayer, path, shadowColor) { var t1, t2, t3, t4, t5; type$.nullable_PersistedPhysicalShape._as(oldLayer); type$.SurfacePath._as(path); t1 = color.get$value(color); t2 = shadowColor == null ? null : shadowColor.get$value(shadowColor); if (t2 == null) t2 = 4278190080; t3 = path.getBounds$0(0); t4 = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); t5 = oldLayer != null && oldLayer.__engine$_state === C.PersistedSurfaceState_1 ? oldLayer : null; t5 = new H.FrameReference(t5, type$.FrameReference_PersistedSurface); $._frameReferences.push(t5); return this._pushSurface$1(new H.PersistedPhysicalShape(path, t3, elevation, new P.Color(t1), new P.Color(t2), clipBehavior, null, t4, t5, C.PersistedSurfaceState_0)); }, addRetained$1: function(retainedLayer) { var t1; type$.PersistedContainerSurface._as(retainedLayer); if (retainedLayer.__engine$_state === C.PersistedSurfaceState_1) retainedLayer.__engine$_state = C.PersistedSurfaceState_2; else retainedLayer.revive$0(); t1 = C.JSArray_methods.get$last(this._surfaceStack); t1.__engine$_children.push(retainedLayer); retainedLayer.parent = t1; }, pop$0: function(_) { this._surfaceStack.pop(); }, addPerformanceOverlay$2: function(enabledOptions, bounds) { if (!$.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay) { $.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay = true; $.$get$printWarning().call$1("The performance overlay isn't supported on the web"); } }, addPicture$4$isComplexHint$willChangeHint: function(offset, picture, isComplexHint, willChangeHint) { var t1, t2; isComplexHint; type$.EnginePicture._as(picture); t1 = picture.recordingCanvas._pictureBounds; t2 = new H.FrameReference(null, type$.FrameReference_PersistedSurface); $._frameReferences.push(t2); t2 = new H.PersistedPicture(offset._dx, offset._dy, picture, t1, new H.CrossFrameCache(type$.CrossFrameCache_HtmlElement), t2, C.PersistedSurfaceState_0); t1 = C.JSArray_methods.get$last(this._surfaceStack); t1.__engine$_children.push(t2); t2.parent = t1; }, addPlatformView$4$height$offset$width: function(viewId, height, offset, width) { var t2, t1 = new H.FrameReference(null, type$.FrameReference_PersistedSurface); $._frameReferences.push(t1); t1 = new H.PersistedPlatformView(viewId, offset._dx, offset._dy, width, height, t1, C.PersistedSurfaceState_0); t2 = C.JSArray_methods.get$last(this._surfaceStack); t2.__engine$_children.push(t1); t1.parent = t2; }, setRasterizerTracingThreshold$1: function(frameInterval) { }, setCheckerboardRasterCacheImages$1: function(checkerboard) { }, setCheckerboardOffscreenLayers$1: function(checkerboard) { }, build$0: function(_) { H._frameTimingsOnBuildFinish(); H._frameTimingsOnRasterStart(); H.timeAction("preroll_frame", new H.SurfaceSceneBuilder_build_closure(this)); return H.timeAction("apply_frame", new H.SurfaceSceneBuilder_build_closure0(this)); } }; H.SurfaceSceneBuilder_build_closure.prototype = { call$0: function() { for (var t1 = this.$this._surfaceStack; t1.length > 1;) t1.pop(); type$.PersistedScene._as(C.JSArray_methods.get$first(t1)).preroll$0(); }, $signature: 0 }; H.SurfaceSceneBuilder_build_closure0.prototype = { call$0: function() { var t3, t4, t1 = type$.PersistedScene, t2 = this.$this._surfaceStack; if ($.SurfaceSceneBuilder__lastFrameScene == null) t1._as(C.JSArray_methods.get$first(t2)).build$0(0); else { t3 = t1._as(C.JSArray_methods.get$first(t2)); t4 = $.SurfaceSceneBuilder__lastFrameScene; t4.toString; t3.update$1(0, t4); } H.commitScene(t1._as(C.JSArray_methods.get$first(t2))); $.SurfaceSceneBuilder__lastFrameScene = t1._as(C.JSArray_methods.get$first(t2)); return new H.SurfaceScene(t1._as(C.JSArray_methods.get$first(t2)).rootElement); }, $signature: 2131 }; H.NormalizedGradient.prototype = { setupUniforms$2: function(gl, glProgram) { var t1, t2, t3, t4, t5, i, t6, res, result, t7, t8, t9, t10, _this = this; for (t1 = _this.thresholdCount, t2 = _this.__engine$_scale, t3 = gl.glContext, t4 = _this._bias, t5 = glProgram.program, i = 0; i < t1; ++i) { t6 = "bias_" + i; res = t3.getUniformLocation.apply(t3, [t5, t6]); if (res == null) { H.throwExpression(P.Exception_Exception(t6 + " not found")); result = null; } else result = res; t6 = i * 4; t7 = t6 + 1; t8 = t6 + 2; t9 = t6 + 3; t3.uniform4f.apply(t3, [result, t4[t6], t4[t7], t4[t8], t4[t9]]); t10 = "scale_" + i; res = t3.getUniformLocation.apply(t3, [t5, t10]); if (res == null) { H.throwExpression(P.Exception_Exception(t10 + " not found")); result = null; } else result = res; t3.uniform4f.apply(t3, [result, t2[t6], t2[t7], t2[t8], t2[t9]]); } for (t1 = _this._thresholds, t2 = t1.length, i = 0; i < t2; i += 4) { t4 = "threshold_" + C.JSInt_methods._tdivFast$1(i, 4); res = t3.getUniformLocation.apply(t3, [t5, t4]); if (res == null) { H.throwExpression(P.Exception_Exception(t4 + " not found")); result = null; } else result = res; t3.uniform4f.apply(t3, [result, t1[i], t1[i + 1], t1[i + 2], t1[i + 3]]); } } }; H.EngineGradient.prototype = {}; H.GradientLinear.prototype = { createPaintStyle$3: function(ctx, shaderBounds, density) { var matrix4, offsetX, offsetY, t2, t3, t4, t5, centerX, centerY, gradient, _this = this, t1 = _this.tileMode; if (t1 === C.TileMode_0 || t1 === C.TileMode_3) { matrix4 = _this.matrix4; offsetX = shaderBounds.left; offsetY = shaderBounds.top; t2 = _this.from; t3 = _this.to; t4 = t2._dx; t5 = t3._dx; t2 = t2._dy; t3 = t3._dy; if (matrix4 != null) { centerX = (t4 + t5) / 2; centerY = (t2 + t3) / 2; matrix4.transform$2(0, t4 - centerX, t2 - centerY); t2 = matrix4.transformedX; t4 = matrix4.transformedY; matrix4.transform$2(0, t5 - centerX, t3 - centerY); ctx.toString; gradient = ctx.createLinearGradient(t2 + centerX - offsetX, t4 + centerY - offsetY, matrix4.transformedX + centerX - offsetX, matrix4.transformedY - offsetY + centerY); } else { ctx.toString; gradient = ctx.createLinearGradient(t4 - offsetX, t2 - offsetY, t5 - offsetX, t3 - offsetY); } H._addColorStopsToCanvasGradient(gradient, _this.colors, _this.colorStops, t1 === C.TileMode_3); return gradient; } else { t1 = ctx.createPattern(_this.createImageBitmap$3(shaderBounds, density, false), "no-repeat"); t1.toString; return t1; } }, createImageBitmap$3: function(shaderBounds, density, createDataUrl) { var widthInPixels, t3, t4, heightInPixels, t5, t6, t7, t8, gl, normalizedGradient, builder, method, t9, fragColor, probeName, shader, cacheKey, cachedProgram, vertexShader, fragmentShader, fromX, fromY, toX, toY, dx, dy, $length, sinVal, cosVal, isRepeated, originX, originY, translateToOrigin, rotationZ, storage, gradientTransform, image, _this = this, _s18_ = "premultipliedAlpha", _s12_ = "u_resolution", _s10_ = "m_gradient", t1 = shaderBounds.right, t2 = shaderBounds.left; t1 -= t2; widthInPixels = C.JSNumber_methods.ceil$0(t1); t3 = shaderBounds.bottom; t4 = shaderBounds.top; t3 -= t4; heightInPixels = C.JSNumber_methods.ceil$0(t3); if ($._glRenderer == null) $._glRenderer = new H._WebGlRenderer(); if ("OffscreenCanvas" in window) { t5 = new OffscreenCanvas(widthInPixels, heightInPixels); t6 = null; } else { t5 = W.CanvasElement_CanvasElement(heightInPixels, widthInPixels); t5.className = "gl-canvas"; t6 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t7 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t8 = t5.style; t8.position = "absolute"; t6 = H.S(widthInPixels / t6) + "px"; t8.width = t6; t6 = H.S(heightInPixels / t7) + "px"; t8.height = t6; t6 = t5; t5 = null; } if ("OffscreenCanvas" in window) { t5.toString; t6 = type$.String; t7 = C.OffscreenCanvas_methods.getContext$2(t5, "webgl2", P.LinkedHashMap_LinkedHashMap$_literal([_s18_, false], t6, type$.dynamic)); t7.toString; gl = new H._GlContext(t7); $._GlContext____programCache = P.LinkedHashMap_LinkedHashMap$_empty(t6, type$.nullable__GlProgram); gl.__engine$_canvas = t5; } else { t6.toString; t5 = $._cachedWebGLVersion; t5 = (t5 == null ? $._cachedWebGLVersion = H._detectWebGLVersion() : t5) === 1 ? "webgl" : "webgl2"; t7 = type$.String; t5 = C.CanvasElement_methods.getContext$2(t6, t5, P.LinkedHashMap_LinkedHashMap$_literal([_s18_, false], t7, type$.dynamic)); t5.toString; gl = new H._GlContext(t5); $._GlContext____programCache = P.LinkedHashMap_LinkedHashMap$_empty(t7, type$.nullable__GlProgram); gl.__engine$_canvas = t6; } gl._widthInPixels = widthInPixels; gl._heightInPixels = heightInPixels; normalizedGradient = H.NormalizedGradient_NormalizedGradient(_this.colors, _this.colorStops); t5 = $._WebGlRenderer__baseVertexShader; if (t5 == null) { t5 = $._cachedWebGLVersion; if (t5 == null) t5 = $._cachedWebGLVersion = H._detectWebGLVersion(); t6 = H.setRuntimeTypeInfo([], type$.JSArray_ShaderDeclaration); t7 = H.setRuntimeTypeInfo([], type$.JSArray_ShaderMethod); builder = new H.ShaderBuilder(t6, t7, t5 === 2, false, new P.StringBuffer("")); builder.addIn$2$name(11, "position"); builder.addIn$2$name(11, "color"); builder.addUniform$2$name(14, "u_ctransform"); builder.addUniform$2$name(11, "u_scale"); builder.addUniform$2$name(11, "u_shift"); t6.push(new H.ShaderDeclaration("v_color", 11, 3)); method = new H.ShaderMethod("main", H.setRuntimeTypeInfo([], type$.JSArray_String)); t7.push(method); method.addStatement$1("gl_Position = ((u_ctransform * position) * u_scale) + u_shift;"); method.addStatement$1("v_color = color.zyxw;"); t5 = $._WebGlRenderer__baseVertexShader = builder.build$0(0); } t6 = _this.tileMode; t7 = $._cachedWebGLVersion; if (t7 == null) t7 = $._cachedWebGLVersion = H._detectWebGLVersion(); t8 = H.setRuntimeTypeInfo([], type$.JSArray_ShaderDeclaration); t9 = H.setRuntimeTypeInfo([], type$.JSArray_ShaderMethod); t7 = t7 === 2; builder = new H.ShaderBuilder(t8, t9, t7, true, new P.StringBuffer("")); builder.floatPrecision = 1; builder.addIn$2$name(11, "v_color"); builder.addUniform$2$name(9, _s12_); builder.addUniform$2$name(14, _s10_); fragColor = builder._fragmentColorDeclaration; if (fragColor == null) fragColor = builder._fragmentColorDeclaration = new H.ShaderDeclaration(t7 ? "gFragColor" : "gl_FragColor", 11, 3); method = new H.ShaderMethod("main", H.setRuntimeTypeInfo([], type$.JSArray_String)); t9.push(method); method.addStatement$1("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);"); method.addStatement$1("float st = localCoord.x;"); probeName = H._writeSharedGradientShader(builder, method, normalizedGradient, t6); method.addStatement$1(fragColor.name + " = " + probeName + " * scale + bias;"); shader = builder.build$0(0); cacheKey = t5 + "||" + shader; cachedProgram = J.$index$asx(H._GlContext__programCache(), cacheKey); if (cachedProgram == null) { vertexShader = gl.compileShader$2(0, "VERTEX_SHADER", t5); fragmentShader = gl.compileShader$2(0, "FRAGMENT_SHADER", shader); t5 = gl.glContext; t7 = t5.createProgram.apply(t5, C.List_empty); t7.toString; t5.attachShader.apply(t5, [t7, vertexShader]); t5.attachShader.apply(t5, [t7, fragmentShader]); t5.linkProgram.apply(t5, [t7]); t8 = gl._kLinkStatus; if (!t5.getProgramParameter.apply(t5, [t7, t8 == null ? gl._kLinkStatus = t5.LINK_STATUS : t8])) H.throwExpression(P.Exception_Exception(P.callMethod(t5, "getProgramInfoLog", [t7]))); cachedProgram = new H._GlProgram(t7); J.$indexSet$ax(H._GlContext__programCache(), cacheKey, cachedProgram); t5.useProgram.apply(t5, [t7]); } t5 = _this.from; fromX = t5._dx; fromY = t5._dy; t5 = _this.to; toX = t5._dx; toY = t5._dy; dx = toX - fromX; dy = toY - fromY; $length = Math.sqrt(dx * dx + dy * dy); t5 = $length < 11920929e-14; sinVal = t5 ? 0 : -dy / $length; cosVal = t5 ? 1 : dx / $length; isRepeated = t6 !== C.TileMode_0; originX = isRepeated ? t1 / 2 : (fromX + toX) / 2 - t2; originY = isRepeated ? t3 / 2 : (fromY + toY) / 2 - t4; translateToOrigin = H.Matrix4$identity(); translateToOrigin.setTranslationRaw$3(-originX, -originY, 0); rotationZ = H.Matrix4$identity(); storage = rotationZ.__engine$_m4storage; storage[0] = cosVal; storage[1] = sinVal; storage[4] = -sinVal; storage[5] = cosVal; gradientTransform = H.Matrix4$identity(); if (t6 !== C.TileMode_1) gradientTransform.translate$2(0, 0.5, 0); if ($length > 11920929e-14) gradientTransform.scale$1(0, 1 / $length); t2 = _this.matrix4; if (t2 != null) { t2 = t2.matrix; gradientTransform.scale$2(0, 1, -1); gradientTransform.translate$2(0, -shaderBounds.get$center()._dx, -shaderBounds.get$center()._dy); gradientTransform.multiply$1(0, new H.Matrix40(t2)); gradientTransform.translate$2(0, shaderBounds.get$center()._dx, shaderBounds.get$center()._dy); gradientTransform.scale$2(0, 1, -1); } gradientTransform.multiply$1(0, rotationZ); gradientTransform.multiply$1(0, translateToOrigin); normalizedGradient.setupUniforms$2(gl, cachedProgram); t2 = cachedProgram.program; t4 = gl.glContext; t4.uniformMatrix4fv.apply(t4, [gl.getUniformLocation$2(0, t2, _s10_), false, gradientTransform.__engine$_m4storage]); t4.uniform2f.apply(t4, [gl.getUniformLocation$2(0, t2, _s12_), widthInPixels, heightInPixels]); t2 = $._glRenderer; t2.drawRectToGl$6(new P.Rect(0, 0, 0 + t1, 0 + t3), gl, cachedProgram, normalizedGradient, widthInPixels, heightInPixels); image = gl.readPatternData$0(); t4.bindBuffer.apply(t4, [gl.get$kArrayBuffer(), null]); t4.bindBuffer.apply(t4, [gl.get$kElementArrayBuffer(), null]); image.toString; return image; } }; H.ShaderBuilder.prototype = { addIn$2$name: function(dataType, $name) { var attrib = new H.ShaderDeclaration($name, dataType, 1); this.declarations.push(attrib); return attrib; }, addUniform$2$name: function(dataType, $name) { var uniform = new H.ShaderDeclaration($name, dataType, 2); this.declarations.push(uniform); return uniform; }, _writeVariableDeclaration$2: function(sb, variable) { var t2, t3, _this = this, _s8_ = "varying ", t1 = variable.storage; switch (t1) { case 0: _this.__engine$_buffer._contents += "const "; break; case 1: if (_this.isWebGl2) t2 = "in "; else t2 = _this._isFragmentShader ? _s8_ : "attribute "; _this.__engine$_buffer._contents += t2; break; case 2: _this.__engine$_buffer._contents += "uniform "; break; case 3: t2 = _this.isWebGl2 ? "out " : _s8_; _this.__engine$_buffer._contents += t2; break; } t2 = _this.__engine$_buffer; t3 = t2._contents += H.ShaderBuilder_typeToString(variable.dataType) + " " + variable.name; if (t1 === 0) t1 = t2._contents = t3 + " = "; else t1 = t3; t2._contents = t1 + ";\n"; }, build$0: function(_) { var t2, t3, _i, _this = this, t1 = _this.isWebGl2; if (t1) _this.__engine$_buffer._contents += "#version 300 es\n"; t2 = _this.floatPrecision; if (t2 != null) { if (t2 === 0) t2 = "lowp"; else t2 = t2 === 1 ? "mediump" : "highp"; _this.__engine$_buffer._contents += "precision " + t2 + " float;\n"; } if (t1 && _this._fragmentColorDeclaration != null) { t1 = _this._fragmentColorDeclaration; t1.toString; _this._writeVariableDeclaration$2(_this.__engine$_buffer, t1); } for (t1 = _this.declarations, t2 = t1.length, t3 = _this.__engine$_buffer, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) _this._writeVariableDeclaration$2(t3, t1[_i]); for (t1 = _this._methods, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].write$1(0, t3); t1 = t3._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; H.ShaderMethod.prototype = { addStatement$1: function(statement) { this._statements.push(statement); }, write$1: function(_, buffer) { var t2, t3, _i, t1 = buffer._contents += "void " + this.name + "() {\n"; for (t2 = this._statements, t3 = t2.length, _i = 0; _i < t3; ++_i) { t1 += t2[_i] + "\n"; buffer._contents = t1; } buffer._contents = t1 + "}\n"; }, get$name: function(receiver) { return this.name; } }; H.ShaderDeclaration.prototype = { get$name: function(receiver) { return this.name; } }; H.commitScene_closure.prototype = { call$2: function(a, b) { var bSize, t1 = a.canvasSize, aSize = t1._dy * t1._dx; t1 = b.canvasSize; bSize = t1._dy * t1._dx; return J.compareTo$1$ns(bSize, aSize); }, $signature: 2146 }; H.PersistedSurfaceState.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.PersistedSurface.prototype = { revive$0: function() { this.__engine$_state = C.PersistedSurfaceState_0; }, canUpdateAsMatch$1: function(oldSurface) { return oldSurface.__engine$_state === C.PersistedSurfaceState_1 && H.getRuntimeType(this) === H.getRuntimeType(oldSurface); }, get$childContainer: function() { return this.rootElement; }, build$0: function(_) { var t2, _this = this, t1 = _this.createElement$0(0); _this.rootElement = t1; t2 = H._browserEngine(); if (t2 === C.BrowserEngine_1) { t1 = t1.style; t1.zIndex = "0"; } _this.apply$0(); _this.__engine$_state = C.PersistedSurfaceState_1; }, adoptElements$1: function(oldSurface) { this.rootElement = oldSurface.rootElement; oldSurface.rootElement = null; oldSurface.__engine$_state = C.PersistedSurfaceState_4; }, update$1: function(_, oldSurface) { this.adoptElements$1(oldSurface); this.__engine$_state = C.PersistedSurfaceState_1; }, retain$0: function() { if (this.__engine$_state === C.PersistedSurfaceState_2) $._retainedSurfaces.push(this); }, discard$0: function() { var t1 = this.rootElement; t1.toString; J.remove$0$ax(t1); this.rootElement = null; this.__engine$_state = C.PersistedSurfaceState_4; }, defaultCreateElement$1: function(tagName) { var t1 = W._ElementFactoryProvider_createElement_tag(tagName, null), t2 = t1.style; t2.position = "absolute"; return t1; }, get$localTransformInverse: function() { var t1 = this._localTransformInverse; return t1 == null ? this._localTransformInverse = H.Matrix4$identity() : t1; }, recomputeTransformAndClip$0: function() { var _this = this; _this.__engine$_transform = _this.parent.__engine$_transform; _this._projectedClip = _this._localTransformInverse = _this._localClipBounds = null; }, preroll$0: function() { this.recomputeTransformAndClip$0(); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PersistedLeafSurface.prototype = {}; H.PersistedContainerSurface.prototype = { preroll$0: function() { var t1, $length, i; this.super$PersistedSurface$preroll(); t1 = this.__engine$_children; $length = t1.length; for (i = 0; i < $length; ++i) t1[i].preroll$0(); }, recomputeTransformAndClip$0: function() { var _this = this; _this.__engine$_transform = _this.parent.__engine$_transform; _this._projectedClip = _this._localTransformInverse = _this._localClipBounds = null; }, build$0: function(_) { var t1, len, containerElement, i, child, t2; this.super$PersistedSurface$build(0); t1 = this.__engine$_children; len = t1.length; containerElement = this.get$childContainer(); for (i = 0; i < len; ++i) { child = t1[i]; if (child.__engine$_state === C.PersistedSurfaceState_2) child.retain$0(); else if (child instanceof H.PersistedContainerSurface && child._oldLayer.value != null) { t2 = child._oldLayer.value; t2.toString; child.update$1(0, t2); } else child.build$0(0); containerElement.toString; t2 = child.rootElement; t2.toString; containerElement.appendChild(t2); child.__engine$_index = i; } }, matchForUpdate$1: function(existingSurface) { return 1; }, update$1: function(_, oldSurface) { var t1, _this = this; _this.super$PersistedSurface$update(0, oldSurface); if (oldSurface.__engine$_children.length === 0) _this._updateZeroToMany$1(oldSurface); else { t1 = _this.__engine$_children.length; if (t1 === 1) _this._updateManyToOne$1(oldSurface); else if (t1 === 0) H.PersistedContainerSurface__discardActiveChildren(oldSurface); else _this._updateManyToMany$1(oldSurface); } }, _updateZeroToMany$1: function(oldSurface) { var i, newChild, t2, containerElement = this.get$childContainer(), t1 = this.__engine$_children, $length = t1.length; for (i = 0; i < $length; ++i) { newChild = t1[i]; if (newChild.__engine$_state === C.PersistedSurfaceState_2) newChild.retain$0(); else if (newChild instanceof H.PersistedContainerSurface && newChild._oldLayer.value != null) newChild.update$1(0, newChild._oldLayer.value); else newChild.build$0(0); newChild.__engine$_index = i; containerElement.toString; t2 = newChild.rootElement; t2.toString; containerElement.appendChild(t2); } }, _updateManyToOne$1: function(oldSurface) { var t1, t2, oldLayer, bestMatch, bestScore, i, candidate, score, t3, oldChild, _this = this, newChild = _this.__engine$_children[0]; newChild.__engine$_index = 0; if (newChild.__engine$_state === C.PersistedSurfaceState_2) { t1 = newChild.rootElement.parentElement; t2 = _this.get$childContainer(); if (t1 == null ? t2 != null : t1 !== t2) { t1 = _this.get$childContainer(); t1.toString; t2 = newChild.rootElement; t2.toString; t1.appendChild(t2); } newChild.retain$0(); H.PersistedContainerSurface__discardActiveChildren(oldSurface); return; } if (newChild instanceof H.PersistedContainerSurface && newChild._oldLayer.value != null) { oldLayer = newChild._oldLayer.value; t1 = oldLayer.rootElement.parentElement; t2 = _this.get$childContainer(); if (t1 == null ? t2 != null : t1 !== t2) { t1 = _this.get$childContainer(); t1.toString; t2 = oldLayer.rootElement; t2.toString; t1.appendChild(t2); } newChild.update$1(0, oldLayer); H.PersistedContainerSurface__discardActiveChildren(oldSurface); return; } for (t1 = oldSurface.__engine$_children, bestMatch = null, bestScore = 2, i = 0; i < t1.length; ++i) { candidate = t1[i]; if (!newChild.canUpdateAsMatch$1(candidate)) continue; score = newChild.matchForUpdate$1(candidate); if (score < bestScore) { bestScore = score; bestMatch = candidate; } } if (bestMatch != null) { newChild.update$1(0, bestMatch); t2 = newChild.rootElement.parentElement; t3 = _this.get$childContainer(); if (t2 == null ? t3 != null : t2 !== t3) { t2 = _this.get$childContainer(); t2.toString; t3 = newChild.rootElement; t3.toString; t2.appendChild(t3); } } else { newChild.build$0(0); t2 = _this.get$childContainer(); t2.toString; t3 = newChild.rootElement; t3.toString; t2.appendChild(t3); } for (i = 0; i < t1.length; ++i) { oldChild = t1[i]; if (oldChild != bestMatch && oldChild.__engine$_state === C.PersistedSurfaceState_1) oldChild.discard$0(); } }, _updateManyToMany$1: function(oldSurface) { var t1, t2, indexMapNew, indexMapOld, requiresDomInserts, topInNew, newChild, t3, isReparenting, matchedOldChild, oldLayer, indexInOld, backfill, _this = this, containerElement = _this.get$childContainer(), matches = _this._matchChildren$1(oldSurface); for (t1 = _this.__engine$_children, t2 = type$.JSArray_int, indexMapNew = null, indexMapOld = null, requiresDomInserts = false, topInNew = 0; topInNew < t1.length; ++topInNew) { newChild = t1[topInNew]; if (newChild.__engine$_state === C.PersistedSurfaceState_2) { t3 = newChild.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.retain$0(); matchedOldChild = newChild; } else if (newChild instanceof H.PersistedContainerSurface && newChild._oldLayer.value != null) { oldLayer = newChild._oldLayer.value; t3 = oldLayer.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.update$1(0, oldLayer); matchedOldChild = oldLayer; } else { matchedOldChild = matches.$index(0, newChild); if (matchedOldChild != null) { t3 = matchedOldChild.rootElement.parentElement; isReparenting = t3 == null ? containerElement != null : t3 !== containerElement; newChild.update$1(0, matchedOldChild); } else { newChild.build$0(0); isReparenting = true; } } indexInOld = matchedOldChild != null && !isReparenting ? matchedOldChild.__engine$_index : -1; if (!requiresDomInserts && indexInOld !== topInNew) { indexMapNew = H.setRuntimeTypeInfo([], t2); indexMapOld = H.setRuntimeTypeInfo([], t2); for (backfill = 0; backfill < topInNew; ++backfill) { indexMapNew.push(backfill); indexMapOld.push(backfill); } requiresDomInserts = true; } if (requiresDomInserts && indexInOld !== -1) { indexMapNew.push(topInNew); indexMapOld.push(indexInOld); } newChild.__engine$_index = topInNew; } if (requiresDomInserts) { indexMapOld.toString; _this._insertChildDomNodes$2(indexMapNew, indexMapOld); } H.PersistedContainerSurface__discardActiveChildren(oldSurface); }, _insertChildDomNodes$2: function(indexMapNew, indexMapOld) { var t1, i, containerElement, t2, refNode, isStationary, childElement, stationaryIndices = H.longestIncreasingSubsequence(indexMapOld); for (t1 = stationaryIndices.length, i = 0; i < t1; ++i) stationaryIndices[i] = indexMapNew[stationaryIndices[i]]; containerElement = this.get$childContainer(); for (t1 = this.__engine$_children, i = t1.length - 1, t2 = type$.HtmlElement, refNode = null; i >= 0; --i, refNode = childElement) { indexMapNew.toString; isStationary = C.JSArray_methods.indexOf$1(indexMapNew, i) !== -1 && C.JSArray_methods.contains$1(stationaryIndices, i); childElement = t2._as(t1[i].rootElement); if (!isStationary) if (refNode == null) containerElement.appendChild(childElement); else containerElement.insertBefore(childElement, refNode); } }, _matchChildren$1: function(oldSurface) { var i, child, oldChildren, newChildCount, oldChildCount, allMatches, indexInNew, newChild, indexInOld, oldChild, result, match, matchedChild, newChildNeedsMatch, t1 = this.__engine$_children, newUnfilteredChildCount = t1.length, t2 = oldSurface.__engine$_children, oldUnfilteredChildCount = t2.length, newChildren = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); for (i = 0; i < newUnfilteredChildCount; ++i) { child = t1[i]; if (child.__engine$_state === C.PersistedSurfaceState_0 && child._oldLayer.value == null) newChildren.push(child); } oldChildren = H.setRuntimeTypeInfo([], type$.JSArray_nullable_PersistedSurface); for (i = 0; i < oldUnfilteredChildCount; ++i) { child = t2[i]; if (child.__engine$_state === C.PersistedSurfaceState_1) oldChildren.push(child); } newChildCount = newChildren.length; oldChildCount = oldChildren.length; if (newChildCount === 0 || oldChildCount === 0) return C.Map_empty8; allMatches = H.setRuntimeTypeInfo([], type$.JSArray__PersistedSurfaceMatch); for (indexInNew = 0; indexInNew < newChildCount; ++indexInNew) { newChild = newChildren[indexInNew]; for (indexInOld = 0; indexInOld < oldChildCount; ++indexInOld) { oldChild = oldChildren[indexInOld]; if (oldChild == null || !newChild.canUpdateAsMatch$1(oldChild)) continue; allMatches.push(new H._PersistedSurfaceMatch(newChild, indexInOld, newChild.matchForUpdate$1(oldChild))); } } C.JSArray_methods.sort$1(allMatches, new H.PersistedContainerSurface__matchChildren_closure()); result = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_PersistedSurface, type$.PersistedSurface); for (i = 0; i < allMatches.length; ++i) { match = allMatches[i]; t1 = match.oldChildIndex; matchedChild = oldChildren[t1]; t2 = match.newChild; newChildNeedsMatch = result.$index(0, t2) == null; if (matchedChild != null && newChildNeedsMatch) { oldChildren[t1] = null; result.$indexSet(0, t2, matchedChild); } } return result; }, retain$0: function() { var t1, len, i; this.super$PersistedSurface$retain(); t1 = this.__engine$_children; len = t1.length; for (i = 0; i < len; ++i) t1[i].retain$0(); }, revive$0: function() { var t1, len, i; this.super$PersistedSurface$revive(); t1 = this.__engine$_children; len = t1.length; for (i = 0; i < len; ++i) t1[i].revive$0(); }, discard$0: function() { this.super$PersistedSurface$discard(); H.PersistedContainerSurface__discardActiveChildren(this); } }; H.PersistedContainerSurface__matchChildren_closure.prototype = { call$2: function(m1, m2) { return C.JSNumber_methods.compareTo$1(m1.matchQuality, m2.matchQuality); }, $signature: 2152 }; H._PersistedSurfaceMatch.prototype = { toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.PersistedTransform.prototype = { recomputeTransformAndClip$0: function() { var _this = this; _this.__engine$_transform = _this.parent.__engine$_transform.multiplied$1(new H.Matrix40(_this.matrix4)); _this._projectedClip = _this._localTransformInverse = null; }, get$localTransformInverse: function() { var t1 = this._localTransformInverse; return t1 == null ? this._localTransformInverse = H.Matrix4_tryInvert0(new H.Matrix40(this.matrix4)) : t1; }, createElement$0: function(_) { var element = $.$get$domRenderer().createElement$1(0, "flt-transform"); H.DomRenderer_setElementStyle(element, "position", "absolute"); H.DomRenderer_setElementStyle(element, "transform-origin", "0 0 0"); return element; }, apply$0: function() { var t1 = this.rootElement.style, t2 = H.float64ListToCssTransform(this.matrix4); t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); }, update$1: function(_, oldSurface) { var t1, t2, matrixChanged, i; this.super$PersistedContainerSurface$update(0, oldSurface); t1 = oldSurface.matrix4; t2 = this.matrix4; if (t1 == null ? t2 == null : t1 === t2) return; t2.length; i = 0; while (true) { if (!(i < 16)) { matrixChanged = false; break; } if (t2[i] !== t1[i]) { matrixChanged = true; break; } ++i; } if (matrixChanged) { t1 = this.rootElement.style; t2 = H.float64ListToCssTransform(t2); t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t2, ""); } }, $isTransformEngineLayer0: 1 }; H.HtmlCodec.prototype = { get$frameCount: function() { return 1; }, get$repetitionCount: function() { return 0; }, getNextFrame$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.FrameInfo), $async$returnValue, $async$self = this, imgElement, t1, completer, t2; var $async$getNextFrame$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = new P._Future($.Zone__current, type$._Future_FrameInfo); completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_FrameInfo); t2 = $async$self.chunkCallback; if (t2 != null) t2.call$2(0, 100); if ($.$get$_supportsDecode()) { imgElement = W.ImageElement_ImageElement(); imgElement.src = $async$self.src; imgElement.decoding = "async"; P.promiseToFuture(imgElement.decode(), type$.dynamic).then$1$1(0, new H.HtmlCodec_getNextFrame_closure($async$self, imgElement, completer), type$.Null).catchError$1(new H.HtmlCodec_getNextFrame_closure0($async$self, completer)); } else $async$self._decodeUsingOnLoad$1(completer); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getNextFrame$0, $async$completer); }, _decodeUsingOnLoad$1: function(completer) { var t2, imgElement, t3, t1 = {}; t1.loadSubscription = null; t1._errorSubscription = $; t2 = new H.HtmlCodec__decodeUsingOnLoad__errorSubscription_get(t1); imgElement = W.ImageElement_ImageElement(); t3 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; new H.HtmlCodec__decodeUsingOnLoad__errorSubscription_set(t1).call$1(W._EventStreamSubscription$(imgElement, "error", new H.HtmlCodec__decodeUsingOnLoad_closure(t1, t2, completer), false, t3)); t1.loadSubscription = W._EventStreamSubscription$(imgElement, "load", new H.HtmlCodec__decodeUsingOnLoad_closure0(t1, this, t2, imgElement, completer), false, t3); imgElement.src = this.src; }, dispose$0: function(_) { }, $isCodec: 1 }; H.HtmlCodec_getNextFrame_closure.prototype = { call$1: function(_) { var naturalWidth, naturalHeight, t2, t1 = this.$this.chunkCallback; if (t1 != null) t1.call$2(100, 100); t1 = this.imgElement; naturalWidth = t1.naturalWidth; naturalHeight = t1.naturalHeight; if (naturalWidth === 0) if (naturalHeight === 0) { t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_2) { t2 = H._browserEngine(); t2 = t2 === C.BrowserEngine_4; } else t2 = true; } else t2 = false; else t2 = false; if (t2) { naturalWidth = 300; naturalHeight = 300; } this.completer.complete$1(0, new H.SingleFrameInfo(new H.HtmlImage(t1, naturalWidth, naturalHeight))); }, $signature: 8 }; H.HtmlCodec_getNextFrame_closure0.prototype = { call$1: function(e) { this.$this._decodeUsingOnLoad$1(this.completer); }, $signature: 8 }; H.HtmlCodec__decodeUsingOnLoad__errorSubscription_set.prototype = { call$1: function(t1) { return this._box_0._errorSubscription = t1; }, $signature: 733 }; H.HtmlCodec__decodeUsingOnLoad__errorSubscription_get.prototype = { call$0: function() { var t1 = this._box_0._errorSubscription; return t1 === $ ? H.throwExpression(H.LateError$localNI("errorSubscription")) : t1; }, $signature: 722 }; H.HtmlCodec__decodeUsingOnLoad_closure.prototype = { call$1: function($event) { var t1 = this._box_0.loadSubscription; if (t1 != null) t1.cancel$0(0); J.cancel$0$z(this._errorSubscription_get.call$0()); this.completer.completeError$1($event); }, $signature: 66 }; H.HtmlCodec__decodeUsingOnLoad_closure0.prototype = { call$1: function($event) { var _this = this, t1 = _this.$this.chunkCallback; if (t1 != null) t1.call$2(100, 100); _this._box_0.loadSubscription.cancel$0(0); J.cancel$0$z(_this._errorSubscription_get.call$0()); t1 = _this.imgElement; _this.completer.complete$1(0, new H.SingleFrameInfo(new H.HtmlImage(t1, t1.naturalWidth, t1.naturalHeight))); }, $signature: 66 }; H.HtmlBlobCodec.prototype = { dispose$0: function(_) { (self.URL || self.webkitURL).revokeObjectURL(this.src); } }; H.SingleFrameInfo.prototype = { get$duration: function(_) { return C.Duration_0; }, $isFrameInfo: 1, get$image: function(receiver) { return this.image; } }; H.HtmlImage.prototype = { dispose$0: function(_) { }, clone$0: function(_) { return this; }, isCloneOf$1: function(other) { return other === this; }, cloneImageElement$0: function() { var t2, t1 = this.imgElement; if (this._requiresClone) return type$.ImageElement._as(t1.cloneNode(true)); else { this._requiresClone = true; t2 = t1.style; t2.position = "absolute"; return t1; } }, toString$0: function(_) { return "[" + H.S(this.width) + "\xd7" + H.S(this.height) + "]"; }, get$width: function(receiver) { return this.width; }, get$height: function(receiver) { return this.height; } }; H.Keyboard.prototype = { Keyboard$_$0: function() { var _this = this, t1 = new H.Keyboard$__closure(_this); _this._keydownListener = t1; C.Window_methods.addEventListener$2(window, "keydown", t1); t1 = new H.Keyboard$__closure0(_this); _this._keyupListener = t1; C.Window_methods.addEventListener$2(window, "keyup", t1); $._hotRestartListeners.push(new H.Keyboard$__closure1(_this)); }, dispose$0: function(_) { var t1, t2, _this = this; C.Window_methods.removeEventListener$2(window, "keydown", _this._keydownListener); C.Window_methods.removeEventListener$2(window, "keyup", _this._keyupListener); for (t1 = _this._keydownTimers, t2 = t1.get$keys(t1), t2 = t2.get$iterator(t2); t2.moveNext$0();) t1.$index(0, t2.get$current(t2)).cancel$0(0); t1.clear$0(0); $.Keyboard__instance = _this._keyupListener = _this._keydownListener = null; }, _handleHtmlEvent$1: function($event) { var t1, t2, t3, metaState, eventData, _this = this; if (!type$.KeyboardEvent._is($event)) return; t1 = $event.code; t1.toString; t2 = $event.key; t2.toString; if (!(t2 === "Meta" || t2 === "Shift" || t2 === "Alt" || t2 === "Control")) { t2 = _this._keydownTimers; t3 = t2.$index(0, t1); if (t3 != null) t3.cancel$0(0); if ($event.type === "keydown") t3 = $event.ctrlKey || $event.shiftKey || $event.altKey || $event.metaKey; else t3 = false; if (t3) t2.$indexSet(0, t1, P.Timer_Timer(C.Duration_1000000, new H.Keyboard__handleHtmlEvent_closure(_this, t1, $event))); else t2.remove$1(0, t1); } metaState = $event.getModifierState("Shift") ? 1 : 0; if ($event.getModifierState("Alt") || $event.getModifierState("AltGraph")) metaState |= 2; if ($event.getModifierState("Control")) metaState |= 4; if ($event.getModifierState("Meta")) metaState |= 8; _this._lastMetaState = metaState; if ($event.type === "keydown") { t1 = $event.key; if (t1 === "CapsLock") { t1 = metaState | 32; _this._lastMetaState = t1; } else if ($event.code === "NumLock") { t1 = metaState | 16; _this._lastMetaState = t1; } else if (t1 === "ScrollLock") { t1 = metaState | 64; _this._lastMetaState = t1; } else t1 = metaState; } else t1 = metaState; eventData = P.LinkedHashMap_LinkedHashMap$_literal(["type", $event.type, "keymap", "web", "code", $event.code, "key", $event.key, "metaState", t1], type$.String, type$.dynamic); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/keyevent", C.C_JSONMessageCodec.encodeMessage$1(eventData), new H.Keyboard__handleHtmlEvent_closure0($event)); } }; H.Keyboard$__closure.prototype = { call$1: function($event) { this.$this._handleHtmlEvent$1($event); }, $signature: 61 }; H.Keyboard$__closure0.prototype = { call$1: function($event) { this.$this._handleHtmlEvent$1($event); }, $signature: 61 }; H.Keyboard$__closure1.prototype = { call$0: function() { this.$this.dispose$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.Keyboard__handleHtmlEvent_closure.prototype = { call$0: function() { var t2, eventData, t1 = this.$this; t1._keydownTimers.remove$1(0, this.timerKey); t2 = this.event; eventData = P.LinkedHashMap_LinkedHashMap$_literal(["type", "keyup", "keymap", "web", "code", t2.code, "key", t2.key, "metaState", t1._lastMetaState], type$.String, type$.dynamic); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/keyevent", C.C_JSONMessageCodec.encodeMessage$1(eventData), H._engine___noopCallback$closure()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.Keyboard__handleHtmlEvent_closure0.prototype = { call$1: function(data) { if (data == null) return; if (H._asBoolS(J.$index$asx(C.C_JSONMessageCodec.decodeMessage$1(data), "handled"))) this.event.preventDefault(); }, $signature: 117 }; H._kLogicalKeyToModifierGetter_closure.prototype = { call$1: function($event) { return $event._event.altKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure0.prototype = { call$1: function($event) { return $event._event.altKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure1.prototype = { call$1: function($event) { return $event._event.ctrlKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure2.prototype = { call$1: function($event) { return $event._event.ctrlKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure3.prototype = { call$1: function($event) { return $event._event.shiftKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure4.prototype = { call$1: function($event) { return $event._event.shiftKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure5.prototype = { call$1: function($event) { return $event._event.metaKey; }, $signature: 152 }; H._kLogicalKeyToModifierGetter_closure6.prototype = { call$1: function($event) { return $event._event.metaKey; }, $signature: 152 }; H.KeyboardBinding.prototype = { get$_converter: function() { var t1 = this.__KeyboardBinding__converter; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_converter")) : t1; }, __engine$_addEventListener$2: function(_, eventName, handler) { var loggedHandler = new H.KeyboardBinding__addEventListener_closure(handler); this._listeners.$indexSet(0, eventName, loggedHandler); C.Window_methods.addEventListener$3(window, eventName, loggedHandler, true); }, _onKeyData$1: function(data) { var t1 = {}; t1.result = null; $.$get$EnginePlatformDispatcher__instance().invokeOnKeyData$2(data, new H.KeyboardBinding__onKeyData_closure(t1)); t1 = t1.result; t1.toString; return t1; }, _setup$0: function() { var t1, t2, _this = this; _this.__engine$_addEventListener$2(0, "keydown", new H.KeyboardBinding__setup_closure(_this)); _this.__engine$_addEventListener$2(0, "keyup", new H.KeyboardBinding__setup_closure0(_this)); t1 = H._operatingSystem(); t2 = type$.int; _this.__KeyboardBinding__converter = new H.KeyboardConverter(_this.get$_onKeyData(), t1 === C.OperatingSystem_4, P.LinkedHashMap_LinkedHashMap$_empty(t2, t2), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.void_Function)); } }; H.KeyboardBinding__addEventListener_closure.prototype = { call$1: function($event) { var t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) return this.handler.call$1($event); }, $signature: 212 }; H.KeyboardBinding__onKeyData_closure.prototype = { call$1: function(handled) { this._box_0.result = false; }, $signature: 52 }; H.KeyboardBinding__setup_closure.prototype = { call$1: function($event) { return this.$this.get$_converter().handleEvent$1(new H.FlutterHtmlKeyboardEvent(type$.KeyboardEvent._as($event))); }, $signature: 66 }; H.KeyboardBinding__setup_closure0.prototype = { call$1: function($event) { return this.$this.get$_converter().handleEvent$1(new H.FlutterHtmlKeyboardEvent(type$.KeyboardEvent._as($event))); }, $signature: 66 }; H.FlutterHtmlKeyboardEvent.prototype = {}; H.KeyboardConverter.prototype = { dispose$0: function(_) { this._disposed = true; }, _scheduleAsyncEvent$3: function(duration, getData, callback) { var t2, t1 = {}; t1.canceled = false; t2 = type$.void; P.Future_Future$delayed(duration, null, t2).then$1$1(0, new H.KeyboardConverter__scheduleAsyncEvent_closure(t1, this, callback, getData), t2); return new H.KeyboardConverter__scheduleAsyncEvent_closure0(t1); }, _startGuardingKey$3: function(physicalKey, logicalKey, currentTimeStamp) { var t2, _this = this, t1 = _this.onMacOs ? C.Duration_2000000 : C.Duration_1000000, cancelingCallback = _this._scheduleAsyncEvent$3(t1, new H.KeyboardConverter__startGuardingKey_closure(_this, currentTimeStamp, physicalKey, logicalKey), new H.KeyboardConverter__startGuardingKey_closure0(_this, physicalKey)); t1 = _this._keyGuards; t2 = t1.remove$1(0, physicalKey); if (t2 != null) t2.call$0(); t1.$indexSet(0, physicalKey, cancelingCallback); }, handleEvent$1: function($event) { var ms, timeStamp, t3, physicalKey, logicalKeyIsCharacter, character, logicalKey, isPhysicalDown, lastLogicalRecord, type, nextLogicalRecord, _this = this, t1 = $event._event, t2 = t1.timeStamp; t2.toString; ms = C.JSNumber_methods.toInt$0(t2); timeStamp = P.Duration$(0, 0, C.JSNumber_methods.toInt$0((t2 - ms) * 1000), ms, 0, 0); t2 = t1.key; t2.toString; t3 = t1.code; t3.toString; physicalKey = C.Map_YV6he.$index(0, t3); if (physicalKey == null) physicalKey = C.JSString_methods.get$hashCode(t3) + 34359738368 + 1099511627776; t3 = C.JSString_methods._codeUnitAt$1(t2, 0); if (!(t3 >= 97 && t3 <= 122)) t3 = t3 >= 65 && t3 <= 90; else t3 = true; logicalKeyIsCharacter = !(t3 && t2.length > 1); if (logicalKeyIsCharacter) character = t2; else character = null; logicalKey = new H.KeyboardConverter_handleEvent_closure($event, character, t2, physicalKey).call$0(); if (t1.type !== "keydown") if (_this.onMacOs) { t2 = t1.code; t2.toString; t2 = t2 === "CapsLock"; isPhysicalDown = t2; } else isPhysicalDown = false; else isPhysicalDown = true; t2 = _this._pressingRecords; lastLogicalRecord = t2.$index(0, physicalKey); if (_this.onMacOs) { t3 = t1.code; t3.toString; t3 = t3 === "CapsLock"; } else t3 = false; if (t3) { _this._scheduleAsyncEvent$3(C.Duration_0, new H.KeyboardConverter_handleEvent_closure0(timeStamp, physicalKey, logicalKey), new H.KeyboardConverter_handleEvent_closure1(_this, physicalKey)); type = C.KeyEventType_0; } else if (isPhysicalDown) if (lastLogicalRecord != null) { t3 = t1.repeat; if (t3 !== true) return; type = C.KeyEventType_2; } else type = C.KeyEventType_0; else { if (lastLogicalRecord == null) return; type = C.KeyEventType_1; } switch (type) { case C.KeyEventType_0: nextLogicalRecord = logicalKey; break; case C.KeyEventType_1: nextLogicalRecord = null; break; case C.KeyEventType_2: nextLogicalRecord = lastLogicalRecord; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t3 = nextLogicalRecord == null; if (t3) t2.remove$1(0, physicalKey); else t2.$indexSet(0, physicalKey, nextLogicalRecord); $.$get$_kLogicalKeyToModifierGetter().forEach$1(0, new H.KeyboardConverter_handleEvent_closure2(_this, $event, timeStamp)); if (logicalKeyIsCharacter) if (!t3) _this._startGuardingKey$3(physicalKey, logicalKey, timeStamp); else { t2 = _this._keyGuards.remove$1(0, physicalKey); if (t2 != null) t2.call$0(); } t2 = lastLogicalRecord == null ? logicalKey : lastLogicalRecord; t3 = type === C.KeyEventType_1 ? null : character; if (_this.dispatchKeyData.call$1(new P.KeyData(type, physicalKey, t2, t3))) t1.preventDefault(); } }; H.KeyboardConverter__scheduleAsyncEvent_closure.prototype = { call$1: function(_) { var _this = this; if (!_this._box_0.canceled && !_this.$this._disposed) { _this.callback.call$0(); _this.$this.dispatchKeyData.call$1(_this.getData.call$0()); } }, $signature: 83 }; H.KeyboardConverter__scheduleAsyncEvent_closure0.prototype = { call$0: function() { this._box_0.canceled = true; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.KeyboardConverter__startGuardingKey_closure.prototype = { call$0: function() { return new P.KeyData(C.KeyEventType_1, this.physicalKey, this.logicalKey, null); }, $signature: 482 }; H.KeyboardConverter__startGuardingKey_closure0.prototype = { call$0: function() { this.$this._pressingRecords.remove$1(0, this.physicalKey); }, $signature: 0 }; H.KeyboardConverter_handleEvent_closure.prototype = { call$0: function() { var result, altDown, ctrlDown, shiftDown, metaDown, t3, t4, _this = this, t1 = _this.event._event, t2 = t1.key; t2.toString; if (C.Map_T7S7Y.containsKey$1(0, t2)) { t2 = t1.key; t2.toString; t2 = C.Map_T7S7Y.$index(0, t2); if (t2 == null) result = null; else { t1 = t1.location; t1.toString; result = t2[t1]; } result.toString; return result; } t2 = _this.character; if (t2 != null) { result = C.JSString_methods._codeUnitAt$1(t2, 0) & 65535; if (t2.length === 2) result += C.JSString_methods._codeUnitAt$1(t2, 1) << 16 >>> 0; return result >= 65 && result <= 90 ? result + 97 - 65 : result; } t2 = _this.eventKey; if (t2 === "Dead") { altDown = t1.altKey; ctrlDown = t1.ctrlKey; shiftDown = t1.shiftKey; metaDown = t1.metaKey; t1 = altDown ? 70368744177664 : 0; t2 = ctrlDown ? 17592186044416 : 0; t3 = shiftDown ? 35184372088832 : 0; t4 = metaDown ? 140737488355328 : 0; return _this.physicalKey + (t1 + t2 + t3 + t4) + 34359738368 + 1099511627776; } t1 = C.Map_mC8xL.$index(0, t2); return t1 == null ? J.get$hashCode$(t2) + 34359738368 + 1099511627776 : t1; }, $signature: 218 }; H.KeyboardConverter_handleEvent_closure0.prototype = { call$0: function() { return new P.KeyData(C.KeyEventType_1, this.physicalKey, this.logicalKey, null); }, $signature: 482 }; H.KeyboardConverter_handleEvent_closure1.prototype = { call$0: function() { this.$this._pressingRecords.remove$1(0, this.physicalKey); }, $signature: 0 }; H.KeyboardConverter_handleEvent_closure2.prototype = { call$2: function(logicalKey, getModifier) { var t1 = this.$this, t2 = t1._pressingRecords; if (t2.containsValue$1(0, logicalKey) && !getModifier.call$1(this.event)) t2.removeWhere$1(t2, new H.KeyboardConverter_handleEvent__closure(t1, logicalKey, this.timeStamp)); }, $signature: 1388 }; H.KeyboardConverter_handleEvent__closure.prototype = { call$2: function(physicalKey, logicalRecord) { var t1 = this.logicalKey; if (logicalRecord != t1) return false; this.$this.dispatchKeyData.call$1(new P.KeyData(C.KeyEventType_1, physicalKey, t1, null)); return true; }, $signature: 1103 }; H.MouseCursor.prototype = {}; H.BrowserHistory.prototype = { get$_unsubscribe0: function() { var t1 = this.__BrowserHistory__unsubscribe; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_unsubscribe")) : t1; }, _setupStrategy$1: function(strategy) { this.__BrowserHistory__unsubscribe = strategy.addPopStateListener$1(0, type$.dynamic_Function_Event._as(this.get$onPopState(this))); }, exit$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$exit$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.get$urlStrategy() != null ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($async$self.tearDown$0(), $async$exit$0); case 4: // returning from await. $async$goto = 5; return P._asyncAwait($async$self.get$urlStrategy().go$1(0, -1), $async$exit$0); case 5: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$exit$0, $async$completer); }, get$currentPath: function() { var t1 = this.get$urlStrategy(); t1 = t1 == null ? null : t1.getPath$0(0); return t1 == null ? "/" : t1; }, get$currentState: function() { var t1 = this.get$urlStrategy(); return t1 == null ? null : t1.getState$0(0); }, _unsubscribe$0: function() { return this.get$_unsubscribe0().call$0(); } }; H.MultiEntriesBrowserHistory.prototype = { MultiEntriesBrowserHistory$1$urlStrategy: function(urlStrategy) { var t1, _this = this, strategy = _this.urlStrategy; if (strategy == null) return; _this._setupStrategy$1(strategy); if (!_this._hasSerialCount$1(_this.get$currentState())) { t1 = type$.dynamic; strategy.replaceState$3(0, P.LinkedHashMap_LinkedHashMap$_literal(["serialCount", 0, "state", _this.get$currentState()], t1, t1), "flutter", _this.get$currentPath()); } _this.__MultiEntriesBrowserHistory__lastSeenSerialCount = _this.get$_currentSerialCount(); }, get$_lastSeenSerialCount: function() { var t1 = this.__MultiEntriesBrowserHistory__lastSeenSerialCount; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lastSeenSerialCount")) : t1; }, get$_currentSerialCount: function() { if (this._hasSerialCount$1(this.get$currentState())) return H._asIntS(J.$index$asx(type$.Map_dynamic_dynamic._as(this.get$currentState()), "serialCount")); return 0; }, _hasSerialCount$1: function(state) { return type$.Map_dynamic_dynamic._is(state) && J.$index$asx(state, "serialCount") != null; }, setRouteName$2$state: function(routeName, state) { var t2, _this = this, t1 = _this.urlStrategy; if (t1 != null) { _this.__MultiEntriesBrowserHistory__lastSeenSerialCount = _this.get$_lastSeenSerialCount() + 1; t2 = type$.dynamic; t2 = P.LinkedHashMap_LinkedHashMap$_literal(["serialCount", _this.get$_lastSeenSerialCount(), "state", state], t2, t2); routeName.toString; t1.pushState$3(0, t2, "flutter", routeName); } }, setRouteName$1: function(routeName) { return this.setRouteName$2$state(routeName, null); }, onPopState$1: function(_, $event) { var t1, t2, t3, t4, _this = this; if (!_this._hasSerialCount$1(new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true))) { t1 = _this.urlStrategy; t1.toString; t2 = new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true); t3 = type$.dynamic; t1.replaceState$3(0, P.LinkedHashMap_LinkedHashMap$_literal(["serialCount", _this.get$_lastSeenSerialCount() + 1, "state", t2], t3, t3), "flutter", _this.get$currentPath()); } _this.__MultiEntriesBrowserHistory__lastSeenSerialCount = _this.get$_currentSerialCount(); t1 = $.$get$EnginePlatformDispatcher__instance(); t2 = _this.get$currentPath(); t3 = new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true); t3 = t3 == null ? null : J.$index$asx(t3, "state"); t4 = type$.dynamic; t1.invokeOnPlatformMessage$3("flutter/navigation", C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0("pushRouteInformation", P.LinkedHashMap_LinkedHashMap$_literal(["location", t2, "state", t3], t4, t4))), new H.MultiEntriesBrowserHistory_onPopState_closure()); }, tearDown$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, backCount, stateMap, t1; var $async$tearDown$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._isDisposed || $async$self.urlStrategy == null) { // goto return $async$goto = 1; break; } $async$self._isDisposed = true; $async$self._unsubscribe$0(); backCount = $async$self.get$_currentSerialCount(); $async$goto = backCount > 0 ? 3 : 4; break; case 3: // then $async$goto = 5; return P._asyncAwait($async$self.urlStrategy.go$1(0, -backCount), $async$tearDown$0); case 5: // returning from await. case 4: // join stateMap = type$.Map_dynamic_dynamic._as($async$self.get$currentState()); t1 = $async$self.urlStrategy; t1.toString; t1.replaceState$3(0, J.$index$asx(stateMap, "state"), "flutter", $async$self.get$currentPath()); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$tearDown$0, $async$completer); }, get$urlStrategy: function() { return this.urlStrategy; } }; H.MultiEntriesBrowserHistory_onPopState_closure.prototype = { call$1: function(_) { }, $signature: 117 }; H.SingleEntryBrowserHistory.prototype = { SingleEntryBrowserHistory$1$urlStrategy: function(urlStrategy) { var path, _this = this, strategy = _this.urlStrategy; if (strategy == null) return; _this._setupStrategy$1(strategy); path = _this.get$currentPath(); if (!_this._isFlutterEntry$1(new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(window.history.state, true))) { strategy.replaceState$3(0, P.LinkedHashMap_LinkedHashMap$_literal(["origin", true, "state", _this.get$currentState()], type$.String, type$.dynamic), "origin", ""); _this._setupFlutterEntry$3$path$replace(strategy, path, false); } }, _isFlutterEntry$1: function(state) { return type$.Map_dynamic_dynamic._is(state) && J.$eq$(J.$index$asx(state, "flutter"), true); }, setRouteName$2$state: function(routeName, state) { var t1 = this.urlStrategy; if (t1 != null) this._setupFlutterEntry$3$path$replace(t1, routeName, true); }, setRouteName$1: function(routeName) { return this.setRouteName$2$state(routeName, null); }, onPopState$1: function(_, $event) { var _this = this, _s18_ = "flutter/navigation", t1 = new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true); if (type$.Map_dynamic_dynamic._is(t1) && J.$eq$(J.$index$asx(t1, "origin"), true)) { t1 = _this.urlStrategy; t1.toString; _this._setupFlutterEntry$1(t1); $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s18_, C.C_JSONMethodCodec.encodeMethodCall$1(C.MethodCall_popRoute_null), new H.SingleEntryBrowserHistory_onPopState_closure()); } else if (_this._isFlutterEntry$1(new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy($event.state, true))) { t1 = _this._userProvidedRouteName; t1.toString; _this._userProvidedRouteName = null; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s18_, C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0("pushRoute", t1)), new H.SingleEntryBrowserHistory_onPopState_closure0()); } else { _this._userProvidedRouteName = _this.get$currentPath(); _this.urlStrategy.go$1(0, -1); } }, _setupFlutterEntry$3$path$replace: function(strategy, path, replace) { var t1; if (path == null) path = this.get$currentPath(); t1 = this._flutterState; if (replace) strategy.replaceState$3(0, t1, "flutter", path); else strategy.pushState$3(0, t1, "flutter", path); }, _setupFlutterEntry$1: function(strategy) { return this._setupFlutterEntry$3$path$replace(strategy, null, false); }, tearDown$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$tearDown$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._isDisposed || $async$self.urlStrategy == null) { // goto return $async$goto = 1; break; } $async$self._isDisposed = true; $async$self._unsubscribe$0(); t1 = $async$self.urlStrategy; $async$goto = 3; return P._asyncAwait(t1.go$1(0, -1), $async$tearDown$0); case 3: // returning from await. t1.replaceState$3(0, J.$index$asx(type$.Map_dynamic_dynamic._as($async$self.get$currentState()), "state"), "flutter", $async$self.get$currentPath()); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$tearDown$0, $async$completer); }, get$urlStrategy: function() { return this.urlStrategy; } }; H.SingleEntryBrowserHistory_onPopState_closure.prototype = { call$1: function(_) { }, $signature: 117 }; H.SingleEntryBrowserHistory_onPopState_closure0.prototype = { call$1: function(_) { }, $signature: 117 }; H.JsUrlStrategy.prototype = {}; H.UrlStrategy.prototype = {}; H.HashUrlStrategy.prototype = { addPopStateListener$1: function(_, fn) { C.Window_methods.addEventListener$2(window, "popstate", fn); return new H.HashUrlStrategy_addPopStateListener_closure(this, fn); }, getPath$0: function(_) { var path = window.location.hash; if (path == null) path = ""; if (path.length === 0 || path === "#") return "/"; return C.JSString_methods.substring$1(path, 1); }, getState$0: function(_) { return new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(window.history.state, true); }, prepareExternalUrl$1: function(_, internalUrl) { var t1, t2; if (internalUrl.length === 0) { t1 = window.location.pathname; t1.toString; t2 = window.location.search; t2.toString; t2 = t1 + t2; t1 = t2; } else t1 = "#" + internalUrl; return t1; }, pushState$3: function(_, state, title, url) { var t1 = this.prepareExternalUrl$1(0, url), t2 = window.history; t2.toString; t2.pushState(new P._StructuredCloneDart2Js([], []).walk$1(state), title, t1); }, replaceState$3: function(_, state, title, url) { var t1 = this.prepareExternalUrl$1(0, url), t2 = window.history; t2.toString; t2.replaceState(new P._StructuredCloneDart2Js([], []).walk$1(state), title, t1); }, go$1: function(_, count) { window.history.go(count); return this._waitForPopState$0(); }, _waitForPopState$0: function() { var t1 = {}, t2 = new P._Future($.Zone__current, type$._Future_void); t1._unsubscribe = $; new H.HashUrlStrategy__waitForPopState__unsubscribe_set(t1).call$1(this.addPopStateListener$1(0, new H.HashUrlStrategy__waitForPopState_closure(new H.HashUrlStrategy__waitForPopState__unsubscribe_get(t1), new P._AsyncCompleter(t2, type$._AsyncCompleter_void)))); return t2; } }; H.HashUrlStrategy_addPopStateListener_closure.prototype = { call$0: function() { C.Window_methods.removeEventListener$2(window, "popstate", this.fn); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.HashUrlStrategy__waitForPopState__unsubscribe_set.prototype = { call$1: function(t1) { return this._box_0._unsubscribe = t1; }, $signature: 494 }; H.HashUrlStrategy__waitForPopState__unsubscribe_get.prototype = { call$0: function() { var t1 = this._box_0._unsubscribe; return t1 === $ ? H.throwExpression(H.LateError$localNI("unsubscribe")) : t1; }, $signature: 495 }; H.HashUrlStrategy__waitForPopState_closure.prototype = { call$1: function(_) { this._unsubscribe_get.call$0().call$0(); this.completer.complete$0(0); }, $signature: 61 }; H.CustomUrlStrategy.prototype = { addPopStateListener$1: function(_, fn) { return J.addPopStateListener$1$x(this.delegate, fn); }, getPath$0: function(_) { return J.getPath$0$x(this.delegate); }, getState$0: function(_) { return J.getState$0$x(this.delegate); }, pushState$3: function(_, state, title, url) { return J.pushState$3$x(this.delegate, state, title, url); }, replaceState$3: function(_, state, title, url) { return J.replaceState$3$x(this.delegate, state, title, url); }, go$1: function(_, count) { return J.go$1$x(this.delegate, count); } }; H.PlatformLocation.prototype = {}; H.BrowserPlatformLocation.prototype = {}; H.EnginePictureRecorder.prototype = { get$cullRect: function() { var t1 = this.__EnginePictureRecorder_cullRect; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("cullRect")) : t1; }, beginRecording$1: function(_, bounds) { var t1, t2, _this = this; _this.__EnginePictureRecorder_cullRect = bounds; _this._isRecording = true; t1 = _this.get$cullRect(); t2 = H.setRuntimeTypeInfo([], type$.JSArray_PaintCommand); if (t1 == null) t1 = C.Rect_aha; return _this.__engine$_canvas = new H.RecordingCanvas(new H._PaintBounds(t1, H.setRuntimeTypeInfo([], type$.JSArray_Matrix4_2), H.setRuntimeTypeInfo([], type$.JSArray_nullable_Rect), H.Matrix4$identity()), t2, new H.RenderStrategy()); }, get$isRecording: function() { return this._isRecording; }, endRecording$0: function() { var t1, _this = this; if (!_this._isRecording) _this.beginRecording$1(0, C.Rect_aha); _this._isRecording = false; t1 = _this.__engine$_canvas; t1._pictureBounds = t1._paintBounds.computeBounds$0(); t1._recordingEnded = true; t1 = _this.__engine$_canvas; _this.get$cullRect(); return new H.EnginePicture(t1); } }; H.EnginePicture.prototype = { dispose$0: function(_) { } }; H.EnginePlatformDispatcher.prototype = { invokeOnMetricsChanged$0: function() { var t1 = this._onMetricsChanged; if (t1 != null) H.invoke(t1, this._onMetricsChangedZone); }, invokeOnKeyData$2: function(data, callback) { callback.call$1(false); }, invokeOnPlatformMessage$3: function($name, data, callback) { var t1, bytes, methodNameLength, t2, methodName, index, channelNameLength, channelName, parts, _s143_ = "Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)", _s143_0 = "Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)"; if ($name === "dev.flutter/channel-buffers") try { t1 = $.$get$channelBuffers(); data.toString; t1.toString; bytes = H.NativeUint8List_NativeUint8List$view(data.buffer, data.byteOffset, data.byteLength); if (bytes[0] === 7) { methodNameLength = bytes[1]; if (methodNameLength >= 254) H.throwExpression(P.Exception_Exception("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")); t2 = 2 + methodNameLength; methodName = C.C_Utf8Codec.decode$1(0, C.NativeUint8List_methods.sublist$2(bytes, 2, t2)); switch (methodName) { case "resize": if (bytes[t2] !== 12) H.throwExpression(P.Exception_Exception(_s143_)); index = t2 + 1; if (bytes[index] < 2) H.throwExpression(P.Exception_Exception(_s143_)); ++index; if (bytes[index] !== 7) H.throwExpression(P.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)")); ++index; channelNameLength = bytes[index]; if (channelNameLength >= 254) H.throwExpression(P.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)")); ++index; t2 = index + channelNameLength; channelName = C.C_Utf8Codec.decode$1(0, C.NativeUint8List_methods.sublist$2(bytes, index, t2)); if (bytes[t2] !== 3) H.throwExpression(P.Exception_Exception("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")); t1.resize$2(0, channelName, data.getUint32(t2 + 1, C.C_Endian === $.$get$Endian_host())); break; case "overflow": if (bytes[t2] !== 12) H.throwExpression(P.Exception_Exception(_s143_0)); index = t2 + 1; if (bytes[index] < 2) H.throwExpression(P.Exception_Exception(_s143_0)); ++index; if (bytes[index] !== 7) H.throwExpression(P.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)")); ++index; channelNameLength = bytes[index]; if (channelNameLength >= 254) H.throwExpression(P.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)")); ++index; t1 = index + channelNameLength; C.C_Utf8Codec.decode$1(0, C.NativeUint8List_methods.sublist$2(bytes, index, t1)); t1 = bytes[t1]; if (t1 !== 1 && t1 !== 2) H.throwExpression(P.Exception_Exception("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")); break; default: H.throwExpression(P.Exception_Exception("Unrecognized method '" + methodName + "' sent to dev.flutter/channel-buffers")); } } else { parts = H.setRuntimeTypeInfo(C.C_Utf8Codec.decode$1(0, bytes).split("\r"), type$.JSArray_String); if (parts.length === 3 && J.$eq$(parts[0], "resize")) t1.resize$2(0, parts[1], P.int_parse(parts[2], null)); else H.throwExpression(P.Exception_Exception("Unrecognized message " + H.S(parts) + " sent to dev.flutter/channel-buffers.")); } } finally { callback.call$1(null); } else { t1 = this._onPlatformMessage; if (t1 != null) H.invoke3(t1, this._onPlatformMessageZone, $name, data, callback); else $.$get$channelBuffers().push$3($name, data, callback); } }, __engine$_sendPlatformMessage$3: function($name, data, callback) { var decoded, t1, cacheSizeInBytes, url, t2, $navigator, $arguments, t3, theme, e, codec, _this = this; switch ($name) { case "flutter/skia": decoded = C.C_JSONMethodCodec.decodeMethodCall$1(data); switch (decoded.method) { case "Skia.setResourceCacheMaxBytes": t1 = H._detectRenderer(); if (t1) { cacheSizeInBytes = H._asIntS(decoded.$arguments); t1 = _this.get$rasterizer().surface; t1._skiaCacheBytes = cacheSizeInBytes; t1._syncCacheBytes$0(); } _this._replyToPlatformMessage$2(callback, C.C_JSONMessageCodec.encodeMessage$1([H.setRuntimeTypeInfo([true], type$.JSArray_bool)])); break; } return; case "flutter/assets": url = C.C_Utf8Codec.decode$1(0, H.NativeUint8List_NativeUint8List$view(data.buffer, 0, null)); $._assetManager.load$1(0, url).then$1$2$onError(0, new H.EnginePlatformDispatcher__sendPlatformMessage_closure(_this, callback), new H.EnginePlatformDispatcher__sendPlatformMessage_closure0(_this, callback), type$.Null); return; case "flutter/platform": decoded = C.C_JSONMethodCodec.decodeMethodCall$1(data); switch (decoded.method) { case "SystemNavigator.pop": _this._windows.$index(0, 0).get$browserHistory().exit$0().then$1$1(0, new H.EnginePlatformDispatcher__sendPlatformMessage_closure1(_this, callback), type$.Null); return; case "HapticFeedback.vibrate": t1 = $.$get$domRenderer(); t2 = _this._getHapticFeedbackDuration$1(decoded.$arguments); t1.toString; $navigator = window.navigator; if ("vibrate" in $navigator) $navigator.vibrate.apply($navigator, H.setRuntimeTypeInfo([t2], type$.JSArray_num)); _this._replyToPlatformMessage$2(callback, C.C_JSONMessageCodec.encodeMessage$1([true])); return; case string$.System: $arguments = decoded.$arguments; t1 = $.$get$domRenderer(); t2 = J.getInterceptor$asx($arguments); t3 = t2.$index($arguments, "label"); t1.toString; t1 = document; t1.title = t3; t2 = t2.$index($arguments, "primaryColor"); theme = type$.nullable_MetaElement._as(t1.querySelector("#flutterweb-theme")); if (theme == null) { theme = t1.createElement("meta"); theme.id = "flutterweb-theme"; theme.name = "theme-color"; t1.head.appendChild(theme); } t1 = H.colorToCssString(new P.Color(t2 >>> 0)); t1.toString; theme.content = t1; _this._replyToPlatformMessage$2(callback, C.C_JSONMessageCodec.encodeMessage$1([true])); return; case "SystemChrome.setPreferredOrientations": $.$get$domRenderer().setPreferredOrientation$1(decoded.$arguments).then$1$1(0, new H.EnginePlatformDispatcher__sendPlatformMessage_closure2(_this, callback), type$.Null); return; case "SystemSound.play": _this._replyToPlatformMessage$2(callback, C.C_JSONMessageCodec.encodeMessage$1([true])); return; case "Clipboard.setData": t1 = window.navigator.clipboard != null ? new H.ClipboardAPICopyStrategy() : new H.ExecCommandCopyStrategy(); new H.ClipboardMessageHandler(t1, H.PasteFromClipboardStrategy_PasteFromClipboardStrategy()).setDataMethodCall$2(decoded, callback); return; case "Clipboard.getData": t1 = window.navigator.clipboard != null ? new H.ClipboardAPICopyStrategy() : new H.ExecCommandCopyStrategy(); new H.ClipboardMessageHandler(t1, H.PasteFromClipboardStrategy_PasteFromClipboardStrategy()).getDataMethodCall$1(callback); return; } break; case "flutter/service_worker": t1 = window; e = document.createEvent("Event"); J._initEvent$3$x(e, "flutter-first-frame", true, true); t1.dispatchEvent(e); return; case "flutter/textinput": t1 = $.$get$textEditing(); t1.get$channel(t1).handleTextInput$2(data, callback); return; case "flutter/mousecursor": decoded = C.C_StandardMethodCodec0.decodeMethodCall$1(data); switch (decoded.method) { case "activateSystemCursor": $.MouseCursor__instance.toString; t1 = J.$index$asx(decoded.$arguments, "kind"); t2 = $.$get$domRenderer()._glassPaneElement; t2.toString; t1 = C.Map_gFKQ1.$index(0, t1); H.DomRenderer_setElementStyle(t2, "cursor", t1 == null ? "default" : t1); break; } return; case "flutter/web_test_e2e": _this._replyToPlatformMessage$2(callback, C.C_JSONMessageCodec.encodeMessage$1([H._handleWebTestEnd2EndMessage(C.C_JSONMethodCodec, data)])); return; case "flutter/platform_views": t1 = H._detectRenderer(); if (t1) _this.get$rasterizer().surface.viewEmbedder.handlePlatformViewCall$2(data, callback); else { data.toString; callback.toString; P.handlePlatformViewCall(data, callback); } return; case "flutter/accessibility": codec = new H.StandardMessageCodec(); $.$get$accessibilityAnnouncements().handleMessage$2(codec, data); _this._replyToPlatformMessage$2(callback, codec.encodeMessage$1(true)); return; case "flutter/navigation": _this._windows.$index(0, 0).handleNavigationMessage$1(data).then$1$1(0, new H.EnginePlatformDispatcher__sendPlatformMessage_closure3(_this, callback), type$.Null); _this._defaultRouteName = "/"; return; } t1 = $.pluginMessageCallHandler; if (t1 != null) { t1.call$3($name, data, callback); return; } _this._replyToPlatformMessage$2(callback, null); }, _getHapticFeedbackDuration$1: function(type) { switch (type) { case "HapticFeedbackType.lightImpact": return 10; case "HapticFeedbackType.mediumImpact": return 20; case "HapticFeedbackType.heavyImpact": return 30; case "HapticFeedbackType.selectionClick": return 10; default: return 50; } }, scheduleFrame$0: function() { var t1 = $.scheduleFrameCallback; if (t1 == null) throw H.wrapException(P.Exception_Exception("scheduleFrameCallback must be initialized first.")); t1.call$0(); }, render$2: function(_, scene, view) { var t1 = H._detectRenderer(); if (t1) { H._frameTimingsOnBuildFinish(); H._frameTimingsOnRasterStart(); type$.LayerScene._as(scene); t1 = this.get$rasterizer(); t1.toString; t1.draw$1(scene.layerTree); } else { type$.SurfaceScene._as(scene); $.$get$domRenderer().renderScene$1(scene.webOnlyRootElement); } H._frameTimingsOnRasterFinish(); }, _updatePlatformBrightness$1: function(value) { var _this = this, t1 = _this._configuration; if (t1.platformBrightness !== value) { _this._configuration = t1.copyWith$1$platformBrightness(value); H.invoke(null, null); H.invoke(_this._onPlatformBrightnessChanged, _this._onPlatformBrightnessChangedZone); } }, _addBrightnessMediaQueryListener$0: function() { var t2, _this = this, t1 = _this._brightnessMediaQuery; _this._updatePlatformBrightness$1(t1.matches ? C.Brightness_0 : C.Brightness_1); t2 = new H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure(_this); _this._brightnessMediaQueryListener = t2; C.MediaQueryList_methods.addListener$1(t1, t2); $._hotRestartListeners.push(new H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0(_this)); }, get$defaultRouteName: function() { var t1 = this._defaultRouteName; return t1 == null ? this._defaultRouteName = this._windows.$index(0, 0).get$browserHistory().get$currentPath() : t1; }, get$rasterizer: function() { var t2, t3, t4, t5, t1 = this.__EnginePlatformDispatcher_rasterizer; if (t1 === $) { t1 = H._detectRenderer(); if (t1) { t1 = type$.int; t2 = type$.nullable_int; t3 = type$.JSArray_int; t4 = H.setRuntimeTypeInfo([], t3); t3 = H.setRuntimeTypeInfo([], t3); t5 = $.$get$window().get$physicalSize(); t1 = new H.Rasterizer(new H.Surface(W._ElementFactoryProvider_createElement_tag("flt-canvas-container", null), new H.HtmlViewEmbedder(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.CkPictureRecorder), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.EmbeddedViewParams), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Element), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.nullable_Element_2), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Surface), P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashSet_LinkedHashSet$_empty(t1), t4, t3, P.LinkedHashMap_LinkedHashMap$_empty(t1, t1), t5, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Set_String))), new H.CompositorContext(), H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function)); } else t1 = null; t1 = this.__EnginePlatformDispatcher_rasterizer = t1; } return t1; }, _replyToPlatformMessage$2: function(callback, data) { P.Future_Future$delayed(C.Duration_0, null, type$.void).then$1$1(0, new H.EnginePlatformDispatcher__replyToPlatformMessage_closure(callback, data), type$.Null); } }; H.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure.prototype = { call$1: function(data) { this.registrationZone.runUnaryGuarded$1$2(this.callback, data, type$.nullable_ByteData); }, $signature: 117 }; H.EnginePlatformDispatcher__sendPlatformMessage_closure.prototype = { call$1: function(assetData) { this.$this._replyToPlatformMessage$2(this.callback, assetData); }, $signature: 986 }; H.EnginePlatformDispatcher__sendPlatformMessage_closure0.prototype = { call$1: function(error) { $.$get$printWarning().call$1("Error while trying to load an asset: " + H.S(error)); this.$this._replyToPlatformMessage$2(this.callback, null); }, $signature: 8 }; H.EnginePlatformDispatcher__sendPlatformMessage_closure1.prototype = { call$1: function(_) { this.$this._replyToPlatformMessage$2(this.callback, C.C_JSONMessageCodec.encodeMessage$1([true])); }, $signature: 83 }; H.EnginePlatformDispatcher__sendPlatformMessage_closure2.prototype = { call$1: function(success) { this.$this._replyToPlatformMessage$2(this.callback, C.C_JSONMessageCodec.encodeMessage$1([success])); }, $signature: 394 }; H.EnginePlatformDispatcher__sendPlatformMessage_closure3.prototype = { call$1: function(handled) { var t1 = this.callback; if (handled) this.$this._replyToPlatformMessage$2(t1, C.C_JSONMessageCodec.encodeMessage$1([true])); else if (t1 != null) t1.call$1(null); }, $signature: 394 }; H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure.prototype = { call$1: function($event) { var t1 = type$.MediaQueryListEvent._as($event).matches; t1.toString; t1 = t1 ? C.Brightness_0 : C.Brightness_1; this.$this._updatePlatformBrightness$1(t1); }, $signature: 61 }; H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._brightnessMediaQuery; (t2 && C.MediaQueryList_methods).removeListener$1(t2, t1._brightnessMediaQueryListener); t1._brightnessMediaQueryListener = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.EnginePlatformDispatcher__replyToPlatformMessage_closure.prototype = { call$1: function(_) { var t1 = this.callback; if (t1 != null) t1.call$1(this.data); }, $signature: 83 }; H.invoke3_closure.prototype = { call$0: function() { var _this = this; _this.callback.call$3(_this.arg1, _this.arg2, _this.arg3); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.PointerBinding.prototype = { _createAdapter$0: function() { var t1, _this = this; if ("PointerEvent" in window) { t1 = new H._PointerAdapter(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._ButtonSanitizer), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } if ("TouchEvent" in window) { t1 = new H._TouchAdapter(P.LinkedHashSet_LinkedHashSet$_empty(type$.int), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } if ("MouseEvent" in window) { t1 = new H._MouseAdapter(new H._ButtonSanitizer(), _this.glassPaneElement, _this.get$_onPointerData(), _this._pointerDataConverter); t1.setup$0(); return t1; } throw H.wrapException(P.UnsupportedError$("This browser does not support pointer, touch, or mouse events.")); }, _onPointerData$1: function(data) { var t1 = H.setRuntimeTypeInfo(data.slice(0), H._arrayInstanceType(data)), t2 = $.$get$EnginePlatformDispatcher__instance(); H.invoke1(t2._onPointerDataPacket, t2._onPointerDataPacketZone, new P.PointerDataPacket(t1), type$.PointerDataPacket); } }; H.PointerSupportDetector.prototype = { toString$0: function(_) { return "pointers:" + ("PointerEvent" in window) + ", touch:" + ("TouchEvent" in window) + ", mouse:" + ("MouseEvent" in window); } }; H._BaseAdapter.prototype = { addEventListener$3$acceptOutsideGlasspane: function(_, eventName, handler, acceptOutsideGlasspane) { var loggedHandler = new H._BaseAdapter_addEventListener_closure(this, acceptOutsideGlasspane, handler); $._BaseAdapter__listeners.$indexSet(0, eventName, loggedHandler); C.Window_methods.addEventListener$3(window, eventName, loggedHandler, true); }, addEventListener$2: function($receiver, eventName, handler) { return this.addEventListener$3$acceptOutsideGlasspane($receiver, eventName, handler, false); } }; H._BaseAdapter_addEventListener_closure.prototype = { call$1: function($event) { var t1; if (!this.acceptOutsideGlasspane && !this.$this.glassPaneElement.contains(type$.nullable_Node._as(J.get$target$x($event)))) return; t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) this.handler.call$1($event); }, $signature: 61 }; H._WheelEventListenerMixin.prototype = { _addWheelEventListener$1: function(handler) { var t1, eventOptions = {}, jsHandler = P.allowInterop(new H._WheelEventListenerMixin__addWheelEventListener_closure(handler)); $._BaseAdapter__nativeListeners.$indexSet(0, "wheel", jsHandler); eventOptions.passive = false; t1 = this.glassPaneElement; t1.addEventListener.apply(t1, ["wheel", jsHandler, eventOptions]); }, _handleWheelEvent$1: function(e) { var deltaX, deltaY, t1, probe, t2, fontSize, res, data, t3, t4, t5, t6; type$.WheelEvent._as(e); deltaX = (e && C.WheelEvent_methods).get$deltaX(e); deltaY = C.WheelEvent_methods.get$deltaY(e); switch (C.WheelEvent_methods.get$deltaMode(e)) { case 1: t1 = $._WheelEventListenerMixin__defaultScrollLineHeight; if (t1 == null) { t1 = document; probe = t1.createElement("div"); t2 = probe.style; t2.fontSize = "initial"; t2.display = "none"; t1.body.appendChild(probe); fontSize = window.getComputedStyle(probe, "").fontSize; if (C.JSString_methods.contains$1(fontSize, "px")) res = H.Primitives_parseDouble(H.stringReplaceAllUnchecked(fontSize, "px", "")); else res = null; C.DivElement_methods.remove$0(probe); t1 = $._WheelEventListenerMixin__defaultScrollLineHeight = res == null ? 16 : res / 4; } deltaX *= t1; deltaY *= t1; break; case 2: t1 = $.$get$window(); deltaX *= t1.get$physicalSize()._dx; deltaY *= t1.get$physicalSize()._dy; break; case 0: default: break; } data = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); t1 = e.timeStamp; t1.toString; t1 = H._BaseAdapter__eventTimeStampToDuration(t1); t2 = e.clientX; e.clientY; t2.toString; t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); e.clientX; t5 = e.clientY; t5.toString; t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t6 = e.buttons; t6.toString; this._pointerDataConverter.convert$14$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$timeStamp(data, t6, C.PointerChange_3, -1, C.PointerDeviceKind_1, t2 * t4, t5 * t3, 1, 1, 0, deltaX, deltaY, C.PointerSignalKind_1, t1); this.__engine$_callback.call$1(data); if (e.getModifierState("Control")) { t1 = H._operatingSystem(); if (t1 !== C.OperatingSystem_4) { t1 = H._operatingSystem(); t1 = t1 !== C.OperatingSystem_0; } else t1 = false; } else t1 = false; if (t1) return; e.preventDefault(); } }; H._WheelEventListenerMixin__addWheelEventListener_closure.prototype = { call$1: function($event) { return this.handler.call$1($event); }, $signature: 212 }; H._SanitizedDetails.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + "(change: " + this.change.toString$0(0) + ", buttons: " + this.buttons + ")"; } }; H._ButtonSanitizer.prototype = { sanitizeDownEvent$2$button$buttons: function(button, buttons) { var t1; if (this._pressedButtons !== 0) return this.sanitizeMoveEvent$1$buttons(buttons); t1 = (buttons === 0 && button > -1 ? H.convertButtonToButtons(button) : buttons) & 1073741823; this._pressedButtons = t1; return new H._SanitizedDetails(C.PointerChange_4, t1); }, sanitizeMoveEvent$1$buttons: function(buttons) { var newPressedButtons = buttons & 1073741823, t1 = this._pressedButtons; if (t1 === 0 && newPressedButtons !== 0) return new H._SanitizedDetails(C.PointerChange_3, t1); this._pressedButtons = newPressedButtons; return new H._SanitizedDetails(newPressedButtons === 0 ? C.PointerChange_3 : C.PointerChange_5, newPressedButtons); }, sanitizeMissingRightClickUp$1$buttons: function(buttons) { if (this._pressedButtons !== 0 && (buttons & 1073741823) === 0) { this._pressedButtons = 0; return new H._SanitizedDetails(C.PointerChange_6, 0); } return null; }, sanitizeUpEvent$1$buttons: function(buttons) { var t1; if (this._pressedButtons === 0) return null; t1 = this._pressedButtons = (buttons == null ? 0 : buttons) & 1073741823; if (t1 === 0) return new H._SanitizedDetails(C.PointerChange_6, t1); else return new H._SanitizedDetails(C.PointerChange_5, t1); } }; H._PointerAdapter.prototype = { _ensureSanitizer$1: function(device) { return this._sanitizers.putIfAbsent$2(0, device, new H._PointerAdapter__ensureSanitizer_closure()); }, _removePointerIfUnhoverable$1: function($event) { if ($event.pointerType === "touch") this._sanitizers.remove$1(0, $event.pointerId); }, _addPointerEventListener$3$acceptOutsideGlasspane: function(eventName, handler, acceptOutsideGlasspane) { this.addEventListener$3$acceptOutsideGlasspane(0, eventName, new H._PointerAdapter__addPointerEventListener_closure(handler), acceptOutsideGlasspane); }, _addPointerEventListener$2: function(eventName, handler) { return this._addPointerEventListener$3$acceptOutsideGlasspane(eventName, handler, false); }, setup$0: function() { var _this = this; _this._addPointerEventListener$2("pointerdown", new H._PointerAdapter_setup_closure(_this)); _this._addPointerEventListener$3$acceptOutsideGlasspane("pointermove", new H._PointerAdapter_setup_closure0(_this), true); _this._addPointerEventListener$3$acceptOutsideGlasspane("pointerup", new H._PointerAdapter_setup_closure1(_this), true); _this._addPointerEventListener$2("pointercancel", new H._PointerAdapter_setup_closure2(_this)); _this._addWheelEventListener$1(new H._PointerAdapter_setup_closure3(_this)); }, _convertEventsToPointerData$3$data$details$event: function(data, details, $event) { var kind, t2, timeStamp, t3, t4, t5, t6, t1 = $event.pointerType; t1.toString; kind = this._pointerTypeToDeviceKind$1(t1); t1 = $event.tiltX; t1.toString; t2 = $event.tiltY; t2.toString; if (!(Math.abs(t1) > Math.abs(t2))) t1 = t2; t2 = $event.timeStamp; t2.toString; timeStamp = H._BaseAdapter__eventTimeStampToDuration(t2); t2 = this._getPointerId$1($event); t3 = $event.clientX; $event.clientY; t3.toString; t4 = $.$get$window(); t5 = t4._debugDevicePixelRatio; if (t5 == null) t5 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); $event.clientX; t6 = $event.clientY; t6.toString; t4 = t4._debugDevicePixelRatio; if (t4 == null) t4 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); this._pointerDataConverter.convert$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$tilt$timeStamp(data, details.buttons, details.change, t2, kind, t3 * t5, t6 * t4, $event.pressure, 1, 0, C.PointerSignalKind_0, t1 / 180 * 3.141592653589793, timeStamp); }, _expandEvents$1: function($event) { var coalescedEvents; if ("getCoalescedEvents" in $event) { coalescedEvents = J.cast$1$0$ax($event.getCoalescedEvents(), type$.PointerEvent_2); if (coalescedEvents.get$isNotEmpty(coalescedEvents)) return coalescedEvents; } return H.setRuntimeTypeInfo([$event], type$.JSArray_PointerEvent); }, _pointerTypeToDeviceKind$1: function(pointerType) { switch (pointerType) { case "mouse": return C.PointerDeviceKind_1; case "pen": return C.PointerDeviceKind_2; case "touch": return C.PointerDeviceKind_0; default: return C.PointerDeviceKind_4; } }, _getPointerId$1: function($event) { var t1 = $event.pointerType; t1.toString; if (this._pointerTypeToDeviceKind$1(t1) === C.PointerDeviceKind_1) t1 = -1; else { t1 = $event.pointerId; t1.toString; } return t1; } }; H._PointerAdapter__ensureSanitizer_closure.prototype = { call$0: function() { return new H._ButtonSanitizer(); }, $signature: 927 }; H._PointerAdapter__addPointerEventListener_closure.prototype = { call$1: function($event) { return this.handler.call$1(type$.PointerEvent_2._as($event)); }, $signature: 212 }; H._PointerAdapter_setup_closure.prototype = { call$1: function($event) { var up, t3, t1 = this.$this, device = t1._getPointerId$1($event), pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), sanitizer = t1._ensureSanitizer$1(device), t2 = $event.buttons; t2.toString; up = sanitizer.sanitizeMissingRightClickUp$1$buttons(t2); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t2 = $event.button; t3 = $event.buttons; t3.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizer.sanitizeDownEvent$2$button$buttons(t2, t3), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 270 }; H._PointerAdapter_setup_closure0.prototype = { call$1: function($event) { var t2, t3, t4, up, t1 = this.$this, sanitizer = t1._ensureSanitizer$1(t1._getPointerId$1($event)), pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); for (t2 = J.get$iterator$ax(t1._expandEvents$1($event)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t3.buttons; t4.toString; up = sanitizer.sanitizeMissingRightClickUp$1$buttons(t4); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, t3); t4 = t3.buttons; t4.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizer.sanitizeMoveEvent$1$buttons(t4), t3); } t1.__engine$_callback.call$1(pointerData); }, $signature: 270 }; H._PointerAdapter_setup_closure1.prototype = { call$1: function($event) { var details, t1 = this.$this, device = t1._getPointerId$1($event), pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), t2 = t1._sanitizers.$index(0, device); t2.toString; details = t2.sanitizeUpEvent$1$buttons($event.buttons); t1._removePointerIfUnhoverable$1($event); if (details != null) { t1._convertEventsToPointerData$3$data$details$event(pointerData, details, $event); t1.__engine$_callback.call$1(pointerData); } }, $signature: 270 }; H._PointerAdapter_setup_closure2.prototype = { call$1: function($event) { var t1 = this.$this, device = t1._getPointerId$1($event), pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), t2 = t1._sanitizers.$index(0, device); t2.toString; t2._pressedButtons = 0; t1._removePointerIfUnhoverable$1($event); t1._convertEventsToPointerData$3$data$details$event(pointerData, new H._SanitizedDetails(C.PointerChange_0, 0), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 270 }; H._PointerAdapter_setup_closure3.prototype = { call$1: function($event) { this.$this._handleWheelEvent$1($event); }, $signature: 61 }; H._TouchAdapter.prototype = { _addTouchEventListener$2: function(eventName, handler) { this.addEventListener$2(0, eventName, new H._TouchAdapter__addTouchEventListener_closure(handler)); }, setup$0: function() { var _this = this; _this._addTouchEventListener$2("touchstart", new H._TouchAdapter_setup_closure(_this)); _this._addTouchEventListener$2("touchmove", new H._TouchAdapter_setup_closure0(_this)); _this._addTouchEventListener$2("touchend", new H._TouchAdapter_setup_closure1(_this)); _this._addTouchEventListener$2("touchcancel", new H._TouchAdapter_setup_closure2(_this)); }, _convertEventToPointerData$5$change$data$pressed$timeStamp$touch: function(change, data, pressed, timeStamp, touch) { var t2, t3, t4, t5, t6, t1 = touch.identifier; t1.toString; t2 = C.JSNumber_methods.round$0(touch.clientX); C.JSNumber_methods.round$0(touch.clientY); t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); C.JSNumber_methods.round$0(touch.clientX); t5 = C.JSNumber_methods.round$0(touch.clientY); t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); t6 = pressed ? 1 : 0; this._pointerDataConverter.convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp(data, t6, change, t1, C.PointerDeviceKind_0, t2 * t4, t5 * t3, 1, 1, 0, C.PointerSignalKind_0, timeStamp); } }; H._TouchAdapter__addTouchEventListener_closure.prototype = { call$1: function($event) { return this.handler.call$1(type$.TouchEvent._as($event)); }, $signature: 212 }; H._TouchAdapter_setup_closure.prototype = { call$1: function($event) { var timeStamp, pointerData, t2, t3, t4, _i, touch, t5, t1 = $event.timeStamp; t1.toString; timeStamp = H._BaseAdapter__eventTimeStampToDuration(t1); pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (!t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.add$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(C.PointerChange_4, pointerData, true, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 253 }; H._TouchAdapter_setup_closure0.prototype = { call$1: function($event) { var t1, timeStamp, pointerData, t2, t3, t4, _i, touch, t5; $event.preventDefault(); t1 = $event.timeStamp; t1.toString; timeStamp = H._BaseAdapter__eventTimeStampToDuration(t1); pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(C.PointerChange_5, pointerData, true, timeStamp, touch); } t3.__engine$_callback.call$1(pointerData); }, $signature: 253 }; H._TouchAdapter_setup_closure1.prototype = { call$1: function($event) { var t1, timeStamp, pointerData, t2, t3, t4, _i, touch, t5; $event.preventDefault(); t1 = $event.timeStamp; t1.toString; timeStamp = H._BaseAdapter__eventTimeStampToDuration(t1); pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.remove$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(C.PointerChange_6, pointerData, false, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 253 }; H._TouchAdapter_setup_closure2.prototype = { call$1: function($event) { var timeStamp, pointerData, t2, t3, t4, _i, touch, t5, t1 = $event.timeStamp; t1.toString; timeStamp = H._BaseAdapter__eventTimeStampToDuration(t1); pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData); for (t1 = $event.changedTouches, t2 = t1.length, t3 = this.$this, t4 = t3._pressedTouches, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { touch = t1[_i]; t5 = touch.identifier; t5.toString; if (t4.contains$1(0, t5)) { t5 = touch.identifier; t5.toString; t4.remove$1(0, t5); t3._convertEventToPointerData$5$change$data$pressed$timeStamp$touch(C.PointerChange_0, pointerData, false, timeStamp, touch); } } t3.__engine$_callback.call$1(pointerData); }, $signature: 253 }; H._MouseAdapter.prototype = { _addMouseEventListener$3$acceptOutsideGlasspane: function(eventName, handler, acceptOutsideGlasspane) { this.addEventListener$3$acceptOutsideGlasspane(0, eventName, new H._MouseAdapter__addMouseEventListener_closure(handler), acceptOutsideGlasspane); }, _addMouseEventListener$2: function(eventName, handler) { return this._addMouseEventListener$3$acceptOutsideGlasspane(eventName, handler, false); }, setup$0: function() { var _this = this; _this._addMouseEventListener$2("mousedown", new H._MouseAdapter_setup_closure(_this)); _this._addMouseEventListener$3$acceptOutsideGlasspane("mousemove", new H._MouseAdapter_setup_closure0(_this), true); _this._addMouseEventListener$3$acceptOutsideGlasspane("mouseup", new H._MouseAdapter_setup_closure1(_this), true); _this._addWheelEventListener$1(new H._MouseAdapter_setup_closure2(_this)); }, _convertEventsToPointerData$3$data$details$event: function(data, details, $event) { var t2, t3, t4, t5, t1 = $event.timeStamp; t1.toString; t1 = H._BaseAdapter__eventTimeStampToDuration(t1); t2 = $event.clientX; $event.clientY; t2.toString; t3 = $.$get$window(); t4 = t3._debugDevicePixelRatio; if (t4 == null) t4 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); $event.clientX; t5 = $event.clientY; t5.toString; t3 = t3._debugDevicePixelRatio; if (t3 == null) t3 = H.EnginePlatformDispatcher_browserDevicePixelRatio(); this._pointerDataConverter.convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp(data, details.buttons, details.change, -1, C.PointerDeviceKind_1, t2 * t4, t5 * t3, 1, 1, 0, C.PointerSignalKind_0, t1); } }; H._MouseAdapter__addMouseEventListener_closure.prototype = { call$1: function($event) { return this.handler.call$1(type$.MouseEvent._as($event)); }, $signature: 212 }; H._MouseAdapter_setup_closure.prototype = { call$1: function($event) { var up, t4, pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), t1 = this.$this, t2 = t1._sanitizer, t3 = $event.buttons; t3.toString; up = t2.sanitizeMissingRightClickUp$1$buttons(t3); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t3 = $event.button; t4 = $event.buttons; t4.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeDownEvent$2$button$buttons(t3, t4), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 425 }; H._MouseAdapter_setup_closure0.prototype = { call$1: function($event) { var up, pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), t1 = this.$this, t2 = t1._sanitizer, t3 = $event.buttons; t3.toString; up = t2.sanitizeMissingRightClickUp$1$buttons(t3); if (up != null) t1._convertEventsToPointerData$3$data$details$event(pointerData, up, $event); t3 = $event.buttons; t3.toString; t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeMoveEvent$1$buttons(t3), $event); t1.__engine$_callback.call$1(pointerData); }, $signature: 425 }; H._MouseAdapter_setup_closure1.prototype = { call$1: function($event) { var pointerData = H.setRuntimeTypeInfo([], type$.JSArray_PointerData), t1 = this.$this, sanitizedDetails = t1._sanitizer.sanitizeUpEvent$1$buttons($event.buttons); if (sanitizedDetails != null) { t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizedDetails, $event); t1.__engine$_callback.call$1(pointerData); } }, $signature: 425 }; H._MouseAdapter_setup_closure2.prototype = { call$1: function($event) { this.$this._handleWheelEvent$1($event); }, $signature: 61 }; H._PointerState.prototype = {}; H.PointerDataConverter.prototype = { _ensureStateForPointer$3: function(device, x, y) { return this._pointers.putIfAbsent$2(0, device, new H.PointerDataConverter__ensureStateForPointer_closure(x, y)); }, _generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp: function(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalX, physicalY, platformData, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, tilt, timeStamp) { var t2, t3, t1 = this._pointers.$index(0, device); t1.toString; t2 = t1.x; t3 = t1.y; t1.x = physicalX; t1.y = physicalY; t1 = t1._pointer; if (t1 == null) t1 = 0; return P.PointerData$(buttons, change, device, distance, distanceMax, kind, false, orientation, physicalX - t2, physicalY - t3, physicalX, physicalY, platformData, t1, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, signalKind, size, false, tilt, timeStamp); }, _locationHasChanged$3: function(device, physicalX, physicalY) { var t1 = this._pointers.$index(0, device); t1.toString; return t1.x !== physicalX || t1.y !== physicalY; }, _synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp: function(buttons, change, device, distance, distanceMax, kind, obscured, orientation, physicalX, physicalY, platformData, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, size, tilt, timeStamp) { var t2, t3, t1 = this._pointers.$index(0, device); t1.toString; t2 = t1.x; t3 = t1.y; t1.x = physicalX; t1.y = physicalY; t1 = t1._pointer; if (t1 == null) t1 = 0; return P.PointerData$(buttons, change, device, distance, distanceMax, kind, false, orientation, physicalX - t2, physicalY - t3, physicalX, physicalY, platformData, t1, pressure, pressureMax, pressureMin, radiusMajor, radiusMax, radiusMin, radiusMinor, scrollDeltaX, scrollDeltaY, C.PointerSignalKind_0, size, true, tilt, timeStamp); }, convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp: function(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, tilt, timeStamp) { var alreadyAdded, state, t1, t2, _this = this, _s80_ = string$.x60null_c; if (signalKind === C.PointerSignalKind_0) switch (change) { case C.PointerChange_1: _this._ensureStateForPointer$3(device, physicalX, physicalY); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); break; case C.PointerChange_3: alreadyAdded = _this._pointers.containsKey$1(0, device); _this._ensureStateForPointer$3(device, physicalX, physicalY); if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, C.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case C.PointerChange_4: alreadyAdded = _this._pointers.containsKey$1(0, device); state = _this._ensureStateForPointer$3(device, physicalX, physicalY); state.toString; state._pointer = $._PointerState__pointerCount = $._PointerState__pointerCount + 1; if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, C.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); if (_this._locationHasChanged$3(device, physicalX, physicalY)) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(0, C.PointerChange_3, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, 0, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case C.PointerChange_5: result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); _this._activeButtons = buttons; break; case C.PointerChange_6: case C.PointerChange_0: t1 = _this._pointers; t2 = t1.$index(0, device); t2.toString; if (change === C.PointerChange_0) { physicalX = t2.x; physicalY = t2.y; } if (_this._locationHasChanged$3(device, physicalX, physicalY)) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(_this._activeButtons, C.PointerChange_5, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); if (kind === C.PointerDeviceKind_0) { result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(0, C.PointerChange_2, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, 0, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); t1.remove$1(0, device); } break; case C.PointerChange_2: t1 = _this._pointers; t2 = t1.$index(0, device); t2.toString; result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, t2.x, t2.y, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); t1.remove$1(0, device); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else switch (signalKind) { case C.PointerSignalKind_1: alreadyAdded = _this._pointers.containsKey$1(0, device); _this._ensureStateForPointer$3(device, physicalX, physicalY); if (!alreadyAdded) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, C.PointerChange_1, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); if (_this._locationHasChanged$3(device, physicalX, physicalY)) if (buttons !== 0) result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, C.PointerChange_5, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); else result.push(_this._synthesizePointerData$23$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$size$tilt$timeStamp(buttons, C.PointerChange_3, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, 0, tilt, timeStamp)); result.push(_this._generateCompletePointerData$24$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp(buttons, change, device, 0, 0, kind, false, 0, physicalX, physicalY, 0, pressure, pressureMax, pressureMin, 0, 0, 0, 0, scrollDeltaX, scrollDeltaY, signalKind, 0, tilt, timeStamp)); break; case C.PointerSignalKind_0: break; case C.PointerSignalKind_2: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, convert$14$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$timeStamp: function(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, scrollDeltaX, scrollDeltaY, signalKind, 0, timeStamp); }, convert$12$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$timeStamp: function(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, signalKind, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, 0, 0, signalKind, 0, timeStamp); }, convert$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$signalKind$tilt$timeStamp: function(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, signalKind, tilt, timeStamp) { return this.convert$15$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$pressureMin$scrollDeltaX$scrollDeltaY$signalKind$tilt$timeStamp(result, buttons, change, device, kind, physicalX, physicalY, pressure, pressureMax, pressureMin, 0, 0, signalKind, tilt, timeStamp); } }; H.PointerDataConverter__ensureStateForPointer_closure.prototype = { call$0: function() { return new H._PointerState(this.x, this.y); }, $signature: 898 }; H.Profiler.prototype = {}; H.Instrumentation.prototype = {}; H.AccessibilityAnnouncements.prototype = { AccessibilityAnnouncements$_$0: function() { $._hotRestartListeners.push(new H.AccessibilityAnnouncements$__closure(this)); }, get$_domElement: function() { var liveRegion, t1 = this.__engine$_element; if (t1 == null) { liveRegion = document.createElement("label"); liveRegion.setAttribute("id", "accessibility-element"); t1 = liveRegion.style; t1.position = "fixed"; t1.overflow = "hidden"; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(-99999px, -99999px)", ""); t1.width = "1px"; t1.height = "1px"; this.__engine$_element = liveRegion; t1 = liveRegion; } return t1; }, handleMessage$2: function(codec, data) { var t1, _this = this, message = J.$index$asx(J.$index$asx(codec.decodeMessage$1(data), "data"), "message"); if (message != null && message.length !== 0) { _this.get$_domElement().setAttribute("aria-live", "polite"); _this.get$_domElement().textContent = message; t1 = document.body; t1.toString; t1.appendChild(_this.get$_domElement()); _this._removeElementTimer = P.Timer_Timer(C.Duration_5000000, new H.AccessibilityAnnouncements_handleMessage_closure(_this)); } } }; H.AccessibilityAnnouncements$__closure.prototype = { call$0: function() { var t1 = this.$this._removeElementTimer; if (t1 != null) t1.cancel$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.AccessibilityAnnouncements_handleMessage_closure.prototype = { call$0: function() { var t1 = this.$this.__engine$_element; t1.toString; C.LabelElement_methods.remove$0(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H._CheckableKind.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.Checkable.prototype = { update$0: function(_) { var element, t2, _s4_ = "true", t1 = this.semanticsObject; if ((t1._dirtyFields & 1) !== 0) { switch (this.__engine$_kind) { case C._CheckableKind_0: t1.setAriaRole$2("checkbox", true); break; case C._CheckableKind_1: t1.setAriaRole$2("radio", true); break; case C._CheckableKind_2: t1.setAriaRole$2("switch", true); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (t1.enabledState$0() === C.EnabledState_2) { element = t1.element; element.setAttribute("aria-disabled", _s4_); element.setAttribute("disabled", _s4_); } else this._removeDisabledAttribute$0(); t2 = t1.__engine$_flags; t2 = (t2 & 2) !== 0 || (t2 & 131072) !== 0 ? _s4_ : "false"; t1.element.setAttribute("aria-checked", t2); } }, dispose$0: function(_) { var _this = this; switch (_this.__engine$_kind) { case C._CheckableKind_0: _this.semanticsObject.setAriaRole$2("checkbox", false); break; case C._CheckableKind_1: _this.semanticsObject.setAriaRole$2("radio", false); break; case C._CheckableKind_2: _this.semanticsObject.setAriaRole$2("switch", false); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._removeDisabledAttribute$0(); }, _removeDisabledAttribute$0: function() { var element = this.semanticsObject.element; element.removeAttribute("aria-disabled"); element.removeAttribute("disabled"); } }; H.ImageRoleManager.prototype = { update$0: function(_) { var t2, t3, _this = this, t1 = _this.semanticsObject; if (t1.get$isVisualOnly()) { t2 = t1.__engine$_childrenInTraversalOrder; t2 = t2 != null && !C.NativeInt32List_methods.get$isEmpty(t2); } else t2 = false; if (t2) { if (_this._auxiliaryImageElement == null) { _this._auxiliaryImageElement = W._ElementFactoryProvider_createElement_tag("flt-semantics-img", null); t2 = t1.__engine$_childrenInTraversalOrder; if (t2 != null && !C.NativeInt32List_methods.get$isEmpty(t2)) { t2 = _this._auxiliaryImageElement.style; t2.position = "absolute"; t2.top = "0"; t2.left = "0"; t3 = t1.__engine$_rect; t3 = H.S(t3.right - t3.left) + "px"; t2.width = t3; t3 = t1.__engine$_rect; t3 = H.S(t3.bottom - t3.top) + "px"; t2.height = t3; } t2 = _this._auxiliaryImageElement.style; t2.fontSize = "6px"; t2 = _this._auxiliaryImageElement; t2.toString; t1.element.appendChild(t2); } _this._auxiliaryImageElement.setAttribute("role", "img"); _this._setLabel$1(_this._auxiliaryImageElement); } else if (t1.get$isVisualOnly()) { t1.setAriaRole$2("img", true); _this._setLabel$1(t1.element); _this._cleanUpAuxiliaryElement$0(); } else { _this._cleanUpAuxiliaryElement$0(); _this._cleanupElement$0(); } }, _setLabel$1: function(element) { var t1 = this.semanticsObject.__engine$_label; if (t1 != null && t1.length !== 0) { element.toString; t1.toString; element.setAttribute("aria-label", t1); } }, _cleanUpAuxiliaryElement$0: function() { var t1 = this._auxiliaryImageElement; if (t1 != null) { J.remove$0$ax(t1); this._auxiliaryImageElement = null; } }, _cleanupElement$0: function() { var t1 = this.semanticsObject; t1.setAriaRole$2("img", false); t1.element.removeAttribute("aria-label"); }, dispose$0: function(_) { this._cleanUpAuxiliaryElement$0(); this._cleanupElement$0(); } }; H.Incrementable.prototype = { Incrementable$1: function(semanticsObject) { var _this = this, t1 = _this.__engine$_element; semanticsObject.element.appendChild(t1); t1.type = "range"; t1.setAttribute("role", "slider"); C.InputElement_methods.addEventListener$2(t1, "change", new H.Incrementable_closure(_this, semanticsObject)); t1 = new H.Incrementable_closure0(_this); _this._gestureModeListener = t1; semanticsObject.owner._gestureModeListeners.push(t1); }, update$0: function(_) { var _this = this; switch (_this.semanticsObject.owner._gestureMode) { case C.GestureMode_1: _this._enableBrowserGestureHandling$0(); _this._updateInputValues$0(); break; case C.GestureMode_0: _this._disableBrowserGestureHandling$0(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _enableBrowserGestureHandling$0: function() { var t1 = this.__engine$_element, t2 = t1.disabled; t2.toString; if (!t2) return; t1.disabled = false; }, _updateInputValues$0: function() { var t1, updateNeeded, surrogateTextValue, t2, t3, surrogateMaxTextValue, surrogateMinTextValue, _this = this; if (!_this._pendingResync) { t1 = _this.semanticsObject._dirtyFields; updateNeeded = (t1 & 4096) !== 0 || (t1 & 8192) !== 0 || (t1 & 16384) !== 0; } else updateNeeded = true; if (!updateNeeded) return; _this._pendingResync = false; surrogateTextValue = "" + _this._currentSurrogateValue; t1 = _this.__engine$_element; t1.value = surrogateTextValue; t1.setAttribute("aria-valuenow", surrogateTextValue); t2 = _this.semanticsObject; t3 = t2.__engine$_value; t3.toString; t1.setAttribute("aria-valuetext", t3); surrogateMaxTextValue = t2.__engine$_increasedValue.length !== 0 ? "" + (_this._currentSurrogateValue + 1) : surrogateTextValue; t1.max = surrogateMaxTextValue; t1.setAttribute("aria-valuemax", surrogateMaxTextValue); surrogateMinTextValue = t2.__engine$_decreasedValue.length !== 0 ? "" + (_this._currentSurrogateValue - 1) : surrogateTextValue; t1.min = surrogateMinTextValue; t1.setAttribute("aria-valuemin", surrogateMinTextValue); }, _disableBrowserGestureHandling$0: function() { var t1 = this.__engine$_element, t2 = t1.disabled; t2.toString; if (t2) return; t1.disabled = true; }, dispose$0: function(_) { var t1, _this = this; C.JSArray_methods.remove$1(_this.semanticsObject.owner._gestureModeListeners, _this._gestureModeListener); _this._gestureModeListener = null; _this._disableBrowserGestureHandling$0(); t1 = _this.__engine$_element; (t1 && C.InputElement_methods).remove$0(t1); } }; H.Incrementable_closure.prototype = { call$1: function(_) { var newInputValue, t1 = this.$this, t2 = t1.__engine$_element, t3 = t2.disabled; t3.toString; if (t3) return; t1._pendingResync = true; t2 = t2.value; t2.toString; newInputValue = P.int_parse(t2, null); t2 = t1._currentSurrogateValue; if (newInputValue > t2) { t1._currentSurrogateValue = t2 + 1; t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, this.semanticsObject.id, C.SemanticsAction_64, null); } else if (newInputValue < t2) { t1._currentSurrogateValue = t2 - 1; t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, this.semanticsObject.id, C.SemanticsAction_128, null); } }, $signature: 61 }; H.Incrementable_closure0.prototype = { call$1: function(mode) { this.$this.update$0(0); }, $signature: 706 }; H.LabelAndValue.prototype = { update$0: function(_) { var hasLabel, t3, shouldDisplayValue, t4, t5, _this = this, t1 = _this.semanticsObject, t2 = t1.__engine$_value, hasValue = t2 != null && t2.length !== 0; t2 = t1.__engine$_label; hasLabel = t2 != null && t2.length !== 0; if (hasValue) { t3 = t1.__engine$_actions; t3.toString; shouldDisplayValue = !((t3 & 64) !== 0 || (t3 & 128) !== 0); } else shouldDisplayValue = false; if (!hasLabel && !shouldDisplayValue) { _this._cleanUpDom$0(); return; } if (hasLabel) { t2 = H.S(t2); if (shouldDisplayValue) t2 += " "; } else t2 = ""; if (shouldDisplayValue) t2 += H.S(t1.__engine$_value); t3 = t1.element; t2 = t2.charCodeAt(0) == 0 ? t2 : t2; t3.setAttribute("aria-label", t2); if ((t1.__engine$_flags & 512) !== 0) t1.setAriaRole$2("heading", true); if (_this._auxiliaryValueElement == null) { _this._auxiliaryValueElement = W._ElementFactoryProvider_createElement_tag("flt-semantics-value", null); t4 = t1.__engine$_childrenInTraversalOrder; if (t4 != null && !C.NativeInt32List_methods.get$isEmpty(t4)) { t4 = _this._auxiliaryValueElement.style; t4.position = "absolute"; t4.top = "0"; t4.left = "0"; t5 = t1.__engine$_rect; t5 = H.S(t5.right - t5.left) + "px"; t4.width = t5; t1 = t1.__engine$_rect; t1 = H.S(t1.bottom - t1.top) + "px"; t4.height = t1; } t1 = _this._auxiliaryValueElement.style; t1.fontSize = "6px"; t1 = _this._auxiliaryValueElement; t1.toString; t3.appendChild(t1); } _this._auxiliaryValueElement.textContent = t2; }, _cleanUpDom$0: function() { var t1 = this._auxiliaryValueElement; if (t1 != null) { J.remove$0$ax(t1); this._auxiliaryValueElement = null; } t1 = this.semanticsObject; t1.element.removeAttribute("aria-label"); t1.setAriaRole$2("heading", false); }, dispose$0: function(_) { this._cleanUpDom$0(); } }; H.LiveRegion.prototype = { update$0: function(_) { var t1 = this.semanticsObject, t2 = t1.__engine$_label; t2 = t2 != null && t2.length !== 0; t1 = t1.element; if (t2) t1.setAttribute("aria-live", "polite"); else t1.removeAttribute("aria-live"); }, dispose$0: function(_) { this.semanticsObject.element.removeAttribute("aria-live"); } }; H.Scrollable0.prototype = { _recomputeScrollPosition$0: function() { var t1, t2, t3, semanticsId, _this = this, _null = null; if (_this.get$_domScrollPosition() !== _this._effectiveNeutralScrollPosition) { t1 = _this.semanticsObject; if (!t1.owner.shouldAcceptBrowserGesture$1("scroll")) return; t2 = _this.get$_domScrollPosition(); t3 = _this._effectiveNeutralScrollPosition; _this._neutralizeDomScrollPosition$0(); t1.recomputePositionAndSize$0(); semanticsId = t1.id; if (t2 > t3) { t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, C.SemanticsAction_16, _null); } else { t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, C.SemanticsAction_4, _null); } } else { t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, C.SemanticsAction_32, _null); } else { t1 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t1._onSemanticsAction, t1._onSemanticsActionZone, semanticsId, C.SemanticsAction_8, _null); } } } }, update$0: function(_) { var t1, t2, t3, _this = this; if (_this._scrollListener == null) { t1 = _this.semanticsObject; t2 = t1.element; t3 = t2.style; t3.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, "touch-action"), "none", ""); _this._gestureModeDidChange$0(); t1 = t1.owner; t1._oneTimePostUpdateCallbacks.push(new H.Scrollable_update_closure(_this)); t3 = new H.Scrollable_update_closure0(_this); _this._gestureModeListener = t3; t1._gestureModeListeners.push(t3); t3 = new H.Scrollable_update_closure1(_this); _this._scrollListener = t3; J.addEventListener$2$x(t2, "scroll", t3); } }, get$_domScrollPosition: function() { var t1 = this.semanticsObject, t2 = t1.__engine$_actions; t2.toString; t2 = (t2 & 32) !== 0 || (t2 & 16) !== 0; t1 = t1.element; if (t2) return C.JSNumber_methods.round$0(t1.scrollTop); else return C.JSNumber_methods.round$0(t1.scrollLeft); }, _neutralizeDomScrollPosition$0: function() { var t1 = this.semanticsObject, element = t1.element, t2 = t1.__engine$_actions; t2.toString; if ((t2 & 32) !== 0 || (t2 & 16) !== 0) { element.scrollTop = 10; t1.verticalContainerAdjustment = this._effectiveNeutralScrollPosition = C.JSNumber_methods.round$0(element.scrollTop); t1.horizontalContainerAdjustment = 0; } else { element.scrollLeft = 10; t2 = C.JSNumber_methods.round$0(element.scrollLeft); this._effectiveNeutralScrollPosition = t2; t1.verticalContainerAdjustment = 0; t1.horizontalContainerAdjustment = t2; } }, _gestureModeDidChange$0: function() { var _s10_ = "overflow-y", _s10_0 = "overflow-x", t1 = this.semanticsObject, element = t1.element; switch (t1.owner._gestureMode) { case C.GestureMode_1: t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "scroll", ""); } else { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_0), "scroll", ""); } break; case C.GestureMode_0: t1 = t1.__engine$_actions; t1.toString; if ((t1 & 32) !== 0 || (t1 & 16) !== 0) { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_), "hidden", ""); } else { t1 = element.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, _s10_0), "hidden", ""); } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, dispose$0: function(_) { var t3, _this = this, t1 = _this.semanticsObject, t2 = t1.element, style = t2.style; style.removeProperty("overflowY"); style.removeProperty("overflowX"); style.removeProperty("touch-action"); t3 = _this._scrollListener; if (t3 != null) J.removeEventListener$2$x(t2, "scroll", t3); C.JSArray_methods.remove$1(t1.owner._gestureModeListeners, _this._gestureModeListener); _this._gestureModeListener = null; } }; H.Scrollable_update_closure.prototype = { call$0: function() { this.$this._neutralizeDomScrollPosition$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.Scrollable_update_closure0.prototype = { call$1: function(_) { this.$this._gestureModeDidChange$0(); }, $signature: 706 }; H.Scrollable_update_closure1.prototype = { call$1: function(_) { this.$this._recomputeScrollPosition$0(); }, $signature: 61 }; H.SemanticsUpdate.prototype = { dispose$0: function(_) { } }; H.SemanticsNodeUpdate.prototype = { get$id: function(receiver) { return this.id; }, get$value: function(receiver) { return this.value; } }; H.Role.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H._roleFactories_closure.prototype = { call$1: function(object) { return H.Incrementable$(object); }, $signature: 925 }; H._roleFactories_closure0.prototype = { call$1: function(object) { return new H.Scrollable0(object); }, $signature: 956 }; H._roleFactories_closure1.prototype = { call$1: function(object) { return new H.LabelAndValue(object); }, $signature: 965 }; H._roleFactories_closure2.prototype = { call$1: function(object) { return new H.Tappable(object); }, $signature: 1009 }; H._roleFactories_closure3.prototype = { call$1: function(object) { var t2, t3, t1 = new H.TextField0(object); t1.__TextField_editableElement = (object.__engine$_flags & 524288) !== 0 ? document.createElement("textarea") : W.InputElement_InputElement(null); t2 = t1.get$editableElement(); t2.spellcheck = false; t2.setAttribute("autocorrect", "off"); t2.setAttribute("autocomplete", "off"); t2.setAttribute("data-semantics-role", "text-field"); t2 = t1.get$editableElement().style; t2.position = "absolute"; t2.top = "0"; t2.left = "0"; t3 = object.__engine$_rect; t3 = H.S(t3.right - t3.left) + "px"; t2.width = t3; t3 = object.__engine$_rect; t3 = H.S(t3.bottom - t3.top) + "px"; t2.height = t3; object.element.appendChild(t1.get$editableElement()); t2 = H._browserEngine(); switch (t2) { case C.BrowserEngine_0: case C.BrowserEngine_5: case C.BrowserEngine_3: case C.BrowserEngine_4: case C.BrowserEngine_2: case C.BrowserEngine_4: case C.BrowserEngine_6: t1._initializeForBlink$0(); break; case C.BrowserEngine_1: t1._initializeForWebkit$0(); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } return t1; }, $signature: 1054 }; H._roleFactories_closure4.prototype = { call$1: function(object) { return new H.Checkable(H._checkableKindFromSemanticsFlag(object), object); }, $signature: 1057 }; H._roleFactories_closure5.prototype = { call$1: function(object) { return new H.ImageRoleManager(object); }, $signature: 1060 }; H._roleFactories_closure6.prototype = { call$1: function(object) { return new H.LiveRegion(object); }, $signature: 1061 }; H.RoleManager.prototype = {}; H.SemanticsObject.prototype = { SemanticsObject$2: function(id, owner) { var t1 = this.element, t2 = t1.style; t2.position = "absolute"; if (this.id === 0 && true) { t2 = t1.style; t2.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t2, C.CssStyleDeclaration_methods._browserPropertyName$1(t2, "filter"), "opacity(0%)", ""); t1 = t1.style; t1.color = "rgba(0,0,0,0)"; } }, get$value: function(_) { return this.__engine$_value; }, getOrCreateChildContainer$0: function() { var t1, _this = this; if (_this._childContainerElement == null) { t1 = W._ElementFactoryProvider_createElement_tag("flt-semantics-container", null); _this._childContainerElement = t1; t1 = t1.style; t1.position = "absolute"; t1 = _this._childContainerElement; t1.toString; _this.element.appendChild(t1); } return _this._childContainerElement; }, get$isVisualOnly: function() { var t2, t1 = this.__engine$_flags; if ((t1 & 16384) !== 0) { t2 = this.__engine$_actions; t2.toString; t1 = (t2 & 1) === 0 && (t1 & 8) === 0; } else t1 = false; return t1; }, enabledState$0: function() { var t1 = this.__engine$_flags; if ((t1 & 64) !== 0) if ((t1 & 128) !== 0) return C.EnabledState_1; else return C.EnabledState_2; else return C.EnabledState_0; }, setAriaRole$2: function(ariaRoleName, condition) { var t1; if (condition) this.element.setAttribute("role", ariaRoleName); else { t1 = this.element; if (t1.getAttribute("role") === ariaRoleName) t1.removeAttribute("role"); } }, _updateRole$2: function(role, enabled) { var t1 = this._roleManagers, manager = t1.$index(0, role); if (enabled) { if (manager == null) { manager = $.$get$_roleFactories().$index(0, role).call$1(this); t1.$indexSet(0, role, manager); } manager.update$0(0); } else if (manager != null) { manager.dispose$0(0); t1.remove$1(0, role); } }, recomputePositionAndSize$0: function() { var containerElement, hasZeroRectOffset, transform, hasIdentityTransform, left, $top, effectiveTransformIsIdentity, t5, _this = this, t1 = {}, t2 = _this.element, t3 = t2.style, t4 = _this.__engine$_rect; t4 = H.S(t4.right - t4.left) + "px"; t3.width = t4; t4 = _this.__engine$_rect; t4 = H.S(t4.bottom - t4.top) + "px"; t3.height = t4; t3 = _this.__engine$_childrenInTraversalOrder; containerElement = t3 != null && !C.NativeInt32List_methods.get$isEmpty(t3) ? _this.getOrCreateChildContainer$0() : null; t3 = _this.__engine$_rect; hasZeroRectOffset = t3.top === 0 && t3.left === 0; transform = _this.__engine$_transform; t3 = transform == null; hasIdentityTransform = t3 || H.transformKindOf(transform) === C.TransformKind_0; if (hasZeroRectOffset && hasIdentityTransform && _this.verticalContainerAdjustment === 0 && _this.horizontalContainerAdjustment === 0) { H.SemanticsObject__clearSemanticElementTransform(t2); if (containerElement != null) H.SemanticsObject__clearSemanticElementTransform(containerElement); return; } t1._effectiveTransform0 = $; t4 = new H.SemanticsObject_recomputePositionAndSize__effectiveTransform_get(t1); t1 = new H.SemanticsObject_recomputePositionAndSize__effectiveTransform_set(t1); if (!hasZeroRectOffset) if (t3) { t3 = _this.__engine$_rect; left = t3.left; $top = t3.top; t3 = H.Matrix4$identity(); t3.setTranslationRaw$3(left, $top, 0); t1.call$1(t3); effectiveTransformIsIdentity = left === 0 && $top === 0; } else { t3 = new H.Matrix40(new Float32Array(16)); t3.setFrom$1(new H.Matrix40(transform)); t5 = _this.__engine$_rect; t3.translate$3(0, t5.left, t5.top, 0); t1.call$1(t3); effectiveTransformIsIdentity = J.isIdentity$0$z(t4.call$0()); } else if (!hasIdentityTransform) { t1.call$1(new H.Matrix40(transform)); effectiveTransformIsIdentity = false; } else effectiveTransformIsIdentity = true; if (!effectiveTransformIsIdentity) { t1 = t2.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform-origin"), "0 0 0", ""); t4 = H.float64ListToCssTransform(t4.call$0().__engine$_m4storage); C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), t4, ""); } else H.SemanticsObject__clearSemanticElementTransform(t2); if (containerElement != null) if (!hasZeroRectOffset || _this.verticalContainerAdjustment !== 0 || _this.horizontalContainerAdjustment !== 0) { t1 = _this.__engine$_rect; t2 = t1.left; t3 = _this.horizontalContainerAdjustment; t1 = t1.top; t4 = _this.verticalContainerAdjustment; t5 = containerElement.style; t4 = H.S(-t1 + t4) + "px"; t5.top = t4; t1 = H.S(-t2 + t3) + "px"; t5.left = t1; } else H.SemanticsObject__clearSemanticElementTransform(containerElement); }, _updateChildrenInTraversalOrder$0: function() { var t2, len, i, object, containerElement, t3, t4, t5, t6, _i, id, intersectionIndicesNew, intersectionIndicesOld, minLength, newIndex, oldIndex, longestSequence, stationaryIds, refNode, childId, _this = this, _s13_ = "flt-semantics", t1 = _this.__engine$_childrenInTraversalOrder; if (t1 == null || t1.length === 0) { t2 = _this._previousChildrenInTraversalOrder; if (t2 == null || t2.length === 0) { _this._previousChildrenInTraversalOrder = t1; return; } len = t2.length; for (t1 = _this.owner, t2 = t1._semanticsTree, i = 0; i < len; ++i) { object = t2.$index(0, _this._previousChildrenInTraversalOrder[i]); t1._detachments.push(object); } _this._previousChildrenInTraversalOrder = null; t1 = _this._childContainerElement; t1.toString; J.remove$0$ax(t1); _this._childContainerElement = null; _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; return; } containerElement = _this.getOrCreateChildContainer$0(); t1 = _this._previousChildrenInTraversalOrder; if (t1 == null || t1.length === 0) { t1 = _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; for (t2 = t1.length, t3 = _this.owner, t4 = t3._semanticsTree, t5 = type$.Role, t6 = type$.nullable_RoleManager, _i = 0; _i < t2; ++_i) { id = t1[_i]; object = t4.$index(0, id); if (object == null) { object = new H.SemanticsObject(id, t3, W._ElementFactoryProvider_createElement_tag(_s13_, null), P.LinkedHashMap_LinkedHashMap$_empty(t5, t6)); object.SemanticsObject$2(id, t3); t4.$indexSet(0, id, object); } containerElement.appendChild(object.element); object.__engine$_parent = _this; t3._attachments.$indexSet(0, object.id, _this); } _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; return; } t1 = type$.JSArray_int; intersectionIndicesNew = H.setRuntimeTypeInfo([], t1); intersectionIndicesOld = H.setRuntimeTypeInfo([], t1); minLength = Math.min(_this._previousChildrenInTraversalOrder.length, _this.__engine$_childrenInTraversalOrder.length); newIndex = 0; while (true) { if (!(newIndex < minLength && _this._previousChildrenInTraversalOrder[newIndex] === _this.__engine$_childrenInTraversalOrder[newIndex])) break; intersectionIndicesNew.push(newIndex); intersectionIndicesOld.push(newIndex); ++newIndex; } t2 = _this._previousChildrenInTraversalOrder.length; t3 = _this.__engine$_childrenInTraversalOrder.length; if (t2 === t3 && newIndex === t3) return; for (; t2 = _this.__engine$_childrenInTraversalOrder, newIndex < t2.length;) { for (t3 = _this._previousChildrenInTraversalOrder, t4 = t3.length, oldIndex = 0; oldIndex < t4; ++oldIndex) if (t3[oldIndex] === t2[newIndex]) { intersectionIndicesNew.push(newIndex); intersectionIndicesOld.push(oldIndex); break; } ++newIndex; } longestSequence = H.longestIncreasingSubsequence(intersectionIndicesOld); stationaryIds = H.setRuntimeTypeInfo([], t1); for (t1 = longestSequence.length, i = 0; i < t1; ++i) stationaryIds.push(_this._previousChildrenInTraversalOrder[intersectionIndicesOld[longestSequence[i]]]); for (t1 = _this.owner, t2 = t1._semanticsTree, i = 0; i < _this._previousChildrenInTraversalOrder.length; ++i) if (!C.JSArray_methods.contains$1(intersectionIndicesOld, i)) { object = t2.$index(0, _this._previousChildrenInTraversalOrder[i]); t1._detachments.push(object); } for (i = _this.__engine$_childrenInTraversalOrder.length - 1, t3 = type$.Role, t4 = type$.nullable_RoleManager, refNode = null; i >= 0; --i) { childId = _this.__engine$_childrenInTraversalOrder[i]; object = t2.$index(0, childId); if (object == null) { object = new H.SemanticsObject(childId, t1, W._ElementFactoryProvider_createElement_tag(_s13_, null), P.LinkedHashMap_LinkedHashMap$_empty(t3, t4)); object.SemanticsObject$2(childId, t1); t2.$indexSet(0, childId, object); } if (!C.JSArray_methods.contains$1(stationaryIds, childId)) { t5 = object.element; if (refNode == null) containerElement.appendChild(t5); else containerElement.insertBefore(t5, refNode); object.__engine$_parent = _this; t1._attachments.$indexSet(0, object.id, _this); } refNode = object.element; } _this._previousChildrenInTraversalOrder = _this.__engine$_childrenInTraversalOrder; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; }, get$id: function(receiver) { return this.id; } }; H.SemanticsObject_recomputePositionAndSize__effectiveTransform_set.prototype = { call$1: function(t1) { return this._box_0._effectiveTransform0 = t1; }, $signature: 1099 }; H.SemanticsObject_recomputePositionAndSize__effectiveTransform_get.prototype = { call$0: function() { var t1 = this._box_0._effectiveTransform0; return t1 === $ ? H.throwExpression(H.LateError$localNI("effectiveTransform")) : t1; }, $signature: 1104 }; H.AccessibilityMode.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.GestureMode.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.EngineSemanticsOwner.prototype = { EngineSemanticsOwner$_$0: function() { $._hotRestartListeners.push(new H.EngineSemanticsOwner$__closure(this)); }, _finalizeTree$0: function() { var t1, t2, t3, _i, object, t4, t5, _this = this; for (t1 = _this._detachments, t2 = t1.length, t3 = _this._semanticsTree, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { object = t1[_i]; t4 = _this._attachments; t5 = object.id; if (t4.$index(0, t5) == null) { t3.remove$1(0, t5); object.__engine$_parent = null; t4 = object.element; t5 = t4.parentNode; if (t5 != null) t5.removeChild(t4); } } _this._detachments = H.setRuntimeTypeInfo([], type$.JSArray_nullable_SemanticsObject); _this._attachments = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_int, type$.SemanticsObject); t1 = _this._oneTimePostUpdateCallbacks; t2 = t1.length; if (t2 !== 0) { for (_i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].call$0(); _this._oneTimePostUpdateCallbacks = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function); } }, set$semanticsEnabled: function(value) { var t1, t2, t3; if (this._semanticsEnabled) return; this._semanticsEnabled = true; t1 = this._semanticsEnabled; t2 = $.$get$EnginePlatformDispatcher__instance(); t3 = t2._configuration; if (t1 !== t3.semanticsEnabled) { t2._configuration = t3.copyWith$1$semanticsEnabled(t1); t1 = t2._onSemanticsEnabledChanged; if (t1 != null) H.invoke(t1, t2._onSemanticsEnabledChangedZone); } }, _getGestureModeClock$0: function() { var _this = this, t1 = _this._gestureModeClock; if (t1 == null) { t1 = _this._gestureModeClock = new H.AlarmClock(_this._now); t1.__AlarmClock_callback = new H.EngineSemanticsOwner__getGestureModeClock_closure(_this); } return t1; }, receiveGlobalEvent$1: function($event) { var t1, _this = this; if (C.JSArray_methods.contains$1(C.List_Cg9, J.get$type$x($event))) { t1 = _this._getGestureModeClock$0(); t1.toString; t1.set$datetime(J.add$1$ax(_this._now.call$0(), C.Duration_500000)); if (_this._gestureMode !== C.GestureMode_0) { _this._gestureMode = C.GestureMode_0; _this._notifyGestureModeListeners$0(); } } return _this.semanticsHelper._semanticsEnabler.shouldEnableSemantics$1($event); }, _notifyGestureModeListeners$0: function() { var t1, i; for (t1 = this._gestureModeListeners, i = 0; i < t1.length; ++i) t1[i].call$1(this._gestureMode); }, shouldAcceptBrowserGesture$1: function(eventType) { if (C.JSArray_methods.contains$1(C.List_click_scroll, eventType)) return this._gestureMode === C.GestureMode_1; return false; }, updateSemantics$1: function(uiUpdate) { var t1, t2, t3, t4, t5, _i, nodeUpdate, t6, object, t7, t8, _this = this; if (!_this._semanticsEnabled) return; for (t1 = uiUpdate.__engine$_nodeUpdates, t2 = t1.length, t3 = _this._semanticsTree, t4 = type$.Role, t5 = type$.nullable_RoleManager, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { nodeUpdate = t1[_i]; t6 = nodeUpdate.id; object = t3.$index(0, t6); if (object == null) { object = new H.SemanticsObject(t6, _this, W._ElementFactoryProvider_createElement_tag("flt-semantics", null), P.LinkedHashMap_LinkedHashMap$_empty(t4, t5)); object.SemanticsObject$2(t6, _this); t3.$indexSet(0, t6, object); } t6 = nodeUpdate.flags; if (object.__engine$_flags !== t6) { object.__engine$_flags = t6; object._dirtyFields = (object._dirtyFields | 1) >>> 0; } t6 = nodeUpdate.value; if (object.__engine$_value != t6) { object.__engine$_value = t6; object._dirtyFields = (object._dirtyFields | 4096) >>> 0; } t6 = nodeUpdate.label; if (object.__engine$_label != t6) { object.__engine$_label = t6; object._dirtyFields = (object._dirtyFields | 1024) >>> 0; } t6 = nodeUpdate.rect; if (!J.$eq$(object.__engine$_rect, t6)) { object.__engine$_rect = t6; object._dirtyFields = (object._dirtyFields | 512) >>> 0; } t6 = nodeUpdate.transform; if (object.__engine$_transform !== t6) { object.__engine$_transform = t6; object._dirtyFields = (object._dirtyFields | 65536) >>> 0; } t6 = nodeUpdate.scrollPosition; if (object.__engine$_scrollPosition !== t6) { object.__engine$_scrollPosition = t6; object._dirtyFields = (object._dirtyFields | 64) >>> 0; } t6 = object.__engine$_actions; t7 = nodeUpdate.actions; if (t6 !== t7) { object.__engine$_actions = t7; object._dirtyFields = (object._dirtyFields | 2) >>> 0; t6 = t7; } t7 = nodeUpdate.textSelectionBase; if (object._textSelectionBase != t7) { object._textSelectionBase = t7; object._dirtyFields = (object._dirtyFields | 4) >>> 0; } t7 = nodeUpdate.textSelectionExtent; if (object._textSelectionExtent != t7) { object._textSelectionExtent = t7; object._dirtyFields = (object._dirtyFields | 8) >>> 0; } t7 = nodeUpdate.scrollChildren; if (object._scrollChildren !== t7) { object._scrollChildren = t7; object._dirtyFields = (object._dirtyFields | 16) >>> 0; } t7 = nodeUpdate.scrollIndex; if (object.__engine$_scrollIndex !== t7) { object.__engine$_scrollIndex = t7; object._dirtyFields = (object._dirtyFields | 32) >>> 0; } t7 = nodeUpdate.scrollExtentMax; if (object.__engine$_scrollExtentMax !== t7) { object.__engine$_scrollExtentMax = t7; object._dirtyFields = (object._dirtyFields | 128) >>> 0; } t7 = nodeUpdate.scrollExtentMin; if (object.__engine$_scrollExtentMin !== t7) { object.__engine$_scrollExtentMin = t7; object._dirtyFields = (object._dirtyFields | 256) >>> 0; } t7 = nodeUpdate.hint; if (object.__engine$_hint != t7) { object.__engine$_hint = t7; object._dirtyFields = (object._dirtyFields | 2048) >>> 0; } t7 = nodeUpdate.increasedValue; if (object.__engine$_increasedValue != t7) { object.__engine$_increasedValue = t7; object._dirtyFields = (object._dirtyFields | 8192) >>> 0; } t7 = nodeUpdate.decreasedValue; if (object.__engine$_decreasedValue != t7) { object.__engine$_decreasedValue = t7; object._dirtyFields = (object._dirtyFields | 16384) >>> 0; } t7 = nodeUpdate.textDirection; if (object._textDirection != t7) { object._textDirection = t7; object._dirtyFields = (object._dirtyFields | 32768) >>> 0; } t7 = object._childrenInHitTestOrder; t8 = nodeUpdate.childrenInHitTestOrder; if (t7 == null ? t8 != null : t7 !== t8) { object._childrenInHitTestOrder = t8; object._dirtyFields = (object._dirtyFields | 1048576) >>> 0; } t7 = object.__engine$_childrenInTraversalOrder; t8 = nodeUpdate.childrenInTraversalOrder; if (t7 == null ? t8 != null : t7 !== t8) { object.__engine$_childrenInTraversalOrder = t8; object._dirtyFields = (object._dirtyFields | 524288) >>> 0; } t7 = object._additionalActions; t8 = nodeUpdate.additionalActions; if (t7 == null ? t8 != null : t7 !== t8) { object._additionalActions = t8; object._dirtyFields = (object._dirtyFields | 2097152) >>> 0; } t7 = object.__engine$_label; if (!(t7 != null && t7.length !== 0)) { t7 = object.__engine$_value; t7 = t7 != null && t7.length !== 0; } else t7 = true; if (t7) { t7 = object.__engine$_flags; if ((t7 & 16) === 0) { if ((t7 & 16384) !== 0) { t6.toString; t6 = (t6 & 1) === 0 && (t7 & 8) === 0; } else t6 = false; t6 = !t6; } else t6 = false; } else t6 = false; object._updateRole$2(C.Role_2, t6); object._updateRole$2(C.Role_4, (object.__engine$_flags & 16) !== 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(C.Role_3, ((t6 & 1) !== 0 || (object.__engine$_flags & 8) !== 0) && (object.__engine$_flags & 16) === 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(C.Role_0, (t6 & 64) !== 0 || (t6 & 128) !== 0); t6 = object.__engine$_actions; t6.toString; object._updateRole$2(C.Role_1, (t6 & 32) !== 0 || (t6 & 16) !== 0 || (t6 & 4) !== 0 || (t6 & 8) !== 0); t6 = object.__engine$_flags; object._updateRole$2(C.Role_5, (t6 & 1) !== 0 || (t6 & 65536) !== 0); t6 = object.__engine$_flags; if ((t6 & 16384) !== 0) { t7 = object.__engine$_actions; t7.toString; t6 = (t7 & 1) === 0 && (t6 & 8) === 0; } else t6 = false; object._updateRole$2(C.Role_6, t6); t6 = object.__engine$_flags; object._updateRole$2(C.Role_7, (t6 & 32768) !== 0 && (t6 & 8192) === 0); object._updateChildrenInTraversalOrder$0(); t6 = object._dirtyFields; if ((t6 & 512) !== 0 || (t6 & 65536) !== 0 || (t6 & 64) !== 0) object.recomputePositionAndSize$0(); object._dirtyFields = 0; } if (_this._rootSemanticsElement == null) { t1 = t3.$index(0, 0).element; _this._rootSemanticsElement = t1; $.$get$domRenderer()._semanticsHostElement.appendChild(t1); } _this._finalizeTree$0(); } }; H.EngineSemanticsOwner$__closure.prototype = { call$0: function() { var t1 = this.$this._rootSemanticsElement; if (t1 != null) J.remove$0$ax(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.EngineSemanticsOwner__now_closure.prototype = { call$0: function() { return new P.DateTime(Date.now(), false); }, $signature: 421 }; H.EngineSemanticsOwner__getGestureModeClock_closure.prototype = { call$0: function() { var t1 = this.$this; if (t1._gestureMode === C.GestureMode_1) return; t1._gestureMode = C.GestureMode_1; t1._notifyGestureModeListeners$0(); }, $signature: 0 }; H.EnabledState.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.SemanticsHelper.prototype = {}; H.SemanticsEnabler.prototype = { shouldEnableSemantics$1: function($event) { if (!this.get$isWaitingToEnableSemantics()) return true; else return this.tryEnableSemantics$1($event); } }; H.DesktopSemanticsEnabler.prototype = { get$isWaitingToEnableSemantics: function() { return this._semanticsPlaceholder != null; }, tryEnableSemantics$1: function($event) { var t1, t2, _this = this; if (_this._schedulePlaceholderRemoval) { t1 = _this._semanticsPlaceholder; t1.toString; J.remove$0$ax(t1); _this.semanticsActivationTimer = _this._semanticsPlaceholder = null; return true; } t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1)._semanticsEnabled) return true; t1 = J.getInterceptor$x($event); if (!J.containsKey$1$x(C.Set_Yabt3._collection$_map, t1.get$type($event))) return true; if (++_this.semanticsActivationAttempts >= 20) return _this._schedulePlaceholderRemoval = true; if (_this.semanticsActivationTimer != null) return false; t1 = t1.get$target($event); t2 = _this._semanticsPlaceholder; if (t1 == null ? t2 == null : t1 === t2) { _this.semanticsActivationTimer = P.Timer_Timer(C.Duration_300000, new H.DesktopSemanticsEnabler_tryEnableSemantics_closure(_this)); return false; } return true; }, prepareAccessibilityPlaceholder$0: function() { var t2, t1 = this._semanticsPlaceholder = W._ElementFactoryProvider_createElement_tag("flt-semantics-placeholder", null); J.addEventListener$3$x(t1, "click", new H.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure(this), true); t1.setAttribute("role", "button"); t1.setAttribute("aria-live", "true"); t1.setAttribute("tabindex", "0"); t1.setAttribute("aria-label", "Enable accessibility"); t2 = t1.style; t2.position = "absolute"; t2.left = "-1px"; t2.top = "-1px"; t2.width = "1px"; t2.height = "1px"; return t1; } }; H.DesktopSemanticsEnabler_tryEnableSemantics_closure.prototype = { call$0: function() { var t1 = $.EngineSemanticsOwner__instance; (t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1).set$semanticsEnabled(true); this.$this._schedulePlaceholderRemoval = true; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure.prototype = { call$1: function($event) { this.$this.tryEnableSemantics$1($event); }, $signature: 61 }; H.MobileSemanticsEnabler.prototype = { get$isWaitingToEnableSemantics: function() { return this._semanticsPlaceholder != null; }, tryEnableSemantics$1: function($event) { var t1, removeNow, t2, blinkEnableConditionPassed, activationPoint, activatingElementRect, t3, t4, t5, deltaX, deltaY, safariEnableConditionPassed, _this = this; if (_this._schedulePlaceholderRemoval) { t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1) { t1 = J.getInterceptor$x($event); removeNow = t1.get$type($event) === "touchend" || t1.get$type($event) === "pointerup" || t1.get$type($event) === "click"; } else removeNow = true; if (removeNow) { t1 = _this._semanticsPlaceholder; t1.toString; J.remove$0$ax(t1); _this.semanticsActivationTimer = _this._semanticsPlaceholder = null; } return true; } t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1)._semanticsEnabled) return true; if (++_this.semanticsActivationAttempts >= 20) return _this._schedulePlaceholderRemoval = true; t1 = J.getInterceptor$x($event); if (!J.containsKey$1$x(C.Set_2No4._collection$_map, t1.get$type($event))) return true; if (_this.semanticsActivationTimer != null) return false; t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_0) { t2 = H._browserEngine(); t2 = t2 === C.BrowserEngine_5; } else t2 = true; if (t2) { t2 = $.EngineSemanticsOwner__instance; blinkEnableConditionPassed = (t2 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t2)._gestureMode === C.GestureMode_1; } else blinkEnableConditionPassed = false; t2 = H._browserEngine(); if (t2 === C.BrowserEngine_1) { switch (t1.get$type($event)) { case "click": activationPoint = t1.get$offset(type$.MouseEvent._as($event)); break; case "touchstart": case "touchend": t1 = type$.TouchEvent._as($event).changedTouches; t1.toString; t1 = C.TouchList_methods.get$first(t1); activationPoint = new P.Point(C.JSNumber_methods.round$0(t1.clientX), C.JSNumber_methods.round$0(t1.clientY), type$.Point_num); break; case "pointerdown": case "pointerup": type$.PointerEvent_2._as($event); activationPoint = new P.Point($event.clientX, $event.clientY, type$.Point_num); break; default: return true; } activatingElementRect = $.$get$domRenderer()._glassPaneElement.getBoundingClientRect(); t1 = activatingElementRect.left; t1.toString; t2 = activatingElementRect.right; t2.toString; t3 = activatingElementRect.top; t3.toString; t4 = activatingElementRect.bottom; t4.toString; t5 = activationPoint.x; t5.toString; deltaX = t5 - (t1 + (t2 - t1) / 2); t1 = activationPoint.y; t1.toString; deltaY = t1 - (t3 + (t4 - t3) / 2); safariEnableConditionPassed = deltaX * deltaX + deltaY * deltaY < 1 && true; } else safariEnableConditionPassed = false; if (blinkEnableConditionPassed || safariEnableConditionPassed) { _this.semanticsActivationTimer = P.Timer_Timer(C.Duration_300000, new H.MobileSemanticsEnabler_tryEnableSemantics_closure(_this)); return false; } return true; }, prepareAccessibilityPlaceholder$0: function() { var t2, t1 = this._semanticsPlaceholder = W._ElementFactoryProvider_createElement_tag("flt-semantics-placeholder", null); J.addEventListener$3$x(t1, "click", new H.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure(this), true); t1.setAttribute("role", "button"); t1.setAttribute("aria-label", "Enable accessibility"); t2 = t1.style; t2.position = "absolute"; t2.left = "0"; t2.top = "0"; t2.right = "0"; t2.bottom = "0"; return t1; } }; H.MobileSemanticsEnabler_tryEnableSemantics_closure.prototype = { call$0: function() { var t1 = $.EngineSemanticsOwner__instance; (t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1).set$semanticsEnabled(true); this.$this._schedulePlaceholderRemoval = true; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure.prototype = { call$1: function($event) { this.$this.tryEnableSemantics$1($event); }, $signature: 61 }; H.Tappable.prototype = { update$0: function(_) { var t2, _this = this, t1 = _this.semanticsObject, element = t1.element; element.tabIndex = 0; t1.setAriaRole$2("button", (t1.__engine$_flags & 8) !== 0); if (t1.enabledState$0() === C.EnabledState_2 && (t1.__engine$_flags & 8) !== 0) { element.setAttribute("aria-disabled", "true"); _this._stopListening$0(); } else { t2 = t1.__engine$_actions; t2.toString; if ((t2 & 1) !== 0 && (t1.__engine$_flags & 16) === 0) { if (_this._clickListener == null) { t2 = new H.Tappable_update_closure(_this); _this._clickListener = t2; J.addEventListener$2$x(element, "click", t2); } } else _this._stopListening$0(); } if ((t1._dirtyFields & 1) !== 0 && (t1.__engine$_flags & 32) !== 0) J.focus$0$x(element); }, _stopListening$0: function() { var t1 = this._clickListener; if (t1 == null) return; J.removeEventListener$2$x(this.semanticsObject.element, "click", t1); this._clickListener = null; }, dispose$0: function(_) { this._stopListening$0(); this.semanticsObject.setAriaRole$2("button", false); } }; H.Tappable_update_closure.prototype = { call$1: function(_) { var t2, t1 = this.$this.semanticsObject; if (t1.owner._gestureMode !== C.GestureMode_1) return; t2 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, t1.id, C.SemanticsAction_1, null); }, $signature: 61 }; H.SemanticsTextEditingStrategy.prototype = { enable$3$onAction$onChange: function(_, inputConfig, onAction, onChange) { this.inputConfig = inputConfig; this.onChange = onChange; this.onAction = onAction; }, activate$1: function(textField) { var t2, t3, _this = this, t1 = _this.activeTextField; if (t1 === textField) return; else if (t1 != null) _this.disable$0(0); _this.activeTextField = textField; _this.domElement = textField.get$editableElement(); _this._syncStyle$0(); t1 = _this.inputConfig; t1.toString; t2 = _this.onChange; t2.toString; t3 = _this.onAction; t3.toString; _this.super$DefaultTextEditingStrategy$enable(0, t1, t3, t2); }, disable$0: function(_) { var t1, i, _this = this; if (!_this.isEnabled) return; _this.isEnabled = false; _this.__engine$_geometry = _this._style = null; for (t1 = _this.__engine$_subscriptions, i = 0; i < t1.length; ++i) J.cancel$0$z(t1[i]); C.JSArray_methods.set$length(t1, 0); _this._lastEditingState = null; t1 = _this.domElement; if (t1 != null) t1.blur(); _this._queuedStyle = _this.activeTextField = _this.domElement = null; }, addEventHandlers$0: function() { var t1, t2, t3, _this = this; if (_this.get$_inputConfiguration().autofillGroup != null) C.JSArray_methods.addAll$1(_this.__engine$_subscriptions, _this.get$_inputConfiguration().autofillGroup.addInputEventListeners$0()); t1 = _this.__engine$_subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$__engine$_handleChange(); t1.push(W._EventStreamSubscription$(t2, "input", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "keydown", _this.get$_maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(W._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); _this.preventDefaultForMouseEvents$0(); }, initializeTextEditing$3$onAction$onChange: function(inputConfig, onAction, onChange) { var _this = this; _this.isEnabled = true; _this.__DefaultTextEditingStrategy__inputConfiguration = inputConfig; _this._onChange = onChange; _this._onAction = onAction; _this._applyConfiguration$1(inputConfig); }, placeElement$0: function() { this.get$_inputConfiguration().toString; this.domElement.focus(); }, initializeElementPlacement$0: function() { }, updateElementPlacement$1: function(geometry) { }, updateElementStyle$1: function(style) { this._queuedStyle = style; this._syncStyle$0(); }, _syncStyle$0: function() { var t1 = this._queuedStyle; if (t1 == null || this.domElement == null) return; t1.toString; this.super$DefaultTextEditingStrategy$updateElementStyle(t1); } }; H.TextField0.prototype = { get$editableElement: function() { var t1 = this.__TextField_editableElement; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("editableElement")) : t1; }, _initializeForBlink$0: function() { J.addEventListener$2$x(this.get$editableElement(), "focus", new H.TextField__initializeForBlink_closure(this)); }, _initializeForWebkit$0: function() { var _this = this, t1 = {}, t2 = H._operatingSystem(); if (t2 === C.OperatingSystem_4) { _this._initializeForBlink$0(); return; } t1.lastTouchStartOffsetY = t1.lastTouchStartOffsetX = null; J.addEventListener$3$x(_this.get$editableElement(), "touchstart", new H.TextField__initializeForWebkit_closure(t1), true); J.addEventListener$3$x(_this.get$editableElement(), "touchend", new H.TextField__initializeForWebkit_closure0(t1, _this), true); }, update$0: function(_) { var t3, editingState, needsDomFocusRequest, element, _this = this, _s10_ = "aria-label", t1 = _this.semanticsObject, t2 = t1.__engine$_label; if (t2 != null && t2.length !== 0) { t2 = _this.get$editableElement(); t3 = t1.__engine$_label; t3.toString; t2.setAttribute(_s10_, t3); } else _this.get$editableElement().removeAttribute(_s10_); t2 = _this.get$editableElement().style; t3 = t1.__engine$_rect; t3 = H.S(t3.right - t3.left) + "px"; t2.width = t3; t3 = t1.__engine$_rect; t3 = H.S(t3.bottom - t3.top) + "px"; t2.height = t3; t2 = t1.__engine$_value; editingState = H.EditingState$(t1._textSelectionBase, t1._textSelectionExtent, t2); if ((t1.__engine$_flags & 32) !== 0) { if (!_this._hasFocused) { _this._hasFocused = true; $.SemanticsTextEditingStrategy__instance.activate$1(_this); needsDomFocusRequest = true; } else needsDomFocusRequest = false; t2 = document.activeElement; t3 = _this.get$editableElement(); if (t2 == null ? t3 != null : t2 !== t3) needsDomFocusRequest = true; $.SemanticsTextEditingStrategy__instance.setEditingState$1(editingState); } else { if (_this._hasFocused) { t2 = $.SemanticsTextEditingStrategy__instance; if (t2.activeTextField === _this) t2.disable$0(0); element = _this.get$editableElement(); if (type$.InputElement._is(element)) element.value = editingState.text; else if (type$.TextAreaElement._is(element)) element.value = editingState.text; else H.throwExpression(P.UnsupportedError$("Unsupported DOM element type")); if (_this._hasFocused) { t2 = document.activeElement; t3 = _this.get$editableElement(); t3 = t2 == null ? t3 == null : t2 === t3; t2 = t3; } else t2 = false; if (t2) _this.get$editableElement().blur(); _this._hasFocused = false; } needsDomFocusRequest = false; } if (needsDomFocusRequest) t1.owner._oneTimePostUpdateCallbacks.push(new H.TextField_update_closure(_this)); }, dispose$0: function(_) { var t1; J.remove$0$ax(this.get$editableElement()); t1 = $.SemanticsTextEditingStrategy__instance; if (t1.activeTextField === this) t1.disable$0(0); } }; H.TextField__initializeForBlink_closure.prototype = { call$1: function($event) { var t2, t1 = this.$this.semanticsObject; if (t1.owner._gestureMode !== C.GestureMode_1) return; t2 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, t1.id, C.SemanticsAction_1, null); }, $signature: 61 }; H.TextField__initializeForWebkit_closure.prototype = { call$1: function($event) { var t1, t2; type$.TouchEvent._as($event); t1 = $event.changedTouches; t1.toString; t1 = C.TouchList_methods.get$last(t1); t2 = C.JSNumber_methods.round$0(t1.clientX); C.JSNumber_methods.round$0(t1.clientY); t1 = this._box_0; t1.lastTouchStartOffsetX = t2; t2 = $event.changedTouches; t2.toString; t2 = C.TouchList_methods.get$last(t2); C.JSNumber_methods.round$0(t2.clientX); t1.lastTouchStartOffsetY = C.JSNumber_methods.round$0(t2.clientY); }, $signature: 61 }; H.TextField__initializeForWebkit_closure0.prototype = { call$1: function($event) { var t1, t2, offsetX, offsetY; type$.TouchEvent._as($event); t1 = this._box_0; if (t1.lastTouchStartOffsetX != null) { t2 = $event.changedTouches; t2.toString; t2 = C.TouchList_methods.get$last(t2); offsetX = C.JSNumber_methods.round$0(t2.clientX); C.JSNumber_methods.round$0(t2.clientY); t2 = $event.changedTouches; t2.toString; t2 = C.TouchList_methods.get$last(t2); C.JSNumber_methods.round$0(t2.clientX); offsetY = C.JSNumber_methods.round$0(t2.clientY); if (offsetX * offsetX + offsetY * offsetY < 324) { t2 = $.$get$EnginePlatformDispatcher__instance(); H.invoke3(t2._onSemanticsAction, t2._onSemanticsActionZone, this.$this.semanticsObject.id, C.SemanticsAction_1, null); } } t1.lastTouchStartOffsetY = t1.lastTouchStartOffsetX = null; }, $signature: 61 }; H.TextField_update_closure.prototype = { call$0: function() { var t1 = document.activeElement, t2 = this.$this, t3 = t2.get$editableElement(); if (t1 == null ? t3 != null : t1 !== t3) t2.get$editableElement().focus(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H._TypedDataBuffer.prototype = { get$length: function(_) { return this.__engine$_length; }, $index: function(_, index) { if (index >= this.__engine$_length) throw H.wrapException(P.IndexError$(index, this, null, null, null)); return this.__engine$_buffer[index]; }, $indexSet: function(_, index, value) { if (index >= this.__engine$_length) throw H.wrapException(P.IndexError$(index, this, null, null, null)); this.__engine$_buffer[index] = value; }, set$length: function(_, newLength) { var t2, i, newBuffer, _this = this, t1 = _this.__engine$_length; if (newLength < t1) for (t2 = _this.__engine$_buffer, i = newLength; i < t1; ++i) t2[i] = 0; else { t1 = _this.__engine$_buffer.length; if (newLength > t1) { if (t1 === 0) newBuffer = new Uint8Array(newLength); else newBuffer = _this.__engine$_createBiggerBuffer$1(newLength); C.NativeUint8List_methods.setRange$3(newBuffer, 0, _this.__engine$_length, _this.__engine$_buffer); _this.__engine$_buffer = newBuffer; } } _this.__engine$_length = newLength; }, __engine$_add$1: function(_, value) { var _this = this, t1 = _this.__engine$_length; if (t1 === _this.__engine$_buffer.length) _this.__engine$_grow$1(t1); _this.__engine$_buffer[_this.__engine$_length++] = value; }, add$1: function(_, value) { var _this = this, t1 = _this.__engine$_length; if (t1 === _this.__engine$_buffer.length) _this.__engine$_grow$1(t1); _this.__engine$_buffer[_this.__engine$_length++] = value; }, addAll$3: function(_, values, start, end) { P.RangeError_checkNotNegative(start, "start"); if (end != null && start > end) throw H.wrapException(P.RangeError$range(end, start, null, "end", null)); this.__engine$_addAll$3(values, start, end); }, addAll$1: function($receiver, values) { return this.addAll$3($receiver, values, 0, null); }, __engine$_addAll$3: function(values, start, end) { var t1, i, value, _this = this; if (H._instanceType(_this)._eval$1("List<_TypedDataBuffer.E>")._is(values)) end = end == null ? J.get$length$asx(values) : end; if (end != null) { _this.__engine$_insertKnownLength$4(_this.__engine$_length, values, start, end); return; } for (t1 = J.get$iterator$ax(values), i = 0; t1.moveNext$0();) { value = t1.get$current(t1); if (i >= start) _this.__engine$_add$1(0, value); ++i; } if (i < start) throw H.wrapException(P.StateError$("Too few elements")); }, __engine$_insertKnownLength$4: function(index, values, start, end) { var valuesLength, newLength, t2, _this = this, t1 = J.getInterceptor$asx(values); if (start > t1.get$length(values) || end > t1.get$length(values)) throw H.wrapException(P.StateError$("Too few elements")); valuesLength = end - start; newLength = _this.__engine$_length + valuesLength; _this.__engine$_ensureCapacity$1(newLength); t1 = _this.__engine$_buffer; t2 = index + valuesLength; C.NativeUint8List_methods.setRange$4(t1, t2, _this.__engine$_length + valuesLength, t1, index); C.NativeUint8List_methods.setRange$4(_this.__engine$_buffer, index, t2, values, start); _this.__engine$_length = newLength; }, insert$2: function(_, index, element) { var t1, t2, newBuffer, _this = this; if (index < 0 || index > _this.__engine$_length) throw H.wrapException(P.RangeError$range(index, 0, _this.__engine$_length, null, null)); t1 = _this.__engine$_length; t2 = _this.__engine$_buffer; if (t1 < t2.length) { C.NativeUint8List_methods.setRange$4(t2, index + 1, t1 + 1, t2, index); _this.__engine$_buffer[index] = element; ++_this.__engine$_length; return; } newBuffer = _this.__engine$_createBiggerBuffer$1(null); C.NativeUint8List_methods.setRange$3(newBuffer, 0, index, _this.__engine$_buffer); C.NativeUint8List_methods.setRange$4(newBuffer, index + 1, _this.__engine$_length + 1, _this.__engine$_buffer, index); newBuffer[index] = element; ++_this.__engine$_length; _this.__engine$_buffer = newBuffer; }, __engine$_ensureCapacity$1: function(requiredCapacity) { var newBuffer, _this = this; if (requiredCapacity <= _this.__engine$_buffer.length) return; newBuffer = _this.__engine$_createBiggerBuffer$1(requiredCapacity); C.NativeUint8List_methods.setRange$3(newBuffer, 0, _this.__engine$_length, _this.__engine$_buffer); _this.__engine$_buffer = newBuffer; }, __engine$_createBiggerBuffer$1: function(requiredCapacity) { var newLength = this.__engine$_buffer.length * 2; if (requiredCapacity != null && newLength < requiredCapacity) newLength = requiredCapacity; else if (newLength < 8) newLength = 8; if (!H._isInt(newLength)) H.throwExpression(P.ArgumentError$("Invalid length " + H.S(newLength))); return new Uint8Array(newLength); }, __engine$_grow$1: function($length) { var t1 = this.__engine$_createBiggerBuffer$1(null); C.NativeUint8List_methods.setRange$3(t1, 0, $length, this.__engine$_buffer); this.__engine$_buffer = t1; }, setRange$4: function(_, start, end, source, skipCount) { var t1 = this.__engine$_length; if (end > t1) throw H.wrapException(P.RangeError$range(end, 0, t1, null, null)); t1 = this.__engine$_buffer; if (H._instanceType(this)._eval$1("_TypedDataBuffer<_TypedDataBuffer.E>")._is(source)) C.NativeUint8List_methods.setRange$4(t1, start, end, source.__engine$_buffer, skipCount); else C.NativeUint8List_methods.setRange$4(t1, start, end, source, skipCount); }, setRange$3: function($receiver, start, end, source) { return this.setRange$4($receiver, start, end, source, 0); } }; H._IntBuffer.prototype = {}; H.Uint8Buffer0.prototype = {}; H.MethodCall0.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + "(" + this.method + ", " + H.S(this.$arguments) + ")"; } }; H.JSONMessageCodec.prototype = { encodeMessage$1: function(message) { return H.NativeByteData_NativeByteData$view(C.C_Utf8Encoder.convert$1(C.C_JsonCodec.encode$1(message)).buffer, 0, null); }, decodeMessage$1: function(message) { if (message == null) return message; return C.C_JsonCodec.decode$1(0, C.Utf8Decoder_false.convert$1(J.asUint8List$0$x(J.get$buffer$x(message)))); } }; H.JSONMethodCodec.prototype = { encodeMethodCall$1: function($call) { return C.C_JSONMessageCodec.encodeMessage$1(P.LinkedHashMap_LinkedHashMap$_literal(["method", $call.method, "args", $call.$arguments], type$.String, type$.dynamic)); }, decodeMethodCall$1: function(methodCall) { var t1, method, $arguments, _null = null, decoded = C.C_JSONMessageCodec.decodeMessage$1(methodCall); if (!type$.Map_dynamic_dynamic._is(decoded)) throw H.wrapException(P.FormatException$("Expected method call Map, got " + H.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); method = t1.$index(decoded, "method"); $arguments = t1.$index(decoded, "args"); if (typeof method == "string") return new H.MethodCall0(method, $arguments); throw H.wrapException(P.FormatException$("Invalid method call: " + H.S(decoded), _null, _null)); } }; H.StandardMessageCodec.prototype = { encodeMessage$1: function(message) { var buffer = H.WriteBuffer_WriteBuffer(); this.writeValue$2(0, buffer, true); return buffer.done$0(); }, decodeMessage$1: function(message) { var buffer, result; if (message == null) return null; buffer = new H.ReadBuffer0(message); result = this.readValue$1(0, buffer); if (buffer.__engine$_position < message.byteLength) throw H.wrapException(C.FormatException_oCg); return result; }, writeValue$2: function(_, buffer, value) { var t1, t2, t3, bytes, _this = this; if (value == null) buffer.__engine$_buffer.__engine$_add$1(0, 0); else if (H._isBool(value)) { t1 = value ? 1 : 2; buffer.__engine$_buffer.__engine$_add$1(0, t1); } else if (typeof value == "number") { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 6); buffer.__engine$_alignTo$1(8); buffer.__engine$_eightBytes.setFloat64(0, value, C.C_Endian === $.$get$Endian_host()); t1.addAll$1(0, buffer.__engine$_eightBytesAsList); } else if (H._isInt(value)) { t1 = -2147483648 <= value && value <= 2147483647; t2 = buffer.__engine$_buffer; t3 = buffer.__engine$_eightBytes; if (t1) { t2.__engine$_add$1(0, 3); t3.setInt32(0, value, C.C_Endian === $.$get$Endian_host()); t2.addAll$3(0, buffer.__engine$_eightBytesAsList, 0, 4); } else { t2.__engine$_add$1(0, 4); C.NativeByteData_methods.setInt64$3(t3, 0, value, $.$get$Endian_host()); } } else if (typeof value == "string") { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 7); bytes = C.C_Utf8Encoder.convert$1(value); _this.writeSize$2(buffer, bytes.length); t1.addAll$1(0, bytes); } else if (type$.Uint8List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 8); _this.writeSize$2(buffer, J.get$length$asx(value)); t1.addAll$1(0, value); } else if (type$.Int32List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 9); t2 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t2.get$length(value)); buffer.__engine$_alignTo$1(4); t1.addAll$1(0, J.asUint8List$2$x(t2.get$buffer(value), t2.get$offsetInBytes(value), 4 * t2.get$length(value))); } else if (type$.Int64List._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 10); _this.writeSize$2(buffer, value.get$length(value)); } else if (type$.Float64List._is(value)) { t1 = buffer.__engine$_buffer; t1.__engine$_add$1(0, 11); t2 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t2.get$length(value)); buffer.__engine$_alignTo$1(8); t1.addAll$1(0, J.asUint8List$2$x(t2.get$buffer(value), t2.get$offsetInBytes(value), 8 * t2.get$length(value))); } else if (type$.List_dynamic._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 12); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); for (t1 = t1.get$iterator(value); t1.moveNext$0();) _this.writeValue$2(0, buffer, t1.get$current(t1)); } else if (type$.Map_dynamic_dynamic._is(value)) { buffer.__engine$_buffer.__engine$_add$1(0, 13); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); t1.forEach$1(value, new H.StandardMessageCodec_writeValue_closure0(_this, buffer)); } else throw H.wrapException(P.ArgumentError$value(value, null, null)); }, readValue$1: function(_, buffer) { if (!(buffer.__engine$_position < buffer.data.byteLength)) throw H.wrapException(C.FormatException_oCg); return this.readValueOfType$2(buffer.getUint8$0(0), buffer); }, readValueOfType$2: function(type, buffer) { var result, value, $length, t1, list, i, t2, t3, _this = this; switch (type) { case 0: result = null; break; case 1: result = true; break; case 2: result = false; break; case 3: value = buffer.data.getInt32(buffer.__engine$_position, C.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 4; result = value; break; case 4: result = buffer.getInt64$0(0); break; case 5: $length = _this.readSize$1(buffer); result = P.int_parse(C.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)), 16); break; case 6: buffer.__engine$_alignTo$1(8); value = buffer.data.getFloat64(buffer.__engine$_position, C.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 8; result = value; break; case 7: $length = _this.readSize$1(buffer); result = C.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)); break; case 8: result = buffer.getUint8List$1(_this.readSize$1(buffer)); break; case 9: $length = _this.readSize$1(buffer); buffer.__engine$_alignTo$1(4); t1 = buffer.data; list = H.NativeInt32List_NativeInt32List$view(t1.buffer, t1.byteOffset + buffer.__engine$_position, $length); buffer.__engine$_position = buffer.__engine$_position + 4 * $length; result = list; break; case 10: result = buffer.getInt64List$1(_this.readSize$1(buffer)); break; case 11: $length = _this.readSize$1(buffer); buffer.__engine$_alignTo$1(8); t1 = buffer.data; list = H.NativeFloat64List_NativeFloat64List$view(t1.buffer, t1.byteOffset + buffer.__engine$_position, $length); buffer.__engine$_position = buffer.__engine$_position + 8 * $length; result = list; break; case 12: $length = _this.readSize$1(buffer); result = []; for (t1 = buffer.data, i = 0; i < $length; ++i) { t2 = buffer.__engine$_position; if (!(t2 < t1.byteLength)) H.throwExpression(C.FormatException_oCg); buffer.__engine$_position = t2 + 1; result.push(_this.readValueOfType$2(t1.getUint8(t2), buffer)); } break; case 13: $length = _this.readSize$1(buffer); t1 = type$.dynamic; result = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = buffer.data, i = 0; i < $length; ++i) { t2 = buffer.__engine$_position; if (!(t2 < t1.byteLength)) H.throwExpression(C.FormatException_oCg); buffer.__engine$_position = t2 + 1; t2 = _this.readValueOfType$2(t1.getUint8(t2), buffer); t3 = buffer.__engine$_position; if (!(t3 < t1.byteLength)) H.throwExpression(C.FormatException_oCg); buffer.__engine$_position = t3 + 1; result.$indexSet(0, t2, _this.readValueOfType$2(t1.getUint8(t3), buffer)); } break; default: throw H.wrapException(C.FormatException_oCg); } return result; }, writeSize$2: function(buffer, value) { var t1, t2, t3; if (value < 254) buffer.__engine$_buffer.__engine$_add$1(0, value); else { t1 = buffer.__engine$_buffer; t2 = buffer.__engine$_eightBytes; t3 = buffer.__engine$_eightBytesAsList; if (value <= 65535) { t1.__engine$_add$1(0, 254); t2.setUint16(0, value, C.C_Endian === $.$get$Endian_host()); t1.addAll$3(0, t3, 0, 2); } else { t1.__engine$_add$1(0, 255); t2.setUint32(0, value, C.C_Endian === $.$get$Endian_host()); t1.addAll$3(0, t3, 0, 4); } } }, readSize$1: function(buffer) { var value = buffer.getUint8$0(0); switch (value) { case 254: value = buffer.data.getUint16(buffer.__engine$_position, C.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 2; return value; case 255: value = buffer.data.getUint32(buffer.__engine$_position, C.C_Endian === $.$get$Endian_host()); buffer.__engine$_position += 4; return value; default: return value; } } }; H.StandardMessageCodec_writeValue_closure0.prototype = { call$2: function(key, value) { var t1 = this.$this, t2 = this.buffer; t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, $signature: 118 }; H.StandardMethodCodec.prototype = { decodeMethodCall$1: function(methodCall) { var buffer, method, $arguments; methodCall.toString; buffer = new H.ReadBuffer0(methodCall); method = C.C_StandardMessageCodec0.readValue$1(0, buffer); $arguments = C.C_StandardMessageCodec0.readValue$1(0, buffer); if (typeof method == "string" && !(buffer.__engine$_position < methodCall.byteLength)) return new H.MethodCall0(method, $arguments); else throw H.wrapException(C.FormatException_Qi2); }, encodeSuccessEnvelope$1: function(result) { var buffer = H.WriteBuffer_WriteBuffer(); buffer.__engine$_buffer.__engine$_add$1(0, 0); C.C_StandardMessageCodec0.writeValue$2(0, buffer, result); return buffer.done$0(); }, encodeErrorEnvelope$3$code$details$message: function(code, details, message) { var buffer = H.WriteBuffer_WriteBuffer(); buffer.__engine$_buffer.__engine$_add$1(0, 1); C.C_StandardMessageCodec0.writeValue$2(0, buffer, code); C.C_StandardMessageCodec0.writeValue$2(0, buffer, message); C.C_StandardMessageCodec0.writeValue$2(0, buffer, details); return buffer.done$0(); }, encodeErrorEnvelope$2$code$message: function(code, message) { return this.encodeErrorEnvelope$3$code$details$message(code, null, message); } }; H.WriteBuffer0.prototype = { __engine$_alignTo$1: function(alignment) { var t2, i, t1 = this.__engine$_buffer, mod = C.JSInt_methods.$mod(t1.__engine$_length, alignment); if (mod !== 0) for (t2 = alignment - mod, i = 0; i < t2; ++i) t1.__engine$_add$1(0, 0); }, done$0: function() { var t1, t2; this._debugFinalized = true; t1 = this.__engine$_buffer; t2 = t1.__engine$_buffer; return H.NativeByteData_NativeByteData$view(t2.buffer, 0, t1.__engine$_length * t2.BYTES_PER_ELEMENT); } }; H.ReadBuffer0.prototype = { getUint8$0: function(_) { return this.data.getUint8(this.__engine$_position++); }, getInt64$0: function(_) { var t1 = this.data; (t1 && C.NativeByteData_methods).getInt64$2(t1, this.__engine$_position, $.$get$Endian_host()); }, getUint8List$1: function($length) { var _this = this, t1 = _this.data, list = H.NativeUint8List_NativeUint8List$view(t1.buffer, t1.byteOffset + _this.__engine$_position, $length); _this.__engine$_position = _this.__engine$_position + $length; return list; }, getInt64List$1: function($length) { var t1; this.__engine$_alignTo$1(8); t1 = this.data; C.NativeByteBuffer_methods.asInt64List$2(t1.buffer, t1.byteOffset + this.__engine$_position, $length); }, __engine$_alignTo$1: function(alignment) { var t1 = this.__engine$_position, mod = C.JSInt_methods.$mod(t1, alignment); if (mod !== 0) this.__engine$_position = t1 + (alignment - mod); } }; H.SurfaceShadowData.prototype = {}; H.CanvasParagraph.prototype = { get$width: function(_) { return this.get$_layoutService().width; }, get$height: function(_) { return this.get$_layoutService().height; }, get$longestLine: function() { var t1 = this.get$_layoutService().longestLine; t1 = t1 == null ? null : t1.width; return t1 == null ? 0 : t1; }, get$minIntrinsicWidth: function() { return this.get$_layoutService().minIntrinsicWidth; }, get$maxIntrinsicWidth: function() { return this.get$_layoutService().maxIntrinsicWidth; }, get$alphabeticBaseline: function(_) { return this.get$_layoutService().alphabeticBaseline; }, get$ideographicBaseline: function(_) { return this.get$_layoutService().ideographicBaseline; }, get$didExceedMaxLines: function(_) { this.get$_layoutService().toString; return false; }, get$_layoutService: function() { var _this = this, t1 = _this.__CanvasParagraph__layoutService; if (t1 === $) { t1 = new H.TextLayoutService(_this, W.CanvasElement_CanvasElement(null, null).getContext("2d"), H.setRuntimeTypeInfo([], type$.JSArray_EngineLineMetrics)); if (_this.__CanvasParagraph__layoutService === $) _this.__CanvasParagraph__layoutService = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_layoutService")); } return t1; }, layout$1: function(_, constraints) { var _this = this, t1 = constraints.width; t1.toString; constraints = new P.ParagraphConstraints(Math.floor(t1)); if (constraints.$eq(0, _this._lastUsedConstraints)) return; _this.get$_layoutService().performLayout$1(constraints); _this.isLaidOut = true; _this._lastUsedConstraints = constraints; _this._cachedDomElement = null; }, get$hasArbitraryPaint: function() { return true; }, paint$2: function(canvas, offset) { var t1 = this.__CanvasParagraph__paintService; if (t1 === $) t1 = this.__CanvasParagraph__paintService = new H.TextPaintService(this); t1.paint$2(canvas, offset); }, toDomElement$0: function() { var t1, domElement = this._cachedDomElement; if (domElement == null) { t1 = this._createDomElement$0(); this._cachedDomElement = t1; return t1; } return type$.HtmlElement._as(domElement.cloneNode(true)); }, _createDomElement$0: function() { var t4, t5, _element_get, _element_set, lines, span, i, element, _i, box, span0, t6, _this = this, _box_0 = {}, t1 = type$.HtmlElement, rootElement = t1._as($.$get$domRenderer().createElement$1(0, "p")), t2 = _this.paragraphStyle, cssStyle = rootElement.style, t3 = t2._textAlign; if (t3 != null) { t4 = t2._textDirection; t3 = H.textAlignToCssValue(t3, t4 == null ? C.TextDirection_1 : t4); cssStyle.textAlign = t3; } if (t2.get$_lineHeight(t2) != null) { t3 = H.S(t2.get$_lineHeight(t2)); cssStyle.lineHeight = t3; } t3 = t2._textDirection; if (t3 != null) { t3 = H._textDirectionToCss(t3); cssStyle.toString; cssStyle.direction = t3 == null ? "" : t3; } cssStyle = rootElement.style; cssStyle.position = "absolute"; cssStyle.whiteSpace = "pre"; if (_this.get$_layoutService().width > _this.get$longestLine()) { t3 = H.S(_this.get$_layoutService().width) + "px"; cssStyle.width = t3; } t3 = t2._maxLines; t4 = t3 == null; if (!t4 || t2._ellipsis != null) { C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "overflow-y"), "hidden", ""); t5 = H.S(_this.get$_layoutService().height) + "px"; cssStyle.height = t5; } if (t2._ellipsis != null) t2 = t4 || t3 === 1; else t2 = false; if (t2) { t2 = H.S(_this.get$_layoutService().width) + "px"; cssStyle.width = t2; C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "overflow-x"), "hidden", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(cssStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(cssStyle, "text-overflow"), "ellipsis", ""); } _box_0._element0 = $; _element_get = new H.CanvasParagraph__createDomElement__element_get(_box_0); _element_set = new H.CanvasParagraph__createDomElement__element_set(_box_0); lines = _this.get$_layoutService().lines; for (span = null, i = 0; i < lines.length; ++i) { if (i > 0) { t2 = $.$get$domRenderer(); t3 = _element_get.call$0(); t2.toString; element = document.createElement("br"); t3.appendChild(element); } for (t2 = lines[i].boxes, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { box = t2[_i]; if (box instanceof H.SpanBox) { span0 = box.span; if (span0 != span) { $.$get$domRenderer().toString; element = document.createElement("span"); _element_set.call$1(t1._as(element)); H._applyTextStyleToElement(_element_get.call$0(), true, span0.style); rootElement.appendChild(_element_get.call$0()); span = span0; } t4 = $.$get$domRenderer(); t5 = _element_get.call$0(); t6 = C.JSString_methods.substring$2(box.spanometer.paragraph.plainText, box.start.index, box.end.indexWithoutTrailingNewlines); t4.toString; t5.toString; t5.appendChild(document.createTextNode(t6)); } else if (box instanceof H.PlaceholderBox) { span = box.placeholder; _element_set.call$1(rootElement); t4 = $.$get$domRenderer(); t5 = H._createPlaceholderElement(span); t4.toString; rootElement.appendChild(t5); } else throw H.wrapException(P.UnimplementedError$("Unknown box type: " + box.get$runtimeType(box).toString$0(0))); } } return rootElement; }, getBoxesForPlaceholders$0: function() { return this.get$_layoutService().getBoxesForPlaceholders$0(); }, getBoxesForRange$4$boxHeightStyle$boxWidthStyle: function(start, end, boxHeightStyle, boxWidthStyle) { return this.get$_layoutService().getBoxesForRange$4(start, end, boxHeightStyle, boxWidthStyle); }, getBoxesForRange$3$boxHeightStyle: function(start, end, boxHeightStyle) { return this.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, C.BoxWidthStyle_0); }, getPositionForOffset$1: function(offset) { return this.get$_layoutService().getPositionForOffset$1(offset); }, getWordBoundary$1: function(_, position) { var text = this.plainText, t1 = position.offset; return new P.TextRange(H.WordBreaker__findBreakIndex(C._FindBreakDirection_m1, text, t1 + 1), H.WordBreaker__findBreakIndex(C._FindBreakDirection_1, text, t1)); }, getLineBoundary$1: function(position) { var t1, i, line, index = position.offset, lines = this.get$_layoutService().lines; for (t1 = lines.length - 1, i = 0; i < t1; ++i) { line = lines[i]; if (index >= line.startIndex && index < line.endIndex) break; } line = lines[i]; return new P.TextRange(line.startIndex, line.endIndex); }, $isEngineParagraph: 1, get$drawOnCanvas: function() { return this.drawOnCanvas; }, get$isLaidOut: function() { return this.isLaidOut; } }; H.CanvasParagraph__createDomElement__element_set.prototype = { call$1: function(t1) { return this._box_0._element0 = t1; }, $signature: 1186 }; H.CanvasParagraph__createDomElement__element_get.prototype = { call$0: function() { var t1 = this._box_0._element0; return t1 === $ ? H.throwExpression(H.LateError$localNI("element")) : t1; }, $signature: 1189 }; H.FlatTextSpan.prototype = {$isParagraphSpan: 1}; H.StyleNode.prototype = { resolveStyle$0: function() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _this = this, style = _this._cachedStyle; if (style == null) { t1 = _this.get$__engine$_color(_this); t2 = _this.get$_decoration(); t3 = _this.get$_decorationColor(); t4 = _this.get$_decorationStyle(); t5 = _this.get$_decorationThickness(); t6 = _this.get$_fontWeight(_this); t7 = _this.get$_fontStyle(_this); t8 = _this.get$_textBaseline(); t9 = _this.get$_fontFamily(_this); t10 = _this.get$_fontFamilyFallback(); t11 = _this.get$_fontFeatures(); t12 = _this.get$__engine$_fontSize(_this); t13 = _this.get$_letterSpacing(_this); t14 = _this.get$_wordSpacing(_this); t15 = _this.get$__engine$_height(_this); t16 = _this.get$_locale(); t14 = H.EngineTextStyle$only(_this.get$_background(_this), t1, t2, t3, t4, t5, t9, t10, t11, t12, t7, t6, _this.get$_foreground(), t15, t13, t16, _this.get$_shadows(), t8, t14); _this._cachedStyle = t14; return t14; } return style; } }; H.ChildStyleNode.prototype = { get$__engine$_color: function(_) { var t1 = this.style.__engine$_color; if (t1 == null) if (this.get$_foreground() == null) { t1 = this.parent; t1 = t1.get$__engine$_color(t1); } else t1 = null; return t1; }, get$_decoration: function() { var t1 = this.style._decoration; return t1 == null ? this.parent.get$_decoration() : t1; }, get$_decorationColor: function() { var t1 = this.style._decorationColor; return t1 == null ? this.parent.get$_decorationColor() : t1; }, get$_decorationStyle: function() { var t1 = this.style._decorationStyle; return t1 == null ? this.parent.get$_decorationStyle() : t1; }, get$_decorationThickness: function() { var t1 = this.style._decorationThickness; return t1 == null ? this.parent.get$_decorationThickness() : t1; }, get$_fontWeight: function(_) { var t1 = this.style._fontWeight; if (t1 == null) { t1 = this.parent; t1 = t1.get$_fontWeight(t1); } return t1; }, get$_fontStyle: function(_) { var t1 = this.style._fontStyle; if (t1 == null) { t1 = this.parent; t1 = t1.get$_fontStyle(t1); } return t1; }, get$_textBaseline: function() { var t1 = this.style._textBaseline; return t1 == null ? this.parent.get$_textBaseline() : t1; }, get$_fontFamilyFallback: function() { var t1 = this.style._fontFamilyFallback; return t1 == null ? this.parent.get$_fontFamilyFallback() : t1; }, get$_fontFeatures: function() { var t1 = this.style._fontFeatures; return t1 == null ? this.parent.get$_fontFeatures() : t1; }, get$__engine$_fontSize: function(_) { var t1 = this.style.__engine$_fontSize; if (t1 == null) { t1 = this.parent; t1 = t1.get$__engine$_fontSize(t1); } return t1; }, get$_letterSpacing: function(_) { var t1 = this.style._letterSpacing; if (t1 == null) { t1 = this.parent; t1 = t1.get$_letterSpacing(t1); } return t1; }, get$_wordSpacing: function(_) { var t1 = this.style._wordSpacing; if (t1 == null) { t1 = this.parent; t1 = t1.get$_wordSpacing(t1); } return t1; }, get$__engine$_height: function(_) { var t1 = this.style.__engine$_height; if (t1 == null) { t1 = this.parent; t1 = t1.get$__engine$_height(t1); } return t1; }, get$_locale: function() { var t1 = this.style._locale; return t1 == null ? this.parent.get$_locale() : t1; }, get$_background: function(_) { var t1 = this.style._background; if (t1 == null) { t1 = this.parent; t1 = t1.get$_background(t1); } return t1; }, get$_foreground: function() { var t1 = this.style._foreground; return t1 == null ? this.parent.get$_foreground() : t1; }, get$_shadows: function() { var t1 = this.style._shadows; return t1 == null ? this.parent.get$_shadows() : t1; }, get$_fontFamily: function(_) { var t1 = this.style; if (t1._isFontFamilyProvided) t1 = t1._fontFamily; else { t1 = this.parent; t1 = t1.get$_fontFamily(t1); } return t1; } }; H.RootStyleNode.prototype = { get$_decoration: function() { return null; }, get$_decorationColor: function() { return null; }, get$_decorationStyle: function() { return null; }, get$_decorationThickness: function() { return null; }, get$_fontWeight: function(_) { return this.paragraphStyle._fontWeight; }, get$_fontStyle: function(_) { return this.paragraphStyle._fontStyle; }, get$_textBaseline: function() { return null; }, get$_fontFamily: function(_) { var t1 = this.paragraphStyle._fontFamily; return t1 == null ? "sans-serif" : t1; }, get$_fontFamilyFallback: function() { return null; }, get$_fontFeatures: function() { return null; }, get$__engine$_fontSize: function(_) { var t1 = this.paragraphStyle.__engine$_fontSize; return t1 == null ? 14 : t1; }, get$_letterSpacing: function(_) { return null; }, get$_wordSpacing: function(_) { return null; }, get$__engine$_height: function(_) { return this.paragraphStyle.__engine$_height; }, get$_locale: function() { return this.paragraphStyle._locale; }, get$_background: function(_) { return null; }, get$_foreground: function() { return null; }, get$_shadows: function() { return null; }, get$__engine$_color: function() { return C.Color_4294901760; } }; H.CanvasParagraphBuilder.prototype = { get$_currentStyleNode: function() { var t1 = this._styleStack, t2 = t1.length; return t2 === 0 ? this._rootStyleNode : t1[t2 - 1]; }, get$placeholderScales: function() { return this._placeholderScales; }, pushStyle$1: function(_, style) { this._styleStack.push(new H.ChildStyleNode(this.get$_currentStyleNode(), type$.EngineTextStyle._as(style))); }, pop$0: function(_) { var t1 = this._styleStack; if (t1.length !== 0) t1.pop(); }, addText$1: function(_, text) { var t3, decoration, _this = this, style = _this.get$_currentStyleNode().resolveStyle$0(), t1 = _this._plainTextBuffer, t2 = t1._contents; t1 = t1._contents += H.S(text); t3 = _this._drawOnCanvas; if (t3) { decoration = style._decoration; if (decoration != null) { t3 = decoration._mask; t3 = 0 !== t3; } else t3 = false; if (t3) { _this._drawOnCanvas = false; t3 = false; } else t3 = true; } if (t3) if (style._fontFeatures != null && true) _this._drawOnCanvas = false; _this._spans.push(new H.FlatTextSpan(style, t2.length, t1.length)); }, build$0: function(_) { var _this = this, t1 = _this._plainTextBuffer._contents; return new H.CanvasParagraph(_this._spans, _this._paragraphStyle, t1.charCodeAt(0) == 0 ? t1 : t1, _this._drawOnCanvas); } }; H.FontCollection.prototype = { registerFonts$1: function(assetManager) { return this.registerFonts$body$FontCollection(assetManager); }, registerFonts$body$FontCollection: function(assetManager) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, exception, t1, fontManifest, t2, t3, t4, family, fontAssetItem, asset, descriptors, t5, t6, byteData, $async$exception; var $async$registerFonts$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start byteData = null; $async$handler = 4; $async$goto = 7; return P._asyncAwait(assetManager.load$1(0, "FontManifest.json"), $async$registerFonts$1); case 7: // returning from await. byteData = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (t1 instanceof H.AssetManagerException) { e = t1; if (e.httpStatus === 404) { $.$get$printWarning().call$1("Font manifest does not exist at `" + H.S(e.url) + "` \u2013 ignoring."); // goto return $async$goto = 1; break; } else throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally fontManifest = C.C_JsonCodec.decode$1(0, C.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(J.get$buffer$x(byteData)))); if (fontManifest == null) throw H.wrapException(P.AssertionError$(string$.There_w)); if ($.$get$supportsFontLoadingApi()) $async$self._assetFontManager = H.FontManager_FontManager(); else $async$self._assetFontManager = new H._PolyfillFontManager(H.setRuntimeTypeInfo([], type$.JSArray_Future_void)); for (t1 = J.cast$1$0$ax(fontManifest, type$.Map_String_dynamic), t1 = t1.get$iterator(t1), t2 = type$.String; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = J.getInterceptor$asx(t3); family = t4.$index(t3, "family"); for (t3 = J.get$iterator$ax(t4.$index(t3, "fonts")); t3.moveNext$0();) { fontAssetItem = t3.get$current(t3); t4 = J.getInterceptor$asx(fontAssetItem); asset = t4.$index(fontAssetItem, "asset"); descriptors = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); for (t5 = J.get$iterator$ax(t4.get$keys(fontAssetItem)); t5.moveNext$0();) { t6 = t5.get$current(t5); if (t6 !== "asset") descriptors.$indexSet(0, t6, H.S(t4.$index(fontAssetItem, t6))); } t4 = $async$self._assetFontManager; t4.toString; family.toString; t4.registerAsset$3(family, "url(" + H.S(assetManager.getAssetUrl$1(asset)) + ")", descriptors); } } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$registerFonts$1, $async$completer); }, ensureFontsLoaded$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$ensureFontsLoaded$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._assetFontManager; $async$goto = 2; return P._asyncAwait(t1 == null ? null : P.Future_wait(t1._fontLoadingFutures, type$.void), $async$ensureFontsLoaded$0); case 2: // returning from await. t1 = $async$self._testFontManager; $async$goto = 3; return P._asyncAwait(t1 == null ? null : P.Future_wait(t1._fontLoadingFutures, type$.void), $async$ensureFontsLoaded$0); case 3: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$ensureFontsLoaded$0, $async$completer); }, clear$0: function(_) { this._testFontManager = this._assetFontManager = null; if ($.$get$supportsFontsClearApi()) document.fonts.clear(); } }; H.FontManager.prototype = { registerAsset$3: function(family, asset, descriptors) { var t1 = $.$get$FontManager_startWithDigit()._nativeRegExp; if (typeof family != "string") H.throwExpression(H.argumentErrorValue(family)); if (t1.test(family) || $.$get$FontManager_notPunctuation().stringMatch$1(family) != family) this._loadFontFace$3("'" + H.S(family) + "'", asset, descriptors); this._loadFontFace$3(family, asset, descriptors); }, _loadFontFace$3: function(family, asset, descriptors) { var fontFace, e, exception; try { fontFace = W.FontFace_FontFace(family, asset, descriptors); this._fontLoadingFutures.push(P.promiseToFuture(fontFace.load(), type$.FontFace).then$1$2$onError(0, new H.FontManager__loadFontFace_closure(fontFace), new H.FontManager__loadFontFace_closure0(family), type$.void)); } catch (exception) { e = H.unwrapException(exception); $.$get$printWarning().call$1('Error while loading font family "' + H.S(family) + '":\n' + H.S(e)); } } }; H.FontManager__loadFontFace_closure.prototype = { call$1: function(_) { document.fonts.add(this.fontFace); }, $signature: 1221 }; H.FontManager__loadFontFace_closure0.prototype = { call$1: function(e) { $.$get$printWarning().call$1('Error while trying to load font family "' + H.S(this.family) + '":\n' + H.S(e)); }, $signature: 8 }; H._PolyfillFontManager.prototype = { registerAsset$3: function(family, asset, descriptors) { var fallbackFontName, t4, sansSerifWidth, fontStyleMap, t5, fontFaceDeclaration, fontLoadStyle, _s5_ = "style", _s6_ = "weight", t1 = {}, t2 = document, paragraph = t2.createElement("p"), t3 = paragraph.style; t3.position = "absolute"; t3 = paragraph.style; t3.visibility = "hidden"; t3 = paragraph.style; t3.fontSize = "72px"; t3 = H._browserEngine(); fallbackFontName = t3 === C.BrowserEngine_4 ? "Times New Roman" : "sans-serif"; t3 = paragraph.style; t3.fontFamily = fallbackFontName; if (descriptors.$index(0, _s5_) != null) { t3 = paragraph.style; t4 = descriptors.$index(0, _s5_); t3.toString; t3.fontStyle = t4 == null ? "" : t4; } if (descriptors.$index(0, _s6_) != null) { t3 = paragraph.style; t4 = descriptors.$index(0, _s6_); t3.toString; t3.fontWeight = t4 == null ? "" : t4; } paragraph.textContent = "giItT1WQy@!-/#"; t2.body.appendChild(paragraph); sansSerifWidth = C.JSNumber_methods.round$0(paragraph.offsetWidth); t3 = paragraph.style; t4 = "'" + H.S(family) + "', " + fallbackFontName; t3.fontFamily = t4; t3 = new P._Future($.Zone__current, type$._Future_void); t1.__fontLoadStart = $; t4 = type$.String; fontStyleMap = P.LinkedHashMap_LinkedHashMap$_empty(t4, type$.nullable_String); fontStyleMap.$indexSet(0, "font-family", "'" + H.S(family) + "'"); fontStyleMap.$indexSet(0, "src", asset); if (descriptors.$index(0, _s5_) != null) fontStyleMap.$indexSet(0, "font-style", descriptors.$index(0, _s5_)); if (descriptors.$index(0, _s6_) != null) fontStyleMap.$indexSet(0, "font-weight", descriptors.$index(0, _s6_)); t5 = fontStyleMap.get$keys(fontStyleMap); fontFaceDeclaration = H.MappedIterable_MappedIterable(t5, new H._PolyfillFontManager_registerAsset_closure(fontStyleMap), H._instanceType(t5)._eval$1("Iterable.E"), t4).join$1(0, " "); fontLoadStyle = t2.createElement("style"); fontLoadStyle.type = "text/css"; C.StyleElement_methods.setInnerHtml$1(fontLoadStyle, "@font-face { " + fontFaceDeclaration + " }"); t2.head.appendChild(fontLoadStyle); if (C.JSString_methods.contains$1(family.toLowerCase(), "icon")) { C.ParagraphElement_methods.remove$0(paragraph); return; } new H._PolyfillFontManager_registerAsset___fontLoadStart_set(t1).call$1(new P.DateTime(Date.now(), false)); new H._PolyfillFontManager_registerAsset__watchWidth(paragraph, sansSerifWidth, new P._AsyncCompleter(t3, type$._AsyncCompleter_void), new H._PolyfillFontManager_registerAsset___fontLoadStart_get(t1), family).call$0(); this._fontLoadingFutures.push(t3); } }; H._PolyfillFontManager_registerAsset___fontLoadStart_set.prototype = { call$1: function(t1) { return this._box_0.__fontLoadStart = t1; }, $signature: 1224 }; H._PolyfillFontManager_registerAsset___fontLoadStart_get.prototype = { call$0: function() { var t1 = this._box_0.__fontLoadStart; return t1 === $ ? H.throwExpression(H.LateError$localNI("_fontLoadStart")) : t1; }, $signature: 421 }; H._PolyfillFontManager_registerAsset__watchWidth.prototype = { call$0: function() { var _this = this, t1 = _this.paragraph; if (C.JSNumber_methods.round$0(t1.offsetWidth) !== _this.sansSerifWidth) { C.ParagraphElement_methods.remove$0(t1); _this.completer.complete$0(0); } else if (P.Duration$(0, 0, 0, Date.now() - _this.__fontLoadStart_get.call$0()._value, 0, 0)._duration > 2000000) { _this.completer.complete$0(0); throw H.wrapException(P.Exception_Exception("Timed out trying to load font: " + H.S(_this.family))); } else P.Timer_Timer(C.Duration_50000, _this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H._PolyfillFontManager_registerAsset_closure.prototype = { call$1: function($name) { return H.S($name) + ": " + H.S(this.fontStyleMap.$index(0, $name)) + ";"; }, $signature: 101 }; H.TextLayoutService.prototype = { performLayout$1: function(constraints) { var t4, spanometer, currentLine, t5, spanIndex, span, t6, nextBreak, additionalWidth, t7, t8, _i, line, longestLineWidth, breakToNextLine, widthOfLastSegment, _this = this, t1 = _this.paragraph, t2 = t1.spans, spanCount = t2.length, t3 = _this.width = constraints.width; _this.height = 0; _this.longestLine = null; _this.maxIntrinsicWidth = _this.minIntrinsicWidth = 0; _this.didExceedMaxLines = false; t4 = _this.lines; C.JSArray_methods.set$length(t4, 0); if (spanCount === 0) return; spanometer = new H.Spanometer(t1, _this.context); currentLine = H.LineBuilder$_(t1, spanometer, 0, 0, t3, new H.LineBreakResult(0, 0, 0, C.LineBreakType_1)); for (t5 = t1.paragraphStyle, spanIndex = 0; true;) { if (spanIndex === spanCount) { if (currentLine._segments.length !== 0 || currentLine.end.type !== C.LineBreakType_3) { currentLine.extendToEndOfText$0(); t4.push(currentLine.build$0(0)); } break; } span = t2[spanIndex]; spanometer.set$currentSpan(span); t6 = span.end; nextBreak = H.nextLineBreak(currentLine.paragraph.plainText, currentLine.end.index, t6); additionalWidth = currentLine.getAdditionalWidthTo$1(nextBreak); if (currentLine.width + additionalWidth <= t3) { currentLine.extendTo$1(nextBreak); if (nextBreak.type === C.LineBreakType_2) { t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } } else { t7 = t5._ellipsis; t8 = t7 != null; if ((t8 && t5._maxLines == null || t4.length + 1 === t5._maxLines) && t8) { currentLine.forceBreak$3$allowEmpty$ellipsis(nextBreak, true, t7); t4.push(currentLine.build$1$ellipsis(0, t7)); break; } else if (currentLine._segments.length === 0) { currentLine.forceBreak$2$allowEmpty(nextBreak, false); t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } else { t4.push(currentLine.build$0(0)); currentLine = currentLine.nextLine$0(); } } if (currentLine.end.index >= t6) { currentLine.createBox$0(); ++spanIndex; } if (t4.length === t5._maxLines) break; } for (t5 = t4.length, _i = 0; _i < t5; ++_i) { line = t4[_i]; _this.height = _this.height + line.height; if (_this.alphabeticBaseline === -1) { t6 = line.baseline; _this.alphabeticBaseline = t6; _this.ideographicBaseline = t6 * 1.1662499904632568; } t6 = _this.longestLine; longestLineWidth = t6 == null ? null : t6.width; if (longestLineWidth == null) longestLineWidth = 0; if (longestLineWidth < line.width) _this.longestLine = line; } currentLine = H.LineBuilder$_(t1, spanometer, 0, 0, t3, new H.LineBreakResult(0, 0, 0, C.LineBreakType_1)); for (spanIndex = 0; spanIndex < spanCount;) { span = t2[spanIndex]; spanometer.set$currentSpan(span); t1 = span.end; nextBreak = H.nextLineBreak(currentLine.paragraph.plainText, currentLine.end.index, t1); currentLine.extendTo$1(nextBreak); breakToNextLine = nextBreak.type === C.LineBreakType_2 && true; if (currentLine.end.index >= t1) ++spanIndex; widthOfLastSegment = C.JSArray_methods.get$last(currentLine._segments).width; if (_this.minIntrinsicWidth < widthOfLastSegment) _this.minIntrinsicWidth = widthOfLastSegment; t1 = _this.maxIntrinsicWidth; t3 = currentLine.widthIncludingSpace; if (t1 < t3) _this.maxIntrinsicWidth = t3; if (breakToNextLine) currentLine = currentLine.nextLine$0(); } }, getBoxesForPlaceholders$0: function() { var t1, t2, _i, line, t3, t4, t5, $top, lineTop, t6, t7, _i0, box, t8, t9, t10, top0, boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { line = t1[_i]; for (t3 = line.boxes, t4 = t3.length, t5 = line.left, $top = line.baseline, lineTop = $top - line.ascent, t6 = line.height, t7 = lineTop + t6, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i0) { box = t3[_i0]; if (box instanceof H.PlaceholderBox) { t8 = box.left; t9 = box.placeholder; t10 = C.JSNumber_methods.$add(t8, t9.get$width(t9)); switch (t9.get$alignment()) { case C.PlaceholderAlignment_3: top0 = lineTop; break; case C.PlaceholderAlignment_5: top0 = lineTop + C.JSNumber_methods.$sub(t6, t9.get$height(t9)) / 2; break; case C.PlaceholderAlignment_4: top0 = C.JSNumber_methods.$sub(t7, t9.get$height(t9)); break; case C.PlaceholderAlignment_1: top0 = C.JSNumber_methods.$sub($top, t9.get$height(t9)); break; case C.PlaceholderAlignment_2: top0 = $top; break; case C.PlaceholderAlignment_0: top0 = C.JSNumber_methods.$sub($top, t9.get$baselineOffset()); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); top0 = null; } boxes.push(new P.TextBox(t5 + t8, top0, t5 + t10, C.JSNumber_methods.$add(top0, t9.get$height(t9)), box.direction)); } } } return boxes; }, getBoxesForRange$4: function(start, end, boxHeightStyle, boxWidthStyle) { var $length, boxes, t1, t2, _i, line, t3, t4, _i0, box; if (start >= end || start < 0 || end < 0) return H.setRuntimeTypeInfo([], type$.JSArray_TextBox); $length = this.paragraph.plainText.length; if (start > $length || end > $length) return H.setRuntimeTypeInfo([], type$.JSArray_TextBox); boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { line = t1[_i]; if (start < line.endIndex && line.startIndex < end) for (t3 = line.boxes, t4 = t3.length, _i0 = 0; _i0 < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i0) { box = t3[_i0]; if (box instanceof H.SpanBox && start < box.end.index && box.start.index < end) boxes.push(box.intersect$3(line, start, end)); } } return boxes; }, getPositionForOffset$1: function(offset) { var dx, _i, box, line = this._findLineForY$1(offset._dy), t1 = offset._dx, t2 = line.left; if (t1 <= t2) return new P.TextPosition(line.startIndex, C.TextAffinity_1); if (t1 >= t2 + line.widthWithTrailingSpaces) return new P.TextPosition(line.endIndexWithoutNewlines, C.TextAffinity_0); dx = t1 - t2; for (t1 = line.boxes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { box = t1[_i]; if (box.get$left(box) <= dx && dx <= box.get$right(box)) return box.getPositionForX$1(dx); } return new P.TextPosition(line.startIndex, C.TextAffinity_1); }, _findLineForY$1: function(y) { var t1, t2, _i, line, t3; for (t1 = this.lines, t2 = t1.length, _i = 0; _i < t2; ++_i) { line = t1[_i]; t3 = line.height; if (y <= t3) return line; y -= t3; } return C.JSArray_methods.get$last(t1); }, set$width: function(receiver, val) { return this.width = val; }, set$height: function(receiver, val) { return this.height = val; } }; H.RangeBox.prototype = {}; H.PlaceholderBox.prototype = {}; H.SpanBox.prototype = { get$right: function(_) { return this.left + this.width; }, intersect$3: function(line, start, end) { var left0, t2, right, _this = this, $top = line.baseline - _this.baseline, t1 = _this.start.index, left = _this.left; if (start <= t1) left0 = left; else { t2 = _this.spanometer; t2.set$currentSpan(_this.span); left0 = left + t2._measure$2(t1, start); } t1 = _this.end.indexWithoutTrailingNewlines; right = left + _this.width; if (!(end >= t1)) { t2 = _this.spanometer; t2.set$currentSpan(_this.span); right -= t2._measure$2(end, t1); } t1 = line.left; return new P.TextBox(left0 + t1, $top, right + t1, $top + _this.height, _this.direction); }, getPositionForX$1: function(x) { var startIndex, endIndex, cutoff, t2, _this = this, t1 = _this.spanometer; t1.set$currentSpan(_this.span); x -= _this.left; startIndex = _this.start.index; endIndex = _this.end.indexWithoutTrailingNewlines; cutoff = t1.forceBreak$4$allowEmpty$availableWidth(startIndex, endIndex, true, x); if (cutoff === endIndex) return new P.TextPosition(cutoff, C.TextAffinity_0); t2 = cutoff + 1; if (x - t1._measure$2(startIndex, cutoff) < t1._measure$2(startIndex, t2) - x) return new P.TextPosition(cutoff, C.TextAffinity_1); else return new P.TextPosition(t2, C.TextAffinity_0); }, get$end: function(receiver) { return this.end; }, get$left: function(receiver) { return this.left; } }; H.LineSegment.prototype = {}; H.LineBuilder.prototype = { get$isEmpty: function(_) { return this._segments.length === 0; }, get$alignOffset: function() { var textAlign, emptySpace = this.maxWidth - this.width, t1 = this.paragraph.paragraphStyle, textDirection = t1._textDirection; if (textDirection == null) textDirection = C.TextDirection_1; textAlign = t1._textAlign; switch (textAlign == null ? C.TextAlign_4 : textAlign) { case C.TextAlign_2: return emptySpace / 2; case C.TextAlign_1: return emptySpace; case C.TextAlign_4: return textDirection === C.TextDirection_0 ? emptySpace : 0; case C.TextAlign_5: return textDirection === C.TextDirection_0 ? 0 : emptySpace; default: return 0; } }, getAdditionalWidthTo$1: function(newEnd) { var _this = this, t1 = _this.end.index, t2 = newEnd.indexWithoutTrailingSpaces; if (t1 === t2) return 0; return _this.widthIncludingSpace - _this.width + _this.spanometer._measure$2(t1, t2); }, get$_isLastBoxAPlaceholder: function() { var t1 = this._boxes; if (t1.length === 0) return false; return C.JSArray_methods.get$last(t1) instanceof H.PlaceholderBox; }, extendTo$1: function(newEnd) { var _this = this, t1 = _this.ascent, t2 = _this.spanometer, t3 = t2._currentRuler; _this.ascent = Math.max(t1, H.checkNum(t3.get$alphabeticBaseline(t3))); t3 = _this.descent; t1 = t2._currentRuler; t1 = t1.get$height(t1); t2 = t2._currentRuler; _this.descent = Math.max(t3, t1 - t2.get$alphabeticBaseline(t2)); _this._addSegment$1(_this._createSegment$1(newEnd)); }, extendToEndOfText$0: function() { var t1, endOfText, t2, t3, _this = this; if (_this.end.type === C.LineBreakType_3) return; t1 = _this.paragraph.plainText.length; endOfText = new H.LineBreakResult(t1, t1, t1, C.LineBreakType_3); t1 = _this.spanometer; if (t1._currentSpan != null) { t2 = _this.ascent; t3 = t1._currentRuler; _this.ascent = Math.max(t2, H.checkNum(t3.get$alphabeticBaseline(t3))); t3 = _this.descent; t2 = t1._currentRuler; t2 = t2.get$height(t2); t1 = t1._currentRuler; _this.descent = Math.max(t3, t2 - t1.get$alphabeticBaseline(t1)); _this._addSegment$1(_this._createSegment$1(endOfText)); } else _this.end = endOfText; }, _createSegment$1: function(segmentEnd) { var t3, segmentStart = this.end, t1 = this.spanometer, t2 = t1._currentSpan; t2.toString; t3 = segmentStart.index; return new H.LineSegment(t2, segmentStart, segmentEnd, t1._measure$2(t3, segmentEnd.indexWithoutTrailingSpaces), t1._measure$2(t3, segmentEnd.indexWithoutTrailingNewlines)); }, _addSegment$1: function(segment) { var t1, t2, _this = this; _this._segments.push(segment); t1 = segment.width; if (t1 !== 0) { t2 = _this.width; _this.width = t2 + (_this.widthIncludingSpace - t2 + t1); } _this.widthIncludingSpace = _this.widthIncludingSpace + segment.widthIncludingSpace; _this.end = segment.end; }, _popSegment$0: function() { var t2, i, widthOfTrailingSpace, _this = this, t1 = _this._segments, poppedSegment = t1.pop(); if (t1.length === 0) { _this.widthIncludingSpace = _this.width = 0; _this.end = _this.start; } else { _this.widthIncludingSpace = _this.widthIncludingSpace - poppedSegment.widthIncludingSpace; _this.end = C.JSArray_methods.get$last(t1).end; t2 = poppedSegment.width; if (t2 !== 0) { _this.width -= t2; i = t1.length - 1; widthOfTrailingSpace = 0; while (true) { t2 = i >= 0; if (!(t2 && t1[i].width === 0)) break; widthOfTrailingSpace += t1[i].widthIncludingSpace; --i; } if (t2) { t1 = t1[i]; widthOfTrailingSpace += t1.widthIncludingSpace - t1.width; } _this.width -= widthOfTrailingSpace; } } return poppedSegment; }, forceBreak$3$allowEmpty$ellipsis: function(nextBreak, allowEmpty, ellipsis) { var t1, t2, breakingPoint, availableWidth, segmentToBreak, _this = this; if (ellipsis == null) { t1 = _this.widthIncludingSpace; t2 = nextBreak.indexWithoutTrailingSpaces; breakingPoint = _this.spanometer.forceBreak$4$allowEmpty$availableWidth(_this.end.index, t2, allowEmpty, _this.maxWidth - t1); if (breakingPoint === t2) _this.extendTo$1(nextBreak); else _this.extendTo$1(new H.LineBreakResult(breakingPoint, breakingPoint, breakingPoint, C.LineBreakType_1)); return; } t1 = _this.spanometer; availableWidth = _this.maxWidth - H._measureSubstring(t1.context, ellipsis, 0, ellipsis.length, null); segmentToBreak = _this._createSegment$1(nextBreak); t2 = _this._segments; while (true) { if (!(t2.length !== 0 && _this.widthIncludingSpace > availableWidth)) break; segmentToBreak = _this._popSegment$0(); } t1.set$currentSpan(segmentToBreak.span); breakingPoint = t1.forceBreak$4$allowEmpty$availableWidth(segmentToBreak.start.index, segmentToBreak.end.index, allowEmpty, availableWidth - _this.widthIncludingSpace); _this.extendTo$1(new H.LineBreakResult(breakingPoint, breakingPoint, breakingPoint, C.LineBreakType_1)); t1 = _this._boxes; while (true) { if (t1.length > 0) { t2 = C.JSArray_methods.get$last(t1); t2 = t2.get$end(t2).index > breakingPoint; } else t2 = false; if (!t2) break; t1.pop(); } }, forceBreak$2$allowEmpty: function(nextBreak, allowEmpty) { return this.forceBreak$3$allowEmpty$ellipsis(nextBreak, allowEmpty, null); }, get$_boxStart: function() { var t1 = this._boxes; if (t1.length === 0) return this.start; t1 = C.JSArray_methods.get$last(t1); return t1.get$end(t1); }, get$_boxLeft: function() { var t1 = this._boxes; if (t1.length === 0) return 0; t1 = C.JSArray_methods.get$last(t1); return t1.get$right(t1); }, createBox$0: function() { var t2, t3, t4, t5, t6, t7, _this = this, boxStart = _this.get$_boxStart(), boxEnd = _this.end, t1 = boxStart.index; if (t1 === boxEnd.index) return; t2 = _this.spanometer; t3 = _this.get$_boxLeft(); t4 = _this.paragraph.paragraphStyle._textDirection; if (t4 == null) t4 = C.TextDirection_1; t5 = t2._currentSpan; t5.toString; t6 = t2._currentRuler; t6 = t6.get$height(t6); t7 = t2._currentRuler; t7 = t7.get$alphabeticBaseline(t7); _this._boxes.push(new H.SpanBox(t2, t5, boxStart, boxEnd, t3, t2._measure$2(t1, boxEnd.indexWithoutTrailingNewlines), t6, t7, t4)); }, build$1$ellipsis: function(_, ellipsis) { var ellipsisWidth, t1, t2, endIndexWithoutNewlines, hardBreak, t3, t4, t5, t6, t7, _this = this; _this.createBox$0(); ellipsisWidth = ellipsis == null ? 0 : H._measureSubstring(_this.spanometer.context, ellipsis, 0, ellipsis.length, null); t1 = _this.start.index; t2 = _this.end; endIndexWithoutNewlines = Math.max(t1, t2.indexWithoutTrailingNewlines); if (t2.type !== C.LineBreakType_3 && _this.get$_isLastBoxAPlaceholder()) hardBreak = false; else { t2 = _this.end.type; hardBreak = t2 === C.LineBreakType_2 || t2 === C.LineBreakType_3; } t2 = _this.end; t3 = _this.width; t4 = _this.widthIncludingSpace; t5 = _this.get$alignOffset(); t6 = _this.ascent; t7 = _this.descent; return new H.EngineLineMetrics(null, ellipsis, t1, t2.index, endIndexWithoutNewlines, _this._boxes, hardBreak, t6, t7, t6 + t7, t3 + ellipsisWidth, t4 + ellipsisWidth, t5, _this.accumulatedHeight + t6, _this.lineNumber); }, build$0: function($receiver) { return this.build$1$ellipsis($receiver, null); }, nextLine$0: function() { var _this = this, t1 = _this.end; return H.LineBuilder$_(_this.paragraph, _this.spanometer, _this.accumulatedHeight + (_this.ascent + _this.descent), _this.lineNumber + 1, _this.maxWidth, t1); }, set$width: function(receiver, val) { return this.width = val; } }; H.Spanometer.prototype = { set$currentSpan: function(span) { var t1, heightStyle, t2, t3, ruler, cssFontString, _this = this; if (span == _this._currentSpan) return; _this._currentSpan = span; if (span == null) { _this._currentRuler = null; return; } t1 = span.style; heightStyle = t1.__EngineTextStyle_heightStyle; if (heightStyle === $) { t2 = t1.get$_effectiveFontFamily(); t3 = t1.__engine$_fontSize; if (t3 == null) t3 = 14; t3 = new H.TextHeightStyle(t2, t3, t1.__engine$_height, null); if (t1.__EngineTextStyle_heightStyle === $) { t1.__EngineTextStyle_heightStyle = t3; heightStyle = t3; } else { t2 = H.throwExpression(H.LateError$fieldADI("heightStyle")); heightStyle = t2; } } ruler = $.Spanometer__rulers.$index(0, heightStyle); if (ruler == null) { ruler = H.TextHeightRuler$(heightStyle, $.$get$Spanometer__rulerHost()); $.Spanometer__rulers.$indexSet(0, heightStyle, ruler); } _this._currentRuler = ruler; cssFontString = t1.get$cssFontString(); if (_this._cssFontString !== cssFontString) { _this._cssFontString = cssFontString; _this.context.font = cssFontString; } }, forceBreak$4$allowEmpty$availableWidth: function(start, end, allowEmpty, availableWidth) { var high, low, mid, width; this._currentSpan.toString; if (availableWidth <= 0) return allowEmpty ? start : start + 1; high = end; low = start; do { mid = C.JSInt_methods._tdivFast$1(low + high, 2); width = this._measure$2(start, mid); if (width < availableWidth) low = mid; else { low = width > availableWidth ? low : mid; high = mid; } } while (high - low > 1); return low === start && !allowEmpty ? low + 1 : low; }, _measure$2: function(start, end) { return H._measureSubstring(this.context, this.paragraph.plainText, start, end, this._currentSpan.style._letterSpacing); } }; H.LineCharProperty.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.LineBreakType.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.LineBreakResult.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.index, _this.indexWithoutTrailingNewlines, _this.indexWithoutTrailingSpaces, _this.type, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof H.LineBreakResult && other.index === _this.index && other.indexWithoutTrailingNewlines === _this.indexWithoutTrailingNewlines && other.indexWithoutTrailingSpaces === _this.indexWithoutTrailingSpaces && other.type === _this.type; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.RulerHost.prototype = { RulerHost$0: function() { var t1 = this._rulerHost, t2 = t1.style; t2.position = "fixed"; t2.visibility = "hidden"; t2.overflow = "hidden"; t2.top = "0"; t2.left = "0"; t2.width = "0"; t2.height = "0"; document.body.appendChild(t1); $._hotRestartListeners.push(this.get$dispose(this)); }, dispose$0: function(_) { J.remove$0$ax(this._rulerHost); } }; H.RulerManager.prototype = { _scheduleRulerCacheCleanup$0: function() { if (!this._rulerCacheCleanupScheduled) { this._rulerCacheCleanupScheduled = true; P.scheduleMicrotask(new H.RulerManager__scheduleRulerCacheCleanup_closure(this)); } }, _evictAllRulers$0: function() { this._rulers.forEach$1(0, new H.RulerManager__evictAllRulers_closure()); this._rulers = P.LinkedHashMap_LinkedHashMap$_empty(type$.ParagraphGeometricStyle, type$.ParagraphRuler); }, cleanUpRulerCache$0: function() { var t2, sortedByUsage, i, ruler, t3, _this = this, t1 = $.$get$window().get$physicalSize(); if (t1.get$isEmpty(t1)) { _this._evictAllRulers$0(); return; } t1 = _this._rulers; t2 = _this.rulerCacheCapacity; if (t1.get$length(t1) > t2) { t1 = _this._rulers; t1 = t1.get$values(t1); sortedByUsage = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")); C.JSArray_methods.sort$1(sortedByUsage, new H.RulerManager_cleanUpRulerCache_closure()); _this._rulers = P.LinkedHashMap_LinkedHashMap$_empty(type$.ParagraphGeometricStyle, type$.ParagraphRuler); for (i = 0; i < sortedByUsage.length; ++i) { ruler = sortedByUsage[i]; ruler._hitCount = 0; if (i < t2) _this._rulers.$indexSet(0, ruler.style, ruler); else { t1 = ruler._singleLineHost; t3 = t1.parentNode; if (t3 != null) t3.removeChild(t1); t1 = ruler._minIntrinsicHost; t3 = t1.parentNode; if (t3 != null) t3.removeChild(t1); t1 = ruler._constrainedHost; t3 = t1.parentNode; if (t3 != null) t3.removeChild(t1); t1 = ruler.get$_textHeightRuler(); t3 = t1.__TextHeightRuler__host; if (t3 === $) { t3 = t1._createHost$0(); if (t1.__TextHeightRuler__host === $) { t1.__TextHeightRuler__host = t3; t1 = t3; } else t1 = H.throwExpression(H.LateError$fieldADI("_host")); } else t1 = t3; t3 = t1.parentNode; if (t3 != null) t3.removeChild(t1); } } } }, findOrCreateRuler$1: function(style) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, elementStyle, _this = this, _s6_ = "hidden", _s8_ = "absolute", _s1_ = "0", _s4_ = "flex", _s14_ = "flex-direction", _s8_0 = "baseline", _s11_ = "align-items", ruler = _this._rulers.$index(0, style); if (ruler == null) { t1 = _this._rulers; t2 = document; t3 = t2.createElement("div"); t4 = t2.createElement("p"); t5 = new H.TextDimensions(t4); t6 = t2.createElement("div"); t7 = t2.createElement("p"); t8 = new H.TextDimensions(t7); t9 = t2.createElement("div"); t2 = t2.createElement("p"); t10 = new H.TextDimensions(t2); ruler = new H.ParagraphRuler(style, _this, t3, t5, t6, t8, t9, t10, P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, type$.List_nullable_MeasurementResult), H.setRuntimeTypeInfo([], type$.JSArray_nullable_String)); t11 = t3.style; t11.visibility = _s6_; t11.position = _s8_; t11.top = _s1_; t11.left = _s1_; t11.display = _s4_; C.CssStyleDeclaration_methods._setPropertyHelper$3(t11, C.CssStyleDeclaration_methods._browserPropertyName$1(t11, _s14_), "row", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(t11, C.CssStyleDeclaration_methods._browserPropertyName$1(t11, _s11_), _s8_0, ""); t11.margin = _s1_; t11.border = _s1_; t11.padding = _s1_; t5.applyStyle$1(style); t11 = t4.style; t11.whiteSpace = "pre"; t3.appendChild(t4); t5._cachedBoundingClientRect = null; t4 = _this._rulerHost; t4.appendChild(t3); t3 = t6.style; t3.visibility = _s6_; t3.position = _s8_; t3.top = _s1_; t3.left = _s1_; t3.display = _s4_; C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s14_), "row", ""); t3.margin = _s1_; t3.border = _s1_; t3.padding = _s1_; t8.applyStyle$1(style); t3 = t7.style; t3.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s4_), _s1_, ""); t3.display = "inline"; t3.whiteSpace = "pre-line"; t6.appendChild(t7); t4.appendChild(t6); t3 = t9.style; t3.visibility = _s6_; t3.position = _s8_; t3.top = _s1_; t3.left = _s1_; t3.display = _s4_; C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s14_), "row", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(t3, C.CssStyleDeclaration_methods._browserPropertyName$1(t3, _s11_), _s8_0, ""); t3.margin = _s1_; t3.border = _s1_; t3.padding = _s1_; t10.applyStyle$1(style); elementStyle = t2.style; elementStyle.display = "block"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "overflow-wrap"), "break-word", ""); if (style.ellipsis != null) { elementStyle.overflow = _s6_; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "text-overflow"), "ellipsis", ""); } t9.appendChild(t2); t10._cachedBoundingClientRect = null; t4.appendChild(t9); t1.$indexSet(0, style, ruler); _this._scheduleRulerCacheCleanup$0(); } ++ruler._hitCount; return ruler; } }; H.RulerManager__scheduleRulerCacheCleanup_closure.prototype = { call$0: function() { var t1 = this.$this; t1._rulerCacheCleanupScheduled = false; t1.cleanUpRulerCache$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.RulerManager__evictAllRulers_closure.prototype = { call$2: function(style, ruler) { ruler.dispose$0(0); }, $signature: 1280 }; H.RulerManager_cleanUpRulerCache_closure.prototype = { call$2: function(a, b) { return b._hitCount - a._hitCount; }, $signature: 1358 }; H.TextMeasurementService.prototype = { measure$2: function(_, paragraph, constraints) { var ruler = $.TextMeasurementService_rulerManager.findOrCreateRuler$1(paragraph._geometricStyle), result = ruler.cacheLookup$2(paragraph, constraints); if (result != null) return result; result = this._doMeasure$3(paragraph, constraints, ruler); ruler.cacheMeasurement$2(paragraph, result); return result; } }; H.DomTextMeasurementService.prototype = { _doMeasure$3: function(paragraph, constraints, ruler) { var plainText, t1, t2, t3, width, t4, t5, alphabeticBaseline, height, maxIntrinsicWidth, alignOffset, lines, result, naturalHeight, maxLines, lineHeight, _null = null; ruler.__engine$_paragraph = paragraph; plainText = paragraph._plainText; ruler.measureAsSingleLine$0(); t1 = ruler.minIntrinsicDimensions; t2 = ruler.__engine$_paragraph; t2.toString; t1.updateText$2(t2, ruler.style); ruler.measureWithConstraints$1(constraints); t2 = plainText == null; t3 = t2 ? _null : C.JSString_methods.contains$1(plainText, "\n"); if (t3 !== true) { t3 = ruler.singleLineDimensions._readAndCacheMetrics$0().width; t3.toString; t3 = t3 <= constraints.width; } else t3 = false; width = constraints.width; t4 = ruler.singleLineDimensions; if (t3) { t1 = t1._readAndCacheMetrics$0().width; t1.toString; t3 = t4._readAndCacheMetrics$0().width; t3.toString; t5 = ruler.get$_textHeightRuler(); alphabeticBaseline = t5.get$alphabeticBaseline(t5); height = t4.get$height(t4); maxIntrinsicWidth = H.DomTextMeasurementService__applySubPixelRoundingHack(t1, t3); if (!t2) { alignOffset = H._calculateAlignOffsetForLine(maxIntrinsicWidth, width, paragraph); t2 = plainText.length; lines = H.setRuntimeTypeInfo([H.EngineLineMetrics$withText(plainText, t2, H._excludeTrailing(plainText, 0, t2, H._engine___newlinePredicate$closure()), true, alignOffset, 0, 0, maxIntrinsicWidth, maxIntrinsicWidth)], type$.JSArray_EngineLineMetrics); } else lines = _null; result = H.MeasurementResult$(width, alphabeticBaseline, height, alphabeticBaseline * 1.1662499904632568, true, height, lines, maxIntrinsicWidth, t1, height, ruler.measurePlaceholderBoxes$0(), paragraph._textAlign, paragraph._textDirection, width); } else { t1 = t1._readAndCacheMetrics$0().width; t1.toString; t4 = t4._readAndCacheMetrics$0().width; t4.toString; t2 = ruler.get$_textHeightRuler(); alphabeticBaseline = t2.get$alphabeticBaseline(t2); t2 = ruler.constrainedDimensions; naturalHeight = t2.get$height(t2); maxLines = paragraph._geometricStyle.maxLines; if (maxLines == null) { lineHeight = _null; height = naturalHeight; } else { t2 = ruler.get$_textHeightRuler(); lineHeight = t2.get$height(t2); height = Math.min(H.checkNum(naturalHeight), maxLines * lineHeight); } result = H.MeasurementResult$(width, alphabeticBaseline, height, alphabeticBaseline * 1.1662499904632568, false, lineHeight, _null, H.DomTextMeasurementService__applySubPixelRoundingHack(t1, t4), t1, naturalHeight, ruler.measurePlaceholderBoxes$0(), paragraph._textAlign, paragraph._textDirection, width); } ruler.didMeasure$0(); return result; }, measureSubstringWidth$3: function(paragraph, start, end) { var text, style = paragraph._geometricStyle, ruler = $.TextMeasurementService_rulerManager.findOrCreateRuler$1(style), t1 = paragraph._plainText; t1.toString; text = C.JSString_methods.substring$2(t1, start, end); ruler.__engine$_paragraph = new H.DomParagraph(type$.HtmlElement._as(paragraph._paragraphElement.cloneNode(true)), style, text, paragraph._paint, paragraph._textAlign, paragraph._textDirection, paragraph._background, paragraph.placeholderCount); ruler.measureAsSingleLine$0(); ruler.didMeasure$0(); t1 = ruler.singleLineDimensions._readAndCacheMetrics$0().width; t1.toString; return t1; }, getTextPositionForOffset$3: function(paragraph, constraints, offset) { var position, ruler = $.TextMeasurementService_rulerManager.findOrCreateRuler$1(paragraph._geometricStyle); ruler.__engine$_paragraph = paragraph; constraints.toString; position = ruler.hitTest$2(constraints, offset); ruler.didMeasure$0(); return new P.TextPosition(position, C.TextAffinity_1); }, get$isCanvas: function() { return false; } }; H.CanvasTextMeasurementService.prototype = { _doMeasure$3: function(paragraph, constraints, ruler) { var style, t2, t3, linesCalculator, maxIntrinsicCalculator, t4, reachedEndOfText, i, t5, t6, brk, chunkEnd, width, alphabeticBaseline, lineCount, lineHeight, naturalHeight, maxLines, height, t1 = paragraph._plainText; t1.toString; style = paragraph._geometricStyle; t2 = this._canvasContext; t2.font = style.get$cssFontString(); t3 = constraints.width; linesCalculator = new H.LinesCalculator(t2, paragraph, t3, H.setRuntimeTypeInfo([], type$.JSArray_EngineLineMetrics), C.LineBreakResult_Z8h, C.LineBreakResult_Z8h); maxIntrinsicCalculator = new H.MaxIntrinsicCalculator(t2, t1, style); for (t4 = style.letterSpacing, reachedEndOfText = false, i = 0, t5 = 0, t6 = 0; !reachedEndOfText; t6 = chunkEnd, i = t6) { brk = H.nextLineBreak(t1, i, null); linesCalculator.update$1(0, brk); chunkEnd = brk.index; width = H._measureSubstring(t2, t1, t6, brk.indexWithoutTrailingSpaces, t4); if (width > t5) t5 = width; maxIntrinsicCalculator.update$1(0, brk); if (brk.type === C.LineBreakType_3) reachedEndOfText = true; } t1 = ruler.get$_textHeightRuler(); alphabeticBaseline = t1.get$alphabeticBaseline(t1); t1 = linesCalculator.lines; lineCount = t1.length; t2 = ruler.get$_textHeightRuler(); lineHeight = t2.get$height(t2); naturalHeight = lineCount * lineHeight; maxLines = style.maxLines; height = maxLines == null ? naturalHeight : Math.min(lineCount, maxLines) * lineHeight; return H.MeasurementResult$(t3, alphabeticBaseline, height, alphabeticBaseline * 1.1662499904632568, lineCount === 1, lineHeight, t1, maxIntrinsicCalculator.value, t5, naturalHeight, H.setRuntimeTypeInfo([], type$.JSArray_TextBox), paragraph._textAlign, paragraph._textDirection, t3); }, measureSubstringWidth$3: function(paragraph, start, end) { var style, t2, t1 = paragraph._plainText; t1.toString; style = paragraph._geometricStyle; t2 = this._canvasContext; t2.font = style.get$cssFontString(); return H._measureSubstring(t2, t1, start, end, style.letterSpacing); }, getTextPositionForOffset$3: function(paragraph, constraints, offset) { return C.TextPosition_0_TextAffinity_1; }, get$isCanvas: function() { return true; } }; H.LinesCalculator.prototype = { update$1: function(_, brk) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, isLastLine, breakingPoint, widthOfResultingLine, alignOffset, _this = this, chunkEnd = brk.index, chunkEndWithoutNewlines = brk.indexWithoutTrailingNewlines, chunkEndWithoutSpace = brk.indexWithoutTrailingSpaces; for (t1 = _this.__engine$_paragraph, t2 = t1._geometricStyle, t3 = t2.ellipsis, t4 = t3 != null, t5 = _this._maxWidth, t6 = _this._canvasContext, t7 = t1._plainText, t8 = t2.letterSpacing, t2 = t2.maxLines, t9 = t2 == null, t10 = _this.lines; !_this._reachedMaxLines;) { t11 = _this._lastTakenBreak; t7.toString; if (H._measureSubstring(t6, t7, t11.index, chunkEndWithoutSpace, t8) <= t5) break; t11 = _this._lastBreak; t12 = _this._lastTakenBreak.index; isLastLine = t4 && t9 || t10.length + 1 === t2; _this._reachedMaxLines = isLastLine; if (isLastLine && t4) { t11 = _this._cachedEllipsisWidth; if (t11 == null) t11 = _this._cachedEllipsisWidth = C.JSNumber_methods.round$0(t6.measureText(t3).width * 100) / 100; breakingPoint = _this.forceBreakSubstring$3$end$maxWidth$start(chunkEndWithoutSpace, t5 - t11, _this._lastTakenBreak.index); t11 = H._measureSubstring(t6, t7, _this._lastTakenBreak.index, breakingPoint, t8); t12 = _this._cachedEllipsisWidth; widthOfResultingLine = t11 + (t12 == null ? _this._cachedEllipsisWidth = C.JSNumber_methods.round$0(t6.measureText(t3).width * 100) / 100 : t12); alignOffset = H._calculateAlignOffsetForLine(widthOfResultingLine, t5, t1); t11 = _this._lastTakenBreak.index; t10.push(new H.EngineLineMetrics(C.JSString_methods.substring$2(t7, t11, breakingPoint) + t3, null, t11, chunkEnd, chunkEndWithoutNewlines, null, false, 1 / 0, 1 / 0, 1 / 0, widthOfResultingLine, widthOfResultingLine, alignOffset, 1 / 0, t10.length)); } else if (t11.index === t12) { breakingPoint = _this.forceBreakSubstring$3$end$maxWidth$start(chunkEndWithoutSpace, t5, t12); if (breakingPoint === chunkEndWithoutSpace) break; _this._addLineBreak$1(new H.LineBreakResult(breakingPoint, breakingPoint, breakingPoint, C.LineBreakType_0)); } else _this._addLineBreak$1(t11); } if (_this._reachedMaxLines) return; t1 = brk.type; if (t1 === C.LineBreakType_2 || t1 === C.LineBreakType_3) _this._addLineBreak$1(brk); _this._lastBreak = brk; }, _addLineBreak$1: function(brk) { var t5, t6, _this = this, t1 = _this.lines, lineNumber = t1.length, lineWidth = _this.measureSubstring$2(_this._lastTakenBreak.index, brk.indexWithoutTrailingSpaces), t2 = brk.indexWithoutTrailingNewlines, lineWidthWithTrailingSpaces = _this.measureSubstring$2(_this._lastTakenBreak.index, t2), t3 = _this.__engine$_paragraph, alignOffset = H._calculateAlignOffsetForLine(lineWidth, _this._maxWidth, t3), t4 = t3._plainText; t4.toString; t5 = _this._lastTakenBreak.index; t4 = C.JSString_methods.substring$2(t4, t5, t2); t6 = brk.type; t6 = t6 === C.LineBreakType_2 || t6 === C.LineBreakType_3; t1.push(H.EngineLineMetrics$withText(t4, brk.index, t2, t6, alignOffset, lineNumber, t5, lineWidth, lineWidthWithTrailingSpaces)); _this._lastTakenBreak = _this._lastBreak = brk; if (t1.length === t3._geometricStyle.maxLines) _this._reachedMaxLines = true; }, measureSubstring$2: function(start, end) { var t1 = this.__engine$_paragraph, t2 = t1._plainText; t2.toString; return H._measureSubstring(this._canvasContext, t2, start, end, t1._geometricStyle.letterSpacing); }, forceBreakSubstring$3$end$maxWidth$start: function(end, maxWidth, start) { var mid, width, low = this.__engine$_paragraph._geometricStyle.ellipsis != null ? start : start + 1, high = end; do { mid = C.JSInt_methods._tdivFast$1(low + high, 2); width = this.measureSubstring$2(start, mid); if (width < maxWidth) low = mid; else { low = width > maxWidth ? low : mid; high = mid; } } while (high - low > 1); return low; } }; H.MaxIntrinsicCalculator.prototype = { update$1: function(_, brk) { var lineWidth, _this = this, t1 = brk.type; if (!(t1 === C.LineBreakType_2 || t1 === C.LineBreakType_3)) return; lineWidth = H._measureSubstring(_this._canvasContext, _this.__engine$_text, _this._lastHardLineEnd, brk.indexWithoutTrailingNewlines, _this._style.letterSpacing); if (lineWidth > _this.value) _this.value = lineWidth; _this._lastHardLineEnd = brk.index; }, get$value: function(receiver) { return this.value; } }; H.TextPaintService.prototype = { paint$2: function(canvas, offset) { var t1, _i, line, t2, t3, _i0, lines = this.paragraph.get$_layoutService().lines; for (t1 = lines.length, _i = 0; _i < lines.length; lines.length === t1 || (0, H.throwConcurrentModificationError)(lines), ++_i) { line = lines[_i]; for (t2 = line.boxes, t3 = t2.length, _i0 = 0; _i0 < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i0) this.__engine$_paintBox$4(canvas, offset, line, t2[_i0]); } }, __engine$_paintBox$4: function(canvas, offset, line, box) { var t1, background, t2, foreground, paint, t3, t4, t5, x, y, text, letterSpacing, len, charX, i, char, ctx, ellipsis; if (box instanceof H.SpanBox) { t1 = box.span.style; background = type$.nullable_SurfacePaint._as(t1._background); if (background != null) { t2 = box.intersect$3(line, box.start.index, box.end.index); t2 = new P.Rect(t2.left, t2.top, t2.right, t2.bottom).shift$1(offset); background._frozen = true; canvas.drawRect$2(0, t2, background._paintData); } foreground = t1._foreground; if (foreground != null) { type$.SurfacePaint._as(foreground); paint = foreground; } else { t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t3 = t1.__engine$_color; t3.toString; t2.set$color(0, t3); type$.SurfacePaint._as(t2); paint = t2; } canvas.setCssFont$1(t1.get$cssFontString()); t2 = paint._frozen = true; t3 = paint._paintData; t4 = canvas._canvasPool; t4.get$contextHandle().setUpPaint$2(t3, null); t3 = offset._dx + line.left; t5 = box.left; x = t3 + t5; y = offset._dy + line.baseline; text = C.JSString_methods.substring$2(this.paragraph.plainText, box.start.index, box.end.indexWithoutTrailingNewlines); letterSpacing = t1._letterSpacing; if (letterSpacing != null ? letterSpacing === 0 : t2) canvas.fillText$4$shadows(0, text, x, y, t1._shadows); else { len = text.length; for (t1 = t1._shadows, charX = x, i = 0; i < len; ++i) { char = text[i]; canvas.fillText$4$shadows(0, char, C.JSNumber_methods.roundToDouble$0(charX), y, t1); ctx = t4.__engine$_context; if (ctx == null) { t4._createCanvas$0(); t2 = t4.__engine$_context; t2.toString; ctx = t2; } t2 = ctx.measureText(char).width; t2.toString; charX += letterSpacing + t2; } } ellipsis = line.ellipsis; if (ellipsis != null) { t1 = line.boxes; t1.toString; t1 = box === C.JSArray_methods.get$last(t1); } else t1 = false; if (t1) canvas.fillText$3(0, ellipsis, t3 + (t5 + box.width), y); t4.get$contextHandle().tearDownPaint$0(); } } }; H.EngineLineMetrics.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.displayText, _this.startIndex, _this.endIndex, _this.hardBreak, _this.ascent, _this.descent, 1 / 0, _this.height, _this.width, _this.left, _this.baseline, _this.lineNumber, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof H.EngineLineMetrics) if (other.displayText == _this.displayText) if (other.startIndex === _this.startIndex) if (other.endIndex === _this.endIndex) if (other.hardBreak === _this.hardBreak) if (other.ascent === _this.ascent) if (other.descent === _this.descent) t1 = other.height === _this.height && other.width == _this.width && other.left === _this.left && other.baseline === _this.baseline && other.lineNumber === _this.lineNumber; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.DomParagraph.prototype = { get$_hasLineMetrics: function() { var t1 = this._measurementResult; return (t1 == null ? null : t1.lines) != null; }, get$width: function(_) { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.width; return t1 == null ? -1 : t1; }, get$height: function(_) { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.height; return t1 == null ? 0 : t1; }, get$_lineHeight: function(_) { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.lineHeight; return t1 == null ? 0 : t1; }, get$longestLine: function() { var t1, t2, maxWidth, _i, maxWidth0; if (this.get$_hasLineMetrics()) { for (t1 = this._measurementResult.lines, t2 = t1.length, maxWidth = 0, _i = 0; _i < t2; ++_i) { maxWidth0 = t1[_i].width; if (maxWidth < maxWidth0) maxWidth = maxWidth0; } return maxWidth; } return 0; }, get$minIntrinsicWidth: function() { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.minIntrinsicWidth; return t1 == null ? 0 : t1; }, get$maxIntrinsicWidth: function() { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.maxIntrinsicWidth; return t1 == null ? 0 : t1; }, get$alphabeticBaseline: function(_) { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.alphabeticBaseline; return t1 == null ? -1 : t1; }, get$ideographicBaseline: function(_) { var t1 = this._measurementResult; t1 = t1 == null ? null : t1.ideographicBaseline; return t1 == null ? -1 : t1; }, get$didExceedMaxLines: function(_) { return this._didExceedMaxLines; }, layout$1: function(_, constraints) { var t2, _this = this, t1 = constraints.width; t1.toString; t1 = Math.floor(t1); constraints = new P.ParagraphConstraints(t1); if (constraints.$eq(0, _this._lastUsedConstraints)) return; t2 = H.TextMeasurementService_forParagraph(_this).measure$2(0, _this, constraints); _this._measurementResult = t2; _this._lastUsedConstraints = constraints; if (_this._geometricStyle.maxLines != null) { t2 = t2.naturalHeight; if (t2 == null) t2 = 0; _this._didExceedMaxLines = t2 > _this.get$height(_this); } else _this._didExceedMaxLines = false; if (_this._measurementResult.isSingleLine) switch (_this._textAlign) { case C.TextAlign_2: _this._alignOffset = (t1 - _this.get$maxIntrinsicWidth()) / 2; break; case C.TextAlign_1: _this._alignOffset = t1 - _this.get$maxIntrinsicWidth(); break; case C.TextAlign_4: _this._alignOffset = _this._textDirection === C.TextDirection_0 ? t1 - _this.get$maxIntrinsicWidth() : 0; break; case C.TextAlign_5: _this._alignOffset = _this._textDirection === C.TextDirection_1 ? t1 - _this.get$maxIntrinsicWidth() : 0; break; default: _this._alignOffset = 0; break; } }, get$hasArbitraryPaint: function() { return this._geometricStyle.ellipsis != null; }, paint$2: function(canvas, offset) { var t1, t2, t3, t4, y, len, i, _this = this, background = _this._background; if (background != null) { t1 = offset._dx; t2 = offset._dy; t3 = _this.get$width(_this); t4 = _this.get$height(_this); background._frozen = true; canvas.drawRect$2(0, new P.Rect(t1, t2, t1 + t3, t2 + t4), background._paintData); } t1 = _this._measurementResult.lines; t1.toString; canvas.setCssFont$1(_this._geometricStyle.get$cssFontString()); t2 = _this._paint; t2._frozen = true; t2 = t2._paintData; t3 = canvas._canvasPool; t3.get$contextHandle().setUpPaint$2(t2, null); y = offset._dy + _this.get$alphabeticBaseline(_this); len = t1.length; for (t2 = offset._dx, i = 0; i < len; ++i) { _this._paintLine$4(canvas, t1[i], t2, y); t4 = _this._measurementResult; t4 = t4 == null ? null : t4.lineHeight; y += t4 == null ? 0 : t4; } t3.get$contextHandle().tearDownPaint$0(); }, _paintLine$4: function(canvas, line, x, y) { var letterSpacing, t1, t2, len, i, char, ctx, t3; x += line.left; letterSpacing = this._geometricStyle.letterSpacing; t1 = letterSpacing == null || letterSpacing === 0; t2 = line.displayText; if (t1) { t2.toString; canvas.fillText$3(0, t2, x, y); } else { len = t2.length; for (t1 = canvas._canvasPool, i = 0; i < len; ++i) { char = t2[i]; canvas.fillText$3(0, char, x, y); ctx = t1.__engine$_context; if (ctx == null) { t1._createCanvas$0(); t3 = t1.__engine$_context; t3.toString; ctx = t3; } t3 = ctx.measureText(char).width; t3.toString; x += letterSpacing + t3; } } }, toDomElement$0: function() { var style, _this = this, paragraphElement = type$.HtmlElement._as(_this._paragraphElement.cloneNode(true)), paragraphStyle = paragraphElement.style, t1 = H.S(_this.get$height(_this)) + "px"; paragraphStyle.height = t1; t1 = H.S(_this.get$width(_this)) + "px"; paragraphStyle.width = t1; paragraphStyle.position = "absolute"; paragraphStyle.whiteSpace = "pre-wrap"; C.CssStyleDeclaration_methods._setPropertyHelper$3(paragraphStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(paragraphStyle, "overflow-wrap"), "break-word", ""); paragraphStyle.overflow = "hidden"; style = _this._geometricStyle; if (style.ellipsis != null) { t1 = style.maxLines; t1 = t1 == null || t1 === 1; } else t1 = false; if (t1) { paragraphStyle.whiteSpace = "pre"; C.CssStyleDeclaration_methods._setPropertyHelper$3(paragraphStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(paragraphStyle, "text-overflow"), "ellipsis", ""); } return paragraphElement; }, getBoxesForPlaceholders$0: function() { return this._measurementResult.placeholderBoxes; }, get$drawOnCanvas: function() { var t1, _this = this; if (!_this.get$_hasLineMetrics()) return false; if (H.TextMeasurementService_forParagraph(_this).get$isCanvas() ? true : _this._geometricStyle.ellipsis == null) { t1 = _this._geometricStyle; t1 = t1.decoration == null && t1.wordSpacing == null && t1.shadows == null; } else t1 = false; return t1; }, get$isLaidOut: function() { return this._measurementResult != null; }, getBoxesForRange$4$boxHeightStyle$boxWidthStyle: function(start, end, boxHeightStyle, boxWidthStyle) { var t1, $length, t2, t3, startLine, endLine, boxes, i, t4, t5, widthBeforeBox, widthAfterBox, t6, t7, $top, _this = this; if (start == end || start < 0 || end < 0) return H.setRuntimeTypeInfo([], type$.JSArray_TextBox); t1 = _this._plainText; if (t1 == null) return H.setRuntimeTypeInfo([new P.TextBox(0, 0, 0, _this.get$_lineHeight(_this), _this._textDirection)], type$.JSArray_TextBox); $length = t1.length; if (start > $length || end > $length) return H.setRuntimeTypeInfo([], type$.JSArray_TextBox); if (!_this.get$_hasLineMetrics()) { H.TextMeasurementService_forParagraph(_this); t2 = _this._lastUsedConstraints; t2.toString; t3 = _this._alignOffset; return $.TextMeasurementService_rulerManager.findOrCreateRuler$1(_this._geometricStyle).measureBoxesForRange$6$alignOffset$end$start$textDirection(t1, t2, t3, end, start, _this._textDirection); } t1 = _this._measurementResult.lines; t1.toString; if (start >= C.JSArray_methods.get$last(t1).endIndex) return H.setRuntimeTypeInfo([], type$.JSArray_TextBox); startLine = _this._getLineForIndex$1(start); endLine = _this._getLineForIndex$1(end); if (end === endLine.startIndex) endLine = t1[endLine.lineNumber - 1]; boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (i = startLine.lineNumber, t2 = endLine.lineNumber, t3 = _this._textDirection; i <= t2; ++i) { t4 = t1[i]; t5 = t4.startIndex; widthBeforeBox = start <= t5 ? 0 : H.TextMeasurementService_forParagraph(_this).measureSubstringWidth$3(_this, t5, start); t5 = t4.endIndexWithoutNewlines; widthAfterBox = end >= t5 ? 0 : H.TextMeasurementService_forParagraph(_this).measureSubstringWidth$3(_this, end, t5); t5 = _this._measurementResult; t6 = t5 == null; t7 = t6 ? null : t5.lineHeight; if (t7 == null) t7 = 0; $top = t4.lineNumber * t7; t7 = t4.left; t5 = t6 ? null : t5.lineHeight; if (t5 == null) t5 = 0; boxes.push(new P.TextBox(t7 + widthBeforeBox, $top, t7 + t4.widthWithTrailingSpaces - widthAfterBox, $top + t5, t3)); } return boxes; }, getBoxesForRange$3$boxHeightStyle: function(start, end, boxHeightStyle) { return this.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(start, end, boxHeightStyle, C.BoxWidthStyle_0); }, getPositionForOffset$1: function(offset) { var t1, t2, lineNumber, lineMetrics, lineLeft, dx, instance, low, high, low0, current, width, _this = this, lines = _this._measurementResult.lines; if (!_this.get$_hasLineMetrics()) return H.TextMeasurementService_forParagraph(_this).getTextPositionForOffset$3(_this, _this._lastUsedConstraints, offset); t1 = offset._dy; if (t1 < 0) return new P.TextPosition(0, C.TextAffinity_1); t2 = _this._measurementResult.lineHeight; t2.toString; lineNumber = C.JSNumber_methods.$tdiv(t1, t2); if (lineNumber >= lines.length) return new P.TextPosition(_this._plainText.length, C.TextAffinity_0); lineMetrics = lines[lineNumber]; lineLeft = lineMetrics.left; t1 = offset._dx; if (t1 <= lineLeft) return new P.TextPosition(lineMetrics.startIndex, C.TextAffinity_1); if (t1 >= lineLeft + lineMetrics.width) return new P.TextPosition(lineMetrics.endIndexWithoutNewlines, C.TextAffinity_0); dx = t1 - lineLeft; instance = H.TextMeasurementService_forParagraph(_this); low = lineMetrics.startIndex; high = lineMetrics.endIndexWithoutNewlines; low0 = low; do { current = C.JSInt_methods._tdivFast$1(low0 + high, 2); width = instance.measureSubstringWidth$3(_this, low, current); if (width < dx) low0 = current; else { low0 = width > dx ? low0 : current; high = current; } } while (high - low0 > 1); if (low0 === high) return new P.TextPosition(high, C.TextAffinity_0); if (dx - instance.measureSubstringWidth$3(_this, low, low0) < instance.measureSubstringWidth$3(_this, low, high) - dx) return new P.TextPosition(low0, C.TextAffinity_1); else return new P.TextPosition(high, C.TextAffinity_0); }, getWordBoundary$1: function(_, position) { var t1, text = this._plainText; if (text == null) { t1 = position.offset; return new P.TextRange(t1, t1); } t1 = position.offset; return new P.TextRange(H.WordBreaker__findBreakIndex(C._FindBreakDirection_m1, text, t1 + 1), H.WordBreaker__findBreakIndex(C._FindBreakDirection_1, text, t1)); }, _getLineForIndex$1: function(index) { var t1, i, line, lines = this._measurementResult.lines; for (t1 = lines.length, i = 0; i < t1; ++i) { line = lines[i]; if (index >= line.startIndex && index < line.endIndex) return line; } return C.JSArray_methods.get$last(lines); }, getLineBoundary$1: function(position) { var line; if (this.get$_hasLineMetrics()) { line = this._getLineForIndex$1(position.offset); return new P.TextRange(line.startIndex, line.endIndex); } return C.TextRange_m1_m1; }, $isEngineParagraph: 1 }; H.EngineParagraphStyle.prototype = { get$_effectiveFontFamily: function() { var fontFamily = this._fontFamily; if (fontFamily == null || fontFamily.length === 0) return "sans-serif"; return fontFamily; }, get$_lineHeight: function(_) { var t2, t1 = this._strutStyle; if (t1 != null) { t2 = t1.__engine$_height; t2 = t2 == null || t2 === 0; } else t2 = true; if (t2) return this.__engine$_height; if (t1._forceStrutHeight === true) return t1.__engine$_height; t1 = t1.__engine$_height; t1.toString; t2 = this.__engine$_height; if (t2 == null) t2 = 0; return Math.max(t1, t2); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof H.EngineParagraphStyle && other._textAlign == _this._textAlign && other._textDirection == _this._textDirection && other._fontWeight == _this._fontWeight && other._fontStyle == _this._fontStyle && other._maxLines == _this._maxLines && other._fontFamily == _this._fontFamily && other.__engine$_fontSize == _this.__engine$_fontSize && other.__engine$_height == _this.__engine$_height && J.$eq$(other._textHeightBehavior, _this._textHeightBehavior) && other._ellipsis == _this._ellipsis && J.$eq$(other._locale, _this._locale); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this._textAlign, _this._textDirection, _this._fontWeight, _this._fontStyle, _this._maxLines, _this._fontFamily, _this.__engine$_fontSize, _this.__engine$_height, _this._textHeightBehavior, _this._ellipsis, _this._locale, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.EngineTextStyle.prototype = { get$_effectiveFontFamily: function() { var t1 = this._fontFamily; if (t1.length === 0) return "sans-serif"; return t1; }, get$cssFontString: function() { var _this = this, t1 = _this._cssFontString; return t1 == null ? _this._cssFontString = H._buildCssFontString(_this.get$_effectiveFontFamily(), _this.__engine$_fontSize, _this._fontStyle, _this._fontWeight) : t1; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof H.EngineTextStyle && J.$eq$(other.__engine$_color, _this.__engine$_color) && J.$eq$(other._decoration, _this._decoration) && J.$eq$(other._decorationColor, _this._decorationColor) && other._decorationStyle == _this._decorationStyle && other._fontWeight == _this._fontWeight && other._fontStyle == _this._fontStyle && other._textBaseline == _this._textBaseline && other._fontFamily === _this._fontFamily && other.__engine$_fontSize == _this.__engine$_fontSize && other._letterSpacing == _this._letterSpacing && other._wordSpacing == _this._wordSpacing && other.__engine$_height == _this.__engine$_height && J.$eq$(other._locale, _this._locale) && other._background == _this._background && other._foreground == _this._foreground && H._listEquals(other._shadows, _this._shadows) && H._listEquals(other._fontFamilyFallback, _this._fontFamilyFallback); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.__engine$_color, _this._decoration, _this._decorationColor, _this._decorationStyle, _this._decorationThickness, _this._fontWeight, _this._fontStyle, _this._textBaseline, _this._fontFamily, _this._fontFamilyFallback, _this.__engine$_fontSize, _this._letterSpacing, _this._wordSpacing, _this.__engine$_height, _this._locale, _this._background, _this._foreground, _this._shadows, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.EngineStrutStyle.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof H.EngineStrutStyle) if (other._fontFamily == _this._fontFamily) if (other.__engine$_fontSize == _this.__engine$_fontSize) if (other.__engine$_height == _this.__engine$_height) t1 = other._fontWeight == _this._fontWeight && other._fontStyle == _this._fontStyle && other._forceStrutHeight == _this._forceStrutHeight && H._listEquals(other._fontFamilyFallback, _this._fontFamilyFallback); else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this._fontFamily, _this._fontFamilyFallback, _this.__engine$_fontSize, _this.__engine$_height, _this._leading, null, _this._fontWeight, _this._fontStyle, _this._forceStrutHeight, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; H.DomParagraphBuilder.prototype = { pushStyle$1: function(_, style) { this._ops.push(style); }, get$placeholderScales: function() { return this._placeholderScales; }, pop$0: function(_) { this._ops.push($.$get$DomParagraphBuilder__paragraphBuilderPop()); }, addText$1: function(_, text) { this._ops.push(text); }, build$0: function(_) { var t1 = this._tryBuildPlainText$0(); return t1 == null ? this._buildRichText$0() : t1; }, _tryBuildPlainText$0: function() { var fontSize, textAlign, t2, textAlign0, textDirection, t3, textDirection0, locale, t4, t5, shadows, foreground, background, height, wordSpacing, letterSpacing, fontFeatures, fontFamilyFallback, textBaseline, decorationThickness, decorationStyle, decorationColor, decoration, color, i, style, color0, decoration0, decorationColor0, decorationStyle0, decorationThickness0, fontWeight0, fontStyle0, textBaseline0, fontFamilyFallback0, fontFeatures0, fontSize0, letterSpacing0, wordSpacing0, height0, locale0, background0, foreground0, shadows0, cumulativeStyle, paint, plainTextBuffer, plainText, t6, _this = this, _null = null, t1 = _this._paragraphStyle, fontWeight = t1._fontWeight, fontStyle = t1._fontStyle, fontFamily = t1._fontFamily; if (fontFamily == null) fontFamily = "sans-serif"; fontSize = t1.__engine$_fontSize; if (fontSize == null) fontSize = 14; textAlign = t1._textAlign; t2 = textAlign == null; textAlign0 = t2 ? C.TextAlign_4 : textAlign; textDirection = t1._textDirection; t3 = textDirection == null; textDirection0 = t3 ? C.TextDirection_1 : textDirection; locale = t1._locale; t4 = _this._ops; t5 = t4.length; shadows = _null; foreground = shadows; background = foreground; height = background; wordSpacing = height; letterSpacing = wordSpacing; fontFeatures = letterSpacing; fontFamilyFallback = fontFeatures; textBaseline = fontFamilyFallback; decorationThickness = textBaseline; decorationStyle = decorationThickness; decorationColor = decorationStyle; decoration = decorationColor; color = decoration; i = 0; while (true) { if (!(i < t5 && t4[i] instanceof H.EngineTextStyle)) break; style = t4[i]; color0 = style.__engine$_color; if (color0 != null) color = color0; decoration0 = style._decoration; if (decoration0 != null) decoration = decoration0; decorationColor0 = style._decorationColor; if (decorationColor0 != null) decorationColor = decorationColor0; decorationStyle0 = style._decorationStyle; if (decorationStyle0 != null) decorationStyle = decorationStyle0; decorationThickness0 = style._decorationThickness; if (decorationThickness0 != null) decorationThickness = decorationThickness0; fontWeight0 = style._fontWeight; if (fontWeight0 != null) fontWeight = fontWeight0; fontStyle0 = style._fontStyle; if (fontStyle0 != null) fontStyle = fontStyle0; textBaseline0 = style._textBaseline; if (textBaseline0 != null) textBaseline = textBaseline0; fontFamily = style._fontFamily; fontFamilyFallback0 = style._fontFamilyFallback; if (fontFamilyFallback0 != null) fontFamilyFallback = fontFamilyFallback0; fontFeatures0 = style._fontFeatures; if (fontFeatures0 != null) fontFeatures = fontFeatures0; fontSize0 = style.__engine$_fontSize; if (fontSize0 != null) fontSize = fontSize0; letterSpacing0 = style._letterSpacing; if (letterSpacing0 != null) letterSpacing = letterSpacing0; wordSpacing0 = style._wordSpacing; if (wordSpacing0 != null) wordSpacing = wordSpacing0; height0 = style.__engine$_height; if (height0 != null) height = height0; locale0 = style._locale; if (locale0 != null) locale = locale0; background0 = style._background; if (background0 != null) background = background0; foreground0 = style._foreground; if (foreground0 != null) foreground = foreground0; shadows0 = style._shadows; if (shadows0 != null) shadows = shadows0; ++i; } if (color == null && foreground == null) color = C.Color_4294901760; cumulativeStyle = H.EngineTextStyle$only(background, color, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, letterSpacing, locale, shadows, textBaseline, wordSpacing); if (foreground != null) paint = foreground; else { t5 = H._detectRenderer(); paint = t5 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); color.toString; paint.set$color(0, color); } if (i >= t4.length) { t4 = _this._paragraphElement; H._applyTextStyleToElement(t4, false, cumulativeStyle); t3 = t3 ? C.TextDirection_1 : textDirection; t2 = t2 ? C.TextAlign_4 : textAlign; t5 = type$.nullable_SurfacePaint; return new H.DomParagraph(t4, new H.ParagraphGeometricStyle(t3, t2, fontWeight, fontStyle, fontFamily, fontSize, height, t1._maxLines, letterSpacing, wordSpacing, H._textDecorationToCssString(decoration, decorationStyle), t1._ellipsis, shadows), "", t5._as(paint), textAlign0, textDirection0, t5._as(cumulativeStyle._background), 0); } if (typeof t4[i] != "string") return _null; plainTextBuffer = new P.StringBuffer(""); t5 = ""; while (true) { if (!(i < t4.length && typeof t4[i] == "string")) break; t5 += H.S(t4[i]); plainTextBuffer._contents = t5; ++i; } for (; i < t4.length; ++i) if (!J.$eq$(t4[i], $.$get$DomParagraphBuilder__paragraphBuilderPop())) return _null; t4 = plainTextBuffer._contents; plainText = t4.charCodeAt(0) == 0 ? t4 : t4; t4 = _this._paragraphElement; $.$get$domRenderer().toString; t4.toString; t4.appendChild(document.createTextNode(plainText)); H._applyTextStyleToElement(t4, false, cumulativeStyle); t5 = cumulativeStyle._background; if (t5 != null) H._applyTextBackgroundToElement(t4, cumulativeStyle); t3 = t3 ? C.TextDirection_1 : textDirection; t2 = t2 ? C.TextAlign_4 : textAlign; t6 = type$.nullable_SurfacePaint; return new H.DomParagraph(t4, new H.ParagraphGeometricStyle(t3, t2, fontWeight, fontStyle, fontFamily, fontSize, height, t1._maxLines, letterSpacing, wordSpacing, H._textDecorationToCssString(decoration, decorationStyle), t1._ellipsis, shadows), plainText, t6._as(paint), textAlign0, textDirection0, t6._as(t5), 0); }, _buildRichText$0: function() { var t1, t2, i, op, element, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, _s16_ = "background-color", elementStack = [], currentElement = new H.DomParagraphBuilder__buildRichText_currentElement(_this, elementStack); for (t1 = _this._ops, t2 = type$.SpanElement, i = 0; i < t1.length; ++i) { op = t1[i]; if (op instanceof H.EngineTextStyle) { $.$get$domRenderer().toString; element = document.createElement("span"); t2._as(element); H._applyTextStyleToElement(element, true, op); t3 = op._background; if (t3 != null) { t3 = H.colorToCssString(t3.get$color(t3)); if (t3 == null) element.style.removeProperty(_s16_); else { t4 = element.style; t4.toString; t5 = C.CssStyleDeclaration_methods._browserPropertyName$1(t4, _s16_); t4.setProperty(t5, t3, ""); } } currentElement.call$0().appendChild(element); elementStack.push(element); } else if (typeof op == "string") { t3 = $.$get$domRenderer(); t4 = currentElement.call$0(); t3.toString; t4.toString; t4.appendChild(document.createTextNode(op)); } else { t3 = $.$get$DomParagraphBuilder__paragraphBuilderPop(); if (op == null ? t3 == null : op === t3) elementStack.pop(); else throw H.wrapException(P.UnsupportedError$("Unsupported ParagraphBuilder operation: " + H.S(op))); } } t1 = _this._paragraphStyle; t2 = t1._textDirection; t3 = t2 == null; t4 = t3 ? C.TextDirection_1 : t2; t5 = t1._textAlign; t6 = t5 == null; t7 = t6 ? C.TextAlign_4 : t5; t8 = t1._fontFamily; t9 = t1._fontWeight; t10 = t1._fontStyle; t11 = t1.__engine$_fontSize; t12 = t1.__engine$_height; t13 = t1._maxLines; t1 = t1._ellipsis; if (t6) t5 = C.TextAlign_4; if (t3) t2 = C.TextDirection_1; return new H.DomParagraph(_this._paragraphElement, new H.ParagraphGeometricStyle(t4, t7, t9, t10, t8, t11, t12, t13, _null, _null, _null, t1, _null), _null, _null, t5, t2, _null, 0); } }; H.DomParagraphBuilder__buildRichText_currentElement.prototype = { call$0: function() { var t1 = this.elementStack; return t1.length !== 0 ? C.JSArray_methods.get$last(t1) : this.$this._paragraphElement; }, $signature: 9 }; H.ParagraphGeometricStyle.prototype = { get$effectiveFontFamily: function() { var localFontFamily = this.fontFamily; if (localFontFamily == null || localFontFamily.length === 0) return "sans-serif"; return localFontFamily; }, get$cssFontString: function() { var _this = this, t1 = _this._cssFontString; return t1 == null ? _this._cssFontString = H._buildCssFontString(_this.get$effectiveFontFamily(), _this.fontSize, _this.fontStyle, _this.fontWeight) : t1; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof H.ParagraphGeometricStyle && other.textDirection === _this.textDirection && other.textAlign === _this.textAlign && other.fontWeight == _this.fontWeight && other.fontStyle == _this.fontStyle && other.fontFamily == _this.fontFamily && other.fontSize == _this.fontSize && other.lineHeight == _this.lineHeight && other.maxLines == _this.maxLines && other.letterSpacing == _this.letterSpacing && other.wordSpacing == _this.wordSpacing && other.decoration == _this.decoration && other.ellipsis == _this.ellipsis; }, get$hashCode: function(_) { var _this = this, t1 = _this._cachedHashCode; return t1 == null ? _this._cachedHashCode = P.hashValues(_this.textDirection, _this.textAlign, _this.fontWeight, _this.fontStyle, _this.fontFamily, _this.fontSize, _this.lineHeight, _this.maxLines, _this.letterSpacing, _this.wordSpacing, _this.decoration, _this.ellipsis, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd) : t1; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.TextHeightStyle.prototype = { $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof H.TextHeightStyle && other.get$hashCode(other) == this.get$hashCode(this); }, get$hashCode: function(_) { var _this = this, t1 = _this.__TextHeightStyle_hashCode; if (t1 === $) { t1 = P.hashValues(_this.fontFamily, _this.fontSize, _this.height, P.hashList(_this.fontFeatures), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); if (_this.__TextHeightStyle_hashCode === $) _this.__TextHeightStyle_hashCode = t1; else t1 = H.throwExpression(H.LateError$fieldADI("hashCode")); } return t1; } }; H.TextDimensions.prototype = { updateText$2: function(from, style) { var plainText, t1, copy; this._cachedBoundingClientRect = null; plainText = from._plainText; if (plainText != null) { t1 = this.__engine$_element; if (C.JSString_methods.endsWith$1(plainText, "\n")) t1.textContent = plainText + "\n"; else t1.textContent = plainText; } else { copy = type$.Element._as(from._paragraphElement.cloneNode(true)); copy.toString; new W._ChildNodeListLazy(this.__engine$_element).addAll$1(0, new W._ChildNodeListLazy(copy)); } }, updateConstraintWidth$2: function(width, ellipsis) { var t1, t2; this._cachedBoundingClientRect = null; width.toString; if (width == 1 / 0 || width == -1 / 0) { t1 = this.__engine$_element.style; t1.width = ""; t1.whiteSpace = "pre"; } else { t1 = this.__engine$_element; if (ellipsis != null) { t1 = t1.style; t2 = H.S(width) + "px"; t1.width = t2; t1.whiteSpace = "pre"; } else { t1 = t1.style; t2 = H.S(width) + "px"; t1.width = t2; t1.whiteSpace = "pre-wrap"; } } }, applyStyle$1: function(style) { var decoration, _null = null, t1 = this.__engine$_element, elementStyle = t1.style, t2 = style.textDirection, t3 = H._textDirectionToCss(t2); elementStyle.toString; elementStyle.direction = t3 == null ? "" : t3; t2 = H.textAlignToCssValue(style.textAlign, t2); elementStyle.textAlign = t2; t2 = style.fontSize; t2 = t2 != null ? "" + C.JSNumber_methods.floor$0(t2) + "px" : _null; elementStyle.fontSize = t2 == null ? "" : t2; t2 = H.canonicalizeFontFamily(style.get$effectiveFontFamily()); elementStyle.fontFamily = t2 == null ? "" : t2; t2 = style.fontWeight; t2 = t2 != null ? H.fontWeightToCss(t2) : _null; elementStyle.fontWeight = t2 == null ? "" : t2; t2 = style.fontStyle; if (t2 != null) t2 = t2 === C.FontStyle_0 ? "normal" : "italic"; else t2 = _null; elementStyle.fontStyle = t2 == null ? "" : t2; t2 = style.letterSpacing; t2 = t2 != null ? H.S(t2) + "px" : _null; elementStyle.letterSpacing = t2 == null ? "" : t2; t2 = style.wordSpacing; t2 = t2 != null ? H.S(t2) + "px" : _null; elementStyle.wordSpacing = t2 == null ? "" : t2; decoration = style.decoration; t2 = H._browserEngine(); if (t2 === C.BrowserEngine_1) H.DomRenderer_setElementStyle(t1, "-webkit-text-decoration", decoration); else elementStyle.textDecoration = decoration == null ? "" : decoration; t1 = style.lineHeight; if (t1 != null) { t1 = C.JSNumber_methods.toString$0(t1); elementStyle.lineHeight = t1; } this._cachedBoundingClientRect = null; }, _readAndCacheMetrics$0: function() { var t1 = this._cachedBoundingClientRect; return t1 == null ? this._cachedBoundingClientRect = this.__engine$_element.getBoundingClientRect() : t1; }, get$height: function(_) { var t2, cachedHeight, t1 = this._readAndCacheMetrics$0().height; t1.toString; t2 = H._browserEngine(); if (t2 === C.BrowserEngine_2 && true) cachedHeight = t1 + 1; else cachedHeight = t1; return cachedHeight; } }; H.TextHeightRuler.prototype = { get$__engine$_host: function() { var host, t2, fontFamily, fontSize, t3, style, t4, height, _this = this, t1 = _this.__TextHeightRuler__host; if (t1 === $) { host = document.createElement("div"); t1 = host.style; t1.visibility = "hidden"; t1.position = "absolute"; t1.top = "0"; t1.left = "0"; t1.display = "flex"; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "flex-direction"), "row", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "align-items"), "baseline", ""); t1.margin = "0"; t1.border = "0"; t1.padding = "0"; t1 = _this._dimensions; t2 = _this.textHeightStyle; fontFamily = t2.fontFamily; fontSize = t2.fontSize; t3 = t1.__engine$_element; style = t3.style; t4 = "" + C.JSNumber_methods.floor$0(fontSize) + "px"; style.fontSize = t4; t4 = H.canonicalizeFontFamily(fontFamily); style.fontFamily = t4 == null ? "" : t4; height = t2.height; if (height != null) { t2 = C.JSNumber_methods.toString$0(height); style.lineHeight = t2; } t1._cachedBoundingClientRect = null; t2 = t3.style; t2.whiteSpace = "pre"; t1._cachedBoundingClientRect = null; t3.textContent = " "; host.appendChild(t3); t1._cachedBoundingClientRect = null; _this.rulerHost._rulerHost.appendChild(host); if (_this.__TextHeightRuler__host === $) { _this.__TextHeightRuler__host = host; t1 = host; } else t1 = H.throwExpression(H.LateError$fieldADI("_host")); } return t1; }, get$alphabeticBaseline: function(_) { var probe, _this = this, t1 = _this.__TextHeightRuler_alphabeticBaseline; if (t1 === $) { t1 = _this.__TextHeightRuler__probe; if (t1 === $) { probe = document.createElement("div"); _this.get$__engine$_host().appendChild(probe); if (_this.__TextHeightRuler__probe === $) { _this.__TextHeightRuler__probe = probe; t1 = probe; } else t1 = H.throwExpression(H.LateError$fieldADI("_probe")); } t1 = t1.getBoundingClientRect().bottom; t1.toString; if (_this.__TextHeightRuler_alphabeticBaseline === $) _this.__TextHeightRuler_alphabeticBaseline = t1; else t1 = H.throwExpression(H.LateError$fieldADI("alphabeticBaseline")); } return t1; }, get$height: function(_) { var _this = this, t1 = _this.__TextHeightRuler_height; if (t1 === $) { t1 = _this._dimensions; t1 = t1.get$height(t1); if (_this.__TextHeightRuler_height === $) _this.__TextHeightRuler_height = t1; else t1 = H.throwExpression(H.LateError$fieldADI("height")); } return t1; }, dispose$0: function(_) { J.remove$0$ax(this.get$__engine$_host()); }, _createHost$0: function() { var t2, fontFamily, fontSize, t3, style, t4, height, host = document.createElement("div"), t1 = host.style; t1.visibility = "hidden"; t1.position = "absolute"; t1.top = "0"; t1.left = "0"; t1.display = "flex"; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "flex-direction"), "row", ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "align-items"), "baseline", ""); t1.margin = "0"; t1.border = "0"; t1.padding = "0"; t1 = this._dimensions; t2 = this.textHeightStyle; fontFamily = t2.fontFamily; fontSize = t2.fontSize; t3 = t1.__engine$_element; style = t3.style; t4 = "" + C.JSNumber_methods.floor$0(fontSize) + "px"; style.fontSize = t4; t4 = H.canonicalizeFontFamily(fontFamily); style.fontFamily = t4 == null ? "" : t4; height = t2.height; if (height != null) { t2 = C.JSNumber_methods.toString$0(height); style.lineHeight = t2; } t1._cachedBoundingClientRect = null; t2 = t3.style; t2.whiteSpace = "pre"; t1._cachedBoundingClientRect = null; t3.textContent = " "; host.appendChild(t3); t1._cachedBoundingClientRect = null; this.rulerHost._rulerHost.appendChild(host); return host; } }; H.ParagraphRuler.prototype = { get$_textHeightRuler: function() { var style, t2, t3, _this = this, t1 = _this.__ParagraphRuler__textHeightRuler; if (t1 === $) { t1 = _this.style; style = t1._cachedHeightStyle; if (style == null) { t2 = t1.get$effectiveFontFamily(); t3 = t1.fontSize; if (t3 == null) t3 = 14; style = t1._cachedHeightStyle = new H.TextHeightStyle(t2, t3, t1.lineHeight, null); } t1 = H.TextHeightRuler$(style, _this.rulerManager); if (_this.__ParagraphRuler__textHeightRuler === $) _this.__ParagraphRuler__textHeightRuler = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_textHeightRuler")); } return t1; }, measureAsSingleLine$0: function() { var t1 = this.__engine$_paragraph, t2 = this.singleLineDimensions; if (t1._plainText === "") { t2._cachedBoundingClientRect = null; t2.__engine$_element.textContent = " "; } else t2.updateText$2(t1, this.style); }, measureWithConstraints$1: function(constraints) { var t3, t1 = this.constrainedDimensions, t2 = this.__engine$_paragraph; t2.toString; t3 = this.style; t1.updateText$2(t2, t3); t1.updateConstraintWidth$2(constraints.width + 0.5, t3.ellipsis); }, measurePlaceholderBoxes$0: function() { var t1, placeholderElements, boxes, rect, t2, t3, t4, t5; if (this.__engine$_paragraph.placeholderCount === 0) return C.List_empty5; t1 = type$._FrozenElementList_Element; placeholderElements = new W._FrozenElementList(this.constrainedDimensions.__engine$_element.querySelectorAll(".paragraph-placeholder"), t1); boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = new H.ListIterator(placeholderElements, placeholderElements.get$length(placeholderElements), t1._eval$1("ListIterator")); t1.moveNext$0();) { rect = t1.__internal$_current.getBoundingClientRect(); t2 = rect.left; t2.toString; t3 = rect.top; t3.toString; t4 = rect.right; t4.toString; t5 = rect.bottom; t5.toString; boxes.push(new P.TextBox(t2, t3, t4, t5, this.__engine$_paragraph._textDirection)); } return boxes; }, hitTest$2: function(constraints, offset) { var el, textNodes, i, t1, bounds, dx, dy, t2, _this = this; _this.measureWithConstraints$1(constraints); el = _this.constrainedDimensions.__engine$_element; textNodes = H.setRuntimeTypeInfo([], type$.JSArray_Node); _this._collectTextNodes$2(el.childNodes, textNodes); for (i = textNodes.length - 1, t1 = type$.Element; i >= 0; --i) { bounds = t1._as(textNodes[i].parentNode).getBoundingClientRect(); dx = offset._dx; dy = offset._dy; t2 = bounds.left; t2.toString; if (dx >= t2) { t2 = bounds.right; t2.toString; if (dx < t2) { t2 = bounds.top; t2.toString; if (dy >= t2) { t2 = bounds.bottom; t2.toString; t2 = dy < t2; } else t2 = false; } else t2 = false; } else t2 = false; if (t2) return _this._countTextPosition$2(el.childNodes, textNodes[i]); } return 0; }, _collectTextNodes$2: function(nodes, textNodes) { var childNodes, t1, _i, node; if (J.get$isEmpty$asx(nodes)) return; childNodes = H.setRuntimeTypeInfo([], type$.JSArray_Node); for (t1 = nodes.length, _i = 0; _i < nodes.length; nodes.length === t1 || (0, H.throwConcurrentModificationError)(nodes), ++_i) { node = nodes[_i]; if (node.nodeType === 3) textNodes.push(node); C.JSArray_methods.addAll$1(childNodes, node.childNodes); } this._collectTextNodes$2(childNodes, textNodes); }, _countTextPosition$2: function(nodes, endNode) { var position, node, t1 = H.instanceType(nodes)._eval$1("ReversedListIterable"), stack = P.List_List$of(new H.ReversedListIterable(nodes, t1), true, t1._eval$1("ListIterable.E")); for (position = 0; true;) { node = C.JSArray_methods.removeLast$0(stack); t1 = node.childNodes; C.JSArray_methods.addAll$1(stack, new H.ReversedListIterable(t1, H.instanceType(t1)._eval$1("ReversedListIterable"))); if (node === endNode) break; if (node.nodeType === 3) position += node.textContent.length; } return position; }, didMeasure$0: function() { var t1, _this = this; if (_this.__engine$_paragraph._plainText == null) { t1 = $.$get$domRenderer(); t1.clearDom$1(_this.singleLineDimensions.__engine$_element); t1.clearDom$1(_this.minIntrinsicDimensions.__engine$_element); t1.clearDom$1(_this.constrainedDimensions.__engine$_element); } _this.__engine$_paragraph = null; }, measureBoxesForRange$6$alignOffset$end$start$textDirection: function(plainText, constraints, alignOffset, end, start, textDirection) { var t2, t3, value, boxes, maxLinesLimit, previousRect, _i, rect, t4, t5, t6, before = J.substring$2$s(plainText, 0, start), rangeText = C.JSString_methods.substring$2(plainText, start, end), after = C.JSString_methods.substring$1(plainText, end), t1 = document, rangeSpan = t1.createElement("span"); rangeSpan.textContent = rangeText; t2 = this.constrainedDimensions; t3 = t2.__engine$_element; $.$get$domRenderer().clearDom$1(t3); t3.appendChild(t1.createTextNode(before)); t3.appendChild(rangeSpan); t3.appendChild(t1.createTextNode(after)); t2.updateConstraintWidth$2(constraints.width, null); value = rangeSpan.getClientRects(); if (value.prototype == null) value.prototype = Object.create(null); boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); t1 = this.style.maxLines; if (t1 == null) maxLinesLimit = 1 / 0; else { t2 = this.get$_textHeightRuler(); maxLinesLimit = t1 * t2.get$height(t2); } for (t1 = value.length, previousRect = null, _i = 0; _i < value.length; value.length === t1 || (0, H.throwConcurrentModificationError)(value), ++_i) { rect = value[_i]; t2 = J.getInterceptor$x(rect); t4 = t2.get$top(rect); if (t4 == (previousRect == null ? null : J.get$top$x(previousRect)) && t2.get$left(rect) == t2.get$right(rect)) continue; if (t2.get$top(rect) >= maxLinesLimit) break; t4 = t2.get$left(rect); t4.toString; t5 = t2.get$top(rect); t6 = t2.get$right(rect); t6.toString; boxes.push(new P.TextBox(t4 + alignOffset, t5, t6 + alignOffset, t2.get$bottom(rect), textDirection)); previousRect = rect; } $.$get$domRenderer().clearDom$1(t3); return boxes; }, dispose$0: function(_) { var _this = this; C.DivElement_methods.remove$0(_this._singleLineHost); C.DivElement_methods.remove$0(_this._minIntrinsicHost); C.DivElement_methods.remove$0(_this._constrainedHost); J.remove$0$ax(_this.get$_textHeightRuler().get$__engine$_host()); }, cacheMeasurement$2: function(paragraph, item) { var t2, i, plainText = paragraph._plainText, t1 = this._measurementCache, constraintCache = t1.$index(0, plainText); if (constraintCache == null) { constraintCache = H.setRuntimeTypeInfo([], type$.JSArray_nullable_MeasurementResult); t1.$indexSet(0, plainText, constraintCache); } constraintCache.push(item); if (constraintCache.length > 8) C.JSArray_methods.removeAt$1(constraintCache, 0); t2 = this._mruList; t2.push(plainText); if (t2.length > 2400) { for (i = 0; i < 100; ++i) t1.remove$1(0, t2[i]); C.JSArray_methods.removeRange$2(t2, 0, 100); } }, cacheLookup$2: function(paragraph, constraints) { var constraintCache, len, t1, t2, t3, i, t4, plainText = paragraph._plainText; if (plainText == null) return null; constraintCache = this._measurementCache.$index(0, plainText); if (constraintCache == null) return null; len = constraintCache.length; for (t1 = constraints.width, t2 = paragraph._textAlign, t3 = paragraph._textDirection, i = 0; i < len; ++i) { t4 = constraintCache[i]; t4.toString; if (t4.constraintWidth == t1 && t4.textAlign === t2 && t4.textDirection === t3) return t4; } return null; } }; H.MeasurementResult.prototype = {}; H._ComparisonResult.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.UnicodeRange.prototype = { compare$1: function(value) { if (value < this.start) return C._ComparisonResult_2; if (value > this.end) return C._ComparisonResult_1; return C._ComparisonResult_0; } }; H.UnicodePropertyLookup.prototype = { find$2: function(_, text, index) { var codePoint = H.getCodePoint(text, index); return codePoint == null ? this.defaultProperty : this.findForChar$1(codePoint); }, findForChar$1: function(char) { var t1, cacheHit, rangeIndex, result, _this = this; if (char == null) return _this.defaultProperty; t1 = _this._cache; cacheHit = t1.$index(0, char); if (cacheHit != null) return cacheHit; rangeIndex = _this._binarySearch$1(char); result = rangeIndex === -1 ? _this.defaultProperty : _this.ranges[rangeIndex].property; t1.$indexSet(0, char, result); return result; }, _binarySearch$1: function(value) { var min, mid, t1 = this.ranges, max = t1.length; for (min = 0; min < max;) { mid = min + C.JSInt_methods._shrOtherPositive$1(max - min, 1); switch (t1[mid].compare$1(value)) { case C._ComparisonResult_1: min = mid + 1; break; case C._ComparisonResult_2: max = mid; break; case C._ComparisonResult_0: return mid; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } return -1; } }; H.WordCharProperty.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H._FindBreakDirection.prototype = {}; H.BrowserAutofillHints.prototype = {}; H.EngineInputType.prototype = { get$submitActionOnEnter: function() { return true; }, createDomElement$0: function() { return W.InputElement_InputElement(null); }, configureInputMode$1: function(domElement) { var t1; if (this.get$inputmodeAttribute() == null) return; t1 = H._operatingSystem(); if (t1 !== C.OperatingSystem_0) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_1; } else t1 = true; if (t1) { t1 = this.get$inputmodeAttribute(); t1.toString; domElement.setAttribute("inputmode", t1); } } }; H.TextInputType0.prototype = { get$inputmodeAttribute: function() { return "text"; } }; H.NumberInputType.prototype = { get$inputmodeAttribute: function() { return "numeric"; } }; H.DecimalInputType.prototype = { get$inputmodeAttribute: function() { return "decimal"; } }; H.PhoneInputType.prototype = { get$inputmodeAttribute: function() { return "tel"; } }; H.EmailInputType.prototype = { get$inputmodeAttribute: function() { return "email"; } }; H.UrlInputType.prototype = { get$inputmodeAttribute: function() { return "url"; } }; H.MultilineInputType.prototype = { get$submitActionOnEnter: function() { return false; }, createDomElement$0: function() { return document.createElement("textarea"); }, get$inputmodeAttribute: function() { return null; } }; H.TextCapitalization.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.TextCapitalizationConfig.prototype = { setAutocapitalizeAttribute$1: function(domElement) { var t1, autocapitalize, _s9_ = "sentences", _s14_ = "autocapitalize"; switch (this.textCapitalization) { case C.TextCapitalization_0: t1 = H._browserEngine(); autocapitalize = t1 === C.BrowserEngine_1 ? _s9_ : "words"; break; case C.TextCapitalization_2: autocapitalize = "characters"; break; case C.TextCapitalization_1: autocapitalize = _s9_; break; case C.TextCapitalization_30: default: autocapitalize = "off"; break; } if (type$.InputElement._is(domElement)) domElement.setAttribute(_s14_, autocapitalize); else if (type$.TextAreaElement._is(domElement)) domElement.setAttribute(_s14_, autocapitalize); } }; H.EngineAutofillForm.prototype = { addInputEventListeners$0: function() { var t1 = this.elements, keys = t1.get$keys(t1), subscriptions = H.setRuntimeTypeInfo([], type$.JSArray_StreamSubscription_Event); keys.forEach$1(0, new H.EngineAutofillForm_addInputEventListeners_closure(this, subscriptions)); return subscriptions; } }; H.EngineAutofillForm_fromFrameworkMessage_closure.prototype = { call$1: function(e) { J.preventDefault$0$x(e); }, $signature: 61 }; H.EngineAutofillForm_addInputEventListeners_closure.prototype = { call$1: function(key) { var t1 = this.$this, t2 = t1.elements.$index(0, key); t2.toString; this.subscriptions.push(W._EventStreamSubscription$(t2, "input", new H.EngineAutofillForm_addInputEventListeners__closure(t1, key, t2), false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); }, $signature: 88 }; H.EngineAutofillForm_addInputEventListeners__closure.prototype = { call$1: function(e) { var autofillInfo, newEditingState, t1 = this.$this.items, t2 = this.key; if (t1.$index(0, t2) == null) throw H.wrapException(P.StateError$("Autofill would not work withuot Autofill value set")); else { autofillInfo = t1.$index(0, t2); newEditingState = H.EditingState_EditingState$fromDomElement(this.element, autofillInfo.textCapitalization); t1 = autofillInfo.uniqueIdentifier; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0(string$.TextIn, [0, P.LinkedHashMap_LinkedHashMap$_literal([t1, newEditingState.toFlutter$0()], type$.nullable_String, type$.dynamic)])), H._engine___emptyCallback$closure()); } }, $signature: 66 }; H.AutofillInfo.prototype = { applyToDomElement$2$focusedElement: function(domElement, focusedElement) { var _s8_ = "password", t1 = this.hint; domElement.id = t1; if (type$.InputElement._is(domElement)) { domElement.name = t1; domElement.id = t1; domElement.autocomplete = t1; if (J.contains$1$asx(t1, _s8_)) domElement.type = _s8_; else domElement.type = "text"; } else if (type$.TextAreaElement._is(domElement)) { domElement.name = t1; domElement.id = t1; domElement.setAttribute("autocomplete", t1); } }, applyToDomElement$1: function(domElement) { return this.applyToDomElement$2$focusedElement(domElement, false); } }; H.EditingState.prototype = { toFlutter$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["text", this.text, "selectionBase", this.baseOffset, "selectionExtent", this.extentOffset], type$.String, type$.dynamic); }, get$hashCode: function(_) { return P.hashValues(this.text, this.baseOffset, this.extentOffset, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (H.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof H.EditingState && other.text == _this.text && other.baseOffset === _this.baseOffset && other.extentOffset === _this.extentOffset; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; }, applyToDomElement$1: function(domElement) { var _this = this; if (type$.InputElement._is(domElement)) { domElement.value = _this.text; domElement.setSelectionRange(_this.baseOffset, _this.extentOffset); } else if (type$.TextAreaElement._is(domElement)) { domElement.value = _this.text; domElement.setSelectionRange(_this.baseOffset, _this.extentOffset); } else throw H.wrapException(P.UnsupportedError$("Unsupported DOM element type: <" + H.S(domElement == null ? null : domElement.tagName) + "> (" + J.get$runtimeType$(domElement).toString$0(0) + ")")); }, text$0: function($receiver) { return this.text.call$0(); } }; H.InputConfiguration.prototype = {}; H.GloballyPositionedTextEditingStrategy.prototype = { placeElement$0: function() { var _this = this, t1 = _this.get$_inputConfiguration().autofillGroup, t2 = _this.__engine$_geometry; if (t1 != null) { if (t2 != null) { t1 = _this.get$focusedFormElement(); t1.toString; t2.applyToDomElement$1(t1); } _this.placeForm$0(); t1 = _this._lastEditingState; if (t1 != null) t1.applyToDomElement$1(_this.domElement); _this.get$focusedFormElement().focus(); _this.domElement.focus(); } else if (t2 != null) { t1 = _this.domElement; t1.toString; t2.applyToDomElement$1(t1); } } }; H.SafariDesktopTextEditingStrategy.prototype = { placeElement$0: function() { var t2, _this = this, t1 = _this.__engine$_geometry; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } if (_this.get$_inputConfiguration().autofillGroup != null) { _this.placeForm$0(); _this.get$focusedFormElement().focus(); _this.domElement.focus(); t1 = _this._lastEditingState; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }, initializeElementPlacement$0: function() { this.domElement.focus(); } }; H.DefaultTextEditingStrategy.prototype = { get$_inputConfiguration: function() { var t1 = this.__DefaultTextEditingStrategy__inputConfiguration; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_inputConfiguration")) : t1; }, get$focusedFormElement: function() { var t1 = this.get$_inputConfiguration().autofillGroup; return t1 == null ? null : t1.formElement; }, initializeTextEditing$3$onAction$onChange: function(inputConfig, onAction, onChange) { var t1, elementStyle, t2, _this = this, _s11_ = "transparent", _s4_ = "none"; _this.domElement = inputConfig.inputType.createDomElement$0(); _this._applyConfiguration$1(inputConfig); t1 = _this.domElement; t1.classList.add("flt-text-editing"); elementStyle = t1.style; elementStyle.whiteSpace = "pre-wrap"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "align-content"), "center", ""); elementStyle.position = "absolute"; elementStyle.top = "0"; elementStyle.left = "0"; elementStyle.padding = "0"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "opacity"), "1", ""); elementStyle.color = _s11_; elementStyle.backgroundColor = _s11_; elementStyle.background = _s11_; elementStyle.outline = _s4_; elementStyle.border = _s4_; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "resize"), _s4_, ""); C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "text-shadow"), _s11_, ""); elementStyle.overflow = "hidden"; C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "transform-origin"), "0 0 0", ""); t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_0) { t2 = H._browserEngine(); if (t2 !== C.BrowserEngine_5) { t2 = H._browserEngine(); t2 = t2 === C.BrowserEngine_1; } else t2 = true; } else t2 = true; if (t2) t1.classList.add("transparentTextEditing"); C.CssStyleDeclaration_methods._setPropertyHelper$3(elementStyle, C.CssStyleDeclaration_methods._browserPropertyName$1(elementStyle, "caret-color"), _s11_, null); t1 = _this._style; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } if (_this.get$_inputConfiguration().autofillGroup == null) { t1 = $.$get$domRenderer()._glassPaneElement; t1.toString; t2 = _this.domElement; t2.toString; t1.appendChild(t2); _this._appendedToForm = false; } _this.initializeElementPlacement$0(); _this.isEnabled = true; _this._onChange = onChange; _this._onAction = onAction; }, _applyConfiguration$1: function(config) { var t1, t2, autocorrectValue, _this = this, _s8_ = "readonly"; _this.__DefaultTextEditingStrategy__inputConfiguration = config; t1 = config.readOnly; t2 = _this.domElement; if (t1) t2.setAttribute(_s8_, _s8_); else t2.removeAttribute(_s8_); if (config.obscureText) _this.domElement.setAttribute("type", "password"); t1 = config.autofill; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$2$focusedElement(t2, true); } autocorrectValue = config.autocorrect ? "on" : "off"; _this.domElement.setAttribute("autocorrect", autocorrectValue); }, initializeElementPlacement$0: function() { this.placeElement$0(); }, addEventHandlers$0: function() { var t1, t2, t3, _this = this; if (_this.get$_inputConfiguration().autofillGroup != null) C.JSArray_methods.addAll$1(_this.__engine$_subscriptions, _this.get$_inputConfiguration().autofillGroup.addInputEventListeners$0()); t1 = _this.__engine$_subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$__engine$_handleChange(); t1.push(W._EventStreamSubscription$(t2, "input", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "keydown", _this.get$_maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(W._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; t3 = J.get$onBlur$x(t3); t1.push(W._EventStreamSubscription$(t3._html$_target, t3._eventType, new H.DefaultTextEditingStrategy_addEventHandlers_closure(_this), false, t3.$ti._precomputed1)); _this.preventDefaultForMouseEvents$0(); }, updateElementPlacement$1: function(geometry) { this.__engine$_geometry = geometry; if (this.isEnabled) this.placeElement$0(); }, updateElementStyle$1: function(style) { var t1; this._style = style; if (this.isEnabled) { style.toString; t1 = this.domElement; t1.toString; style.applyToDomElement$1(t1); } }, disable$0: function(_) { var t2, i, t3, _this = this, t1 = _this.isEnabled = false; _this.__engine$_geometry = _this._style = _this._lastEditingState = null; for (t2 = _this.__engine$_subscriptions, i = 0; i < t2.length; ++i) J.cancel$0$z(t2[i]); C.JSArray_methods.set$length(t2, 0); if (_this._appendedToForm) { t1 = _this.get$_inputConfiguration().autofillGroup; t1 = (t1 == null ? null : t1.formElement) != null; } t2 = _this.domElement; if (t1) { t2.blur(); t1 = _this.domElement; t1.toString; H._hideAutofillElements(t1, true); t1 = _this.get$_inputConfiguration().autofillGroup; if (t1 != null) { t2 = $.$get$formsOnTheDom(); t3 = t1.formIdentifier; t1 = t1.formElement; t2.$indexSet(0, t3, t1); H._hideAutofillElements(t1, true); } } else { t2.toString; J.remove$0$ax(t2); } _this.domElement = null; }, setEditingState$1: function(editingState) { var t1; this._lastEditingState = editingState; if (this.isEnabled) t1 = !(editingState.baseOffset >= 0 && editingState.extentOffset >= 0); else t1 = true; if (t1) return; editingState.applyToDomElement$1(this.domElement); }, placeElement$0: function() { this.domElement.focus(); }, placeForm$0: function() { var t2, t1 = this.get$_inputConfiguration().autofillGroup; t1.toString; t2 = this.domElement; t2.toString; t1 = t1.formElement; t1.appendChild(t2); $.$get$domRenderer()._glassPaneElement.appendChild(t1); this._appendedToForm = true; }, __engine$_handleChange$1: function($event) { var newEditingState, _this = this, t1 = _this.domElement; t1.toString; newEditingState = H.EditingState_EditingState$fromDomElement(t1, _this.get$_inputConfiguration().textCapitalization); if (!newEditingState.$eq(0, _this._lastEditingState)) { _this._lastEditingState = newEditingState; _this._onChange.call$1(newEditingState); } }, _maybeSendAction$1: function($event) { var t1; if (type$.KeyboardEvent._is($event)) if (this.get$_inputConfiguration().inputType.get$submitActionOnEnter() && $event.keyCode === 13) { $event.preventDefault(); t1 = this._onAction; t1.toString; t1.call$1(this.get$_inputConfiguration().inputAction); } }, enable$3$onAction$onChange: function(_, inputConfig, onAction, onChange) { var t1, _this = this; _this.initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange); _this.addEventHandlers$0(); t1 = _this._lastEditingState; if (t1 != null) _this.setEditingState$1(t1); _this.domElement.focus(); }, preventDefaultForMouseEvents$0: function() { var t3, _this = this, t1 = _this.__engine$_subscriptions, t2 = _this.domElement; t2.toString; t3 = type$._ElementEventStreamImpl_legacy_MouseEvent._precomputed1; t1.push(W._EventStreamSubscription$(t2, "mousedown", new H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure(), false, t3)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "mouseup", new H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0(), false, t3)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "mousemove", new H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1(), false, t3)); } }; H.DefaultTextEditingStrategy_addEventHandlers_closure.prototype = { call$1: function(_) { this.$this.domElement.focus(); }, $signature: 66 }; H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure.prototype = { call$1: function(_) { _.preventDefault(); }, $signature: 256 }; H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0.prototype = { call$1: function(_) { _.preventDefault(); }, $signature: 256 }; H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1.prototype = { call$1: function(_) { _.preventDefault(); }, $signature: 256 }; H.IOSTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange: function(inputConfig, onAction, onChange) { var t1, t2, _this = this; _this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); t1 = inputConfig.inputType; t2 = _this.domElement; t2.toString; t1.configureInputMode$1(t2); if (_this.get$_inputConfiguration().autofillGroup != null) _this.placeForm$0(); t1 = inputConfig.textCapitalization; t2 = _this.domElement; t2.toString; t1.setAutocapitalizeAttribute$1(t2); }, initializeElementPlacement$0: function() { var t1 = this.domElement.style; t1.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), "translate(-9999px, -9999px)", ""); this._canPosition = false; }, addEventHandlers$0: function() { var t1, t2, t3, _this = this; if (_this.get$_inputConfiguration().autofillGroup != null) C.JSArray_methods.addAll$1(_this.__engine$_subscriptions, _this.get$_inputConfiguration().autofillGroup.addInputEventListeners$0()); t1 = _this.__engine$_subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$__engine$_handleChange(); t1.push(W._EventStreamSubscription$(t2, "input", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "keydown", _this.get$_maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(W._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; t3 = J.get$onFocus$x(t3); t1.push(W._EventStreamSubscription$(t3._html$_target, t3._eventType, new H.IOSTextEditingStrategy_addEventHandlers_closure(_this), false, t3.$ti._precomputed1)); _this._addTapListener$0(); t3 = _this.domElement; t3.toString; t3 = J.get$onBlur$x(t3); t1.push(W._EventStreamSubscription$(t3._html$_target, t3._eventType, new H.IOSTextEditingStrategy_addEventHandlers_closure0(_this), false, t3.$ti._precomputed1)); }, updateElementPlacement$1: function(geometry) { var _this = this; _this.__engine$_geometry = geometry; if (_this.isEnabled && _this._canPosition) _this.placeElement$0(); }, disable$0: function(_) { var t1; this.super$DefaultTextEditingStrategy$disable(0); t1 = this._positionInputElementTimer; if (t1 != null) t1.cancel$0(0); this._positionInputElementTimer = null; }, _addTapListener$0: function() { var t1 = this.domElement; t1.toString; this.__engine$_subscriptions.push(W._EventStreamSubscription$(t1, "click", new H.IOSTextEditingStrategy__addTapListener_closure(this), false, type$._ElementEventStreamImpl_legacy_MouseEvent._precomputed1)); }, _schedulePlacement$0: function() { var t1 = this._positionInputElementTimer; if (t1 != null) t1.cancel$0(0); this._positionInputElementTimer = P.Timer_Timer(C.Duration_100000, new H.IOSTextEditingStrategy__schedulePlacement_closure(this)); }, placeElement$0: function() { var t1, t2; this.domElement.focus(); t1 = this.__engine$_geometry; if (t1 != null) { t2 = this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; H.IOSTextEditingStrategy_addEventHandlers_closure.prototype = { call$1: function(_) { this.$this._schedulePlacement$0(); }, $signature: 66 }; H.IOSTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1: function(_) { this.$this.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, $signature: 66 }; H.IOSTextEditingStrategy__addTapListener_closure.prototype = { call$1: function(_) { var t2, t1 = this.$this; if (t1._canPosition) { t2 = t1.domElement.style; t2.toString; C.CssStyleDeclaration_methods._setPropertyHelper$3(t2, C.CssStyleDeclaration_methods._browserPropertyName$1(t2, "transform"), "translate(-9999px, -9999px)", ""); t1._canPosition = false; t1._schedulePlacement$0(); } }, $signature: 256 }; H.IOSTextEditingStrategy__schedulePlacement_closure.prototype = { call$0: function() { var t1 = this.$this; t1._canPosition = true; t1.placeElement$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.AndroidTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange: function(inputConfig, onAction, onChange) { var t1, t2, _this = this; _this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); t1 = inputConfig.inputType; t2 = _this.domElement; t2.toString; t1.configureInputMode$1(t2); if (_this.get$_inputConfiguration().autofillGroup != null) _this.placeForm$0(); else { t1 = $.$get$domRenderer()._glassPaneElement; t1.toString; t2 = _this.domElement; t2.toString; t1.appendChild(t2); } t1 = inputConfig.textCapitalization; t2 = _this.domElement; t2.toString; t1.setAutocapitalizeAttribute$1(t2); }, addEventHandlers$0: function() { var t1, t2, t3, _this = this; if (_this.get$_inputConfiguration().autofillGroup != null) C.JSArray_methods.addAll$1(_this.__engine$_subscriptions, _this.get$_inputConfiguration().autofillGroup.addInputEventListeners$0()); t1 = _this.__engine$_subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$__engine$_handleChange(); t1.push(W._EventStreamSubscription$(t2, "input", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "keydown", _this.get$_maybeSendAction(), false, type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1)); t1.push(W._EventStreamSubscription$(document, "selectionchange", t3, false, type$.legacy_Event)); t3 = _this.domElement; t3.toString; t3 = J.get$onBlur$x(t3); t1.push(W._EventStreamSubscription$(t3._html$_target, t3._eventType, new H.AndroidTextEditingStrategy_addEventHandlers_closure(_this), false, t3.$ti._precomputed1)); }, placeElement$0: function() { var t1, t2; this.domElement.focus(); t1 = this.__engine$_geometry; if (t1 != null) { t2 = this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; H.AndroidTextEditingStrategy_addEventHandlers_closure.prototype = { call$1: function(_) { var t1, t2; $.$get$domRenderer().toString; t1 = document; t1 = t1.hasFocus.apply(t1, []); if (t1 == null) t1 = false; t2 = this.$this; if (t1) t2.domElement.focus(); else t2.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, $signature: 66 }; H.FirefoxTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange: function(inputConfig, onAction, onChange) { this.super$DefaultTextEditingStrategy$initializeTextEditing(inputConfig, onAction, onChange); if (this.get$_inputConfiguration().autofillGroup != null) this.placeForm$0(); }, addEventHandlers$0: function() { var t1, t2, t3, t4, t5, _this = this; if (_this.get$_inputConfiguration().autofillGroup != null) C.JSArray_methods.addAll$1(_this.__engine$_subscriptions, _this.get$_inputConfiguration().autofillGroup.addInputEventListeners$0()); t1 = _this.__engine$_subscriptions; t2 = _this.domElement; t2.toString; t3 = _this.get$__engine$_handleChange(); t4 = type$._ElementEventStreamImpl_legacy_Event._precomputed1; t1.push(W._EventStreamSubscription$(t2, "input", t3, false, t4)); t2 = _this.domElement; t2.toString; t5 = type$._ElementEventStreamImpl_legacy_KeyboardEvent._precomputed1; t1.push(W._EventStreamSubscription$(t2, "keydown", _this.get$_maybeSendAction(), false, t5)); t2 = _this.domElement; t2.toString; t1.push(W._EventStreamSubscription$(t2, "keyup", new H.FirefoxTextEditingStrategy_addEventHandlers_closure(_this), false, t5)); t5 = _this.domElement; t5.toString; t1.push(W._EventStreamSubscription$(t5, "select", t3, false, t4)); t4 = _this.domElement; t4.toString; t4 = J.get$onBlur$x(t4); t1.push(W._EventStreamSubscription$(t4._html$_target, t4._eventType, new H.FirefoxTextEditingStrategy_addEventHandlers_closure0(_this), false, t4.$ti._precomputed1)); _this.preventDefaultForMouseEvents$0(); }, _postponeFocus$0: function() { P.Timer_Timer(C.Duration_0, new H.FirefoxTextEditingStrategy__postponeFocus_closure(this)); }, placeElement$0: function() { var t1, t2, _this = this; _this.domElement.focus(); t1 = _this.__engine$_geometry; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } t1 = _this._lastEditingState; if (t1 != null) { t2 = _this.domElement; t2.toString; t1.applyToDomElement$1(t2); } } }; H.FirefoxTextEditingStrategy_addEventHandlers_closure.prototype = { call$1: function($event) { this.$this.__engine$_handleChange$1($event); }, $signature: 1571 }; H.FirefoxTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1: function(_) { this.$this._postponeFocus$0(); }, $signature: 66 }; H.FirefoxTextEditingStrategy__postponeFocus_closure.prototype = { call$0: function() { this.$this.domElement.focus(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.TextInputCommand.prototype = {}; H.TextInputSetClient.prototype = { run$1: function(textEditing) { var t1 = textEditing.__engine$_clientId; if (t1 != null && t1 !== this.clientId && textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } textEditing.__engine$_clientId = this.clientId; textEditing.configuration = this.configuration; } }; H.TextInputUpdateConfig.prototype = { run$1: function(textEditing) { var t1 = textEditing.get$strategy(), t2 = textEditing.configuration; t2.toString; t1._applyConfiguration$1(t2); } }; H.TextInputSetEditingState.prototype = { run$1: function(textEditing) { textEditing.get$strategy().setEditingState$1(this.state); } }; H.TextInputShow.prototype = { run$1: function(textEditing) { if (!textEditing.isEditing) textEditing._startEditing$0(); } }; H.TextInputSetEditableSizeAndTransform.prototype = { run$1: function(textEditing) { textEditing.get$strategy().updateElementPlacement$1(this.geometry); } }; H.TextInputSetStyle.prototype = { run$1: function(textEditing) { textEditing.get$strategy().updateElementStyle$1(this.style); } }; H.TextInputClearClient.prototype = { run$1: function(textEditing) { if (textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } } }; H.TextInputHide.prototype = { run$1: function(textEditing) { if (textEditing.isEditing) { textEditing.isEditing = false; textEditing.get$strategy().disable$0(0); } } }; H.TextInputSetMarkedTextRect.prototype = { run$1: function(textEditing) { } }; H.TextInputSetCaretRect.prototype = { run$1: function(textEditing) { } }; H.TextInputFinishAutofillContext.prototype = { run$1: function(textEditing) { textEditing.sendTextConnectionClosedToFrameworkIfAny$0(); if (this.saveForm) H.saveForms(); H.cleanForms(); } }; H.saveForms_closure.prototype = { call$2: function(identifier, form) { type$.InputElement._as(J.get$first$ax(form.getElementsByClassName("submitBtn"))).click(); }, $signature: 1676 }; H.TextEditingChannel.prototype = { handleTextInput$2: function(data, callback) { var _command_set, t1, t2, transformList, textAlignIndex, textDirectionIndex, fontWeightIndex, fontWeight, _box_0 = {}, $call = C.C_JSONMethodCodec.decodeMethodCall$1(data); _box_0._command = $; _command_set = new H.TextEditingChannel_handleTextInput__command_set(_box_0); switch ($call.method) { case "TextInput.setClient": t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); _command_set.call$1(new H.TextInputSetClient(t2.$index(t1, 0), H.InputConfiguration$fromFrameworkMessage(t2.$index(t1, 1)))); break; case "TextInput.updateConfig": this.implementation.configuration = H.InputConfiguration$fromFrameworkMessage($call.$arguments); _command_set.call$1(new H.TextInputUpdateConfig()); break; case "TextInput.setEditingState": _command_set.call$1(new H.TextInputSetEditingState(H.EditingState_EditingState$fromFrameworkMessage($call.$arguments))); break; case "TextInput.show": _command_set.call$1(C.C_TextInputShow); break; case "TextInput.setEditableSizeAndTransform": t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); transformList = P.List_List$from(t2.$index(t1, "transform"), true, type$.double); _command_set.call$1(new H.TextInputSetEditableSizeAndTransform(new H.EditableTextGeometry(t2.$index(t1, "width"), t2.$index(t1, "height"), new Float32Array(H._ensureNativeList(transformList))))); break; case "TextInput.setStyle": t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); textAlignIndex = t2.$index(t1, "textAlignIndex"); textDirectionIndex = t2.$index(t1, "textDirectionIndex"); fontWeightIndex = t2.$index(t1, "fontWeightIndex"); fontWeight = fontWeightIndex != null ? H.fontWeightIndexToCss(fontWeightIndex) : "normal"; _command_set.call$1(new H.TextInputSetStyle(new H.EditableTextStyle(t2.$index(t1, "fontSize"), fontWeight, t2.$index(t1, "fontFamily"), C.List_WPl[textAlignIndex], C.List_TextDirection_0_TextDirection_1[textDirectionIndex]))); break; case "TextInput.clearClient": _command_set.call$1(C.C_TextInputClearClient); break; case "TextInput.hide": _command_set.call$1(C.C_TextInputHide); break; case "TextInput.requestAutofill": break; case "TextInput.finishAutofillContext": _command_set.call$1(new H.TextInputFinishAutofillContext(H._asBoolS($call.$arguments))); break; case "TextInput.setMarkedTextRect": _command_set.call$1(C.C_TextInputSetMarkedTextRect); break; case "TextInput.setCaretRect": _command_set.call$1(C.C_TextInputSetCaretRect); break; default: $.$get$EnginePlatformDispatcher__instance()._replyToPlatformMessage$2(callback, null); return; } t1 = new H.TextEditingChannel_handleTextInput__command_get(_box_0).call$0(); t1.run$1(this.implementation); new H.TextEditingChannel_handleTextInput_closure(callback).call$0(); } }; H.TextEditingChannel_handleTextInput__command_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._command === $) return t2._command = t1; else throw H.wrapException(H.LateError$localAI("command")); }, $signature: 1682 }; H.TextEditingChannel_handleTextInput__command_get.prototype = { call$0: function() { var t1 = this._box_0._command; return t1 === $ ? H.throwExpression(H.LateError$localNI("command")) : t1; }, $signature: 1710 }; H.TextEditingChannel_handleTextInput_closure.prototype = { call$0: function() { $.$get$EnginePlatformDispatcher__instance()._replyToPlatformMessage$2(this.callback, C.C_JSONMessageCodec.encodeMessage$1([true])); }, $signature: 0 }; H.HybridTextEditing.prototype = { get$channel: function(_) { var t1 = this.__HybridTextEditing_channel; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("channel")) : t1; }, get$strategy: function() { var strategy, t2, _this = this, t1 = _this.__HybridTextEditing_strategy; if (t1 === $) { t1 = $.EngineSemanticsOwner__instance; if ((t1 == null ? $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_() : t1)._semanticsEnabled) t1 = H.SemanticsTextEditingStrategy_ensureInitialized(_this); else { t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_0; } else t1 = false; if (t1) strategy = new H.IOSTextEditingStrategy(_this, H.setRuntimeTypeInfo([], type$.JSArray_StreamSubscription_Event)); else { t1 = H._browserEngine(); if (t1 === C.BrowserEngine_1) strategy = new H.SafariDesktopTextEditingStrategy(_this, H.setRuntimeTypeInfo([], type$.JSArray_StreamSubscription_Event)); else { t1 = H._browserEngine(); if (t1 === C.BrowserEngine_0) { t1 = H._operatingSystem(); t1 = t1 === C.OperatingSystem_1; } else t1 = false; if (t1) strategy = new H.AndroidTextEditingStrategy(_this, H.setRuntimeTypeInfo([], type$.JSArray_StreamSubscription_Event)); else { t1 = H._browserEngine(); t2 = type$.JSArray_StreamSubscription_Event; strategy = t1 === C.BrowserEngine_2 ? new H.FirefoxTextEditingStrategy(_this, H.setRuntimeTypeInfo([], t2)) : new H.GloballyPositionedTextEditingStrategy(_this, H.setRuntimeTypeInfo([], t2)); } } } t1 = strategy; } if (_this.__HybridTextEditing_strategy === $) _this.__HybridTextEditing_strategy = t1; else t1 = H.throwExpression(H.LateError$fieldADI("strategy")); } return t1; }, _startEditing$0: function() { var t1, t2, _this = this; _this.isEditing = true; t1 = _this.get$strategy(); t2 = _this.configuration; t2.toString; t1.enable$3$onAction$onChange(0, t2, new H.HybridTextEditing__startEditing_closure(_this), new H.HybridTextEditing__startEditing_closure0(_this)); }, sendTextConnectionClosedToFrameworkIfAny$0: function() { var t1, t2, _this = this; if (_this.isEditing) { _this.isEditing = false; _this.get$strategy().disable$0(0); t1 = _this.get$channel(_this); t2 = _this.__engine$_clientId; t1.toString; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0("TextInputClient.onConnectionClosed", [t2])), H._engine___emptyCallback$closure()); } } }; H.HybridTextEditing__startEditing_closure0.prototype = { call$1: function(editingState) { var t1 = this.$this, t2 = t1.get$channel(t1); t1 = t1.__engine$_clientId; t2.toString; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0("TextInputClient.updateEditingState", [t1, editingState.toFlutter$0()])), H._engine___emptyCallback$closure()); }, $signature: 1741 }; H.HybridTextEditing__startEditing_closure.prototype = { call$1: function(inputAction) { var t1 = this.$this, t2 = t1.get$channel(t1); t1 = t1.__engine$_clientId; t2.toString; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", C.C_JSONMethodCodec.encodeMethodCall$1(new H.MethodCall0("TextInputClient.performAction", [t1, inputAction])), H._engine___emptyCallback$closure()); }, $signature: 236 }; H.EditableTextStyle.prototype = { applyToDomElement$1: function(domElement) { var _this = this, t1 = domElement.style, t2 = H.textAlignToCssValue(_this.textAlign, _this.textDirection); t1.textAlign = t2; t2 = _this.fontWeight + " " + H.S(_this.fontSize) + "px " + H.S(H.canonicalizeFontFamily(_this.fontFamily)); t1.font = t2; } }; H.EditableTextGeometry.prototype = { applyToDomElement$1: function(domElement) { var cssTransform = H.float64ListToCssTransform(this.globalTransform), t1 = domElement.style, t2 = H.S(this.width) + "px"; t1.width = t2; t2 = H.S(this.height) + "px"; t1.height = t2; C.CssStyleDeclaration_methods._setPropertyHelper$3(t1, C.CssStyleDeclaration_methods._browserPropertyName$1(t1, "transform"), cssTransform, ""); } }; H.TransformKind.prototype = { toString$0: function(_) { return this.__engine$_name; } }; H.sendFontChangeMessage_closure.prototype = { call$1: function(_) { $._fontChangeScheduled = false; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/system", $.$get$_fontChangeMessage(), new H.sendFontChangeMessage__closure()); }, $signature: 592 }; H.sendFontChangeMessage__closure.prototype = { call$1: function(_) { }, $signature: 117 }; H.Matrix40.prototype = { Matrix4$identity$0: function() { var t1 = this.__engine$_m4storage; t1[15] = 1; t1[0] = 1; t1[5] = 1; t1[10] = 1; }, setFrom$1: function(arg) { var argStorage = arg.__engine$_m4storage, t1 = this.__engine$_m4storage; t1[15] = argStorage[15]; t1[14] = argStorage[14]; t1[13] = argStorage[13]; t1[12] = argStorage[12]; t1[11] = argStorage[11]; t1[10] = argStorage[10]; t1[9] = argStorage[9]; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, $index: function(_, i) { return this.__engine$_m4storage[i]; }, $indexSet: function(_, i, v) { this.__engine$_m4storage[i] = v; }, translate$3: function(_, x, y, z) { var t1 = this.__engine$_m4storage, t2 = t1[0], t3 = t1[4], t4 = t1[8], t5 = t1[12], t6 = t1[1], t7 = t1[5], t8 = t1[9], t9 = t1[13], t10 = t1[2], t11 = t1[6], t12 = t1[10], t13 = t1[14], t14 = t1[3], t15 = t1[7], t16 = t1[11], t17 = t1[15]; t1[12] = t2 * x + t3 * y + t4 * z + t5; t1[13] = t6 * x + t7 * y + t8 * z + t9; t1[14] = t10 * x + t11 * y + t12 * z + t13; t1[15] = t14 * x + t15 * y + t16 * z + t17; }, translate$2: function($receiver, x, y) { return this.translate$3($receiver, x, y, 0); }, scale$3: function(_, x, y, z) { var sy = y == null ? x : y, t1 = this.__engine$_m4storage; t1[15] = t1[15]; t1[0] = t1[0] * x; t1[1] = t1[1] * x; t1[2] = t1[2] * x; t1[3] = t1[3] * x; t1[4] = t1[4] * sy; t1[5] = t1[5] * sy; t1[6] = t1[6] * sy; t1[7] = t1[7] * sy; t1[8] = t1[8] * x; t1[9] = t1[9] * x; t1[10] = t1[10] * x; t1[11] = t1[11] * x; t1[12] = t1[12]; t1[13] = t1[13]; t1[14] = t1[14]; }, scale$1: function($receiver, x) { return this.scale$3($receiver, x, null, null); }, scale$2: function($receiver, x, y) { return this.scale$3($receiver, x, y, null); }, $mul: function(_, arg) { var t1; if (typeof arg == "number") { t1 = new H.Matrix40(new Float32Array(16)); t1.setFrom$1(this); t1.scale$3(0, arg, null, null); return t1; } if (arg instanceof H.Matrix40) return this.multiplied$1(arg); throw H.wrapException(P.ArgumentError$(arg)); }, isIdentity$0: function(_) { var t1 = this.__engine$_m4storage; return t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0 && t1[12] === 0 && t1[13] === 0 && t1[14] === 0 && t1[15] === 1; }, isIdentityOrTranslation$0: function() { var t1 = this.__engine$_m4storage; return t1[15] === 1 && t1[0] === 1 && t1[1] === 0 && t1[2] === 0 && t1[3] === 0 && t1[4] === 0 && t1[5] === 1 && t1[6] === 0 && t1[7] === 0 && t1[8] === 0 && t1[9] === 0 && t1[10] === 1 && t1[11] === 0; }, rotate$2: function(_, axis, angle) { var m23, m31, m32, m33, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, len = Math.sqrt(axis.get$length2()), axisStorage = axis.__engine$_v3storage, x = axisStorage[0] / len, y = axisStorage[1] / len, z = axisStorage[2] / len, c = Math.cos(angle), s = Math.sin(angle), $C = 1 - c, m11 = x * x * $C + c, t1 = z * s, m12 = x * y * $C - t1, t2 = y * s, m13 = x * z * $C + t2, m21 = y * x * $C + t1, m22 = y * y * $C + c; t1 = x * s; m23 = y * z * $C - t1; m31 = z * x * $C - t2; m32 = z * y * $C + t1; m33 = z * z * $C + c; t1 = this.__engine$_m4storage; t2 = t1[0]; t3 = t1[4]; t4 = t1[8]; t5 = t1[1]; t6 = t1[5]; t7 = t1[9]; t8 = t1[2]; t9 = t1[6]; t10 = t1[10]; t11 = t1[3]; t12 = t1[7]; t13 = t1[11]; t1[0] = t2 * m11 + t3 * m21 + t4 * m31; t1[1] = t5 * m11 + t6 * m21 + t7 * m31; t1[2] = t8 * m11 + t9 * m21 + t10 * m31; t1[3] = t11 * m11 + t12 * m21 + t13 * m31; t1[4] = t2 * m12 + t3 * m22 + t4 * m32; t1[5] = t5 * m12 + t6 * m22 + t7 * m32; t1[6] = t8 * m12 + t9 * m22 + t10 * m32; t1[7] = t11 * m12 + t12 * m22 + t13 * m32; t1[8] = t2 * m13 + t3 * m23 + t4 * m33; t1[9] = t5 * m13 + t6 * m23 + t7 * m33; t1[10] = t8 * m13 + t9 * m23 + t10 * m33; t1[11] = t11 * m13 + t12 * m23 + t13 * m33; }, setTranslationRaw$3: function(x, y, z) { var t1 = this.__engine$_m4storage; t1[14] = z; t1[13] = y; t1[12] = x; }, copyInverse$1: function(arg) { var invDet, t1, t2, t3, argStorage = arg.__engine$_m4storage, a00 = argStorage[0], a01 = argStorage[1], a02 = argStorage[2], a03 = argStorage[3], a10 = argStorage[4], a11 = argStorage[5], a12 = argStorage[6], a13 = argStorage[7], a20 = argStorage[8], a21 = argStorage[9], a22 = argStorage[10], a23 = argStorage[11], a30 = argStorage[12], a31 = argStorage[13], a32 = argStorage[14], a33 = argStorage[15], b00 = a00 * a11 - a01 * a10, b01 = a00 * a12 - a02 * a10, b02 = a00 * a13 - a03 * a10, b03 = a01 * a12 - a02 * a11, b04 = a01 * a13 - a03 * a11, b05 = a02 * a13 - a03 * a12, b06 = a20 * a31 - a21 * a30, b07 = a20 * a32 - a22 * a30, b08 = a20 * a33 - a23 * a30, b09 = a21 * a32 - a22 * a31, b10 = a21 * a33 - a23 * a31, b11 = a22 * a33 - a23 * a32, det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; if (det === 0) { this.setFrom$1(arg); return 0; } invDet = 1 / det; t1 = this.__engine$_m4storage; t1[0] = (a11 * b11 - a12 * b10 + a13 * b09) * invDet; t1[1] = (-a01 * b11 + a02 * b10 - a03 * b09) * invDet; t1[2] = (a31 * b05 - a32 * b04 + a33 * b03) * invDet; t1[3] = (-a21 * b05 + a22 * b04 - a23 * b03) * invDet; t2 = -a10; t1[4] = (t2 * b11 + a12 * b08 - a13 * b07) * invDet; t1[5] = (a00 * b11 - a02 * b08 + a03 * b07) * invDet; t3 = -a30; t1[6] = (t3 * b05 + a32 * b02 - a33 * b01) * invDet; t1[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet; t1[8] = (a10 * b10 - a11 * b08 + a13 * b06) * invDet; t1[9] = (-a00 * b10 + a01 * b08 - a03 * b06) * invDet; t1[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet; t1[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet; t1[12] = (t2 * b09 + a11 * b07 - a12 * b06) * invDet; t1[13] = (a00 * b09 - a01 * b07 + a02 * b06) * invDet; t1[14] = (t3 * b03 + a31 * b01 - a32 * b00) * invDet; t1[15] = (a20 * b03 - a21 * b01 + a22 * b00) * invDet; return det; }, multiply$1: function(_, arg) { var t1 = this.__engine$_m4storage, m33 = t1[15], m00 = t1[0], m01 = t1[4], m02 = t1[8], m03 = t1[12], m10 = t1[1], m11 = t1[5], m12 = t1[9], m13 = t1[13], m20 = t1[2], m21 = t1[6], m22 = t1[10], m23 = t1[14], m30 = t1[3], m31 = t1[7], m32 = t1[11], argStorage = arg.__engine$_m4storage, n33 = argStorage[15], n00 = argStorage[0], n01 = argStorage[4], n02 = argStorage[8], n03 = argStorage[12], n10 = argStorage[1], n11 = argStorage[5], n12 = argStorage[9], n13 = argStorage[13], n20 = argStorage[2], n21 = argStorage[6], n22 = argStorage[10], n23 = argStorage[14], n30 = argStorage[3], n31 = argStorage[7], n32 = argStorage[11]; t1[0] = m00 * n00 + m01 * n10 + m02 * n20 + m03 * n30; t1[4] = m00 * n01 + m01 * n11 + m02 * n21 + m03 * n31; t1[8] = m00 * n02 + m01 * n12 + m02 * n22 + m03 * n32; t1[12] = m00 * n03 + m01 * n13 + m02 * n23 + m03 * n33; t1[1] = m10 * n00 + m11 * n10 + m12 * n20 + m13 * n30; t1[5] = m10 * n01 + m11 * n11 + m12 * n21 + m13 * n31; t1[9] = m10 * n02 + m11 * n12 + m12 * n22 + m13 * n32; t1[13] = m10 * n03 + m11 * n13 + m12 * n23 + m13 * n33; t1[2] = m20 * n00 + m21 * n10 + m22 * n20 + m23 * n30; t1[6] = m20 * n01 + m21 * n11 + m22 * n21 + m23 * n31; t1[10] = m20 * n02 + m21 * n12 + m22 * n22 + m23 * n32; t1[14] = m20 * n03 + m21 * n13 + m22 * n23 + m23 * n33; t1[3] = m30 * n00 + m31 * n10 + m32 * n20 + m33 * n30; t1[7] = m30 * n01 + m31 * n11 + m32 * n21 + m33 * n31; t1[11] = m30 * n02 + m31 * n12 + m32 * n22 + m33 * n32; t1[15] = m30 * n03 + m31 * n13 + m32 * n23 + m33 * n33; }, multiplied$1: function(arg) { var t1 = new H.Matrix40(new Float32Array(16)); t1.setFrom$1(this); t1.multiply$1(0, arg); return t1; }, transform2$1: function(vector) { var x = vector[0], y = vector[1], t1 = this.__engine$_m4storage; vector[0] = t1[0] * x + t1[4] * y + t1[12]; vector[1] = t1[1] * x + t1[5] * y + t1[13]; }, toString$0: function(_) { var t1 = this.super$Object$toString(0); return t1; } }; H.Vector30.prototype = { $index: function(_, i) { return this.__engine$_v3storage[i]; }, $indexSet: function(_, i, v) { this.__engine$_v3storage[i] = v; }, get$length: function(_) { var t1 = this.__engine$_v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return Math.sqrt(t2 * t2 + t3 * t3 + t1 * t1); }, get$length2: function() { var t1 = this.__engine$_v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return t2 * t2 + t3 * t3 + t1 * t1; }, add$1: function(_, arg) { var argStorage = arg.__engine$_v3storage, t1 = this.__engine$_v3storage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; } }; H.WebExperiments.prototype = { WebExperiments$_$0: function() { $.$get$_context().$indexSet(0, "_flutter_internal_update_experiment", this.get$updateExperiment()); $._hotRestartListeners.push(new H.WebExperiments$__closure()); }, updateExperiment$2: function($name, enabled) { switch ($name) { case "useCanvasText": this._useCanvasText = enabled !== false; break; case "useCanvasRichText": this._useCanvasRichText = enabled !== false; break; } } }; H.WebExperiments$__closure.prototype = { call$0: function() { $.$get$_context().$indexSet(0, "_flutter_internal_update_experiment", null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.EngineFlutterWindow.prototype = { EngineFlutterWindow$2: function(_windowId, platformDispatcher) { var _this = this, engineDispatcher = _this.platformDispatcher, t1 = _this._windowId; engineDispatcher._windows.$indexSet(0, t1, _this); engineDispatcher._windowConfigurations.$indexSet(0, t1, P.ViewConfiguration$()); if ($._isUrlStrategySet) _this._browserHistory = H.MultiEntriesBrowserHistory$($._customUrlStrategy); $._hotRestartListeners.push(new H.EngineFlutterWindow_closure()); }, get$browserHistory: function() { var urlStrategy, t1 = this._browserHistory; if (t1 == null) { if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = C.C_HashUrlStrategy; $._isUrlStrategySet = true; t1 = this._browserHistory = H.MultiEntriesBrowserHistory$(urlStrategy); } return t1; }, _useSingleEntryBrowserHistory$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, urlStrategy, strategy, t1; var $async$_useSingleEntryBrowserHistory$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserHistory; if (t1 instanceof H.SingleEntryBrowserHistory) { // goto return $async$goto = 1; break; } $async$goto = t1 == null ? 3 : 5; break; case 3: // then if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = C.C_HashUrlStrategy; $._isUrlStrategySet = true; strategy = urlStrategy; // goto join $async$goto = 4; break; case 5: // else strategy = t1.get$urlStrategy(); t1 = $async$self._browserHistory; $async$goto = 6; return P._asyncAwait(t1 == null ? null : t1.tearDown$0(), $async$_useSingleEntryBrowserHistory$0); case 6: // returning from await. case 4: // join t1 = new H.SingleEntryBrowserHistory(strategy, P.LinkedHashMap_LinkedHashMap$_literal(["flutter", true], type$.String, type$.bool)); t1.SingleEntryBrowserHistory$1$urlStrategy(strategy); $async$self._browserHistory = t1; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_useSingleEntryBrowserHistory$0, $async$completer); }, _useMultiEntryBrowserHistory$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, urlStrategy, strategy, t1; var $async$_useMultiEntryBrowserHistory$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserHistory; if (t1 instanceof H.MultiEntriesBrowserHistory) { // goto return $async$goto = 1; break; } $async$goto = t1 == null ? 3 : 5; break; case 3: // then if ($._isUrlStrategySet) urlStrategy = $._customUrlStrategy; else urlStrategy = C.C_HashUrlStrategy; $._isUrlStrategySet = true; strategy = urlStrategy; // goto join $async$goto = 4; break; case 5: // else strategy = t1.get$urlStrategy(); t1 = $async$self._browserHistory; $async$goto = 6; return P._asyncAwait(t1 == null ? null : t1.tearDown$0(), $async$_useMultiEntryBrowserHistory$0); case 6: // returning from await. case 4: // join $async$self._browserHistory = H.MultiEntriesBrowserHistory$(strategy); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_useMultiEntryBrowserHistory$0, $async$completer); }, resetHistory$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$resetHistory$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._browserHistory; $async$goto = 2; return P._asyncAwait(t1 == null ? null : t1.tearDown$0(), $async$resetHistory$0); case 2: // returning from await. $async$self._browserHistory = null; $._isUrlStrategySet = $async$self._usingRouter = false; $._customUrlStrategy = null; // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$resetHistory$0, $async$completer); }, handleNavigationMessage$1: function(data) { return this.handleNavigationMessage$body$EngineFlutterWindow(data); }, handleNavigationMessage$body$EngineFlutterWindow: function(data) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, decoded, $arguments; var $async$handleNavigationMessage$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start decoded = new H.JSONMethodCodec().decodeMethodCall$1(data); $arguments = decoded.$arguments; case 3: // switch switch (decoded.method) { case "routeUpdated": // goto case $async$goto = 5; break; case "routeInformationUpdated": // goto case $async$goto = 6; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case $async$goto = !$async$self._usingRouter ? 7 : 9; break; case 7: // then $async$goto = 10; return P._asyncAwait($async$self._useSingleEntryBrowserHistory$0(), $async$handleNavigationMessage$1); case 10: // returning from await. $async$self.get$browserHistory().setRouteName$1(J.$index$asx($arguments, "routeName")); // goto join $async$goto = 8; break; case 9: // else $async$returnValue = false; // goto return $async$goto = 1; break; case 8: // join $async$returnValue = true; // goto return $async$goto = 1; break; case 6: // case $async$goto = 11; return P._asyncAwait($async$self._useMultiEntryBrowserHistory$0(), $async$handleNavigationMessage$1); case 11: // returning from await. $async$self._usingRouter = true; t1 = J.getInterceptor$asx($arguments); $async$self.get$browserHistory().setRouteName$2$state(t1.$index($arguments, "location"), t1.$index($arguments, "state")); $async$returnValue = true; // goto return $async$goto = 1; break; case 4: // after switch $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleNavigationMessage$1, $async$completer); }, get$viewConfiguration: function() { var t1 = this.platformDispatcher._windowConfigurations.$index(0, this._windowId); return t1 == null ? P.ViewConfiguration$() : t1; }, get$physicalSize: function() { if (this._physicalSize == null) this._computePhysicalSize$0(); var t1 = this._physicalSize; t1.toString; return t1; }, _computePhysicalSize$0: function() { var t2, windowInnerWidth, windowInnerHeight, _this = this, viewport = window.visualViewport, t1 = _this._debugDevicePixelRatio; if (viewport != null) { t2 = viewport.width; t2.toString; windowInnerWidth = t2 * (t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1); t1 = viewport.height; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } else { t2 = window.innerWidth; t2.toString; windowInnerWidth = t2 * (t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1); t1 = window.innerHeight; t1.toString; t2 = _this._debugDevicePixelRatio; windowInnerHeight = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } _this._physicalSize = new P.Size(windowInnerWidth, windowInnerHeight); }, computeOnScreenKeyboardInsets$0: function() { var t2, windowInnerHeight, viewport = window.visualViewport, t1 = this._debugDevicePixelRatio; if (viewport != null) { t2 = viewport.height; t2.toString; windowInnerHeight = t2 * (t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1); } else { t2 = window.innerHeight; t2.toString; windowInnerHeight = t2 * (t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1); } this._viewInsets = new H.WindowPadding(0, 0, 0, this._physicalSize._dy - windowInnerHeight); }, isRotation$0: function() { var height, width, _this = this, t1 = window.visualViewport, t2 = _this._debugDevicePixelRatio; if (t1 != null) { t1 = window.visualViewport.height; t1.toString; height = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = window.visualViewport.width; t1.toString; t2 = _this._debugDevicePixelRatio; width = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } else { t1 = window.innerHeight; t1.toString; height = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); t1 = window.innerWidth; t1.toString; t2 = _this._debugDevicePixelRatio; width = t1 * (t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2); } t1 = _this._physicalSize; if (t1 != null) { t2 = t1._dy; if (t2 !== height && t1._dx !== width) { t1 = t1._dx; if (!(t2 > t1 && height < width)) t1 = t1 > t2 && width < height; else t1 = true; if (t1) return true; } } return false; } }; H.EngineFlutterWindow_closure.prototype = { call$0: function() { $.$get$window().resetHistory$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; H.EngineSingletonFlutterWindow.prototype = { get$devicePixelRatio: function(_) { var t1 = this._debugDevicePixelRatio; return t1 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t1; } }; H.WindowPadding.prototype = {}; H._DomCanvas_EngineCanvas_SaveElementStackTracking.prototype = {}; H._PersistedClipRRect_PersistedContainerSurface__DomClip.prototype = { adoptElements$1: function(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0: function() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; H._PersistedClipRect_PersistedContainerSurface__DomClip.prototype = { adoptElements$1: function(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0: function() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; H._PersistedPhysicalShape_PersistedContainerSurface__DomClip.prototype = { adoptElements$1: function(oldSurface) { this.super$PersistedSurface$adoptElements(oldSurface); this._DomClip__childContainer = oldSurface._DomClip__childContainer; oldSurface._DomClip__childContainer = null; }, discard$0: function() { this.super$PersistedContainerSurface$discard(); this._DomClip__childContainer = null; } }; H.__MouseAdapter__BaseAdapter__WheelEventListenerMixin.prototype = {}; H.__PointerAdapter__BaseAdapter__WheelEventListenerMixin.prototype = {}; H.JS_CONST.prototype = {}; H.HttpException.prototype = { toString$0: function(_) { var t1 = "HttpException: " + this.message, uri = this.uri; if (uri != null) t1 += ", uri = " + uri.toString$0(0); return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1 }; H._HeaderValue.prototype = { _HeaderValue$2: function(_value, parameters) { var t1 = parameters.get$isNotEmpty(parameters); if (t1) this._parameters = P.HashMap_HashMap$from(parameters, type$.String, type$.nullable_String); }, get$value: function(_) { return this.__http$_value; }, toString$0: function(_) { var parameters, t1, sb = new P.StringBuffer(""); sb._contents = this.__http$_value; parameters = this._parameters; if (parameters != null && parameters.get$length(parameters) > 0) parameters.forEach$1(0, new H._HeaderValue_toString_closure(sb)); t1 = sb._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, __http$_parse$4: function(s, parameterSeparator, valueSeparator, preserveBackslash) { var t2, t3, t4, t5, t1 = {}; t1.index = 0; t2 = new H._HeaderValue__parse_done(t1, s); t3 = new H._HeaderValue__parse_skipWS(t1, t2, s); t4 = new H._HeaderValue__parse_parseValue(t1, t2, s, valueSeparator, parameterSeparator); t5 = new H._HeaderValue__parse_maybeExpect(t1, t2, s); t3.call$0(); this.__http$_value = t4.call$0(); t3.call$0(); if (t2.call$0()) return; t5.call$1(parameterSeparator); new H._HeaderValue__parse_parseParameters(t1, this, t2, s, parameterSeparator, valueSeparator, false, t4, t3, t5, new H._HeaderValue__parse_expect(t1, t2, s)).call$0(); } }; H._HeaderValue_toString_closure.prototype = { call$2: function($name, value) { var t2, t3, start, i, codeUnit, t1 = this.sb; t1._contents += "; "; t2 = t1._contents += H.S($name); if (value != null) { t1._contents = t2 + "="; t2 = H._HeaderValue__isToken(value); t3 = t1._contents; if (t2) t1._contents = t3 + value; else { t1._contents = t3 + '"'; for (t2 = value.length, start = 0, i = 0; i < t2; ++i) { codeUnit = C.JSString_methods._codeUnitAt$1(value, i); if (codeUnit === 92 || codeUnit === 34) { t3 = t1._contents += C.JSString_methods.substring$2(value, start, i); t1._contents = t3 + "\\"; start = i; } } t2 = t1._contents += C.JSString_methods.substring$1(value, start); t1._contents = t2 + '"'; } } }, $signature: 597 }; H._HeaderValue__parse_done.prototype = { call$0: function() { return this._box_0.index === this.s.length; }, $signature: 188 }; H._HeaderValue__parse_skipWS.prototype = { call$0: function() { var t1, t2, t3, t4, t5; for (t1 = this.done, t2 = this._box_0, t3 = this.s; !t1.call$0();) { t4 = t2.index; t5 = t3[t4]; if (t5 !== " " && t5 !== "\t") return; t2.index = t4 + 1; } }, $signature: 0 }; H._HeaderValue__parse_parseValue.prototype = { call$0: function() { var t2, t3, t4, t5, char, t6, _this = this, t1 = _this._box_0, start = t1.index; for (t2 = _this.done, t3 = _this.s, t4 = _this.parameterSeparator; !t2.call$0();) { t5 = t1.index; char = t3[t5]; if (char !== " ") if (char !== "\t") t6 = char === t4; else t6 = true; else t6 = true; if (t6) break; t1.index = t5 + 1; } return C.JSString_methods.substring$2(t3, start, t1.index); }, $signature: 71 }; H._HeaderValue__parse_expect.prototype = { call$1: function(expected) { var _this = this; if (_this.done.call$0() || _this.s[_this._box_0.index] !== expected) throw H.wrapException(H.HttpException$("Failed to parse header value", null)); ++_this._box_0.index; }, $signature: 88 }; H._HeaderValue__parse_maybeExpect.prototype = { call$1: function(expected) { var _this = this; if (_this.done.call$0() || !C.JSString_methods.startsWith$2(_this.s, expected, _this._box_0.index)) return false; ++_this._box_0.index; return true; }, $signature: 73 }; H._HeaderValue__parse_parseParameters.prototype = { call$0: function() { var t2, t3, t4, parseParameterName, parseParameterValue, t5, $name, value, _this = this, t1 = _this.$this, parameters = t1._parameters; if (parameters == null) parameters = t1._parameters = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.nullable_String); t1 = _this._box_0; t2 = _this.done; t3 = _this.s; t4 = _this.parameterSeparator; parseParameterName = new H._HeaderValue__parse_parseParameters_parseParameterName(t1, t2, t3, t4, _this.valueSeparator); parseParameterValue = new H._HeaderValue__parse_parseParameters_parseParameterValue(t1, t2, t3, _this.preserveBackslash, _this.parseValue); for (t1 = _this.expect, t3 = _this.maybeExpect, t5 = _this.skipWS; !t2.call$0();) { t5.call$0(); if (t2.call$0()) return; $name = parseParameterName.call$0(); t5.call$0(); if (t3.call$1("=")) { t5.call$0(); value = parseParameterValue.call$0(); parameters.$indexSet(0, $name, $name === "charset" && true ? value.toLowerCase() : value); t5.call$0(); } else if ($name.length !== 0) parameters.$indexSet(0, $name, null); if (t2.call$0()) return; t1.call$1(t4); } }, $signature: 0 }; H._HeaderValue__parse_parseParameters_parseParameterName.prototype = { call$0: function() { var t2, t3, t4, t5, char, _this = this, t1 = _this._box_0, start = t1.index; for (t2 = _this.done, t3 = _this.s, t4 = _this.parameterSeparator; !t2.call$0();) { t5 = t1.index; char = t3[t5]; if (char === " " || char === "\t" || char === "=" || char === t4 || false) break; t1.index = t5 + 1; } return C.JSString_methods.substring$2(t3, start, t1.index).toLowerCase(); }, $signature: 71 }; H._HeaderValue__parse_parseParameters_parseParameterValue.prototype = { call$0: function() { var t2, t3, t4, t5, t6, char, _this = this, _s28_ = "Failed to parse header value", t1 = _this.done; if (!t1.call$0() && _this.s[_this._box_0.index] === '"') { t2 = _this._box_0; ++t2.index; for (t3 = _this.s, t4 = t3.length, t5 = ""; !t1.call$0();) { t6 = t2.index; char = t3[t6]; if (char === "\\") { ++t6; if (t6 === t4) throw H.wrapException(H.HttpException$(_s28_, null)); t2.index = t6; } else if (char === '"') { t2.index = t6 + 1; return t5.charCodeAt(0) == 0 ? t5 : t5; } t5 += t3[t6]; t2.index = t6 + 1; } throw H.wrapException(H.HttpException$(_s28_, null)); } else return _this.parseValue.call$0(); }, $signature: 71 }; H._ContentType.prototype = {}; J.Interceptor.prototype = { $eq: function(receiver, other) { return receiver === other; }, get$hashCode: function(receiver) { return H.Primitives_objectHashCode(receiver); }, toString$0: function(receiver) { return "Instance of '" + H.S(H.Primitives_objectTypeName(receiver)) + "'"; }, noSuchMethod$1: function(receiver, invocation) { throw H.wrapException(P.NoSuchMethodError$(receiver, invocation.get$memberName(), invocation.get$positionalArguments(), invocation.get$namedArguments())); }, get$runtimeType: function(receiver) { return H.getRuntimeType(receiver); } }; J.JSBool.prototype = { toString$0: function(receiver) { return String(receiver); }, $and: function(receiver, other) { return other && receiver; }, $or: function(receiver, other) { if (!H._isBool(other)) H.throwExpression(H.argumentErrorValue(other)); return other || receiver; }, $xor: function(receiver, other) { return receiver; }, get$hashCode: function(receiver) { return receiver ? 519018 : 218159; }, get$runtimeType: function(receiver) { return C.Type_bool_lhE; }, $isbool: 1 }; J.JSNull.prototype = { $eq: function(receiver, other) { return null == other; }, toString$0: function(receiver) { return "null"; }, get$hashCode: function(receiver) { return 0; }, get$runtimeType: function(receiver) { return C.Type_Null_Yyn; }, noSuchMethod$1: function(receiver, invocation) { return this.super$Interceptor$noSuchMethod(receiver, invocation); }, $isNull: 1 }; J.JavaScriptObject.prototype = { get$hashCode: function(receiver) { return 0; }, get$runtimeType: function(receiver) { return C.Type_JSObject_8k0; }, toString$0: function(receiver) { return String(receiver); }, $isJSObject: 1, $isCanvasKit: 1, $isSkFontSlant: 1, $isSkFontWeight: 1, $isSkTextDirection: 1, $isSkTextAlign: 1, $isSkRectHeightStyle: 1, $isSkRectWidthStyle: 1, $isSkClipOp: 1, $isSkFillType: 1, $isSkBlurStyle: 1, $isSkStrokeCap: 1, $isSkPaintStyle: 1, $isSkBlendMode: 1, $isSkStrokeJoin: 1, $isSkFilterQuality: 1, $isSkTileMode: 1, $isSkAnimatedImage: 1, $isSkImage: 1, $isSkShader: 1, $isSkPaint: 1, $isSkMaskFilter: 1, $isSkColorFilter: 1, $isSkPath: 1, $isSkPicture: 1, $isSkTextStyle: 1, $isSkTextDecorationStyle: 1, $isSkTextBaseline: 1, $isSkTextShadow: 1, $isSkFontFeature: 1, $isSkTypeface: 1, $isSkParagraph: 1, $isSkDeletable: 1, $isJsUrlStrategy: 1, $isGoogleAuthInitFailureError: 1, $isGoogleAuthSignInError: 1, $isGoogleAuth: 1, $isGoogleUser: 1, $isPdfJsDoc: 1, $isPdfJsPage: 1, get$BlendMode: function(obj) { return obj.BlendMode; }, get$PaintStyle: function(obj) { return obj.PaintStyle; }, get$StrokeCap: function(obj) { return obj.StrokeCap; }, get$StrokeJoin: function(obj) { return obj.StrokeJoin; }, get$FilterQuality: function(obj) { return obj.FilterQuality; }, get$BlurStyle: function(obj) { return obj.BlurStyle; }, get$TileMode: function(obj) { return obj.TileMode; }, get$FilterMode: function(obj) { return obj.FilterMode; }, get$MipmapMode: function(obj) { return obj.MipmapMode; }, get$FillType: function(obj) { return obj.FillType; }, get$AlphaType: function(obj) { return obj.AlphaType; }, get$ColorType: function(obj) { return obj.ColorType; }, get$ClipOp: function(obj) { return obj.ClipOp; }, get$RectHeightStyle: function(obj) { return obj.RectHeightStyle; }, get$RectWidthStyle: function(obj) { return obj.RectWidthStyle; }, get$TextAlign: function(obj) { return obj.TextAlign; }, get$TextDirection: function(obj) { return obj.TextDirection; }, get$FontWeight: function(obj) { return obj.FontWeight; }, get$FontSlant: function(obj) { return obj.FontSlant; }, MakeAnimatedImageFromEncoded$1: function(receiver, p0) { return receiver.MakeAnimatedImageFromEncoded(p0); }, get$Shader: function(obj) { return obj.Shader; }, get$MaskFilter: function(obj) { return obj.MaskFilter; }, get$ColorFilter: function(obj) { return obj.ColorFilter; }, get$Path: function(obj) { return obj.Path; }, computeTonalColors$1: function(receiver, p0) { return receiver.computeTonalColors(p0); }, get$ParagraphBuilder: function(obj) { return obj.ParagraphBuilder; }, ParagraphStyle$1: function(receiver, p0) { return receiver.ParagraphStyle(p0); }, TextStyle$1: function(receiver, p0) { return receiver.TextStyle(p0); }, get$NoDecoration: function(obj) { return obj.NoDecoration; }, get$UnderlineDecoration: function(obj) { return obj.UnderlineDecoration; }, get$OverlineDecoration: function(obj) { return obj.OverlineDecoration; }, get$LineThroughDecoration: function(obj) { return obj.LineThroughDecoration; }, get$DecorationStyle: function(obj) { return obj.DecorationStyle; }, get$TextBaseline: function(obj) { return obj.TextBaseline; }, get$FontMgr: function(obj) { return obj.FontMgr; }, get$TypefaceFontProvider: function(obj) { return obj.TypefaceFontProvider; }, GetWebGLContext$2: function(receiver, p0, p1) { return receiver.GetWebGLContext(p0, p1); }, MakeGrContext$1: function(receiver, p0) { return receiver.MakeGrContext(p0); }, MakeOnScreenGLSurface$4: function(receiver, p0, p1, p2, p3) { return receiver.MakeOnScreenGLSurface(p0, p1, p2, p3); }, MakeSWCanvasSurface$1: function(receiver, p0) { return receiver.MakeSWCanvasSurface(p0); }, setCurrentContext$1: function(receiver, p0) { return receiver.setCurrentContext(p0); }, MakeImage$3: function(receiver, p0, p1, p2) { return receiver.MakeImage(p0, p1, p2); }, then$1$1: function(receiver, p0) { return receiver.then(p0); }, then$1: function(receiver, p0) { return receiver.then(p0); }, getCanvas$0: function(receiver) { return receiver.getCanvas(); }, flush$0: function(receiver) { return receiver.flush(); }, get$width: function(obj) { return obj.width; }, width$0: function(receiver) { return receiver.width(); }, get$height: function(obj) { return obj.height; }, height$0: function(receiver) { return receiver.height(); }, get$dispose: function(obj) { return obj.dispose; }, dispose$0: function(receiver) { return receiver.dispose(); }, setResourceCacheLimitBytes$1: function(receiver, p0) { return receiver.setResourceCacheLimitBytes(p0); }, releaseResourcesAndAbandonContext$0: function(receiver) { return receiver.releaseResourcesAndAbandonContext(); }, delete$0: function(receiver) { return receiver.delete(); }, get$Upright: function(obj) { return obj.Upright; }, get$Italic: function(obj) { return obj.Italic; }, get$value: function(obj) { return obj.value; }, value$0: function(receiver) { return receiver.value(); }, get$Thin: function(obj) { return obj.Thin; }, get$ExtraLight: function(obj) { return obj.ExtraLight; }, get$Light: function(obj) { return obj.Light; }, get$Normal: function(obj) { return obj.Normal; }, get$Medium: function(obj) { return obj.Medium; }, get$SemiBold: function(obj) { return obj.SemiBold; }, get$Bold: function(obj) { return obj.Bold; }, get$ExtraBold: function(obj) { return obj.ExtraBold; }, get$ExtraBlack: function(obj) { return obj.ExtraBlack; }, get$RTL: function(obj) { return obj.RTL; }, get$LTR: function(obj) { return obj.LTR; }, get$Left: function(obj) { return obj.Left; }, get$Right: function(obj) { return obj.Right; }, get$Center: function(obj) { return obj.Center; }, get$Justify: function(obj) { return obj.Justify; }, get$Start: function(obj) { return obj.Start; }, get$End: function(obj) { return obj.End; }, get$Tight: function(obj) { return obj.Tight; }, get$Max: function(obj) { return obj.Max; }, get$Difference: function(obj) { return obj.Difference; }, get$Intersect: function(obj) { return obj.Intersect; }, get$Winding: function(obj) { return obj.Winding; }, get$EvenOdd: function(obj) { return obj.EvenOdd; }, get$Solid: function(obj) { return obj.Solid; }, get$Outer: function(obj) { return obj.Outer; }, get$Inner: function(obj) { return obj.Inner; }, get$Butt: function(obj) { return obj.Butt; }, get$Round: function(obj) { return obj.Round; }, get$Square: function(obj) { return obj.Square; }, get$Stroke: function(obj) { return obj.Stroke; }, get$Fill: function(obj) { return obj.Fill; }, get$Clear: function(obj) { return obj.Clear; }, get$Src: function(obj) { return obj.Src; }, get$Dst: function(obj) { return obj.Dst; }, get$SrcOver: function(obj) { return obj.SrcOver; }, get$DstOver: function(obj) { return obj.DstOver; }, get$SrcIn: function(obj) { return obj.SrcIn; }, get$DstIn: function(obj) { return obj.DstIn; }, get$SrcOut: function(obj) { return obj.SrcOut; }, get$DstOut: function(obj) { return obj.DstOut; }, get$SrcATop: function(obj) { return obj.SrcATop; }, get$DstATop: function(obj) { return obj.DstATop; }, get$Xor: function(obj) { return obj.Xor; }, get$Plus: function(obj) { return obj.Plus; }, get$Modulate: function(obj) { return obj.Modulate; }, get$Screen: function(obj) { return obj.Screen; }, get$Overlay: function(obj) { return obj.Overlay; }, get$Darken: function(obj) { return obj.Darken; }, get$Lighten: function(obj) { return obj.Lighten; }, get$ColorDodge: function(obj) { return obj.ColorDodge; }, get$ColorBurn: function(obj) { return obj.ColorBurn; }, get$HardLight: function(obj) { return obj.HardLight; }, get$SoftLight: function(obj) { return obj.SoftLight; }, get$Exclusion: function(obj) { return obj.Exclusion; }, get$Multiply: function(obj) { return obj.Multiply; }, get$Hue: function(obj) { return obj.Hue; }, get$Saturation: function(obj) { return obj.Saturation; }, get$Color: function(obj) { return obj.Color; }, get$Luminosity: function(obj) { return obj.Luminosity; }, get$Miter: function(obj) { return obj.Miter; }, get$Bevel: function(obj) { return obj.Bevel; }, get$None: function(obj) { return obj.None; }, get$Low: function(obj) { return obj.Low; }, get$High: function(obj) { return obj.High; }, get$Clamp: function(obj) { return obj.Clamp; }, get$Repeat: function(obj) { return obj.Repeat; }, get$Mirror: function(obj) { return obj.Mirror; }, get$Decal: function(obj) { return obj.Decal; }, get$Nearest: function(obj) { return obj.Nearest; }, get$Linear: function(obj) { return obj.Linear; }, get$Premul: function(obj) { return obj.Premul; }, get$RGBA_8888: function(obj) { return obj.RGBA_8888; }, getFrameCount$0: function(receiver) { return receiver.getFrameCount(); }, getRepetitionCount$0: function(receiver) { return receiver.getRepetitionCount(); }, decodeNextFrame$0: function(receiver) { return receiver.decodeNextFrame(); }, getCurrentFrame$0: function(receiver) { return receiver.getCurrentFrame(); }, get$isDeleted: function(obj) { return obj.isDeleted; }, isDeleted$0: function(receiver) { return receiver.isDeleted(); }, readPixels$3: function(receiver, p0, p1, p2) { return receiver.readPixels(p0, p1, p2); }, encodeToBytes$0: function(receiver) { return receiver.encodeToBytes(); }, isAliasOf$1: function(receiver, p0) { return receiver.isAliasOf(p0); }, MakeLinearGradient$5: function(receiver, p0, p1, p2, p3, p4) { return receiver.MakeLinearGradient(p0, p1, p2, p3, p4); }, MakeBlur$3: function(receiver, p0, p1, p2) { return receiver.MakeBlur(p0, p1, p2); }, setBlendMode$1: function(receiver, p0) { return receiver.setBlendMode(p0); }, setStyle$1: function(receiver, p0) { return receiver.setStyle(p0); }, setStrokeWidth$1: function(receiver, p0) { return receiver.setStrokeWidth(p0); }, setStrokeCap$1: function(receiver, p0) { return receiver.setStrokeCap(p0); }, setStrokeJoin$1: function(receiver, p0) { return receiver.setStrokeJoin(p0); }, setAntiAlias$1: function(receiver, p0) { return receiver.setAntiAlias(p0); }, setColorInt$1: function(receiver, p0) { return receiver.setColorInt(p0); }, setShader$1: function(receiver, p0) { return receiver.setShader(p0); }, setMaskFilter$1: function(receiver, p0) { return receiver.setMaskFilter(p0); }, setFilterQuality$1: function(receiver, p0) { return receiver.setFilterQuality(p0); }, setColorFilter$1: function(receiver, p0) { return receiver.setColorFilter(p0); }, setStrokeMiter$1: function(receiver, p0) { return receiver.setStrokeMiter(p0); }, setImageFilter$1: function(receiver, p0) { return receiver.setImageFilter(p0); }, MakeBlend$2: function(receiver, p0, p1) { return receiver.MakeBlend(p0, p1); }, MakeFromCmds$1: function(receiver, p0) { return receiver.MakeFromCmds(p0); }, toTypedArray$0: function(receiver) { return receiver.toTypedArray(); }, setFillType$1: function(receiver, p0) { return receiver.setFillType(p0); }, addArc$3: function(receiver, p0, p1, p2) { return receiver.addArc(p0, p1, p2); }, addOval$3: function(receiver, p0, p1, p2) { return receiver.addOval(p0, p1, p2); }, addRRect$2: function(receiver, p0, p1) { return receiver.addRRect(p0, p1); }, addRect$1: function(receiver, p0) { return receiver.addRect(p0); }, arcToOval$4: function(receiver, p0, p1, p2, p3) { return receiver.arcToOval(p0, p1, p2, p3); }, arcToRotated$7: function(receiver, p0, p1, p2, p3, p4, p5, p6) { return receiver.arcToRotated(p0, p1, p2, p3, p4, p5, p6); }, get$close: function(obj) { return obj.close; }, close$0: function(receiver) { return receiver.close(); }, get$contains: function(obj) { return obj.contains; }, contains$2: function(receiver, p0, p1) { return receiver.contains(p0, p1); }, getBounds$0: function(receiver) { return receiver.getBounds(); }, lineTo$2: function(receiver, p0, p1) { return receiver.lineTo(p0, p1); }, moveTo$2: function(receiver, p0, p1) { return receiver.moveTo(p0, p1); }, quadTo$4: function(receiver, p0, p1, p2, p3) { return receiver.quadTo(p0, p1, p2, p3); }, rMoveTo$2: function(receiver, p0, p1) { return receiver.rMoveTo(p0, p1); }, reset$0: function(receiver) { return receiver.reset(); }, toSVGString$0: function(receiver) { return receiver.toSVGString(); }, get$isEmpty: function(obj) { return obj.isEmpty; }, isEmpty$0: function(receiver) { return receiver.isEmpty(); }, copy$0: function(receiver) { return receiver.copy(); }, get$transform: function(obj) { return obj.transform; }, transform$9: function(receiver, p0, p1, p2, p3, p4, p5, p6, p7, p8) { return receiver.transform(p0, p1, p2, p3, p4, p5, p6, p7, p8); }, toCmds$0: function(receiver) { return receiver.toCmds(); }, get$next: function(obj) { return obj.next; }, get$length: function(obj) { return obj.length; }, beginRecording$1: function(receiver, p0) { return receiver.beginRecording(p0); }, finishRecordingAsPicture$0: function(receiver) { return receiver.finishRecordingAsPicture(); }, clear$1: function(receiver, p0) { return receiver.clear(p0); }, clipPath$3: function(receiver, p0, p1, p2) { return receiver.clipPath(p0, p1, p2); }, clipRRect$3: function(receiver, p0, p1, p2) { return receiver.clipRRect(p0, p1, p2); }, clipRect$3: function(receiver, p0, p1, p2) { return receiver.clipRect(p0, p1, p2); }, drawArc$5: function(receiver, p0, p1, p2, p3, p4) { return receiver.drawArc(p0, p1, p2, p3, p4); }, drawCircle$4: function(receiver, p0, p1, p2, p3) { return receiver.drawCircle(p0, p1, p2, p3); }, drawDRRect$3: function(receiver, p0, p1, p2) { return receiver.drawDRRect(p0, p1, p2); }, drawImageRectCubic$6: function(receiver, p0, p1, p2, p3, p4, p5) { return receiver.drawImageRectCubic(p0, p1, p2, p3, p4, p5); }, drawImageRectOptions$6: function(receiver, p0, p1, p2, p3, p4, p5) { return receiver.drawImageRectOptions(p0, p1, p2, p3, p4, p5); }, drawLine$5: function(receiver, p0, p1, p2, p3, p4) { return receiver.drawLine(p0, p1, p2, p3, p4); }, drawPaint$1: function(receiver, p0) { return receiver.drawPaint(p0); }, drawPath$2: function(receiver, p0, p1) { return receiver.drawPath(p0, p1); }, drawRRect$2: function(receiver, p0, p1) { return receiver.drawRRect(p0, p1); }, drawRect$2: function(receiver, p0, p1) { return receiver.drawRect(p0, p1); }, drawShadow$7: function(receiver, p0, p1, p2, p3, p4, p5, p6) { return receiver.drawShadow(p0, p1, p2, p3, p4, p5, p6); }, save$0: function(receiver) { return receiver.save(); }, saveLayer$4: function(receiver, p0, p1, p2, p3) { return receiver.saveLayer(p0, p1, p2, p3); }, restore$0: function(receiver) { return receiver.restore(); }, restoreToCount$1: function(receiver, p0) { return receiver.restoreToCount(p0); }, rotate$3: function(receiver, p0, p1, p2) { return receiver.rotate(p0, p1, p2); }, scale$2: function(receiver, p0, p1) { return receiver.scale(p0, p1); }, concat$1: function(receiver, p0) { return receiver.concat(p0); }, translate$2: function(receiver, p0, p1) { return receiver.translate(p0, p1); }, drawPicture$1: function(receiver, p0) { return receiver.drawPicture(p0); }, drawParagraph$3: function(receiver, p0, p1, p2) { return receiver.drawParagraph(p0, p1, p2); }, MakeFromFontProvider$2: function(receiver, p0, p1) { return receiver.MakeFromFontProvider(p0, p1); }, addText$1: function(receiver, p0) { return receiver.addText(p0); }, pushStyle$1: function(receiver, p0) { return receiver.pushStyle(p0); }, pushPaintStyle$3: function(receiver, p0, p1, p2) { return receiver.pushPaintStyle(p0, p1, p2); }, pop$0: function(receiver) { return receiver.pop(); }, addPlaceholder$5: function(receiver, p0, p1, p2, p3, p4) { return receiver.addPlaceholder(p0, p1, p2, p3, p4); }, get$build: function(obj) { return obj.build; }, build$0: function(receiver) { return receiver.build(); }, set$textAlign: function(obj, v) { return obj.textAlign = v; }, set$textDirection: function(obj, v) { return obj.textDirection = v; }, set$textHeightBehavior: function(obj, v) { return obj.textHeightBehavior = v; }, set$maxLines: function(obj, v) { return obj.maxLines = v; }, set$ellipsis: function(obj, v) { return obj.ellipsis = v; }, set$textStyle: function(obj, v) { return obj.textStyle = v; }, set$strutStyle: function(obj, v) { return obj.strutStyle = v; }, get$Double: function(obj) { return obj.Double; }, get$Dotted: function(obj) { return obj.Dotted; }, get$Dashed: function(obj) { return obj.Dashed; }, get$Wavy: function(obj) { return obj.Wavy; }, get$Alphabetic: function(obj) { return obj.Alphabetic; }, get$Ideographic: function(obj) { return obj.Ideographic; }, set$color: function(obj, v) { return obj.color = v; }, set$decoration: function(obj, v) { return obj.decoration = v; }, set$textBaseline: function(obj, v) { return obj.textBaseline = v; }, set$locale: function(obj, v) { return obj.locale = v; }, set$offset: function(obj, v) { return obj.offset = v; }, set$value: function(obj, v) { return obj.value = v; }, getGlyphIDs$1: function(receiver, p0) { return receiver.getGlyphIDs(p0); }, getGlyphBounds$3: function(receiver, p0, p1, p2) { return receiver.getGlyphBounds(p0, p1, p2); }, MakeTypefaceFromData$1: function(receiver, p0) { return receiver.MakeTypefaceFromData(p0); }, registerFont$2: function(receiver, p0, p1) { return receiver.registerFont(p0, p1); }, get$startIndex: function(obj) { return obj.startIndex; }, get$endIndex: function(obj) { return obj.endIndex; }, getAlphabeticBaseline$0: function(receiver) { return receiver.getAlphabeticBaseline(); }, get$didExceedMaxLines: function(obj) { return obj.didExceedMaxLines; }, didExceedMaxLines$0: function(receiver) { return receiver.didExceedMaxLines(); }, getHeight$0: function(receiver) { return receiver.getHeight(); }, getIdeographicBaseline$0: function(receiver) { return receiver.getIdeographicBaseline(); }, getLineMetrics$0: function(receiver) { return receiver.getLineMetrics(); }, getLongestLine$0: function(receiver) { return receiver.getLongestLine(); }, getMaxIntrinsicWidth$0: function(receiver) { return receiver.getMaxIntrinsicWidth(); }, getMinIntrinsicWidth$0: function(receiver) { return receiver.getMinIntrinsicWidth(); }, getMaxWidth$0: function(receiver) { return receiver.getMaxWidth(); }, getRectsForRange$4: function(receiver, p0, p1, p2, p3) { return receiver.getRectsForRange(p0, p1, p2, p3); }, getRectsForPlaceholders$0: function(receiver) { return receiver.getRectsForPlaceholders(); }, getGlyphPositionAtCoordinate$2: function(receiver, p0, p1) { return receiver.getGlyphPositionAtCoordinate(p0, p1); }, getWordBoundary$1: function(receiver, p0) { return receiver.getWordBoundary(p0); }, layout$1: function(receiver, p0) { return receiver.layout(p0); }, get$affinity: function(obj) { return obj.affinity; }, get$pos: function(obj) { return obj.pos; }, get$start: function(obj) { return obj.start; }, start$1: function(receiver, p0) { return receiver.start(p0); }, get$end: function(obj) { return obj.end; }, end$1: function(receiver, p0) { return receiver.end(p0); }, get$ambient: function(obj) { return obj.ambient; }, get$spot: function(obj) { return obj.spot; }, RefDefault$0: function(receiver) { return receiver.RefDefault(); }, Make$0: function(receiver) { return receiver.Make(); }, constructor$0: function(receiver) { return receiver.constructor(); }, get$name: function(obj) { return obj.name; }, register$2: function(receiver, p0, p1) { return receiver.register(p0, p1); }, get$size: function(obj) { return obj.size; }, addPopStateListener$1: function(receiver, p0) { return receiver.addPopStateListener(p0); }, getPath$0: function(receiver) { return receiver.getPath(); }, getState$0: function(receiver) { return receiver.getState(); }, pushState$3: function(receiver, p0, p1, p2) { return receiver.pushState(p0, p1, p2); }, replaceState$3: function(receiver, p0, p1, p2) { return receiver.replaceState(p0, p1, p2); }, go$1: function(receiver, p0) { return receiver.go(p0); }, get$error: function(obj) { return obj.error; }, get$details: function(obj) { return obj.details; }, isSignedIn$0: function(receiver) { return receiver.isSignedIn(); }, get$currentUser: function(obj) { return obj.currentUser; }, then$2: function(receiver, p0, p1) { return receiver.then(p0, p1); }, get$signOut: function(obj) { return obj.signOut; }, signOut$0: function(receiver) { return receiver.signOut(); }, get$disconnect: function(obj) { return obj.disconnect; }, disconnect$0: function(receiver) { return receiver.disconnect(); }, get$signIn: function(obj) { return obj.signIn; }, signIn$1: function(receiver, p0) { return receiver.signIn(p0); }, $get$0: function(receiver) { return receiver.get(); }, getId$0: function(receiver) { return receiver.getId(); }, getName$0: function(receiver) { return receiver.getName(); }, getImageUrl$0: function(receiver) { return receiver.getImageUrl(); }, getEmail$0: function(receiver) { return receiver.getEmail(); }, get$access_token: function(obj) { return obj.access_token; }, get$id_token: function(obj) { return obj.id_token; }, getBasicProfile$0: function(receiver) { return receiver.getBasicProfile(); }, getAuthResponse$0: function(receiver) { return receiver.getAuthResponse(); }, set$scale: function(obj, v) { return obj.scale = v; }, get$promise: function(obj) { return obj.promise; }, getPage$1: function(receiver, p0) { return receiver.getPage(p0); }, get$numPages: function(obj) { return obj.numPages; }, getViewport$1: function(receiver, p0) { return receiver.getViewport(p0); }, render$1: function(receiver, p0) { return receiver.render(p0); }, get$pageNumber: function(obj) { return obj.pageNumber; } }; J.PlainJavaScriptObject.prototype = {}; J.UnknownJavaScriptObject.prototype = {}; J.JavaScriptFunction.prototype = { toString$0: function(receiver) { var dartClosure = receiver[$.$get$DART_CLOSURE_PROPERTY_NAME()]; if (dartClosure == null) return this.super$JavaScriptObject$toString(receiver); return "JavaScript function for " + H.S(J.toString$0$(dartClosure)); }, $isFunction: 1 }; J.JSArray.prototype = { cast$1$0: function(receiver, $R) { return new H.CastList(receiver, H._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($R)._eval$1("CastList<1,2>")); }, add$1: function(receiver, value) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("add")); receiver.push(value); }, removeAt$1: function(receiver, index) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("removeAt")); if (!H._isInt(index)) throw H.wrapException(H.argumentErrorValue(index)); if (index < 0 || index >= receiver.length) throw H.wrapException(P.RangeError$value(index, null, null)); return receiver.splice(index, 1)[0]; }, insert$2: function(receiver, index, value) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("insert")); if (!H._isInt(index)) throw H.wrapException(H.argumentErrorValue(index)); if (index < 0 || index > receiver.length) throw H.wrapException(P.RangeError$value(index, null, null)); receiver.splice(index, 0, value); }, insertAll$2: function(receiver, index, iterable) { var insertionLength, end; if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("insertAll")); P.RangeError_checkValueInInterval(index, 0, receiver.length, "index"); if (!type$.EfficientLengthIterable_dynamic._is(iterable)) iterable = J.toList$0$ax(iterable); insertionLength = J.get$length$asx(iterable); receiver.length = receiver.length + insertionLength; end = index + insertionLength; this.setRange$4(receiver, end, receiver.length, receiver, index); this.setRange$3(receiver, index, end, iterable); }, removeLast$0: function(receiver) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("removeLast")); if (receiver.length === 0) throw H.wrapException(H.diagnoseIndexError(receiver, -1)); return receiver.pop(); }, remove$1: function(receiver, element) { var i; if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("remove")); for (i = 0; i < receiver.length; ++i) if (J.$eq$(receiver[i], element)) { receiver.splice(i, 1); return true; } return false; }, removeWhere$1: function(receiver, test) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); this._removeWhere$2(receiver, test, true); }, retainWhere$1: function(receiver, test) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("retainWhere")); this._removeWhere$2(receiver, test, false); }, _removeWhere$2: function(receiver, test, removeMatching) { var i, element, t1, retained = [], end = receiver.length; for (i = 0; i < end; ++i) { element = receiver[i]; if (!test.call$1(element) === removeMatching) retained.push(element); if (receiver.length !== end) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } t1 = retained.length; if (t1 === end) return; this.set$length(receiver, t1); for (i = 0; i < retained.length; ++i) receiver[i] = retained[i]; }, where$1: function(receiver, f) { return new H.WhereIterable(receiver, f, H._arrayInstanceType(receiver)._eval$1("WhereIterable<1>")); }, addAll$1: function(receiver, collection) { var t1; if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("addAll")); if (Array.isArray(collection)) { this._addAllFromArray$1(receiver, collection); return; } for (t1 = J.get$iterator$ax(collection); t1.moveNext$0();) receiver.push(t1.get$current(t1)); }, _addAllFromArray$1: function(receiver, array) { var i, len = array.length; if (len === 0) return; if (receiver === array) throw H.wrapException(P.ConcurrentModificationError$(receiver)); for (i = 0; i < len; ++i) receiver.push(array[i]); }, clear$0: function(receiver) { this.set$length(receiver, 0); }, forEach$1: function(receiver, f) { var i, end = receiver.length; for (i = 0; i < end; ++i) { f.call$1(receiver[i]); if (receiver.length !== end) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } }, map$1$1: function(receiver, f, $T) { return new H.MappedListIterable(receiver, f, H._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, join$1: function(receiver, separator) { var i, list = P.List_List$filled(receiver.length, "", false, type$.String); for (i = 0; i < receiver.length; ++i) list[i] = H.S(receiver[i]); return list.join(separator); }, take$1: function(receiver, n) { return H.SubListIterable$(receiver, 0, H.checkNotNullable(n, "count", type$.int), H._arrayInstanceType(receiver)._precomputed1); }, skip$1: function(receiver, n) { return H.SubListIterable$(receiver, n, null, H._arrayInstanceType(receiver)._precomputed1); }, reduce$1: function(receiver, combine) { var value, i, $length = receiver.length; if ($length === 0) throw H.wrapException(H.IterableElementError_noElement()); value = receiver[0]; for (i = 1; i < $length; ++i) { value = combine.call$2(value, receiver[i]); if ($length !== receiver.length) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return value; }, fold$1$2: function(receiver, initialValue, combine) { var value, i, $length = receiver.length; for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, receiver[i]); if (receiver.length !== $length) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return value; }, firstWhere$2$orElse: function(receiver, test, orElse) { var i, element, end = receiver.length; for (i = 0; i < end; ++i) { element = receiver[i]; if (test.call$1(element)) return element; if (receiver.length !== end) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw H.wrapException(H.IterableElementError_noElement()); }, firstWhere$1: function($receiver, test) { return this.firstWhere$2$orElse($receiver, test, null); }, lastWhere$2$orElse: function(receiver, test, orElse) { var i, element, $length = receiver.length; for (i = $length - 1; i >= 0; --i) { element = receiver[i]; if (test.call$1(element)) return element; if ($length !== receiver.length) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw H.wrapException(H.IterableElementError_noElement()); }, lastWhere$1: function($receiver, test) { return this.lastWhere$2$orElse($receiver, test, null); }, singleWhere$2$orElse: function(receiver, test, orElse) { var match, matchFound, i, element, $length = receiver.length; for (match = null, matchFound = false, i = 0; i < $length; ++i) { element = receiver[i]; if (test.call$1(element)) { if (matchFound) throw H.wrapException(H.IterableElementError_tooMany()); match = element; matchFound = true; } if ($length !== receiver.length) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (matchFound) return match; return orElse.call$0(); }, elementAt$1: function(receiver, index) { return receiver[index]; }, sublist$2: function(receiver, start, end) { if (start == null) H.throwExpression(H.argumentErrorValue(start)); if (!H._isInt(start)) throw H.wrapException(H.argumentErrorValue(start)); if (start < 0 || start > receiver.length) throw H.wrapException(P.RangeError$range(start, 0, receiver.length, "start", null)); if (end == null) end = receiver.length; else if (end < start || end > receiver.length) throw H.wrapException(P.RangeError$range(end, start, receiver.length, "end", null)); if (start === end) return H.setRuntimeTypeInfo([], H._arrayInstanceType(receiver)); return H.setRuntimeTypeInfo(receiver.slice(start, end), H._arrayInstanceType(receiver)); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, getRange$2: function(receiver, start, end) { P.RangeError_checkValidRange(start, end, receiver.length); return H.SubListIterable$(receiver, start, end, H._arrayInstanceType(receiver)._precomputed1); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(H.IterableElementError_noElement()); }, get$last: function(receiver) { var t1 = receiver.length; if (t1 > 0) return receiver[t1 - 1]; throw H.wrapException(H.IterableElementError_noElement()); }, get$single: function(receiver) { var t1 = receiver.length; if (t1 === 1) return receiver[0]; if (t1 === 0) throw H.wrapException(H.IterableElementError_noElement()); throw H.wrapException(H.IterableElementError_tooMany()); }, removeRange$2: function(receiver, start, end) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("removeRange")); P.RangeError_checkValidRange(start, end, receiver.length); receiver.splice(start, end - start); }, setRange$4: function(receiver, start, end, iterable, skipCount) { var $length, otherList, otherStart, t1, i; if (!!receiver.immutable$list) H.throwExpression(P.UnsupportedError$("setRange")); P.RangeError_checkValidRange(start, end, receiver.length); $length = end - start; if ($length === 0) return; P.RangeError_checkNotNegative(skipCount, "skipCount"); if (type$.List_dynamic._is(iterable)) { otherList = iterable; otherStart = skipCount; } else { otherList = J.skip$1$ax(iterable, skipCount).toList$1$growable(0, false); otherStart = 0; } t1 = J.getInterceptor$asx(otherList); if (otherStart + $length > t1.get$length(otherList)) throw H.wrapException(H.IterableElementError_tooFew()); if (otherStart < start) for (i = $length - 1; i >= 0; --i) receiver[start + i] = t1.$index(otherList, otherStart + i); else for (i = 0; i < $length; ++i) receiver[start + i] = t1.$index(otherList, otherStart + i); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, any$1: function(receiver, test) { var i, end = receiver.length; for (i = 0; i < end; ++i) { if (test.call$1(receiver[i])) return true; if (receiver.length !== end) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return false; }, every$1: function(receiver, test) { var i, end = receiver.length; for (i = 0; i < end; ++i) { if (!test.call$1(receiver[i])) return false; if (receiver.length !== end) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return true; }, get$reversed: function(receiver) { return new H.ReversedListIterable(receiver, H._arrayInstanceType(receiver)._eval$1("ReversedListIterable<1>")); }, sort$1: function(receiver, compare) { if (!!receiver.immutable$list) H.throwExpression(P.UnsupportedError$("sort")); H.Sort_sort(receiver, compare == null ? J._interceptors_JSArray__compareAny$closure() : compare); }, sort$0: function($receiver) { return this.sort$1($receiver, null); }, indexOf$2: function(receiver, element, start) { var i, $length = receiver.length; if (start >= $length) return -1; for (i = start; i < $length; ++i) if (J.$eq$(receiver[i], element)) return i; return -1; }, indexOf$1: function($receiver, element) { return this.indexOf$2($receiver, element, 0); }, contains$1: function(receiver, other) { var i; for (i = 0; i < receiver.length; ++i) if (J.$eq$(receiver[i], other)) return true; return false; }, get$isEmpty: function(receiver) { return receiver.length === 0; }, get$isNotEmpty: function(receiver) { return receiver.length !== 0; }, toString$0: function(receiver) { return P.IterableBase_iterableToFullString(receiver, "[", "]"); }, toList$1$growable: function(receiver, growable) { var t1 = H._arrayInstanceType(receiver); return growable ? H.setRuntimeTypeInfo(receiver.slice(0), t1) : J.JSArray_JSArray$markFixed(receiver.slice(0), t1._precomputed1); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(receiver) { return P.LinkedHashSet_LinkedHashSet$from(receiver, H._arrayInstanceType(receiver)._precomputed1); }, get$iterator: function(receiver) { return new J.ArrayIterator(receiver, receiver.length, H._arrayInstanceType(receiver)._eval$1("ArrayIterator<1>")); }, get$hashCode: function(receiver) { return H.Primitives_objectHashCode(receiver); }, get$length: function(receiver) { return receiver.length; }, set$length: function(receiver, newLength) { if (!!receiver.fixed$length) H.throwExpression(P.UnsupportedError$("set length")); if (newLength < 0) throw H.wrapException(P.RangeError$range(newLength, 0, null, "newLength", null)); receiver.length = newLength; }, $index: function(receiver, index) { if (!H._isInt(index)) throw H.wrapException(H.diagnoseIndexError(receiver, index)); if (index >= receiver.length || index < 0) throw H.wrapException(H.diagnoseIndexError(receiver, index)); return receiver[index]; }, $indexSet: function(receiver, index, value) { if (!!receiver.immutable$list) H.throwExpression(P.UnsupportedError$("indexed set")); if (!H._isInt(index)) throw H.wrapException(H.diagnoseIndexError(receiver, index)); if (index >= receiver.length || index < 0) throw H.wrapException(H.diagnoseIndexError(receiver, index)); receiver[index] = value; }, asMap$0: function(receiver) { return new H.ListMapView(receiver, H._arrayInstanceType(receiver)._eval$1("ListMapView<1>")); }, $add: function(receiver, other) { var t1 = P.List_List$of(receiver, true, H._arrayInstanceType(receiver)._precomputed1); this.addAll$1(t1, other); return t1; }, indexWhere$2: function(receiver, test, start) { var i; if (start >= receiver.length) return -1; for (i = start; i < receiver.length; ++i) if (test.call$1(receiver[i])) return i; return -1; }, indexWhere$1: function($receiver, test) { return this.indexWhere$2($receiver, test, 0); }, set$last: function(receiver, element) { var t1 = receiver.length; if (t1 === 0) throw H.wrapException(H.IterableElementError_noElement()); this.$indexSet(receiver, t1 - 1, element); }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; J.JSUnmodifiableArray.prototype = {}; J.ArrayIterator.prototype = { get$current: function(_) { return this.__interceptors$_current; }, moveNext$0: function() { var t2, _this = this, t1 = _this.__interceptors$_iterable, $length = t1.length; if (_this.__interceptors$_length !== $length) throw H.wrapException(H.throwConcurrentModificationError(t1)); t2 = _this.__interceptors$_index; if (t2 >= $length) { _this.__interceptors$_current = null; return false; } _this.__interceptors$_current = t1[t2]; _this.__interceptors$_index = t2 + 1; return true; } }; J.JSNumber.prototype = { compareTo$1: function(receiver, b) { var bIsNegative; if (typeof b != "number") throw H.wrapException(H.argumentErrorValue(b)); if (receiver < b) return -1; else if (receiver > b) return 1; else if (receiver === b) { if (receiver === 0) { bIsNegative = this.get$isNegative(b); if (this.get$isNegative(receiver) === bIsNegative) return 0; if (this.get$isNegative(receiver)) return -1; return 1; } return 0; } else if (isNaN(receiver)) { if (isNaN(b)) return 0; return 1; } else return -1; }, get$isNegative: function(receiver) { return receiver === 0 ? 1 / receiver < 0 : receiver < 0; }, get$sign: function(receiver) { var t1; if (receiver > 0) t1 = 1; else t1 = receiver < 0 ? -1 : receiver; return t1; }, toInt$0: function(receiver) { var t1; if (receiver >= -2147483648 && receiver <= 2147483647) return receiver | 0; if (isFinite(receiver)) { t1 = receiver < 0 ? Math.ceil(receiver) : Math.floor(receiver); return t1 + 0; } throw H.wrapException(P.UnsupportedError$("" + receiver + ".toInt()")); }, ceil$0: function(receiver) { var truncated, d; if (receiver >= 0) { if (receiver <= 2147483647) { truncated = receiver | 0; return receiver === truncated ? truncated : truncated + 1; } } else if (receiver >= -2147483648) return receiver | 0; d = Math.ceil(receiver); if (isFinite(d)) return d; throw H.wrapException(P.UnsupportedError$("" + receiver + ".ceil()")); }, floor$0: function(receiver) { var truncated, d; if (receiver >= 0) { if (receiver <= 2147483647) return receiver | 0; } else if (receiver >= -2147483648) { truncated = receiver | 0; return receiver === truncated ? truncated : truncated - 1; } d = Math.floor(receiver); if (isFinite(d)) return d; throw H.wrapException(P.UnsupportedError$("" + receiver + ".floor()")); }, round$0: function(receiver) { if (receiver > 0) { if (receiver !== 1 / 0) return Math.round(receiver); } else if (receiver > -1 / 0) return 0 - Math.round(0 - receiver); throw H.wrapException(P.UnsupportedError$("" + receiver + ".round()")); }, roundToDouble$0: function(receiver) { if (receiver < 0) return -Math.round(-receiver); else return Math.round(receiver); }, clamp$2: function(receiver, lowerLimit, upperLimit) { if (typeof lowerLimit != "number") throw H.wrapException(H.argumentErrorValue(lowerLimit)); if (typeof upperLimit != "number") throw H.wrapException(H.argumentErrorValue(upperLimit)); if (this.compareTo$1(lowerLimit, upperLimit) > 0) throw H.wrapException(H.argumentErrorValue(lowerLimit)); if (this.compareTo$1(receiver, lowerLimit) < 0) return lowerLimit; if (this.compareTo$1(receiver, upperLimit) > 0) return upperLimit; return receiver; }, toDouble$0: function(receiver) { return receiver; }, toStringAsFixed$1: function(receiver, fractionDigits) { var result; if (!H._isInt(fractionDigits)) H.throwExpression(H.argumentErrorValue(fractionDigits)); if (fractionDigits > 20) throw H.wrapException(P.RangeError$range(fractionDigits, 0, 20, "fractionDigits", null)); result = receiver.toFixed(fractionDigits); if (receiver === 0 && this.get$isNegative(receiver)) return "-" + result; return result; }, toRadixString$1: function(receiver, radix) { var result, match, exponent, t1; if (radix < 2 || radix > 36) throw H.wrapException(P.RangeError$range(radix, 2, 36, "radix", null)); result = receiver.toString(radix); if (C.JSString_methods.codeUnitAt$1(result, result.length - 1) !== 41) return result; match = /^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(result); if (match == null) H.throwExpression(P.UnsupportedError$("Unexpected toString result: " + result)); result = match[1]; exponent = +match[3]; t1 = match[2]; if (t1 != null) { result += t1; exponent -= t1.length; } return result + C.JSString_methods.$mul("0", exponent); }, toString$0: function(receiver) { if (receiver === 0 && 1 / receiver < 0) return "-0.0"; else return "" + receiver; }, get$hashCode: function(receiver) { var absolute, floorLog2, factor, scaled, intValue = receiver | 0; if (receiver === intValue) return intValue & 536870911; absolute = Math.abs(receiver); floorLog2 = Math.log(absolute) / 0.6931471805599453 | 0; factor = Math.pow(2, floorLog2); scaled = absolute < 1 ? absolute / factor : factor / absolute; return ((scaled * 9007199254740992 | 0) + (scaled * 3542243181176521 | 0)) * 599197 + floorLog2 * 1259 & 536870911; }, $add: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver + other; }, $sub: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver - other; }, $div: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver / other; }, $mul: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver * other; }, $mod: function(receiver, other) { var result; if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); result = receiver % other; if (result === 0) return 0; if (result > 0) return result; if (other < 0) return result - other; else return result + other; }, $tdiv: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); if ((receiver | 0) === receiver) if (other >= 1 || other < -1) return receiver / other | 0; return this._tdivSlow$1(receiver, other); }, _tdivFast$1: function(receiver, other) { return (receiver | 0) === receiver ? receiver / other | 0 : this._tdivSlow$1(receiver, other); }, _tdivSlow$1: function(receiver, other) { var quotient = receiver / other; if (quotient >= -2147483648 && quotient <= 2147483647) return quotient | 0; if (quotient > 0) { if (quotient !== 1 / 0) return Math.floor(quotient); } else if (quotient > -1 / 0) return Math.ceil(quotient); throw H.wrapException(P.UnsupportedError$("Result of truncating division is " + H.S(quotient) + ": " + H.S(receiver) + " ~/ " + H.S(other))); }, $shl: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); if (other < 0) throw H.wrapException(H.argumentErrorValue(other)); return other > 31 ? 0 : receiver << other >>> 0; }, _shlPositive$1: function(receiver, other) { return other > 31 ? 0 : receiver << other >>> 0; }, $shr: function(receiver, other) { var t1; if (other < 0) throw H.wrapException(H.argumentErrorValue(other)); if (receiver > 0) t1 = this._shrBothPositive$1(receiver, other); else { t1 = other > 31 ? 31 : other; t1 = receiver >> t1 >>> 0; } return t1; }, _shrOtherPositive$1: function(receiver, other) { var t1; if (receiver > 0) t1 = this._shrBothPositive$1(receiver, other); else { t1 = other > 31 ? 31 : other; t1 = receiver >> t1 >>> 0; } return t1; }, _shrReceiverPositive$1: function(receiver, other) { if (other < 0) throw H.wrapException(H.argumentErrorValue(other)); return this._shrBothPositive$1(receiver, other); }, _shrBothPositive$1: function(receiver, other) { return other > 31 ? 0 : receiver >>> other; }, $or: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return (receiver | other) >>> 0; }, $lt: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver < other; }, $gt: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver > other; }, $ge: function(receiver, other) { if (typeof other != "number") throw H.wrapException(H.argumentErrorValue(other)); return receiver >= other; }, get$runtimeType: function(receiver) { return C.Type_num_cv7; }, $isComparable: 1, $isdouble: 1, $isnum: 1 }; J.JSInt.prototype = { get$sign: function(receiver) { var t1; if (receiver > 0) t1 = 1; else t1 = receiver < 0 ? -1 : receiver; return t1; }, get$bitLength: function(receiver) { var wordBits, i, t1 = receiver < 0 ? -receiver - 1 : receiver, nonneg = t1; for (wordBits = 32; nonneg >= 4294967296;) { nonneg = this._tdivFast$1(nonneg, 4294967296); wordBits += 32; } i = nonneg | nonneg >> 1; i |= i >> 2; i |= i >> 4; i |= i >> 8; i = (i | i >> 16) >>> 0; i = (i >>> 0) - (i >>> 1 & 1431655765); i = (i & 858993459) + (i >>> 2 & 858993459); i = i + (i >>> 4) & 252645135; i += i >>> 8; return wordBits - (32 - (i + (i >>> 16) & 63)); }, get$runtimeType: function(receiver) { return C.Type_int_tHn; }, $isint: 1 }; J.JSNumNotInt.prototype = { get$runtimeType: function(receiver) { return C.Type_double_K1J; } }; J.JSString.prototype = { codeUnitAt$1: function(receiver, index) { if (!H._isInt(index)) throw H.wrapException(H.diagnoseIndexError(receiver, index)); if (index < 0) throw H.wrapException(H.diagnoseIndexError(receiver, index)); if (index >= receiver.length) H.throwExpression(H.diagnoseIndexError(receiver, index)); return receiver.charCodeAt(index); }, _codeUnitAt$1: function(receiver, index) { if (index >= receiver.length) throw H.wrapException(H.diagnoseIndexError(receiver, index)); return receiver.charCodeAt(index); }, allMatches$2: function(receiver, string, start) { var t1; if (typeof string != "string") H.throwExpression(H.argumentErrorValue(string)); t1 = string.length; if (start > t1) throw H.wrapException(P.RangeError$range(start, 0, t1, null, null)); return new H._StringAllMatchesIterable(string, receiver, start); }, allMatches$1: function($receiver, string) { return this.allMatches$2($receiver, string, 0); }, matchAsPrefix$2: function(receiver, string, start) { var t1, i, _null = null; if (start < 0 || start > string.length) throw H.wrapException(P.RangeError$range(start, 0, string.length, _null, _null)); t1 = receiver.length; if (start + t1 > string.length) return _null; for (i = 0; i < t1; ++i) if (this.codeUnitAt$1(string, start + i) !== this._codeUnitAt$1(receiver, i)) return _null; return new H.StringMatch(start, receiver); }, $add: function(receiver, other) { if (typeof other != "string") throw H.wrapException(P.ArgumentError$value(other, null, null)); return receiver + other; }, endsWith$1: function(receiver, other) { var otherLength, t1; if (typeof other != "string") H.throwExpression(H.argumentErrorValue(other)); otherLength = other.length; t1 = receiver.length; if (otherLength > t1) return false; return other === this.substring$1(receiver, t1 - otherLength); }, replaceFirst$2: function(receiver, from, to) { if (typeof to != "string") H.throwExpression(H.argumentErrorValue(to)); P.RangeError_checkValueInInterval(0, 0, receiver.length, "startIndex"); return H.stringReplaceFirstUnchecked(receiver, from, to, 0); }, split$1: function(receiver, pattern) { if (pattern == null) H.throwExpression(H.argumentErrorValue(pattern)); if (typeof pattern == "string") return H.setRuntimeTypeInfo(receiver.split(pattern), type$.JSArray_String); else if (pattern instanceof H.JSSyntaxRegExp && pattern.get$_nativeAnchoredVersion().exec("").length - 2 === 0) return H.setRuntimeTypeInfo(receiver.split(pattern._nativeRegExp), type$.JSArray_String); else return this._defaultSplit$1(receiver, pattern); }, replaceRange$3: function(receiver, start, end, replacement) { var e; if (typeof replacement != "string") H.throwExpression(H.argumentErrorValue(replacement)); e = P.RangeError_checkValidRange(start, end, receiver.length); if (!H._isInt(e)) H.throwExpression(H.argumentErrorValue(e)); return H.stringReplaceRangeUnchecked(receiver, start, e, replacement); }, _defaultSplit$1: function(receiver, pattern) { var t1, start, $length, match, matchStart, matchEnd, result = H.setRuntimeTypeInfo([], type$.JSArray_String); for (t1 = J.allMatches$1$s(pattern, receiver), t1 = t1.get$iterator(t1), start = 0, $length = 1; t1.moveNext$0();) { match = t1.get$current(t1); matchStart = match.get$start(match); matchEnd = match.get$end(match); $length = matchEnd - matchStart; if ($length === 0 && start === matchStart) continue; result.push(this.substring$2(receiver, start, matchStart)); start = matchEnd; } if (start < receiver.length || $length > 0) result.push(this.substring$1(receiver, start)); return result; }, startsWith$2: function(receiver, pattern, index) { var endIndex; if (index < 0 || index > receiver.length) throw H.wrapException(P.RangeError$range(index, 0, receiver.length, null, null)); if (typeof pattern == "string") { endIndex = index + pattern.length; if (endIndex > receiver.length) return false; return pattern === receiver.substring(index, endIndex); } return J.matchAsPrefix$2$s(pattern, receiver, index) != null; }, startsWith$1: function($receiver, pattern) { return this.startsWith$2($receiver, pattern, 0); }, substring$2: function(receiver, startIndex, endIndex) { var _null = null; if (!H._isInt(startIndex)) H.throwExpression(H.argumentErrorValue(startIndex)); if (endIndex == null) endIndex = receiver.length; if (startIndex < 0) throw H.wrapException(P.RangeError$value(startIndex, _null, _null)); if (startIndex > endIndex) throw H.wrapException(P.RangeError$value(startIndex, _null, _null)); if (endIndex > receiver.length) throw H.wrapException(P.RangeError$value(endIndex, _null, _null)); return receiver.substring(startIndex, endIndex); }, substring$1: function($receiver, startIndex) { return this.substring$2($receiver, startIndex, null); }, toLowerCase$0: function(receiver) { return receiver.toLowerCase(); }, trim$0: function(receiver) { var startIndex, t1, endIndex0, result = receiver.trim(), endIndex = result.length; if (endIndex === 0) return result; if (this._codeUnitAt$1(result, 0) === 133) { startIndex = J.JSString__skipLeadingWhitespace(result, 1); if (startIndex === endIndex) return ""; } else startIndex = 0; t1 = endIndex - 1; endIndex0 = this.codeUnitAt$1(result, t1) === 133 ? J.JSString__skipTrailingWhitespace(result, t1) : endIndex; if (startIndex === 0 && endIndex0 === endIndex) return result; return result.substring(startIndex, endIndex0); }, trimLeft$0: function(receiver) { var result, startIndex; if (typeof receiver.trimLeft != "undefined") { result = receiver.trimLeft(); if (result.length === 0) return result; startIndex = this._codeUnitAt$1(result, 0) === 133 ? J.JSString__skipLeadingWhitespace(result, 1) : 0; } else { startIndex = J.JSString__skipLeadingWhitespace(receiver, 0); result = receiver; } if (startIndex === 0) return result; if (startIndex === result.length) return ""; return result.substring(startIndex); }, trimRight$0: function(receiver) { var result, endIndex, t1; if (typeof receiver.trimRight != "undefined") { result = receiver.trimRight(); endIndex = result.length; if (endIndex === 0) return result; t1 = endIndex - 1; if (this.codeUnitAt$1(result, t1) === 133) endIndex = J.JSString__skipTrailingWhitespace(result, t1); } else { endIndex = J.JSString__skipTrailingWhitespace(receiver, receiver.length); result = receiver; } if (endIndex === result.length) return result; if (endIndex === 0) return ""; return result.substring(0, endIndex); }, $mul: function(receiver, times) { var s, result; if (0 >= times) return ""; if (times === 1 || receiver.length === 0) return receiver; if (times !== times >>> 0) throw H.wrapException(C.C_OutOfMemoryError); for (s = receiver, result = ""; true;) { if ((times & 1) === 1) result = s + result; times = times >>> 1; if (times === 0) break; s += s; } return result; }, padLeft$2: function(receiver, width, padding) { var delta = width - receiver.length; if (delta <= 0) return receiver; return this.$mul(padding, delta) + receiver; }, padRight$1: function(receiver, width) { var delta = width - receiver.length; if (delta <= 0) return receiver; return receiver + this.$mul(" ", delta); }, indexOf$2: function(receiver, pattern, start) { var match, t1, t2, i; if (start < 0 || start > receiver.length) throw H.wrapException(P.RangeError$range(start, 0, receiver.length, null, null)); if (typeof pattern == "string") return receiver.indexOf(pattern, start); if (pattern instanceof H.JSSyntaxRegExp) { match = pattern._execGlobal$2(receiver, start); return match == null ? -1 : match._match.index; } for (t1 = receiver.length, t2 = J.getInterceptor$s(pattern), i = start; i <= t1; ++i) if (t2.matchAsPrefix$2(pattern, receiver, i) != null) return i; return -1; }, indexOf$1: function($receiver, pattern) { return this.indexOf$2($receiver, pattern, 0); }, lastIndexOf$2: function(receiver, pattern, start) { var t1, t2, i; if (start == null) start = receiver.length; else if (start < 0 || start > receiver.length) throw H.wrapException(P.RangeError$range(start, 0, receiver.length, null, null)); if (typeof pattern == "string") { t1 = pattern.length; t2 = receiver.length; if (start + t1 > t2) start = t2 - t1; return receiver.lastIndexOf(pattern, start); } for (t1 = J.getInterceptor$s(pattern), i = start; i >= 0; --i) if (t1.matchAsPrefix$2(pattern, receiver, i) != null) return i; return -1; }, lastIndexOf$1: function($receiver, pattern) { return this.lastIndexOf$2($receiver, pattern, null); }, contains$2: function(receiver, other, startIndex) { var t1; if (other == null) H.throwExpression(H.argumentErrorValue(other)); t1 = receiver.length; if (startIndex > t1) throw H.wrapException(P.RangeError$range(startIndex, 0, t1, null, null)); return H.stringContainsUnchecked(receiver, other, startIndex); }, contains$1: function($receiver, other) { return this.contains$2($receiver, other, 0); }, get$isEmpty: function(receiver) { return receiver.length === 0; }, compareTo$1: function(receiver, other) { var t1; if (typeof other != "string") throw H.wrapException(H.argumentErrorValue(other)); if (receiver === other) t1 = 0; else t1 = receiver < other ? -1 : 1; return t1; }, toString$0: function(receiver) { return receiver; }, get$hashCode: function(receiver) { var t1, hash, i; for (t1 = receiver.length, hash = 0, i = 0; i < t1; ++i) { hash = hash + receiver.charCodeAt(i) & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; hash ^= hash >> 6; } hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >> 11; return hash + ((hash & 16383) << 15) & 536870911; }, get$runtimeType: function(receiver) { return C.Type_String_k8F; }, get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (!H._isInt(index)) throw H.wrapException(H.diagnoseIndexError(receiver, index)); if (index >= receiver.length || index < 0) throw H.wrapException(H.diagnoseIndexError(receiver, index)); return receiver[index]; }, $isJSIndexable: 1, $isComparable: 1, $isPattern: 1, $isString: 1 }; H._CopyingBytesBuilder.prototype = { add$1: function(_, bytes) { var required, t2, t3, newSize, x, newBuffer, i, _this = this, t1 = J.getInterceptor$asx(bytes), byteCount = t1.get$length(bytes); if (byteCount === 0) return; required = _this._length + byteCount; t2 = _this._buffer; t3 = t2.length; if (t3 < required) { newSize = required * 2; if (newSize < 1024) newSize = 1024; else { x = newSize - 1; x |= C.JSInt_methods._shrOtherPositive$1(x, 1); x |= x >>> 2; x |= x >>> 4; x |= x >>> 8; newSize = ((x | x >>> 16) >>> 0) + 1; } newBuffer = new Uint8Array(newSize); C.NativeUint8List_methods.setRange$3(newBuffer, 0, t3, t2); _this._buffer = newBuffer; t2 = newBuffer; } if (type$.Uint8List._is(bytes)) (t2 && C.NativeUint8List_methods).setRange$3(t2, _this._length, required, bytes); else for (i = 0; i < byteCount; ++i) _this._buffer[_this._length + i] = t1.$index(bytes, i); _this._length = required; }, toBytes$0: function() { var t2, t1 = this._length; if (t1 === 0) return $.$get$_CopyingBytesBuilder__emptyList(); t2 = this._buffer; return new Uint8Array(H._ensureNativeList(C.NativeByteBuffer_methods.asUint8List$2(t2.buffer, t2.byteOffset, t1))); }, get$length: function(_) { return this._length; }, get$isEmpty: function(_) { return this._length === 0; } }; H._CastIterableBase.prototype = { get$iterator: function(_) { var t1 = H._instanceType(this); return new H.CastIterator(J.get$iterator$ax(this.get$_source()), t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("CastIterator<1,2>")); }, get$length: function(_) { return J.get$length$asx(this.get$_source()); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this.get$_source()); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this.get$_source()); }, skip$1: function(_, count) { var t1 = H._instanceType(this); return H.CastIterable_CastIterable(J.skip$1$ax(this.get$_source(), count), t1._precomputed1, t1._rest[1]); }, take$1: function(_, count) { var t1 = H._instanceType(this); return H.CastIterable_CastIterable(J.take$1$ax(this.get$_source(), count), t1._precomputed1, t1._rest[1]); }, elementAt$1: function(_, index) { return H._instanceType(this)._rest[1]._as(J.elementAt$1$ax(this.get$_source(), index)); }, get$first: function(_) { return H._instanceType(this)._rest[1]._as(J.get$first$ax(this.get$_source())); }, get$last: function(_) { return H._instanceType(this)._rest[1]._as(J.get$last$ax(this.get$_source())); }, contains$1: function(_, other) { return J.contains$1$asx(this.get$_source(), other); }, toString$0: function(_) { return J.toString$0$(this.get$_source()); } }; H.CastIterator.prototype = { moveNext$0: function() { return this._source.moveNext$0(); }, get$current: function(_) { var t1 = this._source; return this.$ti._rest[1]._as(t1.get$current(t1)); } }; H.CastIterable.prototype = { cast$1$0: function(_, $R) { return H.CastIterable_CastIterable(this._source, H._instanceType(this)._precomputed1, $R); }, get$_source: function() { return this._source; } }; H._EfficientLengthCastIterable.prototype = {$isEfficientLengthIterable: 1}; H._CastListBase.prototype = { $index: function(_, index) { return this.$ti._rest[1]._as(J.$index$asx(this._source, index)); }, $indexSet: function(_, index, value) { J.$indexSet$ax(this._source, index, this.$ti._precomputed1._as(value)); }, set$length: function(_, $length) { J.set$length$asx(this._source, $length); }, add$1: function(_, value) { J.add$1$ax(this._source, this.$ti._precomputed1._as(value)); }, addAll$1: function(_, values) { var t1 = this.$ti; J.addAll$1$ax(this._source, H.CastIterable_CastIterable(values, t1._rest[1], t1._precomputed1)); }, sort$1: function(_, compare) { var t1 = compare == null ? null : new H._CastListBase_sort_closure(this, compare); J.sort$1$ax(this._source, t1); }, insert$2: function(_, index, element) { J.insert$2$ax(this._source, index, this.$ti._precomputed1._as(element)); }, remove$1: function(_, value) { return J.remove$1$ax(this._source, value); }, removeAt$1: function(_, index) { return this.$ti._rest[1]._as(J.removeAt$1$ax(this._source, index)); }, removeLast$0: function(_) { return this.$ti._rest[1]._as(J.removeLast$0$ax(this._source)); }, removeWhere$1: function(_, test) { J.removeWhere$1$ax(this._source, new H._CastListBase_removeWhere_closure(this, test)); }, retainWhere$1: function(_, test) { J.retainWhere$1$ax(this._source, new H._CastListBase_retainWhere_closure(this, test)); }, getRange$2: function(_, start, end) { var t1 = this.$ti; return H.CastIterable_CastIterable(J.getRange$2$ax(this._source, start, end), t1._precomputed1, t1._rest[1]); }, setRange$4: function(_, start, end, iterable, skipCount) { var t1 = this.$ti; J.setRange$4$ax(this._source, start, end, H.CastIterable_CastIterable(iterable, t1._rest[1], t1._precomputed1), skipCount); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2: function(_, start, end) { J.removeRange$2$ax(this._source, start, end); }, $isEfficientLengthIterable: 1, $isList: 1 }; H._CastListBase_sort_closure.prototype = { call$2: function(v1, v2) { var t1 = this.$this.$ti._rest[1]; return this.compare.call$2(t1._as(v1), t1._as(v2)); }, "call*": "call$2", $requiredArgCount: 2, $signature: function() { return this.$this.$ti._eval$1("int(1,1)"); } }; H._CastListBase_removeWhere_closure.prototype = { call$1: function(element) { return this.test.call$1(this.$this.$ti._rest[1]._as(element)); }, $signature: function() { return this.$this.$ti._eval$1("bool(1)"); } }; H._CastListBase_retainWhere_closure.prototype = { call$1: function(element) { return this.test.call$1(this.$this.$ti._rest[1]._as(element)); }, $signature: function() { return this.$this.$ti._eval$1("bool(1)"); } }; H.CastList.prototype = { cast$1$0: function(_, $R) { return new H.CastList(this._source, this.$ti._eval$1("@<1>")._bind$1($R)._eval$1("CastList<1,2>")); }, get$_source: function() { return this._source; } }; H.CastMap.prototype = { cast$2$0: function(_, RK, RV) { var t1 = this.$ti; return new H.CastMap(this._source, t1._eval$1("@<1>")._bind$1(t1._rest[1])._bind$1(RK)._bind$1(RV)._eval$1("CastMap<1,2,3,4>")); }, containsKey$1: function(_, key) { return J.containsKey$1$x(this._source, key); }, $index: function(_, key) { return this.$ti._eval$1("4?")._as(J.$index$asx(this._source, key)); }, $indexSet: function(_, key, value) { var t1 = this.$ti; J.$indexSet$ax(this._source, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, putIfAbsent$2: function(_, key, ifAbsent) { var t1 = this.$ti; return t1._rest[3]._as(J.putIfAbsent$2$x(this._source, t1._precomputed1._as(key), new H.CastMap_putIfAbsent_closure(this, ifAbsent))); }, addAll$1: function(_, other) { var t1 = this.$ti; J.addAll$1$ax(this._source, new H.CastMap(other, t1._eval$1("@<3>")._bind$1(t1._rest[3])._bind$1(t1._precomputed1)._bind$1(t1._rest[1])._eval$1("CastMap<1,2,3,4>"))); }, remove$1: function(_, key) { return this.$ti._eval$1("4?")._as(J.remove$1$ax(this._source, key)); }, clear$0: function(_) { J.clear$0$ax(this._source); }, forEach$1: function(_, f) { J.forEach$1$ax(this._source, new H.CastMap_forEach_closure(this, f)); }, get$keys: function(_) { var t1 = this.$ti; return H.CastIterable_CastIterable(J.get$keys$x(this._source), t1._precomputed1, t1._rest[2]); }, get$values: function(_) { var t1 = this.$ti; return H.CastIterable_CastIterable(J.get$values$x(this._source), t1._rest[1], t1._rest[3]); }, get$length: function(_) { return J.get$length$asx(this._source); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._source); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._source); }, get$entries: function(_) { var t1 = J.get$entries$x(this._source); return t1.map$1$1(t1, new H.CastMap_entries_closure(this), this.$ti._eval$1("MapEntry<3,4>")); } }; H.CastMap_putIfAbsent_closure.prototype = { call$0: function() { return this.$this.$ti._rest[1]._as(this.ifAbsent.call$0()); }, $signature: function() { return this.$this.$ti._eval$1("2()"); } }; H.CastMap_forEach_closure.prototype = { call$2: function(key, value) { var t1 = this.$this.$ti; this.f.call$2(t1._rest[2]._as(key), t1._rest[3]._as(value)); }, $signature: function() { return this.$this.$ti._eval$1("~(1,2)"); } }; H.CastMap_entries_closure.prototype = { call$1: function(e) { var t1 = this.$this.$ti, t2 = t1._rest[3]; return new P.MapEntry(t1._rest[2]._as(e.get$key(e)), t2._as(e.get$value(e)), t1._eval$1("@<3>")._bind$1(t2)._eval$1("MapEntry<1,2>")); }, $signature: function() { return this.$this.$ti._eval$1("MapEntry<3,4>(MapEntry<1,2>)"); } }; H.LateError.prototype = { toString$0: function(_) { var message = this.__internal$_message; return message != null ? "LateInitializationError: " + message : "LateInitializationError"; } }; H.ReachabilityError.prototype = { toString$0: function(_) { var t1 = "ReachabilityError: " + this.__internal$_message; return t1; } }; H.CodeUnits.prototype = { get$length: function(_) { return this.__internal$_string.length; }, $index: function(_, i) { return C.JSString_methods.codeUnitAt$1(this.__internal$_string, i); } }; H.nullFuture_closure.prototype = { call$0: function() { return P.Future_Future$value(null, type$.Null); }, $signature: 396 }; H.NotNullableError.prototype = { toString$0: function(_) { return "Null is not a valid value for the parameter '" + this.__internal$_name + "' of type '" + H.createRuntimeType(this.$ti._precomputed1).toString$0(0) + "'"; } }; H.EfficientLengthIterable.prototype = {}; H.ListIterable.prototype = { get$iterator: function(_) { var _this = this; return new H.ListIterator(_this, _this.get$length(_this), H._instanceType(_this)._eval$1("ListIterator")); }, forEach$1: function(_, action) { var i, _this = this, $length = _this.get$length(_this); for (i = 0; i < $length; ++i) { action.call$1(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } }, get$isEmpty: function(_) { return this.get$length(this) === 0; }, get$first: function(_) { if (this.get$length(this) === 0) throw H.wrapException(H.IterableElementError_noElement()); return this.elementAt$1(0, 0); }, get$last: function(_) { var _this = this; if (_this.get$length(_this) === 0) throw H.wrapException(H.IterableElementError_noElement()); return _this.elementAt$1(0, _this.get$length(_this) - 1); }, contains$1: function(_, element) { var i, _this = this, $length = _this.get$length(_this); for (i = 0; i < $length; ++i) { if (J.$eq$(_this.elementAt$1(0, i), element)) return true; if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return false; }, join$1: function(_, separator) { var first, t1, i, _this = this, $length = _this.get$length(_this); if (separator.length !== 0) { if ($length === 0) return ""; first = H.S(_this.elementAt$1(0, 0)); if ($length != _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); for (t1 = first, i = 1; i < $length; ++i) { t1 = t1 + separator + H.S(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return t1.charCodeAt(0) == 0 ? t1 : t1; } else { for (i = 0, t1 = ""; i < $length; ++i) { t1 += H.S(_this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return t1.charCodeAt(0) == 0 ? t1 : t1; } }, join$0: function($receiver) { return this.join$1($receiver, ""); }, where$1: function(_, test) { return this.super$Iterable$where(0, test); }, map$1$1: function(_, f, $T) { return new H.MappedListIterable(this, f, H._instanceType(this)._eval$1("@")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, reduce$1: function(_, combine) { var value, i, _this = this, $length = _this.get$length(_this); if ($length === 0) throw H.wrapException(H.IterableElementError_noElement()); value = _this.elementAt$1(0, 0); for (i = 1; i < $length; ++i) { value = combine.call$2(value, _this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return value; }, fold$1$2: function(_, initialValue, combine) { var value, i, _this = this, $length = _this.get$length(_this); for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, _this.elementAt$1(0, i)); if ($length !== _this.get$length(_this)) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return value; }, skip$1: function(_, count) { return H.SubListIterable$(this, count, null, H._instanceType(this)._eval$1("ListIterable.E")); }, take$1: function(_, count) { return H.SubListIterable$(this, 0, H.checkNotNullable(count, "count", type$.int), H._instanceType(this)._eval$1("ListIterable.E")); }, toList$1$growable: function(_, growable) { return P.List_List$of(this, growable, H._instanceType(this)._eval$1("ListIterable.E")); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { var i, _this = this, result = P.LinkedHashSet_LinkedHashSet(H._instanceType(_this)._eval$1("ListIterable.E")); for (i = 0; i < _this.get$length(_this); ++i) result.add$1(0, _this.elementAt$1(0, i)); return result; } }; H.SubListIterable.prototype = { SubListIterable$3: function(_iterable, _start, _endOrLength, $E) { var endOrLength, t1 = this._start; P.RangeError_checkNotNegative(t1, "start"); endOrLength = this._endOrLength; if (endOrLength != null) { P.RangeError_checkNotNegative(endOrLength, "end"); if (t1 > endOrLength) throw H.wrapException(P.RangeError$range(t1, 0, endOrLength, "start", null)); } }, get$_endIndex: function() { var $length = J.get$length$asx(this._iterable), endOrLength = this._endOrLength; if (endOrLength == null || endOrLength > $length) return $length; return endOrLength; }, get$_startIndex: function() { var $length = J.get$length$asx(this._iterable), t1 = this._start; if (t1 > $length) return $length; return t1; }, get$length: function(_) { var endOrLength, $length = J.get$length$asx(this._iterable), t1 = this._start; if (t1 >= $length) return 0; endOrLength = this._endOrLength; if (endOrLength == null || endOrLength >= $length) return $length - t1; return endOrLength - t1; }, elementAt$1: function(_, index) { var _this = this, realIndex = _this.get$_startIndex() + index; if (index < 0 || realIndex >= _this.get$_endIndex()) throw H.wrapException(P.IndexError$(index, _this, "index", null, null)); return J.elementAt$1$ax(_this._iterable, realIndex); }, skip$1: function(_, count) { var newStart, endOrLength, _this = this; P.RangeError_checkNotNegative(count, "count"); newStart = _this._start + count; endOrLength = _this._endOrLength; if (endOrLength != null && newStart >= endOrLength) return new H.EmptyIterable(_this.$ti._eval$1("EmptyIterable<1>")); return H.SubListIterable$(_this._iterable, newStart, endOrLength, _this.$ti._precomputed1); }, take$1: function(_, count) { var endOrLength, t1, newEnd, _this = this; P.RangeError_checkNotNegative(count, "count"); endOrLength = _this._endOrLength; t1 = _this._start; if (endOrLength == null) return H.SubListIterable$(_this._iterable, t1, t1 + count, _this.$ti._precomputed1); else { newEnd = t1 + count; if (endOrLength < newEnd) return _this; return H.SubListIterable$(_this._iterable, t1, newEnd, _this.$ti._precomputed1); } }, toList$1$growable: function(_, growable) { var $length, result, i, _this = this, start = _this._start, t1 = _this._iterable, t2 = J.getInterceptor$asx(t1), end = t2.get$length(t1), endOrLength = _this._endOrLength; if (endOrLength != null && endOrLength < end) end = endOrLength; $length = end - start; if ($length <= 0) { t1 = _this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } result = P.List_List$filled($length, t2.elementAt$1(t1, start), growable, _this.$ti._precomputed1); for (i = 1; i < $length; ++i) { result[i] = t2.elementAt$1(t1, start + i); if (t2.get$length(t1) < end) throw H.wrapException(P.ConcurrentModificationError$(_this)); } return result; }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); } }; H.ListIterator.prototype = { get$current: function(_) { return this.__internal$_current; }, moveNext$0: function() { var t3, _this = this, t1 = _this._iterable, t2 = J.getInterceptor$asx(t1), $length = t2.get$length(t1); if (_this._length != $length) throw H.wrapException(P.ConcurrentModificationError$(t1)); t3 = _this.__internal$_index; if (t3 >= $length) { _this.__internal$_current = null; return false; } _this.__internal$_current = t2.elementAt$1(t1, t3); ++_this.__internal$_index; return true; } }; H.MappedIterable.prototype = { get$iterator: function(_) { var t1 = H._instanceType(this); return new H.MappedIterator(J.get$iterator$ax(this._iterable), this._f, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MappedIterator<1,2>")); }, get$length: function(_) { return J.get$length$asx(this._iterable); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._iterable); }, get$first: function(_) { return this._f.call$1(J.get$first$ax(this._iterable)); }, get$last: function(_) { return this._f.call$1(J.get$last$ax(this._iterable)); }, elementAt$1: function(_, index) { return this._f.call$1(J.elementAt$1$ax(this._iterable, index)); } }; H.EfficientLengthMappedIterable.prototype = {$isEfficientLengthIterable: 1}; H.MappedIterator.prototype = { moveNext$0: function() { var _this = this, t1 = _this._iterator; if (t1.moveNext$0()) { _this.__internal$_current = _this._f.call$1(t1.get$current(t1)); return true; } _this.__internal$_current = null; return false; }, get$current: function(_) { return this.__internal$_current; } }; H.MappedListIterable.prototype = { get$length: function(_) { return J.get$length$asx(this._source); }, elementAt$1: function(_, index) { return this._f.call$1(J.elementAt$1$ax(this._source, index)); } }; H.WhereIterable.prototype = { get$iterator: function(_) { return new H.WhereIterator(J.get$iterator$ax(this._iterable), this._f, this.$ti._eval$1("WhereIterator<1>")); }, map$1$1: function(_, f, $T) { return new H.MappedIterable(this, f, this.$ti._eval$1("@<1>")._bind$1($T)._eval$1("MappedIterable<1,2>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); } }; H.WhereIterator.prototype = { moveNext$0: function() { var t1, t2; for (t1 = this._iterator, t2 = this._f; t1.moveNext$0();) if (t2.call$1(t1.get$current(t1))) return true; return false; }, get$current: function(_) { var t1 = this._iterator; return t1.get$current(t1); } }; H.ExpandIterable.prototype = { get$iterator: function(_) { var t1 = this.$ti; return new H.ExpandIterator(J.get$iterator$ax(this._iterable), this._f, C.C_EmptyIterator, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("ExpandIterator<1,2>")); } }; H.ExpandIterator.prototype = { get$current: function(_) { return this.__internal$_current; }, moveNext$0: function() { var t2, t3, _this = this, t1 = _this._currentExpansion; if (t1 == null) return false; for (t2 = _this._iterator, t3 = _this._f; !t1.moveNext$0();) { _this.__internal$_current = null; if (t2.moveNext$0()) { _this._currentExpansion = null; t1 = J.get$iterator$ax(t3.call$1(t2.get$current(t2))); _this._currentExpansion = t1; } else return false; } t1 = _this._currentExpansion; _this.__internal$_current = t1.get$current(t1); return true; } }; H.TakeIterable.prototype = { get$iterator: function(_) { return new H.TakeIterator(J.get$iterator$ax(this._iterable), this._takeCount, H._instanceType(this)._eval$1("TakeIterator<1>")); } }; H.EfficientLengthTakeIterable.prototype = { get$length: function(_) { var iterableLength = J.get$length$asx(this._iterable), t1 = this._takeCount; if (iterableLength > t1) return t1; return iterableLength; }, $isEfficientLengthIterable: 1 }; H.TakeIterator.prototype = { moveNext$0: function() { if (--this._remaining >= 0) return this._iterator.moveNext$0(); this._remaining = -1; return false; }, get$current: function(_) { var t1; if (this._remaining < 0) return null; t1 = this._iterator; return t1.get$current(t1); } }; H.SkipIterable.prototype = { skip$1: function(_, count) { if (count == null) H.throwExpression(P.ArgumentError$notNull("count")); P.RangeError_checkNotNegative(count, "count"); return new H.SkipIterable(this._iterable, this._skipCount + count, H._instanceType(this)._eval$1("SkipIterable<1>")); }, get$iterator: function(_) { return new H.SkipIterator(J.get$iterator$ax(this._iterable), this._skipCount, H._instanceType(this)._eval$1("SkipIterator<1>")); } }; H.EfficientLengthSkipIterable.prototype = { get$length: function(_) { var $length = J.get$length$asx(this._iterable) - this._skipCount; if ($length >= 0) return $length; return 0; }, skip$1: function(_, count) { if (count == null) H.throwExpression(P.ArgumentError$notNull("count")); P.RangeError_checkNotNegative(count, "count"); return new H.EfficientLengthSkipIterable(this._iterable, this._skipCount + count, this.$ti); }, $isEfficientLengthIterable: 1 }; H.SkipIterator.prototype = { moveNext$0: function() { var t1, i; for (t1 = this._iterator, i = 0; i < this._skipCount; ++i) t1.moveNext$0(); this._skipCount = 0; return t1.moveNext$0(); }, get$current: function(_) { var t1 = this._iterator; return t1.get$current(t1); } }; H.SkipWhileIterable.prototype = { get$iterator: function(_) { return new H.SkipWhileIterator(J.get$iterator$ax(this._iterable), this._f, this.$ti._eval$1("SkipWhileIterator<1>")); } }; H.SkipWhileIterator.prototype = { moveNext$0: function() { var t1, t2, _this = this; if (!_this._hasSkipped) { _this._hasSkipped = true; for (t1 = _this._iterator, t2 = _this._f; t1.moveNext$0();) if (!t2.call$1(t1.get$current(t1))) return true; } return _this._iterator.moveNext$0(); }, get$current: function(_) { var t1 = this._iterator; return t1.get$current(t1); } }; H.EmptyIterable.prototype = { get$iterator: function(_) { return C.C_EmptyIterator; }, forEach$1: function(_, action) { }, get$isEmpty: function(_) { return true; }, get$length: function(_) { return 0; }, get$first: function(_) { throw H.wrapException(H.IterableElementError_noElement()); }, get$last: function(_) { throw H.wrapException(H.IterableElementError_noElement()); }, elementAt$1: function(_, index) { throw H.wrapException(P.RangeError$range(index, 0, 0, "index", null)); }, contains$1: function(_, element) { return false; }, join$1: function(_, separator) { return ""; }, where$1: function(_, test) { return this; }, map$1$1: function(_, f, $T) { return new H.EmptyIterable($T._eval$1("EmptyIterable<0>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, skip$1: function(_, count) { P.RangeError_checkNotNegative(count, "count"); return this; }, take$1: function(_, count) { P.RangeError_checkNotNegative(count, "count"); return this; }, toList$1$growable: function(_, growable) { var t1 = this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return P.LinkedHashSet_LinkedHashSet(this.$ti._precomputed1); } }; H.EmptyIterator.prototype = { moveNext$0: function() { return false; }, get$current: function(_) { throw H.wrapException(H.IterableElementError_noElement()); } }; H.FollowedByIterable.prototype = { get$iterator: function(_) { return new H.FollowedByIterator(J.get$iterator$ax(this.__internal$_first), this._second, H._instanceType(this)._eval$1("FollowedByIterator<1>")); }, get$length: function(_) { var t1 = this._second; return J.get$length$asx(this.__internal$_first) + t1.get$length(t1); }, get$isEmpty: function(_) { var t1; if (J.get$isEmpty$asx(this.__internal$_first)) { t1 = this._second; t1 = !t1.get$iterator(t1).moveNext$0(); } else t1 = false; return t1; }, get$isNotEmpty: function(_) { var t1; if (!J.get$isNotEmpty$asx(this.__internal$_first)) { t1 = this._second; t1 = !t1.get$isEmpty(t1); } else t1 = true; return t1; }, contains$1: function(_, value) { return J.contains$1$asx(this.__internal$_first, value) || this._second.contains$1(0, value); }, get$first: function(_) { var t1, iterator = J.get$iterator$ax(this.__internal$_first); if (iterator.moveNext$0()) return iterator.get$current(iterator); t1 = this._second; return t1.get$first(t1); }, get$last: function(_) { var last, t1 = this._second, t2 = t1.$ti, iterator = new H.ExpandIterator(J.get$iterator$ax(t1._iterable), t1._f, C.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("ExpandIterator<1,2>")); if (iterator.moveNext$0()) { last = iterator.__internal$_current; for (; iterator.moveNext$0();) last = iterator.__internal$_current; return last; } return J.get$last$ax(this.__internal$_first); } }; H.FollowedByIterator.prototype = { moveNext$0: function() { var t1, t2, _this = this; if (_this._currentIterator.moveNext$0()) return true; t1 = _this._nextIterable; if (t1 != null) { t2 = t1.$ti; t2 = new H.ExpandIterator(J.get$iterator$ax(t1._iterable), t1._f, C.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("ExpandIterator<1,2>")); _this._currentIterator = t2; _this._nextIterable = null; return t2.moveNext$0(); } return false; }, get$current: function(_) { var t1 = this._currentIterator; return t1.get$current(t1); } }; H.WhereTypeIterable.prototype = { get$iterator: function(_) { return new H.WhereTypeIterator(J.get$iterator$ax(this._source), this.$ti._eval$1("WhereTypeIterator<1>")); } }; H.WhereTypeIterator.prototype = { moveNext$0: function() { var t1, t2; for (t1 = this._source, t2 = this.$ti._precomputed1; t1.moveNext$0();) if (t2._is(t1.get$current(t1))) return true; return false; }, get$current: function(_) { var t1 = this._source; return this.$ti._precomputed1._as(t1.get$current(t1)); } }; H.FixedLengthListMixin.prototype = { set$length: function(receiver, newLength) { throw H.wrapException(P.UnsupportedError$("Cannot change the length of a fixed-length list")); }, add$1: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot add to a fixed-length list")); }, insert$2: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot add to a fixed-length list")); }, addAll$1: function(receiver, iterable) { throw H.wrapException(P.UnsupportedError$("Cannot add to a fixed-length list")); }, remove$1: function(receiver, element) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeWhere$1: function(receiver, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); }, retainWhere$1: function(receiver, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); }, clear$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Cannot clear a fixed-length list")); }, removeAt$1: function(receiver, index) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeLast$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); }, removeRange$2: function(receiver, start, end) { throw H.wrapException(P.UnsupportedError$("Cannot remove from a fixed-length list")); } }; H.UnmodifiableListMixin.prototype = { $indexSet: function(_, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot modify an unmodifiable list")); }, set$length: function(_, newLength) { throw H.wrapException(P.UnsupportedError$("Cannot change the length of an unmodifiable list")); }, add$1: function(_, value) { throw H.wrapException(P.UnsupportedError$("Cannot add to an unmodifiable list")); }, insert$2: function(_, index, element) { throw H.wrapException(P.UnsupportedError$("Cannot add to an unmodifiable list")); }, addAll$1: function(_, iterable) { throw H.wrapException(P.UnsupportedError$("Cannot add to an unmodifiable list")); }, remove$1: function(_, element) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); }, removeWhere$1: function(_, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); }, retainWhere$1: function(_, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); }, sort$1: function(_, compare) { throw H.wrapException(P.UnsupportedError$("Cannot modify an unmodifiable list")); }, clear$0: function(_) { throw H.wrapException(P.UnsupportedError$("Cannot clear an unmodifiable list")); }, removeAt$1: function(_, index) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); }, removeLast$0: function(_) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); }, setRange$4: function(_, start, end, iterable, skipCount) { throw H.wrapException(P.UnsupportedError$("Cannot modify an unmodifiable list")); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2: function(_, start, end) { throw H.wrapException(P.UnsupportedError$("Cannot remove from an unmodifiable list")); } }; H.UnmodifiableListBase.prototype = {}; H._ListIndicesIterable.prototype = { get$length: function(_) { return J.get$length$asx(this._backedList); }, elementAt$1: function(_, index) { P.RangeError_checkValidIndex(index, this, null, null); return index; } }; H.ListMapView.prototype = { $index: function(_, key) { return this.containsKey$1(0, key) ? J.$index$asx(this._values, H._asIntS(key)) : null; }, get$length: function(_) { return J.get$length$asx(this._values); }, get$values: function(_) { return H.SubListIterable$(this._values, 0, null, this.$ti._precomputed1); }, get$keys: function(_) { return new H._ListIndicesIterable(this._values); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._values); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._values); }, containsKey$1: function(_, key) { return H._isInt(key) && key >= 0 && key < J.get$length$asx(this._values); }, forEach$1: function(_, f) { var i, t1 = this._values, t2 = J.getInterceptor$asx(t1), $length = t2.get$length(t1); for (i = 0; i < $length; ++i) { f.call$2(i, t2.$index(t1, i)); if ($length !== t2.get$length(t1)) throw H.wrapException(P.ConcurrentModificationError$(t1)); } } }; H.ReversedListIterable.prototype = { get$length: function(_) { return J.get$length$asx(this._source); }, elementAt$1: function(_, index) { var t1 = this._source, t2 = J.getInterceptor$asx(t1); return t2.elementAt$1(t1, t2.get$length(t1) - 1 - index); } }; H.Symbol.prototype = { get$hashCode: function(_) { var hash = this._hashCode; if (hash != null) return hash; hash = 664597 * J.get$hashCode$(this.__internal$_name) & 536870911; this._hashCode = hash; return hash; }, toString$0: function(_) { return 'Symbol("' + H.S(this.__internal$_name) + '")'; }, $eq: function(_, other) { if (other == null) return false; return other instanceof H.Symbol && this.__internal$_name == other.__internal$_name; }, $isSymbol0: 1 }; H.__CastListBase__CastIterableBase_ListMixin.prototype = {}; H.ConstantMapView.prototype = {}; H.ConstantMap.prototype = { cast$2$0: function(_, RK, RV) { var t1 = H._instanceType(this); return P.Map_castFrom(this, t1._precomputed1, t1._rest[1], RK, RV); }, get$isEmpty: function(_) { return this.get$length(this) === 0; }, get$isNotEmpty: function(_) { return this.get$length(this) !== 0; }, toString$0: function(_) { return P.MapBase_mapToString(this); }, $indexSet: function(_, key, val) { H.ConstantMap__throwUnmodifiable(); H.ReachabilityError$(string$.x60null_t); }, putIfAbsent$2: function(_, key, ifAbsent) { H.ConstantMap__throwUnmodifiable(); H.ReachabilityError$(string$.x60null_t); }, remove$1: function(_, key) { H.ConstantMap__throwUnmodifiable(); H.ReachabilityError$(string$.x60null_t); }, clear$0: function(_) { H.ConstantMap__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, addAll$1: function(_, other) { H.ConstantMap__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, get$entries: function(_) { return this.entries$body$ConstantMap(_, H._instanceType(this)._eval$1("MapEntry<1,2>")); }, entries$body$ConstantMap: function($async$_, $async$type) { var $async$self = this; return P._makeSyncStarIterable(function() { var _ = $async$_; var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, key, t3; return function $async$get$entries($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.get$keys($async$self), t1 = t1.get$iterator(t1), t2 = H._instanceType($async$self), t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapEntry<1,2>"); case 2: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 3; break; } key = t1.get$current(t1); t3 = $async$self.$index(0, key); t3.toString; $async$goto = 4; return new P.MapEntry(key, t3, t2); case 4: // after yield // goto for condition $async$goto = 2; break; case 3: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, $async$type); }, map$2$1: function(_, transform, K2, V2) { var result = P.LinkedHashMap_LinkedHashMap$_empty(K2, V2); this.forEach$1(0, new H.ConstantMap_map_closure(this, transform, result)); return result; }, map$1: function($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, $isMap: 1 }; H.ConstantMap_map_closure.prototype = { call$2: function(key, value) { var entry = this.transform.call$2(key, value); this.result.$indexSet(0, entry.get$key(entry), entry.get$value(entry)); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(1,2)"); } }; H.ConstantStringMap.prototype = { get$length: function(_) { return this.__js_helper$_length; }, containsKey$1: function(_, key) { if (typeof key != "string") return false; if ("__proto__" === key) return false; return this.__js_helper$_jsObject.hasOwnProperty(key); }, $index: function(_, key) { if (!this.containsKey$1(0, key)) return null; return this._fetch$1(key); }, _fetch$1: function(key) { return this.__js_helper$_jsObject[key]; }, forEach$1: function(_, f) { var t1, i, key, keys = this._keys; for (t1 = keys.length, i = 0; i < t1; ++i) { key = keys[i]; f.call$2(key, this._fetch$1(key)); } }, get$keys: function(_) { return new H._ConstantMapKeyIterable(this, H._instanceType(this)._eval$1("_ConstantMapKeyIterable<1>")); }, get$values: function(_) { var t1 = H._instanceType(this); return H.MappedIterable_MappedIterable(this._keys, new H.ConstantStringMap_values_closure(this), t1._precomputed1, t1._rest[1]); } }; H.ConstantStringMap_values_closure.prototype = { call$1: function(key) { return this.$this._fetch$1(key); }, $signature: function() { return H._instanceType(this.$this)._eval$1("2(1)"); } }; H._ConstantMapKeyIterable.prototype = { get$iterator: function(_) { var t1 = this._map._keys; return new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, get$length: function(_) { return this._map._keys.length; } }; H.GeneralConstantMap.prototype = { _getMap$0: function() { var t1, _this = this, backingMap = _this.$map; if (backingMap == null) { t1 = _this.$ti; backingMap = new H.JsLinkedHashMap(t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("JsLinkedHashMap<1,2>")); H.fillLiteralMap(_this._jsData, backingMap); _this.$map = backingMap; } return backingMap; }, containsKey$1: function(_, key) { return this._getMap$0().containsKey$1(0, key); }, $index: function(_, key) { return this._getMap$0().$index(0, key); }, forEach$1: function(_, f) { this._getMap$0().forEach$1(0, f); }, get$keys: function(_) { var t1 = this._getMap$0(); return t1.get$keys(t1); }, get$values: function(_) { var t1 = this._getMap$0(); return t1.get$values(t1); }, get$length: function(_) { var t1 = this._getMap$0(); return t1.get$length(t1); } }; H.Instantiation.prototype = { Instantiation$1: function(_genericClosure) { if (false) H.instantiatedGenericFunctionType(0, 0); }, toString$0: function(_) { var types = "<" + C.JSArray_methods.join$1([H.createRuntimeType(this.$ti._precomputed1)], ", ") + ">"; return H.S(this._genericClosure) + " with " + types; } }; H.Instantiation1.prototype = { call$1: function(a0) { return this._genericClosure.call$1$1(a0, this.$ti._rest[0]); }, call$2: function(a0, a1) { return this._genericClosure.call$1$2(a0, a1, this.$ti._rest[0]); }, call$4: function(a0, a1, a2, a3) { return this._genericClosure.call$1$4(a0, a1, a2, a3, this.$ti._rest[0]); }, $signature: function() { return H.instantiatedGenericFunctionType(H.closureFunctionType(this._genericClosure), this.$ti); } }; H.JSInvocationMirror.prototype = { get$memberName: function() { var t1 = this.__js_helper$_memberName; return t1; }, get$positionalArguments: function() { var t1, argumentCount, list, index, _this = this; if (_this.__js_helper$_kind === 1) return C.List_empty; t1 = _this._arguments; argumentCount = t1.length - _this._namedArgumentNames.length - _this._typeArgumentCount; if (argumentCount === 0) return C.List_empty; list = []; for (index = 0; index < argumentCount; ++index) list.push(t1[index]); return J.JSArray_markUnmodifiableList(list); }, get$namedArguments: function() { var t1, namedArgumentCount, t2, namedArgumentsStartIndex, map, i, _this = this; if (_this.__js_helper$_kind !== 0) return C.Map_empty; t1 = _this._namedArgumentNames; namedArgumentCount = t1.length; t2 = _this._arguments; namedArgumentsStartIndex = t2.length - namedArgumentCount - _this._typeArgumentCount; if (namedArgumentCount === 0) return C.Map_empty; map = new H.JsLinkedHashMap(type$.JsLinkedHashMap_Symbol_dynamic); for (i = 0; i < namedArgumentCount; ++i) map.$indexSet(0, new H.Symbol(t1[i]), t2[namedArgumentsStartIndex + i]); return new H.ConstantMapView(map, type$.ConstantMapView_Symbol_dynamic); } }; H.Primitives_initTicker_closure.prototype = { call$0: function() { return C.JSNumber_methods.floor$0(1000 * this.performance.now()); }, $signature: 218 }; H.Primitives_functionNoSuchMethod_closure.prototype = { call$2: function($name, argument) { var t1 = this._box_0; t1.names = t1.names + "$" + H.S($name); this.namedArgumentList.push($name); this.$arguments.push(argument); ++t1.argumentCount; }, $signature: 107 }; H.TypeErrorDecoder.prototype = { matchTypeError$1: function(message) { var result, t1, _this = this, match = new RegExp(_this._pattern).exec(message); if (match == null) return null; result = Object.create(null); t1 = _this._arguments; if (t1 !== -1) result.arguments = match[t1 + 1]; t1 = _this._argumentsExpr; if (t1 !== -1) result.argumentsExpr = match[t1 + 1]; t1 = _this._expr; if (t1 !== -1) result.expr = match[t1 + 1]; t1 = _this._method; if (t1 !== -1) result.method = match[t1 + 1]; t1 = _this._receiver; if (t1 !== -1) result.receiver = match[t1 + 1]; return result; } }; H.NullError.prototype = { toString$0: function(_) { var t1 = this._method; if (t1 == null) return "NoSuchMethodError: " + H.S(this.__js_helper$_message); return "NoSuchMethodError: method not found: '" + t1 + "' on null"; }, $isNoSuchMethodError: 1 }; H.JsNoSuchMethodError.prototype = { toString$0: function(_) { var t2, _this = this, _s38_ = "NoSuchMethodError: method not found: '", t1 = _this._method; if (t1 == null) return "NoSuchMethodError: " + H.S(_this.__js_helper$_message); t2 = _this._receiver; if (t2 == null) return _s38_ + t1 + "' (" + H.S(_this.__js_helper$_message) + ")"; return _s38_ + t1 + "' on '" + t2 + "' (" + H.S(_this.__js_helper$_message) + ")"; }, $isNoSuchMethodError: 1 }; H.UnknownJsTypeError.prototype = { toString$0: function(_) { var t1 = this.__js_helper$_message; return t1.length === 0 ? "Error" : "Error: " + t1; } }; H.NullThrownFromJavaScriptException.prototype = { toString$0: function(_) { return "Throw of null ('" + (this._irritant === null ? "null" : "undefined") + "' from JavaScript)"; }, $isException: 1 }; H.ExceptionAndStackTrace.prototype = {}; H._StackTrace.prototype = { toString$0: function(_) { var trace, t1 = this._trace; if (t1 != null) return t1; t1 = this._exception; trace = t1 !== null && typeof t1 === "object" ? t1.stack : null; return this._trace = trace == null ? "" : trace; }, $isStackTrace: 1 }; H.Closure.prototype = { toString$0: function(_) { var $constructor = this.constructor, $name = $constructor == null ? null : $constructor.name; return "Closure '" + H.unminifyOrTag($name == null ? "unknown" : $name) + "'"; }, $isFunction: 1, get$$call: function() { return this; }, "call*": "call$1", $requiredArgCount: 1, $defaultValues: null }; H.TearOffClosure.prototype = {}; H.StaticClosure.prototype = { toString$0: function(_) { var $name = this.$static_name; if ($name == null) return "Closure of unknown static method"; return "Closure '" + H.unminifyOrTag($name) + "'"; } }; H.BoundClosure.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof H.BoundClosure)) return false; return _this._self === other._self && _this._target === other._target && _this._receiver === other._receiver; }, get$hashCode: function(_) { var receiverHashCode, t1 = this._receiver; if (t1 == null) receiverHashCode = H.Primitives_objectHashCode(this._self); else receiverHashCode = typeof t1 !== "object" ? J.get$hashCode$(t1) : H.Primitives_objectHashCode(t1); return (receiverHashCode ^ H.Primitives_objectHashCode(this._target)) >>> 0; }, toString$0: function(_) { var receiver = this._receiver; if (receiver == null) receiver = this._self; return "Closure '" + H.S(this._name) + "' of " + ("Instance of '" + H.S(H.Primitives_objectTypeName(receiver)) + "'"); } }; H.RuntimeError.prototype = { toString$0: function(_) { return "RuntimeError: " + this.message; } }; H._AssertionError.prototype = { toString$0: function(_) { return "Assertion failed: " + P.Error_safeToString(this.message); } }; H._UnreachableError.prototype = { toString$0: function(_) { return "Assertion failed: Reached dead code"; } }; H._Required.prototype = {}; H.JsLinkedHashMap.prototype = { get$length: function(_) { return this.__js_helper$_length; }, get$isEmpty: function(_) { return this.__js_helper$_length === 0; }, get$isNotEmpty: function(_) { return !this.get$isEmpty(this); }, get$keys: function(_) { return new H.LinkedHashMapKeyIterable(this, H._instanceType(this)._eval$1("LinkedHashMapKeyIterable<1>")); }, get$values: function(_) { var _this = this, t1 = H._instanceType(_this); return H.MappedIterable_MappedIterable(_this.get$keys(_this), new H.JsLinkedHashMap_values_closure(_this), t1._precomputed1, t1._rest[1]); }, containsKey$1: function(_, key) { var strings, nums, _this = this; if (typeof key == "string") { strings = _this._strings; if (strings == null) return false; return _this._containsTableEntry$2(strings, key); } else if (typeof key == "number" && (key & 0x3ffffff) === key) { nums = _this._nums; if (nums == null) return false; return _this._containsTableEntry$2(nums, key); } else return _this.internalContainsKey$1(key); }, internalContainsKey$1: function(key) { var _this = this, rest = _this.__js_helper$_rest; if (rest == null) return false; return _this.internalFindBucketIndex$2(_this._getTableBucket$2(rest, _this.internalComputeHashCode$1(key)), key) >= 0; }, containsValue$1: function(_, value) { return this.get$keys(this).any$1(0, new H.JsLinkedHashMap_containsValue_closure(this, value)); }, addAll$1: function(_, other) { J.forEach$1$ax(other, new H.JsLinkedHashMap_addAll_closure(this)); }, $index: function(_, key) { var strings, cell, t1, nums, _this = this, _null = null; if (typeof key == "string") { strings = _this._strings; if (strings == null) return _null; cell = _this._getTableCell$2(strings, key); t1 = cell == null ? _null : cell.hashMapCellValue; return t1; } else if (typeof key == "number" && (key & 0x3ffffff) === key) { nums = _this._nums; if (nums == null) return _null; cell = _this._getTableCell$2(nums, key); t1 = cell == null ? _null : cell.hashMapCellValue; return t1; } else return _this.internalGet$1(key); }, internalGet$1: function(key) { var bucket, index, _this = this, rest = _this.__js_helper$_rest; if (rest == null) return null; bucket = _this._getTableBucket$2(rest, _this.internalComputeHashCode$1(key)); index = _this.internalFindBucketIndex$2(bucket, key); if (index < 0) return null; return bucket[index].hashMapCellValue; }, $indexSet: function(_, key, value) { var strings, nums, _this = this; if (typeof key == "string") { strings = _this._strings; _this._addHashTableEntry$3(strings == null ? _this._strings = _this._newHashTable$0() : strings, key, value); } else if (typeof key == "number" && (key & 0x3ffffff) === key) { nums = _this._nums; _this._addHashTableEntry$3(nums == null ? _this._nums = _this._newHashTable$0() : nums, key, value); } else _this.internalSet$2(key, value); }, internalSet$2: function(key, value) { var hash, bucket, index, _this = this, rest = _this.__js_helper$_rest; if (rest == null) rest = _this.__js_helper$_rest = _this._newHashTable$0(); hash = _this.internalComputeHashCode$1(key); bucket = _this._getTableBucket$2(rest, hash); if (bucket == null) _this._setTableEntry$3(rest, hash, [_this._newLinkedCell$2(key, value)]); else { index = _this.internalFindBucketIndex$2(bucket, key); if (index >= 0) bucket[index].hashMapCellValue = value; else bucket.push(_this._newLinkedCell$2(key, value)); } }, putIfAbsent$2: function(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1: function(_, key) { var _this = this; if (typeof key == "string") return _this._removeHashTableEntry$2(_this._strings, key); else if (typeof key == "number" && (key & 0x3ffffff) === key) return _this._removeHashTableEntry$2(_this._nums, key); else return _this.internalRemove$1(key); }, internalRemove$1: function(key) { var hash, bucket, index, cell, _this = this, rest = _this.__js_helper$_rest; if (rest == null) return null; hash = _this.internalComputeHashCode$1(key); bucket = _this._getTableBucket$2(rest, hash); index = _this.internalFindBucketIndex$2(bucket, key); if (index < 0) return null; cell = bucket.splice(index, 1)[0]; _this._unlinkCell$1(cell); if (bucket.length === 0) _this._deleteTableEntry$2(rest, hash); return cell.hashMapCellValue; }, clear$0: function(_) { var _this = this; if (_this.__js_helper$_length > 0) { _this._strings = _this._nums = _this.__js_helper$_rest = _this._first = _this._last = null; _this.__js_helper$_length = 0; _this._modified$0(); } }, forEach$1: function(_, action) { var _this = this, cell = _this._first, modifications = _this._modifications; for (; cell != null;) { action.call$2(cell.hashMapCellKey, cell.hashMapCellValue); if (modifications !== _this._modifications) throw H.wrapException(P.ConcurrentModificationError$(_this)); cell = cell._next; } }, _addHashTableEntry$3: function(table, key, value) { var cell = this._getTableCell$2(table, key); if (cell == null) this._setTableEntry$3(table, key, this._newLinkedCell$2(key, value)); else cell.hashMapCellValue = value; }, _removeHashTableEntry$2: function(table, key) { var cell; if (table == null) return null; cell = this._getTableCell$2(table, key); if (cell == null) return null; this._unlinkCell$1(cell); this._deleteTableEntry$2(table, key); return cell.hashMapCellValue; }, _modified$0: function() { this._modifications = this._modifications + 1 & 67108863; }, _newLinkedCell$2: function(key, value) { var t1, _this = this, cell = new H.LinkedHashMapCell(key, value); if (_this._first == null) _this._first = _this._last = cell; else { t1 = _this._last; t1.toString; cell._previous = t1; _this._last = t1._next = cell; } ++_this.__js_helper$_length; _this._modified$0(); return cell; }, _unlinkCell$1: function(cell) { var _this = this, previous = cell._previous, next = cell._next; if (previous == null) _this._first = next; else previous._next = next; if (next == null) _this._last = previous; else next._previous = previous; --_this.__js_helper$_length; _this._modified$0(); }, internalComputeHashCode$1: function(key) { return J.get$hashCode$(key) & 0x3ffffff; }, internalFindBucketIndex$2: function(bucket, key) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i].hashMapCellKey, key)) return i; return -1; }, toString$0: function(_) { return P.MapBase_mapToString(this); }, _getTableCell$2: function(table, key) { return table[key]; }, _getTableBucket$2: function(table, key) { return table[key]; }, _setTableEntry$3: function(table, key, value) { table[key] = value; }, _deleteTableEntry$2: function(table, key) { delete table[key]; }, _containsTableEntry$2: function(table, key) { return this._getTableCell$2(table, key) != null; }, _newHashTable$0: function() { var _s20_ = "", table = Object.create(null); this._setTableEntry$3(table, _s20_, table); this._deleteTableEntry$2(table, _s20_); return table; }, $isLinkedHashMap: 1 }; H.JsLinkedHashMap_values_closure.prototype = { call$1: function(each) { return this.$this.$index(0, each); }, $signature: function() { return H._instanceType(this.$this)._eval$1("2(1)"); } }; H.JsLinkedHashMap_containsValue_closure.prototype = { call$1: function(each) { return J.$eq$(this.$this.$index(0, each), this.value); }, $signature: function() { return H._instanceType(this.$this)._eval$1("bool(1)"); } }; H.JsLinkedHashMap_addAll_closure.prototype = { call$2: function(key, value) { this.$this.$indexSet(0, key, value); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(1,2)"); } }; H.LinkedHashMapCell.prototype = {}; H.LinkedHashMapKeyIterable.prototype = { get$length: function(_) { return this._map.__js_helper$_length; }, get$isEmpty: function(_) { return this._map.__js_helper$_length === 0; }, get$iterator: function(_) { var t1 = this._map, t2 = new H.LinkedHashMapKeyIterator(t1, t1._modifications, this.$ti._eval$1("LinkedHashMapKeyIterator<1>")); t2._cell = t1._first; return t2; }, contains$1: function(_, element) { return this._map.containsKey$1(0, element); }, forEach$1: function(_, f) { var t1 = this._map, cell = t1._first, modifications = t1._modifications; for (; cell != null;) { f.call$1(cell.hashMapCellKey); if (modifications !== t1._modifications) throw H.wrapException(P.ConcurrentModificationError$(t1)); cell = cell._next; } } }; H.LinkedHashMapKeyIterator.prototype = { get$current: function(_) { return this._current; }, moveNext$0: function() { var cell, _this = this, t1 = _this._map; if (_this._modifications !== t1._modifications) throw H.wrapException(P.ConcurrentModificationError$(t1)); cell = _this._cell; if (cell == null) { _this._current = null; return false; } else { _this._current = cell.hashMapCellKey; _this._cell = cell._next; return true; } } }; H.initHooks_closure.prototype = { call$1: function(o) { return this.getTag(o); }, $signature: 10 }; H.initHooks_closure0.prototype = { call$2: function(o, tag) { return this.getUnknownTag(o, tag); }, $signature: 2011 }; H.initHooks_closure1.prototype = { call$1: function(tag) { return this.prototypeForTag(tag); }, $signature: 2014 }; H.JSSyntaxRegExp.prototype = { toString$0: function(_) { return "RegExp/" + this.pattern + "/" + this._nativeRegExp.flags; }, get$_nativeGlobalVersion: function() { var _this = this, t1 = _this._nativeGlobalRegExp; if (t1 != null) return t1; t1 = _this._nativeRegExp; return _this._nativeGlobalRegExp = H.JSSyntaxRegExp_makeNative(_this.pattern, t1.multiline, !t1.ignoreCase, t1.unicode, t1.dotAll, true); }, get$_nativeAnchoredVersion: function() { var _this = this, t1 = _this._nativeAnchoredRegExp; if (t1 != null) return t1; t1 = _this._nativeRegExp; return _this._nativeAnchoredRegExp = H.JSSyntaxRegExp_makeNative(_this.pattern + "|()", t1.multiline, !t1.ignoreCase, t1.unicode, t1.dotAll, true); }, firstMatch$1: function(string) { var m; if (typeof string != "string") H.throwExpression(H.argumentErrorValue(string)); m = this._nativeRegExp.exec(string); if (m == null) return null; return new H._MatchImplementation(m); }, stringMatch$1: function(string) { var match = this.firstMatch$1(string); if (match != null) return match._match[0]; return null; }, allMatches$2: function(_, string, start) { var t1 = string.length; if (start > t1) throw H.wrapException(P.RangeError$range(start, 0, t1, null, null)); return new H._AllMatchesIterable(this, string, start); }, allMatches$1: function($receiver, string) { return this.allMatches$2($receiver, string, 0); }, _execGlobal$2: function(string, start) { var match, regexp = this.get$_nativeGlobalVersion(); regexp.lastIndex = start; match = regexp.exec(string); if (match == null) return null; return new H._MatchImplementation(match); }, _execAnchored$2: function(string, start) { var match, regexp = this.get$_nativeAnchoredVersion(); regexp.lastIndex = start; match = regexp.exec(string); if (match == null) return null; if (match.pop() != null) return null; return new H._MatchImplementation(match); }, matchAsPrefix$2: function(_, string, start) { if (start < 0 || start > string.length) throw H.wrapException(P.RangeError$range(start, 0, string.length, null, null)); return this._execAnchored$2(string, start); }, $isPattern: 1, $isRegExp: 1 }; H._MatchImplementation.prototype = { get$start: function(_) { return this._match.index; }, get$end: function(_) { var t1 = this._match; return t1.index + t1[0].length; }, group$1: function(index) { return this._match[index]; }, $index: function(_, index) { return this._match[index]; }, $isMatch: 1, $isRegExpMatch: 1 }; H._AllMatchesIterable.prototype = { get$iterator: function(_) { return new H._AllMatchesIterator(this._re, this._string, this.__js_helper$_start); } }; H._AllMatchesIterator.prototype = { get$current: function(_) { return this._current; }, moveNext$0: function() { var t1, t2, t3, match, nextIndex, _this = this, string = _this._string; if (string == null) return false; t1 = _this._nextIndex; t2 = string.length; if (t1 <= t2) { t3 = _this._regExp; match = t3._execGlobal$2(string, t1); if (match != null) { _this._current = match; nextIndex = match.get$end(match); if (match._match.index === nextIndex) { if (t3._nativeRegExp.unicode) { t1 = _this._nextIndex; t3 = t1 + 1; if (t3 < t2) { t1 = C.JSString_methods.codeUnitAt$1(string, t1); if (t1 >= 55296 && t1 <= 56319) { t1 = C.JSString_methods.codeUnitAt$1(string, t3); t1 = t1 >= 56320 && t1 <= 57343; } else t1 = false; } else t1 = false; } else t1 = false; nextIndex = (t1 ? nextIndex + 1 : nextIndex) + 1; } _this._nextIndex = nextIndex; return true; } } _this._string = _this._current = null; return false; } }; H.StringMatch.prototype = { get$end: function(_) { return this.start + this.pattern.length; }, $index: function(_, g) { if (g !== 0) H.throwExpression(P.RangeError$value(g, null, null)); return this.pattern; }, group$1: function(group_) { if (group_ !== 0) throw H.wrapException(P.RangeError$value(group_, null, null)); return this.pattern; }, $isMatch: 1, get$start: function(receiver) { return this.start; } }; H._StringAllMatchesIterable.prototype = { get$iterator: function(_) { return new H._StringAllMatchesIterator(this._input, this._pattern, this._index); }, get$first: function(_) { var t1 = this._pattern, index = this._input.indexOf(t1, this._index); if (index >= 0) return new H.StringMatch(index, t1); throw H.wrapException(H.IterableElementError_noElement()); } }; H._StringAllMatchesIterator.prototype = { moveNext$0: function() { var index, end, _this = this, t1 = _this._index, t2 = _this._pattern, t3 = t2.length, t4 = _this._input, t5 = t4.length; if (t1 + t3 > t5) { _this._current = null; return false; } index = t4.indexOf(t2, t1); if (index < 0) { _this._index = t5 + 1; _this._current = null; return false; } end = index + t3; _this._current = new H.StringMatch(index, t2); _this._index = end === _this._index ? end + 1 : end; return true; }, get$current: function(_) { var t1 = this._current; t1.toString; return t1; } }; H.NativeByteBuffer.prototype = { get$runtimeType: function(receiver) { return C.Type_ByteBuffer_RkP; }, asUint8List$2: function(receiver, offsetInBytes, $length) { H._checkViewArguments(receiver, offsetInBytes, $length); return $length == null ? new Uint8Array(receiver, offsetInBytes) : new Uint8Array(receiver, offsetInBytes, $length); }, asUint8List$0: function($receiver) { return this.asUint8List$2($receiver, 0, null); }, asInt32List$2: function(receiver, offsetInBytes, $length) { H._checkViewArguments(receiver, offsetInBytes, $length); if ($length == null) $length = C.JSInt_methods._tdivFast$1(receiver.byteLength - offsetInBytes, 4); return new Int32Array(receiver, offsetInBytes, $length); }, asInt64List$2: function(receiver, offsetInBytes, $length) { throw H.wrapException(P.UnsupportedError$("Int64List not supported by dart2js.")); }, asFloat64List$2: function(receiver, offsetInBytes, $length) { H._checkViewArguments(receiver, offsetInBytes, $length); if ($length == null) $length = C.JSInt_methods._tdivFast$1(receiver.byteLength - offsetInBytes, 8); return new Float64Array(receiver, offsetInBytes, $length); }, asByteData$2: function(receiver, offsetInBytes, $length) { H._checkViewArguments(receiver, offsetInBytes, $length); return $length == null ? new DataView(receiver, offsetInBytes) : new DataView(receiver, offsetInBytes, $length); }, asByteData$0: function($receiver) { return this.asByteData$2($receiver, 0, null); }, $isNativeByteBuffer: 1, $isByteBuffer: 1 }; H.NativeTypedData.prototype = { get$buffer: function(receiver) { return receiver.buffer; }, get$lengthInBytes: function(receiver) { return receiver.byteLength; }, get$offsetInBytes: function(receiver) { return receiver.byteOffset; }, _invalidPosition$3: function(receiver, position, $length, $name) { if (!H._isInt(position)) throw H.wrapException(P.ArgumentError$value(position, $name, "Invalid list position")); else throw H.wrapException(P.RangeError$range(position, 0, $length, $name, null)); }, _checkPosition$3: function(receiver, position, $length, $name) { if (position >>> 0 !== position || position > $length) this._invalidPosition$3(receiver, position, $length, $name); }, $isNativeTypedData: 1, $isTypedData: 1 }; H.NativeByteData.prototype = { get$runtimeType: function(receiver) { return C.Type_ByteData_zNC; }, getFloat64$2: function(receiver, byteOffset, endian) { return receiver.getFloat64(byteOffset, C.C_Endian === endian); }, getInt32$2: function(receiver, byteOffset, endian) { return receiver.getInt32(byteOffset, C.C_Endian === endian); }, getInt64$2: function(receiver, byteOffset, endian) { throw H.wrapException(P.UnsupportedError$("Int64 accessor not supported by dart2js.")); }, getUint16$2: function(receiver, byteOffset, endian) { return receiver.getUint16(byteOffset, C.C_Endian === endian); }, getUint32$2: function(receiver, byteOffset, endian) { return receiver.getUint32(byteOffset, C.C_Endian === endian); }, getUint8$1: function(receiver, byteOffset) { return receiver.getUint8(byteOffset); }, setInt64$3: function(receiver, byteOffset, value, endian) { throw H.wrapException(P.UnsupportedError$("Int64 accessor not supported by dart2js.")); }, $isByteData: 1 }; H.NativeTypedArray.prototype = { get$length: function(receiver) { return receiver.length; }, _setRangeFast$4: function(receiver, start, end, source, skipCount) { var count, sourceLength, targetLength = receiver.length; this._checkPosition$3(receiver, start, targetLength, "start"); this._checkPosition$3(receiver, end, targetLength, "end"); if (start > end) throw H.wrapException(P.RangeError$range(start, 0, end, null, null)); count = end - start; if (skipCount < 0) throw H.wrapException(P.ArgumentError$(skipCount)); sourceLength = source.length; if (sourceLength - skipCount < count) throw H.wrapException(P.StateError$("Not enough elements")); if (skipCount !== 0 || sourceLength !== count) source = source.subarray(skipCount, skipCount + count); receiver.set(source, start); }, $isJSIndexable: 1, $isJavaScriptIndexingBehavior: 1 }; H.NativeTypedArrayOfDouble.prototype = { $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, $indexSet: function(receiver, index, value) { H._checkValidIndex(index, receiver, receiver.length); receiver[index] = value; }, setRange$4: function(receiver, start, end, iterable, skipCount) { if (type$.NativeTypedArrayOfDouble._is(iterable)) { this._setRangeFast$4(receiver, start, end, iterable, skipCount); return; } this.super$ListMixin$setRange(receiver, start, end, iterable, skipCount); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; H.NativeTypedArrayOfInt.prototype = { $indexSet: function(receiver, index, value) { H._checkValidIndex(index, receiver, receiver.length); receiver[index] = value; }, setRange$4: function(receiver, start, end, iterable, skipCount) { if (type$.NativeTypedArrayOfInt._is(iterable)) { this._setRangeFast$4(receiver, start, end, iterable, skipCount); return; } this.super$ListMixin$setRange(receiver, start, end, iterable, skipCount); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; H.NativeFloat32List.prototype = { get$runtimeType: function(receiver) { return C.Type_Float32List_LB7; }, sublist$2: function(receiver, start, end) { return new Float32Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeFloat64List.prototype = { get$runtimeType: function(receiver) { return C.Type_Float64List_LB7; }, sublist$2: function(receiver, start, end) { return new Float64Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, $isFloat64List: 1 }; H.NativeInt16List.prototype = { get$runtimeType: function(receiver) { return C.Type_Int16List_uXf; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Int16Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeInt32List.prototype = { get$runtimeType: function(receiver) { return C.Type_Int32List_O50; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Int32Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, $isInt32List: 1 }; H.NativeInt8List.prototype = { get$runtimeType: function(receiver) { return C.Type_Int8List_ekJ; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Int8Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeUint16List.prototype = { get$runtimeType: function(receiver) { return C.Type_Uint16List_2bx; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Uint16Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeUint32List.prototype = { get$runtimeType: function(receiver) { return C.Type_Uint32List_2bx; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Uint32Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeUint8ClampedList.prototype = { get$runtimeType: function(receiver) { return C.Type_Uint8ClampedList_Jik; }, get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Uint8ClampedArray(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); } }; H.NativeUint8List.prototype = { get$runtimeType: function(receiver) { return C.Type_Uint8List_WLA; }, get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { H._checkValidIndex(index, receiver, receiver.length); return receiver[index]; }, sublist$2: function(receiver, start, end) { return new Uint8Array(receiver.subarray(start, H._checkValidRange(start, end, receiver.length))); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, $isNativeUint8List: 1, $isUint8List: 1 }; H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin.prototype = {}; H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin.prototype = {}; H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin.prototype = {}; H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin.prototype = {}; H.Rti.prototype = { _eval$1: function(recipe) { return H._Universe_evalInEnvironment(init.typeUniverse, this, recipe); }, _bind$1: function(typeOrTuple) { return H._Universe_bind(init.typeUniverse, this, typeOrTuple); } }; H._FunctionParameters.prototype = {}; H._Type.prototype = { toString$0: function(_) { return H._rtiToString(this._rti, null); }, $isType: 1 }; H._Error.prototype = { toString$0: function(_) { return this._message; } }; H._TypeError.prototype = {}; P._AsyncRun__initializeScheduleImmediate_internalCallback.prototype = { call$1: function(_) { var t1 = this._box_0, f = t1.storedCallback; t1.storedCallback = null; f.call$0(); }, $signature: 8 }; P._AsyncRun__initializeScheduleImmediate_closure.prototype = { call$1: function(callback) { var t1, t2; this._box_0.storedCallback = callback; t1 = this.div; t2 = this.span; t1.firstChild ? t1.removeChild(t2) : t1.appendChild(t2); }, $signature: 2037 }; P._AsyncRun__scheduleImmediateJsOverride_internalCallback.prototype = { call$0: function() { this.callback.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; P._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback.prototype = { call$0: function() { this.callback.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; P._TimerImpl.prototype = { _TimerImpl$2: function(milliseconds, callback) { if (self.setTimeout != null) this._handle = self.setTimeout(H.convertDartClosureToJS(new P._TimerImpl_internalCallback(this, callback), 0), milliseconds); else throw H.wrapException(P.UnsupportedError$("`setTimeout()` not found.")); }, _TimerImpl$periodic$2: function(milliseconds, callback) { if (self.setTimeout != null) this._handle = self.setInterval(H.convertDartClosureToJS(new P._TimerImpl$periodic_closure(this, milliseconds, Date.now(), callback), 0), milliseconds); else throw H.wrapException(P.UnsupportedError$("Periodic timer.")); }, cancel$0: function(_) { var t1; if (self.setTimeout != null) { t1 = this._handle; if (t1 == null) return; if (this._once) self.clearTimeout(t1); else self.clearInterval(t1); this._handle = null; } else throw H.wrapException(P.UnsupportedError$("Canceling a timer.")); }, $isTimer: 1 }; P._TimerImpl_internalCallback.prototype = { call$0: function() { var t1 = this.$this; t1._handle = null; t1._tick = 1; this.callback.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._TimerImpl$periodic_closure.prototype = { call$0: function() { var duration, _this = this, t1 = _this.$this, tick = t1._tick + 1, t2 = _this.milliseconds; if (t2 > 0) { duration = Date.now() - _this.start; if (duration > (tick + 1) * t2) tick = C.JSInt_methods.$tdiv(duration, t2); } t1._tick = tick; _this.callback.call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; P._AsyncAwaitCompleter.prototype = { complete$1: function(_, value) { var t1, _this = this; if (!_this.isSync) _this._future._asyncComplete$1(value); else { t1 = _this._future; if (_this.$ti._eval$1("Future<1>")._is(value)) t1._chainFuture$1(value); else t1._completeWithValue$1(value); } }, complete$0: function($receiver) { return this.complete$1($receiver, null); }, completeError$2: function(e, st) { var t1; if (st == null) st = P.AsyncError_defaultStackTrace(e); t1 = this._future; if (this.isSync) t1._completeError$2(e, st); else t1._asyncCompleteError$2(e, st); }, get$future: function() { return this._future; }, $isCompleter: 1 }; P._awaitOnObject_closure.prototype = { call$1: function(result) { return this.bodyFunction.call$2(0, result); }, $signature: 81 }; P._awaitOnObject_closure0.prototype = { call$2: function(error, stackTrace) { this.bodyFunction.call$2(1, new H.ExceptionAndStackTrace(error, stackTrace)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 340 }; P._wrapJsFunctionForAsync_closure.prototype = { call$2: function(errorCode, result) { this.$protected(errorCode, result); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2141 }; P._asyncStarHelper_closure.prototype = { call$0: function() { var t1 = this.controller; if (t1.get$controller(t1).get$isPaused()) { t1.isSuspended = true; return; } this.bodyFunction.call$2(0, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._asyncStarHelper_closure0.prototype = { call$1: function(_) { var errorCode = this.controller.cancelationFuture != null ? 2 : 0; this.bodyFunction.call$2(errorCode, null); }, $signature: 8 }; P._AsyncStarStreamController.prototype = { get$controller: function(_) { var t1 = this.___AsyncStarStreamController_controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("controller")) : t1; }, add$1: function(_, $event) { return this.get$controller(this).add$1(0, $event); }, _AsyncStarStreamController$1: function(body, $T) { var t1 = new P._AsyncStarStreamController__resumeBody(body); this.___AsyncStarStreamController_controller = P.StreamController_StreamController(new P._AsyncStarStreamController_closure(this, body), new P._AsyncStarStreamController_closure0(t1), null, new P._AsyncStarStreamController_closure1(this, t1), false, $T); } }; P._AsyncStarStreamController__resumeBody.prototype = { call$0: function() { P.scheduleMicrotask(new P._AsyncStarStreamController__resumeBody_closure(this.body)); }, $signature: 1 }; P._AsyncStarStreamController__resumeBody_closure.prototype = { call$0: function() { this.body.call$2(0, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._AsyncStarStreamController_closure0.prototype = { call$0: function() { this._resumeBody.call$0(); }, $signature: 0 }; P._AsyncStarStreamController_closure1.prototype = { call$0: function() { var t1 = this.$this; if (t1.isSuspended) { t1.isSuspended = false; this._resumeBody.call$0(); } }, $signature: 0 }; P._AsyncStarStreamController_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.get$controller(t1); if (!t2.get$isClosed(t2)) { t1.cancelationFuture = new P._Future($.Zone__current, type$._Future_dynamic); if (t1.isSuspended) { t1.isSuspended = false; P.scheduleMicrotask(new P._AsyncStarStreamController__closure(this.body)); } return t1.cancelationFuture; } }, "call*": "call$0", $requiredArgCount: 0, $signature: 2145 }; P._AsyncStarStreamController__closure.prototype = { call$0: function() { this.body.call$2(2, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._IterationMarker.prototype = { toString$0: function(_) { return "IterationMarker(" + this.state + ", " + H.S(this.value) + ")"; }, get$value: function(receiver) { return this.value; } }; P._SyncStarIterator.prototype = { get$current: function(_) { var nested = this._nestedIterator; if (nested == null) return this._async$_current; return nested.get$current(nested); }, moveNext$0: function() { var t1, value, state, suspendedBodies, inner, _this = this; for (; true;) { t1 = _this._nestedIterator; if (t1 != null) if (t1.moveNext$0()) return true; else _this._nestedIterator = null; value = function(body, SUCCESS, ERROR) { var errorValue, errorCode = SUCCESS; while (true) try { return body(errorCode, errorValue); } catch (error) { errorValue = error; errorCode = ERROR; } }(_this._body, 0, 1); if (value instanceof P._IterationMarker) { state = value.state; if (state === 2) { suspendedBodies = _this._suspendedBodies; if (suspendedBodies == null || suspendedBodies.length === 0) { _this._async$_current = null; return false; } _this._body = suspendedBodies.pop(); continue; } else { t1 = value.value; if (state === 3) throw t1; else { inner = J.get$iterator$ax(t1); if (inner instanceof P._SyncStarIterator) { t1 = _this._suspendedBodies; if (t1 == null) t1 = _this._suspendedBodies = []; t1.push(_this._body); _this._body = inner._body; continue; } else { _this._nestedIterator = inner; continue; } } } } else { _this._async$_current = value; return true; } } return false; } }; P._SyncStarIterable.prototype = { get$iterator: function(_) { return new P._SyncStarIterator(this._outerHelper(), this.$ti._eval$1("_SyncStarIterator<1>")); } }; P.AsyncError.prototype = { toString$0: function(_) { return H.S(this.error); }, $isError: 1, get$stackTrace: function() { return this.stackTrace; } }; P._BroadcastStream.prototype = { get$isBroadcast: function() { return true; } }; P._BroadcastSubscription.prototype = { _onPause$0: function() { }, _onResume$0: function() { } }; P._BroadcastStreamController.prototype = { get$stream: function(_) { return new P._BroadcastStream(this, H._instanceType(this)._eval$1("_BroadcastStream<1>")); }, get$sink: function() { return new P._StreamSinkWrapper0(this, H._instanceType(this)._eval$1("_StreamSinkWrapper0<1>")); }, get$isClosed: function(_) { return (this._state & 4) !== 0; }, get$isPaused: function() { return false; }, get$_mayAddEvent: function() { return this._state < 4; }, _ensureDoneFuture$0: function() { var t1 = this._doneFuture; return t1 == null ? this._doneFuture = new P._Future($.Zone__current, type$._Future_void) : t1; }, _removeListener$1: function(subscription) { var previous = subscription._async$_previous, next = subscription._async$_next; if (previous == null) this._firstSubscription = next; else previous._async$_next = next; if (next == null) this._lastSubscription = previous; else next._async$_previous = previous; subscription._async$_previous = subscription; subscription._async$_next = subscription; }, _async$_subscribe$4: function(onData, onError, onDone, cancelOnError) { var t1, t2, t3, t4, t5, t6, subscription, oldLast, _this = this; if ((_this._state & 4) !== 0) return P._DoneStreamSubscription$(onDone, H._instanceType(_this)._precomputed1); t1 = H._instanceType(_this); t2 = $.Zone__current; t3 = cancelOnError ? 1 : 0; t4 = P._BufferingStreamSubscription__registerDataHandler(t2, onData, t1._precomputed1); t5 = P._BufferingStreamSubscription__registerErrorHandler(t2, onError); t6 = onDone == null ? P.async___nullDoneHandler$closure() : onDone; subscription = new P._BroadcastSubscription(_this, t4, t5, t2.registerCallback$1$1(t6, type$.void), t2, t3, t1._eval$1("_BroadcastSubscription<1>")); subscription._async$_previous = subscription; subscription._async$_next = subscription; subscription._eventState = _this._state & 1; oldLast = _this._lastSubscription; _this._lastSubscription = subscription; subscription._async$_next = null; subscription._async$_previous = oldLast; if (oldLast == null) _this._firstSubscription = subscription; else oldLast._async$_next = subscription; if (_this._firstSubscription === subscription) P._runGuarded(_this.onListen); return subscription; }, _recordCancel$1: function(sub) { var t1, _this = this; H._instanceType(_this)._eval$1("_BroadcastSubscription<1>")._as(sub); if (sub._async$_next === sub) return null; t1 = sub._eventState; if ((t1 & 2) !== 0) sub._eventState = t1 | 4; else { _this._removeListener$1(sub); if ((_this._state & 2) === 0 && _this._firstSubscription == null) _this._callOnCancel$0(); } return null; }, _recordPause$1: function(subscription) { }, _recordResume$1: function(subscription) { }, _addEventError$0: function() { if ((this._state & 4) !== 0) return new P.StateError("Cannot add new events after calling close"); return new P.StateError("Cannot add new events while doing an addStream"); }, add$1: function(_, data) { if (!this.get$_mayAddEvent()) throw H.wrapException(this._addEventError$0()); this._sendData$1(data); }, addError$2: function(error, stackTrace) { var replacement; H.checkNotNullable(error, "error", type$.Object); if (!this.get$_mayAddEvent()) throw H.wrapException(this._addEventError$0()); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); this._sendError$2(error, stackTrace); }, addError$1: function(error) { return this.addError$2(error, null); }, close$0: function(_) { var t1, doneFuture, _this = this; if ((_this._state & 4) !== 0) { t1 = _this._doneFuture; t1.toString; return t1; } if (!_this.get$_mayAddEvent()) throw H.wrapException(_this._addEventError$0()); _this._state |= 4; doneFuture = _this._ensureDoneFuture$0(); _this._sendDone$0(); return doneFuture; }, get$done: function() { return this._ensureDoneFuture$0(); }, addStream$2$cancelOnError: function(_, stream, cancelOnError) { var addStreamState, _this = this; if (!_this.get$_mayAddEvent()) throw H.wrapException(_this._addEventError$0()); _this._state |= 8; addStreamState = P._AddStreamState$(_this, stream, cancelOnError === true, H._instanceType(_this)._precomputed1); _this._addStreamState = addStreamState; return addStreamState.addStreamFuture; }, _async$_add$1: function(_, data) { this._sendData$1(data); }, _addError$2: function(error, stackTrace) { this._sendError$2(error, stackTrace); }, _async$_close$0: function() { var t1 = this._addStreamState; t1.toString; this._addStreamState = null; this._state &= 4294967287; t1.addStreamFuture._asyncComplete$1(null); }, _forEachListener$1: function(action) { var subscription, id, next, _this = this, t1 = _this._state; if ((t1 & 2) !== 0) throw H.wrapException(P.StateError$(string$.Cannotf)); subscription = _this._firstSubscription; if (subscription == null) return; id = t1 & 1; _this._state = t1 ^ 3; for (; subscription != null;) { t1 = subscription._eventState; if ((t1 & 1) === id) { subscription._eventState = t1 | 2; action.call$1(subscription); t1 = subscription._eventState ^= 1; next = subscription._async$_next; if ((t1 & 4) !== 0) _this._removeListener$1(subscription); subscription._eventState &= 4294967293; subscription = next; } else subscription = subscription._async$_next; } _this._state &= 4294967293; if (_this._firstSubscription == null) _this._callOnCancel$0(); }, _callOnCancel$0: function() { if ((this._state & 4) !== 0) { var doneFuture = this._doneFuture; if (doneFuture._state === 0) doneFuture._asyncComplete$1(null); } P._runGuarded(this.onCancel); }, $isEventSink: 1, $isStreamController: 1 }; P._SyncBroadcastStreamController.prototype = { get$_mayAddEvent: function() { return P._BroadcastStreamController.prototype.get$_mayAddEvent.call(this) && (this._state & 2) === 0; }, _addEventError$0: function() { if ((this._state & 2) !== 0) return new P.StateError(string$.Cannotf); return this.super$_BroadcastStreamController$_addEventError(); }, _sendData$1: function(data) { var _this = this, t1 = _this._firstSubscription; if (t1 == null) return; if (t1 === _this._lastSubscription) { _this._state |= 2; t1._async$_add$1(0, data); _this._state &= 4294967293; if (_this._firstSubscription == null) _this._callOnCancel$0(); return; } _this._forEachListener$1(new P._SyncBroadcastStreamController__sendData_closure(_this, data)); }, _sendError$2: function(error, stackTrace) { if (this._firstSubscription == null) return; this._forEachListener$1(new P._SyncBroadcastStreamController__sendError_closure(this, error, stackTrace)); }, _sendDone$0: function() { var _this = this; if (_this._firstSubscription != null) _this._forEachListener$1(new P._SyncBroadcastStreamController__sendDone_closure(_this)); else _this._doneFuture._asyncComplete$1(null); } }; P._SyncBroadcastStreamController__sendData_closure.prototype = { call$1: function(subscription) { subscription._async$_add$1(0, this.data); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(_BufferingStreamSubscription<1>)"); } }; P._SyncBroadcastStreamController__sendError_closure.prototype = { call$1: function(subscription) { subscription._addError$2(this.error, this.stackTrace); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(_BufferingStreamSubscription<1>)"); } }; P._SyncBroadcastStreamController__sendDone_closure.prototype = { call$1: function(subscription) { subscription._async$_close$0(); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(_BufferingStreamSubscription<1>)"); } }; P._AsyncBroadcastStreamController.prototype = { _sendData$1: function(data) { var subscription, t1; for (subscription = this._firstSubscription, t1 = this.$ti._eval$1("_DelayedData<1>"); subscription != null; subscription = subscription._async$_next) subscription._addPending$1(new P._DelayedData(data, t1)); }, _sendError$2: function(error, stackTrace) { var subscription; for (subscription = this._firstSubscription; subscription != null; subscription = subscription._async$_next) subscription._addPending$1(new P._DelayedError(error, stackTrace)); }, _sendDone$0: function() { var subscription = this._firstSubscription; if (subscription != null) for (; subscription != null; subscription = subscription._async$_next) subscription._addPending$1(C.C__DelayedDone); else this._doneFuture._asyncComplete$1(null); } }; P._AsBroadcastStreamController.prototype = { _addPendingEvent$1: function($event) { var t1 = this._pending; (t1 == null ? this._pending = new P._StreamImplEvents(this.$ti._eval$1("_StreamImplEvents<1>")) : t1).add$1(0, $event); }, add$1: function(_, data) { var _this = this, t1 = _this._state; if ((t1 & 4) === 0 && (t1 & 2) !== 0) { _this._addPendingEvent$1(new P._DelayedData(data, _this.$ti._eval$1("_DelayedData<1>"))); return; } _this.super$_BroadcastStreamController$add(0, data); _this._flushPending$0(); }, addError$2: function(error, stackTrace) { var t1, _this = this; H.checkNotNullable(error, "error", type$.Object); if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); t1 = _this._state; if ((t1 & 4) === 0 && (t1 & 2) !== 0) { _this._addPendingEvent$1(new P._DelayedError(error, stackTrace)); return; } if (!(P._BroadcastStreamController.prototype.get$_mayAddEvent.call(_this) && (_this._state & 2) === 0)) throw H.wrapException(_this._addEventError$0()); _this._sendError$2(error, stackTrace); _this._flushPending$0(); }, addError$1: function(error) { return this.addError$2(error, null); }, _flushPending$0: function() { var $event, nextEvent, pending = this._pending; while (true) { if (!(pending != null && pending.lastPendingEvent != null)) break; $event = pending.firstPendingEvent; nextEvent = $event.get$next($event); pending.firstPendingEvent = nextEvent; if (nextEvent == null) pending.lastPendingEvent = null; $event.perform$1(this); pending = this._pending; } }, close$0: function(_) { var _this = this, t1 = _this._state; if ((t1 & 4) === 0 && (t1 & 2) !== 0) { _this._addPendingEvent$1(C.C__DelayedDone); _this._state |= 4; return P._BroadcastStreamController.prototype.get$done.call(_this); } return _this.super$_BroadcastStreamController$close(0); }, _callOnCancel$0: function() { var pending = this._pending; if (pending != null) { pending.clear$0(0); this._pending = null; } this.super$_BroadcastStreamController$_callOnCancel(); } }; P.Future_Future_closure.prototype = { call$0: function() { var e, s, exception; try { this.result._complete$1(this.computation.call$0()); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._completeWithErrorCallback(this.result, e, s); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Future_Future$microtask_closure.prototype = { call$0: function() { var e, s, exception; try { this.result._complete$1(this.computation.call$0()); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._completeWithErrorCallback(this.result, e, s); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Future_Future$delayed_closure.prototype = { call$0: function() { var e, s, exception, _this = this, t1 = _this.computation; if (t1 == null) _this.result._complete$1(null); else try { _this.result._complete$1(t1.call$0()); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._completeWithErrorCallback(_this.result, e, s); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Future_wait__error_set.prototype = { call$1: function(t1) { return this._box_0._error = t1; }, $signature: 2246 }; P.Future_wait__stackTrace_set.prototype = { call$1: function(t1) { return this._box_0._stackTrace0 = t1; }, $signature: 2252 }; P.Future_wait__error_get.prototype = { call$0: function() { var t1 = this._box_0._error; return t1 === $ ? H.throwExpression(H.LateError$localNI("error")) : t1; }, $signature: 2416 }; P.Future_wait__stackTrace_get.prototype = { call$0: function() { var t1 = this._box_0._stackTrace0; return t1 === $ ? H.throwExpression(H.LateError$localNI("stackTrace")) : t1; }, $signature: 2419 }; P.Future_wait_handleError.prototype = { call$2: function(theError, theStackTrace) { var _this = this, t1 = _this._box_0, t2 = --t1.remaining; if (t1.values != null) { t1.values = null; if (t1.remaining === 0 || _this.eagerError) _this._future._completeError$2(theError, theStackTrace); else { _this._error_set.call$1(theError); _this._stackTrace_set.call$1(theStackTrace); } } else if (t2 === 0 && !_this.eagerError) _this._future._completeError$2(_this._error_get.call$0(), _this._stackTrace_get.call$0()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 124 }; P.Future_wait_closure.prototype = { call$1: function(value) { var valueList, _this = this, t1 = _this._box_0; --t1.remaining; valueList = t1.values; if (valueList != null) { J.$indexSet$ax(valueList, _this.pos, value); if (t1.remaining === 0) _this._future._completeWithValue$1(P.List_List$from(valueList, true, _this.T)); } else if (t1.remaining === 0 && !_this.eagerError) _this._future._completeError$2(_this._error_get.call$0(), _this._stackTrace_get.call$0()); }, $signature: function() { return this.T._eval$1("Null(0)"); } }; P.TimeoutException.prototype = { toString$0: function(_) { var result = "TimeoutException after " + this.duration.toString$0(0); result = result + ": " + this.message; return result; }, $isException: 1 }; P._Completer.prototype = { completeError$2: function(error, stackTrace) { var replacement; H.checkNotNullable(error, "error", type$.Object); if (this.future._state !== 0) throw H.wrapException(P.StateError$("Future already completed")); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); this._completeError$2(error, stackTrace); }, completeError$1: function(error) { return this.completeError$2(error, null); }, $isCompleter: 1, get$future: function() { return this.future; } }; P._AsyncCompleter.prototype = { complete$1: function(_, value) { var t1 = this.future; if (t1._state !== 0) throw H.wrapException(P.StateError$("Future already completed")); t1._asyncComplete$1(value); }, complete$0: function($receiver) { return this.complete$1($receiver, null); }, _completeError$2: function(error, stackTrace) { this.future._asyncCompleteError$2(error, stackTrace); } }; P._SyncCompleter.prototype = { complete$1: function(_, value) { var t1 = this.future; if (t1._state !== 0) throw H.wrapException(P.StateError$("Future already completed")); t1._complete$1(value); }, complete$0: function($receiver) { return this.complete$1($receiver, null); }, _completeError$2: function(error, stackTrace) { this.future._completeError$2(error, stackTrace); } }; P._FutureListener.prototype = { matchesErrorTest$1: function(asyncError) { if ((this.state & 15) !== 6) return true; return this.result._zone.runUnary$2$2(this.callback, asyncError.error, type$.bool, type$.Object); }, handleError$1: function(asyncError) { var errorCallback = this.errorCallback, t1 = type$.dynamic, t2 = type$.Object, t3 = this.result._zone; if (type$.dynamic_Function_Object_StackTrace._is(errorCallback)) return t3.runBinary$3$3(errorCallback, asyncError.error, asyncError.stackTrace, t1, t2, type$.StackTrace); else return t3.runUnary$2$2(errorCallback, asyncError.error, t1, t2); } }; P._Future.prototype = { then$1$2$onError: function(_, f, onError, $R) { var result, t1, currentZone = $.Zone__current; if (currentZone !== C.C__RootZone) { f = currentZone.registerUnaryCallback$2$1(f, $R._eval$1("0/"), this.$ti._precomputed1); if (onError != null) onError = P._registerErrorHandler(onError, currentZone); } result = new P._Future($.Zone__current, $R._eval$1("_Future<0>")); t1 = onError == null ? 1 : 3; this._addListener$1(new P._FutureListener(result, t1, f, onError, this.$ti._eval$1("@<1>")._bind$1($R)._eval$1("_FutureListener<1,2>"))); return result; }, then$1$1: function($receiver, f, $R) { return this.then$1$2$onError($receiver, f, null, $R); }, then$1: function($receiver, f) { return this.then$1$2$onError($receiver, f, null, type$.dynamic); }, _thenAwait$1$2: function(f, onError, $E) { var result = new P._Future($.Zone__current, $E._eval$1("_Future<0>")); this._addListener$1(new P._FutureListener(result, 19, f, onError, this.$ti._eval$1("@<1>")._bind$1($E)._eval$1("_FutureListener<1,2>"))); return result; }, catchError$2$test: function(onError, test) { var t1 = this.$ti, t2 = $.Zone__current, result = new P._Future(t2, t1); if (t2 !== C.C__RootZone) { onError = P._registerErrorHandler(onError, t2); if (test != null) test = t2.registerUnaryCallback$2$1(test, type$.bool, type$.Object); } t2 = test == null ? 2 : 6; this._addListener$1(new P._FutureListener(result, t2, test, onError, t1._eval$1("@<1>")._bind$1(t1._precomputed1)._eval$1("_FutureListener<1,2>"))); return result; }, catchError$1: function(onError) { return this.catchError$2$test(onError, null); }, whenComplete$1: function(action) { var t1 = this.$ti, t2 = $.Zone__current, result = new P._Future(t2, t1); if (t2 !== C.C__RootZone) action = t2.registerCallback$1$1(action, type$.dynamic); this._addListener$1(new P._FutureListener(result, 8, action, null, t1._eval$1("@<1>")._bind$1(t1._precomputed1)._eval$1("_FutureListener<1,2>"))); return result; }, _addListener$1: function(listener) { var t2, _this = this, t1 = _this._state; if (t1 <= 1) { listener._nextListener = _this._resultOrListeners; _this._resultOrListeners = listener; } else { if (t1 === 2) { t1 = _this._resultOrListeners; t2 = t1._state; if (t2 < 4) { t1._addListener$1(listener); return; } _this._state = t2; _this._resultOrListeners = t1._resultOrListeners; } _this._zone.scheduleMicrotask$1(new P._Future__addListener_closure(_this, listener)); } }, _prependListeners$1: function(listeners) { var t1, existingListeners, next, cursor, next0, t2, _this = this, _box_0 = {}; _box_0.listeners = listeners; if (listeners == null) return; t1 = _this._state; if (t1 <= 1) { existingListeners = _this._resultOrListeners; _this._resultOrListeners = listeners; if (existingListeners != null) { next = listeners._nextListener; for (cursor = listeners; next != null; cursor = next, next = next0) next0 = next._nextListener; cursor._nextListener = existingListeners; } } else { if (t1 === 2) { t1 = _this._resultOrListeners; t2 = t1._state; if (t2 < 4) { t1._prependListeners$1(listeners); return; } _this._state = t2; _this._resultOrListeners = t1._resultOrListeners; } _box_0.listeners = _this._reverseListeners$1(listeners); _this._zone.scheduleMicrotask$1(new P._Future__prependListeners_closure(_box_0, _this)); } }, _removeListeners$0: function() { var current = this._resultOrListeners; this._resultOrListeners = null; return this._reverseListeners$1(current); }, _reverseListeners$1: function(listeners) { var current, prev, next; for (current = listeners, prev = null; current != null; prev = current, current = next) { next = current._nextListener; current._nextListener = prev; } return prev; }, _chainForeignFuture$1: function(source) { var e, s, exception, _this = this; _this._state = 1; try { source.then$1$2$onError(0, new P._Future__chainForeignFuture_closure(_this), new P._Future__chainForeignFuture_closure0(_this), type$.Null); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P.scheduleMicrotask(new P._Future__chainForeignFuture_closure1(_this, e, s)); } }, _complete$1: function(value) { var listeners, _this = this, t1 = _this.$ti; if (t1._eval$1("Future<1>")._is(value)) if (t1._is(value)) P._Future__chainCoreFuture(value, _this); else _this._chainForeignFuture$1(value); else { listeners = _this._removeListeners$0(); _this._state = 4; _this._resultOrListeners = value; P._Future__propagateToListeners(_this, listeners); } }, _completeWithValue$1: function(value) { var _this = this, listeners = _this._removeListeners$0(); _this._state = 4; _this._resultOrListeners = value; P._Future__propagateToListeners(_this, listeners); }, _completeError$2: function(error, stackTrace) { var _this = this, listeners = _this._removeListeners$0(), t1 = P.AsyncError$(error, stackTrace); _this._state = 8; _this._resultOrListeners = t1; P._Future__propagateToListeners(_this, listeners); }, _asyncComplete$1: function(value) { if (this.$ti._eval$1("Future<1>")._is(value)) { this._chainFuture$1(value); return; } this._asyncCompleteWithValue$1(value); }, _asyncCompleteWithValue$1: function(value) { this._state = 1; this._zone.scheduleMicrotask$1(new P._Future__asyncCompleteWithValue_closure(this, value)); }, _chainFuture$1: function(value) { var _this = this; if (_this.$ti._is(value)) { if (value._state === 8) { _this._state = 1; _this._zone.scheduleMicrotask$1(new P._Future__chainFuture_closure(_this, value)); } else P._Future__chainCoreFuture(value, _this); return; } _this._chainForeignFuture$1(value); }, _asyncCompleteError$2: function(error, stackTrace) { this._state = 1; this._zone.scheduleMicrotask$1(new P._Future__asyncCompleteError_closure(this, error, stackTrace)); }, timeout$2$onTimeout: function(_, timeLimit, onTimeout) { var _future, _this = this, t1 = {}; if (_this._state >= 4) { t1 = new P._Future($.Zone__current, _this.$ti); t1._asyncComplete$1(_this); return t1; } _future = new P._Future($.Zone__current, _this.$ti); t1.timer = null; t1.timer = P.Timer_Timer(timeLimit, new P._Future_timeout_closure(_future, timeLimit)); _this.then$1$2$onError(0, new P._Future_timeout_closure0(t1, _this, _future), new P._Future_timeout_closure1(t1, _future), type$.Null); return _future; }, timeout$1: function($receiver, timeLimit) { return this.timeout$2$onTimeout($receiver, timeLimit, null); }, $isFuture: 1 }; P._Future__addListener_closure.prototype = { call$0: function() { P._Future__propagateToListeners(this.$this, this.listener); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__prependListeners_closure.prototype = { call$0: function() { P._Future__propagateToListeners(this.$this, this._box_0.listeners); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__chainForeignFuture_closure.prototype = { call$1: function(value) { var error, stackTrace, exception, t1 = this.$this; t1._state = 0; try { t1._completeWithValue$1(t1.$ti._precomputed1._as(value)); } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); t1._completeError$2(error, stackTrace); } }, $signature: 8 }; P._Future__chainForeignFuture_closure0.prototype = { call$2: function(error, stackTrace) { this.$this._completeError$2(error, stackTrace); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; P._Future__chainForeignFuture_closure1.prototype = { call$0: function() { this.$this._completeError$2(this.e, this.s); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__asyncCompleteWithValue_closure.prototype = { call$0: function() { this.$this._completeWithValue$1(this.value); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__chainFuture_closure.prototype = { call$0: function() { P._Future__chainCoreFuture(this.value, this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__asyncCompleteError_closure.prototype = { call$0: function() { this.$this._completeError$2(this.error, this.stackTrace); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future__propagateToListeners_handleWhenCompleteCallback.prototype = { call$0: function() { var e, s, t1, exception, t2, originalSource, _this = this, completeResult = null; try { t1 = _this._box_0.listener; completeResult = t1.result._zone.run$1$1(t1.callback, type$.dynamic); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); if (_this.hasError) { t1 = _this._box_1.source._resultOrListeners.error; t2 = e; t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; t2 = _this._box_0; if (t1) t2.listenerValueOrError = _this._box_1.source._resultOrListeners; else t2.listenerValueOrError = P.AsyncError$(e, s); t2.listenerHasError = true; return; } if (completeResult instanceof P._Future && completeResult._state >= 4) { if (completeResult._state === 8) { t1 = _this._box_0; t1.listenerValueOrError = completeResult._resultOrListeners; t1.listenerHasError = true; } return; } if (type$.Future_dynamic._is(completeResult)) { originalSource = _this._box_1.source; t1 = _this._box_0; t1.listenerValueOrError = J.then$1$1$x(completeResult, new P._Future__propagateToListeners_handleWhenCompleteCallback_closure(originalSource), type$.dynamic); t1.listenerHasError = false; } }, $signature: 0 }; P._Future__propagateToListeners_handleWhenCompleteCallback_closure.prototype = { call$1: function(_) { return this.originalSource; }, $signature: 2452 }; P._Future__propagateToListeners_handleValueCallback.prototype = { call$0: function() { var e, s, t1, t2, t3, exception; try { t1 = this._box_0; t2 = t1.listener; t3 = t2.$ti; t1.listenerValueOrError = t2.result._zone.runUnary$2$2(t2.callback, this.sourceResult, t3._eval$1("2/"), t3._precomputed1); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); t1 = this._box_0; t1.listenerValueOrError = P.AsyncError$(e, s); t1.listenerHasError = true; } }, $signature: 0 }; P._Future__propagateToListeners_handleError.prototype = { call$0: function() { var asyncError, e, s, t1, exception, t2, t3, t4, _this = this; try { asyncError = _this._box_1.source._resultOrListeners; t1 = _this._box_0; if (t1.listener.matchesErrorTest$1(asyncError) && t1.listener.errorCallback != null) { t1.listenerValueOrError = t1.listener.handleError$1(asyncError); t1.listenerHasError = false; } } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); t1 = _this._box_1.source._resultOrListeners; t2 = t1.error; t3 = e; t4 = _this._box_0; if (t2 == null ? t3 == null : t2 === t3) t4.listenerValueOrError = t1; else t4.listenerValueOrError = P.AsyncError$(e, s); t4.listenerHasError = true; } }, $signature: 0 }; P._Future_timeout_closure.prototype = { call$0: function() { this._future._completeError$2(new P.TimeoutException("Future not completed", this.timeLimit), C._StringStackTrace_3uE); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._Future_timeout_closure0.prototype = { call$1: function(v) { var t1 = this._box_0.timer; if (t1._handle != null) { t1.cancel$0(0); this._future._completeWithValue$1(v); } }, $signature: function() { return this.$this.$ti._eval$1("Null(1)"); } }; P._Future_timeout_closure1.prototype = { call$2: function(e, s) { var t1 = this._box_0.timer; if (t1._handle != null) { t1.cancel$0(0); this._future._completeError$2(e, s); } }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; P._AsyncCallbackEntry.prototype = {}; P.Stream.prototype = { get$isBroadcast: function() { return false; }, asBroadcastStream$2$onCancel$onListen: function(onCancel, onListen) { var t1 = H._instanceType(this), t2 = new P._AsBroadcastStream(this, null, null, $.Zone__current, t1._eval$1("_AsBroadcastStream")); t2._async$_controller = new P._AsBroadcastStreamController(t2.get$_onListen(), t2.get$_onCancel(), t1._eval$1("_AsBroadcastStreamController")); return t2; }, asBroadcastStream$0: function() { return this.asBroadcastStream$2$onCancel$onListen(null, null); }, map$1$1: function(_, convert, $S) { return new P._MapStream(convert, this, H._instanceType(this)._eval$1("@")._bind$1($S)._eval$1("_MapStream<1,2>")); }, map$1: function($receiver, convert) { return this.map$1$1($receiver, convert, type$.dynamic); }, pipe$1: function(streamConsumer) { return streamConsumer.addStream$1(0, this).then$1$1(0, new P.Stream_pipe_closure(streamConsumer), type$.dynamic); }, fold$1$2: function(_, initialValue, combine, $S) { var subscription, t1 = {}, result = new P._Future($.Zone__current, $S._eval$1("_Future<0>")); t1.value = initialValue; subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new P.Stream_fold_closure(t1, result), result.get$_completeError()); subscription.onData$1(new P.Stream_fold_closure0(t1, this, combine, subscription, result, $S)); return result; }, forEach$1: function(_, action) { var future = new P._Future($.Zone__current, type$._Future_dynamic), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new P.Stream_forEach_closure(future), future.get$_completeError()); subscription.onData$1(new P.Stream_forEach_closure0(this, action, subscription, future)); return future; }, get$length: function(_) { var t1 = {}, future = new P._Future($.Zone__current, type$._Future_int); t1.count = 0; this.listen$4$cancelOnError$onDone$onError(0, new P.Stream_length_closure(t1, this), true, new P.Stream_length_closure0(t1, future), future.get$_completeError()); return future; }, get$isEmpty: function(_) { var future = new P._Future($.Zone__current, type$._Future_bool), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new P.Stream_isEmpty_closure(future), future.get$_completeError()); subscription.onData$1(new P.Stream_isEmpty_closure0(this, subscription, future)); return future; }, get$first: function(_) { var future = new P._Future($.Zone__current, H._instanceType(this)._eval$1("_Future")), subscription = this.listen$4$cancelOnError$onDone$onError(0, null, true, new P.Stream_first_closure(future), future.get$_completeError()); subscription.onData$1(new P.Stream_first_closure0(this, subscription, future)); return future; } }; P.Stream_Stream$fromFuture_closure.prototype = { call$1: function(value) { var t1 = this.controller; t1._async$_add$1(0, value); t1._closeUnchecked$0(); }, $signature: function() { return this.T._eval$1("Null(0)"); } }; P.Stream_Stream$fromFuture_closure0.prototype = { call$2: function(error, stackTrace) { var t1 = this.controller; t1._addError$2(error, stackTrace); t1._closeUnchecked$0(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 275 }; P.Stream_Stream$fromIterable_closure.prototype = { call$0: function() { return new P._IterablePendingEvents(J.get$iterator$ax(this.elements), this.T._eval$1("_IterablePendingEvents<0>")); }, $signature: function() { return this.T._eval$1("_IterablePendingEvents<0>()"); } }; P.Stream_pipe_closure.prototype = { call$1: function(_) { return this.streamConsumer.close$0(0); }, $signature: 687 }; P.Stream_fold_closure.prototype = { call$0: function() { this.result._complete$1(this._box_0.value); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Stream_fold_closure0.prototype = { call$1: function(element) { var _this = this, t1 = _this._box_0, t2 = _this.S; P._runUserCode(new P.Stream_fold__closure(t1, _this.combine, element, t2), new P.Stream_fold__closure0(t1, t2), P._cancelAndErrorClosure(_this.subscription, _this.result)); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; P.Stream_fold__closure.prototype = { call$0: function() { return this.combine.call$2(this._box_0.value, this.element); }, $signature: function() { return this.S._eval$1("0()"); } }; P.Stream_fold__closure0.prototype = { call$1: function(newValue) { this._box_0.value = newValue; }, $signature: function() { return this.S._eval$1("Null(0)"); } }; P.Stream_forEach_closure.prototype = { call$0: function() { this.future._complete$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Stream_forEach_closure0.prototype = { call$1: function(element) { P._runUserCode(new P.Stream_forEach__closure(this.action, element), new P.Stream_forEach__closure0(), P._cancelAndErrorClosure(this.subscription, this.future)); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; P.Stream_forEach__closure.prototype = { call$0: function() { return this.action.call$1(this.element); }, $signature: 0 }; P.Stream_forEach__closure0.prototype = { call$1: function(_) { }, $signature: 83 }; P.Stream_length_closure.prototype = { call$1: function(_) { ++this._box_0.count; }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; P.Stream_length_closure0.prototype = { call$0: function() { this.future._complete$1(this._box_0.count); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Stream_isEmpty_closure.prototype = { call$0: function() { this.future._complete$1(true); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Stream_isEmpty_closure0.prototype = { call$1: function(_) { P._cancelAndValue(this.subscription, this.future, false); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; P.Stream_first_closure.prototype = { call$0: function() { var e, s, t1, exception; try { t1 = H.IterableElementError_noElement(); throw H.wrapException(t1); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._completeWithErrorCallback(this.future, e, s); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.Stream_first_closure0.prototype = { call$1: function(value) { P._cancelAndValue(this.subscription, this.future, value); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Stream.T)"); } }; P.StreamSubscription.prototype = {}; P.StreamView.prototype = { get$isBroadcast: function() { return this._stream.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { return this._stream.listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, listen$1: function($receiver, onData) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, null); } }; P.StreamTransformerBase.prototype = {}; P._StreamController.prototype = { get$stream: function(_) { return new P._ControllerStream(this, H._instanceType(this)._eval$1("_ControllerStream<1>")); }, get$sink: function() { return new P._StreamSinkWrapper0(this, H._instanceType(this)._eval$1("_StreamSinkWrapper0<1>")); }, get$isClosed: function(_) { return (this._state & 4) !== 0; }, get$isPaused: function() { var t1 = this._state; return (t1 & 1) !== 0 ? (this.get$_async$_subscription()._state & 4) !== 0 : (t1 & 2) === 0; }, get$_pendingEvents: function() { if ((this._state & 8) === 0) return this._varData; return this._varData.varData; }, _ensurePendingEvents$0: function() { var events, state, _this = this; if ((_this._state & 8) === 0) { events = _this._varData; return events == null ? _this._varData = new P._StreamImplEvents(H._instanceType(_this)._eval$1("_StreamImplEvents<1>")) : events; } state = _this._varData; events = state.varData; return events == null ? state.varData = new P._StreamImplEvents(H._instanceType(_this)._eval$1("_StreamImplEvents<1>")) : events; }, get$_async$_subscription: function() { var varData = this._varData; return (this._state & 8) !== 0 ? varData.varData : varData; }, _badEventState$0: function() { if ((this._state & 4) !== 0) return new P.StateError("Cannot add event after closing"); return new P.StateError("Cannot add event while adding a stream"); }, addStream$2$cancelOnError: function(_, source, cancelOnError) { var t2, t3, t4, _this = this, t1 = _this._state; if (t1 >= 4) throw H.wrapException(_this._badEventState$0()); if ((t1 & 2) !== 0) { t1 = new P._Future($.Zone__current, type$._Future_dynamic); t1._asyncComplete$1(null); return t1; } t1 = _this._varData; t2 = cancelOnError === true; t3 = new P._Future($.Zone__current, type$._Future_dynamic); t4 = t2 ? P._AddStreamState_makeErrorHandler(_this) : _this.get$_addError(); t4 = source.listen$4$cancelOnError$onDone$onError(0, _this.get$_async$_add(_this), t2, _this.get$_async$_close(), t4); t2 = _this._state; if ((t2 & 1) !== 0 ? (_this.get$_async$_subscription()._state & 4) !== 0 : (t2 & 2) === 0) t4.pause$0(0); _this._varData = new P._StreamControllerAddStreamState(t1, t3, t4, H._instanceType(_this)._eval$1("_StreamControllerAddStreamState<1>")); _this._state |= 8; return t3; }, _ensureDoneFuture$0: function() { var t1 = this._doneFuture; if (t1 == null) t1 = this._doneFuture = (this._state & 2) !== 0 ? $.$get$Future__nullFuture() : new P._Future($.Zone__current, type$._Future_void); return t1; }, add$1: function(_, value) { if (this._state >= 4) throw H.wrapException(this._badEventState$0()); this._async$_add$1(0, value); }, addError$2: function(error, stackTrace) { var replacement; H.checkNotNullable(error, "error", type$.Object); if (this._state >= 4) throw H.wrapException(this._badEventState$0()); replacement = $.Zone__current.errorCallback$2(error, stackTrace); if (replacement != null) { error = replacement.error; stackTrace = replacement.stackTrace; } else if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); this._addError$2(error, stackTrace); }, addError$1: function(error) { return this.addError$2(error, null); }, close$0: function(_) { var _this = this, t1 = _this._state; if ((t1 & 4) !== 0) return _this._ensureDoneFuture$0(); if (t1 >= 4) throw H.wrapException(_this._badEventState$0()); _this._closeUnchecked$0(); return _this._ensureDoneFuture$0(); }, _closeUnchecked$0: function() { var t1 = this._state |= 4; if ((t1 & 1) !== 0) this._sendDone$0(); else if ((t1 & 3) === 0) this._ensurePendingEvents$0().add$1(0, C.C__DelayedDone); }, _async$_add$1: function(_, value) { var _this = this, t1 = _this._state; if ((t1 & 1) !== 0) _this._sendData$1(value); else if ((t1 & 3) === 0) _this._ensurePendingEvents$0().add$1(0, new P._DelayedData(value, H._instanceType(_this)._eval$1("_DelayedData<1>"))); }, _addError$2: function(error, stackTrace) { var t1 = this._state; if ((t1 & 1) !== 0) this._sendError$2(error, stackTrace); else if ((t1 & 3) === 0) this._ensurePendingEvents$0().add$1(0, new P._DelayedError(error, stackTrace)); }, _async$_close$0: function() { var addState = this._varData; this._varData = addState.varData; this._state &= 4294967287; addState.addStreamFuture._asyncComplete$1(null); }, _async$_subscribe$4: function(onData, onError, onDone, cancelOnError) { var subscription, pendingEvents, t1, addState, _this = this; if ((_this._state & 3) !== 0) throw H.wrapException(P.StateError$("Stream has already been listened to.")); subscription = P._ControllerSubscription$(_this, onData, onError, onDone, cancelOnError, H._instanceType(_this)._precomputed1); pendingEvents = _this.get$_pendingEvents(); t1 = _this._state |= 1; if ((t1 & 8) !== 0) { addState = _this._varData; addState.varData = subscription; addState.addSubscription.resume$0(0); } else _this._varData = subscription; subscription._setPendingEvents$1(pendingEvents); subscription._guardCallback$1(new P._StreamController__subscribe_closure(_this)); return subscription; }, _recordCancel$1: function(subscription) { var onCancel, cancelResult, e, s, exception, result0, t1, _this = this, result = null; if ((_this._state & 8) !== 0) result = _this._varData.cancel$0(0); _this._varData = null; _this._state = _this._state & 4294967286 | 2; onCancel = _this.onCancel; if (onCancel != null) if (result == null) try { cancelResult = onCancel.call$0(); if (type$.Future_void._is(cancelResult)) result = cancelResult; } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); result0 = new P._Future($.Zone__current, type$._Future_void); result0._asyncCompleteError$2(e, s); result = result0; } else result = result.whenComplete$1(onCancel); t1 = new P._StreamController__recordCancel_complete(_this); if (result != null) result = result.whenComplete$1(t1); else t1.call$0(); return result; }, _recordPause$1: function(subscription) { if ((this._state & 8) !== 0) this._varData.addSubscription.pause$0(0); P._runGuarded(this.onPause); }, _recordResume$1: function(subscription) { if ((this._state & 8) !== 0) this._varData.addSubscription.resume$0(0); P._runGuarded(this.onResume); }, $isEventSink: 1, $isStreamController: 1 }; P._StreamController__subscribe_closure.prototype = { call$0: function() { P._runGuarded(this.$this.onListen); }, $signature: 0 }; P._StreamController__recordCancel_complete.prototype = { call$0: function() { var doneFuture = this.$this._doneFuture; if (doneFuture != null && doneFuture._state === 0) doneFuture._asyncComplete$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._SyncStreamControllerDispatch.prototype = { _sendData$1: function(data) { this.get$_async$_subscription()._async$_add$1(0, data); }, _sendError$2: function(error, stackTrace) { this.get$_async$_subscription()._addError$2(error, stackTrace); }, _sendDone$0: function() { this.get$_async$_subscription()._async$_close$0(); } }; P._AsyncStreamControllerDispatch.prototype = { _sendData$1: function(data) { this.get$_async$_subscription()._addPending$1(new P._DelayedData(data, this.$ti._eval$1("_DelayedData<1>"))); }, _sendError$2: function(error, stackTrace) { this.get$_async$_subscription()._addPending$1(new P._DelayedError(error, stackTrace)); }, _sendDone$0: function() { this.get$_async$_subscription()._addPending$1(C.C__DelayedDone); } }; P._AsyncStreamController.prototype = {}; P._SyncStreamController.prototype = {}; P._ControllerStream.prototype = { _createSubscription$4: function(onData, onError, onDone, cancelOnError) { return this._async$_controller._async$_subscribe$4(onData, onError, onDone, cancelOnError); }, get$hashCode: function(_) { return (H.Primitives_objectHashCode(this._async$_controller) ^ 892482866) >>> 0; }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof P._ControllerStream && other._async$_controller === this._async$_controller; } }; P._ControllerSubscription.prototype = { _onCancel$0: function() { return this._async$_controller._recordCancel$1(this); }, _onPause$0: function() { this._async$_controller._recordPause$1(this); }, _onResume$0: function() { this._async$_controller._recordResume$1(this); } }; P._StreamSinkWrapper0.prototype = { add$1: function(_, data) { this._async$_target.add$1(0, data); }, addError$2: function(error, stackTrace) { this._async$_target.addError$2(error, stackTrace); }, close$0: function(_) { return this._async$_target.close$0(0); }, $isEventSink: 1 }; P._AddStreamState.prototype = { cancel$0: function(_) { var cancel = this.addSubscription.cancel$0(0); if (cancel == null) { this.addStreamFuture._asyncComplete$1(null); return $.$get$Future__nullFuture(); } return cancel.whenComplete$1(new P._AddStreamState_cancel_closure(this)); } }; P._AddStreamState_makeErrorHandler_closure.prototype = { call$2: function(e, s) { var t1 = this.controller; t1._addError$2(e, s); t1._async$_close$0(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; P._AddStreamState_cancel_closure.prototype = { call$0: function() { this.$this.addStreamFuture._asyncComplete$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; P._StreamControllerAddStreamState.prototype = {}; P._BufferingStreamSubscription.prototype = { _setPendingEvents$1: function(pendingEvents) { var _this = this; if (pendingEvents == null) return; _this._pending = pendingEvents; if (!pendingEvents.get$isEmpty(pendingEvents)) { _this._state = (_this._state | 64) >>> 0; pendingEvents.schedule$1(_this); } }, onData$1: function(handleData) { this._async$_onData = P._BufferingStreamSubscription__registerDataHandler(this._zone, handleData, H._instanceType(this)._eval$1("_BufferingStreamSubscription.T")); }, pause$1: function(_, resumeSignal) { var t2, t3, _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; t2 = (t1 + 128 | 4) >>> 0; _this._state = t2; if (t1 < 128) { t3 = _this._pending; if (t3 != null) if (t3._state === 1) t3._state = 3; } if ((t1 & 4) === 0 && (t2 & 32) === 0) _this._guardCallback$1(_this.get$_onPause()); }, pause$0: function($receiver) { return this.pause$1($receiver, null); }, resume$0: function(_) { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; if (t1 >= 128) { t1 = _this._state = t1 - 128; if (t1 < 128) { if ((t1 & 64) !== 0) { t1 = _this._pending; t1 = !t1.get$isEmpty(t1); } else t1 = false; if (t1) _this._pending.schedule$1(_this); else { t1 = (_this._state & 4294967291) >>> 0; _this._state = t1; if ((t1 & 32) === 0) _this._guardCallback$1(_this.get$_onResume()); } } } }, cancel$0: function(_) { var _this = this, t1 = (_this._state & 4294967279) >>> 0; _this._state = t1; if ((t1 & 8) === 0) _this._async$_cancel$0(); t1 = _this._cancelFuture; return t1 == null ? $.$get$Future__nullFuture() : t1; }, _async$_cancel$0: function() { var t2, _this = this, t1 = _this._state = (_this._state | 8) >>> 0; if ((t1 & 64) !== 0) { t2 = _this._pending; if (t2._state === 1) t2._state = 3; } if ((t1 & 32) === 0) _this._pending = null; _this._cancelFuture = _this._onCancel$0(); }, _async$_add$1: function(_, data) { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; if (t1 < 32) _this._sendData$1(data); else _this._addPending$1(new P._DelayedData(data, H._instanceType(_this)._eval$1("_DelayedData<_BufferingStreamSubscription.T>"))); }, _addError$2: function(error, stackTrace) { var t1 = this._state; if ((t1 & 8) !== 0) return; if (t1 < 32) this._sendError$2(error, stackTrace); else this._addPending$1(new P._DelayedError(error, stackTrace)); }, _async$_close$0: function() { var _this = this, t1 = _this._state; if ((t1 & 8) !== 0) return; t1 = (t1 | 2) >>> 0; _this._state = t1; if (t1 < 32) _this._sendDone$0(); else _this._addPending$1(C.C__DelayedDone); }, _onPause$0: function() { }, _onResume$0: function() { }, _onCancel$0: function() { return null; }, _addPending$1: function($event) { var t1, _this = this, pending = _this._pending; if (pending == null) pending = new P._StreamImplEvents(H._instanceType(_this)._eval$1("_StreamImplEvents<_BufferingStreamSubscription.T>")); _this._pending = pending; pending.add$1(0, $event); t1 = _this._state; if ((t1 & 64) === 0) { t1 = (t1 | 64) >>> 0; _this._state = t1; if (t1 < 128) pending.schedule$1(_this); } }, _sendData$1: function(data) { var _this = this, t1 = _this._state; _this._state = (t1 | 32) >>> 0; _this._zone.runUnaryGuarded$1$2(_this._async$_onData, data, H._instanceType(_this)._eval$1("_BufferingStreamSubscription.T")); _this._state = (_this._state & 4294967263) >>> 0; _this._checkState$1((t1 & 4) !== 0); }, _sendError$2: function(error, stackTrace) { var cancelFuture, _this = this, t1 = _this._state, t2 = new P._BufferingStreamSubscription__sendError_sendError(_this, error, stackTrace); if ((t1 & 1) !== 0) { _this._state = (t1 | 16) >>> 0; _this._async$_cancel$0(); cancelFuture = _this._cancelFuture; if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(t2); else t2.call$0(); } else { t2.call$0(); _this._checkState$1((t1 & 4) !== 0); } }, _sendDone$0: function() { var cancelFuture, _this = this, t1 = new P._BufferingStreamSubscription__sendDone_sendDone(_this); _this._async$_cancel$0(); _this._state = (_this._state | 16) >>> 0; cancelFuture = _this._cancelFuture; if (cancelFuture != null && cancelFuture !== $.$get$Future__nullFuture()) cancelFuture.whenComplete$1(t1); else t1.call$0(); }, _guardCallback$1: function(callback) { var _this = this, t1 = _this._state; _this._state = (t1 | 32) >>> 0; callback.call$0(); _this._state = (_this._state & 4294967263) >>> 0; _this._checkState$1((t1 & 4) !== 0); }, _checkState$1: function(wasInputPaused) { var t1, isInputPaused, _this = this; if ((_this._state & 64) !== 0) { t1 = _this._pending; t1 = t1.get$isEmpty(t1); } else t1 = false; if (t1) { t1 = _this._state = (_this._state & 4294967231) >>> 0; if ((t1 & 4) !== 0) if (t1 < 128) { t1 = _this._pending; t1 = t1 == null ? null : t1.get$isEmpty(t1); t1 = t1 !== false; } else t1 = false; else t1 = false; if (t1) _this._state = (_this._state & 4294967291) >>> 0; } for (; true; wasInputPaused = isInputPaused) { t1 = _this._state; if ((t1 & 8) !== 0) { _this._pending = null; return; } isInputPaused = (t1 & 4) !== 0; if (wasInputPaused === isInputPaused) break; _this._state = (t1 ^ 32) >>> 0; if (isInputPaused) _this._onPause$0(); else _this._onResume$0(); _this._state = (_this._state & 4294967263) >>> 0; } t1 = _this._state; if ((t1 & 64) !== 0 && t1 < 128) _this._pending.schedule$1(_this); }, $isStreamSubscription: 1 }; P._BufferingStreamSubscription__sendError_sendError.prototype = { call$0: function() { var onError, t3, t4, t1 = this.$this, t2 = t1._state; if ((t2 & 8) !== 0 && (t2 & 16) === 0) return; t1._state = (t2 | 32) >>> 0; onError = t1._onError; t2 = this.error; t3 = type$.Object; t4 = t1._zone; if (type$.void_Function_Object_StackTrace._is(onError)) t4.runBinaryGuarded$2$3(onError, t2, this.stackTrace, t3, type$.StackTrace); else t4.runUnaryGuarded$1$2(onError, t2, t3); t1._state = (t1._state & 4294967263) >>> 0; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._BufferingStreamSubscription__sendDone_sendDone.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._state; if ((t2 & 16) === 0) return; t1._state = (t2 | 42) >>> 0; t1._zone.runGuarded$1(t1._onDone); t1._state = (t1._state & 4294967263) >>> 0; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._StreamImpl.prototype = { listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { return this._createSubscription$4(onData, onError, onDone, cancelOnError === true); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, listen$2$onError: function($receiver, onData, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, onError); }, listen$1: function($receiver, onData) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, null); }, _createSubscription$4: function(onData, onError, onDone, cancelOnError) { return P._BufferingStreamSubscription$(onData, onError, onDone, cancelOnError, H._instanceType(this)._precomputed1); } }; P._GeneratedStreamImpl.prototype = { _createSubscription$4: function(onData, onError, onDone, cancelOnError) { var t1, _this = this; if (_this._isUsed) throw H.wrapException(P.StateError$("Stream has already been listened to.")); _this._isUsed = true; t1 = P._BufferingStreamSubscription$(onData, onError, onDone, cancelOnError, _this.$ti._precomputed1); t1._setPendingEvents$1(_this._pending.call$0()); return t1; } }; P._IterablePendingEvents.prototype = { get$isEmpty: function(_) { return this._async$_iterator == null; }, handleNext$1: function(dispatch) { var movedNext, e, s, exception, iterator = this._async$_iterator; if (iterator == null) throw H.wrapException(P.StateError$("No events pending.")); movedNext = false; try { if (iterator.moveNext$0()) { movedNext = true; dispatch._sendData$1(J.get$current$z(iterator)); } else { this._async$_iterator = null; dispatch._sendDone$0(); } } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); if (!movedNext) this._async$_iterator = C.C_EmptyIterator; dispatch._sendError$2(e, s); } } }; P._DelayedEvent.prototype = { get$next: function(receiver) { return this.next; }, set$next: function(receiver, val) { return this.next = val; } }; P._DelayedData.prototype = { perform$1: function(dispatch) { dispatch._sendData$1(this.value); }, get$value: function(receiver) { return this.value; } }; P._DelayedError.prototype = { perform$1: function(dispatch) { dispatch._sendError$2(this.error, this.stackTrace); } }; P._DelayedDone.prototype = { perform$1: function(dispatch) { dispatch._sendDone$0(); }, get$next: function(_) { return null; }, set$next: function(_, _0) { throw H.wrapException(P.StateError$("No events after a done.")); } }; P._PendingEvents.prototype = { schedule$1: function(dispatch) { var _this = this, t1 = _this._state; if (t1 === 1) return; if (t1 >= 1) { _this._state = 1; return; } P.scheduleMicrotask(new P._PendingEvents_schedule_closure(_this, dispatch)); _this._state = 1; } }; P._PendingEvents_schedule_closure.prototype = { call$0: function() { var t1 = this.$this, oldState = t1._state; t1._state = 0; if (oldState === 3) return; t1.handleNext$1(this.dispatch); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._StreamImplEvents.prototype = { get$isEmpty: function(_) { return this.lastPendingEvent == null; }, add$1: function(_, $event) { var _this = this, lastEvent = _this.lastPendingEvent; if (lastEvent == null) _this.firstPendingEvent = _this.lastPendingEvent = $event; else { lastEvent.set$next(0, $event); _this.lastPendingEvent = $event; } }, handleNext$1: function(dispatch) { var $event = this.firstPendingEvent, nextEvent = $event.get$next($event); this.firstPendingEvent = nextEvent; if (nextEvent == null) this.lastPendingEvent = null; $event.perform$1(dispatch); }, clear$0: function(_) { var _this = this; if (_this._state === 1) _this._state = 3; _this.firstPendingEvent = _this.lastPendingEvent = null; } }; P._DoneStreamSubscription.prototype = { _schedule$0: function() { var _this = this; if ((_this._state & 2) !== 0) return; _this._zone.scheduleMicrotask$1(_this.get$_sendDone()); _this._state = (_this._state | 2) >>> 0; }, onData$1: function(handleData) { }, pause$1: function(_, resumeSignal) { this._state += 4; }, pause$0: function($receiver) { return this.pause$1($receiver, null); }, resume$0: function(_) { var t1 = this._state; if (t1 >= 4) { t1 = this._state = t1 - 4; if (t1 < 4 && (t1 & 1) === 0) this._schedule$0(); } }, cancel$0: function(_) { return $.$get$Future__nullFuture(); }, _sendDone$0: function() { var doneHandler, _this = this, t1 = _this._state = (_this._state & 4294967293) >>> 0; if (t1 >= 4) return; _this._state = (t1 | 1) >>> 0; doneHandler = _this._onDone; if (doneHandler != null) _this._zone.runGuarded$1(doneHandler); }, $isStreamSubscription: 1 }; P._AsBroadcastStream.prototype = { get$isBroadcast: function() { return true; }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { var t1, t2, _this = this, controller = _this._async$_controller; if (controller == null || (controller._state & 4) !== 0) return P._DoneStreamSubscription$(onDone, _this.$ti._precomputed1); if (_this._async$_subscription == null) { t1 = controller.get$add(controller); t2 = controller.get$addError(); _this._async$_subscription = _this._async$_source.listen$3$onDone$onError(0, t1, controller.get$close(controller), t2); } return controller._async$_subscribe$4(onData, onError, onDone, cancelOnError === true); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, listen$1: function($receiver, onData) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, null, null); }, _onCancel$0: function() { var t1, subscription, _this = this, controller = _this._async$_controller, shutdown = controller == null || (controller._state & 4) !== 0, cancelHandler = _this._onCancelHandler; if (cancelHandler != null) { t1 = _this.$ti._eval$1("_BroadcastSubscriptionWrapper<1>"); _this._zone.runUnary$2$2(cancelHandler, new P._BroadcastSubscriptionWrapper(_this, t1), type$.void, t1); } if (shutdown) { subscription = _this._async$_subscription; if (subscription != null) { subscription.cancel$0(0); _this._async$_subscription = null; } } }, _onListen$0: function() { var t1, _this = this, listenHandler = _this._onListenHandler; if (listenHandler != null) { t1 = _this.$ti._eval$1("_BroadcastSubscriptionWrapper<1>"); _this._zone.runUnary$2$2(listenHandler, new P._BroadcastSubscriptionWrapper(_this, t1), type$.void, t1); } } }; P._BroadcastSubscriptionWrapper.prototype = { onData$1: function(handleData) { throw H.wrapException(P.UnsupportedError$("Cannot change handlers of asBroadcastStream source subscription.")); }, pause$1: function(_, resumeSignal) { var t1 = this._stream._async$_subscription; if (t1 != null) t1.pause$1(0, resumeSignal); }, pause$0: function($receiver) { return this.pause$1($receiver, null); }, resume$0: function(_) { var t1 = this._stream._async$_subscription; if (t1 != null) t1.resume$0(0); }, cancel$0: function(_) { var t1 = this._stream, subscription = t1._async$_subscription; if (subscription != null) { t1._async$_controller = t1._async$_subscription = null; subscription.cancel$0(0); } return $.$get$Future__nullFuture(); }, $isStreamSubscription: 1 }; P._StreamIterator.prototype = { get$current: function(_) { if (this._async$_hasValue) return this._stateData; return null; }, moveNext$0: function() { var future, _this = this, subscription = _this._async$_subscription; if (subscription != null) { if (_this._async$_hasValue) { future = new P._Future($.Zone__current, type$._Future_bool); _this._stateData = future; _this._async$_hasValue = false; subscription.resume$0(0); return future; } throw H.wrapException(P.StateError$("Already waiting for next.")); } return _this._initializeOrDone$0(); }, _initializeOrDone$0: function() { var future, subscription, _this = this, stateData = _this._stateData; if (stateData != null) { future = new P._Future($.Zone__current, type$._Future_bool); _this._stateData = future; subscription = stateData.listen$4$cancelOnError$onDone$onError(0, _this.get$_async$_onData(), true, _this.get$_onDone(), _this.get$_onError()); if (_this._stateData != null) _this._async$_subscription = subscription; return future; } return $.$get$Future__falseFuture(); }, cancel$0: function(_) { var _this = this, subscription = _this._async$_subscription, stateData = _this._stateData; _this._stateData = null; if (subscription != null) { _this._async$_subscription = null; if (!_this._async$_hasValue) stateData._asyncComplete$1(false); else _this._async$_hasValue = false; return subscription.cancel$0(0); } return $.$get$Future__nullFuture(); }, _async$_onData$1: function(data) { var moveNextFuture, t1, _this = this; if (_this._async$_subscription == null) return; moveNextFuture = _this._stateData; _this._stateData = data; _this._async$_hasValue = true; moveNextFuture._complete$1(true); if (_this._async$_hasValue) { t1 = _this._async$_subscription; if (t1 != null) t1.pause$0(0); } }, _onError$2: function(error, stackTrace) { var _this = this, subscription = _this._async$_subscription, moveNextFuture = _this._stateData; _this._stateData = _this._async$_subscription = null; if (subscription != null) moveNextFuture._completeError$2(error, stackTrace); else moveNextFuture._asyncCompleteError$2(error, stackTrace); }, _onDone$0: function() { var _this = this, subscription = _this._async$_subscription, moveNextFuture = _this._stateData; _this._stateData = _this._async$_subscription = null; if (subscription != null) moveNextFuture._completeWithValue$1(false); else moveNextFuture._asyncCompleteWithValue$1(false); } }; P._EmptyStream.prototype = { get$isBroadcast: function() { return true; }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { return P._DoneStreamSubscription$(onDone, this.$ti._precomputed1); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; P._cancelAndError_closure.prototype = { call$0: function() { return this.future._completeError$2(this.error, this.stackTrace); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._cancelAndErrorClosure_closure.prototype = { call$2: function(error, stackTrace) { P._cancelAndError(this.subscription, this.future, error, stackTrace); }, $signature: 124 }; P._cancelAndValue_closure.prototype = { call$0: function() { return this.future._complete$1(this.value); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._ForwardingStream.prototype = { get$isBroadcast: function() { return this._async$_source.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { var t1 = H._instanceType(this), t2 = t1._eval$1("_ForwardingStream.T"), t3 = $.Zone__current, t4 = cancelOnError === true ? 1 : 0, t5 = P._BufferingStreamSubscription__registerDataHandler(t3, onData, t2), t6 = P._BufferingStreamSubscription__registerErrorHandler(t3, onError), t7 = onDone == null ? P.async___nullDoneHandler$closure() : onDone; t2 = new P._ForwardingStreamSubscription(this, t5, t6, t3.registerCallback$1$1(t7, type$.void), t3, t4, t1._eval$1("@<_ForwardingStream.S>")._bind$1(t2)._eval$1("_ForwardingStreamSubscription<1,2>")); t2._async$_subscription = this._async$_source.listen$3$onDone$onError(0, t2.get$_handleData(), t2.get$_handleDone(), t2.get$_async$_handleError()); return t2; }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; P._ForwardingStreamSubscription.prototype = { _async$_add$1: function(_, data) { if ((this._state & 2) !== 0) return; this.super$_BufferingStreamSubscription$_add(0, data); }, _addError$2: function(error, stackTrace) { if ((this._state & 2) !== 0) return; this.super$_BufferingStreamSubscription$_addError(error, stackTrace); }, _onPause$0: function() { var t1 = this._async$_subscription; if (t1 != null) t1.pause$0(0); }, _onResume$0: function() { var t1 = this._async$_subscription; if (t1 != null) t1.resume$0(0); }, _onCancel$0: function() { var subscription = this._async$_subscription; if (subscription != null) { this._async$_subscription = null; return subscription.cancel$0(0); } return null; }, _handleData$1: function(data) { this._stream._handleData$2(data, this); }, _async$_handleError$2: function(error, stackTrace) { this._addError$2(error, stackTrace); }, _handleDone$0: function() { this._async$_close$0(); } }; P._WhereStream.prototype = { _handleData$2: function(inputEvent, sink) { var e, s, exception, satisfies = null; try { satisfies = this._test.call$1(inputEvent); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._addErrorWithReplacement(sink, e, s); return; } if (satisfies) sink._async$_add$1(0, inputEvent); } }; P._MapStream.prototype = { _handleData$2: function(inputEvent, sink) { var e, s, exception, outputEvent = null; try { outputEvent = this._async$_transform.call$1(inputEvent); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._addErrorWithReplacement(sink, e, s); return; } sink._async$_add$1(0, outputEvent); } }; P._EventSinkWrapper.prototype = { add$1: function(_, data) { var t1 = this._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, data); }, addError$2: function(error, stackTrace) { var t1 = this._async$_sink, t2 = stackTrace == null ? P.AsyncError_defaultStackTrace(error) : stackTrace; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_addError(error, t2); }, close$0: function(_) { var t1 = this._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); }, $isEventSink: 1 }; P._SinkTransformerStreamSubscription.prototype = { get$_transformerSink: function() { var t1 = this.___SinkTransformerStreamSubscription__transformerSink; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_transformerSink")) : t1; }, _onPause$0: function() { var t1 = this._async$_subscription; if (t1 != null) t1.pause$0(0); }, _onResume$0: function() { var t1 = this._async$_subscription; if (t1 != null) t1.resume$0(0); }, _onCancel$0: function() { var subscription = this._async$_subscription; if (subscription != null) { this._async$_subscription = null; return subscription.cancel$0(0); } return null; }, _handleData$1: function(data) { var e, s, exception; try { this.get$_transformerSink().add$1(0, data); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); if ((this._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); this.super$_BufferingStreamSubscription$_addError(e, s); } }, _async$_handleError$2: function(error, stackTrace) { var e, s, exception, t1, _this = this, _s24_ = "Stream is already closed"; try { _this.get$_transformerSink().addError$2(error, stackTrace); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); t1 = e; if (t1 == null ? error == null : t1 === error) { if ((_this._state & 2) !== 0) H.throwExpression(P.StateError$(_s24_)); _this.super$_BufferingStreamSubscription$_addError(error, stackTrace); } else { if ((_this._state & 2) !== 0) H.throwExpression(P.StateError$(_s24_)); _this.super$_BufferingStreamSubscription$_addError(e, s); } } }, _handleDone$0: function() { var e, s, exception, _this = this; try { _this._async$_subscription = null; _this.get$_transformerSink().close$0(0); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); if ((_this._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); _this.super$_BufferingStreamSubscription$_addError(e, s); } } }; P._StreamSinkTransformer.prototype = { bind$1: function(stream) { var t1 = this.$ti; return new P._BoundSinkStream(this._sinkMapper, stream, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BoundSinkStream<1,2>")); } }; P._BoundSinkStream.prototype = { get$isBroadcast: function() { return this._stream.get$isBroadcast(); }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { var t1 = this.$ti, t2 = t1._rest[1], t3 = $.Zone__current, t4 = cancelOnError === true ? 1 : 0, t5 = P._BufferingStreamSubscription__registerDataHandler(t3, onData, t2), t6 = P._BufferingStreamSubscription__registerErrorHandler(t3, onError), t7 = onDone == null ? P.async___nullDoneHandler$closure() : onDone, subscription = new P._SinkTransformerStreamSubscription(t5, t6, t3.registerCallback$1$1(t7, type$.void), t3, t4, t1._eval$1("@<1>")._bind$1(t2)._eval$1("_SinkTransformerStreamSubscription<1,2>")); subscription.___SinkTransformerStreamSubscription__transformerSink = this._sinkMapper.call$1(new P._EventSinkWrapper(subscription, t1._eval$1("_EventSinkWrapper<2>"))); subscription._async$_subscription = this._stream.listen$3$onDone$onError(0, subscription.get$_handleData(), subscription.get$_handleDone(), subscription.get$_async$_handleError()); return subscription; }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; P._HandlerEventSink.prototype = { add$1: function(_, data) { var handleData, t1, sink = this._async$_sink; if (sink == null) throw H.wrapException(P.StateError$("Sink is closed")); handleData = this._handleData; if (handleData != null) handleData.call$2(data, sink); else { this.$ti._rest[1]._as(data); t1 = sink._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, data); } }, addError$2: function(error, stackTrace) { var sink, handleError; H.checkNotNullable(error, "error", type$.Object); sink = this._async$_sink; if (sink == null) throw H.wrapException(P.StateError$("Sink is closed")); handleError = this._async$_handleError; if (stackTrace == null) stackTrace = P.AsyncError_defaultStackTrace(error); if (handleError != null) handleError.call$3(error, stackTrace, sink); else sink.addError$2(error, stackTrace); }, close$0: function(_) { var handleDone, t1, sink = this._async$_sink; if (sink == null) return; this._async$_sink = null; handleDone = this._handleDone; if (handleDone != null) handleDone.call$1(sink); else { t1 = sink._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); } }, $isEventSink: 1 }; P._StreamHandlerTransformer.prototype = { bind$1: function(stream) { return this.super$_StreamSinkTransformer$bind(stream); } }; P._StreamHandlerTransformer_closure.prototype = { call$1: function(outputSink) { var _this = this; return new P._HandlerEventSink(_this.handleData, _this.handleError, _this.handleDone, outputSink, _this.S._eval$1("@<0>")._bind$1(_this.T)._eval$1("_HandlerEventSink<1,2>")); }, $signature: function() { return this.S._eval$1("@<0>")._bind$1(this.T)._eval$1("_HandlerEventSink<1,2>(EventSink<2>)"); } }; P._ZoneFunction.prototype = {}; P._RunNullaryZoneFunction.prototype = {}; P._RunUnaryZoneFunction.prototype = {}; P._RunBinaryZoneFunction.prototype = {}; P._RegisterNullaryZoneFunction.prototype = {}; P._RegisterUnaryZoneFunction.prototype = {}; P._RegisterBinaryZoneFunction.prototype = {}; P._ZoneSpecification.prototype = {$isZoneSpecification: 1}; P._ZoneDelegate.prototype = {$isZoneDelegate: 1}; P._Zone.prototype = {$isZone: 1}; P._CustomZone.prototype = { get$_async$_delegate: function() { var t1 = this._delegateCache; return t1 == null ? this._delegateCache = new P._ZoneDelegate(this) : t1; }, get$_parentDelegate: function() { return this.parent.get$_async$_delegate(); }, get$errorZone: function() { return this._handleUncaughtError.zone; }, runGuarded$1: function(f) { var e, s, exception; try { this.run$1$1(f, type$.void); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); this.handleUncaughtError$2(e, s); } }, runUnaryGuarded$1$2: function(f, arg, $T) { var e, s, exception; try { this.runUnary$2$2(f, arg, type$.void, $T); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); this.handleUncaughtError$2(e, s); } }, runBinaryGuarded$2$3: function(f, arg1, arg2, T1, T2) { var e, s, exception; try { this.runBinary$3$3(f, arg1, arg2, type$.void, T1, T2); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); this.handleUncaughtError$2(e, s); } }, bindCallback$1$1: function(f, $R) { return new P._CustomZone_bindCallback_closure(this, this.registerCallback$1$1(f, $R), $R); }, bindUnaryCallback$2$1: function(f, $R, $T) { return new P._CustomZone_bindUnaryCallback_closure(this, this.registerUnaryCallback$2$1(f, $R, $T), $T, $R); }, bindCallbackGuarded$1: function(f) { return new P._CustomZone_bindCallbackGuarded_closure(this, this.registerCallback$1$1(f, type$.void)); }, bindUnaryCallbackGuarded$1$1: function(f, $T) { return new P._CustomZone_bindUnaryCallbackGuarded_closure(this, this.registerUnaryCallback$2$1(f, type$.void, $T), $T); }, $index: function(_, key) { var value, t1 = this._async$_map, result = t1.$index(0, key); if (result != null || t1.containsKey$1(0, key)) return result; value = this.parent.$index(0, key); if (value != null) t1.$indexSet(0, key, value); return value; }, handleUncaughtError$2: function(error, stackTrace) { var implementation = this._handleUncaughtError, t1 = implementation.zone; return implementation.$function.call$5(t1, t1.get$_parentDelegate(), this, error, stackTrace); }, fork$2$specification$zoneValues: function(specification, zoneValues) { var implementation = this._fork, t1 = implementation.zone; return implementation.$function.call$5(t1, t1.get$_parentDelegate(), this, specification, zoneValues); }, fork$1$specification: function(specification) { return this.fork$2$specification$zoneValues(specification, null); }, run$1$1: function(f) { var implementation = this._run, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, f); }, runUnary$2$2: function(f, arg) { var implementation = this._runUnary, t1 = implementation.zone; return implementation.$function.call$5(t1, t1.get$_parentDelegate(), this, f, arg); }, runBinary$3$3: function(f, arg1, arg2) { var implementation = this._runBinary, t1 = implementation.zone; return implementation.$function.call$6(t1, t1.get$_parentDelegate(), this, f, arg1, arg2); }, registerCallback$1$1: function(callback) { var implementation = this._registerCallback, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, callback); }, registerUnaryCallback$2$1: function(callback) { var implementation = this._registerUnaryCallback, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, callback); }, registerBinaryCallback$3$1: function(callback) { var implementation = this._registerBinaryCallback, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, callback); }, errorCallback$2: function(error, stackTrace) { var implementation, implementationZone; H.checkNotNullable(error, "error", type$.Object); implementation = this._errorCallback; implementationZone = implementation.zone; if (implementationZone === C.C__RootZone) return null; return implementation.$function.call$5(implementationZone, implementationZone.get$_parentDelegate(), this, error, stackTrace); }, scheduleMicrotask$1: function(f) { var implementation = this._scheduleMicrotask, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, f); }, createTimer$2: function(duration, f) { var implementation = this._createTimer, t1 = implementation.zone; return implementation.$function.call$5(t1, t1.get$_parentDelegate(), this, duration, f); }, createPeriodicTimer$2: function(duration, f) { var implementation = this._createPeriodicTimer, t1 = implementation.zone; return implementation.$function.call$5(t1, t1.get$_parentDelegate(), this, duration, f); }, print$1: function(_, line) { var implementation = this._print, t1 = implementation.zone; return implementation.$function.call$4(t1, t1.get$_parentDelegate(), this, line); }, get$_run: function() { return this._run; }, get$_runUnary: function() { return this._runUnary; }, get$_runBinary: function() { return this._runBinary; }, get$_registerCallback: function() { return this._registerCallback; }, get$_registerUnaryCallback: function() { return this._registerUnaryCallback; }, get$_registerBinaryCallback: function() { return this._registerBinaryCallback; }, get$_errorCallback: function() { return this._errorCallback; }, get$_scheduleMicrotask: function() { return this._scheduleMicrotask; }, get$_createTimer: function() { return this._createTimer; }, get$_createPeriodicTimer: function() { return this._createPeriodicTimer; }, get$_print: function() { return this._print; }, get$_fork: function() { return this._fork; }, get$_handleUncaughtError: function() { return this._handleUncaughtError; }, get$_async$_map: function() { return this._async$_map; } }; P._CustomZone_bindCallback_closure.prototype = { call$0: function() { return this.$this.run$1$1(this.registered, this.R); }, $signature: function() { return this.R._eval$1("0()"); } }; P._CustomZone_bindUnaryCallback_closure.prototype = { call$1: function(arg) { var _this = this; return _this.$this.runUnary$2$2(_this.registered, arg, _this.R, _this.T); }, $signature: function() { return this.R._eval$1("@<0>")._bind$1(this.T)._eval$1("1(2)"); } }; P._CustomZone_bindCallbackGuarded_closure.prototype = { call$0: function() { return this.$this.runGuarded$1(this.registered); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._CustomZone_bindUnaryCallbackGuarded_closure.prototype = { call$1: function(arg) { return this.$this.runUnaryGuarded$1$2(this.registered, arg, this.T); }, $signature: function() { return this.T._eval$1("~(0)"); } }; P._rootHandleUncaughtError_closure.prototype = { call$0: function() { var error = H.wrapException(this.error); error.stack = J.toString$0$(this.stackTrace); throw error; }, $signature: 0 }; P._RootZone.prototype = { get$_run: function() { return C._RunNullaryZoneFunction__RootZone__rootRun; }, get$_runUnary: function() { return C._RunUnaryZoneFunction__RootZone__rootRunUnary; }, get$_runBinary: function() { return C._RunBinaryZoneFunction__RootZone__rootRunBinary; }, get$_registerCallback: function() { return C._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback; }, get$_registerUnaryCallback: function() { return C._RegisterUnaryZoneFunction_Bqo; }, get$_registerBinaryCallback: function() { return C._RegisterBinaryZoneFunction_kGu; }, get$_errorCallback: function() { return C._ZoneFunction__RootZone__rootErrorCallback; }, get$_scheduleMicrotask: function() { return C._ZoneFunction__RootZone__rootScheduleMicrotask; }, get$_createTimer: function() { return C._ZoneFunction__RootZone__rootCreateTimer; }, get$_createPeriodicTimer: function() { return C._ZoneFunction_3bB; }, get$_print: function() { return C._ZoneFunction__RootZone__rootPrint; }, get$_fork: function() { return C._ZoneFunction__RootZone__rootFork; }, get$_handleUncaughtError: function() { return C._ZoneFunction_NMc; }, get$_async$_map: function() { return $.$get$_RootZone__rootMap(); }, get$_async$_delegate: function() { var t1 = $._RootZone__rootDelegate; return t1 == null ? $._RootZone__rootDelegate = new P._ZoneDelegate(this) : t1; }, get$_parentDelegate: function() { var t1 = $._RootZone__rootDelegate; return t1 == null ? $._RootZone__rootDelegate = new P._ZoneDelegate(this) : t1; }, get$errorZone: function() { return this; }, runGuarded$1: function(f) { var e, s, exception, _null = null; try { if (C.C__RootZone === $.Zone__current) { f.call$0(); return; } P._rootRun(_null, _null, this, f); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._rootHandleUncaughtError(_null, _null, this, e, s); } }, runUnaryGuarded$1$2: function(f, arg) { var e, s, exception, _null = null; try { if (C.C__RootZone === $.Zone__current) { f.call$1(arg); return; } P._rootRunUnary(_null, _null, this, f, arg); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._rootHandleUncaughtError(_null, _null, this, e, s); } }, runBinaryGuarded$2$3: function(f, arg1, arg2) { var e, s, exception, _null = null; try { if (C.C__RootZone === $.Zone__current) { f.call$2(arg1, arg2); return; } P._rootRunBinary(_null, _null, this, f, arg1, arg2); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); P._rootHandleUncaughtError(_null, _null, this, e, s); } }, bindCallback$1$1: function(f, $R) { return new P._RootZone_bindCallback_closure(this, f, $R); }, bindCallbackGuarded$1: function(f) { return new P._RootZone_bindCallbackGuarded_closure(this, f); }, bindUnaryCallbackGuarded$1$1: function(f, $T) { return new P._RootZone_bindUnaryCallbackGuarded_closure(this, f, $T); }, $index: function(_, key) { return null; }, handleUncaughtError$2: function(error, stackTrace) { P._rootHandleUncaughtError(null, null, this, error, stackTrace); }, fork$2$specification$zoneValues: function(specification, zoneValues) { return P._rootFork(null, null, this, specification, zoneValues); }, fork$1$specification: function(specification) { return this.fork$2$specification$zoneValues(specification, null); }, run$1$1: function(f) { if ($.Zone__current === C.C__RootZone) return f.call$0(); return P._rootRun(null, null, this, f); }, runUnary$2$2: function(f, arg) { if ($.Zone__current === C.C__RootZone) return f.call$1(arg); return P._rootRunUnary(null, null, this, f, arg); }, runBinary$3$3: function(f, arg1, arg2) { if ($.Zone__current === C.C__RootZone) return f.call$2(arg1, arg2); return P._rootRunBinary(null, null, this, f, arg1, arg2); }, registerCallback$1$1: function(f) { return f; }, registerUnaryCallback$2$1: function(f) { return f; }, registerBinaryCallback$3$1: function(f) { return f; }, errorCallback$2: function(error, stackTrace) { return null; }, scheduleMicrotask$1: function(f) { P._rootScheduleMicrotask(null, null, this, f); }, createTimer$2: function(duration, f) { return P.Timer__createTimer(duration, f); }, createPeriodicTimer$2: function(duration, f) { return P.Timer__createPeriodicTimer(duration, f); }, print$1: function(_, line) { H.printString(H.S(line)); } }; P._RootZone_bindCallback_closure.prototype = { call$0: function() { return this.$this.run$1$1(this.f, this.R); }, $signature: function() { return this.R._eval$1("0()"); } }; P._RootZone_bindCallbackGuarded_closure.prototype = { call$0: function() { return this.$this.runGuarded$1(this.f); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._RootZone_bindUnaryCallbackGuarded_closure.prototype = { call$1: function(arg) { return this.$this.runUnaryGuarded$1$2(this.f, arg, this.T); }, $signature: function() { return this.T._eval$1("~(0)"); } }; P._HashMap.prototype = { get$length: function(_) { return this._collection$_length; }, get$isEmpty: function(_) { return this._collection$_length === 0; }, get$isNotEmpty: function(_) { return this._collection$_length !== 0; }, get$keys: function(_) { return new P._HashMapKeyIterable(this, H._instanceType(this)._eval$1("_HashMapKeyIterable<1>")); }, get$values: function(_) { var t1 = H._instanceType(this); return H.MappedIterable_MappedIterable(new P._HashMapKeyIterable(this, t1._eval$1("_HashMapKeyIterable<1>")), new P._HashMap_values_closure(this), t1._precomputed1, t1._rest[1]); }, containsKey$1: function(_, key) { var strings, nums; if (typeof key == "string" && key !== "__proto__") { strings = this._collection$_strings; return strings == null ? false : strings[key] != null; } else if (typeof key == "number" && (key & 1073741823) === key) { nums = this._collection$_nums; return nums == null ? false : nums[key] != null; } else return this._containsKey$1(key); }, _containsKey$1: function(key) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(this._getBucket$2(rest, key), key) >= 0; }, addAll$1: function(_, other) { other.forEach$1(0, new P._HashMap_addAll_closure(this)); }, $index: function(_, key) { var strings, t1, nums; if (typeof key == "string" && key !== "__proto__") { strings = this._collection$_strings; t1 = strings == null ? null : P._HashMap__getTableEntry(strings, key); return t1; } else if (typeof key == "number" && (key & 1073741823) === key) { nums = this._collection$_nums; t1 = nums == null ? null : P._HashMap__getTableEntry(nums, key); return t1; } else return this._get$1(0, key); }, _get$1: function(_, key) { var bucket, index, rest = this._collection$_rest; if (rest == null) return null; bucket = this._getBucket$2(rest, key); index = this._findBucketIndex$2(bucket, key); return index < 0 ? null : bucket[index + 1]; }, $indexSet: function(_, key, value) { var strings, nums, _this = this; if (typeof key == "string" && key !== "__proto__") { strings = _this._collection$_strings; _this._collection$_addHashTableEntry$3(strings == null ? _this._collection$_strings = P._HashMap__newHashTable() : strings, key, value); } else if (typeof key == "number" && (key & 1073741823) === key) { nums = _this._collection$_nums; _this._collection$_addHashTableEntry$3(nums == null ? _this._collection$_nums = P._HashMap__newHashTable() : nums, key, value); } else _this._set$2(key, value); }, _set$2: function(key, value) { var hash, bucket, index, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = P._HashMap__newHashTable(); hash = _this._computeHashCode$1(key); bucket = rest[hash]; if (bucket == null) { P._HashMap__setTableEntry(rest, hash, [key, value]); ++_this._collection$_length; _this._collection$_keys = null; } else { index = _this._findBucketIndex$2(bucket, key); if (index >= 0) bucket[index + 1] = value; else { bucket.push(key, value); ++_this._collection$_length; _this._collection$_keys = null; } } }, putIfAbsent$2: function(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1: function(_, key) { var _this = this; if (typeof key == "string" && key !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, key); else if (typeof key == "number" && (key & 1073741823) === key) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, key); else return _this._collection$_remove$1(0, key); }, _collection$_remove$1: function(_, key) { var hash, bucket, index, result, _this = this, rest = _this._collection$_rest; if (rest == null) return null; hash = _this._computeHashCode$1(key); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, key); if (index < 0) return null; --_this._collection$_length; _this._collection$_keys = null; result = bucket.splice(index, 2)[1]; if (0 === bucket.length) delete rest[hash]; return result; }, clear$0: function(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._collection$_keys = null; _this._collection$_length = 0; } }, forEach$1: function(_, action) { var $length, i, key, _this = this, keys = _this._collection$_computeKeys$0(); for ($length = keys.length, i = 0; i < $length; ++i) { key = keys[i]; action.call$2(key, _this.$index(0, key)); if (keys !== _this._collection$_keys) throw H.wrapException(P.ConcurrentModificationError$(_this)); } }, _collection$_computeKeys$0: function() { var strings, names, entries, index, i, nums, rest, bucket, $length, i0, _this = this, result = _this._collection$_keys; if (result != null) return result; result = P.List_List$filled(_this._collection$_length, null, false, type$.dynamic); strings = _this._collection$_strings; if (strings != null) { names = Object.getOwnPropertyNames(strings); entries = names.length; for (index = 0, i = 0; i < entries; ++i) { result[index] = names[i]; ++index; } } else index = 0; nums = _this._collection$_nums; if (nums != null) { names = Object.getOwnPropertyNames(nums); entries = names.length; for (i = 0; i < entries; ++i) { result[index] = +names[i]; ++index; } } rest = _this._collection$_rest; if (rest != null) { names = Object.getOwnPropertyNames(rest); entries = names.length; for (i = 0; i < entries; ++i) { bucket = rest[names[i]]; $length = bucket.length; for (i0 = 0; i0 < $length; i0 += 2) { result[index] = bucket[i0]; ++index; } } } return _this._collection$_keys = result; }, _collection$_addHashTableEntry$3: function(table, key, value) { if (table[key] == null) { ++this._collection$_length; this._collection$_keys = null; } P._HashMap__setTableEntry(table, key, value); }, _collection$_removeHashTableEntry$2: function(table, key) { var value; if (table != null && table[key] != null) { value = P._HashMap__getTableEntry(table, key); delete table[key]; --this._collection$_length; this._collection$_keys = null; return value; } else return null; }, _computeHashCode$1: function(key) { return J.get$hashCode$(key) & 1073741823; }, _getBucket$2: function(table, key) { return table[this._computeHashCode$1(key)]; }, _findBucketIndex$2: function(bucket, key) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; i += 2) if (J.$eq$(bucket[i], key)) return i; return -1; } }; P._HashMap_values_closure.prototype = { call$1: function(each) { return this.$this.$index(0, each); }, $signature: function() { return H._instanceType(this.$this)._eval$1("2(1)"); } }; P._HashMap_addAll_closure.prototype = { call$2: function(key, value) { this.$this.$indexSet(0, key, value); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(1,2)"); } }; P._IdentityHashMap.prototype = { _computeHashCode$1: function(key) { return H.objectHashCode(key) & 1073741823; }, _findBucketIndex$2: function(bucket, key) { var $length, i, t1; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; i += 2) { t1 = bucket[i]; if (t1 == null ? key == null : t1 === key) return i; } return -1; } }; P._CustomHashMap.prototype = { $index: function(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$_HashMap$_get(0, key); }, $indexSet: function(_, key, value) { this.super$_HashMap$_set(key, value); }, containsKey$1: function(_, key) { if (!this._validKey.call$1(key)) return false; return this.super$_HashMap$_containsKey(key); }, remove$1: function(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$_HashMap$_remove(0, key); }, _computeHashCode$1: function(key) { return this._collection$_hashCode.call$1(key) & 1073741823; }, _findBucketIndex$2: function(bucket, key) { var $length, t1, i; if (bucket == null) return -1; $length = bucket.length; for (t1 = this._equals, i = 0; i < $length; i += 2) if (t1.call$2(bucket[i], key)) return i; return -1; } }; P._CustomHashMap_closure.prototype = { call$1: function(v) { return this.K._is(v); }, $signature: 110 }; P._HashMapKeyIterable.prototype = { get$length: function(_) { return this._collection$_map._collection$_length; }, get$isEmpty: function(_) { return this._collection$_map._collection$_length === 0; }, get$iterator: function(_) { var t1 = this._collection$_map; return new P._HashMapKeyIterator(t1, t1._collection$_computeKeys$0(), this.$ti._eval$1("_HashMapKeyIterator<1>")); }, contains$1: function(_, element) { return this._collection$_map.containsKey$1(0, element); }, forEach$1: function(_, f) { var $length, i, t1 = this._collection$_map, keys = t1._collection$_computeKeys$0(); for ($length = keys.length, i = 0; i < $length; ++i) { f.call$1(keys[i]); if (keys !== t1._collection$_keys) throw H.wrapException(P.ConcurrentModificationError$(t1)); } } }; P._HashMapKeyIterator.prototype = { get$current: function(_) { return this._collection$_current; }, moveNext$0: function() { var _this = this, keys = _this._collection$_keys, offset = _this._collection$_offset, t1 = _this._collection$_map; if (keys !== t1._collection$_keys) throw H.wrapException(P.ConcurrentModificationError$(t1)); else if (offset >= keys.length) { _this._collection$_current = null; return false; } else { _this._collection$_current = keys[offset]; _this._collection$_offset = offset + 1; return true; } } }; P._LinkedIdentityHashMap.prototype = { internalComputeHashCode$1: function(key) { return H.objectHashCode(key) & 1073741823; }, internalFindBucketIndex$2: function(bucket, key) { var $length, i, t1; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) { t1 = bucket[i].hashMapCellKey; if (t1 == null ? key == null : t1 === key) return i; } return -1; } }; P._LinkedCustomHashMap.prototype = { $index: function(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$JsLinkedHashMap$internalGet(key); }, $indexSet: function(_, key, value) { this.super$JsLinkedHashMap$internalSet(key, value); }, containsKey$1: function(_, key) { if (!this._validKey.call$1(key)) return false; return this.super$JsLinkedHashMap$internalContainsKey(key); }, remove$1: function(_, key) { if (!this._validKey.call$1(key)) return null; return this.super$JsLinkedHashMap$internalRemove(key); }, internalComputeHashCode$1: function(key) { return this._collection$_hashCode.call$1(key) & 1073741823; }, internalFindBucketIndex$2: function(bucket, key) { var $length, t1, i; if (bucket == null) return -1; $length = bucket.length; for (t1 = this._equals, i = 0; i < $length; ++i) if (t1.call$2(bucket[i].hashMapCellKey, key)) return i; return -1; } }; P._LinkedCustomHashMap_closure.prototype = { call$1: function(v) { return this.K._is(v); }, $signature: 110 }; P._HashSet.prototype = { _newSet$0: function() { return new P._HashSet(H._instanceType(this)._eval$1("_HashSet<1>")); }, get$iterator: function(_) { return new P._HashSetIterator(this, this._computeElements$0(), H._instanceType(this)._eval$1("_HashSetIterator<1>")); }, get$length: function(_) { return this._collection$_length; }, get$isEmpty: function(_) { return this._collection$_length === 0; }, get$isNotEmpty: function(_) { return this._collection$_length !== 0; }, contains$1: function(_, object) { var strings, nums; if (typeof object == "string" && object !== "__proto__") { strings = this._collection$_strings; return strings == null ? false : strings[object] != null; } else if (typeof object == "number" && (object & 1073741823) === object) { nums = this._collection$_nums; return nums == null ? false : nums[object] != null; } else return this._contains$1(object); }, _contains$1: function(object) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(rest[this._computeHashCode$1(object)], object) >= 0; }, add$1: function(_, element) { var strings, nums, _this = this; if (typeof element == "string" && element !== "__proto__") { strings = _this._collection$_strings; return _this._collection$_addHashTableEntry$2(strings == null ? _this._collection$_strings = P._HashSet__newHashTable() : strings, element); } else if (typeof element == "number" && (element & 1073741823) === element) { nums = _this._collection$_nums; return _this._collection$_addHashTableEntry$2(nums == null ? _this._collection$_nums = P._HashSet__newHashTable() : nums, element); } else return _this._add$1(0, element); }, _add$1: function(_, element) { var hash, bucket, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = P._HashSet__newHashTable(); hash = _this._computeHashCode$1(element); bucket = rest[hash]; if (bucket == null) rest[hash] = [element]; else { if (_this._findBucketIndex$2(bucket, element) >= 0) return false; bucket.push(element); } ++_this._collection$_length; _this._elements = null; return true; }, addAll$1: function(_, objects) { var t1; for (t1 = J.get$iterator$ax(objects); t1.moveNext$0();) this.add$1(0, t1.get$current(t1)); }, remove$1: function(_, object) { var _this = this; if (typeof object == "string" && object !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, object); else if (typeof object == "number" && (object & 1073741823) === object) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, object); else return _this._collection$_remove$1(0, object); }, _collection$_remove$1: function(_, object) { var hash, bucket, index, _this = this, rest = _this._collection$_rest; if (rest == null) return false; hash = _this._computeHashCode$1(object); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, object); if (index < 0) return false; --_this._collection$_length; _this._elements = null; bucket.splice(index, 1); if (0 === bucket.length) delete rest[hash]; return true; }, clear$0: function(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._elements = null; _this._collection$_length = 0; } }, _computeElements$0: function() { var strings, names, entries, index, i, nums, rest, bucket, $length, i0, _this = this, result = _this._elements; if (result != null) return result; result = P.List_List$filled(_this._collection$_length, null, false, type$.dynamic); strings = _this._collection$_strings; if (strings != null) { names = Object.getOwnPropertyNames(strings); entries = names.length; for (index = 0, i = 0; i < entries; ++i) { result[index] = names[i]; ++index; } } else index = 0; nums = _this._collection$_nums; if (nums != null) { names = Object.getOwnPropertyNames(nums); entries = names.length; for (i = 0; i < entries; ++i) { result[index] = +names[i]; ++index; } } rest = _this._collection$_rest; if (rest != null) { names = Object.getOwnPropertyNames(rest); entries = names.length; for (i = 0; i < entries; ++i) { bucket = rest[names[i]]; $length = bucket.length; for (i0 = 0; i0 < $length; ++i0) { result[index] = bucket[i0]; ++index; } } } return _this._elements = result; }, _collection$_addHashTableEntry$2: function(table, element) { if (table[element] != null) return false; table[element] = 0; ++this._collection$_length; this._elements = null; return true; }, _collection$_removeHashTableEntry$2: function(table, element) { if (table != null && table[element] != null) { delete table[element]; --this._collection$_length; this._elements = null; return true; } else return false; }, _computeHashCode$1: function(element) { return J.get$hashCode$(element) & 1073741823; }, _findBucketIndex$2: function(bucket, element) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i], element)) return i; return -1; } }; P._HashSetIterator.prototype = { get$current: function(_) { return this._collection$_current; }, moveNext$0: function() { var _this = this, elements = _this._elements, offset = _this._collection$_offset, t1 = _this._set; if (elements !== t1._elements) throw H.wrapException(P.ConcurrentModificationError$(t1)); else if (offset >= elements.length) { _this._collection$_current = null; return false; } else { _this._collection$_current = elements[offset]; _this._collection$_offset = offset + 1; return true; } } }; P._LinkedHashSet.prototype = { _newSet$0: function() { return new P._LinkedHashSet(H._instanceType(this)._eval$1("_LinkedHashSet<1>")); }, get$iterator: function(_) { var _this = this, t1 = new P._LinkedHashSetIterator(_this, _this._collection$_modifications, H._instanceType(_this)._eval$1("_LinkedHashSetIterator<1>")); t1._collection$_cell = _this._collection$_first; return t1; }, get$length: function(_) { return this._collection$_length; }, get$isEmpty: function(_) { return this._collection$_length === 0; }, get$isNotEmpty: function(_) { return this._collection$_length !== 0; }, contains$1: function(_, object) { var strings, nums; if (typeof object == "string" && object !== "__proto__") { strings = this._collection$_strings; if (strings == null) return false; return strings[object] != null; } else if (typeof object == "number" && (object & 1073741823) === object) { nums = this._collection$_nums; if (nums == null) return false; return nums[object] != null; } else return this._contains$1(object); }, _contains$1: function(object) { var rest = this._collection$_rest; if (rest == null) return false; return this._findBucketIndex$2(rest[this._computeHashCode$1(object)], object) >= 0; }, forEach$1: function(_, action) { var _this = this, cell = _this._collection$_first, modifications = _this._collection$_modifications; for (; cell != null;) { action.call$1(cell._collection$_element); if (modifications !== _this._collection$_modifications) throw H.wrapException(P.ConcurrentModificationError$(_this)); cell = cell._collection$_next; } }, get$first: function(_) { var first = this._collection$_first; if (first == null) throw H.wrapException(P.StateError$("No elements")); return first._collection$_element; }, get$last: function(_) { var last = this._collection$_last; if (last == null) throw H.wrapException(P.StateError$("No elements")); return last._collection$_element; }, add$1: function(_, element) { var strings, nums, _this = this; if (typeof element == "string" && element !== "__proto__") { strings = _this._collection$_strings; return _this._collection$_addHashTableEntry$2(strings == null ? _this._collection$_strings = P._LinkedHashSet__newHashTable() : strings, element); } else if (typeof element == "number" && (element & 1073741823) === element) { nums = _this._collection$_nums; return _this._collection$_addHashTableEntry$2(nums == null ? _this._collection$_nums = P._LinkedHashSet__newHashTable() : nums, element); } else return _this._add$1(0, element); }, _add$1: function(_, element) { var hash, bucket, _this = this, rest = _this._collection$_rest; if (rest == null) rest = _this._collection$_rest = P._LinkedHashSet__newHashTable(); hash = _this._computeHashCode$1(element); bucket = rest[hash]; if (bucket == null) rest[hash] = [_this._collection$_newLinkedCell$1(element)]; else { if (_this._findBucketIndex$2(bucket, element) >= 0) return false; bucket.push(_this._collection$_newLinkedCell$1(element)); } return true; }, remove$1: function(_, object) { var _this = this; if (typeof object == "string" && object !== "__proto__") return _this._collection$_removeHashTableEntry$2(_this._collection$_strings, object); else if (typeof object == "number" && (object & 1073741823) === object) return _this._collection$_removeHashTableEntry$2(_this._collection$_nums, object); else return _this._collection$_remove$1(0, object); }, _collection$_remove$1: function(_, object) { var hash, bucket, index, cell, _this = this, rest = _this._collection$_rest; if (rest == null) return false; hash = _this._computeHashCode$1(object); bucket = rest[hash]; index = _this._findBucketIndex$2(bucket, object); if (index < 0) return false; cell = bucket.splice(index, 1)[0]; if (0 === bucket.length) delete rest[hash]; _this._collection$_unlinkCell$1(cell); return true; }, removeWhere$1: function(_, test) { this._filterWhere$2(test, true); }, _filterWhere$2: function(test, removeMatching) { var element, next, modifications, t1, _this = this, cell = _this._collection$_first; for (; cell != null; cell = next) { element = cell._collection$_element; next = cell._collection$_next; modifications = _this._collection$_modifications; t1 = test.call$1(element); if (modifications !== _this._collection$_modifications) throw H.wrapException(P.ConcurrentModificationError$(_this)); if (true === t1) _this.remove$1(0, element); } }, clear$0: function(_) { var _this = this; if (_this._collection$_length > 0) { _this._collection$_strings = _this._collection$_nums = _this._collection$_rest = _this._collection$_first = _this._collection$_last = null; _this._collection$_length = 0; _this._collection$_modified$0(); } }, _collection$_addHashTableEntry$2: function(table, element) { if (table[element] != null) return false; table[element] = this._collection$_newLinkedCell$1(element); return true; }, _collection$_removeHashTableEntry$2: function(table, element) { var cell; if (table == null) return false; cell = table[element]; if (cell == null) return false; this._collection$_unlinkCell$1(cell); delete table[element]; return true; }, _collection$_modified$0: function() { this._collection$_modifications = this._collection$_modifications + 1 & 1073741823; }, _collection$_newLinkedCell$1: function(element) { var t1, _this = this, cell = new P._LinkedHashSetCell(element); if (_this._collection$_first == null) _this._collection$_first = _this._collection$_last = cell; else { t1 = _this._collection$_last; t1.toString; cell._collection$_previous = t1; _this._collection$_last = t1._collection$_next = cell; } ++_this._collection$_length; _this._collection$_modified$0(); return cell; }, _collection$_unlinkCell$1: function(cell) { var _this = this, previous = cell._collection$_previous, next = cell._collection$_next; if (previous == null) _this._collection$_first = next; else previous._collection$_next = next; if (next == null) _this._collection$_last = previous; else next._collection$_previous = previous; --_this._collection$_length; _this._collection$_modified$0(); }, _computeHashCode$1: function(element) { return J.get$hashCode$(element) & 1073741823; }, _findBucketIndex$2: function(bucket, element) { var $length, i; if (bucket == null) return -1; $length = bucket.length; for (i = 0; i < $length; ++i) if (J.$eq$(bucket[i]._collection$_element, element)) return i; return -1; } }; P._LinkedHashSetCell.prototype = {}; P._LinkedHashSetIterator.prototype = { get$current: function(_) { return this._collection$_current; }, moveNext$0: function() { var _this = this, cell = _this._collection$_cell, t1 = _this._set; if (_this._collection$_modifications !== t1._collection$_modifications) throw H.wrapException(P.ConcurrentModificationError$(t1)); else if (cell == null) { _this._collection$_current = null; return false; } else { _this._collection$_current = cell._collection$_element; _this._collection$_cell = cell._collection$_next; return true; } } }; P.UnmodifiableListView.prototype = { cast$1$0: function(_, $R) { return new P.UnmodifiableListView(J.cast$1$0$ax(this._collection$_source, $R), $R._eval$1("UnmodifiableListView<0>")); }, get$length: function(_) { return J.get$length$asx(this._collection$_source); }, $index: function(_, index) { return J.elementAt$1$ax(this._collection$_source, index); } }; P.HashMap_HashMap$from_closure.prototype = { call$2: function(k, v) { this.result.$indexSet(0, this.K._as(k), this.V._as(v)); }, $signature: 118 }; P.IterableMixin.prototype = { map$1$1: function(_, f, $T) { return H.MappedIterable_MappedIterable(this, f, this.$ti._precomputed1, $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1: function(_, f) { return new H.WhereIterable(this, f, this.$ti._eval$1("WhereIterable<1>")); }, contains$1: function(_, element) { var t1; for (t1 = this.$ti, t1 = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) if (J.$eq$(t1.get$current(t1), element)) return true; return false; }, forEach$1: function(_, f) { var t1; for (t1 = this.$ti, t1 = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) f.call$1(t1.get$current(t1)); }, join$1: function(_, separator) { var t1 = this.$ti, iterator = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); if (!iterator.moveNext$0()) return ""; if (separator === "") { t1 = ""; do t1 += H.S(iterator.get$current(iterator)); while (iterator.moveNext$0()); } else { t1 = H.S(iterator.get$current(iterator)); for (; iterator.moveNext$0();) t1 = t1 + separator + H.S(iterator.get$current(iterator)); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, toList$1$growable: function(_, growable) { return P.List_List$from(this, true, this.$ti._precomputed1); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return P.LinkedHashSet_LinkedHashSet$from(this, this.$ti._precomputed1); }, get$length: function(_) { var count, t1 = this.$ti, it = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); for (count = 0; it.moveNext$0();) ++count; return count; }, get$isEmpty: function(_) { var t1 = this.$ti; return !new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")).moveNext$0(); }, get$isNotEmpty: function(_) { return this._root != null; }, take$1: function(_, count) { return H.TakeIterable_TakeIterable(this, count, this.$ti._precomputed1); }, skip$1: function(_, count) { return H.SkipIterable_SkipIterable(this, count, this.$ti._precomputed1); }, get$first: function(_) { var t1 = this.$ti, it = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); return it.get$current(it); }, get$last: function(_) { var result, t1 = this.$ti, it = new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, elementAt$1: function(_, index) { var t1, elementIndex, element, _this = this, _s5_ = "index"; H.checkNotNullable(index, _s5_, type$.int); P.RangeError_checkNotNegative(index, _s5_); for (t1 = _this.$ti, t1 = new P._SplayTreeKeyIterator(_this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), _this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw H.wrapException(P.IndexError$(index, _this, _s5_, null, elementIndex)); }, toString$0: function(_) { return P.IterableBase_iterableToShortString(this, "(", ")"); } }; P.IterableBase.prototype = {}; P.LinkedHashMap_LinkedHashMap$from_closure.prototype = { call$2: function(k, v) { this.result.$indexSet(0, this.K._as(k), this.V._as(v)); }, $signature: 118 }; P.LinkedList.prototype = { add$1: function(_, entry) { this._insertBefore$3$updateFirst(this._collection$_first, entry, false); }, contains$1: function(_, entry) { return entry instanceof P.LinkedListEntry && this === entry._collection$_list; }, get$iterator: function(_) { var _this = this; return new P._LinkedListIterator(_this, _this._collection$_modificationCount, _this._collection$_first, _this.$ti._eval$1("_LinkedListIterator<1>")); }, get$length: function(_) { return this._collection$_length; }, get$first: function(_) { var t1; if (this._collection$_length === 0) throw H.wrapException(P.StateError$("No such element")); t1 = this._collection$_first; t1.toString; return t1; }, get$last: function(_) { var t1; if (this._collection$_length === 0) throw H.wrapException(P.StateError$("No such element")); t1 = this._collection$_first._collection$_previous; t1.toString; return t1; }, forEach$1: function(_, action) { var t1, current, _this = this, modificationCount = _this._collection$_modificationCount; if (_this._collection$_length === 0) return; t1 = _this._collection$_first; t1.toString; current = t1; do { action.call$1(current); if (modificationCount !== _this._collection$_modificationCount) throw H.wrapException(P.ConcurrentModificationError$(_this)); t1 = current._collection$_next; t1.toString; if (t1 !== _this._collection$_first) { current = t1; continue; } else break; } while (true); }, get$isEmpty: function(_) { return this._collection$_length === 0; }, _insertBefore$3$updateFirst: function(entry, newEntry, updateFirst) { var t1, t2, _this = this; if (newEntry._collection$_list != null) throw H.wrapException(P.StateError$("LinkedListEntry is already in a LinkedList")); ++_this._collection$_modificationCount; newEntry._collection$_list = _this; t1 = _this._collection$_length; if (t1 === 0) { newEntry._collection$_next = newEntry; _this._collection$_first = newEntry._collection$_previous = newEntry; _this._collection$_length = t1 + 1; return; } t2 = entry._collection$_previous; t2.toString; newEntry._collection$_previous = t2; newEntry._collection$_next = entry; entry._collection$_previous = t2._collection$_next = newEntry; _this._collection$_length = t1 + 1; } }; P._LinkedListIterator.prototype = { get$current: function(_) { return this._collection$_current; }, moveNext$0: function() { var _this = this, t1 = _this._collection$_list; if (_this._collection$_modificationCount !== t1._collection$_modificationCount) throw H.wrapException(P.ConcurrentModificationError$(_this)); if (t1._collection$_length !== 0) t1 = _this._visitedFirst && _this._collection$_next == t1.get$first(t1); else t1 = true; if (t1) { _this._collection$_current = null; return false; } _this._visitedFirst = true; t1 = _this._collection$_next; _this._collection$_current = t1; _this._collection$_next = t1._collection$_next; return true; } }; P.LinkedListEntry.prototype = {}; P.ListBase.prototype = {$isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1}; P.ListMixin.prototype = { get$iterator: function(receiver) { return new H.ListIterator(receiver, this.get$length(receiver), H.instanceType(receiver)._eval$1("ListIterator")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, forEach$1: function(receiver, action) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { action.call$1(this.$index(receiver, i)); if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } }, get$isEmpty: function(receiver) { return this.get$length(receiver) === 0; }, get$isNotEmpty: function(receiver) { return !this.get$isEmpty(receiver); }, get$first: function(receiver) { if (this.get$length(receiver) === 0) throw H.wrapException(H.IterableElementError_noElement()); return this.$index(receiver, 0); }, get$last: function(receiver) { if (this.get$length(receiver) === 0) throw H.wrapException(H.IterableElementError_noElement()); return this.$index(receiver, this.get$length(receiver) - 1); }, contains$1: function(receiver, element) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { if (J.$eq$(this.$index(receiver, i), element)) return true; if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return false; }, any$1: function(receiver, test) { var i, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { if (test.call$1(this.$index(receiver, i))) return true; if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return false; }, firstWhere$2$orElse: function(receiver, test, orElse) { var i, element, $length = this.get$length(receiver); for (i = 0; i < $length; ++i) { element = this.$index(receiver, i); if (test.call$1(element)) return element; if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw H.wrapException(H.IterableElementError_noElement()); }, lastWhere$2$orElse: function(receiver, test, orElse) { var i, element, $length = this.get$length(receiver); for (i = $length - 1; i >= 0; --i) { element = this.$index(receiver, i); if (test.call$1(element)) return element; if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (orElse != null) return orElse.call$0(); throw H.wrapException(H.IterableElementError_noElement()); }, join$1: function(receiver, separator) { var t1; if (this.get$length(receiver) === 0) return ""; t1 = P.StringBuffer__writeAll("", receiver, separator); return t1.charCodeAt(0) == 0 ? t1 : t1; }, where$1: function(receiver, test) { return new H.WhereIterable(receiver, test, H.instanceType(receiver)._eval$1("WhereIterable")); }, map$1$1: function(receiver, f, $T) { return new H.MappedListIterable(receiver, f, H.instanceType(receiver)._eval$1("@")._bind$1($T)._eval$1("MappedListIterable<1,2>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, fold$1$2: function(receiver, initialValue, combine) { var value, i, $length = this.get$length(receiver); for (value = initialValue, i = 0; i < $length; ++i) { value = combine.call$2(value, this.$index(receiver, i)); if ($length !== this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } return value; }, skip$1: function(receiver, count) { return H.SubListIterable$(receiver, count, null, H.instanceType(receiver)._eval$1("ListMixin.E")); }, take$1: function(receiver, count) { return H.SubListIterable$(receiver, 0, H.checkNotNullable(count, "count", type$.int), H.instanceType(receiver)._eval$1("ListMixin.E")); }, toList$1$growable: function(receiver, growable) { var t1, first, result, i, _this = this; if (_this.get$isEmpty(receiver)) { t1 = H.instanceType(receiver)._eval$1("ListMixin.E"); return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } first = _this.$index(receiver, 0); result = P.List_List$filled(_this.get$length(receiver), first, growable, H.instanceType(receiver)._eval$1("ListMixin.E")); for (i = 1; i < _this.get$length(receiver); ++i) result[i] = _this.$index(receiver, i); return result; }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(receiver) { var i, result = P.LinkedHashSet_LinkedHashSet(H.instanceType(receiver)._eval$1("ListMixin.E")); for (i = 0; i < this.get$length(receiver); ++i) result.add$1(0, this.$index(receiver, i)); return result; }, add$1: function(receiver, element) { var t1 = this.get$length(receiver); this.set$length(receiver, t1 + 1); this.$indexSet(receiver, t1, element); }, addAll$1: function(receiver, iterable) { var t1, i = this.get$length(receiver); for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0();) { this.add$1(receiver, t1.get$current(t1)); ++i; } }, remove$1: function(receiver, element) { var i; for (i = 0; i < this.get$length(receiver); ++i) if (J.$eq$(this.$index(receiver, i), element)) { this._closeGap$2(receiver, i, i + 1); return true; } return false; }, _closeGap$2: function(receiver, start, end) { var i, _this = this, $length = _this.get$length(receiver), size = end - start; for (i = end; i < $length; ++i) _this.$indexSet(receiver, i - size, _this.$index(receiver, i)); _this.set$length(receiver, $length - size); }, removeWhere$1: function(receiver, test) { this._collection$_filter$2(receiver, test, false); }, retainWhere$1: function(receiver, test) { this._collection$_filter$2(receiver, test, true); }, _collection$_filter$2: function(receiver, test, retainMatching) { var i, element, _this = this, retained = H.setRuntimeTypeInfo([], H.instanceType(receiver)._eval$1("JSArray")), $length = _this.get$length(receiver); for (i = 0; i < $length; ++i) { element = _this.$index(receiver, i); if (J.$eq$(test.call$1(element), retainMatching)) retained.push(element); if ($length !== _this.get$length(receiver)) throw H.wrapException(P.ConcurrentModificationError$(receiver)); } if (retained.length !== _this.get$length(receiver)) { _this.setRange$3(receiver, 0, retained.length, retained); _this.set$length(receiver, retained.length); } }, clear$0: function(receiver) { this.set$length(receiver, 0); }, cast$1$0: function(receiver, $R) { return new H.CastList(receiver, H.instanceType(receiver)._eval$1("@")._bind$1($R)._eval$1("CastList<1,2>")); }, removeLast$0: function(receiver) { var result, _this = this; if (_this.get$length(receiver) === 0) throw H.wrapException(H.IterableElementError_noElement()); result = _this.$index(receiver, _this.get$length(receiver) - 1); _this.set$length(receiver, _this.get$length(receiver) - 1); return result; }, sort$1: function(receiver, compare) { H.Sort_sort(receiver, compare == null ? P.collection_ListMixin__compareAny$closure() : compare); }, asMap$0: function(receiver) { return new H.ListMapView(receiver, H.instanceType(receiver)._eval$1("ListMapView")); }, $add: function(receiver, other) { var t1 = P.List_List$of(receiver, true, H.instanceType(receiver)._eval$1("ListMixin.E")); C.JSArray_methods.addAll$1(t1, other); return t1; }, sublist$2: function(receiver, start, end) { var listLength = this.get$length(receiver); if (end == null) end = listLength; if (end == null) throw H.wrapException("!"); P.RangeError_checkValidRange(start, end, listLength); return P.List_List$from(this.getRange$2(receiver, start, end), true, H.instanceType(receiver)._eval$1("ListMixin.E")); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, getRange$2: function(receiver, start, end) { P.RangeError_checkValidRange(start, end, this.get$length(receiver)); return H.SubListIterable$(receiver, start, end, H.instanceType(receiver)._eval$1("ListMixin.E")); }, removeRange$2: function(receiver, start, end) { P.RangeError_checkValidRange(start, end, this.get$length(receiver)); if (end > start) this._closeGap$2(receiver, start, end); }, fillRange$3: function(receiver, start, end, fill) { var i; P.RangeError_checkValidRange(start, end, this.get$length(receiver)); for (i = start; i < end; ++i) this.$indexSet(receiver, i, fill); }, setRange$4: function(receiver, start, end, iterable, skipCount) { var $length, otherStart, otherList, t1, i; P.RangeError_checkValidRange(start, end, this.get$length(receiver)); $length = end - start; if ($length === 0) return; P.RangeError_checkNotNegative(skipCount, "skipCount"); if (H.instanceType(receiver)._eval$1("List")._is(iterable)) { otherStart = skipCount; otherList = iterable; } else { t1 = J.skip$1$ax(iterable, skipCount); otherList = t1.toList$1$growable(t1, false); otherStart = 0; } t1 = J.getInterceptor$asx(otherList); if (otherStart + $length > t1.get$length(otherList)) throw H.wrapException(H.IterableElementError_tooFew()); if (otherStart < start) for (i = $length - 1; i >= 0; --i) this.$indexSet(receiver, start + i, t1.$index(otherList, otherStart + i)); else for (i = 0; i < $length; ++i) this.$indexSet(receiver, start + i, t1.$index(otherList, otherStart + i)); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, indexOf$2: function(receiver, element, start) { var i; for (i = start; i < this.get$length(receiver); ++i) if (J.$eq$(this.$index(receiver, i), element)) return i; return -1; }, indexOf$1: function($receiver, element) { return this.indexOf$2($receiver, element, 0); }, insert$2: function(receiver, index, element) { var $length, _this = this; H.checkNotNullable(index, "index", type$.int); $length = _this.get$length(receiver); P.RangeError_checkValueInInterval(index, 0, $length, "index"); _this.add$1(receiver, element); if (index != $length) { _this.setRange$4(receiver, index + 1, $length + 1, receiver, index); _this.$indexSet(receiver, index, element); } }, removeAt$1: function(receiver, index) { var result = this.$index(receiver, index); this._closeGap$2(receiver, index, index + 1); return result; }, setAll$2: function(receiver, index, iterable) { var t1, index0; if (type$.List_dynamic._is(iterable)) this.setRange$3(receiver, index, index + iterable.length, iterable); else for (t1 = J.get$iterator$ax(iterable); t1.moveNext$0(); index = index0) { index0 = index + 1; this.$indexSet(receiver, index, t1.get$current(t1)); } }, get$reversed: function(receiver) { return new H.ReversedListIterable(receiver, H.instanceType(receiver)._eval$1("ReversedListIterable")); }, toString$0: function(receiver) { return P.IterableBase_iterableToFullString(receiver, "[", "]"); } }; P.MapBase.prototype = {}; P.MapBase_mapToString_closure.prototype = { call$2: function(k, v) { var t2, t1 = this._box_0; if (!t1.first) this.result._contents += ", "; t1.first = false; t1 = this.result; t2 = t1._contents += H.S(k); t1._contents = t2 + ": "; t1._contents += H.S(v); }, $signature: 209 }; P.MapMixin.prototype = { cast$2$0: function(receiver, RK, RV) { var t1 = H.instanceType(receiver); return P.Map_castFrom(receiver, t1._eval$1("MapMixin.K"), t1._eval$1("MapMixin.V"), RK, RV); }, forEach$1: function(receiver, action) { var t1, key; for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); action.call$2(key, this.$index(receiver, key)); } }, addAll$1: function(receiver, other) { var t1, key; for (t1 = other.get$keys(other), t1 = t1.get$iterator(t1); t1.moveNext$0();) { key = t1.get$current(t1); this.$indexSet(receiver, key, other.$index(0, key)); } }, putIfAbsent$2: function(receiver, key, ifAbsent) { var t1; if (this.containsKey$1(receiver, key)) return this.$index(receiver, key); t1 = ifAbsent.call$0(); this.$indexSet(receiver, key, t1); return t1; }, update$3$ifAbsent: function(receiver, key, update, ifAbsent) { var t1, _this = this; if (_this.containsKey$1(receiver, key)) { t1 = update.call$1(_this.$index(receiver, key)); _this.$indexSet(receiver, key, t1); return t1; } if (ifAbsent != null) { t1 = ifAbsent.call$0(); _this.$indexSet(receiver, key, t1); return t1; } throw H.wrapException(P.ArgumentError$value(key, "key", "Key not in map.")); }, update$2: function($receiver, key, update) { return this.update$3$ifAbsent($receiver, key, update, null); }, get$entries: function(receiver) { return J.map$1$1$ax(this.get$keys(receiver), new P.MapMixin_entries_closure(receiver), H.instanceType(receiver)._eval$1("MapEntry")); }, map$2$1: function(receiver, transform, K2, V2) { var t1, key, entry, result = P.LinkedHashMap_LinkedHashMap$_empty(K2, V2); for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); entry = transform.call$2(key, this.$index(receiver, key)); result.$indexSet(0, entry.get$key(entry), entry.get$value(entry)); } return result; }, map$1: function($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, addEntries$1: function(receiver, newEntries) { var t1, t2; for (t1 = J.get$iterator$ax(newEntries); t1.moveNext$0();) { t2 = t1.get$current(t1); this.$indexSet(receiver, t2.get$key(t2), t2.get$value(t2)); } }, removeWhere$1: function(receiver, test) { var t1, key, _i, keysToRemove = H.setRuntimeTypeInfo([], H.instanceType(receiver)._eval$1("JSArray")); for (t1 = J.get$iterator$ax(this.get$keys(receiver)); t1.moveNext$0();) { key = t1.get$current(t1); if (test.call$2(key, this.$index(receiver, key))) keysToRemove.push(key); } for (t1 = keysToRemove.length, _i = 0; _i < keysToRemove.length; keysToRemove.length === t1 || (0, H.throwConcurrentModificationError)(keysToRemove), ++_i) this.remove$1(receiver, keysToRemove[_i]); }, containsKey$1: function(receiver, key) { return J.contains$1$asx(this.get$keys(receiver), key); }, get$length: function(receiver) { return J.get$length$asx(this.get$keys(receiver)); }, get$isEmpty: function(receiver) { return J.get$isEmpty$asx(this.get$keys(receiver)); }, get$isNotEmpty: function(receiver) { return J.get$isNotEmpty$asx(this.get$keys(receiver)); }, get$values: function(receiver) { var t1 = H.instanceType(receiver); return new P._MapBaseValueIterable(receiver, t1._eval$1("@")._bind$1(t1._eval$1("MapMixin.V"))._eval$1("_MapBaseValueIterable<1,2>")); }, toString$0: function(receiver) { return P.MapBase_mapToString(receiver); }, $isMap: 1 }; P.MapMixin_entries_closure.prototype = { call$1: function(key) { var t1 = this.$this, t2 = H.instanceType(t1); return new P.MapEntry(key, J.$index$asx(t1, key), t2._eval$1("@")._bind$1(t2._eval$1("MapMixin.V"))._eval$1("MapEntry<1,2>")); }, $signature: function() { return H.instanceType(this.$this)._eval$1("MapEntry(MapMixin.K)"); } }; P.UnmodifiableMapBase.prototype = {}; P._MapBaseValueIterable.prototype = { get$length: function(_) { return J.get$length$asx(this._collection$_map); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._collection$_map); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._collection$_map); }, get$first: function(_) { var t1 = this._collection$_map, t2 = J.getInterceptor$x(t1); return t2.$index(t1, J.get$first$ax(t2.get$keys(t1))); }, get$last: function(_) { var t1 = this._collection$_map, t2 = J.getInterceptor$x(t1); return t2.$index(t1, J.get$last$ax(t2.get$keys(t1))); }, get$iterator: function(_) { var t1 = this._collection$_map, t2 = this.$ti; return new P._MapBaseValueIterator(J.get$iterator$ax(J.get$keys$x(t1)), t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_MapBaseValueIterator<1,2>")); } }; P._MapBaseValueIterator.prototype = { moveNext$0: function() { var _this = this, t1 = _this._collection$_keys; if (t1.moveNext$0()) { _this._collection$_current = J.$index$asx(_this._collection$_map, t1.get$current(t1)); return true; } _this._collection$_current = null; return false; }, get$current: function(_) { return this._collection$_current; } }; P._UnmodifiableMapMixin.prototype = { $indexSet: function(_, key, value) { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable map")); }, addAll$1: function(_, other) { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable map")); }, clear$0: function(_) { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable map")); }, remove$1: function(_, key) { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable map")); }, putIfAbsent$2: function(_, key, ifAbsent) { throw H.wrapException(P.UnsupportedError$("Cannot modify unmodifiable map")); } }; P.MapView.prototype = { cast$2$0: function(_, RK, RV) { return J.cast$2$0$ax(this._collection$_map, RK, RV); }, $index: function(_, key) { return J.$index$asx(this._collection$_map, key); }, $indexSet: function(_, key, value) { J.$indexSet$ax(this._collection$_map, key, value); }, addAll$1: function(_, other) { J.addAll$1$ax(this._collection$_map, other); }, clear$0: function(_) { J.clear$0$ax(this._collection$_map); }, putIfAbsent$2: function(_, key, ifAbsent) { return J.putIfAbsent$2$x(this._collection$_map, key, ifAbsent); }, containsKey$1: function(_, key) { return J.containsKey$1$x(this._collection$_map, key); }, forEach$1: function(_, action) { J.forEach$1$ax(this._collection$_map, action); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._collection$_map); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._collection$_map); }, get$length: function(_) { return J.get$length$asx(this._collection$_map); }, get$keys: function(_) { return J.get$keys$x(this._collection$_map); }, remove$1: function(_, key) { return J.remove$1$ax(this._collection$_map, key); }, toString$0: function(_) { return J.toString$0$(this._collection$_map); }, get$values: function(_) { return J.get$values$x(this._collection$_map); }, get$entries: function(_) { return J.get$entries$x(this._collection$_map); }, map$2$1: function(_, transform, K2, V2) { return J.map$2$1$ax(this._collection$_map, transform, K2, V2); }, map$1: function($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, $isMap: 1 }; P.UnmodifiableMapView.prototype = { cast$2$0: function(_, RK, RV) { return new P.UnmodifiableMapView(J.cast$2$0$ax(this._collection$_map, RK, RV), RK._eval$1("@<0>")._bind$1(RV)._eval$1("UnmodifiableMapView<1,2>")); } }; P._DoubleLink.prototype = { _collection$_link$2: function(previous, next) { var _this = this; _this._nextLink = next; _this._previousLink = previous; if (previous != null) previous._nextLink = H._instanceType(_this)._eval$1("_DoubleLink.0")._as(_this); if (next != null) next._previousLink = H._instanceType(_this)._eval$1("_DoubleLink.0")._as(_this); }, _unlink$0: function() { var t2, _this = this, t1 = _this._previousLink; if (t1 != null) t1._nextLink = _this._nextLink; t2 = _this._nextLink; if (t2 != null) t2._previousLink = t1; _this._previousLink = _this._nextLink = null; } }; P.DoubleLinkedQueueEntry.prototype = { remove$0: function(_) { this._unlink$0(); return this.get$_collection$_element(); } }; P._DoubleLinkedQueueEntry.prototype = { get$_collection$_element: function() { return this._collection$_element; } }; P._DoubleLinkedQueueElement.prototype = { _collection$_remove$0: function(_) { this._collection$_queue = null; this._unlink$0(); return this.get$_collection$_element(); }, remove$0: function(_) { var _this = this, t1 = _this._collection$_queue; if (t1 != null) --t1._elementCount; _this._collection$_queue = null; _this._unlink$0(); return _this.get$_collection$_element(); }, _asNonSentinelEntry$0: function() { return this; } }; P._DoubleLinkedQueueSentinel.prototype = { _asNonSentinelEntry$0: function() { return null; }, _collection$_remove$0: function(_) { throw H.wrapException(H.IterableElementError_noElement()); }, get$_collection$_element: function() { throw H.wrapException(H.IterableElementError_noElement()); } }; P.DoubleLinkedQueue.prototype = { get$_sentinel: function() { var _this = this, t1 = _this.__DoubleLinkedQueue__sentinel; if (t1 === $) { t1 = new P._DoubleLinkedQueueSentinel(_this, null, _this.$ti._eval$1("_DoubleLinkedQueueSentinel<1>")); t1._previousLink = t1; _this.__DoubleLinkedQueue__sentinel = t1._nextLink = t1; } return t1; }, get$length: function(_) { return this._elementCount; }, addFirst$1: function(value) { var t1 = this.get$_sentinel(); new P._DoubleLinkedQueueElement(t1._collection$_queue, value, H._instanceType(t1)._eval$1("_DoubleLinkedQueueElement<1>"))._collection$_link$2(t1, t1._nextLink); ++this._elementCount; }, add$1: function(_, value) { var t1 = this.get$_sentinel(); new P._DoubleLinkedQueueElement(t1._collection$_queue, value, H._instanceType(t1)._eval$1("_DoubleLinkedQueueElement<1>"))._collection$_link$2(t1._previousLink, t1); ++this._elementCount; }, get$first: function(_) { return this.get$_sentinel()._nextLink.get$_collection$_element(); }, get$last: function(_) { return this.get$_sentinel()._previousLink.get$_collection$_element(); }, get$isEmpty: function(_) { return this.get$_sentinel()._nextLink == this.get$_sentinel(); }, get$iterator: function(_) { var t1 = this.get$_sentinel(); return new P._DoubleLinkedQueueIterator(t1, t1._nextLink, this.$ti._eval$1("_DoubleLinkedQueueIterator<1>")); }, toString$0: function(_) { return P.IterableBase_iterableToFullString(this, "{", "}"); }, $isEfficientLengthIterable: 1 }; P._DoubleLinkedQueueIterator.prototype = { moveNext$0: function() { var _this = this, t1 = _this._nextEntry, t2 = _this._sentinel; if (t1 == t2) { _this._sentinel = _this._nextEntry = _this._collection$_current = null; return false; } _this.$ti._eval$1("_DoubleLinkedQueueEntry<1>")._as(t1); t2 = t2._collection$_queue; if (t2 != t1._collection$_queue) throw H.wrapException(P.ConcurrentModificationError$(t2)); _this._collection$_current = t1.get$_collection$_element(); _this._nextEntry = t1._nextLink; return true; }, get$current: function(_) { return this._collection$_current; } }; P.ListQueue.prototype = { get$iterator: function(_) { var _this = this; return new P._ListQueueIterator(_this, _this._tail, _this._collection$_modificationCount, _this._head, _this.$ti._eval$1("_ListQueueIterator<1>")); }, forEach$1: function(_, f) { var i, _this = this, modificationCount = _this._collection$_modificationCount; for (i = _this._head; i !== _this._tail; i = (i + 1 & _this._table.length - 1) >>> 0) { f.call$1(_this._table[i]); if (modificationCount !== _this._collection$_modificationCount) H.throwExpression(P.ConcurrentModificationError$(_this)); } }, get$isEmpty: function(_) { return this._head === this._tail; }, get$length: function(_) { return (this._tail - this._head & this._table.length - 1) >>> 0; }, get$first: function(_) { var t1 = this._head; if (t1 === this._tail) throw H.wrapException(H.IterableElementError_noElement()); return this._table[t1]; }, get$last: function(_) { var t1 = this._head, t2 = this._tail; if (t1 === t2) throw H.wrapException(H.IterableElementError_noElement()); t1 = this._table; return t1[(t2 - 1 & t1.length - 1) >>> 0]; }, elementAt$1: function(_, index) { var t1; P.RangeError_checkValidIndex(index, this, null, null); t1 = this._table; return t1[(this._head + index & t1.length - 1) >>> 0]; }, toList$1$growable: function(_, growable) { var t1, list, t2, i, _this = this, mask = _this._table.length - 1, $length = (_this._tail - _this._head & mask) >>> 0; if ($length === 0) { t1 = _this.$ti._precomputed1; return growable ? J.JSArray_JSArray$growable(0, t1) : J.JSArray_JSArray$fixed(0, t1); } list = P.List_List$filled($length, _this.get$first(_this), growable, _this.$ti._precomputed1); for (t1 = _this._table, t2 = _this._head, i = 0; i < $length; ++i) list[i] = t1[(t2 + i & mask) >>> 0]; return list; }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, add$1: function(_, value) { this._add$1(0, value); }, addAll$1: function(_, elements) { var addCount, $length, t2, t3, t4, newTable, endSpace, preSpace, _this = this, t1 = _this.$ti; if (t1._eval$1("List<1>")._is(elements)) { addCount = elements.length; $length = _this.get$length(_this); t2 = $length + addCount; t3 = _this._table; t4 = t3.length; if (t2 >= t4) { newTable = P.List_List$filled(P.ListQueue__nextPowerOf2(t2 + (t2 >>> 1)), null, false, t1._eval$1("1?")); _this._tail = _this._writeToList$1(newTable); _this._table = newTable; _this._head = 0; C.JSArray_methods.setRange$4(newTable, $length, t2, elements, 0); _this._tail += addCount; } else { t1 = _this._tail; endSpace = t4 - t1; if (addCount < endSpace) { C.JSArray_methods.setRange$4(t3, t1, t1 + addCount, elements, 0); _this._tail += addCount; } else { preSpace = addCount - endSpace; C.JSArray_methods.setRange$4(t3, t1, t1 + endSpace, elements, 0); C.JSArray_methods.setRange$4(_this._table, 0, preSpace, elements, endSpace); _this._tail = preSpace; } } ++_this._collection$_modificationCount; } else for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) _this._add$1(0, t1.get$current(t1)); }, clear$0: function(_) { var t2, t3, _this = this, i = _this._head, t1 = _this._tail; if (i !== t1) { for (t2 = _this._table, t3 = t2.length - 1; i !== t1; i = (i + 1 & t3) >>> 0) t2[i] = null; _this._head = _this._tail = 0; ++_this._collection$_modificationCount; } }, toString$0: function(_) { return P.IterableBase_iterableToFullString(this, "{", "}"); }, addFirst$1: function(value) { var _this = this, t1 = _this._head, t2 = _this._table; t1 = _this._head = (t1 - 1 & t2.length - 1) >>> 0; t2[t1] = value; if (t1 === _this._tail) _this._collection$_grow$0(); ++_this._collection$_modificationCount; }, removeFirst$0: function() { var t2, result, _this = this, t1 = _this._head; if (t1 === _this._tail) throw H.wrapException(H.IterableElementError_noElement()); ++_this._collection$_modificationCount; t2 = _this._table; result = t2[t1]; t2[t1] = null; _this._head = (t1 + 1 & t2.length - 1) >>> 0; return result; }, removeLast$0: function(_) { var result, _this = this, t1 = _this._head, t2 = _this._tail; if (t1 === t2) throw H.wrapException(H.IterableElementError_noElement()); ++_this._collection$_modificationCount; t1 = _this._table; t2 = _this._tail = (t2 - 1 & t1.length - 1) >>> 0; result = t1[t2]; t1[t2] = null; return result; }, _add$1: function(_, element) { var _this = this, t1 = _this._table, t2 = _this._tail; t1[t2] = element; t1 = (t2 + 1 & t1.length - 1) >>> 0; _this._tail = t1; if (_this._head === t1) _this._collection$_grow$0(); ++_this._collection$_modificationCount; }, _collection$_grow$0: function() { var _this = this, newTable = P.List_List$filled(_this._table.length * 2, null, false, _this.$ti._eval$1("1?")), t1 = _this._table, t2 = _this._head, split = t1.length - t2; C.JSArray_methods.setRange$4(newTable, 0, split, t1, t2); C.JSArray_methods.setRange$4(newTable, split, split + _this._head, _this._table, 0); _this._head = 0; _this._tail = _this._table.length; _this._table = newTable; }, _writeToList$1: function(target) { var $length, firstPartSize, _this = this, t1 = _this._head, t2 = _this._tail, t3 = _this._table; if (t1 <= t2) { $length = t2 - t1; C.JSArray_methods.setRange$4(target, 0, $length, t3, t1); return $length; } else { firstPartSize = t3.length - t1; C.JSArray_methods.setRange$4(target, 0, firstPartSize, t3, t1); C.JSArray_methods.setRange$4(target, firstPartSize, firstPartSize + _this._tail, _this._table, 0); return _this._tail + firstPartSize; } } }; P._ListQueueIterator.prototype = { get$current: function(_) { return this._collection$_current; }, moveNext$0: function() { var t2, _this = this, t1 = _this._collection$_queue; if (_this._collection$_modificationCount !== t1._collection$_modificationCount) H.throwExpression(P.ConcurrentModificationError$(t1)); t2 = _this._collection$_position; if (t2 === _this._end) { _this._collection$_current = null; return false; } t1 = t1._table; _this._collection$_current = t1[t2]; _this._collection$_position = (t2 + 1 & t1.length - 1) >>> 0; return true; } }; P.SetMixin.prototype = { get$isEmpty: function(_) { return this.get$length(this) === 0; }, get$isNotEmpty: function(_) { return this.get$length(this) !== 0; }, clear$0: function(_) { this.removeAll$1(this.toList$0(0)); }, addAll$1: function(_, elements) { var t1; for (t1 = J.get$iterator$ax(elements); t1.moveNext$0();) this.add$1(0, t1.get$current(t1)); }, removeAll$1: function(elements) { var t1, _i; for (t1 = elements.length, _i = 0; _i < elements.length; elements.length === t1 || (0, H.throwConcurrentModificationError)(elements), ++_i) this.remove$1(0, elements[_i]); }, removeWhere$1: function(_, test) { var t1, element, toRemove = []; for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) toRemove.push(element); } this.removeAll$1(toRemove); }, containsAll$1: function(other) { var t1; for (t1 = other._set$_set, t1 = t1.get$iterator(t1); t1.moveNext$0();) if (!this.contains$1(0, t1.get$current(t1))) return false; return true; }, union$1: function(other) { var t1 = this.toSet$0(0); t1.addAll$1(0, other); return t1; }, intersection$1: function(_, other) { var t1, element, result = this.toSet$0(0); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (!other.contains$1(0, element)) result.remove$1(0, element); } return result; }, difference$1: function(other) { var t1, element, result = this.toSet$0(0); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (other.contains$1(0, element)) result.remove$1(0, element); } return result; }, toList$1$growable: function(_, growable) { return P.List_List$of(this, true, H._instanceType(this)._eval$1("SetMixin.E")); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, map$1$1: function(_, f, $T) { return new H.EfficientLengthMappedIterable(this, f, H._instanceType(this)._eval$1("@")._bind$1($T)._eval$1("EfficientLengthMappedIterable<1,2>")); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, toString$0: function(_) { return P.IterableBase_iterableToFullString(this, "{", "}"); }, where$1: function(_, f) { return new H.WhereIterable(this, f, H._instanceType(this)._eval$1("WhereIterable")); }, forEach$1: function(_, f) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) f.call$1(t1.get$current(t1)); }, join$1: function(_, separator) { var t1, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) return ""; if (separator === "") { t1 = ""; do t1 += H.S(iterator.get$current(iterator)); while (iterator.moveNext$0()); } else { t1 = H.S(iterator.get$current(iterator)); for (; iterator.moveNext$0();) t1 = t1 + separator + H.S(iterator.get$current(iterator)); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, any$1: function(_, test) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (test.call$1(t1.get$current(t1))) return true; return false; }, take$1: function(_, n) { return H.TakeIterable_TakeIterable(this, n, H._instanceType(this)._eval$1("SetMixin.E")); }, skip$1: function(_, n) { return H.SkipIterable_SkipIterable(this, n, H._instanceType(this)._eval$1("SetMixin.E")); }, get$first: function(_) { var it = this.get$iterator(this); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); return it.get$current(it); }, get$last: function(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, elementAt$1: function(_, index) { var t1, elementIndex, element, _s5_ = "index"; H.checkNotNullable(index, _s5_, type$.int); P.RangeError_checkNotNegative(index, _s5_); for (t1 = this.get$iterator(this), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw H.wrapException(P.IndexError$(index, this, _s5_, null, elementIndex)); } }; P._SetBase.prototype = { difference$1: function(other) { var t1, element, result = this._newSet$0(); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (!other.contains$1(0, element)) result.add$1(0, element); } return result; }, intersection$1: function(_, other) { var t1, element, result = this._newSet$0(); for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (other.contains$1(0, element)) result.add$1(0, element); } return result; }, toSet$0: function(_) { var t1 = this._newSet$0(); t1.addAll$1(0, this); return t1; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1 }; P._UnmodifiableSetMixin.prototype = { add$1: function(_, value) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, clear$0: function(_) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, addAll$1: function(_, elements) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, removeAll$1: function(elements) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, removeWhere$1: function(_, test) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); }, remove$1: function(_, value) { P._UnmodifiableSetMixin__throwUnmodifiable(); return H.ReachabilityError$(string$.x60null_t); } }; P._UnmodifiableSet.prototype = { _newSet$0: function() { return P.LinkedHashSet_LinkedHashSet(this.$ti._precomputed1); }, contains$1: function(_, element) { return J.containsKey$1$x(this._collection$_map, element); }, get$iterator: function(_) { return J.get$iterator$ax(J.get$keys$x(this._collection$_map)); }, get$length: function(_) { return J.get$length$asx(this._collection$_map); } }; P._SplayTreeNode.prototype = { get$key: function(receiver) { return this.key; } }; P._SplayTreeSetNode.prototype = {}; P._SplayTreeMapNode.prototype = { _replaceValue$1: function(value) { var _this = this, t1 = _this.$ti; t1 = new P._SplayTreeMapNode(value, _this.key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")); t1._collection$_left = _this._collection$_left; t1._collection$_right = _this._collection$_right; return t1; }, toString$0: function(_) { return "MapEntry(" + H.S(this.key) + ": " + H.S(this.value) + ")"; }, $isMapEntry: 1, get$value: function(receiver) { return this.value; } }; P._SplayTree.prototype = { _splay$1: function(key) { var compare, comp, current, newTreeLeft, left, newTreeRight, right, currentLeft, currentLeft0, currentRight, currentRight0, _this = this, _null = null, root = _this.get$_root(); if (root == null) { _this._compare$2(key, key); return -1; } compare = _this.get$_compare(); for (comp = _null, current = root, newTreeLeft = comp, left = newTreeLeft, newTreeRight = left, right = newTreeRight; true;) { comp = compare.call$2(current.key, key); if (comp > 0) { currentLeft = current._collection$_left; if (currentLeft == null) break; comp = compare.call$2(currentLeft.key, key); if (comp > 0) { current._collection$_left = currentLeft._collection$_right; currentLeft._collection$_right = current; currentLeft0 = currentLeft._collection$_left; if (currentLeft0 == null) { current = currentLeft; break; } current = currentLeft; currentLeft = currentLeft0; } if (right == null) newTreeRight = current; else right._collection$_left = current; right = current; current = currentLeft; } else { if (comp < 0) { currentRight = current._collection$_right; if (currentRight == null) break; comp = compare.call$2(currentRight.key, key); if (comp < 0) { current._collection$_right = currentRight._collection$_left; currentRight._collection$_left = current; currentRight0 = currentRight._collection$_right; if (currentRight0 == null) { current = currentRight; break; } current = currentRight; currentRight = currentRight0; } if (left == null) newTreeLeft = current; else left._collection$_right = current; } else break; left = current; current = currentRight; } } if (left != null) { left._collection$_right = current._collection$_left; current._collection$_left = newTreeLeft; } if (right != null) { right._collection$_left = current._collection$_right; current._collection$_right = newTreeRight; } if (_this.get$_root() !== current) { _this.set$_root(current); ++_this._splayCount; } return comp; }, _splayMin$1: function(node) { var current, nextLeft0, nextLeft = node._collection$_left; for (current = node; nextLeft != null; current = nextLeft, nextLeft = nextLeft0) { current._collection$_left = nextLeft._collection$_right; nextLeft._collection$_right = current; nextLeft0 = nextLeft._collection$_left; } return current; }, _splayMax$1: function(node) { var current, nextRight0, nextRight = node._collection$_right; for (current = node; nextRight != null; current = nextRight, nextRight = nextRight0) { current._collection$_right = nextRight._collection$_left; nextRight._collection$_left = current; nextRight0 = nextRight._collection$_right; } return current; }, _collection$_remove$1: function(_, key) { var root, left, t1, root0, _this = this; if (_this.get$_root() == null) return null; if (_this._splay$1(key) !== 0) return null; root = _this.get$_root(); left = root._collection$_left; --_this._count; t1 = root._collection$_right; if (left == null) _this.set$_root(t1); else { root0 = _this._splayMax$1(left); root0._collection$_right = t1; _this.set$_root(root0); } ++_this._collection$_modificationCount; return root; }, _addNewRoot$2: function(node, comp) { var root, _this = this; ++_this._count; ++_this._collection$_modificationCount; root = _this.get$_root(); if (root == null) { _this.set$_root(node); return; } if (comp < 0) { node._collection$_left = root; node._collection$_right = root._collection$_right; root._collection$_right = null; } else { node._collection$_right = root; node._collection$_left = root._collection$_left; root._collection$_left = null; } _this.set$_root(node); }, get$_collection$_first: function() { var _this = this, root = _this.get$_root(); if (root == null) return null; _this.set$_root(_this._splayMin$1(root)); return _this.get$_root(); }, get$_collection$_last: function() { var _this = this, root = _this.get$_root(); if (root == null) return null; _this.set$_root(_this._splayMax$1(root)); return _this.get$_root(); }, _clear$0: function(_) { this.set$_root(null); this._count = 0; ++this._collection$_modificationCount; }, _containsKey$1: function(key) { return this._validKey$1(key) && this._splay$1(key) === 0; }, _compare$2: function(arg0, arg1) { return this.get$_compare().call$2(arg0, arg1); }, _validKey$1: function(arg0) { return this.get$_validKey().call$1(arg0); } }; P.SplayTreeMap.prototype = { $index: function(_, key) { var _this = this; if (!_this._validKey.call$1(key)) return null; if (_this._root != null) if (_this._splay$1(key) === 0) return _this._root.value; return null; }, remove$1: function(_, key) { var mapRoot; if (!this._validKey.call$1(key)) return null; mapRoot = this._collection$_remove$1(0, key); if (mapRoot != null) return mapRoot.value; return null; }, $indexSet: function(_, key, value) { var t1, _this = this, comp = _this._splay$1(key); if (comp === 0) { _this._root = _this._root._replaceValue$1(value); ++_this._splayCount; return; } t1 = _this.$ti; _this._addNewRoot$2(new P._SplayTreeMapNode(value, key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")), comp); }, putIfAbsent$2: function(_, key, ifAbsent) { var modificationCount, splayCount, value, t1, _this = this, comp = _this._splay$1(key); if (comp === 0) return _this._root.value; modificationCount = _this._collection$_modificationCount; splayCount = _this._splayCount; value = ifAbsent.call$0(); if (modificationCount !== _this._collection$_modificationCount) throw H.wrapException(P.ConcurrentModificationError$(_this)); if (splayCount !== _this._splayCount) comp = _this._splay$1(key); t1 = _this.$ti; _this._addNewRoot$2(new P._SplayTreeMapNode(value, key, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapNode<1,2>")), comp); return value; }, addAll$1: function(_, other) { other.forEach$1(0, new P.SplayTreeMap_addAll_closure(this)); }, get$isEmpty: function(_) { return this._root == null; }, get$isNotEmpty: function(_) { return this._root != null; }, forEach$1: function(_, f) { var nodes, node, t1 = this.$ti; t1 = t1._eval$1("@<1>")._bind$1(t1._rest[1]); nodes = new P._SplayTreeMapEntryIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), this._splayCount, t1._eval$1("_SplayTreeMapEntryIterator<1,2>")); for (; nodes.moveNext$0();) { node = nodes.get$current(nodes); f.call$2(node.get$key(node), node.get$value(node)); } }, get$length: function(_) { return this._count; }, clear$0: function(_) { this._clear$0(0); }, containsKey$1: function(_, key) { return this._containsKey$1(key); }, get$keys: function(_) { var t1 = this.$ti; return new P._SplayTreeKeyIterable(this, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>")); }, get$values: function(_) { var t1 = this.$ti; return new P._SplayTreeValueIterable(this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeValueIterable<1,2>")); }, get$entries: function(_) { var t1 = this.$ti; return new P._SplayTreeMapEntryIterable(this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_SplayTreeMapEntryIterable<1,2>")); }, firstKey$0: function() { if (this._root == null) return null; return this.get$_collection$_first().key; }, lastKey$0: function() { if (this._root == null) return null; return this.get$_collection$_last().key; }, lastKeyBefore$1: function(key) { var node, nodeRight, nodeRight0, _this = this; if (key == null) throw H.wrapException(P.ArgumentError$(key)); if (_this._root == null) return null; if (_this._splay$1(key) < 0) return _this._root.key; node = _this._root._collection$_left; if (node == null) return null; nodeRight = node._collection$_right; for (; nodeRight != null; node = nodeRight, nodeRight = nodeRight0) nodeRight0 = nodeRight._collection$_right; return node.key; }, firstKeyAfter$1: function(key) { var node, nodeLeft, nodeLeft0, _this = this; if (key == null) throw H.wrapException(P.ArgumentError$(key)); if (_this._root == null) return null; if (_this._splay$1(key) > 0) return _this._root.key; node = _this._root._collection$_right; if (node == null) return null; nodeLeft = node._collection$_left; for (; nodeLeft != null; node = nodeLeft, nodeLeft = nodeLeft0) nodeLeft0 = nodeLeft._collection$_left; return node.key; }, $isMap: 1, _compare$2: function(arg0, arg1) { return this._compare.call$2(arg0, arg1); }, _validKey$1: function(arg0) { return this._validKey.call$1(arg0); }, get$_root: function() { return this._root; }, get$_compare: function() { return this._compare; }, set$_root: function(val) { return this._root = val; } }; P.SplayTreeMap_closure.prototype = { call$1: function(a) { return this.K._is(a); }, $signature: 110 }; P.SplayTreeMap_addAll_closure.prototype = { call$2: function(key, value) { this.$this.$indexSet(0, key, value); }, $signature: function() { return this.$this.$ti._eval$1("~(1,2)"); } }; P._SplayTreeIterator.prototype = { get$current: function(_) { var t1 = this._collection$_path; if (t1.length === 0) return null; return this._getValue$1(C.JSArray_methods.get$last(t1)); }, moveNext$0: function() { var node, next, _this = this, t1 = _this._collection$_modificationCount, t2 = _this._tree, t3 = t2._collection$_modificationCount; if (t1 !== t3) { if (t1 == null) { _this._collection$_modificationCount = t3; node = t2.get$_root(); for (t1 = _this._collection$_path; node != null;) { t1.push(node); node = node._collection$_left; } return t1.length !== 0; } throw H.wrapException(P.ConcurrentModificationError$(t2)); } t1 = _this._collection$_path; if (t1.length === 0) return false; if (_this._splayCount !== t2._splayCount) { t3 = C.JSArray_methods.get$last(t1).key; C.JSArray_methods.set$length(t1, 0); t2._splay$1(t3); t3 = t2.get$_root(); t3.toString; t1.push(t3); _this._splayCount = t2._splayCount; } node = C.JSArray_methods.get$last(t1); next = node._collection$_right; if (next != null) { for (; next != null;) { t1.push(next); next = next._collection$_left; } return true; } t1.pop(); while (true) { if (!(t1.length !== 0 && C.JSArray_methods.get$last(t1)._collection$_right == node)) break; node = t1.pop(); } return t1.length !== 0; } }; P._SplayTreeKeyIterable.prototype = { get$length: function(_) { return this._tree._count; }, get$isEmpty: function(_) { return this._tree._count === 0; }, get$iterator: function(_) { var t1 = this._tree, t2 = this.$ti; return new P._SplayTreeKeyIterator(t1, H.setRuntimeTypeInfo([], t2._eval$1("JSArray<2>")), t1._splayCount, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_SplayTreeKeyIterator<1,2>")); }, contains$1: function(_, o) { return this._tree._containsKey$1(o); }, toSet$0: function(_) { var t1 = this._tree, t2 = this.$ti, set = P.SplayTreeSet$(t1._compare, t1._validKey, t2._precomputed1); set._count = t1._count; set._root = set._copyNode$1$1(t1._root, t2._rest[1]); return set; } }; P._SplayTreeValueIterable.prototype = { get$length: function(_) { return this._collection$_map._count; }, get$isEmpty: function(_) { return this._collection$_map._count === 0; }, get$iterator: function(_) { var t1 = this._collection$_map, t2 = this.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1]); return new P._SplayTreeValueIterator(t1, H.setRuntimeTypeInfo([], t2._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), t1._splayCount, t2._eval$1("_SplayTreeValueIterator<1,2>")); } }; P._SplayTreeMapEntryIterable.prototype = { get$length: function(_) { return this._collection$_map._count; }, get$isEmpty: function(_) { return this._collection$_map._count === 0; }, get$iterator: function(_) { var t1 = this._collection$_map, t2 = this.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1]); return new P._SplayTreeMapEntryIterator(t1, H.setRuntimeTypeInfo([], t2._eval$1("JSArray<_SplayTreeMapNode<1,2>>")), t1._splayCount, t2._eval$1("_SplayTreeMapEntryIterator<1,2>")); } }; P._SplayTreeKeyIterator.prototype = { _getValue$1: function(node) { return node.key; } }; P._SplayTreeValueIterator.prototype = { _getValue$1: function(node) { return node.value; } }; P._SplayTreeMapEntryIterator.prototype = { _getValue$1: function(node) { return node; } }; P.SplayTreeSet.prototype = { get$iterator: function(_) { var t1 = this.$ti; return new P._SplayTreeKeyIterator(this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); }, get$length: function(_) { return this._count; }, get$isEmpty: function(_) { return this._root == null; }, get$isNotEmpty: function(_) { return this._root != null; }, get$first: function(_) { if (this._count === 0) throw H.wrapException(H.IterableElementError_noElement()); return this.get$_collection$_first().key; }, get$last: function(_) { if (this._count === 0) throw H.wrapException(H.IterableElementError_noElement()); return this.get$_collection$_last().key; }, contains$1: function(_, element) { return this._validKey.call$1(element) && this._splay$1(this.$ti._precomputed1._as(element)) === 0; }, add$1: function(_, element) { return this._add$1(0, element); }, _add$1: function(_, element) { var compare = this._splay$1(element); if (compare === 0) return false; this._addNewRoot$2(new P._SplayTreeSetNode(element, this.$ti._eval$1("_SplayTreeSetNode<1>")), compare); return true; }, remove$1: function(_, object) { if (!this._validKey.call$1(object)) return false; return this._collection$_remove$1(0, this.$ti._precomputed1._as(object)) != null; }, addAll$1: function(_, elements) { var t1; for (t1 = elements.get$iterator(elements); t1.moveNext$0();) this._add$1(0, t1.get$current(t1)); }, removeAll$1: function(elements) { var t1, t2, _i, element; for (t1 = elements.length, t2 = this.$ti._precomputed1, _i = 0; _i < elements.length; elements.length === t1 || (0, H.throwConcurrentModificationError)(elements), ++_i) { element = elements[_i]; if (this._validKey.call$1(element)) this._collection$_remove$1(0, t2._as(element)); } }, intersection$1: function(_, other) { var element, _this = this, t1 = _this.$ti, result = P.SplayTreeSet$(_this._compare, _this._validKey, t1._precomputed1); for (t1 = new P._SplayTreeKeyIterator(_this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), _this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) { element = t1.get$current(t1); if (other.contains$1(0, element)) result._add$1(0, element); } return result; }, difference$1: function(other) { var element, _this = this, t1 = _this.$ti, result = P.SplayTreeSet$(_this._compare, _this._validKey, t1._precomputed1); for (t1 = new P._SplayTreeKeyIterator(_this, H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_SplayTreeSetNode<1>>")), _this._splayCount, t1._eval$1("@<1>")._bind$1(t1._eval$1("_SplayTreeSetNode<1>"))._eval$1("_SplayTreeKeyIterator<1,2>")); t1.moveNext$0();) { element = t1.get$current(t1); if (!other.contains$1(0, element)) result._add$1(0, element); } return result; }, _clone$0: function() { var _this = this, t1 = _this.$ti, set = P.SplayTreeSet$(_this._compare, _this._validKey, t1._precomputed1); set._count = _this._count; set._root = _this._copyNode$1$1(_this._root, t1._eval$1("_SplayTreeSetNode<1>")); return set; }, _copyNode$1$1: function(node, $Node) { var result; if (node == null) return null; result = new P._SplayTreeSetNode(node.key, this.$ti._eval$1("_SplayTreeSetNode<1>")); new P.SplayTreeSet__copyNode_copyChildren(this, $Node).call$2(node, result); return result; }, clear$0: function(_) { this._clear$0(0); }, toSet$0: function(_) { return this._clone$0(); }, toString$0: function(_) { return P.IterableBase_iterableToFullString(this, "{", "}"); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1, _compare$2: function(arg0, arg1) { return this._compare.call$2(arg0, arg1); }, _validKey$1: function(arg0) { return this._validKey.call$1(arg0); }, get$_root: function() { return this._root; }, get$_compare: function() { return this._compare; }, set$_root: function(val) { return this._root = val; } }; P.SplayTreeSet_closure.prototype = { call$1: function(v) { return this.E._is(v); }, $signature: 110 }; P.SplayTreeSet__copyNode_copyChildren.prototype = { call$2: function(node, dest) { var left, right, newLeft, t2, newRight, t1 = this.$this.$ti._eval$1("_SplayTreeSetNode<1>"); do { left = node._collection$_left; right = node._collection$_right; if (left != null) { newLeft = new P._SplayTreeSetNode(left.key, t1); dest._collection$_left = newLeft; this.call$2(left, newLeft); } t2 = right != null; if (t2) { newRight = new P._SplayTreeSetNode(right.key, t1); dest._collection$_right = newRight; dest = newRight; node = right; } } while (t2); }, $signature: function() { return this.$this.$ti._bind$1(this.Node)._eval$1("~(1,_SplayTreeSetNode<2>)"); } }; P._ListBase_Object_ListMixin.prototype = {}; P._SplayTreeMap__SplayTree_MapMixin.prototype = {}; P._SplayTreeSet__SplayTree_IterableMixin.prototype = {}; P._SplayTreeSet__SplayTree_IterableMixin_SetMixin.prototype = {}; P._UnmodifiableMapView_MapView__UnmodifiableMapMixin.prototype = {}; P.__SetBase_Object_SetMixin.prototype = {}; P.__UnmodifiableSet__SetBase__UnmodifiableSetMixin.prototype = {}; P._JsonMap.prototype = { $index: function(_, key) { var result, t1 = this._processed; if (t1 == null) return this._data.$index(0, key); else if (typeof key != "string") return null; else { result = t1[key]; return typeof result == "undefined" ? this._process$1(key) : result; } }, get$length: function(_) { var t1; if (this._processed == null) { t1 = this._data; t1 = t1.get$length(t1); } else t1 = this._computeKeys$0().length; return t1; }, get$isEmpty: function(_) { return this.get$length(this) === 0; }, get$isNotEmpty: function(_) { return this.get$length(this) > 0; }, get$keys: function(_) { var t1; if (this._processed == null) { t1 = this._data; return t1.get$keys(t1); } return new P._JsonMapKeyIterable(this); }, get$values: function(_) { var t1, _this = this; if (_this._processed == null) { t1 = _this._data; return t1.get$values(t1); } return H.MappedIterable_MappedIterable(_this._computeKeys$0(), new P._JsonMap_values_closure(_this), type$.String, type$.dynamic); }, $indexSet: function(_, key, value) { var processed, original, _this = this; if (_this._processed == null) _this._data.$indexSet(0, key, value); else if (_this.containsKey$1(0, key)) { processed = _this._processed; processed[key] = value; original = _this._original; if (original == null ? processed != null : original !== processed) original[key] = null; } else _this._upgrade$0().$indexSet(0, key, value); }, addAll$1: function(_, other) { other.forEach$1(0, new P._JsonMap_addAll_closure(this)); }, containsKey$1: function(_, key) { if (this._processed == null) return this._data.containsKey$1(0, key); if (typeof key != "string") return false; return Object.prototype.hasOwnProperty.call(this._original, key); }, putIfAbsent$2: function(_, key, ifAbsent) { var value; if (this.containsKey$1(0, key)) return this.$index(0, key); value = ifAbsent.call$0(); this.$indexSet(0, key, value); return value; }, remove$1: function(_, key) { if (this._processed != null && !this.containsKey$1(0, key)) return null; return this._upgrade$0().remove$1(0, key); }, clear$0: function(_) { var t1, _this = this; if (_this._processed == null) _this._data.clear$0(0); else { t1 = _this._data; if (t1 != null) J.clear$0$ax(t1); _this._original = _this._processed = null; t1 = type$.dynamic; _this._data = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } }, forEach$1: function(_, f) { var keys, i, key, value, _this = this; if (_this._processed == null) return _this._data.forEach$1(0, f); keys = _this._computeKeys$0(); for (i = 0; i < keys.length; ++i) { key = keys[i]; value = _this._processed[key]; if (typeof value == "undefined") { value = P._convertJsonToDartLazy(_this._original[key]); _this._processed[key] = value; } f.call$2(key, value); if (keys !== _this._data) throw H.wrapException(P.ConcurrentModificationError$(_this)); } }, _computeKeys$0: function() { var keys = this._data; if (keys == null) keys = this._data = H.setRuntimeTypeInfo(Object.keys(this._original), type$.JSArray_String); return keys; }, _upgrade$0: function() { var result, keys, i, t1, key, _this = this; if (_this._processed == null) return _this._data; result = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); keys = _this._computeKeys$0(); for (i = 0; t1 = keys.length, i < t1; ++i) { key = keys[i]; result.$indexSet(0, key, _this.$index(0, key)); } if (t1 === 0) keys.push(""); else C.JSArray_methods.set$length(keys, 0); _this._original = _this._processed = null; return _this._data = result; }, _process$1: function(key) { var result; if (!Object.prototype.hasOwnProperty.call(this._original, key)) return null; result = P._convertJsonToDartLazy(this._original[key]); return this._processed[key] = result; } }; P._JsonMap_values_closure.prototype = { call$1: function(each) { return this.$this.$index(0, each); }, $signature: 576 }; P._JsonMap_addAll_closure.prototype = { call$2: function(key, value) { this.$this.$indexSet(0, key, value); }, $signature: 107 }; P._JsonMapKeyIterable.prototype = { get$length: function(_) { var t1 = this._parent; return t1.get$length(t1); }, elementAt$1: function(_, index) { var t1 = this._parent; return t1._processed == null ? t1.get$keys(t1).elementAt$1(0, index) : t1._computeKeys$0()[index]; }, get$iterator: function(_) { var t1 = this._parent; if (t1._processed == null) { t1 = t1.get$keys(t1); t1 = t1.get$iterator(t1); } else { t1 = t1._computeKeys$0(); t1 = new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); } return t1; }, contains$1: function(_, key) { return this._parent.containsKey$1(0, key); } }; P.Utf8Decoder__decoder_closure.prototype = { call$0: function() { var t1, exception; try { t1 = new TextDecoder("utf-8", {fatal: true}); return t1; } catch (exception) { H.unwrapException(exception); } return null; }, $signature: 9 }; P.Utf8Decoder__decoderNonfatal_closure.prototype = { call$0: function() { var t1, exception; try { t1 = new TextDecoder("utf-8", {fatal: false}); return t1; } catch (exception) { H.unwrapException(exception); } return null; }, $signature: 9 }; P.AsciiCodec.prototype = { get$name: function(_) { return "us-ascii"; }, encode$1: function(source) { return C.AsciiEncoder_127.convert$1(source); }, decode$1: function(_, bytes) { var t1 = C.AsciiDecoder_false_127.convert$1(bytes); return t1; }, get$encoder: function() { return C.AsciiEncoder_127; } }; P._UnicodeSubsetEncoder.prototype = { convert$1: function(string) { var $length, result, t1, t2, i, codeUnit, end = P.RangeError_checkValidRange(0, null, string.length); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); $length = end - 0; result = new Uint8Array($length); for (t1 = ~this._subsetMask, t2 = J.getInterceptor$s(string), i = 0; i < $length; ++i) { codeUnit = t2._codeUnitAt$1(string, i); if ((codeUnit & t1) !== 0) throw H.wrapException(P.ArgumentError$value(string, "string", "Contains invalid characters.")); result[i] = codeUnit; } return result; } }; P.AsciiEncoder.prototype = {}; P._UnicodeSubsetDecoder.prototype = { convert$1: function(bytes) { var t2, i, byte, t1 = J.getInterceptor$asx(bytes), end = P.RangeError_checkValidRange(0, null, t1.get$length(bytes)); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); for (t2 = ~this._subsetMask, i = 0; i < end; ++i) { byte = t1.$index(bytes, i); if ((byte & t2) >>> 0 !== 0) { if (!this._allowInvalid) throw H.wrapException(P.FormatException$("Invalid value in input: " + H.S(byte), null, null)); return this._convertInvalid$3(bytes, 0, end); } } return P.String_String$fromCharCodes(bytes, 0, end); }, _convertInvalid$3: function(bytes, start, end) { var t1, t2, i, t3, value; for (t1 = ~this._subsetMask, t2 = J.getInterceptor$asx(bytes), i = start, t3 = ""; i < end; ++i) { value = t2.$index(bytes, i); t3 += H.Primitives_stringFromCharCode((value & t1) >>> 0 !== 0 ? 65533 : value); } return t3.charCodeAt(0) == 0 ? t3 : t3; } }; P.AsciiDecoder.prototype = {}; P.Base64Codec.prototype = { get$encoder: function() { return C.C_Base64Encoder; }, normalize$3: function(_, source, start, end) { var inverseAlphabet, t1, i, sliceStart, buffer, firstPadding, firstPaddingSourceIndex, paddingCount, i0, char, i1, char0, value, t2, endLength, $length, _s31_ = "Invalid base64 encoding length "; end = P.RangeError_checkValidRange(start, end, source.length); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); inverseAlphabet = $.$get$_Base64Decoder__inverseAlphabet(); for (t1 = J.getInterceptor$asx(source), i = start, sliceStart = i, buffer = null, firstPadding = -1, firstPaddingSourceIndex = -1, paddingCount = 0; i < end; i = i0) { i0 = i + 1; char = t1._codeUnitAt$1(source, i); if (char === 37) { i1 = i0 + 2; if (i1 <= end) { char0 = H.parseHexByte(source, i0); if (char0 === 37) char0 = -1; i0 = i1; } else char0 = -1; } else char0 = char; if (0 <= char0 && char0 <= 127) { value = inverseAlphabet[char0]; if (value >= 0) { char0 = C.JSString_methods.codeUnitAt$1(string$.ABCDEF, value); if (char0 === char) continue; char = char0; } else { if (value === -1) { if (firstPadding < 0) { t2 = buffer == null ? null : buffer._contents.length; if (t2 == null) t2 = 0; firstPadding = t2 + (i - sliceStart); firstPaddingSourceIndex = i; } ++paddingCount; if (char === 61) continue; } char = char0; } if (value !== -2) { if (buffer == null) { buffer = new P.StringBuffer(""); t2 = buffer; } else t2 = buffer; t2._contents += C.JSString_methods.substring$2(source, sliceStart, i); t2._contents += H.Primitives_stringFromCharCode(char); sliceStart = i0; continue; } } throw H.wrapException(P.FormatException$("Invalid base64 data", source, i)); } if (buffer != null) { t1 = buffer._contents += t1.substring$2(source, sliceStart, end); t2 = t1.length; if (firstPadding >= 0) P.Base64Codec__checkPadding(source, firstPaddingSourceIndex, end, firstPadding, paddingCount, t2); else { endLength = C.JSInt_methods.$mod(t2 - 1, 4) + 1; if (endLength === 1) throw H.wrapException(P.FormatException$(_s31_, source, end)); for (; endLength < 4;) { t1 += "="; buffer._contents = t1; ++endLength; } } t1 = buffer._contents; return C.JSString_methods.replaceRange$3(source, start, end, t1.charCodeAt(0) == 0 ? t1 : t1); } $length = end - start; if (firstPadding >= 0) P.Base64Codec__checkPadding(source, firstPaddingSourceIndex, end, firstPadding, paddingCount, $length); else { endLength = C.JSInt_methods.$mod($length, 4); if (endLength === 1) throw H.wrapException(P.FormatException$(_s31_, source, end)); if (endLength > 1) source = t1.replaceRange$3(source, end, end, endLength === 2 ? "==" : "="); } return source; } }; P.Base64Encoder.prototype = { convert$1: function(input) { var t1 = J.getInterceptor$asx(input); if (t1.get$isEmpty(input)) return ""; t1 = new P._Base64Encoder(string$.ABCDEF).encode$4(input, 0, t1.get$length(input), true); t1.toString; return P.String_String$fromCharCodes(t1, 0, null); } }; P._Base64Encoder.prototype = { createBuffer$1: function(_, bufferLength) { return new Uint8Array(bufferLength); }, encode$4: function(bytes, start, end, isLast) { var output, _this = this, byteCount = (_this._convert$_state & 3) + (end - start), fullChunks = C.JSInt_methods._tdivFast$1(byteCount, 3), bufferLength = fullChunks * 4; if (isLast && byteCount - fullChunks * 3 > 0) bufferLength += 4; output = _this.createBuffer$1(0, bufferLength); _this._convert$_state = P._Base64Encoder_encodeChunk(_this._alphabet, bytes, start, end, isLast, output, 0, _this._convert$_state); if (bufferLength > 0) return output; return null; } }; P.Base64Decoder.prototype = { convert$2: function(input, start) { var decoder, t1, end = P.RangeError_checkValidRange(start, null, input.length); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); if (start === end) return new Uint8Array(0); decoder = new P._Base64Decoder(); t1 = decoder.decode$3(0, input, start, end); t1.toString; decoder.close$2(0, input, end); return t1; }, convert$1: function(input) { return this.convert$2(input, 0); } }; P._Base64Decoder.prototype = { decode$3: function(_, input, start, end) { var buffer, _this = this, t1 = _this._convert$_state; if (t1 < 0) { _this._convert$_state = P._Base64Decoder__checkPadding(input, start, end, t1); return null; } if (start === end) return new Uint8Array(0); buffer = P._Base64Decoder__allocateBuffer(input, start, end, t1); _this._convert$_state = P._Base64Decoder_decodeChunk(input, start, end, buffer, 0, _this._convert$_state); return buffer; }, close$2: function(_, input, end) { var t1 = this._convert$_state; if (t1 < -1) throw H.wrapException(P.FormatException$("Missing padding character", input, end)); if (t1 > 0) throw H.wrapException(P.FormatException$("Invalid length, must be multiple of four", input, end)); this._convert$_state = -1; } }; P.ByteConversionSink.prototype = {}; P.ByteConversionSinkBase.prototype = {}; P._ByteCallbackSink.prototype = { add$1: function(_, chunk) { var v, grown, _this = this, t1 = _this._convert$_buffer, t2 = _this._bufferIndex, t3 = J.getInterceptor$asx(chunk); if (t3.get$length(chunk) > t1.length - t2) { t1 = _this._convert$_buffer; v = t3.get$length(chunk) + t1.length - 1; v |= C.JSInt_methods._shrOtherPositive$1(v, 1); v |= v >>> 2; v |= v >>> 4; v |= v >>> 8; grown = new Uint8Array((((v | v >>> 16) >>> 0) + 1) * 2); t1 = _this._convert$_buffer; C.NativeUint8List_methods.setRange$3(grown, 0, t1.length, t1); _this._convert$_buffer = grown; } t1 = _this._convert$_buffer; t2 = _this._bufferIndex; C.NativeUint8List_methods.setRange$3(t1, t2, t2 + t3.get$length(chunk), chunk); _this._bufferIndex = _this._bufferIndex + t3.get$length(chunk); }, close$0: function(_) { this._convert$_callback.call$1(C.NativeUint8List_methods.sublist$2(this._convert$_buffer, 0, this._bufferIndex)); } }; P.ChunkedConversionSink.prototype = {}; P.Codec0.prototype = { encode$1: function(input) { return this.get$encoder().convert$1(input); } }; P.Converter.prototype = {}; P.Encoding.prototype = {}; P.JsonUnsupportedObjectError.prototype = { toString$0: function(_) { var safeString = P.Error_safeToString(this.unsupportedObject); return (this.cause != null ? "Converting object to an encodable object failed:" : "Converting object did not return an encodable object:") + " " + safeString; } }; P.JsonCyclicError.prototype = { toString$0: function(_) { return "Cyclic error in JSON stringify"; } }; P.JsonCodec.prototype = { decode$2$reviver: function(_, source, reviver) { var t1 = P._parseJson(source, this.get$decoder()._reviver); return t1; }, decode$1: function($receiver, source) { return this.decode$2$reviver($receiver, source, null); }, encode$2$toEncodable: function(value, toEncodable) { var t1; if (toEncodable == null) toEncodable = null; if (toEncodable == null) { t1 = this.get$encoder(); return P._JsonStringStringifier_stringify(value, t1._toEncodable, t1.indent); } return P._JsonStringStringifier_stringify(value, toEncodable, null); }, encode$1: function(value) { return this.encode$2$toEncodable(value, null); }, get$encoder: function() { return C.JsonEncoder_null_null; }, get$decoder: function() { return C.JsonDecoder_null; } }; P.JsonEncoder.prototype = { convert$1: function(object) { var t1, output = new P.StringBuffer(""); P._JsonStringStringifier_printOn(object, output, this._toEncodable, this.indent); t1 = output._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; P.JsonDecoder.prototype = { convert$1: function(input) { return P._parseJson(input, this._reviver); } }; P._JsonStringifier.prototype = { writeStringContent$1: function(s) { var t1, offset, i, charCode, t2, t3, _this = this, $length = s.length; for (t1 = J.getInterceptor$s(s), offset = 0, i = 0; i < $length; ++i) { charCode = t1._codeUnitAt$1(s, i); if (charCode > 92) { if (charCode >= 55296) { t2 = charCode & 64512; if (t2 === 55296) { t3 = i + 1; t3 = !(t3 < $length && (C.JSString_methods._codeUnitAt$1(s, t3) & 64512) === 56320); } else t3 = false; if (!t3) if (t2 === 56320) { t2 = i - 1; t2 = !(t2 >= 0 && (C.JSString_methods.codeUnitAt$1(s, t2) & 64512) === 55296); } else t2 = false; else t2 = true; if (t2) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); _this.writeCharCode$1(117); _this.writeCharCode$1(100); t2 = charCode >>> 8 & 15; _this.writeCharCode$1(t2 < 10 ? 48 + t2 : 87 + t2); t2 = charCode >>> 4 & 15; _this.writeCharCode$1(t2 < 10 ? 48 + t2 : 87 + t2); t2 = charCode & 15; _this.writeCharCode$1(t2 < 10 ? 48 + t2 : 87 + t2); } } continue; } if (charCode < 32) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); switch (charCode) { case 8: _this.writeCharCode$1(98); break; case 9: _this.writeCharCode$1(116); break; case 10: _this.writeCharCode$1(110); break; case 12: _this.writeCharCode$1(102); break; case 13: _this.writeCharCode$1(114); break; default: _this.writeCharCode$1(117); _this.writeCharCode$1(48); _this.writeCharCode$1(48); t2 = charCode >>> 4 & 15; _this.writeCharCode$1(t2 < 10 ? 48 + t2 : 87 + t2); t2 = charCode & 15; _this.writeCharCode$1(t2 < 10 ? 48 + t2 : 87 + t2); break; } } else if (charCode === 34 || charCode === 92) { if (i > offset) _this.writeStringSlice$3(s, offset, i); offset = i + 1; _this.writeCharCode$1(92); _this.writeCharCode$1(charCode); } } if (offset === 0) _this.writeString$1(s); else if (offset < $length) _this.writeStringSlice$3(s, offset, $length); }, _checkCycle$1: function(object) { var t1, t2, i, t3; for (t1 = this._seen, t2 = t1.length, i = 0; i < t2; ++i) { t3 = t1[i]; if (object == null ? t3 == null : object === t3) throw H.wrapException(new P.JsonCyclicError(object, null)); } t1.push(object); }, writeObject$1: function(object) { var customJson, e, t1, exception, _this = this; if (_this.writeJsonValue$1(object)) return; _this._checkCycle$1(object); try { customJson = _this._toEncodable.call$1(object); if (!_this.writeJsonValue$1(customJson)) { t1 = P.JsonUnsupportedObjectError$(object, null, _this.get$_partialResult()); throw H.wrapException(t1); } _this._seen.pop(); } catch (exception) { e = H.unwrapException(exception); t1 = P.JsonUnsupportedObjectError$(object, e, _this.get$_partialResult()); throw H.wrapException(t1); } }, writeJsonValue$1: function(object) { var success, _this = this; if (typeof object == "number") { if (!isFinite(object)) return false; _this.writeNumber$1(object); return true; } else if (object === true) { _this.writeString$1("true"); return true; } else if (object === false) { _this.writeString$1("false"); return true; } else if (object == null) { _this.writeString$1("null"); return true; } else if (typeof object == "string") { _this.writeString$1('"'); _this.writeStringContent$1(object); _this.writeString$1('"'); return true; } else if (type$.List_dynamic._is(object)) { _this._checkCycle$1(object); _this.writeList$1(object); _this._seen.pop(); return true; } else if (type$.Map_dynamic_dynamic._is(object)) { _this._checkCycle$1(object); success = _this.writeMap$1(object); _this._seen.pop(); return success; } else return false; }, writeList$1: function(list) { var t1, i, _this = this; _this.writeString$1("["); t1 = J.getInterceptor$asx(list); if (t1.get$isNotEmpty(list)) { _this.writeObject$1(t1.$index(list, 0)); for (i = 1; i < t1.get$length(list); ++i) { _this.writeString$1(","); _this.writeObject$1(t1.$index(list, i)); } } _this.writeString$1("]"); }, writeMap$1: function(map) { var t2, keyValueList, i, separator, _this = this, _box_0 = {}, t1 = J.getInterceptor$asx(map); if (t1.get$isEmpty(map)) { _this.writeString$1("{}"); return true; } t2 = t1.get$length(map) * 2; keyValueList = P.List_List$filled(t2, null, false, type$.nullable_Object); i = _box_0.i = 0; _box_0.allStringKeys = true; t1.forEach$1(map, new P._JsonStringifier_writeMap_closure(_box_0, keyValueList)); if (!_box_0.allStringKeys) return false; _this.writeString$1("{"); for (separator = '"'; i < t2; i += 2, separator = ',"') { _this.writeString$1(separator); _this.writeStringContent$1(H._asStringS(keyValueList[i])); _this.writeString$1('":'); _this.writeObject$1(keyValueList[i + 1]); } _this.writeString$1("}"); return true; } }; P._JsonStringifier_writeMap_closure.prototype = { call$2: function(key, value) { var t1, t2, t3, i; if (typeof key != "string") this._box_0.allStringKeys = false; t1 = this.keyValueList; t2 = this._box_0; t3 = t2.i; i = t2.i = t3 + 1; t1[t3] = key; t2.i = i + 1; t1[i] = value; }, $signature: 209 }; P._JsonPrettyPrintMixin.prototype = { writeList$1: function(list) { var i, _this = this, t1 = J.getInterceptor$asx(list); if (t1.get$isEmpty(list)) _this.writeString$1("[]"); else { _this.writeString$1("[\n"); _this.writeIndentation$1(++_this._JsonPrettyPrintMixin__indentLevel); _this.writeObject$1(t1.$index(list, 0)); for (i = 1; i < t1.get$length(list); ++i) { _this.writeString$1(",\n"); _this.writeIndentation$1(_this._JsonPrettyPrintMixin__indentLevel); _this.writeObject$1(t1.$index(list, i)); } _this.writeString$1("\n"); _this.writeIndentation$1(--_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1("]"); } }, writeMap$1: function(map) { var t2, keyValueList, i, separator, _this = this, _box_0 = {}, t1 = J.getInterceptor$asx(map); if (t1.get$isEmpty(map)) { _this.writeString$1("{}"); return true; } t2 = t1.get$length(map) * 2; keyValueList = P.List_List$filled(t2, null, false, type$.nullable_Object); i = _box_0.i = 0; _box_0.allStringKeys = true; t1.forEach$1(map, new P._JsonPrettyPrintMixin_writeMap_closure(_box_0, keyValueList)); if (!_box_0.allStringKeys) return false; _this.writeString$1("{\n"); ++_this._JsonPrettyPrintMixin__indentLevel; for (separator = ""; i < t2; i += 2, separator = ",\n") { _this.writeString$1(separator); _this.writeIndentation$1(_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1('"'); _this.writeStringContent$1(H._asStringS(keyValueList[i])); _this.writeString$1('": '); _this.writeObject$1(keyValueList[i + 1]); } _this.writeString$1("\n"); _this.writeIndentation$1(--_this._JsonPrettyPrintMixin__indentLevel); _this.writeString$1("}"); return true; } }; P._JsonPrettyPrintMixin_writeMap_closure.prototype = { call$2: function(key, value) { var t1, t2, t3, i; if (typeof key != "string") this._box_0.allStringKeys = false; t1 = this.keyValueList; t2 = this._box_0; t3 = t2.i; i = t2.i = t3 + 1; t1[t3] = key; t2.i = i + 1; t1[i] = value; }, $signature: 209 }; P._JsonStringStringifier.prototype = { get$_partialResult: function() { var t1 = this._sink; return t1 instanceof P.StringBuffer ? t1.toString$0(0) : null; }, writeNumber$1: function(number) { this._sink.write$1(0, C.JSNumber_methods.toString$0(number)); }, writeString$1: function(string) { this._sink.write$1(0, string); }, writeStringSlice$3: function(string, start, end) { this._sink.write$1(0, C.JSString_methods.substring$2(string, start, end)); }, writeCharCode$1: function(charCode) { this._sink.writeCharCode$1(charCode); } }; P._JsonStringStringifierPretty.prototype = { writeIndentation$1: function(count) { var t1, t2, i; for (t1 = this._indent, t2 = this._sink, i = 0; i < count; ++i) t2.write$1(0, t1); } }; P.Latin1Codec.prototype = { get$name: function(_) { return "iso-8859-1"; }, encode$1: function(source) { return C.Latin1Encoder_255.convert$1(source); }, decode$1: function(_, bytes) { var t1 = C.Latin1Decoder_false_255.convert$1(bytes); return t1; }, get$encoder: function() { return C.Latin1Encoder_255; } }; P.Latin1Encoder.prototype = {}; P.Latin1Decoder.prototype = {}; P.Utf8Codec.prototype = { get$name: function(_) { return "utf-8"; }, decode$2$allowMalformed: function(_, codeUnits, allowMalformed) { return (allowMalformed === true ? C.Utf8Decoder_true : C.Utf8Decoder_false).convert$1(codeUnits); }, decode$1: function($receiver, codeUnits) { return this.decode$2$allowMalformed($receiver, codeUnits, null); }, get$encoder: function() { return C.C_Utf8Encoder; } }; P.Utf8Encoder.prototype = { convert$1: function(string) { var $length, t1, encoder, end = P.RangeError_checkValidRange(0, null, string.length); if (end == null) throw H.wrapException(P.RangeError$("Invalid range")); $length = end - 0; if ($length === 0) return new Uint8Array(0); t1 = new Uint8Array($length * 3); encoder = new P._Utf8Encoder(t1); if (encoder._fillBuffer$3(string, 0, end) !== end) { J.codeUnitAt$1$s(string, end - 1); encoder._writeReplacementCharacter$0(); } return C.NativeUint8List_methods.sublist$2(t1, 0, encoder._bufferIndex); } }; P._Utf8Encoder.prototype = { _writeReplacementCharacter$0: function() { var _this = this, t1 = _this._convert$_buffer, t2 = _this._bufferIndex, t3 = _this._bufferIndex = t2 + 1; t1[t2] = 239; t2 = _this._bufferIndex = t3 + 1; t1[t3] = 191; _this._bufferIndex = t2 + 1; t1[t2] = 189; }, _writeSurrogate$2: function(leadingSurrogate, nextCodeUnit) { var rune, t1, t2, t3, _this = this; if ((nextCodeUnit & 64512) === 56320) { rune = 65536 + ((leadingSurrogate & 1023) << 10) | nextCodeUnit & 1023; t1 = _this._convert$_buffer; t2 = _this._bufferIndex; t3 = _this._bufferIndex = t2 + 1; t1[t2] = rune >>> 18 | 240; t2 = _this._bufferIndex = t3 + 1; t1[t3] = rune >>> 12 & 63 | 128; t3 = _this._bufferIndex = t2 + 1; t1[t2] = rune >>> 6 & 63 | 128; _this._bufferIndex = t3 + 1; t1[t3] = rune & 63 | 128; return true; } else { _this._writeReplacementCharacter$0(); return false; } }, _fillBuffer$3: function(str, start, end) { var t1, t2, t3, stringIndex, codeUnit, t4, stringIndex0, t5, _this = this; if (start !== end && (J.codeUnitAt$1$s(str, end - 1) & 64512) === 55296) --end; for (t1 = _this._convert$_buffer, t2 = t1.length, t3 = J.getInterceptor$s(str), stringIndex = start; stringIndex < end; ++stringIndex) { codeUnit = t3._codeUnitAt$1(str, stringIndex); if (codeUnit <= 127) { t4 = _this._bufferIndex; if (t4 >= t2) break; _this._bufferIndex = t4 + 1; t1[t4] = codeUnit; } else { t4 = codeUnit & 64512; if (t4 === 55296) { if (_this._bufferIndex + 4 > t2) break; stringIndex0 = stringIndex + 1; if (_this._writeSurrogate$2(codeUnit, C.JSString_methods._codeUnitAt$1(str, stringIndex0))) stringIndex = stringIndex0; } else if (t4 === 56320) { if (_this._bufferIndex + 3 > t2) break; _this._writeReplacementCharacter$0(); } else if (codeUnit <= 2047) { t4 = _this._bufferIndex; t5 = t4 + 1; if (t5 >= t2) break; _this._bufferIndex = t5; t1[t4] = codeUnit >>> 6 | 192; _this._bufferIndex = t5 + 1; t1[t5] = codeUnit & 63 | 128; } else { t4 = _this._bufferIndex; if (t4 + 2 >= t2) break; t5 = _this._bufferIndex = t4 + 1; t1[t4] = codeUnit >>> 12 | 224; t4 = _this._bufferIndex = t5 + 1; t1[t5] = codeUnit >>> 6 & 63 | 128; _this._bufferIndex = t4 + 1; t1[t4] = codeUnit & 63 | 128; } } } return stringIndex; } }; P.Utf8Decoder.prototype = { convert$1: function(codeUnits) { var t1 = this._allowMalformed, result = P.Utf8Decoder__convertIntercepted(t1, codeUnits, 0, null); if (result != null) return result; return new P._Utf8Decoder(t1).convertGeneral$4(codeUnits, 0, null, true); } }; P._Utf8Decoder.prototype = { convertGeneral$4: function(codeUnits, start, maybeEnd, single) { var bytes, errorOffset, result, t1, message, _this = this, end = P.RangeError_checkValidRange(start, maybeEnd, J.get$length$asx(codeUnits)); if (start === end) return ""; if (type$.Uint8List._is(codeUnits)) { bytes = codeUnits; errorOffset = 0; } else { bytes = P._Utf8Decoder__makeUint8List(codeUnits, start, end); end -= start; errorOffset = start; start = 0; } result = _this._convertRecursive$4(bytes, start, end, single); t1 = _this._convert$_state; if ((t1 & 1) !== 0) { message = P._Utf8Decoder_errorDescription(t1); _this._convert$_state = 0; throw H.wrapException(P.FormatException$(message, codeUnits, errorOffset + _this._charOrIndex)); } return result; }, _convertRecursive$4: function(bytes, start, end, single) { var mid, s1, _this = this; if (end - start > 1000) { mid = C.JSInt_methods._tdivFast$1(start + end, 2); s1 = _this._convertRecursive$4(bytes, start, mid, false); if ((_this._convert$_state & 1) !== 0) return s1; return s1 + _this._convertRecursive$4(bytes, mid, end, single); } return _this.decodeGeneral$4(bytes, start, end, single); }, decodeGeneral$4: function(bytes, start, end, single) { var t2, type, t3, i0, markEnd, i1, m, _this = this, _65533 = 65533, state = _this._convert$_state, char = _this._charOrIndex, buffer = new P.StringBuffer(""), i = start + 1, t1 = J.getInterceptor$asx(bytes), byte = t1.$index(bytes, start); $label0$0: for (t2 = _this.allowMalformed; true;) { for (; true; i = i0) { type = C.JSString_methods._codeUnitAt$1("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE", byte) & 31; char = state <= 32 ? byte & 61694 >>> type : (byte & 63 | char << 6) >>> 0; state = C.JSString_methods._codeUnitAt$1(" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA", state + type); if (state === 0) { buffer._contents += H.Primitives_stringFromCharCode(char); if (i === end) break $label0$0; break; } else if ((state & 1) !== 0) { if (t2) switch (state) { case 69: case 67: buffer._contents += H.Primitives_stringFromCharCode(_65533); break; case 65: buffer._contents += H.Primitives_stringFromCharCode(_65533); --i; break; default: t3 = buffer._contents += H.Primitives_stringFromCharCode(_65533); buffer._contents = t3 + H.Primitives_stringFromCharCode(_65533); break; } else { _this._convert$_state = state; _this._charOrIndex = i - 1; return ""; } state = 0; } if (i === end) break $label0$0; i0 = i + 1; byte = t1.$index(bytes, i); } i0 = i + 1; byte = t1.$index(bytes, i); if (byte < 128) { while (true) { if (!(i0 < end)) { markEnd = end; break; } i1 = i0 + 1; byte = t1.$index(bytes, i0); if (byte >= 128) { markEnd = i1 - 1; i0 = i1; break; } i0 = i1; } if (markEnd - i < 20) for (m = i; m < markEnd; ++m) buffer._contents += H.Primitives_stringFromCharCode(t1.$index(bytes, m)); else buffer._contents += P.String_String$fromCharCodes(bytes, i, markEnd); if (markEnd === end) break $label0$0; i = i0; } else i = i0; } if (single && state > 32) if (t2) buffer._contents += H.Primitives_stringFromCharCode(_65533); else { _this._convert$_state = 77; _this._charOrIndex = end; return ""; } _this._convert$_state = state; _this._charOrIndex = char; t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; P.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin.prototype = {}; P._symbolMapToStringMap_closure.prototype = { call$2: function(key, value) { this.result.$indexSet(0, key.__internal$_name, value); }, $signature: 460 }; P.NoSuchMethodError_toString_closure.prototype = { call$2: function(key, value) { var t3, t1 = this.sb, t2 = this._box_0; t1._contents += t2.comma; t3 = t1._contents += H.S(key.__internal$_name); t1._contents = t3 + ": "; t1._contents += P.Error_safeToString(value); t2.comma = ", "; }, $signature: 460 }; P._BigIntImpl.prototype = { $negate: function(_) { var t2, t3, _this = this, t1 = _this._used; if (t1 === 0) return _this; t2 = !_this._isNegative; t3 = _this._digits; t1 = P._BigIntImpl__normalize(t1, t3); return new P._BigIntImpl(t1 === 0 ? false : t2, t3, t1); }, _drShift$1: function(n) { var resultUsed, digits, resultDigits, i, t1, t2, result, _this = this, used = _this._used; if (used === 0) return $.$get$_BigIntImpl_zero(); resultUsed = used - n; if (resultUsed <= 0) return _this._isNegative ? $.$get$_BigIntImpl__minusOne() : $.$get$_BigIntImpl_zero(); digits = _this._digits; resultDigits = new Uint16Array(resultUsed); for (i = n; i < used; ++i) resultDigits[i - n] = digits[i]; t1 = _this._isNegative; t2 = P._BigIntImpl__normalize(resultUsed, resultDigits); result = new P._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); if (t1) for (i = 0; i < n; ++i) if (digits[i] !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); return result; }, $shr: function(_, shiftAmount) { var t1, digitShift, bitShift, resultUsed, digits, resultDigits, t2, result, i, _this = this; if (shiftAmount < 0) throw H.wrapException(P.ArgumentError$("shift-amount must be posititve " + H.S(shiftAmount))); t1 = _this._used; if (t1 === 0) return _this; digitShift = C.JSInt_methods._tdivFast$1(shiftAmount, 16); bitShift = C.JSInt_methods.$mod(shiftAmount, 16); if (bitShift === 0) return _this._drShift$1(digitShift); resultUsed = t1 - digitShift; if (resultUsed <= 0) return _this._isNegative ? $.$get$_BigIntImpl__minusOne() : $.$get$_BigIntImpl_zero(); digits = _this._digits; resultDigits = new Uint16Array(resultUsed); P._BigIntImpl__rsh(digits, t1, shiftAmount, resultDigits); t1 = _this._isNegative; t2 = P._BigIntImpl__normalize(resultUsed, resultDigits); result = new P._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); if (t1) { if ((digits[digitShift] & C.JSInt_methods.$shl(1, bitShift) - 1) !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); for (i = 0; i < digitShift; ++i) if (digits[i] !== 0) return result.$sub(0, $.$get$_BigIntImpl_one()); } return result; }, compareTo$1: function(_, other) { var result, t1 = this._isNegative; if (t1 === other._isNegative) { result = P._BigIntImpl__compareDigits(this._digits, this._used, other._digits, other._used); return t1 ? 0 - result : result; } return t1 ? -1 : 1; }, _absAddSetSign$2: function(other, isNegative) { var resultUsed, resultDigits, t1, _this = this, used = _this._used, otherUsed = other._used; if (used < otherUsed) return other._absAddSetSign$2(_this, isNegative); if (used === 0) return $.$get$_BigIntImpl_zero(); if (otherUsed === 0) return _this._isNegative === isNegative ? _this : _this.$negate(0); resultUsed = used + 1; resultDigits = new Uint16Array(resultUsed); P._BigIntImpl__absAdd(_this._digits, used, other._digits, otherUsed, resultDigits); t1 = P._BigIntImpl__normalize(resultUsed, resultDigits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, resultDigits, t1); }, _absSubSetSign$2: function(other, isNegative) { var otherUsed, resultDigits, t1, _this = this, used = _this._used; if (used === 0) return $.$get$_BigIntImpl_zero(); otherUsed = other._used; if (otherUsed === 0) return _this._isNegative === isNegative ? _this : _this.$negate(0); resultDigits = new Uint16Array(used); P._BigIntImpl__absSub(_this._digits, used, other._digits, otherUsed, resultDigits); t1 = P._BigIntImpl__normalize(used, resultDigits); return new P._BigIntImpl(t1 === 0 ? false : isNegative, resultDigits, t1); }, $add: function(_, other) { var t2, isNegative, _this = this, t1 = _this._used; if (t1 === 0) return other; t2 = other._used; if (t2 === 0) return _this; isNegative = _this._isNegative; if (isNegative === other._isNegative) return _this._absAddSetSign$2(other, isNegative); if (P._BigIntImpl__compareDigits(_this._digits, t1, other._digits, t2) >= 0) return _this._absSubSetSign$2(other, isNegative); return other._absSubSetSign$2(_this, !isNegative); }, $sub: function(_, other) { var t2, isNegative, _this = this, t1 = _this._used; if (t1 === 0) return other.$negate(0); t2 = other._used; if (t2 === 0) return _this; isNegative = _this._isNegative; if (isNegative !== other._isNegative) return _this._absAddSetSign$2(other, isNegative); if (P._BigIntImpl__compareDigits(_this._digits, t1, other._digits, t2) >= 0) return _this._absSubSetSign$2(other, isNegative); return other._absSubSetSign$2(_this, !isNegative); }, $mul: function(_, other) { var resultUsed, digits, otherDigits, resultDigits, i, t1, t2, used = this._used, otherUsed = other._used; if (used === 0 || otherUsed === 0) return $.$get$_BigIntImpl_zero(); resultUsed = used + otherUsed; digits = this._digits; otherDigits = other._digits; resultDigits = new Uint16Array(resultUsed); for (i = 0; i < otherUsed;) { P._BigIntImpl__mulAdd(otherDigits[i], digits, 0, resultDigits, i, used); ++i; } t1 = this._isNegative !== other._isNegative; t2 = P._BigIntImpl__normalize(resultUsed, resultDigits); return new P._BigIntImpl(t2 === 0 ? false : t1, resultDigits, t2); }, _div$1: function(other) { var t1, t2, t3, lastQuo_used, quo_digits, quo; if (this._used < other._used) return $.$get$_BigIntImpl_zero(); this._divRem$1(other); t1 = $._BigIntImpl____lastQuoRemUsed; t2 = t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lastQuoRemUsed")) : t1; t3 = $._BigIntImpl____lastRemUsed; lastQuo_used = t2 - (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_lastRemUsed")) : t3); t2 = $._BigIntImpl____lastQuoRemDigits; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_lastQuoRemDigits")); quo_digits = P._BigIntImpl__cloneDigits(t2, t3, t1, lastQuo_used); t1 = P._BigIntImpl__normalize(lastQuo_used, quo_digits); quo = new P._BigIntImpl(false, quo_digits, t1); return this._isNegative !== other._isNegative && t1 > 0 ? quo.$negate(0) : quo; }, _rem$1: function(other) { var t1, t2, t3, remDigits, rem, _this = this, _s12_ = "_lastRemUsed"; if (_this._used < other._used) return _this; _this._divRem$1(other); t1 = $._BigIntImpl____lastQuoRemDigits; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_lastQuoRemDigits")); t2 = $._BigIntImpl____lastRemUsed; t3 = t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t2; remDigits = P._BigIntImpl__cloneDigits(t1, 0, t3, t2); t1 = $._BigIntImpl____lastRemUsed; t1 = P._BigIntImpl__normalize(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t1, remDigits); rem = new P._BigIntImpl(false, remDigits, t1); t1 = $._BigIntImpl____lastRem_nsh; if ((t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lastRem_nsh")) : t1) > 0) rem = rem.$shr(0, t1); return _this._isNegative && rem._used > 0 ? rem.$negate(0) : rem; }, _divRem$1: function(other) { var yDigits, yUsed, nsh, yDigits0, yUsed0, resultDigits, resultUsed0, topDigitDivisor, j, tmpDigits, tmpUsed, resultUsed1, nyDigits, i, estimatedQuotientDigit, _this = this, resultUsed = _this._used; if (resultUsed === $._BigIntImpl__lastDividendUsed && other._used === $._BigIntImpl__lastDivisorUsed && _this._digits === $._BigIntImpl__lastDividendDigits && other._digits === $._BigIntImpl__lastDivisorDigits) return; yDigits = other._digits; yUsed = other._used; nsh = 16 - C.JSInt_methods.get$bitLength(yDigits[yUsed - 1]); if (nsh > 0) { yDigits0 = new Uint16Array(yUsed + 5); yUsed0 = P._BigIntImpl__lShiftDigits(yDigits, yUsed, nsh, yDigits0); resultDigits = new Uint16Array(resultUsed + 5); resultUsed0 = P._BigIntImpl__lShiftDigits(_this._digits, resultUsed, nsh, resultDigits); } else { resultDigits = P._BigIntImpl__cloneDigits(_this._digits, 0, resultUsed, resultUsed + 2); yUsed0 = yUsed; yDigits0 = yDigits; resultUsed0 = resultUsed; } topDigitDivisor = yDigits0[yUsed0 - 1]; j = resultUsed0 - yUsed0; tmpDigits = new Uint16Array(resultUsed0); tmpUsed = P._BigIntImpl__dlShiftDigits(yDigits0, yUsed0, j, tmpDigits); resultUsed1 = resultUsed0 + 1; if (P._BigIntImpl__compareDigits(resultDigits, resultUsed0, tmpDigits, tmpUsed) >= 0) { resultDigits[resultUsed0] = 1; P._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); } else resultDigits[resultUsed0] = 0; nyDigits = new Uint16Array(yUsed0 + 2); nyDigits[yUsed0] = 1; P._BigIntImpl__absSub(nyDigits, yUsed0 + 1, yDigits0, yUsed0, nyDigits); i = resultUsed0 - 1; for (; j > 0;) { estimatedQuotientDigit = P._BigIntImpl__estimateQuotientDigit(topDigitDivisor, resultDigits, i); --j; P._BigIntImpl__mulAdd(estimatedQuotientDigit, nyDigits, 0, resultDigits, j, yUsed0); if (resultDigits[i] < estimatedQuotientDigit) { tmpUsed = P._BigIntImpl__dlShiftDigits(nyDigits, yUsed0, j, tmpDigits); P._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); for (; --estimatedQuotientDigit, resultDigits[i] < estimatedQuotientDigit;) P._BigIntImpl__absSub(resultDigits, resultUsed1, tmpDigits, tmpUsed, resultDigits); } --i; } $._BigIntImpl__lastDividendDigits = _this._digits; $._BigIntImpl__lastDividendUsed = resultUsed; $._BigIntImpl__lastDivisorDigits = yDigits; $._BigIntImpl__lastDivisorUsed = yUsed; $._BigIntImpl____lastQuoRemDigits = resultDigits; $._BigIntImpl____lastQuoRemUsed = resultUsed1; $._BigIntImpl____lastRemUsed = yUsed0; $._BigIntImpl____lastRem_nsh = nsh; }, get$hashCode: function(_) { var hash, t2, i, combine = new P._BigIntImpl_hashCode_combine(), t1 = this._used; if (t1 === 0) return 6707; hash = this._isNegative ? 83585 : 429689; for (t2 = this._digits, i = 0; i < t1; ++i) hash = combine.call$2(hash, t2[i]); return new P._BigIntImpl_hashCode_finish().call$1(hash); }, $eq: function(_, other) { if (other == null) return false; return other instanceof P._BigIntImpl && this.compareTo$1(0, other) === 0; }, $div: function(_, other) { return C.JSNumber_methods.$div(this.toDouble$0(0), other.toDouble$0(0)); }, $lt: function(_, other) { return this.compareTo$1(0, other) < 0; }, $gt: function(_, other) { return this.compareTo$1(0, other) > 0; }, $ge: function(_, other) { return this.compareTo$1(0, other) >= 0; }, toDouble$0: function(_) { var resultBits, t2, $length, biasedExponent, readBits, i, roundUp, _this = this, _box_0 = {}, t1 = _this._used; if (t1 === 0) return 0; resultBits = new Uint8Array(8); --t1; t2 = _this._digits; $length = 16 * t1 + C.JSInt_methods.get$bitLength(t2[t1]); if ($length > 1024) return _this._isNegative ? -1 / 0 : 1 / 0; if (_this._isNegative) resultBits[7] = 128; biasedExponent = $length - 53 + 1075; resultBits[6] = (biasedExponent & 15) << 4; resultBits[7] = (resultBits[7] | C.JSInt_methods._shrOtherPositive$1(biasedExponent, 4)) >>> 0; _box_0.cachedBitsLength = _box_0.cachedBits = 0; _box_0.digitIndex = t1; readBits = new P._BigIntImpl_toDouble_readBits(_box_0, _this); t1 = readBits.call$1(5); resultBits[6] = (resultBits[6] | t1 & 15) >>> 0; for (i = 5; i >= 0; --i) resultBits[i] = readBits.call$1(8); roundUp = new P._BigIntImpl_toDouble_roundUp(resultBits); if (J.$eq$(readBits.call$1(1), 1)) if ((resultBits[0] & 1) === 1) roundUp.call$0(); else if (_box_0.cachedBits !== 0) roundUp.call$0(); else for (i = _box_0.digitIndex; i >= 0; --i) if (t2[i] !== 0) { roundUp.call$0(); break; } return H.NativeByteData_NativeByteData$view(resultBits.buffer, 0, null).getFloat64(0, true); }, toString$0: function(_) { var decimalDigitChunks, rest, t2, digits4, t3, _this = this, t1 = _this._used; if (t1 === 0) return "0"; if (t1 === 1) { if (_this._isNegative) return C.JSInt_methods.toString$0(-_this._digits[0]); return C.JSInt_methods.toString$0(_this._digits[0]); } decimalDigitChunks = H.setRuntimeTypeInfo([], type$.JSArray_String); t1 = _this._isNegative; rest = t1 ? _this.$negate(0) : _this; for (; rest._used > 1;) { t2 = $.$get$_BigIntImpl__bigInt10000(); if (t2._used === 0) H.throwExpression(C.C_IntegerDivisionByZeroException); digits4 = J.toString$0$(rest._rem$1(t2)); decimalDigitChunks.push(digits4); t3 = digits4.length; if (t3 === 1) decimalDigitChunks.push("000"); if (t3 === 2) decimalDigitChunks.push("00"); if (t3 === 3) decimalDigitChunks.push("0"); rest = rest._div$1(t2); } decimalDigitChunks.push(C.JSInt_methods.toString$0(rest._digits[0])); if (t1) decimalDigitChunks.push("-"); return new H.ReversedListIterable(decimalDigitChunks, type$.ReversedListIterable_String).join$0(0); }, $isComparable: 1 }; P._BigIntImpl_hashCode_combine.prototype = { call$2: function(hash, value) { hash = hash + value & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, $signature: 438 }; P._BigIntImpl_hashCode_finish.prototype = { call$1: function(hash) { hash = hash + ((hash & 67108863) << 3) & 536870911; hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, $signature: 177 }; P._BigIntImpl_toDouble_readBits.prototype = { call$1: function(n) { var t1, t2, t3, t4, nextDigit, nextDigitLength, result; for (t1 = this._box_0, t2 = this.$this, t3 = t2._used - 1, t2 = t2._digits; t4 = t1.cachedBitsLength, t4 < n;) { t4 = t1.digitIndex; if (t4 < 0) { t1.digitIndex = t4 - 1; nextDigit = 0; nextDigitLength = 16; } else { nextDigit = t2[t4]; nextDigitLength = t4 === t3 ? C.JSInt_methods.get$bitLength(nextDigit) : 16; --t1.digitIndex; } t1.cachedBits = C.JSInt_methods.$shl(t1.cachedBits, nextDigitLength) + nextDigit; t1.cachedBitsLength += nextDigitLength; } t2 = t1.cachedBits; t4 -= n; result = C.JSInt_methods.$shr(t2, t4); t1.cachedBits = t2 - C.JSInt_methods.$shl(result, t4); t1.cachedBitsLength = t4; return result; }, $signature: 177 }; P._BigIntImpl_toDouble_roundUp.prototype = { call$0: function() { var t1, carry, i, sum; for (t1 = this.resultBits, carry = 1, i = 0; i < 8; ++i) { if (carry === 0) break; sum = t1[i] + carry; t1[i] = sum & 255; carry = sum >>> 8; } }, $signature: 0 }; P.Comparable.prototype = {}; P.DateTime.prototype = { get$timeZoneOffset: function() { if (this.isUtc) return P.Duration$(0, 0, 0, 0, 0, 0); return P.Duration$(0, 0, 0, 0, 0 - H.Primitives_lazyAsJsDate(this).getTimezoneOffset(), 0); }, add$1: function(_, duration) { return P.DateTime$_withValue(this._value + C.JSInt_methods._tdivFast$1(duration._duration, 1000), this.isUtc); }, subtract$1: function(duration) { return P.DateTime$_withValue(this._value - C.JSInt_methods._tdivFast$1(duration._duration, 1000), this.isUtc); }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.DateTime && this._value === other._value && this.isUtc === other.isUtc; }, compareTo$1: function(_, other) { return C.JSInt_methods.compareTo$1(this._value, other._value); }, DateTime$_withValue$2$isUtc: function(_value, isUtc) { var t2, t1 = this._value; if (Math.abs(t1) <= 864e13) t2 = false; else t2 = true; if (t2) throw H.wrapException(P.ArgumentError$("DateTime is outside valid range: " + t1)); H.checkNotNullable(this.isUtc, "isUtc", type$.bool); }, get$hashCode: function(_) { var t1 = this._value; return (t1 ^ C.JSInt_methods._shrOtherPositive$1(t1, 30)) & 1073741823; }, toLocal$0: function() { if (this.isUtc) return P.DateTime$_withValue(this._value, false); return this; }, toUtc$0: function() { if (this.isUtc) return this; return P.DateTime$_withValue(this._value, true); }, toString$0: function(_) { var _this = this, y = P.DateTime__fourDigits(H.Primitives_getYear(_this)), m = P.DateTime__twoDigits(H.Primitives_getMonth(_this)), d = P.DateTime__twoDigits(H.Primitives_getDay(_this)), h = P.DateTime__twoDigits(H.Primitives_getHours(_this)), min = P.DateTime__twoDigits(H.Primitives_getMinutes(_this)), sec = P.DateTime__twoDigits(H.Primitives_getSeconds(_this)), ms = P.DateTime__threeDigits(H.Primitives_getMilliseconds(_this)); if (_this.isUtc) return y + "-" + m + "-" + d + " " + h + ":" + min + ":" + sec + "." + ms + "Z"; else return y + "-" + m + "-" + d + " " + h + ":" + min + ":" + sec + "." + ms; }, toIso8601String$0: function() { var _this = this, y = H.Primitives_getYear(_this) >= -9999 && H.Primitives_getYear(_this) <= 9999 ? P.DateTime__fourDigits(H.Primitives_getYear(_this)) : P.DateTime__sixDigits(H.Primitives_getYear(_this)), m = P.DateTime__twoDigits(H.Primitives_getMonth(_this)), d = P.DateTime__twoDigits(H.Primitives_getDay(_this)), h = P.DateTime__twoDigits(H.Primitives_getHours(_this)), min = P.DateTime__twoDigits(H.Primitives_getMinutes(_this)), sec = P.DateTime__twoDigits(H.Primitives_getSeconds(_this)), ms = P.DateTime__threeDigits(H.Primitives_getMilliseconds(_this)); if (_this.isUtc) return y + "-" + m + "-" + d + "T" + h + ":" + min + ":" + sec + "." + ms + "Z"; else return y + "-" + m + "-" + d + "T" + h + ":" + min + ":" + sec + "." + ms; }, $isComparable: 1 }; P.DateTime_parse_parseIntOrZero.prototype = { call$1: function(matched) { if (matched == null) return 0; return P.int_parse(matched, null); }, $signature: 465 }; P.DateTime_parse_parseMilliAndMicroseconds.prototype = { call$1: function(matched) { var t1, result, i; if (matched == null) return 0; for (t1 = matched.length, result = 0, i = 0; i < 6; ++i) { result *= 10; if (i < t1) result += C.JSString_methods._codeUnitAt$1(matched, i) ^ 48; } return result; }, $signature: 465 }; P.Duration.prototype = { $add: function(_, other) { return new P.Duration(this._duration + other._duration); }, $sub: function(_, other) { return new P.Duration(this._duration - other._duration); }, $mul: function(_, factor) { return new P.Duration(C.JSNumber_methods.round$0(this._duration * factor)); }, $lt: function(_, other) { return this._duration < other._duration; }, $gt: function(_, other) { return this._duration > other._duration; }, $ge: function(_, other) { return this._duration >= other._duration; }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.Duration && this._duration === other._duration; }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this._duration); }, compareTo$1: function(_, other) { return C.JSInt_methods.compareTo$1(this._duration, other._duration); }, toString$0: function(_) { var twoDigitMinutes, twoDigitSeconds, sixDigitUs, t1 = new P.Duration_toString_twoDigits(), t2 = this._duration; if (t2 < 0) return "-" + new P.Duration(0 - t2).toString$0(0); twoDigitMinutes = t1.call$1(C.JSInt_methods._tdivFast$1(t2, 60000000) % 60); twoDigitSeconds = t1.call$1(C.JSInt_methods._tdivFast$1(t2, 1000000) % 60); sixDigitUs = new P.Duration_toString_sixDigits().call$1(t2 % 1000000); return "" + C.JSInt_methods._tdivFast$1(t2, 3600000000) + ":" + H.S(twoDigitMinutes) + ":" + H.S(twoDigitSeconds) + "." + H.S(sixDigitUs); }, $isComparable: 1 }; P.Duration_toString_sixDigits.prototype = { call$1: function(n) { if (n >= 100000) return "" + n; if (n >= 10000) return "0" + n; if (n >= 1000) return "00" + n; if (n >= 100) return "000" + n; if (n >= 10) return "0000" + n; return "00000" + n; }, $signature: 246 }; P.Duration_toString_twoDigits.prototype = { call$1: function(n) { if (n >= 10) return "" + n; return "0" + n; }, $signature: 246 }; P.Error.prototype = { get$stackTrace: function() { return H.getTraceFromException(this.$thrownJsError); } }; P.AssertionError.prototype = { toString$0: function(_) { var t1 = this.message; if (t1 != null) return "Assertion failed: " + P.Error_safeToString(t1); return "Assertion failed"; }, get$message: function(receiver) { return this.message; } }; P.TypeError.prototype = {}; P.NullThrownError.prototype = { toString$0: function(_) { return "Throw of null."; } }; P.ArgumentError.prototype = { get$_errorName: function() { return "Invalid argument" + (!this._hasValue ? "(s)" : ""); }, get$_errorExplanation: function() { return ""; }, toString$0: function(_) { var explanation, errorValue, _this = this, $name = _this.name, nameString = $name == null ? "" : " (" + $name + ")", message = _this.message, messageString = message == null ? "" : ": " + H.S(message), prefix = _this.get$_errorName() + nameString + messageString; if (!_this._hasValue) return prefix; explanation = _this.get$_errorExplanation(); errorValue = P.Error_safeToString(_this.invalidValue); return prefix + explanation + ": " + errorValue; }, get$name: function(receiver) { return this.name; } }; P.RangeError.prototype = { get$_errorName: function() { return "RangeError"; }, get$_errorExplanation: function() { var explanation, start = this.start, end = this.end; if (start == null) explanation = end != null ? ": Not less than or equal to " + H.S(end) : ""; else if (end == null) explanation = ": Not greater than or equal to " + H.S(start); else if (end > start) explanation = ": Not in inclusive range " + H.S(start) + ".." + H.S(end); else explanation = end < start ? ": Valid value range is empty" : ": Only valid value is " + H.S(start); return explanation; } }; P.IndexError.prototype = { get$_errorName: function() { return "RangeError"; }, get$_errorExplanation: function() { if (this.invalidValue < 0) return ": index must not be negative"; var t1 = this.length; if (t1 === 0) return ": no indices are valid"; return ": index should be less than " + H.S(t1); }, get$length: function(receiver) { return this.length; } }; P.NoSuchMethodError.prototype = { toString$0: function(_) { var $arguments, t1, _i, t2, t3, argument, receiverText, actualParameters, _this = this, _box_0 = {}, sb = new P.StringBuffer(""); _box_0.comma = ""; $arguments = _this._core$_arguments; for (t1 = $arguments.length, _i = 0, t2 = "", t3 = ""; _i < t1; ++_i, t3 = ", ") { argument = $arguments[_i]; sb._contents = t2 + t3; t2 = sb._contents += P.Error_safeToString(argument); _box_0.comma = ", "; } _this._namedArguments.forEach$1(0, new P.NoSuchMethodError_toString_closure(_box_0, sb)); receiverText = P.Error_safeToString(_this._core$_receiver); actualParameters = sb.toString$0(0); t1 = "NoSuchMethodError: method not found: '" + H.S(_this._memberName.__internal$_name) + "'\nReceiver: " + receiverText + "\nArguments: [" + actualParameters + "]"; return t1; } }; P.UnsupportedError.prototype = { toString$0: function(_) { return "Unsupported operation: " + this.message; } }; P.UnimplementedError.prototype = { toString$0: function(_) { var message = this.message; return message != null ? "UnimplementedError: " + message : "UnimplementedError"; } }; P.StateError.prototype = { toString$0: function(_) { return "Bad state: " + this.message; } }; P.ConcurrentModificationError.prototype = { toString$0: function(_) { var t1 = this.modifiedObject; if (t1 == null) return "Concurrent modification during iteration."; return "Concurrent modification during iteration: " + P.Error_safeToString(t1) + "."; } }; P.OutOfMemoryError.prototype = { toString$0: function(_) { return "Out of Memory"; }, get$stackTrace: function() { return null; }, $isError: 1 }; P.StackOverflowError.prototype = { toString$0: function(_) { return "Stack Overflow"; }, get$stackTrace: function() { return null; }, $isError: 1 }; P.CyclicInitializationError.prototype = { toString$0: function(_) { var variableName = this.variableName; return variableName == null ? "Reading static variable during its initialization" : "Reading static variable '" + variableName + "' during its initialization"; } }; P._Exception.prototype = { toString$0: function(_) { var message = this.message; if (message == null) return "Exception"; return "Exception: " + H.S(message); }, $isException: 1 }; P.FormatException.prototype = { toString$0: function(_) { var t1, lineNum, lineStart, previousCharWasCR, i, char, lineEnd, end, start, prefix, postfix, slice, message = this.message, report = message != null && "" !== message ? "FormatException: " + H.S(message) : "FormatException", offset = this.offset, source = this.source; if (typeof source == "string") { if (offset != null) t1 = offset < 0 || offset > source.length; else t1 = false; if (t1) offset = null; if (offset == null) { if (source.length > 78) source = C.JSString_methods.substring$2(source, 0, 75) + "..."; return report + "\n" + source; } for (lineNum = 1, lineStart = 0, previousCharWasCR = false, i = 0; i < offset; ++i) { char = C.JSString_methods._codeUnitAt$1(source, i); if (char === 10) { if (lineStart !== i || !previousCharWasCR) ++lineNum; lineStart = i + 1; previousCharWasCR = false; } else if (char === 13) { ++lineNum; lineStart = i + 1; previousCharWasCR = true; } } report = lineNum > 1 ? report + (" (at line " + lineNum + ", character " + (offset - lineStart + 1) + ")\n") : report + (" (at character " + (offset + 1) + ")\n"); lineEnd = source.length; for (i = offset; i < lineEnd; ++i) { char = C.JSString_methods.codeUnitAt$1(source, i); if (char === 10 || char === 13) { lineEnd = i; break; } } if (lineEnd - lineStart > 78) if (offset - lineStart < 75) { end = lineStart + 75; start = lineStart; prefix = ""; postfix = "..."; } else { if (lineEnd - offset < 75) { start = lineEnd - 75; end = lineEnd; postfix = ""; } else { start = offset - 36; end = offset + 36; postfix = "..."; } prefix = "..."; } else { end = lineEnd; start = lineStart; prefix = ""; postfix = ""; } slice = C.JSString_methods.substring$2(source, start, end); return report + prefix + slice + postfix + "\n" + C.JSString_methods.$mul(" ", offset - start + prefix.length) + "^\n"; } else return offset != null ? report + (" (at offset " + H.S(offset) + ")") : report; }, $isException: 1, get$message: function(receiver) { return this.message; }, get$source: function(receiver) { return this.source; }, get$offset: function(receiver) { return this.offset; } }; P.IntegerDivisionByZeroException.prototype = { toString$0: function(_) { return "IntegerDivisionByZeroException"; }, $isException: 1 }; P.Expando.prototype = { $index: function(_, object) { var t2, values, t1 = this._jsWeakMapOrKey; if (typeof t1 != "string") { if (object != null) t2 = typeof object == "number" || typeof object == "string"; else t2 = true; if (t2) H.throwExpression(P.ArgumentError$value(object, "Expandos are not allowed on strings, numbers, booleans or null", null)); return t1.get(object); } values = H.Primitives_getProperty(object, "expando$values"); t1 = values == null ? null : H.Primitives_getProperty(values, t1); return this.$ti._eval$1("1?")._as(t1); }, $indexSet: function(_, object, value) { var values, _s14_ = "expando$values", t1 = this._jsWeakMapOrKey; if (typeof t1 != "string") t1.set(object, value); else { values = H.Primitives_getProperty(object, _s14_); if (values == null) { values = new P.Object(); H.Primitives_setProperty(object, _s14_, values); } H.Primitives_setProperty(values, t1, value); } }, toString$0: function(_) { return "Expando:null"; }, get$name: function() { return null; } }; P.Iterable.prototype = { cast$1$0: function(_, $R) { return H.CastIterable_CastIterable(this, H._instanceType(this)._eval$1("Iterable.E"), $R); }, followedBy$1: function(_, other) { var _this = this, t1 = H._instanceType(_this); if (t1._eval$1("EfficientLengthIterable")._is(_this)) return H.FollowedByIterable_FollowedByIterable$firstEfficient(_this, other, t1._eval$1("Iterable.E")); return new H.FollowedByIterable(_this, other, t1._eval$1("FollowedByIterable")); }, map$1$1: function(_, f, $T) { return H.MappedIterable_MappedIterable(this, f, H._instanceType(this)._eval$1("Iterable.E"), $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1: function(_, test) { return new H.WhereIterable(this, test, H._instanceType(this)._eval$1("WhereIterable")); }, contains$1: function(_, element) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (J.$eq$(t1.get$current(t1), element)) return true; return false; }, forEach$1: function(_, f) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) f.call$1(t1.get$current(t1)); }, reduce$1: function(_, combine) { var value, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); value = iterator.get$current(iterator); for (; iterator.moveNext$0();) value = combine.call$2(value, iterator.get$current(iterator)); return value; }, fold$1$2: function(_, initialValue, combine) { var t1, value; for (t1 = this.get$iterator(this), value = initialValue; t1.moveNext$0();) value = combine.call$2(value, t1.get$current(t1)); return value; }, join$1: function(_, separator) { var t1, iterator = this.get$iterator(this); if (!iterator.moveNext$0()) return ""; if (separator === "") { t1 = ""; do t1 += H.S(J.toString$0$(iterator.get$current(iterator))); while (iterator.moveNext$0()); } else { t1 = H.S(J.toString$0$(iterator.get$current(iterator))); for (; iterator.moveNext$0();) t1 = t1 + separator + H.S(J.toString$0$(iterator.get$current(iterator))); } return t1.charCodeAt(0) == 0 ? t1 : t1; }, join$0: function($receiver) { return this.join$1($receiver, ""); }, any$1: function(_, test) { var t1; for (t1 = this.get$iterator(this); t1.moveNext$0();) if (test.call$1(t1.get$current(t1))) return true; return false; }, toList$1$growable: function(_, growable) { return P.List_List$of(this, growable, H._instanceType(this)._eval$1("Iterable.E")); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return P.LinkedHashSet_LinkedHashSet$of(this, H._instanceType(this)._eval$1("Iterable.E")); }, get$length: function(_) { var count, it = this.get$iterator(this); for (count = 0; it.moveNext$0();) ++count; return count; }, get$isEmpty: function(_) { return !this.get$iterator(this).moveNext$0(); }, get$isNotEmpty: function(_) { return !this.get$isEmpty(this); }, take$1: function(_, count) { return H.TakeIterable_TakeIterable(this, count, H._instanceType(this)._eval$1("Iterable.E")); }, skip$1: function(_, count) { return H.SkipIterable_SkipIterable(this, count, H._instanceType(this)._eval$1("Iterable.E")); }, get$first: function(_) { var it = this.get$iterator(this); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); return it.get$current(it); }, get$last: function(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); do result = it.get$current(it); while (it.moveNext$0()); return result; }, get$single: function(_) { var result, it = this.get$iterator(this); if (!it.moveNext$0()) throw H.wrapException(H.IterableElementError_noElement()); result = it.get$current(it); if (it.moveNext$0()) throw H.wrapException(H.IterableElementError_tooMany()); return result; }, firstWhere$2$orElse: function(_, test, orElse) { var t1, element; for (t1 = this.get$iterator(this); t1.moveNext$0();) { element = t1.get$current(t1); if (test.call$1(element)) return element; } if (orElse != null) return orElse.call$0(); throw H.wrapException(H.IterableElementError_noElement()); }, elementAt$1: function(_, index) { var t1, elementIndex, element; P.RangeError_checkNotNegative(index, "index"); for (t1 = this.get$iterator(this), elementIndex = 0; t1.moveNext$0();) { element = t1.get$current(t1); if (index === elementIndex) return element; ++elementIndex; } throw H.wrapException(P.IndexError$(index, this, "index", null, elementIndex)); }, toString$0: function(_) { return P.IterableBase_iterableToShortString(this, "(", ")"); } }; P._GeneratorIterable.prototype = { elementAt$1: function(_, index) { P.RangeError_checkValidIndex(index, this, null, null); return this._generator.call$1(index); }, get$length: function(receiver) { return this.length; } }; P.Iterator.prototype = {}; P.MapEntry.prototype = { toString$0: function(_) { return "MapEntry(" + H.S(this.key) + ": " + H.S(this.value) + ")"; }, get$key: function(receiver) { return this.key; }, get$value: function(receiver) { return this.value; } }; P.Null.prototype = { get$hashCode: function(_) { return P.Object.prototype.get$hashCode.call(C.JSNull_methods, this); }, toString$0: function(_) { return "null"; } }; P.Object.prototype = {constructor: P.Object, $isObject: 1, $eq: function(_, other) { return this === other; }, get$hashCode: function(_) { return H.Primitives_objectHashCode(this); }, toString$0: function(_) { return "Instance of '" + H.S(H.Primitives_objectTypeName(this)) + "'"; }, noSuchMethod$1: function(_, invocation) { throw H.wrapException(P.NoSuchMethodError$(this, invocation.get$memberName(), invocation.get$positionalArguments(), invocation.get$namedArguments())); }, get$runtimeType: function(_) { return H.getRuntimeType(this); }, toString: function() { return this.toString$0(this); } }; P._StringStackTrace.prototype = { toString$0: function(_) { return this._stackTrace; }, $isStackTrace: 1 }; P.Stopwatch.prototype = { get$elapsedMicroseconds: function() { var ticks = this.get$elapsedTicks(); if ($.$get$Stopwatch__frequency() === 1000000) return ticks; return ticks * 1000; }, start$0: function(_) { var _this = this, $stop = _this._stop; if ($stop != null) { _this._core$_start = _this._core$_start + ($.Primitives_timerTicks.call$0() - $stop); _this._stop = null; } }, reset$0: function(_) { var t1 = this._stop; this._core$_start = t1 == null ? $.Primitives_timerTicks.call$0() : t1; }, get$elapsedTicks: function() { var t1 = this._stop; if (t1 == null) t1 = $.Primitives_timerTicks.call$0(); return t1 - this._core$_start; } }; P.Runes.prototype = { get$iterator: function(_) { return new P.RuneIterator(this.string); }, get$last: function(_) { var code, previousCode, t1 = this.string, t2 = t1.length; if (t2 === 0) throw H.wrapException(P.StateError$("No elements.")); code = C.JSString_methods.codeUnitAt$1(t1, t2 - 1); if ((code & 64512) === 56320 && t2 > 1) { previousCode = C.JSString_methods.codeUnitAt$1(t1, t2 - 2); if ((previousCode & 64512) === 55296) return P._combineSurrogatePair(previousCode, code); } return code; } }; P.RuneIterator.prototype = { get$current: function(_) { return this._currentCodePoint; }, moveNext$0: function() { var codeUnit, nextPosition, nextCodeUnit, _this = this, t1 = _this._core$_position = _this._nextPosition, t2 = _this.string, t3 = t2.length; if (t1 === t3) { _this._currentCodePoint = -1; return false; } codeUnit = C.JSString_methods._codeUnitAt$1(t2, t1); nextPosition = t1 + 1; if ((codeUnit & 64512) === 55296 && nextPosition < t3) { nextCodeUnit = C.JSString_methods._codeUnitAt$1(t2, nextPosition); if ((nextCodeUnit & 64512) === 56320) { _this._nextPosition = nextPosition + 1; _this._currentCodePoint = P._combineSurrogatePair(codeUnit, nextCodeUnit); return true; } } _this._nextPosition = nextPosition; _this._currentCodePoint = codeUnit; return true; } }; P.StringBuffer.prototype = { get$length: function(_) { return this._contents.length; }, write$1: function(_, obj) { this._contents += H.S(obj); }, writeCharCode$1: function(charCode) { this._contents += H.Primitives_stringFromCharCode(charCode); }, toString$0: function(_) { var t1 = this._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, get$isEmpty: function(_) { return this._contents.length === 0; } }; P.Uri__parseIPv4Address_error.prototype = { call$2: function(msg, position) { throw H.wrapException(P.FormatException$("Illegal IPv4 address, " + msg, this.host, position)); }, $signature: 2779 }; P.Uri_parseIPv6Address_error.prototype = { call$2: function(msg, position) { throw H.wrapException(P.FormatException$("Illegal IPv6 address, " + msg, this.host, position)); }, call$1: function(msg) { return this.call$2(msg, null); }, $signature: 2678 }; P.Uri_parseIPv6Address_parseHex.prototype = { call$2: function(start, end) { var value; if (end - start > 4) this.error.call$2("an IPv6 part can only contain a maximum of 4 hex digits", start); value = P.int_parse(C.JSString_methods.substring$2(this.host, start, end), 16); if (value < 0 || value > 65535) this.error.call$2("each part must be in the range of `0x0..0xFFFF`", start); return value; }, $signature: 438 }; P._Uri.prototype = { get$_text: function() { var t2, t3, t4, _this = this, t1 = _this.___Uri__text; if (t1 === $) { t1 = _this.scheme; t2 = t1.length !== 0 ? t1 + ":" : ""; t3 = _this._host; t4 = t3 == null; if (!t4 || t1 === "file") { t1 = t2 + "//"; t2 = _this._userInfo; if (t2.length !== 0) t1 = t1 + t2 + "@"; if (!t4) t1 += t3; t2 = _this._port; if (t2 != null) t1 = t1 + ":" + H.S(t2); } else t1 = t2; t1 += _this.path; t2 = _this._query; if (t2 != null) t1 = t1 + "?" + t2; t2 = _this._fragment; if (t2 != null) t1 = t1 + "#" + t2; t1 = t1.charCodeAt(0) == 0 ? t1 : t1; if (_this.___Uri__text === $) _this.___Uri__text = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_text")); } return t1; }, get$pathSegments: function() { var pathToSplit, _this = this, t1 = _this.___Uri_pathSegments; if (t1 === $) { pathToSplit = _this.path; if (pathToSplit.length !== 0 && C.JSString_methods._codeUnitAt$1(pathToSplit, 0) === 47) pathToSplit = C.JSString_methods.substring$1(pathToSplit, 1); t1 = pathToSplit.length === 0 ? C.List_empty1 : P.List_List$unmodifiable(new H.MappedListIterable(H.setRuntimeTypeInfo(pathToSplit.split("/"), type$.JSArray_String), P.core_Uri_decodeComponent$closure(), type$.MappedListIterable_String_dynamic), type$.String); if (_this.___Uri_pathSegments === $) _this.___Uri_pathSegments = t1; else t1 = H.throwExpression(H.LateError$fieldADI("pathSegments")); } return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.___Uri_hashCode; if (t1 === $) { t1 = J.get$hashCode$(_this.get$_text()); if (_this.___Uri_hashCode === $) _this.___Uri_hashCode = t1; else t1 = H.throwExpression(H.LateError$fieldADI("hashCode")); } return t1; }, get$userInfo: function() { return this._userInfo; }, get$host: function(_) { var host = this._host; if (host == null) return ""; if (C.JSString_methods.startsWith$1(host, "[")) return C.JSString_methods.substring$2(host, 1, host.length - 1); return host; }, get$port: function(_) { var t1 = this._port; return t1 == null ? P._Uri__defaultPort(this.scheme) : t1; }, get$query: function(_) { var t1 = this._query; return t1 == null ? "" : t1; }, get$fragment: function() { var t1 = this._fragment; return t1 == null ? "" : t1; }, isScheme$1: function(scheme) { var thisScheme = this.scheme; if (scheme.length !== thisScheme.length) return false; return P._Uri__compareScheme(scheme, thisScheme); }, _mergePaths$2: function(base, reference) { var backCount, refStart, baseEnd, newEnd, delta, t1; for (backCount = 0, refStart = 0; C.JSString_methods.startsWith$2(reference, "../", refStart);) { refStart += 3; ++backCount; } baseEnd = C.JSString_methods.lastIndexOf$1(base, "/"); while (true) { if (!(baseEnd > 0 && backCount > 0)) break; newEnd = C.JSString_methods.lastIndexOf$2(base, "/", baseEnd - 1); if (newEnd < 0) break; delta = baseEnd - newEnd; t1 = delta !== 2; if (!t1 || delta === 3) if (C.JSString_methods.codeUnitAt$1(base, newEnd + 1) === 46) t1 = !t1 || C.JSString_methods.codeUnitAt$1(base, newEnd + 2) === 46; else t1 = false; else t1 = false; if (t1) break; --backCount; baseEnd = newEnd; } return C.JSString_methods.replaceRange$3(base, baseEnd + 1, null, C.JSString_methods.substring$1(reference, refStart - 3 * backCount)); }, resolve$1: function(reference) { return this.resolveUri$1(P.Uri_parse(reference, 0, null)); }, resolveUri$1: function(reference) { var targetScheme, targetUserInfo, targetHost, targetPort, targetPath, targetQuery, packageNameEnd, packageName, mergedPath, t1, _this = this, _null = null; if (reference.get$scheme().length !== 0) { targetScheme = reference.get$scheme(); if (reference.get$hasAuthority()) { targetUserInfo = reference.get$userInfo(); targetHost = reference.get$host(reference); targetPort = reference.get$hasPort() ? reference.get$port(reference) : _null; } else { targetPort = _null; targetHost = targetPort; targetUserInfo = ""; } targetPath = P._Uri__removeDotSegments(reference.get$path(reference)); targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } else { targetScheme = _this.scheme; if (reference.get$hasAuthority()) { targetUserInfo = reference.get$userInfo(); targetHost = reference.get$host(reference); targetPort = P._Uri__makePort(reference.get$hasPort() ? reference.get$port(reference) : _null, targetScheme); targetPath = P._Uri__removeDotSegments(reference.get$path(reference)); targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } else { targetUserInfo = _this._userInfo; targetHost = _this._host; targetPort = _this._port; targetPath = _this.path; if (reference.get$path(reference) === "") targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _this._query; else { packageNameEnd = P._Uri__packageNameEnd(_this, targetPath); if (packageNameEnd > 0) { packageName = C.JSString_methods.substring$2(targetPath, 0, packageNameEnd); targetPath = reference.get$hasAbsolutePath() ? packageName + P._Uri__removeDotSegments(reference.get$path(reference)) : packageName + P._Uri__removeDotSegments(_this._mergePaths$2(C.JSString_methods.substring$1(targetPath, packageName.length), reference.get$path(reference))); } else if (reference.get$hasAbsolutePath()) targetPath = P._Uri__removeDotSegments(reference.get$path(reference)); else if (targetPath.length === 0) if (targetHost == null) targetPath = targetScheme.length === 0 ? reference.get$path(reference) : P._Uri__removeDotSegments(reference.get$path(reference)); else targetPath = P._Uri__removeDotSegments("/" + reference.get$path(reference)); else { mergedPath = _this._mergePaths$2(targetPath, reference.get$path(reference)); t1 = targetScheme.length === 0; if (!t1 || targetHost != null || C.JSString_methods.startsWith$1(targetPath, "/")) targetPath = P._Uri__removeDotSegments(mergedPath); else targetPath = P._Uri__normalizeRelativePath(mergedPath, !t1 || targetHost != null); } targetQuery = reference.get$hasQuery() ? reference.get$query(reference) : _null; } } } return P._Uri$_internal(targetScheme, targetUserInfo, targetHost, targetPort, targetPath, targetQuery, reference.get$hasFragment() ? reference.get$fragment() : _null); }, get$hasScheme: function() { return this.scheme.length !== 0; }, get$hasAuthority: function() { return this._host != null; }, get$hasPort: function() { return this._port != null; }, get$hasQuery: function() { return this._query != null; }, get$hasFragment: function() { return this._fragment != null; }, get$hasAbsolutePath: function() { return C.JSString_methods.startsWith$1(this.path, "/"); }, toFilePath$0: function() { var pathSegments, _this = this, t1 = _this.scheme; if (t1 !== "" && t1 !== "file") throw H.wrapException(P.UnsupportedError$("Cannot extract a file path from a " + t1 + " URI")); t1 = _this._query; if ((t1 == null ? "" : t1) !== "") throw H.wrapException(P.UnsupportedError$(string$.Cannotefq)); t1 = _this._fragment; if ((t1 == null ? "" : t1) !== "") throw H.wrapException(P.UnsupportedError$(string$.Cannoteff)); t1 = $.$get$_Uri__isWindowsCached(); if (t1) t1 = P._Uri__toWindowsFilePath(_this); else { if (_this._host != null && _this.get$host(_this) !== "") H.throwExpression(P.UnsupportedError$(string$.Cannoten)); pathSegments = _this.get$pathSegments(); P._Uri__checkNonWindowsPathReservedCharacters(pathSegments, false); t1 = P.StringBuffer__writeAll(C.JSString_methods.startsWith$1(_this.path, "/") ? "/" : "", pathSegments, "/"); t1 = t1.charCodeAt(0) == 0 ? t1 : t1; } return t1; }, toString$0: function(_) { return this.get$_text(); }, $eq: function(_, other) { var t1, t2, _this = this; if (other == null) return false; if (_this === other) return true; if (type$.Uri._is(other)) if (_this.scheme === other.get$scheme()) if (_this._host != null === other.get$hasAuthority()) if (_this._userInfo === other.get$userInfo()) if (_this.get$host(_this) === other.get$host(other)) if (_this.get$port(_this) === other.get$port(other)) if (_this.path === other.get$path(other)) { t1 = _this._query; t2 = t1 == null; if (!t2 === other.get$hasQuery()) { if (t2) t1 = ""; if (t1 === other.get$query(other)) { t1 = _this._fragment; t2 = t1 == null; if (!t2 === other.get$hasFragment()) { if (t2) t1 = ""; t1 = t1 === other.get$fragment(); } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, $isUri: 1, get$scheme: function() { return this.scheme; }, get$path: function(receiver) { return this.path; } }; P._Uri__makePath_closure.prototype = { call$1: function(s) { return P._Uri__uriEncode(C.List_qg40, s, C.C_Utf8Codec, false); }, $signature: 101 }; P._Uri__makeQuery_writeParameter.prototype = { call$2: function(key, value) { var t1 = this.result, t2 = this._box_0; t1._contents += t2.separator; t2.separator = "&"; t2 = t1._contents += H.S(P._Uri__uriEncode(C.List_nxB, key, C.C_Utf8Codec, true)); if (value != null && value.length !== 0) { t1._contents = t2 + "="; t1._contents += H.S(P._Uri__uriEncode(C.List_nxB, value, C.C_Utf8Codec, true)); } }, $signature: 597 }; P._Uri__makeQuery_closure.prototype = { call$2: function(key, value) { var t1, t2; if (value == null || typeof value == "string") this.writeParameter.call$2(key, value); else for (t1 = J.get$iterator$ax(value), t2 = this.writeParameter; t1.moveNext$0();) t2.call$2(key, t1.get$current(t1)); }, $signature: 107 }; P.UriData.prototype = { get$uri: function() { var t2, queryIndex, end, query, _this = this, _null = null, t1 = _this._uriCache; if (t1 == null) { t1 = _this._text; t2 = _this._separatorIndices[0] + 1; queryIndex = C.JSString_methods.indexOf$2(t1, "?", t2); end = t1.length; if (queryIndex >= 0) { query = P._Uri__normalizeOrSubstring(t1, queryIndex + 1, end, C.List_CVk, false); end = queryIndex; } else query = _null; t1 = _this._uriCache = new P._DataUri("data", "", _null, _null, P._Uri__normalizeOrSubstring(t1, t2, end, C.List_qg4, false), query, _null); } return t1; }, toString$0: function(_) { var t1 = this._text; return this._separatorIndices[0] === -1 ? "data:" + t1 : t1; } }; P._createTables_build.prototype = { call$2: function(state, defaultTransition) { var t1 = this.tables[state]; C.NativeUint8List_methods.fillRange$3(t1, 0, 96, defaultTransition); return t1; }, $signature: 2545 }; P._createTables_setChars.prototype = { call$3: function(target, chars, transition) { var t1, i; for (t1 = chars.length, i = 0; i < t1; ++i) target[C.JSString_methods._codeUnitAt$1(chars, i) ^ 96] = transition; }, $signature: 467 }; P._createTables_setRange.prototype = { call$3: function(target, range, transition) { var i, n; for (i = C.JSString_methods._codeUnitAt$1(range, 0), n = C.JSString_methods._codeUnitAt$1(range, 1); i <= n; ++i) target[(i ^ 96) >>> 0] = transition; }, $signature: 467 }; P._SimpleUri.prototype = { get$hasScheme: function() { return this._schemeEnd > 0; }, get$hasAuthority: function() { return this._hostStart > 0; }, get$hasPort: function() { return this._hostStart > 0 && this._portStart + 1 < this._pathStart; }, get$hasQuery: function() { return this._queryStart < this._fragmentStart; }, get$hasFragment: function() { return this._fragmentStart < this._uri.length; }, get$hasAbsolutePath: function() { return C.JSString_methods.startsWith$2(this._uri, "/", this._pathStart); }, get$scheme: function() { var t1 = this._schemeCache; return t1 == null ? this._schemeCache = this._computeScheme$0() : t1; }, _computeScheme$0: function() { var t2, _this = this, t1 = _this._schemeEnd; if (t1 <= 0) return ""; t2 = t1 === 4; if (t2 && C.JSString_methods.startsWith$1(_this._uri, "http")) return "http"; if (t1 === 5 && C.JSString_methods.startsWith$1(_this._uri, "https")) return "https"; if (t2 && C.JSString_methods.startsWith$1(_this._uri, "file")) return "file"; if (t1 === 7 && C.JSString_methods.startsWith$1(_this._uri, "package")) return "package"; return C.JSString_methods.substring$2(_this._uri, 0, t1); }, get$userInfo: function() { var t1 = this._hostStart, t2 = this._schemeEnd + 3; return t1 > t2 ? C.JSString_methods.substring$2(this._uri, t2, t1 - 1) : ""; }, get$host: function(_) { var t1 = this._hostStart; return t1 > 0 ? C.JSString_methods.substring$2(this._uri, t1, this._portStart) : ""; }, get$port: function(_) { var t1, _this = this; if (_this.get$hasPort()) return P.int_parse(C.JSString_methods.substring$2(_this._uri, _this._portStart + 1, _this._pathStart), null); t1 = _this._schemeEnd; if (t1 === 4 && C.JSString_methods.startsWith$1(_this._uri, "http")) return 80; if (t1 === 5 && C.JSString_methods.startsWith$1(_this._uri, "https")) return 443; return 0; }, get$path: function(_) { return C.JSString_methods.substring$2(this._uri, this._pathStart, this._queryStart); }, get$query: function(_) { var t1 = this._queryStart, t2 = this._fragmentStart; return t1 < t2 ? C.JSString_methods.substring$2(this._uri, t1 + 1, t2) : ""; }, get$fragment: function() { var t1 = this._fragmentStart, t2 = this._uri; return t1 < t2.length ? C.JSString_methods.substring$1(t2, t1 + 1) : ""; }, get$pathSegments: function() { var parts, i, start = this._pathStart, end = this._queryStart, t1 = this._uri; if (C.JSString_methods.startsWith$2(t1, "/", start)) ++start; if (start === end) return C.List_empty1; parts = H.setRuntimeTypeInfo([], type$.JSArray_String); for (i = start; i < end; ++i) if (C.JSString_methods.codeUnitAt$1(t1, i) === 47) { parts.push(C.JSString_methods.substring$2(t1, start, i)); start = i + 1; } parts.push(C.JSString_methods.substring$2(t1, start, end)); return P.List_List$unmodifiable(parts, type$.String); }, _isPort$1: function(port) { var portDigitStart = this._portStart + 1; return portDigitStart + port.length === this._pathStart && C.JSString_methods.startsWith$2(this._uri, port, portDigitStart); }, removeFragment$0: function() { var _this = this, t1 = _this._fragmentStart, t2 = _this._uri; if (t1 >= t2.length) return _this; return new P._SimpleUri(C.JSString_methods.substring$2(t2, 0, t1), _this._schemeEnd, _this._hostStart, _this._portStart, _this._pathStart, _this._queryStart, t1, _this._schemeCache); }, resolve$1: function(reference) { return this.resolveUri$1(P.Uri_parse(reference, 0, null)); }, resolveUri$1: function(reference) { if (reference instanceof P._SimpleUri) return this._simpleMerge$2(this, reference); return this._toNonSimple$0().resolveUri$1(reference); }, _simpleMerge$2: function(base, ref) { var t2, t3, t4, isSimple, delta, refStart, basePathStart, packageNameEnd, basePathStart0, baseStart, baseEnd, baseUri, baseStart0, backCount, refStart0, insert, t1 = ref._schemeEnd; if (t1 > 0) return ref; t2 = ref._hostStart; if (t2 > 0) { t3 = base._schemeEnd; if (t3 <= 0) return ref; t4 = t3 === 4; if (t4 && C.JSString_methods.startsWith$1(base._uri, "file")) isSimple = ref._pathStart !== ref._queryStart; else if (t4 && C.JSString_methods.startsWith$1(base._uri, "http")) isSimple = !ref._isPort$1("80"); else isSimple = !(t3 === 5 && C.JSString_methods.startsWith$1(base._uri, "https")) || !ref._isPort$1("443"); if (isSimple) { delta = t3 + 1; return new P._SimpleUri(C.JSString_methods.substring$2(base._uri, 0, delta) + C.JSString_methods.substring$1(ref._uri, t1 + 1), t3, t2 + delta, ref._portStart + delta, ref._pathStart + delta, ref._queryStart + delta, ref._fragmentStart + delta, base._schemeCache); } else return this._toNonSimple$0().resolveUri$1(ref); } refStart = ref._pathStart; t1 = ref._queryStart; if (refStart === t1) { t2 = ref._fragmentStart; if (t1 < t2) { t3 = base._queryStart; delta = t3 - t1; return new P._SimpleUri(C.JSString_methods.substring$2(base._uri, 0, t3) + C.JSString_methods.substring$1(ref._uri, t1), base._schemeEnd, base._hostStart, base._portStart, base._pathStart, t1 + delta, t2 + delta, base._schemeCache); } t1 = ref._uri; if (t2 < t1.length) { t3 = base._fragmentStart; return new P._SimpleUri(C.JSString_methods.substring$2(base._uri, 0, t3) + C.JSString_methods.substring$1(t1, t2), base._schemeEnd, base._hostStart, base._portStart, base._pathStart, base._queryStart, t2 + (t3 - t2), base._schemeCache); } return base.removeFragment$0(); } t2 = ref._uri; if (C.JSString_methods.startsWith$2(t2, "/", refStart)) { basePathStart = base._pathStart; packageNameEnd = P._SimpleUri__packageNameEnd(this); basePathStart0 = packageNameEnd > 0 ? packageNameEnd : basePathStart; delta = basePathStart0 - refStart; return new P._SimpleUri(C.JSString_methods.substring$2(base._uri, 0, basePathStart0) + C.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, basePathStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); } baseStart = base._pathStart; baseEnd = base._queryStart; if (baseStart === baseEnd && base._hostStart > 0) { for (; C.JSString_methods.startsWith$2(t2, "../", refStart);) refStart += 3; delta = baseStart - refStart + 1; return new P._SimpleUri(C.JSString_methods.substring$2(base._uri, 0, baseStart) + "/" + C.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, baseStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); } baseUri = base._uri; packageNameEnd = P._SimpleUri__packageNameEnd(this); if (packageNameEnd >= 0) baseStart0 = packageNameEnd; else for (baseStart0 = baseStart; C.JSString_methods.startsWith$2(baseUri, "../", baseStart0);) baseStart0 += 3; backCount = 0; while (true) { refStart0 = refStart + 3; if (!(refStart0 <= t1 && C.JSString_methods.startsWith$2(t2, "../", refStart))) break; ++backCount; refStart = refStart0; } for (insert = ""; baseEnd > baseStart0;) { --baseEnd; if (C.JSString_methods.codeUnitAt$1(baseUri, baseEnd) === 47) { if (backCount === 0) { insert = "/"; break; } --backCount; insert = "/"; } } if (baseEnd === baseStart0 && base._schemeEnd <= 0 && !C.JSString_methods.startsWith$2(baseUri, "/", baseStart)) { refStart -= backCount * 3; insert = ""; } delta = baseEnd - refStart + insert.length; return new P._SimpleUri(C.JSString_methods.substring$2(baseUri, 0, baseEnd) + insert + C.JSString_methods.substring$1(t2, refStart), base._schemeEnd, base._hostStart, base._portStart, baseStart, t1 + delta, ref._fragmentStart + delta, base._schemeCache); }, toFilePath$0: function() { var t2, t3, _this = this, t1 = _this._schemeEnd; if (t1 >= 0) { t2 = !(t1 === 4 && C.JSString_methods.startsWith$1(_this._uri, "file")); t1 = t2; } else t1 = false; if (t1) throw H.wrapException(P.UnsupportedError$("Cannot extract a file path from a " + _this.get$scheme() + " URI")); t1 = _this._queryStart; t2 = _this._uri; if (t1 < t2.length) { if (t1 < _this._fragmentStart) throw H.wrapException(P.UnsupportedError$(string$.Cannotefq)); throw H.wrapException(P.UnsupportedError$(string$.Cannoteff)); } t3 = $.$get$_Uri__isWindowsCached(); if (t3) t1 = P._Uri__toWindowsFilePath(_this); else { if (_this._hostStart < _this._portStart) H.throwExpression(P.UnsupportedError$(string$.Cannoten)); t1 = C.JSString_methods.substring$2(t2, _this._pathStart, t1); } return t1; }, get$hashCode: function(_) { var t1 = this._hashCodeCache; return t1 == null ? this._hashCodeCache = C.JSString_methods.get$hashCode(this._uri) : t1; }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return type$.Uri._is(other) && this._uri === other.toString$0(0); }, _toNonSimple$0: function() { var _this = this, _null = null, t1 = _this.get$scheme(), t2 = _this.get$userInfo(), t3 = _this._hostStart > 0 ? _this.get$host(_this) : _null, t4 = _this.get$hasPort() ? _this.get$port(_this) : _null, t5 = _this._uri, t6 = _this._queryStart, t7 = C.JSString_methods.substring$2(t5, _this._pathStart, t6), t8 = _this._fragmentStart; t6 = t6 < t8 ? _this.get$query(_this) : _null; return P._Uri$_internal(t1, t2, t3, t4, t7, t6, t8 < t5.length ? _this.get$fragment() : _null); }, toString$0: function(_) { return this._uri; }, $isUri: 1 }; P._DataUri.prototype = {}; P.ServiceExtensionResponse.prototype = {}; P.TimelineTask.prototype = { start$2$arguments: function(_, $name, $arguments) { var t1, map, key; this._stack.push(new P._AsyncBlock($name, this._taskId)); t1 = type$.nullable_Object; map = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); if ($arguments != null) for (t1 = $arguments.get$keys($arguments), t1 = t1.get$iterator(t1); t1.moveNext$0();) { key = t1.get$current(t1); map.$indexSet(0, key, $arguments.$index(0, key)); } t1 = this._developer$_parent; if (t1 != null) map.$indexSet(0, "parentId", C.JSInt_methods.toRadixString$1(t1._taskId, 16)); P._argumentsAsJson(map); }, start$1: function($receiver, $name) { return this.start$2$arguments($receiver, $name, null); }, finish$1$arguments: function(_, $arguments) { var t1 = this._stack; if (t1.length === 0) throw H.wrapException(P.StateError$("Uneven calls to start and finish")); t1.pop(); P._argumentsAsJson($arguments); } }; P._AsyncBlock.prototype = { get$name: function(receiver) { return this.name; } }; W.HtmlElement.prototype = {$isHtmlElement: 1}; W.AccessibleNodeList.prototype = { get$length: function(receiver) { return receiver.length; } }; W.AnchorElement.prototype = { toString$0: function(receiver) { return String(receiver); } }; W.Animation.prototype = { get$id: function(receiver) { return receiver.id; } }; W.AreaElement.prototype = { toString$0: function(receiver) { return String(receiver); } }; W.BackgroundFetchEvent.prototype = { get$id: function(receiver) { return receiver.id; } }; W.BackgroundFetchRegistration.prototype = { get$id: function(receiver) { return receiver.id; } }; W.BaseElement.prototype = {$isBaseElement: 1}; W.BeforeUnloadEvent.prototype = { set$returnValue: function(receiver, value) { receiver.returnValue = value; }, $isBeforeUnloadEvent: 1 }; W.Blob.prototype = {$isBlob: 1}; W.BluetoothRemoteGattDescriptor.prototype = { get$value: function(receiver) { return receiver.value; } }; W.Body.prototype = { arrayBuffer$0: function(receiver) { return P.promiseToFuture(receiver.arrayBuffer(), type$.dynamic); }, text$0: function(receiver) { return P.promiseToFuture(receiver.text(), type$.String); } }; W.BodyElement.prototype = { get$onBlur: function(receiver) { return new W._ElementEventStreamImpl(receiver, "blur", false, type$._ElementEventStreamImpl_legacy_Event); }, get$onFocus: function(receiver) { return new W._ElementEventStreamImpl(receiver, "focus", false, type$._ElementEventStreamImpl_legacy_Event); }, $isBodyElement: 1 }; W.BroadcastChannel.prototype = { get$name: function(receiver) { return receiver.name; } }; W.ButtonElement.prototype = { get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; } }; W.CanvasElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value; }, getContext$2: function(receiver, contextId, attributes) { if (attributes != null) return receiver.getContext(contextId, P.convertDartToNative_Dictionary(attributes)); return receiver.getContext(contextId); }, getContext$1: function($receiver, contextId) { return this.getContext$2($receiver, contextId, null); }, _toBlob$3: function(receiver, callback, type, $arguments) { return receiver.toBlob(H.convertDartClosureToJS(callback, 1), type, $arguments); }, toBlob$0: function(receiver) { var t1 = new P._Future($.Zone__current, type$._Future_Blob); this._toBlob$3(receiver, new W.CanvasElement_toBlob_closure(new P._AsyncCompleter(t1, type$._AsyncCompleter_Blob)), null, null); return t1; }, $isCanvasElement: 1 }; W.CanvasElement_toBlob_closure.prototype = { call$1: function(value) { this.completer.complete$1(0, value); }, $signature: 2472 }; W.CanvasRenderingContext2D.prototype = { fillText$3: function(receiver, text, x, y) { receiver.fillText(text, x, y); }, $isCanvasRenderingContext2D: 1 }; W.CharacterData.prototype = { get$length: function(receiver) { return receiver.length; } }; W.Client.prototype = { get$id: function(receiver) { return receiver.id; } }; W.Credential.prototype = { get$id: function(receiver) { return receiver.id; } }; W.CredentialUserData.prototype = { get$name: function(receiver) { return receiver.name; } }; W.CssKeyframesRule.prototype = { get$name: function(receiver) { return receiver.name; } }; W.CssKeywordValue.prototype = { get$value: function(receiver) { return receiver.value; } }; W.CssNumericValue.prototype = { add$1: function(receiver, value) { return receiver.add(value); } }; W.CssPerspective.prototype = { get$length: function(receiver) { return receiver.length; } }; W.CssRule.prototype = {$isCssRule: 1}; W.CssStyleDeclaration.prototype = { _browserPropertyName$1: function(receiver, propertyName) { var t1 = $.$get$CssStyleDeclaration__propertyCache(), $name = t1[propertyName]; if (typeof $name == "string") return $name; $name = this._supportedBrowserPropertyName$1(receiver, propertyName); t1[propertyName] = $name; return $name; }, _supportedBrowserPropertyName$1: function(receiver, propertyName) { var prefixed; if (propertyName.replace(/^-ms-/, "ms-").replace(/-([\da-z])/ig, function(_, letter) { return letter.toUpperCase(); }) in receiver) return propertyName; prefixed = $.$get$Device_cssPrefix() + propertyName; if (prefixed in receiver) return prefixed; return propertyName; }, _setPropertyHelper$3: function(receiver, propertyName, value, priority) { if (value == null) value = ""; if (priority == null) priority = ""; receiver.setProperty(propertyName, value, priority); }, get$length: function(receiver) { return receiver.length; }, set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value == null ? "" : value; } }; W.CssStyleDeclarationBase.prototype = { set$height: function(receiver, value) { this._setPropertyHelper$3(receiver, this._browserPropertyName$1(receiver, "height"), value, ""); }, set$width: function(receiver, value) { this._setPropertyHelper$3(receiver, this._browserPropertyName$1(receiver, "width"), value, ""); } }; W.CssStyleSheet.prototype = {$isCssStyleSheet: 1}; W.CssStyleValue.prototype = {}; W.CssTransformComponent.prototype = {}; W.CssTransformValue.prototype = { get$length: function(receiver) { return receiver.length; } }; W.CssUnitValue.prototype = { get$value: function(receiver) { return receiver.value; } }; W.CssUnparsedValue.prototype = { get$length: function(receiver) { return receiver.length; } }; W.DataElement.prototype = { get$value: function(receiver) { return receiver.value; } }; W.DataTransferItemList.prototype = { get$length: function(receiver) { return receiver.length; }, add$1: function(receiver, data_OR_file) { return receiver.add(data_OR_file); }, $index: function(receiver, index) { return receiver[index]; } }; W.DivElement.prototype = {}; W.Document0.prototype = { createElement$1: function(receiver, tagName) { var t1 = receiver.createElement(tagName); return t1; }, $isDocument0: 1 }; W.DomError.prototype = { get$name: function(receiver) { return receiver.name; } }; W.DomException.prototype = { get$name: function(receiver) { var errorName = receiver.name, t1 = $.$get$Device_isWebKit(); if (t1 && errorName === "SECURITY_ERR") return "SecurityError"; if (t1 && errorName === "SYNTAX_ERR") return "SyntaxError"; return errorName; }, toString$0: function(receiver) { return String(receiver); }, $isDomException: 1 }; W.DomRectList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.DomRectReadOnly.prototype = { toString$0: function(receiver) { var t2, t1 = receiver.left; t1.toString; t1 = "Rectangle (" + H.S(t1) + ", "; t2 = receiver.top; t2.toString; return t1 + H.S(t2) + ") " + H.S(this.get$width(receiver)) + " x " + H.S(this.get$height(receiver)); }, $eq: function(receiver, other) { var t1, t2; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = receiver.left; t1.toString; t2 = J.getInterceptor$x(other); if (t1 === t2.get$left(other)) { t1 = receiver.top; t1.toString; t1 = t1 === t2.get$top(other) && this.get$width(receiver) == t2.get$width(other) && this.get$height(receiver) == t2.get$height(other); } else t1 = false; } else t1 = false; return t1; }, get$hashCode: function(receiver) { var t2, t1 = receiver.left; t1.toString; t1 = C.JSNumber_methods.get$hashCode(t1); t2 = receiver.top; t2.toString; return W._JenkinsSmiHash_hash4(t1, C.JSNumber_methods.get$hashCode(t2), J.get$hashCode$(this.get$width(receiver)), J.get$hashCode$(this.get$height(receiver))); }, boundingBox$1: function(receiver, other) { var t2, right, bottom, left, $top, t1 = receiver.left; t1.toString; t2 = J.getInterceptor$x(other); right = Math.max(t1 + this.get$width(receiver), t2.get$left(other) + t2.get$width(other)); t1 = receiver.top; t1.toString; bottom = Math.max(t1 + this.get$height(receiver), t2.get$top(other) + t2.get$height(other)); t1 = receiver.left; t1.toString; left = Math.min(t1, H.checkNum(t2.get$left(other))); t1 = receiver.top; t1.toString; $top = Math.min(t1, H.checkNum(t2.get$top(other))); return P.Rectangle$(left, $top, right - left, bottom - $top, type$.num); }, containsPoint$1: function(receiver, another) { var t1 = another.x, t2 = receiver.left; t2.toString; if (t1 >= t2) if (t1 <= t2 + this.get$width(receiver)) { t1 = another.y; t2 = receiver.top; t2.toString; t1 = t1 >= t2 && t1 <= t2 + this.get$height(receiver); } else t1 = false; else t1 = false; return t1; }, get$topLeft: function(receiver) { var t2, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; return new P.Point(t1, t2, type$.Point_num); }, get$topRight: function(receiver) { var t2, t3, t1 = receiver.left; t1.toString; t2 = this.get$width(receiver); t3 = receiver.top; t3.toString; return new P.Point(t1 + t2, t3, type$.Point_num); }, get$bottomRight: function(receiver) { var t2, t3, t1 = receiver.left; t1.toString; t2 = this.get$width(receiver); t3 = receiver.top; t3.toString; return new P.Point(t1 + t2, t3 + this.get$height(receiver), type$.Point_num); }, get$bottomLeft: function(receiver) { var t2, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; return new P.Point(t1, t2 + this.get$height(receiver), type$.Point_num); }, get$bottom: function(receiver) { var t1 = receiver.bottom; t1.toString; return t1; }, get$_height: function(receiver) { return receiver.height; }, get$height: function(receiver) { var t1 = this.get$_height(receiver); t1.toString; return t1; }, get$left: function(receiver) { var t1 = receiver.left; t1.toString; return t1; }, get$right: function(receiver) { var t1 = receiver.right; t1.toString; return t1; }, get$top: function(receiver) { var t1 = receiver.top; t1.toString; return t1; }, get$_width: function(receiver) { return receiver.width; }, get$width: function(receiver) { var t1 = this.get$_width(receiver); t1.toString; return t1; }, $isRectangle: 1 }; W.DomStringList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.DomTokenList.prototype = { get$length: function(receiver) { return receiver.length; }, get$value: function(receiver) { return receiver.value; }, add$1: function(receiver, tokens) { return receiver.add(tokens); } }; W._ChildrenElementList.prototype = { contains$1: function(_, element) { return J.contains$1$asx(this._childElements, element); }, get$isEmpty: function(_) { return this._html$_element.firstElementChild == null; }, get$length: function(_) { return this._childElements.length; }, $index: function(_, index) { return type$.Element._as(this._childElements[index]); }, $indexSet: function(_, index, value) { this._html$_element.replaceChild(value, this._childElements[index]); }, set$length: function(_, newLength) { throw H.wrapException(P.UnsupportedError$("Cannot resize element lists")); }, add$1: function(_, value) { this._html$_element.appendChild(value); return value; }, get$iterator: function(_) { var t1 = this.toList$0(this); return new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, addAll$1: function(_, iterable) { W._ChildrenElementList__addAll(this._html$_element, iterable); }, sort$1: function(_, compare) { throw H.wrapException(P.UnsupportedError$("Cannot sort element lists")); }, removeWhere$1: function(_, test) { this._html$_filter$2(0, test, false); }, retainWhere$1: function(_, test) { this._html$_filter$2(0, test, true); }, _html$_filter$2: function(_, test, retainMatching) { var removed, t1 = this._html$_element, t2 = J.getInterceptor$x(t1); if (retainMatching) { t1 = t2.get$children(t1); removed = new H.WhereIterable(t1, new W._ChildrenElementList__filter_closure(test), H._instanceType(t1)._eval$1("WhereIterable")); } else { t1 = t2.get$children(t1); removed = new H.WhereIterable(t1, test, H._instanceType(t1)._eval$1("WhereIterable")); } for (t1 = J.get$iterator$ax(removed._iterable), t2 = new H.WhereIterator(t1, removed._f, removed.$ti._eval$1("WhereIterator<1>")); t2.moveNext$0();) J.remove$0$ax(t1.get$current(t1)); }, removeRange$2: function(_, start, end) { throw H.wrapException(P.UnimplementedError$(null)); }, setRange$4: function(_, start, end, iterable, skipCount) { throw H.wrapException(P.UnimplementedError$(null)); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, remove$1: function(_, object) { return W._ChildrenElementList__remove(this._html$_element, object); }, insert$2: function(_, index, element) { var t1, t2, _this = this; if (index < 0 || index > _this._childElements.length) throw H.wrapException(P.RangeError$range(index, 0, _this.get$length(_this), null, null)); t1 = _this._childElements; t2 = _this._html$_element; if (index === t1.length) t2.appendChild(element); else t2.insertBefore(element, type$.Element._as(t1[index])); }, clear$0: function(_) { J._clearChildren$0$x(this._html$_element); }, removeAt$1: function(_, index) { var result = type$.Element._as(this._childElements[index]); this._html$_element.removeChild(result); return result; }, removeLast$0: function(_) { var result = this.get$last(this); this._html$_element.removeChild(result); return result; }, get$first: function(_) { return W._ChildrenElementList__first(this._html$_element); }, get$last: function(_) { var result = this._html$_element.lastElementChild; if (result == null) throw H.wrapException(P.StateError$("No elements")); return result; } }; W._ChildrenElementList__filter_closure.prototype = { call$1: function(e) { return !this.test.call$1(e); }, $signature: 2446 }; W._FrozenElementList.prototype = { get$length: function(_) { return this._nodeList.length; }, $index: function(_, index) { return this.$ti._precomputed1._as(this._nodeList[index]); }, $indexSet: function(_, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot modify list")); }, set$length: function(_, newLength) { throw H.wrapException(P.UnsupportedError$("Cannot modify list")); }, sort$1: function(_, compare) { throw H.wrapException(P.UnsupportedError$("Cannot sort list")); }, get$first: function(_) { return this.$ti._precomputed1._as(C.NodeList_methods.get$first(this._nodeList)); }, get$last: function(_) { return this.$ti._precomputed1._as(C.NodeList_methods.get$last(this._nodeList)); } }; W.Element.prototype = { get$attributes: function(receiver) { return new W._ElementAttributeMap(receiver); }, get$children: function(receiver) { return new W._ChildrenElementList(receiver, receiver.children); }, toString$0: function(receiver) { return receiver.localName; }, createFragment$3$treeSanitizer$validator: function(receiver, html, treeSanitizer, validator) { var t1, t2, contextElement, fragment; if (treeSanitizer == null) { t1 = $.Element__defaultValidator; if (t1 == null) { t1 = H.setRuntimeTypeInfo([], type$.JSArray_NodeValidator); t2 = new W.NodeValidatorBuilder(t1); t1.push(W._Html5NodeValidator$(null)); t1.push(W._TemplatingNodeValidator$()); $.Element__defaultValidator = t2; validator = t2; } else validator = t1; t1 = $.Element__defaultSanitizer; if (t1 == null) { t1 = new W._ValidatingTreeSanitizer(validator); $.Element__defaultSanitizer = t1; treeSanitizer = t1; } else { t1.validator = validator; treeSanitizer = t1; } } if ($.Element__parseDocument == null) { t1 = document; t2 = t1.implementation.createHTMLDocument(""); $.Element__parseDocument = t2; $.Element__parseRange = t2.createRange(); t2 = $.Element__parseDocument.createElement("base"); type$.BaseElement._as(t2); t1 = t1.baseURI; t1.toString; t2.href = t1; $.Element__parseDocument.head.appendChild(t2); } t1 = $.Element__parseDocument; if (t1.body == null) { t2 = t1.createElement("body"); t1.body = type$.BodyElement._as(t2); } t1 = $.Element__parseDocument; if (type$.BodyElement._is(receiver)) { t1 = t1.body; t1.toString; contextElement = t1; } else { t1.toString; contextElement = t1.createElement(receiver.tagName); $.Element__parseDocument.body.appendChild(contextElement); } if ("createContextualFragment" in window.Range.prototype && !C.JSArray_methods.contains$1(C.List_ego, receiver.tagName)) { $.Element__parseRange.selectNodeContents(contextElement); t1 = $.Element__parseRange; t1.toString; fragment = t1.createContextualFragment(html == null ? "null" : html); } else { contextElement.innerHTML = html; fragment = $.Element__parseDocument.createDocumentFragment(); for (; t1 = contextElement.firstChild, t1 != null;) fragment.appendChild(t1); } if (contextElement !== $.Element__parseDocument.body) J.remove$0$ax(contextElement); treeSanitizer.sanitizeTree$1(fragment); document.adoptNode(fragment); return fragment; }, createFragment$2$treeSanitizer: function($receiver, html, treeSanitizer) { return this.createFragment$3$treeSanitizer$validator($receiver, html, treeSanitizer, null); }, setInnerHtml$1: function(receiver, html) { receiver.textContent = null; receiver.appendChild(this.createFragment$3$treeSanitizer$validator(receiver, html, null, null)); }, focus$0: function(receiver) { return receiver.focus(); }, get$id: function(receiver) { return receiver.id; }, get$tagName: function(receiver) { return receiver.tagName; }, get$onBlur: function(receiver) { return new W._ElementEventStreamImpl(receiver, "blur", false, type$._ElementEventStreamImpl_legacy_Event); }, get$onFocus: function(receiver) { return new W._ElementEventStreamImpl(receiver, "focus", false, type$._ElementEventStreamImpl_legacy_Event); }, $isElement: 1 }; W.Element_Element$html_closure.prototype = { call$1: function(e) { return type$.Element._is(e); }, $signature: 477 }; W.EmbedElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, get$name: function(receiver) { return receiver.name; }, set$width: function(receiver, value) { receiver.width = value; } }; W.Entry.prototype = { get$name: function(receiver) { return receiver.name; }, _remove$2: function(receiver, successCallback, errorCallback) { return receiver.remove(H.convertDartClosureToJS(successCallback, 0), H.convertDartClosureToJS(errorCallback, 1)); }, remove$0: function(receiver) { var t1 = new P._Future($.Zone__current, type$._Future_dynamic), completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_dynamic); this._remove$2(receiver, new W.Entry_remove_closure(completer), new W.Entry_remove_closure0(completer)); return t1; } }; W.Entry_remove_closure.prototype = { call$0: function() { this.completer.complete$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; W.Entry_remove_closure0.prototype = { call$1: function(error) { this.completer.completeError$1(error); }, $signature: 2300 }; W.Event.prototype = { get$target: function(receiver) { return W._convertNativeToDart_EventTarget(receiver.target); }, get$type: function(receiver) { return receiver.type; }, _initEvent$3: function(receiver, type, bubbles, cancelable) { return receiver.initEvent(type, true, true); }, preventDefault$0: function(receiver) { return receiver.preventDefault(); }, stopPropagation$0: function(receiver) { return receiver.stopPropagation(); }, $isEvent: 1 }; W.EventTarget.prototype = { addEventListener$3: function(receiver, type, listener, useCapture) { if (listener != null) this._addEventListener$3(receiver, type, listener, useCapture); }, addEventListener$2: function($receiver, type, listener) { return this.addEventListener$3($receiver, type, listener, null); }, removeEventListener$3: function(receiver, type, listener, useCapture) { if (listener != null) this._removeEventListener$3(receiver, type, listener, useCapture); }, removeEventListener$2: function($receiver, type, listener) { return this.removeEventListener$3($receiver, type, listener, null); }, _addEventListener$3: function(receiver, type, listener, options) { return receiver.addEventListener(type, H.convertDartClosureToJS(listener, 1), options); }, _removeEventListener$3: function(receiver, type, listener, options) { return receiver.removeEventListener(type, H.convertDartClosureToJS(listener, 1), options); }, $isEventTarget: 1 }; W.ExtendableEvent.prototype = {}; W.FederatedCredential.prototype = { get$name: function(receiver) { return receiver.name; } }; W.FieldSetElement.prototype = { get$name: function(receiver) { return receiver.name; } }; W.File.prototype = { get$name: function(receiver) { return receiver.name; }, $isFile: 1 }; W.FileList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1, $isFileList: 1 }; W.FileReader.prototype = { get$result: function(receiver) { var res = receiver.result; if (type$.ByteBuffer._is(res)) return C.NativeByteBuffer_methods.asUint8List$2(res, 0, null); return res; } }; W.FileSystem.prototype = { get$name: function(receiver) { return receiver.name; } }; W.FileWriter.prototype = { get$length: function(receiver) { return receiver.length; } }; W.FontFace.prototype = {$isFontFace: 1}; W.FontFaceSet.prototype = { add$1: function(receiver, arg) { return receiver.add(arg); }, forEach$1: function(receiver, callback) { return receiver.forEach(H.convertDartClosureToJS(callback, 3)); } }; W.FormElement.prototype = { get$length: function(receiver) { return receiver.length; }, get$name: function(receiver) { return receiver.name; }, $isFormElement: 1 }; W.Gamepad.prototype = { get$id: function(receiver) { return receiver.id; }, $isGamepad: 1 }; W.GamepadButton.prototype = { get$value: function(receiver) { return receiver.value; } }; W.History.prototype = { get$length: function(receiver) { return receiver.length; } }; W.HtmlCollection.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.HtmlDocument.prototype = { get$body: function(receiver) { return receiver.body; } }; W.HttpRequest.prototype = { get$responseHeaders: function(receiver) { var headersList, _i, header, t2, splitIdx, key, value, t1 = type$.String, headers = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1), headersString = receiver.getAllResponseHeaders(); if (headersString == null) return headers; headersList = headersString.split("\r\n"); for (t1 = headersList.length, _i = 0; _i < t1; ++_i) { header = headersList[_i]; header.toString; t2 = J.getInterceptor$asx(header); if (t2.get$length(header) === 0) continue; splitIdx = t2.indexOf$1(header, ": "); if (splitIdx === -1) continue; key = t2.substring$2(header, 0, splitIdx).toLowerCase(); value = t2.substring$1(header, splitIdx + 2); if (headers.containsKey$1(0, key)) headers.$indexSet(0, key, H.S(headers.$index(0, key)) + ", " + value); else headers.$indexSet(0, key, value); } return headers; }, open$3$async: function(receiver, method, url, async) { return receiver.open(method, url, true); }, send$1: function(receiver, body_OR_data) { return receiver.send(body_OR_data); }, setRequestHeader$2: function(receiver, $name, value) { return receiver.setRequestHeader($name, value); }, $isHttpRequest: 1 }; W.HttpRequest_request_closure.prototype = { call$1: function(e) { var accepted, unknownRedirect, t3, t1 = this.xhr, t2 = t1.status; t2.toString; accepted = t2 >= 200 && t2 < 300; unknownRedirect = t2 > 307 && t2 < 400; t2 = accepted || t2 === 0 || t2 === 304 || unknownRedirect; t3 = this.completer; if (t2) t3.complete$1(0, t1); else t3.completeError$1(e); }, $signature: 175 }; W.HttpRequestEventTarget.prototype = {}; W.IFrameElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, get$name: function(receiver) { return receiver.name; }, set$width: function(receiver, value) { receiver.width = value; }, $isIFrameElement: 1 }; W.ImageData.prototype = {$isImageData: 1}; W.ImageElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value; }, $isImageElement: 1 }; W.InputElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; }, set$width: function(receiver, value) { receiver.width = value; }, $isInputElement: 1, $isFileUploadInputElement: 1 }; W.KeyboardEvent.prototype = {$isKeyboardEvent: 1}; W.LIElement.prototype = { get$value: function(receiver) { return receiver.value; } }; W.LabelElement.prototype = {}; W.Location.prototype = { toString$0: function(receiver) { return String(receiver); } }; W.MapElement.prototype = { get$name: function(receiver) { return receiver.name; } }; W.MediaElement.prototype = {}; W.MediaKeySession.prototype = { remove$0: function(receiver) { return P.promiseToFuture(receiver.remove(), type$.dynamic); } }; W.MediaList.prototype = { get$length: function(receiver) { return receiver.length; } }; W.MediaQueryList.prototype = { addListener$1: function(receiver, listener) { return receiver.addListener(H.convertDartClosureToJS(listener, 1)); }, removeListener$1: function(receiver, listener) { return receiver.removeListener(H.convertDartClosureToJS(listener, 1)); } }; W.MediaQueryListEvent.prototype = {$isMediaQueryListEvent: 1}; W.MediaStream.prototype = { get$id: function(receiver) { return receiver.id; } }; W.MediaStreamTrack.prototype = { get$id: function(receiver) { return receiver.id; } }; W.MessagePort.prototype = { addEventListener$3: function(receiver, type, listener, useCapture) { if (type === "message") receiver.start(); this.super$EventTarget$addEventListener(receiver, type, listener, false); }, $isMessagePort: 1 }; W.MetaElement.prototype = { get$name: function(receiver) { return receiver.name; }, $isMetaElement: 1 }; W.MeterElement.prototype = { get$value: function(receiver) { return receiver.value; } }; W.MidiInputMap.prototype = { addAll$1: function(receiver, other) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, containsKey$1: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1: function(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], P.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys: function(receiver) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new W.MidiInputMap_keys_closure(keys)); return keys; }, get$values: function(receiver) { var values = H.setRuntimeTypeInfo([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new W.MidiInputMap_values_closure(values)); return values; }, get$length: function(receiver) { return receiver.size; }, get$isEmpty: function(receiver) { return receiver.size === 0; }, get$isNotEmpty: function(receiver) { return receiver.size !== 0; }, $indexSet: function(receiver, key, value) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, putIfAbsent$2: function(receiver, key, ifAbsent) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, remove$1: function(receiver, key) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, clear$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, $isMap: 1 }; W.MidiInputMap_keys_closure.prototype = { call$2: function(k, v) { return this.keys.push(k); }, $signature: 107 }; W.MidiInputMap_values_closure.prototype = { call$2: function(k, v) { return this.values.push(v); }, $signature: 107 }; W.MidiOutputMap.prototype = { addAll$1: function(receiver, other) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, containsKey$1: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1: function(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], P.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys: function(receiver) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new W.MidiOutputMap_keys_closure(keys)); return keys; }, get$values: function(receiver) { var values = H.setRuntimeTypeInfo([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new W.MidiOutputMap_values_closure(values)); return values; }, get$length: function(receiver) { return receiver.size; }, get$isEmpty: function(receiver) { return receiver.size === 0; }, get$isNotEmpty: function(receiver) { return receiver.size !== 0; }, $indexSet: function(receiver, key, value) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, putIfAbsent$2: function(receiver, key, ifAbsent) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, remove$1: function(receiver, key) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, clear$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, $isMap: 1 }; W.MidiOutputMap_keys_closure.prototype = { call$2: function(k, v) { return this.keys.push(k); }, $signature: 107 }; W.MidiOutputMap_values_closure.prototype = { call$2: function(k, v) { return this.values.push(v); }, $signature: 107 }; W.MidiPort.prototype = { get$id: function(receiver) { return receiver.id; }, get$name: function(receiver) { return receiver.name; } }; W.MimeType.prototype = {$isMimeType: 1}; W.MimeTypeArray.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.MouseEvent.prototype = { get$offset: function(receiver) { var t1, t2, target, t3, t4, t5, point; if (!!receiver.offsetX) return new P.Point(receiver.offsetX, receiver.offsetY, type$.Point_num); else { t1 = receiver.target; t2 = type$.Element; if (!t2._is(W._convertNativeToDart_EventTarget(t1))) throw H.wrapException(P.UnsupportedError$("offsetX is only supported on elements")); target = t2._as(W._convertNativeToDart_EventTarget(t1)); t1 = receiver.clientX; t2 = receiver.clientY; t3 = type$.Point_num; t4 = target.getBoundingClientRect(); t5 = t4.left; t5.toString; t4 = t4.top; t4.toString; point = new P.Point(t1, t2, t3).$sub(0, new P.Point(t5, t4, t3)); return new P.Point(J.toInt$0$n(point.x), J.toInt$0$n(point.y), t3); } }, $isMouseEvent: 1 }; W.Navigator0.prototype = { get$vendor: function(receiver) { return receiver.vendor; }, get$product: function(receiver) { return receiver.product; } }; W.NavigatorConcurrentHardware.prototype = {}; W.NavigatorUserMediaError.prototype = { get$name: function(receiver) { return receiver.name; } }; W._ChildNodeListLazy.prototype = { get$first: function(_) { var result = this._this.firstChild; if (result == null) throw H.wrapException(P.StateError$("No elements")); return result; }, get$last: function(_) { var result = this._this.lastChild; if (result == null) throw H.wrapException(P.StateError$("No elements")); return result; }, get$single: function(_) { var t1 = this._this, l = t1.childNodes.length; if (l === 0) throw H.wrapException(P.StateError$("No elements")); if (l > 1) throw H.wrapException(P.StateError$("More than one element")); t1 = t1.firstChild; t1.toString; return t1; }, add$1: function(_, value) { this._this.appendChild(value); }, addAll$1: function(_, iterable) { var t1, t2, len, i, t3; if (iterable instanceof W._ChildNodeListLazy) { t1 = iterable._this; t2 = this._this; if (t1 !== t2) for (len = t1.childNodes.length, i = 0; i < len; ++i) { t3 = t1.firstChild; t3.toString; t2.appendChild(t3); } return; } for (t1 = J.get$iterator$ax(iterable), t2 = this._this; t1.moveNext$0();) t2.appendChild(t1.get$current(t1)); }, insert$2: function(_, index, node) { var t1, t2, _this = this; if (index < 0 || index > _this._this.childNodes.length) throw H.wrapException(P.RangeError$range(index, 0, _this.get$length(_this), null, null)); t1 = _this._this; t2 = t1.childNodes; if (index === t2.length) t1.appendChild(node); else t1.insertBefore(node, t2[index]); }, removeLast$0: function(_) { var result = this.get$last(this); this._this.removeChild(result); return result; }, removeAt$1: function(_, index) { var t1 = this._this, result = t1.childNodes[index]; t1.removeChild(result); return result; }, remove$1: function(_, object) { var t1; if (!type$.Node._is(object)) return false; t1 = this._this; if (t1 !== object.parentNode) return false; t1.removeChild(object); return true; }, _html$_filter$2: function(_, test, removeMatching) { var nextChild, t1 = this._this, child = t1.firstChild; for (; child != null; child = nextChild) { nextChild = child.nextSibling; if (J.$eq$(test.call$1(child), removeMatching)) t1.removeChild(child); } }, removeWhere$1: function(_, test) { this._html$_filter$2(0, test, true); }, retainWhere$1: function(_, test) { this._html$_filter$2(0, test, false); }, clear$0: function(_) { J._clearChildren$0$x(this._this); }, $indexSet: function(_, index, value) { var t1 = this._this; t1.replaceChild(value, t1.childNodes[index]); }, get$iterator: function(_) { var t1 = this._this.childNodes; return new W.FixedSizeListIterator(t1, t1.length, H.instanceType(t1)._eval$1("FixedSizeListIterator")); }, sort$1: function(_, compare) { throw H.wrapException(P.UnsupportedError$("Cannot sort Node list")); }, setRange$4: function(_, start, end, iterable, skipCount) { throw H.wrapException(P.UnsupportedError$("Cannot setRange on Node list")); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2: function(_, start, end) { throw H.wrapException(P.UnsupportedError$("Cannot removeRange on Node list")); }, get$length: function(_) { return this._this.childNodes.length; }, set$length: function(_, value) { throw H.wrapException(P.UnsupportedError$("Cannot set length on immutable List.")); }, $index: function(_, index) { return this._this.childNodes[index]; } }; W.Node.prototype = { remove$0: function(receiver) { var t1 = receiver.parentNode; if (t1 != null) t1.removeChild(receiver); }, replaceWith$1: function(receiver, otherNode) { var $parent, t1, exception; try { t1 = receiver.parentNode; t1.toString; $parent = t1; J._replaceChild$2$x($parent, otherNode, receiver); } catch (exception) { H.unwrapException(exception); } return receiver; }, _clearChildren$0: function(receiver) { var t1; for (; t1 = receiver.firstChild, t1 != null;) receiver.removeChild(t1); }, toString$0: function(receiver) { var value = receiver.nodeValue; return value == null ? this.super$Interceptor$toString(receiver) : value; }, get$text: function(receiver) { return receiver.textContent; }, _replaceChild$2: function(receiver, node, child) { return receiver.replaceChild(node, child); }, $isNode: 1, text$0: function($receiver) { return this.get$text($receiver).call$0(); } }; W.NodeList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.Notification.prototype = { get$body: function(receiver) { return receiver.body; } }; W.ObjectElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, get$name: function(receiver) { return receiver.name; }, set$width: function(receiver, value) { receiver.width = value; } }; W.OffscreenCanvas.prototype = { set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value; }, getContext$2: function(receiver, contextType, attributes) { var t1 = receiver.getContext(contextType, P.convertDartToNative_Dictionary(attributes)); return t1; } }; W.OptionElement.prototype = { get$value: function(receiver) { return receiver.value; } }; W.OutputElement.prototype = { get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; } }; W.OverconstrainedError.prototype = { get$name: function(receiver) { return receiver.name; } }; W.ParagraphElement.prototype = {}; W.ParamElement.prototype = { get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; } }; W.PasswordCredential.prototype = { get$name: function(receiver) { return receiver.name; } }; W.PaymentRequest.prototype = { get$id: function(receiver) { return receiver.id; } }; W.PerformanceEntry.prototype = { get$name: function(receiver) { return receiver.name; } }; W.PerformanceServerTiming.prototype = { get$name: function(receiver) { return receiver.name; } }; W.Plugin.prototype = { get$length: function(receiver) { return receiver.length; }, get$name: function(receiver) { return receiver.name; }, $isPlugin: 1 }; W.PluginArray.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.PointerEvent.prototype = {$isPointerEvent: 1}; W.PresentationAvailability.prototype = { get$value: function(receiver) { return receiver.value; } }; W.PresentationConnection.prototype = { get$id: function(receiver) { return receiver.id; } }; W.ProgressElement.prototype = { get$value: function(receiver) { return receiver.value; } }; W.ProgressEvent.prototype = {$isProgressEvent: 1}; W.PushMessageData.prototype = { arrayBuffer$0: function(receiver) { return receiver.arrayBuffer(); }, text$0: function(receiver) { return receiver.text(); } }; W.RelatedApplication.prototype = { get$id: function(receiver) { return receiver.id; } }; W.RtcDataChannel.prototype = { get$id: function(receiver) { return receiver.id; } }; W.RtcLegacyStatsReport.prototype = { get$id: function(receiver) { return receiver.id; } }; W.RtcStatsReport.prototype = { addAll$1: function(receiver, other) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, containsKey$1: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1: function(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], P.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys: function(receiver) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new W.RtcStatsReport_keys_closure(keys)); return keys; }, get$values: function(receiver) { var values = H.setRuntimeTypeInfo([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new W.RtcStatsReport_values_closure(values)); return values; }, get$length: function(receiver) { return receiver.size; }, get$isEmpty: function(receiver) { return receiver.size === 0; }, get$isNotEmpty: function(receiver) { return receiver.size !== 0; }, $indexSet: function(receiver, key, value) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, putIfAbsent$2: function(receiver, key, ifAbsent) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, remove$1: function(receiver, key) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, clear$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, $isMap: 1 }; W.RtcStatsReport_keys_closure.prototype = { call$2: function(k, v) { return this.keys.push(k); }, $signature: 107 }; W.RtcStatsReport_values_closure.prototype = { call$2: function(k, v) { return this.values.push(v); }, $signature: 107 }; W.ScreenOrientation.prototype = { unlock$0: function(receiver) { return receiver.unlock(); } }; W.ScriptElement.prototype = {}; W.SelectElement.prototype = { get$length: function(receiver) { return receiver.length; }, get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; } }; W.SharedWorkerGlobalScope.prototype = { get$name: function(receiver) { return receiver.name; } }; W.SlotElement.prototype = { get$name: function(receiver) { return receiver.name; } }; W.SourceBuffer.prototype = {$isSourceBuffer: 1}; W.SourceBufferList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.SpanElement.prototype = {$isSpanElement: 1}; W.SpeechGrammar.prototype = {$isSpeechGrammar: 1}; W.SpeechGrammarList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.SpeechRecognitionResult.prototype = { get$length: function(receiver) { return receiver.length; }, $isSpeechRecognitionResult: 1 }; W.SpeechSynthesisEvent.prototype = { get$name: function(receiver) { return receiver.name; } }; W.SpeechSynthesisUtterance.prototype = { get$text: function(receiver) { return receiver.text; }, text$0: function($receiver) { return this.get$text($receiver).call$0(); } }; W.SpeechSynthesisVoice.prototype = { get$name: function(receiver) { return receiver.name; } }; W.Storage.prototype = { addAll$1: function(receiver, other) { other.forEach$1(0, new W.Storage_addAll_closure(receiver)); }, containsKey$1: function(receiver, key) { return receiver.getItem(H._asStringS(key)) != null; }, $index: function(receiver, key) { return receiver.getItem(H._asStringS(key)); }, $indexSet: function(receiver, key, value) { receiver.setItem(key, value); }, putIfAbsent$2: function(receiver, key, ifAbsent) { if (receiver.getItem(key) == null) receiver.setItem(key, ifAbsent.call$0()); return receiver.getItem(key); }, remove$1: function(receiver, key) { var value; H._asStringS(key); value = receiver.getItem(key); receiver.removeItem(key); return value; }, clear$0: function(receiver) { return receiver.clear(); }, forEach$1: function(receiver, f) { var i, key, t1; for (i = 0; true; ++i) { key = receiver.key(i); if (key == null) return; t1 = receiver.getItem(key); t1.toString; f.call$2(key, t1); } }, get$keys: function(receiver) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new W.Storage_keys_closure(keys)); return keys; }, get$values: function(receiver) { var values = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new W.Storage_values_closure(values)); return values; }, get$length: function(receiver) { return receiver.length; }, get$isEmpty: function(receiver) { return receiver.key(0) == null; }, get$isNotEmpty: function(receiver) { return receiver.key(0) != null; }, $isMap: 1 }; W.Storage_addAll_closure.prototype = { call$2: function(k, v) { this.$this.setItem(k, v); }, $signature: 105 }; W.Storage_keys_closure.prototype = { call$2: function(k, v) { return this.keys.push(k); }, $signature: 105 }; W.Storage_values_closure.prototype = { call$2: function(k, v) { return this.values.push(v); }, $signature: 105 }; W.StyleElement.prototype = {}; W.StyleSheet.prototype = {$isStyleSheet: 1}; W.TableElement.prototype = { createFragment$3$treeSanitizer$validator: function(receiver, html, treeSanitizer, validator) { var table, fragment; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); table = W.Element_Element$html("" + html + "
", treeSanitizer, validator); fragment = document.createDocumentFragment(); fragment.toString; table.toString; new W._ChildNodeListLazy(fragment).addAll$1(0, new W._ChildNodeListLazy(table)); return fragment; } }; W.TableRowElement.prototype = { createFragment$3$treeSanitizer$validator: function(receiver, html, treeSanitizer, validator) { var t1, fragment, section, row; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); t1 = document; fragment = t1.createDocumentFragment(); t1 = C.TableElement_methods.createFragment$3$treeSanitizer$validator(t1.createElement("table"), html, treeSanitizer, validator); t1.toString; t1 = new W._ChildNodeListLazy(t1); section = t1.get$single(t1); section.toString; t1 = new W._ChildNodeListLazy(section); row = t1.get$single(t1); fragment.toString; row.toString; new W._ChildNodeListLazy(fragment).addAll$1(0, new W._ChildNodeListLazy(row)); return fragment; } }; W.TableSectionElement.prototype = { createFragment$3$treeSanitizer$validator: function(receiver, html, treeSanitizer, validator) { var t1, fragment, section; if ("createContextualFragment" in window.Range.prototype) return this.super$Element$createFragment(receiver, html, treeSanitizer, validator); t1 = document; fragment = t1.createDocumentFragment(); t1 = C.TableElement_methods.createFragment$3$treeSanitizer$validator(t1.createElement("table"), html, treeSanitizer, validator); t1.toString; t1 = new W._ChildNodeListLazy(t1); section = t1.get$single(t1); fragment.toString; section.toString; new W._ChildNodeListLazy(fragment).addAll$1(0, new W._ChildNodeListLazy(section)); return fragment; } }; W.TemplateElement.prototype = {$isTemplateElement: 1}; W.TextAreaElement.prototype = { get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; }, select$0: function(receiver) { return receiver.select(); }, $isTextAreaElement: 1 }; W.TextTrack.prototype = { get$id: function(receiver) { return receiver.id; }, $isTextTrack: 1 }; W.TextTrackCue.prototype = { get$id: function(receiver) { return receiver.id; }, $isTextTrackCue: 1 }; W.TextTrackCueList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.TextTrackList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.TimeRanges.prototype = { get$length: function(receiver) { return receiver.length; } }; W.Touch.prototype = {$isTouch: 1}; W.TouchEvent.prototype = {$isTouchEvent: 1}; W.TouchList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W.TrackDefaultList.prototype = { get$length: function(receiver) { return receiver.length; } }; W.UIEvent.prototype = {}; W.Url.prototype = { toString$0: function(receiver) { return String(receiver); } }; W.VideoElement.prototype = { set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value; } }; W.VideoTrack.prototype = { get$id: function(receiver) { return receiver.id; } }; W.VideoTrackList.prototype = { get$length: function(receiver) { return receiver.length; } }; W.VttCue.prototype = { get$text: function(receiver) { return receiver.text; }, text$0: function($receiver) { return this.get$text($receiver).call$0(); } }; W.VttRegion.prototype = { get$id: function(receiver) { return receiver.id; }, set$width: function(receiver, value) { receiver.width = value; } }; W.WheelEvent.prototype = { get$deltaY: function(receiver) { var value = receiver.deltaY; if (value != null) return value; throw H.wrapException(P.UnsupportedError$("deltaY is not supported")); }, get$deltaX: function(receiver) { var value = receiver.deltaX; if (value != null) return value; throw H.wrapException(P.UnsupportedError$("deltaX is not supported")); }, get$deltaMode: function(receiver) { if (!!receiver.deltaMode) return receiver.deltaMode; return 0; }, $isWheelEvent: 1 }; W.Window.prototype = { get$document: function(receiver) { return receiver.document; }, open$2: function(receiver, url, $name) { var t1 = W._DOMWindowCrossFrame__createSafe(receiver.open(url, $name)); return t1; }, requestAnimationFrame$1: function(receiver, callback) { var t1; this._ensureRequestAnimationFrame$0(receiver); t1 = W._wrapZone(callback, type$.num); t1.toString; return this._requestAnimationFrame$1(receiver, t1); }, _requestAnimationFrame$1: function(receiver, callback) { return receiver.requestAnimationFrame(H.convertDartClosureToJS(callback, 1)); }, _ensureRequestAnimationFrame$0: function(receiver) { if (!!(receiver.requestAnimationFrame && receiver.cancelAnimationFrame)) return; (function($this) { var vendors = ['ms', 'moz', 'webkit', 'o']; for (var i = 0; i < vendors.length && !$this.requestAnimationFrame; ++i) { $this.requestAnimationFrame = $this[vendors[i] + 'RequestAnimationFrame']; $this.cancelAnimationFrame = $this[vendors[i] + 'CancelAnimationFrame'] || $this[vendors[i] + 'CancelRequestAnimationFrame']; } if ($this.requestAnimationFrame && $this.cancelAnimationFrame) return; $this.requestAnimationFrame = function(callback) { return window.setTimeout(function() { callback(Date.now()); }, 16); }; $this.cancelAnimationFrame = function(id) { clearTimeout(id); }; })(receiver); }, get$name: function(receiver) { return receiver.name; }, fetch$1: function(receiver, input) { return P.promiseToFuture(receiver.fetch(input, null), type$.dynamic); }, $isWindow: 1 }; W._BeforeUnloadEvent.prototype = { set$returnValue: function(_, value) { var t1 = this.wrapped; if ("returnValue" in t1) t1.returnValue = value; }, $isBeforeUnloadEvent: 1 }; W._BeforeUnloadEventStreamProvider.prototype = { forTarget$1: function(e) { var _null = null, t1 = type$.BeforeUnloadEvent, controller = P.StreamController_StreamController(_null, _null, _null, _null, true, t1); W._EventStreamSubscription$(e, "beforeunload", new W._BeforeUnloadEventStreamProvider_forTarget_closure(controller), false, t1); return new P._ControllerStream(controller, H._instanceType(controller)._eval$1("_ControllerStream<1>")); } }; W._BeforeUnloadEventStreamProvider_forTarget_closure.prototype = { call$1: function($event) { this.controller.add$1(0, new W._BeforeUnloadEvent($event)); }, $signature: 2202 }; W.WorkerGlobalScope.prototype = {$isWorkerGlobalScope: 1}; W._Attr.prototype = { get$name: function(receiver) { return receiver.name; }, get$value: function(receiver) { return receiver.value; }, $is_Attr: 1 }; W._CssRuleList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W._DomRect.prototype = { toString$0: function(receiver) { var t2, t1 = receiver.left; t1.toString; t1 = "Rectangle (" + H.S(t1) + ", "; t2 = receiver.top; t2.toString; t2 = t1 + H.S(t2) + ") "; t1 = receiver.width; t1.toString; t1 = t2 + H.S(t1) + " x "; t2 = receiver.height; t2.toString; return t1 + H.S(t2); }, $eq: function(receiver, other) { var t1, t2; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = receiver.left; t1.toString; t2 = J.getInterceptor$x(other); if (t1 === t2.get$left(other)) { t1 = receiver.top; t1.toString; if (t1 === t2.get$top(other)) { t1 = receiver.width; t1.toString; if (t1 === t2.get$width(other)) { t1 = receiver.height; t1.toString; t2 = t1 === t2.get$height(other); t1 = t2; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$hashCode: function(receiver) { var t2, t3, t4, t1 = receiver.left; t1.toString; t1 = C.JSNumber_methods.get$hashCode(t1); t2 = receiver.top; t2.toString; t2 = C.JSNumber_methods.get$hashCode(t2); t3 = receiver.width; t3.toString; t3 = C.JSNumber_methods.get$hashCode(t3); t4 = receiver.height; t4.toString; return W._JenkinsSmiHash_hash4(t1, t2, t3, C.JSNumber_methods.get$hashCode(t4)); }, boundingBox$1: function(receiver, other) { var t2, t3, right, bottom, left, $top, t1 = receiver.left; t1.toString; t2 = receiver.width; t2.toString; t3 = J.getInterceptor$x(other); right = Math.max(t1 + t2, t3.get$left(other) + t3.get$width(other)); t2 = receiver.top; t2.toString; t1 = receiver.height; t1.toString; bottom = Math.max(t2 + t1, t3.get$top(other) + t3.get$height(other)); t1 = receiver.left; t1.toString; left = Math.min(t1, H.checkNum(t3.get$left(other))); t1 = receiver.top; t1.toString; $top = Math.min(t1, H.checkNum(t3.get$top(other))); return P.Rectangle$(left, $top, right - left, bottom - $top, type$.num); }, containsPoint$1: function(receiver, another) { var t3, t1 = another.x, t2 = receiver.left; t2.toString; if (t1 >= t2) { t3 = receiver.width; t3.toString; if (t1 <= t2 + t3) { t1 = another.y; t2 = receiver.top; t2.toString; if (t1 >= t2) { t3 = receiver.height; t3.toString; t3 = t1 <= t2 + t3; t1 = t3; } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$topLeft: function(receiver) { var t2, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; return new P.Point(t1, t2, type$.Point_num); }, get$topRight: function(receiver) { var t2, t3, t1 = receiver.left; t1.toString; t2 = receiver.width; t2.toString; t3 = receiver.top; t3.toString; return new P.Point(t1 + t2, t3, type$.Point_num); }, get$bottomRight: function(receiver) { var t2, t3, t4, t1 = receiver.left; t1.toString; t2 = receiver.width; t2.toString; t3 = receiver.top; t3.toString; t4 = receiver.height; t4.toString; return new P.Point(t1 + t2, t3 + t4, type$.Point_num); }, get$bottomLeft: function(receiver) { var t2, t3, t1 = receiver.left; t1.toString; t2 = receiver.top; t2.toString; t3 = receiver.height; t3.toString; return new P.Point(t1, t2 + t3, type$.Point_num); }, get$_height: function(receiver) { return receiver.height; }, get$height: function(receiver) { var t1 = receiver.height; t1.toString; return t1; }, set$height: function(receiver, value) { receiver.height = value; }, get$_width: function(receiver) { return receiver.width; }, get$width: function(receiver) { var t1 = receiver.width; t1.toString; return t1; }, set$width: function(receiver, value) { receiver.width = value; } }; W._GamepadList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W._NamedNodeMap.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W._Report.prototype = { get$body: function(receiver) { return receiver.body; } }; W._SpeechRecognitionResultList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W._StyleSheetList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver[index]; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return receiver[index]; }, $isJSIndexable: 1, $isEfficientLengthIterable: 1, $isJavaScriptIndexingBehavior: 1, $isIterable: 1, $isList: 1 }; W._AttributeMap.prototype = { addAll$1: function(_, other) { other.forEach$1(0, new W._AttributeMap_addAll_closure(this)); }, cast$2$0: function(_, $K, $V) { var t1 = type$.String; return P.Map_castFrom(this, t1, t1, $K, $V); }, putIfAbsent$2: function(_, key, ifAbsent) { var t1 = this._html$_element, t2 = t1.hasAttribute(key); if (!t2) t1.setAttribute(key, ifAbsent.call$0()); return t1.getAttribute(key); }, clear$0: function(_) { var t1, t2, t3, _i, key; for (t1 = this.get$keys(this), t2 = t1.length, t3 = this._html$_element, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { key = t1[_i]; if (typeof key == "string") t3.removeAttribute(key); } }, forEach$1: function(_, f) { var t1, t2, t3, _i, t4; for (t1 = this.get$keys(this), t2 = t1.length, t3 = this._html$_element, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { t4 = H._asStringS(t1[_i]); f.call$2(t4, t3.getAttribute(t4)); } }, get$keys: function(_) { var keys, len, t2, i, attr, t3, t1 = this._html$_element.attributes; t1.toString; keys = H.setRuntimeTypeInfo([], type$.JSArray_String); for (len = t1.length, t2 = type$._Attr, i = 0; i < len; ++i) { attr = t2._as(t1[i]); if (attr.namespaceURI == null) { t3 = attr.name; t3.toString; keys.push(t3); } } return keys; }, get$values: function(_) { var values, len, t2, i, attr, t3, t1 = this._html$_element.attributes; t1.toString; values = H.setRuntimeTypeInfo([], type$.JSArray_String); for (len = t1.length, t2 = type$._Attr, i = 0; i < len; ++i) { attr = t2._as(t1[i]); if (attr.namespaceURI == null) { t3 = attr.value; t3.toString; values.push(t3); } } return values; }, get$isEmpty: function(_) { return this.get$keys(this).length === 0; }, get$isNotEmpty: function(_) { return this.get$keys(this).length !== 0; } }; W._AttributeMap_addAll_closure.prototype = { call$2: function(k, v) { this.$this._html$_element.setAttribute(k, v); }, $signature: 105 }; W._ElementAttributeMap.prototype = { containsKey$1: function(_, key) { return typeof key == "string" && this._html$_element.hasAttribute(key); }, $index: function(_, key) { return this._html$_element.getAttribute(H._asStringS(key)); }, $indexSet: function(_, key, value) { this._html$_element.setAttribute(key, value); }, remove$1: function(_, key) { var t1, value; if (typeof key == "string") { t1 = this._html$_element; value = t1.getAttribute(key); t1.removeAttribute(key); t1 = value; } else t1 = null; return t1; }, get$length: function(_) { return this.get$keys(this).length; } }; W._DataAttributeMap.prototype = { addAll$1: function(_, other) { other.forEach$1(0, new W._DataAttributeMap_addAll_closure(this)); }, cast$2$0: function(_, $K, $V) { var t1 = type$.String; return P.Map_castFrom(this, t1, t1, $K, $V); }, containsKey$1: function(_, key) { var t1 = this._attributes._html$_element.hasAttribute("data-" + this._toHyphenedName$1(H._asStringS(key))); return t1; }, $index: function(_, key) { return this._attributes._html$_element.getAttribute("data-" + this._toHyphenedName$1(H._asStringS(key))); }, $indexSet: function(_, key, value) { this._attributes._html$_element.setAttribute("data-" + this._toHyphenedName$1(key), value); }, putIfAbsent$2: function(_, key, ifAbsent) { return this._attributes.putIfAbsent$2(0, "data-" + this._toHyphenedName$1(key), ifAbsent); }, remove$1: function(_, key) { var t1 = "data-" + this._toHyphenedName$1(H._asStringS(key)), t2 = this._attributes._html$_element, value = t2.getAttribute(t1); t2.removeAttribute(t1); return value; }, clear$0: function(_) { var t1, t2, t3, _i, _this = this; for (t1 = _this.get$keys(_this), t2 = t1.length, t3 = _this._attributes, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t3._html$_element.removeAttribute("data-" + _this._toHyphenedName$1(H._asStringS(t1[_i]))); }, forEach$1: function(_, f) { this._attributes.forEach$1(0, new W._DataAttributeMap_forEach_closure(this, f)); }, get$keys: function(_) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this._attributes.forEach$1(0, new W._DataAttributeMap_keys_closure(this, keys)); return keys; }, get$values: function(_) { var values = H.setRuntimeTypeInfo([], type$.JSArray_String); this._attributes.forEach$1(0, new W._DataAttributeMap_values_closure(this, values)); return values; }, get$length: function(_) { return this.get$keys(this).length; }, get$isEmpty: function(_) { return this.get$keys(this).length === 0; }, get$isNotEmpty: function(_) { return this.get$keys(this).length !== 0; }, _toCamelCase$1: function(hyphenedName) { var t1, i, segment, segments = H.setRuntimeTypeInfo(hyphenedName.split("-"), type$.JSArray_String); for (t1 = segments.length, i = 1; i < t1; ++i) { segment = segments[i]; if (segment.length > 0) segments[i] = segment[0].toUpperCase() + J.substring$1$s(segment, 1); } return C.JSArray_methods.join$1(segments, ""); }, _toHyphenedName$1: function(word) { var t1, i, t2, t3, lower; for (t1 = word.length, i = 0, t2 = ""; i < t1; ++i) { t3 = word[i]; lower = t3.toLowerCase(); t2 = (t3 !== lower && i > 0 ? t2 + "-" : t2) + lower; } return t2.charCodeAt(0) == 0 ? t2 : t2; } }; W._DataAttributeMap_addAll_closure.prototype = { call$2: function(k, v) { var t1 = this.$this; t1._attributes._html$_element.setAttribute("data-" + t1._toHyphenedName$1(k), v); }, $signature: 105 }; W._DataAttributeMap_forEach_closure.prototype = { call$2: function(key, value) { if (J.startsWith$1$s(key, "data-")) this.f.call$2(this.$this._toCamelCase$1(C.JSString_methods.substring$1(key, 5)), value); }, $signature: 105 }; W._DataAttributeMap_keys_closure.prototype = { call$2: function(key, value) { if (J.startsWith$1$s(key, "data-")) this.keys.push(this.$this._toCamelCase$1(C.JSString_methods.substring$1(key, 5))); }, $signature: 105 }; W._DataAttributeMap_values_closure.prototype = { call$2: function(key, value) { if (J.startsWith$1$s(key, "data-")) this.values.push(value); }, $signature: 105 }; W.EventStreamProvider.prototype = {}; W._EventStream.prototype = { get$isBroadcast: function() { return true; }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { return W._EventStreamSubscription$(this._html$_target, this._eventType, onData, false, H._instanceType(this)._precomputed1); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; W._ElementEventStreamImpl.prototype = {}; W._EventStreamSubscription.prototype = { cancel$0: function(_) { var _this = this; if (_this._html$_target == null) return $.$get$nullFuture(); _this._unlisten$0(); _this._onData = _this._html$_target = null; return $.$get$nullFuture(); }, onData$1: function(handleData) { var t1, _this = this; if (_this._html$_target == null) throw H.wrapException(P.StateError$("Subscription has been canceled.")); _this._unlisten$0(); t1 = W._wrapZone(new W._EventStreamSubscription_onData_closure(handleData), type$.Event); _this._onData = t1; _this._tryResume$0(); }, pause$1: function(_, resumeSignal) { if (this._html$_target == null) return; ++this._pauseCount; this._unlisten$0(); }, pause$0: function($receiver) { return this.pause$1($receiver, null); }, resume$0: function(_) { var _this = this; if (_this._html$_target == null || _this._pauseCount <= 0) return; --_this._pauseCount; _this._tryResume$0(); }, _tryResume$0: function() { var t2, _this = this, t1 = _this._onData; if (t1 != null && _this._pauseCount <= 0) { t2 = _this._html$_target; t2.toString; J.addEventListener$3$x(t2, _this._eventType, t1, false); } }, _unlisten$0: function() { var t2, t1 = this._onData; if (t1 != null) { t2 = this._html$_target; t2.toString; J.removeEventListener$3$x(t2, this._eventType, t1, false); } } }; W._EventStreamSubscription_closure.prototype = { call$1: function(e) { return this.onData.call$1(e); }, $signature: 66 }; W._EventStreamSubscription_onData_closure.prototype = { call$1: function(e) { return this.handleData.call$1(e); }, $signature: 66 }; W._Html5NodeValidator.prototype = { _Html5NodeValidator$1$uriPolicy: function(uriPolicy) { var _i; if ($._Html5NodeValidator__attributeValidators.get$isEmpty($._Html5NodeValidator__attributeValidators)) { for (_i = 0; _i < 262; ++_i) $._Html5NodeValidator__attributeValidators.$indexSet(0, C.List_2Zi[_i], W.html__Html5NodeValidator__standardAttributeValidator$closure()); for (_i = 0; _i < 12; ++_i) $._Html5NodeValidator__attributeValidators.$indexSet(0, C.List_yrN[_i], W.html__Html5NodeValidator__uriAttributeValidator$closure()); } }, allowsElement$1: function(element) { return $.$get$_Html5NodeValidator__allowedElements().contains$1(0, W.Element__safeTagName(element)); }, allowsAttribute$3: function(element, attributeName, value) { var validator = $._Html5NodeValidator__attributeValidators.$index(0, H.S(W.Element__safeTagName(element)) + "::" + attributeName); if (validator == null) validator = $._Html5NodeValidator__attributeValidators.$index(0, "*::" + attributeName); if (validator == null) return false; return validator.call$4(element, attributeName, value, this); }, $isNodeValidator: 1 }; W.ImmutableListMixin.prototype = { get$iterator: function(receiver) { return new W.FixedSizeListIterator(receiver, this.get$length(receiver), H.instanceType(receiver)._eval$1("FixedSizeListIterator")); }, add$1: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot add to immutable List.")); }, addAll$1: function(receiver, iterable) { throw H.wrapException(P.UnsupportedError$("Cannot add to immutable List.")); }, sort$1: function(receiver, compare) { throw H.wrapException(P.UnsupportedError$("Cannot sort immutable List.")); }, insert$2: function(receiver, index, element) { throw H.wrapException(P.UnsupportedError$("Cannot add to immutable List.")); }, removeAt$1: function(receiver, pos) { throw H.wrapException(P.UnsupportedError$("Cannot remove from immutable List.")); }, removeLast$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Cannot remove from immutable List.")); }, remove$1: function(receiver, object) { throw H.wrapException(P.UnsupportedError$("Cannot remove from immutable List.")); }, removeWhere$1: function(receiver, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from immutable List.")); }, retainWhere$1: function(receiver, test) { throw H.wrapException(P.UnsupportedError$("Cannot remove from immutable List.")); }, setRange$4: function(receiver, start, end, iterable, skipCount) { throw H.wrapException(P.UnsupportedError$("Cannot setRange on immutable List.")); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2: function(receiver, start, end) { throw H.wrapException(P.UnsupportedError$("Cannot removeRange on immutable List.")); } }; W.NodeValidatorBuilder.prototype = { add$1: function(_, validator) { this._validators.push(validator); }, allowsElement$1: function(element) { return C.JSArray_methods.any$1(this._validators, new W.NodeValidatorBuilder_allowsElement_closure(element)); }, allowsAttribute$3: function(element, attributeName, value) { return C.JSArray_methods.any$1(this._validators, new W.NodeValidatorBuilder_allowsAttribute_closure(element, attributeName, value)); }, $isNodeValidator: 1 }; W.NodeValidatorBuilder_allowsElement_closure.prototype = { call$1: function(v) { return v.allowsElement$1(this.element); }, $signature: 484 }; W.NodeValidatorBuilder_allowsAttribute_closure.prototype = { call$1: function(v) { return v.allowsAttribute$3(this.element, this.attributeName, this.value); }, $signature: 484 }; W._SimpleNodeValidator.prototype = { _SimpleNodeValidator$4$allowedAttributes$allowedElements$allowedUriAttributes: function(uriPolicy, allowedAttributes, allowedElements, allowedUriAttributes) { var legalAttributes, extraUriAttributes, t1; this.allowedElements.addAll$1(0, allowedElements); legalAttributes = allowedAttributes.where$1(0, new W._SimpleNodeValidator_closure()); extraUriAttributes = allowedAttributes.where$1(0, new W._SimpleNodeValidator_closure0()); this.allowedAttributes.addAll$1(0, legalAttributes); t1 = this.allowedUriAttributes; t1.addAll$1(0, C.List_empty1); t1.addAll$1(0, extraUriAttributes); }, allowsElement$1: function(element) { return this.allowedElements.contains$1(0, W.Element__safeTagName(element)); }, allowsAttribute$3: function(element, attributeName, value) { var _this = this, tagName = W.Element__safeTagName(element), t1 = _this.allowedUriAttributes; if (t1.contains$1(0, H.S(tagName) + "::" + attributeName)) return _this.uriPolicy.allowsUri$1(value); else if (t1.contains$1(0, "*::" + attributeName)) return _this.uriPolicy.allowsUri$1(value); else { t1 = _this.allowedAttributes; if (t1.contains$1(0, H.S(tagName) + "::" + attributeName)) return true; else if (t1.contains$1(0, "*::" + attributeName)) return true; else if (t1.contains$1(0, H.S(tagName) + "::*")) return true; else if (t1.contains$1(0, "*::*")) return true; } return false; }, $isNodeValidator: 1 }; W._SimpleNodeValidator_closure.prototype = { call$1: function(x) { return !C.JSArray_methods.contains$1(C.List_yrN, x); }, $signature: 73 }; W._SimpleNodeValidator_closure0.prototype = { call$1: function(x) { return C.JSArray_methods.contains$1(C.List_yrN, x); }, $signature: 73 }; W._TemplatingNodeValidator.prototype = { allowsAttribute$3: function(element, attributeName, value) { if (this.super$_SimpleNodeValidator$allowsAttribute(element, attributeName, value)) return true; if (attributeName === "template" && value === "") return true; if (element.getAttribute("template") === "") return this._templateAttrs.contains$1(0, attributeName); return false; } }; W._TemplatingNodeValidator_closure.prototype = { call$1: function(attr) { return "TEMPLATE::" + H.S(attr); }, $signature: 101 }; W._SvgNodeValidator.prototype = { allowsElement$1: function(element) { var t1; if (type$.ScriptElement._is(element)) return false; t1 = type$.SvgElement._is(element); if (t1 && W.Element__safeTagName(element) === "foreignObject") return false; if (t1) return true; return false; }, allowsAttribute$3: function(element, attributeName, value) { if (attributeName === "is" || C.JSString_methods.startsWith$1(attributeName, "on")) return false; return this.allowsElement$1(element); }, $isNodeValidator: 1 }; W.FixedSizeListIterator.prototype = { moveNext$0: function() { var _this = this, nextPosition = _this._position + 1, t1 = _this._html$_length; if (nextPosition < t1) { _this._html$_current = J.$index$asx(_this._array, nextPosition); _this._position = nextPosition; return true; } _this._html$_current = null; _this._position = t1; return false; }, get$current: function(_) { return this._html$_current; } }; W.Console.prototype = { group$1: function(arg) { return typeof console != "undefined" ? window.console.group(arg) : null; }, warn$1: function(arg) { return typeof console != "undefined" ? window.console.warn(arg) : null; } }; W._DOMWindowCrossFrame.prototype = {$isEventTarget: 1}; W._WrappedEvent.prototype = { get$target: function(_) { return J.get$target$x(this.wrapped); }, get$type: function(_) { return J.get$type$x(this.wrapped); }, _initEvent$3: function(_, type, bubbles, cancelable) { throw H.wrapException(P.UnsupportedError$("Cannot initialize this Event.")); }, preventDefault$0: function(_) { J.preventDefault$0$x(this.wrapped); }, stopPropagation$0: function(_) { J.stopPropagation$0$x(this.wrapped); }, $isEvent: 1 }; W._SameOriginUriPolicy.prototype = {}; W._ValidatingTreeSanitizer.prototype = { sanitizeTree$1: function(node) { var previousTreeModifications, walk = new W._ValidatingTreeSanitizer_sanitizeTree_walk(this); do { previousTreeModifications = this.numTreeModifications; walk.call$2(node, null); } while (previousTreeModifications !== this.numTreeModifications); }, _removeNode$2: function(node, $parent) { ++this.numTreeModifications; if ($parent == null || $parent !== node.parentNode) J.remove$0$ax(node); else $parent.removeChild(node); }, _sanitizeUntrustedElement$2: function(element, $parent) { var corruptedTest1, elementText, elementTagName, exception, t1, corrupted = true, attrs = null, isAttr = null; try { attrs = J.get$attributes$x(element); isAttr = attrs._html$_element.getAttribute("is"); corruptedTest1 = function(element) { if (!(element.attributes instanceof NamedNodeMap)) return true; if (element.id == 'lastChild' || element.name == 'lastChild' || element.id == 'previousSibling' || element.name == 'previousSibling' || element.id == 'children' || element.name == 'children') return true; var childNodes = element.childNodes; if (element.lastChild && element.lastChild !== childNodes[childNodes.length - 1]) return true; if (element.children) if (!(element.children instanceof HTMLCollection || element.children instanceof NodeList)) return true; var length = 0; if (element.children) length = element.children.length; for (var i = 0; i < length; i++) { var child = element.children[i]; if (child.id == 'attributes' || child.name == 'attributes' || child.id == 'lastChild' || child.name == 'lastChild' || child.id == 'previousSibling' || child.name == 'previousSibling' || child.id == 'children' || child.name == 'children') return true; } return false; }(element); corrupted = corruptedTest1 ? true : !(element.attributes instanceof NamedNodeMap); } catch (exception) { H.unwrapException(exception); } elementText = "element unprintable"; try { elementText = J.toString$0$(element); } catch (exception) { H.unwrapException(exception); } try { elementTagName = W.Element__safeTagName(element); this._sanitizeElement$7(element, $parent, corrupted, elementText, elementTagName, attrs, isAttr); } catch (exception) { if (H.unwrapException(exception) instanceof P.ArgumentError) throw exception; else { this._removeNode$2(element, $parent); window; t1 = "Removing corrupted element " + H.S(elementText); if (typeof console != "undefined") window.console.warn(t1); } } }, _sanitizeElement$7: function(element, $parent, corrupted, text, tag, attrs, isAttr) { var t1, keys, i, $name, t2, t3, _this = this; if (corrupted) { _this._removeNode$2(element, $parent); window; t1 = "Removing element due to corrupted attributes on <" + text + ">"; if (typeof console != "undefined") window.console.warn(t1); return; } if (!_this.validator.allowsElement$1(element)) { _this._removeNode$2(element, $parent); window; t1 = "Removing disallowed element <" + H.S(tag) + "> from " + H.S($parent); if (typeof console != "undefined") window.console.warn(t1); return; } if (isAttr != null) if (!_this.validator.allowsAttribute$3(element, "is", isAttr)) { _this._removeNode$2(element, $parent); window; t1 = "Removing disallowed type extension <" + H.S(tag) + ' is="' + isAttr + '">'; if (typeof console != "undefined") window.console.warn(t1); return; } t1 = attrs.get$keys(attrs); keys = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); for (i = attrs.get$keys(attrs).length - 1, t1 = attrs._html$_element; i >= 0; --i) { $name = keys[i]; t2 = _this.validator; t3 = J.toLowerCase$0$s($name); H._asStringS($name); if (!t2.allowsAttribute$3(element, t3, t1.getAttribute($name))) { window; t2 = "Removing disallowed attribute <" + H.S(tag) + " " + $name + '="' + H.S(t1.getAttribute($name)) + '">'; if (typeof console != "undefined") window.console.warn(t2); t1.removeAttribute($name); } } if (type$.TemplateElement._is(element)) { t1 = element.content; t1.toString; _this.sanitizeTree$1(t1); } } }; W._ValidatingTreeSanitizer_sanitizeTree_walk.prototype = { call$2: function(node, $parent) { var child, nextChild, t2, t3, exception, t1 = this.$this; switch (node.nodeType) { case 1: t1._sanitizeUntrustedElement$2(node, $parent); break; case 8: case 11: case 3: case 4: break; default: t1._removeNode$2(node, $parent); } child = node.lastChild; for (; null != child;) { nextChild = null; try { nextChild = child.previousSibling; if (nextChild != null) { t2 = nextChild.nextSibling; t3 = child; t3 = t2 == null ? t3 != null : t2 !== t3; t2 = t3; } else t2 = false; if (t2) { t2 = P.StateError$("Corrupt HTML"); throw H.wrapException(t2); } } catch (exception) { H.unwrapException(exception); t2 = child; ++t1.numTreeModifications; t3 = t2.parentNode; t3 = node == null ? t3 != null : node !== t3; if (t3) { t3 = t2.parentNode; if (t3 != null) t3.removeChild(t2); } else node.removeChild(t2); child = null; nextChild = node.lastChild; } if (child != null) this.call$2(child, node); child = nextChild; } }, $signature: 2111 }; W._CssStyleDeclaration_Interceptor_CssStyleDeclarationBase.prototype = {}; W._DomRectList_Interceptor_ListMixin.prototype = {}; W._DomRectList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._DomStringList_Interceptor_ListMixin.prototype = {}; W._DomStringList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._FileList_Interceptor_ListMixin.prototype = {}; W._FileList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._HtmlCollection_Interceptor_ListMixin.prototype = {}; W._HtmlCollection_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._MidiInputMap_Interceptor_MapMixin.prototype = {}; W._MidiOutputMap_Interceptor_MapMixin.prototype = {}; W._MimeTypeArray_Interceptor_ListMixin.prototype = {}; W._MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._NodeList_Interceptor_ListMixin.prototype = {}; W._NodeList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._PluginArray_Interceptor_ListMixin.prototype = {}; W._PluginArray_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._RtcStatsReport_Interceptor_MapMixin.prototype = {}; W._SourceBufferList_EventTarget_ListMixin.prototype = {}; W._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin.prototype = {}; W._SpeechGrammarList_Interceptor_ListMixin.prototype = {}; W._SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._Storage_Interceptor_MapMixin.prototype = {}; W._TextTrackCueList_Interceptor_ListMixin.prototype = {}; W._TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W._TextTrackList_EventTarget_ListMixin.prototype = {}; W._TextTrackList_EventTarget_ListMixin_ImmutableListMixin.prototype = {}; W._TouchList_Interceptor_ListMixin.prototype = {}; W._TouchList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W.__CssRuleList_Interceptor_ListMixin.prototype = {}; W.__CssRuleList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W.__GamepadList_Interceptor_ListMixin.prototype = {}; W.__GamepadList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W.__NamedNodeMap_Interceptor_ListMixin.prototype = {}; W.__NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W.__SpeechRecognitionResultList_Interceptor_ListMixin.prototype = {}; W.__SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; W.__StyleSheetList_Interceptor_ListMixin.prototype = {}; W.__StyleSheetList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; P._StructuredClone.prototype = { findSlot$1: function(value) { var i, t1 = this.values, $length = t1.length; for (i = 0; i < $length; ++i) if (t1[i] === value) return i; t1.push(value); this.copies.push(null); return $length; }, walk$1: function(e) { var slot, t2, copy, _this = this, t1 = {}; if (e == null) return e; if (H._isBool(e)) return e; if (typeof e == "number") return e; if (typeof e == "string") return e; if (e instanceof P.DateTime) return new Date(e._value); if (type$.RegExp._is(e)) throw H.wrapException(P.UnimplementedError$("structured clone of RegExp")); if (type$.File._is(e)) return e; if (type$.Blob._is(e)) return e; if (type$.FileList._is(e)) return e; if (type$.ImageData._is(e)) return e; if (type$.NativeByteBuffer._is(e) || type$.NativeTypedData._is(e) || type$.MessagePort._is(e)) return e; if (type$.Map_dynamic_dynamic._is(e)) { slot = _this.findSlot$1(e); t2 = _this.copies; copy = t1.copy = t2[slot]; if (copy != null) return copy; copy = {}; t1.copy = copy; t2[slot] = copy; J.forEach$1$ax(e, new P._StructuredClone_walk_closure(t1, _this)); return t1.copy; } if (type$.List_dynamic._is(e)) { slot = _this.findSlot$1(e); copy = _this.copies[slot]; if (copy != null) return copy; return _this.copyList$2(e, slot); } if (type$.JSObject._is(e)) { slot = _this.findSlot$1(e); t2 = _this.copies; copy = t1.copy = t2[slot]; if (copy != null) return copy; copy = {}; t1.copy = copy; t2[slot] = copy; _this.forEachObjectKey$2(e, new P._StructuredClone_walk_closure0(t1, _this)); return t1.copy; } throw H.wrapException(P.UnimplementedError$("structured clone of other type")); }, copyList$2: function(e, slot) { var i, t1 = J.getInterceptor$asx(e), $length = t1.get$length(e), copy = new Array($length); this.copies[slot] = copy; for (i = 0; i < $length; ++i) copy[i] = this.walk$1(t1.$index(e, i)); return copy; } }; P._StructuredClone_walk_closure.prototype = { call$2: function(key, value) { this._box_0.copy[key] = this.$this.walk$1(value); }, $signature: 118 }; P._StructuredClone_walk_closure0.prototype = { call$2: function(key, value) { this._box_0.copy[key] = this.$this.walk$1(value); }, $signature: 275 }; P._AcceptStructuredClone.prototype = { findSlot$1: function(value) { var i, t1 = this.values, $length = t1.length; for (i = 0; i < $length; ++i) if (t1[i] === value) return i; t1.push(value); this.copies.push(null); return $length; }, walk$1: function(e) { var proto, slot, t1, copy, t2, l, $length, i, _this = this, _box_0 = {}; if (e == null) return e; if (H._isBool(e)) return e; if (typeof e == "number") return e; if (typeof e == "string") return e; if (e instanceof Date) return P.DateTime$fromMillisecondsSinceEpoch(e.getTime(), true); if (e instanceof RegExp) throw H.wrapException(P.UnimplementedError$("structured clone of RegExp")); if (typeof Promise != "undefined" && e instanceof Promise) return P.promiseToFuture(e, type$.dynamic); proto = Object.getPrototypeOf(e); if (proto === Object.prototype || proto === null) { slot = _this.findSlot$1(e); t1 = _this.copies; copy = _box_0.copy = t1[slot]; if (copy != null) return copy; t2 = type$.dynamic; copy = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); _box_0.copy = copy; t1[slot] = copy; _this.forEachJsField$2(e, new P._AcceptStructuredClone_walk_closure(_box_0, _this)); return _box_0.copy; } if (e instanceof Array) { l = e; slot = _this.findSlot$1(l); t1 = _this.copies; copy = t1[slot]; if (copy != null) return copy; t2 = J.getInterceptor$asx(l); $length = t2.get$length(l); copy = _this.mustCopy ? new Array($length) : l; t1[slot] = copy; for (t1 = J.getInterceptor$ax(copy), i = 0; i < $length; ++i) t1.$indexSet(copy, i, _this.walk$1(t2.$index(l, i))); return copy; } return e; }, convertNativeToDart_AcceptStructuredClone$2$mustCopy: function(object, mustCopy) { this.mustCopy = mustCopy; return this.walk$1(object); } }; P._AcceptStructuredClone_walk_closure.prototype = { call$2: function(key, value) { var t1 = this._box_0.copy, t2 = this.$this.walk$1(value); J.$indexSet$ax(t1, key, t2); return t2; }, $signature: 2102 }; P._convertDartToNative_Value_closure.prototype = { call$1: function(element) { this.array.push(P._convertDartToNative_Value(element)); }, $signature: 81 }; P.convertDartToNative_Dictionary_closure.prototype = { call$2: function(key, value) { this.object[key] = P._convertDartToNative_Value(value); }, $signature: 118 }; P._StructuredCloneDart2Js.prototype = { forEachObjectKey$2: function(object, action) { var t1, t2, _i, key; for (t1 = Object.keys(object), t2 = t1.length, _i = 0; _i < t2; ++_i) { key = t1[_i]; action.call$2(key, object[key]); } } }; P._AcceptStructuredCloneDart2Js.prototype = { forEachJsField$2: function(object, action) { var t1, t2, _i, key; for (t1 = Object.keys(object), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { key = t1[_i]; action.call$2(key, object[key]); } } }; P.FilteredElementList.prototype = { get$_html_common$_iterable: function() { var t1 = this._childNodes, t2 = H._instanceType(t1); return new H.MappedIterable(new H.WhereIterable(t1, new P.FilteredElementList__iterable_closure(), t2._eval$1("WhereIterable")), new P.FilteredElementList__iterable_closure0(), t2._eval$1("MappedIterable")); }, forEach$1: function(_, f) { C.JSArray_methods.forEach$1(P.List_List$from(this.get$_html_common$_iterable(), false, type$.Element), f); }, $indexSet: function(_, index, value) { var t1 = this.get$_html_common$_iterable(); J.replaceWith$1$x(t1._f.call$1(J.elementAt$1$ax(t1._iterable, index)), value); }, set$length: function(_, newLength) { var len = J.get$length$asx(this.get$_html_common$_iterable()._iterable); if (newLength >= len) return; else if (newLength < 0) throw H.wrapException(P.ArgumentError$("Invalid list length")); this.removeRange$2(0, newLength, len); }, add$1: function(_, value) { this._childNodes._this.appendChild(value); }, addAll$1: function(_, iterable) { var t1, t2; for (t1 = J.get$iterator$ax(iterable), t2 = this._childNodes._this; t1.moveNext$0();) t2.appendChild(t1.get$current(t1)); }, contains$1: function(_, needle) { if (!type$.Element._is(needle)) return false; return needle.parentNode === this._node; }, get$reversed: function(_) { var t1 = P.List_List$from(this.get$_html_common$_iterable(), false, type$.Element); return new H.ReversedListIterable(t1, H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")); }, sort$1: function(_, compare) { throw H.wrapException(P.UnsupportedError$("Cannot sort filtered list")); }, setRange$4: function(_, start, end, iterable, skipCount) { throw H.wrapException(P.UnsupportedError$("Cannot setRange on filtered list")); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, removeRange$2: function(_, start, end) { var t1 = this.get$_html_common$_iterable(); t1 = H.SkipIterable_SkipIterable(t1, start, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.forEach$1(P.List_List$from(H.TakeIterable_TakeIterable(t1, end - start, H._instanceType(t1)._eval$1("Iterable.E")), true, type$.dynamic), new P.FilteredElementList_removeRange_closure()); }, clear$0: function(_) { J._clearChildren$0$x(this._childNodes._this); }, removeLast$0: function(_) { var t1 = this.get$_html_common$_iterable(), result = t1._f.call$1(J.get$last$ax(t1._iterable)); if (result != null) J.remove$0$ax(result); return result; }, insert$2: function(_, index, value) { var t1, element; if (index == J.get$length$asx(this.get$_html_common$_iterable()._iterable)) this._childNodes._this.appendChild(value); else { t1 = this.get$_html_common$_iterable(); element = t1._f.call$1(J.elementAt$1$ax(t1._iterable, index)); element.parentNode.insertBefore(value, element); } }, removeAt$1: function(_, index) { var t1 = this.get$_html_common$_iterable(); t1 = t1._f.call$1(J.elementAt$1$ax(t1._iterable, index)); J.remove$0$ax(t1); return t1; }, remove$1: function(_, element) { if (!type$.Element._is(element)) return false; if (this.contains$1(0, element)) { J.remove$0$ax(element); return true; } else return false; }, get$length: function(_) { return J.get$length$asx(this.get$_html_common$_iterable()._iterable); }, $index: function(_, index) { var t1 = this.get$_html_common$_iterable(); return t1._f.call$1(J.elementAt$1$ax(t1._iterable, index)); }, get$iterator: function(_) { var t1 = P.List_List$from(this.get$_html_common$_iterable(), false, type$.Element); return new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); } }; P.FilteredElementList__iterable_closure.prototype = { call$1: function(n) { return type$.Element._is(n); }, $signature: 477 }; P.FilteredElementList__iterable_closure0.prototype = { call$1: function(n) { return type$.Element._as(n); }, $signature: 2017 }; P.FilteredElementList_removeRange_closure.prototype = { call$1: function(el) { return J.remove$0$ax(el); }, $signature: 81 }; P.Cursor.prototype = {}; P.CursorWithValue.prototype = { get$value: function(receiver) { return new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(receiver.value, false); } }; P.Database.prototype = { get$name: function(receiver) { return receiver.name; } }; P._completeRequest_closure.prototype = { call$1: function(e) { this.completer.complete$1(0, new P._AcceptStructuredCloneDart2Js([], []).convertNativeToDart_AcceptStructuredClone$2$mustCopy(this.request.result, false)); }, $signature: 66 }; P.Index.prototype = { get$name: function(receiver) { return receiver.name; } }; P.KeyRange.prototype = {$isKeyRange: 1}; P.ObjectStore.prototype = { add$1: function(receiver, value) { var request, e, stacktrace, t1, exception, key = null; try { request = null; if (key != null) request = this._indexed_db$_add$2(receiver, value, key); else request = this._indexed_db$_add$1(receiver, value); t1 = P._completeRequest(request, type$.dynamic); return t1; } catch (exception) { e = H.unwrapException(exception); stacktrace = H.getTraceFromException(exception); t1 = P.Future_Future$error(e, stacktrace, type$.dynamic); return t1; } }, get$name: function(receiver) { return receiver.name; }, _indexed_db$_add$2: function(receiver, value, key) { return receiver.add(new P._StructuredCloneDart2Js([], []).walk$1(value)); }, _indexed_db$_add$1: function($receiver, value) { return this._indexed_db$_add$2($receiver, value, null); } }; P.Observation.prototype = { get$value: function(receiver) { return receiver.value; } }; P.VersionChangeEvent.prototype = { get$target: function(receiver) { return receiver.target; } }; P.OSError.prototype = { toString$0: function(_) { var t2, t1 = this.message; if (t1.length !== 0) { t1 = "OS Error: " + t1; t2 = this.errorCode; if (t2 !== -1) t1 = t1 + ", errno = " + J.toString$0$(t2); } else { t1 = this.errorCode; t1 = t1 !== -1 ? "OS Error: errno = " + J.toString$0$(t1) : "OS Error"; } return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1 }; P._Directory.prototype = { toString$0: function(_) { return "Directory: '" + H.S(this._path) + "'"; }, $isDirectory: 1 }; P.FileMode.prototype = {}; P.FileSystemException.prototype = { toString$0: function(_) { var t2, _this = this, _s19_ = "FileSystemException", t1 = _this.message; if (t1.length !== 0) { t1 = _s19_ + (": " + t1); t2 = _this.path; if (t2 != null) t1 += ", path = '" + t2 + "'"; t2 = _this.osError; if (t2 != null) t1 += " (" + t2.toString$0(0) + ")"; } else { t1 = _this.osError; if (t1 != null) { t1 = _s19_ + (": " + t1.toString$0(0)); t2 = _this.path; if (t2 != null) t1 += ", path = '" + t2 + "'"; } else { t1 = _this.path; t1 = t1 != null ? _s19_ + (": " + t1) : _s19_; } } return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isException: 1 }; P._FileStream.prototype = { get$_io$_controller: function() { var t1 = this.___FileStream__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_openedFile: function() { var t1 = this.___FileStream__openedFile; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_openedFile")) : t1; }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { var t1, _this = this; _this.___FileStream__controller = P.StreamController_StreamController(new P._FileStream_listen_closure(_this), _this.get$_io$_start(_this), null, _this.get$_readBlock(), true, type$.Uint8List); t1 = _this.get$_io$_controller(); return t1.get$stream(t1).listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); }, _closeFile$0: function() { var _this = this; if (_this._readInProgress || _this._closed) return _this._closeCompleter.future; _this._closed = true; _this.get$_openedFile().close$0(0).catchError$1(_this.get$_io$_controller().get$addError()).whenComplete$1(new P._FileStream__closeFile_done(_this)); return _this._closeCompleter.future; }, _readBlock$0: function() { var _this = this, t1 = {}; if (_this._readInProgress) return; if (_this._atEnd) { _this._closeFile$0(); return; } _this._readInProgress = true; t1.readBytes = 65536; _this.get$_openedFile().read$1(0, 65536).then$1$1(0, new P._FileStream__readBlock_closure(t1, _this), type$.Null).catchError$1(new P._FileStream__readBlock_closure0(_this)); }, _io$_start$0: function(_) { var e, s, exception, _this = this, onOpenFile = new P._FileStream__start_onOpenFile(_this, new P._FileStream__start_onReady(_this)), openFailed = new P._FileStream__start_openFailed(_this), path = _this._path; if (path != null) P.File_File(path).open$1$mode(0, C.FileMode_0).then$1$2$onError(0, onOpenFile, openFailed, type$.void); else try { P._File__openStdio(0); onOpenFile.call$1(null); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); openFailed.call$2(e, s); } } }; P._FileStream_listen_closure.prototype = { call$0: function() { var t1 = this.$this; t1._unsubscribed = true; return t1._closeFile$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 453 }; P._FileStream__closeFile_done.prototype = { call$0: function() { var t1 = this.$this; t1._closeCompleter.complete$0(0); t1.get$_io$_controller().close$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P._FileStream__readBlock_closure.prototype = { call$1: function(block) { var t2, t1 = this.$this; t1._readInProgress = false; if (t1._unsubscribed) { t1._closeFile$0(); return; } t2 = J.getInterceptor$asx(block); t1._io$_position = t1._io$_position + t2.get$length(block); if (t2.get$length(block) >= this._box_0.readBytes) t2 = false; else t2 = true; if (t2) t1._atEnd = true; if (!t1._atEnd && !t1.get$_io$_controller().get$isPaused()) t1._readBlock$0(); t1.get$_io$_controller().add$1(0, block); if (t1._atEnd) t1._closeFile$0(); }, $signature: 1505 }; P._FileStream__readBlock_closure0.prototype = { call$2: function(e, s) { var t1 = this.$this; if (!t1._unsubscribed) { t1.get$_io$_controller().addError$2(e, s); t1._closeFile$0(); t1._unsubscribed = true; } }, "call*": "call$2", $requiredArgCount: 2, $signature: 275 }; P._FileStream__start_onReady.prototype = { call$1: function(file) { var t1 = this.$this; t1.___FileStream__openedFile = file; t1._readInProgress = false; t1._readBlock$0(); }, $signature: 488 }; P._FileStream__start_onOpenFile.prototype = { call$1: function(file) { var t1 = this.$this, t2 = t1._io$_position, t3 = this.onReady; if (t2 > 0) file.setPosition$1(0, t2).then$1$2$onError(0, t3, new P._FileStream__start_onOpenFile_closure(t1), type$.void); else t3.call$1(file); }, $signature: 488 }; P._FileStream__start_onOpenFile_closure.prototype = { call$2: function(e, s) { var t1 = this.$this; t1.get$_io$_controller().addError$2(e, s); t1._readInProgress = false; t1._closeFile$0(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 275 }; P._FileStream__start_openFailed.prototype = { call$2: function(error, stackTrace) { var t1 = this.$this; t1.get$_io$_controller().addError$2(error, stackTrace); t1.get$_io$_controller().close$0(0); t1._closeCompleter.complete$0(0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 118 }; P._File.prototype = { open$1$mode: function(_, mode) { if (mode !== C.FileMode_0 && mode !== C.FileMode_1 && mode !== C.FileMode_2 && mode !== C.FileMode_3 && mode !== C.FileMode_4) return P.Future_Future$error(new P.ArgumentError(false, null, null, "Invalid file mode for this operation"), null, type$.RandomAccessFile); return P._File__dispatchWithNamespace(5, [null, this._rawPath, mode._io$_mode]).then$1$1(0, new P._File_open_closure(this), type$.RandomAccessFile); }, length$0: function(_) { return P._File__dispatchWithNamespace(12, [null, this._rawPath]).then$1$1(0, new P._File_length_closure(this), type$.int); }, toString$0: function(_) { return "File: '" + H.S(this._path) + "'"; }, $isFile0: 1 }; P._File_open_closure.prototype = { call$1: function(response) { var t1; response.$index(0, 0); t1 = P._exceptionFromResponse(response, "Cannot open file", this.$this._path); throw H.wrapException(t1); }, $signature: 1363 }; P._File_length_closure.prototype = { call$1: function(response) { var t1; response.$index(0, 0); t1 = P._exceptionFromResponse(response, "Cannot retrieve length of file", this.$this._path); throw H.wrapException(t1); }, $signature: 1357 }; P.FileSystemEntityType.prototype = { toString$0: function(_) { return C.List_file_directory_link_notFound[this._io$_type]; } }; P.FileSystemEntity.prototype = {}; P.JsObject__convertDataTree__convert.prototype = { call$1: function(o) { var convertedMap, t2, key, convertedList, t1 = this._convertedObjects; if (t1.containsKey$1(0, o)) return t1.$index(0, o); if (type$.Map_dynamic_dynamic._is(o)) { convertedMap = {}; t1.$indexSet(0, o, convertedMap); for (t1 = J.getInterceptor$x(o), t2 = J.get$iterator$ax(t1.get$keys(o)); t2.moveNext$0();) { key = t2.get$current(t2); convertedMap[key] = this.call$1(t1.$index(o, key)); } return convertedMap; } else if (type$.Iterable_dynamic._is(o)) { convertedList = []; t1.$indexSet(0, o, convertedList); C.JSArray_methods.addAll$1(convertedList, J.map$1$1$ax(o, this, type$.dynamic)); return convertedList; } else return P._convertToJS(o); }, $signature: 576 }; P._convertToJS_closure.prototype = { call$1: function(o) { var jsFunction = function(_call, f, captureThis) { return function() { return _call(f, captureThis, this, Array.prototype.slice.apply(arguments)); }; }(P._callDartFunction, o, false); P._defineProperty(jsFunction, $.$get$DART_CLOSURE_PROPERTY_NAME(), o); return jsFunction; }, $signature: 10 }; P._convertToJS_closure0.prototype = { call$1: function(o) { return new this.ctor(o); }, $signature: 10 }; P._wrapToDart_closure.prototype = { call$1: function(o) { return new P.JsFunction(o); }, $signature: 1322 }; P._wrapToDart_closure0.prototype = { call$1: function(o) { return new P.JsArray(o, type$.JsArray_dynamic); }, $signature: 1314 }; P._wrapToDart_closure1.prototype = { call$1: function(o) { return new P.JsObject(o); }, $signature: 1282 }; P.JsObject.prototype = { $index: function(_, property) { if (typeof property != "string" && typeof property != "number") throw H.wrapException(P.ArgumentError$("property is not a String or num")); return P._convertToDart(this._jsObject[property]); }, $indexSet: function(_, property, value) { if (typeof property != "string" && typeof property != "number") throw H.wrapException(P.ArgumentError$("property is not a String or num")); this._jsObject[property] = P._convertToJS(value); }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.JsObject && this._jsObject === other._jsObject; }, toString$0: function(_) { var t1, exception; try { t1 = String(this._jsObject); return t1; } catch (exception) { H.unwrapException(exception); t1 = this.super$Object$toString(0); return t1; } }, callMethod$2: function(method, args) { var t1 = this._jsObject, t2 = args == null ? null : P.List_List$from(new H.MappedListIterable(args, P.js___convertToJS$closure(), H._arrayInstanceType(args)._eval$1("MappedListIterable<1,@>")), true, type$.dynamic); return P._convertToDart(t1[method].apply(t1, t2)); }, callMethod$1: function(method) { return this.callMethod$2(method, null); }, get$hashCode: function(_) { return 0; } }; P.JsFunction.prototype = {}; P.JsArray.prototype = { _checkIndex$1: function(index) { var t1, _this = this; if (H._isInt(index)) t1 = index < 0 || index >= _this.get$length(_this); else t1 = false; if (t1) throw H.wrapException(P.RangeError$range(index, 0, _this.get$length(_this), null, null)); }, $index: function(_, index) { if (H._isInt(index)) this._checkIndex$1(index); return this.super$JsObject$$index(0, index); }, $indexSet: function(_, index, value) { if (H._isInt(index)) this._checkIndex$1(index); this.super$_JsArray_JsObject_ListMixin$$indexSet(0, index, value); }, get$length: function(_) { var len = this._jsObject.length; if (typeof len === "number" && len >>> 0 === len) return len; throw H.wrapException(P.StateError$("Bad JsArray length")); }, set$length: function(_, $length) { this.super$_JsArray_JsObject_ListMixin$$indexSet(0, "length", $length); }, add$1: function(_, value) { this.callMethod$2("push", [value]); }, addAll$1: function(_, iterable) { this.callMethod$2("push", iterable instanceof Array ? iterable : P.List_List$from(iterable, true, type$.dynamic)); }, insert$2: function(_, index, element) { var t1, _this = this; if (H._isInt(index)) t1 = index < 0 || index >= _this.get$length(_this) + 1; else t1 = false; if (t1) H.throwExpression(P.RangeError$range(index, 0, _this.get$length(_this), null, null)); _this.callMethod$2("splice", [index, 0, element]); }, removeAt$1: function(_, index) { this._checkIndex$1(index); return J.$index$asx(this.callMethod$2("splice", [index, 1]), 0); }, removeLast$0: function(_) { if (this.get$length(this) === 0) throw H.wrapException(P.RangeError$(-1)); return this.callMethod$1("pop"); }, removeRange$2: function(_, start, end) { P.JsArray__checkRange(start, end, this.get$length(this)); this.callMethod$2("splice", [start, end - start]); }, setRange$4: function(_, start, end, iterable, skipCount) { var $length, args; P.JsArray__checkRange(start, end, this.get$length(this)); $length = end - start; if ($length === 0) return; if (skipCount < 0) throw H.wrapException(P.ArgumentError$(skipCount)); args = [start, $length]; C.JSArray_methods.addAll$1(args, J.skip$1$ax(iterable, skipCount).take$1(0, $length)); this.callMethod$2("splice", args); }, setRange$3: function($receiver, start, end, iterable) { return this.setRange$4($receiver, start, end, iterable, 0); }, sort$1: function(_, compare) { this.callMethod$2("sort", compare == null ? [] : [compare]); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P._JsArray_JsObject_ListMixin.prototype = { $indexSet: function(_, property, value) { return this.super$JsObject$$indexSet(0, property, value); } }; P.NullRejectionException.prototype = { toString$0: function(_) { return "Promise was rejected with a value of `" + (this.isUndefined ? "undefined" : "null") + "`."; }, $isException: 1 }; P.promiseToFuture_closure.prototype = { call$1: function(r) { return this.completer.complete$1(0, r); }, $signature: 81 }; P.promiseToFuture_closure0.prototype = { call$1: function(e) { if (e == null) return this.completer.completeError$1(new P.NullRejectionException(e === undefined)); return this.completer.completeError$1(e); }, $signature: 81 }; P._JSRandom.prototype = { nextInt$1: function(max) { if (max <= 0 || max > 4294967296) throw H.wrapException(P.RangeError$(string$.max_mu + max)); return Math.random() * max >>> 0; } }; P._Random.prototype = { _Random$1: function(seed) { var low, high, tmplow, low0, t1, t2, t3, _this = this, _4294967296 = 4294967296, empty_seed = seed < 0 ? -1 : 0; do { low = seed >>> 0; seed = C.JSInt_methods._tdivFast$1(seed - low, _4294967296); high = seed >>> 0; seed = C.JSInt_methods._tdivFast$1(seed - high, _4294967296); tmplow = (~low >>> 0) + (low << 21 >>> 0); low0 = tmplow >>> 0; high = (~high >>> 0) + ((high << 21 | low >>> 11) >>> 0) + C.JSInt_methods._tdivFast$1(tmplow - low0, _4294967296) >>> 0; tmplow = ((low0 ^ (low0 >>> 24 | high << 8)) >>> 0) * 265; low = tmplow >>> 0; high = ((high ^ high >>> 24) >>> 0) * 265 + C.JSInt_methods._tdivFast$1(tmplow - low, _4294967296) >>> 0; tmplow = ((low ^ (low >>> 14 | high << 18)) >>> 0) * 21; low = tmplow >>> 0; high = ((high ^ high >>> 14) >>> 0) * 21 + C.JSInt_methods._tdivFast$1(tmplow - low, _4294967296) >>> 0; low = (low ^ (low >>> 28 | high << 4)) >>> 0; high = (high ^ high >>> 28) >>> 0; tmplow = (low << 31 >>> 0) + low; low0 = tmplow >>> 0; t1 = C.JSInt_methods._tdivFast$1(tmplow - low0, _4294967296); tmplow = _this._lo * 1037; t2 = _this._lo = tmplow >>> 0; t3 = _this._hi * 1037 + C.JSInt_methods._tdivFast$1(tmplow - t2, _4294967296) >>> 0; _this._hi = t3; t2 = (t2 ^ low0) >>> 0; _this._lo = t2; t1 = (t3 ^ high + ((high << 31 | low >>> 1) >>> 0) + t1 >>> 0) >>> 0; _this._hi = t1; } while (seed !== empty_seed); if (t1 === 0 && t2 === 0) _this._lo = 23063; _this._nextState$0(); _this._nextState$0(); _this._nextState$0(); _this._nextState$0(); }, _nextState$0: function() { var _this = this, t1 = _this._lo, tmpHi = 4294901760 * t1, tmpHiLo = tmpHi >>> 0, tmpLo = 55905 * t1, tmpLoLo = tmpLo >>> 0, newLo = tmpLoLo + tmpHiLo + _this._hi; t1 = newLo >>> 0; _this._lo = t1; _this._hi = C.JSInt_methods._tdivFast$1(tmpLo - tmpLoLo + (tmpHi - tmpHiLo) + (newLo - t1), 4294967296) >>> 0; }, nextInt$1: function(max) { var t1, rnd32, result, _this = this; if (max <= 0 || max > 4294967296) throw H.wrapException(P.RangeError$(string$.max_mu + max)); t1 = max - 1; if ((max & t1) >>> 0 === 0) { _this._nextState$0(); return (_this._lo & t1) >>> 0; } do { _this._nextState$0(); rnd32 = _this._lo; result = rnd32 % max; } while (rnd32 - result + max >= 4294967296); return result; } }; P.Point.prototype = { toString$0: function(_) { return "Point(" + H.S(this.x) + ", " + H.S(this.y) + ")"; }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.Point && this.x == other.x && this.y == other.y; }, get$hashCode: function(_) { var t1 = J.get$hashCode$(this.x), t2 = J.get$hashCode$(this.y); return H.SystemHash_finish(H.SystemHash_combine(H.SystemHash_combine(0, t1), t2)); }, $add: function(_, other) { var t1 = this.$ti, t2 = t1._precomputed1; return new P.Point(t2._as(this.x + other.x), t2._as(this.y + other.y), t1); }, $sub: function(_, other) { var t1 = this.$ti, t2 = t1._precomputed1; return new P.Point(t2._as(this.x - other.x), t2._as(this.y - other.y), t1); }, $mul: function(_, factor) { var t1 = this.$ti, t2 = t1._precomputed1; return new P.Point(t2._as(this.x * factor), t2._as(this.y * factor), t1); }, distanceTo$1: function(other) { var dx = this.x - other.x, dy = this.y - other.y; return Math.sqrt(dx * dx + dy * dy); } }; P._RectangleBase.prototype = { get$right: function(_) { return this.$ti._precomputed1._as(this.left + this.width); }, get$bottom: function(_) { return this.$ti._precomputed1._as(this.top + this.height); }, toString$0: function(_) { var _this = this; return "Rectangle (" + H.S(_this.left) + ", " + H.S(_this.top) + ") " + H.S(_this.width) + " x " + H.S(_this.height); }, $eq: function(_, other) { var t1, t2, t3, t4, _this = this; if (other == null) return false; if (type$.Rectangle_num._is(other)) { t1 = _this.left; t2 = J.getInterceptor$x(other); if (t1 === t2.get$left(other)) { t3 = _this.top; if (t3 === t2.get$top(other)) { t4 = _this.$ti._precomputed1; t1 = t4._as(t1 + _this.width) === t2.get$right(other) && t4._as(t3 + _this.height) === t2.get$bottom(other); } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.left, t2 = C.JSNumber_methods.get$hashCode(t1), t3 = _this.top, t4 = C.JSNumber_methods.get$hashCode(t3), t5 = _this.$ti._precomputed1; t1 = C.JSNumber_methods.get$hashCode(t5._as(t1 + _this.width)); t3 = C.JSNumber_methods.get$hashCode(t5._as(t3 + _this.height)); return H.SystemHash_finish(H.SystemHash_combine(H.SystemHash_combine(H.SystemHash_combine(H.SystemHash_combine(0, t2), t4), t1), t3)); }, boundingBox$1: function(_, other) { var _this = this, t1 = _this.left, t2 = J.getInterceptor$x(other), right = Math.max(t1 + _this.width, t2.get$left(other) + t2.get$width(other)), t3 = _this.top, bottom = Math.max(t3 + _this.height, t2.get$top(other) + t2.get$height(other)), left = Math.min(t1, H.checkNum(t2.get$left(other))), $top = Math.min(t3, H.checkNum(t2.get$top(other))); t2 = _this.$ti._precomputed1; return P.Rectangle$(left, $top, t2._as(right - left), t2._as(bottom - $top), t2); }, containsPoint$1: function(_, another) { var _this = this, t1 = another.x, t2 = _this.left; if (t1 >= t2) if (t1 <= t2 + _this.width) { t1 = another.y; t2 = _this.top; t1 = t1 >= t2 && t1 <= t2 + _this.height; } else t1 = false; else t1 = false; return t1; }, get$topLeft: function(_) { return new P.Point(this.left, this.top, this.$ti._eval$1("Point<1>")); }, get$topRight: function(_) { var _this = this, t1 = _this.$ti; return new P.Point(t1._precomputed1._as(_this.left + _this.width), _this.top, t1._eval$1("Point<1>")); }, get$bottomRight: function(_) { var _this = this, t1 = _this.$ti, t2 = t1._precomputed1; return new P.Point(t2._as(_this.left + _this.width), t2._as(_this.top + _this.height), t1._eval$1("Point<1>")); }, get$bottomLeft: function(_) { var _this = this, t1 = _this.$ti; return new P.Point(_this.left, t1._precomputed1._as(_this.top + _this.height), t1._eval$1("Point<1>")); } }; P.Rectangle.prototype = { get$left: function(receiver) { return this.left; }, get$top: function(receiver) { return this.top; }, get$width: function(receiver) { return this.width; }, get$height: function(receiver) { return this.height; } }; P.Angle.prototype = { get$value: function(receiver) { return receiver.value; } }; P.GraphicsElement.prototype = {}; P.Length.prototype = { get$value: function(receiver) { return receiver.value; }, $isLength: 1 }; P.LengthList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, clear$0: function(receiver) { return receiver.clear(); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P.Number.prototype = { get$value: function(receiver) { return receiver.value; }, $isNumber: 1 }; P.NumberList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, clear$0: function(receiver) { return receiver.clear(); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P.PointList.prototype = { get$length: function(receiver) { return receiver.length; } }; P.Rect0.prototype = { set$height: function(receiver, value) { receiver.height = value; }, set$width: function(receiver, value) { receiver.width = value; } }; P.ScriptElement0.prototype = {$isScriptElement0: 1}; P.StringList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, clear$0: function(receiver) { return receiver.clear(); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P.SvgElement.prototype = { get$children: function(receiver) { return new P.FilteredElementList(receiver, new W._ChildNodeListLazy(receiver)); }, createFragment$3$treeSanitizer$validator: function(receiver, svg, treeSanitizer, validator) { var t1, html, t2, fragment, svgFragment, root; if (treeSanitizer == null) { t1 = H.setRuntimeTypeInfo([], type$.JSArray_NodeValidator); t1.push(W._Html5NodeValidator$(null)); t1.push(W._TemplatingNodeValidator$()); t1.push(new W._SvgNodeValidator()); treeSanitizer = new W._ValidatingTreeSanitizer(new W.NodeValidatorBuilder(t1)); } html = '' + svg + ""; t1 = document; t2 = t1.body; t2.toString; fragment = C.BodyElement_methods.createFragment$2$treeSanitizer(t2, html, treeSanitizer); svgFragment = t1.createDocumentFragment(); fragment.toString; t1 = new W._ChildNodeListLazy(fragment); root = t1.get$single(t1); for (; t1 = root.firstChild, t1 != null;) svgFragment.appendChild(t1); return svgFragment; }, focus$0: function(receiver) { return receiver.focus(); }, $isSvgElement: 1 }; P.SvgSvgElement.prototype = {$isSvgSvgElement: 1}; P.Transform0.prototype = {$isTransform0: 1}; P.TransformList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); return receiver.getItem(index); }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, clear$0: function(receiver) { return receiver.clear(); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P._LengthList_Interceptor_ListMixin.prototype = {}; P._LengthList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; P._NumberList_Interceptor_ListMixin.prototype = {}; P._NumberList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; P._StringList_Interceptor_ListMixin.prototype = {}; P._StringList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; P._TransformList_Interceptor_ListMixin.prototype = {}; P._TransformList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; P.Endian.prototype = {}; P.ClipOp.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PathFillType.prototype = { toString$0: function(_) { return this._ui$_name; } }; P._StoredMessage.prototype = { invoke$1: function(dataArg) { H.invoke1(this._callback, this._ui$_zone, dataArg, type$.nullable_ByteData); } }; P._Channel.prototype = { get$length: function(_) { var t1 = this._ui$_queue; return t1.get$length(t1); }, push$1: function(message) { var result, t1 = this._capacity; if (t1 <= 0) return true; result = this._dropOverflowMessages$1(t1 - 1); this._ui$_queue._add$1(0, message); return result; }, _dropOverflowMessages$1: function(lengthLimit) { var t1, t2, result, message; for (t1 = this._ui$_queue, t2 = type$.nullable_ByteData, result = false; (t1._tail - t1._head & t1._table.length - 1) >>> 0 > lengthLimit; result = true) { message = t1.removeFirst$0(); H.invoke1(message._callback, message._ui$_zone, null, t2); } return result; } }; P.ChannelBuffers.prototype = { push$3: function($name, data, callback) { this._channels.putIfAbsent$2(0, $name, new P.ChannelBuffers_push_closure()).push$1(new P._StoredMessage(data, callback, $.Zone__current)); }, drain$2: function($name, callback) { return this.drain$body$ChannelBuffers($name, callback); }, drain$body$ChannelBuffers: function($name, callback) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t2, channel, t1; var $async$drain$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start channel = $async$self._channels.$index(0, $name); t1 = channel != null; case 2: // while condition if (t1) { t2 = channel._ui$_queue; t2 = t2._head !== t2._tail; } else t2 = false; if (!t2) { // goto after while $async$goto = 3; break; } t2 = channel._ui$_queue.removeFirst$0(); $async$goto = 4; return P._asyncAwait(callback.call$2(t2.data, t2.get$invoke()), $async$drain$2); case 4: // returning from await. // goto while condition $async$goto = 2; break; case 3: // after while // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$drain$2, $async$completer); }, resize$2: function(_, $name, newSize) { var t1 = this._channels, channel = t1.$index(0, $name); if (channel == null) t1.$indexSet(0, $name, new P._Channel(P.ListQueue$(newSize, type$._StoredMessage), newSize)); else { channel._capacity = newSize; channel._dropOverflowMessages$1(newSize); } } }; P.ChannelBuffers_push_closure.prototype = { call$0: function() { return new P._Channel(P.ListQueue$(1, type$._StoredMessage), 1); }, $signature: 1119 }; P.OffsetBase.prototype = { $lt: function(_, other) { return C.JSNumber_methods.$lt(this._dx, other.get$_dx()) && C.JSNumber_methods.$lt(this._dy, other.get$_dy()); }, $gt: function(_, other) { return this._dx > other._dx && this._dy > other._dy; }, $ge: function(_, other) { return this._dx >= other._dx && this._dy >= other._dy; }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.OffsetBase && other._dx == this._dx && other._dy == this._dy; }, get$hashCode: function(_) { return P.hashValues(this._dx, this._dy, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "OffsetBase(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; P.Offset.prototype = { get$dx: function(_) { return this._dx; }, get$dy: function(_) { return this._dy; }, get$distance: function() { var t1 = this._dx, t2 = this._dy; return Math.sqrt(t1 * t1 + t2 * t2); }, get$distanceSquared: function() { var t1 = this._dx, t2 = this._dy; return t1 * t1 + t2 * t2; }, $sub: function(_, other) { return new P.Offset(this._dx - other._dx, this._dy - other._dy); }, $add: function(_, other) { return new P.Offset(this._dx + other._dx, this._dy + other._dy); }, $mul: function(_, operand) { return new P.Offset(this._dx * operand, this._dy * operand); }, $div: function(_, operand) { return new P.Offset(this._dx / operand, this._dy / operand); }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.Offset && other._dx == this._dx && other._dy == this._dy; }, get$hashCode: function(_) { return P.hashValues(this._dx, this._dy, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "Offset(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; P.Size.prototype = { get$isEmpty: function(_) { return this._dx <= 0 || this._dy <= 0; }, $sub: function(_, other) { var _this = this; if (other instanceof P.Size) return new P.Offset(_this._dx - other._dx, _this._dy - other._dy); if (other instanceof P.Offset) return new P.Size(_this._dx - other._dx, _this._dy - other._dy); throw H.wrapException(P.ArgumentError$(other)); }, $add: function(_, other) { return new P.Size(this._dx + other._dx, this._dy + other._dy); }, $mul: function(_, operand) { return new P.Size(this._dx * operand, this._dy * operand); }, $div: function(_, operand) { return new P.Size(this._dx / operand, this._dy / operand); }, get$shortestSide: function() { return Math.min(Math.abs(this._dx), Math.abs(this._dy)); }, get$longestSide: function() { return Math.max(Math.abs(this._dx), Math.abs(this._dy)); }, center$1: function(origin) { return new P.Offset(origin._dx + this._dx / 2, origin._dy + this._dy / 2); }, bottomRight$1: function(_, origin) { return new P.Offset(origin._dx + this._dx, origin._dy + this._dy); }, contains$1: function(_, offset) { var t1 = offset._dx; if (t1 >= 0) if (t1 < this._dx) { t1 = offset._dy; t1 = t1 >= 0 && t1 < this._dy; } else t1 = false; else t1 = false; return t1; }, $eq: function(_, other) { if (other == null) return false; return other instanceof P.Size && other._dx == this._dx && other._dy == this._dy; }, get$hashCode: function(_) { return P.hashValues(this._dx, this._dy, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "Size(" + J.toStringAsFixed$1$n(this._dx, 1) + ", " + J.toStringAsFixed$1$n(this._dy, 1) + ")"; } }; P.Rect.prototype = { get$size: function(_) { var _this = this; return new P.Size(_this.right - _this.left, _this.bottom - _this.top); }, get$isFinite: function(_) { var _this = this, t1 = _this.left; t1.toString; if (isFinite(t1)) { t1 = _this.top; t1.toString; if (isFinite(t1)) { t1 = _this.right; t1.toString; if (isFinite(t1)) { t1 = _this.bottom; t1.toString; t1 = isFinite(t1); } else t1 = false; } else t1 = false; } else t1 = false; return t1; }, get$isEmpty: function(_) { var _this = this; return _this.left >= _this.right || _this.top >= _this.bottom; }, shift$1: function(offset) { var _this = this, t1 = offset._dx, t2 = offset._dy; return new P.Rect(_this.left + t1, _this.top + t2, _this.right + t1, _this.bottom + t2); }, translate$2: function(_, translateX, translateY) { var _this = this; return new P.Rect(_this.left + translateX, _this.top + translateY, _this.right + translateX, _this.bottom + translateY); }, inflate$1: function(delta) { var _this = this; return new P.Rect(_this.left - delta, _this.top - delta, _this.right + delta, _this.bottom + delta); }, intersect$1: function(other) { var t2, t3, t4, _this = this, t1 = other.left; t1 = Math.max(H.checkNum(_this.left), H.checkNum(t1)); t2 = other.top; t2 = Math.max(H.checkNum(_this.top), H.checkNum(t2)); t3 = other.right; t3 = Math.min(H.checkNum(_this.right), H.checkNum(t3)); t4 = other.bottom; return new P.Rect(t1, t2, t3, Math.min(H.checkNum(_this.bottom), H.checkNum(t4))); }, expandToInclude$1: function(other) { var t2, t3, t4, _this = this, t1 = other.left; t1 = Math.min(H.checkNum(_this.left), H.checkNum(t1)); t2 = other.top; t2 = Math.min(H.checkNum(_this.top), H.checkNum(t2)); t3 = other.right; t3 = Math.max(H.checkNum(_this.right), H.checkNum(t3)); t4 = other.bottom; return new P.Rect(t1, t2, t3, Math.max(H.checkNum(_this.bottom), H.checkNum(t4))); }, overlaps$1: function(other) { var _this = this; if (_this.right <= other.left || other.right <= _this.left) return false; if (_this.bottom <= other.top || other.bottom <= _this.top) return false; return true; }, get$shortestSide: function() { var _this = this; return Math.min(Math.abs(_this.right - _this.left), Math.abs(_this.bottom - _this.top)); }, get$centerLeft: function() { var t1 = this.top; return new P.Offset(this.left, t1 + (this.bottom - t1) / 2); }, get$center: function() { var _this = this, t1 = _this.left, t2 = _this.top; return new P.Offset(t1 + (_this.right - t1) / 2, t2 + (_this.bottom - t2) / 2); }, contains$1: function(_, offset) { var _this = this, t1 = offset._dx; if (t1 >= _this.left) if (t1 < _this.right) { t1 = offset._dy; t1 = t1 >= _this.top && t1 < _this.bottom; } else t1 = false; else t1 = false; return t1; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (H.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof P.Rect && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.left, _this.top, _this.right, _this.bottom, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "Rect.fromLTRB(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1) + ")"; } }; P.Radius.prototype = { $sub: function(_, other) { return new P.Radius(this.x - other.x, this.y - other.y); }, $add: function(_, other) { return new P.Radius(this.x + other.x, this.y + other.y); }, $mul: function(_, operand) { return new P.Radius(this.x * operand, this.y * operand); }, $div: function(_, operand) { return new P.Radius(this.x / operand, this.y / operand); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (H.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof P.Radius && other.x == _this.x && other.y == _this.y; }, get$hashCode: function(_) { return P.hashValues(this.x, this.y, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = this.x, t2 = this.y, t3 = J.getInterceptor$n(t1); return t1 == t2 ? "Radius.circular(" + t3.toStringAsFixed$1(t1, 1) + ")" : "Radius.elliptical(" + t3.toStringAsFixed$1(t1, 1) + ", " + J.toStringAsFixed$1$n(t2, 1) + ")"; } }; P.RRect.prototype = { shift$1: function(offset) { var _this = this, t1 = offset._dx, t2 = offset._dy; return new P.RRect(_this.left + t1, _this.top + t2, _this.right + t1, _this.bottom + t2, _this.tlRadiusX, _this.tlRadiusY, _this.trRadiusX, _this.trRadiusY, _this.brRadiusX, _this.brRadiusY, _this.blRadiusX, _this.blRadiusY, false); }, inflate$1: function(delta) { var _this = this; return new P.RRect(_this.left - delta, _this.top - delta, _this.right + delta, _this.bottom + delta, _this.tlRadiusX + delta, _this.tlRadiusY + delta, _this.trRadiusX + delta, _this.trRadiusY + delta, _this.brRadiusX + delta, _this.brRadiusY + delta, _this.blRadiusX + delta, _this.blRadiusY + delta, false); }, get$isEmpty: function(_) { var _this = this; return _this.left >= _this.right || _this.top >= _this.bottom; }, _getMin$4: function(min, radius1, radius2, limit) { var sum = radius1 + radius2; if (sum > limit && sum !== 0) return Math.min(min, limit / sum); return min; }, scaleRadii$0: function() { var _this = this, t1 = _this.right, t2 = _this.left, absWidth = Math.abs(t1 - t2), t3 = _this.bottom, t4 = _this.top, absHeight = Math.abs(t3 - t4), t5 = _this.blRadiusY, t6 = _this.tlRadiusY, t7 = _this.tlRadiusX, t8 = _this.trRadiusX, t9 = _this.trRadiusY, t10 = _this.brRadiusY, t11 = _this.brRadiusX, t12 = _this.blRadiusX, scale = _this._getMin$4(_this._getMin$4(_this._getMin$4(_this._getMin$4(1, t5, t6, absHeight), t7, t8, absWidth), t9, t10, absHeight), t11, t12, absWidth); if (scale < 1) return new P.RRect(t2, t4, t1, t3, t7 * scale, t6 * scale, t8 * scale, t9 * scale, t11 * scale, t10 * scale, t12 * scale, t5 * scale, false); return new P.RRect(t2, t4, t1, t3, t7, t6, t8, t9, t11, t10, t12, t5, false); }, contains$1: function(_, point) { var t3, scaled, radiusX, x, radiusY, y, _this = this, t1 = point._dx, t2 = _this.left; if (!(t1 < t2)) if (!(t1 >= _this.right)) { t3 = point._dy; t3 = t3 < _this.top || t3 >= _this.bottom; } else t3 = true; else t3 = true; if (t3) return false; scaled = _this.scaleRadii$0(); radiusX = scaled.tlRadiusX; if (t1 < t2 + radiusX && point._dy < _this.top + scaled.tlRadiusY) { x = t1 - t2 - radiusX; radiusY = scaled.tlRadiusY; y = point._dy - _this.top - radiusY; } else { t3 = _this.right; radiusX = scaled.trRadiusX; if (t1 > t3 - radiusX && point._dy < _this.top + scaled.trRadiusY) { x = t1 - t3 + radiusX; radiusY = scaled.trRadiusY; y = point._dy - _this.top - radiusY; } else { radiusX = scaled.brRadiusX; if (t1 > t3 - radiusX && point._dy > _this.bottom - scaled.brRadiusY) { x = t1 - t3 + radiusX; radiusY = scaled.brRadiusY; y = point._dy - _this.bottom + radiusY; } else { radiusX = scaled.blRadiusX; if (t1 < t2 + radiusX && point._dy > _this.bottom - scaled.blRadiusY) { x = t1 - t2 - radiusX; radiusY = scaled.blRadiusY; y = point._dy - _this.bottom + radiusY; } else return true; } } } x /= radiusX; y /= radiusY; if (x * x + y * y > 1) return false; return true; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (H.getRuntimeType(_this) !== J.get$runtimeType$(other)) return false; return other instanceof P.RRect && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom && other.tlRadiusX == _this.tlRadiusX && other.tlRadiusY == _this.tlRadiusY && other.trRadiusX == _this.trRadiusX && other.trRadiusY == _this.trRadiusY && other.blRadiusX == _this.blRadiusX && other.blRadiusY == _this.blRadiusY && other.brRadiusX == _this.brRadiusX && other.brRadiusY == _this.brRadiusY; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.left, _this.top, _this.right, _this.bottom, _this.tlRadiusX, _this.tlRadiusY, _this.trRadiusX, _this.trRadiusY, _this.blRadiusX, _this.blRadiusY, _this.brRadiusX, _this.brRadiusY, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t5, t6, _this = this, rect = J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1), t1 = _this.tlRadiusX, t2 = _this.tlRadiusY, t3 = _this.trRadiusX, t4 = _this.trRadiusY; if (new P.Radius(t1, t2).$eq(0, new P.Radius(t3, t4))) { t5 = _this.brRadiusX; t6 = _this.brRadiusY; t5 = new P.Radius(t3, t4).$eq(0, new P.Radius(t5, t6)) && new P.Radius(t5, t6).$eq(0, new P.Radius(_this.blRadiusX, _this.blRadiusY)); } else t5 = false; if (t5) { if (t1 == t2) return "RRect.fromLTRBR(" + rect + ", " + J.toStringAsFixed$1$n(t1, 1) + ")"; return "RRect.fromLTRBXY(" + rect + ", " + J.toStringAsFixed$1$n(t1, 1) + ", " + J.toStringAsFixed$1$n(t2, 1) + ")"; } return "RRect.fromLTRBAndCorners(" + rect + ", topLeft: " + new P.Radius(t1, t2).toString$0(0) + ", topRight: " + new P.Radius(t3, t4).toString$0(0) + ", bottomRight: " + new P.Radius(_this.brRadiusX, _this.brRadiusY).toString$0(0) + ", bottomLeft: " + new P.Radius(_this.blRadiusX, _this.blRadiusY).toString$0(0) + ")"; } }; P._HashEnd.prototype = {}; P.webOnlyInitializePlatform_closure.prototype = { call$0: function() { $.$get$lineLookup(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; P.KeyEventType.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.KeyData.prototype = { toString$0: function(_) { var _this = this; return "KeyData(type: " + P.KeyData__typeToString(_this.type) + ", physical: 0x" + J.toRadixString$1$n(_this.physical, 16) + ", logical: 0x" + J.toRadixString$1$n(_this.logical, 16) + ", character: " + H.S(_this.character) + ")"; } }; P.Color.prototype = { get$red: function() { return this.get$value(this) >>> 16 & 255; }, get$green: function() { return this.get$value(this) >>> 8 & 255; }, get$blue: function() { return this.get$value(this) & 255; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof P.Color && other.get$value(other) === _this.get$value(_this); }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this.get$value(this)); }, toString$0: function(_) { return "Color(0x" + C.JSString_methods.padLeft$2(C.JSInt_methods.toRadixString$1(this.get$value(this), 16), 8, "0") + ")"; }, get$value: function(receiver) { return this.value; } }; P.StrokeCap.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.StrokeJoin.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PaintingStyle.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.BlendMode.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.Clip.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.BlurStyle.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.MaskFilter.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof P.MaskFilter && other._ui$_style === this._ui$_style && other._sigma === this._sigma; }, get$hashCode: function(_) { return P.hashValues(this._ui$_style, this._sigma, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "MaskFilter.blur(" + this._ui$_style.toString$0(0) + ", " + C.JSNumber_methods.toStringAsFixed$1(this._sigma, 1) + ")"; } }; P.FilterQuality.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.ImageByteFormat.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.webOnlyInstantiateImageCodecFromUrl_closure.prototype = { call$1: function(callback) { callback.call$1(new H.HtmlCodec(this.uri.toString$0(0), this.chunkCallback)); return null; }, $signature: 1114 }; P.Shadow.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof P.Shadow && J.$eq$(other.color, _this.color) && J.$eq$(other.offset, _this.offset) && other.blurRadius == _this.blurRadius; }, get$hashCode: function(_) { return P.hashValues(this.color, this.offset, this.blurRadius, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "TextShadow(" + H.S(this.color) + ", " + H.S(this.offset) + ", " + H.S(this.blurRadius) + ")"; } }; P.PlatformDispatcher.prototype = {}; P.PlatformConfiguration.prototype = { copyWith$3$locales$platformBrightness$semanticsEnabled: function(locales, platformBrightness, semanticsEnabled) { var _this = this, t1 = semanticsEnabled == null ? _this.semanticsEnabled : semanticsEnabled, t2 = platformBrightness == null ? _this.platformBrightness : platformBrightness, t3 = locales == null ? _this.locales : locales; return new P.PlatformConfiguration(_this.accessibilityFeatures, false, t1, t2, _this.textScaleFactor, t3, _this.defaultRouteName); }, copyWith$1$platformBrightness: function(platformBrightness) { return this.copyWith$3$locales$platformBrightness$semanticsEnabled(null, platformBrightness, null); }, copyWith$1$locales: function(locales) { return this.copyWith$3$locales$platformBrightness$semanticsEnabled(locales, null, null); }, copyWith$1$semanticsEnabled: function(semanticsEnabled) { return this.copyWith$3$locales$platformBrightness$semanticsEnabled(null, null, semanticsEnabled); } }; P.ViewConfiguration.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + "[window: null, geometry: " + C.Rect_0_0_0_0.toString$0(0) + "]"; } }; P.FrameTiming.prototype = { toString$0: function(_) { var t1 = this._timestamps; return H.getRuntimeType(this).toString$0(0) + "(buildDuration: " + (H.S((P.Duration$(0, 0, t1[2], 0, 0, 0)._duration - P.Duration$(0, 0, t1[1], 0, 0, 0)._duration) * 0.001) + "ms") + ", rasterDuration: " + (H.S((P.Duration$(0, 0, t1[4], 0, 0, 0)._duration - P.Duration$(0, 0, t1[3], 0, 0, 0)._duration) * 0.001) + "ms") + ", vsyncOverhead: " + (H.S((P.Duration$(0, 0, t1[1], 0, 0, 0)._duration - P.Duration$(0, 0, t1[0], 0, 0, 0)._duration) * 0.001) + "ms") + ", totalSpan: " + (H.S((P.Duration$(0, 0, t1[4], 0, 0, 0)._duration - P.Duration$(0, 0, t1[0], 0, 0, 0)._duration) * 0.001) + "ms") + ")"; } }; P.AppLifecycleState.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.Locale.prototype = { get$languageCode: function(_) { var t1 = this._languageCode, t2 = C.Map_YCOho.$index(0, t1); return t2 == null ? t1 : t2; }, get$countryCode: function() { var t1 = this._countryCode, t2 = C.Map_0Agg9.$index(0, t1); return t2 == null ? t1 : t2; }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (other instanceof P.Locale) if (other.get$languageCode(other) == _this.get$languageCode(_this)) t1 = other.get$countryCode() == _this.get$countryCode(); else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { return P.hashValues(this.get$languageCode(this), null, this.get$countryCode(), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return this._rawToString$1("_"); }, _rawToString$1: function(separator) { var _this = this, t1 = H.S(_this.get$languageCode(_this)); if (_this._countryCode != null) t1 += separator + H.S(_this.get$countryCode()); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; P.PointerChange.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PointerDeviceKind.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PointerSignalKind.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PointerData.prototype = { toString$0: function(_) { return "PointerData(x: " + H.S(this.physicalX) + ", y: " + H.S(this.physicalY) + ")"; } }; P.PointerDataPacket.prototype = {}; P.SemanticsAction.prototype = { toString$0: function(_) { switch (this.index) { case 1: return "SemanticsAction.tap"; case 2: return "SemanticsAction.longPress"; case 4: return "SemanticsAction.scrollLeft"; case 8: return "SemanticsAction.scrollRight"; case 16: return "SemanticsAction.scrollUp"; case 32: return "SemanticsAction.scrollDown"; case 64: return "SemanticsAction.increase"; case 128: return "SemanticsAction.decrease"; case 256: return "SemanticsAction.showOnScreen"; case 512: return "SemanticsAction.moveCursorForwardByCharacter"; case 1024: return "SemanticsAction.moveCursorBackwardByCharacter"; case 2048: return "SemanticsAction.setSelection"; case 4096: return "SemanticsAction.copy"; case 8192: return "SemanticsAction.cut"; case 16384: return "SemanticsAction.paste"; case 32768: return "SemanticsAction.didGainAccessibilityFocus"; case 65536: return "SemanticsAction.didLoseAccessibilityFocus"; case 131072: return "SemanticsAction.customAction"; case 262144: return "SemanticsAction.dismiss"; case 524288: return "SemanticsAction.moveCursorForwardByWord"; case 1048576: return "SemanticsAction.moveCursorBackwardByWord"; case 2097152: return "SemanticsAction.setText"; } return ""; } }; P.SemanticsFlag.prototype = { toString$0: function(_) { switch (this.index) { case 1: return "SemanticsFlag.hasCheckedState"; case 2: return "SemanticsFlag.isChecked"; case 4: return "SemanticsFlag.isSelected"; case 8: return "SemanticsFlag.isButton"; case 4194304: return "SemanticsFlag.isLink"; case 16: return "SemanticsFlag.isTextField"; case 2097152: return "SemanticsFlag.isFocusable"; case 32: return "SemanticsFlag.isFocused"; case 64: return "SemanticsFlag.hasEnabledState"; case 128: return "SemanticsFlag.isEnabled"; case 256: return "SemanticsFlag.isInMutuallyExclusiveGroup"; case 512: return "SemanticsFlag.isHeader"; case 1024: return "SemanticsFlag.isObscured"; case 2048: return "SemanticsFlag.scopesRoute"; case 4096: return "SemanticsFlag.namesRoute"; case 8192: return "SemanticsFlag.isHidden"; case 16384: return "SemanticsFlag.isImage"; case 32768: return "SemanticsFlag.isLiveRegion"; case 65536: return "SemanticsFlag.hasToggledState"; case 131072: return "SemanticsFlag.isToggled"; case 262144: return "SemanticsFlag.hasImplicitScrolling"; case 524288: return "SemanticsFlag.isMultiline"; case 1048576: return "SemanticsFlag.isReadOnly"; case 16777216: return "SemanticsFlag.isKeyboardKey"; } return ""; } }; P.SemanticsUpdateBuilder.prototype = {}; P.FontStyle.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.PlaceholderAlignment.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.FontWeight.prototype = { toString$0: function(_) { var t1 = C.Map_yXAeS.$index(0, this.index); t1.toString; return t1; } }; P.FontFeature.prototype = { $eq: function(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; if (other instanceof P.FontFeature) t1 = true; else t1 = false; return t1; }, get$hashCode: function(_) { return P.hashValues("tnum", 1, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "FontFeature('tnum', 1)"; }, get$value: function() { return 1; } }; P.TextAlign.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.TextBaseline.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.TextDecoration.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof P.TextDecoration && other._mask === this._mask; }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this._mask); }, toString$0: function(_) { var values, t1 = this._mask; if (t1 === 0) return "TextDecoration.none"; values = H.setRuntimeTypeInfo([], type$.JSArray_String); if ((t1 & 1) !== 0) values.push("underline"); if ((t1 & 2) !== 0) values.push("overline"); if ((t1 & 4) !== 0) values.push("lineThrough"); if (values.length === 1) return "TextDecoration." + values[0]; return "TextDecoration.combine([" + C.JSArray_methods.join$1(values, ", ") + "])"; } }; P.TextDecorationStyle.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.TextDirection.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.TextBox.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof P.TextBox && other.left == _this.left && other.top == _this.top && other.right == _this.right && other.bottom == _this.bottom && other.direction === _this.direction; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.left, _this.top, _this.right, _this.bottom, _this.direction, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "TextBox.fromLTRBD(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + J.toStringAsFixed$1$n(_this.right, 1) + ", " + J.toStringAsFixed$1$n(_this.bottom, 1) + ", " + _this.direction.toString$0(0) + ")"; } }; P.TextAffinity.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.TextPosition.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof P.TextPosition && other.offset == this.offset && other.affinity === this.affinity; }, get$hashCode: function(_) { return P.hashValues(this.offset, this.affinity, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + "(offset: " + H.S(this.offset) + ", affinity: " + this.affinity.toString$0(0) + ")"; } }; P.TextRange.prototype = { get$isValid: function() { return this.start >= 0 && this.end >= 0; }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof P.TextRange && other.start == this.start && other.end == this.end; }, get$hashCode: function(_) { return P.hashValues(J.get$hashCode$(this.start), J.get$hashCode$(this.end), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "TextRange(start: " + H.S(this.start) + ", end: " + H.S(this.end) + ")"; } }; P.ParagraphConstraints.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof P.ParagraphConstraints && other.width == this.width; }, get$hashCode: function(_) { return J.get$hashCode$(this.width); }, toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + "(width: " + H.S(this.width) + ")"; } }; P.BoxHeightStyle.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.BoxWidthStyle.prototype = { toString$0: function(_) { return "BoxWidthStyle.tight"; } }; P.TileMode.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.FlutterView.prototype = {}; P.FlutterWindow.prototype = {}; P.SingletonFlutterWindow.prototype = {}; P.AccessibilityFeatures.prototype = { toString$0: function(_) { var features = H.setRuntimeTypeInfo([], type$.JSArray_String); return "AccessibilityFeatures" + H.S(features); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof P.AccessibilityFeatures && true; }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(0); } }; P.Brightness.prototype = { toString$0: function(_) { return this._ui$_name; } }; P.CallbackHandle.prototype = { $eq: function(_, other) { if (other == null) return false; return this === other; }, get$hashCode: function(_) { return P.Object.prototype.get$hashCode.call(this, this); } }; P.PlatformViewRegistry.prototype = { registerViewFactory$2: function(viewTypeId, factory) { var t1 = this.registeredFactories; if (t1.containsKey$1(0, viewTypeId)) return false; t1.$indexSet(0, viewTypeId, factory); return true; } }; P._futurize_closure.prototype = { call$1: function(t) { var t1 = this.completer; if (t == null) t1.completeError$1(new P._Exception("operation failed")); else t1.complete$1(0, t); }, $signature: function() { return this.T._eval$1("~(0)"); } }; P.AudioBuffer.prototype = { get$length: function(receiver) { return receiver.length; } }; P.AudioParam.prototype = { get$value: function(receiver) { return receiver.value; } }; P.AudioParamMap.prototype = { addAll$1: function(receiver, other) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, containsKey$1: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)) != null; }, $index: function(receiver, key) { return P.convertNativeToDart_Dictionary(receiver.get(key)); }, forEach$1: function(receiver, f) { var entry, entries = receiver.entries(); for (; true;) { entry = entries.next(); if (entry.done) return; f.call$2(entry.value[0], P.convertNativeToDart_Dictionary(entry.value[1])); } }, get$keys: function(receiver) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_String); this.forEach$1(receiver, new P.AudioParamMap_keys_closure(keys)); return keys; }, get$values: function(receiver) { var values = H.setRuntimeTypeInfo([], type$.JSArray_Map_dynamic_dynamic); this.forEach$1(receiver, new P.AudioParamMap_values_closure(values)); return values; }, get$length: function(receiver) { return receiver.size; }, get$isEmpty: function(receiver) { return receiver.size === 0; }, get$isNotEmpty: function(receiver) { return receiver.size !== 0; }, $indexSet: function(receiver, key, value) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, putIfAbsent$2: function(receiver, key, ifAbsent) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, remove$1: function(receiver, key) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, clear$0: function(receiver) { throw H.wrapException(P.UnsupportedError$("Not supported")); }, $isMap: 1 }; P.AudioParamMap_keys_closure.prototype = { call$2: function(k, v) { return this.keys.push(k); }, $signature: 107 }; P.AudioParamMap_values_closure.prototype = { call$2: function(k, v) { return this.values.push(v); }, $signature: 107 }; P.AudioTrack.prototype = { get$id: function(receiver) { return receiver.id; } }; P.AudioTrackList.prototype = { get$length: function(receiver) { return receiver.length; } }; P.BaseAudioContext.prototype = {}; P.OfflineAudioContext.prototype = { get$length: function(receiver) { return receiver.length; } }; P._AudioParamMap_Interceptor_MapMixin.prototype = {}; P.ActiveInfo.prototype = { get$name: function(receiver) { return receiver.name; } }; P.SqlResultSetRowList.prototype = { get$length: function(receiver) { return receiver.length; }, $index: function(receiver, index) { var t1; if (index >>> 0 !== index || index >= receiver.length) throw H.wrapException(P.IndexError$(index, receiver, null, null, null)); t1 = P.convertNativeToDart_Dictionary(receiver.item(index)); t1.toString; return t1; }, $indexSet: function(receiver, index, value) { throw H.wrapException(P.UnsupportedError$("Cannot assign element of immutable List.")); }, set$length: function(receiver, value) { throw H.wrapException(P.UnsupportedError$("Cannot resize immutable List.")); }, get$first: function(receiver) { if (receiver.length > 0) return receiver[0]; throw H.wrapException(P.StateError$("No elements")); }, get$last: function(receiver) { var len = receiver.length; if (len > 0) return receiver[len - 1]; throw H.wrapException(P.StateError$("No elements")); }, elementAt$1: function(receiver, index) { return this.$index(receiver, index); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; P._SqlResultSetRowList_Interceptor_ListMixin.prototype = {}; P._SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin.prototype = {}; D.GZipEncoder.prototype = { encode$1: function(data) { var fileModTime, t1, t2, t3, t4, t5, t6, t7, deflate, _null = null, output_stream = Q.OutputStream$(32768); output_stream.writeUint16$1(35615); output_stream.writeByte$1(8); fileModTime = C.JSInt_methods._tdivFast$1(Date.now(), 1000); output_stream.writeByte$1(0); output_stream.writeUint32$1(fileModTime); output_stream.writeByte$1(0); output_stream.writeByte$1(255); if (type$.List_int._is(data)) { t1 = T._HuffmanTree$(); t2 = T._HuffmanTree$(); t3 = T._HuffmanTree$(); t4 = new Uint16Array(16); t5 = new Uint32Array(573); t6 = new Uint8Array(573); t7 = T.InputStream$(data, 0, _null, 0); deflate = new T.Deflate(t7, output_stream, t1, t2, t3, t4, t5, t6); deflate._init$1(_null); deflate._deflate$1(4); } else { type$.InputStreamBase._as(data); t1 = T._HuffmanTree$(); t2 = T._HuffmanTree$(); t3 = T._HuffmanTree$(); t4 = new Uint16Array(16); t5 = new Uint32Array(573); t6 = new Uint8Array(573); deflate = new T.Deflate(data, output_stream, t1, t2, t3, t4, t5, t6); deflate._init$1(_null); deflate._deflate$1(4); } output_stream.writeUint32$1(deflate.crc32); output_stream.writeUint32$1(J.get$length$asx(data)); t1 = C.NativeByteBuffer_methods.asUint8List$2(output_stream._output_stream$_buffer.buffer, 0, output_stream._output_stream$_length); return t1; } }; R.ArchiveException.prototype = {}; T.InputStreamBase.prototype = {}; T.InputStream.prototype = { get$length: function(_) { var _this = this; return _this.get$_input_stream$_length(_this) - (_this.offset - _this.start); }, get$isEOS: function() { var _this = this; return _this.offset >= _this.start + _this.get$_input_stream$_length(_this); }, $index: function(_, index) { return J.$index$asx(this.buffer, this.offset + index); }, readByte$0: function() { return J.$index$asx(this.buffer, this.offset++); }, readBytes$1: function(count) { var _this = this, t1 = _this.start, position = _this.offset - t1 + t1, $length = count == null || count < 0 ? _this.get$_input_stream$_length(_this) - (position - t1) : count, bytes = T.InputStream$(_this.buffer, _this.byteOrder, $length, position); _this.offset = _this.offset + bytes.get$length(bytes); return bytes; }, readString$0: function() { var t1, t2, t3, t4, t5, _this = this, codes = H.setRuntimeTypeInfo([], type$.JSArray_int); if (_this.get$isEOS()) return ""; t1 = _this.start; t2 = _this.buffer; t3 = J.getInterceptor$asx(t2); while (true) { t4 = _this.offset; t5 = _this.__InputStream__length; if (!(t4 < t1 + (t5 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t5))) break; _this.offset = t4 + 1; t4 = t3.$index(t2, t4); if (t4 === 0) { t1 = new P.Utf8Decoder(false).convert$1(codes); return t1; } codes.push(t4); } throw H.wrapException(R.ArchiveException$("EOF reached without finding string terminator")); }, readUint16$0: function() { var _this = this, t1 = _this.buffer, t2 = J.getInterceptor$asx(t1), b1 = t2.$index(t1, _this.offset++) & 255, b2 = t2.$index(t1, _this.offset++) & 255; if (_this.byteOrder === 1) return b1 << 8 | b2; return b2 << 8 | b1; }, readUint32$0: function() { var _this = this, t1 = _this.buffer, t2 = J.getInterceptor$asx(t1), b1 = t2.$index(t1, _this.offset++) & 255, b2 = t2.$index(t1, _this.offset++) & 255, b3 = t2.$index(t1, _this.offset++) & 255, b4 = t2.$index(t1, _this.offset++) & 255; if (_this.byteOrder === 1) return (b1 << 24 | b2 << 16 | b3 << 8 | b4) >>> 0; return (b4 << 24 | b3 << 16 | b2 << 8 | b1) >>> 0; }, toUint8List$0: function() { var t2, end, _this = this, len = _this.get$length(_this), t1 = _this.buffer; if (type$.Uint8List._is(t1)) { t2 = J.getInterceptor$asx(t1); if (_this.offset + len > t2.get$length(t1)) len = t2.get$length(t1) - _this.offset; return J.asUint8List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + _this.offset, len); } end = _this.offset + len; t2 = J.getInterceptor$asx(t1); if (end > t2.get$length(t1)) end = t2.get$length(t1); return new Uint8Array(H._ensureNativeList(t2.sublist$2(t1, _this.offset, end))); }, get$_input_stream$_length: function(_) { var t1 = this.__InputStream__length; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t1; } }; Q.OutputStreamBase.prototype = {}; Q.OutputStream.prototype = { get$length: function(_) { return this._output_stream$_length; }, writeByte$1: function(value) { var _this = this; if (_this._output_stream$_length === _this._output_stream$_buffer.length) _this._expandBuffer$0(); _this._output_stream$_buffer[_this._output_stream$_length++] = value & 255; }, writeBytes$2: function(bytes, len) { var t1, t2, t3, t4, _this = this; if (len == null) len = J.get$length$asx(bytes); for (; t1 = _this._output_stream$_length, t2 = t1 + len, t3 = _this._output_stream$_buffer, t4 = t3.length, t2 > t4;) _this._expandBuffer$1(t2 - t4); C.NativeUint8List_methods.setRange$3(t3, t1, t2, bytes); _this._output_stream$_length += len; }, writeBytes$1: function(bytes) { return this.writeBytes$2(bytes, null); }, writeInputStream$1: function(stream) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = stream.start; while (true) { t2 = _this._output_stream$_length; t3 = stream.__InputStream__length; t4 = t3 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t3; t5 = stream.offset - t1; t6 = _this._output_stream$_buffer; t7 = t6.length; if (!(t2 + (t4 - t5) > t7)) break; _this._expandBuffer$1(t2 + (t3 - t5) - t7); } C.NativeUint8List_methods.setRange$4(t6, t2, t2 + stream.get$length(stream), stream.buffer, stream.offset); _this._output_stream$_length = _this._output_stream$_length + stream.get$length(stream); }, writeUint16$1: function(value) { this.writeByte$1(value & 255); this.writeByte$1(value >>> 8 & 255); }, writeUint32$1: function(value) { var _this = this; _this.writeByte$1(value & 255); _this.writeByte$1(C.JSInt_methods._shrOtherPositive$1(value, 8) & 255); _this.writeByte$1(C.JSInt_methods._shrOtherPositive$1(value, 16) & 255); _this.writeByte$1(C.JSInt_methods._shrOtherPositive$1(value, 24) & 255); }, subset$2: function(start, end) { var _this = this; if (start < 0) start = _this._output_stream$_length + start; if (end == null) end = _this._output_stream$_length; else if (end < 0) end = _this._output_stream$_length + end; return C.NativeByteBuffer_methods.asUint8List$2(_this._output_stream$_buffer.buffer, start, end - start); }, subset$1: function(start) { return this.subset$2(start, null); }, _expandBuffer$1: function(required) { var blockSize = required != null ? required > 32768 ? required : 32768 : 32768, t1 = this._output_stream$_buffer, t2 = t1.length, newBuffer = new Uint8Array((t2 + blockSize) * 2); C.NativeUint8List_methods.setRange$3(newBuffer, 0, t2, t1); this._output_stream$_buffer = newBuffer; }, _expandBuffer$0: function() { return this._expandBuffer$1(null); } }; T.Deflate.prototype = { _init$1: function(level) { var t1, _this = this; $.Deflate____config = _this._getConfig$1(6); _this.__Deflate__dynamicLengthTree = new Uint16Array(1146); _this.__Deflate__dynamicDistTree = new Uint16Array(122); _this.__Deflate__bitLengthTree = new Uint16Array(78); _this.__Deflate__windowBits = 15; _this.__Deflate__windowSize = 32768; _this.__Deflate__windowMask = _this.get$_windowSize() - 1; _this.__Deflate__hashBits = 15; _this.__Deflate__hashSize = C.JSInt_methods.$shl(1, _this.get$_hashBits()); _this.__Deflate__hashMask = _this.get$_hashSize() - 1; _this.__Deflate__hashShift = C.JSInt_methods._tdivFast$1(_this.get$_hashBits() + 3 - 1, 3); t1 = _this.get$_windowSize(); _this.__Deflate__window = new Uint8Array(t1 * 2); t1 = _this.get$_windowSize(); if (!H._isInt(t1)) H.throwExpression(P.ArgumentError$("Invalid length " + H.S(t1))); _this.__Deflate__prev = new Uint16Array(t1); t1 = _this.get$_hashSize(); if (!H._isInt(t1)) H.throwExpression(P.ArgumentError$("Invalid length " + H.S(t1))); _this.__Deflate__head = new Uint16Array(t1); _this.__Deflate__litBufferSize = 16384; t1 = _this.get$_litBufferSize(); _this.__Deflate__pendingBuffer = new Uint8Array(t1 * 4); _this.__Deflate__pendingBufferSize = _this.get$_litBufferSize() * 4; _this.__Deflate__dbuf = _this.get$_litBufferSize(); _this.__Deflate__lbuf = 3 * _this.get$_litBufferSize(); _this.__Deflate__level = 6; _this.__Deflate__pendingOut = _this.__Deflate__pending = _this.__Deflate__strategy = 0; _this._deflate$_status = 113; _this.crc32 = 0; t1 = _this._lDesc; t1.___HuffmanTree_dynamicTree = _this.get$_dynamicLengthTree(); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticLDesc(); t1 = _this._dDesc; t1.___HuffmanTree_dynamicTree = _this.get$_dynamicDistTree(); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticDDesc(); t1 = _this._blDesc; t1.___HuffmanTree_dynamicTree = _this.get$_bitLengthTree(); t1.___HuffmanTree_staticDesc = $.$get$_StaticTree_staticBlDesc(); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; _this.__Deflate__lastEOBLen = 8; _this._initBlock$0(); _this._lmInit$0(); }, _deflate$1: function(flush) { var t1, bstate, i, _this = this; if (flush > 4 || false) throw H.wrapException(R.ArchiveException$("Invalid Deflate Parameter")); if (_this.get$_deflate$_pending() !== 0) _this._deflate$_flushPending$0(); if (_this._deflate$_input.get$isEOS()) if (_this.get$_lookAhead() === 0) t1 = flush !== 0 && _this._deflate$_status !== 666; else t1 = true; else t1 = true; if (t1) { t1 = $.Deflate____config; switch ((t1 === $ ? H.throwExpression(H.LateError$fieldNI("_config")) : t1).$function) { case 0: bstate = _this._deflateStored$1(flush); break; case 1: bstate = _this._deflateFast$1(flush); break; case 2: bstate = _this._deflateSlow$1(flush); break; default: bstate = -1; break; } t1 = bstate === 2; if (t1 || bstate === 3) _this._deflate$_status = 666; if (bstate === 0 || t1) return 0; if (bstate === 1) { if (flush === 1) { _this._sendBits$2(2, 3); _this._sendCode$2(256, C.List_Xg4); _this.biFlush$0(); t1 = _this.__Deflate__lastEOBLen; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_lastEOBLen")); if (1 + t1 + 10 - _this.get$_numValidBits() < 9) { _this._sendBits$2(2, 3); _this._sendCode$2(256, C.List_Xg4); _this.biFlush$0(); } _this.__Deflate__lastEOBLen = 7; } else { _this._trStoredBlock$3(0, 0, false); if (flush === 3) { i = 0; while (true) { t1 = _this.__Deflate__hashSize; if (!(i < (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashSize")) : t1))) break; t1 = _this.__Deflate__head; (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t1)[i] = 0; ++i; } } } _this._deflate$_flushPending$0(); } } if (flush !== 4) return 0; return 1; }, _lmInit$0: function() { var i, t1, _this = this; _this.__Deflate__actualWindowSize = 2 * _this.get$_windowSize(); _this.get$_deflate$_head(_this)[_this.get$_hashSize() - 1] = 0; i = 0; while (true) { t1 = _this.__Deflate__hashSize; if (!(i < (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashSize")) : t1) - 1)) break; t1 = _this.__Deflate__head; (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t1)[i] = 0; ++i; } _this.__Deflate__lookAhead = _this.__Deflate__blockStart = _this.__Deflate__strStart = 0; _this.__Deflate__matchLength = _this.__Deflate__prevLength = 2; _this.__Deflate__insertHash = _this.__Deflate__matchAvailable = 0; }, _initBlock$0: function() { var i, t1, _this = this; for (i = 0; i < 286; ++i) { t1 = _this.__Deflate__dynamicLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_dynamicLengthTree")); t1[i * 2] = 0; } for (i = 0; i < 30; ++i) { t1 = _this.__Deflate__dynamicDistTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_dynamicDistTree")); t1[i * 2] = 0; } for (i = 0; i < 19; ++i) { t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_bitLengthTree")); t1[i * 2] = 0; } _this.get$_dynamicLengthTree()[512] = 1; _this.__Deflate__lastLit = _this.__Deflate__matches = _this.__Deflate__optimalLen = _this.__Deflate__staticLen = 0; }, _pqdownheap$2: function(tree, k) { var t3, j0, t1 = this._heap, v = t1[k], j = k << 1 >>> 0, t2 = this._deflate$_depth; while (true) { t3 = this.__Deflate__heapLen; if (!(j <= (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_heapLen")) : t3))) break; if (j < t3 && T.Deflate__smaller(tree, t1[j + 1], t1[j], t2)) ++j; if (T.Deflate__smaller(tree, v, t1[j], t2)) break; t1[k] = t1[j]; j0 = j << 1 >>> 0; k = j; j = j0; } t1[k] = v; }, _scanTree$2: function(tree, max_code) { var max_count, min_count, n, prevlen, count, nextlen0, t1, t2, t3, _this = this, _s14_ = "_bitLengthTree", nextlen = tree[1]; if (nextlen === 0) { max_count = 138; min_count = 3; } else { max_count = 7; min_count = 4; } tree[(max_code + 1) * 2 + 1] = 65535; for (n = 0, prevlen = -1, count = 0; n <= max_code; nextlen = nextlen0) { ++n; nextlen0 = tree[n * 2 + 1]; ++count; if (count < max_count && nextlen === nextlen0) continue; else if (count < min_count) { t1 = _this.__Deflate__bitLengthTree; t2 = t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s14_)) : t1; t3 = nextlen * 2; t2[t3] = t1[t3] + count; } else if (nextlen !== 0) { if (nextlen !== prevlen) { t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); t2 = nextlen * 2; t1[t2] = t1[t2] + 1; } t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); t1[32] = t1[32] + 1; } else { t1 = _this.__Deflate__bitLengthTree; if (count <= 10) { if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); t1[34] = t1[34] + 1; } else { if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); t1[36] = t1[36] + 1; } } if (nextlen0 === 0) { max_count = 138; min_count = 3; } else if (nextlen === nextlen0) { max_count = 6; min_count = 3; } else { max_count = 7; min_count = 4; } prevlen = nextlen; count = 0; } }, _buildBitLengthTree$0: function() { var max_blindex, t1, _this = this; _this._scanTree$2(_this.get$_dynamicLengthTree(), _this._lDesc.get$maxCode()); _this._scanTree$2(_this.get$_dynamicDistTree(), _this._dDesc.get$maxCode()); _this._blDesc._buildTree$1(_this); for (max_blindex = 18; max_blindex >= 3; --max_blindex) { t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_bitLengthTree")); if (t1[C.List_uSC[max_blindex] * 2 + 1] !== 0) break; } _this.__Deflate__optimalLen = _this.get$_optimalLen() + (3 * (max_blindex + 1) + 5 + 5 + 4); return max_blindex; }, _sendAllTrees$3: function(lcodes, dcodes, blcodes) { var t1, rank, t2, _this = this; _this._sendBits$2(lcodes - 257, 5); t1 = dcodes - 1; _this._sendBits$2(t1, 5); _this._sendBits$2(blcodes - 4, 4); for (rank = 0; rank < blcodes; ++rank) { t2 = _this.__Deflate__bitLengthTree; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_bitLengthTree")); _this._sendBits$2(t2[C.List_uSC[rank] * 2 + 1], 3); } _this._sendTree$2(_this.get$_dynamicLengthTree(), lcodes - 1); _this._sendTree$2(_this.get$_dynamicDistTree(), t1); }, _sendTree$2: function(tree, max_code) { var max_count, min_count, n, prevlen, count, nextlen0, t1, t2, t3, _this = this, _s14_ = "_bitLengthTree", nextlen = tree[1]; if (nextlen === 0) { max_count = 138; min_count = 3; } else { max_count = 7; min_count = 4; } for (n = 0, prevlen = -1, count = 0; n <= max_code; nextlen = nextlen0) { ++n; nextlen0 = tree[n * 2 + 1]; ++count; if (count < max_count && nextlen === nextlen0) continue; else if (count < min_count) { t1 = nextlen * 2; t2 = t1 + 1; do { t3 = _this.__Deflate__bitLengthTree; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s14_)); _this._sendBits$2(t3[t1] & 65535, t3[t2] & 65535); } while (--count, count !== 0); } else if (nextlen !== 0) { if (nextlen !== prevlen) { t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); t2 = nextlen * 2; _this._sendBits$2(t1[t2] & 65535, t1[t2 + 1] & 65535); --count; } t1 = _this.__Deflate__bitLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); _this._sendBits$2(t1[32] & 65535, t1[33] & 65535); _this._sendBits$2(count - 3, 2); } else { t1 = _this.__Deflate__bitLengthTree; if (count <= 10) { if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); _this._sendBits$2(t1[34] & 65535, t1[35] & 65535); _this._sendBits$2(count - 3, 3); } else { if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s14_)); _this._sendBits$2(t1[36] & 65535, t1[37] & 65535); _this._sendBits$2(count - 11, 7); } } if (nextlen0 === 0) { max_count = 138; min_count = 3; } else if (nextlen === nextlen0) { max_count = 6; min_count = 3; } else { max_count = 7; min_count = 4; } prevlen = nextlen; count = 0; } }, _putBytes$3: function(p, start, len) { var _this = this; if (len === 0) return; J.setRange$4$ax(_this.get$_pendingBuffer(), _this.get$_deflate$_pending(), _this.get$_deflate$_pending() + len, p, start); _this.__Deflate__pending = _this.get$_deflate$_pending() + len; }, _putByte$1: function(c) { var t1 = this.get$_pendingBuffer(), t2 = this.get$_deflate$_pending(); this.__Deflate__pending = t2 + 1; J.$indexSet$ax(t1, t2, c); }, _sendCode$2: function(c, tree) { var t1 = c * 2; this._sendBits$2(tree[t1] & 65535, tree[t1 + 1] & 65535); }, _sendBits$2: function(value_Renamed, $length) { var t1, _this = this; if (_this.get$_numValidBits() > 16 - $length) { _this.__Deflate__bitBuffer = (_this.get$_bitBuffer() | C.JSInt_methods.$shl(value_Renamed, _this.get$_numValidBits()) & 65535) >>> 0; t1 = _this.get$_bitBuffer(); _this._putByte$1(t1); _this._putByte$1(T._rshift(t1, 8)); _this.__Deflate__bitBuffer = T._rshift(value_Renamed, 16 - _this.get$_numValidBits()); _this.__Deflate__numValidBits = _this.get$_numValidBits() + ($length - 16); } else { _this.__Deflate__bitBuffer = (_this.get$_bitBuffer() | C.JSInt_methods.$shl(value_Renamed, _this.get$_numValidBits()) & 65535) >>> 0; _this.__Deflate__numValidBits = _this.get$_numValidBits() + $length; } }, _trTally$2: function(dist, lc) { var t1, t2, out_length, dcode, t3, _this = this; J.$indexSet$ax(_this.get$_pendingBuffer(), _this.get$_dbuf() + _this.get$_lastLit() * 2, T._rshift(dist, 8)); J.$indexSet$ax(_this.get$_pendingBuffer(), _this.get$_dbuf() + _this.get$_lastLit() * 2 + 1, dist); J.$indexSet$ax(_this.get$_pendingBuffer(), _this.get$_lbuf() + _this.get$_lastLit(), lc); _this.__Deflate__lastLit = _this.get$_lastLit() + 1; if (dist === 0) { t1 = _this.get$_dynamicLengthTree(); t2 = lc * 2; t1[t2] = t1[t2] + 1; } else { _this.__Deflate__matches = _this.get$_matches() + 1; t1 = _this.get$_dynamicLengthTree(); t2 = (C.List_NUU[lc] + 256 + 1) * 2; t1[t2] = t1[t2] + 1; t2 = _this.get$_dynamicDistTree(); t1 = T._HuffmanTree__dCode(dist - 1) * 2; t2[t1] = t2[t1] + 1; } if ((_this.get$_lastLit() & 8191) === 0 && _this.get$_deflate$_level() > 2) { out_length = _this.get$_lastLit() * 8; t1 = _this.get$_strStart(); t2 = _this.get$_blockStart(); for (dcode = 0; dcode < 30; ++dcode) { t3 = _this.__Deflate__dynamicDistTree; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_dynamicDistTree")); out_length += t3[dcode * 2] * (5 + C.List_X3d[dcode]); } out_length = T._rshift(out_length, 3); if (_this.get$_matches() < _this.get$_lastLit() / 2 && out_length < (t1 - t2) / 2) return true; } return _this.get$_lastLit() === _this.get$_litBufferSize() - 1; }, _compressBlock$2: function(ltree, dtree) { var lx, code, extra, t1, dist, lc, _this = this; if (_this.get$_lastLit() !== 0) { lx = 0; code = null; extra = null; do { t1 = lx * 2; dist = J.$index$asx(_this.get$_pendingBuffer(), _this.get$_dbuf() + t1) << 8 & 65280 | J.$index$asx(_this.get$_pendingBuffer(), _this.get$_dbuf() + t1 + 1) & 255; lc = J.$index$asx(_this.get$_pendingBuffer(), _this.get$_lbuf() + lx) & 255; ++lx; if (dist === 0) _this._sendCode$2(lc, ltree); else { code = C.List_NUU[lc]; _this._sendCode$2(code + 256 + 1, ltree); extra = C.List_qQn[code]; if (extra !== 0) _this._sendBits$2(lc - C.List_qQn0[code], extra); --dist; code = T._HuffmanTree__dCode(dist); _this._sendCode$2(code, dtree); extra = C.List_X3d[code]; if (extra !== 0) _this._sendBits$2(dist - C.List_X3d0[code], extra); } } while (lx < _this.get$_lastLit()); } _this._sendCode$2(256, ltree); _this.__Deflate__lastEOBLen = ltree[513]; }, setDataType$0: function() { var n, bin_freq, t1, ascii_freq, _this = this, _s18_ = "_dynamicLengthTree"; for (n = 0, bin_freq = 0; n < 7;) { t1 = _this.__Deflate__dynamicLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s18_)); bin_freq += t1[n * 2]; ++n; } for (ascii_freq = 0; n < 128;) { t1 = _this.__Deflate__dynamicLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s18_)); ascii_freq += t1[n * 2]; ++n; } for (; n < 256;) { t1 = _this.__Deflate__dynamicLengthTree; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI(_s18_)); bin_freq += t1[n * 2]; ++n; } _this._dataType = bin_freq > T._rshift(ascii_freq, 2) ? 0 : 1; }, biFlush$0: function() { var t1, _this = this; if (_this.get$_numValidBits() === 16) { t1 = _this.get$_bitBuffer(); _this._putByte$1(t1); _this._putByte$1(T._rshift(t1, 8)); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; } else if (_this.get$_numValidBits() >= 8) { _this._putByte$1(_this.get$_bitBuffer()); _this.__Deflate__bitBuffer = T._rshift(_this.get$_bitBuffer(), 8); _this.__Deflate__numValidBits = _this.get$_numValidBits() - 8; } }, _biWindup$0: function() { var t1, _this = this; if (_this.get$_numValidBits() > 8) { t1 = _this.get$_bitBuffer(); _this._putByte$1(t1); _this._putByte$1(T._rshift(t1, 8)); } else if (_this.get$_numValidBits() > 0) _this._putByte$1(_this.get$_bitBuffer()); _this.__Deflate__numValidBits = _this.__Deflate__bitBuffer = 0; }, _flushBlockOnly$1: function(eof) { var max_blindex, optLenb, staticLenb, _this = this, t1 = _this.get$_blockStart() >= 0 ? _this.get$_blockStart() : -1, t2 = _this.get$_strStart() - _this.get$_blockStart(); if (_this.get$_deflate$_level() > 0) { if (_this._dataType === 2) _this.setDataType$0(); _this._lDesc._buildTree$1(_this); _this._dDesc._buildTree$1(_this); max_blindex = _this._buildBitLengthTree$0(); optLenb = T._rshift(_this.get$_optimalLen() + 3 + 7, 3); staticLenb = T._rshift(_this.get$_staticLen() + 3 + 7, 3); if (staticLenb <= optLenb) optLenb = staticLenb; } else { staticLenb = t2 + 5; optLenb = staticLenb; max_blindex = 0; } if (t2 + 4 <= optLenb && t1 !== -1) _this._trStoredBlock$3(t1, t2, eof); else if (staticLenb === optLenb) { _this._sendBits$2(2 + (eof ? 1 : 0), 3); _this._compressBlock$2(C.List_Xg4, C.List_iYO); } else { _this._sendBits$2(4 + (eof ? 1 : 0), 3); _this._sendAllTrees$3(_this._lDesc.get$maxCode() + 1, _this._dDesc.get$maxCode() + 1, max_blindex + 1); _this._compressBlock$2(_this.get$_dynamicLengthTree(), _this.get$_dynamicDistTree()); } _this._initBlock$0(); if (eof) _this._biWindup$0(); _this.__Deflate__blockStart = _this.get$_strStart(); _this._deflate$_flushPending$0(); }, _deflateStored$1: function(flush) { var t1, t2, t3, maxStart, t4, _this = this, _s10_ = "_lookAhead", _s9_ = "_strStart", _s11_ = "_blockStart", maxBlockSize = 65535 > _this.get$_pendingBufferSize() - 5 ? _this.get$_pendingBufferSize() - 5 : 65535; for (t1 = flush === 0; true;) { t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) <= 1) { _this._fillWindow$0(); t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) === 0 && t1) return 0; if (t2 === 0) break; } t3 = _this.__Deflate__strStart; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s9_)); t2 = _this.__Deflate__strStart = t3 + (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2); _this.__Deflate__lookAhead = 0; t3 = _this.__Deflate__blockStart; maxStart = (t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t3) + maxBlockSize; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) >= maxStart) { _this.__Deflate__lookAhead = t2 - maxStart; _this.__Deflate__strStart = maxStart; _this._flushBlockOnly$1(false); } t2 = _this.__Deflate__strStart; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s9_)); t3 = _this.__Deflate__blockStart; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s11_)); t4 = _this.__Deflate__windowSize; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("_windowSize")); if (t2 - t3 >= t4 - 262) _this._flushBlockOnly$1(false); } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _trStoredBlock$3: function(buf, storedLen, eof) { var t1, _this = this; _this._sendBits$2(eof ? 1 : 0, 3); _this._biWindup$0(); _this.__Deflate__lastEOBLen = 8; _this._putByte$1(storedLen); _this._putByte$1(T._rshift(storedLen, 8)); t1 = (~storedLen >>> 0) + 65536 & 65535; _this._putByte$1(t1); _this._putByte$1(T._rshift(t1, 8)); _this._putBytes$3(_this.get$_deflate$_window(), buf, storedLen); }, _fillWindow$0: function() { var t2, more, n, p, m, _this = this, t1 = _this._deflate$_input; do { t2 = _this.__Deflate__actualWindowSize; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_actualWindowSize")); more = t2 - _this.get$_lookAhead() - _this.get$_strStart(); if (more === 0 && _this.get$_strStart() === 0 && _this.get$_lookAhead() === 0) more = _this.get$_windowSize(); else if (_this.get$_strStart() >= _this.get$_windowSize() + _this.get$_windowSize() - 262) { J.setRange$4$ax(_this.get$_deflate$_window(), 0, _this.get$_windowSize(), _this.get$_deflate$_window(), _this.get$_windowSize()); _this._matchStart = _this._matchStart - _this.get$_windowSize(); _this.__Deflate__strStart = _this.get$_strStart() - _this.get$_windowSize(); _this.__Deflate__blockStart = _this.get$_blockStart() - _this.get$_windowSize(); n = _this.get$_hashSize(); p = n; do { --p; m = _this.get$_deflate$_head(_this)[p] & 65535; t2 = _this.get$_deflate$_head(_this); t2[p] = m >= _this.get$_windowSize() ? m - _this.get$_windowSize() : 0; } while (--n, n !== 0); n = _this.get$_windowSize(); p = n; do { --p; m = _this.get$_prev()[p] & 65535; t2 = _this.get$_prev(); t2[p] = m >= _this.get$_windowSize() ? m - _this.get$_windowSize() : 0; } while (--n, n !== 0); more += _this.get$_windowSize(); } if (t1.get$isEOS()) return; n = _this._readBuf$3(_this.get$_deflate$_window(), _this.get$_strStart() + _this.get$_lookAhead(), more); _this.__Deflate__lookAhead = _this.get$_lookAhead() + n; if (_this.get$_lookAhead() >= 3) { _this.__Deflate__insertHash = J.$index$asx(_this.get$_deflate$_window(), _this.get$_strStart()) & 255; _this.__Deflate__insertHash = ((C.JSInt_methods.$shl(_this.get$_insertHash(), _this.get$_hashShift()) ^ J.$index$asx(_this.get$_deflate$_window(), _this.get$_strStart() + 1) & 255) & _this.get$_hashMask()) >>> 0; } } while (_this.get$_lookAhead() < 262 && !t1.get$isEOS()); }, _deflateFast$1: function(flush) { var t1, hash_head, t2, t3, t4, t5, t6, t7, bflush, _this = this, _s10_ = "_lookAhead", _s11_ = "_insertHash", _s10_0 = "_hashShift", _s7_ = "_window", _s9_ = "_strStart", _s9_0 = "_hashMask", _s11_0 = "_windowMask", _s12_ = "_matchLength"; for (t1 = flush === 0, hash_head = 0; true;) { t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) < 262) { _this._fillWindow$0(); t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) < 262 && t1) return 0; if (t2 === 0) break; } if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) >= 3) { t2 = _this.__Deflate__insertHash; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s11_)); t3 = _this.__Deflate__hashShift; t2 = C.JSInt_methods.$shl(t2, t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_0)) : t3); t3 = _this.__Deflate__window; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s7_)); t4 = _this.__Deflate__strStart; t3 = J.$index$asx(t3, (t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4) + 2); t4 = _this.__Deflate__hashMask; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_0)); t4 = _this.__Deflate__insertHash = ((t2 ^ t3 & 255) & t4) >>> 0; t3 = _this.__Deflate__head; t2 = t3 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t3; hash_head = t2[t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t4] & 65535; t2 = _this.__Deflate__prev; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_prev")); t5 = _this.__Deflate__strStart; t6 = t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5; t7 = _this.__Deflate__windowMask; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI(_s11_0)); t2[(t6 & t7) >>> 0] = t3[t4]; t3[t4] = t5; } if (hash_head !== 0) { t2 = _this.__Deflate__strStart; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s9_)); t3 = _this.__Deflate__windowSize; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_windowSize")); t3 = (t2 - hash_head & 65535) <= t3 - 262; t2 = t3; } else t2 = false; if (t2) { t2 = _this.__Deflate__strategy; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI("_strategy")) : t2) !== 2) _this.__Deflate__matchLength = _this._longestMatch$1(hash_head); } t2 = _this.__Deflate__matchLength; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t2) >= 3) { t3 = _this.__Deflate__strStart; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s9_)); t4 = _this._matchStart; bflush = _this._trTally$2(t3 - t4, t2 - 3); t2 = _this.__Deflate__lookAhead; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s10_)); t3 = _this.__Deflate__matchLength; t2 = _this.__Deflate__lookAhead = t2 - (t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t3); t4 = $.Deflate____config; if (t3 <= (t4 === $ ? H.throwExpression(H.LateError$fieldNI("_config")) : t4).maxLazy) t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) >= 3; else t2 = false; if (t2) { _this.__Deflate__matchLength = t3 - 1; do { t2 = _this.__Deflate__strStart; t2 = _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; t3 = _this.__Deflate__insertHash; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s11_)); t4 = _this.__Deflate__hashShift; t3 = C.JSInt_methods.$shl(t3, t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_0)) : t4); t4 = _this.__Deflate__window; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s7_)); t2 = J.$index$asx(t4, (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 2); t4 = _this.__Deflate__hashMask; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_0)); t4 = _this.__Deflate__insertHash = ((t3 ^ t2 & 255) & t4) >>> 0; t2 = _this.__Deflate__head; t3 = t2 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t2; hash_head = t3[t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t4] & 65535; t3 = _this.__Deflate__prev; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_prev")); t5 = _this.__Deflate__strStart; t6 = t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5; t7 = _this.__Deflate__windowMask; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI(_s11_0)); t3[(t6 & t7) >>> 0] = t2[t4]; t2[t4] = t5; t2 = _this.__Deflate__matchLength; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t2) - 1; _this.__Deflate__matchLength = t2; } while (t2 !== 0); _this.__Deflate__strStart = t5 + 1; } else { t2 = _this.__Deflate__strStart; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s9_)); t2 = _this.__Deflate__strStart = t2 + t3; _this.__Deflate__matchLength = 0; t3 = _this.__Deflate__window; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s7_)); t2 = _this.__Deflate__insertHash = J.$index$asx(t3, t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) & 255; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s11_)); t3 = _this.__Deflate__hashShift; t2 = C.JSInt_methods.$shl(t2, t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_0)) : t3); t3 = _this.__Deflate__window; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s7_)); t4 = _this.__Deflate__strStart; t3 = J.$index$asx(t3, (t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4) + 1); t4 = _this.__Deflate__hashMask; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_0)); _this.__Deflate__insertHash = ((t2 ^ t3 & 255) & t4) >>> 0; } } else { t2 = _this.__Deflate__window; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s7_)); t3 = _this.__Deflate__strStart; bflush = _this._trTally$2(0, J.$index$asx(t2, t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3) & 255); t2 = _this.__Deflate__lookAhead; _this.__Deflate__lookAhead = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) - 1; t2 = _this.__Deflate__strStart; _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; } if (bflush) _this._flushBlockOnly$1(false); } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _deflateSlow$1: function(flush) { var t1, hash_head, bflush, t2, t3, t4, t5, t6, t7, max_insert, _this = this, _s10_ = "_lookAhead", _s11_ = "_insertHash", _s10_0 = "_hashShift", _s7_ = "_window", _s9_ = "_strStart", _s9_0 = "_hashMask", _s11_0 = "_windowMask", _s12_ = "_matchLength", _s11_1 = "_prevLength", _s9_1 = "_strategy"; for (t1 = flush === 0, hash_head = 0, bflush = null; true;) { t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) < 262) { _this._fillWindow$0(); t2 = _this.__Deflate__lookAhead; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) < 262 && t1) return 0; if (t2 === 0) break; } if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) >= 3) { t2 = _this.__Deflate__insertHash; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s11_)); t3 = _this.__Deflate__hashShift; t2 = C.JSInt_methods.$shl(t2, t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_0)) : t3); t3 = _this.__Deflate__window; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s7_)); t4 = _this.__Deflate__strStart; t3 = J.$index$asx(t3, (t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4) + 2); t4 = _this.__Deflate__hashMask; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_0)); t4 = _this.__Deflate__insertHash = ((t2 ^ t3 & 255) & t4) >>> 0; t3 = _this.__Deflate__head; t2 = t3 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t3; hash_head = t2[t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t4] & 65535; t2 = _this.__Deflate__prev; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_prev")); t5 = _this.__Deflate__strStart; t6 = t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5; t7 = _this.__Deflate__windowMask; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI(_s11_0)); t2[(t6 & t7) >>> 0] = t3[t4]; t3[t4] = t5; } t2 = _this.__Deflate__matchLength; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s12_)); _this.__Deflate__prevLength = t2; _this.__Deflate__prevMatch = _this._matchStart; _this.__Deflate__matchLength = 2; if (hash_head !== 0) { if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s11_1)); t3 = $.Deflate____config; if (t2 < (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_config")) : t3).maxLazy) { t2 = _this.__Deflate__strStart; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s9_)); t3 = _this.__Deflate__windowSize; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_windowSize")); t3 = (t2 - hash_head & 65535) <= t3 - 262; t2 = t3; } else t2 = false; } else t2 = false; if (t2) { t2 = _this.__Deflate__strategy; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_1)) : t2) !== 2) { t2 = _this._longestMatch$1(hash_head); _this.__Deflate__matchLength = t2; } else t2 = 2; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t2) <= 5) { t3 = _this.__Deflate__strategy; if ((t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_1)) : t3) !== 1) if (t2 === 3) { t3 = _this.__Deflate__strStart; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s9_)); t3 = t3 - _this._matchStart > 4096; } else t3 = false; else t3 = true; } else t3 = false; if (t3) { _this.__Deflate__matchLength = 2; t2 = 2; } } else t2 = 2; t3 = _this.__Deflate__prevLength; if ((t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_1)) : t3) >= 3) { if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s12_)); t2 = t2 <= t3; } else t2 = false; if (t2) { t2 = _this.__Deflate__strStart; t4 = t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2; t5 = _this.__Deflate__lookAhead; max_insert = t4 + (t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t5) - 3; t4 = _this.__Deflate__prevMatch; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("_prevMatch")); bflush = _this._trTally$2(t2 - 1 - t4, t3 - 3); t2 = _this.__Deflate__lookAhead; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s10_)); t3 = _this.__Deflate__prevLength; _this.__Deflate__lookAhead = t2 - ((t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_1)) : t3) - 1); _this.__Deflate__prevLength = t3 - 2; do { t2 = _this.__Deflate__strStart; t2 = _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; if (t2 <= max_insert) { t3 = _this.__Deflate__insertHash; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s11_)); t4 = _this.__Deflate__hashShift; t3 = C.JSInt_methods.$shl(t3, t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_0)) : t4); t4 = _this.__Deflate__window; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s7_)); t2 = J.$index$asx(t4, (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 2); t4 = _this.__Deflate__hashMask; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_0)); t4 = _this.__Deflate__insertHash = ((t3 ^ t2 & 255) & t4) >>> 0; t2 = _this.__Deflate__head; t3 = t2 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t2; hash_head = t3[t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t4] & 65535; t3 = _this.__Deflate__prev; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_prev")); t5 = _this.__Deflate__strStart; t6 = t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t5; t7 = _this.__Deflate__windowMask; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI(_s11_0)); t3[(t6 & t7) >>> 0] = t2[t4]; t2[t4] = t5; t2 = t5; } t3 = _this.__Deflate__prevLength; t3 = (t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_1)) : t3) - 1; _this.__Deflate__prevLength = t3; } while (t3 !== 0); _this.__Deflate__matchAvailable = 0; _this.__Deflate__matchLength = 2; _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; if (bflush) _this._flushBlockOnly$1(false); } else { t2 = _this.__Deflate__matchAvailable; if ((t2 === $ ? H.throwExpression(H.LateError$fieldNI("_matchAvailable")) : t2) !== 0) { t2 = _this.__Deflate__window; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s7_)); t3 = _this.__Deflate__strStart; bflush = _this._trTally$2(0, J.$index$asx(t2, (t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3) - 1) & 255); if (bflush) _this._flushBlockOnly$1(false); t2 = _this.__Deflate__strStart; _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; t2 = _this.__Deflate__lookAhead; _this.__Deflate__lookAhead = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) - 1; } else { _this.__Deflate__matchAvailable = 1; t2 = _this.__Deflate__strStart; _this.__Deflate__strStart = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2) + 1; t2 = _this.__Deflate__lookAhead; _this.__Deflate__lookAhead = (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t2) - 1; } } } if (_this.get$_matchAvailable() !== 0) { _this._trTally$2(0, J.$index$asx(_this.get$_deflate$_window(), _this.get$_strStart() - 1) & 255); _this.__Deflate__matchAvailable = 0; } t1 = flush === 4; _this._flushBlockOnly$1(t1); return t1 ? 3 : 1; }, _longestMatch$1: function(cur_match) { var nice_match, wmask, strend, scan_end1, scan_end, t2, scan0, len, match, _this = this, _s7_ = "_config", t1 = $.Deflate____config, chain_length = (t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s7_)) : t1).maxChain, scan = _this.get$_strStart(), best_len = _this.get$_prevLength(), limit = _this.get$_strStart() > _this.get$_windowSize() - 262 ? _this.get$_strStart() - (_this.get$_windowSize() - 262) : 0; t1 = $.Deflate____config; nice_match = (t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s7_)) : t1).niceLength; wmask = _this.get$_windowMask(); strend = _this.get$_strStart() + 258; t1 = scan + best_len; scan_end1 = J.$index$asx(_this.get$_deflate$_window(), t1 - 1); scan_end = J.$index$asx(_this.get$_deflate$_window(), t1); t1 = _this.get$_prevLength(); t2 = $.Deflate____config; if (t1 >= (t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s7_)) : t2).goodLength) chain_length = chain_length >>> 2; if (nice_match > _this.get$_lookAhead()) nice_match = _this.get$_lookAhead(); scan0 = strend - 258; len = null; do { c$0: { t1 = cur_match + best_len; if (J.$index$asx(_this.get$_deflate$_window(), t1) === scan_end) if (J.$index$asx(_this.get$_deflate$_window(), t1 - 1) === scan_end1) if (J.$index$asx(_this.get$_deflate$_window(), cur_match) === J.$index$asx(_this.get$_deflate$_window(), scan)) { match = cur_match + 1; t1 = J.$index$asx(_this.get$_deflate$_window(), match) !== J.$index$asx(_this.get$_deflate$_window(), scan + 1); } else { match = cur_match; t1 = true; } else { match = cur_match; t1 = true; } else { match = cur_match; t1 = true; } if (t1) break c$0; scan += 2; ++match; do { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; if (J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match)) { ++scan; ++match; t1 = J.$index$asx(_this.get$_deflate$_window(), scan) === J.$index$asx(_this.get$_deflate$_window(), match) && scan < strend; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } else t1 = false; } while (t1); len = 258 - (strend - scan); if (len > best_len) { _this._matchStart = cur_match; if (len >= nice_match) { best_len = len; break; } t1 = scan0 + len; scan_end1 = J.$index$asx(_this.get$_deflate$_window(), t1 - 1); scan_end = J.$index$asx(_this.get$_deflate$_window(), t1); best_len = len; } scan = scan0; } cur_match = _this.get$_prev()[cur_match & wmask] & 65535; if (cur_match > limit) { --chain_length; t1 = chain_length !== 0; } else t1 = false; } while (t1); if (best_len <= _this.get$_lookAhead()) return best_len; return _this.get$_lookAhead(); }, _readBuf$3: function(buf, start, size) { var data, len, bytes, t1, _this = this; if (size === 0 || _this._deflate$_input.get$isEOS()) return 0; data = _this._deflate$_input.readBytes$1(size); len = data.get$length(data); if (len === 0) return 0; bytes = data.toUint8List$0(); t1 = J.getInterceptor$asx(bytes); if (len > t1.get$length(bytes)) len = t1.get$length(bytes); J.setRange$3$ax(buf, start, start + len, bytes); _this.total += len; _this.crc32 = X.getCrc32(bytes, _this.crc32); return len; }, _deflate$_flushPending$0: function() { var t1, _this = this, len = _this.get$_deflate$_pending(); _this._output.writeBytes$2(_this.get$_pendingBuffer(), len); t1 = _this.__Deflate__pendingOut; _this.__Deflate__pendingOut = (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pendingOut")) : t1) + len; _this.__Deflate__pending = _this.get$_deflate$_pending() - len; if (_this.get$_deflate$_pending() === 0) _this.__Deflate__pendingOut = 0; }, _getConfig$1: function(level) { switch (level) { case 0: return new T._DeflaterConfig(0, 0, 0, 0, 0); case 1: return new T._DeflaterConfig(4, 4, 8, 4, 1); case 2: return new T._DeflaterConfig(4, 5, 16, 8, 1); case 3: return new T._DeflaterConfig(4, 6, 32, 32, 1); case 4: return new T._DeflaterConfig(4, 4, 16, 16, 2); case 5: return new T._DeflaterConfig(8, 16, 32, 32, 2); case 6: return new T._DeflaterConfig(8, 16, 128, 128, 2); case 7: return new T._DeflaterConfig(8, 32, 128, 256, 2); case 8: return new T._DeflaterConfig(32, 128, 258, 1024, 2); case 9: return new T._DeflaterConfig(32, 258, 258, 4096, 2); } throw H.wrapException(R.ArchiveException$("Invalid Deflate parameter")); }, get$_pendingBuffer: function() { var t1 = this.__Deflate__pendingBuffer; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pendingBuffer")) : t1; }, get$_pendingBufferSize: function() { var t1 = this.__Deflate__pendingBufferSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pendingBufferSize")) : t1; }, get$_deflate$_pending: function() { var t1 = this.__Deflate__pending; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pending")) : t1; }, get$_windowSize: function() { var t1 = this.__Deflate__windowSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_windowSize")) : t1; }, get$_windowMask: function() { var t1 = this.__Deflate__windowMask; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_windowMask")) : t1; }, get$_deflate$_window: function() { var t1 = this.__Deflate__window; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_window")) : t1; }, get$_prev: function() { var t1 = this.__Deflate__prev; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_prev")) : t1; }, get$_deflate$_head: function(_) { var t1 = this.__Deflate__head; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_head")) : t1; }, get$_insertHash: function() { var t1 = this.__Deflate__insertHash; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_insertHash")) : t1; }, get$_hashSize: function() { var t1 = this.__Deflate__hashSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashSize")) : t1; }, get$_hashBits: function() { var t1 = this.__Deflate__hashBits; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashBits")) : t1; }, get$_hashMask: function() { var t1 = this.__Deflate__hashMask; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashMask")) : t1; }, get$_hashShift: function() { var t1 = this.__Deflate__hashShift; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hashShift")) : t1; }, get$_blockStart: function() { var t1 = this.__Deflate__blockStart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_blockStart")) : t1; }, get$_matchAvailable: function() { var t1 = this.__Deflate__matchAvailable; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_matchAvailable")) : t1; }, get$_strStart: function() { var t1 = this.__Deflate__strStart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_strStart")) : t1; }, get$_lookAhead: function() { var t1 = this.__Deflate__lookAhead; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lookAhead")) : t1; }, get$_prevLength: function() { var t1 = this.__Deflate__prevLength; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_prevLength")) : t1; }, get$_deflate$_level: function() { var t1 = this.__Deflate__level; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_level")) : t1; }, get$_dynamicLengthTree: function() { var t1 = this.__Deflate__dynamicLengthTree; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dynamicLengthTree")) : t1; }, get$_dynamicDistTree: function() { var t1 = this.__Deflate__dynamicDistTree; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dynamicDistTree")) : t1; }, get$_bitLengthTree: function() { var t1 = this.__Deflate__bitLengthTree; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_bitLengthTree")) : t1; }, get$_heapLen: function() { var t1 = this.__Deflate__heapLen; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_heapLen")) : t1; }, get$_heapMax: function() { var t1 = this.__Deflate__heapMax; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_heapMax")) : t1; }, get$_lbuf: function() { var t1 = this.__Deflate__lbuf; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lbuf")) : t1; }, get$_litBufferSize: function() { var t1 = this.__Deflate__litBufferSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_litBufferSize")) : t1; }, get$_lastLit: function() { var t1 = this.__Deflate__lastLit; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lastLit")) : t1; }, get$_dbuf: function() { var t1 = this.__Deflate__dbuf; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dbuf")) : t1; }, get$_optimalLen: function() { var t1 = this.__Deflate__optimalLen; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_optimalLen")) : t1; }, get$_staticLen: function() { var t1 = this.__Deflate__staticLen; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_staticLen")) : t1; }, get$_matches: function() { var t1 = this.__Deflate__matches; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_matches")) : t1; }, get$_bitBuffer: function() { var t1 = this.__Deflate__bitBuffer; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_bitBuffer")) : t1; }, get$_numValidBits: function() { var t1 = this.__Deflate__numValidBits; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_numValidBits")) : t1; } }; T._DeflaterConfig.prototype = {}; T._HuffmanTree.prototype = { get$dynamicTree: function() { var t1 = this.___HuffmanTree_dynamicTree; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("dynamicTree")) : t1; }, get$maxCode: function() { var t1 = this.___HuffmanTree_maxCode; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("maxCode")) : t1; }, get$staticDesc: function() { var t1 = this.___HuffmanTree_staticDesc; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("staticDesc")) : t1; }, _genBitlen$1: function(s) { var t1, bits, t2, h, t3, xbits, f, overflow, n, t4, t5, t6, bits0, m, _this = this, _s11_ = "_optimalLen", tree = _this.get$dynamicTree(), stree = _this.get$staticDesc().staticTree, extra = _this.get$staticDesc().extraBits, base_Renamed = _this.get$staticDesc().extraBase, max_length = _this.get$staticDesc().maxLength; for (t1 = s._bitLengthCount, bits = 0; bits <= 15; ++bits) t1[bits] = 0; t2 = s._heap; tree[t2[s.get$_heapMax()] * 2 + 1] = 0; for (h = s.get$_heapMax() + 1, t3 = stree != null, xbits = null, f = null, overflow = 0; h < 573; ++h) { n = t2[h]; t4 = n * 2; t5 = t4 + 1; bits = tree[tree[t5] * 2 + 1] + 1; if (bits > max_length) { ++overflow; bits = max_length; } tree[t5] = bits; t6 = _this.___HuffmanTree_maxCode; if (n > (t6 === $ ? H.throwExpression(H.LateError$fieldNI("maxCode")) : t6)) continue; t1[bits] = t1[bits] + 1; xbits = n >= base_Renamed ? extra[n - base_Renamed] : 0; f = tree[t4]; t4 = s.__Deflate__optimalLen; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s11_)); s.__Deflate__optimalLen = t4 + f * (bits + xbits); if (t3) { t4 = s.__Deflate__staticLen; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("_staticLen")); s.__Deflate__staticLen = t4 + f * (stree[t5] + xbits); } } if (overflow === 0) return; bits = max_length - 1; do { for (bits0 = bits; t3 = t1[bits0], t3 === 0;) --bits0; t1[bits0] = t3 - 1; t3 = bits0 + 1; t1[t3] = t1[t3] + 2; t1[max_length] = t1[max_length] - 1; overflow -= 2; } while (overflow > 0); for (bits = max_length, m = null; bits !== 0; --bits) { n = t1[bits]; for (; n !== 0;) { --h; m = t2[h]; t3 = _this.___HuffmanTree_maxCode; if (m > (t3 === $ ? H.throwExpression(H.LateError$fieldNI("maxCode")) : t3)) continue; t3 = m * 2; t4 = t3 + 1; t5 = tree[t4]; if (t5 !== bits) { t6 = s.__Deflate__optimalLen; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI(_s11_)); s.__Deflate__optimalLen = t6 + (bits - t5) * tree[t3]; tree[t4] = bits; } --n; } } }, _buildTree$1: function(s) { var t1, t2, n, max_code, t3, t4, node, t5, m, t6, node0, _this = this, _s8_ = "_heapLen", tree = _this.get$dynamicTree(), stree = _this.get$staticDesc().staticTree, elems = _this.get$staticDesc().numElements; s.__Deflate__heapLen = 0; s.__Deflate__heapMax = 573; for (t1 = s._deflate$_depth, t2 = s._heap, n = 0, max_code = -1; n < elems; ++n) { t3 = n * 2; if (tree[t3] !== 0) { t3 = s.__Deflate__heapLen; t3 = (t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t3) + 1; s.__Deflate__heapLen = t3; t2[t3] = n; t1[n] = 0; max_code = n; } else tree[t3 + 1] = 0; } t3 = stree != null; while (true) { t4 = s.__Deflate__heapLen; if (!((t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t4) < 2)) break; ++t4; s.__Deflate__heapLen = t4; if (max_code < 2) { ++max_code; node = max_code; } else node = 0; t2[t4] = node; t4 = node * 2; tree[t4] = 1; t1[node] = 0; t5 = s.__Deflate__optimalLen; s.__Deflate__optimalLen = (t5 === $ ? H.throwExpression(H.LateError$fieldNI("_optimalLen")) : t5) - 1; if (t3) { t5 = s.__Deflate__staticLen; if (t5 === $) t5 = H.throwExpression(H.LateError$fieldNI("_staticLen")); s.__Deflate__staticLen = t5 - stree[t4 + 1]; } } _this.___HuffmanTree_maxCode = max_code; for (n = C.JSInt_methods._tdivFast$1(s.get$_heapLen(), 2); n >= 1; --n) s._pqdownheap$2(tree, n); node = elems; do { n = t2[1]; t3 = s.get$_heapLen(); s.__Deflate__heapLen = t3 - 1; t2[1] = t2[t3]; s._pqdownheap$2(tree, 1); m = t2[1]; t3 = s.get$_heapMax() - 1; s.__Deflate__heapMax = t3; t2[t3] = n; t3 = s.get$_heapMax() - 1; s.__Deflate__heapMax = t3; t2[t3] = m; t3 = n * 2; t4 = m * 2; tree[node * 2] = tree[t3] + tree[t4]; t5 = t1[n]; t6 = t1[m]; t1[node] = (t5 > t6 ? t5 : t6) + 1; tree[t4 + 1] = node; tree[t3 + 1] = node; node0 = node + 1; t2[1] = node; s._pqdownheap$2(tree, 1); if (s.get$_heapLen() >= 2) { node = node0; continue; } else break; } while (true); t1 = s.get$_heapMax() - 1; s.__Deflate__heapMax = t1; t2[t1] = t2[1]; _this._genBitlen$1(s); T._HuffmanTree__genCodes(tree, max_code, s._bitLengthCount); } }; T._StaticTree.prototype = {}; Y.HuffmanTable.prototype = { get$table: function() { var t1 = this.__HuffmanTable_table; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("table")) : t1; }, HuffmanTable$1: function(lengths) { var i, t1, size, bitLength, code, skip, rtemp, reversed, j, t2, t3, _this = this, listSize = lengths.length; for (i = 0; i < listSize; ++i) { t1 = lengths[i]; if (t1 > _this.maxCodeLength) _this.maxCodeLength = t1; if (t1 < _this.minCodeLength) _this.minCodeLength = t1; } size = C.JSInt_methods._shlPositive$1(1, _this.maxCodeLength); _this.__HuffmanTable_table = new Uint32Array(size); for (bitLength = 1, code = 0, skip = 2; bitLength <= _this.maxCodeLength;) { for (t1 = bitLength << 16, i = 0; i < listSize; ++i) if (lengths[i] === bitLength) { for (rtemp = code, reversed = 0, j = 0; j < bitLength; ++j) { reversed = (reversed << 1 | rtemp & 1) >>> 0; rtemp = rtemp >>> 1; } for (t2 = (t1 | i) >>> 0, j = reversed; j < size; j += skip) { t3 = _this.__HuffmanTable_table; (t3 === $ ? H.throwExpression(H.LateError$fieldNI("table")) : t3)[j] = t2; } ++code; } ++bitLength; code = code << 1 >>> 0; skip = skip << 1 >>> 0; } } }; S.Inflate.prototype = { get$input: function() { var t1 = this.__Inflate_input; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("input")) : t1; }, _inflate$0: function() { var t1, t2, t3, t4, t5, _this = this; _this._bitBufferLen = _this._inflate$_bitBuffer = 0; if (!_this.inputSet) return; t1 = _this.__Inflate_input; t2 = t1 === $; while (true) { t3 = t2 ? H.throwExpression(H.LateError$fieldNI("input")) : t1; t4 = t3.offset; t5 = t3.start; t3 = t3.__InputStream__length; if (!(t4 < t5 + (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t3))) break; if (!_this._parseBlock$0()) break; } }, _parseBlock$0: function() { var hdr, btype, len, t1, _this = this; if (_this.get$input().get$isEOS()) return false; hdr = _this._readBits$1(3); btype = hdr >>> 1; switch (btype) { case 0: _this._bitBufferLen = _this._inflate$_bitBuffer = 0; len = _this._readBits$1(16); t1 = _this._readBits$1(16); if (len !== 0 && len !== (t1 ^ 65535) >>> 0) H.throwExpression(R.ArchiveException$("Invalid uncompressed block header")); t1 = _this.get$input(); if (len > t1.get$length(t1)) H.throwExpression(R.ArchiveException$("Input buffer is broken")); _this.output.writeInputStream$1(_this.get$input().readBytes$1(len)); break; case 1: _this._decodeHuffman$2(_this._fixedLiteralLengthTable, _this._fixedDistanceTable); break; case 2: _this._parseDynamicHuffmanBlock$0(); break; default: throw H.wrapException(R.ArchiveException$("unknown BTYPE: " + btype)); } return (hdr & 1) === 0; }, _readBits$1: function($length) { var t1, t2, t3, t4, t5, _this = this; if ($length === 0) return 0; for (t1 = _this.__Inflate_input, t2 = t1 === $; t3 = _this._bitBufferLen, t3 < $length;) { t3 = t2 ? H.throwExpression(H.LateError$fieldNI("input")) : t1; t4 = t3.offset; t5 = t3.start; t3 = t3.__InputStream__length; if (t4 >= t5 + (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t3)) throw H.wrapException(R.ArchiveException$("input buffer is broken")); t3 = J.$index$asx(t1.buffer, t1.offset++); t4 = _this._inflate$_bitBuffer; t5 = _this._bitBufferLen; _this._inflate$_bitBuffer = (t4 | C.JSInt_methods.$shl(t3, t5)) >>> 0; _this._bitBufferLen = t5 + 8; } t1 = _this._inflate$_bitBuffer; t2 = C.JSInt_methods._shlPositive$1(1, $length); _this._inflate$_bitBuffer = C.JSInt_methods._shrBothPositive$1(t1, $length); _this._bitBufferLen = t3 - $length; return (t1 & t2 - 1) >>> 0; }, _readCodeByTable$1: function(table) { var t1, t2, t3, t4, t5, t6, codeWithLength, codeLength, _this = this, codeTable = table.get$table(), maxCodeLength = table.maxCodeLength; for (t1 = _this.__Inflate_input, t2 = t1 === $; t3 = _this._bitBufferLen, t3 < maxCodeLength;) { t4 = t2 ? H.throwExpression(H.LateError$fieldNI("input")) : t1; t5 = t4.offset; t6 = t4.start; t4 = t4.__InputStream__length; if (t5 >= t6 + (t4 === $ ? H.throwExpression(H.LateError$fieldNI("_length")) : t4)) break; t3 = J.$index$asx(t1.buffer, t1.offset++); t4 = _this._inflate$_bitBuffer; t5 = _this._bitBufferLen; _this._inflate$_bitBuffer = (t4 | C.JSInt_methods.$shl(t3, t5)) >>> 0; _this._bitBufferLen = t5 + 8; } t1 = _this._inflate$_bitBuffer; codeWithLength = codeTable[(t1 & C.JSInt_methods._shlPositive$1(1, maxCodeLength) - 1) >>> 0]; codeLength = codeWithLength >>> 16; _this._inflate$_bitBuffer = C.JSInt_methods._shrBothPositive$1(t1, codeLength); _this._bitBufferLen = t3 - codeLength; return codeWithLength & 65535; }, _parseDynamicHuffmanBlock$0: function() { var i, codeLengthsTable, litlenLengths, distLengths, litlen, dist, _this = this, numLitLengthCodes = _this._readBits$1(5) + 257, numDistanceCodes = _this._readBits$1(5) + 1, numCodeLengths = _this._readBits$1(4) + 4, codeLengths = new Uint8Array(19); for (i = 0; i < numCodeLengths; ++i) codeLengths[C.List_uSC[i]] = _this._readBits$1(3); codeLengthsTable = Y.HuffmanTable$(codeLengths); litlenLengths = new Uint8Array(numLitLengthCodes); distLengths = new Uint8Array(numDistanceCodes); litlen = _this._decode$3(numLitLengthCodes, codeLengthsTable, litlenLengths); dist = _this._decode$3(numDistanceCodes, codeLengthsTable, distLengths); _this._decodeHuffman$2(Y.HuffmanTable$(litlen), Y.HuffmanTable$(dist)); }, _decodeHuffman$2: function(litlen, dist) { var t1, code, ti, codeLength, distCode, distance, t2, t3, _this = this; for (t1 = _this.output; true;) { code = _this._readCodeByTable$1(litlen); if (code > 285) throw H.wrapException(R.ArchiveException$("Invalid Huffman Code " + code)); if (code === 256) break; if (code < 256) { t1.writeByte$1(code & 255); continue; } ti = code - 257; codeLength = C.List_qQn1[ti] + _this._readBits$1(C.List_eea[ti]); distCode = _this._readCodeByTable$1(dist); if (distCode <= 29) { distance = C.List_i3t[distCode] + _this._readBits$1(C.List_X3d[distCode]); for (t2 = -distance; codeLength > distance;) { t1.writeBytes$1(t1.subset$1(t2)); codeLength -= distance; } if (codeLength === distance) t1.writeBytes$1(t1.subset$1(t2)); else t1.writeBytes$1(t1.subset$2(t2, codeLength - distance)); } else throw H.wrapException(R.ArchiveException$("Illegal unused distance symbol")); } for (t1 = _this.__Inflate_input, t2 = t1 === $; t3 = _this._bitBufferLen, t3 >= 8;) { _this._bitBufferLen = t3 - 8; t3 = t2 ? H.throwExpression(H.LateError$fieldNI("input")) : t1; if (--t3.offset < 0) t3.offset = 0; } }, _decode$3: function(num, table, lengths) { var prev, i, code, repeat, repeat0, i0, _this = this; for (prev = 0, i = 0; i < num;) { code = _this._readCodeByTable$1(table); switch (code) { case 16: repeat = 3 + _this._readBits$1(2); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = prev; } break; case 17: repeat = 3 + _this._readBits$1(3); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = 0; } prev = 0; break; case 18: repeat = 11 + _this._readBits$1(7); for (; repeat0 = repeat - 1, repeat > 0; repeat = repeat0, i = i0) { i0 = i + 1; lengths[i] = 0; } prev = 0; break; default: if (code > 15) throw H.wrapException(R.ArchiveException$("Invalid Huffman Code: " + code)); i0 = i + 1; lengths[i] = code; i = i0; prev = code; break; } } return lengths; } }; D.BoardItem.prototype = { createState$0: function() { return new D.BoardItemState(null, C._StateLifecycle_0); } }; D.BoardItemState.prototype = { get$height: function(_) { var t1 = this.__BoardItemState_height; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("height")) : t1; }, set$height: function(_, t1) { this.__BoardItemState_height = t1; }, get$wantKeepAlive: function() { return true; }, onDropItem$2: function(listIndex, itemIndex) { var t1 = this._widget, t2 = t1.onDropItem; t1 = t1.boardList; t1 = t1._widget.boardView; t2.call$5(listIndex, itemIndex, t1.startListIndex, t1.startItemIndex, this); t1 = this._widget.boardList._widget.boardView; t1.draggedListIndex = t1.draggedItemIndex = null; t1 = t1.listStates; listIndex.toString; t1 = t1[listIndex]; if (t1._framework$_element != null) t1.setState$1(new D.BoardItemState_onDropItem_closure()); }, _board_item$_startDrag$2: function(item, context) { var t3, t4, _this = this, t1 = _this._widget.boardList, t2 = t1._widget.boardView; if (t2 != null) { t2.onDropItem = _this.get$onDropItem(); if (t1._framework$_element != null) t1.setState$1(new D.BoardItemState__startDrag_closure()); t1 = _this._widget; t2 = t1.boardList._widget.boardView; t2.toString; t2.draggedItemIndex = t1.index; t2.height = context.get$size(context)._dy; t2 = _this._widget; t1 = t2.boardList._widget; t3 = t1.boardView; t3.toString; t1 = t1.index; t3.startListIndex = t3.draggedListIndex = t1; t4 = t2.index; t3.startItemIndex = t4; t3.draggedItem = item; t2.onStartDragItem.call$3(t1, t4, _this); _this._widget.boardList._widget.boardView.run$0(); t1 = _this._widget.boardList._widget.boardView; if (t1._framework$_element != null) t1.setState$1(new D.BoardItemState__startDrag_closure0()); } }, afterFirstLayout$1: function(context) { var exception; try { this.__BoardItemState_height = context.get$size(context)._dy; context.get$size(context).toString; } catch (exception) { H.unwrapException(exception); } }, build$1: function(_, context) { var t1, t2, t3, _this = this, _null = null; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.BoardItemState_build_closure(_this, context)); t1 = _this._widget; t2 = t1.boardList.itemStates; t3 = t2.length; t1 = t1.index; t1.toString; if (t3 > t1) C.JSArray_methods.removeAt$1(t2, t1); t1 = _this._widget; t2 = t1.boardList.itemStates; t1 = t1.index; t1.toString; C.JSArray_methods.insert$2(t2, t1, _this); return D.GestureDetector$(_null, _this._widget.item, C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new D.BoardItemState_build_closure0(_this, context), _null, _null, _null, _null, _null, _null, _null, new D.BoardItemState_build_closure1(_this), new D.BoardItemState_build_closure2(), new D.BoardItemState_build_closure3(_this, context), _null, _null, _null, _null); }, set$width: function() { } }; D.BoardItemState_onDropItem_closure.prototype = { call$0: function() { }, $signature: 0 }; D.BoardItemState__startDrag_closure.prototype = { call$0: function() { }, $signature: 0 }; D.BoardItemState__startDrag_closure0.prototype = { call$0: function() { }, $signature: 0 }; D.BoardItemState_build_closure.prototype = { call$1: function(_) { return this.$this.afterFirstLayout$1(this.context); }, $signature: 28 }; D.BoardItemState_build_closure3.prototype = { call$1: function(otd) { var t2, object, pos, box, listPos, t3, t4, t5, t1 = this.$this; if (t1._widget.draggable) { t2 = type$.RenderBox; object = t2._as(this.context.get$renderObject()); pos = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0); box = t2._as(t1._widget.boardList._framework$_element.get$renderObject()); listPos = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0); t1 = t1._widget.boardList._widget.boardView; t2 = listPos._dx; t1.leftListX = t2; t3 = listPos._dy; t1.topListY = t3; t4 = t1.topItemY = pos._dy; t1.bottomItemY = t4 + object._box$_size._dy; t5 = box._box$_size; t1.bottomListY = t3 + t5._dy; t1.rightListX = t2 + t5._dx; t1.initialX = pos._dx; t1.initialY = t4; } }, $signature: 98 }; D.BoardItemState_build_closure2.prototype = { call$0: function() { }, $signature: 0 }; D.BoardItemState_build_closure1.prototype = { call$0: function() { this.$this._widget.toString; }, $signature: 0 }; D.BoardItemState_build_closure0.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1._widget; t2.boardList._widget.boardView._widget.toString; t3 = t2.draggable; if (t3) t1._board_item$_startDrag$2(t2, this.context); }, $signature: 0 }; D._BoardItemState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; O.BoardList.prototype = { createState$0: function() { return new O.BoardListState(H.setRuntimeTypeInfo([], type$.JSArray_BoardItemState), F.ScrollController$(null, 0), null, C._StateLifecycle_0); } }; O.BoardListState.prototype = { onDropList$1: function(listIndex) { var t1 = this._widget, t2 = t1.onDropList; t1 = t1.boardView; t2.call$2(listIndex, t1.startListIndex); t1 = this._widget.boardView; t1.draggedListIndex = null; if (t1._framework$_element != null) t1.setState$1(new O.BoardListState_onDropList_closure()); }, _board_list$_startDrag$2: function(item, context) { var _this = this, t1 = _this._widget, t2 = t1.boardView; if (t2 != null && t1.draggable) { t2.toString; t2.startListIndex = t1.index; t2.height = context.get$size(context)._dy; t1 = _this._widget; t2 = t1.boardView; t2.toString; t1 = t1.index; t1.toString; t2.draggedListIndex = t1; t2.draggedItemIndex = null; t2.draggedItem = item; t2.onDropList = _this.get$onDropList(); t2.run$0(); t1 = _this._widget.boardView; if (t1._framework$_element != null) t1.setState$1(new O.BoardListState__startDrag_closure()); } }, get$wantKeepAlive: function() { return true; }, build$1: function(_, context) { var backgroundColor, backgroundColor0, t2, t3, _this = this, _null = null, listWidgets = H.setRuntimeTypeInfo([], type$.JSArray_Widget), t1 = _this._widget; t1.toString; P.Color$fromARGB(255, 255, 255, 255); listWidgets.push(D.GestureDetector$(_null, M.Container$(_null, T.Row$(t1.header, C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), C.Clip_0, t1.headerBackgroundColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, new O.BoardListState_build_closure(_this, context), _null, _null, _null, _null, _null, _null, _null, new O.BoardListState_build_closure0(_this), new O.BoardListState_build_closure1(), new O.BoardListState_build_closure2(_this, context), _null, _null, _null, _null)); listWidgets.push(M.Container$(_null, new T.Flexible(1, C.FlexFit_1, B.ListView$builder(_this.boardListController, new O.BoardListState_build_closure3(_this), _this._widget.items.length, _null, new L.ClampingScrollPhysics(_null), C.Axis_1, true), _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); listWidgets.push(_this._widget.footer); backgroundColor = P.Color$fromARGB(255, 255, 255, 255); t1 = _this._widget; backgroundColor0 = t1.backgroundColor; if (backgroundColor0 != null) backgroundColor = backgroundColor0; t2 = t1.boardView.listStates; t3 = t2.length; t1 = t1.index; t1.toString; if (t3 > t1) C.JSArray_methods.removeAt$1(t2, t1); t1 = _this._widget; t2 = t1.boardView.listStates; t1 = t1.index; t1.toString; C.JSArray_methods.insert$2(t2, t1, _this); return M.Container$(_null, T.Column$(listWidgets, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, _null, _null, new S.BoxDecoration(backgroundColor, _null, _null, _null, _null, _null, C.BoxShape_0), _null, _null, _null, new V.EdgeInsets(8, 8, 8, 8), _null, _null, _null, _null); } }; O.BoardListState_onDropList_closure.prototype = { call$0: function() { }, $signature: 0 }; O.BoardListState__startDrag_closure.prototype = { call$0: function() { }, $signature: 0 }; O.BoardListState_build_closure0.prototype = { call$0: function() { this.$this._widget.toString; }, $signature: 0 }; O.BoardListState_build_closure2.prototype = { call$1: function(otd) { var object, pos, t2, t1 = this.$this; if (t1._widget.draggable) { object = type$.RenderBox._as(this.context.get$renderObject()); pos = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0); t1 = t1._widget.boardView; t2 = t1.initialX = pos._dx; t1.initialY = pos._dy; t1.rightListX = t2 + object._box$_size._dx; t1.leftListX = t2; } }, $signature: 98 }; O.BoardListState_build_closure1.prototype = { call$0: function() { }, $signature: 0 }; O.BoardListState_build_closure.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1._widget; t2.boardView._widget.toString; t3 = t2.draggable; if (t3) t1._board_list$_startDrag$2(t2, this.context); }, $signature: 0 }; O.BoardListState_build_closure3.prototype = { call$2: function(ctx, index) { var t6, t7, t8, t1 = this.$this, t2 = t1._widget, t3 = t2.items, t4 = t3[index], t5 = t4.boardList; if (t5 == null || t4.index != index || t5._widget.index != t2.index || t5 !== t1) { t5 = t4.item; t6 = t4.draggable; t7 = t4.onDropItem; t8 = t4.onTapItem; t8 = D.BoardItem$(t1, t6, index, t5, t4.onDragItem, t7, t4.onStartDragItem, t8); t3[index] = t8; t1 = t8; } else t1 = t4; t3 = t2.boardView; if (t3.draggedItemIndex == index && t3.draggedListIndex == t2.index) return T.Opacity$(false, t1, 0); else return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 128 }; O._BoardListState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; N.BoardView.prototype = { createState$0: function() { return new N.BoardViewState(F.ScrollController$(null, 0), H.setRuntimeTypeInfo([], type$.JSArray_BoardListState), new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, C._StateLifecycle_0); } }; N.BoardViewState.prototype = { get$wantKeepAlive: function() { return true; }, initState$0: function() { this.super$_BoardViewState_State_AutomaticKeepAliveClientMixin$initState(); this._widget.boardViewController.__BoardViewController_state = this; }, moveDown$0: function() { var t2, t3, item, itemState, t4, _this = this, t1 = _this.topItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; t3 = t2[t3 + 1]; _this.topItemY = t1 + t3.get$height(t3); } t1 = _this.bottomItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; t3 = t2[t3 + 1]; _this.bottomItemY = t1 + t3.get$height(t3); } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].items; t1 = _this.draggedItemIndex; t1.toString; item = t2[t1]; C.JSArray_methods.removeAt$1(t2, t1); t1 = _this.listStates; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; itemState = t2[t3]; C.JSArray_methods.removeAt$1(t2, t3); t2 = _this.draggedItemIndex; if (t2 != null) t2 = _this.draggedItemIndex = t2 + 1; t3 = _this._widget.lists; t4 = _this.draggedListIndex; t4.toString; t4 = t3[t4].items; t2.toString; C.JSArray_methods.insert$2(t4, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t4 = _this.draggedItemIndex; t4.toString; C.JSArray_methods.insert$2(t2, t4, itemState); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2]; if (t2._framework$_element != null) t2.setState$1(new N.BoardViewState_moveDown_closure()); }, moveUp$0: function() { var t2, t3, item, itemState, t4, _this = this, t1 = _this.topItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; t3 = t2[t3 - 1]; _this.topItemY = t1 - t3.get$height(t3); } t1 = _this.bottomItemY; if (t1 != null) { t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; t3 = t2[t3 - 1]; _this.bottomItemY = t1 - t3.get$height(t3); } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].items; t1 = _this.draggedItemIndex; t1.toString; item = t2[t1]; C.JSArray_methods.removeAt$1(t2, t1); t1 = _this.listStates; t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t3 = _this.draggedItemIndex; t3.toString; itemState = t2[t3]; C.JSArray_methods.removeAt$1(t2, t3); t2 = _this.draggedItemIndex; if (t2 != null) t2 = _this.draggedItemIndex = t2 - 1; t3 = _this._widget.lists; t4 = _this.draggedListIndex; t4.toString; t4 = t3[t4].items; t2.toString; C.JSArray_methods.insert$2(t4, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2].itemStates; t4 = _this.draggedItemIndex; t4.toString; C.JSArray_methods.insert$2(t2, t4, itemState); t2 = _this.draggedListIndex; t2.toString; t2 = t1[t2]; if (t2._framework$_element != null) t2.setState$1(new N.BoardViewState_moveUp_closure()); }, moveListRight$0: function() { var list, t3, listState, tempListIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; list = t1[t2]; t3 = _this.listStates; listState = t3[t2]; C.JSArray_methods.removeAt$1(t1, t2); t2 = _this.draggedListIndex; t2.toString; C.JSArray_methods.removeAt$1(t3, t2); t1 = _this.draggedListIndex; if (t1 != null) t1 = _this.draggedListIndex = t1 + 1; t2 = _this._widget.lists; t1.toString; C.JSArray_methods.insert$2(t2, t1, list); t1 = _this.draggedListIndex; t1.toString; C.JSArray_methods.insert$2(t3, t1, listState); _this.canDrag = false; t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, C.Cubic_JUR, P.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new N.BoardViewState_moveListRight_closure(_this, tempListIndex)); } if (_this._framework$_element != null) _this.setState$1(new N.BoardViewState_moveListRight_closure0()); }, moveRight$0: function() { var t3, item, t4, itemState, closestValue, i, box, pos, temp, tempListIndex, tempItemIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items; t3 = _this.draggedItemIndex; t3.toString; item = t1[t3]; t4 = _this.listStates; itemState = t4[t2].itemStates[t3]; C.JSArray_methods.removeAt$1(t1, t3); t3 = _this.draggedListIndex; t3.toString; t3 = t4[t3].itemStates; t1 = _this.draggedItemIndex; t1.toString; C.JSArray_methods.removeAt$1(t3, t1); t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_moveRight_closure()); t1 = _this.draggedListIndex; if (t1 != null) _this.draggedListIndex = t1 + 1; _this.draggedItemIndex = 0; t1 = type$.RenderBox; closestValue = 10000; i = 0; while (true) { t2 = _this.draggedListIndex; t2.toString; t3 = t4[t2].itemStates; if (!(i < t3.length)) break; t2 = t3[i]._framework$_element; if (t2 != null && true) { box = t1._as(t2.get$renderObject()); pos = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0); t2 = _this.dy; t2.toString; temp = Math.abs(pos._dy - t2 + box._box$_size._dy / 2); if (temp < closestValue) { _this.draggedItemIndex = i; _this.dyInit = t2; closestValue = temp; } } ++i; } t1 = _this._widget.lists[t2].items; t2 = _this.draggedItemIndex; t2.toString; C.JSArray_methods.insert$2(t1, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t4[t2].itemStates; t1 = _this.draggedItemIndex; t1.toString; C.JSArray_methods.insert$2(t2, t1, itemState); _this.canDrag = false; t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_moveRight_closure0()); t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempItemIndex = _this.draggedItemIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, C.Cubic_JUR, P.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new N.BoardViewState_moveRight_closure1(_this, tempListIndex, tempItemIndex)); } if (_this._framework$_element != null) _this.setState$1(new N.BoardViewState_moveRight_closure2()); }, moveListLeft$0: function() { var list, t3, listState, tempListIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; list = t1[t2]; t3 = _this.listStates; listState = t3[t2]; C.JSArray_methods.removeAt$1(t1, t2); t2 = _this.draggedListIndex; t2.toString; C.JSArray_methods.removeAt$1(t3, t2); t1 = _this.draggedListIndex; if (t1 != null) t1 = _this.draggedListIndex = t1 - 1; t2 = _this._widget.lists; t1.toString; C.JSArray_methods.insert$2(t2, t1, list); t1 = _this.draggedListIndex; t1.toString; C.JSArray_methods.insert$2(t3, t1, listState); _this.canDrag = false; t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempListIndex.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, C.Cubic_JUR, P.Duration$(0, 0, 0, _this._widget.dragDelay, 0, 0)).whenComplete$1(new N.BoardViewState_moveListLeft_closure(_this, tempListIndex)); } if (_this._framework$_element != null) _this.setState$1(new N.BoardViewState_moveListLeft_closure0()); }, moveLeft$0: function() { var t3, item, t4, itemState, closestValue, i, box, pos, temp, tempListIndex, tempItemIndex, _this = this, t1 = _this._widget.lists, t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items; t3 = _this.draggedItemIndex; t3.toString; item = t1[t3]; t4 = _this.listStates; itemState = t4[t2].itemStates[t3]; C.JSArray_methods.removeAt$1(t1, t3); t3 = _this.draggedListIndex; t3.toString; t3 = t4[t3].itemStates; t1 = _this.draggedItemIndex; t1.toString; C.JSArray_methods.removeAt$1(t3, t1); t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_moveLeft_closure()); t1 = _this.draggedListIndex; if (t1 != null) _this.draggedListIndex = t1 - 1; _this.draggedItemIndex = 0; t1 = type$.RenderBox; closestValue = 10000; i = 0; while (true) { t2 = _this.draggedListIndex; t2.toString; t3 = t4[t2].itemStates; if (!(i < t3.length)) break; t2 = t3[i]._framework$_element; if (t2 != null && true) { box = t1._as(t2.get$renderObject()); pos = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0); t2 = _this.dy; t2.toString; temp = Math.abs(pos._dy - t2 + box._box$_size._dy / 2); if (temp < closestValue) { _this.draggedItemIndex = i; _this.dyInit = t2; closestValue = temp; } } ++i; } t1 = _this._widget.lists[t2].items; t2 = _this.draggedItemIndex; t2.toString; C.JSArray_methods.insert$2(t1, t2, item); t2 = _this.draggedListIndex; t2.toString; t2 = t4[t2].itemStates; t1 = _this.draggedItemIndex; t1.toString; C.JSArray_methods.insert$2(t2, t1, itemState); _this.canDrag = false; t1 = _this.draggedListIndex; t1.toString; t1 = t4[t1]; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_moveLeft_closure0()); t1 = _this.boardViewController; t2 = t1._positions.length; if (t2 !== 0) { tempListIndex = _this.draggedListIndex; tempItemIndex = _this.draggedItemIndex; tempListIndex.toString; _this._widget.toString; t1.animateTo$3$curve$duration(tempListIndex * 280, C.Cubic_JUR, P.Duration$(0, 0, 0, 400, 0, 0)).whenComplete$1(new N.BoardViewState_moveLeft_closure1(_this, tempListIndex, tempItemIndex)); } if (_this._framework$_element != null) _this.setState$1(new N.BoardViewState_moveLeft_closure2()); }, build$1: function(_, context) { var t2, t3, listWidget, stackWidgets, t4, t5, isInBottomWidget, object, tempBottom, t6, t7, t8, _this = this, _null = null, t1 = {}; P.print("dy:" + H.S(_this.dy)); P.print("topListY:" + H.S(_this.topListY)); P.print("bottomListY:" + H.S(_this.bottomListY)); t2 = _this.boardViewController; t3 = t2._positions; if (t3.length !== 0) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new N.BoardViewState_build_closure(_this)); listWidget = B.ListView$builder(t2, new N.BoardViewState_build_closure0(_this), _this._widget.lists.length, _null, new L.ClampingScrollPhysics(_null), C.Axis_0, false); stackWidgets = H.setRuntimeTypeInfo([listWidget], type$.JSArray_Widget); if (_this.dy != null) { t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = _this.dy; t5.toString; isInBottomWidget = t4.size._dy - t5 < 80 && true; } else isInBottomWidget = false; _this._widget.toString; if (_this.initialX != null && _this.initialY != null && _this.offsetX != null && _this.offsetY != null && _this.dx != null && _this.dy != null && _this.height != null && true) { if (_this.canDrag && _this.dxInit != null && _this.dyInit != null && !isInBottomWidget) if (_this.draggedItemIndex != null && _this.draggedItem != null && _this.topItemY != null && _this.bottomItemY != null) { t4 = _this.draggedListIndex; t4.toString; if (0 <= t4 - 1) { t4 = _this.dx; t4.toString; t5 = _this.leftListX; t5.toString; t5 = t4 < t5 + 45; t4 = t5; } else t4 = false; if (t4) { t4 = t3.length; if (t4 !== 0) { t4 = C.JSArray_methods.get$single(t3)._pixels; t4.toString; t2.animateTo$3$curve$duration(t4 - 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)); t4 = _this.draggedListIndex; t4.toString; t4 = _this.listStates[t4]._framework$_element; if (t4 != null) { object = type$.RenderBox._as(t4.get$renderObject()); t4 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, _null), C.Offset_0_0)._dx; _this.leftListX = t4; _this.rightListX = t4 + object._box$_size._dx; } } } t4 = _this._widget.lists.length; t5 = _this.draggedListIndex; t5.toString; if (t4 > t5 + 1) { t4 = _this.dx; t4.toString; t5 = _this.rightListX; t5.toString; t5 = t4 > t5 - 45; t4 = t5; } else t4 = false; if (t4) { t4 = t3.length; if (t4 !== 0) { t3 = C.JSArray_methods.get$single(t3)._pixels; t3.toString; t2.animateTo$3$curve$duration(t3 + 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)); t2 = _this.draggedListIndex; t2.toString; t2 = _this.listStates[t2]._framework$_element; if (t2 != null) { object = type$.RenderBox._as(t2.get$renderObject()); t2 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, _null), C.Offset_0_0)._dx; _this.leftListX = t2; _this.rightListX = t2 + object._box$_size._dx; } } } t2 = _this.draggedListIndex; t2.toString; if (0 <= t2 - 1) { t2 = _this.dx; t2.toString; t3 = _this.leftListX; t3.toString; t3 = t2 < t3; t2 = t3; } else t2 = false; if (t2) _this.moveLeft$0(); t2 = _this._widget.lists.length; t3 = _this.draggedListIndex; t3.toString; if (t2 > t3 + 1) { t2 = _this.dx; t2.toString; t3 = _this.rightListX; t3.toString; t3 = t2 > t3; t2 = t3; } else t2 = false; if (t2) _this.moveRight$0(); t2 = _this.dy; t2.toString; t3 = _this.topListY; t3.toString; if (t2 < t3 + 70) { t2 = _this.listStates; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3]; t4 = t3.boardListController._positions.length !== 0 && !_this.isScrolling; if (t4) { _this.isScrolling = true; t3 = C.JSArray_methods.get$single(t3.boardListController._positions)._pixels; t3.toString; t1.pos = t3; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController; t2 = C.JSArray_methods.get$single(t3._positions)._pixels; t2.toString; t3.animateTo$3$curve$duration(t2 - 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)).whenComplete$1(new N.BoardViewState_build_closure1(t1, _this)); } } t2 = _this.draggedItemIndex; t2.toString; --t2; if (0 <= t2) { t3 = _this.dy; t3.toString; t4 = _this.topItemY; t4.toString; t5 = _this.draggedListIndex; t5.toString; t2 = _this.listStates[t5].itemStates[t2]; t2 = t3 < t4 - t2.get$height(t2) / 2; } else t2 = false; if (t2) _this.moveUp$0(); tempBottom = _this.bottomListY; _this._widget.toString; t2 = _this.dy; t2.toString; tempBottom.toString; if (t2 > tempBottom - 70) { t2 = _this.listStates; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController._positions; t4 = t3.length; if (t4 !== 0) { _this.isScrolling = true; t3 = C.JSArray_methods.get$single(t3)._pixels; t3.toString; t1.pos = t3; t3 = _this.draggedListIndex; t3.toString; t3 = t2[t3].boardListController; t2 = C.JSArray_methods.get$single(t3._positions)._pixels; t2.toString; t3.animateTo$3$curve$duration(t2 + 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)).whenComplete$1(new N.BoardViewState_build_closure2(t1, _this)); } } t1 = _this._widget.lists; t2 = _this.draggedListIndex; t2.toString; t1 = t1[t2].items.length; t3 = _this.draggedItemIndex; t3.toString; ++t3; if (t1 > t3) { t1 = _this.dy; t1.toString; t4 = _this.bottomItemY; t4.toString; t3 = _this.listStates[t2].itemStates[t3]; t3 = t1 > t4 + t3.get$height(t3) / 2; t1 = t3; } else t1 = false; if (t1) _this.moveDown$0(); } else { t1 = _this.draggedListIndex; t1.toString; if (0 <= t1 - 1) { t1 = _this.dx; t1.toString; t4 = _this.leftListX; t4.toString; t4 = t1 < t4 + 45; t1 = t4; } else t1 = false; if (t1) { t1 = t3.length; if (t1 !== 0) { t1 = C.JSArray_methods.get$single(t3)._pixels; t1.toString; t2.animateTo$3$curve$duration(t1 - 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)); t1 = _this.leftListX; if (t1 != null) _this.leftListX = t1 + 5; t1 = _this.rightListX; if (t1 != null) _this.rightListX = t1 + 5; } } t1 = _this._widget.lists.length; t4 = _this.draggedListIndex; t4.toString; if (t1 > t4 + 1) { t1 = _this.dx; t1.toString; t4 = _this.rightListX; t4.toString; t4 = t1 > t4 - 45; t1 = t4; } else t1 = false; if (t1) { t1 = t3.length; if (t1 !== 0) { t1 = C.JSArray_methods.get$single(t3)._pixels; t1.toString; t2.animateTo$3$curve$duration(t1 + 5, C.Cubic_JUR, P.Duration$(0, 0, 0, 10, 0, 0)); t1 = _this.leftListX; if (t1 != null) _this.leftListX = t1 - 5; t1 = _this.rightListX; if (t1 != null) _this.rightListX = t1 - 5; } } t1 = _this._widget.lists.length; t2 = _this.draggedListIndex; t2.toString; if (t1 > t2 + 1) { t1 = _this.dx; t1.toString; t2 = _this.rightListX; t2.toString; t2 = t1 > t2; t1 = t2; } else t1 = false; if (t1) _this.moveListRight$0(); t1 = _this.draggedListIndex; t1.toString; if (0 <= t1 - 1) { t1 = _this.dx; t1.toString; t2 = _this.leftListX; t2.toString; t2 = t1 < t2; t1 = t2; } else t1 = false; if (t1) _this.moveListLeft$0(); } _this._widget.toString; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new N.BoardViewState_build_closure3(_this)); _this._widget.toString; t1 = _this.height; t2 = T.Opacity$(false, _this.draggedItem, 0.7); t3 = _this.dx; t3.toString; t4 = _this.offsetX; t4.toString; t5 = _this.initialX; t5.toString; t6 = _this.dy; t6.toString; t7 = _this.offsetY; t7.toString; t8 = _this.initialY; t8.toString; stackWidgets.push(T.Positioned$(_null, t2, t1, _null, t3 - t4 + t5, _null, t6 - t7 + t8, 280)); } return M.Container$(_null, T.Listener$(C.HitTestBehavior_0, T.Stack$(C.AlignmentDirectional_m1_m1, stackWidgets, C.Clip_1, C.StackFit_0, _null, _null), _null, new N.BoardViewState_build_closure4(_this, context), new N.BoardViewState_build_closure5(_this), _null, new N.BoardViewState_build_closure6(_this, context)), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, run$0: function() { var _this = this, t1 = _this.pointer; if (t1 != null) { _this.dx = t1.get$position(t1)._dx; t1 = _this.pointer; _this.dy = t1.get$position(t1)._dy; if (_this._framework$_element != null) _this.setState$1(new N.BoardViewState_run_closure()); } }, set$height: function(receiver, val) { return this.height = val; } }; N.BoardViewState_moveDown_closure.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveUp_closure.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveListRight_closure.prototype = { call$0: function() { var object, t1 = this.$this, t2 = this.tempListIndex; t2.toString; object = type$.RenderBox._as(t1.listStates[t2]._framework$_element.get$renderObject()); t2 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0)._dx; t1.leftListX = t2; t1.rightListX = t2 + object._box$_size._dx; P.Future_Future$delayed(P.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new N.BoardViewState_moveListRight__closure(t1), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_moveListRight__closure.prototype = { call$0: function() { this.$this.canDrag = true; }, $signature: 1 }; N.BoardViewState_moveListRight_closure0.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveRight_closure.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveRight_closure0.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveRight_closure1.prototype = { call$0: function() { var t4, object, t5, box, t1 = this.$this, t2 = t1.listStates, t3 = this.tempListIndex; t3.toString; t4 = type$.RenderBox; object = t4._as(t2[t3]._framework$_element.get$renderObject()); t5 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0)._dx; t1.leftListX = t5; t1.rightListX = t5 + object._box$_size._dx; t3 = t2[t3].itemStates; t2 = this.tempItemIndex; t2.toString; box = t4._as(t3[t2]._framework$_element.get$renderObject()); t2 = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0)._dy; t1.topItemY = t2; t1.bottomItemY = t2 + box._box$_size._dy; P.Future_Future$delayed(P.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new N.BoardViewState_moveRight__closure(t1), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_moveRight__closure.prototype = { call$0: function() { this.$this.canDrag = true; }, $signature: 1 }; N.BoardViewState_moveRight_closure2.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveListLeft_closure.prototype = { call$0: function() { var object, t1 = this.$this, t2 = this.tempListIndex; t2.toString; object = type$.RenderBox._as(t1.listStates[t2]._framework$_element.get$renderObject()); t2 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0)._dx; t1.leftListX = t2; t1.rightListX = t2 + object._box$_size._dx; P.Future_Future$delayed(P.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new N.BoardViewState_moveListLeft__closure(t1), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_moveListLeft__closure.prototype = { call$0: function() { this.$this.canDrag = true; }, $signature: 1 }; N.BoardViewState_moveListLeft_closure0.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveLeft_closure.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveLeft_closure0.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_moveLeft_closure1.prototype = { call$0: function() { var t4, object, t5, box, t1 = this.$this, t2 = t1.listStates, t3 = this.tempListIndex; t3.toString; t4 = type$.RenderBox; object = t4._as(t2[t3]._framework$_element.get$renderObject()); t5 = T.MatrixUtils_transformPoint(object.getTransformTo$1(0, null), C.Offset_0_0)._dx; t1.leftListX = t5; t1.rightListX = t5 + object._box$_size._dx; t3 = t2[t3].itemStates; t2 = this.tempItemIndex; t2.toString; box = t4._as(t3[t2]._framework$_element.get$renderObject()); t2 = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0)._dy; t1.topItemY = t2; t1.bottomItemY = t2 + box._box$_size._dy; P.Future_Future$delayed(P.Duration$(0, 0, 0, t1._widget.dragDelay, 0, 0), new N.BoardViewState_moveLeft__closure(t1), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_moveLeft__closure.prototype = { call$0: function() { this.$this.canDrag = true; }, $signature: 1 }; N.BoardViewState_moveLeft_closure2.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure.prototype = { call$1: function(duration) { var exception, t1, t2, _shown; try { C.JSArray_methods.get$single(this.$this.boardViewController._positions).didUpdateScrollPositionBy$1(0); } catch (exception) { H.unwrapException(exception); } t1 = this.$this; t2 = C.JSArray_methods.get$single(t1.boardViewController._positions)._maxScrollExtent; t2.toString; _shown = t2 !== 0; if (_shown !== t1.shown) t1.setState$1(new N.BoardViewState_build__closure5(t1, _shown)); }, $signature: 28 }; N.BoardViewState_build__closure5.prototype = { call$0: function() { this.$this.shown = this._shown; }, $signature: 0 }; N.BoardViewState_build_closure0.prototype = { call$2: function(context, index) { var t4, t5, t6, t7, t8, t9, t10, t11, temp, _null = null, t1 = this.$this, t2 = t1._widget.lists, t3 = t2[index]; if (t3.boardView == null) { t4 = t3.items; t5 = t3.headerBackgroundColor; t6 = t3.backgroundColor; t7 = t3.footer; t8 = t3.header; t9 = t3.draggable; t10 = t3.onDropList; t11 = t3.onTapList; t11 = O.BoardList$(t6, t1, t9, t7, t8, t5, _null, t4, t10, t3.onStartDragList, t11); t2[index] = t11; t3 = t11; } if (t3.index != index) { t3 = O.BoardList$(t3.backgroundColor, t1, t3.draggable, t3.footer, t3.header, t3.headerBackgroundColor, index, t3.items, t3.onDropList, t3.onStartDragList, t3.onTapList); t2[index] = t3; t2 = t3; } else t2 = t3; temp = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(t2, 1)], type$.JSArray_Widget), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(0, 0, 0, 0), _null, _null, 280); if (t1.draggedListIndex == index && t1.draggedItemIndex == null) return T.Opacity$(false, temp, 0); else return temp; }, "call*": "call$2", $requiredArgCount: 2, $signature: 128 }; N.BoardViewState_build_closure1.prototype = { call$0: function() { var pos, t1 = this._box_0, t2 = t1.pos, t3 = this.$this, t4 = t3.draggedListIndex; t4.toString; t4 = C.JSArray_methods.get$single(t3.listStates[t4].boardListController._positions)._pixels; t4.toString; pos = t1.pos = t2 - t4; if (t3.initialY == null) t3.initialY = 0; t3.isScrolling = false; t1 = t3.topItemY; if (t1 != null) t3.topItemY = t1 + pos; t1 = t3.bottomItemY; if (t1 != null) t3.bottomItemY = t1 + pos; if (t3._framework$_element != null) t3.setState$1(new N.BoardViewState_build__closure4()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_build__closure4.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure2.prototype = { call$0: function() { var pos, t1 = this._box_0, t2 = t1.pos, t3 = this.$this, t4 = t3.draggedListIndex; t4.toString; t4 = C.JSArray_methods.get$single(t3.listStates[t4].boardListController._positions)._pixels; t4.toString; pos = t1.pos = t2 - t4; if (t3.initialY == null) t3.initialY = 0; t3.isScrolling = false; t1 = t3.topItemY; if (t1 != null) t3.topItemY = t1 + pos; t1 = t3.bottomItemY; if (t1 != null) t3.bottomItemY = t1 + pos; if (t3._framework$_element != null) t3.setState$1(new N.BoardViewState_build__closure3()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BoardViewState_build__closure3.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure3.prototype = { call$1: function(timeStamp) { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_build__closure2()); }, $signature: 28 }; N.BoardViewState_build__closure2.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure5.prototype = { call$1: function(opm) { var t1 = this.$this; if (t1.draggedItem != null) { if (t1.dxInit == null) t1.dxInit = opm.get$position(opm)._dx; if (t1.dyInit == null) t1.dyInit = opm.get$position(opm)._dy; t1.dx = opm.get$position(opm)._dx; t1.dy = opm.get$position(opm)._dy; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_build__closure0()); } }, $signature: 1091 }; N.BoardViewState_build__closure0.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure4.prototype = { call$1: function(opd) { var box = type$.RenderBox._as(this.context.get$renderObject()), t1 = opd.get$position(opd), pos = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), t1); t1 = this.$this; t1.offsetX = pos._dx; t1.offsetY = pos._dy; t1.pointer = opd; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_build__closure1()); }, $signature: 215 }; N.BoardViewState_build__closure1.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_build_closure6.prototype = { call$1: function(opu) { var tempDraggedItemIndex, tempDraggedListIndex, t1 = this.$this, t2 = t1.onDropItem; if (t2 != null) { tempDraggedItemIndex = t1.draggedItemIndex; tempDraggedListIndex = t1.draggedListIndex; if (t1._isInWidget) t1._widget.toString; t2.call$2(tempDraggedListIndex, tempDraggedItemIndex); } t2 = t1.onDropList; if (t2 != null) { tempDraggedListIndex = t1.draggedListIndex; if (t1._isInWidget) t1._widget.toString; t2.call$1(tempDraggedListIndex); } t1.startItemIndex = t1.startListIndex = t1.bottomItemY = t1.topItemY = t1.bottomListY = t1.topListY = t1.rightListX = t1.leftListX = t1.dyInit = t1.dxInit = t1.onDropList = t1.onDropItem = t1.draggedListIndex = t1.draggedItemIndex = t1.dy = t1.dx = t1.initialY = t1.initialX = t1.offsetY = t1.offsetX = t1.draggedItem = null; if (t1._framework$_element != null) t1.setState$1(new N.BoardViewState_build__closure()); }, $signature: 1089 }; N.BoardViewState_build__closure.prototype = { call$0: function() { }, $signature: 0 }; N.BoardViewState_run_closure.prototype = { call$0: function() { }, $signature: 0 }; N._BoardViewState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; Q.BoardViewController.prototype = {}; Q.CopyOnWriteList.prototype = { get$length: function(_) { return J.get$length$asx(this._copy_on_write_list$_list); }, $index: function(_, index) { return J.$index$asx(this._copy_on_write_list$_list, index); }, $add: function(_, other) { return J.$add$ansx(this._copy_on_write_list$_list, other); }, any$1: function(_, test) { return J.any$1$ax(this._copy_on_write_list$_list, test); }, asMap$0: function(_) { return J.asMap$0$ax(this._copy_on_write_list$_list); }, cast$1$0: function(_, $T) { return new Q.CopyOnWriteList(true, J.cast$1$0$ax(this._copy_on_write_list$_list, $T), $T._eval$1("CopyOnWriteList<0>")); }, contains$1: function(_, element) { return J.contains$1$asx(this._copy_on_write_list$_list, element); }, elementAt$1: function(_, index) { return J.elementAt$1$ax(this._copy_on_write_list$_list, index); }, get$first: function(_) { return J.get$first$ax(this._copy_on_write_list$_list); }, firstWhere$2$orElse: function(_, test, orElse) { return J.firstWhere$2$orElse$ax(this._copy_on_write_list$_list, test, orElse); }, fold$1$2: function(_, initialValue, combine, $T) { return J.fold$1$2$ax(this._copy_on_write_list$_list, initialValue, combine, $T); }, forEach$1: function(_, f) { return J.forEach$1$ax(this._copy_on_write_list$_list, f); }, indexOf$2: function(_, element, start) { return J.indexOf$2$asx(this._copy_on_write_list$_list, element, start); }, indexOf$1: function($receiver, element) { return this.indexOf$2($receiver, element, 0); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._copy_on_write_list$_list); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._copy_on_write_list$_list); }, get$iterator: function(_) { return J.get$iterator$ax(this._copy_on_write_list$_list); }, join$1: function(_, separator) { return J.join$1$ax(this._copy_on_write_list$_list, separator); }, get$last: function(_) { return J.get$last$ax(this._copy_on_write_list$_list); }, map$1$1: function(_, f, $T) { return J.map$1$1$ax(this._copy_on_write_list$_list, f, $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, get$reversed: function(_) { return J.get$reversed$ax(this._copy_on_write_list$_list); }, skip$1: function(_, count) { return J.skip$1$ax(this._copy_on_write_list$_list, count); }, sublist$2: function(_, start, end) { return J.sublist$2$ax(this._copy_on_write_list$_list, start, end); }, sublist$1: function($receiver, start) { return this.sublist$2($receiver, start, null); }, take$1: function(_, count) { return J.take$1$ax(this._copy_on_write_list$_list, count); }, toList$1$growable: function(_, growable) { return J.toList$1$growable$ax(this._copy_on_write_list$_list, true); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return J.toSet$0$ax(this._copy_on_write_list$_list); }, where$1: function(_, test) { return J.where$1$ax(this._copy_on_write_list$_list, test); }, $indexSet: function(_, index, element) { this._maybeCopyBeforeWrite$0(); J.$indexSet$ax(this._copy_on_write_list$_list, index, element); }, add$1: function(_, value) { this._maybeCopyBeforeWrite$0(); J.add$1$ax(this._copy_on_write_list$_list, value); }, addAll$1: function(_, iterable) { this._maybeCopyBeforeWrite$0(); J.addAll$1$ax(this._copy_on_write_list$_list, iterable); }, sort$1: function(_, compare) { this._maybeCopyBeforeWrite$0(); J.sort$1$ax(this._copy_on_write_list$_list, compare); }, sort$0: function($receiver) { return this.sort$1($receiver, null); }, clear$0: function(_) { this._maybeCopyBeforeWrite$0(); J.clear$0$ax(this._copy_on_write_list$_list); }, insert$2: function(_, index, element) { this._maybeCopyBeforeWrite$0(); J.insert$2$ax(this._copy_on_write_list$_list, index, element); }, remove$1: function(_, value) { this._maybeCopyBeforeWrite$0(); return J.remove$1$ax(this._copy_on_write_list$_list, value); }, removeAt$1: function(_, index) { this._maybeCopyBeforeWrite$0(); return J.removeAt$1$ax(this._copy_on_write_list$_list, index); }, removeLast$0: function(_) { this._maybeCopyBeforeWrite$0(); return J.removeLast$0$ax(this._copy_on_write_list$_list); }, removeWhere$1: function(_, test) { this._maybeCopyBeforeWrite$0(); J.removeWhere$1$ax(this._copy_on_write_list$_list, test); }, retainWhere$1: function(_, test) { this._maybeCopyBeforeWrite$0(); J.retainWhere$1$ax(this._copy_on_write_list$_list, test); }, removeRange$2: function(_, start, end) { this._maybeCopyBeforeWrite$0(); J.removeRange$2$ax(this._copy_on_write_list$_list, start, end); }, toString$0: function(_) { return J.toString$0$(this._copy_on_write_list$_list); }, _maybeCopyBeforeWrite$0: function() { var _this = this; if (!_this._copyBeforeWrite) return; _this._copyBeforeWrite = false; _this._copy_on_write_list$_list = P.List_List$from(_this._copy_on_write_list$_list, true, _this.$ti._precomputed1); }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; A.CopyOnWriteSet.prototype = { get$length: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$length(t1); }, intersection$1: function(_, other) { return this._copy_on_write_set$_set.intersection$1(0, other); }, difference$1: function(other) { return this._copy_on_write_set$_set.difference$1(other); }, containsAll$1: function(other) { return this._copy_on_write_set$_set.containsAll$1(other); }, contains$1: function(_, element) { return this._copy_on_write_set$_set.contains$1(0, element); }, elementAt$1: function(_, index) { return this._copy_on_write_set$_set.elementAt$1(0, index); }, get$first: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$first(t1); }, forEach$1: function(_, f) { return this._copy_on_write_set$_set.forEach$1(0, f); }, get$isEmpty: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$isEmpty(t1); }, get$isNotEmpty: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$isNotEmpty(t1); }, get$iterator: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$iterator(t1); }, join$1: function(_, separator) { return this._copy_on_write_set$_set.join$1(0, separator); }, get$last: function(_) { var t1 = this._copy_on_write_set$_set; return t1.get$last(t1); }, map$1$1: function(_, f, $T) { return this._copy_on_write_set$_set.map$1$1(0, f, $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, skip$1: function(_, count) { return this._copy_on_write_set$_set.skip$1(0, count); }, take$1: function(_, count) { return this._copy_on_write_set$_set.take$1(0, count); }, toList$1$growable: function(_, growable) { return this._copy_on_write_set$_set.toList$1$growable(0, true); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return this._copy_on_write_set$_set.toSet$0(0); }, where$1: function(_, test) { return this._copy_on_write_set$_set.where$1(0, test); }, add$1: function(_, value) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); return this._copy_on_write_set$_set.add$1(0, value); }, addAll$1: function(_, iterable) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.addAll$1(0, iterable); }, clear$0: function(_) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.clear$0(0); }, remove$1: function(_, value) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); return this._copy_on_write_set$_set.remove$1(0, value); }, removeWhere$1: function(_, test) { this._copy_on_write_set$_maybeCopyBeforeWrite$0(); this._copy_on_write_set$_set.removeWhere$1(0, test); }, toString$0: function(_) { return J.toString$0$(this._copy_on_write_set$_set); }, _copy_on_write_set$_maybeCopyBeforeWrite$0: function() { var t1, _this = this; if (!_this._copy_on_write_set$_copyBeforeWrite) return; _this._copy_on_write_set$_copyBeforeWrite = false; t1 = P.LinkedHashSet_LinkedHashSet$from(_this._copy_on_write_set$_set, _this.$ti._precomputed1); _this._copy_on_write_set$_set = t1; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isSet: 1 }; A.hashObjects_closure.prototype = { call$2: function(h, i) { return A._combine(h, J.get$hashCode$(i)); }, $signature: 496 }; D.BuiltList.prototype = { rebuild$1: function(updates) { var t1 = D.ListBuilder_ListBuilder(this, this.$ti._precomputed1); updates.call$1(t1); return t1.build$0(0); }, get$hashCode: function(_) { var t1 = this._list$_hashCode; return t1 == null ? this._list$_hashCode = A.hashObjects(this._list) : t1; }, $eq: function(_, other) { var t1, t2, t3, t4, i, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof D.BuiltList)) return false; t1 = other._list; t2 = J.getInterceptor$asx(t1); t3 = _this._list; t4 = J.getInterceptor$asx(t3); if (t2.get$length(t1) != t4.get$length(t3)) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (i = 0; i !== t4.get$length(t3); ++i) if (!J.$eq$(t2.$index(t1, i), t4.$index(t3, i))) return false; return true; }, toString$0: function(_) { return J.toString$0$(this._list); }, $index: function(_, index) { return J.$index$asx(this._list, index); }, $add: function(_, other) { return new D._BuiltList(J.$add$ansx(this._list, other._list), this.$ti._eval$1("_BuiltList<1>")); }, get$length: function(_) { return J.get$length$asx(this._list); }, get$iterator: function(_) { return J.get$iterator$ax(this._list); }, map$1$1: function(_, f, $T) { return J.map$1$1$ax(this._list, f, $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1: function(_, test) { return J.where$1$ax(this._list, test); }, contains$1: function(_, element) { return J.contains$1$asx(this._list, element); }, forEach$1: function(_, f) { return J.forEach$1$ax(this._list, f); }, join$1: function(_, separator) { return J.join$1$ax(this._list, separator); }, toList$1$growable: function(_, growable) { return new Q.CopyOnWriteList(true, this._list, this.$ti._eval$1("CopyOnWriteList<1>")); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, toSet$0: function(_) { return J.toSet$0$ax(this._list); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._list); }, get$isNotEmpty: function(_) { return J.get$isNotEmpty$asx(this._list); }, take$1: function(_, n) { return J.take$1$ax(this._list, n); }, skip$1: function(_, n) { return J.skip$1$ax(this._list, n); }, get$first: function(_) { return J.get$first$ax(this._list); }, get$last: function(_) { return J.get$last$ax(this._list); }, elementAt$1: function(_, index) { return J.elementAt$1$ax(this._list, index); }, $isIterable: 1 }; D._BuiltList.prototype = { _maybeCheckForNull$0: function() { if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (var t1 = J.get$iterator$ax(this._list); t1.moveNext$0();) if (t1.get$current(t1) == null) throw H.wrapException(P.ArgumentError$("iterable contained invalid element: null")); } }; D.ListBuilder.prototype = { get$_list: function() { var t1 = this.__ListBuilder__list; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_list")) : t1; }, build$0: function(_) { var _this = this, t1 = _this._listOwner; if (t1 == null) { t1 = _this.get$_list(); _this.__ListBuilder__list = t1; t1 = _this._listOwner = new D._BuiltList(t1, _this.$ti._eval$1("_BuiltList<1>")); } return t1; }, replace$1: function(_, iterable) { var _this = this, t1 = _this.$ti; if (t1._eval$1("_BuiltList<1>")._is(iterable)) { _this.__ListBuilder__list = iterable._list; _this._listOwner = iterable; } else { _this.__ListBuilder__list = P.List_List$from(iterable, true, t1._precomputed1); _this._listOwner = null; } }, $index: function(_, index) { return J.$index$asx(this.get$_list(), index); }, $indexSet: function(_, index, element) { if (!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null)) if (element == null) H.throwExpression(P.ArgumentError$("null element")); J.$indexSet$ax(this.get$_safeList(), index, element); }, get$length: function(_) { return J.get$length$asx(this.get$_list()); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this.get$_list()); }, add$1: function(_, value) { if (!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(this.get$_safeList(), value); }, addAll$1: function(_, iterable) { var i, exception, safeList = this.get$_safeList(), lengthBefore = J.get$length$asx(safeList); J.addAll$1$ax(safeList, iterable); if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; try { for (i = lengthBefore; !J.$eq$(i, J.get$length$asx(safeList)); ++i) if (J.$index$asx(safeList, i) == null) H.throwExpression(P.ArgumentError$("null element")); } catch (exception) { H.unwrapException(exception); J.removeRange$2$ax(safeList, lengthBefore, J.get$length$asx(safeList)); throw exception; } }, map$1: function(_, f) { var _this = this, result = J.map$1$1$ax(_this.get$_list(), f, _this.$ti._precomputed1).toList$1$growable(0, true); _this._maybeCheckElements$1(result); _this.__ListBuilder__list = result; _this._listOwner = null; }, get$_safeList: function() { var _this = this; if (_this._listOwner != null) { _this.__ListBuilder__list = P.List_List$from(_this.get$_list(), true, _this.$ti._precomputed1); _this._listOwner = null; } return _this.get$_list(); }, _maybeCheckElements$1: function(elements) { var t1, _i; if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (t1 = elements.length, _i = 0; _i < t1; ++_i) if (elements[_i] == null) H.throwExpression(P.ArgumentError$("null element")); } }; R.BuiltListMultimap.prototype = { get$hashCode: function(_) { var _this = this, t1 = _this._list_multimap$_hashCode; if (t1 == null) { t1 = J.map$1$1$ax(J.get$keys$x(_this._list_multimap$_map), new R.BuiltListMultimap_hashCode_closure(_this), type$.int).toList$1$growable(0, false); C.JSArray_methods.sort$0(t1); t1 = _this._list_multimap$_hashCode = A.hashObjects(t1); } return t1; }, $eq: function(_, other) { var t1, t2, t3, t4, t5, t6, t7, key, result, t8, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof R.BuiltListMultimap)) return false; t1 = other._list_multimap$_map; t2 = J.getInterceptor$asx(t1); t3 = _this._list_multimap$_map; t4 = J.getInterceptor$asx(t3); if (t2.get$length(t1) != t4.get$length(t3)) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t5 = J.get$iterator$ax(_this.get$keys(_this)), t6 = other._emptyList, t7 = _this._emptyList; t5.moveNext$0();) { key = t5.get$current(t5); result = t2.$index(t1, key); t8 = result == null ? t6 : result; result = t4.$index(t3, key); if (!t8.$eq(0, result == null ? t7 : result)) return false; } return true; }, toString$0: function(_) { return J.toString$0$(this._list_multimap$_map); }, $index: function(_, key) { var result = J.$index$asx(this._list_multimap$_map, key); return result == null ? this._emptyList : result; }, containsKey$1: function(_, key) { return J.containsKey$1$x(this._list_multimap$_map, key); }, forEach$1: function(_, f) { J.forEach$1$ax(this._list_multimap$_map, new R.BuiltListMultimap_forEach_closure(this, f)); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._list_multimap$_map); }, get$keys: function(_) { var t1 = this._list_multimap$_keys; return t1 == null ? this._list_multimap$_keys = J.get$keys$x(this._list_multimap$_map) : t1; }, get$length: function(_) { return J.get$length$asx(this._list_multimap$_map); } }; R.BuiltListMultimap_BuiltListMultimap_closure.prototype = { call$1: function(k) { return this.multimap.$index(0, k); }, $signature: 10 }; R.BuiltListMultimap_hashCode_closure.prototype = { call$1: function(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(J.$index$asx(this.$this._list_multimap$_map, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature: function() { return this.$this.$ti._eval$1("int(1)"); } }; R.BuiltListMultimap_forEach_closure.prototype = { call$2: function(key, values) { J.forEach$1$ax(values._list, new R.BuiltListMultimap_forEach__closure(this.$this, this.f, key)); }, $signature: function() { return this.$this.$ti._eval$1("~(1,BuiltList<2>)"); } }; R.BuiltListMultimap_forEach__closure.prototype = { call$1: function(value) { this.f.call$2(this.key, value); }, $signature: function() { return this.$this.$ti._eval$1("~(2)"); } }; R._BuiltListMultimap.prototype = { _BuiltListMultimap$copy$2: function(keys, lookup, $K, $V) { var t1, t2, t3, key; for (t1 = J.get$iterator$ax(keys), t2 = this._list_multimap$_map, t3 = J.getInterceptor$ax(t2); t1.moveNext$0();) { key = t1.get$current(t1); if ($K._is(key)) t3.$indexSet(t2, key, D.BuiltList_BuiltList$from(lookup.call$1(key), $V)); else throw H.wrapException(P.ArgumentError$("map contained invalid key: " + H.S(key))); } } }; R.ListMultimapBuilder.prototype = { get$_list_multimap$_builtMap: function() { var t1 = this.__ListMultimapBuilder__builtMap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_builtMap")) : t1; }, get$_list_multimap$_builderMap: function() { var t1 = this.__ListMultimapBuilder__builderMap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_builderMap")) : t1; }, build$0: function(_) { var key, t2, builtList, t3, _this = this, _s9_ = "_builtMap", t1 = _this._list_multimap$_builtMapOwner; if (t1 == null) { for (t1 = J.get$iterator$ax(J.get$keys$x(_this.get$_list_multimap$_builderMap())); t1.moveNext$0();) { key = t1.get$current(t1); t2 = _this.__ListMultimapBuilder__builderMap; t2 = J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_builderMap")) : t2, key); builtList = t2._listOwner; if (builtList == null) { t3 = t2.__ListBuilder__list; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_list")); t2.__ListBuilder__list = t3; builtList = t2._listOwner = new D._BuiltList(t3, H.instanceType(t2)._eval$1("_BuiltList<1>")); } t2 = J.get$isEmpty$asx(builtList._list); t3 = _this.__ListMultimapBuilder__builtMap; if (t2) J.remove$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, key); else J.$indexSet$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, key, builtList); } t1 = _this.$ti; t2 = t1._rest[1]; t2 = _this._list_multimap$_builtMapOwner = new R._BuiltListMultimap(_this.get$_list_multimap$_builtMap(), D.BuiltList_BuiltList$from(C.List_empty, t2), t1._eval$1("@<1>")._bind$1(t2)._eval$1("_BuiltListMultimap<1,2>")); t1 = t2; } return t1; }, replace$1: function(_, multimap) { this._list_multimap$_setWithCopyAndCheck$2(multimap.get$keys(multimap), new R.ListMultimapBuilder_replace_closure(multimap)); }, $index: function(_, key) { var t1; this._makeWriteableCopy$0(); t1 = this.$ti; return t1._precomputed1._is(key) ? this._list_multimap$_getValuesBuilder$1(key) : D.ListBuilder_ListBuilder(C.List_empty, t1._rest[1]); }, _list_multimap$_getValuesBuilder$1: function(key) { var builtValues, _this = this, result = J.$index$asx(_this.get$_list_multimap$_builderMap(), key); if (result == null) { builtValues = J.$index$asx(_this.get$_list_multimap$_builtMap(), key); result = builtValues == null ? D.ListBuilder_ListBuilder(C.List_empty, _this.$ti._rest[1]) : D.ListBuilder_ListBuilder(builtValues, builtValues.$ti._precomputed1); J.$indexSet$ax(_this.get$_list_multimap$_builderMap(), key, result); } return result; }, _makeWriteableCopy$0: function() { var t1, _this = this; if (_this._list_multimap$_builtMapOwner != null) { t1 = _this.$ti; _this.__ListMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$from(_this.get$_list_multimap$_builtMap(), t1._precomputed1, t1._eval$1("BuiltList<2>")); _this._list_multimap$_builtMapOwner = null; } }, _list_multimap$_setWithCopyAndCheck$2: function(keys, lookup) { var t1, t2, t3, t4, key, t5, value, t6, t7, _this = this; _this._list_multimap$_builtMapOwner = null; t1 = _this.$ti; t2 = t1._precomputed1; t3 = t1._eval$1("BuiltList<2>"); _this.__ListMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t3); _this.__ListMultimapBuilder__builderMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t1._eval$1("ListBuilder<2>")); for (t4 = J.get$iterator$ax(keys), t1 = t1._rest[1]; t4.moveNext$0();) { key = t4.get$current(t4); if (t2._is(key)) for (t5 = J.get$iterator$ax(lookup.call$1(key)); t5.moveNext$0();) { value = t5.get$current(t5); if (t1._is(value)) { if (_this._list_multimap$_builtMapOwner != null) { t6 = _this.__ListMultimapBuilder__builtMap; _this.__ListMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$from(t6 === $ ? H.throwExpression(H.LateError$fieldNI("_builtMap")) : t6, t2, t3); _this._list_multimap$_builtMapOwner = null; } _this._list_multimap$_checkKey$1(key); _this._list_multimap$_checkValue$1(value); t6 = _this._list_multimap$_getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t6.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); if (t6._listOwner != null) { t7 = t6.__ListBuilder__list; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI("_list")); t6.__ListBuilder__list = P.List_List$from(t7, true, t6.$ti._precomputed1); t6._listOwner = null; } t6 = t6.__ListBuilder__list; J.add$1$ax(t6 === $ ? H.throwExpression(H.LateError$fieldNI("_list")) : t6, value); } else throw H.wrapException(P.ArgumentError$("map contained invalid value: " + H.S(value) + ", for key " + H.S(key))); } else throw H.wrapException(P.ArgumentError$("map contained invalid key: " + H.S(key))); } }, _list_multimap$_checkKey$1: function(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw H.wrapException(P.ArgumentError$("null key")); }, _list_multimap$_checkValue$1: function(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw H.wrapException(P.ArgumentError$("null value")); } }; R.ListMultimapBuilder_replace_closure.prototype = { call$1: function(k) { return this.multimap.$index(0, k); }, $signature: 10 }; A.BuiltMap.prototype = { rebuild$1: function(updates) { var t1 = this.$ti; t1._eval$1("_BuiltMap<1,2>")._as(this); t1 = new A.MapBuilder(this._mapFactory, this._map$_map, this, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); updates.call$1(t1); return t1.build$0(0); }, get$hashCode: function(_) { var _this = this, t1 = _this._hashCode; if (t1 == null) { t1 = J.map$1$1$ax(J.get$keys$x(_this._map$_map), new A.BuiltMap_hashCode_closure(_this), type$.int).toList$1$growable(0, false); C.JSArray_methods.sort$0(t1); t1 = _this._hashCode = A.hashObjects(t1); } return t1; }, $eq: function(_, other) { var t1, t2, t3, t4, t5, key, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof A.BuiltMap)) return false; t1 = other._map$_map; t2 = J.getInterceptor$asx(t1); t3 = _this._map$_map; t4 = J.getInterceptor$asx(t3); if (t2.get$length(t1) != t4.get$length(t3)) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t5 = J.get$iterator$ax(_this.get$keys(_this)); t5.moveNext$0();) { key = t5.get$current(t5); if (!J.$eq$(t2.$index(t1, key), t4.$index(t3, key))) return false; } return true; }, toString$0: function(_) { return J.toString$0$(this._map$_map); }, $index: function(_, key) { return J.$index$asx(this._map$_map, key); }, containsKey$1: function(_, key) { return J.containsKey$1$x(this._map$_map, key); }, forEach$1: function(_, f) { J.forEach$1$ax(this._map$_map, f); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._map$_map); }, get$keys: function(_) { var t1 = this._map$_keys; return t1 == null ? this._map$_keys = J.get$keys$x(this._map$_map) : t1; }, get$length: function(_) { return J.get$length$asx(this._map$_map); }, map$1: function(_, f) { var t1 = type$.dynamic; return new A._BuiltMap(null, J.map$2$1$ax(this._map$_map, f, t1, t1), type$._BuiltMap_dynamic_dynamic); } }; A.BuiltMap_BuiltMap_closure.prototype = { call$1: function(k) { return J.$index$asx(this.map, k); }, $signature: 10 }; A.BuiltMap_BuiltMap$from_closure.prototype = { call$1: function(k) { return this.map.$index(0, k); }, $signature: 10 }; A.BuiltMap_hashCode_closure.prototype = { call$1: function(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(J.$index$asx(this.$this._map$_map, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature: function() { return this.$this.$ti._eval$1("int(1)"); } }; A._BuiltMap.prototype = { _BuiltMap$copyAndCheckTypes$2: function(keys, lookup, $K, $V) { var t1, t2, t3, key, value; for (t1 = J.get$iterator$ax(keys), t2 = this._map$_map, t3 = J.getInterceptor$ax(t2); t1.moveNext$0();) { key = t1.get$current(t1); if ($K._is(key)) { value = lookup.call$1(key); if ($V._is(value)) t3.$indexSet(t2, key, value); else throw H.wrapException(P.ArgumentError$("map contained invalid value: " + H.S(value))); } else throw H.wrapException(P.ArgumentError$("map contained invalid key: " + H.S(key))); } } }; A.MapBuilder.prototype = { get$_map$_map: function() { var t1 = this.__MapBuilder__map; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_map")) : t1; }, build$0: function(_) { var _this = this, t1 = _this._mapOwner; if (t1 == null) { t1 = _this.$ti; t1 = _this._mapOwner = new A._BuiltMap(_this._mapFactory, _this.get$_map$_map(), t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BuiltMap<1,2>")); } return t1; }, replace$1: function(_, map) { var replacement, _this = this; if (_this.$ti._eval$1("_BuiltMap<1,2>")._is(map) && true) { _this._mapOwner = map; _this.__MapBuilder__map = map._map$_map; } else if (map instanceof A.BuiltMap) { replacement = _this._createMap$0(); J.forEach$1$ax(map._map$_map, new A.MapBuilder_replace_closure(_this, replacement)); _this._mapOwner = null; _this.__MapBuilder__map = replacement; } else if (type$.Map_dynamic_dynamic._is(map)) { replacement = _this._createMap$0(); J.forEach$1$ax(map, new A.MapBuilder_replace_closure0(_this, replacement)); _this._mapOwner = null; _this.__MapBuilder__map = replacement; } else throw H.wrapException(P.ArgumentError$("expected Map or BuiltMap, got " + J.get$runtimeType$(map).toString$0(0))); }, $index: function(_, key) { return J.$index$asx(this.get$_map$_map(), key); }, $indexSet: function(_, key, value) { this._checkKey$1(key); this._checkValue$1(value); J.$indexSet$ax(this.get$_safeMap(), key, value); }, get$length: function(_) { return J.get$length$asx(this.get$_map$_map()); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this.get$_map$_map()); }, addAll$1: function(_, other) { this._checkKeys$1(other.get$keys(other)); this._checkValues$1(other.get$values(other)); J.addAll$1$ax(this.get$_safeMap(), other); }, get$_safeMap: function() { var t1, _this = this; if (_this._mapOwner != null) { t1 = _this._createMap$0(); t1.addAll$1(0, _this.get$_map$_map()); _this.__MapBuilder__map = t1; _this._mapOwner = null; } return _this.get$_map$_map(); }, _createMap$0: function() { var t1 = this.$ti; return P.LinkedHashMap_LinkedHashMap$_empty(t1._precomputed1, t1._rest[1]); }, _checkKey$1: function(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw H.wrapException(P.ArgumentError$("null key")); }, _checkKeys$1: function(keys) { var t1; if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; for (t1 = keys.get$iterator(keys); t1.moveNext$0();) this._checkKey$1(t1.get$current(t1)); }, _checkValue$1: function(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw H.wrapException(P.ArgumentError$("null value")); }, _checkValues$1: function(values) { var t1; if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; for (t1 = values.get$iterator(values); t1.moveNext$0();) this._checkValue$1(t1.get$current(t1)); } }; A.MapBuilder_replace_closure.prototype = { call$2: function(key, value) { var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, $signature: 118 }; A.MapBuilder_replace_closure0.prototype = { call$2: function(key, value) { var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, $signature: 118 }; X.BuiltSet.prototype = { get$hashCode: function(_) { var _this = this, t1 = _this._set$_hashCode; if (t1 == null) { t1 = _this._set$_set.map$1$1(0, new X.BuiltSet_hashCode_closure(_this), type$.int); t1 = P.List_List$of(t1, false, H._instanceType(t1)._eval$1("Iterable.E")); C.JSArray_methods.sort$0(t1); t1 = _this._set$_hashCode = A.hashObjects(t1); } return t1; }, $eq: function(_, other) { var t1, t2, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof X.BuiltSet)) return false; t1 = other._set$_set; t2 = _this._set$_set; if (t1.get$length(t1) != t2.get$length(t2)) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; return t2.containsAll$1(other); }, toString$0: function(_) { return J.toString$0$(this._set$_set); }, get$length: function(_) { var t1 = this._set$_set; return t1.get$length(t1); }, get$iterator: function(_) { var t1 = this._set$_set; return t1.get$iterator(t1); }, map$1$1: function(_, f, $T) { return this._set$_set.map$1$1(0, f, $T); }, map$1: function($receiver, f) { return this.map$1$1($receiver, f, type$.dynamic); }, where$1: function(_, test) { return this._set$_set.where$1(0, test); }, contains$1: function(_, element) { return this._set$_set.contains$1(0, element); }, forEach$1: function(_, f) { return this._set$_set.forEach$1(0, f); }, join$1: function(_, separator) { return this._set$_set.join$1(0, separator); }, toSet$0: function(_) { return new A.CopyOnWriteSet(this._setFactory, this._set$_set, this.$ti._eval$1("CopyOnWriteSet<1>")); }, toList$1$growable: function(_, growable) { return this._set$_set.toList$1$growable(0, true); }, toList$0: function($receiver) { return this.toList$1$growable($receiver, true); }, get$isEmpty: function(_) { var t1 = this._set$_set; return t1.get$isEmpty(t1); }, get$isNotEmpty: function(_) { var t1 = this._set$_set; return t1.get$isNotEmpty(t1); }, take$1: function(_, n) { return this._set$_set.take$1(0, n); }, skip$1: function(_, n) { return this._set$_set.skip$1(0, n); }, get$first: function(_) { var t1 = this._set$_set; return t1.get$first(t1); }, get$last: function(_) { var t1 = this._set$_set; return t1.get$last(t1); }, elementAt$1: function(_, index) { return this._set$_set.elementAt$1(0, index); }, $isIterable: 1 }; X.BuiltSet_hashCode_closure.prototype = { call$1: function(e) { return J.get$hashCode$(e); }, $signature: function() { return this.$this.$ti._eval$1("int(1)"); } }; X._BuiltSet.prototype = { _set$_maybeCheckForNull$0: function() { if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (var t1 = this._set$_set, t1 = t1.get$iterator(t1); t1.moveNext$0();) if (t1.get$current(t1) == null) throw H.wrapException(P.ArgumentError$("iterable contained invalid element: null")); } }; X.SetBuilder.prototype = { get$_set$_set: function() { var t1 = this.__SetBuilder__set; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_set")) : t1; }, build$0: function(_) { var _this = this, t1 = _this._setOwner; return t1 == null ? _this._setOwner = new X._BuiltSet(_this._setFactory, _this.get$_set$_set(), _this.$ti._eval$1("_BuiltSet<1>")) : t1; }, replace$1: function(_, iterable) { var t1, t2, element, _this = this, set = _this._createSet$0(); for (t1 = J.get$iterator$ax(iterable), t2 = _this.$ti._precomputed1; t1.moveNext$0();) { element = t1.get$current(t1); if (t2._is(element)) set.add$1(0, element); else throw H.wrapException(P.ArgumentError$("iterable contained invalid element: " + H.S(element))); } _this._setOwner = null; _this.__SetBuilder__set = set; }, get$length: function(_) { var t1 = this.get$_set$_set(); return t1.get$length(t1); }, get$isEmpty: function(_) { var t1 = this.get$_set$_set(); return t1.get$isEmpty(t1); }, add$1: function(_, value) { if (!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); return this.get$_safeSet().add$1(0, value); }, map$1: function(_, f) { var _this = this, result = _this._createSet$0(); result.addAll$1(0, _this.get$_set$_set().map$1$1(0, f, _this.$ti._precomputed1)); _this._set$_maybeCheckElements$1(result); _this._setOwner = null; _this.__SetBuilder__set = result; }, get$_safeSet: function() { var t1, _this = this; if (_this._setOwner != null) { t1 = _this._createSet$0(); t1.addAll$1(0, _this.get$_set$_set()); _this.__SetBuilder__set = t1; _this._setOwner = null; } return _this.get$_set$_set(); }, _createSet$0: function() { return P.LinkedHashSet_LinkedHashSet$_empty(this.$ti._precomputed1); }, _set$_maybeCheckElements$1: function(elements) { var t1; if (!(!$.$get$isSoundMode() && !this.$ti._precomputed1._is(null))) return; for (t1 = P._LinkedHashSetIterator$(elements, elements._collection$_modifications, H._instanceType(elements)._precomputed1); t1.moveNext$0();) if (t1._collection$_current == null) H.throwExpression(P.ArgumentError$("null element")); } }; M.BuiltSetMultimap.prototype = { get$hashCode: function(_) { var _this = this, t1 = _this._set_multimap$_hashCode; if (t1 == null) { t1 = J.map$1$1$ax(J.get$keys$x(_this._set_multimap$_map), new M.BuiltSetMultimap_hashCode_closure(_this), type$.int).toList$1$growable(0, false); C.JSArray_methods.sort$0(t1); t1 = _this._set_multimap$_hashCode = A.hashObjects(t1); } return t1; }, $eq: function(_, other) { var t1, t2, t3, t4, t5, t6, t7, key, result, t8, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof M.BuiltSetMultimap)) return false; t1 = other._set_multimap$_map; t2 = J.getInterceptor$asx(t1); t3 = _this._set_multimap$_map; t4 = J.getInterceptor$asx(t3); if (t2.get$length(t1) != t4.get$length(t3)) return false; if (other.get$hashCode(other) != _this.get$hashCode(_this)) return false; for (t5 = J.get$iterator$ax(_this.get$keys(_this)), t6 = other._emptySet, t7 = _this._emptySet; t5.moveNext$0();) { key = t5.get$current(t5); result = t2.$index(t1, key); t8 = result == null ? t6 : result; result = t4.$index(t3, key); if (!t8.$eq(0, result == null ? t7 : result)) return false; } return true; }, toString$0: function(_) { return J.toString$0$(this._set_multimap$_map); }, $index: function(_, key) { var result = J.$index$asx(this._set_multimap$_map, key); return result == null ? this._emptySet : result; }, containsKey$1: function(_, key) { return J.containsKey$1$x(this._set_multimap$_map, key); }, forEach$1: function(_, f) { J.forEach$1$ax(this._set_multimap$_map, new M.BuiltSetMultimap_forEach_closure(this, f)); }, get$isEmpty: function(_) { return J.get$isEmpty$asx(this._set_multimap$_map); }, get$keys: function(_) { var t1 = this._set_multimap$_keys; return t1 == null ? this._set_multimap$_keys = J.get$keys$x(this._set_multimap$_map) : t1; }, get$length: function(_) { return J.get$length$asx(this._set_multimap$_map); } }; M.BuiltSetMultimap_hashCode_closure.prototype = { call$1: function(key) { var t1 = J.get$hashCode$(key), t2 = J.get$hashCode$(J.$index$asx(this.$this._set_multimap$_map, key)); return A._finish(A._combine(A._combine(0, J.get$hashCode$(t1)), J.get$hashCode$(t2))); }, $signature: function() { return this.$this.$ti._eval$1("int(1)"); } }; M.BuiltSetMultimap_forEach_closure.prototype = { call$2: function(key, values) { values._set$_set.forEach$1(0, new M.BuiltSetMultimap_forEach__closure(this.$this, this.f, key)); }, $signature: function() { return this.$this.$ti._eval$1("~(1,BuiltSet<2>)"); } }; M.BuiltSetMultimap_forEach__closure.prototype = { call$1: function(value) { this.f.call$2(this.key, value); }, $signature: function() { return this.$this.$ti._eval$1("~(2)"); } }; M._BuiltSetMultimap.prototype = {}; M.SetMultimapBuilder.prototype = { get$_builtMap: function() { var t1 = this.__SetMultimapBuilder__builtMap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_builtMap")) : t1; }, get$_builderMap: function() { var t1 = this.__SetMultimapBuilder__builderMap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_builderMap")) : t1; }, build$0: function(_) { var key, t2, builtSet, t3, t4, _this = this, _s9_ = "_builtMap", t1 = _this._builtMapOwner; if (t1 == null) { for (t1 = J.get$iterator$ax(J.get$keys$x(_this.get$_builderMap())); t1.moveNext$0();) { key = t1.get$current(t1); t2 = _this.__SetMultimapBuilder__builderMap; t2 = J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_builderMap")) : t2, key); builtSet = t2._setOwner; if (builtSet == null) { t3 = t2._setFactory; t4 = t2.__SetBuilder__set; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("_set")); builtSet = t2._setOwner = new X._BuiltSet(t3, t4, H.instanceType(t2)._eval$1("_BuiltSet<1>")); } t2 = builtSet._set$_set; t2 = t2.get$isEmpty(t2); t3 = _this.__SetMultimapBuilder__builtMap; if (t2) J.remove$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, key); else J.$indexSet$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, key, builtSet); } t1 = _this.$ti; t2 = t1._rest[1]; t2 = _this._builtMapOwner = new M._BuiltSetMultimap(_this.get$_builtMap(), X.BuiltSet_BuiltSet$from(C.List_empty, t2), t1._eval$1("@<1>")._bind$1(t2)._eval$1("_BuiltSetMultimap<1,2>")); t1 = t2; } return t1; }, replace$1: function(_, multimap) { this._setWithCopyAndCheck$2(multimap.get$keys(multimap), new M.SetMultimapBuilder_replace_closure(multimap)); }, _getValuesBuilder$1: function(key) { var builtValues, t1, _this = this, result = J.$index$asx(_this.get$_builderMap(), key); if (result == null) { builtValues = J.$index$asx(_this.get$_builtMap(), key); if (builtValues == null) result = X.SetBuilder_SetBuilder(_this.$ti._rest[1]); else { t1 = builtValues.$ti; t1._eval$1("_BuiltSet<1>")._as(builtValues); result = new X.SetBuilder(builtValues._setFactory, builtValues._set$_set, builtValues, t1._eval$1("SetBuilder<1>")); } J.$indexSet$ax(_this.get$_builderMap(), key, result); } return result; }, _setWithCopyAndCheck$2: function(keys, lookup) { var t1, t2, t3, t4, key, t5, value, t6, _this = this; _this._builtMapOwner = null; t1 = _this.$ti; t2 = t1._precomputed1; t3 = t1._eval$1("BuiltSet<2>"); _this.__SetMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t3); _this.__SetMultimapBuilder__builderMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t1._eval$1("SetBuilder<2>")); for (t4 = J.get$iterator$ax(keys), t1 = t1._rest[1]; t4.moveNext$0();) { key = t4.get$current(t4); if (t2._is(key)) for (t5 = J.get$iterator$ax(lookup.call$1(key)); t5.moveNext$0();) { value = t5.get$current(t5); if (t1._is(value)) { if (_this._builtMapOwner != null) { t6 = _this.__SetMultimapBuilder__builtMap; _this.__SetMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$from(t6 === $ ? H.throwExpression(H.LateError$fieldNI("_builtMap")) : t6, t2, t3); _this._builtMapOwner = null; } _this._set_multimap$_checkKey$1(key); _this._set_multimap$_checkValue$1(value); t6 = _this._getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t6.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); t6.get$_safeSet().add$1(0, value); } else throw H.wrapException(P.ArgumentError$("map contained invalid value: " + H.S(value) + ", for key " + H.S(key))); } else throw H.wrapException(P.ArgumentError$("map contained invalid key: " + H.S(key))); } }, _set_multimap$_checkKey$1: function(key) { if ($.$get$isSoundMode()) return; if (this.$ti._precomputed1._is(null)) return; if (key == null) throw H.wrapException(P.ArgumentError$("invalid key: " + H.S(key))); }, _set_multimap$_checkValue$1: function(value) { if ($.$get$isSoundMode()) return; if (this.$ti._rest[1]._is(null)) return; if (value == null) throw H.wrapException(P.ArgumentError$("invalid value: " + H.S(value))); } }; M.SetMultimapBuilder_replace_closure.prototype = { call$1: function(k) { return this.multimap.$index(0, k); }, $signature: 10 }; Y.EnumClass.prototype = { toString$0: function(_) { return this.name; }, get$name: function(receiver) { return this.name; } }; Y.newBuiltValueToStringHelper_closure.prototype = { call$1: function(className) { var t1 = new P.StringBuffer(""), t2 = t1._contents += H.S(className); t1._contents = t2 + " {\n"; $._indentingBuiltValueToStringHelperIndent = $._indentingBuiltValueToStringHelperIndent + 2; return new Y.IndentingBuiltValueToStringHelper(t1); }, $signature: 1021 }; Y.IndentingBuiltValueToStringHelper.prototype = { add$2: function(_, field, value) { var t1, t2; if (value != null) { t1 = this._result; t1.toString; t2 = t1._contents += C.JSString_methods.$mul(" ", $._indentingBuiltValueToStringHelperIndent); t2 += field; t1._contents = t2; t1._contents = t2 + "="; t2 = t1._contents += H.S(value); t1._contents = t2 + ",\n"; } }, toString$0: function(_) { var t2, stringResult, t1 = $._indentingBuiltValueToStringHelperIndent - 2; $._indentingBuiltValueToStringHelperIndent = t1; t2 = this._result; t2.toString; t1 = t2._contents += C.JSString_methods.$mul(" ", t1); t2._contents = t1 + "}"; stringResult = J.toString$0$(this._result); this._result = null; return stringResult; } }; Y.BuiltValueNullFieldError.prototype = { toString$0: function(_) { var t1 = this.field; return 'Tried to construct class "' + this.type + '" with null field "' + t1 + '". This is forbidden; to allow it, mark "' + t1 + '" with @nullable.'; } }; Y.BuiltValueNestedFieldError.prototype = { toString$0: function(_) { return 'Tried to build class "' + this.type + '" but nested builder for field "' + H.S(this.field) + '" threw: ' + H.S(this.error); } }; A.JsonObject.prototype = { toString$0: function(_) { return J.toString$0$(this.get$value(this)); } }; A.BoolJsonObject.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.BoolJsonObject)) return false; return this.value === other.value; }, get$hashCode: function(_) { return C.JSBool_methods.get$hashCode(this.value); }, get$value: function(receiver) { return this.value; } }; A.ListJsonObject.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.ListJsonObject)) return false; return C.DeepCollectionEquality_false.equals$2(this.value, other.value); }, get$hashCode: function(_) { return C.DeepCollectionEquality_false.hash$1(0, this.value); }, get$value: function(receiver) { return this.value; } }; A.MapJsonObject.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.MapJsonObject)) return false; return C.DeepCollectionEquality_false.equals$2(this.value, other.value); }, get$hashCode: function(_) { return C.DeepCollectionEquality_false.hash$1(0, this.value); }, get$value: function(receiver) { return this.value; } }; A.NumJsonObject.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.NumJsonObject)) return false; return this.value === other.value; }, get$hashCode: function(_) { return C.JSNumber_methods.get$hashCode(this.value); }, get$value: function(receiver) { return this.value; } }; A.StringJsonObject.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; if (!(other instanceof A.StringJsonObject)) return false; return this.value === other.value; }, get$hashCode: function(_) { return C.JSString_methods.get$hashCode(this.value); }, get$value: function(receiver) { return this.value; } }; U.Serializers_Serializers_closure.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.Object); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1020 }; U.Serializers_Serializers_closure0.prototype = { call$0: function() { var t1 = type$.Object; return R.ListMultimapBuilder_ListMultimapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1018 }; U.Serializers_Serializers_closure1.prototype = { call$0: function() { var t1 = type$.Object; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1016 }; U.Serializers_Serializers_closure2.prototype = { call$0: function() { return X.SetBuilder_SetBuilder(type$.Object); }, "call*": "call$0", $requiredArgCount: 0, $signature: 995 }; U.Serializers_Serializers_closure3.prototype = { call$0: function() { var t1 = type$.Object; return M.SetMultimapBuilder_SetMultimapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 989 }; U.FullType.prototype = { $eq: function(_, other) { var t1, t2, t3, i, _this = this; if (other == null) return false; if (other === _this) return true; if (!(other instanceof U.FullType)) return false; if (_this.root != other.root) return false; if (_this.nullable !== other.nullable) return false; t1 = _this.parameters; t2 = t1.length; t3 = other.parameters; if (t2 !== t3.length) return false; for (i = 0; i !== t2; ++i) if (!t1[i].$eq(0, t3[i])) return false; return true; }, get$hashCode: function(_) { var t1 = A.hashObjects(this.parameters); t1 = A._finish(A._combine(A._combine(0, J.get$hashCode$(this.root)), C.JSInt_methods.get$hashCode(t1))); return t1 ^ (this.nullable ? 1768878041 : 0); }, toString$0: function(_) { var t2, t1 = this.root; if (t1 == null) t1 = "unspecified"; else { t2 = this.parameters; t1 = t2.length === 0 ? U.FullType__getRawName(t1) : U.FullType__getRawName(t1) + "<" + C.JSArray_methods.join$1(t2, ", ") + ">"; t1 += this.nullable ? "?" : ""; } return t1; } }; U.DeserializationError.prototype = { toString$0: function(_) { return "Deserializing '" + this.json + "' to '" + this.type.toString$0(0) + "' failed due to: " + this.error.toString$0(0); } }; O.BigIntSerializer.prototype = { serialize$3$specifiedType: function(serializers, bigInt, specifiedType) { return bigInt.toString$0(0); }, serialize$2: function(serializers, bigInt) { return this.serialize$3$specifiedType(serializers, bigInt, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var result; H._asStringS(serialized); result = P._BigIntImpl__tryParse(serialized, null); if (result == null) H.throwExpression(P.FormatException$("Could not parse BigInt", serialized, null)); return result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "BigInt"; } }; R.BoolSerializer.prototype = { serialize$3$specifiedType: function(serializers, boolean, specifiedType) { return boolean; }, serialize$2: function(serializers, boolean) { return this.serialize$3$specifiedType(serializers, boolean, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return H._asBoolS(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "bool"; } }; Y.BuiltJsonSerializers.prototype = { deserializeWith$1$2: function(serializer, serialized, $T) { return $T._eval$1("0?")._as(this.deserialize$2$specifiedType(serialized, new U.FullType(J.get$first$ax(serializer.get$types(serializer)), C.List_empty7, false))); }, serializeWith$1$2: function(serializer, object) { return this.serialize$2$specifiedType(object, new U.FullType(J.get$first$ax(serializer.get$types(serializer)), C.List_empty7, false)); }, serializeWith$2: function(serializer, object) { return this.serializeWith$1$2(serializer, object, type$.dynamic); }, serialize$2$specifiedType: function(object, specifiedType) { var t1, t2, t3, t4, result; for (t1 = this.serializerPlugins._list, t2 = J.getInterceptor$ax(t1), t3 = t2.get$iterator(t1), t4 = specifiedType.root; t3.moveNext$0();) { t3.get$current(t3).toString; if ($.$get$StandardJsonPlugin__unsupportedTypes()._set$_set.contains$1(0, t4)) H.throwExpression(P.ArgumentError$("Standard JSON cannot serialize type " + H.S(t4) + ".")); } result = this._serialize$2(object, specifiedType); for (t1 = t2.get$iterator(t1); t1.moveNext$0();) result = t1.get$current(t1).afterSerialize$2(result, specifiedType); return result; }, serialize$1: function(object) { return this.serialize$2$specifiedType(object, C.FullType_null_List_empty_false); }, _serialize$2: function(object, specifiedType) { var serializer, result, _this = this, _s62_ = string$.serial, t1 = specifiedType.root; if (t1 == null) { t1 = J.getInterceptor$(object); serializer = _this.serializerForType$1(t1.get$runtimeType(object)); if (serializer == null) throw H.wrapException(P.StateError$("No serializer for '" + t1.get$runtimeType(object).toString$0(0) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer)) { result = [serializer.get$wireName()]; C.JSArray_methods.addAll$1(result, serializer.serialize$2(_this, object)); return result; } else if (type$.PrimitiveSerializer_dynamic._is(serializer)) return object == null ? [serializer.get$wireName(), null] : H.setRuntimeTypeInfo([serializer.get$wireName(), serializer.serialize$2(_this, object)], type$.JSArray_Object); else throw H.wrapException(P.StateError$(_s62_)); } else { serializer = _this.serializerForType$1(t1); if (serializer == null) return _this.serialize$1(object); if (type$.StructuredSerializer_dynamic._is(serializer)) return object == null ? null : J.toList$0$ax(serializer.serialize$3$specifiedType(_this, object, specifiedType)); else if (type$.PrimitiveSerializer_dynamic._is(serializer)) return object == null ? null : serializer.serialize$3$specifiedType(_this, object, specifiedType); else throw H.wrapException(P.StateError$(_s62_)); } }, deserialize$2$specifiedType: function(object, specifiedType) { var t1, t2, t3, transformedObject, result; for (t1 = this.serializerPlugins._list, t2 = J.getInterceptor$ax(t1), t3 = t2.get$iterator(t1), transformedObject = object; t3.moveNext$0();) transformedObject = t3.get$current(t3).beforeDeserialize$2(transformedObject, specifiedType); result = this._deserialize$3(object, transformedObject, specifiedType); for (t1 = t2.get$iterator(t1); t1.moveNext$0();) t1.get$current(t1).toString; return result; }, deserialize$1: function(object) { return this.deserialize$2$specifiedType(object, C.FullType_null_List_empty_false); }, _deserialize$3: function(objectBeforePlugins, object, specifiedType) { var serializer, error, primitive, error0, serializer0, error1, error2, wireName, exception, _this = this, _s19_ = "No serializer for '", _s62_ = string$.serial, t1 = specifiedType.root; if (t1 == null) { type$.List_nullable_Object._as(object); t1 = J.getInterceptor$ax(object); wireName = H._asStringS(t1.get$first(object)); serializer = J.$index$asx(_this._wireNameToSerializer._map$_map, wireName); if (serializer == null) throw H.wrapException(P.StateError$(_s19_ + H.S(wireName) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer)) try { t1 = serializer.deserialize$2(_this, t1.sublist$1(object, 1)); return t1; } catch (exception) { t1 = H.unwrapException(exception); if (type$.Error._is(t1)) { error = t1; throw H.wrapException(U.DeserializationError_DeserializationError(object, specifiedType, error)); } else throw exception; } else if (type$.PrimitiveSerializer_dynamic._is(serializer)) try { primitive = t1.$index(object, 1); t1 = primitive == null ? null : serializer.deserialize$2(_this, primitive); return t1; } catch (exception) { t1 = H.unwrapException(exception); if (type$.Error._is(t1)) { error0 = t1; throw H.wrapException(U.DeserializationError_DeserializationError(object, specifiedType, error0)); } else throw exception; } else throw H.wrapException(P.StateError$(_s62_)); } else { serializer0 = _this.serializerForType$1(t1); if (serializer0 == null) if (type$.List_dynamic._is(object) && typeof J.get$first$ax(object) == "string") return _this.deserialize$1(objectBeforePlugins); else throw H.wrapException(P.StateError$(_s19_ + t1.toString$0(0) + "'.")); if (type$.StructuredSerializer_dynamic._is(serializer0)) try { t1 = object == null ? null : serializer0.deserialize$3$specifiedType(_this, type$.Iterable_nullable_Object._as(object), specifiedType); return t1; } catch (exception) { t1 = H.unwrapException(exception); if (type$.Error._is(t1)) { error1 = t1; throw H.wrapException(U.DeserializationError_DeserializationError(object, specifiedType, error1)); } else throw exception; } else if (type$.PrimitiveSerializer_dynamic._is(serializer0)) try { t1 = object == null ? null : serializer0.deserialize$3$specifiedType(_this, object, specifiedType); return t1; } catch (exception) { t1 = H.unwrapException(exception); if (type$.Error._is(t1)) { error2 = t1; throw H.wrapException(U.DeserializationError_DeserializationError(object, specifiedType, error2)); } else throw exception; } else throw H.wrapException(P.StateError$(_s62_)); } }, serializerForType$1: function(type) { var t1 = J.$index$asx(this._typeToSerializer._map$_map, type); if (t1 == null) { t1 = Y._getRawName(type); t1 = J.$index$asx(this._typeNameToSerializer._map$_map, t1); } return t1; }, newBuilder$1: function(fullType) { var builderFactory = J.$index$asx(this.builderFactories._map$_map, fullType); if (builderFactory == null) { this._throwMissingBuilderFactory$1(fullType); H.ReachabilityError$(string$.x60null_t); } return builderFactory.call$0(); }, expectBuilder$1: function(fullType) { if (!J.containsKey$1$x(this.builderFactories._map$_map, fullType)) { this._throwMissingBuilderFactory$1(fullType); H.ReachabilityError$(string$.x60null_t); } }, _throwMissingBuilderFactory$1: function(fullType) { throw H.wrapException(P.StateError$("No builder factory for " + fullType.toString$0(0) + ". Fix by adding one, see SerializersBuilder.addBuilderFactory.")); }, toBuilder$0: function() { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, t1 = _this._typeToSerializer; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t3 = _this._wireNameToSerializer; t3.toString; t4 = t3.$ti; t4._eval$1("_BuiltMap<1,2>")._as(t3); t5 = _this._typeNameToSerializer; t5.toString; t6 = t5.$ti; t6._eval$1("_BuiltMap<1,2>")._as(t5); t7 = _this.builderFactories; t7.toString; t8 = t7.$ti; t8._eval$1("_BuiltMap<1,2>")._as(t7); t9 = _this.serializerPlugins; t9.toString; return new Y.BuiltJsonSerializersBuilder(new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t3._mapFactory, t3._map$_map, t3, t4._eval$1("@<1>")._bind$1(t4._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t5._mapFactory, t5._map$_map, t5, t6._eval$1("@<1>")._bind$1(t6._rest[1])._eval$1("MapBuilder<1,2>")), new A.MapBuilder(t7._mapFactory, t7._map$_map, t7, t8._eval$1("@<1>")._bind$1(t8._rest[1])._eval$1("MapBuilder<1,2>")), D.ListBuilder_ListBuilder(t9, t9.$ti._precomputed1)); } }; Y.BuiltJsonSerializersBuilder.prototype = { add$1: function(_, serializer) { var t1, t2, t3, t4, $name, genericsStart; if (!type$.StructuredSerializer_dynamic._is(serializer) && !type$.PrimitiveSerializer_dynamic._is(serializer)) throw H.wrapException(P.ArgumentError$(string$.serial)); this._wireNameToSerializer.$indexSet(0, serializer.get$wireName(), serializer); for (t1 = J.get$iterator$ax(serializer.get$types(serializer)), t2 = this._typeToSerializer, t3 = this._typeNameToSerializer; t1.moveNext$0();) { t4 = t1.get$current(t1); t2._checkKey$1(t4); t2._checkValue$1(serializer); J.$indexSet$ax(t2.get$_safeMap(), t4, serializer); $name = J.toString$0$(t4); genericsStart = J.indexOf$1$asx($name, "<"); t4 = genericsStart === -1 ? $name : C.JSString_methods.substring$2($name, 0, genericsStart); t3._checkKey$1(t4); t3._checkValue$1(serializer); J.$indexSet$ax(t3.get$_safeMap(), t4, serializer); } }, addBuilderFactory$2: function(types, $function) { var t2, t3, t1 = this._builderFactories; t1.$indexSet(0, types, $function); t2 = types.root; t3 = types.parameters; t1.$indexSet(0, !types.nullable ? new U.FullType(t2, t3, true) : new U.FullType(t2, t3, false), $function); }, build$0: function(_) { var _this = this; return new Y.BuiltJsonSerializers(_this._typeToSerializer.build$0(0), _this._wireNameToSerializer.build$0(0), _this._typeNameToSerializer.build$0(0), _this._builderFactories.build$0(0), _this._plugins.build$0(0)); } }; R.BuiltListMultimapSerializer.prototype = { serialize$3$specifiedType: function(serializers, builtListMultimap, specifiedType) { var t1, t2, keyType, valueType, result, t3, t4, t5, key, result0; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? C.FullType_null_List_empty_false : t1[0]; valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = J.get$iterator$ax(builtListMultimap.get$keys(builtListMultimap)), t2 = type$.nullable_Object, t3 = builtListMultimap._list_multimap$_map, t4 = J.getInterceptor$asx(t3), t5 = builtListMultimap._emptyList; t1.moveNext$0();) { key = t1.get$current(t1); result.push(serializers.serialize$2$specifiedType(key, keyType)); result0 = t4.$index(t3, key); result.push(J.map$1$1$ax((result0 == null ? t5 : result0)._list, new R.BuiltListMultimapSerializer_serialize_closure(serializers, valueType), t2).toList$0(0)); } return result; }, serialize$2: function(serializers, builtListMultimap) { return this.serialize$3$specifiedType(serializers, builtListMultimap, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var result, t3, i, key, values, t4, value, t5, t6, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? C.FullType_null_List_empty_false : t1[0], valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = R.ListMultimapBuilder_ListMultimapBuilder(t1, t1); } else result = type$.ListMultimapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (C.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw H.wrapException(P.ArgumentError$("odd length")); for (t2 = type$.Iterable_nullable_Object, t3 = type$.nullable_Object, i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); values = J.map$1$1$ax(t2._as(t1.elementAt$1(serialized, i + 1)), new R.BuiltListMultimapSerializer_deserialize_closure(serializers, valueType), t3); for (t4 = values.get$iterator(values); t4.moveNext$0();) { value = t4.get$current(t4); if (result._list_multimap$_builtMapOwner != null) { t5 = result.__ListMultimapBuilder__builtMap; if (t5 === $) t5 = H.throwExpression(H.LateError$fieldNI("_builtMap")); t6 = H._instanceType(result); result.__ListMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$from(t5, t6._precomputed1, t6._eval$1("BuiltList<2>")); result._list_multimap$_builtMapOwner = null; } result._list_multimap$_checkKey$1(key); result._list_multimap$_checkValue$1(value); t5 = result._list_multimap$_getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t5.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); if (t5._listOwner != null) { t6 = t5.__ListBuilder__list; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("_list")); t5.__ListBuilder__list = P.List_List$from(t6, true, t5.$ti._precomputed1); t5._listOwner = null; } t5 = t5.__ListBuilder__list; J.add$1$ax(t5 === $ ? H.throwExpression(H.LateError$fieldNI("_list")) : t5, value); } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "listMultimap"; } }; R.BuiltListMultimapSerializer_serialize_closure.prototype = { call$1: function(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, $signature: 148 }; R.BuiltListMultimapSerializer_deserialize_closure.prototype = { call$1: function(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, $signature: 500 }; K.BuiltListSerializer.prototype = { serialize$3$specifiedType: function(serializers, builtList, specifiedType) { var t1, elementType; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; elementType = t1.length === 0 ? C.FullType_null_List_empty_false : t1[0]; return J.map$1$1$ax(builtList._list, new K.BuiltListSerializer_serialize_closure(serializers, elementType), type$.nullable_Object); }, serialize$2: function(serializers, builtList) { return this.serialize$3$specifiedType(serializers, builtList, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, elementType = t1.length === 0 ? C.FullType_null_List_empty_false : t1[0], result = isUnderspecified ? D.ListBuilder_ListBuilder(C.List_empty, type$.Object) : type$.ListBuilder_dynamic._as(serializers.newBuilder$1(specifiedType)); result.replace$1(0, J.map$1$1$ax(serialized, new K.BuiltListSerializer_deserialize_closure(serializers, elementType), type$.dynamic)); return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "list"; } }; K.BuiltListSerializer_serialize_closure.prototype = { call$1: function(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, $signature: 148 }; K.BuiltListSerializer_deserialize_closure.prototype = { call$1: function(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, $signature: 148 }; K.BuiltMapSerializer.prototype = { serialize$3$specifiedType: function(serializers, builtMap, specifiedType) { var t1, t2, keyType, valueType, result, t3, key; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? C.FullType_null_List_empty_false : t1[0]; valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = J.get$iterator$ax(builtMap.get$keys(builtMap)), t2 = builtMap._map$_map, t3 = J.getInterceptor$asx(t2); t1.moveNext$0();) { key = t1.get$current(t1); result.push(serializers.serialize$2$specifiedType(key, keyType)); result.push(serializers.serialize$2$specifiedType(t3.$index(t2, key), valueType)); } return result; }, serialize$2: function(serializers, builtMap) { return this.serialize$3$specifiedType(serializers, builtMap, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var result, i, key, value, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? C.FullType_null_List_empty_false : t1[0], valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = A.MapBuilder_MapBuilder(t1, t1); } else result = type$.MapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (C.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw H.wrapException(P.ArgumentError$("odd length")); for (i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); value = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i + 1), valueType); result._checkKey$1(key); result._checkValue$1(value); J.$indexSet$ax(result.get$_safeMap(), key, value); } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "map"; } }; R.BuiltSetMultimapSerializer.prototype = { serialize$3$specifiedType: function(serializers, builtSetMultimap, specifiedType) { var t1, t2, keyType, valueType, result, t3, t4, t5, key, result0, t6; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; t2 = t1.length === 0; keyType = t2 ? C.FullType_null_List_empty_false : t1[0]; valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; result = []; for (t1 = J.get$iterator$ax(builtSetMultimap.get$keys(builtSetMultimap)), t2 = type$.nullable_Object, t3 = builtSetMultimap._set_multimap$_map, t4 = J.getInterceptor$asx(t3), t5 = builtSetMultimap._emptySet; t1.moveNext$0();) { key = t1.get$current(t1); result.push(serializers.serialize$2$specifiedType(key, keyType)); result0 = t4.$index(t3, key); t6 = (result0 == null ? t5 : result0)._set$_set.map$1$1(0, new R.BuiltSetMultimapSerializer_serialize_closure(serializers, valueType), t2); result.push(P.List_List$of(t6, true, H._instanceType(t6)._eval$1("Iterable.E"))); } return result; }, serialize$2: function(serializers, builtSetMultimap) { return this.serialize$3$specifiedType(serializers, builtSetMultimap, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var result, i, key, value, t3, t4, isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, t2 = t1.length === 0, keyType = t2 ? C.FullType_null_List_empty_false : t1[0], valueType = t2 ? C.FullType_null_List_empty_false : t1[1]; if (isUnderspecified) { t1 = type$.Object; result = M.SetMultimapBuilder_SetMultimapBuilder(t1, t1); } else result = type$.SetMultimapBuilder_dynamic_dynamic._as(serializers.newBuilder$1(specifiedType)); t1 = J.getInterceptor$asx(serialized); if (C.JSInt_methods.$mod(t1.get$length(serialized), 2) === 1) throw H.wrapException(P.ArgumentError$("odd length")); for (i = 0; i !== t1.get$length(serialized); i += 2) { key = serializers.deserialize$2$specifiedType(t1.elementAt$1(serialized, i), keyType); for (t2 = J.get$iterator$ax(J.map$1$ax(t1.elementAt$1(serialized, i + 1), new R.BuiltSetMultimapSerializer_deserialize_closure(serializers, valueType))); t2.moveNext$0();) { value = t2.get$current(t2); if (result._builtMapOwner != null) { t3 = result.__SetMultimapBuilder__builtMap; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_builtMap")); t4 = H._instanceType(result); result.__SetMultimapBuilder__builtMap = P.LinkedHashMap_LinkedHashMap$from(t3, t4._precomputed1, t4._eval$1("BuiltSet<2>")); result._builtMapOwner = null; } result._set_multimap$_checkKey$1(key); result._set_multimap$_checkValue$1(value); t3 = result._getValuesBuilder$1(key); if (!$.$get$isSoundMode() && !t3.$ti._precomputed1._is(null)) if (value == null) H.throwExpression(P.ArgumentError$("null element")); t3.get$_safeSet().add$1(0, value); } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "setMultimap"; } }; R.BuiltSetMultimapSerializer_serialize_closure.prototype = { call$1: function(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, $signature: 148 }; R.BuiltSetMultimapSerializer_deserialize_closure.prototype = { call$1: function(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, $signature: 148 }; O.BuiltSetSerializer.prototype = { serialize$3$specifiedType: function(serializers, builtSet, specifiedType) { var t1, elementType; if (!(specifiedType.root == null || specifiedType.parameters.length === 0)) serializers.expectBuilder$1(specifiedType); t1 = specifiedType.parameters; elementType = t1.length === 0 ? C.FullType_null_List_empty_false : t1[0]; return builtSet._set$_set.map$1$1(0, new O.BuiltSetSerializer_serialize_closure(serializers, elementType), type$.nullable_Object); }, serialize$2: function(serializers, builtSet) { return this.serialize$3$specifiedType(serializers, builtSet, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var isUnderspecified = specifiedType.root == null || specifiedType.parameters.length === 0, t1 = specifiedType.parameters, elementType = t1.length === 0 ? C.FullType_null_List_empty_false : t1[0], result = isUnderspecified ? X.SetBuilder_SetBuilder(type$.Object) : type$.SetBuilder_dynamic._as(serializers.newBuilder$1(specifiedType)); result.replace$1(0, J.map$1$1$ax(serialized, new O.BuiltSetSerializer_deserialize_closure(serializers, elementType), type$.dynamic)); return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "set"; } }; O.BuiltSetSerializer_serialize_closure.prototype = { call$1: function(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, $signature: 148 }; O.BuiltSetSerializer_deserialize_closure.prototype = { call$1: function(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, $signature: 148 }; Z.DateTimeSerializer.prototype = { serialize$3$specifiedType: function(serializers, dateTime, specifiedType) { if (!dateTime.isUtc) throw H.wrapException(P.ArgumentError$value(dateTime, "dateTime", "Must be in utc for serialization.")); return 1000 * dateTime._value; }, serialize$2: function(serializers, dateTime) { return this.serialize$3$specifiedType(serializers, dateTime, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t2, t1 = C.JSNumber_methods.round$0(H._asIntS(serialized) / 1000); if (Math.abs(t1) <= 864e13) t2 = false; else t2 = true; if (t2) H.throwExpression(P.ArgumentError$("DateTime is outside valid range: " + t1)); H.checkNotNullable(true, "isUtc", type$.bool); return new P.DateTime(t1, true); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "DateTime"; } }; D.DoubleSerializer.prototype = { serialize$3$specifiedType: function(serializers, aDouble, specifiedType) { if (isNaN(aDouble)) return "NaN"; else if (aDouble == 1 / 0 || aDouble == -1 / 0) return C.JSNumber_methods.get$isNegative(aDouble) ? "-INF" : "INF"; else return aDouble; }, serialize$2: function(serializers, aDouble) { return this.serialize$3$specifiedType(serializers, aDouble, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1 = J.getInterceptor$(serialized); if (t1.$eq(serialized, "NaN")) return 0 / 0; else if (t1.$eq(serialized, "-INF")) return -1 / 0; else if (t1.$eq(serialized, "INF")) return 1 / 0; else return H._asNumS(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "double"; } }; K.DurationSerializer.prototype = { serialize$3$specifiedType: function(serializers, duration, specifiedType) { return duration._duration; }, serialize$2: function(serializers, duration) { return this.serialize$3$specifiedType(serializers, duration, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return P.Duration$(0, 0, H._asIntS(serialized), 0, 0, 0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "Duration"; } }; Q.Int64Serializer.prototype = { serialize$3$specifiedType: function(serializers, int64, specifiedType) { return int64._toRadixString$1(10); }, serialize$2: function(serializers, int64) { return this.serialize$3$specifiedType(serializers, int64, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return V.Int64__parseRadix(H._asStringS(serialized), 10); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "Int64"; } }; B.IntSerializer.prototype = { serialize$3$specifiedType: function(serializers, integer, specifiedType) { return integer; }, serialize$2: function(serializers, integer) { return this.serialize$3$specifiedType(serializers, integer, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return H._asIntS(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "int"; } }; O.JsonObjectSerializer.prototype = { serialize$3$specifiedType: function(serializers, jsonObject, specifiedType) { return jsonObject.get$value(jsonObject); }, serialize$2: function(serializers, jsonObject) { return this.serialize$3$specifiedType(serializers, jsonObject, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return A.JsonObject_JsonObject(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "JsonObject"; } }; S.NullSerializer.prototype = { serialize$3$specifiedType: function(serializers, value, specifiedType) { throw H.wrapException(P.UnimplementedError$(null)); }, serialize$2: function(serializers, value) { return this.serialize$3$specifiedType(serializers, value, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { throw H.wrapException(P.UnimplementedError$(null)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "Null"; } }; K.NumSerializer.prototype = { serialize$3$specifiedType: function(serializers, number, specifiedType) { if (isNaN(number)) return "NaN"; else if (number == 1 / 0 || number == -1 / 0) return C.JSNumber_methods.get$isNegative(number) ? "-INF" : "INF"; else return number; }, serialize$2: function(serializers, number) { return this.serialize$3$specifiedType(serializers, number, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1 = J.getInterceptor$(serialized); if (t1.$eq(serialized, "NaN")) return 0 / 0; else if (t1.$eq(serialized, "-INF")) return -1 / 0; else if (t1.$eq(serialized, "INF")) return 1 / 0; else return H._asNumS(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "num"; } }; K.RegExpSerializer.prototype = { serialize$3$specifiedType: function(serializers, value, specifiedType) { return value.pattern; }, serialize$2: function(serializers, value) { return this.serialize$3$specifiedType(serializers, value, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return P.RegExp_RegExp(H._asStringS(serialized), true, false); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "RegExp"; } }; M.StringSerializer.prototype = { serialize$3$specifiedType: function(serializers, string, specifiedType) { return string; }, serialize$2: function(serializers, string) { return this.serialize$3$specifiedType(serializers, string, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return H._asStringS(serialized); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "String"; } }; O.UriSerializer.prototype = { serialize$3$specifiedType: function(serializers, uri, specifiedType) { return uri.toString$0(0); }, serialize$2: function(serializers, uri) { return this.serialize$3$specifiedType(serializers, uri, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return P.Uri_parse(H._asStringS(serialized), 0, null); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function(receiver) { return this.types; }, get$wireName: function() { return "Uri"; } }; T.StandardJsonPlugin.prototype = { afterSerialize$2: function(object, specifiedType) { var t1; if (type$.List_dynamic._is(object)) { t1 = specifiedType.root; t1 = t1 !== C.Type_BuiltList_iTR && t1 !== C.Type_BuiltSet_fcN && t1 !== C.Type_JsonObject_gyf; } else t1 = false; if (t1) if (specifiedType.root == null) return this._toMapWithDiscriminator$1(object); else return this._standard_json_plugin$_toMap$2(object, this._needsEncodedKeys$1(specifiedType)); else return object; }, beforeDeserialize$2: function(object, specifiedType) { var t1; if (type$.Map_dynamic_dynamic._is(object) && specifiedType.root !== C.Type_JsonObject_gyf) { t1 = specifiedType.root; if (t1 == null) return this._toListUsingDiscriminator$1(object); else return this._toList$3$keepNulls(object, this._needsEncodedKeys$1(specifiedType), t1 === C.Type_BuiltMap_qd4); } else return object; }, _needsEncodedKeys$1: function(specifiedType) { return specifiedType.root === C.Type_BuiltMap_qd4 && specifiedType.parameters[0].root !== C.Type_String_k8F; }, _standard_json_plugin$_toMap$2: function(list, needsEncodedKeys) { var t1, i, t2, key, value, result = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.nullable_Object); for (t1 = J.getInterceptor$asx(list), i = 0; i !== C.JSInt_methods._tdivFast$1(t1.get$length(list), 2); ++i) { t2 = i * 2; key = t1.$index(list, t2); value = t1.$index(list, t2 + 1); result.$indexSet(0, needsEncodedKeys ? C.C_JsonCodec.encode$1(key) : H._asStringS(key), value); } return result; }, _toMapWithDiscriminator$1: function(list) { var needToEncodeKeys, i, result, t3, key, t1 = J.getInterceptor$asx(list), type = t1.$index(list, 0), t2 = J.getInterceptor$(type); if (t2.$eq(type, "list")) return P.LinkedHashMap_LinkedHashMap$_literal(["$", type, "", t1.sublist$1(list, 1)], type$.String, type$.Object); if (t1.get$length(list) === 2) return P.LinkedHashMap_LinkedHashMap$_literal(["$", type, "", t1.$index(list, 1)], type$.String, type$.nullable_Object); if (t2.$eq(type, "map")) { i = 0; while (true) { if (!(i !== C.JSInt_methods._tdivFast$1(t1.get$length(list) - 1, 2))) { needToEncodeKeys = false; break; } if (typeof t1.$index(list, i * 2 + 1) != "string") { type = "encoded_map"; needToEncodeKeys = true; break; } ++i; } } else needToEncodeKeys = false; result = P.LinkedHashMap_LinkedHashMap$_literal(["$", type], type$.String, type$.Object); for (i = 0; i !== C.JSInt_methods._tdivFast$1(t1.get$length(list) - 1, 2); ++i) { t2 = i * 2; t3 = t2 + 1; key = needToEncodeKeys ? C.C_JsonCodec.encode$1(t1.$index(list, t3)) : H._asStringS(t1.$index(list, t3)); result.$indexSet(0, key, t1.$index(list, t2 + 2)); } return result; }, _toList$3$keepNulls: function(map, hasEncodedKeys, keepNulls) { var nullValueCount, t2, result, t1 = {}; if (keepNulls) nullValueCount = 0; else { t2 = J.where$1$ax(J.get$values$x(map), new T.StandardJsonPlugin__toList_closure()); nullValueCount = t2.get$length(t2); } t2 = J.getInterceptor$asx(map); result = P.List_List$filled((t2.get$length(map) - nullValueCount) * 2, 0, false, type$.nullable_Object); t1.i = 0; t2.forEach$1(map, new T.StandardJsonPlugin__toList_closure0(t1, this, keepNulls, result, hasEncodedKeys)); return result; }, _toListUsingDiscriminator$1: function(map) { var t3, result, needToDecodeKeys, nullValueCount, t1 = {}, t2 = J.getInterceptor$asx(map), type = t2.$index(map, "$"); if (type == null) throw H.wrapException(P.ArgumentError$("Unknown type on deserialization. Need either specifiedType or discriminator field.")); t3 = J.getInterceptor$(type); if (t3.$eq(type, "list")) { t1 = [type]; C.JSArray_methods.addAll$1(t1, type$.Iterable_dynamic._as(t2.$index(map, ""))); return t1; } if (t2.containsKey$1(map, "")) { result = P.List_List$filled(2, 0, false, type$.nullable_Object); result[0] = type; result[1] = t2.$index(map, ""); return result; } needToDecodeKeys = t3.$eq(type, "encoded_map"); if (needToDecodeKeys) type = "map"; t3 = J.where$1$ax(t2.get$values(map), new T.StandardJsonPlugin__toListUsingDiscriminator_closure()); nullValueCount = t3.get$length(t3); result = P.List_List$filled((t2.get$length(map) - nullValueCount) * 2 - 1, 0, false, type$.Object); result[0] = type; t1.i = 1; t2.forEach$1(map, new T.StandardJsonPlugin__toListUsingDiscriminator_closure0(t1, this, result, needToDecodeKeys)); return result; }, $isSerializerPlugin: 1 }; T.StandardJsonPlugin__toList_closure.prototype = { call$1: function(value) { return value == null; }, $signature: 110 }; T.StandardJsonPlugin__toList_closure0.prototype = { call$2: function(key, value) { var t1, t2, t3, _this = this; if (!_this.keepNulls && value == null) return; t1 = _this.result; t2 = _this._box_0; t3 = t2.i; t1[t3] = _this.hasEncodedKeys ? C.C_JsonCodec.decode$1(0, H._asStringS(key)) : key; t3 = t2.i; t1[t3 + 1] = value; t2.i = t3 + 2; }, $signature: 118 }; T.StandardJsonPlugin__toListUsingDiscriminator_closure.prototype = { call$1: function(value) { return value == null; }, $signature: 110 }; T.StandardJsonPlugin__toListUsingDiscriminator_closure0.prototype = { call$2: function(key, value) { var t1, t2, t3; if (J.$eq$(key, "$")) return; if (value == null) return; t1 = this.result; t2 = this._box_0; t3 = t2.i; t1[t3] = this.needToDecodeKeys ? C.C_JsonCodec.decode$1(0, H._asStringS(key)) : key; t3 = t2.i; t1[t3 + 1] = value; t2.i = t3 + 2; }, $signature: 118 }; A.CachedNetworkImage.prototype = { build$1: function(_, context) { var _this = this, _null = null, octoPlaceholderBuilder = _this.get$_octoPlaceholderBuilder(), t1 = M.ResizeImage_resizeIfNeeded(_null, _null, _this._cached_image_widget$_image); return new U.OctoImage(t1, _null, octoPlaceholderBuilder, _null, _this.get$_octoErrorBuilder(), C.Duration_0, C.Duration_1000000, C.Cubic_xDo0, C.Duration_500000, C.Cubic_JUR0, _this.width, _this.height, _this.fit, C.Alignment_0_0, C.ImageRepeat_3, false, _null, _null, C.FilterQuality_1, false, _null); }, _octoPlaceholderBuilder$1: function(context) { return this.placeholder.call$2(context, this.imageUrl); }, _octoErrorBuilder$3: function(context, error, stackTrace) { return this.errorWidget.call$3(context, this.imageUrl, error); } }; X.CachedNetworkImageProvider.prototype = { obtainKey$1: function(configuration) { return new O.SynchronousFuture(this, type$.SynchronousFuture_CachedNetworkImageProvider); }, load$2: function(_, key, decode) { var _null = null, chunkEvents = P.StreamController_StreamController(_null, _null, _null, _null, false, type$.ImageChunkEvent), t1 = this.__image_provider_web$_loadAsync$3(key, chunkEvents, decode); key.toString; return B.MultiImageStreamCompleter$(new P._ControllerStream(chunkEvents, H._instanceType(chunkEvents)._eval$1("_ControllerStream<1>")), t1, _null, 1); }, __image_provider_web$_loadAsync$3: function(key, chunkEvents, decode) { var t1; switch (this._imageRenderMethodForWeb) { case C.ImageRenderMethodForWeb_1: return this._loadAsyncHttpGet$3(key, chunkEvents, decode); case C.ImageRenderMethodForWeb_0: t1 = G.loadAsyncHtmlImage(key, chunkEvents, decode); return P.Stream_Stream$fromFuture(t1, t1.$ti._precomputed1); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _loadAsyncHttpGet$3: function(key, chunkEvents, decode) { return this._loadAsyncHttpGet$body$CachedNetworkImageProvider(key, chunkEvents, decode); }, _loadAsyncHttpGet$body$CachedNetworkImageProvider: function(key, chunkEvents, decode) { var $async$_loadAsyncHttpGet$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; mngr0 = $.$get$DefaultCacheManager__instance(); mngr = mngr0; t1 = mngr; key0 = key.url; t1.toString; streamController = P.StreamController_StreamController(null, null, null, null, false, type$.FileResponse); t1._pushFileToStream$5(streamController, key0, key0, $async$self.headers, true); t1 = new P._StreamIterator(H.checkNotNullable(new P._ControllerStream(streamController, H._instanceType(streamController)._eval$1("_ControllerStream<1>")), "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 7; t2 = H._instanceType(chunkEvents)._eval$1("_DelayedData<1>"); case 10: // for condition $async$goto = 12; return P._asyncStarHelper(t1.moveNext$0(), $async$_loadAsyncHttpGet$3, $async$controller); case 12: // returning from await. if (!$async$result) { // goto after for $async$goto = 11; break; } result = t1.get$current(t1); if (result instanceof D.DownloadProgress) { t3 = new L.ImageChunkEvent(result.downloaded, result.totalSize); t4 = chunkEvents._state; if (t4 >= 4) H.throwExpression(chunkEvents._badEventState$0()); if ((t4 & 1) !== 0) chunkEvents._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = chunkEvents._ensurePendingEvents$0(); t3 = new P._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } $async$goto = result instanceof R.FileInfo ? 13 : 14; break; case 13: // then file = result.file; $async$goto = 15; return P._asyncStarHelper(file.readAsBytes$0(), $async$_loadAsyncHttpGet$3, $async$controller); case 15: // returning from await. bytes = $async$result; $async$goto = 16; return P._asyncStarHelper(decode.call$1(bytes), $async$_loadAsyncHttpGet$3, $async$controller); case 16: // returning from await. decoded = $async$result; $async$goto = 17; $async$nextWhenCanceled = [1, 5, 8]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(decoded), $async$_loadAsyncHttpGet$3, $async$controller); case 17: // after yield case 14: // join // goto for condition $async$goto = 10; break; case 11: // after for $async$next.push(9); // goto finally $async$goto = 8; break; case 7: // uncaught $async$next = [4]; case 8: // finally $async$handler = 4; $async$goto = 18; return P._asyncStarHelper(t1.cancel$0(0), $async$_loadAsyncHttpGet$3, $async$controller); case 18: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 9: // after finally $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; H.unwrapException($async$exception); P.scheduleMicrotask(new X.CachedNetworkImageProvider__loadAsyncHttpGet_closure(key)); throw $async$exception; $async$next.push(6); // goto finally $async$goto = 5; break; case 3: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; $async$goto = 19; return P._asyncStarHelper(chunkEvents.close$0(0), $async$_loadAsyncHttpGet$3, $async$controller); case 19: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$_loadAsyncHttpGet$3, type$.Codec), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, mngr, result, file, bytes, decoded, mngr0, t1, key0, streamController, t2, t3, t4, lastEvent, exception, $async$exception; return P._streamOfController($async$controller); }, $eq: function(_, other) { var t1; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; if (other instanceof X.CachedNetworkImageProvider) { t1 = other.url; return this.url == t1 && true; } else return false; }, get$hashCode: function(_) { return P.hashValues(this.url, 1, this.cacheKey, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + '("' + H.S(this.url) + '", scale: 1)'; } }; X.CachedNetworkImageProvider__loadAsyncHttpGet_closure.prototype = { call$0: function() { var t1 = $.PaintingBinding__instance; if (t1 != null) { t1 = t1.PaintingBinding__imageCache; if (t1 != null) t1.evict$1(this.key); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; G.loadAsyncHtmlImage_closure.prototype = { call$2: function(bytes, total) { this.chunkEvents.add$1(0, new L.ImageChunkEvent(bytes, total)); }, $signature: 418 }; Z.ImageRenderMethodForWeb.prototype = { toString$0: function(_) { return this._cached_network_image_provider$_name; } }; B.MultiImageStreamCompleter.prototype = { MultiImageStreamCompleter$4$chunkEvents$codec$informationCollector$scale: function(chunkEvents, codec, informationCollector, scale) { var _this = this; codec.listen$2$onError(0, new B.MultiImageStreamCompleter_closure(_this), new B.MultiImageStreamCompleter_closure0(_this, informationCollector)); chunkEvents.listen$2$onError(0, _this.get$reportImageChunkEvent(), new B.MultiImageStreamCompleter_closure1(_this, informationCollector)); }, _multi_image_stream_completer$_handleAppFrame$1: function(timestamp) { var t3, t4, completedCycles, _this = this, t1 = _this._multi_image_stream_completer$_frameCallbackScheduled = false, t2 = _this._image_stream$_listeners; if (t2.length === 0) return; t3 = _this._multi_image_stream_completer$_frameDuration; if (t3 != null) { t4 = _this._multi_image_stream_completer$_shownTimestamp; t4.toString; t4 = timestamp._duration - t4._duration >= t3._duration; } else t4 = true; if (t4) { t3 = _this._multi_image_stream_completer$_nextFrame; _this._multi_image_stream_completer$_emitFrame$1(new L.ImageInfo(t3.get$image(t3), _this._multi_image_stream_completer$_scale, null)); _this._multi_image_stream_completer$_shownTimestamp = timestamp; t3 = _this._multi_image_stream_completer$_nextFrame; _this._multi_image_stream_completer$_frameDuration = t3.get$duration(t3); _this._multi_image_stream_completer$_nextFrame = null; if (C.JSInt_methods.$mod(_this._multi_image_stream_completer$_framesEmitted, _this._multi_image_stream_completer$_codec.get$frameCount()) === 0 ? _this._nextImageCodec != null : t1) { _this._multi_image_stream_completer$_framesEmitted = 0; _this._multi_image_stream_completer$_timer = null; t1 = _this._nextImageCodec; t1.toString; _this._multi_image_stream_completer$_codec = t1; if (t2.length !== 0) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); _this._nextImageCodec = null; } else { completedCycles = C.JSInt_methods.$tdiv(_this._multi_image_stream_completer$_framesEmitted, _this._multi_image_stream_completer$_codec.get$frameCount()); if (_this._multi_image_stream_completer$_codec.get$repetitionCount() === -1 || completedCycles <= _this._multi_image_stream_completer$_codec.get$repetitionCount()) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); } return; } t3.toString; t1 = _this._multi_image_stream_completer$_shownTimestamp; t1.toString; _this._multi_image_stream_completer$_timer = P.Timer_Timer(new P.Duration(C.JSInt_methods.round$0(t3._duration - (timestamp._duration - t1._duration))), _this.get$_multi_image_stream_completer$_scheduleAppFrame()); }, _multi_image_stream_completer$_decodeNextFrameAndSchedule$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, $async$exception0; var $async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 4; $async$goto = 7; return P._asyncAwait($async$self._multi_image_stream_completer$_codec.getNextFrame$0(), $async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0); case 7: // returning from await. $async$self._multi_image_stream_completer$_nextFrame = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); $async$self.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("resolving an image frame"), exception, $async$self._multi_image_stream_completer$_informationCollector, true, stack); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally if ($async$self._multi_image_stream_completer$_codec.get$frameCount() === 1) { if ($async$self._image_stream$_listeners.length === 0) { // goto return $async$goto = 1; break; } t1 = $async$self._multi_image_stream_completer$_nextFrame; $async$self._multi_image_stream_completer$_emitFrame$1(new L.ImageInfo(t1.get$image(t1), $async$self._multi_image_stream_completer$_scale, null)); // goto return $async$goto = 1; break; } $async$self._multi_image_stream_completer$_scheduleAppFrame$0(); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_multi_image_stream_completer$_decodeNextFrameAndSchedule$0, $async$completer); }, _multi_image_stream_completer$_scheduleAppFrame$0: function() { if (this._multi_image_stream_completer$_frameCallbackScheduled) return; this._multi_image_stream_completer$_frameCallbackScheduled = true; var t1 = $.SchedulerBinding__instance; if (t1 != null) t1.scheduleFrameCallback$1(this.get$_multi_image_stream_completer$_handleAppFrame()); }, _multi_image_stream_completer$_emitFrame$1: function(imageInfo) { this.setImage$1(imageInfo); ++this._multi_image_stream_completer$_framesEmitted; }, addListener$1: function(_, listener) { var _this = this; if (_this._image_stream$_listeners.length === 0 && _this._multi_image_stream_completer$_codec != null) _this._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); _this.super$ImageStreamCompleter$addListener(0, listener); }, removeListener$1: function(_, listener) { var t1, _this = this; _this.super$ImageStreamCompleter$removeListener(0, listener); if (_this._image_stream$_listeners.length === 0) { t1 = _this._multi_image_stream_completer$_timer; if (t1 != null) t1.cancel$0(0); _this._multi_image_stream_completer$_timer = null; } } }; B.MultiImageStreamCompleter_closure.prototype = { call$1: function($event) { var t1 = this.$this; if (t1._multi_image_stream_completer$_timer != null) t1._nextImageCodec = $event; else { t1._multi_image_stream_completer$_codec = $event; if (t1._image_stream$_listeners.length !== 0) t1._multi_image_stream_completer$_decodeNextFrameAndSchedule$0(); } }, $signature: 521 }; B.MultiImageStreamCompleter_closure0.prototype = { call$2: function(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("resolving an image codec"), error, this.informationCollector, true, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 340 }; B.MultiImageStreamCompleter_closure1.prototype = { call$2: function(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("loading an image"), error, this.informationCollector, true, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 340 }; T.StringCharacters.prototype = { get$iterator: function(_) { return new T.StringCharacterRange(this.string, 0, 0); }, get$first: function(_) { var t1 = this.string, t2 = t1.length; return t2 === 0 ? H.throwExpression(P.StateError$("No element")) : C.JSString_methods.substring$2(t1, 0, new A.Breaks(t1, t2, 0, 176).nextBreak$0()); }, get$last: function(_) { var t1 = this.string, t2 = t1.length; return t2 === 0 ? H.throwExpression(P.StateError$("No element")) : C.JSString_methods.substring$1(t1, new A.BackBreaks(t1, 0, t2, 176).nextBreak$0()); }, get$isEmpty: function(_) { return this.string.length === 0; }, get$isNotEmpty: function(_) { return this.string.length !== 0; }, get$length: function(_) { var brk, $length, t1 = this.string, t2 = t1.length; if (t2 === 0) return 0; brk = new A.Breaks(t1, t2, 0, 176); for ($length = 0; brk.nextBreak$0() >= 0;) ++$length; return $length; }, join$1: function(_, separator) { var t1; if (separator === "") return this.string; t1 = this.string; return T._explodeReplace(t1, 0, t1.length, separator, ""); }, elementAt$1: function(_, index) { var t1, t2, breaks, count, start, end; P.RangeError_checkNotNegative(index, "index"); t1 = this.string; t2 = t1.length; if (t2 !== 0) { breaks = new A.Breaks(t1, t2, 0, 176); for (count = 0, start = 0; end = breaks.nextBreak$0(), end >= 0; start = end) { if (count === index) return C.JSString_methods.substring$2(t1, start, end); ++count; } } else count = 0; throw H.wrapException(P.IndexError$(index, this, "index", null, count)); }, contains$1: function(_, other) { var t1; if (typeof other == "string") { t1 = other.length; if (t1 === 0) return false; if (new A.Breaks(other, t1, 0, 176).nextBreak$0() !== t1) return false; t1 = this.string; return T._indexOf(t1, other, 0, t1.length) >= 0; } return false; }, replaceFirst$2: function(_, pattern, replacement) { var t1 = this.string; t1 = new T.StringCharacterRange(t1, 0, t1.length).replaceFirst$2(0, pattern, replacement); t1 = t1 == null ? null : new T.StringCharacters(t1._characters_impl$_string); return t1 == null ? this : t1; }, _skipIndices$3: function(count, cursor, breaks) { var t1, nextBreak; if (count === 0 || cursor === this.string.length) return cursor; t1 = this.string; breaks = new A.Breaks(t1, t1.length, cursor, 176); do { nextBreak = breaks.nextBreak$0(); if (nextBreak < 0) break; if (--count, count > 0) { cursor = nextBreak; continue; } else { cursor = nextBreak; break; } } while (true); return cursor; }, skip$1: function(_, count) { P.RangeError_checkNotNegative(count, "count"); return this._skip$1(count); }, _skip$1: function(count) { var start = this._skipIndices$3(count, 0, null), t1 = this.string; if (start === t1.length) return C.StringCharacters_ehH; return new T.StringCharacters(J.substring$1$s(t1, start)); }, take$1: function(_, count) { P.RangeError_checkNotNegative(count, "count"); return this._take$1(count); }, _take$1: function(count) { var end = this._skipIndices$3(count, 0, null), t1 = this.string; if (end === t1.length) return this; return new T.StringCharacters(J.substring$2$s(t1, 0, end)); }, skipWhile$1: function(_, test) { var breaks, startIndex, index, t1 = this.string, t2 = t1.length; if (t2 !== 0) { breaks = new A.Breaks(t1, t2, 0, 176); for (startIndex = 0; index = breaks.nextBreak$0(), index >= 0; startIndex = index) if (!test.call$1(C.JSString_methods.substring$2(t1, startIndex, index))) { if (startIndex === 0) return this; if (startIndex === t2) return C.StringCharacters_ehH; return new T.StringCharacters(C.JSString_methods.substring$1(t1, startIndex)); } } return C.StringCharacters_ehH; }, where$1: function(_, test) { if (this.super$Iterable$where(0, test).join$0(0).length === 0) return C.StringCharacters_ehH; return new T.StringCharacters(this.super$Iterable$where(0, test).join$0(0)); }, $add: function(_, characters) { return new T.StringCharacters(J.$add$ansx(this.string, characters.string)); }, toLowerCase$0: function(_) { return new T.StringCharacters(this.string.toLowerCase()); }, $eq: function(_, other) { if (other == null) return false; return type$.Characters._is(other) && this.string == other.string; }, get$hashCode: function(_) { return J.get$hashCode$(this.string); }, toString$0: function(_) { return this.string; }, $isCharacters: 1 }; T.StringCharacterRange.prototype = { get$current: function(_) { var _this = this, t1 = _this._currentCache; return t1 == null ? _this._currentCache = J.substring$2$s(_this._characters_impl$_string, _this._characters_impl$_start, _this._characters_impl$_end) : t1; }, moveNext$0: function() { return this._advanceEnd$2(1, this._characters_impl$_end); }, _advanceEnd$2: function(count, newStart) { var index, t1, t2, t3, state, char, nextIndex, category, nextChar, t4, _this = this; if (count > 0) { index = _this._characters_impl$_end; for (t1 = _this._characters_impl$_string, t2 = t1.length, t3 = J.getInterceptor$s(t1), state = 176; index < t2; index = nextIndex) { char = t3.codeUnitAt$1(t1, index); nextIndex = index + 1; if ((char & 64512) !== 55296) category = S.low(char); else if (nextIndex < t2) { nextChar = C.JSString_methods.codeUnitAt$1(t1, nextIndex); if ((nextChar & 64512) === 56320) { ++nextIndex; category = S.high(char, nextChar); } else category = 2; } else category = 2; state = C.JSString_methods._codeUnitAt$1(string$.x200_000, state & 240 | category); if ((state & 1) === 0) { --count; t4 = count === 0; } else t4 = false; if (t4) { _this._characters_impl$_start = newStart; _this._characters_impl$_end = index; _this._currentCache = null; return true; } } _this._characters_impl$_start = newStart; _this._characters_impl$_end = t2; _this._currentCache = null; return count === 1 && state !== 176; } else { _this._characters_impl$_start = newStart; _this._currentCache = null; return true; } }, get$isEmpty: function(_) { return this._characters_impl$_start === this._characters_impl$_end; }, replaceFirst$2: function(_, pattern, replacement) { var replaced, index, newEnd, start, _this = this, patternString = pattern.get$string(), replacementString = replacement.string, t1 = patternString.get$isEmpty(patternString), t2 = _this._characters_impl$_string, t3 = _this._characters_impl$_start; if (t1) replaced = J.replaceRange$3$asx(t2, t3, t3, replacementString); else { index = T._indexOf(t2, patternString, t3, _this._characters_impl$_end); if (index >= 0) replaced = J.replaceRange$3$asx(t2, index, C.JSInt_methods.$add(index, patternString.get$length(patternString)), replacementString); else return null; } t1 = replaced.length; newEnd = t1 - t2.length + _this._characters_impl$_end; start = A.previousBreak(replaced, 0, t1, _this._characters_impl$_start); return new T.StringCharacterRange(replaced, start, newEnd !== start ? A.nextBreak(replaced, 0, t1, newEnd) : newEnd); } }; A.Breaks.prototype = { nextBreak$0: function() { var t1, t2, t3, t4, t5, char, nextChar, category, _this = this, _s192_ = string$.x200_000; for (t1 = _this.end, t2 = _this.base, t3 = J.getInterceptor$s(t2); t4 = _this.cursor, t4 < t1;) { t5 = _this.cursor = t4 + 1; char = t3.codeUnitAt$1(t2, t4); if ((char & 64512) !== 55296) { t5 = C.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | S.low(char)); _this.state = t5; if ((t5 & 1) === 0) return t4; continue; } if (t5 < t1) { nextChar = C.JSString_methods.codeUnitAt$1(t2, t5); if ((nextChar & 64512) === 56320) { category = S.high(char, nextChar); ++_this.cursor; } else category = 2; } else category = 2; t5 = C.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | category); _this.state = t5; if ((t5 & 1) === 0) return t4; } t1 = C.JSString_methods._codeUnitAt$1(_s192_, _this.state & 240 | 15); _this.state = t1; if ((t1 & 1) === 0) return t4; return -1; } }; A.BackBreaks.prototype = { nextBreak$0: function() { var t1, t2, t3, t4, t5, char, prevChar, category, t6, _this = this, _s208_ = string$.x10__0__; for (t1 = _this.start, t2 = _this.base, t3 = J.getInterceptor$s(t2); t4 = _this.cursor, t4 > t1;) { t5 = _this.cursor = t4 - 1; char = t3.codeUnitAt$1(t2, t5); if ((char & 64512) !== 56320) { t5 = _this.state = C.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | S.low(char)); if (((t5 >= 208 ? _this.state = A.lookAhead(t2, t1, _this.cursor, t5) : t5) & 1) === 0) return t4; continue; } if (t5 >= t1) { prevChar = C.JSString_methods.codeUnitAt$1(t2, t5 - 1); if ((prevChar & 64512) === 55296) { category = S.high(prevChar, char); t5 = --_this.cursor; } else category = 2; } else category = 2; t6 = _this.state = C.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | category); if (((t6 >= 208 ? _this.state = A.lookAhead(t2, t1, t5, t6) : t6) & 1) === 0) return t4; } t3 = _this.state = C.JSString_methods._codeUnitAt$1(_s208_, _this.state & 240 | 15); if (((t3 >= 208 ? _this.state = A.lookAhead(t2, t1, t4, t3) : t3) & 1) === 0) return _this.cursor; return -1; } }; X.BarChart0.prototype = { makeDefaultRenderer$0: function() { var t1 = L.BarRenderer_BarRenderer(null, null, type$.String); t1.rendererId = "default"; return t1; } }; L.BarRenderer.prototype = { configureSeries$1: function(seriesList) { this.assignMissingColors$2$emptyCategoryUsesSinglePalette(this.getOrderedSeriesList$1$1(seriesList, this.$ti._eval$1("MutableSeries<1>")), true); }, addPositionToDetailsForSeriesDatum$2: function(details, seriesDatum) { var previousBarGroupWeight, barGroupWeight, allBarGroupWeights, t4, t5, bounds, _this = this, t1 = details.series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = _this.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, C.AttributeKey_OBU))), measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, C.AttributeKey_kWM))); t2 = H._asIntQ(t1.$index(0, C.AttributeKey_2Sa)); t2.toString; previousBarGroupWeight = H._asDoubleQ(t1.$index(0, C.AttributeKey_YGG)); barGroupWeight = H._asDoubleQ(t1.$index(0, C.AttributeKey_esd)); allBarGroupWeights = type$.nullable_List_double._as(t1.$index(0, C.AttributeKey_Ubu)); t1 = H._asIntQ(t1.$index(0, C.AttributeKey_8Tg)); t1.toString; t4 = J.round$0$n(domainAxis.scale.get$rangeBand()); t5 = details.measureOffset; t5.toString; bounds = _this._getBarBounds$12(details.domain, domainAxis, t4, _this.config.maxBarWidthPx, details.measure, t5, measureAxis, t2, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, t1); _this.get$chart().toString; return L.DatumDetails_DatumDetails$from(details, bounds, new K.NullablePoint(bounds.left + bounds.width / 2, bounds.top), null, null, null, t3._precomputed1); }, makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx: function(allBarGroupWeights, barGroupIndex, barGroupWeight, color, dashPattern, details, domainAxis, domainValue, domainWidth, fillColor, fillPattern, measureAxis, measureAxisPosition, measureIsNegative, measureIsNull, measureOffsetValue, measureValue, numBarGroups, previousBarGroupWeight, strokeWidthPx) { var t1 = new L.BarRendererElement(this.$ti._eval$1("BarRendererElement<1>")); t1.color = color; t1.dashPattern = dashPattern; t1.fillColor = fillColor; t1.fillPattern = fillPattern; t1.measureAxisPosition = measureAxisPosition; t1.roundPx = details.roundPx; t1.strokeWidthPx = strokeWidthPx; t1.measureIsNull = measureIsNull; t1.measureIsNegative = measureIsNegative; t1.bounds = this._getBarBounds$12(domainValue, domainAxis, domainWidth, this.config.maxBarWidthPx, measureValue, measureOffsetValue, measureAxis, barGroupIndex, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, numBarGroups); return t1; }, paintBar$3: function(canvas, animationPercent, barElements) { var unmodifiedBar, t1, t2, t3, maxBarWidth, measureIsNegative, _i, bar, bounds, t4, t5, t6, roundTopLeft, roundTopRight, roundBottomLeft, roundBottomRight, barStack, barOutsideBounds, left, right, $top, bottom, clipBounds, _this = this, bars = H.setRuntimeTypeInfo([], type$.JSArray_CanvasRect); _this.get$chart().toString; unmodifiedBar = C.JSArray_methods.get$first(barElements); for (t1 = barElements.length, t2 = _this._stackedBarPaddingPx, t3 = type$.int, maxBarWidth = 0, measureIsNegative = false, _i = 0; _i < barElements.length; barElements.length === t1 || (0, H.throwConcurrentModificationError)(barElements), ++_i) { bar = barElements[_i]; bounds = bar.bounds; if (!measureIsNegative) { t4 = bar.measureIsNegative; t4.toString; measureIsNegative = t4; } else measureIsNegative = true; if (!J.$eq$(bar, unmodifiedBar)) { t4 = _this.__BaseCartesianRenderer_chart; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("chart")); t4.toString; t4 = bar.bounds; t5 = t4.left; t6 = t4.top; bounds = P.Rectangle$(t5, Math.max(0, t6 + (measureIsNegative ? t2 : 0)), t4.width, Math.max(0, t4.height - t2), t3); } bounds.toString; bars.push(new G.CanvasRect(bounds, bar.fillColor, bar.fillPattern, bar.color, bar.strokeWidthPx)); t4 = _this.__BaseCartesianRenderer_chart; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("chart")); t4.toString; maxBarWidth = Math.max(maxBarWidth, bounds.width); } if (measureIsNegative) { _this.get$chart().toString; _this.get$chart().toString; _this.get$chart().toString; _this.get$chart().toString; roundTopLeft = false; roundTopRight = false; roundBottomLeft = true; roundBottomRight = true; } else { _this.get$chart().toString; t1 = _this.get$chart(); roundTopRight = !t1.get$context(t1).get$isRtl(); t1 = _this.get$chart(); roundBottomLeft = t1.get$context(t1).get$isRtl(); _this.get$chart().toString; roundTopLeft = true; roundBottomRight = false; } barStack = G.CanvasBarStack_CanvasBarStack(bars, 2, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight, t2); t1 = _this._drawAreaBounds; t1.toString; _this.get$chart().toString; t2 = barStack.fullStackRect; t4 = t2.left; t5 = J.getInterceptor$x(t1); barOutsideBounds = t4 < t5.get$left(t1) || t2.$ti._precomputed1._as(t4 + t2.width) > t5.get$right(t1); if (barOutsideBounds) { t2 = barStack.fullStackRect; t4 = _this._drawAreaBounds; t4.toString; _this.get$chart().toString; t5 = J.getInterceptor$x(t4); t6 = t2.left; left = Math.max(H.checkNum(t5.get$left(t4)), t6); t4 = t5.get$right(t4); t5 = t2.$ti._precomputed1; t6 = t5._as(t6 + t2.width); right = Math.min(H.checkNum(t4), t6); $top = t2.top; bottom = t5._as($top + t2.height); clipBounds = P.Rectangle$(left, $top, right - left, bottom - $top, t3); if (clipBounds.width <= 0 || clipBounds.height <= 0) return; t2 = canvas.canvas; t2.save$0(0); t2.clipRect$1(0, canvas._getRect$1(clipBounds)); } canvas.drawBarStack$2$drawAreaBounds(barStack, t1); if (barOutsideBounds) canvas.canvas.restore$0(0); }, _getBarBounds$12: function(domainValue, domainAxis, domainWidth, maxBarWidthPx, measureValue, measureOffsetValue, measureAxis, barGroupIndex, previousBarGroupWeight, barGroupWeight, allBarGroupWeights, numBarGroups) { var t1, desiredWidth, barWidth, t2, adjustedBarGroupIndex, previousAverageWidth, domainStart, measureEnd, measureStart, bounds; domainWidth = Math.abs(domainWidth); if (barGroupWeight == null) previousBarGroupWeight = barGroupIndex * (1 / numBarGroups); t1 = domainWidth - 2 * (numBarGroups - 1); desiredWidth = C.JSNumber_methods.round$0(t1 / numBarGroups); barWidth = allBarGroupWeights != null ? C.JSNumber_methods.round$0(desiredWidth * numBarGroups * J.$index$asx(allBarGroupWeights, barGroupIndex)) : desiredWidth; barWidth = Math.max(1, barWidth); t2 = this.get$chart(); adjustedBarGroupIndex = t2.get$context(t2).get$isRtl() ? numBarGroups - barGroupIndex - 1 : barGroupIndex; if (adjustedBarGroupIndex > 0) { previousBarGroupWeight.toString; previousAverageWidth = C.JSNumber_methods.round$0(t1 * (previousBarGroupWeight / adjustedBarGroupIndex)); } else previousAverageWidth = 0; t1 = domainAxis.getLocation$1(domainValue); t1.toString; domainStart = C.JSNumber_methods.round$0(t1 - domainWidth / 2 + (previousAverageWidth + 2) * adjustedBarGroupIndex); if (measureValue == null) measureValue = 0; if (measureValue < 0) { t1 = measureAxis.getLocation$1(measureOffsetValue); t1.toString; measureEnd = C.JSNumber_methods.round$0(t1); t1 = measureAxis.getLocation$1(measureValue + measureOffsetValue); t1.toString; measureStart = C.JSNumber_methods.round$0(t1); } else { t1 = measureAxis.getLocation$1(measureOffsetValue); t1.toString; measureStart = C.JSNumber_methods.round$0(t1); t1 = measureAxis.getLocation$1(measureValue + measureOffsetValue); t1.toString; measureEnd = C.JSNumber_methods.round$0(t1); } this.get$chart().toString; bounds = P.Rectangle$(domainStart, measureEnd, domainStart + barWidth - domainStart, measureStart - measureEnd, type$.int); return bounds; } }; L.BarRendererElement.prototype = { BarRendererElement$clone$1: function(other, $D) { var _this = this; _this.series = other.series; _this.bounds = other.bounds; _this.roundPx = other.roundPx; _this.index = other.index; _this._datum = other._datum; } }; L.AnimatedBar.prototype = {}; T.BarRendererConfig.prototype = { $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof T.BarRendererConfig && other.cornerStrategy.$eq(0, this.cornerStrategy) && this.super$BaseBarRendererConfig$$eq(0, other); }, get$hashCode: function(_) { return A.BaseBarRendererConfig.prototype.get$hashCode.call(this, this) * 31 + C.JSInt_methods.get$hashCode(2); } }; T.ConstCornerStrategy.prototype = { $eq: function(_, other) { if (other == null) return false; if (this === other) return true; return other instanceof T.ConstCornerStrategy && true; }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(2); } }; T.BaseBarRenderer.prototype = { preprocessSeries$1: function(seriesList) { var t2, t3, t4, categoryToIndexMap, numBarGroups, _this = this, t1 = {}; _this.get$chart().toString; _this.get$chart().toString; _this._lastVertical = true; t1.barGroupIndex = 0; t2 = _this.$ti; t3 = t2._eval$1("BaseBarRenderer.D"); t4 = type$.Map_String_BaseBarRendererElement; categoryToIndexMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.int); t1.maxBarStackSize = 0; J.forEach$1$ax(_this.getOrderedSeriesList$1$1(seriesList, t2._eval$1("MutableSeries")), new T.BaseBarRenderer_preprocessSeries_closure(t1, _this, categoryToIndexMap, P.LinkedHashMap_LinkedHashMap$_empty(t3, t4), P.LinkedHashMap_LinkedHashMap$_empty(t3, t4))); t1.numBarGroups = 0; t2 = _this.config.groupingType; if (t2 === C.BarGroupingType_0 || t2 === C.BarGroupingType_1) t3 = t2 === C.BarGroupingType_2 || t2 === C.BarGroupingType_1; else t3 = false; if (t3) t2 = t1.numBarGroups = categoryToIndexMap.get$length(categoryToIndexMap); else if (t2 === C.BarGroupingType_2 || t2 === C.BarGroupingType_1) { t1.numBarGroups = 1; t2 = 1; } else { numBarGroups = J.get$length$asx(seriesList); t1.numBarGroups = numBarGroups; t2 = numBarGroups; } J.forEach$1$ax(seriesList, new T.BaseBarRenderer_preprocessSeries_closure0(t1, _this, _this._calculateBarWeights$1(t2))); }, _calculateBarWeights$1: function(numBarGroups) { var t1, i, weights = H.setRuntimeTypeInfo([], type$.JSArray_double); for (t1 = 1 / numBarGroups, i = 0; i < numBarGroups; ++i) weights.push(t1); return weights; }, configureDomainAxes$1: function(seriesList) { var t1, t2; this.super$BaseCartesianRenderer$configureDomainAxes(seriesList); t1 = J.getInterceptor$asx(seriesList); if (t1.get$isNotEmpty(seriesList)) { t1 = type$.nullable_Axis_Object._as(t1.get$first(seriesList)._attrs._registry.$index(0, C.AttributeKey_OBU)); t1.toString; t2 = t1.scale.get$rangeBandConfig().type; if (t2 === C.RangeBandType_0) { $.$get$StyleFactory__styleFactory().toString; t1.scale.set$rangeBandConfig(new B.RangeBandConfig(C.RangeBandType_4, 0.65)); } } }, update$2: function(_, seriesList, isAnimatingThisDraw) { var _this = this; C.JSArray_methods.set$length(_this._currentKeys, 0); _this._currentGroupsStackKeys.clear$0(0); J.forEach$1$ax(_this.getOrderedSeriesList$1$1(seriesList, _this.$ti._eval$1("ImmutableSeries")), new T.BaseBarRenderer_update_closure(_this)); _this._barStackMap.forEach$1(0, new T.BaseBarRenderer_update_closure0(_this)); }, paint$2: function(canvas, animationPercent) { var keysToRemove, t1, t2, t3, t4, _this = this; if (animationPercent === 1) { keysToRemove = P.HashSet_HashSet(type$.String); t1 = _this._barStackMap; t1.forEach$1(0, new T.BaseBarRenderer_paint_closure(_this, keysToRemove)); for (t2 = new P._HashSetIterator(keysToRemove, keysToRemove._computeElements$0(), H._instanceType(keysToRemove)._eval$1("_HashSetIterator<1>")), t3 = _this._currentKeys; t2.moveNext$0();) { t4 = t2._collection$_current; t1.remove$1(0, t4); C.JSArray_methods.remove$1(t3, t4); } _this._currentGroupsStackKeys.forEach$1(0, new T.BaseBarRenderer_paint_closure0(_this, keysToRemove)); } _this._barStackMap.forEach$1(0, new T.BaseBarRenderer_paint_closure1(_this, animationPercent, canvas)); }, getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints: function(chartPoint, byDomain, boundsOverride, selectExactEventLocation, selectOverlappingPoints) { var t1, t2, domainValue, minMeasureDistance, minDomainDistance, _i, detail, t3, _this = this, _179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368 = 17976931348623157e292, _box_0 = {}, nearest = H.setRuntimeTypeInfo([], _this.$ti._eval$1("JSArray>")); if (!_this.isPointWithinBounds$2(chartPoint, boundsOverride)) return nearest; t1 = _this._prevDomainAxis; if (t1 instanceof M.OrdinalAxis) { _this.get$chart().toString; t2 = chartPoint.x; domainValue = t1.scale.reverse$1(0, t2); if (domainValue != null) { _this.get$chart().toString; nearest = _this._getVerticalDetailsForDomainValue$2(domainValue, chartPoint); } } else { _this.get$chart().toString; nearest = _this._getVerticalDetailsForDomainValue$2(null, chartPoint); _box_0.nearestDomain = null; for (t1 = nearest.length, minMeasureDistance = _179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368, minDomainDistance = minMeasureDistance, _i = 0; _i < t1; ++_i) { detail = nearest[_i]; t2 = detail.domainDistance; t2.toString; if (!(t2 < minDomainDistance)) if (t2 === minDomainDistance) { t3 = detail.measureDistance; t3.toString; t3 = t3 < minMeasureDistance; } else t3 = false; else t3 = true; if (t3) { t3 = detail.measureDistance; t3.toString; _box_0.nearestDomain = detail.domain; minMeasureDistance = t3; minDomainDistance = t2; } } if (!!nearest.fixed$length) H.throwExpression(P.UnsupportedError$("retainWhere")); C.JSArray_methods._removeWhere$2(nearest, new T.BaseBarRenderer_getNearestDatumDetailPerSeries_closure(_box_0, _this), false); } return nearest; }, _getSegmentsForDomainValue$2$where: function(domainValue, where) { var matchingSegments = H.setRuntimeTypeInfo([], this.$ti._eval$1("JSArray>")), t1 = this._currentGroupsStackKeys, stackKeys = domainValue != null ? t1.$index(0, domainValue) : t1.get$values(t1).reduce$1(0, new T.BaseBarRenderer__getSegmentsForDomainValue_closure()); if (stackKeys != null) stackKeys.forEach$1(0, new T.BaseBarRenderer__getSegmentsForDomainValue_closure0(this, where, matchingSegments)); return matchingSegments; }, _getVerticalDetailsForDomainValue$2: function(domainValue, chartPoint) { var _this = this, t1 = _this._getSegmentsForDomainValue$2$where(domainValue, new T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure(_this)), t2 = _this.$ti._eval$1("DatumDetails"); return P.List_List$from(new H.MappedListIterable(t1, new T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0(_this, chartPoint), H._arrayInstanceType(t1)._eval$1("@<1>")._bind$1(t2)._eval$1("MappedListIterable<1,2>")), true, t2); }, _getDistance$3: function(point, min, max) { if (max >= point && min <= point) return 0; return point > max ? point - max : min - point; }, getOrderedSeriesList$1$1: function(seriesList, $S) { var t1, t2; this.get$chart().toString; t1 = this.config; t2 = t1.groupingType; t2 = t2 === C.BarGroupingType_2 || t2 === C.BarGroupingType_1; if (t2) { t1 = t1.groupingType; t1 = t1 === C.BarGroupingType_0 || t1 === C.BarGroupingType_1 ? new T._ReversedSeriesIterable(seriesList, $S._eval$1("_ReversedSeriesIterable<0>")) : J.get$reversed$ax(seriesList); } else t1 = seriesList; return t1; } }; T.BaseBarRenderer_preprocessSeries_closure.prototype = { call$1: function(series) { var t1, t2, t3, t4, t5, t6, barGroupIndex, t7, t8, t9, t10, domainToCategoryToDetailsMap, domainToCategoryToDetailsMap0, needsMeasureOffset, barIndex, details, t11, domain, measure, domainToCategoryToDetailsMap1, categoryToDetailsMap, t12, prevDetail, t13, t14, t15, measureOffset, _this = this, _s14_ = "__defaultKey__", elements = H.setRuntimeTypeInfo([], type$.JSArray_BaseBarRendererElement), domainFn = series.domainFn, measureFn = series.measureFn, measureOffsetFn = series.measureOffsetFn, fillPatternFn = series.fillPatternFn, strokeWidthPxFn = series.strokeWidthPxFn; if (series.dashPatternFn == null) series.dashPatternFn = new T.BaseBarRenderer_preprocessSeries__closure0(_this.$this); t1 = _this.$this; t2 = t1.config; t3 = t2.groupingType; t4 = t3 !== C.BarGroupingType_0; if (!t4 || t3 === C.BarGroupingType_1) t5 = t3 === C.BarGroupingType_2 || t3 === C.BarGroupingType_1; else t5 = false; if (t5) { t5 = _this.categoryToIndexMap; t6 = _this._box_0; if (t5.containsKey$1(0, _s14_)) { t5 = t5.$index(0, _s14_); t5.toString; t6.barGroupIndex = t5; } else { barGroupIndex = t5.get$length(t5); t6.barGroupIndex = barGroupIndex; t5.$indexSet(0, _s14_, barGroupIndex); } } for (t5 = series.data, t6 = _this._box_0, t7 = t2.strokeWidthPx, t8 = strokeWidthPxFn != null, t2 = t2.fillPattern, t9 = fillPatternFn != null, t1 = t1.$ti._eval$1("BarRendererElement<1>"), t10 = t3 === C.BarGroupingType_1, domainToCategoryToDetailsMap = _this.negDomainToStackKeyToDetailsMap, domainToCategoryToDetailsMap0 = _this.posDomainToStackKeyToDetailsMap, t3 = t3 !== C.BarGroupingType_2, needsMeasureOffset = false, barIndex = 0; barIndex < t5.length; ++barIndex) { details = new L.BarRendererElement(t1); details.barStackIndex = 0; details.measureOffset = measureOffsetFn.call$1(barIndex); if (t9) details.fillPattern = fillPatternFn.call$1(barIndex); else details.fillPattern = t2; if (t8) { t11 = strokeWidthPxFn.call$1(barIndex); details.strokeWidthPx = t11 == null ? null : t11; } else details.strokeWidthPx = t7; if (!t3 || t10) { domain = domainFn.call$1(barIndex); measure = measureFn.call$1(barIndex); t11 = measure == null; domainToCategoryToDetailsMap1 = t11 || measure >= 0 ? domainToCategoryToDetailsMap0 : domainToCategoryToDetailsMap; categoryToDetailsMap = domainToCategoryToDetailsMap1.putIfAbsent$2(0, domain, new T.BaseBarRenderer_preprocessSeries__closure1()); t12 = J.getInterceptor$asx(categoryToDetailsMap); prevDetail = t12.$index(categoryToDetailsMap, _s14_); t13 = prevDetail != null; if (t13) { t14 = prevDetail.barStackIndex; t14.toString; details.barStackIndex = t14 + 1; } t14 = t11 ? 0 : measure; details.cumulativeTotal = t14; t15 = measureOffsetFn.call$1(barIndex); t15.toString; if (t13) { t13 = prevDetail.measureOffsetPlusMeasure; t13.toString; measureOffset = t15 + t13; t13 = prevDetail.cumulativeTotal; t13.toString; details.cumulativeTotal = t14 + t13; } else measureOffset = t15; details.measureOffset = measureOffset; details.measureOffsetPlusMeasure = measureOffset + (t11 ? 0 : measure); t12.$indexSet(categoryToDetailsMap, _s14_, details); needsMeasureOffset = true; } t11 = t6.maxBarStackSize; t12 = details.barStackIndex; t12.toString; t6.maxBarStackSize = Math.max(t11, t12 + 1); elements.push(details); } if (needsMeasureOffset) series.measureOffsetFn = new T.BaseBarRenderer_preprocessSeries__closure2(elements); t1 = t6.barGroupIndex; t2 = series._attrs._registry; t2.$indexSet(0, C.AttributeKey_2Sa, t1); t2.$indexSet(0, C.AttributeKey_Db0, _s14_); t2.$indexSet(0, C.AttributeKey_vl2, elements); if (!t4 || t10) t6.barGroupIndex = t6.barGroupIndex + 1; }, $signature: function() { return this.$this.$ti._eval$1("~(MutableSeries)"); } }; T.BaseBarRenderer_preprocessSeries__closure0.prototype = { call$1: function(_) { return null; }, $signature: 530 }; T.BaseBarRenderer_preprocessSeries__closure1.prototype = { call$0: function() { return P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BaseBarRendererElement); }, $signature: 784 }; T.BaseBarRenderer_preprocessSeries__closure2.prototype = { call$1: function(index) { var t1; index.toString; t1 = this.elements[index].measureOffset; t1.toString; return t1; }, $signature: 737 }; T.BaseBarRenderer_preprocessSeries_closure0.prototype = { call$1: function(series) { var t4, barWeight, t5, t6, t7, previousBarWeights, previousBarWeight, t1 = this._box_0, t2 = t1.numBarGroups, t3 = series._attrs._registry; t3.$indexSet(0, C.AttributeKey_8Tg, t2); t2 = this.barWeights; if (t2.length !== 0) { t4 = H._asIntQ(t3.$index(0, C.AttributeKey_2Sa)); t4.toString; barWeight = t2[t4]; t5 = this.$this.get$chart(); t5 = t5.get$context(t5).get$isRtl(); t6 = t2.length; t7 = H._arrayInstanceType(t2)._precomputed1; if (t5) { ++t4; t1 = t1.numBarGroups; P.RangeError_checkValidRange(t4, t1, t6); previousBarWeights = H.SubListIterable$(t2, t4, t1, t7); } else { P.RangeError_checkValidRange(0, t4, t6); previousBarWeights = H.SubListIterable$(t2, 0, t4, t7); } previousBarWeight = !previousBarWeights.get$isEmpty(previousBarWeights) ? previousBarWeights.reduce$1(0, new T.BaseBarRenderer_preprocessSeries__closure()) : 0; t3.$indexSet(0, C.AttributeKey_esd, barWeight); t3.$indexSet(0, C.AttributeKey_YGG, previousBarWeight); t3.$indexSet(0, C.AttributeKey_Ubu, t2); } }, $signature: function() { return this.$this.$ti._eval$1("~(MutableSeries)"); } }; T.BaseBarRenderer_preprocessSeries__closure.prototype = { call$2: function(a, b) { return a + b; }, $signature: 293 }; T.BaseBarRenderer_update_closure.prototype = { call$1: function(series) { var t5, t6, t7, barIndex, datum, details, domainValue, measureValue, measureIsNull, t8, measureIsNegative, t9, barStackMapKey, barKey, barStackList, animatingBar, t10, t11, t12, t13, t14, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$this, t4 = t3.$ti, domainAxis = t4._eval$1("ImmutableAxis")._as(t2._as(t1.$index(0, C.AttributeKey_OBU))), domainFn = series.domainFn, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, C.AttributeKey_kWM))), measureFn = series.measureFn, colorFn = series.colorFn, dashPatternFn = series.dashPatternFn, fillColorFn = series.fillColorFn, seriesStackKey = H._asStringQ(t1.$index(0, C.AttributeKey_Db0)), barGroupCount = H._asIntQ(t1.$index(0, C.AttributeKey_8Tg)), barGroupIndex = H._asIntQ(t1.$index(0, C.AttributeKey_2Sa)), previousBarGroupWeight = H._asDoubleQ(t1.$index(0, C.AttributeKey_YGG)), barGroupWeight = H._asDoubleQ(t1.$index(0, C.AttributeKey_esd)), allBarGroupWeights = type$.nullable_List_double._as(t1.$index(0, C.AttributeKey_Ubu)), measureAxisPosition = measureAxis.getLocation$1(0), elementsList = type$.nullable_List_BaseBarRendererElement._as(t1.$index(0, C.AttributeKey_vl2)); t3._prevDomainAxis = domainAxis; for (t1 = series.data, t2 = t3._currentKeys, t5 = t3._currentGroupsStackKeys, t6 = t4._eval$1("BaseBarRenderer.R"), t7 = t3._barStackMap, t4 = t4._eval$1("AnimatedBar<1>"), barIndex = 0; barIndex < t1.length; ++barIndex) { datum = t1[barIndex]; elementsList.toString; details = J.$index$asx(elementsList, barIndex); domainValue = domainFn.call$1(barIndex); measureValue = measureFn.call$1(barIndex); measureIsNull = measureValue == null; t8 = !measureIsNull; measureIsNegative = t8 && measureValue < 0; t9 = H.S(domainValue) + "__" + H.S(seriesStackKey) + "__"; barStackMapKey = t9 + (measureIsNegative ? "pos" : "neg") + "__" + H.S(barGroupIndex); barKey = barStackMapKey + H.S(details.barStackIndex); barStackList = t7.putIfAbsent$2(0, barStackMapKey, new T.BaseBarRenderer_update__closure(t3)); animatingBar = A.IterableExtension_firstWhereOrNull(barStackList, new T.BaseBarRenderer_update__closure0(t3, barKey)); if (animatingBar == null) { if (t8) { barGroupIndex.toString; t8 = colorFn.call$1(barIndex); t9 = dashPatternFn.call$1(barIndex); t6._as(details); t10 = domainFn.call$1(barIndex); t11 = J.round$0$n(domainAxis.scale.get$rangeBand()); t12 = fillColorFn.call$1(barIndex); t13 = details.fillPattern; barGroupCount.toString; animatingBar = new L.AnimatedBar(barKey, datum, series, t10, t4); animatingBar.setNewTarget$1(t3.makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx(allBarGroupWeights, barGroupIndex, barGroupWeight, t8, t9, details, domainAxis, t10, t11, t12, t13, measureAxis, measureAxisPosition, measureIsNegative, false, 0, 0, barGroupCount, previousBarGroupWeight, details.strokeWidthPx)); J.add$1$ax(barStackList, animatingBar); } } else { animatingBar.datum = datum; animatingBar.series = series; animatingBar.domainValue = domainValue; } if (animatingBar == null) continue; t2.push(barKey); J.add$1$ax(t5.putIfAbsent$2(0, domainValue, new T.BaseBarRenderer_update__closure1()), barStackMapKey); barGroupIndex.toString; t8 = colorFn.call$1(barIndex); t9 = dashPatternFn.call$1(barIndex); t6._as(details); t10 = domainFn.call$1(barIndex); t11 = J.round$0$n(domainAxis.scale.get$rangeBand()); t12 = fillColorFn.call$1(barIndex); t13 = details.fillPattern; t14 = details.measureOffset; t14.toString; barGroupCount.toString; animatingBar.setNewTarget$1(t3.makeBarRendererElement$20$allBarGroupWeights$barGroupIndex$barGroupWeight$color$dashPattern$details$domainAxis$domainValue$domainWidth$fillColor$fillPattern$measureAxis$measureAxisPosition$measureIsNegative$measureIsNull$measureOffsetValue$measureValue$numBarGroups$previousBarGroupWeight$strokeWidthPx(allBarGroupWeights, barGroupIndex, barGroupWeight, t8, t9, details, domainAxis, t10, t11, t12, t13, measureAxis, measureAxisPosition, measureIsNegative, measureIsNull, t14, measureValue, barGroupCount, previousBarGroupWeight, details.strokeWidthPx)); } }, $signature: function() { return this.$this.$ti._eval$1("~(ImmutableSeries)"); } }; T.BaseBarRenderer_update__closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], this.$this.$ti._eval$1("JSArray")); }, $signature: function() { return this.$this.$ti._eval$1("List()"); } }; T.BaseBarRenderer_update__closure0.prototype = { call$1: function(bar) { return bar.key === this.barKey; }, $signature: function() { return this.$this.$ti._eval$1("bool(BaseBarRenderer.B)"); } }; T.BaseBarRenderer_update__closure1.prototype = { call$0: function() { return P.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, $signature: 395 }; T.BaseBarRenderer_update_closure0.prototype = { call$2: function(key, barStackList) { var t1, t2, t3, barIndex, bar, t4, t5, t6, newTarget; for (t1 = J.getInterceptor$asx(barStackList), t2 = this.$this._currentKeys, t3 = type$.int, barIndex = 0; barIndex < t1.get$length(barStackList); ++barIndex) { bar = t1.$index(barStackList, barIndex); if (!C.JSArray_methods.contains$1(t2, bar.key)) { t4 = bar._currentBar; t4.toString; t5 = H.instanceType(bar); t6 = t5._eval$1("BarRendererElement<1>"); newTarget = new L.BarRendererElement(t6); newTarget.BaseBarRendererElement$clone$1(t4); newTarget.BarRendererElement$clone$1(t4, t5._precomputed1); t6._as(newTarget); t6 = newTarget.bounds; t5 = t6.left; t6 = C.JSNumber_methods.round$0(t6.width / 2); t4 = newTarget.measureAxisPosition; t4.toString; newTarget.bounds = P.Rectangle$(t5 + t6, C.JSNumber_methods.round$0(t4), 0, 0, t3); bar.setNewTarget$1(newTarget); bar.animatingOut = true; } } }, $signature: function() { return this.$this.$ti._eval$1("~(String,List)"); } }; T.BaseBarRenderer_paint_closure.prototype = { call$2: function(key, barStackList) { var t1 = J.getInterceptor$ax(barStackList); t1.retainWhere$1(barStackList, new T.BaseBarRenderer_paint__closure0(this.$this)); if (t1.get$isEmpty(barStackList)) this.keysToRemove.add$1(0, key); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List)"); } }; T.BaseBarRenderer_paint__closure0.prototype = { call$1: function(bar) { var t1; if (!bar.animatingOut) { t1 = bar._targetBar.measureIsNull; t1.toString; t1 = !t1; } else t1 = false; return t1; }, $signature: function() { return this.$this.$ti._eval$1("bool(BaseBarRenderer.B)"); } }; T.BaseBarRenderer_paint_closure0.prototype = { call$2: function(domain, keys) { var t1 = this.keysToRemove; keys.removeWhere$1(0, t1.get$contains(t1)); }, $signature: function() { return this.$this.$ti._eval$1("~(BaseBarRenderer.D,Set)"); } }; T.BaseBarRenderer_paint_closure1.prototype = { call$2: function(stackKey, barStack) { var t1 = this.$this, t2 = this.animationPercent, barElements = J.map$1$1$ax(barStack, new T.BaseBarRenderer_paint__closure(t1, t2), t1.$ti._eval$1("BaseBarRenderer.R")).toList$0(0); if (barElements.length !== 0) t1.paintBar$3(this.canvas, t2, barElements); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List)"); } }; T.BaseBarRenderer_paint__closure.prototype = { call$1: function(animatingBar) { var bar, t1, t2; animatingBar.toString; bar = animatingBar.super$BaseAnimatedBar$getCurrentBar(this.animationPercent); t1 = animatingBar.series; bar.series = t1; t2 = animatingBar.datum; bar._datum = t2; bar.toString; t1 = C.JSArray_methods.indexOf$1(t1.data, t2); bar.index = t1; return bar; }, $signature: function() { return this.$this.$ti._eval$1("BaseBarRenderer.R(BaseBarRenderer.B)"); } }; T.BaseBarRenderer_getNearestDatumDetailPerSeries_closure.prototype = { call$1: function(d) { return J.$eq$(d.domain, this._box_0.nearestDomain); }, $signature: function() { return this.$this.$ti._eval$1("bool(DatumDetails)"); } }; T.BaseBarRenderer__getSegmentsForDomainValue_closure.prototype = { call$2: function(allKeys, keys) { allKeys.addAll$1(0, keys); return allKeys; }, $signature: 772 }; T.BaseBarRenderer__getSegmentsForDomainValue_closure0.prototype = { call$1: function(stackKey) { var t1 = this.$this._barStackMap.$index(0, stackKey); t1.toString; C.JSArray_methods.addAll$1(this.matchingSegments, J.where$1$ax(t1, this.where)); }, $signature: 88 }; T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure.prototype = { call$1: function(bar) { bar.toString; return true; }, $signature: function() { return this.$this.$ti._eval$1("bool(BaseAnimatedBar)"); } }; T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0.prototype = { call$1: function(bar) { var t2, t3, t4, t5, t6, t7, t8, segmentDomainDistance, t9, t10, segmentMeasureDistance, relativeDistance, _null = null, t1 = bar._currentBar.bounds; t1.toString; t2 = this.$this; t3 = this.chartPoint; t4 = t3.x; t5 = J.round$0$n(t4); t6 = t1.left; t7 = t1.$ti._precomputed1; t8 = t7._as(t6 + t1.width); segmentDomainDistance = t2._getDistance$3(t5, t6, t8); t5 = t3.y; t9 = J.round$0$n(t5); t10 = t1.top; t1 = t7._as(t10 + t1.height); segmentMeasureDistance = t2._getDistance$3(t9, t10, t1); relativeDistance = t3.distanceTo$1(new P.Point(Math.min(Math.max(t4, t6), t8), Math.min(Math.max(t5, t10), t1), type$.Point_double)); t1 = bar.series; return L.DatumDetails$(_null, _null, _null, _null, _null, _null, _null, bar.datum, bar.domainValue, segmentDomainDistance, _null, _null, _null, _null, _null, _null, _null, segmentMeasureDistance, _null, _null, _null, _null, _null, _null, _null, _null, relativeDistance, t1, _null, _null, t2.$ti._eval$1("BaseBarRenderer.D")); }, $signature: function() { return this.$this.$ti._eval$1("DatumDetails(BaseAnimatedBar)"); } }; T._ReversedSeriesIterable.prototype = { get$iterator: function(_) { return T._ReversedSeriesIterator$(this.seriesList, this.$ti._precomputed1); } }; T._ReversedSeriesIterator.prototype = { _ReversedSeriesIterator$1: function(list, $S) { var t1, i, categoryAndSeriesIndexMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, type$.List_int); for (t1 = J.getInterceptor$asx(list), i = 0; i < t1.get$length(list); ++i) J.add$1$ax(categoryAndSeriesIndexMap.putIfAbsent$2(0, t1.$index(list, i).seriesCategory, new T._ReversedSeriesIterator_closure()), i); categoryAndSeriesIndexMap.forEach$1(0, new T._ReversedSeriesIterator_closure0(this)); }, moveNext$0: function() { var t1 = this._base_bar_renderer$_current; t1 = t1 == null ? 0 : t1 + 1; this._base_bar_renderer$_current = t1; return t1 < J.get$length$asx(this._base_bar_renderer$_list); }, get$current: function(_) { var t1 = this._base_bar_renderer$_current; t1.toString; return J.$index$asx(this._base_bar_renderer$_list, this._visitIndex[t1]); } }; T._ReversedSeriesIterator_closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_int); }, $signature: 774 }; T._ReversedSeriesIterator_closure0.prototype = { call$2: function(_, indices) { return C.JSArray_methods.addAll$1(this.$this._visitIndex, J.get$reversed$ax(indices)); }, $signature: 775 }; A.BaseBarRendererConfig.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (other instanceof A.BaseBarRendererConfig) if (other.groupingType === _this.groupingType) if (other.minBarLengthPx === _this.minBarLengthPx) t1 = other.stackedBarPaddingPx === _this.stackedBarPaddingPx && other.strokeWidthPx === _this.strokeWidthPx && other.symbolRenderer.$eq(0, _this.symbolRenderer) && new U.ListEquality(C.C_DefaultEquality, type$.ListEquality_int).equals$2(other.weightPattern, _this.weightPattern); else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.symbolRenderer; return (((((((((31 + C.JSNull_methods.get$hashCode(_this.customRendererId)) * 31 + C.JSNull_methods.get$hashCode(null)) * 31 + C.JSNull_methods.get$hashCode(_this.fillPattern)) * 31 + H.Primitives_objectHashCode(_this.groupingType)) * 31 + C.JSInt_methods.get$hashCode(_this.minBarLengthPx)) * 31 + C.JSNull_methods.get$hashCode(_this.maxBarWidthPx)) * 31 + C.JSInt_methods.get$hashCode(_this.stackedBarPaddingPx)) * 31 + C.JSInt_methods.get$hashCode(_this.strokeWidthPx)) * 31 + t1.get$hashCode(t1)) * 31 + C.JSNull_methods.get$hashCode(_this.weightPattern); } }; A.BarGroupingType.prototype = { toString$0: function(_) { return this._base_bar_renderer_config$_name; } }; B.BaseBarRendererElement.prototype = { BaseBarRendererElement$clone$1: function(other) { var t1, _this = this, _null = null; _this.barStackIndex = other.barStackIndex; t1 = other.color; _this.color = t1 != null ? K.Color$fromOther(t1, _null) : _null; _this.cumulativeTotal = other.cumulativeTotal; _this.dashPattern = other.dashPattern; t1 = other.fillColor; _this.fillColor = t1 != null ? K.Color$fromOther(t1, _null) : _null; _this.fillPattern = other.fillPattern; _this.measureAxisPosition = other.measureAxisPosition; _this.measureOffset = other.measureOffset; _this.measureOffsetPlusMeasure = other.measureOffsetPlusMeasure; _this.strokeWidthPx = other.strokeWidthPx; _this.measureIsNull = other.measureIsNull; _this.measureIsNegative = other.measureIsNegative; }, updateAnimationPercent$3: function(previous, target, animationPercent) { var t2, _this = this, t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = S.getAnimatedColor(t1, t2, animationPercent); t2 = previous.fillColor; t2.toString; t1 = target.fillColor; t1.toString; _this.fillColor = S.getAnimatedColor(t2, t1, animationPercent); _this.measureIsNull = target.measureIsNull; _this.measureIsNegative = target.measureIsNegative; } }; B.BaseAnimatedBar.prototype = { setNewTarget$1: function(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentBar; if (t1 == null) t1 = _this._currentBar = L.BarRendererElement$clone(newTarget, _this.$ti._precomputed1); _this._previousBar = L.BarRendererElement$clone(t1, _this.$ti._precomputed1); _this._targetBar = newTarget; }, getCurrentBar$1: function(animationPercent) { var t1, t2, t3, t4, targetBounds, t5, t6, $top, t7, t8, t9, t10, t11, t12, left, _this = this; if (animationPercent === 1 || _this._previousBar == null) { t1 = _this._targetBar; _this._previousBar = _this._currentBar = t1; t1.toString; return t1; } t1 = _this._currentBar; t1.toString; t2 = _this._previousBar; t2.toString; t3 = _this._targetBar; t3.toString; t4 = t1.$ti; t4._as(t2); t4._as(t3); t4 = t2.bounds; t4.toString; targetBounds = t3.bounds; t5 = targetBounds.top; t6 = t4.top; $top = (t5 - t6) * animationPercent + t6; t7 = targetBounds.left; t8 = H._instanceType(targetBounds)._precomputed1; t9 = t8._as(t7 + targetBounds.width); t10 = t4.left; t11 = t4.$ti._precomputed1; t12 = t11._as(t10 + t4.width); t5 = t8._as(t5 + targetBounds.height); t4 = t11._as(t6 + t4.height); left = (t7 - t10) * animationPercent + t10; t1.bounds = P.Rectangle$(C.JSNumber_methods.round$0(left), C.JSNumber_methods.round$0($top), C.JSNumber_methods.round$0((t9 - t12) * animationPercent + t12 - left), C.JSNumber_methods.round$0((t5 - t4) * animationPercent + t4 - $top), type$.int); t1.roundPx = t3.roundPx; t1.super$BaseBarRendererElement$updateAnimationPercent(t2, t3, animationPercent); t3 = _this._currentBar; t3.toString; return t3; } }; M.AxisOrientation.prototype = { toString$0: function(_) { return this._axis$_name; } }; M.ImmutableAxis.prototype = {}; M.Axis.prototype = { addDomainValue$1: function(domain) { this.scale.addDomain$1(domain); }, resetDomains$0: function() { var scale, _this = this; _this._formatterValueCache.clear$0(0); scale = _this.scale; scale.resetDomain$0(); _this.reverseOutputRange = false; if (_this.autoViewport) scale.resetViewportSettings$0(); }, getLocation$1: function(domain) { var scale, t1, domainLocation, t2; if (domain != null) { scale = this.scale; t1 = scale.get$range(); t1.toString; domainLocation = scale.$index(0, domain); t2 = t1.start; t1 = t1.end; if (domainLocation > Math.max(H.checkNum(t2), H.checkNum(t1)) && domainLocation - 2e-10 < Math.max(H.checkNum(t2), H.checkNum(t1))) return domainLocation - 2e-10; else if (domainLocation < Math.min(H.checkNum(t2), H.checkNum(t1)) && domainLocation + 2e-10 > Math.min(H.checkNum(t2), H.checkNum(t1))) return domainLocation + 2e-10; return domainLocation; } return null; }, updateTicks$0: function() { var t1, t2, _this = this; _this._updateProvidedTicks$0(); t1 = _this._componentBounds; if (t1 != null) { t1 = J.get$width$x(t1); t2 = _this._componentBounds; t2.toString; _this._updateProvidedTickWidth$2(t1, J.get$height$x(t2)); } _this._updateAxisTicks$0(); }, _updateProvidedTicks$0: function() { var t4, t5, t6, _this = this, t1 = _this.tickProvider, t2 = _this.context, t3 = _this.graphicsFactory; t3.toString; t4 = _this.scale; t5 = _this._tickFormatter; t6 = _this.tickDrawStrategy; t6.toString; t6 = t1.getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(t2, t5, _this._formatterValueCache, t3, _this.axisOrientation, t4, t6, _this.autoViewport); _this._providedTicks = t6; _this.hasTickCollision = _this.tickDrawStrategy.collides$2(t6, _this.axisOrientation).ticksCollide; }, _updateProvidedTickWidth$2: function(maxWidth, maxHeight) { var t2, t3, _this = this, t1 = _this.axisOrientation; if (t1 != null) { t2 = _this.tickDrawStrategy; t2.toString; t3 = _this._providedTicks; t3.toString; t2.updateTickWidth$5$collision(t3, maxWidth, maxHeight, t1, _this.hasTickCollision); } }, _updateAxisTicks$0: function() { var providedTicks, scale, t2, _i, animatedTick, tick, t3, t4, newTarget, _this = this, t1 = _this._providedTicks; if (t1 == null) t1 = H.setRuntimeTypeInfo([], H._instanceType(_this)._eval$1("JSArray>")); providedTicks = P.List_List$of(t1, true, H._instanceType(_this)._eval$1("Tick")); scale = _this.scale; for (t1 = _this._axisTicks, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { animatedTick = t1[_i]; tick = A.IterableExtension_firstWhereOrNull(providedTicks, new M.Axis__updateAxisTicks_closure(_this, animatedTick)); if (tick != null) { t3 = animatedTick.textElement; t4 = tick.textElement; if (!(J.$eq$(t3._text_element$_textStyle, t4._text_element$_textStyle) && t3._text_element$_maxWidth == t4._text_element$_maxWidth && t3._maxWidthStrategy == t4._maxWidthStrategy && t3.text == t4.text && t3._text_element$_textDirection === t4._text_element$_textDirection)) animatedTick.textElement = tick.textElement; newTarget = scale.$index(0, tick.value); if (scale.isRangeValueWithinViewport$1(newTarget)) { animatedTick._markedForRemoval = false; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = newTarget; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 1; } else { t3 = animatedTick.locationPx; animatedTick._markedForRemoval = true; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = t3; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 0; } C.JSArray_methods.remove$1(providedTicks, tick); } else { t3 = scale.$index(0, animatedTick.value); animatedTick._markedForRemoval = true; animatedTick._previousLocation = animatedTick._currentLocation; animatedTick._targetLocation = t3; animatedTick._previousOpacity = animatedTick._currentOpacity; animatedTick._targetOpacity = 0; } } C.JSArray_methods.forEach$1(providedTicks, new M.Axis__updateAxisTicks_closure0(_this, scale)); C.JSArray_methods.sort$0(t1); _this._previousScale = scale.copy$0(0); }, get$layoutConfig: function() { var position, t1 = this.layoutPaintOrder; switch (this.axisOrientation) { case C.AxisOrientation_0: position = C.LayoutPosition_2; break; case C.AxisOrientation_1: position = C.LayoutPosition_6; break; case C.AxisOrientation_2: position = C.LayoutPosition_0; break; case C.AxisOrientation_3: position = C.LayoutPosition_4; break; case null: position = null; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); position = null; } return X.LayoutViewConfig$(t1, position, 20); }, measure$2: function(_, maxWidth, maxHeight) { var t2, _this = this, t1 = _this.axisOrientation; t1 = t1 === C.AxisOrientation_3 || t1 === C.AxisOrientation_1; t2 = _this.scale; if (t1) { t2.set$range(new B.ScaleOutputExtent(maxHeight, 0)); _this._updateProvidedTicks$0(); t1 = _this.tickDrawStrategy; t1.toString; t2 = _this._providedTicks; t2.toString; t2 = t1.measureVerticallyDrawnTicks$4$collision(t2, maxWidth, maxHeight, _this.hasTickCollision); t1 = t2; } else { t2.set$range(new B.ScaleOutputExtent(0, maxWidth)); _this._updateProvidedTicks$0(); t1 = _this.tickDrawStrategy; t1.toString; t2 = _this._providedTicks; t2.toString; t2 = t1.measureHorizontallyDrawnTicks$4$collision(t2, maxWidth, maxHeight, _this.hasTickCollision); t1 = t2; } return t1; }, layout$2: function(_, componentBounds, drawAreaBounds) { var t1, t2, outputStart, outputEnd, outputRange, scale, _this = this; _this._componentBounds = componentBounds; _this._axis$_drawAreaBounds = drawAreaBounds; t1 = _this.axisOrientation; t1 = t1 === C.AxisOrientation_3 || t1 === C.AxisOrientation_1; t2 = J.getInterceptor$x(componentBounds); outputStart = t1 ? t2.get$bottom(componentBounds) : t2.get$left(componentBounds); t1 = _this.axisOrientation; outputEnd = t1 === C.AxisOrientation_3 || t1 === C.AxisOrientation_1 ? t2.get$top(componentBounds) : t2.get$right(componentBounds); outputRange = _this.reverseOutputRange ? new B.ScaleOutputExtent(outputEnd, outputStart) : new B.ScaleOutputExtent(outputStart, outputEnd); scale = _this.scale; if (!J.$eq$(scale.get$range(), outputRange)) scale.set$range(outputRange); _this._updateProvidedTicks$0(); t1 = _this._componentBounds; t1.toString; t1 = J.get$width$x(t1); t2 = _this._componentBounds; t2.toString; _this._updateProvidedTickWidth$2(t1, J.get$height$x(t2)); _this._updateAxisTicks$0(); }, get$isSeriesRenderer: function() { return false; }, get$componentBounds: function() { return this._componentBounds; }, get$drawAxisLine: function() { return this.tickDrawStrategy instanceof S.SmallTickDrawStrategy; }, paint$2: function(canvas, animationPercent) { var t2, i, animatedTick, t3, t4, t5, t6, t7, _this = this, t1 = animationPercent === 1; if (t1) { t2 = _this._axisTicks; if (!!t2.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(t2, new M.Axis_paint_closure(_this), true); } for (t2 = _this._axisTicks, i = 0; i < t2.length; ++i) { animatedTick = t2[i]; t3 = _this.tickDrawStrategy; t3.toString; if (t1) { animatedTick._previousLocation = animatedTick._currentLocation = animatedTick._targetLocation; t4 = animatedTick._currentOpacity = animatedTick._markedForRemoval ? 0 : 1; } else { t4 = animatedTick._previousLocation; t5 = animatedTick._targetLocation; if (t4 == null) { animatedTick._currentLocation = t5; animatedTick._currentOpacity = 1; t4 = 1; } else { animatedTick._currentLocation = animatedTick._axis_tick$_lerpDouble$3(t4, t5, animationPercent); t4 = animatedTick._axis_tick$_lerpDouble$3(animatedTick._previousOpacity, animatedTick._targetOpacity, animationPercent); animatedTick._currentOpacity = t4; } } animatedTick.locationPx = animatedTick._currentLocation; t5 = animatedTick.textElement; if (t4 != t5._text_element$_opacity) { t5._painterReady = false; t5._text_element$_opacity = t4; } t4 = _this.axisOrientation; t4.toString; t5 = _this._componentBounds; t5.toString; t6 = _this.hasTickCollision; t7 = _this._axis$_drawAreaBounds; t7.toString; t3.draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, animatedTick, t5, t6, t7, i === 0, i === t2.length - 1, t4); } if (_this.get$drawAxisLine()) { t1 = _this.tickDrawStrategy; t1.toString; t2 = _this.axisOrientation; t2.toString; t3 = _this._componentBounds; t3.toString; t1.drawAxisLine$3(canvas, t2, t3); } }, $isLayoutView: 1, set$graphicsFactory: function(val) { return this.graphicsFactory = val; } }; M.Axis__updateAxisTicks_closure.prototype = { call$1: function(t) { return J.$eq$(t.value, this.animatedTick.value); }, $signature: function() { return H._instanceType(this.$this)._eval$1("bool(Tick)"); } }; M.Axis__updateAxisTicks_closure0.prototype = { call$1: function(tick) { var t1 = this.$this, animatedTick = E.AxisTicks$(tick, H._instanceType(t1)._eval$1("Axis.D")), t2 = animatedTick.locationPx; t2.toString; if (this.scale.isRangeValueWithinViewport$1(t2)) { t2 = t1._previousScale; if (t2 != null) { t2 = t2.$index(0, tick.value); animatedTick._markedForRemoval = false; animatedTick._previousLocation = t2; animatedTick._previousOpacity = 0; animatedTick._targetOpacity = 1; } t1._axisTicks.push(animatedTick); } }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(Tick)"); } }; M.Axis_paint_closure.prototype = { call$1: function(t) { return t._markedForRemoval; }, $signature: function() { return H._instanceType(this.$this)._eval$1("bool(AxisTicks)"); } }; M.NumericAxis.prototype = {}; M.OrdinalAxis.prototype = { layout$2: function(_, componentBounds, drawAreaBounds) { this.super$Axis$layout(0, componentBounds, drawAreaBounds); type$.OrdinalScale._as(this.scale).setViewport$2(null, null); } }; E.AxisTicks.prototype = { _axis_tick$_lerpDouble$3: function(a, b, t) { var t1 = a == null; if (t1 && b == null) return null; if (t1) a = 0; return a + ((b == null ? 0 : b) - a) * t; }, compareTo$1: function(_, other) { var t2, t1 = this._targetLocation; t1.toString; t2 = other._targetLocation; t2.toString; return C.JSNumber_methods.compareTo$1(t1, t2); }, $isComparable: 1 }; V.CollisionReport.prototype = {}; R.BaseRenderSpec.prototype = { $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof R.BaseRenderSpec) if (J.$eq$(this.labelStyle, other.labelStyle)) if (this.labelRotation == other.labelRotation) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { var _this = this; return (((((((((J.get$hashCode$(_this.labelStyle) * 37 + C.JSNull_methods.get$hashCode(_this.labelAnchor)) * 37 + C.JSNull_methods.get$hashCode(_this.labelJustification)) * 37 + C.JSNull_methods.get$hashCode(_this.labelOffsetFromTickPx)) * 37 + C.JSNull_methods.get$hashCode(_this.labelCollisionOffsetFromTickPx)) * 37 + C.JSNull_methods.get$hashCode(_this.labelOffsetFromAxisPx)) * 37 + C.JSNull_methods.get$hashCode(_this.labelCollisionOffsetFromAxisPx)) * 37 + C.JSNull_methods.get$hashCode(_this.minimumPaddingBetweenLabelsPx)) * 37 + J.get$hashCode$(_this.labelRotation)) * 37 + C.JSNull_methods.get$hashCode(_this.labelCollisionRotation)) * 37 + C.JSNull_methods.get$hashCode(_this.axisLineStyle); } }; R.BaseTickDrawStrategy.prototype = { BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx: function(chartContext, graphicsFactory, axisLineStyleSpec, labelAnchor, labelCollisionOffsetFromAxisPx, labelCollisionOffsetFromTickPx, labelCollisionRotation, labelJustification, labelOffsetFromAxisPx, labelOffsetFromTickPx, labelRotation, labelStyleSpec, minimumPaddingBetweenLabelsPx, $D) { var t4, _null = null, t1 = this.labelStyle, t2 = labelStyleSpec == null, t3 = t2 ? _null : labelStyleSpec.color; if (t3 == null) { $.$get$StyleFactory__styleFactory().toString; t3 = new K.Color0(66, 66, 66, 255, _null, _null); } t3 = t1.color = t3; t1.fontFamily = null; t2 = t2 ? _null : labelStyleSpec.fontSize; t1.fontSize = t2 == null ? 12 : t2; t1.lineHeight = null; t2 = this.axisLineStyle; t4 = axisLineStyleSpec == null ? _null : axisLineStyleSpec.color; if (t4 == null) { t1.toString; t1 = t3; } else t1 = t4; t2.color = t1; t2.dashPattern = null; t2.strokeWidth = 1; }, decorateTicks$1: function(ticks) { var t1, t2, _i, textElement, t3; for (t1 = ticks.length, t2 = this.labelStyle, _i = 0; _i < ticks.length; ticks.length === t1 || (0, H.throwConcurrentModificationError)(ticks), ++_i) { textElement = ticks[_i].textElement; t3 = textElement._text_element$_textStyle; if (t3 == null) textElement.set$textStyle(0, t2); else { if (t3.color == null) t3.color = t2.color; if (t3.fontFamily == null) t3.fontFamily = t2.fontFamily; if (t3.fontSize == null) t3.fontSize = t2.fontSize; t3.lineHeight = t2.lineHeight; } } }, updateTickWidth$5$collision: function(ticks, maxWidth, maxHeight, orientation, collision) { var t3, _this = this, isVertical = orientation != null && orientation === C.AxisOrientation_1 || orientation === C.AxisOrientation_3, rotationRelativeToAxis = collision && _this._rotateOnCollision ? _this._labelCollisionRotation : _this._labelDefaultRotation, rotationRads = Math.abs((rotationRelativeToAxis - (isVertical ? 90 : 0)) * 0.017453292519943295), t1 = isVertical ? maxWidth : maxHeight, t2 = collision && _this._rotateOnCollision ? _this._labelCollisionOffsetFromAxisPx : _this._labelDefaultOffsetFromAxisPx, maxTextWidth = Math.sin(rotationRads) === 0 ? null : C.JSNumber_methods.floor$0((t1 - t2) / Math.sin(rotationRads)); for (t1 = J.get$iterator$ax(ticks), t2 = maxTextWidth != null; t1.moveNext$0();) { t3 = t1.get$current(t1); if (t2) { t3.textElement.set$maxWidth(0, maxTextWidth); t3.textElement.set$maxWidthStrategy(C.MaxWidthStrategy_1); } else { t3.textElement.set$maxWidth(0, null); t3.textElement.set$maxWidthStrategy(null); } } }, collides$2: function(ticks, orientation) { var vertical, t1, t2, t3, t4, t5, t6, t7, previousEnd, _i, tick, t8, tickSize, t9, adjustedHeight, collides, halfHeight, textDirection, adjustedWidth, halfWidth, _this = this; if (ticks == null) return V.CollisionReport$(false, ticks, false, H._instanceType(_this)._precomputed1); vertical = orientation === C.AxisOrientation_3 || orientation === C.AxisOrientation_1; t1 = H._instanceType(_this); t2 = H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")); for (t3 = J.get$iterator$ax(ticks); t3.moveNext$0();) { t4 = t3.get$current(t3); if (t4.locationPx != null) t2.push(t4); } C.JSArray_methods.sort$1(t2, new R.BaseTickDrawStrategy_collides_closure(_this)); for (t3 = t2.length, t4 = _this.minimumPaddingBetweenLabelsPx, t5 = _this._defaultTickLabelAnchor, t6 = _this.chartContext, t7 = t5 === C.TickLabelAnchor_3, previousEnd = -1 / 0, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { tick = t2[_i]; t8 = tick.textElement; if (!t8._painterReady) t8._refreshPainter$0(); t8 = t8.__TextElement__measurement; tickSize = t8 === $ ? H.throwExpression(H.LateError$fieldNI("_measurement")) : t8; t8 = tick.locationPx; t8.toString; if (vertical) { t9 = tickSize == null ? null : tickSize.verticalSliceWidth; adjustedHeight = (t9 == null ? 0 : t9) + t4; if (t7) if (tick === C.JSArray_methods.get$first(t2)) { previousEnd = t8 + adjustedHeight; collides = false; } else if (tick === C.JSArray_methods.get$last(t2)) { collides = previousEnd > t8 - adjustedHeight; previousEnd = t8; } else { halfHeight = adjustedHeight / 2; collides = previousEnd > t8 - halfHeight; previousEnd = t8 + halfHeight; } else { collides = previousEnd > t8; previousEnd = t8 + adjustedHeight; } } else { if (t6._chartContainerIsRtl) t9 = true; else t9 = false; textDirection = _this._normalizeHorizontalAnchor$4(t5, t9, tick === C.JSArray_methods.get$first(t2), tick === C.JSArray_methods.get$last(t2)); t9 = tickSize == null ? null : tickSize.horizontalSliceWidth; adjustedWidth = (t9 == null ? 0 : t9) + t4; switch (textDirection) { case C.TextDirection_00: collides = previousEnd > t8; previousEnd = t8 + adjustedWidth; break; case C.TextDirection_10: collides = previousEnd > t8 - adjustedWidth; previousEnd = t8; break; case C.TextDirection_2: halfWidth = adjustedWidth / 2; collides = previousEnd > t8 - halfWidth; previousEnd = t8 + halfWidth; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } if (collides) return new V.CollisionReport(true, t2, false, t1._eval$1("CollisionReport<1>")); } return V.CollisionReport$(false, t2, false, t1._precomputed1); }, measureVerticallyDrawnTicks$4$collision: function(ticks, maxWidth, maxHeight, collision) { return X.ViewMeasuredSizes$(maxHeight, J.round$0$n(J.fold$1$2$ax(ticks, 0, new R.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure(this, collision), type$.double))); }, measureHorizontallyDrawnTicks$4$collision: function(ticks, maxWidth, maxHeight, collision) { var _this = this, maxVerticalSliceWidth = J.round$0$n(J.fold$1$2$ax(ticks, 0, new R.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure(_this, collision), type$.double)), t1 = collision && _this._rotateOnCollision ? _this._labelCollisionOffsetFromAxisPx : _this._labelDefaultOffsetFromAxisPx; return X.ViewMeasuredSizes$(Math.min(H.checkNum(maxHeight), maxVerticalSliceWidth + t1), maxWidth); }, drawAxisLine$3: function(canvas, orientation, axisBounds) { var t1, start, end, t2, t3, t4; switch (orientation) { case C.AxisOrientation_0: t1 = J.getInterceptor$x(axisBounds); start = t1.get$bottomLeft(axisBounds); end = t1.get$bottomRight(axisBounds); break; case C.AxisOrientation_2: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topLeft(axisBounds); end = t1.get$topRight(axisBounds); break; case C.AxisOrientation_1: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topLeft(axisBounds); end = t1.get$bottomLeft(axisBounds); break; case C.AxisOrientation_3: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topRight(axisBounds); end = t1.get$bottomRight(axisBounds); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = H.setRuntimeTypeInfo([start, end], type$.JSArray_Point_num); t2 = this.axisLineStyle; t3 = t2.color; t4 = t2.strokeWidth; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t2.dashPattern, t3, t1, t3, t4); }, drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation: function(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var isRtl, labelElements, labelHeight, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, multiLineLabelOffset, _i, line, t18, y, t19, t20, direction, x, offsetY, textDirection, measurement, offsetX, _this = this, _s12_ = "_measurement", _s12_0 = "_textPainter", locationPx = tick.locationPx; if (locationPx == null) locationPx = 0; isRtl = _this.chartContext.get$isRtl(); labelElements = _this.splitLabel$1(tick.textElement); labelHeight = _this.getLabelHeight$1(labelElements); for (t1 = labelElements.length, t2 = canvas.canvas, t3 = _this._labelDefaultRotation, t4 = locationPx - labelHeight / 2, t5 = _this._defaultTickLabelAnchor, t6 = J.getInterceptor$x(axisBounds), t7 = _this.tickLabelJustification === C.TickLabelJustification_0, t8 = orientation === C.AxisOrientation_3, t9 = orientation === C.AxisOrientation_2, t10 = !t9, t11 = orientation === C.AxisOrientation_0, t12 = _this._labelDefaultOffsetFromAxisPx, t13 = _this._rotateOnCollision, t14 = _this._labelCollisionOffsetFromAxisPx, t15 = _this._labelDefaultOffsetFromTickPx, t16 = _this._labelCollisionOffsetFromTickPx, t17 = _this._labelCollisionRotation, multiLineLabelOffset = 0, _i = 0; _i < labelElements.length; labelElements.length === t1 || (0, H.throwConcurrentModificationError)(labelElements), ++_i) { line = labelElements[_i]; if (!t10 || t11) { if (t9) { t18 = t6.get$top(axisBounds); y = t18 + (collision && t13 ? t14 : t12); } else { t18 = t6.get$bottom(axisBounds); t19 = C.JSNumber_methods.toInt$0(labelHeight); t20 = collision && t13 ? t14 : t12; y = t18 - (t19 - multiLineLabelOffset) - t20; } direction = _this._normalizeHorizontalAnchor$4(collision && t13 ? C.TickLabelAnchor_2 : t5, isRtl, isFirst, isLast); J.set$textDirection$x(line, direction); switch (direction) { case C.TextDirection_10: x = C.JSNumber_methods.toInt$0(locationPx + (collision && t13 ? t16 : t15) + 0); break; case C.TextDirection_00: x = C.JSNumber_methods.toInt$0(locationPx - (collision && t13 ? t16 : t15) - 0); break; case C.TextDirection_2: default: x = C.JSNumber_methods.toInt$0(locationPx - 0); break; } } else { if (t8) if (t7) { t18 = t6.get$right(axisBounds); x = t18 - (collision && t13 ? t14 : t12); J.set$textDirection$x(line, C.TextDirection_10); } else { x = t6.get$left(axisBounds); J.set$textDirection$x(line, C.TextDirection_00); } else if (t7) { t18 = t6.get$left(axisBounds); x = t18 + (collision && t13 ? t14 : t12); J.set$textDirection$x(line, C.TextDirection_00); } else { x = t6.get$right(axisBounds); J.set$textDirection$x(line, C.TextDirection_10); } switch (_this.normalizeVerticalAnchor$3(collision && t13 ? C.TickLabelAnchor_2 : t5, isFirst, isLast)) { case C._PixelVerticalDirection_0: t18 = collision && t13 ? t16 : t15; y = C.JSNumber_methods.toInt$0(locationPx - (labelHeight - multiLineLabelOffset) - t18 - 0); break; case C._PixelVerticalDirection_2: y = C.JSNumber_methods.toInt$0(locationPx + (collision && t13 ? t16 : t15) + 0); break; case C._PixelVerticalDirection_1: default: y = C.JSNumber_methods.toInt$0(t4 + 0); break; } } offsetY = y + multiLineLabelOffset; t18 = (collision && t13 ? t17 : t3) * 0.017453292519943295; textDirection = line._text_element$_textDirection; if (!line._painterReady) line._refreshPainter$0(); measurement = line.__TextElement__measurement; if (measurement === $) measurement = H.throwExpression(H.LateError$fieldNI(_s12_)); if (t18 !== 0) { if (textDirection === C.TextDirection_10) offsetY += C.JSNumber_methods.toInt$0(measurement.horizontalSliceWidth); if (!line._painterReady) line._refreshPainter$0(); t19 = line.__TextElement__textPainter; t19 = (t19 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_0)) : t19)._text_painter$_paragraph; t19 = t19.get$height(t19); t19.toString; t19 = C.JSNumber_methods.ceil$0(Math.ceil(t19) * 0.1); t2.save$0(0); t2.translate$2(0, x - t19, offsetY); t2.rotate$1(0, t18); if (!line._painterReady) line._refreshPainter$0(); t18 = line.__TextElement__textPainter; t18 = (t18 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_0)) : t18)._text_painter$_paragraph; t18.toString; t2.drawParagraph$2(0, t18, new P.Offset(0, 0)); t2.restore$0(0); } else { offsetX = textDirection === C.TextDirection_10 ? x - C.JSNumber_methods.toInt$0(measurement.horizontalSliceWidth) : x; if (textDirection === C.TextDirection_2) offsetX -= C.JSNumber_methods.ceil$0(measurement.horizontalSliceWidth / 2); if (!line._painterReady) line._refreshPainter$0(); t18 = line.__TextElement__textPainter; t18 = (t18 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_0)) : t18)._text_painter$_paragraph; t18 = t18.get$height(t18); t18.toString; t18 = C.JSNumber_methods.ceil$0(Math.ceil(t18) * 0.1); if (!line._painterReady) line._refreshPainter$0(); t19 = line.__TextElement__textPainter; if (t19 === $) t19 = H.throwExpression(H.LateError$fieldNI(_s12_0)); t19.toString; offsetX.toString; t19 = t19._text_painter$_paragraph; t19.toString; t2.drawParagraph$2(0, t19, new P.Offset(offsetX, offsetY - t18)); } if (!line._painterReady) line._refreshPainter$0(); t18 = line.__TextElement__measurement; multiLineLabelOffset += 2 + C.JSNumber_methods.round$0((t18 === $ ? H.throwExpression(H.LateError$fieldNI(_s12_)) : t18).verticalSliceWidth); } }, _normalizeHorizontalAnchor$4: function(anchor, isRtl, isFirst, isLast) { switch (anchor) { case C.TickLabelAnchor_0: return isRtl ? C.TextDirection_00 : C.TextDirection_10; case C.TickLabelAnchor_2: return isRtl ? C.TextDirection_10 : C.TextDirection_00; case C.TickLabelAnchor_3: if (isFirst) return C.TextDirection_00; if (isLast) return C.TextDirection_10; return C.TextDirection_2; case C.TickLabelAnchor_1: default: return C.TextDirection_2; } }, normalizeVerticalAnchor$3: function(anchor, isFirst, isLast) { switch (anchor) { case C.TickLabelAnchor_0: return C._PixelVerticalDirection_2; case C.TickLabelAnchor_2: return C._PixelVerticalDirection_0; case C.TickLabelAnchor_3: if (isFirst) return C._PixelVerticalDirection_0; if (isLast) return C._PixelVerticalDirection_2; return C._PixelVerticalDirection_1; case C.TickLabelAnchor_1: default: return C._PixelVerticalDirection_1; } }, calculateWidthForRotatedLabel$3: function(rotation, labelHeight, labelLength) { var rotationRadian; if (rotation === 0) return labelLength; rotationRadian = rotation * 0.017453292519943295; return (labelLength + labelHeight / 2 * Math.tan(rotationRadian)) * Math.cos(rotationRadian); }, calculateHeightForRotatedLabel$3: function(rotation, labelHeight, labelLength) { var rotationRadian; if (rotation === 0) return labelHeight; rotationRadian = rotation * 0.017453292519943295; return Math.max(labelHeight, (labelLength + labelHeight / 2 * Math.tan(rotationRadian)) * Math.cos(1.5707963267948966 - Math.abs(rotationRadian))); }, splitLabel$1: function(wholeLabel) { var t1 = type$.MappedListIterable_String_TextElement; return P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(wholeLabel.text.split("\n"), type$.JSArray_String), new R.BaseTickDrawStrategy_splitLabel_closure(this, wholeLabel), t1), true, t1._eval$1("ListIterable.E")); }, getLabelWidth$1: function(labelElements) { return new H.MappedListIterable(labelElements, new R.BaseTickDrawStrategy_getLabelWidth_closure(), H._arrayInstanceType(labelElements)._eval$1("MappedListIterable<1,double>")).reduce$1(0, C.CONSTANT0); }, getLabelHeight$1: function(labelElements) { var textHeight, numLines; if (labelElements.length === 0) return 0; textHeight = C.JSArray_methods.get$first(labelElements).get$measurement().verticalSliceWidth; numLines = labelElements.length; return textHeight * numLines + 2 * (numLines - 1); } }; R.BaseTickDrawStrategy_collides_closure.prototype = { call$2: function(a, b) { var t2, t1 = a.locationPx; t1.toString; t2 = b.locationPx; t2.toString; return C.JSNumber_methods.compareTo$1(t1, t2); }, $signature: function() { return H._instanceType(this.$this)._eval$1("int(Tick<1>,Tick<1>)"); } }; R.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure.prototype = { call$2: function(prevMax, tick) { var t1 = this.$this, labelElements = t1.splitLabel$1(tick.textElement), t2 = this.collision, t3 = t2 && t1._rotateOnCollision ? t1._labelCollisionRotation : t1._labelDefaultRotation; t3 = t1.calculateWidthForRotatedLabel$3(t3, t1.getLabelHeight$1(labelElements), t1.getLabelWidth$1(labelElements)); t1 = t2 && t1._rotateOnCollision ? t1._labelCollisionOffsetFromAxisPx : t1._labelDefaultOffsetFromAxisPx; return Math.max(H.checkNum(prevMax), t3 + t1); }, $signature: function() { return H._instanceType(this.$this)._eval$1("double(double,Tick<1>)"); } }; R.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure.prototype = { call$2: function(prevMax, tick) { var t1 = this.$this, labelElements = t1.splitLabel$1(tick.textElement), t2 = this.collision && t1._rotateOnCollision ? t1._labelCollisionRotation : t1._labelDefaultRotation; t1 = t1.calculateHeightForRotatedLabel$3(t2, t1.getLabelHeight$1(labelElements), t1.getLabelWidth$1(labelElements)); return Math.max(H.checkNum(prevMax), t1); }, $signature: function() { return H._instanceType(this.$this)._eval$1("double(double,Tick<1>)"); } }; R.BaseTickDrawStrategy_splitLabel_closure.prototype = { call$1: function(line) { var t1 = this.$this.graphicsFactory.createTextElement$1(J.trim$0$s(line)); t1.set$textStyle(0, this.wholeLabel._text_element$_textStyle); return t1; }, $signature: 776 }; R.BaseTickDrawStrategy_getLabelWidth_closure.prototype = { call$1: function(line) { return line.get$measurement().horizontalSliceWidth; }, $signature: 779 }; R._PixelVerticalDirection.prototype = { toString$0: function(_) { return this._base_tick_draw_strategy$_name; } }; L.GridlineRendererSpec.prototype = { createDrawStrategy$2: function(context, graphicsFactory) { var t4, t5, t6, _this = this, t1 = _this.lineStyle, t2 = _this.labelRotation, t3 = _this.$ti; $.$get$StyleFactory__styleFactory().toString; graphicsFactory.toString; t4 = new X.LineStyle(); t5 = t1 == null ? null : t1.color; t4.color = t5 == null ? new K.Color0(224, 224, 224, 255, null, null) : t5; t4.strokeWidth = 1; t5 = graphicsFactory.createTextPaint$0(); t6 = t2 == null ? 0 : t2; t4 = new L.GridlineTickDrawStrategy(0, t4, context, graphicsFactory, new X.LineStyle(), t5, C.TickLabelJustification_0, C.TickLabelAnchor_1, 5, 5, 5, 5, t6, 0, false, 50, t3._eval$1("GridlineTickDrawStrategy<1>")); t4.BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx(context, graphicsFactory, t1, _this.labelAnchor, _this.labelCollisionOffsetFromAxisPx, _this.labelCollisionOffsetFromTickPx, _this.labelCollisionRotation, _this.labelJustification, _this.labelOffsetFromAxisPx, _this.labelOffsetFromTickPx, t2, _this.labelStyle, _this.minimumPaddingBetweenLabelsPx, t3._precomputed1); return t4; }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof L.GridlineRendererSpec && this.super$SmallTickRendererSpec$$eq(0, other); else t1 = true; return t1; } }; L.GridlineTickDrawStrategy.prototype = { draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation: function(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var t2, lineStart, lineEnd, t3, t4, _this = this, t1 = tick.locationPx; t1.toString; switch (orientation) { case C.AxisOrientation_0: t2 = type$.Point_num; lineStart = new P.Point(t1, J.get$bottom$x(axisBounds) - _this.tickLength, t2); lineEnd = new P.Point(t1, J.get$bottom$x(drawAreaBounds), t2); break; case C.AxisOrientation_2: t2 = type$.Point_num; lineStart = new P.Point(t1, J.get$top$x(drawAreaBounds) + _this.tickLength, t2); lineEnd = new P.Point(t1, J.get$top$x(axisBounds), t2); break; case C.AxisOrientation_1: if ((collision && _this._rotateOnCollision ? C.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) !== C.TickLabelAnchor_2) t2 = (collision && _this._rotateOnCollision ? C.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) === C.TickLabelAnchor_0; else t2 = true; t3 = J.getInterceptor$x(axisBounds); t4 = type$.Point_num; lineStart = t2 ? new P.Point(t3.get$right(axisBounds), t1, t4) : new P.Point(t3.get$left(axisBounds) + _this.tickLength, t1, t4); lineEnd = new P.Point(J.get$left$x(drawAreaBounds), t1, t4); break; case C.AxisOrientation_3: if ((collision && _this._rotateOnCollision ? C.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) !== C.TickLabelAnchor_2) t2 = (collision && _this._rotateOnCollision ? C.TickLabelAnchor_2 : _this._defaultTickLabelAnchor) === C.TickLabelAnchor_0; else t2 = true; t3 = J.getInterceptor$x(axisBounds); t4 = type$.Point_num; lineStart = t2 ? new P.Point(t3.get$left(axisBounds), t1, t4) : new P.Point(t3.get$right(axisBounds) - _this.tickLength, t1, t4); lineEnd = new P.Point(J.get$right$x(drawAreaBounds), t1, t4); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = H.setRuntimeTypeInfo([lineStart, lineEnd], type$.JSArray_Point_num); t2 = _this.lineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); _this.drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation); } }; Y.NoneDrawStrategy.prototype = { updateTickWidth$5$collision: function(ticks, maxWidth, maxHeight, orientation, collision) { }, collides$2: function(ticks, orientation) { return V.CollisionReport$(null, ticks, false, this.$ti._precomputed1); }, decorateTicks$1: function(ticks) { C.JSArray_methods.forEach$1(ticks, new Y.NoneDrawStrategy_decorateTicks_closure(this)); }, drawAxisLine$3: function(canvas, orientation, axisBounds) { var t1, start, end, t2, t3, t4; switch (orientation) { case C.AxisOrientation_0: t1 = J.getInterceptor$x(axisBounds); start = t1.get$bottomLeft(axisBounds); end = t1.get$bottomRight(axisBounds); break; case C.AxisOrientation_2: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topLeft(axisBounds); end = t1.get$topRight(axisBounds); break; case C.AxisOrientation_1: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topLeft(axisBounds); end = t1.get$bottomLeft(axisBounds); break; case C.AxisOrientation_3: t1 = J.getInterceptor$x(axisBounds); start = t1.get$topRight(axisBounds); end = t1.get$bottomRight(axisBounds); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = H.setRuntimeTypeInfo([start, end], type$.JSArray_Point_num); t2 = this.axisLineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); }, draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation: function(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { }, measureHorizontallyDrawnTicks$4$collision: function(ticks, maxWidth, maxHeight, collision) { return X.ViewMeasuredSizes$(0, 0); }, measureVerticallyDrawnTicks$4$collision: function(ticks, maxWidth, maxHeight, collision) { return X.ViewMeasuredSizes$(0, 0); } }; Y.NoneDrawStrategy_decorateTicks_closure.prototype = { call$1: function(tick) { var t1 = this.$this.noneTextStyle; tick.textElement.set$textStyle(0, t1); return t1; }, $signature: function() { return this.$this.$ti._eval$1("~(Tick<1>)"); } }; S.SmallTickRendererSpec.prototype = { createDrawStrategy$2: function(context, graphicsFactory) { var t5, t6, _this = this, t1 = _this.lineStyle, t2 = _this.labelRotation, t3 = H._instanceType(_this), t4 = $.$get$StyleFactory__styleFactory(); t4.toString; t4.toString; graphicsFactory.toString; t4 = new X.LineStyle(); t5 = t1 == null ? null : t1.color; t4.color = t5 == null ? C.Color_ePM : t5; t4.strokeWidth = 1; t5 = graphicsFactory.createTextPaint$0(); t6 = t2 == null ? 0 : t2; t4 = new S.SmallTickDrawStrategy(3, t4, context, graphicsFactory, new X.LineStyle(), t5, C.TickLabelJustification_0, C.TickLabelAnchor_1, 5, 5, 5, 5, t6, 0, false, 50, t3._eval$1("SmallTickDrawStrategy<1>")); t4.BaseTickDrawStrategy$13$axisLineStyleSpec$labelAnchor$labelCollisionOffsetFromAxisPx$labelCollisionOffsetFromTickPx$labelCollisionRotation$labelJustification$labelOffsetFromAxisPx$labelOffsetFromTickPx$labelRotation$labelStyleSpec$minimumPaddingBetweenLabelsPx(context, graphicsFactory, t1, _this.labelAnchor, _this.labelCollisionOffsetFromAxisPx, _this.labelCollisionOffsetFromTickPx, _this.labelCollisionRotation, _this.labelJustification, _this.labelOffsetFromAxisPx, _this.labelOffsetFromTickPx, t2, _this.labelStyle, _this.minimumPaddingBetweenLabelsPx, t3._precomputed1); return t4; }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof S.SmallTickRendererSpec) if (J.$eq$(this.lineStyle, other.lineStyle)) t1 = this.super$BaseRenderSpec$$eq(0, other); else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { var _this = this; return (J.get$hashCode$(_this.lineStyle) * 37 + C.JSNull_methods.get$hashCode(_this.tickLengthPx)) * 37 + R.BaseRenderSpec.prototype.get$hashCode.call(_this, _this); } }; S.SmallTickDrawStrategy.prototype = { draw$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation: function(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation) { var t2, t3, tickStart, tickEnd, tickPositions, t4, tickLength = this.tickLength, t1 = tick.locationPx; t1.toString; switch (orientation) { case C.AxisOrientation_0: t2 = J.getInterceptor$x(axisBounds); t3 = type$.Point_num; tickStart = new P.Point(t1, t2.get$bottom(axisBounds) - tickLength, t3); tickEnd = new P.Point(t1, t2.get$bottom(axisBounds), t3); break; case C.AxisOrientation_2: t2 = J.getInterceptor$x(axisBounds); t3 = type$.Point_num; tickStart = new P.Point(t1, t2.get$top(axisBounds), t3); tickEnd = new P.Point(t1, t2.get$top(axisBounds) + tickLength, t3); break; case C.AxisOrientation_1: t2 = J.getInterceptor$x(axisBounds); t3 = type$.Point_num; tickStart = new P.Point(t2.get$left(axisBounds), t1, t3); tickEnd = new P.Point(t2.get$left(axisBounds) + tickLength, t1, t3); break; case C.AxisOrientation_3: t2 = J.getInterceptor$x(axisBounds); t3 = type$.Point_num; tickStart = new P.Point(t2.get$right(axisBounds) - tickLength, t1, t3); tickEnd = new P.Point(t2.get$right(axisBounds), t1, t3); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); tickStart = null; tickEnd = null; } tickPositions = [tickStart, tickEnd]; t1 = H.setRuntimeTypeInfo([C.JSArray_methods.get$first(tickPositions), C.JSArray_methods.get$last(tickPositions)], type$.JSArray_Point_num); t2 = this.lineStyle; t3 = t2.dashPattern; t4 = t2.color; canvas.drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx(0, t3, t4, t1, t4, t2.strokeWidth); this.drawLabel$8$axisBounds$collision$drawAreaBounds$isFirst$isLast$orientation(canvas, tick, axisBounds, collision, drawAreaBounds, isFirst, isLast, orientation); } }; K.LinearScale.prototype = { copy$0: function(_) { var t3, _this = this, t1 = _this._domainInfo, t2 = new U.LinearScaleDomainInfo(1 / 0, -1 / 0, 1 / 0); t2._dataDomainStart = t1._dataDomainStart; t2._dataDomainEnd = t1._dataDomainEnd; t2._previouslyAddedDomain = t1._previouslyAddedDomain; t2._minimumDetectedDomainStep = t1._minimumDetectedDomainStep; t1 = _this._viewportSettings; t3 = new O.LinearScaleViewportSettings(); t3.range = t1.range; t3.scalingFactor = t1.scalingFactor; t3.translatePx = t1.translatePx; t3._manualDomainExtent = t1._manualDomainExtent; t3._domainExtent = t1._domainExtent; return new K.LinearScale(t2, t3, new A.LinearScaleFunction(), _this.rangeBandConfig, _this.stepSizeConfig); }, addDomain$1: function(domainValue) { this._domainInfo.addDomainValue$1(domainValue); }, resetDomain$0: function() { this._scaleReady = false; var t1 = this._domainInfo; t1._previouslyAddedDomain = null; t1._dataDomainStart = 1 / 0; t1._dataDomainEnd = -1 / 0; t1._minimumDetectedDomainStep = 1 / 0; }, resetViewportSettings$0: function() { var t1 = this._viewportSettings; t1.scalingFactor = 1; t1.translatePx = 0; t1._domainExtent = null; t1._manualDomainExtent = false; }, compareDomainValueToViewport$1: function(domainValue) { var dataExtent = this._viewportSettings._domainExtent; return (dataExtent == null ? this._domainInfo.get$extent() : dataExtent).compareValue$1(domainValue); }, set$range: function(extent) { this._viewportSettings.range = extent; this._scaleReady = false; }, get$range: function() { return this._viewportSettings.range; }, $index: function(_, domainValue) { this._configureScale$0(); return this._scaleFunction.$index(0, domainValue); }, reverse$1: function(_, viewPixels) { var t1; this._configureScale$0(); t1 = this._scaleFunction; return (viewPixels - t1.rangeTranslate) / t1.scalingFactor - t1.domainTranslate; }, get$rangeBand: function() { this._configureScale$0(); return this._scaleFunction.rangeBandPixels; }, isRangeValueWithinViewport$1: function(rangeValue) { var t1 = this._viewportSettings.range, t2 = t1.start; t1 = t1.end; return K.withinBounds(rangeValue, Math.min(H.checkNum(t2), H.checkNum(t1)), Math.max(H.checkNum(t2), H.checkNum(t1))); }, _configureScale$0: function() { var t1, t2, t3, viewportDomainDiff, t4, t5, t6, reservedRangePixelShift, viewportStart, _this = this; if (_this._scaleReady) return; t1 = _this._viewportSettings; t2 = _this._domainInfo; if (t1._manualDomainExtent) { t3 = t1._domainExtent; viewportDomainDiff = t3 == null ? null : t3.max - t3.min; t3 = t2.get$extent(); if (t3.max - t3.min !== 0) { t3 = t2.get$extent(); viewportDomainDiff.toString; t1.scalingFactor = (t3.max - t3.min) / viewportDomainDiff; } else { t1.scalingFactor = 1; t3 = t1._domainExtent; t2.extendDomain$1(t3 == null ? null : t3.min); t3 = t1._domainExtent; t2.extendDomain$1(t3 == null ? null : t3.max); } } t3 = _this._scaleFunction; t4 = _this.rangeBandConfig; t5 = t1.range; t3._updateStepSizeAndScaleFactor$6(t1, t2, t5.end - t5.start, t3.getStepReservationPercent$2(t2.get$extent().min === t2._dataDomainStart, t2.get$extent().max === t2._dataDomainEnd), t4, _this.stepSizeConfig); t4 = t3.scalingFactor; if (t1._manualDomainExtent) t1.translatePx = -t4 * (t1._domainExtent.min - t2.get$extent().min); t4 = _this.rangeBandConfig; t5 = t2.get$extent(); if (t5.max - t5.min === 0) { t5 = t1.range; t6 = t5.start; t3.rangeTranslate = t6 + (t5.end - t6) / 2; } else { reservedRangePixelShift = t2.get$extent().min === t2._dataDomainStart ? t3.stepSizePixels / 2 : 0; t3.rangeTranslate = t1.range.start + t1.translatePx + reservedRangePixelShift; } t3.domainTranslate = -1 * t2.get$extent().min; t3.rangeBandPixels = t3._calculateRangeBandSize$1(t4); t3 = t3.scalingFactor; if (!t1._manualDomainExtent) { t4 = t2.get$extent(); t5 = t1.scalingFactor; viewportStart = -t1.translatePx / t3 + t2.get$extent().min; t1._domainExtent = new L.NumericExtents(viewportStart, viewportStart + (t4.max - t4.min) / t5); } _this._scaleReady = true; }, get$rangeBandConfig: function() { return this.rangeBandConfig; }, set$rangeBandConfig: function(val) { return this.rangeBandConfig = val; } }; U.LinearScaleDomainInfo.prototype = { reset$0: function(_) { var _this = this; _this._previouslyAddedDomain = null; _this._dataDomainStart = 1 / 0; _this._dataDomainEnd = -1 / 0; _this._minimumDetectedDomainStep = 1 / 0; }, addDomainValue$1: function(domainValue) { var t1, domainStep, _this = this; if (domainValue == null || !isFinite(domainValue)) return; _this.extendDomain$1(domainValue); t1 = _this._previouslyAddedDomain; if (t1 != null) { domainStep = Math.abs(domainValue - t1); if (domainStep !== 0 && domainStep < _this._minimumDetectedDomainStep) _this._minimumDetectedDomainStep = domainStep; } _this._previouslyAddedDomain = domainValue; }, extendDomain$1: function(domainValue) { var domainExtended, _this = this; if (domainValue == null || !isFinite(domainValue)) return false; if (domainValue < _this._dataDomainStart) { _this._dataDomainStart = domainValue; domainExtended = true; } else domainExtended = false; if (domainValue > _this._dataDomainEnd) { _this._dataDomainEnd = domainValue; domainExtended = true; } return domainExtended; }, get$extent: function() { var tmpDomainEnd, tmpDomainStart = this._dataDomainStart; tmpDomainStart = isFinite(tmpDomainStart) ? tmpDomainStart : 0; tmpDomainEnd = this._dataDomainEnd; tmpDomainEnd = isFinite(tmpDomainEnd) ? tmpDomainEnd : 1; return new L.NumericExtents(tmpDomainStart, tmpDomainEnd); } }; A.LinearScaleFunction.prototype = { $index: function(_, domainValue) { return (domainValue + this.domainTranslate) * this.scalingFactor + this.rangeTranslate; }, getStepReservationPercent$2: function(hasHalfStepAtStart, hasHalfStepAtEnd) { if (!hasHalfStepAtStart && !hasHalfStepAtEnd) return 0; if (hasHalfStepAtStart && hasHalfStepAtEnd) return 1; return 0.5; }, _calculateRangeBandSize$1: function(rangeBandConfig) { switch (rangeBandConfig.type) { case C.RangeBandType_2: return rangeBandConfig.size * this.scalingFactor; case C.RangeBandType_1: return rangeBandConfig.size; case C.RangeBandType_5: return this.stepSizePixels - rangeBandConfig.size; case C.RangeBandType_4: case C.RangeBandType_3: return this.stepSizePixels * rangeBandConfig.size; case C.RangeBandType_0: return 0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _updateStepSizeAndScaleFactor$6: function(viewportSettings, domainInfo, rangeDiff, reservedRangePercentOfStep, rangeBandConfig, stepSizeConfig) { var minimumDetectedDomainStep, totalDomainDiff, _this = this, t1 = domainInfo.get$extent(), domainDiff = t1.max - t1.min; if (rangeBandConfig.type !== C.RangeBandType_0) switch (C.StepSizeType_0) { case C.StepSizeType_0: minimumDetectedDomainStep = domainInfo._minimumDetectedDomainStep; if (isFinite(minimumDetectedDomainStep)) { t1 = viewportSettings.scalingFactor * (rangeDiff / (domainDiff + minimumDetectedDomainStep * reservedRangePercentOfStep)); _this.scalingFactor = t1; _this.stepSizePixels = minimumDetectedDomainStep * t1; } else { _this.stepSizePixels = Math.abs(rangeDiff); _this.scalingFactor = 1; } return; case C.StepSizeType_2: _this.stepSizePixels = 0; _this.scalingFactor = domainDiff === 0 ? 1 : viewportSettings.scalingFactor * (rangeDiff - 0 * reservedRangePercentOfStep) / domainDiff; return; case C.StepSizeType_1: totalDomainDiff = domainDiff + 0 * reservedRangePercentOfStep; t1 = totalDomainDiff === 0 ? 1 : viewportSettings.scalingFactor * (rangeDiff / totalDomainDiff); _this.scalingFactor = t1; _this.stepSizePixels = 0 * t1; return; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.stepSizePixels = 0; _this.scalingFactor = domainDiff === 0 ? 1 : viewportSettings.scalingFactor * rangeDiff / domainDiff; } }; O.LinearScaleViewportSettings.prototype = { reset$0: function(_) { var _this = this; _this.scalingFactor = 1; _this.translatePx = 0; _this._domainExtent = null; _this._manualDomainExtent = false; } }; L.NumericExtents.prototype = { compareValue$1: function(value) { if (value < this.min) return -1; if (value > this.max) return 1; return 0; }, $eq: function(_, other) { if (other == null) return false; return other instanceof L.NumericExtents && this.min === other.min && this.max === other.max; }, get$hashCode: function(_) { return C.JSNumber_methods.get$hashCode(this.min) + C.JSNumber_methods.get$hashCode(this.max) * 31; }, toString$0: function(_) { return "Extent(" + H.S(this.min) + ", " + H.S(this.max) + ")"; } }; A.NumericTickProvider.prototype = { get$_low: function() { var t1 = this.__NumericTickProvider__low; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_low")) : t1; }, get$_high: function() { var t1 = this.__NumericTickProvider__high; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_high")) : t1; }, getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled: function(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var t1, t2, axisUnitsHigh, axisUnitsLow, t3, absoluteMinTicks, tmpMaxNumMajorTicks, mutableScale, ticks, t4, t5, tickCount, viewportDomain, selectedTicksRange, foundPreferredTicks, stepInfo, firstTick, tickCount0, lastTick, range, tickValues, preferredTicks, _this = this; scale._configureScale$0(); t1 = scale._viewportSettings; t2 = t1._domainExtent; _this.__NumericTickProvider__low = t2.min; _this.__NumericTickProvider__high = t2.max; _this.__NumericTickProvider__low = _this.get$_low() > 0 ? 0 : _this.get$_low(); _this.__NumericTickProvider__high = _this.get$_high() < 0 ? 0 : _this.get$_high(); if (_this.get$_high() == _this.get$_low()) if (_this.get$_high() === 0) _this.__NumericTickProvider__high = 1; else if (_this.get$_high() > 0) { _this.__NumericTickProvider__high = _this.get$_high() * 1.05; _this.__NumericTickProvider__low = _this.get$_low() * 0.95; } else { _this.__NumericTickProvider__high = _this.get$_high() * 0.95; _this.__NumericTickProvider__low = _this.get$_low() * 1.05; } scale._configureScale$0(); t2 = t1._domainExtent; t2.toString; axisUnitsHigh = _this.get$_high(); axisUnitsLow = _this.get$_low(); t3 = t1.range; t3 = C.JSInt_methods.toInt$0(Math.abs(t3.end - t3.start)); absoluteMinTicks = axisUnitsLow < 0 && 0 < axisUnitsHigh ? 3 : 2; tmpMaxNumMajorTicks = Math.max(absoluteMinTicks, C.JSNumber_methods.floor$0(t3 / 25)); if (tmpMaxNumMajorTicks !== _this._maxTickCount || absoluteMinTicks !== _this._minTickCount) { _this._maxTickCount = tmpMaxNumMajorTicks; _this._minTickCount = absoluteMinTicks; } mutableScale = viewportExtensionEnabled ? K.LinearScale$_copy(scale) : null; ticks = H.setRuntimeTypeInfo([], type$.JSArray_Tick_num); t3 = _this._maxTickCount; t3.toString; t4 = mutableScale == null; t5 = !t4; tickCount = t3; viewportDomain = t2; selectedTicksRange = 17976931348623157e292; foundPreferredTicks = false; while (true) { t2 = _this._minTickCount; t2.toString; if (!(tickCount >= t2)) break; c$0: { stepInfo = _this._getStepsForTickCount$3(tickCount, axisUnitsHigh, axisUnitsLow); firstTick = stepInfo.tickStart; t2 = stepInfo.stepSize; tickCount0 = tickCount - 1; lastTick = firstTick + t2 * tickCount0; range = lastTick - firstTick; if (range < selectedTicksRange || !foundPreferredTicks) { tickValues = _this._getTickValues$2(stepInfo, tickCount); if (t5) { mutableScale._scaleReady = false; t3 = mutableScale._viewportSettings; t3._domainExtent = new L.NumericExtents(firstTick, lastTick); t3._manualDomainExtent = true; } preferredTicks = _this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(tickValues, context, formatter, formatterValueCache, graphicsFactory, t4 ? scale : mutableScale, t2, tickDrawStrategy); if (tickDrawStrategy.collides$2(preferredTicks, orientation).ticksCollide) { t2 = _this._minTickCount; t2.toString; t2 = tickCount > t2; } else t2 = false; if (t2) break c$0; if (t4) viewportDomain = null; else { mutableScale._configureScale$0(); t2 = mutableScale._viewportSettings._domainExtent; t2.toString; viewportDomain = t2; } if (viewportDomain == null) { scale._configureScale$0(); t2 = t1._domainExtent; t2.toString; viewportDomain = t2; } ticks = preferredTicks; selectedTicksRange = range; foundPreferredTicks = true; } } tickCount = tickCount0; } if (viewportExtensionEnabled) { scale._configureScale$0(); t2 = !t1._domainExtent.$eq(0, viewportDomain); } else t2 = false; if (t2) { scale._scaleReady = false; t1._domainExtent = viewportDomain; t1._manualDomainExtent = true; } return ticks; }, _getStepsForTickCount$3: function(tickCount, high, low) { var t1, positiveRegionCount, negativeRegionCount, t2, favorPositive, favoredNum, favoredRegionCount, favoredTensBase, _i, tmpStepSize, diffTensBase, tmpStepStart, regionCount = tickCount - 1; if (high >= 0 && low <= 0) { t1 = high > 0; positiveRegionCount = C.JSNumber_methods.ceil$0(regionCount * (t1 ? Math.min(1, high / (high - low)) : 0)); negativeRegionCount = regionCount - positiveRegionCount; if (negativeRegionCount === 0 && low < 0 && regionCount > 1) { --positiveRegionCount; ++negativeRegionCount; } t1 = t1 ? high / positiveRegionCount : 0; t2 = low < 0 ? low / negativeRegionCount : 0; favorPositive = Math.abs(t1) > Math.abs(t2); favoredNum = Math.abs(favorPositive ? high : low); favoredRegionCount = favorPositive ? positiveRegionCount : negativeRegionCount; favoredTensBase = Math.abs(A.NumericTickProvider__getEnclosingPowerOfTen(favoredNum)); for (_i = 0; _i < 30; ++_i) { t1 = C.List_e5Z[_i] * favoredTensBase; tmpStepSize = t1 > 100 ? C.JSNumber_methods.roundToDouble$0(t1) : C.JSNumber_methods.roundToDouble$0(t1 * 1000000000) / 1000000000; t1 = C.JSNumber_methods.round$0(tmpStepSize); if (t1 !== tmpStepSize) continue; if (tmpStepSize * favoredRegionCount >= favoredNum) return new A._TickStepInfo(tmpStepSize, negativeRegionCount > 0 ? -1 * tmpStepSize * negativeRegionCount : 0); } } else { diffTensBase = A.NumericTickProvider__getEnclosingPowerOfTen(high - low); for (_i = 0; _i < 30; ++_i) { t1 = C.List_e5Z[_i] * diffTensBase; tmpStepSize = t1 > 100 ? C.JSNumber_methods.roundToDouble$0(t1) : C.JSNumber_methods.roundToDouble$0(t1 * 1000000000) / 1000000000; t1 = C.JSNumber_methods.round$0(tmpStepSize); if (t1 !== tmpStepSize) continue; tmpStepStart = A.NumericTickProvider__getStepLessThan(low, tmpStepSize); if (tmpStepStart + tmpStepSize * regionCount >= high) return new A._TickStepInfo(tmpStepSize, tmpStepStart); } } low.toString; return new A._TickStepInfo(1, Math.floor(low)); }, _getTickValues$2: function(steps, tickCount) { var t2, t3, i, t4, t1 = H.setRuntimeTypeInfo([], type$.JSArray_double); for (t2 = steps.tickStart, t3 = steps.stepSize, i = 0; i < tickCount; ++i) { t4 = t2 + i * t3; t1.push(t4 > 100 ? C.JSNumber_methods.roundToDouble$0(t4) : C.JSNumber_methods.roundToDouble$0(t4 * 1000000000) / 1000000000); } return t1; } }; A._TickStepInfo.prototype = {}; A.OrdinalScaleDomainInfo.prototype = { add$1: function(_, domain) { var _this = this, t1 = _this._domainsToOrder; if (!t1.containsKey$1(0, domain)) { t1.$indexSet(0, domain, _this._ordinal_scale_domain_info$_index); ++_this._ordinal_scale_domain_info$_index; _this._domainList.push(domain); } }, get$isEmpty: function(_) { return this._ordinal_scale_domain_info$_index === 0; }, clear$0: function(_) { this._domainsToOrder.clear$0(0); C.JSArray_methods.set$length(this._domainList, 0); this._ordinal_scale_domain_info$_index = 0; } }; M.OrdinalTickProvider.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled: function(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { return this.createTicks$7$context$formatter$formatterValueCache$graphicsFactory$scale$tickDrawStrategy(scale._domain._domainList, context, formatter, formatterValueCache, graphicsFactory, scale, tickDrawStrategy); }, $eq: function(_, other) { if (other == null) return false; return other instanceof M.OrdinalTickProvider; }, get$hashCode: function(_) { return 31; } }; B.Scale.prototype = {}; B.MutableScale.prototype = {}; B.ScaleOutputExtent.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof B.ScaleOutputExtent && this.start == other.start && this.end == other.end; }, get$hashCode: function(_) { return J.get$hashCode$(this.start) + J.get$hashCode$(this.end) * 31; }, toString$0: function(_) { return "ScaleOutputRange(" + H.S(this.start) + ", " + H.S(this.end) + ")"; } }; B.RangeBandType.prototype = { toString$0: function(_) { return this._scale0$_name; } }; B.RangeBandConfig.prototype = {}; B.StepSizeType.prototype = { toString$0: function(_) { return this._scale0$_name; } }; B.StepSizeConfig.prototype = {}; B.Extents.prototype = {}; E.SimpleOrdinalScale.prototype = { get$_cachedStepSizePixels: function() { var t1 = this.__SimpleOrdinalScale__cachedStepSizePixels; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_cachedStepSizePixels")) : t1; }, get$_cachedRangeBandShift: function() { var t1 = this.__SimpleOrdinalScale__cachedRangeBandShift; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_cachedRangeBandShift")) : t1; }, get$rangeBand: function() { if (this._scaleChanged) this._updateScale$0(); var t1 = this.__SimpleOrdinalScale__cachedRangeBandSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_cachedRangeBandSize")) : t1; }, set$rangeBandConfig: function(barGroupWidthConfig) { var t1 = barGroupWidthConfig.type; if (t1 === C.RangeBandType_2 || t1 === C.RangeBandType_0) throw H.wrapException(P.ArgumentError$("barGroupWidthConfig must not be NONE or FIXED_DOMAIN")); this._rangeBandConfig = barGroupWidthConfig; this._scaleChanged = true; }, get$rangeBandConfig: function() { return this._rangeBandConfig; }, $index: function(_, domainValue) { var t1, _this = this; if (_this._scaleChanged) _this._updateScale$0(); t1 = _this._domain._domainsToOrder.$index(0, domainValue); if (t1 != null) return _this._viewportTranslatePx + _this._range.start + _this.get$_cachedRangeBandShift() + _this.get$_cachedStepSizePixels() * t1; return 0; }, reverse$1: function(_, pixelLocation) { var _this = this, t1 = _this._domain; return t1._domainList[Math.max(0, Math.min(C.JSNumber_methods.round$0((pixelLocation - _this._viewportTranslatePx - _this._range.start - _this.get$_cachedRangeBandShift()) / _this.get$_cachedStepSizePixels()), t1._ordinal_scale_domain_info$_index - 1))]; }, addDomain$1: function(domainValue) { this._domain.add$1(0, domainValue); this._scaleChanged = true; }, set$range: function(extent) { this._range = extent; this._scaleChanged = true; }, get$range: function() { return this._range; }, resetDomain$0: function() { this._domain.clear$0(0); this._scaleChanged = true; }, resetViewportSettings$0: function() { this._viewportScale = 1; this._viewportTranslatePx = 0; this._scaleChanged = true; }, get$rangeWidth: function() { var t1 = this._range; return C.JSInt_methods.toInt$0(Math.abs(t1.start - t1.end)); }, setViewport$2: function(viewportDataSize, startingDomain) { this._scaleChanged = true; this._viewportDataSize = viewportDataSize; this._viewportStartingDomain = startingDomain; }, isRangeValueWithinViewport$1: function(rangeValue) { var t1 = this._range, t2 = t1.start; t1 = t1.end; return K.withinBounds(rangeValue, Math.min(H.checkNum(t2), H.checkNum(t1)), Math.max(H.checkNum(t2), H.checkNum(t1))); }, compareDomainValueToViewport$1: function(domainValue) { var domainPx, t1, t2; if (this._domain._domainsToOrder.$index(0, domainValue) != null && true) { domainPx = this.$index(0, domainValue); t1 = this._range; t2 = t1.start; t1 = t1.end; if (domainPx < Math.min(H.checkNum(t2), H.checkNum(t1))) return -1; if (domainPx > Math.max(H.checkNum(t2), H.checkNum(t1))) return 1; return 0; } return -1; }, copy$0: function(_) { var t1, t2, t3, t4, _this = this; $.$get$StyleFactory__styleFactory().toString; t1 = _this._domain; t2 = P.HashMap_HashMap(null, null, null, type$.String, type$.int); t3 = H.setRuntimeTypeInfo([], type$.JSArray_String); t4 = new A.OrdinalScaleDomainInfo(t2, t3); t2.addAll$1(0, t1._domainsToOrder); t4._ordinal_scale_domain_info$_index = t1._ordinal_scale_domain_info$_index; C.JSArray_methods.addAll$1(t3, t1._domainList); t1 = _this._range; return new E.SimpleOrdinalScale(new B.StepSizeConfig(), t4, new B.ScaleOutputExtent(t1.start, t1.end), _this._viewportScale, _this._viewportTranslatePx, _this._rangeBandConfig); }, _updateScale$0: function() { this._recalculateScale$0(); }, _recalculateScale$0: function() { var rangeBandPixels, _this = this, t1 = _this._domain, stepSizePixels = t1._ordinal_scale_domain_info$_index === 0 ? 0 : _this._viewportScale * (_this.get$rangeWidth() / t1._ordinal_scale_domain_info$_index); t1 = _this._rangeBandConfig; switch (t1.type) { case C.RangeBandType_1: rangeBandPixels = t1.size; break; case C.RangeBandType_5: rangeBandPixels = Math.max(0, stepSizePixels - t1.size); break; case C.RangeBandType_4: case C.RangeBandType_3: rangeBandPixels = stepSizePixels * t1.size; break; case C.RangeBandType_2: case C.RangeBandType_0: throw H.wrapException(P.StateError$("RangeBandType must not be NONE or FIXED_DOMAIN")); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.__SimpleOrdinalScale__cachedStepSizePixels = stepSizePixels; _this.__SimpleOrdinalScale__cachedRangeBandSize = rangeBandPixels; _this.__SimpleOrdinalScale__cachedRangeBandShift = stepSizePixels / 2; t1 = _this._range; if (t1.start > t1.end) { _this.__SimpleOrdinalScale__cachedStepSizePixels = _this.get$_cachedStepSizePixels() * -1; _this.__SimpleOrdinalScale__cachedRangeBandShift = _this.get$_cachedRangeBandShift() * -1; } _this._scaleChanged = false; }, $isOrdinalScale: 1 }; T.AxisSpec.prototype = { configure$3: function(axis, context, graphicsFactory) { axis.forceDrawAxisLine = null; axis.autoViewport = true; axis.scale = axis._defaultScale; axis._tickFormatter = axis._defaultTickFormatter; axis.tickProvider = axis._defaultTickProvider; axis.tickDrawStrategy = this.renderSpec.createDrawStrategy$2(context, graphicsFactory); }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof T.AxisSpec) if (this.renderSpec.$eq(0, other.renderSpec)) t1 = true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.renderSpec; t1.get$hashCode(t1); C.JSNull_methods.get$hashCode(_this.tickProviderSpec); C.JSNull_methods.get$hashCode(_this.tickFormatterSpec); C.JSNull_methods.get$hashCode(_this.showAxisLine); return _this.get$hashCode(_this).$mul(0, 37).$add(0, C.JSNull_methods.get$hashCode(_this.scaleSpec)); } }; T.TextStyleSpec.prototype = { $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof T.TextStyleSpec) if (this.fontSize == other.fontSize) t1 = this.color.$eq(0, other.color) && true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { var t1 = this.color; return (((C.JSNull_methods.get$hashCode(null) * 37 + J.get$hashCode$(this.fontSize)) * 37 + C.JSNull_methods.get$hashCode(null)) * 37 + t1.get$hashCode(t1)) * 37 + C.JSNull_methods.get$hashCode(null); } }; T.LineStyleSpec.prototype = { $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof T.LineStyleSpec) if (this.color.$eq(0, other.color)) t1 = true; else t1 = false; else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { var t1 = this.color; return (t1.get$hashCode(t1) * 37 + C.JSNull_methods.get$hashCode(null)) * 37 + C.JSNull_methods.get$hashCode(null); } }; T.TickLabelAnchor.prototype = { toString$0: function(_) { return this._axis_spec$_name; } }; T.TickLabelJustification.prototype = { toString$0: function(_) { return "TickLabelJustification.inside"; } }; L.DateTimeAxisSpec.prototype = { configure$3: function(axis, context, graphicsFactory) { this.super$AxisSpec$configure(axis, context, graphicsFactory); }, createAxis$0: function() { return null; }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof L.DateTimeAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; return t1; }, get$hashCode: function(_) { return T.AxisSpec.prototype.get$hashCode.call(this, this).$mul(0, 37).$add(0, C.JSNull_methods.get$hashCode(null)); } }; T.NumericAxisSpec.prototype = { configure$3: function(axis, context, graphicsFactory) { this.super$AxisSpec$configure(axis, context, graphicsFactory); }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof T.NumericAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return T.AxisSpec.prototype.get$hashCode.call(_this, _this).$mul(0, 37).$add(0, C.JSNull_methods.get$hashCode(null)).$mul(0, 37).$add(0, T.AxisSpec.prototype.get$hashCode.call(_this, _this)); } }; Z.OrdinalAxisSpec.prototype = { configure$3: function(axis, context, graphicsFactory) { this.super$AxisSpec$configure(axis, context, graphicsFactory); }, createAxis$0: function() { return M.OrdinalAxis$(); }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) if (other instanceof Z.OrdinalAxisSpec) t1 = this.super$AxisSpec$$eq(0, other); else t1 = false; else t1 = true; return t1; }, get$hashCode: function(_) { return T.AxisSpec.prototype.get$hashCode.call(this, this).$mul(0, 37).$add(0, C.JSNull_methods.get$hashCode(null)); } }; S.Tick.prototype = { toString$0: function(_) { return "Tick(value: " + H.S(this.value) + ", locationPx: " + H.S(this.locationPx) + ", labelOffsetPx: " + H.S(this.labelOffsetPx) + ")"; }, get$value: function(receiver) { return this.value; } }; B.SimpleTickFormatterBase.prototype = { format$3$stepSize: function(tickValues, cache, stepSize) { var t1 = H._arrayInstanceType(tickValues)._eval$1("MappedListIterable<1,String>"); return P.List_List$of(new H.MappedListIterable(tickValues, new B.SimpleTickFormatterBase_format_closure(this, cache), t1), true, t1._eval$1("ListIterable.E")); } }; B.SimpleTickFormatterBase_format_closure.prototype = { call$1: function(value) { var t1 = this.cache, formattedString = t1.$index(0, value); if (formattedString == null) { formattedString = this.$this.formatValue$1(value); t1.$indexSet(0, value, formattedString); } return formattedString; }, $signature: function() { return H._instanceType(this.$this)._eval$1("String(SimpleTickFormatterBase.D)"); } }; B.OrdinalTickFormatter.prototype = { formatValue$1: function(value) { return value; }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.OrdinalTickFormatter; }, get$hashCode: function(_) { return 31; } }; B.NumericTickFormatter.prototype = { formatValue$1: function(value) { return this.formatter.call$1(value); }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.NumericTickFormatter && J.$eq$(this.formatter, other.formatter); }, get$hashCode: function(_) { return J.get$hashCode$(this.formatter); } }; B.NumericTickFormatter__getFormatter_closure.prototype = { call$1: function(value) { return value == null ? "" : this.numberFormat.format$1(value); }, $signature: 729 }; K.BaseTickProvider.prototype = { createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy: function(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, stepSize, tickDrawStrategy) { var i, value, t2, t3, t1 = H._instanceType(this), ticks = H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), labels = formatter.format$3$stepSize(domainValues, formatterValueCache, stepSize); for (t1 = t1._eval$1("Tick"), i = 0; i < domainValues.length; ++i) { value = domainValues[i]; t2 = new Q.TextElement(labels[i], graphicsFactory.textScaleFactor, C.TextDirection_00); t3 = new A.TextStyle0(); t3.fontFamily = graphicsFactory.defaultTextStyle.style.fontFamily; t2.set$textStyle(0, t3); t3 = scale.$index(0, value); ticks.push(new S.Tick(value, t2, t3, null, t1)); } tickDrawStrategy.decorateTicks$1(ticks); return ticks; }, createTicks$7$context$formatter$formatterValueCache$graphicsFactory$scale$tickDrawStrategy: function(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, tickDrawStrategy) { return this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, null, tickDrawStrategy); } }; O.AutoAdjustingDateTimeTickProvider.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled: function(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var _i, tickProvider, tickProviders = this._potentialTickProviders, lastTickProvider = C.JSArray_methods.get$last(tickProviders), viewport = scale.get$viewportDomain(); for (_i = 0; _i < 5; ++_i) { tickProvider = tickProviders[_i]; if (tickProvider == lastTickProvider || tickProvider.timeStepper.getStepCountBetween$2(viewport, 1) >= 3) return tickProvider.getTicks$7$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy); } return H.setRuntimeTypeInfo([], type$.JSArray_Tick_DateTime); } }; D.BaseTimeStepper.prototype = { getStepCountBetween$2: function(timeExtent, tickIncrement) { var t1, cnt, time = this.getStepTimeAfterInclusive$2(timeExtent.start, tickIncrement); for (t1 = timeExtent.end._value, cnt = 0; C.JSInt_methods.compareTo$1(time._value, t1) <= 0;) { ++cnt; time = this.getNextStepTime$2(time, tickIncrement); } return cnt; }, getStepTimeAfterInclusive$2: function(time, tickIncrement) { var boundedStart = this.getStepTimeBeforeInclusive$2(time, tickIncrement); if (boundedStart._value === time._value) return boundedStart; return this.getNextStepTime$2(boundedStart, tickIncrement); } }; D._TimeStepIteratorImpl.prototype = { moveNext$0: function() { var _this = this, t1 = _this._base_time_stepper$_current, t2 = _this.stepper, t3 = _this._tickIncrement; return C.JSInt_methods.compareTo$1((t1 == null ? _this._base_time_stepper$_current = t2.getStepTimeAfterInclusive$2(_this.extentStartTime, t3) : _this._base_time_stepper$_current = t2.getNextStepTime$2(t1, t3))._value, _this.extentEndTime._value) <= 0; }, get$current: function(_) { var t1 = this._base_time_stepper$_current; t1.toString; return t1; }, reset$1: function(_, tickIncrement) { this._tickIncrement = tickIncrement; this._base_time_stepper$_current = null; return this; } }; D._TimeStepIteratorFactoryImpl.prototype = { get$iterator: function(_) { return this._timeStepIterator; } }; F.DateTimeAxis.prototype = {}; F.DateTimeExtents.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof F.DateTimeExtents && this.start.$eq(0, other.start) && this.end.$eq(0, other.end); }, get$hashCode: function(_) { var t1 = this.start, t2 = this.end; return t1.get$hashCode(t1) + t2.get$hashCode(t2) * 37; } }; B.DateTimeScale.prototype = { $index: function(_, domainValue) { var t1 = this._linearScale, t2 = domainValue._value; t1._configureScale$0(); return t1._scaleFunction.$index(0, t2); }, reverse$1: function(_, pixelLocation) { return P.DateTime$fromMillisecondsSinceEpoch(C.JSNumber_methods.round$0(this._linearScale.reverse$1(0, pixelLocation)), false); }, resetDomain$0: function() { var t1 = this._linearScale; t1._scaleReady = false; t1._domainInfo.reset$0(0); }, set$rangeBandConfig: function(barGroupWidthConfig) { this._linearScale.rangeBandConfig = barGroupWidthConfig; }, set$range: function(extent) { var t1 = this._linearScale; t1._viewportSettings.range = extent; t1._scaleReady = false; }, addDomain$1: function(domainValue) { this._linearScale._domainInfo.addDomainValue$1(domainValue._value); }, resetViewportSettings$0: function() { this._linearScale._viewportSettings.reset$0(0); }, get$viewportDomain: function() { var extents, t1 = this._linearScale; t1._configureScale$0(); extents = t1._viewportSettings._domainExtent; return new F.DateTimeExtents(P.DateTime$fromMillisecondsSinceEpoch(C.JSNumber_methods.toInt$0(extents.min), false), P.DateTime$fromMillisecondsSinceEpoch(C.JSNumber_methods.toInt$0(extents.max), false)); }, copy$0: function(_) { return new B.DateTimeScale(this.dateTimeFactory, K.LinearScale$_copy(this._linearScale)); }, isRangeValueWithinViewport$1: function(rangeValue) { var t1 = this._linearScale._viewportSettings.range, t2 = t1.start; t1 = t1.end; return K.withinBounds(rangeValue, Math.min(H.checkNum(t2), H.checkNum(t1)), Math.max(H.checkNum(t2), H.checkNum(t1))); }, compareDomainValueToViewport$1: function(domainValue) { return this._linearScale.compareDomainValueToViewport$1(domainValue._value); }, get$rangeBand: function() { var t1 = this._linearScale; t1._configureScale$0(); return t1._scaleFunction.rangeBandPixels; }, get$rangeBandConfig: function() { return this._linearScale.rangeBandConfig; }, get$range: function() { return this._linearScale._viewportSettings.range; } }; F.DateTimeTickFormatter.prototype = { DateTimeTickFormatter$_internal$1: function(_timeFormatters) { var t1 = this._timeFormatters; if (t1.get$length(t1) === 1) return; F.DateTimeTickFormatter__checkPositiveAndSorted(t1.get$keys(t1)); }, format$3$stepSize: function(tickValues, cache, stepSize) { var t1, t2, t3, formatter, minTimeBetweenTicks, keys, formatterFound, tickValuesIt, tickValue, prevTickValue, tickLabels = H.setRuntimeTypeInfo([], type$.JSArray_String); if (tickValues.length === 0) return tickLabels; t1 = this._timeFormatters; t2 = t1.get$keys(t1); t2 = t1.$index(0, t2.get$first(t2)); t2.toString; t3 = t1.get$keys(t1); if (J.$eq$(t3.get$first(t3), -1)) formatter = t2; else { minTimeBetweenTicks = stepSize == null ? null : C.JSNumber_methods.toInt$0(stepSize); if (minTimeBetweenTicks == null) minTimeBetweenTicks = 0; t3 = t1.get$keys(t1); keys = t3.get$iterator(t3); formatter = t2; formatterFound = false; while (true) { if (!(keys.moveNext$0() && !formatterFound)) break; if (keys.get$current(keys) > minTimeBetweenTicks) formatterFound = true; else { t2 = t1.$index(0, keys.get$current(keys)); t2.toString; formatter = t2; } } } tickValuesIt = new J.ArrayIterator(tickValues, tickValues.length, H._arrayInstanceType(tickValues)._eval$1("ArrayIterator<1>")); tickValuesIt.moveNext$0(); tickValue = tickValuesIt.__interceptors$_current; t1 = formatter._transitionFormat; tickLabels.push(t1.format$1(tickValue)); for (prevTickValue = tickValue; tickValuesIt.moveNext$0(); prevTickValue = tickValue) { tickValue = tickValuesIt.__interceptors$_current; if (formatter.isTransition$2(tickValue, prevTickValue)) tickLabels.push(t1.format$1(tickValue)); else tickLabels.push(formatter.formatSimpleTick$1(tickValue)); } return tickLabels; } }; Q.DayTimeStepper.prototype = { get$typicalStepSizeMs: function() { return 86400000; }, get$allowedTickIncrements: function() { return this._day_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2: function(time, tickIncrement) { var dayRemainder = C.JSInt_methods.$mod(H.Primitives_getDay(time) - 1, tickIncrement), dayBefore = dayRemainder > 0 ? time.subtract$1(P.Duration$(0, 24 * dayRemainder - 1, 0, 0, 0, 0)) : time; return this.dateTimeFactory.createDateTime$3(H.Primitives_getYear(dayBefore), H.Primitives_getMonth(dayBefore), H.Primitives_getDay(dayBefore)); }, getNextStepTime$2: function(time, tickIncrement) { var stepAfter = time.add$1(0, P.Duration$(0, 24 * tickIncrement + 1, 0, 0, 0, 0)); return this.dateTimeFactory.createDateTime$3(H.Primitives_getYear(stepAfter), H.Primitives_getMonth(stepAfter), H.Primitives_getDay(stepAfter)); } }; B.HourTickFormatter.prototype = { formatSimpleTick$1: function(date) { var t1; date.toString; if (H.Primitives_getHours(date) === 12) { t1 = this.__HourTickFormatter__noonFormat; t1 = (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_noonFormat")) : t1).format$1(date); } else t1 = this.super$TimeTickFormatterImpl$formatSimpleTick(date); return t1; } }; F.HourTimeStepper.prototype = { get$typicalStepSizeMs: function() { return 3600000; }, get$allowedTickIncrements: function() { return this._hour_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2: function(time, tickIncrement) { var t1 = this.dateTimeFactory, nextDay = t1.createDateTime$3(H.Primitives_getYear(time), H.Primitives_getMonth(time), H.Primitives_getDay(time)).add$1(0, P.Duration$(0, 25, 0, 0, 0, 0)), hoursRemainder = C.JSInt_methods.$mod(C.JSNumber_methods.ceil$0((t1.createDateTime$3(H.Primitives_getYear(nextDay), H.Primitives_getMonth(nextDay), H.Primitives_getDay(nextDay))._value - time._value) / 3600000), tickIncrement), rewindHours = hoursRemainder === 0 ? 0 : tickIncrement - hoursRemainder; return t1.createDateTime$4(H.Primitives_getYear(time), H.Primitives_getMonth(time), H.Primitives_getDay(time), H.Primitives_getHours(time) - rewindHours); }, getNextStepTime$2: function(time, tickIncrement) { return time.add$1(0, P.Duration$(0, tickIncrement, 0, 0, 0, 0)); } }; B.MinuteTimeStepper.prototype = { get$typicalStepSizeMs: function() { return 60000; }, get$allowedTickIncrements: function() { return this._allowedTickIncrements; }, getStepTimeBeforeInclusive$2: function(time, tickIncrement) { var t1 = time._value, minRemainder = C.JSInt_methods.$mod(C.JSNumber_methods.ceil$0((t1 + (60 - H.Primitives_getMinutes(time)) * 60000 - t1) / 60000), tickIncrement); return P.DateTime$fromMillisecondsSinceEpoch(t1 - (minRemainder === 0 ? 0 : tickIncrement - minRemainder) * 60000, false); }, getNextStepTime$2: function(time, tickIncrement) { return time.add$1(0, P.Duration$(0, 0, 0, 0, tickIncrement, 0)); } }; V.MonthTimeStepper.prototype = { get$typicalStepSizeMs: function() { return 2592000000; }, get$allowedTickIncrements: function() { return this._month_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2: function(time, tickIncrement) { var monthRemainder = C.JSInt_methods.$mod(H.Primitives_getMonth(time), tickIncrement), newMonth = C.JSInt_methods.$mod(H.Primitives_getMonth(time) - monthRemainder, 12); if (H.Primitives_getMonth(time) === 12 && newMonth === 0) newMonth = 12; return this.dateTimeFactory.createDateTime$2(H.Primitives_getYear(time) - C.JSNumber_methods.floor$0(monthRemainder / 12), newMonth); }, getNextStepTime$2: function(time, tickIncrement) { var incrementedMonth, newMonth; time.toString; incrementedMonth = H.Primitives_getMonth(time) + tickIncrement; newMonth = C.JSInt_methods.$mod(incrementedMonth, 12); return this.dateTimeFactory.createDateTime$2(H.Primitives_getYear(time) + C.JSNumber_methods.floor$0(incrementedMonth / 12), newMonth); } }; N.TimeRangeTickProvider.prototype = {}; L.TimeRangeTickProviderImpl.prototype = { getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled: function(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, viewportExtensionEnabled) { var _currentTicks_get, _currentTicks_set, tickValues, t1, t2, t3, timeStepIt, allowedTickIncrements, _i, tickIncrement, _box_0 = {}; _box_0._currentTicks = $; _currentTicks_get = new L.TimeRangeTickProviderImpl_getTicks__currentTicks_get(_box_0); _currentTicks_set = new L.TimeRangeTickProviderImpl_getTicks__currentTicks_set(_box_0); tickValues = H.setRuntimeTypeInfo([], type$.JSArray_DateTime); t1 = this.timeStepper; t2 = scale.get$viewportDomain(); t3 = t1._stepsIterable; if (t3 == null || !t3.timeExtent.$eq(0, t2)) { t3 = new D._TimeStepIteratorImpl(t2.start, t2.end, t1); t3.reset$1(0, 1); t1._stepsIterable = new D._TimeStepIteratorFactoryImpl(t2, t3); } timeStepIt = t1._stepsIterable._timeStepIterator; allowedTickIncrements = t1.get$allowedTickIncrements(); for (t2 = allowedTickIncrements.length, _i = 0; _i < allowedTickIncrements.length; allowedTickIncrements.length === t2 || (0, H.throwConcurrentModificationError)(allowedTickIncrements), ++_i) { tickIncrement = allowedTickIncrements[_i]; C.JSArray_methods.set$length(tickValues, 0); timeStepIt._tickIncrement = tickIncrement; timeStepIt._base_time_stepper$_current = null; for (; timeStepIt.moveNext$0();) { t3 = timeStepIt._base_time_stepper$_current; t3.toString; tickValues.push(t3); } _currentTicks_set.call$1(this.createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(tickValues, context, formatter, formatterValueCache, graphicsFactory, scale, t1.get$typicalStepSizeMs() * tickIncrement, tickDrawStrategy)); if (!tickDrawStrategy.collides$2(_currentTicks_get.call$0(), orientation).ticksCollide) return _currentTicks_get.call$0(); } return _currentTicks_get.call$0(); }, getTicks$7$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy: function(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy) { return this.getTicks$8$context$formatter$formatterValueCache$graphicsFactory$orientation$scale$tickDrawStrategy$viewportExtensionEnabled(context, formatter, formatterValueCache, graphicsFactory, orientation, scale, tickDrawStrategy, false); } }; L.TimeRangeTickProviderImpl_getTicks__currentTicks_set.prototype = { call$1: function(t1) { return this._box_0._currentTicks = t1; }, $signature: 893 }; L.TimeRangeTickProviderImpl_getTicks__currentTicks_get.prototype = { call$0: function() { var t1 = this._box_0._currentTicks; return t1 === $ ? H.throwExpression(H.LateError$localNI("currentTicks")) : t1; }, $signature: 894 }; Y.TimeStepIteratorFactory.prototype = {}; R.TimeTickFormatterImpl.prototype = { formatSimpleTick$1: function(date) { return this._simpleFormat.format$1(date); }, isTransition$2: function(tickValue, prevTickValue) { var transitionField = this.transitionField; return this.getCalendarField$2(prevTickValue, transitionField) !== this.getCalendarField$2(tickValue, transitionField); }, getCalendarField$2: function(dateTime, field) { switch (field) { case C.CalendarField_0: dateTime.toString; return H.Primitives_getYear(dateTime); case C.CalendarField_1: dateTime.toString; return H.Primitives_getMonth(dateTime); case C.CalendarField_2: dateTime.toString; return H.Primitives_getDay(dateTime); case C.CalendarField_3: dateTime.toString; return H.Primitives_getHours(dateTime); case C.CalendarField_4: dateTime.toString; return H.Primitives_getMinutes(dateTime); case C.CalendarField_5: dateTime.toString; return H.Primitives_getSeconds(dateTime); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $isTimeTickFormatter: 1 }; R.CalendarField.prototype = { toString$0: function(_) { return this._time_tick_formatter_impl$_name; } }; N.YearTimeStepper.prototype = { get$typicalStepSizeMs: function() { return 31536e6; }, get$allowedTickIncrements: function() { return this._year_time_stepper$_allowedTickIncrements; }, getStepTimeBeforeInclusive$2: function(time, tickIncrement) { return this.dateTimeFactory.createDateTime$1(H.Primitives_getYear(time) - C.JSInt_methods.$mod(H.Primitives_getYear(time), tickIncrement)); }, getNextStepTime$2: function(time, tickIncrement) { time.toString; return this.dateTimeFactory.createDateTime$1(H.Primitives_getYear(time) + tickIncrement); } }; L.OrdinalCartesianChart.prototype = { initDomainAxis$0: function() { var t2, t3, t4, _this = this, _null = null, t1 = _this._domainAxis; t1.toString; t2 = S.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, type$.String); t3 = _this.get$context(_this); t4 = _this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); } }; L.CartesianChart.prototype = { init$2: function(context, graphicsFactory) { var t1, t2, _this = this, _null = null; _this.super$BaseChart$init(context, graphicsFactory); t1 = _this._primaryMeasureAxis; t1.context = context; t2 = type$.num; t1.tickDrawStrategy = L.GridlineRendererSpec$(_null, _null, _null, t2).createDrawStrategy$2(context, graphicsFactory); t1 = _this._secondaryMeasureAxis; t1.context = context; t1.tickDrawStrategy = L.GridlineRendererSpec$(_null, _null, _null, t2).createDrawStrategy$2(context, graphicsFactory); _this._disjointMeasureAxes.forEach$1(0, new L.CartesianChart_init_closure(context, graphicsFactory)); }, createDomainAxisFromSpec$1: function(axisSpec) { return axisSpec.createAxis$0(); }, configurationChanged$0: function() { var t1, t2, t3, t4, _this = this, _null = null; if (_this._newDomainAxis != null) { t1 = _this._domainAxis; if (t1 != null) _this._layoutManager.removeView$1(t1); t1 = _this._newDomainAxis; _this._domainAxis = t1; t1.toString; t1.context = _this.get$context(_this); t1.layoutPaintOrder = 5; _this.initDomainAxis$0(); t1 = _this._domainAxis; t1.toString; _this.addView$1(t1); _this._newDomainAxis = null; } t1 = _this._newDomainAxisSpec; if (t1 != null) { _this._domainAxisSpec = t1; t2 = _this._domainAxis; t2.toString; t3 = _this.get$context(_this); t4 = _this.graphicsFactory; t4.toString; t1.configure$3(t2, t3, t4); _this._newDomainAxisSpec = null; } if (!J.$eq$(_this._primaryMeasureAxisSpec, _this._newPrimaryMeasureAxisSpec)) { _this._primaryMeasureAxisSpec = _this._newPrimaryMeasureAxisSpec; _this._layoutManager.removeView$1(_this._primaryMeasureAxis); t1 = _this._primaryMeasureAxisSpec == null ? _null : M.NumericAxis$(); if (t1 == null) t1 = M.NumericAxis$(); _this._primaryMeasureAxis = t1; t2 = L.GridlineRendererSpec$(_null, _null, _null, type$.num); t3 = _this.get$context(_this); t4 = _this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); t4 = _this._primaryMeasureAxisSpec; if (t4 != null) { t1 = _this._primaryMeasureAxis; t2 = _this.get$context(_this); t3 = _this.graphicsFactory; t3.toString; t4.configure$3(t1, t2, t3); } _this.addView$1(_this._primaryMeasureAxis); } }, makeSeries$1: function(series) { var t1, t2, axis, _this = this, s = _this.super$BaseChart$makeSeries(series); if (s.measureOffsetFn == null) s.measureOffsetFn = new L.CartesianChart_makeSeries_closure(); t1 = s._attrs._registry; t1.$indexSet(0, C.AttributeKey_OBU, _this._domainAxis); t2 = H._asStringQ(series.attributes._registry.$index(0, C.AttributeKey_Bwd)); if (t2 === "secondaryMeasureAxisId") axis = _this._secondaryMeasureAxis; else if (t2 === "primaryMeasureAxisId") axis = _this._primaryMeasureAxis; else axis = t2 != null && _this._disjointMeasureAxes.$index(0, t2) != null ? _this._disjointMeasureAxes.$index(0, t2) : null; t1.$indexSet(0, C.AttributeKey_kWM, axis == null ? _this._primaryMeasureAxis : axis); return s; }, makeDefaultRenderer$0: function() { var t1 = L.BarRenderer_BarRenderer(null, null, H._instanceType(this)._eval$1("CartesianChart.D")); t1.rendererId = "default"; return t1; }, preprocessSeries$1: function(seriesList) { var t1, _i, measureAxisId, t2, domainAxis, _this = this, rendererToSeriesList = _this.super$BaseChart$preprocessSeries(seriesList), reverseAxisDirection = _this._useSecondaryMeasureAxis = false; for (t1 = seriesList.length, _i = 0; _i < seriesList.length; seriesList.length === t1 || (0, H.throwConcurrentModificationError)(seriesList), ++_i) { measureAxisId = H._asStringQ(seriesList[_i]._attrs._registry.$index(0, C.AttributeKey_Bwd)); _this._usePrimaryMeasureAxis = _this._usePrimaryMeasureAxis || measureAxisId == null || measureAxisId === "primaryMeasureAxisId"; _this._useSecondaryMeasureAxis = _this._useSecondaryMeasureAxis || measureAxisId === "secondaryMeasureAxisId"; } t1 = _this._usePrimaryMeasureAxis; t2 = _this._primaryMeasureAxis; if (t1) _this.addView$1(t2); else _this._layoutManager.removeView$1(t2); t1 = _this._useSecondaryMeasureAxis; t2 = _this._secondaryMeasureAxis; if (t1) _this.addView$1(t2); else _this._layoutManager.removeView$1(t2); _this._disjointMeasureAxes.forEach$1(0, new L.CartesianChart_preprocessSeries_closure(_this)); domainAxis = _this._domainAxis; domainAxis.resetDomains$0(); _this._primaryMeasureAxis.resetDomains$0(); _this._secondaryMeasureAxis.resetDomains$0(); _this._disjointMeasureAxes.forEach$1(0, new L.CartesianChart_preprocessSeries_closure0()); if (_this.get$context(_this) != null) reverseAxisDirection = _this.get$context(_this).get$isRtl(); domainAxis.axisOrientation = C.AxisOrientation_2; domainAxis.reverseOutputRange = reverseAxisDirection; t1 = _this._primaryMeasureAxis; t1.axisOrientation = reverseAxisDirection ? C.AxisOrientation_1 : C.AxisOrientation_3; t2 = _this.flipVerticalAxisOutput; t1.reverseOutputRange = t2; t1 = _this._secondaryMeasureAxis; t1.axisOrientation = reverseAxisDirection ? C.AxisOrientation_3 : C.AxisOrientation_1; t1.reverseOutputRange = t2; _this._disjointMeasureAxes.forEach$1(0, new L.CartesianChart_preprocessSeries_closure1(_this, reverseAxisDirection)); rendererToSeriesList.forEach$1(0, new L.CartesianChart_preprocessSeries_closure2(_this)); return rendererToSeriesList; }, onSkipLayout$0: function() { var _this = this; _this._domainAxis.updateTicks$0(); if (_this._usePrimaryMeasureAxis) _this._primaryMeasureAxis.updateTicks$0(); if (_this._useSecondaryMeasureAxis) _this._secondaryMeasureAxis.updateTicks$0(); _this._disjointMeasureAxes.forEach$1(0, new L.CartesianChart_onSkipLayout_closure()); _this.super$BaseChart$onSkipLayout(); } }; L.CartesianChart_init_closure.prototype = { call$2: function(axisId, axis) { var t1 = this.context; axis.context = t1; axis.tickDrawStrategy = Y.NoneDrawStrategy$(t1, this.graphicsFactory, type$.num); }, $signature: 237 }; L.CartesianChart_makeSeries_closure.prototype = { call$1: function(_) { return 0; }, $signature: 897 }; L.CartesianChart_preprocessSeries_closure.prototype = { call$2: function(axisId, axis) { this.$this.addView$1(axis); }, $signature: 237 }; L.CartesianChart_preprocessSeries_closure0.prototype = { call$2: function(axisId, axis) { axis.resetDomains$0(); }, $signature: 237 }; L.CartesianChart_preprocessSeries_closure1.prototype = { call$2: function(axisId, axis) { axis.axisOrientation = this.reverseAxisDirection ? C.AxisOrientation_3 : C.AxisOrientation_1; axis.reverseOutputRange = this.$this.flipVerticalAxisOutput; }, $signature: 237 }; L.CartesianChart_preprocessSeries_closure2.prototype = { call$2: function(rendererId, seriesList) { var t1 = this.$this; t1.getSeriesRenderer$1(rendererId).configureDomainAxes$1(seriesList); t1.getSeriesRenderer$1(rendererId).configureMeasureAxes$1(seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(String,List>)"); } }; L.CartesianChart_onSkipLayout_closure.prototype = { call$2: function(axisId, axis) { axis.updateTicks$0(); }, $signature: 237 }; F.BaseCartesianRenderer.prototype = { get$chart: function() { var t1 = this.__BaseCartesianRenderer_chart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("chart")) : t1; }, onAttach$1: function(chart) { this.super$BaseSeriesRenderer$onAttach(chart); this.__BaseCartesianRenderer_chart = H._instanceType(this)._eval$1("CartesianChart<1>")._as(chart); }, configureDomainAxes$1: function(seriesList) { J.forEach$1$ax(seriesList, new F.BaseCartesianRenderer_configureDomainAxes_closure(this)); }, configureMeasureAxes$1: function(seriesList) { J.forEach$1$ax(seriesList, new F.BaseCartesianRenderer_configureMeasureAxes_closure(this)); }, addMeasureValuesFor$4: function(series, measureAxis, startIndex, endIndex) { var measureLowerBoundFn, measureUpperBoundFn, t2, t3, i, measure, measureOffset, t4, measureFn = series.measureFn, t1 = series.measureOffsetFn; t1.toString; measureLowerBoundFn = series.measureLowerBoundFn; measureUpperBoundFn = series.measureUpperBoundFn; for (t2 = measureLowerBoundFn != null, t3 = measureUpperBoundFn != null, i = startIndex; i <= endIndex; ++i) { measure = measureFn.call$1(i); measureOffset = t1.call$1(i); if (measure != null && measureOffset != null) { measureAxis.addDomainValue$1(measure + measureOffset); if (t2 && t3) { t4 = measureLowerBoundFn.call$1(i); measureAxis.addDomainValue$1((t4 == null ? 0 : t4) + measureOffset); t4 = measureUpperBoundFn.call$1(i); measureAxis.addDomainValue$1((t4 == null ? 0 : t4) + measureOffset); } } } }, findNearestViewportStart$3: function(domainAxis, domainFn, data) { var end, start, searchIndex, prevIndex, comparisonValue, t1 = domainFn.call$1(0); if (domainAxis.scale.compareDomainValueToViewport$1(t1) === 0) return 0; end = data.length - 1; for (start = 1; end >= start;) { searchIndex = C.JSNumber_methods.floor$0((end - start) / 2) + start; prevIndex = searchIndex - 1; t1 = domainFn.call$1(searchIndex); comparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); t1 = domainFn.call$1(prevIndex); t1 = domainAxis.scale.compareDomainValueToViewport$1(t1) === -1; if (t1 && comparisonValue === 0) return searchIndex; if (comparisonValue === 1 && t1) return prevIndex; if (comparisonValue === -1) start = searchIndex + 1; else end = prevIndex; } t1 = domainFn.call$1(data.length - 1); return domainAxis.scale.compareDomainValueToViewport$1(t1) === 1 ? data.length - 1 : 0; }, findNearestViewportEnd$3: function(domainAxis, domainFn, data) { var start, searchIndex, prevIndex, comparisonValue, prevComparisonValue, end = data.length - 1, t1 = domainFn.call$1(end); if (domainAxis.scale.compareDomainValueToViewport$1(t1) === 0) return end; --end; for (start = 1; end >= start;) { searchIndex = C.JSNumber_methods.floor$0((end - start) / 2) + start; prevIndex = searchIndex - 1; t1 = domainFn.call$1(searchIndex); comparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); t1 = domainFn.call$1(prevIndex); prevComparisonValue = domainAxis.scale.compareDomainValueToViewport$1(t1); if (prevComparisonValue === 0 && comparisonValue === 1) return prevIndex; t1 = comparisonValue === 1; if (t1 && prevComparisonValue === -1) return searchIndex; if (t1) end = prevIndex; else start = searchIndex + 1; } t1 = domainFn.call$1(data.length - 1); return domainAxis.scale.compareDomainValueToViewport$1(t1) === 1 ? data.length - 1 : 0; } }; F.BaseCartesianRenderer_configureDomainAxes_closure.prototype = { call$1: function(series) { var domainAxis, domainFn, domainLowerBoundFn, domainUpperBoundFn, t2, t3, i, t4, domainLowerBound, domainUpperBound, t1 = series.data; if (t1.length === 0) return; domainAxis = type$.nullable_Axis_Object._as(series._attrs._registry.$index(0, C.AttributeKey_OBU)); domainFn = series.domainFn; domainLowerBoundFn = series.domainLowerBoundFn; domainUpperBoundFn = series.domainUpperBoundFn; if (domainAxis == null) return; this.$this.get$chart().toString; for (t2 = domainLowerBoundFn != null, t3 = domainUpperBoundFn != null, i = 0; i < t1.length; ++i) { t4 = domainFn.call$1(i); t4.toString; domainAxis.addDomainValue$1(t4); if (t2 && t3) { domainLowerBound = domainLowerBoundFn.call$1(i); domainUpperBound = domainUpperBoundFn.call$1(i); if (domainLowerBound != null && domainUpperBound != null) { domainAxis.addDomainValue$1(domainLowerBound); domainAxis.addDomainValue$1(domainUpperBound); } } } }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; F.BaseCartesianRenderer_configureMeasureAxes_closure.prototype = { call$1: function(series) { var t2, t3, t4, domainAxis, domainFn, measureAxis, t1 = series.data; if (t1.length === 0) return; t2 = series._attrs._registry; t3 = type$.nullable_Axis_Object; t4 = this.$this; domainAxis = H._instanceType(t4)._eval$1("Axis<1>?")._as(t3._as(t2.$index(0, C.AttributeKey_OBU))); domainFn = series.domainFn; if (domainAxis == null) return; measureAxis = type$.nullable_Axis_num._as(t3._as(t2.$index(0, C.AttributeKey_kWM))); if (measureAxis == null) return; t4.addMeasureValuesFor$4(series, measureAxis, t4.findNearestViewportStart$3(domainAxis, domainFn, t1), t4.findNearestViewportEnd$3(domainAxis, domainFn, t1)); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; X.BaseChart0.prototype = { get$context: function(_) { var t1 = this.__BaseChart_context; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("context")) : t1; }, init$2: function(context, graphicsFactory) { var _this = this; _this.__BaseChart_context = context; if (_this.graphicsFactory !== graphicsFactory) { _this.graphicsFactory = graphicsFactory; C.JSArray_methods.forEach$1(_this._layoutManager._views, new X.BaseChart_init_closure(graphicsFactory)); } _this.configurationChanged$0(); }, getSelectionModel$1: function(type) { return this._selectionModels.putIfAbsent$2(0, type, new X.BaseChart_getSelectionModel_closure(this)); }, addSeriesRenderer$1: function(renderer) { var _this = this, rendererId = renderer.rendererId, t1 = _this._seriesRenderers, previousRenderer = t1.$index(0, rendererId); if (previousRenderer != null) _this._layoutManager.removeView$1(previousRenderer); _this.addView$1(renderer); renderer.onAttach$1(_this); t1.$indexSet(0, rendererId, renderer); }, getSeriesRenderer$1: function(rendererId) { var renderer = this._seriesRenderers.$index(0, rendererId); if (renderer == null) { renderer = this.makeDefaultRenderer$0(); renderer.rendererId = "default"; this.addSeriesRenderer$1(renderer); } return renderer; }, pointWithinRenderer$1: function(chartPosition) { return this._usingRenderers.any$1(0, new X.BaseChart_pointWithinRenderer_closure(this, chartPosition)); }, getNearestDatumDetailPerSeries$2: function(drawAreaPoint, selectAcrossAllDrawAreaComponents) { var _this = this, boundsOverride = _this._layoutManager.get$drawableLayoutAreaBounds(), details = H.setRuntimeTypeInfo([], H._instanceType(_this)._eval$1("JSArray>")); _this._usingRenderers.forEach$1(0, new X.BaseChart_getNearestDatumDetailPerSeries_closure(_this, details, drawAreaPoint, boundsOverride)); C.JSArray_methods.sort$1(details, new X.BaseChart_getNearestDatumDetailPerSeries_closure0(_this)); return details; }, getSelectedDatumDetails$1: function(selectionModelType) { var selectionModel, t1, t2, t3, _i, seriesDatum, t4, renderer, index, domainLowerBoundFn, domainUpperBoundFn, measureLowerBoundFn, measureUpperBoundFn, measureOffsetFn, rawMeasureLowerBoundFn, rawMeasureUpperBoundFn, colorFn, areaColorFn, fillColorFn, radiusPxFn, strokeWidthPxFn, domainValue, domainLowerBoundValue, domainUpperBoundValue, measureValue, measureLowerBoundValue, measureUpperBoundValue, measureOffsetValue, rawMeasureValue, rawMeasureLowerBoundValue, rawMeasureUpperBoundValue, color, fillColor, areaColor, radiusPx, t5, strokeWidthPx, _this = this, _null = null, details = H.setRuntimeTypeInfo([], H._instanceType(_this)._eval$1("JSArray>")); if (_this._currentSeriesList == null) return details; selectionModel = _this.getSelectionModel$1(selectionModelType); t1 = selectionModel._selectedDatum; if (t1.length === 0) return details; for (t1 = P.List_List$unmodifiable(t1, H._instanceType(selectionModel)._eval$1("SeriesDatum<1>")), t2 = t1.length, t3 = _this._seriesRenderers, _i = 0; _i < t2; ++_i) { seriesDatum = t1[_i]; t4 = seriesDatum.series; renderer = t3.$index(0, H._asStringQ(t4._attrs._registry.$index(0, C.AttributeKey_kKQ))); if (renderer == null) { renderer = _this.makeDefaultRenderer$0(); renderer.rendererId = "default"; _this.addSeriesRenderer$1(renderer); } index = seriesDatum.get$index(seriesDatum); domainLowerBoundFn = t4.domainLowerBoundFn; domainUpperBoundFn = t4.domainUpperBoundFn; measureLowerBoundFn = t4.measureLowerBoundFn; measureUpperBoundFn = t4.measureUpperBoundFn; measureOffsetFn = t4.measureOffsetFn; rawMeasureLowerBoundFn = t4.rawMeasureLowerBoundFn; rawMeasureUpperBoundFn = t4.rawMeasureUpperBoundFn; colorFn = t4.colorFn; areaColorFn = t4.areaColorFn; if (areaColorFn == null) areaColorFn = colorFn; fillColorFn = t4.fillColorFn; if (fillColorFn == null) fillColorFn = colorFn; radiusPxFn = t4.radiusPxFn; strokeWidthPxFn = t4.strokeWidthPxFn; domainValue = t4.domainFn.call$1(index); domainLowerBoundValue = domainLowerBoundFn == null ? _null : domainLowerBoundFn.call$1(index); domainUpperBoundValue = domainUpperBoundFn == null ? _null : domainUpperBoundFn.call$1(index); measureValue = t4.measureFn.call$1(index); measureLowerBoundValue = measureLowerBoundFn == null ? _null : measureLowerBoundFn.call$1(index); measureUpperBoundValue = measureUpperBoundFn == null ? _null : measureUpperBoundFn.call$1(index); measureOffsetValue = measureOffsetFn == null ? _null : measureOffsetFn.call$1(index); rawMeasureValue = t4.rawMeasureFn.call$1(index); rawMeasureLowerBoundValue = rawMeasureLowerBoundFn == null ? _null : rawMeasureLowerBoundFn.call$1(index); rawMeasureUpperBoundValue = rawMeasureUpperBoundFn == null ? _null : rawMeasureUpperBoundFn.call$1(index); color = colorFn.call$1(index); fillColor = fillColorFn.call$1(index); if (fillColor == null) fillColor = color; areaColor = areaColorFn.call$1(index); if (radiusPxFn == null) radiusPx = _null; else { t5 = radiusPxFn.call$1(index); radiusPx = t5 == null ? _null : t5; } if (radiusPx == null) radiusPx = _null; if (strokeWidthPxFn == null) strokeWidthPx = _null; else { t5 = strokeWidthPxFn.call$1(index); strokeWidthPx = t5 == null ? _null : t5; } if (strokeWidthPx == null) strokeWidthPx = _null; details.push(renderer.addPositionToDetailsForSeriesDatum$2(new L.DatumDetails(seriesDatum.datum, seriesDatum.get$index(seriesDatum), domainValue, domainLowerBoundValue, domainUpperBoundValue, measureValue, measureLowerBoundValue, measureUpperBoundValue, measureOffsetValue, rawMeasureValue, rawMeasureLowerBoundValue, rawMeasureUpperBoundValue, t4, color, fillColor, _null, areaColor, _null, _null, _null, _null, _null, _null, _null, _null, radiusPx, _null, strokeWidthPx, _null, _null, H._instanceType(renderer)._eval$1("DatumDetails<1>")), seriesDatum)); } return details; }, removeBehavior$1: function(behavior) { var role, t1, t2, wasAttached, _this = this; if (behavior == null) return false; role = behavior.get$role(behavior); t1 = _this._behaviorRoleMap; t2 = t1.$index(0, role); if (t2 === behavior) t1.remove$1(0, role); _this.unregisterTappable$1(behavior); wasAttached = C.JSArray_methods.remove$1(_this._behaviorStack, behavior); behavior.removeFrom$1(_this); return wasAttached; }, unregisterTappable$1: function(behavior) { var role = behavior.get$role(behavior), t1 = this._behaviorTappableMap, t2 = t1.$index(0, role); if (t2 === behavior) t1.remove$1(0, role); }, layout$2: function(_, width, height) { var t1, _this = this; if (_this._rendererToSeriesList != null) { _this._chartWidth = width; _this._chartHeight = height; _this._layoutManager.layout$2(0, width, height); t1 = _this._rendererToSeriesList; t1.toString; _this.fireOnAxisConfigured$0(); _this.super$BaseChart$onPostLayout(t1); } }, addView$1: function(view) { var t1 = this._layoutManager, t2 = t1._views; if (!C.JSArray_methods.contains$1(t2, view)) { view.set$graphicsFactory(this.graphicsFactory); t2.push(view); t1._viewsNeedPaintSort = t1._viewsNeedPositionSort = t1._drawAreaBoundsOutdated = true; } }, draw$1: function(seriesList) { var t1, t2, t3, processedSeriesList, _this = this, _box_0 = {}; for (t1 = _this._selectionModels, t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t2.toString; t3 = t2.$ti; t2.updateSelection$3$notifyListeners(H.setRuntimeTypeInfo([], t3._eval$1("JSArray>")), H.setRuntimeTypeInfo([], t3._eval$1("JSArray>")), false); } t1 = H._instanceType(_this)._eval$1("MutableSeries"); seriesList.toString; processedSeriesList = P.List_List$of(new H.MappedListIterable(seriesList, _this.get$makeSeries(), H._arrayInstanceType(seriesList)._eval$1("@<1>")._bind$1(t1)._eval$1("MappedListIterable<1,2>")), true, t1); _this.fireOnDraw$1(processedSeriesList); _box_0.seriesIndex = 0; C.JSArray_methods.forEach$1(processedSeriesList, new X.BaseChart_draw_closure(_box_0, _this)); _this.__BaseChart__originalSeriesList = _this._currentSeriesList = processedSeriesList; _this.drawInternal$3$skipAnimation$skipLayout(processedSeriesList, false, false); }, redraw$2$skipAnimation$skipLayout: function(skipAnimation, skipLayout) { var t1 = this.__BaseChart__originalSeriesList; this.drawInternal$3$skipAnimation$skipLayout(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_originalSeriesList")) : t1, skipAnimation, true); this.onSkipLayout$0(); }, drawInternal$3$skipAnimation$skipLayout: function(seriesList, skipAnimation, skipLayout) { var _this = this; seriesList = J.map$1$1$ax(seriesList, new X.BaseChart_drawInternal_closure(_this), H._instanceType(_this)._eval$1("MutableSeries")).toList$0(0); _this._animationsTemporarilyDisabled = skipAnimation; _this.configureSeries$1(seriesList); _this.fireOnPreprocess$1(seriesList); _this._rendererToSeriesList = _this.preprocessSeries$1(seriesList); _this.fireOnPostprocess$1(seriesList); _this._currentSeriesList = seriesList; }, makeSeries$1: function(series) { var t1, s = N.MutableSeries$(series, H._instanceType(this)._eval$1("BaseChart0.D")), rendererId = H._asStringQ(series.attributes._registry.$index(0, C.AttributeKey_kKQ)); if (rendererId == null) rendererId = "default"; t1 = s._attrs._registry; t1.$indexSet(0, C.AttributeKey_kKQ, rendererId); t1.$indexSet(0, C.AttributeKey_I4y, this.getSeriesRenderer$1(rendererId)); return s; }, configureSeries$1: function(seriesList) { var rendererToSeriesList = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, H._instanceType(this)._eval$1("List>")); C.JSArray_methods.forEach$1(seriesList, new X.BaseChart_configureSeries_closure(this, rendererToSeriesList)); rendererToSeriesList.forEach$1(0, new X.BaseChart_configureSeries_closure0(this)); }, preprocessSeries$1: function(seriesList) { var _this = this, t1 = type$.String, rendererToSeriesList = P.LinkedHashMap_LinkedHashMap$_empty(t1, H._instanceType(_this)._eval$1("List>")), unusedRenderers = _this._usingRenderers; _this._usingRenderers = P.LinkedHashSet_LinkedHashSet$_empty(t1); C.JSArray_methods.forEach$1(seriesList, new X.BaseChart_preprocessSeries_closure(_this, rendererToSeriesList, unusedRenderers)); unusedRenderers.forEach$1(0, new X.BaseChart_preprocessSeries_closure0(_this, rendererToSeriesList)); rendererToSeriesList.forEach$1(0, new X.BaseChart_preprocessSeries_closure1(_this)); return rendererToSeriesList; }, onSkipLayout$0: function() { var t1 = this._rendererToSeriesList; t1.toString; this.fireOnAxisConfigured$0(); this.super$BaseChart$onPostLayout(t1); }, onPostLayout$1: function(rendererToSeriesList) { var _this = this; rendererToSeriesList.forEach$1(0, new X.BaseChart_onPostLayout_closure(_this)); if (_this.get$animatingThisDraw()) { _this.animationPercent = 0; _this.get$context(_this).requestAnimation$1(_this.transition); } else { _this.animationPercent = 1; _this.get$context(_this).markNeedsPaint$0(); } _this._animationsTemporarilyDisabled = false; }, paint$1: function(canvas) { var _this = this; J.forEach$1$ax(_this._layoutManager.get$paintOrderedViews(), new X.BaseChart_paint_closure(_this, canvas)); _this.fireOnPostrender$1(canvas); if (_this.animationPercent === 1) _this.fireOnAnimationComplete$0(); }, get$animatingThisDraw: function() { var t1 = C.JSInt_methods._tdivFast$1(this.transition._duration, 1000) > 0 && !this._animationsTemporarilyDisabled; return t1; }, fireOnDraw$1: function(seriesList) { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnDraw_closure(this, seriesList)); }, fireOnPreprocess$1: function(seriesList) { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnPreprocess_closure(this, seriesList)); }, fireOnPostprocess$1: function(seriesList) { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnPostprocess_closure(this, seriesList)); }, fireOnAxisConfigured$0: function() { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnAxisConfigured_closure(this)); }, fireOnPostrender$1: function(canvas) { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnPostrender_closure(this, canvas)); }, fireOnAnimationComplete$0: function() { C.JSArray_methods.forEach$1(this._lifecycleListeners, new X.BaseChart_fireOnAnimationComplete_closure(this)); } }; X.BaseChart_init_closure.prototype = { call$1: function(view) { var t1 = this.graphicsFactory; view.set$graphicsFactory(t1); return t1; }, $signature: 132 }; X.BaseChart_getSelectionModel_closure.prototype = { call$0: function() { var t1 = H._instanceType(this.$this), t2 = t1._eval$1("JSArray<~(SelectionModel)>"); t2 = new D.MutableSelectionModel(H.setRuntimeTypeInfo([], t2), H.setRuntimeTypeInfo([], t2), H.setRuntimeTypeInfo([], t2), H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), t1._eval$1("MutableSelectionModel")); t2.SelectionModel$2$selectedData$selectedSeries(null, null, t1._eval$1("BaseChart0.D")); return t2; }, $signature: function() { return H._instanceType(this.$this)._eval$1("MutableSelectionModel()"); } }; X.BaseChart_pointWithinRenderer_closure.prototype = { call$1: function(rendererId) { var t1 = this.$this.getSeriesRenderer$1(rendererId)._drawAreaBounds; t1.toString; return J.containsPoint$1$x(t1, this.chartPosition); }, $signature: 73 }; X.BaseChart_getNearestDatumDetailPerSeries_closure.prototype = { call$1: function(rendererId) { var _this = this; C.JSArray_methods.addAll$1(_this.details, _this.$this.getSeriesRenderer$1(rendererId).getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints(_this.drawAreaPoint, true, _this.boundsOverride, false, false)); }, $signature: 88 }; X.BaseChart_getNearestDatumDetailPerSeries_closure0.prototype = { call$2: function(a, b) { var t2, domainDiff, t1 = a.domainDistance; t1.toString; t2 = b.domainDistance; t2.toString; domainDiff = C.JSNumber_methods.compareTo$1(t1, t2); if (domainDiff === 0) { t1 = a.measureDistance; t1.toString; t2 = b.measureDistance; t2.toString; return C.JSNumber_methods.compareTo$1(t1, t2); } return domainDiff; }, $signature: function() { return H._instanceType(this.$this)._eval$1("int(DatumDetails,DatumDetails)"); } }; X.BaseChart_draw_closure.prototype = { call$1: function(series) { return series.__MutableSeries_seriesIndex = this._box_0.seriesIndex++; }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; X.BaseChart_drawInternal_closure.prototype = { call$1: function(series) { var t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t1 = P.LinkedHashMap_LinkedHashMap$_empty(type$.TypedKey_nullable_Object, type$.nullable_Object), t2 = series.id, t3 = series.displayName, t4 = series.seriesCategory, t5 = series.seriesColor, t6 = series.__MutableSeries_seriesIndex; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("seriesIndex")); t7 = series.data; t8 = series.MutableSeries_keyFn; t9 = series.domainFn; t10 = series.domainFormatterFn; t11 = series.domainLowerBoundFn; t12 = series.domainUpperBoundFn; t13 = series.measureFn; t14 = series.measureFormatterFn; t15 = series.measureLowerBoundFn; t16 = series.measureUpperBoundFn; t17 = series.measureOffsetFn; t18 = series.rawMeasureFn; t19 = series.rawMeasureLowerBoundFn; t20 = series.rawMeasureUpperBoundFn; t21 = series.get$seriesMeasureTotal(); t22 = series.areaColorFn; t23 = series.colorFn; t24 = series.dashPatternFn; t25 = series.fillColorFn; t26 = series.fillPatternFn; t27 = series.patternColorFn; t28 = series.labelAccessorFn; t29 = series.MutableSeries_insideLabelStyleAccessorFn; t30 = series.MutableSeries_outsideLabelStyleAccessorFn; t31 = series.radiusPxFn; t32 = series.strokeWidthPxFn; t33 = series.measureAxis; t34 = series.domainAxis; t1.addAll$1(0, series._attrs._registry); return new N.MutableSeries(t2, t3, false, t4, t5, t6, t21, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t22, t23, t24, t25, t26, t27, t31, t32, t28, t29, t30, new F.SeriesAttributes(t1), t33, t34, H._instanceType(this.$this)._eval$1("MutableSeries")); }, $signature: function() { return H._instanceType(this.$this)._eval$1("MutableSeries(MutableSeries)"); } }; X.BaseChart_configureSeries_closure.prototype = { call$1: function(series) { J.add$1$ax(this.rendererToSeriesList.putIfAbsent$2(0, H._asStringQ(series._attrs._registry.$index(0, C.AttributeKey_kKQ)), new X.BaseChart_configureSeries__closure(this.$this)), series); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; X.BaseChart_configureSeries__closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], H._instanceType(this.$this)._eval$1("JSArray>")); }, $signature: function() { return H._instanceType(this.$this)._eval$1("List>()"); } }; X.BaseChart_configureSeries_closure0.prototype = { call$2: function(rendererId, seriesList) { this.$this.getSeriesRenderer$1(rendererId).configureSeries$1(seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(String?,List>)"); } }; X.BaseChart_preprocessSeries_closure.prototype = { call$1: function(series) { var t2, t1 = H._asStringQ(series._attrs._registry.$index(0, C.AttributeKey_kKQ)); t1.toString; t2 = this.$this; J.add$1$ax(this.rendererToSeriesList.putIfAbsent$2(0, t1, new X.BaseChart_preprocessSeries__closure(t2)), series); t2._usingRenderers.add$1(0, t1); this.unusedRenderers.remove$1(0, t1); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries)"); } }; X.BaseChart_preprocessSeries__closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], H._instanceType(this.$this)._eval$1("JSArray>")); }, $signature: function() { return H._instanceType(this.$this)._eval$1("List>()"); } }; X.BaseChart_preprocessSeries_closure0.prototype = { call$1: function(rendererId) { var t1 = H.setRuntimeTypeInfo([], H._instanceType(this.$this)._eval$1("JSArray>")); this.rendererToSeriesList.$indexSet(0, rendererId, t1); return t1; }, $signature: 88 }; X.BaseChart_preprocessSeries_closure1.prototype = { call$2: function(rendererId, seriesList) { this.$this.getSeriesRenderer$1(rendererId).preprocessSeries$1(seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(String,List>)"); } }; X.BaseChart_onPostLayout_closure.prototype = { call$2: function(rendererId, seriesList) { var t1 = this.$this; t1.getSeriesRenderer$1(rendererId).update$2(0, seriesList, t1.get$animatingThisDraw()); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(String,List>)"); } }; X.BaseChart_paint_closure.prototype = { call$1: function(view) { var t1; H._rtiToString(J.get$runtimeType$(view)._rti, null); t1 = this.$this; t1 = t1.get$animatingThisDraw() ? t1.animationPercent : 1; view.paint$2(this.canvas, t1); }, $signature: 132 }; X.BaseChart_fireOnDraw_closure.prototype = { call$1: function(listener) { var t1 = listener.onData; if (t1 != null) t1.call$1(this.seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.BaseChart_fireOnPreprocess_closure.prototype = { call$1: function(listener) { var t1 = listener.onPreprocess; if (t1 != null) t1.call$1(this.seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.BaseChart_fireOnPostprocess_closure.prototype = { call$1: function(listener) { var t1 = listener.onPostprocess; if (t1 != null) t1.call$1(this.seriesList); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.BaseChart_fireOnAxisConfigured_closure.prototype = { call$1: function(listener) { var t1 = listener.onAxisConfigured; if (t1 != null) t1.call$0(); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.BaseChart_fireOnPostrender_closure.prototype = { call$1: function(listener) { listener.toString; }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.BaseChart_fireOnAnimationComplete_closure.prototype = { call$1: function(listener) { listener.toString; }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(LifecycleListener)"); } }; X.LifecycleListener.prototype = {}; O.BehaviorPosition.prototype = { toString$0: function(_) { return this._chart_behavior0$_name; } }; O.OutsideJustification.prototype = { toString$0: function(_) { return this._chart_behavior0$_name; } }; O.InsideJustification.prototype = { toString$0: function(_) { return this._chart_behavior0$_name; } }; O.DomainHighlighter0.prototype = { get$_domain_highlighter$_chart: function() { var t1 = this.__DomainHighlighter__chart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_chart")) : t1; }, get$_lifecycleListener: function() { var t1 = this.__DomainHighlighter__lifecycleListener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lifecycleListener")) : t1; }, _selectionChanged$1: function(selectionModel) { this.get$_domain_highlighter$_chart().redraw$2$skipAnimation$skipLayout(true, true); }, _updateColorFunctions$1: function(seriesList) { C.JSArray_methods.forEach$1(seriesList, new O.DomainHighlighter__updateColorFunctions_closure(this, this.get$_domain_highlighter$_chart().getSelectionModel$1(this.selectionModelType))); }, attachTo$1: function(chart) { var _this = this; _this.__DomainHighlighter__chart = chart; chart._lifecycleListeners.push(_this.get$_lifecycleListener()); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_selectionChanged()); }, removeFrom$1: function(chart) { C.JSArray_methods.remove$1(chart.getSelectionModel$1(this.selectionModelType)._changedListeners, this.get$_selectionChanged()); C.JSArray_methods.remove$1(chart._lifecycleListeners, this.get$_lifecycleListener()); }, get$role: function(_) { return "domainHighlight-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; O.DomainHighlighter__updateColorFunctions_closure.prototype = { call$1: function(series) { var origColorFn = series.colorFn; if (origColorFn != null) series.colorFn = new O.DomainHighlighter__updateColorFunctions__closure(origColorFn, this.selectionModel, series); }, $signature: function() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; O.DomainHighlighter__updateColorFunctions__closure.prototype = { call$1: function(index) { var datum, origColor = this.origColorFn.call$1(index), t1 = this.selectionModel, t2 = this.series; t1.toString; datum = index == null ? null : t2.data[index]; if (C.JSArray_methods.contains$1(t1._selectedDatum, new R.SeriesDatum(t2, datum, t1.$ti._eval$1("SeriesDatum<1>")))) return origColor.get$darker(); else return origColor; }, $signature: 161 }; D.Legend.prototype = { get$_legend$_chart: function() { var t1 = this.__Legend__chart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_chart")) : t1; }, get$_legend$_lifecycleListener: function() { var t1 = this.__Legend__lifecycleListener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lifecycleListener")) : t1; }, get$_legend$_currentSeriesList: function() { var t1 = this.__Legend__currentSeriesList; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentSeriesList")) : t1; }, defaultLegendMeasureFormatter$1: function(value) { return value == null ? "" : $.$get$Legend__decimalPattern().format$1(value); }, Legend$3$entryTextStyle$legendEntryGenerator$selectionModelType: function(entryTextStyle, legendEntryGenerator, selectionModelType, $D) { var t1, _this = this; if (_this.__Legend__lifecycleListener === $) _this.__Legend__lifecycleListener = new X.LifecycleListener(_this.get$onData(), _this.get$_preProcess(), _this.get$_postProcess(), null, $D._eval$1("LifecycleListener<0>")); else H.throwExpression(H.LateError$fieldAI("_lifecycleListener")); t1 = _this.legendEntryGenerator; t1.entryTextStyle = entryTextStyle; t1.showOverlaySeries = false; }, set$entryTextStyle: function(entryTextStyle) { this.legendEntryGenerator.entryTextStyle = entryTextStyle; }, _preProcess$1: function(seriesList) { this.__Legend__currentSeriesList = P.List_List$of(seriesList, true, this.$ti._eval$1("MutableSeries<1>")); this.preProcessSeriesList$1(seriesList); }, _postProcess$1: function(seriesList) { var _this = this, selectionModel = _this.get$_legend$_chart().getSelectionModel$1(_this.selectionModelType), t1 = _this.legendState; if (!J.$eq$(t1._selectionModel, selectionModel) || _this._postProcessSeriesList !== seriesList) { t1.__LegendState__legendEntries = _this.legendEntryGenerator.getLegendEntries$1(_this.get$_legend$_currentSeriesList()); t1._selectionModel = selectionModel; _this._postProcessSeriesList = seriesList; _this._updateLegendEntries$1$seriesList(seriesList); } }, _legend$_selectionChanged$1: function(selectionModel) { this.legendState._selectionModel = selectionModel; this._updateLegendEntries$0(); }, _updateLegendEntries$1$seriesList: function(seriesList) { var t4, _this = this, t1 = _this.legendEntryGenerator, t2 = _this.legendState, t3 = t2.get$_legendEntries(); t2 = t2._selectionModel; t2.toString; if (seriesList == null) { t4 = _this.get$_legend$_chart()._currentSeriesList; t4.toString; } else t4 = seriesList; if (t2._selectedDatum.length !== 0 || P.List_List$unmodifiable(t2._selectedSeries, H._instanceType(t2)._eval$1("ImmutableSeries<1>")).length !== 0) t1._updateFromSelection$2(t3, t2); else if (t1.get$legendDefaultMeasure() !== C.LegendDefaultMeasure_0) t1._updateFromSeriesList$2(t3, t4); else t1._resetLegendEntryMeasures$1(t3); t1 = _this.get$_legend$_chart(); t1.get$context(t1).requestRebuild$0(); }, _updateLegendEntries$0: function() { return this._updateLegendEntries$1$seriesList(null); }, attachTo$1: function(chart) { var _this = this; _this.__Legend__chart = chart; chart._lifecycleListeners.push(_this.get$_legend$_lifecycleListener()); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_legend$_selectionChanged()); chart.addView$1(_this); }, removeFrom$1: function(chart) { var _this = this; C.JSArray_methods.remove$1(chart.getSelectionModel$1(_this.selectionModelType)._changedListeners, _this.get$_legend$_selectionChanged()); C.JSArray_methods.remove$1(chart._lifecycleListeners, _this.get$_legend$_lifecycleListener()); chart._layoutManager.removeView$1(_this); }, get$role: function(_) { return "legend-" + this.selectionModelType.toString$0(0); }, get$layoutConfig: function() { var position, outsideJustification = this.config.outsideJustification, t1 = this.get$_legend$_chart(), isRtl = t1.get$context(t1)._chartContainerIsRtl; switch (C.BehaviorPosition_3) { case C.BehaviorPosition_1: position = C.LayoutPosition_0; break; case C.BehaviorPosition_3: position = isRtl ? C.LayoutPosition_4 : C.LayoutPosition_6; break; case C.BehaviorPosition_4: position = C.LayoutPosition_8; break; case C.BehaviorPosition_2: position = isRtl ? C.LayoutPosition_6 : C.LayoutPosition_4; break; case C.BehaviorPosition_0: position = C.LayoutPosition_2; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); position = null; } if (outsideJustification === C.OutsideJustification_1 || outsideJustification === C.OutsideJustification_3 || outsideJustification === C.OutsideJustification_5) switch (position) { case C.LayoutPosition_0: position = C.LayoutPosition_1; break; case C.LayoutPosition_4: position = C.LayoutPosition_5; break; case C.LayoutPosition_2: position = C.LayoutPosition_3; break; case C.LayoutPosition_6: position = C.LayoutPosition_7; break; default: break; } return X.LayoutViewConfig$(100, position, 30); }, measure$2: function(_, maxWidth, maxHeight) { return X.ViewMeasuredSizes$(0, 0); }, layout$2: function(_, componentBounds, drawAreaBounds) { var t1; this._legend$_componentBounds = componentBounds; this._legend$_drawAreaBounds = drawAreaBounds; t1 = this.get$_legend$_chart(); t1.get$context(t1).requestRebuild$0(); }, paint$2: function(canvas, animationPercent) { }, get$componentBounds: function() { return this._legend$_componentBounds; }, get$isSeriesRenderer: function() { return false; }, $isChartBehavior0: 1, $isLayoutView: 1, set$graphicsFactory: function() { } }; D.LegendState.prototype = { get$_legendEntries: function() { var t1 = this.__LegendState__legendEntries; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_legendEntries")) : t1; } }; D.LegendTapHandling.prototype = { toString$0: function(_) { return this._legend$_name; } }; K.LegendEntryBase.prototype = {}; K.LegendEntry.prototype = { get$value: function(receiver) { return this.value; } }; O.LegendDefaultMeasure.prototype = { toString$0: function(_) { return this._legend_entry_generator$_name; } }; V.PerSeriesLegendEntryGenerator.prototype = { get$legendDefaultMeasure: function() { var t1 = this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("legendDefaultMeasure")) : t1; }, getLegendEntries$1: function(seriesList) { var _this = this, t1 = J.where$1$ax(seriesList, new V.PerSeriesLegendEntryGenerator_getLegendEntries_closure(_this)), t2 = t1.$ti._eval$1("@<1>")._bind$1(_this.$ti._eval$1("LegendEntry<1>"))._eval$1("MappedIterable<1,2>"), legendEntries = P.List_List$of(new H.MappedIterable(t1, new V.PerSeriesLegendEntryGenerator_getLegendEntries_closure0(_this), t2), true, t2._eval$1("Iterable.E")); if (_this.get$legendDefaultMeasure() !== C.LegendDefaultMeasure_0) _this._updateFromSeriesList$2(legendEntries, seriesList); return legendEntries; }, _updateFromSelection$2: function(legendEntries, selectionModel) { var t2, t3, t4, _i, selectedDatum, series, seriesId, t5, measure, measureValue, formattedValue, result, _this = this, t1 = type$.String, seriesAndMeasure = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.num), secondaryAxisSeriesIDs = P.HashSet_HashSet(t1); for (t1 = H._instanceType(selectionModel), t2 = t1._eval$1("SeriesDatum<1>"), t3 = P.List_List$unmodifiable(selectionModel._selectedDatum, t2), t4 = t3.length, _i = 0; _i < t4; ++_i) { selectedDatum = t3[_i]; series = selectedDatum.series; seriesId = series.id; t5 = J.get$index$z(selectedDatum); measure = series.measureFn.call$1(t5); if (measure == null) measure = 0; t5 = seriesAndMeasure.$index(0, seriesId); seriesAndMeasure.$indexSet(0, seriesId, (t5 == null ? 0 : t5) + measure); if (H._asStringQ(series._attrs._registry.$index(0, C.AttributeKey_Bwd)) === "secondaryMeasureAxisId") secondaryAxisSeriesIDs.add$1(0, seriesId); } for (t3 = J.get$iterator$ax(legendEntries), t1 = t1._eval$1("ImmutableSeries<1>"); t3.moveNext$0();) { t4 = t3.get$current(t3); seriesId = t4.series.id; measureValue = seriesAndMeasure.$index(0, seriesId); if (measureValue == null) measureValue = null; formattedValue = secondaryAxisSeriesIDs.contains$1(0, seriesId) ? _this.secondaryMeasureFormatter.call$1(measureValue) : _this.measureFormatter.call$1(measureValue); t4.value = measureValue; t4.formattedValue = formattedValue; result = P.List_List$from(selectionModel._selectedSeries, false, t1); result.fixed$length = Array; result.immutable$list = Array; t4.isSelected = C.JSArray_methods.any$1(result, new V.PerSeriesLegendEntryGenerator__updateFromSelection_closure(_this, t4)); result = P.List_List$from(selectionModel._selectedDatum, false, t2); result.fixed$length = Array; result.immutable$list = Array; t4 = result; t5 = H._arrayInstanceType(t4)._eval$1("MappedListIterable<1,int?>"); P.List_List$of(new H.MappedListIterable(t4, new V.PerSeriesLegendEntryGenerator__updateFromSelection_closure0(_this), t5), true, t5._eval$1("ListIterable.E")); } }, _resetLegendEntryMeasures$1: function(legendEntries) { var t1, t2; for (t1 = J.get$iterator$ax(legendEntries); t1.moveNext$0();) { t2 = t1.get$current(t1); t2.formattedValue = t2.value = null; t2.isSelected = false; } }, _updateFromSeriesList$2: function(legendEntries, seriesList) { var t2, seriesId, t3, calculatedMeasure, _this = this, getMeasureTotal = new V.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal(_this), t1 = type$.String, seriesAndMeasure = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.nullable_double), seriesAndFormattedMeasure = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = J.get$iterator$ax(seriesList); t1.moveNext$0();) { t2 = t1.get$current(t1); seriesId = t2.id; t3 = _this.__PerSeriesLegendEntryGenerator_legendDefaultMeasure; switch (t3 === $ ? H.throwExpression(H.LateError$fieldNI("legendDefaultMeasure")) : t3) { case C.LegendDefaultMeasure_1: calculatedMeasure = getMeasureTotal.call$1(t2); break; case C.LegendDefaultMeasure_2: calculatedMeasure = getMeasureTotal.call$1(t2) / t2.data.length; break; case C.LegendDefaultMeasure_3: calculatedMeasure = t2.measureFn.call$1(0); break; case C.LegendDefaultMeasure_4: t3 = t2.data.length; calculatedMeasure = t2.measureFn.call$1(t3 - 1); break; case C.LegendDefaultMeasure_0: calculatedMeasure = null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } seriesAndMeasure.$indexSet(0, seriesId, calculatedMeasure == null ? null : calculatedMeasure); seriesAndFormattedMeasure.$indexSet(0, seriesId, H._asStringQ(t2._attrs._registry.$index(0, C.AttributeKey_Bwd)) === "secondaryMeasureAxisId" ? _this.secondaryMeasureFormatter.call$1(calculatedMeasure) : _this.measureFormatter.call$1(calculatedMeasure)); } for (t1 = J.get$iterator$ax(legendEntries); t1.moveNext$0();) { t2 = t1.get$current(t1); seriesId = t2.series.id; t2.value = seriesAndMeasure.$index(0, seriesId); t2.formattedValue = seriesAndFormattedMeasure.$index(0, seriesId); t2.isSelected = false; } }, $eq: function(_, other) { if (other == null) return false; return other instanceof V.PerSeriesLegendEntryGenerator && J.$eq$(this.measureFormatter, other.measureFormatter) && J.$eq$(this.secondaryMeasureFormatter, other.secondaryMeasureFormatter) && this.get$legendDefaultMeasure() == other.get$legendDefaultMeasure() && true; }, get$hashCode: function(_) { var _this = this; return ((J.get$hashCode$(_this.measureFormatter) * 37 + J.get$hashCode$(_this.secondaryMeasureFormatter)) * 37 + J.get$hashCode$(_this.get$legendDefaultMeasure())) * 37 + C.JSNull_methods.get$hashCode(_this.entryTextStyle); } }; V.PerSeriesLegendEntryGenerator_getLegendEntries_closure.prototype = { call$1: function(series) { series.toString; return true; }, $signature: function() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; V.PerSeriesLegendEntryGenerator_getLegendEntries_closure0.prototype = { call$1: function(series) { var t3, t1 = series.displayName, t2 = series.seriesColor; t2.toString; t3 = this.$this; return new K.LegendEntry(series, t2, t1, t3.entryTextStyle, t3.$ti._eval$1("LegendEntry<1>")); }, $signature: function() { return this.$this.$ti._eval$1("LegendEntry<1>(MutableSeries<1>)"); } }; V.PerSeriesLegendEntryGenerator__updateFromSelection_closure.prototype = { call$1: function(selectedSeries) { return this.entry.series.id === selectedSeries.id; }, $signature: function() { return this.$this.$ti._eval$1("bool(ImmutableSeries<1>)"); } }; V.PerSeriesLegendEntryGenerator__updateFromSelection_closure0.prototype = { call$1: function(datum) { return datum.get$index(datum); }, $signature: function() { return this.$this.$ti._eval$1("int?(SeriesDatum<1>)"); } }; V.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal.prototype = { call$1: function(series) { var t1, measureTotal, i, t2; for (t1 = series.data, measureTotal = 0, i = 0; i < t1.length; ++i) { t2 = series.measureFn.call$1(i); measureTotal += t2 == null ? 0 : t2; } return measureTotal; }, $signature: function() { return this.$this.$ti._eval$1("num(MutableSeries<1>)"); } }; Z.SeriesLegend0.prototype = { SeriesLegend$7$entryTextStyle$legendDefaultMeasure$legendEntryGenerator$measureFormatter$secondaryMeasureFormatter$selectionModelType$showMeasures: function(entryTextStyle, legendDefaultMeasure, legendEntryGenerator, measureFormatter, secondaryMeasureFormatter, selectionModelType, showMeasures, $D) { var t2, t1 = this.legendEntryGenerator; t1.__PerSeriesLegendEntryGenerator_legendDefaultMeasure = legendDefaultMeasure; t2 = this.get$defaultLegendMeasureFormatter(); t1.measureFormatter = t2; t1.secondaryMeasureFormatter = t2; }, set$defaultHiddenSeries: function(defaultHiddenSeries) { this._defaultHiddenSeries = defaultHiddenSeries; this._hiddenSeriesList.clear$0(0); }, onData$1: function(seriesList) { this._hiddenSeriesList._filterWhere$2(new Z.SeriesLegend_onData_closure(new H.MappedListIterable(seriesList, new Z.SeriesLegend_onData_closure0(this), H._arrayInstanceType(seriesList)._eval$1("MappedListIterable<1,String>"))), true); }, preProcessSeriesList$1: function(seriesList) { if (!!seriesList.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(seriesList, new Z.SeriesLegend_preProcessSeriesList_closure(this), true); }, hideSeries$1: function(seriesId) { this._hiddenSeriesList.add$1(0, seriesId); }, showSeries$1: function(seriesId) { this._hiddenSeriesList._filterWhere$2(new Z.SeriesLegend_showSeries_closure(seriesId), true); } }; Z.SeriesLegend_onData_closure0.prototype = { call$1: function(series) { return series.id; }, $signature: function() { return this.$this.$ti._eval$1("String(MutableSeries<1>)"); } }; Z.SeriesLegend_onData_closure.prototype = { call$1: function(id) { return !this.seriesIds.contains$1(0, id); }, $signature: 73 }; Z.SeriesLegend_preProcessSeriesList_closure.prototype = { call$1: function(series) { return this.$this._hiddenSeriesList.contains$1(0, series.id); }, $signature: function() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; Z.SeriesLegend_showSeries_closure.prototype = { call$1: function(id) { return id === this.seriesId; }, $signature: 73 }; E.LinePointHighlighter0.prototype = { get$_line_point_highlighter$_chart: function() { var t1 = this.__LinePointHighlighter__chart; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_chart")) : t1; }, get$_view: function() { var t1 = this.__LinePointHighlighter__view; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_view")) : t1; }, get$_line_point_highlighter$_lifecycleListener: function() { var t1 = this.__LinePointHighlighter__lifecycleListener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lifecycleListener")) : t1; }, attachTo$1: function(chart) { var _this = this; _this.__LinePointHighlighter__chart = chart; _this.__LinePointHighlighter__view = new E._LinePointLayoutView(X.LayoutViewConfig$(110, C.LayoutPosition_8, 110), _this.showHorizontalFollowLine, _this.showVerticalFollowLine, chart, _this.dashPattern, true, _this.symbolRenderer, _this.$ti._eval$1("_LinePointLayoutView<1>")); chart.addView$1(_this.get$_view()); chart._lifecycleListeners.push(_this.get$_line_point_highlighter$_lifecycleListener()); chart.getSelectionModel$1(_this.selectionModelType)._changedListeners.push(_this.get$_line_point_highlighter$_selectionChanged()); }, removeFrom$1: function(chart) { var _this = this; chart._layoutManager.removeView$1(_this.get$_view()); C.JSArray_methods.remove$1(chart.getSelectionModel$1(_this.selectionModelType)._changedListeners, _this.get$_line_point_highlighter$_selectionChanged()); C.JSArray_methods.remove$1(chart._lifecycleListeners, _this.get$_line_point_highlighter$_lifecycleListener()); }, _line_point_highlighter$_selectionChanged$1: function(selectionModel) { this.get$_line_point_highlighter$_chart().redraw$2$skipAnimation$skipLayout(true, true); }, _updateViewData$0: function() { var selectedDatumDetails, t2, t3, newSeriesMap, t4, t5, t6, radiusPx, t7, t8, t9, _i, detail, series, datum, t10, domainAxis, measureAxis, radiusPx0, pointKey, t11, animatingPoint, t12, _this = this, t1 = _this._line_point_highlighter$_currentKeys; C.JSArray_methods.set$length(t1, 0); selectedDatumDetails = _this.get$_line_point_highlighter$_chart().getSelectedDatumDetails$1(_this.selectionModelType); t2 = _this.$ti; t3 = t2._eval$1("_AnimatedPoint<1>"); newSeriesMap = P.LinkedHashMap_LinkedHashMap(null, null, type$.String, t3); for (t4 = selectedDatumDetails.length, t5 = t2._eval$1("_DatumPoint0<1>"), t6 = t2._eval$1("_PointRendererElement<1>"), radiusPx = _this.defaultRadiusPx, t7 = type$.nullable_Axis_Object, t2 = t2._eval$1("ImmutableAxis<1>"), t8 = type$.ImmutableAxis_num, t9 = _this.radiusPaddingPx, _i = 0; _i < selectedDatumDetails.length; selectedDatumDetails.length === t4 || (0, H.throwConcurrentModificationError)(selectedDatumDetails), ++_i) { detail = selectedDatumDetails[_i]; series = detail.series; datum = detail.datum; t10 = series._attrs._registry; domainAxis = t2._as(t7._as(t10.$index(0, C.AttributeKey_OBU))); measureAxis = t8._as(t7._as(t10.$index(0, C.AttributeKey_kWM))); t10 = detail.radiusPx; radiusPx0 = t10 != null ? t10 + t9 : radiusPx; t10 = detail.domain; pointKey = series.id + "::" + H.S(t10) + "::" + H.S(detail.measure); if (_this._seriesPointMap.containsKey$1(0, pointKey)) { t11 = _this._seriesPointMap.$index(0, pointKey); t11.toString; animatingPoint = t11; } else { animatingPoint = new E._AnimatedPoint(pointKey, t3); animatingPoint.setNewTarget$1(new E._PointRendererElement(new E._DatumPoint0(datum, t10, series, domainAxis.getLocation$1(t10), measureAxis.getLocation$1(0), t5), detail.color, detail.fillColor, radiusPx0, measureAxis.getLocation$1(0), detail.strokeWidthPx, detail.symbolRenderer, t6)); } newSeriesMap.$indexSet(0, pointKey, animatingPoint); t11 = detail.chartPosition; t12 = t11.x; t11 = t11.y; t1.push(pointKey); animatingPoint.setNewTarget$1(new E._PointRendererElement(new E._DatumPoint0(datum, t10, series, t12, t11, t5), detail.color, detail.fillColor, radiusPx0, measureAxis.getLocation$1(0), detail.strokeWidthPx, detail.symbolRenderer, t6)); } _this._seriesPointMap.forEach$1(0, new E.LinePointHighlighter__updateViewData_closure(_this, newSeriesMap)); _this._seriesPointMap = newSeriesMap; _this.get$_view()._seriesPointMap = _this._seriesPointMap; }, get$role: function(_) { return "LinePointHighlighter-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; E.LinePointHighlighter__updateViewData_closure.prototype = { call$2: function(key, point) { var newTarget, targetPoint, t2, t1 = point.key; if (!C.JSArray_methods.contains$1(this.$this._line_point_highlighter$_currentKeys, t1)) { newTarget = point._currentPoint.clone$0(0); targetPoint = newTarget.point; t2 = newTarget.measureAxisPosition; t2.toString; newTarget.point = E._DatumPoint__DatumPoint$from0(targetPoint, targetPoint.x, C.JSNumber_methods.roundToDouble$0(t2), H._instanceType(point)._precomputed1); newTarget.radiusPx = 0; point.setNewTarget$1(newTarget); point.animatingOut = true; this.newSeriesMap.$indexSet(0, t1, point); } }, $signature: function() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; E._LinePointLayoutView.prototype = { measure$2: function(_, maxWidth, maxHeight) { return null; }, layout$2: function(_, componentBounds, drawAreaBounds) { this.___LinePointLayoutView__drawAreaBounds = drawAreaBounds; }, paint$2: function(canvas, animationPercent) { var keysToRemove, points, t1, endPointPerValueVertical, endPointPerValueHorizontal, t2, shouldShowHorizontalFollowLine, t3, t4, shouldShowVerticalFollowLine, t5, _i, t6, t7, roundedX, roundedY, shouldShowHorizontalFollowLine0, shouldShowVerticalFollowLine0, paintedHorizontalLinePositions, paintedVerticalLinePositions, drawBounds, t8, t9, leftBound, rightBound, topBound, pointElement, bounds, _this = this, _null = null, _seriesPointMap = _this._seriesPointMap; if (_seriesPointMap == null) return; if (animationPercent === 1) { keysToRemove = H.setRuntimeTypeInfo([], type$.JSArray_String); _seriesPointMap.forEach$1(0, new E._LinePointLayoutView_paint_closure(_this, keysToRemove)); C.JSArray_methods.forEach$1(keysToRemove, _seriesPointMap.get$remove(_seriesPointMap)); } points = H.setRuntimeTypeInfo([], _this.$ti._eval$1("JSArray<_PointRendererElement<1>>")); _seriesPointMap.forEach$1(0, new E._LinePointLayoutView_paint_closure0(_this, points, animationPercent)); t1 = type$.int; endPointPerValueVertical = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); endPointPerValueHorizontal = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = points.length, t2 = _this.showHorizontalFollowLine, shouldShowHorizontalFollowLine = t2 === C.LinePointHighlighterFollowLineType_0, t3 = !shouldShowHorizontalFollowLine, t4 = _this.showVerticalFollowLine, shouldShowVerticalFollowLine = t4 === C.LinePointHighlighterFollowLineType_0, t5 = !shouldShowVerticalFollowLine, _i = 0; _i < points.length; points.length === t1 || (0, H.throwConcurrentModificationError)(points), ++_i) { t6 = points[_i].point; t7 = t6.x; if (t7 == null || t6.y == null) continue; t7.toString; t6 = t6.y; t6.toString; roundedX = C.JSNumber_methods.round$0(t7); roundedY = C.JSNumber_methods.round$0(t6); if (endPointPerValueVertical.$index(0, roundedX) == null) endPointPerValueVertical.$indexSet(0, roundedX, roundedY); else if (t5) { t6 = endPointPerValueVertical.$index(0, roundedX); t6.toString; endPointPerValueVertical.$indexSet(0, roundedX, Math.min(t6, roundedY)); } if (endPointPerValueHorizontal.$index(0, roundedY) == null) endPointPerValueHorizontal.$indexSet(0, roundedY, roundedX); else if (t3) { t6 = endPointPerValueHorizontal.$index(0, roundedY); t6.toString; endPointPerValueHorizontal.$indexSet(0, roundedY, Math.max(t6, roundedX)); } } shouldShowHorizontalFollowLine0 = t2 === C.LinePointHighlighterFollowLineType_2 || shouldShowHorizontalFollowLine; shouldShowVerticalFollowLine0 = t4 === C.LinePointHighlighterFollowLineType_2 || shouldShowVerticalFollowLine; t1 = type$.JSArray_num; paintedHorizontalLinePositions = H.setRuntimeTypeInfo([], t1); paintedVerticalLinePositions = H.setRuntimeTypeInfo([], t1); t1 = _this.chart; drawBounds = t1._layoutManager.get$drawableLayoutAreaBounds(); t1.get$context(t1).get$isRtl(); for (t1 = points.length, t2 = type$.Point_num, t3 = type$.JSArray_Point_num, t4 = _this.dashPattern, t5 = canvas.canvas, t6 = canvas._chart_canvas$_paint, t7 = J.getInterceptor$x(drawBounds), _i = 0; _i < points.length; points.length === t1 || (0, H.throwConcurrentModificationError)(points), ++_i) { t8 = points[_i].point; t9 = t8.x; if (t9 == null || t8.y == null) continue; t9.toString; t8 = t8.y; t8.toString; roundedX = C.JSNumber_methods.round$0(t9); roundedY = C.JSNumber_methods.round$0(t8); if (shouldShowHorizontalFollowLine0 && !C.JSArray_methods.contains$1(paintedHorizontalLinePositions, roundedY)) { leftBound = t7.get$left(drawBounds); rightBound = t7.get$left(drawBounds) + t7.get$width(drawBounds); t8 = H.setRuntimeTypeInfo([new P.Point(leftBound, t8, t2), new P.Point(rightBound, t8, t2)], t3); $.$get$StyleFactory__styleFactory().toString; V.LinePainter_draw(t5, _null, t4, _null, t6, t8, _null, _null, new K.Color0(117, 117, 117, 255, _null, _null), 1); if (shouldShowHorizontalFollowLine) shouldShowHorizontalFollowLine0 = false; paintedHorizontalLinePositions.push(roundedY); } if (shouldShowVerticalFollowLine0 && !C.JSArray_methods.contains$1(paintedVerticalLinePositions, roundedX)) { topBound = t7.get$top(drawBounds); t8 = H.setRuntimeTypeInfo([new P.Point(t9, topBound, t2), new P.Point(t9, t7.get$top(drawBounds) + t7.get$height(drawBounds), t2)], t3); $.$get$StyleFactory__styleFactory().toString; V.LinePainter_draw(t5, _null, t4, _null, t6, t8, _null, _null, new K.Color0(117, 117, 117, 255, _null, _null), 1); if (shouldShowVerticalFollowLine) shouldShowVerticalFollowLine0 = false; paintedVerticalLinePositions.push(roundedX); } if (!shouldShowHorizontalFollowLine0 && !shouldShowVerticalFollowLine0) break; } for (t1 = points.length, t2 = type$.double, t3 = _this.symbolRenderer, _i = 0; _i < points.length; points.length === t1 || (0, H.throwConcurrentModificationError)(points), ++_i) { pointElement = points[_i]; t4 = pointElement.point; t5 = t4.x; if (t5 == null || t4.y == null) continue; t5.toString; t4 = t4.y; t4.toString; t6 = pointElement.radiusPx; t7 = t6 * 2; bounds = P.Rectangle$(t5 - t6, t4 - t6, t7, t7, t2); t7 = pointElement.symbolRenderer; t4 = t7 == null ? t3 : t7; t4.paint$5$fillColor$strokeColor$strokeWidthPx(canvas, bounds, pointElement.fillColor, pointElement.color, pointElement.strokeWidthPx); } }, get$componentBounds: function() { var t1 = this.___LinePointLayoutView__drawAreaBounds; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_drawAreaBounds")) : t1; }, get$isSeriesRenderer: function() { return false; }, get$layoutConfig: function() { return this.layoutConfig; }, set$graphicsFactory: function() { } }; E._LinePointLayoutView_paint_closure.prototype = { call$2: function(key, point) { if (point.animatingOut) this.keysToRemove.push(key); }, $signature: function() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; E._LinePointLayoutView_paint_closure0.prototype = { call$2: function(key, point) { this.points.push(point.getCurrentPoint$1(this.animationPercent)); }, $signature: function() { return this.$this.$ti._eval$1("~(String,_AnimatedPoint<1>)"); } }; E._DatumPoint0.prototype = {}; E._PointRendererElement.prototype = { clone$0: function(_) { var _this = this; return new E._PointRendererElement(_this.point, _this.color, _this.fillColor, _this.radiusPx, _this.measureAxisPosition, _this.strokeWidthPx, _this.symbolRenderer, _this.$ti); }, _lerpDouble$3: function(a, b, t) { if (a == null || b == null) return null; return a + (b - a) * t; } }; E._AnimatedPoint.prototype = { get$_targetPoint: function() { var t1 = this.___AnimatedPoint__targetPoint; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_targetPoint")) : t1; }, setNewTarget$1: function(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentPoint; _this._previousPoint = (t1 == null ? _this._currentPoint = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedPoint__targetPoint = newTarget; }, getCurrentPoint$1: function(animationPercent) { var t1, t2, t3, targetPoint, previousPoint, t4, t5, targetStrokeWidthPx, previousStrokeWidthPx, _this = this; if (animationPercent === 1 || _this._previousPoint == null) { _this._currentPoint = _this.get$_targetPoint(); _this._previousPoint = _this.get$_targetPoint(); t1 = _this._currentPoint; t1.toString; return t1; } t1 = _this._currentPoint; t1.toString; t2 = _this._previousPoint; t2.toString; t3 = _this.get$_targetPoint(); targetPoint = t3.point; previousPoint = t2.point; t1.point = E._DatumPoint__DatumPoint$from0(targetPoint, t1._lerpDouble$3(previousPoint.x, targetPoint.x, animationPercent), t1._lerpDouble$3(previousPoint.y, targetPoint.y, animationPercent), t1.$ti._precomputed1); t4 = t2.color; t4.toString; t5 = t3.color; t5.toString; t1.color = S.getAnimatedColor(t4, t5, animationPercent); t5 = t2.fillColor; t5.toString; t4 = t3.fillColor; t4.toString; t1.fillColor = S.getAnimatedColor(t5, t4, animationPercent); t4 = t1._lerpDouble$3(t2.radiusPx, t3.radiusPx, animationPercent); t4.toString; t1.radiusPx = t4; targetStrokeWidthPx = t3.strokeWidthPx; previousStrokeWidthPx = t2.strokeWidthPx; if (targetStrokeWidthPx != null && previousStrokeWidthPx != null) t1.strokeWidthPx = (targetStrokeWidthPx - previousStrokeWidthPx) * animationPercent + previousStrokeWidthPx; else t1.strokeWidthPx = null; t1 = _this._currentPoint; t1.toString; return t1; } }; E.LinePointHighlighterFollowLineType.prototype = { toString$0: function(_) { return this._line_point_highlighter$_name; } }; Z.SelectNearest0.prototype = { get$_listener0: function() { var t1 = this.__SelectNearest__listener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_listener")) : t1; }, _onTapTest$1: function(chartPoint) { this._delaySelect = this.eventTrigger === C.SelectionTrigger_4; return this._select_nearest$_chart.pointWithinRenderer$1(chartPoint); }, _onLongPressSelect$1: function(chartPoint) { this._delaySelect = false; return this._onSelect$1(chartPoint); }, _onSelect$2: function(chartPoint, ignored) { var details, seriesList, seriesDatumList, _this = this, t1 = _this._select_nearest$_chart; if (t1 == null) return false; if (_this._delaySelect) return false; details = t1.getNearestDatumDetailPerSeries$2(chartPoint, true); t1 = _this.$ti; seriesList = H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")); seriesDatumList = H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")); t1 = details.length; if (t1 !== 0) { C.JSArray_methods.sort$1(details, new Z.SelectNearest__onSelect_closure(_this)); seriesDatumList = _this._extractSeriesFromNearestSelection$1(details); if (!!seriesDatumList.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(seriesDatumList, new Z.SelectNearest__onSelect_closure0(_this), true); t1 = seriesList.length; if (t1 === 0) { C.JSArray_methods.get$first(details).toString; t1 = C.JSArray_methods.get$first(details); seriesList.push(t1.series); } } return _this._select_nearest$_chart.getSelectionModel$1(_this.selectionModelType).updateSelection$2(seriesDatumList, seriesList); }, _onSelect$1: function(chartPoint) { return this._onSelect$2(chartPoint, null); }, _extractSeriesFromNearestSelection$1: function(details) { var t1, _this = this; switch (_this.selectionMode) { case C.SelectionMode_0: return _this._expandToDomain$1(C.JSArray_methods.get$first(details)); case C.SelectionMode_1: t1 = H._arrayInstanceType(details)._eval$1("@<1>")._bind$1(_this.$ti._eval$1("SeriesDatum<1>"))._eval$1("MappedListIterable<1,2>"); return P.List_List$of(new H.MappedListIterable(details, new Z.SelectNearest__extractSeriesFromNearestSelection_closure(_this), t1), true, t1._eval$1("ListIterable.E")); case C.SelectionMode_2: t1 = _this.$ti; return H.setRuntimeTypeInfo([new R.SeriesDatum(C.JSArray_methods.get$first(details).series, C.JSArray_methods.get$first(details).datum, t1._eval$1("SeriesDatum<1>"))], t1._eval$1("JSArray>")); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _onDeselectAll$3: function(_, __, ___) { var t1, _this = this; if (_this._delaySelect) return false; t1 = _this.$ti; _this._select_nearest$_chart.getSelectionModel$1(_this.selectionModelType).updateSelection$2(H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), H.setRuntimeTypeInfo([], t1._eval$1("JSArray>"))); return false; }, _expandToDomain$1: function(nearestDetails) { var t5, t6, t7, _i, series, domainFn, domainLowerBoundFn, domainUpperBoundFn, testBounds, t8, i, datum, domain, domainLowerBound, domainUpperBound, addDatum, t9, t10, t1 = nearestDetails.series, t2 = nearestDetails.datum, t3 = this.$ti, t4 = t3._eval$1("SeriesDatum<1>"), data = H.setRuntimeTypeInfo([new R.SeriesDatum(t1, t2, t4)], t3._eval$1("JSArray>")), nearestDomain = nearestDetails.domain; for (t3 = this._select_nearest$_chart._currentSeriesList, t5 = t3.length, t6 = J.getInterceptor$(t2), t7 = type$.DateTime, _i = 0; _i < t3.length; t3.length === t5 || (0, H.throwConcurrentModificationError)(t3), ++_i) { series = t3[_i]; domainFn = series.domainFn; domainLowerBoundFn = series.domainLowerBoundFn; domainUpperBoundFn = series.domainUpperBoundFn; testBounds = domainLowerBoundFn != null && domainUpperBoundFn != null; for (t8 = series.data, i = 0; i < t8.length; ++i) { datum = t8[i]; domain = domainFn.call$1(i); if (t1.$eq(0, series) && t6.$eq(t2, datum)) continue; if (J.$eq$(domain, nearestDomain)) data.push(new R.SeriesDatum(series, datum, t4)); else if (testBounds) { domainLowerBound = domainLowerBoundFn.call$1(i); domainUpperBound = domainUpperBoundFn.call$1(i); if (domainLowerBound != null && domainUpperBound != null) if (H._isInt(domain)) { H._asIntS(domainLowerBound); H._asIntS(nearestDomain); addDatum = domainLowerBound <= nearestDomain && nearestDomain <= H._asIntS(domainUpperBound); } else if (typeof domain == "number") { H._asDoubleS(domainLowerBound); H._asDoubleS(nearestDomain); addDatum = domainLowerBound <= nearestDomain && nearestDomain <= H._asDoubleS(domainUpperBound); } else if (domain instanceof P.DateTime) if (!J.$eq$(domainLowerBound, nearestDomain)) if (!J.$eq$(domainUpperBound, nearestDomain)) { t7._as(domainLowerBound); t7._as(nearestDomain); t9 = domainLowerBound._value; t10 = nearestDomain._value; t9 = t9 < t10 && t10 < t7._as(domainUpperBound)._value; addDatum = t9; } else addDatum = true; else addDatum = true; else addDatum = false; else addDatum = false; if (addDatum) data.push(new R.SeriesDatum(series, datum, t4)); } } } return data; }, attachTo$1: function(chart) { var t1, role, _this = this; _this._select_nearest$_chart = chart; t1 = chart._gestureProxy; t1._proxy_gesture_listener$_listeners.push(_this.get$_listener0()); C.JSArray_methods.set$length(t1._activeListeners, 0); switch (_this.eventTrigger) { case C.SelectionTrigger_1: case C.SelectionTrigger_2: case C.SelectionTrigger_3: case C.SelectionTrigger_4: role = "SelectNearest-" + _this.selectionModelType.toString$0(0); t1 = chart._behaviorRoleMap.$index(0, role) === _this && chart._behaviorTappableMap.$index(0, role) !== _this; if (t1) chart._behaviorTappableMap.$indexSet(0, role, _this); break; case C.SelectionTrigger_0: default: chart.unregisterTappable$1(_this); break; } }, removeFrom$1: function(chart) { var t1 = chart._gestureProxy; C.JSArray_methods.remove$1(t1._proxy_gesture_listener$_listeners, this.get$_listener0()); C.JSArray_methods.set$length(t1._activeListeners, 0); chart.unregisterTappable$1(this); this._select_nearest$_chart = null; }, get$role: function(_) { return "SelectNearest-" + this.selectionModelType.toString$0(0); }, $isChartBehavior0: 1 }; Z.SelectNearest__onSelect_closure.prototype = { call$2: function(a, b) { var t2, t1 = a.domainDistance; t1.toString; t2 = b.domainDistance; t2.toString; return C.JSNumber_methods.compareTo$1(t1, t2); }, $signature: function() { return this.$this.$ti._eval$1("int(DatumDetails<1>,DatumDetails<1>)"); } }; Z.SelectNearest__onSelect_closure0.prototype = { call$1: function(datum) { datum.toString; return false; }, $signature: function() { return this.$this.$ti._eval$1("bool(SeriesDatum<1>)"); } }; Z.SelectNearest__extractSeriesFromNearestSelection_closure.prototype = { call$1: function(datumDetails) { return new R.SeriesDatum(datumDetails.series, datumDetails.datum, this.$this.$ti._eval$1("SeriesDatum<1>")); }, $signature: function() { return this.$this.$ti._eval$1("SeriesDatum<1>(DatumDetails<1>)"); } }; Z.SelectionMode.prototype = { toString$0: function(_) { return this._select_nearest$_name; } }; S.SelectionTrigger.prototype = { toString$0: function(_) { return this._selection_trigger$_name; } }; G.CanvasRect.prototype = {}; G.CanvasBarStack.prototype = {}; S.FillPatternType.prototype = { toString$0: function(_) { return this._chart_canvas0$_name; } }; L.DatumDetails.prototype = {}; N.MutableSeries.prototype = { get$seriesMeasureTotal: function() { var t1 = this.__MutableSeries_seriesMeasureTotal; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("seriesMeasureTotal")) : t1; }, MutableSeries$1: function(series, $D) { var t1, measure, t2, _this = this, i = _this.__MutableSeries_seriesMeasureTotal = 0; for (t1 = _this.data; i < t1.length; ++i) { measure = _this.measureFn.call$1(i); if (measure != null) { t2 = _this.__MutableSeries_seriesMeasureTotal; _this.__MutableSeries_seriesMeasureTotal = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("seriesMeasureTotal")) : t2) + measure; } } t1 = series.labelAccessorFn; _this.labelAccessorFn = t1 == null ? new N.MutableSeries_closure(_this) : t1; _this._attrs._registry.addAll$1(0, series.attributes._registry); }, $eq: function(_, other) { if (other == null) return false; return other instanceof N.MutableSeries && this.data === other.data && this.id === other.id; }, get$hashCode: function(_) { return H.Primitives_objectHashCode(this.data) * 31 + C.JSString_methods.get$hashCode(this.id); }, get$id: function(receiver) { return this.id; } }; N.MutableSeries_closure.prototype = { call$1: function(i) { return J.toString$0$(this.$this.domainFn.call$1(i)); }, $signature: 932 }; N.ImmutableSeries.prototype = {}; D.SelectionModel.prototype = { SelectionModel$2$selectedData$selectedSeries: function(selectedData, selectedSeries, $D) { }, SelectionModel$fromOther$1: function(other, $D) { this._selectedDatum = P.List_List$of(other._selectedDatum, true, $D._eval$1("SeriesDatum<0>")); this._selectedSeries = P.List_List$of(other._selectedSeries, true, $D._eval$1("ImmutableSeries<0>")); }, $eq: function(_, other) { var t1, t2; if (other == null) return false; t1 = H._instanceType(this); if (t1._eval$1("SelectionModel<1>")._is(other)) { t2 = H._instanceType(other); t1 = new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(this._selectedDatum, P.List_List$unmodifiable(other._selectedDatum, t2._eval$1("SeriesDatum<1>"))) && new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(this._selectedSeries, P.List_List$unmodifiable(other._selectedSeries, t2._eval$1("ImmutableSeries<1>"))); } else t1 = false; return t1; }, get$hashCode: function(_) { var t1 = H._instanceType(this); return new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).hash$1(0, this._selectedDatum) * 37 + new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).hash$1(0, this._selectedSeries); } }; D.MutableSelectionModel.prototype = { updateSelection$3$notifyListeners: function(datumSelection, seriesList, notifyListeners) { var t1, copyOfSelectionModel, changed, _this = this, origSelectedDatum = _this._selectedDatum, origSelectedSeries = _this._selectedSeries; _this._selectedDatum = datumSelection; _this._selectedSeries = seriesList; t1 = _this.$ti; copyOfSelectionModel = new D.SelectionModel(H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")), t1._eval$1("SelectionModel<1>")); copyOfSelectionModel.SelectionModel$fromOther$1(_this, t1._precomputed1); C.JSArray_methods.forEach$1(_this._updatedListeners, new D.MutableSelectionModel_updateSelection_closure(_this, copyOfSelectionModel)); changed = !new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(origSelectedDatum, _this._selectedDatum) || !new U.ListEquality(C.C_DefaultEquality, t1._eval$1("ListEquality>")).equals$2(origSelectedSeries, _this._selectedSeries); if (notifyListeners && changed) C.JSArray_methods.forEach$1(_this._changedListeners, new D.MutableSelectionModel_updateSelection_closure0(_this, copyOfSelectionModel)); return changed; }, updateSelection$2: function(datumSelection, seriesList) { return this.updateSelection$3$notifyListeners(datumSelection, seriesList, true); } }; D.MutableSelectionModel_updateSelection_closure.prototype = { call$1: function(listener) { return listener.call$1(this.copyOfSelectionModel); }, $signature: function() { return this.$this.$ti._eval$1("~(~(SelectionModel<1>))"); } }; D.MutableSelectionModel_updateSelection_closure0.prototype = { call$1: function(listener) { return listener.call$1(this.copyOfSelectionModel); }, $signature: function() { return this.$this.$ti._eval$1("~(~(SelectionModel<1>))"); } }; D.SelectionModelType.prototype = { toString$0: function(_) { return "SelectionModelType.info"; } }; R.SeriesDatum.prototype = { get$index: function(_) { var t2, _this = this, t1 = _this.datum; if (t1 == null) return null; t2 = _this._series_datum$_index; return t2 == null ? _this._series_datum$_index = C.JSArray_methods.indexOf$1(_this.series.data, t1) : t2; }, $eq: function(_, other) { if (other == null) return false; return other instanceof R.SeriesDatum && other.series.$eq(0, this.series) && J.$eq$(other.datum, this.datum); }, get$hashCode: function(_) { var t1 = this.series; return t1.get$hashCode(t1) * 31 + J.get$hashCode$(this.datum); } }; B.BaseSeriesRenderer.prototype = { onAttach$1: function(chart) { }, assignMissingColors$2$emptyCategoryUsesSinglePalette: function(seriesList, emptyCategoryUsesSinglePalette) { var t4, t5, t6, palettes, colorPalettes, colorsByCategory, _this = this, t1 = {}, t2 = type$.String, t3 = type$.int, missingColorCountPerCategory = P.LinkedHashMap_LinkedHashMap$_empty(t2, t3); t1.maxMissing = 0; t4 = t1.hasSpecifiedCategory = false; t5 = J.getInterceptor$ax(seriesList); t5.forEach$1(seriesList, new B.BaseSeriesRenderer_assignMissingColors_closure(t1, _this, missingColorCountPerCategory)); t6 = t1.maxMissing; if (t6 > 0) { if (!emptyCategoryUsesSinglePalette ? !t1.hasSpecifiedCategory : t4) { $.$get$StyleFactory__styleFactory().toString; t2 = $.$get$MaterialPalette__orderedPalettes(); t2.toString; palettes = H.SubListIterable$(t2, 0, H.checkNotNullable(t6, "count", t3), t2.$ti._eval$1("ListIterable.E")).toList$0(0); t1.index = 0; t5.forEach$1(seriesList, new B.BaseSeriesRenderer_assignMissingColors_closure0(t1, _this, palettes)); return; } $.$get$StyleFactory__styleFactory().toString; t4 = missingColorCountPerCategory.get$length(missingColorCountPerCategory); t6 = $.$get$MaterialPalette__orderedPalettes(); t6.toString; colorPalettes = H.SubListIterable$(t6, 0, H.checkNotNullable(t4, "count", t3), t6.$ti._eval$1("ListIterable.E")).toList$0(0); colorsByCategory = P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_Color); t1.index = 0; missingColorCountPerCategory.get$keys(missingColorCountPerCategory).forEach$1(0, new B.BaseSeriesRenderer_assignMissingColors_closure1(t1, colorsByCategory, colorPalettes, missingColorCountPerCategory)); t5.forEach$1(seriesList, new B.BaseSeriesRenderer_assignMissingColors_closure2(_this, missingColorCountPerCategory, colorsByCategory)); } else t5.forEach$1(seriesList, new B.BaseSeriesRenderer_assignMissingColors_closure3(_this)); t5.forEach$1(seriesList, new B.BaseSeriesRenderer_assignMissingColors_closure4(_this)); }, measure$2: function(_, maxWidth, maxHeight) { return null; }, layout$2: function(_, componentBounds, drawAreaBounds) { this._drawAreaBounds = drawAreaBounds; }, get$componentBounds: function() { return this._drawAreaBounds; }, get$isSeriesRenderer: function() { return true; }, isPointWithinBounds$2: function(chartPoint, bounds) { var t1; if (bounds != null) { if (!J.containsPoint$1$x(bounds, chartPoint)) return false; } else { t1 = this._drawAreaBounds; if (t1 == null || !J.containsPoint$1$x(t1, chartPoint)) return false; } return true; }, $isSeriesRenderer: 1, $isLayoutView: 1, get$layoutConfig: function() { return this.layoutConfig; }, set$graphicsFactory: function(val) { return this.graphicsFactory = val; } }; B.BaseSeriesRenderer_assignMissingColors_closure.prototype = { call$1: function(series) { var t2, missingCnt, _s11_ = "__default__", t1 = series.colorFn; if ((t1 == null && series.seriesColor != null ? series.colorFn = new B.BaseSeriesRenderer_assignMissingColors__closure3(series) : t1) == null) { t1 = this.missingColorCountPerCategory; t2 = t1.$index(0, _s11_); missingCnt = (t2 == null ? 0 : t2) + 1; t1.$indexSet(0, _s11_, missingCnt); t1 = this._box_0; t1.maxMissing = Math.max(t1.maxMissing, missingCnt); } }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; B.BaseSeriesRenderer_assignMissingColors__closure3.prototype = { call$1: function(_) { var t1 = this.series.seriesColor; t1.toString; return t1; }, $signature: 161 }; B.BaseSeriesRenderer_assignMissingColors_closure0.prototype = { call$1: function(series) { var t2, color, exception, t1 = series.colorFn; if (t1 == null) { t1 = this.palettes; t2 = this._box_0; color = t1[C.JSInt_methods.$mod(t2.index, t1.length)].get$shadeDefault(); ++t2.index; series.colorFn = new B.BaseSeriesRenderer_assignMissingColors__closure2(color); if (series.seriesColor == null) series.seriesColor = color; } else if (series.seriesColor == null) try { series.seriesColor = t1.call$1(0); } catch (exception) { H.unwrapException(exception); t1 = $.$get$StyleFactory__styleFactory(); t1.toString; series.seriesColor = C.Color_ePM; } }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; B.BaseSeriesRenderer_assignMissingColors__closure2.prototype = { call$1: function(_) { return this.color; }, $signature: 161 }; B.BaseSeriesRenderer_assignMissingColors_closure1.prototype = { call$1: function(category) { var _this = this, t1 = _this.colorPalettes, t2 = _this._box_0; _this.colorsByCategory.$indexSet(0, category, t1[C.JSInt_methods.$mod(t2.index, t1.length)].makeShades$1(t2.maxMissing)); ++t2.index; _this.missingColorCountPerCategory.$indexSet(0, category, 0); }, $signature: 88 }; B.BaseSeriesRenderer_assignMissingColors_closure2.prototype = { call$1: function(series) { var t1, t2, _s11_ = "__default__"; if (series.colorFn == null) { t1 = this.missingColorCountPerCategory; t2 = t1.$index(0, _s11_); t2.toString; t1.$indexSet(0, _s11_, t2 + 1); series.colorFn = new B.BaseSeriesRenderer_assignMissingColors__closure0(this.colorsByCategory.$index(0, _s11_)[t2]); } if (series.fillColorFn == null) series.fillColorFn = new B.BaseSeriesRenderer_assignMissingColors__closure1(series); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; B.BaseSeriesRenderer_assignMissingColors__closure0.prototype = { call$1: function(_) { return this.color; }, $signature: 161 }; B.BaseSeriesRenderer_assignMissingColors__closure1.prototype = { call$1: function(index) { return this.series.colorFn.call$1(index); }, $signature: 161 }; B.BaseSeriesRenderer_assignMissingColors_closure3.prototype = { call$1: function(series) { if (series.fillColorFn == null) series.fillColorFn = new B.BaseSeriesRenderer_assignMissingColors__closure(series); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; B.BaseSeriesRenderer_assignMissingColors__closure.prototype = { call$1: function(index) { return this.series.colorFn.call$1(index); }, $signature: 161 }; B.BaseSeriesRenderer_assignMissingColors_closure4.prototype = { call$1: function(series) { var exception, t1; if (series.seriesColor == null) try { series.seriesColor = series.colorFn.call$1(0); } catch (exception) { H.unwrapException(exception); t1 = $.$get$StyleFactory__styleFactory(); t1.toString; series.seriesColor = C.Color_ePM; } }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(MutableSeries<1>)"); } }; K.RendererAttributes.prototype = {}; N.IdentityConverter.prototype = {}; M.LayoutConfig.prototype = {}; M.MarginSpec.prototype = { getMinPixels$1: function(totalPixels) { var _minPixel = this._minPixel; if (_minPixel != null) return _minPixel; else return 0; }, getMaxPixels$1: function(totalPixels) { var _maxPercent = this._maxPercent; if (_maxPercent != null) return C.JSNumber_methods.round$0(totalPixels * (_maxPercent / 100)); else return totalPixels; } }; D.LayoutManagerImpl.prototype = { get$_paintOrderedViews: function() { var t1 = this.__LayoutManagerImpl__paintOrderedViews; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_paintOrderedViews")) : t1; }, get$_positionOrderedViews: function() { var t1 = this.__LayoutManagerImpl__positionOrderedViews; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_positionOrderedViews")) : t1; }, get$_measurements: function() { var t1 = this.__LayoutManagerImpl__measurements; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_measurements")) : t1; }, get$_layout_manager_impl$_drawAreaBounds: function() { var t1 = this.__LayoutManagerImpl__drawAreaBounds; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_drawAreaBounds")) : t1; }, removeView$1: function(view) { var _this = this; if (C.JSArray_methods.remove$1(_this._views, view)) _this._viewsNeedPaintSort = _this._viewsNeedPositionSort = _this._drawAreaBoundsOutdated = true; }, get$paintOrderedViews: function() { var _this = this; if (_this._viewsNeedPaintSort) { _this.__LayoutManagerImpl__paintOrderedViews = P.List_List$of(_this._views, true, type$.LayoutView); J.sort$1$ax(_this.get$_paintOrderedViews(), new D.LayoutManagerImpl_paintOrderedViews_closure()); _this._viewsNeedPaintSort = false; } return _this.get$_paintOrderedViews(); }, get$positionOrderedViews: function() { var _this = this; if (_this._viewsNeedPositionSort) { _this.__LayoutManagerImpl__positionOrderedViews = P.List_List$of(_this._views, true, type$.LayoutView); J.sort$1$ax(_this.get$_positionOrderedViews(), new D.LayoutManagerImpl_positionOrderedViews_closure()); _this._viewsNeedPositionSort = false; } return _this.get$_positionOrderedViews(); }, get$drawableLayoutAreaBounds: function() { var t3, t1 = this._views, t2 = H._arrayInstanceType(t1)._eval$1("WhereIterable<1>"), drawableViews = new H.WhereIterable(t1, new D.LayoutManagerImpl_drawableLayoutAreaBounds_closure(), t2), componentBounds = drawableViews.get$first(drawableViews).get$componentBounds(); if (componentBounds != null) for (t1 = H.SkipIterable_SkipIterable(drawableViews, 1, t2._eval$1("Iterable.E")), t2 = J.get$iterator$ax(t1._iterable), t1 = new H.SkipIterator(t2, t1._skipCount, H._instanceType(t1)._eval$1("SkipIterator<1>")); t1.moveNext$0();) { t3 = t2.get$current(t2); if (t3.get$componentBounds() != null) { t3 = t3.get$componentBounds(); t3.toString; componentBounds = J.boundingBox$1$x(componentBounds, t3); } } else componentBounds = P.Rectangle$(0, 0, 0, 0, type$.int); return componentBounds; }, measure$2: function(_, width, height) { var t1, t2, _this = this, topViews = _this._viewsForPositions$2(C.LayoutPosition_2, C.LayoutPosition_3), rightViews = _this._viewsForPositions$2(C.LayoutPosition_6, C.LayoutPosition_7), bottomViews = _this._viewsForPositions$2(C.LayoutPosition_0, C.LayoutPosition_1), leftViews = _this._viewsForPositions$2(C.LayoutPosition_4, C.LayoutPosition_5), measurements = _this._layout_manager_impl$_measure$7$bottomViews$leftViews$rightViews$topViews$useMax(width, height, bottomViews, leftViews, rightViews, topViews, true), secondMeasurements = _this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, measurements, rightViews, topViews, true); measurements = measurements.leftWidth !== secondMeasurements.leftWidth || measurements.rightWidth !== secondMeasurements.rightWidth || measurements.topHeight !== secondMeasurements.topHeight || measurements.bottomHeight !== secondMeasurements.bottomHeight ? _this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, secondMeasurements, rightViews, topViews, false) : secondMeasurements; _this.__LayoutManagerImpl__measurements = measurements; t1 = measurements.leftWidth; t2 = measurements.topHeight; _this.__LayoutManagerImpl__drawAreaBounds = P.Rectangle$(t1, t2, Math.max(20, width - t1 - measurements.rightWidth), Math.max(20, height - measurements.bottomHeight - t2), type$.int); _this._drawAreaBoundsOutdated = false; }, layout$2: function(_, width, height) { var _this = this, topViews = _this._viewsForPositions$2(C.LayoutPosition_2, C.LayoutPosition_3), rightViews = _this._viewsForPositions$2(C.LayoutPosition_6, C.LayoutPosition_7), bottomViews = _this._viewsForPositions$2(C.LayoutPosition_0, C.LayoutPosition_1), leftViews = _this._viewsForPositions$2(C.LayoutPosition_4, C.LayoutPosition_5), drawAreaViews = _this._viewsForPositions$1(C.LayoutPosition_8), fullBounds = P.Rectangle$(0, 0, width, height, type$.int); new B.LeftMarginLayoutStrategy().layout$4(0, leftViews, _this.get$_measurements().leftSizes, fullBounds, _this.get$_layout_manager_impl$_drawAreaBounds()); new B.RightMarginLayoutStrategy().layout$4(0, rightViews, _this.get$_measurements().rightSizes, fullBounds, _this.get$_layout_manager_impl$_drawAreaBounds()); new B.BottomMarginLayoutStrategy().layout$4(0, bottomViews, _this.get$_measurements().bottomSizes, fullBounds, _this.get$_layout_manager_impl$_drawAreaBounds()); new B.TopMarginLayoutStrategy().layout$4(0, topViews, _this.get$_measurements().topSizes, fullBounds, _this.get$_layout_manager_impl$_drawAreaBounds()); drawAreaViews.forEach$1(0, new D.LayoutManagerImpl_layout_closure(_this)); }, _viewsForPositions$2: function(p1, p2) { return J.where$1$ax(this.get$positionOrderedViews(), new D.LayoutManagerImpl__viewsForPositions_closure(p1, p2)); }, _viewsForPositions$1: function(p1) { return this._viewsForPositions$2(p1, null); }, _layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax: function(width, height, bottomViews, leftViews, previousMeasurements, rightViews, topViews, useMax) { var maxTopHeight, t5, leftWidth, rightWidth, bottomHeight, topHeight, adjustedHeight, leftSizes, rightSizes, adjustedWidth, bottomSizes, topSizes, _null = null, t1 = this.config, t2 = t1.leftSpec, maxLeftWidth = t2.getMaxPixels$1(width), t3 = t1.rightSpec, maxRightWidth = t3.getMaxPixels$1(width), t4 = t1.bottomSpec, maxBottomHeight = t4.getMaxPixels$1(height); t1 = t1.topSpec; maxTopHeight = t1.getMaxPixels$1(height); t5 = previousMeasurements == null; leftWidth = t5 ? _null : previousMeasurements.leftWidth; if (leftWidth == null) leftWidth = maxLeftWidth; rightWidth = t5 ? _null : previousMeasurements.rightWidth; if (rightWidth == null) rightWidth = maxRightWidth; bottomHeight = t5 ? _null : previousMeasurements.bottomHeight; if (bottomHeight == null) bottomHeight = maxBottomHeight; topHeight = t5 ? _null : previousMeasurements.topHeight; if (topHeight == null) topHeight = maxTopHeight; adjustedHeight = !t5 ? height - bottomHeight - topHeight : height; t5 = useMax ? maxLeftWidth : leftWidth; leftSizes = new B.LeftMarginLayoutStrategy().measure$4$fullHeight$height$maxWidth(0, leftViews, height, adjustedHeight, t5); leftWidth = Math.max(leftSizes._total, t2.getMinPixels$1(width)); t2 = useMax ? maxRightWidth : rightWidth; rightSizes = new B.RightMarginLayoutStrategy().measure$4$fullHeight$height$maxWidth(0, rightViews, height, adjustedHeight, t2); rightWidth = Math.max(rightSizes._total, t3.getMinPixels$1(width)); adjustedWidth = width - leftWidth - rightWidth; t2 = useMax ? maxBottomHeight : bottomHeight; bottomSizes = new B.BottomMarginLayoutStrategy().measure$4$fullWidth$maxHeight$width(0, bottomViews, width, t2, adjustedWidth); bottomHeight = Math.max(bottomSizes._total, t4.getMinPixels$1(height)); t2 = useMax ? maxTopHeight : topHeight; topSizes = new B.TopMarginLayoutStrategy().measure$4$fullWidth$maxHeight$width(0, topViews, width, t2, adjustedWidth); return new D._MeasuredSizes(leftWidth, leftSizes, rightWidth, rightSizes, Math.max(topSizes._total, t1.getMinPixels$1(height)), topSizes, bottomHeight, bottomSizes); }, _layout_manager_impl$_measure$7$bottomViews$leftViews$rightViews$topViews$useMax: function(width, height, bottomViews, leftViews, rightViews, topViews, useMax) { return this._layout_manager_impl$_measure$8$bottomViews$leftViews$previousMeasurements$rightViews$topViews$useMax(width, height, bottomViews, leftViews, null, rightViews, topViews, useMax); } }; D.LayoutManagerImpl_paintOrderedViews_closure.prototype = { call$2: function(v1, v2) { var t2, t1 = v1.get$layoutConfig().paintOrder; t1.toString; t2 = v2.get$layoutConfig().paintOrder; t2.toString; return C.JSInt_methods.compareTo$1(t1, t2); }, "call*": "call$2", $requiredArgCount: 2, $signature: 699 }; D.LayoutManagerImpl_positionOrderedViews_closure.prototype = { call$2: function(v1, v2) { var t2, t1 = v1.get$layoutConfig().positionOrder; t1.toString; t2 = v2.get$layoutConfig().positionOrder; t2.toString; return C.JSInt_methods.compareTo$1(t1, t2); }, "call*": "call$2", $requiredArgCount: 2, $signature: 699 }; D.LayoutManagerImpl_drawableLayoutAreaBounds_closure.prototype = { call$1: function(view) { return view.get$isSeriesRenderer(); }, $signature: 696 }; D.LayoutManagerImpl_layout_closure.prototype = { call$1: function(view) { var t1 = this.$this; return view.layout$2(0, t1.get$_layout_manager_impl$_drawAreaBounds(), t1.get$_layout_manager_impl$_drawAreaBounds()); }, $signature: 132 }; D.LayoutManagerImpl__viewsForPositions_closure.prototype = { call$1: function(view) { var t1; if (view.get$layoutConfig().position !== this.p1) { t1 = this.p2; t1 = t1 != null && view.get$layoutConfig().position === t1; } else t1 = true; return t1; }, $signature: 696 }; D._MeasuredSizes.prototype = {}; B.SizeList.prototype = { $index: function(_, i) { return this._layout_margin_strategy$_sizes[i]; }, get$length: function(_) { return this._layout_margin_strategy$_sizes.length; }, add$1: function(_, size) { this._layout_margin_strategy$_sizes.push(size); this._total = this._total + size; } }; B._DesiredViewSizes.prototype = { adjustedTo$1: function(maxSize) { var delta, t3, i, t4, t5, viewAvailablePx, t6, t1 = this.preferredSizes, t2 = t1._total; if (maxSize < t2) { delta = t2 - maxSize; for (t3 = t1._layout_margin_strategy$_sizes, i = t3.length - 1, t4 = this.minimumSizes._layout_margin_strategy$_sizes; i >= 0; --i, t2 = t6) { t5 = t3[i]; viewAvailablePx = t5 - t4[i]; if (viewAvailablePx < delta) { t6 = -viewAvailablePx; t3[i] = t5 + t6; t6 = t2 + t6; t1._total = t6; delta -= viewAvailablePx; } else { t4 = -delta; t3[i] = t5 + t4; t1._total = t2 + t4; return; } } } } }; B.VerticalMarginStrategy.prototype = { measure$4$fullHeight$height$maxWidth: function(_, views, fullHeight, height, maxWidth) { var t2, t3, measuredWidths, t1 = {}; t1.maxWidth = maxWidth; t2 = type$.JSArray_int; t3 = new B.SizeList(H.setRuntimeTypeInfo([], t2)); measuredWidths = new B._DesiredViewSizes(t3, new B.SizeList(H.setRuntimeTypeInfo([], t2))); t1.remainingWidth = maxWidth; views.forEach$1(0, new B.VerticalMarginStrategy_measure_closure(t1, fullHeight, height, measuredWidths)); measuredWidths.adjustedTo$1(t1.maxWidth); return t3; } }; B.VerticalMarginStrategy_measure_closure.prototype = { call$1: function(view) { var size, _this = this, availableHeight = (view.get$layoutConfig().get$isFullPosition() ? _this.fullHeight : _this.height) - 0, t1 = _this._box_0, remainingWidth = t1.remainingWidth = t1.remainingWidth - 0; t1.maxWidth = t1.maxWidth - 0; if (remainingWidth > 0 || availableHeight > 0) { size = view.measure$2(0, remainingWidth, availableHeight); t1.remainingWidth = t1.remainingWidth - size.preferredWidth; } else size = C.ViewMeasuredSizes_0_0_0_0; t1 = _this.measuredWidths; t1.preferredSizes.add$1(0, size.preferredWidth); t1.minimumSizes.add$1(0, size.minWidth); }, $signature: 132 }; B.LeftMarginLayoutStrategy.prototype = { layout$4: function(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsRight = J.get$left$x(drawAreaBounds); t1.i = 0; views.forEach$1(0, new B.LeftMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; B.LeftMarginLayoutStrategy_layout_closure.prototype = { call$1: function(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, width = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], left = t1.prevBoundsRight - 0 - width, t2 = params.get$isFullPosition() ? _this.fullBounds.height : J.get$height$x(_this.drawAreaBounds), t3 = params.get$isFullPosition() ? _this.fullBounds.top : J.get$top$x(_this.drawAreaBounds); t1.prevBoundsRight = left - 0; view.layout$2(0, P.Rectangle$(left, 0 + t3, width, t2 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 132 }; B.RightMarginLayoutStrategy.prototype = { layout$4: function(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsLeft = J.get$right$x(drawAreaBounds); t1.i = 0; views.forEach$1(0, new B.RightMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; B.RightMarginLayoutStrategy_layout_closure.prototype = { call$1: function(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, width = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], t2 = t1.prevBoundsLeft, t3 = params.get$isFullPosition() ? _this.fullBounds.height : J.get$height$x(_this.drawAreaBounds), t4 = params.get$isFullPosition() ? _this.fullBounds.top : J.get$top$x(_this.drawAreaBounds); t1.prevBoundsLeft = t2 + width; view.layout$2(0, P.Rectangle$(t2, 0 + t4, width, t3 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 132 }; B.HorizontalMarginStrategy.prototype = { measure$4$fullWidth$maxHeight$width: function(_, views, fullWidth, maxHeight, width) { var t2, t3, measuredHeights, t1 = {}; t1.maxHeight = maxHeight; t2 = type$.JSArray_int; t3 = new B.SizeList(H.setRuntimeTypeInfo([], t2)); measuredHeights = new B._DesiredViewSizes(t3, new B.SizeList(H.setRuntimeTypeInfo([], t2))); t1.remainingHeight = maxHeight; views.forEach$1(0, new B.HorizontalMarginStrategy_measure_closure(t1, fullWidth, width, measuredHeights)); measuredHeights.adjustedTo$1(t1.maxHeight); return t3; } }; B.HorizontalMarginStrategy_measure_closure.prototype = { call$1: function(view) { var size, _this = this, availableWidth = (view.get$layoutConfig().get$isFullPosition() ? _this.fullWidth : _this.width) - 0, t1 = _this._box_0, remainingHeight = t1.remainingHeight = t1.remainingHeight - 0; t1.maxHeight = t1.maxHeight - 0; if (remainingHeight > 0 || availableWidth > 0) { size = view.measure$2(0, availableWidth, remainingHeight); t1.remainingHeight = t1.remainingHeight - size.preferredHeight; } else size = C.ViewMeasuredSizes_0_0_0_0; t1 = _this.measuredHeights; t1.preferredSizes.add$1(0, size.preferredHeight); t1.minimumSizes.add$1(0, size.minHeight); }, $signature: 132 }; B.TopMarginLayoutStrategy.prototype = { layout$4: function(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsBottom = J.get$top$x(drawAreaBounds); t1.i = 0; views.forEach$1(0, new B.TopMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; B.TopMarginLayoutStrategy_layout_closure.prototype = { call$1: function(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, height = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], $top = t1.prevBoundsBottom - height - 0, t2 = params.get$isFullPosition() ? _this.fullBounds.width : J.get$width$x(_this.drawAreaBounds), t3 = params.get$isFullPosition() ? _this.fullBounds.left : J.get$left$x(_this.drawAreaBounds); t1.prevBoundsBottom = $top - 0; view.layout$2(0, P.Rectangle$(0 + t3, $top, t2 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 132 }; B.BottomMarginLayoutStrategy.prototype = { layout$4: function(_, views, measuredSizes, fullBounds, drawAreaBounds) { var t1 = {}; t1.prevBoundsTop = J.get$bottom$x(drawAreaBounds); t1.i = 0; views.forEach$1(0, new B.BottomMarginLayoutStrategy_layout_closure(t1, measuredSizes, fullBounds, drawAreaBounds)); } }; B.BottomMarginLayoutStrategy_layout_closure.prototype = { call$1: function(view) { var _this = this, params = view.get$layoutConfig(), t1 = _this._box_0, height = _this.measuredSizes._layout_margin_strategy$_sizes[t1.i], t2 = t1.prevBoundsTop, t3 = params.get$isFullPosition() ? _this.fullBounds.width : J.get$width$x(_this.drawAreaBounds), t4 = params.get$isFullPosition() ? _this.fullBounds.left : J.get$left$x(_this.drawAreaBounds); t1.prevBoundsTop = t2 + height; view.layout$2(0, P.Rectangle$(0 + t4, t2, t3 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, $signature: 132 }; X.LayoutPosition.prototype = { toString$0: function(_) { return this._layout_view$_name; } }; X.ViewMargin.prototype = {}; X.LayoutViewConfig.prototype = { get$isFullPosition: function() { var t1 = this.position; return t1 === C.LayoutPosition_1 || t1 === C.LayoutPosition_3 || t1 === C.LayoutPosition_7 || t1 === C.LayoutPosition_5; }, get$id: function() { return null; } }; X.ViewMeasuredSizes.prototype = {}; X.LayoutView.prototype = {}; T.LineRenderer.prototype = { get$_hasMeasureBounds: function() { var t1 = this.__LineRenderer__hasMeasureBounds; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hasMeasureBounds")) : t1; }, layout$2: function(_, componentBounds, drawAreaBounds) { this.super$BaseSeriesRenderer$layout(0, componentBounds, drawAreaBounds); }, configureSeries$1: function(seriesList) { this.assignMissingColors$2$emptyCategoryUsesSinglePalette(seriesList, false); J.forEach$1$ax(seriesList, new T.LineRenderer_configureSeries_closure(this)); }, preprocessSeries$1: function(seriesList) { var t1, _box_0 = {}; _box_0.stackIndex = 0; t1 = J.getInterceptor$ax(seriesList); this.__LineRenderer__hasMeasureBounds = t1.any$1(seriesList, new T.LineRenderer_preprocessSeries_closure(this)); t1.forEach$1(seriesList, new T.LineRenderer_preprocessSeries_closure0(_box_0, this)); }, _mergeIntoSeriesMap$1: function(seriesList) { var t1, newLineMap = H.setRuntimeTypeInfo([], this.$ti._eval$1("JSArray>>>")); J.forEach$1$ax(seriesList, new T.LineRenderer__mergeIntoSeriesMap_closure(this, seriesList, newLineMap)); t1 = this._seriesLineMap; C.JSArray_methods.addAll$1(newLineMap, t1.get$entries(t1)); t1.clear$0(0); t1.addEntries$1(t1, newLineMap); }, update$2: function(_, seriesList, isAnimatingThisDraw) { var t1, previousPointList, previousInitialPointList, _this = this; C.JSArray_methods.set$length(_this._line_renderer$_currentKeys, 0); t1 = _this.$ti._eval$1("JSArray>>"); previousPointList = H.setRuntimeTypeInfo([], t1); previousInitialPointList = H.setRuntimeTypeInfo([], t1); _this._mergeIntoSeriesMap$1(seriesList); J.forEach$1$ax(seriesList, new T.LineRenderer_update_closure(_this, previousPointList, previousInitialPointList)); _this._seriesLineMap.forEach$1(0, new T.LineRenderer_update_closure0(_this)); }, _createLineAndAreaElements$4: function(series, styleSegment, previousPointList, initializeFromZero) { var t4, domainAxis, startPosition, endPosition, positionExtent, lineElements, index, linePointList, lineStyleKey, areaElements, boundsElements, boundsPointList, boundsStyleKey, _this = this, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, C.AttributeKey_kWM))), color = styleSegment.color, areaColor = styleSegment.areaColor, dashPattern = styleSegment.dashPattern, domainExtent = styleSegment.domainExtent, strokeWidthPx = styleSegment.strokeWidthPx, styleKey = styleSegment.styleKey, pointList = _this._createPointListForSeries$2(series, initializeFromZero), segmentsList = _this._createLineAndAreaSegmentsForSeries$4(pointList, previousPointList, series, initializeFromZero), lineSegments = segmentsList[0], boundsSegment = segmentsList[2], t3 = _this._line_renderer$_currentKeys; t3.push(styleKey); t4 = _this.$ti; domainAxis = t4._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, C.AttributeKey_OBU))); startPosition = domainAxis.getLocation$1(domainExtent._line_renderer$_start); if (startPosition == null) { t1 = _this._drawAreaBounds; t1.toString; t1 = J.get$left$x(t1); t1.toString; startPosition = t1; } endPosition = domainAxis.getLocation$1(domainExtent._line_renderer$_end); if (endPosition == null) { t1 = _this._drawAreaBounds; t1.toString; t1 = J.get$right$x(t1); t1.toString; endPosition = t1; } positionExtent = new T._Range(startPosition, endPosition, type$._Range_num); lineElements = H.setRuntimeTypeInfo([], t4._eval$1("JSArray<_LineRendererElement<1>>")); for (t1 = t4._eval$1("_LineRendererElement<1>"), index = 0; index < lineSegments.length; ++index) { linePointList = lineSegments[index]; lineStyleKey = styleKey + "__line__" + index; t3.push(lineStyleKey); lineElements.push(new T._LineRendererElement(linePointList, color, areaColor, dashPattern, domainExtent, measureAxis.getLocation$1(0), positionExtent, strokeWidthPx, lineStyleKey, false, t1)); } t1 = t4._eval$1("JSArray<_AreaRendererElement<1>>"); areaElements = H.setRuntimeTypeInfo([], t1); boundsElements = H.setRuntimeTypeInfo([], t1); if (_this.get$_hasMeasureBounds()) for (t1 = t4._eval$1("_AreaRendererElement<1>"), index = 0; index < boundsSegment.length; ++index) { boundsPointList = boundsSegment[index]; boundsStyleKey = styleKey + "__bounds_" + index; t3.push(boundsStyleKey); t2 = measureAxis.getLocation$1(0); t2.toString; boundsElements.push(new T._AreaRendererElement(boundsPointList, color, areaColor, domainExtent, t2, positionExtent, boundsStyleKey, t1)); } return H.setRuntimeTypeInfo([lineElements, areaElements, pointList, boundsElements], type$.JSArray_Object); }, _createPointListForSeries$2: function(series, initializeFromZero) { var pointList, index, datum, measure, measureOffset, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, C.AttributeKey_OBU))), domainFn = series.domainFn, measureAxis = type$.ImmutableAxis_num._as(t2._as(t1.$index(0, C.AttributeKey_kWM))), measureFn = series.measureFn; t1 = series.measureOffsetFn; t1.toString; pointList = H.setRuntimeTypeInfo([], t3._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = series.data, index = 0; index < t2.length; ++index) { datum = t2[index]; measure = measureFn.call$1(index); if (measure != null && initializeFromZero) measure = 0; measureOffset = t1.call$1(index); if (measureOffset != null && initializeFromZero) measureOffset = 0; pointList.push(this._getPoint$8$index(datum, domainFn.call$1(index), series, domainAxis, measure, measureOffset, measureAxis, index)); } return pointList; }, _createLineAndAreaSegmentsForSeries$4: function(pointList, previousPointList, series, initializeFromZero) { var endPointIndex, startPointIndex, index, _null = null, t1 = this.$ti, t2 = t1._eval$1("JSArray>>"), lineSegments = H.setRuntimeTypeInfo([], t2), areaSegments = H.setRuntimeTypeInfo([], t2), boundsSegments = H.setRuntimeTypeInfo([], t2), seriesHasMeasureBounds = series.measureUpperBoundFn != null && series.measureLowerBoundFn != null; for (endPointIndex = _null, startPointIndex = endPointIndex, index = 0; index < pointList.length; ++index) { if (pointList[index].y == null) { if (startPointIndex == null) continue; endPointIndex.toString; t2 = endPointIndex + 1; lineSegments.push(C.JSArray_methods.sublist$2(pointList, startPointIndex, t2)); if (startPointIndex !== endPointIndex) if (seriesHasMeasureBounds) boundsSegments.push(this._createBoundsSegment$3(C.JSArray_methods.sublist$2(pointList, startPointIndex, t2), series, initializeFromZero)); endPointIndex = _null; startPointIndex = endPointIndex; continue; } if (startPointIndex == null) startPointIndex = index; endPointIndex = index; } if (startPointIndex != null && endPointIndex != null) { t2 = endPointIndex + 1; lineSegments.push(C.JSArray_methods.sublist$2(pointList, startPointIndex, t2)); if (startPointIndex !== endPointIndex) if (seriesHasMeasureBounds) boundsSegments.push(this._createBoundsSegment$3(C.JSArray_methods.sublist$2(pointList, startPointIndex, t2), series, initializeFromZero)); } return H.setRuntimeTypeInfo([lineSegments, areaSegments, boundsSegments], t1._eval$1("JSArray>>>")); }, _createBoundsSegment$3: function(pointList, series, initializeFromZero) { var t2, measureAxis = type$.ImmutableAxis_num._as(type$.nullable_Axis_Object._as(series._attrs._registry.$index(0, C.AttributeKey_kWM))), t1 = this.$ti, areaPointList = H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_DatumPoint<1>>")); t1 = t1._eval$1("_DatumPoint<1>"); t2 = H._arrayInstanceType(pointList); C.JSArray_methods.addAll$1(areaPointList, new H.MappedListIterable(pointList, new T.LineRenderer__createBoundsSegment_closure(this, initializeFromZero, measureAxis, series), t2._eval$1("@<1>")._bind$1(t1)._eval$1("MappedListIterable<1,2>"))); t2 = t2._eval$1("ReversedListIterable<1>"); C.JSArray_methods.addAll$1(areaPointList, new H.MappedListIterable(new H.ReversedListIterable(pointList, t2), new T.LineRenderer__createBoundsSegment_closure0(this, initializeFromZero, measureAxis, series), t2._eval$1("@")._bind$1(t1)._eval$1("MappedListIterable<1,2>"))); return areaPointList; }, onAttach$1: function(chart) { this.super$BaseCartesianRenderer$onAttach(chart); this._line_renderer$_chart = chart; }, paint$2: function(canvas, animationPercent) { var keysToRemove, t1, _this = this; if (animationPercent === 1) { keysToRemove = H.setRuntimeTypeInfo([], type$.JSArray_String); t1 = _this._seriesLineMap; t1.forEach$1(0, new T.LineRenderer_paint_closure(_this, keysToRemove)); C.JSArray_methods.forEach$1(keysToRemove, t1.get$remove(t1)); } _this._seriesLineMap.forEach$1(0, new T.LineRenderer_paint_closure0(_this, animationPercent, canvas)); }, _getClipBoundsForExtent$1: function(extent) { var t2, t3, t4, t5, left, right, t1 = this._drawAreaBounds; t1.toString; t2 = J.getInterceptor$x(t1); if (this.get$isRtl()) { t3 = extent._line_renderer$_end; t4 = t2.get$left(t1); t5 = t2.get$right(t1); left = Math.min(Math.max(t3, H.checkNum(t4)), H.checkNum(t5)); } else { t3 = extent._line_renderer$_start; t4 = t2.get$left(t1); t5 = t2.get$right(t1); left = Math.min(Math.max(t3, H.checkNum(t4)), H.checkNum(t5)); } if (this.get$isRtl()) { t3 = extent._line_renderer$_start; t4 = t2.get$left(t1); t5 = t2.get$right(t1); right = Math.min(Math.max(t3, H.checkNum(t4)), H.checkNum(t5)); } else { t3 = extent._line_renderer$_end; t4 = t2.get$left(t1); t5 = t2.get$right(t1); right = Math.min(Math.max(t3, H.checkNum(t4)), H.checkNum(t5)); } return P.Rectangle$(left, t2.get$top(t1) - 5, right - left, t2.get$height(t1) + 5 + 5, type$.num); }, get$isRtl: function() { var t1 = this._line_renderer$_chart; t1 = t1 == null ? null : t1.get$context(t1).get$isRtl(); return t1 === true; }, _getPoint$8$index: function(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis, index) { var domainPosition = domainAxis.getLocation$1(domainValue), measurePosition = measureValue != null && measureOffsetValue != null ? measureAxis.getLocation$1(measureValue + measureOffsetValue) : null; return new T._DatumPoint(datum, domainValue, series, index, domainPosition, measurePosition, this.$ti._eval$1("_DatumPoint<1>")); }, _getPoint$7: function(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis) { return this._getPoint$8$index(datum, domainValue, series, domainAxis, measureValue, measureOffsetValue, measureAxis, null); }, getNearestDatumDetailPerSeries$5$selectExactEventLocation$selectOverlappingPoints: function(chartPoint, byDomain, boundsOverride, selectExactEventLocation, selectOverlappingPoints) { var t2, t3, t4, nearestPoint, nearestDomainDistance, nearestMeasureDistance, nearestRelativeDistance, t5, t6, _i, p, t7, t8, measureDistance, domainDistance, relativeDistance, _this = this, _null = null, t1 = _this.$ti, nearest = H.setRuntimeTypeInfo([], t1._eval$1("JSArray>")); if (!_this.isPointWithinBounds$2(chartPoint, boundsOverride)) return nearest; for (t2 = _this._seriesLineMap, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2), t3 = type$.Point_double, t1 = t1._eval$1("DatumDetails<1>"); t2.moveNext$0();) { for (t4 = J.get$iterator$ax(t2.get$current(t2)), nearestPoint = _null, nearestDomainDistance = 10000, nearestMeasureDistance = 10000, nearestRelativeDistance = 10000; t4.moveNext$0();) { t5 = t4.get$current(t4); if (t5.get$overlaySeries()) continue; for (t5 = t5.allPoints, t6 = t5.length, _i = 0; _i < t5.length; t5.length === t6 || (0, H.throwConcurrentModificationError)(t5), ++_i) { p = t5[_i]; t7 = p.x; t7.toString; t8 = _this._drawAreaBounds; t8.toString; if (!(t7 < J.get$left$x(t8))) { t8 = _this._drawAreaBounds; t8.toString; t8 = t7 > J.get$right$x(t8); } else t8 = true; if (t8) continue; t8 = p.y; if (t8 != null) { measureDistance = Math.abs(t8 - chartPoint.y); domainDistance = Math.abs(t7 - chartPoint.x); relativeDistance = chartPoint.distanceTo$1(new P.Point(t7, t8, t3)); } else { measureDistance = 1 / 0; relativeDistance = 1 / 0; domainDistance = 1 / 0; } if (!(domainDistance < nearestDomainDistance)) t7 = domainDistance === nearestDomainDistance && measureDistance < nearestMeasureDistance; else t7 = true; if (t7) { nearestRelativeDistance = relativeDistance; nearestMeasureDistance = measureDistance; nearestDomainDistance = domainDistance; nearestPoint = p; } } } if (nearestPoint != null) { t4 = nearestPoint.x; t5 = nearestPoint.y; nearest.push(new L.DatumDetails(nearestPoint.datum, _null, nearestPoint.domain, _null, _null, _null, _null, _null, _null, _null, _null, _null, nearestPoint.series, _null, _null, _null, _null, _null, new K.NullablePoint(t4, t5), _null, _null, _null, nearestDomainDistance, nearestMeasureDistance, nearestRelativeDistance, _null, _null, _null, _null, _null, t1)); } } return nearest; }, addPositionToDetailsForSeriesDatum$2: function(details, seriesDatum) { var _null = null, series = details.series, t1 = series._attrs._registry, t2 = type$.nullable_Axis_Object, t3 = this.$ti, point = this._getPoint$7(seriesDatum.datum, details.domain, series, t3._eval$1("ImmutableAxis<1>")._as(t2._as(t1.$index(0, C.AttributeKey_OBU))), details.measure, details.measureOffset, type$.ImmutableAxis_num._as(t2._as(t1.$index(0, C.AttributeKey_kWM)))); return L.DatumDetails_DatumDetails$from(details, _null, new K.NullablePoint(point.x, point.y), _null, _null, _null, t3._precomputed1); } }; T.LineRenderer_configureSeries_closure.prototype = { call$1: function(series) { if (series.areaColorFn == null) series.areaColorFn = new T.LineRenderer_configureSeries__closure(this.$this, series); }, $signature: function() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; T.LineRenderer_configureSeries__closure.prototype = { call$1: function(index) { var _null = null, t1 = this.series.colorFn, color = t1 == null ? _null : t1.call$1(index); if (color == null) return _null; return new K.Color0(color.r, color.g, color.b, C.JSNumber_methods.round$0(color.a * 0.1), _null, _null); }, $signature: 946 }; T.LineRenderer_preprocessSeries_closure.prototype = { call$1: function(series) { return series.measureUpperBoundFn != null && series.measureLowerBoundFn != null; }, $signature: function() { return this.$this.$ti._eval$1("bool(MutableSeries<1>)"); } }; T.LineRenderer_preprocessSeries_closure0.prototype = { call$1: function(series) { var t1, styleSegments, usedKeys, t2, t3, t4, t5, currentDetails, previousSegmentKey, styleSegmentsIndex, index, domain, measure, color, areaColor, dashPattern, strokeWidthPx, t6, strokeWidthPxRounded, styleKey, _null = null, colorFn = series.colorFn, areaColorFn = series.areaColorFn, domainFn = series.domainFn, measureFn = series.measureFn, strokeWidthPxFn = series.strokeWidthPxFn, dashPatternFn = series.dashPatternFn; if (dashPatternFn == null) dashPatternFn = series.dashPatternFn = new T.LineRenderer_preprocessSeries__closure(this.$this); t1 = this.$this.$ti; styleSegments = H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_LineRendererElement<1>>")); usedKeys = P.LinkedHashSet_LinkedHashSet$_empty(type$.String); for (t2 = series.data, t3 = series.id, t4 = strokeWidthPxFn == null, t5 = t1._eval$1("_Range<1>"), t1 = t1._eval$1("_LineRendererElement<1>"), currentDetails = _null, previousSegmentKey = currentDetails, styleSegmentsIndex = 0, index = 0; index < t2.length; ++index) { domain = domainFn.call$1(index); measure = measureFn.call$1(index); if (domain == null || measure == null) continue; color = colorFn.call$1(index); areaColor = areaColorFn.call$1(index); dashPattern = dashPatternFn.call$1(index); if (t4) strokeWidthPx = _null; else { t6 = strokeWidthPxFn.call$1(index); if (t6 == null) t6 = _null; strokeWidthPx = t6; } if (strokeWidthPx == null) strokeWidthPx = 2; strokeWidthPxRounded = C.JSNumber_methods.round$0(strokeWidthPx * 100) / 100; styleKey = t3 + "__" + styleSegmentsIndex + "__" + H.S(color) + "__" + H.S(dashPattern) + "__" + H.S(strokeWidthPxRounded); if (styleKey !== previousSegmentKey) { if (usedKeys._collection$_length !== 0 && usedKeys.contains$1(0, styleKey)) { ++styleSegmentsIndex; styleKey = t3 + "__" + styleSegmentsIndex + "__" + H.S(color) + "__" + H.S(dashPattern) + "__" + H.S(strokeWidthPxRounded); } if (currentDetails != null) currentDetails.domainExtent.includePoint$1(domain); currentDetails = new T._LineRendererElement(_null, color, areaColor, dashPattern, new T._Range(domain, domain, t5), _null, _null, strokeWidthPx, styleKey, false, t1); styleSegments.push(currentDetails); usedKeys.add$1(0, styleKey); previousSegmentKey = styleKey; } else currentDetails.domainExtent.includePoint$1(domain); } t1 = series._attrs._registry; t1.$indexSet(0, C.AttributeKey_Ex1, styleSegments); t1.$indexSet(0, C.AttributeKey_MYA, this._box_0.stackIndex); }, $signature: function() { return this.$this.$ti._eval$1("~(MutableSeries<1>)"); } }; T.LineRenderer_preprocessSeries__closure.prototype = { call$1: function(_) { return null; }, $signature: 530 }; T.LineRenderer__mergeIntoSeriesMap_closure.prototype = { call$1: function(series) { var t8, it, firstKey, key = series.id, t1 = this.seriesList, t2 = this.$this, t3 = J.getInterceptor$ax(t1), t4 = t2._seriesLineMap, t5 = this.newLineMap, t6 = t2.$ti, t7 = type$.$env_1_1_String._bind$1(t6._eval$1("List<_AnimatedElements<1>>"))._eval$1("MapEntry<1,2>"), checkNext = true; while (true) { if (!(checkNext && t4.get$isNotEmpty(t4))) break; t8 = t4.get$keys(t4); it = t8.get$iterator(t8); if (!it.moveNext$0()) H.throwExpression(H.IterableElementError_noElement()); firstKey = it.get$current(it); if (!t3.any$1(t1, new T.LineRenderer__mergeIntoSeriesMap__closure(t2, firstKey))) { t8 = t4.remove$1(0, firstKey); t8.toString; t5.push(new P.MapEntry(firstKey, t8, t7)); checkNext = true; } else checkNext = false; } if (!t4.containsKey$1(0, key)) t5.push(new P.MapEntry(key, H.setRuntimeTypeInfo([], t6._eval$1("JSArray<_AnimatedElements<1>>")), t7)); else { t1 = t4.remove$1(0, key); t1.toString; t5.push(new P.MapEntry(key, t1, t7)); } }, $signature: function() { return this.$this.$ti._eval$1("~(ImmutableSeries<1>)"); } }; T.LineRenderer__mergeIntoSeriesMap__closure.prototype = { call$1: function(s) { return s.id === this.firstKey; }, $signature: function() { return this.$this.$ti._eval$1("bool(ImmutableSeries<1>)"); } }; T.LineRenderer_update_closure.prototype = { call$1: function(series) { var t5, t6, t7, t8, t9, t10, startDomain, endDomain, t1 = series._attrs._registry, t2 = this.$this, t3 = t2.$ti, domainAxis = t3._eval$1("ImmutableAxis<1>")._as(type$.nullable_Axis_Object._as(t1.$index(0, C.AttributeKey_OBU))), lineKey = series.id, t4 = H._asIntQ(t1.$index(0, C.AttributeKey_MYA)); t4.toString; t5 = this.previousPointList; t3 = t3._eval$1("JSArray<_DatumPoint<1>>"); t5.push(H.setRuntimeTypeInfo([], t3)); t6 = this.previousInitialPointList; t6.push(H.setRuntimeTypeInfo([], t3)); t3 = t2._seriesLineMap.$index(0, lineKey); t3.toString; t1 = type$.nullable_List__LineRendererElement_Object._as(t1.$index(0, C.AttributeKey_Ex1)); t1.toString; t7 = J.getInterceptor$asx(t1); if (t7.get$isNotEmpty(t1) && !(domainAxis instanceof M.OrdinalAxis)) { t8 = t2._drawAreaBounds; t8.toString; t9 = J.getInterceptor$x(t8); t10 = t2.get$isRtl() ? t9.get$right(t8) : t9.get$left(t8); t10.toString; t8 = t2.get$isRtl() ? t9.get$left(t8) : t9.get$right(t8); t8.toString; startDomain = domainAxis.scale.reverse$1(0, t10); endDomain = domainAxis.scale.reverse$1(0, t8); t7.get$first(t1).domainExtent.includePoint$1(startDomain); t7.get$last(t1).domainExtent.includePoint$1(endDomain); } t7.forEach$1(t1, new T.LineRenderer_update__closure(t2, t3, t6, t4, series, t5)); }, $signature: function() { return this.$this.$ti._eval$1("~(ImmutableSeries<1>)"); } }; T.LineRenderer_update__closure.prototype = { call$1: function(styleSegment) { var t3, t4, t5, lineAndArea, lineElementList, allPointList, boundsElementList, animatingLines, index, t6, t7, animatingBounds, lineElement, boundElement, _this = this, _null = null, styleKey = styleSegment.styleKey, t1 = _this.elementsList, t2 = _this.$this, animatingElements = A.IterableExtension_firstWhereOrNull(t1, new T.LineRenderer_update___closure(t2, styleKey)); if (animatingElements != null) _this.previousInitialPointList[_this.stackIndex] = animatingElements.allPoints; else { t3 = t2.$ti; t3._eval$1("_LineRendererElement<1>")._as(styleSegment); t4 = _this.stackIndex; t5 = t4 > 0 ? _this.previousInitialPointList[t4 - 1] : _null; lineAndArea = t2._createLineAndAreaElements$4(_this.series, styleSegment, t5, true); lineElementList = t3._eval$1("List<_LineRendererElement<1>>")._as(lineAndArea[0]); t5 = t3._eval$1("List<_AreaRendererElement<1>>"); t5._as(lineAndArea[1]); allPointList = t3._eval$1("List<_DatumPoint<1>>")._as(lineAndArea[2]); boundsElementList = t5._as(lineAndArea[3]); animatingLines = H.setRuntimeTypeInfo([], t3._eval$1("JSArray<_AnimatedLine<1>>")); for (t5 = t3._eval$1("_AnimatedLine<1>"), index = 0; index < lineElementList.length; ++index) { t6 = lineElementList[index]; t7 = new T._AnimatedLine(t6.styleKey, false, t5); t7.setNewTarget$1(t6); animatingLines.push(t7); } if (t2.get$_hasMeasureBounds()) { animatingBounds = H.setRuntimeTypeInfo([], t3._eval$1("JSArray<_AnimatedArea<1>>")); for (t5 = t3._eval$1("_AnimatedArea<1>"), index = 0; index < boundsElementList.length; ++index) { t6 = boundsElementList[index]; t7 = new T._AnimatedArea(t6.styleKey, false, t5); t7.setNewTarget$1(t6); animatingBounds.push(t7); } } else animatingBounds = _null; animatingElements = new T._AnimatedElements(allPointList, _null, animatingLines, animatingBounds, styleKey, t3._eval$1("_AnimatedElements<1>")); J.add$1$ax(t1, animatingElements); _this.previousInitialPointList[t4] = allPointList; } t1 = t2.$ti; t1._eval$1("_LineRendererElement<1>")._as(styleSegment); t3 = _this.stackIndex; t4 = t3 > 0 ? _this.previousPointList[t3 - 1] : _null; lineAndArea = t2._createLineAndAreaElements$4(_this.series, styleSegment, t4, false); lineElementList = t1._eval$1("List<_LineRendererElement<1>>")._as(lineAndArea[0]); t4 = t1._eval$1("List<_AreaRendererElement<1>>"); t4._as(lineAndArea[1]); allPointList = t1._eval$1("List<_DatumPoint<1>>")._as(lineAndArea[2]); boundsElementList = t4._as(lineAndArea[3]); for (t4 = animatingElements.lines, t5 = t1._eval$1("_AnimatedLine<1>"), index = 0; index < lineElementList.length; ++index) { lineElement = lineElementList[index]; if (index >= t4.length) t4.push(new T._AnimatedLine(lineElement.styleKey, false, t5)); t4[index].setNewTarget$1(lineElement); } if (t2.get$_hasMeasureBounds()) for (t2 = animatingElements.bounds, t1 = t1._eval$1("_AnimatedArea<1>"), index = 0; index < boundsElementList.length; ++index) { boundElement = boundsElementList[index]; if (index >= t2.length) t2.push(new T._AnimatedArea(boundElement.styleKey, false, t1)); t2[index].setNewTarget$1(boundElement); } animatingElements.allPoints = allPointList; _this.previousPointList[t3] = allPointList; }, $signature: 952 }; T.LineRenderer_update___closure.prototype = { call$1: function(elements) { return elements.styleKey === this.styleKey; }, $signature: function() { return this.$this.$ti._eval$1("bool(_AnimatedElements<1>)"); } }; T.LineRenderer_update_closure0.prototype = { call$2: function(key, elements) { var t1, t2, t3, t4, t5, _i, line, area, bound; for (t1 = J.get$iterator$ax(elements), t2 = this.$this._line_renderer$_currentKeys; t1.moveNext$0();) { t3 = t1.get$current(t1); for (t4 = t3.lines, t5 = t4.length, _i = 0; _i < t4.length; t4.length === t5 || (0, H.throwConcurrentModificationError)(t4), ++_i) { line = t4[_i]; if (!C.JSArray_methods.contains$1(t2, line.key)) line.animateOut$0(); } t4 = t3.areas; if (t4 != null) for (t5 = t4.length, _i = 0; _i < t4.length; t4.length === t5 || (0, H.throwConcurrentModificationError)(t4), ++_i) { area = t4[_i]; if (!C.JSArray_methods.contains$1(t2, area.key)) area.animateOut$0(); } t3 = t3.bounds; if (t3 != null) for (t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { bound = t3[_i]; if (!C.JSArray_methods.contains$1(t2, bound.key)) bound.animateOut$0(); } } }, $signature: function() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; T.LineRenderer__createBoundsSegment_closure.prototype = { call$1: function(datumPoint) { var t2, t3, t4, _this = this, t1 = datumPoint.x; if (_this.initializeFromZero) t2 = datumPoint.y; else { t2 = _this.series; t3 = t2.measureUpperBoundFn; t3.toString; t4 = datumPoint.index; t3 = t3.call$1(t4); if (t3 == null) t3 = 0; t4 = t2.measureOffsetFn.call$1(t4); t4.toString; t4 = _this.measureAxis.getLocation$1(t3 + t4); t2 = t4; } return T._DatumPoint__DatumPoint$from(datumPoint, t1, t2, _this.$this.$ti._precomputed1); }, $signature: function() { return this.$this.$ti._eval$1("_DatumPoint<1>(_DatumPoint<1>)"); } }; T.LineRenderer__createBoundsSegment_closure0.prototype = { call$1: function(datumPoint) { var t2, t3, t4, _this = this, t1 = datumPoint.x; if (_this.initializeFromZero) t2 = datumPoint.y; else { t2 = _this.series; t3 = t2.measureLowerBoundFn; t3.toString; t4 = datumPoint.index; t3 = t3.call$1(t4); if (t3 == null) t3 = 0; t4 = t2.measureOffsetFn.call$1(t4); t4.toString; t4 = _this.measureAxis.getLocation$1(t3 + t4); t2 = t4; } return T._DatumPoint__DatumPoint$from(datumPoint, t1, t2, _this.$this.$ti._precomputed1); }, $signature: function() { return this.$this.$ti._eval$1("_DatumPoint<1>(_DatumPoint<1>)"); } }; T.LineRenderer_paint_closure.prototype = { call$2: function(key, elements) { var t1 = J.getInterceptor$ax(elements); t1.removeWhere$1(elements, new T.LineRenderer_paint__closure7(this.$this)); if (t1.get$isEmpty(elements)) this.keysToRemove.push(key); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; T.LineRenderer_paint__closure7.prototype = { call$1: function(element) { return element.get$animatingOut(); }, $signature: function() { return this.$this.$ti._eval$1("bool(_AnimatedElements<1>)"); } }; T.LineRenderer_paint_closure0.prototype = { call$2: function(key, elements) { var t2, t3, t4, _this = this, t1 = _this.$this; if (t1.get$_hasMeasureBounds()) { t2 = t1.$ti; t3 = J.map$1$1$ax(elements, new T.LineRenderer_paint__closure(t1), t2._eval$1("List<_AnimatedArea<1>>")); t4 = H._instanceType(t3)._eval$1("@")._bind$1(t2._eval$1("_AnimatedArea<1>"))._eval$1("ExpandIterable<1,2>"); H.MappedIterable_MappedIterable(new H.ExpandIterable(t3, new T.LineRenderer_paint__closure0(t1), t4), new T.LineRenderer_paint__closure1(t1, _this.animationPercent), t4._eval$1("Iterable.E"), t2._eval$1("_AreaRendererElement<1>")).forEach$1(0, new T.LineRenderer_paint__closure2(t1, _this.canvas)); } t2 = t1.$ti; t3 = J.map$1$1$ax(elements, new T.LineRenderer_paint__closure3(t1), t2._eval$1("List<_AnimatedLine<1>>")); t4 = H._instanceType(t3)._eval$1("@")._bind$1(t2._eval$1("_AnimatedLine<1>"))._eval$1("ExpandIterable<1,2>"); H.MappedIterable_MappedIterable(new H.ExpandIterable(t3, new T.LineRenderer_paint__closure4(t1), t4), new T.LineRenderer_paint__closure5(t1, _this.animationPercent), t4._eval$1("Iterable.E"), t2._eval$1("_LineRendererElement<1>")).forEach$1(0, new T.LineRenderer_paint__closure6(t1, _this.canvas)); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List<_AnimatedElements<1>>)"); } }; T.LineRenderer_paint__closure.prototype = { call$1: function(animatingElement) { var t1 = animatingElement.bounds; t1.toString; return t1; }, $signature: function() { return this.$this.$ti._eval$1("List<_AnimatedArea<1>>(_AnimatedElements<1>)"); } }; T.LineRenderer_paint__closure0.prototype = { call$1: function(bounds) { return bounds; }, $signature: function() { return this.$this.$ti._eval$1("List<_AnimatedArea<1>>(List<_AnimatedArea<1>>)"); } }; T.LineRenderer_paint__closure1.prototype = { call$1: function(animatingBounds) { return animatingBounds.getCurrentArea$1(this.animationPercent); }, $signature: function() { return this.$this.$ti._eval$1("_AreaRendererElement<1>(_AnimatedArea<1>)"); } }; T.LineRenderer_paint__closure2.prototype = { call$1: function(bound) { var t1, t2; if (bound != null) { t1 = this.$this._getClipBoundsForExtent$1(bound.positionExtent); t2 = bound.areaColor; if (t2 == null) t2 = bound.color; this.canvas.drawPolygon$3$clipBounds$fill$points(t1, t2, K.NullablePointsToPoints_toPoints(bound.points)); } }, $signature: function() { return this.$this.$ti._eval$1("~(_AreaRendererElement<1>)"); } }; T.LineRenderer_paint__closure3.prototype = { call$1: function(animatingElement) { return animatingElement.lines; }, $signature: function() { return this.$this.$ti._eval$1("List<_AnimatedLine<1>>(_AnimatedElements<1>)"); } }; T.LineRenderer_paint__closure4.prototype = { call$1: function(lines) { return lines; }, $signature: function() { return this.$this.$ti._eval$1("List<_AnimatedLine<1>>(List<_AnimatedLine<1>>)"); } }; T.LineRenderer_paint__closure5.prototype = { call$1: function(animatingLine) { return animatingLine.getCurrentLine$1(this.animationPercent); }, $signature: function() { return this.$this.$ti._eval$1("_LineRendererElement<1>(_AnimatedLine<1>)"); } }; T.LineRenderer_paint__closure6.prototype = { call$1: function(line) { var t1, t2, t3; if (line != null) { t1 = line.positionExtent; t1.toString; t1 = this.$this._getClipBoundsForExtent$1(t1); t2 = line.dashPattern; t3 = line.points; t3.toString; this.canvas.drawLine$6$clipBounds$dashPattern$points$roundEndCaps$stroke$strokeWidthPx(0, t1, t2, K.NullablePointsToPoints_toPoints(t3), false, line.color, line.strokeWidthPx); } }, $signature: function() { return this.$this.$ti._eval$1("~(_LineRendererElement<1>)"); } }; T._DatumPoint.prototype = {}; T._LineRendererElement.prototype = { clone$0: function(_) { var t2, t3, t4, _this = this, _null = null, t1 = _this.points; t1 = t1 != null ? P.List_List$of(t1, true, _this.$ti._eval$1("_DatumPoint<1>")) : _null; t2 = _this.color; t2 = t2 != null ? K.Color$fromOther(t2, _null) : _null; t3 = _this.areaColor; t3 = t3 != null ? K.Color$fromOther(t3, _null) : _null; t4 = _this.dashPattern; t4 = t4 != null ? P.List_List$of(t4, true, type$.int) : _null; return new T._LineRendererElement(t1, t2, t3, t4, _this.domainExtent, _this.measureAxisPosition, _this.positionExtent, _this.strokeWidthPx, _this.styleKey, false, _this.$ti); }, updateAnimationPercent$3: function(previous, target, animationPercent) { var _lastPoint_get, _lastPoint_set, t2, pointIndex, t3, targetPoint, previousPoint, t4, x, y, _this = this, _box_0 = {}, t1 = _this.points; t1.toString; _box_0._lastPoint = $; _lastPoint_get = new T._LineRendererElement_updateAnimationPercent__lastPoint_get(_box_0, _this); _lastPoint_set = new T._LineRendererElement_updateAnimationPercent__lastPoint_set(_box_0, _this); for (t2 = _this.$ti._precomputed1, pointIndex = 0; t3 = target.points, pointIndex < t3.length; ++pointIndex) { targetPoint = t3[pointIndex]; t3 = previous.points; if (t3.length - 1 >= pointIndex) { previousPoint = t3[pointIndex]; _lastPoint_set.call$1(previousPoint); } else previousPoint = T._DatumPoint__DatumPoint$from(targetPoint, targetPoint.x, _lastPoint_get.call$0().y, t2); t3 = targetPoint.x; t3.toString; t4 = previousPoint.x; t4.toString; x = (t3 - t4) * animationPercent + t4; y = targetPoint.y; t3 = y != null; if (t3 && previousPoint.y != null) { y.toString; t3 = previousPoint.y; t3.toString; y = (y - t3) * animationPercent + t3; } else y = t3 ? y : null; if (t1.length - 1 >= pointIndex) t1[pointIndex] = T._DatumPoint__DatumPoint$from(targetPoint, x, y, t2); else t1.push(T._DatumPoint__DatumPoint$from(targetPoint, x, y, t2)); } t2 = t1.length; if (pointIndex < t2) C.JSArray_methods.removeRange$2(t1, pointIndex, t2); t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = S.getAnimatedColor(t1, t2, animationPercent); if (_this.areaColor != null) { t1 = previous.areaColor; t1.toString; t2 = target.areaColor; t2.toString; _this.areaColor = S.getAnimatedColor(t1, t2, animationPercent); } t1 = target.strokeWidthPx; t2 = previous.strokeWidthPx; _this.strokeWidthPx = (t1 - t2) * animationPercent + t2; } }; T._LineRendererElement_updateAnimationPercent__lastPoint_set.prototype = { call$1: function(t1) { return this._box_0._lastPoint = t1; }, $signature: function() { return this.$this.$ti._eval$1("@(_DatumPoint<1>)"); } }; T._LineRendererElement_updateAnimationPercent__lastPoint_get.prototype = { call$0: function() { var t1 = this._box_0._lastPoint; return t1 === $ ? H.throwExpression(H.LateError$localNI("lastPoint")) : t1; }, $signature: function() { return this.$this.$ti._eval$1("_DatumPoint<1>()"); } }; T._AnimatedLine.prototype = { get$_targetLine: function() { var t1 = this.___AnimatedLine__targetLine; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_targetLine")) : t1; }, animateOut$0: function() { var t2, index, t3, targetPoint, _this = this, newTarget = _this._line_renderer$_currentLine.clone$0(0), t1 = _this.$ti, newPoints = H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = newTarget.measureAxisPosition, t1 = t1._precomputed1, index = 0; t3 = newTarget.points, index < t3.length; ++index) { targetPoint = t3[index]; t3 = targetPoint.x; t2.toString; newPoints.push(T._DatumPoint__DatumPoint$from(targetPoint, t3, C.JSNumber_methods.roundToDouble$0(t2), t1)); } newTarget.points = newPoints; newTarget.strokeWidthPx = 0; _this.setNewTarget$1(newTarget); _this.animatingOut = true; }, setNewTarget$1: function(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._line_renderer$_currentLine; _this._previousLine = (t1 == null ? _this._line_renderer$_currentLine = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedLine__targetLine = newTarget; }, getCurrentLine$1: function(animationPercent) { var t1, t2, _this = this; if (animationPercent === 1 || _this._previousLine == null) { _this._line_renderer$_currentLine = _this.get$_targetLine(); _this._previousLine = _this.get$_targetLine(); t1 = _this._line_renderer$_currentLine; t1.toString; return t1; } t1 = _this._line_renderer$_currentLine; t1.toString; t2 = _this._previousLine; t2.toString; t1.updateAnimationPercent$3(t2, _this.get$_targetLine(), animationPercent); t2 = _this._line_renderer$_currentLine; t2.toString; return t2; } }; T._AreaRendererElement.prototype = { clone$0: function(_) { var t4, _this = this, _null = null, t1 = _this.$ti, t2 = P.List_List$of(_this.points, true, t1._eval$1("_DatumPoint<1>")), t3 = _this.color; t3 = t3 != null ? K.Color$fromOther(t3, _null) : _null; t4 = _this.areaColor; t4 = t4 != null ? K.Color$fromOther(t4, _null) : _null; return new T._AreaRendererElement(t2, t3, t4, _this.domainExtent, _this.measureAxisPosition, _this.positionExtent, _this.styleKey, t1); }, updateAnimationPercent$3: function(previous, target, animationPercent) { var _lastPoint_get, _lastPoint_set, t1, pointIndex, t2, targetPoint, previousPoint, t3, x, y, _this = this, _box_0 = {}; _box_0._lastPoint = $; _lastPoint_get = new T._AreaRendererElement_updateAnimationPercent__lastPoint_get(_box_0, _this); _lastPoint_set = new T._AreaRendererElement_updateAnimationPercent__lastPoint_set(_box_0, _this); for (t1 = _this.$ti._precomputed1, pointIndex = 0; t2 = target.points, pointIndex < t2.length; ++pointIndex) { targetPoint = t2[pointIndex]; t2 = previous.points; if (t2.length - 1 >= pointIndex) { previousPoint = t2[pointIndex]; _lastPoint_set.call$1(previousPoint); } else previousPoint = T._DatumPoint__DatumPoint$from(targetPoint, targetPoint.x, _lastPoint_get.call$0().y, t1); t2 = targetPoint.x; t2.toString; t3 = previousPoint.x; t3.toString; x = (t2 - t3) * animationPercent + t3; y = targetPoint.y; t2 = y != null; if (t2 && previousPoint.y != null) { y.toString; t2 = previousPoint.y; t2.toString; y = (y - t2) * animationPercent + t2; } else y = t2 ? y : null; t2 = _this.points; if (t2.length - 1 >= pointIndex) t2[pointIndex] = T._DatumPoint__DatumPoint$from(targetPoint, x, y, t1); else t2.push(T._DatumPoint__DatumPoint$from(targetPoint, x, y, t1)); } t1 = _this.points; t2 = t1.length; if (pointIndex < t2) C.JSArray_methods.removeRange$2(t1, pointIndex, t2); t1 = previous.color; t1.toString; t2 = target.color; t2.toString; _this.color = S.getAnimatedColor(t1, t2, animationPercent); if (_this.areaColor != null) { t1 = previous.areaColor; t1.toString; t2 = target.areaColor; t2.toString; _this.areaColor = S.getAnimatedColor(t1, t2, animationPercent); } } }; T._AreaRendererElement_updateAnimationPercent__lastPoint_set.prototype = { call$1: function(t1) { return this._box_0._lastPoint = t1; }, $signature: function() { return this.$this.$ti._eval$1("@(_DatumPoint<1>)"); } }; T._AreaRendererElement_updateAnimationPercent__lastPoint_get.prototype = { call$0: function() { var t1 = this._box_0._lastPoint; return t1 === $ ? H.throwExpression(H.LateError$localNI("lastPoint")) : t1; }, $signature: function() { return this.$this.$ti._eval$1("_DatumPoint<1>()"); } }; T._AnimatedArea.prototype = { get$_targetArea: function() { var t1 = this.___AnimatedArea__targetArea; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_targetArea")) : t1; }, animateOut$0: function() { var t2, t3, index, t4, targetPoint, _this = this, newTarget = _this._currentArea.clone$0(0), t1 = _this.$ti, newPoints = H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_DatumPoint<1>>")); for (t2 = newTarget.measureAxisPosition, t3 = J.getInterceptor$n(t2), t1 = t1._precomputed1, index = 0; t4 = newTarget.points, index < t4.length; ++index) { targetPoint = t4[index]; newPoints.push(T._DatumPoint__DatumPoint$from(targetPoint, targetPoint.x, t3.roundToDouble$0(t2), t1)); } newTarget.points = newPoints; _this.setNewTarget$1(newTarget); _this.animatingOut = true; }, setNewTarget$1: function(newTarget) { var t1, _this = this; _this.animatingOut = false; t1 = _this._currentArea; _this._previousArea = (t1 == null ? _this._currentArea = newTarget.clone$0(0) : t1).clone$0(0); _this.___AnimatedArea__targetArea = newTarget; }, getCurrentArea$1: function(animationPercent) { var t1, t2, _this = this; if (animationPercent === 1 || _this._previousArea == null) { _this._currentArea = _this.get$_targetArea(); _this._previousArea = _this.get$_targetArea(); t1 = _this._currentArea; t1.toString; return t1; } t1 = _this._currentArea; t1.toString; t2 = _this._previousArea; t2.toString; t1.updateAnimationPercent$3(t2, _this.get$_targetArea(), animationPercent); t2 = _this._currentArea; t2.toString; return t2; } }; T._AnimatedElements.prototype = { get$animatingOut: function() { var t2, areasAnimatingOut, _i, area, linesAnimatingOut, line, boundsAnimatingOut, bound, t1 = this.areas; if (t1 != null) for (t2 = t1.length, areasAnimatingOut = true, _i = 0; _i < t2; ++_i) { area = t1[_i]; areasAnimatingOut = areasAnimatingOut && area.animatingOut; } else areasAnimatingOut = true; for (t1 = this.lines, t2 = t1.length, linesAnimatingOut = true, _i = 0; _i < t2; ++_i) { line = t1[_i]; linesAnimatingOut = linesAnimatingOut && line.animatingOut; } t1 = this.bounds; if (t1 != null) for (t2 = t1.length, boundsAnimatingOut = true, _i = 0; _i < t2; ++_i) { bound = t1[_i]; boundsAnimatingOut = boundsAnimatingOut && bound.animatingOut; } else boundsAnimatingOut = true; return areasAnimatingOut && linesAnimatingOut && boundsAnimatingOut; }, get$overlaySeries: function() { var t2, areasOverlaySeries, _i, area, linesOverlaySeries, line, boundsOverlaySeries, bound, t1 = this.areas; if (t1 != null) for (t2 = t1.length, areasOverlaySeries = true, _i = 0; _i < t2; ++_i, areasOverlaySeries = false) { area = t1[_i]; if (areasOverlaySeries) area.toString; } else areasOverlaySeries = true; for (t1 = this.lines, t2 = t1.length, linesOverlaySeries = true, _i = 0; _i < t2; ++_i, linesOverlaySeries = false) { line = t1[_i]; if (linesOverlaySeries) line.toString; } t1 = this.bounds; if (t1 != null) for (t2 = t1.length, boundsOverlaySeries = true, _i = 0; _i < t2; ++_i, boundsOverlaySeries = false) { bound = t1[_i]; if (boundsOverlaySeries) bound.toString; } else boundsOverlaySeries = true; return areasOverlaySeries && linesOverlaySeries && boundsOverlaySeries; } }; T._Range.prototype = { includePoint$1: function(value) { var t1, t2, t3, _this = this; if (value == null) return; else if (typeof value == "number") { if (value < H._asNumS(_this._line_renderer$_start)) _this._line_renderer$_start = value; else if (value > H._asNumS(_this._line_renderer$_end)) _this._line_renderer$_end = value; } else if (value instanceof P.DateTime) { t1 = type$.DateTime; t2 = t1._as(_this._line_renderer$_start); t3 = value._value; if (t3 < t2._value) _this._line_renderer$_start = value; else if (t3 > t1._as(_this._line_renderer$_end)._value) _this._line_renderer$_end = value; } else if (typeof value == "string") _this._line_renderer$_end = value; else throw H.wrapException(P.ArgumentError$("Unsupported object type for LineRenderer domain value: " + J.get$runtimeType$(value).toString$0(0))); } }; X.LineRendererConfig.prototype = {}; U.PointRenderer.prototype = { paint$2: function(canvas, animationPercent) { var keysToRemove, t1, _this = this; if (animationPercent === 1) { keysToRemove = H.setRuntimeTypeInfo([], type$.JSArray_String); _this.seriesPointMap.forEach$1(0, new U.PointRenderer_paint_closure(_this, keysToRemove)); t1 = _this.seriesPointMap; C.JSArray_methods.forEach$1(keysToRemove, t1.get$remove(t1)); } _this.seriesPointMap.forEach$1(0, new U.PointRenderer_paint_closure0(_this, animationPercent, canvas)); }, get$isRtl: function() { return false; } }; U.PointRenderer_paint_closure.prototype = { call$2: function(key, points) { var t1 = J.getInterceptor$ax(points); t1.removeWhere$1(points, new U.PointRenderer_paint__closure1(this.$this)); if (t1.get$isEmpty(points)) this.keysToRemove.push(key); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List>)"); } }; U.PointRenderer_paint__closure1.prototype = { call$1: function(point) { return point.animatingOut; }, $signature: function() { return this.$this.$ti._eval$1("bool(AnimatedPoint<1>)"); } }; U.PointRenderer_paint_closure0.prototype = { call$2: function(key, points) { var t1 = this.$this, t2 = this.animationPercent; J.map$1$1$ax(points, new U.PointRenderer_paint__closure(t1, t2), t1.$ti._eval$1("PointRendererElement<1>")).forEach$1(0, new U.PointRenderer_paint__closure0(t1, this.canvas, t2)); }, $signature: function() { return this.$this.$ti._eval$1("~(String,List>)"); } }; U.PointRenderer_paint__closure.prototype = { call$1: function(animatingPoint) { return animatingPoint.getCurrentPoint$1(this.animationPercent); }, $signature: function() { return this.$this.$ti._eval$1("PointRendererElement<1>(AnimatedPoint<1>)"); } }; U.PointRenderer_paint__closure0.prototype = { call$1: function(point) { var t6, t7, t8, t9, bounds, t1 = this.$this, t2 = t1.pointRendererDecorators, t3 = H._arrayInstanceType(t2)._eval$1("WhereIterable<1>"), t4 = this.canvas, t5 = this.animationPercent; new H.WhereIterable(t2, new U.PointRenderer_paint___closure(t1), t3).forEach$1(0, new U.PointRenderer_paint___closure0(t1, point, t4, t5)); t6 = point.point; t7 = t6.y; if (t7 != null) { t8 = t1._drawAreaBounds; t8.toString; t6 = t6.x; t6.toString; t7 = J.containsPoint$1$x(t8, new P.Point(t6, t7, type$.Point_double)); t6 = t7; } else t6 = false; if (t6) { t6 = point.point; t7 = t6.x; t7.toString; t8 = point.radiusPx; t6 = t6.y; t6.toString; t9 = t8 * 2; bounds = P.Rectangle$(t7 - t8, t6 - t8, t9, t9, type$.double); t6 = point.symbolRendererId; if (t6 === "__default__") t1.symbolRenderer.paint$5$fillColor$strokeColor$strokeWidthPx(t4, bounds, point.fillColor, point.color, point.strokeWidthPx); else { if (!null.containsKey$1(0, t6)) throw H.wrapException(P.ArgumentError$('Invalid custom symbol renderer id "' + t6 + '"')); null.$index(0, t6).paint$5$fillColor$strokeColor$strokeWidthPx(t4, bounds, point.fillColor, point.color, point.strokeWidthPx); } } new H.WhereIterable(t2, new U.PointRenderer_paint___closure1(t1), t3).forEach$1(0, new U.PointRenderer_paint___closure2(t1, point, t4, t5)); }, $signature: function() { return this.$this.$ti._eval$1("~(PointRendererElement<1>)"); } }; U.PointRenderer_paint___closure.prototype = { call$1: function(decorator) { return !decorator.get$renderAbove(); }, $signature: function() { return this.$this.$ti._eval$1("bool(PointRendererDecorator<1>)"); } }; U.PointRenderer_paint___closure0.prototype = { call$1: function(decorator) { var t3, _this = this, t1 = _this.$this, t2 = t1.graphicsFactory; t2.toString; t3 = t1._drawAreaBounds; t3.toString; t1.get$isRtl(); decorator.decorate$6$animationPercent$drawBounds$rtl(_this.point, _this.canvas, t2, _this.animationPercent, t3, false); }, $signature: function() { return this.$this.$ti._eval$1("~(PointRendererDecorator<1>)"); } }; U.PointRenderer_paint___closure1.prototype = { call$1: function(decorator) { return decorator.get$renderAbove(); }, $signature: function() { return this.$this.$ti._eval$1("bool(PointRendererDecorator<1>)"); } }; U.PointRenderer_paint___closure2.prototype = { call$1: function(decorator) { var t3, _this = this, t1 = _this.$this, t2 = t1.graphicsFactory; t2.toString; t3 = t1._drawAreaBounds; t3.toString; t1.get$isRtl(); decorator.decorate$6$animationPercent$drawBounds$rtl(_this.point, _this.canvas, t2, _this.animationPercent, t3, false); }, $signature: function() { return this.$this.$ti._eval$1("~(PointRendererDecorator<1>)"); } }; U.DatumPoint.prototype = {}; R.PointRendererConfig.prototype = {}; M.TimeSeriesChart.prototype = { initDomainAxis$0: function() { var t2, t3, t4, _this = this, _null = null, t1 = _this._domainAxis; t1.toString; t2 = S.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, type$.DateTime); t3 = _this.get$context(_this); t4 = _this.graphicsFactory; t4.toString; t1.tickDrawStrategy = t2.createDrawStrategy$2(t3, t4); }, makeDefaultRenderer$0: function() { var t1 = T.LineRenderer_LineRenderer(null, null, type$.DateTime); t1.rendererId = "default"; return t1; }, createDomainAxisFromSpec$1: function(axisSpec) { type$.DateTimeAxisSpec._as(axisSpec); return F.DateTimeAxis$(this.dateTimeFactory); } }; K.Color0.prototype = { get$darker: function() { var _this = this, t1 = _this._darker; return t1 == null ? new K.Color0(C.JSNumber_methods.round$0(_this.r * 0.7), C.JSNumber_methods.round$0(_this.g * 0.7), C.JSNumber_methods.round$0(_this.b * 0.7), _this.a, null, null) : t1; }, $eq: function(_, other) { var _this = this; if (other == null) return false; return other instanceof K.Color0 && other.r === _this.r && other.g === _this.g && other.b === _this.b && other.a === _this.a; }, get$hashCode: function(_) { var _this = this; return ((C.JSInt_methods.get$hashCode(_this.r) * 37 + C.JSInt_methods.get$hashCode(_this.g)) * 37 + C.JSInt_methods.get$hashCode(_this.b)) * 37 + C.JSInt_methods.get$hashCode(_this.a); }, toString$0: function(_) { var _this = this; return "#" + _this._get2CharHex$1(_this.r) + _this._get2CharHex$1(_this.g) + _this._get2CharHex$1(_this.b) + _this._get2CharHex$1(_this.a); }, _get2CharHex$1: function(num) { var str = C.JSInt_methods.toRadixString$1(num, 16); for (; str.length < 2;) str = "0" + str; return str; } }; Z.LocalDateTimeFactory.prototype = { createDateTime$4: function(year, month, day, hour) { var t1 = H.Primitives_valueFromDecomposedDate(year, month, day, hour, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, false); }, createDateTime$3: function(year, month, day) { return this.createDateTime$4(year, month, day, 0); }, createDateTime$2: function(year, month) { return this.createDateTime$4(year, month, 1, 0); }, createDateTime$1: function(year) { return this.createDateTime$4(year, 1, 1, 0); } }; N.GestureListener.prototype = {}; N.GestureListener_defaultTapCancel_closure.prototype = { call$0: function() { }, $signature: 0 }; N.GestureListener_defaultTapTest_closure.prototype = { call$1: function(_) { return false; }, $signature: 408 }; M.MaterialPalette__orderedPalettes_closure.prototype = { call$0: function() { return C.C_MaterialBlue; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure0.prototype = { call$0: function() { return C.C_MaterialRed; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure1.prototype = { call$0: function() { return C.C_MaterialYellow; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure2.prototype = { call$0: function() { return C.C_MaterialGreen; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure3.prototype = { call$0: function() { return C.C_MaterialPurple; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure4.prototype = { call$0: function() { return C.C_MaterialCyan; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure5.prototype = { call$0: function() { return C.C_MaterialDeepOrange; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure6.prototype = { call$0: function() { return C.C_MaterialLime; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure7.prototype = { call$0: function() { return C.C_MaterialIndigo; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure8.prototype = { call$0: function() { return C.C_MaterialPink; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure9.prototype = { call$0: function() { return C.C_MaterialTeal; }, "call*": "call$0", $requiredArgCount: 0, $signature: 102 }; M.MaterialPalette__orderedPalettes_closure10.prototype = { call$1: function(f) { return f.call$0(); }, $signature: 957 }; M.MaterialBlue.prototype = { get$shadeDefault: function() { return C.Color_U0W; } }; M.MaterialRed.prototype = { get$shadeDefault: function() { return C.Color_kvD; } }; M.MaterialYellow.prototype = { get$shadeDefault: function() { return C.Color_g3G; } }; M.MaterialGreen.prototype = { get$shadeDefault: function() { return C.Color_ePM5; } }; M.MaterialPurple.prototype = { get$shadeDefault: function() { return C.Color_ePM4; } }; M.MaterialCyan.prototype = { get$shadeDefault: function() { return C.Color_ePM3; } }; M.MaterialDeepOrange.prototype = { get$shadeDefault: function() { return C.Color_wz6; } }; M.MaterialLime.prototype = { get$shadeDefault: function() { return C.Color_ePM2; } }; M.MaterialIndigo.prototype = { get$shadeDefault: function() { return C.Color_ePM1; } }; M.MaterialPink.prototype = { get$shadeDefault: function() { return C.Color_Feh; } }; M.MaterialTeal.prototype = { get$shadeDefault: function() { return C.Color_ePM0; } }; K.NullablePoint.prototype = { toString$0: function(_) { return "NullablePoint(" + H.S(this.x) + ", " + H.S(this.y) + ")"; }, $eq: function(_, other) { if (other == null) return false; return other instanceof K.NullablePoint && this.x == other.x && this.y == other.y; }, get$hashCode: function(_) { return J.get$hashCode$(this.x) * 37 + J.get$hashCode$(this.y); } }; A.Palette.prototype = { makeShades$1: function(colorCnt) { var t1, t2, t3, t4, lighterColor, i, _this = this, colors = H.setRuntimeTypeInfo([_this.get$shadeDefault()], type$.JSArray_Color_2); if (colorCnt < 3) { t1 = _this.get$shadeDefault(); t2 = t1._lighter; if (t2 == null) { t2 = t1.r; t3 = t1.g; t4 = t1.b; t1 = new K.Color0(t2 + C.JSNumber_methods.round$0((255 - t2) * 0.1), t3 + C.JSNumber_methods.round$0((255 - t3) * 0.1), t4 + C.JSNumber_methods.round$0((255 - t4) * 0.1), t1.a, null, null); lighterColor = t1; } else lighterColor = t2; } else { t1 = colorCnt * 2; lighterColor = _this._getSteppedColor$3(_this.get$shadeDefault(), t1 - 1, t1); } for (i = 1; i < colorCnt; ++i) colors.push(_this._getSteppedColor$5$darker$lighter(_this.get$shadeDefault(), i, colorCnt, _this.get$shadeDefault().get$darker(), lighterColor)); colors.push(K.Color$fromOther(_this.get$shadeDefault(), lighterColor)); return colors; }, _getSteppedColor$5$darker$lighter: function(color, index, steps, darker, lighter) { var fraction = index / steps, t1 = color.r, t2 = color.g, t3 = color.b, t4 = color.a; return new K.Color0(t1 + C.JSNumber_methods.round$0((255 - t1) * fraction), t2 + C.JSNumber_methods.round$0((255 - t2) * fraction), t3 + C.JSNumber_methods.round$0((255 - t3) * fraction), t4 + C.JSNumber_methods.round$0((255 - t4) * fraction), darker, lighter); }, _getSteppedColor$3: function(color, index, steps) { return this._getSteppedColor$5$darker$lighter(color, index, steps, null, null); } }; V.Performance_time_closure.prototype = { call$1: function(_) { }, $signature: 88 }; V.Performance_timeEnd_closure.prototype = { call$1: function(_) { }, $signature: 88 }; G.ProxyGestureListener.prototype = { add$1: function(_, listener) { this._proxy_gesture_listener$_listeners.push(listener); C.JSArray_methods.set$length(this._activeListeners, 0); }, onLongPress$1: function(localPosition) { var _this = this, claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new G.ProxyGestureListener_onLongPress_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, H.setRuntimeTypeInfo([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onTap$1: function(localPosition) { var _this = this, claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new G.ProxyGestureListener_onTap_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, H.setRuntimeTypeInfo([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onDragStart$1: function(_, localPosition) { var claimingListener, _this = this; if (_this._activeListeners.length === 0) _this._populateActiveListeners$1(localPosition); claimingListener = A.IterableExtension_firstWhereOrNull(_this._activeListeners, new G.ProxyGestureListener_onDragStart_closure(localPosition)); if (claimingListener != null) { _this._activeListeners = _this._proxy_gesture_listener$_cancel$2$all$keep(_this._activeListeners, H.setRuntimeTypeInfo([claimingListener], type$.JSArray_GestureListener)); return true; } return false; }, onDragUpdate$2: function(localPosition, scale) { return C.JSArray_methods.any$1(this._activeListeners, new G.ProxyGestureListener_onDragUpdate_closure(localPosition, scale)); }, onDragEnd$3: function(_, localPosition, scale, pixelsPerSecond) { return C.JSArray_methods.any$1(this._activeListeners, new G.ProxyGestureListener_onDragEnd_closure(localPosition, scale, pixelsPerSecond)); }, _proxy_gesture_listener$_cancel$2$all$keep: function(all, keep) { C.JSArray_methods.forEach$1(all, new G.ProxyGestureListener__cancel_closure(keep)); return keep; }, _populateActiveListeners$1: function(localPosition) { var t1 = {}, localListeners = P.List_List$of(this._proxy_gesture_listener$_listeners, true, type$.GestureListener); t1.previouslyClaimed = false; C.JSArray_methods.forEach$1(localListeners, new G.ProxyGestureListener__populateActiveListeners_closure(t1, this, localPosition)); return t1.previouslyClaimed; } }; G.ProxyGestureListener_onLongPress_closure.prototype = { call$1: function(listener) { var t1 = listener.onLongPress; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 235 }; G.ProxyGestureListener_onTap_closure.prototype = { call$1: function(listener) { var t1 = listener.onTap; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 235 }; G.ProxyGestureListener_onDragStart_closure.prototype = { call$1: function(listener) { var t1 = listener.onDragStart; t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, $signature: 235 }; G.ProxyGestureListener_onDragUpdate_closure.prototype = { call$1: function(listener) { var t1 = listener.onDragUpdate; t1 = t1 == null ? null : t1.call$2(this.localPosition, this.scale); return t1 == null ? false : t1; }, $signature: 235 }; G.ProxyGestureListener_onDragEnd_closure.prototype = { call$1: function(listener) { var t1 = listener.onDragEnd; t1 = t1 == null ? null : t1.call$3(this.localPosition, this.scale, this.pixelsPerSecond); return t1 == null ? false : t1; }, $signature: 235 }; G.ProxyGestureListener__cancel_closure.prototype = { call$1: function(listener) { if (!C.JSArray_methods.contains$1(this.keep, listener)) listener.onTapCancel.call$0(); }, $signature: 684 }; G.ProxyGestureListener__populateActiveListeners_closure.prototype = { call$1: function(listener) { var t1, _this = this, claimed = listener.onTapTest.call$1(_this.localPosition); if (claimed && !_this._box_0.previouslyClaimed) { t1 = _this.$this; t1._activeListeners = t1._proxy_gesture_listener$_cancel$2$all$keep(t1._activeListeners, H.setRuntimeTypeInfo([listener], type$.JSArray_GestureListener)); _this._box_0.previouslyClaimed = true; } else if (claimed || !_this._box_0.previouslyClaimed) _this.$this._activeListeners.push(listener); }, $signature: 684 }; D.MaterialStyle.prototype = {}; M.StyleFactory.prototype = {}; B.BaseSymbolRenderer.prototype = {}; B.SymbolRenderer.prototype = { getSolidStrokeWidthPx$1: function(strokeWidthPx) { return strokeWidthPx; }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.SymbolRenderer && true; }, get$hashCode: function(_) { return 519018; } }; B.RoundedRectSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var t1 = this.radius, t2 = canvas._chart_canvas$_paint; t2.set$color(0, P.Color$fromARGB(fillColor.a, fillColor.r, fillColor.g, fillColor.b)); t2.set$style(0, C.PaintingStyle_0); canvas.canvas.drawRRect$2(0, canvas._chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight(bounds, t1, true, true, true, true), t2); }, paint$5$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor: function(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1: function(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.RoundedRectSymbolRenderer && other.radius === this.radius && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode: function(_) { return B.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + C.JSInt_methods.get$hashCode(this.radius); } }; B.LineSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var localStrokeWidthPx, left, right, t1 = bounds.top, t2 = bounds.$ti._precomputed1, centerHeight = (t2._as(t1 + bounds.height) - t1) / 2, localDashPattern = dashPattern == null ? null : dashPattern, roundEndCaps = localDashPattern == null; if (roundEndCaps) localStrokeWidthPx = this.getSolidStrokeWidthPx$1(strokeWidthPx == null ? this.strokeWidth : strokeWidthPx); else localStrokeWidthPx = 2; left = bounds.left; t1 = bounds.width; right = t2._as(left + t1); if (roundEndCaps && t1 >= 5) { left += 2; right -= 2; } t1 = type$.Point_num; t1 = H.setRuntimeTypeInfo([new P.Point(left, centerHeight, t1), new P.Point(right, centerHeight, t1)], type$.JSArray_Point_num); canvas.drawLine$6$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx(0, localDashPattern, fillColor, t1, roundEndCaps, strokeColor, localStrokeWidthPx); }, paint$5$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor: function(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1: function(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.LineSymbolRenderer && other.strokeWidth === this.strokeWidth && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode: function(_) { return B.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + C.JSInt_methods.get$hashCode(this.strokeWidth); } }; B.CircleSymbolRenderer.prototype = { paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, dashPattern, fillColor, strokeColor, strokeWidthPx) { var t1 = bounds.width, t2 = bounds.height, t3 = Math.min(t1, t2); T.PointPainter_draw(canvas.canvas, fillColor, canvas._chart_canvas$_paint, new P.Point(bounds.left + t1 / 2, bounds.top + t2 / 2, type$.Point_double), t3 / 2, strokeColor, this.getSolidStrokeWidthPx$1(strokeWidthPx)); }, paint$5$fillColor$strokeColor$strokeWidthPx: function(canvas, bounds, fillColor, strokeColor, strokeWidthPx) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, null, fillColor, strokeColor, strokeWidthPx); }, paint$5$dashPattern$fillColor$strokeColor: function(canvas, bounds, dashPattern, fillColor, strokeColor) { return this.paint$6$dashPattern$fillColor$strokeColor$strokeWidthPx(canvas, bounds, dashPattern, fillColor, strokeColor, null); }, shouldRepaint$1: function(oldRenderer) { return !this.$eq(0, oldRenderer); }, $eq: function(_, other) { if (other == null) return false; return other instanceof B.CircleSymbolRenderer && this.super$SymbolRenderer$$eq(0, other); }, get$hashCode: function(_) { return B.SymbolRenderer.prototype.get$hashCode.call(this, this) * 37 + H.Primitives_objectHashCode(H.getRuntimeType(this)); } }; Q.TextDirection0.prototype = { toString$0: function(_) { return this._text_element0$_name; } }; Q.MaxWidthStrategy.prototype = { toString$0: function(_) { return "MaxWidthStrategy.ellipsize"; } }; X.TextMeasurement.prototype = {}; O.TypedRegistry.prototype = {}; O.TypedKey.prototype = { get$hashCode: function(_) { return C.JSString_methods.get$hashCode(this.uniqueKey); }, $eq: function(_, other) { if (other == null) return false; return other instanceof O.TypedKey && this.uniqueKey === other.uniqueKey; } }; F.Series.prototype = { get$id: function(receiver) { return this.id; } }; F.Series_Series_closure.prototype = { call$1: function(index) { index.toString; return this.domainFn.call$2(this.data[index], index); }, $signature: function() { return this.D._eval$1("0(int?)"); } }; F.Series_Series_closure0.prototype = { call$1: function(index) { index.toString; return this.measureFn.call$2(this.data[index], index); }, $signature: 981 }; F.Series_Series_closure1.prototype = { call$1: function(index) { index.toString; return this.colorFn.call$2(this.data[index], index); }, $signature: 161 }; F.AttributeKey.prototype = {}; F.SeriesAttributes.prototype = {}; X.BarChart.prototype = { createCommonChart$1: function(chartState) { var t5, t6, t7, t8, t9, t10, t11, t12, _null = null, t1 = M.NumericAxis$(), t2 = this.createDisjointMeasureAxes$0(), t3 = M.OrdinalAxis$(), t4 = M.NumericAxis$(); if (t2 == null) t2 = P.LinkedHashMap_LinkedHashMap(_null, _null, type$.String, type$.NumericAxis); t5 = $.$get$CartesianChart__defaultLayoutConfig(); t6 = type$.String; t7 = type$.ChartBehavior_String; t8 = H.setRuntimeTypeInfo([], type$.JSArray_ChartBehavior_String); t9 = type$.JSArray_GestureListener; t10 = H.setRuntimeTypeInfo([], t9); t9 = H.setRuntimeTypeInfo([], t9); t11 = H.setRuntimeTypeInfo([], type$.JSArray_LifecycleListener_String); t12 = H.setRuntimeTypeInfo([], type$.JSArray_LayoutView); return new X.BarChart0(true, t3, t1, t4, t2, new D.LayoutManagerImpl(t5 == null ? M.LayoutConfig$(_null, _null, _null, _null) : t5, t12), C.Duration_300000, P.LinkedHashSet_LinkedHashSet$_empty(t6), P.LinkedHashMap_LinkedHashMap$_empty(t6, type$.SeriesRenderer_String), P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), t8, P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), new G.ProxyGestureListener(t10, t9), P.LinkedHashMap_LinkedHashMap$_empty(type$.SelectionModelType, type$.MutableSelectionModel_String), t11); }, addDefaultInteractions$1: function(behaviors) { this.super$BaseChart$addDefaultInteractions(behaviors); behaviors.push(new O.DomainHighlighter(P.LinkedHashSet_LinkedHashSet(type$.GestureType), type$.DomainHighlighter_String)); } }; X.BaseChart.prototype = { createState$0: function() { var t1 = H._instanceType(this), t2 = t1._eval$1("JSArray>"), t3 = type$.SelectionModelType, t4 = t1._eval$1("~(SelectionModel)"); return new U.BaseChartState(H.setRuntimeTypeInfo([], t2), H.setRuntimeTypeInfo([], t2), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.ChartBehavior_dynamic), P.LinkedHashMap_LinkedHashMap$_empty(t3, t4), P.LinkedHashMap_LinkedHashMap$_empty(t3, t4), P.LinkedHashMap_LinkedHashMap$_empty(type$.ChartStateBehavior_ChartBehavior_dynamic, type$.AnimationController), null, C._StateLifecycle_0, t1._eval$1("BaseChartState")); }, updateCommonChart$3: function(chart, oldWidget, chartState) { var t1, t2, _this = this, _s21_ = "chartsUpdateRenderers", _s21_0 = "chartsUpdateBehaviors"; $.$get$Performance_time().call$1(_s21_); t1 = _this.defaultRenderer; if (t1 != null) t2 = !t1.$eq(0, oldWidget == null ? null : oldWidget.defaultRenderer); else t2 = false; if (t2) { t1 = L.BarRenderer_BarRenderer(t1, t1.customRendererId, H._instanceType(t1)._precomputed1); chart.toString; t1.rendererId = "default"; chart.addSeriesRenderer$1(t1); chartState._configurationChanged = true; } $.$get$Performance_timeEnd().call$1(_s21_); $.$get$Performance_time().call$1(_s21_0); _this._updateBehaviors$2(chart, chartState); $.$get$Performance_timeEnd().call$1(_s21_0); _this._updateSelectionModel$2(chart, chartState); chart.transition = _this.animationDuration; }, _updateBehaviors$2: function(chart, chartState) { var behaviorList, i, t2, addedBehavior, role, _this = this, t1 = _this.behaviors; if (t1 == null) t1 = []; behaviorList = P.List_List$from(t1, true, H._instanceType(_this)._eval$1("ChartBehavior")); t1 = chartState.autoBehaviorWidgets; if (t1.length === 0) _this.addDefaultInteractions$1(t1); new H.ReversedListIterable(t1, H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>")).super$Iterable$where(0, _this.get$_notACustomBehavior()).forEach$1(0, new X.BaseChart__updateBehaviors_closure(_this, behaviorList)); for (t1 = chartState.addedBehaviorWidgets, i = t1.length - 1, t2 = chartState.addedCommonBehaviorsByRole; i >= 0; --i) { addedBehavior = t1[i]; if (!C.JSArray_methods.remove$1(behaviorList, addedBehavior)) { role = addedBehavior.get$role(addedBehavior); C.JSArray_methods.remove$1(t1, addedBehavior); t2.remove$1(0, role); chart.removeBehavior$1(t2.$index(0, role)); chartState._configurationChanged = true; } } C.JSArray_methods.forEach$1(behaviorList, new X.BaseChart__updateBehaviors_closure0(_this, chartState, chart)); }, addDefaultInteractions$1: function(behaviors) { var desiredGestures = P.LinkedHashSet_LinkedHashSet(type$.GestureType); switch (C.SelectionTrigger_1) { case C.SelectionTrigger_1: desiredGestures.add$1(0, C.GestureType_1); break; case C.SelectionTrigger_2: desiredGestures.add$1(0, C.GestureType_1); desiredGestures.add$1(0, C.GestureType_3); break; case C.SelectionTrigger_3: case C.SelectionTrigger_4: desiredGestures.add$1(0, C.GestureType_1); desiredGestures.add$1(0, C.GestureType_0); desiredGestures.add$1(0, C.GestureType_3); break; case C.SelectionTrigger_0: default: desiredGestures.add$1(0, C.GestureType_2); break; } behaviors.push(new Z.SelectNearest(desiredGestures, C.SelectionModelType_0, C.SelectionTrigger_1, C.SelectionMode_0, true, null, H._instanceType(this)._eval$1("SelectNearest"))); }, _notACustomBehavior$1: function(behavior) { var t1 = this.behaviors; return t1 == null || !C.JSArray_methods.any$1(t1, new X.BaseChart__notACustomBehavior_closure(behavior)); }, _updateSelectionModel$2: function(chart, chartState) { var t1 = chartState.addedSelectionChangedListenersByType, prevTypes = P.List_List$from(t1.get$keys(t1), true, type$.SelectionModelType); t1 = this.selectionModels; if (t1 != null) C.JSArray_methods.forEach$1(t1, new X.BaseChart__updateSelectionModel_closure(this, chart, chartState, prevTypes)); C.JSArray_methods.forEach$1(prevTypes, new X.BaseChart__updateSelectionModel_closure0(chart, chartState)); }, getDesiredGestures$1: function(chartState) { var t2, types = P.LinkedHashSet_LinkedHashSet(type$.GestureType), t1 = this.behaviors; if (t1 != null) C.JSArray_methods.forEach$1(t1, new X.BaseChart_getDesiredGestures_closure(types)); t1 = chartState.autoBehaviorWidgets; t2 = t1.length; if (t2 === 0) this.addDefaultInteractions$1(t1); C.JSArray_methods.forEach$1(t1, new X.BaseChart_getDesiredGestures_closure0(types)); return types; } }; X.BaseChart__updateBehaviors_closure.prototype = { call$1: function(behavior) { C.JSArray_methods.insert$2(this.behaviorList, 0, behavior); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(ChartBehavior)"); } }; X.BaseChart__updateBehaviors_closure0.prototype = { call$1: function(behaviorWidget) { var role, t2, t3, commonBehavior = behaviorWidget.createCommonBehavior$0(), t1 = this.chart; t1.toString; role = commonBehavior.get$role(commonBehavior); t2 = t1._behaviorRoleMap; t3 = t2.$index(0, role); if (t3 !== commonBehavior) { t1.removeBehavior$1(t2.$index(0, role)); t2.$indexSet(0, role, commonBehavior); } t2 = t1._behaviorStack; if (!C.JSArray_methods.contains$1(t2, commonBehavior)) { t2.push(commonBehavior); commonBehavior.attachTo$1(t1); } t1 = this.chartState; t1.addedBehaviorWidgets.push(behaviorWidget); t1.addedCommonBehaviorsByRole.$indexSet(0, behaviorWidget.get$role(behaviorWidget), commonBehavior); t1._configurationChanged = true; }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(ChartBehavior)"); } }; X.BaseChart__notACustomBehavior_closure.prototype = { call$1: function(userBehavior) { var t1 = this.behavior; return userBehavior.get$role(userBehavior) === t1.get$role(t1); }, $signature: 682 }; X.BaseChart__updateSelectionModel_closure.prototype = { call$1: function(model) { var t1 = model.type, selectionModel = this.chart.getSelectionModel$1(t1), t2 = this.chartState, t3 = t2.addedSelectionChangedListenersByType, prevChangedListener = t3.$index(0, t1), t4 = model.changedListener; if (t4 !== prevChangedListener) { if (prevChangedListener != null) C.JSArray_methods.remove$1(selectionModel._changedListeners, prevChangedListener); selectionModel._changedListeners.push(t4); t3.$indexSet(0, t1, t4); } t2.addedSelectionUpdatedListenersByType.$index(0, t1); C.JSArray_methods.remove$1(this.prevTypes, t1); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(SelectionModelConfig)"); } }; X.BaseChart__updateSelectionModel_closure0.prototype = { call$1: function(type) { var t1 = this.chart.getSelectionModel$1(type), t2 = this.chartState, t3 = t2.addedSelectionChangedListenersByType.$index(0, type); t3.toString; C.JSArray_methods.remove$1(t1._changedListeners, t3); t2 = t2.addedSelectionUpdatedListenersByType.$index(0, type); t2.toString; C.JSArray_methods.remove$1(t1._updatedListeners, t2); }, $signature: 983 }; X.BaseChart_getDesiredGestures_closure.prototype = { call$1: function(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, $signature: 680 }; X.BaseChart_getDesiredGestures_closure0.prototype = { call$1: function(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, $signature: 680 }; U.BaseChartState.prototype = { get$_base_chart_state$_animationController: function() { var t1 = this.__BaseChartState__animationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_animationController")) : t1; }, initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_animationTick()); _this.__BaseChartState__animationController = t1; }, requestRebuild$0: function() { if (this._framework$_element != null) this.super$State$setState(new U.BaseChartState_requestRebuild_closure()); }, _buildChartContainer$0: function() { var t3, t4, t5, chartContainer, desiredGestures, _this = this, _null = null, t1 = _this._oldWidget, t2 = _this._widget; t2.toString; t3 = _this._animationValue; t4 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t4.toString; t5 = _this._widget; chartContainer = new X.ChartContainer(t2, t1, _this, t3, t4.textDirection === C.TextDirection_0, t5.rtlSpec, t5.userManagedState, _null, _null, C.Size_0_0, _null, _null, _this.$ti._eval$1("ChartContainer<1>")); _this._oldWidget = t5; desiredGestures = t5.getDesiredGestures$1(_this); if (desiredGestures._collection$_length !== 0) { t1 = _this._chartGestureDetector; if (t1 == null) t1 = _this._chartGestureDetector = new K.ChartGestureDetector(); t2 = _this._framework$_element; t2.toString; return t1.makeWidget$3(t2, chartContainer, desiredGestures); } else return chartContainer; }, build$1: function(_, context) { var t1, _s14_ = "chartContainer", chartWidgets = H.setRuntimeTypeInfo([], type$.JSArray_LayoutId), idAndBehaviorMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BuildableBehavior_ChartBehavior_dynamic); chartWidgets.push(T.LayoutId$(this._buildChartContainer$0(), _s14_)); this.addedCommonBehaviorsByRole.forEach$1(0, new U.BaseChartState_build_closure(idAndBehaviorMap, context, chartWidgets)); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return new T.CustomMultiChildLayout(new E.WidgetLayoutDelegate(_s14_, t1.textDirection === C.TextDirection_0, idAndBehaviorMap), chartWidgets, null); }, dispose$0: function(_) { var t1; this.get$_base_chart_state$_animationController().dispose$0(0); t1 = this._behaviorAnimationControllers; t1.forEach$1(0, new U.BaseChartState_dispose_closure()); t1.clear$0(0); this.super$_BaseChartState_State_TickerProviderStateMixin$dispose(0); }, _animationTick$0: function() { if (this._framework$_element != null) this.super$State$setState(new U.BaseChartState__animationTick_closure(this)); } }; U.BaseChartState_requestRebuild_closure.prototype = { call$0: function() { }, $signature: 0 }; U.BaseChartState_build_closure.prototype = { call$2: function(id, behavior) { var t1 = type$.BuildableBehavior_ChartBehavior_dynamic; if (t1._is(behavior)) { t1._as(behavior); this.idAndBehaviorMap.$indexSet(0, id, behavior); this.chartWidgets.push(T.LayoutId$(behavior.build$1(0, this.context), id)); } }, $signature: 987 }; U.BaseChartState_dispose_closure.prototype = { call$2: function(_, controller) { return controller.dispose$0(0); }, $signature: 990 }; U.BaseChartState__animationTick_closure.prototype = { call$0: function() { var t1 = this.$this; t1._animationValue = t1.get$_base_chart_state$_animationController().get$_animation_controller$_value(); }, $signature: 0 }; U._BaseChartState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; O.ChartBehavior.prototype = {}; O.GestureType.prototype = { toString$0: function(_) { return this._chart_behavior$_name; } }; O.DomainHighlighter.prototype = { createCommonBehavior$0: function() { var t1 = this.$ti, t2 = new O.DomainHighlighter0(C.SelectionModelType_0, t1._eval$1("DomainHighlighter0<1>")); t2.__DomainHighlighter__lifecycleListener = new X.LifecycleListener(null, null, t2.get$_updateColorFunctions(), null, t1._eval$1("LifecycleListener<1>")); return t2; }, get$role: function(_) { return "domainHighlight-SelectionModelType.info"; }, $eq: function(_, o) { if (o == null) return false; return o instanceof O.DomainHighlighter && true; }, get$hashCode: function(_) { return H.Primitives_objectHashCode(C.SelectionModelType_0); }, get$desiredGestures: function() { return this.desiredGestures; } }; Y.BaseLegendContentBuilder.prototype = { build$4$showMeasures: function(_, context, legendState, legend, showMeasures) { return this.legendLayout.build$2(0, context, J.map$1$1$ax(legendState.get$_legendEntries(), new Y.BaseLegendContentBuilder_build_closure(this, legend, context, showMeasures), type$.Widget).toList$0(0)); } }; Y.BaseLegendContentBuilder_build_closure.prototype = { call$1: function(entry) { var symbolRendererBuilder, symbol, style, label, measure, _this = this, _null = null, t1 = _this.legend, isHidden = t1._hiddenSeriesList.contains$1(0, entry.series.id), t2 = _this.$this.legendEntryLayout, t3 = _this.context, rowChildren = H.setRuntimeTypeInfo([], type$.JSArray_Widget), padding = new V.EdgeInsets(0, 0, 8, 0), entryColor = entry.color, color = entryColor == null ? _null : P.Color$fromARGB(entryColor.a, entryColor.r, entryColor.g, entryColor.b), t4 = entry.series, t5 = t4._attrs._registry, t6 = type$.nullable_SeriesRenderer_Object; t6._as(t5.$index(0, C.AttributeKey_I4y)).toString; t5 = t6._as(t5.$index(0, C.AttributeKey_I4y)); t5 = t5.symbolRenderer; t4 = t4.dashPatternFn; if (t4 == null) t4 = _null; else t4 = t4.call$1(0); symbolRendererBuilder = new B.SymbolRendererCanvas(t5, t4); if (color != null && isHidden) { t4 = color.value; color = P.Color$fromARGB(66, t4 >>> 16 & 255, t4 >>> 8 & 255, t4 & 255); } symbol = D.GestureDetector$(_null, T.SizedBox$fromSize(T.CustomPaint$(_null, _null, _null, new B._SymbolCustomPaint(t3, symbolRendererBuilder.commonSymbolRenderer, color, symbolRendererBuilder.dashPattern, _null), C.Size_0_0), new P.Size(12, 12)), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2.makeTapUpCallback$3(t3, entry, t1), _null, _null, _null); if (isHidden) { t4 = K.Theme_of(t3); color = t4.textTheme.bodyText2.color; color = P.Color$fromARGB(66, color.get$value(color) >>> 16 & 255, color.get$value(color) >>> 8 & 255, color.get$value(color) & 255); } else color = _null; style = A.TextStyle$(_null, _null, color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); label = D.GestureDetector$(_null, L.Text$(entry.label, _null, _null, _null, _null, _null, style, _null, _null, _null), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2.makeTapUpCallback$3(t3, entry, t1), _null, _null, _null); if (_this.showMeasures) { t4 = entry.formattedValue; t4.toString; measure = D.GestureDetector$(_null, L.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2.makeTapUpCallback$3(t3, entry, t1), _null, _null, _null); } else measure = _null; rowChildren.push(symbol); rowChildren.push(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null)); rowChildren.push(label); if (measure != null) { rowChildren.push(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null)); rowChildren.push(measure); } return T.Row$(rowChildren, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); }, $signature: 994 }; Y.TabularLegendContentBuilder.prototype = { $eq: function(_, o) { var t1; if (o == null) return false; if (o instanceof Y.TabularLegendContentBuilder) t1 = this.legendLayout.$eq(0, o.legendLayout); else t1 = false; return t1; }, get$hashCode: function(_) { return P.hashValues(this.legendEntryLayout, this.legendLayout, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; M.SimpleLegendEntryLayout.prototype = { makeTapUpCallback$3: function(context, legendEntry, legend) { return new M.SimpleLegendEntryLayout_makeTapUpCallback_closure(legend, legendEntry); }, $eq: function(_, other) { if (other == null) return false; return other instanceof M.SimpleLegendEntryLayout; }, get$hashCode: function(_) { return H.Primitives_objectHashCode(H.getRuntimeType(this)); } }; M.SimpleLegendEntryLayout_makeTapUpCallback_closure.prototype = { call$1: function(d) { var seriesId, t1 = this.legend; switch (C.LegendTapHandling_1) { case C.LegendTapHandling_1: seriesId = this.legendEntry.series.id; if (t1._hiddenSeriesList.contains$1(0, seriesId)) t1.showSeries$1(seriesId); else t1.hideSeries$1(seriesId); t1.get$_legend$_chart().redraw$2$skipAnimation$skipLayout(false, true); break; case C.LegendTapHandling_0: default: break; } }, $signature: 147 }; L.TabularLegendLayout.prototype = { build$2: function(_, context, legendEntries) { var paddedLegendEntries, t1, _this = this; if (_this.cellPadding == null) paddedLegendEntries = legendEntries; else { t1 = H._arrayInstanceType(legendEntries)._eval$1("MappedListIterable<1,Padding>"); paddedLegendEntries = P.List_List$of(new H.MappedListIterable(legendEntries, new L.TabularLegendLayout_build_closure(_this), t1), true, t1._eval$1("ListIterable.E")); } return _this.isHorizontalFirst ? _this._buildHorizontalFirst$1(paddedLegendEntries) : _this._buildVerticalFirst$1(paddedLegendEntries); }, $eq: function(_, o) { var _this = this; if (o == null) return false; return o instanceof L.TabularLegendLayout && _this.desiredMaxRows === o.desiredMaxRows && _this.desiredMaxColumns === o.desiredMaxColumns && _this.isHorizontalFirst === o.isHorizontalFirst && J.$eq$(_this.cellPadding, o.cellPadding); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.desiredMaxRows, _this.desiredMaxColumns, _this.isHorizontalFirst, _this.cellPadding, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, _buildHorizontalFirst$1: function(legendEntries) { var rows, i, i0, t1 = this.desiredMaxColumns, maxColumns = legendEntries.length; maxColumns = t1 === -1 ? maxColumns : Math.min(maxColumns, t1); rows = H.setRuntimeTypeInfo([], type$.JSArray_TableRow); for (i = 0; t1 = legendEntries.length, i < t1; i = i0) { i0 = i + maxColumns; t1 = C.JSArray_methods.sublist$2(legendEntries, i, Math.min(i0, t1)); t1 = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); rows.push(new S.TableRow(null, null, t1)); } return this._buildTableFromRows$1(rows); }, _buildVerticalFirst$1: function(legendEntries) { var rows, _i, i, t1 = this.desiredMaxRows, maxRows = legendEntries.length; maxRows = t1 === -1 ? maxRows : Math.min(maxRows, t1); rows = J.JSArray_JSArray$allocateGrowable(maxRows, type$.TableRow); for (t1 = type$.JSArray_Widget, _i = 0; _i < maxRows; ++_i) rows[_i] = new S.TableRow(null, null, H.setRuntimeTypeInfo([], t1)); for (i = 0; i < legendEntries.length; ++i) C.JSArray_methods.add$1(rows[C.JSInt_methods.$mod(i, maxRows)].children, legendEntries[i]); return this._buildTableFromRows$1(rows); }, _buildTableFromRows$1: function(rows) { var i, rowChildren, padCount, _null = null, t1 = this.cellPadding, padWidget = new T.Padding(t1 == null ? C.EdgeInsets_8_8_8_8 : t1, _null, _null), columnCount = new H.MappedListIterable(rows, new L.TabularLegendLayout__buildTableFromRows_closure(), H._arrayInstanceType(rows)._eval$1("MappedListIterable<1,int>")).fold$1$2(0, 0, new L.TabularLegendLayout__buildTableFromRows_closure0(), type$.int); for (t1 = type$.Padding, i = 0; i < rows.length; ++i) { rowChildren = rows[i].children; padCount = columnCount - rowChildren.length; if (padCount > 0) C.JSArray_methods.addAll$1(rowChildren, P.Iterable_Iterable$generate(padCount, new L.TabularLegendLayout__buildTableFromRows_closure1(padWidget), t1)); } return S.Table$(rows, _null, new S.IntrinsicColumnWidth(_null), C.TableCellVerticalAlignment_0, _null); } }; L.TabularLegendLayout_build_closure.prototype = { call$1: function(entry) { var t1 = this.$this.cellPadding; t1.toString; return new T.Padding(t1, entry, null); }, $signature: 1012 }; L.TabularLegendLayout__buildTableFromRows_closure.prototype = { call$1: function(r) { return r.children.length; }, $signature: 1013 }; L.TabularLegendLayout__buildTableFromRows_closure0.prototype = { call$2: function(max, current) { return current > max ? current : max; }, $signature: 438 }; L.TabularLegendLayout__buildTableFromRows_closure1.prototype = { call$1: function(_) { return this.padWidget; }, $signature: 1014 }; Z.SeriesLegend.prototype = { createCommonBehavior$0: function() { var _this = this, _null = null, t1 = _this.$ti, t2 = t1._precomputed1, t3 = _this.selectionModelType, t4 = new V.PerSeriesLegendEntryGenerator(t1._eval$1("PerSeriesLegendEntryGenerator<1>")); t1 = new Z._FlutterSeriesLegend(_this, P.LinkedHashSet_LinkedHashSet$_empty(type$.String), t3, new D.LegendState(t1._eval$1("LegendState<1>")), t4, t1._eval$1("_FlutterSeriesLegend<1>")); t1.Legend$3$entryTextStyle$legendEntryGenerator$selectionModelType(_null, t4, t3, t2); t1.SeriesLegend$7$entryTextStyle$legendDefaultMeasure$legendEntryGenerator$measureFormatter$secondaryMeasureFormatter$selectionModelType$showMeasures(_null, _this.legendDefaultMeasure, _null, _this.measureFormatter, _this.secondaryMeasureFormatter, t3, _null, t2); t1.super$SeriesLegend$defaultHiddenSeries(_this.defaultHiddenSeries); t1.super$Legend$entryTextStyle(_this.entryTextStyle); return t1; }, get$role: function(_) { return "legend"; }, $eq: function(_, o) { var t1, _this = this; if (o == null) return false; if (o instanceof Z.SeriesLegend) if (_this.selectionModelType === o.selectionModelType) if (_this.contentBuilder.$eq(0, o.contentBuilder)) if (_this.position === o.position) if (_this.outsideJustification === o.outsideJustification) if (_this.insideJustification === o.insideJustification) if (new U.ListEquality(C.C_DefaultEquality, type$.ListEquality_dynamic).equals$2(_this.defaultHiddenSeries, o.defaultHiddenSeries)) if (_this.legendDefaultMeasure === o.legendDefaultMeasure) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.selectionModelType, _this.contentBuilder, _this.position, _this.outsideJustification, _this.insideJustification, _this.defaultHiddenSeries, false, _this.legendDefaultMeasure, _this.measureFormatter, _this.secondaryMeasureFormatter, _this.entryTextStyle, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, get$desiredGestures: function() { return this.desiredGestures; } }; Z._FlutterSeriesLegend.prototype = { build$1: function(_, context) { var _this = this, t1 = _this.legendState; if (t1.get$_legendEntries() != null) J.any$1$ax(t1.get$_legendEntries(), new Z._FlutterSeriesLegend_build_closure(_this)); return _this.config.contentBuilder.build$4$showMeasures(0, context, t1, _this, false); }, $isBuildableBehavior: 1 }; Z._FlutterSeriesLegend_build_closure.prototype = { call$1: function(entry) { return entry.isSelected; }, $signature: function() { return this.$this.$ti._eval$1("bool(LegendEntry<1>)"); } }; E.LinePointHighlighter.prototype = { createCommonBehavior$0: function() { var _null = null, t1 = this.$ti, t2 = P.LinkedHashMap_LinkedHashMap(_null, _null, type$.String, t1._eval$1("_AnimatedPoint<1>")), t3 = H.setRuntimeTypeInfo([], type$.JSArray_String), t4 = H.setRuntimeTypeInfo([1, 3], type$.JSArray_int); t2 = new E.LinePointHighlighter0(C.SelectionModelType_0, 4, 2, C.LinePointHighlighterFollowLineType_1, C.LinePointHighlighterFollowLineType_0, t4, true, new B.CircleSymbolRenderer(true), t2, t3, t1._eval$1("LinePointHighlighter0<1>")); t2.__LinePointHighlighter__lifecycleListener = new X.LifecycleListener(_null, _null, _null, t2.get$_updateViewData(), t1._eval$1("LifecycleListener<1>")); return t2; }, get$role: function(_) { return "LinePointHighlighter-" + C.JSNull_methods.toString$0(null); }, $eq: function(_, o) { var t1; if (o == null) return false; if (o instanceof E.LinePointHighlighter) t1 = new U.ListEquality(C.C_DefaultEquality, type$.ListEquality_dynamic).equals$2(null, null) && true; else t1 = false; return t1; }, get$hashCode: function(_) { var _null = null; return P.hashValues(_null, _null, _null, _null, _null, _null, _null, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, get$desiredGestures: function() { return this.desiredGestures; } }; Z.SelectNearest.prototype = { createCommonBehavior$0: function() { var t2, _this = this, _null = null, eventTrigger = _this.eventTrigger, t1 = new Z.SelectNearest0(_this.selectionModelType, eventTrigger, _this.selectionMode, true, _this.maximumDomainDistancePx, _this.$ti._eval$1("SelectNearest0<1>")); switch (eventTrigger) { case C.SelectionTrigger_1: t1.__SelectNearest__listener = N.GestureListener$(_null, _null, _null, _null, _null, t1.get$_onSelect(), t1.get$_onTapTest()); break; case C.SelectionTrigger_2: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = N.GestureListener$(_null, t2, t2, _null, _null, t2, t1.get$_onTapTest()); break; case C.SelectionTrigger_3: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = N.GestureListener$(t1.get$_onDeselectAll(), t2, t2, _null, t2, _null, t1.get$_onTapTest()); break; case C.SelectionTrigger_4: t2 = t1.get$_onSelect(); t1.__SelectNearest__listener = N.GestureListener$(t1.get$_onDeselectAll(), t2, t2, _null, t1.get$_onLongPressSelect(), _null, t1.get$_onTapTest()); break; case C.SelectionTrigger_0: default: t1.__SelectNearest__listener = N.GestureListener$(_null, _null, _null, t1.get$_onSelect(), _null, _null, _null); break; } return t1; }, get$role: function(_) { return "SelectNearest-SelectionModelType.info}"; }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof Z.SelectNearest) { if (this.selectionModelType === other.selectionModelType) if (this.eventTrigger === other.eventTrigger) if (this.selectionMode === other.selectionMode) t1 = true; else t1 = false; else t1 = false; else t1 = false; return t1; } else return false; }, get$hashCode: function(_) { var _this = this, hashcode = H.Primitives_objectHashCode(_this.selectionModelType), t1 = H.Primitives_objectHashCode(_this.eventTrigger), t2 = H.Primitives_objectHashCode(_this.selectionMode); return (((hashcode * 37 + t1) * 37 + t2) * 37 + 519018) * 37 + C.JSNull_methods.get$hashCode(_this.maximumDomainDistancePx); }, get$desiredGestures: function() { return this.desiredGestures; } }; V.LinePainter__drawDashedLine_closure.prototype = { call$0: function() { var t1 = this.localDashPattern, t2 = this._box_0, t3 = t2.dashPatternIndex, dashSegment = t1[t3]; t2.dashPatternIndex = (t3 + 1) % t1.length; return dashSegment; }, $signature: 9 }; L.CartesianChart0.prototype = { createDisjointMeasureAxes$0: function() { return null; } }; S.ChartCanvas.prototype = { drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx: function(_, clipBounds, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx) { V.LinePainter_draw(this.canvas, clipBounds, dashPattern, fill, this._chart_canvas$_paint, points, roundEndCaps, null, stroke, strokeWidthPx); }, drawLine$6$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx: function($receiver, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, null, dashPattern, fill, points, roundEndCaps, stroke, strokeWidthPx); }, drawLine$6$clipBounds$dashPattern$points$roundEndCaps$stroke$strokeWidthPx: function($receiver, clipBounds, dashPattern, points, roundEndCaps, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, clipBounds, dashPattern, null, points, roundEndCaps, stroke, strokeWidthPx); }, drawLine$5$dashPattern$fill$points$stroke$strokeWidthPx: function($receiver, dashPattern, fill, points, stroke, strokeWidthPx) { return this.drawLine$7$clipBounds$dashPattern$fill$points$roundEndCaps$stroke$strokeWidthPx($receiver, null, dashPattern, fill, points, null, stroke, strokeWidthPx); }, drawPolygon$3$clipBounds$fill$points: function(clipBounds, fill, points) { E.PolygonPainter_draw(this.canvas, clipBounds, fill, this._chart_canvas$_paint, points, null, null); }, _createHintGradient$3: function(left, $top, fill) { var t1 = fill.r, t2 = fill.g, t3 = fill.b; return P.Gradient_Gradient$linear(new P.Offset(left, $top), new P.Offset(left, $top - 5), H.setRuntimeTypeInfo([P.Color$fromARGB(fill.a, t1, t2, t3), P.Color$fromARGB(0, t1, t2, t3)], type$.JSArray_Color), null, C.TileMode_0); }, drawBarStack$2$drawAreaBounds: function(barStack, drawAreaBounds) { var t2, t3, t4, t5, barIndex, segment, bounds, fill, stroke, strokeWidthPx, drawStroke, strokeWidthOffset, t6, t7, t8, t9, t10, fillRectBounds, t11, _this = this, t1 = barStack.radius, roundedCorners = 0 < t1; if (roundedCorners) { t2 = _this.canvas; t2.save$0(0); t2.clipRRect$1(0, _this._chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight(barStack.fullStackRect, t1, barStack.roundBottomLeft, barStack.roundBottomRight, barStack.roundTopLeft, barStack.roundTopRight)); } for (t1 = barStack.segments, t2 = _this._chart_canvas$_paint, t3 = _this.canvas, t4 = J.getInterceptor$x(drawAreaBounds), t5 = type$.num, barIndex = 0; barIndex < t1.length; ++barIndex) { segment = t1[barIndex]; bounds = segment.bounds; fill = segment.fill; stroke = segment.stroke; strokeWidthPx = segment.strokeWidthPx; drawStroke = strokeWidthPx != null && strokeWidthPx > 0 && stroke != null; strokeWidthOffset = drawStroke ? strokeWidthPx : 0; t6 = bounds.left; strokeWidthOffset.toString; t7 = strokeWidthOffset / 2; t8 = bounds.top; t9 = bounds.width; t10 = bounds.height; fillRectBounds = P.Rectangle$(t6 + t7, t8 + t7, t9 - strokeWidthOffset, t10 - strokeWidthOffset, t5); switch (segment.pattern) { case C.FillPatternType_0: fill.toString; _this._drawForwardHatchPattern$4$drawAreaBounds$fill(fillRectBounds, t3, drawAreaBounds, fill); break; case C.FillPatternType_1: default: t2.set$color(0, P.Color$fromARGB(fill.a, fill.r, fill.g, fill.b)); t2.set$style(0, C.PaintingStyle_0); t7 = t4.get$top(drawAreaBounds); if (t8 < t7) { t7 = t4.get$left(drawAreaBounds); t7.toString; t11 = t4.get$top(drawAreaBounds); t11.toString; t2.set$shader(_this._createHintGradient$3(t7, t11, fill)); } t7 = fillRectBounds.left; t11 = fillRectBounds.top; t3.drawRect$2(0, new P.Rect(t7, t11, t7 + fillRectBounds.width, t11 + fillRectBounds.height), t2); break; } if (drawStroke) { t2.set$color(0, P.Color$fromARGB(stroke.a, stroke.r, stroke.g, stroke.b)); t7 = t4.get$left(drawAreaBounds); t7.toString; t11 = t4.get$top(drawAreaBounds); t11.toString; t11 = _this._createHintGradient$3(t7, t11, stroke); t7 = t11; t2.set$shader(t7); t2.set$strokeJoin(C.StrokeJoin_1); strokeWidthPx.toString; t2.set$strokeWidth(strokeWidthPx); t2.set$style(0, C.PaintingStyle_1); t3.drawRect$2(0, new P.Rect(t6, t8, t6 + t9, t8 + t10), t2); } t2.set$shader(null); } if (roundedCorners) t3.restore$0(0); }, _getRect$1: function(rectangle) { var t1 = rectangle.left, t2 = rectangle.top; return new P.Rect(t1, t2, t1 + rectangle.width, t2 + rectangle.height); }, _chart_canvas$_getRRect$6$radius$roundBottomLeft$roundBottomRight$roundTopLeft$roundTopRight: function(rectangle, radius, roundBottomLeft, roundBottomRight, roundTopLeft, roundTopRight) { var t5, t6, t7, t8, t9, t10, t11, t12, cornerRadius = radius === 0 ? C.Radius_0_0 : new P.Radius(radius, radius), t1 = rectangle.left, t2 = rectangle.top, t3 = rectangle.$ti._precomputed1, t4 = t3._as(t1 + rectangle.width); t3 = t3._as(t2 + rectangle.height); t5 = roundTopLeft ? cornerRadius : C.Radius_0_0; t6 = roundTopRight ? cornerRadius : C.Radius_0_0; t7 = roundBottomLeft ? cornerRadius : C.Radius_0_0; t8 = roundBottomRight ? cornerRadius : C.Radius_0_0; t9 = t7.x; t7 = t7.y; t10 = t8.x; t8 = t8.y; t11 = t5.x; t5 = t5.y; t12 = t6.x; t6 = t6.y; return new P.RRect(t1, t2, t4, t3, t11, t5, t12, t6, t10, t8, t9, t7, t11 == t5 && t11 == t12 && t11 == t6 && t11 == t9 && t11 == t7 && t11 == t10 && t11 == t8); }, _drawForwardHatchPattern$4$drawAreaBounds$fill: function(bounds, canvas, drawAreaBounds, fill) { var t2, t3, t4, t5, smallSide, smallSide0, size, x0, x1, y0, y1, isVertical, start, end, lineShader, i, modifier, _this = this, _null = null, t1 = $.$get$StyleFactory__styleFactory(); t1.toString; if (fill == null) { t1.toString; fill = C.Color_ww8; } t1 = _this._chart_canvas$_paint; t1.set$color(0, P.Color$fromARGB(255, 255, 255, 255)); t1.set$style(0, C.PaintingStyle_0); t2 = bounds.top; t3 = J.getInterceptor$x(drawAreaBounds); t4 = t3.get$top(drawAreaBounds); if (t2 < t4) { t4 = t3.get$left(drawAreaBounds); t4.toString; t5 = t3.get$top(drawAreaBounds); t5.toString; t1.set$shader(_this._createHintGradient$3(t4, t5, C.Color_toQ)); } canvas.drawRect$2(0, _this._getRect$1(bounds), t1); smallSide = bounds.width; smallSide0 = bounds.height; size = Math.max(smallSide, smallSide0); t4 = bounds.left; x0 = t4 + size + 4; x1 = t4 - 4; t4 = bounds.$ti._precomputed1._as(t2 + smallSide0); y0 = t4 - size - 4; y1 = t4 + 4; isVertical = smallSide0 >= smallSide; start = -C.JSNumber_methods.round$0((isVertical ? smallSide : smallSide0) / 8) * 8; end = size + 8; t4 = t3.get$top(drawAreaBounds); if (t2 < t4) { t2 = t3.get$left(drawAreaBounds); t2.toString; t3 = t3.get$top(drawAreaBounds); t3.toString; lineShader = _this._createHintGradient$3(t2, t3, fill); } else lineShader = _null; for (t2 = type$.Point_num, t3 = type$.JSArray_Point_num, i = start; i < end; i += 8) { modifier = isVertical ? -1 * i : i; V.LinePainter_draw(canvas, _null, _null, _null, t1, H.setRuntimeTypeInfo([new P.Point(x0 + modifier, y0, t2), new P.Point(x1 + modifier, y1, t2)], t3), _null, lineShader, fill, 4); } } }; X.ChartContainer.prototype = { createRenderObject$1: function(context) { var _null = null, t1 = new X.ChartContainerRenderObject(F.Logger_Logger("charts_flutter.charts_container"), _null, _null, C.Size_0_0, false, false, _null, this.$ti._eval$1("ChartContainerRenderObject<1>")); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); t1.reconfigure$2(this, context); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.reconfigure$2(this, context); } }; X.ChartContainerRenderObject.prototype = { get$_chartState: function() { var t1 = this.__ChartContainerRenderObject__chartState; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_chartState")) : t1; }, reconfigure$2: function(config, context) { var t1, t2, t3, t4, prev, t5, t6, lastConfigurationBelowThreshold, _this = this, _null = null, _s12_ = "chartsCreate", _s12_0 = "chartsConfig", _s10_ = "chartsDraw"; _this.__ChartContainerRenderObject__chartState = config.chartState; t1 = config.chartWidget; _this._dateTimeFactory = null; _this._dateTimeFactory = new Z.LocalDateTimeFactory(); if (_this._chart_container$_chart == null) { $.$get$Performance_time().call$1(_s12_); t2 = t1.createCommonChart$1(_this.get$_chartState()); _this._chart_container$_chart = t2; t3 = F.MediaQuery_textScaleFactorOf(context); t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); t2.init$2(_this, new A.GraphicsFactory(t3, t4 == null ? C.DefaultTextStyle_4i6 : t4)); $.$get$Performance_timeEnd().call$1(_s12_); } $.$get$Performance_time().call$1(_s12_0); t2 = _this._chart_container$_chart; t2.toString; prev = config.oldChartWidget; t3 = _this.get$_chartState(); t1.toString; t1.super$BaseChart$updateCommonChart(t2, prev, t3); t4 = t1.domainAxis; t5 = !t4.$eq(0, prev == null ? _null : prev.domainAxis); if (t5) { if (!J.$eq$(t2._domainAxisSpec, t4)) { t2._newDomainAxis = t2.createDomainAxisFromSpec$1(t4); t2._newDomainAxisSpec = t4; } t3._configurationChanged = true; } t4 = t1.primaryMeasureAxis; if (!t4.$eq(0, prev == null ? _null : prev.primaryMeasureAxis)) { t2._newPrimaryMeasureAxisSpec = t4; t5 = t2._primaryMeasureAxis; t6 = t2.get$context(t2); t2 = t2.graphicsFactory; t2.toString; t4.configure$3(t5, t6, t2); t3._configurationChanged = true; } _this._rtlSpec = config.rtlSpec; _this._chartContainerIsRtl = config.rtl; $.$get$Performance_timeEnd().call$1(_s12_0); if (_this.get$_chartState()._configurationChanged) { t2 = Date.now(); t3 = _this._lastConfigurationChangeTime; lastConfigurationBelowThreshold = t3 != null && C.JSInt_methods._tdivFast$1(P.Duration$(0, 0, 0, t2 - t3._value, 0, 0)._duration, 1000) < 500; _this._lastConfigurationChangeTime = new P.DateTime(t2, false); if (lastConfigurationBelowThreshold) { _this.get$_chartState()._configurationChanged = false; _this._chart_container$_log.log$4(C.Level_WARNING_900, "Chart configuration is changing more frequent than threshold of 500. Check if your behavior, axis, or renderer config is missing equality checks that may be causing configuration to be detected as changed. ", _null, _null); } } if (_this.get$_chartState()._configurationChanged) _this._chart_container$_chart.configurationChanged$0(); t2 = _this._seriesList; t1 = t1.seriesList; if ((t2 == null ? t1 != null : t2 !== t1) || _this.get$_chartState()._configurationChanged) { _this.get$_chartState()._configurationChanged = false; _this._seriesList = t1; _this._a11yNodes = null; $.$get$Performance_time().call$1(_s10_); t1 = _this._chart_container$_chart; t1.toString; t2 = _this._seriesList; t2.toString; t1.draw$1(t2); $.$get$Performance_timeEnd().call$1(_s10_); _this._chart_container$_chart.animationPercent = 0; _this.markNeedsLayout$0(); } else { _this._chart_container$_chart.animationPercent = config.animationValue; _this.markNeedsPaint$0(); } _this._updateUserManagedState$1(config.userManagedState); t1 = type$.nullable_ChartContainerCustomPaint._as(_this._painter); t2 = _this._chart_container$_chart; t2.toString; t3 = H.setRuntimeTypeInfo([], type$.JSArray_A11yNode); _this.set$painter(X.ChartContainerCustomPaint_ChartContainerCustomPaint(t3, t2, false, t1, _this._chartContainerIsRtl ? C.TextDirection_0 : C.TextDirection_1)); }, _updateUserManagedState$1: function(newState) { return; }, performLayout$0: function() { var t1, t2, t3, t4, _this = this, _s12_ = "chartsLayout"; $.$get$Performance_time().call$1(_s12_); t1 = _this._chart_container$_chart; t1.toString; t2 = type$.BoxConstraints; t3 = J.toInt$0$n(t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth); t4 = J.toInt$0$n(t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight); if (t1._rendererToSeriesList != null) t1._layoutManager.measure$2(0, t3, t4); t1 = _this._chart_container$_chart; t1.toString; t1.layout$2(0, J.toInt$0$n(t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth), J.toInt$0$n(t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); $.$get$Performance_timeEnd().call$1(_s12_); t2 = t2._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(1 / 0, t2.minWidth, t2.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t2.minHeight, t2.maxHeight)); }, markNeedsLayout$0: function() { this.super$RenderBox$markNeedsLayout(); if (this._node$_parent != null) this.markParentNeedsLayout$0(); }, hitTestSelf$1: function(position) { return true; }, requestAnimation$1: function(transition) { var t1 = $.SchedulerBinding__instance; if (!t1.SchedulerBinding__hasScheduledFrame) t1.scheduleFrame$0(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new X.ChartContainerRenderObject_requestAnimation_startAnimationController(this, transition)); }, requestRebuild$0: function() { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new X.ChartContainerRenderObject_requestRebuild_doRebuild(this)); }, get$isRtl: function() { if (this._chartContainerIsRtl) var t1 = true; else t1 = false; return t1; } }; X.ChartContainerRenderObject_requestAnimation_startAnimationController.prototype = { call$1: function(_) { var t3, t1 = this.$this.get$_chartState(), t2 = this.transition; t1.get$_base_chart_state$_animationController().duration = t2; t3 = t1.get$_base_chart_state$_animationController(); t3.forward$1$from(0, t2._duration === 0 ? 1 : 0); t1._animationValue = t1.get$_base_chart_state$_animationController().get$_animation_controller$_value(); }, $signature: 81 }; X.ChartContainerRenderObject_requestRebuild_doRebuild.prototype = { call$1: function(_) { this.$this.get$_chartState().requestRebuild$0(); }, $signature: 81 }; X.ChartContainerCustomPaint.prototype = { paint$2: function(canvas, size) { var t1, t2, _s11_ = "chartsPaint"; $.$get$Performance_time().call$1(_s11_); t1 = this.chart; t1.graphicsFactory.toString; t2 = H._detectRenderer(); t1.paint$1(new S.ChartCanvas(canvas, t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()))); $.$get$Performance_timeEnd().call$1(_s11_); }, shouldRepaint$1: function(oldPainter) { return false; }, shouldRebuildSemantics$1: function(oldDelegate) { var t1 = this.a11yNodes !== oldDelegate.a11yNodes || false; return t1; }, get$semanticsBuilder: function() { return this.get$_buildSemantics(); }, _buildSemantics$1: function(size) { var t1, t2, _i, node, t3, t4, t5, t6, _null = null, nodes = H.setRuntimeTypeInfo([], type$.JSArray_CustomPainterSemantics); for (t1 = this.a11yNodes, t2 = this.textDirection, _i = 0; false; ++_i) { node = t1[_i]; t3 = node.get$boundingBox(node); t3 = t3.get$left(t3).toDouble$0(0); t4 = node.get$boundingBox(node); t4 = t4.get$top(t4).toDouble$0(0); t5 = node.get$boundingBox(node); t5 = t5.get$width(t5).toDouble$0(0); t6 = node.get$boundingBox(node); t6 = t6.get$height(t6).toDouble$0(0); nodes.push(new V.CustomPainterSemantics(new P.Rect(t3, t4, t3.$add(0, t5), t4.$add(0, t6)), new 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, node.get$label(node), _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, node.get$onFocus(node), _null, _null, _null))); } return nodes; } }; K.ChartGestureDetector.prototype = { get$_containerResolver: function() { var t1 = this.__ChartGestureDetector__containerResolver; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_containerResolver")) : t1; }, makeWidget$3: function(context, chartContainer, desiredGestures) { var t1, wantTap, wantDrag, t2, t3, t4, _this = this, _null = null; _this.__ChartGestureDetector__containerResolver = new K.ChartGestureDetector_makeWidget_closure(context); t1 = desiredGestures._collection$_length; wantTap = desiredGestures.contains$1(0, C.GestureType_1); wantDrag = desiredGestures.contains$1(0, C.GestureType_3); _this._listeningForLongPress = desiredGestures.contains$1(0, C.GestureType_0); t1 = t1 !== 0 ? _this.get$onTapDown() : _null; t2 = wantTap ? _this.get$onTapUp() : _null; t3 = wantDrag ? _this.get$onScaleStart() : _null; t4 = wantDrag ? _this.get$onScaleUpdate() : _null; return D.GestureDetector$(_null, chartContainer, C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, wantDrag ? _this.get$onScaleEnd() : _null, t3, t4, _null, _null, t1, t2, _null, _null, _null); }, onTapDown$1: function(d) { var t2, _this = this, container = _this._containerResolver$0(), localPosition = container.globalToLocal$1(d.globalPosition), t1 = new P.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; t2 = container._chart_container$_chart._gestureProxy; C.JSArray_methods.set$length(t2._activeListeners, 0); t2._populateActiveListeners$1(t1); if (_this._listeningForLongPress) _this._longPressTimer = P.Timer_Timer(C.Duration_500000, new K.ChartGestureDetector_onTapDown_closure(_this)); }, onTapUp$1: function(d) { var container, localPosition, t1 = this._longPressTimer; if (t1 != null) t1.cancel$0(0); container = this._containerResolver$0(); localPosition = container.globalToLocal$1(d.globalPosition); t1 = new P.Point(localPosition._dx, localPosition._dy, type$.Point_double); this._lastTapPoint = t1; container._chart_container$_chart._gestureProxy.onTap$1(t1); }, onScaleStart$1: function(d) { var container, localPosition, _this = this, t1 = _this._longPressTimer; if (t1 != null) t1.cancel$0(0); container = _this._containerResolver$0(); localPosition = container.globalToLocal$1(d.focalPoint); t1 = new P.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; _this._isDragging = container._chart_container$_chart._gestureProxy.onDragStart$1(0, t1); }, onScaleUpdate$1: function(d) { var container, localPosition, t1, t2, _this = this; if (!_this._isDragging) return; container = _this._containerResolver$0(); localPosition = container.globalToLocal$1(d.focalPoint); t1 = new P.Point(localPosition._dx, localPosition._dy, type$.Point_double); _this._lastTapPoint = t1; t2 = d.scale; _this._lastScale = t2; container._chart_container$_chart._gestureProxy.onDragUpdate$2(t1, t2); }, onScaleEnd$1: function(d) { var t1, t2, t3, _this = this; if (!_this._isDragging) return; t1 = _this._containerResolver$0()._chart_container$_chart._gestureProxy; t2 = _this._lastTapPoint; t2.toString; t3 = _this._lastScale; t3.toString; t1.onDragEnd$3(0, t2, t3, d.velocity.pixelsPerSecond._dx); }, _containerResolver$0: function() { return this.get$_containerResolver().call$0(); } }; K.ChartGestureDetector_makeWidget_closure.prototype = { call$0: function() { var t1 = this.context.get$renderObject(); t1.toString; return M.getChartContainerRenderObject(type$.RenderBox._as(t1)); }, $signature: 1022 }; K.ChartGestureDetector_onTapDown_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._containerResolver$0()._chart_container$_chart._gestureProxy, t3 = t1._lastTapPoint; t3.toString; t2.onLongPress$1(t3); t1._longPressTimer = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; A.GraphicsFactory.prototype = { createTextPaint$0: function() { var t1 = new A.TextStyle0(); t1.fontFamily = this.defaultTextStyle.style.fontFamily; return t1; }, createTextElement$1: function(text) { var t1 = new Q.TextElement(text, this.textScaleFactor, C.TextDirection_00); t1.set$textStyle(0, this.createTextPaint$0()); return t1; } }; X.LineStyle.prototype = {}; F.SelectionModelConfig.prototype = {}; B.SymbolRendererCanvas.prototype = {}; B._SymbolCustomPaint.prototype = { paint$2: function(canvas, size) { var commonColor, _this = this, bounds = P.Rectangle$(0, 0, J.toInt$0$n(size._dx), J.toInt$0$n(size._dy), type$.num), t1 = _this.color; if (t1 == null) commonColor = null; else { t1 = t1.value; commonColor = new K.Color0(t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255, t1 >>> 24 & 255, null, null); } t1 = _this.context; F.MediaQuery_textScaleFactorOf(t1); t1.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); _this.symbolRenderer.paint$5$dashPattern$fillColor$strokeColor(new S.ChartCanvas(canvas, t1), bounds, _this.dashPattern, commonColor, commonColor); }, shouldRepaint$1: function(oldDelegate) { return this.symbolRenderer.shouldRepaint$1(oldDelegate.symbolRenderer); } }; Q.TextElement.prototype = { get$_text_element$_textPainter: function() { var t1 = this.__TextElement__textPainter; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_textPainter")) : t1; }, set$textStyle: function(_, value) { if (J.$eq$(this._text_element$_textStyle, value)) return; this._text_element$_textStyle = value; this._painterReady = false; }, set$textDirection: function(_, direction) { if (this._text_element$_textDirection === direction) return; this._text_element$_textDirection = direction; this._painterReady = false; }, set$maxWidth: function(_, value) { if (this._text_element$_maxWidth == value) return; this._text_element$_maxWidth = value; this._painterReady = false; }, set$maxWidthStrategy: function(maxWidthStrategy) { if (this._maxWidthStrategy == maxWidthStrategy) return; this._maxWidthStrategy = maxWidthStrategy; this._painterReady = false; }, get$measurement: function() { if (!this._painterReady) this._refreshPainter$0(); var t1 = this.__TextElement__measurement; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_measurement")) : t1; }, _refreshPainter$0: function() { var t2, t3, color, t4, _this = this, _null = null, t1 = _this._text_element$_opacity; if (t1 == null) t1 = _this._text_element$_opacity = 1; t2 = _this._text_element$_textStyle; t3 = t2 == null; if (t3 || t2.color == null) color = _null; else { t4 = t2.color; color = P.Color$fromARGB(C.JSNumber_methods.round$0(t4.a * t1), t4.r, t4.g, t4.b); } if (t3) t1 = _null; else { t1 = t2.fontSize; if (t1 == null) t1 = _null; } t4 = t3 ? _null : t2.fontFamily; t1 = U.TextPainter$(_null, _null, _null, _null, Q.TextSpan$(_null, _null, A.TextStyle$(_null, _null, color, _null, _null, _null, _null, _null, t4, _null, _null, t1, _null, _null, _null, t3 ? _null : t2.lineHeight, true, _null, _null, _null, _null, _null, _null, _null), _this.text), C.TextAlign_4, _null, _null, 1, C.TextWidthBasis_0); t1.set$textDirection(0, C.TextDirection_1); t1.set$textAlign(0, C.TextAlign_0); t1.set$ellipsis(0, _this._maxWidthStrategy === C.MaxWidthStrategy_1 ? "\u2026" : _null); _this.__TextElement__textPainter = t1; _this.get$_text_element$_textPainter().set$textScaleFactor(_this.textScaleFactor); t1 = _this.get$_text_element$_textPainter(); t2 = _this._text_element$_maxWidth; if (t2 == null) t2 = _null; t1.layout$1$maxWidth(0, t2 == null ? 1 / 0 : t2); _this.get$_text_element$_textPainter().computeDistanceToActualBaseline$1(C.TextBaseline_0); t1 = _this.get$_text_element$_textPainter(); t1 = t1.get$width(t1); t2 = _this.get$_text_element$_textPainter()._text_painter$_paragraph; t2 = t2.get$height(t2); t2.toString; _this.__TextElement__measurement = new X.TextMeasurement(t1, Math.ceil(t2) * 0.7); _this._painterReady = true; }, $isTextElement1: 1, text$0: function($receiver) { return this.text.call$0(); } }; A.TextStyle0.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof A.TextStyle0 && this.fontSize == other.fontSize && this.fontFamily == other.fontFamily && J.$eq$(this.color, other.color) && true; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.fontSize, _this.fontFamily, _this.color, _this.lineHeight, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; M.TimeSeriesChart0.prototype = { createCommonChart$1: function(chartState) { var t5, t6, t7, t8, t9, t10, t11, t12, _null = null, t1 = M.NumericAxis$(), t2 = this.createDisjointMeasureAxes$0(), t3 = F.DateTimeAxis$(C.C_LocalDateTimeFactory), t4 = M.NumericAxis$(); if (t2 == null) t2 = P.LinkedHashMap_LinkedHashMap(_null, _null, type$.String, type$.NumericAxis); t5 = $.$get$CartesianChart__defaultLayoutConfig(); t6 = type$.String; t7 = type$.ChartBehavior_DateTime; t8 = H.setRuntimeTypeInfo([], type$.JSArray_ChartBehavior_DateTime); t9 = type$.JSArray_GestureListener; t10 = H.setRuntimeTypeInfo([], t9); t9 = H.setRuntimeTypeInfo([], t9); t11 = H.setRuntimeTypeInfo([], type$.JSArray_LifecycleListener_DateTime); t12 = H.setRuntimeTypeInfo([], type$.JSArray_LayoutView); return new M.TimeSeriesChart(C.C_LocalDateTimeFactory, true, t3, t1, t4, t2, new D.LayoutManagerImpl(t5 == null ? M.LayoutConfig$(_null, _null, _null, _null) : t5, t12), C.Duration_300000, P.LinkedHashSet_LinkedHashSet$_empty(t6), P.LinkedHashMap_LinkedHashMap$_empty(t6, type$.SeriesRenderer_DateTime), P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), t8, P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), new G.ProxyGestureListener(t10, t9), P.LinkedHashMap_LinkedHashMap$_empty(type$.SelectionModelType, type$.MutableSelectionModel_DateTime), t11); }, addDefaultInteractions$1: function(behaviors) { this.super$BaseChart$addDefaultInteractions(behaviors); behaviors.push(new E.LinePointHighlighter(P.LinkedHashSet_LinkedHashSet(type$.GestureType), type$.LinePointHighlighter_DateTime)); } }; M.getChartContainerRenderObject_closure.prototype = { call$1: function(child) { return child instanceof E.RenderSemanticsGestureHandler; }, $signature: 670 }; E.WidgetLayoutDelegate.prototype = { performLayout$1: function(size) { var behaviorID, t3, leftPosition, rightPosition, behaviorPosition, behaviorSize, chartOffset, chartSize, _this = this, availableWidth = size._dx, availableHeight = size._dy, t1 = _this.idAndBehavior, t2 = t1.get$keys(t1); if (!t2.get$isEmpty(t2)) { t2 = t1.get$keys(t1); behaviorID = t2.get$first(t2); } else behaviorID = null; t2 = behaviorID != null; if (t2) if (_this._idToChild.$index(0, behaviorID) != null) { t3 = _this.isRTL; leftPosition = t3 ? C.BehaviorPosition_3 : C.BehaviorPosition_2; rightPosition = t3 ? C.BehaviorPosition_2 : C.BehaviorPosition_3; behaviorPosition = t1.$index(0, behaviorID).config.position; behaviorSize = _this.layoutChild$2(behaviorID, S.BoxConstraints$loose(size)); if (behaviorPosition === C.BehaviorPosition_0) { t3 = behaviorSize._dy; chartOffset = new P.Offset(0, t3); availableHeight -= t3; } else if (behaviorPosition === C.BehaviorPosition_1) { availableHeight -= behaviorSize._dy; chartOffset = C.Offset_0_0; } else if (behaviorPosition === leftPosition) { t3 = behaviorSize._dx; chartOffset = new P.Offset(t3, 0); availableWidth -= t3; } else { if (behaviorPosition === rightPosition) availableWidth -= behaviorSize._dx; chartOffset = C.Offset_0_0; } } else { chartOffset = C.Offset_0_0; behaviorSize = C.Size_0_0; } else { chartOffset = C.Offset_0_0; behaviorSize = C.Size_0_0; } chartSize = new P.Size(availableWidth, availableHeight); t3 = _this.chartID; if (_this._idToChild.$index(0, t3) != null) { _this.layoutChild$2(t3, S.BoxConstraints$tight(chartSize)); _this.positionChild$2(t3, chartOffset); } if (t2) { t1 = t1.$index(0, behaviorID); t1.toString; _this.positionChild$2(behaviorID, _this._getBehaviorOffset$4$behaviorSize$chartSize$isRTL(t1, behaviorSize, chartSize, _this.isRTL)); } }, shouldRelayout$1: function(oldDelegate) { return this.idAndBehavior !== type$.WidgetLayoutDelegate._as(oldDelegate).idAndBehavior; }, _getBehaviorOffset$4$behaviorSize$chartSize$isRTL: function(behavior, behaviorSize, chartSize, isRTL) { var _behaviorOffset_set, t1, behaviorPosition, outsideJustification, heightOffset, mappedJustification, t2, widthOffset, rightOffset, _s80_ = string$.x60null_c, _box_0 = {}; _box_0._behaviorOffset = $; _behaviorOffset_set = new E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_set(_box_0); t1 = behavior.config; behaviorPosition = t1.position; outsideJustification = t1.outsideJustification; if (behaviorPosition === C.BehaviorPosition_0 || behaviorPosition === C.BehaviorPosition_1) { heightOffset = behaviorPosition === C.BehaviorPosition_1 ? chartSize._dy : 0; switch (outsideJustification) { case C.OutsideJustification_0: case C.OutsideJustification_2: mappedJustification = isRTL ? C._HorizontalJustification_2 : C._HorizontalJustification_0; break; case C.OutsideJustification_1: case C.OutsideJustification_3: mappedJustification = isRTL ? C._HorizontalJustification_3 : C._HorizontalJustification_1; break; case C.OutsideJustification_4: mappedJustification = isRTL ? C._HorizontalJustification_0 : C._HorizontalJustification_2; break; case C.OutsideJustification_5: mappedJustification = isRTL ? C._HorizontalJustification_1 : C._HorizontalJustification_3; break; default: H.throwExpression(H.ReachabilityError$(_s80_)); mappedJustification = null; } switch (mappedJustification) { case C._HorizontalJustification_0: t1 = behavior._legend$_drawAreaBounds; t1.toString; t1 = J.get$left$x(t1); t1.toString; _behaviorOffset_set.call$1(new P.Offset(t1, heightOffset)); break; case C._HorizontalJustification_1: _behaviorOffset_set.call$1(new P.Offset(0, heightOffset)); break; case C._HorizontalJustification_2: t1 = behavior._legend$_drawAreaBounds; t1.toString; _behaviorOffset_set.call$1(new P.Offset(J.get$right$x(t1) - behaviorSize._dx, heightOffset)); break; case C._HorizontalJustification_3: _behaviorOffset_set.call$1(new P.Offset(chartSize._dx - behaviorSize._dx, heightOffset)); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } else { t2 = behaviorPosition === C.BehaviorPosition_2; if (t2 || behaviorPosition === C.BehaviorPosition_3) { if (!(isRTL && t2)) t1 = !isRTL && behaviorPosition === C.BehaviorPosition_3; else t1 = true; widthOffset = t1 ? chartSize._dx : 0; switch (outsideJustification) { case C.OutsideJustification_0: case C.OutsideJustification_2: t1 = behavior._legend$_drawAreaBounds; t1.toString; t1 = J.get$top$x(t1); t1.toString; _behaviorOffset_set.call$1(new P.Offset(widthOffset, t1)); break; case C.OutsideJustification_1: case C.OutsideJustification_3: _behaviorOffset_set.call$1(new P.Offset(widthOffset, 0)); break; case C.OutsideJustification_4: t1 = behavior._legend$_drawAreaBounds; t1.toString; _behaviorOffset_set.call$1(new P.Offset(widthOffset, J.get$bottom$x(t1) - behaviorSize._dy)); break; case C.OutsideJustification_5: _behaviorOffset_set.call$1(new P.Offset(widthOffset, chartSize._dy - behaviorSize._dy)); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } else if (behaviorPosition === C.BehaviorPosition_4) { rightOffset = new P.Offset(chartSize._dx - behaviorSize._dx, 0); switch (t1.insideJustification) { case C.InsideJustification_0: _behaviorOffset_set.call$1(isRTL ? rightOffset : C.Offset_0_0); break; case C.InsideJustification_1: _behaviorOffset_set.call$1(isRTL ? C.Offset_0_0 : rightOffset); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } } return new E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_get(_box_0).call$0(); } }; E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_set.prototype = { call$1: function(t1) { return this._box_0._behaviorOffset = t1; }, $signature: 1049 }; E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_get.prototype = { call$0: function() { var t1 = this._box_0._behaviorOffset; return t1 === $ ? H.throwExpression(H.LateError$localNI("behaviorOffset")) : t1; }, $signature: 1050 }; E._HorizontalJustification.prototype = { toString$0: function(_) { return this._widget_layout_delegate$_name; } }; E.Clock.prototype = {}; M.CanonicalizedMap.prototype = { $index: function(_, key) { var pair, _this = this; if (!_this._isValidKey$1(key)) return null; pair = _this._base.$index(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); return pair == null ? null : pair.get$value(pair); }, $indexSet: function(_, key, value) { var t1, _this = this; if (!_this._isValidKey$1(key)) return; t1 = _this.$ti; _this._base.$indexSet(0, _this._canonicalize.call$1(key), new P.MapEntry(key, value, t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>"))); }, addAll$1: function(_, other) { other.forEach$1(0, new M.CanonicalizedMap_addAll_closure(this)); }, cast$2$0: function(_, K2, V2) { var t1 = this._base; return t1.cast$2$0(t1, K2, V2); }, clear$0: function(_) { this._base.clear$0(0); }, containsKey$1: function(_, key) { var _this = this; if (!_this._isValidKey$1(key)) return false; return _this._base.containsKey$1(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); }, get$entries: function(_) { var t1 = this._base; return t1.get$entries(t1).map$1$1(0, new M.CanonicalizedMap_entries_closure(this), this.$ti._eval$1("MapEntry")); }, forEach$1: function(_, f) { this._base.forEach$1(0, new M.CanonicalizedMap_forEach_closure(this, f)); }, get$isEmpty: function(_) { var t1 = this._base; return t1.get$isEmpty(t1); }, get$isNotEmpty: function(_) { var t1 = this._base; return t1.get$isNotEmpty(t1); }, get$keys: function(_) { var t1 = this._base; t1 = t1.get$values(t1); return H.MappedIterable_MappedIterable(t1, new M.CanonicalizedMap_keys_closure(this), H._instanceType(t1)._eval$1("Iterable.E"), this.$ti._eval$1("CanonicalizedMap.K")); }, get$length: function(_) { var t1 = this._base; return t1.get$length(t1); }, map$2$1: function(_, transform, K2, V2) { var t1 = this._base; return t1.map$2$1(t1, new M.CanonicalizedMap_map_closure(this, transform, K2, V2), K2, V2); }, map$1: function($receiver, transform) { return this.map$2$1($receiver, transform, type$.dynamic, type$.dynamic); }, putIfAbsent$2: function(_, key, ifAbsent) { return J.get$value$x(this._base.putIfAbsent$2(0, this._canonicalize.call$1(key), new M.CanonicalizedMap_putIfAbsent_closure(this, key, ifAbsent))); }, remove$1: function(_, key) { var pair, _this = this; if (!_this._isValidKey$1(key)) return null; pair = _this._base.remove$1(0, _this._canonicalize.call$1(_this.$ti._eval$1("CanonicalizedMap.K")._as(key))); return pair == null ? null : pair.get$value(pair); }, get$values: function(_) { var t1 = this._base; t1 = t1.get$values(t1); return H.MappedIterable_MappedIterable(t1, new M.CanonicalizedMap_values_closure(this), H._instanceType(t1)._eval$1("Iterable.E"), this.$ti._eval$1("CanonicalizedMap.V")); }, toString$0: function(_) { return P.MapBase_mapToString(this); }, _isValidKey$1: function(key) { var t1; if (this.$ti._eval$1("CanonicalizedMap.K")._is(key)) t1 = true; else t1 = false; return t1; }, $isMap: 1 }; M.CanonicalizedMap_addAll_closure.prototype = { call$2: function(key, value) { this.$this.$indexSet(0, key, value); return value; }, $signature: function() { return this.$this.$ti._eval$1("~(CanonicalizedMap.K,CanonicalizedMap.V)"); } }; M.CanonicalizedMap_entries_closure.prototype = { call$1: function(e) { var t1 = this.$this.$ti; return new P.MapEntry(J.get$key$x(e.get$value(e)), J.get$value$x(e.get$value(e)), t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>")); }, $signature: function() { return this.$this.$ti._eval$1("MapEntry(MapEntry>)"); } }; M.CanonicalizedMap_forEach_closure.prototype = { call$2: function(key, pair) { return this.f.call$2(pair.get$key(pair), pair.get$value(pair)); }, $signature: function() { return this.$this.$ti._eval$1("~(CanonicalizedMap.C,MapEntry)"); } }; M.CanonicalizedMap_keys_closure.prototype = { call$1: function(pair) { return pair.get$key(pair); }, $signature: function() { return this.$this.$ti._eval$1("CanonicalizedMap.K(MapEntry)"); } }; M.CanonicalizedMap_map_closure.prototype = { call$2: function(_, pair) { return this.transform.call$2(pair.get$key(pair), pair.get$value(pair)); }, $signature: function() { return this.$this.$ti._bind$1(this.K2)._bind$1(this.V2)._eval$1("MapEntry<1,2>(CanonicalizedMap.C,MapEntry)"); } }; M.CanonicalizedMap_putIfAbsent_closure.prototype = { call$0: function() { var t1 = this.$this.$ti; return new P.MapEntry(this.key, this.ifAbsent.call$0(), t1._eval$1("@")._bind$1(t1._eval$1("CanonicalizedMap.V"))._eval$1("MapEntry<1,2>")); }, $signature: function() { return this.$this.$ti._eval$1("MapEntry()"); } }; M.CanonicalizedMap_values_closure.prototype = { call$1: function(pair) { return pair.get$value(pair); }, $signature: function() { return this.$this.$ti._eval$1("CanonicalizedMap.V(MapEntry)"); } }; U.DefaultEquality.prototype = { equals$2: function(e1, e2) { return J.$eq$(e1, e2); }, hash$1: function(_, e) { return J.get$hashCode$(e); } }; U.IterableEquality.prototype = { equals$2: function(elements1, elements2) { var it1, it2, t1, hasNext; if (elements1 === elements2) return true; it1 = J.get$iterator$ax(elements1); it2 = J.get$iterator$ax(elements2); for (t1 = this._elementEquality; true;) { hasNext = it1.moveNext$0(); if (hasNext !== it2.moveNext$0()) return false; if (!hasNext) return true; if (!t1.equals$2(it1.get$current(it1), it2.get$current(it2))) return false; } }, hash$1: function(_, elements) { var t1, t2, hash; for (t1 = J.get$iterator$ax(elements), t2 = this._elementEquality, hash = 0; t1.moveNext$0();) { hash = hash + t2.hash$1(0, t1.get$current(t1)) & 2147483647; hash = hash + (hash << 10 >>> 0) & 2147483647; hash ^= hash >>> 6; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; U.ListEquality.prototype = { equals$2: function(list1, list2) { var t1, $length, t2, t3, i; if (list1 == null ? list2 == null : list1 === list2) return true; if (list1 == null || list2 == null) return false; t1 = J.getInterceptor$asx(list1); $length = t1.get$length(list1); t2 = J.getInterceptor$asx(list2); if ($length != t2.get$length(list2)) return false; for (t3 = this._elementEquality, i = 0; i < $length; ++i) if (!t3.equals$2(t1.$index(list1, i), t2.$index(list2, i))) return false; return true; }, hash$1: function(_, list) { var t1, t2, hash, i; for (t1 = J.getInterceptor$asx(list), t2 = this._elementEquality, hash = 0, i = 0; i < t1.get$length(list); ++i) { hash = hash + t2.hash$1(0, t1.$index(list, i)) & 2147483647; hash = hash + (hash << 10 >>> 0) & 2147483647; hash ^= hash >>> 6; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; U._UnorderedEquality.prototype = { equals$2: function(elements1, elements2) { var t1, counts, $length, e, count; if (elements1 === elements2) return true; t1 = this._elementEquality; counts = P.HashMap_HashMap(t1.get$equals(), t1.get$hash(t1), t1.get$isValidKey(), H._instanceType(this)._eval$1("_UnorderedEquality.E"), type$.dynamic); for (t1 = J.get$iterator$ax(elements1), $length = 0; t1.moveNext$0();) { e = t1.get$current(t1); count = counts.$index(0, e); counts.$indexSet(0, e, J.$add$ansx(count == null ? 0 : count, 1)); ++$length; } for (t1 = J.get$iterator$ax(elements2); t1.moveNext$0();) { e = t1.get$current(t1); count = counts.$index(0, e); if (count == null || J.$eq$(count, 0)) return false; counts.$indexSet(0, e, J.$sub$n(count, 1)); --$length; } return $length === 0; }, hash$1: function(_, elements) { var t1, t2, hash; for (t1 = J.get$iterator$ax(elements), t2 = this._elementEquality, hash = 0; t1.moveNext$0();) hash = hash + t2.hash$1(0, t1.get$current(t1)) & 2147483647; hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; U.UnorderedIterableEquality.prototype = {}; U.SetEquality.prototype = {}; U._MapEntry.prototype = { get$hashCode: function(_) { var t1 = this.equality; return 3 * t1._keyEquality.hash$1(0, this.key) + 7 * t1._valueEquality.hash$1(0, this.value) & 2147483647; }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof U._MapEntry) { t1 = this.equality; t1 = t1._keyEquality.equals$2(this.key, other.key) && t1._valueEquality.equals$2(this.value, other.value); } else t1 = false; return t1; }, get$value: function(receiver) { return this.value; } }; U.MapEquality.prototype = { equals$2: function(map1, map2) { var t1, t2, equalElementCounts, t3, key, entry, count; if (map1 === map2) return true; t1 = J.getInterceptor$asx(map1); t2 = J.getInterceptor$asx(map2); if (t1.get$length(map1) != t2.get$length(map2)) return false; equalElementCounts = P.HashMap_HashMap(null, null, null, type$._MapEntry, type$.int); for (t3 = J.get$iterator$ax(t1.get$keys(map1)); t3.moveNext$0();) { key = t3.get$current(t3); entry = new U._MapEntry(this, key, t1.$index(map1, key)); count = equalElementCounts.$index(0, entry); equalElementCounts.$indexSet(0, entry, (count == null ? 0 : count) + 1); } for (t1 = J.get$iterator$ax(t2.get$keys(map2)); t1.moveNext$0();) { key = t1.get$current(t1); entry = new U._MapEntry(this, key, t2.$index(map2, key)); count = equalElementCounts.$index(0, entry); if (count == null || count === 0) return false; equalElementCounts.$indexSet(0, entry, count - 1); } return true; }, hash$1: function(_, map) { var t1, t2, t3, t4, hash, key; for (t1 = J.getInterceptor$x(map), t2 = J.get$iterator$ax(t1.get$keys(map)), t3 = this._keyEquality, t4 = this._valueEquality, hash = 0; t2.moveNext$0();) { key = t2.get$current(t2); hash = hash + 3 * t3.hash$1(0, key) + 7 * t4.hash$1(0, t1.$index(map, key)) & 2147483647; } hash = hash + (hash << 3 >>> 0) & 2147483647; hash ^= hash >>> 11; return hash + (hash << 15 >>> 0) & 2147483647; } }; U.DeepCollectionEquality.prototype = { equals$2: function(e1, e2) { var t2, _this = this, t1 = type$.Set_dynamic; if (t1._is(e1)) return t1._is(e2) && new U.SetEquality(_this, type$.SetEquality_dynamic).equals$2(e1, e2); t1 = type$.Map_dynamic_dynamic; if (t1._is(e1)) return t1._is(e2) && new U.MapEquality(_this, _this, type$.MapEquality_dynamic_dynamic).equals$2(e1, e2); if (!_this._unordered) { t1 = type$.List_dynamic; if (t1._is(e1)) return t1._is(e2) && new U.ListEquality(_this, type$.ListEquality_dynamic).equals$2(e1, e2); t1 = type$.Iterable_dynamic; if (t1._is(e1)) return t1._is(e2) && new U.IterableEquality(_this, type$.IterableEquality_dynamic).equals$2(e1, e2); } else { t1 = type$.Iterable_dynamic; if (t1._is(e1)) { t2 = type$.List_dynamic; if (t2._is(e1) !== t2._is(e2)) return false; return t1._is(e2) && new U.UnorderedIterableEquality(_this, type$.UnorderedIterableEquality_dynamic).equals$2(e1, e2); } } return J.$eq$(e1, e2); }, hash$1: function(_, o) { var _this = this; if (type$.Set_dynamic._is(o)) return new U.SetEquality(_this, type$.SetEquality_dynamic).hash$1(0, o); if (type$.Map_dynamic_dynamic._is(o)) return new U.MapEquality(_this, _this, type$.MapEquality_dynamic_dynamic).hash$1(0, o); if (!_this._unordered) { if (type$.List_dynamic._is(o)) return new U.ListEquality(_this, type$.ListEquality_dynamic).hash$1(0, o); if (type$.Iterable_dynamic._is(o)) return new U.IterableEquality(_this, type$.IterableEquality_dynamic).hash$1(0, o); } else if (type$.Iterable_dynamic._is(o)) return new U.UnorderedIterableEquality(_this, type$.UnorderedIterableEquality_dynamic).hash$1(0, o); return J.get$hashCode$(o); }, isValidKey$1: function(o) { !type$.Iterable_dynamic._is(o); return true; } }; Y.HeapPriorityQueue.prototype = { _elementAt$1: function(index) { var t1 = this._queue[index]; return t1 == null ? null : t1; }, add$1: function(_, element) { var t1, t2, newCapacity, newQueue, _this = this; ++_this._modificationCount; t1 = _this._priority_queue$_length; t2 = _this._queue.length; if (t1 === t2) { newCapacity = t2 * 2 + 1; if (newCapacity < 7) newCapacity = 7; newQueue = P.List_List$filled(newCapacity, null, false, _this.$ti._eval$1("1?")); C.JSArray_methods.setRange$3(newQueue, 0, _this._priority_queue$_length, _this._queue); _this._queue = newQueue; } _this._bubbleUp$2(element, _this._priority_queue$_length++); }, get$isEmpty: function(_) { return this._priority_queue$_length === 0; }, get$length: function(_) { return this._priority_queue$_length; }, toString$0: function(_) { var t1 = this._queue; return P.IterableBase_iterableToShortString(H.SubListIterable$(t1, 0, H.checkNotNullable(this._priority_queue$_length, "count", type$.int), H._arrayInstanceType(t1)._precomputed1), "(", ")"); }, _bubbleUp$2: function(element, index) { var t1, parentIndex, $parent, _this = this; for (t1 = _this.comparison; index > 0; index = parentIndex) { parentIndex = C.JSInt_methods._tdivFast$1(index - 1, 2); $parent = _this._queue[parentIndex]; if ($parent == null) $parent = null; if (t1.call$2(element, $parent) > 0) break; C.JSArray_methods.$indexSet(_this._queue, index, $parent); } C.JSArray_methods.$indexSet(_this._queue, index, element); }, _bubbleDown$2: function(element, index) { var t1, t2, leftChildIndex, leftChild, rightChild, minChild, minChildIndex, child, _this = this, rightChildIndex = index * 2 + 2; for (t1 = _this.comparison; t2 = _this._priority_queue$_length, rightChildIndex < t2; index = minChildIndex) { leftChildIndex = rightChildIndex - 1; t2 = _this._queue; leftChild = t2[leftChildIndex]; if (leftChild == null) leftChild = null; rightChild = t2[rightChildIndex]; if (rightChild == null) rightChild = null; if (t1.call$2(leftChild, rightChild) < 0) { minChild = leftChild; minChildIndex = leftChildIndex; } else { minChild = rightChild; minChildIndex = rightChildIndex; } if (t1.call$2(element, minChild) <= 0) { C.JSArray_methods.$indexSet(_this._queue, index, element); return; } C.JSArray_methods.$indexSet(_this._queue, index, minChild); rightChildIndex = minChildIndex * 2 + 2; } leftChildIndex = rightChildIndex - 1; if (leftChildIndex < t2) { child = _this._elementAt$1(leftChildIndex); if (t1.call$2(element, child) > 0) { C.JSArray_methods.$indexSet(_this._queue, index, child); index = leftChildIndex; } } C.JSArray_methods.$indexSet(_this._queue, index, element); } }; R.XFileBase.prototype = { get$name: function(_) { throw H.wrapException(P.UnimplementedError$(".name has not been implemented.")); }, length$0: function(_) { throw H.wrapException(P.UnimplementedError$(".length() has not been implemented.")); } }; A.XFile.prototype = { get$path: function(_) { var t1 = this.__XFile_path; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("path")) : t1; }, get$_html0$_bytes: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this, response, t1, $async$temp1; var $async$get$_html0$_bytes = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = W; $async$goto = 3; return P._asyncAwait(W.HttpRequest_request($async$self.get$path($async$self), "arraybuffer"), $async$get$_html0$_bytes); case 3: // returning from await. response = $async$temp1._convertNativeToDart_XHR_Response($async$result.response); t1 = response == null ? null : J.asUint8List$0$x(response); if (t1 == null) t1 = new Uint8Array(0); $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$get$_html0$_bytes, $async$completer); }, length$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.int), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$length$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._html0$_length; $async$goto = t1 == null ? 3 : 5; break; case 3: // then $async$temp1 = J; $async$goto = 6; return P._asyncAwait($async$self.get$_html0$_bytes(), $async$length$0); case 6: // returning from await. $async$result = $async$temp1.get$length$asx($async$result); // goto join $async$goto = 4; break; case 5: // else $async$result = t1; case 4: // join $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$length$0, $async$completer); }, readAsBytes$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this, $async$temp1; var $async$readAsBytes$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = P; $async$goto = 3; return P._asyncAwait($async$self.get$_html0$_bytes(), $async$readAsBytes$0); case 3: // returning from await. $async$returnValue = $async$temp1.Future_Future$value($async$result, type$.Uint8List); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$readAsBytes$0, $async$completer); }, get$name: function(receiver) { return this.name; } }; M.DraggableScrollbar.prototype = { createState$0: function() { return new M._DraggableScrollbarState(null, C._StateLifecycle_0); }, scrollThumbBuilder$6$labelConstraints$labelText: function(arg0, arg1, arg2, arg3, arg4, arg5) { return this.scrollThumbBuilder.call$6$labelConstraints$labelText(arg0, arg1, arg2, arg3, arg4, arg5); } }; M.DraggableScrollbar__thumbSemicircleBuilder_closure.prototype = { call$6$labelConstraints$labelText: function(backgroundColor, thumbAnimation, labelAnimation, height, labelConstraints, labelText) { var _null = null; return M.DraggableScrollbar_buildScrollThumbAndLabel(this.alwaysVisibleScrollThumb, backgroundColor, labelAnimation, labelConstraints, labelText, T.CustomPaint$(M.Material$(C.Duration_200000, true, new K.BorderRadius(new P.Radius(height, height), new P.Radius(4, 4), new P.Radius(height, height), new P.Radius(4, 4)), M.Container$(_null, _null, C.Clip_0, _null, S.BoxConstraints$tight(new P.Size(this.width, height)), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.Clip_0, backgroundColor, 4, _null, _null, _null, _null, C.MaterialType_0), new M.ArrowCustomPainter(C.MaterialColor_Map_HFpTk_4288585374, _null), this.scrollThumbKey, _null, C.Size_0_0), thumbAnimation); }, call$4: function(backgroundColor, thumbAnimation, labelAnimation, height) { return this.call$6$labelConstraints$labelText(backgroundColor, thumbAnimation, labelAnimation, height, null, null); }, "call*": "call$6$labelConstraints$labelText", $requiredArgCount: 4, $defaultValues: function() { return {labelConstraints: null, labelText: null}; }, $signature: 1059 }; M.ScrollLabel.prototype = { build$1: function(_, context) { var t2, t3, _this = this, _null = null, t1 = _this.animation; t1.toString; t2 = K.BorderRadius$all(new P.Radius(16, 16)); t3 = _this.constraints; if (t3 == null) t3 = C.BoxConstraints_72_72_28_28; return K.FadeTransition$(false, M.Container$(_null, M.Material$(C.Duration_200000, true, t2, M.Container$(C.Alignment_0_0, _this.child, C.Clip_0, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.Clip_0, _this.backgroundColor, 4, _null, _null, _null, _null, C.MaterialType_0), C.Clip_0, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(0, 0, 12, 0), _null, _null, _null, _null), t1); } }; M._DraggableScrollbarState.prototype = { get$_barOffset: function() { var t1 = this.___DraggableScrollbarState__barOffset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_barOffset")) : t1; }, get$_viewOffset: function() { var t1 = this.___DraggableScrollbarState__viewOffset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_viewOffset")) : t1; }, get$_isDragInProcess: function() { var t1 = this.___DraggableScrollbarState__isDragInProcess; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_isDragInProcess")) : t1; }, get$_thumbAnimationController: function() { var t1 = this.___DraggableScrollbarState__thumbAnimationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_thumbAnimationController")) : t1; }, get$_labelAnimationController: function() { var t1 = this.___DraggableScrollbarState__labelAnimationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_labelAnimationController")) : t1; }, initState$0: function() { var _this = this, _null = null; _this.super$State$initState(); _this.___DraggableScrollbarState__viewOffset = _this.___DraggableScrollbarState__barOffset = 0; _this.___DraggableScrollbarState__isDragInProcess = false; _this._widget.toString; _this.___DraggableScrollbarState__thumbAnimationController = G.AnimationController$(_null, C.Duration_300000, 0, _null, 1, _null, _this); _this.___DraggableScrollbarState__thumbAnimation = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_thumbAnimationController(), _null); _this._widget.toString; _this.___DraggableScrollbarState__labelAnimationController = G.AnimationController$(_null, C.Duration_300000, 0, _null, 1, _null, _this); _this.___DraggableScrollbarState__labelAnimation = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_labelAnimationController(), _null); }, dispose$0: function(_) { var t1, _this = this; _this.get$_thumbAnimationController().dispose$0(0); _this.get$_labelAnimationController().dispose$0(0); t1 = _this._draggable_scrollbar$_fadeoutTimer; if (t1 != null) t1.cancel$0(0); _this.super$__DraggableScrollbarState_State_TickerProviderStateMixin$dispose(0); }, get$barMaxScrollExtent: function() { var t1 = this._framework$_element; t1 = t1.get$size(t1)._dy; this._widget.toString; return t1 - 48; }, build$1: function(_, context) { var t1 = {}; t1.labelText = null; this._widget.toString; return new A.LayoutBuilder(new M._DraggableScrollbarState_build_closure(t1, this), null); }, changePosition$1: function(notification) { if (this.get$_isDragInProcess()) return; this.setState$1(new M._DraggableScrollbarState_changePosition_closure(this, notification)); }, _onVerticalDragStart$1: function(details) { this.setState$1(new M._DraggableScrollbarState__onVerticalDragStart_closure(this)); }, _draggable_scrollbar$_onVerticalDragUpdate$1: function(details) { this.setState$1(new M._DraggableScrollbarState__onVerticalDragUpdate_closure(this, details)); }, _onVerticalDragEnd$1: function(details) { var _this = this; _this._draggable_scrollbar$_fadeoutTimer = P.Timer_Timer(_this._widget.scrollbarTimeToFade, new M._DraggableScrollbarState__onVerticalDragEnd_closure(_this)); _this.setState$1(new M._DraggableScrollbarState__onVerticalDragEnd_closure0(_this)); } }; M._DraggableScrollbarState_build_closure.prototype = { call$2: function(context, constraints) { var t5, t6, _null = null, t1 = this.$this, t2 = t1._widget.child, t3 = t1.get$_barOffset(), t4 = t1._widget; t4.toString; t5 = t1.___DraggableScrollbarState__thumbAnimation; if (t5 === $) t5 = H.throwExpression(H.LateError$fieldNI("_thumbAnimation")); t6 = t1.___DraggableScrollbarState__labelAnimation; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("_labelAnimation")); return new U.NotificationListener(T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([new T.RepaintBoundary(t2, _null), new T.RepaintBoundary(D.GestureDetector$(_null, M.Container$(C.Alignment_1_m1, t4.scrollThumbBuilder$6$labelConstraints$labelText(C.Color_4294967295, t5, t6, 48, _null, this._box_0.labelText), C.Clip_0, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(0, t3, 0, 0), _null, _null, _null, _null), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1.get$_onVerticalDragEnd(), t1.get$_onVerticalDragStart(), t1.get$_draggable_scrollbar$_onVerticalDragUpdate()), _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, _null, _null), new M._DraggableScrollbarState_build__closure(t1), _null, type$.NotificationListener_ScrollNotification); }, $signature: 1100 }; M._DraggableScrollbarState_build__closure.prototype = { call$1: function(notification) { this.$this.changePosition$1(notification); return false; }, $signature: 160 }; M._DraggableScrollbarState_changePosition_closure.prototype = { call$0: function() { var t3, t4, t5, t6, t7, t1 = this.notification, t2 = t1 instanceof G.ScrollUpdateNotification; if (t2) { t3 = this.$this; t4 = t3.get$_barOffset(); t5 = t1.scrollDelta; t6 = t3.get$barMaxScrollExtent(); t7 = C.JSArray_methods.get$single(t3._widget.controller._positions)._maxScrollExtent; t7.toString; t3.___DraggableScrollbarState__barOffset = t4 + t5 * t6 / t7; if (t3.get$_barOffset() < 0) t3.___DraggableScrollbarState__barOffset = 0; if (t3.get$_barOffset() > t3.get$barMaxScrollExtent()) t3.___DraggableScrollbarState__barOffset = t3.get$barMaxScrollExtent(); t3.___DraggableScrollbarState__viewOffset = t3.get$_viewOffset() + t5; t4 = t3.get$_viewOffset(); t5 = C.JSArray_methods.get$single(t3._widget.controller._positions)._minScrollExtent; t5.toString; if (t4 < t5) { t4 = C.JSArray_methods.get$single(t3._widget.controller._positions)._minScrollExtent; t4.toString; t3.___DraggableScrollbarState__viewOffset = t4; } t4 = t3.get$_viewOffset(); t5 = C.JSArray_methods.get$single(t3._widget.controller._positions)._maxScrollExtent; t5.toString; if (t4 > t5) { t4 = C.JSArray_methods.get$single(t3._widget.controller._positions)._maxScrollExtent; t4.toString; t3.___DraggableScrollbarState__viewOffset = t4; } } if (t2 || t1 instanceof G.OverscrollNotification) { t1 = this.$this; if (t1.get$_thumbAnimationController().get$_status() !== C.AnimationStatus_1) t1.get$_thumbAnimationController().forward$0(0); t2 = t1._draggable_scrollbar$_fadeoutTimer; if (t2 != null) t2.cancel$0(0); t1._draggable_scrollbar$_fadeoutTimer = P.Timer_Timer(t1._widget.scrollbarTimeToFade, new M._DraggableScrollbarState_changePosition__closure(t1)); } }, $signature: 0 }; M._DraggableScrollbarState_changePosition__closure.prototype = { call$0: function() { var t1 = this.$this; t1.get$_thumbAnimationController().reverse$0(0); t1.get$_labelAnimationController().reverse$0(0); t1._draggable_scrollbar$_fadeoutTimer = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._DraggableScrollbarState__onVerticalDragStart_closure.prototype = { call$0: function() { var t1 = this.$this; t1.___DraggableScrollbarState__isDragInProcess = true; t1.get$_labelAnimationController().forward$0(0); t1 = t1._draggable_scrollbar$_fadeoutTimer; if (t1 != null) t1.cancel$0(0); }, $signature: 0 }; M._DraggableScrollbarState__onVerticalDragUpdate_closure.prototype = { call$0: function() { var t2, t3, t4, t5, t1 = this.$this; if (t1.get$_thumbAnimationController().get$_status() !== C.AnimationStatus_1) t1.get$_thumbAnimationController().forward$0(0); if (t1.get$_isDragInProcess()) { t2 = t1.get$_barOffset(); t3 = this.details.delta._dy; t1.___DraggableScrollbarState__barOffset = t2 + t3; if (t1.get$_barOffset() < 0) t1.___DraggableScrollbarState__barOffset = 0; if (t1.get$_barOffset() > t1.get$barMaxScrollExtent()) t1.___DraggableScrollbarState__barOffset = t1.get$barMaxScrollExtent(); t2 = t1.get$barMaxScrollExtent(); t4 = C.JSArray_methods.get$single(t1._widget.controller._positions)._maxScrollExtent; t4.toString; t5 = C.JSArray_methods.get$single(t1._widget.controller._positions)._pixels; t5.toString; t1.___DraggableScrollbarState__viewOffset = t5 + t3 * t4 / t2; t2 = t1.get$_viewOffset(); t3 = C.JSArray_methods.get$single(t1._widget.controller._positions)._minScrollExtent; t3.toString; if (t2 < t3) { t2 = C.JSArray_methods.get$single(t1._widget.controller._positions)._minScrollExtent; t2.toString; t1.___DraggableScrollbarState__viewOffset = t2; } t2 = t1.get$_viewOffset(); t3 = C.JSArray_methods.get$single(t1._widget.controller._positions)._maxScrollExtent; t3.toString; if (t2 > t3) { t2 = C.JSArray_methods.get$single(t1._widget.controller._positions)._maxScrollExtent; t2.toString; t1.___DraggableScrollbarState__viewOffset = t2; } t1._widget.controller.jumpTo$1(t1.get$_viewOffset()); } }, $signature: 0 }; M._DraggableScrollbarState__onVerticalDragEnd_closure.prototype = { call$0: function() { var t1 = this.$this; t1.get$_thumbAnimationController().reverse$0(0); t1.get$_labelAnimationController().reverse$0(0); t1._draggable_scrollbar$_fadeoutTimer = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._DraggableScrollbarState__onVerticalDragEnd_closure0.prototype = { call$0: function() { this.$this.___DraggableScrollbarState__isDragInProcess = false; }, $signature: 0 }; M.ArrowCustomPainter.prototype = { shouldRepaint$1: function(oldDelegate) { return false; }, paint$2: function(canvas, size) { var baseX, baseY, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, this.color); baseX = size._dx / 2; baseY = size._dy / 2; canvas.drawPath$2(0, M.ArrowCustomPainter__trianglePath(new P.Offset(baseX, baseY - 2), 12, 8, true), paint); canvas.drawPath$2(0, M.ArrowCustomPainter__trianglePath(new P.Offset(baseX, baseY + 2), 12, 8, false), paint); } }; M.SlideFadeTransition.prototype = { build$1: function(_, context) { var t1 = this.animation, t2 = type$.Tween_Offset; return K.AnimatedBuilder$(t1, new M.SlideFadeTransition_build_closure(this), K.SlideTransition$(K.FadeTransition$(false, this.child, t1), new R._AnimatedEvaluation(t1, new R.Tween(new P.Offset(0.3, 0), new P.Offset(0, 0), t2), t2._eval$1("_AnimatedEvaluation")), null, true)); } }; M.SlideFadeTransition_build_closure.prototype = { call$2: function(context, child) { var _null = null, t1 = this.$this.animation; if (J.$eq$(t1.get$value(t1), 0)) t1 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { child.toString; t1 = child; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 229 }; M.__DraggableScrollbarState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; D.Enum.prototype = { get$value: function(_) { return this._enum$_value; }, $eq: function(_, other) { if (other == null) return false; return other instanceof D.Enum && other._enum$_value === this._enum$_value; } }; E.Clock0.prototype = {}; E._RealtimeClock.prototype = {}; Q.MemoryDirectory.prototype = { get$expectedType: function() { return C.FileSystemEntityType_1; }, existsSync$0: function() { var t1 = this.get$backingOrNull(); return (t1 == null ? null : t1.get$stat(t1).type) === C.FileSystemEntityType_1; }, createSync$1$recursive: function(recursive) { var node, t1 = this.path; this.fileSystem.opHandle.call$2(t1, C.FileSystemOp_3); node = this.internalCreateSync$3$createChild$followTailLink$visitLinks(new Q.MemoryDirectory_createSync_closure(false), true, true); if ((node == null ? null : node.get$type(node)) !== C.FileSystemEntityType_1) throw H.wrapException(R.notADirectory(t1)); }, createSync$0: function() { return this.createSync$1$recursive(false); }, createTemp$1: function(prefix) { return this.createTemp$body$MemoryDirectory(prefix); }, createTemp$body$MemoryDirectory: function(prefix) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Directory_2), $async$returnValue, $async$self = this; var $async$createTemp$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.createTempSync$1(prefix); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$createTemp$1, $async$completer); }, createTempSync$1: function(prefix) { var _tempCounter, $name, t3, tempDir, _box_0 = {}, t1 = this.fileSystem, t2 = t1._memory_file_system$_context, fullPath = t2.join$2(0, this.path, prefix + "rand"), dirname = t2.dirname$1(fullPath), basename = X.ParsedPath_ParsedPath$parse(fullPath, t2.style).get$basename(), node = type$.nullable_DirectoryNode._as(t1.findNode$1(dirname)); if (node == null) H.throwExpression(R.noSuchFileOrDirectory(H._asStringS(new Q.MemoryDirectory_createTempSync_closure(dirname).call$0()))); node.toString; B.checkIsDir(node, new Q.MemoryDirectory_createTempSync_closure0(dirname)); _tempCounter = $.$get$_systemTempCounter().$index(0, t1); _box_0._tempCounter = _tempCounter == null ? 0 : _tempCounter; $name = new Q.MemoryDirectory_createTempSync_name(_box_0, basename); for (t3 = node.children; t3.containsKey$1(0, $name.call$0());) ++_box_0._tempCounter; $.$get$_systemTempCounter().$indexSet(0, t1, _box_0._tempCounter); tempDir = B.DirectoryNode$(node); t3.$indexSet(0, $name.call$0(), tempDir); t1 = new Q.MemoryDirectory(t1, t2.join$2(0, dirname, $name.call$0())); t1.createSync$0(); return t1; }, toString$0: function(_) { return "MemoryDirectory: '" + H.S(this.path) + "'"; }, $isDirectory: 1, $isDirectory0: 1 }; Q.MemoryDirectory_createSync_closure.prototype = { call$2: function($parent, isFinalSegment) { if (this.recursive || isFinalSegment) return B.DirectoryNode$($parent); return null; }, $signature: 1112 }; Q.MemoryDirectory_createTempSync_closure.prototype = { call$0: function() { return this.dirname; }, $signature: 71 }; Q.MemoryDirectory_createTempSync_closure0.prototype = { call$0: function() { return this.dirname; }, $signature: 71 }; Q.MemoryDirectory_createTempSync_name.prototype = { call$0: function() { return H.S(this.basename) + this._box_0._tempCounter; }, $signature: 71 }; Q._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin.prototype = {}; T.MemoryFile.prototype = { get$_resolvedBackingOrCreate: function() { var t1, _this = this, node = _this.get$backingOrNull(); if (node == null) node = _this._doCreate$0(); else { t1 = node.get$type(node); if (t1 === C.FileSystemEntityType_2) node = B.resolveLinks(type$.LinkNode._as(node), new T.MemoryFile__resolvedBackingOrCreate_closure(_this), null, null); B.checkType(C.FileSystemEntityType_0, node.get$type(node), new T.MemoryFile__resolvedBackingOrCreate_closure0(_this)); } return type$.FileNode._as(node); }, get$expectedType: function() { return C.FileSystemEntityType_0; }, existsSync$0: function() { var t1 = this.get$backingOrNull(); return (t1 == null ? null : t1.get$stat(t1).type) === C.FileSystemEntityType_0; }, _doCreate$1$recursive: function(recursive) { var node = this.internalCreateSync$2$createChild$followTailLink(new T.MemoryFile__doCreate_closure(recursive), true); if ((node == null ? null : node.get$type(node)) !== C.FileSystemEntityType_0) throw H.wrapException(R.isADirectory(this.path)); return node; }, _doCreate$0: function() { return this._doCreate$1$recursive(false); }, length$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.int), $async$returnValue, $async$self = this; var $async$length$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = type$.FileNode._as($async$self.get$resolvedBacking())._content.length; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$length$0, $async$completer); }, openWrite$2$encoding$mode: function(encoding, mode) { if (!(mode === C.FileMode_1 || mode === C.FileMode_2 || mode === C.FileMode_3 || mode === C.FileMode_4)) throw H.wrapException(P.ArgumentError$value(mode, "mode", "Must be either WRITE, APPEND, WRITE_ONLY, or WRITE_ONLY_APPEND")); return T._FileSink__FileSink$fromFile(this, mode, encoding); }, openWrite$0: function() { return this.openWrite$2$encoding$mode(C.C_Utf8Codec, C.FileMode_1); }, readAsBytes$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Uint8List), $async$returnValue, $async$self = this; var $async$readAsBytes$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.readAsBytesSync$0(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$readAsBytes$0, $async$completer); }, readAsBytesSync$0: function() { this.fileSystem.opHandle.call$2(this.path, C.FileSystemOp_0); return new Uint8Array(H._ensureNativeList(type$.FileNode._as(this.get$resolvedBacking())._content)); }, toString$0: function(_) { return "MemoryFile: '" + H.S(this.path) + "'"; }, $isFile0: 1, $isFile1: 1 }; T.MemoryFile__resolvedBackingOrCreate_closure.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; T.MemoryFile__resolvedBackingOrCreate_closure0.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; T.MemoryFile__doCreate_closure.prototype = { call$2: function($parent, isFinalSegment) { var t1, t2; if (isFinalSegment) { t1 = new B.FileNode(new Uint8Array(0), $parent); if ($parent == null) { t1.get$isRoot(); t2 = true; } else t2 = false; if (t2) H.throwExpression(C.FileSystemException_sV6); t1.RealNode$1($parent); return t1; } else if (this.recursive) return B.DirectoryNode$($parent); return null; }, $signature: 1113 }; T._FileSink.prototype = { get$isStreaming: function() { var t1 = this._streamCompleter; t1 = t1 == null ? null : t1.future._state !== 0; return t1 === false; }, add$1: function(_, data) { if (this.get$isStreaming()) H.throwExpression(P.StateError$("StreamSink is bound to a stream")); if (this._isClosed) throw H.wrapException(P.StateError$("StreamSink is closed")); this._addData$1(data); }, addError$2: function(error, stackTrace) { if (this.get$isStreaming()) H.throwExpression(P.StateError$("StreamSink is bound to a stream")); this._memory_file$_completer.completeError$2(error, stackTrace); }, addStream$1: function(_, stream) { var t1, _this = this; if (_this.get$isStreaming()) H.throwExpression(P.StateError$("StreamSink is bound to a stream")); _this._streamCompleter = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t1 = new T._FileSink_addStream_finish(_this); stream.listen$4$cancelOnError$onDone$onError(0, new T._FileSink_addStream_closure(_this), true, t1, new T._FileSink_addStream_closure0(_this, t1)); return _this._streamCompleter.future; }, close$0: function(_) { var _this = this; if (_this.get$isStreaming()) H.throwExpression(P.StateError$("StreamSink is bound to a stream")); if (!_this._isClosed) { _this._isClosed = true; _this._pendingWrites.then$1$2$onError(0, new T._FileSink_close_closure(_this), new T._FileSink_close_closure0(_this), type$.void); } return _this._memory_file$_completer.future; }, _addData$1: function(data) { this._pendingWrites = this._pendingWrites.then$1$1(0, new T._FileSink__addData_closure(data), type$.FileNode); }, $isEventSink: 1 }; T._FileSink__FileSink$fromFile__node_set.prototype = { call$1: function(t1) { return this._box_0._node0 = t1; }, $signature: 1116 }; T._FileSink__FileSink$fromFile__node_get.prototype = { call$0: function() { var t1 = this._box_0._node0; return t1 === $ ? H.throwExpression(H.LateError$localNI("node")) : t1; }, $signature: 650 }; T._FileSink__FileSink$fromFile_closure.prototype = { call$0: function() { var t2, t3, t1 = this._box_0.deferredException; if (t1 != null) throw H.wrapException(t1); t1 = this._node_get; t2 = t1.call$0(); t3 = this.mode; if (t3 === C.FileMode_1 || t3 === C.FileMode_3) { t2.toString; t2._content = new Uint8Array(0); } return t1.call$0(); }, $signature: 650 }; T._FileSink_addStream_finish.prototype = { call$0: function() { var t1 = this.$this; t1._streamCompleter.complete$0(0); t1._streamCompleter = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; T._FileSink_addStream_closure.prototype = { call$1: function(data) { return this.$this._addData$1(data); }, $signature: 648 }; T._FileSink_addStream_closure0.prototype = { call$2: function(error, stackTrace) { this.$this._memory_file$_completer.completeError$2(error, stackTrace); this.finish.call$0(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; T._FileSink_close_closure.prototype = { call$1: function(_) { return this.$this._memory_file$_completer.complete$0(0); }, $signature: 1121 }; T._FileSink_close_closure0.prototype = { call$2: function(error, stackTrace) { return this.$this._memory_file$_completer.completeError$2(error, stackTrace); }, "call*": "call$2", $requiredArgCount: 2, $signature: 124 }; T._FileSink__addData_closure.prototype = { call$1: function(node) { node.write$1(0, this.data); return node; }, $signature: 1125 }; M.MemoryFileStat.prototype = {}; X._MemoryFileSystem.prototype = { directory$1: function(_, path) { return new Q.MemoryDirectory(this, this.getPath$1(0, path)); }, file$1: function(_, path) { return new T.MemoryFile(this, this.getPath$1(0, path)); }, get$path: function(_) { return this._memory_file_system$_context; }, findNode$5$followTailLink$pathWithSymlinks$segmentVisitor$visitLinks: function(path, followTailLink, pathWithSymlinks, segmentVisitor, visitLinks) { var reference, parts, directory, finalSegment, t2, t3, t4, t5, t6, child, i, basename, t7, t8, _this = this, _null = null, t1 = _this._memory_file_system$_context; if (t1.style.rootLength$1(path) > 0) { reference = _this._memory_file_system$_root; path = J.substring$1$s(path, 0); } else { t1 = t1._context$_current; reference = type$.DirectoryNode._as(_this.findNode$1(t1 == null ? D.current() : t1)); } $.$get$Style_posix().toString; parts = H.setRuntimeTypeInfo(path.split("/"), type$.JSArray_String); if (!!parts.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(parts, B.utils0__isEmpty$closure(), true); directory = reference == null ? _null : reference; finalSegment = parts.length - 1; for (t1 = segmentVisitor == null, t2 = !t1, t3 = pathWithSymlinks != null, t4 = type$.LinkNode, t5 = !visitLinks, t6 = type$.DirectoryNode, child = directory, i = 0; i <= finalSegment; ++i) { basename = parts[i]; switch (basename) { case ".": child = directory; break; case "..": t7 = directory == null; child = t7 ? _null : directory.get$parent(directory); directory = t7 ? _null : directory.get$parent(directory); break; default: child = directory == null ? _null : directory.children.$index(0, basename); } if (t3) pathWithSymlinks.push(basename); t7 = new X._MemoryFileSystem_findNode_subpath(_this, parts, i); if ((child == null ? _null : child.get$type(child)) === C.FileSystemEntityType_2) t8 = i < finalSegment || followTailLink; else t8 = false; if (t8) if (!t5 || t1) { if (t2) { directory.toString; child = segmentVisitor.call$5(directory, basename, child, i, finalSegment); } child = B.resolveLinks(t4._as(child), t7, pathWithSymlinks, _null); } else child = B.resolveLinks(t4._as(child), t7, pathWithSymlinks, new X._MemoryFileSystem_findNode_closure(segmentVisitor, i, finalSegment)); else if (t2) { directory.toString; child = segmentVisitor.call$5(directory, basename, child, i, finalSegment); } if (i < finalSegment) { if (child == null) H.throwExpression(R.noSuchFileOrDirectory(H._asStringS(t7.call$0()))); t8 = child.get$type(child); if (t8 !== C.FileSystemEntityType_1) H.throwExpression(R.notADirectory(H._asStringS(t7.call$0()))); t6._as(child); directory = child; } } return child; }, findNode$1: function(path) { return this.findNode$5$followTailLink$pathWithSymlinks$segmentVisitor$visitLinks(path, false, null, null, false); }, findNode$4$followTailLink$segmentVisitor$visitLinks: function(path, followTailLink, segmentVisitor, visitLinks) { return this.findNode$5$followTailLink$pathWithSymlinks$segmentVisitor$visitLinks(path, followTailLink, null, segmentVisitor, visitLinks); } }; X._MemoryFileSystem_findNode_subpath.prototype = { call$0: function() { return C.JSArray_methods.join$1(C.JSArray_methods.sublist$2(this.parts, 0, this.i + 1), this.$this._memory_file_system$_context.style.get$separator()); }, $signature: 71 }; X._MemoryFileSystem_findNode_closure.prototype = { call$3: function($parent, childName, child) { return this.segmentVisitor.call$5($parent, childName, child, this.i, this.finalSegment); }, $signature: 645 }; U.MemoryFileSystemEntity.prototype = { get$backingOrNull: function() { var t1, exception; try { t1 = this.fileSystem.findNode$1(this.path); return t1; } catch (exception) { if (H.unwrapException(exception) instanceof P.FileSystemException) return null; else throw exception; } }, get$backing: function() { var node = this.fileSystem.findNode$1(this.path); if (node == null) H.throwExpression(R.noSuchFileOrDirectory(H._asStringS(new U.MemoryFileSystemEntity_backing_closure(this).call$0()))); node.toString; return node; }, get$resolvedBacking: function() { var _this = this, node = _this.get$backing(); if ((node == null ? null : node.get$type(node)) === C.FileSystemEntityType_2) node = B.resolveLinks(type$.LinkNode._as(node), new U.MemoryFileSystemEntity_resolvedBacking_closure(_this), null, null); B.checkType(_this.get$expectedType(), node.get$type(node), new U.MemoryFileSystemEntity_resolvedBacking_closure0(_this)); return node; }, defaultCheckType$1: function(node) { B.checkType(this.get$expectedType(), node.get$stat(node).type, new U.MemoryFileSystemEntity_defaultCheckType_closure(this)); }, exists$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$exists$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.existsSync$0(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$exists$0, $async$completer); }, delete$1$recursive: function(_, recursive) { return this.delete$body$MemoryFileSystemEntity(_, false); }, delete$0: function($receiver) { return this.delete$1$recursive($receiver, false); }, delete$body$MemoryFileSystemEntity: function(_, recursive) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.FileSystemEntity), $async$returnValue, $async$self = this; var $async$delete$1$recursive = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.deleteSync$1$recursive(0, false); $async$returnValue = $async$self; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$delete$1$recursive, $async$completer); }, deleteSync$1$recursive: function(_, recursive) { return this.internalDeleteSync$1$recursive(false); }, internalCreateSync$3$createChild$followTailLink$visitLinks: function(createChild, followTailLink, visitLinks) { return this.fileSystem.findNode$4$followTailLink$segmentVisitor$visitLinks(this.path, true, new U.MemoryFileSystemEntity_internalCreateSync_closure(createChild), visitLinks); }, internalCreateSync$2$createChild$followTailLink: function(createChild, followTailLink) { return this.internalCreateSync$3$createChild$followTailLink$visitLinks(createChild, followTailLink, false); }, internalDeleteSync$2$checkType$recursive: function(checkType, recursive) { var node, t3, _this = this, t1 = _this.fileSystem, t2 = _this.path; t1.opHandle.call$2(t2, C.FileSystemOp_2); node = _this.get$backing(); if (node instanceof B.DirectoryNode) { t3 = node.children; t3 = t3.get$isNotEmpty(t3); } else t3 = false; if (t3) throw H.wrapException(R._fsException(t2, "Directory not empty", S.ErrorCodes_ENOTEMPTY())); (checkType == null ? _this.get$defaultCheckType() : checkType).call$1(node); node.get$parent(node).children.remove$1(0, X.ParsedPath_ParsedPath$parse(t2, t1._memory_file_system$_context.style).get$basename()); }, internalDeleteSync$1$recursive: function(recursive) { return this.internalDeleteSync$2$checkType$recursive(null, recursive); }, $isFileSystemEntity: 1, $isFileSystemEntity0: 1, get$fileSystem: function() { return this.fileSystem; }, get$path: function(receiver) { return this.path; } }; U.MemoryFileSystemEntity_backing_closure.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; U.MemoryFileSystemEntity_resolvedBacking_closure.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; U.MemoryFileSystemEntity_resolvedBacking_closure0.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; U.MemoryFileSystemEntity_defaultCheckType_closure.prototype = { call$0: function() { return this.$this.path; }, $signature: 71 }; U.MemoryFileSystemEntity_internalCreateSync_closure.prototype = { call$5: function($parent, childName, child, currentSegment, finalSegment) { if (child == null) { child = this.createChild.call$2($parent, currentSegment === finalSegment); if (child != null) $parent.children.$indexSet(0, childName, child); } return child; }, $signature: 1130 }; B.Node0.prototype = { Node$1: function(_parent) { if (this._node0$_parent == null && !this.get$isRoot()) throw H.wrapException(C.FileSystemException_sV6); }, get$parent: function(_) { var t1 = this._node0$_parent; t1.toString; return t1; }, get$isRoot: function() { return false; } }; B.RealNode.prototype = { RealNode$1: function($parent) { var _this = this; _this.get$clock(); _this.__RealNode_accessed = _this.__RealNode_modified = _this.__RealNode_changed = Date.now(); }, get$clock: function() { return this.get$parent(this).get$clock(); }, get$stat: function(_) { var _this = this, t1 = _this.__RealNode_changed; P.DateTime$fromMillisecondsSinceEpoch(t1 === $ ? H.throwExpression(H.LateError$fieldNI("changed")) : t1, false); t1 = _this.__RealNode_modified; P.DateTime$fromMillisecondsSinceEpoch(t1 === $ ? H.throwExpression(H.LateError$fieldNI("modified")) : t1, false); t1 = _this.__RealNode_accessed; P.DateTime$fromMillisecondsSinceEpoch(t1 === $ ? H.throwExpression(H.LateError$fieldNI("accessed")) : t1, false); return new M.MemoryFileStat(_this.get$type(_this), 1911, _this.get$size(_this)); } }; B.DirectoryNode.prototype = { get$type: function(_) { return C.FileSystemEntityType_1; }, get$size: function(_) { return 0; } }; B.RootNode.prototype = { get$clock: function() { return this.fs.clock; }, get$parent: function(_) { return this; }, get$isRoot: function() { return true; } }; B.FileNode.prototype = { get$type: function(_) { return C.FileSystemEntityType_0; }, get$size: function(_) { return this._content.length; }, write$1: function(_, bytes) { var existing = this._content, t1 = existing.length, t2 = J.get$length$asx(bytes); t2 = new Uint8Array(t1 + t2); this._content = t2; C.NativeUint8List_methods.setRange$3(t2, 0, t1, existing); t2 = this._content; C.NativeUint8List_methods.setRange$3(t2, t1, t2.length, bytes); } }; Z.FileSystemOp.prototype = { toString$0: function(_) { switch (this._operations$_value) { case 0: return "FileSystemOp.read"; case 1: return "FileSystemOp.write"; case 2: return "FileSystemOp.delete"; case 3: return "FileSystemOp.create"; default: throw H.wrapException(P.StateError$("Invalid FileSytemOp type: " + this.toString$0(0))); } } }; O.FileSystemStyle.prototype = { get$root: function(_) { $.$get$Style_posix().toString; return "/"; } }; O._Posix.prototype = {}; B.resolveLinks_closure.prototype = { call$3: function($parent, childName, child) { var t2, t1 = this.tailVisitor; if (t1 != null) { child.get$type(child); t2 = true; } else t2 = false; return t2 ? t1.call$3($parent, childName, child) : child; }, $signature: 645 }; R.DirectoryAddOnsMixin.prototype = {}; S.ErrorCodes_EINVAL_closure.prototype = { call$1: function(codes) { return 22; }, $signature: 187 }; S.ErrorCodes_EISDIR_closure.prototype = { call$1: function(codes) { return 21; }, $signature: 187 }; S.ErrorCodes_ELOOP_closure.prototype = { call$1: function(codes) { return 40; }, $signature: 187 }; S.ErrorCodes_ENOENT_closure.prototype = { call$1: function(codes) { return 2; }, $signature: 187 }; S.ErrorCodes_ENOTDIR_closure.prototype = { call$1: function(codes) { return 20; }, $signature: 187 }; S.ErrorCodes_ENOTEMPTY_closure.prototype = { call$1: function(codes) { return 39; }, $signature: 187 }; S._LinuxCodes.prototype = {$is_Codes: 1}; S._MacOSCodes.prototype = {$is_Codes: 1}; S._WindowsCodes.prototype = {$is_Codes: 1}; E.FileSystem0.prototype = { getPath$1: function(_, path) { if (typeof path == "string") return path; else throw H.wrapException(P.ArgumentError$('Invalid type for "path": ' + H.S(path == null ? null : C.Type_String_k8F))); } }; G.FilePickerWeb.prototype = { get$_file_picker_web$_target: function() { var t1 = this.__FilePickerWeb__target; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_target")) : t1; }, pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData: function(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this.pickFiles$body$FilePickerWeb(true, false, allowedExtensions, type, true); }, pickFiles$body$FilePickerWeb: function(allowCompression, allowMultiple, allowedExtensions, type, withData) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$self = this, t2, filesCompleter, accept, uploadInput, t3, files, t1; var $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; if (type !== C.FileType_5) t2 = allowedExtensions.length !== 0; else t2 = false; if (t2) throw H.wrapException(P.Exception_Exception("You are setting a type [" + type.toString$0(0) + string$.x5d__Cus)); t2 = new P._Future($.Zone__current, type$._Future_nullable_List_PlatformFile); filesCompleter = new P._AsyncCompleter(t2, type$._AsyncCompleter_nullable_List_PlatformFile); accept = G.FilePickerWeb__fileType(type, allowedExtensions); uploadInput = W.InputElement_InputElement("file"); uploadInput.draggable = true; uploadInput.multiple = false; uploadInput.accept = accept; t1.changeEventTriggered = false; t3 = new G.FilePickerWeb_pickFiles_changeEventListener(t1, $async$self, uploadInput, filesCompleter, false, true); W._EventStreamSubscription$(uploadInput, "change", t3, false, type$._ElementEventStreamImpl_legacy_Event._precomputed1); C.InputElement_methods.addEventListener$2(uploadInput, "change", t3); C.Window_methods.addEventListener$2(window, "focus", new G.FilePickerWeb_pickFiles_cancelledEventListener(t1, filesCompleter)); J.get$children$x($async$self.get$_file_picker_web$_target()).clear$0(0); J.get$children$x($async$self.get$_file_picker_web$_target()).add$1(0, uploadInput); uploadInput.click(); $async$goto = 3; return P._asyncAwait(t2, $async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData); case 3: // returning from await. files = $async$result; $async$returnValue = files == null ? null : new K.FilePickerResult(files); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData, $async$completer); } }; G.FilePickerWeb_pickFiles_changeEventListener.prototype = { call$1: function(e) { var _this = this, t1 = _this._box_0; if (t1.changeEventTriggered) return; t1.changeEventTriggered = true; t1 = _this.uploadInput.files; t1.toString; C.FileList_methods.forEach$1(t1, new G.FilePickerWeb_pickFiles_changeEventListener_closure(_this.$this, _this.withReadStream, new G.FilePickerWeb_pickFiles_changeEventListener_addPickedFile(H.setRuntimeTypeInfo([], type$.JSArray_PlatformFile), t1, _this.filesCompleter), _this.withData)); }, $signature: 81 }; G.FilePickerWeb_pickFiles_changeEventListener_addPickedFile.prototype = { call$4: function(file, bytes, path, readStream) { var t1 = this.pickedFiles, t2 = file.name; t1.push(new T.PlatformFile(path, t2, bytes, bytes != null ? J.get$length$asx(bytes) : file.size)); if (t1.length >= this.files.length) this.filesCompleter.complete$1(0, t1); }, $signature: 1144 }; G.FilePickerWeb_pickFiles_changeEventListener_closure.prototype = { call$1: function(file) { var reader; if (!this.withData) { reader = new FileReader(); W._EventStreamSubscription$(reader, "loadend", new G.FilePickerWeb_pickFiles_changeEventListener__closure(this.addPickedFile, file, reader), false, type$.legacy_ProgressEvent); reader.readAsDataURL(file); return; } reader = new FileReader(); W._EventStreamSubscription$(reader, "loadend", new G.FilePickerWeb_pickFiles_changeEventListener__closure0(this.addPickedFile, file, reader), false, type$.legacy_ProgressEvent); reader.readAsArrayBuffer(file); }, $signature: 1156 }; G.FilePickerWeb_pickFiles_changeEventListener__closure.prototype = { call$1: function(e) { this.addPickedFile.call$4(this.file, null, H._asStringQ(C.FileReader_methods.get$result(this.reader)), null); }, $signature: 175 }; G.FilePickerWeb_pickFiles_changeEventListener__closure0.prototype = { call$1: function(e) { this.addPickedFile.call$4(this.file, type$.nullable_Uint8List._as(C.FileReader_methods.get$result(this.reader)), null, null); }, $signature: 175 }; G.FilePickerWeb_pickFiles_cancelledEventListener.prototype = { call$1: function(_) { C.Window_methods.removeEventListener$2(window, "focus", this); P.Future_Future$delayed(P.Duration$(0, 0, 0, 500, 0, 0), null, type$.dynamic).then$1$1(0, new G.FilePickerWeb_pickFiles_cancelledEventListener_closure(this._box_0, this.filesCompleter), type$.Null); }, $signature: 81 }; G.FilePickerWeb_pickFiles_cancelledEventListener_closure.prototype = { call$1: function(value) { var t1 = this._box_0; if (!t1.changeEventTriggered) { t1.changeEventTriggered = true; this.filesCompleter.complete$1(0, null); } }, $signature: 8 }; G.FilePickerWeb__fileType_closure.prototype = { call$2: function(prev, next) { return (prev.length === 0 ? "" : prev + ",") + " ." + H.S(next); }, $signature: 644 }; G.FileType.prototype = { toString$0: function(_) { return this._file_picker$_name; } }; G.FilePicker.prototype = {}; B.FilePickerIO.prototype = { pickFiles$5$allowCompression$allowMultiple$allowedExtensions$type$withData: function(allowCompression, allowMultiple, allowedExtensions, type, withData) { return this._getPath$7(type, false, true, allowedExtensions, null, true, false); }, _getPath$7: function(fileType, allowMultipleSelection, allowCompression, allowedExtensions, onFileLoading, withData, withReadStream) { return this._getPath$body$FilePickerIO(fileType, false, true, allowedExtensions, onFileLoading, true, false); }, _getPath$body$FilePickerIO: function(fileType, allowMultipleSelection, allowCompression, allowedExtensions, onFileLoading, withData, withReadStream) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_FilePickerResult), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], result, platformFiles, platformFileMap, e, e0, t1, t2, t3, exception, type, $async$exception; var $async$_getPath$7 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start type = Y.describeEnum(fileType); if (!J.$eq$(type, "custom")) t1 = allowedExtensions.length !== 0; else t1 = false; if (t1) throw H.wrapException(P.Exception_Exception("You are setting a type [" + fileType.toString$0(0) + string$.x5d__Cus)); $async$handler = 4; t1 = $.FilePickerIO__eventSubscription; if (t1 != null) t1.cancel$0(0); $async$goto = 7; return P._asyncAwait($.$get$_channel0().invokeListMethod$1$2(type, P.LinkedHashMap_LinkedHashMap$_literal(["allowMultipleSelection", false, "allowedExtensions", allowedExtensions, "allowCompression", true, "withData", true], type$.String, type$.nullable_Object), type$.Map_dynamic_dynamic), $async$_getPath$7); case 7: // returning from await. result = $async$result; if (result == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } platformFiles = H.setRuntimeTypeInfo([], type$.JSArray_PlatformFile); for (t1 = J.get$iterator$ax(result); t1.moveNext$0();) { platformFileMap = t1.get$current(t1); t2 = platformFileMap; t3 = J.getInterceptor$asx(t2); J.add$1$ax(platformFiles, new T.PlatformFile(t3.$index(t2, "path"), t3.$index(t2, "name"), t3.$index(t2, "bytes"), t3.$index(t2, "size"))); } $async$returnValue = new K.FilePickerResult(platformFiles); // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (t1 instanceof F.PlatformException) { e = t1; P.print("[MethodChannelFilePicker] Platform exception: " + H.S(e)); throw $async$exception; } else { e0 = t1; P.print("[MethodChannelFilePicker] Unsupported operation. Method not found. The exception thrown was: " + H.S(e0)); throw $async$exception; } // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_getPath$7, $async$completer); } }; K.FilePickerResult.prototype = {}; T.PlatformFile.prototype = { get$name: function(receiver) { return this.name; } }; V.Int64.prototype = { $add: function(_, other) { var o = V.Int64__promote(other), sum0 = this._l + o._l, sum1 = this._m + o._m + (sum0 >>> 22); return new V.Int64(sum0 & 4194303, sum1 & 4194303, this._h + o._h + (sum1 >>> 22) & 1048575); }, $sub: function(_, other) { var o = V.Int64__promote(other); return V.Int64__sub(this._l, this._m, this._h, o._l, o._m, o._h); }, $mul: function(_, other) { var a3, b0, t3, b1, b2, b3, b4, p0, p1, p2, p3, p4, c0, c1, o = V.Int64__promote(other), t1 = this._l, a0 = t1 & 8191, t2 = this._m, a1 = (t1 >>> 13 | (t2 & 15) << 9) >>> 0, a2 = t2 >>> 4 & 8191; t1 = this._h; a3 = (t2 >>> 17 | (t1 & 255) << 5) >>> 0; t2 = o._l; b0 = t2 & 8191; t3 = o._m; b1 = (t2 >>> 13 | (t3 & 15) << 9) >>> 0; b2 = t3 >>> 4 & 8191; t2 = o._h; b3 = (t3 >>> 17 | (t2 & 255) << 5) >>> 0; b4 = t2 >>> 8 & 4095; p0 = a0 * b0; p1 = a1 * b0; p2 = a2 * b0; p3 = a3 * b0; p4 = (t1 >>> 8 & 4095) * b0; if (b1 !== 0) { p1 += a0 * b1; p2 += a1 * b1; p3 += a2 * b1; p4 += a3 * b1; } if (b2 !== 0) { p2 += a0 * b2; p3 += a1 * b2; p4 += a2 * b2; } if (b3 !== 0) { p3 += a0 * b3; p4 += a1 * b3; } if (b4 !== 0) p4 += a0 * b4; c0 = (p0 & 4194303) + ((p1 & 511) << 13); c1 = (p0 >>> 22) + (p1 >>> 9) + ((p2 & 262143) << 4) + ((p3 & 31) << 17) + (c0 >>> 22); return new V.Int64(c0 & 4194303, c1 & 4194303, (p2 >>> 18) + (p3 >>> 5) + ((p4 & 4095) << 8) + (c1 >>> 22) & 1048575); }, $eq: function(_, other) { var o, _this = this; if (other == null) return false; if (other instanceof V.Int64) o = other; else if (H._isInt(other)) { if (_this._h === 0 && _this._m === 0) return _this._l === other; if ((other & 4194303) === other) return false; o = V.Int64_Int64(other); } else o = null; if (o != null) return _this._l === o._l && _this._m === o._m && _this._h === o._h; return false; }, compareTo$1: function(_, other) { return this._compareTo$1(other); }, _compareTo$1: function(other) { var o = V.Int64__promote(other), t1 = this._h, signa = t1 >>> 19, t2 = o._h; if (signa !== t2 >>> 19) return signa === 0 ? 1 : -1; if (t1 > t2) return 1; else if (t1 < t2) return -1; t1 = this._m; t2 = o._m; if (t1 > t2) return 1; else if (t1 < t2) return -1; t1 = this._l; t2 = o._l; if (t1 > t2) return 1; else if (t1 < t2) return -1; return 0; }, $lt: function(_, other) { return this._compareTo$1(other) < 0; }, $gt: function(_, other) { return this._compareTo$1(other) > 0; }, $ge: function(_, other) { return this._compareTo$1(other) >= 0; }, get$hashCode: function(_) { var t1 = this._m; return (((t1 & 1023) << 22 | this._l) ^ (this._h << 12 | t1 >>> 10 & 4095)) >>> 0; }, toString$0: function(_) { var d00, d10, sign, d0 = this._l, d1 = this._m, d2 = this._h; if ((d2 & 524288) !== 0) { d0 = 0 - d0; d00 = d0 & 4194303; d1 = 0 - d1 - (C.JSInt_methods._shrOtherPositive$1(d0, 22) & 1); d10 = d1 & 4194303; d2 = 0 - d2 - (C.JSInt_methods._shrOtherPositive$1(d1, 22) & 1) & 1048575; d1 = d10; d0 = d00; sign = "-"; } else sign = ""; return V.Int64__toRadixStringUnsigned(10, d0, d1, d2, sign); }, _toRadixString$1: function(radix) { var d00, d10, sign, d0 = this._l, d1 = this._m, d2 = this._h; if ((d2 & 524288) !== 0) { d0 = 0 - d0; d00 = d0 & 4194303; d1 = 0 - d1 - (C.JSInt_methods._shrOtherPositive$1(d0, 22) & 1); d10 = d1 & 4194303; d2 = 0 - d2 - (C.JSInt_methods._shrOtherPositive$1(d1, 22) & 1) & 1048575; d1 = d10; d0 = d00; sign = "-"; } else sign = ""; return V.Int64__toRadixStringUnsigned(radix, d0, d1, d2, sign); }, $isComparable: 1 }; X.AnimationStatus.prototype = { toString$0: function(_) { return this._animation$_name; } }; X.Animation0.prototype = { toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + this.toStringDetails$0() + ")"; }, toStringDetails$0: function() { switch (this.get$status(this)) { case C.AnimationStatus_1: return "\u25b6"; case C.AnimationStatus_2: return "\u25c0"; case C.AnimationStatus_3: return "\u23ed"; case C.AnimationStatus_0: return "\u23ee"; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; G._AnimationDirection.prototype = { toString$0: function(_) { return this._animation_controller$_name; } }; G.AnimationBehavior.prototype = { toString$0: function(_) { return this._animation_controller$_name; } }; G.AnimationController.prototype = { resync$1: function(vsync) { var t2, t3, t1 = this._ticker; t1.toString; t2 = this._ticker = vsync.createTicker$1(this.get$_animation_controller$_tick()); t3 = t1._ticker$_future; if (t3 != null) { t2._ticker$_future = t3; t2._startTime = t1._startTime; if (!t2._muted) t3 = t2._animationId == null; else t3 = false; if (t3) t2._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(t2.get$_ticker$_tick(), false); t1._ticker$_future = null; t1.unscheduleTick$0(); } t1.dispose$0(0); }, get$value: function(_) { return this.get$_animation_controller$_value(); }, get$_animation_controller$_value: function() { var t1 = this.__AnimationController__value; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_value")) : t1; }, set$value: function(_, newValue) { var _this = this; _this.stop$0(0); _this._internalSetValue$1(newValue); _this.notifyListeners$0(); _this._checkStatusChanged$0(); }, get$velocity: function() { var t1 = this._ticker; if (!(t1 != null && t1._ticker$_future != null)) return 0; t1 = this._simulation; t1.toString; return t1.dx$1(0, this._lastElapsedDuration._duration / 1000000); }, _internalSetValue$1: function(newValue) { var _this = this, t1 = _this.lowerBound, t2 = _this.upperBound; _this.__AnimationController__value = J.clamp$2$n(newValue, t1, t2); if (_this.get$_animation_controller$_value() === t1) _this.__AnimationController__status = C.AnimationStatus_0; else if (_this.get$_animation_controller$_value() === t2) _this.__AnimationController__status = C.AnimationStatus_3; else _this.__AnimationController__status = _this._direction === C._AnimationDirection_0 ? C.AnimationStatus_1 : C.AnimationStatus_2; }, get$status: function(_) { var t1 = this.__AnimationController__status; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_status")) : t1; }, get$_status: function() { var t1 = this.__AnimationController__status; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_status")) : t1; }, forward$1$from: function(_, from) { var _this = this; _this._direction = C._AnimationDirection_0; if (from != null) _this.set$value(0, from); return _this._animateToInternal$1(_this.upperBound); }, forward$0: function($receiver) { return this.forward$1$from($receiver, null); }, reverse$1$from: function(_, from) { var _this = this; _this._direction = C._AnimationDirection_1; if (from != null) _this.set$value(0, from); return _this._animateToInternal$1(_this.lowerBound); }, reverse$0: function($receiver) { return this.reverse$1$from($receiver, null); }, _animateToInternal$3$curve$duration: function(target, curve, duration) { var range, remainingFraction, t1, directionDuration, simulationDuration, _this = this; $.SemanticsBinding__instance.get$_accessibilityFeatures().toString; if (duration == null) { range = _this.upperBound - _this.lowerBound; remainingFraction = isFinite(range) ? Math.abs(target - _this.get$_animation_controller$_value()) / range : 1; if (_this._direction === C._AnimationDirection_1 && _this.reverseDuration != null) { t1 = _this.reverseDuration; t1.toString; directionDuration = t1; } else { t1 = _this.duration; t1.toString; directionDuration = t1; } simulationDuration = new P.Duration(C.JSNumber_methods.round$0(directionDuration._duration * remainingFraction)); } else simulationDuration = target == _this.get$_animation_controller$_value() ? C.Duration_0 : duration; _this.stop$0(0); t1 = simulationDuration._duration; if (t1 === 0) { if (_this.get$_animation_controller$_value() != target) { _this.__AnimationController__value = J.clamp$2$n(target, _this.lowerBound, _this.upperBound); _this.notifyListeners$0(); } _this.__AnimationController__status = _this._direction === C._AnimationDirection_0 ? C.AnimationStatus_3 : C.AnimationStatus_0; _this._checkStatusChanged$0(); return M.TickerFuture$complete(); } return _this._startSimulation$1(new G._InterpolationSimulation(t1 / 1000000, _this.get$_animation_controller$_value(), target, curve, C.Tolerance_Gdw)); }, _animateToInternal$1: function(target) { return this._animateToInternal$3$curve$duration(target, C.C__Linear, null); }, repeat$0: function(_) { var t1, t2, _this = this, min = _this.lowerBound, max = _this.upperBound, period = _this.duration; _this.stop$0(0); t1 = _this.get$_animation_controller$_value(); t2 = period._duration / 1000000; t1 = max === min ? 0 : t1 / (max - min) * t2; return _this._startSimulation$1(new G._RepeatingSimulation(min, max, false, _this.get$_directionSetter(), t2, t1, C.Tolerance_Gdw)); }, _directionSetter$1: function(direction) { this._direction = direction; this.__AnimationController__status = direction === C._AnimationDirection_0 ? C.AnimationStatus_1 : C.AnimationStatus_2; this._checkStatusChanged$0(); }, fling$1$velocity: function(velocity) { var target, simulation, _this = this, springDescription = $.$get$_kFlingSpringDescription(), t1 = velocity < 0; _this._direction = t1 ? C._AnimationDirection_1 : C._AnimationDirection_0; target = t1 ? _this.lowerBound - 0.01 : _this.upperBound + 0.01; $.SemanticsBinding__instance.get$_accessibilityFeatures().toString; simulation = new M.SpringSimulation(target, M._SpringSolution__SpringSolution(springDescription, _this.get$_animation_controller$_value() - target, velocity), C.Tolerance_Gdw); simulation.tolerance = C.Tolerance_qbZ; _this.stop$0(0); return _this._startSimulation$1(simulation); }, fling$0: function() { return this.fling$1$velocity(1); }, animateWith$1: function(simulation) { this.stop$0(0); this._direction = C._AnimationDirection_0; return this._startSimulation$1(simulation); }, _startSimulation$1: function(simulation) { var result, _this = this; _this._simulation = simulation; _this._lastElapsedDuration = C.Duration_0; _this.__AnimationController__value = J.clamp$2$n(simulation.x$1(0, 0), _this.lowerBound, _this.upperBound); result = _this._ticker.start$0(0); _this.__AnimationController__status = _this._direction === C._AnimationDirection_0 ? C.AnimationStatus_1 : C.AnimationStatus_2; _this._checkStatusChanged$0(); return result; }, stop$1$canceled: function(_, canceled) { this._lastElapsedDuration = this._simulation = null; this._ticker.stop$1$canceled(0, canceled); }, stop$0: function($receiver) { return this.stop$1$canceled($receiver, true); }, dispose$0: function(_) { this._ticker.dispose$0(0); this._ticker = null; this.super$AnimationEagerListenerMixin$dispose(0); }, _checkStatusChanged$0: function() { var _this = this, newStatus = _this.get$_status(); if (_this._lastReportedStatus != newStatus) { _this._lastReportedStatus = newStatus; _this.notifyStatusListeners$1(newStatus); } }, _animation_controller$_tick$1: function(elapsed) { var elapsedInSeconds, _this = this; _this._lastElapsedDuration = elapsed; elapsedInSeconds = elapsed._duration / 1000000; _this.__AnimationController__value = J.clamp$2$n(_this._simulation.x$1(0, elapsedInSeconds), _this.lowerBound, _this.upperBound); if (_this._simulation.isDone$1(elapsedInSeconds)) { _this.__AnimationController__status = _this._direction === C._AnimationDirection_0 ? C.AnimationStatus_3 : C.AnimationStatus_0; _this.stop$1$canceled(0, false); } _this.notifyListeners$0(); _this._checkStatusChanged$0(); }, toStringDetails$0: function() { var ticker, label, _this = this, t1 = _this._ticker, t2 = t1 == null, paused = !t2 && t1._ticker$_future != null ? "" : "; paused"; if (t2) ticker = "; DISPOSED"; else ticker = t1._muted ? "; silenced" : ""; t1 = _this.debugLabel; label = t1 == null ? "" : "; for " + t1; return _this.super$Animation$toStringDetails() + " " + J.toStringAsFixed$1$n(_this.get$_animation_controller$_value(), 3) + paused + ticker + label; } }; G._InterpolationSimulation.prototype = { x$1: function(_, timeInSeconds) { var t1, t2, _this = this, t = C.JSNumber_methods.clamp$2(timeInSeconds / _this._durationInSeconds, 0, 1); if (t === 0) return _this._begin; else { t1 = _this._animation_controller$_end; if (t === 1) return t1; else { t2 = _this._begin; return t2 + (t1 - t2) * _this._curve.transform$1(0, t); } } }, dx$1: function(_, timeInSeconds) { this.tolerance.toString; return (this.x$1(0, timeInSeconds + 0.001) - this.x$1(0, timeInSeconds - 0.001)) / 0.002; }, isDone$1: function(timeInSeconds) { return timeInSeconds > this._durationInSeconds; } }; G._RepeatingSimulation.prototype = { x$1: function(_, timeInSeconds) { var _this = this, totalTimeInSeconds = timeInSeconds + _this._initialT, t1 = _this._periodInSeconds, t = C.JSNumber_methods.$mod(totalTimeInSeconds / t1, 1); C.JSNumber_methods.$tdiv(totalTimeInSeconds, t1); _this.directionSetter.call$1(C._AnimationDirection_0); t1 = P.lerpDouble(_this.min, _this.max, t); t1.toString; return t1; }, dx$1: function(_, timeInSeconds) { return (this.max - this.min) / this._periodInSeconds; }, isDone$1: function(timeInSeconds) { return false; } }; G._AnimationController_Animation_AnimationEagerListenerMixin.prototype = {}; G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin.prototype = {}; G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; S._AlwaysCompleteAnimation.prototype = { addListener$1: function(_, listener) { }, removeListener$1: function(_, listener) { }, addStatusListener$1: function(listener) { }, removeStatusListener$1: function(listener) { }, get$status: function(_) { return C.AnimationStatus_3; }, get$value: function(_) { return 1; }, toString$0: function(_) { return "kAlwaysCompleteAnimation"; } }; S._AlwaysDismissedAnimation.prototype = { addListener$1: function(_, listener) { }, removeListener$1: function(_, listener) { }, addStatusListener$1: function(listener) { }, removeStatusListener$1: function(listener) { }, get$status: function(_) { return C.AnimationStatus_0; }, get$value: function(_) { return 0; }, toString$0: function(_) { return "kAlwaysDismissedAnimation"; } }; S.AlwaysStoppedAnimation.prototype = { addListener$1: function(_, listener) { }, removeListener$1: function(_, listener) { }, addStatusListener$1: function(listener) { }, removeStatusListener$1: function(listener) { }, get$status: function(_) { return C.AnimationStatus_1; }, toStringDetails$0: function() { return this.super$Animation$toStringDetails() + " " + this.value.toString$0(0) + "; paused"; }, get$value: function(receiver) { return this.value; } }; S.AnimationWithParentMixin.prototype = { addListener$1: function(_, listener) { return this.get$parent(this).addListener$1(0, listener); }, removeListener$1: function(_, listener) { return this.get$parent(this).removeListener$1(0, listener); }, addStatusListener$1: function(listener) { return this.get$parent(this).addStatusListener$1(listener); }, removeStatusListener$1: function(listener) { return this.get$parent(this).removeStatusListener$1(listener); }, get$status: function(_) { var t1 = this.get$parent(this); return t1.get$status(t1); } }; S.ProxyAnimation.prototype = { set$parent: function(_, value) { var t2, _this = this, t1 = _this._animations$_parent; if (value == t1) return; if (t1 != null) { _this._animations$_status = t1.get$status(t1); t1 = _this._animations$_parent; _this._animations$_value = t1.get$value(t1); if (_this.AnimationLazyListenerMixin__listenerCounter > 0) _this.didStopListening$0(); } _this._animations$_parent = value; if (value != null) { if (_this.AnimationLazyListenerMixin__listenerCounter > 0) _this.didStartListening$0(); t1 = _this._animations$_value; t2 = _this._animations$_parent; t2 = t2.get$value(t2); if (t1 == null ? t2 != null : t1 !== t2) _this.notifyListeners$0(); t1 = _this._animations$_status; t2 = _this._animations$_parent; if (t1 != t2.get$status(t2)) { t1 = _this._animations$_parent; _this.notifyStatusListeners$1(t1.get$status(t1)); } _this._animations$_value = _this._animations$_status = null; } }, didStartListening$0: function() { var _this = this, t1 = _this._animations$_parent; if (t1 != null) { t1.addListener$1(0, _this.get$notifyListeners()); _this._animations$_parent.addStatusListener$1(_this.get$notifyStatusListeners()); } }, didStopListening$0: function() { var _this = this, t1 = _this._animations$_parent; if (t1 != null) { t1.removeListener$1(0, _this.get$notifyListeners()); _this._animations$_parent.removeStatusListener$1(_this.get$notifyStatusListeners()); } }, get$status: function(_) { var t1 = this._animations$_parent; if (t1 != null) t1 = t1.get$status(t1); else { t1 = this._animations$_status; t1.toString; } return t1; }, get$value: function(_) { var t1 = this._animations$_parent; if (t1 != null) t1 = t1.get$value(t1); else { t1 = this._animations$_value; t1.toString; } return t1; }, toString$0: function(_) { var _this = this, t1 = _this._animations$_parent; if (t1 == null) return "ProxyAnimation(null; " + _this.super$Animation$toStringDetails() + " " + J.toStringAsFixed$1$n(_this.get$value(_this), 3) + ")"; return t1.toString$0(0) + "\u27a9ProxyAnimation"; } }; S.ReverseAnimation.prototype = { addListener$1: function(_, listener) { this.didRegisterListener$0(); this.parent.addListener$1(0, listener); }, removeListener$1: function(_, listener) { this.parent.removeListener$1(0, listener); this.didUnregisterListener$0(); }, didStartListening$0: function() { this.parent.addStatusListener$1(this.get$_statusChangeHandler()); }, didStopListening$0: function() { this.parent.removeStatusListener$1(this.get$_statusChangeHandler()); }, _statusChangeHandler$1: function($status) { this.notifyStatusListeners$1(this._reverseStatus$1($status)); }, get$status: function(_) { var t1 = this.parent; return this._reverseStatus$1(t1.get$status(t1)); }, get$value: function(_) { var t1 = this.parent; return 1 - t1.get$value(t1); }, _reverseStatus$1: function($status) { switch ($status) { case C.AnimationStatus_1: return C.AnimationStatus_2; case C.AnimationStatus_2: return C.AnimationStatus_1; case C.AnimationStatus_3: return C.AnimationStatus_0; case C.AnimationStatus_0: return C.AnimationStatus_3; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, toString$0: function(_) { return H.S(this.parent) + "\u27aaReverseAnimation"; } }; S.CurvedAnimation.prototype = { _updateCurveDirection$1: function($status) { var _this = this; switch ($status) { case C.AnimationStatus_0: case C.AnimationStatus_3: _this._curveDirection = null; break; case C.AnimationStatus_1: if (_this._curveDirection == null) _this._curveDirection = C.AnimationStatus_1; break; case C.AnimationStatus_2: if (_this._curveDirection == null) _this._curveDirection = C.AnimationStatus_2; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_useForwardCurve: function() { if (this.reverseCurve != null) { var t1 = this._curveDirection; if (t1 == null) { t1 = this.parent; t1 = t1.get$status(t1); } t1 = t1 !== C.AnimationStatus_2; } else t1 = true; return t1; }, get$value: function(_) { var _this = this, activeCurve = _this.get$_useForwardCurve() ? _this.curve : _this.reverseCurve, t1 = _this.parent, t = t1.get$value(t1); if (activeCurve == null) return t; if (t === 0 || t === 1) return t; return activeCurve.transform$1(0, t); }, toString$0: function(_) { var _this = this; if (_this.reverseCurve == null) return H.S(_this.parent) + "\u27a9" + H.S(_this.curve); if (_this.get$_useForwardCurve()) return H.S(_this.parent) + "\u27a9" + H.S(_this.curve) + "\u2092\u2099/" + H.S(_this.reverseCurve); return H.S(_this.parent) + "\u27a9" + H.S(_this.curve) + "/" + H.S(_this.reverseCurve) + "\u2092\u2099"; }, get$parent: function(receiver) { return this.parent; } }; S._TrainHoppingMode.prototype = { toString$0: function(_) { return this._animations$_name; } }; S.TrainHoppingAnimation.prototype = { _statusChangeHandler$1: function($status) { if ($status != this._lastStatus) { this.notifyListeners$0(); this._lastStatus = $status; } }, get$status: function(_) { var t1 = this._currentTrain; return t1.get$status(t1); }, _valueChangeHandler$0: function() { var t2, hop, _this = this, t1 = _this._nextTrain; if (t1 != null) { t2 = _this._mode; t2.toString; switch (t2) { case C._TrainHoppingMode_0: t1 = t1.get$value(t1); t2 = _this._currentTrain; hop = t1 <= t2.get$value(t2); break; case C._TrainHoppingMode_1: t1 = t1.get$value(t1); t2 = _this._currentTrain; hop = t1 >= t2.get$value(t2); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (hop) { t1 = _this._currentTrain; t2 = _this.get$_statusChangeHandler(); t1.removeStatusListener$1(t2); t1.removeListener$1(0, _this.get$_valueChangeHandler()); t1 = _this._nextTrain; _this._currentTrain = t1; _this._nextTrain = null; t1.addStatusListener$1(t2); t2 = _this._currentTrain; _this._statusChangeHandler$1(t2.get$status(t2)); } } else hop = false; t1 = _this._currentTrain; t1 = t1.get$value(t1); if (t1 != _this._lastValue) { _this.notifyListeners$0(); _this._lastValue = t1; } if (hop && _this.onSwitchedTrain != null) _this.onSwitchedTrain.call$0(); }, get$value: function(_) { var t1 = this._currentTrain; return t1.get$value(t1); }, dispose$0: function(_) { var t1, t2, _this = this; _this._currentTrain.removeStatusListener$1(_this.get$_statusChangeHandler()); t1 = _this.get$_valueChangeHandler(); _this._currentTrain.removeListener$1(0, t1); _this._currentTrain = null; t2 = _this._nextTrain; if (t2 != null) t2.removeListener$1(0, t1); _this._nextTrain = null; _this.super$AnimationEagerListenerMixin$dispose(0); }, toString$0: function(_) { var _this = this; if (_this._nextTrain != null) return H.S(_this._currentTrain) + "\u27a9TrainHoppingAnimation(next: " + H.S(_this._nextTrain) + ")"; return H.S(_this._currentTrain) + "\u27a9TrainHoppingAnimation(no next)"; } }; S.CompoundAnimation.prototype = { didStartListening$0: function() { var t3, _this = this, t1 = _this.first, t2 = _this.get$_maybeNotifyListeners(); t1.addListener$1(0, t2); t3 = _this.get$_maybeNotifyStatusListeners(); t1.addStatusListener$1(t3); t1 = _this.next; t1.addListener$1(0, t2); t1.addStatusListener$1(t3); }, didStopListening$0: function() { var t3, _this = this, t1 = _this.first, t2 = _this.get$_maybeNotifyListeners(); t1.removeListener$1(0, t2); t3 = _this.get$_maybeNotifyStatusListeners(); t1.removeStatusListener$1(t3); t1 = _this.next; t1.removeListener$1(0, t2); t1.removeStatusListener$1(t3); }, get$status: function(_) { var t1 = this.next; if (t1.get$status(t1) === C.AnimationStatus_1 || t1.get$status(t1) === C.AnimationStatus_2) return t1.get$status(t1); t1 = this.first; return t1.get$status(t1); }, toString$0: function(_) { return "CompoundAnimation(" + this.first.toString$0(0) + ", " + this.next.toString$0(0) + ")"; }, _maybeNotifyStatusListeners$1: function(_) { var _this = this; if (_this.get$status(_this) != _this._lastStatus) { _this._lastStatus = _this.get$status(_this); _this.notifyStatusListeners$1(_this.get$status(_this)); } }, _maybeNotifyListeners$0: function() { var _this = this; if (!J.$eq$(_this.get$value(_this), _this._lastValue)) { _this._lastValue = _this.get$value(_this); _this.notifyListeners$0(); } } }; S.AnimationMin.prototype = { get$value: function(_) { var t2, t1 = this.first; t1 = t1.get$value(t1); t2 = this.next; t2 = t2.get$value(t2); return Math.min(H.checkNum(t1), H.checkNum(t2)); } }; S._CompoundAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin.prototype = {}; S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; S._CurvedAnimation_Animation_AnimationWithParentMixin.prototype = {}; S._ProxyAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin.prototype = {}; S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; S._ReverseAnimation_Animation_AnimationLazyListenerMixin.prototype = {}; S._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin.prototype = {}; S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin.prototype = {}; S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin.prototype = {}; S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin.prototype = {}; Z.ParametricCurve.prototype = { transform$1: function(_, t) { return this.transformInternal$1(t); }, transformInternal$1: function(t) { throw H.wrapException(P.UnimplementedError$(null)); }, toString$0: function(_) { return "ParametricCurve"; } }; Z.Curve.prototype = { transform$1: function(_, t) { if (t === 0 || t === 1) return t; return this.super$ParametricCurve$transform(0, t); } }; Z._Linear.prototype = { transformInternal$1: function(t) { return t; } }; Z.SawTooth.prototype = { transformInternal$1: function(t) { t *= this.count; return t - (t < 0 ? Math.ceil(t) : Math.floor(t)); }, toString$0: function(_) { return "SawTooth(" + this.count + ")"; } }; Z.Interval.prototype = { transformInternal$1: function(t) { var t1 = this.begin; t = C.JSNumber_methods.clamp$2((t - t1) / (this.end - t1), 0, 1); if (t === 0 || t === 1) return t; return this.curve.transform$1(0, t); }, toString$0: function(_) { var _this = this, t1 = _this.curve; if (!(t1 instanceof Z._Linear)) return "Interval(" + H.S(_this.begin) + "\u22ef" + H.S(_this.end) + ")\u27a9" + H.S(t1); return "Interval(" + H.S(_this.begin) + "\u22ef" + H.S(_this.end) + ")"; } }; Z.Threshold.prototype = { transformInternal$1: function(t) { return t < this.threshold ? 0 : 1; } }; Z.Cubic.prototype = { _evaluateCubic$3: function(a, b, m) { var t1 = 1 - m; return 3 * a * t1 * t1 * m + 3 * b * t1 * m * m + m * m * m; }, transformInternal$1: function(t) { var t1, t2, start, end, midpoint, estimate, _this = this; for (t1 = _this.a, t2 = _this.c, start = 0, end = 1; true;) { midpoint = (start + end) / 2; estimate = _this._evaluateCubic$3(t1, t2, midpoint); if (Math.abs(t - estimate) < 0.001) return _this._evaluateCubic$3(_this.b, _this.d, midpoint); if (estimate < t) start = midpoint; else end = midpoint; } }, toString$0: function(_) { var _this = this; return "Cubic(" + C.JSNumber_methods.toStringAsFixed$1(_this.a, 2) + ", " + C.JSNumber_methods.toStringAsFixed$1(_this.b, 2) + ", " + C.JSNumber_methods.toStringAsFixed$1(_this.c, 2) + ", " + C.JSNumber_methods.toStringAsFixed$1(_this.d, 2) + ")"; } }; Z.FlippedCurve.prototype = { transformInternal$1: function(t) { return 1 - this.curve.transform$1(0, 1 - t); }, toString$0: function(_) { return "FlippedCurve(" + this.curve.toString$0(0) + ")"; } }; Z._DecelerateCurve.prototype = { transformInternal$1: function(t) { t = 1 - t; return 1 - t * t; } }; Z.ElasticOutCurve.prototype = { transformInternal$1: function(t) { return Math.pow(2, -10 * t) * Math.sin((t - 0.1) * 6.283185307179586 / 0.4) + 1; }, toString$0: function(_) { return "ElasticOutCurve(0.4)"; } }; S.AnimationLazyListenerMixin.prototype = { didRegisterListener$0: function() { if (this.AnimationLazyListenerMixin__listenerCounter === 0) this.didStartListening$0(); ++this.AnimationLazyListenerMixin__listenerCounter; }, didUnregisterListener$0: function() { if (--this.AnimationLazyListenerMixin__listenerCounter === 0) this.didStopListening$0(); } }; S.AnimationEagerListenerMixin.prototype = { didRegisterListener$0: function() { }, didUnregisterListener$0: function() { }, dispose$0: function(_) { } }; S.AnimationLocalListenersMixin.prototype = { addListener$1: function(_, listener) { var t1; this.didRegisterListener$0(); t1 = this.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(listener); }, removeListener$1: function(_, listener) { if (this.AnimationLocalListenersMixin__listeners.remove$1(0, listener)) this.didUnregisterListener$0(); }, notifyListeners$0: function() { var listener, exception, stack, t2, _i, exception0, rti, t3, t4, _this = this, t1 = _this.AnimationLocalListenersMixin__listeners, localListeners = P.List_List$from(t1, true, type$.void_Function); for (t2 = localListeners.length, _i = 0; _i < t2; ++_i) { listener = localListeners[_i]; try { if (t1.contains$1(0, listener)) listener.call$0(); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); rti = _this instanceof H.Closure ? H.closureFunctionType(_this) : null; t3 = U.ErrorDescription$("while notifying listeners for " + H.createRuntimeType(rti == null ? H.instanceType(_this) : rti).toString$0(0)); t4 = $.FlutterError_onError; if (t4 != null) t4.call$1(new U.FlutterErrorDetails(exception, stack, "animation library", t3, null, false)); } } } }; S.AnimationLocalStatusListenersMixin.prototype = { addStatusListener$1: function(listener) { var t1; this.didRegisterListener$0(); t1 = this.AnimationLocalStatusListenersMixin__statusListeners; t1._isDirty = true; t1._observer_list$_list.push(listener); }, removeStatusListener$1: function(listener) { if (this.AnimationLocalStatusListenersMixin__statusListeners.remove$1(0, listener)) this.didUnregisterListener$0(); }, notifyStatusListeners$1: function($status) { var listener, exception, stack, t2, _i, exception0, rti, t3, t4, _this = this, t1 = _this.AnimationLocalStatusListenersMixin__statusListeners, localListeners = P.List_List$from(t1, true, type$.void_Function_AnimationStatus); for (t2 = localListeners.length, _i = 0; _i < t2; ++_i) { listener = localListeners[_i]; try { if (t1.contains$1(0, listener)) listener.call$1($status); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); rti = _this instanceof H.Closure ? H.closureFunctionType(_this) : null; t3 = U.ErrorDescription$("while notifying status listeners for " + H.createRuntimeType(rti == null ? H.instanceType(_this) : rti).toString$0(0)); t4 = $.FlutterError_onError; if (t4 != null) t4.call$1(new U.FlutterErrorDetails(exception, stack, "animation library", t3, null, false)); } } } }; R.Animatable.prototype = { chain$1: function($parent) { return new R._ChainedEvaluation($parent, this, H._instanceType(this)._eval$1("_ChainedEvaluation")); } }; R._AnimatedEvaluation.prototype = { get$value: function(_) { var t1 = this.parent; return this._evaluatable.transform$1(0, t1.get$value(t1)); }, toString$0: function(_) { var t1 = this.parent, t2 = this._evaluatable; return H.S(t1) + "\u27a9" + t2.toString$0(0) + "\u27a9" + H.S(t2.transform$1(0, t1.get$value(t1))); }, toStringDetails$0: function() { return this.super$Animation$toStringDetails() + " " + this._evaluatable.toString$0(0); }, get$parent: function(receiver) { return this.parent; } }; R._ChainedEvaluation.prototype = { transform$1: function(_, t) { return this._evaluatable.transform$1(0, this._tween$_parent.transform$1(0, t)); }, toString$0: function(_) { return H.S(this._tween$_parent) + "\u27a9" + this._evaluatable.toString$0(0); } }; R.Tween.prototype = { lerp$1: function(t) { var t1 = this.begin; return H._instanceType(this)._eval$1("Tween.T")._as(J.$add$ansx(t1, J.$mul$ns(J.$sub$n(this.end, t1), t))); }, transform$1: function(_, t) { if (t === 0) return this.begin; if (t === 1) return this.end; return this.lerp$1(t); }, toString$0: function(_) { return "Animatable(" + H.S(this.begin) + " \u2192 " + H.S(this.end) + ")"; }, set$begin: function(val) { return this.begin = val; }, set$end: function(receiver, val) { return this.end = val; } }; R.ReverseTween.prototype = { lerp$1: function(t) { return this.parent.lerp$1(1 - t); } }; R.ColorTween.prototype = { lerp$1: function(t) { return P.Color_lerp(this.begin, this.end, t); } }; R.SizeTween.prototype = { lerp$1: function(t) { return P.Size_lerp(this.begin, this.end, t); } }; R.RectTween.prototype = { lerp$1: function(t) { return P.Rect_lerp(this.begin, this.end, t); } }; R.IntTween.prototype = { lerp$1: function(t) { var t2, t1 = this.begin; t1.toString; t2 = this.end; t2.toString; return C.JSNumber_methods.round$0(t1 + (t2 - t1) * t); } }; R.CurveTween.prototype = { transform$1: function(_, t) { if (t === 0 || t === 1) return t; return this.curve.transform$1(0, t); }, toString$0: function(_) { return "CurveTween(curve: " + H.S(this.curve) + ")"; } }; R.__AnimatedEvaluation_Animation_AnimationWithParentMixin.prototype = {}; Y.TweenSequence.prototype = { TweenSequence$1: function(items, $T) { var t2, totalWeight, _i, start, i, t3, end, t1 = this._tween_sequence$_items; C.JSArray_methods.addAll$1(t1, items); for (t2 = t1.length, totalWeight = 0, _i = 0; _i < t2; ++_i) totalWeight += t1[_i].weight; for (t2 = this._intervals, start = 0, i = 0; t3 = t1.length, i < t3; ++i, start = end) { end = i === t3 - 1 ? 1 : start + t1[i].weight / totalWeight; t2.push(new Y._Interval(start, end)); } }, _evaluateAt$2: function(t, index) { var element = this._tween_sequence$_items[index], tInterval = this._intervals[index].value$1(0, t), t1 = element.tween; return t1._evaluatable.transform$1(0, t1._tween$_parent.transform$1(0, tInterval)); }, transform$1: function(_, t) { var t1, t2, t3, index, t4, t5, _this = this; if (t === 1) return _this._evaluateAt$2(t, _this._tween_sequence$_items.length - 1); for (t1 = _this._tween_sequence$_items, t2 = t1.length, t3 = _this._intervals, index = 0; index < t2; ++index) { t4 = t3[index]; t5 = t4.start; if (t >= t5 && t < t4.end) { t2 = t1[index].tween; return t2._evaluatable.transform$1(0, t2._tween$_parent.transform$1(0, (t - t5) / (t4.end - t5))); } } throw H.wrapException(P.StateError$("TweenSequence.evaluate() could not find an interval for " + H.S(t))); }, toString$0: function(_) { return "TweenSequence(" + this._tween_sequence$_items.length + " items)"; } }; Y.TweenSequenceItem.prototype = {}; Y._Interval.prototype = { value$1: function(_, t) { var t1 = this.start; return (t - t1) / (this.end - t1); }, toString$0: function(_) { return "<" + H.S(this.start) + ", " + H.S(this.end) + ">"; } }; F.CupertinoActivityIndicator.prototype = { createState$0: function() { return new F._CupertinoActivityIndicatorState(null, C._StateLifecycle_0); } }; F._CupertinoActivityIndicatorState.prototype = { get$_activity_indicator$_controller: function() { var t1 = this.___CupertinoActivityIndicatorState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___CupertinoActivityIndicatorState__controller = G.AnimationController$(null, C.Duration_1000000, 0, null, 1, null, _this); _this._widget.toString; _this.get$_activity_indicator$_controller().repeat$0(0); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; }, dispose$0: function(_) { this.get$_activity_indicator$_controller().dispose$0(0); this.super$__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t1, t2; this._widget.toString; t1 = this.get$_activity_indicator$_controller(); t2 = C.CupertinoDynamicColor_YNl.resolveFrom$1(context); this._widget.toString; return T.SizedBox$(T.CustomPaint$(null, null, null, new F._CupertinoActivityIndicatorPainter(t1, t2, 10, 1, new P.RRect(-1, -3.3333333333333335, 1, -10, 1, 1, 1, 1, 1, 1, 1, 1, true), t1), C.Size_0_0), 20, 20); } }; F._CupertinoActivityIndicatorPainter.prototype = { paint$2: function(canvas, size) { var activeTick, t2, t3, t4, i, t, t5, _this = this, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); canvas.save$0(0); canvas.translate$2(0, size._dx / 2, size._dy / 2); activeTick = C.JSNumber_methods.floor$0(8 * _this.position.get$_animation_controller$_value()); for (t1 = _this.progress, t2 = 8 * t1, t3 = _this.tickFundamentalRRect, t1 = t1 < 1, t4 = _this.activeColor, i = 0; i < t2; ++i) { t = C.JSInt_methods.$mod(i - activeTick, 8); t5 = t1 ? 147 : C.List_2Vk1[t]; paint.set$color(0, P.Color$fromARGB(t5, t4.get$value(t4) >>> 16 & 255, t4.get$value(t4) >>> 8 & 255, t4.get$value(t4) & 255)); canvas.drawRRect$2(0, t3, paint); canvas.rotate$1(0, 0.7853981633974483); } canvas.restore$0(0); }, shouldRepaint$1: function(oldPainter) { return oldPainter.position != this.position || !oldPainter.activeColor.$eq(0, this.activeColor) || oldPainter.progress !== this.progress; } }; F.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; E.CupertinoDynamicColor.prototype = { get$value: function(_) { return this._effectiveColor.value; }, get$_isPlatformBrightnessDependent: function() { var _this = this; return !_this.color.$eq(0, _this.darkColor) || !_this.elevatedColor.$eq(0, _this.darkElevatedColor) || !_this.highContrastColor.$eq(0, _this.darkHighContrastColor) || !_this.highContrastElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$_isHighContrastDependent: function() { var _this = this; return !_this.color.$eq(0, _this.highContrastColor) || !_this.darkColor.$eq(0, _this.darkHighContrastColor) || !_this.elevatedColor.$eq(0, _this.highContrastElevatedColor) || !_this.darkElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$_isInterfaceElevationDependent: function() { var _this = this; return !_this.color.$eq(0, _this.elevatedColor) || !_this.darkColor.$eq(0, _this.darkElevatedColor) || !_this.highContrastColor.$eq(0, _this.highContrastElevatedColor) || !_this.darkHighContrastColor.$eq(0, _this.darkHighContrastElevatedColor); }, resolveFrom$1: function(context) { var inheritedTheme, t1, brightness, isHighContrastEnabled, resolved, _this = this, _null = null, _s80_ = string$.x60null_c; if (_this.get$_isPlatformBrightnessDependent()) { inheritedTheme = context.dependOnInheritedWidgetOfExactType$1$0(type$._InheritedCupertinoTheme); t1 = inheritedTheme == null ? _null : inheritedTheme.theme.data.get$brightness(); if (t1 == null) { t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.platformBrightness; brightness = t1; } else brightness = t1; if (brightness == null) brightness = C.Brightness_1; } else brightness = C.Brightness_1; if (_this.get$_isHighContrastDependent()) { t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.highContrast; isHighContrastEnabled = t1 === true; } else isHighContrastEnabled = false; if (_this.get$_isInterfaceElevationDependent()) K.CupertinoUserInterfaceLevel_maybeOf(context); switch (brightness) { case C.Brightness_1: switch (C.CupertinoUserInterfaceLevelData_0) { case C.CupertinoUserInterfaceLevelData_0: resolved = isHighContrastEnabled ? _this.highContrastColor : _this.color; break; case C.CupertinoUserInterfaceLevelData_1: resolved = isHighContrastEnabled ? _this.highContrastElevatedColor : _this.elevatedColor; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; case C.Brightness_0: switch (C.CupertinoUserInterfaceLevelData_0) { case C.CupertinoUserInterfaceLevelData_0: resolved = isHighContrastEnabled ? _this.darkHighContrastColor : _this.darkColor; break; case C.CupertinoUserInterfaceLevelData_1: resolved = isHighContrastEnabled ? _this.darkHighContrastElevatedColor : _this.darkElevatedColor; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return new E.CupertinoDynamicColor(resolved, _this._colors$_debugLabel, _null, _this.color, _this.darkColor, _this.highContrastColor, _this.darkHighContrastColor, _this.elevatedColor, _this.darkElevatedColor, _this.highContrastElevatedColor, _this.darkHighContrastElevatedColor, 0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof E.CupertinoDynamicColor && other._effectiveColor.value === _this._effectiveColor.value && other.color.$eq(0, _this.color) && other.darkColor.$eq(0, _this.darkColor) && other.highContrastColor.$eq(0, _this.highContrastColor) && other.darkHighContrastColor.$eq(0, _this.darkHighContrastColor) && other.elevatedColor.$eq(0, _this.elevatedColor) && other.darkElevatedColor.$eq(0, _this.darkElevatedColor) && other.highContrastElevatedColor.$eq(0, _this.highContrastElevatedColor) && other.darkHighContrastElevatedColor.$eq(0, _this.darkHighContrastElevatedColor); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this._effectiveColor.value, _this.color, _this.darkColor, _this.highContrastColor, _this.elevatedColor, _this.darkElevatedColor, _this.darkHighContrastColor, _this.darkHighContrastElevatedColor, _this.highContrastElevatedColor, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this, t1 = new E.CupertinoDynamicColor_toString_toString(_this), t2 = H.setRuntimeTypeInfo([t1.call$2("color", _this.color)], type$.JSArray_String); if (_this.get$_isPlatformBrightnessDependent()) t2.push(t1.call$2("darkColor", _this.darkColor)); if (_this.get$_isHighContrastDependent()) t2.push(t1.call$2("highContrastColor", _this.highContrastColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isHighContrastDependent()) t2.push(t1.call$2("darkHighContrastColor", _this.darkHighContrastColor)); if (_this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("elevatedColor", _this.elevatedColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("darkElevatedColor", _this.darkElevatedColor)); if (_this.get$_isHighContrastDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("highContrastElevatedColor", _this.highContrastElevatedColor)); if (_this.get$_isPlatformBrightnessDependent() && _this.get$_isHighContrastDependent() && _this.get$_isInterfaceElevationDependent()) t2.push(t1.call$2("darkHighContrastElevatedColor", _this.darkHighContrastElevatedColor)); t1 = _this._colors$_debugLabel; t1 = (t1 == null ? "CupertinoDynamicColor" : t1) + "(" + C.JSArray_methods.join$1(t2, ", "); return t1 + ", resolved by: UNRESOLVED)"; } }; E.CupertinoDynamicColor_toString_toString.prototype = { call$2: function($name, color) { var marker = color.$eq(0, this.$this._effectiveColor) ? "*" : ""; return marker + $name + " = " + color.toString$0(0) + marker; }, $signature: 1191 }; E._CupertinoDynamicColor_Color_Diagnosticable.prototype = {}; L._CupertinoDesktopTextSelectionControls.prototype = { getHandleSize$1: function(textLineHeight) { return C.Size_0_0; }, buildHandle$3: function(context, type, textLineHeight) { return C.SizedBox_0_0_null_null; }, getHandleAnchor$2: function(type, textLineHeight) { return C.Offset_0_0; } }; T.CupertinoIconThemeData.prototype = { resolve$1: function(context) { var t1 = this.color, resolvedColor = E.CupertinoDynamicColor_maybeResolve(t1, context); return J.$eq$(resolvedColor, t1) ? this : this.copyWith$1$color(resolvedColor); }, copyWith$3$color$opacity$size: function(color, opacity, size) { var _this = this, t1 = color == null ? _this.color : color, t2 = opacity == null ? _this.get$opacity(_this) : opacity; return new T.CupertinoIconThemeData(t1, t2, size == null ? _this.size : size); }, copyWith$1$color: function(color) { return this.copyWith$3$color$opacity$size(color, null, null); } }; T._CupertinoIconThemeData_IconThemeData_Diagnosticable.prototype = {}; K.CupertinoUserInterfaceLevelData.prototype = { toString$0: function(_) { return this._interface_level$_name; } }; L._CupertinoLocalizationsDelegate.prototype = { isSupported$1: function(locale) { return locale.get$languageCode(locale) === "en"; }, load$1: function(_, locale) { return new O.SynchronousFuture(C.C_DefaultCupertinoLocalizations, type$.SynchronousFuture_CupertinoLocalizations); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "DefaultCupertinoLocalizations.delegate(en_US)"; } }; L.DefaultCupertinoLocalizations.prototype = {$isCupertinoLocalizations: 1}; D.CupertinoRouteTransitionMixin_buildPageTransitions_closure.prototype = { call$0: function() { return D.CupertinoRouteTransitionMixin__isPopGestureEnabled(this.route); }, $signature: 188 }; D.CupertinoRouteTransitionMixin_buildPageTransitions_closure0.prototype = { call$0: function() { var t1 = this.route, t2 = t1._navigator$_navigator; t2.toString; t1 = t1._routes$_controller; t1.toString; t2.didStartUserGesture$0(); return new D._CupertinoBackGestureController(t1, t2, this.T._eval$1("_CupertinoBackGestureController<0>")); }, $signature: function() { return this.T._eval$1("_CupertinoBackGestureController<0>()"); } }; D.CupertinoPageTransition.prototype = { build$1: function(_, context) { var textDirection, _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; t1 = _this._primaryShadowAnimation; return K.SlideTransition$(K.SlideTransition$(new K.DecoratedBoxTransition(t1, _this.child, t1, null), _this._primaryPositionAnimation, textDirection, true), _this._secondaryPositionAnimation, textDirection, false); } }; D._CupertinoBackGestureDetector.prototype = { createState$0: function() { return new D._CupertinoBackGestureDetectorState(C._StateLifecycle_0, this.$ti._eval$1("_CupertinoBackGestureDetectorState<1>")); }, enabledCallback$0: function() { return this.enabledCallback.call$0(); }, onStartPopGesture$0: function() { return this.onStartPopGesture.call$0(); } }; D._CupertinoBackGestureDetectorState.prototype = { get$_route$_recognizer: function() { var t1 = this.___CupertinoBackGestureDetectorState__recognizer; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_recognizer")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = O.HorizontalDragGestureRecognizer$(_this, null); t1.onStart = _this.get$_route$_handleDragStart(); t1.onUpdate = _this.get$_route$_handleDragUpdate(); t1.onEnd = _this.get$_route$_handleDragEnd(); t1.onCancel = _this.get$_route$_handleDragCancel(); _this.___CupertinoBackGestureDetectorState__recognizer = t1; }, dispose$0: function(_) { var t1 = this.get$_route$_recognizer(); t1._monodrag$_velocityTrackers.clear$0(0); t1.super$OneSequenceGestureRecognizer$dispose(0); this.super$State$dispose(0); }, _route$_handleDragStart$1: function(details) { this._backGestureController = this._widget.onStartPopGesture$0(); }, _route$_handleDragUpdate$1: function(details) { var t2, t3, t1 = this._backGestureController; t1.toString; t2 = details.primaryDelta; t2.toString; t3 = this._framework$_element; t3 = this._convertToLogical$1(t2 / t3.get$size(t3)._dx); t1 = t1.controller; t1.set$value(0, t1.get$_animation_controller$_value() - t3); }, _route$_handleDragEnd$1: function(details) { var t2, t3, _this = this, t1 = _this._backGestureController; t1.toString; t2 = details.velocity; t3 = _this._framework$_element; t1.dragEnd$1(_this._convertToLogical$1(t2.pixelsPerSecond._dx / t3.get$size(t3)._dx)); _this._backGestureController = null; }, _route$_handleDragCancel$0: function() { var t1 = this._backGestureController; if (t1 != null) t1.dragEnd$1(0); this._backGestureController = null; }, _route$_handlePointerDown$1: function($event) { if (this._widget.enabledCallback$0()) this.get$_route$_recognizer().addPointer$1($event); }, _convertToLogical$1: function(value) { var t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: return -value; case C.TextDirection_1: return value; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t2, dragAreaWidth, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = type$.MediaQuery; dragAreaWidth = Math.max(H.checkNum(t1.textDirection === C.TextDirection_1 ? context.dependOnInheritedWidgetOfExactType$1$0(t2).data.padding.left : context.dependOnInheritedWidgetOfExactType$1$0(t2).data.padding.right), 20); return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([this._widget.child, new T.PositionedDirectional(0, 0, 0, dragAreaWidth, T.Listener$(C.HitTestBehavior_2, _null, _null, this.get$_route$_handlePointerDown(), _null, _null, _null), _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_2, _null, _null); } }; D._CupertinoBackGestureController.prototype = { dragEnd$1: function(velocity) { var t2, t3, _this = this, t1 = {}; if (Math.abs(velocity) >= 1 ? velocity <= 0 : _this.controller.get$_animation_controller$_value() > 0.5) { t2 = _this.controller; t3 = P.lerpDouble(800, 0, t2.get$_animation_controller$_value()); t3.toString; t3 = P.Duration$(0, 0, 0, Math.min(C.JSNumber_methods.floor$0(t3), 300), 0, 0); t2._direction = C._AnimationDirection_0; t2._animateToInternal$3$curve$duration(1, C.Cubic_2Vk, t3); } else { _this.navigator.pop$0(0); t2 = _this.controller; t3 = t2._ticker; if (t3 != null && t3._ticker$_future != null) { t3 = P.lerpDouble(0, 800, t2.get$_animation_controller$_value()); t3.toString; t3 = P.Duration$(0, 0, 0, C.JSNumber_methods.floor$0(t3), 0, 0); t2._direction = C._AnimationDirection_1; t2._animateToInternal$3$curve$duration(0, C.Cubic_2Vk, t3); } } t3 = t2._ticker; if (t3 != null && t3._ticker$_future != null) { t1._animationStatusCallback = $; t3 = new D._CupertinoBackGestureController_dragEnd__animationStatusCallback_get(t1); new D._CupertinoBackGestureController_dragEnd__animationStatusCallback_set(t1).call$1(new D._CupertinoBackGestureController_dragEnd_closure(_this, t3)); t2.addStatusListener$1(t3.call$0()); } else _this.navigator.didStopUserGesture$0(); } }; D._CupertinoBackGestureController_dragEnd__animationStatusCallback_set.prototype = { call$1: function(t1) { return this._box_0._animationStatusCallback = t1; }, $signature: 1192 }; D._CupertinoBackGestureController_dragEnd__animationStatusCallback_get.prototype = { call$0: function() { var t1 = this._box_0._animationStatusCallback; return t1 === $ ? H.throwExpression(H.LateError$localNI("animationStatusCallback")) : t1; }, $signature: 1193 }; D._CupertinoBackGestureController_dragEnd_closure.prototype = { call$1: function($status) { var t1 = this.$this; t1.navigator.didStopUserGesture$0(); t1.controller.removeStatusListener$1(this._animationStatusCallback_get.call$0()); }, $signature: 35 }; D._CupertinoEdgeShadowDecoration.prototype = { lerpFrom$2: function(a, t) { var t1; if (a instanceof D._CupertinoEdgeShadowDecoration) { t1 = D._CupertinoEdgeShadowDecoration_lerp(a, this, t); t1.toString; return t1; } t1 = D._CupertinoEdgeShadowDecoration_lerp(null, this, t); t1.toString; return t1; }, lerpTo$2: function(b, t) { var t1; if (b instanceof D._CupertinoEdgeShadowDecoration) { t1 = D._CupertinoEdgeShadowDecoration_lerp(this, b, t); t1.toString; return t1; } t1 = D._CupertinoEdgeShadowDecoration_lerp(this, null, t); t1.toString; return t1; }, createBoxPainter$1: function(onChanged) { return new D._CupertinoEdgeShadowPainter(this, onChanged); }, $eq: function(_, other) { var t1, t2; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; if (other instanceof D._CupertinoEdgeShadowDecoration) { t1 = other._colors; t2 = this._colors; t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; return t1; }, get$hashCode: function(_) { return J.get$hashCode$(this._colors); } }; D._CupertinoEdgeShadowDecoration_lerp_closure.prototype = { call$1: function(color) { var t1 = P.Color_lerp(null, color, this.t); t1.toString; return t1; }, $signature: 458 }; D._CupertinoEdgeShadowDecoration_lerp_closure0.prototype = { call$1: function(color) { var t1 = P.Color_lerp(null, color, 1 - this.t); t1.toString; return t1; }, $signature: 458 }; D._CupertinoEdgeShadowPainter.prototype = { paint$3: function(canvas, offset, configuration) { var t1, t2, shadowWidth, shadowHeight, bandWidth, textDirection, start, shadowDirection, bandColorIndex, dx, paint, colors = this._route$_decoration._colors; if (colors == null) return; t1 = configuration.size; t2 = t1._dx; shadowWidth = 0.05 * t2; shadowHeight = t1._dy; bandWidth = shadowWidth / (colors.length - 1); textDirection = configuration.textDirection; textDirection.toString; switch (textDirection) { case C.TextDirection_0: start = offset._dx + t2; shadowDirection = 1; break; case C.TextDirection_1: start = offset._dx; shadowDirection = -1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } for (t1 = offset._dy, bandColorIndex = 0, dx = 0; dx < shadowWidth; ++dx) { if (C.JSInt_methods.$tdiv(dx, bandWidth) !== bandColorIndex) ++bandColorIndex; t2 = H._detectRenderer(); paint = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2 = P.Color_lerp(colors[bandColorIndex], colors[bandColorIndex + 1], C.JSInt_methods.$mod(dx, bandWidth) / bandWidth); t2.toString; paint.set$color(0, t2); t2 = start + shadowDirection * dx - 1; canvas.drawRect$2(0, new P.Rect(t2, t1, t2 + 1, t1 + shadowHeight), paint); } } }; E.CupertinoScrollbar.prototype = { createState$0: function() { return new E._CupertinoScrollbarState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, C._StateLifecycle_0); } }; E._CupertinoScrollbarState.prototype = { get$_thicknessAnimationController: function() { var t1 = this.___CupertinoScrollbarState__thicknessAnimationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_thicknessAnimationController")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$RawScrollbarState$initState(); _this.___CupertinoScrollbarState__thicknessAnimationController = G.AnimationController$(null, C.Duration_100000, 0, null, 1, null, _this); t1 = _this.get$_thicknessAnimationController(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(new E._CupertinoScrollbarState_initState_closure(_this)); }, updateScrollbarPainter$0: function() { var t3, t4, t5, _this = this, t1 = _this.get$scrollbarPainter(), t2 = _this._framework$_element; t2.toString; t2 = C.CupertinoDynamicColor_zPV.resolveFrom$1(t2); t1.set$color(0, t2); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t2 = _this._widget.thickness; t2.toString; t3 = _this.get$_thicknessAnimationController().get$_animation_controller$_value(); t4 = _this._widget; t5 = t4.thicknessWhileDragging; t4 = t4.thickness; t4.toString; t1.set$thickness(t2 + t3 * (t5 - t4)); t1.set$mainAxisMargin(3); t1.set$crossAxisMargin(3); t4 = _this._widget; t4 = P.Radius_lerp(t4.radius, t4.radiusWhileDragging, _this.get$_thicknessAnimationController().get$_animation_controller$_value()); t4.toString; t1.set$radius(t4); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); t1.set$minLength(0, 36); t1.set$minOverscrollLength(8); }, handleThumbPressStart$1: function(localPosition) { var t1, _this = this; _this.super$RawScrollbarState$handleThumbPressStart(localPosition); t1 = _this.getScrollbarDirection$0(); t1.toString; switch (t1) { case C.Axis_1: _this._pressStartAxisPosition = localPosition._dy; break; case C.Axis_0: _this._pressStartAxisPosition = localPosition._dx; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, handleThumbPress$0: function() { if (this.getScrollbarDirection$0() == null) return; this.super$RawScrollbarState$handleThumbPress(); this.get$_thicknessAnimationController().forward$0(0).then$1$1(0, new E._CupertinoScrollbarState_handleThumbPress_closure(), type$.void); }, handleThumbPressEnd$2: function(localPosition, velocity) { var _this = this, direction = _this.getScrollbarDirection$0(); if (direction == null) return; _this.get$_thicknessAnimationController().reverse$0(0); _this.super$RawScrollbarState$handleThumbPressEnd(localPosition, velocity); switch (direction) { case C.Axis_1: if (Math.abs(velocity.pixelsPerSecond._dy) < 10 && Math.abs(localPosition._dy - _this._pressStartAxisPosition) > 0) X.HapticFeedback_mediumImpact(); break; case C.Axis_0: if (Math.abs(velocity.pixelsPerSecond._dx) < 10 && Math.abs(localPosition._dx - _this._pressStartAxisPosition) > 0) X.HapticFeedback_mediumImpact(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, dispose$0: function(_) { this.get$_thicknessAnimationController().dispose$0(0); this.super$RawScrollbarState$dispose(0); } }; E._CupertinoScrollbarState_initState_closure.prototype = { call$0: function() { this.$this.updateScrollbarPainter$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; E._CupertinoScrollbarState_handleThumbPress_closure.prototype = { call$1: function(_) { return X.HapticFeedback_mediumImpact(); }, $signature: 636 }; N.CupertinoSwitch.prototype = { createState$0: function() { return new N._CupertinoSwitchState(null, C._StateLifecycle_0); }, get$value: function(receiver) { return this.value; } }; N._CupertinoSwitchState.prototype = { get$_switch0$_tap: function() { var t1 = this.___CupertinoSwitchState__tap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_tap")) : t1; }, get$_switch0$_drag: function() { var t1 = this.___CupertinoSwitchState__drag; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_drag")) : t1; }, get$_positionController: function() { var t1 = this.___CupertinoSwitchState__positionController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_positionController")) : t1; }, get$position: function(_) { var t1 = this.___CupertinoSwitchState_position; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("position")) : t1; }, get$_reactionController: function() { var t1 = this.___CupertinoSwitchState__reactionController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionController")) : t1; }, get$_reaction: function() { var t1 = this.___CupertinoSwitchState__reaction; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reaction")) : t1; }, initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = N.TapGestureRecognizer$(_null); t1.onTapDown = _this.get$_switch0$_handleTapDown(); t1.onTapUp = _this.get$_switch0$_handleTapUp(); t1.onTap = _this.get$_switch0$_handleTap(); t1.onTapCancel = _this.get$_switch0$_handleTapCancel(); _this.___CupertinoSwitchState__tap = t1; t1 = O.HorizontalDragGestureRecognizer$(_null, _null); t1.onStart = _this.get$_switch0$_handleDragStart(); t1.onUpdate = _this.get$_switch0$_handleDragUpdate(); t1.onEnd = _this.get$_switch0$_handleDragEnd(); t2 = _this._widget; t1.dragStartBehavior = t2.dragStartBehavior; _this.___CupertinoSwitchState__drag = t1; _this.___CupertinoSwitchState__positionController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, t2.value ? 1 : 0, _this); _this.___CupertinoSwitchState_position = S.CurvedAnimation$(C.C__Linear, _this.get$_positionController(), _null); _this.___CupertinoSwitchState__reactionController = G.AnimationController$(_null, C.Duration_300000, 0, _null, 1, _null, _this); _this.___CupertinoSwitchState__reaction = S.CurvedAnimation$(C.Cubic_JUR, _this.get$_reactionController(), _null); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this.get$_switch0$_drag(); t2 = _this._widget; t1.dragStartBehavior = t2.dragStartBehavior; t1 = _this.needsPositionAnimation; if (t1 || oldWidget.value != t2.value) _this._resumePositionAnimation$1$isLinear(t1); }, _resumePositionAnimation$1$isLinear: function(isLinear) { var t1, _this = this; _this.needsPositionAnimation = false; t1 = _this.get$position(_this); t1.curve = isLinear ? C.C__Linear : C.Cubic_JUR; t1.reverseCurve = isLinear ? C.C__Linear : new Z.FlippedCurve(C.Cubic_JUR); if (_this._widget.value) _this.get$_positionController().forward$0(0); else _this.get$_positionController().reverse$0(0); }, _resumePositionAnimation$0: function() { return this._resumePositionAnimation$1$isLinear(true); }, _switch0$_handleTapDown$1: function(details) { if (this._widget.onChanged != null) this.needsPositionAnimation = false; this.get$_reactionController().forward$0(0); }, _switch0$_handleTap$0: function() { var t1 = this._widget, t2 = t1.onChanged; if (t2 != null) { t2.call$1(!t1.value); this._emitVibration$0(); } }, _switch0$_handleTapUp$1: function(details) { if (this._widget.onChanged != null) { this.needsPositionAnimation = false; this.get$_reactionController().reverse$0(0); } }, _switch0$_handleTapCancel$0: function() { if (this._widget.onChanged != null) this.get$_reactionController().reverse$0(0); }, _switch0$_handleDragStart$1: function(details) { var _this = this; if (_this._widget.onChanged != null) { _this.needsPositionAnimation = false; _this.get$_reactionController().forward$0(0); _this._emitVibration$0(); } }, _switch0$_handleDragUpdate$1: function(details) { var t1, delta, _this = this; if (_this._widget.onChanged != null) { t1 = _this.get$position(_this); t1.reverseCurve = t1.curve = C.C__Linear; t1 = details.primaryDelta; t1.toString; delta = t1 / 20; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: t1 = _this.get$_positionController(); t1.set$value(0, t1.get$_animation_controller$_value() - delta); break; case C.TextDirection_1: t1 = _this.get$_positionController(); t1.set$value(0, t1.get$_animation_controller$_value() + delta); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }, _switch0$_handleDragEnd$1: function(details) { var t1, t2, t3, _this = this; _this.setState$1(new N._CupertinoSwitchState__handleDragEnd_closure(_this)); t1 = _this.get$position(_this); t1 = t1.get$value(t1); t2 = _this._widget; t3 = t2.value; if (t1 >= 0.5 !== t3) t2.onChanged.call$1(!t3); _this.get$_reactionController().reverse$0(0); }, _emitVibration$0: function() { switch (U.defaultTargetPlatform()) { case C.TargetPlatform_2: X.HapticFeedback_lightImpact(); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t1, t2, t3, t4, t5, t6, _this = this; if (_this.needsPositionAnimation) _this._resumePositionAnimation$0(); t1 = _this._widget; t2 = t1.onChanged == null ? 0.5 : 1; t3 = t1.value; t1 = t1.activeColor; if (t1 == null) t1 = C.CupertinoDynamicColor_gg4; if (t1 instanceof E.CupertinoDynamicColor) t1 = t1.resolveFrom$1(context); _this._widget.toString; t4 = C.CupertinoDynamicColor_MdH.resolveFrom$1(context); t5 = _this._widget.onChanged; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t6.toString; return T.Opacity$(false, new N._CupertinoSwitchRenderObjectWidget(t3, t1, t4, t5, _this, t6.textDirection, null), t2); }, dispose$0: function(_) { var _this = this, t1 = _this.get$_switch0$_tap(); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); t1 = _this.get$_switch0$_drag(); t1._monodrag$_velocityTrackers.clear$0(0); t1.super$OneSequenceGestureRecognizer$dispose(0); _this.get$_positionController().dispose$0(0); _this.get$_reactionController().dispose$0(0); _this.super$__CupertinoSwitchState_State_TickerProviderStateMixin$dispose(0); } }; N._CupertinoSwitchState__handleDragEnd_closure.prototype = { call$0: function() { this.$this.needsPositionAnimation = true; }, $signature: 0 }; N._CupertinoSwitchRenderObjectWidget.prototype = { createRenderObject$1: function(context) { var t3, _this = this, t1 = _this.state, t2 = new N._RenderCupertinoSwitch(t1, _this.value, _this.activeColor, _this.trackColor, _this.onChanged, _this.textDirection, C.BoxConstraints_59_59_39_39, null); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); t3 = t2.get$markNeedsPaint(); t1.get$position(t1).parent.addListener$1(0, t3); t1.get$_reaction().addListener$1(0, t3); return t2; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$value(0, _this.value); renderObject.set$activeColor(_this.activeColor); renderObject.set$trackColor(_this.trackColor); renderObject.set$onChanged(_this.onChanged); renderObject.set$textDirection(0, _this.textDirection); }, get$value: function(receiver) { return this.value; } }; N._RenderCupertinoSwitch.prototype = { get$value: function(_) { return this._switch0$_value; }, set$value: function(_, value) { if (value == this._switch0$_value) return; this._switch0$_value = value; this.markNeedsSemanticsUpdate$0(); }, set$activeColor: function(value) { if (value.$eq(0, this._switch0$_activeColor)) return; this._switch0$_activeColor = value; this.markNeedsPaint$0(); }, set$trackColor: function(value) { if (value.$eq(0, this._switch0$_trackColor)) return; this._switch0$_trackColor = value; this.markNeedsPaint$0(); }, set$onChanged: function(value) { var t1, _this = this; if (J.$eq$(value, _this._onChanged)) return; t1 = _this._onChanged; _this._onChanged = value; if (t1 != null !== (value != null)) { _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); } }, set$textDirection: function(_, value) { if (this._switch0$_textDirection == value) return; this._switch0$_textDirection = value; this.markNeedsPaint$0(); }, hitTestSelf$1: function(position) { return true; }, handleEvent$2: function($event, entry) { var t1; if (type$.PointerDownEvent._is($event) && this._onChanged != null) { t1 = this._switch0$_state; t1.get$_switch0$_drag().addPointer$1($event); t1.get$_switch0$_tap().addPointer$1($event); } }, describeSemanticsConfiguration$1: function(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); if (_this._onChanged != null) config.set$onTap(_this._switch0$_state.get$_switch0$_handleTap()); t1 = _this._onChanged; config._setFlag$2(C.SemanticsFlag_64, true); config._setFlag$2(C.SemanticsFlag_128, t1 != null); t1 = _this._switch0$_value; config._setFlag$2(C.SemanticsFlag_65536, true); t1.toString; config._setFlag$2(C.SemanticsFlag_131072, t1); }, paint$2: function(context, offset) { var currentReactionValue, visualPosition, paint, t3, trackRRect, currentThumbExtension, t4, thumbCenterY, thumbBounds, _this = this, canvas = context.get$canvas(context), t1 = _this._switch0$_state, t2 = t1.get$position(t1), currentValue = t2.get$value(t2); t1 = t1.get$_reaction(); currentReactionValue = t1.get$value(t1); switch (_this._switch0$_textDirection) { case C.TextDirection_0: visualPosition = 1 - currentValue; break; case C.TextDirection_1: visualPosition = currentValue; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = P.Color_lerp(_this._switch0$_trackColor, _this._switch0$_activeColor, currentValue); t1.toString; paint.set$color(0, t1); t1 = _this._box$_size; t2 = offset._dx + (t1._dx - 51) / 2; t3 = offset._dy; t1 = t3 + (t1._dy - 31) / 2; trackRRect = P.RRect$fromRectAndRadius(new P.Rect(t2, t1, t2 + 51, t1 + 31), C.Radius_2Vk); canvas.drawRRect$2(0, trackRRect, paint); currentThumbExtension = 7 * currentReactionValue; t1 = t2 + 15.5; t2 += 35.5; t4 = P.lerpDouble(t1 - 14, t2 - 14 - currentThumbExtension, visualPosition); t4.toString; t2 = P.lerpDouble(t1 + 14 + currentThumbExtension, t2 + 14, visualPosition); t2.toString; thumbCenterY = t3 + _this._box$_size._dy / 2; thumbBounds = new P.Rect(t4, thumbCenterY - 14, t2, thumbCenterY + 14); _this._clipRRectLayer = context.pushClipRRect$6$oldLayer(_this.get$_needsCompositing(), C.Offset_0_0, thumbBounds, trackRRect, new N._RenderCupertinoSwitch_paint_closure(thumbBounds), _this._clipRRectLayer); } }; N._RenderCupertinoSwitch_paint_closure.prototype = { call$2: function(innerContext, offset) { C.C_CupertinoThumbPainter.paint$2(innerContext.get$canvas(innerContext), this.thumbBounds); }, $signature: 85 }; N.__CupertinoSwitchState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; F._TextSelectionHandlePainter0.prototype = { paint$2: function(canvas, size) { var circle, line, path, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, this.color); circle = P.Rect$fromCircle(C.Offset_6_6, 6); line = P.Rect$fromPoints(C.Offset_6pl, new P.Offset(7, size._dy)); path = P.Path_Path(); path.addOval$1(0, circle); path.addRect$1(0, line); canvas.drawPath$2(0, path, paint); }, shouldRepaint$1: function(oldPainter) { return !J.$eq$(this.color, oldPainter.color); } }; F.CupertinoTextSelectionControls.prototype = { getHandleSize$1: function(textLineHeight) { return new P.Size(12, textLineHeight + 12 - 1.5); }, buildHandle$3: function(context, type, textLineHeight) { var t2, _null = null, t1 = textLineHeight + 12 - 1.5, handle = T.SizedBox$fromSize(T.CustomPaint$(_null, _null, _null, new F._TextSelectionHandlePainter0(K.CupertinoTheme_of(context).get$primaryColor(), _null), C.Size_0_0), new P.Size(12, t1)); switch (type) { case C.TextSelectionHandleType_0: return handle; case C.TextSelectionHandleType_1: t2 = new E.Matrix4(new Float64Array(16)); t2.setIdentity$0(); t2.translate$2(0, 6, t1 / 2); t2.rotateZ$1(3.141592653589793); t2.translate$2(0, -6, -t1 / 2); return T.Transform$(_null, handle, t2, true); case C.TextSelectionHandleType_2: return C.SizedBox_null_null_null_null; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getHandleAnchor$2: function(type, textLineHeight) { var t1 = textLineHeight + 12 - 1.5; switch (type) { case C.TextSelectionHandleType_0: return new P.Offset(6, t1); case C.TextSelectionHandleType_1: return new P.Offset(6, t1 - 12 + 1.5); case C.TextSelectionHandleType_2: return new P.Offset(6, textLineHeight + (t1 - textLineHeight) / 2); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; R.CupertinoTextThemeData.prototype = { resolveFrom$1: function(context) { var _this = this, t1 = _this._text_theme$_defaults, resolvedLabelColor = t1.labelColor, resolvedLabelColor0 = resolvedLabelColor instanceof E.CupertinoDynamicColor ? resolvedLabelColor.resolveFrom$1(context) : resolvedLabelColor, resolvedInactiveGray = t1.inactiveGrayColor; if (resolvedInactiveGray instanceof E.CupertinoDynamicColor) resolvedInactiveGray = resolvedInactiveGray.resolveFrom$1(context); t1 = resolvedLabelColor0.$eq(0, resolvedLabelColor) && resolvedInactiveGray.$eq(0, C.CupertinoDynamicColor_YIZ) ? t1 : new R._TextThemeDefaultsBuilder(resolvedLabelColor0, resolvedInactiveGray); return new R.CupertinoTextThemeData(t1, E.CupertinoDynamicColor_maybeResolve(_this._text_theme$_primaryColor, context), R._resolveTextStyle(_this._textStyle, context), R._resolveTextStyle(_this._actionTextStyle, context), R._resolveTextStyle(_this._tabLabelTextStyle, context), R._resolveTextStyle(_this._navTitleTextStyle, context), R._resolveTextStyle(_this._navLargeTitleTextStyle, context), R._resolveTextStyle(_this._navActionTextStyle, context), R._resolveTextStyle(_this._pickerTextStyle, context), R._resolveTextStyle(_this._dateTimePickerTextStyle, context)); } }; R._TextThemeDefaultsBuilder.prototype = {}; R._CupertinoTextThemeData_Object_Diagnosticable.prototype = {}; K.CupertinoTheme.prototype = { build$1: function(_, context) { var _null = null; return new K._InheritedCupertinoTheme(this, Y.IconTheme$(this.child, new T.CupertinoIconThemeData(this.data.get$primaryColor(), _null, _null), _null), _null); } }; K._InheritedCupertinoTheme.prototype = { updateShouldNotify$1: function(old) { return this.theme.data !== old.theme.data; } }; K.CupertinoThemeData.prototype = { get$primaryColor: function() { var t1 = this.primaryColor; return t1 == null ? this._defaults.primaryColor : t1; }, get$primaryContrastingColor: function() { var t1 = this.primaryContrastingColor; return t1 == null ? this._defaults.primaryContrastingColor : t1; }, get$textTheme: function() { var _null = null, t1 = this.textTheme; if (t1 == null) { t1 = this._defaults.textThemeDefaults; t1 = new K._DefaultCupertinoTextThemeData(t1.labelColor, t1.inactiveGray, C._TextThemeDefaultsBuilder_1yH, this.get$primaryColor(), _null, _null, _null, _null, _null, _null, _null, _null); } return t1; }, get$barBackgroundColor: function() { var t1 = this.barBackgroundColor; return t1 == null ? this._defaults.barBackgroundColor : t1; }, get$scaffoldBackgroundColor: function() { var t1 = this.scaffoldBackgroundColor; return t1 == null ? this._defaults.scaffoldBackgroundColor : t1; }, resolveFrom$1: function(context) { var _this = this, t1 = new K.CupertinoThemeData_resolveFrom_convertColor(context), t2 = _this.get$brightness(), t3 = t1.call$1(_this.primaryColor), t4 = t1.call$1(_this.primaryContrastingColor), t5 = _this.textTheme; t5 = t5 == null ? null : t5.resolveFrom$1(context); return K.CupertinoThemeData$_rawWithDefaults(t2, t3, t4, t5, t1.call$1(_this.barBackgroundColor), t1.call$1(_this.scaffoldBackgroundColor), _this._defaults.resolveFrom$2(context, _this.textTheme == null)); } }; K.CupertinoThemeData_resolveFrom_convertColor.prototype = { call$1: function(color) { return E.CupertinoDynamicColor_maybeResolve(color, this.context); }, $signature: 633 }; K.NoDefaultCupertinoThemeData.prototype = { resolveFrom$1: function(context) { var _this = this, t1 = new K.NoDefaultCupertinoThemeData_resolveFrom_convertColor(context), t2 = _this.get$brightness(), t3 = t1.call$1(_this.get$primaryColor()), t4 = t1.call$1(_this.get$primaryContrastingColor()), t5 = _this.get$textTheme(); t5 = t5 == null ? null : t5.resolveFrom$1(context); return new K.NoDefaultCupertinoThemeData(t2, t3, t4, t5, t1.call$1(_this.get$barBackgroundColor()), t1.call$1(_this.get$scaffoldBackgroundColor())); }, get$brightness: function() { return this.brightness; }, get$primaryColor: function() { return this.primaryColor; }, get$primaryContrastingColor: function() { return this.primaryContrastingColor; }, get$textTheme: function() { return this.textTheme; }, get$barBackgroundColor: function() { return this.barBackgroundColor; }, get$scaffoldBackgroundColor: function() { return this.scaffoldBackgroundColor; } }; K.NoDefaultCupertinoThemeData_resolveFrom_convertColor.prototype = { call$1: function(color) { return E.CupertinoDynamicColor_maybeResolve(color, this.context); }, $signature: 633 }; K._CupertinoThemeDefaults.prototype = { resolveFrom$2: function(context, resolveTextTheme) { var t5, t6, _this = this, t1 = new K._CupertinoThemeDefaults_resolveFrom_convertColor(context), t2 = t1.call$1(_this.primaryColor), t3 = t1.call$1(_this.primaryContrastingColor), t4 = t1.call$1(_this.barBackgroundColor); t1 = t1.call$1(_this.scaffoldBackgroundColor); t5 = _this.textThemeDefaults; if (resolveTextTheme) { t6 = t5.labelColor; if (t6 instanceof E.CupertinoDynamicColor) t6 = t6.resolveFrom$1(context); t5 = t5.inactiveGray; t5 = new K._CupertinoTextThemeDefaults(t6, t5 instanceof E.CupertinoDynamicColor ? t5.resolveFrom$1(context) : t5); } return new K._CupertinoThemeDefaults(_this.brightness, t2, t3, t4, t1, t5); } }; K._CupertinoThemeDefaults_resolveFrom_convertColor.prototype = { call$1: function(color) { return color instanceof E.CupertinoDynamicColor ? color.resolveFrom$1(this.context) : color; }, $signature: 458 }; K._CupertinoTextThemeDefaults.prototype = {}; K._DefaultCupertinoTextThemeData.prototype = {}; K._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable.prototype = {}; A.CupertinoThumbPainter.prototype = { paint$2: function(canvas, rect) { var _i, shadow, t2, result, t1 = rect.get$shortestSide() / 2, rrect = P.RRect$fromRectAndRadius(rect, new P.Radius(t1, t1)); for (_i = 0; _i < 2; ++_i) { shadow = C.List_a99[_i]; t1 = rrect.shift$1(shadow.offset); t2 = H._detectRenderer(); result = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); result.set$color(0, shadow.color); result.set$maskFilter(new P.MaskFilter(C.BlurStyle_0, shadow.blurRadius * 0.57735 + 0.5)); canvas.drawRRect$2(0, t1, result); } t1 = rrect.inflate$1(0.5); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$color(0, C.Color_167772160); canvas.drawRRect$2(0, t1, t2); t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1.set$color(0, C.Color_4294967295); canvas.drawRRect$2(0, rrect, t1); } }; U._testPlatform_closure.prototype = { call$0: function() { return null; }, $signature: 1228 }; U._browserPlatform_closure.prototype = { call$0: function() { var t1 = window.navigator.platform, navigatorPlatform = t1 == null ? null : t1.toLowerCase(); if (navigatorPlatform == null) navigatorPlatform = ""; if (C.JSString_methods.startsWith$1(navigatorPlatform, "mac")) return C.TargetPlatform_4; if (C.JSString_methods.startsWith$1(navigatorPlatform, "win")) return C.TargetPlatform_5; if (C.JSString_methods.contains$1(navigatorPlatform, "iphone") || C.JSString_methods.contains$1(navigatorPlatform, "ipad") || C.JSString_methods.contains$1(navigatorPlatform, "ipod")) return C.TargetPlatform_2; if (C.JSString_methods.contains$1(navigatorPlatform, "android")) return C.TargetPlatform_0; if (window.matchMedia("only screen and (pointer: fine)").matches) return C.TargetPlatform_3; return C.TargetPlatform_0; }, $signature: 1229 }; U._ErrorDiagnostic.prototype = { get$value: function(_) { var t1 = Y.DiagnosticsProperty.prototype.get$value.call(this, this); t1.toString; return t1; }, valueToString$1$parentConfiguration: function(parentConfiguration) { var t1 = Y.DiagnosticsProperty.prototype.get$value.call(this, this); t1.toString; return J.join$1$ax(t1, ""); } }; U.ErrorDescription.prototype = {}; U.ErrorSummary.prototype = {}; U.ErrorHint.prototype = {}; U.ErrorSpacer.prototype = {}; U.FlutterErrorDetails.prototype = { exceptionAsString$0: function() { var message, fullMessage, t1, t2, position, body, splitPoint, longMessage = this.exception; if (type$.AssertionError._is(longMessage)) { message = longMessage.get$message(longMessage); fullMessage = longMessage.toString$0(0); if (typeof message == "string" && message !== fullMessage) { t1 = fullMessage.length; t2 = J.getInterceptor$asx(message); if (t1 > t2.get$length(message)) { position = C.JSString_methods.lastIndexOf$1(fullMessage, message); if (position === t1 - t2.get$length(message) && position > 2 && C.JSString_methods.substring$2(fullMessage, position - 2, position) === ": ") { body = C.JSString_methods.substring$2(fullMessage, 0, position - 2); splitPoint = C.JSString_methods.indexOf$1(body, " Failed assertion:"); if (splitPoint >= 0) body = C.JSString_methods.substring$2(body, 0, splitPoint) + "\n" + C.JSString_methods.substring$1(body, splitPoint + 1); longMessage = t2.trimRight$0(message) + "\n" + body; } else longMessage = null; } else longMessage = null; } else longMessage = null; if (longMessage == null) longMessage = fullMessage; } else if (!(typeof longMessage == "string")) { t1 = type$.Error._is(longMessage) || type$.Exception._is(longMessage); t2 = J.getInterceptor$(longMessage); longMessage = t1 ? t2.toString$0(longMessage) : " " + H.S(t2.toString$0(longMessage)); } longMessage = J.trimRight$0$s(longMessage); return longMessage.length === 0 ? " " : longMessage; }, _exceptionToDiagnosticable$0: function() { var t1, exception = this.exception; if (exception instanceof U.FlutterError) return exception; if (type$.AssertionError._is(exception) && exception.get$message(exception) instanceof U.FlutterError) { t1 = J.get$message$z(exception); t1.toString; return type$.FlutterError._as(t1); } return null; }, get$summary: function() { var t1, summary; if (this._exceptionToDiagnosticable$0() != null) { t1 = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); this.debugFillProperties$1(new Y.DiagnosticPropertiesBuilder(t1, C.DiagnosticsTreeStyle_1)); t1 = C.JSArray_methods.cast$1$0(t1, type$.nullable_DiagnosticsNode); summary = t1.firstWhere$2$orElse(t1, new U.FlutterErrorDetails_summary_closure(), new U.FlutterErrorDetails_summary_closure0()); } else summary = null; return summary == null ? U.ErrorSummary$(new U.FlutterErrorDetails_summary_formatException(this).call$0()) : summary; }, debugFillProperties$1: function(properties) { var t1, verb, diagnosticable, errorName, t2, t3, prefix, message, stackFrames, _this = this; _this.super$Diagnosticable$debugFillProperties(properties); t1 = _this.context; verb = U.ErrorDescription$("thrown" + H.S(t1 != null ? U.ErrorDescription$(" " + t1.toString$0(0)) : "")); diagnosticable = _this._exceptionToDiagnosticable$0(); t1 = _this.exception; if (t1 instanceof P.NullThrownError) U.ErrorDescription$("The null value was " + verb.toString$0(0) + "."); else if (typeof t1 == "number") U.ErrorDescription$("The number " + H.S(t1) + " was " + verb.toString$0(0) + "."); else { if (type$.AssertionError._is(t1)) errorName = U.ErrorDescription$("assertion"); else if (typeof t1 == "string") errorName = U.ErrorDescription$("message"); else { t2 = type$.Error._is(t1) || type$.Exception._is(t1); t3 = J.getInterceptor$(t1); errorName = t2 ? U.ErrorDescription$(t3.get$runtimeType(t1).toString$0(0)) : U.ErrorDescription$(t3.get$runtimeType(t1).toString$0(0) + " object"); } U.ErrorDescription$("The following " + errorName.toString$0(0) + " was " + verb.toString$0(0) + ":"); if (diagnosticable != null) C.JSArray_methods.forEach$1(diagnosticable.diagnostics, properties.get$add(properties)); else { prefix = J.get$runtimeType$(t1).toString$0(0) + ": "; message = _this.exceptionAsString$0(); U.ErrorSummary$(C.JSString_methods.startsWith$1(message, prefix) ? C.JSString_methods.substring$1(message, prefix.length) : message); } } t2 = _this.stack; if (t2 != null) { if (type$.AssertionError._is(t1) && diagnosticable == null) { t1 = R.StackFrame_fromStackString(J.toString$0$(U.FlutterError__defaultStackTraceDemangler(t2))); t3 = H._arrayInstanceType(t1)._eval$1("SkipWhileIterable<1>"); stackFrames = P.List_List$of(new H.SkipWhileIterable(t1, new U.FlutterErrorDetails_debugFillProperties_closure(), t3), true, t3._eval$1("Iterable.E")); if (stackFrames.length >= 2 && stackFrames[0].$package === "flutter" && stackFrames[1].$package === "flutter") { U.ErrorSpacer$(); U.ErrorHint$("Either the assertion indicates an error in the framework itself, or we should provide substantially more information in this error message to help you determine and fix the underlying cause.\nIn either case, please report this assertion by filing a bug on GitHub:\n https://github.com/flutter/flutter/issues/new?template=2_bug.md"); } } U.ErrorSpacer$(); U.DiagnosticsStackTrace$("When the exception was thrown, this was the stack", t2, null); } t1 = _this.informationCollector; if (t1 != null) { U.ErrorSpacer$(); J.forEach$1$ax(t1.call$0(), properties.get$add(properties)); } }, toStringShort$0: function() { var t1 = "Exception caught by " + this.library; return t1; }, toString$0: function(_) { U._FlutterErrorDetailsNode$(null, C.DiagnosticsTreeStyle_5, this); return ""; } }; U.FlutterErrorDetails_summary_formatException.prototype = { call$0: function() { return J.trimLeft$0$s(this.$this.exceptionAsString$0().split("\n")[0]); }, $signature: 71 }; U.FlutterErrorDetails_summary_closure.prototype = { call$1: function(node) { return node.get$level(node) === C.DiagnosticLevel_6; }, $signature: 1253 }; U.FlutterErrorDetails_summary_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; U.FlutterErrorDetails_debugFillProperties_closure.prototype = { call$1: function(frame) { return frame.packageScheme === "dart"; }, $signature: 1254 }; U.FlutterError.prototype = { get$message: function(_) { return this.toString$0(0); }, toStringShort$0: function() { return "FlutterError"; }, toString$0: function(_) { var t1 = this.diagnostics; return new H.MappedListIterable(t1, new U.FlutterError_toString_closure(new Y.TextTreeRenderer(4000000000, 65, C.DiagnosticLevel_2, -1)), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$1(0, "\n"); }, $isAssertionError: 1, $isDiagnosticableTree: 1 }; U.FlutterError_FlutterError_closure.prototype = { call$1: function(line) { return U.ErrorDescription$(line); }, $signature: 1255 }; U.FlutterError_defaultStackFilter_closure.prototype = { call$1: function(value) { return value + 1; }, $signature: 177 }; U.FlutterError_defaultStackFilter_closure0.prototype = { call$1: function(value) { return value + 1; }, $signature: 177 }; U.FlutterError_toString_closure.prototype = { call$1: function(node) { return C.JSString_methods.trimRight$0(this.renderer.render$1(0, node)); }, $signature: 1259 }; U.debugPrintStack_closure.prototype = { call$1: function(line) { return J.contains$1$asx(line, "StackTrace.current") || C.JSString_methods.contains$1(line, "dart-sdk/lib/_internal") || C.JSString_methods.contains$1(line, "dart:sdk_internal"); }, $signature: 73 }; U.DiagnosticsStackTrace.prototype = {}; U._FlutterErrorDetailsNode.prototype = { get$builder: function() { Y.DiagnosticableNode.prototype.get$builder.call(this); return null; } }; U._FlutterError_Error_DiagnosticableTreeMixin.prototype = {}; U._FlutterErrorDetails_Object_Diagnosticable.prototype = {}; N.BindingBase.prototype = { BindingBase$0: function() { var t1, t2, t3, t4, t5, t6, _this = this, _null = null; P.Timeline_startSync("Framework initialization", _null, _null); _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initInstances(); $.WidgetsBinding__instance = _this; t1 = type$.Element_2; t2 = P.HashSet_HashSet(t1); t3 = H.setRuntimeTypeInfo([], type$.JSArray_Element_2); t4 = P.HashSet_HashSet(t1); t5 = P.LinkedHashMap_LinkedHashMap(_null, _null, type$.void_Function_FocusHighlightMode, type$.int); t6 = O.FocusScopeNode$(true, "Root Focus Scope", false); t6 = t6._focus_manager$_manager = new O.FocusManager(new R.HashedObserverList(t5, type$.HashedObserverList_of_void_Function_FocusHighlightMode), t6, P.LinkedHashSet_LinkedHashSet$_empty(type$.FocusNode), new P.LinkedList(type$.LinkedList__ListenerEntry)); $.$get$RawKeyboard_instance().keyEventHandler = t6.get$_handleRawKeyEvent(); t5 = $.GestureBinding__instance; t5.GestureBinding_pointerRouter._globalRoutes.$indexSet(0, t6.get$_focus_manager$_handlePointerEvent(), _null); t1 = new N.BuildOwner(new N._InactiveElements(t2), t3, t6, P.LinkedHashMap_LinkedHashMap$_empty(type$.GlobalKey_State_StatefulWidget, t1), t4, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Map_of_Element_and_GlobalKey_State_StatefulWidget)); _this.WidgetsBinding__buildOwner = t1; t1.onBuildScheduled = _this.get$_handleBuildScheduled(); $.$get$window().platformDispatcher._onLocaleChanged = _this.get$handleLocaleChanged(); C.OptionalMethodChannel_qNA.setMethodCallHandler$1(_this.get$_handleNavigationInvocation()); $.FlutterErrorDetails_propertiesTransformers.push(N.widget_inspector__transformDebugCreator$closure()); _this.initServiceExtensions$0(); t1 = type$.String; P.postEvent("Flutter.FrameworkInitialization", P.LinkedHashMap_LinkedHashMap$_empty(t1, t1)); P.Timeline_finishSync(); }, initInstances$0: function() { }, initServiceExtensions$0: function() { }, lockEvents$1: function(callback) { var future; P.Timeline_startSync("Lock events", null, null); ++this._lockCount; future = callback.call$0(); future.whenComplete$1(new N.BindingBase_lockEvents_closure(this)); return future; }, unlocked$0: function() { }, registerBoolServiceExtension$3$getter$name$setter: function(getter, $name, setter) { this.registerServiceExtension$2$callback$name(new N.BindingBase_registerBoolServiceExtension_closure(this, setter, $name, getter), $name); }, registerNumericServiceExtension$3$getter$name$setter: function(getter, $name, setter) { this.registerServiceExtension$2$callback$name(new N.BindingBase_registerNumericServiceExtension_closure(this, $name, setter, getter), $name); }, _postExtensionStateChangedEvent$2: function($name, value) { P.postEvent("Flutter.ServiceExtensionStateChanged", P.LinkedHashMap_LinkedHashMap$_literal(["extension", "ext.flutter." + $name, "value", value], type$.String, type$.dynamic)); }, registerServiceExtension$2$callback$name: function(callback, $name) { var methodName = "ext.flutter." + $name; P.registerExtension(methodName, new N.BindingBase_registerServiceExtension_closure(methodName, callback)); }, toString$0: function(_) { return ""; } }; N.BindingBase_lockEvents_closure.prototype = { call$0: function() { var t1 = this.$this; if (--t1._lockCount <= 0) { P.Timeline_finishSync(); t1.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$unlocked(); if (t1.SchedulerBinding__taskQueue._priority_queue$_length !== 0) t1._ensureEventLoopCallback$0(); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.BindingBase_registerBoolServiceExtension_closure.prototype = { call$1: function(parameters) { return this.$call$body$BindingBase_registerBoolServiceExtension_closure(parameters); }, $call$body$BindingBase_registerBoolServiceExtension_closure: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.getInterceptor$x(parameters); $async$goto = t1.containsKey$1(parameters, "enabled") ? 3 : 4; break; case 3: // then $async$goto = 5; return P._asyncAwait($async$self.setter.call$1(J.$eq$(t1.$index(parameters, "enabled"), "true")), $async$call$1); case 5: // returning from await. $async$goto = 6; return P._asyncAwait($async$self.getter.call$0(), $async$call$1); case 6: // returning from await. t1 = $async$result ? "true" : "false"; $async$self.$this._postExtensionStateChangedEvent$2($async$self.name, t1); case 4: // join $async$temp1 = P; $async$goto = 7; return P._asyncAwait($async$self.getter.call$0(), $async$call$1); case 7: // returning from await. $async$returnValue = $async$temp1.LinkedHashMap_LinkedHashMap$_literal(["enabled", $async$result ? "true" : "false"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 257 }; N.BindingBase_registerNumericServiceExtension_closure.prototype = { call$1: function(parameters) { return this.$call$body$BindingBase_registerNumericServiceExtension_closure(parameters); }, $call$body$BindingBase_registerNumericServiceExtension_closure: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t1, t2, $async$temp1, $async$temp2, $async$temp3; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.name; t2 = J.getInterceptor$x(parameters); $async$goto = t2.containsKey$1(parameters, t1) ? 3 : 4; break; case 3: // then t2 = t2.$index(parameters, t1); t2.toString; $async$goto = 5; return P._asyncAwait($async$self.setter.call$1(P.double_parse(t2)), $async$call$1); case 5: // returning from await. $async$temp1 = $async$self.$this; $async$temp2 = t1; $async$temp3 = J; $async$goto = 6; return P._asyncAwait($async$self.getter.call$0(), $async$call$1); case 6: // returning from await. $async$temp1._postExtensionStateChangedEvent$2($async$temp2, $async$temp3.toString$0$($async$result)); case 4: // join $async$temp1 = P; $async$temp2 = t1; $async$temp3 = J; $async$goto = 7; return P._asyncAwait($async$self.getter.call$0(), $async$call$1); case 7: // returning from await. $async$returnValue = $async$temp1.LinkedHashMap_LinkedHashMap$_literal([$async$temp2, $async$temp3.toString$0$($async$result)], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 257 }; N.BindingBase_registerServiceExtension_closure.prototype = { call$2: function(method, parameters) { return this.$call$body$BindingBase_registerServiceExtension_closure(method, parameters); }, "call*": "call$2", $requiredArgCount: 2, $call$body$BindingBase_registerServiceExtension_closure: function(method, parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.ServiceExtensionResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, caughtException, caughtStack, _result_set, exception, stack, t2, exception0, t1, $async$exception0, $async$temp1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = {}; $async$goto = 3; return P._asyncAwait(E.debugInstrumentAction("Wait for outer event loop", new N.BindingBase_registerServiceExtension__closure(), type$.void), $async$call$2); case 3: // returning from await. caughtException = null; caughtStack = null; t1._result0 = $; t2 = new N.BindingBase_registerServiceExtension_closure__result_get(t1); _result_set = new N.BindingBase_registerServiceExtension_closure__result_set(t1); $async$handler = 5; $async$temp1 = _result_set; $async$goto = 8; return P._asyncAwait($async$self.callback.call$1(parameters), $async$call$2); case 8: // returning from await. $async$temp1.call$1($async$result); $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); caughtException = exception; caughtStack = stack; // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally if (caughtException == null) { J.$indexSet$ax(t2.call$0(), "type", "_extensionType"); J.$indexSet$ax(t2.call$0(), "method", method); $async$returnValue = P.ServiceExtensionResponse$result(C.C_JsonCodec.encode$1(t2.call$0())); // goto return $async$goto = 1; break; } else { U.FlutterError_reportError(new U.FlutterErrorDetails(caughtException, caughtStack, "Flutter framework", U.ErrorDescription$('during a service extension callback for "' + H.S(method) + '"'), null, false)); t1 = type$.String; C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["exception", J.toString$0$(caughtException), "stack", J.toString$0$(caughtStack), "method", method], t1, t1)); P.ServiceExtensionResponse__validateErrorCode(-32000); $async$returnValue = new P.ServiceExtensionResponse(); // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 658 }; N.BindingBase_registerServiceExtension_closure__result_set.prototype = { call$1: function(t1) { return this._box_0._result0 = t1; }, $signature: 1261 }; N.BindingBase_registerServiceExtension__closure.prototype = { call$0: function() { return P.Future_Future$delayed(C.Duration_0, null, type$.void); }, $signature: 93 }; N.BindingBase_registerServiceExtension_closure__result_get.prototype = { call$0: function() { var t1 = this._box_0._result0; return t1 === $ ? H.throwExpression(H.LateError$localNI("result")) : t1; }, $signature: 1279 }; B.Listenable.prototype = {}; B._ListenerEntry.prototype = { listener$0: function($receiver) { return this.listener.call$0(); } }; B.ChangeNotifier.prototype = { addListener$1: function(_, listener) { var t1 = this.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(listener), false); }, removeListener$1: function(_, listener) { var entry, t2, t3, t1 = this.ChangeNotifier__listeners; t1.toString; t1 = P._LinkedListIterator$(t1, t1.$ti._precomputed1); for (; t1.moveNext$0();) { entry = t1._collection$_current; if (J.$eq$(entry.listener, listener)) { t1 = entry._collection$_list; t1.toString; H._instanceType(entry)._eval$1("LinkedListEntry.E")._as(entry); ++t1._collection$_modificationCount; t2 = entry._collection$_next; t2._collection$_previous = entry._collection$_previous; entry._collection$_previous._collection$_next = t2; t3 = --t1._collection$_length; entry._collection$_list = entry._collection$_next = entry._collection$_previous = null; if (t3 === 0) t1._collection$_first = null; else if (entry === t1._collection$_first) t1._collection$_first = t2; return; } } }, dispose$0: function(_) { this.ChangeNotifier__listeners = null; }, notifyListeners$0: function() { var entry, exception, stack, localListeners, _i, exception0, rti, t2, t3, _this = this, t1 = _this.ChangeNotifier__listeners; if (t1._collection$_length === 0) return; localListeners = P.List_List$from(t1, true, type$._ListenerEntry); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { entry = localListeners[_i]; try { if (entry._collection$_list != null) J.listener$0$z(entry); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); rti = _this instanceof H.Closure ? H.closureFunctionType(_this) : null; t2 = U.ErrorDescription$("while dispatching notifications for " + H.createRuntimeType(rti == null ? H.instanceType(_this) : rti).toString$0(0)); t3 = $.FlutterError_onError; if (t3 != null) t3.call$1(new U.FlutterErrorDetails(exception, stack, "foundation library", t2, new B.ChangeNotifier_notifyListeners_closure(_this), false)); } } }, $isListenable: 1 }; B.ChangeNotifier_notifyListeners_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; $async$goto = 2; return Y.DiagnosticsProperty$("The " + H.getRuntimeType(t1).toString$0(0) + " sending notification was", t1, true, C.C__NoDefaultValue, null, false, null, null, C.DiagnosticLevel_3, null, false, true, true, C.DiagnosticsTreeStyle_9, null, type$.ChangeNotifier); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; B._MergingListenable.prototype = { addListener$1: function(_, listener) { var t1, t2, _i, child; for (t1 = this._change_notifier$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.addListener$1(0, listener); } }, removeListener$1: function(_, listener) { var t1, t2, _i, child; for (t1 = this._change_notifier$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.removeListener$1(0, listener); } }, toString$0: function(_) { return "Listenable.merge([" + C.JSArray_methods.join$1(this._change_notifier$_children, ", ") + "])"; } }; B.ValueNotifier.prototype = { get$value: function(_) { return this._change_notifier$_value; }, set$value: function(_, newValue) { if (J.$eq$(this._change_notifier$_value, newValue)) return; this._change_notifier$_value = newValue; this.notifyListeners$0(); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this._change_notifier$_value) + ")"; } }; Y.DiagnosticLevel.prototype = { toString$0: function(_) { return this._diagnostics$_name; } }; Y.DiagnosticsTreeStyle.prototype = { toString$0: function(_) { return this._diagnostics$_name; } }; Y.TextTreeConfiguration.prototype = {}; Y._WordWrapParseMode.prototype = { toString$0: function(_) { return this._diagnostics$_name; } }; Y._PrefixedStringBuilder.prototype = { incrementPrefixOtherLines$2$updateCurrentLine: function(suffix, updateCurrentLine) { var _this = this, t1 = _this._currentLine._contents.length === 0 || updateCurrentLine, t2 = _this._nextPrefixOtherLines; if (t1) { t1 = t2 == null ? _this._prefixOtherLines : t2; t1.toString; _this._prefixOtherLines = t1 + suffix; _this._nextPrefixOtherLines = null; } else { t1 = t2 == null ? _this._prefixOtherLines : t2; t1.toString; _this._nextPrefixOtherLines = t1 + suffix; } }, get$requiresMultipleLines: function() { var t2, _this = this, t1 = _this._numLines; if (t1 <= 1) if (!(t1 === 1 && _this._currentLine._contents.length !== 0)) { t1 = _this._currentLine._contents; if (_this._diagnostics$_buffer._contents.length === 0) t2 = _this.prefixLineOne; else t2 = _this._prefixOtherLines; t2 = t1.length + t2.length > _this.wrapWidth; t1 = t2; } else t1 = true; else t1 = true; return t1; }, _finalizeLine$1: function(addTrailingLineBreak) { var t3, lines, $length, i, t4, _this = this, firstLine = _this._diagnostics$_buffer._contents.length === 0, t1 = _this._currentLine, t2 = t1._contents, text = t2.charCodeAt(0) == 0 ? t2 : t2; t1._contents = ""; t1 = _this._wrappableRanges; if (t1.length === 0) { _this._writeLine$3$firstLine$includeLineBreak(text, firstLine, addTrailingLineBreak); return; } t2 = firstLine ? _this.prefixLineOne.length : _this._prefixOtherLines.length; t3 = _this._prefixOtherLines; t3 = firstLine ? t3.length : t3.length; lines = Y._PrefixedStringBuilder__wordWrapLine(text, t1, _this.wrapWidth, t3, t2); $length = lines.get$length(lines); for (t2 = new P._SyncStarIterator(lines._outerHelper(), lines.$ti._eval$1("_SyncStarIterator<1>")), t3 = !addTrailingLineBreak, i = 0; t2.moveNext$0();) { t4 = t2.get$current(t2); ++i; _this._writeLine$3$firstLine$includeLineBreak(t4, firstLine, !t3 || i < $length); } C.JSArray_methods.set$length(t1, 0); }, write$2$allowWrap: function(_, s, allowWrap) { var lines, t1, t2, i, t3, line, wrapStart, wrapEnd, _this = this; if (s.length === 0) return; lines = s.split("\n"); for (t1 = _this._currentLine, t2 = _this._wrappableRanges, i = 0; i < lines.length; ++i) { if (i > 0) { _this._finalizeLine$1(true); t3 = _this._nextPrefixOtherLines; if (t3 != null) { _this._prefixOtherLines = t3; _this._nextPrefixOtherLines = null; } } line = lines[i]; t3 = line.length; if (t3 !== 0) { if (allowWrap && true) { wrapStart = t1._contents.length; wrapEnd = wrapStart + t3; if (t2.length !== 0 && C.JSArray_methods.get$last(t2) === wrapStart) C.JSArray_methods.set$last(t2, wrapEnd); else { t2.push(wrapStart); t2.push(wrapEnd); } } t1._contents += line; } } }, write$1: function($receiver, s) { return this.write$2$allowWrap($receiver, s, false); }, _updatePrefix$0: function() { var t1 = this._nextPrefixOtherLines; if (t1 != null) { this._prefixOtherLines = t1; this._nextPrefixOtherLines = null; } }, _writeLine$3$firstLine$includeLineBreak: function(line, firstLine, includeLineBreak) { var t2, _this = this, t1 = _this._diagnostics$_buffer; if (t1._contents.length === 0) t2 = _this.prefixLineOne; else t2 = _this._prefixOtherLines; t2 = t1._contents += C.JSString_methods.trimRight$0(H.S(t2) + H.S(line)); if (includeLineBreak) t1._contents = t2 + "\n"; ++_this._numLines; }, writeRawLines$1: function(lines) { var t1, t2, _this = this; if (lines.length === 0) return; if (_this._currentLine._contents.length !== 0) _this._finalizeLine$1(true); t1 = _this._diagnostics$_buffer; t2 = t1._contents += lines; if (!C.JSString_methods.endsWith$1(lines, "\n")) t1._contents = t2 + "\n"; ++_this._numLines; _this._updatePrefix$0(); }, writeStretched$2: function(text, targetLineLength) { var t1, t2, t3, targetLength, _this = this; _this.write$1(0, text); t1 = _this._currentLine; t2 = t1._contents; if (_this._diagnostics$_buffer._contents.length === 0) t3 = _this.prefixLineOne; else t3 = _this._prefixOtherLines; targetLength = targetLineLength - (t2.length + t3.length); if (targetLength > 0) t1._contents += C.JSString_methods.$mul(text[text.length - 1], targetLength); C.JSArray_methods.set$length(_this._wrappableRanges, 0); } }; Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_set.prototype = { call$1: function(t1) { return this._box_0._lastWordStart = t1; }, $signature: 1281 }; Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_get.prototype = { call$0: function() { var t1 = this._box_0._lastWordStart; return t1 === $ ? H.throwExpression(H.LateError$localNI("lastWordStart")) : t1; }, $signature: 218 }; Y._PrefixedStringBuilder__wordWrapLine_noWrap.prototype = { call$1: function(index) { var t1, t2, t3; for (t1 = this._box_0, t2 = this.wrapRanges; true;) { t3 = t1.currentChunk; if (t3 >= t2.length) return true; if (index < t2[t3 + 1]) break; t1.currentChunk = t3 + 2; } return index < t2[t1.currentChunk]; }, $signature: 186 }; Y._NoDefaultValue.prototype = {}; Y.TextTreeRenderer.prototype = { render$4$parentConfiguration$prefixLineOne$prefixOtherLines: function(_, node, parentConfiguration, prefixLineOne, prefixOtherLines) { var t1 = this._debugRender$4$parentConfiguration$prefixLineOne$prefixOtherLines(node, parentConfiguration, prefixLineOne, prefixOtherLines); return t1; }, render$1: function($receiver, node) { return this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines($receiver, node, null, "", null); }, _debugRender$4$parentConfiguration$prefixLineOne$prefixOtherLines: function(node, parentConfiguration, prefixLineOne, prefixOtherLines) { var isSingleLine, t1, t2, descendants, t3, t4, t5, builder, children, description, wrapName, wrapDescription, uppercaseTitle, $name, includeName, propertiesIterable, properties, i, t6, property, propertyRender, propertyLines, t7, t8, prefixChildrenRaw, child, childStyle, lastChildPrefixLineOne, childPrefixOtherLines, nextChildStyle, childPrefixLineOne, _this = this, _s1_ = "\n", _box_0 = {}; _box_0.prefixOtherLines = prefixOtherLines; if (node.get$style(node) === C.DiagnosticsTreeStyle_8) isSingleLine = (parentConfiguration == null ? null : parentConfiguration.lineBreakProperties) !== true; else isSingleLine = false; if (prefixOtherLines == null) { _box_0.prefixOtherLines = prefixLineOne; t1 = prefixLineOne; } else t1 = prefixOtherLines; t2 = node.get$textTreeConfiguration(); t2.toString; if (t1.length === 0) t1 = _box_0.prefixOtherLines = t1 + t2.prefixOtherLinesRootNode; if (node.get$style(node) === C.DiagnosticsTreeStyle_11) { descendants = H.setRuntimeTypeInfo([], type$.JSArray_String); _box_0.lines = _box_0.depth = 0; new Y.TextTreeRenderer__debugRender_visitor(_box_0, descendants).call$1(node); if (_box_0.lines > 1) t1 = prefixLineOne + ("This " + H.S(node.name) + " had the following descendants (showing up to depth 5):\n"); else { t1 = descendants.length; t2 = node.name; t1 = t1 === 1 ? prefixLineOne + ("This " + H.S(t2) + " had the following child:\n") : prefixLineOne + ("This " + H.S(t2) + " has no descendants.\n"); } t1 = P.StringBuffer__writeAll(t1, descendants, _s1_); return t1.charCodeAt(0) == 0 ? t1 : t1; } t3 = _this._wrapWidthProperties; t4 = Math.max(_this._wrapWidth, t1.length + t3); t5 = new P.StringBuffer(""); builder = new Y._PrefixedStringBuilder(prefixLineOne, t1, t4, new P.StringBuffer(""), t5, H.setRuntimeTypeInfo([], type$.JSArray_int)); children = node.getChildren$0(); description = node.toDescription$1$parentConfiguration(parentConfiguration); t1 = t2.beforeName; if (t1.length !== 0) builder.write$1(0, t1); t1 = !isSingleLine; wrapName = t1 && node.get$allowNameWrap(); wrapDescription = t1 && node.get$allowWrap(); uppercaseTitle = node.get$style(node) === C.DiagnosticsTreeStyle_5; $name = node.name; if (uppercaseTitle) $name = $name == null ? null : $name.toUpperCase(); if (description == null || description.length === 0) { if (node.get$showName() && $name != null) builder.write$2$allowWrap(0, $name, wrapName); } else { if ($name != null && $name.length !== 0 && node.get$showName()) { builder.write$2$allowWrap(0, $name, wrapName); if (node.showSeparator) builder.write$2$allowWrap(0, t2.afterName, wrapName); builder.write$2$allowWrap(0, t2.isNameOnOwnLine || J.contains$1$asx(description, _s1_) ? _s1_ : " ", wrapName); includeName = true; } else includeName = false; if (t1 && builder.get$requiresMultipleLines() && t5._contents.length !== 0) builder.write$1(0, _s1_); if (includeName) builder.incrementPrefixOtherLines$2$updateCurrentLine(children.length === 0 ? t2.propertyPrefixNoChildren : t2.propertyPrefixIfChildren, true); if (uppercaseTitle) description = description.toUpperCase(); builder.write$2$allowWrap(0, J.trimRight$0$s(description), wrapDescription); if (!includeName) builder.incrementPrefixOtherLines$2$updateCurrentLine(children.length === 0 ? t2.propertyPrefixNoChildren : t2.propertyPrefixIfChildren, false); } t1 = t2.suffixLineOne; if (t1.length !== 0) builder.writeStretched$2(t1, t4); propertiesIterable = J.where$1$ax(node.getProperties$0(0), new Y.TextTreeRenderer__debugRender_closure(_this)); t1 = _this._maxDescendentsTruncatableNode; if (t1 >= 0 && node.get$allowTruncate()) { t4 = propertiesIterable.$ti._eval$1("Iterable.E"); if (propertiesIterable.get$length(propertiesIterable) < t1) { t4 = H.TakeIterable_TakeIterable(propertiesIterable, t1, t4); properties = P.List_List$of(t4, true, H._instanceType(t4)._eval$1("Iterable.E")); C.JSArray_methods.add$1(properties, Y.DiagnosticsNode_DiagnosticsNode$message("...", true, C.DiagnosticsTreeStyle_8)); } else properties = P.List_List$of(propertiesIterable, true, t4); if (t1 < children.length) { children = H.SubListIterable$(children, 0, H.checkNotNullable(t1, "count", type$.int), H._arrayInstanceType(children)._precomputed1).toList$0(0); C.JSArray_methods.add$1(children, Y.DiagnosticsNode_DiagnosticsNode$message("...", true, C.DiagnosticsTreeStyle_8)); } } else properties = P.List_List$of(propertiesIterable, true, propertiesIterable.$ti._eval$1("Iterable.E")); if (properties.length !== 0 || children.length !== 0 || node.get$emptyBodyDescription() != null) if (!node.showSeparator) t1 = (description == null ? null : description.length !== 0) === true; else t1 = true; else t1 = false; if (t1) builder.write$1(0, t2.afterDescriptionIfBody); t1 = t2.lineBreakProperties; if (t1) builder.write$1(0, t2.lineBreak); if (properties.length !== 0) builder.write$1(0, t2.beforeProperties); t4 = t2.bodyIndent; builder.incrementPrefixOtherLines$2$updateCurrentLine(t4, false); if (node.get$emptyBodyDescription() != null && properties.length === 0 && children.length === 0 && prefixLineOne.length !== 0) { t5 = node.get$emptyBodyDescription(); t5.toString; builder.write$1(0, t5); if (t1) builder.write$1(0, t2.lineBreak); } for (t5 = t2.propertySeparator, t1 = !t1, i = 0; t6 = properties.length, i < t6; ++i) { property = properties[i]; if (i > 0) builder.write$1(0, t5); t6 = property.get$textTreeConfiguration(); t6.toString; if (property.get$style(property) === C.DiagnosticsTreeStyle_8) { propertyRender = _this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, property, t2, t6.prefixLineOne, t6.childLinkSpace + t6.prefixOtherLines); propertyLines = propertyRender.split(_s1_); if (propertyLines.length === 1 && t1) builder.write$1(0, C.JSArray_methods.get$first(propertyLines)); else { builder.write$2$allowWrap(0, propertyRender, false); if (!C.JSString_methods.endsWith$1(propertyRender, _s1_)) builder.write$1(0, _s1_); } } else { t7 = builder._nextPrefixOtherLines; t7 = H.S(t7 == null ? builder._prefixOtherLines : t7) + t6.prefixLineOne; t8 = builder._nextPrefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, property, t2, t7, H.S(t8 == null ? builder._prefixOtherLines : t8) + t6.childLinkSpace + t6.prefixOtherLines)); } } if (t6 !== 0) builder.write$1(0, t2.afterProperties); builder.write$1(0, ""); if (t1) builder.write$1(0, t2.lineBreak); prefixChildrenRaw = H.S(_box_0.prefixOtherLines) + t4; if (children.length === 0) if (t2.addBlankLineIfNoChildren) if (builder.get$requiresMultipleLines()) { t1 = builder._nextPrefixOtherLines; if (t1 == null) t1 = builder._prefixOtherLines; t1.toString; t1 = C.JSString_methods.trimRight$0(t1).length !== 0; } else t1 = false; else t1 = false; else t1 = false; if (t1) builder.write$1(0, t2.lineBreak); if (children.length !== 0 && t2.showChildren) { if (t2.isBlankLineBetweenPropertiesAndChildren && properties.length !== 0 && C.JSArray_methods.get$first(children).get$textTreeConfiguration().isBlankLineBetweenPropertiesAndChildren) builder.write$1(0, t2.lineBreak); builder._prefixOtherLines = _box_0.prefixOtherLines; builder._nextPrefixOtherLines = null; for (t1 = t2.lineBreak, t4 = builder.wrapWidth, i = 0; i < children.length; ++i) { child = children[i]; childStyle = child.get$style(child); if (childStyle === C.DiagnosticsTreeStyle_8 || childStyle === C.DiagnosticsTreeStyle_9) t5 = t2; else t5 = child.get$textTreeConfiguration(); t5.toString; if (i === children.length - 1) { lastChildPrefixLineOne = prefixChildrenRaw + t5.prefixLastChildLineOne; t6 = t5.childLinkSpace; childPrefixOtherLines = prefixChildrenRaw + t6 + t5.prefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, child, t2, lastChildPrefixLineOne, childPrefixOtherLines)); t7 = t5.footer; if (t7.length !== 0) { builder._prefixOtherLines = prefixChildrenRaw; builder._nextPrefixOtherLines = null; builder.write$1(0, t6 + t7); t5 = t5.mandatoryFooter; if (t5.length !== 0) builder.writeStretched$2(t5, Math.max(t4, t3 + childPrefixOtherLines.length)); builder.write$1(0, t1); } } else { t6 = children[i + 1]; childStyle = t6.get$style(t6); if (childStyle === C.DiagnosticsTreeStyle_8 || childStyle === C.DiagnosticsTreeStyle_9) nextChildStyle = t2; else nextChildStyle = t6.get$textTreeConfiguration(); childPrefixLineOne = prefixChildrenRaw + t5.prefixLineOne; childPrefixOtherLines = prefixChildrenRaw + nextChildStyle.linkCharacter + t5.prefixOtherLines; builder.writeRawLines$1(_this.render$4$parentConfiguration$prefixLineOne$prefixOtherLines(0, child, t2, childPrefixLineOne, childPrefixOtherLines)); t6 = t5.footer; if (t6.length !== 0) { builder._prefixOtherLines = prefixChildrenRaw; builder._nextPrefixOtherLines = null; builder.write$1(0, t5.linkCharacter + t6); t5 = t5.mandatoryFooter; if (t5.length !== 0) builder.writeStretched$2(t5, Math.max(t4, t3 + childPrefixOtherLines.length)); builder.write$1(0, t1); } } } } if (parentConfiguration == null && t2.mandatoryFooter.length !== 0) { builder.writeStretched$2(t2.mandatoryFooter, builder.wrapWidth); builder.write$1(0, t2.lineBreak); } if (builder._currentLine._contents.length !== 0) builder._finalizeLine$1(false); t1 = builder._diagnostics$_buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; Y.TextTreeRenderer__debugRender_visitor.prototype = { call$1: function(node) { var t1, t2, t3, t4, _i, child, t5; for (t1 = node.getChildren$0(), t2 = t1.length, t3 = this._box_0, t4 = this.descendants, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t5 = t3.lines; if (t5 < 25) { ++t3.depth; t4.push(H.S(t3.prefixOtherLines) + C.JSString_methods.$mul(" ", t3.depth) + H.S(child)); if (t3.depth < 5) this.call$1(child); --t3.depth; } else if (t5 === 25) t4.push(H.S(t3.prefixOtherLines) + " ...(descendants list truncated after " + t3.lines + " lines)"); ++t3.lines; } }, $signature: 627 }; Y.TextTreeRenderer__debugRender_closure.prototype = { call$1: function(n) { var t1 = n.get$level(n); return t1.index >= this.$this._minLevel.index; }, $signature: 1323 }; Y.DiagnosticsNode.prototype = { get$level: function(_) { return C.DiagnosticLevel_3; }, get$emptyBodyDescription: function() { return null; }, get$allowWrap: function() { return false; }, get$allowNameWrap: function() { return false; }, get$allowTruncate: function() { return false; }, toString$1$minLevel: function(_, minLevel) { return this.super$Object$toString(0); }, toString$0: function($receiver) { return this.toString$1$minLevel($receiver, C.DiagnosticLevel_3); }, get$textTreeConfiguration: function() { var t1 = this.get$style(this); t1.toString; switch (t1) { case C.DiagnosticsTreeStyle_0: return null; case C.DiagnosticsTreeStyle_3: return $.$get$denseTextConfiguration(); case C.DiagnosticsTreeStyle_1: return $.$get$sparseTextConfiguration(); case C.DiagnosticsTreeStyle_2: return $.$get$dashedTextConfiguration(); case C.DiagnosticsTreeStyle_6: return $.$get$whitespaceTextConfiguration(); case C.DiagnosticsTreeStyle_4: return $.$get$transitionTextConfiguration(); case C.DiagnosticsTreeStyle_8: return $.$get$singleLineTextConfiguration(); case C.DiagnosticsTreeStyle_9: return $.$get$errorPropertyTextConfiguration(); case C.DiagnosticsTreeStyle_10: return $.$get$shallowTextConfiguration(); case C.DiagnosticsTreeStyle_5: return $.$get$errorTextConfiguration(); case C.DiagnosticsTreeStyle_11: return $.$get$whitespaceTextConfiguration(); case C.DiagnosticsTreeStyle_7: return $.$get$flatTextConfiguration(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$name: function(receiver) { return this.name; }, get$showName: function() { return this.showName; }, get$style: function(receiver) { return this.style; } }; Y.DiagnosticsProperty.prototype = { valueToString$1$parentConfiguration: function(parentConfiguration) { var v = this.get$value(this); return type$.DiagnosticableTree._is(v) ? v.toStringShort$0() : J.toString$0$(v); }, toDescription$1$parentConfiguration: function(parentConfiguration) { var t2, result, _this = this, t1 = _this._description; if (t1 != null) { t2 = _this.tooltip; return t2 == null ? t1 : t1 + " (" + t2 + ")"; } _this._maybeCacheValue$0(); if (_this._diagnostics$_exception != null) { _this._maybeCacheValue$0(); return "EXCEPTION (" + J.get$runtimeType$(_this._diagnostics$_exception).toString$0(0) + ")"; } t1 = _this.ifNull; if (t1 != null && _this.get$value(_this) == null) { t1.toString; t2 = _this.tooltip; if (!(t2 == null)) t1 = t1 + " (" + t2 + ")"; return t1; } result = _this.valueToString$1$parentConfiguration(parentConfiguration); if (result.length === 0 && _this.ifEmpty != null) { t1 = _this.ifEmpty; t1.toString; result = t1; } t1 = _this.tooltip; return t1 == null ? result : result + " (" + t1 + ")"; }, get$value: function(_) { this._maybeCacheValue$0(); return this._diagnostics$_value; }, _maybeCacheValue$0: function() { var exception, exception0, _this = this; if (_this._valueComputed) return; _this._valueComputed = true; try { _this._diagnostics$_value = _this._computeValue.call$0(); } catch (exception0) { exception = H.unwrapException(exception0); _this._diagnostics$_exception = exception; _this._diagnostics$_value = null; } }, get$level: function(_) { var t2, _this = this, t1 = _this._defaultLevel; if (t1 === C.DiagnosticLevel_0) return t1; _this._maybeCacheValue$0(); if (_this._diagnostics$_exception != null) return C.DiagnosticLevel_7; if (_this.get$value(_this) == null && _this.missingIfNull) return C.DiagnosticLevel_4; t2 = _this.defaultValue; if (!J.$eq$(t2, C.C__NoDefaultValue) && J.$eq$(_this.get$value(_this), t2)) return C.DiagnosticLevel_1; return t1; }, getProperties$0: function(_) { return C.List_empty0; }, getChildren$0: function() { return C.List_empty0; }, get$allowWrap: function() { return this.allowWrap; }, get$allowNameWrap: function() { return true; } }; Y.DiagnosticableNode.prototype = { get$builder: function() { var t1 = this._cachedBuilder; return t1; }, get$style: function(_) { var t1 = this.style; if (t1 == null) t1 = this.get$builder().defaultDiagnosticsTreeStyle; return t1; }, get$emptyBodyDescription: function() { return ""; }, getProperties$0: function(_) { return C.List_empty0; }, getChildren$0: function() { return C.List_empty0; }, toDescription$1$parentConfiguration: function(parentConfiguration) { return ""; }, get$value: function(receiver) { return this.value; } }; Y.DiagnosticableTreeNode.prototype = { getChildren$0: function() { return this.value.debugDescribeChildren$0(); } }; Y.DiagnosticPropertiesBuilder.prototype = { add$1: function(_, property) { } }; Y.Diagnosticable.prototype = { toStringShort$0: function() { return "#" + Y.shortHash(this); }, toString$1$minLevel: function(_, minLevel) { var t1 = this.toStringShort$0(); return t1; }, toString$0: function($receiver) { return this.toString$1$minLevel($receiver, C.DiagnosticLevel_3); }, debugFillProperties$1: function(properties) { } }; Y.DiagnosticableTree.prototype = { toStringShort$0: function() { return "#" + Y.shortHash(this); }, debugDescribeChildren$0: function() { return C.List_empty0; } }; Y.DiagnosticableTreeMixin.prototype = { toString$0: function(_) { return this.toDiagnosticsNode$1$style(C.DiagnosticsTreeStyle_8).super$Object$toString(0); }, toStringDeep$3$minLevel$prefixLineOne$prefixOtherLines: function(minLevel, prefixLineOne, prefixOtherLines) { this.toDiagnosticsNode$0(); return ""; }, toStringShort$0: function() { return "#" + Y.shortHash(this); }, toDiagnosticsNode$2$name$style: function($name, style) { return Y.DiagnosticableTreeNode$($name, style, this); }, toDiagnosticsNode$1$style: function(style) { return this.toDiagnosticsNode$2$name$style(null, style); }, toDiagnosticsNode$0: function() { return this.toDiagnosticsNode$2$name$style(null, null); }, debugDescribeChildren$0: function() { return C.List_empty0; } }; Y.DiagnosticsBlock.prototype = { getChildren$0: function() { return this._children; }, getProperties$0: function(_) { return this._properties; }, toDescription$1$parentConfiguration: function(parentConfiguration) { return null; }, get$level: function() { return C.DiagnosticLevel_3; }, get$value: function(receiver) { return this.value; }, get$allowTruncate: function() { return this.allowTruncate; } }; Y._DiagnosticableTree_Object_Diagnosticable.prototype = {}; D.Key.prototype = {}; D.LocalKey.prototype = {}; D.ValueKey.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return H._instanceType(this)._eval$1("ValueKey")._is(other) && J.$eq$(other.value, this.value); }, get$hashCode: function(_) { return P.hashValues(H.getRuntimeType(this), this.value, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = H._instanceType(this), t2 = t1._eval$1("ValueKey.T"), t3 = this.value, valueString = H.createRuntimeType(t2) === C.Type_String_k8F ? "<'" + H.S(t3) + "'>" : "<" + H.S(t3) + ">"; if (H.getRuntimeType(this) === H.createRuntimeType(t1._eval$1("ValueKey"))) return "[" + valueString + "]"; return "[" + H.createRuntimeType(t2).toString$0(0) + " " + valueString + "]"; }, get$value: function(receiver) { return this.value; } }; D._TypeLiteral.prototype = {}; F.LicenseParagraph.prototype = { text$0: function($receiver) { return this.text.call$0(); } }; F.LicenseEntry.prototype = {}; F._LicenseEntryWithLineBreaksParserState.prototype = { toString$0: function(_) { return this._licenses$_name; } }; F.LicenseEntryWithLineBreaks.prototype = { get$paragraphs: function() { return this.paragraphs$body$LicenseEntryWithLineBreaks(); }, paragraphs$body$LicenseEntryWithLineBreaks: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, lines, addLine, getParagraph, t1, t2, t3, lastLineIndent, currentLineIndent, state, t4, target, _box_0; return function $async$get$paragraphs($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; _box_0.currentPosition = _box_0.lineStart = 0; _box_0.currentParagraphIndentation = null; lines = H.setRuntimeTypeInfo([], type$.JSArray_String); addLine = new F.LicenseEntryWithLineBreaks_paragraphs_addLine(_box_0, $async$self, lines); getParagraph = new F.LicenseEntryWithLineBreaks_paragraphs_getParagraph(_box_0, lines); t1 = $async$self.text, t2 = t1.length, t3 = t2 - 1, lastLineIndent = 0, currentLineIndent = 0, state = C._LicenseEntryWithLineBreaksParserState_0, t4 = 0; case 2: // for condition if (!(t4 < t2)) { // goto after for $async$goto = 3; break; } switch (state) { case C._LicenseEntryWithLineBreaksParserState_0: target = 1; break; case C._LicenseEntryWithLineBreaksParserState_1: target = 2; break; default: target = 3; break; } case 5: // for condition // trivial condition case 7: // switch switch (target) { case 1: // goto case $async$goto = 9; break; case 2: // goto case $async$goto = 10; break; case 3: // goto case $async$goto = 11; break; default: // goto after switch $async$goto = 8; break; } break; case 9: // case switch (t1[t4]) { case " ": target = 1; break; case "\t": target = 2; break; case "\r": case "\n": case "\f": target = 3; break; case "[": target = 4; break; default: target = 5; break; } case 13: // for condition // trivial condition case 15: // switch switch (target) { case 1: // goto case $async$goto = 17; break; case 2: // goto case $async$goto = 18; break; case 3: // goto case $async$goto = 19; break; case 4: // goto case $async$goto = 20; break; case 5: // goto case $async$goto = 21; break; default: // goto after switch $async$goto = 16; break; } break; case 17: // case _box_0.lineStart = t4 + 1; ++currentLineIndent; state = C._LicenseEntryWithLineBreaksParserState_0; // goto break c$1 $async$goto = 12; break; case 18: // case _box_0.lineStart = t4 + 1; currentLineIndent += 8; state = C._LicenseEntryWithLineBreaksParserState_0; // goto break c$1 $async$goto = 12; break; case 19: // case $async$goto = lines.length !== 0 ? 22 : 23; break; case 22: // then $async$goto = 24; return getParagraph.call$0(); case 24: // after yield case 23: // join t4 = _box_0.currentPosition; if (t1[t4] === "\r" && t4 < t3 && t1[t4 + 1] === "\n") t4 = _box_0.currentPosition = t4 + 1; _box_0.currentParagraphIndentation = null; _box_0.lineStart = t4 + 1; lastLineIndent = 0; currentLineIndent = 0; state = C._LicenseEntryWithLineBreaksParserState_0; // goto break c$1 $async$goto = 12; break; case 20: // case ++currentLineIndent; target = 5; // goto for condition $async$goto = 13; break; case 21: // case $async$goto = lines.length !== 0 && currentLineIndent > lastLineIndent ? 25 : 26; break; case 25: // then $async$goto = 27; return getParagraph.call$0(); case 27: // after yield _box_0.currentParagraphIndentation = null; case 26: // join if (_box_0.currentParagraphIndentation == null) if (currentLineIndent > 10) _box_0.currentParagraphIndentation = -1; else _box_0.currentParagraphIndentation = C.JSInt_methods._tdivFast$1(currentLineIndent, 3); state = C._LicenseEntryWithLineBreaksParserState_1; // goto break c$1 $async$goto = 12; break; case 16: // after switch // goto for condition $async$goto = 13; break; case 14: // after for case 12: // break c$1 // goto break c$0 $async$goto = 4; break; case 10: // case case 28: // switch switch (t1[t4]) { case "\n": // goto case $async$goto = 30; break; case "\f": // goto case $async$goto = 31; break; default: // goto default $async$goto = 32; break; } break; case 30: // case addLine.call$0(); _box_0.lineStart = _box_0.currentPosition + 1; lastLineIndent = currentLineIndent; currentLineIndent = 0; state = C._LicenseEntryWithLineBreaksParserState_0; // goto after switch $async$goto = 29; break; case 31: // case addLine.call$0(); $async$goto = 33; return getParagraph.call$0(); case 33: // after yield _box_0.currentParagraphIndentation = null; _box_0.lineStart = _box_0.currentPosition + 1; lastLineIndent = 0; currentLineIndent = 0; state = C._LicenseEntryWithLineBreaksParserState_0; // goto after switch $async$goto = 29; break; case 32: // default state = C._LicenseEntryWithLineBreaksParserState_1; case 29: // after switch // goto break c$0 $async$goto = 4; break; case 11: // case throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); case 8: // after switch // goto for condition $async$goto = 5; break; case 6: // after for case 4: // break c$0 t4 = ++_box_0.currentPosition; // goto for condition $async$goto = 2; break; case 3: // after for case 34: // switch switch (state) { case C._LicenseEntryWithLineBreaksParserState_0: // goto case $async$goto = 36; break; case C._LicenseEntryWithLineBreaksParserState_1: // goto case $async$goto = 37; break; default: // goto default $async$goto = 38; break; } break; case 36: // case $async$goto = lines.length !== 0 ? 39 : 40; break; case 39: // then $async$goto = 41; return getParagraph.call$0(); case 41: // after yield case 40: // join // goto after switch $async$goto = 35; break; case 37: // case addLine.call$0(); $async$goto = 42; return getParagraph.call$0(); case 42: // after yield // goto after switch $async$goto = 35; break; case 38: // default throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); case 35: // after switch // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.LicenseParagraph); }, text$0: function($receiver) { return this.text.call$0(); } }; F.LicenseEntryWithLineBreaks_paragraphs_addLine.prototype = { call$0: function() { var t1 = this._box_0; this.lines.push(C.JSString_methods.substring$2(this.$this.text, t1.lineStart, t1.currentPosition)); }, $signature: 0 }; F.LicenseEntryWithLineBreaks_paragraphs_getParagraph.prototype = { call$0: function() { var t1 = this.lines, t2 = C.JSArray_methods.join$1(t1, " "), t3 = this._box_0.currentParagraphIndentation; t3.toString; C.JSArray_methods.set$length(t1, 0); return new F.LicenseParagraph(t2, t3); }, $signature: 1326 }; B.AbstractNode.prototype = { redepthChild$1: function(child) { var t1 = child._node$_depth, t2 = this._node$_depth; if (t1 <= t2) { child._node$_depth = t2 + 1; child.redepthChildren$0(); } }, redepthChildren$0: function() { }, get$owner: function() { return this._node$_owner; }, attach$1: function(owner) { this._node$_owner = owner; }, detach$0: function(_) { this._node$_owner = null; }, get$parent: function(_) { return this._node$_parent; }, adoptChild$1: function(child) { var t1; child._node$_parent = this; t1 = this._node$_owner; if (t1 != null) child.attach$1(t1); this.redepthChild$1(child); }, dropChild$1: function(child) { child._node$_parent = null; if (this._node$_owner != null) child.detach$0(0); } }; R.ObserverList.prototype = { get$_observer_list$_set: function() { var _this = this, t1 = _this.__ObserverList__set; if (t1 === $) { t1 = P.HashSet_HashSet(_this.$ti._precomputed1); if (_this.__ObserverList__set === $) _this.__ObserverList__set = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_set")); } return t1; }, add$1: function(_, item) { this._isDirty = true; this._observer_list$_list.push(item); }, remove$1: function(_, item) { this._isDirty = true; this.get$_observer_list$_set().clear$0(0); return C.JSArray_methods.remove$1(this._observer_list$_list, item); }, contains$1: function(_, element) { var _this = this, t1 = _this._observer_list$_list; if (t1.length < 3) return C.JSArray_methods.contains$1(t1, element); if (_this._isDirty) { _this.get$_observer_list$_set().addAll$1(0, t1); _this._isDirty = false; } return _this.get$_observer_list$_set().contains$1(0, element); }, get$iterator: function(_) { var t1 = this._observer_list$_list; return new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); }, get$isEmpty: function(_) { return this._observer_list$_list.length === 0; }, get$isNotEmpty: function(_) { return this._observer_list$_list.length !== 0; } }; R.HashedObserverList.prototype = { add$1: function(_, item) { var t1 = this._observer_list$_map, t2 = t1.$index(0, item); t1.$indexSet(0, item, (t2 == null ? 0 : t2) + 1); }, remove$1: function(_, item) { var t1 = this._observer_list$_map, value = t1.$index(0, item); if (value == null) return false; if (value === 1) t1.remove$1(0, item); else t1.$indexSet(0, item, value - 1); return true; }, contains$1: function(_, element) { return this._observer_list$_map.containsKey$1(0, element); }, get$iterator: function(_) { var t1 = this._observer_list$_map; t1 = t1.get$keys(t1); return t1.get$iterator(t1); }, get$isEmpty: function(_) { var t1 = this._observer_list$_map; return t1.get$isEmpty(t1); }, get$isNotEmpty: function(_) { var t1 = this._observer_list$_map; return t1.get$isNotEmpty(t1); } }; T.TargetPlatform.prototype = { toString$0: function(_) { return this._platform$_name; } }; G.WriteBuffer.prototype = { get$_eightBytesAsList: function() { var t1 = this.__WriteBuffer__eightBytesAsList; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_eightBytesAsList")) : t1; }, _alignTo$1: function(alignment) { var t1, i, mod = C.JSInt_methods.$mod(this._serialization$_buffer._typed_buffer$_length, alignment); if (mod !== 0) for (t1 = alignment - mod, i = 0; i < t1; ++i) this._serialization$_buffer._typed_buffer$_add$1(0, 0); }, done$0: function() { var t1 = this._serialization$_buffer, t2 = t1._typed_buffer$_buffer, result = H.NativeByteData_NativeByteData$view(t2.buffer, 0, t1._typed_buffer$_length * t2.BYTES_PER_ELEMENT); this._serialization$_buffer = null; return result; } }; G.ReadBuffer.prototype = { getUint8$0: function(_) { return J.getUint8$1$x(this.data, this._serialization$_position++); }, getInt64$0: function(_) { var t1 = this._serialization$_position, t2 = $.$get$Endian_host(), value = J.getInt64$2$x(this.data, t1, t2); this._serialization$_position += 8; return value; }, getUint8List$1: function($length) { var _this = this, t1 = _this.data, t2 = J.getInterceptor$x(t1), list = J.asUint8List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + _this._serialization$_position, $length); _this._serialization$_position = _this._serialization$_position + $length; return list; }, _alignTo$1: function(alignment) { var t1 = this._serialization$_position, mod = C.JSInt_methods.$mod(t1, alignment); if (mod !== 0) this._serialization$_position = t1 + (alignment - mod); } }; R.StackFrame.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.number, _this.$package, _this.line, _this.column, _this.className, _this.method, _this.source, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof R.StackFrame && other.number === _this.number && other.$package == _this.$package && other.line === _this.line && other.column === _this.column && other.className == _this.className && other.method == _this.method && other.source === _this.source; }, toString$0: function(_) { var _this = this; return "StackFrame(#" + _this.number + ", " + _this.packageScheme + ":" + H.S(_this.$package) + "/" + _this.packagePath + ":" + _this.line + ":" + _this.column + ", className: " + H.S(_this.className) + ", method: " + H.S(_this.method) + ")"; } }; R.StackFrame_fromStackString_closure.prototype = { call$1: function(line) { return line.length !== 0; }, $signature: 73 }; O.SynchronousFuture.prototype = { catchError$2$test: function(onError, test) { return new P._Future($.Zone__current, this.$ti._eval$1("_Future<1>")); }, catchError$1: function(onError) { return this.catchError$2$test(onError, null); }, then$1$2$onError: function(_, onValue, onError, $R) { var result = onValue.call$1(this._synchronous_future$_value); if ($R._eval$1("Future<0>")._is(result)) return result; return new O.SynchronousFuture($R._as(result), $R._eval$1("SynchronousFuture<0>")); }, then$1$1: function($receiver, onValue, $R) { return this.then$1$2$onError($receiver, onValue, null, $R); }, whenComplete$1: function(action) { var result, e, stack, t1, exception, _this = this; try { result = action.call$0(); if (type$.Future_dynamic._is(result)) { t1 = J.then$1$1$x(result, new O.SynchronousFuture_whenComplete_closure(_this), _this.$ti._precomputed1); return t1; } return _this; } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); t1 = P.Future_Future$error(e, stack, _this.$ti._precomputed1); return t1; } }, $isFuture: 1 }; O.SynchronousFuture_whenComplete_closure.prototype = { call$1: function(value) { return this.$this._synchronous_future$_value; }, $signature: function() { return this.$this.$ti._eval$1("1(@)"); } }; D.GestureDisposition.prototype = { toString$0: function(_) { return this._arena$_name; } }; D.GestureArenaMember.prototype = {}; D.GestureArenaEntry.prototype = { resolve$1: function(disposition) { this._arena._resolve$3(this._arena$_pointer, this._member, disposition); } }; D._GestureArena.prototype = { add$1: function(_, member) { this.members.push(member); }, toString$0: function(_) { var _this = this, t1 = _this.members; t1 = t1.length === 0 ? "" : new H.MappedListIterable(t1, new D._GestureArena_toString_closure(_this), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$1(0, ", "); if (_this.isOpen) t1 += " [open]"; if (_this.isHeld) t1 += " [held]"; if (_this.hasPendingSweep) t1 += " [hasPendingSweep]"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; D._GestureArena_toString_closure.prototype = { call$1: function(member) { if (member == this.$this.eagerWinner) return H.S(member) + " (eager winner)"; return H.S(member); }, $signature: 1328 }; D.GestureArenaManager.prototype = { add$2: function(_, pointer, member) { this._arenas.putIfAbsent$2(0, pointer, new D.GestureArenaManager_add_closure(this, pointer)).members.push(member); return new D.GestureArenaEntry(this, pointer, member); }, close$1: function(_, pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isOpen = false; this._tryToResolveArena$2(pointer, state); }, sweep$1: function(pointer) { var i, t1 = this._arenas, state = t1.$index(0, pointer); if (state == null) return; if (state.isHeld) { state.hasPendingSweep = true; return; } t1.remove$1(0, pointer); t1 = state.members; if (t1.length !== 0) { C.JSArray_methods.get$first(t1).acceptGesture$1(pointer); for (i = 1; i < t1.length; ++i) t1[i].rejectGesture$1(pointer); } }, hold$1: function(pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isHeld = true; }, release$1: function(_, pointer) { var state = this._arenas.$index(0, pointer); if (state == null) return; state.isHeld = false; if (state.hasPendingSweep) this.sweep$1(pointer); }, _resolve$3: function(pointer, member, disposition) { var state = this._arenas.$index(0, pointer); if (state == null) return; if (disposition === C.GestureDisposition_1) { C.JSArray_methods.remove$1(state.members, member); member.rejectGesture$1(pointer); if (!state.isOpen) this._tryToResolveArena$2(pointer, state); } else if (state.isOpen) { if (state.eagerWinner == null) state.eagerWinner = member; } else this._resolveInFavorOf$3(pointer, state, member); }, _tryToResolveArena$2: function(pointer, state) { var t1 = state.members.length; if (t1 === 1) P.scheduleMicrotask(new D.GestureArenaManager__tryToResolveArena_closure(this, pointer, state)); else if (t1 === 0) this._arenas.remove$1(0, pointer); else { t1 = state.eagerWinner; if (t1 != null) this._resolveInFavorOf$3(pointer, state, t1); } }, _resolveByDefault$2: function(pointer, state) { var t1 = this._arenas; if (!t1.containsKey$1(0, pointer)) return; t1.remove$1(0, pointer); C.JSArray_methods.get$first(state.members).acceptGesture$1(pointer); }, _resolveInFavorOf$3: function(pointer, state, member) { var t1, t2, _i, rejectedMember; this._arenas.remove$1(0, pointer); for (t1 = state.members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { rejectedMember = t1[_i]; if (rejectedMember != member) rejectedMember.rejectGesture$1(pointer); } member.acceptGesture$1(pointer); } }; D.GestureArenaManager_add_closure.prototype = { call$0: function() { return new D._GestureArena(H.setRuntimeTypeInfo([], type$.JSArray_GestureArenaMember)); }, $signature: 1355 }; D.GestureArenaManager__tryToResolveArena_closure.prototype = { call$0: function() { return this.$this._resolveByDefault$2(this.pointer, this.state); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N._Resampler.prototype = { stop$0: function(_) { var t1, t2, t3; for (t1 = this._resamplers, t2 = t1.get$values(t1), t2 = t2.get$iterator(t2), t3 = this._handlePointerEvent; t2.moveNext$0();) t2.get$current(t2).stop$1(0, t3); t1.clear$0(0); this._frameTime = C.Duration_0; } }; N.GestureBinding.prototype = { _handlePointerDataPacket$1: function(packet) { var t1 = packet.data, t2 = $.$get$window()._debugDevicePixelRatio; this.GestureBinding__pendingPointerEvents.addAll$1(0, G.PointerEventConverter_expand(t1, t2 == null ? H.EnginePlatformDispatcher_browserDevicePixelRatio() : t2)); if (this._lockCount <= 0) this._flushPointerEventQueue$0(); }, cancelPointer$1: function(pointer) { var t1 = this.GestureBinding__pendingPointerEvents; if (t1._head === t1._tail && this._lockCount <= 0) P.scheduleMicrotask(this.get$_flushPointerEventQueue()); t1.addFirst$1(F.PointerCancelEvent$(0, 0, 0, 0, 0, C.PointerDeviceKind_0, false, 0, pointer, C.Offset_0_0, 1, 1, 0, 0, 0, 0, 0, 0, C.Duration_0)); }, _flushPointerEventQueue$0: function() { for (var t1 = this.GestureBinding__pendingPointerEvents; !t1.get$isEmpty(t1);) this.handlePointerEvent$1(t1.removeFirst$0()); }, handlePointerEvent$1: function($event) { this.get$_resampler().stop$0(0); this._handlePointerEventImmediately$1($event); }, _handlePointerEventImmediately$1: function($event) { var hitTestResult, t2, _this = this, t1 = type$.PointerDownEvent._is($event); if (t1 || type$.PointerSignalEvent._is($event) || type$.PointerHoverEvent._is($event)) { hitTestResult = O.HitTestResult$(); t2 = $event.get$position($event); _this.get$_pipelineOwner()._rootNode.hitTest$2$position(hitTestResult, t2); _this.super$GestureBinding$hitTest(hitTestResult, t2); if (t1) _this.GestureBinding__hitTests.$indexSet(0, $event.get$pointer(), hitTestResult); t1 = hitTestResult; } else if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) { hitTestResult = _this.GestureBinding__hitTests.remove$1(0, $event.get$pointer()); t1 = hitTestResult; } else t1 = $event.get$down() ? _this.GestureBinding__hitTests.$index(0, $event.get$pointer()) : null; if (t1 != null || type$.PointerAddedEvent._is($event) || type$.PointerRemovedEvent._is($event)) _this.dispatchEvent$2(0, $event, t1); }, hitTest$2: function(result, position) { var t1 = new O.HitTestEntry(this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); }, dispatchEvent$2: function(_, $event, hitTestResult) { var exception, stack, entry, exception0, stack0, t1, t2, _i, t3, t4, _s15_ = "gesture library"; if (hitTestResult == null) { try { this.GestureBinding_pointerRouter.route$1($event); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); U.FlutterError_reportError(N.FlutterErrorDetailsForPointerEventDispatcher$(U.ErrorDescription$("while dispatching a non-hit-tested pointer event"), $event, exception, null, new N.GestureBinding_dispatchEvent_closure($event), _s15_, stack)); } return; } for (t1 = hitTestResult._hit_test$_path, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { entry = t1[_i]; try { J.get$target$x(entry).handleEvent$2($event.transformed$1(entry._transform), entry); } catch (exception) { exception0 = H.unwrapException(exception); stack0 = H.getTraceFromException(exception); t3 = U.ErrorDescription$("while dispatching a pointer event"); t4 = $.FlutterError_onError; if (t4 != null) t4.call$1(new N.FlutterErrorDetailsForPointerEventDispatcher(exception0, stack0, _s15_, t3, new N.GestureBinding_dispatchEvent_closure0($event, entry), false)); } } }, handleEvent$2: function($event, entry) { var _this = this; _this.GestureBinding_pointerRouter.route$1($event); if (type$.PointerDownEvent._is($event)) _this.GestureBinding_gestureArena.close$1(0, $event.get$pointer()); else if (type$.PointerUpEvent._is($event)) _this.GestureBinding_gestureArena.sweep$1($event.get$pointer()); else if (type$.PointerSignalEvent._is($event)) _this.GestureBinding_pointerSignalResolver.resolve$1($event); }, _handleSampleTimeChanged$0: function() { if (this._lockCount <= 0) this.get$_resampler().stop$0(0); }, get$_resampler: function() { var _this = this, t1 = _this.GestureBinding___GestureBinding__resampler; if (t1 === $) { $.$get$Stopwatch__frequency(); t1 = _this.GestureBinding___GestureBinding__resampler = new N._Resampler(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.PointerEventResampler), C.Duration_0, new P.Stopwatch(), C.Duration_0, C.Duration_0, _this.get$_handlePointerEventImmediately(), _this.get$_handleSampleTimeChanged(), C.Duration_16667); } return t1; } }; N.GestureBinding_dispatchEvent_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return Y.DiagnosticsProperty$("Event", $async$self.event, true, C.C__NoDefaultValue, null, false, null, null, C.DiagnosticLevel_3, null, false, true, true, C.DiagnosticsTreeStyle_9, null, type$.PointerEvent); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; N.GestureBinding_dispatchEvent_closure0.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return Y.DiagnosticsProperty$("Event", $async$self.event, true, C.C__NoDefaultValue, null, false, null, null, C.DiagnosticLevel_3, null, false, true, true, C.DiagnosticsTreeStyle_9, null, type$.PointerEvent); case 2: // after yield t1 = $async$self.entry; $async$goto = 3; return Y.DiagnosticsProperty$("Target", t1.get$target(t1), true, C.C__NoDefaultValue, null, false, null, null, C.DiagnosticLevel_3, null, false, true, true, C.DiagnosticsTreeStyle_9, null, type$.HitTestTarget); case 3: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; N.FlutterErrorDetailsForPointerEventDispatcher.prototype = {}; V.Drag.prototype = { update$1: function(_, details) { }, end$1: function(_, details) { }, cancel$0: function(_) { } }; O.DragDownDetails.prototype = { toString$0: function(_) { return "DragDownDetails(" + H.S(this.globalPosition) + ")"; } }; O.DragStartDetails.prototype = { toString$0: function(_) { return "DragStartDetails(" + H.S(this.globalPosition) + ")"; } }; O.DragUpdateDetails.prototype = { toString$0: function(_) { return "DragUpdateDetails(" + H.S(this.delta) + ")"; } }; O.DragEndDetails.prototype = { toString$0: function(_) { return "DragEndDetails(" + this.velocity.toString$0(0) + ")"; } }; F.PointerEvent0.prototype = { get$localPosition: function() { return this.position; }, get$localDelta: function() { return this.delta; }, get$timeStamp: function(receiver) { return this.timeStamp; }, get$pointer: function() { return this.pointer; }, get$kind: function(receiver) { return this.kind; }, get$device: function(receiver) { return this.device; }, get$position: function(receiver) { return this.position; }, get$delta: function() { return this.delta; }, get$buttons: function(receiver) { return this.buttons; }, get$down: function() { return this.down; }, get$obscured: function() { return this.obscured; }, get$pressure: function(receiver) { return this.pressure; }, get$pressureMin: function() { return this.pressureMin; }, get$pressureMax: function() { return this.pressureMax; }, get$distance: function() { return this.distance; }, get$distanceMax: function() { return this.distanceMax; }, get$size: function(receiver) { return this.size; }, get$radiusMajor: function() { return this.radiusMajor; }, get$radiusMinor: function() { return this.radiusMinor; }, get$radiusMin: function() { return this.radiusMin; }, get$radiusMax: function() { return this.radiusMax; }, get$orientation: function(receiver) { return this.orientation; }, get$tilt: function() { return this.tilt; }, get$synthesized: function() { return this.synthesized; }, get$transform: function(receiver) { return this.transform; } }; F._PointerEventDescription.prototype = {}; F._AbstractPointerEvent.prototype = {$isPointerEvent0: 1}; F._TransformedPointerEvent.prototype = { get$timeStamp: function(_) { return this.get$original().timeStamp; }, get$pointer: function() { return this.get$original().pointer; }, get$kind: function(_) { return this.get$original().kind; }, get$device: function(_) { return this.get$original().device; }, get$position: function(_) { return this.get$original().position; }, get$delta: function() { return this.get$original().delta; }, get$buttons: function(_) { return this.get$original().buttons; }, get$down: function() { return this.get$original().down; }, get$obscured: function() { this.get$original(); return false; }, get$pressure: function(_) { return this.get$original().pressure; }, get$pressureMin: function() { return this.get$original().pressureMin; }, get$pressureMax: function() { return this.get$original().pressureMax; }, get$distance: function() { return this.get$original().distance; }, get$distanceMax: function() { return this.get$original().distanceMax; }, get$size: function(_) { return this.get$original().size; }, get$radiusMajor: function() { return this.get$original().radiusMajor; }, get$radiusMinor: function() { return this.get$original().radiusMinor; }, get$radiusMin: function() { return this.get$original().radiusMin; }, get$radiusMax: function() { return this.get$original().radiusMax; }, get$orientation: function(_) { return this.get$original().orientation; }, get$tilt: function() { return this.get$original().tilt; }, get$synthesized: function() { return this.get$original().synthesized; }, get$localPosition: function() { var _this = this, t1 = _this.___TransformedPointerEvent_localPosition; if (t1 === $) { t1 = F.PointerEvent_transformPosition(_this.get$transform(_this), _this.get$original().position); if (_this.___TransformedPointerEvent_localPosition === $) _this.___TransformedPointerEvent_localPosition = t1; else t1 = H.throwExpression(H.LateError$fieldADI("localPosition")); } return t1; }, get$localDelta: function() { var t2, t3, _this = this, t1 = _this.___TransformedPointerEvent_localDelta; if (t1 === $) { t1 = _this.get$transform(_this); t2 = _this.get$original(); t3 = _this.get$original(); t3 = F.PointerEvent_transformDeltaViaPositions(t1, _this.get$localPosition(), t2.delta, t3.position); if (_this.___TransformedPointerEvent_localDelta === $) { _this.___TransformedPointerEvent_localDelta = t3; t1 = t3; } else t1 = H.throwExpression(H.LateError$fieldADI("localDelta")); } return t1; } }; F._CopyPointerAddedEvent.prototype = {}; F.PointerAddedEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerAddedEvent(this, transform); } }; F._TransformedPointerAddedEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerAddedEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerRemovedEvent.prototype = {}; F.PointerRemovedEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerRemovedEvent(this, transform); } }; F._TransformedPointerRemovedEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerRemovedEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerHoverEvent.prototype = {}; F.PointerHoverEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerHoverEvent(this, transform); } }; F._TransformedPointerHoverEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerHoverEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerEnterEvent.prototype = {}; F.PointerEnterEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerEnterEvent(this, transform); } }; F._TransformedPointerEnterEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerEnterEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerExitEvent.prototype = {}; F.PointerExitEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerExitEvent(this, transform); } }; F._TransformedPointerExitEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerExitEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerDownEvent.prototype = {}; F.PointerDownEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerDownEvent(this, transform); } }; F._TransformedPointerDownEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerDownEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerMoveEvent.prototype = {}; F.PointerMoveEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerMoveEvent(this, transform); } }; F._TransformedPointerMoveEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerMoveEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerUpEvent.prototype = {}; F.PointerUpEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerUpEvent(this, transform); } }; F._TransformedPointerUpEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerUpEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F.PointerSignalEvent.prototype = {}; F._CopyPointerScrollEvent.prototype = {}; F.PointerScrollEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerScrollEvent(this, transform); }, get$scrollDelta: function() { return this.scrollDelta; } }; F._TransformedPointerScrollEvent.prototype = { get$scrollDelta: function() { return this.original.scrollDelta; }, transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerSignalEvent: 1, $isPointerScrollEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._CopyPointerCancelEvent.prototype = {}; F.PointerCancelEvent.prototype = { transformed$1: function(transform) { if (transform == null || transform.$eq(0, this.transform)) return this; return new F._TransformedPointerCancelEvent(this, transform); } }; F._TransformedPointerCancelEvent.prototype = { transformed$1: function(transform) { return this.original.transformed$1(transform); }, $isPointerCancelEvent: 1, get$original: function() { return this.original; }, get$transform: function(receiver) { return this.transform; } }; F._PointerAddedEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent.prototype = {}; F._PointerCancelEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent.prototype = {}; F._PointerDownEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent.prototype = {}; F._PointerEnterEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent.prototype = {}; F._PointerEvent_Object_Diagnosticable.prototype = {}; F._PointerExitEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent.prototype = {}; F._PointerHoverEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent.prototype = {}; F._PointerMoveEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent.prototype = {}; F._PointerRemovedEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent.prototype = {}; F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription.prototype = {}; F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent.prototype = {}; F._PointerUpEvent_PointerEvent__PointerEventDescription.prototype = {}; F._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent.prototype = {}; F.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent.prototype = {}; F.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent.prototype = {}; F.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent.prototype = {}; F.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent.prototype = {}; F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable.prototype = {}; F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription.prototype = {}; F.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent.prototype = {}; F.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent.prototype = {}; F.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent.prototype = {}; F.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent.prototype = {}; F.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent.prototype = {}; F.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent.prototype = {}; K._ForceState.prototype = { toString$0: function(_) { return this._force_press$_name; } }; K.ForcePressDetails.prototype = {}; K.ForcePressGestureRecognizer.prototype = { get$_lastPosition: function() { var t1 = this.__ForcePressGestureRecognizer__lastPosition; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_lastPosition")) : t1; }, addAllowedPointer$1: function($event) { var _this = this, t1 = $event.get$pressureMax(); if (t1 <= 1) _this.resolve$1(C.GestureDisposition_1); else { _this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); if (_this._force_press$_state === C._ForceState_0) { _this._force_press$_state = C._ForceState_1; _this.__ForcePressGestureRecognizer__lastPosition = new S.OffsetPair($event.get$localPosition(), $event.get$position($event)); } } }, handleEvent$1: function($event) { var pressure, _this = this; if (type$.PointerMoveEvent._is($event) || type$.PointerDownEvent._is($event)) { pressure = K.ForcePressGestureRecognizer__inverseLerp($event.get$pressureMin(), $event.get$pressureMax(), $event.get$pressure($event)); _this.__ForcePressGestureRecognizer__lastPosition = new S.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this.__ForcePressGestureRecognizer__lastPressure = pressure; if (_this._force_press$_state === C._ForceState_1) if (pressure > 0.4) { _this._force_press$_state = C._ForceState_3; _this.resolve$1(C.GestureDisposition_0); } else if ($event.get$delta().get$distanceSquared() > F.computeHitSlop($event.get$kind($event))) _this.resolve$1(C.GestureDisposition_1); if (pressure > 0.4 && _this._force_press$_state === C._ForceState_2) { _this._force_press$_state = C._ForceState_3; if (_this.onStart != null) _this.invokeCallback$2("onStart", new K.ForcePressGestureRecognizer_handleEvent_closure(_this, pressure)); } } _this.stopTrackingIfPointerNoLongerDown$1($event); }, acceptGesture$1: function(pointer) { var _this = this, t1 = _this._force_press$_state; if (t1 === C._ForceState_1) t1 = _this._force_press$_state = C._ForceState_2; if (_this.onStart != null && t1 === C._ForceState_3) _this.invokeCallback$2("onStart", new K.ForcePressGestureRecognizer_acceptGesture_closure(_this)); }, didStopTrackingLastPointer$1: function(pointer) { var _this = this, t1 = _this._force_press$_state, wasAccepted = t1 === C._ForceState_3 || t1 === C._ForceState_4; if (t1 === C._ForceState_1) { _this.resolve$1(C.GestureDisposition_1); return; } if (wasAccepted && _this.onEnd != null) if (_this.onEnd != null) _this.invokeCallback$2("onEnd", new K.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure(_this)); _this._force_press$_state = C._ForceState_0; }, rejectGesture$1: function(pointer) { this.stopTrackingPointer$1(pointer); this.didStopTrackingLastPointer$1(pointer); } }; K.ForcePressGestureRecognizer_handleEvent_closure.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1.onStart; t2.toString; t3 = t1.get$_lastPosition().global; t1.get$_lastPosition().toString; return t2.call$1(new K.ForcePressDetails(t3)); }, $signature: 0 }; K.ForcePressGestureRecognizer_acceptGesture_closure.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1.onStart; t2.toString; if (t1.__ForcePressGestureRecognizer__lastPressure === $) H.throwExpression(H.LateError$fieldNI("_lastPressure")); t3 = t1.get$_lastPosition().global; t1.get$_lastPosition().toString; return t2.call$1(new K.ForcePressDetails(t3)); }, $signature: 0 }; K.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1.onEnd; t2.toString; t3 = t1.get$_lastPosition().global; t1.get$_lastPosition().toString; return t2.call$1(new K.ForcePressDetails(t3)); }, $signature: 0 }; O.HitTestEntry.prototype = { toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + this.get$target(this).toString$0(0) + ")"; }, get$target: function(receiver) { return this.target; } }; O._TransformPart.prototype = {}; O._MatrixTransformPart.prototype = { multiply$1: function(_, rhs) { return type$.Matrix4._as(this.matrix.$mul(0, rhs)); } }; O._OffsetTransformPart.prototype = { multiply$1: function(_, rhs) { var t3, tx, ty, tz, t4, _null = null, t1 = new Float64Array(16), t2 = new E.Matrix4(t1); t2.setFrom$1(rhs); t3 = this.offset; tx = t3._dx; ty = t3._dy; if (typeof tx == "number") tz = 0; else { H.throwExpression(P.UnimplementedError$(_null)); tz = _null; ty = tz; tx = ty; } t3 = t1[0]; t4 = t1[3]; t1[0] = t3 + tx * t4; t1[1] = t1[1] + ty * t4; t1[2] = t1[2] + tz * t4; t1[3] = t4; t4 = t1[4]; t3 = t1[7]; t1[4] = t4 + tx * t3; t1[5] = t1[5] + ty * t3; t1[6] = t1[6] + tz * t3; t1[7] = t3; t3 = t1[8]; t4 = t1[11]; t1[8] = t3 + tx * t4; t1[9] = t1[9] + ty * t4; t1[10] = t1[10] + tz * t4; t1[11] = t4; t4 = t1[12]; t3 = t1[15]; t1[12] = t4 + tx * t3; t1[13] = t1[13] + ty * t3; t1[14] = t1[14] + tz * t3; t1[15] = t3; return t2; } }; O.HitTestResult.prototype = { _globalizeTransforms$0: function() { var t2, last, t3, _i, t1 = this._localTransforms; if (t1.length === 0) return; t2 = this._transforms; last = C.JSArray_methods.get$last(t2); for (t3 = t1.length, _i = 0; _i < t1.length; t1.length === t3 || (0, H.throwConcurrentModificationError)(t1), ++_i) { last = t1[_i].multiply$1(0, last); t2.push(last); } C.JSArray_methods.set$length(t1, 0); }, add$1: function(_, entry) { this._globalizeTransforms$0(); entry._transform = C.JSArray_methods.get$last(this._transforms); this._hit_test$_path.push(entry); }, popTransform$0: function() { var t1 = this._localTransforms; if (t1.length !== 0) t1.pop(); else this._transforms.pop(); }, toString$0: function(_) { var t1 = this._hit_test$_path; return "HitTestResult(" + (t1.length === 0 ? "" : C.JSArray_methods.join$1(t1, ", ")) + ")"; } }; T.LongPressStartDetails.prototype = {}; T.LongPressMoveUpdateDetails.prototype = {}; T.LongPressEndDetails.prototype = {}; T.LongPressGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { var _this = this; switch ($event.get$buttons($event)) { case 1: if (_this.onLongPressStart == null && _this.onLongPress == null && _this.onLongPressMoveUpdate == null && _this.onLongPressEnd == null && true) return false; break; case 2: return false; case 4: return false; default: return false; } return _this.super$GestureRecognizer$isPointerAllowed($event); }, didExceedDeadline$0: function() { var t1, _this = this; _this.resolve$1(C.GestureDisposition_0); _this._longPressAccepted = true; t1 = _this.primaryPointer; t1.toString; _this.super$PrimaryPointerGestureRecognizer$acceptGesture(t1); _this._checkLongPressStart$0(); }, handlePrimaryPointer$1: function($event) { var t1, _this = this; if (!$event.get$synthesized()) { if (type$.PointerDownEvent._is($event)) { t1 = new R.VelocityTracker($event.get$kind($event), P.List_List$filled(20, null, false, type$.nullable__PointAtTime)); _this._velocityTracker = t1; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } if (type$.PointerMoveEvent._is($event)) { t1 = _this._velocityTracker; t1.toString; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } } if (type$.PointerUpEvent._is($event)) { if (_this._longPressAccepted) _this._checkLongPressEnd$1($event); else _this.resolve$1(C.GestureDisposition_1); _this._long_press$_reset$0(); } else if (type$.PointerCancelEvent._is($event)) _this._long_press$_reset$0(); else if (type$.PointerDownEvent._is($event)) { _this._longPressOrigin = new S.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this._long_press$_initialButtons = $event.get$buttons($event); } else if (type$.PointerMoveEvent._is($event)) if ($event.get$buttons($event) != _this._long_press$_initialButtons) { _this.resolve$1(C.GestureDisposition_1); t1 = _this.primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } else if (_this._longPressAccepted) _this._checkLongPressMoveUpdate$1($event); }, _checkLongPressStart$0: function() { var t1, t2, _this = this; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressStart != null) { t1 = _this._longPressOrigin; t2 = t1.global; t1 = t1.local; _this.invokeCallback$2("onLongPressStart", new T.LongPressGestureRecognizer__checkLongPressStart_closure(_this, new T.LongPressStartDetails(t2, t1 == null ? t2 : t1))); } t1 = _this.onLongPress; if (t1 != null) _this.invokeCallback$2("onLongPress", t1); break; case 2: break; case 4: break; } }, _checkLongPressMoveUpdate$1: function($event) { var _this = this, t1 = $event.get$position($event), t2 = $event.get$localPosition(), t3 = $event.get$position($event).$sub(0, _this._longPressOrigin.global); $event.get$localPosition().$sub(0, _this._longPressOrigin.local); if (t2 == null) t2 = t1; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressMoveUpdate != null) _this.invokeCallback$2("onLongPressMoveUpdate", new T.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure(_this, new T.LongPressMoveUpdateDetails(t1, t2, t3))); break; case 2: break; case 4: break; } }, _checkLongPressEnd$1: function($event) { var _this = this, estimate = _this._velocityTracker.getVelocityEstimate$0(), velocity = estimate == null ? C.Velocity_Offset_0_0 : new R.Velocity(estimate.pixelsPerSecond), t1 = $event.get$position($event), t2 = $event.get$localPosition(); t1 = t2 == null ? t1 : t2; _this._velocityTracker = null; switch (_this._long_press$_initialButtons) { case 1: if (_this.onLongPressEnd != null) _this.invokeCallback$2("onLongPressEnd", new T.LongPressGestureRecognizer__checkLongPressEnd_closure(_this, new T.LongPressEndDetails(t1, velocity))); break; case 2: break; case 4: break; } }, _long_press$_reset$0: function() { var _this = this; _this._longPressAccepted = false; _this._velocityTracker = _this._long_press$_initialButtons = _this._longPressOrigin = null; }, resolve$1: function(disposition) { if (this._longPressAccepted && disposition === C.GestureDisposition_1) this._long_press$_reset$0(); this.super$OneSequenceGestureRecognizer$resolve(disposition); }, acceptGesture$1: function(pointer) { } }; T.LongPressGestureRecognizer__checkLongPressStart_closure.prototype = { call$0: function() { return this.$this.onLongPressStart.call$1(this.details); }, $signature: 0 }; T.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure.prototype = { call$0: function() { return this.$this.onLongPressMoveUpdate.call$1(this.details); }, $signature: 0 }; T.LongPressGestureRecognizer__checkLongPressEnd_closure.prototype = { call$0: function() { return this.$this.onLongPressEnd.call$1(this.details); }, $signature: 0 }; B._Vector.prototype = { $index: function(_, i) { return this._lsq_solver$_elements[i + this._lsq_solver$_offset]; }, $indexSet: function(_, i, value) { this._lsq_solver$_elements[i + this._lsq_solver$_offset] = value; }, $mul: function(_, a) { var t1, t2, t3, result, i; for (t1 = this._lsq_solver$_length, t2 = this._lsq_solver$_elements, t3 = this._lsq_solver$_offset, result = 0, i = 0; i < t1; ++i) result += t2[i + t3] * a._lsq_solver$_elements[i + a._lsq_solver$_offset]; return result; } }; B._Matrix.prototype = {}; B.PolynomialFit.prototype = { get$confidence: function(_) { var t1 = this.__PolynomialFit_confidence; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("confidence")) : t1; } }; B.LeastSquaresSolver.prototype = { solve$1: function(degree) { var t3, result, t4, t5, t6, t7, h, i, j, t8, t9, dot, t10, norm, inverseNorm, wy, i0, yMean, sumSquaredError, sumSquaredTotal, err, term, v, t1 = this.x, t2 = t1.length; if (degree > t2) return null; t3 = degree + 1; result = new B.PolynomialFit(new Float64Array(t3)); t4 = t3 * t2; t5 = new Float64Array(t4); for (t6 = this.w, t7 = 0 * t2, h = 0; h < t2; ++h) { t5[t7 + h] = t6[h]; for (i = 1; i < t3; ++i) t5[i * t2 + h] = t5[(i - 1) * t2 + h] * t1[h]; } t4 = new Float64Array(t4); t7 = new Float64Array(t3 * t3); for (j = 0; j < t3; ++j) { for (t8 = j * t2, h = 0; h < t2; ++h) { t9 = t8 + h; t4[t9] = t5[t9]; } for (i = 0; i < j; ++i) { t9 = i * t2; dot = new B._Vector(t8, t2, t4).$mul(0, new B._Vector(t9, t2, t4)); for (h = 0; h < t2; ++h) { t10 = t8 + h; t4[t10] = t4[t10] - dot * t4[t9 + h]; } } t9 = new B._Vector(t8, t2, t4); norm = Math.sqrt(t9.$mul(0, t9)); if (norm < 1e-10) return null; inverseNorm = 1 / norm; for (h = 0; h < t2; ++h) { t9 = t8 + h; t4[t9] = t4[t9] * inverseNorm; } for (t9 = j * t3, i = 0; i < t3; ++i) { t10 = i < j ? 0 : new B._Vector(t8, t2, t4).$mul(0, new B._Vector(i * t2, t2, t5)); t7[t9 + i] = t10; } } t5 = new Float64Array(t2); wy = new B._Vector(0, t2, t5); for (t8 = this.y, h = 0; h < t2; ++h) t5[h] = t8[h] * t6[h]; for (i = t3 - 1, t5 = result.coefficients, i0 = i; i0 >= 0; --i0) { t5[i0] = new B._Vector(i0 * t2, t2, t4).$mul(0, wy); for (t9 = i0 * t3, j = i; j > i0; --j) t5[i0] = t5[i0] - t7[t9 + j] * t5[j]; t5[i0] = t5[i0] / t7[t9 + i0]; } for (yMean = 0, h = 0; h < t2; ++h) yMean += t8[h]; yMean /= t2; for (sumSquaredError = 0, sumSquaredTotal = 0, h = 0; h < t2; ++h) { t4 = t8[h]; err = t4 - t5[0]; for (term = 1, i = 1; i < t3; ++i) { term *= t1[h]; err -= term * t5[i]; } t7 = t6[h]; t7 *= t7; sumSquaredError += t7 * err * err; v = t4 - yMean; sumSquaredTotal += t7 * v * v; } result.__PolynomialFit_confidence = sumSquaredTotal <= 1e-10 ? 1 : 1 - sumSquaredError / sumSquaredTotal; return result; } }; O._DragState.prototype = { toString$0: function(_) { return this._monodrag$_name; } }; O.DragGestureRecognizer.prototype = { get$_initialPosition: function() { var t1 = this.__DragGestureRecognizer__initialPosition; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_initialPosition")) : t1; }, get$_pendingDragOffset: function() { var t1 = this.__DragGestureRecognizer__pendingDragOffset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pendingDragOffset")) : t1; }, get$_globalDistanceMoved: function() { var t1 = this.__DragGestureRecognizer__globalDistanceMoved; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_globalDistanceMoved")) : t1; }, isPointerAllowed$1: function($event) { var _this = this; if (_this._initialButtons == null) switch ($event.get$buttons($event)) { case 1: if (_this.onDown == null && _this.onStart == null && _this.onUpdate == null && _this.onEnd == null && _this.onCancel == null) return false; break; default: return false; } else if ($event.get$buttons($event) != _this._initialButtons) return false; return _this.super$GestureRecognizer$isPointerAllowed($event); }, addAllowedPointer$1: function($event) { var t1, _this = this; _this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); _this._monodrag$_velocityTrackers.$indexSet(0, $event.get$pointer(), _this.velocityTrackerBuilder.call$1($event)); t1 = _this._monodrag$_state; if (t1 === C._DragState_0) { _this._monodrag$_state = C._DragState_1; t1 = $event.get$position($event); _this.__DragGestureRecognizer__initialPosition = new S.OffsetPair($event.get$localPosition(), t1); _this._initialButtons = $event.get$buttons($event); _this.__DragGestureRecognizer__pendingDragOffset = C.OffsetPair_G6F; _this.__DragGestureRecognizer__globalDistanceMoved = 0; _this._lastPendingEventTimestamp = $event.get$timeStamp($event); _this._monodrag$_lastTransform = $event.get$transform($event); _this._monodrag$_checkDown$0(); } else if (t1 === C._DragState_2) _this.resolve$1(C.GestureDisposition_0); }, handleEvent$1: function($event) { var t1, t2, t3, movedLocally, localToGlobalTransform, _this = this; if (!$event.get$synthesized()) t1 = type$.PointerDownEvent._is($event) || type$.PointerMoveEvent._is($event); else t1 = false; if (t1) { t1 = _this._monodrag$_velocityTrackers.$index(0, $event.get$pointer()); t1.toString; t1.addPosition$2($event.get$timeStamp($event), $event.get$localPosition()); } if (type$.PointerMoveEvent._is($event)) { if ($event.get$buttons($event) != _this._initialButtons) { _this._giveUpPointer$1($event.get$pointer()); return; } if (_this._monodrag$_state === C._DragState_2) { t1 = $event.get$timeStamp($event); t2 = _this._getDeltaForDetails$1($event.get$localDelta()); t3 = _this._getPrimaryValueFromOffset$1($event.get$localDelta()); _this._checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp(t2, $event.get$position($event), $event.get$localPosition(), t3, t1); } else { _this.__DragGestureRecognizer__pendingDragOffset = _this.get$_pendingDragOffset().$add(0, new S.OffsetPair($event.get$localDelta(), $event.get$delta())); _this._lastPendingEventTimestamp = $event.get$timeStamp($event); _this._monodrag$_lastTransform = $event.get$transform($event); movedLocally = _this._getDeltaForDetails$1($event.get$localDelta()); if ($event.get$transform($event) == null) localToGlobalTransform = null; else { t1 = $event.get$transform($event); t1.toString; localToGlobalTransform = E.Matrix4_tryInvert(t1); } t1 = _this.get$_globalDistanceMoved(); t2 = F.PointerEvent_transformDeltaViaPositions(localToGlobalTransform, null, movedLocally, $event.get$localPosition()).get$distance(); t3 = _this._getPrimaryValueFromOffset$1(movedLocally); _this.__DragGestureRecognizer__globalDistanceMoved = t1 + t2 * J.get$sign$in(t3 == null ? 1 : t3); if (_this._hasSufficientGlobalDistanceToAccept$1($event.get$kind($event))) _this.resolve$1(C.GestureDisposition_0); } } if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) _this._giveUpPointer$1($event.get$pointer()); }, acceptGesture$1: function(pointer) { var delta, t1, transform, localUpdateDelta, localToGlobal, globalUpdateDelta, correctedPosition, _this = this; _this._acceptedActivePointers.add$1(0, pointer); if (_this._monodrag$_state !== C._DragState_2) { _this._monodrag$_state = C._DragState_2; delta = _this.get$_pendingDragOffset(); t1 = _this._lastPendingEventTimestamp; t1.toString; transform = _this._monodrag$_lastTransform; switch (_this.dragStartBehavior) { case C.DragStartBehavior_1: _this.__DragGestureRecognizer__initialPosition = _this.get$_initialPosition().$add(0, delta); localUpdateDelta = C.Offset_0_0; break; case C.DragStartBehavior_0: localUpdateDelta = _this._getDeltaForDetails$1(delta.local); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.__DragGestureRecognizer__pendingDragOffset = C.OffsetPair_G6F; _this._monodrag$_lastTransform = _this._lastPendingEventTimestamp = null; _this._checkStart$2(t1, pointer); if (!J.$eq$(localUpdateDelta, C.Offset_0_0) && _this.onUpdate != null) { localToGlobal = transform != null ? E.Matrix4_tryInvert(transform) : null; globalUpdateDelta = F.PointerEvent_transformDeltaViaPositions(localToGlobal, null, localUpdateDelta, _this.get$_initialPosition().local.$add(0, localUpdateDelta)); correctedPosition = _this.get$_initialPosition().$add(0, new S.OffsetPair(localUpdateDelta, globalUpdateDelta)); _this._checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp(localUpdateDelta, correctedPosition.global, correctedPosition.local, _this._getPrimaryValueFromOffset$1(localUpdateDelta), t1); } } }, rejectGesture$1: function(pointer) { this._giveUpPointer$1(pointer); }, didStopTrackingLastPointer$1: function(pointer) { var t1, _this = this; switch (_this._monodrag$_state) { case C._DragState_0: break; case C._DragState_1: _this.resolve$1(C.GestureDisposition_1); t1 = _this.onCancel; if (t1 != null) _this.invokeCallback$2("onCancel", t1); break; case C._DragState_2: _this._checkEnd$1(pointer); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._monodrag$_velocityTrackers.clear$0(0); _this._initialButtons = null; _this._monodrag$_state = C._DragState_0; }, _giveUpPointer$1: function(pointer) { var t1, entry; this.stopTrackingPointer$1(pointer); if (!this._acceptedActivePointers.remove$1(0, pointer)) { t1 = this._recognizer$_entries; entry = t1.$index(0, pointer); if (entry != null) { t1.remove$1(0, pointer); entry.resolve$1(C.GestureDisposition_1); } } }, _monodrag$_checkDown$0: function() { var t1, _this = this; if (_this.onDown != null) { t1 = _this.get$_initialPosition().global; _this.get$_initialPosition().toString; _this.invokeCallback$2("onDown", new O.DragGestureRecognizer__checkDown_closure(_this, new O.DragDownDetails(t1))); } }, _checkStart$2: function(timestamp, pointer) { var t1, t2, _this = this; if (_this.onStart != null) { t1 = _this.get$_initialPosition().global; _this.get$_initialPosition().toString; t2 = _this._pointerToKind.$index(0, pointer); t2.toString; _this.invokeCallback$2("onStart", new O.DragGestureRecognizer__checkStart_closure(_this, new O.DragStartDetails(timestamp, t1, t2))); } }, _checkUpdate$5$delta$globalPosition$localPosition$primaryDelta$sourceTimeStamp: function(delta, globalPosition, localPosition, primaryDelta, sourceTimeStamp) { if (this.onUpdate != null) this.invokeCallback$2("onUpdate", new O.DragGestureRecognizer__checkUpdate_closure(this, new O.DragUpdateDetails(sourceTimeStamp, delta, primaryDelta, globalPosition))); }, _checkEnd$1: function(pointer) { var t2, estimate, t3, t4, velocity, debugReport, _this = this, t1 = {}; if (_this.onEnd == null) return; t2 = _this._monodrag$_velocityTrackers.$index(0, pointer); t2.toString; t1.details = null; estimate = t2.getVelocityEstimate$0(); if (estimate != null && _this.isFlingGesture$2(estimate, t2.kind)) { t2 = estimate.pixelsPerSecond; t3 = _this.minFlingVelocity; if (t3 == null) t3 = 50; t4 = _this.maxFlingVelocity; if (t4 == null) t4 = 8000; velocity = new R.Velocity(t2).clampMagnitude$2(t3, t4); t1.details = new O.DragEndDetails(velocity, _this._getPrimaryValueFromOffset$1(velocity.pixelsPerSecond)); debugReport = new O.DragGestureRecognizer__checkEnd_closure(estimate, velocity); } else { t1.details = new O.DragEndDetails(C.Velocity_Offset_0_0, 0); debugReport = new O.DragGestureRecognizer__checkEnd_closure0(estimate); } _this.invokeCallback$3$debugReport("onEnd", new O.DragGestureRecognizer__checkEnd_closure1(t1, _this), debugReport); }, dispose$0: function(_) { this._monodrag$_velocityTrackers.clear$0(0); this.super$OneSequenceGestureRecognizer$dispose(0); } }; O.DragGestureRecognizer__checkDown_closure.prototype = { call$0: function() { return this.$this.onDown.call$1(this.details); }, $signature: 0 }; O.DragGestureRecognizer__checkStart_closure.prototype = { call$0: function() { return this.$this.onStart.call$1(this.details); }, $signature: 0 }; O.DragGestureRecognizer__checkUpdate_closure.prototype = { call$0: function() { return this.$this.onUpdate.call$1(this.details); }, $signature: 0 }; O.DragGestureRecognizer__checkEnd_closure.prototype = { call$0: function() { return this.estimate.toString$0(0) + "; fling at " + this.velocity.toString$0(0) + "."; }, $signature: 71 }; O.DragGestureRecognizer__checkEnd_closure0.prototype = { call$0: function() { var t1 = this.estimate; if (t1 == null) return "Could not estimate velocity."; return t1.toString$0(0) + "; judged to not be a fling."; }, $signature: 71 }; O.DragGestureRecognizer__checkEnd_closure1.prototype = { call$0: function() { return this.$this.onEnd.call$1(this._box_0.details); }, $signature: 0 }; O.VerticalDragGestureRecognizer.prototype = { isFlingGesture$2: function(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = F.computeHitSlop(kind); return Math.abs(estimate.pixelsPerSecond._dy) > minVelocity && Math.abs(estimate.offset._dy) > minDistance; }, _hasSufficientGlobalDistanceToAccept$1: function(pointerDeviceKind) { return Math.abs(this.get$_globalDistanceMoved()) > F.computeHitSlop(pointerDeviceKind); }, _getDeltaForDetails$1: function(delta) { return new P.Offset(0, delta._dy); }, _getPrimaryValueFromOffset$1: function(value) { return value._dy; } }; O.HorizontalDragGestureRecognizer.prototype = { isFlingGesture$2: function(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = F.computeHitSlop(kind); return Math.abs(estimate.pixelsPerSecond._dx) > minVelocity && Math.abs(estimate.offset._dx) > minDistance; }, _hasSufficientGlobalDistanceToAccept$1: function(pointerDeviceKind) { return Math.abs(this.get$_globalDistanceMoved()) > F.computeHitSlop(pointerDeviceKind); }, _getDeltaForDetails$1: function(delta) { return new P.Offset(delta._dx, 0); }, _getPrimaryValueFromOffset$1: function(value) { return value._dx; } }; O.PanGestureRecognizer.prototype = { isFlingGesture$2: function(estimate, kind) { var minDistance, minVelocity = this.minFlingVelocity; if (minVelocity == null) minVelocity = 50; minDistance = this.minFlingDistance; if (minDistance == null) minDistance = F.computeHitSlop(kind); return estimate.pixelsPerSecond.get$distanceSquared() > minVelocity * minVelocity && estimate.offset.get$distanceSquared() > minDistance * minDistance; }, _hasSufficientGlobalDistanceToAccept$1: function(pointerDeviceKind) { return Math.abs(this.get$_globalDistanceMoved()) > F.computePanSlop(pointerDeviceKind); }, _getDeltaForDetails$1: function(delta) { return delta; }, _getPrimaryValueFromOffset$1: function(value) { return null; } }; V.MultiDragPointerState.prototype = { dispose$0: function(_) { var t1 = this._arenaEntry; if (t1 != null) t1._arena._resolve$3(t1._arena$_pointer, t1._member, C.GestureDisposition_1); this._arenaEntry = null; } }; V.MultiDragGestureRecognizer.prototype = { addAllowedPointer$1: function($event) { var _this = this, state = _this.createNewPointerState$1($event), t1 = _this._multidrag$_pointers; t1.toString; t1.$indexSet(0, $event.get$pointer(), state); $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$2($event.get$pointer(), _this.get$_multidrag$_handleEvent()); state._arenaEntry = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, $event.get$pointer(), _this); }, _multidrag$_handleEvent$1: function($event) { var t2, t3, t4, t1 = this._multidrag$_pointers; t1.toString; t1 = t1.$index(0, $event.get$pointer()); t1.toString; if (type$.PointerMoveEvent._is($event)) { if (!$event.get$synthesized()) t1._multidrag$_velocityTracker.addPosition$2($event.get$timeStamp($event), $event.get$position($event)); t2 = t1._multidrag$_client; if (t2 != null) { t1 = $event.get$timeStamp($event); t3 = $event.get$delta(); t4 = $event.get$position($event); t2.update$1(0, new O.DragUpdateDetails(t1, t3, null, t4)); } else { t2 = t1._pendingDelta; t2.toString; t1._pendingDelta = t2.$add(0, $event.get$delta()); t1._multidrag$_lastPendingEventTimestamp = $event.get$timeStamp($event); t1.checkForResolutionAfterMove$0(); } } else if (type$.PointerUpEvent._is($event)) { if (t1._multidrag$_client != null) { t2 = t1._multidrag$_velocityTracker.getVelocity$0(); t3 = t1._multidrag$_client; t3.toString; t1._multidrag$_client = null; t3.end$1(0, new O.DragEndDetails(t2, null)); } else t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; this._removeState$1($event.get$pointer()); } else if (type$.PointerCancelEvent._is($event)) { t2 = t1._multidrag$_client; if (t2 != null) { t1._multidrag$_client = null; t2.cancel$0(0); } else t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; this._removeState$1($event.get$pointer()); } }, acceptGesture$1: function(pointer) { var state = this._multidrag$_pointers.$index(0, pointer); if (state == null) return; state.accepted$1(new V.MultiDragGestureRecognizer_acceptGesture_closure(this, pointer)); }, _startDrag$2: function(initialPosition, pointer) { var drag, t2, t3, _this = this, t1 = _this._multidrag$_pointers.$index(0, pointer); t1.toString; drag = _this.onStart != null ? _this.invokeCallback$2("onStart", new V.MultiDragGestureRecognizer__startDrag_closure(_this, initialPosition)) : null; if (drag != null) { t1._multidrag$_client = drag; t2 = t1._multidrag$_lastPendingEventTimestamp; t3 = t1._pendingDelta; t3.toString; t1._multidrag$_lastPendingEventTimestamp = t1._pendingDelta = null; drag.update$1(0, new O.DragUpdateDetails(t2, t3, null, t1.initialPosition)); } else _this._removeState$1(pointer); return drag; }, rejectGesture$1: function(pointer) { var state; if (this._multidrag$_pointers.containsKey$1(0, pointer)) { state = this._multidrag$_pointers.$index(0, pointer); state._arenaEntry = state._multidrag$_lastPendingEventTimestamp = state._pendingDelta = null; this._removeState$1(pointer); } }, _removeState$1: function(pointer) { var t1; if (this._multidrag$_pointers == null) return; $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(pointer, this.get$_multidrag$_handleEvent()); t1 = this._multidrag$_pointers.remove$1(0, pointer); t1.toString; J.dispose$0$x(t1); }, dispose$0: function(_) { var _this = this, t1 = _this._multidrag$_pointers; t1 = t1.get$keys(t1); C.JSArray_methods.forEach$1(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), _this.get$_removeState()); _this._multidrag$_pointers = null; _this.super$GestureRecognizer$dispose(0); } }; V.MultiDragGestureRecognizer_acceptGesture_closure.prototype = { call$1: function(initialPosition) { return this.$this._startDrag$2(initialPosition, this.pointer); }, $signature: 625 }; V.MultiDragGestureRecognizer__startDrag_closure.prototype = { call$0: function() { return this.$this.onStart.call$1(this.initialPosition); }, $signature: 1364 }; V._ImmediatePointerState.prototype = { checkForResolutionAfterMove$0: function() { if (this._pendingDelta.get$distance() > F.computeHitSlop(this.kind)) { var t1 = this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, C.GestureDisposition_0); } }, accepted$1: function(starter) { starter.call$1(this.initialPosition); } }; V.ImmediateMultiDragGestureRecognizer.prototype = { createNewPointerState$1: function($event) { var t1 = $event.get$position($event), t2 = $event.get$kind($event); return new V._ImmediatePointerState(t1, new R.VelocityTracker(t2, P.List_List$filled(20, null, false, type$.nullable__PointAtTime)), t2, C.Offset_0_0); } }; V._DelayedPointerState.prototype = { _delayPassed$0: function() { var t1, _this = this; _this._multidrag$_timer = null; t1 = _this._starter; if (t1 != null) { t1.call$1(_this.initialPosition); _this._starter = null; } else { t1 = _this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, C.GestureDisposition_0); } }, _ensureTimerStopped$0: function() { var t1 = this._multidrag$_timer; if (t1 != null) t1.cancel$0(0); this._multidrag$_timer = null; }, accepted$1: function(starter) { if (this._multidrag$_timer == null) starter.call$1(this.initialPosition); else this._starter = starter; }, checkForResolutionAfterMove$0: function() { var t1, _this = this; if (_this._multidrag$_timer == null) return; if (_this._pendingDelta.get$distance() > F.computeHitSlop(_this.kind)) { t1 = _this._arenaEntry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, C.GestureDisposition_1); _this._ensureTimerStopped$0(); } }, dispose$0: function(_) { this._ensureTimerStopped$0(); this.super$MultiDragPointerState$dispose(0); } }; V.DelayedMultiDragGestureRecognizer.prototype = { createNewPointerState$1: function($event) { var t1 = $event.get$position($event), t2 = $event.get$kind($event); t2 = new V._DelayedPointerState(t1, new R.VelocityTracker(t2, P.List_List$filled(20, null, false, type$.nullable__PointAtTime)), t2, C.Offset_0_0); t2._multidrag$_timer = P.Timer_Timer(C.Duration_500000, t2.get$_delayPassed()); return t2; } }; F._CountdownZoned.prototype = { _onTimeout$0: function() { this._timeout = true; } }; F._TapTracker.prototype = { stopTrackingPointer$1: function(route) { if (this._isTrackingPointer) { this._isTrackingPointer = false; $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(this.pointer, route); } }, isWithinGlobalTolerance$2: function($event, tolerance) { return $event.get$position($event).$sub(0, this._initialGlobalPosition).get$distance() <= tolerance; } }; F.DoubleTapGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { var t1; if (this._firstTap == null) switch ($event.get$buttons($event)) { case 1: t1 = this.onDoubleTap == null && true; if (t1) return false; break; default: return false; } return this.super$GestureRecognizer$isPointerAllowed($event); }, addAllowedPointer$1: function($event) { var _this = this, t1 = _this._firstTap; if (t1 != null) if (!t1.isWithinGlobalTolerance$2($event, 100)) return; else { t1 = _this._firstTap; if (!t1._doubleTapMinTimeCountdown._timeout || $event.get$buttons($event) != t1.initialButtons) { _this._multitap$_reset$0(); return _this._trackTap$1($event); } } _this._trackTap$1($event); }, _trackTap$1: function($event) { var t1, t2, t3, t4, t5, tracker, _this = this; _this._stopDoubleTapTimer$0(); t1 = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, $event.get$pointer(), _this); t2 = $event.get$pointer(); t3 = $event.get$position($event); t4 = $event.get$buttons($event); t5 = new F._CountdownZoned(); P.Timer_Timer(C.Duration_40000, t5.get$_onTimeout()); tracker = new F._TapTracker(t2, t1, t3, t4, t5); _this._trackers.$indexSet(0, $event.get$pointer(), tracker); t5 = $event.get$transform($event); if (!tracker._isTrackingPointer) { tracker._isTrackingPointer = true; $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$3(t2, _this.get$_handleEvent(), t5); } }, _handleEvent$1: function($event) { var t3, _this = this, t1 = _this._trackers, t2 = t1.$index(0, $event.get$pointer()); t2.toString; if (type$.PointerUpEvent._is($event)) { t3 = _this._firstTap; if (t3 == null) { if (_this._doubleTapTimer == null) _this._doubleTapTimer = P.Timer_Timer(C.Duration_300000, _this.get$_multitap$_reset()); t3 = t2.pointer; $.GestureBinding__instance.GestureBinding_gestureArena.hold$1(t3); t2.stopTrackingPointer$1(_this.get$_handleEvent()); t1.remove$1(0, t3); _this._clearTrackers$0(); _this._firstTap = t2; } else { t3 = t3.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, C.GestureDisposition_0); t3 = t2.entry; t3._arena._resolve$3(t3._arena$_pointer, t3._member, C.GestureDisposition_0); t2.stopTrackingPointer$1(_this.get$_handleEvent()); t1.remove$1(0, t2.pointer); t1 = _this.onDoubleTap; if (t1 != null) _this.invokeCallback$2("onDoubleTap", t1); _this._multitap$_reset$0(); } } else if (type$.PointerMoveEvent._is($event)) { if (!t2.isWithinGlobalTolerance$2($event, 18)) _this._reject$1(t2); } else if (type$.PointerCancelEvent._is($event)) _this._reject$1(t2); }, acceptGesture$1: function(pointer) { }, rejectGesture$1: function(pointer) { var t1, _this = this, tracker = _this._trackers.$index(0, pointer); if (tracker == null) { t1 = _this._firstTap; t1 = t1 != null && t1.pointer == pointer; } else t1 = false; if (t1) tracker = _this._firstTap; if (tracker != null) _this._reject$1(tracker); }, _reject$1: function(tracker) { var t2, _this = this, t1 = _this._trackers; t1.remove$1(0, tracker.pointer); t2 = tracker.entry; t2._arena._resolve$3(t2._arena$_pointer, t2._member, C.GestureDisposition_1); tracker.stopTrackingPointer$1(_this.get$_handleEvent()); t2 = _this._firstTap; if (t2 != null) if (tracker === t2) _this._multitap$_reset$0(); else { _this._checkCancel$0(); if (t1.get$isEmpty(t1)) _this._multitap$_reset$0(); } }, dispose$0: function(_) { this._multitap$_reset$0(); this.super$GestureRecognizer$dispose(0); }, _multitap$_reset$0: function() { var t1, _this = this; _this._stopDoubleTapTimer$0(); if (_this._firstTap != null) { t1 = _this._trackers; if (t1.get$isNotEmpty(t1)) _this._checkCancel$0(); t1 = _this._firstTap; t1.toString; _this._firstTap = null; _this._reject$1(t1); $.GestureBinding__instance.GestureBinding_gestureArena.release$1(0, t1.pointer); } _this._clearTrackers$0(); }, _clearTrackers$0: function() { var t1 = this._trackers; t1 = t1.get$values(t1); C.JSArray_methods.forEach$1(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), this.get$_reject()); }, _stopDoubleTapTimer$0: function() { var t1 = this._doubleTapTimer; if (t1 != null) { t1.cancel$0(0); this._doubleTapTimer = null; } }, _checkCancel$0: function() { } }; O.PointerRouter.prototype = { addRoute$3: function(pointer, route, transform) { J.$indexSet$ax(this._routeMap.putIfAbsent$2(0, pointer, new O.PointerRouter_addRoute_closure()), route, transform); }, addRoute$2: function(pointer, route) { return this.addRoute$3(pointer, route, null); }, removeRoute$2: function(pointer, route) { var t3, t1 = this._routeMap, t2 = t1.$index(0, pointer); t2.toString; t3 = J.getInterceptor$ax(t2); t3.remove$1(t2, route); if (t3.get$isEmpty(t2)) t1.remove$1(0, pointer); }, _dispatch$3: function($event, route, transform) { var exception, stack, exception0, t1; try { route.call$1($event.transformed$1(transform)); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("while routing a pointer event"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "gesture library", t1, null, false)); } }, route$1: function($event) { var _this = this, routes = _this._routeMap.$index(0, $event.get$pointer()), t1 = _this._globalRoutes, t2 = type$.void_Function_PointerEvent, t3 = type$.nullable_Matrix4, copiedGlobalRoutes = P.LinkedHashMap_LinkedHashMap$from(t1, t2, t3); if (routes != null) _this._dispatchEventToRoutes$3($event, routes, P.LinkedHashMap_LinkedHashMap$from(routes, t2, t3)); _this._dispatchEventToRoutes$3($event, t1, copiedGlobalRoutes); }, _dispatchEventToRoutes$3: function($event, referenceRoutes, copiedRoutes) { copiedRoutes.forEach$1(0, new O.PointerRouter__dispatchEventToRoutes_closure(this, referenceRoutes, $event)); } }; O.PointerRouter_addRoute_closure.prototype = { call$0: function() { return P.LinkedHashMap_LinkedHashMap$_empty(type$.void_Function_PointerEvent, type$.nullable_Matrix4); }, $signature: 1390 }; O.PointerRouter__dispatchEventToRoutes_closure.prototype = { call$2: function(route, transform) { if (J.containsKey$1$x(this.referenceRoutes, route)) this.$this._dispatch$3(this.event, route, transform); }, $signature: 1395 }; G.PointerSignalResolver.prototype = { register$2: function(_, $event, callback) { if (this._firstRegisteredCallback != null) return; this._currentEvent = $event; this._firstRegisteredCallback = callback; }, resolve$1: function($event) { var exception, stack, t2, exception0, _this = this, t1 = _this._firstRegisteredCallback; if (t1 == null) return; try { t2 = _this._currentEvent; t2.toString; t1.call$1(t2); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("while resolving a PointerSignalEvent"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "gesture library", t1, null, false)); } _this._currentEvent = _this._firstRegisteredCallback = null; } }; S.DragStartBehavior.prototype = { toString$0: function(_) { return this._recognizer$_name; } }; S.GestureRecognizer.prototype = { addPointer$1: function($event) { var _this = this; _this._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (_this.isPointerAllowed$1($event)) _this.addAllowedPointer$1($event); else _this.handleNonAllowedPointer$1($event); }, addAllowedPointer$1: function($event) { }, handleNonAllowedPointer$1: function($event) { }, isPointerAllowed$1: function($event) { var t1 = this._kindFilter; return t1 == null || t1 === $event.get$kind($event); }, dispose$0: function(_) { }, invokeCallback$1$3$debugReport: function($name, callback, debugReport) { var exception, stack, exception0, t1, result = null; try { result = callback.call$0(); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("while handling a gesture"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "gesture", t1, null, false)); } return result; }, invokeCallback$2: function($name, callback) { return this.invokeCallback$1$3$debugReport($name, callback, null, type$.dynamic); }, invokeCallback$3$debugReport: function($name, callback, debugReport) { return this.invokeCallback$1$3$debugReport($name, callback, debugReport, type$.dynamic); }, $isDiagnosticableTree: 1 }; S.OneSequenceGestureRecognizer.prototype = { handleNonAllowedPointer$1: function($event) { this.resolve$1(C.GestureDisposition_1); }, acceptGesture$1: function(pointer) { }, rejectGesture$1: function(pointer) { }, resolve$1: function(disposition) { var _i, t1 = this._recognizer$_entries, localEntries = P.List_List$from(t1.get$values(t1), true, type$.GestureArenaEntry); t1.clear$0(0); for (t1 = localEntries.length, _i = 0; _i < t1; ++_i) localEntries[_i].resolve$1(disposition); }, dispose$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, _this = this; _this.resolve$1(C.GestureDisposition_1); for (t1 = _this._trackedPointers, t2 = new P._HashSetIterator(t1, t1._computeElements$0(), H._instanceType(t1)._eval$1("_HashSetIterator<1>")); t2.moveNext$0();) { t3 = t2._collection$_current; t4 = $.GestureBinding__instance.GestureBinding_pointerRouter; t5 = _this.get$handleEvent(); t4 = t4._routeMap; t6 = t4.$index(0, t3); t6.toString; t7 = J.getInterceptor$ax(t6); t7.remove$1(t6, t5); if (t7.get$isEmpty(t6)) t4.remove$1(0, t3); } t1.clear$0(0); _this.super$GestureRecognizer$dispose(0); }, _addPointerToArena$1: function(pointer) { var t1 = this._team; if (t1 != null) return t1.add$2(0, pointer, this); return $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, pointer, this); }, startTrackingPointer$2: function(pointer, transform) { var _this = this; $.GestureBinding__instance.GestureBinding_pointerRouter.addRoute$3(pointer, _this.get$handleEvent(), transform); _this._trackedPointers.add$1(0, pointer); _this._recognizer$_entries.$indexSet(0, pointer, _this._addPointerToArena$1(pointer)); }, stopTrackingPointer$1: function(pointer) { var t1 = this._trackedPointers; if (t1.contains$1(0, pointer)) { $.GestureBinding__instance.GestureBinding_pointerRouter.removeRoute$2(pointer, this.get$handleEvent()); t1.remove$1(0, pointer); if (t1._collection$_length === 0) this.didStopTrackingLastPointer$1(pointer); } }, stopTrackingIfPointerNoLongerDown$1: function($event) { if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) this.stopTrackingPointer$1($event.get$pointer()); } }; S.GestureRecognizerState.prototype = { toString$0: function(_) { return this._recognizer$_name; } }; S.PrimaryPointerGestureRecognizer.prototype = { addAllowedPointer$1: function($event) { var _this = this; _this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); if (_this.state === C.GestureRecognizerState_0) { _this.state = C.GestureRecognizerState_1; _this.primaryPointer = $event.get$pointer(); _this.initialPosition = new S.OffsetPair($event.get$localPosition(), $event.get$position($event)); _this._recognizer$_timer = P.Timer_Timer(_this.deadline, new S.PrimaryPointerGestureRecognizer_addAllowedPointer_closure(_this, $event)); } }, handleEvent$1: function($event) { var isPreAcceptSlopPastTolerance, t1, isPostAcceptSlopPastTolerance, _this = this; if (_this.state === C.GestureRecognizerState_1 && $event.get$pointer() == _this.primaryPointer) { if (!_this._gestureAccepted) isPreAcceptSlopPastTolerance = _this._getGlobalDistance$1($event) > 18; else isPreAcceptSlopPastTolerance = false; if (_this._gestureAccepted) { t1 = _this.postAcceptSlopTolerance; isPostAcceptSlopPastTolerance = t1 != null && _this._getGlobalDistance$1($event) > t1; } else isPostAcceptSlopPastTolerance = false; if (type$.PointerMoveEvent._is($event)) t1 = isPreAcceptSlopPastTolerance || isPostAcceptSlopPastTolerance; else t1 = false; if (t1) { _this.resolve$1(C.GestureDisposition_1); t1 = _this.primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } else _this.handlePrimaryPointer$1($event); } _this.stopTrackingIfPointerNoLongerDown$1($event); }, didExceedDeadline$0: function() { }, acceptGesture$1: function(pointer) { if (pointer == this.primaryPointer) { this._stopTimer$0(); this._gestureAccepted = true; } }, rejectGesture$1: function(pointer) { var _this = this; if (pointer == _this.primaryPointer && _this.state === C.GestureRecognizerState_1) { _this._stopTimer$0(); _this.state = C.GestureRecognizerState_2; } }, didStopTrackingLastPointer$1: function(pointer) { this._stopTimer$0(); this.state = C.GestureRecognizerState_0; }, dispose$0: function(_) { this._stopTimer$0(); this.super$OneSequenceGestureRecognizer$dispose(0); }, _stopTimer$0: function() { var t1 = this._recognizer$_timer; if (t1 != null) { t1.cancel$0(0); this._recognizer$_timer = null; } }, _getGlobalDistance$1: function($event) { return $event.get$position($event).$sub(0, this.initialPosition.global).get$distance(); } }; S.PrimaryPointerGestureRecognizer_addAllowedPointer_closure.prototype = { call$0: function() { this.$this.didExceedDeadline$0(); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; S.OffsetPair.prototype = { $add: function(_, other) { return new S.OffsetPair(this.local.$add(0, other.local), this.global.$add(0, other.global)); }, $sub: function(_, other) { return new S.OffsetPair(this.local.$sub(0, other.local), this.global.$sub(0, other.global)); }, toString$0: function(_) { return "OffsetPair(local: " + H.S(this.local) + ", global: " + H.S(this.global) + ")"; } }; S._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin.prototype = {}; B._ScaleState.prototype = { toString$0: function(_) { return this._scale$_name; } }; B.ScaleStartDetails.prototype = { toString$0: function(_) { return "ScaleStartDetails(focalPoint: " + H.S(this.focalPoint) + ", localFocalPoint: " + H.S(this.localFocalPoint) + ", pointersCount: " + H.S(this.pointerCount) + ")"; } }; B.ScaleUpdateDetails.prototype = { toString$0: function(_) { var _this = this; return "ScaleUpdateDetails(focalPoint: " + H.S(_this.focalPoint) + ", localFocalPoint: " + H.S(_this.localFocalPoint) + ", scale: " + H.S(_this.scale) + ", horizontalScale: " + H.S(_this.horizontalScale) + ", verticalScale: " + H.S(_this.verticalScale) + ", rotation: " + H.S(_this.rotation) + ", pointerCount: " + H.S(_this.pointerCount) + ")"; } }; B.ScaleEndDetails.prototype = { toString$0: function(_) { return "ScaleEndDetails(velocity: " + this.velocity.toString$0(0) + ", pointerCount: " + H.S(this.pointerCount) + ")"; } }; B._LineBetweenPointers.prototype = {}; B.ScaleGestureRecognizer.prototype = { get$_currentFocalPoint: function() { var t1 = this.__ScaleGestureRecognizer__currentFocalPoint; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentFocalPoint")) : t1; }, get$_initialSpan: function() { var t1 = this.__ScaleGestureRecognizer__initialSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_initialSpan")) : t1; }, get$_scale$_currentSpan: function() { var t1 = this.__ScaleGestureRecognizer__currentSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentSpan")) : t1; }, get$_initialHorizontalSpan: function() { var t1 = this.__ScaleGestureRecognizer__initialHorizontalSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_initialHorizontalSpan")) : t1; }, get$_currentHorizontalSpan: function() { var t1 = this.__ScaleGestureRecognizer__currentHorizontalSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentHorizontalSpan")) : t1; }, get$_initialVerticalSpan: function() { var t1 = this.__ScaleGestureRecognizer__initialVerticalSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_initialVerticalSpan")) : t1; }, get$_currentVerticalSpan: function() { var t1 = this.__ScaleGestureRecognizer__currentVerticalSpan; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentVerticalSpan")) : t1; }, get$_pointerLocations: function() { var t1 = this.__ScaleGestureRecognizer__pointerLocations; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pointerLocations")) : t1; }, get$_pointerQueue: function() { var t1 = this.__ScaleGestureRecognizer__pointerQueue; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pointerQueue")) : t1; }, _computeRotationFactor$0: function() { var t2, fx, fy, sx, sy, nfx, nfy, nsx, nsy, angle1, t1 = this._initialLine; if (t1 == null || this._scale$_currentLine == null) return 0; t2 = t1.pointerStartLocation; fx = t2._dx; fy = t2._dy; t1 = t1.pointerEndLocation; sx = t1._dx; sy = t1._dy; t1 = this._scale$_currentLine; t2 = t1.pointerStartLocation; nfx = t2._dx; nfy = t2._dy; t1 = t1.pointerEndLocation; nsx = t1._dx; nsy = t1._dy; angle1 = Math.atan2(fy - sy, fx - sx); return Math.atan2(nfy - nsy, nfx - nsx) - angle1; }, addAllowedPointer$1: function($event) { var _this = this; _this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); _this._velocityTrackers.$indexSet(0, $event.get$pointer(), new R.VelocityTracker($event.get$kind($event), P.List_List$filled(20, null, false, type$.nullable__PointAtTime))); if (_this._scale$_state === C._ScaleState_0) { _this._scale$_state = C._ScaleState_1; _this.__ScaleGestureRecognizer__currentVerticalSpan = _this.__ScaleGestureRecognizer__initialVerticalSpan = _this.__ScaleGestureRecognizer__currentHorizontalSpan = _this.__ScaleGestureRecognizer__initialHorizontalSpan = _this.__ScaleGestureRecognizer__currentSpan = _this.__ScaleGestureRecognizer__initialSpan = 0; _this.__ScaleGestureRecognizer__pointerLocations = P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.Offset); _this.__ScaleGestureRecognizer__pointerQueue = H.setRuntimeTypeInfo([], type$.JSArray_int); } }, handleEvent$1: function($event) { var t1, didChangeConfiguration, shouldStartIfAccepted, t2, t3, t4, _this = this; if (type$.PointerMoveEvent._is($event)) { t1 = _this._velocityTrackers.$index(0, $event.get$pointer()); t1.toString; if (!$event.get$synthesized()) t1.addPosition$2($event.get$timeStamp($event), $event.get$position($event)); J.$indexSet$ax(_this.get$_pointerLocations(), $event.get$pointer(), $event.get$position($event)); _this._scale$_lastTransform = $event.get$transform($event); didChangeConfiguration = false; shouldStartIfAccepted = true; } else if (type$.PointerDownEvent._is($event)) { J.$indexSet$ax(_this.get$_pointerLocations(), $event.get$pointer(), $event.get$position($event)); J.add$1$ax(_this.get$_pointerQueue(), $event.get$pointer()); _this._scale$_lastTransform = $event.get$transform($event); didChangeConfiguration = true; shouldStartIfAccepted = true; } else { if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) { J.remove$1$ax(_this.get$_pointerLocations(), $event.get$pointer()); J.remove$1$ax(_this.get$_pointerQueue(), $event.get$pointer()); _this._scale$_lastTransform = $event.get$transform($event); didChangeConfiguration = true; } else didChangeConfiguration = false; shouldStartIfAccepted = false; } if (J.get$length$asx(J.get$keys$x(_this.get$_pointerLocations())) < 2) _this._initialLine = _this._scale$_currentLine; else { t1 = _this._initialLine; if (t1 != null) { t1 = t1.pointerStartId; t2 = J.$index$asx(_this.get$_pointerQueue(), 0); if (t1 == null ? t2 == null : t1 === t2) { t1 = _this._initialLine.pointerEndId; t2 = J.$index$asx(_this.get$_pointerQueue(), 1); t2 = t1 == null ? t2 == null : t1 === t2; t1 = t2; } else t1 = false; } else t1 = false; if (t1) { t1 = J.$index$asx(_this.get$_pointerQueue(), 0); t2 = J.$index$asx(_this.get$_pointerLocations(), J.$index$asx(_this.get$_pointerQueue(), 0)); t2.toString; t3 = J.$index$asx(_this.get$_pointerQueue(), 1); t4 = J.$index$asx(_this.get$_pointerLocations(), J.$index$asx(_this.get$_pointerQueue(), 1)); t4.toString; _this._scale$_currentLine = new B._LineBetweenPointers(t2, t1, t4, t3); } else { t1 = J.$index$asx(_this.get$_pointerQueue(), 0); t2 = J.$index$asx(_this.get$_pointerLocations(), J.$index$asx(_this.get$_pointerQueue(), 0)); t2.toString; t3 = J.$index$asx(_this.get$_pointerQueue(), 1); t4 = J.$index$asx(_this.get$_pointerLocations(), J.$index$asx(_this.get$_pointerQueue(), 1)); t4.toString; _this._initialLine = new B._LineBetweenPointers(t2, t1, t4, t3); _this._scale$_currentLine = null; } } _this._update$0(0); if (!didChangeConfiguration || _this._reconfigure$1($event.get$pointer())) _this._advanceStateMachine$2(shouldStartIfAccepted, $event.get$kind($event)); _this.stopTrackingIfPointerNoLongerDown$1($event); }, _update$0: function(_) { var t1, focalPoint, t2, t3, totalDeviation, totalHorizontalDeviation, totalVerticalDeviation, t4, t5, t6, _this = this, _s17_ = "_pointerLocations", _s18_ = "_currentFocalPoint", count = J.get$length$asx(J.get$keys$x(_this.get$_pointerLocations())); for (t1 = J.get$iterator$ax(J.get$keys$x(_this.get$_pointerLocations())), focalPoint = C.Offset_0_0; t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = _this.__ScaleGestureRecognizer__pointerLocations; t2 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, t2); t2.toString; focalPoint = new P.Offset(focalPoint._dx + t2._dx, focalPoint._dy + t2._dy); } t1 = count > 0; _this.__ScaleGestureRecognizer__currentFocalPoint = t1 ? focalPoint.$div(0, count) : C.Offset_0_0; for (t2 = J.get$iterator$ax(J.get$keys$x(_this.get$_pointerLocations())), totalDeviation = 0, totalHorizontalDeviation = 0, totalVerticalDeviation = 0; t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = _this.__ScaleGestureRecognizer__currentFocalPoint; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s18_)); t5 = _this.__ScaleGestureRecognizer__pointerLocations; t5 = J.$index$asx(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t5, t3); t5.toString; t6 = t4._dx - t5._dx; t5 = t4._dy - t5._dy; totalDeviation += Math.sqrt(t6 * t6 + t5 * t5); t5 = _this.__ScaleGestureRecognizer__currentFocalPoint; t4 = (t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s18_)) : t5)._dx; t5 = _this.__ScaleGestureRecognizer__pointerLocations; totalHorizontalDeviation += Math.abs(t4 - J.$index$asx(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t5, t3)._dx); t4 = _this.__ScaleGestureRecognizer__currentFocalPoint; t4 = (t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s18_)) : t4)._dy; t5 = _this.__ScaleGestureRecognizer__pointerLocations; totalVerticalDeviation += Math.abs(t4 - J.$index$asx(t5 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t5, t3)._dy); } _this.__ScaleGestureRecognizer__currentSpan = t1 ? totalDeviation / count : 0; _this.__ScaleGestureRecognizer__currentHorizontalSpan = t1 ? totalHorizontalDeviation / count : 0; _this.__ScaleGestureRecognizer__currentVerticalSpan = t1 ? totalVerticalDeviation / count : 0; }, _reconfigure$1: function(pointer) { var velocity, t2, _this = this, t1 = {}; _this.__ScaleGestureRecognizer__initialFocalPoint = _this.get$_currentFocalPoint(); _this.__ScaleGestureRecognizer__initialSpan = _this.get$_scale$_currentSpan(); _this._initialLine = _this._scale$_currentLine; _this.__ScaleGestureRecognizer__initialHorizontalSpan = _this.get$_currentHorizontalSpan(); _this.__ScaleGestureRecognizer__initialVerticalSpan = _this.get$_currentVerticalSpan(); if (_this._scale$_state === C._ScaleState_3) { if (_this.onEnd != null) { velocity = _this._velocityTrackers.$index(0, pointer).getVelocity$0(); t1.velocity = velocity; t2 = velocity.pixelsPerSecond; if (t2.get$distanceSquared() > 2500) { if (t2.get$distanceSquared() > 64000000) t1.velocity = new R.Velocity(t2.$div(0, t2.get$distance()).$mul(0, 8000)); _this.invokeCallback$2("onEnd", new B.ScaleGestureRecognizer__reconfigure_closure(t1, _this)); } else _this.invokeCallback$2("onEnd", new B.ScaleGestureRecognizer__reconfigure_closure0(_this)); } _this._scale$_state = C._ScaleState_2; return false; } return true; }, _advanceStateMachine$2: function(shouldStartIfAccepted, pointerDeviceKind) { var t2, t3, t4, focalPointDelta, _this = this, t1 = _this._scale$_state; if (t1 === C._ScaleState_0) t1 = _this._scale$_state = C._ScaleState_1; if (t1 === C._ScaleState_1) { t1 = _this.get$_scale$_currentSpan(); t2 = _this.get$_initialSpan(); t3 = _this.get$_currentFocalPoint(); t4 = _this.__ScaleGestureRecognizer__initialFocalPoint; focalPointDelta = t3.$sub(0, t4 === $ ? H.throwExpression(H.LateError$fieldNI("_initialFocalPoint")) : t4).get$distance(); if (Math.abs(t1 - t2) > F.computeScaleSlop(pointerDeviceKind) || focalPointDelta > F.computePanSlop(pointerDeviceKind)) _this.resolve$1(C.GestureDisposition_0); } else if (t1.index >= 2) _this.resolve$1(C.GestureDisposition_0); if (_this._scale$_state === C._ScaleState_2 && shouldStartIfAccepted) { _this._scale$_state = C._ScaleState_3; _this._dispatchOnStartCallbackIfNeeded$0(); } if (_this._scale$_state === C._ScaleState_3 && _this.onUpdate != null) _this.invokeCallback$2("onUpdate", new B.ScaleGestureRecognizer__advanceStateMachine_closure(_this)); }, _dispatchOnStartCallbackIfNeeded$0: function() { if (this.onStart != null) this.invokeCallback$2("onStart", new B.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure(this)); }, acceptGesture$1: function(pointer) { var _this = this; if (_this._scale$_state === C._ScaleState_1) { _this._scale$_state = C._ScaleState_3; _this._dispatchOnStartCallbackIfNeeded$0(); if (_this.dragStartBehavior === C.DragStartBehavior_1) { _this.__ScaleGestureRecognizer__initialFocalPoint = _this.get$_currentFocalPoint(); _this.__ScaleGestureRecognizer__initialSpan = _this.get$_scale$_currentSpan(); _this._initialLine = _this._scale$_currentLine; _this.__ScaleGestureRecognizer__initialHorizontalSpan = _this.get$_currentHorizontalSpan(); _this.__ScaleGestureRecognizer__initialVerticalSpan = _this.get$_currentVerticalSpan(); } } }, rejectGesture$1: function(pointer) { this.stopTrackingPointer$1(pointer); }, didStopTrackingLastPointer$1: function(pointer) { switch (this._scale$_state) { case C._ScaleState_1: this.resolve$1(C.GestureDisposition_1); break; case C._ScaleState_0: break; case C._ScaleState_2: break; case C._ScaleState_3: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } this._scale$_state = C._ScaleState_0; }, dispose$0: function(_) { this._velocityTrackers.clear$0(0); this.super$OneSequenceGestureRecognizer$dispose(0); } }; B.ScaleGestureRecognizer__reconfigure_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onEnd; t2.toString; return t2.call$1(new B.ScaleEndDetails(this._box_0.velocity, J.get$length$asx(t1.get$_pointerQueue()))); }, $signature: 0 }; B.ScaleGestureRecognizer__reconfigure_closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onEnd; t2.toString; return t2.call$1(new B.ScaleEndDetails(C.Velocity_Offset_0_0, J.get$length$asx(t1.get$_pointerQueue()))); }, $signature: 0 }; B.ScaleGestureRecognizer__advanceStateMachine_closure.prototype = { call$0: function() { var t3, t4, t5, t6, t7, t8, t1 = this.$this, t2 = t1.onUpdate; t2.toString; t3 = t1.get$_initialSpan() > 0 ? t1.get$_scale$_currentSpan() / t1.get$_initialSpan() : 1; t4 = t1.get$_initialHorizontalSpan() > 0 ? t1.get$_currentHorizontalSpan() / t1.get$_initialHorizontalSpan() : 1; t5 = t1.get$_initialVerticalSpan() > 0 ? t1.get$_currentVerticalSpan() / t1.get$_initialVerticalSpan() : 1; t6 = t1.get$_currentFocalPoint(); t7 = F.PointerEvent_transformPosition(t1._scale$_lastTransform, t1.get$_currentFocalPoint()); t8 = t1._computeRotationFactor$0(); t1 = J.get$length$asx(t1.get$_pointerQueue()); t2.call$1(new B.ScaleUpdateDetails(t6, t7 == null ? t6 : t7, t3, t4, t5, t8, t1)); }, $signature: 0 }; B.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure.prototype = { call$0: function() { var t3, t4, t1 = this.$this, t2 = t1.onStart; t2.toString; t3 = t1.get$_currentFocalPoint(); t4 = F.PointerEvent_transformPosition(t1._scale$_lastTransform, t1.get$_currentFocalPoint()); t1 = J.get$length$asx(t1.get$_pointerQueue()); t2.call$1(new B.ScaleStartDetails(t3, t4 == null ? t3 : t4, t1)); }, $signature: 0 }; N.TapDownDetails.prototype = {}; N.TapUpDetails.prototype = {}; N.BaseTapGestureRecognizer.prototype = { addAllowedPointer$1: function($event) { var _this = this; if (_this.state === C.GestureRecognizerState_0) { if (_this._down != null && _this._up != null) _this._reset$0(); _this._down = $event; } if (_this._down != null) _this.super$PrimaryPointerGestureRecognizer$addAllowedPointer($event); }, startTrackingPointer$2: function(pointer, transform) { this.super$OneSequenceGestureRecognizer$startTrackingPointer(pointer, transform); }, handlePrimaryPointer$1: function($event) { var t1, t2, _this = this; if (type$.PointerUpEvent._is($event)) { _this._up = $event; _this._checkUp$0(); } else if (type$.PointerCancelEvent._is($event)) { _this.resolve$1(C.GestureDisposition_1); if (_this._sentTapDown) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason($event, t1, ""); } _this._reset$0(); } else { t1 = $event.get$buttons($event); t2 = _this._down; if (t1 != t2.get$buttons(t2)) { _this.resolve$1(C.GestureDisposition_1); t1 = _this.primaryPointer; t1.toString; _this.stopTrackingPointer$1(t1); } } }, resolve$1: function(disposition) { var t1, _this = this; if (_this._wonArenaForPrimaryPointer && disposition === C.GestureDisposition_1) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason(null, t1, "spontaneous"); _this._reset$0(); } _this.super$OneSequenceGestureRecognizer$resolve(disposition); }, didExceedDeadline$0: function() { this._checkDown$0(); }, acceptGesture$1: function(pointer) { var _this = this; _this.super$PrimaryPointerGestureRecognizer$acceptGesture(pointer); if (pointer == _this.primaryPointer) { _this._checkDown$0(); _this._wonArenaForPrimaryPointer = true; _this._checkUp$0(); } }, rejectGesture$1: function(pointer) { var t1, _this = this; _this.super$PrimaryPointerGestureRecognizer$rejectGesture(pointer); if (pointer == _this.primaryPointer) { if (_this._sentTapDown) { t1 = _this._down; t1.toString; _this.handleTapCancel$3$cancel$down$reason(null, t1, "forced"); } _this._reset$0(); } }, _checkDown$0: function() { var t1, _this = this; if (_this._sentTapDown) return; t1 = _this._down; t1.toString; _this.handleTapDown$1$down(t1); _this._sentTapDown = true; }, _checkUp$0: function() { var t1, t2, _this = this; if (!_this._wonArenaForPrimaryPointer || _this._up == null) return; t1 = _this._down; t1.toString; t2 = _this._up; t2.toString; _this.handleTapUp$2$down$up(t1, t2); _this._reset$0(); }, _reset$0: function() { var _this = this; _this._wonArenaForPrimaryPointer = _this._sentTapDown = false; _this._down = _this._up = null; } }; N.TapGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { var t1, _this = this; switch ($event.get$buttons($event)) { case 1: if (_this.onTapDown == null && _this.onTap == null && _this.onTapUp == null && _this.onTapCancel == null) return false; break; case 2: if (_this.onSecondaryTap == null) if (_this.onSecondaryTapDown == null) t1 = true; else t1 = false; else t1 = false; if (t1) return false; break; case 4: return false; default: return false; } return _this.super$GestureRecognizer$isPointerAllowed($event); }, handleTapDown$1$down: function(down) { var details, _this = this, t1 = down.get$position(down), t2 = down.get$localPosition(), t3 = _this._pointerToKind.$index(0, down.get$pointer()); t3.toString; details = new N.TapDownDetails(t1, t3, t2 == null ? t1 : t2); switch (down.get$buttons(down)) { case 1: if (_this.onTapDown != null) _this.invokeCallback$2("onTapDown", new N.TapGestureRecognizer_handleTapDown_closure(_this, details)); break; case 2: if (_this.onSecondaryTapDown != null) _this.invokeCallback$2("onSecondaryTapDown", new N.TapGestureRecognizer_handleTapDown_closure0(_this, details)); break; case 4: break; } }, handleTapUp$2$down$up: function(down, up) { var _this = this, t1 = up.get$kind(up), t2 = up.get$position(up); up.get$localPosition(); switch (down.get$buttons(down)) { case 1: if (_this.onTapUp != null) _this.invokeCallback$2("onTapUp", new N.TapGestureRecognizer_handleTapUp_closure(_this, new N.TapUpDetails(t2, t1))); t1 = _this.onTap; if (t1 != null) _this.invokeCallback$2("onTap", t1); break; case 2: if (_this.onSecondaryTap != null) _this.invokeCallback$2("onSecondaryTap", new N.TapGestureRecognizer_handleTapUp_closure0(_this)); break; case 4: break; } }, handleTapCancel$3$cancel$down$reason: function(cancel, down, reason) { var t1, note = reason === "" ? reason : reason + " "; switch (down.get$buttons(down)) { case 1: t1 = this.onTapCancel; if (t1 != null) this.invokeCallback$2(note + "onTapCancel", t1); break; case 2: break; case 4: break; } } }; N.TapGestureRecognizer_handleTapDown_closure.prototype = { call$0: function() { return this.$this.onTapDown.call$1(this.details); }, $signature: 0 }; N.TapGestureRecognizer_handleTapDown_closure0.prototype = { call$0: function() { return this.$this.onSecondaryTapDown.call$1(this.details); }, $signature: 0 }; N.TapGestureRecognizer_handleTapUp_closure.prototype = { call$0: function() { return this.$this.onTapUp.call$1(this.details); }, $signature: 0 }; N.TapGestureRecognizer_handleTapUp_closure0.prototype = { call$0: function() { return this.$this.onSecondaryTap.call$0(); }, $signature: 0 }; V._CombiningGestureArenaEntry.prototype = { resolve$1: function(disposition) { this._combiner._team$_resolve$2(this._team$_member, disposition); }, $isGestureArenaEntry: 1 }; V._CombiningGestureArenaMember.prototype = { acceptGesture$1: function(pointer) { var t1, t2, _i, member, _this = this; _this._close$0(); if (_this._winner == null) { t1 = _this._team$_owner.captain; _this._winner = t1 == null ? _this._members[0] : t1; } for (t1 = _this._members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { member = t1[_i]; if (member !== _this._winner) member.rejectGesture$1(pointer); } _this._winner.acceptGesture$1(pointer); }, rejectGesture$1: function(pointer) { var t1, t2, _i; this._close$0(); for (t1 = this._members, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].rejectGesture$1(pointer); }, _close$0: function() { this._resolved = true; this._team$_owner._combiners.remove$1(0, this._team$_pointer); }, _team$_resolve$2: function(member, disposition) { var t1, _this = this; if (_this._resolved) return; if (disposition === C.GestureDisposition_1) { t1 = _this._members; C.JSArray_methods.remove$1(t1, member); member.rejectGesture$1(_this._team$_pointer); if (t1.length === 0) { t1 = _this._entry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, disposition); } } else { if (_this._winner == null) { t1 = _this._team$_owner.captain; _this._winner = t1 == null ? member : t1; } t1 = _this._entry; t1._arena._resolve$3(t1._arena$_pointer, t1._member, disposition); } } }; V.GestureArenaTeam.prototype = { add$2: function(_, pointer, member) { var combiner = this._combiners.putIfAbsent$2(0, pointer, new V.GestureArenaTeam_add_closure(this, pointer)); combiner._members.push(member); if (combiner._entry == null) combiner._entry = $.GestureBinding__instance.GestureBinding_gestureArena.add$2(0, pointer, combiner); return new V._CombiningGestureArenaEntry(combiner, member); } }; V.GestureArenaTeam_add_closure.prototype = { call$0: function() { return new V._CombiningGestureArenaMember(this.$this, H.setRuntimeTypeInfo([], type$.JSArray_GestureArenaMember), this.pointer); }, $signature: 1396 }; R.Velocity.prototype = { $sub: function(_, other) { return new R.Velocity(this.pixelsPerSecond.$sub(0, other.pixelsPerSecond)); }, $add: function(_, other) { return new R.Velocity(this.pixelsPerSecond.$add(0, other.pixelsPerSecond)); }, clampMagnitude$2: function(minValue, maxValue) { var t1 = this.pixelsPerSecond, valueSquared = t1.get$distanceSquared(); if (valueSquared > maxValue * maxValue) return new R.Velocity(t1.$div(0, t1.get$distance()).$mul(0, maxValue)); if (valueSquared < minValue * minValue) return new R.Velocity(t1.$div(0, t1.get$distance()).$mul(0, minValue)); return this; }, $eq: function(_, other) { if (other == null) return false; return other instanceof R.Velocity && other.pixelsPerSecond.$eq(0, this.pixelsPerSecond); }, get$hashCode: function(_) { var t1 = this.pixelsPerSecond; return P.hashValues(t1._dx, t1._dy, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = this.pixelsPerSecond; return "Velocity(" + J.toStringAsFixed$1$n(t1._dx, 1) + ", " + J.toStringAsFixed$1$n(t1._dy, 1) + ")"; } }; R.VelocityEstimate.prototype = { toString$0: function(_) { var _this = this, t1 = _this.pixelsPerSecond; return "VelocityEstimate(" + J.toStringAsFixed$1$n(t1._dx, 1) + ", " + J.toStringAsFixed$1$n(t1._dy, 1) + "; offset: " + _this.offset.toString$0(0) + ", duration: " + _this.duration.toString$0(0) + ", confidence: " + C.JSNumber_methods.toStringAsFixed$1(_this.confidence, 1) + ")"; } }; R._PointAtTime.prototype = { toString$0: function(_) { return "_PointAtTime(" + H.S(this.point) + " at " + this.time.toString$0(0) + ")"; } }; R.VelocityTracker.prototype = { addPosition$2: function(time, position) { var t1 = ++this._velocity_tracker$_index; if (t1 === 20) t1 = this._velocity_tracker$_index = 0; this._samples[t1] = new R._PointAtTime(time, position); }, getVelocityEstimate$0: function() { var newestSample, t2, oldestSample, previousSample, sampleCount, sample, t3, age, position, xFit, yFit, t1 = type$.JSArray_double, x = H.setRuntimeTypeInfo([], t1), y = H.setRuntimeTypeInfo([], t1), w = H.setRuntimeTypeInfo([], t1), time = H.setRuntimeTypeInfo([], t1), index = this._velocity_tracker$_index; t1 = this._samples; newestSample = t1[index]; if (newestSample == null) return null; t2 = newestSample.time._duration; oldestSample = newestSample; previousSample = oldestSample; sampleCount = 0; do { sample = t1[index]; if (sample == null) break; t3 = sample.time._duration; age = (t2 - t3) / 1000; if (age > 100 || Math.abs(t3 - previousSample.time._duration) / 1000 > 40) break; position = sample.point; x.push(position._dx); y.push(position._dy); w.push(1); time.push(-age); index = (index === 0 ? 20 : index) - 1; ++sampleCount; if (sampleCount < 20) { oldestSample = sample; previousSample = oldestSample; continue; } else { oldestSample = sample; break; } } while (true); if (sampleCount >= 3) { xFit = new B.LeastSquaresSolver(time, x, w).solve$1(2); if (xFit != null) { yFit = new B.LeastSquaresSolver(time, y, w).solve$1(2); if (yFit != null) return new R.VelocityEstimate(new P.Offset(xFit.coefficients[1] * 1000, yFit.coefficients[1] * 1000), xFit.get$confidence(xFit) * yFit.get$confidence(yFit), new P.Duration(t2 - oldestSample.time._duration), newestSample.point.$sub(0, oldestSample.point)); } } return new R.VelocityEstimate(C.Offset_0_0, 1, new P.Duration(t2 - oldestSample.time._duration), newestSample.point.$sub(0, oldestSample.point)); }, getVelocity$0: function() { var estimate = this.getVelocityEstimate$0(); if (estimate == null || estimate.pixelsPerSecond.$eq(0, C.Offset_0_0)) return C.Velocity_Offset_0_0; return new R.Velocity(estimate.pixelsPerSecond); } }; R.IOSScrollViewFlingVelocityTracker.prototype = { addPosition$2: function(time, position) { var t1 = (this._velocity_tracker$_index + 1) % 20; this._velocity_tracker$_index = t1; this._touchSamples[t1] = new R._PointAtTime(time, position); }, _previousVelocityAt$1: function(index) { var end, start, t1 = this._velocity_tracker$_index + index, endIndex = C.JSInt_methods.$mod(t1, 20), startIndex = C.JSInt_methods.$mod(t1 - 1, 20); t1 = this._touchSamples; end = t1[endIndex]; start = t1[startIndex]; if (end == null || start == null) return C.Offset_0_0; t1 = end.time._duration - start.time._duration; return t1 > 0 ? end.point.$sub(0, start.point).$mul(0, 1000).$div(0, t1 / 1000) : C.Offset_0_0; }, getVelocityEstimate$0: function() { var oldestNonNullSample, i, _this = this, estimatedVelocity = _this._previousVelocityAt$1(-2).$mul(0, 0.6).$add(0, _this._previousVelocityAt$1(-1).$mul(0, 0.35)).$add(0, _this._previousVelocityAt$1(0).$mul(0, 0.05)), t1 = _this._touchSamples, t2 = _this._velocity_tracker$_index, newestSample = t1[t2]; for (oldestNonNullSample = null, i = 1; i <= 20; ++i) { oldestNonNullSample = t1[C.JSInt_methods.$mod(t2 + i, 20)]; if (oldestNonNullSample != null) break; } if (oldestNonNullSample == null || newestSample == null) return C.VelocityEstimate_MMm; else return new R.VelocityEstimate(estimatedVelocity, 1, new P.Duration(newestSample.time._duration - oldestNonNullSample.time._duration), newestSample.point.$sub(0, oldestNonNullSample.point)); } }; A.showLicensePage_closure.prototype = { call$1: function(context) { var _this = this; return new A.LicensePage(_this.applicationName, _this.applicationVersion, _this.applicationIcon, _this.applicationLegalese, null); }, $signature: 1423 }; A.LicensePage.prototype = { createState$0: function() { return new A._LicensePageState(new B.ValueNotifier(null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_int), C._StateLifecycle_0); } }; A._LicensePageState.prototype = { build$1: function(_, context) { var _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12, t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; return new A._MasterDetailFlow(this.get$_packagesView(), this.get$_packageLicensePage(), t1, L.Text$(t2.get$licensesPageTitle(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); }, _packageLicensePage$3: function(_, args, scrollController) { args.toString; type$._DetailArguments._as(args); return new A._PackageLicensePage(args.packageName, args.licenseEntries, scrollController, null); }, _packagesView$2: function(_, isLateral) { var t1 = this._widget, t2 = t1.applicationName, t3 = t1.applicationIcon, t4 = t1.applicationVersion; return new A._PackagesView(new A._AboutProgram(t2, t4, t3, t1.applicationLegalese, null), isLateral, this.selectedId, null); } }; A._AboutProgram.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12, t2 = H.setRuntimeTypeInfo([L.Text$(_this.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline5, C.TextAlign_2, _null, _null)], type$.JSArray_Widget), t3 = _this.icon; if (t3 != null) t2.push(Y.IconTheme$(t3, K.Theme_of(context).iconTheme, _null)); t2.push(L.Text$(_this.version, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText2, C.TextAlign_2, _null, _null)); t2.push(C.SizedBox_null_18_null_null); t2.push(L.Text$(_this.legalese, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.caption, C.TextAlign_2, _null, _null)); t2.push(C.SizedBox_null_18_null_null); t2.push(L.Text$("Powered by Flutter", _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText2, C.TextAlign_2, _null, _null)); return new T.Padding(new V.EdgeInsets(t1, 24, t1, 24), T.Column$(t2, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null); }, get$name: function(receiver) { return this.name; } }; A._PackagesView.prototype = { createState$0: function() { return A._PackagesViewState$(); } }; A._PackagesViewState.prototype = { build$1: function(_, context) { return B.FutureBuilder$(new A._PackagesViewState_build_closure(this), this.licenses, type$._LicenseData); }, _initDefaultDetailPage$2: function(data, context) { var t2, packageName, t3, t1 = data.packages; if (t1.length === 0) return; t2 = this._widget.selectedId._change_notifier$_value; packageName = t1[t2 == null ? 0 : t2]; t1 = data.packageLicenseBindings.$index(0, packageName); t1.toString; t2 = A._MasterDetailFlow_of(context); t2.toString; t3 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LicenseEntry>"); t2._pageOpener.setInitialDetailPage$1(new A._DetailArguments(packageName, P.List_List$of(new H.MappedListIterable(t1, new A._PackagesViewState__initDefaultDetailPage_closure(data), t3), false, t3._eval$1("ListIterable.E")))); }, _packagesList$4: function(context, selectedId, data, drawSelection) { var t1 = H.setRuntimeTypeInfo([this._widget.about], type$.JSArray_Widget), t2 = data.packages; t2 = new H.ListMapView(t2, H._arrayInstanceType(t2)._eval$1("ListMapView<1>")); C.JSArray_methods.addAll$1(t1, t2.get$entries(t2).map$1$1(0, new A._PackagesViewState__packagesList_closure(this, data, drawSelection, selectedId, context), type$.Widget)); return B.ListView$(t1, null, null, null, false, C.Axis_1, false); } }; A._PackagesViewState_licenses_closure.prototype = { call$2: function(prev, license) { prev.addLicense$1(license); return prev; }, $signature: 1430 }; A._PackagesViewState_licenses_closure0.prototype = { call$1: function(licenseData) { licenseData.sortPackages$0(); return licenseData; }, $signature: 1431 }; A._PackagesViewState_build_closure.prototype = { call$2: function(context, snapshot) { return new A.LayoutBuilder(new A._PackagesViewState_build__closure(this.$this, snapshot), new D.ValueKey(snapshot.connectionState, type$.ValueKey_ConnectionState)); }, $signature: 1459 }; A._PackagesViewState_build__closure.prototype = { call$2: function(context, constraints) { var t3, _null = null, t1 = this.snapshot, t2 = this.$this; switch (t1.connectionState) { case C.ConnectionState_3: t3 = t1.data; t3.toString; t2._initDefaultDetailPage$2(t3, context); return N.ValueListenableBuilder$(new A._PackagesViewState_build___closure(t2, t1), t2._widget.selectedId, type$.nullable_int); default: t1 = K.Theme_of(context).cardColor; return M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([t2._widget.about, C.Center_mtF], type$.JSArray_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0); } }, $signature: 1460 }; A._PackagesViewState_build___closure.prototype = { call$3: function(context, selectedId, _) { var _null = null, t1 = K.Theme_of(context).cardColor, t2 = S.BoxConstraints$loose(C.Size_UW6), t3 = this.$this, t4 = this.snapshot.data; t4.toString; return T.Center$(M.Material$(C.Duration_200000, true, _null, M.Container$(_null, t3._packagesList$4(context, selectedId, t4, t3._widget.isLateral), C.Clip_0, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.Clip_0, t1, 4, _null, _null, _null, _null, C.MaterialType_0), _null, _null); }, $signature: 1504 }; A._PackagesViewState__initDefaultDetailPage_closure.prototype = { call$1: function(i) { return this.data.licenses[i]; }, $signature: 612 }; A._PackagesViewState__packagesList_closure.prototype = { call$1: function(entry) { var t3, t4, _this = this, packageName = entry.get$value(entry), index = entry.get$key(entry), t1 = _this.data, t2 = t1.packageLicenseBindings.$index(0, packageName); t2.toString; if (_this.drawSelection) { t3 = entry.get$key(entry); t4 = _this.selectedId; t3 = J.$eq$(t3, t4 == null ? 0 : t4); } else t3 = false; return new A._PackageListTile(packageName, t3, t2.length, new A._PackagesViewState__packagesList__closure(_this.$this, index, _this.context, packageName, t2, t1), null); }, $signature: 1529 }; A._PackagesViewState__packagesList__closure.prototype = { call$0: function() { var t1, t2, t3, _this = this; _this.$this._widget.selectedId.set$value(0, _this.index); t1 = A._MasterDetailFlow_of(_this.context); t1.toString; t2 = _this.bindings; t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,LicenseEntry>"); t1._pageOpener.openDetailPage$1(new A._DetailArguments(_this.packageName, P.List_List$of(new H.MappedListIterable(t2, new A._PackagesViewState__packagesList___closure(_this.data), t3), false, t3._eval$1("ListIterable.E")))); }, $signature: 0 }; A._PackagesViewState__packagesList___closure.prototype = { call$1: function(i) { return this.data.licenses[i]; }, $signature: 612 }; A._PackageListTile.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = _this.isSelected, t2 = t1 ? K.Theme_of(context).highlightColor : K.Theme_of(context).cardColor, t3 = L.Text$(_this.packageName, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t4.toString; return D.Ink$(Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, _this.onTap, t1, _null, _null, L.Text$(t4.licensesPackageDetailText$1(_this.numberLicenses), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, _null), t2, _null, _null); } }; A._LicenseData.prototype = { addLicense$1: function(entry) { var t1, t2, t3, t4, t5, t6, _i, $package, _this = this; for (t1 = entry.packages, t2 = t1.length, t3 = _this.packageLicenseBindings, t4 = _this.licenses, t5 = _this.packages, t6 = type$.JSArray_int, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { $package = t1[_i]; if (!t3.containsKey$1(0, $package)) { t3.$indexSet(0, $package, H.setRuntimeTypeInfo([], t6)); if (_this.firstPackage == null) _this.firstPackage = $package; t5.push($package); } t3.$index(0, $package).push(t4.length); } t4.push(entry); }, sortPackages$0: function() { C.JSArray_methods.sort$1(this.packages, new A._LicenseData_sortPackages_closure(this)); } }; A._LicenseData_sortPackages_closure.prototype = { call$2: function(a, b) { var t1 = this.$this.firstPackage; if (a == t1) return -1; if (b == t1) return 1; return C.JSString_methods.compareTo$1(a.toLowerCase(), b.toLowerCase()); }, $signature: 1530 }; A._DetailArguments.prototype = { $eq: function(_, other) { if (other == null) return false; if (other instanceof A._DetailArguments) return other.packageName == this.packageName; return J.$eq$(other, this); }, get$hashCode: function(_) { return J.get$hashCode$(this.packageName); } }; A._PackageLicensePage.prototype = { createState$0: function() { return new A._PackageLicensePageState(H.setRuntimeTypeInfo([], type$.JSArray_Widget), C._StateLifecycle_0); } }; A._PackageLicensePageState.prototype = { initState$0: function() { this.super$State$initState(); this._initLicenses$0(); }, _initLicenses$0: function() { return this._initLicenses$body$_PackageLicensePageState(); }, _initLicenses$body$_PackageLicensePageState: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, t3, _i, license, t4, t5, paragraphs; var $async$_initLicenses$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.licenseEntries, t2 = t1.length, t3 = type$.List_LicenseParagraph, _i = 0; case 3: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 5; break; } license = t1[_i]; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } t4 = $.SchedulerBinding__instance; t4.toString; t5 = license.get$paragraphs(); $async$goto = 6; return P._asyncAwait(t4.scheduleTask$1$3$debugLabel(t5.get$toList(t5), C.Priority_100000, "License", t3), $async$_initLicenses$0); case 6: // returning from await. paragraphs = $async$result; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } new A._PackageLicensePageState__initLicenses_closure($async$self, paragraphs).call$0(); $async$self._framework$_element.markNeedsBuild$0(); case 4: // for update t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$self.setState$1(new A._PackageLicensePageState__initLicenses_closure0($async$self)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_initLicenses$0, $async$completer); }, build$1: function(_, context) { var theme, t2, title, subtitle, pad, padding, t3, t4, page, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; theme = K.Theme_of(context); t2 = _this._widget; title = t2.packageName; subtitle = t1.licensesPackageDetailText$1(t2.licenseEntries.length); pad = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx >= 720 ? 24 : 12; padding = new V.EdgeInsets(pad, 0, pad, pad); t1 = P.List_List$of(_this._licenses, true, type$.Widget); if (!_this._loaded) t1.push(C.Padding_pwt); t2 = _this._widget.scrollController; if (t2 == null) { t2 = theme.appBarTheme.textTheme; t2 = E.AppBar$(_null, _null, true, _null, _null, _null, 1, _null, _null, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, new A._PackageLicensePageTitle(title, subtitle, t2 == null ? theme.primaryTextTheme : t2, _null), _null, _null, _null, 1, _null); t3 = theme.cardColor; t4 = S.BoxConstraints$loose(C.Size_UW6); page = M.Scaffold$(t2, _null, T.Center$(M.Material$(C.Duration_200000, true, _null, M.Container$(_null, L.Localizations_Localizations$override(E.Scrollbar$(B.ListView$(t1, _null, padding, _null, false, C.Axis_1, false), _null, _null), context, C.Locale_en_US), C.Clip_0, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.Clip_0, t3, 4, _null, _null, _null, _null, C.MaterialType_0), _null, _null), _null, _null, _null, _null, _null); } else { t3 = theme.cardColor; page = B.CustomScrollView$(0, _null, C.Clip_1, t2, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, _null, _null, false, C.Axis_1, false, H.setRuntimeTypeInfo([new E.SliverAppBar(false, new A._PackageLicensePageTitle(title, subtitle, theme.textTheme, _null), t3, true, _null), new T.SliverPadding(padding, G.SliverList$(new G.SliverChildBuilderDelegate(new A._PackageLicensePageState_build_closure(t1), t1.length, true, true, true, G.sliver___kDefaultSemanticIndexCallback$closure())), _null)], type$.JSArray_Widget)); } t1 = theme.textTheme.caption; t1.toString; return L.DefaultTextStyle$(page, _null, _null, C.TextOverflow_0, true, t1, _null, _null, C.TextWidthBasis_0); } }; A._PackageLicensePageState__initLicenses_closure.prototype = { call$0: function() { var t2, t3, t4, _null = null, t1 = this.$this._licenses; t1.push(C.Padding_ES6); for (t2 = J.get$iterator$ax(this.paragraphs); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t3.indent; t3 = t3.text; if (t4 === -1) t1.push(new T.Padding(C.EdgeInsets_0_16_0_0, new L.Text(t3, C.TextStyle_YOT, C.TextAlign_2, _null, _null, _null, _null, _null, _null, _null), _null)); else t1.push(new T.Padding(new V.EdgeInsetsDirectional(16 * t4, 8, 0, 0), new L.Text(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } }, $signature: 0 }; A._PackageLicensePageState__initLicenses_closure0.prototype = { call$0: function() { this.$this._loaded = true; }, $signature: 0 }; A._PackageLicensePageState_build_closure.prototype = { call$2: function(context, index) { return L.Localizations_Localizations$override(this.listWidgets[index], context, C.Locale_en_US); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1568 }; A._PackageLicensePageTitle.prototype = { build$1: function(_, context) { var _null = null, t1 = this.theme; return T.Column$(H.setRuntimeTypeInfo([L.Text$(this.title, _null, _null, _null, _null, _null, t1.headline6, _null, _null, _null), L.Text$(this.subtitle, _null, _null, _null, _null, _null, t1.subtitle2, _null, _null, _null)], type$.JSArray_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_2, C.MainAxisSize_1, C.VerticalDirection_1); } }; A._ActionLevel.prototype = { toString$0: function(_) { return this._about$_name; } }; A._LayoutMode.prototype = { toString$0: function(_) { return this._about$_name; } }; A._Focus.prototype = { toString$0: function(_) { return this._about$_name; } }; A._MasterDetailFlow.prototype = { createState$0: function() { return new A._MasterDetailFlowState(C._Focus_0, new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_NavigatorState), C._StateLifecycle_0); }, masterViewBuilder$2: function(arg0, arg1) { return this.masterViewBuilder.call$2(arg0, arg1); }, detailPageBuilder$3: function(arg0, arg1, arg2) { return this.detailPageBuilder.call$3(arg0, arg1, arg2); } }; A._MasterDetailFlowProxy.prototype = {}; A._MasterDetailFlowState.prototype = { openDetailPage$1: function($arguments) { var _this = this; _this._cachedDetailArguments = $arguments; if (_this._builtLayout === C._LayoutMode_2) _this._navigatorKey.get$currentState().pushNamed$1$2$arguments("detail", $arguments, type$.nullable_Object); else _this.focus = C._Focus_1; }, setInitialDetailPage$1: function($arguments) { this._cachedDetailArguments = $arguments; }, build$1: function(_, context) { var _this = this; _this._widget.toString; switch (C._LayoutMode_0) { case C._LayoutMode_2: return _this._nestedUI$1(context); case C._LayoutMode_1: return _this._lateralUI$1(context); case C._LayoutMode_0: return new A.LayoutBuilder(new A._MasterDetailFlowState_build_closure(_this), null); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _nestedUI$1: function(context) { var masterPageRoute, _this = this; _this._builtLayout = C._LayoutMode_2; masterPageRoute = _this._masterPageRoute$1(context); return new F.WillPopScope(K.Navigator$("initial", _this._navigatorKey, C.List_empty9, new A._MasterDetailFlowState__nestedUI_closure(_this, masterPageRoute), new A._MasterDetailFlowState__nestedUI_closure0(_this, masterPageRoute), null, false, null), new A._MasterDetailFlowState__nestedUI_closure1(_this), null); }, _masterPageRoute$1: function(context) { return V.MaterialPageRoute$(new A._MasterDetailFlowState__masterPageRoute_closure(this, context), null, type$.dynamic); }, _detailPageRoute$1: function($arguments) { return V.MaterialPageRoute$(new A._MasterDetailFlowState__detailPageRoute_closure(this, $arguments), null, type$.dynamic); }, _lateralUI$1: function(context) { var t1, t2, _this = this, _null = null; _this._builtLayout = C._LayoutMode_1; t1 = _this._widget; t2 = t1.detailPageFABlessGutterWidth; return new A._MasterDetailScaffold(new A._MasterDetailFlowState__lateralUI_closure(_this), new A._MasterDetailFlowState__lateralUI_closure0(_this), new A._MasterDetailFlowState__lateralUI_closure1(), _null, _null, _this._cachedDetailArguments, _null, t1.title, true, _null, t2, _null, _null, _null); } }; A._MasterDetailFlowState_build_closure.prototype = { call$2: function(context, constraints) { var availableWidth = constraints.maxWidth, t1 = this.$this; t1._widget.toString; if (availableWidth >= 840) return t1._lateralUI$1(context); else return t1._nestedUI$1(context); }, $signature: 307 }; A._MasterDetailFlowState__nestedUI_closure1.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.$this._navigatorKey.get$currentState().maybePop$0(), $async$call$0); case 3: // returning from await. $async$returnValue = !$async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 389 }; A._MasterDetailFlowState__nestedUI_closure.prototype = { call$2: function($navigator, initialRoute) { var t1 = this.$this; switch (t1.focus) { case C._Focus_0: return H.setRuntimeTypeInfo([this.masterPageRoute], type$.JSArray_Route_void); case C._Focus_1: return H.setRuntimeTypeInfo([this.masterPageRoute, t1._detailPageRoute$1(t1._cachedDetailArguments)], type$.JSArray_Route_void); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 1573 }; A._MasterDetailFlowState__nestedUI_closure0.prototype = { call$1: function(settings) { var t2, t1 = settings.name; switch (t1) { case "master": this.$this.focus = C._Focus_0; return this.masterPageRoute; case "detail": t1 = this.$this; t1.focus = C._Focus_1; t2 = settings.$arguments; t1._cachedDetailArguments = t2; return t1._detailPageRoute$1(t2); default: throw H.wrapException(P.Exception_Exception("Unknown route " + H.S(t1))); } }, $signature: 1575 }; A._MasterDetailFlowState__masterPageRoute_closure.prototype = { call$1: function(c) { var t2, t3, _null = null, t1 = this.$this; t1._widget.toString; t2 = this.context; t3 = K.Navigator_of(t2, false).canPop$0(); t2 = t3 ? new R.BackButton(new A._MasterDetailFlowState__masterPageRoute__closure(t2), _null) : _null; t1 = t1._widget; t3 = t1.title; t2 = new A._MasterPage(t1.masterViewBuilder, t3, t2, true, _null, _null, _null, _null, _null, _null); t1 = t2; return T.BlockSemantics$(t1); }, $signature: 1611 }; A._MasterDetailFlowState__masterPageRoute__closure.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._MasterDetailFlowState__detailPageRoute_closure.prototype = { call$1: function(context) { var t1 = this.$this; return new F.WillPopScope(T.BlockSemantics$(t1._widget.detailPageBuilder$3(context, this.$arguments, null)), new A._MasterDetailFlowState__detailPageRoute__closure(t1, context), null); }, $signature: 1612 }; A._MasterDetailFlowState__detailPageRoute__closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.$this.focus = C._Focus_0; K.Navigator_of($async$self.context, false).pop$0(0); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 389 }; A._MasterDetailFlowState__lateralUI_closure1.prototype = { call$2: function(_, __) { return C.List_empty8; }, $signature: 1613 }; A._MasterDetailFlowState__lateralUI_closure0.prototype = { call$3: function(context, args, scrollController) { var t1 = this.$this, t2 = t1._widget; t2.toString; return t2.detailPageBuilder$3(context, args == null ? t1._cachedDetailArguments : args, scrollController); }, "call*": "call$3", $requiredArgCount: 3, $signature: 622 }; A._MasterDetailFlowState__lateralUI_closure.prototype = { call$2: function(context, isLateral) { return this.$this._widget.masterViewBuilder$2(context, isLateral); }, "call*": "call$2", $requiredArgCount: 2, $signature: 621 }; A._MasterPage.prototype = { build$1: function(_, context) { var _this = this, _null = null; return M.Scaffold$(E.AppBar$(C.List_empty8, _null, true, _null, _null, _null, 1, _null, _this.centerTitle, _null, false, _this.flexibleSpace, _null, _null, _this.leading, _null, true, _null, _null, _null, _null, _this.title, _null, _null, _null, 1, _null), _null, _this.masterViewBuilder.call$2(context, false), _null, _null, _null, _this.floatingActionButton, _this.floatingActionButtonLocation); } }; A._MasterDetailScaffold.prototype = { createState$0: function() { return new A._MasterDetailScaffoldState(new B.ValueNotifier(null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_Object), C._StateLifecycle_0); }, masterViewBuilder$2: function(arg0, arg1) { return this.masterViewBuilder.call$2(arg0, arg1); } }; A._MasterDetailScaffoldState.prototype = { get$masterViewWidth: function() { var t1 = this.___MasterDetailScaffoldState_masterViewWidth; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("masterViewWidth")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.detailPageFABlessGutterWidth; _this.___MasterDetailScaffoldState_detailPageFABlessGutterWidth = t1; _this.___MasterDetailScaffoldState_detailPageFABGutterWidth = 84; _this.___MasterDetailScaffoldState_masterViewWidth = 320; _this.___MasterDetailScaffoldState_floatingActionButtonLocation = C.C__EndTopFabLocation; }, openDetailPage$1: function($arguments) { var t1; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._MasterDetailScaffoldState_openDetailPage_closure(this, $arguments)); t1 = this._framework$_element; t1.toString; A._MasterDetailFlow_of(t1)._pageOpener.openDetailPage$1($arguments); }, setInitialDetailPage$1: function($arguments) { var t1; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._MasterDetailScaffoldState_setInitialDetailPage_closure(this, $arguments)); t1 = this._framework$_element; t1.toString; A._MasterDetailFlow_of(t1)._pageOpener.setInitialDetailPage$1($arguments); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.___MasterDetailScaffoldState_floatingActionButtonLocation; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("floatingActionButtonLocation")); t2 = _this._widget; t3 = t2.title; t2 = t2.actionBuilder.call$2(context, C._ActionLevel_0); t4 = _this._widget; t5 = t4.leading; t4 = t4.centerTitle; t6 = S.BoxConstraints$tightFor(_null, _this.get$masterViewWidth()); t7 = K.Theme_of(context).primaryIconTheme; t8 = type$.JSArray_Widget; t3 = E.AppBar$(t2, _null, true, _null, _null, new Q.PreferredSize(T.Row$(H.setRuntimeTypeInfo([new T.ConstrainedBox(t6, Y.IconTheme$(M.Container$(C.AlignmentDirectional_1_0, E.OverflowBar$(_this._widget.actionBuilder.call$2(context, C._ActionLevel_1), C.OverflowBarAlignment_1, C.VerticalDirection_1, 0, 8), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, C.EdgeInsets_8_8_8_8, _null, _null, _null), t7, _null), _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Size_8aB, _null), 1, _null, t4, _null, false, _null, _null, _null, t5, _null, true, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); t5 = _this.get$masterViewWidth(); t2 = _this._widget; t2 = t2.masterViewBuilder$2(context, true); t1 = M.Scaffold$(t3, _null, new T.ConstrainedBox(new S.BoxConstraints(0, t5, 0, 1 / 0), t2, _null), _null, _null, _null, _this._widget.floatingActionButton, t1); t2 = _this.get$masterViewWidth(); _this._widget.toString; t3 = _this.___MasterDetailScaffoldState_detailPageFABlessGutterWidth; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("detailPageFABlessGutterWidth")); return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([t1, Q.SafeArea$(true, new T.Padding(new V.EdgeInsetsDirectional(t2 - 4, 0, t3, 0), N.ValueListenableBuilder$(new A._MasterDetailScaffoldState_build_closure(_this), _this._detailArguments, type$.nullable_Object), _null), C.EdgeInsets_0_0_0_0, true)], t8), C.Clip_1, C.StackFit_0, _null, _null); } }; A._MasterDetailScaffoldState_openDetailPage_closure.prototype = { call$1: function(_) { var t1 = this.$arguments; this.$this._detailArguments.set$value(0, t1); return t1; }, $signature: 28 }; A._MasterDetailScaffoldState_setInitialDetailPage_closure.prototype = { call$1: function(_) { var t1 = this.$arguments; this.$this._detailArguments.set$value(0, t1); return t1; }, $signature: 28 }; A._MasterDetailScaffoldState_build_closure.prototype = { call$3: function(context, value, child) { var _null = null, t1 = value == null, t2 = t1 ? this.$this._widget.initialArguments : value, t3 = this.$this._widget, t4 = t3.detailPageBuilder; return G.AnimatedSwitcher$(M.Container$(_null, new A._DetailView(t4, t1 ? t3.initialArguments : value, _null), C.Clip_0, _null, C.BoxConstraints_ALM, _null, _null, _null, new D.ValueKey(t2, type$.ValueKey_nullable_Object), _null, _null, _null, _null, _null), C.Duration_500000, new A._MasterDetailScaffoldState_build__closure()); }, $signature: 1638 }; A._MasterDetailScaffoldState_build__closure.prototype = { call$2: function(child, animation) { return K._FadeUpwardsPageTransition$(child, animation); }, "call*": "call$2", $requiredArgCount: 2, $signature: 606 }; A._DetailView.prototype = { build$1: function(_, context) { var screenHeight, minHeight, _null = null; if (this._about$_arguments == null) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); screenHeight = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dy; minHeight = (screenHeight - 56) / screenHeight; return new S.DraggableScrollableSheet(minHeight, minHeight, 1, false, new A._DetailView_build_closure(this), _null); } }; A._DetailView_build_closure.prototype = { call$2: function(context, controller) { var _null = null, t1 = K.Theme_of(context).cardColor, t2 = this.$this; return new T.MouseRegion(_null, _null, _null, C.C__DeferringMouseCursor, true, V.Card$(t2._builder.call$3(context, t2._about$_arguments, controller), C.Clip_2, t1, 4, C.EdgeInsets_4_0_4_0, true, C.RoundedRectangleBorder_a512), _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1640 }; S.ThemeMode.prototype = { toString$0: function(_) { return this._app0$_name; } }; S.MaterialApp.prototype = { createState$0: function() { return new S._MaterialAppState(C._StateLifecycle_0); } }; S.MaterialApp_createMaterialHeroController_closure.prototype = { call$2: function(begin, end) { return new D.MaterialRectArcTween(begin, end); }, $signature: 1643 }; S.MaterialScrollBehavior.prototype = { getPlatform$1: function(context) { return K.Theme_of(context).platform; }, buildScrollbar$3: function(context, child, details) { var _s80_ = string$.x60null_c; switch (G.axisDirectionToAxis(details.direction)) { case C.Axis_0: return child; case C.Axis_1: switch (K.Theme_of(context).platform) { case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return E.Scrollbar$(child, details.controller, null); case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_2: return child; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, buildOverscrollIndicator$3: function(context, child, details) { switch (K.Theme_of(context).platform) { case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return child; case C.TargetPlatform_0: case C.TargetPlatform_1: return L.GlowingOverscrollIndicator$(details.direction, child, K.Theme_of(context).colorScheme.secondary); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; S._MaterialAppState.prototype = { initState$0: function() { this.super$State$initState(); this.___MaterialAppState__heroController = S.MaterialApp_createMaterialHeroController(); }, get$_localizationsDelegates: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$get$_localizationsDelegates($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._IterationMarker_yieldStar($async$self._widget.localizationsDelegates); case 2: // after yield $async$goto = 3; return C.C__MaterialLocalizationsDelegate0; case 3: // after yield $async$goto = 4; return C.C__CupertinoLocalizationsDelegate; case 4: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.LocalizationsDelegate_dynamic); }, _inspectorSelectButtonBuilder$2: function(context, onPressed) { return E.FloatingActionButton$(null, C.Icon_OxR, C.C__DefaultHeroTag, true, onPressed, null); }, _materialBuilder$2: function(context, child) { var t1, platformBrightness, useDarkTheme, highContrast, theme, _this = this, _null = null; _this._widget.toString; t1 = F.MediaQuery_maybeOf(context); platformBrightness = t1 == null ? _null : t1.platformBrightness; if (platformBrightness == null) platformBrightness = C.Brightness_1; useDarkTheme = platformBrightness === C.Brightness_0; t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? _null : t1.highContrast; highContrast = t1 === true; if (useDarkTheme) if (highContrast) _this._widget.toString; if (useDarkTheme) _this._widget.toString; if (highContrast) _this._widget.toString; t1 = _this._widget; theme = t1.theme; t1.toString; child.toString; t1 = child; return new M.ScaffoldMessenger(new K.AnimatedTheme(theme, t1, C.C__Linear, C.Duration_200000, _null, _null), _null); }, _buildWidgetApp$1: function(context) { var materialColor, t3, t4, t5, _this = this, _null = null, t1 = _this._widget, t2 = t1.theme; t2 = t2.primaryColor; materialColor = t2; if (materialColor == null) materialColor = C.MaterialColor_Map_JNwaj_4280391411; t2 = t1.navigatorKey; t3 = t1.navigatorObservers; t4 = t1.home; t5 = t1.routes; return new S.WidgetsApp(t2, t1.onGenerateRoute, _null, new S._MaterialAppState__buildWidgetApp_closure(), _null, _null, _null, _null, t4, t5, _null, _null, t3, _this.get$_materialBuilder(), t1.title, _null, C.TextStyle_jrF, materialColor, t1.locale, _this.get$_localizationsDelegates(), _null, _null, _this._widget.supportedLocales, false, false, false, false, _this.get$_inspectorSelectButtonBuilder(), false, _null, _null, _null, new N.GlobalObjectKey(_this, type$.GlobalObjectKey_State_StatefulWidget)); }, build$1: function(_, context) { var t1, result = this._buildWidgetApp$1(context); this._widget.toString; t1 = this.___MaterialAppState__heroController; return K.ScrollConfiguration$(C.C_MaterialScrollBehavior, new K.HeroControllerScope(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_heroController")) : t1, result, null)); } }; S._MaterialAppState__buildWidgetApp_closure.prototype = { call$1$2: function(settings, builder, $T) { return V.MaterialPageRoute$(builder, settings, $T); }, call$2: function(settings, builder) { return this.call$1$2(settings, builder, type$.dynamic); }, $signature: 1645 }; E._ToolbarContainerLayout.prototype = { getConstraintsForChild$1: function(constraints) { return constraints.tighten$1$height(this.toolbarHeight); }, getSize$1: function(constraints) { return new P.Size(constraints.maxWidth, this.toolbarHeight); }, getPositionForChild$2: function(size, childSize) { return new P.Offset(0, size._dy - childSize._dy); }, shouldRelayout$1: function(oldDelegate) { return this.toolbarHeight !== oldDelegate.toolbarHeight; } }; E.AppBar.prototype = { _getEffectiveCenterTitle$1: function(theme) { var t1 = this.centerTitle; if (t1 != null) return t1; switch (theme.platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return false; case C.TargetPlatform_2: case C.TargetPlatform_4: t1 = this.actions; return t1 == null || J.get$length$asx(t1) < 2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, createState$0: function() { return new E._AppBarState(C._StateLifecycle_0); } }; E._AppBarState.prototype = { _handleDrawerButton$0: function() { var t1 = this._framework$_element; t1.toString; M.Scaffold_of(t1).openDrawer$0(); }, _handleDrawerButtonEnd$0: function() { var t1 = this._framework$_element; t1.toString; M.Scaffold_of(t1).openEndDrawer$0(); }, build$1: function(_, context) { var hasEndDrawer, canPop, toolbarHeight, backgroundColor, foregroundColor, overallIconTheme, actionsIconTheme, toolbarTextStyle, titleTextStyle, opacity, leading, title, namesRoute, mediaQueryData, actions, appBar, overlayStyleBrightness, overlayStyle, _this = this, _null = null, theme = K.Theme_of(context), colorScheme = theme.colorScheme, appBarTheme = K.Theme_of(context).appBarTheme, t1 = context.findAncestorStateOfType$1$0(type$.ScaffoldState), parentRoute = T.ModalRoute_of(context, type$.nullable_Object), t2 = t1 == null, t3 = t2 ? _null : t1._widget.drawer != null; t1 = t2 ? _null : t1._widget.endDrawer != null; hasEndDrawer = t1 === true; if (parentRoute == null) t1 = _null; else if (!parentRoute.get$hasActiveRouteBelow()) { t1 = parentRoute.LocalHistoryRoute__localHistory; t1 = t1 != null && t1.length !== 0; } else t1 = true; canPop = t1 === true; t1 = _this._widget; toolbarHeight = t1.toolbarHeight; if (toolbarHeight == null) toolbarHeight = 56; t2 = t1.backgroundColor; if (t2 == null) t2 = appBarTheme.backgroundColor; backgroundColor = t2 == null ? theme.primaryColor : t2; foregroundColor = appBarTheme.foregroundColor; if (foregroundColor == null) foregroundColor = colorScheme.brightness === C.Brightness_0 ? colorScheme.onSurface : colorScheme.onPrimary; t2 = appBarTheme.iconTheme; overallIconTheme = t2 == null ? theme.primaryIconTheme : t2; actionsIconTheme = appBarTheme.actionsIconTheme; if (actionsIconTheme == null) actionsIconTheme = overallIconTheme; t2 = appBarTheme.textTheme; t2 = t2 == null ? _null : t2.bodyText2; toolbarTextStyle = t2 == null ? theme.primaryTextTheme.bodyText2 : t2; t2 = appBarTheme.textTheme; t2 = t2 == null ? _null : t2.headline6; titleTextStyle = t2 == null ? theme.primaryTextTheme.headline6 : t2; t1 = t1.toolbarOpacity; if (t1 !== 1) { opacity = C.Interval_oqF.transform$1(0, t1); if ((titleTextStyle == null ? _null : titleTextStyle.color) != null) { t1 = titleTextStyle.color; t1.toString; titleTextStyle = titleTextStyle.copyWith$1$color(P.Color$fromARGB(C.JSNumber_methods.round$0(255 * opacity), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); } if ((toolbarTextStyle == null ? _null : toolbarTextStyle.color) != null) { t1 = toolbarTextStyle.color; t1.toString; toolbarTextStyle = toolbarTextStyle.copyWith$1$color(P.Color$fromARGB(C.JSNumber_methods.round$0(255 * opacity), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); } t1 = overallIconTheme.get$opacity(overallIconTheme); overallIconTheme = overallIconTheme.copyWith$1$opacity(opacity * (t1 == null ? 1 : t1)); t1 = actionsIconTheme.get$opacity(actionsIconTheme); actionsIconTheme = actionsIconTheme.copyWith$1$opacity(opacity * (t1 == null ? 1 : t1)); } t1 = _this._widget; leading = t1.leading; if (leading == null && t1.automaticallyImplyLeading) if (t3 === true) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; leading = B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_IID, 24, _this.get$_handleDrawerButton(), C.EdgeInsets_8_8_8_8, t1.get$openAppDrawerTooltip(), _null); } else if (!hasEndDrawer && canPop) leading = C.BackButton_null_null; if (leading != null) { t1 = _this._widget.leadingWidth; leading = new T.ConstrainedBox(S.BoxConstraints$tightFor(_null, t1 == null ? 56 : t1), leading, _null); } title = _this._widget.title; if (title != null) { switch (theme.platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: namesRoute = true; break; case C.TargetPlatform_2: case C.TargetPlatform_4: namesRoute = _null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } title = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, namesRoute, _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), false, false, false, new E._AppBarTitleBox(title, _null), _null); titleTextStyle.toString; title = L.DefaultTextStyle$(title, _null, _null, C.TextOverflow_2, false, titleTextStyle, _null, _null, C.TextWidthBasis_0); mediaQueryData = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; title = new F.MediaQuery(mediaQueryData.copyWith$1$textScaleFactor(Math.min(mediaQueryData.textScaleFactor, 1.34)), title, _null); } t1 = _this._widget.actions; if (t1 != null && J.get$isNotEmpty$asx(t1)) { t1 = _this._widget.actions; t1.toString; actions = T.Row$(t1, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_0, _null); } else if (hasEndDrawer) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; actions = B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_IID, 24, _this.get$_handleDrawerButtonEnd(), C.EdgeInsets_8_8_8_8, t1.get$openAppDrawerTooltip(), _null); } else actions = _null; if (actions != null) actions = Y.IconTheme_merge(actions, actionsIconTheme); t1 = _this._widget._getEffectiveCenterTitle$1(theme); t2 = _this._widget; t2.toString; t3 = appBarTheme.titleSpacing; if (t3 == null) t3 = 16; toolbarTextStyle.toString; appBar = T.ClipRect$(new T.CustomSingleChildLayout(new E._ToolbarContainerLayout(toolbarHeight), Y.IconTheme_merge(L.DefaultTextStyle$(new E.NavigationToolbar(leading, title, actions, t1, t3, _null), _null, _null, C.TextOverflow_0, true, toolbarTextStyle, _null, _null, C.TextWidthBasis_0), overallIconTheme), _null)); if (t2.bottom != null) { t1 = H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, new T.ConstrainedBox(new S.BoxConstraints(0, 1 / 0, 0, toolbarHeight), appBar, _null), _null)], type$.JSArray_Widget); t2 = _this._widget; t3 = t2.bottomOpacity; if (t3 === 1) { t2 = t2.bottom; t2.toString; t1.push(t2); } else { t2 = C.Interval_oqF.transform$1(0, t3); t1.push(T.Opacity$(false, _this._widget.bottom, t2)); } appBar = T.Column$(t1, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_3, C.MainAxisSize_1, C.VerticalDirection_1); } t1 = _this._widget; t1.toString; appBar = Q.SafeArea$(false, appBar, C.EdgeInsets_0_0_0_0, true); appBar = new T.Align(C.Alignment_0_m1, _null, _null, appBar, _null); t1 = t1.flexibleSpace; if (t1 != null) { t2 = 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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.OrdinalSortKey_1_null, _null, _null, _null, _null, _null); t3 = M.Material$(C.Duration_200000, true, _null, appBar, C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_4); appBar = T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([new T.Semantics(t2, false, true, false, t1, _null), new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.OrdinalSortKey_0_null, _null, _null, _null, _null, _null), false, true, false, t3, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_2, _null, _null); } t1 = _this._widget; t1.toString; overlayStyleBrightness = appBarTheme.brightness; if (overlayStyleBrightness == null) overlayStyleBrightness = colorScheme.brightness; overlayStyle = overlayStyleBrightness === C.Brightness_0 ? C.SystemUiOverlayStyle_4EL : C.SystemUiOverlayStyle_yjH; t2 = t1.elevation; if (t2 == null) t2 = appBarTheme.elevation; if (t2 == null) t2 = 4; t3 = appBarTheme.shadowColor; if (t3 == null) t3 = C.Color_4278190080; t1 = M.Material$(C.Duration_200000, true, _null, new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, appBar, _null), C.Clip_0, backgroundColor, t2, _null, t3, t1.shape, _null, C.MaterialType_0); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new X.AnnotatedRegion(overlayStyle, t1, _null, type$.AnnotatedRegion_SystemUiOverlayStyle), _null); } }; E._SliverAppBarDelegate.prototype = { get$maxExtent: function() { var _this = this, t1 = _this.toolbarHeight + _this._bottomHeight; return Math.max(_this.topPadding + t1, _this.collapsedHeight); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(topPadding: " + J.toStringAsFixed$1$n(this.topPadding, 1) + ", bottomHeight: " + C.JSInt_methods.toStringAsFixed$1(this._bottomHeight, 1) + ", ...)"; } }; E.SliverAppBar.prototype = { createState$0: function() { return new E._SliverAppBarState(null, C._StateLifecycle_0); } }; E._SliverAppBarState.prototype = { _updateSnapConfiguration$0: function() { this._widget.toString; var t1 = this._snapConfiguration = null; this._showOnScreenConfiguration = C.JSBool_methods.$and(false, false) ? C.PersistentHeaderShowOnScreenConfiguration_QA5 : t1; }, _updateStretchConfiguration$0: function() { this._widget.toString; this._stretchConfiguration = null; }, initState$0: function() { this.super$State$initState(); this._updateSnapConfiguration$0(); this._updateStretchConfiguration$0(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; }, build$1: function(_, context) { var t1, topPadding, collapsedHeight, t2, t3, t4, _this = this, _null = null; _this._widget.toString; t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery); topPadding = t1.data.padding.top; t1 = _this._widget; t1.toString; collapsedHeight = 56 + topPadding; t2 = _this._snapConfiguration; t3 = _this._stretchConfiguration; t4 = _this._showOnScreenConfiguration; return F.MediaQuery_MediaQuery$removePadding(new U.SliverPersistentHeader(new E._SliverAppBarDelegate(_null, false, t1.title, _null, _null, _null, _null, _null, false, t1.backgroundColor, _null, _null, _null, _null, _null, true, _null, false, _null, _null, collapsedHeight, topPadding, false, true, _null, 56, _null, _null, _null, _null, _null, 0, _this, t2, t3, t4), true, false, _null), context, true, false, false, false); } }; E._AppBarTitleBox.prototype = { createRenderObject$1: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new E._RenderAppBarTitleBox(C.Alignment_0_0, t1.textDirection, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; E._RenderAppBarTitleBox.prototype = { computeDryLayout$1: function(constraints) { var innerConstraints = constraints.copyWith$1$maxHeight(1 / 0); return constraints.constrain$1(this.RenderObjectWithChildMixin__child.getDryLayout$1(innerConstraints)); }, performLayout$0: function() { var t2, _this = this, t1 = type$.BoxConstraints, innerConstraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).copyWith$1$maxHeight(1 / 0); _this.RenderObjectWithChildMixin__child.layout$2$parentUsesSize(0, innerConstraints, true); t1 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrain$1(t2); _this.alignChild$0(); } }; E.__SliverAppBarState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; V.AppBarTheme.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.brightness, _this.backgroundColor, _this.foregroundColor, _this.elevation, _this.shadowColor, _this.iconTheme, _this.actionsIconTheme, _this.textTheme, _this.centerTitle, _this.titleSpacing, _this.toolbarTextStyle, _this.titleTextStyle, _this.systemOverlayStyle, _this.backwardsCompatibility, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof V.AppBarTheme) if (other.brightness == _this.brightness) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (J.$eq$(other.foregroundColor, _this.foregroundColor)) if (other.elevation == _this.elevation) if (J.$eq$(other.shadowColor, _this.shadowColor)) if (J.$eq$(other.iconTheme, _this.iconTheme)) if (J.$eq$(other.actionsIconTheme, _this.actionsIconTheme)) if (J.$eq$(other.textTheme, _this.textTheme)) if (other.titleSpacing == _this.titleSpacing) if (J.$eq$(other.toolbarTextStyle, _this.toolbarTextStyle)) if (J.$eq$(other.titleTextStyle, _this.titleTextStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; V._AppBarTheme_Object_Diagnosticable.prototype = {}; D.MaterialPointArcTween.prototype = { _initialize$0: function() { var t2, delta, deltaX, deltaY, distanceFromAtoB, t3, t4, c, t5, t6, t7, t8, _this = this, t1 = _this.begin; t1.toString; t2 = _this.end; t2.toString; delta = t2.$sub(0, t1); deltaX = Math.abs(delta._dx); deltaY = Math.abs(delta._dy); distanceFromAtoB = delta.get$distance(); t3 = t2._dx; t4 = t1._dy; c = new P.Offset(t3, t4); t5 = new D.MaterialPointArcTween__initialize_sweepAngle(_this, distanceFromAtoB); if (deltaX > 2 && deltaY > 2) { t6 = distanceFromAtoB * distanceFromAtoB; t7 = t1._dx; t8 = t2._dy; if (deltaX < deltaY) { t1 = t6 / c.$sub(0, t1).get$distance() / 2; _this._radius = t1; _this._center = new P.Offset(t3 + t1 * J.get$sign$in(t7 - t3), t8); if (t7 < t3) { _this._beginAngle = t5.call$0() * J.get$sign$in(t4 - t8); _this._endAngle = 0; } else { _this._beginAngle = 3.141592653589793 + t5.call$0() * J.get$sign$in(t8 - t4); _this._endAngle = 3.141592653589793; } } else { _this._radius = t6 / c.$sub(0, t2).get$distance() / 2; t1 = J.get$sign$in(t8 - t4); t2 = _this._radius; t2.toString; _this._center = new P.Offset(t7, t4 + t1 * t2); if (t4 < t8) { _this._beginAngle = -1.5707963267948966; _this._endAngle = -1.5707963267948966 + t5.call$0() * J.get$sign$in(t3 - t7); } else { _this._beginAngle = 1.5707963267948966; _this._endAngle = 1.5707963267948966 + t5.call$0() * J.get$sign$in(t7 - t3); } } } else _this._endAngle = _this._beginAngle = null; _this._arc$_dirty = false; }, get$center: function() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._center; }, get$radius: function() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._radius; }, get$beginAngle: function() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._beginAngle; }, get$endAngle: function() { var _this = this; if (_this.begin == null || _this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this._beginAngle; }, set$begin: function(value) { if (!J.$eq$(value, this.begin)) { this.begin = value; this._arc$_dirty = true; } }, set$end: function(_, value) { if (!J.$eq$(value, this.end)) { this.end = value; this._arc$_dirty = true; } }, lerp$1: function(t) { var t1, t2, t3, t4, _this = this; if (_this._arc$_dirty) _this._initialize$0(); if (t === 0) { t1 = _this.begin; t1.toString; return t1; } if (t === 1) { t1 = _this.end; t1.toString; return t1; } t1 = _this._beginAngle; if (t1 == null || _this._endAngle == null) { t1 = P.Offset_lerp(_this.begin, _this.end, t); t1.toString; return t1; } t1 = P.lerpDouble(t1, _this._endAngle, t); t1.toString; t2 = Math.cos(t1); t3 = _this._radius; t3.toString; t1 = Math.sin(t1); t4 = _this._radius; t4.toString; return _this._center.$add(0, new P.Offset(t2 * t3, t1 * t4)); }, toString$0: function(_) { var _this = this; return "MaterialPointArcTween(" + H.S(_this.begin) + " \u2192 " + H.S(_this.end) + "; center=" + H.S(_this.get$center()) + ", radius=" + H.S(_this.get$radius()) + ", beginAngle=" + H.S(_this.get$beginAngle()) + ", endAngle=" + H.S(_this.get$endAngle()) + ")"; } }; D.MaterialPointArcTween__initialize_sweepAngle.prototype = { call$0: function() { var t1 = this.$this._radius; t1.toString; return 2 * Math.asin(this.distanceFromAtoB / (2 * t1)); }, $signature: 116 }; D._CornerId.prototype = { toString$0: function(_) { return this._arc$_name; } }; D._Diagonal.prototype = {}; D._maxBy__maxValue_set.prototype = { call$1: function(t1) { return this._box_0._maxValue = t1; }, $signature: function() { return this.T._eval$1("@(0)"); } }; D._maxBy__maxValue_get.prototype = { call$0: function() { var t1 = this._box_0._maxValue; return t1 === $ ? H.throwExpression(H.LateError$localNI("maxValue")) : t1; }, $signature: function() { return this.T._eval$1("0()"); } }; D.MaterialRectArcTween.prototype = { _initialize$0: function() { var t2, t3, _this = this, diagonal = D._maxBy(C.List_yvP, new D.MaterialRectArcTween__initialize_closure(_this, _this.end.get$center().$sub(0, _this.begin.get$center())), type$._Diagonal), t1 = _this.begin; t1.toString; t2 = diagonal.beginId; t1 = _this._cornerFor$2(t1, t2); t3 = _this.end; t3.toString; _this.__MaterialRectArcTween__beginArc = new D.MaterialPointArcTween(t1, _this._cornerFor$2(t3, t2)); t2 = _this.begin; t2.toString; t3 = diagonal.endId; t2 = _this._cornerFor$2(t2, t3); t1 = _this.end; t1.toString; _this.__MaterialRectArcTween__endArc = new D.MaterialPointArcTween(t2, _this._cornerFor$2(t1, t3)); _this._arc$_dirty = false; }, _cornerFor$2: function(rect, id) { switch (id) { case C._CornerId_0: return new P.Offset(rect.left, rect.top); case C._CornerId_1: return new P.Offset(rect.right, rect.top); case C._CornerId_2: return new P.Offset(rect.left, rect.bottom); case C._CornerId_3: return new P.Offset(rect.right, rect.bottom); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$beginArc: function() { var _this = this; if (_this.begin == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this.get$_beginArc(); }, get$_beginArc: function() { var t1 = this.__MaterialRectArcTween__beginArc; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_beginArc")) : t1; }, get$endArc: function() { var _this = this; if (_this.end == null) return null; if (_this._arc$_dirty) _this._initialize$0(); return _this.get$_endArc(); }, get$_endArc: function() { var t1 = this.__MaterialRectArcTween__endArc; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_endArc")) : t1; }, set$begin: function(value) { if (!J.$eq$(value, this.begin)) { this.begin = value; this._arc$_dirty = true; } }, set$end: function(_, value) { if (!J.$eq$(value, this.end)) { this.end = value; this._arc$_dirty = true; } }, lerp$1: function(t) { var t1, _this = this; if (_this._arc$_dirty) _this._initialize$0(); if (t === 0) { t1 = _this.begin; t1.toString; return t1; } if (t === 1) { t1 = _this.end; t1.toString; return t1; } return P.Rect$fromPoints(_this.get$_beginArc().lerp$1(t), _this.get$_endArc().lerp$1(t)); }, toString$0: function(_) { var _this = this; return "MaterialRectArcTween(" + H.S(_this.begin) + " \u2192 " + H.S(_this.end) + "; beginArc=" + H.S(_this.get$beginArc()) + ", endArc=" + H.S(_this.get$endArc()) + ")"; } }; D.MaterialRectArcTween__initialize_closure.prototype = { call$1: function(d) { var t4, delta, $length, t1 = this.$this, t2 = this.centersVector, t3 = t1.begin; t3.toString; t3 = t1._cornerFor$2(t3, d.endId); t4 = t1.begin; t4.toString; delta = t3.$sub(0, t1._cornerFor$2(t4, d.beginId)); $length = delta.get$distance(); return t2._dx * delta._dx / $length + t2._dy * delta._dy / $length; }, $signature: 1677 }; R.BackButtonIcon.prototype = { build$1: function(_, context) { return L.Icon$(R.BackButtonIcon__getIconData(K.Theme_of(context).platform), null, null); } }; R.BackButton.prototype = { build$1: function(_, context) { var t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; return B.IconButton$(C.Alignment_0_0, null, null, true, C.BackButtonIcon_null, 24, new R.BackButton_build_closure(this, context), C.EdgeInsets_8_8_8_8, t1.get$backButtonTooltip(), null); } }; R.BackButton_build_closure.prototype = { call$0: function() { var t1 = this.$this.onPressed; if (t1 != null) t1.call$0(); else K.Navigator_maybePop(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q.MaterialBannerThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.contentTextStyle, _this.padding, _this.leadingPadding, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof Q.MaterialBannerThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.contentTextStyle, _this.contentTextStyle) && J.$eq$(other.padding, _this.padding) && J.$eq$(other.leadingPadding, _this.leadingPadding); } }; Q._MaterialBannerThemeData_Object_Diagnosticable.prototype = {}; B.BottomAppBar.prototype = { createState$0: function() { return new B._BottomAppBarState(C._StateLifecycle_0); } }; B._BottomAppBarState.prototype = { didChangeDependencies$0: function() { var t1, scaffoldScope; this.super$State$didChangeDependencies(); t1 = this._framework$_element; scaffoldScope = t1.dependOnInheritedWidgetOfExactType$1$0(type$._ScaffoldScope); if (scaffoldScope == null) H.throwExpression(U.FlutterError$fromParts(H.setRuntimeTypeInfo([U.ErrorSummary$("Scaffold.geometryOf() called with a context that does not contain a Scaffold."), U.ErrorDescription$("This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."), U.ErrorHint$(string$.There_a), U.ErrorHint$("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.geometryOf()."), t1.describeElement$1("The context used was")], type$.JSArray_DiagnosticsNode))); this.___BottomAppBarState_geometryListenable = scaffoldScope.geometryNotifier; }, build$1: function(_, context) { var clipper, elevation, color, effectiveColor, _null = null, babTheme = K.Theme_of(context).bottomAppBarTheme, t1 = this._widget, notchedShape = t1.shape, t2 = this.___BottomAppBarState_geometryListenable; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("geometryListenable")); clipper = new B._BottomAppBarClipper(t2, notchedShape, 4, t2); elevation = t1.elevation; t1 = t1.color; color = t1 == null ? babTheme.color : t1; effectiveColor = R.ElevationOverlay_applyOverlay(context, color == null ? K.Theme_of(context).bottomAppBarColor : color, elevation); t1 = Q.SafeArea$(true, this._widget.child, C.EdgeInsets_0_0_0_0, true); return T.PhysicalShape$(M.Material$(C.Duration_200000, true, _null, t1, C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_4), C.Clip_0, clipper, effectiveColor, elevation, C.Color_4278190080); } }; B._BottomAppBarClipper.prototype = { getClip$1: function(size) { var button, t3, t1 = this.geometry, t2 = t1.get$value(t1).floatingActionButtonArea; if (t2 == null) button = null; else { t1 = t1.get$value(t1).bottomNavigationBarTop; t1.toString; button = t2.translate$2(0, 0, t1 * -1); } t1 = size._dx; t2 = size._dy; t3 = button == null ? null : button.inflate$1(this.notchMargin); return this.shape.getOuterPath$2(new P.Rect(0, 0, 0 + t1, 0 + t2), t3); }, shouldReclip$1: function(oldClipper) { return oldClipper.geometry != this.geometry || oldClipper.shape !== this.shape || oldClipper.notchMargin !== this.notchMargin; } }; D.BottomAppBarTheme.prototype = { get$hashCode: function(_) { return P.hashValues(this.color, this.elevation, this.shape, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof D.BottomAppBarTheme && J.$eq$(other.color, _this.color) && other.elevation == _this.elevation && true; } }; D._BottomAppBarTheme_Object_Diagnosticable.prototype = {}; M.BottomNavigationBarThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.elevation, _this.selectedIconTheme, _this.unselectedIconTheme, _this.selectedItemColor, _this.unselectedItemColor, _this.selectedLabelStyle, _this.unselectedLabelStyle, _this.showSelectedLabels, _this.showUnselectedLabels, _this.type, _this.enableFeedback, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof M.BottomNavigationBarThemeData) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.elevation == _this.elevation) if (J.$eq$(other.selectedIconTheme, _this.selectedIconTheme)) if (J.$eq$(other.unselectedIconTheme, _this.unselectedIconTheme)) if (J.$eq$(other.selectedItemColor, _this.selectedItemColor)) if (J.$eq$(other.unselectedItemColor, _this.unselectedItemColor)) if (J.$eq$(other.selectedLabelStyle, _this.selectedLabelStyle)) if (J.$eq$(other.unselectedLabelStyle, _this.unselectedLabelStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; M._BottomNavigationBarThemeData_Object_Diagnosticable.prototype = {}; E.BottomSheet.prototype = { createState$0: function() { return new E._BottomSheetState(new N.LabeledGlobalKey("BottomSheet child", type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); }, onClosing$0: function() { return this.onClosing.call$0(); }, builder$1: function(arg0) { return this.builder.call$1(arg0); } }; E._BottomSheetState.prototype = { get$_childHeight: function() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._childKey).get$renderObject(); t1.toString; return type$.RenderBox._as(t1)._box$_size._dy; }, _bottom_sheet$_handleDragStart$1: function(details) { this._widget.onDragStart.call$1(details); }, _bottom_sheet$_handleDragUpdate$1: function(details) { var t1, t2, t3; if (this._widget.animationController.get$_status() === C.AnimationStatus_2) return; t1 = this._widget.animationController; t2 = t1.get$_animation_controller$_value(); t3 = details.primaryDelta; t3.toString; t1.set$value(0, t2 - t3 / this.get$_childHeight()); }, _bottom_sheet$_handleDragEnd$1: function(details) { var t1, flingVelocity, isClosing, _this = this; if (_this._widget.animationController.get$_status() === C.AnimationStatus_2) return; t1 = details.velocity.pixelsPerSecond._dy; if (t1 > 700) { flingVelocity = -t1 / _this.get$_childHeight(); if (_this._widget.animationController.get$_animation_controller$_value() > 0) _this._widget.animationController.fling$1$velocity(flingVelocity); isClosing = flingVelocity < 0 && true; } else if (_this._widget.animationController.get$_animation_controller$_value() < 0.5) { if (_this._widget.animationController.get$_animation_controller$_value() > 0) _this._widget.animationController.fling$1$velocity(-1); isClosing = true; } else { _this._widget.animationController.forward$0(0); isClosing = false; } _this._widget.onDragEnd.call$2$isClosing(details, isClosing); if (isClosing) _this._widget.onClosing$0(); }, extentChanged$1: function(notification) { if (notification.extent === notification.minExtent) this._widget.onClosing$0(); return false; }, build$1: function(_, context) { var color, elevation, shape, bottomSheet, _this = this, _null = null, bottomSheetTheme = K.Theme_of(context).bottomSheetTheme, t1 = _this._widget; t1.toString; color = bottomSheetTheme.backgroundColor; elevation = bottomSheetTheme.elevation; if (elevation == null) elevation = 0; shape = bottomSheetTheme.shape; bottomSheetTheme.toString; bottomSheet = M.Material$(C.Duration_200000, true, _null, new U.NotificationListener(t1.builder$1(context), _this.get$extentChanged(), _null, type$.NotificationListener_DraggableScrollableNotification), C.Clip_0, color, elevation, _this._childKey, _null, shape, _null, C.MaterialType_0); return !_this._widget.enableDrag ? bottomSheet : D.GestureDetector$(_null, bottomSheet, C.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_bottom_sheet$_handleDragEnd(), _this.get$_bottom_sheet$_handleDragStart(), _this.get$_bottom_sheet$_handleDragUpdate()); } }; X.BottomSheetThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.elevation, _this.modalBackgroundColor, _this.modalElevation, _this.shape, _this.clipBehavior, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof X.BottomSheetThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && other.elevation == _this.elevation && J.$eq$(other.modalBackgroundColor, _this.modalBackgroundColor) && other.modalElevation == _this.modalElevation && J.$eq$(other.shape, _this.shape) && true; } }; X._BottomSheetThemeData_Object_Diagnosticable.prototype = {}; Z.RawMaterialButton.prototype = { createState$0: function() { return new Z._RawMaterialButtonState(P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), C._StateLifecycle_0); } }; Z._RawMaterialButtonState.prototype = { _handleHighlightChanged$1: function(value) { if (this._states.contains$1(0, C.MaterialState_2) !== value) this.setState$1(new Z._RawMaterialButtonState__handleHighlightChanged_closure(this, value)); }, _handleHoveredChanged$1: function(value) { if (this._states.contains$1(0, C.MaterialState_0) !== value) this.setState$1(new Z._RawMaterialButtonState__handleHoveredChanged_closure(this, value)); }, _handleFocusedChanged$1: function(value) { if (this._states.contains$1(0, C.MaterialState_1) !== value) this.setState$1(new Z._RawMaterialButtonState__handleFocusedChanged_closure(this, value)); }, initState$0: function() { var t1, t2; this.super$State$initState(); t1 = this._widget.onPressed != null || false; t2 = this._states; if (!t1) t2.add$1(0, C.MaterialState_5); else t2.remove$1(0, C.MaterialState_5); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.onPressed != null || false; t2 = _this._states; if (!t1) t2.add$1(0, C.MaterialState_5); else t2.remove$1(0, C.MaterialState_5); if (t2.contains$1(0, C.MaterialState_5) && t2.contains$1(0, C.MaterialState_2)) _this._handleHighlightChanged$1(false); }, get$_effectiveElevation: function() { var _this = this, t1 = _this._states; if (t1.contains$1(0, C.MaterialState_5)) return _this._widget.disabledElevation; if (t1.contains$1(0, C.MaterialState_2)) return _this._widget.highlightElevation; if (t1.contains$1(0, C.MaterialState_0)) return _this._widget.hoverElevation; if (t1.contains$1(0, C.MaterialState_1)) return _this._widget.focusElevation; return _this._widget.elevation; }, build$1: function(_, context) { var densityAdjustment, effectiveConstraints, effectiveMouseCursor, padding, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, minSize, _this = this, _null = null, t1 = _this._widget.textStyle, t2 = _this._states, effectiveTextColor = V.MaterialStateProperty_resolveAs(t1.color, t2, type$.nullable_Color), effectiveShape = V.MaterialStateProperty_resolveAs(_this._widget.shape, t2, type$.nullable_ShapeBorder); _this._widget.toString; densityAdjustment = new P.Offset(0, 0).$mul(0, 4); effectiveConstraints = C.VisualDensity_0_0.effectiveConstraints$1(_this._widget.constraints); _this._widget.toString; effectiveMouseCursor = V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, t2, type$.nullable_MouseCursor); _this._widget.toString; t1 = densityAdjustment._dx; t2 = densityAdjustment._dy; padding = C.EdgeInsets_0_0_0_0.add$1(0, new V.EdgeInsets(t1, t2, t1, t2)).clamp$2(0, C.EdgeInsets_0_0_0_0, C._MixedEdgeInsets_QWq); t3 = _this.get$_effectiveElevation(); t4 = _this._widget.textStyle.copyWith$1$color(effectiveTextColor); t5 = _this._widget; t6 = t5.fillColor; t7 = t6 == null ? C.MaterialType_4 : C.MaterialType_3; t8 = t5.clipBehavior; t9 = t5.focusNode; t10 = t5.onPressed; t11 = t10 == null; t12 = !t11 || false; t13 = t5.splashColor; t14 = t5.highlightColor; t15 = t5.focusColor; t16 = t5.hoverColor; t7 = M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, t12, Y.IconTheme_merge(M.Container$(_null, T.Center$(t5.child, 1, 1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, padding, _null, _null, _null), new T.IconThemeData(effectiveTextColor, _null, _null)), effectiveShape, true, t15, t9, t14, t16, _null, effectiveMouseCursor, _null, _this.get$_handleFocusedChanged(), _this.get$_handleHighlightChanged(), _this.get$_handleHoveredChanged(), _null, t10, _null, _null, _null, t13, _null), t8, t6, t3, _null, _null, effectiveShape, t4, t7); switch (t5.materialTapTargetSize) { case C.MaterialTapTargetSize_0: minSize = new P.Size(48 + t1, 48 + t2); break; case C.MaterialTapTargetSize_1: minSize = C.Size_0_0; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = !t11 || false; return new T.Semantics(A.SemanticsProperties$(true, _null, _null, _null, _null, t1, _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, new Z._InputPadding(minSize, new T.ConstrainedBox(effectiveConstraints, t7, _null), _null), _null); } }; Z._RawMaterialButtonState__handleHighlightChanged_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._states; if (this.value) t2.add$1(0, C.MaterialState_2); else t2.remove$1(0, C.MaterialState_2); t1._widget.toString; }, $signature: 0 }; Z._RawMaterialButtonState__handleHoveredChanged_closure.prototype = { call$0: function() { var t1 = this.$this._states; if (this.value) t1.add$1(0, C.MaterialState_0); else t1.remove$1(0, C.MaterialState_0); }, $signature: 0 }; Z._RawMaterialButtonState__handleFocusedChanged_closure.prototype = { call$0: function() { var t1 = this.$this._states; if (this.value) t1.add$1(0, C.MaterialState_1); else t1.remove$1(0, C.MaterialState_1); }, $signature: 0 }; Z._InputPadding.prototype = { createRenderObject$1: function(context) { var t1 = new Z._RenderInputPadding(this.minSize, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$minSize(this.minSize); } }; Z._RenderInputPadding.prototype = { set$minSize: function(value) { if (this._button$_minSize.$eq(0, value)) return; this._button$_minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, _button$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._button$_minSize; return constraints.constrain$1(new P.Size(Math.max(H.checkNum(t1), H.checkNum(t2._dx)), Math.max(H.checkNum(childSize._dy), H.checkNum(t2._dy)))); } return C.Size_0_0; }, computeDryLayout$1: function(constraints) { return this._button$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { var t2, t3, _this = this, t1 = _this._button$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = C.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position: function(result, position) { var center; if (this.super$RenderBox$hitTest(result, position)) return true; center = this.RenderObjectWithChildMixin__child._box$_size.center$1(C.Offset_0_0); return result.addWithRawTransform$3$hitTest$position$transform(new Z._RenderInputPadding_hitTest_closure(this, center), center, T.MatrixUtils_forceToPoint(center)); } }; Z._RenderInputPadding_hitTest_closure.prototype = { call$2: function(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, $signature: 96 }; M.ButtonBarThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.alignment, _this.mainAxisSize, _this.buttonTextTheme, _this.buttonMinWidth, _this.buttonHeight, _this.buttonPadding, _this.buttonAlignedDropdown, _this.layoutBehavior, _this.overflowDirection, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof M.ButtonBarThemeData) if (other.buttonMinWidth == _this.buttonMinWidth) if (other.buttonHeight == _this.buttonHeight) if (J.$eq$(other.buttonPadding, _this.buttonPadding)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; M._ButtonBarThemeData_Object_Diagnosticable.prototype = {}; A.ButtonStyle.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.textStyle, _this.backgroundColor, _this.foregroundColor, _this.overlayColor, _this.shadowColor, _this.elevation, _this.padding, _this.minimumSize, _this.fixedSize, _this.side, _this.shape, _this.mouseCursor, _this.visualDensity, _this.tapTargetSize, _this.animationDuration, _this.enableFeedback, _this.alignment, _this.splashFactory, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof A.ButtonStyle && other.textStyle == _this.textStyle && other.backgroundColor == _this.backgroundColor && other.foregroundColor == _this.foregroundColor && other.overlayColor == _this.overlayColor && other.shadowColor == _this.shadowColor && other.elevation == _this.elevation && other.padding == _this.padding && other.minimumSize == _this.minimumSize && other.fixedSize == _this.fixedSize && other.side == _this.side && other.shape == _this.shape && other.mouseCursor == _this.mouseCursor && J.$eq$(other.visualDensity, _this.visualDensity) && other.tapTargetSize == _this.tapTargetSize && J.$eq$(other.animationDuration, _this.animationDuration) && other.enableFeedback == _this.enableFeedback && J.$eq$(other.alignment, _this.alignment) && other.splashFactory == _this.splashFactory; } }; A._LerpProperties3.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._LerpSides.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); t1 = resolvedA == null; if (t1 && resolvedB == null) return null; if (t1) { t1 = resolvedB.color; return Y.BorderSide_lerp(new Y.BorderSide(P.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, C.BorderStyle_1), resolvedB, _this.t); } if (resolvedB == null) { t1 = resolvedA.color; return Y.BorderSide_lerp(resolvedA, new Y.BorderSide(P.Color$fromARGB(0, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255), 0, C.BorderStyle_1), _this.t); } return Y.BorderSide_lerp(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; A._LerpShapes.prototype = { resolve$1: function(states) { var resolvedB, t1 = this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return type$.nullable_OutlinedBorder._as(Y.ShapeBorder_lerp(resolvedA, resolvedB, this.t)); }, $isMaterialStateProperty: 1 }; A._ButtonStyle_Object_Diagnosticable.prototype = {}; K.ButtonStyleButton.prototype = { createState$0: function() { return new K._ButtonStyleState(P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), null, C._StateLifecycle_0); } }; K._ButtonStyleState.prototype = { _button_style_button$_handleHighlightChanged$1: function(value) { if (this._button_style_button$_states.contains$1(0, C.MaterialState_2) !== value) this.setState$1(new K._ButtonStyleState__handleHighlightChanged_closure(this, value)); }, _button_style_button$_handleHoveredChanged$1: function(value) { if (this._button_style_button$_states.contains$1(0, C.MaterialState_0) !== value) this.setState$1(new K._ButtonStyleState__handleHoveredChanged_closure(this, value)); }, _button_style_button$_handleFocusedChanged$1: function(value) { if (this._button_style_button$_states.contains$1(0, C.MaterialState_1) !== value) this.setState$1(new K._ButtonStyleState__handleFocusedChanged_closure(this, value)); }, initState$0: function() { var t1, t2; this.super$State$initState(); t1 = this._widget; t1 = t1.onPressed != null || t1.onLongPress != null; t2 = this._button_style_button$_states; if (!t1) t2.add$1(0, C.MaterialState_5); else t2.remove$1(0, C.MaterialState_5); }, dispose$0: function(_) { var t1 = this._button_style_button$_controller; if (t1 != null) t1.dispose$0(0); this.super$__ButtonStyleState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1 = t1.onPressed != null || t1.onLongPress != null; t2 = _this._button_style_button$_states; if (!t1) t2.add$1(0, C.MaterialState_5); else t2.remove$1(0, C.MaterialState_5); if (t2.contains$1(0, C.MaterialState_5) && t2.contains$1(0, C.MaterialState_2)) _this._button_style_button$_handleHighlightChanged$1(false); }, build$1: function(_, context) { var resolvedBackgroundColor, resolvedForegroundColor, resolvedShadowColor, resolvedPadding, resolvedMinimumSize, resolvedFixedSize, resolvedSide, resolvedShape, resolvedVisualDensity, resolvedTapTargetSize, resolvedAnimationDuration, resolvedEnableFeedback, resolvedAlignment, densityAdjustment, resolvedSplashFactory, effectiveConstraints, size, t2, padding, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, minSize, _this = this, _null = null, t1 = _this._widget, effectiveValue = new K._ButtonStyleState_build_effectiveValue(t1.style, t1.themeStyleOf$1(context), _this._widget.defaultStyleOf$1(context)), resolve = new K._ButtonStyleState_build_resolve(_this, effectiveValue), resolvedElevation = resolve.call$1$1(new K._ButtonStyleState_build_closure(), type$.nullable_double), resolvedTextStyle = resolve.call$1$1(new K._ButtonStyleState_build_closure0(), type$.nullable_TextStyle); t1 = type$.nullable_Color; resolvedBackgroundColor = resolve.call$1$1(new K._ButtonStyleState_build_closure1(), t1); resolvedForegroundColor = resolve.call$1$1(new K._ButtonStyleState_build_closure2(), t1); resolvedShadowColor = resolve.call$1$1(new K._ButtonStyleState_build_closure3(), t1); resolvedPadding = resolve.call$1$1(new K._ButtonStyleState_build_closure4(), type$.nullable_EdgeInsetsGeometry); t1 = type$.nullable_Size; resolvedMinimumSize = resolve.call$1$1(new K._ButtonStyleState_build_closure5(), t1); resolvedFixedSize = resolve.call$1$1(new K._ButtonStyleState_build_closure6(), t1); resolvedSide = resolve.call$1$1(new K._ButtonStyleState_build_closure7(), type$.nullable_BorderSide); resolvedShape = resolve.call$1$1(new K._ButtonStyleState_build_closure8(), type$.nullable_OutlinedBorder); resolvedVisualDensity = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure9(), type$.VisualDensity); resolvedTapTargetSize = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure10(), type$.MaterialTapTargetSize); resolvedAnimationDuration = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure11(), type$.Duration); resolvedEnableFeedback = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure12(), type$.bool); resolvedAlignment = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure13(), type$.AlignmentGeometry); densityAdjustment = new P.Offset(resolvedVisualDensity.horizontal, resolvedVisualDensity.vertical).$mul(0, 4); resolvedSplashFactory = effectiveValue.call$1$1(new K._ButtonStyleState_build_closure14(), type$.InteractiveInkFeatureFactory); effectiveConstraints = resolvedVisualDensity.effectiveConstraints$1(new S.BoxConstraints(resolvedMinimumSize._dx, 1 / 0, resolvedMinimumSize._dy, 1 / 0)); if (resolvedFixedSize != null) { size = effectiveConstraints.constrain$1(resolvedFixedSize); t1 = size._dx; t1.toString; if (isFinite(t1)) effectiveConstraints = effectiveConstraints.copyWith$2$maxWidth$minWidth(t1, t1); t1 = size._dy; t1.toString; if (isFinite(t1)) effectiveConstraints = effectiveConstraints.copyWith$2$maxHeight$minHeight(t1, t1); } t1 = densityAdjustment._dx; t2 = densityAdjustment._dy; padding = resolvedPadding.add$1(0, new V.EdgeInsets(t1, t2, t1, t2)).clamp$2(0, C.EdgeInsets_0_0_0_0, C._MixedEdgeInsets_QWq); if (resolvedAnimationDuration._duration > 0) { t3 = _this._button_style_button$_elevation; if (t3 != null) { t4 = _this._backgroundColor; if (t4 != null) if (t3 !== resolvedElevation) if (t4.get$value(t4) !== resolvedBackgroundColor.get$value(resolvedBackgroundColor)) { t3 = _this._backgroundColor; t3 = (t3.get$value(t3) >>> 24 & 255) / 255 === 1 && (resolvedBackgroundColor.get$value(resolvedBackgroundColor) >>> 24 & 255) / 255 < 1 && resolvedElevation === 0; } else t3 = false; else t3 = false; else t3 = false; } else t3 = false; } else t3 = false; if (t3) { t3 = _this._button_style_button$_controller; if (!J.$eq$(t3 == null ? _null : t3.duration, resolvedAnimationDuration)) { t3 = _this._button_style_button$_controller; if (t3 != null) t3.dispose$0(0); t3 = G.AnimationController$(_null, resolvedAnimationDuration, 0, _null, 1, _null, _this); t3.addStatusListener$1(new K._ButtonStyleState_build_closure15(_this)); _this._button_style_button$_controller = t3; } resolvedBackgroundColor = _this._backgroundColor; _this._button_style_button$_controller.set$value(0, 0); _this._button_style_button$_controller.forward$0(0); } _this._button_style_button$_elevation = resolvedElevation; _this._backgroundColor = resolvedBackgroundColor; resolvedElevation.toString; t3 = resolvedTextStyle == null ? _null : resolvedTextStyle.copyWith$1$color(resolvedForegroundColor); t4 = resolvedShape.copyWith$1$side(resolvedSide); t5 = resolvedBackgroundColor == null ? C.MaterialType_4 : C.MaterialType_3; t6 = _this._widget; t7 = t6.clipBehavior; t8 = t6.onPressed; t9 = t6.onLongPress; t10 = t6.focusNode; t11 = t8 == null; t12 = !t11 || t9 != null; t13 = t6.autofocus; resolvedAlignment.toString; t5 = M.Material$(resolvedAnimationDuration, true, _null, R.InkWell$(t13, _null, t12, Y.IconTheme_merge(new T.Padding(padding, new T.Align(resolvedAlignment, 1, 1, t6.child, _null), _null), new T.IconThemeData(resolvedForegroundColor, _null, _null)), resolvedShape, resolvedEnableFeedback, _null, t10, C.Color_0, _null, _null, new K._MouseCursor(new K._ButtonStyleState_build_closure16(effectiveValue)), _null, _this.get$_button_style_button$_handleFocusedChanged(), _this.get$_button_style_button$_handleHighlightChanged(), _this.get$_button_style_button$_handleHoveredChanged(), t9, t8, _null, _null, new V._MaterialStatePropertyWith(new K._ButtonStyleState_build_closure17(effectiveValue), type$._MaterialStatePropertyWith_nullable_Color), _null, resolvedSplashFactory), t7, resolvedBackgroundColor, resolvedElevation, _null, resolvedShadowColor, t4, t3, t5); resolvedTapTargetSize.toString; switch (resolvedTapTargetSize) { case C.MaterialTapTargetSize_0: minSize = new P.Size(48 + t1, 48 + t2); break; case C.MaterialTapTargetSize_1: minSize = C.Size_0_0; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = !t11 || t9 != null; return new T.Semantics(A.SemanticsProperties$(true, _null, _null, _null, _null, t1, _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, new K._InputPadding0(minSize, new T.ConstrainedBox(effectiveConstraints, t5, _null), _null), _null); } }; K._ButtonStyleState__handleHighlightChanged_closure.prototype = { call$0: function() { var t1 = this.$this._button_style_button$_states; if (this.value) t1.add$1(0, C.MaterialState_2); else t1.remove$1(0, C.MaterialState_2); }, $signature: 0 }; K._ButtonStyleState__handleHoveredChanged_closure.prototype = { call$0: function() { var t1 = this.$this._button_style_button$_states; if (this.value) t1.add$1(0, C.MaterialState_0); else t1.remove$1(0, C.MaterialState_0); }, $signature: 0 }; K._ButtonStyleState__handleFocusedChanged_closure.prototype = { call$0: function() { var t1 = this.$this._button_style_button$_states; if (this.value) t1.add$1(0, C.MaterialState_1); else t1.remove$1(0, C.MaterialState_1); }, $signature: 0 }; K._ButtonStyleState_build_effectiveValue.prototype = { call$1$1: function(getProperty, $T) { var widgetValue = getProperty.call$1(this.widgetStyle), themeValue = getProperty.call$1(this.themeStyle), defaultValue = getProperty.call$1(this.defaultStyle), t1 = widgetValue == null ? themeValue : widgetValue; return t1 == null ? defaultValue : t1; }, call$1: function(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, $signature: 1683 }; K._ButtonStyleState_build_resolve.prototype = { call$1$1: function(getProperty, $T) { return this.effectiveValue.call$1$1(new K._ButtonStyleState_build_resolve_closure(this.$this, getProperty, $T), $T); }, call$1: function(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, $signature: 1684 }; K._ButtonStyleState_build_resolve_closure.prototype = { call$1: function(style) { var t1 = this.getProperty.call$1(style); return t1 == null ? null : t1.resolve$1(this.$this._button_style_button$_states); }, $signature: function() { return this.T._eval$1("0?(ButtonStyle?)"); } }; K._ButtonStyleState_build_closure.prototype = { call$1: function(style) { return style == null ? null : style.elevation; }, $signature: 1708 }; K._ButtonStyleState_build_closure0.prototype = { call$1: function(style) { return style == null ? null : style.textStyle; }, $signature: 1709 }; K._ButtonStyleState_build_closure1.prototype = { call$1: function(style) { return style == null ? null : style.backgroundColor; }, $signature: 356 }; K._ButtonStyleState_build_closure2.prototype = { call$1: function(style) { return style == null ? null : style.foregroundColor; }, $signature: 356 }; K._ButtonStyleState_build_closure3.prototype = { call$1: function(style) { return style == null ? null : style.shadowColor; }, $signature: 356 }; K._ButtonStyleState_build_closure4.prototype = { call$1: function(style) { return style == null ? null : style.padding; }, $signature: 1715 }; K._ButtonStyleState_build_closure5.prototype = { call$1: function(style) { return style == null ? null : style.minimumSize; }, $signature: 603 }; K._ButtonStyleState_build_closure6.prototype = { call$1: function(style) { return style == null ? null : style.fixedSize; }, $signature: 603 }; K._ButtonStyleState_build_closure7.prototype = { call$1: function(style) { return style == null ? null : style.side; }, $signature: 1717 }; K._ButtonStyleState_build_closure8.prototype = { call$1: function(style) { return style == null ? null : style.shape; }, $signature: 1736 }; K._ButtonStyleState_build_closure16.prototype = { call$1: function(states) { return this.effectiveValue.call$1$1(new K._ButtonStyleState_build__closure0(states), type$.MouseCursor); }, $signature: 1737 }; K._ButtonStyleState_build__closure0.prototype = { call$1: function(style) { var t1; if (style == null) t1 = null; else { t1 = style.mouseCursor; t1 = t1 == null ? null : t1.resolve$1(this.states); } return t1; }, $signature: 1740 }; K._ButtonStyleState_build_closure17.prototype = { call$1: function(states) { return this.effectiveValue.call$1$1(new K._ButtonStyleState_build__closure(states), type$.Color); }, $signature: 205 }; K._ButtonStyleState_build__closure.prototype = { call$1: function(style) { var t1; if (style == null) t1 = null; else { t1 = style.overlayColor; t1 = t1 == null ? null : t1.resolve$1(this.states); } return t1; }, $signature: 1742 }; K._ButtonStyleState_build_closure9.prototype = { call$1: function(style) { return style == null ? null : style.visualDensity; }, $signature: 1767 }; K._ButtonStyleState_build_closure10.prototype = { call$1: function(style) { return style == null ? null : style.tapTargetSize; }, $signature: 1768 }; K._ButtonStyleState_build_closure11.prototype = { call$1: function(style) { return style == null ? null : style.animationDuration; }, $signature: 1797 }; K._ButtonStyleState_build_closure12.prototype = { call$1: function(style) { return style == null ? null : style.enableFeedback; }, $signature: 1808 }; K._ButtonStyleState_build_closure13.prototype = { call$1: function(style) { return style == null ? null : style.alignment; }, $signature: 1864 }; K._ButtonStyleState_build_closure14.prototype = { call$1: function(style) { return style == null ? null : style.splashFactory; }, $signature: 1874 }; K._ButtonStyleState_build_closure15.prototype = { call$1: function($status) { if ($status === C.AnimationStatus_3) this.$this.setState$1(new K._ButtonStyleState_build__closure1()); }, $signature: 35 }; K._ButtonStyleState_build__closure1.prototype = { call$0: function() { }, $signature: 0 }; K._MouseCursor.prototype = { resolve$1: function(states) { var t1 = this.resolveCallback.call$1(states); t1.toString; return t1; }, get$debugDescription: function() { return "ButtonStyleButton_MouseCursor"; } }; K._InputPadding0.prototype = { createRenderObject$1: function(context) { var t1 = new K._RenderInputPadding0(this.minSize, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$minSize(this.minSize); } }; K._RenderInputPadding0.prototype = { set$minSize: function(value) { if (this._button_style_button$_minSize.$eq(0, value)) return; this._button_style_button$_minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._button_style_button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._button_style_button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._button_style_button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._button_style_button$_minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, _button_style_button$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._button_style_button$_minSize; return constraints.constrain$1(new P.Size(Math.max(H.checkNum(t1), H.checkNum(t2._dx)), Math.max(H.checkNum(childSize._dy), H.checkNum(t2._dy)))); } return C.Size_0_0; }, computeDryLayout$1: function(constraints) { return this._button_style_button$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { var t2, t3, _this = this, t1 = _this._button_style_button$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = C.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position: function(result, position) { var center; if (this.super$RenderBox$hitTest(result, position)) return true; center = this.RenderObjectWithChildMixin__child._box$_size.center$1(C.Offset_0_0); return result.addWithRawTransform$3$hitTest$position$transform(new K._RenderInputPadding_hitTest_closure0(this, center), center, T.MatrixUtils_forceToPoint(center)); } }; K._RenderInputPadding_hitTest_closure0.prototype = { call$2: function(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, $signature: 96 }; K.__ButtonStyleState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; M.ButtonTextTheme.prototype = { toString$0: function(_) { return this._button_theme$_name; } }; M.ButtonBarLayoutBehavior.prototype = { toString$0: function(_) { return "ButtonBarLayoutBehavior.padded"; } }; M.ButtonTheme.prototype = { wrap$2: function(_, context, child) { return new M.ButtonTheme(this.data, child, null); }, updateShouldNotify$1: function(oldWidget) { return !this.data.$eq(0, oldWidget.data); } }; M.ButtonThemeData.prototype = { get$padding: function(_) { var t1 = this._padding; if (t1 != null) return t1; switch (this.textTheme) { case C.ButtonTextTheme_0: case C.ButtonTextTheme_1: return C.EdgeInsets_16_0_16_0; case C.ButtonTextTheme_2: return C.EdgeInsets_24_0_24_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$shape: function(_) { var t1 = this._shape; if (t1 != null) return t1; switch (this.textTheme) { case C.ButtonTextTheme_0: case C.ButtonTextTheme_1: return C.RoundedRectangleBorder_a51; case C.ButtonTextTheme_2: return C.RoundedRectangleBorder_a510; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof M.ButtonThemeData) if (other.textTheme === _this.textTheme) if (other.minWidth === _this.minWidth) if (other.height === _this.height) if (J.$eq$(other.get$padding(other), _this.get$padding(_this))) if (J.$eq$(other.get$shape(other), _this.get$shape(_this))) if (J.$eq$(other._buttonColor, _this._buttonColor)) if (J.$eq$(other._focusColor, _this._focusColor)) if (J.$eq$(other._hoverColor, _this._hoverColor)) t1 = J.$eq$(other.colorScheme, _this.colorScheme) && other._materialTapTargetSize == _this._materialTapTargetSize; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.textTheme, _this.minWidth, _this.height, _this.get$padding(_this), _this.get$shape(_this), false, _this._buttonColor, _this._disabledColor, _this._focusColor, _this._hoverColor, _this._button_theme$_highlightColor, _this._splashColor, _this.colorScheme, _this._materialTapTargetSize, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; M._ButtonThemeData_Object_Diagnosticable.prototype = {}; Q.CalendarDatePicker.prototype = { createState$0: function() { var t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new Q._CalendarDatePickerState(new N.LabeledGlobalKey(null, t1), new N.LabeledGlobalKey(null, t1), C._StateLifecycle_0); }, onDateChanged$1: function(arg0) { return this.onDateChanged.call$1(arg0); } }; Q._CalendarDatePickerState.prototype = { get$_calendar_date_picker$_mode: function() { var t1 = this.___CalendarDatePickerState__mode; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_mode")) : t1; }, get$_currentDisplayedMonthDate: function() { var t1 = this.___CalendarDatePickerState__currentDisplayedMonthDate; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentDisplayedMonthDate")) : t1; }, get$_calendar_date_picker$_selectedDate: function() { var t1 = this.___CalendarDatePickerState__selectedDate; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_selectedDate")) : t1; }, get$_localizations: function() { var t1 = this.___CalendarDatePickerState__localizations; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_localizations")) : t1; }, get$_calendar_date_picker$_textDirection: function() { var t1 = this.___CalendarDatePickerState__textDirection; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_textDirection")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; _this.___CalendarDatePickerState__mode = t1.initialCalendarMode; t1 = t1.initialDate; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t1), 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); _this.___CalendarDatePickerState__currentDisplayedMonthDate = new P.DateTime(t1, false); _this.___CalendarDatePickerState__selectedDate = _this._widget.initialDate; }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t2 = t1.initialCalendarMode; if (t2 !== oldWidget.initialCalendarMode) _this.___CalendarDatePickerState__mode = t2; t1 = t1.initialDate; if (!Q.DateUtils_isSameDay(t1, oldWidget.initialDate)) { t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t1), 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); _this.___CalendarDatePickerState__currentDisplayedMonthDate = new P.DateTime(t1, false); _this.___CalendarDatePickerState__selectedDate = _this._widget.initialDate; } }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___CalendarDatePickerState__localizations = t1; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this.___CalendarDatePickerState__textDirection = t1.textDirection; if (!_this._announcedInitialDate) { _this._announcedInitialDate = true; S.SemanticsService_announce(_this.get$_localizations().formatFullDate$1(_this.get$_calendar_date_picker$_selectedDate()), _this.get$_calendar_date_picker$_textDirection()); } }, _vibrate$0: function() { var t1 = this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: X.HapticFeedback_vibrate(); break; case C.TargetPlatform_2: case C.TargetPlatform_4: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _handleModeChanged$1: function(mode) { this._vibrate$0(); this.setState$1(new Q._CalendarDatePickerState__handleModeChanged_closure(this, mode)); }, _handleMonthChanged$1: function(date) { this.setState$1(new Q._CalendarDatePickerState__handleMonthChanged_closure(this, date)); }, _handleYearChanged$1: function(value) { var t2, t3, t4, _this = this, t1 = {}; t1.value = value; _this._vibrate$0(); t2 = _this._widget; t3 = t2.firstDate; t4 = value._value; if (t4 < t3._value) t1.value = t3; else { t2 = t2.lastDate; if (t4 > t2._value) t1.value = t2; } _this.setState$1(new Q._CalendarDatePickerState__handleYearChanged_closure(t1, _this)); }, _handleDayChanged$1: function(value) { this._vibrate$0(); this.setState$1(new Q._CalendarDatePickerState__handleDayChanged_closure(this, value)); }, _buildPicker$0: function() { var t1, t2, t3, t4, t5, _this = this; switch (_this.get$_calendar_date_picker$_mode()) { case C.DatePickerMode_0: t1 = _this.get$_currentDisplayedMonthDate(); t2 = _this._widget; return new Q._MonthPicker(t1, t2.currentDate, t2.firstDate, t2.lastDate, _this.get$_calendar_date_picker$_selectedDate(), _this.get$_handleDayChanged(), _this.get$_handleMonthChanged(), _this._widget.selectableDayPredicate, _this._monthPickerKey); case C.DatePickerMode_1: t1 = _this._widget; t2 = t1.currentDate; t3 = t1.firstDate; t1 = t1.lastDate; t4 = _this.get$_currentDisplayedMonthDate(); t5 = _this.get$_calendar_date_picker$_selectedDate(); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2), H.Primitives_getDay(t2), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); if (t4 == null) t4 = t5; t4.toString; t4 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t4), H.Primitives_getMonth(t4), H.Primitives_getDay(t4), 0, 0, 0, 0, false); if (!H._isInt(t4)) H.throwExpression(H.argumentErrorValue(t4)); return new T.Padding(C.EdgeInsets_0_52_0_0, new Q.YearPicker(new P.DateTime(t2, false), t3, t1, new P.DateTime(t4, false), t5, _this.get$_handleYearChanged(), _this._yearPickerKey), null); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var _this = this, _null = null; return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([T.SizedBox$(_this._buildPicker$0(), 346, _null), new Q._DatePickerModeToggleButton(_this.get$_calendar_date_picker$_mode(), _this.get$_localizations().formatMonthYear$1(_this.get$_currentDisplayedMonthDate()), new Q._CalendarDatePickerState_build_closure(_this), _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, _null, _null); } }; Q._CalendarDatePickerState__handleModeChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1.___CalendarDatePickerState__mode = this.mode; if (t1.get$_calendar_date_picker$_mode() === C.DatePickerMode_0) S.SemanticsService_announce(t1.get$_localizations().formatMonthYear$1(t1.get$_calendar_date_picker$_selectedDate()), t1.get$_calendar_date_picker$_textDirection()); else S.SemanticsService_announce(t1.get$_localizations().formatYear$1(t1.get$_calendar_date_picker$_selectedDate()), t1.get$_calendar_date_picker$_textDirection()); }, $signature: 0 }; Q._CalendarDatePickerState__handleMonthChanged_closure.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1.get$_currentDisplayedMonthDate(); t2.toString; t3 = this.date; t3.toString; if (H.Primitives_getYear(t2) === H.Primitives_getYear(t3)) { t2 = t1.get$_currentDisplayedMonthDate(); t2.toString; t2 = H.Primitives_getMonth(t2) !== H.Primitives_getMonth(t3); } else t2 = true; if (t2) { t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t3), H.Primitives_getMonth(t3), 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t1.___CalendarDatePickerState__currentDisplayedMonthDate = new P.DateTime(t2, false); t1._widget.toString; } }, $signature: 0 }; Q._CalendarDatePickerState__handleYearChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1.___CalendarDatePickerState__mode = C.DatePickerMode_0; t1._handleMonthChanged$1(this._box_0.value); }, $signature: 0 }; Q._CalendarDatePickerState__handleDayChanged_closure.prototype = { call$0: function() { var t2, t1 = this.$this; t1.___CalendarDatePickerState__selectedDate = this.value; t2 = t1._widget; t2.toString; t2.onDateChanged$1(t1.get$_calendar_date_picker$_selectedDate()); }, $signature: 0 }; Q._CalendarDatePickerState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1._handleModeChanged$1(t1.get$_calendar_date_picker$_mode() === C.DatePickerMode_0 ? C.DatePickerMode_1 : C.DatePickerMode_0); }, $signature: 0 }; Q._DatePickerModeToggleButton.prototype = { createState$0: function() { return new Q._DatePickerModeToggleButtonState(null, C._StateLifecycle_0); } }; Q._DatePickerModeToggleButtonState.prototype = { get$_calendar_date_picker$_controller: function() { var t1 = this.___DatePickerModeToggleButtonState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___DatePickerModeToggleButtonState__controller = G.AnimationController$(null, C.Duration_200000, 0, null, 0.5, _this._widget.mode === C.DatePickerMode_1 ? 0.5 : 0, _this); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.mode; t2 = _this._widget.mode; if (t1 == t2) return; if (t2 === C.DatePickerMode_1) _this.get$_calendar_date_picker$_controller().forward$0(0); else _this.get$_calendar_date_picker$_controller().reverse$0(0); }, build$1: function(_, context) { var t2, t3, t4, t5, _null = null, colorScheme = K.Theme_of(context).colorScheme, textTheme = K.Theme_of(context).textTheme, t1 = colorScheme.onSurface.value, controlColor = P.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$selectYearSemanticsLabel(); t2 = this._widget; t3 = t2.onTitlePressed; t2 = t2.title; t4 = textTheme.subtitle2; t2 = L.Text$(t2, _null, _null, C.TextOverflow_2, _null, _null, t4 == null ? _null : t4.copyWith$1$color(controlColor), _null, _null, _null); t4 = this.get$_calendar_date_picker$_controller(); t5 = type$.JSArray_Widget; t3 = T.SizedBox$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, t2, _null), K.RotationTransition$(C.Alignment_0_0, L.Icon$(C.IconData_57496_MaterialIcons_null_false, controlColor, _null), t4)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null), 52, _null); t1 = H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, new T.Semantics(A.SemanticsProperties$(true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _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), false, false, true, t3, _null), _null)], t5); if (this._widget.mode === C.DatePickerMode_0) t1.push(C.SizedBox_108_null_null_null); return M.Container$(_null, T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, 52, _null, _null, C.EdgeInsetsDirectional_16_0_4_0, _null, _null, _null); }, dispose$0: function(_) { this.get$_calendar_date_picker$_controller().dispose$0(0); this.super$__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin$dispose(0); } }; Q._MonthPicker.prototype = { createState$0: function() { return new Q._MonthPickerState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); }, onDisplayedMonthChanged$1: function(arg0) { return this.onDisplayedMonthChanged.call$1(arg0); } }; Q._MonthPickerState.prototype = { get$_currentMonth: function() { var t1 = this.___MonthPickerState__currentMonth; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentMonth")) : t1; }, get$_nextMonthDate: function() { var t1 = this.___MonthPickerState__nextMonthDate; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_nextMonthDate")) : t1; }, get$_previousMonthDate: function() { var t1 = this.___MonthPickerState__previousMonthDate; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_previousMonthDate")) : t1; }, get$_pageController: function() { var t1 = this.___MonthPickerState__pageController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pageController")) : t1; }, get$_localizations: function() { var t1 = this.___MonthPickerState__localizations; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_localizations")) : t1; }, get$_calendar_date_picker$_textDirection: function() { var t1 = this.___MonthPickerState__textDirection; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_textDirection")) : t1; }, get$_dayGridFocus: function() { var t1 = this.___MonthPickerState__dayGridFocus; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dayGridFocus")) : t1; }, initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); _this.___MonthPickerState__currentMonth = _this._widget.initialMonth; t1 = _this.get$_currentMonth(); t1.toString; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t1) + -1, 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); _this.___MonthPickerState__previousMonthDate = new P.DateTime(t1, false); t1 = _this.get$_currentMonth(); t1.toString; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t1) + 1, 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); _this.___MonthPickerState__nextMonthDate = new P.DateTime(t1, false); _this.___MonthPickerState__pageController = D.PageController$(Q.DateUtils_monthDelta(_this._widget.firstDate, _this.get$_currentMonth()), 1); _this._shortcutMap = P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_4295426128, _null, _null), C.DirectionalFocusIntent_TraversalDirection_3, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426127, _null, _null), C.DirectionalFocusIntent_TraversalDirection_1, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426129, _null, _null), C.DirectionalFocusIntent_TraversalDirection_2, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426130, _null, _null), C.DirectionalFocusIntent_TraversalDirection_0], type$.LogicalKeySet, type$.Intent); t1 = type$.JSArray_of_void_Function_Action_Intent; t2 = type$.ObserverList_of_void_Function_Action_Intent; _this._actionMap = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_NextFocusIntent_6xB, new U.CallbackAction(_this.get$_handleGridNextFocus(), new R.ObserverList(H.setRuntimeTypeInfo([], t1), t2), type$.CallbackAction_NextFocusIntent), C.Type_PreviousFocusIntent_wsa, new U.CallbackAction(_this.get$_handleGridPreviousFocus(), new R.ObserverList(H.setRuntimeTypeInfo([], t1), t2), type$.CallbackAction_PreviousFocusIntent), C.Type_DirectionalFocusIntent_evN, new U.CallbackAction(_this.get$_handleDirectionFocus(), new R.ObserverList(H.setRuntimeTypeInfo([], t1), t2), type$.CallbackAction_DirectionalFocusIntent)], type$.Type, type$.Action_Intent); _this.___MonthPickerState__dayGridFocus = O.FocusNode$(true, "Day Grid", true, _null, false); }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___MonthPickerState__localizations = t1; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this.___MonthPickerState__textDirection = t1.textDirection; }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.initialMonth, oldWidget.initialMonth) && !J.$eq$(_this._widget.initialMonth, _this.get$_currentMonth())) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new Q._MonthPickerState_didUpdateWidget_closure(_this)); }, dispose$0: function(_) { this.get$_pageController().dispose$0(0); this.get$_dayGridFocus().dispose$0(0); this.super$State$dispose(0); }, _handleDateSelected$1: function(selectedDate) { this._focusedDay = selectedDate; this._widget.onChanged$1(selectedDate); }, _handleMonthPageChanged$1: function(monthPage) { this.setState$1(new Q._MonthPickerState__handleMonthPageChanged_closure(this, monthPage)); }, _focusableDayForMonth$2: function(month, preferredDay) { var daysInMonth, t1, newFocus; month.toString; daysInMonth = Q.DateUtils_getDaysInMonth(H.Primitives_getYear(month), H.Primitives_getMonth(month)); if (preferredDay <= daysInMonth) { t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(month), H.Primitives_getMonth(month), preferredDay, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); newFocus = new P.DateTime(t1, false); if (this._isSelectable$1(newFocus)) return newFocus; } for (; 1 <= daysInMonth;) { t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(month), H.Primitives_getMonth(month), 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); newFocus = new P.DateTime(t1, false); this._widget.toString; return newFocus; } return null; }, _handleNextMonth$0: function() { var t1, position, t2, _this = this; if (!_this.get$_isDisplayingLastMonth()) { S.SemanticsService_announce(_this.get$_localizations().formatMonthYear$1(_this.get$_nextMonthDate()), _this.get$_calendar_date_picker$_textDirection()); t1 = _this.get$_pageController(); position = type$._PagePosition._as(C.JSArray_methods.get$single(t1._positions)); t2 = position.get$page(position); t2.toString; t1.animateToPage$3$curve$duration(C.JSNumber_methods.round$0(t2) + 1, C.Cubic_JUR, C.Duration_200000); } }, _handlePreviousMonth$0: function() { var t1, position, t2, _this = this; if (!_this.get$_isDisplayingFirstMonth()) { S.SemanticsService_announce(_this.get$_localizations().formatMonthYear$1(_this.get$_previousMonthDate()), _this.get$_calendar_date_picker$_textDirection()); t1 = _this.get$_pageController(); position = type$._PagePosition._as(C.JSArray_methods.get$single(t1._positions)); t2 = position.get$page(position); t2.toString; t1.animateToPage$3$curve$duration(C.JSNumber_methods.round$0(t2) - 1, C.Cubic_JUR, C.Duration_200000); } }, _showMonth$2$jump: function(month, jump) { var monthPage = Q.DateUtils_monthDelta(this._widget.firstDate, month); if (jump) this.get$_pageController().jumpToPage$1(monthPage); else this.get$_pageController().animateToPage$3$curve$duration(monthPage, C.Cubic_JUR, C.Duration_200000); }, _showMonth$1: function(month) { return this._showMonth$2$jump(month, false); }, get$_isDisplayingFirstMonth: function() { var t1 = this.get$_currentMonth(), t2 = this._widget.firstDate; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); return !(t1._value > t2); }, get$_isDisplayingLastMonth: function() { var t1 = this.get$_currentMonth(), t2 = this._widget.lastDate; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); return !(t1._value < t2); }, _handleGridFocusChange$1: function(focused) { this.setState$1(new Q._MonthPickerState__handleGridFocusChange_closure(this, focused)); }, _handleGridNextFocus$1: function(intent) { var t1; this.get$_dayGridFocus().requestFocus$0(); t1 = this.get$_dayGridFocus(); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); }, _handleGridPreviousFocus$1: function(intent) { var t1; this.get$_dayGridFocus().requestFocus$0(); t1 = this.get$_dayGridFocus(); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); }, _handleDirectionFocus$1: function(intent) { this.setState$1(new Q._MonthPickerState__handleDirectionFocus_closure(this, intent)); }, _dayDirectionOffset$2: function(traversalDirection, textDirection) { var t1; if (textDirection === C.TextDirection_0) if (traversalDirection === C.TraversalDirection_3) traversalDirection = C.TraversalDirection_1; else if (traversalDirection === C.TraversalDirection_1) traversalDirection = C.TraversalDirection_3; t1 = C.Map_kCqFu.$index(0, traversalDirection); t1.toString; return t1; }, _nextDateInDirection$2: function(date, direction) { var textDirection, nextDate, t2, t3, t4, t5, t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; t1 = this._dayDirectionOffset$2(direction, textDirection); date.toString; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(date), H.Primitives_getMonth(date), H.Primitives_getDay(date) + t1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); nextDate = new P.DateTime(t1, false); t1 = textDirection === C.TextDirection_0; t2 = direction === C.TraversalDirection_3; t3 = this._widget; t4 = nextDate._value; t5 = t4 >= t3.firstDate._value; t3 = t4 <= t3.lastDate._value; while (true) { if (!(t5 && t3)) break; return nextDate; } return null; }, _isSelectable$1: function(date) { this._widget.toString; return true; }, _buildItems$2: function(context, index) { var month, t1 = this._widget.firstDate; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t1) + index, 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); month = new P.DateTime(t1, false); t1 = this._widget; return new Q._DayPicker(t1.selectedDate, t1.currentDate, this.get$_handleDateSelected(), t1.firstDate, t1.lastDate, month, t1.selectableDayPredicate, new D.ValueKey(month, type$.ValueKey_DateTime)); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, previousTooltipText = _this.get$_localizations().get$previousMonthTooltip() + " " + _this.get$_localizations().formatMonthYear$1(_this.get$_previousMonthDate()), nextTooltipText = _this.get$_localizations().get$nextMonthTooltip() + " " + _this.get$_localizations().formatMonthYear$1(_this.get$_nextMonthDate()), t1 = K.Theme_of(context).colorScheme.onSurface.value, controlColor = P.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); t1 = _this.get$_isDisplayingFirstMonth() ? _null : previousTooltipText; t1 = B.IconButton$(C.Alignment_0_0, controlColor, _null, true, C.Icon_cKo, 24, _this.get$_isDisplayingFirstMonth() ? _null : _this.get$_handlePreviousMonth(), C.EdgeInsets_8_8_8_8, t1, _null); t2 = _this.get$_isDisplayingLastMonth() ? _null : nextTooltipText; t3 = type$.JSArray_Widget; t2 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([C.Spacer_null, t1, B.IconButton$(C.Alignment_0_0, controlColor, _null, true, C.Icon_wEo, 24, _this.get$_isDisplayingLastMonth() ? _null : _this.get$_handleNextMonth(), C.EdgeInsets_8_8_8_8, t2, _null)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, 52, _null, _null, C.EdgeInsetsDirectional_16_0_4_0, _null, _null, _null); t1 = _this._shortcutMap; t4 = _this._actionMap; t5 = _this.get$_dayGridFocus(); t6 = _this.get$_dayGridFocus().get$hasFocus() ? _this._focusedDay : _null; t7 = _this.get$_pageController(); t8 = _this._widget; t3 = T.Column$(H.setRuntimeTypeInfo([t2, T.Expanded$(U.FocusableActionDetector$(t4, false, new Q._FocusedDate(t6, D.PageView$builder(t7, _this.get$_buildItems(), Q.DateUtils_monthDelta(t8.firstDate, t8.lastDate) + 1, _this._pageViewKey, _this.get$_handleMonthPageChanged(), _null, false, C.Axis_0), _null), true, t5, C.C__DeferringMouseCursor, _this.get$_handleGridFocusChange(), _null, _null, t1), 1)], t3), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t3, _null); } }; Q._MonthPickerState_didUpdateWidget_closure.prototype = { call$1: function(timeStamp) { var t1 = this.$this; return t1._showMonth$2$jump(t1._widget.initialMonth, true); }, $signature: 28 }; Q._MonthPickerState__handleMonthPageChanged_closure.prototype = { call$0: function() { var monthDate, t3, t1 = this.$this, t2 = t1._widget.firstDate; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2) + this.monthPage, 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); monthDate = new P.DateTime(t2, false); if (!Q.DateUtils_isSameMonth(t1.get$_currentMonth(), monthDate)) { t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(monthDate), H.Primitives_getMonth(monthDate), 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t1.___MonthPickerState__currentMonth = new P.DateTime(t2, false); t2 = t1.get$_currentMonth(); t2.toString; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2) + -1, 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t1.___MonthPickerState__previousMonthDate = new P.DateTime(t2, false); t2 = t1.get$_currentMonth(); t2.toString; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2) + 1, 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t1.___MonthPickerState__nextMonthDate = new P.DateTime(t2, false); t2 = t1._widget; t2.toString; t2.onDisplayedMonthChanged$1(t1.get$_currentMonth()); t2 = t1._focusedDay; if (t2 != null && !Q.DateUtils_isSameMonth(t2, t1.get$_currentMonth())) { t2 = t1.get$_currentMonth(); t3 = t1._focusedDay; t3.toString; t1._focusedDay = t1._focusableDayForMonth$2(t2, H.Primitives_getDay(t3)); } } }, $signature: 0 }; Q._MonthPickerState__handleGridFocusChange_closure.prototype = { call$0: function() { if (this.focused && this.$this._focusedDay == null) { var t1 = this.$this; if (Q.DateUtils_isSameMonth(t1._widget.selectedDate, t1.get$_currentMonth())) t1._focusedDay = t1._widget.selectedDate; else if (Q.DateUtils_isSameMonth(t1._widget.currentDate, t1.get$_currentMonth())) t1._focusedDay = t1._focusableDayForMonth$2(t1.get$_currentMonth(), H.Primitives_getDay(t1._widget.currentDate)); else t1._focusedDay = t1._focusableDayForMonth$2(t1.get$_currentMonth(), 1); } }, $signature: 0 }; Q._MonthPickerState__handleDirectionFocus_closure.prototype = { call$0: function() { var nextDate, t1 = this.$this, t2 = t1._focusedDay; t2.toString; nextDate = t1._nextDateInDirection$2(t2, this.intent.direction); if (nextDate != null) { t1._focusedDay = nextDate; if (!Q.DateUtils_isSameMonth(nextDate, t1.get$_currentMonth())) { t2 = t1._focusedDay; t2.toString; t1._showMonth$1(t2); } } }, $signature: 0 }; Q._FocusedDate.prototype = { updateShouldNotify$1: function(oldWidget) { return !Q.DateUtils_isSameDay(this.date, oldWidget.date); }, get$date: function() { return this.date; } }; Q._DayPicker.prototype = { createState$0: function() { return new Q._DayPickerState(C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); } }; Q._DayPickerState.prototype = { get$_dayFocusNodes: function() { var t1 = this.___DayPickerState__dayFocusNodes; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dayFocusNodes")) : t1; }, initState$0: function() { var t1, daysInMonth, _list, t2, index, index0; this.super$State$initState(); t1 = this._widget.displayedMonth; daysInMonth = Q.DateUtils_getDaysInMonth(H.Primitives_getYear(t1), H.Primitives_getMonth(t1)); _list = J.JSArray_JSArray$allocateGrowable(daysInMonth, type$.FocusNode); for (t1 = type$.JSArray_FocusNode, t2 = type$.LinkedList__ListenerEntry, index = 0; index < daysInMonth; index = index0) { index0 = index + 1; "" + index0; _list[index] = new O.FocusNode(true, true, true, null, H.setRuntimeTypeInfo([], t1), new P.LinkedList(t2)); } this.___DayPickerState__dayFocusNodes = _list; }, didChangeDependencies$0: function() { var focusedDate, _this = this; _this.super$State$didChangeDependencies(); focusedDate = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._FocusedDate); focusedDate = focusedDate == null ? null : focusedDate.date; if (focusedDate != null && Q.DateUtils_isSameMonth(_this._widget.displayedMonth, focusedDate)) J.$index$asx(_this.get$_dayFocusNodes(), H.Primitives_getDay(focusedDate) - 1).requestFocus$0(); }, dispose$0: function(_) { var t1, t2, t3; for (t1 = J.get$iterator$ax(this.get$_dayFocusNodes()); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = t2._attachment; if (t3 != null) t3.detach$0(0); t2.super$ChangeNotifier$dispose(0); } this.super$State$dispose(0); }, _dayHeaders$2: function(headerStyle, localizations) { var i, _null = null, result = H.setRuntimeTypeInfo([], type$.JSArray_Widget); for (i = localizations.get$firstDayOfWeekIndex(); true; i = C.JSInt_methods.$mod(i + 1, 7)) { result.push(new T.ExcludeSemantics(true, new T.Center(C.Alignment_0_0, _null, _null, new L.Text(localizations.get$narrowWeekdays()[i], headerStyle, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null)); if (i === C.JSInt_methods.$mod(localizations.get$firstDayOfWeekIndex() - 1, 7)) break; } return result; }, build$1: function(_, context) { var t2, headerStyle, t3, t4, t5, enabledDayColor, disabledDayColor, selectedDayColor, selectedDayBackground, year, month, daysInMonth, dayOffset, dayItems, day, dayToBuild, isDisabled, isSelectedDay, isToday, decoration, dayColor, side, dayWidget, _this = this, _null = null, colorScheme = K.Theme_of(context).colorScheme, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = K.Theme_of(context).textTheme.caption; if (t2 == null) headerStyle = _null; else { t3 = colorScheme.onSurface.value; headerStyle = t2.apply$1$color(P.Color$fromARGB(153, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255)); } t2.toString; t3 = colorScheme.onSurface.value; t4 = t3 >>> 16 & 255; t5 = t3 >>> 8 & 255; t3 &= 255; enabledDayColor = P.Color$fromARGB(222, t4, t5, t3); disabledDayColor = P.Color$fromARGB(97, t4, t5, t3); selectedDayColor = colorScheme.onPrimary; selectedDayBackground = colorScheme.primary; t3 = _this._widget.displayedMonth; year = H.Primitives_getYear(t3); month = H.Primitives_getMonth(t3); daysInMonth = Q.DateUtils_getDaysInMonth(year, month); t3 = H.Primitives_valueFromDecomposedDate(year, month, 1, 0, 0, 0, 0, false); if (!H._isInt(t3)) H.throwExpression(H.argumentErrorValue(t3)); dayOffset = C.JSInt_methods.$mod(H.Primitives_getWeekday(new P.DateTime(t3, false)) - 1 - C.JSInt_methods.$mod(t1.get$firstDayOfWeekIndex() - 1, 7), 7); dayItems = _this._dayHeaders$2(headerStyle, t1); day = -dayOffset; for (; day < daysInMonth;) { ++day; if (day < 1) dayItems.push(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); else { t3 = H.Primitives_valueFromDecomposedDate(year, month, day, 0, 0, 0, 0, false); if (!H._isInt(t3)) H.throwExpression(H.argumentErrorValue(t3)); dayToBuild = new P.DateTime(t3, false); t4 = _this._widget; if (!(t3 > t4.lastDate._value)) if (!(t3 < t4.firstDate._value)) isDisabled = false; else isDisabled = true; else isDisabled = true; isSelectedDay = Q.DateUtils_isSameDay(t4.selectedDate, dayToBuild); isToday = Q.DateUtils_isSameDay(t4.currentDate, dayToBuild); if (isSelectedDay) { decoration = new S.BoxDecoration(selectedDayBackground, _null, _null, _null, _null, _null, C.BoxShape_1); dayColor = selectedDayColor; } else if (isDisabled) { dayColor = disabledDayColor; decoration = _null; } else if (isToday) { side = new Y.BorderSide(selectedDayBackground, 1, C.BorderStyle_1); decoration = new S.BoxDecoration(_null, _null, new F.Border(side, side, side, side), _null, _null, _null, C.BoxShape_1); dayColor = selectedDayBackground; } else { dayColor = enabledDayColor; decoration = _null; } dayWidget = M.Container$(_null, new T.Center(C.Alignment_0_0, _null, _null, new L.Text(t1.formatDecimal$1(day), t2.apply$1$color(dayColor), _null, _null, _null, _null, _null, _null, _null, _null), _null), C.Clip_0, _null, _null, decoration, _null, _null, _null, _null, _null, _null, _null, _null); if (isDisabled) dayWidget = new T.ExcludeSemantics(true, dayWidget, _null); else { t3 = _this.___DayPickerState__dayFocusNodes; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_dayFocusNodes")); t3 = J.$index$asx(t3, day - 1); t4 = P.Color$fromARGB(97, selectedDayBackground.get$value(selectedDayBackground) >>> 16 & 255, selectedDayBackground.get$value(selectedDayBackground) >>> 8 & 255, selectedDayBackground.get$value(selectedDayBackground) & 255); t5 = t1.formatDecimal$1(day) + ", " + t1.formatFullDate$1(dayToBuild); dayWidget = new R.InkResponse(new T.Semantics(new A.SemanticsProperties(_null, _null, _null, isSelectedDay, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5, _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), false, false, true, dayWidget, _null), new Q._DayPickerState_build_closure(_this, dayToBuild), _null, _null, _null, _null, _null, _null, _null, false, C.BoxShape_1, 25, _null, _null, _null, _null, _null, _null, t4, _null, true, false, _null, false, t3, true, _null); } dayItems.push(dayWidget); } } t1 = G.SliverChildListDelegate$(dayItems, true, false, true); return new T.Padding(C.EdgeInsets_8_0_8_0, new B.GridView(C.C__DayPickerGridDelegate, t1, _null, C.Axis_1, false, _null, true, C.ClampingScrollPhysics_null, _null, false, _null, 0, _null, _null, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null), _null); } }; Q._DayPickerState_build_closure.prototype = { call$0: function() { return this.$this._widget.onChanged$1(this.dayToBuild); }, $signature: 0 }; Q._DayPickerGridDelegate.prototype = { getLayout$1: function(constraints) { var tileWidth = constraints.crossAxisExtent / 7, tileHeight = Math.min(42, constraints.viewportMainAxisExtent / 7); return new B.SliverGridRegularTileLayout(7, tileHeight, tileWidth, tileHeight, tileWidth, G.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1: function(oldDelegate) { return false; } }; Q.YearPicker.prototype = { createState$0: function() { return new Q._YearPickerState(C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); } }; Q._YearPickerState.prototype = { get$_calendar_date_picker$_scrollController: function() { var t1 = this.___YearPickerState__scrollController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollController")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___YearPickerState__scrollController = F.ScrollController$(null, _this._scrollOffsetForYear$1(_this._widget.selectedDate)); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.selectedDate, oldWidget.selectedDate)) _this.get$_calendar_date_picker$_scrollController().jumpTo$1(_this._scrollOffsetForYear$1(_this._widget.selectedDate)); }, _scrollOffsetForYear$1: function(date) { var initialYearRow; date.toString; initialYearRow = C.JSInt_methods._tdivFast$1(H.Primitives_getYear(date) - H.Primitives_getYear(this._widget.firstDate), 3); return this.get$_itemCount() < 18 ? 0 : (initialYearRow - 2) * 52; }, _buildYearItem$2: function(context, index) { var isSelected, isCurrentYear, isDisabled, textColor, itemStyle, decoration, yearItem, _this = this, _null = null, colorScheme = K.Theme_of(context).colorScheme, textTheme = K.Theme_of(context).textTheme, offset = _this.get$_itemCount() < 18 ? C.JSInt_methods._tdivFast$1(18 - _this.get$_itemCount(), 2) : 0, t1 = _this._widget, t2 = t1.firstDate, year = H.Primitives_getYear(t2) + index - offset, t3 = t1.selectedDate; t3.toString; isSelected = year === H.Primitives_getYear(t3); isCurrentYear = year === H.Primitives_getYear(t1.currentDate); isDisabled = year < H.Primitives_getYear(t2) || year > H.Primitives_getYear(t1.lastDate); if (isSelected) textColor = colorScheme.onPrimary; else if (isDisabled) { t1 = colorScheme.onSurface.value; textColor = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else if (isCurrentYear) textColor = colorScheme.primary; else { t1 = colorScheme.onSurface.value; textColor = P.Color$fromARGB(222, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = textTheme.bodyText1; itemStyle = t1 == null ? _null : t1.apply$1$color(textColor); if (isSelected) decoration = new S.BoxDecoration(colorScheme.primary, _null, _null, K.BorderRadius$circular(18), _null, _null, C.BoxShape_0); else decoration = isCurrentYear && !isDisabled ? new S.BoxDecoration(_null, _null, F.Border_Border$all(colorScheme.primary, 1), K.BorderRadius$circular(18), _null, _null, C.BoxShape_0) : _null; t1 = L.Text$(C.JSInt_methods.toString$0(year), _null, _null, _null, _null, _null, itemStyle, _null, _null, _null); yearItem = T.Center$(M.Container$(_null, T.Center$(new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, isSelected, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), _null, _null), C.Clip_0, _null, _null, decoration, _null, 36, _null, _null, _null, _null, _null, 72), _null, _null); return isDisabled ? new T.ExcludeSemantics(true, yearItem, _null) : R.InkWell$(false, _null, true, yearItem, _null, true, _null, _null, _null, _null, new D.ValueKey(year, type$.ValueKey_int), _null, _null, _null, _null, _null, _null, new Q._YearPickerState__buildYearItem_closure(_this, year), _null, _null, _null, _null, _null); }, get$_itemCount: function() { var t1 = this._widget; return H.Primitives_getYear(t1.lastDate) - H.Primitives_getYear(t1.firstDate) + 1; }, build$1: function(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = _this.get$_calendar_date_picker$_scrollController(); _this._widget.toString; t2 = Math.max(_this.get$_itemCount(), 18); t3 = t1 == null && true; t4 = t1 == null && true; t4 = t4 ? C.AlwaysScrollableScrollPhysics_null : _null; return T.Column$(H.setRuntimeTypeInfo([C.Divider_null_null_null_null, T.Expanded$(new B.GridView(C.C__YearPickerGridDelegate, new G.SliverChildBuilderDelegate(_this.get$_buildYearItem(), t2, true, true, true, G.sliver___kDefaultSemanticIndexCallback$closure()), C.EdgeInsets_16_0_16_0, C.Axis_1, false, t1, t3, t4, _null, false, _null, 0, _null, t2, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, C.Clip_1, _null), 1), C.Divider_null_null_null_null], type$.JSArray_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }; Q._YearPickerState__buildYearItem_closure.prototype = { call$0: function() { var t1 = this.$this._widget, t2 = t1.initialDate; t2 = H.Primitives_valueFromDecomposedDate(this.year, H.Primitives_getMonth(t2), 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); return t1.onChanged$1(new P.DateTime(t2, false)); }, $signature: 0 }; Q._YearPickerGridDelegate.prototype = { getLayout$1: function(constraints) { var tileWidth = (constraints.crossAxisExtent - 16) / 3; return new B.SliverGridRegularTileLayout(3, 52, tileWidth + 8, 52, tileWidth, G.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1: function(oldDelegate) { return false; } }; Q.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; V.Card.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, _this = this, _null = null, theme = K.Theme_of(context), cardTheme = K.Theme_of(context).cardTheme, t1 = _this.semanticContainer, t2 = _this.margin; if (t2 == null) t2 = cardTheme.margin; if (t2 == null) t2 = C.EdgeInsets_4_4_4_4; t3 = cardTheme.shadowColor; if (t3 == null) t3 = theme.shadowColor; t4 = _this.color; if (t4 == null) t4 = cardTheme.color; if (t4 == null) t4 = theme.cardColor; t5 = _this.elevation; if (t5 == null) t5 = cardTheme.elevation; if (t5 == null) t5 = 1; t6 = _this.shape; if (t6 == null) t6 = cardTheme.shape; if (t6 == null) t6 = C.RoundedRectangleBorder_a510; t7 = _this.clipBehavior; if (t7 == null) t7 = cardTheme.clipBehavior; if (t7 == null) t7 = C.Clip_0; t2 = M.Container$(_null, M.Material$(C.Duration_200000, true, _null, new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, !t1, false, _this.child, _null), t7, t4, t5, _null, t3, t6, _null, C.MaterialType_1), C.Clip_0, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, false, false, t2, _null); } }; A.CardTheme.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.clipBehavior, _this.color, _this.shadowColor, _this.elevation, _this.margin, _this.shape, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof A.CardTheme) t1 = J.$eq$(other.color, _this.color) && J.$eq$(other.shadowColor, _this.shadowColor) && other.elevation == _this.elevation && J.$eq$(other.margin, _this.margin) && J.$eq$(other.shape, _this.shape); else t1 = false; return t1; } }; A._CardTheme_Object_Diagnosticable.prototype = {}; K.Checkbox.prototype = { createState$0: function() { return new K._CheckboxState(new K._CheckboxPainter(new P.LinkedList(type$.LinkedList__ListenerEntry)), $, $, $, $, $, $, $, $, $, null, false, false, null, C._StateLifecycle_0); }, get$value: function(receiver) { return this.value; } }; K._CheckboxState.prototype = { initState$0: function() { this.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$initState(); this._previousValue = this._widget.value; }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.value; if (t1 != _this._widget.value) { _this._previousValue = t1; _this.animateToValue$0(); } }, dispose$0: function(_) { this._checkbox$_painter.dispose$0(0); this.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged: function() { return this._widget.onChanged; }, get$tristate: function() { return this._widget.tristate; }, get$value: function(_) { return this._widget.value; }, get$_widgetFillColor: function() { return new V._MaterialStatePropertyWith(new K._CheckboxState__widgetFillColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultFillColor: function() { var t1 = this._framework$_element; t1.toString; return new V._MaterialStatePropertyWith(new K._CheckboxState__defaultFillColor_closure(K.Theme_of(t1)), type$._MaterialStatePropertyWith_Color); }, build$1: function(_, context) { var effectiveVisualDensity, size, activeStates, inactiveStates, effectiveActiveColor, effectiveInactiveColor, focusedStates, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, effectiveCheckColor, t2, t3, _this = this, _null = null, themeData = K.Theme_of(context), t1 = _this._widget.materialTapTargetSize, effectiveMaterialTapTargetSize = t1 == null ? themeData.checkboxTheme.materialTapTargetSize : t1; if (effectiveMaterialTapTargetSize == null) effectiveMaterialTapTargetSize = themeData.materialTapTargetSize; themeData.toString; effectiveVisualDensity = themeData.visualDensity; switch (effectiveMaterialTapTargetSize) { case C.MaterialTapTargetSize_0: size = C.Size_48_48; break; case C.MaterialTapTargetSize_1: size = C.Size_40_40; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } size = size.$add(0, new P.Offset(effectiveVisualDensity.horizontal, effectiveVisualDensity.vertical).$mul(0, 4)); activeStates = _this.get$states(); activeStates.add$1(0, C.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, C.MaterialState_4); _this._widget.toString; t1 = _this.get$_widgetFillColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = themeData.checkboxTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActiveColor = t1; } else effectiveActiveColor = t1; if (effectiveActiveColor == null) effectiveActiveColor = _this.get$_defaultFillColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetFillColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = themeData.checkboxTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactiveColor = t1; } else effectiveInactiveColor = t1; if (effectiveInactiveColor == null) effectiveInactiveColor = _this.get$_defaultFillColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, C.MaterialState_1); _this._widget.toString; t1 = themeData.checkboxTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(focusedStates); effectiveFocusOverlayColor = t1; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = themeData.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, C.MaterialState_0); _this._widget.toString; t1 = themeData.checkboxTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(hoveredStates); effectiveHoverOverlayColor = t1; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = themeData.hoverColor; activeStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = themeData.checkboxTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActivePressedOverlayColor = t1; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); inactiveStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = themeData.checkboxTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); t1 = _this._widget.checkColor; if (t1 == null) { t1 = themeData.checkboxTheme.checkColor; t1 = t1 == null ? _null : t1.resolve$1(_this.get$states()); effectiveCheckColor = t1; } else effectiveCheckColor = t1; if (effectiveCheckColor == null) effectiveCheckColor = C.Color_4294967295; t1 = _this._widget.value; t2 = _this._checkbox$_painter; t2.set$position(0, _this.get$_toggleable$_position(_this)); t2.set$reaction(_this.get$_toggleable$_reaction()); t2.set$reactionFocusFade(_this.get$_reactionFocusFade()); t2.set$reactionHoverFade(_this.get$_reactionHoverFade()); t2.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t2.set$reactionColor(effectiveActivePressedOverlayColor); t2.set$hoverColor(effectiveHoverOverlayColor); t2.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t3 = themeData.checkboxTheme.splashRadius; t2.set$splashRadius(t3 == null ? 20 : t3); t2.set$downPosition(_this.ToggleableStateMixin__downPosition); t2.set$isFocused(_this.get$states().contains$1(0, C.MaterialState_1)); t2.set$isHovered(_this.get$states().contains$1(0, C.MaterialState_0)); t2.set$activeColor(effectiveActiveColor); t2.set$inactiveColor(effectiveInactiveColor); t2.set$checkColor(effectiveCheckColor); t2.set$value(0, _this._widget.value); t2.set$previousValue(_this._previousValue); _this._widget.toString; t3 = themeData.checkboxTheme.shape; t2.set$shape(0, t3 == null ? C.RoundedRectangleBorder_a513 : t3); _this._widget.toString; t2.set$side(themeData.checkboxTheme.side); t2 = _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, _null, new V._MaterialStatePropertyWith(new K._CheckboxState_build_closure(_this, themeData), type$._MaterialStatePropertyWith_MouseCursor), t2, size); return new T.Semantics(A.SemanticsProperties$(_null, t1 === 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, _null), false, false, false, t2, _null); } }; K._CheckboxState__widgetFillColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return null; if (states.contains$1(0, C.MaterialState_4)) return this.$this._widget.activeColor; return null; }, $signature: 205 }; K._CheckboxState__defaultFillColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.themeData.disabledColor; if (states.contains$1(0, C.MaterialState_4)) return this.themeData.toggleableActiveColor; return this.themeData.unselectedWidgetColor; }, $signature: 111 }; K._CheckboxState_build_closure.prototype = { call$1: function(states) { var t1; this.$this._widget.toString; t1 = V.MaterialStateProperty_resolveAs(null, states, type$.nullable_MouseCursor); if (t1 == null) { this.themeData.toString; t1 = null; } return t1 == null ? C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(states) : t1; }, $signature: 336 }; K._CheckboxPainter.prototype = { set$checkColor: function(value) { if (J.$eq$(this._checkColor, value)) return; this._checkColor = value; this.notifyListeners$0(); }, get$value: function(_) { return this._checkbox$_value; }, set$value: function(_, value) { if (this._checkbox$_value == value) return; this._checkbox$_value = value; this.notifyListeners$0(); }, set$previousValue: function(value) { if (this._previousValue == value) return; this._previousValue = value; this.notifyListeners$0(); }, set$shape: function(_, value) { if (J.$eq$(this._checkbox$_shape, value)) return; this._checkbox$_shape = value; this.notifyListeners$0(); }, set$side: function(value) { if (J.$eq$(this._side, value)) return; this._side = value; this.notifyListeners$0(); }, _outerRectAt$2: function(origin, t) { var inset = 1 - Math.abs(t - 0.5) * 2, size = 18 - inset * 2, t1 = origin._dx + inset, t2 = origin._dy + inset; return new P.Rect(t1, t2, t1 + size, t2 + size); }, _colorAt$1: function(t) { var t2, t1 = this._activeColor; if (t >= 0.25) t1.toString; else { t2 = this._inactiveColor; t2.toString; t1.toString; t1 = P.Color_lerp(t2, t1, t * 4); t1.toString; } return t1; }, _drawCheck$4: function(canvas, origin, t, paint) { var t3, path = P.Path_Path(), t1 = origin._dx, t2 = origin._dy; if (t < 0.5) { t3 = P.Offset_lerp(C.Offset_W7v, C.Offset_gPO, t * 2); t3.toString; path.moveTo$2(0, t1 + 2.6999999999999997, t2 + 8.1); path.lineTo$2(0, t1 + t3._dx, t2 + t3._dy); } else { t3 = P.Offset_lerp(C.Offset_gPO, C.Offset_oIk, (t - 0.5) * 2); t3.toString; path.moveTo$2(0, t1 + 2.6999999999999997, t2 + 8.1); path.lineTo$2(0, t1 + 7.2, t2 + 12.6); path.lineTo$2(0, t1 + t3._dx, t2 + t3._dy); } canvas.drawPath$2(0, path, paint); }, _drawDash$4: function(canvas, origin, t, paint) { var t2, t1 = P.Offset_lerp(C.Offset_aNU, C.Offset_9_9, 1 - t); t1.toString; t2 = P.Offset_lerp(C.Offset_9_9, C.Offset_Gl7, t); t2.toString; canvas.drawLine$3(0, origin.$add(0, t1), origin.$add(0, t2), paint); }, paint$2: function(canvas, size) { var t1, strokePaint, origin, $status, t2, tNormalized, t, outer, emptyCheckboxPath, paint, resolvedShape, tShrink, tExpand, _this = this; _this.paintRadialReaction$2$canvas$origin(canvas, size.center$1(C.Offset_0_0)); t1 = H._detectRenderer(); strokePaint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._checkColor; t1.toString; strokePaint.set$color(0, t1); strokePaint.set$style(0, C.PaintingStyle_1); strokePaint.set$strokeWidth(2); origin = type$.Offset._as(size.$div(0, 2).$sub(0, C.Size_18_18.$div(0, 2))); t1 = _this._toggleable$_position.parent; $status = t1.get$status(t1); t1 = $status === C.AnimationStatus_1 || $status === C.AnimationStatus_3; t2 = _this._toggleable$_position; tNormalized = t1 ? t2.get$value(t2) : 1 - t2.get$value(t2); if (_this._previousValue === false || _this._checkbox$_value === false) { t = _this._checkbox$_value === false ? 1 - tNormalized : tNormalized; outer = _this._outerRectAt$2(origin, t); emptyCheckboxPath = _this._checkbox$_shape.copyWith$1$side(_this._side).getOuterPath$1(outer); t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, _this._colorAt$1(t)); if (t <= 0.5) { t1 = _this._checkbox$_shape; t1.toString; if (_this._side == null) resolvedShape = t1.copyWith$1$side(new Y.BorderSide(paint.get$color(paint), 2, C.BorderStyle_1)); else resolvedShape = t1; resolvedShape.copyWith$1$side(_this._side).paint$2(canvas, outer); } else { canvas.drawPath$2(0, emptyCheckboxPath, paint); tShrink = (t - 0.5) * 2; if (_this._previousValue == null || _this._checkbox$_value == null) _this._drawDash$4(canvas, origin, tShrink, strokePaint); else _this._drawCheck$4(canvas, origin, tShrink, strokePaint); } } else { outer = _this._outerRectAt$2(origin, 1); t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, _this._colorAt$1(1)); canvas.drawPath$2(0, _this._checkbox$_shape.copyWith$1$side(_this._side).getOuterPath$1(outer), paint); if (tNormalized <= 0.5) { tShrink = 1 - tNormalized * 2; if (_this._previousValue === true) _this._drawCheck$4(canvas, origin, tShrink, strokePaint); else _this._drawDash$4(canvas, origin, tShrink, strokePaint); } else { tExpand = (tNormalized - 0.5) * 2; if (_this._checkbox$_value === true) _this._drawCheck$4(canvas, origin, tExpand, strokePaint); else _this._drawDash$4(canvas, origin, tExpand, strokePaint); } } } }; K.__CheckboxState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; K.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0: function() { var _this = this, _null = null; _this.super$State$initState(); _this.ToggleableStateMixin___ToggleableStateMixin__positionController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _this._widget.value === false ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__position = S.CurvedAnimation$(C.Cubic_JUR0, _this.get$_toggleable$_positionController(), C.Cubic_xDo0); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = G.AnimationController$(_null, C.Duration_100000, 0, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reaction = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_toggleable$_reactionController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionHoverFadeController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionFocusFadeController(), _null); }, dispose$0: function(_) { var _this = this; _this.get$_toggleable$_positionController().dispose$0(0); _this.get$_toggleable$_reactionController().dispose$0(0); _this.get$_reactionHoverFadeController().dispose$0(0); _this.get$_reactionFocusFadeController().dispose$0(0); _this.super$__CheckboxState_State_TickerProviderStateMixin$dispose(0); } }; D.CheckboxListTile.prototype = { _handleValueChange$0: function() { var _this = this; switch (_this.value) { case false: _this.onChanged.call$1(true); break; case true: _this.onChanged.call$1(false); break; case null: _this.onChanged.call$1(false); break; } }, build$1: function(_, context) { var trailing, leading, _this = this, _null = null, t1 = _this.activeColor, control = K.Checkbox$(t1, false, _null, C.MaterialTapTargetSize_1, _this.onChanged, false, _this.value); switch (_this.controlAffinity) { case C.ListTileControlAffinity_0: trailing = _null; leading = control; break; case C.ListTileControlAffinity_1: case C.ListTileControlAffinity_2: trailing = control; leading = _null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (t1 == null) t1 = K.Theme_of(context).toggleableActiveColor; return new T.MergeSemantics(Q.ListTileTheme_merge(Q.ListTile$(false, _this.contentPadding, _this.dense, true, false, _null, leading, _null, _this.get$_handleValueChange(), false, _null, _null, _null, _null, _this.title, trailing), t1), _null); }, get$value: function(receiver) { return this.value; } }; F.CheckboxThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.mouseCursor, _this.fillColor, _this.checkColor, _this.overlayColor, _this.splashRadius, _this.materialTapTargetSize, _this.visualDensity, _this.shape, _this.side, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof F.CheckboxThemeData) if (other.fillColor == _this.fillColor) if (other.checkColor == _this.checkColor) if (other.overlayColor == _this.overlayColor) if (other.splashRadius == _this.splashRadius) t1 = J.$eq$(other.shape, _this.shape) && J.$eq$(other.side, _this.side); else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; F._LerpProperties1.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; F._CheckboxThemeData_Object_Diagnosticable.prototype = {}; K.ChipThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.deleteIconColor, _this.disabledColor, _this.selectedColor, _this.secondarySelectedColor, _this.shadowColor, _this.selectedShadowColor, _this.checkmarkColor, _this.labelPadding, _this.padding, _this.side, _this.shape, _this.labelStyle, _this.secondaryLabelStyle, _this.brightness, _this.elevation, _this.pressElevation, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof K.ChipThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.deleteIconColor, _this.deleteIconColor) && J.$eq$(other.disabledColor, _this.disabledColor) && J.$eq$(other.selectedColor, _this.selectedColor) && J.$eq$(other.secondarySelectedColor, _this.secondarySelectedColor) && J.$eq$(other.shadowColor, _this.shadowColor) && J.$eq$(other.selectedShadowColor, _this.selectedShadowColor) && J.$eq$(other.checkmarkColor, _this.checkmarkColor) && J.$eq$(other.labelPadding, _this.labelPadding) && J.$eq$(other.padding, _this.padding) && J.$eq$(other.side, _this.side) && J.$eq$(other.shape, _this.shape) && J.$eq$(other.labelStyle, _this.labelStyle) && J.$eq$(other.secondaryLabelStyle, _this.secondaryLabelStyle) && other.brightness === _this.brightness && other.elevation == _this.elevation && other.pressElevation == _this.pressElevation; } }; K._ChipThemeData_Object_Diagnosticable.prototype = {}; A.ColorScheme.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof A.ColorScheme && J.$eq$(other.primary, _this.primary) && J.$eq$(other.primaryVariant, _this.primaryVariant) && J.$eq$(other.secondary, _this.secondary) && J.$eq$(other.secondaryVariant, _this.secondaryVariant) && J.$eq$(other.surface, _this.surface) && J.$eq$(other.background, _this.background) && J.$eq$(other.error, _this.error) && J.$eq$(other.onPrimary, _this.onPrimary) && J.$eq$(other.onSecondary, _this.onSecondary) && J.$eq$(other.onSurface, _this.onSurface) && J.$eq$(other.onBackground, _this.onBackground) && J.$eq$(other.onError, _this.onError) && other.brightness === _this.brightness; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.primary, _this.primaryVariant, _this.secondary, _this.secondaryVariant, _this.surface, _this.background, _this.error, _this.onPrimary, _this.onSecondary, _this.onSurface, _this.onBackground, _this.onError, _this.brightness, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; A._ColorScheme_Object_Diagnosticable.prototype = {}; E.MaterialColor.prototype = {}; E.MaterialAccentColor.prototype = {}; S.DataColumn.prototype = {}; S.DataRow.prototype = {}; S.DataCell.prototype = {}; S.DataTable.prototype = { _handleSelectAll$2: function(checked, someChecked) { var effectiveChecked, t1, t2, _i; if (!someChecked) effectiveChecked = checked === true; for (t1 = this.rows, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].toString; }, _buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate: function(checked, context, onCheckboxChanged, onRowTap, overlayColor, tristate) { var effectiveCheckboxHorizontalMarginStart, effectiveCheckboxHorizontalMarginEnd, contents, _null = null, themeData = K.Theme_of(context), t1 = this.horizontalMargin, effectiveHorizontalMargin = t1 == null ? themeData.dataTableTheme.horizontalMargin : t1; if (effectiveHorizontalMargin == null) effectiveHorizontalMargin = 24; effectiveCheckboxHorizontalMarginStart = themeData.dataTableTheme.checkboxHorizontalMargin; if (effectiveCheckboxHorizontalMarginStart == null) effectiveCheckboxHorizontalMarginStart = effectiveHorizontalMargin; effectiveCheckboxHorizontalMarginEnd = themeData.dataTableTheme.checkboxHorizontalMargin; if (effectiveCheckboxHorizontalMarginEnd == null) effectiveCheckboxHorizontalMarginEnd = effectiveHorizontalMargin / 2; t1 = themeData.colorScheme; t1 = T.Center$(K.Checkbox$(t1.primary, false, t1.onPrimary, _null, onCheckboxChanged, tristate, checked), _null, _null); contents = new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new T.Padding(new V.EdgeInsetsDirectional(effectiveCheckboxHorizontalMarginStart, 0, effectiveCheckboxHorizontalMarginEnd, 0), t1, _null), _null); return S.TableCell$(onRowTap != null ? S.TableRowInkWell$(contents, onRowTap, overlayColor) : contents, C.TableCellVerticalAlignment_4); }, build$1: function(_, context) { var effectiveHorizontalMargin, effectiveCheckboxHorizontalMarginStart, effectiveCheckboxHorizontalMarginEnd, effectiveColumnSpacing, t3, tableColumns, tableRows, t4, rowIndex, _i, row, displayCheckboxColumn, displayColumnIndex, t5, t6, t7, t8, paddingEnd, t9, paddingStart, dataColumnIndex, t10, column, t11, paddingStart0, padding, t12, t13, themeData, t14, t15, label, effectiveHeadingTextStyle, effectiveHeadingRowHeight, cell, effectiveDataTextStyle, effectiveDataRowHeight, _this = this, _null = null, theme = K.Theme_of(context), effectiveHeadingRowColor = theme.dataTableTheme.headingRowColor, effectiveDataRowColor = theme.dataTableTheme.dataRowColor, t1 = _this.rows, anyRowSelectable = C.JSArray_methods.any$1(t1, new S.DataTable_build_closure()), rowsWithCheckbox = anyRowSelectable ? new H.WhereIterable(t1, new S.DataTable_build_closure0(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")) : H.setRuntimeTypeInfo([], type$.JSArray_DataRow), t2 = J.getInterceptor$ax(rowsWithCheckbox), rowsChecked = t2.where$1(rowsWithCheckbox, new S.DataTable_build_closure1()), allChecked = anyRowSelectable && rowsChecked.get$length(rowsChecked) === t2.get$length(rowsWithCheckbox), someChecked = anyRowSelectable && !rowsChecked.get$isEmpty(rowsChecked) && !allChecked; t2 = _this.horizontalMargin; effectiveHorizontalMargin = t2 == null ? theme.dataTableTheme.horizontalMargin : t2; if (effectiveHorizontalMargin == null) effectiveHorizontalMargin = 24; effectiveCheckboxHorizontalMarginStart = theme.dataTableTheme.checkboxHorizontalMargin; if (effectiveCheckboxHorizontalMarginStart == null) effectiveCheckboxHorizontalMarginStart = effectiveHorizontalMargin; effectiveCheckboxHorizontalMarginEnd = theme.dataTableTheme.checkboxHorizontalMargin; if (effectiveCheckboxHorizontalMarginEnd == null) effectiveCheckboxHorizontalMarginEnd = effectiveHorizontalMargin / 2; t2 = _this.columnSpacing; effectiveColumnSpacing = t2 == null ? theme.dataTableTheme.columnSpacing : t2; if (effectiveColumnSpacing == null) effectiveColumnSpacing = 56; t2 = _this.columns; t3 = t2.length; tableColumns = P.List_List$filled(t3 + (anyRowSelectable ? 1 : 0), C.C__NullTableColumnWidth, false, type$.TableColumnWidth); tableRows = P.List_List$generate(t1.length + 1, new S.DataTable_build_closure2(_this, anyRowSelectable, effectiveDataRowColor, effectiveHeadingRowColor, context, theme, new V._MaterialStatePropertyWith(new S.DataTable_build_closure3(theme), type$._MaterialStatePropertyWith_nullable_Color), tableColumns), type$.TableRow); if (anyRowSelectable) { tableColumns[0] = new S.FixedColumnWidth(effectiveCheckboxHorizontalMarginStart + 18 + effectiveCheckboxHorizontalMarginEnd); t3 = tableRows[0]; t4 = someChecked ? _null : allChecked; t3.children[0] = _this._buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate(t4, context, new S.DataTable_build_closure4(_this, someChecked), _null, _null, true); for (t3 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t3 || (0, H.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; t4 = tableRows[rowIndex]; row.toString; t4.children[0] = _this._buildCheckbox$6$checked$context$onCheckboxChanged$onRowTap$overlayColor$tristate(false, context, _null, new S.DataTable_build_closure5(row), effectiveDataRowColor, false); ++rowIndex; } displayCheckboxColumn = true; displayColumnIndex = 1; } else { displayCheckboxColumn = anyRowSelectable; displayColumnIndex = 0; } for (t3 = _this.dataRowHeight, t4 = _this.headingRowHeight, t5 = type$.JSArray_Widget, t6 = _this.sortColumnIndex, t7 = _this.sortAscending, t8 = _this._onlyTextColumn, paddingEnd = effectiveColumnSpacing / 2, t9 = !displayCheckboxColumn, paddingStart = effectiveHorizontalMargin / 2, dataColumnIndex = 0; t10 = t2.length, dataColumnIndex < t10; ++dataColumnIndex) { column = t2[dataColumnIndex]; t11 = dataColumnIndex === 0; t11; if (t11 && displayCheckboxColumn) paddingStart0 = paddingStart; else paddingStart0 = t11 && t9 ? effectiveHorizontalMargin : paddingEnd; padding = new V.EdgeInsetsDirectional(paddingStart0, 0, dataColumnIndex === t10 - 1 ? effectiveHorizontalMargin : paddingEnd, 0); if (dataColumnIndex === t8) tableColumns[displayColumnIndex] = C.IntrinsicColumnWidth_1; else tableColumns[displayColumnIndex] = C.IntrinsicColumnWidth_null; t10 = tableRows[0]; t11 = column.numeric; t12 = column.onSort != null ? new S.DataTable_build_closure6(_this, column, dataColumnIndex) : _null; t13 = dataColumnIndex === t6; themeData = K.Theme_of(context); t14 = t11 ? C.TextDirection_0 : _null; t15 = H.setRuntimeTypeInfo([column.label], t5); if (t12 != null) C.JSArray_methods.addAll$1(t15, H.setRuntimeTypeInfo([new S._SortArrow(t13, t13 ? t7 : _null, C.Duration_150000, _null), C.SizedBox_2_null_null_null], t5)); label = T.Row$(t15, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, t14); effectiveHeadingTextStyle = themeData.dataTableTheme.headingTextStyle; if (effectiveHeadingTextStyle == null) { t13 = themeData.textTheme.subtitle2; t13.toString; effectiveHeadingTextStyle = t13; } effectiveHeadingRowHeight = t4 == null ? themeData.dataTableTheme.headingRowHeight : t4; if (effectiveHeadingRowHeight == null) effectiveHeadingRowHeight = 56; t13 = t11 ? C.Alignment_1_0 : C.AlignmentDirectional_m1_0; label = M.Container$(t13, G.AnimatedDefaultTextStyle$(label, C.C__Linear, C.Duration_150000, false, effectiveHeadingTextStyle), C.Clip_0, _null, _null, _null, _null, effectiveHeadingRowHeight, _null, _null, padding, _null, _null, _null); t10.children[displayColumnIndex] = R.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t12, _null, _null, effectiveHeadingRowColor, _null, _null); for (t10 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t10 || (0, H.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; cell = row.cells[dataColumnIndex]; t12 = tableRows[rowIndex]; label = cell.child; t13 = cell.onTap; themeData = K.Theme_of(context); effectiveDataTextStyle = themeData.dataTableTheme.dataTextStyle; if (effectiveDataTextStyle == null) { t14 = themeData.textTheme.bodyText2; t14.toString; effectiveDataTextStyle = t14; } effectiveDataRowHeight = t3 == null ? themeData.dataTableTheme.dataRowHeight : t3; if (effectiveDataRowHeight == null) effectiveDataRowHeight = 48; t14 = t11 ? C.Alignment_1_0 : C.AlignmentDirectional_m1_0; label = M.Container$(t14, new L.DefaultTextStyle(effectiveDataTextStyle.copyWith$1$color(_null), _null, true, C.TextOverflow_0, _null, C.TextWidthBasis_0, _null, new K.DropdownButtonHideUnderline(label, _null), _null), C.Clip_0, _null, _null, _null, _null, effectiveDataRowHeight, _null, _null, padding, _null, _null, _null); if (t13 == null) t14 = false; else t14 = true; if (t14) label = R.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t13, _null, _null, effectiveDataRowColor, _null, _null); else label = S.TableRowInkWell$(label, new S.DataTable_build_closure7(row), effectiveDataRowColor); t12.children[displayColumnIndex] = label; ++rowIndex; } ++displayColumnIndex; } t1 = _this.decoration; if (t1 == null) t1 = theme.dataTableTheme.decoration; return M.Container$(_null, M.Material$(C.Duration_200000, true, _null, S.Table$(tableRows, new H.ListMapView(tableColumns, H._arrayInstanceType(tableColumns)._eval$1("ListMapView<1>")), C.FlexColumnWidth_1, C.TableCellVerticalAlignment_0, _null), C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_4), C.Clip_0, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null); } }; S.DataTable_build_closure3.prototype = { call$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_4)) { t1 = this.theme.colorScheme.primary; return P.Color$fromARGB(20, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; }, $signature: 205 }; S.DataTable_build_closure.prototype = { call$1: function(row) { row.toString; return false; }, $signature: 333 }; S.DataTable_build_closure0.prototype = { call$1: function(row) { row.toString; return false; }, $signature: 333 }; S.DataTable_build_closure1.prototype = { call$1: function(row) { row.toString; return false; }, $signature: 333 }; S.DataTable_build_closure2.prototype = { call$1: function(index) { var isDisabled, t2, t3, t4, resolvedDataRowColor, resolvedHeadingRowColor, rowColor, borderSide, border, _this = this, _null = null, t1 = index > 0; if (t1) _this.$this.rows[index - 1].toString; if (t1) if (_this.anyRowSelectable) { _this.$this.rows[index - 1].toString; isDisabled = true; } else isDisabled = false; else isDisabled = false; t2 = type$.MaterialState; t3 = P.LinkedHashSet_LinkedHashSet$_empty(t2); if (isDisabled) t3.add$1(0, C.MaterialState_5); if (t1) { _this.$this.rows[index - 1].toString; t4 = _this.effectiveDataRowColor; resolvedDataRowColor = t4 == null ? _null : t4.resolve$1(t3); } else resolvedDataRowColor = _null; t4 = _this.effectiveHeadingRowColor; resolvedHeadingRowColor = t4 == null ? _null : t4.resolve$1(P.LinkedHashSet_LinkedHashSet$_empty(t2)); rowColor = t1 ? resolvedDataRowColor : resolvedHeadingRowColor; t1 = _this.theme.dataTableTheme.dividerThickness; if (t1 == null) t1 = 1; borderSide = Z.Divider_createBorderSide(_this.context, _null, t1); t1 = _this.$this; if (t1.showBottomBorder) border = new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, borderSide, C.BorderSide_m7u); else border = index === 0 ? _null : new F.Border(borderSide, C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u); t1 = index === 0 ? $.$get$DataTable__headingRowKey() : t1.rows[index - 1].key; t2 = rowColor == null ? _this.defaultRowColor._material_state$_resolve.call$1(t3) : rowColor; return new S.TableRow(t1, new S.BoxDecoration(t2, _null, border, _null, _null, _null, C.BoxShape_0), P.List_List$filled(_this.tableColumns.length, C._NullWidget_null0, false, type$.Widget)); }, $signature: 1910 }; S.DataTable_build_closure4.prototype = { call$1: function(checked) { return this.$this._handleSelectAll$2(checked, this.someChecked); }, $signature: 372 }; S.DataTable_build_closure5.prototype = { call$0: function() { return null; }, $signature: 0 }; S.DataTable_build_closure6.prototype = { call$0: function() { var t2, t3, t1 = this.column.onSort; t1.toString; t2 = this.dataColumnIndex; t3 = this.$this; return t1.call$2(t2, t3.sortColumnIndex !== t2 || !t3.sortAscending); }, $signature: 0 }; S.DataTable_build_closure7.prototype = { call$0: function() { return null; }, $signature: 0 }; S.TableRowInkWell.prototype = { getRectCallback$1: function(referenceBox) { return new S.TableRowInkWell_getRectCallback_closure(referenceBox); }, debugCheckContext$1: function(context) { this.super$InkResponse$debugCheckContext(context); return true; } }; S.TableRowInkWell_getRectCallback_closure.prototype = { call$0: function() { var table0, t1, rect, offset, cell = this.referenceBox, table = cell.get$parent(cell), transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); while (true) { if (!(table instanceof K.RenderObject && !(table instanceof S.RenderTable))) break; table.applyPaintTransform$2(cell, transform); table0 = table.get$parent(table); cell = table; table = table0; } if (table instanceof S.RenderTable) { t1 = cell.parentData; t1.toString; t1 = type$.TableCellParentData._as(t1).y; t1.toString; rect = table.getRowBox$1(t1); table.applyPaintTransform$2(cell, transform); offset = T.MatrixUtils_getAsTranslation(transform); if (offset != null) return rect.shift$1(new P.Offset(-offset._dx, -offset._dy)); } return C.Rect_0_0_0_0; }, "call*": "call$0", $requiredArgCount: 0, $signature: 326 }; S._SortArrow.prototype = { createState$0: function() { return new S._SortArrowState(null, C._StateLifecycle_0); } }; S._SortArrowState.prototype = { get$_opacityController: function() { var t1 = this.___SortArrowState__opacityController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_opacityController")) : t1; }, get$_orientationController: function() { var t1 = this.___SortArrowState__orientationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_orientationController")) : t1; }, initState$0: function() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); t1 = G.AnimationController$(_null, _this._widget.duration, 0, _null, 1, _null, _this); _this.___SortArrowState__opacityController = t1; t1 = S.CurvedAnimation$(C.Cubic_ifx, t1, _null); t2 = _this.get$_data_table$_rebuild(); t1.parent.addListener$1(0, t2); _this.___SortArrowState__opacityAnimation = t1; t1 = _this.get$_opacityController(); t1.set$value(0, _this._widget.visible ? 1 : 0); _this.___SortArrowState__orientationController = G.AnimationController$(_null, _this._widget.duration, 0, _null, 1, _null, _this); t1 = _this.get$_orientationController(); t3 = $.$get$_SortArrowState__turnTween(); t1.toString; type$.Animation_double._as(t1); t3.toString; t1.addListener$1(0, t2); t1.addStatusListener$1(_this.get$_resetOrientationAnimation()); _this.___SortArrowState__orientationAnimation = new R._AnimatedEvaluation(t1, t3, t3.$ti._eval$1("_AnimatedEvaluation")); t1 = _this._widget; if (t1.visible) { t1 = t1.up; t1.toString; _this._orientationOffset = t1 ? 0 : 3.141592653589793; } }, _data_table$_rebuild$0: function() { this.setState$1(new S._SortArrowState__rebuild_closure()); }, _resetOrientationAnimation$1: function($status) { if ($status === C.AnimationStatus_3) { this._orientationOffset += 3.141592653589793; this.get$_orientationController().set$value(0, 0); } }, didUpdateWidget$1: function(oldWidget) { var t1, newUp, t2, skipArrow, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; newUp = t1.up; if (newUp == null) newUp = _this._data_table$_up; t2 = oldWidget.visible; t1 = t1.visible; if (t2 !== t1) { if (t1 && _this.get$_opacityController().get$_status() === C.AnimationStatus_0) { _this.get$_orientationController().stop$0(0); _this.get$_orientationController().set$value(0, 0); newUp.toString; _this._orientationOffset = newUp ? 0 : 3.141592653589793; skipArrow = true; } else skipArrow = false; if (_this._widget.visible) _this.get$_opacityController().forward$0(0); else _this.get$_opacityController().reverse$0(0); } else skipArrow = false; if (_this._data_table$_up != newUp && !skipArrow) if (_this.get$_orientationController().get$_status() === C.AnimationStatus_0) _this.get$_orientationController().forward$0(0); else _this.get$_orientationController().reverse$0(0); _this._data_table$_up = newUp; }, dispose$0: function(_) { this.get$_opacityController().dispose$0(0); this.get$_orientationController().dispose$0(0); this.super$__SortArrowState_State_TickerProviderStateMixin$dispose0(0); }, build$1: function(_, context) { var t2, t3, t1 = this.___SortArrowState__opacityAnimation; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_opacityAnimation")); t1 = t1.get$value(t1); t2 = this._orientationOffset; t3 = this.___SortArrowState__orientationAnimation; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_orientationAnimation")); t3 = E.Matrix4_Matrix4$rotationZ(t2 + t3.get$value(t3)); t3.setTranslationRaw$3(0, -1.5, 0); return T.Opacity$(false, T.Transform$(C.Alignment_0_0, C.Icon_CKg, t3, true), t1); } }; S._SortArrowState__rebuild_closure.prototype = { call$0: function() { }, $signature: 0 }; S._NullTableColumnWidth.prototype = { maxIntrinsicWidth$2: function(cells, containerWidth) { return H.throwExpression(P.UnimplementedError$(null)); }, minIntrinsicWidth$2: function(cells, containerWidth) { return H.throwExpression(P.UnimplementedError$(null)); } }; S._NullWidget0.prototype = { createElement$0: function(_) { return H.throwExpression(P.UnimplementedError$(null)); } }; S.__SortArrowState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; D.DataTableSource.prototype = {}; Z.DataTableThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.decoration, _this.dataRowColor, _this.dataRowHeight, _this.dataTextStyle, _this.headingRowColor, _this.headingRowHeight, _this.headingTextStyle, _this.horizontalMargin, _this.columnSpacing, _this.dividerThickness, _this.checkboxHorizontalMargin, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof Z.DataTableThemeData && J.$eq$(other.decoration, _this.decoration) && other.dataRowColor == _this.dataRowColor && other.dataRowHeight == _this.dataRowHeight && J.$eq$(other.dataTextStyle, _this.dataTextStyle) && other.headingRowColor == _this.headingRowColor && other.headingRowHeight == _this.headingRowHeight && J.$eq$(other.headingTextStyle, _this.headingTextStyle) && other.horizontalMargin == _this.horizontalMargin && other.columnSpacing == _this.columnSpacing && other.dividerThickness == _this.dividerThickness && other.checkboxHorizontalMargin == _this.checkboxHorizontalMargin; } }; Z._LerpProperties2.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; Z._DataTableThemeData_Object_Diagnosticable.prototype = {}; Q.DatePickerEntryMode.prototype = { toString$0: function(_) { return this._date$_name; } }; Q.DatePickerMode.prototype = { toString$0: function(_) { return this._date$_name; } }; K.showDatePicker_closure.prototype = { call$1: function(context) { var t1 = this._box_0.dialog; return t1; }, $signature: 79 }; K.DatePickerDialog.prototype = { createState$0: function() { var _null = null; return new K._DatePickerDialogState(new U.RestorableBool(false, new P.LinkedList(type$.LinkedList__ListenerEntry)), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_FormState), _null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, C._StateLifecycle_0); } }; K._DatePickerDialogState.prototype = { get$_selectedDate: function() { var t1 = this.___DatePickerDialogState__selectedDate; if (t1 === $) t1 = this.___DatePickerDialogState__selectedDate = new U.RestorableDateTime(this._widget.initialDate, new P.LinkedList(type$.LinkedList__ListenerEntry)); return t1; }, get$_entryMode: function() { var t1 = this.___DatePickerDialogState__entryMode; if (t1 === $) t1 = this.___DatePickerDialogState__entryMode = new K._RestorableDatePickerEntryMode(this._widget.initialEntryMode, new P.LinkedList(type$.LinkedList__ListenerEntry)); return t1; }, get$restorationId: function() { this._widget.toString; return null; }, restoreState$2: function(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this.get$_selectedDate(), "selected_date"); _this.registerForRestoration$2(_this._autoValidate, "autovalidate"); _this.registerForRestoration$2(_this.get$_entryMode(), "calendar_entry_mode"); }, _handleOk$0: function() { var t1, t2, _this = this; if (J.$eq$(_this.get$_entryMode()._restoration_properties$_value, C.DatePickerEntryMode_1) || J.$eq$(_this.get$_entryMode()._restoration_properties$_value, C.DatePickerEntryMode_3)) { t1 = _this._formKey.get$currentState(); t1.toString; if (!t1.validate$0()) { _this.setState$1(new K._DatePickerDialogState__handleOk_closure(_this)); return; } t1.save$0(0); } t1 = _this._framework$_element; t1.toString; t2 = _this.get$_selectedDate()._restoration_properties$_value; K.Navigator_of(t1, false).pop$1(0, t2); }, _handleCancel$0: function() { var t1 = this._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); }, _handleEntryModeToggle$0: function() { this.setState$1(new K._DatePickerDialogState__handleEntryModeToggle_closure(this)); }, _handleDateChanged$1: function(date) { this.setState$1(new K._DatePickerDialogState__handleDateChanged_closure(this, date)); }, _dialogSize$1: function(context) { var _s80_ = string$.x60null_c, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, orientation = t1.get$orientation(t1); switch (this.get$_entryMode()._restoration_properties$_value) { case C.DatePickerEntryMode_0: case C.DatePickerEntryMode_2: switch (orientation) { case C.Orientation_0: return C.Size_330_518; case C.Orientation_1: return C.Size_496_346; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.DatePickerEntryMode_1: case C.DatePickerEntryMode_3: switch (orientation) { case C.Orientation_0: return C.Size_330_270; case C.Orientation_1: return C.Size_496_160; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, build$1: function(_, context) { var t2, t3, orientation, textTheme, textScaleFactor, dateText, onPrimarySurface, t4, dateStyle, t5, actions, calendarDatePicker, inputDatePicker, entryModeButton, dialogSize, _this = this, _null = null, _box_0 = {}, theme = K.Theme_of(context), colorScheme = theme.colorScheme, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = type$.MediaQuery; t3 = context.dependOnInheritedWidgetOfExactType$1$0(t2).data; orientation = t3.get$orientation(t3); textTheme = theme.textTheme; textScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(t2).data.textScaleFactor, 1.3); dateText = t1.formatMediumDate$1(_this.get$_selectedDate()._restoration_properties$_value); onPrimarySurface = colorScheme.brightness === C.Brightness_1 ? colorScheme.onPrimary : colorScheme.onSurface; t3 = orientation === C.Orientation_1; if (t3) { t4 = textTheme.headline5; dateStyle = t4 == null ? _null : t4.copyWith$1$color(onPrimarySurface); } else { t4 = textTheme.headline4; dateStyle = t4 == null ? _null : t4.copyWith$1$color(onPrimarySurface); } _this._widget.toString; t4 = t1.get$cancelButtonLabel(); t4 = U.TextButton$(false, L.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_handleCancel(), _null); _this._widget.toString; t5 = t1.get$okButtonLabel(); actions = M.Container$(C.AlignmentDirectional_1_0, E.OverflowBar$(H.setRuntimeTypeInfo([t4, U.TextButton$(false, L.Text$(t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_handleOk(), _null)], type$.JSArray_Widget), C.OverflowBarAlignment_0, C.VerticalDirection_1, 0, 8), C.Clip_0, _null, C.BoxConstraints_mlX3, _null, _null, _null, _null, _null, C.EdgeInsets_8_0_8_0, _null, _null, _null); calendarDatePicker = new K._DatePickerDialogState_build_calendarDatePicker(_this); inputDatePicker = new K._DatePickerDialogState_build_inputDatePicker(_this, orientation); _box_0.picker = null; switch (_this.get$_entryMode()._restoration_properties$_value) { case C.DatePickerEntryMode_0: _box_0.picker = calendarDatePicker.call$0(); entryModeButton = B.IconButton$(C.Alignment_0_0, onPrimarySurface, _null, true, C.Icon_NEt, 24, _this.get$_handleEntryModeToggle(), C.EdgeInsets_8_8_8_8, t1.get$inputDateModeButtonLabel(), _null); break; case C.DatePickerEntryMode_2: _box_0.picker = calendarDatePicker.call$0(); entryModeButton = _null; break; case C.DatePickerEntryMode_1: _box_0.picker = inputDatePicker.call$0(); entryModeButton = B.IconButton$(C.Alignment_0_0, onPrimarySurface, _null, true, C.Icon_vjf, 24, _this.get$_handleEntryModeToggle(), C.EdgeInsets_8_8_8_8, t1.get$calendarModeButtonLabel(), _null); break; case C.DatePickerEntryMode_3: _box_0.picker = inputDatePicker.call$0(); entryModeButton = _null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._widget.toString; t1 = t1.get$datePickerHelpText(); dialogSize = _this._dialogSize$1(context).$mul(0, textScaleFactor); return E.Dialog$(_null, G.AnimatedContainer$(new F.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(t2).data.copyWith$1$textScaleFactor(textScaleFactor), new T.Builder(new K._DatePickerDialogState_build_closure(_box_0, orientation, new K._DatePickerHeader(t1, dateText, dateStyle, orientation, t3, entryModeButton, _null), actions), _null), _null), _null, C.Cubic_JUR0, _null, C.Duration_200000, dialogSize._dy, _null, _null, _null, dialogSize._dx), C.Clip_2, _null, C.EdgeInsets_16_24_16_24, _null); } }; K._DatePickerDialogState__handleOk_closure.prototype = { call$0: function() { this.$this._autoValidate.super$RestorableValue$value(0, true); return true; }, $signature: 0 }; K._DatePickerDialogState__handleEntryModeToggle_closure.prototype = { call$0: function() { var t1 = this.$this; switch (t1.get$_entryMode()._restoration_properties$_value) { case C.DatePickerEntryMode_0: t1._autoValidate.super$RestorableValue$value(0, false); t1.get$_entryMode().set$value(0, C.DatePickerEntryMode_1); break; case C.DatePickerEntryMode_1: t1._formKey.get$currentState().save$0(0); t1.get$_entryMode().set$value(0, C.DatePickerEntryMode_0); break; case C.DatePickerEntryMode_2: case C.DatePickerEntryMode_3: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; K._DatePickerDialogState__handleDateChanged_closure.prototype = { call$0: function() { this.$this.get$_selectedDate().set$value(0, this.date); }, $signature: 0 }; K._DatePickerDialogState_build_calendarDatePicker.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.get$_selectedDate()._restoration_properties$_value, t3 = t1._widget, t4 = t3.firstDate, t5 = t3.lastDate, t6 = t3.currentDate, t7 = t3.selectableDayPredicate; t3 = t3.initialCalendarMode; t2.toString; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t2), H.Primitives_getDay(t2), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t4 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t4), H.Primitives_getMonth(t4), H.Primitives_getDay(t4), 0, 0, 0, 0, false); if (!H._isInt(t4)) H.throwExpression(H.argumentErrorValue(t4)); t5 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t5), H.Primitives_getMonth(t5), H.Primitives_getDay(t5), 0, 0, 0, 0, false); if (!H._isInt(t5)) H.throwExpression(H.argumentErrorValue(t5)); t6 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t6), H.Primitives_getMonth(t6), H.Primitives_getDay(t6), 0, 0, 0, 0, false); if (!H._isInt(t6)) H.throwExpression(H.argumentErrorValue(t6)); return new Q.CalendarDatePicker(new P.DateTime(t2, false), new P.DateTime(t4, false), new P.DateTime(t5, false), new P.DateTime(t6, false), t1.get$_handleDateChanged(), t3, t7, t1._calendarPickerKey); }, $signature: 1948 }; K._DatePickerDialogState_build_inputDatePicker.prototype = { call$0: function() { var _null = null, t1 = this.$this, t2 = t1._autoValidate._restoration_properties$_value, t3 = this.orientation === C.Orientation_0 ? 98 : 108, t4 = $.$get$_DatePickerDialogState__formShortcutMap(), t5 = t1.get$_selectedDate()._restoration_properties$_value, t6 = t1._widget, t7 = t6.firstDate, t8 = t6.lastDate, t9 = t1.get$_handleDateChanged(), t10 = t6.selectableDayPredicate, t11 = t6.errorFormatText, t12 = t6.errorInvalidText, t13 = t6.fieldHintText; t6 = t6.fieldLabelText; if (t5 != null) { t5 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t5), H.Primitives_getMonth(t5), H.Primitives_getDay(t5), 0, 0, 0, 0, false); if (!H._isInt(t5)) H.throwExpression(H.argumentErrorValue(t5)); t5 = new P.DateTime(t5, false); } else t5 = _null; t7 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t7), H.Primitives_getMonth(t7), H.Primitives_getDay(t7), 0, 0, 0, 0, false); if (!H._isInt(t7)) H.throwExpression(H.argumentErrorValue(t7)); t8 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t8), H.Primitives_getMonth(t8), H.Primitives_getDay(t8), 0, 0, 0, 0, false); if (!H._isInt(t8)) H.throwExpression(H.argumentErrorValue(t8)); return A.Form$(t2, M.Container$(_null, new X.Shortcuts(t4, T.Column$(H.setRuntimeTypeInfo([C.Spacer_null, new U.InputDatePickerFormField(t5, new P.DateTime(t7, false), new P.DateTime(t8, false), t9, t9, t10, t11, t12, t13, t6, true, _null), C.Spacer_null], type$.JSArray_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null), C.Clip_0, _null, _null, _null, _null, t3, _null, _null, C.EdgeInsets_24_0_24_0, _null, _null, _null), t1._formKey); }, $signature: 1949 }; K._DatePickerDialogState_build_closure.prototype = { call$1: function(context) { var t1, _this = this, _null = null; switch (_this.orientation) { case C.Orientation_0: return T.Column$(H.setRuntimeTypeInfo([_this.header, T.Expanded$(_this._box_0.picker, 1), _this.actions], type$.JSArray_Widget), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); case C.Orientation_1: t1 = type$.JSArray_Widget; return T.Row$(H.setRuntimeTypeInfo([_this.header, new T.Flexible(1, C.FlexFit_1, T.Column$(H.setRuntimeTypeInfo([T.Expanded$(_this._box_0.picker, 1), _this.actions], t1), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null)], t1), C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_0, _null); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 1950 }; K._RestorableDatePickerEntryMode.prototype = { createDefaultValue$0: function() { return this._date_picker0$_defaultValue; }, didUpdateValue$1: function(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1: function(data) { data.toString; return C.List_NI2[H._asIntS(data)]; }, toPrimitives$0: function() { return this._restoration_properties$_value.index; } }; K._DatePickerHeader.prototype = { build$1: function(_, context) { var t2, t3, title, _this = this, _null = null, theme = K.Theme_of(context), colorScheme = theme.colorScheme, textTheme = theme.textTheme, isDark = colorScheme.brightness === C.Brightness_0, primarySurfaceColor = isDark ? colorScheme.surface : colorScheme.primary, onPrimarySurfaceColor = isDark ? colorScheme.onSurface : colorScheme.onPrimary, t1 = textTheme.overline, helpStyle = t1 == null ? _null : t1.copyWith$1$color(onPrimarySurfaceColor), help = L.Text$(_this.helpText, _null, 1, C.TextOverflow_2, _null, _null, helpStyle, _null, _null, _null); t1 = _this.titleText; t2 = _this.orientation; t3 = t2 === C.Orientation_0 ? 1 : 2; title = L.Text$(t1, _null, t3, C.TextOverflow_2, t1, _null, _this.titleStyle, _null, _null, _null); switch (t2) { case C.Orientation_0: t1 = type$.JSArray_Widget; t2 = H.setRuntimeTypeInfo([T.Expanded$(title, 1)], t1); t3 = _this.entryModeButton; if (t3 != null) t2.push(t3); return T.SizedBox$(M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsetsDirectional_24_0_12_0, T.Column$(H.setRuntimeTypeInfo([C.SizedBox_null_16_null_null, help, C.Flexible_alm, T.Row$(t2, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t1), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), C.Clip_0, primarySurfaceColor, 0, _null, _null, _null, _null, C.MaterialType_0), 120, _null); case C.Orientation_1: t1 = H.setRuntimeTypeInfo([C.SizedBox_null_16_null_null, new T.Padding(C.EdgeInsets_16_0_16_0, help, _null), T.SizedBox$(_null, _this.isShort ? 16 : 56, _null), T.Expanded$(new T.Padding(C.EdgeInsets_16_0_16_0, title, _null), 1)], type$.JSArray_Widget); t2 = _this.entryModeButton; if (t2 != null) t1.push(new T.Padding(C.EdgeInsets_4_0_4_0, t2, _null)); return T.SizedBox$(M.Material$(C.Duration_200000, true, _null, T.Column$(t1, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, primarySurfaceColor, 0, _null, _null, _null, _null, C.MaterialType_0), _null, 152); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; K.__DatePickerDialogState_State_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; K.__DatePickerDialogState_State_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new K.__DatePickerDialogState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; L._DesktopTextSelectionControls.prototype = { getHandleSize$1: function(textLineHeight) { return C.Size_0_0; }, buildHandle$3: function(context, type, textLineHeight) { return C.SizedBox_0_0_null_null; }, getHandleAnchor$2: function(type, textLineHeight) { return C.Offset_0_0; } }; E.Dialog.prototype = { build$1: function(_, context) { var t3, t4, _this = this, _null = null, dialogTheme = K.Theme_of(context).dialogTheme, t1 = type$.MediaQuery, t2 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data, effectivePadding = t2.viewInsets.$add(0, _this.insetPadding); t2 = _this.backgroundColor; if (t2 == null) t2 = dialogTheme.backgroundColor; if (t2 == null) t2 = K.Theme_of(context).dialogBackgroundColor; t3 = dialogTheme.elevation; if (t3 == null) t3 = 24; t4 = _this.shape; if (t4 == null) t4 = dialogTheme.shape; if (t4 == null) t4 = C.RoundedRectangleBorder_a510; t4 = T.Center$(new T.ConstrainedBox(C.BoxConstraints_mlX, M.Material$(C.Duration_200000, true, _null, _this.child, _this.clipBehavior, t2, t3, _null, _null, t4, _null, C.MaterialType_1), _null), _null, _null); return new G.AnimatedPadding(effectivePadding, new F.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(t1).data.removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop(true, true, true, true), t4, _null), C.C__DecelerateCurve, C.Duration_100000, _null, _null); } }; E.AlertDialog.prototype = { build$1: function(_, context) { var t1, paddingScaleFactor, t2, t3, t4, t5, t6, titleWidget, effectiveContentPadding, contentWidget, actionsWidget, dialogChild, _this = this, _null = null, theme = K.Theme_of(context), dialogTheme = K.Theme_of(context).dialogTheme, label = _this.semanticLabel; switch (theme.platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: if (label == null) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; label = t1.get$alertDialogLabel(); } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } paddingScaleFactor = E._paddingScaleFactor(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor); T.Directionality_maybeOf(context); t1 = _this.title; t2 = t1 == null; t3 = !t2; if (t3) { t4 = _this.content == null ? 20 : 0; t5 = 24 * paddingScaleFactor; t6 = dialogTheme.titleTextStyle; if (t6 == null) { t6 = theme.textTheme.headline6; t6.toString; } titleWidget = new T.Padding(new V.EdgeInsets(t5, t5, t5, t4), L.DefaultTextStyle$(new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label == 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, t1, _null), _null, _null, C.TextOverflow_0, true, t6, _null, _null, C.TextWidthBasis_0), _null); } else titleWidget = _null; t1 = _this.content; t4 = t1 != null; if (t4) { effectiveContentPadding = _this.contentPadding; t5 = effectiveContentPadding.top; t2 = t2 ? t5 * paddingScaleFactor : t5; t5 = dialogTheme.contentTextStyle; if (t5 == null) { t5 = theme.textTheme.subtitle1; t5.toString; } contentWidget = new T.Padding(new V.EdgeInsets(effectiveContentPadding.left * paddingScaleFactor, t2, effectiveContentPadding.right * paddingScaleFactor, effectiveContentPadding.bottom), L.DefaultTextStyle$(new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t1, _null), _null, _null, C.TextOverflow_0, true, t5, _null, _null, C.TextWidthBasis_0), _null); } else contentWidget = _null; actionsWidget = new T.Padding(_this.actionsPadding, M.Container$(C.AlignmentDirectional_1_0, E.OverflowBar$(_this.actions, C.OverflowBarAlignment_1, C.VerticalDirection_1, 0, 8), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(8, 8, 8, 8), _null, _null, _null), _null); t1 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); if (t3) { titleWidget.toString; t1.push(titleWidget); } if (t4) { contentWidget.toString; t1.push(new T.Flexible(1, C.FlexFit_1, contentWidget, _null)); } t1.push(actionsWidget); dialogChild = T.IntrinsicWidth$(T.Column$(t1, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null); if (label != null) dialogChild = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _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, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, dialogChild, _null); return E.Dialog$(_this.backgroundColor, dialogChild, C.Clip_0, _null, C.EdgeInsets_40_24_40_24, _null); } }; E.SimpleDialog.prototype = { build$1: function(_, context) { var label, t1, paddingScaleFactor, contentWidget, dialogChild, _null = null, theme = K.Theme_of(context); switch (theme.platform) { case C.TargetPlatform_4: case C.TargetPlatform_2: label = _null; break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; label = t1.get$dialogLabel(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } paddingScaleFactor = E._paddingScaleFactor(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor); T.Directionality_maybeOf(context); t1 = 0 * paddingScaleFactor; contentWidget = new T.Flexible(1, C.FlexFit_1, E.SingleChildScrollView$(T.ListBody$(this.children, C.Axis_1), _null, C.DragStartBehavior_1, new V.EdgeInsets(t1, 12 * paddingScaleFactor, t1, 16 * paddingScaleFactor), _null, false, C.Axis_1), _null); t1 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); t1.push(contentWidget); dialogChild = T.IntrinsicWidth$(new T.ConstrainedBox(C.BoxConstraints_mlX, T.Column$(t1, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null), 56); if (label != null) dialogChild = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _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, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, dialogChild, _null); return E.Dialog$(_null, dialogChild, C.Clip_0, _null, C.EdgeInsets_40_24_40_24, _null); } }; E.DialogRoute.prototype = {}; E.DialogRoute_closure.prototype = { call$3: function(buildContext, animation, secondaryAnimation) { var dialog = new M._CaptureAll(this.themes._themes, new T.Builder(this.builder, null), null); dialog = Q.SafeArea$(true, dialog, C.EdgeInsets_0_0_0_0, true); return dialog; }, "call*": "call$3", $requiredArgCount: 3, $signature: 1975 }; Y.DialogTheme.prototype = { get$hashCode: function(_) { return J.get$hashCode$(this.shape); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof Y.DialogTheme && J.$eq$(other.backgroundColor, _this.backgroundColor) && other.elevation == _this.elevation && J.$eq$(other.shape, _this.shape) && J.$eq$(other.titleTextStyle, _this.titleTextStyle) && J.$eq$(other.contentTextStyle, _this.contentTextStyle); } }; Y._DialogTheme_Object_Diagnosticable.prototype = {}; Z.Divider.prototype = { build$1: function(_, context) { var thickness, indent, endIndent, _null = null, dividerTheme = G.DividerTheme_of(context), t1 = this.height, height = t1 == null ? dividerTheme.space : t1; if (height == null) height = 16; t1 = this.thickness; thickness = t1 == null ? dividerTheme.thickness : t1; if (thickness == null) thickness = 0; indent = dividerTheme.indent; if (indent == null) indent = 0; endIndent = dividerTheme.endIndent; if (endIndent == null) endIndent = 0; return T.SizedBox$(T.Center$(M.Container$(_null, _null, C.Clip_0, _null, _null, new S.BoxDecoration(_null, _null, new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, Z.Divider_createBorderSide(context, this.color, thickness), C.BorderSide_m7u), _null, _null, _null, C.BoxShape_0), _null, thickness, _null, new V.EdgeInsetsDirectional(indent, 0, endIndent, 0), _null, _null, _null, _null), _null, _null), height, _null); } }; G.DividerThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.space, _this.thickness, _this.indent, _this.endIndent, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof G.DividerThemeData && J.$eq$(other.color, _this.color) && other.space == _this.space && other.thickness == _this.thickness && other.indent == _this.indent && other.endIndent == _this.endIndent; } }; G._DividerThemeData_Object_Diagnosticable.prototype = {}; Z.DrawerAlignment.prototype = { toString$0: function(_) { return this._drawer$_name; } }; Z.Drawer.prototype = { build$1: function(_, context) { var label, t1, _null = null; switch (K.Theme_of(context).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: label = _null; break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; label = t1.get$drawerLabel(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = M.Material$(C.Duration_200000, true, _null, this.child, C.Clip_0, _null, 16, _null, _null, _null, _null, C.MaterialType_0); return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, label, _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, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, new T.ConstrainedBox(C.BoxConstraints_0, t1, _null), _null); } }; Z.DrawerController.prototype = { createState$0: function() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new Z.DrawerControllerState(O.FocusScopeNode$(true, _null, false), new N.LabeledGlobalKey(_null, t1), new N.LabeledGlobalKey(_null, t1), _null, C._StateLifecycle_0); } }; Z.DrawerControllerState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); _this.__DrawerControllerState__scrimColorTween = _this._buildScrimColorTween$0(); _this.__DrawerControllerState__controller = G.AnimationController$(null, C.Duration_246000, 0, null, 1, _this._widget.isDrawerOpen ? 1 : 0, _this); t1 = _this.get$_drawer$_controller(); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_animationChanged()); t1.addStatusListener$1(_this.get$_animationStatusChanged()); }, dispose$0: function(_) { var t1 = this._historyEntry; if (t1 != null) t1._routes$_owner.removeLocalHistoryEntry$1(t1); this.get$_drawer$_controller().dispose$0(0); this.super$_DrawerControllerState_State_SingleTickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (t1.isDrawerOpen != oldWidget.isDrawerOpen) switch (_this.get$_drawer$_controller().get$_status()) { case C.AnimationStatus_3: case C.AnimationStatus_0: t1 = _this.get$_drawer$_controller(); t1.set$value(0, _this._widget.isDrawerOpen ? 1 : 0); break; default: break; } }, _animationChanged$0: function() { this.setState$1(new Z.DrawerControllerState__animationChanged_closure()); }, _ensureHistoryEntry$0: function() { var t1, route, _this = this; if (_this._historyEntry == null) { t1 = _this._framework$_element; t1.toString; route = T.ModalRoute_of(t1, type$.nullable_Object); if (route != null) { t1 = new T.LocalHistoryEntry(_this.get$_handleHistoryEntryRemoved()); _this._historyEntry = t1; route.addLocalHistoryEntry$1(t1); t1 = _this._framework$_element; t1.toString; L.FocusScope_of(t1).setFirstFocus$1(_this._focusScopeNode); } } }, _animationStatusChanged$1: function($status) { var t1; switch ($status) { case C.AnimationStatus_1: this._ensureHistoryEntry$0(); break; case C.AnimationStatus_2: t1 = this._historyEntry; if (t1 != null) t1._routes$_owner.removeLocalHistoryEntry$1(t1); this._historyEntry = null; break; case C.AnimationStatus_0: break; case C.AnimationStatus_3: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _handleHistoryEntryRemoved$0: function() { this._historyEntry = null; this.close$0(0); }, get$_drawer$_controller: function() { var t1 = this.__DrawerControllerState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, _handleDragDown$1: function(details) { this.get$_drawer$_controller().stop$0(0); this._ensureHistoryEntry$0(); }, _handleDragCancel$0: function() { var _this = this, t1 = _this.get$_drawer$_controller(); if (t1.get$status(t1) !== C.AnimationStatus_0) { t1 = _this.get$_drawer$_controller()._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = true; if (t1) return; if (_this.get$_drawer$_controller().get$_animation_controller$_value() < 0.5) _this.close$0(0); else _this.open$0(0); }, get$_drawer$_width: function(_) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this._drawerKey); t1 = t1 == null ? null : t1.get$renderObject(); type$.nullable_RenderBox._as(t1); if (t1 != null) return t1._box$_size._dx; return 304; }, _move$1: function(details) { var delta, opened, _this = this, _s80_ = string$.x60null_c, t1 = details.primaryDelta; t1.toString; delta = t1 / _this.get$_drawer$_width(_this); switch (_this._widget.alignment) { case C.DrawerAlignment_0: break; case C.DrawerAlignment_1: delta = -delta; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: t1 = _this.get$_drawer$_controller(); t1.set$value(0, t1.get$_animation_controller$_value() - delta); break; case C.TextDirection_1: t1 = _this.get$_drawer$_controller(); t1.set$value(0, t1.get$_animation_controller$_value() + delta); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } opened = _this.get$_drawer$_controller().get$_animation_controller$_value() > 0.5; if (opened !== _this._previouslyOpened) { _this._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.drawerCallback.call$1(opened); _this._previouslyOpened = opened; }, _settle$1: function(details) { var visualVelocity, _this = this, _s80_ = string$.x60null_c, t1 = _this.get$_drawer$_controller(); if (t1.get$status(t1) === C.AnimationStatus_0) return; t1 = details.velocity.pixelsPerSecond._dx; if (Math.abs(t1) >= 365) { visualVelocity = t1 / _this.get$_drawer$_width(_this); switch (_this._widget.alignment) { case C.DrawerAlignment_0: break; case C.DrawerAlignment_1: visualVelocity = -visualVelocity; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: _this.get$_drawer$_controller().fling$1$velocity(-visualVelocity); _this._widget.drawerCallback.call$1(visualVelocity < 0); break; case C.TextDirection_1: _this.get$_drawer$_controller().fling$1$velocity(visualVelocity); _this._widget.drawerCallback.call$1(visualVelocity > 0); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } else if (_this.get$_drawer$_controller().get$_animation_controller$_value() < 0.5) _this.close$0(0); else _this.open$0(0); }, open$0: function(_) { this.get$_drawer$_controller().fling$1$velocity(1); this._widget.drawerCallback.call$1(true); }, close$0: function(_) { this.get$_drawer$_controller().fling$1$velocity(-1); this._widget.drawerCallback.call$1(false); }, _buildScrimColorTween$0: function() { this._widget.toString; return new R.ColorTween(C.Color_0, C.Color_2315255808); }, get$_drawerOuterAlignment: function() { switch (this._widget.alignment) { case C.DrawerAlignment_0: return C.AlignmentDirectional_m1_0; case C.DrawerAlignment_1: return C.AlignmentDirectional_1_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_drawerInnerAlignment: function() { switch (this._widget.alignment) { case C.DrawerAlignment_0: return C.AlignmentDirectional_1_0; case C.DrawerAlignment_1: return C.AlignmentDirectional_m1_0; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _drawer$_buildDrawer$1: function(context) { var dragAreaWidth, t2, platformHasBackButton, t3, t4, _this = this, _null = null, _s80_ = string$.x60null_c, drawerIsStart = _this._widget.alignment === C.DrawerAlignment_0, padding = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; _this._widget.toString; switch (t1.textDirection) { case C.TextDirection_1: dragAreaWidth = 20 + (drawerIsStart ? padding.left : padding.right); break; case C.TextDirection_0: dragAreaWidth = 20 + (drawerIsStart ? padding.right : padding.left); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (_this.get$_drawer$_controller().get$_status() === C.AnimationStatus_0) { _this._widget.toString; t1 = _this.get$_drawerOuterAlignment(); t2 = _this._widget; t2 = t2.dragStartBehavior; return new T.Align(t1, _null, _null, D.GestureDetector$(C.HitTestBehavior_2, M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, dragAreaWidth), t2, true, _this._drawer$_gestureDetectorKey, _null, _null, _null, _this.get$_settle(), _null, _this.get$_move(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); } else { switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: platformHasBackButton = true; break; case C.TargetPlatform_2: case C.TargetPlatform_4: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: platformHasBackButton = false; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._widget.dragStartBehavior; t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t2 = t2.get$modalBarrierDismissLabel(); t3 = _this.__DrawerControllerState__scrimColorTween; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_scrimColorTween")); t4 = _this.get$_drawer$_controller(); t3.toString; t4 = M.Container$(_null, _null, C.Clip_0, t3.transform$1(0, t4.get$value(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return D.GestureDetector$(_null, new T.RepaintBoundary(T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([T.BlockSemantics$(new T.ExcludeSemantics(platformHasBackButton, D.GestureDetector$(_null, new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new T.MouseRegion(_null, _null, _null, C.C__DeferringMouseCursor, true, t4, _null), _null), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$close(_this), _null, _null, _null, _null, _null, _null), _null)), new T.Align(_this.get$_drawerOuterAlignment(), _null, _null, new T.Align(_this.get$_drawerInnerAlignment(), _this.get$_drawer$_controller().get$_animation_controller$_value(), _null, new T.RepaintBoundary(L.FocusScope$(false, _this._widget.child, _this._drawerKey, _this._focusScopeNode), _null), _null), _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, _null, _null), _null), t1, true, _this._drawer$_gestureDetectorKey, _null, _this.get$_handleDragCancel(), _this.get$_handleDragDown(), _this.get$_settle(), _null, _this.get$_move(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }, build$1: function(_, context) { var _null = null; return Q.ListTileTheme$(this._drawer$_buildDrawer$1(context), _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.ListTileStyle_1, _null, _null); } }; Z.DrawerControllerState__animationChanged_closure.prototype = { call$0: function() { }, $signature: 0 }; Z._DrawerControllerState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; K._DropdownMenuPainter.prototype = { paint$2: function(canvas, size) { var _null = null, selectedItemOffset = this.getSelectedItemOffset.call$0(), t1 = size._dy, t2 = J.clamp$2$n(selectedItemOffset, 0, Math.max(t1 - 48, 0)), t3 = type$.Tween_double, t4 = C.JSNumber_methods.clamp$2(t2 + 48, Math.min(48, t1), t1), t5 = this.resize; t2 = new R.Tween(t2, 0, t3).transform$1(0, t5.get$value(t5)); this._dropdown$_painter.paint$3(canvas, new P.Offset(0, t2), new M.ImageConfiguration(_null, _null, _null, _null, new P.Size(size._dx - 0, new R.Tween(t4, t1, t3).transform$1(0, t5.get$value(t5)) - t2), _null)); }, shouldRepaint$1: function(oldPainter) { var _this = this; return !J.$eq$(oldPainter.color, _this.color) || oldPainter.elevation !== _this.elevation || oldPainter.selectedIndex !== _this.selectedIndex || oldPainter.resize != _this.resize; } }; K._DropdownMenuItemButton.prototype = { createState$0: function() { return new K._DropdownMenuItemButtonState(C._StateLifecycle_0, this.$ti._eval$1("_DropdownMenuItemButtonState<1>")); } }; K._DropdownMenuItemButtonState.prototype = { _dropdown$_handleFocusChange$1: function(focused) { var inTraditionalMode, menuLimits, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch (t1 == null ? O.FocusManager__defaultModeForPlatform() : t1) { case C.FocusHighlightMode_0: inTraditionalMode = false; break; case C.FocusHighlightMode_1: inTraditionalMode = true; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (focused && inTraditionalMode) { t1 = this._widget; menuLimits = t1.route.getMenuLimits$3(t1.buttonRect, t1.constraints.maxHeight, t1.itemIndex); this._widget.route.scrollController.animateTo$3$curve$duration(menuLimits.scrollOffset, C.Cubic_xDo, C.Duration_100000); } }, _handleOnTap$0: function() { var t2, t1 = this._widget; t1 = t1.route.items[t1.itemIndex].item; t1.toString; t2 = this._framework$_element; t2.toString; K.Navigator_of(t2, false).pop$1(0, new K._DropdownRouteResult(t1.value, this.$ti._eval$1("_DropdownRouteResult<1>"))); }, build$1: function(_, context) { var opacity, start, end, t3, child, _this = this, _null = null, t1 = _this._widget, t2 = t1.route, unit = 0.5 / (t2.items.length + 1.5); t1 = t1.itemIndex; if (t1 === t2.selectedIndex) { t1 = t2._animationProxy; t1.toString; opacity = S.CurvedAnimation$(C.Threshold_0, t1, _null); } else { start = C.JSNumber_methods.clamp$2(0.5 + (t1 + 1) * unit, 0, 1); end = C.JSNumber_methods.clamp$2(start + 1.5 * unit, 0, 1); t1 = _this._widget.route._animationProxy; t1.toString; opacity = S.CurvedAnimation$(new Z.Interval(start, end, C.C__Linear), t1, _null); } t1 = _this._widget; t2 = t1.itemIndex; t3 = t1.route; t1 = t1.padding; child = K.FadeTransition$(false, R.InkWell$(t2 === t3.selectedIndex, _null, true, M.Container$(_null, t3.items[t2], C.Clip_0, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _this.get$_dropdown$_handleFocusChange(), _null, _null, _null, _this.get$_handleOnTap(), _null, _null, _null, _null, _null), opacity); t1 = $.$get$_DropdownMenuItemButtonState__webShortcuts(); return new X.Shortcuts(t1, child, _null, _null); } }; K._DropdownMenu.prototype = { createState$0: function() { return new K._DropdownMenuState(C._StateLifecycle_0, this.$ti._eval$1("_DropdownMenuState<1>")); } }; K._DropdownMenuState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.route._animationProxy; t1.toString; _this.___DropdownMenuState__fadeOpacity = S.CurvedAnimation$(C.Interval_75R2, t1, C.Interval_75R3); t1 = _this._widget.route._animationProxy; t1.toString; _this.___DropdownMenuState__resize = S.CurvedAnimation$(C.Interval_75R4, t1, C.Threshold_0); }, build$1: function(_, context) { var route, t2, t3, t4, itemIndex, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; route = _this._widget.route; t2 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); for (t3 = route.items, t4 = _this.$ti._eval$1("_DropdownMenuItemButton<1>"), itemIndex = 0; itemIndex < t3.length; ++itemIndex) { t5 = _this._widget; t2.push(new K._DropdownMenuItemButton(t5.route, t5.padding, t5.buttonRect, t5.constraints, itemIndex, _null, t4)); } t3 = _this.___DropdownMenuState__fadeOpacity; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_fadeOpacity")); _this._widget.toString; t4 = K.Theme_of(context); t4 = t4.canvasColor; t5 = route.elevation; t6 = _this.___DropdownMenuState__resize; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("_resize")); t7 = K.BorderRadius$circular(2); t8 = C.Map_2VYR1.$index(0, t5); t1 = t1.get$popupMenuLabel(); t9 = K.ScrollConfiguration_of(context).copyWith$3$overscroll$physics$platform(false, C.ClampingScrollPhysics_null, K.Theme_of(context).platform); t10 = _this._widget.route.scrollController; t10.toString; t10 = M.Material$(C.Duration_200000, true, _null, K.ScrollConfiguration$(t9, E.PrimaryScrollController$(E.Scrollbar$(B.ListView$(t2, _null, C.EdgeInsets_0_8_0_8, _null, false, C.Axis_1, true), _null, true), t10)), C.Clip_0, _null, 0, _null, _null, _null, route.style, C.MaterialType_4); return K.FadeTransition$(false, T.CustomPaint$(new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _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, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t10, _null), _null, _null, new K._DropdownMenuPainter(t4, t5, route.selectedIndex, t6, new K._DropdownMenuState_build_closure(route), new S._BoxDecorationPainter(new S.BoxDecoration(t4, _null, _null, t7, t8, _null, C.BoxShape_0), _null), t6), C.Size_0_0), t3); } }; K._DropdownMenuState_build_closure.prototype = { call$0: function() { var t1 = this.route; return t1.getItemOffset$1(t1.selectedIndex); }, $signature: 116 }; K._DropdownMenuRouteLayout.prototype = { getConstraintsForChild$1: function(constraints) { var maxHeight = Math.max(0, constraints.maxHeight - 96), t1 = this.buttonRect, width = Math.min(H.checkNum(constraints.maxWidth), t1.right - t1.left); return new S.BoxConstraints(width, width, 0, maxHeight); }, getPositionForChild$2: function(size, childSize) { var left, t1 = this.route, t2 = this.buttonRect, menuLimits = t1.getMenuLimits$3(t2, size._dy, t1.selectedIndex); t1 = this.textDirection; t1.toString; switch (t1) { case C.TextDirection_0: left = J.clamp$2$n(t2.right, 0, size._dx) - childSize._dx; break; case C.TextDirection_1: left = J.clamp$2$n(t2.left, 0, size._dx - childSize._dx); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return new P.Offset(left, menuLimits.top); }, shouldRelayout$1: function(oldDelegate) { return !this.buttonRect.$eq(0, oldDelegate.buttonRect) || this.textDirection != oldDelegate.textDirection; } }; K._DropdownRouteResult.prototype = { $eq: function(_, other) { if (other == null) return false; return this.$ti._is(other) && J.$eq$(other.result, this.result); }, get$hashCode: function(_) { return J.get$hashCode$(this.result); } }; K._MenuLimits.prototype = {}; K._DropdownRoute.prototype = { get$transitionDuration: function(_) { return C.Duration_300000; }, get$barrierDismissible: function() { return true; }, get$barrierColor: function() { return null; }, buildPage$3: function(context, animation, secondaryAnimation) { return new A.LayoutBuilder(new K._DropdownRoute_buildPage_closure(this), null); }, getItemOffset$1: function(index) { return this.items.length !== 0 && index > 0 ? 8 + C.JSArray_methods.reduce$1(C.JSArray_methods.sublist$2(this.itemHeights, 0, index), new K._DropdownRoute_getItemOffset_closure()) : 8; }, getMenuLimits$3: function(buttonRect, availableHeight, index) { var menuHeight, menuTop0, _this = this, maxMenuHeight = availableHeight - 96, buttonTop = buttonRect.top, t1 = buttonRect.bottom, buttonBottom = Math.min(H.checkNum(t1), availableHeight), selectedItemOffset = _this.getItemOffset$1(index), topLimit = Math.min(48, H.checkNum(buttonTop)), bottomLimit = Math.max(availableHeight - 48, buttonBottom), t2 = _this.itemHeights, menuTop = buttonTop - selectedItemOffset - (t2[_this.selectedIndex] - (t1 - buttonTop)) / 2, preferredMenuHeight = C.EdgeInsets_0_8_0_8.get$_top(C.EdgeInsets_0_8_0_8) + C.EdgeInsets_0_8_0_8.get$_bottom(C.EdgeInsets_0_8_0_8); if (_this.items.length !== 0) preferredMenuHeight += C.JSArray_methods.reduce$1(t2, new K._DropdownRoute_getMenuLimits_closure()); menuHeight = Math.min(maxMenuHeight, preferredMenuHeight); menuTop0 = menuTop < topLimit ? Math.min(buttonTop, topLimit) : menuTop; menuTop = menuTop + menuHeight > bottomLimit ? Math.max(buttonBottom, bottomLimit) - menuHeight : menuTop0; return new K._MenuLimits(menuTop, menuHeight, preferredMenuHeight > maxMenuHeight ? Math.min(Math.max(0, selectedItemOffset - (buttonTop - menuTop)), preferredMenuHeight - menuHeight) : 0); }, get$barrierLabel: function() { return this.barrierLabel; } }; K._DropdownRoute_buildPage_closure.prototype = { call$2: function(context, constraints) { var t1 = this.$this; return new K._DropdownRoutePage(t1, constraints, t1.padding, t1.buttonRect, t1.selectedIndex, t1.capturedThemes, t1.dropdownColor, null, t1.$ti._eval$1("_DropdownRoutePage<1>")); }, $signature: function() { return this.$this.$ti._eval$1("_DropdownRoutePage<1>(BuildContext,BoxConstraints)"); } }; K._DropdownRoute_getItemOffset_closure.prototype = { call$2: function(total, height) { return total + height; }, $signature: 293 }; K._DropdownRoute_getMenuLimits_closure.prototype = { call$2: function(total, height) { return total + height; }, $signature: 293 }; K._DropdownRoutePage.prototype = { build$1: function(_, context) { var _this = this, t1 = _this.route; if (t1.scrollController == null) t1.scrollController = F.ScrollController$(null, t1.getMenuLimits$3(_this.buttonRect, _this.constraints.maxHeight, _this.selectedIndex).scrollOffset); return F.MediaQuery_MediaQuery$removePadding(new T.Builder(new K._DropdownRoutePage_build_closure(_this, T.Directionality_maybeOf(context), new K._DropdownMenu(t1, _this.padding, _this.buttonRect, _this.constraints, _this.dropdownColor, null, _this.$ti._eval$1("_DropdownMenu<1>"))), null), context, true, true, true, true); } }; K._DropdownRoutePage_build_closure.prototype = { call$1: function(context) { var t1 = this.$this; return new T.CustomSingleChildLayout(new K._DropdownMenuRouteLayout(t1.buttonRect, t1.route, this.textDirection, t1.$ti._eval$1("_DropdownMenuRouteLayout<1>")), new M._CaptureAll(t1.capturedThemes._themes, this.menu, null), null); }, $signature: 590 }; K._MenuItem.prototype = { createRenderObject$1: function(context) { var t1 = new K._RenderMenuItem(this.onLayout, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.onLayout = this.onLayout; } }; K._RenderMenuItem.prototype = { performLayout$0: function() { this.super$RenderProxyBoxMixin$performLayout(); var t1 = this._box$_size; t1.toString; this.onLayout.call$1(t1); } }; K._DropdownMenuItemContainer.prototype = { build$1: function(_, context) { var _null = null; return M.Container$(C.AlignmentDirectional_m1_0, this.child, C.Clip_0, _null, C.BoxConstraints_mlX2, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; K.DropdownMenuItem.prototype = { get$value: function(receiver) { return this.value; } }; K.DropdownButtonHideUnderline.prototype = { updateShouldNotify$1: function(oldWidget) { return false; } }; K.DropdownButton.prototype = { createState$0: function() { return new K._DropdownButtonState(C._StateLifecycle_0, this.$ti._eval$1("_DropdownButtonState<1>")); }, get$value: function(receiver) { return this.value; } }; K._DropdownButtonState.prototype = { get$focusNode: function(_) { var t1; this._widget.toString; t1 = this._dropdown$_internalNode; return t1; }, initState$0: function() { var t1, t2, focusManager, _this = this; _this.super$State$initState(); _this._updateSelectedIndex$0(); t1 = _this._widget; t1.toString; if (_this._dropdown$_internalNode == null) _this._dropdown$_internalNode = O.FocusNode$(true, t1.get$runtimeType(t1).toString$0(0), true, null, false); t1 = type$.JSArray_of_void_Function_Action_Intent; t2 = type$.ObserverList_of_void_Function_Action_Intent; _this.___DropdownButtonState__actionMap = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_ActivateIntent_OT9, new U.CallbackAction(new K._DropdownButtonState_initState_closure(_this), new R.ObserverList(H.setRuntimeTypeInfo([], t1), t2), type$.CallbackAction_ActivateIntent), C.Type_ButtonActivateIntent_6Ij, new U.CallbackAction(new K._DropdownButtonState_initState_closure0(_this), new R.ObserverList(H.setRuntimeTypeInfo([], t1), t2), type$.CallbackAction_ButtonActivateIntent)], type$.Type, type$.Action_Intent); t2 = _this.get$focusNode(_this).ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_dropdown$_handleFocusChanged()), false); focusManager = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager; t2 = focusManager._highlightMode; _this.___DropdownButtonState__focusHighlightMode = t2 == null ? O.FocusManager__defaultModeForPlatform() : t2; focusManager._focus_manager$_listeners.add$1(0, _this.get$_dropdown$_handleFocusHighlightModeChange()); }, dispose$0: function(_) { var t1, _this = this; C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._removeDropdownRoute$0(); $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.remove$1(0, _this.get$_dropdown$_handleFocusHighlightModeChange()); _this.get$focusNode(_this).removeListener$1(0, _this.get$_dropdown$_handleFocusChanged()); t1 = _this._dropdown$_internalNode; if (t1 != null) t1.dispose$0(0); _this.super$State$dispose(0); }, _removeDropdownRoute$0: function() { var t2, t1 = this._dropdownRoute; if (t1 != null) if (t1.get$isActive()) { t2 = t1._navigator$_navigator; if (t2 != null) t2.removeRoute$1(t1); } this._lastOrientation = this._dropdownRoute = null; }, _dropdown$_handleFocusChanged$0: function() { var _this = this; if (_this._dropdown$_hasPrimaryFocus !== _this.get$focusNode(_this).get$hasPrimaryFocus()) _this.setState$1(new K._DropdownButtonState__handleFocusChanged_closure(_this)); }, _dropdown$_handleFocusHighlightModeChange$1: function(mode) { if (this._framework$_element == null) return; this.setState$1(new K._DropdownButtonState__handleFocusHighlightModeChange_closure(this, mode)); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; this._updateSelectedIndex$0(); }, _updateSelectedIndex$0: function() { var itemIndex, _this = this, t1 = _this._widget; if (!J.get$isEmpty$asx(t1.items)) { t1 = _this._widget; if (t1.value == null) { t1 = J.where$1$ax(t1.items, new K._DropdownButtonState__updateSelectedIndex_closure(_this)); t1 = !t1.get$iterator(t1).moveNext$0(); } else t1 = false; } else t1 = true; if (t1) { _this._selectedIndex = null; return; } for (itemIndex = 0; itemIndex < J.get$length$asx(_this._widget.items); ++itemIndex) if (J.$eq$(J.$index$asx(_this._widget.items, itemIndex).value, _this._widget.value)) { _this._selectedIndex = itemIndex; return; } }, get$_dropdown$_textStyle: function() { var t1 = this._widget.style; if (t1 == null) { t1 = this._framework$_element; t1.toString; t1 = K.Theme_of(t1).textTheme.subtitle1; } return t1; }, _dropdown$_handleTap$0: function() { var textDirection, t2, t3, index, t4, $navigator, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; textDirection = T.Directionality_maybeOf(t1); t1 = _this._framework$_element; t1.toString; M.ButtonTheme_of(t1).toString; t1 = _this.$ti; t2 = H.setRuntimeTypeInfo([], t1._eval$1("JSArray<_MenuItem<1>>")); for (t3 = t1._eval$1("_MenuItem<1>"), index = 0; index < J.get$length$asx(_this._widget.items); ++index) { t4 = J.$index$asx(_this._widget.items, index); t2.push(new K._MenuItem(new K._DropdownButtonState__handleTap_closure(_this, index), t4, t4, _null, t3)); } t3 = _this._framework$_element; t3.toString; $navigator = K.Navigator_of(t3, false); t3 = t3.get$renderObject(); t3.toString; type$.RenderBox._as(t3); t4 = T.MatrixUtils_transformPoint(t3.getTransformTo$1(0, $navigator._framework$_element.get$renderObject()), C.Offset_0_0); t3 = t3._box$_size; t5 = t4._dx; t4 = t4._dy; t6 = t3._dx; t3 = t3._dy; t3 = C.EdgeInsetsDirectional_16_0_24_0.resolve$1(textDirection).inflateRect$1(new P.Rect(t5, t4, t5 + t6, t4 + t3)); t4 = _this._selectedIndex; if (t4 == null) t4 = 0; t5 = _this._widget.elevation; t6 = _this._framework$_element; t6.toString; t7 = $navigator._framework$_element; t7.toString; t7 = M.InheritedTheme_capture(t6, t7); t6 = _this.get$_dropdown$_textStyle(); t6.toString; t8 = _this._framework$_element; t8.toString; t8 = L.Localizations_of(t8, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t8.toString; t8 = t8.get$modalBarrierDismissLabel(); t9 = _this._widget; t10 = t9.itemHeight; t11 = t9.dropdownColor; t9 = t9.menuMaxHeight; t12 = t2.length; if (t10 == null) t10 = 48; t10 = P.List_List$filled(t12, t10, false, type$.double); t12 = H.setRuntimeTypeInfo([], type$.JSArray_of_Future_bool_Function); t13 = $.Zone__current; t14 = t1._eval$1("_Future<_DropdownRouteResult<1>?>"); t15 = t1._eval$1("_AsyncCompleter<_DropdownRouteResult<1>?>"); t16 = S.ProxyAnimation$(C.C__AlwaysDismissedAnimation); t17 = H.setRuntimeTypeInfo([], type$.JSArray_OverlayEntry); t18 = $.Zone__current; t1 = new K._DropdownRoute(t2, C.EdgeInsets_16_0_16_0, t3, t4, t5, t7, t6, t11, t9, t10, t8, _null, t12, new N.LabeledGlobalKey(_null, t1._eval$1("LabeledGlobalKey<_ModalScopeState<_DropdownRouteResult<1>>>")), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new S.PageStorageBucket(), _null, new P._AsyncCompleter(new P._Future(t13, t14), t15), t16, t17, C.RouteSettings_null_null, new B.ValueNotifier(_null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_String), new P._AsyncCompleter(new P._Future(t18, t14), t15), t1._eval$1("_DropdownRoute<1>")); _this._dropdownRoute = t1; $navigator.push$1(t1).then$1$1(0, new K._DropdownButtonState__handleTap_closure0(_this), type$.void); _this._widget.toString; }, get$_dropdown$_iconColor: function() { var t1, _this = this, _s80_ = string$.x60null_c; if (_this.get$_dropdown$_enabled()) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; switch (K.Theme_of(t1).colorScheme.brightness) { case C.Brightness_1: t1 = C.Map_HFpTk.$index(0, 700); t1.toString; return t1; case C.Brightness_0: return C.Color_3019898879; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } else { _this._widget.toString; t1 = _this._framework$_element; t1.toString; switch (K.Theme_of(t1).colorScheme.brightness) { case C.Brightness_1: t1 = C.Map_HFpTk.$index(0, 400); t1.toString; return t1; case C.Brightness_0: return C.Color_452984831; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } }, get$_dropdown$_enabled: function() { var t1 = this._widget; t1 = J.get$isNotEmpty$asx(t1.items) && this._widget.onChanged != null; return t1; }, get$_showHighlight: function() { var t1 = this.___DropdownButtonState__focusHighlightMode; switch (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_focusHighlightMode")) : t1) { case C.FocusHighlightMode_0: return false; case C.FocusHighlightMode_1: return this._dropdown$_hasPrimaryFocus; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var size, t2, items, displayedHint, hintIndex, innerItemsWidget, t3, fontSize, t4, t5, t6, t7, t8, bottom, _this = this, _null = null, t1 = F.MediaQuery_maybeOf(context), result = t1 == null ? _null : t1.get$orientation(t1); if (result == null) { size = $.$get$window().get$physicalSize(); result = size._dx > size._dy ? C.Orientation_1 : C.Orientation_0; } t1 = _this._lastOrientation; if (t1 == null) { _this._lastOrientation = result; t1 = result; } if (result !== t1) { _this._removeDropdownRoute$0(); _this._lastOrientation = result; } t1 = _this._widget; t2 = t1.selectedItemBuilder; if (t2 == null) items = P.List_List$from(t1.items, true, type$.Widget); else items = P.List_List$from(t2.call$1(context), true, type$.Widget); if (_this._widget.hint == null) { if (!_this.get$_dropdown$_enabled()) _this._widget.toString; t1 = false; } else t1 = true; if (t1) { t1 = _this.get$_dropdown$_enabled(); t2 = _this._widget; if (t1) { t1 = t2.hint; t1.toString; displayedHint = t1; } else { t1 = t2.hint; t1.toString; displayedHint = t1; } if (t2.selectedItemBuilder == null) displayedHint = new K._DropdownMenuItemContainer(displayedHint, _null); hintIndex = items.length; t1 = _this.get$_dropdown$_textStyle(); t1.toString; items.push(L.DefaultTextStyle$(new T.IgnorePointer(true, false, displayedHint, _null), _null, _null, C.TextOverflow_0, true, t1.copyWith$1$color(K.Theme_of(context).hintColor), _null, _null, C.TextWidthBasis_0)); } else hintIndex = _null; M.ButtonTheme_of(context).toString; if (items.length === 0) innerItemsWidget = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t1 = _this._selectedIndex; if (t1 == null) t1 = hintIndex; if (_this._widget.isDense) t2 = items; else { t2 = H._arrayInstanceType(items)._eval$1("MappedListIterable<1,RenderObjectWidget>"); t2 = P.List_List$of(new H.MappedListIterable(items, new K._DropdownButtonState_build_closure(_this), t2), true, t2._eval$1("ListIterable.E")); } innerItemsWidget = new T.IndexedStack(t1, C.AlignmentDirectional_m1_0, _null, C.StackFit_0, C.Clip_1, t2, _null); } if (_this.get$_dropdown$_enabled()) { t1 = _this.get$_dropdown$_textStyle(); t1.toString; } else { t1 = _this.get$_dropdown$_textStyle(); t1.toString; t1 = t1.copyWith$1$color(K.Theme_of(context).disabledColor); } if (_this.get$_showHighlight()) { _this._widget.toString; t2 = K.Theme_of(context); t2 = new S.BoxDecoration(t2.focusColor, _null, _null, C.BorderRadius_tLn0, _null, _null, C.BoxShape_0); } else t2 = _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; t3 = C.EdgeInsets_0_0_0_0.resolve$1(t3.textDirection); if (_this._widget.isDense) { fontSize = _this.get$_dropdown$_textStyle().fontSize; if (fontSize == null) { t4 = _this._framework$_element; t4.toString; t4 = K.Theme_of(t4).textTheme.subtitle1.fontSize; t4.toString; fontSize = t4; } t4 = Math.max(fontSize, Math.max(_this._widget.iconSize, 24)); } else t4 = _null; t5 = type$.JSArray_Widget; t6 = H.setRuntimeTypeInfo([], t5); if (_this._widget.isExpanded) t6.push(T.Expanded$(innerItemsWidget, 1)); else t6.push(innerItemsWidget); t7 = _this.get$_dropdown$_iconColor(); t8 = _this._widget.iconSize; t6.push(Y.IconTheme$(C.Icon_MC7, new T.IconThemeData(t7, _null, t8), _null)); result = L.DefaultTextStyle$(M.Container$(_null, T.Row$(t6, C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_0, _null), C.Clip_0, _null, _null, t2, _null, t4, _null, _null, t3, _null, _null, _null), _null, _null, C.TextOverflow_0, true, t1, _null, _null, C.TextWidthBasis_0); if (context.dependOnInheritedWidgetOfExactType$1$0(type$.DropdownButtonHideUnderline) == null) { t1 = _this._widget; bottom = t1.isDense || t1.itemHeight == null ? 0 : 8; t1 = M.Container$(_null, _null, C.Clip_0, _null, _null, C.BoxDecoration_en0, _null, 1, _null, _null, _null, _null, _null, _null); result = T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([result, T.Positioned$(bottom, t1, _null, _null, 0, 0, _null, _null)], t5), C.Clip_1, C.StackFit_0, _null, _null); } t1 = _this.___DropdownButtonState__actionMap; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_actionMap")); t2 = _this.get$_dropdown$_enabled(); t3 = _this.get$focusNode(_this); _this._widget.toString; t2 = L.Focus$(false, t2, D.GestureDetector$(C.HitTestBehavior_1, result, C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_dropdown$_enabled() ? _this.get$_dropdown$_handleTap() : _null, _null, _null, _null, _null, _null, _null), _null, true, t3, true, _null, _null, _null, _null); return new T.Semantics(A.SemanticsProperties$(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, _null, _null), false, false, false, new U.Actions(t1, t2, _null), _null); } }; K._DropdownButtonState_initState_closure.prototype = { call$1: function(intent) { return this.$this._dropdown$_handleTap$0(); }, $signature: 1994 }; K._DropdownButtonState_initState_closure0.prototype = { call$1: function(intent) { return this.$this._dropdown$_handleTap$0(); }, $signature: 1995 }; K._DropdownButtonState__handleFocusChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1._dropdown$_hasPrimaryFocus = t1.get$focusNode(t1).get$hasPrimaryFocus(); }, $signature: 0 }; K._DropdownButtonState__handleFocusHighlightModeChange_closure.prototype = { call$0: function() { this.$this.___DropdownButtonState__focusHighlightMode = this.mode; }, $signature: 0 }; K._DropdownButtonState__updateSelectedIndex_closure.prototype = { call$1: function(item) { return J.$eq$(item.value, this.$this._widget.value); }, $signature: function() { return this.$this.$ti._eval$1("bool(DropdownMenuItem<1>)"); } }; K._DropdownButtonState__handleTap_closure.prototype = { call$1: function(size) { var t1 = this.$this._dropdownRoute; if (t1 == null) return; t1.itemHeights[this.index] = size._dy; }, $signature: 588 }; K._DropdownButtonState__handleTap_closure0.prototype = { call$1: function(newValue) { var t1 = this.$this; t1._removeDropdownRoute$0(); if (t1._framework$_element == null || newValue == null) return; t1 = t1._widget.onChanged; if (t1 != null) t1.call$1(newValue.result); }, $signature: function() { return this.$this.$ti._eval$1("Null(_DropdownRouteResult<1>?)"); } }; K._DropdownButtonState_build_closure.prototype = { call$1: function(item) { var t1 = this.$this._widget.itemHeight; return t1 != null ? T.SizedBox$(item, t1, null) : T.Column$(H.setRuntimeTypeInfo([item], type$.JSArray_Widget), C.CrossAxisAlignment_2, null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, $signature: 2002 }; K.DropdownButtonFormField.prototype = { createState$0: function() { return new K._DropdownButtonFormFieldState(C._StateLifecycle_0, this.$ti._eval$1("_DropdownButtonFormFieldState<1>")); } }; K.DropdownButtonFormField_closure.prototype = { call$1: function(field) { var t2, decorationArg, t3, _this = this, _null = null, t1 = _this.T; t1._eval$1("_DropdownButtonFormFieldState<0>")._as(field); t2 = _this.focusColor; decorationArg = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = field._framework$_element; t3.toString; return L.Focus$(false, false, new T.Builder(new K.DropdownButtonFormField__closure(decorationArg.applyDefaults$1(K.Theme_of(t3).inputDecorationTheme), field, field, _this.items, _this.selectedItemBuilder, _this.hint, _this.disabledHint, _this.onChanged, _this.onTap, _this.elevation, _this.style, _this.icon, _this.iconDisabledColor, _this.iconEnabledColor, _this.iconSize, _this.isDense, _this.isExpanded, _this.itemHeight, t2, _this.focusNode, _this.autofocus, _this.dropdownColor, _this.menuMaxHeight, t1), _null), _null, true, _null, true, _null, _null, _null, true); }, $signature: function() { return this.T._eval$1("Focus(FormFieldState<0>)"); } }; K.DropdownButtonFormField__closure.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.effectiveDecoration.copyWith$1$errorText(_this.field._errorText), t2 = _this.state, t3 = t2._form$_value, marker = context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusMarker), t4 = (marker == null ? _null : marker.notifier).get$hasFocus(), t5 = t2._form$_value; return L.InputDecorator$(_null, new K.DropdownButtonHideUnderline(K.DropdownButton$(_this.autofocus, _this.disabledHint, _this.dropdownColor, _this.elevation, _this.focusColor, _this.focusNode, _this.hint, _this.icon, _this.iconDisabledColor, _this.iconEnabledColor, _this.iconSize, _this.isDense, _this.isExpanded, _this.itemHeight, _this.items, _this.menuMaxHeight, t2.get$didChange(), _this.onTap, _this.selectedItemBuilder, _this.style, t5, _this.T), _null), t1, false, t3 == null, t4, false, _null, _null); }, $signature: 2003 }; K._DropdownButtonFormFieldState.prototype = { get$widget: function() { return this.$ti._eval$1("DropdownButtonFormField<1>")._as(N.State.prototype.get$widget.call(this)); }, didChange$1: function(value) { this.super$FormFieldState$didChange(value); this.$ti._eval$1("DropdownButtonFormField<1>")._as(N.State.prototype.get$widget.call(this)).onChanged.call$1(value); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this.$ti._eval$1("DropdownButtonFormField<1>"); if (oldWidget.initialValue != t1._as(N.State.prototype.get$widget.call(_this)).initialValue) _this._form$_value = t1._as(N.State.prototype.get$widget.call(_this)).initialValue; } }; K.__DropdownButtonState_State_WidgetsBindingObserver.prototype = {}; D.ElevatedButton.prototype = { defaultStyleOf$1: function(context) { var scaledPadding, t2, t3, theme = K.Theme_of(context), colorScheme = theme.colorScheme, t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; scaledPadding = K.ButtonStyleButton_scaledPadding(C.EdgeInsets_16_0_16_0, C.EdgeInsets_8_0_8_0, C.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); t1 = theme.shadowColor; t2 = theme.textTheme; t3 = theme.visualDensity; return D.ElevatedButton_styleFrom(C.Alignment_0_0, C.Duration_200000, C.SystemMouseCursor_forbidden, 2, true, C.SystemMouseCursor_click, C.Size_64_36, colorScheme.onPrimary, colorScheme.onSurface, scaledPadding, colorScheme.primary, t1, C.RoundedRectangleBorder_a510, null, C.C__InkRippleFactory, theme.materialTapTargetSize, t2.button, t3); }, themeStyleOf$1: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.ElevatedButtonTheme); t1 = K.Theme_of(context); return t1.elevatedButtonTheme.style; } }; D._ElevatedButtonDefaultBackground.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_5)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; } }; D._ElevatedButtonDefaultForeground.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_5)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.onPrimary; } }; D._ElevatedButtonDefaultOverlay.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_0)) { t1 = this.onPrimary.value; return P.Color$fromARGB(20, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } if (states.contains$1(0, C.MaterialState_1) || states.contains$1(0, C.MaterialState_2)) { t1 = this.onPrimary.value; return P.Color$fromARGB(61, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return null; } }; D._ElevatedButtonDefaultElevation.prototype = { resolve$1: function(states) { var _this = this; if (states.contains$1(0, C.MaterialState_5)) return 0; if (states.contains$1(0, C.MaterialState_0)) return _this.elevation + 2; if (states.contains$1(0, C.MaterialState_1)) return _this.elevation + 2; if (states.contains$1(0, C.MaterialState_2)) return _this.elevation + 6; return _this.elevation; } }; D._ElevatedButtonDefaultMouseCursor.prototype = { resolve$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.disabledCursor; return this.enabledCursor; } }; D.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable.prototype = {}; D.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable.prototype = {}; D.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable.prototype = {}; D.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; D.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable.prototype = {}; T.ElevatedButtonThemeData.prototype = { get$hashCode: function(_) { return J.get$hashCode$(this.style); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof T.ElevatedButtonThemeData && J.$eq$(other.style, this.style); } }; T._ElevatedButtonThemeData_Object_Diagnosticable.prototype = {}; N.ExpandIcon.prototype = { createState$0: function() { return new N._ExpandIconState(null, C._StateLifecycle_0); } }; N._ExpandIconState.prototype = { get$_expand_icon$_controller: function() { var t1 = this.___ExpandIconState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); _this.___ExpandIconState__controller = G.AnimationController$(null, C.Duration_200000, 0, null, 1, null, _this); t1 = _this.get$_expand_icon$_controller(); t2 = $.$get$_ExpandIconState__iconTurnTween(); t1.toString; type$.Animation_double._as(t1); t2.toString; _this.___ExpandIconState__iconTurns = new R._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); if (_this._widget.isExpanded) _this.get$_expand_icon$_controller().set$value(0, 3.141592653589793); }, dispose$0: function(_) { this.get$_expand_icon$_controller().dispose$0(0); this.super$__ExpandIconState_State_SingleTickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.isExpanded; if (t1 !== oldWidget.isExpanded) if (t1) _this.get$_expand_icon$_controller().forward$0(0); else _this.get$_expand_icon$_controller().reverse$0(0); }, _handlePressed$0: function() { var t1 = this._widget, t2 = t1.onPressed; if (t2 != null) t2.call$1(t1.isExpanded); }, get$_expand_icon$_iconColor: function() { this._widget.toString; var t1 = this._framework$_element; t1.toString; switch (K.Theme_of(t1).colorScheme.brightness) { case C.Brightness_1: return C.Color_2315255808; case C.Brightness_0: return C.Color_2583691263; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var onTapHint, t2, t3, t4, t5, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; onTapHint = _this._widget.isExpanded ? t1.get$expandedIconTapHint() : t1.get$collapsedIconTapHint(); t1 = _this._widget; t2 = t1.onPressed == null ? _null : onTapHint; t1 = t1.padding; t3 = _this.get$_expand_icon$_iconColor(); t4 = _this._widget.onPressed == null ? _null : _this.get$_handlePressed(); t5 = _this.___ExpandIconState__iconTurns; t1 = B.IconButton$(C.Alignment_0_0, t3, _null, true, K.RotationTransition$(C.Alignment_0_0, C.Icon_8Gl, t5 === $ ? H.throwExpression(H.LateError$fieldNI("_iconTurns")) : t5), 24, t4, t1, _null, _null); return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2 != null || false ? new A.SemanticsHintOverrides(t2, _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), false, false, false, t1, _null); } }; N.__ExpandIconState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; D._SaltedKey.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return _this.$ti._is(other) && other.salt === _this.salt && other.value === _this.value; }, get$hashCode: function(_) { return P.hashValues(H.getRuntimeType(this), this.salt, this.value, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var valueString, t1 = this.$ti, t2 = this.salt, saltString = H.createRuntimeType(t1._precomputed1) === C.Type_String_k8F ? "<'" + t2.toString$0(0) + "'>" : "<" + t2.toString$0(0) + ">"; t2 = this.value; valueString = H.createRuntimeType(t1._rest[1]) === C.Type_String_k8F ? "<'" + t2 + "'>" : "<" + t2 + ">"; return "[" + saltString + " " + valueString + "]"; }, get$value: function(receiver) { return this.value; } }; D.ExpansionPanel.prototype = { get$body: function(receiver) { return this.body; } }; D.ExpansionPanelList.prototype = { createState$0: function() { return new D._ExpansionPanelListState(C._StateLifecycle_0); } }; D._ExpansionPanelListState.prototype = { initState$0: function() { this.super$State$initState(); this._widget.toString; }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; this._currentOpenPanel = null; }, _isChildExpanded$1: function(index) { var t1 = this._widget; return t1.children[index].isExpanded; }, _expansion_panel$_handlePressed$2: function(isExpanded, index) { this._widget.expansionCallback.call$2(index, isExpanded); this._widget.toString; }, build$1: function(_, context) { var t1, t2, t3, t4, index, child, t5, headerWidget, expandIconContainer, scope, header, t6, t7, _this = this, _null = null, items = H.setRuntimeTypeInfo([], type$.JSArray_MergeableMaterialItem); for (t1 = type$.JSArray_Widget, t2 = type$._SaltedKey_BuildContext_int, t3 = type$._LocalizationsScope, t4 = type$.nullable_MaterialLocalizations, index = 0; index < _this._widget.children.length; ++index) { if (_this._isChildExpanded$1(index) && index !== 0 && !_this._isChildExpanded$1(index - 1)) items.push(new B.MaterialGap(16, new D._SaltedKey(context, index * 2 - 1, t2))); child = _this._widget.children[index]; t5 = _this._isChildExpanded$1(index); headerWidget = child.headerBuilder.call$2(context, t5); t5 = _this._isChildExpanded$1(index); child.toString; expandIconContainer = M.Container$(_null, new N.ExpandIcon(t5, new D._ExpansionPanelListState_build_closure(_this, index), C.EdgeInsets_16_16_16_16, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, C.EdgeInsetsDirectional_0_0_8_0, _null, _null, _null, _null); scope = context.dependOnInheritedWidgetOfExactType$1$0(t3); t5 = scope == null ? _null : t4._as(J.$index$asx(scope.localizationsState._typeToResources, C.Type_MaterialLocalizations_flR)); t5.toString; t5 = _this._isChildExpanded$1(index) ? t5.get$expandedIconTapHint() : t5.get$collapsedIconTapHint(); expandIconContainer = new T.Semantics(new 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, t5, _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, expandIconContainer, _null); _this._widget.toString; if (_this._isChildExpanded$1(index)) { _this._widget.toString; t5 = C.EdgeInsets_0_16_0_16; } else t5 = C.EdgeInsets_0_0_0_0; header = T.Row$(H.setRuntimeTypeInfo([new T.Expanded(1, C.FlexFit_0, G.AnimatedContainer$(new T.ConstrainedBox(C.BoxConstraints_mlX2, headerWidget, _null), _null, C.Cubic_ifx, _null, C.Duration_200000, _null, _null, t5, _null, _null), _null), expandIconContainer], t1), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t5 = index * 2; t6 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, 0, _null, _null, _null, _null, _null, _null); t7 = _this._isChildExpanded$1(index) ? C.CrossFadeState_1 : C.CrossFadeState_0; _this._widget.toString; items.push(new B.MaterialSlice(T.Column$(H.setRuntimeTypeInfo([header, new U.AnimatedCrossFade(t6, child.body, t7, C.Duration_200000, C.Interval_oqF2, C.Interval_IqE, C.Cubic_ifx, _null)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, new D._SaltedKey(context, t5, t2))); if (_this._isChildExpanded$1(index) && index !== _this._widget.children.length - 1) items.push(new B.MaterialGap(16, new D._SaltedKey(context, t5 + 1, t2))); } return new B.MergeableMaterial(items, 2, true, _null, _null); } }; D._ExpansionPanelListState_build_closure.prototype = { call$1: function(isExpanded) { return this.$this._expansion_panel$_handlePressed$2(isExpanded, this.index); }, $signature: 52 }; M.Feedback_wrapForTap_closure.prototype = { call$0: function() { M.Feedback_forTap(this.context); this.callback.call$0(); }, $signature: 0 }; Z.FlexibleSpaceBarSettings.prototype = { updateShouldNotify$1: function(oldWidget) { var _this = this; return _this.toolbarOpacity !== oldWidget.toolbarOpacity || _this.minExtent != oldWidget.minExtent || _this.maxExtent != oldWidget.maxExtent || _this.currentExtent != oldWidget.currentExtent; } }; E._DefaultHeroTag.prototype = { toString$0: function(_) { return ""; } }; E.FloatingActionButton.prototype = { build$1: function(_, context) { var t1, backgroundColor, focusColor, hoverColor, splashColor, elevation, focusElevation, hoverElevation, disabledElevation, highlightElevation, materialTapTargetSize, textStyle, shape, result, _this = this, _null = null, theme = K.Theme_of(context), floatingActionButtonTheme = theme.floatingActionButtonTheme, foregroundColor = floatingActionButtonTheme.foregroundColor; if (foregroundColor == null) foregroundColor = theme.colorScheme.onSecondary; t1 = _this.backgroundColor; backgroundColor = t1 == null ? floatingActionButtonTheme.backgroundColor : t1; if (backgroundColor == null) backgroundColor = theme.colorScheme.secondary; focusColor = floatingActionButtonTheme.focusColor; if (focusColor == null) focusColor = theme.focusColor; hoverColor = floatingActionButtonTheme.hoverColor; if (hoverColor == null) hoverColor = theme.hoverColor; splashColor = floatingActionButtonTheme.splashColor; if (splashColor == null) splashColor = theme.splashColor; elevation = floatingActionButtonTheme.elevation; if (elevation == null) elevation = 6; focusElevation = floatingActionButtonTheme.focusElevation; if (focusElevation == null) focusElevation = 6; hoverElevation = floatingActionButtonTheme.hoverElevation; if (hoverElevation == null) hoverElevation = 8; disabledElevation = floatingActionButtonTheme.disabledElevation; if (disabledElevation == null) disabledElevation = elevation; highlightElevation = floatingActionButtonTheme.highlightElevation; if (highlightElevation == null) highlightElevation = 12; materialTapTargetSize = theme.materialTapTargetSize; textStyle = theme.textTheme.button.copyWith$2$color$letterSpacing(foregroundColor, 1.2); shape = floatingActionButtonTheme.shape; if (shape == null) shape = C.CircleBorder_61T; result = Z.RawMaterialButton$(false, _this.child, C.Clip_0, _this._sizeConstraints, disabledElevation, elevation, backgroundColor, focusColor, focusElevation, _null, _null, highlightElevation, hoverColor, hoverElevation, materialTapTargetSize, _null, _this.onPressed, shape, splashColor, textStyle); t1 = _this.tooltip; if (t1 != null) result = S.Tooltip$(result, t1); result = T.Hero$(result, _null, _null, _null, _this.heroTag, false); return new T.MergeSemantics(result, _null); } }; A.FloatingActionButtonLocation.prototype = { toString$0: function(_) { return "FloatingActionButtonLocation"; } }; A.StandardFabLocation.prototype = { getOffset$1: function(scaffoldGeometry) { return new P.Offset(this.getOffsetX$2(scaffoldGeometry, 0), this.getOffsetY$2(scaffoldGeometry, 0)); } }; A.FabTopOffsetY.prototype = { getOffsetY$2: function(scaffoldGeometry, adjustment) { var t1 = scaffoldGeometry.contentTop, t2 = scaffoldGeometry.minViewPadding.top; if (t1 > t2) return t1 - scaffoldGeometry.floatingActionButtonSize._dy / 2; return t2; } }; A.FabFloatOffsetY.prototype = { getOffsetY$2: function(scaffoldGeometry, adjustment) { var contentBottom = scaffoldGeometry.contentBottom, bottomSheetHeight = scaffoldGeometry.bottomSheetSize._dy, fabHeight = scaffoldGeometry.floatingActionButtonSize._dy, snackBarHeight = scaffoldGeometry.snackBarSize._dy, fabY = contentBottom - fabHeight - Math.max(16, scaffoldGeometry.minViewPadding.bottom - (scaffoldGeometry.scaffoldSize._dy - contentBottom) + 16); if (snackBarHeight > 0) fabY = Math.min(fabY, contentBottom - snackBarHeight - fabHeight - 16); return (bottomSheetHeight > 0 ? Math.min(fabY, contentBottom - bottomSheetHeight - fabHeight / 2) : fabY) + adjustment; } }; A.FabDockedOffsetY.prototype = { getOffsetY$2: function(scaffoldGeometry, adjustment) { var safeMargin, fabY, contentBottom = scaffoldGeometry.contentBottom, t1 = scaffoldGeometry.scaffoldSize._dy, bottomViewPadding = scaffoldGeometry.minViewPadding.bottom, bottomSheetHeight = scaffoldGeometry.bottomSheetSize._dy, fabHeight = scaffoldGeometry.floatingActionButtonSize._dy, snackBarHeight = scaffoldGeometry.snackBarSize._dy, bottomMinInset = scaffoldGeometry.minInsets.bottom, t2 = fabHeight / 2; if (t1 - contentBottom > bottomMinInset + t2) safeMargin = 0; else safeMargin = bottomMinInset === 0 ? bottomViewPadding : t2 + 16; fabY = contentBottom - t2 - safeMargin; if (snackBarHeight > 0) fabY = Math.min(fabY, contentBottom - snackBarHeight - fabHeight - 16); if (bottomSheetHeight > 0) fabY = Math.min(fabY, contentBottom - bottomSheetHeight - t2); return Math.min(t1 - fabHeight - safeMargin, fabY); } }; A.FabEndOffsetX.prototype = { getOffsetX$2: function(scaffoldGeometry, adjustment) { switch (scaffoldGeometry.textDirection) { case C.TextDirection_0: return 16 + scaffoldGeometry.minInsets.left - adjustment; case C.TextDirection_1: return scaffoldGeometry.scaffoldSize._dx - 16 - scaffoldGeometry.minInsets.right - scaffoldGeometry.floatingActionButtonSize._dx + adjustment; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; A._EndTopFabLocation.prototype = { toString$0: function(_) { return "FloatingActionButtonLocation.endTop"; } }; A._EndFloatFabLocation.prototype = { toString$0: function(_) { return "FloatingActionButtonLocation.endFloat"; } }; A._EndDockedFabLocation.prototype = { toString$0: function(_) { return "FloatingActionButtonLocation.endDocked"; } }; A.FloatingActionButtonAnimator.prototype = { toString$0: function(_) { return "FloatingActionButtonAnimator"; } }; A._ScalingFabMotionAnimator.prototype = { getOffset$3$begin$end$progress: function(begin, end, progress) { if (progress < 0.5) return begin; else return end; } }; A._AnimationSwap.prototype = { get$value: function(_) { var t1, _this = this; if (_this.parent.get$_animation_controller$_value() < _this.swapThreshold) { t1 = _this.first; t1 = t1.get$value(t1); } else { t1 = _this.next; t1 = t1.get$value(t1); } return t1; } }; A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY.prototype = {}; A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY.prototype = {}; A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX.prototype = {}; A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY.prototype = {}; S.FloatingActionButtonThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.foregroundColor, _this.backgroundColor, _this.focusColor, _this.hoverColor, _this.splashColor, _this.elevation, _this.focusElevation, _this.hoverElevation, _this.disabledElevation, _this.highlightElevation, _this.shape, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof S.FloatingActionButtonThemeData && J.$eq$(other.foregroundColor, _this.foregroundColor) && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.focusColor, _this.focusColor) && J.$eq$(other.hoverColor, _this.hoverColor) && J.$eq$(other.splashColor, _this.splashColor) && other.elevation == _this.elevation && other.focusElevation == _this.focusElevation && other.hoverElevation == _this.hoverElevation && other.disabledElevation == _this.disabledElevation && other.highlightElevation == _this.highlightElevation && J.$eq$(other.shape, _this.shape); } }; S._FloatingActionButtonThemeData_Object_Diagnosticable.prototype = {}; B.IconButton.prototype = { build$1: function(_, context) { var currentColor, effectiveVisualDensity, t3, t4, result, t5, t6, t7, t8, t9, t10, _this = this, _null = null, theme = K.Theme_of(context), t1 = _this.onPressed, t2 = t1 != null; if (t2) currentColor = _this.color; else currentColor = theme.disabledColor; effectiveVisualDensity = _this.visualDensity; if (effectiveVisualDensity == null) effectiveVisualDensity = theme.visualDensity; t3 = _this.padding; t4 = _this.iconSize; result = new T.ConstrainedBox(effectiveVisualDensity.effectiveConstraints$1(C.BoxConstraints_mlX0), new T.Padding(t3, T.SizedBox$(new T.Align(_this.alignment, _null, _null, Y.IconTheme_merge(_this.icon, new T.IconThemeData(currentColor, _null, t4)), _null), t4, t4), _null), _null); t5 = _this.tooltip; if (t5 != null) result = S.Tooltip$(result, t5); t5 = theme.focusColor; t6 = theme.hoverColor; t7 = theme.highlightColor; t8 = theme.splashColor; t9 = t3.get$horizontal(); t10 = t3.get$_top(t3); t3 = t3.get$_bottom(t3); t1 = R.InkResponse$(false, _null, t2, result, false, _null, true, false, t5, _null, t7, C.BoxShape_1, t6, _null, C.SystemMouseCursor_click, _null, _null, _null, _null, _null, t1, _null, _null, _null, Math.max(35, (t4 + Math.min(t9, t10 + t3)) * 0.7), t8, _null); return new T.Semantics(A.SemanticsProperties$(true, _null, _null, _null, _null, t2, _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), false, false, false, t1, _null); } }; D.Ink.prototype = { get$_ink_decoration$_paddingIncludingDecoration: function() { var t1 = this.decoration; if (t1 == null || t1.get$padding(t1) == null) return C.EdgeInsets_0_0_0_0; t1 = t1.get$padding(t1); t1.toString; return t1; }, createState$0: function() { return new D._InkState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); } }; D._InkState.prototype = { _handleRemoved$0: function() { this._ink = null; }, deactivate$0: function() { var t1 = this._ink; if (t1 != null) t1.dispose$0(0); this.super$State$deactivate(); }, _build$1: function(context) { var t3, t4, _this = this, t1 = _this._ink, t2 = _this._widget; if (t1 == null) { t1 = t2.decoration; t2 = U.createLocalImageConfiguration(context, null); t3 = context.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t3.toString; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._boxKey).get$renderObject(); t4.toString; t4 = new D.InkDecoration(t2, t3, type$.RenderBox._as(t4), _this.get$_handleRemoved()); t4.set$decoration(0, t1); t3.addInkFeature$1(t4); _this._ink = t4; } else { t1.set$decoration(0, t2.decoration); t1 = _this._ink; t1.toString; t1.set$configuration(U.createLocalImageConfiguration(context, null)); } t1 = _this._widget.child; return t1; }, build$1: function(_, context) { var _this = this, result = new T.Padding(_this._widget.get$_ink_decoration$_paddingIncludingDecoration(), new T.Builder(_this.get$_build(), null), _this._boxKey), t1 = _this._widget.height; return t1 != null ? T.SizedBox$(result, t1, null) : result; } }; D.InkDecoration.prototype = { set$decoration: function(_, value) { var t1, _this = this; if (J.$eq$(value, _this._ink_decoration$_decoration)) return; _this._ink_decoration$_decoration = value; t1 = _this._ink_decoration$_painter; if (t1 != null) t1.dispose$0(0); t1 = _this._ink_decoration$_decoration; _this._ink_decoration$_painter = t1 == null ? null : t1.createBoxPainter$1(_this.get$_handleChanged()); _this._material$_controller.markNeedsPaint$0(); }, set$configuration: function(value) { if (value.$eq(0, this._ink_decoration$_configuration)) return; this._ink_decoration$_configuration = value; this._material$_controller.markNeedsPaint$0(); }, _handleChanged$0: function() { this._material$_controller.markNeedsPaint$0(); }, dispose$0: function(_) { var t1 = this._ink_decoration$_painter; if (t1 != null) t1.dispose$0(0); this.super$InkFeature$dispose(0); }, paintFeature$2: function(canvas, transform) { var originOffset, t1, t2, sizedConfiguration, _this = this; if (_this._ink_decoration$_painter == null) return; originOffset = T.MatrixUtils_getAsTranslation(transform); t1 = _this._ink_decoration$_configuration; t2 = _this.referenceBox._box$_size; t2.toString; sizedConfiguration = t1.copyWith$1$size(t2); if (originOffset == null) { canvas.save$0(0); canvas.transform$1(0, transform._m4storage); _this._ink_decoration$_painter.paint$3(canvas, C.Offset_0_0, sizedConfiguration); canvas.restore$0(0); } else _this._ink_decoration$_painter.paint$3(canvas, originOffset, sizedConfiguration); } }; Y.InkHighlight.prototype = { get$_alphaController: function() { var t1 = this.__InkHighlight__alphaController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_alphaController")) : t1; }, _handleAlphaStatusChanged$1: function($status) { if ($status === C.AnimationStatus_0 && !this._active) { this.get$_alphaController().dispose$0(0); this.super$InkFeature$dispose(0); } }, dispose$0: function(_) { this.get$_alphaController().dispose$0(0); this.super$InkFeature$dispose(0); }, _paintHighlight$3: function(canvas, rect, paint) { var t1, t2, _this = this; canvas.save$0(0); t1 = _this._ink_highlight$_customBorder; if (t1 != null) canvas.clipPath$1(0, t1.getOuterPath$2$textDirection(rect, _this._ink_highlight$_textDirection)); switch (_this._ink_highlight$_shape) { case C.BoxShape_1: t1 = rect.get$center(); t2 = _this._ink_highlight$_radius; canvas.drawCircle$3(0, t1, t2 == null ? 35 : t2, paint); break; case C.BoxShape_0: t1 = _this._ink_highlight$_borderRadius; if (!t1.$eq(0, C.BorderRadius_tLn)) canvas.drawRRect$2(0, P.RRect$fromRectAndCorners(rect, t1.bottomLeft, t1.bottomRight, t1.topLeft, t1.topRight), paint); else canvas.drawRect$2(0, rect, paint); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } canvas.restore$0(0); }, paintFeature$2: function(canvas, transform) { var t2, originOffset, rect, _this = this, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._ink_well$_color; t2 = _this.__InkHighlight__alpha; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_alpha")); paint.set$color(0, P.Color$fromARGB(t2.get$value(t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); originOffset = T.MatrixUtils_getAsTranslation(transform); t1 = _this._rectCallback; if (t1 != null) rect = t1.call$0(); else { t1 = _this.referenceBox._box$_size; rect = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } if (originOffset == null) { canvas.save$0(0); canvas.transform$1(0, transform._m4storage); _this._paintHighlight$3(canvas, rect, paint); canvas.restore$0(0); } else _this._paintHighlight$3(canvas, rect.shift$1(originOffset), paint); } }; O._getClipCallback_closure.prototype = { call$0: function() { var t1 = this.referenceBox._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, $signature: 326 }; O._InkRippleFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection: function(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { var t2, size, t3, t4, t5, t6, t7, t8, t9, t10, _null = null, t1 = borderRadius == null ? C.BorderRadius_tLn : borderRadius; if (radius == null) { if (rectCallback != null) { t2 = rectCallback.call$0(); size = new P.Size(t2.right - t2.left, t2.bottom - t2.top); } else { t2 = referenceBox._box$_size; t2.toString; size = t2; } t2 = Math.max(size.bottomRight$1(0, C.Offset_0_0).get$distance(), new P.Offset(0 + size._dx, 0).$sub(0, new P.Offset(0, 0 + size._dy)).get$distance()) / 2; } else t2 = radius; t1 = new O.InkRipple(position, t1, customBorder, t2, O._getClipCallback(referenceBox, containedInkWell, rectCallback), textDirection, color, controller, referenceBox, onRemoved); t3 = controller.vsync; t4 = G.AnimationController$(_null, C.Duration_75000, 0, _null, 1, _null, t3); t5 = controller.get$markNeedsPaint(); t4.didRegisterListener$0(); t6 = t4.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t4.forward$0(0); t1.__InkRipple__fadeInController = t4; t4 = t1.get$_fadeInController(); t6 = color.get$value(color); t4.toString; t7 = type$.Animation_double; t8 = type$.IntTween; t1.__InkRipple__fadeIn = new R._AnimatedEvaluation(t7._as(t4), new R.IntTween(0, t6 >>> 24 & 255), t8._eval$1("_AnimatedEvaluation")); t6 = G.AnimationController$(_null, C.Duration_1000000, 0, _null, 1, _null, t3); t6.didRegisterListener$0(); t4 = t6.AnimationLocalListenersMixin__listeners; t4._isDirty = true; t4._observer_list$_list.push(t5); t6.forward$0(0); t1.__InkRipple__radiusController = t6; t6 = t1.get$_radiusController(); t4 = type$.Tween_double; t9 = $.$get$InkRipple__easeCurveTween(); t10 = t4._eval$1("_ChainedEvaluation"); t6.toString; t1.__InkRipple__radius = new R._AnimatedEvaluation(t7._as(t6), new R._ChainedEvaluation(t9, new R.Tween(t2 * 0.3, t2 + 5, t4), t10), t10._eval$1("_AnimatedEvaluation")); t3 = G.AnimationController$(_null, C.Duration_375000, 0, _null, 1, _null, t3); t3.didRegisterListener$0(); t10 = t3.AnimationLocalListenersMixin__listeners; t10._isDirty = true; t10._observer_list$_list.push(t5); t3.addStatusListener$1(t1.get$_ink_ripple$_handleAlphaStatusChanged()); t1.__InkRipple__fadeOutController = t3; t3 = t1.get$_fadeOutController(); t5 = color.get$value(color); t10 = $.$get$InkRipple__fadeOutIntervalTween(); t8 = t8._eval$1("_ChainedEvaluation"); t3.toString; t1.__InkRipple__fadeOut = new R._AnimatedEvaluation(t7._as(t3), new R._ChainedEvaluation(t10, new R.IntTween(t5 >>> 24 & 255, 0), t8), t8._eval$1("_AnimatedEvaluation")); controller.addInkFeature$1(t1); return t1; } }; O.InkRipple.prototype = { get$_radiusController: function() { var t1 = this.__InkRipple__radiusController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_radiusController")) : t1; }, get$_fadeInController: function() { var t1 = this.__InkRipple__fadeInController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_fadeInController")) : t1; }, get$_fadeOutController: function() { var t1 = this.__InkRipple__fadeOutController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_fadeOutController")) : t1; }, confirm$0: function(_) { var t1 = this.get$_radiusController(); t1.duration = C.Duration_225000; t1.forward$0(0); this.get$_fadeInController().forward$0(0); t1 = this.get$_fadeOutController(); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, C.C__Linear, C.Duration_375000); }, cancel$0: function(_) { var fadeOutValue, t1, _this = this; _this.get$_fadeInController().stop$0(0); fadeOutValue = 1 - _this.get$_fadeInController().get$_animation_controller$_value(); _this.get$_fadeOutController().set$value(0, fadeOutValue); if (fadeOutValue < 1) { t1 = _this.get$_fadeOutController(); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, C.C__Linear, C.Duration_75000); } }, _ink_ripple$_handleAlphaStatusChanged$1: function($status) { if ($status === C.AnimationStatus_3) this.dispose$0(0); }, dispose$0: function(_) { var _this = this; _this.get$_radiusController().dispose$0(0); _this.get$_fadeInController().dispose$0(0); _this.get$_fadeOutController().dispose$0(0); _this.super$InkFeature$dispose(0); }, paintFeature$2: function(canvas, transform) { var alpha, paint, t2, _this = this, t1 = _this.get$_fadeInController()._ticker; if (t1 != null && t1._ticker$_future != null) { t1 = _this.__InkRipple__fadeIn; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_fadeIn")); alpha = t1.get$value(t1); } else { t1 = _this.__InkRipple__fadeOut; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_fadeOut")); alpha = t1.get$value(t1); } t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._ink_well$_color; paint.set$color(0, P.Color$fromARGB(alpha, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); t1 = P.Offset_lerp(_this._ink_ripple$_position, _this.referenceBox._box$_size.center$1(C.Offset_0_0), C.Cubic_JUR.transform$1(0, _this.get$_radiusController().get$_animation_controller$_value())); t1.toString; t2 = _this.__InkRipple__radius; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_radius")); _this.paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform(_this._ink_ripple$_borderRadius, canvas, t1, _this._ink_ripple$_clipCallback, _this._ink_ripple$_customBorder, paint, t2.get$value(t2), _this._ink_ripple$_textDirection, transform); } }; U._getClipCallback_closure0.prototype = { call$0: function() { var t1 = this.referenceBox._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, $signature: 326 }; U._InkSplashFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection: function(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { var t3, t4, t5, t6, t7, _null = null, t1 = borderRadius == null ? C.BorderRadius_tLn : borderRadius, t2 = radius == null ? U._getTargetRadius(referenceBox, containedInkWell, rectCallback, position) : radius; t1 = new U.InkSplash(position, t1, customBorder, t2, U._getClipCallback0(referenceBox, containedInkWell, rectCallback), !containedInkWell, textDirection, color, controller, referenceBox, onRemoved); t3 = controller.vsync; t4 = G.AnimationController$(_null, C.Duration_1000000, 0, _null, 1, _null, t3); t5 = controller.get$markNeedsPaint(); t4.didRegisterListener$0(); t6 = t4.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t4.forward$0(0); t1.__InkSplash__radiusController = t4; t4 = t1.get$_ink_splash$_radiusController(); t6 = type$.Tween_double; t4.toString; t7 = type$.Animation_double; t1.__InkSplash__radius = new R._AnimatedEvaluation(t7._as(t4), new R.Tween(0, t2, t6), t6._eval$1("_AnimatedEvaluation")); t3 = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, t3); t3.didRegisterListener$0(); t6 = t3.AnimationLocalListenersMixin__listeners; t6._isDirty = true; t6._observer_list$_list.push(t5); t3.addStatusListener$1(t1.get$_ink_splash$_handleAlphaStatusChanged()); t1._ink_splash$_alphaController = t3; t5 = color.get$value(color); t1.__InkSplash__alpha = new R._AnimatedEvaluation(t7._as(t3), new R.IntTween(t5 >>> 24 & 255, 0), type$.IntTween._eval$1("_AnimatedEvaluation")); controller.addInkFeature$1(t1); return t1; } }; U.InkSplash.prototype = { get$_ink_splash$_radiusController: function() { var t1 = this.__InkSplash__radiusController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_radiusController")) : t1; }, confirm$0: function(_) { var duration = C.JSNumber_methods.floor$0(this._targetRadius / 1), t1 = this.get$_ink_splash$_radiusController(); t1.duration = P.Duration$(0, 0, 0, duration, 0, 0); t1.forward$0(0); this._ink_splash$_alphaController.forward$0(0); }, cancel$0: function(_) { var t1 = this._ink_splash$_alphaController; if (t1 != null) t1.forward$0(0); }, _ink_splash$_handleAlphaStatusChanged$1: function($status) { if ($status === C.AnimationStatus_3) this.dispose$0(0); }, dispose$0: function(_) { var _this = this; _this.get$_ink_splash$_radiusController().dispose$0(0); _this._ink_splash$_alphaController.dispose$0(0); _this._ink_splash$_alphaController = null; _this.super$InkFeature$dispose(0); }, paintFeature$2: function(canvas, transform) { var t2, center, _this = this, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._ink_well$_color; t2 = _this.__InkSplash__alpha; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_alpha")); paint.set$color(0, P.Color$fromARGB(t2.get$value(t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255)); center = _this._ink_splash$_position; if (_this._repositionToReferenceBox) center = P.Offset_lerp(center, _this.referenceBox._box$_size.center$1(C.Offset_0_0), _this.get$_ink_splash$_radiusController().get$_animation_controller$_value()); center.toString; t1 = _this.__InkSplash__radius; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_radius")); _this.paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform(_this._ink_splash$_borderRadius, canvas, center, _this._clipCallback, _this._customBorder, paint, t1.get$value(t1), _this._ink_splash$_textDirection, transform); } }; R.InteractiveInkFeature.prototype = { set$color: function(_, value) { if (J.$eq$(value, this._ink_well$_color)) return; this._ink_well$_color = value; this._material$_controller.markNeedsPaint$0(); }, paintInkCircle$9$borderRadius$canvas$center$clipCallback$customBorder$paint$radius$textDirection$transform: function(borderRadius, canvas, center, clipCallback, customBorder, paint, radius, textDirection, transform) { var rect, originOffset = T.MatrixUtils_getAsTranslation(transform); canvas.save$0(0); if (originOffset == null) canvas.transform$1(0, transform._m4storage); else canvas.translate$2(0, originOffset._dx, originOffset._dy); if (clipCallback != null) { rect = clipCallback.call$0(); if (customBorder != null) canvas.clipPath$1(0, customBorder.getOuterPath$2$textDirection(rect, textDirection)); else if (!borderRadius.$eq(0, C.BorderRadius_tLn)) canvas.clipRRect$1(0, P.RRect$fromRectAndCorners(rect, borderRadius.bottomLeft, borderRadius.bottomRight, borderRadius.topLeft, borderRadius.topRight)); else canvas.clipRect$1(0, rect); } canvas.drawCircle$3(0, center, radius, paint); canvas.restore$0(0); } }; R.InteractiveInkFeatureFactory.prototype = {}; R._ParentInkResponseProvider.prototype = { updateShouldNotify$1: function(oldWidget) { return this.state !== oldWidget.state; } }; R.InkResponse.prototype = { getRectCallback$1: function(referenceBox) { return null; }, build$1: function(_, context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$._ParentInkResponseProvider), parentState = t1 == null ? null : t1.state; return new R._InkResponseStateWidget(_this.child, _this.onTap, _this.onTapDown, _this.onTapCancel, _this.onDoubleTap, _this.onLongPress, _this.onHighlightChanged, _this.onHover, _this.mouseCursor, _this.containedInkWell, _this.highlightShape, _this.radius, _this.borderRadius, _this.customBorder, _this.focusColor, _this.hoverColor, _this.highlightColor, _this.overlayColor, _this.splashColor, _this.splashFactory, _this.enableFeedback, false, _this.onFocusChange, _this.autofocus, _this.focusNode, _this.canRequestFocus, parentState, _this.get$getRectCallback(), _this.get$debugCheckContext(), null); }, debugCheckContext$1: function(context) { return true; } }; R._InkResponseStateWidget.prototype = { createState$0: function() { return new R._InkResponseState(P.LinkedHashMap_LinkedHashMap$_empty(type$._HighlightType, type$.nullable_InkHighlight), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray__ParentInkResponseState), type$.ObserverList__ParentInkResponseState), null, C._StateLifecycle_0); } }; R._HighlightType.prototype = { toString$0: function(_) { return this._ink_well$_name; } }; R._InkResponseState.prototype = { get$highlightsExist: function() { var t1 = this._highlights; t1 = t1.get$values(t1); t1 = new H.WhereIterable(t1, new R._InkResponseState_highlightsExist_closure(), H._instanceType(t1)._eval$1("WhereIterable")); return !t1.get$isEmpty(t1); }, markChildInkResponsePressed$2: function(childState, value) { var nowAnyPressed, t1 = this._activeChildren, t2 = t1._observer_list$_list, t3 = t2.length; if (value) { t1._isDirty = true; t2.push(childState); } else t1.remove$1(0, childState); nowAnyPressed = t2.length !== 0; if (nowAnyPressed !== (t3 !== 0)) { t1 = this._widget.parentState; if (t1 != null) t1.markChildInkResponsePressed$2(this, nowAnyPressed); } }, _simulateTap$1: function(intent) { var t1 = this._framework$_element; t1.toString; this._startSplash$1$context(t1); this._ink_well$_handleTap$0(); }, _simulateTap$0: function() { return this._simulateTap$1(null); }, _simulateLongPress$0: function() { var t1 = this._framework$_element; t1.toString; this._startSplash$1$context(t1); this._ink_well$_handleLongPress$0(); }, initState$0: function() { this.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$initState(); $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.add$1(0, this.get$_handleFocusHighlightModeChange()); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1) !== _this._isWidgetEnabled$1(oldWidget)) { t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1)) _this.updateHighlight$3$callOnHover$value(C._HighlightType_1, false, _this._hovering); _this._updateFocusHighlights$0(); } }, dispose$0: function(_) { $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.remove$1(0, this.get$_handleFocusHighlightModeChange()); this.super$State$dispose(0); }, get$wantKeepAlive: function() { if (!this.get$highlightsExist()) { var t1 = this._splashes; t1 = t1 != null && t1._collection$_length !== 0; } else t1 = true; return t1; }, getHighlightColorForType$1: function(type) { var t1, _this = this; switch (type) { case C._HighlightType_0: t1 = _this._widget.highlightColor; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).highlightColor; } return t1; case C._HighlightType_2: t1 = _this._widget.overlayColor; t1 = t1 == null ? null : t1.resolve$1(C.Set_qNgX1); if (t1 == null) t1 = _this._widget.focusColor; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).focusColor; } return t1; case C._HighlightType_1: t1 = _this._widget.overlayColor; t1 = t1 == null ? null : t1.resolve$1(C.Set_wPMXb); if (t1 == null) t1 = _this._widget.hoverColor; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).hoverColor; } return t1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getFadeDurationForType$1: function(type) { switch (type) { case C._HighlightType_0: return C.Duration_200000; case C._HighlightType_1: case C._HighlightType_2: return C.Duration_50000; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, updateHighlight$3$callOnHover$value: function(type, callOnHover, value) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, t1 = _this._highlights, highlight = t1.$index(0, type); if (type === C._HighlightType_0) { t2 = _this._widget.parentState; if (t2 != null) t2.markChildInkResponsePressed$2(_this, value); } t2 = highlight == null; if (value === (!t2 && highlight._active)) return; if (value) if (t2) { t2 = _this._framework$_element.get$renderObject(); t2.toString; type$.RenderBox._as(t2); t3 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t3.toString; t4 = _this.getHighlightColorForType$1(type); t5 = _this._widget; t6 = t5.highlightShape; t7 = t5.radius; t8 = t5.borderRadius; t9 = t5.customBorder; t5 = t5.getRectCallback.call$1(t2); t10 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t10.toString; t11 = _this.getFadeDurationForType$1(type); if (t8 == null) t8 = C.BorderRadius_tLn; t2 = new Y.InkHighlight(t6, t7, t8, t9, t5, t10.textDirection, t4, t3, t2, new R._InkResponseState_updateHighlight_handleInkRemoval(_this, type)); t11 = G.AnimationController$(null, t11, 0, null, 1, null, t3.vsync); t11.didRegisterListener$0(); t10 = t11.AnimationLocalListenersMixin__listeners; t10._isDirty = true; t10._observer_list$_list.push(t3.get$markNeedsPaint()); t11.addStatusListener$1(t2.get$_handleAlphaStatusChanged()); t11.forward$0(0); t2.__InkHighlight__alphaController = t11; t11 = t2.get$_alphaController(); t4 = t4.get$value(t4); t11.toString; t2.__InkHighlight__alpha = new R._AnimatedEvaluation(type$.Animation_double._as(t11), new R.IntTween(0, t4 >>> 24 & 255), type$.IntTween._eval$1("_AnimatedEvaluation")); t3.addInkFeature$1(t2); t1.$indexSet(0, type, t2); _this.updateKeepAlive$0(); } else { highlight._active = true; highlight.get$_alphaController().forward$0(0); } else { highlight._active = false; highlight.get$_alphaController().reverse$0(0); } switch (type) { case C._HighlightType_0: t1 = _this._widget.onHighlightChanged; if (t1 != null) t1.call$1(value); break; case C._HighlightType_1: if (callOnHover) { t1 = _this._widget.onHover; if (t1 != null) t1.call$1(value); } break; case C._HighlightType_2: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, updateHighlight$2$value: function(type, value) { return this.updateHighlight$3$callOnHover$value(type, true, value); }, _createInkFeature$1: function(globalPosition) { var t3, position, t4, color, rectCallback, borderRadius, customBorder, t5, t6, t7, _this = this, t1 = {}, t2 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); t2.toString; t3 = _this._framework$_element.get$renderObject(); t3.toString; type$.RenderBox._as(t3); position = t3.globalToLocal$1(globalPosition); t4 = _this._widget.overlayColor; t4 = t4 == null ? null : t4.resolve$1(C.Set_GpMb9); color = t4 == null ? _this._widget.splashColor : t4; if (color == null) { t4 = _this._framework$_element; t4.toString; color = K.Theme_of(t4).splashColor; } t4 = _this._widget; rectCallback = t4.containedInkWell ? t4.getRectCallback.call$1(t3) : null; t4 = _this._widget; borderRadius = t4.borderRadius; customBorder = t4.customBorder; t1.splash = null; t4 = t4.splashFactory; if (t4 == null) { t4 = _this._framework$_element; t4.toString; t4 = K.Theme_of(t4).splashFactory; } t5 = _this._widget; t6 = t5.containedInkWell; t5 = t5.radius; t7 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t7.toString; return t1.splash = t4.create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(0, borderRadius, color, t6, t2, customBorder, new R._InkResponseState__createInkFeature_onRemoved(t1, _this), position, t5, rectCallback, t3, t7.textDirection); }, _handleFocusHighlightModeChange$1: function(mode) { if (this._framework$_element == null) return; this.setState$1(new R._InkResponseState__handleFocusHighlightModeChange_closure(this)); }, get$_shouldShowFocus: function() { var mode, _this = this, t1 = _this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: t1 = _this._widget; t1.toString; return _this._isWidgetEnabled$1(t1) && _this._ink_well$_hasFocus; case C.NavigationMode_1: return _this._ink_well$_hasFocus; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _updateFocusHighlights$0: function() { var showFocus, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch (t1 == null ? O.FocusManager__defaultModeForPlatform() : t1) { case C.FocusHighlightMode_0: showFocus = false; break; case C.FocusHighlightMode_1: showFocus = this.get$_shouldShowFocus(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } this.updateHighlight$2$value(C._HighlightType_2, showFocus); }, _handleFocusUpdate$1: function(hasFocus) { var t1; this._ink_well$_hasFocus = hasFocus; this._updateFocusHighlights$0(); t1 = this._widget.onFocusChange; if (t1 != null) t1.call$1(hasFocus); }, _handleTapDown$1: function(details) { if (this._activeChildren._observer_list$_list.length !== 0) return; this._startSplash$1$details(details); this._widget.toString; }, _startSplash$2$context$details: function(context, details) { var t1, t2, globalPosition, splash, _this = this; if (context != null) { t1 = context.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1._box$_size; t2 = new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy).get$center(); globalPosition = T.MatrixUtils_transformPoint(t1.getTransformTo$1(0, null), t2); } else globalPosition = details.globalPosition; splash = _this._createInkFeature$1(globalPosition); t1 = _this._splashes; (t1 == null ? _this._splashes = P.HashSet_HashSet(type$.InteractiveInkFeature) : t1).add$1(0, splash); _this._currentSplash = splash; _this.updateKeepAlive$0(); _this.updateHighlight$2$value(C._HighlightType_0, true); }, _startSplash$1$details: function(details) { return this._startSplash$2$context$details(null, details); }, _startSplash$1$context: function(context) { return this._startSplash$2$context$details(context, null); }, _ink_well$_handleTap$0: function() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.confirm$0(0); _this._currentSplash = null; _this.updateHighlight$2$value(C._HighlightType_0, false); t1 = _this._widget; if (t1.onTap != null) { if (t1.enableFeedback) { t1 = _this._framework$_element; t1.toString; M.Feedback_forTap(t1); } t1 = _this._widget.onTap; if (t1 != null) t1.call$0(); } }, _handleTapCancel$0: function() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.cancel$0(0); _this._currentSplash = null; _this._widget.toString; _this.updateHighlight$2$value(C._HighlightType_0, false); }, _handleDoubleTap$0: function() { var t1 = this._currentSplash; if (t1 != null) t1.confirm$0(0); this._currentSplash = null; t1 = this._widget.onDoubleTap; if (t1 != null) t1.call$0(); }, _ink_well$_handleLongPress$0: function() { var _this = this, t1 = _this._currentSplash; if (t1 != null) t1.confirm$0(0); _this._currentSplash = null; t1 = _this._widget; if (t1.onLongPress != null) { if (t1.enableFeedback) { t1 = _this._framework$_element; t1.toString; M.Feedback_forLongPress(t1); } _this._widget.onLongPress.call$0(); } }, deactivate$0: function() { var t2, t3, t4, t5, _this = this, t1 = _this._splashes; if (t1 != null) { _this._splashes = null; for (t1 = new P._HashSetIterator(t1, t1._computeElements$0(), H._instanceType(t1)._eval$1("_HashSetIterator<1>")); t1.moveNext$0();) t1._collection$_current.dispose$0(0); _this._currentSplash = null; } for (t1 = _this._highlights, t2 = t1.get$keys(t1), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t1.$index(0, t3); if (t4 != null) { t5 = t4.__InkHighlight__alphaController; if (t5 === $) t5 = H.throwExpression(H.LateError$fieldNI("_alphaController")); t5._ticker.dispose$0(0); t5._ticker = null; t5.super$AnimationEagerListenerMixin$dispose(0); t4.super$InkFeature$dispose(0); } t1.$indexSet(0, t3, null); } t1 = _this._widget.parentState; if (t1 != null) t1.markChildInkResponsePressed$2(_this, false); _this.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$deactivate(); }, _isWidgetEnabled$1: function(widget) { return widget.onTap != null || widget.onDoubleTap != null || widget.onLongPress != null; }, _handleMouseEnter$1: function($event) { var t1, _this = this; _this._hovering = true; t1 = _this._widget; t1.toString; if (_this._isWidgetEnabled$1(t1)) _this.updateHighlight$2$value(C._HighlightType_1, _this._hovering); }, _handleMouseExit$1: function($event) { this._hovering = false; this.updateHighlight$2$value(C._HighlightType_1, false); }, get$_ink_well$_canRequestFocus: function() { var mode, _this = this, t1 = _this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: t1 = _this._widget; t1.toString; return _this._isWidgetEnabled$1(t1) && _this._widget.canRequestFocus; case C.NavigationMode_1: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t1, t2, t3, t4, effectiveMouseCursor, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null; _this.super$AutomaticKeepAliveClientMixin$build(0, context); for (t1 = _this._highlights, t2 = t1.get$keys(t1), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = t1.$index(0, t3); if (t4 != null) t4.set$color(0, _this.getHighlightColorForType$1(t3)); } t1 = _this._currentSplash; if (t1 != null) { t2 = _this._widget.overlayColor; t2 = t2 == null ? _null : t2.resolve$1(C.Set_GpMb9); if (t2 == null) t2 = _this._widget.splashColor; t1.set$color(0, t2 == null ? K.Theme_of(context).splashColor : t2); } t1 = _this._widget; t2 = t1.mouseCursor; if (t2 == null) t2 = C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable; t3 = P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this._isWidgetEnabled$1(t1)) t3.add$1(0, C.MaterialState_5); if (_this._hovering) { t1 = _this._widget; t1.toString; t1 = _this._isWidgetEnabled$1(t1); } else t1 = false; if (t1) t3.add$1(0, C.MaterialState_0); if (_this._ink_well$_hasFocus) t3.add$1(0, C.MaterialState_1); effectiveMouseCursor = V.MaterialStateProperty_resolveAs(t2, t3, type$.MouseCursor); t1 = _this.___InkResponseState__actionMap; if (t1 === $) { t1 = _this.get$_simulateTap(); t2 = type$.JSArray_of_void_Function_Action_Intent; t3 = type$.ObserverList_of_void_Function_Action_Intent; t3 = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_ActivateIntent_OT9, new U.CallbackAction(t1, new R.ObserverList(H.setRuntimeTypeInfo([], t2), t3), type$.CallbackAction_ActivateIntent), C.Type_ButtonActivateIntent_6Ij, new U.CallbackAction(t1, new R.ObserverList(H.setRuntimeTypeInfo([], t2), t3), type$.CallbackAction_ButtonActivateIntent)], type$.Type, type$.Action_Intent); if (_this.___InkResponseState__actionMap === $) { _this.___InkResponseState__actionMap = t3; t1 = t3; } else t1 = H.throwExpression(H.LateError$fieldADI("_actionMap")); } t2 = _this._widget.focusNode; t3 = _this.get$_ink_well$_canRequestFocus(); t4 = _this._widget; t5 = t4.autofocus; t6 = t4.onTap; t6 = t6 == null ? _null : _this.get$_simulateTap(); t7 = t4.onLongPress; t7 = t7 == null ? _null : _this.get$_simulateLongPress(); t4 = _this._isWidgetEnabled$1(t4) ? _this.get$_handleTapDown() : _null; t8 = _this._widget; t8.toString; t8 = _this._isWidgetEnabled$1(t8) ? _this.get$_ink_well$_handleTap() : _null; t9 = _this._widget; t9.toString; t9 = _this._isWidgetEnabled$1(t9) ? _this.get$_handleTapCancel() : _null; t10 = _this._widget; t11 = t10.onDoubleTap != null ? _this.get$_handleDoubleTap() : _null; t12 = t10.onLongPress != null ? _this.get$_ink_well$_handleLongPress() : _null; t4 = D.GestureDetector$(C.HitTestBehavior_1, t10.child, C.DragStartBehavior_1, true, _null, t11, _null, _null, _null, _null, _null, t12, _null, _null, _null, _null, _null, _null, _null, t8, t9, t4, _null, _null, _null, _null); return new R._ParentInkResponseProvider(_this, new U.Actions(t1, L.Focus$(t5, t3, new T.MouseRegion(_this.get$_handleMouseEnter(), _null, _this.get$_handleMouseExit(), effectiveMouseCursor, true, new T.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, t7, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t4, _null), _null), _null, true, t2, true, _null, _this.get$_handleFocusUpdate(), _null, _null), _null), _null); }, $is_ParentInkResponseState: 1 }; R._InkResponseState_highlightsExist_closure.prototype = { call$1: function(highlight) { return highlight != null; }, $signature: 2012 }; R._InkResponseState_updateHighlight_handleInkRemoval.prototype = { call$0: function() { var t1 = this.$this; t1._highlights.$indexSet(0, this.type, null); t1.updateKeepAlive$0(); }, $signature: 0 }; R._InkResponseState__createInkFeature_onRemoved.prototype = { call$0: function() { var t3, t1 = this.$this, t2 = t1._splashes; if (t2 != null) { t3 = this._box_0; t2.remove$1(0, t3.splash); if (t1._currentSplash == t3.splash) t1._currentSplash = null; t1.updateKeepAlive$0(); } }, $signature: 0 }; R._InkResponseState__handleFocusHighlightModeChange_closure.prototype = { call$0: function() { this.$this._updateFocusHighlights$0(); }, $signature: 0 }; R.InkWell.prototype = {}; R.__InkResponseState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); if (this.get$wantKeepAlive()) this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; F.InputBorder.prototype = {}; F._NoInputBorder.prototype = { copyWith$1$borderSide: function(borderSide) { return C._NoInputBorder_EYU; }, get$isOutline: function() { return false; }, get$dimensions: function() { return C.EdgeInsets_0_0_0_0; }, scale$1: function(_, t) { return C._NoInputBorder_EYU; }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRect$1(0, rect); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRect$1(0, rect); return t1; }, paint$6$gapExtent$gapPercentage$gapStart$textDirection: function(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { }, paint$3$textDirection: function(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); } }; F.UnderlineInputBorder.prototype = { get$isOutline: function() { return false; }, copyWith$1$borderSide: function(borderSide) { return new F.UnderlineInputBorder(this.borderRadius, borderSide); }, get$dimensions: function() { return new V.EdgeInsets(0, 0, 0, this.borderSide.width); }, scale$1: function(_, t) { return new F.UnderlineInputBorder(C.BorderRadius_tLn1, this.borderSide.scale$1(0, t)); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(), t2 = rect.left, t3 = rect.top; t1.addRect$1(0, new P.Rect(t2, t3, t2 + (rect.right - t2), t3 + Math.max(0, rect.bottom - t3 - this.borderSide.width))); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect)); return t1; }, lerpFrom$2: function(a, t) { var t1, t2; if (a instanceof F.UnderlineInputBorder) { t1 = Y.BorderSide_lerp(a.borderSide, this.borderSide, t); t2 = K.BorderRadius_lerp(a.borderRadius, this.borderRadius, t); t2.toString; return new F.UnderlineInputBorder(t2, t1); } return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { var t1, t2; if (b instanceof F.UnderlineInputBorder) { t1 = Y.BorderSide_lerp(this.borderSide, b.borderSide, t); t2 = K.BorderRadius_lerp(this.borderRadius, b.borderRadius, t); t2.toString; return new F.UnderlineInputBorder(t2, t1); } return this.super$ShapeBorder$lerpTo(b, t); }, paint$6$gapExtent$gapPercentage$gapStart$textDirection: function(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { var t1 = this.borderRadius; if (!J.$eq$(t1.bottomLeft, C.Radius_0_0) || !J.$eq$(t1.bottomRight, C.Radius_0_0)) canvas.clipPath$1(0, this.getOuterPath$2$textDirection(rect, textDirection)); t1 = rect.bottom; canvas.drawLine$3(0, new P.Offset(rect.left, t1), new P.Offset(rect.right, t1), this.borderSide.toPaint$0()); }, paint$3$textDirection: function(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof F.InputBorder && J.$eq$(other.borderSide, this.borderSide); }, get$hashCode: function(_) { return J.get$hashCode$(this.borderSide); } }; F.OutlineInputBorder.prototype = { get$isOutline: function() { return true; }, get$dimensions: function() { var t1 = this.borderSide.width; return new V.EdgeInsets(t1, t1, t1, t1); }, scale$1: function(_, t) { var t1 = this.borderSide.scale$1(0, t); return new F.OutlineInputBorder(this.gapPadding * t, this.borderRadius.$mul(0, t), t1); }, lerpFrom$2: function(a, t) { var t1, t2; if (a instanceof F.OutlineInputBorder) { t1 = K.BorderRadius_lerp(a.borderRadius, this.borderRadius, t); t1.toString; t2 = Y.BorderSide_lerp(a.borderSide, this.borderSide, t); return new F.OutlineInputBorder(a.gapPadding, t1, t2); } return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { var t1, t2; if (b instanceof F.OutlineInputBorder) { t1 = K.BorderRadius_lerp(this.borderRadius, b.borderRadius, t); t1.toString; t2 = Y.BorderSide_lerp(this.borderSide, b.borderSide, t); return new F.OutlineInputBorder(b.gapPadding, t1, t2); } return this.super$ShapeBorder$lerpTo(b, t); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect).inflate$1(-this.borderSide.width)); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRRect$1(0, this.borderRadius.toRRect$1(rect)); return t1; }, _gapBorderPath$4: function(canvas, center, start, extent) { var t10, t11, t12, t13, t14, t15, t16, tlCornerArcSweep, path, t17, sweep, scaledRRect = center.scaleRadii$0(), t1 = scaledRRect.left, t2 = scaledRRect.top, t3 = scaledRRect.tlRadiusX, t4 = scaledRRect.tlRadiusY, t5 = scaledRRect.right, t6 = scaledRRect.trRadiusX, t7 = t6 * 2, t8 = t5 - t7, t9 = scaledRRect.trRadiusY, trCorner = new P.Rect(t8, t2, t8 + t7, t2 + t9 * 2); t7 = scaledRRect.brRadiusX * 2; t8 = t5 - t7; t10 = scaledRRect.bottom; t11 = scaledRRect.brRadiusY; t12 = t11 * 2; t13 = t10 - t12; t14 = t10 - scaledRRect.blRadiusY * 2; t15 = scaledRRect.blRadiusX; t16 = t15 * 2; tlCornerArcSweep = start < t3 ? Math.asin(C.JSNumber_methods.clamp$2(start / t3, -1, 1)) : 1.5707963267948966; path = P.Path_Path(); path.addArc$3(0, new P.Rect(t1, t2, t1 + t3 * 2, t2 + t4 * 2), 3.141592653589793, tlCornerArcSweep); path.moveTo$2(0, t1 + t3, t2); if (start > t3) path.lineTo$2(0, t1 + start, t2); t3 = start + extent; t17 = t5 - t1; if (t3 < t17 - t6) { path.relativeMoveTo$2(extent, 0); path.lineTo$2(0, t5 - t6, t2); path.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); } else if (t3 < t17) { sweep = Math.acos((t17 - t3) / t6); path.addArc$3(0, trCorner, 4.71238898038469 + sweep, 1.5707963267948966 - sweep); } path.moveTo$2(0, t5, t2 + t9); path.lineTo$2(0, t5, t10 - t11); path.addArc$3(0, new P.Rect(t8, t13, t8 + t7, t13 + t12), 0, 1.5707963267948966); path.lineTo$2(0, t1 + t15, t10); path.addArc$3(0, new P.Rect(t1, t14, t1 + t16, t14 + t16), 1.5707963267948966, 1.5707963267948966); path.lineTo$2(0, t1, t2 + t4); return path; }, paint$6$gapExtent$gapPercentage$gapStart$textDirection: function(canvas, rect, gapExtent, gapPercentage, gapStart, textDirection) { var t2, _this = this, t1 = _this.borderSide, paint = t1.toPaint$0(), center = _this.borderRadius.toRRect$1(rect).inflate$1(-(t1.width / 2)); if (gapStart == null || gapExtent <= 0 || gapPercentage === 0) canvas.drawRRect$2(0, center, paint); else { t1 = _this.gapPadding; t2 = P.lerpDouble(0, gapExtent + t1 * 2, gapPercentage); t2.toString; textDirection.toString; switch (textDirection) { case C.TextDirection_0: canvas.drawPath$2(0, _this._gapBorderPath$4(canvas, center, Math.max(0, gapStart + t1 - t2), t2), paint); break; case C.TextDirection_1: canvas.drawPath$2(0, _this._gapBorderPath$4(canvas, center, Math.max(0, gapStart - t1), t2), paint); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }, paint$3$textDirection: function(canvas, rect, textDirection) { return this.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, rect, 0, 0, null, textDirection); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof F.OutlineInputBorder && J.$eq$(other.borderSide, _this.borderSide) && J.$eq$(other.borderRadius, _this.borderRadius) && other.gapPadding === _this.gapPadding; }, get$hashCode: function(_) { return P.hashValues(this.borderSide, this.borderRadius, this.gapPadding, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; U.InputDatePickerFormField.prototype = { createState$0: function() { return new U._InputDatePickerFormFieldState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), C._StateLifecycle_0); } }; U._InputDatePickerFormFieldState.prototype = { initState$0: function() { this.super$State$initState(); this._input_date_picker_form_field$_selectedDate = this._widget.initialDate; }, dispose$0: function(_) { this._input_date_picker_form_field$_controller.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this._updateValueForSelectedDate$0(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(this._widget.initialDate, oldWidget.initialDate)) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._InputDatePickerFormFieldState_didUpdateWidget_closure(this)); }, _updateValueForSelectedDate$0: function() { var t2, t3, textEditingValue, _this = this, t1 = _this._input_date_picker_form_field$_controller; if (_this._input_date_picker_form_field$_selectedDate != null) { t2 = _this._framework$_element; t2.toString; t2 = L.Localizations_of(t2, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = _this._input_date_picker_form_field$_selectedDate; t3.toString; t3 = t2.formatCompactDate$1(t3); _this._inputText = t3; textEditingValue = t1._change_notifier$_value.copyWith$1$text(t3); _this._widget.toString; t2 = _this._autoSelected; if (!t2) { textEditingValue = textEditingValue.copyWith$1$selection(X.TextSelection$(C.TextAffinity_1, 0, _this._inputText.length, false)); _this._autoSelected = true; } t1.super$ValueNotifier$value(0, textEditingValue); } else { _this._inputText = ""; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$text("")); } }, _isValidAcceptableDate$1: function(date) { var t1, t2, t3; if (date != null) { t1 = this._widget; t2 = t1.firstDate; t3 = date._value; if (t3 >= t2._value) if (t3 <= t1.lastDate._value) t1 = true; else t1 = false; else t1 = false; } else t1 = false; return t1; }, _validateDate$1: function(text) { var t2, date, _this = this, t1 = _this._framework$_element; t1.toString; t2 = type$.MaterialLocalizations; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, t2); t1.toString; date = t1.parseCompactDate$1(text); if (date == null) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, t2); t1.toString; t1 = t1.get$invalidDateFormatLabel(); return t1; } else if (!_this._isValidAcceptableDate$1(date)) { _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, t2); t1.toString; t1 = t1.get$dateOutOfRangeLabel(); return t1; } return null; }, _updateDate$2: function(text, callback) { var date, _this = this, t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; date = t1.parseCompactDate$1(text); if (_this._isValidAcceptableDate$1(date)) { _this._input_date_picker_form_field$_selectedDate = date; _this._inputText = text; date.toString; callback.call$1(date); } }, _handleSaved$1: function(text) { this._updateDate$2(text, this._widget.onDateSaved); }, _handleSubmitted$1: function(text) { this._updateDate$2(text, this._widget.onDateSubmitted); }, build$1: function(_, context) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; K.Theme_of(context).toString; _this._widget.toString; t2 = t1.get$dateHelpText(); _this._widget.toString; t1 = t1.get$dateInputLabel(); t1 = L.InputDecoration$(_null, C.UnderlineInputBorder_4YI, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, t2, _null, _null, _null, false, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); _this._widget.toString; return E.TextFormField$(true, _null, true, _null, _this._input_date_picker_form_field$_controller, t1, _null, false, _null, _null, _null, _null, C.TextInputType_4_null_null, 1, _null, false, _null, _null, _this.get$_handleSubmitted(), _this.get$_handleSaved(), false, _null, C.TextAlign_4, _null, _this.get$_validateDate()); } }; U._InputDatePickerFormFieldState_didUpdateWidget_closure.prototype = { call$1: function(timeStamp) { var t1 = this.$this; t1.setState$1(new U._InputDatePickerFormFieldState_didUpdateWidget__closure(t1)); }, $signature: 28 }; U._InputDatePickerFormFieldState_didUpdateWidget__closure.prototype = { call$0: function() { var t1 = this.$this; t1._input_date_picker_form_field$_selectedDate = t1._widget.initialDate; t1._updateValueForSelectedDate$0(); }, $signature: 0 }; L._InputBorderGap.prototype = { set$start: function(_, value) { if (value != this._input_decorator$_start) { this._input_decorator$_start = value; this.notifyListeners$0(); } }, set$extent: function(value) { if (value !== this._extent) { this._extent = value; this.notifyListeners$0(); } }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof L._InputBorderGap && other._input_decorator$_start == _this._input_decorator$_start && other._extent === _this._extent; }, get$hashCode: function(_) { return P.hashValues(this._input_decorator$_start, this._extent, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; L._InputBorderTween.prototype = { lerp$1: function(t) { var t1 = Y.ShapeBorder_lerp(this.begin, this.end, t); t1.toString; return type$.InputBorder._as(t1); } }; L._InputBorderPainter.prototype = { paint$2: function(canvas, size) { var borderValue, canvasRect, blendedFillColor, _this = this, t1 = _this.border, t2 = _this.borderAnimation; t1.toString; borderValue = t1.transform$1(0, t2.get$value(t2)); canvasRect = new P.Rect(0, 0, 0 + size._dx, 0 + size._dy); t2 = _this.hoverColorTween; t1 = _this.hoverAnimation; t2.toString; t1 = t2.transform$1(0, t1.get$value(t1)); t1.toString; blendedFillColor = P.Color_alphaBlend(t1, _this.fillColor); if ((blendedFillColor.get$value(blendedFillColor) >>> 24 & 255) > 0) { t1 = borderValue.getOuterPath$2$textDirection(canvasRect, _this.textDirection); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$color(0, blendedFillColor); t2.set$style(0, C.PaintingStyle_0); canvas.drawPath$2(0, t1, t2); } t1 = _this.gap; t2 = t1._input_decorator$_start; borderValue.paint$6$gapExtent$gapPercentage$gapStart$textDirection(canvas, canvasRect, t1._extent, _this.gapAnimation.get$_animation_controller$_value(), t2, _this.textDirection); }, shouldRepaint$1: function(oldPainter) { var _this = this; return _this.borderAnimation != oldPainter.borderAnimation || _this.hoverAnimation != oldPainter.hoverAnimation || _this.gapAnimation !== oldPainter.gapAnimation || _this.border != oldPainter.border || !_this.gap.$eq(0, oldPainter.gap) || _this.textDirection != oldPainter.textDirection; } }; L._BorderContainer.prototype = { createState$0: function() { return new L._BorderContainerState(null, C._StateLifecycle_0); } }; L._BorderContainerState.prototype = { get$_input_decorator$_controller: function() { var t1 = this.___BorderContainerState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_hoverColorController: function() { var t1 = this.___BorderContainerState__hoverColorController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hoverColorController")) : t1; }, get$_borderAnimation: function() { var t1 = this.___BorderContainerState__borderAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_borderAnimation")) : t1; }, initState$0: function() { var t1, _this = this, _null = null; _this.super$State$initState(); _this.___BorderContainerState__hoverColorController = G.AnimationController$(_null, C.Duration_15000, 0, _null, 1, _this._widget.isHovering ? 1 : 0, _this); _this.___BorderContainerState__controller = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, _this); _this.___BorderContainerState__borderAnimation = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_input_decorator$_controller(), _null); t1 = _this._widget.border; _this.___BorderContainerState__border = new L._InputBorderTween(t1, t1); _this.___BorderContainerState__hoverAnimation = S.CurvedAnimation$(C.C__Linear, _this.get$_hoverColorController(), _null); _this.___BorderContainerState__hoverColorTween = new R.ColorTween(C.Color_0, _this._widget.hoverColor); }, dispose$0: function(_) { this.get$_input_decorator$_controller().dispose$0(0); this.get$_hoverColorController().dispose$0(0); this.super$__BorderContainerState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.border; t2 = oldWidget.border; if (!J.$eq$(t1, t2)) { _this.___BorderContainerState__border = new L._InputBorderTween(t2, _this._widget.border); t1 = _this.get$_input_decorator$_controller(); t1.set$value(0, 0); t1.forward$0(0); } if (!J.$eq$(_this._widget.hoverColor, oldWidget.hoverColor)) _this.___BorderContainerState__hoverColorTween = new R.ColorTween(C.Color_0, _this._widget.hoverColor); t1 = _this._widget.isHovering; if (t1 !== oldWidget.isHovering) if (t1) _this.get$_hoverColorController().forward$0(0); else _this.get$_hoverColorController().reverse$0(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, t1 = H.setRuntimeTypeInfo([_this.get$_borderAnimation(), _this._widget.gap, _this.get$_hoverColorController()], type$.JSArray_Listenable), t2 = _this.get$_borderAnimation(), t3 = _this.___BorderContainerState__border; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_border")); t4 = _this._widget; t5 = t4.gapAnimation; t4 = t4.gap; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t6.toString; t7 = _this._widget.fillColor; t8 = _this.___BorderContainerState__hoverColorTween; if (t8 === $) t8 = H.throwExpression(H.LateError$fieldNI("_hoverColorTween")); t9 = _this.___BorderContainerState__hoverAnimation; if (t9 === $) t9 = H.throwExpression(H.LateError$fieldNI("_hoverAnimation")); return T.CustomPaint$(null, new L._InputBorderPainter(t2, t3, t5, t4, t6.textDirection, t7, t8, t9, new B._MergingListenable(t1)), null, null, C.Size_0_0); } }; L._Shaker.prototype = { get$translateX: function() { var t1 = type$.Animation_double._as(this.listenable), t = t1.get$value(t1); if (t <= 0.25) return -t * 4; else if (t < 0.75) return (t - 0.5) * 4; else return (1 - t) * 4 * 4; }, build$1: function(_, context) { return T.Transform$(null, this.child, E.Matrix4_Matrix4$translationValues(this.get$translateX(), 0, 0), true); } }; L._HelperError.prototype = { createState$0: function() { return new L._HelperErrorState(null, C._StateLifecycle_0); } }; L._HelperErrorState.prototype = { get$_input_decorator$_controller: function() { var t1 = this.___HelperErrorState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this.___HelperErrorState__controller = G.AnimationController$(null, C.Duration_200000, 0, null, 1, null, _this); if (_this._widget.errorText != null) { _this._error0 = _this._buildError$0(); _this.get$_input_decorator$_controller().set$value(0, 1); } t1 = _this.get$_input_decorator$_controller(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_input_decorator$_handleChange()); }, dispose$0: function(_) { this.get$_input_decorator$_controller().dispose$0(0); this.super$__HelperErrorState_State_SingleTickerProviderStateMixin$dispose(0); }, _input_decorator$_handleChange$0: function() { this.setState$1(new L._HelperErrorState__handleChange_closure()); }, didUpdateWidget$1: function(old) { var oldErrorText, t1, _this = this; _this.super$State$didUpdateWidget(old); oldErrorText = old.errorText; t1 = _this._widget.errorText != null; if (t1 !== (oldErrorText != null) || false) if (t1) { _this._error0 = _this._buildError$0(); _this.get$_input_decorator$_controller().forward$0(0); } else _this.get$_input_decorator$_controller().reverse$0(0); }, _buildError$0: function() { var t3, t4, t5, t6, _null = null, t1 = this.get$_input_decorator$_controller().get$_animation_controller$_value(), t2 = this.get$_input_decorator$_controller(); t2 = new R.Tween(C.Offset_MNd, C.Offset_0_0, type$.Tween_Offset).transform$1(0, t2.get$value(t2)); t3 = this._widget; t4 = t3.errorText; t4.toString; t5 = t3.errorStyle; t6 = t3.textAlign; t1 = T.Opacity$(false, T.FractionalTranslation$(L.Text$(t4, _null, t3.errorMaxLines, C.TextOverflow_2, _null, _null, t5, t6, _null, _null), true, t2), t1); return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t1, _null); }, build$1: function(_, context) { var _this = this, t1 = _this.get$_input_decorator$_controller(); if (t1.get$status(t1) === C.AnimationStatus_0) { _this._error0 = null; _this._widget.toString; _this._helper = null; return C.SizedBox_null_null_null_null; } t1 = _this.get$_input_decorator$_controller(); if (t1.get$status(t1) === C.AnimationStatus_3) { _this._helper = null; if (_this._widget.errorText != null) return _this._error0 = _this._buildError$0(); else { _this._error0 = null; return C.SizedBox_null_null_null_null; } } if (_this._helper == null && _this._widget.errorText != null) return _this._buildError$0(); if (_this._error0 == null) _this._widget.toString; if (_this._widget.errorText != null) { t1 = _this.get$_input_decorator$_controller().get$_animation_controller$_value(); return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([T.Opacity$(false, _this._helper, 1 - t1), _this._buildError$0()], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, null, null); } return C.SizedBox_null_null_null_null; } }; L._HelperErrorState__handleChange_closure.prototype = { call$0: function() { }, $signature: 0 }; L.FloatingLabelBehavior.prototype = { toString$0: function(_) { return this._input_decorator$_name; } }; L._DecorationSlot.prototype = { toString$0: function(_) { return this._input_decorator$_name; } }; L._Decoration.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof L._Decoration) if (other.contentPadding.$eq(0, _this.contentPadding)) if (other.floatingLabelHeight === _this.floatingLabelHeight) if (other.floatingLabelProgress == _this.floatingLabelProgress) if (J.$eq$(other.border, _this.border)) if (other.borderGap.$eq(0, _this.borderGap)) t1 = other.isDense == _this.isDense && other.visualDensity.$eq(0, _this.visualDensity) && J.$eq$(other.icon, _this.icon) && J.$eq$(other.input, _this.input) && J.$eq$(other.label, _this.label) && J.$eq$(other.hint, _this.hint) && J.$eq$(other.prefix, _this.prefix) && J.$eq$(other.suffix, _this.suffix) && J.$eq$(other.prefixIcon, _this.prefixIcon) && J.$eq$(other.suffixIcon, _this.suffixIcon) && other.helperError.super$Object$$eq(0, _this.helperError) && J.$eq$(other.counter, _this.counter) && other.container.super$Object$$eq(0, _this.container) && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.contentPadding, _this.floatingLabelHeight, _this.floatingLabelProgress, _this.border, _this.borderGap, false, _this.isDense, _this.visualDensity, _this.icon, _this.input, _this.label, _this.hint, _this.prefix, _this.suffix, _this.prefixIcon, _this.suffixIcon, _this.helperError, _this.counter, _this.container, false); } }; L._RenderDecorationLayout.prototype = {}; L._RenderDecoration.prototype = { _updateChild$3: function(oldChild, newChild, slot) { var _this = this; if (oldChild != null) { _this.dropChild$1(oldChild); _this.children.remove$1(0, slot); } if (newChild != null) { _this.children.$indexSet(0, slot, newChild); _this.adoptChild$1(newChild); } return newChild; }, get$_input_decorator$_children: function($async$_) { var $async$self = this; return P._makeSyncStarIterable(function() { var _ = $async$_; var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$get$_input_decorator$_children($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._icon; $async$goto = t1 != null ? 2 : 3; break; case 2: // then $async$goto = 4; return t1; case 4: // after yield case 3: // join t1 = $async$self._input_decorator$_input; $async$goto = t1 != null ? 5 : 6; break; case 5: // then $async$goto = 7; return t1; case 7: // after yield case 6: // join t1 = $async$self._prefixIcon; $async$goto = t1 != null ? 8 : 9; break; case 8: // then $async$goto = 10; return t1; case 10: // after yield case 9: // join t1 = $async$self._suffixIcon; $async$goto = t1 != null ? 11 : 12; break; case 11: // then $async$goto = 13; return t1; case 13: // after yield case 12: // join t1 = $async$self._prefix; $async$goto = t1 != null ? 14 : 15; break; case 14: // then $async$goto = 16; return t1; case 16: // after yield case 15: // join t1 = $async$self._suffix; $async$goto = t1 != null ? 17 : 18; break; case 17: // then $async$goto = 19; return t1; case 19: // after yield case 18: // join t1 = $async$self._input_decorator$_label; $async$goto = t1 != null ? 20 : 21; break; case 20: // then $async$goto = 22; return t1; case 22: // after yield case 21: // join t1 = $async$self._hint; $async$goto = t1 != null ? 23 : 24; break; case 23: // then $async$goto = 25; return t1; case 25: // after yield case 24: // join t1 = $async$self._helperError; $async$goto = t1 != null ? 26 : 27; break; case 26: // then $async$goto = 28; return t1; case 28: // after yield case 27: // join t1 = $async$self._counter; $async$goto = t1 != null ? 29 : 30; break; case 29: // then $async$goto = 31; return t1; case 31: // after yield case 30: // join t1 = $async$self._input_decorator$_container; $async$goto = t1 != null ? 32 : 33; break; case 32: // then $async$goto = 34; return t1; case 34: // after yield case 33: // join // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderBox); }, set$decoration: function(_, value) { if (this._input_decorator$_decoration.$eq(0, value)) return; this._input_decorator$_decoration = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { if (this._input_decorator$_textDirection == value) return; this._input_decorator$_textDirection = value; this.markNeedsLayout$0(); }, set$textBaseline: function(_, value) { if (this._input_decorator$_textBaseline == value) return; this._input_decorator$_textBaseline = value; this.markNeedsLayout$0(); }, set$textAlignVertical: function(value) { var t2, _this = this, t1 = _this._textAlignVertical; if (t1 == value) return; if (t1 == null) t1 = _this.get$_isOutlineAligned() ? C.TextAlignVertical_0 : C.TextAlignVertical_m1; t2 = value == null ? null : value.y; if (t2 == null) t2 = (_this.get$_isOutlineAligned() ? C.TextAlignVertical_0 : C.TextAlignVertical_m1).y; if (t1.y === t2) { _this._textAlignVertical = value; return; } _this._textAlignVertical = value; _this.markNeedsLayout$0(); }, set$isFocused: function(value) { if (this._input_decorator$_isFocused === value) return; this._input_decorator$_isFocused = value; this.markNeedsSemanticsUpdate$0(); }, set$expands: function(value) { if (this._expands === value) return; this._expands = value; this.markNeedsLayout$0(); }, get$_isOutlineAligned: function() { var t1 = this._input_decorator$_decoration; return t1.border.get$isOutline(); }, attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); for (t1 = this.get$_input_decorator$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) t1.get$current(t1).attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); for (t1 = this.get$_input_decorator$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) t1.get$current(t1).detach$0(0); }, redepthChildren$0: function() { this.get$_input_decorator$_children(this).forEach$1(0, this.get$redepthChild()); }, visitChildren$1: function(visitor) { this.get$_input_decorator$_children(this).forEach$1(0, visitor); }, visitChildrenForSemantics$1: function(visitor) { var _this = this, t1 = _this._icon; if (t1 != null) visitor.call$1(t1); t1 = _this._prefix; if (t1 != null) visitor.call$1(t1); t1 = _this._prefixIcon; if (t1 != null) visitor.call$1(t1); t1 = _this._input_decorator$_label; if (t1 != null) visitor.call$1(t1); t1 = _this._hint; if (t1 != null) if (_this._input_decorator$_isFocused) visitor.call$1(t1); else if (_this._input_decorator$_label == null) visitor.call$1(t1); t1 = _this._input_decorator$_input; if (t1 != null) visitor.call$1(t1); t1 = _this._suffixIcon; if (t1 != null) visitor.call$1(t1); t1 = _this._suffix; if (t1 != null) visitor.call$1(t1); t1 = _this._input_decorator$_container; if (t1 != null) visitor.call$1(t1); t1 = _this._helperError; if (t1 != null) visitor.call$1(t1); t1 = _this._counter; if (t1 != null) visitor.call$1(t1); }, debugDescribeChildren$0: function() { var _this = this, value = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), t1 = new L._RenderDecoration_debugDescribeChildren_add(value); t1.call$2(_this._icon, "icon"); t1.call$2(_this._input_decorator$_input, "input"); t1.call$2(_this._input_decorator$_label, "label"); t1.call$2(_this._hint, "hint"); t1.call$2(_this._prefix, "prefix"); t1.call$2(_this._suffix, "suffix"); t1.call$2(_this._prefixIcon, "prefixIcon"); t1.call$2(_this._suffixIcon, "suffixIcon"); t1.call$2(_this._helperError, "helperError"); t1.call$2(_this._counter, "counter"); t1.call$2(_this._input_decorator$_container, "container"); return value; }, get$sizedByParent: function() { return false; }, _layoutLineBox$2: function(box, constraints) { var t1; if (box == null) return 0; box.layout$2$parentUsesSize(0, constraints, true); t1 = box.getDistanceToBaseline$1(C.TextBaseline_0); t1.toString; return t1; }, _interpolateThree$4: function(begin, middle, end, textAlignVertical) { var t1 = textAlignVertical.y; if (t1 <= 0) { if (begin >= middle) return middle; return begin + (middle - begin) * (t1 + 1); } if (middle >= end) return middle; return middle + (end - middle) * t1; }, computeMinIntrinsicWidth$1: function(height) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = _this._icon; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = _this._input_decorator$_decoration; t3 = _this._prefixIcon; t3 = t3 == null ? 0 : t3._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t3.get$computeMinIntrinsicWidth()); t4 = _this._prefix; t4 = t4 == null ? 0 : t4._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t4.get$computeMinIntrinsicWidth()); t5 = _this._input_decorator$_input; t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t5.get$computeMinIntrinsicWidth()); t6 = _this._hint; t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t6.get$computeMinIntrinsicWidth()); t6 = Math.max(H.checkNum(t5), H.checkNum(t6)); t5 = _this._suffix; t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t5.get$computeMinIntrinsicWidth()); t7 = _this._suffixIcon; t7 = t7 == null ? 0 : t7._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t7.get$computeMinIntrinsicWidth()); return t1 + t2.contentPadding.left + t3 + t4 + t6 + t5 + t7 + _this._input_decorator$_decoration.contentPadding.right; }, computeMaxIntrinsicWidth$1: function(height) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = _this._icon; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = _this._input_decorator$_decoration; t3 = _this._prefixIcon; t3 = t3 == null ? 0 : t3._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t3.get$computeMaxIntrinsicWidth()); t4 = _this._prefix; t4 = t4 == null ? 0 : t4._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t4.get$computeMaxIntrinsicWidth()); t5 = _this._input_decorator$_input; t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t5.get$computeMaxIntrinsicWidth()); t6 = _this._hint; t6 = t6 == null ? 0 : t6._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t6.get$computeMaxIntrinsicWidth()); t6 = Math.max(H.checkNum(t5), H.checkNum(t6)); t5 = _this._suffix; t5 = t5 == null ? 0 : t5._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t5.get$computeMaxIntrinsicWidth()); t7 = _this._suffixIcon; t7 = t7 == null ? 0 : t7._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t7.get$computeMaxIntrinsicWidth()); return t1 + t2.contentPadding.left + t3 + t4 + t6 + t5 + t7 + _this._input_decorator$_decoration.contentPadding.right; }, _input_decorator$_lineHeight$2: function(_, width, boxes) { var t1, height, _i, box, t2; for (t1 = boxes.length, height = 0, _i = 0; _i < boxes.length; boxes.length === t1 || (0, H.throwConcurrentModificationError)(boxes), ++_i) { box = boxes[_i]; if (box == null) continue; t2 = box._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, box.get$computeMinIntrinsicHeight()); height = Math.max(H.checkNum(t2), height); } return height; }, computeMinIntrinsicHeight$1: function(width) { var t2, densityOffset, t3, t4, t5, minContainerHeight, _this = this, t1 = type$.JSArray_nullable_RenderBox, subtextHeight = _this._input_decorator$_lineHeight$2(0, width, H.setRuntimeTypeInfo([_this._helperError, _this._counter], t1)); if (subtextHeight > 0) subtextHeight += 8; t2 = _this._input_decorator$_decoration.visualDensity; densityOffset = new P.Offset(t2.horizontal, t2.vertical).$mul(0, 4); t2 = _this._input_decorator$_decoration; t3 = _this._input_decorator$_label == null ? 0 : t2.floatingLabelHeight; t1 = _this._input_decorator$_lineHeight$2(0, width, H.setRuntimeTypeInfo([_this._prefix, _this._input_decorator$_input, _this._suffix], t1)); t4 = _this._input_decorator$_decoration; t5 = t4.isDense; t5.toString; minContainerHeight = t5 || _this._expands ? 0 : 48; return Math.max(t2.contentPadding.top + t3 + t1 + t4.contentPadding.bottom + densityOffset._dy, minContainerHeight) + subtextHeight; }, computeMaxIntrinsicHeight$1: function(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1: function(baseline) { var t1 = this._input_decorator$_input, t2 = t1.parentData; t2.toString; t2 = type$.BoxParentData._as(t2).offset._dy; t1 = t1.computeDistanceToActualBaseline$1(baseline); t1.toString; return t2 + t1; }, computeDryLayout$1: function(constraints) { return C.Size_0_0; }, performLayout$0: function() { var boxToBaseline, boxConstraints, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, inputWidth, suffixIconWidth, labelWidth, labelHeight, topHeight, counterHeight, helperErrorExists, helperErrorHeight, bottomHeight, densityOffset, hintHeight, inputDirectHeight, inputHeight, inputInternalBaseline, prefixHeight, suffixHeight, fixAboveInput, fixBelowInput, prefixIconHeight, suffixIconHeight, fixIconHeight, contentHeight, minContainerHeight, maxContainerHeight, containerHeight, interactiveAdjustment, overflow, textAlignVerticalFactor, baselineAdjustment, topInputBaseline, maxVerticalOffset, inputBaseline, outlineBaseline, subtextCounterBaseline, subtextCounterHeight, subtextHelperBaseline, subtextHelperHeight, subtextBaseline, subtextHeight, overallWidth, x, centerLayout, baselineLayout, left, right, start, end, labelX, _this = this, _null = null, _s80_ = string$.x60null_c, _box_0 = {}, t1 = type$.BoxConstraints, constraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._labelTransform = null; boxToBaseline = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_RenderBox, type$.double); boxConstraints = constraints.loosen$0(); t2 = _this._prefix; boxToBaseline.$indexSet(0, t2, _this._layoutLineBox$2(t2, boxConstraints)); t2 = _this._suffix; boxToBaseline.$indexSet(0, t2, _this._layoutLineBox$2(t2, boxConstraints)); t2 = _this._icon; boxToBaseline.$indexSet(0, t2, _this._layoutLineBox$2(t2, boxConstraints)); t2 = _this._prefixIcon; boxToBaseline.$indexSet(0, t2, _this._layoutLineBox$2(t2, boxConstraints)); t2 = _this._suffixIcon; boxToBaseline.$indexSet(0, t2, _this._layoutLineBox$2(t2, boxConstraints)); t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t3 = _this._icon; if (t3 == null) t3 = C.Size_0_0; else { t3 = t3._box$_size; t3.toString; } t4 = _this._input_decorator$_decoration; t5 = t4.contentPadding; t6 = _this._prefixIcon; if (t6 == null) t6 = C.Size_0_0; else { t6 = t6._box$_size; t6.toString; } t7 = _this._prefix; if (t7 == null) t7 = C.Size_0_0; else { t7 = t7._box$_size; t7.toString; } t8 = _this._suffix; if (t8 == null) t8 = C.Size_0_0; else { t8 = t8._box$_size; t8.toString; } t9 = _this._suffixIcon; t10 = t9 == null; if (t10) t11 = C.Size_0_0; else { t11 = t9._box$_size; t11.toString; } inputWidth = Math.max(0, t2 - (t3._dx + t5.left + t6._dx + t7._dx + t8._dx + t11._dx + t5.right)); t5 = P.lerpDouble(1, 1.3333333333333333, t4.floatingLabelProgress); t5.toString; if (t10) t2 = C.Size_0_0; else { t2 = t9._box$_size; t2.toString; } suffixIconWidth = t2._dx; if (t4.border.get$isOutline()) { t2 = P.lerpDouble(suffixIconWidth, 0, _this._input_decorator$_decoration.floatingLabelProgress); t2.toString; suffixIconWidth = t2; } t1 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t2 = _this._icon; if (t2 == null) t2 = C.Size_0_0; else { t2 = t2._box$_size; t2.toString; } t3 = _this._input_decorator$_decoration.contentPadding; t4 = _this._prefixIcon; if (t4 == null) t4 = C.Size_0_0; else { t4 = t4._box$_size; t4.toString; } labelWidth = Math.max(0, t1 - (t2._dx + t3.left + t4._dx + suffixIconWidth + t3.right)); t3 = _this._input_decorator$_label; boxToBaseline.$indexSet(0, t3, _this._layoutLineBox$2(t3, boxConstraints.copyWith$1$maxWidth(labelWidth * t5))); t5 = _this._hint; boxToBaseline.$indexSet(0, t5, _this._layoutLineBox$2(t5, boxConstraints.copyWith$2$maxWidth$minWidth(inputWidth, inputWidth))); t5 = _this._counter; boxToBaseline.$indexSet(0, t5, _this._layoutLineBox$2(t5, boxConstraints)); t5 = _this._helperError; t3 = _this._icon; if (t3 == null) t1 = C.Size_0_0; else { t1 = t3._box$_size; t1.toString; } t2 = _this._counter; if (t2 == null) t2 = C.Size_0_0; else { t2 = t2._box$_size; t2.toString; } boxToBaseline.$indexSet(0, t5, _this._layoutLineBox$2(t5, boxConstraints.copyWith$1$maxWidth(Math.max(0, boxConstraints.maxWidth - t1._dx - t2._dx - _this._input_decorator$_decoration.contentPadding.get$horizontal())))); labelHeight = _this._input_decorator$_label == null ? 0 : _this._input_decorator$_decoration.floatingLabelHeight; if (_this._input_decorator$_decoration.border.get$isOutline()) { t1 = boxToBaseline.$index(0, _this._input_decorator$_label); t1.toString; topHeight = Math.max(labelHeight - t1, 0); } else topHeight = labelHeight; t1 = _this._counter; if (t1 == null) counterHeight = 0; else { t1 = boxToBaseline.$index(0, t1); t1.toString; counterHeight = t1 + 8; } t1 = _this._helperError; if (t1 == null) t2 = _null; else { t2 = t1._box$_size; t2.toString; } helperErrorExists = t2 != null && t1._box$_size._dy > 0; helperErrorHeight = !helperErrorExists ? 0 : t1._box$_size._dy + 8; bottomHeight = Math.max(counterHeight, helperErrorHeight); t1 = _this._input_decorator$_decoration.visualDensity; densityOffset = new P.Offset(t1.horizontal, t1.vertical).$mul(0, 4); t1 = _this._input_decorator$_input; t2 = _this._input_decorator$_decoration.contentPadding; t3 = densityOffset._dy; t4 = t3 / 2; boxToBaseline.$indexSet(0, t1, _this._layoutLineBox$2(t1, boxConstraints.deflate$1(new V.EdgeInsets(0, t2.top + topHeight + t4, 0, t2.bottom + bottomHeight + t4)).copyWith$2$maxWidth$minWidth(inputWidth, inputWidth))); t1 = _this._hint; hintHeight = t1 == null ? 0 : t1._box$_size._dy; t1 = _this._input_decorator$_input; inputDirectHeight = t1 == null ? 0 : t1._box$_size._dy; inputHeight = Math.max(H.checkNum(hintHeight), H.checkNum(inputDirectHeight)); t1 = boxToBaseline.$index(0, t1); t1.toString; t2 = boxToBaseline.$index(0, _this._hint); t2.toString; inputInternalBaseline = Math.max(t1, t2); t2 = _this._prefix; prefixHeight = t2 == null ? _null : t2._box$_size._dy; if (prefixHeight == null) prefixHeight = 0; t1 = _this._suffix; suffixHeight = t1 == null ? _null : t1._box$_size._dy; if (suffixHeight == null) suffixHeight = 0; t1 = boxToBaseline.$index(0, t2); t1.toString; t2 = boxToBaseline.$index(0, _this._suffix); t2.toString; fixAboveInput = Math.max(0, Math.max(t1, t2) - inputInternalBaseline); t2 = boxToBaseline.$index(0, _this._prefix); t2.toString; t1 = boxToBaseline.$index(0, _this._suffix); t1.toString; fixBelowInput = Math.max(0, Math.max(prefixHeight - t2, suffixHeight - t1) - (inputHeight - inputInternalBaseline)); t1 = _this._prefixIcon; prefixIconHeight = t1 == null ? 0 : t1._box$_size._dy; t1 = _this._suffixIcon; suffixIconHeight = t1 == null ? 0 : t1._box$_size._dy; fixIconHeight = Math.max(H.checkNum(prefixIconHeight), H.checkNum(suffixIconHeight)); t1 = _this._input_decorator$_decoration; t2 = t1.contentPadding; contentHeight = Math.max(fixIconHeight, topHeight + t2.top + fixAboveInput + inputHeight + fixBelowInput + t2.bottom + t3); t1 = t1.isDense; t1.toString; if (!t1) t1 = _this._expands; else t1 = true; minContainerHeight = t1 ? 0 : 48; maxContainerHeight = boxConstraints.maxHeight - bottomHeight; containerHeight = _this._expands ? maxContainerHeight : Math.min(Math.max(contentHeight, minContainerHeight), maxContainerHeight); interactiveAdjustment = minContainerHeight > contentHeight ? (minContainerHeight - contentHeight) / 2 : 0; overflow = Math.max(0, contentHeight - maxContainerHeight); t1 = _this._textAlignVertical; if (t1 == null) t1 = _this.get$_isOutlineAligned() ? C.TextAlignVertical_0 : C.TextAlignVertical_m1; textAlignVerticalFactor = (t1.y + 1) / 2; baselineAdjustment = fixAboveInput - overflow * (1 - textAlignVerticalFactor); t1 = _this._input_decorator$_decoration.contentPadding; t2 = t1.top; topInputBaseline = t2 + topHeight + inputInternalBaseline + baselineAdjustment + interactiveAdjustment; maxVerticalOffset = containerHeight - t2 - topHeight - t1.bottom - (fixAboveInput + inputHeight + fixBelowInput); inputBaseline = topInputBaseline + maxVerticalOffset * textAlignVerticalFactor + t4; t4 = _this._textAlignVertical; if (t4 == null) t1 = _this.get$_isOutlineAligned() ? C.TextAlignVertical_0 : C.TextAlignVertical_m1; else t1 = t4; outlineBaseline = _this._interpolateThree$4(topInputBaseline, inputInternalBaseline + baselineAdjustment / 2 + (containerHeight - (2 + inputHeight)) / 2, topInputBaseline + maxVerticalOffset, t1); t1 = _this._counter; if (t1 != null) { t1 = boxToBaseline.$index(0, t1); t1.toString; subtextCounterBaseline = containerHeight + 8 + t1; subtextCounterHeight = _this._counter._box$_size._dy + 8; } else { subtextCounterBaseline = 0; subtextCounterHeight = 0; } if (helperErrorExists) { t1 = boxToBaseline.$index(0, _this._helperError); t1.toString; subtextHelperBaseline = containerHeight + 8 + t1; subtextHelperHeight = helperErrorHeight; } else { subtextHelperBaseline = 0; subtextHelperHeight = 0; } subtextBaseline = Math.max(subtextCounterBaseline, subtextHelperBaseline); subtextHeight = Math.max(subtextCounterHeight, subtextHelperHeight); overallWidth = constraints.maxWidth; t1 = _this._input_decorator$_container; if (t1 != null) { t2 = _this._icon; if (t2 == null) t2 = C.Size_0_0; else { t2 = t2._box$_size; t2.toString; } t1.layout$2$parentUsesSize(0, S.BoxConstraints$tightFor(containerHeight, overallWidth - t2._dx), true); switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: x = 0; break; case C.TextDirection_1: t1 = _this._icon; if (t1 == null) t1 = C.Size_0_0; else { t1 = t1._box$_size; t1.toString; } x = t1._dx; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._input_decorator$_container.parentData; t1.toString; type$.BoxParentData._as(t1).offset = new P.Offset(x, 0); } _box_0.height = null; centerLayout = new L._RenderDecoration_performLayout_centerLayout(_box_0); _box_0.baseline = null; baselineLayout = new L._RenderDecoration_performLayout_baselineLayout(_box_0, new L._RenderDecorationLayout(boxToBaseline, inputBaseline, outlineBaseline, subtextBaseline, containerHeight, subtextHeight)); t1 = _this._input_decorator$_decoration.contentPadding; left = t1.left; right = overallWidth - t1.right; _box_0.height = containerHeight; _box_0.baseline = _this.get$_isOutlineAligned() ? outlineBaseline : inputBaseline; t1 = _this._icon; if (t1 != null) { switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: x = overallWidth - t1._box$_size._dx; break; case C.TextDirection_1: x = 0; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } centerLayout.call$2(t1, x); } switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: t1 = _this._icon; if (t1 == null) t1 = C.Size_0_0; else { t1 = t1._box$_size; t1.toString; } start = right - t1._dx; t1 = _this._prefixIcon; if (t1 != null) { start += _this._input_decorator$_decoration.contentPadding.left; start -= centerLayout.call$2(t1, start - t1._box$_size._dx); } t1 = _this._input_decorator$_label; if (t1 != null) { t2 = t1._box$_size; centerLayout.call$2(t1, start - t2._dx); } t1 = _this._prefix; if (t1 != null) start -= baselineLayout.call$2(t1, start - t1._box$_size._dx); t1 = _this._input_decorator$_input; if (t1 != null) baselineLayout.call$2(t1, start - t1._box$_size._dx); t1 = _this._hint; if (t1 != null) baselineLayout.call$2(t1, start - t1._box$_size._dx); t1 = _this._suffixIcon; if (t1 != null) { end = left - _this._input_decorator$_decoration.contentPadding.left; end += centerLayout.call$2(t1, end); } else end = left; t1 = _this._suffix; if (t1 != null) baselineLayout.call$2(t1, end); break; case C.TextDirection_1: t1 = _this._icon; if (t1 == null) t1 = C.Size_0_0; else { t1 = t1._box$_size; t1.toString; } start = left + t1._dx; t1 = _this._prefixIcon; if (t1 != null) { start -= _this._input_decorator$_decoration.contentPadding.left; start += centerLayout.call$2(t1, start); } t1 = _this._input_decorator$_label; if (t1 != null) centerLayout.call$2(t1, start); t1 = _this._prefix; if (t1 != null) start += baselineLayout.call$2(t1, start); t1 = _this._input_decorator$_input; if (t1 != null) baselineLayout.call$2(t1, start); t1 = _this._hint; if (t1 != null) baselineLayout.call$2(t1, start); t1 = _this._suffixIcon; if (t1 != null) { end = right + _this._input_decorator$_decoration.contentPadding.right; end -= centerLayout.call$2(t1, end - t1._box$_size._dx); } else end = right; t1 = _this._suffix; if (t1 != null) baselineLayout.call$2(t1, end - t1._box$_size._dx); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._helperError; t2 = t1 == null; if (!t2 || _this._counter != null) { _box_0.height = subtextHeight; _box_0.baseline = subtextBaseline; switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: if (!t2) { t2 = t1._box$_size._dx; t3 = _this._icon; if (t3 == null) t3 = C.Size_0_0; else { t3 = t3._box$_size; t3.toString; } baselineLayout.call$2(t1, right - t2 - t3._dx); } t1 = _this._counter; if (t1 != null) baselineLayout.call$2(t1, left); break; case C.TextDirection_1: if (!t2) { t2 = _this._icon; if (t2 == null) t2 = C.Size_0_0; else { t2 = t2._box$_size; t2.toString; } baselineLayout.call$2(t1, left + t2._dx); } t1 = _this._counter; if (t1 != null) baselineLayout.call$2(t1, right - t1._box$_size._dx); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } t1 = _this._input_decorator$_label; if (t1 != null) { t2 = t1.parentData; t2.toString; labelX = type$.BoxParentData._as(t2).offset._dx; switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: _this._input_decorator$_decoration.borderGap.set$start(0, labelX + t1._box$_size._dx); break; case C.TextDirection_1: t1 = _this._input_decorator$_decoration; t2 = _this._icon; if (t2 == null) t2 = C.Size_0_0; else { t2 = t2._box$_size; t2.toString; } t1.borderGap.set$start(0, labelX - t2._dx); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this._input_decorator$_decoration.borderGap.set$extent(_this._input_decorator$_label._box$_size._dx * 0.75); } else { _this._input_decorator$_decoration.borderGap.set$start(0, _null); _this._input_decorator$_decoration.borderGap.set$extent(0); } _this._box$_size = constraints.constrain$1(new P.Size(overallWidth, containerHeight + subtextHeight)); }, _paintLabel$2: function(context, offset) { var t1 = this._input_decorator$_label; t1.toString; context.paintChild$2(t1, offset); }, paint$2: function(context, offset) { var t1, t2, labelOffset, labelHeight, t, isOutlineBorder, floatingY, dx, t3, t4, _this = this, doPaint = new L._RenderDecoration_paint_doPaint(context, offset); doPaint.call$1(_this._input_decorator$_container); t1 = _this._input_decorator$_label; if (t1 != null) { t2 = t1.parentData; t2.toString; labelOffset = type$.BoxParentData._as(t2).offset; labelHeight = t1._box$_size._dy; t1 = _this._input_decorator$_decoration; t2 = t1.border; t2.borderSide.toString; t = t1.floatingLabelProgress; isOutlineBorder = t2.get$isOutline(); floatingY = isOutlineBorder ? -labelHeight * 0.25 : _this._input_decorator$_decoration.contentPadding.top; t1 = P.lerpDouble(1, 0.75, t); t1.toString; switch (_this._input_decorator$_textDirection) { case C.TextDirection_0: dx = labelOffset._dx + _this._input_decorator$_label._box$_size._dx * (1 - t1); break; case C.TextDirection_1: dx = labelOffset._dx; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = labelOffset._dy; t3 = P.lerpDouble(0, floatingY - t2, t); t3.toString; t4 = new E.Matrix4(new Float64Array(16)); t4.setIdentity$0(); t4.translate$2(0, dx, t2 + t3); t4.scale$1(0, t1); _this._labelTransform = t4; t4 = _this.get$_needsCompositing(); t1 = _this._labelTransform; t1.toString; _this._transformLayer = context.pushTransform$5$oldLayer(t4, offset, t1, _this.get$_paintLabel(), _this._transformLayer); } else _this._transformLayer = null; doPaint.call$1(_this._icon); doPaint.call$1(_this._prefix); doPaint.call$1(_this._suffix); doPaint.call$1(_this._prefixIcon); doPaint.call$1(_this._suffixIcon); doPaint.call$1(_this._hint); doPaint.call$1(_this._input_decorator$_input); doPaint.call$1(_this._helperError); doPaint.call$1(_this._counter); }, hitTestSelf$1: function(position) { return true; }, hitTestChildren$2$position: function(result, position) { var t1, t2, t3, t4, offset; for (t1 = this.get$_input_decorator$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")), t2 = type$.BoxParentData; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = t3.parentData; t4.toString; offset = t2._as(t4).offset; if (result.addWithPaintOffset$3$hitTest$offset$position(new L._RenderDecoration_hitTestChildren_closure(position, offset, t3), offset, position)) return true; } return false; }, applyPaintTransform$2: function(child, transform) { var labelOffset, _this = this, t1 = _this._input_decorator$_label; if (child == t1 && _this._labelTransform != null) { t1 = t1.parentData; t1.toString; labelOffset = type$.BoxParentData._as(t1).offset; t1 = _this._labelTransform; t1.toString; transform.multiply$1(0, t1); transform.translate$2(0, -labelOffset._dx, -labelOffset._dy); } _this.super$RenderBox$applyPaintTransform(child, transform); } }; L._RenderDecoration_debugDescribeChildren_add.prototype = { call$2: function(child, $name) { if (child != null) this.value.push(Y.DiagnosticableTreeNode$($name, null, child)); }, $signature: 583 }; L._RenderDecoration_performLayout_centerLayout.prototype = { call$2: function(box, x) { var t2, t3, t1 = box.parentData; t1.toString; type$.BoxParentData._as(t1); t2 = this._box_0.height; t2.toString; t3 = box._box$_size; t1.offset = new P.Offset(x, (t2 - t3._dy) / 2); return t3._dx; }, $signature: 203 }; L._RenderDecoration_performLayout_baselineLayout.prototype = { call$2: function(box, x) { var t2, t3, t1 = box.parentData; t1.toString; type$.BoxParentData._as(t1); t2 = this._box_0.baseline; t2.toString; t3 = this.layout.boxToBaseline.$index(0, box); t3.toString; t1.offset = new P.Offset(x, t2 - t3); return box._box$_size._dx; }, $signature: 203 }; L._RenderDecoration_paint_doPaint.prototype = { call$1: function(child) { var t1; if (child != null) { t1 = child.parentData; t1.toString; this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, $signature: 582 }; L._RenderDecoration_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 285 }; L._DecorationElement.prototype = { get$widget: function() { return type$._Decorator._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, visitChildren$1: function(visitor) { var t1 = this.slotToChild; t1.get$values(t1).forEach$1(0, visitor); }, forgetChild$1: function(child) { this.slotToChild.remove$1(0, child._slot); this.super$Element$forgetChild(child); }, _mountChild$2: function(widget, slot) { var t1 = this.slotToChild, oldChild = t1.$index(0, slot), newChild = this.updateChild$3(oldChild, widget, slot); if (oldChild != null) t1.remove$1(0, slot); if (newChild != null) t1.$indexSet(0, slot, newChild); }, mount$2: function($parent, newSlot) { var t1, _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); t1 = type$._Decorator; _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.icon, C._DecorationSlot_0); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.input, C._DecorationSlot_1); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.label, C._DecorationSlot_2); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.hint, C._DecorationSlot_3); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.prefix, C._DecorationSlot_4); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.suffix, C._DecorationSlot_5); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.prefixIcon, C._DecorationSlot_6); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.suffixIcon, C._DecorationSlot_7); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.helperError, C._DecorationSlot_8); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.counter, C._DecorationSlot_9); _this._mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.container, C._DecorationSlot_10); }, _updateChild$2: function(widget, slot) { var t1 = this.slotToChild, oldChild = t1.$index(0, slot), newChild = this.updateChild$3(oldChild, widget, slot); if (oldChild != null) t1.remove$1(0, slot); if (newChild != null) t1.$indexSet(0, slot, newChild); }, update$1: function(_, newWidget) { var t1, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = type$._Decorator; _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.icon, C._DecorationSlot_0); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.input, C._DecorationSlot_1); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.label, C._DecorationSlot_2); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.hint, C._DecorationSlot_3); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.prefix, C._DecorationSlot_4); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.suffix, C._DecorationSlot_5); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.prefixIcon, C._DecorationSlot_6); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.suffixIcon, C._DecorationSlot_7); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.helperError, C._DecorationSlot_8); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.counter, C._DecorationSlot_9); _this._updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).decoration.container, C._DecorationSlot_10); }, _updateRenderObject$2: function(child, slot) { var t1, _this = this; switch (slot) { case C._DecorationSlot_0: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._icon = t1._updateChild$3(t1._icon, child, C._DecorationSlot_0); break; case C._DecorationSlot_1: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._input_decorator$_input = t1._updateChild$3(t1._input_decorator$_input, child, C._DecorationSlot_1); break; case C._DecorationSlot_2: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._input_decorator$_label = t1._updateChild$3(t1._input_decorator$_label, child, C._DecorationSlot_2); break; case C._DecorationSlot_3: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._hint = t1._updateChild$3(t1._hint, child, C._DecorationSlot_3); break; case C._DecorationSlot_4: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._prefix = t1._updateChild$3(t1._prefix, child, C._DecorationSlot_4); break; case C._DecorationSlot_5: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._suffix = t1._updateChild$3(t1._suffix, child, C._DecorationSlot_5); break; case C._DecorationSlot_6: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._prefixIcon = t1._updateChild$3(t1._prefixIcon, child, C._DecorationSlot_6); break; case C._DecorationSlot_7: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._suffixIcon = t1._updateChild$3(t1._suffixIcon, child, C._DecorationSlot_7); break; case C._DecorationSlot_8: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._helperError = t1._updateChild$3(t1._helperError, child, C._DecorationSlot_8); break; case C._DecorationSlot_9: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._counter = t1._updateChild$3(t1._counter, child, C._DecorationSlot_9); break; case C._DecorationSlot_10: t1 = type$._RenderDecoration._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._input_decorator$_container = t1._updateChild$3(t1._input_decorator$_container, child, C._DecorationSlot_10); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, insertRenderObjectChild$2: function(child, slot) { this._updateRenderObject$2(type$.RenderBox._as(child), slot); }, removeRenderObjectChild$2: function(child, slot) { this._updateRenderObject$2(null, slot); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { } }; L._Decorator.prototype = { createElement$0: function(_) { var t1 = type$.Element_2, t2 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t2; return new L._DecorationElement(P.LinkedHashMap_LinkedHashMap$_empty(type$._DecorationSlot, t1), t2, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, createRenderObject$1: function(context) { var _this = this, t1 = new L._RenderDecoration(P.LinkedHashMap_LinkedHashMap$_empty(type$._DecorationSlot, type$.RenderBox), _this.decoration, _this.textDirection, _this.textBaseline, _this.textAlignVertical, _this.isFocused, _this.expands); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$decoration(0, _this.decoration); renderObject.set$expands(_this.expands); renderObject.set$isFocused(_this.isFocused); renderObject.set$textAlignVertical(_this.textAlignVertical); renderObject.set$textBaseline(0, _this.textBaseline); renderObject.set$textDirection(0, _this.textDirection); } }; L.InputDecorator.prototype = { createState$0: function() { return new L._InputDecoratorState(new L._InputBorderGap(new P.LinkedList(type$.LinkedList__ListenerEntry)), null, C._StateLifecycle_0); }, get$isEmpty: function(receiver) { return this.isEmpty; } }; L._InputDecoratorState.prototype = { get$_floatingLabelController: function() { var t1 = this.___InputDecoratorState__floatingLabelController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingLabelController")) : t1; }, get$_shakingLabelController: function() { var t1 = this.___InputDecoratorState__shakingLabelController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_shakingLabelController")) : t1; }, initState$0: function() { var t1, t2, t3, labelIsInitiallyFloating, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget; t2 = t1.decoration; t3 = t2.floatingLabelBehavior; if (t3 !== C.FloatingLabelBehavior_2) if (t3 !== C.FloatingLabelBehavior_0) { if (t1.isEmpty) t1 = t1.isFocused && t2.enabled; else t1 = true; labelIsInitiallyFloating = t1; } else labelIsInitiallyFloating = false; else labelIsInitiallyFloating = true; _this.___InputDecoratorState__floatingLabelController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, labelIsInitiallyFloating ? 1 : 0, _this); t1 = _this.get$_floatingLabelController(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_input_decorator$_handleChange()); _this.___InputDecoratorState__shakingLabelController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, _this); }, didChangeDependencies$0: function() { this.super$__InputDecoratorState_State_TickerProviderStateMixin$didChangeDependencies(); this._effectiveDecoration = null; }, dispose$0: function(_) { this.get$_floatingLabelController().dispose$0(0); this.get$_shakingLabelController().dispose$0(0); this.super$__InputDecoratorState_State_TickerProviderStateMixin$dispose(0); }, _input_decorator$_handleChange$0: function() { this.setState$1(new L._InputDecoratorState__handleChange_closure()); }, get$decoration: function(_) { var t2, _this = this, t1 = _this._effectiveDecoration; if (t1 == null) { t1 = _this._widget.decoration; t2 = _this._framework$_element; t2.toString; t2 = _this._effectiveDecoration = t1.applyDefaults$1(K.Theme_of(t2).inputDecorationTheme); t1 = t2; } return t1; }, get$isEmpty: function(_) { return this._widget.isEmpty; }, get$_floatingLabelEnabled: function() { var t1, _this = this; _this.get$decoration(_this).toString; t1 = _this.get$decoration(_this); return t1.floatingLabelBehavior !== C.FloatingLabelBehavior_0; }, didUpdateWidget$1: function(old) { var t1, t2, t3, floatBehaviorChanged, errorText, _this = this; _this.super$State$didUpdateWidget(old); t1 = _this._widget.decoration; t2 = old.decoration; if (!t1.$eq(0, t2)) _this._effectiveDecoration = null; t1 = _this._widget; t3 = t1.decoration; floatBehaviorChanged = t3.floatingLabelBehavior != t2.floatingLabelBehavior || false; if (t1.isEmpty) t1 = t1.isFocused && t3.enabled; else t1 = true; if (old.isEmpty) t3 = old.isFocused && t2.enabled; else t3 = true; if (t1 !== t3 || floatBehaviorChanged) { if (_this.get$_floatingLabelEnabled()) { t1 = _this._widget; if (t1.isEmpty) t3 = t1.isFocused && t1.decoration.enabled; else t3 = true; t1 = t3 || t1.decoration.floatingLabelBehavior === C.FloatingLabelBehavior_2; } else t1 = false; if (t1) _this.get$_floatingLabelController().forward$0(0); else _this.get$_floatingLabelController().reverse$0(0); } errorText = _this.get$decoration(_this).errorText; t1 = _this.get$_floatingLabelController(); if (t1.get$status(t1) === C.AnimationStatus_3 && errorText != null && errorText !== t2.errorText) { t1 = _this.get$_shakingLabelController(); t1.set$value(0, 0); t1.forward$0(0); } }, _getActiveColor$1: function(themeData) { if (this._widget.isFocused) return themeData.colorScheme.primary; return themeData.hintColor; }, _getDefaultBorderColor$1: function(themeData) { var t1, enabledColor, hoverColor, _this = this; if (_this._widget.isFocused) return themeData.colorScheme.primary; t1 = _this.get$decoration(_this).filled; t1.toString; if (t1) return themeData.hintColor; t1 = themeData.colorScheme.onSurface.value; enabledColor = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); if (_this._widget.isHovering && _this.get$decoration(_this).enabled) { _this.get$decoration(_this).toString; hoverColor = themeData.hoverColor; t1 = hoverColor.value; return P.Color_alphaBlend(P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255), enabledColor); } return enabledColor; }, _getFillColor$1: function(themeData) { var t1, _this = this; if (_this.get$decoration(_this).filled !== true) return C.Color_0; if (_this.get$decoration(_this).fillColor != null) { t1 = _this.get$decoration(_this).fillColor; t1.toString; return t1; } switch (themeData.colorScheme.brightness) { case C.Brightness_0: return _this.get$decoration(_this).enabled ? C.Color_452984831 : C.Color_234881023; case C.Brightness_1: return _this.get$decoration(_this).enabled ? C.Color_167772160 : C.Color_83886080; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getHoverColor$1: function(themeData) { var t1, _this = this; if (_this.get$decoration(_this).filled != null) { t1 = _this.get$decoration(_this).filled; t1.toString; t1 = !t1 || _this._widget.isFocused || !_this.get$decoration(_this).enabled; } else t1 = true; if (t1) return C.Color_0; _this.get$decoration(_this).toString; themeData.toString; return themeData.hoverColor; }, _getDefaultIconColor$1: function(themeData) { if (!this.get$decoration(this).enabled && !this._widget.isFocused) return themeData.disabledColor; switch (themeData.colorScheme.brightness) { case C.Brightness_0: return C.Color_3019898879; case C.Brightness_1: return C.Color_1929379840; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_hasInlineLabel: function() { var _this = this, t1 = _this._widget; if (t1.isEmpty) t1 = t1.isFocused && t1.decoration.enabled; else t1 = true; return !t1 && _this.get$decoration(_this).labelText != null && _this.get$decoration(_this).floatingLabelBehavior !== C.FloatingLabelBehavior_2; }, _getHelperStyle$1: function(themeData) { var _this = this, color = _this.get$decoration(_this).enabled ? themeData.hintColor : C.Color_0; return themeData.textTheme.caption.copyWith$1$color(color).merge$1(_this.get$decoration(_this).helperStyle); }, _getDefaultBorder$1: function(themeData) { var borderColor, borderWeight, border, _this = this, t1 = _this.get$decoration(_this).border; if (J.$eq$(t1 == null ? null : t1.borderSide, C.BorderSide_m7u)) { t1 = _this.get$decoration(_this).border; t1.toString; return t1; } if (_this.get$decoration(_this).enabled || _this._widget.isFocused) borderColor = _this.get$decoration(_this).errorText == null ? _this._getDefaultBorderColor$1(themeData) : themeData.errorColor; else { if (_this.get$decoration(_this).filled === true) { t1 = _this.get$decoration(_this).border; if (t1 == null) t1 = null; else { t1.get$isOutline(); t1 = false; } t1 = t1 !== true; } else t1 = false; borderColor = t1 ? C.Color_0 : themeData.disabledColor; } _this.get$decoration(_this).toString; t1 = _this.get$decoration(_this); t1 = J.$eq$(t1 == null ? null : t1.border, C._NoInputBorder_EYU) || !_this.get$decoration(_this).enabled; if (t1) borderWeight = 0; else borderWeight = _this._widget.isFocused ? 2 : 1; border = _this.get$decoration(_this).border; if (border == null) border = C.UnderlineInputBorder_4YI; return border.copyWith$1$borderSide(new Y.BorderSide(borderColor, borderWeight, C.BorderStyle_1)); }, build$1: function(_, context) { var t3, inlineStyle, hintStyle, hint, t4, t5, t6, t7, isError, border, t8, t9, inlineLabelStyle, label, t10, t11, color, style, activeColor, decorationIsDense, iconSize, iconColor, suffixIcon, t12, t13, counter, t14, t15, t16, decorationContentPadding, floatingLabelHeight, contentPadding, t17, t18, t19, _this = this, _null = null, themeData = K.Theme_of(context), t1 = themeData.textTheme, t2 = t1.subtitle1; t2.toString; t3 = t2.merge$1(_this._widget.baseStyle); inlineStyle = t3.copyWith$1$color(_this.get$decoration(_this).enabled ? themeData.hintColor : themeData.disabledColor); t3 = inlineStyle.textBaseline; t3.toString; hintStyle = inlineStyle.merge$1(_this.get$decoration(_this).hintStyle); if (_this.get$decoration(_this).hintText == null) hint = _null; else { t4 = _this._widget.isEmpty && !_this.get$_hasInlineLabel() ? 1 : 0; t5 = _this.get$decoration(_this).hintText; t5.toString; t6 = _this.get$decoration(_this).hintTextDirection; t7 = _this._widget.textAlign; hint = G.AnimatedOpacity$(true, L.Text$(t5, _null, _this.get$decoration(_this).hintMaxLines, C.TextOverflow_2, _null, _null, hintStyle, t7, t6, _null), C.Cubic_ifx, C.Duration_200000, t4); } isError = _this.get$decoration(_this).errorText != null; if (!_this.get$decoration(_this).enabled) border = isError ? _this.get$decoration(_this).errorBorder : _this.get$decoration(_this).disabledBorder; else if (_this._widget.isFocused) border = isError ? _this.get$decoration(_this).focusedErrorBorder : _this.get$decoration(_this).focusedBorder; else border = isError ? _this.get$decoration(_this).errorBorder : _this.get$decoration(_this).enabledBorder; if (border == null) border = _this._getDefaultBorder$1(themeData); t4 = _this._borderGap; t5 = _this.get$_floatingLabelController(); t5.toString; t6 = _this._getFillColor$1(themeData); t7 = _this._getHoverColor$1(themeData); t8 = _this._widget.isHovering && _this.get$decoration(_this).enabled; t9 = _this.get$decoration(_this); inlineLabelStyle = inlineStyle.merge$1(t9.labelStyle); if (_this.get$decoration(_this).labelText == null) label = _null; else { t9 = _this.get$_shakingLabelController(); t9.toString; t10 = _this.get$_hasInlineLabel() || _this.get$_floatingLabelEnabled() ? 1 : 0; t11 = _this._widget; if (t11.isEmpty) t11 = t11.isFocused && t11.decoration.enabled; else t11 = true; if (t11) { if (_this.get$decoration(_this).errorText != null) { t11 = _this.get$decoration(_this).errorStyle; t11 = t11 == null ? _null : t11.color; color = t11 == null ? themeData.errorColor : t11; } else color = _this._getActiveColor$1(themeData); style = t2.merge$1(_this._widget.baseStyle); t2 = style.copyWith$1$color(_this.get$decoration(_this).enabled ? color : themeData.disabledColor).merge$1(_this.get$decoration(_this).labelStyle); } else t2 = inlineLabelStyle; t11 = _this.get$decoration(_this).labelText; t11.toString; label = new L._Shaker(G.AnimatedOpacity$(false, G.AnimatedDefaultTextStyle$(L.Text$(t11, _null, _null, C.TextOverflow_2, _null, _null, _null, _this._widget.textAlign, _null, _null), C.Cubic_ifx, C.Duration_200000, true, t2), C.Cubic_ifx, C.Duration_200000, t10), t9, _null); } _this.get$decoration(_this).toString; t2 = _this.get$decoration(_this); t2.toString; _this.get$decoration(_this).toString; t2 = _this.get$decoration(_this); t2.toString; activeColor = _this._getActiveColor$1(themeData); decorationIsDense = _this.get$decoration(_this).isDense === true; iconSize = decorationIsDense ? 18 : 24; iconColor = _this._widget.isFocused ? activeColor : _this._getDefaultIconColor$1(themeData); _this.get$decoration(_this).toString; _this.get$decoration(_this).toString; if (_this.get$decoration(_this).suffixIcon == null) suffixIcon = _null; else { _this.get$decoration(_this).toString; t2 = themeData.visualDensity.effectiveConstraints$1(C.BoxConstraints_mlX0); t9 = _this.get$decoration(_this).suffixIcon; t9.toString; suffixIcon = T.Center$(new T.ConstrainedBox(t2, Y.IconTheme_merge(t9, new T.IconThemeData(iconColor, _null, iconSize)), _null), 1, 1); } t2 = _this._widget.textAlign; t9 = _this.get$decoration(_this).helperText; t10 = _this._getHelperStyle$1(themeData); t11 = _this.get$decoration(_this).helperMaxLines; t12 = _this.get$decoration(_this).errorText; color = _this.get$decoration(_this).enabled ? themeData.errorColor : C.Color_0; t1 = t1.caption.copyWith$1$color(color).merge$1(_this.get$decoration(_this).errorStyle); t13 = _this.get$decoration(_this).errorMaxLines; if (_this.get$decoration(_this).counter != null) counter = _this.get$decoration(_this).counter; else if (_this.get$decoration(_this).counterText != null && _this.get$decoration(_this).counterText !== "") { t14 = _this._widget.isFocused; t15 = _this.get$decoration(_this).counterText; t15.toString; t16 = _this._getHelperStyle$1(themeData).merge$1(_this.get$decoration(_this).counterStyle); t16 = L.Text$(t15, _null, _null, C.TextOverflow_2, _this.get$decoration(_this).semanticCounterText, _null, t16, _null, _null, _null); counter = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t14, _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, t16, _null); } else counter = _null; t14 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t14.toString; decorationContentPadding = _this.get$decoration(_this).contentPadding; if (decorationContentPadding == null) decorationContentPadding = _null; _this.get$decoration(_this).toString; if (!border.get$isOutline()) { t15 = inlineLabelStyle.fontSize; t15.toString; floatingLabelHeight = (4 + 0.75 * t15) * F.MediaQuery_textScaleFactorOf(context); if (_this.get$decoration(_this).filled === true) if (decorationContentPadding == null) contentPadding = decorationIsDense ? C.EdgeInsets_12_8_12_8 : C.EdgeInsets_12_12_12_12; else contentPadding = decorationContentPadding; else if (decorationContentPadding == null) contentPadding = decorationIsDense ? C.EdgeInsets_0_8_0_8 : C.EdgeInsets_0_12_0_12; else contentPadding = decorationContentPadding; } else { if (decorationContentPadding == null) contentPadding = decorationIsDense ? C.EdgeInsets_12_20_12_12 : C.EdgeInsets_12_24_12_16; else contentPadding = decorationContentPadding; floatingLabelHeight = 0; } _this.get$decoration(_this).toString; t15 = _this.get$_floatingLabelController().get$_animation_controller$_value(); t16 = _this.get$decoration(_this).alignLabelWithHint; t17 = _this.get$decoration(_this).isDense; t18 = themeData.visualDensity; t19 = _this._widget; return new L._Decorator(new L._Decoration(contentPadding, false, floatingLabelHeight, t15, border, t4, t16 === true, t17, t18, _null, t19.child, label, hint, _null, _null, _null, suffixIcon, new L._HelperError(t2, t9, t10, t11, t12, t1, t13, _null), counter, new L._BorderContainer(border, t4, t5, t6, t7, t8, _null), false), t14.textDirection, t3, t19.textAlignVertical, t19.isFocused, t19.expands, _null); } }; L._InputDecoratorState__handleChange_closure.prototype = { call$0: function() { }, $signature: 0 }; L.InputDecoration.prototype = { copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle: function(alignLabelWithHint, border, contentPadding, counter, counterStyle, counterText, disabledBorder, enabled, enabledBorder, errorBorder, errorMaxLines, errorStyle, errorText, fillColor, filled, floatingLabelBehavior, focusColor, focusedBorder, focusedErrorBorder, hasFloatingPlaceholder, helperMaxLines, helperStyle, hintMaxLines, hintStyle, hintText, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, semanticCounterText, suffixStyle) { var _this = this, t1 = hintText == null ? _this.hintText : hintText, t2 = hintStyle == null ? _this.hintStyle : hintStyle, t3 = hintMaxLines == null ? _this.hintMaxLines : hintMaxLines, t4 = errorText == null ? _this.errorText : errorText, t5 = errorStyle == null ? _this.errorStyle : errorStyle, t6 = floatingLabelBehavior == null ? _this.floatingLabelBehavior : floatingLabelBehavior, t7 = isDense == null ? _this.isDense : isDense, t8 = contentPadding == null ? _this.contentPadding : contentPadding, t9 = counter == null ? _this.counter : counter, t10 = counterText == null ? _this.counterText : counterText, t11 = counterStyle == null ? _this.counterStyle : counterStyle, t12 = filled == null ? _this.filled : filled, t13 = fillColor == null ? _this.fillColor : fillColor, t14 = errorBorder == null ? _this.errorBorder : errorBorder, t15 = focusedBorder == null ? _this.focusedBorder : focusedBorder, t16 = focusedErrorBorder == null ? _this.focusedErrorBorder : focusedErrorBorder, t17 = enabledBorder == null ? _this.enabledBorder : enabledBorder, t18 = border == null ? _this.border : border, t19 = enabled == null ? _this.enabled : enabled, t20 = semanticCounterText == null ? _this.semanticCounterText : semanticCounterText, t21 = alignLabelWithHint == null ? _this.alignLabelWithHint : alignLabelWithHint; return L.InputDecoration$(t21, t18, t8, t9, t11, t10, _this.disabledBorder, t19, t17, t14, _this.errorMaxLines, t5, t4, t13, t12, t6, _this.focusColor, t15, t16, hasFloatingPlaceholder !== false, _this.helperMaxLines, _this.helperStyle, _this.helperText, t3, t2, t1, _this.hintTextDirection, _this.hoverColor, _this.icon, isCollapsed === true, t7, _this.labelStyle, _this.labelText, _this.prefix, _this.prefixIcon, _this.prefixIconConstraints, _this.prefixStyle, _this.prefixText, t20, _this.suffix, _this.suffixIcon, _this.suffixIconConstraints, _this.suffixStyle, _this.suffixText); }, copyWith$1$errorText: function(errorText) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, null, null, null, null, null, errorText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$2$enabled$hintMaxLines: function(enabled, hintMaxLines) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, enabled, null, null, null, null, null, null, null, null, null, null, null, null, null, null, hintMaxLines, null, null, null, null, null, null, null, null, null); }, copyWith$1$counter: function(counter) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, counter, 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); }, copyWith$4$counterStyle$counterText$errorText$semanticCounterText: function(counterStyle, counterText, errorText, semanticCounterText) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, counterStyle, counterText, null, null, null, null, null, null, errorText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, semanticCounterText, null); }, copyWith$2$counterText$semanticCounterText: function(counterText, semanticCounterText) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, counterText, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, semanticCounterText, null); }, copyWith$25$alignLabelWithHint$border$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintStyle$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$suffixStyle: function(alignLabelWithHint, border, contentPadding, counterStyle, disabledBorder, enabledBorder, errorBorder, errorMaxLines, errorStyle, fillColor, filled, floatingLabelBehavior, focusColor, focusedBorder, focusedErrorBorder, hasFloatingPlaceholder, helperMaxLines, helperStyle, hintStyle, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, suffixStyle) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(alignLabelWithHint, border, contentPadding, null, counterStyle, null, disabledBorder, null, enabledBorder, errorBorder, errorMaxLines, errorStyle, null, fillColor, filled, floatingLabelBehavior, focusColor, focusedBorder, focusedErrorBorder, hasFloatingPlaceholder, helperMaxLines, helperStyle, null, hintStyle, null, hoverColor, isCollapsed, isDense, labelStyle, prefixStyle, null, suffixStyle); }, copyWith$2$fillColor$hintText: function(fillColor, hintText) { return this.copyWith$32$alignLabelWithHint$border$contentPadding$counter$counterStyle$counterText$disabledBorder$enabled$enabledBorder$errorBorder$errorMaxLines$errorStyle$errorText$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintMaxLines$hintStyle$hintText$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$semanticCounterText$suffixStyle(null, null, null, null, null, null, null, null, null, null, null, null, null, fillColor, null, null, null, null, null, null, null, null, null, null, hintText, null, null, null, null, null, null, null); }, applyDefaults$1: function(theme) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.hintStyle; if (t1 == null) t1 = _null; t2 = _this.errorStyle; if (t2 == null) t2 = _null; t3 = _this.floatingLabelBehavior; if (t3 == null) t3 = C.FloatingLabelBehavior_1; t4 = _this.contentPadding; if (t4 == null) t4 = _null; t5 = _this.counterStyle; if (t5 == null) t5 = _null; t6 = _this.fillColor; if (t6 == null) t6 = _null; t7 = _this.errorBorder; if (t7 == null) t7 = _null; t8 = _this.focusedBorder; if (t8 == null) t8 = _null; t9 = _this.focusedErrorBorder; if (t9 == null) t9 = _null; t10 = _this.enabledBorder; if (t10 == null) t10 = _null; t11 = _this.border; if (t11 == null) t11 = _null; return _this.copyWith$25$alignLabelWithHint$border$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelBehavior$focusColor$focusedBorder$focusedErrorBorder$hasFloatingPlaceholder$helperMaxLines$helperStyle$hintStyle$hoverColor$isCollapsed$isDense$labelStyle$prefixStyle$suffixStyle(_this.alignLabelWithHint === true, t11, t4, t5, _null, t10, t7, _null, t2, t6, _this.filled === true, t3, _null, t8, t9, true, _null, _null, t1, _null, false, _this.isDense === true, _null, _null, _null); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof L.InputDecoration) if (other.labelText == _this.labelText) if (other.hintText == _this.hintText) if (J.$eq$(other.hintStyle, _this.hintStyle)) if (other.hintMaxLines == _this.hintMaxLines) if (other.errorText == _this.errorText) if (J.$eq$(other.errorStyle, _this.errorStyle)) if (other.floatingLabelBehavior == _this.floatingLabelBehavior) if (other.isDense == _this.isDense) if (J.$eq$(other.contentPadding, _this.contentPadding)) if (J.$eq$(other.suffixIcon, _this.suffixIcon)) if (J.$eq$(other.counter, _this.counter)) if (other.counterText == _this.counterText) if (J.$eq$(other.counterStyle, _this.counterStyle)) if (other.filled == _this.filled) if (J.$eq$(other.fillColor, _this.fillColor)) if (J.$eq$(other.errorBorder, _this.errorBorder)) if (J.$eq$(other.focusedBorder, _this.focusedBorder)) if (J.$eq$(other.focusedErrorBorder, _this.focusedErrorBorder)) t1 = J.$eq$(other.enabledBorder, _this.enabledBorder) && J.$eq$(other.border, _this.border) && other.enabled === _this.enabled && other.semanticCounterText == _this.semanticCounterText && other.alignLabelWithHint == _this.alignLabelWithHint; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.border, t2 = _this.enabled; return P.hashList([_this.icon, _this.labelText, _this.labelStyle, _this.helperText, _this.helperStyle, _this.helperMaxLines, _this.hintText, _this.hintStyle, _this.hintTextDirection, _this.hintMaxLines, _this.errorText, _this.errorStyle, _this.errorMaxLines, true, _this.floatingLabelBehavior, _this.isDense, _this.contentPadding, false, _this.filled, _this.fillColor, _this.focusColor, _this.hoverColor, t1, t2, _this.prefixIcon, _this.prefix, _this.prefixText, _this.prefixStyle, _this.prefixIconConstraints, _this.suffixIcon, _this.suffix, _this.suffixText, _this.suffixStyle, _this.suffixIconConstraints, _this.counter, _this.counterText, _this.counterStyle, _this.errorBorder, _this.focusedBorder, _this.focusedErrorBorder, _this.disabledBorder, _this.enabledBorder, t1, t2, _this.semanticCounterText, _this.alignLabelWithHint]); }, toString$0: function(_) { var _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray_String), t2 = _this.labelText; if (t2 != null) t1.push('labelText: "' + t2 + '"'); t2 = _this.hintText; if (t2 != null) t1.push('hintText: "' + t2 + '"'); t2 = _this.hintMaxLines; if (t2 != null) t1.push('hintMaxLines: "' + H.S(t2) + '"'); t2 = _this.errorText; if (t2 != null) t1.push('errorText: "' + t2 + '"'); t2 = _this.errorStyle; if (t2 != null) t1.push('errorStyle: "' + t2.toString$0(0) + '"'); t2 = _this.floatingLabelBehavior; if (t2 != null) t1.push("floatingLabelBehavior: " + t2.toString$0(0)); t2 = _this.isDense; if (t2 === true) t1.push("isDense: " + H.S(t2)); t2 = _this.contentPadding; if (t2 != null) t1.push("contentPadding: " + t2.toString$0(0)); t2 = _this.suffixIcon; if (t2 != null) t1.push("suffixIcon: " + t2.toString$0(0)); t2 = _this.counter; if (t2 != null) t1.push("counter: " + t2.toString$0(0)); t2 = _this.counterText; if (t2 != null) t1.push("counterText: " + t2); t2 = _this.counterStyle; if (t2 != null) t1.push("counterStyle: " + t2.toString$0(0)); if (_this.filled === true) t1.push("filled: true"); t2 = _this.fillColor; if (t2 != null) t1.push("fillColor: " + t2.toString$0(0)); t2 = _this.errorBorder; if (t2 != null) t1.push("errorBorder: " + t2.toString$0(0)); t2 = _this.focusedBorder; if (t2 != null) t1.push("focusedBorder: " + t2.toString$0(0)); t2 = _this.focusedErrorBorder; if (t2 != null) t1.push("focusedErrorBorder: " + t2.toString$0(0)); t2 = _this.enabledBorder; if (t2 != null) t1.push("enabledBorder: " + t2.toString$0(0)); t2 = _this.border; if (t2 != null) t1.push("border: " + t2.toString$0(0)); if (!_this.enabled) t1.push("enabled: false"); t2 = _this.semanticCounterText; if (t2 != null) t1.push("semanticCounterText: " + t2); t2 = _this.alignLabelWithHint; if (t2 != null) t1.push("alignLabelWithHint: " + H.S(t2)); return "InputDecoration(" + C.JSArray_methods.join$1(t1, ", ") + ")"; } }; L.InputDecorationTheme.prototype = { get$hashCode: function(_) { return P.hashList([null, null, null, null, null, null, true, C.FloatingLabelBehavior_1, false, null, false, null, null, null, false, null, null, null, null, null, null, null, null, null, false]); }, $eq: function(_, other) { var t1; if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; if (other instanceof L.InputDecorationTheme) t1 = true; else t1 = false; return t1; } }; L._InputDecorationTheme_Object_Diagnosticable.prototype = {}; L.__BorderContainerState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; L.__HelperErrorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; L.__InputDecoratorState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; Q.ListTileStyle.prototype = { toString$0: function(_) { return this._list_tile$_name; } }; Q.ListTileTheme.prototype = { wrap$2: function(_, context, child) { var _this = this; return Q.ListTileTheme$(child, _this.contentPadding, false, _this.enableFeedback, _this.horizontalTitleGap, _this.iconColor, null, _this.minLeadingWidth, _this.minVerticalPadding, _this.selectedColor, _this.selectedTileColor, _this.shape, _this.style, _this.textColor, _this.tileColor); }, updateShouldNotify$1: function(oldWidget) { var t1; if (this.style === oldWidget.style) if (J.$eq$(this.selectedColor, oldWidget.selectedColor)) t1 = false; else t1 = true; else t1 = true; return t1; } }; Q.ListTileTheme_merge_closure.prototype = { call$1: function(context) { var $parent = Q.ListTileTheme_of(context), t1 = this.selectedColor; if (t1 == null) t1 = $parent.selectedColor; return Q.ListTileTheme$(this.child, $parent.contentPadding, false, $parent.enableFeedback, $parent.horizontalTitleGap, $parent.iconColor, this.key, $parent.minLeadingWidth, $parent.minVerticalPadding, t1, $parent.selectedTileColor, $parent.shape, $parent.style, $parent.textColor, $parent.tileColor); }, $signature: 2027 }; Q.ListTileControlAffinity.prototype = { toString$0: function(_) { return this._list_tile$_name; } }; Q.ListTile.prototype = { _iconColor$2: function(theme, tileTheme) { var t1, t2; if (!this.enabled) return theme.disabledColor; t1 = this.selected; if (t1) t2 = tileTheme.selectedColor != null; else t2 = false; if (t2) return tileTheme.selectedColor; !t1; t2 = theme.colorScheme; switch (t2.brightness) { case C.Brightness_1: return t1 ? t2.primary : C.Color_1929379840; case C.Brightness_0: return t1 ? t2.primary : null; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _textColor$3: function(theme, tileTheme, defaultColor) { var t1, t2; if (!this.enabled) return theme.disabledColor; t1 = this.selected; if (t1) t2 = (tileTheme == null ? null : tileTheme.selectedColor) != null; else t2 = false; if (t2) return tileTheme.selectedColor; !t1; if (t1) return theme.colorScheme.primary; return defaultColor; }, _isDenseLayout$1: function(tileTheme) { var t1 = this.dense; if (t1 == null) t1 = tileTheme == null && null; return t1 === true; }, _tileBackgroundColor$1: function(tileTheme) { var t2, t1 = this.selected; if (!t1) { t2 = this.tileColor; if (t2 != null) return t2; } t1; return C.Color_0; }, build$1: function(_, context) { var iconThemeData, style, leadingAndTrailingTextStyle, leadingIcon, color, titleStyle, titleText, t3, subtitleStyle, subtitleText, trailingIcon, resolvedContentPadding, t4, resolvedMouseCursor, t5, t6, t7, t8, t9, t10, _this = this, _null = null, theme = K.Theme_of(context), tileTheme = Q.ListTileTheme_of(context), t1 = _this.leading, t2 = t1 == null; if (!t2 || _this.trailing != null) { iconThemeData = new T.IconThemeData(_this._iconColor$2(theme, tileTheme), _null, _null); style = theme.textTheme.bodyText2; leadingAndTrailingTextStyle = style.copyWith$1$color(_this._textColor$3(theme, tileTheme, style.color)); } else { leadingAndTrailingTextStyle = _null; iconThemeData = leadingAndTrailingTextStyle; } if (!t2) { leadingAndTrailingTextStyle.toString; iconThemeData.toString; leadingIcon = G.AnimatedDefaultTextStyle$(Y.IconTheme_merge(t1, iconThemeData), C.C__Linear, C.Duration_200000, true, leadingAndTrailingTextStyle); } else leadingIcon = _null; switch (tileTheme.style) { case C.ListTileStyle_1: t1 = theme.textTheme.bodyText1; t1.toString; style = t1; break; case C.ListTileStyle_0: t1 = theme.textTheme.subtitle1; t1.toString; style = t1; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); style = _null; } color = _this._textColor$3(theme, tileTheme, style.color); titleStyle = _this._isDenseLayout$1(tileTheme) ? style.copyWith$2$color$fontSize(color, 13) : style.copyWith$1$color(color); t1 = _this.title; titleText = G.AnimatedDefaultTextStyle$(t1 == null ? C.SizedBox_null_null_null_null : t1, C.C__Linear, C.Duration_200000, true, titleStyle); t1 = _this.subtitle; if (t1 != null) { t2 = theme.textTheme; t3 = t2.bodyText2; t3.toString; color = _this._textColor$3(theme, tileTheme, t2.caption.color); subtitleStyle = _this._isDenseLayout$1(tileTheme) ? t3.copyWith$2$color$fontSize(color, 12) : t3.copyWith$1$color(color); subtitleText = G.AnimatedDefaultTextStyle$(t1, C.C__Linear, C.Duration_200000, true, subtitleStyle); } else { subtitleStyle = _null; subtitleText = subtitleStyle; } t1 = _this.trailing; if (t1 != null) { leadingAndTrailingTextStyle.toString; iconThemeData.toString; trailingIcon = G.AnimatedDefaultTextStyle$(Y.IconTheme_merge(t1, iconThemeData), C.C__Linear, C.Duration_200000, true, leadingAndTrailingTextStyle); } else trailingIcon = _null; t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = _this.contentPadding; if (t2 == null) t2 = _null; if (t2 == null) resolvedContentPadding = _null; else resolvedContentPadding = t2; if (resolvedContentPadding == null) resolvedContentPadding = C.EdgeInsets_16_0_16_0; t2 = P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); t3 = _this.enabled; if (t3) t4 = _this.onTap == null && _this.onLongPress == null; else t4 = true; if (t4) t2.add$1(0, C.MaterialState_5); t4 = _this.selected; if (t4) t2.add$1(0, C.MaterialState_4); resolvedMouseCursor = V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, t2, type$.MouseCursor); t2 = t3 ? _this.onTap : _null; t5 = t3 ? _this.onLongPress : _null; t6 = _this._tileBackgroundColor$1(tileTheme); t7 = _this._isDenseLayout$1(tileTheme); t8 = theme.visualDensity; t9 = titleStyle.textBaseline; t9.toString; t10 = subtitleStyle == null ? _null : subtitleStyle.textBaseline; t1 = D.Ink$(Q.SafeArea$(false, new Q._ListTile(leadingIcon, titleText, subtitleText, trailingIcon, _this.isThreeLine, t7, t8, t1.textDirection, t9, t10, 16, 4, 40, _null), resolvedContentPadding, false), _null, new V.ShapeDecoration(t6, _null, _null, _null, C.Border_A43), _null); return R.InkWell$(false, _null, t3, new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, t3, _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, t4, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), tileTheme.shape, true, _null, _null, _null, _null, _null, resolvedMouseCursor, _null, _null, _null, _null, t5, t2, _null, _null, _null, _null, _null); } }; Q._ListTileSlot.prototype = { toString$0: function(_) { return this._list_tile$_name; } }; Q._ListTile.prototype = { createElement$0: function(_) { var t1 = type$.Element_2, t2 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t2; return new Q._ListTileElement(P.LinkedHashMap_LinkedHashMap$_empty(type$._ListTileSlot, t1), t2, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, createRenderObject$1: function(context) { var _this = this, t1 = new Q._RenderListTile(P.LinkedHashMap_LinkedHashMap$_empty(type$._ListTileSlot, type$.RenderBox), _this.isDense, _this.visualDensity, _this.isThreeLine, _this.textDirection, _this.titleBaselineType, _this.subtitleBaselineType, _this.horizontalTitleGap, _this.minVerticalPadding, _this.minLeadingWidth); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$isThreeLine(_this.isThreeLine); renderObject.set$isDense(_this.isDense); renderObject.set$visualDensity(_this.visualDensity); renderObject.set$textDirection(0, _this.textDirection); renderObject.set$titleBaselineType(_this.titleBaselineType); renderObject.set$subtitleBaselineType(_this.subtitleBaselineType); renderObject.set$horizontalTitleGap(_this.horizontalTitleGap); renderObject.set$minLeadingWidth(_this.minLeadingWidth); renderObject.set$minVerticalPadding(_this.minVerticalPadding); } }; Q._ListTileElement.prototype = { get$widget: function() { return type$._ListTile._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$._RenderListTile._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, visitChildren$1: function(visitor) { var t1 = this.slotToChild; t1.get$values(t1).forEach$1(0, visitor); }, forgetChild$1: function(child) { this.slotToChild.remove$1(0, child._slot); this.super$Element$forgetChild(child); }, _list_tile$_mountChild$2: function(widget, slot) { var t1 = this.slotToChild, oldChild = t1.$index(0, slot), newChild = this.updateChild$3(oldChild, widget, slot); if (oldChild != null) t1.remove$1(0, slot); if (newChild != null) t1.$indexSet(0, slot, newChild); }, mount$2: function($parent, newSlot) { var t1, _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); t1 = type$._ListTile; _this._list_tile$_mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).leading, C._ListTileSlot_0); _this._list_tile$_mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).title, C._ListTileSlot_1); _this._list_tile$_mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).subtitle, C._ListTileSlot_2); _this._list_tile$_mountChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).trailing, C._ListTileSlot_3); }, _list_tile$_updateChild$2: function(widget, slot) { var t1 = this.slotToChild, oldChild = t1.$index(0, slot), newChild = this.updateChild$3(oldChild, widget, slot); if (oldChild != null) t1.remove$1(0, slot); if (newChild != null) t1.$indexSet(0, slot, newChild); }, update$1: function(_, newWidget) { var t1, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = type$._ListTile; _this._list_tile$_updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).leading, C._ListTileSlot_0); _this._list_tile$_updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).title, C._ListTileSlot_1); _this._list_tile$_updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).subtitle, C._ListTileSlot_2); _this._list_tile$_updateChild$2(t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).trailing, C._ListTileSlot_3); }, _list_tile$_updateRenderObject$2: function(child, slot) { var t1, _this = this; switch (slot) { case C._ListTileSlot_0: t1 = type$._RenderListTile._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._list_tile$_leading = t1._list_tile$_updateChild$3(t1._list_tile$_leading, child, C._ListTileSlot_0); break; case C._ListTileSlot_1: t1 = type$._RenderListTile._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._title = t1._list_tile$_updateChild$3(t1._title, child, C._ListTileSlot_1); break; case C._ListTileSlot_2: t1 = type$._RenderListTile._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._subtitle = t1._list_tile$_updateChild$3(t1._subtitle, child, C._ListTileSlot_2); break; case C._ListTileSlot_3: t1 = type$._RenderListTile._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1._trailing = t1._list_tile$_updateChild$3(t1._trailing, child, C._ListTileSlot_3); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, insertRenderObjectChild$2: function(child, slot) { this._list_tile$_updateRenderObject$2(type$.RenderBox._as(child), slot); }, removeRenderObjectChild$2: function(child, slot) { this._list_tile$_updateRenderObject$2(null, slot); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { } }; Q._RenderListTile.prototype = { _list_tile$_updateChild$3: function(oldChild, newChild, slot) { var _this = this; if (oldChild != null) { _this.dropChild$1(oldChild); _this.children.remove$1(0, slot); } if (newChild != null) { _this.children.$indexSet(0, slot, newChild); _this.adoptChild$1(newChild); } return newChild; }, get$_list_tile$_children: function($async$_) { var $async$self = this; return P._makeSyncStarIterable(function() { var _ = $async$_; var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$get$_list_tile$_children($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._list_tile$_leading; $async$goto = t1 != null ? 2 : 3; break; case 2: // then $async$goto = 4; return t1; case 4: // after yield case 3: // join t1 = $async$self._title; $async$goto = t1 != null ? 5 : 6; break; case 5: // then $async$goto = 7; return t1; case 7: // after yield case 6: // join t1 = $async$self._subtitle; $async$goto = t1 != null ? 8 : 9; break; case 8: // then $async$goto = 10; return t1; case 10: // after yield case 9: // join t1 = $async$self._trailing; $async$goto = t1 != null ? 11 : 12; break; case 11: // then $async$goto = 13; return t1; case 13: // after yield case 12: // join // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderBox); }, set$isDense: function(value) { if (this._isDense === value) return; this._isDense = value; this.markNeedsLayout$0(); }, set$visualDensity: function(value) { if (this._visualDensity.$eq(0, value)) return; this._visualDensity = value; this.markNeedsLayout$0(); }, set$isThreeLine: function(value) { if (this._isThreeLine === value) return; this._isThreeLine = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { if (this._list_tile$_textDirection == value) return; this._list_tile$_textDirection = value; this.markNeedsLayout$0(); }, set$titleBaselineType: function(value) { if (this._titleBaselineType == value) return; this._titleBaselineType = value; this.markNeedsLayout$0(); }, set$subtitleBaselineType: function(value) { if (this._subtitleBaselineType == value) return; this._subtitleBaselineType = value; this.markNeedsLayout$0(); }, get$_effectiveHorizontalTitleGap: function() { return this._horizontalTitleGap + this._visualDensity.horizontal * 2; }, set$horizontalTitleGap: function(value) { if (this._horizontalTitleGap === value) return; this._horizontalTitleGap = value; this.markNeedsLayout$0(); }, set$minVerticalPadding: function(value) { if (this._minVerticalPadding === value) return; this._minVerticalPadding = value; this.markNeedsLayout$0(); }, set$minLeadingWidth: function(value) { if (this._minLeadingWidth === value) return; this._minLeadingWidth = value; this.markNeedsLayout$0(); }, attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); for (t1 = this.get$_list_tile$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) t1.get$current(t1).attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); for (t1 = this.get$_list_tile$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) t1.get$current(t1).detach$0(0); }, redepthChildren$0: function() { this.get$_list_tile$_children(this).forEach$1(0, this.get$redepthChild()); }, visitChildren$1: function(visitor) { this.get$_list_tile$_children(this).forEach$1(0, visitor); }, debugDescribeChildren$0: function() { var _this = this, value = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), t1 = new Q._RenderListTile_debugDescribeChildren_add(value); t1.call$2(_this._list_tile$_leading, "leading"); t1.call$2(_this._title, "title"); t1.call$2(_this._subtitle, "subtitle"); t1.call$2(_this._trailing, "trailing"); return value; }, get$sizedByParent: function() { return false; }, computeMinIntrinsicWidth$1: function(height) { var t2, leadingWidth, _this = this, t1 = _this._list_tile$_leading; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = _this._minLeadingWidth; leadingWidth = Math.max(H.checkNum(t1), t2) + _this.get$_effectiveHorizontalTitleGap(); } else leadingWidth = 0; t1 = _this._title; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = _this._subtitle; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t2 = Math.max(H.checkNum(t1), H.checkNum(t2)); t1 = _this._trailing; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return leadingWidth + t2 + t1; }, computeMaxIntrinsicWidth$1: function(height) { var t2, leadingWidth, _this = this, t1 = _this._list_tile$_leading; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = _this._minLeadingWidth; leadingWidth = Math.max(H.checkNum(t1), t2) + _this.get$_effectiveHorizontalTitleGap(); } else leadingWidth = 0; t1 = _this._title; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = _this._subtitle; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t2 = Math.max(H.checkNum(t1), H.checkNum(t2)); t1 = _this._trailing; t1 = t1 == null ? 0 : t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return leadingWidth + t2 + t1; }, get$_defaultTileHeight: function() { var baseDensity, _this = this, isOneLine = _this._subtitle == null, hasSubtitle = !isOneLine, t1 = !_this._isThreeLine, isTwoLine = t1 && hasSubtitle; isOneLine = t1 && isOneLine; t1 = _this._visualDensity; baseDensity = new P.Offset(t1.horizontal, t1.vertical).$mul(0, 4); if (isOneLine) { t1 = _this._isDense ? 48 : 56; return t1 + baseDensity._dy; } if (isTwoLine) { t1 = _this._isDense ? 64 : 72; return t1 + baseDensity._dy; } t1 = _this._isDense ? 76 : 88; return t1 + baseDensity._dy; }, computeMinIntrinsicHeight$1: function(width) { var t3, t1 = this.get$_defaultTileHeight(), t2 = this._title; t2 = t2._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t3 = this._subtitle; t3 = t3 == null ? null : t3._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t3.get$computeMinIntrinsicHeight()); return Math.max(t1, t2 + (t3 == null ? 0 : t3)); }, computeMaxIntrinsicHeight$1: function(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1: function(baseline) { var t1 = this._title, t2 = t1.parentData; t2.toString; t2 = type$.BoxParentData._as(t2).offset._dy; t1 = t1.getDistanceToActualBaseline$1(baseline); t1.toString; return t2 + t1; }, computeDryLayout$1: function(constraints) { return C.Size_0_0; }, performLayout$0: function() { var looseConstraints, iconConstraints, tileWidth, leadingSize, trailingSize, titleStart, adjustedTrailingWidth, textConstraints, titleSize, subtitleSize, titleBaseline, subtitleBaseline, defaultTileHeight, tileHeight, titleY, subtitleY, titleOverlap, titleY0, leadingY, trailingY, t3, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), hasLeading = _this._list_tile$_leading != null, t1 = _this._subtitle == null, hasSubtitle = !t1, hasTrailing = _this._trailing != null, isTwoLine = !_this._isThreeLine && hasSubtitle, t2 = _this._visualDensity, densityAdjustment = new P.Offset(t2.horizontal, t2.vertical).$mul(0, 4); t2 = _this._isDense ? 48 : 56; looseConstraints = constraints.loosen$0(); iconConstraints = looseConstraints.enforce$1(new S.BoxConstraints(0, 1 / 0, 0, t2 + densityAdjustment._dy)); tileWidth = looseConstraints.maxWidth; leadingSize = Q._RenderListTile__layoutBox(_this._list_tile$_leading, iconConstraints); trailingSize = Q._RenderListTile__layoutBox(_this._trailing, iconConstraints); titleStart = hasLeading ? Math.max(_this._minLeadingWidth, H.checkNum(leadingSize._dx)) + _this.get$_effectiveHorizontalTitleGap() : 0; adjustedTrailingWidth = hasTrailing ? Math.max(trailingSize._dx + _this.get$_effectiveHorizontalTitleGap(), 32) : 0; textConstraints = looseConstraints.tighten$1$width(tileWidth - titleStart - adjustedTrailingWidth); titleSize = Q._RenderListTile__layoutBox(_this._title, textConstraints); subtitleSize = Q._RenderListTile__layoutBox(_this._subtitle, textConstraints); if (isTwoLine) { t2 = _this._isDense; titleBaseline = t2 ? 28 : 32; subtitleBaseline = t2 ? 48 : 52; } else if (_this._isThreeLine) { t2 = _this._isDense; titleBaseline = t2 ? 22 : 28; subtitleBaseline = t2 ? 42 : 48; } else { titleBaseline = null; subtitleBaseline = null; } defaultTileHeight = _this.get$_defaultTileHeight(); if (t1) { t1 = titleSize._dy; tileHeight = Math.max(defaultTileHeight, t1 + 2 * _this._minVerticalPadding); titleY = (tileHeight - t1) / 2; subtitleY = null; } else { titleBaseline.toString; t1 = _this._title.getDistanceToBaseline$1(_this._titleBaselineType); t1.toString; titleY = titleBaseline - t1; subtitleBaseline.toString; t1 = _this._subtitle; t1.toString; t2 = _this._subtitleBaselineType; t2.toString; t2 = t1.getDistanceToBaseline$1(t2); t2.toString; subtitleY = subtitleBaseline - t2 + _this._visualDensity.vertical * 2; t2 = titleSize._dy; titleOverlap = titleY + t2 - subtitleY; if (titleOverlap > 0) { t1 = titleOverlap / 2; titleY -= t1; subtitleY += t1; } titleY0 = _this._minVerticalPadding; if (titleY < titleY0 || subtitleY + subtitleSize._dy + titleY0 > defaultTileHeight) { tileHeight = t2 + subtitleSize._dy + 2 * titleY0; subtitleY = t2 + titleY0; titleY = titleY0; } else tileHeight = defaultTileHeight; } if (tileHeight > 72) { leadingY = 16; trailingY = 16; } else { leadingY = Math.min((tileHeight - leadingSize._dy) / 2, 16); trailingY = (tileHeight - trailingSize._dy) / 2; } switch (_this._list_tile$_textDirection) { case C.TextDirection_0: if (hasLeading) { t1 = _this._list_tile$_leading; t1.toString; t2 = leadingSize._dx; t1 = t1.parentData; t1.toString; type$.BoxParentData._as(t1).offset = new P.Offset(tileWidth - t2, leadingY); } t1 = _this._title.parentData; t1.toString; t2 = type$.BoxParentData; t2._as(t1).offset = new P.Offset(adjustedTrailingWidth, titleY); if (hasSubtitle) { t1 = _this._subtitle; t1.toString; subtitleY.toString; t1 = t1.parentData; t1.toString; t2._as(t1).offset = new P.Offset(adjustedTrailingWidth, subtitleY); } if (hasTrailing) { t1 = _this._trailing.parentData; t1.toString; t2._as(t1).offset = new P.Offset(0, trailingY); } break; case C.TextDirection_1: if (hasLeading) { t1 = _this._list_tile$_leading.parentData; t1.toString; type$.BoxParentData._as(t1).offset = new P.Offset(0, leadingY); } t1 = _this._title.parentData; t1.toString; t2 = type$.BoxParentData; t2._as(t1).offset = new P.Offset(titleStart, titleY); if (hasSubtitle) { t1 = _this._subtitle; t1.toString; subtitleY.toString; t1 = t1.parentData; t1.toString; t2._as(t1).offset = new P.Offset(titleStart, subtitleY); } if (hasTrailing) { t1 = _this._trailing; t1.toString; t3 = trailingSize._dx; t1 = t1.parentData; t1.toString; t2._as(t1).offset = new P.Offset(tileWidth - t3, trailingY); } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._box$_size = constraints.constrain$1(new P.Size(tileWidth, tileHeight)); }, paint$2: function(context, offset) { var _this = this, t1 = new Q._RenderListTile_paint_doPaint(context, offset); t1.call$1(_this._list_tile$_leading); t1.call$1(_this._title); t1.call$1(_this._subtitle); t1.call$1(_this._trailing); }, hitTestSelf$1: function(position) { return true; }, hitTestChildren$2$position: function(result, position) { var t1, t2, t3, t4; for (t1 = this.get$_list_tile$_children(this), t1 = new P._SyncStarIterator(t1._outerHelper(), t1.$ti._eval$1("_SyncStarIterator<1>")), t2 = type$.BoxParentData; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = t3.parentData; t4.toString; t2._as(t4); if (result.addWithPaintOffset$3$hitTest$offset$position(new Q._RenderListTile_hitTestChildren_closure(position, t4, t3), t4.offset, position)) return true; } return false; } }; Q._RenderListTile_debugDescribeChildren_add.prototype = { call$2: function(child, $name) { if (child != null) this.value.push(Y.DiagnosticableTreeNode$($name, null, child)); }, $signature: 583 }; Q._RenderListTile_paint_doPaint.prototype = { call$1: function(child) { var t1; if (child != null) { t1 = child.parentData; t1.toString; this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, $signature: 582 }; Q._RenderListTile_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 285 }; M.MaterialType.prototype = { toString$0: function(_) { return this._material$_name; } }; M.Material.prototype = { createState$0: function() { return new M._MaterialState(new N.LabeledGlobalKey("ink renderer", type$.LabeledGlobalKey_State_StatefulWidget), null, C._StateLifecycle_0); } }; M._MaterialState.prototype = { build$1: function(_, context) { var contents, t2, t3, t4, shape, _this = this, _null = null, theme = K.Theme_of(context), t1 = _this._widget, color = t1.color; if (color == null) switch (t1.type) { case C.MaterialType_0: color = theme.canvasColor; break; case C.MaterialType_1: color = theme.cardColor; break; default: break; } contents = t1.child; if (contents != null) { t1 = t1.textStyle; if (t1 == null) { t1 = K.Theme_of(context).textTheme.bodyText2; t1.toString; } t2 = _this._widget; contents = G.AnimatedDefaultTextStyle$(contents, C.C__Linear, t2.animationDuration, true, t1); t1 = t2; } t2 = t1.type; contents = new U.NotificationListener(new M._InkFeatures(color, _this, t2 !== C.MaterialType_4, contents, _this._inkFeatureRenderer), new M._MaterialState_build_closure(_this), _null, type$.NotificationListener_LayoutChangedNotification); if (t2 === C.MaterialType_0 && t1.shape == null && t1.borderRadius == null) { t2 = t1.elevation; color.toString; t3 = R.ElevationOverlay_applyOverlay(context, color, t2); t4 = _this._widget.shadowColor; if (t4 == null) t4 = K.Theme_of(context).shadowColor; return new G.AnimatedPhysicalModel(contents, C.BoxShape_0, t1.clipBehavior, C.BorderRadius_tLn, t2, t3, false, t4, C.Cubic_ifx, t1.animationDuration, _null, _null); } shape = _this._getShape$0(); t1 = _this._widget; if (t1.type === C.MaterialType_4) return M._MaterialState__transparentInterior(t1.clipBehavior, contents, context, shape); t2 = t1.animationDuration; t3 = t1.clipBehavior; t4 = t1.elevation; color.toString; t1 = t1.shadowColor; return new M._MaterialInterior(contents, shape, true, t3, t4, color, t1 == null ? K.Theme_of(context).shadowColor : t1, C.Cubic_ifx, t2, _null, _null); }, _getShape$0: function() { var t1 = this._widget, t2 = t1.shape; if (t2 != null) return t2; t2 = t1.borderRadius; if (t2 != null) return new X.RoundedRectangleBorder(t2, C.BorderSide_m7u); t1 = t1.type; switch (t1) { case C.MaterialType_0: case C.MaterialType_4: return C.RoundedRectangleBorder_a511; case C.MaterialType_1: case C.MaterialType_3: t1 = $.$get$kMaterialEdges().$index(0, t1); t1.toString; return new X.RoundedRectangleBorder(t1, C.BorderSide_m7u); case C.MaterialType_2: return C.CircleBorder_61T; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; M._MaterialState_build_closure.prototype = { call$1: function(notification) { var t2, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.$this._inkFeatureRenderer).get$renderObject(); t1.toString; type$._RenderInkFeatures._as(t1); t2 = t1._inkFeatures; if (t2 != null && t2.length !== 0) t1.markNeedsPaint$0(); return false; }, $signature: 2031 }; M._RenderInkFeatures.prototype = { addInkFeature$1: function(feature) { var t1 = this._inkFeatures; (t1 == null ? this._inkFeatures = H.setRuntimeTypeInfo([], type$.JSArray_InkFeature) : t1).push(feature); this.markNeedsPaint$0(); }, hitTestSelf$1: function(position) { return this.absorbHitTest; }, paint$2: function(context, offset) { var canvas, t2, _i, _this = this, t1 = _this._inkFeatures; if (t1 != null && t1.length !== 0) { canvas = context.get$canvas(context); canvas.save$0(0); canvas.translate$2(0, offset._dx, offset._dy); t1 = _this._box$_size; canvas.clipRect$1(0, new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy)); for (t1 = _this._inkFeatures, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i]._material$_paint$1(canvas); canvas.restore$0(0); } _this.super$RenderProxyBoxMixin$paint(context, offset); } }; M._InkFeatures.prototype = { createRenderObject$1: function(context) { var t1 = new M._RenderInkFeatures(this.vsync, this.color, this.absorbHitTest, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.color = this.color; renderObject.absorbHitTest = this.absorbHitTest; } }; M.InkFeature.prototype = { dispose$0: function(_) { var t1 = this._material$_controller, t2 = t1._inkFeatures; t2.toString; C.JSArray_methods.remove$1(t2, this); t1.markNeedsPaint$0(); this.onRemoved.call$0(); }, _material$_paint$1: function(canvas) { var t1, t2, t3, transform, index, index0, node = this.referenceBox, descendants = H.setRuntimeTypeInfo([node], type$.JSArray_RenderObject); for (t1 = this._material$_controller, t2 = type$.RenderObject; node != t1; node = t3) { t3 = node.get$parent(node); t3.toString; t2._as(t3); descendants.push(t3); } transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); for (index = descendants.length - 1; index > 0; index = index0) { index0 = index - 1; descendants[index].applyPaintTransform$2(descendants[index0], transform); } this.paintFeature$2(canvas, transform); }, toString$0: function(_) { return "#" + Y.shortHash(this); } }; M.ShapeBorderTween.prototype = { lerp$1: function(t) { return Y.ShapeBorder_lerp(this.begin, this.end, t); } }; M._MaterialInterior.prototype = { createState$0: function() { return new M._MaterialInteriorState(null, C._StateLifecycle_0); } }; M._MaterialInteriorState.prototype = { forEachTween$1: function(visitor) { var _this = this; _this._elevation = type$.nullable_Tween_double._as(visitor.call$3(_this._elevation, _this._widget.elevation, new M._MaterialInteriorState_forEachTween_closure())); _this._shadowColor = type$.nullable_ColorTween._as(visitor.call$3(_this._shadowColor, _this._widget.shadowColor, new M._MaterialInteriorState_forEachTween_closure0())); _this._border = type$.nullable_ShapeBorderTween._as(visitor.call$3(_this._border, _this._widget.shape, new M._MaterialInteriorState_forEachTween_closure1())); }, build$1: function(_, context) { var t2, t3, elevation, t4, t5, t6, t7, _this = this, t1 = _this._border; t1.toString; t2 = _this.get$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; t1 = _this._elevation; t1.toString; t3 = _this.get$_animation(); elevation = t1.transform$1(0, t3.get$value(t3)); t3 = _this._widget.child; t1 = T.Directionality_maybeOf(context); t4 = _this._widget; t5 = t4.clipBehavior; t4 = R.ElevationOverlay_applyOverlay(context, t4.color, elevation); t6 = _this._shadowColor; t6.toString; t7 = _this.get$_animation(); t7 = t6.transform$1(0, t7.get$value(t7)); t7.toString; return T.PhysicalShape$(new M._ShapeBorderPaint(t3, t2, true, null), t5, new E.ShapeBorderClipper(t2, t1, null), t4, elevation, t7); } }; M._MaterialInteriorState_forEachTween_closure.prototype = { call$1: function(value) { return new R.Tween(H._asDoubleS(value), null, type$.Tween_double); }, $signature: 361 }; M._MaterialInteriorState_forEachTween_closure0.prototype = { call$1: function(value) { return new R.ColorTween(type$.Color._as(value), null); }, $signature: 362 }; M._MaterialInteriorState_forEachTween_closure1.prototype = { call$1: function(value) { return new M.ShapeBorderTween(type$.ShapeBorder._as(value), null); }, $signature: 2043 }; M._ShapeBorderPaint.prototype = { build$1: function(_, context) { var t1 = T.Directionality_maybeOf(context); return T.CustomPaint$(this.child, new M._ShapeBorderPainter(this.shape, t1, null), null, null, C.Size_0_0); } }; M._ShapeBorderPainter.prototype = { paint$2: function(canvas, size) { this.border.paint$3$textDirection(canvas, new P.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldRepaint$1: function(oldDelegate) { return !J.$eq$(oldDelegate.border, this.border); } }; M.__MaterialState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; U._MaterialLocalizationsDelegate.prototype = { isSupported$1: function(locale) { return locale.get$languageCode(locale) === "en"; }, load$1: function(_, locale) { return new O.SynchronousFuture(C.C_DefaultMaterialLocalizations, type$.SynchronousFuture_MaterialLocalizations); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "DefaultMaterialLocalizations.delegate(en_US)"; } }; U.DefaultMaterialLocalizations.prototype = { _getDaysInMonth$2: function(year, month) { if (month === 2) { if (C.JSInt_methods.$mod(year, 4) === 0 && C.JSInt_methods.$mod(year, 100) !== 0 || C.JSInt_methods.$mod(year, 400) === 0) return 29; return 28; } return C.List_WB4[month - 1]; }, formatHour$2$alwaysUse24HourFormat: function(timeOfDay, alwaysUse24HourFormat) { var t1, t2, format = alwaysUse24HourFormat ? C.TimeOfDayFormat_0 : C.TimeOfDayFormat_4; switch (format) { case C.TimeOfDayFormat_4: t1 = timeOfDay.hour; t2 = t1 < 12; if (t1 - ((t2 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12) === 0) t1 = 12; else t1 -= (t2 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12; return this.formatDecimal$1(t1); case C.TimeOfDayFormat_0: return this._formatTwoDigitZeroPad$1(timeOfDay.hour); default: throw H.wrapException(P.AssertionError$(H.getRuntimeType(this).toString$0(0) + " does not support " + format.toString$0(0) + ".")); } }, _formatTwoDigitZeroPad$1: function(number) { if (number < 10) return "0" + number; return "" + number; }, formatMinute$1: function(timeOfDay) { var minute = timeOfDay.minute; return minute < 10 ? "0" + minute : C.JSInt_methods.toString$0(minute); }, formatYear$1: function(date) { date.toString; return C.JSInt_methods.toString$0(H.Primitives_getYear(date)); }, formatCompactDate$1: function(date) { var month, day, year; date.toString; month = this._formatTwoDigitZeroPad$1(H.Primitives_getMonth(date)); day = this._formatTwoDigitZeroPad$1(H.Primitives_getDay(date)); year = C.JSString_methods.padLeft$2(C.JSInt_methods.toString$0(H.Primitives_getYear(date)), 4, "0"); return month + "/" + day + "/" + year; }, formatMediumDate$1: function(date) { var day, month; date.toString; day = C.List_ECn[H.Primitives_getWeekday(date) - 1]; month = C.List_h8w[H.Primitives_getMonth(date) - 1]; return day + ", " + month + " " + H.Primitives_getDay(date); }, formatFullDate$1: function(date) { var month; date.toString; month = C.List_cIc[H.Primitives_getMonth(date) - 1]; return C.List_ALf[H.Primitives_getWeekday(date) - 1] + ", " + month + " " + H.Primitives_getDay(date) + ", " + H.Primitives_getYear(date); }, formatMonthYear$1: function(date) { var year; date.toString; year = C.JSInt_methods.toString$0(H.Primitives_getYear(date)); return C.List_cIc[H.Primitives_getMonth(date) - 1] + " " + year; }, parseCompactDate$1: function(inputString) { var inputParts, year, month, day, t1, _null = null; if (inputString == null) return _null; inputParts = inputString.split("/"); if (inputParts.length !== 3) return _null; year = H.Primitives_parseInt(inputParts[2], 10); if (year == null || year < 1) return _null; month = H.Primitives_parseInt(inputParts[0], 10); if (month == null || month < 1 || month > 12) return _null; day = H.Primitives_parseInt(inputParts[1], 10); if (day == null || day < 1 || day > this._getDaysInMonth$2(year, month)) return _null; t1 = H.Primitives_valueFromDecomposedDate(year, month, day, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, false); }, get$narrowWeekdays: function() { return C.List_3US; }, get$firstDayOfWeekIndex: function() { return 0; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$selectYearSemanticsLabel: function() { return "Select year"; }, get$dateInputLabel: function() { return "Enter Date"; }, get$invalidDateFormatLabel: function() { return "Invalid format."; }, get$dateOutOfRangeLabel: function() { return "Out of range."; }, get$datePickerHelpText: function() { return "SELECT DATE"; }, get$calendarModeButtonLabel: function() { return "Switch to calendar"; }, get$inputDateModeButtonLabel: function() { return "Switch to input"; }, get$timePickerDialHelpText: function() { return "SELECT TIME"; }, get$timePickerInputHelpText: function() { return "ENTER TIME"; }, get$timePickerHourLabel: function() { return "Hour"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$invalidTimeLabel: function() { return "Enter a valid time"; }, get$dialModeButtonLabel: function() { return "Switch to dial picker mode"; }, get$inputTimeModeButtonLabel: function() { return "Switch to text input mode"; }, _formatDayPeriod$1: function(timeOfDay) { switch (timeOfDay.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) { case C.DayPeriod_0: return "AM"; case C.DayPeriod_1: return "PM"; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, formatDecimal$1: function(number) { var digits, t1, maxDigitIndex, i; if (number > -1000 && number < 1000) return C.JSInt_methods.toString$0(number); digits = C.JSInt_methods.toString$0(Math.abs(number)); t1 = number < 0 ? "-" : ""; maxDigitIndex = digits.length - 1; for (i = 0; i <= maxDigitIndex; ++i) { t1 += digits[i]; if (i < maxDigitIndex && C.JSInt_methods.$mod(maxDigitIndex - i, 3) === 0) t1 += ","; } return t1.charCodeAt(0) == 0 ? t1 : t1; }, formatTimeOfDay$2$alwaysUse24HourFormat: function(timeOfDay, alwaysUse24HourFormat) { var buffer = new P.StringBuffer(""), t1 = this.formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat); buffer._contents = t1; t1 += ":"; buffer._contents = t1; t1 += this.formatMinute$1(timeOfDay); buffer._contents = t1; if (alwaysUse24HourFormat) return buffer.toString$0(0); t1 += " "; buffer._contents = t1; buffer._contents = t1 + this._formatDayPeriod$1(timeOfDay); return buffer.toString$0(0); }, get$openAppDrawerTooltip: function() { return "Open navigation menu"; }, get$backButtonTooltip: function() { return "Back"; }, get$nextMonthTooltip: function() { return "Next month"; }, get$previousMonthTooltip: function() { return "Previous month"; }, get$nextPageTooltip: function() { return "Next page"; }, get$previousPageTooltip: function() { return "Previous page"; }, get$showMenuTooltip: function() { return "Show menu"; }, get$drawerLabel: function() { return "Navigation menu"; }, get$popupMenuLabel: function() { return "Popup menu"; }, get$dialogLabel: function() { return "Dialog"; }, get$alertDialogLabel: function() { return "Alert"; }, get$licensesPageTitle: function() { return "Licenses"; }, licensesPackageDetailText$1: function(licenseCount) { switch (licenseCount) { case 0: return "No licenses."; case 1: return "1 license."; default: return "" + licenseCount + " licenses."; } }, pageRowsInfoTitle$4: function(firstRow, lastRow, rowCount, rowCountIsApproximate) { return rowCountIsApproximate ? "" + firstRow + "\u2013" + lastRow + " of about " + H.S(rowCount) : "" + firstRow + "\u2013" + lastRow + " of " + H.S(rowCount); }, tabLabel$2$tabCount$tabIndex: function(tabCount, tabIndex) { return "Tab " + tabIndex + " of " + tabCount; }, selectedRowCountTitle$1: function(selectedRowCount) { switch (selectedRowCount) { case 0: return "No items selected"; case 1: return "1 item selected"; default: return "" + selectedRowCount + " items selected"; } }, get$cancelButtonLabel: function() { return "CANCEL"; }, get$okButtonLabel: function() { return "OK"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$timePickerHourModeAnnouncement: function() { return "Select hours"; }, get$timePickerMinuteModeAnnouncement: function() { return "Select minutes"; }, get$modalBarrierDismissLabel: function() { return "Dismiss"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, timeOfDayFormat$1$alwaysUse24HourFormat: function(alwaysUse24HourFormat) { return alwaysUse24HourFormat ? C.TimeOfDayFormat_0 : C.TimeOfDayFormat_4; }, get$reorderItemUp: function() { return "Move up"; }, get$reorderItemDown: function() { return "Move down"; }, get$reorderItemToEnd: function() { return "Move to the end"; }, get$reorderItemToStart: function() { return "Move to the start"; }, get$expandedIconTapHint: function() { return "Collapse"; }, get$collapsedIconTapHint: function() { return "Expand"; }, get$refreshIndicatorSemanticLabel: function() { return "Refresh"; }, remainingTextFieldCharacterCount$1: function(remaining) { switch (remaining) { case 0: return "No characters remaining"; case 1: return "1 character remaining"; default: return "" + remaining + " characters remaining"; } }, $isMaterialLocalizations: 1 }; V.MaterialState.prototype = { toString$0: function(_) { return this._material_state$_name; } }; V.MaterialStateColor.prototype = {$isMaterialStateProperty: 1}; V._MaterialStateColor.prototype = { resolve$1: function(states) { return this._material_state$_resolve.call$1(states); } }; V.MaterialStateMouseCursor.prototype = { createSession$1: function(device) { return this.resolve$1(P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState)).createSession$1(device); }, $isMaterialStateProperty: 1 }; V._EnabledAndDisabledMouseCursor.prototype = { resolve$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return C.SystemMouseCursor_basic; return this.enabledCursor; }, get$debugDescription: function() { return "MaterialStateMouseCursor(" + this.name + ")"; }, get$name: function(receiver) { return this.name; } }; V.MaterialStateProperty.prototype = {}; V._MaterialStatePropertyWith.prototype = { resolve$1: function(states) { return this._material_state$_resolve.call$1(states); }, $isMaterialStateProperty: 1 }; V._MaterialStatePropertyAll.prototype = { resolve$1: function(states) { return this.value; }, toString$0: function(_) { return "MaterialStateProperty.all(" + H.S(this.value) + ")"; }, $isMaterialStateProperty: 1, get$value: function(receiver) { return this.value; } }; B.MergeableMaterialItem.prototype = {}; B.MaterialSlice.prototype = { toString$0: function(_) { return "MergeableSlice(key: " + this.key.toString$0(0) + ", child: " + this.child.toString$0(0) + ", color: " + H.S(this.color) + ")"; } }; B.MaterialGap.prototype = { toString$0: function(_) { return "MaterialGap(key: " + this.key.toString$0(0) + ", child: " + this.size + ")"; } }; B.MergeableMaterial.prototype = { createState$0: function() { return new B._MergeableMaterialState(P.LinkedHashMap_LinkedHashMap$_empty(type$.LocalKey, type$.nullable__AnimationTuple), null, C._StateLifecycle_0); } }; B._AnimationTuple.prototype = {}; B._MergeableMaterialState.prototype = { get$_mergeable_material$_children: function(_) { var t1 = this.___MergeableMaterialState__children; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_children")) : t1; }, initState$0: function() { var t1, i, t2, child, newStatus, _this = this, _s9_ = "_children"; _this.super$State$initState(); _this.___MergeableMaterialState__children = P.List_List$from(_this._widget.children, true, type$.MergeableMaterialItem); t1 = _this._animationTuples; i = 0; while (true) { t2 = _this.___MergeableMaterialState__children; if (!(i < J.get$length$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2))) break; t2 = _this.___MergeableMaterialState__children; child = J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2, i); if (child instanceof B.MaterialGap) { _this._initGap$1(child); t2 = t1.$index(0, child.key).controller; t2._lastElapsedDuration = t2._simulation = null; t2._ticker.stop$1$canceled(0, true); t2._internalSetValue$1(1); t2.notifyListeners$0(); newStatus = t2.__AnimationController__status; if (newStatus === $) newStatus = H.throwExpression(H.LateError$fieldNI("_status")); if (t2._lastReportedStatus != newStatus) { t2._lastReportedStatus = newStatus; t2.notifyStatusListeners$1(newStatus); } } ++i; } }, _initGap$1: function(gap) { var t1, _null = null, controller = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, this), startAnimation = S.CurvedAnimation$(C.Cubic_ifx, controller, _null), endAnimation = S.CurvedAnimation$(C.Cubic_ifx, controller, _null), gapAnimation = S.CurvedAnimation$(C.Cubic_ifx, controller, _null); controller.didRegisterListener$0(); t1 = controller.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(this.get$_handleTick()); this._animationTuples.$indexSet(0, gap.key, new B._AnimationTuple(controller, startAnimation, endAnimation, gapAnimation)); }, dispose$0: function(_) { var t1, t2, t3, _this = this; for (t1 = J.get$iterator$ax(_this.get$_mergeable_material$_children(_this)), t2 = _this._animationTuples; t1.moveNext$0();) { t3 = t1.get$current(t1); if (t3 instanceof B.MaterialGap) { t3 = t2.$index(0, t3.key).controller; t3._ticker.dispose$0(0); t3._ticker = null; t3.super$AnimationEagerListenerMixin$dispose(0); } } _this.super$__MergeableMaterialState_State_TickerProviderStateMixin$dispose(0); }, _handleTick$0: function() { this.setState$1(new B._MergeableMaterialState__handleTick_closure()); }, _isClosingGap$1: function(index) { var _this = this; if (index < J.get$length$asx(_this.get$_mergeable_material$_children(_this)) - 1 && J.$index$asx(_this.get$_mergeable_material$_children(_this), index) instanceof B.MaterialGap) return _this._animationTuples.$index(0, J.$index$asx(_this.get$_mergeable_material$_children(_this), index).key).controller.get$_status() === C.AnimationStatus_2; return false; }, _removeEmptyGaps$0: function() { var t2, child, _this = this, _s9_ = "_children", t1 = _this._animationTuples, j = 0; while (true) { t2 = _this.___MergeableMaterialState__children; if (!(j < J.get$length$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2))) break; t2 = _this.___MergeableMaterialState__children; if (J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2, j) instanceof B.MaterialGap) { t2 = _this.___MergeableMaterialState__children; t2 = t1.$index(0, J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2, j).key).controller.__AnimationController__status; t2 = (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_status")) : t2) === C.AnimationStatus_0; } else t2 = false; if (t2) { t2 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2, j); if (child instanceof B.MaterialGap) t1.$indexSet(0, child.key, null); } else ++j; } }, didUpdateWidget$1: function(oldWidget) { var t1, oldKeys, newKeys, newOnly, oldOnly, newChildren, t2, i, j, t3, i0, j0, newLength, oldLength, gapSizeSum, child, t4, k, gapSize, newChild, newStatus, gap, _this = this, _null = null, _s9_ = "_children"; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.children; oldKeys = new H.MappedListIterable(t1, new B._MergeableMaterialState_didUpdateWidget_closure(), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LocalKey>")).toSet$0(0); t1 = _this._widget.children; newKeys = new H.MappedListIterable(t1, new B._MergeableMaterialState_didUpdateWidget_closure0(), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,LocalKey>")).toSet$0(0); newOnly = newKeys.difference$1(oldKeys); oldOnly = oldKeys.difference$1(newKeys); newChildren = _this._widget.children; _this._removeEmptyGaps$0(); t1 = type$.MaterialGap; t2 = _this._animationTuples; i = 0; j = 0; while (true) { if (i < newChildren.length) { t3 = _this.___MergeableMaterialState__children; t3 = j < J.get$length$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3); } else t3 = false; if (!t3) break; if (!newOnly.contains$1(0, newChildren[i].key)) { t3 = _this.___MergeableMaterialState__children; t3 = oldOnly.contains$1(0, J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j).key); } else t3 = true; if (t3) { for (i0 = i; newOnly.contains$1(0, newChildren[i0].key);) ++i0; j0 = j; while (true) { t3 = _this.___MergeableMaterialState__children; if (!(oldOnly.contains$1(0, J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j0).key) || _this._isClosingGap$1(j0))) break; ++j0; } newLength = i0 - i; oldLength = j0 - j; if (newLength > 0) { if (oldLength <= 1) if (oldLength === 1) { t3 = _this.___MergeableMaterialState__children; t3 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j) instanceof B.MaterialSlice; } else t3 = false; else t3 = true; if (t3) if (newLength === 1 && newChildren[i] instanceof B.MaterialGap) { for (gapSizeSum = 0; j < j0;) { t3 = _this.___MergeableMaterialState__children; child = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) gapSizeSum += child.size; t3 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) t2.$indexSet(0, child.key, _null); --j0; } t3 = newChildren[i]; t4 = _this.___MergeableMaterialState__children; J.insert$2$ax(t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4, j, t3); if (t3 instanceof B.MaterialGap) _this._initGap$1(t3); t3 = t2.$index(0, newChildren[i].key); t3.gapStart = gapSizeSum; t3 = t3.controller; t3._direction = C._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); j = j0 + 1; } else { for (k = 0; k < oldLength; ++k) { t3 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) t2.$indexSet(0, child.key, _null); } for (k = 0; k < newLength; ++k) { t3 = newChildren[i + k]; t4 = _this.___MergeableMaterialState__children; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_)); J.insert$2$ax(t4, j + k, t3); if (t3 instanceof B.MaterialGap) _this._initGap$1(t3); } j = j0 + (newLength - oldLength); } else if (oldLength === 1) { if (newLength === 1) if (newChildren[i] instanceof B.MaterialGap) { t3 = _this.___MergeableMaterialState__children; t3 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j).key.$eq(0, newChildren[i].key); } else t3 = false; else t3 = false; if (t3) { t3 = t2.$index(0, newChildren[i].key).controller; t3._direction = C._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); j = j0; } else { gapSize = _this._getGapSize$1(j); t3 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) t2.$indexSet(0, child.key, _null); for (k = 0; k < newLength; ++k) { t3 = newChildren[i + k]; t4 = _this.___MergeableMaterialState__children; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI(_s9_)); J.insert$2$ax(t4, j + k, t3); if (t3 instanceof B.MaterialGap) _this._initGap$1(t3); } j = j0 + (newLength - 1); for (k = i, gapSizeSum = 0; k < i0; ++k) { newChild = newChildren[k]; if (newChild instanceof B.MaterialGap) gapSizeSum += newChild.size; } for (k = i; k < i0; ++k) { newChild = newChildren[k]; if (newChild instanceof B.MaterialGap) { t3 = newChild.key; t4 = t2.$index(0, t3); t4.toString; t4.gapStart = gapSize * newChild.size / gapSizeSum; t3 = t2.$index(0, t3).controller; t3._lastElapsedDuration = t3._simulation = null; t3._ticker.stop$1$canceled(0, true); t3._internalSetValue$1(0); t3.notifyListeners$0(); newStatus = t3.__AnimationController__status; if (newStatus === $) newStatus = H.throwExpression(H.LateError$fieldNI("_status")); if (t3._lastReportedStatus != newStatus) { t3._lastReportedStatus = newStatus; t3.notifyStatusListeners$1(newStatus); } t3._direction = C._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); } } } } else { for (k = 0; k < newLength; ++k) { newChild = newChildren[i + k]; t3 = _this.___MergeableMaterialState__children; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI(_s9_)); J.insert$2$ax(t3, j + k, newChild); t3 = newChild instanceof B.MaterialGap; if (t3) _this._initGap$1(newChild); if (t3) { t3 = t2.$index(0, newChild.key).controller; t3._direction = C._AnimationDirection_0; t3._animateToInternal$1(t3.upperBound); } } j = j0 + newLength; } } else { if (oldLength <= 1) if (oldLength === 1) { t3 = _this.___MergeableMaterialState__children; t3 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j) instanceof B.MaterialSlice; } else t3 = false; else t3 = true; if (t3) { for (gapSizeSum = 0; j < j0;) { t3 = _this.___MergeableMaterialState__children; child = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) gapSizeSum += child.size; t3 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); if (child instanceof B.MaterialGap) t2.$indexSet(0, child.key, _null); --j0; } if (gapSizeSum !== 0) { t3 = new N.UniqueKey(); gap = new B.MaterialGap(gapSizeSum, t3); t4 = _this.___MergeableMaterialState__children; J.insert$2$ax(t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4, j, gap); _this._initGap$1(gap); t2.$index(0, t3).gapStart = 0; t3 = t2.$index(0, t3).controller; t3._lastElapsedDuration = t3._simulation = null; t3._ticker.stop$1$canceled(0, true); t3._internalSetValue$1(1); t3.notifyListeners$0(); newStatus = t3.__AnimationController__status; if (newStatus === $) newStatus = H.throwExpression(H.LateError$fieldNI("_status")); if (t3._lastReportedStatus != newStatus) { t3._lastReportedStatus = newStatus; t3.notifyStatusListeners$1(newStatus); } t3._direction = C._AnimationDirection_1; t3._animateToInternal$1(t3.lowerBound); j = j0 + 1; } else j = j0; } else { if (oldLength === 1) { t3 = _this.___MergeableMaterialState__children; t3 = t1._as(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j)).key; t2.$index(0, t3).gapStart = 0; t3 = t2.$index(0, t3).controller; t3._direction = C._AnimationDirection_1; t3._animateToInternal$1(t3.lowerBound); } j = j0; } } i = i0; } else { t3 = _this.___MergeableMaterialState__children; t3 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j); t4 = newChildren[i]; if (t3 instanceof B.MaterialGap === t4 instanceof B.MaterialGap) { t3 = _this.___MergeableMaterialState__children; J.$indexSet$ax(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, j, t4); ++i; ++j; } else ++j; } } while (true) { t1 = _this.___MergeableMaterialState__children; if (!(j < J.get$length$asx(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1))) break; t1 = _this.___MergeableMaterialState__children; child = J.removeAt$1$ax(t1 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t1, j); if (child instanceof B.MaterialGap) t2.$indexSet(0, child.key, _null); } for (; i < newChildren.length;) { t1 = newChildren[i]; t2 = _this.___MergeableMaterialState__children; J.insert$2$ax(t2 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t2, j, t1); if (t1 instanceof B.MaterialGap) _this._initGap$1(t1); ++i; ++j; } }, _mergeable_material$_borderRadius$3: function(index, start, end) { var t1, startRadius, endRadius, t2, _this = this, cardRadius = $.$get$kMaterialEdges().$index(0, C.MaterialType_1).topLeft; if (index > 0 && J.$index$asx(_this.get$_mergeable_material$_children(_this), index - 1) instanceof B.MaterialGap) { t1 = _this._animationTuples.$index(0, J.$index$asx(_this.get$_mergeable_material$_children(_this), index - 1).key).startAnimation; t1 = P.Radius_lerp(C.Radius_0_0, cardRadius, t1.get$value(t1)); t1.toString; startRadius = t1; } else startRadius = C.Radius_0_0; if (index < J.get$length$asx(_this.get$_mergeable_material$_children(_this)) - 2 && J.$index$asx(_this.get$_mergeable_material$_children(_this), index + 1) instanceof B.MaterialGap) { t1 = _this._animationTuples.$index(0, J.$index$asx(_this.get$_mergeable_material$_children(_this), index + 1).key).endAnimation; t1 = P.Radius_lerp(C.Radius_0_0, cardRadius, t1.get$value(t1)); t1.toString; endRadius = t1; } else endRadius = C.Radius_0_0; _this._widget.toString; t1 = start ? cardRadius : startRadius; t2 = end ? cardRadius : endRadius; return new K.BorderRadius(t1, t1, t2, t2); }, _getGapSize$1: function(index) { var gap = type$.MaterialGap._as(J.$index$asx(this.get$_mergeable_material$_children(this), index)), t1 = this._animationTuples, t2 = gap.key, t3 = t1.$index(0, t2).gapStart, t4 = gap.size; t2 = t1.$index(0, t2).gapAnimation; t2 = P.lerpDouble(t3, t4, t2.get$value(t2)); t2.toString; return t2; }, _willNeedDivider$1: function(index) { var _this = this; if (index < 0) return false; if (index >= J.get$length$asx(_this.get$_mergeable_material$_children(_this))) return false; return J.$index$asx(_this.get$_mergeable_material$_children(_this), index) instanceof B.MaterialSlice || _this._isClosingGap$1(index); }, build$1: function(_, context) { var t1, widgets, slices, t2, i, t3, child, hasTopDivider, hasBottomDivider, divider, border, t4, _this = this, _null = null, _s9_ = "_children"; _this._removeEmptyGaps$0(); t1 = type$.JSArray_Widget; widgets = H.setRuntimeTypeInfo([], t1); slices = H.setRuntimeTypeInfo([], t1); t2 = type$.MaterialSlice; i = 0; while (true) { t3 = _this.___MergeableMaterialState__children; if (!(i < J.get$length$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3))) break; t3 = _this.___MergeableMaterialState__children; if (J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, i) instanceof B.MaterialGap) { _this._widget.toString; widgets.push(new T.ListBody(C.Axis_1, slices, _null)); slices = H.setRuntimeTypeInfo([], t1); _this._widget.toString; t3 = _this._getGapSize$1(i); widgets.push(new T.SizedBox(_null, t3, _null, _null)); } else { t3 = _this.___MergeableMaterialState__children; child = t2._as(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, i)).child; _this._widget.toString; hasTopDivider = _this._willNeedDivider$1(i - 1); hasBottomDivider = _this._willNeedDivider$1(i + 1); t3 = _this._widget; divider = Z.Divider_createBorderSide(context, t3.dividerColor, 0.5); if (i === 0) border = new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, hasBottomDivider ? divider : C.BorderSide_m7u, C.BorderSide_m7u); else { t3 = _this.___MergeableMaterialState__children; if (i === J.get$length$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3) - 1) border = new F.Border(hasTopDivider ? divider : C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u); else { t3 = hasTopDivider ? divider : C.BorderSide_m7u; border = new F.Border(t3, C.BorderSide_m7u, hasBottomDivider ? divider : C.BorderSide_m7u, C.BorderSide_m7u); } } t3 = _this.___MergeableMaterialState__children; child = G.AnimatedContainer$(child, _null, C.Cubic_ifx, new S.BoxDecoration(_null, _null, border, _null, _null, _null, C.BoxShape_0), C.Duration_200000, _null, new B._MergeableMaterialSliceKey(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, i).key), _null, _null, _null); t3 = _this.___MergeableMaterialState__children; t2._as(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t3, i)).toString; t3 = K.Theme_of(context); t3 = t3.cardColor; t4 = _this.___MergeableMaterialState__children; slices.push(M.Container$(_null, new M.Material(child, C.MaterialType_4, 0, _null, _null, _null, _null, true, C.Clip_0, C.Duration_200000, _null, _null), C.Clip_0, _null, _null, new S.BoxDecoration(t3, _null, _null, _this._mergeable_material$_borderRadius$3(i, i === 0, i === J.get$length$asx(t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s9_)) : t4) - 1), _null, _null, C.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null)); } ++i; } if (slices.length !== 0) { _this._widget.toString; widgets.push(T.ListBody$(slices, C.Axis_1)); } t1 = C.Map_2VYR1.$index(0, _this._widget.elevation); t1.toString; _this.get$_mergeable_material$_children(_this); return new B._MergeableMaterialListBody(t1, C.Axis_1, widgets, _null); } }; B._MergeableMaterialState__handleTick_closure.prototype = { call$0: function() { }, $signature: 0 }; B._MergeableMaterialState_didUpdateWidget_closure.prototype = { call$1: function(child) { return child.key; }, $signature: 578 }; B._MergeableMaterialState_didUpdateWidget_closure0.prototype = { call$1: function(child) { return child.key; }, $signature: 578 }; B._MergeableMaterialSliceKey.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof B._MergeableMaterialSliceKey && other.value.$eq(0, this.value); }, get$hashCode: function(_) { var t1 = this.value; return t1.get$hashCode(t1); }, toString$0: function(_) { return "_MergeableMaterialSliceKey(" + this.value.toString$0(0) + ")"; }, get$value: function(receiver) { return this.value; } }; B._MergeableMaterialListBody.prototype = { createRenderObject$1: function(context) { var t1 = new B._RenderMergeableMaterialListBody(this.boxShadows, T.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false), 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { type$._RenderMergeableMaterialListBody._as(renderObject); renderObject.set$axisDirection(T.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false)); renderObject.boxShadows = this.boxShadows; } }; B._RenderMergeableMaterialListBody.prototype = { _paintShadows$2: function(canvas, rect) { var t1, t2, _i, boxShadow, t3, result, t4, t5; for (t1 = this.boxShadows, t2 = t1.length, _i = 0; _i < t2; ++_i) { boxShadow = t1[_i]; t3 = H._detectRenderer(); result = t3 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); result.set$color(0, boxShadow.color); result.set$maskFilter(new P.MaskFilter(C.BlurStyle_0, boxShadow.blurRadius * 0.57735 + 0.5)); t3 = $.$get$kMaterialEdges().$index(0, C.MaterialType_1); t4 = t3.topLeft; t5 = t3.topRight; canvas.drawRRect$2(0, P.RRect$fromRectAndCorners(rect, t3.bottomLeft, t3.bottomRight, t4, t5), result); } }, paint$2: function(context, offset) { var t1, t2, t3, i, t4, t5, t6, t7, t8, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, t2 = offset._dx, t3 = offset._dy, i = 0; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; t6 = t5._dx + t2; t5 = t5._dy + t3; t7 = child._box$_size; t8 = t7._dx; t7 = t7._dy; if ((i & 1) === 0) this._paintShadows$2(context.get$canvas(context), new P.Rect(t6, t5, t6 + t8, t5 + t7)); child = t4.ContainerParentDataMixin_nextSibling; ++i; } this.defaultPaint$2(context, offset); } }; B.__MergeableMaterialState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; E.NavigationRailThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.elevation, _this.unselectedLabelTextStyle, _this.selectedLabelTextStyle, _this.unselectedIconTheme, _this.selectedIconTheme, _this.groupAlignment, _this.labelType, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof E.NavigationRailThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && other.elevation == _this.elevation && J.$eq$(other.unselectedLabelTextStyle, _this.unselectedLabelTextStyle) && J.$eq$(other.selectedLabelTextStyle, _this.selectedLabelTextStyle) && J.$eq$(other.unselectedIconTheme, _this.unselectedIconTheme) && J.$eq$(other.selectedIconTheme, _this.selectedIconTheme) && other.groupAlignment == _this.groupAlignment && true; } }; E._NavigationRailThemeData_Object_Diagnosticable.prototype = {}; B.OutlinedButton.prototype = { defaultStyleOf$1: function(context) { var scaledPadding, t2, t3, t4, theme = K.Theme_of(context), colorScheme = theme.colorScheme, t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; scaledPadding = K.ButtonStyleButton_scaledPadding(C.EdgeInsets_16_0_16_0, C.EdgeInsets_8_0_8_0, C.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); t1 = theme.shadowColor; t2 = theme.textTheme; t3 = K.Theme_of(context).colorScheme.onSurface.value; t3 = P.Color$fromARGB(31, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); t4 = theme.visualDensity; return B.OutlinedButton_styleFrom(C.Alignment_0_0, C.Duration_200000, C.Color_0, C.SystemMouseCursor_forbidden, 0, true, C.SystemMouseCursor_click, C.Size_64_36, colorScheme.onSurface, scaledPadding, colorScheme.primary, t1, C.RoundedRectangleBorder_a510, new Y.BorderSide(t3, 1, C.BorderStyle_1), C.C__InkRippleFactory, theme.materialTapTargetSize, t2.button, t4); }, themeStyleOf$1: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.OutlinedButtonTheme); t1 = K.Theme_of(context); return t1.outlinedButtonTheme.style; } }; B._OutlinedButtonDefaultForeground.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_5)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; } }; B._OutlinedButtonDefaultOverlay.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_0)) { t1 = this.primary; return P.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } if (states.contains$1(0, C.MaterialState_1) || states.contains$1(0, C.MaterialState_2)) { t1 = this.primary; return P.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; } }; B._OutlinedButtonDefaultMouseCursor.prototype = { resolve$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.disabledCursor; return this.enabledCursor; } }; B.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable.prototype = {}; B.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; B.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable.prototype = {}; U.OutlinedButtonThemeData.prototype = { get$hashCode: function(_) { return J.get$hashCode$(this.style); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof U.OutlinedButtonThemeData && J.$eq$(other.style, this.style); } }; U._OutlinedButtonThemeData_Object_Diagnosticable.prototype = {}; V.MaterialPageRoute.prototype = { get$debugLabel: function() { return T.TransitionRoute.prototype.get$debugLabel.call(this) + "(" + H.S(this._navigator$_settings.name) + ")"; }, get$maintainState: function() { return true; } }; V.MaterialRouteTransitionMixin.prototype = { get$transitionDuration: function(_) { return C.Duration_300000; }, get$barrierColor: function() { return null; }, get$barrierLabel: function() { return null; }, canTransitionTo$1: function(nextRoute) { var t1; if (!(type$.MaterialRouteTransitionMixin_dynamic._is(nextRoute) && true)) t1 = false; else t1 = true; return t1; }, buildPage$3: function(context, animation, secondaryAnimation) { var _null = null, t1 = this.builder.call$1(context); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t1, _null); }, buildTransitions$4: function(context, animation, secondaryAnimation, child) { var matchingBuilder, theme = K.Theme_of(context).pageTransitionsTheme, platform = K.Theme_of(context).platform; if (this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) platform = C.TargetPlatform_2; matchingBuilder = theme._builders.$index(0, platform); if (matchingBuilder == null) matchingBuilder = C.C_FadeUpwardsPageTransitionsBuilder; return matchingBuilder.buildTransitions$1$5(this, context, animation, secondaryAnimation, child, this.$ti._precomputed1); } }; V._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin.prototype = {}; K._FadeUpwardsPageTransition.prototype = { build$1: function(_, context) { return K.SlideTransition$(K.FadeTransition$(false, this.child, this._opacityAnimation), this._positionAnimation, null, true); } }; K._ZoomPageTransition.prototype = { build$1: function(_, context) { return new N.DualTransitionBuilder(this.animation, new K._ZoomPageTransition_build_closure(), new K._ZoomPageTransition_build_closure0(), new N.DualTransitionBuilder(new S.ReverseAnimation(this.secondaryAnimation, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), 0), new K._ZoomPageTransition_build_closure1(), new K._ZoomPageTransition_build_closure2(), this.child, null), null); } }; K._ZoomPageTransition_build_closure.prototype = { call$3: function(context, animation, child) { return new K._ZoomEnterTransition(animation, child, false, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 577 }; K._ZoomPageTransition_build_closure0.prototype = { call$3: function(context, animation, child) { return new K._ZoomExitTransition(animation, true, child, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 575 }; K._ZoomPageTransition_build_closure1.prototype = { call$3: function(context, animation, child) { return new K._ZoomEnterTransition(animation, child, true, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 577 }; K._ZoomPageTransition_build_closure2.prototype = { call$3: function(context, animation, child) { return new K._ZoomExitTransition(animation, false, child, null); }, "call*": "call$3", $requiredArgCount: 3, $signature: 575 }; K._ZoomEnterTransition.prototype = { build$1: function(_, context) { var t2, t3, t4, fadeTransition, _this = this, t1 = {}; t1.opacity = 0; t2 = _this.reverse; if (!t2) { t3 = _this.animation; t3 = t3.get$status(t3) !== C.AnimationStatus_3; } else t3 = false; if (t3) { t3 = $.$get$_ZoomEnterTransition__scrimOpacityTween(); t4 = _this.animation; t3.toString; t4 = t3.transform$1(0, t4.get$value(t4)); t4.toString; t1.opacity = t4; } if (t2) fadeTransition = C.C__AlwaysCompleteAnimation; else { t3 = $.$get$_ZoomEnterTransition__fadeInTransition(); t3.toString; fadeTransition = new R._AnimatedEvaluation(_this.animation, t3, t3.$ti._eval$1("_AnimatedEvaluation")); } t2 = t2 ? $.$get$_ZoomEnterTransition__scaleDownTransition() : $.$get$_ZoomEnterTransition__scaleUpTransition(); t3 = _this.animation; t2.toString; return K.AnimatedBuilder$(t3, new K._ZoomEnterTransition_build_closure(t1), K.FadeTransition$(false, K.ScaleTransition$(C.Alignment_0_0, _this.child, new R._AnimatedEvaluation(t3, t2, t2.$ti._eval$1("_AnimatedEvaluation"))), fadeTransition)); } }; K._ZoomEnterTransition_build_closure.prototype = { call$2: function(context, child) { var _null = null; return M.Container$(_null, child, C.Clip_0, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * this._box_0.opacity), 0, 0, 0), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2052 }; K._ZoomExitTransition.prototype = { build$1: function(_, context) { var t2, fadeTransition, _this = this, t1 = _this.reverse; if (t1) { t2 = $.$get$_ZoomExitTransition__fadeOutTransition(); t2.toString; fadeTransition = new R._AnimatedEvaluation(_this.animation, t2, t2.$ti._eval$1("_AnimatedEvaluation")); } else fadeTransition = C.C__AlwaysCompleteAnimation; t1 = t1 ? $.$get$_ZoomExitTransition__scaleDownTransition() : $.$get$_ZoomExitTransition__scaleUpTransition(); t1.toString; return K.FadeTransition$(false, K.ScaleTransition$(C.Alignment_0_0, _this.child, new R._AnimatedEvaluation(_this.animation, t1, t1.$ti._eval$1("_AnimatedEvaluation"))), fadeTransition); } }; K.PageTransitionsBuilder.prototype = {}; K.FadeUpwardsPageTransitionsBuilder.prototype = { buildTransitions$1$5: function(route, context, animation, secondaryAnimation, child) { var t3, t4, t1 = $.$get$_FadeUpwardsPageTransition__bottomUpTween(), t2 = $.$get$_FadeUpwardsPageTransition__fastOutSlowInTween(); t1.toString; t3 = t1.$ti._eval$1("_ChainedEvaluation"); animation.toString; type$.Animation_double._as(animation); t4 = $.$get$_FadeUpwardsPageTransition__easeInTween(); t4.toString; return new K._FadeUpwardsPageTransition(new R._AnimatedEvaluation(animation, new R._ChainedEvaluation(t2, t1, t3), t3._eval$1("_AnimatedEvaluation")), new R._AnimatedEvaluation(animation, t4, H._instanceType(t4)._eval$1("_AnimatedEvaluation")), child, null); } }; K.ZoomPageTransitionsBuilder.prototype = { buildTransitions$1$5: function(route, context, animation, secondaryAnimation, child) { return new K._ZoomPageTransition(animation, secondaryAnimation, child, null); } }; K.CupertinoPageTransitionsBuilder.prototype = { buildTransitions$1$5: function(route, context, animation, secondaryAnimation, child, $T) { return D.CupertinoRouteTransitionMixin_buildPageTransitions(route, context, animation, secondaryAnimation, child, $T); } }; K.PageTransitionsTheme.prototype = { _all$1: function(builders) { var t1 = type$.MappedListIterable_of_legacy_TargetPlatform_and_nullable_PageTransitionsBuilder; return P.List_List$of(new H.MappedListIterable(C.List_uDp, new K.PageTransitionsTheme__all_closure(builders), t1), true, t1._eval$1("ListIterable.E")); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; t1 = other instanceof K.PageTransitionsTheme; if (t1 && _this._builders === other._builders) return true; return t1 && S.listEquals(_this._all$1(other._builders), _this._all$1(_this._builders)); }, get$hashCode: function(_) { return P.hashList(this._all$1(this._builders)); } }; K.PageTransitionsTheme__all_closure.prototype = { call$1: function(platform) { return this.builders.$index(0, platform); }, $signature: 2053 }; K._PageTransitionsTheme_Object_Diagnosticable.prototype = {}; R.PaginatedDataTable.prototype = { createState$0: function() { return new R.PaginatedDataTableState(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.nullable_DataRow), new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); } }; R.PaginatedDataTableState.prototype = { get$_firstRowIndex: function() { var t1 = this.__PaginatedDataTableState__firstRowIndex; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_firstRowIndex")) : t1; }, get$_rowCount: function() { var t1 = this.__PaginatedDataTableState__rowCount; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_rowCount")) : t1; }, get$_rowCountApproximate: function() { var t1 = this.__PaginatedDataTableState__rowCountApproximate; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_rowCountApproximate")) : t1; }, initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; t1 = S.PageStorage_of(t1); if (t1 == null) t1 = null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.readState$1(t2); t1 = t2; } H._asIntQ(t1); if (t1 == null) { _this._widget.toString; t1 = 0; } _this.__PaginatedDataTableState__firstRowIndex = t1; t1 = _this._widget.source.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleDataSourceChanged()), false); _this._handleDataSourceChanged$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.source; if (t1 != _this._widget.source) { t2 = _this.get$_handleDataSourceChanged(); t1.removeListener$1(0, t2); t1 = _this._widget.source.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); _this._handleDataSourceChanged$0(); } }, dispose$0: function(_) { this._widget.source.removeListener$1(0, this.get$_handleDataSourceChanged()); this.super$State$dispose(0); }, _handleDataSourceChanged$0: function() { this.setState$1(new R.PaginatedDataTableState__handleDataSourceChanged_closure(this)); }, pageTo$1: function(rowIndex) { var _this = this; _this.get$_firstRowIndex(); _this.setState$1(new R.PaginatedDataTableState_pageTo_closure(_this, rowIndex)); _this._widget.toString; }, _getBlankRowFor$1: function(index) { var t1 = this._widget.columns, t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DataCell>"); return S.DataRow$byIndex(P.List_List$of(new H.MappedListIterable(t1, new R.PaginatedDataTableState__getBlankRowFor_closure(), t2), true, t2._eval$1("ListIterable.E")), index); }, _getProgressIndicatorRowFor$1: function(index) { var t2, t3, cells, t1 = {}; t1.haveProgressIndicator = false; t2 = this._widget.columns; t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DataCell>"); cells = P.List_List$of(new H.MappedListIterable(t2, new R.PaginatedDataTableState__getProgressIndicatorRowFor_closure(t1), t3), true, t3._eval$1("ListIterable.E")); if (!t1.haveProgressIndicator) { t1.haveProgressIndicator = true; cells[0] = C.DataCell_su2; } return S.DataRow$byIndex(cells, index); }, _getRows$2: function(firstRowIndex, rowsPerPage) { var t1, index, haveProgressIndicator, t2, row, _this = this, result = H.setRuntimeTypeInfo([], type$.JSArray_DataRow), nextPageFirstRowIndex = firstRowIndex + rowsPerPage; for (t1 = _this._paginated_data_table$_rows, index = firstRowIndex, haveProgressIndicator = false; index < nextPageFirstRowIndex; ++index) { t2 = _this.__PaginatedDataTableState__rowCount; if (!(index < (t2 === $ ? H.throwExpression(H.LateError$fieldNI("_rowCount")) : t2))) { t2 = _this.__PaginatedDataTableState__rowCountApproximate; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_rowCountApproximate")); } else t2 = true; if (t2) { row = t1.putIfAbsent$2(0, index, new R.PaginatedDataTableState__getRows_closure(_this, index)); t2 = row == null; if (t2 && !haveProgressIndicator) { if (t2) row = _this._getProgressIndicatorRowFor$1(index); haveProgressIndicator = true; } } else row = null; result.push(row == null ? _this._getBlankRowFor$1(index) : row); } return result; }, _handlePrevious$0: function() { var t1 = this.get$_firstRowIndex(); this._widget.toString; this.pageTo$1(Math.max(t1 - 10, 0)); }, _handleNext$0: function() { var t1 = this.get$_firstRowIndex(); this._widget.toString; this.pageTo$1(t1 + 10); }, _isNextPageUnavailable$0: function() { var t1, _this = this; if (!_this.get$_rowCountApproximate()) { t1 = _this.get$_firstRowIndex(); _this._widget.toString; t1 = t1 + 10 >= _this.get$_rowCount(); } else t1 = false; return t1; }, build$1: function(_, context) { var t3, headerWidgets, t4, t5, footerWidgets, t6, t7, _this = this, _null = null, t1 = {}, themeData = K.Theme_of(context), t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = type$.JSArray_Widget; headerWidgets = H.setRuntimeTypeInfo([], t3); t1.startPadding = 24; t4 = _this._selectedRowCount; if (t4 === 0) { _this._widget.toString; t5 = true; } else t5 = false; if (t5) { headerWidgets.push(T.Expanded$(_this._widget.header, 1)); _this._widget.toString; } else { _this._widget.toString; headerWidgets.push(T.Expanded$(L.Text$(t2.selectedRowCountTitle$1(t4), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)); } _this._widget.toString; t4 = themeData.textTheme; footerWidgets = H.setRuntimeTypeInfo([], t3); _this._widget.toString; t5 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t6 = _this.get$_firstRowIndex(); t7 = _this.get$_firstRowIndex(); _this._widget.toString; t3 = H.setRuntimeTypeInfo([t5, L.Text$(t2.pageRowsInfoTitle$4(t6 + 1, t7 + 10, _this.get$_rowCount(), _this.get$_rowCountApproximate()), _null, _null, _null, _null, _null, _null, _null, _null, _null), M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32)], t3); _this._widget.toString; t5 = t2.get$previousPageTooltip(); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_cKo, 24, _this.get$_firstRowIndex() <= 0 ? _null : _this.get$_handlePrevious(), C.EdgeInsets_0_0_0_0, t5, _null)); t3.push(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 24)); t2 = t2.get$nextPageTooltip(); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_wEo, 24, _this._isNextPageUnavailable$0() ? _null : _this.get$_handleNext(), C.EdgeInsets_0_0_0_0, t2, _null)); _this._widget.toString; t3.push(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14)); C.JSArray_methods.addAll$1(footerWidgets, t3); return new A.LayoutBuilder(new R.PaginatedDataTableState_build_closure(t1, _this, headerWidgets, themeData, t4.caption, footerWidgets), _null); } }; R.PaginatedDataTableState__handleDataSourceChanged_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.source; t1.__PaginatedDataTableState__rowCount = t2.get$rowCount(t2); t1._widget.source.toString; t1.__PaginatedDataTableState__rowCountApproximate = false; t1._selectedRowCount = 0; t1._paginated_data_table$_rows.clear$0(0); }, $signature: 0 }; R.PaginatedDataTableState_pageTo_closure.prototype = { call$0: function() { var t1 = this.$this; t1._widget.toString; t1.__PaginatedDataTableState__firstRowIndex = C.JSInt_methods._tdivFast$1(this.rowIndex, 10) * 10; }, $signature: 0 }; R.PaginatedDataTableState__getBlankRowFor_closure.prototype = { call$1: function(column) { return C.DataCell_AHF; }, $signature: 574 }; R.PaginatedDataTableState__getProgressIndicatorRowFor_closure.prototype = { call$1: function(column) { if (!column.numeric) { this._box_0.haveProgressIndicator = true; return C.DataCell_su2; } return C.DataCell_AHF; }, $signature: 574 }; R.PaginatedDataTableState__getRows_closure.prototype = { call$0: function() { return this.$this._widget.source.getRow$1(this.index); }, $signature: 2057 }; R.PaginatedDataTableState_build_closure.prototype = { call$2: function(context, constraints) { var t3, t4, t5, _this = this, _null = null, t1 = H.setRuntimeTypeInfo([], type$.JSArray_Widget), t2 = _this.headerWidgets; if (t2.length !== 0) { t3 = _this.$this; t4 = _this.themeData; t5 = t4.textTheme; t5 = t3._selectedRowCount > 0 ? t5.subtitle1.copyWith$1$color(t4.colorScheme.secondary) : t5.headline6.copyWith$1$fontWeight(C.FontWeight_3); t3 = t3._selectedRowCount > 0 ? t4.secondaryHeaderColor : _null; t5 = L.DefaultTextStyle$(Y.IconTheme_merge(D.Ink$(new T.Padding(new V.EdgeInsetsDirectional(_this._box_0.startPadding, 0, 14, 0), T.Row$(t2, C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null), _null), t3, _null, 64), C.IconThemeData_gsm), _null, _null, C.TextOverflow_0, true, t5, _null, _null, C.TextWidthBasis_0); t1.push(new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, t5, _null)); } t2 = _this.$this; t3 = t2._widget; t3.toString; t4 = constraints.minWidth; t5 = t2.get$_firstRowIndex(); t2._widget.toString; t1.push(E.SingleChildScrollView$(new T.ConstrainedBox(new S.BoxConstraints(t4, 1 / 0, 0, 1 / 0), S.DataTable$(_null, 56, t3.columns, 48, C.BoxDecoration_PTL, 56, 24, t2._tableKey, _null, t2._getRows$2(t5, 10), true, true, t3.sortAscending, t3.sortColumnIndex), _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_0)); t3 = _this.footerTextStyle; t3.toString; t2._widget.toString; t1.push(L.DefaultTextStyle$(Y.IconTheme_merge(T.SizedBox$(E.SingleChildScrollView$(T.Row$(_this.footerWidgets, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, C.DragStartBehavior_1, _null, _null, true, C.Axis_0), 56, _null), C.IconThemeData_gsm), _null, _null, C.TextOverflow_0, true, t3, _null, _null, C.TextWidthBasis_0)); return V.Card$(T.Column$(t1, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null, _null, _null, false, _null); }, $signature: 2058 }; Z.PopupMenuEntry.prototype = {}; Z.PopupMenuDivider.prototype = { represents$1: function(value) { return false; }, createState$0: function() { return new Z._PopupMenuDividerState(C._StateLifecycle_0); } }; Z._PopupMenuDividerState.prototype = { build$1: function(_, context) { this._widget.toString; return Z.Divider$(null, 16, null); } }; Z._MenuItem0.prototype = { createRenderObject$1: function(context) { var t1 = new Z._RenderMenuItem0(this.onLayout, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.onLayout = this.onLayout; } }; Z._RenderMenuItem0.prototype = { computeDryLayout$1: function(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return C.Size_0_0; return t1.getDryLayout$1(constraints); }, performLayout$0: function() { var t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) t1 = _this._box$_size = C.Size_0_0; else { t2 = type$.BoxConstraints; t1.layout$2$parentUsesSize(0, t2._as(K.RenderObject.prototype.get$constraints.call(_this)), true); t2 = t2._as(K.RenderObject.prototype.get$constraints.call(_this)); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; t1 = _this._box$_size = t2.constrain$1(t1); t2 = _this.RenderObjectWithChildMixin__child.parentData; t2.toString; type$.BoxParentData._as(t2).offset = C.Offset_0_0; } _this.onLayout.call$1(t1); } }; Z.PopupMenuItem.prototype = { represents$1: function(value) { var t1 = this.value; return value == null ? t1 == null : value === t1; }, createState$0: function() { var t1 = this.$ti; return new Z.PopupMenuItemState(C._StateLifecycle_0, t1._eval$1("@<1>")._bind$1(t1)._eval$1("PopupMenuItemState<1,2>")); }, get$value: function(receiver) { return this.value; } }; Z.PopupMenuItemState.prototype = { handleTap$0: function() { var t2, t1 = this._framework$_element; t1.toString; t2 = this._widget.value; K.Navigator_of(t1, false).pop$1(0, t2); }, build$1: function(_, context) { var style, t2, item, effectiveMouseCursor, _null = null, theme = K.Theme_of(context), popupMenuTheme = R.PopupMenuTheme_of(context), t1 = this._widget; t1.toString; style = popupMenuTheme.textStyle; if (style == null) { t2 = theme.textTheme.subtitle1; t2.toString; style = t2; } item = G.AnimatedDefaultTextStyle$(M.Container$(C.AlignmentDirectional_m1_0, t1.child, C.Clip_0, _null, new S.BoxConstraints(0, 1 / 0, 48, 1 / 0), _null, _null, _null, _null, _null, C.EdgeInsets_16_0_16_0, _null, _null, _null), C.C__Linear, C.Duration_200000, true, style); effectiveMouseCursor = V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), type$.MouseCursor); this._widget.toString; t1 = R.InkWell$(false, _null, true, item, _null, true, _null, _null, _null, _null, _null, effectiveMouseCursor, _null, _null, _null, _null, _null, this.get$handleTap(), _null, _null, _null, _null, _null); return new T.MergeSemantics(new T.Semantics(A.SemanticsProperties$(true, _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, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null), _null); } }; Z._PopupMenu.prototype = { build$1: function(_, context) { var t4, t5, t6, i, i0, start, end, t7, opacity, item, _this = this, _null = null, t1 = _this.route, t2 = t1.items, t3 = J.getInterceptor$asx(t2), unit = 1 / (t3.get$length(t2) + 1.5), children = H.setRuntimeTypeInfo([], type$.JSArray_Widget), popupMenuTheme = R.PopupMenuTheme_of(context); for (t4 = t1.initialValue, t5 = t4 != null, t6 = 1.5 * unit, i = 0; i < t3.get$length(t2); i = i0) { i0 = i + 1; start = i0 * unit; end = C.JSNumber_methods.clamp$2(start + t6, 0, 1); t7 = t1._animationProxy; opacity = new S.CurvedAnimation(t7, new Z.Interval(start, end, C.C__Linear), _null); opacity._updateCurveDirection$1(t7.get$status(t7)); t7.didRegisterListener$0(); t7 = t7.AnimationLocalStatusListenersMixin__statusListeners; t7._isDirty = true; t7._observer_list$_list.push(opacity.get$_updateCurveDirection()); item = t3.$index(t2, i); if (t5 && t3.$index(t2, i).represents$1(t4)) item = M.Container$(_null, item, C.Clip_0, K.Theme_of(context).highlightColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); children.push(new Z._MenuItem0(new Z._PopupMenu_build_closure(_this, i), new K.FadeTransition(opacity, false, item, _null), _null)); } t2 = t3.get$length(t2); t3 = E.SingleChildScrollView$(T.ListBody$(children, C.Axis_1), _null, C.DragStartBehavior_1, C.EdgeInsets_0_8_0_8, _null, false, C.Axis_1); t3 = T.IntrinsicWidth$(new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.semanticLabel, _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, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t3, _null), 56); t1 = t1._animationProxy; t1.toString; return K.AnimatedBuilder$(t1, new Z._PopupMenu_build_closure0(_this, new R.CurveTween(C.Interval_75R5), popupMenuTheme, new R.CurveTween(new Z.Interval(0, unit, C.C__Linear)), new R.CurveTween(new Z.Interval(0, unit * t2, C.C__Linear))), new T.ConstrainedBox(C.BoxConstraints_EcO, t3, _null)); } }; Z._PopupMenu_build_closure.prototype = { call$1: function(size) { this.$this.route.itemSizes[this.i] = size; }, $signature: 588 }; Z._PopupMenu_build_closure0.prototype = { call$2: function(context, child) { var t3, t4, t5, t6, _this = this, _null = null, t1 = _this.$this.route, t2 = t1._animationProxy; t2 = _this.opacity.transform$1(0, t2.get$value(t2)); t3 = t1.shape; if (t3 == null) t3 = _this.popupMenuTheme.shape; t4 = t1.color; if (t4 == null) t4 = _this.popupMenuTheme.color; t5 = t1.elevation; if (t5 == null) t5 = _this.popupMenuTheme.elevation; if (t5 == null) t5 = 8; t6 = t1._animationProxy; t6 = _this.width.transform$1(0, t6.get$value(t6)); t1 = t1._animationProxy; return T.Opacity$(false, M.Material$(C.Duration_200000, true, _null, new T.Align(C.AlignmentDirectional_1_m1, t6, _this.height.transform$1(0, t1.get$value(t1)), child, _null), C.Clip_0, t4, t5, _null, _null, t3, _null, C.MaterialType_1), t2); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2064 }; Z._PopupMenuRouteLayout.prototype = { getConstraintsForChild$1: function(constraints) { return S.BoxConstraints$loose(new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight))).deflate$1(C.EdgeInsets_8_8_8_8.$add(0, this.padding)); }, getPositionForChild$2: function(size, childSize) { var t4, selectedItemOffset, index, x, x0, t5, y0, _this = this, t1 = size._dy, t2 = _this.position, y = t2.top, t3 = _this.selectedItemIndex; if (t3 != null && true) { t3.toString; t4 = _this.itemSizes; selectedItemOffset = 8; index = 0; for (; index < t3; ++index) selectedItemOffset += t4[index]._dy; y = y + (t1 - y - t2.bottom) / 2 - (selectedItemOffset + t4[t3]._dy / 2); } x = t2.left; t2 = t2.right; if (x > t2) x = size._dx - t2 - childSize._dx; else if (!(x < t2)) switch (_this.textDirection) { case C.TextDirection_0: x = size._dx - t2 - childSize._dx; break; case C.TextDirection_1: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = _this.padding; x0 = 8 + t2.left; if (x < x0) x = x0; else { t3 = childSize._dx; t4 = size._dx; t5 = t2.right; if (x + t3 > t4 - 8 - t5) x = t4 - t3 - 8 - t5; } y0 = 8 + t2.top; if (y < y0) y = y0; else { t3 = childSize._dy; t2 = t2.bottom; if (y + t3 > t1 - 8 - t2) y = t1 - t2 - 8 - t3; } return new P.Offset(x, y); }, shouldRelayout$1: function(oldDelegate) { var _this = this; return !_this.position.$eq(0, oldDelegate.position) || _this.selectedItemIndex != oldDelegate.selectedItemIndex || _this.textDirection != oldDelegate.textDirection || !S.listEquals(_this.itemSizes, oldDelegate.itemSizes) || !_this.padding.$eq(0, oldDelegate.padding); } }; Z._PopupMenuRoute.prototype = { createAnimation$0: function() { return S.CurvedAnimation$(C.C__Linear, this.super$TransitionRoute$createAnimation(), C.Interval_75R6); }, get$transitionDuration: function(_) { return C.Duration_300000; }, get$barrierDismissible: function() { return true; }, get$barrierColor: function() { return null; }, buildPage$3: function(context, animation, secondaryAnimation) { var t1, t2, t3, index, _this = this, _box_0 = {}; _box_0.selectedItemIndex = null; t1 = _this.initialValue; if (t1 != null) { t2 = _this.items; t3 = J.getInterceptor$asx(t2); index = 0; while (true) { if (!(_box_0.selectedItemIndex == null && index < t3.get$length(t2))) break; if (t3.$index(t2, index).represents$1(t1)) _box_0.selectedItemIndex = index; ++index; } } return F.MediaQuery_MediaQuery$removePadding(new T.Builder(new Z._PopupMenuRoute_buildPage_closure(_box_0, _this, context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, new Z._PopupMenu(_this, _this.semanticLabel, null, _this.$ti._eval$1("_PopupMenu<1>"))), null), context, true, true, true, true); }, get$barrierLabel: function() { return this.barrierLabel; } }; Z._PopupMenuRoute_buildPage_closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.$this, t2 = _this._box_0.selectedItemIndex, t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; return new T.CustomSingleChildLayout(new Z._PopupMenuRouteLayout(t1.position, t1.itemSizes, t2, t3.textDirection, _this.mediaQuery.padding), new M._CaptureAll(t1.capturedThemes._themes, _this.menu, null), null); }, $signature: 590 }; Z.PopupMenuButton.prototype = { createState$0: function() { return new Z.PopupMenuButtonState(C._StateLifecycle_0, this.$ti._eval$1("PopupMenuButtonState<1>")); }, itemBuilder$1: function(arg0) { return this.itemBuilder.call$1(arg0); } }; Z.PopupMenuButtonState.prototype = { showButtonMenu$0: function() { var popupMenuTheme, t2, t3, t4, position, items, elevation, shape, color, semanticLabel, t5, $navigator, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; popupMenuTheme = R.PopupMenuTheme_of(t1); t1 = _this._framework$_element.get$renderObject(); t1.toString; t2 = type$.RenderBox; t2._as(t1); t3 = _this._framework$_element; t3.toString; t3 = K.Navigator_of(t3, false).get$_overlayKey().get$currentState()._framework$_element.get$renderObject(); t3.toString; t2._as(t3); _this._widget.toString; t2 = T.MatrixUtils_transformPoint(t1.getTransformTo$1(0, t3), C.Offset_0_0); t4 = t1._box$_size.bottomRight$1(0, C.Offset_0_0); _this._widget.toString; t4 = t4.$add(0, C.Offset_0_0); t4 = P.Rect$fromPoints(t2, T.MatrixUtils_transformPoint(t1.getTransformTo$1(0, t3), t4)); t3 = t3._box$_size; position = K.RelativeRect_RelativeRect$fromRect(t4, new P.Rect(0, 0, 0 + t3._dx, 0 + t3._dy)); t3 = _this._widget; t3.toString; t4 = _this._framework$_element; t4.toString; items = t3.itemBuilder$1(t4); t1 = J.getInterceptor$asx(items); if (t1.get$isNotEmpty(items)) { t2 = _this._framework$_element; t2.toString; t3 = _this._widget; t3.toString; elevation = popupMenuTheme.elevation; shape = popupMenuTheme.shape; color = t3.color; if (color == null) color = popupMenuTheme.color; t4 = _this.$ti; switch (K.Theme_of(t2).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: semanticLabel = _null; break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t5 = L.Localizations_of(t2, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t5.toString; semanticLabel = t5.get$popupMenuLabel(); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); semanticLabel = _null; } $navigator = K.Navigator_of(t2, false); t5 = L.Localizations_of(t2, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t5.toString; t5 = t5.get$modalBarrierDismissLabel(); t6 = $navigator._framework$_element; t6.toString; t6 = M.InheritedTheme_capture(t2, t6); t1 = P.List_List$filled(t1.get$length(items), _null, false, type$.nullable_Size); t2 = H.setRuntimeTypeInfo([], type$.JSArray_of_Future_bool_Function); t7 = $.Zone__current; t8 = t4._eval$1("_Future<1?>"); t9 = t4._eval$1("_AsyncCompleter<1?>"); t10 = S.ProxyAnimation$(C.C__AlwaysDismissedAnimation); t11 = H.setRuntimeTypeInfo([], type$.JSArray_OverlayEntry); t12 = $.Zone__current; $navigator.push$1(new Z._PopupMenuRoute(position, items, t1, t3.initialValue, elevation, semanticLabel, shape, color, t6, t5, _null, t2, new N.LabeledGlobalKey(_null, t4._eval$1("LabeledGlobalKey<_ModalScopeState<1?>>")), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), new S.PageStorageBucket(), _null, new P._AsyncCompleter(new P._Future(t7, t8), t9), t10, t11, C.RouteSettings_null_null, new B.ValueNotifier(_null, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_nullable_String), new P._AsyncCompleter(new P._Future(t12, t8), t9), t4._eval$1("_PopupMenuRoute<1?>"))).then$1$1(0, new Z.PopupMenuButtonState_showButtonMenu_closure(_this), type$.void); } }, get$_popup_menu$_canRequestFocus: function() { var mode, t1 = this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: return this._widget.enabled; case C.NavigationMode_1: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t1, t2, t3, _this = this, _null = null; _this._widget.toString; t1 = R.PopupMenuTheme_of(context); t1.toString; t1 = _this._widget; if (t1.child != null) { t1 = t1.tooltip; if (t1 == null) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$showMenuTooltip(); } t2 = _this._widget.enabled ? _this.get$showButtonMenu() : _null; return S.Tooltip$(R.InkWell$(false, _null, _this.get$_popup_menu$_canRequestFocus(), _this._widget.child, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null), t1); } t2 = t1.icon; if (t2 == null) t2 = L.Icon$(!Q._PlatformAdaptiveIcons__isCupertino() ? C.IconData_58372_MaterialIcons_null_false : C.IconData_58370_MaterialIcons_null_false, _null, _null); t3 = t1.padding; t1 = t1.tooltip; if (t1 == null) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$showMenuTooltip(); } return B.IconButton$(C.Alignment_0_0, _null, _null, true, t2, 24, _this._widget.enabled ? _this.get$showButtonMenu() : _null, t3, t1, _null); } }; Z.PopupMenuButtonState_showButtonMenu_closure.prototype = { call$1: function(newValue) { var t1 = this.$this; if (t1._framework$_element == null) return null; if (newValue == null) { t1._widget.toString; return null; } t1._widget.onSelected.call$1(newValue); }, $signature: function() { return this.$this.$ti._eval$1("Null(1?)"); } }; R.PopupMenuThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.shape, _this.elevation, _this.textStyle, _this.enableFeedback, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof R.PopupMenuThemeData && other.elevation == _this.elevation && J.$eq$(other.color, _this.color) && J.$eq$(other.shape, _this.shape) && J.$eq$(other.textStyle, _this.textStyle) && true; } }; R._PopupMenuThemeData_Object_Diagnosticable.prototype = {}; U._ActivityIndicatorType.prototype = { toString$0: function(_) { return this._progress_indicator$_name; } }; U.ProgressIndicator.prototype = { _getValueColor$1: function(context) { var t1 = this.valueColor; t1 = t1 == null ? null : t1.get$value(t1); if (t1 == null) t1 = this.color; return t1 == null ? K.Theme_of(context).colorScheme.primary : t1; }, _buildSemanticsWrapper$2$child$context: function(child, context) { var _null = null, expandedSemanticsValue = this.semanticsValue, t1 = this.value; if (t1 != null) expandedSemanticsValue = "" + C.JSNumber_methods.round$0(t1 * 100) + "%"; return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.semanticsLabel, _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, expandedSemanticsValue), false, false, false, child, _null); }, get$value: function(receiver) { return this.value; } }; U._LinearProgressIndicatorPainter.prototype = { paint$2: function(canvas, size) { var t2, t3, x1, t4, x2, _this = this, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, _this.backgroundColor); paint.set$style(0, C.PaintingStyle_0); t1 = size._dx; canvas.drawRect$2(0, new P.Rect(0, 0, 0 + t1, 0 + size._dy), paint); paint.set$color(0, _this.valueColor); t2 = new U._LinearProgressIndicatorPainter_paint_drawBar(_this, size, canvas, paint); t3 = _this.value; if (t3 != null) t2.call$2(0, C.JSNumber_methods.clamp$2(t3, 0, 1) * t1); else { t3 = _this.animationValue; x1 = t1 * C.Interval_unQ.transform$1(0, t3); t4 = C.Interval_8Wd.transform$1(0, t3); x2 = t1 * C.Interval_2ds.transform$1(0, t3); t3 = C.Interval_q3Z.transform$1(0, t3); t2.call$2(x1, t1 * t4 - x1); t2.call$2(x2, t1 * t3 - x2); } }, shouldRepaint$1: function(oldPainter) { var _this = this; return !J.$eq$(oldPainter.backgroundColor, _this.backgroundColor) || !J.$eq$(oldPainter.valueColor, _this.valueColor) || oldPainter.value != _this.value || oldPainter.animationValue != _this.animationValue || oldPainter.textDirection != _this.textDirection; }, get$value: function(receiver) { return this.value; } }; U._LinearProgressIndicatorPainter_paint_drawBar.prototype = { call$2: function(x, width) { var left, _this = this; if (width <= 0) return; switch (_this.$this.textDirection) { case C.TextDirection_0: left = _this.size._dx - width - x; break; case C.TextDirection_1: left = x; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.canvas.drawRect$2(0, new P.Rect(left, 0, left + width, 0 + _this.size._dy), _this.paint); }, $signature: 571 }; U.LinearProgressIndicator.prototype = { createState$0: function() { return new U._LinearProgressIndicatorState(null, C._StateLifecycle_0); } }; U._LinearProgressIndicatorState.prototype = { get$_progress_indicator$_controller: function() { var t1 = this.___LinearProgressIndicatorState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___LinearProgressIndicatorState__controller = G.AnimationController$(null, C.Duration_1800000, 0, null, 1, null, _this); if (_this._widget.value == null) _this.get$_progress_indicator$_controller().repeat$0(0); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.value == null) { t1 = _this.get$_progress_indicator$_controller()._ticker; t1 = !(t1 != null && t1._ticker$_future != null); } else t1 = false; if (t1) _this.get$_progress_indicator$_controller().repeat$0(0); else { if (_this._widget.value != null) { t1 = _this.get$_progress_indicator$_controller()._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = false; if (t1) _this.get$_progress_indicator$_controller().stop$0(0); } }, dispose$0: function(_) { this.get$_progress_indicator$_controller().dispose$0(0); this.super$__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose(0); }, _buildIndicator$3: function(context, animationValue, textDirection) { var t2, _null = null, t1 = this._widget; t1.toString; t2 = K.Theme_of(context); t2 = t2.colorScheme.background; return t1._buildSemanticsWrapper$2$child$context(M.Container$(_null, T.CustomPaint$(_null, _null, _null, new U._LinearProgressIndicatorPainter(t2, this._widget._getValueColor$1(context), this._widget.value, animationValue, textDirection, _null), C.Size_0_0), C.Clip_0, _null, new S.BoxConstraints(1 / 0, 1 / 0, 4, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null), context); }, build$1: function(_, context) { var textDirection, _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; if (_this._widget.value != null) return _this._buildIndicator$3(context, _this.get$_progress_indicator$_controller().get$_animation_controller$_value(), textDirection); t1 = _this.get$_progress_indicator$_controller(); t1.toString; return K.AnimatedBuilder$(t1, new U._LinearProgressIndicatorState_build_closure(_this, textDirection), null); } }; U._LinearProgressIndicatorState_build_closure.prototype = { call$2: function(context, child) { var t1 = this.$this; return t1._buildIndicator$3(context, t1.get$_progress_indicator$_controller().get$_animation_controller$_value(), this.textDirection); }, "call*": "call$2", $requiredArgCount: 2, $signature: 229 }; U._CircularProgressIndicatorPainter.prototype = { paint$2: function(canvas, size) { var _this = this, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, _this.valueColor); paint.set$strokeWidth(_this.strokeWidth); paint.set$style(0, C.PaintingStyle_1); if (_this.value == null) paint.set$strokeCap(C.StrokeCap_2); canvas.drawArc$5(0, new P.Rect(0, 0, 0 + size._dx, 0 + size._dy), _this.arcStart, _this.arcSweep, false, paint); }, shouldRepaint$1: function(oldPainter) { var _this = this, t1 = !J.$eq$(oldPainter.valueColor, _this.valueColor) || oldPainter.value != _this.value || oldPainter.headValue != _this.headValue || oldPainter.tailValue != _this.tailValue || oldPainter.offsetValue != _this.offsetValue || oldPainter.rotationValue != _this.rotationValue || oldPainter.strokeWidth !== _this.strokeWidth; return t1; }, get$value: function(receiver) { return this.value; } }; U.CircularProgressIndicator.prototype = { createState$0: function() { return new U._CircularProgressIndicatorState(null, C._StateLifecycle_0); } }; U._CircularProgressIndicatorState.prototype = { get$_progress_indicator$_controller: function() { var t1 = this.___CircularProgressIndicatorState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___CircularProgressIndicatorState__controller = G.AnimationController$(null, C.Duration_2961926000, 0, null, 1, null, _this); if (_this._widget.value == null) _this.get$_progress_indicator$_controller().repeat$0(0); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.value == null) { t1 = _this.get$_progress_indicator$_controller()._ticker; t1 = !(t1 != null && t1._ticker$_future != null); } else t1 = false; if (t1) _this.get$_progress_indicator$_controller().repeat$0(0); else { if (_this._widget.value != null) { t1 = _this.get$_progress_indicator$_controller()._ticker; t1 = t1 != null && t1._ticker$_future != null; } else t1 = false; if (t1) _this.get$_progress_indicator$_controller().stop$0(0); } }, dispose$0: function(_) { this.get$_progress_indicator$_controller().dispose$0(0); this.super$__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose(0); }, _buildMaterialIndicator$5: function(context, headValue, tailValue, offsetValue, rotationValue) { var _null = null, t1 = this._widget, t2 = t1.backgroundColor, t3 = t1._getValueColor$1(context), t4 = this._widget, t5 = t4.value; return t1._buildSemanticsWrapper$2$child$context(M.Container$(_null, T.CustomPaint$(_null, _null, _null, U._CircularProgressIndicatorPainter$(t2, headValue, offsetValue, rotationValue, t4.strokeWidth, tailValue, t5, t3), C.Size_0_0), C.Clip_0, _null, C.BoxConstraints_mlX1, _null, _null, _null, _null, _null, _null, _null, _null, _null), context); }, _buildAnimation$0: function() { return K.AnimatedBuilder$(this.get$_progress_indicator$_controller(), new U._CircularProgressIndicatorState__buildAnimation_closure(this), null); }, build$1: function(_, context) { var _this = this, _s80_ = string$.x60null_c, t1 = _this._widget; t1.toString; switch (C._ActivityIndicatorType_0) { case C._ActivityIndicatorType_0: if (t1.value != null) return _this._buildMaterialIndicator$5(context, 0, 0, 0, 0); return _this._buildAnimation$0(); case C._ActivityIndicatorType_1: switch (K.Theme_of(context).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: return new F.CupertinoActivityIndicator(_this._widget.key); case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: if (_this._widget.value != null) return _this._buildMaterialIndicator$5(context, 0, 0, 0, 0); return _this._buildAnimation$0(); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } }; U._CircularProgressIndicatorState__buildAnimation_closure.prototype = { call$2: function(context, child) { var t4, t5, t6, t1 = this.$this, t2 = $.$get$_CircularProgressIndicatorState__strokeHeadTween(), t3 = t1.get$_progress_indicator$_controller(); t2.toString; t3 = t2.transform$1(0, t3.get$value(t3)); t2 = $.$get$_CircularProgressIndicatorState__strokeTailTween(); t4 = t1.get$_progress_indicator$_controller(); t2.toString; t4 = t2.transform$1(0, t4.get$value(t4)); t2 = $.$get$_CircularProgressIndicatorState__offsetTween(); t5 = t1.get$_progress_indicator$_controller(); t2.toString; t5 = t2.transform$1(0, t5.get$value(t5)); t2 = $.$get$_CircularProgressIndicatorState__rotationTween(); t6 = t1.get$_progress_indicator$_controller(); t2.toString; return t1._buildMaterialIndicator$5(context, t3, t4, t5, t2.transform$1(0, t6.get$value(t6))); }, "call*": "call$2", $requiredArgCount: 2, $signature: 229 }; U._RefreshProgressIndicatorPainter.prototype = { paint$2: function(canvas, size) { var t1, arcEnd, ux, uy, radius, t2, arrowheadRadius, innerRadius, outerRadius, path, paint, _this = this; _this.super$_CircularProgressIndicatorPainter$paint(canvas, size); t1 = _this.arrowheadScale; if (t1 > 0) { arcEnd = _this.arcStart + _this.arcSweep; ux = Math.cos(arcEnd); uy = Math.sin(arcEnd); radius = size._dx / 2; t2 = _this.strokeWidth; arrowheadRadius = t2 * 1.5 * t1; innerRadius = radius - arrowheadRadius; outerRadius = radius + arrowheadRadius; path = P.Path_Path(); path.moveTo$2(0, radius + ux * innerRadius, radius + uy * innerRadius); path.lineTo$2(0, radius + ux * outerRadius, radius + uy * outerRadius); path.lineTo$2(0, radius + ux * radius + -uy * t2 * 2 * t1, radius + uy * radius + ux * t2 * 2 * t1); path.close$0(0); t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, _this.valueColor); paint.set$strokeWidth(t2); paint.set$style(0, C.PaintingStyle_0); canvas.drawPath$2(0, path, paint); } } }; U.RefreshProgressIndicator.prototype = { createState$0: function() { return new U._RefreshProgressIndicatorState(null, C._StateLifecycle_0); } }; U._RefreshProgressIndicatorState.prototype = { build$1: function(_, context) { var t1, t2, _this = this; if (_this._widget.value != null) { t1 = _this.get$_progress_indicator$_controller(); t2 = _this._widget.value; t2.toString; t1.set$value(0, t2 * 0.000225022502250225); } else { t1 = _this.get$_progress_indicator$_controller()._ticker; if (!(t1 != null && t1._ticker$_future != null)) _this.get$_progress_indicator$_controller().repeat$0(0); } return _this._buildAnimation$0(); }, _buildMaterialIndicator$5: function(context, headValue, tailValue, offsetValue, rotationValue) { var t2, t3, t4, t5, _this = this, _null = null, t1 = _this._widget.value, arrowheadScale = t1 == null ? 0 : C.JSNumber_methods.clamp$2(t1 * 2, 0, 1); t1 = _this._widget; t1.toString; t2 = K.Theme_of(context); t2 = t2.canvasColor; t3 = _this._widget._getValueColor$1(context); t4 = _this._widget.strokeWidth; t5 = -1.5707963267948966 + tailValue * 3 / 2 * 3.141592653589793 + rotationValue * 3.141592653589793 * 2 + offsetValue * 0.5 * 3.141592653589793; return t1._buildSemanticsWrapper$2$child$context(M.Container$(_null, M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_12_12_12_12, T.CustomPaint$(_null, _null, _null, new U._RefreshProgressIndicatorPainter(arrowheadScale, _null, t3, _null, headValue, tailValue, offsetValue, rotationValue, t4, t5, Math.max(headValue * 3 / 2 * 3.141592653589793 - tailValue * 3 / 2 * 3.141592653589793, 0.001), _null), C.Size_0_0), _null), C.Clip_0, t2, 2, _null, _null, _null, _null, C.MaterialType_2), C.Clip_0, _null, _null, _null, _null, 40, _null, C.EdgeInsets_4_4_4_4, _null, _null, _null, 40), context); } }; U.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; U.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; Y.Radio.prototype = { createState$0: function() { return new Y._RadioState(new Y._RadioPainter(new P.LinkedList(type$.LinkedList__ListenerEntry)), $, $, $, $, $, $, $, $, $, null, false, false, null, C._StateLifecycle_0, this.$ti._eval$1("_RadioState<1>")); }, get$value: function(receiver) { return this.value; } }; Y._RadioState.prototype = { _radio$_handleChanged$1: function(selected) { var t1; if (selected == null) { this._widget.onChanged.call$1(null); return; } if (selected) { t1 = this._widget; t1.onChanged.call$1(t1.value); } }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, t4; this.super$State$didUpdateWidget(oldWidget); t1 = this._widget; t2 = t1.value; t1 = t1.groupValue; t3 = oldWidget.value; t4 = oldWidget.groupValue; if ((t2 == null ? t1 == null : t2 === t1) !== (t3 == null ? t4 == null : t3 === t4)) this.animateToValue$0(); }, dispose$0: function(_) { this._radio$_painter.dispose$0(0); this.super$__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged: function() { this._widget.toString; return this.get$_radio$_handleChanged(); }, get$tristate: function() { return this._widget.toggleable; }, get$value: function(_) { var t1 = this._widget, t2 = t1.value; t1 = t1.groupValue; return t2 == null ? t1 == null : t2 === t1; }, get$_radio$_widgetFillColor: function() { return new V._MaterialStatePropertyWith(new Y._RadioState__widgetFillColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_radio$_defaultFillColor: function() { var t1 = this._framework$_element; t1.toString; return new V._MaterialStatePropertyWith(new Y._RadioState__defaultFillColor_closure(K.Theme_of(t1)), type$._MaterialStatePropertyWith_Color); }, build$1: function(_, context) { var effectiveVisualDensity, size, activeStates, inactiveStates, effectiveActiveColor, effectiveInactiveColor, focusedStates, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, t2, t3, t4, _this = this, _null = null, themeData = K.Theme_of(context), t1 = _this._widget.materialTapTargetSize, effectiveMaterialTapTargetSize = t1 == null ? themeData.radioTheme.materialTapTargetSize : t1; if (effectiveMaterialTapTargetSize == null) effectiveMaterialTapTargetSize = themeData.materialTapTargetSize; themeData.toString; effectiveVisualDensity = themeData.visualDensity; switch (effectiveMaterialTapTargetSize) { case C.MaterialTapTargetSize_0: size = C.Size_48_48; break; case C.MaterialTapTargetSize_1: size = C.Size_40_40; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } size = size.$add(0, new P.Offset(effectiveVisualDensity.horizontal, effectiveVisualDensity.vertical).$mul(0, 4)); activeStates = _this.get$states(); activeStates.add$1(0, C.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, C.MaterialState_4); _this._widget.toString; t1 = _this.get$_radio$_widgetFillColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = themeData.radioTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActiveColor = t1; } else effectiveActiveColor = t1; if (effectiveActiveColor == null) effectiveActiveColor = _this.get$_radio$_defaultFillColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_radio$_widgetFillColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = themeData.radioTheme.fillColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactiveColor = t1; } else effectiveInactiveColor = t1; if (effectiveInactiveColor == null) effectiveInactiveColor = _this.get$_radio$_defaultFillColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, C.MaterialState_1); _this._widget.toString; t1 = themeData.radioTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(focusedStates); effectiveFocusOverlayColor = t1; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = themeData.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, C.MaterialState_0); _this._widget.toString; t1 = themeData.radioTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(hoveredStates); effectiveHoverOverlayColor = t1; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = themeData.hoverColor; activeStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = themeData.radioTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActivePressedOverlayColor = t1; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); inactiveStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = themeData.radioTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveColor.get$value(effectiveActiveColor) >>> 16 & 255, effectiveActiveColor.get$value(effectiveActiveColor) >>> 8 & 255, effectiveActiveColor.get$value(effectiveActiveColor) & 255); t1 = _this._widget; t2 = t1.value; t1 = t1.groupValue; t3 = _this._radio$_painter; t3.set$position(0, _this.get$_toggleable$_position(_this)); t3.set$reaction(_this.get$_toggleable$_reaction()); t3.set$reactionFocusFade(_this.get$_reactionFocusFade()); t3.set$reactionHoverFade(_this.get$_reactionHoverFade()); t3.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t3.set$reactionColor(effectiveActivePressedOverlayColor); t3.set$hoverColor(effectiveHoverOverlayColor); t3.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t4 = themeData.radioTheme.splashRadius; t3.set$splashRadius(t4 == null ? 20 : t4); t3.set$downPosition(_this.ToggleableStateMixin__downPosition); t3.set$isFocused(_this.get$states().contains$1(0, C.MaterialState_1)); t3.set$isHovered(_this.get$states().contains$1(0, C.MaterialState_0)); t3.set$activeColor(effectiveActiveColor); t3.set$inactiveColor(effectiveInactiveColor); t3 = _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, _null, new V._MaterialStatePropertyWith(new Y._RadioState_build_closure(_this, themeData), type$._MaterialStatePropertyWith_MouseCursor), t3, size); return new T.Semantics(A.SemanticsProperties$(_null, t2 == null ? t1 == null : t2 === t1, _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, _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, false, false, t3, _null); } }; Y._RadioState__widgetFillColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return null; if (states.contains$1(0, C.MaterialState_4)) return this.$this._widget.activeColor; return null; }, $signature: 205 }; Y._RadioState__defaultFillColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.themeData.disabledColor; if (states.contains$1(0, C.MaterialState_4)) return this.themeData.toggleableActiveColor; return this.themeData.unselectedWidgetColor; }, $signature: 111 }; Y._RadioState_build_closure.prototype = { call$1: function(states) { var t1; this.$this._widget.toString; t1 = V.MaterialStateProperty_resolveAs(null, states, type$.nullable_MouseCursor); if (t1 == null) { this.themeData.toString; t1 = null; } return t1 == null ? V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, $signature: 336 }; Y._RadioPainter.prototype = { paint$2: function(canvas, size) { var center, t1, paint, t2, t3, _this = this; _this.paintRadialReaction$2$canvas$origin(canvas, size.center$1(C.Offset_0_0)); center = new P.Rect(0, 0, 0 + size._dx, 0 + size._dy).get$center(); t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._inactiveColor; t1.toString; t2 = _this._activeColor; t2.toString; t3 = _this._toggleable$_position; t3 = P.Color_lerp(t1, t2, t3.get$value(t3)); t3.toString; paint.set$color(0, t3); paint.set$style(0, C.PaintingStyle_1); paint.set$strokeWidth(2); canvas.drawCircle$3(0, center, 8, paint); t1 = _this._toggleable$_position; if (t1.get$status(t1) !== C.AnimationStatus_0) { paint.set$style(0, C.PaintingStyle_0); t1 = _this._toggleable$_position; canvas.drawCircle$3(0, center, 4.5 * t1.get$value(t1), paint); } } }; Y.__RadioState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; Y.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); t1 = _this._widget; t2 = t1.value; t1 = t1.groupValue; _this.ToggleableStateMixin___ToggleableStateMixin__positionController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, (t2 == null ? t1 != null : t2 !== t1) ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__position = S.CurvedAnimation$(C.Cubic_JUR0, _this.get$_toggleable$_positionController(), C.Cubic_xDo0); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = G.AnimationController$(_null, C.Duration_100000, 0, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reaction = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_toggleable$_reactionController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionHoverFadeController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionFocusFadeController(), _null); }, dispose$0: function(_) { var _this = this; _this.get$_toggleable$_positionController().dispose$0(0); _this.get$_toggleable$_reactionController().dispose$0(0); _this.get$_reactionHoverFadeController().dispose$0(0); _this.get$_reactionFocusFadeController().dispose$0(0); _this.super$__RadioState_State_TickerProviderStateMixin$dispose(0); } }; G.RadioListTile.prototype = { build$1: function(_, context) { var trailing, leading, _this = this, _null = null, t1 = _this.activeColor, control = Y.Radio$(t1, false, _this.groupValue, C.MaterialTapTargetSize_1, _this.onChanged, true, _this.value, _this.$ti._precomputed1); switch (C.ListTileControlAffinity_2) { case C.ListTileControlAffinity_0: case C.ListTileControlAffinity_2: trailing = _null; leading = control; break; case C.ListTileControlAffinity_1: trailing = control; leading = _null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (t1 == null) t1 = K.Theme_of(context).toggleableActiveColor; return new T.MergeSemantics(Q.ListTileTheme_merge(Q.ListTile$(false, _null, true, true, false, _null, leading, _null, new G.RadioListTile_build_closure(_this), false, _null, _null, _this.subtitle, _null, _this.title, trailing), t1), _null); }, get$value: function(receiver) { return this.value; } }; G.RadioListTile_build_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.value; if (t2 === t1.groupValue) { t1.onChanged.call$1(null); return; } t1.onChanged.call$1(t2); }, $signature: 0 }; T.RadioThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.mouseCursor, _this.fillColor, _this.overlayColor, _this.splashRadius, _this.materialTapTargetSize, _this.visualDensity, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof T.RadioThemeData) if (other.fillColor == _this.fillColor) if (other.overlayColor == _this.overlayColor) if (other.splashRadius == _this.splashRadius) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; T._LerpProperties0.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; T._RadioThemeData_Object_Diagnosticable.prototype = {}; N._RefreshIndicatorMode.prototype = { toString$0: function(_) { return this._refresh_indicator$_name; } }; N.RefreshIndicatorTriggerMode.prototype = { toString$0: function(_) { return this._refresh_indicator$_name; } }; N.RefreshIndicator.prototype = { createState$0: function() { return new N.RefreshIndicatorState(null, C._StateLifecycle_0); }, onRefresh$0: function() { return this.onRefresh.call$0(); }, notificationPredicate$1: function(arg0) { return G.scroll_notification__defaultScrollNotificationPredicate$closure().call$1(arg0); } }; N.RefreshIndicatorState.prototype = { get$_refresh_indicator$_positionController: function() { var t1 = this.__RefreshIndicatorState__positionController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_positionController")) : t1; }, get$_scaleController: function() { var t1 = this.__RefreshIndicatorState__scaleController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scaleController")) : t1; }, get$_valueColor: function() { var t1 = this.__RefreshIndicatorState__valueColor; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_valueColor")) : t1; }, initState$0: function() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); _this.__RefreshIndicatorState__positionController = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1 = _this.get$_refresh_indicator$_positionController(); t2 = $.$get$RefreshIndicatorState__kDragSizeFactorLimitTween(); t1.toString; t3 = type$.Animation_double; t3._as(t1); t2.toString; _this.__RefreshIndicatorState__positionFactor = new R._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); t2 = _this.get$_refresh_indicator$_positionController(); t1 = $.$get$RefreshIndicatorState__threeQuarterTween(); t2.toString; t3._as(t2); t1.toString; _this.__RefreshIndicatorState__value = new R._AnimatedEvaluation(t2, t1, t1.$ti._eval$1("_AnimatedEvaluation")); _this.__RefreshIndicatorState__scaleController = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1 = _this.get$_scaleController(); t2 = $.$get$RefreshIndicatorState__oneToZeroTween(); t1.toString; t3._as(t1); t2.toString; _this.__RefreshIndicatorState__scaleFactor = new R._AnimatedEvaluation(t1, t2, t2.$ti._eval$1("_AnimatedEvaluation")); }, didChangeDependencies$0: function() { var theme, t2, t3, t4, _this = this, t1 = _this._framework$_element; t1.toString; theme = K.Theme_of(t1); t1 = _this.get$_refresh_indicator$_positionController(); _this._widget.toString; t2 = theme.colorScheme.primary; t2 = P.Color$fromARGB(0, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); _this._widget.toString; t3 = theme.colorScheme.primary; t3 = P.Color$fromARGB(255, t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255); t4 = type$.ColorTween._eval$1("_ChainedEvaluation"); t1.toString; _this.__RefreshIndicatorState__valueColor = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(C.Interval_75R6), new R.ColorTween(t2, t3), t4), t4._eval$1("_AnimatedEvaluation")); _this.super$_RefreshIndicatorState_State_TickerProviderStateMixin$didChangeDependencies(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); oldWidget.toString; this._widget.toString; }, dispose$0: function(_) { this.get$_refresh_indicator$_positionController().dispose$0(0); this.get$_scaleController().dispose$0(0); this.super$_RefreshIndicatorState_State_TickerProviderStateMixin$dispose(0); }, _refresh_indicator$_handleScrollNotification$1: function(notification) { var t1, indicatorAtTopNow, t2, _this = this; if (!_this._widget.notificationPredicate$1(notification)) return false; if (!(notification instanceof G.ScrollStartNotification && notification.dragDetails != null)) { if (notification instanceof G.ScrollUpdateNotification) if (notification.dragDetails != null) _this._widget.toString; t1 = false; } else t1 = true; if (t1) { t1 = notification.metrics; t1 = Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) === 0 && _this._refresh_indicator$_mode == null && _this._refresh_indicator$_start$1(0, t1.axisDirection); } else t1 = false; if (t1) { _this.setState$1(new N.RefreshIndicatorState__handleScrollNotification_closure(_this)); return false; } t1 = notification.metrics; switch (t1.axisDirection) { case C.AxisDirection_2: indicatorAtTopNow = true; break; case C.AxisDirection_0: indicatorAtTopNow = false; break; case C.AxisDirection_3: case C.AxisDirection_1: indicatorAtTopNow = null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (indicatorAtTopNow != _this._isIndicatorAtTop) { t1 = _this._refresh_indicator$_mode; if (t1 === C._RefreshIndicatorMode_0 || t1 === C._RefreshIndicatorMode_1) _this._dismiss$1(C._RefreshIndicatorMode_5); } else if (notification instanceof G.ScrollUpdateNotification) { t2 = _this._refresh_indicator$_mode; if (t2 === C._RefreshIndicatorMode_0 || t2 === C._RefreshIndicatorMode_1) if (Math.max(t1.get$pixels() - t1.get$minScrollExtent(), 0) > 0) _this._dismiss$1(C._RefreshIndicatorMode_5); else { t2 = _this._dragOffset; t2.toString; _this._dragOffset = t2 - notification.scrollDelta; t1 = t1._scroll_metrics$_viewportDimension; t1.toString; _this._checkDragOffset$1(t1); } if (_this._refresh_indicator$_mode === C._RefreshIndicatorMode_1 && notification.dragDetails == null) _this._show$0(); } else if (notification instanceof G.OverscrollNotification) { t2 = _this._refresh_indicator$_mode; if (t2 === C._RefreshIndicatorMode_0 || t2 === C._RefreshIndicatorMode_1) { t2 = _this._dragOffset; t2.toString; _this._dragOffset = t2 - notification.overscroll; t1 = t1._scroll_metrics$_viewportDimension; t1.toString; _this._checkDragOffset$1(t1); } } else if (notification instanceof G.ScrollEndNotification) switch (_this._refresh_indicator$_mode) { case C._RefreshIndicatorMode_1: _this._show$0(); break; case C._RefreshIndicatorMode_0: _this._dismiss$1(C._RefreshIndicatorMode_5); break; default: break; } return false; }, _handleGlowNotification$1: function(notification) { if (notification.ViewportNotificationMixin__depth !== 0 || !notification.leading) return false; if (this._refresh_indicator$_mode === C._RefreshIndicatorMode_0) { notification._accepted = false; return true; } return false; }, _refresh_indicator$_start$1: function(_, direction) { var _this = this; switch (direction) { case C.AxisDirection_2: _this._isIndicatorAtTop = true; break; case C.AxisDirection_0: _this._isIndicatorAtTop = false; break; case C.AxisDirection_3: case C.AxisDirection_1: _this._isIndicatorAtTop = null; return false; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._dragOffset = 0; _this.get$_scaleController().set$value(0, 0); _this.get$_refresh_indicator$_positionController().set$value(0, 0); return true; }, _checkDragOffset$1: function(containerExtent) { var newValue, _this = this, t1 = _this._dragOffset; t1.toString; newValue = t1 / (containerExtent * 0.25); if (_this._refresh_indicator$_mode === C._RefreshIndicatorMode_1) newValue = Math.max(newValue, 0.6666666666666666); _this.get$_refresh_indicator$_positionController().set$value(0, C.JSNumber_methods.clamp$2(newValue, 0, 1)); if (_this._refresh_indicator$_mode === C._RefreshIndicatorMode_0) { t1 = _this.get$_valueColor(); t1 = t1.get$value(t1); t1.toString; t1 = (J.get$value$x(t1) >>> 24 & 255) === 255; } else t1 = false; if (t1) _this._refresh_indicator$_mode = C._RefreshIndicatorMode_1; }, _dismiss$1: function(newMode) { return this._dismiss$body$RefreshIndicatorState(newMode); }, _dismiss$body$RefreshIndicatorState: function(newMode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$_dismiss$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(P.Future_Future$value(null, type$.void), $async$_dismiss$1); case 2: // returning from await. $async$self.setState$1(new N.RefreshIndicatorState__dismiss_closure($async$self, newMode)); case 3: // switch switch ($async$self._refresh_indicator$_mode) { case C._RefreshIndicatorMode_4: // goto case $async$goto = 5; break; case C._RefreshIndicatorMode_5: // goto case $async$goto = 6; break; default: // goto after switch $async$goto = 4; break; } break; case 5: // case t1 = $async$self.get$_scaleController(); t1._direction = C._AnimationDirection_0; $async$goto = 7; return P._asyncAwait(t1._animateToInternal$3$curve$duration(1, C.C__Linear, C.Duration_200000), $async$_dismiss$1); case 7: // returning from await. // goto after switch $async$goto = 4; break; case 6: // case t1 = $async$self.get$_refresh_indicator$_positionController(); t1._direction = C._AnimationDirection_0; $async$goto = 8; return P._asyncAwait(t1._animateToInternal$3$curve$duration(0, C.C__Linear, C.Duration_200000), $async$_dismiss$1); case 8: // returning from await. // goto after switch $async$goto = 4; break; case 4: // after switch if ($async$self._framework$_element != null && $async$self._refresh_indicator$_mode === newMode) { $async$self._isIndicatorAtTop = $async$self._dragOffset = null; $async$self.setState$1(new N.RefreshIndicatorState__dismiss_closure0($async$self)); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_dismiss$1, $async$completer); }, _show$0: function() { var t2, t1 = $.Zone__current; this._refresh_indicator$_mode = C._RefreshIndicatorMode_2; t2 = this.get$_refresh_indicator$_positionController(); t2._direction = C._AnimationDirection_0; t2._animateToInternal$3$curve$duration(0.6666666666666666, C.C__Linear, C.Duration_150000).then$1$1(0, new N.RefreshIndicatorState__show_closure(this, new P._AsyncCompleter(new P._Future(t1, type$._Future_void), type$._AsyncCompleter_void)), type$.void); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this._widget.child, t2 = _this._refresh_indicator$_mode, showIndeterminateIndicator = t2 === C._RefreshIndicatorMode_3 || t2 === C._RefreshIndicatorMode_4; t1 = H.setRuntimeTypeInfo([new U.NotificationListener(new U.NotificationListener(t1, _this.get$_handleGlowNotification(), _null, type$.NotificationListener_OverscrollIndicatorNotification), _this.get$_refresh_indicator$_handleScrollNotification(), _null, type$.NotificationListener_ScrollNotification)], type$.JSArray_Widget); if (_this._refresh_indicator$_mode != null) { t2 = _this._isIndicatorAtTop; t2.toString; if (t2) { _this._widget.toString; t3 = 0; } else t3 = _null; if (!t2) { _this._widget.toString; t4 = 0; } else t4 = _null; t5 = t2 ? 1 : -1; t6 = _this.__RefreshIndicatorState__positionFactor; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("_positionFactor")); t7 = _this._widget; if (t2) { t7.toString; t7 = new V.EdgeInsets(0, 40, 0, 0); } else { t7.toString; t7 = new V.EdgeInsets(0, 0, 0, 40); } t2 = t2 ? C.Alignment_0_m1 : C.Alignment_0_1; t8 = _this.__RefreshIndicatorState__scaleFactor; if (t8 === $) t8 = H.throwExpression(H.LateError$fieldNI("_scaleFactor")); t1.push(T.Positioned$(t4, K.SizeTransition$(C.Axis_1, t5, M.Container$(t2, K.ScaleTransition$(C.Alignment_0_0, K.AnimatedBuilder$(_this.get$_refresh_indicator$_positionController(), new N.RefreshIndicatorState_build_closure(_this, showIndeterminateIndicator), _null), t8), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, t7, _null, _null, _null), t6), _null, _null, 0, 0, t3, _null)); } return T.Stack$(C.AlignmentDirectional_m1_m1, t1, C.Clip_1, C.StackFit_0, _null, _null); } }; N.RefreshIndicatorState__handleScrollNotification_closure.prototype = { call$0: function() { this.$this._refresh_indicator$_mode = C._RefreshIndicatorMode_0; }, $signature: 0 }; N.RefreshIndicatorState__dismiss_closure.prototype = { call$0: function() { this.$this._refresh_indicator$_mode = this.newMode; }, $signature: 0 }; N.RefreshIndicatorState__dismiss_closure0.prototype = { call$0: function() { this.$this._refresh_indicator$_mode = null; }, $signature: 0 }; N.RefreshIndicatorState__show_closure.prototype = { call$1: function(value) { var refreshResult, t1 = this.$this; if (t1._framework$_element != null && t1._refresh_indicator$_mode === C._RefreshIndicatorMode_2) { t1.setState$1(new N.RefreshIndicatorState__show__closure(t1)); refreshResult = t1._widget.onRefresh$0(); if (refreshResult == null) return; refreshResult.whenComplete$1(new N.RefreshIndicatorState__show__closure0(t1, this.completer)); } }, $signature: 83 }; N.RefreshIndicatorState__show__closure.prototype = { call$0: function() { this.$this._refresh_indicator$_mode = C._RefreshIndicatorMode_3; }, $signature: 0 }; N.RefreshIndicatorState__show__closure0.prototype = { call$0: function() { var t1 = this.$this; if (t1._framework$_element != null && t1._refresh_indicator$_mode === C._RefreshIndicatorMode_3) { this.completer.complete$0(0); t1._dismiss$1(C._RefreshIndicatorMode_4); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.RefreshIndicatorState_build_closure.prototype = { call$2: function(context, child) { var t2, t3, t4, _null = null, t1 = this.$this; t1._widget.toString; t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t2 = t2.get$refreshIndicatorSemanticLabel(); t1._widget.toString; if (this.showIndeterminateIndicator) t3 = _null; else { t3 = t1.__RefreshIndicatorState__value; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_value")); t3 = t3.get$value(t3); } t4 = t1.get$_valueColor(); t1._widget.toString; return new U.RefreshProgressIndicator(2, t3, _null, _null, t4, t2, _null, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2071 }; N._RefreshIndicatorState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; Z.ReorderableListView.prototype = { createState$0: function() { return new Z._ReorderableListViewState(C._StateLifecycle_0); }, itemBuilder$2: function(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); }, onReorder$2: function(arg0, arg1) { return this.onReorder.call$2(arg0, arg1); } }; Z.ReorderableListView_closure.prototype = { call$2: function(context, index) { return this.children[index]; }, "call*": "call$2", $requiredArgCount: 2, $signature: 128 }; Z._ReorderableListViewState.prototype = { _wrapWithSemantics$2: function(child, index) { var reorderItemBefore, reorderItemAfter, _this = this, _null = null, t1 = new Z._ReorderableListViewState__wrapWithSemantics_reorder(_this), semanticsActions = P.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.void_Function), t2 = _this._framework$_element; t2.toString; t2 = L.Localizations_of(t2, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; if (index > 0) { semanticsActions.$indexSet(0, new A.CustomSemanticsAction(t2.get$reorderItemToStart(), _null, _null), new Z._ReorderableListViewState__wrapWithSemantics_moveToStart(t1, index)); reorderItemBefore = t2.get$reorderItemUp(); _this._widget.toString; semanticsActions.$indexSet(0, new A.CustomSemanticsAction(reorderItemBefore, _null, _null), new Z._ReorderableListViewState__wrapWithSemantics_moveBefore(t1, index)); } if (index < _this._widget.itemCount - 1) { reorderItemAfter = t2.get$reorderItemDown(); _this._widget.toString; semanticsActions.$indexSet(0, new A.CustomSemanticsAction(reorderItemAfter, _null, _null), new Z._ReorderableListViewState__wrapWithSemantics_moveAfter(t1, index)); semanticsActions.$indexSet(0, new A.CustomSemanticsAction(t2.get$reorderItemToEnd(), _null, _null), new Z._ReorderableListViewState__wrapWithSemantics_moveToEnd(_this, t1, index)); } return new T.MergeSemantics(new T.Semantics(A.SemanticsProperties$(_null, _null, _null, semanticsActions, _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), false, false, false, child, _null), _null); }, _itemBuilder$2: function(context, index) { var itemGlobalKey, _this = this, _null = null, _s80_ = string$.x60null_c, item = _this._widget.itemBuilder$2(context, index), itemWithSemantics = _this._wrapWithSemantics$2(item, index), t1 = item.key; t1.toString; itemGlobalKey = new Z._ReorderableListViewChildGlobalKey(t1, _this, t1); _this._widget.toString; switch (K.Theme_of(context).platform) { case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: case C.TargetPlatform_4: _this._widget.toString; switch (C.Axis_1) { case C.Axis_0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([itemWithSemantics, T.Positioned_Positioned$directional(8, new T.Align(C.AlignmentDirectional_0_1, _null, _null, new Z.ReorderableDragStartListener(C.Icon_m5n, index, _null), _null), 0, _null, 0, t1.textDirection, _null, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, itemGlobalKey, _null); case C.Axis_1: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([itemWithSemantics, T.Positioned_Positioned$directional(0, new T.Align(C.AlignmentDirectional_1_0, _null, _null, new Z.ReorderableDragStartListener(C.Icon_m5n, index, _null), _null), 8, _null, _null, t1.textDirection, 0, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, itemGlobalKey, _null); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.TargetPlatform_2: case C.TargetPlatform_0: return new Z.ReorderableDelayedDragStartListener(itemWithSemantics, index, itemGlobalKey); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, _proxyDecorator$3: function(child, index, animation) { return K.AnimatedBuilder$(animation, new Z._ReorderableListViewState__proxyDecorator_closure(animation), child); }, build$1: function(_, context) { var _outerPadding_set, _listPadding_set, t1, t2, t3, t4, t5, t6, _this = this, _null = null, _box_0 = {}; _this._widget.toString; _box_0._outerPadding = $; _outerPadding_set = new Z._ReorderableListViewState_build__outerPadding_set(_box_0); _box_0._listPadding = $; _listPadding_set = new Z._ReorderableListViewState_build__listPadding_set(_box_0); switch (C.Axis_1) { case C.Axis_0: _outerPadding_set.call$1(new V.EdgeInsets(0, 0, 0, 0)); _listPadding_set.call$1(new V.EdgeInsets(0, 0, 0, 0)); break; case C.Axis_1: _outerPadding_set.call$1(new V.EdgeInsets(0, 0, 0, 0)); _listPadding_set.call$1(new V.EdgeInsets(0, 0, 0, 0)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = new Z._ReorderableListViewState_build__outerPadding_get(_box_0).call$0(); t2 = _this._widget.scrollController; t3 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); _this._widget.toString; t4 = new Z._ReorderableListViewState_build__listPadding_get(_box_0).call$0(); t5 = _this._widget; t6 = t5.itemCount; t5 = t5.onReorder; t3.push(new T.SliverPadding(t4, new Z.SliverReorderableList(_this.get$_itemBuilder(), t6, t5, _this.get$_proxyDecorator(), _null), _null)); return new T.Padding(t1, B.CustomScrollView$(0, _null, C.Clip_1, t2, C.DragStartBehavior_1, C.ScrollViewKeyboardDismissBehavior_0, _null, _null, _null, false, C.Axis_1, false, t3), _null); } }; Z._ReorderableListViewState__wrapWithSemantics_reorder.prototype = { call$2: function(startIndex, endIndex) { if (startIndex !== endIndex) this.$this._widget.onReorder$2(startIndex, endIndex); }, $signature: 418 }; Z._ReorderableListViewState__wrapWithSemantics_moveToStart.prototype = { call$0: function() { return this.reorder.call$2(this.index, 0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._ReorderableListViewState__wrapWithSemantics_moveToEnd.prototype = { call$0: function() { return this.reorder.call$2(this.index, this.$this._widget.itemCount); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._ReorderableListViewState__wrapWithSemantics_moveBefore.prototype = { call$0: function() { var t1 = this.index; return this.reorder.call$2(t1, t1 - 1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._ReorderableListViewState__wrapWithSemantics_moveAfter.prototype = { call$0: function() { var t1 = this.index; return this.reorder.call$2(t1, t1 + 2); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._ReorderableListViewState__proxyDecorator_closure.prototype = { call$2: function(context, child) { var _null = null, t1 = P.lerpDouble(0, 6, C.Cubic_xDo.transform$1(0, this.animation.get$_animation_controller$_value())); t1.toString; return M.Material$(C.Duration_200000, true, _null, child, C.Clip_0, _null, t1, _null, _null, _null, _null, C.MaterialType_0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2089 }; Z._ReorderableListViewState_build__listPadding_set.prototype = { call$1: function(t1) { return this._box_0._listPadding = t1; }, $signature: 564 }; Z._ReorderableListViewState_build__outerPadding_set.prototype = { call$1: function(t1) { return this._box_0._outerPadding = t1; }, $signature: 564 }; Z._ReorderableListViewState_build__outerPadding_get.prototype = { call$0: function() { var t1 = this._box_0._outerPadding; return t1 === $ ? H.throwExpression(H.LateError$localNI("outerPadding")) : t1; }, $signature: 559 }; Z._ReorderableListViewState_build__listPadding_get.prototype = { call$0: function() { var t1 = this._box_0._listPadding; return t1 === $ ? H.throwExpression(H.LateError$localNI("listPadding")) : t1; }, $signature: 559 }; Z._ReorderableListViewChildGlobalKey.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof Z._ReorderableListViewChildGlobalKey && J.$eq$(other.subKey, this.subKey) && other.state === this.state; }, get$hashCode: function(_) { return P.hashValues(this.subKey, this.state, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; M._ScaffoldSlot.prototype = { toString$0: function(_) { return this._scaffold$_name; } }; M.ScaffoldMessenger.prototype = { createState$0: function() { return new M.ScaffoldMessengerState(P.LinkedHashSet_LinkedHashSet(type$.ScaffoldState), P.ListQueue$(null, type$.ScaffoldFeatureController_SnackBar_SnackBarClosedReason), null, C._StateLifecycle_0); } }; M.ScaffoldMessengerState.prototype = { didChangeDependencies$0: function() { var t1, _this = this, mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; if (_this._accessibleNavigation === true) if (!mediaQuery.accessibleNavigation) { t1 = _this._snackBarTimer; t1 = t1 != null && t1._handle == null; } else t1 = false; else t1 = false; if (t1) _this.hideCurrentSnackBar$1$reason(C.SnackBarClosedReason_5); _this._accessibleNavigation = mediaQuery.accessibleNavigation; _this.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$didChangeDependencies(); }, hideCurrentSnackBar$1$reason: function(reason) { var t2, completer, _this = this, _null = null, t1 = _this._snackBars; if (t1._head !== t1._tail) { _null.get$status(_null); t2 = false; } else t2 = true; if (t2) return; completer = t1.get$first(t1)._scaffold$_completer; t1 = _this._accessibleNavigation; t1.toString; if (t1) { _null.set$value(0, 0); completer.complete$1(0, reason); } else _null.reverse$0(0).then$1$1(0, new M.ScaffoldMessengerState_hideCurrentSnackBar_closure(_this, completer, reason), type$.void); t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; }, build$1: function(_, context) { var t1, route, _this = this; _this._accessibleNavigation = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.accessibleNavigation; t1 = _this._snackBars; if (!t1.get$isEmpty(t1)) { route = T.ModalRoute_of(context, type$.nullable_Object); if (route == null || route.get$isCurrent()) null.get$isCompleted(); } return new M._ScaffoldMessengerScope(_this, _this._widget.child, null); }, dispose$0: function(_) { var t1 = this._snackBarTimer; if (t1 != null) t1.cancel$0(0); this._snackBarTimer = null; this.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$dispose(0); } }; M.ScaffoldMessengerState_hideCurrentSnackBar_closure.prototype = { call$1: function(value) { var t1 = this.completer; if (t1.future._state === 0) t1.complete$1(0, this.reason); }, $signature: 83 }; M._ScaffoldMessengerScope.prototype = { updateShouldNotify$1: function(old) { return this._scaffoldMessengerState !== old._scaffoldMessengerState; } }; M.ScaffoldPrelayoutGeometry.prototype = {}; M._TransitionSnapshotFabLocation.prototype = { getOffset$1: function(scaffoldGeometry) { var _this = this; return _this.animator.getOffset$3$begin$end$progress(_this.begin.getOffset$1(scaffoldGeometry), _this.end.getOffset$1(scaffoldGeometry), _this.progress); }, toString$0: function(_) { return "_TransitionSnapshotFabLocation(begin: " + H.S(this.begin) + ", end: " + H.S(this.end) + ", progress: " + H.S(this.progress) + ")"; } }; M.ScaffoldGeometry.prototype = { _scaleFloatingActionButton$1: function(scaleFactor) { var t1, t2, t3, _this = this; if (scaleFactor === 1) return _this; if (scaleFactor === 0) return new M.ScaffoldGeometry(_this.bottomNavigationBarTop, null); t1 = _this.floatingActionButtonArea; t2 = t1.get$center(); t3 = t2._dx; t2 = t2._dy; t1 = P.Rect_lerp(new P.Rect(t3, t2, t3 + 0, t2 + 0), t1, scaleFactor); t1.toString; return _this.copyWith$1$floatingActionButtonArea(t1); }, copyWith$2$bottomNavigationBarTop$floatingActionButtonArea: function(bottomNavigationBarTop, floatingActionButtonArea) { var t1 = bottomNavigationBarTop == null ? this.bottomNavigationBarTop : bottomNavigationBarTop; return new M.ScaffoldGeometry(t1, floatingActionButtonArea == null ? this.floatingActionButtonArea : floatingActionButtonArea); }, copyWith$1$floatingActionButtonArea: function(floatingActionButtonArea) { return this.copyWith$2$bottomNavigationBarTop$floatingActionButtonArea(null, floatingActionButtonArea); } }; M._ScaffoldGeometryNotifier.prototype = { get$value: function(_) { var t1 = this.geometry, t2 = this.floatingActionButtonScale; t2.toString; return t1._scaleFloatingActionButton$1(t2); }, _updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale: function(bottomNavigationBarTop, floatingActionButtonArea, floatingActionButtonScale) { var _this = this; _this.floatingActionButtonScale = floatingActionButtonScale == null ? _this.floatingActionButtonScale : floatingActionButtonScale; _this.geometry = _this.geometry.copyWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, floatingActionButtonArea); _this.notifyListeners$0(); }, _updateWith$1$floatingActionButtonScale: function(floatingActionButtonScale) { return this._updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale(null, null, floatingActionButtonScale); }, _updateWith$2$bottomNavigationBarTop$floatingActionButtonArea: function(bottomNavigationBarTop, floatingActionButtonArea) { return this._updateWith$3$bottomNavigationBarTop$floatingActionButtonArea$floatingActionButtonScale(bottomNavigationBarTop, floatingActionButtonArea, null); } }; M._BodyBoxConstraints.prototype = { $eq: function(_, other) { if (other == null) return false; if (!this.super$BoxConstraints$$eq(0, other)) return false; return other instanceof M._BodyBoxConstraints && other.bottomWidgetsHeight === this.bottomWidgetsHeight && other.appBarHeight == this.appBarHeight; }, get$hashCode: function(_) { var _this = this; return P.hashValues(S.BoxConstraints.prototype.get$hashCode.call(_this, _this), _this.bottomWidgetsHeight, _this.appBarHeight, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; M._BodyBuilder.prototype = { build$1: function(_, context) { return this.body; }, get$body: function(receiver) { return this.body; } }; M._ScaffoldLayout.prototype = { performLayout$1: function(size) { var appBarHeight, contentTop, bottomWidgetsHeight, bottomNavigationBarTop, t3, contentBottom, bodyMaxHeight, t4, snackBarSize, bottomSheetSize, fabSize, currentGeometry, currentFabOffset, fabOffset, t5, snackBarYOffsetBase, _this = this, t1 = {}, looseConstraints = S.BoxConstraints$loose(size), t2 = size._dx, fullWidthConstraints = looseConstraints.tighten$1$width(t2), bottom = size._dy; if (_this._idToChild.$index(0, C._ScaffoldSlot_1) != null) { appBarHeight = _this.layoutChild$2(C._ScaffoldSlot_1, fullWidthConstraints)._dy; _this.positionChild$2(C._ScaffoldSlot_1, C.Offset_0_0); contentTop = appBarHeight; } else { contentTop = 0; appBarHeight = 0; } if (_this._idToChild.$index(0, C._ScaffoldSlot_6) != null) { bottomWidgetsHeight = 0 + _this.layoutChild$2(C._ScaffoldSlot_6, fullWidthConstraints)._dy; bottomNavigationBarTop = Math.max(0, bottom - bottomWidgetsHeight); _this.positionChild$2(C._ScaffoldSlot_6, new P.Offset(0, bottomNavigationBarTop)); } else { bottomWidgetsHeight = 0; bottomNavigationBarTop = null; } if (_this._idToChild.$index(0, C._ScaffoldSlot_5) != null) { bottomWidgetsHeight += _this.layoutChild$2(C._ScaffoldSlot_5, new S.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, Math.max(0, bottom - bottomWidgetsHeight - contentTop)))._dy; _this.positionChild$2(C._ScaffoldSlot_5, new P.Offset(0, Math.max(0, bottom - bottomWidgetsHeight))); } t3 = _this.minInsets; contentBottom = Math.max(0, bottom - Math.max(H.checkNum(t3.bottom), bottomWidgetsHeight)); if (_this._idToChild.$index(0, C._ScaffoldSlot_0) != null) { bodyMaxHeight = Math.max(0, contentBottom - contentTop); t4 = _this.extendBody; if (t4) bodyMaxHeight = C.JSNumber_methods.clamp$2(bodyMaxHeight + bottomWidgetsHeight, 0, looseConstraints.maxHeight - contentTop); t4 = t4 ? bottomWidgetsHeight : 0; _this.layoutChild$2(C._ScaffoldSlot_0, new M._BodyBoxConstraints(t4, appBarHeight, 0, fullWidthConstraints.maxWidth, 0, bodyMaxHeight)); _this.positionChild$2(C._ScaffoldSlot_0, new P.Offset(0, contentTop)); } if (_this._idToChild.$index(0, C._ScaffoldSlot_2) != null) { _this.layoutChild$2(C._ScaffoldSlot_2, new S.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, contentBottom)); _this.positionChild$2(C._ScaffoldSlot_2, C.Offset_0_0); } snackBarSize = _this._idToChild.$index(0, C._ScaffoldSlot_4) != null && !_this.isSnackBarFloating ? _this.layoutChild$2(C._ScaffoldSlot_4, fullWidthConstraints) : C.Size_0_0; if (_this._idToChild.$index(0, C._ScaffoldSlot_3) != null) { bottomSheetSize = _this.layoutChild$2(C._ScaffoldSlot_3, new S.BoxConstraints(0, fullWidthConstraints.maxWidth, 0, Math.max(0, contentBottom - contentTop))); _this.positionChild$2(C._ScaffoldSlot_3, new P.Offset((t2 - bottomSheetSize._dx) / 2, contentBottom - bottomSheetSize._dy)); } else bottomSheetSize = C.Size_0_0; t1._floatingActionButtonRect = $; t2 = new M._ScaffoldLayout_performLayout__floatingActionButtonRect_get(t1); if (_this._idToChild.$index(0, C._ScaffoldSlot_7) != null) { fabSize = _this.layoutChild$2(C._ScaffoldSlot_7, looseConstraints); currentGeometry = new M.ScaffoldPrelayoutGeometry(fabSize, bottomSheetSize, contentBottom, appBarHeight, t3, _this.minViewPadding, size, snackBarSize, _this.textDirection); currentFabOffset = _this.currentFloatingActionButtonLocation.getOffset$1(currentGeometry); fabOffset = _this.floatingActionButtonMotionAnimator.getOffset$3$begin$end$progress(_this.previousFloatingActionButtonLocation.getOffset$1(currentGeometry), currentFabOffset, _this.floatingActionButtonMoveAnimationProgress); _this.positionChild$2(C._ScaffoldSlot_7, fabOffset); t4 = fabOffset._dx; t5 = fabOffset._dy; new M._ScaffoldLayout_performLayout__floatingActionButtonRect_set(t1).call$1(new P.Rect(t4, t5, t4 + fabSize._dx, t5 + fabSize._dy)); } if (_this._idToChild.$index(0, C._ScaffoldSlot_4) != null) { if (J.$eq$(snackBarSize, C.Size_0_0)) snackBarSize = _this.layoutChild$2(C._ScaffoldSlot_4, fullWidthConstraints); t1 = t2.call$0(); if (!new P.Size(t1.right - t1.left, t1.bottom - t1.top).$eq(0, C.Size_0_0) && _this.isSnackBarFloating) snackBarYOffsetBase = t2.call$0().top; else snackBarYOffsetBase = _this.isSnackBarFloating ? Math.min(contentBottom, bottom - _this.minViewPadding.bottom) : contentBottom; _this.positionChild$2(C._ScaffoldSlot_4, new P.Offset(0, snackBarYOffsetBase - snackBarSize._dy)); } if (_this._idToChild.$index(0, C._ScaffoldSlot_10) != null) { _this.layoutChild$2(C._ScaffoldSlot_10, fullWidthConstraints.tighten$1$height(t3.top)); _this.positionChild$2(C._ScaffoldSlot_10, C.Offset_0_0); } if (_this._idToChild.$index(0, C._ScaffoldSlot_8) != null) { _this.layoutChild$2(C._ScaffoldSlot_8, S.BoxConstraints$tight(size)); _this.positionChild$2(C._ScaffoldSlot_8, C.Offset_0_0); } if (_this._idToChild.$index(0, C._ScaffoldSlot_9) != null) { _this.layoutChild$2(C._ScaffoldSlot_9, S.BoxConstraints$tight(size)); _this.positionChild$2(C._ScaffoldSlot_9, C.Offset_0_0); } _this.geometryNotifier._updateWith$2$bottomNavigationBarTop$floatingActionButtonArea(bottomNavigationBarTop, t2.call$0()); }, shouldRelayout$1: function(oldDelegate) { var _this = this; return !oldDelegate.minInsets.$eq(0, _this.minInsets) || oldDelegate.textDirection != _this.textDirection || oldDelegate.floatingActionButtonMoveAnimationProgress != _this.floatingActionButtonMoveAnimationProgress || oldDelegate.previousFloatingActionButtonLocation != _this.previousFloatingActionButtonLocation || oldDelegate.currentFloatingActionButtonLocation != _this.currentFloatingActionButtonLocation || oldDelegate.extendBody !== _this.extendBody || false; } }; M._ScaffoldLayout_performLayout__floatingActionButtonRect_set.prototype = { call$1: function(t1) { return this._box_0._floatingActionButtonRect = t1; }, $signature: 2103 }; M._ScaffoldLayout_performLayout__floatingActionButtonRect_get.prototype = { call$0: function() { var t1 = this._box_0._floatingActionButtonRect; return t1 === $ ? H.throwExpression(H.LateError$localNI("floatingActionButtonRect")) : t1; }, $signature: 326 }; M._FloatingActionButtonTransition.prototype = { createState$0: function() { return new M._FloatingActionButtonTransitionState(null, C._StateLifecycle_0); } }; M._FloatingActionButtonTransitionState.prototype = { get$_previousController: function() { var t1 = this.___FloatingActionButtonTransitionState__previousController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_previousController")) : t1; }, get$_previousScaleAnimation: function() { var t1 = this.___FloatingActionButtonTransitionState__previousScaleAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_previousScaleAnimation")) : t1; }, get$_currentScaleAnimation: function() { var t1 = this.___FloatingActionButtonTransitionState__currentScaleAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_currentScaleAnimation")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = G.AnimationController$(null, C.Duration_200000, 0, null, 1, null, _this); t1.addStatusListener$1(_this.get$_handlePreviousAnimationStatusChanged()); _this.___FloatingActionButtonTransitionState__previousController = t1; _this._scaffold$_updateAnimations$0(); t1 = _this._widget; if (t1.child != null) t1.currentController.set$value(0, 1); else t1.geometryNotifier._updateWith$1$floatingActionButtonScale(0); }, dispose$0: function(_) { this.get$_previousController().dispose$0(0); this.super$__FloatingActionButtonTransitionState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, oldChildIsNull, t2, newChildIsNull, t3, currentValue, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.child; oldChildIsNull = t1 == null; t2 = _this._widget.child; newChildIsNull = t2 == null; if (oldChildIsNull === newChildIsNull) { t3 = oldChildIsNull ? null : t1.key; t2 = J.$eq$(t3, newChildIsNull ? null : t2.key); } else t2 = false; if (t2) return; t2 = oldWidget.fabMotionAnimator; t3 = _this._widget; if (t2 != t3.fabMotionAnimator || oldWidget.fabMoveAnimation != t3.fabMoveAnimation) _this._scaffold$_updateAnimations$0(); if (_this.get$_previousController().get$_status() === C.AnimationStatus_0) { currentValue = _this._widget.currentController.get$_animation_controller$_value(); if (currentValue === 0 || oldChildIsNull) { _this._previousChild = null; t1 = _this._widget; if (t1.child != null) t1.currentController.forward$0(0); } else { _this._previousChild = t1; t1 = _this.get$_previousController(); t1.set$value(0, currentValue); t1.reverse$0(0); _this._widget.currentController.set$value(0, 0); } } }, _scaffold$_updateAnimations$0: function() { var t6, t7, t8, t9, t10, moveScaleAnimation, t11, t12, moveRotationAnimation, _this = this, _null = null, previousExitScaleAnimation = S.CurvedAnimation$(C.Cubic_JUR0, _this.get$_previousController(), _null), t1 = type$.Tween_double, t2 = S.CurvedAnimation$(C.Cubic_JUR0, _this.get$_previousController(), _null), currentEntranceScaleAnimation = S.CurvedAnimation$(C.Cubic_JUR0, _this._widget.currentController, _null), t3 = _this._widget, t4 = t3.currentController, t5 = $.$get$_FloatingActionButtonTransitionState__entranceTurnTween(); t4.toString; t6 = type$.Animation_double; t6._as(t4); t5.toString; t7 = t3.fabMotionAnimator; t3 = t3.fabMoveAnimation; t7.toString; t3.toString; t6._as(t3); t7 = type$.CurveTween._eval$1("_AnimatedEvaluation"); t8 = type$.JSArray_of_void_Function_AnimationStatus; t9 = type$.ObserverList_of_void_Function_AnimationStatus; t10 = type$.double; moveScaleAnimation = A._AnimationSwap$(new S.ReverseAnimation(new R._AnimatedEvaluation(t3, new R.CurveTween(new Z.FlippedCurve(C.Interval_E4y)), t7), new R.ObserverList(H.setRuntimeTypeInfo([], t8), t9), 0), new R._AnimatedEvaluation(t3, new R.CurveTween(C.Interval_E4y), t7), t3, 0.5, t10); t3 = _this._widget; t11 = t3.fabMotionAnimator; t3 = t3.fabMoveAnimation; t11.toString; t11 = $.$get$_ScalingFabMotionAnimator__rotationTween(); t3.toString; t6._as(t3); t11.toString; t12 = $.$get$_ScalingFabMotionAnimator__thresholdCenterTween(); t12.toString; moveRotationAnimation = A._AnimationSwap$(new R._AnimatedEvaluation(t3, t11, t11.$ti._eval$1("_AnimatedEvaluation")), new S.ReverseAnimation(new R._AnimatedEvaluation(t3, t12, H._instanceType(t12)._eval$1("_AnimatedEvaluation")), new R.ObserverList(H.setRuntimeTypeInfo([], t8), t9), 0), t3, 0.5, t10); _this.___FloatingActionButtonTransitionState__previousScaleAnimation = S.AnimationMin$(moveScaleAnimation, previousExitScaleAnimation, t10); _this.___FloatingActionButtonTransitionState__currentScaleAnimation = S.AnimationMin$(moveScaleAnimation, currentEntranceScaleAnimation, t10); t10 = _this.get$_currentScaleAnimation(); t10.toString; _this.___FloatingActionButtonTransitionState__extendedCurrentScaleAnimation = new R._AnimatedEvaluation(t6._as(t10), new R.CurveTween(C.Interval_75R1), t7); _this.___FloatingActionButtonTransitionState__previousRotationAnimation = S.TrainHoppingAnimation$(new R._AnimatedEvaluation(t2, new R.Tween(1, 1, t1), t1._eval$1("_AnimatedEvaluation")), moveRotationAnimation, _null); _this.___FloatingActionButtonTransitionState__currentRotationAnimation = S.TrainHoppingAnimation$(new R._AnimatedEvaluation(t4, t5, t5.$ti._eval$1("_AnimatedEvaluation")), moveRotationAnimation, _null); t5 = _this.get$_onProgressChanged(); _this.get$_currentScaleAnimation().addListener$1(0, t5); _this.get$_previousScaleAnimation().addListener$1(0, t5); }, _handlePreviousAnimationStatusChanged$1: function($status) { this.setState$1(new M._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure(this, $status)); }, build$1: function(_, context) { var t2, t3, _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); if (_this.get$_previousController().get$_status() !== C.AnimationStatus_0) { t2 = _this.get$_previousScaleAnimation(); t3 = _this.___FloatingActionButtonTransitionState__previousRotationAnimation; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_previousRotationAnimation")); t1.push(K.ScaleTransition$(C.Alignment_0_0, K.RotationTransition$(C.Alignment_0_0, _this._previousChild, t3), t2)); } _this._widget.toString; t2 = _this.get$_currentScaleAnimation(); t3 = _this.___FloatingActionButtonTransitionState__currentRotationAnimation; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_currentRotationAnimation")); t1.push(K.ScaleTransition$(C.Alignment_0_0, K.RotationTransition$(C.Alignment_0_0, _this._widget.child, t3), t2)); return T.Stack$(C.Alignment_1_0, t1, C.Clip_1, C.StackFit_0, null, null); }, _onProgressChanged$0: function() { var t2, t1 = this.get$_previousScaleAnimation(); t1 = t1.get$value(t1); t2 = this.get$_currentScaleAnimation(); t2 = t2.get$value(t2); t2 = Math.max(H.checkNum(t1), H.checkNum(t2)); this._widget.geometryNotifier._updateWith$1$floatingActionButtonScale(t2); } }; M._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure.prototype = { call$0: function() { if (this.status === C.AnimationStatus_0) { var t1 = this.$this._widget; if (t1.child != null) t1.currentController.forward$0(0); } }, $signature: 0 }; M.Scaffold.prototype = { createState$0: function() { var _null = null, t1 = type$.LabeledGlobalKey_DrawerControllerState, t2 = type$.LinkedList__ListenerEntry; return new M.ScaffoldState(new N.LabeledGlobalKey(_null, t1), new N.LabeledGlobalKey(_null, t1), new U.RestorableBool(false, new P.LinkedList(t2)), new U.RestorableBool(false, new P.LinkedList(t2)), P.ListQueue$(_null, type$.ScaffoldFeatureController_SnackBar_SnackBarClosedReason), H.setRuntimeTypeInfo([], type$.JSArray__StandardBottomSheet), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_State_StatefulWidget), C.Color_4278190080, _null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, C._StateLifecycle_0); }, get$body: function(receiver) { return this.body; } }; M.ScaffoldState.prototype = { get$restorationId: function() { this._widget.toString; return null; }, restoreState$2: function(oldBucket, initialRestore) { var _this = this; _this.registerForRestoration$2(_this._drawerOpened, "drawer_open"); _this.registerForRestoration$2(_this._endDrawerOpened, "end_drawer_open"); }, _drawerOpenedCallback$1: function(isOpened) { this.setState$1(new M.ScaffoldState__drawerOpenedCallback_closure(this, isOpened)); this._widget.toString; }, _endDrawerOpenedCallback$1: function(isOpened) { this.setState$1(new M.ScaffoldState__endDrawerOpenedCallback_closure(this, isOpened)); this._widget.toString; }, openDrawer$0: function() { var t1 = this._endDrawerKey; if (t1.get$currentState() != null && this._endDrawerOpened._restoration_properties$_value) t1.get$currentState().close$0(0); t1 = this._scaffold$_drawerKey.get$currentState(); if (t1 != null) t1.open$0(0); }, openEndDrawer$0: function() { var t1 = this._scaffold$_drawerKey; if (t1.get$currentState() != null && this._drawerOpened._restoration_properties$_value) t1.get$currentState().close$0(0); t1 = this._endDrawerKey.get$currentState(); if (t1 != null) t1.open$0(0); }, hideCurrentSnackBar$1$reason: function(reason) { var t1, t2, mediaQuery, completer, _this = this, _null = null; if (_this._messengerSnackBar != null) { _this._scaffoldMessenger.hideCurrentSnackBar$1$reason(reason); return; } t1 = _this._snackBars; if (t1._head !== t1._tail) { _null.get$status(_null); t2 = false; } else t2 = true; if (t2) return; mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; completer = t1.get$first(t1)._scaffold$_completer; if (mediaQuery.accessibleNavigation) { _null.set$value(0, 0); completer.complete$1(0, reason); } else _null.reverse$0(0).then$1$1(0, new M.ScaffoldState_hideCurrentSnackBar_closure(_this, completer, reason), type$.void); t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; }, _updateSnackBar$0: function() { this.setState$1(new M.ScaffoldState__updateSnackBar_closure(this)); }, _maybeBuildPersistentBottomSheet$0: function() { this._widget.toString; }, _closeCurrentBottomSheet$0: function() { var t1 = this._currentBottomSheet; if (t1 != null) if (!t1._isLocalHistoryEntry) t1.close.call$0(); }, _buildBottomSheet$1$7$animationController$backgroundColor$clipBehavior$elevation$shape: function(builder, isPersistent, animationController, backgroundColor, clipBehavior, elevation, shape, $T) { var t2, t3, entry, t4, _this = this, t1 = {}, completer = new P._AsyncCompleter(new P._Future($.Zone__current, $T._eval$1("_Future<0>")), $T._eval$1("_AsyncCompleter<0>")), bottomSheetKey = new N.LabeledGlobalKey(null, type$.LabeledGlobalKey__StandardBottomSheetState); t1._bottomSheet = $; t2 = new M.ScaffoldState__buildBottomSheet__bottomSheet_get(t1); t1.removedEntry = false; t3 = new M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet(t1, _this, t2, bottomSheetKey, animationController, completer); entry = isPersistent ? null : new T.LocalHistoryEntry(new M.ScaffoldState__buildBottomSheet_closure(t1, t3)); t4 = !isPersistent; new M.ScaffoldState__buildBottomSheet__bottomSheet_set(t1).call$1(new M._StandardBottomSheet(animationController, t4, new M.ScaffoldState__buildBottomSheet_closure0(t1, _this, t2, isPersistent, entry), new M.ScaffoldState__buildBottomSheet_closure1(_this, t2), builder, backgroundColor, elevation, shape, clipBehavior, bottomSheetKey)); if (t4) { t1 = _this._framework$_element; t1.toString; t1 = T.ModalRoute_of(t1, type$.nullable_Object); t1.toString; entry.toString; t1.addLocalHistoryEntry$1(entry); } t1 = t2.call$0(); t2 = entry != null ? entry.get$remove(entry) : t3; return new M.PersistentBottomSheetController(t4, t1, completer, t2, $T._eval$1("PersistentBottomSheetController<0>")); }, showBottomSheet$1$1: function(builder, $T) { var controller, t1, _this = this, _null = null; _this._closeCurrentBottomSheet$0(); controller = G.AnimationController$("BottomSheet", C.Duration_250000, 0, C.Duration_200000, 1, _null, _this); controller.forward$0(0); _this.setState$1(new M.ScaffoldState_showBottomSheet_closure(_this, builder, controller, _null, _null, _null, _null, $T)); t1 = _this._currentBottomSheet; t1.toString; return $T._eval$1("PersistentBottomSheetController<0>")._as(t1); }, get$_floatingActionButtonMoveController: function() { var t1 = this.__ScaffoldState__floatingActionButtonMoveController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingActionButtonMoveController")) : t1; }, get$_floatingActionButtonAnimator: function() { var t1 = this.__ScaffoldState__floatingActionButtonAnimator; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingActionButtonAnimator")) : t1; }, get$_floatingActionButtonVisibilityController: function() { var t1 = this.__ScaffoldState__floatingActionButtonVisibilityController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingActionButtonVisibilityController")) : t1; }, set$_floatingActionButtonVisibilityValue: function(newValue) { this.get$_floatingActionButtonVisibilityController().set$value(0, C.JSNumber_methods.clamp$2(newValue, this.get$_floatingActionButtonVisibilityController().lowerBound, this.get$_floatingActionButtonVisibilityController().upperBound)); }, _moveFloatingActionButton$1: function(newLocation) { var t2, t3, restartAnimationFrom, _this = this, t1 = {}; t1.previousLocation = _this._floatingActionButtonLocation; t2 = _this.get$_floatingActionButtonMoveController()._ticker; if (t2 != null && t2._ticker$_future != null) { t2 = _this._previousFloatingActionButtonLocation; t2.toString; t3 = _this._floatingActionButtonLocation; t3.toString; t1.previousLocation = new M._TransitionSnapshotFabLocation(t2, t3, _this.get$_floatingActionButtonAnimator(), _this.get$_floatingActionButtonMoveController().get$_animation_controller$_value()); t3 = _this.get$_floatingActionButtonAnimator(); t2 = _this.get$_floatingActionButtonMoveController().get$_animation_controller$_value(); t3.toString; restartAnimationFrom = Math.min(1 - t2, t2); } else restartAnimationFrom = 0; _this.setState$1(new M.ScaffoldState__moveFloatingActionButton_closure(t1, _this, newLocation)); _this.get$_floatingActionButtonMoveController().forward$1$from(0, restartAnimationFrom); }, _handleStatusBarTap$0: function() { var _primaryScrollController, t1 = this._framework$_element; t1.toString; _primaryScrollController = E.PrimaryScrollController_of(t1); if (_primaryScrollController != null && _primaryScrollController._positions.length !== 0) _primaryScrollController.animateTo$3$curve$duration(0, C.C__Linear, C.Duration_300000); }, get$_geometryNotifier: function() { var t1 = this.__ScaffoldState__geometryNotifier; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_geometryNotifier")) : t1; }, get$_resizeToAvoidBottomInset: function() { this._widget.toString; return true; }, initState$0: function() { var t1, _this = this, _null = null; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; _this.__ScaffoldState__geometryNotifier = new M._ScaffoldGeometryNotifier(t1, C.ScaffoldGeometry_null_null, new P.LinkedList(type$.LinkedList__ListenerEntry)); t1 = _this._widget.floatingActionButtonLocation; if (t1 == null) t1 = C.C__EndFloatFabLocation; _this._floatingActionButtonLocation = t1; _this.__ScaffoldState__floatingActionButtonAnimator = C.C__ScalingFabMotionAnimator; _this._previousFloatingActionButtonLocation = t1; _this.__ScaffoldState__floatingActionButtonMoveController = G.AnimationController$(_null, new P.Duration(400000), 0, _null, 1, 1, _this); _this.__ScaffoldState__floatingActionButtonVisibilityController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, _this); }, didUpdateWidget$1: function(oldWidget) { var _this = this, t1 = _this._widget; t1.toString; t1 = t1.floatingActionButtonLocation; if (t1 != oldWidget.floatingActionButtonLocation) _this._moveFloatingActionButton$1(t1 == null ? C.C__EndFloatFabLocation : t1); _this._widget.toString; _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); }, didChangeDependencies$0: function() { var t3, $parent, mediaQuery, _this = this, scope = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$._ScaffoldMessengerScope), _currentScaffoldMessenger = scope == null ? null : scope._scaffoldMessengerState, t1 = _this._scaffoldMessenger, t2 = t1 == null; if (!t2) t3 = _currentScaffoldMessenger == null || t1 !== _currentScaffoldMessenger; else t3 = false; if (t3) if (!t2) t1._scaffolds.remove$1(0, _this); _this._scaffoldMessenger = _currentScaffoldMessenger; if (_currentScaffoldMessenger != null) { t1 = _currentScaffoldMessenger._scaffolds; t1.add$1(0, _this); t2 = _currentScaffoldMessenger._snackBars; if (!t2.get$isEmpty(t2)) { $parent = _this._framework$_element.findAncestorStateOfType$1$0(type$.ScaffoldState); t1 = $parent == null || !t1.contains$1(0, $parent); } else t1 = false; if (t1) _this._updateSnackBar$0(); } mediaQuery = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; if (_this._accessibleNavigation === true) if (!mediaQuery.accessibleNavigation) { t1 = _this._snackBarTimer; t1 = t1 != null && t1._handle == null; } else t1 = false; else t1 = false; if (t1) _this.hideCurrentSnackBar$1$reason(C.SnackBarClosedReason_5); _this._accessibleNavigation = mediaQuery.accessibleNavigation; _this._maybeBuildPersistentBottomSheet$0(); _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); }, dispose$0: function(_) { var t2, _i, t3, _this = this, t1 = _this._snackBarTimer; if (t1 != null) t1.cancel$0(0); _this._snackBarTimer = null; _this.get$_geometryNotifier().ChangeNotifier__listeners = null; for (t1 = _this._dismissedBottomSheets, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { t3 = t1[_i].animationController; t3._ticker.dispose$0(0); t3._ticker = null; t3.super$AnimationEagerListenerMixin$dispose(0); } t1 = _this._currentBottomSheet; if (t1 != null) t1._scaffold$_widget.animationController.dispose$0(0); _this.get$_floatingActionButtonMoveController().dispose$0(0); _this.get$_floatingActionButtonVisibilityController().dispose$0(0); t1 = _this._scaffoldMessenger; if (t1 != null) t1._scaffolds.remove$1(0, _this); _this.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, _addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding: function(children, child, childId, maintainBottomViewPadding, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { var data = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.removePadding$4$removeBottom$removeLeft$removeRight$removeTop(removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); if (removeBottomInset) data = data.removeViewInsets$1$removeBottom(true); if (maintainBottomViewPadding && data.viewInsets.bottom !== 0) data = data.copyWith$1$padding(data.padding.copyWith$1$bottom(data.viewPadding.bottom)); if (child != null) children.push(T.LayoutId$(new F.MediaQuery(data, child, null), childId)); }, _addIfNonNull$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding: function(children, child, childId, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, false, removeBottomInset, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding: function(children, child, childId, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, false, false, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding: function(children, child, childId, maintainBottomViewPadding, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding) { return this._addIfNonNull$9$maintainBottomViewPadding$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, child, childId, maintainBottomViewPadding, false, removeBottomPadding, removeLeftPadding, removeRightPadding, removeTopPadding); }, _buildEndDrawer$2: function(children, textDirection) { var _this = this, t1 = _this._widget.endDrawer; if (t1 != null) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new Z.DrawerController(t1, C.DrawerAlignment_1, _this.get$_endDrawerOpenedCallback(), C.DragStartBehavior_1, null, true, null, _this._endDrawerOpened._restoration_properties$_value, _this._endDrawerKey), C._ScaffoldSlot_9, false, textDirection === C.TextDirection_1, textDirection === C.TextDirection_0, false); }, _buildDrawer$2: function(children, textDirection) { var _this = this, t1 = _this._widget.drawer; if (t1 != null) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new Z.DrawerController(t1, C.DrawerAlignment_0, _this.get$_drawerOpenedCallback(), C.DragStartBehavior_1, null, true, null, _this._drawerOpened._restoration_properties$_value, _this._scaffold$_drawerKey), C._ScaffoldSlot_8, false, textDirection === C.TextDirection_0, textDirection === C.TextDirection_1, false); }, showBodyScrim$2: function(value, opacity) { var _this = this; if (_this._showBodyScrim === value && (_this._bodyScrimColor.value >>> 24 & 255) / 255 === opacity) return; _this.setState$1(new M.ScaffoldState_showBodyScrim_closure(_this, value, opacity)); }, build$1: function(_, context) { var textDirection, route, t2, children, t3, t4, stack, snackBarWidth, minInsets, minViewPadding, _this = this, _null = null, _box_0 = {}, mediaQuery = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, themeData = K.Theme_of(context), t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; _this._accessibleNavigation = mediaQuery.accessibleNavigation; t1 = _this._snackBars; if (!t1.get$isEmpty(t1)) { route = T.ModalRoute_of(context, type$.nullable_Object); if (route == null || route.get$isCurrent()) _null.get$isCompleted(); else { t2 = _this._snackBarTimer; if (t2 != null) t2.cancel$0(0); _this._snackBarTimer = null; } } children = H.setRuntimeTypeInfo([], type$.JSArray_LayoutId); t2 = _this._widget; t3 = t2.body; t3 = t3 == null ? _null : new M._BodyBuilder(t3, false, false, _null); t4 = t2.appBar; t2 = t2.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t3, C._ScaffoldSlot_0, true, t2, false, false, t4 != null); if (_this._showBodyScrim) _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new X.ModalBarrier(_this._bodyScrimColor, false, true, _null, _null), C._ScaffoldSlot_2, true, true, true, true); t2 = _this._widget.appBar; if (t2 != null) { t3 = _this._appBarMaxHeight = t2.preferredSize._dy + mediaQuery.padding.top; _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new T.ConstrainedBox(new S.BoxConstraints(0, 1 / 0, 0, t3), Z.FlexibleSpaceBar_createSettings(t2, t3, _null, _null, _null), _null), C._ScaffoldSlot_1, true, false, false, false); } _box_0.isSnackBarFloating = false; _box_0.snackBarWidth = null; if (_this._currentBottomSheet != null || _this._dismissedBottomSheets.length !== 0) { t2 = P.List_List$of(_this._dismissedBottomSheets, true, type$.Widget); t3 = _this._currentBottomSheet; if (t3 != null) t2.push(t3._scaffold$_widget); stack = T.Stack$(C.Alignment_0_1, t2, C.Clip_1, C.StackFit_0, _null, _null); _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, stack, C._ScaffoldSlot_3, true, false, false, true); } t2 = _this._messengerSnackBar; if (t2 != null) { t2._scaffold$_widget.get$behavior(); themeData.toString; _box_0.isSnackBarFloating = false; t2 = _this._messengerSnackBar; if (t2 == null) snackBarWidth = _null; else { t2 = t2._scaffold$_widget; snackBarWidth = t2.get$width(t2); } _box_0.snackBarWidth = snackBarWidth; t2 = _this._messengerSnackBar; t2 = t2 == null ? _null : t2._scaffold$_widget; t3 = _this._widget.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t2, C._ScaffoldSlot_4, false, t3, false, false, true); } if (!t1.get$isEmpty(t1)) { t1.get$first(t1)._scaffold$_widget.get$behavior(); _box_0.isSnackBarFloating = false; t2 = t1.get$first(t1)._scaffold$_widget; _box_0.snackBarWidth = t2.get$width(t2); t1 = t1.get$first(t1)._scaffold$_widget; t2 = _this._widget.bottomNavigationBar != null || false; _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t1, C._ScaffoldSlot_4, false, t2, false, false, true); } t1 = _this._widget; t1 = t1.bottomNavigationBar; if (t1 != null) { _this.get$_resizeToAvoidBottomInset(); _this._addIfNonNull$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, t1, C._ScaffoldSlot_6, false, false, false, false, true); } _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, new M._FloatingActionButtonTransition(_this._widget.floatingActionButton, _this.get$_floatingActionButtonMoveController(), _this.get$_floatingActionButtonAnimator(), _this.get$_geometryNotifier(), _this.get$_floatingActionButtonVisibilityController(), _null), C._ScaffoldSlot_7, true, true, true, true); switch (themeData.platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: _this._addIfNonNull$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(children, D.GestureDetector$(C.HitTestBehavior_1, _null, C.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_handleStatusBarTap(), _null, _null, _null, _null, _null, _null), C._ScaffoldSlot_10, true, false, false, true); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (_this._endDrawerOpened._restoration_properties$_value) { _this._buildDrawer$2(children, textDirection); _this._buildEndDrawer$2(children, textDirection); } else { _this._buildEndDrawer$2(children, textDirection); _this._buildDrawer$2(children, textDirection); } _this.get$_resizeToAvoidBottomInset(); t1 = mediaQuery.viewInsets.bottom; minInsets = mediaQuery.padding.copyWith$1$bottom(t1); _this.get$_resizeToAvoidBottomInset(); t1 = t1 !== 0 ? 0 : _null; minViewPadding = mediaQuery.viewPadding.copyWith$1$bottom(t1); if (minInsets.bottom <= 0) _this._widget.toString; t1 = _this._widget.drawer; t2 = _this.get$_geometryNotifier(); t3 = _this._widget.backgroundColor; if (t3 == null) t3 = themeData.scaffoldBackgroundColor; return new M._ScaffoldScope(t1 != null, t2, M.Material$(C.Duration_200000, true, _null, K.AnimatedBuilder$(_this.get$_floatingActionButtonMoveController(), new M.ScaffoldState_build_closure(_box_0, _this, children, false, minInsets, minViewPadding, textDirection), _null), C.Clip_0, t3, 0, _null, _null, _null, _null, C.MaterialType_0), _null); } }; M.ScaffoldState__drawerOpenedCallback_closure.prototype = { call$0: function() { this.$this._drawerOpened.super$RestorableValue$value(0, this.isOpened); }, $signature: 0 }; M.ScaffoldState__endDrawerOpenedCallback_closure.prototype = { call$0: function() { this.$this._endDrawerOpened.super$RestorableValue$value(0, this.isOpened); }, $signature: 0 }; M.ScaffoldState_hideCurrentSnackBar_closure.prototype = { call$1: function(value) { var t1 = this.completer; if (t1.future._state === 0) t1.complete$1(0, this.reason); }, $signature: 83 }; M.ScaffoldState__updateSnackBar_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._scaffoldMessenger._snackBars; if (!t2.get$isEmpty(t2)) { t2 = t1._scaffoldMessenger._snackBars; t2 = t2.get$first(t2); } else t2 = null; t1._messengerSnackBar = t2; }, $signature: 0 }; M.ScaffoldState__buildBottomSheet__bottomSheet_set.prototype = { call$1: function(t1) { return this._box_0._bottomSheet = t1; }, $signature: 2107 }; M.ScaffoldState__buildBottomSheet__bottomSheet_get.prototype = { call$0: function() { var t1 = this._box_0._bottomSheet; return t1 === $ ? H.throwExpression(H.LateError$localNI("bottomSheet")) : t1; }, $signature: 2110 }; M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet.prototype = { call$0: function() { var t1, _this = this; _this._box_0.removedEntry = true; t1 = _this.$this; if (t1._currentBottomSheet == null) return; t1.get$_floatingActionButtonVisibilityController().forward$0(0); _this.bottomSheetKey.get$currentState().close$0(0); t1.setState$1(new M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure(t1)); if (_this.animationController.get$_status() !== C.AnimationStatus_0) t1._dismissedBottomSheets.push(_this._bottomSheet_get.call$0()); _this.completer.complete$0(0); }, $signature: 0 }; M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure.prototype = { call$0: function() { this.$this._currentBottomSheet = null; }, $signature: 0 }; M.ScaffoldState__buildBottomSheet_closure.prototype = { call$0: function() { if (!this._box_0.removedEntry) this._removeCurrentBottomSheet.call$0(); }, $signature: 0 }; M.ScaffoldState__buildBottomSheet_closure0.prototype = { call$0: function() { var t1, _this = this; if (_this.$this._currentBottomSheet == null) return; if (!_this.isPersistent && !_this._box_0.removedEntry) { t1 = _this.entry; t1._routes$_owner.removeLocalHistoryEntry$1(t1); _this._box_0.removedEntry = true; } }, $signature: 0 }; M.ScaffoldState__buildBottomSheet_closure1.prototype = { call$0: function() { var t1 = this.$this, t2 = this._bottomSheet_get; if (C.JSArray_methods.contains$1(t1._dismissedBottomSheets, t2.call$0())) t1.setState$1(new M.ScaffoldState__buildBottomSheet__closure(t1, t2)); }, $signature: 0 }; M.ScaffoldState__buildBottomSheet__closure.prototype = { call$0: function() { C.JSArray_methods.remove$1(this.$this._dismissedBottomSheets, this._bottomSheet_get.call$0()); }, $signature: 0 }; M.ScaffoldState_showBottomSheet_closure.prototype = { call$0: function() { var _this = this, t1 = _this.$this; t1._currentBottomSheet = t1._buildBottomSheet$1$7$animationController$backgroundColor$clipBehavior$elevation$shape(_this.builder, false, _this.controller, _this.backgroundColor, _this.clipBehavior, _this.elevation, _this.shape, _this.T); }, $signature: 0 }; M.ScaffoldState__moveFloatingActionButton_closure.prototype = { call$0: function() { var t1 = this.$this; t1._previousFloatingActionButtonLocation = this._box_0.previousLocation; t1._floatingActionButtonLocation = this.newLocation; }, $signature: 0 }; M.ScaffoldState_showBodyScrim_closure.prototype = { call$0: function() { var t1 = this.$this; t1._showBodyScrim = this.value; t1._bodyScrimColor = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * this.opacity), 0, 0, 0); }, $signature: 0 }; M.ScaffoldState_build_closure.prototype = { call$2: function(context, child) { var t2, t3, t4, t5, t6, _this = this, t1 = _this.$this; t1._widget.toString; t2 = t1._floatingActionButtonLocation; t2.toString; t3 = t1.get$_floatingActionButtonMoveController().get$_animation_controller$_value(); t4 = t1.get$_floatingActionButtonAnimator(); t5 = t1.get$_geometryNotifier(); t1 = t1._previousFloatingActionButtonLocation; t1.toString; t6 = _this._box_0; return new T.CustomMultiChildLayout(new M._ScaffoldLayout(_this._extendBody, false, _this.minInsets, _this.minViewPadding, _this.textDirection, t5, t1, t2, t3, t4, t6.isSnackBarFloating, t6.snackBarWidth), _this.children, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2112 }; M.ScaffoldFeatureController.prototype = {}; M._BottomSheetSuspendedCurve.prototype = { transform$1: function(_, t) { var t1 = this.startingPoint; if (t < t1) return t; if (t === 1) return t; t1 = P.lerpDouble(t1, 1, this.curve.transform$1(0, (t - t1) / (1 - t1))); t1.toString; return t1; }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this.startingPoint) + ", " + this.curve.toString$0(0) + ")"; } }; M._StandardBottomSheet.prototype = { createState$0: function() { return new M._StandardBottomSheetState(C.Cubic_ifx, C._StateLifecycle_0); } }; M._StandardBottomSheetState.prototype = { initState$0: function() { this.super$State$initState(); this._widget.animationController.addStatusListener$1(this.get$_handleStatusChange()); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); }, close$0: function(_) { this._widget.animationController.reverse$0(0); this._widget.onClosing.call$0(); }, _scaffold$_handleDragStart$1: function(details) { this.animationCurve = C.C__Linear; }, _scaffold$_handleDragEnd$2$isClosing: function(details, isClosing) { this.animationCurve = new M._BottomSheetSuspendedCurve(this._widget.animationController.get$_animation_controller$_value(), C.Cubic_ifx); }, _scaffold$_handleDragEnd$1: function(details) { return this._scaffold$_handleDragEnd$2$isClosing(details, null); }, _handleStatusChange$1: function($status) { if ($status === C.AnimationStatus_0) this._widget.onDismissed.call$0(); }, extentChanged$1: function(notification) { var scaffold, t1 = notification.extent, extentRemaining = 1 - t1, t2 = this._framework$_element; t2.toString; scaffold = M.Scaffold_of(t2); if (extentRemaining < 0.3) { scaffold.set$_floatingActionButtonVisibilityValue(extentRemaining * 0.3 * 10); scaffold.showBodyScrim$2(true, Math.max(0.1, 0.6 - scaffold.get$_floatingActionButtonVisibilityController().get$_animation_controller$_value())); } else { scaffold.set$_floatingActionButtonVisibilityValue(1); scaffold.showBodyScrim$2(false, 0); } if (t1 === notification.minExtent) { scaffold._widget.toString; t1 = true; } else t1 = false; if (t1) this.close$0(0); return false; }, build$1: function(_, context) { var _this = this, _null = null, t1 = _this._widget, t2 = t1.animationController, t3 = t1.enableDrag, t4 = t1.onClosing, t5 = t1.builder, t6 = t1.backgroundColor, t7 = t1.elevation, t8 = t1.shape; t1 = t1.clipBehavior; return K.AnimatedBuilder$(t2, new M._StandardBottomSheetState_build_closure(_this), new T.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, _this.get$close(_this), _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, new U.NotificationListener(new E.BottomSheet(t2, t4, t5, t3, _this.get$_scaffold$_handleDragStart(), _this.get$_scaffold$_handleDragEnd(), t6, t7, t8, t1, _null), _this.get$extentChanged(), _null, type$.NotificationListener_DraggableScrollableNotification), _null)); } }; M._StandardBottomSheetState_build_closure.prototype = { call$2: function(context, child) { var t1 = this.$this; return new T.Align(C.AlignmentDirectional_m1_m1, null, t1.animationCurve.transform$1(0, t1._widget.animationController.get$_animation_controller$_value()), child, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2125 }; M.PersistentBottomSheetController.prototype = {}; M._ScaffoldScope.prototype = { updateShouldNotify$1: function(oldWidget) { return this.hasDrawer !== oldWidget.hasDrawer; } }; M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; M._ScaffoldMessengerState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; M._ScaffoldState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$_ScaffoldState_State_TickerProviderStateMixin$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_ScaffoldState_State_TickerProviderStateMixin$dispose(0); } }; M.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; E.Scrollbar.prototype = { createState$0: function() { return new E._ScrollbarState(C._StateLifecycle_0); } }; E._ScrollbarState.prototype = { build$1: function(_, context) { var t2, t3, _null = null, t1 = this._framework$_element; t1.toString; if (K.Theme_of(t1).platform === C.TargetPlatform_2) { t1 = this._widget; t2 = t1.child; t3 = t1.isAlwaysShown; t1 = t1.controller; return new E.CupertinoScrollbar(8, C.Radius_4_4, t2, t1, t3 === true, C.Radius_ydE, 3, C.Duration_250000, C.Duration_1200000, C.Duration_100000, G.scroll_notification__defaultScrollNotificationPredicate$closure(), _null, _null); } t1 = this._widget; t2 = t1.child; t3 = t1.controller; t1 = t1.isAlwaysShown; return new E._MaterialScrollbar(_null, _null, t2, t3, t1, _null, _null, C.Duration_300000, C.Duration_600000, C.Duration_0, G.scroll_notification__defaultScrollNotificationPredicate$closure(), _null, _null); } }; E._MaterialScrollbar.prototype = { createState$0: function() { return new E._MaterialScrollbarState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), null, C._StateLifecycle_0); } }; E._MaterialScrollbarState.prototype = { get$_hoverAnimationController: function() { var t1 = this.___MaterialScrollbarState__hoverAnimationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hoverAnimationController")) : t1; }, get$_colorScheme: function() { var t1 = this.___MaterialScrollbarState__colorScheme; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_colorScheme")) : t1; }, get$_scrollbarTheme: function() { var t1 = this.___MaterialScrollbarState__scrollbarTheme; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollbarTheme")) : t1; }, get$_useAndroidScrollbar: function() { var t1 = this.___MaterialScrollbarState__useAndroidScrollbar; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_useAndroidScrollbar")) : t1; }, get$showScrollbar: function() { var t1 = this._widget.isAlwaysShown; if (t1 == null) t1 = this.get$_scrollbarTheme().isAlwaysShown; return t1 === true; }, get$enableGestures: function() { this._widget.toString; var t1 = this.get$_scrollbarTheme(); t1.toString; t1 = this.get$_useAndroidScrollbar(); return !t1; }, get$_showTrackOnHover: function() { this._widget.toString; var t1 = this.get$_scrollbarTheme(); t1.toString; return false; }, get$_scrollbar0$_states: function() { var t1 = P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (this._dragIsActive) t1.add$1(0, C.MaterialState_3); if (this._scrollbar0$_hoverIsActive) t1.add$1(0, C.MaterialState_0); return t1; }, get$_thumbColor: function() { var _dragColor_set, _hoverColor_set, _idleColor_set, t1, t2, t3, _this = this, _box_0 = {}, onSurface = _this.get$_colorScheme().onSurface, brightness = _this.get$_colorScheme().brightness; _box_0._dragColor = $; _dragColor_set = new E._MaterialScrollbarState__thumbColor__dragColor_set(_box_0); _box_0._hoverColor0 = $; _hoverColor_set = new E._MaterialScrollbarState__thumbColor__hoverColor_set(_box_0); _box_0._idleColor = $; _idleColor_set = new E._MaterialScrollbarState__thumbColor__idleColor_set(_box_0); switch (brightness) { case C.Brightness_1: t1 = onSurface.value; t2 = t1 >>> 16 & 255; t3 = t1 >>> 8 & 255; t1 &= 255; _dragColor_set.call$1(P.Color$fromARGB(153, t2, t3, t1)); _hoverColor_set.call$1(P.Color$fromARGB(C.JSNumber_methods.round$0(127.5), t2, t3, t1)); if (_this.get$_useAndroidScrollbar()) { t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).highlightColor.value; t1 = P.Color$fromARGB(255, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else t1 = P.Color$fromARGB(C.JSNumber_methods.round$0(25.5), t2, t3, t1); _idleColor_set.call$1(t1); break; case C.Brightness_0: t1 = onSurface.value; t2 = t1 >>> 16 & 255; t3 = t1 >>> 8 & 255; t1 &= 255; _dragColor_set.call$1(P.Color$fromARGB(191, t2, t3, t1)); _hoverColor_set.call$1(P.Color$fromARGB(166, t2, t3, t1)); if (_this.get$_useAndroidScrollbar()) { t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).highlightColor.value; t1 = P.Color$fromARGB(255, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } else t1 = P.Color$fromARGB(C.JSNumber_methods.round$0(76.5), t2, t3, t1); _idleColor_set.call$1(t1); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return new V._MaterialStatePropertyWith(new E._MaterialScrollbarState__thumbColor_closure(_this, new E._MaterialScrollbarState__thumbColor__dragColor_get(_box_0), new E._MaterialScrollbarState__thumbColor__hoverColor_get(_box_0), new E._MaterialScrollbarState__thumbColor__idleColor_get(_box_0)), type$._MaterialStatePropertyWith_Color); }, get$_trackColor: function() { var onSurface = this.get$_colorScheme().onSurface; return new V._MaterialStatePropertyWith(new E._MaterialScrollbarState__trackColor_closure(this, this.get$_colorScheme().brightness, onSurface), type$._MaterialStatePropertyWith_Color); }, get$_trackBorderColor: function() { var onSurface = this.get$_colorScheme().onSurface; return new V._MaterialStatePropertyWith(new E._MaterialScrollbarState__trackBorderColor_closure(this, this.get$_colorScheme().brightness, onSurface), type$._MaterialStatePropertyWith_Color); }, get$_scrollbar0$_thickness: function() { return new V._MaterialStatePropertyWith(new E._MaterialScrollbarState__thickness_closure(this), type$._MaterialStatePropertyWith_double); }, initState$0: function() { var t1, _this = this; _this.super$RawScrollbarState$initState(); _this.___MaterialScrollbarState__hoverAnimationController = G.AnimationController$(null, C.Duration_200000, 0, null, 1, null, _this); t1 = _this.get$_hoverAnimationController(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(new E._MaterialScrollbarState_initState_closure(_this)); }, didChangeDependencies$0: function() { var theme, _this = this, t1 = _this._framework$_element; t1.toString; theme = K.Theme_of(t1); _this.___MaterialScrollbarState__colorScheme = theme.colorScheme; _this.___MaterialScrollbarState__scrollbarTheme = theme.scrollbarTheme; switch (theme.platform) { case C.TargetPlatform_0: _this.___MaterialScrollbarState__useAndroidScrollbar = true; break; case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_1: case C.TargetPlatform_4: case C.TargetPlatform_5: _this.___MaterialScrollbarState__useAndroidScrollbar = false; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.super$RawScrollbarState$didChangeDependencies(); }, updateScrollbarPainter$0: function() { var t2, _this = this, t1 = _this.get$scrollbarPainter(); t1.set$color(0, _this.get$_thumbColor()._material_state$_resolve.call$1(_this.get$_scrollbar0$_states())); t1.set$trackColor(_this.get$_trackColor()._material_state$_resolve.call$1(_this.get$_scrollbar0$_states())); t1.set$trackBorderColor(_this.get$_trackBorderColor()._material_state$_resolve.call$1(_this.get$_scrollbar0$_states())); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t1.set$thickness(_this.get$_scrollbar0$_thickness()._material_state$_resolve.call$1(_this.get$_scrollbar0$_states())); t2 = _this._widget.radius; if (t2 == null) t2 = _this.get$_scrollbarTheme().radius; if (t2 == null) t2 = _this.get$_useAndroidScrollbar() ? null : C.Radius_8_8; t1.set$radius(t2); t2 = _this.get$_scrollbarTheme().crossAxisMargin; if (t2 == null) t2 = _this.get$_useAndroidScrollbar() ? 0 : 2; t1.set$crossAxisMargin(t2); t2 = _this.get$_scrollbarTheme().mainAxisMargin; t1.set$mainAxisMargin(t2 == null ? 0 : t2); t2 = _this.get$_scrollbarTheme().minThumbLength; t1.set$minLength(0, t2 == null ? 48 : t2); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); }, handleThumbPressStart$1: function(localPosition) { this.super$RawScrollbarState$handleThumbPressStart(localPosition); this.setState$1(new E._MaterialScrollbarState_handleThumbPressStart_closure(this)); }, handleThumbPressEnd$2: function(localPosition, velocity) { this.super$RawScrollbarState$handleThumbPressEnd(localPosition, velocity); this.setState$1(new E._MaterialScrollbarState_handleThumbPressEnd_closure(this)); }, handleHover$1: function($event) { var _this = this; _this.super$RawScrollbarState$handleHover($event); if (_this.isPointerOverScrollbar$2($event.get$position($event), $event.get$kind($event))) { _this.setState$1(new E._MaterialScrollbarState_handleHover_closure(_this)); _this.get$_hoverAnimationController().forward$0(0); } else if (_this._scrollbar0$_hoverIsActive) { _this.setState$1(new E._MaterialScrollbarState_handleHover_closure0(_this)); _this.get$_hoverAnimationController().reverse$0(0); } }, handleHoverExit$1: function($event) { var _this = this; _this.super$RawScrollbarState$handleHoverExit($event); _this.setState$1(new E._MaterialScrollbarState_handleHoverExit_closure(_this)); _this.get$_hoverAnimationController().reverse$0(0); }, dispose$0: function(_) { this.get$_hoverAnimationController().dispose$0(0); this.super$RawScrollbarState$dispose(0); } }; E._MaterialScrollbarState__thumbColor__dragColor_set.prototype = { call$1: function(t1) { return this._box_0._dragColor = t1; }, $signature: 367 }; E._MaterialScrollbarState__thumbColor__hoverColor_set.prototype = { call$1: function(t1) { return this._box_0._hoverColor0 = t1; }, $signature: 367 }; E._MaterialScrollbarState__thumbColor__idleColor_set.prototype = { call$1: function(t1) { return this._box_0._idleColor = t1; }, $signature: 367 }; E._MaterialScrollbarState__thumbColor__dragColor_get.prototype = { call$0: function() { var t1 = this._box_0._dragColor; return t1 === $ ? H.throwExpression(H.LateError$localNI("dragColor")) : t1; }, $signature: 368 }; E._MaterialScrollbarState__thumbColor__hoverColor_get.prototype = { call$0: function() { var t1 = this._box_0._hoverColor0; return t1 === $ ? H.throwExpression(H.LateError$localNI("hoverColor")) : t1; }, $signature: 368 }; E._MaterialScrollbarState__thumbColor__idleColor_get.prototype = { call$0: function() { var t1 = this._box_0._idleColor; return t1 === $ ? H.throwExpression(H.LateError$localNI("idleColor")) : t1; }, $signature: 368 }; E._MaterialScrollbarState__thumbColor_closure.prototype = { call$1: function(states) { var t1, t2, t3, _this = this; if (states.contains$1(0, C.MaterialState_3)) { t1 = _this.$this.get$_scrollbarTheme().thumbColor; t1 = t1 == null ? null : t1.resolve$1(states); return t1 == null ? _this._dragColor_get.call$0() : t1; } if (states.contains$1(0, C.MaterialState_0)) _this.$this.get$_showTrackOnHover(); t1 = _this.$this; t2 = t1.get$_scrollbarTheme().thumbColor; t2 = t2 == null ? null : t2.resolve$1(states); if (t2 == null) t2 = _this._idleColor_get.call$0(); t3 = t1.get$_scrollbarTheme().thumbColor; t3 = t3 == null ? null : t3.resolve$1(states); if (t3 == null) t3 = _this._hoverColor_get.call$0(); t1 = P.Color_lerp(t2, t3, t1.get$_hoverAnimationController().get$_animation_controller$_value()); t1.toString; return t1; }, $signature: 111 }; E._MaterialScrollbarState__trackColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_0)) this.$this.get$_showTrackOnHover(); return C.Color_0; }, $signature: 111 }; E._MaterialScrollbarState__trackBorderColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_0)) this.$this.get$_showTrackOnHover(); return C.Color_0; }, $signature: 111 }; E._MaterialScrollbarState__thickness_closure.prototype = { call$1: function(states) { var t1, t2; if (states.contains$1(0, C.MaterialState_0)) this.$this.get$_showTrackOnHover(); t1 = this.$this; t2 = t1._widget.thickness; if (t2 == null) { t2 = t1.get$_scrollbarTheme().thickness; t2 = t2 == null ? null : t2.resolve$1(states); } if (t2 == null) { t2 = 8 / (t1.get$_useAndroidScrollbar() ? 2 : 1); t1 = t2; } else t1 = t2; return t1; }, $signature: 2142 }; E._MaterialScrollbarState_initState_closure.prototype = { call$0: function() { this.$this.updateScrollbarPainter$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; E._MaterialScrollbarState_handleThumbPressStart_closure.prototype = { call$0: function() { this.$this._dragIsActive = true; }, $signature: 0 }; E._MaterialScrollbarState_handleThumbPressEnd_closure.prototype = { call$0: function() { this.$this._dragIsActive = false; }, $signature: 0 }; E._MaterialScrollbarState_handleHover_closure.prototype = { call$0: function() { this.$this._scrollbar0$_hoverIsActive = true; }, $signature: 0 }; E._MaterialScrollbarState_handleHover_closure0.prototype = { call$0: function() { this.$this._scrollbar0$_hoverIsActive = false; }, $signature: 0 }; E._MaterialScrollbarState_handleHoverExit_closure.prototype = { call$0: function() { this.$this._scrollbar0$_hoverIsActive = false; }, $signature: 0 }; X.ScrollbarThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.thickness, _this.showTrackOnHover, _this.isAlwaysShown, _this.interactive, _this.radius, _this.thumbColor, _this.trackColor, _this.trackBorderColor, _this.crossAxisMargin, _this.mainAxisMargin, _this.minThumbLength, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof X.ScrollbarThemeData) if (other.thickness == _this.thickness) t1 = J.$eq$(other.radius, _this.radius) && other.thumbColor == _this.thumbColor && other.trackColor == _this.trackColor && other.trackBorderColor == _this.trackBorderColor && other.crossAxisMargin == _this.crossAxisMargin && other.mainAxisMargin == _this.mainAxisMargin && other.minThumbLength == _this.minThumbLength; else t1 = false; else t1 = false; return t1; } }; X._LerpProperties4.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; X._ScrollbarThemeData_Object_Diagnosticable.prototype = {}; O._TextSpanEditingController.prototype = { buildTextSpan$3$context$style$withComposing: function(context, style, withComposing) { return Q.TextSpan$(H.setRuntimeTypeInfo([this._textSpan], type$.JSArray_TextSpan), null, style, null); }, set$text: function(_, newText) { throw H.wrapException(P.UnimplementedError$(null)); } }; O._SelectableTextSelectionGestureDetectorBuilder.prototype = { onForcePressStart$1: function(details) { var t1, t2; this.super$TextSelectionGestureDetectorBuilder$onForcePressStart(details); t1 = this.delegate; t1.get$selectionEnabled(); t2 = this._shouldShowSelectionToolbar; if (t2) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onForcePressEnd$1: function(details) { }, onSingleLongTapMoveUpdate$1: function(details) { var t2, t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t2 = details.globalPosition; type$.RenderEditable._as(t1).selectWordsInRange$3$cause$from$to(C.SelectionChangedCause_2, t2.$sub(0, details.offsetFromOrigin), t2); }, onSingleTapUp$1: function(details) { var t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2.hideToolbar$0(); t1.get$selectionEnabled(); t2 = this._selectable_text$_state._framework$_element; t2.toString; switch (K.Theme_of(t2).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordEdge$1$cause(C.SelectionChangedCause_0); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(C.SelectionChangedCause_0, t2); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } this._selectable_text$_state._widget.toString; }, onSingleLongTapStart$1: function(details) { var t2, t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectWordsInRange$2$cause$from(C.SelectionChangedCause_2, t2); t2 = this._selectable_text$_state._framework$_element; t2.toString; M.Feedback_forLongPress(t2); } }; O.SelectableText.prototype = { createState$0: function() { return new O._SelectableTextState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_EditableTextState), null, C._StateLifecycle_0); } }; O._SelectableTextState.prototype = { get$_selectable_text$_controller: function() { var t1 = this.___SelectableTextState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_selectable_text$_effectiveFocusNode: function() { this._widget.toString; var t1 = this._selectable_text$_focusNode; if (t1 == null) { t1 = O.FocusNode$(true, null, true, null, false); this._selectable_text$_focusNode = t1; } return t1; }, get$_selectable_text$_selectionGestureDetectorBuilder: function() { var t1 = this.___SelectableTextState__selectionGestureDetectorBuilder; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_selectionGestureDetectorBuilder")) : t1; }, get$forcePressEnabled: function() { var t1 = this.___SelectableTextState_forcePressEnabled; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("forcePressEnabled")) : t1; }, get$selectionEnabled: function() { this._widget.toString; return true; }, initState$0: function() { var t1, _this = this; _this.super$__SelectableTextState_State_AutomaticKeepAliveClientMixin$initState(); _this.___SelectableTextState__selectionGestureDetectorBuilder = new O._SelectableTextSelectionGestureDetectorBuilder(_this, _this); t1 = Q.TextSpan$(null, null, null, _this._widget.data); _this.___SelectableTextState__controller = O._TextSpanEditingController$(t1); t1 = _this.get$_selectable_text$_controller().ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onControllerChanged()), false); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.data != oldWidget.data || false) { t1 = _this.get$_onControllerChanged(); _this.get$_selectable_text$_controller().removeListener$1(0, t1); t2 = Q.TextSpan$(null, null, null, _this._widget.data); _this.___SelectableTextState__controller = O._TextSpanEditingController$(t2); t2 = _this.get$_selectable_text$_controller().ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1), false); } if (_this.get$_selectable_text$_effectiveFocusNode().get$hasFocus()) { t1 = _this.get$_selectable_text$_controller()._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) _this._selectable_text$_showSelectionHandles = false; else _this._selectable_text$_showSelectionHandles = true; }, dispose$0: function(_) { var _this = this, t1 = _this._selectable_text$_focusNode; if (t1 != null) t1.dispose$0(0); _this.get$_selectable_text$_controller().removeListener$1(0, _this.get$_onControllerChanged()); _this.super$State$dispose(0); }, _onControllerChanged$0: function() { var t1, showSelectionHandles, _this = this; if (_this.get$_selectable_text$_effectiveFocusNode().get$hasFocus()) { t1 = _this.get$_selectable_text$_controller()._change_notifier$_value.selection; showSelectionHandles = t1.start != t1.end; } else showSelectionHandles = true; if (showSelectionHandles === _this._selectable_text$_showSelectionHandles) return; _this.setState$1(new O._SelectableTextState__onControllerChanged_closure(_this, showSelectionHandles)); }, _selectable_text$_handleSelectionChanged$2: function(selection, cause) { var t1, _this = this, willShowSelectionHandles = _this._selectable_text$_shouldShowSelectionHandles$1(cause); if (willShowSelectionHandles !== _this._selectable_text$_showSelectionHandles) _this.setState$1(new O._SelectableTextState__handleSelectionChanged_closure(_this, willShowSelectionHandles)); _this._widget.toString; _this._lastSeenTextSelection = selection; t1 = _this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: if (cause === C.SelectionChangedCause_2) { t1 = _this.editableTextKey.get$currentState(); if (t1 != null) t1.bringIntoView$1(new P.TextPosition(selection.baseOffset, selection.affinity)); } return; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _selectable_text$_handleSelectionHandleTapped$0: function() { var t1 = this.get$_selectable_text$_controller()._change_notifier$_value.selection; if (t1.start == t1.end) this.editableTextKey.get$currentState().toggleToolbar$0(); }, _selectable_text$_shouldShowSelectionHandles$1: function(cause) { var t1; if (!this.get$_selectable_text$_selectionGestureDetectorBuilder()._shouldShowSelectionToolbar) return false; t1 = this.get$_selectable_text$_controller()._change_notifier$_value.selection; if (t1.start == t1.end) return false; if (cause === C.SelectionChangedCause_4) return false; if (cause === C.SelectionChangedCause_2) return true; if (this.get$_selectable_text$_controller()._change_notifier$_value.text.length !== 0) return true; return false; }, get$wantKeepAlive: function() { return true; }, build$1: function(_, context) { var theme, selectionTheme, focusNode, cupertinoTheme, textSelectionControls, cursorColor, selectionColor, t1, cursorOffset, paintCursorAboveText, cursorOpacityAnimates, cursorRadius, effectiveTextStyle, t2, t3, t4, _this = this, _null = null; _this.super$AutomaticKeepAliveClientMixin$build(0, context); theme = K.Theme_of(context); selectionTheme = R.TextSelectionTheme_of(context); focusNode = _this.get$_selectable_text$_effectiveFocusNode(); _this._widget.toString; switch (theme.platform) { case C.TargetPlatform_2: cupertinoTheme = K.CupertinoTheme_of(context); _this.___SelectableTextState_forcePressEnabled = true; textSelectionControls = $.$get$cupertinoTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = cupertinoTheme.get$primaryColor(); selectionColor = P.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorOffset = new P.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = C.Radius_2_2; break; case C.TargetPlatform_4: cupertinoTheme = K.CupertinoTheme_of(context); _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$cupertinoDesktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = cupertinoTheme.get$primaryColor(); selectionColor = P.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorOffset = new P.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = C.Radius_2_2; break; case C.TargetPlatform_0: case C.TargetPlatform_1: _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$materialTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = theme.colorScheme.primary; selectionColor = P.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorRadius = _null; cursorOffset = cursorRadius; paintCursorAboveText = false; cursorOpacityAnimates = false; break; case C.TargetPlatform_3: case C.TargetPlatform_5: _this.___SelectableTextState_forcePressEnabled = false; textSelectionControls = $.$get$desktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t1 = theme.colorScheme.primary; selectionColor = P.Color$fromARGB(102, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } cursorRadius = _null; cursorOffset = cursorRadius; paintCursorAboveText = false; cursorOpacityAnimates = false; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); if (t1 == null) t1 = C.DefaultTextStyle_4i6; effectiveTextStyle = _this._widget.style; if (effectiveTextStyle == null || effectiveTextStyle.inherit) effectiveTextStyle = t1.style.merge$1(effectiveTextStyle); if (F.MediaQuery_boldTextOverride(context)) effectiveTextStyle = effectiveTextStyle.merge$1(C.TextStyle_YOT); _this._widget.toString; t2 = _this._selectable_text$_showSelectionHandles; t3 = _this.get$_selectable_text$_controller(); t4 = _this._widget; t4 = t4.toolbarOptions; t1 = D.EditableText$(true, _null, _null, false, C.CupertinoDynamicColor_YIZ, t3, cursorColor, _null, cursorOffset, cursorOpacityAnimates, cursorRadius, 2, C.DragStartBehavior_1, true, true, false, focusNode, false, _null, _this.editableTextKey, C.Brightness_1, _null, t1.maxLines, _null, _null, false, "\u2022", _null, _null, _null, _this.get$_selectable_text$_handleSelectionChanged(), _this.get$_selectable_text$_handleSelectionHandleTapped(), _null, paintCursorAboveText, true, true, _null, _null, C.EdgeInsets_20_20_20_20, _null, selectionColor, textSelectionControls, C.BoxHeightStyle_0, C.BoxWidthStyle_0, false, t2, _null, _null, C.StrutStyle_yfz, effectiveTextStyle, C.TextAlign_4, C.TextCapitalization_3, _null, t1.textHeightBehavior, _null, _null, t1.textWidthBasis, t4); t1 = _this.get$_selectable_text$_selectionGestureDetectorBuilder().buildGestureDetector$2$behavior$child(C.HitTestBehavior_2, new T.RepaintBoundary(t1, _null)); return new T.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, new O._SelectableTextState_build_closure(_this), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); }, get$editableTextKey: function() { return this.editableTextKey; } }; O._SelectableTextState__onControllerChanged_closure.prototype = { call$0: function() { this.$this._selectable_text$_showSelectionHandles = this.showSelectionHandles; }, $signature: 0 }; O._SelectableTextState__handleSelectionChanged_closure.prototype = { call$0: function() { this.$this._selectable_text$_showSelectionHandles = this.willShowSelectionHandles; }, $signature: 0 }; O._SelectableTextState_build_closure.prototype = { call$0: function() { this.$this.get$_selectable_text$_effectiveFocusNode().requestFocus$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; O.__SelectableTextState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; Q.SliderThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashList([_this.trackHeight, _this.activeTrackColor, _this.inactiveTrackColor, _this.disabledActiveTrackColor, _this.disabledInactiveTrackColor, _this.activeTickMarkColor, _this.inactiveTickMarkColor, _this.disabledActiveTickMarkColor, _this.disabledInactiveTickMarkColor, _this.thumbColor, _this.overlappingShapeStrokeColor, _this.disabledThumbColor, _this.overlayColor, _this.valueIndicatorColor, _this.overlayShape, _this.tickMarkShape, _this.thumbShape, _this.trackShape, _this.valueIndicatorShape, _this.rangeTickMarkShape, _this.rangeThumbShape, _this.rangeTrackShape, _this.rangeValueIndicatorShape, _this.showValueIndicator, _this.valueIndicatorTextStyle, _this.minThumbSeparation, _this.thumbSelector]); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof Q.SliderThemeData) if (other.trackHeight == _this.trackHeight) if (J.$eq$(other.activeTrackColor, _this.activeTrackColor)) if (J.$eq$(other.inactiveTrackColor, _this.inactiveTrackColor)) if (J.$eq$(other.disabledActiveTrackColor, _this.disabledActiveTrackColor)) if (J.$eq$(other.disabledInactiveTrackColor, _this.disabledInactiveTrackColor)) if (J.$eq$(other.activeTickMarkColor, _this.activeTickMarkColor)) if (J.$eq$(other.inactiveTickMarkColor, _this.inactiveTickMarkColor)) if (J.$eq$(other.disabledActiveTickMarkColor, _this.disabledActiveTickMarkColor)) if (J.$eq$(other.disabledInactiveTickMarkColor, _this.disabledInactiveTickMarkColor)) if (J.$eq$(other.thumbColor, _this.thumbColor)) if (J.$eq$(other.overlappingShapeStrokeColor, _this.overlappingShapeStrokeColor)) if (J.$eq$(other.disabledThumbColor, _this.disabledThumbColor)) if (J.$eq$(other.overlayColor, _this.overlayColor)) if (J.$eq$(other.valueIndicatorColor, _this.valueIndicatorColor)) t1 = J.$eq$(other.valueIndicatorTextStyle, _this.valueIndicatorTextStyle) && other.minThumbSeparation == _this.minThumbSeparation && true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; Q._SliderThemeData_Object_Diagnosticable.prototype = {}; N.SnackBarClosedReason.prototype = { toString$0: function(_) { return this._snack_bar$_name; } }; K.SnackBarThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.actionTextColor, _this.disabledActionTextColor, _this.contentTextStyle, _this.elevation, _this.shape, _this.behavior, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof K.SnackBarThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.actionTextColor, _this.actionTextColor) && J.$eq$(other.disabledActionTextColor, _this.disabledActionTextColor) && J.$eq$(other.contentTextStyle, _this.contentTextStyle) && other.elevation == _this.elevation && J.$eq$(other.shape, _this.shape) && true; } }; K._SnackBarThemeData_Object_Diagnosticable.prototype = {}; N._SwitchType.prototype = { toString$0: function(_) { return this._switch$_name; } }; N.Switch.prototype = { _getSwitchSize$1: function(theme) { var t1 = this.materialTapTargetSize, effectiveMaterialTapTargetSize = t1 == null ? theme.switchTheme.materialTapTargetSize : t1; switch (effectiveMaterialTapTargetSize == null ? theme.materialTapTargetSize : effectiveMaterialTapTargetSize) { case C.MaterialTapTargetSize_0: return C.Size_59_48; case C.MaterialTapTargetSize_1: return C.Size_59_40; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _buildMaterialSwitch$1: function(context) { var _this = this, _null = null; return new N._MaterialSwitch(_this.value, _this.onChanged, _this.activeColor, _this.activeTrackColor, _this.inactiveThumbColor, _this.inactiveTrackColor, _this.activeThumbImage, _null, _this.inactiveThumbImage, _null, _null, _null, C.DragStartBehavior_1, _null, _null, _null, _null, _null, _null, false, _this._getSwitchSize$1(K.Theme_of(context)), _null); }, build$1: function(_, context) { var size, _this = this, _null = null, _s80_ = string$.x60null_c; switch (_this._switchType) { case C._SwitchType_0: return _this._buildMaterialSwitch$1(context); case C._SwitchType_1: switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return _this._buildMaterialSwitch$1(context); case C.TargetPlatform_2: case C.TargetPlatform_4: size = _this._getSwitchSize$1(K.Theme_of(context)); return L.Focus$(false, _null, M.Container$(C.Alignment_0_0, new N.CupertinoSwitch(_this.value, _this.onChanged, _this.activeColor, _this.inactiveTrackColor, C.DragStartBehavior_1, _null), C.Clip_0, _null, _null, _null, _null, size._dy, _null, _null, _null, _null, _null, size._dx), _null, true, _null, true, _null, _null, _null, _null); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, get$value: function(receiver) { return this.value; } }; N._MaterialSwitch.prototype = { createState$0: function() { return new N._MaterialSwitchState(new N._SwitchPainter(new P.LinkedList(type$.LinkedList__ListenerEntry)), $, $, $, $, $, $, $, $, $, null, false, false, null, C._StateLifecycle_0); }, get$value: function(receiver) { return this.value; } }; N._MaterialSwitchState.prototype = { didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.value != _this._widget.value) { t1 = _this.get$_toggleable$_position(_this); if (t1.get$value(t1) !== 0) { t1 = _this.get$_toggleable$_position(_this); t1 = t1.get$value(t1) === 1; } else t1 = true; if (t1) { t1 = _this.get$_toggleable$_position(_this); t1.curve = C.Cubic_JUR0; t1.reverseCurve = C.Cubic_xDo0; } _this.animateToValue$0(); } }, dispose$0: function(_) { this._switch$_painter.dispose$0(0); this.super$__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose(0); }, get$onChanged: function() { return this._widget.onChanged != null ? this.get$_switch$_handleChanged() : null; }, get$tristate: function() { return false; }, get$value: function(_) { return this._widget.value; }, get$_widgetThumbColor: function() { return new V._MaterialStatePropertyWith(new N._MaterialSwitchState__widgetThumbColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultThumbColor: function() { var theme, t1 = this._framework$_element; t1.toString; theme = K.Theme_of(t1); return new V._MaterialStatePropertyWith(new N._MaterialSwitchState__defaultThumbColor_closure(theme.colorScheme.brightness === C.Brightness_0, theme), type$._MaterialStatePropertyWith_Color); }, get$_widgetTrackColor: function() { return new V._MaterialStatePropertyWith(new N._MaterialSwitchState__widgetTrackColor_closure(this), type$._MaterialStatePropertyWith_nullable_Color); }, get$_defaultTrackColor: function() { var t1 = this._framework$_element; t1.toString; return new V._MaterialStatePropertyWith(new N._MaterialSwitchState__defaultTrackColor_closure(this, K.Theme_of(t1).colorScheme.brightness === C.Brightness_0), type$._MaterialStatePropertyWith_Color); }, _switch$_handleDragStart$1: function(details) { if (this.get$onChanged() != null) this.get$_toggleable$_reactionController().forward$0(0); }, _switch$_handleDragUpdate$1: function(details) { var t1, delta, _this = this; if (_this.get$onChanged() != null) { t1 = _this.get$_toggleable$_position(_this); t1.curve = C.C__Linear; t1.reverseCurve = null; t1 = details.primaryDelta; t1.toString; delta = t1 / (_this._widget.size._dx - 40); t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: t1 = _this.get$_toggleable$_positionController(); t1.set$value(0, t1.get$_animation_controller$_value() - delta); break; case C.TextDirection_1: t1 = _this.get$_toggleable$_positionController(); t1.set$value(0, t1.get$_animation_controller$_value() + delta); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }, _switch$_handleDragEnd$1: function(details) { var t2, t3, _this = this, t1 = _this.get$_toggleable$_position(_this); t1 = t1.get$value(t1); t2 = _this._widget; t3 = t2.value; if (t1 >= 0.5 !== t3) { t2.onChanged.call$1(!t3); _this.setState$1(new N._MaterialSwitchState__handleDragEnd_closure(_this)); } else _this.animateToValue$0(); _this.get$_toggleable$_reactionController().reverse$0(0); }, _switch$_handleChanged$1: function(value) { var t1 = this._widget.onChanged; t1.toString; value.toString; t1.call$1(value); }, build$1: function(_, context) { var theme, activeStates, inactiveStates, t1, effectiveActiveThumbColor, effectiveInactiveThumbColor, effectiveActiveTrackColor, effectiveInactiveTrackColor, focusedStates, effectiveFocusOverlayColor, hoveredStates, effectiveHoverOverlayColor, effectiveActivePressedOverlayColor, effectiveInactivePressedOverlayColor, t2, t3, t4, t5, t6, _this = this, _null = null; if (_this._needsPositionAnimation) { _this._needsPositionAnimation = false; _this.animateToValue$0(); } theme = K.Theme_of(context); activeStates = _this.get$states(); activeStates.add$1(0, C.MaterialState_4); inactiveStates = _this.get$states(); inactiveStates.remove$1(0, C.MaterialState_4); _this._widget.toString; t1 = _this.get$_widgetThumbColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = theme.switchTheme.thumbColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActiveThumbColor = t1; } else effectiveActiveThumbColor = t1; if (effectiveActiveThumbColor == null) effectiveActiveThumbColor = _this.get$_defaultThumbColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetThumbColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = theme.switchTheme.thumbColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactiveThumbColor = t1; } else effectiveInactiveThumbColor = t1; if (effectiveInactiveThumbColor == null) effectiveInactiveThumbColor = _this.get$_defaultThumbColor()._material_state$_resolve.call$1(inactiveStates); _this._widget.toString; t1 = _this.get$_widgetTrackColor()._material_state$_resolve.call$1(activeStates); if (t1 == null) { t1 = theme.switchTheme.trackColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActiveTrackColor = t1; } else effectiveActiveTrackColor = t1; if (effectiveActiveTrackColor == null) effectiveActiveTrackColor = _this.get$_defaultTrackColor()._material_state$_resolve.call$1(activeStates); _this._widget.toString; t1 = _this.get$_widgetTrackColor()._material_state$_resolve.call$1(inactiveStates); if (t1 == null) { t1 = theme.switchTheme.trackColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactiveTrackColor = t1; } else effectiveInactiveTrackColor = t1; if (effectiveInactiveTrackColor == null) effectiveInactiveTrackColor = _this.get$_defaultTrackColor()._material_state$_resolve.call$1(inactiveStates); focusedStates = _this.get$states(); focusedStates.add$1(0, C.MaterialState_1); _this._widget.toString; t1 = theme.switchTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(focusedStates); effectiveFocusOverlayColor = t1; if (effectiveFocusOverlayColor == null) effectiveFocusOverlayColor = theme.focusColor; hoveredStates = _this.get$states(); hoveredStates.add$1(0, C.MaterialState_0); _this._widget.toString; t1 = theme.switchTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(hoveredStates); effectiveHoverOverlayColor = t1; if (effectiveHoverOverlayColor == null) effectiveHoverOverlayColor = theme.hoverColor; activeStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = theme.switchTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(activeStates); effectiveActivePressedOverlayColor = t1; if (effectiveActivePressedOverlayColor == null) effectiveActivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 16 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 8 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) & 255); inactiveStates.add$1(0, C.MaterialState_2); _this._widget.toString; t1 = theme.switchTheme.overlayColor; t1 = t1 == null ? _null : t1.resolve$1(inactiveStates); effectiveInactivePressedOverlayColor = t1; if (effectiveInactivePressedOverlayColor == null) effectiveInactivePressedOverlayColor = P.Color$fromARGB(31, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 16 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) >>> 8 & 255, effectiveActiveThumbColor.get$value(effectiveActiveThumbColor) & 255); t1 = _this._widget; t2 = t1.value; t3 = t1.dragStartBehavior; t4 = t1.focusNode; t1 = t1.size; t5 = _this._switch$_painter; t5.set$position(0, _this.get$_toggleable$_position(_this)); t5.set$reaction(_this.get$_toggleable$_reaction()); t5.set$reactionFocusFade(_this.get$_reactionFocusFade()); t5.set$reactionHoverFade(_this.get$_reactionHoverFade()); t5.set$inactiveReactionColor(effectiveInactivePressedOverlayColor); t5.set$reactionColor(effectiveActivePressedOverlayColor); t5.set$hoverColor(effectiveHoverOverlayColor); t5.set$focusColor(effectiveFocusOverlayColor); _this._widget.toString; t6 = theme.switchTheme.splashRadius; t5.set$splashRadius(t6 == null ? 20 : t6); t5.set$downPosition(_this.ToggleableStateMixin__downPosition); t5.set$isFocused(_this.get$states().contains$1(0, C.MaterialState_1)); t5.set$isHovered(_this.get$states().contains$1(0, C.MaterialState_0)); t5.set$activeColor(effectiveActiveThumbColor); t5.set$inactiveColor(effectiveInactiveThumbColor); t5.set$activeThumbImage(_this._widget.activeThumbImage); t5.set$onActiveThumbImageError(_this._widget.onActiveThumbImageError); t5.set$inactiveThumbImage(_this._widget.inactiveThumbImage); t5.set$onInactiveThumbImageError(_this._widget.onInactiveThumbImageError); t5.set$activeTrackColor(effectiveActiveTrackColor); t5.set$inactiveTrackColor(effectiveInactiveTrackColor); t5.set$configuration(U.createLocalImageConfiguration(context, _null)); t5.set$isInteractive(_this.get$onChanged() != null); t5.set$trackInnerLength(_this._widget.size._dx - 40); t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t6.toString; t5.set$textDirection(0, t6.textDirection); t5.set$surfaceColor(theme.colorScheme.surface); t3 = D.GestureDetector$(_null, _this.buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size(false, t4, new V._MaterialStatePropertyWith(new N._MaterialSwitchState_build_closure(_this, theme), type$._MaterialStatePropertyWith_MouseCursor), t5, t1), t3, true, _null, _null, _null, _null, _this.get$_switch$_handleDragEnd(), _this.get$_switch$_handleDragStart(), _this.get$_switch$_handleDragUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null), false, false, false, t3, _null); } }; N._MaterialSwitchState__widgetThumbColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.$this._widget.inactiveThumbColor; if (states.contains$1(0, C.MaterialState_4)) return this.$this._widget.activeColor; return this.$this._widget.inactiveThumbColor; }, $signature: 205 }; N._MaterialSwitchState__defaultThumbColor_closure.prototype = { call$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_5)) { if (this.isDark) { t1 = C.Map_HFpTk.$index(0, 800); t1.toString; } else { t1 = C.Map_HFpTk.$index(0, 400); t1.toString; } return t1; } if (states.contains$1(0, C.MaterialState_4)) return this.theme.toggleableActiveColor; if (this.isDark) { t1 = C.Map_HFpTk.$index(0, 400); t1.toString; } else { t1 = C.Map_HFpTk.$index(0, 50); t1.toString; } return t1; }, $signature: 111 }; N._MaterialSwitchState__widgetTrackColor_closure.prototype = { call$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.$this._widget.inactiveTrackColor; if (states.contains$1(0, C.MaterialState_4)) return this.$this._widget.activeTrackColor; return this.$this._widget.inactiveTrackColor; }, $signature: 205 }; N._MaterialSwitchState__defaultTrackColor_closure.prototype = { call$1: function(states) { var t1, activeColor; if (states.contains$1(0, C.MaterialState_5)) return this.isDark ? C.Color_452984831 : C.Color_520093696; if (states.contains$1(0, C.MaterialState_4)) { states.add$1(0, C.MaterialState_4); t1 = this.$this; activeColor = t1.get$_widgetThumbColor()._material_state$_resolve.call$1(states); if (activeColor == null) activeColor = t1.get$_defaultThumbColor()._material_state$_resolve.call$1(states); return P.Color$fromARGB(128, activeColor.get$value(activeColor) >>> 16 & 255, activeColor.get$value(activeColor) >>> 8 & 255, activeColor.get$value(activeColor) & 255); } return this.isDark ? C.Color_1308622847 : C.Color_1375731712; }, $signature: 111 }; N._MaterialSwitchState__handleDragEnd_closure.prototype = { call$0: function() { this.$this._needsPositionAnimation = true; }, $signature: 0 }; N._MaterialSwitchState_build_closure.prototype = { call$1: function(states) { var t1 = V.MaterialStateProperty_resolveAs(this.$this._widget.mouseCursor, states, type$.nullable_MouseCursor); if (t1 == null) { this.theme.toString; t1 = null; } return t1 == null ? V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, $signature: 336 }; N._SwitchPainter.prototype = { set$activeThumbImage: function(value) { return; }, set$onActiveThumbImageError: function(value) { return; }, set$inactiveThumbImage: function(value) { return; }, set$onInactiveThumbImageError: function(value) { return; }, set$activeTrackColor: function(value) { if (J.$eq$(value, this._activeTrackColor)) return; this._activeTrackColor = value; this.notifyListeners$0(); }, set$inactiveTrackColor: function(value) { if (J.$eq$(value, this._inactiveTrackColor)) return; this._inactiveTrackColor = value; this.notifyListeners$0(); }, set$configuration: function(value) { if (value.$eq(0, this._switch$_configuration)) return; this._switch$_configuration = value; this.notifyListeners$0(); }, set$textDirection: function(_, value) { if (this._switch$_textDirection == value) return; this._switch$_textDirection = value; this.notifyListeners$0(); }, set$surfaceColor: function(value) { if (J.$eq$(value, this._surfaceColor)) return; this._surfaceColor = value; this.notifyListeners$0(); }, set$isInteractive: function(value) { if (value === this._isInteractive) return; this._isInteractive = value; this.notifyListeners$0(); }, set$trackInnerLength: function(value) { if (value === this._trackInnerLength) return; this._trackInnerLength = value; this.notifyListeners$0(); }, _handleDecorationChanged$0: function() { if (!this._isPainting) this.notifyListeners$0(); }, paint$2: function(canvas, size) { var currentValue, thumbColor, thumbImage, thumbErrorListener, thumbPosition, thumbPainter, inset, radius, t2, visualPosition, t3, t4, thumbImage0, thumbErrorListener0, paint, _this = this, _null = null, t1 = _this._isInteractive; t1.toString; t2 = _this._toggleable$_position; currentValue = t2.get$value(t2); t2 = _this._switch$_textDirection; t2.toString; switch (t2) { case C.TextDirection_0: visualPosition = 1 - currentValue; break; case C.TextDirection_1: visualPosition = currentValue; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = _this._inactiveTrackColor; t2.toString; t3 = _this._activeTrackColor; t3.toString; t3 = P.Color_lerp(t2, t3, currentValue); t3.toString; t2 = _this._inactiveColor; t2.toString; t4 = _this._activeColor; t4.toString; t4 = P.Color_lerp(t2, t4, currentValue); t4.toString; t2 = _this._surfaceColor; t2.toString; thumbColor = P.Color_alphaBlend(t4, t2); if (t1) thumbImage0 = currentValue < 0.5 ? _this._inactiveThumbImage : _this._activeThumbImage; else thumbImage0 = _this._inactiveThumbImage; thumbImage = thumbImage0; if (t1) thumbErrorListener0 = currentValue < 0.5 ? _this._onInactiveThumbImageError : _this._onActiveThumbImageError; else thumbErrorListener0 = _this._onInactiveThumbImageError; thumbErrorListener = thumbErrorListener0; t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, t3); t1 = size._dy; t2 = (t1 - 14) / 2; canvas.drawRRect$2(0, P.RRect$fromRectAndRadius(new P.Rect(13, t2, 13 + (size._dx - 26), t2 + 14), C.Radius_7_7), paint); t2 = _this._trackInnerLength; t2.toString; thumbPosition = new P.Offset(20 + visualPosition * t2, t1 / 2); _this.paintRadialReaction$2$canvas$origin(canvas, thumbPosition); try { _this._isPainting = true; if (_this._cachedThumbPainter == null || !J.$eq$(thumbColor, _this._cachedThumbColor) || !J.$eq$(thumbImage, _this._cachedThumbImage) || !J.$eq$(thumbErrorListener, _this._cachedThumbErrorListener)) { _this._cachedThumbColor = thumbColor; _this._cachedThumbImage = thumbImage; _this._cachedThumbErrorListener = thumbErrorListener; t1 = thumbImage; t1 = t1 == null ? _null : new X.DecorationImage(t1, thumbErrorListener); _this._cachedThumbPainter = new S._BoxDecorationPainter(new S.BoxDecoration(thumbColor, t1, _null, _null, C.Map_2VYR1.$index(0, 1), _null, C.BoxShape_1), _this.get$_handleDecorationChanged()); } t1 = _this._cachedThumbPainter; t1.toString; thumbPainter = t1; inset = 1 - Math.abs(currentValue - 0.5) * 2; radius = 10 - inset; t1 = J.$sub$n(thumbPosition, new P.Offset(radius, radius)); t2 = _this._switch$_configuration; t2.toString; t3 = radius * 2; thumbPainter.paint$3(canvas, t1, t2.copyWith$1$size(new P.Size(t3, t3))); } finally { _this._isPainting = false; } } }; N.__MaterialSwitchState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; N.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype = { initState$0: function() { var _this = this, _null = null; _this.super$State$initState(); _this.ToggleableStateMixin___ToggleableStateMixin__positionController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _this._widget.value === false ? 0 : 1, _this); _this.ToggleableStateMixin___ToggleableStateMixin__position = S.CurvedAnimation$(C.Cubic_JUR0, _this.get$_toggleable$_positionController(), C.Cubic_xDo0); _this.ToggleableStateMixin___ToggleableStateMixin__reactionController = G.AnimationController$(_null, C.Duration_100000, 0, _null, 1, _null, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reaction = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_toggleable$_reactionController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionHoverFadeController(), _null); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController = G.AnimationController$(_null, C.Duration_50000, 0, _null, 1, _this.ToggleableStateMixin__hovering || _this.ToggleableStateMixin__focused ? 1 : 0, _this); _this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_reactionFocusFadeController(), _null); }, dispose$0: function(_) { var _this = this; _this.get$_toggleable$_positionController().dispose$0(0); _this.get$_toggleable$_reactionController().dispose$0(0); _this.get$_reactionHoverFadeController().dispose$0(0); _this.get$_reactionFocusFadeController().dispose$0(0); _this.super$__MaterialSwitchState_State_TickerProviderStateMixin$dispose(0); } }; O._SwitchListTileType.prototype = { toString$0: function(_) { return this._switch_list_tile$_name; } }; O.SwitchListTile.prototype = { build$1: function(_, context) { var t1, t2, control, trailing, leading, t3, _this = this, _null = null, _s80_ = string$.x60null_c; switch (C._SwitchListTileType_0) { case C._SwitchListTileType_1: t1 = _this.onChanged; t2 = _this.activeColor; control = new N.Switch(_this.value, t1, t2, _null, _null, _null, _null, _null, C.MaterialTapTargetSize_1, C._SwitchType_1, false, _null); break; case C._SwitchListTileType_0: t1 = _this.onChanged; t2 = _this.activeColor; control = N.Switch$(t2, _null, _null, false, _null, _null, _null, C.MaterialTapTargetSize_1, t1, _this.value); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (C.ListTileControlAffinity_2) { case C.ListTileControlAffinity_0: trailing = _this.secondary; leading = control; break; case C.ListTileControlAffinity_1: case C.ListTileControlAffinity_2: leading = _this.secondary; trailing = control; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (t2 == null) t2 = K.Theme_of(context).toggleableActiveColor; t1 = t1 != null; t3 = t1 ? new O.SwitchListTile_build_closure(_this) : _null; return new T.MergeSemantics(Q.ListTileTheme_merge(Q.ListTile$(false, _null, _this.dense, t1, false, _null, leading, _null, t3, false, _null, _null, _this.subtitle, _null, _this.title, trailing), t2), _null); }, get$value: function(receiver) { return this.value; } }; O.SwitchListTile_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1.onChanged.call$1(!t1.value); }, $signature: 0 }; R.SwitchThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.thumbColor, _this.trackColor, _this.materialTapTargetSize, _this.mouseCursor, _this.overlayColor, _this.splashRadius, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof R.SwitchThemeData) if (other.thumbColor == _this.thumbColor) if (other.trackColor == _this.trackColor) t1 = other.overlayColor == _this.overlayColor && other.splashRadius == _this.splashRadius; else t1 = false; else t1 = false; else t1 = false; return t1; } }; R._LerpProperties.prototype = { resolve$1: function(states) { var resolvedB, _this = this, t1 = _this.a, resolvedA = t1 == null ? null : t1.resolve$1(states); t1 = _this.b; resolvedB = t1 == null ? null : t1.resolve$1(states); return _this.lerpFunction.call$3(resolvedA, resolvedB, _this.t); }, $isMaterialStateProperty: 1 }; R._SwitchThemeData_Object_Diagnosticable.prototype = {}; U.TabBarTheme.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.indicator, _this.indicatorSize, _this.labelColor, _this.labelPadding, _this.labelStyle, _this.unselectedLabelColor, _this.unselectedLabelStyle, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof U.TabBarTheme) if (J.$eq$(other.indicator, _this.indicator)) t1 = J.$eq$(other.labelColor, _this.labelColor) && J.$eq$(other.labelPadding, _this.labelPadding) && J.$eq$(other.labelStyle, _this.labelStyle) && J.$eq$(other.unselectedLabelColor, _this.unselectedLabelColor) && J.$eq$(other.unselectedLabelStyle, _this.unselectedLabelStyle); else t1 = false; else t1 = false; return t1; } }; U._TabBarTheme_Object_Diagnosticable.prototype = {}; U.TabController.prototype = { get$animation: function(_) { var t1 = this._tab_controller$_animationController; return t1 == null ? null : t1; }, _changeIndex$3$curve$duration: function(value, curve, duration) { var t2, _this = this, t1 = _this._tab_controller$_index; if (value === t1 || _this.length < 2) return; _this._previousIndex = t1; _this._tab_controller$_index = value; t1 = _this._indexIsChangingCount + 1; if (duration != null) { _this._indexIsChangingCount = t1; _this.notifyListeners$0(); t1 = _this._tab_controller$_animationController; t1.toString; t2 = _this._tab_controller$_index; curve.toString; t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(t2, curve, duration).whenCompleteOrCancel$1(new U.TabController__changeIndex_closure(_this)); } else { _this._indexIsChangingCount = t1; _this._tab_controller$_animationController.set$value(0, value); --_this._indexIsChangingCount; _this.notifyListeners$0(); } }, _changeIndex$1: function(value) { return this._changeIndex$3$curve$duration(value, null, null); }, animateTo$1: function(value) { this._changeIndex$3$curve$duration(value, C.Cubic_JUR, C.Duration_300000); }, set$offset: function(_, value) { var t1 = this._tab_controller$_animationController.get$_animation_controller$_value(), t2 = this._tab_controller$_index; if (value === t1 - t2) return; this._tab_controller$_animationController.set$value(0, value + t2); }, dispose$0: function(_) { var t1 = this._tab_controller$_animationController; if (t1 != null) t1.dispose$0(0); this._tab_controller$_animationController = null; this.super$ChangeNotifier$dispose(0); }, get$length: function(receiver) { return this.length; } }; U.TabController__changeIndex_closure.prototype = { call$0: function() { var t1 = this.$this; if (t1._tab_controller$_animationController != null) { --t1._indexIsChangingCount; t1.notifyListeners$0(); } }, $signature: 0 }; U._TabControllerScope.prototype = { updateShouldNotify$1: function(old) { return this.enabled !== old.enabled || this.controller != old.controller; } }; U.DefaultTabController.prototype = { createState$0: function() { return new U._DefaultTabControllerState(null, C._StateLifecycle_0); }, get$length: function(receiver) { return this.length; } }; U._DefaultTabControllerState.prototype = { get$_tab_controller$_controller: function() { var t1 = this.___DefaultTabControllerState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___DefaultTabControllerState__controller = U.TabController$(0, _this._widget.length, _this); }, dispose$0: function(_) { this.get$_tab_controller$_controller().dispose$0(0); this.super$__DefaultTabControllerState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { return new U._TabControllerScope(this.get$_tab_controller$_controller(), U.TickerMode_of(context), this._widget.child, null); }, didUpdateWidget$1: function(oldWidget) { var previousIndex, t1, t2, newIndex, t3, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.length !== _this._widget.length) { previousIndex = _this.get$_tab_controller$_controller()._previousIndex; t1 = _this.get$_tab_controller$_controller()._tab_controller$_index; t2 = _this._widget.length; if (t1 >= t2) { newIndex = Math.max(0, t2 - 1); previousIndex = _this.get$_tab_controller$_controller()._tab_controller$_index; } else newIndex = null; t1 = _this.get$_tab_controller$_controller(); t2 = _this._widget.length; t1.toString; t3 = newIndex == null ? t1._tab_controller$_index : newIndex; t1 = t1._tab_controller$_animationController; _this.___DefaultTabControllerState__controller = new U.TabController(t1, t2, t3, previousIndex, new P.LinkedList(type$.LinkedList__ListenerEntry)); } } }; U.__DefaultTabControllerState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; T.UnderlineTabIndicator.prototype = { lerpFrom$2: function(a, t) { var t1, t2; if (a instanceof T.UnderlineTabIndicator) { t1 = Y.BorderSide_lerp(a.borderSide, this.borderSide, t); t2 = V.EdgeInsetsGeometry_lerp(a.insets, this.insets, t); t2.toString; return new T.UnderlineTabIndicator(t1, t2); } return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2: function(b, t) { var t1, t2; if (b instanceof T.UnderlineTabIndicator) { t1 = Y.BorderSide_lerp(this.borderSide, b.borderSide, t); t2 = V.EdgeInsetsGeometry_lerp(this.insets, b.insets, t); t2.toString; return new T.UnderlineTabIndicator(t1, t2); } return this.super$Decoration$lerpTo(b, t); }, createBoxPainter$1: function(onChanged) { return new T._UnderlinePainter(this, onChanged); }, _indicatorRectFor$2: function(rect, textDirection) { var indicator = this.insets.resolve$1(textDirection).deflateRect$1(rect), t1 = indicator.left, t2 = this.borderSide.width, t3 = indicator.bottom - t2; return new P.Rect(t1, t3, t1 + (indicator.right - t1), t3 + t2); }, getClipPath$2: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRect$1(0, this._indicatorRectFor$2(rect, textDirection)); return t1; } }; T._UnderlinePainter.prototype = { paint$3: function(canvas, offset, configuration) { var t5, t6, t7, indicator, paint, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, t4 = t1._dx; t1 = t1._dy; t5 = configuration.textDirection; t5.toString; t6 = this.decoration; t7 = t6.borderSide; indicator = t6._indicatorRectFor$2(new P.Rect(t2, t3, t2 + t4, t3 + t1), t5).inflate$1(-(t7.width / 2)); paint = t7.toPaint$0(); paint.set$strokeCap(C.StrokeCap_2); t7 = indicator.bottom; canvas.drawLine$3(0, new P.Offset(indicator.left, t7), new P.Offset(indicator.right, t7), paint); } }; E.Tab.prototype = { _buildLabelText$0: function() { var _null = null, t1 = this.child; if (t1 == null) { t1 = this.text; t1.toString; t1 = L.Text$(t1, _null, _null, C.TextOverflow_1, _null, false, _null, _null, _null, _null); } return t1; }, build$1: function(_, context) { var label = this._buildLabelText$0(); return T.SizedBox$(T.Center$(label, null, 1), 46, null); }, text$0: function($receiver) { return this.text.call$0(); } }; E._TabStyle.prototype = { build$1: function(_, context) { var defaultStyle, defaultUnselectedStyle, textStyle, selectedColor, unselectedColor, color, _this = this, _null = null, themeData = K.Theme_of(context), tabBarTheme = K.Theme_of(context).tabBarTheme, animation = type$.Animation_double._as(_this.listenable), t1 = _this.labelStyle, t2 = tabBarTheme.labelStyle; if (t2 == null) { t2 = themeData.primaryTextTheme.bodyText1; t2.toString; } defaultStyle = t2.copyWith$1$inherit(true); t2 = tabBarTheme.unselectedLabelStyle; t1 = t2 == null ? t1 : t2; if (t1 == null) { t1 = themeData.primaryTextTheme.bodyText1; t1.toString; } defaultUnselectedStyle = t1.copyWith$1$inherit(true); t1 = _this.selected; if (t1) { t2 = A.TextStyle_lerp(defaultStyle, defaultUnselectedStyle, animation.get$value(animation)); t2.toString; textStyle = t2; } else { t2 = A.TextStyle_lerp(defaultUnselectedStyle, defaultStyle, animation.get$value(animation)); t2.toString; textStyle = t2; } selectedColor = tabBarTheme.labelColor; if (selectedColor == null) { t2 = themeData.primaryTextTheme.bodyText1.color; t2.toString; selectedColor = t2; } unselectedColor = tabBarTheme.unselectedLabelColor; if (unselectedColor == null) unselectedColor = P.Color$fromARGB(178, selectedColor.get$value(selectedColor) >>> 16 & 255, selectedColor.get$value(selectedColor) >>> 8 & 255, selectedColor.get$value(selectedColor) & 255); if (t1) { t1 = P.Color_lerp(selectedColor, unselectedColor, animation.get$value(animation)); t1.toString; color = t1; } else { t1 = P.Color_lerp(unselectedColor, selectedColor, animation.get$value(animation)); t1.toString; color = t1; } t1 = textStyle.copyWith$1$color(color); return L.DefaultTextStyle$(Y.IconTheme_merge(_this.child, new T.IconThemeData(color, _null, 24)), _null, _null, C.TextOverflow_0, true, t1, _null, _null, C.TextWidthBasis_0); } }; E._TabLabelBarRenderer.prototype = { performLayout$0: function() { var child, xOffsets, t1, t2, _this = this; _this.super$RenderFlex$performLayout(); child = _this.ContainerRenderObjectMixin__firstChild; xOffsets = H.setRuntimeTypeInfo([], type$.JSArray_double); for (t1 = type$.FlexParentData; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); xOffsets.push(t2.offset._dx); child = t2.ContainerParentDataMixin_nextSibling; } t1 = _this._flex$_textDirection; t1.toString; switch (t1) { case C.TextDirection_0: C.JSArray_methods.insert$2(xOffsets, 0, _this._box$_size._dx); break; case C.TextDirection_1: xOffsets.push(_this._box$_size._dx); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this._flex$_textDirection; t1.toString; t2 = _this._box$_size._dx; _this.onPerformLayout.call$3(xOffsets, t1, t2); } }; E._TabLabelBar.prototype = { createRenderObject$1: function(context) { var _this = this, _null = null, t1 = _this.getEffectiveTextDirection$1(context); t1.toString; t1 = new E._TabLabelBarRenderer(_this.onPerformLayout, _this.direction, _this.mainAxisAlignment, _this.mainAxisSize, _this.crossAxisAlignment, t1, _this.verticalDirection, _null, C.Clip_0, P.List_List$filled(4, U.TextPainter$(_null, _null, _null, _null, _null, C.TextAlign_4, C.TextDirection_1, _null, 1, C.TextWidthBasis_0), false, type$.TextPainter), true, 0, _null, _null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, _null); return t1; }, updateRenderObject$2: function(context, renderObject) { this.super$Flex$updateRenderObject(context, renderObject); renderObject.onPerformLayout = this.onPerformLayout; } }; E._IndicatorPainter.prototype = { markNeedsPaint$0: function() { this._tabs$_needsPaint = true; }, dispose$0: function(_) { var t1 = this._tabs$_painter; if (t1 != null) t1.dispose$0(0); }, indicatorRect$2: function(tabBarSize, tabIndex) { var tabLeft, tabRight, insets, t2, rect, _this = this, t1 = _this._currentTextDirection; t1.toString; switch (t1) { case C.TextDirection_0: t1 = _this._currentTabOffsets; tabLeft = t1[tabIndex + 1]; tabRight = t1[tabIndex]; break; case C.TextDirection_1: t1 = _this._currentTabOffsets; tabLeft = t1[tabIndex]; tabRight = t1[tabIndex + 1]; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } insets = _this.indicatorPadding; t1 = tabLeft + (tabRight - tabLeft); t2 = 0 + tabBarSize._dy; rect = new P.Rect(tabLeft, 0, t1, t2); if (!new P.Size(t1 - tabLeft, t2 - 0).$ge(0, new P.Size(insets.get$horizontal(), insets.get$_top(insets) + insets.get$_bottom(insets)))) throw H.wrapException(U.FlutterError_FlutterError("indicatorPadding insets should be less than Tab Size\nRect Size : " + rect.get$size(rect).toString$0(0) + ", Insets: " + insets.toString$0(0))); return insets.deflateRect$1(rect); }, paint$2: function(canvas, size) { var t1, index, value, ltr, from, to, t2, t3, t4, t5, _this = this, _null = null; _this._tabs$_needsPaint = false; if (_this._tabs$_painter == null) _this._tabs$_painter = _this.indicator.createBoxPainter$1(_this.get$markNeedsPaint()); t1 = _this.controller; index = t1._tab_controller$_index; value = t1.get$animation(t1).get$_animation_controller$_value(); ltr = index > value; t1 = ltr ? C.JSNumber_methods.floor$0(value) : C.JSNumber_methods.ceil$0(value); from = C.JSNumber_methods.toInt$0(C.JSInt_methods.clamp$2(t1, 0, _this._currentTabOffsets.length - 2)); t1 = ltr ? from + 1 : from - 1; to = C.JSNumber_methods.toInt$0(C.JSInt_methods.clamp$2(t1, 0, _this._currentTabOffsets.length - 2)); t1 = _this._currentRect = P.Rect_lerp(_this.indicatorRect$2(size, from), _this.indicatorRect$2(size, to), Math.abs(value - from)); t2 = t1.right; t3 = t1.left; t4 = t1.bottom; t1 = t1.top; t5 = _this._currentTextDirection; _this._tabs$_painter.paint$3(canvas, new P.Offset(t3, t1), new M.ImageConfiguration(_null, _null, _null, t5, new P.Size(t2 - t3, t4 - t1), _null)); }, shouldRepaint$1: function(old) { var _this = this; return _this._tabs$_needsPaint || _this.controller != old.controller || !J.$eq$(_this.indicator, old.indicator) || J.get$length$asx(_this.tabKeys) != J.get$length$asx(old.tabKeys) || !S.listEquals(_this._currentTabOffsets, old._currentTabOffsets) || _this._currentTextDirection != old._currentTextDirection; } }; E._ChangeAnimation.prototype = { get$parent: function(_) { var t1 = this.controller; t1 = t1.get$animation(t1); t1.toString; return t1; }, removeStatusListener$1: function(listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeStatusListener(listener); }, removeListener$1: function(_, listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeListener(0, listener); }, get$value: function(_) { return E._indexChangeProgress(this.controller); } }; E._DragAnimation.prototype = { get$parent: function(_) { var t1 = this.controller; t1 = t1.get$animation(t1); t1.toString; return t1; }, removeStatusListener$1: function(listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeStatusListener(listener); }, removeListener$1: function(_, listener) { var t1 = this.controller; if (t1.get$animation(t1) != null) this.super$AnimationWithParentMixin$removeListener(0, listener); }, get$value: function(_) { var t1 = this.controller, t2 = t1.length, controllerValue = J.clamp$2$n(t1.get$animation(t1).get$_animation_controller$_value(), 0, t2 - 1); t2 = this.index; t2.toString; return C.JSNumber_methods.clamp$2(Math.abs(controllerValue - t2), 0, 1); } }; E._TabBarScrollPosition.prototype = { applyContentDimensions$2: function(minScrollExtent, maxScrollExtent) { var t1, t2, t3, result, _this = this; if (_this._initialViewportDimensionWasZero !== true) { t1 = _this._viewportDimension; t1.toString; _this._initialViewportDimensionWasZero = t1 !== 0; t2 = _this.tabBar; t3 = t2._currentIndex; t3.toString; _this._pixels = t2._tabScrollOffset$4(t3, t1, minScrollExtent, maxScrollExtent); result = false; } else result = true; return _this.super$ScrollPosition$applyContentDimensions(minScrollExtent, maxScrollExtent) && result; } }; E._TabBarScrollController.prototype = { createScrollPosition$3: function(physics, context, oldPosition) { var _null = null, t1 = type$.LinkedList__ListenerEntry; t1 = new E._TabBarScrollPosition(this.tabBar, C.ScrollDirection_0, physics, context, true, _null, new B.ValueNotifier(false, new P.LinkedList(t1), type$.ValueNotifier_bool), new P.LinkedList(t1)); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, _null, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, _null, _null, true, oldPosition, physics); return t1; } }; E.TabBar.prototype = { get$preferredSize: function() { var t1, _i; for (t1 = this.tabs.length, _i = 0; _i < t1; ++_i) ; return new P.Size(1 / 0, 48); }, createState$0: function() { return new E._TabBarState(C._StateLifecycle_0); } }; E._TabBarState.prototype = { get$_tabKeys: function() { var t1 = this.___TabBarState__tabKeys; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_tabKeys")) : t1; }, initState$0: function() { var t1, t2; this.super$State$initState(); t1 = this._widget.tabs; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GlobalKey>>"); this.___TabBarState__tabKeys = P.List_List$of(new H.MappedListIterable(t1, new E._TabBarState_initState_closure(), t2), true, t2._eval$1("ListIterable.E")); }, get$_indicator: function() { var t1, color, t2, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = K.Theme_of(t1).tabBarTheme.indicator; if (t1 != null) return t1; color = _this._widget.indicatorColor; if (color == null) { t1 = _this._framework$_element; t1.toString; color = K.Theme_of(t1).indicatorColor; } _this._widget.toString; t1 = color.value; t2 = _this._framework$_element.findAncestorRenderObjectOfType$1$0(type$._RenderInkFeatures); if (t2 == null) t2 = null; else { t2 = t2.color; t2 = t2 == null ? null : t2.get$value(t2); } t2 = t1 === t2; t1 = t2; if (t1) color = C.Color_4294967295; _this._widget.toString; return new T.UnderlineTabIndicator(new Y.BorderSide(color, 2, C.BorderStyle_1), C.EdgeInsets_0_0_0_0); }, get$_controllerIsValid: function() { var t1 = this._tabs$_controller; return (t1 == null ? null : t1.get$animation(t1)) != null; }, _updateTabController$0: function() { var t1, _this = this, newController = _this._widget.controller; if (newController == null) { t1 = _this._framework$_element; t1.toString; newController = U.DefaultTabController_of(t1); } if (newController == _this._tabs$_controller) return; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); _this._tabs$_controller.removeListener$1(0, _this.get$_handleTabControllerTick()); } _this._tabs$_controller = newController; if (newController != null) { t1 = newController.get$animation(newController); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_handleTabControllerAnimationTick()); t1 = _this._tabs$_controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleTabControllerTick()), false); _this._currentIndex = _this._tabs$_controller._tab_controller$_index; } }, _initIndicatorPainter$0: function() { var t1, t2, t3, t4, t5, _this = this; if (!_this.get$_controllerIsValid()) t1 = null; else { t1 = _this._tabs$_controller; t1.toString; t2 = _this.get$_indicator(); _this._widget.toString; t3 = _this._framework$_element; t3.toString; t3 = K.Theme_of(t3).tabBarTheme.indicatorSize; _this._widget.toString; t4 = _this.get$_tabKeys(); t5 = _this._indicatorPainter; t1 = new E._IndicatorPainter(t1, t2, t3, C.EdgeInsets_0_0_0_0, t4, t1.get$animation(t1)); if (t5 != null) { t2 = t5._currentTabOffsets; t5 = t5._currentTextDirection; t1._currentTabOffsets = t2; t1._currentTextDirection = t5; } } _this._indicatorPainter = t1; }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this._updateTabController$0(); this._initIndicatorPainter$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, delta, _list, n, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; if (t1.controller != oldWidget.controller) { _this._updateTabController$0(); _this._initIndicatorPainter$0(); } else { if (J.$eq$(t1.indicatorColor, oldWidget.indicatorColor)) { _this._widget.toString; t1 = false; } else t1 = true; if (t1) _this._initIndicatorPainter$0(); } t1 = _this._widget.tabs.length; t2 = oldWidget.tabs; t3 = t2.length; if (t1 > t3) { delta = t1 - t3; t1 = _this.get$_tabKeys(); _list = J.JSArray_JSArray$allocateGrowable(delta, type$.GlobalKey_State_StatefulWidget); for (t2 = type$.LabeledGlobalKey_State_StatefulWidget, n = 0; n < delta; ++n) _list[n] = new N.LabeledGlobalKey(null, t2); J.addAll$1$ax(t1, _list); } else if (t1 < t3) J.removeRange$2$ax(_this.get$_tabKeys(), _this._widget.tabs.length, t2.length); }, dispose$0: function(_) { var t1, _this = this; _this._indicatorPainter.dispose$0(0); if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); _this._tabs$_controller.removeListener$1(0, _this.get$_handleTabControllerTick()); } _this._tabs$_controller = null; _this.super$State$dispose(0); }, _tabScrollOffset$4: function(index, viewportWidth, minExtent, maxExtent) { var t1, tabCenter, _this = this; if (!_this._widget.isScrollable) return 0; t1 = _this._indicatorPainter._currentTabOffsets; tabCenter = (t1[index] + t1[index + 1]) / 2; t1 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; switch (t1.textDirection) { case C.TextDirection_0: t1 = _this.___TabBarState__tabStripWidth; tabCenter = (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_tabStripWidth")) : t1) - tabCenter; break; case C.TextDirection_1: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return C.JSNumber_methods.clamp$2(tabCenter - viewportWidth / 2, minExtent, maxExtent); }, _tabCenteredScrollOffset$1: function(index) { var t2, t3, position = C.JSArray_methods.get$single(this._tabs$_scrollController._positions), t1 = position._viewportDimension; t1.toString; t2 = position._minScrollExtent; t2.toString; t3 = position._maxScrollExtent; t3.toString; return this._tabScrollOffset$4(index, t1, t2, t3); }, _handleTabControllerAnimationTick$0: function() { var leadingPosition, middlePosition, trailingPosition, index, value, offset, _this = this, t1 = _this._tabs$_controller; if (t1._indexIsChangingCount === 0 && _this._widget.isScrollable) { t1 = _this._currentIndex = t1._tab_controller$_index; leadingPosition = t1 > 0 ? _this._tabCenteredScrollOffset$1(t1 - 1) : null; t1 = _this._currentIndex; t1.toString; middlePosition = _this._tabCenteredScrollOffset$1(t1); t1 = _this._currentIndex; t1.toString; trailingPosition = t1 < _this._indicatorPainter._currentTabOffsets.length - 2 ? _this._tabCenteredScrollOffset$1(t1 + 1) : null; t1 = _this._tabs$_controller; index = t1._tab_controller$_index; value = t1.get$animation(t1).get$_animation_controller$_value(); if (value === index - 1) offset = leadingPosition == null ? middlePosition : leadingPosition; else if (value === index + 1) offset = trailingPosition == null ? middlePosition : trailingPosition; else if (value === index) offset = middlePosition; else if (value < index) if (leadingPosition == null) offset = middlePosition; else { t1 = P.lerpDouble(middlePosition, leadingPosition, index - value); t1.toString; offset = t1; } else if (trailingPosition == null) offset = middlePosition; else { t1 = P.lerpDouble(middlePosition, trailingPosition, value - index); t1.toString; offset = t1; } _this._tabs$_scrollController.jumpTo$1(offset); } }, _handleTabControllerTick$0: function() { var offset, _this = this, t1 = _this._tabs$_controller._tab_controller$_index; if (t1 !== _this._currentIndex) { _this._currentIndex = t1; if (_this._widget.isScrollable) { offset = _this._tabCenteredScrollOffset$1(t1); _this._tabs$_scrollController.animateTo$3$curve$duration(offset, C.Cubic_JUR, C.Duration_300000); } } _this.setState$1(new E._TabBarState__handleTabControllerTick_closure()); }, _saveTabOffsets$3: function(tabOffsets, textDirection, width) { var t1; this.___TabBarState__tabStripWidth = width; t1 = this._indicatorPainter; if (t1 != null) { t1._currentTabOffsets = tabOffsets; t1._currentTextDirection = textDirection; } }, _buildStyledTab$3: function(child, selected, animation) { var _null = null; this._widget.toString; return E._TabStyle$(animation, child, _null, _null, selected, _null, _null); }, build$1: function(_, context) { var tabBarTheme, t2, t3, t4, t5, i, t6, t7, previousIndex, animation, tabIndex, tabCount, index, index0, tabBar, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; if (_this._tabs$_controller.length === 0) { _this._widget.toString; return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, 48, _null, _null, _null, _null, _null, _null); } tabBarTheme = K.Theme_of(context).tabBarTheme; t2 = type$.JSArray_Widget; t3 = H.setRuntimeTypeInfo([], t2); for (t4 = tabBarTheme.labelPadding, t5 = t4 == null, i = 0; i < _this._widget.tabs.length; ++i) { t6 = t5 ? C.EdgeInsets_16_0_16_0 : t4; t7 = _this.___TabBarState__tabKeys; t7 = J.$index$asx(t7 === $ ? H.throwExpression(H.LateError$fieldNI("_tabKeys")) : t7, i); t3.push(new T.Center(C.Alignment_0_0, _null, 1, new T.Padding(t6, new T.KeyedSubtree(_this._widget.tabs[i], t7), _null), _null)); } t4 = _this._tabs$_controller; if (t4 != null) { previousIndex = t4._previousIndex; t5 = t4._indexIsChangingCount; t6 = _this._currentIndex; if (t5 !== 0) { animation = new E._ChangeAnimation(t4); t6.toString; t3[t6] = _this._buildStyledTab$3(t3[t6], true, animation); t3[previousIndex] = _this._buildStyledTab$3(t3[previousIndex], false, animation); } else { t6.toString; t3[t6] = _this._buildStyledTab$3(t3[t6], true, new E._DragAnimation(t4, t6)); t4 = _this._currentIndex; t4.toString; if (t4 > 0) { tabIndex = t4 - 1; t4 = _this._tabs$_controller; t4.toString; t5 = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus); t3[tabIndex] = _this._buildStyledTab$3(t3[tabIndex], false, new S.ReverseAnimation(new E._DragAnimation(t4, tabIndex), new R.ObserverList(t5, type$.ObserverList_of_void_Function_AnimationStatus), 0)); } t4 = _this._currentIndex; t4.toString; if (t4 < _this._widget.tabs.length - 1) { tabIndex = t4 + 1; t4 = _this._tabs$_controller; t4.toString; t5 = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus); t3[tabIndex] = _this._buildStyledTab$3(t3[tabIndex], false, new S.ReverseAnimation(new E._DragAnimation(t4, tabIndex), new R.ObserverList(t5, type$.ObserverList_of_void_Function_AnimationStatus), 0)); } } } t4 = _this._widget; tabCount = t4.tabs.length; for (index = 0; index < tabCount; t4 = t5, index = index0) { t4 = t3[index]; t5 = _this._currentIndex; index0 = index + 1; t6 = t1.tabLabel$2$tabCount$tabIndex(tabCount, index0); t4 = R.InkWell$(false, _null, true, new T.Padding(new V.EdgeInsets(0, 0, 0, 2), new T.Stack(C.AlignmentDirectional_m1_m1, _null, C.StackFit_0, C.Clip_1, H.setRuntimeTypeInfo([t4, new T.Semantics(new A.SemanticsProperties(_null, _null, _null, index === t5, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6, _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), false, false, false, _null, _null)], t2), _null), _null), _null, true, _null, _null, _null, _null, _null, C.SystemMouseCursor_click, _null, _null, _null, _null, _null, new E._TabBarState_build_closure(_this, index), _null, _null, _null, _null, _null); t3[index] = t4; t5 = _this._widget; if (!t5.isScrollable) t3[index] = new T.Expanded(1, C.FlexFit_0, t4, _null); } t1 = _this._indicatorPainter; tabBar = T.CustomPaint$(E._TabStyle$(C.C__AlwaysDismissedAnimation, new E._TabLabelBar(_this.get$_saveTabOffsets(), C.Axis_0, C.MainAxisAlignment_0, C.MainAxisSize_1, C.CrossAxisAlignment_2, _null, C.VerticalDirection_1, _null, t3, _null), _null, _null, false, _null, _null), _null, _null, t1, C.Size_0_0); if (t4.isScrollable) { t1 = _this._tabs$_scrollController; if (t1 == null) t1 = _this._tabs$_scrollController = new E._TabBarScrollController(_this, 0, _null, H.setRuntimeTypeInfo([], type$.JSArray_ScrollPosition), new P.LinkedList(type$.LinkedList__ListenerEntry)); _this._widget.toString; tabBar = E.SingleChildScrollView$(tabBar, t1, C.DragStartBehavior_1, _null, _null, false, C.Axis_0); } return tabBar; } }; E._TabBarState_initState_closure.prototype = { call$1: function(tab) { return new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget); }, $signature: 2158 }; E._TabBarState__handleTabControllerTick_closure.prototype = { call$0: function() { }, $signature: 0 }; E._TabBarState_build_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.index; t1._tabs$_controller.animateTo$1(t2); t1 = t1._widget.onTap; if (t1 != null) t1.call$1(t2); }, $signature: 0 }; E.TabBarView.prototype = { createState$0: function() { return new E._TabBarViewState(C._StateLifecycle_0); } }; E._TabBarViewState.prototype = { get$_tabs$_pageController: function() { var t1 = this.___TabBarViewState__pageController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pageController")) : t1; }, get$_childrenWithKey: function() { var t1 = this.___TabBarViewState__childrenWithKey; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_childrenWithKey")) : t1; }, get$_controllerIsValid: function() { var t1 = this._tabs$_controller; return (t1 == null ? null : t1.get$animation(t1)) != null; }, _updateTabController$0: function() { var t1, _this = this, newController = _this._widget.controller; if (newController == null) { t1 = _this._framework$_element; t1.toString; newController = U.DefaultTabController_of(t1); } if (newController == _this._tabs$_controller) return; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); } _this._tabs$_controller = newController; if (newController != null) { t1 = newController.get$animation(newController); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_handleTabControllerAnimationTick()); } }, initState$0: function() { this.super$State$initState(); this._updateChildren$0(); }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); _this._updateTabController$0(); t1 = _this._tabs$_controller; t1 = t1 == null ? null : t1._tab_controller$_index; _this._currentIndex = t1; _this.___TabBarViewState__pageController = D.PageController$(t1 == null ? 0 : t1, 1); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.controller != oldWidget.controller) _this._updateTabController$0(); if (_this._widget.children !== oldWidget.children && _this._warpUnderwayCount === 0) _this._updateChildren$0(); }, dispose$0: function(_) { var t1, _this = this; if (_this.get$_controllerIsValid()) { t1 = _this._tabs$_controller; t1.get$animation(t1).removeListener$1(0, _this.get$_handleTabControllerAnimationTick()); } _this._tabs$_controller = null; _this.super$State$dispose(0); }, _updateChildren$0: function() { var t1 = this._widget.children; this.___TabBarViewState__children = t1; this.___TabBarViewState__childrenWithKey = T.KeyedSubtree_ensureUniqueKeysForList(t1); }, _handleTabControllerAnimationTick$0: function() { var t1, _this = this; if (_this._warpUnderwayCount > 0 || _this._tabs$_controller._indexIsChangingCount === 0) return; t1 = _this._tabs$_controller._tab_controller$_index; if (t1 !== _this._currentIndex) { _this._currentIndex = t1; _this._warpToCurrentIndex$0(); } }, _warpToCurrentIndex$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, position, t1, t2, previousIndex, initialPage, originalChildren; var $async$_warpToCurrentIndex$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._framework$_element == null) { $async$returnValue = P.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } position = type$._PagePosition._as(C.JSArray_methods.get$single($async$self.get$_tabs$_pageController()._positions)); t1 = position.get$page(position); t2 = $async$self._currentIndex; t2.toString; if (t1 === t2) { $async$returnValue = P.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } previousIndex = $async$self._tabs$_controller._previousIndex; $async$goto = Math.abs(t2 - previousIndex) === 1 ? 3 : 4; break; case 3: // then ++$async$self._warpUnderwayCount; t1 = $async$self.get$_tabs$_pageController(); t2 = $async$self._currentIndex; t2.toString; $async$goto = 5; return P._asyncAwait(t1.animateToPage$3$curve$duration(t2, C.Cubic_JUR, C.Duration_300000), $async$_warpToCurrentIndex$0); case 5: // returning from await. --$async$self._warpUnderwayCount; $async$returnValue = P.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; case 4: // join initialPage = t2 > previousIndex ? t2 - 1 : t2 + 1; originalChildren = $async$self.get$_childrenWithKey(); $async$self.setState$1(new E._TabBarViewState__warpToCurrentIndex_closure($async$self, initialPage, previousIndex)); $async$self.get$_tabs$_pageController().jumpToPage$1(initialPage); t1 = $async$self.get$_tabs$_pageController(); t2 = $async$self._currentIndex; t2.toString; $async$goto = 6; return P._asyncAwait(t1.animateToPage$3$curve$duration(t2, C.Cubic_JUR, C.Duration_300000), $async$_warpToCurrentIndex$0); case 6: // returning from await. if ($async$self._framework$_element == null) { $async$returnValue = P.Future_Future$value(null, type$.void); // goto return $async$goto = 1; break; } $async$self.setState$1(new E._TabBarViewState__warpToCurrentIndex_closure0($async$self, originalChildren)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_warpToCurrentIndex$0, $async$completer); }, _tabs$_handleScrollNotification$1: function(notification) { var position, t2, t3, _this = this, t1 = _this._warpUnderwayCount; if (t1 > 0) return false; if (notification.ViewportNotificationMixin__depth !== 0) return false; _this._warpUnderwayCount = t1 + 1; if (notification instanceof G.ScrollUpdateNotification && _this._tabs$_controller._indexIsChangingCount === 0) { t1 = type$._PagePosition; position = t1._as(C.JSArray_methods.get$single(_this.get$_tabs$_pageController()._positions)); t2 = position.get$page(position); t2.toString; t3 = _this._tabs$_controller; if (Math.abs(t2 - t3._tab_controller$_index) > 1) { position = t1._as(C.JSArray_methods.get$single(_this.get$_tabs$_pageController()._positions)); t2 = position.get$page(position); t2.toString; t3._changeIndex$1(C.JSNumber_methods.floor$0(t2)); t2 = _this._tabs$_controller; _this._currentIndex = t2._tab_controller$_index; } else t2 = t3; position = t1._as(C.JSArray_methods.get$single(_this.get$_tabs$_pageController()._positions)); t1 = position.get$page(position); t1.toString; t2.set$offset(0, C.JSNumber_methods.clamp$2(t1 - _this._tabs$_controller._tab_controller$_index, -1, 1)); } else if (notification instanceof G.ScrollEndNotification) { t1 = _this._tabs$_controller; t1.toString; t2 = type$._PagePosition; position = t2._as(C.JSArray_methods.get$single(_this.get$_tabs$_pageController()._positions)); t3 = position.get$page(position); t3.toString; t1._changeIndex$1(C.JSNumber_methods.round$0(t3)); t3 = _this._tabs$_controller; _this._currentIndex = t3._tab_controller$_index; if (t3._indexIsChangingCount === 0) { position = t2._as(C.JSArray_methods.get$single(_this.get$_tabs$_pageController()._positions)); t1 = position.get$page(position); t1.toString; t3.set$offset(0, C.JSNumber_methods.clamp$2(t1 - _this._tabs$_controller._tab_controller$_index, -1, 1)); } } --_this._warpUnderwayCount; return false; }, build$1: function(_, context) { var t1, t2, t3, _this = this; _this._widget.toString; t1 = _this.get$_tabs$_pageController(); _this._widget.toString; t2 = C.PageScrollPhysics_null.buildParent$1(C.ClampingScrollPhysics_null); t3 = _this.get$_childrenWithKey(); if (t1 == null) t1 = $.$get$_defaultPageController(); return new U.NotificationListener(new D.PageView(C.Axis_0, false, t1, new D.PageScrollPhysics(t2), null, G.SliverChildListDelegate$(t3, true, true, true), C.DragStartBehavior_1, null), _this.get$_tabs$_handleScrollNotification(), null, type$.NotificationListener_ScrollNotification); } }; E._TabBarViewState__warpToCurrentIndex_closure.prototype = { call$0: function() { var t2, temp, t3, t1 = this.$this; ++t1._warpUnderwayCount; t1.___TabBarViewState__childrenWithKey = P.List_List$from(t1.get$_childrenWithKey(), false, type$.Widget); t2 = this.initialPage; temp = J.$index$asx(t1.get$_childrenWithKey(), t2); t3 = this.previousIndex; J.$indexSet$ax(t1.get$_childrenWithKey(), t2, J.$index$asx(t1.get$_childrenWithKey(), t3)); J.$indexSet$ax(t1.get$_childrenWithKey(), t3, temp); }, $signature: 0 }; E._TabBarViewState__warpToCurrentIndex_closure0.prototype = { call$0: function() { var t2, t3, t1 = this.$this; --t1._warpUnderwayCount; t2 = t1._widget.children; t3 = t1.___TabBarViewState__children; if (t2 !== (t3 === $ ? H.throwExpression(H.LateError$fieldNI("_children")) : t3)) t1._updateChildren$0(); else t1.___TabBarViewState__childrenWithKey = this.originalChildren; }, $signature: 0 }; E.__ChangeAnimation_Animation_AnimationWithParentMixin.prototype = {}; E.__DragAnimation_Animation_AnimationWithParentMixin.prototype = {}; U.TextButton.prototype = { defaultStyleOf$1: function(context) { var scaledPadding, t2, t3, theme = K.Theme_of(context), colorScheme = theme.colorScheme, t1 = F.MediaQuery_maybeOf(context); t1 = t1 == null ? null : t1.textScaleFactor; scaledPadding = K.ButtonStyleButton_scaledPadding(C.EdgeInsets_8_8_8_8, C.EdgeInsets_8_0_8_0, C.EdgeInsets_4_0_4_0, t1 == null ? 1 : t1); t1 = theme.shadowColor; t2 = theme.textTheme; t3 = theme.visualDensity; return U.TextButton_styleFrom(C.Alignment_0_0, C.Duration_200000, C.Color_0, C.SystemMouseCursor_forbidden, 0, true, C.SystemMouseCursor_click, C.Size_64_36, colorScheme.onSurface, scaledPadding, colorScheme.primary, t1, C.RoundedRectangleBorder_a510, null, C.C__InkRippleFactory, theme.materialTapTargetSize, t2.button, t3); }, themeStyleOf$1: function(context) { var t1; context.dependOnInheritedWidgetOfExactType$1$0(type$.TextButtonTheme); t1 = K.Theme_of(context); return t1.textButtonTheme.style; } }; U._TextButtonDefaultForeground.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_5)) { t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; } return this.primary; }, toString$0: function(_) { var t1 = this.onSurface; if (t1 == null) t1 = null; else { t1 = t1.value; t1 = P.Color$fromARGB(97, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return "{disabled: " + H.S(t1) + ", otherwise: " + H.S(this.primary) + "}"; } }; U._TextButtonDefaultOverlay.prototype = { resolve$1: function(states) { var t1; if (states.contains$1(0, C.MaterialState_0)) { t1 = this.primary; return P.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } if (states.contains$1(0, C.MaterialState_1) || states.contains$1(0, C.MaterialState_2)) { t1 = this.primary; return P.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } return null; }, toString$0: function(_) { var t1 = this.primary; return "{hovered: " + P.Color$fromARGB(10, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255).toString$0(0) + ", focused,pressed: " + P.Color$fromARGB(31, t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255).toString$0(0) + ", otherwise: null}"; } }; U._TextButtonDefaultMouseCursor.prototype = { resolve$1: function(states) { if (states.contains$1(0, C.MaterialState_5)) return this.disabledCursor; return this.enabledCursor; } }; U.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; T.TextButtonThemeData.prototype = { get$hashCode: function(_) { return J.get$hashCode$(this.style); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof T.TextButtonThemeData && J.$eq$(other.style, this.style); } }; T._TextButtonThemeData_Object_Diagnosticable.prototype = {}; Z._TextFieldSelectionGestureDetectorBuilder.prototype = { onForcePressStart$1: function(details) { var t1, t2; this.super$TextSelectionGestureDetectorBuilder$onForcePressStart(details); t1 = this.delegate; t1.get$selectionEnabled(); t2 = this._shouldShowSelectionToolbar; if (t2) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onForcePressEnd$1: function(details) { }, onSingleLongTapMoveUpdate$1: function(details) { var t2, t1 = this.delegate; t1.get$selectionEnabled(); t2 = this._text_field$_state._framework$_element; t2.toString; switch (K.Theme_of(t2).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(C.SelectionChangedCause_2, details.globalPosition); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t2 = details.globalPosition; type$.RenderEditable._as(t1).selectWordsInRange$3$cause$from$to(C.SelectionChangedCause_2, t2.$sub(0, details.offsetFromOrigin), t2); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, onSingleTapUp$1: function(details) { var _s80_ = string$.x60null_c, t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2.hideToolbar$0(); t1.get$selectionEnabled(); t2 = this._text_field$_state._framework$_element; t2.toString; switch (K.Theme_of(t2).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: switch (details.kind) { case C.PointerDeviceKind_1: case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(C.SelectionChangedCause_0, t2); break; case C.PointerDeviceKind_0: case C.PointerDeviceKind_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordEdge$1$cause(C.SelectionChangedCause_0); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = t1._lastTapDownPosition; t2.toString; t1.selectPositionAt$2$cause$from(C.SelectionChangedCause_0, t2); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = this._text_field$_state; t1._requestKeyboard$0(); t1._widget.toString; }, onSingleLongTapStart$1: function(details) { var t2, t3, t1 = this.delegate; t1.get$selectionEnabled(); t2 = this._text_field$_state; t3 = t2._framework$_element; t3.toString; switch (K.Theme_of(t3).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(C.SelectionChangedCause_2, details.globalPosition); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t3 = t1._lastTapDownPosition; t3.toString; t1.selectWordsInRange$2$cause$from(C.SelectionChangedCause_2, t3); t2 = t2._framework$_element; t2.toString; M.Feedback_forLongPress(t2); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; Z.TextField.prototype = { createState$0: function() { var _null = null; return new Z._TextFieldState(new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_EditableTextState), _null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, C._StateLifecycle_0); } }; Z._TextFieldState.prototype = { get$_text_field$_effectiveController: function() { var t1 = this._widget.controller; if (t1 == null) { t1 = this._text_field$_controller._restoration_properties$_value; t1.toString; } return t1; }, get$_effectiveFocusNode: function() { var t1 = this._widget.focusNode; if (t1 == null) { t1 = this._text_field$_focusNode; if (t1 == null) { t1 = O.FocusNode$(true, null, true, null, false); this._text_field$_focusNode = t1; } } return t1; }, get$_effectiveMaxLengthEnforcement: function() { var t1 = this._widget.maxLengthEnforcement; if (t1 == null) { t1 = this._framework$_element; t1.toString; t1 = B.LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement(K.Theme_of(t1).platform); } return t1; }, get$_selectionGestureDetectorBuilder: function() { var t1 = this.___TextFieldState__selectionGestureDetectorBuilder; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_selectionGestureDetectorBuilder")) : t1; }, get$forcePressEnabled: function() { var t1 = this.___TextFieldState_forcePressEnabled; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("forcePressEnabled")) : t1; }, get$selectionEnabled: function() { this._widget.toString; return true; }, get$_isEnabled: function() { var t1 = this._widget, t2 = t1.enabled; if (t2 == null) t1 = t1.decoration.enabled; else t1 = t2; return t1; }, get$_hasIntrinsicError: function() { var t2, t1 = this._widget.maxLength; if (t1 != null) if (t1 > 0) { t1 = new T.StringCharacters(this.get$_text_field$_effectiveController()._change_notifier$_value.text); t1 = t1.get$length(t1); t2 = this._widget.maxLength; t2.toString; t2 = t1 > t2; t1 = t2; } else t1 = false; else t1 = false; return t1; }, _getEffectiveDecoration$0: function() { var t2, themeData, t3, t4, t5, effectiveDecoration, currentLength, isFocused, builtCounter, counter, counterText, semanticCounterText, _this = this, _null = null, t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this._framework$_element; t2.toString; themeData = K.Theme_of(t2); t2 = _this._widget.decoration; t2 = t2.applyDefaults$1(themeData.inputDecorationTheme); t3 = _this.get$_isEnabled(); t4 = _this._widget; t5 = t4.decoration.hintMaxLines; effectiveDecoration = t2.copyWith$2$enabled$hintMaxLines(t3, t5 == null ? t4.maxLines : t5); t2 = effectiveDecoration.counter == null; if (!t2 || effectiveDecoration.counterText != null) return effectiveDecoration; t3 = new T.StringCharacters(_this.get$_text_field$_effectiveController()._change_notifier$_value.text); currentLength = t3.get$length(t3); if (t2 && effectiveDecoration.counterText == null && _this._widget.buildCounter != null) { isFocused = _this.get$_effectiveFocusNode().get$hasFocus(); t1 = _this._widget; t2 = t1.buildCounter; t2.toString; t3 = _this._framework$_element; t3.toString; builtCounter = t2.call$4$currentLength$isFocused$maxLength(t3, currentLength, isFocused, t1.maxLength); if (builtCounter != null) counter = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, isFocused, _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, builtCounter, _null); else counter = _null; return effectiveDecoration.copyWith$1$counter(counter); } if (_this._widget.maxLength == null) return effectiveDecoration; counterText = "" + currentLength; t2 = _this._widget.maxLength; t2.toString; if (t2 > 0) { counterText += "/" + t2; t2 = _this._widget.maxLength; t2.toString; semanticCounterText = t1.remainingTextFieldCharacterCount$1(C.JSInt_methods.clamp$2(t2 - currentLength, 0, t2)); } else semanticCounterText = ""; if (_this.get$_hasIntrinsicError()) { t1 = effectiveDecoration.errorText; if (t1 == null) t1 = ""; t2 = effectiveDecoration.errorStyle; if (t2 == null) { t2 = themeData.textTheme.caption; t2.toString; t2 = t2.copyWith$1$color(themeData.errorColor); } return effectiveDecoration.copyWith$4$counterStyle$counterText$errorText$semanticCounterText(t2, counterText, t1, semanticCounterText); } return effectiveDecoration.copyWith$2$counterText$semanticCounterText(counterText, semanticCounterText); }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.___TextFieldState__selectionGestureDetectorBuilder = new Z._TextFieldSelectionGestureDetectorBuilder(_this, _this); if (_this._widget.controller == null) _this._createLocalController$0(); _this.get$_effectiveFocusNode().set$canRequestFocus(_this.get$_isEnabled()); }, get$_text_field$_canRequestFocus: function() { var mode, t1 = this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: return this.get$_isEnabled(); case C.NavigationMode_1: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, didChangeDependencies$0: function() { this.super$__TextFieldState_State_RestorationMixin$didChangeDependencies(); this.get$_effectiveFocusNode().set$canRequestFocus(this.get$_text_field$_canRequestFocus()); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, _this = this; _this.super$__TextFieldState_State_RestorationMixin$didUpdateWidget(oldWidget); t1 = _this._widget.controller == null; if (t1 && oldWidget.controller != null) _this._createLocalController$1(oldWidget.controller._change_notifier$_value); else if (!t1 && oldWidget.controller == null) { t1 = _this._text_field$_controller; t1.toString; t2 = _this.RestorationMixin__bucket; if (t2 != null) { t3 = t1._restoration0$_restorationId; t3.toString; t2.remove$1$1(0, t3, type$.nullable_Object); } _this._unregister$1(t1); t1 = _this._text_field$_controller; t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); _this._text_field$_controller = null; } _this.get$_effectiveFocusNode().set$canRequestFocus(_this.get$_text_field$_canRequestFocus()); if (_this.get$_effectiveFocusNode().get$hasFocus() && _this._widget.readOnly !== oldWidget.readOnly && _this.get$_isEnabled()) { t1 = _this.get$_text_field$_effectiveController()._change_notifier$_value.selection; if (t1.start == t1.end) _this._showSelectionHandles = !_this._widget.readOnly; } }, restoreState$2: function(oldBucket, initialRestore) { var t1 = this._text_field$_controller; if (t1 != null) this.registerForRestoration$2(t1, "controller"); }, _createLocalController$1: function(value) { var t1, _this = this; if (value == null) t1 = new U.RestorableTextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)); else t1 = new U.RestorableTextEditingController(value, new P.LinkedList(type$.LinkedList__ListenerEntry)); _this._text_field$_controller = t1; if (!_this.get$restorePending()) { t1 = _this._text_field$_controller; t1.toString; _this.registerForRestoration$2(t1, "controller"); } }, _createLocalController$0: function() { return this._createLocalController$1(null); }, get$restorationId: function() { this._widget.toString; return null; }, dispose$0: function(_) { var t1 = this._text_field$_focusNode; if (t1 != null) t1.dispose$0(0); t1 = this._text_field$_controller; if (t1 != null) { t1._disposeOldValue$0(); t1.super$RestorableListenable$dispose(0); } this.super$__TextFieldState_State_RestorationMixin$dispose(0); }, _requestKeyboard$0: function() { var t1 = this.editableTextKey.get$currentState(); if (t1 != null) t1.requestKeyboard$0(); }, _shouldShowSelectionHandles$1: function(cause) { var t1, _this = this; if (!_this.get$_selectionGestureDetectorBuilder()._shouldShowSelectionToolbar) return false; if (cause === C.SelectionChangedCause_4) return false; if (_this._widget.readOnly) { t1 = _this.get$_text_field$_effectiveController()._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) return false; if (!_this.get$_isEnabled()) return false; if (cause === C.SelectionChangedCause_2) return true; if (_this.get$_text_field$_effectiveController()._change_notifier$_value.text.length !== 0) return true; return false; }, _text_field$_handleSelectionChanged$2: function(selection, cause) { var t1, _this = this, willShowSelectionHandles = _this._shouldShowSelectionHandles$1(cause); if (willShowSelectionHandles !== _this._showSelectionHandles) _this.setState$1(new Z._TextFieldState__handleSelectionChanged_closure(_this, willShowSelectionHandles)); t1 = _this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_2: case C.TargetPlatform_4: if (cause === C.SelectionChangedCause_2) { t1 = _this.editableTextKey.get$currentState(); if (t1 != null) t1.bringIntoView$1(new P.TextPosition(selection.baseOffset, selection.affinity)); } return; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _handleSelectionHandleTapped$0: function() { var t1 = this.get$_text_field$_effectiveController()._change_notifier$_value.selection; if (t1.start == t1.end) this.editableTextKey.get$currentState().toggleToolbar$0(); }, _handleHover$1: function(hovering) { if (hovering !== this._isHovering) this.setState$1(new Z._TextFieldState__handleHover_closure(this, hovering)); }, build$1: function(_, context) { var style, keyboardAppearance, controller, focusNode, t2, cursorRadius, cupertinoTheme, textSelectionControls, cursorColor, selectionColor, cursorOffset, autocorrectionTextRectColor, paintCursorAboveText, cursorOpacityAnimates, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, child, effectiveMouseCursor, _this = this, _null = null, _box_0 = {}, theme = K.Theme_of(context), selectionTheme = R.TextSelectionTheme_of(context), t1 = theme.textTheme.subtitle1; t1.toString; style = t1.merge$1(_this._widget.style); _this._widget.toString; keyboardAppearance = theme.primaryColorBrightness; controller = _this.get$_text_field$_effectiveController(); focusNode = _this.get$_effectiveFocusNode(); t1 = H.setRuntimeTypeInfo([], type$.JSArray_TextInputFormatter); t2 = _this._widget.inputFormatters; if (t2 != null) C.JSArray_methods.addAll$1(t1, t2); t2 = _this._widget.maxLength; if (t2 != null && true) t1.push(new B.LengthLimitingTextInputFormatter(t2, _this.get$_effectiveMaxLengthEnforcement())); cursorRadius = _this._widget.cursorRadius; _box_0.handleDidGainAccessibilityFocus = null; switch (theme.platform) { case C.TargetPlatform_2: cupertinoTheme = K.CupertinoTheme_of(context); _this.___TextFieldState_forcePressEnabled = true; textSelectionControls = $.$get$cupertinoTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t2 = cupertinoTheme.get$primaryColor(); selectionColor = P.Color$fromARGB(102, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } cursorOffset = new P.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); autocorrectionTextRectColor = selectionColor; paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = C.Radius_2_2; break; case C.TargetPlatform_4: cupertinoTheme = K.CupertinoTheme_of(context); _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$cupertinoDesktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = cupertinoTheme.get$primaryColor(); selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t2 = cupertinoTheme.get$primaryColor(); selectionColor = P.Color$fromARGB(102, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } cursorOffset = new P.Offset(-2 / context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.devicePixelRatio, 0); _box_0.handleDidGainAccessibilityFocus = new Z._TextFieldState_build_closure(_this); autocorrectionTextRectColor = _null; paintCursorAboveText = true; cursorOpacityAnimates = true; cursorRadius = C.Radius_2_2; break; case C.TargetPlatform_0: case C.TargetPlatform_1: _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$materialTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t2 = theme.colorScheme.primary; selectionColor = P.Color$fromARGB(102, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } autocorrectionTextRectColor = _null; cursorOffset = autocorrectionTextRectColor; paintCursorAboveText = false; cursorOpacityAnimates = false; break; case C.TargetPlatform_3: case C.TargetPlatform_5: _this.___TextFieldState_forcePressEnabled = false; textSelectionControls = $.$get$desktopTextSelectionControls(); cursorColor = selectionTheme.cursorColor; if (cursorColor == null) cursorColor = theme.colorScheme.primary; selectionColor = selectionTheme.selectionColor; if (selectionColor == null) { t2 = theme.colorScheme.primary; selectionColor = P.Color$fromARGB(102, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } autocorrectionTextRectColor = _null; cursorOffset = autocorrectionTextRectColor; paintCursorAboveText = false; cursorOpacityAnimates = false; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = _this.RestorationMixin__bucket; t3 = _this._widget.readOnly || !_this.get$_isEnabled(); t4 = _this._widget; t5 = t4.toolbarOptions; t6 = t4.showCursor; t7 = _this._showSelectionHandles; t8 = t4.keyboardType; t9 = t4.textInputAction; t10 = t4.textCapitalization; t11 = t4.strutStyle; t12 = t4.textAlign; t13 = t4.textDirection; t14 = t4.autofocus; t15 = t4.obscuringCharacter; t16 = t4.obscureText; t17 = t4.autocorrect; t18 = t4.smartDashesType; t19 = t4.smartQuotesType; t20 = t4.maxLines; t21 = t4.minLines; t22 = t4.expands; t23 = t4.onChanged; t24 = t4.onEditingComplete; t25 = t4.onSubmitted; t26 = t4.cursorWidth; t27 = t4.cursorHeight; t28 = t4.scrollPadding; t29 = t4.scrollController; t30 = t4.scrollPhysics; t5 = K.UnmanagedRestorationScope$(t2, D.EditableText$(t17, autocorrectionTextRectColor, t4.autofillHints, t14, C.CupertinoDynamicColor_YIZ, controller, cursorColor, t27, cursorOffset, cursorOpacityAnimates, cursorRadius, t26, C.DragStartBehavior_1, true, true, t22, focusNode, true, t1, _this.editableTextKey, keyboardAppearance, t8, t20, t21, C.C__DeferringMouseCursor, t16, t15, _null, t23, t24, _this.get$_text_field$_handleSelectionChanged(), _this.get$_handleSelectionHandleTapped(), t25, paintCursorAboveText, t3, true, "editable", t29, t28, t30, selectionColor, textSelectionControls, C.BoxHeightStyle_0, C.BoxWidthStyle_0, t6, t7, t18, t19, t11, style, t12, t10, t13, _null, t9, _null, C.TextWidthBasis_0, t5)); _this._widget.toString; child = K.AnimatedBuilder$(new B._MergingListenable(H.setRuntimeTypeInfo([focusNode, controller], type$.JSArray_Listenable)), new Z._TextFieldState_build_closure0(_this, focusNode, controller), new T.RepaintBoundary(t5, _null)); _this._widget.toString; t1 = P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (!_this.get$_isEnabled()) t1.add$1(0, C.MaterialState_5); if (_this._isHovering) t1.add$1(0, C.MaterialState_0); if (focusNode.get$hasFocus()) t1.add$1(0, C.MaterialState_1); t2 = _this._widget.decoration; if (t2.errorText != null || _this.get$_hasIntrinsicError()) t1.add$1(0, C.MaterialState_6); effectiveMouseCursor = V.MaterialStateProperty_resolveAs(C._EnabledAndDisabledMouseCursor_SystemMouseCursor_text_textable, t1, type$.MouseCursor); _box_0.semanticsMaxValueLength = null; _this._widget.toString; if (_this.get$_effectiveMaxLengthEnforcement() !== C.MaxLengthEnforcement_0) { t1 = _this._widget.maxLength; t1 = t1 != null && t1 > 0; } else t1 = false; if (t1) _box_0.semanticsMaxValueLength = _this._widget.maxLength; return new T.MouseRegion(new Z._TextFieldState_build_closure1(_this), _null, new Z._TextFieldState_build_closure2(_this), effectiveMouseCursor, true, new T.IgnorePointer(!_this.get$_isEnabled(), _null, K.AnimatedBuilder$(controller, new Z._TextFieldState_build_closure3(_box_0, _this), _this.get$_selectionGestureDetectorBuilder().buildGestureDetector$2$behavior$child(C.HitTestBehavior_2, child)), _null), _null); }, get$editableTextKey: function() { return this.editableTextKey; } }; Z._TextFieldState__handleSelectionChanged_closure.prototype = { call$0: function() { this.$this._showSelectionHandles = this.willShowSelectionHandles; }, $signature: 0 }; Z._TextFieldState__handleHover_closure.prototype = { call$0: function() { this.$this._isHovering = this.hovering; }, $signature: 0 }; Z._TextFieldState_build_closure.prototype = { call$0: function() { var t1 = this.$this; if (!t1.get$_effectiveFocusNode().get$hasFocus() && t1.get$_effectiveFocusNode().get$canRequestFocus()) t1.get$_effectiveFocusNode().requestFocus$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._TextFieldState_build_closure0.prototype = { call$2: function(context, child) { var t6, t7, t8, t1 = this.$this, t2 = t1._getEffectiveDecoration$0(), t3 = t1._widget, t4 = t3.style, t5 = t3.textAlign; t3 = t3.textAlignVertical; t6 = t1._isHovering; t7 = this.focusNode.get$hasFocus(); t8 = this.controller._change_notifier$_value.text.length; return L.InputDecorator$(t4, child, t2, t1._widget.expands, t8 === 0, t7, t6, t5, t3); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2160 }; Z._TextFieldState_build_closure1.prototype = { call$1: function($event) { return this.$this._handleHover$1(true); }, $signature: 316 }; Z._TextFieldState_build_closure2.prototype = { call$1: function($event) { return this.$this._handleHover$1(false); }, $signature: 207 }; Z._TextFieldState_build_closure3.prototype = { call$2: function(context, child) { var _null = null, t1 = this._box_0, t2 = t1.semanticsMaxValueLength, t3 = this.$this, t4 = new T.StringCharacters(t3.get$_text_field$_effectiveController()._change_notifier$_value.text); t4 = t4.get$length(t4); t3 = t3._widget.readOnly ? _null : new Z._TextFieldState_build__closure(t3); t1 = t1.handleDidGainAccessibilityFocus; return new T.Semantics(A.SemanticsProperties$(_null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, child, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2165 }; Z._TextFieldState_build__closure.prototype = { call$0: function() { var t1 = this.$this; if (!t1.get$_text_field$_effectiveController()._change_notifier$_value.selection.get$isValid()) t1.get$_text_field$_effectiveController().set$selection(X.TextSelection$collapsed(C.TextAffinity_1, t1.get$_text_field$_effectiveController()._change_notifier$_value.text.length)); t1._requestKeyboard$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z.__TextFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; Z.__TextFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new Z.__TextFieldState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; E.TextFormField.prototype = { createState$0: function() { return new E._TextFormFieldState(C._StateLifecycle_0); } }; E.TextFormField_closure.prototype = { call$1: function(field) { var t1, t2, t3, t4, effectiveDecoration, t5, t6, t7, t8, _this = this; type$._TextFormFieldState._as(field); t1 = _this.decoration; t2 = t1 == null; t3 = t2 ? C.InputDecoration_so3 : t1; t4 = field._framework$_element; t4.toString; effectiveDecoration = t3.applyDefaults$1(K.Theme_of(t4).inputDecorationTheme); t4 = field.get$_effectiveController(); t3 = effectiveDecoration.copyWith$1$errorText(field._errorText); t5 = _this.obscureText; t6 = t5 ? C.SmartDashesType_0 : C.SmartDashesType_1; t7 = t5 ? C.SmartQuotesType_0 : C.SmartQuotesType_1; t8 = _this.enabled; if (t8 == null) t1 = t2 ? null : t1.enabled; else t1 = t8; return Z.TextField$(_this.autocorrect, _this.autofillHints, _this.autofocus, _this.buildCounter, t4, _this.cursorColor, _this.cursorHeight, _this.cursorRadius, _this.cursorWidth, t3, _this.enableInteractiveSelection, _this.enableSuggestions, t1 !== false, _this.expands, _this.focusNode, _this.inputFormatters, _this.keyboardAppearance, _this.keyboardType, _this.maxLength, _this.maxLengthEnforced, _this.maxLengthEnforcement, _this.maxLines, _this.minLines, t5, _this.obscuringCharacter, new E.TextFormField_closure_onChangedHandler(field, _this.onChanged), _this.onEditingComplete, _this.onFieldSubmitted, _this.onTap, _this.readOnly, _this.scrollController, _this.scrollPadding, _this.scrollPhysics, _this.selectionControls, _this.showCursor, t6, t7, _this.strutStyle, _this.style, _this.textAlign, _this.textAlignVertical, _this.textCapitalization, _this.textDirection, _this.textInputAction, _this.toolbarOptions); }, $signature: 2168 }; E.TextFormField_closure_onChangedHandler.prototype = { call$1: function(value) { var t1; this.field.didChange$1(value); t1 = this.onChanged; if (t1 != null) t1.call$1(value); }, $signature: 88 }; E._TextFormFieldState.prototype = { get$_effectiveController: function() { var t1 = type$.TextFormField._as(N.State.prototype.get$widget.call(this)).controller; return t1 == null ? this._text_form_field$_controller : t1; }, get$widget: function() { return type$.TextFormField._as(N.State.prototype.get$widget.call(this)); }, initState$0: function() { var t1, _this = this; _this.super$FormFieldState$initState(); t1 = type$.TextFormField; if (t1._as(N.State.prototype.get$widget.call(_this)).controller == null) { t1 = t1._as(N.State.prototype.get$widget.call(_this)).initialValue; t1 = t1 == null ? C.TextEditingValue_QOg : new N.TextEditingValue(t1, C.TextSelection_TbC, C.TextRange_m1_m1); _this._text_form_field$_controller = new D.TextEditingController(t1, new P.LinkedList(type$.LinkedList__ListenerEntry)); } else { t1 = t1._as(N.State.prototype.get$widget.call(_this)).controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleControllerChanged()), false); } }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, t4, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = type$.TextFormField; t2 = t1._as(N.State.prototype.get$widget.call(_this)).controller; t3 = oldWidget.controller; if (t2 != t3) { t2 = t3 == null; if (!t2) t3.removeListener$1(0, _this.get$_handleControllerChanged()); t4 = t1._as(N.State.prototype.get$widget.call(_this)).controller; if (t4 != null) { t4 = t4.ChangeNotifier__listeners; t4._insertBefore$3$updateFirst(t4._collection$_first, new B._ListenerEntry(_this.get$_handleControllerChanged()), false); } if (!t2 && t1._as(N.State.prototype.get$widget.call(_this)).controller == null) _this._text_form_field$_controller = D.TextEditingController$fromValue(t3._change_notifier$_value); if (t1._as(N.State.prototype.get$widget.call(_this)).controller != null) { _this._form$_value = t1._as(N.State.prototype.get$widget.call(_this)).controller._change_notifier$_value.text; if (t2) _this._text_form_field$_controller = null; } } }, dispose$0: function(_) { var t1 = type$.TextFormField._as(N.State.prototype.get$widget.call(this)).controller; if (t1 != null) t1.removeListener$1(0, this.get$_handleControllerChanged()); this.super$State$dispose(0); }, didChange$1: function(value) { var t1; this.super$FormFieldState$didChange(value); if (this.get$_effectiveController()._change_notifier$_value.text != value) { t1 = this.get$_effectiveController(); t1.toString; t1.set$text(0, value == null ? "" : value); } }, _handleControllerChanged$0: function() { var _this = this, t1 = _this.get$_effectiveController()._change_notifier$_value.text, t2 = _this._form$_value; if (t1 == null ? t2 != null : t1 !== t2) _this.didChange$1(_this.get$_effectiveController()._change_notifier$_value.text); } }; F.MaterialTextSelectionControls.prototype = { getHandleSize$1: function(textLineHeight) { return C.Size_22_22; }, buildHandle$3: function(context, type, textHeight) { var _null = null, theme = K.Theme_of(context), handleColor = R.TextSelectionTheme_of(context).selectionHandleColor, handle = T.SizedBox$(T.CustomPaint$(_null, _null, _null, new F._TextSelectionHandlePainter(handleColor == null ? theme.colorScheme.primary : handleColor, _null), C.Size_0_0), 22, 22); switch (type) { case C.TextSelectionHandleType_0: return T.Transform$rotate(1.5707963267948966, handle); case C.TextSelectionHandleType_1: return handle; case C.TextSelectionHandleType_2: return T.Transform$rotate(0.7853981633974483, handle); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getHandleAnchor$2: function(type, textLineHeight) { switch (type) { case C.TextSelectionHandleType_0: return C.Offset_22_0; case C.TextSelectionHandleType_1: return C.Offset_0_0; default: return C.Offset_11_m4; } } }; F._TextSelectionHandlePainter.prototype = { paint$2: function(canvas, size) { var radius, circle, path, t1 = H._detectRenderer(), paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, this.color); radius = size._dx / 2; circle = P.Rect$fromCircle(new P.Offset(radius, radius), radius); t1 = 0 + radius; path = P.Path_Path(); path.addOval$1(0, circle); path.addRect$1(0, new P.Rect(0, 0, t1, t1)); canvas.drawPath$2(0, path, paint); }, shouldRepaint$1: function(oldPainter) { return !J.$eq$(this.color, oldPainter.color); } }; R.TextSelectionThemeData.prototype = { get$hashCode: function(_) { return P.hashValues(this.cursorColor, this.selectionColor, this.selectionHandleColor, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof R.TextSelectionThemeData && J.$eq$(other.cursorColor, _this.cursorColor) && J.$eq$(other.selectionColor, _this.selectionColor) && J.$eq$(other.selectionHandleColor, _this.selectionHandleColor); } }; R._TextSelectionThemeData_Object_Diagnosticable.prototype = {}; R.TextTheme.prototype = { merge$1: function(other) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, _this = this, _null = null; if (other == null) return _this; t1 = _this.headline1; t2 = t1 == null ? _null : t1.merge$1(other.headline1); if (t2 == null) t2 = other.headline1; t3 = _this.headline2; t4 = t3 == null ? _null : t3.merge$1(other.headline2); if (t4 == null) t4 = other.headline2; t5 = _this.headline3; t6 = t5 == null ? _null : t5.merge$1(other.headline3); if (t6 == null) t6 = other.headline3; t7 = _this.headline4; t8 = t7 == null ? _null : t7.merge$1(other.headline4); if (t8 == null) t8 = other.headline4; t9 = _this.headline5; t10 = t9 == null ? _null : t9.merge$1(other.headline5); if (t10 == null) t10 = other.headline5; t11 = _this.headline6; t12 = t11 == null ? _null : t11.merge$1(other.headline6); if (t12 == null) t12 = other.headline6; t13 = _this.subtitle1; t14 = t13 == null ? _null : t13.merge$1(other.subtitle1); if (t14 == null) t14 = other.subtitle1; t15 = _this.subtitle2; t16 = t15 == null ? _null : t15.merge$1(other.subtitle2); if (t16 == null) t16 = other.subtitle2; t17 = _this.bodyText1; t18 = t17 == null ? _null : t17.merge$1(other.bodyText1); if (t18 == null) t18 = other.bodyText1; t19 = _this.bodyText2; t20 = t19 == null ? _null : t19.merge$1(other.bodyText2); if (t20 == null) t20 = other.bodyText2; t21 = _this.caption; t22 = t21 == null ? _null : t21.merge$1(other.caption); if (t22 == null) t22 = other.caption; t23 = _this.button; t24 = t23 == null ? _null : t23.merge$1(other.button); if (t24 == null) t24 = other.button; t25 = _this.overline; t26 = t25 == null ? _null : t25.merge$1(other.overline); if (t26 == null) t26 = other.overline; if (t2 == null) t2 = _null; t1 = t2 == null ? t1 : t2; t2 = t4 == null ? _null : t4; if (t2 == null) t2 = t3; t3 = t6 == null ? _null : t6; if (t3 == null) t3 = t5; t4 = t8 == null ? _null : t8; if (t4 == null) t4 = t7; t5 = t10 == null ? _null : t10; if (t5 == null) t5 = t9; t6 = t12 == null ? _null : t12; if (t6 == null) t6 = t11; t7 = t14 == null ? _null : t14; if (t7 == null) t7 = t13; t8 = t16 == null ? _null : t16; if (t8 == null) t8 = t15; t9 = t18 == null ? _null : t18; if (t9 == null) t9 = t17; t10 = t20 == null ? _null : t20; if (t10 == null) t10 = t19; t11 = t22 == null ? t21 : t22; t12 = t24 == null ? t23 : t24; return R.TextTheme$(t9, t10, t12, t11, t1, t2, t3, t4, t5, t6, t26 == null ? t25 : t26, t7, t8); }, apply$1$fontFamily: function(fontFamily) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = _this.headline1; t1 = t1 == null ? _null : t1.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t2 = _this.headline2; t2 = t2 == null ? _null : t2.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t3 = _this.headline3; t3 = t3 == null ? _null : t3.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t4 = _this.headline4; t4 = t4 == null ? _null : t4.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t5 = _this.headline5; t5 = t5 == null ? _null : t5.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t6 = _this.headline6; t6 = t6 == null ? _null : t6.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t7 = _this.subtitle1; t7 = t7 == null ? _null : t7.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t8 = _this.subtitle2; t8 = t8 == null ? _null : t8.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t9 = _this.bodyText1; t9 = t9 == null ? _null : t9.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t10 = _this.bodyText2; t10 = t10 == null ? _null : t10.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t11 = _this.caption; t11 = t11 == null ? _null : t11.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t12 = _this.button; t12 = t12 == null ? _null : t12.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1); t13 = _this.overline; return R.TextTheme$(t9, t10, t12, t11, t1, t2, t3, t4, t5, t6, t13 == null ? _null : t13.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(_null, _null, _null, _null, fontFamily, 0, 1), t7, t8); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof R.TextTheme && J.$eq$(_this.headline1, other.headline1) && J.$eq$(_this.headline2, other.headline2) && J.$eq$(_this.headline3, other.headline3) && J.$eq$(_this.headline4, other.headline4) && J.$eq$(_this.headline5, other.headline5) && J.$eq$(_this.headline6, other.headline6) && J.$eq$(_this.subtitle1, other.subtitle1) && J.$eq$(_this.subtitle2, other.subtitle2) && J.$eq$(_this.bodyText1, other.bodyText1) && J.$eq$(_this.bodyText2, other.bodyText2) && J.$eq$(_this.caption, other.caption) && J.$eq$(_this.button, other.button) && J.$eq$(_this.overline, other.overline); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.headline1, _this.headline2, _this.headline3, _this.headline4, _this.headline5, _this.headline6, _this.subtitle1, _this.subtitle2, _this.bodyText1, _this.bodyText2, _this.caption, _this.button, _this.overline, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; R._TextTheme_Object_Diagnosticable.prototype = {}; K.Theme.prototype = { build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t1 = this.data; t1.toString; t2 = C.CupertinoThemeData_KQb.brightness; t3 = C.CupertinoThemeData_KQb.primaryColor; t4 = C.CupertinoThemeData_KQb.primaryContrastingColor; t5 = C.CupertinoThemeData_KQb.textTheme; t6 = C.CupertinoThemeData_KQb.barBackgroundColor; t7 = C.CupertinoThemeData_KQb.scaffoldBackgroundColor; return new K._InheritedTheme(this, new K.CupertinoTheme(new X.MaterialBasedCupertinoThemeData(t1, new K.NoDefaultCupertinoThemeData(t2, t3, t4, t5, t6, t7), C._CupertinoThemeDefaults_iF8, t2, t3, t4, t5, t6, t7), Y.IconTheme$(this.child, t1.iconTheme, null), null), null); } }; K._InheritedTheme.prototype = { wrap$2: function(_, context, child) { return new K.Theme(this.theme.data, child, null); }, updateShouldNotify$1: function(old) { return !J.$eq$(this.theme.data, old.theme.data); } }; K.ThemeDataTween.prototype = { lerp$1: function(t) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, lerpedBorderSide, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t1 = this.begin; t1.toString; t2 = this.end; t2.toString; t3 = t1.visualDensity.horizontal; t4 = t2.visualDensity.horizontal; t5 = P.lerpDouble(t3, t4, t); t5.toString; t4 = P.lerpDouble(t3, t4, t); t4.toString; t3 = P.Color_lerp(t1.primaryColor, t2.primaryColor, t); t3.toString; t6 = t < 0.5; t7 = t6 ? t1.primaryColorBrightness : t2.primaryColorBrightness; t8 = P.Color_lerp(t1.primaryColorLight, t2.primaryColorLight, t); t8.toString; t9 = P.Color_lerp(t1.primaryColorDark, t2.primaryColorDark, t); t9.toString; t10 = P.Color_lerp(t1.canvasColor, t2.canvasColor, t); t10.toString; t11 = P.Color_lerp(t1.shadowColor, t2.shadowColor, t); t11.toString; t12 = P.Color_lerp(t1.accentColor, t2.accentColor, t); t12.toString; t13 = t6 ? t1.accentColorBrightness : t2.accentColorBrightness; t14 = P.Color_lerp(t1.scaffoldBackgroundColor, t2.scaffoldBackgroundColor, t); t14.toString; t15 = P.Color_lerp(t1.bottomAppBarColor, t2.bottomAppBarColor, t); t15.toString; t16 = P.Color_lerp(t1.cardColor, t2.cardColor, t); t16.toString; t17 = P.Color_lerp(t1.dividerColor, t2.dividerColor, t); t17.toString; t18 = P.Color_lerp(t1.focusColor, t2.focusColor, t); t18.toString; t19 = P.Color_lerp(t1.hoverColor, t2.hoverColor, t); t19.toString; t20 = P.Color_lerp(t1.highlightColor, t2.highlightColor, t); t20.toString; t21 = P.Color_lerp(t1.splashColor, t2.splashColor, t); t21.toString; t22 = t6 ? t1.splashFactory : t2.splashFactory; t23 = P.Color_lerp(t1.selectedRowColor, t2.selectedRowColor, t); t23.toString; t24 = P.Color_lerp(t1.unselectedWidgetColor, t2.unselectedWidgetColor, t); t24.toString; t25 = P.Color_lerp(t1.disabledColor, t2.disabledColor, t); t25.toString; t26 = t6 ? t1.buttonTheme : t2.buttonTheme; t27 = S.ToggleButtonsThemeData_lerp(t1.toggleButtonsTheme, t2.toggleButtonsTheme, t); t27.toString; t28 = P.Color_lerp(t1.buttonColor, t2.buttonColor, t); t28.toString; t29 = P.Color_lerp(t1.secondaryHeaderColor, t2.secondaryHeaderColor, t); t29.toString; t30 = P.Color_lerp(t1.textSelectionColor, t2.textSelectionColor, t); t30.toString; t31 = P.Color_lerp(t1.cursorColor, t2.cursorColor, t); t31.toString; t32 = P.Color_lerp(t1.textSelectionHandleColor, t2.textSelectionHandleColor, t); t32.toString; t33 = P.Color_lerp(t1.backgroundColor, t2.backgroundColor, t); t33.toString; t34 = P.Color_lerp(t1.dialogBackgroundColor, t2.dialogBackgroundColor, t); t34.toString; t35 = P.Color_lerp(t1.indicatorColor, t2.indicatorColor, t); t35.toString; t36 = P.Color_lerp(t1.hintColor, t2.hintColor, t); t36.toString; t37 = P.Color_lerp(t1.errorColor, t2.errorColor, t); t37.toString; t38 = P.Color_lerp(t1.toggleableActiveColor, t2.toggleableActiveColor, t); t38.toString; t39 = R.TextTheme_lerp(t1.textTheme, t2.textTheme, t); t40 = R.TextTheme_lerp(t1.primaryTextTheme, t2.primaryTextTheme, t); t41 = R.TextTheme_lerp(t1.accentTextTheme, t2.accentTextTheme, t); t42 = t6 ? t1.inputDecorationTheme : t2.inputDecorationTheme; t43 = T.IconThemeData_lerp(t1.iconTheme, t2.iconTheme, t); t44 = T.IconThemeData_lerp(t1.primaryIconTheme, t2.primaryIconTheme, t); t45 = T.IconThemeData_lerp(t1.accentIconTheme, t2.accentIconTheme, t); t46 = t1.sliderTheme; t47 = t2.sliderTheme; t48 = P.lerpDouble(t46.trackHeight, t47.trackHeight, t); t49 = P.Color_lerp(t46.activeTrackColor, t47.activeTrackColor, t); t50 = P.Color_lerp(t46.inactiveTrackColor, t47.inactiveTrackColor, t); t51 = P.Color_lerp(t46.disabledActiveTrackColor, t47.disabledActiveTrackColor, t); t52 = P.Color_lerp(t46.disabledInactiveTrackColor, t47.disabledInactiveTrackColor, t); t53 = P.Color_lerp(t46.activeTickMarkColor, t47.activeTickMarkColor, t); t54 = P.Color_lerp(t46.inactiveTickMarkColor, t47.inactiveTickMarkColor, t); t55 = P.Color_lerp(t46.disabledActiveTickMarkColor, t47.disabledActiveTickMarkColor, t); t56 = P.Color_lerp(t46.disabledInactiveTickMarkColor, t47.disabledInactiveTickMarkColor, t); t57 = P.Color_lerp(t46.thumbColor, t47.thumbColor, t); t58 = P.Color_lerp(t46.overlappingShapeStrokeColor, t47.overlappingShapeStrokeColor, t); t59 = P.Color_lerp(t46.disabledThumbColor, t47.disabledThumbColor, t); t60 = P.Color_lerp(t46.overlayColor, t47.overlayColor, t); t61 = P.Color_lerp(t46.valueIndicatorColor, t47.valueIndicatorColor, t); t62 = t6 ? t46.overlayShape : t47.overlayShape; t63 = t6 ? t46.tickMarkShape : t47.tickMarkShape; t64 = t6 ? t46.thumbShape : t47.thumbShape; t65 = t6 ? t46.trackShape : t47.trackShape; t66 = t6 ? t46.valueIndicatorShape : t47.valueIndicatorShape; t67 = t6 ? t46.rangeTickMarkShape : t47.rangeTickMarkShape; t68 = t6 ? t46.rangeThumbShape : t47.rangeThumbShape; t69 = t6 ? t46.rangeTrackShape : t47.rangeTrackShape; t70 = t6 ? t46.rangeValueIndicatorShape : t47.rangeValueIndicatorShape; t71 = t6 ? t46.showValueIndicator : t47.showValueIndicator; t72 = A.TextStyle_lerp(t46.valueIndicatorTextStyle, t47.valueIndicatorTextStyle, t); t73 = P.lerpDouble(t46.minThumbSeparation, t47.minThumbSeparation, t); t46 = t6 ? t46.thumbSelector : t47.thumbSelector; t47 = t1.tabBarTheme; t74 = t2.tabBarTheme; t75 = Z.Decoration_lerp(t47.indicator, t74.indicator, t); t76 = t6 ? t47.indicatorSize : t74.indicatorSize; t77 = P.Color_lerp(t47.labelColor, t74.labelColor, t); t78 = V.EdgeInsetsGeometry_lerp(t47.labelPadding, t74.labelPadding, t); t79 = A.TextStyle_lerp(t47.labelStyle, t74.labelStyle, t); t80 = P.Color_lerp(t47.unselectedLabelColor, t74.unselectedLabelColor, t); t74 = A.TextStyle_lerp(t47.unselectedLabelStyle, t74.unselectedLabelStyle, t); t47 = T.TooltipThemeData_lerp(t1.tooltipTheme, t2.tooltipTheme, t); t47.toString; t81 = t1.cardTheme; t82 = t2.cardTheme; if (t6) t83 = t81.clipBehavior; else t83 = t82.clipBehavior; t84 = P.Color_lerp(t81.color, t82.color, t); t85 = P.Color_lerp(t81.shadowColor, t82.shadowColor, t); t86 = P.lerpDouble(t81.elevation, t82.elevation, t); t87 = V.EdgeInsetsGeometry_lerp(t81.margin, t82.margin, t); t81 = Y.ShapeBorder_lerp(t81.shape, t82.shape, t); t82 = K.ChipThemeData_lerp(t1.chipTheme, t2.chipTheme, t); t82.toString; t88 = t6 ? t1.platform : t2.platform; t89 = t6 ? t1.materialTapTargetSize : t2.materialTapTargetSize; t90 = t6 ? t1.pageTransitionsTheme : t2.pageTransitionsTheme; t91 = t1.appBarTheme; t92 = t2.appBarTheme; if (t6) t93 = t91.brightness; else t93 = t92.brightness; t94 = P.Color_lerp(t91.backgroundColor, t92.backgroundColor, t); t95 = P.Color_lerp(t91.foregroundColor, t92.foregroundColor, t); t96 = P.lerpDouble(t91.elevation, t92.elevation, t); t97 = P.Color_lerp(t91.shadowColor, t92.shadowColor, t); t98 = T.IconThemeData_lerp(t91.iconTheme, t92.iconTheme, t); t99 = T.IconThemeData_lerp(t91.actionsIconTheme, t92.actionsIconTheme, t); t100 = R.TextTheme_lerp(t91.textTheme, t92.textTheme, t); if (t6) t101 = t91.centerTitle; else t101 = t92.centerTitle; t102 = P.lerpDouble(t91.titleSpacing, t92.titleSpacing, t); t103 = A.TextStyle_lerp(t91.toolbarTextStyle, t92.toolbarTextStyle, t); t104 = A.TextStyle_lerp(t91.titleTextStyle, t92.titleTextStyle, t); if (t6) t105 = t91.systemOverlayStyle; else t105 = t92.systemOverlayStyle; if (t6) t91 = t91.backwardsCompatibility; else t91 = t92.backwardsCompatibility; t103 = V.AppBarTheme$(t99, t94, t91, t93, t101, null, t96, t95, t98, t97, t105, t100, t102, t104, t103); t104 = t1.scrollbarTheme; t102 = t2.scrollbarTheme; t91 = X.ScrollbarThemeData__lerpProperties(t104.thickness, t102.thickness, t, P.ui__lerpDouble$closure(), type$.nullable_double); if (t6) t92 = t104.showTrackOnHover; else t92 = t102.showTrackOnHover; if (t6) t93 = t104.isAlwaysShown; else t93 = t102.isAlwaysShown; if (t6) t94 = t104.interactive; else t94 = t102.interactive; t95 = P.Radius_lerp(t104.radius, t102.radius, t); t96 = type$.nullable_Color; t97 = X.ScrollbarThemeData__lerpProperties(t104.thumbColor, t102.thumbColor, t, P.ui_Color_lerp$closure(), t96); t98 = X.ScrollbarThemeData__lerpProperties(t104.trackColor, t102.trackColor, t, P.ui_Color_lerp$closure(), t96); t99 = X.ScrollbarThemeData__lerpProperties(t104.trackBorderColor, t102.trackBorderColor, t, P.ui_Color_lerp$closure(), t96); t100 = P.lerpDouble(t104.crossAxisMargin, t102.crossAxisMargin, t); t101 = P.lerpDouble(t104.mainAxisMargin, t102.mainAxisMargin, t); t102 = P.lerpDouble(t104.minThumbLength, t102.minThumbLength, t); t104 = t1.bottomAppBarTheme; t105 = t2.bottomAppBarTheme; t106 = P.Color_lerp(t104.color, t105.color, t); t107 = P.lerpDouble(t104.elevation, t105.elevation, t); if (t6) t104 = t104.shape; else t104 = t105.shape; t105 = t1.colorScheme; t108 = t2.colorScheme; t109 = P.Color_lerp(t105.primary, t108.primary, t); t109.toString; t110 = P.Color_lerp(t105.primaryVariant, t108.primaryVariant, t); t110.toString; t111 = P.Color_lerp(t105.secondary, t108.secondary, t); t111.toString; t112 = P.Color_lerp(t105.secondaryVariant, t108.secondaryVariant, t); t112.toString; t113 = P.Color_lerp(t105.surface, t108.surface, t); t113.toString; t114 = P.Color_lerp(t105.background, t108.background, t); t114.toString; t115 = P.Color_lerp(t105.error, t108.error, t); t115.toString; t116 = P.Color_lerp(t105.onPrimary, t108.onPrimary, t); t116.toString; t117 = P.Color_lerp(t105.onSecondary, t108.onSecondary, t); t117.toString; t118 = P.Color_lerp(t105.onSurface, t108.onSurface, t); t118.toString; t119 = P.Color_lerp(t105.onBackground, t108.onBackground, t); t119.toString; t120 = P.Color_lerp(t105.onError, t108.onError, t); t120.toString; t105 = t6 ? t105.brightness : t108.brightness; t108 = t1.dialogTheme; t121 = t2.dialogTheme; t122 = P.Color_lerp(t108.backgroundColor, t121.backgroundColor, t); t123 = P.lerpDouble(t108.elevation, t121.elevation, t); t124 = Y.ShapeBorder_lerp(t108.shape, t121.shape, t); t125 = A.TextStyle_lerp(t108.titleTextStyle, t121.titleTextStyle, t); t108 = A.TextStyle_lerp(t108.contentTextStyle, t121.contentTextStyle, t); t121 = S.FloatingActionButtonThemeData_lerp(t1.floatingActionButtonTheme, t2.floatingActionButtonTheme, t); t121.toString; t126 = E.NavigationRailThemeData_lerp(t1.navigationRailTheme, t2.navigationRailTheme, t); t126.toString; t127 = t1.typography; t128 = t2.typography; t129 = R.TextTheme_lerp(t127.black, t128.black, t); t130 = R.TextTheme_lerp(t127.white, t128.white, t); t131 = R.TextTheme_lerp(t127.englishLike, t128.englishLike, t); t132 = R.TextTheme_lerp(t127.dense, t128.dense, t); t128 = R.TextTheme_lerp(t127.tall, t128.tall, t); t127 = t6 ? t1.cupertinoOverrideTheme : t2.cupertinoOverrideTheme; t133 = t1.snackBarTheme; t134 = t2.snackBarTheme; t135 = P.Color_lerp(t133.backgroundColor, t134.backgroundColor, t); t136 = P.Color_lerp(t133.actionTextColor, t134.actionTextColor, t); t137 = P.Color_lerp(t133.disabledActionTextColor, t134.disabledActionTextColor, t); t138 = A.TextStyle_lerp(t133.contentTextStyle, t134.contentTextStyle, t); t139 = P.lerpDouble(t133.elevation, t134.elevation, t); t140 = Y.ShapeBorder_lerp(t133.shape, t134.shape, t); if (t6) t133 = t133.behavior; else t133 = t134.behavior; t134 = X.BottomSheetThemeData_lerp(t1.bottomSheetTheme, t2.bottomSheetTheme, t); t134.toString; t141 = R.PopupMenuThemeData_lerp(t1.popupMenuTheme, t2.popupMenuTheme, t); t141.toString; t142 = t1.bannerTheme; t143 = t2.bannerTheme; t144 = P.Color_lerp(t142.backgroundColor, t143.backgroundColor, t); t145 = A.TextStyle_lerp(t142.contentTextStyle, t143.contentTextStyle, t); t146 = V.EdgeInsetsGeometry_lerp(t142.padding, t143.padding, t); t142 = V.EdgeInsetsGeometry_lerp(t142.leadingPadding, t143.leadingPadding, t); t143 = t1.dividerTheme; t147 = t2.dividerTheme; t148 = P.Color_lerp(t143.color, t147.color, t); t149 = P.lerpDouble(t143.space, t147.space, t); t150 = P.lerpDouble(t143.thickness, t147.thickness, t); t151 = P.lerpDouble(t143.indent, t147.indent, t); t143 = P.lerpDouble(t143.endIndent, t147.endIndent, t); t147 = M.ButtonBarThemeData_lerp(t1.buttonBarTheme, t2.buttonBarTheme, t); t147.toString; t152 = t1.bottomNavigationBarTheme; t153 = t2.bottomNavigationBarTheme; t154 = P.Color_lerp(t152.backgroundColor, t153.backgroundColor, t); t155 = P.lerpDouble(t152.elevation, t153.elevation, t); t156 = T.IconThemeData_lerp(t152.selectedIconTheme, t153.selectedIconTheme, t); t157 = T.IconThemeData_lerp(t152.unselectedIconTheme, t153.unselectedIconTheme, t); t158 = P.Color_lerp(t152.selectedItemColor, t153.selectedItemColor, t); t159 = P.Color_lerp(t152.unselectedItemColor, t153.unselectedItemColor, t); t160 = A.TextStyle_lerp(t152.selectedLabelStyle, t153.selectedLabelStyle, t); t161 = A.TextStyle_lerp(t152.unselectedLabelStyle, t153.unselectedLabelStyle, t); if (t6) t162 = t152.showSelectedLabels; else t162 = t153.showSelectedLabels; if (t6) t163 = t152.showUnselectedLabels; else t163 = t153.showUnselectedLabels; if (t6) t164 = t152.type; else t164 = t153.type; if (t6) t152 = t152.enableFeedback; else t152 = t153.enableFeedback; t153 = t1.timePickerTheme; t165 = t2.timePickerTheme; lerpedBorderSide = t153.dayPeriodBorderSide; t166 = lerpedBorderSide == null; if (t166) t167 = t165.dayPeriodBorderSide == null; else t167 = false; if (t167) lerpedBorderSide = null; else if (t166) lerpedBorderSide = t165.dayPeriodBorderSide; else { t166 = t165.dayPeriodBorderSide; if (!(t166 == null)) lerpedBorderSide = Y.BorderSide_lerp(lerpedBorderSide, t166, t); } t166 = P.Color_lerp(t153.backgroundColor, t165.backgroundColor, t); t167 = P.Color_lerp(t153.hourMinuteTextColor, t165.hourMinuteTextColor, t); t168 = P.Color_lerp(t153.hourMinuteColor, t165.hourMinuteColor, t); t169 = P.Color_lerp(t153.dayPeriodTextColor, t165.dayPeriodTextColor, t); t170 = P.Color_lerp(t153.dayPeriodColor, t165.dayPeriodColor, t); t171 = P.Color_lerp(t153.dialHandColor, t165.dialHandColor, t); t172 = P.Color_lerp(t153.dialBackgroundColor, t165.dialBackgroundColor, t); t173 = P.Color_lerp(t153.dialTextColor, t165.dialTextColor, t); t174 = P.Color_lerp(t153.entryModeIconColor, t165.entryModeIconColor, t); t175 = A.TextStyle_lerp(t153.hourMinuteTextStyle, t165.hourMinuteTextStyle, t); t176 = A.TextStyle_lerp(t153.dayPeriodTextStyle, t165.dayPeriodTextStyle, t); t177 = A.TextStyle_lerp(t153.helpTextStyle, t165.helpTextStyle, t); t178 = Y.ShapeBorder_lerp(t153.shape, t165.shape, t); t179 = Y.ShapeBorder_lerp(t153.hourMinuteShape, t165.hourMinuteShape, t); t180 = type$.nullable_OutlinedBorder; t181 = t180._as(Y.ShapeBorder_lerp(t153.dayPeriodShape, t165.dayPeriodShape, t)); if (t6) t153 = t153.inputDecorationTheme; else t153 = t165.inputDecorationTheme; t165 = T.TextButtonThemeData_lerp(t1.textButtonTheme, t2.textButtonTheme, t); t165.toString; t182 = T.ElevatedButtonThemeData_lerp(t1.elevatedButtonTheme, t2.elevatedButtonTheme, t); t182.toString; t183 = U.OutlinedButtonThemeData_lerp(t1.outlinedButtonTheme, t2.outlinedButtonTheme, t); t183.toString; t184 = R.TextSelectionThemeData_lerp(t1.textSelectionTheme, t2.textSelectionTheme, t); t184.toString; t185 = t1.dataTableTheme; t186 = t2.dataTableTheme; t187 = Z.Decoration_lerp(t185.decoration, t186.decoration, t); t188 = Z.DataTableThemeData__lerpProperties(t185.dataRowColor, t186.dataRowColor, t, P.ui_Color_lerp$closure(), t96); t189 = P.lerpDouble(t185.dataRowHeight, t186.dataRowHeight, t); t190 = A.TextStyle_lerp(t185.dataTextStyle, t186.dataTextStyle, t); t191 = Z.DataTableThemeData__lerpProperties(t185.headingRowColor, t186.headingRowColor, t, P.ui_Color_lerp$closure(), t96); t192 = P.lerpDouble(t185.headingRowHeight, t186.headingRowHeight, t); t193 = A.TextStyle_lerp(t185.headingTextStyle, t186.headingTextStyle, t); t194 = P.lerpDouble(t185.horizontalMargin, t186.horizontalMargin, t); t195 = P.lerpDouble(t185.columnSpacing, t186.columnSpacing, t); t196 = P.lerpDouble(t185.dividerThickness, t186.dividerThickness, t); t186 = P.lerpDouble(t185.checkboxHorizontalMargin, t186.checkboxHorizontalMargin, t); t185 = t1.checkboxTheme; t197 = t2.checkboxTheme; if (t6) t198 = t185.mouseCursor; else t198 = t197.mouseCursor; t199 = F.CheckboxThemeData__lerpProperties(t185.fillColor, t197.fillColor, t, P.ui_Color_lerp$closure(), t96); t200 = F.CheckboxThemeData__lerpProperties(t185.checkColor, t197.checkColor, t, P.ui_Color_lerp$closure(), t96); t201 = F.CheckboxThemeData__lerpProperties(t185.overlayColor, t197.overlayColor, t, P.ui_Color_lerp$closure(), t96); t202 = P.lerpDouble(t185.splashRadius, t197.splashRadius, t); if (t6) t203 = t185.materialTapTargetSize; else t203 = t197.materialTapTargetSize; if (t6) t204 = t185.visualDensity; else t204 = t197.visualDensity; t180 = t180._as(Y.ShapeBorder_lerp(t185.shape, t197.shape, t)); t185 = F.CheckboxThemeData__lerpSides(t185.side, t197.side, t); t197 = t1.radioTheme; t205 = t2.radioTheme; if (t6) t206 = t197.mouseCursor; else t206 = t205.mouseCursor; t207 = T.RadioThemeData__lerpProperties(t197.fillColor, t205.fillColor, t, P.ui_Color_lerp$closure(), t96); if (t6) t208 = t197.materialTapTargetSize; else t208 = t205.materialTapTargetSize; t209 = T.RadioThemeData__lerpProperties(t197.overlayColor, t205.overlayColor, t, P.ui_Color_lerp$closure(), t96); t210 = P.lerpDouble(t197.splashRadius, t205.splashRadius, t); if (t6) t197 = t197.visualDensity; else t197 = t205.visualDensity; t1 = t1.switchTheme; t2 = t2.switchTheme; t205 = R.SwitchThemeData__lerpProperties(t1.thumbColor, t2.thumbColor, t, P.ui_Color_lerp$closure(), t96); t211 = R.SwitchThemeData__lerpProperties(t1.trackColor, t2.trackColor, t, P.ui_Color_lerp$closure(), t96); if (t6) t212 = t1.materialTapTargetSize; else t212 = t2.materialTapTargetSize; if (t6) t6 = t1.mouseCursor; else t6 = t2.mouseCursor; t96 = R.SwitchThemeData__lerpProperties(t1.overlayColor, t2.overlayColor, t, P.ui_Color_lerp$closure(), t96); t1 = P.lerpDouble(t1.splashRadius, t2.splashRadius, t); return X.ThemeData$raw(t12, t13, t45, t41, t103, false, t33, new Q.MaterialBannerThemeData(t144, t145, t146, t142), t15, new D.BottomAppBarTheme(t106, t107, t104), new M.BottomNavigationBarThemeData(t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t152), t134, t147, t28, t26, t10, t16, new A.CardTheme(t83, t84, t85, t86, t87, t81), new F.CheckboxThemeData(t198, t199, t200, t201, t202, t203, t204, t180, t185), t82, new A.ColorScheme(t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t105), t127, t31, new Z.DataTableThemeData(t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t186), t34, new Y.DialogTheme(t122, t123, t124, t125, t108), t25, t17, new G.DividerThemeData(t148, t149, t150, t151, t143), t182, t37, false, t121, t18, t20, t36, t19, t43, t35, t42, t89, t126, t183, t90, t88, t141, t3, t7, t9, t8, t44, t40, new T.RadioThemeData(t206, t207, t209, t210, t208, t197), t14, new X.ScrollbarThemeData(t91, t92, t93, t94, t95, t97, t98, t99, t100, t101, t102), t29, t23, t11, new Q.SliderThemeData(t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t46), new K.SnackBarThemeData(t135, t136, t137, t138, t139, t140, t133), t21, t22, new R.SwitchThemeData(t205, t211, t212, t6, t96, t1), new U.TabBarTheme(t75, t76, t77, t78, t79, t80, t74), t165, t30, t32, t184, t39, new A.TimePickerThemeData(t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t181, lerpedBorderSide, t153), t27, t38, t47, new U.Typography(t129, t130, t131, t132, t128), t24, true, new X.VisualDensity(t5, t4)); } }; K.AnimatedTheme.prototype = { createState$0: function() { return new K._AnimatedThemeState(null, C._StateLifecycle_0); } }; K._AnimatedThemeState.prototype = { forEachTween$1: function(visitor) { var t1 = visitor.call$3(this._theme$_data, this._widget.data, new K._AnimatedThemeState_forEachTween_closure()); t1.toString; this._theme$_data = type$.ThemeDataTween._as(t1); }, build$1: function(_, context) { var t3, t1 = this._widget.child, t2 = this._theme$_data; t2.toString; t3 = this.get$_animation(); return new K.Theme(t2.transform$1(0, t3.get$value(t3)), t1, null); } }; K._AnimatedThemeState_forEachTween_closure.prototype = { call$1: function(value) { return new K.ThemeDataTween(type$.ThemeData._as(value), null); }, $signature: 2174 }; X.MaterialTapTargetSize.prototype = { toString$0: function(_) { return this._theme_data$_name; } }; X.ThemeData.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof X.ThemeData) if (other.visualDensity.$eq(0, _this.visualDensity)) if (J.$eq$(other.primaryColor, _this.primaryColor)) if (other.primaryColorBrightness === _this.primaryColorBrightness) if (J.$eq$(other.primaryColorLight, _this.primaryColorLight)) if (J.$eq$(other.primaryColorDark, _this.primaryColorDark)) if (J.$eq$(other.accentColor, _this.accentColor)) if (other.accentColorBrightness === _this.accentColorBrightness) if (J.$eq$(other.canvasColor, _this.canvasColor)) if (J.$eq$(other.scaffoldBackgroundColor, _this.scaffoldBackgroundColor)) if (J.$eq$(other.bottomAppBarColor, _this.bottomAppBarColor)) if (J.$eq$(other.cardColor, _this.cardColor)) if (J.$eq$(other.shadowColor, _this.shadowColor)) if (J.$eq$(other.dividerColor, _this.dividerColor)) if (J.$eq$(other.highlightColor, _this.highlightColor)) if (J.$eq$(other.splashColor, _this.splashColor)) if (other.splashFactory === _this.splashFactory) if (J.$eq$(other.selectedRowColor, _this.selectedRowColor)) if (J.$eq$(other.unselectedWidgetColor, _this.unselectedWidgetColor)) if (J.$eq$(other.disabledColor, _this.disabledColor)) if (other.buttonTheme.$eq(0, _this.buttonTheme)) if (J.$eq$(other.buttonColor, _this.buttonColor)) if (J.$eq$(other.toggleButtonsTheme, _this.toggleButtonsTheme)) if (J.$eq$(other.secondaryHeaderColor, _this.secondaryHeaderColor)) if (J.$eq$(other.textSelectionColor, _this.textSelectionColor)) if (J.$eq$(other.cursorColor, _this.cursorColor)) if (J.$eq$(other.textSelectionHandleColor, _this.textSelectionHandleColor)) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (J.$eq$(other.dialogBackgroundColor, _this.dialogBackgroundColor)) if (J.$eq$(other.indicatorColor, _this.indicatorColor)) if (J.$eq$(other.hintColor, _this.hintColor)) if (J.$eq$(other.errorColor, _this.errorColor)) if (J.$eq$(other.toggleableActiveColor, _this.toggleableActiveColor)) if (other.textTheme.$eq(0, _this.textTheme)) if (other.primaryTextTheme.$eq(0, _this.primaryTextTheme)) if (other.accentTextTheme.$eq(0, _this.accentTextTheme)) if (other.inputDecorationTheme.$eq(0, _this.inputDecorationTheme)) if (other.iconTheme.$eq(0, _this.iconTheme)) if (other.primaryIconTheme.$eq(0, _this.primaryIconTheme)) if (other.accentIconTheme.$eq(0, _this.accentIconTheme)) if (other.sliderTheme.$eq(0, _this.sliderTheme)) if (other.tabBarTheme.$eq(0, _this.tabBarTheme)) if (J.$eq$(other.tooltipTheme, _this.tooltipTheme)) if (other.cardTheme.$eq(0, _this.cardTheme)) if (J.$eq$(other.chipTheme, _this.chipTheme)) if (other.platform == _this.platform) if (other.materialTapTargetSize === _this.materialTapTargetSize) if (other.pageTransitionsTheme.$eq(0, _this.pageTransitionsTheme)) if (other.appBarTheme.$eq(0, _this.appBarTheme)) if (other.scrollbarTheme.$eq(0, _this.scrollbarTheme)) if (other.bottomAppBarTheme.$eq(0, _this.bottomAppBarTheme)) if (other.colorScheme.$eq(0, _this.colorScheme)) if (other.dialogTheme.$eq(0, _this.dialogTheme)) if (J.$eq$(other.floatingActionButtonTheme, _this.floatingActionButtonTheme)) if (J.$eq$(other.navigationRailTheme, _this.navigationRailTheme)) if (other.typography.$eq(0, _this.typography)) if (other.snackBarTheme.$eq(0, _this.snackBarTheme)) if (J.$eq$(other.bottomSheetTheme, _this.bottomSheetTheme)) if (J.$eq$(other.popupMenuTheme, _this.popupMenuTheme)) if (other.bannerTheme.$eq(0, _this.bannerTheme)) if (other.dividerTheme.$eq(0, _this.dividerTheme)) if (J.$eq$(other.buttonBarTheme, _this.buttonBarTheme)) if (other.bottomNavigationBarTheme.$eq(0, _this.bottomNavigationBarTheme)) if (other.timePickerTheme.$eq(0, _this.timePickerTheme)) if (J.$eq$(other.textButtonTheme, _this.textButtonTheme)) if (J.$eq$(other.elevatedButtonTheme, _this.elevatedButtonTheme)) if (J.$eq$(other.outlinedButtonTheme, _this.outlinedButtonTheme)) if (J.$eq$(other.textSelectionTheme, _this.textSelectionTheme)) if (other.dataTableTheme.$eq(0, _this.dataTableTheme)) if (other.checkboxTheme.$eq(0, _this.checkboxTheme)) if (other.radioTheme.$eq(0, _this.radioTheme)) if (other.switchTheme.$eq(0, _this.switchTheme)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashList([_this.visualDensity, _this.primaryColor, _this.primaryColorBrightness, _this.primaryColorLight, _this.primaryColorDark, _this.accentColor, _this.accentColorBrightness, _this.canvasColor, _this.shadowColor, _this.scaffoldBackgroundColor, _this.bottomAppBarColor, _this.cardColor, _this.dividerColor, _this.focusColor, _this.hoverColor, _this.highlightColor, _this.splashColor, _this.splashFactory, _this.selectedRowColor, _this.unselectedWidgetColor, _this.disabledColor, _this.buttonTheme, _this.buttonColor, _this.toggleButtonsTheme, _this.toggleableActiveColor, _this.secondaryHeaderColor, _this.textSelectionColor, _this.cursorColor, _this.textSelectionHandleColor, _this.backgroundColor, _this.dialogBackgroundColor, _this.indicatorColor, _this.hintColor, _this.errorColor, _this.textTheme, _this.primaryTextTheme, _this.accentTextTheme, _this.inputDecorationTheme, _this.iconTheme, _this.primaryIconTheme, _this.accentIconTheme, _this.sliderTheme, _this.tabBarTheme, _this.tooltipTheme, _this.cardTheme, _this.chipTheme, _this.platform, _this.materialTapTargetSize, false, _this.pageTransitionsTheme, _this.appBarTheme, _this.scrollbarTheme, _this.bottomAppBarTheme, _this.colorScheme, _this.dialogTheme, _this.floatingActionButtonTheme, _this.navigationRailTheme, _this.typography, _this.cupertinoOverrideTheme, _this.snackBarTheme, _this.bottomSheetTheme, _this.popupMenuTheme, _this.bannerTheme, _this.dividerTheme, _this.buttonBarTheme, _this.bottomNavigationBarTheme, _this.timePickerTheme, _this.textButtonTheme, _this.elevatedButtonTheme, _this.outlinedButtonTheme, _this.textSelectionTheme, _this.dataTableTheme, _this.checkboxTheme, _this.radioTheme, _this.switchTheme, false, true]); } }; X.ThemeData_localize_closure.prototype = { call$0: function() { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t1 = this.baseTheme, t2 = this.localTextGeometry, t3 = t2.merge$1(t1.primaryTextTheme), t4 = t2.merge$1(t1.accentTextTheme); t2 = t2.merge$1(t1.textTheme); t5 = t1.visualDensity; t6 = t1.primaryColor; t7 = t1.primaryColorBrightness; t8 = t1.primaryColorLight; t9 = t1.primaryColorDark; t10 = t1.accentColor; t11 = t1.accentColorBrightness; t12 = t1.canvasColor; t13 = t1.shadowColor; t14 = t1.scaffoldBackgroundColor; t15 = t1.bottomAppBarColor; t16 = t1.cardColor; t17 = t1.dividerColor; t18 = t1.focusColor; t19 = t1.hoverColor; t20 = t1.highlightColor; t21 = t1.splashColor; t22 = t1.splashFactory; t23 = t1.selectedRowColor; t24 = t1.unselectedWidgetColor; t25 = t1.disabledColor; t26 = t1.buttonColor; t27 = t1.buttonTheme; t28 = t1.toggleButtonsTheme; t29 = t1.secondaryHeaderColor; t30 = t1.textSelectionColor; t31 = t1.cursorColor; t32 = t1.textSelectionHandleColor; t33 = t1.backgroundColor; t34 = t1.dialogBackgroundColor; t35 = t1.indicatorColor; t36 = t1.hintColor; t37 = t1.errorColor; t38 = t1.toggleableActiveColor; t39 = t1.inputDecorationTheme; t40 = t1.iconTheme; t41 = t1.primaryIconTheme; t42 = t1.accentIconTheme; t43 = t1.sliderTheme; t44 = t1.tabBarTheme; t45 = t1.tooltipTheme; t46 = t1.cardTheme; t47 = t1.chipTheme; t48 = t1.platform; t49 = t1.materialTapTargetSize; t50 = t1.pageTransitionsTheme; t51 = t1.appBarTheme; t52 = t1.scrollbarTheme; t53 = t1.bottomAppBarTheme; t54 = t1.colorScheme; t55 = t1.dialogTheme; t56 = t1.floatingActionButtonTheme; t57 = t1.navigationRailTheme; t58 = t1.typography; t59 = t1.cupertinoOverrideTheme; t60 = t1.snackBarTheme; t61 = t1.bottomSheetTheme; t62 = t1.popupMenuTheme; t63 = t1.bannerTheme; t64 = t1.dividerTheme; t65 = t1.buttonBarTheme; t66 = t1.bottomNavigationBarTheme; t67 = t1.timePickerTheme; t68 = t1.textButtonTheme; t69 = t1.elevatedButtonTheme; t70 = t1.outlinedButtonTheme; t71 = t1.textSelectionTheme; t72 = t1.dataTableTheme; t73 = t1.checkboxTheme; t74 = t1.radioTheme; t1 = t1.switchTheme; return X.ThemeData$raw(t10, t11, t42, t4, t51, false, t33, t63, t15, t53, t66, t61, t65, t26, t27, t12, t16, t46, t73, t47, new A.ColorScheme(t54.primary, t54.primaryVariant, t54.secondary, t54.secondaryVariant, t54.surface, t54.background, t54.error, t54.onPrimary, t54.onSecondary, t54.onSurface, t54.onBackground, t54.onError, t54.brightness), t59, t31, t72, t34, t55, t25, t17, t64, t69, t37, false, t56, t18, t20, t36, t19, t40, t35, t39, t49, t57, t70, t50, t48, t62, t6, t7, t9, t8, t41, t3, t74, t14, t52, t29, t23, t13, t43, t60, t21, t22, t1, t44, t68, t30, t32, t71, t2, t67, t28, t38, t45, t58, t24, true, t5); }, $signature: 2175 }; X.MaterialBasedCupertinoThemeData.prototype = { get$brightness: function() { var t1 = this._cupertinoOverrideTheme.brightness; return t1 == null ? this._materialTheme.colorScheme.brightness : t1; }, get$primaryColor: function() { var t1 = this._cupertinoOverrideTheme.primaryColor; return t1 == null ? this._materialTheme.colorScheme.primary : t1; }, get$primaryContrastingColor: function() { var t1 = this._cupertinoOverrideTheme.primaryContrastingColor; return t1 == null ? this._materialTheme.colorScheme.onPrimary : t1; }, get$scaffoldBackgroundColor: function() { var t1 = this._cupertinoOverrideTheme.scaffoldBackgroundColor; return t1 == null ? this._materialTheme.scaffoldBackgroundColor : t1; }, resolveFrom$1: function(context) { return X.MaterialBasedCupertinoThemeData$_(this._materialTheme, this._cupertinoOverrideTheme.resolveFrom$1(context)); } }; X._IdentityThemeDataCacheKey.prototype = { get$hashCode: function(_) { return (H.objectHashCode(this.baseTheme) ^ H.objectHashCode(this.localTextGeometry)) >>> 0; }, $eq: function(_, other) { if (other == null) return false; return other instanceof X._IdentityThemeDataCacheKey && other.baseTheme == this.baseTheme && other.localTextGeometry === this.localTextGeometry; } }; X._FifoCache.prototype = { putIfAbsent$2: function(_, key, loader) { var t2, t1 = this._theme_data$_cache, result = t1.$index(0, key); if (result != null) return result; if (t1.get$length(t1) === this._maximumSize) { t2 = t1.get$keys(t1); t1.remove$1(0, t2.get$first(t2)); } t2 = loader.call$0(); t1.$indexSet(0, key, t2); return t2; } }; X.VisualDensity.prototype = { effectiveConstraints$1: function(constraints) { var t1 = this.horizontal, t2 = this.vertical, t3 = C.JSNumber_methods.clamp$2(constraints.minWidth + new P.Offset(t1, t2).$mul(0, 4)._dx, 0, 1 / 0); return constraints.copyWith$2$minHeight$minWidth(C.JSNumber_methods.clamp$2(constraints.minHeight + new P.Offset(t1, t2).$mul(0, 4)._dy, 0, 1 / 0), t3); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof X.VisualDensity && other.horizontal == this.horizontal && other.vertical == this.vertical; }, get$hashCode: function(_) { return P.hashValues(this.horizontal, this.vertical, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toStringShort$0: function() { return this.super$Diagnosticable$toStringShort() + "(h: " + E.debugFormatDouble(this.horizontal) + ", v: " + E.debugFormatDouble(this.vertical) + ")"; } }; X._ThemeData_Object_Diagnosticable.prototype = {}; X._VisualDensity_Object_Diagnosticable.prototype = {}; Z.DayPeriod.prototype = { toString$0: function(_) { return this._time$_name; } }; Z.TimeOfDay.prototype = { replacing$2$hour$minute: function(hour, minute) { var t1 = hour == null ? this.hour : hour; return new Z.TimeOfDay(t1, minute == null ? this.minute : minute); }, replacing$1$hour: function(hour) { return this.replacing$2$hour$minute(hour, null); }, replacing$1$minute: function(minute) { return this.replacing$2$hour$minute(null, minute); }, $eq: function(_, other) { if (other == null) return false; return other instanceof Z.TimeOfDay && other.hour === this.hour && other.minute === this.minute; }, get$hashCode: function(_) { return P.hashValues(this.hour, this.minute, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = new Z.TimeOfDay_toString__addLeadingZeroIfNeeded(), hourLabel = t1.call$1(this.hour), minuteLabel = t1.call$1(this.minute); return C.Type_TimeOfDay_JJ0.toString$0(0) + "(" + H.S(hourLabel) + ":" + H.S(minuteLabel) + ")"; } }; Z.TimeOfDay_toString__addLeadingZeroIfNeeded.prototype = { call$1: function(value) { if (value < 10) return "0" + value; return C.JSInt_methods.toString$0(value); }, $signature: 246 }; Z.TimeOfDayFormat.prototype = { toString$0: function(_) { return this._time$_name; } }; Z.HourFormat.prototype = { toString$0: function(_) { return this._time$_name; } }; M._TimePickerMode.prototype = { toString$0: function(_) { return this._time_picker0$_name; } }; M.TimePickerEntryMode.prototype = { toString$0: function(_) { return this._time_picker0$_name; } }; M._TimePickerFragmentContext.prototype = {}; M._TimePickerHeader.prototype = { _handleChangeMode$1: function(value) { if (value != this.mode) this.onModeChanged.call$1(value); }, build$1: function(_, context) { var timeOfDayFormat, t3, t4, fragmentContext, t5, t6, t7, controls, width, _this = this, _null = null, themeData = K.Theme_of(context), t1 = type$.MaterialLocalizations, t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t2.toString; timeOfDayFormat = t2.timeOfDayFormat$1$alwaysUse24HourFormat(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat); t2 = _this.selectedTime; t3 = _this.onChanged; t4 = _this.use24HourDials; fragmentContext = new M._TimePickerFragmentContext(t2, _this.mode, t3, _this.get$_handleChangeMode(), _this.onHourDoubleTapped, _this.onMinuteDoubleTapped, t4); t5 = _this.orientation; switch (t5) { case C.Orientation_0: t6 = type$.JSArray_Widget; t7 = H.setRuntimeTypeInfo([], t6); t4 = !t4; if (t4 && timeOfDayFormat === C.TimeOfDayFormat_5) C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new M._DayPeriodControl(t2, t5, t3, _null), C.SizedBox_12_null_null_null], t6)); t7.push(T.Expanded$(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(new M._HourControl(fragmentContext, _null), 1), new M._StringFragment(timeOfDayFormat, _null), T.Expanded$(new M._MinuteControl(fragmentContext, _null), 1)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, C.TextDirection_1), 1)); if (t4 && timeOfDayFormat !== C.TimeOfDayFormat_5) C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([C.SizedBox_12_null_null_null, new M._DayPeriodControl(t2, t5, t3, _null)], t6)); controls = T.Column$(H.setRuntimeTypeInfo([C.SizedBox_null_16_null_null, T.SizedBox$(T.Row$(t7, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), 96, _null)], t6), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); width = _null; break; case C.Orientation_1: t6 = type$.JSArray_Widget; t7 = H.setRuntimeTypeInfo([], t6); t4 = !t4; if (t4 && timeOfDayFormat === C.TimeOfDayFormat_5) t7.push(new M._DayPeriodControl(t2, t5, t3, _null)); t7.push(T.SizedBox$(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(new M._HourControl(fragmentContext, _null), 1), new M._StringFragment(timeOfDayFormat, _null), T.Expanded$(new M._MinuteControl(fragmentContext, _null), 1)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, C.TextDirection_1), 96, _null)); if (t4 && timeOfDayFormat !== C.TimeOfDayFormat_5) t7.push(new M._DayPeriodControl(t2, t5, t3, _null)); controls = T.Expanded$(T.Column$(t7, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_2, C.MainAxisSize_1, C.VerticalDirection_1), 1); width = 264; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t1.toString; t1 = t1.get$timePickerDialHelpText(); t2 = A.TimePickerTheme_of(context).helpTextStyle; return M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([C.SizedBox_null_16_null_null, L.Text$(t1, _null, _null, _null, _null, _null, t2 == null ? themeData.textTheme.overline : t2, _null, _null, _null), controls], type$.JSArray_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, C.EdgeInsets_24_0_24_0, _null, _null, width); } }; M._HourMinuteControl.prototype = { build$1: function(_, context) { var backgroundColor, style, shape, t2, states, t3, _this = this, _null = null, themeData = K.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), t1 = themeData.colorScheme, textColor = timePickerTheme.hourMinuteTextColor; if (textColor == null) textColor = V._MaterialStateColor$(new M._HourMinuteControl_build_closure(themeData)); backgroundColor = timePickerTheme.hourMinuteColor; if (backgroundColor == null) backgroundColor = V._MaterialStateColor$(new M._HourMinuteControl_build_closure0(themeData, t1.brightness === C.Brightness_0)); style = timePickerTheme.hourMinuteTextStyle; if (style == null) { t1 = themeData.textTheme.headline2; t1.toString; style = t1; } shape = timePickerTheme.hourMinuteShape; if (shape == null) shape = C.RoundedRectangleBorder_a510; t1 = _this.isSelected; t2 = type$.MaterialState; states = t1 ? P.LinkedHashSet_LinkedHashSet$_literal([C.MaterialState_4], t2) : P.LinkedHashSet_LinkedHashSet$_empty(t2); t2 = type$.nullable_Color; t3 = V.MaterialStateProperty_resolveAs(backgroundColor, states, t2); t1 = t1 ? _this.onDoubleTap : _null; return T.SizedBox$(M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, T.Center$(L.Text$(_this.text, _null, _null, _null, _null, _null, style.copyWith$1$color(V.MaterialStateProperty_resolveAs(textColor, states, t2)), _null, _null, 1), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _this.onTap, _null, _null, _null, _null, _null), C.Clip_2, t3, 0, _null, _null, shape, _null, C.MaterialType_0), 80, _null); }, text$0: function($receiver) { return this.text.call$0(); } }; M._HourMinuteControl_build_closure.prototype = { call$1: function(states) { var t1 = this.themeData.colorScheme; return states.contains$1(0, C.MaterialState_4) ? t1.primary : t1.onSurface; }, $signature: 111 }; M._HourMinuteControl_build_closure0.prototype = { call$1: function(states) { var t2, t1 = this.themeData.colorScheme; if (states.contains$1(0, C.MaterialState_4)) { t1 = t1.primary; t2 = this.isDark ? 0.24 : 0.12; t1.toString; t1 = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } else { t1 = t1.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; }, $signature: 111 }; M._HourControl.prototype = { build$1: function(_, context) { var t2, formattedHour, t3, nextHour, formattedNextHour, previousHour, formattedPreviousHour, _this = this, _null = null, alwaysUse24HourFormat = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this.fragmentContext; formattedHour = t1.formatHour$2$alwaysUse24HourFormat(t2.selectedTime, alwaysUse24HourFormat); t3 = new M._HourControl_build_hoursFromSelected(_this); nextHour = t3.call$1(1); formattedNextHour = t1.formatHour$2$alwaysUse24HourFormat(nextHour, alwaysUse24HourFormat); previousHour = t3.call$1(-1); formattedPreviousHour = t1.formatHour$2$alwaysUse24HourFormat(previousHour, alwaysUse24HourFormat); t1 = t1.get$timePickerHourModeAnnouncement() + " " + formattedHour; t3 = M.Feedback_wrapForTap(new M._HourControl_build_closure(_this), context); t3.toString; return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, formattedPreviousHour, _null, _null, _null, _null, _null, _null, _null, _null, _null, formattedNextHour, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new M._HourControl_build_closure0(_this, previousHour), _null, _null, _null, new M._HourControl_build_closure1(_this, nextHour), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1), false, false, true, new M._HourMinuteControl(formattedHour, t3, t2.onHourDoubleTapped, t2.mode === C._TimePickerMode_0, _null), _null); } }; M._HourControl_build_hoursFromSelected.prototype = { call$1: function(hoursToAdd) { var t3, periodOffset, t1 = this.$this.fragmentContext, t2 = t1.selectedTime; if (t1.use24HourDials) return t2.replacing$1$hour(C.JSInt_methods.$mod(t2.hour + hoursToAdd, 24)); else { t1 = t2.hour; t3 = t1 < 12; periodOffset = (t3 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12; return t2.replacing$1$hour(periodOffset + C.JSInt_methods.$mod(t1 - ((t3 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12) + hoursToAdd, 12)); } }, $signature: 2179 }; M._HourControl_build_closure1.prototype = { call$0: function() { this.$this.fragmentContext.onTimeChange.call$1(this.nextHour); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._HourControl_build_closure0.prototype = { call$0: function() { this.$this.fragmentContext.onTimeChange.call$1(this.previousHour); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._HourControl_build_closure.prototype = { call$0: function() { return this.$this.fragmentContext.onModeChange.call$1(C._TimePickerMode_0); }, $signature: 0 }; M._StringFragment.prototype = { _stringFragmentValue$1: function(timeOfDayFormat) { switch (timeOfDayFormat) { case C.TimeOfDayFormat_4: case C.TimeOfDayFormat_5: case C.TimeOfDayFormat_3: case C.TimeOfDayFormat_0: return ":"; case C.TimeOfDayFormat_1: return "."; case C.TimeOfDayFormat_2: return "h"; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t1, textColor, _null = null, theme = K.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), hourMinuteStyle = timePickerTheme.hourMinuteTextStyle; if (hourMinuteStyle == null) { t1 = theme.textTheme.headline2; t1.toString; hourMinuteStyle = t1; } textColor = timePickerTheme.hourMinuteTextColor; if (textColor == null) textColor = theme.colorScheme.onSurface; return new T.ExcludeSemantics(true, new T.Padding(C.EdgeInsets_6_0_6_0, T.Center$(L.Text$(this._stringFragmentValue$1(this.timeOfDayFormat), _null, _null, _null, _null, _null, hourMinuteStyle.apply$1$color(V.MaterialStateProperty_resolveAs(textColor, P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState), type$.nullable_Color)), _null, _null, 1), _null, _null), _null), _null); } }; M._MinuteControl.prototype = { build$1: function(_, context) { var t2, t3, formattedMinute, t4, nextMinute, formattedNextMinute, previousMinute, formattedPreviousMinute, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this.fragmentContext; t3 = t2.selectedTime; formattedMinute = t1.formatMinute$1(t3); t4 = t3.minute; nextMinute = t3.replacing$1$minute(C.JSInt_methods.$mod(t4 + 1, 60)); formattedNextMinute = t1.formatMinute$1(nextMinute); previousMinute = t3.replacing$1$minute(C.JSInt_methods.$mod(t4 - 1, 60)); formattedPreviousMinute = t1.formatMinute$1(previousMinute); t1 = t1.get$timePickerMinuteModeAnnouncement() + " " + formattedMinute; t4 = M.Feedback_wrapForTap(new M._MinuteControl_build_closure(_this), context); t4.toString; return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, formattedPreviousMinute, _null, _null, _null, _null, _null, _null, _null, _null, _null, formattedNextMinute, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new M._MinuteControl_build_closure0(_this, previousMinute), _null, _null, _null, new M._MinuteControl_build_closure1(_this, nextMinute), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1), false, false, true, new M._HourMinuteControl(formattedMinute, t4, t2.onMinuteDoubleTapped, t2.mode === C._TimePickerMode_1, _null), _null); } }; M._MinuteControl_build_closure1.prototype = { call$0: function() { this.$this.fragmentContext.onTimeChange.call$1(this.nextMinute); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._MinuteControl_build_closure0.prototype = { call$0: function() { this.$this.fragmentContext.onTimeChange.call$1(this.previousMinute); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._MinuteControl_build_closure.prototype = { call$0: function() { return this.$this.fragmentContext.onModeChange.call$1(C._TimePickerMode_1); }, $signature: 0 }; M._DayPeriodControl.prototype = { _togglePeriod$0: function() { var t1 = this.selectedTime; this.onChanged.call$1(t1.replacing$1$hour(C.JSInt_methods.$mod(t1.hour + 12, 24))); }, _setAm$1: function(context) { var t1, t2; if ((this.selectedTime.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0) return; switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$anteMeridiemAbbreviation(); t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; S.SemanticsService_announce(t1, t2.textDirection); break; case C.TargetPlatform_2: case C.TargetPlatform_4: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } this._togglePeriod$0(); }, _setPm$1: function(context) { var t1, t2; if ((this.selectedTime.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_1) return; switch (K.Theme_of(context).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t1 = t1.get$postMeridiemAbbreviation(); t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; S.SemanticsService_announce(t1, t2.textDirection); break; case C.TargetPlatform_2: case C.TargetPlatform_4: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } this._togglePeriod$0(); }, build$1: function(_, context) { var colorScheme, timePickerTheme, textColor, backgroundColor, amSelected, t2, amStates, pmSelected, pmStates, textStyle, amStyle, pmStyle, shape, borderSide, t3, buttonTextScaleFactor, t4, t5, amButton, pmButton, result, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; colorScheme = K.Theme_of(context).colorScheme; timePickerTheme = A.TimePickerTheme_of(context); textColor = timePickerTheme.dayPeriodTextColor; if (textColor == null) textColor = V._MaterialStateColor$(new M._DayPeriodControl_build_closure(colorScheme)); backgroundColor = timePickerTheme.dayPeriodColor; if (backgroundColor == null) backgroundColor = V._MaterialStateColor$(new M._DayPeriodControl_build_closure0(colorScheme, colorScheme.brightness === C.Brightness_0)); amSelected = (_this.selectedTime.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0; t2 = type$.MaterialState; amStates = amSelected ? P.LinkedHashSet_LinkedHashSet$_literal([C.MaterialState_4], t2) : P.LinkedHashSet_LinkedHashSet$_empty(t2); pmSelected = !amSelected; pmStates = pmSelected ? P.LinkedHashSet_LinkedHashSet$_literal([C.MaterialState_4], t2) : P.LinkedHashSet_LinkedHashSet$_empty(t2); textStyle = timePickerTheme.dayPeriodTextStyle; if (textStyle == null) { t2 = K.Theme_of(context).textTheme.subtitle1; t2.toString; textStyle = t2; } t2 = type$.nullable_Color; amStyle = textStyle.copyWith$1$color(V.MaterialStateProperty_resolveAs(textColor, amStates, t2)); pmStyle = textStyle.copyWith$1$color(V.MaterialStateProperty_resolveAs(textColor, pmStates, t2)); shape = timePickerTheme.dayPeriodShape; if (shape == null) shape = C.RoundedRectangleBorder_a510; borderSide = timePickerTheme.dayPeriodBorderSide; if (borderSide == null) { t3 = colorScheme.onBackground.value; borderSide = new Y.BorderSide(P.Color_alphaBlend(P.Color$fromARGB(97, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255), colorScheme.surface), 1, C.BorderStyle_1); } shape = shape.copyWith$1$side(borderSide); buttonTextScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor, 2); t3 = V.MaterialStateProperty_resolveAs(backgroundColor, amStates, t2); t4 = M.Feedback_wrapForTap(new M._DayPeriodControl_build_closure1(_this, context), context); t5 = T.Center$(L.Text$(t1.get$anteMeridiemAbbreviation(), _null, _null, _null, _null, _null, amStyle, _null, _null, buttonTextScaleFactor), _null, _null); amButton = M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, new T.Semantics(A.SemanticsProperties$(true, amSelected, _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, _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, false, false, t5, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null), C.Clip_0, t3, 0, _null, _null, _null, _null, C.MaterialType_0); t2 = V.MaterialStateProperty_resolveAs(backgroundColor, pmStates, t2); t3 = M.Feedback_wrapForTap(new M._DayPeriodControl_build_closure2(_this, context), context); t1 = T.Center$(L.Text$(t1.get$postMeridiemAbbreviation(), _null, _null, _null, _null, _null, pmStyle, _null, _null, buttonTextScaleFactor), _null, _null); pmButton = M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, new T.Semantics(A.SemanticsProperties$(true, pmSelected, _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, _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, false, false, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null), C.Clip_0, t2, 0, _null, _null, _null, _null, C.MaterialType_0); t1 = _this.orientation; switch (t1) { case C.Orientation_0: result = M._DayPeriodInputPadding$(T.SizedBox$(M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([T.Expanded$(amButton, 1), M.Container$(_null, _null, C.Clip_0, _null, _null, new S.BoxDecoration(_null, _null, new F.Border(borderSide, C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u), _null, _null, _null, C.BoxShape_0), _null, 1, _null, _null, _null, _null, _null, _null), T.Expanded$(pmButton, 1)], type$.JSArray_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_2, C.Color_0, 0, _null, _null, shape, _null, C.MaterialType_0), 80, 52), C.Size_52_96, t1); break; case C.Orientation_1: result = M._DayPeriodInputPadding$(T.SizedBox$(M.Material$(C.Duration_200000, true, _null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(amButton, 1), M.Container$(_null, _null, C.Clip_0, _null, _null, new S.BoxDecoration(_null, _null, new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u, borderSide), _null, _null, _null, C.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, 1), T.Expanded$(pmButton, 1)], type$.JSArray_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_2, C.Color_0, 0, _null, _null, shape, _null, C.MaterialType_0), 40, _null), C.Size_0_48, t1); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return result; } }; M._DayPeriodControl_build_closure.prototype = { call$1: function(states) { var t1 = this.colorScheme; if (states.contains$1(0, C.MaterialState_4)) t1 = t1.primary; else { t1 = t1.onSurface.value; t1 = P.Color$fromARGB(153, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return t1; }, $signature: 111 }; M._DayPeriodControl_build_closure0.prototype = { call$1: function(states) { var t1, t2; if (states.contains$1(0, C.MaterialState_4)) { t1 = this.colorScheme.primary; t2 = this.isDark ? 0.24 : 0.12; t1.toString; t1 = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t2), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); } else t1 = C.Color_0; return t1; }, $signature: 111 }; M._DayPeriodControl_build_closure1.prototype = { call$0: function() { return this.$this._setAm$1(this.context); }, $signature: 0 }; M._DayPeriodControl_build_closure2.prototype = { call$0: function() { return this.$this._setPm$1(this.context); }, $signature: 0 }; M._DayPeriodInputPadding.prototype = { createRenderObject$1: function(context) { var t1 = new M._RenderInputPadding1(this.orientation, this.minSize, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$minSize(this.minSize); } }; M._RenderInputPadding1.prototype = { set$minSize: function(value) { if (this._minSize.$eq(0, value)) return; this._minSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); t2 = this._minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMinIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); t2 = this._minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); t2 = this._minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dx)); } return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); t2 = this._minSize; return Math.max(H.checkNum(t1), H.checkNum(t2._dy)); } return 0; }, _time_picker0$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var childSize, t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = layoutChild.call$2(t1, constraints); t1 = childSize._dx; t2 = this._minSize; return constraints.constrain$1(new P.Size(Math.max(H.checkNum(t1), H.checkNum(t2._dx)), Math.max(H.checkNum(childSize._dy), H.checkNum(t2._dy)))); } return C.Size_0_0; }, computeDryLayout$1: function(constraints) { return this._time_picker0$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { var t2, t3, _this = this, t1 = _this._time_picker0$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) { t3 = t2.parentData; t3.toString; type$.BoxParentData._as(t3); t2 = t2._box$_size; t2.toString; t3.offset = C.Alignment_0_0.alongOffset$1(type$.Offset._as(t1.$sub(0, t2))); } }, hitTest$2$position: function(result, position) { var t1, t2, t3, t4, newPosition, _this = this, _box_0 = {}; if (_this.super$RenderBox$hitTest(result, position)) return true; t1 = position._dx; if (!(t1 < 0)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t3 = t2._dx; t4 = _this._minSize; if (!(t1 > Math.max(H.checkNum(t3), H.checkNum(t4._dx)))) { t3 = position._dy; t2 = t3 < 0 || t3 > Math.max(H.checkNum(t2._dy), H.checkNum(t4._dy)); } else t2 = true; } else t2 = true; if (t2) return false; newPosition = _box_0.newPosition = _this.RenderObjectWithChildMixin__child._box$_size.center$1(C.Offset_0_0); switch (_this.orientation) { case C.Orientation_0: if (position._dy > newPosition._dy) { newPosition = newPosition.$add(0, C.Offset_0_1); _box_0.newPosition = newPosition; t1 = newPosition; } else { newPosition = newPosition.$add(0, C.Offset_0_m1); _box_0.newPosition = newPosition; t1 = newPosition; } break; case C.Orientation_1: if (t1 > newPosition._dx) { newPosition = newPosition.$add(0, C.Offset_1_0); _box_0.newPosition = newPosition; t1 = newPosition; } else { newPosition = newPosition.$add(0, C.Offset_m1_0); _box_0.newPosition = newPosition; t1 = newPosition; } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return result.addWithRawTransform$3$hitTest$position$transform(new M._RenderInputPadding_hitTest_closure1(_box_0, _this), t1, T.MatrixUtils_forceToPoint(t1)); } }; M._RenderInputPadding_hitTest_closure1.prototype = { call$2: function(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this._box_0.newPosition); }, $signature: 285 }; M._TappableLabel.prototype = { get$value: function(receiver) { return this.value; } }; M._DialPainter.prototype = { paint$2: function(canvas, size) { var t2, t3, t4, selectorPaint, focusedPoint, focusedRect, _this = this, radius = size.get$shortestSide() / 2, center = new P.Offset(size._dx / 2, size._dy / 2), t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1.set$color(0, _this.backgroundColor); canvas.drawCircle$3(0, center, radius, t1); t1 = new M._DialPainter_paint_getOffsetForTheta(center, radius - 28); t2 = new M._DialPainter_paint_paintLabels(canvas, t1); t3 = _this.primaryLabels; t2.call$1(t3); t4 = H._detectRenderer(); selectorPaint = t4 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); selectorPaint.set$color(0, _this.accentColor); t4 = _this.theta; focusedPoint = t1.call$1(t4); canvas.drawCircle$3(0, center, 4, selectorPaint); canvas.drawCircle$3(0, focusedPoint, 24, selectorPaint); selectorPaint.set$strokeWidth(2); canvas.drawLine$3(0, center, focusedPoint, selectorPaint); t1 = C.JSNumber_methods.$mod(t4, -6.283185307179586 / t3.length); if (t1 > 0.1 && t1 < 0.45) { selectorPaint.set$color(0, _this.dotColor); canvas.drawCircle$3(0, focusedPoint, 2, selectorPaint); } focusedRect = P.Rect$fromCircle(focusedPoint, 24); canvas.save$0(0); t1 = P.Path_Path(); t1.addOval$1(0, focusedRect); canvas.clipPath$1(0, t1); t2.call$1(_this.secondaryLabels); canvas.restore$0(0); }, shouldRepaint$1: function(oldPainter) { var _this = this; return oldPainter.primaryLabels !== _this.primaryLabels || oldPainter.secondaryLabels !== _this.secondaryLabels || !oldPainter.backgroundColor.$eq(0, _this.backgroundColor) || !J.$eq$(oldPainter.accentColor, _this.accentColor) || oldPainter.theta != _this.theta; } }; M._DialPainter_paint_getOffsetForTheta.prototype = { call$1: function(theta) { var t1 = this.labelRadius; return this.center.$add(0, new P.Offset(t1 * Math.cos(H.checkNum(theta)), -t1 * Math.sin(H.checkNum(theta)))); }, $signature: 2180 }; M._DialPainter_paint_paintLabels.prototype = { call$1: function(labels) { var t2, t3, labelTheta, _i, labelPainter, t4, t5, t6, t7, t8, t1 = labels.length, labelThetaIncrement = -6.283185307179586 / t1; for (t2 = this.canvas, t3 = this.getOffsetForTheta, labelTheta = 1.5707963267948966, _i = 0; _i < labels.length; labels.length === t1 || (0, H.throwConcurrentModificationError)(labels), ++_i) { labelPainter = labels[_i].painter; t4 = labelPainter._textWidthBasis; t5 = labelPainter._text_painter$_paragraph; t4 = t4 === C.TextWidthBasis_1 ? t5.get$longestLine() : t5.get$width(t5); t4.toString; t4 = Math.ceil(t4); t5 = labelPainter._text_painter$_paragraph; t5 = t5.get$height(t5); t5.toString; t5 = Math.ceil(t5); t6 = t3.call$1(labelTheta); t7 = t6._dx; t6 = t6._dy; t8 = labelPainter._text_painter$_paragraph; t8.toString; t2.drawParagraph$2(0, t8, new P.Offset(t7 + -t4 / 2, t6 + -t5 / 2)); labelTheta += labelThetaIncrement; } }, $signature: 2181 }; M._Dial.prototype = { createState$0: function() { return new M._DialState(null, C._StateLifecycle_0); } }; M._DialState.prototype = { initState$0: function() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); _this.___DialState__thetaController = G.AnimationController$(_null, C.Duration_200000, 0, _null, 1, _null, _this); _this.___DialState__thetaTween = new R.Tween(_this._getThetaForTime$1(_this._widget.selectedTime), _null, type$.Tween_double); t1 = _this.get$_thetaController(); t1.toString; t2 = type$.Animation_double; t2._as(t1); t3 = _this.get$_thetaTween(); t1 = t2._as(new R._AnimatedEvaluation(t1, new R.CurveTween(C.Cubic_ifx), type$.CurveTween._eval$1("_AnimatedEvaluation"))); t3.toString; t1.addListener$1(0, new M._DialState_initState_closure(_this)); _this.___DialState__theta = new R._AnimatedEvaluation(t1, t3, H._instanceType(t3)._eval$1("_AnimatedEvaluation")); }, get$themeData: function() { var t1 = this.___DialState_themeData; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("themeData")) : t1; }, get$localizations: function() { var t1 = this.___DialState_localizations; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("localizations")) : t1; }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$__DialState_State_SingleTickerProviderStateMixin$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; _this.___DialState_themeData = K.Theme_of(t1); t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___DialState_localizations = t1; _this.___DialState_media = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; if (t1.mode != oldWidget.mode || !J.$eq$(t1.selectedTime, oldWidget.selectedTime)) if (!_this._time_picker0$_dragging) _this._animateTo$1(_this._getThetaForTime$1(_this._widget.selectedTime)); }, dispose$0: function(_) { this.get$_thetaController().dispose$0(0); this.super$__DialState_State_SingleTickerProviderStateMixin$dispose(0); }, get$_thetaTween: function() { var t1 = this.___DialState__thetaTween; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_thetaTween")) : t1; }, get$_theta: function() { var t1 = this.___DialState__theta; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_theta")) : t1; }, get$_thetaController: function() { var t1 = this.___DialState__thetaController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_thetaController")) : t1; }, _animateTo$1: function(targetTheta) { var t1 = this.get$_theta(), currentTheta = t1.get$value(t1), beginTheta = M._DialState__nearest(targetTheta, M._DialState__nearest(targetTheta, currentTheta, currentTheta + 6.283185307179586), currentTheta - 6.283185307179586); t1 = this.get$_thetaTween(); t1.set$begin(beginTheta); t1.set$end(0, targetTheta); t1 = this.get$_thetaController(); t1.set$value(0, 0); t1.forward$0(0); }, _getThetaForTime$1: function(time) { var t1 = this._widget, hoursFactor = t1.use24HourDials ? 24 : 12; return C.JSNumber_methods.$mod(1.5707963267948966 - (t1.mode === C._TimePickerMode_0 ? C.JSNumber_methods.$mod(time.hour / hoursFactor, hoursFactor) : C.JSNumber_methods.$mod(time.minute / 60, 60)) * 6.283185307179586, 6.283185307179586); }, _getTimeForTheta$2$roundMinutes: function(theta, roundMinutes) { var newHour, minute, fraction = C.JSNumber_methods.$mod(0.25 - C.JSNumber_methods.$mod(theta, 6.283185307179586) / 6.283185307179586, 1), t1 = this._widget; if (t1.mode === C._TimePickerMode_0) { if (t1.use24HourDials) newHour = C.JSInt_methods.$mod(C.JSNumber_methods.round$0(fraction * 24), 24); else { newHour = C.JSInt_methods.$mod(C.JSNumber_methods.round$0(fraction * 12), 12); newHour += (t1.selectedTime.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12; } return t1.selectedTime.replacing$1$hour(newHour); } else { minute = C.JSInt_methods.$mod(C.JSNumber_methods.round$0(fraction * 60), 60); if (roundMinutes) minute = C.JSInt_methods.$mod(C.JSInt_methods._tdivFast$1(minute + 2, 5) * 5, 60); return t1.selectedTime.replacing$1$minute(minute); } }, _notifyOnChangedIfNeeded$1$roundMinutes: function(roundMinutes) { var _this = this, t1 = _this.get$_theta(), current = _this._getTimeForTheta$2$roundMinutes(t1.get$value(t1), roundMinutes); t1 = _this._widget; if (!current.$eq(0, t1.selectedTime)) _this._widget.onChanged.call$1(current); return current; }, _notifyOnChangedIfNeeded$0: function() { return this._notifyOnChangedIfNeeded$1$roundMinutes(false); }, _updateThetaForPan$1$roundMinutes: function(roundMinutes) { this.setState$1(new M._DialState__updateThetaForPan_closure(this, roundMinutes)); }, _updateThetaForPan$0: function() { return this._updateThetaForPan$1$roundMinutes(false); }, _handlePanStart$1: function(details) { var t1, _this = this; _this._time_picker0$_dragging = true; t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); _this._time_picker0$_position = t1.globalToLocal$1(details.globalPosition); _this._time_picker0$_center = t1._box$_size.center$1(C.Offset_0_0); _this._updateThetaForPan$0(); _this._notifyOnChangedIfNeeded$0(); }, _handlePanUpdate$1: function(details) { var _this = this, t1 = _this._time_picker0$_position; t1.toString; _this._time_picker0$_position = t1.$add(0, details.delta); _this._updateThetaForPan$0(); _this._notifyOnChangedIfNeeded$0(); }, _handlePanEnd$1: function(details) { var t1, _this = this; _this._time_picker0$_dragging = false; _this._time_picker0$_center = _this._time_picker0$_position = null; _this._animateTo$1(_this._getThetaForTime$1(_this._widget.selectedTime)); t1 = _this._widget; if (t1.mode === C._TimePickerMode_0) t1.onHourSelected.call$0(); }, _time_picker0$_handleTapUp$1: function(details) { var newTime, t2, t3, _this = this, t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); _this._time_picker0$_position = t1.globalToLocal$1(details.globalPosition); _this._time_picker0$_center = t1._box$_size.center$1(C.Offset_0_0); _this._updateThetaForPan$1$roundMinutes(true); newTime = _this._notifyOnChangedIfNeeded$1$roundMinutes(true); t1 = _this._widget; if (t1.mode === C._TimePickerMode_0) { t1 = t1.use24HourDials; t2 = _this._framework$_element; t3 = newTime.hour; if (t1) { t2.toString; t1 = _this.get$localizations().formatDecimal$1(t3); t2 = t2.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; S.SemanticsService_announce(t1, t2.textDirection); } else { t2.toString; t1 = _this.get$localizations(); t1 = t1.formatDecimal$1(t3 - ((t3 < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12)); t2 = t2.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; S.SemanticsService_announce(t1, t2.textDirection); } _this._widget.onHourSelected.call$0(); } else { t1 = _this._framework$_element; t1.toString; t2 = _this.get$localizations().formatDecimal$1(newTime.minute); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; S.SemanticsService_announce(t2, t1.textDirection); } t1 = _this.get$_theta(); _this._animateTo$1(_this._getThetaForTime$1(_this._getTimeForTheta$2$roundMinutes(t1.get$value(t1), true))); _this._time_picker0$_dragging = false; _this._time_picker0$_center = _this._time_picker0$_position = null; }, _selectHour$1: function(hour) { var t2, time, angle, _this = this, t1 = _this._framework$_element; t1.toString; t2 = _this.get$localizations().formatDecimal$1(hour); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; S.SemanticsService_announce(t2, t1.textDirection); t1 = _this._widget; if (t1.mode === C._TimePickerMode_0 && t1.use24HourDials) time = new Z.TimeOfDay(hour, t1.selectedTime.minute); else { t1 = t1.selectedTime; t2 = t1.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1; t1 = t1.minute; time = t2 === C.DayPeriod_0 ? new Z.TimeOfDay(hour, t1) : new Z.TimeOfDay(hour + 12, t1); } angle = _this._getThetaForTime$1(time); t1 = _this.get$_thetaTween(); t1.set$begin(angle); t1.set$end(0, angle); _this._notifyOnChangedIfNeeded$0(); }, _buildTappableLabel$5: function(textTheme, color, value, label, onTap) { var _null = null, style = textTheme.bodyText1.copyWith$1$color(color), labelScaleFactor = Math.min(this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.textScaleFactor, 2), t1 = U.TextPainter$(_null, _null, _null, _null, Q.TextSpan$(_null, _null, style, label), C.TextAlign_4, C.TextDirection_1, _null, labelScaleFactor, C.TextWidthBasis_0); t1.layout$0(0); return new M._TappableLabel(value, t1); }, _build24HourRing$2: function(textTheme, color) { var _i, timeOfDay, t2, t3, _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = C.List_htm1[_i]; t2 = _this.___DialState_localizations; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("localizations")); t3 = _this.___DialState_media; t1.push(_this._buildTappableLabel$5(textTheme, color, timeOfDay.hour, t2.formatHour$2$alwaysUse24HourFormat(timeOfDay, (t3 === $ ? H.throwExpression(H.LateError$fieldNI("media")) : t3).alwaysUse24HourFormat), new M._DialState__build24HourRing_closure(_this, timeOfDay))); } return t1; }, _build12HourRing$2: function(textTheme, color) { var _i, timeOfDay, t2, t3, _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = C.List_htm0[_i]; t2 = _this.___DialState_localizations; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("localizations")); t3 = _this.___DialState_media; t1.push(_this._buildTappableLabel$5(textTheme, color, timeOfDay.hour, t2.formatHour$2$alwaysUse24HourFormat(timeOfDay, (t3 === $ ? H.throwExpression(H.LateError$fieldNI("media")) : t3).alwaysUse24HourFormat), new M._DialState__build12HourRing_closure(_this, timeOfDay))); } return t1; }, _buildMinutes$2: function(textTheme, color) { var _i, timeOfDay, t2, t1 = H.setRuntimeTypeInfo([], type$.JSArray__TappableLabel); for (_i = 0; _i < 12; ++_i) { timeOfDay = C.List_htm[_i]; t2 = this.___DialState_localizations; t1.push(this._buildTappableLabel$5(textTheme, color, timeOfDay.minute, (t2 === $ ? H.throwExpression(H.LateError$fieldNI("localizations")) : t2).formatMinute$1(timeOfDay), new M._DialState__buildMinutes_closure(this, timeOfDay))); } return t1; }, build$1: function(_, context) { var t1, accentColor, t2, t3, primaryLabelColor, secondaryLabelColor, primaryLabels, secondaryLabels, _this = this, _null = null, theme = K.Theme_of(context), pickerTheme = A.TimePickerTheme_of(context), backgroundColor = pickerTheme.dialBackgroundColor; if (backgroundColor == null) { t1 = _this.get$themeData().colorScheme.onBackground.value; backgroundColor = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } accentColor = pickerTheme.dialHandColor; if (accentColor == null) accentColor = _this.get$themeData().colorScheme.primary; t1 = pickerTheme.dialTextColor; t2 = type$.MaterialState; t3 = type$.nullable_Color; primaryLabelColor = V.MaterialStateProperty_resolveAs(t1, P.LinkedHashSet_LinkedHashSet$_empty(t2), t3); if (primaryLabelColor == null) primaryLabelColor = _this.get$themeData().colorScheme.onSurface; secondaryLabelColor = V.MaterialStateProperty_resolveAs(t1, P.LinkedHashSet_LinkedHashSet$_literal([C.MaterialState_4], t2), t3); if (secondaryLabelColor == null) secondaryLabelColor = _this.get$themeData().colorScheme.onPrimary; t1 = _this._widget; switch (t1.mode) { case C._TimePickerMode_0: t2 = t1.use24HourDials; t1 = t1.selectedTime; if (t2) { t1.toString; t1 = theme.textTheme; primaryLabels = _this._build24HourRing$2(t1, primaryLabelColor); secondaryLabels = _this._build24HourRing$2(t1, secondaryLabelColor); } else { (t1.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0; t1 = theme.textTheme; primaryLabels = _this._build12HourRing$2(t1, primaryLabelColor); secondaryLabels = _this._build12HourRing$2(t1, secondaryLabelColor); } break; case C._TimePickerMode_1: t1.selectedTime.toString; t1 = theme.textTheme; primaryLabels = _this._buildMinutes$2(t1, primaryLabelColor); secondaryLabels = _this._buildMinutes$2(t1, secondaryLabelColor); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = theme.colorScheme; t2 = _this.get$_theta(); t2 = t2.get$value(t2); context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality).toString; return D.GestureDetector$(_null, T.CustomPaint$(_null, _null, C.ValueKey_U86, new M._DialPainter(primaryLabels, secondaryLabels, backgroundColor, accentColor, t1.surface, t2, $.PaintingBinding__instance.PaintingBinding__systemFonts), C.Size_0_0), C.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_handlePanEnd(), _this.get$_handlePanStart(), _this.get$_handlePanUpdate(), _null, _null, _null, _null, _null, _null, _this.get$_time_picker0$_handleTapUp(), _null, _null, _null); } }; M._DialState_initState_closure.prototype = { call$0: function() { return this.$this.setState$1(new M._DialState_initState__closure()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._DialState_initState__closure.prototype = { call$0: function() { }, $signature: 0 }; M._DialState__updateThetaForPan_closure.prototype = { call$0: function() { var t3, offset, angle, t1 = this.$this, t2 = t1._time_picker0$_position; t2.toString; t3 = t1._time_picker0$_center; t3.toString; offset = t2.$sub(0, t3); angle = C.JSNumber_methods.$mod(Math.atan2(H.checkNum(offset._dx), H.checkNum(offset._dy)) - 1.5707963267948966, 6.283185307179586); if (this.roundMinutes) angle = t1._getThetaForTime$1(t1._getTimeForTheta$2$roundMinutes(angle, true)); t1 = t1.get$_thetaTween(); t1.set$begin(angle); t1.set$end(0, angle); }, $signature: 0 }; M._DialState__build24HourRing_closure.prototype = { call$0: function() { this.$this._selectHour$1(this.timeOfDay.hour); }, $signature: 0 }; M._DialState__build12HourRing_closure.prototype = { call$0: function() { this.$this._selectHour$1(this.timeOfDay.hour); }, $signature: 0 }; M._DialState__buildMinutes_closure.prototype = { call$0: function() { var t4, angle, t1 = this.$this, t2 = this.timeOfDay.minute, t3 = t1._framework$_element; t3.toString; t4 = t1.get$localizations().formatDecimal$1(t2); t3 = t3.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t3.toString; S.SemanticsService_announce(t4, t3.textDirection); angle = t1._getThetaForTime$1(new Z.TimeOfDay(t1._widget.selectedTime.hour, t2)); t2 = t1.get$_thetaTween(); t2.set$begin(angle); t2.set$end(0, angle); t1._notifyOnChangedIfNeeded$0(); }, $signature: 0 }; M._TimePickerInput.prototype = { createState$0: function() { return new M._TimePickerInputState(C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); } }; M._TimePickerInputState.prototype = { get$_selectedTime: function() { var t1 = this.___TimePickerInputState__selectedTime; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_selectedTime")) : t1; }, initState$0: function() { this.super$State$initState(); this.___TimePickerInputState__selectedTime = this._widget.initialSelectedTime; }, _parseHour$1: function(value) { var newHour, t1, _null = null; if (value == null) return _null; newHour = H.Primitives_parseInt(value, _null); if (newHour == null) return _null; if (this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.alwaysUse24HourFormat) { if (newHour >= 0 && newHour < 24) return newHour; } else if (newHour > 0 && newHour < 13) { if (!((this.get$_selectedTime().hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_1 && newHour !== 12)) t1 = (this.get$_selectedTime().hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 && newHour === 12; else t1 = true; return t1 ? C.JSInt_methods.$mod(newHour + 12, 24) : newHour; } return _null; }, _parseMinute$1: function(value) { var newMinute, _null = null; if (value == null) return _null; newMinute = H.Primitives_parseInt(value, _null); if (newMinute == null) return _null; if (newMinute >= 0 && newMinute < 60) return newMinute; return _null; }, _handleHourSavedSubmitted$1: function(value) { var t1, _this = this, newHour = _this._parseHour$1(value); if (newHour != null) { _this.___TimePickerInputState__selectedTime = new Z.TimeOfDay(newHour, _this.get$_selectedTime().minute); t1 = _this._widget; t1.toString; t1.onChanged$1(_this.get$_selectedTime()); } }, _handleHourChanged$1: function(value) { var t1; if (this._parseHour$1(value) != null && value.length === 2) { t1 = this._framework$_element; t1.toString; t1 = L.FocusScope_of(t1); t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); } }, _handleMinuteSavedSubmitted$1: function(value) { var t1, _this = this; if (_this._parseMinute$1(value) != null) { t1 = _this.get$_selectedTime().hour; value.toString; _this.___TimePickerInputState__selectedTime = new Z.TimeOfDay(t1, P.int_parse(value, null)); t1 = _this._widget; t1.toString; t1.onChanged$1(_this.get$_selectedTime()); } }, _handleDayPeriodChanged$1: function(value) { var t1; this.___TimePickerInputState__selectedTime = value; t1 = this._widget; t1.toString; t1.onChanged$1(this.get$_selectedTime()); }, _validateHour$1: function(value) { var newHour = this._parseHour$1(value); this.setState$1(new M._TimePickerInputState__validateHour_closure(this, newHour)); return newHour == null ? "" : null; }, _validateMinute$1: function(value) { var newMinute = this._parseMinute$1(value); this.setState$1(new M._TimePickerInputState__validateMinute_closure(this, newMinute)); return newMinute == null ? "" : null; }, build$1: function(_, context) { var timeOfDayFormat, theme, hourMinuteStyle, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, media = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t1 = type$.MaterialLocalizations, t2 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t2.toString; timeOfDayFormat = t2.timeOfDayFormat$1$alwaysUse24HourFormat(media.alwaysUse24HourFormat); t2 = Z.hourFormat(timeOfDayFormat) === C.HourFormat_2; theme = K.Theme_of(context); hourMinuteStyle = A.TimePickerTheme_of(context).hourMinuteTextStyle; if (hourMinuteStyle == null) { t3 = theme.textTheme.headline2; t3.toString; hourMinuteStyle = t3; } _this._widget.toString; t3 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t3.toString; t3 = t3.get$timePickerInputHelpText(); t4 = A.TimePickerTheme_of(context).helpTextStyle; t3 = L.Text$(t3, _null, _null, _null, _null, _null, t4 == null ? theme.textTheme.overline : t4, _null, _null, _null); t4 = type$.JSArray_Widget; t5 = H.setRuntimeTypeInfo([], t4); if (t2 && timeOfDayFormat === C.TimeOfDayFormat_5) C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([new M._DayPeriodControl(_this.get$_selectedTime(), C.Orientation_0, _this.get$_handleDayPeriodChanged(), _null), C.SizedBox_12_null_null_null], t4)); t6 = H.setRuntimeTypeInfo([C.SizedBox_null_8_null_null, new M._HourTextField(_this.get$_selectedTime(), hourMinuteStyle, _this._widget.autofocusHour, _this.get$_validateHour(), _this.get$_handleHourSavedSubmitted(), _this.get$_handleHourChanged(), _null), C.SizedBox_null_8_null_null], t4); if (!_this.hourHasError && !_this.minuteHasError) { t7 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t7.toString; t6.push(new T.ExcludeSemantics(true, L.Text$(t7.get$timePickerHourLabel(), _null, 1, C.TextOverflow_2, _null, _null, theme.textTheme.caption, _null, _null, _null), _null)); } t6 = T.Expanded$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); t7 = M.Container$(_null, new M._StringFragment(timeOfDayFormat, _null), C.Clip_0, _null, _null, _null, _null, 80, _null, C.EdgeInsets_0_8_0_0, _null, _null, _null, _null); t8 = H.setRuntimeTypeInfo([C.SizedBox_null_8_null_null, new M._MinuteTextField(_this.get$_selectedTime(), hourMinuteStyle, _this._widget.autofocusMinute, _this.get$_validateMinute(), _this.get$_handleMinuteSavedSubmitted(), _null), C.SizedBox_null_8_null_null], t4); if (!_this.hourHasError && !_this.minuteHasError) { t9 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t9.toString; t8.push(new T.ExcludeSemantics(true, L.Text$(t9.get$timePickerMinuteLabel(), _null, 1, C.TextOverflow_2, _null, _null, theme.textTheme.caption, _null, _null, _null), _null)); } t5.push(T.Expanded$(T.Row$(H.setRuntimeTypeInfo([t6, t7, T.Expanded$(T.Column$(t8, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1)], t4), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, C.TextDirection_1), 1)); if (t2 && timeOfDayFormat !== C.TimeOfDayFormat_5) C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([C.SizedBox_12_null_null_null, new M._DayPeriodControl(_this.get$_selectedTime(), C.Orientation_0, _this.get$_handleDayPeriodChanged(), _null)], t4)); t2 = H.setRuntimeTypeInfo([t3, C.SizedBox_null_16_null_null, T.Row$(t5, C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t4); if (_this.hourHasError || _this.minuteHasError) { t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t1); t1.toString; t1 = t1.get$invalidTimeLabel(); t3 = theme.textTheme.bodyText2; t3.toString; t2.push(L.Text$(t1, _null, _null, _null, _null, _null, t3.copyWith$1$color(theme.colorScheme.error), _null, _null, _null)); } else t2.push(C.SizedBox_null_2_null_null); return new T.Padding(C.EdgeInsets_24_16_24_16, T.Column$(t2, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null); } }; M._TimePickerInputState__validateHour_closure.prototype = { call$0: function() { this.$this.hourHasError = this.newHour == null; }, $signature: 0 }; M._TimePickerInputState__validateMinute_closure.prototype = { call$0: function() { this.$this.minuteHasError = this.newMinute == null; }, $signature: 0 }; M._HourTextField.prototype = { build$1: function(_, context) { var _this = this, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; return M._HourMinuteTextField$(_this.autofocus, true, _this.onChanged, _this.onSavedSubmitted, _this.selectedTime, t1.get$timePickerHourLabel(), _this.style, _this.validator); } }; M._MinuteTextField.prototype = { build$1: function(_, context) { var _this = this, t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; return M._HourMinuteTextField$(_this.autofocus, false, null, _this.onSavedSubmitted, _this.selectedTime, t1.get$timePickerMinuteLabel(), _this.style, _this.validator); } }; M._HourMinuteTextField.prototype = { createState$0: function() { return new M._HourMinuteTextFieldState(C._StateLifecycle_0); }, onSavedSubmitted$1: function(arg0) { return this.onSavedSubmitted.call$1(arg0); } }; M._HourMinuteTextFieldState.prototype = { get$focusNode: function(_) { var t1 = this.___HourMinuteTextFieldState_focusNode; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("focusNode")) : t1; }, initState$0: function() { var t1, t2; this.super$State$initState(); t1 = O.FocusNode$(true, null, true, null, false); t2 = t1.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(new M._HourMinuteTextFieldState_initState_closure(this)), false); this.___HourMinuteTextFieldState_focusNode = t1; }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); if (_this.controller == null) { t1 = _this.get$_formattedValue(); _this.controller = new D.TextEditingController(new N.TextEditingValue(t1, C.TextSelection_TbC, C.TextRange_m1_m1), new P.LinkedList(type$.LinkedList__ListenerEntry)); } }, get$_formattedValue: function() { var t3, t4, t1 = this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, t2 = this._framework$_element; t2.toString; t2 = L.Localizations_of(t2, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t2.toString; t3 = this._widget; t4 = t3.isHour; t3 = t3.selectedTime; return !t4 ? t2.formatMinute$1(t3) : t2.formatHour$2$alwaysUse24HourFormat(t3, t1.alwaysUse24HourFormat); }, build$1: function(_, context) { var t3, inputDecoration, unfocusedFillColor, hintText, t4, t5, t6, t7, t8, t9, _this = this, _null = null, theme = K.Theme_of(context), timePickerTheme = A.TimePickerTheme_of(context), colorScheme = theme.colorScheme, t1 = colorScheme.error, t2 = _this._widget; t2 = t2.style; t3 = colorScheme.onSurface.value; inputDecoration = L.InputDecoration$(_null, _null, C.EdgeInsets_0_0_0_0, _null, _null, _null, _null, true, C.OutlineInputBorder_ipC, new F.OutlineInputBorder(4, C.BorderRadius_tLn0, new Y.BorderSide(t1, 2, C.BorderStyle_1)), _null, C.TextStyle_q1g, _null, _null, true, _null, _null, new F.OutlineInputBorder(4, C.BorderRadius_tLn0, new Y.BorderSide(colorScheme.primary, 2, C.BorderStyle_1)), new F.OutlineInputBorder(4, C.BorderRadius_tLn0, new Y.BorderSide(t1, 2, C.BorderStyle_1)), true, _null, _null, _null, _null, t2.copyWith$1$color(P.Color$fromARGB(92, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255)), _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); unfocusedFillColor = timePickerTheme.hourMinuteColor; if (unfocusedFillColor == null) { t1 = colorScheme.onSurface.value; unfocusedFillColor = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } t1 = type$.MediaQuery; if (context.dependOnInheritedWidgetOfExactType$1$0(t1).data.accessibleNavigation || $.$get$window().platformDispatcher._configuration.semanticsEnabled) hintText = _this._widget.semanticHintText; else hintText = _this.get$focusNode(_this).get$hasFocus() ? _null : _this.get$_formattedValue(); if (_this.get$focusNode(_this).get$hasFocus()) t2 = C.Color_0; else t2 = unfocusedFillColor; inputDecoration = inputDecoration.copyWith$2$fillColor$hintText(t2, hintText); t1 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data.copyWith$1$textScaleFactor(1); t2 = _this._widget.autofocus; t3 = H.setRuntimeTypeInfo([new B.LengthLimitingTextInputFormatter(2, _null)], type$.JSArray_TextInputFormatter); t4 = _this.get$focusNode(_this); t5 = _this._widget.style; t6 = timePickerTheme.hourMinuteTextColor; t5 = t5.copyWith$1$color(t6 == null ? colorScheme.onSurface : t6); t6 = _this.controller; t7 = _this._widget; t8 = t7.validator; t9 = t7.onSavedSubmitted; return T.SizedBox$(new F.MediaQuery(t1, E.TextFormField$(true, _null, t2 === true, _null, t6, inputDecoration, _null, true, t4, _null, t3, _null, C.TextInputType_2_false_false, _null, _null, false, t7.onChanged, new M._HourMinuteTextFieldState_build_closure(_this), t9, t9, false, t5, C.TextAlign_2, _null, t8), _null), 80, _null); } }; M._HourMinuteTextFieldState_initState_closure.prototype = { call$0: function() { this.$this.setState$1(new M._HourMinuteTextFieldState_initState__closure()); }, $signature: 0 }; M._HourMinuteTextFieldState_initState__closure.prototype = { call$0: function() { }, $signature: 0 }; M._HourMinuteTextFieldState_build_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget; t2.toString; return t2.onSavedSubmitted$1(t1.controller._change_notifier$_value.text); }, $signature: 0 }; M._TimePickerDialog.prototype = { createState$0: function() { return new M._TimePickerDialogState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_FormState), C._TimePickerMode_0, C._StateLifecycle_0); } }; M._TimePickerDialogState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; _this.___TimePickerDialogState__selectedTime = t1.initialTime; _this.___TimePickerDialogState__entryMode = t1.initialEntryMode; _this.___TimePickerDialogState__autoValidate = false; }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; _this.___TimePickerDialogState_localizations = t1; _this._announceInitialTimeOnce$0(); _this._announceModeOnce$0(); }, get$_time_picker0$_entryMode: function() { var t1 = this.___TimePickerDialogState__entryMode; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_entryMode")) : t1; }, get$_selectedTime: function() { var t1 = this.___TimePickerDialogState__selectedTime; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_selectedTime")) : t1; }, get$localizations: function() { var t1 = this.___TimePickerDialogState_localizations; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("localizations")) : t1; }, _time_picker0$_vibrate$0: function() { var _this = this, t1 = _this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t1 = _this._vibrateTimer; if (t1 != null) t1.cancel$0(0); _this._vibrateTimer = P.Timer_Timer(C.Duration_100000, new M._TimePickerDialogState__vibrate_closure(_this)); break; case C.TargetPlatform_2: case C.TargetPlatform_4: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _time_picker0$_handleModeChanged$1: function(mode) { this._time_picker0$_vibrate$0(); this.setState$1(new M._TimePickerDialogState__handleModeChanged_closure(this, mode)); }, _time_picker0$_handleEntryModeToggle$0: function() { this.setState$1(new M._TimePickerDialogState__handleEntryModeToggle_closure(this)); }, _announceModeOnce$0: function() { var _this = this, t1 = _this._lastModeAnnounced, t2 = _this._time_picker0$_mode; if (t1 == t2) return; switch (t2) { case C._TimePickerMode_0: t1 = _this._framework$_element; t1.toString; t2 = _this.get$localizations().get$timePickerHourModeAnnouncement(); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; S.SemanticsService_announce(t2, t1.textDirection); break; case C._TimePickerMode_1: t1 = _this._framework$_element; t1.toString; t2 = _this.get$localizations().get$timePickerMinuteModeAnnouncement(); t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; S.SemanticsService_announce(t2, t1.textDirection); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._lastModeAnnounced = _this._time_picker0$_mode; }, _announceInitialTimeOnce$0: function() { var media, t1, t2, _this = this; if (_this._announcedInitialTime) return; media = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = _this._framework$_element; t2.toString; t1 = t1.formatTimeOfDay$2$alwaysUse24HourFormat(_this._widget.initialTime, media.alwaysUse24HourFormat); t2 = t2.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; S.SemanticsService_announce(t1, t2.textDirection); _this._announcedInitialTime = true; }, _handleTimeChanged$1: function(value) { this._time_picker0$_vibrate$0(); this.setState$1(new M._TimePickerDialogState__handleTimeChanged_closure(this, value)); }, _handleHourDoubleTapped$0: function() { this._autofocusHour = true; this._time_picker0$_handleEntryModeToggle$0(); }, _handleMinuteDoubleTapped$0: function() { this._autofocusMinute = true; this._time_picker0$_handleEntryModeToggle$0(); }, _handleHourSelected$0: function() { this.setState$1(new M._TimePickerDialogState__handleHourSelected_closure(this)); }, _time_picker0$_handleCancel$0: function() { var t1 = this._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); }, _time_picker0$_handleOk$0: function() { var t1, t2, _this = this; if (_this.get$_time_picker0$_entryMode() === C.TimePickerEntryMode_1) { t1 = _this._time_picker0$_formKey.get$currentState(); t1.toString; if (!t1.validate$0()) { _this.setState$1(new M._TimePickerDialogState__handleOk_closure(_this)); return; } t1.save$0(0); } t1 = _this._framework$_element; t1.toString; t2 = _this.get$_selectedTime(); K.Navigator_of(t1, false).pop$1(0, t2); }, build$1: function(_, context) { var orientation, t2, t3, t4, t5, actions, dial, header, picker, theme0, textScaleFactor, timePickerHeight, timePickerWidth, _this = this, _null = null, _s80_ = string$.x60null_c, t1 = type$.MediaQuery, media = context.dependOnInheritedWidgetOfExactType$1$0(t1).data, use24HourDials = Z.hourFormat(_this.get$localizations().timeOfDayFormat$1$alwaysUse24HourFormat(media.alwaysUse24HourFormat)) !== C.HourFormat_2, theme = K.Theme_of(context), shape = A.TimePickerTheme_of(context).shape; if (shape == null) shape = C.RoundedRectangleBorder_a510; orientation = media.get$orientation(media); t2 = A.TimePickerTheme_of(context).entryModeIconColor; if (t2 == null) { t2 = theme.colorScheme; t3 = t2.onSurface; t2 = t2.brightness === C.Brightness_0 ? 1 : 0.6; t3.toString; t3 = t3.value; t3 = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t2), t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); t2 = t3; } t3 = L.Icon$(_this.get$_time_picker0$_entryMode() === C.TimePickerEntryMode_0 ? C.IconData_58193_MaterialIcons_null_false : C.IconData_57402_MaterialIcons_null_false, _null, _null); t4 = type$.MaterialLocalizations; if (_this.get$_time_picker0$_entryMode() === C.TimePickerEntryMode_0) { t4 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t4); t4.toString; t4 = t4.get$inputTimeModeButtonLabel(); } else { t4 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, t4); t4.toString; t4 = t4.get$dialModeButtonLabel(); } t4 = B.IconButton$(C.Alignment_0_0, t2, _null, true, t3, 24, _this.get$_time_picker0$_handleEntryModeToggle(), C.EdgeInsets_8_8_8_8, t4, _null); _this._widget.toString; t2 = _this.get$localizations().get$cancelButtonLabel(); t2 = U.TextButton$(false, L.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_time_picker0$_handleCancel(), _null); _this._widget.toString; t3 = _this.get$localizations().get$okButtonLabel(); t5 = type$.JSArray_Widget; actions = T.Row$(H.setRuntimeTypeInfo([C.SizedBox_10_null_null_null, t4, T.Expanded$(M.Container$(C.AlignmentDirectional_1_0, E.OverflowBar$(H.setRuntimeTypeInfo([t2, U.TextButton$(false, L.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_time_picker0$_handleOk(), _null)], t5), C.OverflowBarAlignment_1, C.VerticalDirection_1, 0, 8), C.Clip_0, _null, C.BoxConstraints_mlX3, _null, _null, _null, _null, _null, C.EdgeInsets_8_0_8_0, _null, _null, _null), 1)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); switch (_this.get$_time_picker0$_entryMode()) { case C.TimePickerEntryMode_0: t2 = orientation === C.Orientation_0 ? C.EdgeInsets_36_24_36_24 : C.EdgeInsets_24_24_24_24; t3 = _this._time_picker0$_mode; t4 = _this.get$_handleTimeChanged(); dial = new T.Padding(t2, new T.ExcludeSemantics(true, new T.AspectRatio(1, new M._Dial(_this.get$_selectedTime(), t3, use24HourDials, t4, _this.get$_handleHourSelected(), _null), _null), _null), _null); header = new M._TimePickerHeader(_this.get$_selectedTime(), _this._time_picker0$_mode, orientation, _this.get$_time_picker0$_handleModeChanged(), t4, _this.get$_handleHourDoubleTapped(), _this.get$_handleMinuteDoubleTapped(), use24HourDials, _this._widget.helpText, _null); switch (orientation) { case C.Orientation_0: picker = T.Column$(H.setRuntimeTypeInfo([header, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([T.Expanded$(dial, 1), actions], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), 1)], t5), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); break; case C.Orientation_1: picker = T.Column$(H.setRuntimeTypeInfo([T.Expanded$(T.Row$(H.setRuntimeTypeInfo([header, T.Expanded$(dial, 1)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), 1), actions], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; case C.TimePickerEntryMode_1: t2 = _this.___TimePickerDialogState__autoValidate; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("_autoValidate")); picker = A.Form$(t2, E.SingleChildScrollView$(T.Column$(H.setRuntimeTypeInfo([new M._TimePickerInput(_this.get$_selectedTime(), _this._widget.helpText, _this._autofocusHour, _this._autofocusMinute, _this.get$_handleTimeChanged(), _null), actions], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), _this._time_picker0$_formKey); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t2 = context.dependOnInheritedWidgetOfExactType$1$0(t1).data; orientation = t2.get$orientation(t2); theme0 = K.Theme_of(context); textScaleFactor = Math.min(context.dependOnInheritedWidgetOfExactType$1$0(t1).data.textScaleFactor, 1.1); switch (_this.get$_time_picker0$_entryMode()) { case C.TimePickerEntryMode_0: switch (orientation) { case C.Orientation_0: timePickerHeight = theme0.materialTapTargetSize === C.MaterialTapTargetSize_0 ? 496 : 484; timePickerWidth = 328; break; case C.Orientation_1: timePickerWidth = 528 * textScaleFactor; timePickerHeight = theme0.materialTapTargetSize === C.MaterialTapTargetSize_0 ? 316 : 304; break; default: H.throwExpression(H.ReachabilityError$(_s80_)); timePickerHeight = _null; timePickerWidth = timePickerHeight; } break; case C.TimePickerEntryMode_1: timePickerWidth = 328; timePickerHeight = 226; break; default: H.throwExpression(H.ReachabilityError$(_s80_)); timePickerHeight = _null; timePickerWidth = timePickerHeight; } t1 = A.TimePickerTheme_of(context).backgroundColor; if (t1 == null) t1 = theme.colorScheme.surface; t2 = _this.get$_time_picker0$_entryMode() === C.TimePickerEntryMode_1 ? 0 : 24; return E.Dialog$(t1, G.AnimatedContainer$(picker, _null, C.Cubic_JUR0, _null, C.Duration_200000, timePickerHeight * textScaleFactor, _null, _null, _null, timePickerWidth), C.Clip_0, _null, new V.EdgeInsets(16, t2, 16, t2), shape); }, dispose$0: function(_) { var t1 = this._vibrateTimer; if (t1 != null) t1.cancel$0(0); this._vibrateTimer = null; this.super$State$dispose(0); } }; M._TimePickerDialogState__vibrate_closure.prototype = { call$0: function() { X.HapticFeedback_vibrate(); this.$this._vibrateTimer = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._TimePickerDialogState__handleModeChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1._time_picker0$_mode = this.mode; t1._announceModeOnce$0(); }, $signature: 0 }; M._TimePickerDialogState__handleEntryModeToggle_closure.prototype = { call$0: function() { var t1 = this.$this; switch (t1.get$_time_picker0$_entryMode()) { case C.TimePickerEntryMode_0: t1.___TimePickerDialogState__autoValidate = false; t1.___TimePickerDialogState__entryMode = C.TimePickerEntryMode_1; break; case C.TimePickerEntryMode_1: t1._time_picker0$_formKey.get$currentState().save$0(0); t1._autofocusMinute = t1._autofocusHour = false; t1.___TimePickerDialogState__entryMode = C.TimePickerEntryMode_0; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; M._TimePickerDialogState__handleTimeChanged_closure.prototype = { call$0: function() { this.$this.___TimePickerDialogState__selectedTime = this.value; }, $signature: 0 }; M._TimePickerDialogState__handleHourSelected_closure.prototype = { call$0: function() { this.$this._time_picker0$_mode = C._TimePickerMode_1; }, $signature: 0 }; M._TimePickerDialogState__handleOk_closure.prototype = { call$0: function() { this.$this.___TimePickerDialogState__autoValidate = true; }, $signature: 0 }; M.showTimePicker_closure.prototype = { call$1: function(context) { var t1 = this.builder.call$2(context, this.dialog); return t1; }, $signature: 79 }; M.__DialState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.TimePickerThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.backgroundColor, _this.hourMinuteTextColor, _this.hourMinuteColor, _this.dayPeriodTextColor, _this.dayPeriodColor, _this.dialHandColor, _this.dialBackgroundColor, _this.dialTextColor, _this.entryModeIconColor, _this.hourMinuteTextStyle, _this.dayPeriodTextStyle, _this.helpTextStyle, _this.shape, _this.hourMinuteShape, _this.dayPeriodShape, _this.dayPeriodBorderSide, _this.inputDecorationTheme, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof A.TimePickerThemeData && J.$eq$(other.backgroundColor, _this.backgroundColor) && J.$eq$(other.hourMinuteTextColor, _this.hourMinuteTextColor) && J.$eq$(other.hourMinuteColor, _this.hourMinuteColor) && J.$eq$(other.dayPeriodTextColor, _this.dayPeriodTextColor) && J.$eq$(other.dayPeriodColor, _this.dayPeriodColor) && J.$eq$(other.dialHandColor, _this.dialHandColor) && J.$eq$(other.dialBackgroundColor, _this.dialBackgroundColor) && J.$eq$(other.dialTextColor, _this.dialTextColor) && J.$eq$(other.entryModeIconColor, _this.entryModeIconColor) && J.$eq$(other.hourMinuteTextStyle, _this.hourMinuteTextStyle) && J.$eq$(other.dayPeriodTextStyle, _this.dayPeriodTextStyle) && J.$eq$(other.helpTextStyle, _this.helpTextStyle) && J.$eq$(other.shape, _this.shape) && J.$eq$(other.hourMinuteShape, _this.hourMinuteShape) && J.$eq$(other.dayPeriodShape, _this.dayPeriodShape) && J.$eq$(other.dayPeriodBorderSide, _this.dayPeriodBorderSide) && true; } }; A._TimePickerThemeData_Object_Diagnosticable.prototype = {}; E.ToggleButtons.prototype = { _isFirstButton$3: function(index, $length, textDirection) { var t1; if (index === 0) if (textDirection !== C.TextDirection_1) t1 = false; else t1 = true; else t1 = false; if (!t1) if (index === $length - 1) if (textDirection !== C.TextDirection_0) t1 = false; else t1 = true; else t1 = false; else t1 = true; return t1; }, _isLastButton$3: function(index, $length, textDirection) { var t1; if (index === $length - 1) if (textDirection !== C.TextDirection_1) t1 = false; else t1 = true; else t1 = false; if (!t1) if (index === 0) if (textDirection !== C.TextDirection_0) t1 = false; else t1 = true; else t1 = false; else t1 = true; return t1; }, _getEdgeBorderRadius$4: function(index, $length, textDirection, toggleButtonsTheme) { var resultingBorderRadius = toggleButtonsTheme.borderRadius; if (resultingBorderRadius == null) resultingBorderRadius = C.BorderRadius_tLn; if ($length === 1) return resultingBorderRadius; else if (this._isFirstButton$3(index, $length, textDirection)) return new K.BorderRadius(resultingBorderRadius.topLeft, C.Radius_0_0, resultingBorderRadius.bottomLeft, C.Radius_0_0); else if (this._isLastButton$3(index, $length, textDirection)) return new K.BorderRadius(C.Radius_0_0, resultingBorderRadius.topRight, C.Radius_0_0, resultingBorderRadius.bottomRight); return C.BorderRadius_tLn; }, _getClipBorderRadius$4: function(index, $length, textDirection, toggleButtonsTheme) { var resultingBorderWidth, t1, t2, t3, resultingBorderRadius = toggleButtonsTheme.borderRadius; if (resultingBorderRadius == null) resultingBorderRadius = C.BorderRadius_tLn; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; if ($length === 1) { t1 = resultingBorderWidth / 2; t2 = resultingBorderRadius.topLeft.$sub(0, new P.Radius(t1, t1)); t3 = resultingBorderRadius.bottomLeft.$sub(0, new P.Radius(t1, t1)); return new K.BorderRadius(t2, resultingBorderRadius.topRight.$sub(0, new P.Radius(t1, t1)), t3, resultingBorderRadius.bottomRight.$sub(0, new P.Radius(t1, t1))); } else if (this._isFirstButton$3(index, $length, textDirection)) { t1 = resultingBorderWidth / 2; return new K.BorderRadius(resultingBorderRadius.topLeft.$sub(0, new P.Radius(t1, t1)), C.Radius_0_0, resultingBorderRadius.bottomLeft.$sub(0, new P.Radius(t1, t1)), C.Radius_0_0); } else if (this._isLastButton$3(index, $length, textDirection)) { t1 = resultingBorderWidth / 2; return new K.BorderRadius(C.Radius_0_0, resultingBorderRadius.topRight.$sub(0, new P.Radius(t1, t1)), C.Radius_0_0, resultingBorderRadius.bottomRight.$sub(0, new P.Radius(t1, t1))); } return C.BorderRadius_tLn; }, _getLeadingBorderSide$3: function(index, theme, toggleButtonsTheme) { var t1, resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = this.isSelected; if (!t1[index]) t1 = index !== 0 && t1[index - 1]; else t1 = true; if (t1) { t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } else { t1 = this.isSelected[index]; if (!t1) { t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } else { t1 = toggleButtonsTheme.disabledBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } } }, _getBorderSide$3: function(index, theme, toggleButtonsTheme) { var t1, resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = this.isSelected[index]; if (t1) { t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } else { t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } }, _getTrailingBorderSide$3: function(index, theme, toggleButtonsTheme) { var resultingBorderWidth, t1; if (index !== 1) return C.BorderSide_m7u; resultingBorderWidth = toggleButtonsTheme.borderWidth; if (resultingBorderWidth == null) resultingBorderWidth = 1; t1 = this.isSelected[index]; if (t1) { t1 = toggleButtonsTheme.selectedBorderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } else { t1 = toggleButtonsTheme.borderColor; if (t1 == null) { t1 = theme.colorScheme.onSurface.value; t1 = P.Color$fromARGB(31, t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255); } return new Y.BorderSide(t1, resultingBorderWidth, C.BorderStyle_1); } }, build$1: function(_, context) { var theme = K.Theme_of(context), toggleButtonsTheme = S.ToggleButtonsTheme_of(context), t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = T.Row$(P.List_List$generate(2, new E.ToggleButtons_build_closure(this, t1.textDirection, toggleButtonsTheme, theme), type$.Widget), C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_0, null); return new T.IntrinsicHeight(t1, null); } }; E.ToggleButtons_build_closure.prototype = { call$1: function(index) { var leadingBorderSide, borderSide, trailingBorderSide, t4, t5, t6, t7, _this = this, _null = null, t1 = _this.$this, t2 = _this.textDirection, t3 = _this.toggleButtonsTheme, edgeBorderRadius = t1._getEdgeBorderRadius$4(index, 2, t2, t3), clipBorderRadius = t1._getClipBorderRadius$4(index, 2, t2, t3); t2 = _this.theme; leadingBorderSide = t1._getLeadingBorderSide$3(index, t2, t3); borderSide = t1._getBorderSide$3(index, t2, t3); trailingBorderSide = t1._getTrailingBorderSide$3(index, t2, t3); t2 = t1.isSelected[index]; t4 = t3.fillColor; t5 = t3.focusColor; t6 = t3.highlightColor; t7 = t3.hoverColor; t3 = t3.splashColor; return new E._ToggleButton(t2, _null, t1.constraints, _null, _null, _null, t4, t5, t7, t6, t3, _null, new E.ToggleButtons_build__closure(t1, index), _null, leadingBorderSide, borderSide, trailingBorderSide, edgeBorderRadius, clipBorderRadius, index === 0, index === 1, C.Axis_0, C.VerticalDirection_1, t1.children[index], _null); }, $signature: 2191 }; E.ToggleButtons_build__closure.prototype = { call$0: function() { this.$this.onPressed.call$1(this.index); }, $signature: 0 }; E._ToggleButton.prototype = { build$1: function(_, context) { var currentColor, currentFillColor, currentFocusColor, currentHoverColor, currentSplashColor, t3, currentTextStyle, currentConstraints, _this = this, theme = K.Theme_of(context), toggleButtonsTheme = S.ToggleButtonsTheme_of(context), t1 = _this.onPressed, t2 = t1 != null; if (t2 && _this.selected) { currentColor = toggleButtonsTheme.selectedColor; if (currentColor == null) currentColor = theme.colorScheme.primary; currentFillColor = _this.fillColor; if (currentFillColor == null) { t2 = theme.colorScheme.primary; currentFillColor = P.Color$fromARGB(31, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } t2 = _this.focusColor; currentFocusColor = t2 == null ? toggleButtonsTheme.focusColor : t2; if (currentFocusColor == null) { t2 = theme.colorScheme.primary; currentFocusColor = P.Color$fromARGB(31, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } t2 = _this.hoverColor; currentHoverColor = t2 == null ? toggleButtonsTheme.hoverColor : t2; if (currentHoverColor == null) { t2 = theme.colorScheme.primary; currentHoverColor = P.Color$fromARGB(10, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } t2 = _this.splashColor; currentSplashColor = t2 == null ? toggleButtonsTheme.splashColor : t2; if (currentSplashColor == null) { t2 = theme.colorScheme.primary; currentSplashColor = P.Color$fromARGB(41, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); } } else if (t2 && !_this.selected) { currentColor = toggleButtonsTheme.color; if (currentColor == null) { t2 = theme.colorScheme.onSurface.value; currentColor = P.Color$fromARGB(222, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } t2 = theme.colorScheme; t3 = t2.surface.value; currentFillColor = P.Color$fromARGB(0, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); t3 = _this.focusColor; currentFocusColor = t3 == null ? toggleButtonsTheme.focusColor : t3; if (currentFocusColor == null) { t3 = t2.onSurface.value; currentFocusColor = P.Color$fromARGB(31, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); } t3 = _this.hoverColor; currentHoverColor = t3 == null ? toggleButtonsTheme.hoverColor : t3; if (currentHoverColor == null) { t3 = t2.onSurface.value; currentHoverColor = P.Color$fromARGB(10, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); } t3 = _this.splashColor; currentSplashColor = t3 == null ? toggleButtonsTheme.splashColor : t3; if (currentSplashColor == null) { t2 = t2.onSurface.value; currentSplashColor = P.Color$fromARGB(41, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } } else { currentColor = toggleButtonsTheme.disabledColor; if (currentColor == null) { t2 = theme.colorScheme.onSurface.value; currentColor = P.Color$fromARGB(97, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } t2 = theme.colorScheme.surface.value; currentFillColor = P.Color$fromARGB(0, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); currentFocusColor = null; currentHoverColor = null; currentSplashColor = null; } currentTextStyle = toggleButtonsTheme.textStyle; if (currentTextStyle == null) { t2 = theme.textTheme.bodyText2; t2.toString; currentTextStyle = t2; } t2 = _this.constraints; currentConstraints = t2 == null ? toggleButtonsTheme.constraints : t2; if (currentConstraints == null) currentConstraints = C.BoxConstraints_mlX0; t2 = currentTextStyle.copyWith$1$color(currentColor); t3 = _this.highlightColor; if (t3 == null) { t3 = theme.colorScheme.surface.value; t3 = P.Color$fromARGB(0, t3 >>> 16 & 255, t3 >>> 8 & 255, t3 & 255); } return new E._SelectToggleButton(_this.leadingBorderSide, _this.borderSide, _this.trailingBorderSide, _this.borderRadius, _this.isFirstButton, _this.isLastButton, _this.direction, _this.verticalDirection, T.ClipRRect$(_this.clipRadius, Z.RawMaterialButton$(false, _this.child, C.Clip_0, currentConstraints, 0, 0, currentFillColor, currentFocusColor, 0, _this.focusNode, t3, 0, currentHoverColor, 0, C.MaterialTapTargetSize_1, _this.mouseCursor, t1, C.RoundedRectangleBorder_a511, currentSplashColor, t2)), _this.key); } }; E._SelectToggleButton.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new E._SelectToggleButtonRenderObject(_this.direction, _this.verticalDirection, _this.leadingBorderSide, _this.borderSide, _this.trailingBorderSide, _this.borderRadius, _this.isFirstButton, _this.isLastButton, t1.textDirection, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1, _this = this; renderObject.set$leadingBorderSide(_this.leadingBorderSide); renderObject.set$borderSide(_this.borderSide); renderObject.set$trailingBorderSide(_this.trailingBorderSide); renderObject.set$borderRadius(0, _this.borderRadius); renderObject.set$isFirstButton(_this.isFirstButton); renderObject.set$isLastButton(_this.isLastButton); renderObject.set$direction(0, _this.direction); renderObject.set$verticalDirection(_this.verticalDirection); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; E._SelectToggleButtonRenderObject.prototype = { set$direction: function(_, value) { if (this._toggle_buttons$_direction === value) return; this._toggle_buttons$_direction = value; this.markNeedsLayout$0(); }, set$verticalDirection: function(value) { if (this._verticalDirection === value) return; this._verticalDirection = value; this.markNeedsLayout$0(); }, set$leadingBorderSide: function(value) { if (this._leadingBorderSide.$eq(0, value)) return; this._leadingBorderSide = value; this.markNeedsLayout$0(); }, set$borderSide: function(value) { if (this._borderSide.$eq(0, value)) return; this._borderSide = value; this.markNeedsLayout$0(); }, set$trailingBorderSide: function(value) { if (this._trailingBorderSide.$eq(0, value)) return; this._trailingBorderSide = value; this.markNeedsLayout$0(); }, set$borderRadius: function(_, value) { if (this._toggle_buttons$_borderRadius.$eq(0, value)) return; this._toggle_buttons$_borderRadius = value; this.markNeedsLayout$0(); }, set$isFirstButton: function(value) { if (this._isFirstButton === value) return; this._isFirstButton = value; this.markNeedsLayout$0(); }, set$isLastButton: function(value) { if (this._isLastButton === value) return; this._isLastButton = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { if (this._toggle_buttons$_textDirection == value) return; this._toggle_buttons$_textDirection = value; this.markNeedsLayout$0(); }, computeDistanceToActualBaseline$1: function(baseline) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === C.Axis_0) { t1 = t2.computeDistanceToActualBaseline$1(baseline); t1.toString; t1 += _this._borderSide.width; } else { t1 = t2.computeDistanceToActualBaseline$1(baseline); t1.toString; t1 += _this._leadingBorderSide.width; } return t1; }, computeMaxIntrinsicHeight$1: function(width) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === C.Axis_0) { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width * 2 + t2; t1 = t2; } else { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } return t1; }, computeMinIntrinsicHeight$1: function(width) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === C.Axis_0) { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t2.get$computeMinIntrinsicHeight()); t2 = t1.width * 2 + t2; t1 = t2; } else { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t2.get$computeMaxIntrinsicHeight()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } return t1; }, computeMaxIntrinsicWidth$1: function(height) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === C.Axis_0) { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } else { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t2.get$computeMaxIntrinsicWidth()); t2 = t1.width * 2 + t2; t1 = t2; } return t1; }, computeMinIntrinsicWidth$1: function(height) { var _this = this, t1 = _this._toggle_buttons$_direction, t2 = _this.RenderObjectWithChildMixin__child; if (t1 === C.Axis_0) { t1 = _this._leadingBorderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t2 = t1.width + t2 + _this._trailingBorderSide.width; t1 = t2; } else { t1 = _this._borderSide; t2 = t2 == null ? 0 : t2._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t2.get$computeMinIntrinsicWidth()); t2 = t1.width * 2 + t2; t1 = t2; } return t1; }, computeDryLayout$1: function(constraints) { return this._computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { var t1, _this = this, _s80_ = string$.x60null_c; _this._box$_size = _this._computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) return; t1 = t1.parentData; t1.toString; type$.BoxParentData._as(t1); if (_this._toggle_buttons$_direction === C.Axis_0) switch (_this._toggle_buttons$_textDirection) { case C.TextDirection_1: t1.offset = new P.Offset(_this._leadingBorderSide.width, _this._borderSide.width); break; case C.TextDirection_0: t1.offset = new P.Offset(_this._trailingBorderSide.width, _this._borderSide.width); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else switch (_this._verticalDirection) { case C.VerticalDirection_1: t1.offset = new P.Offset(_this._borderSide.width, _this._leadingBorderSide.width); break; case C.VerticalDirection_0: t1.offset = new P.Offset(_this._borderSide.width, _this._trailingBorderSide.width); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, _computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var t1, t2, t3, t4, rightConstraint, leftConstraint, topConstraint, bottomConstraint, t0, innerConstraints, childSize, _this = this; if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._toggle_buttons$_direction; t2 = _this._leadingBorderSide.width; t3 = _this._trailingBorderSide.width; t4 = _this._borderSide.width; if (t1 === C.Axis_0) return constraints.constrain$1(new P.Size(t2 + t3, t4 * 2)); else return constraints.constrain$1(new P.Size(t4 * 2, t2 + t3)); } t1 = _this._toggle_buttons$_direction; rightConstraint = _this._trailingBorderSide.width; leftConstraint = _this._leadingBorderSide.width; topConstraint = _this._borderSide.width; if (t1 === C.Axis_0) bottomConstraint = topConstraint; else { bottomConstraint = rightConstraint; rightConstraint = topConstraint; topConstraint = leftConstraint; leftConstraint = rightConstraint; t0 = rightConstraint; rightConstraint = leftConstraint; t0 = leftConstraint; } innerConstraints = constraints.deflate$1(new V.EdgeInsets(leftConstraint, topConstraint, rightConstraint, bottomConstraint)); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; childSize = layoutChild.call$2(t1, innerConstraints); return constraints.constrain$1(new P.Size(leftConstraint + childSize._dx + rightConstraint, topConstraint + childSize._dy + bottomConstraint)); }, paint$2: function(context, offset) { var bottomRight, t1, t2, startX, t3, center, t4, t5, t6, t7, rrect, tlCorner, t8, t9, t10, t11, t12, blCorner, t13, t14, t15, trCorner, t16, t17, t18, t19, brCorner, leadingPaint, leadingPath, leftPath, endingPaint, endingPath, horizontalPaint, horizontalPaths, topPath, paint, paths, bottomPath, _this = this, _s80_ = string$.x60null_c; _this.super$RenderShiftedBox$paint(context, offset); bottomRight = _this._box$_size.bottomRight$1(0, offset); t1 = offset._dx; t2 = offset._dy; startX = bottomRight._dx; t3 = bottomRight._dy; center = new P.Rect(t1, t2, startX, t3).inflate$1(-(_this._borderSide.width / 2)); t4 = _this._toggle_buttons$_borderRadius; t5 = t4.topLeft; t5 = t5.x * t5.y !== 0 ? t5 : C.Radius_0_0; t6 = t4.topRight; t6 = t6.x * t6.y !== 0 ? t6 : C.Radius_0_0; t7 = t4.bottomLeft; t7 = t7.x * t7.y !== 0 ? t7 : C.Radius_0_0; t4 = t4.bottomRight; rrect = P.RRect$fromRectAndCorners(center, t7, t4.x * t4.y !== 0 ? t4 : C.Radius_0_0, t5, t6).scaleRadii$0(); t4 = rrect.left; t5 = rrect.top; t6 = rrect.tlRadiusX; t7 = rrect.tlRadiusY; tlCorner = new P.Rect(t4, t5, t4 + t6 * 2, t5 + t7 * 2); t8 = rrect.bottom; t9 = rrect.blRadiusY; t10 = t9 * 2; t11 = t8 - t10; t12 = rrect.blRadiusX; blCorner = new P.Rect(t4, t11, t4 + t12 * 2, t11 + t10); t10 = rrect.right; t11 = rrect.trRadiusX; t13 = t11 * 2; t14 = t10 - t13; t15 = rrect.trRadiusY; trCorner = new P.Rect(t14, t5, t14 + t13, t5 + t15 * 2); t13 = rrect.brRadiusX; t14 = t13 * 2; t16 = t10 - t14; t17 = rrect.brRadiusY; t18 = t17 * 2; t19 = t8 - t18; brCorner = new P.Rect(t16, t19, t16 + t14, t19 + t18); leadingPaint = _this._leadingBorderSide.toPaint$0(); t14 = _this._isFirstButton; if (t14 && _this._isLastButton) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t13 === 0 ? startX : t10 - t13, t8); leadingPath.lineTo$2(0, t4 + t12, t8); leadingPath.addArc$3(0, blCorner, 1.5707963267948966, 1.5707963267948966); leadingPath.lineTo$2(0, t4, t5 + t7); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, t10 - t11, t5); leadingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); leadingPath.lineTo$2(0, t10, t8 - t17); leadingPath.addArc$3(0, brCorner, 0, 1.5707963267948966); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); return; } if (_this._toggle_buttons$_direction === C.Axis_0) switch (_this._toggle_buttons$_textDirection) { case C.TextDirection_1: if (_this._isLastButton) { leftPath = P.Path_Path(); leftPath.moveTo$2(0, t4, t8 + _this._leadingBorderSide.width / 2); leftPath.lineTo$2(0, t4, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leftPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = P.Path_Path(); endingPath.moveTo$2(0, t4 + _this._borderSide.width / 2, t5); endingPath.lineTo$2(0, t10 - t11, t5); endingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); endingPath.lineTo$2(0, t10, t8 - t17); endingPath.addArc$3(0, brCorner, 0, 1.5707963267948966); endingPath.lineTo$2(0, t4 + _this._borderSide.width / 2, t8); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, startX, t8); leadingPath.lineTo$2(0, t4 + t12, t8); leadingPath.addArc$3(0, blCorner, 1.5707963267948966, 1.5707963267948966); leadingPath.lineTo$2(0, t4, t5 + t7); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, startX, t5); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t4, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t4, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); horizontalPaint = _this._borderSide.toPaint$0(); horizontalPaths = P.Path_Path(); horizontalPaths.moveTo$2(0, t4 + _this._borderSide.width / 2, t5); t1 = startX - t11; horizontalPaths.lineTo$2(0, t1, t5); horizontalPaths.moveTo$2(0, t4 + _this._borderSide.width / 2 + t6, t8); horizontalPaths.lineTo$2(0, t1, t8); context.get$canvas(context).drawPath$2(0, horizontalPaths, horizontalPaint); } break; case C.TextDirection_0: if (_this._isLastButton) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t10, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t10, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = P.Path_Path(); endingPath.moveTo$2(0, t10 - _this._borderSide.width / 2, t5); endingPath.lineTo$2(0, t4 + t6, t5); endingPath.addArc$3(0, tlCorner, 4.71238898038469, -1.5707963267948966); endingPath.lineTo$2(0, t4, t8 - t9); endingPath.addArc$3(0, blCorner, 3.141592653589793, -1.5707963267948966); endingPath.lineTo$2(0, t10 - _this._borderSide.width / 2, t8); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t1, t8); leadingPath.lineTo$2(0, t10 - t13, t8); leadingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); leadingPath.lineTo$2(0, t10, t5 + t15); leadingPath.addArc$3(0, trCorner, 0, -1.5707963267948966); leadingPath.lineTo$2(0, t1, t5); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t10, t8 + _this._leadingBorderSide.width / 2); leadingPath.lineTo$2(0, t10, t5 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); horizontalPaint = _this._borderSide.toPaint$0(); horizontalPaths = P.Path_Path(); horizontalPaths.moveTo$2(0, t10 - _this._borderSide.width / 2, t5); t1 -= t6; horizontalPaths.lineTo$2(0, t1, t5); horizontalPaths.moveTo$2(0, t10 - _this._borderSide.width / 2 + t11, t8); horizontalPaths.lineTo$2(0, t1, t8); context.get$canvas(context).drawPath$2(0, horizontalPaths, horizontalPaint); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else switch (_this._verticalDirection) { case C.VerticalDirection_1: if (_this._isLastButton) { topPath = P.Path_Path(); topPath.moveTo$2(0, t1, t2 + _this._leadingBorderSide.width / 2); topPath.lineTo$2(0, startX, t2 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, topPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = P.Path_Path(); endingPath.moveTo$2(0, t4, t5 + _this._leadingBorderSide.width / 2); endingPath.lineTo$2(0, t4, t8 - t9); endingPath.addArc$3(0, blCorner, 9.42477796076938, -1.5707963267948966); endingPath.lineTo$2(0, t10 - t12, t8); endingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); endingPath.lineTo$2(0, t10, t5 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t4, t3); leadingPath.lineTo$2(0, t4, t5 + t6); leadingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); leadingPath.lineTo$2(0, t10 - t11, t5); leadingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); leadingPath.lineTo$2(0, t10, t3); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { topPath = P.Path_Path(); topPath.moveTo$2(0, t1, t2 + _this._leadingBorderSide.width / 2); topPath.lineTo$2(0, startX, t2 + _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, topPath, leadingPaint); paint = _this._borderSide.toPaint$0(); paths = P.Path_Path(); paths.moveTo$2(0, t4, t2 + _this._leadingBorderSide.width); paths.lineTo$2(0, t4, t3); paths.moveTo$2(0, t10, t2 + _this._leadingBorderSide.width); paths.lineTo$2(0, t10, t3); context.get$canvas(context).drawPath$2(0, paths, paint); } break; case C.VerticalDirection_0: if (_this._isLastButton) { bottomPath = P.Path_Path(); bottomPath.moveTo$2(0, t1, t3 - _this._leadingBorderSide.width / 2); bottomPath.lineTo$2(0, startX, t3 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, bottomPath, leadingPaint); endingPaint = _this._trailingBorderSide.toPaint$0(); endingPath = P.Path_Path(); endingPath.moveTo$2(0, t4, t8 - _this._leadingBorderSide.width / 2); endingPath.lineTo$2(0, t4, t5 + t7); endingPath.addArc$3(0, tlCorner, 3.141592653589793, 1.5707963267948966); endingPath.lineTo$2(0, t10 - t11, t5); endingPath.addArc$3(0, trCorner, 4.71238898038469, 1.5707963267948966); endingPath.lineTo$2(0, t10, t8 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, endingPath, endingPaint); } else if (t14) { leadingPath = P.Path_Path(); leadingPath.moveTo$2(0, t4, t2); leadingPath.lineTo$2(0, t4, t8 - t9); leadingPath.addArc$3(0, blCorner, 3.141592653589793, -1.5707963267948966); leadingPath.lineTo$2(0, t10 - t13, t8); leadingPath.addArc$3(0, brCorner, 1.5707963267948966, -1.5707963267948966); leadingPath.lineTo$2(0, t10, t2); context.get$canvas(context).drawPath$2(0, leadingPath, leadingPaint); } else { bottomPath = P.Path_Path(); bottomPath.moveTo$2(0, t1, t3 - _this._leadingBorderSide.width / 2); bottomPath.lineTo$2(0, startX, t3 - _this._leadingBorderSide.width / 2); context.get$canvas(context).drawPath$2(0, bottomPath, leadingPaint); paint = _this._borderSide.toPaint$0(); paths = P.Path_Path(); paths.moveTo$2(0, t4, t2); paths.lineTo$2(0, t4, t3 - _this._leadingBorderSide.width); paths.moveTo$2(0, t10, t2); paths.lineTo$2(0, t10, t3 - _this._leadingBorderSide.width); context.get$canvas(context).drawPath$2(0, paths, paint); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } }; S.ToggleButtonsThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.textStyle, _this.constraints, _this.color, _this.selectedColor, _this.disabledColor, _this.fillColor, _this.focusColor, _this.highlightColor, _this.hoverColor, _this.splashColor, _this.borderColor, _this.selectedBorderColor, _this.disabledBorderColor, _this.borderRadius, _this.borderWidth, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof S.ToggleButtonsThemeData && J.$eq$(other.textStyle, _this.textStyle) && J.$eq$(other.constraints, _this.constraints) && J.$eq$(other.color, _this.color) && J.$eq$(other.selectedColor, _this.selectedColor) && J.$eq$(other.disabledColor, _this.disabledColor) && J.$eq$(other.fillColor, _this.fillColor) && J.$eq$(other.focusColor, _this.focusColor) && J.$eq$(other.highlightColor, _this.highlightColor) && J.$eq$(other.hoverColor, _this.hoverColor) && J.$eq$(other.splashColor, _this.splashColor) && J.$eq$(other.borderColor, _this.borderColor) && J.$eq$(other.selectedBorderColor, _this.selectedBorderColor) && J.$eq$(other.disabledBorderColor, _this.disabledBorderColor) && J.$eq$(other.borderRadius, _this.borderRadius) && other.borderWidth == _this.borderWidth; } }; S._ToggleButtonsThemeData_Object_Diagnosticable.prototype = {}; F.ToggleableStateMixin.prototype = { get$_toggleable$_positionController: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__positionController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_positionController")) : t1; }, get$_toggleable$_position: function(_) { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__position; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_position")) : t1; }, get$_toggleable$_reactionController: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reactionController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionController")) : t1; }, get$_toggleable$_reaction: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reaction; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reaction")) : t1; }, get$_reactionHoverFade: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFade; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionHoverFade")) : t1; }, get$_reactionHoverFadeController: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reactionHoverFadeController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionHoverFadeController")) : t1; }, get$_reactionFocusFade: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFade; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionFocusFade")) : t1; }, get$_reactionFocusFadeController: function() { var t1 = this.ToggleableStateMixin___ToggleableStateMixin__reactionFocusFadeController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reactionFocusFadeController")) : t1; }, animateToValue$0: function() { var _this = this; if (_this.get$tristate()) { if (_this.get$value(_this) == null) _this.get$_toggleable$_positionController().set$value(0, 0); if (_this.get$value(_this) !== false) _this.get$_toggleable$_positionController().forward$0(0); else _this.get$_toggleable$_positionController().reverse$0(0); } else if (_this.get$value(_this) === true) _this.get$_toggleable$_positionController().forward$0(0); else _this.get$_toggleable$_positionController().reverse$0(0); }, _toggleable$_handleTapDown$1: function(details) { var _this = this; if (_this.get$onChanged() != null) { _this.setState$1(new F.ToggleableStateMixin__handleTapDown_closure(_this, details)); _this.get$_toggleable$_reactionController().forward$0(0); } }, _toggleable$_handleTap$1: function(_) { var t1, _this = this; if (_this.get$onChanged() == null) return; switch (_this.get$value(_this)) { case false: _this.get$onChanged().call$1(true); break; case true: t1 = _this.get$onChanged(); t1.toString; t1.call$1(_this.get$tristate() && null); break; case null: _this.get$onChanged().call$1(false); break; } _this._framework$_element.get$renderObject().sendSemanticsEvent$1(C.TapSemanticEvent_tap); }, _toggleable$_handleTap$0: function() { return this._toggleable$_handleTap$1(null); }, _handleTapEnd$1: function(_) { var _this = this; if (_this.ToggleableStateMixin__downPosition != null) _this.setState$1(new F.ToggleableStateMixin__handleTapEnd_closure(_this)); _this.get$_toggleable$_reactionController().reverse$0(0); }, _handleTapEnd$0: function() { return this._handleTapEnd$1(null); }, _handleFocusHighlightChanged$1: function(focused) { var _this = this; if (focused !== _this.ToggleableStateMixin__focused) { _this.setState$1(new F.ToggleableStateMixin__handleFocusHighlightChanged_closure(_this, focused)); if (focused) _this.get$_reactionFocusFadeController().forward$0(0); else _this.get$_reactionFocusFadeController().reverse$0(0); } }, _handleHoverChanged$1: function(hovering) { var _this = this; if (hovering !== _this.ToggleableStateMixin__hovering) { _this.setState$1(new F.ToggleableStateMixin__handleHoverChanged_closure(_this, hovering)); if (hovering) _this.get$_reactionHoverFadeController().forward$0(0); else _this.get$_reactionHoverFadeController().reverse$0(0); } }, get$states: function() { var _this = this, t1 = P.LinkedHashSet_LinkedHashSet$_empty(type$.MaterialState); if (_this.get$onChanged() == null) t1.add$1(0, C.MaterialState_5); if (_this.ToggleableStateMixin__hovering) t1.add$1(0, C.MaterialState_0); if (_this.ToggleableStateMixin__focused) t1.add$1(0, C.MaterialState_1); if (_this.get$value(_this) !== false) t1.add$1(0, C.MaterialState_4); return t1; }, buildToggleable$5$autofocus$focusNode$mouseCursor$painter$size: function(autofocus, focusNode, mouseCursor, painter, size) { var t2, t3, t4, t5, t6, t7, _this = this, _null = null, t1 = _this.ToggleableStateMixin___ToggleableStateMixin__actionMap; if (t1 === $) { t1 = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_ActivateIntent_OT9, new U.CallbackAction(_this.get$_toggleable$_handleTap(), new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent), type$.CallbackAction_ActivateIntent)], type$.Type, type$.Action_Intent); if (_this.ToggleableStateMixin___ToggleableStateMixin__actionMap === $) _this.ToggleableStateMixin___ToggleableStateMixin__actionMap = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_actionMap")); } t2 = _this.get$onChanged(); t3 = mouseCursor._material_state$_resolve.call$1(_this.get$states()); t4 = _this.get$onChanged(); t5 = _this.get$_handleTapEnd(); t6 = _this.get$onChanged(); t7 = T.CustomPaint$(_null, _null, _null, painter, size); return U.FocusableActionDetector$(t1, false, D.GestureDetector$(_null, new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, t6 != 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), false, false, false, t7, _null), C.DragStartBehavior_1, t4 == null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_toggleable$_handleTap(), t5, _this.get$_toggleable$_handleTapDown(), t5, _null, _null, _null), t2 != null, focusNode, t3, _null, _this.get$_handleFocusHighlightChanged(), _this.get$_handleHoverChanged(), _null); } }; F.ToggleableStateMixin__handleTapDown_closure.prototype = { call$0: function() { this.$this.ToggleableStateMixin__downPosition = this.details.localPosition; }, $signature: 0 }; F.ToggleableStateMixin__handleTapEnd_closure.prototype = { call$0: function() { this.$this.ToggleableStateMixin__downPosition = null; }, $signature: 0 }; F.ToggleableStateMixin__handleFocusHighlightChanged_closure.prototype = { call$0: function() { this.$this.ToggleableStateMixin__focused = this.focused; }, $signature: 0 }; F.ToggleableStateMixin__handleHoverChanged_closure.prototype = { call$0: function() { this.$this.ToggleableStateMixin__hovering = this.hovering; }, $signature: 0 }; F.ToggleablePainter.prototype = { set$position: function(_, value) { var _this = this, t1 = _this._toggleable$_position; if (value == t1) return; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); value.parent.addListener$1(0, _this.get$notifyListeners()); _this._toggleable$_position = value; _this.notifyListeners$0(); }, set$reaction: function(value) { var _this = this, t1 = _this._toggleable$_reaction; if (value == t1) return; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); value.addListener$1(0, _this.get$notifyListeners()); _this._toggleable$_reaction = value; _this.notifyListeners$0(); }, set$reactionFocusFade: function(value) { var _this = this, t1 = _this._reactionFocusFade; if (value == t1) return; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); value.addListener$1(0, _this.get$notifyListeners()); _this._reactionFocusFade = value; _this.notifyListeners$0(); }, set$reactionHoverFade: function(value) { var _this = this, t1 = _this._reactionHoverFade; if (value == t1) return; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); value.addListener$1(0, _this.get$notifyListeners()); _this._reactionHoverFade = value; _this.notifyListeners$0(); }, set$activeColor: function(value) { if (J.$eq$(this._activeColor, value)) return; this._activeColor = value; this.notifyListeners$0(); }, set$inactiveColor: function(value) { if (J.$eq$(this._inactiveColor, value)) return; this._inactiveColor = value; this.notifyListeners$0(); }, set$inactiveReactionColor: function(value) { if (value.$eq(0, this._inactiveReactionColor)) return; this._inactiveReactionColor = value; this.notifyListeners$0(); }, set$reactionColor: function(value) { if (value.$eq(0, this._reactionColor)) return; this._reactionColor = value; this.notifyListeners$0(); }, set$hoverColor: function(value) { if (J.$eq$(value, this._toggleable$_hoverColor)) return; this._toggleable$_hoverColor = value; this.notifyListeners$0(); }, set$focusColor: function(value) { if (J.$eq$(value, this._toggleable$_focusColor)) return; this._toggleable$_focusColor = value; this.notifyListeners$0(); }, set$splashRadius: function(value) { if (value === this._splashRadius) return; this._splashRadius = value; this.notifyListeners$0(); }, set$downPosition: function(value) { if (J.$eq$(value, this._downPosition)) return; this._downPosition = value; this.notifyListeners$0(); }, set$isFocused: function(value) { if (value === this._isFocused) return; this._isFocused = value; this.notifyListeners$0(); }, set$isHovered: function(value) { if (value === this._isHovered) return; this._isHovered = value; this.notifyListeners$0(); }, paintRadialReaction$2$canvas$origin: function(canvas, origin) { var reactionPaint, t2, t3, reactionRadius, _this = this, t1 = _this._toggleable$_reaction; if (t1.get$status(t1) === C.AnimationStatus_0) { t1 = _this._reactionFocusFade; if (t1.get$status(t1) === C.AnimationStatus_0) { t1 = _this._reactionHoverFade; t1 = t1.get$status(t1) !== C.AnimationStatus_0; } else t1 = true; } else t1 = true; if (t1) { t1 = H._detectRenderer(); reactionPaint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = _this._inactiveReactionColor; t1.toString; t2 = _this._reactionColor; t2.toString; t3 = _this._toggleable$_position; t3 = P.Color_lerp(t1, t2, t3.get$value(t3)); t2 = _this._toggleable$_hoverColor; t2.toString; t1 = _this._reactionHoverFade; t1 = P.Color_lerp(t3, t2, t1.get$value(t1)); t2 = _this._toggleable$_focusColor; t2.toString; t3 = _this._reactionFocusFade; t3 = P.Color_lerp(t1, t2, t3.get$value(t3)); t3.toString; reactionPaint.set$color(0, t3); t3 = _this._downPosition; t1 = t3 == null ? origin : t3; t2 = _this._toggleable$_reaction; t2 = P.Offset_lerp(t1, origin, t2.get$value(t2)); t2.toString; t1 = _this._splashRadius; t1.toString; t3 = _this._isFocused; t3.toString; if (!t3) { t3 = _this._isHovered; t3.toString; } else t3 = true; if (t3) reactionRadius = t1; else { t3 = _this._toggleable$_reaction; reactionRadius = new R.Tween(0, t1, type$.Tween_double).transform$1(0, t3.get$value(t3)); } if (reactionRadius > 0) canvas.drawCircle$3(0, t2.$add(0, C.Offset_0_0), reactionRadius, reactionPaint); } }, dispose$0: function(_) { var _this = this, t1 = _this._toggleable$_position; if (t1 != null) t1.parent.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._toggleable$_reaction; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._reactionFocusFade; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); t1 = _this._reactionHoverFade; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); _this.super$ChangeNotifier$dispose(0); }, shouldRepaint$1: function(oldDelegate) { return true; }, hitTest$1: function(position) { return null; }, get$semanticsBuilder: function() { return null; }, shouldRebuildSemantics$1: function(oldDelegate) { return false; } }; S.Tooltip.prototype = { createState$0: function() { return new S._TooltipState(null, C._StateLifecycle_0); } }; S._TooltipState.prototype = { set$height: function(_, t1) { this.___TooltipState_height = t1; }, get$_tooltip$_controller: function() { var t1 = this.___TooltipState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_mouseIsConnected: function() { var t1 = this.___TooltipState__mouseIsConnected; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_mouseIsConnected")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates; _this.___TooltipState__mouseIsConnected = t1.get$isNotEmpty(t1); t1 = G.AnimationController$(null, C.Duration_150000, 0, C.Duration_75000, 1, null, _this); t1.addStatusListener$1(_this.get$_tooltip$_handleStatusChanged()); _this.___TooltipState__controller = t1; t1 = $.RendererBinding__instance.RendererBinding__mouseTracker.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleMouseTrackerChange()), false); $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.$indexSet(0, _this.get$_tooltip$_handlePointerEvent(), null); }, _getDefaultTooltipHeight$0: function() { var t1 = this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_4: case C.TargetPlatform_3: case C.TargetPlatform_5: return 24; default: return 32; } }, _getDefaultPadding$0: function() { var t1 = this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_4: case C.TargetPlatform_3: case C.TargetPlatform_5: return C.EdgeInsets_8_0_8_0; default: return C.EdgeInsets_16_0_16_0; } }, _getDefaultFontSize$0: function() { var t1 = this._framework$_element; t1.toString; switch (K.Theme_of(t1).platform) { case C.TargetPlatform_4: case C.TargetPlatform_3: case C.TargetPlatform_5: return 10; default: return 14; } }, _handleMouseTrackerChange$0: function() { var t1, mouseIsConnected, _this = this; if (_this._framework$_element == null) return; t1 = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates; mouseIsConnected = t1.get$isNotEmpty(t1); if (mouseIsConnected !== _this.get$_mouseIsConnected()) _this.setState$1(new S._TooltipState__handleMouseTrackerChange_closure(_this, mouseIsConnected)); }, _tooltip$_handleStatusChanged$1: function($status) { if ($status === C.AnimationStatus_0) this._hideTooltip$1$immediately(true); }, _hideTooltip$1$immediately: function(immediately) { var t2, _this = this, t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; if (immediately) { _this._removeEntry$0(); return; } if (_this._longPressActivated) { if (_this._hideTimer == null) { t1 = _this.___TooltipState_showDuration; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("showDuration")); t2 = _this.get$_tooltip$_controller(); _this._hideTimer = P.Timer_Timer(t1, t2.get$reverse(t2)); } } else _this.get$_tooltip$_controller().reverse$0(0); _this._longPressActivated = false; }, _hideTooltip$0: function() { return this._hideTooltip$1$immediately(false); }, _showTooltip$0: function() { var _this = this, t1 = _this._hideTimer; if (t1 != null) t1.cancel$0(0); _this._hideTimer = null; if (_this._showTimer == null) { t1 = _this.___TooltipState_waitDuration; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("waitDuration")); _this._showTimer = P.Timer_Timer(t1, _this.get$ensureTooltipVisible()); } }, ensureTooltipVisible$0: function() { var _this = this, t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; if (_this._tooltip$_entry != null) { t1 = _this._hideTimer; if (t1 != null) t1.cancel$0(0); _this._hideTimer = null; _this.get$_tooltip$_controller().forward$0(0); return false; } _this._createNewEntry$0(); _this.get$_tooltip$_controller().forward$0(0); return true; }, _createNewEntry$0: function() { var result, t2, target, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, t1 = _this._framework$_element; t1.toString; _this._widget.toString; result = t1.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); t2 = t1._box$_size.center$1(C.Offset_0_0); target = T.MatrixUtils_transformPoint(t1.getTransformTo$1(0, result._framework$_element.get$renderObject()), t2); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1 = _this._widget.message; t3 = _this.___TooltipState_height; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("height")); t4 = _this.___TooltipState_padding; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("padding")); t5 = _this.___TooltipState_margin; if (t5 === $) t5 = H.throwExpression(H.LateError$fieldNI("margin")); t6 = _this.___TooltipState_decoration; if (t6 === $) t6 = H.throwExpression(H.LateError$fieldNI("decoration")); t7 = _this.___TooltipState_textStyle; if (t7 === $) t7 = H.throwExpression(H.LateError$fieldNI("textStyle")); t8 = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_tooltip$_controller(), null); t9 = _this.___TooltipState_verticalOffset; if (t9 === $) t9 = H.throwExpression(H.LateError$fieldNI("verticalOffset")); t10 = _this.___TooltipState_preferBelow; t1 = X.OverlayEntry$(new S._TooltipState__createNewEntry_closure(T.Directionality$(new S._TooltipOverlay(t1, t3, t4, t5, t6, t7, t8, target, t9, t10 === $ ? H.throwExpression(H.LateError$fieldNI("preferBelow")) : t10, null), t2.textDirection)), false); _this._tooltip$_entry = t1; result.insert$1(0, t1); S.SemanticsService_tooltip(_this._widget.message); }, _removeEntry$0: function() { var _this = this, t1 = _this._hideTimer; if (t1 != null) t1.cancel$0(0); _this._hideTimer = null; t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this._showTimer = null; t1 = _this._tooltip$_entry; if (t1 != null) t1.remove$0(0); _this._tooltip$_entry = null; }, _tooltip$_handlePointerEvent$1: function($event) { if (this._tooltip$_entry == null) return; if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) this._hideTooltip$0(); else if (type$.PointerDownEvent._is($event)) this._hideTooltip$1$immediately(true); }, deactivate$0: function() { var t1, _this = this; if (_this._tooltip$_entry != null) _this._hideTooltip$1$immediately(true); t1 = _this._showTimer; if (t1 != null) t1.cancel$0(0); _this.super$State$deactivate(); }, dispose$0: function(_) { var _this = this; $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.remove$1(0, _this.get$_tooltip$_handlePointerEvent()); $.RendererBinding__instance.RendererBinding__mouseTracker.removeListener$1(0, _this.get$_handleMouseTrackerChange()); if (_this._tooltip$_entry != null) _this._removeEntry$0(); _this.get$_tooltip$_controller().dispose$0(0); _this.super$__TooltipState_State_SingleTickerProviderStateMixin$dispose(0); }, _handleLongPress$0: function() { this._longPressActivated = true; if (this.ensureTooltipVisible$0()) { var t1 = this._framework$_element; t1.toString; M.Feedback_forLongPress(t1); } }, build$1: function(_, context) { var t1, tooltipTheme, t2, defaultTextStyle, defaultDecoration, result, _this = this, _null = null, theme = K.Theme_of(context); context.dependOnInheritedWidgetOfExactType$1$0(type$.TooltipTheme); t1 = K.Theme_of(context); tooltipTheme = t1.tooltipTheme; t1 = theme.colorScheme; t2 = theme.textTheme.bodyText2; if (t1.brightness === C.Brightness_0) { t2.toString; defaultTextStyle = t2.copyWith$2$color$fontSize(C.Color_4278190080, _this._getDefaultFontSize$0()); defaultDecoration = new S.BoxDecoration(P.Color$fromARGB(C.JSNumber_methods.round$0(229.5), 255, 255, 255), _null, _null, C.BorderRadius_tLn0, _null, _null, C.BoxShape_0); } else { t2.toString; defaultTextStyle = t2.copyWith$2$color$fontSize(C.Color_4294967295, _this._getDefaultFontSize$0()); t1 = C.Map_HFpTk.$index(0, 700); t1.toString; t1 = t1.value; defaultDecoration = new S.BoxDecoration(P.Color$fromARGB(C.JSNumber_methods.round$0(229.5), t1 >>> 16 & 255, t1 >>> 8 & 255, t1 & 255), _null, _null, C.BorderRadius_tLn0, _null, _null, C.BoxShape_0); } _this._widget.toString; t1 = tooltipTheme.height; _this.___TooltipState_height = t1 == null ? _this._getDefaultTooltipHeight$0() : t1; _this._widget.toString; t1 = tooltipTheme.padding; _this.___TooltipState_padding = t1 == null ? _this._getDefaultPadding$0() : t1; t1 = _this._widget; t1.toString; t2 = tooltipTheme.margin; _this.___TooltipState_margin = t2 == null ? C.EdgeInsets_0_0_0_0 : t2; t2 = tooltipTheme.verticalOffset; _this.___TooltipState_verticalOffset = t2 == null ? 24 : t2; tooltipTheme.toString; _this.___TooltipState_preferBelow = true; tooltipTheme.toString; _this.___TooltipState_excludeFromSemantics = false; t2 = tooltipTheme.decoration; _this.___TooltipState_decoration = t2 == null ? defaultDecoration : t2; t2 = tooltipTheme.textStyle; _this.___TooltipState_textStyle = t2 == null ? defaultTextStyle : t2; tooltipTheme.toString; _this.___TooltipState_waitDuration = C.Duration_0; tooltipTheme.toString; _this.___TooltipState_showDuration = C.Duration_1500000; result = D.GestureDetector$(C.HitTestBehavior_1, new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1.message, _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), false, false, false, t1.child, _null), C.DragStartBehavior_1, true, _null, _null, _null, _null, _null, _null, _null, _this.get$_handleLongPress(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return _this.get$_mouseIsConnected() ? new T.MouseRegion(new S._TooltipState_build_closure(_this), _null, new S._TooltipState_build_closure0(_this), C.C__DeferringMouseCursor, true, result, _null) : result; } }; S._TooltipState__handleMouseTrackerChange_closure.prototype = { call$0: function() { this.$this.___TooltipState__mouseIsConnected = this.mouseIsConnected; }, $signature: 0 }; S._TooltipState__createNewEntry_closure.prototype = { call$1: function(context) { return this.overlay; }, $signature: 79 }; S._TooltipState_build_closure.prototype = { call$1: function($event) { return this.$this._showTooltip$0(); }, $signature: 316 }; S._TooltipState_build_closure0.prototype = { call$1: function($event) { return this.$this._hideTooltip$0(); }, $signature: 207 }; S._TooltipPositionDelegate.prototype = { getConstraintsForChild$1: function(constraints) { return constraints.loosen$0(); }, getPositionForChild$2: function(size, childSize) { return N.positionDependentBox(childSize, this.preferBelow, size, this.target, this.verticalOffset); }, shouldRelayout$1: function(oldDelegate) { return !this.target.$eq(0, oldDelegate.target) || this.verticalOffset != oldDelegate.verticalOffset || this.preferBelow != oldDelegate.preferBelow; } }; S._TooltipOverlay.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = K.Theme_of(context).textTheme.bodyText2; t1.toString; return T.Positioned$fill(new T.IgnorePointer(true, _null, new T.CustomSingleChildLayout(new S._TooltipPositionDelegate(_this.target, _this.verticalOffset, _this.preferBelow), K.FadeTransition$(false, new T.ConstrainedBox(new S.BoxConstraints(0, 1 / 0, _this.height, 1 / 0), L.DefaultTextStyle$(M.Container$(_null, T.Center$(L.Text$(_this.message, _null, _null, _null, _null, _null, _this.textStyle, _null, _null, _null), 1, 1), C.Clip_0, _null, _null, _this.decoration, _null, _null, _null, _this.margin, _this.padding, _null, _null, _null), _null, _null, C.TextOverflow_0, true, t1, _null, _null, C.TextWidthBasis_0), _null), _this.animation), _null), _null)); } }; S.__TooltipState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; T.TooltipThemeData.prototype = { get$hashCode: function(_) { var _this = this; return P.hashValues(_this.height, _this.padding, _this.margin, _this.verticalOffset, _this.preferBelow, _this.excludeFromSemantics, _this.decoration, _this.textStyle, null, null, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof T.TooltipThemeData) if (other.height == _this.height) if (J.$eq$(other.padding, _this.padding)) if (J.$eq$(other.margin, _this.margin)) if (other.verticalOffset == _this.verticalOffset) if (J.$eq$(other.decoration, _this.decoration)) if (J.$eq$(other.textStyle, _this.textStyle)) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; } }; T._TooltipThemeData_Object_Diagnosticable.prototype = {}; U.ScriptCategory.prototype = { toString$0: function(_) { return this._typography$_name; } }; U.Typography.prototype = { geometryThemeFor$1: function(category) { switch (category) { case C.ScriptCategory_0: return this.englishLike; case C.ScriptCategory_1: return this.dense; case C.ScriptCategory_2: return this.tall; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof U.Typography && J.$eq$(other.black, _this.black) && J.$eq$(other.white, _this.white) && other.englishLike.$eq(0, _this.englishLike) && other.dense.$eq(0, _this.dense) && other.tall.$eq(0, _this.tall); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.black, _this.white, _this.englishLike, _this.dense, _this.tall, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; U._Typography_Object_Diagnosticable.prototype = {}; D.NetworkImage.prototype = { obtainKey$1: function(configuration) { return new O.SynchronousFuture(this, type$.SynchronousFuture_NetworkImage); }, load$2: function(_, key, decode) { var _null = null, chunkEvents = P.StreamController_StreamController(_null, _null, _null, _null, false, type$.ImageChunkEvent), t1 = this.__network_image_web$_loadAsync$3(key, decode, chunkEvents), t2 = key.scale; return L.MultiFrameImageStreamCompleter$(new P._ControllerStream(chunkEvents, H._instanceType(chunkEvents)._eval$1("_ControllerStream<1>")), t1, key.url, _null, t2); }, __network_image_web$_loadAsync$3: function(key, decode, chunkEvents) { return P.webOnlyInstantiateImageCodecFromUrl(P.Uri_base().resolve$1(key.url), new D.NetworkImage__loadAsync_closure(chunkEvents)); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof D.NetworkImage && other.url == this.url && other.scale === this.scale; }, get$hashCode: function(_) { return P.hashValues(this.url, this.scale, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return 'NetworkImage("' + H.S(this.url) + '", scale: ' + this.scale + ")"; } }; D.NetworkImage__loadAsync_closure.prototype = { call$2: function(bytes, total) { this.chunkEvents.add$1(0, new L.ImageChunkEvent(bytes, total)); }, $signature: 418 }; K.AlignmentGeometry.prototype = { add$1: function(_, other) { var _this = this; return new K._MixedAlignment(_this.get$_x() + other.get$_x(), _this.get$_alignment$_start(_this) + other.get$_alignment$_start(other), _this.get$_y() + other.get$_y()); }, toString$0: function(_) { var _this = this; if (_this.get$_alignment$_start(_this) === 0) return K.Alignment__stringify(_this.get$_x(), _this.get$_y()); if (_this.get$_x() === 0) return K.AlignmentDirectional__stringify(_this.get$_alignment$_start(_this), _this.get$_y()); return K.Alignment__stringify(_this.get$_x(), _this.get$_y()) + " + " + K.AlignmentDirectional__stringify(_this.get$_alignment$_start(_this), 0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; return other instanceof K.AlignmentGeometry && other.get$_x() == _this.get$_x() && other.get$_alignment$_start(other) == _this.get$_alignment$_start(_this) && other.get$_y() == _this.get$_y(); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.get$_x(), _this.get$_alignment$_start(_this), _this.get$_y(), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; K.Alignment.prototype = { get$_x: function() { return this.x; }, get$_alignment$_start: function(_) { return 0; }, get$_y: function() { return this.y; }, add$1: function(_, other) { if (other instanceof K.Alignment) return this.$add(0, other); return this.super$AlignmentGeometry$add(0, other); }, $sub: function(_, other) { return new K.Alignment(this.x - other.x, this.y - other.y); }, $add: function(_, other) { return new K.Alignment(this.x + other.x, this.y + other.y); }, $mul: function(_, other) { return new K.Alignment(this.x * other, this.y * other); }, $div: function(_, other) { return new K.Alignment(this.x / other, this.y / other); }, alongOffset$1: function(other) { var centerX = other._dx / 2, centerY = other._dy / 2; return new P.Offset(centerX + this.x * centerX, centerY + this.y * centerY); }, alongSize$1: function(other) { var centerX = other._dx / 2, centerY = other._dy / 2; return new P.Offset(centerX + this.x * centerX, centerY + this.y * centerY); }, inscribe$2: function(size, rect) { var t1 = rect.left, t2 = size._dx, halfWidthDelta = (rect.right - t1 - t2) / 2, t3 = rect.top, t4 = size._dy, halfHeightDelta = (rect.bottom - t3 - t4) / 2; t1 = t1 + halfWidthDelta + this.x * halfWidthDelta; t3 = t3 + halfHeightDelta + this.y * halfHeightDelta; return new P.Rect(t1, t3, t1 + t2, t3 + t4); }, resolve$1: function(direction) { return this; }, toString$0: function(_) { return K.Alignment__stringify(this.x, this.y); } }; K.AlignmentDirectional.prototype = { get$_x: function() { return 0; }, get$_alignment$_start: function(_) { return this.start; }, get$_y: function() { return this.y; }, add$1: function(_, other) { if (other instanceof K.AlignmentDirectional) return this.$add(0, other); return this.super$AlignmentGeometry$add(0, other); }, $sub: function(_, other) { return new K.AlignmentDirectional(this.start - other.start, this.y - other.y); }, $add: function(_, other) { return new K.AlignmentDirectional(this.start + other.start, this.y + other.y); }, $mul: function(_, other) { return new K.AlignmentDirectional(this.start * other, this.y * other); }, $div: function(_, other) { return new K.AlignmentDirectional(this.start / other, this.y / other); }, resolve$1: function(direction) { var _this = this; direction.toString; switch (direction) { case C.TextDirection_0: return new K.Alignment(-_this.start, _this.y); case C.TextDirection_1: return new K.Alignment(_this.start, _this.y); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, toString$0: function(_) { return K.AlignmentDirectional__stringify(this.start, this.y); } }; K._MixedAlignment.prototype = { $mul: function(_, other) { return new K._MixedAlignment(this._x * other, this._alignment$_start * other, this._y * other); }, $div: function(_, other) { return new K._MixedAlignment(this._x / other, this._alignment$_start / other, this._y / other); }, resolve$1: function(direction) { var _this = this; direction.toString; switch (direction) { case C.TextDirection_0: return new K.Alignment(_this._x - _this._alignment$_start, _this._y); case C.TextDirection_1: return new K.Alignment(_this._x + _this._alignment$_start, _this._y); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_x: function() { return this._x; }, get$_alignment$_start: function(receiver) { return this._alignment$_start; }, get$_y: function() { return this._y; } }; K.TextAlignVertical.prototype = { toString$0: function(_) { return "TextAlignVertical(y: " + this.y + ")"; } }; G.RenderComparison.prototype = { toString$0: function(_) { return this._basic_types$_name; } }; G.Axis0.prototype = { toString$0: function(_) { return this._basic_types$_name; } }; G.VerticalDirection.prototype = { toString$0: function(_) { return this._basic_types$_name; } }; G.AxisDirection.prototype = { toString$0: function(_) { return this._basic_types$_name; } }; N.PaintingBinding.prototype = { instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth: function(bytes, allowUpscaling, cacheHeight, cacheWidth) { return P.instantiateImageCodec(bytes, false, cacheHeight, cacheWidth); }, instantiateImageCodec$1: function(bytes) { return this.instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth(bytes, false, null, null); } }; N._SystemFontsNotifier.prototype = { notifyListeners$0: function() { for (var t1 = this._systemFontsCallbacks, t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.call$0(); }, addListener$1: function(_, listener) { this._systemFontsCallbacks.add$1(0, listener); }, removeListener$1: function(_, listener) { this._systemFontsCallbacks.remove$1(0, listener); } }; K.BorderRadiusGeometry.prototype = { subtract$1: function(other) { var _this = this; return new K._MixedBorderRadius(_this.get$_topLeft().$sub(0, other.get$_topLeft()), _this.get$_topRight().$sub(0, other.get$_topRight()), _this.get$_bottomLeft().$sub(0, other.get$_bottomLeft()), _this.get$_bottomRight().$sub(0, other.get$_bottomRight()), _this.get$_topStart().$sub(0, other.get$_topStart()), _this.get$_topEnd().$sub(0, other.get$_topEnd()), _this.get$_bottomStart().$sub(0, other.get$_bottomStart()), _this.get$_bottomEnd().$sub(0, other.get$_bottomEnd())); }, add$1: function(_, other) { var _this = this; return new K._MixedBorderRadius(_this.get$_topLeft().$add(0, other.get$_topLeft()), _this.get$_topRight().$add(0, other.get$_topRight()), _this.get$_bottomLeft().$add(0, other.get$_bottomLeft()), _this.get$_bottomRight().$add(0, other.get$_bottomRight()), _this.get$_topStart().$add(0, other.get$_topStart()), _this.get$_topEnd().$add(0, other.get$_topEnd()), _this.get$_bottomStart().$add(0, other.get$_bottomStart()), _this.get$_bottomEnd().$add(0, other.get$_bottomEnd())); }, toString$0: function(_) { var visual, t1, comma, logical, _this = this, _s18_ = "BorderRadius.only(", _s29_ = "BorderRadiusDirectional.only("; if (J.$eq$(_this.get$_topLeft(), _this.get$_topRight()) && J.$eq$(_this.get$_topRight(), _this.get$_bottomLeft()) && J.$eq$(_this.get$_bottomLeft(), _this.get$_bottomRight())) if (!J.$eq$(_this.get$_topLeft(), C.Radius_0_0)) visual = _this.get$_topLeft().x == _this.get$_topLeft().y ? "BorderRadius.circular(" + J.toStringAsFixed$1$n(_this.get$_topLeft().x, 1) + ")" : "BorderRadius.all(" + H.S(_this.get$_topLeft()) + ")"; else visual = null; else { if (!J.$eq$(_this.get$_topLeft(), C.Radius_0_0)) { t1 = _s18_ + ("topLeft: " + H.S(_this.get$_topLeft())); comma = true; } else { t1 = _s18_; comma = false; } if (!J.$eq$(_this.get$_topRight(), C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "topRight: " + H.S(_this.get$_topRight()); comma = true; } if (!J.$eq$(_this.get$_bottomLeft(), C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomLeft: " + H.S(_this.get$_bottomLeft()); comma = true; } if (!J.$eq$(_this.get$_bottomRight(), C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomRight: " + H.S(_this.get$_bottomRight()); } t1 += ")"; visual = t1.charCodeAt(0) == 0 ? t1 : t1; } if (_this.get$_topStart().$eq(0, _this.get$_topEnd()) && _this.get$_topEnd().$eq(0, _this.get$_bottomEnd()) && _this.get$_bottomEnd().$eq(0, _this.get$_bottomStart())) if (!_this.get$_topStart().$eq(0, C.Radius_0_0)) logical = _this.get$_topStart().x == _this.get$_topStart().y ? "BorderRadiusDirectional.circular(" + J.toStringAsFixed$1$n(_this.get$_topStart().x, 1) + ")" : "BorderRadiusDirectional.all(" + _this.get$_topStart().toString$0(0) + ")"; else logical = null; else { if (!_this.get$_topStart().$eq(0, C.Radius_0_0)) { t1 = _s29_ + ("topStart: " + _this.get$_topStart().toString$0(0)); comma = true; } else { t1 = _s29_; comma = false; } if (!_this.get$_topEnd().$eq(0, C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "topEnd: " + _this.get$_topEnd().toString$0(0); comma = true; } if (!_this.get$_bottomStart().$eq(0, C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomStart: " + _this.get$_bottomStart().toString$0(0); comma = true; } if (!_this.get$_bottomEnd().$eq(0, C.Radius_0_0)) { if (comma) t1 += ", "; t1 += "bottomEnd: " + _this.get$_bottomEnd().toString$0(0); } t1 += ")"; logical = t1.charCodeAt(0) == 0 ? t1 : t1; } t1 = visual != null; if (t1 && logical != null) return H.S(visual) + " + " + logical; if (t1) return visual; if (logical != null) return logical; return "BorderRadius.zero"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof K.BorderRadiusGeometry && J.$eq$(other.get$_topLeft(), _this.get$_topLeft()) && J.$eq$(other.get$_topRight(), _this.get$_topRight()) && J.$eq$(other.get$_bottomLeft(), _this.get$_bottomLeft()) && J.$eq$(other.get$_bottomRight(), _this.get$_bottomRight()) && other.get$_topStart().$eq(0, _this.get$_topStart()) && other.get$_topEnd().$eq(0, _this.get$_topEnd()) && other.get$_bottomStart().$eq(0, _this.get$_bottomStart()) && other.get$_bottomEnd().$eq(0, _this.get$_bottomEnd()); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.get$_topLeft(), _this.get$_topRight(), _this.get$_bottomLeft(), _this.get$_bottomRight(), _this.get$_topStart(), _this.get$_topEnd(), _this.get$_bottomStart(), _this.get$_bottomEnd(), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; K.BorderRadius.prototype = { get$_topLeft: function() { return this.topLeft; }, get$_topRight: function() { return this.topRight; }, get$_bottomLeft: function() { return this.bottomLeft; }, get$_bottomRight: function() { return this.bottomRight; }, get$_topStart: function() { return C.Radius_0_0; }, get$_topEnd: function() { return C.Radius_0_0; }, get$_bottomStart: function() { return C.Radius_0_0; }, get$_bottomEnd: function() { return C.Radius_0_0; }, toRRect$1: function(rect) { var _this = this; return P.RRect$fromRectAndCorners(rect, _this.bottomLeft, _this.bottomRight, _this.topLeft, _this.topRight); }, subtract$1: function(other) { if (other instanceof K.BorderRadius) return this.$sub(0, other); return this.super$BorderRadiusGeometry$subtract(other); }, add$1: function(_, other) { if (other instanceof K.BorderRadius) return this.$add(0, other); return this.super$BorderRadiusGeometry$add(0, other); }, $sub: function(_, other) { var _this = this; return new K.BorderRadius(_this.topLeft.$sub(0, other.topLeft), _this.topRight.$sub(0, other.topRight), _this.bottomLeft.$sub(0, other.bottomLeft), _this.bottomRight.$sub(0, other.bottomRight)); }, $add: function(_, other) { var _this = this; return new K.BorderRadius(_this.topLeft.$add(0, other.topLeft), _this.topRight.$add(0, other.topRight), _this.bottomLeft.$add(0, other.bottomLeft), _this.bottomRight.$add(0, other.bottomRight)); }, $mul: function(_, other) { var _this = this; return new K.BorderRadius(_this.topLeft.$mul(0, other), _this.topRight.$mul(0, other), _this.bottomLeft.$mul(0, other), _this.bottomRight.$mul(0, other)); }, $div: function(_, other) { var _this = this; return new K.BorderRadius(_this.topLeft.$div(0, other), _this.topRight.$div(0, other), _this.bottomLeft.$div(0, other), _this.bottomRight.$div(0, other)); }, resolve$1: function(direction) { return this; } }; K._MixedBorderRadius.prototype = { $mul: function(_, other) { var _this = this; return new K._MixedBorderRadius(_this._topLeft.$mul(0, other), _this._topRight.$mul(0, other), _this._bottomLeft.$mul(0, other), _this._bottomRight.$mul(0, other), _this._topStart.$mul(0, other), _this._topEnd.$mul(0, other), _this._bottomStart.$mul(0, other), _this._bottomEnd.$mul(0, other)); }, $div: function(_, other) { var _this = this; return new K._MixedBorderRadius(_this._topLeft.$div(0, other), _this._topRight.$div(0, other), _this._bottomLeft.$div(0, other), _this._bottomRight.$div(0, other), _this._topStart.$div(0, other), _this._topEnd.$div(0, other), _this._bottomStart.$div(0, other), _this._bottomEnd.$div(0, other)); }, resolve$1: function(direction) { var _this = this; direction.toString; switch (direction) { case C.TextDirection_0: return new K.BorderRadius(_this._topLeft.$add(0, _this._topEnd), _this._topRight.$add(0, _this._topStart), _this._bottomLeft.$add(0, _this._bottomEnd), _this._bottomRight.$add(0, _this._bottomStart)); case C.TextDirection_1: return new K.BorderRadius(_this._topLeft.$add(0, _this._topStart), _this._topRight.$add(0, _this._topEnd), _this._bottomLeft.$add(0, _this._bottomStart), _this._bottomRight.$add(0, _this._bottomEnd)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_topLeft: function() { return this._topLeft; }, get$_topRight: function() { return this._topRight; }, get$_bottomLeft: function() { return this._bottomLeft; }, get$_bottomRight: function() { return this._bottomRight; }, get$_topStart: function() { return this._topStart; }, get$_topEnd: function() { return this._topEnd; }, get$_bottomStart: function() { return this._bottomStart; }, get$_bottomEnd: function() { return this._bottomEnd; } }; Y.BorderStyle.prototype = { toString$0: function(_) { return this._borders$_name; } }; Y.BorderSide.prototype = { scale$1: function(_, t) { var t1 = Math.max(0, this.width * t), t2 = t <= 0 ? C.BorderStyle_0 : this.style; return new Y.BorderSide(this.color, t1, t2); }, toPaint$0: function() { switch (this.style) { case C.BorderStyle_1: var t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1.set$color(0, this.color); t1.set$strokeWidth(this.width); t1.set$style(0, C.PaintingStyle_1); return t1; case C.BorderStyle_0: t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1.set$color(0, C.Color_0); t1.set$strokeWidth(0); t1.set$style(0, C.PaintingStyle_1); return t1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof Y.BorderSide && J.$eq$(other.color, _this.color) && other.width === _this.width && other.style === _this.style; }, get$hashCode: function(_) { return P.hashValues(this.color, this.width, this.style, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "BorderSide(" + H.S(this.color) + ", " + C.JSNumber_methods.toStringAsFixed$1(this.width, 1) + ", " + this.style.toString$0(0) + ")"; } }; Y.ShapeBorder.prototype = { add$2$reversed: function(_, other, reversed) { return null; }, add$1: function($receiver, other) { return this.add$2$reversed($receiver, other, false); }, $add: function(_, other) { var t1 = this.add$1(0, other); if (t1 == null) t1 = other.add$2$reversed(0, this, true); return t1 == null ? new Y._CompoundBorder(H.setRuntimeTypeInfo([other, this], type$.JSArray_ShapeBorder)) : t1; }, lerpFrom$2: function(a, t) { if (a == null) return this.scale$1(0, t); return null; }, lerpTo$2: function(b, t) { if (b == null) return this.scale$1(0, 1 - t); return null; }, toString$0: function(_) { return "ShapeBorder()"; } }; Y.OutlinedBorder.prototype = {}; Y._CompoundBorder.prototype = { get$dimensions: function() { return C.JSArray_methods.fold$1$2(this.borders, C.EdgeInsets_0_0_0_0, new Y._CompoundBorder_dimensions_closure(), type$.EdgeInsetsGeometry); }, add$2$reversed: function(_, other, reversed) { var t2, ours, merged, t1 = other instanceof Y._CompoundBorder; if (!t1) { t2 = this.borders; ours = reversed ? C.JSArray_methods.get$last(t2) : C.JSArray_methods.get$first(t2); merged = ours.add$2$reversed(0, other, reversed); if (merged == null) merged = other.add$2$reversed(0, ours, !reversed); if (merged != null) { t1 = P.List_List$of(t2, true, type$.ShapeBorder); t1[reversed ? t1.length - 1 : 0] = merged; return new Y._CompoundBorder(t1); } } t2 = H.setRuntimeTypeInfo([], type$.JSArray_ShapeBorder); if (reversed) C.JSArray_methods.addAll$1(t2, this.borders); if (t1) C.JSArray_methods.addAll$1(t2, other.borders); else t2.push(other); if (!reversed) C.JSArray_methods.addAll$1(t2, this.borders); return new Y._CompoundBorder(t2); }, add$1: function($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1: function(_, t) { var t1 = this.borders, t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ShapeBorder>"); return new Y._CompoundBorder(P.List_List$of(new H.MappedListIterable(t1, new Y._CompoundBorder_scale_closure(t), t2), true, t2._eval$1("ListIterable.E"))); }, lerpFrom$2: function(a, t) { return Y._CompoundBorder_lerp(a, this, t); }, lerpTo$2: function(b, t) { return Y._CompoundBorder_lerp(this, b, t); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1, index; for (t1 = this.borders, index = 0; index < t1.length - 1; ++index) rect = t1[index].get$dimensions().resolve$1(textDirection).deflateRect$1(rect); return C.JSArray_methods.get$last(t1).getInnerPath$2$textDirection(rect, textDirection); }, getOuterPath$2$textDirection: function(rect, textDirection) { return C.JSArray_methods.get$first(this.borders).getOuterPath$2$textDirection(rect, textDirection); }, paint$3$textDirection: function(canvas, rect, textDirection) { var t1, t2, _i, border; for (t1 = this.borders, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { border = t1[_i]; border.paint$3$textDirection(canvas, rect, textDirection); rect = border.get$dimensions().resolve$1(textDirection).deflateRect$1(rect); } }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof Y._CompoundBorder && S.listEquals(other.borders, this.borders); }, get$hashCode: function(_) { return P.hashList(this.borders); }, toString$0: function(_) { var t1 = this.borders, t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); return new H.MappedListIterable(new H.ReversedListIterable(t1, t2), new Y._CompoundBorder_toString_closure(), t2._eval$1("MappedListIterable")).join$1(0, " + "); } }; Y._CompoundBorder_dimensions_closure.prototype = { call$2: function(previousValue, border) { return previousValue.add$1(0, border.get$dimensions()); }, $signature: 2196 }; Y._CompoundBorder_scale_closure.prototype = { call$1: function(border) { return border.scale$1(0, this.t); }, $signature: 2211 }; Y._CompoundBorder_toString_closure.prototype = { call$1: function(border) { return J.toString$0$(border); }, $signature: 2221 }; F.BoxShape.prototype = { toString$0: function(_) { return this._box_border$_name; } }; F.BoxBorder.prototype = { add$2$reversed: function(_, other, reversed) { return null; }, add$1: function($receiver, other) { return this.add$2$reversed($receiver, other, false); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRect$1(0, this.get$dimensions().resolve$1(textDirection).deflateRect$1(rect)); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRect$1(0, rect); return t1; } }; F.Border.prototype = { get$dimensions: function() { var _this = this; return new V.EdgeInsets(_this.left.width, _this.top.width, _this.right.width, _this.bottom.width); }, get$_colorIsUniform: function() { var _this = this, topColor = _this.top.color; return J.$eq$(_this.right.color, topColor) && J.$eq$(_this.bottom.color, topColor) && J.$eq$(_this.left.color, topColor); }, get$_widthIsUniform: function() { var _this = this, topWidth = _this.top.width; return _this.right.width === topWidth && _this.bottom.width === topWidth && _this.left.width === topWidth; }, get$_styleIsUniform: function() { var _this = this, topStyle = _this.top.style; return _this.right.style === topStyle && _this.bottom.style === topStyle && _this.left.style === topStyle; }, add$2$reversed: function(_, other, reversed) { var _this = this; if (other instanceof F.Border && Y.BorderSide_canMerge(_this.top, other.top) && Y.BorderSide_canMerge(_this.right, other.right) && Y.BorderSide_canMerge(_this.bottom, other.bottom) && Y.BorderSide_canMerge(_this.left, other.left)) return new F.Border(Y.BorderSide_merge(_this.top, other.top), Y.BorderSide_merge(_this.right, other.right), Y.BorderSide_merge(_this.bottom, other.bottom), Y.BorderSide_merge(_this.left, other.left)); return null; }, add$1: function($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1: function(_, t) { var _this = this; return new F.Border(_this.top.scale$1(0, t), _this.right.scale$1(0, t), _this.bottom.scale$1(0, t), _this.left.scale$1(0, t)); }, lerpFrom$2: function(a, t) { if (a instanceof F.Border) return F.Border_lerp(a, this, t); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { if (b instanceof F.Border) return F.Border_lerp(this, b, t); return this.super$ShapeBorder$lerpTo(b, t); }, paint$5$borderRadius$shape$textDirection: function(canvas, rect, borderRadius, shape, textDirection) { var t1, _this = this, _s80_ = string$.x60null_c; if (_this.get$_colorIsUniform() && _this.get$_widthIsUniform() && _this.get$_styleIsUniform()) { t1 = _this.top; switch (t1.style) { case C.BorderStyle_0: return; case C.BorderStyle_1: switch (shape) { case C.BoxShape_1: F.BoxBorder__paintUniformBorderWithCircle(canvas, rect, t1); break; case C.BoxShape_0: if (borderRadius != null) { F.BoxBorder__paintUniformBorderWithRadius(canvas, rect, t1, borderRadius); return; } F.BoxBorder__paintUniformBorderWithRectangle(canvas, rect, t1); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } Y.paintBorder(canvas, rect, _this.bottom, _this.left, _this.right, _this.top); }, paint$3$textDirection: function(canvas, rect, textDirection) { return this.paint$5$borderRadius$shape$textDirection(canvas, rect, null, C.BoxShape_0, textDirection); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof F.Border && J.$eq$(other.top, _this.top) && J.$eq$(other.right, _this.right) && J.$eq$(other.bottom, _this.bottom) && J.$eq$(other.left, _this.left); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.top, _this.right, _this.bottom, _this.left, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1, t2, _this = this; if (_this.get$_colorIsUniform() && _this.get$_widthIsUniform() && _this.get$_styleIsUniform()) return "Border.all(" + H.S(_this.top) + ")"; t1 = H.setRuntimeTypeInfo([], type$.JSArray_String); t2 = _this.top; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("top: " + H.S(t2)); t2 = _this.right; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("right: " + H.S(t2)); t2 = _this.bottom; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("bottom: " + H.S(t2)); t2 = _this.left; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("left: " + H.S(t2)); return "Border(" + C.JSArray_methods.join$1(t1, ", ") + ")"; }, get$top: function(receiver) { return this.top; } }; F.BorderDirectional.prototype = { get$dimensions: function() { var _this = this; return new V.EdgeInsetsDirectional(_this.start.width, _this.top.width, _this.end.width, _this.bottom.width); }, get$isUniform: function() { var topWidth, topStyle, _this = this, t1 = _this.top, topColor = t1.color, t2 = _this.start; if (!J.$eq$(t2.color, topColor) || !J.$eq$(_this.end.color, topColor) || !J.$eq$(_this.bottom.color, topColor)) return false; topWidth = t1.width; if (t2.width !== topWidth || _this.end.width !== topWidth || _this.bottom.width !== topWidth) return false; topStyle = t1.style; if (t2.style !== topStyle || _this.end.style !== topStyle || _this.bottom.style !== topStyle) return false; return true; }, add$2$reversed: function(_, other, reversed) { var t1, t2, t3, _this = this, _null = null; if (other instanceof F.BorderDirectional) { t1 = _this.top; t2 = other.top; if (Y.BorderSide_canMerge(t1, t2) && Y.BorderSide_canMerge(_this.start, other.start) && Y.BorderSide_canMerge(_this.end, other.end) && Y.BorderSide_canMerge(_this.bottom, other.bottom)) return new F.BorderDirectional(Y.BorderSide_merge(t1, t2), Y.BorderSide_merge(_this.start, other.start), Y.BorderSide_merge(_this.end, other.end), Y.BorderSide_merge(_this.bottom, other.bottom)); return _null; } if (other instanceof F.Border) { t1 = other.top; t2 = _this.top; if (!Y.BorderSide_canMerge(t1, t2) || !Y.BorderSide_canMerge(other.bottom, _this.bottom)) return _null; t3 = _this.start; if (!J.$eq$(t3, C.BorderSide_m7u) || !J.$eq$(_this.end, C.BorderSide_m7u)) { if (!J.$eq$(other.left, C.BorderSide_m7u) || !J.$eq$(other.right, C.BorderSide_m7u)) return _null; return new F.BorderDirectional(Y.BorderSide_merge(t1, t2), t3, _this.end, Y.BorderSide_merge(other.bottom, _this.bottom)); } return new F.Border(Y.BorderSide_merge(t1, t2), other.right, Y.BorderSide_merge(other.bottom, _this.bottom), other.left); } return _null; }, add$1: function($receiver, other) { return this.add$2$reversed($receiver, other, false); }, scale$1: function(_, t) { var _this = this; return new F.BorderDirectional(_this.top.scale$1(0, t), _this.start.scale$1(0, t), _this.end.scale$1(0, t), _this.bottom.scale$1(0, t)); }, lerpFrom$2: function(a, t) { if (a instanceof F.BorderDirectional) return F.BorderDirectional_lerp(a, this, t); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { if (b instanceof F.BorderDirectional) return F.BorderDirectional_lerp(this, b, t); return this.super$ShapeBorder$lerpTo(b, t); }, paint$5$borderRadius$shape$textDirection: function(canvas, rect, borderRadius, shape, textDirection) { var t1, left, right, _this = this, _s80_ = string$.x60null_c; if (_this.get$isUniform()) { t1 = _this.top; switch (t1.style) { case C.BorderStyle_0: return; case C.BorderStyle_1: switch (shape) { case C.BoxShape_1: F.BoxBorder__paintUniformBorderWithCircle(canvas, rect, t1); break; case C.BoxShape_0: if (borderRadius != null) { F.BoxBorder__paintUniformBorderWithRadius(canvas, rect, t1, borderRadius); return; } F.BoxBorder__paintUniformBorderWithRectangle(canvas, rect, t1); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } textDirection.toString; switch (textDirection) { case C.TextDirection_0: left = _this.end; right = _this.start; break; case C.TextDirection_1: left = _this.start; right = _this.end; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } Y.paintBorder(canvas, rect, _this.bottom, left, right, _this.top); }, paint$3$textDirection: function(canvas, rect, textDirection) { return this.paint$5$borderRadius$shape$textDirection(canvas, rect, null, C.BoxShape_0, textDirection); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof F.BorderDirectional && J.$eq$(other.top, _this.top) && J.$eq$(other.start, _this.start) && J.$eq$(other.end, _this.end) && J.$eq$(other.bottom, _this.bottom); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.top, _this.start, _this.end, _this.bottom, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray_String), t2 = _this.top; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("top: " + H.S(t2)); t2 = _this.start; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("start: " + H.S(t2)); t2 = _this.end; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("end: " + H.S(t2)); t2 = _this.bottom; if (!J.$eq$(t2, C.BorderSide_m7u)) t1.push("bottom: " + H.S(t2)); return "BorderDirectional(" + C.JSArray_methods.join$1(t1, ", ") + ")"; }, get$top: function(receiver) { return this.top; } }; S.BoxDecoration.prototype = { get$padding: function(_) { var t1 = this.border; return t1 == null ? null : t1.get$dimensions(); }, getClipPath$2: function(rect, textDirection) { var square, t1, t2; switch (this.shape) { case C.BoxShape_1: square = P.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2); t1 = P.Path_Path(); t1.addOval$1(0, square); return t1; case C.BoxShape_0: t1 = this.borderRadius; if (t1 != null) { t2 = P.Path_Path(); t2.addRRect$1(0, t1.resolve$1(textDirection).toRRect$1(rect)); return t2; } t1 = P.Path_Path(); t1.addRect$1(0, rect); return t1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, scale$1: function(_, factor) { var _this = this, _null = null, t1 = P.Color_lerp(_null, _this.color, factor), t2 = F.BoxBorder_lerp(_null, _this.border, factor), t3 = K.BorderRadiusGeometry_lerp(_null, _this.borderRadius, factor), t4 = O.BoxShadow_lerpList(_null, _this.boxShadow, factor); return new S.BoxDecoration(t1, _this.image, t2, t3, t4, _null, _this.shape); }, get$isComplex: function() { return this.boxShadow != null; }, lerpFrom$2: function(a, t) { if (a == null) return this.scale$1(0, t); if (a instanceof S.BoxDecoration) return S.BoxDecoration_lerp(a, this, t); return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2: function(b, t) { if (b == null) return this.scale$1(0, 1 - t); if (b instanceof S.BoxDecoration) return S.BoxDecoration_lerp(this, b, t); return this.super$Decoration$lerpTo(b, t); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof S.BoxDecoration) if (J.$eq$(other.color, _this.color)) if (J.$eq$(other.image, _this.image)) if (J.$eq$(other.border, _this.border)) if (J.$eq$(other.borderRadius, _this.borderRadius)) if (S.listEquals(other.boxShadow, _this.boxShadow)) t1 = other.shape === _this.shape; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.image, _this.border, _this.borderRadius, P.hashList(_this.boxShadow), _this.gradient, _this.shape, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, hitTest$3$textDirection: function(size, position, textDirection) { var t1, distance, t2; switch (this.shape) { case C.BoxShape_0: t1 = this.borderRadius; if (t1 != null) return t1.resolve$1(textDirection).toRRect$1(new P.Rect(0, 0, 0 + size._dx, 0 + size._dy)).contains$1(0, position); return true; case C.BoxShape_1: distance = position.$sub(0, size.center$1(C.Offset_0_0)).get$distance(); t1 = size._dx; t2 = size._dy; return distance <= Math.min(H.checkNum(t1), H.checkNum(t2)) / 2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, createBoxPainter$1: function(onChanged) { return new S._BoxDecorationPainter(this, onChanged); } }; S._BoxDecorationPainter.prototype = { _paintBox$4: function(canvas, rect, paint, textDirection) { var t1 = this._box_decoration$_decoration; switch (t1.shape) { case C.BoxShape_1: canvas.drawCircle$3(0, rect.get$center(), rect.get$shortestSide() / 2, paint); break; case C.BoxShape_0: t1 = t1.borderRadius; if (t1 == null) canvas.drawRect$2(0, rect, paint); else canvas.drawRRect$2(0, t1.resolve$1(textDirection).toRRect$1(rect), paint); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _box_decoration$_paintShadows$3: function(canvas, rect, textDirection) { var t2, _i, boxShadow, t3, result, t4, t1 = this._box_decoration$_decoration.boxShadow; if (t1 == null) return; for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { boxShadow = t1[_i]; boxShadow.toString; t3 = H._detectRenderer(); result = t3 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); result.set$color(0, boxShadow.color); result.set$maskFilter(new P.MaskFilter(C.BlurStyle_0, boxShadow.blurRadius * 0.57735 + 0.5)); t3 = rect.shift$1(boxShadow.offset); t4 = boxShadow.spreadRadius; this._paintBox$4(canvas, new P.Rect(t3.left - t4, t3.top - t4, t3.right + t4, t3.bottom + t4), result, textDirection); } }, _paintBackgroundImage$3: function(canvas, rect, configuration) { var t3, square, clipPath, _this = this, t1 = _this._box_decoration$_decoration, t2 = t1.image; if (t2 == null) return; if (_this._box_decoration$_imagePainter == null) { t3 = _this.onChanged; t3.toString; _this._box_decoration$_imagePainter = new X.DecorationImagePainter(t2, t3); } switch (t1.shape) { case C.BoxShape_1: square = P.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2); clipPath = P.Path_Path(); clipPath.addOval$1(0, square); break; case C.BoxShape_0: t1 = t1.borderRadius; if (t1 != null) { clipPath = P.Path_Path(); clipPath.addRRect$1(0, t1.resolve$1(configuration.textDirection).toRRect$1(rect)); } else clipPath = null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._box_decoration$_imagePainter.paint$4(canvas, rect, clipPath, configuration); }, dispose$0: function(_) { var t1 = this._box_decoration$_imagePainter; if (t1 != null) t1.dispose$0(0); this.super$BoxPainter$dispose(0); }, paint$3: function(canvas, offset, configuration) { var t4, t5, paint, _this = this, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, rect = new P.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy), textDirection = configuration.textDirection; _this._box_decoration$_paintShadows$3(canvas, rect, textDirection); t1 = _this._box_decoration$_decoration; t2 = t1.color; t3 = t2 == null; if (!t3 || false) { t4 = _this._cachedBackgroundPaint; if (t4 != null) t5 = false; else t5 = true; if (t5) { t4 = H._detectRenderer(); paint = t4 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); if (!t3) paint.set$color(0, t2); _this._cachedBackgroundPaint = paint; t2 = paint; } else t2 = t4; t2.toString; _this._paintBox$4(canvas, rect, t2, textDirection); } _this._paintBackgroundImage$3(canvas, rect, configuration); t2 = t1.border; if (t2 != null) t2.paint$5$borderRadius$shape$textDirection(canvas, rect, type$.nullable_BorderRadius._as(t1.borderRadius), t1.shape, textDirection); }, toString$0: function(_) { return "BoxPainter for " + this._box_decoration$_decoration.toString$0(0); } }; U.BoxFit.prototype = { toString$0: function(_) { return this._box_fit$_name; } }; U.FittedSizes.prototype = {}; O.BoxShadow.prototype = { toPaint$0: function() { var t1 = H._detectRenderer(), result = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); result.set$color(0, this.color); result.set$maskFilter(new P.MaskFilter(C.BlurStyle_0, this.blurRadius * 0.57735 + 0.5)); return result; }, scale$1: function(_, factor) { var _this = this; return new O.BoxShadow(_this.spreadRadius * factor, _this.color, _this.offset.$mul(0, factor), _this.blurRadius * factor); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof O.BoxShadow && J.$eq$(other.color, _this.color) && J.$eq$(other.offset, _this.offset) && other.blurRadius == _this.blurRadius && other.spreadRadius == _this.spreadRadius; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.offset, _this.blurRadius, _this.spreadRadius, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "BoxShadow(" + H.S(_this.color) + ", " + H.S(_this.offset) + ", " + E.debugFormatDouble(_this.blurRadius) + ", " + E.debugFormatDouble(_this.spreadRadius) + ")"; } }; X.CircleBorder.prototype = { get$dimensions: function() { var t1 = this.side.width; return new V.EdgeInsets(t1, t1, t1, t1); }, scale$1: function(_, t) { return new X.CircleBorder(this.side.scale$1(0, t)); }, lerpFrom$2: function(a, t) { if (a instanceof X.CircleBorder) return new X.CircleBorder(Y.BorderSide_lerp(a.side, this.side, t)); return this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { if (b instanceof X.CircleBorder) return new X.CircleBorder(Y.BorderSide_lerp(this.side, b.side, t)); return this.super$ShapeBorder$lerpTo(b, t); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addOval$1(0, P.Rect$fromCircle(rect.get$center(), Math.max(0, rect.get$shortestSide() / 2 - this.side.width))); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addOval$1(0, P.Rect$fromCircle(rect.get$center(), rect.get$shortestSide() / 2)); return t1; }, getOuterPath$1: function(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side: function(side) { return new X.CircleBorder(side == null ? this.side : side); }, paint$3$textDirection: function(canvas, rect, textDirection) { var t1 = this.side; switch (t1.style) { case C.BorderStyle_0: break; case C.BorderStyle_1: canvas.drawCircle$3(0, rect.get$center(), (rect.get$shortestSide() - t1.width) / 2, t1.toPaint$0()); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, paint$2: function(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof X.CircleBorder && J.$eq$(other.side, this.side); }, get$hashCode: function(_) { return J.get$hashCode$(this.side); }, toString$0: function(_) { return "CircleBorder(" + H.S(this.side) + ")"; } }; Z.ClipContext.prototype = { _clipAndPaint$4: function(canvasClipCall, clipBehavior, bounds, painter) { var t1, t2, _this = this; _this.get$canvas(_this).save$0(0); switch (clipBehavior) { case C.Clip_0: break; case C.Clip_1: canvasClipCall.call$1(false); break; case C.Clip_2: canvasClipCall.call$1(true); break; case C.Clip_3: canvasClipCall.call$1(true); t1 = _this.get$canvas(_this); t2 = H._detectRenderer(); t1.saveLayer$2(0, bounds, t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData())); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } painter.call$0(); if (clipBehavior === C.Clip_3) _this.get$canvas(_this).restore$0(0); _this.get$canvas(_this).restore$0(0); }, clipPathAndPaint$4: function(path, clipBehavior, bounds, painter) { this._clipAndPaint$4(new Z.ClipContext_clipPathAndPaint_closure(this, path), clipBehavior, bounds, painter); }, clipRRectAndPaint$4: function(rrect, clipBehavior, bounds, painter) { this._clipAndPaint$4(new Z.ClipContext_clipRRectAndPaint_closure(this, rrect), clipBehavior, bounds, painter); }, clipRectAndPaint$4: function(rect, clipBehavior, bounds, painter) { this._clipAndPaint$4(new Z.ClipContext_clipRectAndPaint_closure(this, rect), clipBehavior, bounds, painter); } }; Z.ClipContext_clipPathAndPaint_closure.prototype = { call$1: function(doAntiAias) { var t1 = this.$this; return t1.get$canvas(t1).clipPath$2$doAntiAlias(0, this.path, doAntiAias); }, $signature: 52 }; Z.ClipContext_clipRRectAndPaint_closure.prototype = { call$1: function(doAntiAias) { var t1 = this.$this; return t1.get$canvas(t1).clipRRect$2$doAntiAlias(0, this.rrect, doAntiAias); }, $signature: 52 }; Z.ClipContext_clipRectAndPaint_closure.prototype = { call$1: function(doAntiAias) { var t1 = this.$this; return t1.get$canvas(t1).clipRect$2$doAntiAlias(0, this.rect, doAntiAias); }, $signature: 52 }; E.ColorSwatch.prototype = { $index: function(_, index) { return this._swatch.$index(0, index); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return _this.super$Color$$eq(0, other) && H._instanceType(_this)._eval$1("ColorSwatch")._is(other) && S.mapEquals(other._swatch, _this._swatch); }, get$hashCode: function(_) { return P.hashValues(H.getRuntimeType(this), this.value, this._swatch, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "ColorSwatch(primary value: " + this.super$Color$toString(0) + ")"; } }; E.ImageSizeInfo.prototype = { _sizeToBytes$1: function(size) { return C.JSNumber_methods.toInt$0(size._dx * size._dy * 4 * 1.3333333333333333); }, toJson$0: function() { var t4, t5, _this = this, t1 = type$.String, t2 = type$.nullable_Object, t3 = P.LinkedHashMap_LinkedHashMap$_empty(t1, t2); t3.$indexSet(0, "source", _this.source); t4 = _this.displaySize; t3.$indexSet(0, "displaySize", P.LinkedHashMap_LinkedHashMap$_literal(["width", t4._dx, "height", t4._dy], t1, t2)); t5 = _this.imageSize; t3.$indexSet(0, "imageSize", P.LinkedHashMap_LinkedHashMap$_literal(["width", t5._dx, "height", t5._dy], t1, t2)); t3.$indexSet(0, "displaySizeInBytes", _this._sizeToBytes$1(t4)); t3.$indexSet(0, "decodedSizeInBytes", _this._sizeToBytes$1(t5)); return t3; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof E.ImageSizeInfo && other.source === _this.source && other.imageSize.$eq(0, _this.imageSize) && other.displaySize.$eq(0, _this.displaySize); }, get$hashCode: function(_) { return P.hashValues(this.source, this.displaySize, this.imageSize, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "ImageSizeInfo(" + this.source + ", imageSize: " + this.imageSize.toString$0(0) + ", displaySize: " + this.displaySize.toString$0(0) + ")"; } }; Z.Decoration.prototype = { toStringShort$0: function() { return "Decoration"; }, get$padding: function(_) { return C.EdgeInsets_0_0_0_0; }, get$isComplex: function() { return false; }, lerpFrom$2: function(a, t) { return null; }, lerpTo$2: function(b, t) { return null; }, hitTest$3$textDirection: function(size, position, textDirection) { return true; }, getClipPath$2: function(rect, textDirection) { throw H.wrapException(P.UnsupportedError$("This Decoration subclass does not expect to be used for clipping.")); } }; Z.BoxPainter.prototype = { dispose$0: function(_) { } }; Z._Decoration_Object_Diagnosticable.prototype = {}; X.ImageRepeat.prototype = { toString$0: function(_) { return this._decoration_image$_name; } }; X.DecorationImage.prototype = { $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; other instanceof X.DecorationImage; return false; }, get$hashCode: function(_) { return P.hashValues(this.image, null, null, C.Alignment_0_0, null, C.ImageRepeat_3, false, 1, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t1 = H.setRuntimeTypeInfo([H.S(this.image)], type$.JSArray_String); t1.push(C.Alignment_0_0.toString$0(0)); t1.push("scale: 1"); return "DecorationImage(" + C.JSArray_methods.join$1(t1, ", ") + ")"; } }; X.DecorationImagePainter.prototype = { paint$4: function(canvas, rect, clipPath, configuration) { var t2, t3, _this = this, _null = null, t1 = _this._details, newImageStream = t1.image.resolve$1(configuration); newImageStream.get$key(newImageStream); _this._decoration_image$_imageStream = newImageStream; newImageStream.addListener$1(0, new L.ImageStreamListener(_this.get$_handleImage(), _null, t1.onError)); if (_this._decoration_image$_image == null) return; t1 = clipPath != null; if (t1) { canvas.save$0(0); canvas.clipPath$1(0, clipPath); } t2 = _this._decoration_image$_image; t3 = t2.image; X.paintImage(C.Alignment_0_0, canvas, _null, _null, t2.debugLabel, C.FilterQuality_1, _null, false, t3, false, false, rect, C.ImageRepeat_3, t2.scale); if (t1) canvas.restore$0(0); }, _handleImage$2: function(value, synchronousCall) { var t1, t2, _this = this; if (J.$eq$(_this._decoration_image$_image, value)) return; t1 = _this._decoration_image$_image; if (t1 != null) if (value.image.isCloneOf$1(t1.image)) { t2 = t1.scale; t1 = t2 === t2 && value.debugLabel == t1.debugLabel; } else t1 = false; else t1 = false; if (t1) { value.image.dispose$0(0); return; } t1 = _this._decoration_image$_image; if (t1 != null) t1.image.dispose$0(0); _this._decoration_image$_image = value; if (!synchronousCall) _this._decoration_image$_onChanged.call$0(); }, dispose$0: function(_) { var t1 = this._decoration_image$_image; if (t1 != null) t1.image.dispose$0(0); this._decoration_image$_image = null; }, toString$0: function(_) { return "DecorationImagePainter(stream: " + H.S(this._decoration_image$_imageStream) + ", image: " + H.S(this._decoration_image$_image) + ") for " + this._details.toString$0(0); } }; X.paintImage_closure.prototype = { call$1: function(timeStamp) { var t2, t3, t4, t1 = $._pendingImageSizeInfo; t1 = t1.get$values(t1); $._lastFrameImageSizeInfo = P.LinkedHashSet_LinkedHashSet$of(t1, H._instanceType(t1)._eval$1("Iterable.E")); t1 = $._pendingImageSizeInfo; if (t1.get$isEmpty(t1)) return; t1 = type$.String; t2 = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Object); for (t3 = $._pendingImageSizeInfo, t3 = t3.get$values(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) { t4 = t3.get$current(t3); t2.$indexSet(0, t4.source, t4.toJson$0()); } P.postEvent("Flutter.ImageSizesForFrame", t2); $._pendingImageSizeInfo = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.ImageSizeInfo); }, $signature: 28 }; V.EdgeInsetsGeometry.prototype = { get$horizontal: function() { var _this = this; return _this.get$_left(_this) + _this.get$_right(_this) + _this.get$_edge_insets$_start(_this) + _this.get$_edge_insets$_end(); }, along$1: function(axis) { var _this = this; switch (axis) { case C.Axis_0: return _this.get$horizontal(); case C.Axis_1: return _this.get$_top(_this) + _this.get$_bottom(_this); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, add$1: function(_, other) { var _this = this; return new V._MixedEdgeInsets(_this.get$_left(_this) + other.get$_left(other), _this.get$_right(_this) + other.get$_right(other), _this.get$_edge_insets$_start(_this) + other.get$_edge_insets$_start(other), _this.get$_edge_insets$_end() + other.get$_edge_insets$_end(), _this.get$_top(_this) + other.get$_top(other), _this.get$_bottom(_this) + other.get$_bottom(other)); }, clamp$2: function(_, min, max) { var _this = this; return new V._MixedEdgeInsets(J.clamp$2$n(_this.get$_left(_this), min.left, max._left), J.clamp$2$n(_this.get$_right(_this), min.right, max._right), J.clamp$2$n(_this.get$_edge_insets$_start(_this), 0, max._edge_insets$_start), J.clamp$2$n(_this.get$_edge_insets$_end(), 0, max._edge_insets$_end), J.clamp$2$n(_this.get$_top(_this), min.top, max._top), J.clamp$2$n(_this.get$_bottom(_this), min.bottom, max._bottom)); }, toString$0: function(_) { var _this = this; if (_this.get$_edge_insets$_start(_this) === 0 && _this.get$_edge_insets$_end() === 0) { if (_this.get$_left(_this) === 0 && _this.get$_right(_this) === 0 && _this.get$_top(_this) === 0 && _this.get$_bottom(_this) === 0) return "EdgeInsets.zero"; if (_this.get$_left(_this) == _this.get$_right(_this) && _this.get$_right(_this) == _this.get$_top(_this) && _this.get$_top(_this) == _this.get$_bottom(_this)) return "EdgeInsets.all(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ")"; return "EdgeInsets(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_right(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ")"; } if (_this.get$_left(_this) === 0 && _this.get$_right(_this) === 0) return "EdgeInsetsDirectional(" + J.toStringAsFixed$1$n(_this.get$_edge_insets$_start(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_edge_insets$_end(), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ")"; return "EdgeInsets(" + J.toStringAsFixed$1$n(_this.get$_left(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_top(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_right(_this), 1) + ", " + J.toStringAsFixed$1$n(_this.get$_bottom(_this), 1) + ") + EdgeInsetsDirectional(" + J.toStringAsFixed$1$n(_this.get$_edge_insets$_start(_this), 1) + ", 0.0, " + J.toStringAsFixed$1$n(_this.get$_edge_insets$_end(), 1) + ", 0.0)"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; return other instanceof V.EdgeInsetsGeometry && other.get$_left(other) == _this.get$_left(_this) && other.get$_right(other) == _this.get$_right(_this) && other.get$_edge_insets$_start(other) == _this.get$_edge_insets$_start(_this) && other.get$_edge_insets$_end() == _this.get$_edge_insets$_end() && other.get$_top(other) == _this.get$_top(_this) && other.get$_bottom(other) == _this.get$_bottom(_this); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.get$_left(_this), _this.get$_right(_this), _this.get$_edge_insets$_start(_this), _this.get$_edge_insets$_end(), _this.get$_top(_this), _this.get$_bottom(_this), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; V.EdgeInsets.prototype = { get$_left: function(_) { return this.left; }, get$_top: function(_) { return this.top; }, get$_right: function(_) { return this.right; }, get$_bottom: function(_) { return this.bottom; }, get$_edge_insets$_start: function(_) { return 0; }, get$_edge_insets$_end: function() { return 0; }, inflateRect$1: function(rect) { var _this = this; return new P.Rect(rect.left - _this.left, rect.top - _this.top, rect.right + _this.right, rect.bottom + _this.bottom); }, deflateRect$1: function(rect) { var _this = this; return new P.Rect(rect.left + _this.left, rect.top + _this.top, rect.right - _this.right, rect.bottom - _this.bottom); }, add$1: function(_, other) { if (other instanceof V.EdgeInsets) return this.$add(0, other); return this.super$EdgeInsetsGeometry$add(0, other); }, clamp$2: function(_, min, max) { var _this = this; return new V.EdgeInsets(J.clamp$2$n(_this.left, min.left, max._left), J.clamp$2$n(_this.top, min.top, max._top), J.clamp$2$n(_this.right, min.right, max._right), J.clamp$2$n(_this.bottom, min.bottom, max._bottom)); }, $sub: function(_, other) { var _this = this; return new V.EdgeInsets(_this.left - other.left, _this.top - other.top, _this.right - other.right, _this.bottom - other.bottom); }, $add: function(_, other) { var _this = this; return new V.EdgeInsets(_this.left + other.left, _this.top + other.top, _this.right + other.right, _this.bottom + other.bottom); }, $mul: function(_, other) { var _this = this; return new V.EdgeInsets(_this.left * other, _this.top * other, _this.right * other, _this.bottom * other); }, $div: function(_, other) { var _this = this; return new V.EdgeInsets(_this.left / other, _this.top / other, _this.right / other, _this.bottom / other); }, resolve$1: function(direction) { return this; }, copyWith$4$bottom$left$right$top: function(bottom, left, right, $top) { var _this = this, t1 = left == null ? _this.left : left, t2 = $top == null ? _this.top : $top, t3 = right == null ? _this.right : right; return new V.EdgeInsets(t1, t2, t3, bottom == null ? _this.bottom : bottom); }, copyWith$1$bottom: function(bottom) { return this.copyWith$4$bottom$left$right$top(bottom, null, null, null); }, copyWith$2$bottom$top: function(bottom, $top) { return this.copyWith$4$bottom$left$right$top(bottom, null, null, $top); }, copyWith$2$left$right: function(left, right) { return this.copyWith$4$bottom$left$right$top(null, left, right, null); } }; V.EdgeInsetsDirectional.prototype = { get$_edge_insets$_start: function(_) { return this.start; }, get$_top: function(_) { return this.top; }, get$_edge_insets$_end: function() { return this.end; }, get$_bottom: function(_) { return this.bottom; }, get$_left: function(_) { return 0; }, get$_right: function(_) { return 0; }, add$1: function(_, other) { if (other instanceof V.EdgeInsetsDirectional) return this.$add(0, other); return this.super$EdgeInsetsGeometry$add(0, other); }, $sub: function(_, other) { var _this = this; return new V.EdgeInsetsDirectional(_this.start - other.start, _this.top - other.top, _this.end - other.end, _this.bottom - other.bottom); }, $add: function(_, other) { var _this = this; return new V.EdgeInsetsDirectional(_this.start + other.start, _this.top + other.top, _this.end + other.end, _this.bottom + other.bottom); }, $mul: function(_, other) { var _this = this; return new V.EdgeInsetsDirectional(_this.start * other, _this.top * other, _this.end * other, _this.bottom * other); }, $div: function(_, other) { var _this = this; return new V.EdgeInsetsDirectional(_this.start / other, _this.top / other, _this.end / other, _this.bottom / other); }, resolve$1: function(direction) { var _this = this; direction.toString; switch (direction) { case C.TextDirection_0: return new V.EdgeInsets(_this.end, _this.top, _this.start, _this.bottom); case C.TextDirection_1: return new V.EdgeInsets(_this.start, _this.top, _this.end, _this.bottom); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; V._MixedEdgeInsets.prototype = { $mul: function(_, other) { var _this = this; return new V._MixedEdgeInsets(_this._left * other, _this._right * other, _this._edge_insets$_start * other, _this._edge_insets$_end * other, _this._top * other, _this._bottom * other); }, $div: function(_, other) { var _this = this; return new V._MixedEdgeInsets(_this._left / other, _this._right / other, _this._edge_insets$_start / other, _this._edge_insets$_end / other, _this._top / other, _this._bottom / other); }, resolve$1: function(direction) { var _this = this; direction.toString; switch (direction) { case C.TextDirection_0: return new V.EdgeInsets(_this._edge_insets$_end + _this._left, _this._top, _this._edge_insets$_start + _this._right, _this._bottom); case C.TextDirection_1: return new V.EdgeInsets(_this._edge_insets$_start + _this._left, _this._top, _this._edge_insets$_end + _this._right, _this._bottom); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_left: function(receiver) { return this._left; }, get$_right: function(receiver) { return this._right; }, get$_edge_insets$_start: function(receiver) { return this._edge_insets$_start; }, get$_edge_insets$_end: function() { return this._edge_insets$_end; }, get$_top: function(receiver) { return this._top; }, get$_bottom: function(receiver) { return this._bottom; } }; X.FractionalOffset.prototype = { $sub: function(_, other) { if (!(other instanceof X.FractionalOffset)) return this.super$Alignment$$sub(0, other); return X.FractionalOffset$((this.x + 1) / 2 - (other.x + 1) / 2, (this.y + 1) / 2 - (other.y + 1) / 2); }, $add: function(_, other) { if (!(other instanceof X.FractionalOffset)) return this.super$Alignment$$add(0, other); return X.FractionalOffset$((this.x + 1) / 2 + (other.x + 1) / 2, (this.y + 1) / 2 + (other.y + 1) / 2); }, $mul: function(_, other) { return X.FractionalOffset$((this.x + 1) / 2 * other, (this.y + 1) / 2 * other); }, $div: function(_, other) { return X.FractionalOffset$((this.x + 1) / 2 / other, (this.y + 1) / 2 / other); }, toString$0: function(_) { return "FractionalOffset(" + C.JSNumber_methods.toStringAsFixed$1((this.x + 1) / 2, 1) + ", " + C.JSNumber_methods.toStringAsFixed$1((this.y + 1) / 2, 1) + ")"; } }; E.ImageCache.prototype = { clear$0: function(_) { var _this = this, t1 = _this._pendingImages, t2 = _this._image_cache$_cache, t3 = _this._liveImages; P.Timeline_instantSync("ImageCache.clear", P.LinkedHashMap_LinkedHashMap$_literal(["pendingImages", t1.get$length(t1), "keepAliveImages", t2.get$length(t2), "liveImages", t3.get$length(t3), "currentSizeInBytes", _this._currentSizeBytes], type$.String, type$.dynamic)); for (t3 = t2.get$values(t2), t3 = t3.get$iterator(t3); t3.moveNext$0();) t3.get$current(t3).dispose$0(0); t2.clear$0(0); t1.clear$0(0); _this._currentSizeBytes = 0; }, evict$1: function(key) { var t1, t2, pendingImage, _this = this, _s16_ = "ImageCache.evict", image = _this._liveImages.remove$1(0, key); if (image != null) { t1 = image.completer; t2 = image.get$_handleRemove(); if (t1._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); C.JSArray_methods.remove$1(t1._onLastListenerRemovedCallbacks, t2); image.super$_CachedImageBase$dispose(0); } pendingImage = _this._pendingImages.remove$1(0, key); if (pendingImage != null) { P.Timeline_instantSync(_s16_, P.LinkedHashMap_LinkedHashMap$_literal(["type", "pending"], type$.String, type$.dynamic)); pendingImage.completer.removeListener$1(0, pendingImage.listener); return true; } image = _this._image_cache$_cache.remove$1(0, key); if (image != null) { P.Timeline_instantSync(_s16_, P.LinkedHashMap_LinkedHashMap$_literal(["type", "keepAlive", "sizeInBytes", image.sizeBytes], type$.String, type$.dynamic)); t1 = _this._currentSizeBytes; t2 = image.sizeBytes; t2.toString; _this._currentSizeBytes = t1 - t2; image.dispose$0(0); return true; } P.Timeline_instantSync(_s16_, P.LinkedHashMap_LinkedHashMap$_literal(["type", "miss"], type$.String, type$.dynamic)); return false; }, _touch$3: function(key, image, timelineTask) { var t2, _this = this, t1 = image.sizeBytes; if (t1 != null && t1 <= 104857600 && true) { t2 = _this._currentSizeBytes; t1.toString; _this._currentSizeBytes = t2 + t1; _this._image_cache$_cache.$indexSet(0, key, image); _this._checkCacheSize$1(timelineTask); } else image.dispose$0(0); }, _trackLiveImage$3: function(key, completer, sizeBytes) { var t1 = this._liveImages.putIfAbsent$2(0, key, new E.ImageCache__trackLiveImage_closure(this, completer, key)); if (t1.sizeBytes == null) t1.sizeBytes = sizeBytes; }, putIfAbsent$3$onError: function(_, key, loader, onError) { var error, stackTrace, t2, timelineTask, t3, t4, t5, t6, result, image, liveImage, exception, listenerTask, streamListener, _this = this, _null = null, t1 = {}; t1.listenerTask = t1.timelineTask = null; t2 = type$.JSArray__AsyncBlock; timelineTask = new P.TimelineTask(_null, 0, H.setRuntimeTypeInfo([], t2)); t3 = type$.String; t4 = type$.dynamic; timelineTask.start$2$arguments(0, "ImageCache.putIfAbsent", P.LinkedHashMap_LinkedHashMap$_literal(["key", J.toString$0$(key)], t3, t4)); t1.timelineTask = timelineTask; t5 = _this._pendingImages; t6 = t5.$index(0, key); result = t6 == null ? _null : t6.completer; t1.result = result; if (result != null) { timelineTask.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["result", "pending"], t3, t4)); return result; } t6 = _this._image_cache$_cache; image = t6.remove$1(0, key); if (image != null) { timelineTask.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["result", "keepAlive"], t3, t4)); t1 = image.completer; _this._trackLiveImage$3(key, t1, image.sizeBytes); t6.$indexSet(0, key, image); return t1; } liveImage = _this._liveImages.$index(0, key); if (liveImage != null) { t1 = liveImage.completer; t2 = liveImage.sizeBytes; if (t1._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t5 = new L.ImageStreamCompleterHandle(t1); t5.ImageStreamCompleterHandle$_$1(t1); _this._touch$3(key, new E._CachedImage(t1, t2, t5), timelineTask); timelineTask.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["result", "keepAlive"], t3, t4)); return t1; } try { result = t1.result = loader.call$0(); _this._trackLiveImage$3(key, result, _null); t3 = result; } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); timelineTask.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["result", "error", "error", J.toString$0$(error), "stackTrace", J.toString$0$(stackTrace)], t3, t4)); if (onError != null) { onError.call$2(error, stackTrace); return _null; } else throw exception; } listenerTask = new P.TimelineTask(timelineTask, 0, H.setRuntimeTypeInfo([], t2)); listenerTask.start$1(0, "listener"); t1.listenerTask = listenerTask; t1.listenedOnce = false; t1.untrackedPendingImage = null; streamListener = new L.ImageStreamListener(new E.ImageCache_putIfAbsent_listener(t1, _this, key), _null, _null); t5.$indexSet(0, key, new E._PendingImage(t3, streamListener)); t1.result.addListener$1(0, streamListener); return t1.result; }, containsKey$1: function(_, key) { return this._pendingImages.$index(0, key) != null || this._image_cache$_cache.$index(0, key) != null; }, _checkCacheSize$1: function(timelineTask) { var t1, t2, it, key, image, t3, _this = this, _s11_ = "evictedKeys", finishArgs = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), checkCacheTask = new P.TimelineTask(timelineTask, 0, H.setRuntimeTypeInfo([], type$.JSArray__AsyncBlock)); checkCacheTask.start$1(0, "checkCacheSize"); finishArgs.$indexSet(0, _s11_, H.setRuntimeTypeInfo([], type$.JSArray_String)); t1 = _this._image_cache$_cache; finishArgs.$indexSet(0, "currentSize", t1.get$length(t1)); finishArgs.$indexSet(0, "currentSizeBytes", _this._currentSizeBytes); while (true) { if (!(_this._currentSizeBytes > 104857600 || t1.get$length(t1) > 1000)) break; t2 = t1.get$keys(t1); it = t2.get$iterator(t2); if (!it.moveNext$0()) H.throwExpression(H.IterableElementError_noElement()); key = it.get$current(it); image = t1.$index(0, key); t2 = _this._currentSizeBytes; t3 = image.sizeBytes; t3.toString; _this._currentSizeBytes = t2 - t3; image.dispose$0(0); t1.remove$1(0, key); J.add$1$ax(finishArgs.$index(0, _s11_), J.toString$0$(key)); } finishArgs.$indexSet(0, "endSize", t1.get$length(t1)); finishArgs.$indexSet(0, "endSizeBytes", _this._currentSizeBytes); checkCacheTask.finish$1$arguments(0, finishArgs); } }; E.ImageCache__trackLiveImage_closure.prototype = { call$0: function() { return E._LiveImage$(this.completer, new E.ImageCache__trackLiveImage__closure(this.$this, this.key)); }, $signature: 2224 }; E.ImageCache__trackLiveImage__closure.prototype = { call$0: function() { this.$this._liveImages.remove$1(0, this.key); }, $signature: 0 }; E.ImageCache_putIfAbsent_listener.prototype = { call$2: function(info, syncCall) { var t1, sizeBytes, t2, t3, image, pendingImage, t4, t5, t6; if (info != null) { t1 = info.image; sizeBytes = t1.get$height(t1) * t1.get$width(t1) * 4; t1.dispose$0(0); } else sizeBytes = null; t1 = this._box_0; t2 = t1.result; if (t2._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t3 = new L.ImageStreamCompleterHandle(t2); t3.ImageStreamCompleterHandle$_$1(t2); image = new E._CachedImage(t2, sizeBytes, t3); t3 = this.$this; t2 = this.key; t3._trackLiveImage$3(t2, t1.result, sizeBytes); if (t1.untrackedPendingImage == null) t3._touch$3(t2, image, t1.listenerTask); else image.dispose$0(0); pendingImage = t1.untrackedPendingImage; if (pendingImage == null) pendingImage = t3._pendingImages.remove$1(0, t2); if (pendingImage != null) pendingImage.completer.removeListener$1(0, pendingImage.listener); t2 = t1.listenedOnce; if (!t2) { t2 = t1.listenerTask; t2.toString; t4 = type$.String; t5 = type$.dynamic; t2.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["syncCall", syncCall, "sizeInBytes", sizeBytes], t4, t5)); t2 = t1.timelineTask; t2.toString; t6 = t3._image_cache$_cache; t2.finish$1$arguments(0, P.LinkedHashMap_LinkedHashMap$_literal(["currentSizeBytes", t3._currentSizeBytes, "currentSize", t6.get$length(t6)], t4, t5)); } t1.listenedOnce = true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 2225 }; E._CachedImageBase.prototype = { dispose$0: function(_) { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new E._CachedImageBase_dispose_closure(this)); } }; E._CachedImageBase_dispose_closure.prototype = { call$1: function(timeStamp) { var t1 = this.$this, t2 = t1.handle; if (t2 != null) t2.dispose$0(0); t1.handle = null; }, $signature: 28 }; E._CachedImage.prototype = {}; E._LiveImage.prototype = { _LiveImage$3$sizeBytes: function(completer, handleRemove, sizeBytes) { var t1; this.___LiveImage__handleRemove = new E._LiveImage_closure(this, handleRemove); t1 = this.get$_handleRemove(); if (completer._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); completer._onLastListenerRemovedCallbacks.push(t1); }, get$_handleRemove: function() { var t1 = this.___LiveImage__handleRemove; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_handleRemove")) : t1; }, dispose$0: function(_) { var t1 = this.completer, t2 = this.get$_handleRemove(); if (t1._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); C.JSArray_methods.remove$1(t1._onLastListenerRemovedCallbacks, t2); this.super$_CachedImageBase$dispose(0); }, toString$0: function(_) { return "#" + Y.shortHash(this); } }; E._LiveImage_closure.prototype = { call$0: function() { var t1, t2, t3; this.handleRemove.call$0(); t1 = this.$this; t2 = t1.completer; t3 = t1.get$_handleRemove(); if (t2._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); C.JSArray_methods.remove$1(t2._onLastListenerRemovedCallbacks, t3); t1.super$_CachedImageBase$dispose(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; E._PendingImage.prototype = {}; M.ImageConfiguration.prototype = { copyWith$1$size: function(size) { var _this = this, t1 = size == null ? _this.size : size; return new M.ImageConfiguration(_this.bundle, _this.devicePixelRatio, _this.locale, _this.textDirection, t1, _this.platform); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof M.ImageConfiguration && other.bundle == _this.bundle && other.devicePixelRatio == _this.devicePixelRatio && J.$eq$(other.locale, _this.locale) && other.textDirection == _this.textDirection && J.$eq$(other.size, _this.size) && other.platform == _this.platform; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.bundle, _this.devicePixelRatio, _this.locale, _this.size, _this.platform, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var hasArguments, t2, _this = this, _s19_ = "ImageConfiguration(", t1 = _this.bundle; if (t1 != null) { t1 = _s19_ + ("bundle: " + t1.toString$0(0)); hasArguments = true; } else { t1 = _s19_; hasArguments = false; } t2 = _this.devicePixelRatio; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("devicePixelRatio: " + C.JSNumber_methods.toStringAsFixed$1(t2, 1)); t1 = t2; hasArguments = true; } t2 = _this.locale; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("locale: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.textDirection; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("textDirection: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.size; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("size: " + t2.toString$0(0)); t1 = t2; hasArguments = true; } t2 = _this.platform; if (t2 != null) { if (hasArguments) t1 += ", "; t2 = t1 + ("platform: " + Y.describeEnum(t2)); t1 = t2; } t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; M.ImageProvider.prototype = { resolve$1: function(configuration) { var stream = new L.ImageStream(); this._createErrorHandlerAndKey$3(configuration, new M.ImageProvider_resolve_closure(this, configuration, stream), new M.ImageProvider_resolve_closure0(this, stream, configuration)); return stream; }, _createErrorHandlerAndKey$3: function(configuration, successCallback, errorCallback) { var t2, _null = null, t1 = {}; t1.obtainedKey = null; t1.didError = false; t2 = new M.ImageProvider__createErrorHandlerAndKey_handleError(t1, errorCallback); $.Zone__current.fork$1$specification(new P._ZoneSpecification(new M.ImageProvider__createErrorHandlerAndKey_closure(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)).runGuarded$1(new M.ImageProvider__createErrorHandlerAndKey_closure0(t1, this, configuration, t2, successCallback)); }, resolveStreamForKey$4: function(configuration, stream, key, handleError) { var completer; if (stream._image_stream$_completer != null) { $.PaintingBinding__instance.PaintingBinding__imageCache.putIfAbsent$3$onError(0, key, new M.ImageProvider_resolveStreamForKey_closure(stream), handleError); return; } completer = $.PaintingBinding__instance.PaintingBinding__imageCache.putIfAbsent$3$onError(0, key, new M.ImageProvider_resolveStreamForKey_closure0(this, key), handleError); if (completer != null) stream.setCompleter$1(completer); }, toString$0: function(_) { return "ImageConfiguration()"; } }; M.ImageProvider_resolve_closure.prototype = { call$2: function(key, errorHandler) { this.$this.resolveStreamForKey$4(this.configuration, this.stream, key, errorHandler); }, $signature: function() { return H._instanceType(this.$this)._eval$1("~(ImageProvider.T,~(Object,StackTrace?))"); } }; M.ImageProvider_resolve_closure0.prototype = { call$3: function(key, exception, stack) { return this.$call$body$ImageProvider_resolve_closure(key, exception, stack); }, $call$body$ImageProvider_resolve_closure: function(key, exception, stack) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, imageCompleter; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(null, $async$call$3); case 2: // returning from await. imageCompleter = new M._ErrorImageCompleter(H.setRuntimeTypeInfo([], type$.JSArray_ImageStreamListener), H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function)); $async$self.stream.setCompleter$1(imageCompleter); imageCompleter.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("while resolving an image"), exception, null, true, stack); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: function() { return H._instanceType(this.$this)._eval$1("Future<~>(ImageProvider.T?,Object,StackTrace?)"); } }; M.ImageProvider__createErrorHandlerAndKey_handleError.prototype = { $call$body$ImageProvider__createErrorHandlerAndKey_handleError: function(exception, stack) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._box_0; if (t1.didError) { // goto return $async$goto = 1; break; } $async$self.errorCallback.call$3(t1.obtainedKey, exception, stack); t1.didError = true; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, call$2: function(exception, stack) { return this.$call$body$ImageProvider__createErrorHandlerAndKey_handleError(exception, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2230 }; M.ImageProvider__createErrorHandlerAndKey_closure.prototype = { call$5: function(zone, delegate, $parent, error, stackTrace) { this.handleError.call$2(error, stackTrace); }, $signature: 2231 }; M.ImageProvider__createErrorHandlerAndKey_closure0.prototype = { call$0: function() { var error, stackTrace, exception, t1, _this = this, key = null; try { key = _this.$this.obtainKey$1(_this.configuration); } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); _this.handleError.call$2(error, stackTrace); return; } t1 = _this.handleError; J.then$1$1$x(key, new M.ImageProvider__createErrorHandlerAndKey__closure(_this._box_0, _this.$this, _this.successCallback, t1), type$.void).catchError$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M.ImageProvider__createErrorHandlerAndKey__closure.prototype = { call$1: function(key) { var error, stackTrace, exception, _this = this; _this._box_0.obtainedKey = key; try { _this.successCallback.call$2(key, _this.handleError); } catch (exception) { error = H.unwrapException(exception); stackTrace = H.getTraceFromException(exception); _this.handleError.call$2(error, stackTrace); } }, $signature: function() { return H._instanceType(this.$this)._eval$1("Null(ImageProvider.T)"); } }; M.ImageProvider_resolveStreamForKey_closure.prototype = { call$0: function() { var t1 = this.stream._image_stream$_completer; t1.toString; return t1; }, $signature: 539 }; M.ImageProvider_resolveStreamForKey_closure0.prototype = { call$0: function() { return this.$this.load$2(0, this.key, $.PaintingBinding__instance.get$instantiateImageCodec()); }, $signature: 539 }; M.AssetBundleImageKey.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof M.AssetBundleImageKey && other.bundle == _this.bundle && other.name == _this.name && other.scale === _this.scale; }, get$hashCode: function(_) { return P.hashValues(this.bundle, this.name, this.scale, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "AssetBundleImageKey(bundle: " + H.S(this.bundle) + ', name: "' + H.S(this.name) + '", scale: ' + H.S(this.scale) + ")"; }, get$name: function(receiver) { return this.name; } }; M.AssetBundleImageProvider.prototype = { load$2: function(_, key, decode) { var t1 = this._loadAsync$2(key, decode), t2 = key.scale; return L.MultiFrameImageStreamCompleter$(null, t1, key.name, null, t2); }, _loadAsync$2: function(key, decode) { return this._loadAsync$body$AssetBundleImageProvider(key, decode); }, _loadAsync$body$AssetBundleImageProvider: function(key, decode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], exception, data, $async$exception; var $async$_loadAsync$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start data = null; $async$handler = 4; $async$goto = 7; return P._asyncAwait(key.bundle.load$1(0, key.name), $async$_loadAsync$2); case 7: // returning from await. data = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; if (H.unwrapException($async$exception) instanceof U.FlutterError) { $.PaintingBinding__instance.PaintingBinding__imageCache.evict$1(key); throw $async$exception; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally if (data == null) { $.PaintingBinding__instance.PaintingBinding__imageCache.evict$1(key); throw H.wrapException(P.StateError$("Unable to read data")); } $async$returnValue = decode.call$1(J.asUint8List$0$x(J.get$buffer$x(data))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_loadAsync$2, $async$completer); } }; M._ErrorImageCompleter.prototype = {}; L.AssetImage.prototype = { get$keyName: function() { return this.assetName; }, obtainKey$1: function(configuration) { var t2, t1 = {}, chosenBundle = configuration.bundle; if (chosenBundle == null) chosenBundle = $.$get$rootBundle(); t1.result = t1.completer = null; chosenBundle.loadStructuredData$1$2("AssetManifest.json", L.image_resolution_AssetImage__manifestParser$closure(), type$.nullable_Map_of_String_and_List_String).then$1$1(0, new L.AssetImage_obtainKey_closure(t1, this, configuration, chosenBundle), type$.void).catchError$1(new L.AssetImage_obtainKey_closure0(t1)); t2 = t1.result; if (t2 != null) return t2; t2 = new P._Future($.Zone__current, type$._Future_AssetBundleImageKey); t1.completer = new P._AsyncCompleter(t2, type$._AsyncCompleter_AssetBundleImageKey); return t2; }, _chooseVariant$3: function(main, config, candidates) { var mapping, t2, t3, t1 = config.devicePixelRatio; if (t1 == null || candidates == null || J.get$isEmpty$asx(candidates)) return main; mapping = P.SplayTreeMap$(type$.double, type$.String); for (t2 = J.get$iterator$ax(candidates); t2.moveNext$0();) { t3 = t2.get$current(t2); mapping.$indexSet(0, this._parseScale$1(t3), t3); } t1.toString; return this._findBestVariant$2(mapping, t1); }, _findBestVariant$2: function(candidates, value) { var t1, lower, upper; if (candidates._containsKey$1(value)) { t1 = candidates.$index(0, value); t1.toString; return t1; } lower = candidates.lastKeyBefore$1(value); upper = candidates.firstKeyAfter$1(value); if (lower == null) return candidates.$index(0, upper); if (upper == null) return candidates.$index(0, lower); if (value < 2 || value > (lower + upper) / 2) return candidates.$index(0, upper); else return candidates.$index(0, lower); }, _parseScale$1: function(key) { var assetUri, directoryPath, match, t1; if (key === this.assetName) return 1; assetUri = P.Uri_parse(key, 0, null); directoryPath = J.get$length$asx(assetUri.get$pathSegments()) > 1 ? J.$index$asx(assetUri.get$pathSegments(), J.get$length$asx(assetUri.get$pathSegments()) - 2) : ""; match = $.$get$AssetImage__extractRatioRegExp().firstMatch$1(directoryPath); if (match != null && match._match.length - 1 > 0) { t1 = match._match[1]; t1.toString; return P.double_parse(t1); } return 1; }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof L.AssetImage && other.get$keyName() === this.get$keyName() && true; }, get$hashCode: function(_) { return P.hashValues(this.get$keyName(), this.bundle, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "AssetImage(bundle: " + H.S(this.bundle) + ', name: "' + this.get$keyName() + '")'; } }; L.AssetImage_obtainKey_closure.prototype = { call$1: function(manifest) { var key, _this = this, t1 = _this.$this, t2 = t1.get$keyName(), t3 = manifest == null ? null : J.$index$asx(manifest, t1.get$keyName()); t3 = t1._chooseVariant$3(t2, _this.configuration, t3); t3.toString; key = new M.AssetBundleImageKey(_this.chosenBundle, t3, t1._parseScale$1(t3)); t1 = _this._box_0; t2 = t1.completer; if (t2 != null) t2.complete$1(0, key); else t1.result = new O.SynchronousFuture(key, type$.SynchronousFuture_AssetBundleImageKey); }, $signature: 2245 }; L.AssetImage_obtainKey_closure0.prototype = { call$2: function(error, stack) { this._box_0.completer.completeError$2(error, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; L.ImageInfo.prototype = { clone$0: function(_) { return new L.ImageInfo(this.image.clone$0(0), this.scale, this.debugLabel); }, dispose$0: function(_) { this.image.dispose$0(0); }, toString$0: function(_) { var t1 = this.debugLabel; t1 = t1 != null ? t1 + " " : ""; return t1 + this.image.toString$0(0) + " @ " + E.debugFormatDouble(this.scale) + "x"; }, get$hashCode: function(_) { return P.hashValues(this.image, this.scale, this.debugLabel, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof L.ImageInfo && other.image === _this.image && other.scale === _this.scale && other.debugLabel == _this.debugLabel; } }; L.ImageStreamListener.prototype = { get$hashCode: function(_) { return P.hashValues(this.onImage, this.onChunk, this.onError, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof L.ImageStreamListener && J.$eq$(other.onImage, _this.onImage) && J.$eq$(other.onChunk, _this.onChunk) && J.$eq$(other.onError, _this.onError); }, onImage$2: function(arg0, arg1) { return this.onImage.call$2(arg0, arg1); } }; L.ImageChunkEvent.prototype = {}; L.ImageStream.prototype = { setCompleter$1: function(value) { var t1; this._image_stream$_completer = value; t1 = this._image_stream$_listeners; if (t1 != null) { this._image_stream$_listeners = null; C.JSArray_methods.forEach$1(t1, value.get$addListener(value)); } }, addListener$1: function(_, listener) { var t1 = this._image_stream$_completer; if (t1 != null) return t1.addListener$1(0, listener); t1 = this._image_stream$_listeners; (t1 == null ? this._image_stream$_listeners = H.setRuntimeTypeInfo([], type$.JSArray_ImageStreamListener) : t1).push(listener); }, removeListener$1: function(_, listener) { var i, t1 = this._image_stream$_completer; if (t1 != null) return t1.removeListener$1(0, listener); for (i = 0; t1 = this._image_stream$_listeners, i < t1.length; ++i) if (J.$eq$(t1[i], listener)) { t1 = this._image_stream$_listeners; t1.toString; C.JSArray_methods.removeAt$1(t1, i); break; } } }; L.ImageStreamCompleterHandle.prototype = { ImageStreamCompleterHandle$_$1: function(_completer) { ++this._image_stream$_completer._keepAliveHandles; }, dispose$0: function(_) { var t1 = this._image_stream$_completer; --t1._keepAliveHandles; t1._maybeDispose$0(); this._image_stream$_completer = null; } }; L.ImageStreamCompleter.prototype = { addListener$1: function(_, listener) { var exception, stack, newException, newStack, t1, exception0, t2, _this = this; if (_this._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); _this._hadAtLeastOneListener = true; _this._image_stream$_listeners.push(listener); t1 = _this._currentImage; if (t1 != null) try { t1 = t1.clone$0(0); listener.onImage.call$2(t1, true); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); _this.reportError$3$context$exception$stack(U.ErrorDescription$("by a synchronously-called image listener"), exception, stack); } t1 = _this._currentError; if (t1 != null && listener.onError != null) try { t2 = listener.onError; t2.toString; t2.call$2(t1.exception, t1.stack); } catch (exception) { newException = H.unwrapException(exception); newStack = H.getTraceFromException(exception); if (!J.$eq$(newException, _this._currentError.exception)) U.FlutterError_reportError(new U.FlutterErrorDetails(newException, newStack, "image resource service", U.ErrorDescription$("by a synchronously-called image error listener"), null, false)); } }, removeListener$1: function(_, listener) { var t1, i, callbacks, t2, _i, _this = this; if (_this._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); for (t1 = _this._image_stream$_listeners, i = 0; i < t1.length; ++i) if (J.$eq$(t1[i], listener)) { C.JSArray_methods.removeAt$1(t1, i); break; } if (t1.length === 0) { t1 = _this._onLastListenerRemovedCallbacks; callbacks = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); for (t2 = callbacks.length, _i = 0; _i < callbacks.length; callbacks.length === t2 || (0, H.throwConcurrentModificationError)(callbacks), ++_i) callbacks[_i].call$0(); C.JSArray_methods.set$length(t1, 0); _this._maybeDispose$0(); } }, _maybeDispose$0: function() { var t1, _this = this; if (!_this._hadAtLeastOneListener || _this._image_stream$_disposed || _this._image_stream$_listeners.length !== 0 || _this._keepAliveHandles !== 0) return; t1 = _this._currentImage; if (t1 != null) t1.image.dispose$0(0); _this._currentImage = null; _this._image_stream$_disposed = true; }, setImage$1: function(image) { var listener, exception, stack, t1, localListeners, t2, t3, t4, _i, exception0, _this = this; if (_this._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t1 = _this._currentImage; if (t1 != null) t1.image.dispose$0(0); _this._currentImage = image; t1 = _this._image_stream$_listeners; if (t1.length === 0) return; localListeners = P.List_List$from(t1, true, type$.ImageStreamListener); for (t1 = localListeners.length, t2 = image.image, t3 = image.scale, t4 = image.debugLabel, _i = 0; _i < t1; ++_i) { listener = localListeners[_i]; try { listener.onImage$2(new L.ImageInfo(t2.clone$0(0), t3, t4), false); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); _this.reportError$3$context$exception$stack(U.ErrorDescription$("by an image listener"), exception, stack); } } }, reportError$5$context$exception$informationCollector$silent$stack: function(context, exception, informationCollector, silent, stack) { var handled, errorListener, newException, newStack, t1, t2, localErrorListeners, _i, exception0, t3, _s22_ = "image resource service"; this._currentError = new U.FlutterErrorDetails(exception, stack, _s22_, context, informationCollector, silent); t1 = this._image_stream$_listeners; t2 = type$.WhereTypeIterable_of_void_Function_2_Object_and_nullable_StackTrace; localErrorListeners = P.List_List$of(new H.WhereTypeIterable(new H.MappedListIterable(t1, new L.ImageStreamCompleter_reportError_closure(), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,~(Object,StackTrace?)?>")), t2), true, t2._eval$1("Iterable.E")); handled = false; for (t1 = localErrorListeners.length, _i = 0; _i < t1; ++_i) { errorListener = localErrorListeners[_i]; try { errorListener.call$2(exception, stack); handled = true; } catch (exception0) { newException = H.unwrapException(exception0); newStack = H.getTraceFromException(exception0); if (!J.$eq$(newException, exception)) { t2 = U.ErrorDescription$("when reporting an error to an image listener"); t3 = $.FlutterError_onError; if (t3 != null) t3.call$1(new U.FlutterErrorDetails(newException, newStack, _s22_, t2, null, false)); } } } if (!handled) { t1 = this._currentError; t1.toString; U.FlutterError_reportError(t1); } }, reportError$3$context$exception$stack: function(context, exception, stack) { return this.reportError$5$context$exception$informationCollector$silent$stack(context, exception, null, false, stack); }, reportImageChunkEvent$1: function($event) { var t1, t2, localListeners, _i; if (this._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t1 = this._image_stream$_listeners; if (t1.length !== 0) { t2 = type$.WhereTypeIterable_of_void_Function_ImageChunkEvent; localListeners = P.List_List$of(new H.WhereTypeIterable(new H.MappedListIterable(t1, new L.ImageStreamCompleter_reportImageChunkEvent_closure(), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,~(ImageChunkEvent)?>")), t2), true, t2._eval$1("Iterable.E")); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) localListeners[_i].call$1($event); } } }; L.ImageStreamCompleter_reportError_closure.prototype = { call$1: function(listener) { return listener.onError; }, $signature: 2247 }; L.ImageStreamCompleter_reportImageChunkEvent_closure.prototype = { call$1: function(listener) { return listener.onChunk; }, $signature: 2248 }; L.MultiFrameImageStreamCompleter.prototype = { MultiFrameImageStreamCompleter$5$chunkEvents$codec$debugLabel$informationCollector$scale: function(chunkEvents, codec, debugLabel, informationCollector, scale) { var _this = this; _this.debugLabel = debugLabel; codec.then$1$2$onError(0, _this.get$_handleCodecReady(), new L.MultiFrameImageStreamCompleter_closure(_this, informationCollector), type$.void); if (chunkEvents != null) chunkEvents.listen$2$onError(0, _this.get$reportImageChunkEvent(), new L.MultiFrameImageStreamCompleter_closure0(_this, informationCollector)); }, get$_shownTimestamp: function() { var t1 = this.__MultiFrameImageStreamCompleter__shownTimestamp; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_shownTimestamp")) : t1; }, _handleCodecReady$1: function(codec) { this._codec = codec; if (this._image_stream$_listeners.length !== 0) this._decodeNextFrameAndSchedule$0(); }, _handleAppFrame$1: function(timestamp) { var t1, t2, t3, completedCycles, _this = this; _this._frameCallbackScheduled = false; if (_this._image_stream$_listeners.length === 0) return; t1 = _this._frameDuration; if (t1 != null) { t1 = _this.get$_shownTimestamp(); t2 = timestamp._duration; t1 = t1._duration; t3 = _this._frameDuration; t1 = t2 - t1 >= t3._duration; t2 = t3; } else { t2 = t1; t1 = true; } if (t1) { t1 = _this._nextFrame; _this._emitFrame$1(new L.ImageInfo(t1.get$image(t1).clone$0(0), _this._scale, _this.debugLabel)); _this.__MultiFrameImageStreamCompleter__shownTimestamp = timestamp; t1 = _this._nextFrame; _this._frameDuration = t1.get$duration(t1); t1 = _this._nextFrame; t1.get$image(t1).dispose$0(0); _this._nextFrame = null; completedCycles = C.JSInt_methods.$tdiv(_this._framesEmitted, _this._codec.get$frameCount()); if (_this._codec.get$repetitionCount() === -1 || completedCycles <= _this._codec.get$repetitionCount()) _this._decodeNextFrameAndSchedule$0(); return; } t2.toString; t1 = _this.get$_shownTimestamp(); _this._image_stream$_timer = P.Timer_Timer(new P.Duration(C.JSNumber_methods.round$0((t2._duration - (timestamp._duration - t1._duration)) * $._timeDilation)), new L.MultiFrameImageStreamCompleter__handleAppFrame_closure(_this)); }, _decodeNextFrameAndSchedule$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, $async$exception0; var $async$_decodeNextFrameAndSchedule$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._nextFrame; if (t1 != null) t1.get$image(t1).dispose$0(0); $async$self._nextFrame = null; $async$handler = 4; $async$goto = 7; return P._asyncAwait($async$self._codec.getNextFrame$0(), $async$_decodeNextFrameAndSchedule$0); case 7: // returning from await. $async$self._nextFrame = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); $async$self.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("resolving an image frame"), exception, $async$self._informationCollector, true, stack); // goto return $async$goto = 1; break; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally if ($async$self._codec.get$frameCount() === 1) { if ($async$self._image_stream$_listeners.length === 0) { // goto return $async$goto = 1; break; } t1 = $async$self._nextFrame; $async$self._emitFrame$1(new L.ImageInfo(t1.get$image(t1).clone$0(0), $async$self._scale, $async$self.debugLabel)); t1 = $async$self._nextFrame; t1.get$image(t1).dispose$0(0); $async$self._nextFrame = null; // goto return $async$goto = 1; break; } $async$self._scheduleAppFrame$0(); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_decodeNextFrameAndSchedule$0, $async$completer); }, _scheduleAppFrame$0: function() { if (this._frameCallbackScheduled) return; this._frameCallbackScheduled = true; $.SchedulerBinding__instance.scheduleFrameCallback$1(this.get$_handleAppFrame()); }, _emitFrame$1: function(imageInfo) { this.setImage$1(imageInfo); ++this._framesEmitted; }, addListener$1: function(_, listener) { var _this = this; if (_this._image_stream$_listeners.length === 0 && _this._codec != null) _this._decodeNextFrameAndSchedule$0(); _this.super$ImageStreamCompleter$addListener(0, listener); }, removeListener$1: function(_, listener) { var t1, _this = this; _this.super$ImageStreamCompleter$removeListener(0, listener); if (_this._image_stream$_listeners.length === 0) { t1 = _this._image_stream$_timer; if (t1 != null) t1.cancel$0(0); _this._image_stream$_timer = null; } } }; L.MultiFrameImageStreamCompleter_closure.prototype = { call$2: function(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("resolving an image codec"), error, this.informationCollector, true, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; L.MultiFrameImageStreamCompleter_closure0.prototype = { call$2: function(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(U.ErrorDescription$("loading an image"), error, this.informationCollector, true, stack); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; L.MultiFrameImageStreamCompleter__handleAppFrame_closure.prototype = { call$0: function() { this.$this._scheduleAppFrame$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; L._ImageChunkEvent_Object_Diagnosticable.prototype = {}; L._ImageStream_Object_Diagnosticable.prototype = {}; L._ImageStreamCompleter_Object_Diagnosticable.prototype = {}; G.Accumulator.prototype = { get$value: function(_) { return this._inline_span$_value; } }; G.InlineSpanSemanticsInformation.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof G.InlineSpanSemanticsInformation && other.text == this.text && other.semanticsLabel == this.semanticsLabel && other.recognizer == this.recognizer && true; }, get$hashCode: function(_) { return P.hashValues(this.text, this.semanticsLabel, this.recognizer, false, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "InlineSpanSemanticsInformation{text: " + H.S(this.text) + ", semanticsLabel: " + H.S(this.semanticsLabel) + ", recognizer: " + H.S(this.recognizer) + "}"; }, text$0: function($receiver) { return this.text.call$0(); } }; G.InlineSpan.prototype = { getSpanForPosition$1: function(position) { var t1 = {}; t1.result = null; this.visitChildren$1(new G.InlineSpan_getSpanForPosition_closure(t1, position, new G.Accumulator())); return t1.result; }, toPlainText$2$includePlaceholders$includeSemanticsLabels: function(includePlaceholders, includeSemanticsLabels) { var t1, buffer = new P.StringBuffer(""); this.computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, includePlaceholders, includeSemanticsLabels); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, toPlainText$1$includePlaceholders: function(includePlaceholders) { return this.toPlainText$2$includePlaceholders$includeSemanticsLabels(includePlaceholders, true); }, toPlainText$1$includeSemanticsLabels: function(includeSemanticsLabels) { return this.toPlainText$2$includePlaceholders$includeSemanticsLabels(true, includeSemanticsLabels); }, toPlainText$0: function() { return this.toPlainText$2$includePlaceholders$includeSemanticsLabels(true, true); }, codeUnitAt$1: function(_, index) { var t1 = {}; if (index < 0) return null; t1.result = null; this.visitChildren$1(new G.InlineSpan_codeUnitAt_closure(t1, index, new G.Accumulator())); return t1.result; }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof G.InlineSpan && J.$eq$(other.style, this.style); }, get$hashCode: function(_) { return J.get$hashCode$(this.style); } }; G.InlineSpan_getSpanForPosition_closure.prototype = { call$1: function(span) { var result = span.getSpanForPositionVisitor$2(this.position, this.offset); this._box_0.result = result; return result == null; }, $signature: 251 }; G.InlineSpan_codeUnitAt_closure.prototype = { call$1: function(span) { var result = span.codeUnitAtVisitor$2(this.index, this.offset); this._box_0.result = result; return result == null; }, $signature: 251 }; V.NotchedShape.prototype = {}; V.CircularNotchedRectangle.prototype = { getOuterPath$2: function(host, guest) { var t1, t2, notchRadius, a, b, t3, t4, t5, n2, p2xA, p2xB, p2yA, p2yB, p, cmp, i, t6; if (guest == null || !host.overlaps$1(guest)) { t1 = P.Path_Path(); t1.addRect$1(0, host); return t1; } t1 = guest.right; t2 = guest.left; notchRadius = (t1 - t2) / 2; a = -1 * notchRadius - 1; t1 = host.top; b = t1 - guest.get$center()._dy; t3 = b * b; t4 = a * a + t3; t5 = notchRadius * notchRadius; n2 = Math.sqrt(t3 * notchRadius * notchRadius * (t4 - t5)); t3 = a * notchRadius * notchRadius; p2xA = (t3 - n2) / t4; p2xB = (t3 + n2) / t4; p2yA = Math.sqrt(t5 - p2xA * p2xA); p2yB = Math.sqrt(t5 - p2xB * p2xB); p = P.List_List$filled(6, null, false, type$.nullable_Offset); t5 = a - 15; p[0] = new P.Offset(t5, b); p[1] = new P.Offset(a, b); cmp = b < 0 ? -1 : 1; t3 = cmp * p2yA > cmp * p2yB ? new P.Offset(p2xA, p2yA) : new P.Offset(p2xB, p2yB); p[2] = t3; p[3] = new P.Offset(-1 * t3._dx, t3._dy); p[4] = new P.Offset(-1 * a, b); p[5] = new P.Offset(-1 * t5, b); for (t3 = guest.top, t4 = guest.bottom, t2 += notchRadius, i = 0; i < 6; ++i) { t5 = p[i]; t5.toString; p[i] = new P.Offset(t5._dx + t2, t5._dy + (t3 + (t4 - t3) / 2)); } t2 = P.Path_Path(); t3 = host.left; t2.moveTo$2(0, t3, t1); t4 = p[0]; t2.lineTo$2(0, t4._dx, t4._dy); t4 = p[1]; t5 = t4._dx; t4 = t4._dy; t6 = p[2]; t2.quadraticBezierTo$4(t5, t4, t6._dx, t6._dy); t6 = p[3]; t6.toString; t2.arcToPoint$3$clockwise$radius(t6, false, new P.Radius(notchRadius, notchRadius)); t6 = p[4]; t4 = t6._dx; t6 = t6._dy; t5 = p[5]; t2.quadraticBezierTo$4(t4, t6, t5._dx, t5._dy); t5 = host.right; t2.lineTo$2(0, t5, t1); t1 = host.bottom; t2.lineTo$2(0, t5, t1); t2.lineTo$2(0, t3, t1); t2.close$0(0); return t2; } }; X.RoundedRectangleBorder.prototype = { get$dimensions: function() { var t1 = this.side.width; return new V.EdgeInsets(t1, t1, t1, t1); }, scale$1: function(_, t) { var t1 = this.side.scale$1(0, t); return new X.RoundedRectangleBorder(this.borderRadius.$mul(0, t), t1); }, lerpFrom$2: function(a, t) { var t1, t2, _this = this; if (a instanceof X.RoundedRectangleBorder) { t1 = Y.BorderSide_lerp(a.side, _this.side, t); t2 = K.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; return new X.RoundedRectangleBorder(t2, t1); } if (a instanceof X.CircleBorder) return new X._RoundedRectangleToCircleBorder(_this.borderRadius, 1 - t, Y.BorderSide_lerp(a.side, _this.side, t)); return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { var t1, t2, _this = this; if (b instanceof X.RoundedRectangleBorder) { t1 = Y.BorderSide_lerp(_this.side, b.side, t); t2 = K.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; return new X.RoundedRectangleBorder(t2, t1); } if (b instanceof X.CircleBorder) return new X._RoundedRectangleToCircleBorder(_this.borderRadius, t, Y.BorderSide_lerp(_this.side, b.side, t)); return _this.super$ShapeBorder$lerpTo(b, t); }, copyWith$1$side: function(side) { var t1 = side == null ? this.side : side; return new X.RoundedRectangleBorder(this.borderRadius, t1); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRRect$1(0, this.borderRadius.resolve$1(textDirection).toRRect$1(rect).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(); t1.addRRect$1(0, this.borderRadius.resolve$1(textDirection).toRRect$1(rect)); return t1; }, getOuterPath$1: function(rect) { return this.getOuterPath$2$textDirection(rect, null); }, paint$3$textDirection: function(canvas, rect, textDirection) { var width, t2, outer, inner, paint, t1 = this.side; switch (t1.style) { case C.BorderStyle_0: break; case C.BorderStyle_1: width = t1.width; t2 = this.borderRadius; if (width === 0) canvas.drawRRect$2(0, t2.resolve$1(textDirection).toRRect$1(rect), t1.toPaint$0()); else { outer = t2.resolve$1(textDirection).toRRect$1(rect); inner = outer.inflate$1(-width); t2 = H._detectRenderer(); paint = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, paint$2: function(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof X.RoundedRectangleBorder && J.$eq$(other.side, this.side) && J.$eq$(other.borderRadius, this.borderRadius); }, get$hashCode: function(_) { return P.hashValues(this.side, this.borderRadius, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "RoundedRectangleBorder(" + H.S(this.side) + ", " + H.S(this.borderRadius) + ")"; } }; X._RoundedRectangleToCircleBorder.prototype = { get$dimensions: function() { var t1 = this.side.width; return new V.EdgeInsets(t1, t1, t1, t1); }, scale$1: function(_, t) { var t1 = this.side.scale$1(0, t); return new X._RoundedRectangleToCircleBorder(this.borderRadius.$mul(0, t), t, t1); }, lerpFrom$2: function(a, t) { var t1, t2, t3, _this = this; if (a instanceof X.RoundedRectangleBorder) { t1 = Y.BorderSide_lerp(a.side, _this.side, t); t2 = K.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; return new X._RoundedRectangleToCircleBorder(t2, _this.circleness * t, t1); } if (a instanceof X.CircleBorder) { t1 = _this.circleness; return new X._RoundedRectangleToCircleBorder(_this.borderRadius, t1 + (1 - t1) * (1 - t), Y.BorderSide_lerp(a.side, _this.side, t)); } if (a instanceof X._RoundedRectangleToCircleBorder) { t1 = Y.BorderSide_lerp(a.side, _this.side, t); t2 = K.BorderRadiusGeometry_lerp(a.borderRadius, _this.borderRadius, t); t2.toString; t3 = P.lerpDouble(a.circleness, _this.circleness, t); t3.toString; return new X._RoundedRectangleToCircleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpFrom(a, t); }, lerpTo$2: function(b, t) { var t1, t2, t3, _this = this; if (b instanceof X.RoundedRectangleBorder) { t1 = Y.BorderSide_lerp(_this.side, b.side, t); t2 = K.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; return new X._RoundedRectangleToCircleBorder(t2, _this.circleness * (1 - t), t1); } if (b instanceof X.CircleBorder) { t1 = _this.circleness; return new X._RoundedRectangleToCircleBorder(_this.borderRadius, t1 + (1 - t1) * t, Y.BorderSide_lerp(_this.side, b.side, t)); } if (b instanceof X._RoundedRectangleToCircleBorder) { t1 = Y.BorderSide_lerp(_this.side, b.side, t); t2 = K.BorderRadiusGeometry_lerp(_this.borderRadius, b.borderRadius, t); t2.toString; t3 = P.lerpDouble(_this.circleness, b.circleness, t); t3.toString; return new X._RoundedRectangleToCircleBorder(t2, t3, t1); } return _this.super$ShapeBorder$lerpTo(b, t); }, _adjustRect$1: function(rect) { var t2, t3, t4, t5, t6, t7, delta, t1 = this.circleness; if (t1 === 0 || rect.right - rect.left === rect.bottom - rect.top) return rect; t2 = rect.right; t3 = rect.left; t4 = t2 - t3; t5 = rect.bottom; t6 = rect.top; t7 = t5 - t6; if (t4 < t7) { delta = t1 * (t7 - t4) / 2; return new P.Rect(t3, t6 + delta, t2, t5 - delta); } else { delta = t1 * (t4 - t7) / 2; return new P.Rect(t3 + delta, t6, t2 - delta, t5); } }, _adjustBorderRadius$2: function(rect, textDirection) { var resolvedRadius = this.borderRadius.resolve$1(textDirection), t1 = this.circleness; if (t1 === 0) return resolvedRadius; return K.BorderRadius_lerp(resolvedRadius, K.BorderRadius$circular(rect.get$shortestSide() / 2), t1); }, getInnerPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(), t2 = this._adjustBorderRadius$2(rect, textDirection); t2.toString; t1.addRRect$1(0, t2.toRRect$1(this._adjustRect$1(rect)).inflate$1(-this.side.width)); return t1; }, getOuterPath$2$textDirection: function(rect, textDirection) { var t1 = P.Path_Path(), t2 = this._adjustBorderRadius$2(rect, textDirection); t2.toString; t1.addRRect$1(0, t2.toRRect$1(this._adjustRect$1(rect))); return t1; }, getOuterPath$1: function(rect) { return this.getOuterPath$2$textDirection(rect, null); }, copyWith$1$side: function(side) { var t1 = side == null ? this.side : side; return new X._RoundedRectangleToCircleBorder(this.borderRadius, this.circleness, t1); }, paint$3$textDirection: function(canvas, rect, textDirection) { var width, t2, outer, inner, paint, _this = this, t1 = _this.side; switch (t1.style) { case C.BorderStyle_0: break; case C.BorderStyle_1: width = t1.width; if (width === 0) { t2 = _this._adjustBorderRadius$2(rect, textDirection); t2.toString; canvas.drawRRect$2(0, t2.toRRect$1(_this._adjustRect$1(rect)), t1.toPaint$0()); } else { t2 = _this._adjustBorderRadius$2(rect, textDirection); t2.toString; outer = t2.toRRect$1(_this._adjustRect$1(rect)); inner = outer.inflate$1(-width); t2 = H._detectRenderer(); paint = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$color(0, t1.color); canvas.drawDRRect$3(0, outer, inner, paint); } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, paint$2: function(canvas, rect) { return this.paint$3$textDirection(canvas, rect, null); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof X._RoundedRectangleToCircleBorder && J.$eq$(other.side, _this.side) && J.$eq$(other.borderRadius, _this.borderRadius) && other.circleness == _this.circleness; }, get$hashCode: function(_) { return P.hashValues(this.side, this.borderRadius, this.circleness, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "RoundedRectangleBorder(" + H.S(this.side) + ", " + H.S(this.borderRadius) + ", " + C.JSNumber_methods.toStringAsFixed$1(this.circleness * 100, 1) + "% of the way to being a CircleBorder)"; } }; D.ShaderWarmUp.prototype = { execute$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, picture, recorder; var $async$execute$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start recorder = P.PictureRecorder_PictureRecorder(); $async$goto = 2; return P._asyncAwait($async$self.warmUpOnCanvas$1(P.Canvas_Canvas(recorder, null)), $async$execute$0); case 2: // returning from await. picture = recorder.endRecording$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$execute$0, $async$completer); } }; D.DefaultShaderWarmUp.prototype = { warmUpOnCanvas$1: function(canvas) { return this.warmUpOnCanvas$body$DefaultShaderWarmUp(canvas); }, warmUpOnCanvas$body$DefaultShaderWarmUp: function(canvas) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), circlePath, path, convexPath, paths, t1, t2, t3, t4, paints, i, _i, paint, paragraphBuilder, paragraph, fraction, rrectPath; var $async$warmUpOnCanvas$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start rrectPath = P.Path_Path(); rrectPath.addRRect$1(0, C.RRect_GZS); circlePath = P.Path_Path(); circlePath.addOval$1(0, P.Rect$fromCircle(C.Offset_40_40, 20)); path = P.Path_Path(); path.moveTo$2(0, 20, 60); path.quadraticBezierTo$4(60, 20, 60, 60); path.close$0(0); path.moveTo$2(0, 60, 20); path.quadraticBezierTo$4(60, 60, 20, 60); convexPath = P.Path_Path(); convexPath.moveTo$2(0, 20, 30); convexPath.lineTo$2(0, 40, 20); convexPath.lineTo$2(0, 60, 30); convexPath.lineTo$2(0, 60, 60); convexPath.lineTo$2(0, 20, 60); convexPath.close$0(0); paths = [rrectPath, circlePath, path, convexPath]; t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1.set$isAntiAlias(true); t1.set$style(0, C.PaintingStyle_0); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$isAntiAlias(false); t2.set$style(0, C.PaintingStyle_0); t3 = H._detectRenderer(); t3 = t3 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t3.set$isAntiAlias(true); t3.set$style(0, C.PaintingStyle_1); t3.set$strokeWidth(10); t4 = H._detectRenderer(); t4 = t4 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t4.set$isAntiAlias(true); t4.set$style(0, C.PaintingStyle_1); t4.set$strokeWidth(0.1); paints = [t1, t2, t3, t4]; for (i = 0; i < 4; ++i) { canvas.save$0(0); for (_i = 0; _i < 4; ++_i) { paint = paints[_i]; canvas.drawPath$2(0, paths[i], paint); canvas.translate$2(0, 0, 0); } canvas.restore$0(0); canvas.translate$2(0, 0, 0); } canvas.save$0(0); canvas.drawShadow$4(0, rrectPath, C.Color_4278190080, 10, true); canvas.translate$2(0, 0, 0); canvas.drawShadow$4(0, rrectPath, C.Color_4278190080, 10, false); canvas.restore$0(0); canvas.translate$2(0, 0, 0); paragraphBuilder = P.ParagraphBuilder_ParagraphBuilder(P.ParagraphStyle_ParagraphStyle(null, null, null, null, null, null, null, null, null, null, C.TextDirection_1, null)); paragraphBuilder.pushStyle$1(0, P.TextStyle_TextStyle(null, C.Color_4278190080, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null)); paragraphBuilder.addText$1(0, "_"); paragraph = paragraphBuilder.build$0(0); paragraph.layout$1(0, C.ParagraphConstraints_60); canvas.drawParagraph$2(0, paragraph, C.Offset_20_20); for (t1 = [0, 0.5], _i = 0; _i < 2; ++_i) { fraction = t1[_i]; canvas.save$0(0); canvas.translate$2(0, fraction, fraction); canvas.clipRRect$1(0, new P.RRect(8, 8, 328, 248, 16, 16, 16, 16, 16, 16, 16, 16, true)); t2 = H._detectRenderer(); canvas.drawRect$2(0, C.Rect_10_10_320_240, t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData())); canvas.restore$0(0); canvas.translate$2(0, 0, 0); } canvas.translate$2(0, 0, 0); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$warmUpOnCanvas$1, $async$completer); } }; V.ShapeDecoration.prototype = { getClipPath$2: function(rect, textDirection) { return this.shape.getOuterPath$2$textDirection(rect, textDirection); }, get$padding: function(_) { return this.shape.get$dimensions(); }, get$isComplex: function() { return this.shadows != null; }, lerpFrom$2: function(a, t) { if (a instanceof S.BoxDecoration) return V.ShapeDecoration_lerp(V.ShapeDecoration_ShapeDecoration$fromBoxDecoration(a), this, t); else if (a == null || a instanceof V.ShapeDecoration) return V.ShapeDecoration_lerp(type$.nullable_ShapeDecoration._as(a), this, t); return this.super$Decoration$lerpFrom(a, t); }, lerpTo$2: function(b, t) { if (b instanceof S.BoxDecoration) return V.ShapeDecoration_lerp(this, V.ShapeDecoration_ShapeDecoration$fromBoxDecoration(b), t); else if (b == null || b instanceof V.ShapeDecoration) return V.ShapeDecoration_lerp(this, type$.nullable_ShapeDecoration._as(b), t); return this.super$Decoration$lerpTo(b, t); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof V.ShapeDecoration) if (J.$eq$(other.color, _this.color)) t1 = J.$eq$(other.image, _this.image) && S.listEquals(other.shadows, _this.shadows) && J.$eq$(other.shape, _this.shape); else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.gradient, _this.image, _this.shape, P.hashList(_this.shadows), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, hitTest$3$textDirection: function(size, position, textDirection) { return this.shape.getOuterPath$2$textDirection(new P.Rect(0, 0, 0 + size._dx, 0 + size._dy), textDirection).contains$1(0, position); }, createBoxPainter$1: function(onChanged) { return new V._ShapeDecorationPainter(this, onChanged); } }; V._ShapeDecorationPainter.prototype = { _precache$2: function(rect, textDirection) { var t1, t2, _this = this; if (rect.$eq(0, _this._lastRect) && textDirection == _this._lastTextDirection) return; if (_this._interiorPaint == null) t1 = _this._shape_decoration$_decoration.color != null || false; else t1 = false; if (t1) { t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); _this._interiorPaint = t1; t2 = _this._shape_decoration$_decoration.color; if (t2 != null) t1.set$color(0, t2); } t1 = _this._shape_decoration$_decoration; t2 = t1.shadows; if (t2 != null) { if (_this._shadowCount == null) { _this._shadowCount = t2.length; _this.___ShapeDecorationPainter__shadowPaints = P.List_List$of(new H.MappedListIterable(t2, new V._ShapeDecorationPainter__precache_closure(), H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Paint>")), true, type$.Paint); } _this.___ShapeDecorationPainter__shadowPaths = P.List_List$of(new H.MappedListIterable(t2, new V._ShapeDecorationPainter__precache_closure0(_this, rect, textDirection), H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Path>")), true, type$.Path); } if (_this._interiorPaint != null || _this._shadowCount != null) _this.___ShapeDecorationPainter__outerPath = t1.shape.getOuterPath$2$textDirection(rect, textDirection); if (t1.image != null) _this._innerPath = t1.shape.getInnerPath$2$textDirection(rect, textDirection); _this._lastRect = rect; _this._lastTextDirection = textDirection; }, _shape_decoration$_paintShadows$1: function(canvas) { var index, t1, t2, _this = this; if (_this._shadowCount != null) { index = 0; while (true) { t1 = _this._shadowCount; t1.toString; if (!(index < t1)) break; t1 = _this.___ShapeDecorationPainter__shadowPaths; t1 = J.$index$asx(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_shadowPaths")) : t1, index); t2 = _this.___ShapeDecorationPainter__shadowPaints; canvas.drawPath$2(0, t1, J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_shadowPaints")) : t2, index)); ++index; } } }, _paintImage$2: function(canvas, configuration) { var t2, _this = this, t1 = _this._shape_decoration$_decoration.image; if (t1 == null) return; t2 = _this._imagePainter; if (t2 == null) { t2 = _this.onChanged; t2.toString; t2 = _this._imagePainter = new X.DecorationImagePainter(t1, t2); t1 = t2; } else t1 = t2; t2 = _this._lastRect; t2.toString; t1.paint$4(canvas, t2, _this._innerPath, configuration); }, dispose$0: function(_) { var t1 = this._imagePainter; if (t1 != null) t1.dispose$0(0); this.super$BoxPainter$dispose(0); }, paint$3: function(canvas, offset, configuration) { var _this = this, t1 = configuration.size, t2 = offset._dx, t3 = offset._dy, rect = new P.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy), textDirection = configuration.textDirection; _this._precache$2(rect, textDirection); _this._shape_decoration$_paintShadows$1(canvas); t1 = _this._interiorPaint; if (t1 != null) { t2 = _this.___ShapeDecorationPainter__outerPath; canvas.drawPath$2(0, t2 === $ ? H.throwExpression(H.LateError$fieldNI("_outerPath")) : t2, t1); } _this._paintImage$2(canvas, configuration); _this._shape_decoration$_decoration.shape.paint$3$textDirection(canvas, rect, textDirection); } }; V._ShapeDecorationPainter__precache_closure.prototype = { call$1: function(shadow) { return shadow.toPaint$0(); }, $signature: 2253 }; V._ShapeDecorationPainter__precache_closure0.prototype = { call$1: function(shadow) { return this.$this._shape_decoration$_decoration.shape.getOuterPath$2$textDirection(this.rect.shift$1(shadow.offset).inflate$1(shadow.spreadRadius), this.textDirection); }, $signature: 2278 }; M.StrutStyle.prototype = { get$fontFamilyFallback: function() { return this._strut_style$_fontFamilyFallback; }, compareTo$1: function(_, other) { var t1, _this = this; if (_this === other) return C.RenderComparison_0; if (_this.fontFamily == other.fontFamily) if (_this.fontSize == other.fontSize) if (_this.fontWeight == other.fontWeight) if (_this.fontStyle == other.fontStyle) if (_this.height == other.height) t1 = _this.forceStrutHeight != other.forceStrutHeight || !S.listEquals(_this.get$fontFamilyFallback(), other.get$fontFamilyFallback()); else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return C.RenderComparison_3; return C.RenderComparison_0; }, inheritFromTextStyle$1: function(other) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = _this.fontFamily; if (t1 == null) t1 = other.fontFamily; t2 = _this.get$fontFamilyFallback(); if (t2 == null) t2 = other.get$fontFamilyFallback(); t3 = _this.fontSize; if (t3 == null) t3 = other.fontSize; t4 = _this.height; if (t4 == null) t4 = other.height; t5 = _this.fontWeight; if (t5 == null) t5 = other.fontWeight; t6 = _this.fontStyle; if (t6 == null) t6 = other.fontStyle; t7 = _this.debugLabel; if (t7 == null) t7 = other.debugLabel; return new M.StrutStyle(t1, t2, t3, t4, t5, t6, _this.leading, _this.forceStrutHeight, t7); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof M.StrutStyle) if (other.fontFamily == _this.fontFamily) if (other.fontSize == _this.fontSize) if (other.fontWeight == _this.fontWeight) if (other.fontStyle == _this.fontStyle) if (other.height == _this.height) t1 = other.forceStrutHeight == _this.forceStrutHeight; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.fontFamily, _this.fontSize, _this.fontWeight, _this.fontStyle, _this.height, _this.leading, _this.forceStrutHeight, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toStringShort$0: function() { return "StrutStyle"; } }; M._StrutStyle_Object_Diagnosticable.prototype = {}; U.PlaceholderDimensions.prototype = { toString$0: function(_) { return "PlaceholderDimensions(" + H.S(this.size) + ", " + H.S(this.baseline) + ")"; } }; U.TextWidthBasis.prototype = { toString$0: function(_) { return this._text_painter$_name; } }; U._CaretMetrics.prototype = {}; U.TextPainter.prototype = { markNeedsLayout$0: function() { var _this = this; _this._text_painter$_paragraph = null; _this._text_painter$_needsLayout = true; _this._previousCaretPrototype = _this._previousCaretPosition = null; }, get$text: function(_) { return this._text_painter$_text; }, set$text: function(_, value) { var t1, _this = this; if (J.$eq$(_this._text_painter$_text, value)) return; t1 = _this._text_painter$_text; t1 = t1 == null ? null : t1.style; if (!J.$eq$(t1, value.style)) _this._layoutTemplate = null; _this._text_painter$_text = value; _this.markNeedsLayout$0(); }, set$textAlign: function(_, value) { if (this._text_painter$_textAlign === value) return; this._text_painter$_textAlign = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._text_painter$_textDirection == value) return; _this._text_painter$_textDirection = value; _this.markNeedsLayout$0(); _this._layoutTemplate = null; }, set$textScaleFactor: function(value) { var _this = this; if (_this._textScaleFactor === value) return; _this._textScaleFactor = value; _this.markNeedsLayout$0(); _this._layoutTemplate = null; }, set$ellipsis: function(_, value) { if (this._text_painter$_ellipsis == value) return; this._text_painter$_ellipsis = value; this.markNeedsLayout$0(); }, set$locale: function(_, value) { if (J.$eq$(this._text_painter$_locale, value)) return; this._text_painter$_locale = value; this.markNeedsLayout$0(); }, set$maxLines: function(_, value) { if (this._text_painter$_maxLines == value) return; this._text_painter$_maxLines = value; this.markNeedsLayout$0(); }, set$strutStyle: function(_, value) { if (J.$eq$(this._text_painter$_strutStyle, value)) return; this._text_painter$_strutStyle = value; this.markNeedsLayout$0(); }, set$textWidthBasis: function(value) { if (this._textWidthBasis === value) return; this._textWidthBasis = value; this.markNeedsLayout$0(); }, setPlaceholderDimensions$1: function(value) { if (value == null || value.length === 0 || S.listEquals(value, this._placeholderDimensions)) return; this._placeholderDimensions = value; this.markNeedsLayout$0(); }, _createParagraphStyle$1: function(defaultTextDirection) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, t1 = _this._text_painter$_text.style; if (t1 == null) t1 = _null; else { t2 = _this._text_painter$_textAlign; t3 = _this._text_painter$_textDirection; if (t3 == null) t3 = defaultTextDirection; t4 = _this._textScaleFactor; t5 = _this._text_painter$_maxLines; t6 = _this._text_painter$_ellipsis; t7 = _this._text_painter$_locale; t8 = _this._text_painter$_strutStyle; t9 = t1.fontWeight; t10 = t1.fontStyle; t11 = t1.fontFamily; t12 = t1.fontSize; if (t12 == null) t12 = 14; t1 = t1.height; if (t8 == null) t8 = _null; else { t13 = t8.fontFamily; t14 = t8.get$fontFamilyFallback(); t15 = t8.fontSize; t15 = t15 == null ? _null : t15 * t4; t8 = new H.EngineStrutStyle(t13, t14, t15, t8.height, t8.leading, t8.fontWeight, t8.fontStyle, t8.forceStrutHeight); } t3 = P.ParagraphStyle_ParagraphStyle(t6, t11, t12 * t4, t10, t9, t1, t7, t5, t8, t2, t3, _null); t1 = t3; } if (t1 == null) { t1 = _this._text_painter$_textAlign; t2 = _this._text_painter$_textDirection; if (t2 == null) t2 = defaultTextDirection; t3 = _this._textScaleFactor; t4 = _this._text_painter$_maxLines; t5 = _this._text_painter$_textHeightBehavior; t5 = P.ParagraphStyle_ParagraphStyle(_this._text_painter$_ellipsis, _null, 14 * t3, _null, _null, _null, _this._text_painter$_locale, t4, _null, t1, t2, t5); t1 = t5; } return t1; }, _createParagraphStyle$0: function() { return this._createParagraphStyle$1(null); }, get$preferredLineHeight: function() { var builder, _this = this, t1 = _this._layoutTemplate; if (t1 == null) { builder = P.ParagraphBuilder_ParagraphBuilder(_this._createParagraphStyle$1(C.TextDirection_0)); t1 = _this._text_painter$_text; if ((t1 == null ? null : t1.style) != null) builder.pushStyle$1(0, t1.style.getTextStyle$1$textScaleFactor(_this._textScaleFactor)); builder.addText$1(0, " "); t1 = builder.build$0(0); t1.layout$1(0, C.ParagraphConstraints_C5f); _this._layoutTemplate = t1; } return t1.get$height(t1); }, get$width: function(_) { var t1 = this._textWidthBasis, t2 = this._text_painter$_paragraph; t1 = t1 === C.TextWidthBasis_1 ? t2.get$longestLine() : t2.get$width(t2); t1.toString; return Math.ceil(t1); }, computeDistanceToActualBaseline$1: function(baseline) { var t1; switch (baseline) { case C.TextBaseline_0: t1 = this._text_painter$_paragraph; return t1.get$alphabeticBaseline(t1); case C.TextBaseline_1: t1 = this._text_painter$_paragraph; return t1.get$ideographicBaseline(t1); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, layout$2$maxWidth$minWidth: function(_, maxWidth, minWidth) { var t1, builder, t2, newWidth, _this = this; if (!_this._text_painter$_needsLayout && minWidth == _this._lastMinWidth && maxWidth == _this._lastMaxWidth) return; _this._text_painter$_needsLayout = false; t1 = _this._text_painter$_paragraph; if (t1 == null) { builder = P.ParagraphBuilder_ParagraphBuilder(_this._createParagraphStyle$0()); t1 = _this._text_painter$_text; t2 = _this._textScaleFactor; t1.build$3$dimensions$textScaleFactor(0, builder, _this._placeholderDimensions, t2); _this._inlinePlaceholderScales = builder.get$placeholderScales(); t2 = _this._text_painter$_paragraph = builder.build$0(0); t1 = t2; } _this._lastMinWidth = minWidth; _this._lastMaxWidth = maxWidth; _this._previousCaretPrototype = _this._previousCaretPosition = null; t1.layout$1(0, new P.ParagraphConstraints(maxWidth)); if (minWidth != maxWidth) { switch (_this._textWidthBasis) { case C.TextWidthBasis_1: t1 = _this._text_painter$_paragraph.get$longestLine(); t1.toString; newWidth = Math.ceil(t1); break; case C.TextWidthBasis_0: t1 = _this._text_painter$_paragraph.get$maxIntrinsicWidth(); t1.toString; newWidth = Math.ceil(t1); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } newWidth = C.JSNumber_methods.clamp$2(newWidth, minWidth, maxWidth); t1 = _this._text_painter$_paragraph; t1 = t1.get$width(t1); t1.toString; if (newWidth !== Math.ceil(t1)) _this._text_painter$_paragraph.layout$1(0, new P.ParagraphConstraints(newWidth)); } _this._inlinePlaceholderBoxes = _this._text_painter$_paragraph.getBoxesForPlaceholders$0(); }, layout$1$maxWidth: function($receiver, maxWidth) { return this.layout$2$maxWidth$minWidth($receiver, maxWidth, 0); }, layout$0: function($receiver) { return this.layout$2$maxWidth$minWidth($receiver, 1 / 0, 0); }, getOffsetAfter$1: function(offset) { var nextCodeUnit = this._text_painter$_text.codeUnitAt$1(0, offset); if (nextCodeUnit == null) return null; return (nextCodeUnit & 63488) === 55296 ? offset + 2 : offset + 1; }, getOffsetBefore$1: function(offset) { var t2, prevCodeUnit, t1 = this._text_painter$_text; t1.toString; t2 = offset - 1; prevCodeUnit = t1.codeUnitAt$1(0, t2); if (prevCodeUnit == null) return null; return (prevCodeUnit & 63488) === 55296 ? offset - 2 : t2; }, _getRectFromUpstream$2: function(offset, caretPrototype) { var prevCodeUnit, needsSearch, graphemeClusterLength, boxes, t2, prevRuneOffset, box, caretEnd, dx, _this = this, flattenedText = _this._text_painter$_text.toPlainText$1$includePlaceholders(false), t1 = _this._text_painter$_text; t1.toString; prevCodeUnit = t1.codeUnitAt$1(0, Math.max(0, offset - 1)); if (prevCodeUnit == null) return null; needsSearch = (prevCodeUnit & 63488) === 55296 || _this._text_painter$_text.codeUnitAt$1(0, offset) === 8205 || prevCodeUnit === 8207 || prevCodeUnit === 8206; graphemeClusterLength = needsSearch ? 2 : 1; boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = -flattenedText.length, t2 = !needsSearch; boxes.length === 0;) { prevRuneOffset = offset - graphemeClusterLength; boxes = _this._text_painter$_paragraph.getBoxesForRange$3$boxHeightStyle(prevRuneOffset, offset, C.BoxHeightStyle_5); if (boxes.length === 0) { if (t2) break; if (prevRuneOffset < t1) break; graphemeClusterLength *= 2; continue; } box = C.JSArray_methods.get$first(boxes); if (prevCodeUnit === 10) { t1 = box.bottom; return new P.Rect(_this.get$_emptyOffset()._dx, t1, _this.get$_emptyOffset()._dx, t1 + t1 - box.top); } t1 = box.direction; caretEnd = t1 === C.TextDirection_1 ? box.right : box.left; dx = t1 === C.TextDirection_0 ? caretEnd - (caretPrototype.right - caretPrototype.left) : caretEnd; t1 = _this._text_painter$_paragraph; t1 = t1.get$width(t1); t1 = Math.min(H.checkNum(dx), H.checkNum(t1)); t2 = _this._text_painter$_paragraph; t2 = t2.get$width(t2); return new P.Rect(t1, box.top, Math.min(H.checkNum(dx), H.checkNum(t2)), box.bottom); } return null; }, _getRectFromDownstream$2: function(offset, caretPrototype) { var t2, nextCodeUnit, needsSearch, graphemeClusterLength, boxes, nextRuneOffset, box, caretStart, dx, _this = this, flattenedText = _this._text_painter$_text.toPlainText$1$includePlaceholders(false), t1 = _this._text_painter$_text; t1.toString; t2 = flattenedText.length; nextCodeUnit = t1.codeUnitAt$1(0, Math.min(H.checkNum(offset), t2 - 1)); if (nextCodeUnit == null) return null; needsSearch = (nextCodeUnit & 63488) === 55296 || nextCodeUnit === 8205 || nextCodeUnit === 8207 || nextCodeUnit === 8206; graphemeClusterLength = needsSearch ? 2 : 1; boxes = H.setRuntimeTypeInfo([], type$.JSArray_TextBox); for (t1 = t2 << 1 >>> 0, t2 = !needsSearch; boxes.length === 0;) { nextRuneOffset = offset + graphemeClusterLength; boxes = _this._text_painter$_paragraph.getBoxesForRange$3$boxHeightStyle(offset, nextRuneOffset, C.BoxHeightStyle_5); if (boxes.length === 0) { if (t2) break; if (nextRuneOffset >= t1) break; graphemeClusterLength *= 2; continue; } box = C.JSArray_methods.get$last(boxes); t1 = box.direction; caretStart = t1 === C.TextDirection_1 ? box.left : box.right; dx = t1 === C.TextDirection_0 ? caretStart - (caretPrototype.right - caretPrototype.left) : caretStart; t1 = _this._text_painter$_paragraph; t1 = t1.get$width(t1); t1 = Math.min(H.checkNum(dx), H.checkNum(t1)); t2 = _this._text_painter$_paragraph; t2 = t2.get$width(t2); return new P.Rect(t1, box.top, Math.min(H.checkNum(dx), H.checkNum(t2)), box.bottom); } return null; }, get$_emptyOffset: function() { var t1, _this = this, _s80_ = string$.x60null_c; switch (_this._text_painter$_textAlign) { case C.TextAlign_0: return C.Offset_0_0; case C.TextAlign_1: return new P.Offset(_this.get$width(_this), 0); case C.TextAlign_2: return new P.Offset(_this.get$width(_this) / 2, 0); case C.TextAlign_3: case C.TextAlign_4: t1 = _this._text_painter$_textDirection; t1.toString; switch (t1) { case C.TextDirection_0: return new P.Offset(_this.get$width(_this), 0); case C.TextDirection_1: return C.Offset_0_0; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.TextAlign_5: t1 = _this._text_painter$_textDirection; t1.toString; switch (t1) { case C.TextDirection_0: return C.Offset_0_0; case C.TextDirection_1: return new P.Offset(_this.get$width(_this), 0); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, get$_caretMetrics: function() { var t1 = this.__TextPainter__caretMetrics; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_caretMetrics")) : t1; }, _computeCaretMetrics$2: function(position, caretPrototype) { var offset, rect, t1, t2, _this = this; if (J.$eq$(position, _this._previousCaretPosition) && J.$eq$(caretPrototype, _this._previousCaretPrototype)) return; offset = position.offset; switch (position.affinity) { case C.TextAffinity_0: rect = _this._getRectFromUpstream$2(offset, caretPrototype); if (rect == null) rect = _this._getRectFromDownstream$2(offset, caretPrototype); break; case C.TextAffinity_1: rect = _this._getRectFromDownstream$2(offset, caretPrototype); if (rect == null) rect = _this._getRectFromUpstream$2(offset, caretPrototype); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = rect != null; t2 = t1 ? new P.Offset(rect.left, rect.top) : _this.get$_emptyOffset(); _this.__TextPainter__caretMetrics = new U._CaretMetrics(t2, t1 ? rect.bottom - rect.top : null); _this._previousCaretPosition = position; _this._previousCaretPrototype = caretPrototype; }, getBoxesForSelection$3$boxHeightStyle$boxWidthStyle: function(selection, boxHeightStyle, boxWidthStyle) { return this._text_painter$_paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(selection.start, selection.end, boxHeightStyle, boxWidthStyle); }, getBoxesForSelection$1: function(selection) { return this.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, C.BoxHeightStyle_0, C.BoxWidthStyle_0); }, text$0: function($receiver) { return this.get$text(this).call$0(); } }; Q.TextSpan.prototype = { get$cursor: function(_) { return this.mouseCursor; }, get$validForMouseTracker: function() { return true; }, handleEvent$2: function($event, entry) { var t1; if (type$.PointerDownEvent._is($event)) { t1 = this.recognizer; if (t1 != null) t1.addPointer$1($event); } }, build$3$dimensions$textScaleFactor: function(_, builder, dimensions, textScaleFactor) { var t2, _i, t1 = this.style, hasStyle = t1 != null; if (hasStyle) builder.pushStyle$1(0, t1.getTextStyle$1$textScaleFactor(textScaleFactor)); t1 = this.text; if (t1 != null) builder.addText$1(0, t1); t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].build$3$dimensions$textScaleFactor(0, builder, dimensions, textScaleFactor); if (hasStyle) builder.pop$0(0); }, visitChildren$1: function(visitor) { var t1, t2, _i; if (this.text != null) if (!visitor.call$1(this)) return false; t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) if (!t1[_i].visitChildren$1(visitor)) return false; return true; }, getSpanForPositionVisitor$2: function(position, offset) { var affinity, targetOffset, t2, endOffset, t1 = this.text; if (t1 == null) return null; affinity = position.affinity; targetOffset = position.offset; t2 = offset._inline_span$_value; endOffset = t2 + t1.length; if (!(t2 === targetOffset && affinity === C.TextAffinity_1)) if (!(t2 < targetOffset && targetOffset < endOffset)) t1 = endOffset === targetOffset && affinity === C.TextAffinity_0; else t1 = true; else t1 = true; if (t1) return this; offset._inline_span$_value = endOffset; return null; }, computeToPlainText$3$includePlaceholders$includeSemanticsLabels: function(buffer, includePlaceholders, includeSemanticsLabels) { var t2, _i, t1 = this.text; if (t1 != null) buffer._contents += t1; t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].computeToPlainText$3$includePlaceholders$includeSemanticsLabels(buffer, includePlaceholders, includeSemanticsLabels); }, computeSemanticsInformation$1: function(collector) { var t2, _i, t1 = this.text; if (t1 != null) { t2 = this.recognizer; collector.push(new G.InlineSpanSemanticsInformation(t1, null, t2, t2 != null)); } t1 = this.children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].computeSemanticsInformation$1(collector); }, codeUnitAtVisitor$2: function(index, offset) { var t2, t3, t4, t1 = this.text; if (t1 == null) return null; t2 = offset._inline_span$_value; t3 = index - t2; t4 = t1.length; if (t3 < t4) return C.JSString_methods.codeUnitAt$1(t1, t3); offset._inline_span$_value = t2 + t4; return null; }, compareTo$1: function(_, other) { var t1, t2, result, candidate, index, _this = this; if (_this === other) return C.RenderComparison_0; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return C.RenderComparison_3; if (other.text == _this.text) { t1 = _this.children; t1 = t1 == null ? null : t1.length; t2 = other.children; t1 = t1 != (t2 == null ? null : t2.length) || _this.style == null !== (other.style == null); } else t1 = true; if (t1) return C.RenderComparison_3; result = _this.recognizer == other.recognizer ? C.RenderComparison_0 : C.RenderComparison_1; t1 = _this.style; if (t1 != null) { t2 = other.style; t2.toString; candidate = t1.compareTo$1(0, t2); if (candidate.index > result.index) result = candidate; if (result === C.RenderComparison_3) return result; } t1 = _this.children; if (t1 != null) for (t2 = other.children, index = 0; index < t1.length; ++index) { candidate = t1[index].compareTo$1(0, t2[index]); if (candidate.index > result.index) result = candidate; if (result === C.RenderComparison_3) return result; } return result; }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (!_this.super$InlineSpan$$eq(0, other)) return false; if (other instanceof Q.TextSpan) if (other.text == _this.text) if (other.recognizer == _this.recognizer) t1 = _this.mouseCursor.$eq(0, other.mouseCursor) && S.listEquals(other.children, _this.children); else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashValues(G.InlineSpan.prototype.get$hashCode.call(_this, _this), _this.text, _this.recognizer, null, null, null, _this.mouseCursor, P.hashList(_this.children), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toStringShort$0: function() { return "TextSpan"; }, debugDescribeChildren$0: function() { var t2, t1 = this.children; if (t1 == null) return C.List_empty0; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return P.List_List$of(new H.MappedListIterable(t1, new Q.TextSpan_debugDescribeChildren_closure(), t2), true, t2._eval$1("ListIterable.E")); }, $isMouseTrackerAnnotation: 1, text$0: function($receiver) { return this.text.call$0(); }, get$onEnter: function() { return null; }, get$onExit: function() { return null; } }; Q.TextSpan_debugDescribeChildren_closure.prototype = { call$1: function(child) { if (child != null) return Y.DiagnosticableTreeNode$(null, null, child); else return Y.DiagnosticsNode_DiagnosticsNode$message("", true, C.DiagnosticsTreeStyle_8); }, $signature: 2280 }; A.TextStyle.prototype = { get$fontFamilyFallback: function() { var _this = this, t1 = _this._package != null && _this._text_style$_fontFamilyFallback != null, t2 = _this._text_style$_fontFamilyFallback; if (t1) { t2.toString; t1 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,String>"); t1 = P.List_List$of(new H.MappedListIterable(t2, new A.TextStyle_fontFamilyFallback_closure(_this), t1), true, t1._eval$1("ListIterable.E")); } else t1 = t2; return t1; }, copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing: function(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, inherit, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, _this = this, _null = null, t1 = inherit == null ? _this.inherit : inherit, t2 = _this.foreground; if (t2 == null && foreground == null) t3 = color == null ? _this.color : color; else t3 = _null; t4 = _this.background; if (t4 == null && background == null) t5 = backgroundColor == null ? _this.backgroundColor : backgroundColor; else t5 = _null; t6 = fontFamily == null ? _this.fontFamily : fontFamily; t7 = fontFamilyFallback == null ? _this.get$fontFamilyFallback() : fontFamilyFallback; t8 = fontSize == null ? _this.fontSize : fontSize; t9 = fontWeight == null ? _this.fontWeight : fontWeight; t10 = fontStyle == null ? _this.fontStyle : fontStyle; t11 = letterSpacing == null ? _this.letterSpacing : letterSpacing; t12 = wordSpacing == null ? _this.wordSpacing : wordSpacing; t13 = textBaseline == null ? _this.textBaseline : textBaseline; t14 = height == null ? _this.height : height; t2 = foreground == null ? t2 : foreground; t4 = background == null ? t4 : background; t15 = shadows == null ? _this.shadows : shadows; t16 = fontFeatures == null ? _this.fontFeatures : fontFeatures; t17 = decoration == null ? _this.decoration : decoration; t18 = decorationColor == null ? _this.decorationColor : decorationColor; t19 = decorationStyle == null ? _this.decorationStyle : decorationStyle; t20 = decorationThickness == null ? _this.decorationThickness : decorationThickness; return A.TextStyle$(t4, t5, t3, _null, t17, t18, t19, t20, t6, t7, t16, t8, t10, t9, t2, t14, t1, _this.leadingDistribution, t11, _this.locale, _null, t15, t13, t12); }, copyWith$1$color: function(color) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$2$color$letterSpacing: function(color, letterSpacing) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, letterSpacing, null, null, null, null); }, copyWith$2$color$fontSize: function(color, fontSize) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, fontSize, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$22$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing: function(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(background, backgroundColor, color, debugLabel, decoration, decorationColor, decorationStyle, decorationThickness, fontFamily, fontFamilyFallback, fontFeatures, fontSize, fontStyle, fontWeight, foreground, height, null, leadingDistribution, letterSpacing, locale, shadows, textBaseline, wordSpacing); }, copyWith$1$fontWeight: function(fontWeight) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, fontWeight, null, null, null, null, null, null, null, null, null); }, copyWith$1$fontSize: function(fontSize) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, fontSize, null, null, null, null, null, null, null, null, null, null, null); }, copyWith$1$inherit: function(inherit) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, inherit, null, null, null, null, null, null); }, copyWith$3$color$fontSize$fontWeight: function(color, fontSize, fontWeight) { return this.copyWith$23$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$inherit$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(null, null, color, null, null, null, null, null, null, null, null, fontSize, null, fontWeight, null, null, null, null, null, null, null, null, null); }, apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor: function(color, decoration, decorationColor, decorationStyle, fontFamily, fontSizeDelta, fontSizeFactor) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, t1 = _this.foreground; if (t1 == null) t2 = color == null ? _this.color : color; else t2 = _null; t3 = _this.background; if (t3 == null) t4 = _this.backgroundColor; else t4 = _null; t5 = fontFamily == null ? _this.fontFamily : fontFamily; t6 = _this.get$fontFamilyFallback(); t7 = _this.fontSize; t7 = t7 == null ? _null : t7 * fontSizeFactor + fontSizeDelta; t8 = _this.fontWeight; t8 = t8 == null ? _null : C.List_27p[C.JSInt_methods.clamp$2(t8.index, 0, 8)]; t9 = _this.letterSpacing; t9 = t9 == null ? _null : t9 + 0; t10 = _this.wordSpacing; t10 = t10 == null ? _null : t10 + 0; t11 = _this.height; t11 = t11 == null ? _null : t11 + 0; t12 = _this.decorationThickness; t12 = t12 == null ? _null : t12 + 0; return A.TextStyle$(t3, t4, t2, _null, _this.decoration, _this.decorationColor, _this.decorationStyle, t12, t5, t6, _this.fontFeatures, t7, _this.fontStyle, t8, t1, t11, _this.inherit, _this.leadingDistribution, t9, _this.locale, _null, _this.shadows, _this.textBaseline, t10); }, apply$1$color: function(color) { return this.apply$7$color$decoration$decorationColor$decorationStyle$fontFamily$fontSizeDelta$fontSizeFactor(color, null, null, null, null, 0, 1); }, merge$1: function(other) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17; if (other == null) return this; if (!other.inherit) return other; t1 = other.color; t2 = other.backgroundColor; t3 = other.fontFamily; t4 = other.get$fontFamilyFallback(); t5 = other.fontSize; t6 = other.fontWeight; t7 = other.fontStyle; t8 = other.letterSpacing; t9 = other.wordSpacing; t10 = other.textBaseline; t11 = other.height; t12 = other.leadingDistribution; t13 = other.locale; t14 = other.foreground; t15 = other.background; t16 = other.shadows; t17 = other.fontFeatures; return this.copyWith$22$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$shadows$textBaseline$wordSpacing(t15, t2, t1, null, other.decoration, other.decorationColor, other.decorationStyle, other.decorationThickness, t3, t4, t17, t5, t7, t6, t14, t11, t12, t8, t13, t16, t10, t9); }, getTextStyle$1$textScaleFactor: function(textScaleFactor) { var t3, t4, _this = this, t1 = _this.get$fontFamilyFallback(), t2 = _this.fontSize; t2 = t2 == null ? null : t2 * textScaleFactor; t3 = _this.background; if (t3 == null) { t3 = _this.backgroundColor; if (t3 != null) { t4 = H._detectRenderer(); t4 = t4 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t4.set$color(0, t3); t3 = t4; } else t3 = null; } return P.TextStyle_TextStyle(t3, _this.color, _this.decoration, _this.decorationColor, _this.decorationStyle, _this.decorationThickness, _this.fontFamily, t1, _this.fontFeatures, t2, _this.fontStyle, _this.fontWeight, _this.foreground, _this.height, _this.leadingDistribution, _this.letterSpacing, _this.locale, _this.shadows, _this.textBaseline, _this.wordSpacing); }, compareTo$1: function(_, other) { var t1, _this = this; if (_this === other) return C.RenderComparison_0; if (_this.inherit === other.inherit) if (_this.fontFamily == other.fontFamily) if (_this.fontSize == other.fontSize) if (_this.fontWeight == other.fontWeight) if (_this.fontStyle == other.fontStyle) if (_this.letterSpacing == other.letterSpacing) if (_this.wordSpacing == other.wordSpacing) if (_this.textBaseline == other.textBaseline) if (_this.height == other.height) t1 = _this.foreground != other.foreground || _this.background != other.background || !S.listEquals(_this.shadows, other.shadows) || !S.listEquals(_this.fontFeatures, other.fontFeatures) || !S.listEquals(_this.get$fontFamilyFallback(), other.get$fontFamilyFallback()); else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return C.RenderComparison_3; if (!J.$eq$(_this.color, other.color) || !J.$eq$(_this.backgroundColor, other.backgroundColor) || !J.$eq$(_this.decoration, other.decoration) || !J.$eq$(_this.decorationColor, other.decorationColor) || _this.decorationStyle != other.decorationStyle || _this.decorationThickness != other.decorationThickness) return C.RenderComparison_2; return C.RenderComparison_0; }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof A.TextStyle) if (other.inherit === _this.inherit) if (J.$eq$(other.color, _this.color)) if (J.$eq$(other.backgroundColor, _this.backgroundColor)) if (other.fontFamily == _this.fontFamily) if (other.fontSize == _this.fontSize) if (other.fontWeight == _this.fontWeight) if (other.fontStyle == _this.fontStyle) if (other.letterSpacing == _this.letterSpacing) if (other.wordSpacing == _this.wordSpacing) if (other.textBaseline == _this.textBaseline) if (other.height == _this.height) t1 = other.foreground == _this.foreground && other.background == _this.background && J.$eq$(other.decoration, _this.decoration) && J.$eq$(other.decorationColor, _this.decorationColor) && other.decorationStyle == _this.decorationStyle && other.decorationThickness == _this.decorationThickness && S.listEquals(other.shadows, _this.shadows) && S.listEquals(other.fontFeatures, _this.fontFeatures) && S.listEquals(other.get$fontFamilyFallback(), _this.get$fontFamilyFallback()); else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this; return P.hashList([_this.inherit, _this.color, _this.backgroundColor, _this.fontFamily, _this.fontSize, _this.fontWeight, _this.fontStyle, _this.letterSpacing, _this.wordSpacing, _this.textBaseline, _this.height, _this.leadingDistribution, _this.locale, _this.foreground, _this.background, _this.decoration, _this.decorationColor, _this.decorationStyle, P.hashList(_this.shadows), P.hashList(_this.fontFeatures), P.hashList(_this.get$fontFamilyFallback())]); }, toStringShort$0: function() { return "TextStyle"; } }; A.TextStyle_fontFamilyFallback_closure.prototype = { call$1: function(str) { return "packages/" + H.S(this.$this._package) + "/" + H.S(str); }, $signature: 101 }; A._TextStyle_Object_Diagnosticable.prototype = {}; D.FrictionSimulation.prototype = { x$1: function(_, time) { var _this = this, t1 = _this._v, t2 = _this._dragLog; return _this._friction_simulation$_x + t1 * Math.pow(_this._drag, time) / t2 - t1 / t2; }, dx$1: function(_, time) { H.checkNum(time); return this._v * Math.pow(this._drag, time); }, get$finalX: function() { return this._friction_simulation$_x - this._v / this._dragLog; }, timeAtX$1: function(x) { var t2, t3, _this = this, t1 = _this._friction_simulation$_x; if (x === t1) return 0; t2 = _this._v; if (t2 !== 0) if (t2 > 0) t3 = x < t1 || x > _this.get$finalX(); else t3 = x > t1 || x < _this.get$finalX(); else t3 = true; if (t3) return 1 / 0; t3 = _this._dragLog; return Math.log(t3 * (x - t1) / t2 + 1) / t3; }, isDone$1: function(time) { return Math.abs(this._v * Math.pow(this._drag, time)) < this.tolerance.velocity; } }; T.Simulation.prototype = { toString$0: function(_) { return "Simulation"; } }; M.SpringDescription.prototype = { toString$0: function(_) { return "SpringDescription(mass: " + C.JSNumber_methods.toStringAsFixed$1(this.mass, 1) + ", stiffness: " + C.JSInt_methods.toStringAsFixed$1(this.stiffness, 1) + ", damping: " + C.JSNumber_methods.toStringAsFixed$1(this.damping, 1) + ")"; } }; M.SpringType.prototype = { toString$0: function(_) { return this._spring_simulation$_name; } }; M.SpringSimulation.prototype = { x$1: function(_, time) { return this._endPosition + this._solution.x$1(0, time); }, dx$1: function(_, time) { return this._solution.dx$1(0, time); }, isDone$1: function(time) { var t1 = this._solution; return B.nearEqual(t1.x$1(0, time), 0, this.tolerance.distance) && B.nearEqual(t1.dx$1(0, time), 0, this.tolerance.velocity); }, toString$0: function(_) { var t1 = this._solution; return "SpringSimulation(end: " + H.S(this._endPosition) + ", " + t1.get$type(t1).toString$0(0) + ")"; } }; M.ScrollSpringSimulation.prototype = { x$1: function(_, time) { return this.isDone$1(time) ? this._endPosition : this.super$SpringSimulation$x(0, time); } }; M._CriticalSolution.prototype = { x$1: function(_, time) { return (this._c1 + this._c2 * time) * Math.pow(2.718281828459045, this._r * time); }, dx$1: function(_, time) { var t1 = this._r, power = Math.pow(2.718281828459045, t1 * time), t2 = this._c2; return t1 * (this._c1 + t2 * time) * power + t2 * power; }, get$type: function(_) { return C.SpringType_0; } }; M._OverdampedSolution.prototype = { x$1: function(_, time) { var _this = this; return _this._c1 * Math.pow(2.718281828459045, _this._r1 * time) + _this._c2 * Math.pow(2.718281828459045, _this._r2 * time); }, dx$1: function(_, time) { var _this = this, t1 = _this._r1, t2 = _this._r2; return _this._c1 * t1 * Math.pow(2.718281828459045, t1 * time) + _this._c2 * t2 * Math.pow(2.718281828459045, t2 * time); }, get$type: function(_) { return C.SpringType_2; } }; M._UnderdampedSolution.prototype = { x$1: function(_, time) { var _this = this, t1 = _this._spring_simulation$_w * time; return Math.pow(2.718281828459045, _this._r * time) * (_this._c1 * Math.cos(t1) + _this._c2 * Math.sin(t1)); }, dx$1: function(_, time) { var t4, _this = this, t1 = _this._r, power = Math.pow(2.718281828459045, t1 * time), t2 = _this._spring_simulation$_w, t3 = t2 * time, cosine = Math.cos(t3), sine = Math.sin(t3); t3 = _this._c2; t4 = _this._c1; return power * (t3 * t2 * cosine - t4 * t2 * sine) + t1 * power * (t3 * sine + t4 * cosine); }, get$type: function(_) { return C.SpringType_1; } }; N.Tolerance.prototype = { toString$0: function(_) { return "Tolerance(distance: \xb1" + H.S(this.distance) + ", time: \xb10.001, velocity: \xb1" + H.S(this.velocity) + ")"; } }; F.RenderAnimatedSizeState.prototype = { toString$0: function(_) { return this._animated_size$_name; } }; F.RenderAnimatedSize.prototype = { RenderAnimatedSize$8$alignment$child$clipBehavior$curve$duration$reverseDuration$textDirection$vsync: function(alignment, child, clipBehavior, curve, duration, reverseDuration, textDirection, vsync) { var t2, _this = this, t1 = G.AnimationController$(null, duration, 0, reverseDuration, 1, null, vsync); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(new F.RenderAnimatedSize_closure(_this)); if (_this.__RenderAnimatedSize__controller === $) _this.__RenderAnimatedSize__controller = t1; else H.throwExpression(H.LateError$fieldAI("_controller")); t1 = S.CurvedAnimation$(curve, _this.get$_animated_size$_controller(), null); if (_this.__RenderAnimatedSize__animation === $) _this.__RenderAnimatedSize__animation = t1; else H.throwExpression(H.LateError$fieldAI("_animation")); }, get$_animated_size$_controller: function() { var t1 = this.__RenderAnimatedSize__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_animated_size$_animation: function() { var t1 = this.__RenderAnimatedSize__animation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_animation")) : t1; }, set$duration: function(_, value) { if (value.$eq(0, this.get$_animated_size$_controller().duration)) return; this.get$_animated_size$_controller().duration = value; }, set$reverseDuration: function(value) { if (value == this.get$_animated_size$_controller().reverseDuration) return; this.get$_animated_size$_controller().reverseDuration = value; }, set$curve: function(_, value) { if (value === this.get$_animated_size$_animation().curve) return; this.get$_animated_size$_animation().curve = value; }, set$vsync: function(value) { var _this = this; if (value === _this._vsync) return; _this._vsync = value; _this.get$_animated_size$_controller().resync$1(_this._vsync); }, detach$0: function(_) { this.get$_animated_size$_controller().stop$0(0); this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, performLayout$0: function() { var constraints, t1, t2, t3, _this = this; _this._animated_size$_lastValue = _this.get$_animated_size$_controller().get$_animation_controller$_value(); _this.__RenderAnimatedSize__hasVisualOverflow = false; constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = constraints.minWidth >= constraints.maxWidth && constraints.minHeight >= constraints.maxHeight; else t2 = true; if (t2) { _this.get$_animated_size$_controller().stop$0(0); t1 = _this._sizeTween; _this._box$_size = t1.begin = t1.end = new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); _this._animated_size$_state = C.RenderAnimatedSizeState_0; t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$1(0, constraints); return; } t1.layout$2$parentUsesSize(0, constraints, true); switch (_this._animated_size$_state) { case C.RenderAnimatedSizeState_0: t1 = _this._sizeTween; t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_state = C.RenderAnimatedSizeState_1; break; case C.RenderAnimatedSizeState_1: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this._box$_size; t2.toString; t1.begin = t2; t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.end = t2; _this._animated_size$_lastValue = 0; _this.get$_animated_size$_controller().forward$1$from(0, 0); _this._animated_size$_state = C.RenderAnimatedSizeState_2; } else if (_this.get$_animated_size$_controller().get$_animation_controller$_value() === _this.get$_animated_size$_controller().upperBound) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; } else { t2 = _this.get$_animated_size$_controller()._ticker; if (!(t2 != null && t2._ticker$_future != null)) _this.get$_animated_size$_controller().forward$0(0); } break; case C.RenderAnimatedSizeState_2: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_lastValue = 0; _this.get$_animated_size$_controller().forward$1$from(0, 0); _this._animated_size$_state = C.RenderAnimatedSizeState_3; } else { _this._animated_size$_state = C.RenderAnimatedSizeState_1; t2 = _this.get$_animated_size$_controller()._ticker; if (!(t2 != null && t2._ticker$_future != null)) _this.get$_animated_size$_controller().forward$0(0); } break; case C.RenderAnimatedSizeState_3: t1 = _this._sizeTween; t2 = t1.end; t3 = _this.RenderObjectWithChildMixin__child._box$_size; t3.toString; if (!J.$eq$(t2, t3)) { t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; t1.begin = t1.end = t2; _this._animated_size$_lastValue = 0; _this.get$_animated_size$_controller().forward$1$from(0, 0); } else { _this.get$_animated_size$_controller().stop$0(0); _this._animated_size$_state = C.RenderAnimatedSizeState_1; } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = _this.get$_animated_size$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; _this._box$_size = constraints.constrain$1(t2); _this.alignChild$0(); t2 = _this._box$_size; t3 = t2._dx; t1 = t1.end; if (t3 < t1._dx || t2._dy < t1._dy) _this.__RenderAnimatedSize__hasVisualOverflow = true; }, computeDryLayout$1: function(constraints) { var t2, childSize, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = constraints.minWidth >= constraints.maxWidth && constraints.minHeight >= constraints.maxHeight; else t2 = true; if (t2) return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); childSize = t1.getDryLayout$1(constraints); switch (_this._animated_size$_state) { case C.RenderAnimatedSizeState_0: return constraints.constrain$1(childSize); case C.RenderAnimatedSizeState_1: t1 = _this._sizeTween; if (!J.$eq$(t1.end, childSize)) { t1 = _this._box$_size; t1.toString; return constraints.constrain$1(t1); } else if (_this.get$_animated_size$_controller().get$_animation_controller$_value() === _this.get$_animated_size$_controller().upperBound) return constraints.constrain$1(childSize); break; case C.RenderAnimatedSizeState_3: case C.RenderAnimatedSizeState_2: t1 = _this._sizeTween; if (!J.$eq$(t1.end, childSize)) return constraints.constrain$1(childSize); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t2 = _this.get$_animated_size$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t2.toString; return constraints.constrain$1(t2); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this.__RenderAnimatedSize__hasVisualOverflow; t1 = (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_hasVisualOverflow")) : t1) && _this._animated_size$_clipBehavior !== C.Clip_0; } else t1 = false; if (t1) { t1 = _this._box$_size; t2 = t1._dx; t1 = t1._dy; _this._animated_size$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(_this.get$_needsCompositing(), offset, new P.Rect(0, 0, 0 + t2, 0 + t1), T.RenderShiftedBox.prototype.get$paint.call(_this), _this._animated_size$_clipBehavior, _this._animated_size$_clipRectLayer); } else { _this._animated_size$_clipRectLayer = null; _this.super$RenderShiftedBox$paint(context, offset); } } }; F.RenderAnimatedSize_closure.prototype = { call$0: function() { var t1 = this.$this; if (t1.get$_animated_size$_controller().get$_animation_controller$_value() != t1._animated_size$_lastValue) t1.markNeedsLayout$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.RendererBinding.prototype = { get$_pipelineOwner: function() { var t1 = this.RendererBinding___RendererBinding__pipelineOwner; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pipelineOwner")) : t1; }, handleMetricsChanged$0: function() { var t1 = this.get$_pipelineOwner()._rootNode; t1.toString; t1.set$configuration(this.createViewConfiguration$0()); this.scheduleForcedFrame$0(); }, handlePlatformBrightnessChanged$0: function() { }, createViewConfiguration$0: function() { var t1 = $.$get$window(), devicePixelRatio = t1._debugDevicePixelRatio; if (devicePixelRatio == null) devicePixelRatio = H.EnginePlatformDispatcher_browserDevicePixelRatio(); return new A.ViewConfiguration0(t1.get$physicalSize().$div(0, devicePixelRatio), devicePixelRatio); }, _handleSemanticsEnabledChanged$0: function() { var t1, _this = this; if ($.$get$window().platformDispatcher._configuration.semanticsEnabled) { if (_this.RendererBinding__semanticsHandle == null) _this.RendererBinding__semanticsHandle = _this.get$_pipelineOwner().ensureSemantics$0(); } else { t1 = _this.RendererBinding__semanticsHandle; if (t1 != null) t1.dispose$0(0); _this.RendererBinding__semanticsHandle = null; } }, setSemanticsEnabled$1: function(enabled) { var t1, _this = this; if (enabled) { if (_this.RendererBinding__semanticsHandle == null) _this.RendererBinding__semanticsHandle = _this.get$_pipelineOwner().ensureSemantics$0(); } else { t1 = _this.RendererBinding__semanticsHandle; if (t1 != null) t1.dispose$0(0); _this.RendererBinding__semanticsHandle = null; } }, _handleWebFirstFrame$1: function(_) { C.MethodChannel_NIe._invokeMethod$1$3$arguments$missingOk("first-frame", null, false, type$.void); }, _handleSemanticsAction$3: function(id, action, args) { var t1 = this.get$_pipelineOwner()._semanticsOwner; if (t1 != null) t1.performAction$3(id, action, null); }, _handleSemanticsOwnerCreated$0: function() { var t2, t1 = this.get$_pipelineOwner()._rootNode; t1.toString; t2 = type$.nullable_PipelineOwner; t2._as(B.AbstractNode.prototype.get$owner.call(t1))._nodesNeedingSemantics.add$1(0, t1); t2._as(B.AbstractNode.prototype.get$owner.call(t1)).requestVisualUpdate$0(); }, _handleSemanticsOwnerDisposed$0: function() { this.get$_pipelineOwner()._rootNode.clearSemantics$0(); }, _handlePersistentFrameCallback$1: function(timeStamp) { this.drawFrame$0(); this._scheduleMouseTrackerUpdate$0(); }, _scheduleMouseTrackerUpdate$0: function() { $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new N.RendererBinding__scheduleMouseTrackerUpdate_closure(this)); }, allowFirstFrame$0: function() { --this.RendererBinding__firstFrameDeferredCount; if (!this.RendererBinding__firstFrameSent) this.scheduleWarmUpFrame$0(); }, drawFrame$0: function() { var _this = this; _this.get$_pipelineOwner().flushLayout$0(); _this.get$_pipelineOwner().flushCompositingBits$0(); _this.get$_pipelineOwner().flushPaint$0(); if (_this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0) { _this.get$_pipelineOwner()._rootNode.compositeFrame$0(); _this.get$_pipelineOwner().flushSemantics$0(); _this.RendererBinding__firstFrameSent = true; } } }; N.RendererBinding__scheduleMouseTrackerUpdate_closure.prototype = { call$1: function(duration) { var t1 = this.$this, t2 = t1.RendererBinding__mouseTracker; t2.toString; t2.updateAllDevices$1(t1.get$_pipelineOwner()._rootNode.get$hitTestMouseTrackers()); }, $signature: 28 }; S.BoxConstraints.prototype = { copyWith$4$maxHeight$maxWidth$minHeight$minWidth: function(maxHeight, maxWidth, minHeight, minWidth) { var _this = this, t1 = minWidth == null ? _this.minWidth : minWidth, t2 = maxWidth == null ? _this.maxWidth : maxWidth, t3 = minHeight == null ? _this.minHeight : minHeight; return new S.BoxConstraints(t1, t2, t3, maxHeight == null ? _this.maxHeight : maxHeight); }, copyWith$2$minHeight$minWidth: function(minHeight, minWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, null, minHeight, minWidth); }, copyWith$2$maxWidth$minWidth: function(maxWidth, minWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, maxWidth, null, minWidth); }, copyWith$2$maxHeight$minHeight: function(maxHeight, minHeight) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(maxHeight, null, minHeight, null); }, copyWith$1$maxHeight: function(maxHeight) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(maxHeight, null, null, null); }, copyWith$1$maxWidth: function(maxWidth) { return this.copyWith$4$maxHeight$maxWidth$minHeight$minWidth(null, maxWidth, null, null); }, deflate$1: function(edges) { var _this = this, horizontal = edges.get$horizontal(), vertical = edges.get$_top(edges) + edges.get$_bottom(edges), deflatedMinWidth = Math.max(0, _this.minWidth - horizontal), deflatedMinHeight = Math.max(0, _this.minHeight - vertical); return new S.BoxConstraints(deflatedMinWidth, Math.max(deflatedMinWidth, _this.maxWidth - horizontal), deflatedMinHeight, Math.max(deflatedMinHeight, _this.maxHeight - vertical)); }, loosen$0: function() { return new S.BoxConstraints(0, this.maxWidth, 0, this.maxHeight); }, enforce$1: function(constraints) { var t4, _this = this, t1 = constraints.minWidth, t2 = constraints.maxWidth, t3 = J.clamp$2$n(_this.minWidth, t1, t2); t2 = J.clamp$2$n(_this.maxWidth, t1, t2); t1 = constraints.minHeight; t4 = constraints.maxHeight; return new S.BoxConstraints(t3, t2, J.clamp$2$n(_this.minHeight, t1, t4), J.clamp$2$n(_this.maxHeight, t1, t4)); }, tighten$2$height$width: function(height, width) { var t5, t6, _this = this, t1 = width == null, t2 = _this.minWidth, t3 = t1 ? t2 : C.JSNumber_methods.clamp$2(width, t2, _this.maxWidth), t4 = _this.maxWidth; t1 = t1 ? t4 : C.JSNumber_methods.clamp$2(width, t2, t4); t2 = height == null; t4 = _this.minHeight; t5 = t2 ? t4 : C.JSNumber_methods.clamp$2(height, t4, _this.maxHeight); t6 = _this.maxHeight; return new S.BoxConstraints(t3, t1, t5, t2 ? t6 : C.JSNumber_methods.clamp$2(height, t4, t6)); }, tighten$1$height: function(height) { return this.tighten$2$height$width(height, null); }, tighten$1$width: function(width) { return this.tighten$2$height$width(null, width); }, constrain$1: function(size) { var _this = this; return new P.Size(J.clamp$2$n(size._dx, _this.minWidth, _this.maxWidth), J.clamp$2$n(size._dy, _this.minHeight, _this.maxHeight)); }, constrainSizeAndAttemptToPreserveAspectRatio$1: function(size) { var width1, height, aspectRatio, height0, height1, _this = this, width = _this.minWidth, width0 = _this.maxWidth; if (width >= width0 && _this.minHeight >= _this.maxHeight) return new P.Size(C.JSInt_methods.clamp$2(0, width, width0), C.JSInt_methods.clamp$2(0, _this.minHeight, _this.maxHeight)); width1 = size._dx; height = size._dy; aspectRatio = width1 / height; if (width1 > width0) { height = width0 / aspectRatio; width1 = width0; } height0 = _this.maxHeight; if (height > height0) { width1 = height0 * aspectRatio; height = height0; } if (width1 < width) { height = width / aspectRatio; width1 = width; } height1 = _this.minHeight; if (height < height1) { width1 = height1 * aspectRatio; height = height1; } return new P.Size(C.JSNumber_methods.clamp$2(width1, width, width0), C.JSNumber_methods.clamp$2(height, height1, height0)); }, get$isTight: function() { var _this = this; return _this.minWidth >= _this.maxWidth && _this.minHeight >= _this.maxHeight; }, $mul: function(_, factor) { var _this = this; return new S.BoxConstraints(_this.minWidth * factor, _this.maxWidth * factor, _this.minHeight * factor, _this.maxHeight * factor); }, $div: function(_, factor) { var _this = this; return new S.BoxConstraints(_this.minWidth / factor, _this.maxWidth / factor, _this.minHeight / factor, _this.maxHeight / factor); }, get$isNormalized: function() { var _this = this, t1 = _this.minWidth; if (t1 >= 0) if (t1 <= _this.maxWidth) { t1 = _this.minHeight; t1 = t1 >= 0 && t1 <= _this.maxHeight; } else t1 = false; else t1 = false; return t1; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof S.BoxConstraints && other.minWidth == _this.minWidth && other.maxWidth == _this.maxWidth && other.minHeight == _this.minHeight && other.maxHeight == _this.maxHeight; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.minWidth, _this.maxWidth, _this.minHeight, _this.maxHeight, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var t2, width, height, _this = this, annotation = _this.get$isNormalized() ? "" : "; NOT NORMALIZED", t1 = _this.minWidth; if (t1 === 1 / 0 && _this.minHeight === 1 / 0) return "BoxConstraints(biggest" + annotation + ")"; if (t1 === 0 && _this.maxWidth === 1 / 0 && _this.minHeight === 0 && _this.maxHeight === 1 / 0) return "BoxConstraints(unconstrained" + annotation + ")"; t2 = new S.BoxConstraints_toString_describe(); width = t2.call$3(t1, _this.maxWidth, "w"); height = t2.call$3(_this.minHeight, _this.maxHeight, "h"); return "BoxConstraints(" + H.S(width) + ", " + H.S(height) + annotation + ")"; } }; S.BoxConstraints_toString_describe.prototype = { call$3: function(min, max, dim) { if (min == max) return dim + "=" + J.toStringAsFixed$1$n(min, 1); return J.toStringAsFixed$1$n(min, 1) + "<=" + dim + "<=" + J.toStringAsFixed$1$n(max, 1); }, $signature: 2306 }; S.BoxHitTestResult.prototype = { addWithPaintTransform$3$hitTest$position$transform: function(hitTest, position, transform) { if (transform != null) { transform = E.Matrix4_tryInvert(F.PointerEvent_removePerspectiveTransform(transform)); if (transform == null) return false; } return this.addWithRawTransform$3$hitTest$position$transform(hitTest, position, transform); }, addWithPaintOffset$3$hitTest$offset$position: function(hitTest, offset, position) { var isHit, t1 = offset == null, transformedPosition = t1 ? position : position.$sub(0, offset); t1 = !t1; if (t1) this._localTransforms.push(new O._OffsetTransformPart(new P.Offset(-offset._dx, -offset._dy))); isHit = hitTest.call$2(this, transformedPosition); if (t1) this.popTransform$0(); return isHit; }, addWithRawTransform$3$hitTest$position$transform: function(hitTest, position, transform) { var isHit, t1 = transform == null, transformedPosition = t1 ? position : T.MatrixUtils_transformPoint(transform, position); t1 = !t1; if (t1) this._localTransforms.push(new O._MatrixTransformPart(transform)); isHit = hitTest.call$2(this, transformedPosition); if (t1) this.popTransform$0(); return isHit; }, addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform: function(hitTest, paintOffset, paintTransform) { var isHit, _this = this; if (paintOffset != null) _this._localTransforms.push(new O._OffsetTransformPart(new P.Offset(-paintOffset._dx, -paintOffset._dy))); else { paintTransform.toString; paintTransform = E.Matrix4_tryInvert(F.PointerEvent_removePerspectiveTransform(paintTransform)); paintTransform.toString; _this._localTransforms.push(new O._MatrixTransformPart(paintTransform)); } isHit = hitTest.call$1(_this); _this.popTransform$0(); return isHit; }, addWithOutOfBandPosition$2$hitTest$paintTransform: function(hitTest, paintTransform) { return this.addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform(hitTest, null, paintTransform); }, addWithOutOfBandPosition$2$hitTest$paintOffset: function(hitTest, paintOffset) { return this.addWithOutOfBandPosition$3$hitTest$paintOffset$paintTransform(hitTest, paintOffset, null); } }; S.BoxHitTestEntry.prototype = { get$target: function(_) { return type$.RenderBox._as(this.target); }, toString$0: function(_) { return "#" + Y.shortHash(type$.RenderBox._as(this.target)) + "@" + H.S(this.localPosition); } }; S.BoxParentData.prototype = { toString$0: function(_) { return "offset=" + H.S(this.offset); } }; S.ContainerBoxParentData.prototype = {}; S._IntrinsicDimension.prototype = { toString$0: function(_) { return this._box$_name; } }; S._IntrinsicDimensionsCacheEntry.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof S._IntrinsicDimensionsCacheEntry && other.dimension === this.dimension && other.argument == this.argument; }, get$hashCode: function(_) { return P.hashValues(this.dimension, this.argument, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; S.RenderBox.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof S.BoxParentData)) child.parentData = new S.BoxParentData(C.Offset_0_0); }, _computeIntrinsicDimension$3: function(dimension, argument, computer) { var t1 = this._cachedIntrinsicDimensions; if (t1 == null) t1 = this._cachedIntrinsicDimensions = P.LinkedHashMap_LinkedHashMap$_empty(type$._IntrinsicDimensionsCacheEntry, type$.double); return t1.putIfAbsent$2(0, new S._IntrinsicDimensionsCacheEntry(dimension, argument), new S.RenderBox__computeIntrinsicDimension_closure(computer, argument)); }, computeMinIntrinsicWidth$1: function(height) { return 0; }, computeMaxIntrinsicWidth$1: function(height) { return 0; }, computeMinIntrinsicHeight$1: function(width) { return 0; }, computeMaxIntrinsicHeight$1: function(width) { return 0; }, getDryLayout$1: function(constraints) { var t1 = this._cachedDryLayoutSizes; if (t1 == null) t1 = this._cachedDryLayoutSizes = P.LinkedHashMap_LinkedHashMap$_empty(type$.BoxConstraints, type$.Size); return t1.putIfAbsent$2(0, constraints, new S.RenderBox_getDryLayout_closure(this, constraints)); }, computeDryLayout$1: function(constraints) { return C.Size_0_0; }, get$semanticBounds: function() { var t1 = this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, getDistanceToBaseline$2$onlyReal: function(baseline, onlyReal) { var result = this.getDistanceToActualBaseline$1(baseline); if (result == null && !onlyReal) return this._box$_size._dy; return result; }, getDistanceToBaseline$1: function(baseline) { return this.getDistanceToBaseline$2$onlyReal(baseline, false); }, getDistanceToActualBaseline$1: function(baseline) { var _this = this, t1 = _this._cachedBaselines; if (t1 == null) t1 = _this._cachedBaselines = P.LinkedHashMap_LinkedHashMap$_empty(type$.TextBaseline, type$.nullable_double); t1.putIfAbsent$2(0, baseline, new S.RenderBox_getDistanceToActualBaseline_closure(_this, baseline)); return _this._cachedBaselines.$index(0, baseline); }, computeDistanceToActualBaseline$1: function(baseline) { return null; }, get$constraints: function() { return type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this)); }, markNeedsLayout$0: function() { var _this = this, t1 = _this._cachedBaselines; if (!(t1 != null && t1.get$isNotEmpty(t1))) { t1 = _this._cachedIntrinsicDimensions; if (!(t1 != null && t1.get$isNotEmpty(t1))) { t1 = _this._cachedDryLayoutSizes; t1 = t1 != null && t1.get$isNotEmpty(t1); } else t1 = true; } else t1 = true; if (t1) { t1 = _this._cachedBaselines; if (t1 != null) t1.clear$0(0); t1 = _this._cachedIntrinsicDimensions; if (t1 != null) t1.clear$0(0); t1 = _this._cachedDryLayoutSizes; if (t1 != null) t1.clear$0(0); if (_this.get$parent(_this) instanceof K.RenderObject) { _this.markParentNeedsLayout$0(); return; } } _this.super$RenderObject$markNeedsLayout(); }, performResize$0: function() { this._box$_size = this.computeDryLayout$1(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this))); }, performLayout$0: function() { }, hitTest$2$position: function(result, position) { var t1, _this = this; if (_this._box$_size.contains$1(0, position)) if (_this.hitTestChildren$2$position(result, position) || _this.hitTestSelf$1(position)) { t1 = new S.BoxHitTestEntry(position, _this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); return true; } return false; }, hitTestSelf$1: function(position) { return false; }, hitTestChildren$2$position: function(result, position) { return false; }, applyPaintTransform$2: function(child, transform) { var offset, t1 = child.parentData; t1.toString; offset = type$.BoxParentData._as(t1).offset; transform.translate$2(0, offset._dx, offset._dy); }, globalToLocal$1: function(point) { var n, t1, i, d, t2, t3, s, transform = this.getTransformTo$1(0, null); if (transform.copyInverse$1(transform) === 0) return C.Offset_0_0; n = new E.Vector3(new Float64Array(3)); n.setValues$3(0, 0, 1); t1 = new E.Vector3(new Float64Array(3)); t1.setValues$3(0, 0, 0); i = transform.perspectiveTransform$1(t1); t1 = new E.Vector3(new Float64Array(3)); t1.setValues$3(0, 0, 1); d = transform.perspectiveTransform$1(t1).$sub(0, i); t1 = point._dx; t2 = point._dy; t3 = new E.Vector3(new Float64Array(3)); t3.setValues$3(t1, t2, 0); s = transform.perspectiveTransform$1(t3); t3 = s.$sub(0, d.scaled$1(n.dot$1(s) / n.dot$1(d)))._v3storage; return new P.Offset(t3[0], t3[1]); }, get$paintBounds: function() { var t1 = this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, handleEvent$2: function($event, entry) { this.super$RenderObject$handleEvent($event, entry); } }; S.RenderBox__computeIntrinsicDimension_closure.prototype = { call$0: function() { return this.computer.call$1(this.argument); }, $signature: 116 }; S.RenderBox_getDryLayout_closure.prototype = { call$0: function() { return this.$this.computeDryLayout$1(this.constraints); }, $signature: 2321 }; S.RenderBox_getDistanceToActualBaseline_closure.prototype = { call$0: function() { return this.$this.computeDistanceToActualBaseline$1(this.baseline); }, $signature: 2397 }; S.RenderBoxContainerDefaultsMixin.prototype = { defaultComputeDistanceToFirstActualBaseline$1: function(baseline) { var t1, childParentData, result, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1?"); child != null;) { childParentData = t1._as(child.parentData); result = child.getDistanceToActualBaseline$1(baseline); if (result != null) return result + childParentData.offset._dy; child = childParentData.ContainerParentDataMixin_nextSibling; } return null; }, defaultComputeDistanceToHighestActualBaseline$1: function(baseline) { var t1, result, t2, candidate, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"), result = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); candidate = child.getDistanceToActualBaseline$1(baseline); if (candidate != null) { candidate += t2.offset._dy; result = result != null ? Math.min(result, candidate) : candidate; } child = t2.ContainerParentDataMixin_nextSibling; } return result; }, defaultHitTestChildren$2$position: function(result, position) { var t2, child, _box_0 = {}, t1 = _box_0.child = this.ContainerRenderObjectMixin__lastChild; for (t2 = H._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"); t1 != null; t1 = child) { t1 = t1.parentData; t1.toString; t2._as(t1); if (result.addWithPaintOffset$3$hitTest$offset$position(new S.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure(_box_0, position, t1), t1.offset, position)) return true; child = t1.ContainerParentDataMixin_previousSibling; _box_0.child = child; } return false; }, defaultPaint$2: function(context, offset) { var t1, t2, t3, t4, t5, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("RenderBoxContainerDefaultsMixin.1"), t2 = offset._dx, t3 = offset._dy; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; context.paintChild$2(child, new P.Offset(t5._dx + t2, t5._dy + t3)); child = t4.ContainerParentDataMixin_nextSibling; } }, getChildrenAsList$0: function() { var t2, t3, t1 = H._instanceType(this), result = H.setRuntimeTypeInfo([], t1._eval$1("JSArray")), child = this.ContainerRenderObjectMixin__firstChild; for (t2 = t1._eval$1("RenderBoxContainerDefaultsMixin.1"), t1 = t1._eval$1("RenderBoxContainerDefaultsMixin.0"); child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); result.push(t1._as(child)); child = t3.ContainerParentDataMixin_nextSibling; } return result; } }; S.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure.prototype = { call$2: function(result, transformed) { var t1 = this._box_0.child; t1.toString; transformed.toString; return t1.hitTest$2$position(result, transformed); }, $signature: 96 }; S._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin.prototype = { detach$0: function(_) { this.super$ParentData$detach(0); } }; B.MultiChildLayoutParentData.prototype = { toString$0: function(_) { return this.super$BoxParentData$toString(0) + "; id=" + H.S(this.id); }, get$id: function(receiver) { return this.id; } }; B.MultiChildLayoutDelegate.prototype = { layoutChild$2: function(childId, constraints) { var t1, child = this._idToChild.$index(0, childId); child.layout$2$parentUsesSize(0, constraints, true); t1 = child._box$_size; t1.toString; return t1; }, positionChild$2: function(childId, offset) { var t1 = this._idToChild.$index(0, childId).parentData; t1.toString; type$.MultiChildLayoutParentData._as(t1).offset = offset; }, _callPerformLayout$2: function(size, firstChild) { var childParentData, t1, t2, t3, t4, child, _this = this, previousIdToChild = _this._idToChild; try { _this._idToChild = P.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$.RenderBox); for (t1 = type$.MultiChildLayoutParentData, t2 = firstChild; t2 != null; t2 = child) { t3 = t2.parentData; t3.toString; childParentData = t1._as(t3); t3 = _this._idToChild; t3.toString; t4 = childParentData.id; t4.toString; t3.$indexSet(0, t4, t2); child = childParentData.ContainerParentDataMixin_nextSibling; } _this.performLayout$1(size); } finally { _this._idToChild = previousIdToChild; } }, toString$0: function(_) { return "MultiChildLayoutDelegate"; } }; B.RenderCustomMultiChildLayoutBox.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof B.MultiChildLayoutParentData)) child.parentData = new B.MultiChildLayoutParentData(null, null, C.Offset_0_0); }, set$delegate: function(newDelegate) { var _this = this, t1 = _this._custom_layout$_delegate; if (t1 === newDelegate) return; if (H.getRuntimeType(newDelegate) !== H.getRuntimeType(t1) || newDelegate.shouldRelayout$1(t1)) _this.markNeedsLayout$0(); _this._custom_layout$_delegate = newDelegate; _this._node$_owner != null; }, attach$1: function(owner) { this.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$attach(owner); }, detach$0: function(_) { this.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$detach(0); }, computeMinIntrinsicWidth$1: function(height) { var t1 = S.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1 = S.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1 = S.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1 = S.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight)))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeDryLayout$1: function(constraints) { return constraints.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight))); }, performLayout$0: function() { var _this = this, t1 = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); t1 = t1.constrain$1(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight))); _this._box$_size = t1; _this._custom_layout$_delegate._callPerformLayout$2(t1, _this.ContainerRenderObjectMixin__firstChild); }, paint$2: function(context, offset) { this.defaultPaint$2(context, offset); }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); } }; B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.MultiChildLayoutParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.MultiChildLayoutParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; V.CustomPainter.prototype = { addListener$1: function(_, listener) { var t1 = this._repaint; return t1 == null ? null : t1.addListener$1(0, listener); }, removeListener$1: function(_, listener) { var t1 = this._repaint; return t1 == null ? null : t1.removeListener$1(0, listener); }, get$semanticsBuilder: function() { return null; }, shouldRebuildSemantics$1: function(oldDelegate) { return this.shouldRepaint$1(oldDelegate); }, hitTest$1: function(position) { return null; }, toString$0: function(_) { var t1 = "#" + Y.shortHash(this) + "(", t2 = this._repaint; t2 = t2 == null ? null : t2.toString$0(0); return t1 + (t2 == null ? "" : t2) + ")"; } }; V.CustomPainterSemantics.prototype = {}; V.RenderCustomPaint.prototype = { set$painter: function(value) { var t1 = this._painter; if (t1 == value) return; this._painter = value; this._didUpdatePainter$2(value, t1); }, set$foregroundPainter: function(value) { var t1 = this._foregroundPainter; if (t1 == value) return; this._foregroundPainter = value; this._didUpdatePainter$2(value, t1); }, _didUpdatePainter$2: function(newPainter, oldPainter) { var _this = this, t1 = newPainter == null; if (t1) _this.markNeedsPaint$0(); else if (oldPainter == null || H.getRuntimeType(newPainter) !== H.getRuntimeType(oldPainter) || newPainter.shouldRepaint$1(oldPainter)) _this.markNeedsPaint$0(); if (_this._node$_owner != null) { if (oldPainter != null) oldPainter.removeListener$1(0, _this.get$markNeedsPaint()); if (!t1) newPainter.addListener$1(0, _this.get$markNeedsPaint()); } if (t1) { if (_this._node$_owner != null) _this.markNeedsSemanticsUpdate$0(); } else if (oldPainter == null || H.getRuntimeType(newPainter) !== H.getRuntimeType(oldPainter) || newPainter.shouldRebuildSemantics$1(oldPainter)) _this.markNeedsSemanticsUpdate$0(); }, set$preferredSize: function(value) { if (this._preferredSize.$eq(0, value)) return; this._preferredSize = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dx; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); }, computeMaxIntrinsicWidth$1: function(height) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dx; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); }, computeMinIntrinsicHeight$1: function(width) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dy; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); }, computeMaxIntrinsicHeight$1: function(width) { var t1; if (this.RenderObjectWithChildMixin__child == null) { t1 = this._preferredSize._dy; t1.toString; if (!isFinite(t1)) t1 = 0; return t1; } return this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); }, attach$1: function(owner) { var t1, _this = this; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); t1 = _this._painter; if (t1 != null) t1.addListener$1(0, _this.get$markNeedsPaint()); t1 = _this._foregroundPainter; if (t1 != null) t1.addListener$1(0, _this.get$markNeedsPaint()); }, detach$0: function(_) { var _this = this, t1 = _this._painter; if (t1 != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); t1 = _this._foregroundPainter; if (t1 != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, hitTestChildren$2$position: function(result, position) { var t1 = this._foregroundPainter; if (t1 != null) { t1 = t1.hitTest$1(position); t1 = t1 === true; } else t1 = false; if (t1) return true; return this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, hitTestSelf$1: function(position) { var t1 = this._painter; if (t1 != null) { t1 = t1.hitTest$1(position); t1 = t1 !== false; } else t1 = false; return t1; }, performLayout$0: function() { this.super$RenderProxyBoxMixin$performLayout(); this.markNeedsSemanticsUpdate$0(); }, computeSizeForNoChild$1: function(constraints) { return constraints.constrain$1(this._preferredSize); }, _paintWithPainter$3: function(canvas, offset, painter) { var t1; canvas.save$0(0); if (!offset.$eq(0, C.Offset_0_0)) canvas.translate$2(0, offset._dx, offset._dy); t1 = this._box$_size; t1.toString; painter.paint$2(canvas, t1); canvas.restore$0(0); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this._painter != null) { t1 = context.get$canvas(context); t2 = _this._painter; t2.toString; _this._paintWithPainter$3(t1, offset, t2); _this._setRasterCacheHints$1(context); } _this.super$RenderProxyBoxMixin$paint(context, offset); if (_this._foregroundPainter != null) { t1 = context.get$canvas(context); t2 = _this._foregroundPainter; t2.toString; _this._paintWithPainter$3(t1, offset, t2); _this._setRasterCacheHints$1(context); } }, _setRasterCacheHints$1: function(context) { }, describeSemanticsConfiguration$1: function(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._painter; _this._backgroundSemanticsBuilder = t1 == null ? null : t1.get$semanticsBuilder(); t1 = _this._foregroundPainter; t1 = t1 == null ? null : t1.get$semanticsBuilder(); _this._foregroundSemanticsBuilder = t1; config._isSemanticBoundary = _this._backgroundSemanticsBuilder != null || t1 != null; }, assembleSemanticsNode$3: function(node, config, children) { var t2, backgroundSemantics, foregroundSemantics, hasBackgroundSemantics, hasForegroundSemantics, _this = this, t1 = _this._backgroundSemanticsBuilder; if (t1 != null) { t2 = _this._box$_size; t2.toString; backgroundSemantics = t1.call$1(t2); } else backgroundSemantics = C.List_empty17; _this._backgroundSemanticsNodes = V.RenderCustomPaint__updateSemanticsChildren(_this._backgroundSemanticsNodes, backgroundSemantics); t1 = _this._foregroundSemanticsBuilder; if (t1 != null) { t2 = _this._box$_size; t2.toString; foregroundSemantics = t1.call$1(t2); } else foregroundSemantics = C.List_empty17; _this._foregroundSemanticsNodes = V.RenderCustomPaint__updateSemanticsChildren(_this._foregroundSemanticsNodes, foregroundSemantics); t1 = _this._backgroundSemanticsNodes; hasBackgroundSemantics = t1 != null && !t1.get$isEmpty(t1); t1 = _this._foregroundSemanticsNodes; hasForegroundSemantics = t1 != null && !t1.get$isEmpty(t1); t1 = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode); if (hasBackgroundSemantics) { t2 = _this._backgroundSemanticsNodes; t2.toString; C.JSArray_methods.addAll$1(t1, t2); } C.JSArray_methods.addAll$1(t1, children); if (hasForegroundSemantics) { t2 = _this._foregroundSemanticsNodes; t2.toString; C.JSArray_methods.addAll$1(t1, t2); } _this.super$RenderObject$assembleSemanticsNode(node, config, t1); }, clearSemantics$0: function() { this.super$RenderObject$clearSemantics(); this._foregroundSemanticsNodes = this._backgroundSemanticsNodes = null; } }; V.RenderCustomPaint__updateSemanticsChildren__oldKeyedChildren_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._oldKeyedChildren === $) return t2._oldKeyedChildren = t1; else throw H.wrapException(H.LateError$localAI("oldKeyedChildren")); }, $signature: 2398 }; T.DebugOverflowIndicatorMixin.prototype = {}; D.TextSelectionPoint.prototype = { toString$0: function(_) { var _this = this; switch (_this.direction) { case C.TextDirection_1: return _this.point.toString$0(0) + "-ltr"; case C.TextDirection_0: return _this.point.toString$0(0) + "-rtl"; case null: return _this.point.toString$0(0); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; D.RenderEditable.prototype = { _updateForegroundPainter$1: function(newPainter) { var foregroundRenderObject, _this = this, effectivePainter = _this.get$_builtInForegroundPainters(), t1 = _this._foregroundRenderObject; if (t1 == null) { foregroundRenderObject = D._RenderEditableCustomPaint$(effectivePainter); _this.adoptChild$1(foregroundRenderObject); _this._foregroundRenderObject = foregroundRenderObject; } else t1.set$painter(effectivePainter); _this._editable$_foregroundPainter = newPainter; }, _updatePainter$1: function(newPainter) { var backgroundRenderObject, _this = this, effectivePainter = _this.get$_builtInPainters(), t1 = _this._backgroundRenderObject; if (t1 == null) { backgroundRenderObject = D._RenderEditableCustomPaint$(effectivePainter); _this.adoptChild$1(backgroundRenderObject); _this._backgroundRenderObject = backgroundRenderObject; } else t1.set$painter(effectivePainter); _this._editable$_painter = newPainter; }, get$_caretPainter: function() { var _this = this, t1 = _this.__RenderEditable__caretPainter; if (t1 === $) { t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t1 = new D._FloatingCursorPainter(_this.get$_onCaretChanged(), t1, C.Offset_0_0, new P.LinkedList(type$.LinkedList__ListenerEntry)); if (_this.__RenderEditable__caretPainter === $) _this.__RenderEditable__caretPainter = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_caretPainter")); } return t1; }, get$_builtInForegroundPainters: function() { var _this = this, t1 = _this._cachedBuiltInForegroundPainters; if (t1 == null) { t1 = H.setRuntimeTypeInfo([], type$.JSArray_RenderEditablePainter); if (_this._paintCursorOnTop) t1.push(_this.get$_caretPainter()); t1 = _this._cachedBuiltInForegroundPainters = new D._CompositeRenderEditablePainter(t1, new P.LinkedList(type$.LinkedList__ListenerEntry)); } return t1; }, get$_builtInPainters: function() { var _this = this, t1 = _this._cachedBuiltInPainters; if (t1 == null) { t1 = H.setRuntimeTypeInfo([_this._autocorrectHighlightPainter, _this._selectionPainter], type$.JSArray_RenderEditablePainter); if (!_this._paintCursorOnTop) t1.push(_this.get$_caretPainter()); t1 = _this._cachedBuiltInPainters = new D._CompositeRenderEditablePainter(t1, new P.LinkedList(type$.LinkedList__ListenerEntry)); } return t1; }, _onCaretChanged$1: function(caretRect) { if (!J.$eq$(this._lastCaretRect, caretRect)) this.onCaretChanged.call$1(caretRect); this._lastCaretRect = caretRect; }, set$textHeightBehavior: function(_, value) { return; }, set$textWidthBasis: function(value) { var t1 = this._textPainter; if (t1._textWidthBasis === value) return; t1.set$textWidthBasis(value); this.markNeedsTextLayout$0(); }, set$devicePixelRatio: function(_, value) { if (this._devicePixelRatio === value) return; this._devicePixelRatio = value; this.markNeedsTextLayout$0(); }, set$obscuringCharacter: function(value) { if (this._obscuringCharacter === value) return; this._obscuringCharacter = value; this.markNeedsLayout$0(); }, set$obscureText: function(value) { if (this._obscureText === value) return; this._obscureText = value; this.markNeedsSemanticsUpdate$0(); }, _setSelection$2: function(nextSelection, cause) { var textLength, t1, _this = this; if (nextSelection.get$isValid()) { textLength = _this.textSelectionDelegate._widget.controller._change_notifier$_value.text.length; nextSelection = nextSelection.copyWith$2$baseOffset$extentOffset(Math.min(H.checkNum(nextSelection.baseOffset), textLength), Math.min(H.checkNum(nextSelection.extentOffset), textLength)); } _this._handleSelectionChange$2(nextSelection, cause); t1 = _this.textSelectionDelegate._widget.controller._change_notifier$_value.copyWith$1$selection(nextSelection); _this.textSelectionDelegate.userUpdateTextEditingValue$2(t1, cause); }, _handleSelectionChange$2: function(nextSelection, cause) { var focusingEmpty = nextSelection.baseOffset === 0 && nextSelection.extentOffset === 0 && !this._hasFocus; if (nextSelection.$eq(0, this._selection) && cause !== C.SelectionChangedCause_4 && !focusingEmpty) return; }, _editable$_handleKeyEvent$1: function(keyEvent) { return; }, _extendSelectionToEnd$1: function(cause) { var _this = this; if (_this._selection.extentOffset === _this.get$_editable$_plainText().length) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionToEnd$1(cause); _this._setSelection$2(_this._selection.copyWith$1$extentOffset(_this.get$_editable$_plainText().length), cause); }, _extendSelectionToStart$1: function(cause) { var _this = this; if (_this._selection.extentOffset === 0) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionToStart$1(cause); _this._setSelection$2(_this._selection.copyWith$1$extentOffset(0), cause); }, _getTextPositionVertical$2: function(textOffset, verticalOffset) { var caretOffset, t1 = this._textPainter; t1._computeCaretMetrics$2(new P.TextPosition(textOffset, C.TextAffinity_1), this.get$_caretPrototype()); caretOffset = t1.get$_caretMetrics().offset; return t1._text_painter$_paragraph.getPositionForOffset$1(new P.Offset(caretOffset._dx + 0, caretOffset._dy + verticalOffset)); }, _getTextPositionAbove$1: function(offset) { return this._getTextPositionVertical$2(offset, -0.5 * this._textPainter.get$preferredLineHeight()); }, _getTextPositionBelow$1: function(offset) { return this._getTextPositionVertical$2(offset, 1.5 * this._textPainter.get$preferredLineHeight()); }, extendSelectionDown$1: function(cause) { var positionBelow, t3, t4, _this = this, t1 = {}, t2 = _this._selection; if (t2.start == t2.end && t2.extentOffset >= _this.get$_editable$_plainText().length) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionDown$1(cause); positionBelow = _this._getTextPositionBelow$1(_this._selection.extentOffset); t1._nextSelection = $; t2 = new D.RenderEditable_extendSelectionDown__nextSelection_get(t1); t1 = new D.RenderEditable_extendSelectionDown__nextSelection_set(t1); t3 = positionBelow.offset; t4 = _this._selection; if (t3 == t4.extentOffset) { t1.call$1(t4.copyWith$1$extentOffset(_this.get$_editable$_plainText().length)); _this._wasSelectingVerticallyWithKeyboard = true; } else if (_this._wasSelectingVerticallyWithKeyboard) { t1.call$1(t4.copyWith$1$extentOffset(_this._cursorResetLocation)); _this._wasSelectingVerticallyWithKeyboard = false; } else { t1.call$1(t4.copyWith$1$extentOffset(t3)); _this._cursorResetLocation = t2.call$0().extentOffset; } _this._setSelection$2(t2.call$0(), cause); }, expandSelectionToEnd$1: function(cause) { var t1, _this = this; if (_this._selection.extentOffset === _this.get$_editable$_plainText().length) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionToEnd$1(cause); t1 = _this._selection; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, Math.max(0, Math.min(H.checkNum(t1.baseOffset), H.checkNum(t1.extentOffset))), _this.get$_editable$_plainText().length, false), cause); }, extendSelectionLeft$1: function(cause) { var nextSelection, t1, _this = this; if (!_this.get$selectionEnabled()) return _this.moveSelectionLeft$1(cause); nextSelection = D.RenderEditable__extendGivenSelectionLeft(_this._selection, _this.get$_editable$_plainText()); if (nextSelection.$eq(0, _this._selection)) return; t1 = _this._selection; _this._cursorResetLocation = _this._cursorResetLocation - (t1.extentOffset - nextSelection.extentOffset); _this._setSelection$2(nextSelection, cause); }, extendSelectionLeftByLine$1: function(cause) { var selectedLine, t2, t3, t4, _this = this, t1 = {}; if (!_this.get$selectionEnabled()) return _this.moveSelectionLeftByLine$1(cause); selectedLine = _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_previousCharacter(_this._selection.extentOffset, _this.get$_editable$_plainText(), false), C.TextAffinity_1)); t1._nextSelection = $; t2 = new D.RenderEditable_extendSelectionLeftByLine__nextSelection_set(t1); t3 = _this._selection; t4 = t3.baseOffset; if (t3.extentOffset > t4) t2.call$1(t3.copyWith$1$extentOffset(t4)); else t2.call$1(t3.copyWith$1$extentOffset(selectedLine.baseOffset)); _this._setSelection$2(new D.RenderEditable_extendSelectionLeftByLine__nextSelection_get(t1).call$0(), cause); }, extendSelectionRight$1: function(cause) { var nextSelection, t1, _this = this; if (!_this.get$selectionEnabled()) return _this.moveSelectionRight$1(cause); nextSelection = D.RenderEditable__extendGivenSelectionRight(_this._selection, _this.get$_editable$_plainText()); if (nextSelection.$eq(0, _this._selection)) return; t1 = _this._selection; _this._cursorResetLocation = _this._cursorResetLocation + (nextSelection.extentOffset - t1.extentOffset); _this._setSelection$2(nextSelection, cause); }, extendSelectionRightByLine$1: function(cause) { var selectedLine, t2, t3, t4, _this = this, t1 = {}; if (!_this.get$selectionEnabled()) return _this.moveSelectionRightByLine$1(cause); selectedLine = _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_nextCharacter(_this._selection.extentOffset, _this.get$_editable$_plainText(), false), C.TextAffinity_1)); t1._nextSelection = $; t2 = new D.RenderEditable_extendSelectionRightByLine__nextSelection_set(t1); t3 = _this._selection; t4 = t3.baseOffset; if (t3.extentOffset < t4) t2.call$1(t3.copyWith$1$extentOffset(t4)); else t2.call$1(t3.copyWith$1$extentOffset(selectedLine.extentOffset)); _this._setSelection$2(new D.RenderEditable_extendSelectionRightByLine__nextSelection_get(t1).call$0(), cause); }, extendSelectionUp$1: function(cause) { var positionAbove, t3, t4, t5, _this = this, t1 = {}, t2 = _this._selection; if (t2.start == t2.end && t2.extentOffset <= 0) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionUp$1(cause); positionAbove = _this._getTextPositionAbove$1(_this._selection.extentOffset); t1._nextSelection = $; t2 = new D.RenderEditable_extendSelectionUp__nextSelection_get(t1); t1 = new D.RenderEditable_extendSelectionUp__nextSelection_set(t1); t3 = positionAbove.offset; t4 = _this._selection; if (t3 == t4.extentOffset) { t1.call$1(t4.copyWith$1$extentOffset(0)); _this._wasSelectingVerticallyWithKeyboard = true; } else { t5 = t4.baseOffset; if (_this._wasSelectingVerticallyWithKeyboard) { t1.call$1(t4.copyWith$2$baseOffset$extentOffset(t5, _this._cursorResetLocation)); _this._wasSelectingVerticallyWithKeyboard = false; } else { t1.call$1(t4.copyWith$2$baseOffset$extentOffset(t5, t3)); _this._cursorResetLocation = t2.call$0().extentOffset; } } _this._setSelection$2(t2.call$0(), cause); }, expandSelectionToStart$1: function(cause) { var t1, _this = this; if (_this._selection.extentOffset === 0) return; if (!_this.get$selectionEnabled()) return _this.moveSelectionToStart$1(cause); t1 = _this._selection; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, Math.max(0, Math.max(H.checkNum(t1.baseOffset), H.checkNum(t1.extentOffset))), 0, false), cause); }, expandSelectionLeftByLine$1: function(cause) { var t2, selectedLine, t3, t4, _this = this, t1 = {}; if (!_this.get$selectionEnabled()) return _this.moveSelectionLeftByLine$1(cause); t2 = _this._selection; selectedLine = _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_previousCharacter(Math.min(H.checkNum(t2.baseOffset), H.checkNum(t2.extentOffset)), _this.get$_editable$_plainText(), false), C.TextAffinity_1)); t1._nextSelection = $; t2 = new D.RenderEditable_expandSelectionLeftByLine__nextSelection_set(t1); t3 = _this._selection; t4 = selectedLine.baseOffset; if (t3.extentOffset <= t3.baseOffset) t2.call$1(t3.copyWith$1$extentOffset(t4)); else t2.call$1(t3.copyWith$1$baseOffset(t4)); _this._setSelection$2(new D.RenderEditable_expandSelectionLeftByLine__nextSelection_get(t1).call$0(), cause); }, extendSelectionLeftByWord$3: function(cause, includeWhitespace, stopAtReversal) { var nextSelection, _this = this; if (_this._obscureText) return _this._extendSelectionToStart$1(cause); nextSelection = D.RenderEditable__extendGivenSelectionLeftByWord(_this._textPainter, _this._selection, false, stopAtReversal); if (nextSelection.$eq(0, _this._selection)) return; _this._setSelection$2(nextSelection, cause); }, extendSelectionLeftByWord$2: function(cause, includeWhitespace) { return this.extendSelectionLeftByWord$3(cause, includeWhitespace, false); }, extendSelectionRightByWord$3: function(cause, includeWhitespace, stopAtReversal) { var nextSelection, _this = this; if (_this._obscureText) return _this._extendSelectionToEnd$1(cause); nextSelection = D.RenderEditable__extendGivenSelectionRightByWord(_this._textPainter, _this._selection, false, stopAtReversal); if (nextSelection.$eq(0, _this._selection)) return; _this._setSelection$2(nextSelection, cause); }, extendSelectionRightByWord$2: function(cause, includeWhitespace) { return this.extendSelectionRightByWord$3(cause, includeWhitespace, false); }, expandSelectionRightByLine$1: function(cause) { var t2, selectedLine, t3, t4, _this = this, t1 = {}; if (!_this.get$selectionEnabled()) return _this.moveSelectionRightByLine$1(cause); t2 = _this._selection; selectedLine = _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_nextCharacter(Math.max(H.checkNum(t2.baseOffset), H.checkNum(t2.extentOffset)), _this.get$_editable$_plainText(), false), C.TextAffinity_1)); t1._nextSelection = $; t2 = new D.RenderEditable_expandSelectionRightByLine__nextSelection_set(t1); t3 = _this._selection; t4 = selectedLine.extentOffset; if (t3.extentOffset >= t3.baseOffset) t2.call$1(t3.copyWith$1$extentOffset(t4)); else t2.call$1(t3.copyWith$1$baseOffset(t4)); _this._setSelection$2(new D.RenderEditable_expandSelectionRightByLine__nextSelection_get(t1).call$0(), cause); }, moveSelectionDown$1: function(cause) { var positionBelow, t3, _this = this, t1 = {}, t2 = _this._selection; if (t2.start == t2.end && t2.extentOffset >= _this.get$_editable$_plainText().length) return; positionBelow = _this._getTextPositionBelow$1(_this._selection.extentOffset); t1._nextSelection = $; t2 = new D.RenderEditable_moveSelectionDown__nextSelection_get(t1); t1 = new D.RenderEditable_moveSelectionDown__nextSelection_set(t1); t3 = _this._selection; if (positionBelow.offset == t3.extentOffset) { t1.call$1(t3.copyWith$2$baseOffset$extentOffset(_this.get$_editable$_plainText().length, _this.get$_editable$_plainText().length)); _this._wasSelectingVerticallyWithKeyboard = false; } else { t1.call$1(X.TextSelection$fromPosition(positionBelow)); _this._cursorResetLocation = t2.call$0().extentOffset; } _this._setSelection$2(t2.call$0(), cause); }, moveSelectionLeft$1: function(cause) { var _this = this, nextSelection = D.RenderEditable__moveGivenSelectionLeft(_this._selection, _this.get$_editable$_plainText()); if (nextSelection.$eq(0, _this._selection)) return; _this._cursorResetLocation = _this._cursorResetLocation - (_this._selection.extentOffset - nextSelection.extentOffset); _this._setSelection$2(nextSelection, cause); }, moveSelectionLeftByLine$1: function(cause) { var _this = this, previousPoint = D.RenderEditable_previousCharacter(_this._selection.extentOffset, _this.get$_editable$_plainText(), true); if (_this._getLineAtOffset$1(new P.TextPosition(previousPoint, C.TextAffinity_1)).extentOffset === previousPoint) return; _this._setSelection$2(X.TextSelection$collapsed(C.TextAffinity_1, _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_previousCharacter(_this._selection.extentOffset, _this.get$_editable$_plainText(), false), C.TextAffinity_1)).baseOffset), cause); }, moveSelectionLeftByWord$2: function(cause, includeWhitespace) { var nextSelection, _this = this; if (_this._obscureText) return _this.moveSelectionToStart$1(cause); nextSelection = D.RenderEditable__moveGivenSelectionLeftByWord(_this._textPainter, _this._selection, false); if (nextSelection.$eq(0, _this._selection)) return; _this._setSelection$2(nextSelection, cause); }, moveSelectionRight$1: function(cause) { var _this = this, nextSelection = D.RenderEditable__moveGivenSelectionRight(_this._selection, _this.get$_editable$_plainText()); if (nextSelection.$eq(0, _this._selection)) return; _this._setSelection$2(nextSelection, cause); }, moveSelectionRightByLine$1: function(cause) { var _this = this, currentLine = _this._getLineAtOffset$1(new P.TextPosition(_this._selection.extentOffset, C.TextAffinity_1)), t1 = _this._selection.extentOffset; if (currentLine.extentOffset == t1) return; _this._setSelection$2(X.TextSelection$collapsed(C.TextAffinity_1, _this._getLineAtOffset$1(new P.TextPosition(D.RenderEditable_nextCharacter(t1, _this.get$_editable$_plainText(), false), C.TextAffinity_1)).extentOffset), cause); }, moveSelectionRightByWord$2: function(cause, includeWhitespace) { var nextSelection, _this = this; if (_this._obscureText) return _this.moveSelectionToEnd$1(cause); nextSelection = D.RenderEditable__moveGivenSelectionRightByWord(_this._textPainter, _this._selection, false); if (nextSelection.$eq(0, _this._selection)) return; _this._setSelection$2(nextSelection, cause); }, moveSelectionToEnd$1: function(cause) { var _this = this, t1 = _this._selection; if (t1.start == t1.end && t1.extentOffset === _this.get$_editable$_plainText().length) return; _this._setSelection$2(X.TextSelection$collapsed(C.TextAffinity_1, _this.get$_editable$_plainText().length), cause); }, moveSelectionToStart$1: function(cause) { var t1 = this._selection; if (t1.start == t1.end && t1.extentOffset === 0) return; this._setSelection$2(C.TextSelection_dA9, cause); }, moveSelectionUp$1: function(cause) { var positionAbove, t3, t4, _this = this, t1 = {}, t2 = _this._selection; if (t2.start == t2.end && t2.extentOffset <= 0) return; positionAbove = _this._getTextPositionAbove$1(t2.extentOffset); t1._nextSelection = $; t2 = new D.RenderEditable_moveSelectionUp__nextSelection_get(t1); t1 = new D.RenderEditable_moveSelectionUp__nextSelection_set(t1); t3 = positionAbove.offset; t4 = _this._selection; if (t3 == t4.extentOffset) { t1.call$1(t4.copyWith$2$baseOffset$extentOffset(0, 0)); _this._wasSelectingVerticallyWithKeyboard = false; } else { t1.call$1(t4.copyWith$2$baseOffset$extentOffset(t3, t3)); _this._cursorResetLocation = t2.call$0().extentOffset; } _this._setSelection$2(t2.call$0(), cause); }, markNeedsPaint$0: function() { this.super$RenderObject$markNeedsPaint(); var t1 = this._foregroundRenderObject; if (t1 != null) t1.markNeedsPaint$0(); t1 = this._backgroundRenderObject; if (t1 != null) t1.markNeedsPaint$0(); }, markNeedsTextLayout$0: function() { this._textLayoutLastMinWidth = this._textLayoutLastMaxWidth = null; this.markNeedsLayout$0(); }, systemFontsDidChange$0: function() { var _this = this; _this.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange(); _this._textPainter.markNeedsLayout$0(); _this._textLayoutLastMinWidth = _this._textLayoutLastMaxWidth = null; }, get$_editable$_plainText: function() { var t1 = this._cachedPlainText; return t1 == null ? this._cachedPlainText = this._textPainter._text_painter$_text.toPlainText$1$includeSemanticsLabels(false) : t1; }, get$text: function(_) { return this._textPainter._text_painter$_text; }, set$text: function(_, value) { var _this = this, t1 = _this._textPainter; if (J.$eq$(t1._text_painter$_text, value)) return; t1.set$text(0, value); _this._cachedPlainText = null; _this.markNeedsTextLayout$0(); _this.markNeedsSemanticsUpdate$0(); }, set$textAlign: function(_, value) { var t1 = this._textPainter; if (t1._text_painter$_textAlign === value) return; t1.set$textAlign(0, value); this.markNeedsTextLayout$0(); }, set$textDirection: function(_, value) { var t1 = this._textPainter; if (t1._text_painter$_textDirection == value) return; t1.set$textDirection(0, value); this.markNeedsTextLayout$0(); this.markNeedsSemanticsUpdate$0(); }, set$locale: function(_, value) { var t1 = this._textPainter; if (J.$eq$(t1._text_painter$_locale, value)) return; t1.set$locale(0, value); this.markNeedsTextLayout$0(); }, set$strutStyle: function(_, value) { var t1 = this._textPainter; if (J.$eq$(t1._text_painter$_strutStyle, value)) return; t1.set$strutStyle(0, value); this.markNeedsTextLayout$0(); }, set$showCursor: function(value) { var _this = this, t1 = _this._showCursor; if (t1 === value) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$_showHideCursor()); _this._showCursor = value; if (_this._node$_owner != null) { _this.get$_caretPainter().set$shouldPaint(_this._showCursor._change_notifier$_value); t1 = _this._showCursor.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_showHideCursor()), false); } }, _showHideCursor$0: function() { this.get$_caretPainter().set$shouldPaint(this._showCursor._change_notifier$_value); }, set$hasFocus: function(value) { var t1, _this = this; if (_this._hasFocus === value) return; _this._hasFocus = value; _this.markNeedsSemanticsUpdate$0(); if (_this._node$_owner == null) return; t1 = _this.get$_editable$_handleKeyEvent(); if (_this._hasFocus) { $.$get$RawKeyboard_instance()._raw_keyboard$_listeners.push(t1); _this._listenerAttached = true; } else { C.JSArray_methods.remove$1($.$get$RawKeyboard_instance()._raw_keyboard$_listeners, t1); _this._listenerAttached = false; } }, set$forceLine: function(value) { if (this._forceLine === value) return; this._forceLine = value; this.markNeedsLayout$0(); }, set$readOnly: function(_, value) { if (this._readOnly === value) return; this._readOnly = value; this.markNeedsSemanticsUpdate$0(); }, set$maxLines: function(_, value) { if (this._editable$_maxLines == value) return; this._editable$_maxLines = value; this.markNeedsTextLayout$0(); }, set$minLines: function(value) { if (this._minLines == value) return; this._minLines = value; this.markNeedsTextLayout$0(); }, set$expands: function(value) { if (this._editable$_expands === value) return; this._editable$_expands = value; this.markNeedsTextLayout$0(); }, set$textScaleFactor: function(value) { var t1 = this._textPainter; if (t1._textScaleFactor === value) return; t1.set$textScaleFactor(value); this.markNeedsTextLayout$0(); }, set$selection: function(value) { var _this = this; if (_this._selection.$eq(0, value)) return; _this._selection = value; _this._selectionPainter.set$highlightedRange(value); _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$offset: function(_, value) { var _this = this, t1 = _this._editable$_offset; if (t1 == value) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$markNeedsPaint()); _this._editable$_offset = value; if (_this._node$_owner != null) { t1 = value.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$markNeedsPaint()), false); } _this.markNeedsLayout$0(); }, set$cursorWidth: function(value) { if (this._cursorWidth === value) return; this._cursorWidth = value; this.markNeedsLayout$0(); }, set$cursorHeight: function(value) { return; }, set$paintCursorAboveText: function(value) { var _this = this; if (_this._paintCursorOnTop === value) return; _this._paintCursorOnTop = value; _this._cachedBuiltInPainters = _this._cachedBuiltInForegroundPainters = null; _this._updateForegroundPainter$1(_this._editable$_foregroundPainter); _this._updatePainter$1(_this._editable$_painter); }, set$startHandleLayerLink: function(value) { if (this._editable$_startHandleLayerLink === value) return; this._editable$_startHandleLayerLink = value; this.markNeedsPaint$0(); }, set$endHandleLayerLink: function(value) { if (this._editable$_endHandleLayerLink === value) return; this._editable$_endHandleLayerLink = value; this.markNeedsPaint$0(); }, get$selectionEnabled: function() { return true; }, describeSemanticsConfiguration$1: function(config) { var t1, t2, collector, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._textPainter; t2 = t1._text_painter$_text; t2.toString; collector = H.setRuntimeTypeInfo([], type$.JSArray_InlineSpanSemanticsInformation); t2.computeSemanticsInformation$1(collector); _this._editable$_semanticsInfo = collector; if (C.JSArray_methods.any$1(collector, new D.RenderEditable_describeSemanticsConfiguration_closure()) && U.defaultTargetPlatform() !== C.TargetPlatform_4) { config.explicitChildNodes = config._isSemanticBoundary = true; return; } config._semantics$_value = _this._obscureText ? C.JSString_methods.$mul(_this._obscuringCharacter, _this.get$_editable$_plainText().length) : _this.get$_editable$_plainText(); config._hasBeenAnnotated = true; config._setFlag$2(C.SemanticsFlag_1024, _this._obscureText); config._setFlag$2(C.SemanticsFlag_524288, _this._editable$_maxLines !== 1); t2 = t1._text_painter$_textDirection; t2.toString; config._semantics$_textDirection = t2; config._hasBeenAnnotated = true; config._setFlag$2(C.SemanticsFlag_32, _this._hasFocus); config._setFlag$2(C.SemanticsFlag_16, true); config._setFlag$2(C.SemanticsFlag_1048576, _this._readOnly); if (_this._hasFocus && _this.get$selectionEnabled()) config.set$onSetSelection(_this.get$_handleSetSelection()); if (_this._hasFocus && !_this._readOnly) config.set$onSetText(_this.get$_handleSetText()); if (_this.get$selectionEnabled()) t2 = _this._selection.get$isValid(); else t2 = false; if (t2) { t2 = _this._selection; config._textSelection = t2; config._hasBeenAnnotated = true; if (t1.getOffsetBefore$1(t2.extentOffset) != null) { config.set$onMoveCursorBackwardByWord(_this.get$_handleMoveCursorBackwardByWord()); config.set$onMoveCursorBackwardByCharacter(_this.get$_handleMoveCursorBackwardByCharacter()); } if (t1.getOffsetAfter$1(_this._selection.extentOffset) != null) { config.set$onMoveCursorForwardByWord(_this.get$_handleMoveCursorForwardByWord()); config.set$onMoveCursorForwardByCharacter(_this.get$_handleMoveCursorForwardByCharacter()); } } }, _handleSetText$1: function(text) { this.textSelectionDelegate.userUpdateTextEditingValue$2(new N.TextEditingValue(text, X.TextSelection$collapsed(C.TextAffinity_1, text.length), C.TextRange_m1_m1), C.SelectionChangedCause_4); }, assembleSemanticsNode$3: function(node, config, children) { var newChildCache, t3, t4, t5, t6, t7, t8, t9, currentRect, currentDirection, ordinal, start, _i, info, start0, t10, t11, rects, rect, currentDirection0, t12, t13, configuration, ordinal0, recognizer, newChild, _this = this, _null = null, newChildren = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode), t1 = _this._textPainter, t2 = t1._text_painter$_textDirection; t2.toString; newChildCache = P.ListQueue$(_null, type$.SemanticsNode); t3 = _this._editable$_semanticsInfo; t3.toString; t3 = G.combineSemanticsInfo(t3); t4 = t3.length; t5 = type$.BoxConstraints; t6 = type$.SemanticsAction; t7 = type$.void_Function_nullable_Object; t8 = type$.CustomSemanticsAction; t9 = type$.void_Function; currentRect = _null; currentDirection = t2; ordinal = 0; start = 0; _i = 0; for (; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i, start = start0) { info = t3[_i]; t2 = info.text; start0 = start + t2.length; t10 = start < start0; t11 = t10 ? start0 : start; t10 = t10 ? start : start0; rects = t1._text_painter$_paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t10, t11, C.BoxHeightStyle_0, C.BoxWidthStyle_0); if (rects.length === 0) continue; t10 = C.JSArray_methods.get$first(rects); rect = new P.Rect(t10.left, t10.top, t10.right, t10.bottom); currentDirection0 = C.JSArray_methods.get$first(rects).direction; for (t10 = H._arrayInstanceType(rects), t11 = t10._eval$1("SubListIterable<1>"), t12 = new H.SubListIterable(rects, 1, _null, t11), t12.SubListIterable$3(rects, 1, _null, t10._precomputed1), t11 = new H.ListIterator(t12, t12.get$length(t12), t11._eval$1("ListIterator")); t11.moveNext$0();) { t10 = t11.__internal$_current; rect = rect.expandToInclude$1(new P.Rect(t10.left, t10.top, t10.right, t10.bottom)); currentDirection0 = t10.direction; } t10 = rect.left; t11 = Math.max(0, H.checkNum(t10)); t12 = rect.top; t13 = Math.max(0, H.checkNum(t12)); t10 = Math.min(rect.right - t10, H.checkNum(t5._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth)); t12 = Math.min(rect.bottom - t12, H.checkNum(t5._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); currentRect = new P.Rect(Math.floor(t11) - 4, Math.floor(t13) - 4, Math.ceil(t11 + t10) + 4, Math.ceil(t13 + t12) + 4); configuration = new A.SemanticsConfiguration(P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), P.LinkedHashMap_LinkedHashMap$_empty(t8, t9)); ordinal0 = ordinal + 1; configuration._semantics$_sortKey = new A.OrdinalSortKey(ordinal, _null); configuration._hasBeenAnnotated = true; configuration._semantics$_textDirection = currentDirection; t12 = info.semanticsLabel; configuration._semantics$_label = t12 == null ? t2 : t12; recognizer = info.recognizer; if (recognizer != null) { t2 = recognizer.onTap; if (t2 != null) { configuration._addArgumentlessAction$2(C.SemanticsAction_1, t2); configuration._setFlag$2(C.SemanticsFlag_4194304, true); } } t2 = _this._cachedChildNodes; newChild = (t2 == null ? _null : !t2.get$isEmpty(t2)) === true ? _this._cachedChildNodes.removeFirst$0() : A.SemanticsNode$(_null, _null); newChild.updateWith$1$config(0, configuration); if (!J.$eq$(newChild._semantics$_rect, currentRect)) { newChild._semantics$_rect = currentRect; newChild._semantics$_markDirty$0(); } newChildCache._add$1(0, newChild); newChildren.push(newChild); ordinal = ordinal0; currentDirection = currentDirection0; } _this._cachedChildNodes = newChildCache; node.updateWith$2$childrenInInversePaintOrder$config(0, newChildren, config); }, _handleSetSelection$1: function(selection) { this._setSelection$2(selection, C.SelectionChangedCause_4); }, _handleMoveCursorForwardByCharacter$1: function(extentSelection) { var _this = this, extentOffset = _this._textPainter.getOffsetAfter$1(_this._selection.extentOffset); if (extentOffset == null) return; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, !extentSelection ? extentOffset : _this._selection.baseOffset, extentOffset, false), C.SelectionChangedCause_4); }, _handleMoveCursorBackwardByCharacter$1: function(extentSelection) { var _this = this, extentOffset = _this._textPainter.getOffsetBefore$1(_this._selection.extentOffset); if (extentOffset == null) return; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, !extentSelection ? extentOffset : _this._selection.baseOffset, extentOffset, false), C.SelectionChangedCause_4); }, _handleMoveCursorForwardByWord$1: function(extentSelection) { var baseOffset, _this = this, t1 = _this._selection, nextWord = _this._getNextWord$1(_this._textPainter._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(t1.extentOffset, t1.affinity)).end); if (nextWord == null) return; baseOffset = extentSelection ? _this._selection.baseOffset : nextWord.start; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, baseOffset, nextWord.start, false), C.SelectionChangedCause_4); }, _handleMoveCursorBackwardByWord$1: function(extentSelection) { var baseOffset, _this = this, t1 = _this._selection, previousWord = _this._getPreviousWord$1(_this._textPainter._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(t1.extentOffset, t1.affinity)).start - 1); if (previousWord == null) return; baseOffset = extentSelection ? _this._selection.baseOffset : previousWord.start; _this._setSelection$2(X.TextSelection$(C.TextAffinity_1, baseOffset, previousWord.start, false), C.SelectionChangedCause_4); }, _getNextWord$1: function(offset) { var t1, range, t2; for (t1 = this._textPainter; true;) { range = t1._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(offset, C.TextAffinity_1)); t2 = range.start; t2 = !(t2 >= 0 && range.end >= 0) || t2 === range.end; if (t2) return null; if (!this._onlyWhitespace$1(range)) return range; offset = range.end; } }, _getPreviousWord$1: function(offset) { var t1, range, t2; for (t1 = this._textPainter; offset >= 0;) { range = t1._text_painter$_paragraph.getWordBoundary$1(0, new P.TextPosition(offset, C.TextAffinity_1)); t2 = range.start; t2 = !(t2 >= 0 && range.end >= 0) || t2 === range.end; if (t2) return null; if (!this._onlyWhitespace$1(range)) return range; offset = range.start - 1; } return null; }, _onlyWhitespace$1: function(range) { var i, t1, t2, t3; for (i = range.start, t1 = range.end, t2 = this._textPainter; i < t1; ++i) { t3 = t2._text_painter$_text.codeUnitAt$1(0, i); t3.toString; if (!D._isWhitespace(t3)) return false; } return true; }, attach$1: function(owner) { var t1, _this = this; _this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$attach(owner); t1 = _this._foregroundRenderObject; if (t1 != null) t1.attach$1(owner); t1 = _this._backgroundRenderObject; if (t1 != null) t1.attach$1(owner); t1 = N.TapGestureRecognizer$(_this); t1.onTapDown = _this.get$_editable$_handleTapDown(); t1.onTap = _this.get$_editable$_handleTap(); _this.__RenderEditable__tap = t1; t1 = T.LongPressGestureRecognizer$(_this, null, null, null); t1.onLongPress = _this.get$_editable$_handleLongPress(); _this.__RenderEditable__longPress = t1; t1 = _this._editable$_offset.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$markNeedsPaint()), false); _this.get$_caretPainter().set$shouldPaint(_this._showCursor._change_notifier$_value); t1 = _this._showCursor.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_showHideCursor()), false); if (_this._hasFocus) { $.$get$RawKeyboard_instance()._raw_keyboard$_listeners.push(_this.get$_editable$_handleKeyEvent()); _this._listenerAttached = true; } }, detach$0: function(_) { var _this = this, t1 = _this.get$_tap(); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); t1 = _this.get$_longPress(); t1._stopTimer$0(); t1.super$OneSequenceGestureRecognizer$dispose(0); _this._editable$_offset.removeListener$1(0, _this.get$markNeedsPaint()); _this._showCursor.removeListener$1(0, _this.get$_showHideCursor()); if (_this._listenerAttached) { C.JSArray_methods.remove$1($.$get$RawKeyboard_instance()._raw_keyboard$_listeners, _this.get$_editable$_handleKeyEvent()); _this._listenerAttached = false; } _this.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$detach(0); t1 = _this._foregroundRenderObject; if (t1 != null) t1.detach$0(0); t1 = _this._backgroundRenderObject; if (t1 != null) t1.detach$0(0); }, redepthChildren$0: function() { var _this = this, foregroundChild = _this._foregroundRenderObject, backgroundChild = _this._backgroundRenderObject; if (foregroundChild != null) _this.redepthChild$1(foregroundChild); if (backgroundChild != null) _this.redepthChild$1(backgroundChild); }, visitChildren$1: function(visitor) { var foregroundChild = this._foregroundRenderObject, backgroundChild = this._backgroundRenderObject; if (foregroundChild != null) visitor.call$1(foregroundChild); if (backgroundChild != null) visitor.call$1(backgroundChild); }, get$_paintOffset: function() { switch (this._editable$_maxLines !== 1 ? C.Axis_1 : C.Axis_0) { case C.Axis_0: var t1 = this._editable$_offset._pixels; t1.toString; return new P.Offset(-t1, 0); case C.Axis_1: t1 = this._editable$_offset._pixels; t1.toString; return new P.Offset(0, -t1); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_editable$_viewportExtent: function() { switch (this._editable$_maxLines !== 1 ? C.Axis_1 : C.Axis_0) { case C.Axis_0: return this._box$_size._dx; case C.Axis_1: return this._box$_size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getMaxScrollExtent$1: function(contentSize) { switch (this._editable$_maxLines !== 1 ? C.Axis_1 : C.Axis_0) { case C.Axis_0: return Math.max(0, contentSize._dx - this._box$_size._dx); case C.Axis_1: return Math.max(0, contentSize._dy - this._box$_size._dy); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getEndpointsForSelection$1: function(selection) { var paintOffset, boxes, caretOffset, start, end, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); paintOffset = _this.get$_paintOffset(); boxes = selection.start == selection.end ? H.setRuntimeTypeInfo([], type$.JSArray_TextBox) : _this._textPainter.getBoxesForSelection$1(selection); if (boxes.length === 0) { t1 = _this._textPainter; t1._computeCaretMetrics$2(new P.TextPosition(selection.extentOffset, selection.affinity), _this.get$_caretPrototype()); caretOffset = t1.get$_caretMetrics().offset; return H.setRuntimeTypeInfo([new D.TextSelectionPoint(new P.Offset(0, t1.get$preferredLineHeight()).$add(0, caretOffset).$add(0, paintOffset), null)], type$.JSArray_TextSelectionPoint); } else { t1 = C.JSArray_methods.get$first(boxes); t1 = t1.direction === C.TextDirection_1 ? t1.left : t1.right; start = new P.Offset(t1, C.JSArray_methods.get$first(boxes).bottom).$add(0, paintOffset); t1 = C.JSArray_methods.get$last(boxes); t1 = t1.direction === C.TextDirection_1 ? t1.right : t1.left; end = new P.Offset(t1, C.JSArray_methods.get$last(boxes).bottom).$add(0, paintOffset); return H.setRuntimeTypeInfo([new D.TextSelectionPoint(start, C.JSArray_methods.get$first(boxes).direction), new D.TextSelectionPoint(end, C.JSArray_methods.get$last(boxes).direction)], type$.JSArray_TextSelectionPoint); } }, getRectForComposingRange$1: function(range) { var t1, t2, _this = this; if (!range.get$isValid() || range.start == range.end) return null; t1 = type$.BoxConstraints; t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = C.JSArray_methods.fold$1$2(_this._textPainter.getBoxesForSelection$1(X.TextSelection$(C.TextAffinity_1, range.start, range.end, false)), null, new D.RenderEditable_getRectForComposingRange_closure(), type$.nullable_Rect); return t2 == null ? null : t2.shift$1(_this.get$_paintOffset()); }, getPositionForPoint$1: function(globalPosition) { var _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = _this.get$_paintOffset(); t2 = _this.globalToLocal$1(globalPosition.$add(0, new P.Offset(-t2._dx, -t2._dy))); return _this._textPainter._text_painter$_paragraph.getPositionForOffset$1(t2); }, getLocalRectForCaret$1: function(caretPosition) { var caretOffset, rect, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = _this._textPainter; t2._computeCaretMetrics$2(caretPosition, _this.get$_caretPrototype()); caretOffset = t2.get$_caretMetrics().offset; t1 = _this._cursorWidth; t2 = t2.get$preferredLineHeight(); rect = new P.Rect(0, 0, t1, 0 + t2).shift$1(caretOffset.$add(0, _this.get$_paintOffset()).$add(0, _this.get$_caretPainter()._cursorOffset)); return rect.shift$1(_this._snapToPhysicalPixel$1(new P.Offset(rect.left, rect.top))); }, computeMinIntrinsicWidth$1: function(height) { var t1; this._layoutText$1$maxWidth(1 / 0); t1 = this._textPainter._text_painter$_paragraph.get$minIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, computeMaxIntrinsicWidth$1: function(height) { var t1; this._layoutText$1$maxWidth(1 / 0); t1 = this._textPainter._text_painter$_paragraph.get$maxIntrinsicWidth(); t1.toString; return Math.ceil(t1) + this._cursorWidth; }, _preferredHeight$1: function(width) { var minLimited, text, lines, index, _this = this, t1 = _this._editable$_maxLines, t2 = t1 != null, lockedMax = t2 && _this._minLines == null, t3 = _this._minLines, t4 = t3 != null, lockedBoth = t4 && t3 === t1; if (t1 === 1 || lockedMax || lockedBoth) { t1 = _this._textPainter.get$preferredLineHeight(); t2 = _this._editable$_maxLines; t2.toString; return t1 * t2; } minLimited = t4 && t3 > 1; if (minLimited || t2) { _this._layoutText$1$maxWidth(width); if (minLimited) { t1 = _this._textPainter; t3 = t1._text_painter$_paragraph; t3 = t3.get$height(t3); t3.toString; t3 = Math.ceil(t3); t1 = t1.get$preferredLineHeight(); t4 = _this._minLines; t4.toString; t4 = t3 < t1 * t4; t1 = t4; } else t1 = false; if (t1) { t1 = _this._textPainter.get$preferredLineHeight(); t2 = _this._minLines; t2.toString; return t1 * t2; } if (t2) { t1 = _this._textPainter; t2 = t1._text_painter$_paragraph; t2 = t2.get$height(t2); t2.toString; t2 = Math.ceil(t2); t1 = t1.get$preferredLineHeight(); t3 = _this._editable$_maxLines; t3.toString; t3 = t2 > t1 * t3; t1 = t3; } else t1 = false; if (t1) { t1 = _this._textPainter.get$preferredLineHeight(); t2 = _this._editable$_maxLines; t2.toString; return t1 * t2; } } if (width === 1 / 0) { text = _this.get$_editable$_plainText(); for (t1 = text.length, lines = 1, index = 0; index < t1; ++index) if (C.JSString_methods._codeUnitAt$1(text, index) === 10) ++lines; return _this._textPainter.get$preferredLineHeight() * lines; } _this._layoutText$1$maxWidth(width); t1 = _this._textPainter; t2 = t1.get$preferredLineHeight(); t1 = t1._text_painter$_paragraph; t1 = t1.get$height(t1); t1.toString; t1 = Math.ceil(t1); return Math.max(H.checkNum(t2), t1); }, computeMinIntrinsicHeight$1: function(width) { return this._preferredHeight$1(width); }, computeMaxIntrinsicHeight$1: function(width) { return this._preferredHeight$1(width); }, computeDistanceToActualBaseline$1: function(baseline) { var _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); return _this._textPainter.computeDistanceToActualBaseline$1(baseline); }, hitTestSelf$1: function(position) { return true; }, hitTestChildren$2$position: function(result, position) { var t1 = this._textPainter, textPosition = t1._text_painter$_paragraph.getPositionForOffset$1(position), span = t1._text_painter$_text.getSpanForPosition$1(textPosition); if (span != null && true) { t1 = new O.HitTestEntry(span); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); return true; } return false; }, get$_tap: function() { var t1 = this.__RenderEditable__tap; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_tap")) : t1; }, get$_longPress: function() { var t1 = this.__RenderEditable__longPress; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_longPress")) : t1; }, handleEvent$2: function($event, entry) { type$.PointerDownEvent._is($event); }, _editable$_handleTapDown$1: function(details) { this._lastTapDownPosition = details.globalPosition; }, _editable$_handleTap$0: function() { var t1 = this._lastTapDownPosition; t1.toString; this.selectPositionAt$2$cause$from(C.SelectionChangedCause_0, t1); }, _editable$_handleLongPress$0: function() { var t1 = this._lastTapDownPosition; t1.toString; this.selectWordsInRange$2$cause$from(C.SelectionChangedCause_2, t1); }, selectPositionAt$3$cause$from$to: function(cause, from, to) { var fromPosition, toPosition, baseOffset, extentOffset, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = _this._textPainter; t1 = _this.globalToLocal$1(from.$sub(0, _this.get$_paintOffset())); fromPosition = t2._text_painter$_paragraph.getPositionForOffset$1(t1); if (to == null) toPosition = null; else { t1 = _this.globalToLocal$1(to.$sub(0, _this.get$_paintOffset())); toPosition = t2._text_painter$_paragraph.getPositionForOffset$1(t1); } baseOffset = fromPosition.offset; extentOffset = toPosition == null ? null : toPosition.offset; if (extentOffset == null) extentOffset = baseOffset; _this._setSelection$2(X.TextSelection$(fromPosition.affinity, baseOffset, extentOffset, false), cause); }, selectPositionAt$2$cause$from: function(cause, from) { return this.selectPositionAt$3$cause$from$to(cause, from, null); }, selectWordsInRange$3$cause$from$to: function(cause, from, to) { var firstWord, lastWord, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); t2 = _this._textPainter; t1 = _this.globalToLocal$1(from.$sub(0, _this.get$_paintOffset())); firstWord = _this._getWordAtOffset$1(t2._text_painter$_paragraph.getPositionForOffset$1(t1)); if (to == null) lastWord = firstWord; else { t1 = _this.globalToLocal$1(to.$sub(0, _this.get$_paintOffset())); lastWord = _this._getWordAtOffset$1(t2._text_painter$_paragraph.getPositionForOffset$1(t1)); } _this._setSelection$2(X.TextSelection$(firstWord.affinity, firstWord.baseOffset, lastWord.extentOffset, false), cause); }, selectWordsInRange$2$cause$from: function(cause, from) { return this.selectWordsInRange$3$cause$from$to(cause, from, null); }, selectWordEdge$1$cause: function(cause) { var position, word, _this = this, t1 = {}, t2 = type$.BoxConstraints, t3 = t2._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t3); t3 = _this._textPainter; t2 = _this._lastTapDownPosition; t2.toString; t2 = _this.globalToLocal$1(t2.$sub(0, _this.get$_paintOffset())); position = t3._text_painter$_paragraph.getPositionForOffset$1(t2); word = t3._text_painter$_paragraph.getWordBoundary$1(0, position); t1._newSelection = $; t3 = new D.RenderEditable_selectWordEdge__newSelection_set(t1); t2 = word.start; if (position.offset - t2 <= 1) t3.call$1(X.TextSelection$collapsed(C.TextAffinity_1, t2)); else t3.call$1(X.TextSelection$collapsed(C.TextAffinity_0, word.end)); _this._setSelection$2(new D.RenderEditable_selectWordEdge__newSelection_get(t1).call$0(), cause); }, _getWordAtOffset$1: function(position) { var t3, previousWord, nextWord, _this = this, word = _this._textPainter._text_painter$_paragraph.getWordBoundary$1(0, position), t1 = position.offset, t2 = word.end; if (t1 >= t2) return X.TextSelection$fromPosition(position); if (_this._obscureText) return X.TextSelection$(C.TextAffinity_1, 0, _this.get$_editable$_plainText().length, false); else if (D._isWhitespace(J.codeUnitAt$1$s(_this.get$_editable$_plainText(), t1)) && t1 > 0) { t3 = word.start; previousWord = _this._getPreviousWord$1(t3); switch (U.defaultTargetPlatform()) { case C.TargetPlatform_2: if (previousWord == null) { nextWord = _this._getNextWord$1(t3); if (nextWord == null) return X.TextSelection$collapsed(C.TextAffinity_1, t1); return X.TextSelection$(C.TextAffinity_1, t1, nextWord.end, false); } return X.TextSelection$(C.TextAffinity_1, previousWord.start, t1, false); case C.TargetPlatform_0: if (_this._readOnly) { if (previousWord == null) return X.TextSelection$(C.TextAffinity_1, t1, t1 + 1, false); return X.TextSelection$(C.TextAffinity_1, previousWord.start, t1, false); } break; case C.TargetPlatform_1: case C.TargetPlatform_4: case C.TargetPlatform_3: case C.TargetPlatform_5: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } return X.TextSelection$(C.TextAffinity_1, word.start, t2, false); }, _getLineAtOffset$1: function(position) { var line = this._textPainter._text_painter$_paragraph.getLineBoundary$1(position), t1 = line.end; if (position.offset >= t1) return X.TextSelection$fromPosition(position); if (this._obscureText) return X.TextSelection$(C.TextAffinity_1, 0, this.get$_editable$_plainText().length, false); return X.TextSelection$(C.TextAffinity_1, line.start, t1, false); }, _layoutText$2$maxWidth$minWidth: function(maxWidth, minWidth) { var availableMaxWidth, availableMinWidth, textMaxWidth, textMinWidth, _this = this; if (_this._textLayoutLastMaxWidth == maxWidth && _this._textLayoutLastMinWidth == minWidth) return; availableMaxWidth = Math.max(0, maxWidth - (1 + _this._cursorWidth)); availableMinWidth = Math.min(H.checkNum(minWidth), availableMaxWidth); textMaxWidth = _this._editable$_maxLines !== 1 ? availableMaxWidth : 1 / 0; textMinWidth = _this._forceLine ? availableMaxWidth : availableMinWidth; _this._textPainter.layout$2$maxWidth$minWidth(0, textMaxWidth, textMinWidth); _this._textLayoutLastMinWidth = minWidth; _this._textLayoutLastMaxWidth = maxWidth; }, _layoutText$1$maxWidth: function(maxWidth) { return this._layoutText$2$maxWidth$minWidth(maxWidth, 0); }, get$_caretPrototype: function() { var t1 = this.__RenderEditable__caretPrototype; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_caretPrototype")) : t1; }, _snapToPhysicalPixel$1: function(sourceOffset) { var t2, globalOffset = T.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), sourceOffset), pixelMultiple = 1 / this._devicePixelRatio, t1 = globalOffset._dx; t1.toString; t1 = isFinite(t1) ? C.JSNumber_methods.round$0(t1 / pixelMultiple) * pixelMultiple - t1 : 0; t2 = globalOffset._dy; t2.toString; return new P.Offset(t1, isFinite(t2) ? C.JSNumber_methods.round$0(t2 / pixelMultiple) * pixelMultiple - t2 : 0); }, computeDryLayout$1: function(constraints) { var width0, t2, t3, _this = this, t1 = constraints.minWidth, width = constraints.maxWidth; _this._layoutText$2$maxWidth$minWidth(width, t1); if (_this._forceLine) width0 = width; else { t2 = _this._textPainter; t3 = t2.get$width(t2); t2 = t2._text_painter$_paragraph; t2 = t2.get$height(t2); t2.toString; Math.ceil(t2); width0 = C.JSNumber_methods.clamp$2(t3 + (1 + _this._cursorWidth), t1, width); } return new P.Size(width0, C.JSNumber_methods.clamp$2(_this._preferredHeight$1(width), constraints.minHeight, constraints.maxHeight)); }, performLayout$0: function() { var t2, t3, t4, width0, t5, contentSize, painterConstraints, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = constraints.minWidth, width = constraints.maxWidth; _this._layoutText$2$maxWidth$minWidth(width, t1); switch (U.defaultTargetPlatform()) { case C.TargetPlatform_2: case C.TargetPlatform_4: t2 = _this._cursorWidth; t3 = _this._textPainter.get$preferredLineHeight(); _this.__RenderEditable__caretPrototype = new P.Rect(0, 0, t2, 0 + (t3 + 2)); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t2 = _this._cursorWidth; t3 = _this._textPainter.get$preferredLineHeight(); _this.__RenderEditable__caretPrototype = new P.Rect(0, 2, t2, 2 + (t3 - 4)); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } t2 = _this._textPainter; t3 = t2.get$width(t2); t4 = t2._text_painter$_paragraph; t4 = t4.get$height(t4); t4.toString; t4 = Math.ceil(t4); if (_this._forceLine) width0 = width; else { t5 = t2.get$width(t2); t2 = t2._text_painter$_paragraph; t2 = t2.get$height(t2); t2.toString; Math.ceil(t2); width0 = C.JSNumber_methods.clamp$2(t5 + (1 + _this._cursorWidth), t1, width); } _this._box$_size = new P.Size(width0, C.JSNumber_methods.clamp$2(_this._preferredHeight$1(width), constraints.minHeight, constraints.maxHeight)); contentSize = new P.Size(t3 + (1 + _this._cursorWidth), t4); painterConstraints = S.BoxConstraints$tight(contentSize); t1 = _this._foregroundRenderObject; if (t1 != null) t1.layout$1(0, painterConstraints); t1 = _this._backgroundRenderObject; if (t1 != null) t1.layout$1(0, painterConstraints); _this._editable$_maxScrollExtent = _this._getMaxScrollExtent$1(contentSize); _this._editable$_offset.applyViewportDimension$1(_this.get$_editable$_viewportExtent()); _this._editable$_offset.applyContentDimensions$2(0, _this._editable$_maxScrollExtent); }, setFloatingCursor$4$resetLerpValue: function(state, boundedOffset, lastTextPosition, resetLerpValue) { var t1, sizeAdjustment, _this = this; if (state === C.FloatingCursorDragState_0) { _this._relativeOrigin = C.Offset_0_0; _this._previousOffset = null; _this._resetOriginOnRight = _this._resetOriginOnTop = _this._resetOriginOnBottom = false; } t1 = state !== C.FloatingCursorDragState_2; _this._floatingCursorOn = t1; _this._resetFloatingCursorAnimationValue = resetLerpValue; if (t1) { _this.__RenderEditable__floatingCursorTextPosition = lastTextPosition; if (resetLerpValue != null) { t1 = V.EdgeInsets_lerp(C.EdgeInsets_Otk, C.EdgeInsets_0_0_0_0, resetLerpValue); t1.toString; sizeAdjustment = t1; } else sizeAdjustment = C.EdgeInsets_Otk; _this.get$_caretPainter().set$floatingCursorRect(sizeAdjustment.inflateRect$1(_this.get$_caretPrototype()).shift$1(boundedOffset)); } else _this.get$_caretPainter().set$floatingCursorRect(null); _this.get$_caretPainter().showRegularCaret = _this._resetFloatingCursorAnimationValue == null; }, setFloatingCursor$3: function(state, boundedOffset, lastTextPosition) { return this.setFloatingCursor$4$resetLerpValue(state, boundedOffset, lastTextPosition, null); }, _editable$_paintContents$2: function(context, offset) { var visibleRegion, t2, startOffset, endOffset, foregroundChild, backgroundChild, _this = this, effectiveOffset = offset.$add(0, _this.get$_paintOffset()), t1 = _this._floatingCursorOn; if (!t1) { t1 = _this._box$_size; visibleRegion = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); t1 = _this._textPainter; t2 = _this._selection; t1._computeCaretMetrics$2(new P.TextPosition(t2.start, t2.affinity), _this.get$_caretPrototype()); startOffset = t1.get$_caretMetrics().offset; _this._selectionStartInViewport.set$value(0, visibleRegion.inflate$1(0.5).contains$1(0, startOffset.$add(0, effectiveOffset))); t2 = _this._selection; t1._computeCaretMetrics$2(new P.TextPosition(t2.end, t2.affinity), _this.get$_caretPrototype()); endOffset = t1.get$_caretMetrics().offset; _this._selectionEndInViewport.set$value(0, visibleRegion.inflate$1(0.5).contains$1(0, endOffset.$add(0, effectiveOffset))); } foregroundChild = _this._foregroundRenderObject; backgroundChild = _this._backgroundRenderObject; if (backgroundChild != null) context.paintChild$2(backgroundChild, offset); t1 = context.get$canvas(context); t2 = _this._textPainter._text_painter$_paragraph; t2.toString; t1.drawParagraph$2(0, t2, effectiveOffset); if (foregroundChild != null) context.paintChild$2(foregroundChild, offset); }, paint$2: function(context, offset) { var startPoint, t3, endPoint, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).minWidth; _this._layoutText$2$maxWidth$minWidth(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, t2); if ((_this._editable$_maxScrollExtent > 0 || !_this.get$_paintOffset().$eq(0, C.Offset_0_0)) && _this._editable$_clipBehavior !== C.Clip_0) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._editable$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$_editable$_paintContents(), _this._editable$_clipBehavior, _this._editable$_clipRectLayer); } else { _this._editable$_clipRectLayer = null; _this._editable$_paintContents$2(context, offset); } t1 = _this.getEndpointsForSelection$1(_this._selection); startPoint = t1[0].point; t2 = J.clamp$2$n(startPoint._dx, 0, _this._box$_size._dx); t3 = J.clamp$2$n(startPoint._dy, 0, _this._box$_size._dy); context.pushLayer$3(new T.LeaderLayer(_this._editable$_startHandleLayerLink, new P.Offset(t2, t3)), K.RenderObject.prototype.get$paint.call(_this), C.Offset_0_0); if (t1.length === 2) { endPoint = t1[1].point; t1 = J.clamp$2$n(endPoint._dx, 0, _this._box$_size._dx); t2 = J.clamp$2$n(endPoint._dy, 0, _this._box$_size._dy); context.pushLayer$3(new T.LeaderLayer(_this._editable$_endHandleLayerLink, new P.Offset(t1, t2)), K.RenderObject.prototype.get$paint.call(_this), C.Offset_0_0); } }, describeApproximatePaintClip$1: function(child) { var t1; if (this._editable$_maxScrollExtent > 0 || !this.get$_paintOffset().$eq(0, C.Offset_0_0)) { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, debugDescribeChildren$0: function() { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), t2 = this._textPainter._text_painter$_text; if (t2 != null) t1.push(Y.DiagnosticableTreeNode$("text", C.DiagnosticsTreeStyle_4, t2)); return t1; }, text$0: function($receiver) { return this.get$text(this).call$0(); } }; D.RenderEditable_nextCharacter_closure.prototype = { call$1: function(currentString) { var t1 = this._box_0, t2 = t1.count; if (t2 <= this.index) { t1.count = t2 + currentString.length; return true; } if (this.includeWhitespace) return false; return D._isWhitespace(C.JSString_methods._codeUnitAt$1(currentString, 0)); }, $signature: 73 }; D.RenderEditable_extendSelectionDown__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_extendSelectionDown__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_extendSelectionLeftByLine__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_extendSelectionLeftByLine__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_extendSelectionRightByLine__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_extendSelectionRightByLine__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_extendSelectionUp__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_extendSelectionUp__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_expandSelectionLeftByLine__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_expandSelectionLeftByLine__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_expandSelectionRightByLine__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_expandSelectionRightByLine__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_moveSelectionDown__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_moveSelectionDown__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_moveSelectionUp__nextSelection_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._nextSelection === $) return t2._nextSelection = t1; else throw H.wrapException(H.LateError$localAI("nextSelection")); }, $signature: 130 }; D.RenderEditable_moveSelectionUp__nextSelection_get.prototype = { call$0: function() { var t1 = this._box_0._nextSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("nextSelection")) : t1; }, $signature: 127 }; D.RenderEditable_describeSemanticsConfiguration_closure.prototype = { call$1: function(info) { return info.recognizer != null; }, $signature: 694 }; D.RenderEditable_getRectForComposingRange_closure.prototype = { call$2: function(accum, incoming) { var t1 = accum == null ? null : accum.expandToInclude$1(new P.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom)); return t1 == null ? new P.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom) : t1; }, $signature: 2427 }; D.RenderEditable_selectWordEdge__newSelection_set.prototype = { call$1: function(t1) { return this._box_0._newSelection = t1; }, $signature: 130 }; D.RenderEditable_selectWordEdge__newSelection_get.prototype = { call$0: function() { var t1 = this._box_0._newSelection; return t1 === $ ? H.throwExpression(H.LateError$localNI("newSelection")) : t1; }, $signature: 127 }; D._RenderEditableCustomPaint.prototype = { get$parent: function(_) { return type$.nullable_RenderEditable._as(B.AbstractNode.prototype.get$parent.call(this, this)); }, get$isRepaintBoundary: function() { return true; }, get$sizedByParent: function() { return true; }, set$painter: function(newValue) { var t2, _this = this, t1 = _this._editable$_painter; if (newValue === t1) return; _this._editable$_painter = newValue; t2 = newValue.shouldRepaint$1(t1); if (t2) _this.markNeedsPaint$0(); if (_this._node$_owner != null) { t2 = _this.get$markNeedsPaint(); t1.removeListener$1(0, t2); newValue.addListener$1(0, t2); } }, paint$2: function(context, offset) { var t1, t2, _this = this, $parent = type$.nullable_RenderEditable._as(B.AbstractNode.prototype.get$parent.call(_this, _this)), painter = _this._editable$_painter; if ($parent != null) { t1 = context.get$canvas(context); t2 = _this._box$_size; t2.toString; painter.paint$3(t1, t2, $parent); } }, attach$1: function(owner) { this.super$RenderObject$attach(owner); this._editable$_painter.addListener$1(0, this.get$markNeedsPaint()); }, detach$0: function(_) { this._editable$_painter.removeListener$1(0, this.get$markNeedsPaint()); this.super$AbstractNode$detach(0); }, computeDryLayout$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); } }; D.RenderEditablePainter.prototype = {}; D._TextHighlightPainter.prototype = { set$highlightColor: function(newValue) { if (J.$eq$(newValue, this._highlightColor)) return; this._highlightColor = newValue; this.notifyListeners$0(); }, set$highlightedRange: function(newValue) { if (J.$eq$(newValue, this._highlightedRange)) return; this._highlightedRange = newValue; this.notifyListeners$0(); }, set$selectionHeightStyle: function(value) { if (this._selectionHeightStyle === value) return; this._selectionHeightStyle = value; this.notifyListeners$0(); }, set$selectionWidthStyle: function(value) { if (this._selectionWidthStyle === value) return; this._selectionWidthStyle = value; this.notifyListeners$0(); }, paint$3: function(canvas, size, renderEditable) { var t1, boxes, t2, _i, box, _this = this, range = _this._highlightedRange, color = _this._highlightColor; if (range == null || color == null || range.start == range.end) return; t1 = _this.highlightPaint; t1.set$color(0, color); boxes = renderEditable._textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(X.TextSelection$(C.TextAffinity_1, range.start, range.end, false), _this._selectionHeightStyle, _this._selectionWidthStyle); for (t2 = boxes.length, _i = 0; _i < boxes.length; boxes.length === t2 || (0, H.throwConcurrentModificationError)(boxes), ++_i) { box = boxes[_i]; canvas.drawRect$2(0, new P.Rect(box.left, box.top, box.right, box.bottom).shift$1(renderEditable.get$_paintOffset()), t1); } }, shouldRepaint$1: function(oldDelegate) { var _this = this; if (oldDelegate === _this) return false; if (oldDelegate == null) return _this._highlightColor != null && _this._highlightedRange != null; return !(oldDelegate instanceof D._TextHighlightPainter) || !J.$eq$(oldDelegate._highlightColor, _this._highlightColor) || !J.$eq$(oldDelegate._highlightedRange, _this._highlightedRange) || oldDelegate._selectionHeightStyle !== _this._selectionHeightStyle || oldDelegate._selectionWidthStyle !== _this._selectionWidthStyle; } }; D._FloatingCursorPainter.prototype = { set$shouldPaint: function(value) { if (this._shouldPaint == value) return; this._shouldPaint = value; this.notifyListeners$0(); }, set$caretColor: function(value) { var t1 = this._caretColor; t1 = t1 == null ? null : t1.value; if (t1 === value.value) return; this._caretColor = value; this.notifyListeners$0(); }, set$cursorRadius: function(value) { if (J.$eq$(this._cursorRadius, value)) return; this._cursorRadius = value; this.notifyListeners$0(); }, set$cursorOffset: function(value) { if (this._cursorOffset.$eq(0, value)) return; this._cursorOffset = value; this.notifyListeners$0(); }, set$backgroundCursorColor: function(value) { var _this = this, t1 = _this._backgroundCursorColor; t1 = t1 == null ? null : t1._effectiveColor.value; if (t1 === value._effectiveColor.value) return; _this._backgroundCursorColor = value; if (_this.showRegularCaret) _this.notifyListeners$0(); }, set$floatingCursorRect: function(value) { if (J.$eq$(this._floatingCursorRect, value)) return; this._floatingCursorRect = value; this.notifyListeners$0(); }, paint$3: function(canvas, size, renderEditable) { var floatingCursorRect, t1, caretColor, caretTextPosition, t2, caretPrototype, caretRect, caretHeight, t3, t4, integralRect, radius, floatingCursorColor, _this = this, selection = renderEditable._selection; if (selection.start != selection.end) return; floatingCursorRect = _this._floatingCursorRect; t1 = floatingCursorRect == null; if (t1) caretColor = _this._caretColor; else caretColor = _this.showRegularCaret ? _this._backgroundCursorColor : null; if (t1) caretTextPosition = new P.TextPosition(selection.extentOffset, selection.affinity); else { t2 = renderEditable.__RenderEditable__floatingCursorTextPosition; caretTextPosition = t2 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingCursorTextPosition")) : t2; } if (caretColor != null) { caretPrototype = renderEditable.get$_caretPrototype(); t2 = renderEditable._textPainter; t2._computeCaretMetrics$2(caretTextPosition, caretPrototype); caretRect = caretPrototype.shift$1(t2.get$_caretMetrics().offset.$add(0, _this._cursorOffset)); t2._computeCaretMetrics$2(caretTextPosition, caretPrototype); caretHeight = t2.get$_caretMetrics().fullHeight; if (caretHeight != null) switch (U.defaultTargetPlatform()) { case C.TargetPlatform_2: case C.TargetPlatform_4: t2 = caretRect.top; t3 = caretRect.bottom - t2; t4 = caretRect.left; t2 += (caretHeight - t3) / 2; caretRect = new P.Rect(t4, t2, t4 + (caretRect.right - t4), t2 + t3); break; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: t2 = caretRect.left; t3 = caretRect.top - 2; caretRect = new P.Rect(t2, t3, t2 + (caretRect.right - t2), t3 + caretHeight); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } caretRect = caretRect.shift$1(renderEditable.get$_paintOffset()); integralRect = caretRect.shift$1(renderEditable._snapToPhysicalPixel$1(new P.Offset(caretRect.left, caretRect.top))); if (_this._shouldPaint) { radius = _this._cursorRadius; t2 = _this.caretPaint; t2.set$color(0, caretColor); if (radius == null) canvas.drawRect$2(0, integralRect, t2); else canvas.drawRRect$2(0, P.RRect$fromRectAndRadius(integralRect, radius), t2); } _this.caretPaintCallback.call$1(integralRect); } t2 = _this._caretColor; if (t2 == null) floatingCursorColor = null; else { t2 = t2.value; floatingCursorColor = P.Color$fromARGB(191, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); } if (t1 || floatingCursorColor == null || !_this._shouldPaint) return; t1 = P.RRect$fromRectAndRadius(floatingCursorRect.shift$1(renderEditable.get$_paintOffset()), C.Radius_1_1); t2 = _this.___FloatingCursorPainter_floatingCursorPaint; if (t2 === $) { t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); if (_this.___FloatingCursorPainter_floatingCursorPaint === $) _this.___FloatingCursorPainter_floatingCursorPaint = t2; else t2 = H.throwExpression(H.LateError$fieldADI("floatingCursorPaint")); } t2.set$color(0, floatingCursorColor); canvas.drawRRect$2(0, t1, t2); }, shouldRepaint$1: function(oldDelegate) { var _this = this; if (_this === oldDelegate) return false; if (oldDelegate == null) return _this._shouldPaint; return !(oldDelegate instanceof D._FloatingCursorPainter) || oldDelegate._shouldPaint != _this._shouldPaint || oldDelegate.showRegularCaret !== _this.showRegularCaret || !J.$eq$(oldDelegate._caretColor, _this._caretColor) || !J.$eq$(oldDelegate._cursorRadius, _this._cursorRadius) || !oldDelegate._cursorOffset.$eq(0, _this._cursorOffset) || !J.$eq$(oldDelegate._backgroundCursorColor, _this._backgroundCursorColor) || !J.$eq$(oldDelegate._floatingCursorRect, _this._floatingCursorRect); } }; D._CompositeRenderEditablePainter.prototype = { addListener$1: function(_, listener) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].addListener$1(0, listener); }, removeListener$1: function(_, listener) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].removeListener$1(0, listener); }, paint$3: function(canvas, size, renderEditable) { var t1, t2, _i; for (t1 = this.painters, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].paint$3(canvas, size, renderEditable); }, shouldRepaint$1: function(oldDelegate) { var t1, oldPainters, newPainters; if (oldDelegate === this) return false; if (!(oldDelegate instanceof D._CompositeRenderEditablePainter) || oldDelegate.painters.length !== this.painters.length) return true; t1 = oldDelegate.painters; oldPainters = new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); t1 = this.painters; newPainters = new J.ArrayIterator(t1, t1.length, H._arrayInstanceType(t1)._eval$1("ArrayIterator<1>")); while (true) { if (!(oldPainters.moveNext$0() && newPainters.moveNext$0())) break; if (newPainters.__interceptors$_current.shouldRepaint$1(oldPainters.__interceptors$_current)) return true; } return false; } }; D._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin.prototype = { attach$1: function(owner) { this.super$RenderObject$attach(owner); $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.add$1(0, this.get$systemFontsDidChange()); }, detach$0: function(_) { $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.remove$1(0, this.get$systemFontsDidChange()); this.super$AbstractNode$detach(0); } }; V.RenderErrorBox.prototype = { RenderErrorBox$1: function(message) { var builder, t1, exception; try { t1 = this.message; if (t1 !== "") { builder = P.ParagraphBuilder_ParagraphBuilder($.$get$RenderErrorBox_paragraphStyle()); J.pushStyle$1$x(builder, $.$get$RenderErrorBox_textStyle()); J.addText$1$x(builder, t1); this._paragraph = J.build$0$x(builder); } else this._paragraph = null; } catch (exception) { H.unwrapException(exception); } }, computeMaxIntrinsicWidth$1: function(height) { return 100000; }, computeMaxIntrinsicHeight$1: function(width) { return 100000; }, get$sizedByParent: function() { return true; }, hitTestSelf$1: function(position) { return true; }, computeDryLayout$1: function(constraints) { return constraints.constrain$1(C.Size_100000_100000); }, paint$2: function(context, offset) { var width, left, $top, t1, t2, t3, t4, t5, t6, exception, _this = this; try { t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = H._detectRenderer(); t6 = t6 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t6.set$color(0, $.$get$RenderErrorBox_backgroundColor()); t1.drawRect$2(0, new P.Rect(t3, t4, t3 + t5, t4 + t2), t6); t1 = _this._paragraph; if (t1 != null) { width = _this._box$_size._dx; left = 0; $top = 0; if (width > 328) { width -= 128; left += 64; } t1.layout$1(0, new P.ParagraphConstraints(width)); t1 = _this._box$_size._dy; t2 = _this._paragraph; if (t1 > 96 + t2.get$height(t2) + 12) $top += 96; t1 = context.get$canvas(context); t2 = _this._paragraph; t2.toString; t1.drawParagraph$2(0, t2, offset.$add(0, new P.Offset(left, $top))); } } catch (exception) { H.unwrapException(exception); } } }; F.FlexFit.prototype = { toString$0: function(_) { return this._flex$_name; } }; F.FlexParentData.prototype = { toString$0: function(_) { return this.super$BoxParentData$toString(0) + "; flex=" + H.S(this.flex) + "; fit=" + H.S(this.fit); } }; F.MainAxisSize.prototype = { toString$0: function(_) { return this._flex$_name; } }; F.MainAxisAlignment.prototype = { toString$0: function(_) { return this._flex$_name; } }; F.CrossAxisAlignment.prototype = { toString$0: function(_) { return this._flex$_name; } }; F.RenderFlex.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof F.FlexParentData)) child.parentData = new F.FlexParentData(null, null, C.Offset_0_0); }, _getIntrinsicSize$3$childSize$extent$sizingDirection: function(childSize, extent, sizingDirection) { var t1, child, totalFlex, inflexibleSpace, maxFlexFractionSoFar, t2, flex, t3, maxCrossSize, _box_0, _mainSize_get, _mainSize_set, _crossSize_set, spacePerFlex, _this = this; if (_this._flex$_crossAxisAlignment === C.CrossAxisAlignment_4) return 0; t1 = _this._flex$_direction; child = _this.ContainerRenderObjectMixin__firstChild; if (t1 === sizingDirection) { for (t1 = type$.FlexParentData, totalFlex = 0, inflexibleSpace = 0, maxFlexFractionSoFar = 0; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; totalFlex += flex; if (flex > 0) { t2 = childSize.call$2(child, extent); t3 = child.parentData; t3.toString; t3 = t1._as(t3).flex; maxFlexFractionSoFar = Math.max(maxFlexFractionSoFar, t2 / (t3 == null ? 0 : t3)); } else inflexibleSpace += childSize.call$2(child, extent); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return maxFlexFractionSoFar * totalFlex + inflexibleSpace; } else { for (t1 = type$.FlexParentData, totalFlex = 0, inflexibleSpace = 0, maxCrossSize = 0; child != null;) { _box_0 = {}; t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; totalFlex += flex; _box_0._mainSize = $; _mainSize_get = new F.RenderFlex__getIntrinsicSize__mainSize_get(_box_0); _mainSize_set = new F.RenderFlex__getIntrinsicSize__mainSize_set(_box_0); _box_0._crossSize = $; _crossSize_set = new F.RenderFlex__getIntrinsicSize__crossSize_set(_box_0); if (flex === 0) { switch (_this._flex$_direction) { case C.Axis_0: _mainSize_set.call$1(child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth())); _crossSize_set.call$1(childSize.call$2(child, _mainSize_get.call$0())); break; case C.Axis_1: _mainSize_set.call$1(child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, 1 / 0, child.get$computeMaxIntrinsicHeight())); _crossSize_set.call$1(childSize.call$2(child, _mainSize_get.call$0())); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } inflexibleSpace += _mainSize_get.call$0(); maxCrossSize = Math.max(maxCrossSize, H.checkNum(new F.RenderFlex__getIntrinsicSize__crossSize_get(_box_0).call$0())); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } spacePerFlex = Math.max(0, (extent - inflexibleSpace) / totalFlex); child = _this.ContainerRenderObjectMixin__firstChild; for (; child != null;) { t2 = child.parentData; t2.toString; flex = t1._as(t2).flex; if (flex == null) flex = 0; if (flex > 0) maxCrossSize = Math.max(maxCrossSize, H.checkNum(childSize.call$2(child, spacePerFlex * flex))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return maxCrossSize; } }, computeMinIntrinsicWidth$1: function(height) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new F.RenderFlex_computeMinIntrinsicWidth_closure(), height, C.Axis_0); }, computeMaxIntrinsicWidth$1: function(height) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new F.RenderFlex_computeMaxIntrinsicWidth_closure(), height, C.Axis_0); }, computeMinIntrinsicHeight$1: function(width) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new F.RenderFlex_computeMinIntrinsicHeight_closure(), width, C.Axis_1); }, computeMaxIntrinsicHeight$1: function(width) { return this._getIntrinsicSize$3$childSize$extent$sizingDirection(new F.RenderFlex_computeMaxIntrinsicHeight_closure(), width, C.Axis_1); }, computeDistanceToActualBaseline$1: function(baseline) { if (this._flex$_direction === C.Axis_0) return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); return this.defaultComputeDistanceToFirstActualBaseline$1(baseline); }, _getCrossSize$1: function(size) { switch (this._flex$_direction) { case C.Axis_0: return size._dy; case C.Axis_1: return size._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getMainSize$1: function(size) { switch (this._flex$_direction) { case C.Axis_0: return size._dx; case C.Axis_1: return size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeDryLayout$1: function(constraints) { var sizes; if (this._flex$_crossAxisAlignment === C.CrossAxisAlignment_4) return C.Size_0_0; sizes = this._computeSizes$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); switch (this._flex$_direction) { case C.Axis_0: return constraints.constrain$1(new P.Size(sizes.mainSize, sizes.crossSize)); case C.Axis_1: return constraints.constrain$1(new P.Size(sizes.crossSize, sizes.mainSize)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _computeSizes$2$constraints$layoutChild: function(constraints, layoutChild) { var t1, totalFlex, crossSize, allocatedSize, lastFlexChild, t2, flex, innerConstraints, childSize, freeSpace, spacePerFlex, allocatedFlexSpace, _box_0, maxChildExtent, _minChildExtent_get, _minChildExtent_set, t3, _this = this, _s80_ = string$.x60null_c, maxMainSize = _this._flex$_direction === C.Axis_0 ? constraints.maxWidth : constraints.maxHeight, canFlex = maxMainSize < 1 / 0, child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData, totalFlex = 0, crossSize = 0, allocatedSize = 0, lastFlexChild = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); flex = t2.flex; if (flex == null) flex = 0; if (flex > 0) { totalFlex += flex; lastFlexChild = child; } else { if (_this._flex$_crossAxisAlignment === C.CrossAxisAlignment_3) switch (_this._flex$_direction) { case C.Axis_0: innerConstraints = S.BoxConstraints$tightFor(constraints.maxHeight, null); break; case C.Axis_1: innerConstraints = S.BoxConstraints$tightFor(null, constraints.maxWidth); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else switch (_this._flex$_direction) { case C.Axis_0: innerConstraints = new S.BoxConstraints(0, 1 / 0, 0, constraints.maxHeight); break; case C.Axis_1: innerConstraints = new S.BoxConstraints(0, constraints.maxWidth, 0, 1 / 0); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } childSize = layoutChild.call$2(child, innerConstraints); allocatedSize += _this._getMainSize$1(childSize); crossSize = Math.max(crossSize, H.checkNum(_this._getCrossSize$1(childSize))); } child = t2.ContainerParentDataMixin_nextSibling; } freeSpace = Math.max(0, (canFlex ? maxMainSize : 0) - allocatedSize); if (totalFlex > 0) { spacePerFlex = canFlex ? freeSpace / totalFlex : 0 / 0; child = _this.ContainerRenderObjectMixin__firstChild; for (allocatedFlexSpace = 0; child != null;) { _box_0 = {}; t2 = child.parentData; t2.toString; t1._as(t2); flex = t2.flex; if (flex == null) flex = 0; if (flex > 0) { if (canFlex) maxChildExtent = child === lastFlexChild ? freeSpace - allocatedFlexSpace : spacePerFlex * flex; else maxChildExtent = 1 / 0; _box_0._minChildExtent = $; _minChildExtent_get = new F.RenderFlex__computeSizes__minChildExtent_get(_box_0); _minChildExtent_set = new F.RenderFlex__computeSizes__minChildExtent_set(_box_0); t2 = t2.fit; switch (t2 == null ? C.FlexFit_0 : t2) { case C.FlexFit_0: _minChildExtent_set.call$1(maxChildExtent); break; case C.FlexFit_1: _minChildExtent_set.call$1(0); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (_this._flex$_crossAxisAlignment === C.CrossAxisAlignment_3) switch (_this._flex$_direction) { case C.Axis_0: t2 = _minChildExtent_get.call$0(); t3 = constraints.maxHeight; innerConstraints = new S.BoxConstraints(t2, maxChildExtent, t3, t3); break; case C.Axis_1: t2 = constraints.maxWidth; innerConstraints = new S.BoxConstraints(t2, t2, _minChildExtent_get.call$0(), maxChildExtent); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else switch (_this._flex$_direction) { case C.Axis_0: innerConstraints = new S.BoxConstraints(_minChildExtent_get.call$0(), maxChildExtent, 0, constraints.maxHeight); break; case C.Axis_1: innerConstraints = new S.BoxConstraints(0, constraints.maxWidth, _minChildExtent_get.call$0(), maxChildExtent); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } childSize = layoutChild.call$2(child, innerConstraints); allocatedSize += _this._getMainSize$1(childSize); allocatedFlexSpace += maxChildExtent; crossSize = Math.max(crossSize, H.checkNum(_this._getCrossSize$1(childSize))); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } return new F._LayoutSizes(canFlex && _this._mainAxisSize === C.MainAxisSize_1 ? maxMainSize : allocatedSize, crossSize, allocatedSize); }, performLayout$0: function() { var child, t1, maxBaselineDistance, maxSizeAboveBaseline, maxSizeBelowBaseline, t2, distance, actualSizeDelta, remainingSpace, _leadingSpace_get, _leadingSpace_set, _betweenSpace_get, _betweenSpace_set, flipMainAxis, childMainPosition, t3, childCrossPosition, _this = this, _s80_ = string$.x60null_c, _box_0 = {}, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), sizes = _this._computeSizes$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_layoutChild$closure()), actualSize = sizes.mainSize, crossSize = sizes.crossSize; if (_this._flex$_crossAxisAlignment === C.CrossAxisAlignment_4) { child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData, maxBaselineDistance = 0, maxSizeAboveBaseline = 0, maxSizeBelowBaseline = 0; child != null;) { t2 = _this._flex$_textBaseline; t2.toString; distance = child.getDistanceToBaseline$2$onlyReal(t2, true); if (distance != null) { maxBaselineDistance = Math.max(maxBaselineDistance, distance); maxSizeAboveBaseline = Math.max(distance, maxSizeAboveBaseline); maxSizeBelowBaseline = Math.max(child._box$_size._dy - distance, maxSizeBelowBaseline); crossSize = Math.max(maxSizeAboveBaseline + maxSizeBelowBaseline, crossSize); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } else maxBaselineDistance = 0; switch (_this._flex$_direction) { case C.Axis_0: t1 = _this._box$_size = constraints.constrain$1(new P.Size(actualSize, crossSize)); actualSize = t1._dx; crossSize = t1._dy; break; case C.Axis_1: t1 = _this._box$_size = constraints.constrain$1(new P.Size(crossSize, actualSize)); actualSize = t1._dy; crossSize = t1._dx; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } actualSizeDelta = actualSize - sizes.allocatedSize; _this._overflow = Math.max(0, -actualSizeDelta); remainingSpace = Math.max(0, actualSizeDelta); _box_0._leadingSpace = $; _leadingSpace_get = new F.RenderFlex_performLayout__leadingSpace_get(_box_0); _leadingSpace_set = new F.RenderFlex_performLayout__leadingSpace_set(_box_0); _box_0._betweenSpace = $; _betweenSpace_get = new F.RenderFlex_performLayout__betweenSpace_get(_box_0); _betweenSpace_set = new F.RenderFlex_performLayout__betweenSpace_set(_box_0); t1 = F._startIsTopLeft(_this._flex$_direction, _this._flex$_textDirection, _this._flex$_verticalDirection); flipMainAxis = t1 === false; switch (_this._mainAxisAlignment) { case C.MainAxisAlignment_0: _leadingSpace_set.call$1(0); _betweenSpace_set.call$1(0); break; case C.MainAxisAlignment_1: _leadingSpace_set.call$1(remainingSpace); _betweenSpace_set.call$1(0); break; case C.MainAxisAlignment_2: _leadingSpace_set.call$1(remainingSpace / 2); _betweenSpace_set.call$1(0); break; case C.MainAxisAlignment_3: _leadingSpace_set.call$1(0); t1 = _this.ContainerRenderObjectMixin__childCount; _betweenSpace_set.call$1(t1 > 1 ? remainingSpace / (t1 - 1) : 0); break; case C.MainAxisAlignment_4: t1 = _this.ContainerRenderObjectMixin__childCount; _betweenSpace_set.call$1(t1 > 0 ? remainingSpace / t1 : 0); _leadingSpace_set.call$1(_betweenSpace_get.call$0() / 2); break; case C.MainAxisAlignment_5: t1 = _this.ContainerRenderObjectMixin__childCount; _betweenSpace_set.call$1(t1 > 0 ? remainingSpace / (t1 + 1) : 0); _leadingSpace_set.call$1(_betweenSpace_get.call$0()); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } childMainPosition = flipMainAxis ? actualSize - _leadingSpace_get.call$0() : _leadingSpace_get.call$0(); child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); t3 = _this._flex$_crossAxisAlignment; switch (t3) { case C.CrossAxisAlignment_0: case C.CrossAxisAlignment_1: if (F._startIsTopLeft(G.flipAxis(_this._flex$_direction), _this._flex$_textDirection, _this._flex$_verticalDirection) === (t3 === C.CrossAxisAlignment_0)) childCrossPosition = 0; else { t3 = child._box$_size; t3.toString; childCrossPosition = crossSize - _this._getCrossSize$1(t3); } break; case C.CrossAxisAlignment_2: t3 = child._box$_size; t3.toString; childCrossPosition = crossSize / 2 - _this._getCrossSize$1(t3) / 2; break; case C.CrossAxisAlignment_3: childCrossPosition = 0; break; case C.CrossAxisAlignment_4: if (_this._flex$_direction === C.Axis_0) { t3 = _this._flex$_textBaseline; t3.toString; distance = child.getDistanceToBaseline$2$onlyReal(t3, true); childCrossPosition = distance != null ? maxBaselineDistance - distance : 0; } else childCrossPosition = 0; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (flipMainAxis) { t3 = child._box$_size; t3.toString; childMainPosition -= _this._getMainSize$1(t3); } switch (_this._flex$_direction) { case C.Axis_0: t2.offset = new P.Offset(childMainPosition, childCrossPosition); break; case C.Axis_1: t2.offset = new P.Offset(childCrossPosition, childMainPosition); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (flipMainAxis) childMainPosition -= _betweenSpace_get.call$0(); else { t3 = child._box$_size; t3.toString; childMainPosition += _this._getMainSize$1(t3) + _betweenSpace_get.call$0(); } child = t2.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (!(_this._overflow > 1e-10)) { _this.defaultPaint$2(context, offset); return; } t1 = _this._box$_size; if (t1.get$isEmpty(t1)) return; if (_this._flex$_clipBehavior === C.Clip_0) { _this._flex$_clipRectLayer = null; _this.defaultPaint$2(context, offset); } else { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._flex$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$defaultPaint(), _this._flex$_clipBehavior, _this._flex$_clipRectLayer); } }, describeApproximatePaintClip$1: function(child) { var t1; if (this._overflow > 1e-10) { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, toStringShort$0: function() { var header = this.super$RenderObject$toStringShort(); return this._overflow > 1e-10 ? header + " OVERFLOWING" : header; } }; F.RenderFlex__getIntrinsicSize__crossSize_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._crossSize === $) return t2._crossSize = t1; else throw H.wrapException(H.LateError$localAI("crossSize")); }, $signature: 157 }; F.RenderFlex__getIntrinsicSize__mainSize_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._mainSize === $) return t2._mainSize = t1; else throw H.wrapException(H.LateError$localAI("mainSize")); }, $signature: 157 }; F.RenderFlex__getIntrinsicSize__mainSize_get.prototype = { call$0: function() { var t1 = this._box_0._mainSize; return t1 === $ ? H.throwExpression(H.LateError$localNI("mainSize")) : t1; }, $signature: 116 }; F.RenderFlex__getIntrinsicSize__crossSize_get.prototype = { call$0: function() { var t1 = this._box_0._crossSize; return t1 === $ ? H.throwExpression(H.LateError$localNI("crossSize")) : t1; }, $signature: 116 }; F.RenderFlex_computeMinIntrinsicWidth_closure.prototype = { call$2: function(child, extent) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, extent, child.get$computeMinIntrinsicWidth()); }, $signature: 203 }; F.RenderFlex_computeMaxIntrinsicWidth_closure.prototype = { call$2: function(child, extent) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, extent, child.get$computeMaxIntrinsicWidth()); }, $signature: 203 }; F.RenderFlex_computeMinIntrinsicHeight_closure.prototype = { call$2: function(child, extent) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, extent, child.get$computeMinIntrinsicHeight()); }, $signature: 203 }; F.RenderFlex_computeMaxIntrinsicHeight_closure.prototype = { call$2: function(child, extent) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, extent, child.get$computeMaxIntrinsicHeight()); }, $signature: 203 }; F.RenderFlex__computeSizes__minChildExtent_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._minChildExtent === $) return t2._minChildExtent = t1; else throw H.wrapException(H.LateError$localAI("minChildExtent")); }, $signature: 157 }; F.RenderFlex__computeSizes__minChildExtent_get.prototype = { call$0: function() { var t1 = this._box_0._minChildExtent; return t1 === $ ? H.throwExpression(H.LateError$localNI("minChildExtent")) : t1; }, $signature: 116 }; F.RenderFlex_performLayout__betweenSpace_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._betweenSpace === $) return t2._betweenSpace = t1; else throw H.wrapException(H.LateError$localAI("betweenSpace")); }, $signature: 157 }; F.RenderFlex_performLayout__leadingSpace_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._leadingSpace === $) return t2._leadingSpace = t1; else throw H.wrapException(H.LateError$localAI("leadingSpace")); }, $signature: 157 }; F.RenderFlex_performLayout__leadingSpace_get.prototype = { call$0: function() { var t1 = this._box_0._leadingSpace; return t1 === $ ? H.throwExpression(H.LateError$localNI("leadingSpace")) : t1; }, $signature: 116 }; F.RenderFlex_performLayout__betweenSpace_get.prototype = { call$0: function() { var t1 = this._box_0._betweenSpace; return t1 === $ ? H.throwExpression(H.LateError$localNI("betweenSpace")) : t1; }, $signature: 116 }; F._LayoutSizes.prototype = {}; F._RenderFlex_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.FlexParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin.prototype = {}; U.RenderImage.prototype = { _image$_resolve$0: function() { var _this = this; if (_this._image$_resolvedAlignment != null) return; _this._image$_resolvedAlignment = _this._image$_alignment; _this._flipHorizontally = false; }, _markNeedResolution$0: function() { this._flipHorizontally = this._image$_resolvedAlignment = null; this.markNeedsPaint$0(); }, set$image: function(_, value) { var _this = this, t1 = _this._image$_image; if (value == t1) return; if (value != null && t1 != null && value.isCloneOf$1(t1)) { value.dispose$0(0); return; } t1 = _this._image$_image; if (t1 != null) t1.dispose$0(0); _this._image$_image = value; _this.markNeedsPaint$0(); if (_this._image$_width == null || _this._image$_height == null) _this.markNeedsLayout$0(); }, set$width: function(_, value) { if (value == this._image$_width) return; this._image$_width = value; this.markNeedsLayout$0(); }, set$height: function(_, value) { if (value == this._image$_height) return; this._image$_height = value; this.markNeedsLayout$0(); }, set$scale: function(_, value) { if (value === this._image$_scale) return; this._image$_scale = value; this.markNeedsLayout$0(); }, _updateColorFilter$0: function() { this._colorFilter = null; }, set$color: function(_, value) { return; }, set$filterQuality: function(value) { if (value === this._image$_filterQuality) return; this._image$_filterQuality = value; this.markNeedsPaint$0(); }, set$colorBlendMode: function(value) { return; }, set$fit: function(value) { if (value == this._image$_fit) return; this._image$_fit = value; this.markNeedsPaint$0(); }, set$alignment: function(value) { if (value.$eq(0, this._image$_alignment)) return; this._image$_alignment = value; this._markNeedResolution$0(); }, set$repeat: function(_, value) { if (value === this._repeat) return; this._repeat = value; this.markNeedsPaint$0(); }, set$centerSlice: function(value) { return; }, set$invertColors: function(value) { if (value == this._invertColors) return; this._invertColors = value; this.markNeedsPaint$0(); }, set$matchTextDirection: function(value) { return; }, set$textDirection: function(_, value) { if (this._image$_textDirection == value) return; this._image$_textDirection = value; this._markNeedResolution$0(); }, _sizeForConstraints$1: function(constraints) { var t2, t3, _this = this, t1 = _this._image$_width; constraints = S.BoxConstraints$tightFor(_this._image$_height, t1).enforce$1(constraints); t1 = _this._image$_image; if (t1 == null) return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); t1 = t1.get$width(t1); t1.toString; t2 = _this._image$_scale; t3 = _this._image$_image; t3 = t3.get$height(t3); t3.toString; return constraints.constrainSizeAndAttemptToPreserveAspectRatio$1(new P.Size(t1 / t2, t3 / _this._image$_scale)); }, computeMinIntrinsicWidth$1: function(height) { if (this._image$_width == null && this._image$_height == null) return 0; return this._sizeForConstraints$1(S.BoxConstraints$tightForFinite(height, 1 / 0))._dx; }, computeMaxIntrinsicWidth$1: function(height) { return this._sizeForConstraints$1(S.BoxConstraints$tightForFinite(height, 1 / 0))._dx; }, computeMinIntrinsicHeight$1: function(width) { if (this._image$_width == null && this._image$_height == null) return 0; return this._sizeForConstraints$1(S.BoxConstraints$tightForFinite(1 / 0, width))._dy; }, computeMaxIntrinsicHeight$1: function(width) { return this._sizeForConstraints$1(S.BoxConstraints$tightForFinite(1 / 0, width))._dy; }, hitTestSelf$1: function(position) { return true; }, computeDryLayout$1: function(constraints) { return this._sizeForConstraints$1(constraints); }, performLayout$0: function() { this._box$_size = this._sizeForConstraints$1(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this))); }, paint$2: function(context, offset) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this; if (_this._image$_image == null) return; _this._image$_resolve$0(); t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = _this._image$_image; t6.toString; t7 = _this.debugImageLabel; t8 = _this._image$_scale; t9 = _this._colorFilter; t10 = _this._image$_fit; t11 = _this._image$_resolvedAlignment; t11.toString; t12 = _this._centerSlice; t13 = _this._repeat; t14 = _this._flipHorizontally; t14.toString; t15 = _this._invertColors; X.paintImage(t11, t1, t12, t9, t7, _this._image$_filterQuality, t10, t14, t6, t15, false, new P.Rect(t3, t4, t3 + t5, t4 + t2), t13, t8); } }; T.AnnotationEntry.prototype = { toString$0: function(_) { return "AnnotationEntry(annotation: " + this.annotation.toString$0(0) + ", localPosition: " + this.localPosition.toString$0(0) + ")"; } }; T.AnnotationResult.prototype = { add$1: function(_, entry) { return this._layer$_entries.push(entry); } }; T.Layer0.prototype = { markNeedsAddToScene$0: function() { if (this._needsAddToScene) return; this._needsAddToScene = true; }, get$alwaysNeedsAddToScene: function() { return false; }, set$engineLayer: function(value) { var t1, _this = this; _this._engineLayer = value; if (!_this.get$alwaysNeedsAddToScene()) { t1 = type$.nullable_ContainerLayer; if (t1._as(B.AbstractNode.prototype.get$parent.call(_this, _this)) != null && !t1._as(B.AbstractNode.prototype.get$parent.call(_this, _this)).get$alwaysNeedsAddToScene()) t1._as(B.AbstractNode.prototype.get$parent.call(_this, _this)).markNeedsAddToScene$0(); } }, updateSubtreeNeedsAddToScene$0: function() { this._needsAddToScene = this._needsAddToScene || this.get$alwaysNeedsAddToScene(); }, dropChild$1: function(child) { if (!this.get$alwaysNeedsAddToScene()) this.markNeedsAddToScene$0(); this.super$AbstractNode$dropChild(child); }, remove$0: function(_) { var t2, t3, _this = this, t1 = type$.nullable_ContainerLayer._as(B.AbstractNode.prototype.get$parent.call(_this, _this)); if (t1 != null) { t2 = _this._previousSibling; t3 = _this._nextSibling; if (t2 == null) t1._firstChild = t3; else t2._nextSibling = t3; t3 = _this._nextSibling; if (t3 == null) t1._lastChild = t2; else t3._previousSibling = t2; _this._nextSibling = _this._previousSibling = null; t1.dropChild$1(_this); } }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst) { return false; }, find$1$1: function(_, localPosition, $S) { var t1 = H.setRuntimeTypeInfo([], $S._eval$1("JSArray>")); this.findAnnotations$1$3$onlyFirst(new T.AnnotationResult(t1, $S._eval$1("AnnotationResult<0>")), localPosition, true, $S); return t1.length === 0 ? null : C.JSArray_methods.get$first(t1).annotation; }, _addToSceneWithRetainedRendering$1: function(builder) { var t1, _this = this; if (!_this._needsAddToScene && _this._engineLayer != null) { t1 = _this._engineLayer; t1.toString; builder.addRetained$1(t1); return; } _this.addToScene$1(builder); _this._needsAddToScene = false; }, toStringShort$0: function() { var t1 = this.super$DiagnosticableTreeMixin$toStringShort(); return t1 + (this._node$_owner == null ? " DETACHED" : ""); }, $isDiagnosticableTree: 1 }; T.PictureLayer.prototype = { addToScene$2: function(builder, layerOffset) { var t1 = this._picture; t1.toString; builder.addPicture$4$isComplexHint$willChangeHint(layerOffset, t1, this._isComplexHint, this._willChangeHint); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst) { return false; } }; T.PlatformViewLayer.prototype = { addToScene$2: function(builder, layerOffset) { var t1, t2, shiftedRect = this.rect; shiftedRect = layerOffset.$eq(0, C.Offset_0_0) ? shiftedRect : shiftedRect.shift$1(layerOffset); t1 = shiftedRect.left; t2 = shiftedRect.top; builder.addPlatformView$4$height$offset$width(this.viewId, shiftedRect.bottom - t2, new P.Offset(t1, t2), shiftedRect.right - t1); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.PerformanceOverlayLayer.prototype = { addToScene$2: function(builder, layerOffset) { var shiftedOverlayRect = this._overlayRect; shiftedOverlayRect = layerOffset.$eq(0, C.Offset_0_0) ? shiftedOverlayRect : shiftedOverlayRect.shift$1(layerOffset); builder.addPerformanceOverlay$2(this.optionsMask, shiftedOverlayRect); builder.setRasterizerTracingThreshold$1(this.rasterizerThreshold); builder.setCheckerboardRasterCacheImages$1(false); builder.setCheckerboardOffscreenLayers$1(false); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst) { return false; } }; T.ContainerLayer0.prototype = { buildScene$1: function(builder) { this.updateSubtreeNeedsAddToScene$0(); this.addToScene$1(builder); this._needsAddToScene = false; return builder.build$0(0); }, updateSubtreeNeedsAddToScene$0: function() { var child, _this = this; _this.super$Layer$updateSubtreeNeedsAddToScene(); child = _this._firstChild; for (; child != null;) { child.updateSubtreeNeedsAddToScene$0(); _this._needsAddToScene = _this._needsAddToScene || child._needsAddToScene; child = child._nextSibling; } }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { var child, t1, t2; for (child = this._lastChild, t1 = result._layer$_entries; child != null; child = child._previousSibling) { if (child.findAnnotations$1$3$onlyFirst(result, localPosition, true, $S)) return true; t2 = t1.length; if (t2 !== 0) return false; } return false; }, attach$1: function(owner) { var child; this.super$AbstractNode$attach(owner); child = this._firstChild; for (; child != null;) { child.attach$1(owner); child = child._nextSibling; } }, detach$0: function(_) { var child; this.super$AbstractNode$detach(0); child = this._firstChild; for (; child != null;) { child.detach$0(0); child = child._nextSibling; } }, append$1: function(_, child) { var t1, _this = this; if (!_this.get$alwaysNeedsAddToScene()) _this.markNeedsAddToScene$0(); _this.super$AbstractNode$adoptChild(child); t1 = child._previousSibling = _this._lastChild; if (t1 != null) t1._nextSibling = child; _this._lastChild = child; if (_this._firstChild == null) _this._firstChild = child; }, removeAllChildren$0: function() { var next, _this = this, child = _this._firstChild; for (; child != null; child = next) { next = child._nextSibling; child._nextSibling = child._previousSibling = null; if (!_this.get$alwaysNeedsAddToScene()) _this.markNeedsAddToScene$0(); _this.super$AbstractNode$dropChild(child); } _this._lastChild = _this._firstChild = null; }, addToScene$2: function(builder, layerOffset) { this.addChildrenToScene$2(builder, layerOffset); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, addChildrenToScene$2: function(builder, childOffset) { var t1, t2, t3, child = this._firstChild; for (t1 = 0 === childOffset._dx, t2 = 0 === childOffset._dy; child != null;) { t3 = t1 && t2; if (t3) child._addToSceneWithRetainedRendering$1(builder); else child.addToScene$2(builder, childOffset); child = child._nextSibling; } }, addChildrenToScene$1: function(builder) { return this.addChildrenToScene$2(builder, C.Offset_0_0); }, applyTransform$2: function(child, transform) { }, debugDescribeChildren$0: function() { var count, children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), child = this._firstChild; if (child == null) return children; for (count = 1; true;) { child.toString; children.push(new Y.DiagnosticableTreeNode(child, "child " + count, true, true, null, null)); if (child === this._lastChild) break; ++count; child = child._nextSibling; } return children; } }; T.OffsetLayer.prototype = { set$offset: function(_, value) { if (!value.$eq(0, this._layer$_offset)) this.markNeedsAddToScene$0(); this._layer$_offset = value; }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { return this.super$ContainerLayer$findAnnotations(result, localPosition.$sub(0, this._layer$_offset), true, $S); }, applyTransform$2: function(child, transform) { var t1 = this._layer$_offset; transform.multiply$1(0, E.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)); }, addToScene$2: function(builder, layerOffset) { var _this = this, t1 = _this._layer$_offset; _this.set$engineLayer(builder.pushOffset$3$oldLayer(layerOffset._dx + t1._dx, layerOffset._dy + t1._dy, type$.nullable_OffsetEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.ClipRectLayer.prototype = { findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { if (!this._clipRect.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$2: function(builder, layerOffset) { var shiftedClipRect, _this = this, t1 = layerOffset.$eq(0, C.Offset_0_0), t2 = _this._clipRect; if (t1) { t2.toString; shiftedClipRect = t2; } else shiftedClipRect = t2.shift$1(layerOffset); _this.set$engineLayer(builder.pushClipRect$3$clipBehavior$oldLayer(shiftedClipRect, _this._layer$_clipBehavior, type$.nullable_ClipRectEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$2(builder, layerOffset); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.ClipRRectLayer.prototype = { findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { if (!this._clipRRect.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$2: function(builder, layerOffset) { var shiftedClipRRect, _this = this, t1 = layerOffset.$eq(0, C.Offset_0_0), t2 = _this._clipRRect; if (t1) { t2.toString; shiftedClipRRect = t2; } else shiftedClipRRect = t2.shift$1(layerOffset); _this.set$engineLayer(builder.pushClipRRect$3$clipBehavior$oldLayer(shiftedClipRRect, _this._layer$_clipBehavior, type$.nullable_ClipRRectEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$2(builder, layerOffset); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.ClipPathLayer.prototype = { findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { if (!this._clipPath.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$2: function(builder, layerOffset) { var shiftedPath, _this = this, t1 = layerOffset.$eq(0, C.Offset_0_0), t2 = _this._clipPath; if (t1) { t2.toString; shiftedPath = t2; } else shiftedPath = t2.shift$1(layerOffset); _this.set$engineLayer(builder.pushClipPath$3$clipBehavior$oldLayer(shiftedPath, _this._layer$_clipBehavior, type$.nullable_ClipPathEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$2(builder, layerOffset); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.TransformLayer.prototype = { set$transform: function(_, value) { var _this = this; if (value.$eq(0, _this._layer$_transform)) return; _this._layer$_transform = value; _this._inverseDirty = true; _this.markNeedsAddToScene$0(); }, addToScene$2: function(builder, layerOffset) { var totalOffset, t1, t2, _this = this; _this._lastEffectiveTransform = _this._layer$_transform; totalOffset = _this._layer$_offset.$add(0, layerOffset); if (!totalOffset.$eq(0, C.Offset_0_0)) { t1 = E.Matrix4_Matrix4$translationValues(totalOffset._dx, totalOffset._dy, 0); t2 = _this._lastEffectiveTransform; t2.toString; t1.multiply$1(0, t2); _this._lastEffectiveTransform = t1; } _this.set$engineLayer(builder.pushTransform$2$oldLayer(_this._lastEffectiveTransform._m4storage, type$.nullable_TransformEngineLayer._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, _transformOffset$1: function(localPosition) { var t1, _this = this; if (_this._inverseDirty) { t1 = _this._layer$_transform; t1.toString; _this._invertedTransform = E.Matrix4_tryInvert(F.PointerEvent_removePerspectiveTransform(t1)); _this._inverseDirty = false; } t1 = _this._invertedTransform; if (t1 == null) return null; return T.MatrixUtils_transformPoint(t1, localPosition); }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { var transformedOffset = this._transformOffset$1(localPosition); if (transformedOffset == null) return false; return this.super$OffsetLayer$findAnnotations(result, transformedOffset, true, $S); }, applyTransform$2: function(child, transform) { var t1 = this._lastEffectiveTransform; if (t1 == null) { t1 = this._layer$_transform; t1.toString; transform.multiply$1(0, t1); } else transform.multiply$1(0, t1); } }; T.OpacityLayer.prototype = { applyTransform$2: function(child, transform) { var t1 = this._layer$_offset; transform.translate$2(0, t1._dx, t1._dy); }, addToScene$2: function(builder, layerOffset) { var t1, _this = this, enabled = _this._firstChild != null; if (enabled) { t1 = _this._layer$_alpha; t1.toString; _this.set$engineLayer(builder.pushOpacity$3$offset$oldLayer(t1, _this._layer$_offset.$add(0, layerOffset), type$.nullable_OpacityEngineLayer._as(_this._engineLayer))); } else _this.set$engineLayer(null); _this.addChildrenToScene$1(builder); if (enabled) builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.PhysicalModelLayer.prototype = { set$clipPath: function(_, value) { if (value !== this._clipPath) { this._clipPath = value; this.markNeedsAddToScene$0(); } }, set$clipBehavior: function(value) { if (value !== this._layer$_clipBehavior) { this._layer$_clipBehavior = value; this.markNeedsAddToScene$0(); } }, set$elevation: function(_, value) { if (value != this._layer$_elevation) { this._layer$_elevation = value; this.markNeedsAddToScene$0(); } }, set$color: function(_, value) { if (!J.$eq$(value, this._layer$_color)) { this._layer$_color = value; this.markNeedsAddToScene$0(); } }, set$shadowColor: function(_, value) { if (!J.$eq$(value, this._layer$_shadowColor)) { this._layer$_shadowColor = value; this.markNeedsAddToScene$0(); } }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { if (!this._clipPath.contains$1(0, localPosition)) return false; return this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S); }, addToScene$2: function(builder, layerOffset) { var t3, t4, _this = this, t1 = layerOffset.$eq(0, C.Offset_0_0), t2 = _this._clipPath; if (t1) { t2.toString; t1 = t2; } else t1 = t2.shift$1(layerOffset); t2 = _this._layer$_elevation; t2.toString; t3 = _this._layer$_color; t3.toString; t4 = _this._layer$_shadowColor; _this.set$engineLayer(builder.pushPhysicalShape$6$clipBehavior$color$elevation$oldLayer$path$shadowColor(_this._layer$_clipBehavior, t3, t2, type$.nullable_PhysicalShapeEngineLayer._as(_this._engineLayer), t1, t4)); _this.addChildrenToScene$2(builder, layerOffset); builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); } }; T.LayerLink.prototype = { toString$0: function(_) { var t1 = "#" + Y.shortHash(this) + "("; return t1 + (this._leader != null ? "" : "") + ")"; } }; T.LeaderLayer.prototype = { get$alwaysNeedsAddToScene: function() { return true; }, attach$1: function(owner) { var _this = this; _this.super$ContainerLayer$attach(owner); _this._lastOffset = null; _this._layer$_link._leader = _this; }, detach$0: function(_) { this._lastOffset = this._layer$_link._leader = null; this.super$ContainerLayer$detach(0); }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { return this.super$ContainerLayer$findAnnotations(result, localPosition.$sub(0, this.offset), true, $S); }, addToScene$2: function(builder, layerOffset) { var _this = this, t1 = _this.offset.$add(0, layerOffset); _this._lastOffset = t1; if (!t1.$eq(0, C.Offset_0_0)) { t1 = _this._lastOffset; _this.set$engineLayer(builder.pushTransform$2$oldLayer(E.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)._m4storage, type$.nullable_TransformEngineLayer._as(_this._engineLayer))); } _this.addChildrenToScene$1(builder); if (!J.$eq$(_this._lastOffset, C.Offset_0_0)) builder.pop$0(0); }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, applyTransform$2: function(child, transform) { var t1; if (!J.$eq$(this._lastOffset, C.Offset_0_0)) { t1 = this._lastOffset; transform.translate$2(0, t1._dx, t1._dy); } } }; T.FollowerLayer.prototype = { _transformOffset$1: function(localPosition) { var t1, vector, t2, t3, _this = this; if (_this._inverseDirty) { t1 = _this.getLastTransform$0(); t1.toString; _this._invertedTransform = E.Matrix4_tryInvert(t1); _this._inverseDirty = false; } if (_this._invertedTransform == null) return null; vector = new E.Vector4(new Float64Array(4)); vector.setValues$4(localPosition._dx, localPosition._dy, 0, 1); t1 = _this._invertedTransform.transform$1(0, vector)._v4storage; t2 = t1[0]; t3 = _this.linkedOffset; return new P.Offset(t2 - t3._dx, t1[1] - t3._dy); }, findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { var transformedOffset; if (this._layer$_link._leader == null) return false; transformedOffset = this._transformOffset$1(localPosition); if (transformedOffset == null) return false; return this.super$ContainerLayer$findAnnotations(result, transformedOffset, true, $S); }, getLastTransform$0: function() { var t1, result; if (this._lastTransform == null) return null; t1 = this._lastOffset; result = E.Matrix4_Matrix4$translationValues(-t1._dx, -t1._dy, 0); t1 = this._lastTransform; t1.toString; result.multiply$1(0, t1); return result; }, _establishTransform$0: function() { var leader, t1, forwardLayers, inverseLayers, forwardTransform, inverseTransform, _this = this; _this._lastTransform = null; leader = _this._layer$_link._leader; if (leader == null) return; t1 = type$.JSArray_ContainerLayer; forwardLayers = H.setRuntimeTypeInfo([leader], t1); inverseLayers = H.setRuntimeTypeInfo([_this], t1); T.FollowerLayer__pathsToCommonAncestor(leader, _this, forwardLayers, inverseLayers); forwardTransform = T.FollowerLayer__collectTransformForLayerChain(forwardLayers); leader.applyTransform$2(null, forwardTransform); t1 = _this.linkedOffset; forwardTransform.translate$2(0, t1._dx, t1._dy); inverseTransform = T.FollowerLayer__collectTransformForLayerChain(inverseLayers); if (inverseTransform.copyInverse$1(inverseTransform) === 0) return; inverseTransform.multiply$1(0, forwardTransform); _this._lastTransform = inverseTransform; _this._inverseDirty = true; }, get$alwaysNeedsAddToScene: function() { return true; }, addToScene$2: function(builder, layerOffset) { var t1, t2, _this = this; if (_this._layer$_link._leader == null && true) { _this._lastOffset = _this._lastTransform = null; _this._inverseDirty = true; _this.set$engineLayer(null); return; } _this._establishTransform$0(); t1 = _this._lastTransform; t2 = type$.nullable_TransformEngineLayer; if (t1 != null) { _this.set$engineLayer(builder.pushTransform$2$oldLayer(t1._m4storage, t2._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); _this._lastOffset = _this.unlinkedOffset.$add(0, layerOffset); } else { _this._lastOffset = null; t1 = _this.unlinkedOffset; _this.set$engineLayer(builder.pushTransform$2$oldLayer(E.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)._m4storage, t2._as(_this._engineLayer))); _this.addChildrenToScene$1(builder); builder.pop$0(0); } _this._inverseDirty = true; }, addToScene$1: function(builder) { return this.addToScene$2(builder, C.Offset_0_0); }, applyTransform$2: function(child, transform) { var t1 = this._lastTransform; if (t1 != null) transform.multiply$1(0, t1); else { t1 = this.unlinkedOffset; transform.multiply$1(0, E.Matrix4_Matrix4$translationValues(t1._dx, t1._dy, 0)); } } }; T.AnnotatedRegionLayer.prototype = { findAnnotations$1$3$onlyFirst: function(result, localPosition, onlyFirst, $S) { var t2, t3, t4, _this = this, isAbsorbed = _this.super$ContainerLayer$findAnnotations(result, localPosition, true, $S), t1 = result._layer$_entries; if (t1.length !== 0 && true) return isAbsorbed; t2 = _this.size; if (t2 != null) { t3 = _this.offset; t4 = t3._dx; t3 = t3._dy; t2 = !new P.Rect(t4, t3, t4 + t2._dx, t3 + t2._dy).contains$1(0, localPosition); } else t2 = false; if (t2) return isAbsorbed; if (H.createRuntimeType(_this.$ti._precomputed1) === H.createRuntimeType($S)) { isAbsorbed = isAbsorbed || false; t1.push(new T.AnnotationEntry($S._as(_this.value), localPosition.$sub(0, _this.offset), $S._eval$1("AnnotationEntry<0>"))); } return isAbsorbed; }, get$value: function(receiver) { return this.value; } }; T._Layer_AbstractNode_DiagnosticableTreeMixin.prototype = {}; R.ListBodyParentData.prototype = {}; R.RenderListBody.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof R.ListBodyParentData)) child.parentData = new R.ListBodyParentData(null, null, C.Offset_0_0); }, set$axisDirection: function(value) { if (this._list_body$_axisDirection === value) return; this._list_body$_axisDirection = value; this.markNeedsLayout$0(); }, computeDryLayout$1: function(constraints) { var t1, innerConstraints, t2, mainAxisExtent, t3, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; switch (_this._list_body$_axisDirection) { case C.AxisDirection_1: case C.AxisDirection_3: t1 = constraints.maxHeight; innerConstraints = S.BoxConstraints$tightFor(t1, null); for (t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0; child != null;) { mainAxisExtent += child.getDryLayout$1(innerConstraints)._dx; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; } return constraints.constrain$1(new P.Size(mainAxisExtent, t1)); case C.AxisDirection_0: case C.AxisDirection_2: t1 = constraints.maxWidth; innerConstraints = S.BoxConstraints$tightFor(null, t1); for (t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0; child != null;) { mainAxisExtent += child.getDryLayout$1(innerConstraints)._dy; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; } return constraints.constrain$1(new P.Size(t1, mainAxisExtent)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, performLayout$0: function() { var t1, innerConstraints, t2, mainAxisExtent, t3, position, _this = this, _null = null, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), child = _this.ContainerRenderObjectMixin__firstChild; switch (_this._list_body$_axisDirection) { case C.AxisDirection_1: t1 = constraints.maxHeight; innerConstraints = S.BoxConstraints$tightFor(t1, _null); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); t3.offset = new P.Offset(mainAxisExtent, 0); mainAxisExtent += child._box$_size._dx; child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new P.Size(mainAxisExtent, t1)); break; case C.AxisDirection_3: t1 = constraints.maxHeight; innerConstraints = S.BoxConstraints$tightFor(t1, _null); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); mainAxisExtent += child._box$_size._dx; child = t3.ContainerParentDataMixin_nextSibling; } child = _this.ContainerRenderObjectMixin__firstChild; for (position = 0; child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); position += child._box$_size._dx; t3.offset = new P.Offset(mainAxisExtent - position, 0); child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new P.Size(mainAxisExtent, t1)); break; case C.AxisDirection_2: t1 = constraints.maxWidth; innerConstraints = S.BoxConstraints$tightFor(_null, t1); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); t3.offset = new P.Offset(0, mainAxisExtent); mainAxisExtent += child._box$_size._dy; child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new P.Size(t1, mainAxisExtent)); break; case C.AxisDirection_0: t1 = constraints.maxWidth; innerConstraints = S.BoxConstraints$tightFor(_null, t1); for (t2 = type$.ListBodyParentData, mainAxisExtent = 0; child != null;) { child.layout$2$parentUsesSize(0, innerConstraints, true); t3 = child.parentData; t3.toString; t2._as(t3); mainAxisExtent += child._box$_size._dy; child = t3.ContainerParentDataMixin_nextSibling; } child = _this.ContainerRenderObjectMixin__firstChild; for (position = 0; child != null;) { t3 = child.parentData; t3.toString; t2._as(t3); position += child._box$_size._dy; t3.offset = new P.Offset(0, mainAxisExtent - position); child = t3.ContainerParentDataMixin_nextSibling; } _this._box$_size = constraints.constrain$1(new P.Size(t1, mainAxisExtent)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getIntrinsicCrossAxis$1: function(childSize) { var t1, extent, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, extent = 0; child != null;) { extent = Math.max(extent, H.checkNum(childSize.call$1(child))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return extent; }, _getIntrinsicMainAxis$1: function(childSize) { var t1, extent, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData, extent = 0; child != null;) { extent += childSize.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return extent; }, computeMinIntrinsicWidth$1: function(height) { switch (G.axisDirectionToAxis(this._list_body$_axisDirection)) { case C.Axis_0: return this._getIntrinsicMainAxis$1(new R.RenderListBody_computeMinIntrinsicWidth_closure(height)); case C.Axis_1: return this._getIntrinsicCrossAxis$1(new R.RenderListBody_computeMinIntrinsicWidth_closure0(height)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicWidth$1: function(height) { switch (G.axisDirectionToAxis(this._list_body$_axisDirection)) { case C.Axis_0: return this._getIntrinsicMainAxis$1(new R.RenderListBody_computeMaxIntrinsicWidth_closure(height)); case C.Axis_1: return this._getIntrinsicCrossAxis$1(new R.RenderListBody_computeMaxIntrinsicWidth_closure0(height)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicHeight$1: function(width) { switch (G.axisDirectionToAxis(this._list_body$_axisDirection)) { case C.Axis_0: return this._getIntrinsicMainAxis$1(new R.RenderListBody_computeMinIntrinsicHeight_closure(width)); case C.Axis_1: return this._getIntrinsicCrossAxis$1(new R.RenderListBody_computeMinIntrinsicHeight_closure0(width)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicHeight$1: function(width) { switch (G.axisDirectionToAxis(this._list_body$_axisDirection)) { case C.Axis_0: return this._getIntrinsicMainAxis$1(new R.RenderListBody_computeMaxIntrinsicHeight_closure(width)); case C.Axis_1: return this._getIntrinsicCrossAxis$1(new R.RenderListBody_computeMaxIntrinsicHeight_closure0(width)); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeDistanceToActualBaseline$1: function(baseline) { return this.defaultComputeDistanceToFirstActualBaseline$1(baseline); }, paint$2: function(context, offset) { this.defaultPaint$2(context, offset); }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); } }; R.RenderListBody_computeMinIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 77 }; R.RenderListBody_computeMinIntrinsicWidth_closure0.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 77 }; R.RenderListBody_computeMaxIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 77 }; R.RenderListBody_computeMaxIntrinsicWidth_closure0.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 77 }; R.RenderListBody_computeMinIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 77 }; R.RenderListBody_computeMinIntrinsicHeight_closure0.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 77 }; R.RenderListBody_computeMaxIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 77 }; R.RenderListBody_computeMaxIntrinsicHeight_closure0.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 77 }; R._RenderListBody_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.ListBodyParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; R._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; A._MouseState.prototype = { replaceAnnotations$1: function(value) { var previous = this._annotations; this._annotations = value; return previous; }, toString$0: function(_) { var _s16_ = "#", describeLatestEvent = "latestEvent: " + (_s16_ + Y.shortHash(this._latestEvent)), t1 = this._annotations, describeAnnotations = "annotations: [list of " + t1.get$length(t1) + "]"; return _s16_ + Y.shortHash(this) + "(" + describeLatestEvent + ", " + describeAnnotations + ")"; } }; A._MouseTrackerUpdateDetails.prototype = { get$device: function(_) { var t1 = this.previousEvent; return t1.get$device(t1); } }; A.MouseTracker.prototype = { _hitTestResultToAnnotations$1: function(result) { var t2, t3, _i, entry, t4, t5, t1 = type$.MouseTrackerAnnotation, annotations = type$.LinkedHashMap_MouseTrackerAnnotation_Matrix4._as(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Matrix4)); for (t2 = result._hit_test$_path, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { entry = t2[_i]; if (t1._is(entry.get$target(entry))) { t4 = t1._as(entry.get$target(entry)); t5 = entry._transform; t5.toString; annotations.$indexSet(0, t4, t5); } } return annotations; }, _findAnnotations$2: function(state, hitTest) { var t1 = state._latestEvent, globalPosition = t1.get$position(t1); t1 = state._latestEvent; if (!this._mouseStates.containsKey$1(0, t1.get$device(t1))) return type$.LinkedHashMap_MouseTrackerAnnotation_Matrix4._as(P.LinkedHashMap_LinkedHashMap$_empty(type$.MouseTrackerAnnotation, type$.Matrix4)); return this._hitTestResultToAnnotations$1(hitTest.call$1(globalPosition)); }, _handleDeviceUpdate$1: function(details) { var t1, t2; A.MouseTracker__handleDeviceUpdateMouseEvents(details); t1 = details.get$device(details); t2 = details.nextAnnotations; t2 = t2.get$keys(t2); this._mouseCursorMixin.handleDeviceCursorUpdate$3(t1, details.triggeringEvent, H.MappedIterable_MappedIterable(t2, new A.MouseTracker__handleDeviceUpdate_closure(), H._instanceType(t2)._eval$1("Iterable.E"), type$.MouseCursor)); }, updateWithEvent$2: function($event, getResult) { var device, t1, existingState, mouseWasConnected, result = type$.PointerRemovedEvent._is($event) ? O.HitTestResult$() : getResult.call$0(); if ($event.get$kind($event) !== C.PointerDeviceKind_1) return; if (type$.PointerSignalEvent._is($event)) return; device = $event.get$device($event); t1 = this._mouseStates; existingState = t1.$index(0, device); if (!A.MouseTracker__shouldMarkStateDirty(existingState, $event)) return; mouseWasConnected = t1.get$isNotEmpty(t1); new A.MouseTracker_updateWithEvent_closure(this, existingState, $event, device, result).call$0(); if (mouseWasConnected !== t1.get$isNotEmpty(t1)) this.notifyListeners$0(); }, updateAllDevices$1: function(hitTest) { new A.MouseTracker_updateAllDevices_closure(this, hitTest).call$0(); } }; A.MouseTracker__handleDeviceUpdate_closure.prototype = { call$1: function(annotaion) { return annotaion.get$cursor(annotaion); }, $signature: 2438 }; A.MouseTracker_updateWithEvent_closure.prototype = { call$0: function() { var _this = this; new A.MouseTracker_updateWithEvent__closure(_this.$this, _this.existingState, _this.event, _this.device, _this.result).call$0(); }, $signature: 0 }; A.MouseTracker_updateWithEvent__closure.prototype = { call$0: function() { var t2, t3, targetState, previous, nextAnnotations, _this = this, t1 = _this.existingState; if (t1 == null) { t2 = _this.event; _this.$this._mouseStates.$indexSet(0, _this.device, new A._MouseState(P.LinkedHashMap_LinkedHashMap(null, null, type$.MouseTrackerAnnotation, type$.Matrix4), t2)); } else { t2 = _this.event; if (type$.PointerRemovedEvent._is(t2)) _this.$this._mouseStates.remove$1(0, t2.get$device(t2)); } t3 = _this.$this; targetState = t3._mouseStates.$index(0, _this.device); if (targetState == null) { t1.toString; targetState = t1; } previous = targetState._latestEvent; targetState._latestEvent = t2; nextAnnotations = type$.PointerRemovedEvent._is(t2) ? type$.LinkedHashMap_MouseTrackerAnnotation_Matrix4._as(P.LinkedHashMap_LinkedHashMap$_empty(type$.MouseTrackerAnnotation, type$.Matrix4)) : t3._hitTestResultToAnnotations$1(_this.result); t3._handleDeviceUpdate$1(new A._MouseTrackerUpdateDetails(targetState.replaceAnnotations$1(nextAnnotations), nextAnnotations, previous, t2)); }, $signature: 0 }; A.MouseTracker_updateAllDevices_closure.prototype = { call$0: function() { var t1, t2, t3, t4, lastEvent, nextAnnotations, previous; for (t1 = this.$this, t2 = t1._mouseStates, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2), t3 = this.hitTest; t2.moveNext$0();) { t4 = t2.get$current(t2); lastEvent = t4._latestEvent; nextAnnotations = t1._findAnnotations$2(t4, t3); previous = t4._annotations; t4._annotations = nextAnnotations; t1._handleDeviceUpdate$1(new A._MouseTrackerUpdateDetails(previous, nextAnnotations, lastEvent, null)); } }, $signature: 0 }; A.MouseTracker__handleDeviceUpdateMouseEvents_closure.prototype = { call$2: function(annotation, transform) { var t1; if (!this.nextAnnotations.containsKey$1(0, annotation)) if (annotation.get$validForMouseTracker() && annotation.get$onExit(annotation) != null) { t1 = annotation.get$onExit(annotation); t1.toString; t1.call$1(this.baseExitEvent.transformed$1(this.lastAnnotations.$index(0, annotation))); } }, $signature: 2441 }; A.MouseTracker__handleDeviceUpdateMouseEvents_closure0.prototype = { call$1: function(annotation) { return !this.lastAnnotations.containsKey$1(0, annotation); }, $signature: 2445 }; A.__MouseTrackerUpdateDetails_Object_Diagnosticable.prototype = {}; K.ParentData.prototype = { detach$0: function(_) { }, toString$0: function(_) { return ""; } }; K.PaintingContext.prototype = { paintChild$2: function(child, offset) { var t1; if (child.get$isRepaintBoundary()) { this.stopRecordingIfNeeded$0(); if (child._needsPaint) K.PaintingContext__repaintCompositedChild(child, null, true); t1 = child._layer; t1.toString; type$.OffsetLayer._as(t1).set$offset(0, offset); t1 = child._layer; t1.toString; this.appendLayer$1(t1); } else child._paintWithContext$2(this, offset); }, appendLayer$1: function(layer) { layer.remove$0(0); this._containerLayer.append$1(0, layer); }, get$canvas: function(_) { var t1, _this = this; if (_this._canvas == null) { _this._currentLayer = new T.PictureLayer(_this.estimatedBounds); t1 = P.PictureRecorder_PictureRecorder(); _this._recorder = t1; _this._canvas = P.Canvas_Canvas(t1, null); t1 = _this._currentLayer; t1.toString; _this._containerLayer.append$1(0, t1); } t1 = _this._canvas; t1.toString; return t1; }, stopRecordingIfNeeded$0: function() { var t1, t2, _this = this; if (_this._canvas == null) return; t1 = _this._currentLayer; t1.toString; t2 = _this._recorder.endRecording$0(); t1.markNeedsAddToScene$0(); t1._picture = t2; _this._canvas = _this._recorder = _this._currentLayer = null; }, setIsComplexHint$0: function() { var t1 = this._currentLayer; if (t1 != null) if (!t1._isComplexHint) { t1._isComplexHint = true; t1.markNeedsAddToScene$0(); } }, pushLayer$4$childPaintBounds: function(childLayer, painter, offset, childPaintBounds) { var childContext, _this = this; if (childLayer._firstChild != null) childLayer.removeAllChildren$0(); _this.stopRecordingIfNeeded$0(); _this.appendLayer$1(childLayer); childContext = _this.createChildContext$2(childLayer, childPaintBounds == null ? _this.estimatedBounds : childPaintBounds); painter.call$2(childContext, offset); childContext.stopRecordingIfNeeded$0(); }, pushLayer$3: function(childLayer, painter, offset) { return this.pushLayer$4$childPaintBounds(childLayer, painter, offset, null); }, createChildContext$2: function(childLayer, bounds) { return new K.PaintingContext(childLayer, bounds); }, pushClipRect$6$clipBehavior$oldLayer: function(needsCompositing, offset, clipRect, painter, clipBehavior, oldLayer) { var layer, offsetClipRect = clipRect.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new T.ClipRectLayer(C.Clip_1) : oldLayer; if (!offsetClipRect.$eq(0, layer._clipRect)) { layer._clipRect = offsetClipRect; layer.markNeedsAddToScene$0(); } if (clipBehavior !== layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetClipRect); return layer; } else { this.clipRectAndPaint$4(offsetClipRect, clipBehavior, offsetClipRect, new K.PaintingContext_pushClipRect_closure(this, painter, offset)); return null; } }, pushClipRect$5$clipBehavior: function(needsCompositing, offset, clipRect, painter, clipBehavior) { return this.pushClipRect$6$clipBehavior$oldLayer(needsCompositing, offset, clipRect, painter, clipBehavior, null); }, pushClipRRect$7$clipBehavior$oldLayer: function(needsCompositing, offset, bounds, clipRRect, painter, clipBehavior, oldLayer) { var layer, offsetBounds = bounds.shift$1(offset), offsetClipRRect = clipRRect.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new T.ClipRRectLayer(C.Clip_2) : oldLayer; if (!offsetClipRRect.$eq(0, layer._clipRRect)) { layer._clipRRect = offsetClipRRect; layer.markNeedsAddToScene$0(); } if (clipBehavior !== layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetBounds); return layer; } else { this.clipRRectAndPaint$4(offsetClipRRect, clipBehavior, offsetBounds, new K.PaintingContext_pushClipRRect_closure(this, painter, offset)); return null; } }, pushClipRRect$6$oldLayer: function(needsCompositing, offset, bounds, clipRRect, painter, oldLayer) { return this.pushClipRRect$7$clipBehavior$oldLayer(needsCompositing, offset, bounds, clipRRect, painter, C.Clip_2, oldLayer); }, pushClipPath$7$clipBehavior$oldLayer: function(needsCompositing, offset, bounds, clipPath, painter, clipBehavior, oldLayer) { var layer, offsetBounds = bounds.shift$1(offset), offsetClipPath = clipPath.shift$1(offset); if (needsCompositing) { layer = oldLayer == null ? new T.ClipPathLayer(C.Clip_2) : oldLayer; if (offsetClipPath !== layer._clipPath) { layer._clipPath = offsetClipPath; layer.markNeedsAddToScene$0(); } if (clipBehavior !== layer._layer$_clipBehavior) { layer._layer$_clipBehavior = clipBehavior; layer.markNeedsAddToScene$0(); } this.pushLayer$4$childPaintBounds(layer, painter, offset, offsetBounds); return layer; } else { this.clipPathAndPaint$4(offsetClipPath, clipBehavior, offsetBounds, new K.PaintingContext_pushClipPath_closure(this, painter, offset)); return null; } }, pushTransform$5$oldLayer: function(needsCompositing, offset, transform, painter, oldLayer) { var layer, _this = this, t1 = offset._dx, t2 = offset._dy, effectiveTransform = E.Matrix4_Matrix4$translationValues(t1, t2, 0); effectiveTransform.multiply$1(0, transform); effectiveTransform.translate$2(0, -t1, -t2); if (needsCompositing) { layer = oldLayer == null ? new T.TransformLayer(null, C.Offset_0_0) : oldLayer; layer.set$transform(0, effectiveTransform); _this.pushLayer$4$childPaintBounds(layer, painter, offset, T.MatrixUtils_inverseTransformRect(effectiveTransform, _this.estimatedBounds)); return layer; } else { t1 = _this.get$canvas(_this); t1.save$0(0); t1.transform$1(0, effectiveTransform._m4storage); painter.call$2(_this, offset); _this.get$canvas(_this).restore$0(0); return null; } }, pushTransform$4: function(needsCompositing, offset, transform, painter) { return this.pushTransform$5$oldLayer(needsCompositing, offset, transform, painter, null); }, pushOpacity$4$oldLayer: function(offset, alpha, painter, oldLayer) { var layer = oldLayer == null ? new T.OpacityLayer(C.Offset_0_0) : oldLayer; if (alpha != layer._layer$_alpha) { layer._layer$_alpha = alpha; layer.markNeedsAddToScene$0(); } if (!offset.$eq(0, layer._layer$_offset)) { layer._layer$_offset = offset; layer.markNeedsAddToScene$0(); } this.pushLayer$3(layer, painter, C.Offset_0_0); return layer; }, toString$0: function(_) { return "PaintingContext#" + H.Primitives_objectHashCode(this) + "(layer: " + H.S(this._containerLayer) + ", canvas bounds: " + this.estimatedBounds.toString$0(0) + ")"; } }; K.PaintingContext_pushClipRect_closure.prototype = { call$0: function() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; K.PaintingContext_pushClipRRect_closure.prototype = { call$0: function() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; K.PaintingContext_pushClipPath_closure.prototype = { call$0: function() { return this.painter.call$2(this.$this, this.offset); }, $signature: 0 }; K.Constraints.prototype = {}; K.SemanticsHandle.prototype = { dispose$0: function(_) { var t1 = this.listener; if (t1 != null) this._object$_owner._semanticsOwner.removeListener$1(0, t1); t1 = this._object$_owner; if (--t1._outstandingSemanticsHandles === 0) { t1._semanticsOwner.dispose$0(0); t1._semanticsOwner = null; t1.onSemanticsOwnerDisposed.call$0(); } } }; K.PipelineOwner.prototype = { requestVisualUpdate$0: function() { this.onNeedVisualUpdate.call$0(); }, set$rootNode: function(value) { var t1 = this._rootNode; if (t1 === value) return; if (t1 != null) t1.detach$0(0); this._rootNode = value; value.attach$1(this); }, flushLayout$0: function() { var dirtyNodes, node, t1, t2, t3, t4, t5, _i; P.Timeline_startSync("Layout", C.Map_9aZ6I, null); try { for (t1 = type$.nullable_PipelineOwner, t2 = type$.JSArray_RenderObject; t3 = this._nodesNeedingLayout, t3.length !== 0;) { dirtyNodes = t3; this._nodesNeedingLayout = H.setRuntimeTypeInfo([], t2); t3 = dirtyNodes; t4 = new K.PipelineOwner_flushLayout_closure(); if (!!t3.immutable$list) H.throwExpression(P.UnsupportedError$("sort")); t5 = t3.length - 1; if (t5 - 0 <= 32) H.Sort__insertionSort(t3, 0, t5, t4); else H.Sort__dualPivotQuicksort(t3, 0, t5, t4); t4 = t3.length; _i = 0; for (; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { node = t3[_i]; if (node._needsLayout) { t5 = node; t5 = t1._as(B.AbstractNode.prototype.get$owner.call(t5)) === this; } else t5 = false; if (t5) node._layoutWithoutResize$0(); } } } finally { P.Timeline_finishSync(); } }, _enableMutationsToDirtySubtrees$1: function(callback) { try { callback.call$0(); } finally { } }, flushCompositingBits$0: function() { var t1, t2, t3, _i, node; P.Timeline_startSync("Compositing bits", null, null); t1 = this._nodesNeedingCompositingBitsUpdate; C.JSArray_methods.sort$1(t1, new K.PipelineOwner_flushCompositingBits_closure()); for (t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsCompositingBitsUpdate && t3._as(B.AbstractNode.prototype.get$owner.call(node)) === this) node._updateCompositingBits$0(); } C.JSArray_methods.set$length(t1, 0); P.Timeline_finishSync(); }, flushPaint$0: function() { var dirtyNodes, node, t1, t2, t3, _i, t4; P.Timeline_startSync("Paint", C.Map_9aZ6I, null); try { dirtyNodes = this._nodesNeedingPaint; this._nodesNeedingPaint = H.setRuntimeTypeInfo([], type$.JSArray_RenderObject); for (t1 = dirtyNodes, J.sort$1$ax(t1, new K.PipelineOwner_flushPaint_closure()), t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsPaint) { t4 = node; t4 = t3._as(B.AbstractNode.prototype.get$owner.call(t4)) === this; } else t4 = false; if (t4) if (node._layer._node$_owner != null) K.PaintingContext__repaintCompositedChild(node, null, false); else node._skippedPaintingOnLayer$0(); } } finally { P.Timeline_finishSync(); } }, ensureSemantics$1$listener: function(listener) { var t1, _this = this; if (++_this._outstandingSemanticsHandles === 1) { t1 = type$.SemanticsNode; _this._semanticsOwner = new A.SemanticsOwner(P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashMap_LinkedHashMap$_empty(type$.int, t1), P.LinkedHashSet_LinkedHashSet$_empty(t1), new P.LinkedList(type$.LinkedList__ListenerEntry)); _this.onSemanticsOwnerCreated.call$0(); } if (listener != null) { t1 = _this._semanticsOwner.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(listener), false); } return new K.SemanticsHandle(_this, listener); }, ensureSemantics$0: function() { return this.ensureSemantics$1$listener(null); }, flushSemantics$0: function() { var nodesToProcess, node, t1, nodesToProcess0, t2, t3, _i, t4, _this = this; if (_this._semanticsOwner == null) return; P.Timeline_startSync("Semantics", null, null); try { t1 = _this._nodesNeedingSemantics; nodesToProcess0 = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")); C.JSArray_methods.sort$1(nodesToProcess0, new K.PipelineOwner_flushSemantics_closure()); nodesToProcess = nodesToProcess0; t1.clear$0(0); for (t1 = nodesToProcess, t2 = t1.length, t3 = type$.nullable_PipelineOwner, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (node._needsSemanticsUpdate) { t4 = node; t4 = t3._as(B.AbstractNode.prototype.get$owner.call(t4)) === _this; } else t4 = false; if (t4) node._updateSemantics$0(); } _this._semanticsOwner.sendSemanticsUpdate$0(); } finally { P.Timeline_finishSync(); } } }; K.PipelineOwner_flushLayout_closure.prototype = { call$2: function(a, b) { return a._node$_depth - b._node$_depth; }, $signature: 284 }; K.PipelineOwner_flushCompositingBits_closure.prototype = { call$2: function(a, b) { return a._node$_depth - b._node$_depth; }, $signature: 284 }; K.PipelineOwner_flushPaint_closure.prototype = { call$2: function(a, b) { return b._node$_depth - a._node$_depth; }, $signature: 284 }; K.PipelineOwner_flushSemantics_closure.prototype = { call$2: function(a, b) { return a._node$_depth - b._node$_depth; }, $signature: 284 }; K.RenderObject.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof K.ParentData)) child.parentData = new K.ParentData(); }, adoptChild$1: function(child) { var _this = this; _this.setupParentData$1(child); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); _this.super$AbstractNode$adoptChild(child); }, dropChild$1: function(child) { var _this = this; child._cleanRelayoutBoundary$0(); child.parentData.detach$0(0); child.parentData = null; _this.super$AbstractNode$dropChild(child); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); }, visitChildren$1: function(visitor) { }, _debugReportException$3: function(method, exception, stack) { U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "rendering library", U.ErrorDescription$("during " + method + "()"), new K.RenderObject__debugReportException_closure(this), false)); }, get$owner: function() { return type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(this)); }, attach$1: function(owner) { var _this = this; _this.super$AbstractNode$attach(owner); if (_this._needsLayout && _this._relayoutBoundary != null) { _this._needsLayout = false; _this.markNeedsLayout$0(); } if (_this._needsCompositingBitsUpdate) { _this._needsCompositingBitsUpdate = false; _this.markNeedsCompositingBitsUpdate$0(); } if (_this._needsPaint && _this._layer != null) { _this._needsPaint = false; _this.markNeedsPaint$0(); } if (_this._needsSemanticsUpdate && _this.get$_semanticsConfiguration()._isSemanticBoundary) { _this._needsSemanticsUpdate = false; _this.markNeedsSemanticsUpdate$0(); } }, get$constraints: function() { var t1 = this._constraints; if (t1 == null) throw H.wrapException(P.StateError$("A RenderObject does not have any constraints before it has been laid out.")); return t1; }, markNeedsLayout$0: function() { var t1, _this = this; if (_this._needsLayout) return; if (_this._relayoutBoundary !== _this) _this.markParentNeedsLayout$0(); else { _this._needsLayout = true; t1 = type$.nullable_PipelineOwner; if (t1._as(B.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(B.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingLayout.push(_this); t1._as(B.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } }, markParentNeedsLayout$0: function() { var t1, _this = this; _this._needsLayout = true; t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); if (!_this._doingThisLayoutWithCallback) t1.markNeedsLayout$0(); }, _cleanRelayoutBoundary$0: function() { var _this = this; if (_this._relayoutBoundary !== _this) { _this._relayoutBoundary = null; _this._needsLayout = true; _this.visitChildren$1(K.object_RenderObject__cleanChildRelayoutBoundary$closure()); } }, _layoutWithoutResize$0: function() { var e, stack, exception, _this = this; try { _this.performLayout$0(); _this.markNeedsSemanticsUpdate$0(); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); _this._debugReportException$3("performLayout", e, stack); } _this._needsLayout = false; _this.markNeedsPaint$0(); }, layout$2$parentUsesSize: function(_, constraints, parentUsesSize) { var e, stack, e0, stack0, relayoutBoundary, t1, exception, _this = this; if (!parentUsesSize || _this.get$sizedByParent() || constraints.get$isTight() || !(_this.get$parent(_this) instanceof K.RenderObject)) relayoutBoundary = _this; else { t1 = _this.get$parent(_this); t1.toString; relayoutBoundary = type$.RenderObject._as(t1)._relayoutBoundary; } if (!_this._needsLayout && J.$eq$(constraints, _this._constraints) && relayoutBoundary == _this._relayoutBoundary) return; _this._constraints = constraints; t1 = _this._relayoutBoundary; if (t1 != null && relayoutBoundary !== t1) _this.visitChildren$1(K.object_RenderObject__cleanChildRelayoutBoundary$closure()); _this._relayoutBoundary = relayoutBoundary; if (_this.get$sizedByParent()) try { _this.performResize$0(); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); _this._debugReportException$3("performResize", e, stack); } try { _this.performLayout$0(); _this.markNeedsSemanticsUpdate$0(); } catch (exception) { e0 = H.unwrapException(exception); stack0 = H.getTraceFromException(exception); _this._debugReportException$3("performLayout", e0, stack0); } _this._needsLayout = false; _this.markNeedsPaint$0(); }, layout$1: function($receiver, constraints) { return this.layout$2$parentUsesSize($receiver, constraints, false); }, get$sizedByParent: function() { return false; }, invokeLayoutCallback$1$1: function(callback, $T) { var _this = this; _this._doingThisLayoutWithCallback = true; try { type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(_this))._enableMutationsToDirtySubtrees$1(new K.RenderObject_invokeLayoutCallback_closure(_this, callback, $T)); } finally { _this._doingThisLayoutWithCallback = false; } }, get$isRepaintBoundary: function() { return false; }, get$alwaysNeedsCompositing: function() { return false; }, get$layer: function(_) { return this._layer; }, markNeedsCompositingBitsUpdate$0: function() { var t1, _this = this; if (_this._needsCompositingBitsUpdate) return; _this._needsCompositingBitsUpdate = true; if (_this.get$parent(_this) instanceof K.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); if (t1._needsCompositingBitsUpdate) return; if (!_this.get$isRepaintBoundary() && !t1.get$isRepaintBoundary()) { t1.markNeedsCompositingBitsUpdate$0(); return; } } t1 = type$.nullable_PipelineOwner; if (t1._as(B.AbstractNode.prototype.get$owner.call(_this)) != null) t1._as(B.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingCompositingBitsUpdate.push(_this); }, get$_needsCompositing: function() { var t1 = this.__RenderObject__needsCompositing; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_needsCompositing")) : t1; }, _updateCompositingBits$0: function() { var oldNeedsCompositing, _this = this; if (!_this._needsCompositingBitsUpdate) return; oldNeedsCompositing = _this.get$_needsCompositing(); _this.__RenderObject__needsCompositing = false; _this.visitChildren$1(new K.RenderObject__updateCompositingBits_closure(_this)); if (_this.get$isRepaintBoundary() || _this.get$alwaysNeedsCompositing()) _this.__RenderObject__needsCompositing = true; if (oldNeedsCompositing != _this.get$_needsCompositing()) _this.markNeedsPaint$0(); _this._needsCompositingBitsUpdate = false; }, markNeedsPaint$0: function() { var t1, _this = this; if (_this._needsPaint) return; _this._needsPaint = true; if (_this.get$isRepaintBoundary()) { t1 = type$.nullable_PipelineOwner; if (t1._as(B.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(B.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingPaint.push(_this); t1._as(B.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } else if (_this.get$parent(_this) instanceof K.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1).markNeedsPaint$0(); } else { t1 = type$.nullable_PipelineOwner; if (t1._as(B.AbstractNode.prototype.get$owner.call(_this)) != null) t1._as(B.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } }, _skippedPaintingOnLayer$0: function() { var t1, node = this.get$parent(this); for (; node instanceof K.RenderObject;) { if (node.get$isRepaintBoundary()) { t1 = node._layer; if (t1 == null) break; if (t1._node$_owner != null) break; node._needsPaint = true; } node = node.get$parent(node); } }, _paintWithContext$2: function(context, offset) { var e, stack, exception, _this = this; if (_this._needsLayout) return; _this._needsPaint = false; try { _this.paint$2(context, offset); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); _this._debugReportException$3("paint", e, stack); } }, paint$2: function(context, offset) { }, applyPaintTransform$2: function(child, transform) { }, getTransformTo$1: function(_, ancestor) { var rootNode, renderers, t2, renderer, t3, transform, index, index0, t1 = ancestor == null; if (t1) { rootNode = type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(this))._rootNode; if (rootNode instanceof K.RenderObject) ancestor = rootNode; } renderers = H.setRuntimeTypeInfo([], type$.JSArray_RenderObject); t2 = type$.RenderObject; renderer = this; while (renderer !== ancestor) { renderers.push(renderer); t3 = renderer.get$parent(renderer); t3.toString; t2._as(t3); renderer = t3; } if (!t1) { ancestor.toString; renderers.push(ancestor); } transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); for (index = renderers.length - 1; index > 0; index = index0) { index0 = index - 1; renderers[index].applyPaintTransform$2(renderers[index0], transform); } return transform; }, describeApproximatePaintClip$1: function(child) { return null; }, describeSemanticsClip$1: function(child) { return null; }, describeSemanticsConfiguration$1: function(config) { }, sendSemanticsEvent$1: function(semanticsEvent) { var t1, _this = this; if (type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(_this))._semanticsOwner == null) return; t1 = _this._semantics; if (t1 != null && !t1._isMergedIntoParent) t1.sendEvent$1(semanticsEvent); else if (_this.get$parent(_this) != null) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1).sendSemanticsEvent$1(semanticsEvent); } }, get$_semanticsConfiguration: function() { var t1, _this = this; if (_this._cachedSemanticsConfiguration == null) { t1 = A.SemanticsConfiguration$(); _this._cachedSemanticsConfiguration = t1; _this.describeSemanticsConfiguration$1(t1); } t1 = _this._cachedSemanticsConfiguration; t1.toString; return t1; }, get$debugSemantics: function() { var t1 = this._semantics; return t1; }, clearSemantics$0: function() { this._needsSemanticsUpdate = true; this._semantics = null; this.visitChildren$1(new K.RenderObject_clearSemantics_closure()); }, markNeedsSemanticsUpdate$0: function() { var t1, wasSemanticsBoundary, isEffectiveSemanticsBoundary, t2, t3, t4, t5, node, t6, t7, _this = this; if (_this._node$_owner == null || type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(_this))._semanticsOwner == null) { _this._cachedSemanticsConfiguration = null; return; } if (_this._semantics != null) { t1 = _this._cachedSemanticsConfiguration; wasSemanticsBoundary = (t1 == null ? null : t1._isSemanticBoundary) === true; } else wasSemanticsBoundary = false; _this._cachedSemanticsConfiguration = null; isEffectiveSemanticsBoundary = _this.get$_semanticsConfiguration()._isSemanticBoundary && wasSemanticsBoundary; t1 = type$.RenderObject; t2 = type$.SemanticsAction; t3 = type$.void_Function_nullable_Object; t4 = type$.CustomSemanticsAction; t5 = type$.void_Function; node = _this; while (true) { if (!(!isEffectiveSemanticsBoundary && node.get$parent(node) instanceof K.RenderObject)) break; if (node !== _this && node._needsSemanticsUpdate) break; node._needsSemanticsUpdate = true; t6 = node.get$parent(node); t6.toString; t1._as(t6); if (t6._cachedSemanticsConfiguration == null) { t7 = new A.SemanticsConfiguration(P.LinkedHashMap_LinkedHashMap$_empty(t2, t3), P.LinkedHashMap_LinkedHashMap$_empty(t4, t5)); t6._cachedSemanticsConfiguration = t7; t6.describeSemanticsConfiguration$1(t7); } isEffectiveSemanticsBoundary = t6._cachedSemanticsConfiguration._isSemanticBoundary; if (isEffectiveSemanticsBoundary && t6._semantics == null) return; node = t6; } if (node !== _this && _this._semantics != null && _this._needsSemanticsUpdate) type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingSemantics.remove$1(0, _this); if (!node._needsSemanticsUpdate) { node._needsSemanticsUpdate = true; t1 = type$.nullable_PipelineOwner; if (t1._as(B.AbstractNode.prototype.get$owner.call(_this)) != null) { t1._as(B.AbstractNode.prototype.get$owner.call(_this))._nodesNeedingSemantics.add$1(0, node); t1._as(B.AbstractNode.prototype.get$owner.call(_this)).requestVisualUpdate$0(); } } }, _updateSemantics$0: function() { var t1, interestingFragment, result, t2, t3, t4, _this = this, _null = null; if (_this._needsLayout) return; t1 = _this._semantics; if (t1 == null) t1 = _null; else { t1 = type$.nullable_SemanticsNode._as(B.AbstractNode.prototype.get$parent.call(t1, t1)); if (t1 == null) t1 = _null; else t1 = t1._mergeAllDescendantsIntoThisNode || t1._isMergedIntoParent; } interestingFragment = type$._InterestingSemanticsFragment._as(_this._getSemanticsForParent$1$mergeIntoParent(t1 === true)); result = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode); t1 = _this._semantics; t2 = t1 == null; t3 = t2 ? _null : t1.parentSemanticsClipRect; t4 = t2 ? _null : t1.parentPaintClipRect; t1 = t2 ? _null : t1.elevationAdjustment; interestingFragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(t1 == null ? 0 : t1, t4, t3, result); C.JSArray_methods.get$single(result); }, _getSemanticsForParent$1$mergeIntoParent: function(mergeIntoParent) { var producesForkingFragment, t1, fragments, toBeMarkedExplicit, childrenMergeIntoParent, t2, result, _this = this, _box_0 = {}, config = _this.get$_semanticsConfiguration(); _box_0.dropSemanticsOfPreviousSiblings = config.isBlockingSemanticsOfPreviouslyPaintedNodes; producesForkingFragment = !config._hasBeenAnnotated && !config._isSemanticBoundary; t1 = type$.JSArray__InterestingSemanticsFragment; fragments = H.setRuntimeTypeInfo([], t1); toBeMarkedExplicit = P.LinkedHashSet_LinkedHashSet$_empty(type$._InterestingSemanticsFragment); childrenMergeIntoParent = mergeIntoParent || config._isMergingSemanticsOfDescendants; _box_0.abortWalk = false; _this.visitChildrenForSemantics$1(new K.RenderObject__getSemanticsForParent_closure(_box_0, _this, childrenMergeIntoParent, fragments, toBeMarkedExplicit, config, producesForkingFragment)); if (_box_0.abortWalk) return new K._AbortingSemanticsFragment(H.setRuntimeTypeInfo([_this], type$.JSArray_RenderObject), false); for (t2 = P._LinkedHashSetIterator$(toBeMarkedExplicit, toBeMarkedExplicit._collection$_modifications, toBeMarkedExplicit.$ti._precomputed1); t2.moveNext$0();) t2._collection$_current.markAsExplicit$0(); _this._needsSemanticsUpdate = false; if (!(_this.get$parent(_this) instanceof K.RenderObject)) { t2 = _box_0.dropSemanticsOfPreviousSiblings; result = new K._RootSemanticsFragment(H.setRuntimeTypeInfo([], t1), H.setRuntimeTypeInfo([_this], type$.JSArray_RenderObject), t2); } else { t2 = _box_0.dropSemanticsOfPreviousSiblings; if (producesForkingFragment) result = new K._ContainerSemanticsFragment(H.setRuntimeTypeInfo([], t1), t2); else { result = new K._SwitchableSemanticsFragment(mergeIntoParent, config, H.setRuntimeTypeInfo([], t1), H.setRuntimeTypeInfo([_this], type$.JSArray_RenderObject), t2); if (config._isSemanticBoundary) result._isExplicit = true; } } result.addAll$1(0, fragments); return result; }, visitChildrenForSemantics$1: function(visitor) { this.visitChildren$1(visitor); }, assembleSemanticsNode$3: function(node, config, children) { node.updateWith$2$childrenInInversePaintOrder$config(0, type$.List_SemanticsNode._as(children), config); }, handleEvent$2: function($event, entry) { }, toStringShort$0: function() { var target, count, _this = this, header = "#" + Y.shortHash(_this), t1 = _this._relayoutBoundary; if (t1 != null && t1 !== _this) { t1 = type$.nullable_RenderObject; target = t1._as(_this.get$parent(_this)); count = 1; while (true) { if (!(target != null && target !== _this._relayoutBoundary)) break; target = t1._as(target.get$parent(target)); ++count; } header += " relayoutBoundary=up" + count; } if (_this._needsLayout) header += " NEEDS-LAYOUT"; if (_this._needsPaint) header += " NEEDS-PAINT"; if (_this._needsCompositingBitsUpdate) header += " NEEDS-COMPOSITING-BITS-UPDATE"; return _this._node$_owner == null ? header + " DETACHED" : header; }, toString$0: function(_) { return this.toStringShort$0(); }, debugDescribeChildren$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); }, showOnScreen$4$curve$descendant$duration$rect: function(curve, descendant, duration, rect) { var t1, _this = this; if (_this.get$parent(_this) instanceof K.RenderObject) { t1 = _this.get$parent(_this); t1.toString; type$.RenderObject._as(t1); t1.showOnScreen$4$curve$descendant$duration$rect(curve, descendant == null ? _this : descendant, duration, rect); } }, showOnScreen$0: function() { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, null); }, showOnScreen$1$rect: function(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, rect); }, showOnScreen$3$curve$duration$rect: function(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, $isDiagnosticableTree: 1 }; K.RenderObject__debugReportException_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; $async$goto = 2; return Y.DiagnosticableTreeNode$("The following RenderObject was being processed when the exception was fired", C.DiagnosticsTreeStyle_10, t1); case 2: // after yield $async$goto = 3; return Y.DiagnosticableTreeNode$("RenderObject", C.DiagnosticsTreeStyle_11, t1); case 3: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; K.RenderObject_invokeLayoutCallback_closure.prototype = { call$0: function() { this.callback.call$1(this.T._as(this.$this.get$constraints())); }, $signature: 0 }; K.RenderObject__updateCompositingBits_closure.prototype = { call$1: function(child) { child._updateCompositingBits$0(); if (child.get$_needsCompositing()) this.$this.__RenderObject__needsCompositing = true; }, $signature: 142 }; K.RenderObject_clearSemantics_closure.prototype = { call$1: function(child) { child.clearSemantics$0(); }, $signature: 142 }; K.RenderObject__getSemanticsForParent_closure.prototype = { call$1: function(renderChild) { var parentFragment, t2, t3, t4, t5, t6, t7, _i, fragment, siblingLength, i, siblingFragment, t8, _this = this, t1 = _this._box_0; if (t1.abortWalk || _this.$this._needsLayout) { t1.abortWalk = true; return; } parentFragment = renderChild._getSemanticsForParent$1$mergeIntoParent(_this.childrenMergeIntoParent); if (parentFragment.get$abortsWalk()) { t1.abortWalk = true; return; } if (parentFragment.dropsSemanticsOfPreviousSiblings) { C.JSArray_methods.set$length(_this.fragments, 0); _this.toBeMarkedExplicit.clear$0(0); if (!_this.config._isSemanticBoundary) t1.dropSemanticsOfPreviousSiblings = true; } for (t1 = parentFragment.get$interestingFragments(), t2 = t1.length, t3 = _this.fragments, t4 = _this.toBeMarkedExplicit, t5 = _this.config, t6 = _this.$this, t7 = _this.producesForkingFragment, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { fragment = t1[_i]; t3.push(fragment); fragment._ancestorChain.push(t6); fragment.addTags$1(t5._tagsForChildren); if (t5.explicitChildNodes || !(t6.get$parent(t6) instanceof K.RenderObject)) { fragment.markAsExplicit$0(); continue; } if (fragment.get$config() == null || t7) continue; if (!t5.isCompatibleWith$1(fragment.get$config())) t4.add$1(0, fragment); siblingLength = t3.length - 1; for (i = 0; i < siblingLength; ++i) { siblingFragment = t3[i]; t8 = fragment.get$config(); t8.toString; if (!t8.isCompatibleWith$1(siblingFragment.get$config())) { t4.add$1(0, fragment); t4.add$1(0, siblingFragment); } } } }, $signature: 142 }; K.RenderObjectWithChildMixin.prototype = { set$child: function(value) { var _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) _this.dropChild$1(t1); _this.RenderObjectWithChildMixin__child = value; if (value != null) _this.adoptChild$1(value); }, redepthChildren$0: function() { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) this.redepthChild$1(t1); }, visitChildren$1: function(visitor) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) visitor.call$1(t1); }, debugDescribeChildren$0: function() { var t1 = this.RenderObjectWithChildMixin__child, t2 = type$.JSArray_DiagnosticsNode; return t1 != null ? H.setRuntimeTypeInfo([Y.DiagnosticableTreeNode$("child", null, t1)], t2) : H.setRuntimeTypeInfo([], t2); } }; K.ContainerParentDataMixin.prototype = {}; K.ContainerRenderObjectMixin.prototype = { get$childCount: function() { return this.ContainerRenderObjectMixin__childCount; }, _insertIntoChildList$2$after: function(child, after) { var t2, t3, t4, _this = this, t1 = child.parentData; t1.toString; t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t2._as(t1); ++_this.ContainerRenderObjectMixin__childCount; if (after == null) { t1 = t1.ContainerParentDataMixin_nextSibling = _this.ContainerRenderObjectMixin__firstChild; if (t1 != null) { t1 = t1.parentData; t1.toString; t2._as(t1).ContainerParentDataMixin_previousSibling = child; } _this.ContainerRenderObjectMixin__firstChild = child; if (_this.ContainerRenderObjectMixin__lastChild == null) _this.ContainerRenderObjectMixin__lastChild = child; } else { t3 = after.parentData; t3.toString; t2._as(t3); t4 = t3.ContainerParentDataMixin_nextSibling; if (t4 == null) { t1.ContainerParentDataMixin_previousSibling = after; _this.ContainerRenderObjectMixin__lastChild = t3.ContainerParentDataMixin_nextSibling = child; } else { t1.ContainerParentDataMixin_nextSibling = t4; t1.ContainerParentDataMixin_previousSibling = after; t1 = t4.parentData; t1.toString; t2._as(t1).ContainerParentDataMixin_previousSibling = t3.ContainerParentDataMixin_nextSibling = child; } } }, insert$2$after: function(_, child, after) { this.adoptChild$1(child); this._insertIntoChildList$2$after(child, after); }, add$1: function(_, child) { this.insert$2$after(0, child, this.ContainerRenderObjectMixin__lastChild); }, addAll$1: function(_, children) { }, _removeFromChildList$1: function(child) { var t2, t3, t4, t5, _this = this, t1 = child.parentData; t1.toString; t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t2._as(t1); t3 = t1.ContainerParentDataMixin_previousSibling; t4 = t1.ContainerParentDataMixin_nextSibling; if (t3 == null) _this.ContainerRenderObjectMixin__firstChild = t4; else { t5 = t3.parentData; t5.toString; t2._as(t5).ContainerParentDataMixin_nextSibling = t4; } t4 = t1.ContainerParentDataMixin_nextSibling; if (t4 == null) _this.ContainerRenderObjectMixin__lastChild = t3; else { t4 = t4.parentData; t4.toString; t2._as(t4).ContainerParentDataMixin_previousSibling = t3; } t1.ContainerParentDataMixin_nextSibling = t1.ContainerParentDataMixin_previousSibling = null; --_this.ContainerRenderObjectMixin__childCount; }, remove$1: function(_, child) { this._removeFromChildList$1(child); this.dropChild$1(child); }, move$2$after: function(child, after) { var _this = this, t1 = child.parentData; t1.toString; if (H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_previousSibling == after) return; _this._removeFromChildList$1(child); _this._insertIntoChildList$2$after(child, after); _this.markNeedsLayout$0(); }, redepthChildren$0: function() { var t1, t2, t3, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { t2 = child._node$_depth; t3 = this._node$_depth; if (t2 <= t3) { child._node$_depth = t3 + 1; child.redepthChildren$0(); } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, visitChildren$1: function(visitor) { var t1, t2, child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { visitor.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, get$firstChild: function(_) { return this.ContainerRenderObjectMixin__firstChild; }, childBefore$1: function(child) { var t1 = child.parentData; t1.toString; return H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_previousSibling; }, childAfter$1: function(child) { var t1 = child.parentData; t1.toString; return H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_nextSibling; }, debugDescribeChildren$0: function() { var t1, count, t2, children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), child = this.ContainerRenderObjectMixin__firstChild; if (child != null) for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), count = 1; true; child = t2) { children.push(new Y.DiagnosticableTreeNode(child, "child " + count, true, true, null, null)); if (child === this.ContainerRenderObjectMixin__lastChild) break; ++count; t2 = child.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_nextSibling; t2.toString; } return children; } }; K.RelayoutWhenSystemFontsChangeMixin.prototype = { systemFontsDidChange$0: function() { this.markNeedsLayout$0(); } }; K._SemanticsFragment.prototype = { get$abortsWalk: function() { return false; } }; K._ContainerSemanticsFragment.prototype = { addAll$1: function(_, fragments) { C.JSArray_methods.addAll$1(this.interestingFragments, fragments); }, get$interestingFragments: function() { return this.interestingFragments; } }; K._InterestingSemanticsFragment.prototype = { get$interestingFragments: function() { return H.setRuntimeTypeInfo([this], type$.JSArray__InterestingSemanticsFragment); }, addTags$1: function(tags) { var t1; if (tags == null || tags._collection$_length === 0) return; t1 = this._object$_tagsForChildren; (t1 == null ? this._object$_tagsForChildren = P.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t1).addAll$1(0, tags); } }; K._RootSemanticsFragment.prototype = { compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result: function(elevationAdjustment, parentPaintClipRect, parentSemanticsClipRect, result) { var t3, t4, t5, children, _i, t1 = this._ancestorChain, t2 = C.JSArray_methods.get$first(t1); if (t2._semantics == null) { t3 = C.JSArray_methods.get$first(t1).get$showOnScreen(); t4 = C.JSArray_methods.get$first(t1); t4.toString; t4 = type$.nullable_PipelineOwner._as(B.AbstractNode.prototype.get$owner.call(t4))._semanticsOwner; t4.toString; t5 = $.$get$SemanticsNode__kEmptyConfig(); t5 = new A.SemanticsNode(null, 0, t3, C.Rect_0_0_0_0, t5._isMergingSemanticsOfDescendants, t5._actions, t5._semantics$_customSemanticsActions, t5._actionsAsBits, t5._flags, t5._semantics$_label, t5._semantics$_value, t5._semantics$_decreasedValue, t5._semantics$_increasedValue, t5._semantics$_hint, t5._semantics$_elevation, t5._semantics$_thickness, t5._semantics$_textDirection); t5.attach$1(t4); t2._semantics = t5; } t2 = C.JSArray_methods.get$first(t1)._semantics; t2.toString; t2.set$rect(0, C.JSArray_methods.get$first(t1).get$semanticBounds()); children = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode); for (t1 = this._object$_children, t3 = t1.length, _i = 0; _i < t1.length; t1.length === t3 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(0, parentPaintClipRect, parentSemanticsClipRect, children); t2.updateWith$2$childrenInInversePaintOrder$config(0, children, null); result.push(t2); }, get$config: function() { return null; }, markAsExplicit$0: function() { }, addAll$1: function(_, fragments) { C.JSArray_methods.addAll$1(this._object$_children, fragments); } }; K._SwitchableSemanticsFragment.prototype = { compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result: function(elevationAdjustment, parentPaintClipRect, parentSemanticsClipRect, result) { var t1, t2, t3, t4, t5, _i, fragment, t6, t7, geometry, node, children, _this = this, _null = null; if (!_this._isExplicit) { t1 = _this._ancestorChain; C.JSArray_methods.get$first(t1)._semantics = null; for (t2 = _this._object$_children, t3 = t2.length, t4 = H._arrayInstanceType(t1), t5 = t4._precomputed1, t4 = t4._eval$1("SubListIterable<1>"), _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { fragment = t2[_i]; t6 = fragment._ancestorChain; t7 = new H.SubListIterable(t1, 1, _null, t4); t7.SubListIterable$3(t1, 1, _null, t5); C.JSArray_methods.addAll$1(t6, t7); fragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(elevationAdjustment + _this._object$_config._semantics$_elevation, parentPaintClipRect, parentSemanticsClipRect, result); } return; } t1 = _this._ancestorChain; if (t1.length > 1) { geometry = new K._SemanticsGeometry(); geometry._computeValues$3(parentSemanticsClipRect, parentPaintClipRect, t1); } else geometry = _null; t2 = _this._mergeIntoParent; t3 = !t2; if (t3) { if (geometry == null) t4 = _null; else { t4 = geometry.get$_object$_rect(); t4 = t4.get$isEmpty(t4); } t4 = t4 === true; } else t4 = false; if (t4) return; t4 = C.JSArray_methods.get$first(t1); if (t4._semantics == null) t4._semantics = A.SemanticsNode$(_null, C.JSArray_methods.get$first(t1).get$showOnScreen()); node = C.JSArray_methods.get$first(t1)._semantics; node.set$isMergedIntoParent(t2); node.tags = _this._object$_tagsForChildren; node.elevationAdjustment = elevationAdjustment; if (elevationAdjustment !== 0) { _this._ensureConfigIsWritable$0(); t2 = _this._object$_config; t2.set$elevation(0, t2._semantics$_elevation + elevationAdjustment); } if (geometry != null) { node.set$rect(0, geometry.get$_object$_rect()); node.set$transform(0, geometry.get$_object$_transform()); node.parentSemanticsClipRect = geometry._semanticsClipRect; node.parentPaintClipRect = geometry._paintClipRect; if (t3 && geometry._markAsHidden) { _this._ensureConfigIsWritable$0(); _this._object$_config._setFlag$2(C.SemanticsFlag_8192, true); } } children = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode); for (t2 = _this._object$_children, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { fragment = t2[_i]; t4 = node.parentSemanticsClipRect; fragment.compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result(0, node.parentPaintClipRect, t4, children); } t2 = _this._object$_config; if (t2._isSemanticBoundary) C.JSArray_methods.get$first(t1).assembleSemanticsNode$3(node, _this._object$_config, children); else node.updateWith$2$childrenInInversePaintOrder$config(0, children, t2); result.push(node); }, get$config: function() { return this._isExplicit ? null : this._object$_config; }, addAll$1: function(_, fragments) { var t1, t2, _i, fragment, t3, t4, _this = this; for (t1 = fragments.length, t2 = _this._object$_children, _i = 0; _i < fragments.length; fragments.length === t1 || (0, H.throwConcurrentModificationError)(fragments), ++_i) { fragment = fragments[_i]; t2.push(fragment); if (fragment.get$config() == null) continue; if (!_this._isConfigWritable) { _this._object$_config = _this._object$_config.copy$0(0); _this._isConfigWritable = true; } t3 = _this._object$_config; t4 = fragment.get$config(); t4.toString; t3.absorb$1(t4); } }, _ensureConfigIsWritable$0: function() { var t1, t2, _this = this; if (!_this._isConfigWritable) { t1 = _this._object$_config; t2 = A.SemanticsConfiguration$(); t2._isSemanticBoundary = t1._isSemanticBoundary; t2.explicitChildNodes = t1.explicitChildNodes; t2.isBlockingSemanticsOfPreviouslyPaintedNodes = t1.isBlockingSemanticsOfPreviouslyPaintedNodes; t2._hasBeenAnnotated = t1._hasBeenAnnotated; t2._isMergingSemanticsOfDescendants = t1._isMergingSemanticsOfDescendants; t2._semantics$_textDirection = t1._semantics$_textDirection; t2._semantics$_sortKey = t1._semantics$_sortKey; t2._semantics$_label = t1._semantics$_label; t2._semantics$_increasedValue = t1._semantics$_increasedValue; t2._semantics$_value = t1._semantics$_value; t2._semantics$_decreasedValue = t1._semantics$_decreasedValue; t2._semantics$_hint = t1._semantics$_hint; t2._semantics$_hintOverrides = t1._semantics$_hintOverrides; t2._semantics$_elevation = t1._semantics$_elevation; t2._semantics$_thickness = t1._semantics$_thickness; t2._flags = t1._flags; t2._tagsForChildren = t1._tagsForChildren; t2._textSelection = t1._textSelection; t2._scrollPosition = t1._scrollPosition; t2._scrollExtentMax = t1._scrollExtentMax; t2._scrollExtentMin = t1._scrollExtentMin; t2._actionsAsBits = t1._actionsAsBits; t2._indexInParent = t1._indexInParent; t2._scrollIndex = t1._scrollIndex; t2._scrollChildCount = t1._scrollChildCount; t2._platformViewId = t1._platformViewId; t2._semantics$_maxValueLength = t1._semantics$_maxValueLength; t2._semantics$_currentValueLength = t1._semantics$_currentValueLength; t2._actions.addAll$1(0, t1._actions); t2._semantics$_customSemanticsActions.addAll$1(0, t1._semantics$_customSemanticsActions); _this._object$_config = t2; _this._isConfigWritable = true; } }, markAsExplicit$0: function() { this._isExplicit = true; } }; K._AbortingSemanticsFragment.prototype = { get$abortsWalk: function() { return true; }, get$config: function() { return null; }, compileChildren$4$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result: function(elevationAdjustment, parentPaintClipRect, parentSemanticsClipRect, result) { var t1 = C.JSArray_methods.get$first(this._ancestorChain)._semantics; t1.toString; result.push(t1); }, markAsExplicit$0: function() { } }; K._SemanticsGeometry.prototype = { get$_object$_transform: function() { var t1 = this.___SemanticsGeometry__transform; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_transform")) : t1; }, get$_object$_rect: function() { var t1 = this.___SemanticsGeometry__rect; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_rect")) : t1; }, _computeValues$3: function(parentSemanticsClipRect, parentPaintClipRect, ancestors) { var index, $parent, child, t2, owner, paintRect, _this = this, t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); _this.___SemanticsGeometry__transform = t1; _this._semanticsClipRect = parentSemanticsClipRect; _this._paintClipRect = parentPaintClipRect; for (index = ancestors.length - 1; index > 0;) { $parent = ancestors[index]; --index; child = ancestors[index]; parentSemanticsClipRect = $parent.describeSemanticsClip$1(child); if (parentSemanticsClipRect != null) { _this._semanticsClipRect = parentSemanticsClipRect; _this._paintClipRect = K._SemanticsGeometry__intersectRects(_this._paintClipRect, $parent.describeApproximatePaintClip$1(child)); } else _this._semanticsClipRect = K._SemanticsGeometry__intersectRects(_this._semanticsClipRect, $parent.describeApproximatePaintClip$1(child)); t1 = $.$get$_SemanticsGeometry__temporaryTransformHolder(); t1.setIdentity$0(); t2 = _this.___SemanticsGeometry__transform; K._SemanticsGeometry__applyIntermediatePaintTransforms($parent, child, t2 === $ ? H.throwExpression(H.LateError$fieldNI("_transform")) : t2, t1); _this._semanticsClipRect = K._SemanticsGeometry__transformRect(_this._semanticsClipRect, t1); _this._paintClipRect = K._SemanticsGeometry__transformRect(_this._paintClipRect, t1); } owner = C.JSArray_methods.get$first(ancestors); t1 = _this._semanticsClipRect; _this.___SemanticsGeometry__rect = t1 == null ? owner.get$semanticBounds() : t1.intersect$1(owner.get$semanticBounds()); t1 = _this._paintClipRect; if (t1 != null) { paintRect = t1.intersect$1(_this.get$_object$_rect()); if (paintRect.get$isEmpty(paintRect)) { t1 = _this.get$_object$_rect(); t1 = !t1.get$isEmpty(t1); } else t1 = false; _this._markAsHidden = t1; if (!t1) _this.___SemanticsGeometry__rect = paintRect; } } }; K.DiagnosticsDebugCreator.prototype = {}; K._RenderObject_AbstractNode_DiagnosticableTreeMixin.prototype = {}; Q.TextOverflow.prototype = { toString$0: function(_) { return this._paragraph$_name; } }; Q.TextParentData.prototype = { toString$0: function(_) { var t1 = H.setRuntimeTypeInfo(["offset=" + H.S(this.offset)], type$.JSArray_String); t1.push(this.super$BoxParentData$toString(0)); return C.JSArray_methods.join$1(t1, "; "); } }; Q.RenderParagraph.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof Q.TextParentData)) child.parentData = new Q.TextParentData(null, null, C.Offset_0_0); }, get$text: function(_) { var t1 = this._paragraph$_textPainter._text_painter$_text; t1.toString; return t1; }, set$text: function(_, value) { var _this = this, t1 = _this._paragraph$_textPainter; switch (t1._text_painter$_text.compareTo$1(0, value)) { case C.RenderComparison_0: case C.RenderComparison_1: return; case C.RenderComparison_2: t1.set$text(0, value); _this._extractPlaceholderSpans$1(value); _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); break; case C.RenderComparison_3: t1.set$text(0, value); _this._overflowShader = null; _this._extractPlaceholderSpans$1(value); _this.markNeedsLayout$0(); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_placeholderSpans: function() { var t1 = this.__RenderParagraph__placeholderSpans; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_placeholderSpans")) : t1; }, _extractPlaceholderSpans$1: function(span) { this.__RenderParagraph__placeholderSpans = H.setRuntimeTypeInfo([], type$.JSArray_PlaceholderSpan); span.visitChildren$1(new Q.RenderParagraph__extractPlaceholderSpans_closure(this)); }, set$textAlign: function(_, value) { var t1 = this._paragraph$_textPainter; if (t1._text_painter$_textAlign === value) return; t1.set$textAlign(0, value); this.markNeedsPaint$0(); }, set$textDirection: function(_, value) { var t1 = this._paragraph$_textPainter; if (t1._text_painter$_textDirection == value) return; t1.set$textDirection(0, value); this.markNeedsLayout$0(); }, set$softWrap: function(value) { if (this._softWrap === value) return; this._softWrap = value; this.markNeedsLayout$0(); }, set$overflow: function(_, value) { var t1, _this = this; if (_this._paragraph$_overflow === value) return; _this._paragraph$_overflow = value; t1 = value === C.TextOverflow_2 ? "\u2026" : null; _this._paragraph$_textPainter.set$ellipsis(0, t1); _this.markNeedsLayout$0(); }, set$textScaleFactor: function(value) { var t1 = this._paragraph$_textPainter; if (t1._textScaleFactor === value) return; t1.set$textScaleFactor(value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$maxLines: function(_, value) { var t1 = this._paragraph$_textPainter; if (t1._text_painter$_maxLines == value) return; t1.set$maxLines(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$locale: function(_, value) { var t1 = this._paragraph$_textPainter; if (J.$eq$(t1._text_painter$_locale, value)) return; t1.set$locale(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$strutStyle: function(_, value) { var t1 = this._paragraph$_textPainter; if (J.$eq$(t1._text_painter$_strutStyle, value)) return; t1.set$strutStyle(0, value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$textWidthBasis: function(value) { var t1 = this._paragraph$_textPainter; if (t1._textWidthBasis === value) return; t1.set$textWidthBasis(value); this._overflowShader = null; this.markNeedsLayout$0(); }, set$textHeightBehavior: function(_, value) { return; }, computeMinIntrinsicWidth$1: function(height) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenWidthWithMinIntrinsics$1(height); _this._paragraph$_layoutText$0(); t1 = _this._paragraph$_textPainter._text_painter$_paragraph.get$minIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, computeMaxIntrinsicWidth$1: function(height) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenWidthWithMaxIntrinsics$1(height); _this._paragraph$_layoutText$0(); t1 = _this._paragraph$_textPainter._text_painter$_paragraph.get$maxIntrinsicWidth(); t1.toString; return Math.ceil(t1); }, _computeIntrinsicHeight$1: function(width) { var t1, _this = this; if (!_this._canComputeIntrinsics$0()) return 0; _this._computeChildrenHeightWithMinIntrinsics$1(width); _this._paragraph$_layoutText$2$maxWidth$minWidth(width, width); t1 = _this._paragraph$_textPainter._text_painter$_paragraph; t1 = t1.get$height(t1); t1.toString; return Math.ceil(t1); }, computeMinIntrinsicHeight$1: function(width) { return this._computeIntrinsicHeight$1(width); }, computeMaxIntrinsicHeight$1: function(width) { return this._computeIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1: function(baseline) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this))); return this._paragraph$_textPainter.computeDistanceToActualBaseline$1(C.TextBaseline_0); }, _canComputeIntrinsics$0: function() { for (var t1 = J.get$iterator$ax(this.get$_placeholderSpans()); t1.moveNext$0();) switch (t1.get$current(t1).get$alignment()) { case C.PlaceholderAlignment_0: case C.PlaceholderAlignment_1: case C.PlaceholderAlignment_2: return false; case C.PlaceholderAlignment_3: case C.PlaceholderAlignment_5: case C.PlaceholderAlignment_4: continue; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return true; }, _computeChildrenWidthWithMaxIntrinsics$1: function(height) { var t1, childIndex, t2, t3, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = P.List_List$filled(_this.ContainerRenderObjectMixin__childCount, C.PlaceholderDimensions_Size_0_0_null, false, type$.PlaceholderDimensions); for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { t2 = child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); t3 = _this.__RenderParagraph__placeholderSpans; J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex).get$alignment(); t3 = _this.__RenderParagraph__placeholderSpans; placeholderDimensions[childIndex] = new U.PlaceholderDimensions(new P.Size(t2, 0), J.get$baseline$z(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++childIndex; } _this._paragraph$_textPainter.setPlaceholderDimensions$1(placeholderDimensions); }, _computeChildrenWidthWithMinIntrinsics$1: function(height) { var t1, childIndex, t2, t3, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = P.List_List$filled(_this.ContainerRenderObjectMixin__childCount, C.PlaceholderDimensions_Size_0_0_null, false, type$.PlaceholderDimensions); for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { t2 = child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t3 = _this.__RenderParagraph__placeholderSpans; J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex).get$alignment(); t3 = _this.__RenderParagraph__placeholderSpans; placeholderDimensions[childIndex] = new U.PlaceholderDimensions(new P.Size(t2, 0), J.get$baseline$z(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++childIndex; } _this._paragraph$_textPainter.setPlaceholderDimensions$1(placeholderDimensions); }, _computeChildrenHeightWithMinIntrinsics$1: function(width) { var t2, childIndex, size, t3, _this = this, _s17_ = "_placeholderSpans", child = _this.ContainerRenderObjectMixin__firstChild, placeholderDimensions = P.List_List$filled(_this.ContainerRenderObjectMixin__childCount, C.PlaceholderDimensions_Size_0_0_null, false, type$.PlaceholderDimensions), t1 = _this._paragraph$_textPainter; width /= t1._textScaleFactor; for (t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; child != null;) { size = child.getDryLayout$1(new S.BoxConstraints(0, width, 0, 1 / 0)); t3 = _this.__RenderParagraph__placeholderSpans; J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex).get$alignment(); t3 = _this.__RenderParagraph__placeholderSpans; placeholderDimensions[childIndex] = new U.PlaceholderDimensions(size, J.get$baseline$z(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex))); t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; ++childIndex; } t1.setPlaceholderDimensions$1(placeholderDimensions); }, hitTestSelf$1: function(position) { return true; }, hitTestChildren$2$position: function(result, position) { var _hitText_set, t1, textPosition, span, t2, t3, t4, childIndex, t5, t6, t7, transform, child, _box_0 = {}; _box_0._hitText = $; _hitText_set = new Q.RenderParagraph_hitTestChildren__hitText_set(_box_0); t1 = this._paragraph$_textPainter; textPosition = t1._text_painter$_paragraph.getPositionForOffset$1(position); span = t1._text_painter$_text.getSpanForPosition$1(textPosition); if (span != null && true) { t2 = new O.HitTestEntry(span); result._globalizeTransforms$0(); t2._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t2); _hitText_set.call$1(true); } else _hitText_set.call$1(false); t2 = _box_0.child = this.ContainerRenderObjectMixin__firstChild; t3 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); t4 = type$.TextParentData; childIndex = 0; while (true) { if (!(t2 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t2 = t2.parentData; t2.toString; t4._as(t2); t5 = t2.offset; t6 = t5._dx; t5 = t5._dy; t7 = new Float64Array(16); transform = new E.Matrix4(t7); transform.setIdentity$0(); t7[14] = 0; t7[13] = t5; t7[12] = t6; t6 = t2.scale; transform.scale$3(0, t6, t6, t6); if (result.addWithPaintTransform$3$hitTest$position$transform(new Q.RenderParagraph_hitTestChildren_closure(_box_0, position, t2), position, transform)) return true; t2 = _box_0.child.parentData; t2.toString; child = t3._as(t2).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t2 = child; } return new Q.RenderParagraph_hitTestChildren__hitText_get(_box_0).call$0(); }, _paragraph$_layoutText$2$maxWidth$minWidth: function(maxWidth, minWidth) { var t1 = this._softWrap || this._paragraph$_overflow === C.TextOverflow_2 ? maxWidth : 1 / 0; this._paragraph$_textPainter.layout$2$maxWidth$minWidth(0, t1, minWidth); }, _paragraph$_layoutText$0: function() { return this._paragraph$_layoutText$2$maxWidth$minWidth(1 / 0, 0); }, systemFontsDidChange$0: function() { this.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange(); this._paragraph$_textPainter.markNeedsLayout$0(); }, _layoutTextWithConstraints$1: function(constraints) { var t1; this._paragraph$_textPainter.setPlaceholderDimensions$1(this._paragraph$_placeholderDimensions); t1 = constraints.minWidth; this._paragraph$_layoutText$2$maxWidth$minWidth(constraints.maxWidth, t1); }, _layoutChildren$2$dry: function(constraints, dry) { var child, placeholderDimensions, boxConstraints, t2, childIndex, t3, t4, childSize, _this = this, _s17_ = "_placeholderSpans", t1 = _this.ContainerRenderObjectMixin__childCount; if (t1 === 0) return H.setRuntimeTypeInfo([], type$.JSArray_PlaceholderDimensions); child = _this.ContainerRenderObjectMixin__firstChild; placeholderDimensions = P.List_List$filled(t1, C.PlaceholderDimensions_Size_0_0_null, false, type$.PlaceholderDimensions); boxConstraints = new S.BoxConstraints(0, constraints.maxWidth, 0, 1 / 0).$div(0, _this._paragraph$_textPainter._textScaleFactor); for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t2 = !dry, childIndex = 0; child != null;) { if (t2) { child.layout$2$parentUsesSize(0, boxConstraints, true); t3 = child._box$_size; t3.toString; t4 = _this.__RenderParagraph__placeholderSpans; switch (J.$index$asx(t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t4, childIndex).get$alignment()) { case C.PlaceholderAlignment_0: t4 = _this.__RenderParagraph__placeholderSpans; child.getDistanceToBaseline$1(J.get$baseline$z(J.$index$asx(t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t4, childIndex))); break; default: break; } childSize = t3; } else childSize = child.getDryLayout$1(boxConstraints); t3 = _this.__RenderParagraph__placeholderSpans; J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex).get$alignment(); t3 = _this.__RenderParagraph__placeholderSpans; placeholderDimensions[childIndex] = new U.PlaceholderDimensions(childSize, J.get$baseline$z(J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s17_)) : t3, childIndex))); t3 = child.parentData; t3.toString; child = t1._as(t3).ContainerParentDataMixin_nextSibling; ++childIndex; } return placeholderDimensions; }, _layoutChildren$1: function(constraints) { return this._layoutChildren$2$dry(constraints, false); }, _setParentData$0: function() { var t4, t5, child = this.ContainerRenderObjectMixin__firstChild, t1 = type$.TextParentData, t2 = this._paragraph$_textPainter, t3 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), childIndex = 0; while (true) { if (!(child != null && childIndex < t2._inlinePlaceholderBoxes.length)) break; t4 = child.parentData; t4.toString; t1._as(t4); t5 = t2._inlinePlaceholderBoxes[childIndex]; t4.offset = new P.Offset(t5.left, t5.top); t4.scale = t2._inlinePlaceholderScales[childIndex]; child = t3._as(t4).ContainerParentDataMixin_nextSibling; ++childIndex; } }, _canComputeDryLayout$0: function() { for (var t1 = J.get$iterator$ax(this.get$_placeholderSpans()); t1.moveNext$0();) switch (t1.get$current(t1).get$alignment()) { case C.PlaceholderAlignment_0: case C.PlaceholderAlignment_1: case C.PlaceholderAlignment_2: return false; case C.PlaceholderAlignment_3: case C.PlaceholderAlignment_5: case C.PlaceholderAlignment_4: continue; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return true; }, computeDryLayout$1: function(constraints) { var t1, t2, _this = this; if (!_this._canComputeDryLayout$0()) return C.Size_0_0; t1 = _this._paragraph$_textPainter; t1.setPlaceholderDimensions$1(_this._layoutChildren$2$dry(constraints, true)); t2 = constraints.minWidth; _this._paragraph$_layoutText$2$maxWidth$minWidth(constraints.maxWidth, t2); t2 = t1.get$width(t1); t1 = t1._text_painter$_paragraph; t1 = t1.get$height(t1); t1.toString; return constraints.constrain$1(new P.Size(t2, Math.ceil(t1))); }, performLayout$0: function() { var t1, t2, t3, t4, textDidExceedMaxLines, didOverflowHeight, didOverflowWidth, fadeSizePainter, fadeStart, fadeEnd, _this = this, _null = null, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._paragraph$_placeholderDimensions = _this._layoutChildren$1(constraints); _this._layoutTextWithConstraints$1(constraints); _this._setParentData$0(); t1 = _this._paragraph$_textPainter; t2 = t1.get$width(t1); t3 = t1._text_painter$_paragraph; t3 = t3.get$height(t3); t3.toString; t3 = Math.ceil(t3); t4 = t1._text_painter$_paragraph; textDidExceedMaxLines = t4.get$didExceedMaxLines(t4); t4 = _this._box$_size = constraints.constrain$1(new P.Size(t2, t3)); didOverflowHeight = t4._dy < t3 || textDidExceedMaxLines; didOverflowWidth = t4._dx < t2; if (didOverflowWidth || didOverflowHeight) switch (_this._paragraph$_overflow) { case C.TextOverflow_3: _this._needsClipping = false; _this._overflowShader = null; break; case C.TextOverflow_0: case C.TextOverflow_2: _this._needsClipping = true; _this._overflowShader = null; break; case C.TextOverflow_1: _this._needsClipping = true; t2 = Q.TextSpan$(_null, _null, t1._text_painter$_text.style, "\u2026"); t3 = t1._text_painter$_textDirection; t3.toString; t4 = t1._textScaleFactor; fadeSizePainter = U.TextPainter$(_null, t1._text_painter$_locale, _null, _null, t2, C.TextAlign_4, t3, _null, t4, C.TextWidthBasis_0); fadeSizePainter.layout$0(0); if (didOverflowWidth) { t1 = t1._text_painter$_textDirection; t1.toString; switch (t1) { case C.TextDirection_0: fadeStart = fadeSizePainter.get$width(fadeSizePainter); fadeEnd = 0; break; case C.TextDirection_1: fadeEnd = _this._box$_size._dx; fadeStart = fadeEnd - fadeSizePainter.get$width(fadeSizePainter); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this._overflowShader = P.Gradient_Gradient$linear(new P.Offset(fadeStart, 0), new P.Offset(fadeEnd, 0), H.setRuntimeTypeInfo([C.Color_4294967295, C.Color_16777215], type$.JSArray_Color), _null, C.TileMode_0); } else { fadeEnd = _this._box$_size._dy; t1 = fadeSizePainter._text_painter$_paragraph; t1 = t1.get$height(t1); t1.toString; _this._overflowShader = P.Gradient_Gradient$linear(new P.Offset(0, fadeEnd - Math.ceil(t1) / 2), new P.Offset(0, fadeEnd), H.setRuntimeTypeInfo([C.Color_4294967295, C.Color_16777215], type$.JSArray_Color), _null, C.TileMode_0); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } else { _this._needsClipping = false; _this._overflowShader = null; } }, paint$2: function(context, offset) { var t1, t2, t3, bounds, t4, t5, t6, childIndex, t7, t8, child, paint, _this = this, _box_0 = {}; _this._layoutTextWithConstraints$1(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this))); if (_this._needsClipping) { t1 = _this._box$_size; t2 = offset._dx; t3 = offset._dy; bounds = new P.Rect(t2, t3, t2 + t1._dx, t3 + t1._dy); if (_this._overflowShader != null) { t1 = context.get$canvas(context); t2 = H._detectRenderer(); t1.saveLayer$2(0, bounds, t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData())); } else context.get$canvas(context).save$0(0); context.get$canvas(context).clipRect$1(0, bounds); } t1 = _this._paragraph$_textPainter; t2 = context.get$canvas(context); t3 = t1._text_painter$_paragraph; t3.toString; t2.drawParagraph$2(0, t3, offset); t3 = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; t2 = offset._dx; t4 = offset._dy; t5 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t6 = type$.TextParentData; childIndex = 0; while (true) { if (!(t3 != null && childIndex < t1._inlinePlaceholderBoxes.length)) break; t3 = t3.parentData; t3.toString; t6._as(t3); t7 = t3.scale; t7.toString; t8 = _this.__RenderObject__needsCompositing; if (t8 === $) t8 = H.throwExpression(H.LateError$fieldNI("_needsCompositing")); t3 = t3.offset; context.pushTransform$4(t8, new P.Offset(t2 + t3._dx, t4 + t3._dy), E.Matrix4_Matrix4$diagonal3Values(t7, t7, t7), new Q.RenderParagraph_paint_closure(_box_0)); t7 = _box_0.child.parentData; t7.toString; child = t5._as(t7).ContainerParentDataMixin_nextSibling; _box_0.child = child; ++childIndex; t3 = child; } if (_this._needsClipping) { if (_this._overflowShader != null) { context.get$canvas(context).translate$2(0, t2, t4); t1 = H._detectRenderer(); paint = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$blendMode(C.BlendMode_13); paint.set$shader(_this._overflowShader); t1 = context.get$canvas(context); t2 = _this._box$_size; t1.drawRect$2(0, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), paint); } context.get$canvas(context).restore$0(0); } }, describeSemanticsConfiguration$1: function(config) { var t1, t2, collector, t3, _i, t4, info, t5, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); t1 = _this._paragraph$_textPainter; t2 = t1._text_painter$_text; t2.toString; collector = H.setRuntimeTypeInfo([], type$.JSArray_InlineSpanSemanticsInformation); t2.computeSemanticsInformation$1(collector); _this._semanticsInfo = collector; if (C.JSArray_methods.any$1(collector, new Q.RenderParagraph_describeSemanticsConfiguration_closure())) config._isSemanticBoundary = config.explicitChildNodes = true; else { for (t2 = _this._semanticsInfo, t3 = t2.length, _i = 0, t4 = ""; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { info = t2[_i]; t5 = info.semanticsLabel; t4 += H.S(t5 == null ? info.text : t5); } config._semantics$_label = t4.charCodeAt(0) == 0 ? t4 : t4; config._hasBeenAnnotated = true; t1 = t1._text_painter$_textDirection; t1.toString; config._semantics$_textDirection = t1; } }, assembleSemanticsNode$3: function(node, config, children) { var newChildCache, t3, t4, t5, t6, t7, t8, t9, currentRect, currentDirection, ordinal, start, _i, info, start0, t10, t11, t12, t13, rects, rect, currentDirection0, configuration, ordinal0, recognizer, newChild, _this = this, _null = null, newChildren = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode), t1 = _this._paragraph$_textPainter, t2 = t1._text_painter$_textDirection; t2.toString; newChildCache = P.ListQueue$(_null, type$.SemanticsNode); t3 = _this._semanticsInfo; t3.toString; t3 = G.combineSemanticsInfo(t3); t4 = t3.length; t5 = type$.BoxConstraints; t6 = type$.SemanticsAction; t7 = type$.void_Function_nullable_Object; t8 = type$.CustomSemanticsAction; t9 = type$.void_Function; currentRect = _null; currentDirection = t2; ordinal = 0; start = 0; _i = 0; for (; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i, start = start0) { info = t3[_i]; t2 = info.text; start0 = start + t2.length; t10 = start < start0; t11 = t10 ? start0 : start; t10 = t10 ? start : start0; t12 = t5._as(K.RenderObject.prototype.get$constraints.call(_this)); t1.setPlaceholderDimensions$1(_this._paragraph$_placeholderDimensions); t13 = t12.minWidth; t12 = t12.maxWidth; t1.layout$2$maxWidth$minWidth(0, _this._softWrap || _this._paragraph$_overflow === C.TextOverflow_2 ? t12 : 1 / 0, t13); rects = t1._text_painter$_paragraph.getBoxesForRange$4$boxHeightStyle$boxWidthStyle(t10, t11, C.BoxHeightStyle_0, C.BoxWidthStyle_0); if (rects.length === 0) continue; t10 = C.JSArray_methods.get$first(rects); rect = new P.Rect(t10.left, t10.top, t10.right, t10.bottom); currentDirection0 = C.JSArray_methods.get$first(rects).direction; for (t10 = H._arrayInstanceType(rects), t11 = t10._eval$1("SubListIterable<1>"), t12 = new H.SubListIterable(rects, 1, _null, t11), t12.SubListIterable$3(rects, 1, _null, t10._precomputed1), t11 = new H.ListIterator(t12, t12.get$length(t12), t11._eval$1("ListIterator")); t11.moveNext$0();) { t10 = t11.__internal$_current; rect = rect.expandToInclude$1(new P.Rect(t10.left, t10.top, t10.right, t10.bottom)); currentDirection0 = t10.direction; } t10 = rect.left; t11 = Math.max(0, H.checkNum(t10)); t12 = rect.top; t13 = Math.max(0, H.checkNum(t12)); t10 = Math.min(rect.right - t10, H.checkNum(t5._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth)); t12 = Math.min(rect.bottom - t12, H.checkNum(t5._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight)); currentRect = new P.Rect(Math.floor(t11) - 4, Math.floor(t13) - 4, Math.ceil(t11 + t10) + 4, Math.ceil(t13 + t12) + 4); configuration = new A.SemanticsConfiguration(P.LinkedHashMap_LinkedHashMap$_empty(t6, t7), P.LinkedHashMap_LinkedHashMap$_empty(t8, t9)); ordinal0 = ordinal + 1; configuration._semantics$_sortKey = new A.OrdinalSortKey(ordinal, _null); configuration._hasBeenAnnotated = true; configuration._semantics$_textDirection = currentDirection; t12 = info.semanticsLabel; configuration._semantics$_label = t12 == null ? t2 : t12; recognizer = info.recognizer; if (recognizer != null) { t2 = recognizer.onTap; if (t2 != null) { configuration._addArgumentlessAction$2(C.SemanticsAction_1, t2); configuration._setFlag$2(C.SemanticsFlag_4194304, true); } } t2 = _this._paragraph$_cachedChildNodes; newChild = (t2 == null ? _null : !t2.get$isEmpty(t2)) === true ? _this._paragraph$_cachedChildNodes.removeFirst$0() : A.SemanticsNode$(_null, _null); newChild.updateWith$1$config(0, configuration); if (!J.$eq$(newChild._semantics$_rect, currentRect)) { newChild._semantics$_rect = currentRect; newChild._semantics$_markDirty$0(); } newChildCache._add$1(0, newChild); newChildren.push(newChild); ordinal = ordinal0; currentDirection = currentDirection0; } _this._paragraph$_cachedChildNodes = newChildCache; node.updateWith$2$childrenInInversePaintOrder$config(0, newChildren, config); }, clearSemantics$0: function() { this.super$RenderObject$clearSemantics(); this._paragraph$_cachedChildNodes = null; }, debugDescribeChildren$0: function() { var t1 = this._paragraph$_textPainter._text_painter$_text; t1.toString; return H.setRuntimeTypeInfo([Y.DiagnosticableTreeNode$("text", C.DiagnosticsTreeStyle_4, t1)], type$.JSArray_DiagnosticsNode); }, text$0: function($receiver) { return this.get$text(this).call$0(); } }; Q.RenderParagraph__extractPlaceholderSpans_closure.prototype = { call$1: function(span) { return true; }, $signature: 251 }; Q.RenderParagraph_hitTestChildren__hitText_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._hitText === $) return t2._hitText = t1; else throw H.wrapException(H.LateError$localAI("hitText")); }, $signature: 686 }; Q.RenderParagraph_hitTestChildren__hitText_get.prototype = { call$0: function() { var t1 = this._box_0._hitText; return t1 === $ ? H.throwExpression(H.LateError$localNI("hitText")) : t1; }, $signature: 188 }; Q.RenderParagraph_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { var t1 = this._box_0.child; t1.toString; transformed.toString; return t1.hitTest$2$position(result, transformed); }, $signature: 96 }; Q.RenderParagraph_paint_closure.prototype = { call$2: function(context, offset) { var t1 = this._box_0.child; t1.toString; context.paintChild$2(t1, offset); }, $signature: 85 }; Q.RenderParagraph_describeSemanticsConfiguration_closure.prototype = { call$1: function(info) { return info.recognizer != null; }, $signature: 694 }; Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.TextParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin.prototype = { attach$1: function(owner) { this.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$attach(owner); $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.add$1(0, this.get$systemFontsDidChange()); }, detach$0: function(_) { $.PaintingBinding__instance.PaintingBinding__systemFonts._systemFontsCallbacks.remove$1(0, this.get$systemFontsDidChange()); this.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$detach(0); } }; L.RenderPerformanceOverlay.prototype = { set$optionsMask: function(value) { if (value === this._optionsMask) return; this._optionsMask = value; this.markNeedsPaint$0(); }, set$rasterizerThreshold: function(value) { if (value === this._rasterizerThreshold) return; this._rasterizerThreshold = value; this.markNeedsPaint$0(); }, get$sizedByParent: function() { return true; }, get$alwaysNeedsCompositing: function() { return true; }, computeMinIntrinsicWidth$1: function(height) { return 0; }, computeMaxIntrinsicWidth$1: function(height) { return 0; }, get$_intrinsicHeight: function() { var t1 = this._optionsMask, result = (t1 | 1) >>> 0 > 0 || (t1 | 2) >>> 0 > 0 ? 80 : 0; return (t1 | 4) >>> 0 > 0 || (t1 | 8) >>> 0 > 0 ? result + 80 : result; }, computeMinIntrinsicHeight$1: function(width) { return this.get$_intrinsicHeight(); }, computeMaxIntrinsicHeight$1: function(width) { return this.get$_intrinsicHeight(); }, computeDryLayout$1: function(constraints) { return constraints.constrain$1(new P.Size(1 / 0, this.get$_intrinsicHeight())); }, paint$2: function(context, offset) { var t5, t6, t1 = offset._dx, t2 = offset._dy, t3 = this._box$_size, t4 = t3._dx; t3 = t3._dy; t5 = this._optionsMask; t6 = this._rasterizerThreshold; context.stopRecordingIfNeeded$0(); context.appendLayer$1(new T.PerformanceOverlayLayer(new P.Rect(t1, t2, t1 + t4, t2 + t3), t5, t6, false, false)); } }; G.PlatformViewHitTestBehavior.prototype = { toString$0: function(_) { return this._platform_view0$_name; } }; G._factoriesTypeSet_closure.prototype = { call$1: function(factory) { return factory.get$type(factory); }, $signature: function() { return this.T._eval$1("Type(Factory<0>)"); } }; G._PlatformViewGestureRecognizer.prototype = { _PlatformViewGestureRecognizer$3$kind: function(handlePointerEvent, gestureRecognizerFactories, kind) { var t2, _this = this, t1 = new V.GestureArenaTeam(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._CombiningGestureArenaMember)); t1.captain = _this; _this._team = t1; t1 = _this.gestureRecognizerFactories; t2 = H._instanceType(t1)._eval$1("EfficientLengthMappedIterable"); _this.___PlatformViewGestureRecognizer__gestureRecognizers = P.LinkedHashSet_LinkedHashSet$of(new H.EfficientLengthMappedIterable(t1, new G._PlatformViewGestureRecognizer_closure(_this), t2), t2._eval$1("Iterable.E")); _this.___PlatformViewGestureRecognizer__handlePointerEvent = handlePointerEvent; }, get$_platform_view0$_handlePointerEvent: function() { var t1 = this.___PlatformViewGestureRecognizer__handlePointerEvent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_handlePointerEvent")) : t1; }, addAllowedPointer$1: function($event) { var t1, t2; this.startTrackingPointer$2($event.get$pointer(), $event.get$transform($event)); t1 = this.___PlatformViewGestureRecognizer__gestureRecognizers; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_gestureRecognizers")); t1 = t1.get$iterator(t1); for (; t1.moveNext$0();) { t2 = t1.get$current(t1); t2._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (t2.isPointerAllowed$1($event)) t2.addAllowedPointer$1($event); else t2.handleNonAllowedPointer$1($event); } }, didStopTrackingLastPointer$1: function(pointer) { }, handleEvent$1: function($event) { var t1, _this = this; if (!_this.forwardedPointers.contains$1(0, $event.get$pointer())) { t1 = _this.cachedEvents; if (!t1.containsKey$1(0, $event.get$pointer())) t1.$indexSet(0, $event.get$pointer(), H.setRuntimeTypeInfo([], type$.JSArray_PointerEvent_2)); t1.$index(0, $event.get$pointer()).push($event); } else _this._platform_view0$_handlePointerEvent$1($event); _this.stopTrackingIfPointerNoLongerDown$1($event); }, acceptGesture$1: function(pointer) { var t1 = this.cachedEvents.remove$1(0, pointer); if (t1 != null) J.forEach$1$ax(t1, this.get$_platform_view0$_handlePointerEvent()); this.forwardedPointers.add$1(0, pointer); }, rejectGesture$1: function(pointer) { this.super$OneSequenceGestureRecognizer$stopTrackingPointer(pointer); this.forwardedPointers.remove$1(0, pointer); this.cachedEvents.remove$1(0, pointer); }, stopTrackingPointer$1: function(pointer) { this.super$OneSequenceGestureRecognizer$stopTrackingPointer(pointer); this.forwardedPointers.remove$1(0, pointer); }, reset$0: function(_) { var _this = this, t1 = _this.forwardedPointers; t1.forEach$1(0, S.OneSequenceGestureRecognizer.prototype.get$stopTrackingPointer.call(_this)); t1.clear$0(0); t1 = _this.cachedEvents; t1.get$keys(t1).forEach$1(0, S.OneSequenceGestureRecognizer.prototype.get$stopTrackingPointer.call(_this)); t1.clear$0(0); _this.resolve$1(C.GestureDisposition_1); }, _platform_view0$_handlePointerEvent$1: function(arg0) { return this.get$_platform_view0$_handlePointerEvent().call$1(arg0); } }; G._PlatformViewGestureRecognizer_closure.prototype = { call$1: function(recognizerFactory) { var gestureRecognizer = recognizerFactory.constructor$0(0); gestureRecognizer.set$team(this.$this._team); gestureRecognizer.get$onLongPress(); return gestureRecognizer; }, $signature: 2490 }; G.PlatformViewRenderBox.prototype = { set$controller: function(_, controller) { var t2, _this = this, t1 = _this._platform_view0$_controller; if (t1 == controller) return; t1 = t1.get$viewId(); t2 = controller.get$viewId(); _this._platform_view0$_controller = controller; _this.markNeedsPaint$0(); if (t1 != t2) _this.markNeedsSemanticsUpdate$0(); }, get$sizedByParent: function() { return true; }, get$alwaysNeedsCompositing: function() { return true; }, get$isRepaintBoundary: function() { return true; }, computeDryLayout$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, paint$2: function(context, offset) { var t5, t1 = this._box$_size, t2 = offset._dx, t3 = offset._dy, t4 = t1._dx; t1 = t1._dy; t5 = this._platform_view0$_controller.get$viewId(); context.stopRecordingIfNeeded$0(); context.appendLayer$1(new T.PlatformViewLayer(new P.Rect(t2, t3, t2 + t4, t3 + t1), t5)); }, describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = true; config.set$platformViewId(this._platform_view0$_controller.get$viewId()); }, $isMouseTrackerAnnotation: 1 }; G._PlatformViewGestureMixin.prototype = { set$hitTestBehavior: function(value) { var _this = this; if (value !== _this._PlatformViewGestureMixin__hitTestBehavior) { _this._PlatformViewGestureMixin__hitTestBehavior = value; if (_this.get$owner() != null) _this.markNeedsPaint$0(); } }, _updateGestureRecognizersWithCallBack$2: function(gestureRecognizers, handlePointerEvent) { var _this = this, t1 = _this._PlatformViewGestureMixin__gestureRecognizer; t1 = t1 == null ? null : t1.gestureRecognizerFactories; if (G._factoryTypesSetEquals(gestureRecognizers, t1, type$.OneSequenceGestureRecognizer)) return; t1 = _this._PlatformViewGestureMixin__gestureRecognizer; if (t1 != null) t1.dispose$0(0); _this._PlatformViewGestureMixin__gestureRecognizer = G._PlatformViewGestureRecognizer$(handlePointerEvent, gestureRecognizers); _this._PlatformViewGestureMixin__handlePointerEvent = handlePointerEvent; }, hitTest$2$position: function(result, position) { var t1, _this = this; if (_this._PlatformViewGestureMixin__hitTestBehavior === C.PlatformViewHitTestBehavior_2 || !_this._box$_size.contains$1(0, position)) return false; t1 = new S.BoxHitTestEntry(position, _this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); return _this._PlatformViewGestureMixin__hitTestBehavior === C.PlatformViewHitTestBehavior_0; }, hitTestSelf$1: function(position) { return this._PlatformViewGestureMixin__hitTestBehavior !== C.PlatformViewHitTestBehavior_2; }, get$onEnter: function(_) { return null; }, get$onExit: function(_) { return null; }, get$cursor: function(_) { return C.C__NoopMouseCursor; }, get$validForMouseTracker: function() { return true; }, handleEvent$2: function($event, entry) { var t1; if (type$.PointerDownEvent._is($event)) this._PlatformViewGestureMixin__gestureRecognizer.addPointer$1($event); if (type$.PointerHoverEvent._is($event)) { t1 = this._PlatformViewGestureMixin__handlePointerEvent; if (t1 != null) t1.call$1($event); } } }; G._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin.prototype = { detach$0: function(_) { this._PlatformViewGestureMixin__gestureRecognizer.reset$0(0); this.super$AbstractNode$detach(0); } }; E.RenderProxyBox.prototype = {}; E.RenderProxyBoxMixin.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof K.ParentData)) child.parentData = new K.ParentData(); }, computeMinIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDryLayout$1: function(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDryLayout$1(constraints); return this.computeSizeForNoChild$1(constraints); }, performLayout$0: function() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child, t2 = type$.BoxConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, t2._as(K.RenderObject.prototype.get$constraints.call(_this)), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = t1; } else _this._box$_size = _this.computeSizeForNoChild$1(t2._as(K.RenderObject.prototype.get$constraints.call(_this))); }, computeSizeForNoChild$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, hitTestChildren$2$position: function(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, applyPaintTransform$2: function(child, transform) { }, paint$2: function(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; E.HitTestBehavior.prototype = { toString$0: function(_) { return this._proxy_box$_name; } }; E.RenderProxyBoxWithHitTestBehavior.prototype = { hitTest$2$position: function(result, position) { var hitTarget, t1, _this = this; if (_this._box$_size.contains$1(0, position)) { hitTarget = _this.hitTestChildren$2$position(result, position) || _this.behavior === C.HitTestBehavior_1; if (hitTarget || _this.behavior === C.HitTestBehavior_2) { t1 = new S.BoxHitTestEntry(position, _this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); } } else hitTarget = false; return hitTarget; }, hitTestSelf$1: function(position) { return this.behavior === C.HitTestBehavior_1; } }; E.RenderConstrainedBox.prototype = { set$additionalConstraints: function(value) { if (J.$eq$(this._additionalConstraints, value)) return; this._additionalConstraints = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var width, t1 = this._additionalConstraints, t2 = t1.maxWidth; if (t2 < 1 / 0 && t1.minWidth >= t2) return t1.minWidth; width = this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); t1 = this._additionalConstraints; t2 = t1.minWidth; if (!(t2 >= 1 / 0)) return J.clamp$2$n(width, t2, t1.maxWidth); return width; }, computeMaxIntrinsicWidth$1: function(height) { var width, t1 = this._additionalConstraints, t2 = t1.maxWidth; if (t2 < 1 / 0 && t1.minWidth >= t2) return t1.minWidth; width = this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); t1 = this._additionalConstraints; t2 = t1.minWidth; if (!(t2 >= 1 / 0)) return J.clamp$2$n(width, t2, t1.maxWidth); return width; }, computeMinIntrinsicHeight$1: function(width) { var height, t1 = this._additionalConstraints, t2 = t1.maxHeight; if (t2 < 1 / 0 && t1.minHeight >= t2) return t1.minHeight; height = this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); t1 = this._additionalConstraints; t2 = t1.minHeight; if (!(t2 >= 1 / 0)) return J.clamp$2$n(height, t2, t1.maxHeight); return height; }, computeMaxIntrinsicHeight$1: function(width) { var height, t1 = this._additionalConstraints, t2 = t1.maxHeight; if (t2 < 1 / 0 && t1.minHeight >= t2) return t1.minHeight; height = this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); t1 = this._additionalConstraints; t2 = t1.minHeight; if (!(t2 >= 1 / 0)) return J.clamp$2$n(height, t2, t1.maxHeight); return height; }, performLayout$0: function() { var _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.RenderObjectWithChildMixin__child, t2 = _this._additionalConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, t2.enforce$1(constraints), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = t1; } else _this._box$_size = t2.enforce$1(constraints).constrain$1(C.Size_0_0); }, computeDryLayout$1: function(constraints) { var t1 = this.RenderObjectWithChildMixin__child, t2 = this._additionalConstraints; if (t1 != null) return t1.getDryLayout$1(t2.enforce$1(constraints)); else return t2.enforce$1(constraints).constrain$1(C.Size_0_0); } }; E.RenderLimitedBox.prototype = { set$maxWidth: function(_, value) { if (this._proxy_box$_maxWidth === value) return; this._proxy_box$_maxWidth = value; this.markNeedsLayout$0(); }, set$maxHeight: function(_, value) { if (this._maxHeight === value) return; this._maxHeight = value; this.markNeedsLayout$0(); }, _limitConstraints$1: function(constraints) { var t3, t4, t1 = constraints.minWidth, t2 = constraints.maxWidth; t2 = t2 < 1 / 0 ? t2 : C.JSInt_methods.clamp$2(this._proxy_box$_maxWidth, t1, t2); t3 = constraints.minHeight; t4 = constraints.maxHeight; return new S.BoxConstraints(t1, t2, t3, t4 < 1 / 0 ? t4 : C.JSInt_methods.clamp$2(this._maxHeight, t3, t4)); }, _proxy_box$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return constraints.constrain$1(layoutChild.call$2(t1, this._limitConstraints$1(constraints))); return this._limitConstraints$1(constraints).constrain$1(C.Size_0_0); }, computeDryLayout$1: function(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; E.RenderAspectRatio.prototype = { set$aspectRatio: function(_, value) { if (this._aspectRatio === value) return; this._aspectRatio = value; this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t1; height.toString; if (isFinite(height)) return height * this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1; height.toString; if (isFinite(height)) return height * this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1; width.toString; if (isFinite(width)) return width / this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1; width.toString; if (isFinite(width)) return width / this._aspectRatio; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, _applyAspectRatio$1: function(constraints) { var t1, height, width1, height0, width = constraints.minWidth, width0 = constraints.maxWidth; if (width >= width0 && constraints.minHeight >= constraints.maxHeight) return new P.Size(C.JSInt_methods.clamp$2(0, width, width0), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); t1 = this._aspectRatio; if (isFinite(width0)) { height = width0 / t1; width1 = width0; } else { height = constraints.maxHeight; width1 = height * t1; } if (width1 > width0) height = width0 / t1; else width0 = width1; height0 = constraints.maxHeight; if (height > height0) { width0 = height0 * t1; height = height0; } if (width0 < width) height = width / t1; else width = width0; height0 = constraints.minHeight; if (height < height0) { width = height0 * t1; height = height0; } return constraints.constrain$1(new P.Size(width, height)); }, computeDryLayout$1: function(constraints) { return this._applyAspectRatio$1(constraints); }, performLayout$0: function() { var t2, _this = this, t1 = _this._applyAspectRatio$1(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this))); _this._box$_size = t1; t2 = _this.RenderObjectWithChildMixin__child; if (t2 != null) t2.layout$1(0, S.BoxConstraints$tight(t1)); } }; E.RenderIntrinsicWidth.prototype = { set$stepWidth: function(value) { if (value == this._stepWidth) return; this._stepWidth = value; this.markNeedsLayout$0(); }, set$stepHeight: function(value) { return; }, computeMinIntrinsicWidth$1: function(height) { return this.computeMaxIntrinsicWidth$1(height); }, computeMaxIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; return E.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()), this._stepWidth); }, computeMinIntrinsicHeight$1: function(width) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; width.toString; if (!isFinite(width)) width = _this.computeMaxIntrinsicWidth$1(1 / 0); t1 = _this.RenderObjectWithChildMixin__child; return E.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()), _this._stepHeight); }, computeMaxIntrinsicHeight$1: function(width) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; width.toString; if (!isFinite(width)) width = _this.computeMaxIntrinsicWidth$1(1 / 0); t1 = _this.RenderObjectWithChildMixin__child; return E.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()), _this._stepHeight); }, _proxy_box$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { if (!(constraints.minWidth >= constraints.maxWidth)) constraints = constraints.tighten$1$width(E.RenderIntrinsicWidth__applyStep(t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, constraints.maxHeight, t1.get$computeMaxIntrinsicWidth()), this._stepWidth)); t1 = this.RenderObjectWithChildMixin__child; t1.toString; return layoutChild.call$2(t1, constraints); } else return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, computeDryLayout$1: function(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; E.RenderIntrinsicHeight.prototype = { computeMinIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; height.toString; if (!isFinite(height)) height = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, 1 / 0, t1.get$computeMaxIntrinsicHeight()); t1 = this.RenderObjectWithChildMixin__child; return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); }, computeMaxIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; height.toString; if (!isFinite(height)) height = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, 1 / 0, t1.get$computeMaxIntrinsicHeight()); t1 = this.RenderObjectWithChildMixin__child; return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); }, computeMinIntrinsicHeight$1: function(width) { return this.computeMaxIntrinsicHeight$1(width); }, _proxy_box$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { if (!(constraints.minHeight >= constraints.maxHeight)) constraints = constraints.tighten$1$height(t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, constraints.maxWidth, t1.get$computeMaxIntrinsicHeight())); t1 = this.RenderObjectWithChildMixin__child; t1.toString; return layoutChild.call$2(t1, constraints); } else return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, computeDryLayout$1: function(constraints) { return this._proxy_box$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, performLayout$0: function() { this._box$_size = this._proxy_box$_computeSize$2$constraints$layoutChild(type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(this)), N.layout_helper_ChildLayoutHelper_layoutChild$closure()); } }; E.RenderOpacity.prototype = { get$alwaysNeedsCompositing: function() { if (this.RenderObjectWithChildMixin__child != null) { var t1 = this._alpha; t1 = t1 !== 0 && t1 !== 255; } else t1 = false; return t1; }, set$opacity: function(_, value) { var didNeedCompositing, t1, _this = this; if (_this._proxy_box$_opacity == value) return; didNeedCompositing = _this.get$alwaysNeedsCompositing(); t1 = _this._alpha; _this._proxy_box$_opacity = value; _this._alpha = C.JSNumber_methods.round$0(J.clamp$2$n(value, 0, 1) * 255); if (didNeedCompositing !== _this.get$alwaysNeedsCompositing()) _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsPaint$0(); if (t1 !== 0 !== (_this._alpha !== 0) && true) _this.markNeedsSemanticsUpdate$0(); }, set$alwaysIncludeSemantics: function(value) { return; }, paint$2: function(context, offset) { var t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = _this._alpha; if (t2 === 0) { _this._layer = null; return; } if (t2 === 255) { _this._layer = null; context.paintChild$2(t1, offset); return; } _this._layer = context.pushOpacity$4$oldLayer(offset, t2, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), type$.nullable_OpacityLayer._as(_this._layer)); } }, visitChildrenForSemantics$1: function(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t2 = this._alpha !== 0 || false; else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; E.RenderAnimatedOpacityMixin.prototype = { get$alwaysNeedsCompositing: function() { if (this.RenderObjectWithChildMixin__child != null) { var t1 = this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing; t1.toString; } else t1 = false; return t1; }, set$opacity: function(_, value) { var _this = this, t1 = _this.RenderAnimatedOpacityMixin__opacity; if (t1 == value) return; if (_this._node$_owner != null && t1 != null) t1.removeListener$1(0, _this.get$_updateOpacity()); _this.RenderAnimatedOpacityMixin__opacity = value; if (_this._node$_owner != null) value.addListener$1(0, _this.get$_updateOpacity()); _this._updateOpacity$0(); }, set$alwaysIncludeSemantics: function(value) { if (value === this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics) return; this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics = value; this.markNeedsSemanticsUpdate$0(); }, _updateOpacity$0: function() { var didNeedCompositing, _this = this, oldAlpha = _this.RenderAnimatedOpacityMixin__alpha, t1 = _this.RenderAnimatedOpacityMixin__opacity; t1 = _this.RenderAnimatedOpacityMixin__alpha = C.JSNumber_methods.round$0(J.clamp$2$n(t1.get$value(t1), 0, 1) * 255); if (oldAlpha !== t1) { didNeedCompositing = _this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing; t1 = t1 > 0 && t1 < 255; _this.RenderAnimatedOpacityMixin__currentlyNeedsCompositing = t1; if (_this.RenderObjectWithChildMixin__child != null && didNeedCompositing !== t1) _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsPaint$0(); if (oldAlpha === 0 || _this.RenderAnimatedOpacityMixin__alpha === 0) _this.markNeedsSemanticsUpdate$0(); } }, visitChildrenForSemantics$1: function(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) if (this.RenderAnimatedOpacityMixin__alpha === 0) { t2 = this.RenderAnimatedOpacityMixin__alwaysIncludeSemantics; t2.toString; } else t2 = true; else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; E.RenderAnimatedOpacity.prototype = {}; E.CustomClipper.prototype = { addListener$1: function(_, listener) { var t1 = this._reclip; return t1 == null ? null : t1.addListener$1(0, listener); }, removeListener$1: function(_, listener) { var t1 = this._reclip; return t1 == null ? null : t1.removeListener$1(0, listener); }, toString$0: function(_) { return "CustomClipper"; } }; E.ShapeBorderClipper.prototype = { getClip$1: function(size) { return this.shape.getOuterPath$2$textDirection(new P.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldReclip$1: function(oldClipper) { if (H.getRuntimeType(oldClipper) !== C.Type_ShapeBorderClipper_QWG) return true; type$.ShapeBorderClipper._as(oldClipper); return !J.$eq$(oldClipper.shape, this.shape) || oldClipper.textDirection != this.textDirection; } }; E._RenderCustomClip.prototype = { set$clipper: function(newClipper) { var t2, _this = this, t1 = _this._clipper; if (t1 == newClipper) return; _this._clipper = newClipper; t2 = newClipper == null; if (t2 || t1 == null || H.getRuntimeType(newClipper) !== H.getRuntimeType(t1) || newClipper.shouldReclip$1(t1)) _this._markNeedsClip$0(); if (_this._node$_owner != null) { if (t1 != null) t1.removeListener$1(0, _this.get$_markNeedsClip()); if (!t2) newClipper.addListener$1(0, _this.get$_markNeedsClip()); } }, attach$1: function(owner) { var t1; this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); t1 = this._clipper; if (t1 != null) t1.addListener$1(0, this.get$_markNeedsClip()); }, detach$0: function(_) { var t1 = this._clipper; if (t1 != null) t1.removeListener$1(0, this.get$_markNeedsClip()); this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, _markNeedsClip$0: function() { this._clip = null; this.markNeedsPaint$0(); this.markNeedsSemanticsUpdate$0(); }, set$clipBehavior: function(value) { if (value !== this._clipBehavior) { this._clipBehavior = value; this.markNeedsPaint$0(); } }, performLayout$0: function() { var t1, _this = this, oldSize = _this._box$_size; oldSize = oldSize != null ? oldSize : null; _this.super$RenderProxyBoxMixin$performLayout(); t1 = _this._box$_size; t1.toString; if (!J.$eq$(oldSize, t1)) _this._clip = null; }, _updateClip$0: function() { var t1, t2, _this = this; if (_this._clip == null) { t1 = _this._clipper; if (t1 == null) t1 = null; else { t2 = _this._box$_size; t2.toString; t2 = t1.getClip$1(t2); t1 = t2; } _this._clip = t1 == null ? _this.get$_defaultClip() : t1; } }, describeApproximatePaintClip$1: function(child) { var t1; if (this._clipper == null) t1 = null; else { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } if (t1 == null) { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } return t1; } }; E.RenderClipRect.prototype = { get$_defaultClip: function() { var t1 = this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, hitTest$2$position: function(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this.get$_needsCompositing(); t2 = _this._clip; t2.toString; _this._layer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, t2, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._clipBehavior, type$.nullable_ClipRectLayer._as(_this._layer)); } else _this._layer = null; } }; E.RenderClipRRect.prototype = { set$borderRadius: function(_, value) { if (this._proxy_box$_borderRadius.$eq(0, value)) return; this._proxy_box$_borderRadius = value; this._markNeedsClip$0(); }, get$_defaultClip: function() { var t1 = this._proxy_box$_borderRadius, t2 = this._box$_size; return t1.toRRect$1(new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); }, hitTest$2$position: function(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this.get$_needsCompositing(); t2 = _this._clip; _this._layer = context.pushClipRRect$7$clipBehavior$oldLayer(t1, offset, new P.Rect(t2.left, t2.top, t2.right, t2.bottom), t2, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._clipBehavior, type$.nullable_ClipRRectLayer._as(_this._layer)); } else _this._layer = null; } }; E.RenderClipOval.prototype = { get$_defaultClip: function() { var t1 = this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, hitTest$2$position: function(result, position) { var center, t1, t2, _this = this; _this._updateClip$0(); center = _this._clip.get$center(); t1 = position._dx; t2 = _this._clip; if (new P.Offset((t1 - center._dx) / (t2.right - t2.left), (position._dy - center._dy) / (t2.bottom - t2.top)).get$distanceSquared() > 0.25) return false; return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var t1, t2, t3, t4, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this.get$_needsCompositing(); t2 = _this._clip; t2.toString; if (!t2.$eq(0, _this._proxy_box$_cachedRect)) { _this._proxy_box$_cachedRect = t2; t3 = P.Path_Path(); t4 = _this._proxy_box$_cachedRect; t4.toString; t3.addOval$1(0, t4); _this.__RenderClipOval__cachedPath = t3; } t3 = _this.__RenderClipOval__cachedPath; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_cachedPath")); _this._layer = context.pushClipPath$7$clipBehavior$oldLayer(t1, offset, t2, t3, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._clipBehavior, type$.nullable_ClipPathLayer._as(_this._layer)); } else _this._layer = null; } }; E.RenderClipPath.prototype = { get$_defaultClip: function() { var t1 = P.Path_Path(), t2 = this._box$_size; t1.addRect$1(0, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); return t1; }, hitTest$2$position: function(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var t1, t2, t3, t4, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; t3 = t2._dx; t2 = t2._dy; t4 = _this._clip; t4.toString; _this._layer = context.pushClipPath$7$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t3, 0 + t2), t4, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), _this._clipBehavior, type$.nullable_ClipPathLayer._as(_this._layer)); } else _this._layer = null; } }; E._RenderPhysicalModelBase.prototype = { set$elevation: function(_, value) { if (this._proxy_box$_elevation == value) return; this._proxy_box$_elevation = value; this.markNeedsPaint$0(); }, set$shadowColor: function(_, value) { if (J.$eq$(this._proxy_box$_shadowColor, value)) return; this._proxy_box$_shadowColor = value; this.markNeedsPaint$0(); }, set$color: function(_, value) { if (J.$eq$(this._proxy_box$_color, value)) return; this._proxy_box$_color = value; this.markNeedsPaint$0(); }, get$alwaysNeedsCompositing: function() { return true; }, describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.set$elevation(0, this._proxy_box$_elevation); } }; E.RenderPhysicalModel.prototype = { set$shape: function(_, value) { if (this._proxy_box$_shape === value) return; this._proxy_box$_shape = value; this._markNeedsClip$0(); }, set$borderRadius: function(_, value) { if (J.$eq$(this._proxy_box$_borderRadius, value)) return; this._proxy_box$_borderRadius = value; this._markNeedsClip$0(); }, get$_defaultClip: function() { var t1, t2, t3, t4, _this = this; switch (_this._proxy_box$_shape) { case C.BoxShape_0: t1 = _this._proxy_box$_borderRadius; if (t1 == null) t1 = C.BorderRadius_tLn; t2 = _this._box$_size; return t1.toRRect$1(new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); case C.BoxShape_1: t1 = _this._box$_size; t2 = 0 + t1._dx; t1 = 0 + t1._dy; t3 = (t2 - 0) / 2; t4 = (t1 - 0) / 2; return new P.RRect(0, 0, t2, t1, t3, t4, t3, t4, t3, t4, t3, t4, t3 === t4); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, hitTest$2$position: function(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var offsetRRect, offsetRRectAsPath, t1, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); offsetRRect = _this._clip.shift$1(offset); offsetRRectAsPath = P.Path_Path(); offsetRRectAsPath.addRRect$1(0, offsetRRect); t1 = type$.nullable_PhysicalModelLayer; if (t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layer = T.PhysicalModelLayer$(); t2 = t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)); t2.set$clipPath(0, offsetRRectAsPath); t2.set$clipBehavior(_this._clipBehavior); t3 = _this._proxy_box$_elevation; t2.set$elevation(0, t3); t2.set$color(0, _this._proxy_box$_color); t2.set$shadowColor(0, _this._proxy_box$_shadowColor); t1 = t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)); t1.toString; context.pushLayer$4$childPaintBounds(t1, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset, new P.Rect(offsetRRect.left, offsetRRect.top, offsetRRect.right, offsetRRect.bottom)); } else _this._layer = null; } }; E.RenderPhysicalShape.prototype = { get$_defaultClip: function() { var t1 = P.Path_Path(), t2 = this._box$_size; t1.addRect$1(0, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); return t1; }, hitTest$2$position: function(result, position) { var _this = this; if (_this._clipper != null) { _this._updateClip$0(); if (!_this._clip.contains$1(0, position)) return false; } return _this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { var t1, t2, t3, t4, offsetPath, t5, t6, t7, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { _this._updateClip$0(); t1 = _this._box$_size; t2 = offset._dx; t3 = offset._dy; t4 = t1._dx; t1 = t1._dy; offsetPath = _this._clip.shift$1(offset); t5 = type$.nullable_PhysicalModelLayer; if (t5._as(K.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layer = T.PhysicalModelLayer$(); t6 = t5._as(K.RenderObject.prototype.get$layer.call(_this, _this)); t6.set$clipPath(0, offsetPath); t6.set$clipBehavior(_this._clipBehavior); t7 = _this._proxy_box$_elevation; t6.set$elevation(0, t7); t6.set$color(0, _this._proxy_box$_color); t6.set$shadowColor(0, _this._proxy_box$_shadowColor); t5 = t5._as(K.RenderObject.prototype.get$layer.call(_this, _this)); t5.toString; context.pushLayer$4$childPaintBounds(t5, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset, new P.Rect(t2, t3, t2 + t4, t3 + t1)); } else _this._layer = null; } }; E.DecorationPosition.prototype = { toString$0: function(_) { return this._proxy_box$_name; } }; E.RenderDecoratedBox.prototype = { set$decoration: function(_, value) { var t1, _this = this; if (J.$eq$(value, _this._proxy_box$_decoration)) return; t1 = _this._proxy_box$_painter; if (t1 != null) t1.dispose$0(0); _this._proxy_box$_painter = null; _this._proxy_box$_decoration = value; _this.markNeedsPaint$0(); }, set$position: function(_, value) { if (value === this._proxy_box$_position) return; this._proxy_box$_position = value; this.markNeedsPaint$0(); }, set$configuration: function(value) { if (value.$eq(0, this._proxy_box$_configuration)) return; this._proxy_box$_configuration = value; this.markNeedsPaint$0(); }, detach$0: function(_) { var _this = this, t1 = _this._proxy_box$_painter; if (t1 != null) t1.dispose$0(0); _this._proxy_box$_painter = null; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); _this.markNeedsPaint$0(); }, hitTestSelf$1: function(position) { var t1 = this._proxy_box$_decoration, t2 = this._box$_size; t2.toString; return t1.hitTest$3$textDirection(t2, position, this._proxy_box$_configuration.textDirection); }, paint$2: function(context, offset) { var t1, t2, filledConfiguration, _this = this; if (_this._proxy_box$_painter == null) _this._proxy_box$_painter = _this._proxy_box$_decoration.createBoxPainter$1(_this.get$markNeedsPaint()); t1 = _this._proxy_box$_configuration; t2 = _this._box$_size; t2.toString; filledConfiguration = t1.copyWith$1$size(t2); if (_this._proxy_box$_position === C.DecorationPosition_0) { t1 = _this._proxy_box$_painter; t1.toString; t1.paint$3(context.get$canvas(context), offset, filledConfiguration); if (_this._proxy_box$_decoration.get$isComplex()) context.setIsComplexHint$0(); } _this.super$RenderProxyBoxMixin$paint(context, offset); if (_this._proxy_box$_position === C.DecorationPosition_1) { t1 = _this._proxy_box$_painter; t1.toString; t1.paint$3(context.get$canvas(context), offset, filledConfiguration); if (_this._proxy_box$_decoration.get$isComplex()) context.setIsComplexHint$0(); } } }; E.RenderTransform.prototype = { set$origin: function(_, value) { return; }, set$alignment: function(value) { var _this = this; if (J.$eq$(_this._alignment, value)) return; _this._alignment = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._proxy_box$_textDirection == value) return; _this._proxy_box$_textDirection = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, set$transform: function(_, value) { var t1, _this = this; if (J.$eq$(_this._proxy_box$_transform, value)) return; t1 = new E.Matrix4(new Float64Array(16)); t1.setFrom$1(value); _this._proxy_box$_transform = t1; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, get$_effectiveTransform: function() { var result, translation, _this = this, t1 = _this._alignment, resolvedAlignment = t1 == null ? null : t1.resolve$1(_this._proxy_box$_textDirection); if (resolvedAlignment == null) return _this._proxy_box$_transform; result = new E.Matrix4(new Float64Array(16)); result.setIdentity$0(); t1 = _this._box$_size; t1.toString; translation = resolvedAlignment.alongSize$1(t1); result.translate$2(0, translation._dx, translation._dy); t1 = _this._proxy_box$_transform; t1.toString; result.multiply$1(0, t1); result.translate$2(0, -translation._dx, -translation._dy); return result; }, hitTest$2$position: function(result, position) { return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position: function(result, position) { var t1 = this.transformHitTests ? this.get$_effectiveTransform() : null; return result.addWithPaintTransform$3$hitTest$position$transform(new E.RenderTransform_hitTestChildren_closure(this), position, t1); }, paint$2: function(context, offset) { var t1, childOffset, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this.get$_effectiveTransform(); t1.toString; childOffset = T.MatrixUtils_getAsTranslation(t1); if (childOffset == null) _this._layer = context.pushTransform$5$oldLayer(_this.get$_needsCompositing(), offset, t1, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), type$.nullable_TransformLayer._as(_this._layer)); else { _this.super$RenderProxyBoxMixin$paint(context, offset.$add(0, childOffset)); _this._layer = null; } } }, applyPaintTransform$2: function(child, transform) { var t1 = this.get$_effectiveTransform(); t1.toString; transform.multiply$1(0, t1); } }; E.RenderTransform_hitTestChildren_closure.prototype = { call$2: function(result, position) { position.toString; return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 96 }; E.RenderFittedBox.prototype = { _proxy_box$_resolve$0: function() { if (this._resolvedAlignment != null) return; this._resolvedAlignment = this._alignment; }, _fitAffectsLayout$1: function(fit) { switch (fit) { case C.BoxFit_6: return true; default: return false; } }, set$fit: function(value) { var _this = this, t1 = _this._fit; if (t1 === value) return; _this._fit = value; if (_this._fitAffectsLayout$1(t1) || _this._fitAffectsLayout$1(value)) _this.markNeedsLayout$0(); else { _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); } }, set$alignment: function(value) { var _this = this; if (_this._alignment.$eq(0, value)) return; _this._alignment = value; _this._resolvedAlignment = _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._proxy_box$_textDirection == value) return; _this._proxy_box$_textDirection = value; _this._resolvedAlignment = _this._proxy_box$_transform = _this._hasVisualOverflow = null; _this.markNeedsPaint$0(); }, computeDryLayout$1: function(constraints) { var childSize, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = t1.getDryLayout$1(C.BoxConstraints_mlX4); switch (this._fit) { case C.BoxFit_6: return constraints.constrain$1(constraints.loosen$0().constrainSizeAndAttemptToPreserveAspectRatio$1(childSize)); default: return constraints.constrainSizeAndAttemptToPreserveAspectRatio$1(childSize); } } else return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0: function() { var sizeConstraints, t2, unconstrainedSize, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, C.BoxConstraints_mlX4, true); t1 = type$.BoxConstraints; switch (_this._fit) { case C.BoxFit_6: sizeConstraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).loosen$0(); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; unconstrainedSize = sizeConstraints.constrainSizeAndAttemptToPreserveAspectRatio$1(t2); _this._box$_size = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(unconstrainedSize); break; default: t1 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrainSizeAndAttemptToPreserveAspectRatio$1(t2); break; } _this._proxy_box$_transform = _this._hasVisualOverflow = null; } else { t1 = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(0, t1.minHeight, t1.maxHeight)); } }, _updatePaintData$0: function() { var t1, t2, t3, sizes, t4, t5, sourceRect, t6, destinationRect, _this = this; if (_this._proxy_box$_transform != null) return; if (_this.RenderObjectWithChildMixin__child == null) { _this._hasVisualOverflow = false; t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); _this._proxy_box$_transform = t1; } else { _this._proxy_box$_resolve$0(); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; t2 = _this._fit; t3 = _this._box$_size; t3.toString; sizes = U.applyBoxFit(t2, t1, t3); t3 = sizes.destination; t2 = sizes.source; t4 = _this._resolvedAlignment; t4.toString; t5 = t1._dx; t1 = t1._dy; sourceRect = t4.inscribe$2(t2, new P.Rect(0, 0, 0 + t5, 0 + t1)); t4 = _this._resolvedAlignment; t4.toString; t6 = _this._box$_size; destinationRect = t4.inscribe$2(t3, new P.Rect(0, 0, 0 + t6._dx, 0 + t6._dy)); t4 = sourceRect.left; _this._hasVisualOverflow = sourceRect.right - t4 < t5 || sourceRect.bottom - sourceRect.top < t1; t1 = E.Matrix4_Matrix4$translationValues(destinationRect.left, destinationRect.top, 0); t1.scale$3(0, t3._dx / t2._dx, t3._dy / t2._dy, 1); t1.translate$2(0, -t4, -sourceRect.top); _this._proxy_box$_transform = t1; } }, _paintChildWithTransform$2: function(context, offset) { var childOffset, t2, t3, t4, _this = this, t1 = _this._proxy_box$_transform; t1.toString; childOffset = T.MatrixUtils_getAsTranslation(t1); if (childOffset == null) { t1 = _this.get$_needsCompositing(); t2 = _this._proxy_box$_transform; t2.toString; t3 = E.RenderProxyBoxMixin.prototype.get$paint.call(_this); t4 = _this._layer; return context.pushTransform$5$oldLayer(t1, offset, t2, t3, t4 instanceof T.TransformLayer ? t4 : null); } else _this.super$RenderProxyBoxMixin$paint(context, offset.$add(0, childOffset)); return null; }, paint$2: function(context, offset) { var t2, t3, t4, _this = this, t1 = _this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1 = t1.get$isEmpty(t1); } else t1 = true; if (t1) return; _this._updatePaintData$0(); if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._hasVisualOverflow; t1.toString; if (t1 && _this._clipBehavior !== C.Clip_0) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; t3 = t2._dx; t2 = t2._dy; t4 = _this._layer; t4 = t4 instanceof T.ClipRectLayer ? t4 : null; _this._layer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t3, 0 + t2), _this.get$_paintChildWithTransform(), _this._clipBehavior, t4); } else _this._layer = _this._paintChildWithTransform$2(context, offset); } }, hitTestChildren$2$position: function(result, position) { var _this = this, t1 = _this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) t1 = null; else { t1 = t1._box$_size; t1 = t1.get$isEmpty(t1); } t1 = t1 === true; } else t1 = true; if (t1) return false; _this._updatePaintData$0(); return result.addWithPaintTransform$3$hitTest$position$transform(new E.RenderFittedBox_hitTestChildren_closure(_this), position, _this._proxy_box$_transform); }, applyPaintTransform$2: function(child, transform) { var t1 = this._box$_size; if (!t1.get$isEmpty(t1)) { t1 = child._box$_size; t1 = t1.get$isEmpty(t1); } else t1 = true; if (t1) transform.setZero$0(); else { this._updatePaintData$0(); t1 = this._proxy_box$_transform; t1.toString; transform.multiply$1(0, t1); } } }; E.RenderFittedBox_hitTestChildren_closure.prototype = { call$2: function(result, position) { position.toString; return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 96 }; E.RenderFractionalTranslation.prototype = { set$translation: function(value) { var _this = this; if (J.$eq$(_this._translation, value)) return; _this._translation = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, hitTest$2$position: function(result, position) { return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position: function(result, position) { var t1, t2, t3, _this = this; if (_this.transformHitTests) { t1 = _this._translation; t2 = t1._dx; t3 = _this._box$_size; t3 = new P.Offset(t2 * t3._dx, t1._dy * t3._dy); t1 = t3; } else t1 = null; return result.addWithPaintOffset$3$hitTest$offset$position(new E.RenderFractionalTranslation_hitTestChildren_closure(_this), t1, position); }, paint$2: function(context, offset) { var t1, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._translation; t2 = t1._dx; t3 = _this._box$_size; _this.super$RenderProxyBoxMixin$paint(context, new P.Offset(offset._dx + t2 * t3._dx, offset._dy + t1._dy * t3._dy)); } }, applyPaintTransform$2: function(child, transform) { var t1 = this._translation, t2 = t1._dx, t3 = this._box$_size; transform.translate$2(0, t2 * t3._dx, t1._dy * t3._dy); } }; E.RenderFractionalTranslation_hitTestChildren_closure.prototype = { call$2: function(result, position) { position.toString; return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 96 }; E.RenderPointerListener.prototype = { computeSizeForNoChild$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, handleEvent$2: function($event, entry) { var t1, _this = this, _null = null; if (type$.PointerDownEvent._is($event)) { t1 = _this.onPointerDown; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerMoveEvent._is($event)) { t1 = _this.onPointerMove; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerUpEvent._is($event)) { t1 = _this.onPointerUp; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerHoverEvent._is($event)) return _null; if (type$.PointerCancelEvent._is($event)) { t1 = _this.onPointerCancel; return t1 == null ? _null : t1.call$1($event); } if (type$.PointerSignalEvent._is($event)) { t1 = _this.onPointerSignal; return t1 == null ? _null : t1.call$1($event); } } }; E.RenderMouseRegion.prototype = { hitTestSelf$1: function(position) { return true; }, hitTest$2$position: function(result, position) { return this.super$RenderBox$hitTest(result, position) && true; }, handleEvent$2: function($event, entry) { var t1 = this.onHover; if (t1 != null && type$.PointerHoverEvent._is($event)) return t1.call$1($event); }, get$cursor: function(_) { return this._cursor; }, get$validForMouseTracker: function() { return this._validForMouseTracker; }, attach$1: function(owner) { this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); this._validForMouseTracker = true; }, detach$0: function(_) { this._validForMouseTracker = false; this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, computeSizeForNoChild$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, $isMouseTrackerAnnotation: 1, get$onEnter: function(receiver) { return this.onEnter; }, get$onExit: function(receiver) { return this.onExit; } }; E.RenderRepaintBoundary.prototype = { get$isRepaintBoundary: function() { return true; } }; E.RenderIgnorePointer.prototype = { set$ignoring: function(value) { var t1, _this = this; if (value == _this._ignoring) return; _this._ignoring = value; t1 = _this._ignoringSemantics; if (t1 == null || !t1) _this.markNeedsSemanticsUpdate$0(); }, set$ignoringSemantics: function(value) { var _this = this, oldEffectiveValue = _this._ignoringSemantics; if (value == oldEffectiveValue) return; if (oldEffectiveValue == null) oldEffectiveValue = _this._ignoring; _this._ignoringSemantics = value; if (oldEffectiveValue != (value == null ? _this._ignoring : value)) _this.markNeedsSemanticsUpdate$0(); }, hitTest$2$position: function(result, position) { return !this._ignoring && this.super$RenderBox$hitTest(result, position); }, visitChildrenForSemantics$1: function(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = this._ignoringSemantics; t2 = !(t2 == null ? this._ignoring : t2); } else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; E.RenderOffstage.prototype = { set$offstage: function(value) { var _this = this; if (value === _this._proxy_box$_offstage) return; _this._proxy_box$_offstage = value; _this.markNeedsLayout$0(); _this.markParentNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMinIntrinsicWidth(height); }, computeMaxIntrinsicWidth$1: function(height) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth(height); }, computeMinIntrinsicHeight$1: function(width) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMinIntrinsicHeight(width); }, computeMaxIntrinsicHeight$1: function(width) { if (this._proxy_box$_offstage) return 0; return this.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight(width); }, computeDistanceToActualBaseline$1: function(baseline) { if (this._proxy_box$_offstage) return null; return this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline(baseline); }, get$sizedByParent: function() { return this._proxy_box$_offstage; }, computeDryLayout$1: function(constraints) { if (this._proxy_box$_offstage) return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return this.super$RenderProxyBoxMixin$computeDryLayout(constraints); }, performResize$0: function() { this.super$RenderBox$performResize(); }, performLayout$0: function() { var t1, _this = this; if (_this._proxy_box$_offstage) { t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$1(0, type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this))); } else _this.super$RenderProxyBoxMixin$performLayout(); }, hitTest$2$position: function(result, position) { return !this._proxy_box$_offstage && this.super$RenderBox$hitTest(result, position); }, paint$2: function(context, offset) { if (this._proxy_box$_offstage) return; this.super$RenderProxyBoxMixin$paint(context, offset); }, visitChildrenForSemantics$1: function(visitor) { if (this._proxy_box$_offstage) return; this.super$RenderObject$visitChildrenForSemantics(visitor); }, debugDescribeChildren$0: function() { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); return H.setRuntimeTypeInfo([Y.DiagnosticableTreeNode$("child", this._proxy_box$_offstage ? C.DiagnosticsTreeStyle_2 : C.DiagnosticsTreeStyle_1, t1)], type$.JSArray_DiagnosticsNode); } }; E.RenderAbsorbPointer.prototype = { set$absorbing: function(value) { if (this._absorbing === value) return; this._absorbing = value; this.markNeedsSemanticsUpdate$0(); }, set$ignoringSemantics: function(value) { return; }, hitTest$2$position: function(result, position) { return this._absorbing ? this._box$_size.contains$1(0, position) : this.super$RenderBox$hitTest(result, position); }, visitChildrenForSemantics$1: function(visitor) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = this._absorbing; t2 = !t2; } else t2 = false; if (t2) { t1.toString; visitor.call$1(t1); } } }; E.RenderSemanticsGestureHandler.prototype = { set$validActions: function(value) { if (S.setEquals(value, this._validActions)) return; this._validActions = value; this.markNeedsSemanticsUpdate$0(); }, set$onTap: function(value) { var t1, _this = this; if (J.$eq$(_this._onTap, value)) return; t1 = _this._onTap; _this._onTap = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onLongPress: function(value) { var t1, _this = this; if (J.$eq$(_this._onLongPress, value)) return; t1 = _this._onLongPress; _this._onLongPress = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onHorizontalDragUpdate: function(value) { var t1, _this = this; if (J.$eq$(_this._onHorizontalDragUpdate, value)) return; t1 = _this._onHorizontalDragUpdate; _this._onHorizontalDragUpdate = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onVerticalDragUpdate: function(value) { var t1, _this = this; if (J.$eq$(_this._onVerticalDragUpdate, value)) return; t1 = _this._onVerticalDragUpdate; _this._onVerticalDragUpdate = value; if (value != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1: function(config) { var t1, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); if (_this._onTap != null) { t1 = _this._validActions; t1 = t1 == null || t1.contains$1(0, C.SemanticsAction_1); } else t1 = false; if (t1) config.set$onTap(_this._onTap); if (_this._onLongPress != null) { t1 = _this._validActions; t1 = t1 == null || t1.contains$1(0, C.SemanticsAction_2); } else t1 = false; if (t1) config.set$onLongPress(_this._onLongPress); if (_this._onHorizontalDragUpdate != null) { t1 = _this._validActions; if (t1 == null || t1.contains$1(0, C.SemanticsAction_8)) config.set$onScrollRight(_this.get$_performSemanticScrollRight()); t1 = _this._validActions; if (t1 == null || t1.contains$1(0, C.SemanticsAction_4)) config.set$onScrollLeft(_this.get$_performSemanticScrollLeft()); } if (_this._onVerticalDragUpdate != null) { t1 = _this._validActions; if (t1 == null || t1.contains$1(0, C.SemanticsAction_16)) config.set$onScrollUp(_this.get$_performSemanticScrollUp()); t1 = _this._validActions; if (t1 == null || t1.contains$1(0, C.SemanticsAction_32)) config.set$onScrollDown(_this.get$_performSemanticScrollDown()); } }, _performSemanticScrollLeft$0: function() { var t2, primaryDelta, t1 = this._onHorizontalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dx * -0.8; t2 = t2.center$1(C.Offset_0_0); t2 = T.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new O.DragUpdateDetails(null, new P.Offset(primaryDelta, 0), primaryDelta, t2)); } }, _performSemanticScrollRight$0: function() { var t2, primaryDelta, t1 = this._onHorizontalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dx * 0.8; t2 = t2.center$1(C.Offset_0_0); t2 = T.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new O.DragUpdateDetails(null, new P.Offset(primaryDelta, 0), primaryDelta, t2)); } }, _performSemanticScrollUp$0: function() { var t2, primaryDelta, t1 = this._onVerticalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dy * -0.8; t2 = t2.center$1(C.Offset_0_0); t2 = T.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new O.DragUpdateDetails(null, new P.Offset(0, primaryDelta), primaryDelta, t2)); } }, _performSemanticScrollDown$0: function() { var t2, primaryDelta, t1 = this._onVerticalDragUpdate; if (t1 != null) { t2 = this._box$_size; primaryDelta = t2._dy * 0.8; t2 = t2.center$1(C.Offset_0_0); t2 = T.MatrixUtils_transformPoint(this.getTransformTo$1(0, null), t2); t1.call$1(new O.DragUpdateDetails(null, new P.Offset(0, primaryDelta), primaryDelta, t2)); } } }; E.RenderSemanticsAnnotations.prototype = { set$container: function(value) { if (this._container === value) return; this._container = value; this.markNeedsSemanticsUpdate$0(); }, set$explicitChildNodes: function(value) { if (this._explicitChildNodes === value) return; this._explicitChildNodes = value; this.markNeedsSemanticsUpdate$0(); }, set$excludeSemantics: function(value) { if (this._excludeSemantics === value) return; this._excludeSemantics = value; this.markNeedsSemanticsUpdate$0(); }, set$checked: function(_, value) { if (this._checked == value) return; this._checked = value; this.markNeedsSemanticsUpdate$0(); }, set$enabled: function(_, value) { if (this._enabled == value) return; this._enabled = value; this.markNeedsSemanticsUpdate$0(); }, set$selected: function(_, value) { if (this._selected == value) return; this._selected = value; this.markNeedsSemanticsUpdate$0(); }, set$button: function(_, value) { if (this._button == value) return; this._button = value; this.markNeedsSemanticsUpdate$0(); }, set$slider: function(value) { return; }, set$keyboardKey: function(value) { return; }, set$link: function(value) { return; }, set$header: function(value) { if (this._header == value) return; this._header = value; this.markNeedsSemanticsUpdate$0(); }, set$textField: function(value) { return; }, set$readOnly: function(_, value) { return; }, set$focusable: function(value) { if (this._focusable == value) return; this._focusable = value; this.markNeedsSemanticsUpdate$0(); }, set$focused: function(_, value) { if (this._focused == value) return; this._focused = value; this.markNeedsSemanticsUpdate$0(); }, set$inMutuallyExclusiveGroup: function(value) { if (this._inMutuallyExclusiveGroup == value) return; this._inMutuallyExclusiveGroup = value; this.markNeedsSemanticsUpdate$0(); }, set$obscured: function(value) { return; }, set$multiline: function(_, value) { return; }, set$scopesRoute: function(value) { if (this._scopesRoute == value) return; this._scopesRoute = value; this.markNeedsSemanticsUpdate$0(); }, set$namesRoute: function(value) { if (this._namesRoute == value) return; this._namesRoute = value; this.markNeedsSemanticsUpdate$0(); }, set$hidden: function(_, value) { return; }, set$image: function(_, value) { if (this._image == value) return; this._image = value; }, set$liveRegion: function(value) { if (this._liveRegion == value) return; this._liveRegion = value; this.markNeedsSemanticsUpdate$0(); }, set$maxValueLength: function(value) { if (this._maxValueLength == value) return; this._maxValueLength = value; this.markNeedsSemanticsUpdate$0(); }, set$currentValueLength: function(value) { if (this._currentValueLength == value) return; this._currentValueLength = value; this.markNeedsSemanticsUpdate$0(); }, set$toggled: function(value) { if (this._toggled == value) return; this._toggled = value; this.markNeedsSemanticsUpdate$0(); }, set$label: function(_, value) { if (this._proxy_box$_label == value) return; this._proxy_box$_label = value; this.markNeedsSemanticsUpdate$0(); }, get$value: function(_) { return this._proxy_box$_value; }, set$value: function(_, value) { if (this._proxy_box$_value == value) return; this._proxy_box$_value = value; this.markNeedsSemanticsUpdate$0(); }, set$increasedValue: function(value) { if (this._increasedValue == value) return; this._increasedValue = value; this.markNeedsSemanticsUpdate$0(); }, set$decreasedValue: function(value) { if (this._decreasedValue == value) return; this._decreasedValue = value; this.markNeedsSemanticsUpdate$0(); }, set$hint: function(_, value) { return; }, set$hintOverrides: function(value) { if (J.$eq$(this._hintOverrides, value)) return; this._hintOverrides = value; this.markNeedsSemanticsUpdate$0(); }, set$textDirection: function(_, value) { if (this._proxy_box$_textDirection == value) return; this._proxy_box$_textDirection = value; this.markNeedsSemanticsUpdate$0(); }, set$sortKey: function(value) { if (this._sortKey == value) return; this._sortKey = value; this.markNeedsSemanticsUpdate$0(); }, set$tagForChildren: function(value) { if (J.$eq$(this._tagForChildren, value)) return; this.markNeedsSemanticsUpdate$0(); this._tagForChildren = value; }, set$onTap: function(handler) { var t1, _this = this; if (J.$eq$(_this._onTap, handler)) return; t1 = _this._onTap; _this._onTap = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDismiss: function(handler) { var t1, _this = this; if (J.$eq$(_this._onDismiss, handler)) return; t1 = _this._onDismiss; _this._onDismiss = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onLongPress: function(handler) { var t1, _this = this; if (J.$eq$(_this._onLongPress, handler)) return; t1 = _this._onLongPress; _this._onLongPress = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onScrollLeft: function(handler) { return; }, set$onScrollRight: function(handler) { return; }, set$onScrollUp: function(handler) { return; }, set$onScrollDown: function(handler) { return; }, set$onIncrease: function(handler) { var t1, _this = this; if (J.$eq$(_this._onIncrease, handler)) return; t1 = _this._onIncrease; _this._onIncrease = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDecrease: function(handler) { var t1, _this = this; if (J.$eq$(_this._onDecrease, handler)) return; t1 = _this._onDecrease; _this._onDecrease = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onCopy: function(_, handler) { var t1, _this = this; if (J.$eq$(_this._onCopy, handler)) return; t1 = _this._onCopy; _this._onCopy = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onCut: function(_, handler) { var t1, _this = this; if (J.$eq$(_this._onCut, handler)) return; t1 = _this._onCut; _this._onCut = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onPaste: function(_, handler) { var t1, _this = this; if (J.$eq$(_this._onPaste, handler)) return; t1 = _this._onPaste; _this._onPaste = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onMoveCursorForwardByCharacter: function(handler) { return; }, set$onMoveCursorBackwardByCharacter: function(handler) { return; }, set$onMoveCursorForwardByWord: function(handler) { return; }, set$onMoveCursorBackwardByWord: function(handler) { return; }, set$onSetSelection: function(handler) { return; }, set$onSetText: function(handler) { return; }, set$onDidGainAccessibilityFocus: function(handler) { var t1, _this = this; if (J.$eq$(_this._onDidGainAccessibilityFocus, handler)) return; t1 = _this._onDidGainAccessibilityFocus; _this._onDidGainAccessibilityFocus = handler; if (handler != null !== (t1 != null)) _this.markNeedsSemanticsUpdate$0(); }, set$onDidLoseAccessibilityFocus: function(handler) { return; }, set$customSemanticsActions: function(value) { if (this._customSemanticsActions == value) return; this._customSemanticsActions = value; this.markNeedsSemanticsUpdate$0(); }, visitChildrenForSemantics$1: function(visitor) { if (this._excludeSemantics) return; this.super$RenderObject$visitChildrenForSemantics(visitor); }, describeSemanticsConfiguration$1: function(config) { var t1, t2, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = _this._container; config.explicitChildNodes = _this._explicitChildNodes; t1 = _this._enabled; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_64, true); config._setFlag$2(C.SemanticsFlag_128, t1); } t1 = _this._checked; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_1, true); config._setFlag$2(C.SemanticsFlag_2, t1); } t1 = _this._toggled; if (t1 != null) { config._setFlag$2(C.SemanticsFlag_65536, true); config._setFlag$2(C.SemanticsFlag_131072, t1); } t1 = _this._selected; if (t1 != null) config._setFlag$2(C.SemanticsFlag_4, t1); t1 = _this._button; if (t1 != null) config._setFlag$2(C.SemanticsFlag_8, t1); t1 = _this._header; if (t1 != null) config._setFlag$2(C.SemanticsFlag_512, t1); t1 = _this._focusable; if (t1 != null) config._setFlag$2(C.SemanticsFlag_2097152, t1); t1 = _this._focused; if (t1 != null) config._setFlag$2(C.SemanticsFlag_32, t1); t1 = _this._inMutuallyExclusiveGroup; if (t1 != null) config._setFlag$2(C.SemanticsFlag_256, t1); t1 = _this._image; if (t1 != null) config._setFlag$2(C.SemanticsFlag_16384, t1); t1 = _this._proxy_box$_label; if (t1 != null) { config._semantics$_label = t1; config._hasBeenAnnotated = true; } t1 = _this._proxy_box$_value; if (t1 != null) { config._semantics$_value = t1; config._hasBeenAnnotated = true; } t1 = _this._increasedValue; if (t1 != null) { config._semantics$_increasedValue = t1; config._hasBeenAnnotated = true; } t1 = _this._decreasedValue; if (t1 != null) { config._semantics$_decreasedValue = t1; config._hasBeenAnnotated = true; } t1 = _this._hintOverrides; if (t1 != null) t2 = t1.onTapHint != null || false; else t2 = false; if (t2) config.set$hintOverrides(t1); t1 = _this._scopesRoute; if (t1 != null) config._setFlag$2(C.SemanticsFlag_2048, t1); t1 = _this._namesRoute; if (t1 != null) config._setFlag$2(C.SemanticsFlag_4096, t1); t1 = _this._liveRegion; if (t1 != null) config._setFlag$2(C.SemanticsFlag_32768, t1); t1 = _this._maxValueLength; if (t1 != null) config.set$maxValueLength(t1); t1 = _this._currentValueLength; if (t1 != null) config.set$currentValueLength(t1); t1 = _this._proxy_box$_textDirection; if (t1 != null) { config._semantics$_textDirection = t1; config._hasBeenAnnotated = true; } t1 = _this._sortKey; if (t1 != null) { config._semantics$_sortKey = t1; config._hasBeenAnnotated = true; } t1 = _this._tagForChildren; if (t1 != null) config.addTagForChildren$1(t1); if (_this._onTap != null) config.set$onTap(_this.get$_performTap()); if (_this._onLongPress != null) config.set$onLongPress(_this.get$_performLongPress()); if (_this._onDismiss != null) config.set$onDismiss(_this.get$_performDismiss()); if (_this._onIncrease != null) config.set$onIncrease(_this.get$_performIncrease()); if (_this._onDecrease != null) config.set$onDecrease(_this.get$_performDecrease()); if (_this._onCopy != null) config.set$onCopy(0, _this.get$_performCopy()); if (_this._onCut != null) config.set$onCut(0, _this.get$_performCut()); if (_this._onPaste != null) config.set$onPaste(0, _this.get$_performPaste()); if (_this._onDidGainAccessibilityFocus != null) config.set$onDidGainAccessibilityFocus(_this.get$_performDidGainAccessibilityFocus()); t1 = _this._customSemanticsActions; if (t1 != null) { config._hasBeenAnnotated = true; config._actionsAsBits |= 131072; config._semantics$_customSemanticsActions = t1; config._actions.$indexSet(0, C.SemanticsAction_131072, config.get$_onCustomSemanticsAction()); } }, _performTap$0: function() { var t1 = this._onTap; if (t1 != null) t1.call$0(); }, _performLongPress$0: function() { var t1 = this._onLongPress; if (t1 != null) t1.call$0(); }, _performDismiss$0: function() { var t1 = this._onDismiss; if (t1 != null) t1.call$0(); }, _performIncrease$0: function() { var t1 = this._onIncrease; if (t1 != null) t1.call$0(); }, _performDecrease$0: function() { var t1 = this._onDecrease; if (t1 != null) t1.call$0(); }, _performCopy$0: function() { var t1 = this._onCopy; if (t1 != null) t1.call$0(); }, _performCut$0: function() { var t1 = this._onCut; if (t1 != null) t1.call$0(); }, _performPaste$0: function() { var t1 = this._onPaste; if (t1 != null) t1.call$0(); }, _performDidGainAccessibilityFocus$0: function() { var t1 = this._onDidGainAccessibilityFocus; if (t1 != null) t1.call$0(); } }; E.RenderBlockSemantics.prototype = { set$blocking: function(value) { return; }, describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.isBlockingSemanticsOfPreviouslyPaintedNodes = true; } }; E.RenderMergeSemantics.prototype = { describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._hasBeenAnnotated = config._isMergingSemanticsOfDescendants = config._isSemanticBoundary = true; } }; E.RenderExcludeSemantics.prototype = { set$excluding: function(value) { if (value === this._excluding) return; this._excluding = value; this.markNeedsSemanticsUpdate$0(); }, visitChildrenForSemantics$1: function(visitor) { if (this._excluding) return; this.super$RenderObject$visitChildrenForSemantics(visitor); } }; E.RenderIndexedSemantics.prototype = { set$index: function(_, value) { if (value === this._proxy_box$_index) return; this._proxy_box$_index = value; this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = true; config._indexInParent = this._proxy_box$_index; config._hasBeenAnnotated = true; } }; E.RenderLeaderLayer.prototype = { set$link: function(value) { var _this = this, t1 = _this._proxy_box$_link; if (t1 === value) return; t1.leaderSize = null; _this._proxy_box$_link = value; t1 = _this._previousLayoutSize; if (t1 != null) value.leaderSize = t1; _this.markNeedsPaint$0(); }, get$alwaysNeedsCompositing: function() { return true; }, performLayout$0: function() { var t1, _this = this; _this.super$RenderProxyBoxMixin$performLayout(); t1 = _this._box$_size; t1.toString; _this._previousLayoutSize = t1; _this._proxy_box$_link.leaderSize = t1; }, paint$2: function(context, offset) { var _this = this, t1 = _this._layer, t2 = _this._proxy_box$_link; if (t1 == null) t1 = _this._layer = new T.LeaderLayer(t2, offset); else { type$.LeaderLayer._as(t1); t1._layer$_link = t2; t1.offset = offset; } context.pushLayer$3(t1, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), C.Offset_0_0); } }; E.RenderFollowerLayer.prototype = { set$link: function(value) { if (this._proxy_box$_link === value) return; this._proxy_box$_link = value; this.markNeedsPaint$0(); }, set$showWhenUnlinked: function(value) { return; }, set$offset: function(_, value) { if (this._proxy_box$_offset.$eq(0, value)) return; this._proxy_box$_offset = value; this.markNeedsPaint$0(); }, set$leaderAnchor: function(value) { if (this._leaderAnchor.$eq(0, value)) return; this._leaderAnchor = value; this.markNeedsPaint$0(); }, set$followerAnchor: function(value) { if (this._followerAnchor.$eq(0, value)) return; this._followerAnchor = value; this.markNeedsPaint$0(); }, detach$0: function(_) { this._layer = null; this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, get$alwaysNeedsCompositing: function() { return true; }, getCurrentTransform$0: function() { var t1 = type$.nullable_FollowerLayer._as(K.RenderObject.prototype.get$layer.call(this, this)); t1 = t1 == null ? null : t1.getLastTransform$0(); if (t1 == null) { t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); } return t1; }, hitTest$2$position: function(result, position) { if (this._proxy_box$_link._leader == null && true) return false; return this.hitTestChildren$2$position(result, position); }, hitTestChildren$2$position: function(result, position) { return result.addWithPaintTransform$3$hitTest$position$transform(new E.RenderFollowerLayer_hitTestChildren_closure(this), position, this.getCurrentTransform$0()); }, paint$2: function(context, offset) { var effectiveLinkedOffset, t1, t2, t3, _this = this, leaderSize = _this._proxy_box$_link.leaderSize; if (leaderSize == null) effectiveLinkedOffset = _this._proxy_box$_offset; else { t1 = _this._leaderAnchor.alongSize$1(leaderSize); t2 = _this._followerAnchor; t3 = _this._box$_size; t3.toString; effectiveLinkedOffset = t1.$sub(0, t2.alongSize$1(t3)).$add(0, _this._proxy_box$_offset); } t1 = type$.nullable_FollowerLayer; if (t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)) == null) _this._layer = new T.FollowerLayer(_this._proxy_box$_link, false, offset, effectiveLinkedOffset); else { t2 = t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)); if (t2 != null) { t2._layer$_link = _this._proxy_box$_link; t2.showWhenUnlinked = false; t2.linkedOffset = effectiveLinkedOffset; t2.unlinkedOffset = offset; } } t1 = t1._as(K.RenderObject.prototype.get$layer.call(_this, _this)); t1.toString; context.pushLayer$4$childPaintBounds(t1, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), C.Offset_0_0, C.Rect_Vy7); }, applyPaintTransform$2: function(child, transform) { transform.multiply$1(0, this.getCurrentTransform$0()); } }; E.RenderFollowerLayer_hitTestChildren_closure.prototype = { call$2: function(result, position) { position.toString; return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, $signature: 96 }; E.RenderAnnotatedRegion.prototype = { get$value: function(_) { return this._proxy_box$_value; }, set$value: function(_, newValue) { if (this._proxy_box$_value.$eq(0, newValue)) return; this._proxy_box$_value = newValue; this.markNeedsPaint$0(); }, set$sized: function(value) { return; }, paint$2: function(context, offset) { var _this = this, t1 = _this._proxy_box$_value, t2 = _this._box$_size; t2.toString; context.pushLayer$3(new T.AnnotatedRegionLayer(t1, t2, offset, _this.$ti._eval$1("AnnotatedRegionLayer<1>")), E.RenderProxyBoxMixin.prototype.get$paint.call(_this), offset); }, get$alwaysNeedsCompositing: function() { return true; } }; E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin.prototype = { computeDistanceToActualBaseline$1: function(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline(baseline); } }; E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin.prototype = { attach$1: function(owner) { var _this = this; _this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach(owner); _this.RenderAnimatedOpacityMixin__opacity.addListener$1(0, _this.get$_updateOpacity()); _this._updateOpacity$0(); }, detach$0: function(_) { this.RenderAnimatedOpacityMixin__opacity.removeListener$1(0, this.get$_updateOpacity()); this.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, paint$2: function(context, offset) { var t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = _this.RenderAnimatedOpacityMixin__alpha; if (t2 === 0) { _this._layer = null; return; } if (t2 === 255) { _this._layer = null; context.paintChild$2(t1, offset); return; } t2.toString; _this._layer = context.pushOpacity$4$oldLayer(offset, t2, E.RenderProxyBoxMixin.prototype.get$paint.call(_this), type$.nullable_OpacityLayer._as(_this._layer)); } } }; E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin.prototype = { computeDistanceToActualBaseline$1: function(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$RenderBox$computeDistanceToActualBaseline(baseline); } }; T.RenderShiftedBox.prototype = { computeMinIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDistanceToActualBaseline$1: function(baseline) { var result, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { result = t1.getDistanceToActualBaseline$1(baseline); t1 = this.RenderObjectWithChildMixin__child.parentData; t1.toString; type$.BoxParentData._as(t1); if (result != null) result += t1.offset._dy; } else result = this.super$RenderBox$computeDistanceToActualBaseline(baseline); return result; }, paint$2: function(context, offset) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t2 = t1.parentData; t2.toString; context.paintChild$2(t1, type$.BoxParentData._as(t2).offset.$add(0, offset)); } }, hitTestChildren$2$position: function(result, position) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) { t1 = t1.parentData; t1.toString; type$.BoxParentData._as(t1); return result.addWithPaintOffset$3$hitTest$offset$position(new T.RenderShiftedBox_hitTestChildren_closure(this, position, t1), t1.offset, position); } return false; } }; T.RenderShiftedBox_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { var t1 = this.$this.RenderObjectWithChildMixin__child; t1.toString; transformed.toString; return t1.hitTest$2$position(result, transformed); }, $signature: 96 }; T.RenderPadding.prototype = { _shifted_box$_resolve$0: function() { var _this = this; if (_this._shifted_box$_resolvedPadding != null) return; _this._shifted_box$_resolvedPadding = _this._shifted_box$_padding.resolve$1(_this._shifted_box$_textDirection); }, set$padding: function(_, value) { var _this = this; if (J.$eq$(_this._shifted_box$_padding, value)) return; _this._shifted_box$_padding = value; _this._shifted_box$_resolvedPadding = null; _this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._shifted_box$_textDirection == value) return; _this._shifted_box$_textDirection = value; _this._shifted_box$_resolvedPadding = null; _this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { var t1, totalHorizontalPadding, t2, t3; this._shifted_box$_resolve$0(); t1 = this._shifted_box$_resolvedPadding; totalHorizontalPadding = t1.left + t1.right; t2 = t1.top; t1 = t1.bottom; t3 = this.RenderObjectWithChildMixin__child; if (t3 != null) return t3._computeIntrinsicDimension$3(C._IntrinsicDimension_0, Math.max(0, height - (t2 + t1)), t3.get$computeMinIntrinsicWidth()) + totalHorizontalPadding; return totalHorizontalPadding; }, computeMaxIntrinsicWidth$1: function(height) { var t1, totalHorizontalPadding, t2, t3; this._shifted_box$_resolve$0(); t1 = this._shifted_box$_resolvedPadding; totalHorizontalPadding = t1.left + t1.right; t2 = t1.top; t1 = t1.bottom; t3 = this.RenderObjectWithChildMixin__child; if (t3 != null) return t3._computeIntrinsicDimension$3(C._IntrinsicDimension_1, Math.max(0, height - (t2 + t1)), t3.get$computeMaxIntrinsicWidth()) + totalHorizontalPadding; return totalHorizontalPadding; }, computeMinIntrinsicHeight$1: function(width) { var t1, t2, t3, totalVerticalPadding; this._shifted_box$_resolve$0(); t1 = this._shifted_box$_resolvedPadding; t2 = t1.left; t3 = t1.right; totalVerticalPadding = t1.top + t1.bottom; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, Math.max(0, width - (t2 + t3)), t1.get$computeMinIntrinsicHeight()) + totalVerticalPadding; return totalVerticalPadding; }, computeMaxIntrinsicHeight$1: function(width) { var t1, t2, t3, totalVerticalPadding; this._shifted_box$_resolve$0(); t1 = this._shifted_box$_resolvedPadding; t2 = t1.left; t3 = t1.right; totalVerticalPadding = t1.top + t1.bottom; t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, Math.max(0, width - (t2 + t3)), t1.get$computeMaxIntrinsicHeight()) + totalVerticalPadding; return totalVerticalPadding; }, computeDryLayout$1: function(constraints) { var t1, innerConstraints, childSize, _this = this; _this._shifted_box$_resolve$0(); if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._shifted_box$_resolvedPadding; return constraints.constrain$1(new P.Size(t1.left + t1.right, t1.top + t1.bottom)); } t1 = _this._shifted_box$_resolvedPadding; t1.toString; innerConstraints = constraints.deflate$1(t1); childSize = _this.RenderObjectWithChildMixin__child.getDryLayout$1(innerConstraints); t1 = _this._shifted_box$_resolvedPadding; return constraints.constrain$1(new P.Size(t1.left + childSize._dx + t1.right, t1.top + childSize._dy + t1.bottom)); }, performLayout$0: function() { var t1, innerConstraints, t2, t3, t4, t5, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._shifted_box$_resolve$0(); if (_this.RenderObjectWithChildMixin__child == null) { t1 = _this._shifted_box$_resolvedPadding; _this._box$_size = constraints.constrain$1(new P.Size(t1.left + t1.right, t1.top + t1.bottom)); return; } t1 = _this._shifted_box$_resolvedPadding; t1.toString; innerConstraints = constraints.deflate$1(t1); _this.RenderObjectWithChildMixin__child.layout$2$parentUsesSize(0, innerConstraints, true); t1 = _this.RenderObjectWithChildMixin__child; t2 = t1.parentData; t2.toString; type$.BoxParentData._as(t2); t3 = _this._shifted_box$_resolvedPadding; t4 = t3.left; t5 = t3.top; t2.offset = new P.Offset(t4, t5); t1 = t1._box$_size; _this._box$_size = constraints.constrain$1(new P.Size(t4 + t1._dx + t3.right, t5 + t1._dy + t3.bottom)); } }; T.RenderAligningShiftedBox.prototype = { _shifted_box$_resolve$0: function() { var _this = this; if (_this._shifted_box$_resolvedAlignment != null) return; _this._shifted_box$_resolvedAlignment = _this._shifted_box$_alignment.resolve$1(_this._shifted_box$_textDirection); }, set$alignment: function(value) { var _this = this; if (J.$eq$(_this._shifted_box$_alignment, value)) return; _this._shifted_box$_alignment = value; _this._shifted_box$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._shifted_box$_textDirection == value) return; _this._shifted_box$_textDirection = value; _this._shifted_box$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, alignChild$0: function() { var t1, t2, t3, t4, _this = this; _this._shifted_box$_resolve$0(); t1 = _this.RenderObjectWithChildMixin__child; t2 = t1.parentData; t2.toString; type$.BoxParentData._as(t2); t3 = _this._shifted_box$_resolvedAlignment; t3.toString; t4 = _this._box$_size; t4.toString; t1 = t1._box$_size; t1.toString; t2.offset = t3.alongOffset$1(type$.Offset._as(t4.$sub(0, t1))); } }; T.RenderPositionedBox.prototype = { set$widthFactor: function(value) { if (this._widthFactor == value) return; this._widthFactor = value; this.markNeedsLayout$0(); }, set$heightFactor: function(value) { if (this._heightFactor == value) return; this._heightFactor = value; this.markNeedsLayout$0(); }, computeDryLayout$1: function(constraints) { var childSize, t2, t3, _this = this, shrinkWrapWidth = _this._widthFactor != null || constraints.maxWidth === 1 / 0, shrinkWrapHeight = _this._heightFactor != null || constraints.maxHeight === 1 / 0, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { childSize = t1.getDryLayout$1(constraints.loosen$0()); if (shrinkWrapWidth) { t1 = childSize._dx; t2 = _this._widthFactor; t1 *= t2 == null ? 1 : t2; } else t1 = 1 / 0; if (shrinkWrapHeight) { t2 = childSize._dy; t3 = _this._heightFactor; t2 *= t3 == null ? 1 : t3; } else t2 = 1 / 0; return constraints.constrain$1(new P.Size(t1, t2)); } t1 = shrinkWrapWidth ? 0 : 1 / 0; return constraints.constrain$1(new P.Size(t1, shrinkWrapHeight ? 0 : 1 / 0)); }, performLayout$0: function() { var t2, t3, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), shrinkWrapWidth = _this._widthFactor != null || constraints.maxWidth === 1 / 0, shrinkWrapHeight = _this._heightFactor != null || constraints.maxHeight === 1 / 0, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, constraints.loosen$0(), true); if (shrinkWrapWidth) { t1 = _this.RenderObjectWithChildMixin__child._box$_size._dx; t2 = _this._widthFactor; t1 *= t2 == null ? 1 : t2; } else t1 = 1 / 0; if (shrinkWrapHeight) { t2 = _this.RenderObjectWithChildMixin__child._box$_size._dy; t3 = _this._heightFactor; t2 *= t3 == null ? 1 : t3; } else t2 = 1 / 0; _this._box$_size = constraints.constrain$1(new P.Size(t1, t2)); _this.alignChild$0(); } else { t1 = shrinkWrapWidth ? 0 : 1 / 0; _this._box$_size = constraints.constrain$1(new P.Size(t1, shrinkWrapHeight ? 0 : 1 / 0)); } } }; T.RenderFractionallySizedOverflowBox.prototype = { set$widthFactor: function(value) { if (this._widthFactor == value) return; this._widthFactor = value; this.markNeedsLayout$0(); }, set$heightFactor: function(value) { if (this._heightFactor == value) return; this._heightFactor = value; this.markNeedsLayout$0(); }, _getInnerConstraints$1: function(constraints) { var width, minHeight, maxHeight, height, minWidth = constraints.minWidth, maxWidth = constraints.maxWidth, t1 = this._widthFactor; if (t1 != null) { width = maxWidth * t1; maxWidth = width; minWidth = maxWidth; } minHeight = constraints.minHeight; maxHeight = constraints.maxHeight; t1 = this._heightFactor; if (t1 != null) { height = maxHeight * t1; maxHeight = height; minHeight = maxHeight; } return new S.BoxConstraints(minWidth, maxWidth, minHeight, maxHeight); }, computeMinIntrinsicWidth$1: function(height) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMinIntrinsicWidth(height); else { t2 = _this._heightFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height * t2, t1.get$computeMinIntrinsicWidth()); } t1 = _this._widthFactor; return result / (t1 == null ? 1 : t1); }, computeMaxIntrinsicWidth$1: function(height) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMaxIntrinsicWidth(height); else { t2 = _this._heightFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height * t2, t1.get$computeMaxIntrinsicWidth()); } t1 = _this._widthFactor; return result / (t1 == null ? 1 : t1); }, computeMinIntrinsicHeight$1: function(width) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMinIntrinsicHeight(width); else { t2 = _this._widthFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width * t2, t1.get$computeMinIntrinsicHeight()); } t1 = _this._heightFactor; return result / (t1 == null ? 1 : t1); }, computeMaxIntrinsicHeight$1: function(width) { var result, t2, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) result = _this.super$RenderShiftedBox$computeMaxIntrinsicHeight(width); else { t2 = _this._widthFactor; if (t2 == null) t2 = 1; result = t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width * t2, t1.get$computeMaxIntrinsicHeight()); } t1 = _this._heightFactor; return result / (t1 == null ? 1 : t1); }, computeDryLayout$1: function(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return constraints.constrain$1(t1.getDryLayout$1(this._getInnerConstraints$1(constraints))); return constraints.constrain$1(this._getInnerConstraints$1(constraints).constrain$1(C.Size_0_0)); }, performLayout$0: function() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child, t2 = type$.BoxConstraints; if (t1 != null) { t1.layout$2$parentUsesSize(0, _this._getInnerConstraints$1(t2._as(K.RenderObject.prototype.get$constraints.call(_this))), true); t1 = t2._as(K.RenderObject.prototype.get$constraints.call(_this)); t2 = _this.RenderObjectWithChildMixin__child._box$_size; t2.toString; _this._box$_size = t1.constrain$1(t2); _this.alignChild$0(); } else _this._box$_size = t2._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(_this._getInnerConstraints$1(t2._as(K.RenderObject.prototype.get$constraints.call(_this))).constrain$1(C.Size_0_0)); } }; T.SingleChildLayoutDelegate.prototype = { getSize$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, getConstraintsForChild$1: function(constraints) { return constraints; }, getPositionForChild$2: function(size, childSize) { return C.Offset_0_0; } }; T.RenderCustomSingleChildLayoutBox.prototype = { set$delegate: function(newDelegate) { var oldDelegate, _this = this; if (_this._shifted_box$_delegate.$eq(0, newDelegate)) return; oldDelegate = _this._shifted_box$_delegate; if (H.getRuntimeType(newDelegate) !== H.getRuntimeType(oldDelegate) || newDelegate.shouldRelayout$1(oldDelegate)) _this.markNeedsLayout$0(); _this._shifted_box$_delegate = newDelegate; _this._node$_owner != null; }, attach$1: function(owner) { this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$attach(owner); }, detach$0: function(_) { this.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach(0); }, computeMinIntrinsicWidth$1: function(height) { var t1 = S.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1 = S.BoxConstraints$tightForFinite(height, 1 / 0), width = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dx; width.toString; if (isFinite(width)) return width; return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1 = S.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1 = S.BoxConstraints$tightForFinite(1 / 0, width), height = t1.constrain$1(this._shifted_box$_delegate.getSize$1(t1))._dy; height.toString; if (isFinite(height)) return height; return 0; }, computeDryLayout$1: function(constraints) { return constraints.constrain$1(this._shifted_box$_delegate.getSize$1(constraints)); }, performLayout$0: function() { var childConstraints, t3, t4, t5, t6, t7, _this = this, t1 = type$.BoxConstraints, t2 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = t2.constrain$1(_this._shifted_box$_delegate.getSize$1(t2)); if (_this.RenderObjectWithChildMixin__child != null) { childConstraints = _this._shifted_box$_delegate.getConstraintsForChild$1(t1._as(K.RenderObject.prototype.get$constraints.call(_this))); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; t2 = childConstraints.minWidth; t3 = childConstraints.maxWidth; t4 = t2 >= t3; t1.layout$2$parentUsesSize(0, childConstraints, !(t4 && childConstraints.minHeight >= childConstraints.maxHeight)); t1 = _this.RenderObjectWithChildMixin__child; t5 = t1.parentData; t5.toString; type$.BoxParentData._as(t5); t6 = _this._shifted_box$_delegate; t7 = _this._box$_size; t7.toString; if (t4 && childConstraints.minHeight >= childConstraints.maxHeight) t1 = new P.Size(C.JSInt_methods.clamp$2(0, t2, t3), C.JSInt_methods.clamp$2(0, childConstraints.minHeight, childConstraints.maxHeight)); else { t1 = t1._box$_size; t1.toString; } t5.offset = t6.getPositionForChild$2(t7, t1); } } }; T._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; G.GrowthDirection.prototype = { toString$0: function(_) { return this._sliver0$_name; } }; G.SliverConstraints.prototype = { get$isTight: function() { return false; }, asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent: function(crossAxisExtent, maxExtent, minExtent) { if (crossAxisExtent == null) crossAxisExtent = this.crossAxisExtent; switch (G.axisDirectionToAxis(this.axisDirection)) { case C.Axis_0: return new S.BoxConstraints(minExtent, maxExtent, crossAxisExtent, crossAxisExtent); case C.Axis_1: return new S.BoxConstraints(crossAxisExtent, crossAxisExtent, minExtent, maxExtent); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, asBoxConstraints$2$maxExtent$minExtent: function(maxExtent, minExtent) { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, maxExtent, minExtent); }, asBoxConstraints$1$maxExtent: function(maxExtent) { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, maxExtent, 0); }, asBoxConstraints$0: function() { return this.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(null, 1 / 0, 0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof G.SliverConstraints)) return false; return other.axisDirection === _this.axisDirection && other.growthDirection === _this.growthDirection && other.scrollOffset === _this.scrollOffset && other.overlap === _this.overlap && other.remainingPaintExtent === _this.remainingPaintExtent && other.crossAxisExtent == _this.crossAxisExtent && other.crossAxisDirection === _this.crossAxisDirection && other.viewportMainAxisExtent == _this.viewportMainAxisExtent && other.remainingCacheExtent === _this.remainingCacheExtent && other.cacheOrigin === _this.cacheOrigin; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.axisDirection, _this.growthDirection, _this.scrollOffset, _this.overlap, _this.remainingPaintExtent, _this.crossAxisExtent, _this.crossAxisDirection, _this.viewportMainAxisExtent, _this.remainingCacheExtent, _this.cacheOrigin, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this, t1 = H.setRuntimeTypeInfo([_this.axisDirection.toString$0(0), _this.growthDirection.toString$0(0), _this.userScrollDirection.toString$0(0), "scrollOffset: " + C.JSNumber_methods.toStringAsFixed$1(_this.scrollOffset, 1), "remainingPaintExtent: " + C.JSNumber_methods.toStringAsFixed$1(_this.remainingPaintExtent, 1)], type$.JSArray_String), t2 = _this.overlap; if (t2 !== 0) t1.push("overlap: " + C.JSNumber_methods.toStringAsFixed$1(t2, 1)); t1.push("crossAxisExtent: " + J.toStringAsFixed$1$n(_this.crossAxisExtent, 1)); t1.push("crossAxisDirection: " + _this.crossAxisDirection.toString$0(0)); t1.push("viewportMainAxisExtent: " + J.toStringAsFixed$1$n(_this.viewportMainAxisExtent, 1)); t1.push("remainingCacheExtent: " + C.JSNumber_methods.toStringAsFixed$1(_this.remainingCacheExtent, 1)); t1.push("cacheOrigin: " + C.JSNumber_methods.toStringAsFixed$1(_this.cacheOrigin, 1)); return "SliverConstraints(" + C.JSArray_methods.join$1(t1, ", ") + ")"; } }; G.SliverGeometry.prototype = { toStringShort$0: function() { return "SliverGeometry"; } }; G.SliverHitTestResult.prototype = {}; G.SliverHitTestEntry.prototype = { get$target: function(_) { return type$.RenderSliver._as(this.target); }, toString$0: function(_) { var _this = this; return H.getRuntimeType(type$.RenderSliver._as(_this.target)).toString$0(0) + "@(mainAxis: " + H.S(_this.mainAxisPosition) + ", crossAxis: " + H.S(_this.crossAxisPosition) + ")"; } }; G.SliverLogicalParentData.prototype = { toString$0: function(_) { var t1 = this.layoutOffset; return "layoutOffset=" + (t1 == null ? "None" : C.JSNumber_methods.toStringAsFixed$1(t1, 1)); } }; G.SliverLogicalContainerParentData.prototype = {}; G.SliverPhysicalParentData.prototype = { toString$0: function(_) { return "paintOffset=" + this.paintOffset.toString$0(0); } }; G.SliverPhysicalContainerParentData.prototype = {}; G.RenderSliver.prototype = { get$constraints: function() { return type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(this)); }, get$semanticBounds: function() { return this.get$paintBounds(); }, get$paintBounds: function() { var _this = this, t1 = type$.SliverConstraints; switch (G.axisDirectionToAxis(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection)) { case C.Axis_0: return new P.Rect(0, 0, 0 + _this._geometry.paintExtent, 0 + t1._as(K.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent); case C.Axis_1: return new P.Rect(0, 0, 0 + t1._as(K.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent, 0 + _this._geometry.paintExtent); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, performResize$0: function() { }, hitTest$3$crossAxisPosition$mainAxisPosition: function(result, crossAxisPosition, mainAxisPosition) { var t1, _this = this; if (mainAxisPosition >= 0 && mainAxisPosition < _this._geometry.hitTestExtent && crossAxisPosition >= 0 && crossAxisPosition < type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)).crossAxisExtent) if (_this.hitTestChildren$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition, mainAxisPosition) || false) { t1 = new G.SliverHitTestEntry(mainAxisPosition, crossAxisPosition, _this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); return true; } return false; }, hitTest$1: function(result) { return this.hitTest$3$crossAxisPosition$mainAxisPosition(result, null, null); }, hitTestChildren$3$crossAxisPosition$mainAxisPosition: function(result, crossAxisPosition, mainAxisPosition) { return false; }, calculatePaintOffset$3$from$to: function(constraints, from, to) { var a = constraints.scrollOffset, t1 = constraints.remainingPaintExtent, b = a + t1; return C.JSNumber_methods.clamp$2(J.clamp$2$n(to, a, b) - J.clamp$2$n(from, a, b), 0, t1); }, calculateCacheOffset$3$from$to: function(constraints, from, to) { var t1 = constraints.scrollOffset, a = t1 + constraints.cacheOrigin, t2 = constraints.remainingCacheExtent, b = t1 + t2; return C.JSNumber_methods.clamp$2(J.clamp$2$n(to, a, b) - J.clamp$2$n(from, a, b), 0, t2); }, childMainAxisPosition$1: function(child) { return 0; }, childCrossAxisPosition$1: function(child) { return 0; }, childScrollOffset$1: function(child) { return 0; }, applyPaintTransform$2: function(child, transform) { }, handleEvent$2: function($event, entry) { } }; G.RenderSliverHelpers.prototype = { _getRightWayUp$1: function(constraints) { var rightWayUp, _s80_ = string$.x60null_c; switch (constraints.axisDirection) { case C.AxisDirection_0: case C.AxisDirection_3: rightWayUp = false; break; case C.AxisDirection_2: case C.AxisDirection_1: rightWayUp = true; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } switch (constraints.growthDirection) { case C.GrowthDirection_0: break; case C.GrowthDirection_1: rightWayUp = !rightWayUp; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return rightWayUp; }, hitTestBoxChild$4$crossAxisPosition$mainAxisPosition: function(result, child, crossAxisPosition, mainAxisPosition) { var t1, paintOffset, _this = this, _box_0 = {}, rightWayUp = _this._getRightWayUp$1(_this.get$constraints()), delta = _this.childMainAxisPosition$1(child), crossAxisDelta = _this.childCrossAxisPosition$1(child), absolutePosition = mainAxisPosition - delta, absoluteCrossAxisPosition = crossAxisPosition - crossAxisDelta; _box_0.transformedPosition = null; switch (G.axisDirectionToAxis(_this.get$constraints().axisDirection)) { case C.Axis_0: if (!rightWayUp) { t1 = child._box$_size._dx; absolutePosition = t1 - absolutePosition; delta = _this._geometry.paintExtent - t1 - delta; } paintOffset = new P.Offset(delta, crossAxisDelta); _box_0.transformedPosition = new P.Offset(absolutePosition, absoluteCrossAxisPosition); break; case C.Axis_1: if (!rightWayUp) { t1 = child._box$_size._dy; absolutePosition = t1 - absolutePosition; delta = _this._geometry.paintExtent - t1 - delta; } paintOffset = new P.Offset(crossAxisDelta, delta); _box_0.transformedPosition = new P.Offset(absoluteCrossAxisPosition, absolutePosition); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return result.addWithOutOfBandPosition$2$hitTest$paintOffset(new G.RenderSliverHelpers_hitTestBoxChild_closure(_box_0, child), paintOffset); }, applyPaintTransformForBoxChild$2: function(child, transform) { var _this = this, rightWayUp = _this._getRightWayUp$1(_this.get$constraints()), delta = _this.childMainAxisPosition$1(child), crossAxisDelta = _this.childCrossAxisPosition$1(child); switch (G.axisDirectionToAxis(_this.get$constraints().axisDirection)) { case C.Axis_0: transform.translate$2(0, !rightWayUp ? _this._geometry.paintExtent - child._box$_size._dx - delta : delta, crossAxisDelta); break; case C.Axis_1: transform.translate$2(0, crossAxisDelta, !rightWayUp ? _this._geometry.paintExtent - child._box$_size._dy - delta : delta); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; G.RenderSliverHelpers_hitTestBoxChild_closure.prototype = { call$1: function(result) { return this.child.hitTest$2$position(result, this._box_0.transformedPosition); }, $signature: 679 }; G._SliverGeometry_Object_Diagnosticable.prototype = {}; G._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin.prototype = { detach$0: function(_) { this.super$ParentData$detach(0); } }; G._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin.prototype = { detach$0: function(_) { this.super$ParentData$detach(0); } }; A.RenderSliverFillViewport.prototype = { get$itemExtent: function() { return type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(this)).viewportMainAxisExtent * this._sliver_fill0$_viewportFraction; }, set$viewportFraction: function(value) { if (this._sliver_fill0$_viewportFraction === value) return; this._sliver_fill0$_viewportFraction = value; this.markNeedsLayout$0(); } }; X.RenderSliverFixedExtentBoxAdaptor.prototype = { getMinChildIndexForScrollOffset$2: function(scrollOffset, itemExtent) { var actual, round; if (itemExtent > 0) { actual = scrollOffset / itemExtent; round = C.JSNumber_methods.round$0(actual); if (Math.abs(actual - round) < 1e-10) return round; return C.JSNumber_methods.floor$0(actual); } return 0; }, getMaxChildIndexForScrollOffset$2: function(scrollOffset, itemExtent) { var actual, round; if (itemExtent > 0) { actual = scrollOffset / itemExtent - 1; round = C.JSNumber_methods.round$0(actual); if (Math.abs(actual - round) < 1e-10) return Math.max(0, round); return Math.max(0, C.JSNumber_methods.ceil$0(actual)); } return 0; }, _calculateLeadingGarbage$1: function(firstIndex) { var t3, walker = this.ContainerRenderObjectMixin__firstChild, t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), t2 = type$.SliverMultiBoxAdaptorParentData, leadingGarbage = 0; while (true) { if (walker != null) { t3 = walker.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; t3 = t3 < firstIndex; } else t3 = false; if (!t3) break; ++leadingGarbage; t3 = walker.parentData; t3.toString; walker = t1._as(t3).ContainerParentDataMixin_nextSibling; } return leadingGarbage; }, _calculateTrailingGarbage$1: function(targetLastIndex) { var t3, walker = this.ContainerRenderObjectMixin__lastChild, t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), t2 = type$.SliverMultiBoxAdaptorParentData, trailingGarbage = 0; while (true) { if (walker != null) { t3 = walker.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; t3 = t3 > targetLastIndex; } else t3 = false; if (!t3) break; ++trailingGarbage; t3 = walker.parentData; t3.toString; walker = t1._as(t3).ContainerParentDataMixin_previousSibling; } return trailingGarbage; }, performLayout$0: function() { var itemExtent, t2, scrollOffset, targetEndScrollOffset, childConstraints, firstIndex, targetLastIndex, leadingGarbage, max, t3, t4, index, trailingChildWithLayout, child, t5, estimatedMaxScrollOffset, t6, t7, leadingScrollOffset, trailingScrollOffset, paintExtent, cacheExtent, targetEndScrollOffsetForPaint, targetLastIndexForPaint, _this = this, _null = null, constraints = type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; itemExtent = _this.get$itemExtent(); t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; childConstraints = constraints.asBoxConstraints$2$maxExtent$minExtent(itemExtent, itemExtent); firstIndex = _this.getMinChildIndexForScrollOffset$2(scrollOffset, itemExtent); targetLastIndex = isFinite(targetEndScrollOffset) ? _this.getMaxChildIndexForScrollOffset$2(targetEndScrollOffset, itemExtent) : _null; if (_this.ContainerRenderObjectMixin__firstChild != null) { leadingGarbage = _this._calculateLeadingGarbage$1(firstIndex); _this.collectGarbage$2(leadingGarbage, targetLastIndex != null ? _this._calculateTrailingGarbage$1(targetLastIndex) : 0); } else _this.collectGarbage$2(0, 0); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$2$index$layoutOffset(firstIndex, itemExtent * firstIndex)) { max = firstIndex <= 0 ? 0 : t1.get$childCount() * itemExtent; _this._geometry = G.SliverGeometry$(_null, false, _null, _null, max, 0, 0, 0, max, _null); t1.didFinishLayout$0(); return; } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; index = t3 - 1; trailingChildWithLayout = _null; for (; index >= firstIndex; --index) { child = _this.insertAndLayoutLeadingChild$1(childConstraints); if (child == null) { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, index * itemExtent); return; } t3 = child.parentData; t3.toString; t4._as(t3).layoutOffset = itemExtent * index; if (trailingChildWithLayout == null) trailingChildWithLayout = child; } if (trailingChildWithLayout == null) { _this.ContainerRenderObjectMixin__firstChild.layout$1(0, childConstraints); trailingChildWithLayout = _this.ContainerRenderObjectMixin__firstChild; t3 = trailingChildWithLayout.parentData; t3.toString; t4._as(t3).layoutOffset = itemExtent * firstIndex; } t3 = trailingChildWithLayout.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; index = t3 + 1; t3 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t5 = targetLastIndex != null; while (true) { if (!(!t5 || index <= targetLastIndex)) { estimatedMaxScrollOffset = 1 / 0; break; } t6 = trailingChildWithLayout.parentData; t6.toString; child = t3._as(t6).ContainerParentDataMixin_nextSibling; if (child != null) { t6 = child.parentData; t6.toString; t6 = t4._as(t6).index; t6.toString; t6 = t6 !== index; } else t6 = true; if (t6) { child = _this.insertAndLayoutChild$2$after(childConstraints, trailingChildWithLayout); if (child == null) { estimatedMaxScrollOffset = index * itemExtent; break; } } else child.layout$1(0, childConstraints); t6 = child.parentData; t6.toString; t4._as(t6); t7 = t6.index; t7.toString; t6.layoutOffset = itemExtent * t7; ++index; trailingChildWithLayout = child; } t3 = _this.ContainerRenderObjectMixin__lastChild; t3.toString; t3 = t3.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; leadingScrollOffset = itemExtent * firstIndex; trailingScrollOffset = itemExtent * (t3 + 1); estimatedMaxScrollOffset = Math.min(estimatedMaxScrollOffset, t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, firstIndex, t3, leadingScrollOffset, trailingScrollOffset)); paintExtent = _this.calculatePaintOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset); cacheExtent = _this.calculateCacheOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset); targetEndScrollOffsetForPaint = t2 + constraints.remainingPaintExtent; targetLastIndexForPaint = isFinite(targetEndScrollOffsetForPaint) ? _this.getMaxChildIndexForScrollOffset$2(targetEndScrollOffsetForPaint, itemExtent) : _null; _this._geometry = G.SliverGeometry$(cacheExtent, targetLastIndexForPaint != null && t3 >= targetLastIndexForPaint || t2 > 0, _null, _null, estimatedMaxScrollOffset, 0, paintExtent, 0, estimatedMaxScrollOffset, _null); if (estimatedMaxScrollOffset === trailingScrollOffset) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; B.SliverGridGeometry.prototype = { getBoxConstraints$1: function(constraints) { var t1 = this.mainAxisExtent; return constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(this.crossAxisExtent, t1, t1); }, toString$0: function(_) { var _this = this; return "SliverGridGeometry(" + C.JSArray_methods.join$1(H.setRuntimeTypeInfo(["scrollOffset: " + H.S(_this.scrollOffset), "crossAxisOffset: " + H.S(_this.crossAxisOffset), "mainAxisExtent: " + H.S(_this.mainAxisExtent), "crossAxisExtent: " + H.S(_this.crossAxisExtent)], type$.JSArray_String), ", ") + ")"; } }; B.SliverGridLayout.prototype = {}; B.SliverGridRegularTileLayout.prototype = { getMaxChildIndexForScrollOffset$1: function(scrollOffset) { var t1 = this.mainAxisStride; if (t1 > 0) return Math.max(0, this.crossAxisCount * C.JSNumber_methods.ceil$0(scrollOffset / t1) - 1); return 0; }, _getOffsetFromStartInCrossAxis$1: function(crossAxisStart) { var t1, t2, _this = this; if (_this.reverseCrossAxis) { t1 = _this.crossAxisStride; t2 = _this.childCrossAxisExtent; return _this.crossAxisCount * t1 - crossAxisStart - t2 - (t1 - t2); } return crossAxisStart; }, getGeometryForChildIndex$1: function(index) { var _this = this, t1 = _this.crossAxisCount, t2 = C.JSInt_methods.$mod(index, t1); return new B.SliverGridGeometry(C.JSInt_methods.$tdiv(index, t1) * _this.mainAxisStride, _this._getOffsetFromStartInCrossAxis$1(t2 * _this.crossAxisStride), _this.childMainAxisExtent, _this.childCrossAxisExtent); }, computeMaxScrollOffset$1: function(childCount) { var t1 = this.mainAxisStride; return t1 * (C.JSInt_methods.$tdiv(childCount - 1, this.crossAxisCount) + 1) - (t1 - this.childMainAxisExtent); } }; B.SliverGridDelegate.prototype = {}; B.SliverGridDelegateWithFixedCrossAxisCount.prototype = { getLayout$1: function(constraints) { var _this = this, t1 = _this.crossAxisSpacing, t2 = _this.crossAxisCount, childCrossAxisExtent = Math.max(0, constraints.crossAxisExtent - t1 * (t2 - 1)) / t2, childMainAxisExtent = childCrossAxisExtent / _this.childAspectRatio; return new B.SliverGridRegularTileLayout(t2, childMainAxisExtent + _this.mainAxisSpacing, childCrossAxisExtent + t1, childMainAxisExtent, childCrossAxisExtent, G.axisDirectionIsReversed(constraints.crossAxisDirection)); }, shouldRelayout$1: function(oldDelegate) { var _this = this; return oldDelegate.crossAxisCount !== _this.crossAxisCount || oldDelegate.mainAxisSpacing !== _this.mainAxisSpacing || oldDelegate.crossAxisSpacing !== _this.crossAxisSpacing || oldDelegate.childAspectRatio !== _this.childAspectRatio || false; } }; B.SliverGridParentData.prototype = { toString$0: function(_) { return "crossAxisOffset=" + H.S(this.crossAxisOffset) + "; " + this.super$SliverMultiBoxAdaptorParentData$toString(0); } }; B.RenderSliverGrid.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof B.SliverGridParentData)) child.parentData = new B.SliverGridParentData(false, null, null); }, set$gridDelegate: function(value) { var _this = this; if (_this._gridDelegate === value) return; if (H.getRuntimeType(value) !== H.getRuntimeType(_this._gridDelegate) || value.shouldRelayout$1(_this._gridDelegate)) _this.markNeedsLayout$0(); _this._gridDelegate = value; }, childCrossAxisPosition$1: function(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverGridParentData._as(t1).crossAxisOffset; t1.toString; return t1; }, performLayout$0: function() { var t2, scrollOffset, targetEndScrollOffset, layout, t3, firstIndex, targetLastIndex, t4, t5, leadingGarbage, firstChildGridGeometry, leadingScrollOffset, trailingScrollOffset, max, index, trailingChildWithLayout, gridGeometry, child, t6, t7, childConstraints, t8, t9, estimatedTotalExtent, paintExtent, _this = this, _null = null, constraints = type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; layout = _this._gridDelegate.getLayout$1(constraints); t3 = layout.mainAxisStride; firstIndex = t3 > 1e-10 ? layout.crossAxisCount * C.JSNumber_methods.$tdiv(scrollOffset, t3) : 0; targetLastIndex = isFinite(targetEndScrollOffset) ? layout.getMaxChildIndexForScrollOffset$1(targetEndScrollOffset) : _null; t3 = _this.ContainerRenderObjectMixin__firstChild; if (t3 != null) { t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; t5 = _this.ContainerRenderObjectMixin__lastChild; t5.toString; t5 = t5.parentData; t5.toString; t5 = t4._as(t5).index; t5.toString; leadingGarbage = C.JSInt_methods.clamp$2(firstIndex - t3, 0, _this.ContainerRenderObjectMixin__childCount); _this.collectGarbage$2(leadingGarbage, targetLastIndex == null ? 0 : C.JSInt_methods.clamp$2(t5 - targetLastIndex, 0, _this.ContainerRenderObjectMixin__childCount)); } else _this.collectGarbage$2(0, 0); firstChildGridGeometry = layout.getGeometryForChildIndex$1(firstIndex); leadingScrollOffset = firstChildGridGeometry.scrollOffset; trailingScrollOffset = leadingScrollOffset + firstChildGridGeometry.mainAxisExtent; if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$2$index$layoutOffset(firstIndex, leadingScrollOffset)) { max = layout.computeMaxScrollOffset$1(t1.get$childCount()); _this._geometry = G.SliverGeometry$(_null, false, _null, _null, max, 0, 0, 0, max, _null); t1.didFinishLayout$0(); return; } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; t3 = t4._as(t3).index; t3.toString; index = t3 - 1; t3 = type$.SliverGridParentData; trailingChildWithLayout = _null; for (; index >= firstIndex; --index) { gridGeometry = layout.getGeometryForChildIndex$1(index); t5 = gridGeometry.mainAxisExtent; child = _this.insertAndLayoutLeadingChild$1(constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(gridGeometry.crossAxisExtent, t5, t5)); t6 = child.parentData; t6.toString; t3._as(t6); t7 = gridGeometry.scrollOffset; t6.layoutOffset = t7; t6.crossAxisOffset = gridGeometry.crossAxisOffset; if (trailingChildWithLayout == null) trailingChildWithLayout = child; trailingScrollOffset = Math.max(trailingScrollOffset, t7 + t5); } if (trailingChildWithLayout == null) { t5 = _this.ContainerRenderObjectMixin__firstChild; t5.toString; t5.layout$1(0, firstChildGridGeometry.getBoxConstraints$1(constraints)); trailingChildWithLayout = _this.ContainerRenderObjectMixin__firstChild; t5 = trailingChildWithLayout.parentData; t5.toString; t3._as(t5); t5.layoutOffset = leadingScrollOffset; t5.crossAxisOffset = firstChildGridGeometry.crossAxisOffset; } t5 = trailingChildWithLayout.parentData; t5.toString; t5 = t4._as(t5).index; t5.toString; index = t5 + 1; t5 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t6 = targetLastIndex != null; while (true) { if (!(!t6 || index <= targetLastIndex)) break; gridGeometry = layout.getGeometryForChildIndex$1(index); t7 = gridGeometry.mainAxisExtent; childConstraints = constraints.asBoxConstraints$3$crossAxisExtent$maxExtent$minExtent(gridGeometry.crossAxisExtent, t7, t7); t8 = trailingChildWithLayout.parentData; t8.toString; child = t5._as(t8).ContainerParentDataMixin_nextSibling; if (child != null) { t8 = child.parentData; t8.toString; t8 = t4._as(t8).index; t8.toString; t8 = t8 !== index; } else t8 = true; if (t8) { child = _this.insertAndLayoutChild$2$after(childConstraints, trailingChildWithLayout); if (child == null) break; } else child.layout$1(0, childConstraints); t8 = child.parentData; t8.toString; t3._as(t8); t9 = gridGeometry.scrollOffset; t8.layoutOffset = t9; t8.crossAxisOffset = gridGeometry.crossAxisOffset; trailingScrollOffset = Math.max(trailingScrollOffset, t9 + t7); ++index; trailingChildWithLayout = child; } t3 = _this.ContainerRenderObjectMixin__lastChild; t3.toString; t3 = t3.parentData; t3.toString; t3 = t4._as(t3).index; t3.toString; estimatedTotalExtent = t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, firstIndex, t3, leadingScrollOffset, trailingScrollOffset); paintExtent = _this.calculatePaintOffset$3$from$to(constraints, Math.min(t2, leadingScrollOffset), trailingScrollOffset); _this._geometry = G.SliverGeometry$(_this.calculateCacheOffset$3$from$to(constraints, leadingScrollOffset, trailingScrollOffset), true, _null, _null, estimatedTotalExtent, 0, paintExtent, 0, estimatedTotalExtent, _null); if (estimatedTotalExtent === trailingScrollOffset) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; U.RenderSliverList.prototype = { performLayout$0: function() { var t2, scrollOffset, targetEndScrollOffset, childConstraints, earliestUsefulChild, t3, t4, leadingChildrenWithoutLayoutOffset, t5, earliestScrollOffset, leadingChildWithLayout, firstChildScrollOffset, advance, leadingGarbage, extent, reachedEnd, trailingGarbage, child, estimatedMaxScrollOffset, t6, paintExtent, cacheExtent, _this = this, _null = null, _box_0 = {}, constraints = type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._childManager; t1._didUnderflow = false; t2 = constraints.scrollOffset; scrollOffset = t2 + constraints.cacheOrigin; targetEndScrollOffset = scrollOffset + constraints.remainingCacheExtent; childConstraints = constraints.asBoxConstraints$0(); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$0()) { _this._geometry = C.SliverGeometry_Tbh; t1.didFinishLayout$0(); return; } _box_0.trailingChildWithLayout = null; earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; t3 = earliestUsefulChild.parentData; t3.toString; t4 = type$.SliverMultiBoxAdaptorParentData; if (t4._as(t3).layoutOffset == null) { t3 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); leadingChildrenWithoutLayoutOffset = 0; while (true) { if (earliestUsefulChild != null) { t5 = earliestUsefulChild.parentData; t5.toString; t5 = t4._as(t5).layoutOffset == null; } else t5 = false; if (!t5) break; t5 = earliestUsefulChild.parentData; t5.toString; earliestUsefulChild = t3._as(t5).ContainerParentDataMixin_nextSibling; ++leadingChildrenWithoutLayoutOffset; } _this.collectGarbage$2(leadingChildrenWithoutLayoutOffset, 0); if (_this.ContainerRenderObjectMixin__firstChild == null) if (!_this.addInitialChild$0()) { _this._geometry = C.SliverGeometry_Tbh; t1.didFinishLayout$0(); return; } } earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; t3 = earliestUsefulChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; earliestScrollOffset = t3; leadingChildWithLayout = _null; for (; earliestScrollOffset > scrollOffset; earliestScrollOffset = firstChildScrollOffset, leadingChildWithLayout = earliestUsefulChild) { earliestUsefulChild = _this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, true); if (earliestUsefulChild == null) { t3 = _this.ContainerRenderObjectMixin__firstChild; t5 = t3.parentData; t5.toString; t4._as(t5).layoutOffset = 0; if (scrollOffset === 0) { t3.layout$2$parentUsesSize(0, childConstraints, true); earliestUsefulChild = _this.ContainerRenderObjectMixin__firstChild; if (_box_0.trailingChildWithLayout == null) _box_0.trailingChildWithLayout = earliestUsefulChild; leadingChildWithLayout = earliestUsefulChild; break; } else { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -scrollOffset); return; } } t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; firstChildScrollOffset = earliestScrollOffset - _this.paintExtentOf$1(t3); if (firstChildScrollOffset < -1e-10) { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -firstChildScrollOffset); t1 = _this.ContainerRenderObjectMixin__firstChild.parentData; t1.toString; t4._as(t1).layoutOffset = 0; return; } t3 = earliestUsefulChild.parentData; t3.toString; t4._as(t3).layoutOffset = firstChildScrollOffset; if (_box_0.trailingChildWithLayout == null) _box_0.trailingChildWithLayout = earliestUsefulChild; } if (scrollOffset < 1e-10) while (true) { t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; if (!(t5 > 0)) break; t3 = t3.layoutOffset; t3.toString; earliestUsefulChild = _this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, true); t5 = _this.ContainerRenderObjectMixin__firstChild; t5.toString; firstChildScrollOffset = t3 - _this.paintExtentOf$1(t5); t5 = _this.ContainerRenderObjectMixin__firstChild.parentData; t5.toString; t4._as(t5).layoutOffset = 0; if (firstChildScrollOffset < -1e-10) { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, -firstChildScrollOffset); return; } } if (leadingChildWithLayout == null) { earliestUsefulChild.layout$2$parentUsesSize(0, childConstraints, true); _box_0.trailingChildWithLayout = earliestUsefulChild; } _box_0.inLayoutRange = true; _box_0.child = earliestUsefulChild; t3 = earliestUsefulChild.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; _box_0.index = t5; t3 = t3.layoutOffset; t3.toString; _box_0.endScrollOffset = t3 + _this.paintExtentOf$1(earliestUsefulChild); advance = new U.RenderSliverList_performLayout_advance(_box_0, _this, childConstraints); for (leadingGarbage = 0; _box_0.endScrollOffset < scrollOffset;) { ++leadingGarbage; if (!advance.call$0()) { _this.collectGarbage$2(leadingGarbage - 1, 0); t1 = _this.ContainerRenderObjectMixin__lastChild; t2 = t1.parentData; t2.toString; t2 = t4._as(t2).layoutOffset; t2.toString; extent = t2 + _this.paintExtentOf$1(t1); _this._geometry = G.SliverGeometry$(_null, false, _null, _null, extent, 0, 0, 0, extent, _null); return; } } while (true) { if (!(_box_0.endScrollOffset < targetEndScrollOffset)) { reachedEnd = false; break; } if (!advance.call$0()) { reachedEnd = true; break; } } t3 = _box_0.child; if (t3 != null) { t3 = t3.parentData; t3.toString; t5 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); t3 = _box_0.child = t5._as(t3).ContainerParentDataMixin_nextSibling; for (trailingGarbage = 0; t3 != null; t3 = child) { ++trailingGarbage; t3 = t3.parentData; t3.toString; child = t5._as(t3).ContainerParentDataMixin_nextSibling; _box_0.child = child; } } else trailingGarbage = 0; _this.collectGarbage$2(leadingGarbage, trailingGarbage); estimatedMaxScrollOffset = _box_0.endScrollOffset; if (!reachedEnd) { t3 = _this.ContainerRenderObjectMixin__firstChild; t3.toString; t3 = t3.parentData; t3.toString; t4._as(t3); t5 = t3.index; t5.toString; t6 = _this.ContainerRenderObjectMixin__lastChild; t6.toString; t6 = t6.parentData; t6.toString; t6 = t4._as(t6).index; t6.toString; estimatedMaxScrollOffset = t1.estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset(constraints, t5, t6, t3.layoutOffset, estimatedMaxScrollOffset); } t3 = _this.ContainerRenderObjectMixin__firstChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; paintExtent = _this.calculatePaintOffset$3$from$to(constraints, t3, _box_0.endScrollOffset); t3 = _this.ContainerRenderObjectMixin__firstChild.parentData; t3.toString; t3 = t4._as(t3).layoutOffset; t3.toString; cacheExtent = _this.calculateCacheOffset$3$from$to(constraints, t3, _box_0.endScrollOffset); t3 = constraints.remainingPaintExtent; t4 = _box_0.endScrollOffset; _this._geometry = G.SliverGeometry$(cacheExtent, t4 > t2 + t3 || t2 > 0, _null, _null, estimatedMaxScrollOffset, 0, paintExtent, 0, estimatedMaxScrollOffset, _null); if (estimatedMaxScrollOffset === t4) t1._didUnderflow = true; t1.didFinishLayout$0(); } }; U.RenderSliverList_performLayout_advance.prototype = { call$0: function() { var t4, child, index, t5, t1 = this._box_0, t2 = t1.child, t3 = t1.trailingChildWithLayout; if (t2 == t3) t1.inLayoutRange = false; t4 = this.$this; t2 = t2.parentData; t2.toString; child = t1.child = H._instanceType(t4)._eval$1("ContainerRenderObjectMixin.1")._as(t2).ContainerParentDataMixin_nextSibling; t2 = child == null; if (t2) t1.inLayoutRange = false; index = t1.index + 1; t1.index = index; if (!t1.inLayoutRange) { if (!t2) { t2 = child.parentData; t2.toString; t2 = type$.SliverMultiBoxAdaptorParentData._as(t2).index; t2.toString; t2 = t2 !== index; } else t2 = true; t5 = this.childConstraints; if (t2) { child = t4.insertAndLayoutChild$3$after$parentUsesSize(t5, t3, true); t1.child = child; if (child == null) return false; } else child.layout$2$parentUsesSize(0, t5, true); t2 = t1.trailingChildWithLayout = t1.child; } else t2 = child; t3 = t2.parentData; t3.toString; type$.SliverMultiBoxAdaptorParentData._as(t3); t5 = t1.endScrollOffset; t3.layoutOffset = t5; t1.endScrollOffset = t5 + t4.paintExtentOf$1(t2); return true; }, $signature: 188 }; F.KeepAliveParentDataMixin.prototype = {}; F.RenderSliverWithKeepAliveMixin.prototype = { setupParentData$1: function(child) { } }; F.SliverMultiBoxAdaptorParentData.prototype = { toString$0: function(_) { var t1 = "index=" + H.S(this.index) + "; "; return t1 + (this.KeepAliveParentDataMixin_keepAlive ? "keepAlive; " : "") + this.super$SliverLogicalParentData$toString(0); } }; F.RenderSliverMultiBoxAdaptor.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof F.SliverMultiBoxAdaptorParentData)) child.parentData = new F.SliverMultiBoxAdaptorParentData(false, null, null); }, adoptChild$1: function(child) { var t1; this.super$RenderObject$adoptChild(child); t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (!t1._keptAlive) { type$.RenderBox._as(child); t1.index = this._childManager._currentlyUpdatingChildIndex; } }, insert$2$after: function(_, child, after) { this.super$ContainerRenderObjectMixin$insert(0, child, after); }, move$2$after: function(child, after) { var t2, t3, t4, _this = this, t1 = child.parentData; t1.toString; t2 = type$.SliverMultiBoxAdaptorParentData; t2._as(t1); if (!t1._keptAlive) { _this.super$ContainerRenderObjectMixin$move(child, after); t1 = child.parentData; t1.toString; t2._as(t1).index = _this._childManager._currentlyUpdatingChildIndex; _this.markNeedsLayout$0(); } else { t3 = _this._keepAliveBucket; if (t3.$index(0, t1.index) == child) t3.remove$1(0, t1.index); t4 = child.parentData; t4.toString; t2._as(t4).index = _this._childManager._currentlyUpdatingChildIndex; t1 = t1.index; t1.toString; t3.$indexSet(0, t1, child); } }, remove$1: function(_, child) { var t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (!t1._keptAlive) { this.super$ContainerRenderObjectMixin$remove(0, child); return; } this._keepAliveBucket.remove$1(0, t1.index); this.dropChild$1(child); }, _createOrObtainChild$2$after: function(index, after) { this.invokeLayoutCallback$1$1(new F.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure(this, index, after), type$.SliverConstraints); }, _destroyOrCacheChild$1: function(child) { var t2, _this = this, t1 = child.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1); if (t1.KeepAliveParentDataMixin_keepAlive) { _this.remove$1(0, child); t2 = t1.index; t2.toString; _this._keepAliveBucket.$indexSet(0, t2, child); child.parentData = t1; _this.super$RenderObject$adoptChild(child); t1._keptAlive = true; } else _this._childManager.removeChild$1(child); }, attach$1: function(owner) { var t1; this.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$attach(owner); for (t1 = this._keepAliveBucket, t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) t1.get$current(t1).attach$1(owner); }, detach$0: function(_) { var t1; this.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$detach(0); for (t1 = this._keepAliveBucket, t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) t1.get$current(t1).detach$0(0); }, redepthChildren$0: function() { this.super$ContainerRenderObjectMixin$redepthChildren(); var t1 = this._keepAliveBucket; t1.get$values(t1).forEach$1(0, this.get$redepthChild()); }, visitChildren$1: function(visitor) { var t1; this.super$ContainerRenderObjectMixin$visitChildren(visitor); t1 = this._keepAliveBucket; t1.get$values(t1).forEach$1(0, visitor); }, visitChildrenForSemantics$1: function(visitor) { this.super$ContainerRenderObjectMixin$visitChildren(visitor); }, addInitialChild$2$index$layoutOffset: function(index, layoutOffset) { var t1; this._createOrObtainChild$2$after(index, null); t1 = this.ContainerRenderObjectMixin__firstChild; if (t1 != null) { t1 = t1.parentData; t1.toString; type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset = layoutOffset; return true; } this._childManager._didUnderflow = true; return false; }, addInitialChild$0: function() { return this.addInitialChild$2$index$layoutOffset(0, 0); }, insertAndLayoutLeadingChild$2$parentUsesSize: function(childConstraints, parentUsesSize) { var t2, index, t3, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t1 = t1.parentData; t1.toString; t2 = type$.SliverMultiBoxAdaptorParentData; t1 = t2._as(t1).index; t1.toString; index = t1 - 1; _this._createOrObtainChild$2$after(index, null); t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t3 = t1.parentData; t3.toString; t3 = t2._as(t3).index; t3.toString; if (t3 === index) { t1.layout$2$parentUsesSize(0, childConstraints, parentUsesSize); return _this.ContainerRenderObjectMixin__firstChild; } _this._childManager._didUnderflow = true; return null; }, insertAndLayoutLeadingChild$1: function(childConstraints) { return this.insertAndLayoutLeadingChild$2$parentUsesSize(childConstraints, false); }, insertAndLayoutChild$3$after$parentUsesSize: function(childConstraints, after, parentUsesSize) { var t2, index, child, t1 = after.parentData; t1.toString; t2 = type$.SliverMultiBoxAdaptorParentData; t1 = t2._as(t1).index; t1.toString; index = t1 + 1; this._createOrObtainChild$2$after(index, after); t1 = after.parentData; t1.toString; child = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_nextSibling; if (child != null) { t1 = child.parentData; t1.toString; t1 = t2._as(t1).index; t1.toString; t1 = t1 === index; } else t1 = false; if (t1) { child.layout$2$parentUsesSize(0, childConstraints, parentUsesSize); return child; } this._childManager._didUnderflow = true; return null; }, insertAndLayoutChild$2$after: function(childConstraints, after) { return this.insertAndLayoutChild$3$after$parentUsesSize(childConstraints, after, false); }, collectGarbage$2: function(leadingGarbage, trailingGarbage) { var t1 = {}; t1.leadingGarbage = leadingGarbage; t1.trailingGarbage = trailingGarbage; this.invokeLayoutCallback$1$1(new F.RenderSliverMultiBoxAdaptor_collectGarbage_closure(t1, this), type$.SliverConstraints); }, paintExtentOf$1: function(child) { switch (G.axisDirectionToAxis(type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(this)).axisDirection)) { case C.Axis_0: return child._box$_size._dx; case C.Axis_1: return child._box$_size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, hitTestChildren$3$crossAxisPosition$mainAxisPosition: function(result, crossAxisPosition, mainAxisPosition) { var t1, t2, child = this.ContainerRenderObjectMixin__lastChild, boxResult = S.BoxHitTestResult$wrap(result); for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"); child != null;) { if (this.hitTestBoxChild$4$crossAxisPosition$mainAxisPosition(boxResult, child, crossAxisPosition, mainAxisPosition)) return true; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; } return false; }, childMainAxisPosition$1: function(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset; t1.toString; return t1 - type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(this)).scrollOffset; }, childScrollOffset$1: function(child) { var t1 = child.parentData; t1.toString; return type$.SliverMultiBoxAdaptorParentData._as(t1).layoutOffset; }, applyPaintTransform$2: function(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).index; if (t1 == null) transform.setZero$0(); else if (this._keepAliveBucket.containsKey$1(0, t1)) transform.setZero$0(); else this.applyPaintTransformForBoxChild$2(child, transform); }, paint$2: function(context, offset) { var t1, originOffset, mainAxisUnit, crossAxisUnit, addExtent, child, t2, t3, t4, t5, t6, t7, t8, t9, t10, mainAxisDelta, crossAxisDelta, t11, childOffset, t12, _this = this; if (_this.ContainerRenderObjectMixin__firstChild == null) return; t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: originOffset = offset.$add(0, new P.Offset(0, _this._geometry.paintExtent)); mainAxisUnit = C.Offset_0_m1; crossAxisUnit = C.Offset_1_0; addExtent = true; break; case C.AxisDirection_1: originOffset = offset; mainAxisUnit = C.Offset_1_0; crossAxisUnit = C.Offset_0_1; addExtent = false; break; case C.AxisDirection_2: originOffset = offset; mainAxisUnit = C.Offset_0_1; crossAxisUnit = C.Offset_1_0; addExtent = false; break; case C.AxisDirection_3: originOffset = offset.$add(0, new P.Offset(_this._geometry.paintExtent, 0)); mainAxisUnit = C.Offset_m1_0; crossAxisUnit = C.Offset_0_1; addExtent = true; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t3 = type$.SliverMultiBoxAdaptorParentData, t4 = originOffset._dx, t5 = mainAxisUnit._dx, t6 = crossAxisUnit._dx, t7 = originOffset._dy, t8 = mainAxisUnit._dy, t9 = crossAxisUnit._dy; child != null;) { t10 = child.parentData; t10.toString; t10 = t3._as(t10).layoutOffset; t10.toString; mainAxisDelta = t10 - t1._as(K.RenderObject.prototype.get$constraints.call(_this)).scrollOffset; crossAxisDelta = _this.childCrossAxisPosition$1(child); t10 = t4 + t5 * mainAxisDelta + t6 * crossAxisDelta; t11 = t7 + t8 * mainAxisDelta + t9 * crossAxisDelta; childOffset = new P.Offset(t10, t11); if (addExtent) { t12 = _this.paintExtentOf$1(child); childOffset = new P.Offset(t10 + t5 * t12, t11 + t8 * t12); } if (mainAxisDelta < t1._as(K.RenderObject.prototype.get$constraints.call(_this)).remainingPaintExtent && mainAxisDelta + _this.paintExtentOf$1(child) > 0) context.paintChild$2(child, childOffset); t10 = child.parentData; t10.toString; child = t2._as(t10).ContainerParentDataMixin_nextSibling; } }, debugDescribeChildren$0: function() { var t1, t2, indices, _i, index, t3, _s17_ = "child with index ", children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), child = this.ContainerRenderObjectMixin__firstChild; if (child != null) for (t1 = type$.SliverMultiBoxAdaptorParentData; true;) { t2 = child.parentData; t2.toString; t1._as(t2); children.push(new Y.DiagnosticableTreeNode(child, _s17_ + H.S(t2.index), true, true, null, null)); if (child == this.ContainerRenderObjectMixin__lastChild) break; child = t2.ContainerParentDataMixin_nextSibling; } t1 = this._keepAliveBucket; if (t1.get$isNotEmpty(t1)) { t2 = t1.get$keys(t1); indices = P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")); C.JSArray_methods.sort$0(indices); for (t2 = indices.length, _i = 0; _i < indices.length; indices.length === t2 || (0, H.throwConcurrentModificationError)(indices), ++_i) { index = indices[_i]; t3 = t1.$index(0, index); t3.toString; children.push(new Y.DiagnosticableTreeNode(t3, _s17_ + H.S(index) + " (kept alive but not laid out)", true, true, null, C.DiagnosticsTreeStyle_2)); } } return children; } }; F.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure.prototype = { call$1: function(constraints) { var t1 = this.$this, t2 = t1._keepAliveBucket, t3 = this.index, t4 = this.after; if (t2.containsKey$1(0, t3)) { t2 = t2.remove$1(0, t3); t2.toString; t3 = t2.parentData; t3.toString; type$.SliverMultiBoxAdaptorParentData._as(t3); t1.dropChild$1(t2); t2.parentData = t3; t1.super$ContainerRenderObjectMixin$insert(0, t2, t4); t3._keptAlive = false; } else t1._childManager.createChild$2$after(t3, t4); }, $signature: 415 }; F.RenderSliverMultiBoxAdaptor_collectGarbage_closure.prototype = { call$1: function(constraints) { var t1, t2, t3; for (t1 = this._box_0, t2 = this.$this; t1.leadingGarbage > 0;) { t3 = t2.ContainerRenderObjectMixin__firstChild; t3.toString; t2._destroyOrCacheChild$1(t3); --t1.leadingGarbage; } for (; t1.trailingGarbage > 0;) { t3 = t2.ContainerRenderObjectMixin__lastChild; t3.toString; t2._destroyOrCacheChild$1(t3); --t1.trailingGarbage; } t1 = t2._keepAliveBucket; t1 = t1.get$values(t1); t3 = H._instanceType(t1)._eval$1("WhereIterable"); C.JSArray_methods.forEach$1(P.List_List$of(new H.WhereIterable(t1, new F.RenderSliverMultiBoxAdaptor_collectGarbage__closure(), t3), true, t3._eval$1("Iterable.E")), t2._childManager.get$removeChild()); }, $signature: 415 }; F.RenderSliverMultiBoxAdaptor_collectGarbage__closure.prototype = { call$1: function(child) { var t1 = child.parentData; t1.toString; return !type$.SliverMultiBoxAdaptorParentData._as(t1).KeepAliveParentDataMixin_keepAlive; }, $signature: 670 }; F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.SliverMultiBoxAdaptorParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.SliverMultiBoxAdaptorParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers.prototype = {}; F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin.prototype = {}; F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin.prototype = { detach$0: function(_) { this.super$ParentData$detach(0); } }; F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin.prototype = {}; T.RenderSliverEdgeInsetsPadding.prototype = { get$beforePadding: function() { var _this = this, t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: return _this.get$resolvedPadding().bottom; case C.AxisDirection_1: return _this.get$resolvedPadding().left; case C.AxisDirection_2: return _this.get$resolvedPadding().top; case C.AxisDirection_3: return _this.get$resolvedPadding().right; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$afterPadding: function() { var _this = this, t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: return _this.get$resolvedPadding().top; case C.AxisDirection_1: return _this.get$resolvedPadding().right; case C.AxisDirection_2: return _this.get$resolvedPadding().bottom; case C.AxisDirection_3: return _this.get$resolvedPadding().left; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$crossAxisPadding: function() { switch (G.axisDirectionToAxis(type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(this)).axisDirection)) { case C.Axis_0: var t1 = this.get$resolvedPadding(); return t1.get$_top(t1) + t1.get$_bottom(t1); case C.Axis_1: return this.get$resolvedPadding().get$horizontal(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, setupParentData$1: function(child) { if (!(child.parentData instanceof G.SliverPhysicalParentData)) child.parentData = new G.SliverPhysicalParentData(C.Offset_0_0); }, performLayout$0: function() { var t2, mainAxisPadding, crossAxisPadding, beforePaddingPaintExtent, overlap, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, childLayoutGeometry, afterPaddingPaintExtent, mainAxisPaddingPaintExtent, beforePaddingCacheExtent, afterPaddingCacheExtent, paintExtent, _this = this, _null = null, t1 = type$.SliverConstraints, constraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)), beforePadding = _this.get$beforePadding(); _this.get$afterPadding(); t2 = _this.get$resolvedPadding(); t2.toString; mainAxisPadding = t2.along$1(G.axisDirectionToAxis(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection)); crossAxisPadding = _this.get$crossAxisPadding(); if (_this.RenderObjectWithChildMixin__child == null) { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, mainAxisPadding, 0, Math.min(mainAxisPadding, constraints.remainingPaintExtent), 0, mainAxisPadding, _null); return; } beforePaddingPaintExtent = _this.calculatePaintOffset$3$from$to(constraints, 0, beforePadding); overlap = constraints.overlap; if (overlap > 0) overlap = Math.max(0, overlap - beforePaddingPaintExtent); t1 = _this.RenderObjectWithChildMixin__child; t1.toString; t2 = Math.max(0, constraints.scrollOffset - beforePadding); t3 = Math.min(0, constraints.cacheOrigin + beforePadding); t4 = constraints.remainingPaintExtent; t5 = _this.calculatePaintOffset$3$from$to(constraints, 0, beforePadding); t6 = constraints.remainingCacheExtent; t7 = _this.calculateCacheOffset$3$from$to(constraints, 0, beforePadding); t8 = Math.max(0, constraints.crossAxisExtent - crossAxisPadding); t9 = constraints.precedingScrollExtent; t10 = constraints.axisDirection; t11 = constraints.growthDirection; t12 = constraints.userScrollDirection; t13 = constraints.crossAxisDirection; t14 = constraints.viewportMainAxisExtent; t1.layout$2$parentUsesSize(0, new G.SliverConstraints(t10, t11, t12, t2, beforePadding + t9, overlap, t4 - t5, t8, t13, t14, t3, t6 - t7), true); childLayoutGeometry = _this.RenderObjectWithChildMixin__child._geometry; t1 = childLayoutGeometry.scrollOffsetCorrection; if (t1 != null) { _this._geometry = G.SliverGeometry$(_null, false, _null, _null, 0, 0, 0, 0, 0, t1); return; } t1 = childLayoutGeometry.scrollExtent; t2 = beforePadding + t1; t3 = mainAxisPadding + t1; afterPaddingPaintExtent = _this.calculatePaintOffset$3$from$to(constraints, t2, t3); mainAxisPaddingPaintExtent = beforePaddingPaintExtent + afterPaddingPaintExtent; beforePaddingCacheExtent = _this.calculateCacheOffset$3$from$to(constraints, 0, beforePadding); afterPaddingCacheExtent = _this.calculateCacheOffset$3$from$to(constraints, t2, t3); t2 = childLayoutGeometry.paintExtent; t5 = childLayoutGeometry.layoutExtent; paintExtent = Math.min(beforePaddingPaintExtent + Math.max(t2, t5 + afterPaddingPaintExtent), t4); t4 = childLayoutGeometry.paintOrigin; t5 = Math.min(mainAxisPaddingPaintExtent + t5, paintExtent); t6 = Math.min(afterPaddingCacheExtent + beforePaddingCacheExtent + childLayoutGeometry.cacheExtent, t6); t7 = childLayoutGeometry.maxPaintExtent; t2 = Math.max(mainAxisPaddingPaintExtent + t2, beforePaddingPaintExtent + childLayoutGeometry.hitTestExtent); _this._geometry = G.SliverGeometry$(t6, childLayoutGeometry.hasVisualOverflow, t2, t5, mainAxisPadding + t7, 0, paintExtent, t4, t3, _null); t3 = _this.RenderObjectWithChildMixin__child.parentData; t3.toString; type$.SliverPhysicalParentData._as(t3); switch (G.applyGrowthDirectionToAxisDirection(t10, t11)) { case C.AxisDirection_0: t3.paintOffset = new P.Offset(_this.get$resolvedPadding().left, _this.calculatePaintOffset$3$from$to(constraints, _this.get$resolvedPadding().bottom + t1, _this.get$resolvedPadding().bottom + t1 + _this.get$resolvedPadding().top)); break; case C.AxisDirection_1: t3.paintOffset = new P.Offset(_this.calculatePaintOffset$3$from$to(constraints, 0, _this.get$resolvedPadding().left), _this.get$resolvedPadding().top); break; case C.AxisDirection_2: t3.paintOffset = new P.Offset(_this.get$resolvedPadding().left, _this.calculatePaintOffset$3$from$to(constraints, 0, _this.get$resolvedPadding().top)); break; case C.AxisDirection_3: t3.paintOffset = new P.Offset(_this.calculatePaintOffset$3$from$to(constraints, _this.get$resolvedPadding().right + t1, _this.get$resolvedPadding().right + t1 + _this.get$resolvedPadding().left), _this.get$resolvedPadding().top); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, hitTestChildren$3$crossAxisPosition$mainAxisPosition: function(result, crossAxisPosition, mainAxisPosition) { var t2, t3, t4, _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null && t1._geometry.hitTestExtent > 0) { t1 = t1.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1); t2 = _this.calculatePaintOffset$3$from$to(type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), 0, _this.get$beforePadding()); t3 = _this.RenderObjectWithChildMixin__child; t3.toString; t3 = _this.childCrossAxisPosition$1(t3); t1 = t1.paintOffset; t4 = _this.RenderObjectWithChildMixin__child.get$hitTest(); result._localTransforms.push(new O._OffsetTransformPart(new P.Offset(-t1._dx, -t1._dy))); t4.call$3$crossAxisPosition$mainAxisPosition(result, crossAxisPosition - t3, mainAxisPosition - t2); result.popTransform$0(); } return false; }, childCrossAxisPosition$1: function(child) { var _this = this, t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: case C.AxisDirection_2: return _this.get$resolvedPadding().left; case C.AxisDirection_3: case C.AxisDirection_1: return _this.get$resolvedPadding().top; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, childScrollOffset$1: function(child) { return this.get$beforePadding(); }, applyPaintTransform$2: function(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverPhysicalParentData._as(t1).paintOffset; transform.translate$2(0, t1._dx, t1._dy); }, paint$2: function(context, offset) { var t2, t1 = this.RenderObjectWithChildMixin__child; if (t1 != null && t1._geometry.visible) { t2 = t1.parentData; t2.toString; context.paintChild$2(t1, offset.$add(0, type$.SliverPhysicalParentData._as(t2).paintOffset)); } } }; T.RenderSliverPadding.prototype = { get$resolvedPadding: function() { return this._resolvedPadding; }, _sliver_padding$_resolve$0: function() { if (this._resolvedPadding != null) return; var t1 = this._sliver_padding$_padding; t1.toString; this._resolvedPadding = t1; }, set$padding: function(_, value) { var _this = this; if (J.$eq$(_this._sliver_padding$_padding, value)) return; _this._sliver_padding$_padding = value; _this._resolvedPadding = null; _this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._sliver_padding$_textDirection == value) return; _this._sliver_padding$_textDirection = value; _this._resolvedPadding = null; _this.markNeedsLayout$0(); }, performLayout$0: function() { this._sliver_padding$_resolve$0(); this.super$RenderSliverEdgeInsetsPadding$performLayout(); } }; T._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; U.PersistentHeaderShowOnScreenConfiguration.prototype = {}; U.RenderSliverPersistentHeader.prototype = { get$childExtent: function() { var _this = this; if (_this.RenderObjectWithChildMixin__child == null) return 0; switch (G.axisDirectionToAxis(type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection)) { case C.Axis_1: return _this.RenderObjectWithChildMixin__child._box$_size._dy; case C.Axis_0: return _this.RenderObjectWithChildMixin__child._box$_size._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, updateChild$2: function(shrinkOffset, overlapsContent) { }, markNeedsLayout$0: function() { this._needsUpdateChild = true; this.super$RenderObject$markNeedsLayout(); }, layoutChild$3$overlapsContent: function(scrollOffset, maxExtent, overlapsContent) { var stretchOffset, t1, _this = this, shrinkOffset = Math.min(H.checkNum(scrollOffset), maxExtent); if (_this._needsUpdateChild || _this._lastShrinkOffset !== shrinkOffset || _this._lastOverlapsContent !== overlapsContent) { _this.invokeLayoutCallback$1$1(new U.RenderSliverPersistentHeader_layoutChild_closure(_this, shrinkOffset, overlapsContent), type$.SliverConstraints); _this._lastShrinkOffset = shrinkOffset; _this._lastOverlapsContent = overlapsContent; _this._needsUpdateChild = false; } stretchOffset = _this.stretchConfiguration != null && type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)).scrollOffset === 0 ? 0 + Math.abs(type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)).overlap) : 0; t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) t1.layout$2$parentUsesSize(0, type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)).asBoxConstraints$1$maxExtent(Math.max(_this.get$minExtent(), maxExtent - shrinkOffset) + stretchOffset), true); _this.stretchConfiguration != null; _this.__RenderSliverPersistentHeader__lastStretchOffset = stretchOffset; }, childMainAxisPosition$1: function(child) { return this.super$RenderSliver$childMainAxisPosition(child); }, hitTestChildren$3$crossAxisPosition$mainAxisPosition: function(result, crossAxisPosition, mainAxisPosition) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return this.hitTestBoxChild$4$crossAxisPosition$mainAxisPosition(S.BoxHitTestResult$wrap(result), t1, crossAxisPosition, mainAxisPosition); return false; }, applyPaintTransform$2: function(child, transform) { this.applyPaintTransformForBoxChild$2(type$.RenderBox._as(child), transform); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this.RenderObjectWithChildMixin__child != null && _this._geometry.visible) { t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: t1 = _this._geometry.paintExtent; t2 = _this.RenderObjectWithChildMixin__child; t2.toString; offset = offset.$add(0, new P.Offset(0, t1 - _this.childMainAxisPosition$1(t2) - _this.get$childExtent())); break; case C.AxisDirection_2: t1 = _this.RenderObjectWithChildMixin__child; t1.toString; offset = offset.$add(0, new P.Offset(0, _this.childMainAxisPosition$1(t1))); break; case C.AxisDirection_3: t1 = _this._geometry.paintExtent; t2 = _this.RenderObjectWithChildMixin__child; t2.toString; offset = offset.$add(0, new P.Offset(t1 - _this.childMainAxisPosition$1(t2) - _this.get$childExtent(), 0)); break; case C.AxisDirection_1: t1 = _this.RenderObjectWithChildMixin__child; t1.toString; offset = offset.$add(0, new P.Offset(_this.childMainAxisPosition$1(t1), 0)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this.RenderObjectWithChildMixin__child; t1.toString; context.paintChild$2(t1, offset); } }, describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.addTagForChildren$1(C.SemanticsTag_bQQ); } }; U.RenderSliverPersistentHeader_layoutChild_closure.prototype = { call$1: function(constraints) { this.$this.updateChild$2(this.shrinkOffset, this.overlapsContent); }, $signature: 415 }; U.RenderSliverPinnedPersistentHeader.prototype = { performLayout$0: function() { var t2, maxExtent, t3, effectiveRemainingPaintExtent, layoutExtent, stretchOffset, t4, _this = this, constraints = type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this._RenderSliverPersistentHeaderForWidgetsMixin__element; t1.toString; t2 = type$._SliverPersistentHeaderRenderObjectWidget; maxExtent = t2._as(N.RenderObjectElement.prototype.get$widget.call(t1)).delegate.get$maxExtent(); t1 = constraints.overlap; t3 = constraints.scrollOffset; _this.layoutChild$3$overlapsContent(t3, maxExtent, t1 > 0); effectiveRemainingPaintExtent = Math.max(0, constraints.remainingPaintExtent - t1); layoutExtent = C.JSNumber_methods.clamp$2(maxExtent - t3, 0, effectiveRemainingPaintExtent); stretchOffset = _this.stretchConfiguration != null ? Math.abs(t1) : 0; t3 = Math.min(H.checkNum(_this.get$childExtent()), effectiveRemainingPaintExtent); t4 = _this._RenderSliverPersistentHeaderForWidgetsMixin__element; t4.toString; t4 = t2._as(N.RenderObjectElement.prototype.get$widget.call(t4)).delegate; t2 = layoutExtent > 0 ? -constraints.cacheOrigin + layoutExtent : layoutExtent; _this._geometry = G.SliverGeometry$(t2, true, null, layoutExtent, maxExtent + stretchOffset, t4.collapsedHeight, t3, t1, maxExtent, null); }, childMainAxisPosition$1: function(child) { return 0; }, showOnScreen$4$curve$descendant$duration$rect: function(curve, descendant, duration, rect) { var t1, localBounds, newRect, _this = this; if (descendant != null) { t1 = descendant.getTransformTo$1(0, _this); localBounds = T.MatrixUtils_transformRect(t1, rect == null ? descendant.get$paintBounds() : rect); } else localBounds = rect; t1 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(_this)).growthDirection)) { case C.AxisDirection_0: newRect = U._trim(localBounds, _this.get$childExtent(), -1 / 0, 1 / 0, -1 / 0); break; case C.AxisDirection_1: newRect = U._trim(localBounds, 1 / 0, 0, 1 / 0, -1 / 0); break; case C.AxisDirection_2: newRect = U._trim(localBounds, 1 / 0, -1 / 0, 1 / 0, 0); break; case C.AxisDirection_3: newRect = U._trim(localBounds, 1 / 0, -1 / 0, _this.get$childExtent(), -1 / 0); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this.super$RenderObject$showOnScreen(curve, _this, duration, newRect); }, showOnScreen$0: function() { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, null); }, showOnScreen$1$rect: function(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, rect); }, showOnScreen$3$curve$duration$rect: function(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); } }; U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers.prototype = {}; K.RelativeRect.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof K.RelativeRect && other.left == _this.left && other.top == _this.top && other.right === _this.right && other.bottom === _this.bottom; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.left, _this.top, _this.right, _this.bottom, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "RelativeRect.fromLTRB(" + J.toStringAsFixed$1$n(_this.left, 1) + ", " + J.toStringAsFixed$1$n(_this.top, 1) + ", " + C.JSNumber_methods.toStringAsFixed$1(_this.right, 1) + ", " + C.JSNumber_methods.toStringAsFixed$1(_this.bottom, 1) + ")"; } }; K.StackParentData.prototype = { get$isPositioned: function() { var _this = this; return _this.top != null || _this.right != null || _this.bottom != null || _this.left != null || _this.width != null || _this.height != null; }, toString$0: function(_) { var _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray_String), t2 = _this.top; if (t2 != null) t1.push("top=" + E.debugFormatDouble(t2)); t2 = _this.right; if (t2 != null) t1.push("right=" + E.debugFormatDouble(t2)); t2 = _this.bottom; if (t2 != null) t1.push("bottom=" + E.debugFormatDouble(t2)); t2 = _this.left; if (t2 != null) t1.push("left=" + E.debugFormatDouble(t2)); t2 = _this.width; if (t2 != null) t1.push("width=" + E.debugFormatDouble(t2)); t2 = _this.height; if (t2 != null) t1.push("height=" + E.debugFormatDouble(t2)); if (t1.length === 0) t1.push("not positioned"); t1.push(_this.super$BoxParentData$toString(0)); return C.JSArray_methods.join$1(t1, "; "); }, set$width: function(receiver, val) { return this.width = val; }, set$height: function(receiver, val) { return this.height = val; } }; K.StackFit.prototype = { toString$0: function(_) { return this._stack$_name; } }; K.Overflow.prototype = { toString$0: function(_) { return this._stack$_name; } }; K.RenderStack.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof K.StackParentData)) child.parentData = new K.StackParentData(null, null, C.Offset_0_0); }, _stack$_resolve$0: function() { var _this = this; if (_this._stack$_resolvedAlignment != null) return; _this._stack$_resolvedAlignment = _this._stack$_alignment.resolve$1(_this._stack$_textDirection); }, set$alignment: function(value) { var _this = this; if (_this._stack$_alignment.$eq(0, value)) return; _this._stack$_alignment = value; _this._stack$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { var _this = this; if (_this._stack$_textDirection == value) return; _this._stack$_textDirection = value; _this._stack$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, computeMinIntrinsicWidth$1: function(height) { return K.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new K.RenderStack_computeMinIntrinsicWidth_closure(height)); }, computeMaxIntrinsicWidth$1: function(height) { return K.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new K.RenderStack_computeMaxIntrinsicWidth_closure(height)); }, computeMinIntrinsicHeight$1: function(width) { return K.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new K.RenderStack_computeMinIntrinsicHeight_closure(width)); }, computeMaxIntrinsicHeight$1: function(width) { return K.RenderStack_getIntrinsicDimension(this.ContainerRenderObjectMixin__firstChild, new K.RenderStack_computeMaxIntrinsicHeight_closure(width)); }, computeDistanceToActualBaseline$1: function(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, computeDryLayout$1: function(constraints) { return this._stack$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_dryLayoutChild$closure()); }, _stack$_computeSize$2$constraints$layoutChild: function(constraints, layoutChild) { var width, height, nonPositionedConstraints, child, t1, height0, width0, hasNonPositionedChildren, t2, childSize, t3, _this = this; _this._stack$_resolve$0(); if (_this.ContainerRenderObjectMixin__childCount === 0) return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); width = constraints.minWidth; height = constraints.minHeight; switch (_this._stack$_fit) { case C.StackFit_0: nonPositionedConstraints = constraints.loosen$0(); break; case C.StackFit_1: nonPositionedConstraints = S.BoxConstraints$tight(new P.Size(C.JSInt_methods.clamp$2(1 / 0, width, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, height, constraints.maxHeight))); break; case C.StackFit_2: nonPositionedConstraints = constraints; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData, height0 = height, width0 = width, hasNonPositionedChildren = false; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (!t2.get$isPositioned()) { childSize = layoutChild.call$2(child, nonPositionedConstraints); t3 = childSize._dx; width0 = Math.max(H.checkNum(width0), H.checkNum(t3)); t3 = childSize._dy; height0 = Math.max(H.checkNum(height0), H.checkNum(t3)); hasNonPositionedChildren = true; } child = t2.ContainerParentDataMixin_nextSibling; } return hasNonPositionedChildren ? new P.Size(width0, height0) : new P.Size(C.JSInt_methods.clamp$2(1 / 0, width, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, height, constraints.maxHeight)); }, performLayout$0: function() { var child, t1, t2, t3, t4, t5, t6, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._stack$_hasVisualOverflow = false; _this._box$_size = _this._stack$_computeSize$2$constraints$layoutChild(constraints, N.layout_helper_ChildLayoutHelper_layoutChild$closure()); child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData, t2 = type$.Offset; child != null;) { t3 = child.parentData; t3.toString; t1._as(t3); if (!t3.get$isPositioned()) { t4 = _this._stack$_resolvedAlignment; t4.toString; t5 = _this._box$_size; t5.toString; t6 = child._box$_size; t6.toString; t3.offset = t4.alongOffset$1(t2._as(t5.$sub(0, t6))); } else { t4 = _this._box$_size; t4.toString; t5 = _this._stack$_resolvedAlignment; t5.toString; _this._stack$_hasVisualOverflow = K.RenderStack_layoutPositionedChild(child, t3, t4, t5) || _this._stack$_hasVisualOverflow; } child = t3.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paintStack$2: function(context, offset) { this.defaultPaint$2(context, offset); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this._stack$_clipBehavior !== C.Clip_0 && _this._stack$_hasVisualOverflow) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._stack$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$paintStack(), _this._stack$_clipBehavior, _this._stack$_clipRectLayer); } else { _this._stack$_clipRectLayer = null; _this.paintStack$2(context, offset); } }, describeApproximatePaintClip$1: function(child) { var t1; if (this._stack$_hasVisualOverflow) { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; } }; K.RenderStack_computeMinIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 77 }; K.RenderStack_computeMaxIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 77 }; K.RenderStack_computeMinIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 77 }; K.RenderStack_computeMaxIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 77 }; K.RenderStack_layoutPositionedChild__x_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._x0 === $) return t2._x0 = t1; else throw H.wrapException(H.LateError$localAI("x")); }, $signature: 157 }; K.RenderStack_layoutPositionedChild__y_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._y0 === $) return t2._y0 = t1; else throw H.wrapException(H.LateError$localAI("y")); }, $signature: 157 }; K.RenderStack_layoutPositionedChild__x_get.prototype = { call$0: function() { var t1 = this._box_0._x0; return t1 === $ ? H.throwExpression(H.LateError$localNI("x")) : t1; }, $signature: 116 }; K.RenderStack_layoutPositionedChild__y_get.prototype = { call$0: function() { var t1 = this._box_0._y0; return t1 === $ ? H.throwExpression(H.LateError$localNI("y")) : t1; }, $signature: 116 }; K.RenderIndexedStack.prototype = { visitChildrenForSemantics$1: function(visitor) { if (this._stack$_index != null && this.ContainerRenderObjectMixin__firstChild != null) visitor.call$1(this._childAtIndex$0()); }, _childAtIndex$0: function() { var t3, child = this.ContainerRenderObjectMixin__firstChild, t1 = type$.StackParentData, t2 = this._stack$_index, i = 0; while (true) { if (child != null) { t2.toString; t3 = i < t2; } else t3 = false; if (!t3) break; t3 = child.parentData; t3.toString; child = t1._as(t3).ContainerParentDataMixin_nextSibling; ++i; } child.toString; return child; }, hitTestChildren$2$position: function(result, position) { var child, t1; if (this.ContainerRenderObjectMixin__firstChild == null || this._stack$_index == null) return false; child = this._childAtIndex$0(); t1 = child.parentData; t1.toString; type$.StackParentData._as(t1); return result.addWithPaintOffset$3$hitTest$offset$position(new K.RenderIndexedStack_hitTestChildren_closure(position, t1, child), t1.offset, position); }, paintStack$2: function(context, offset) { var child, t1; if (this.ContainerRenderObjectMixin__firstChild == null || this._stack$_index == null) return; child = this._childAtIndex$0(); t1 = child.parentData; t1.toString; context.paintChild$2(child, type$.StackParentData._as(t1).offset.$add(0, offset)); } }; K.RenderIndexedStack_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { transformed.toString; return this.child.hitTest$2$position(result, transformed); }, $signature: 96 }; K._RenderStack_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; K._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; S.TableCellParentData.prototype = { toString$0: function(_) { var t1 = this.super$BoxParentData$toString(0) + "; ", t2 = this.verticalAlignment; return t1 + (t2 == null ? "default vertical alignment" : t2.toString$0(0)); } }; S.TableColumnWidth.prototype = { flex$1: function(_, cells) { return null; }, toString$0: function(_) { return "TableColumnWidth"; } }; S.IntrinsicColumnWidth.prototype = { minIntrinsicWidth$2: function(cells, containerWidth) { var t1, result, t2; for (t1 = new P._SyncStarIterator(cells._outerHelper(), cells.$ti._eval$1("_SyncStarIterator<1>")), result = 0; t1.moveNext$0();) { t2 = t1.get$current(t1); result = Math.max(result, H.checkNum(t2._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, t2.get$computeMinIntrinsicWidth()))); } return result; }, maxIntrinsicWidth$2: function(cells, containerWidth) { var t1, result, t2; for (t1 = new P._SyncStarIterator(cells._outerHelper(), cells.$ti._eval$1("_SyncStarIterator<1>")), result = 0; t1.moveNext$0();) { t2 = t1.get$current(t1); result = Math.max(result, H.checkNum(t2._computeIntrinsicDimension$3(C._IntrinsicDimension_1, 1 / 0, t2.get$computeMaxIntrinsicWidth()))); } return result; }, flex$1: function(_, cells) { return this._flex; }, toString$0: function(_) { var t1 = this._flex; return "IntrinsicColumnWidth(flex: " + H.S(t1 == null ? null : C.JSInt_methods.toStringAsFixed$1(t1, 1)) + ")"; } }; S.FixedColumnWidth.prototype = { minIntrinsicWidth$2: function(cells, containerWidth) { return this.value; }, maxIntrinsicWidth$2: function(cells, containerWidth) { return this.value; }, toString$0: function(_) { return "FixedColumnWidth(" + E.debugFormatDouble(this.value) + ")"; }, get$value: function(receiver) { return this.value; } }; S.FlexColumnWidth.prototype = { minIntrinsicWidth$2: function(cells, containerWidth) { return 0; }, maxIntrinsicWidth$2: function(cells, containerWidth) { return 0; }, flex$1: function(_, cells) { return this.value; }, toString$0: function(_) { return "FlexColumnWidth(" + E.debugFormatDouble(this.value) + ")"; }, get$value: function(receiver) { return this.value; } }; S.TableCellVerticalAlignment.prototype = { toString$0: function(_) { return this._table$_name; } }; S.RenderTable.prototype = { set$columnWidths: function(value) { var t1 = this._columnWidths; if (t1 === value) return; if (t1.get$isEmpty(t1) && value == null) return; this._columnWidths = value == null ? P.HashMap_HashMap(null, null, null, type$.int, type$.TableColumnWidth) : value; this.markNeedsLayout$0(); }, set$defaultColumnWidth: function(value) { if (this._defaultColumnWidth === value) return; this._defaultColumnWidth = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { if (this._table$_textDirection == value) return; this._table$_textDirection = value; this.markNeedsLayout$0(); }, set$border: function(_, value) { return; }, set$rowDecorations: function(value) { var t2, _i, painter, _this = this, t1 = _this._table$_rowDecorations; if (t1 == null ? value == null : t1 === value) return; _this._table$_rowDecorations = value; t1 = _this._rowDecorationPainters; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t2; ++_i) { painter = t1[_i]; if (painter != null) painter.dispose$0(0); } t1 = _this._table$_rowDecorations; _this._rowDecorationPainters = t1 != null ? P.List_List$filled(t1.length, null, false, type$.nullable_BoxPainter) : null; }, set$configuration: function(value) { if (value.$eq(0, this._table$_configuration)) return; this._table$_configuration = value; this.markNeedsPaint$0(); }, set$defaultVerticalAlignment: function(value) { if (this._defaultVerticalAlignment === value) return; this._defaultVerticalAlignment = value; this.markNeedsLayout$0(); }, set$textBaseline: function(_, value) { return; }, setupParentData$1: function(child) { if (!(child.parentData instanceof S.TableCellParentData)) child.parentData = new S.TableCellParentData(C.Offset_0_0); }, setFlatChildren$2: function(columns, cells) { var t2, _i, oldChild, lostChildren, y, x, xyOld, xyNew, t3, _this = this, t1 = _this._table$_children; if (cells === t1 && columns == _this._table$_columns) return; if (columns === 0 || cells.length === 0) { _this._table$_columns = columns; t2 = t1.length; if (t2 === 0) return; for (_i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { oldChild = t1[_i]; if (oldChild != null) _this.dropChild$1(oldChild); } _this._rows = 0; C.JSArray_methods.set$length(_this._table$_children, 0); _this.markNeedsLayout$0(); return; } lostChildren = P.HashSet_HashSet(type$.RenderBox); for (y = 0; y < _this._rows; ++y) for (x = 0; t1 = _this._table$_columns, x < t1; ++x) { xyOld = x + y * t1; xyNew = x + y * columns; t1 = _this._table$_children[xyOld]; if (t1 != null) t1 = x >= columns || xyNew >= cells.length || !J.$eq$(t1, cells[xyNew]); else t1 = false; if (t1) { t1 = _this._table$_children[xyOld]; t1.toString; lostChildren.add$1(0, t1); } } for (y = 0; t1 = y * columns, t1 < cells.length;) { for (x = 0; x < columns; ++x) { xyNew = x + t1; t2 = _this._table$_columns; t3 = cells[xyNew]; if (t3 != null) t2 = x >= t2 || y >= _this._rows || !J.$eq$(_this._table$_children[x + y * t2], t3); else t2 = false; if (t2) if (!lostChildren.remove$1(0, cells[xyNew])) { t2 = cells[xyNew]; t2.toString; _this.setupParentData$1(t2); _this.markNeedsLayout$0(); _this.markNeedsCompositingBitsUpdate$0(); _this.markNeedsSemanticsUpdate$0(); _this.super$AbstractNode$adoptChild(t2); } } ++y; } lostChildren.forEach$1(0, _this.get$dropChild()); _this._table$_columns = columns; _this._rows = C.JSInt_methods.$tdiv(cells.length, columns); _this._table$_children = P.List_List$from(cells, true, type$.nullable_RenderBox); _this.markNeedsLayout$0(); }, setChild$3: function(x, y, value) { var _this = this, xy = x + y * _this._table$_columns, oldChild = _this._table$_children[xy]; if (oldChild == value) return; if (oldChild != null) _this.dropChild$1(oldChild); C.JSArray_methods.$indexSet(_this._table$_children, xy, value); if (value != null) _this.adoptChild$1(value); }, attach$1: function(owner) { var t1, t2, _i, child; this.super$RenderObject$attach(owner); for (t1 = this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) child.attach$1(owner); } }, detach$0: function(_) { var t1, t2, _i, painter, child, _this = this; _this.super$AbstractNode$detach(0); t1 = _this._rowDecorationPainters; if (t1 != null) { for (t2 = t1.length, _i = 0; _i < t2; ++_i) { painter = t1[_i]; if (painter != null) painter.dispose$0(0); } _this._rowDecorationPainters = P.List_List$filled(_this._table$_rowDecorations.length, null, false, type$.nullable_BoxPainter); } for (t1 = _this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) J.detach$0$z(child); } }, visitChildren$1: function(visitor) { var t1, t2, _i, child; for (t1 = this._table$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child != null) visitor.call$1(child); } }, computeMinIntrinsicWidth$1: function(height) { var totalMinWidth, x, columnWidth, _this = this; for (totalMinWidth = 0, x = 0; x < _this._table$_columns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; totalMinWidth += columnWidth.minIntrinsicWidth$2(_this.column$1(x), 1 / 0); } return totalMinWidth; }, computeMaxIntrinsicWidth$1: function(height) { var totalMaxWidth, x, columnWidth, _this = this; for (totalMaxWidth = 0, x = 0; x < _this._table$_columns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; totalMaxWidth += columnWidth.maxIntrinsicWidth$2(_this.column$1(x), 1 / 0); } return totalMaxWidth; }, computeMinIntrinsicHeight$1: function(width) { var rowTop, y, rowHeight, x, t1, child, _this = this, widths = _this._computeColumnWidths$1(S.BoxConstraints$tightForFinite(1 / 0, width)); for (rowTop = 0, y = 0; y < _this._rows; ++y) { for (rowHeight = 0, x = 0; t1 = _this._table$_columns, x < t1; ++x) { child = _this._table$_children[x + y * t1]; if (child != null) rowHeight = Math.max(rowHeight, H.checkNum(child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, widths[x], child.get$computeMaxIntrinsicHeight()))); } rowTop += rowHeight; } return rowTop; }, computeMaxIntrinsicHeight$1: function(width) { return this.computeMinIntrinsicHeight$1(width); }, computeDistanceToActualBaseline$1: function(baseline) { return this._baselineDistance; }, column$1: function(x) { return this.column$body$RenderTable(x); }, column$body$RenderTable: function($async$x) { var $async$self = this; return P._makeSyncStarIterable(function() { var x = $async$x; var $async$goto = 0, $async$handler = 1, $async$currentError, y, t1, child; return function $async$column$1($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start y = 0; case 2: // for condition if (!(y < $async$self._rows)) { // goto after for $async$goto = 4; break; } t1 = $async$self._table$_columns; child = $async$self._table$_children[x + y * t1]; $async$goto = child != null ? 5 : 6; break; case 5: // then $async$goto = 7; return child; case 7: // after yield case 6: // join case 3: // for update ++y; // goto for condition $async$goto = 2; break; case 4: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderBox); }, _computeColumnWidths$1: function(constraints) { var tableWidth, unflexedTableWidth, totalFlex, x, availableColumns, columnWidth, columnCells, maxIntrinsicWidth, flex, maxWidthConstraint, minWidthConstraint, targetWidth, remainingWidth, flexedWidth, delta, deficit, availableColumns0, newTotalFlex, t2, newWidth, t3, newAvailableColumns, availableDelta, _this = this, t1 = type$.double, widths = P.List_List$filled(_this._table$_columns, 0, false, t1), minWidths = P.List_List$filled(_this._table$_columns, 0, false, t1), flexes = P.List_List$filled(_this._table$_columns, null, false, type$.nullable_double); for (tableWidth = 0, unflexedTableWidth = 0, totalFlex = 0, x = 0; availableColumns = _this._table$_columns, x < availableColumns; ++x) { columnWidth = _this._columnWidths.$index(0, x); if (columnWidth == null) columnWidth = _this._defaultColumnWidth; columnCells = _this.column$1(x); t1 = constraints.maxWidth; maxIntrinsicWidth = columnWidth.maxIntrinsicWidth$2(columnCells, t1); widths[x] = maxIntrinsicWidth; tableWidth += maxIntrinsicWidth; minWidths[x] = columnWidth.minIntrinsicWidth$2(columnCells, t1); flex = columnWidth.flex$1(0, columnCells); if (flex != null) { flexes[x] = flex; totalFlex += flex; } else unflexedTableWidth += maxIntrinsicWidth; } maxWidthConstraint = constraints.maxWidth; minWidthConstraint = constraints.minWidth; if (totalFlex > 0) { maxWidthConstraint.toString; if (isFinite(maxWidthConstraint)) targetWidth = maxWidthConstraint; else targetWidth = minWidthConstraint; if (tableWidth < targetWidth) { remainingWidth = targetWidth - unflexedTableWidth; for (x = 0; x < availableColumns; ++x) { t1 = flexes[x]; if (t1 != null) { flexedWidth = remainingWidth * t1 / totalFlex; t1 = widths[x]; if (t1 < flexedWidth) { tableWidth += flexedWidth - t1; widths[x] = flexedWidth; } } } } } else if (tableWidth < minWidthConstraint) { delta = (minWidthConstraint - tableWidth) / availableColumns; for (x = 0; x < availableColumns; ++x) widths[x] = widths[x] + delta; tableWidth = minWidthConstraint; } if (tableWidth > maxWidthConstraint) { deficit = tableWidth - maxWidthConstraint; availableColumns0 = availableColumns; while (true) { if (!(deficit > 1e-10 && totalFlex > 1e-10)) break; for (newTotalFlex = 0, x = 0; x < availableColumns; ++x) { t1 = flexes[x]; if (t1 != null) { t2 = widths[x]; newWidth = t2 - deficit * t1 / totalFlex; t3 = minWidths[x]; if (newWidth <= t3) { deficit -= t2 - t3; widths[x] = t3; flexes[x] = null; --availableColumns0; } else { deficit -= t2 - newWidth; widths[x] = newWidth; newTotalFlex += t1; } } } totalFlex = newTotalFlex; } while (true) { if (!(deficit > 1e-10 && availableColumns0 > 0)) break; delta = deficit / availableColumns0; for (newAvailableColumns = 0, x = 0; x < availableColumns; ++x) { t1 = widths[x]; t2 = minWidths[x]; availableDelta = t1 - t2; if (availableDelta > 0) if (availableDelta <= delta) { deficit -= availableDelta; widths[x] = t2; } else { deficit -= delta; widths[x] = t1 - delta; ++newAvailableColumns; } } availableColumns0 = newAvailableColumns; } } return widths; }, getRowBox$1: function(row) { var t1 = this._rowTops; return new P.Rect(0, t1[row], this._box$_size._dx, t1[row + 1]); }, computeDryLayout$1: function(constraints) { var widths, tableWidth, t1, rowTop, y, rowHeight, x, t2, child, _this = this; if (_this._rows * _this._table$_columns === 0) return constraints.constrain$1(C.Size_0_0); widths = _this._computeColumnWidths$1(constraints); tableWidth = C.JSArray_methods.fold$1$2(widths, 0, new S.RenderTable_computeDryLayout_closure(), type$.double); for (t1 = type$.TableCellParentData, rowTop = 0, y = 0; y < _this._rows; ++y) { for (rowHeight = 0, x = 0; t2 = _this._table$_columns, x < t2; ++x) { child = _this._table$_children[x + y * t2]; if (child != null) { t2 = child.parentData; t2.toString; t2 = t1._as(t2).verticalAlignment; switch (t2 == null ? _this._defaultVerticalAlignment : t2) { case C.TableCellVerticalAlignment_3: return C.Size_0_0; case C.TableCellVerticalAlignment_0: case C.TableCellVerticalAlignment_1: case C.TableCellVerticalAlignment_2: rowHeight = Math.max(rowHeight, H.checkNum(child.getDryLayout$1(S.BoxConstraints$tightFor(null, widths[x]))._dy)); break; case C.TableCellVerticalAlignment_4: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } } rowTop += rowHeight; } return constraints.constrain$1(new P.Size(tableWidth, rowTop)); }, performLayout$0: function() { var widths, t1, positions, x, t2, tableWidth, t3, rowTop, y, baselines, t4, rowHeight, haveBaseline, beforeBaselineDistance, afterBaselineDistance, child, t5, t6, childBaseline, rowTop0, t7, _this = this, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), rows = _this._rows, columns = _this._table$_columns; if (rows * columns === 0) { _this._box$_size = constraints.constrain$1(C.Size_0_0); return; } widths = _this._computeColumnWidths$1(constraints); t1 = type$.double; positions = P.List_List$filled(columns, 0, false, t1); switch (_this._table$_textDirection) { case C.TextDirection_0: positions[columns - 1] = 0; for (x = columns - 2; x >= 0; --x) { t2 = x + 1; positions[x] = positions[t2] + widths[t2]; } _this._columnLefts = new H.ReversedListIterable(positions, H._arrayInstanceType(positions)._eval$1("ReversedListIterable<1>")); tableWidth = C.JSArray_methods.get$first(positions) + C.JSArray_methods.get$first(widths); break; case C.TextDirection_1: positions[0] = 0; for (x = 1; x < columns; ++x) { t2 = x - 1; positions[x] = positions[t2] + widths[t2]; } _this._columnLefts = positions; tableWidth = C.JSArray_methods.get$last(positions) + C.JSArray_methods.get$last(widths); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t2 = _this._rowTops; C.JSArray_methods.set$length(t2, 0); _this._baselineDistance = null; for (t3 = type$.TableCellParentData, rowTop = 0, y = 0; y < rows; ++y, rowTop = rowTop0) { t2.push(rowTop); baselines = P.List_List$filled(columns, 0, false, t1); for (t4 = y * columns, rowHeight = 0, haveBaseline = false, beforeBaselineDistance = 0, afterBaselineDistance = 0, x = 0; x < columns; ++x) { child = _this._table$_children[x + t4]; if (child != null) { t5 = child.parentData; t5.toString; t3._as(t5); t5.x = x; t5.y = y; t6 = t5.verticalAlignment; switch (t6 == null ? _this._defaultVerticalAlignment : t6) { case C.TableCellVerticalAlignment_3: child.layout$2$parentUsesSize(0, S.BoxConstraints$tightFor(null, widths[x]), true); t6 = _this._table$_textBaseline; t6.toString; childBaseline = child.getDistanceToBaseline$2$onlyReal(t6, true); t6 = child._box$_size; if (childBaseline != null) { beforeBaselineDistance = Math.max(beforeBaselineDistance, childBaseline); afterBaselineDistance = Math.max(afterBaselineDistance, t6._dy - childBaseline); baselines[x] = childBaseline; haveBaseline = true; } else { rowHeight = Math.max(rowHeight, H.checkNum(t6._dy)); t5.offset = new P.Offset(positions[x], rowTop); } break; case C.TableCellVerticalAlignment_0: case C.TableCellVerticalAlignment_1: case C.TableCellVerticalAlignment_2: child.layout$2$parentUsesSize(0, S.BoxConstraints$tightFor(null, widths[x]), true); rowHeight = Math.max(rowHeight, H.checkNum(child._box$_size._dy)); break; case C.TableCellVerticalAlignment_4: break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } } if (haveBaseline) { if (y === 0) _this._baselineDistance = beforeBaselineDistance; rowHeight = Math.max(rowHeight, beforeBaselineDistance + afterBaselineDistance); } for (rowTop0 = rowTop + rowHeight, t5 = rowTop + beforeBaselineDistance, x = 0; x < columns; ++x) { child = _this._table$_children[x + t4]; if (child != null) { t6 = child.parentData; t6.toString; t3._as(t6); t7 = t6.verticalAlignment; switch (t7 == null ? _this._defaultVerticalAlignment : t7) { case C.TableCellVerticalAlignment_3: t6.offset = new P.Offset(positions[x], t5 - baselines[x]); break; case C.TableCellVerticalAlignment_0: t6.offset = new P.Offset(positions[x], rowTop); break; case C.TableCellVerticalAlignment_1: t6.offset = new P.Offset(positions[x], rowTop + (rowHeight - child._box$_size._dy) / 2); break; case C.TableCellVerticalAlignment_2: t6.offset = new P.Offset(positions[x], rowTop0 - child._box$_size._dy); break; case C.TableCellVerticalAlignment_4: child.layout$1(0, S.BoxConstraints$tightFor(rowHeight, widths[x])); t6.offset = new P.Offset(positions[x], rowTop); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } } } t2.push(rowTop); _this._box$_size = constraints.constrain$1(new P.Size(tableWidth, rowTop)); }, hitTestChildren$2$position: function(result, position) { var index, t1, child, t2; for (index = this._table$_children.length - 1, t1 = type$.BoxParentData; index >= 0; --index) { child = this._table$_children[index]; if (child != null) { t2 = child.parentData; t2.toString; t1._as(t2); if (result.addWithPaintOffset$3$hitTest$offset$position(new S.RenderTable_hitTestChildren_closure(position, t2, child), t2.offset, position)) return true; } } return false; }, paint$2: function(context, offset) { var canvas, t1, t2, t3, t4, y, t5, t6, index, child, _this = this; if (_this._rows * _this._table$_columns === 0) return; if (_this._table$_rowDecorations != null) { canvas = context.get$canvas(context); for (t1 = offset._dx, t2 = offset._dy, t3 = _this._rowTops, t4 = _this.get$markNeedsPaint(), y = 0; y < _this._rows; ++y) { t5 = _this._table$_rowDecorations; if (t5.length <= y) break; t5 = t5[y]; if (t5 != null) { t6 = _this._rowDecorationPainters; if (t6[y] == null) t6[y] = t5.createBoxPainter$1(t4); t5 = _this._rowDecorationPainters[y]; t5.toString; t6 = t3[y]; t5.paint$3(canvas, new P.Offset(t1, t2 + t6), _this._table$_configuration.copyWith$1$size(new P.Size(_this._box$_size._dx, t3[y + 1] - t6))); } } } for (t1 = type$.BoxParentData, t2 = offset._dx, t3 = offset._dy, index = 0; t4 = _this._table$_children, index < t4.length; ++index) { child = t4[index]; if (child != null) { t4 = child.parentData; t4.toString; t4 = t1._as(t4).offset; context.paintChild$2(child, new P.Offset(t4._dx + t2, t4._dy + t3)); } } }, debugDescribeChildren$0: function() { var children, t1, y, x, t2, child, $name, _this = this, _null = null; if (_this._table$_children.length === 0) return H.setRuntimeTypeInfo([Y.DiagnosticsNode_DiagnosticsNode$message("table is empty", true, C.DiagnosticsTreeStyle_8)], type$.JSArray_DiagnosticsNode); children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); for (t1 = type$.DiagnosticsProperty_Object, y = 0; y < _this._rows; ++y) for (x = 0; t2 = _this._table$_columns, x < t2; ++x) { child = _this._table$_children[x + y * t2]; $name = "child (" + x + ", " + y + ")"; if (child != null) children.push(new Y.DiagnosticableTreeNode(child, $name, true, true, _null, _null)); else children.push(new Y.DiagnosticsProperty(_null, false, true, "is null", _null, _null, false, _null, true, C.C__NoDefaultValue, C.DiagnosticLevel_3, _null, $name, false, true, _null, C.DiagnosticsTreeStyle_8, t1)); } return children; } }; S.RenderTable_computeDryLayout_closure.prototype = { call$2: function(a, b) { return a + b; }, $signature: 293 }; S.RenderTable_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { transformed.toString; return this.child.hitTest$2$position(result, transformed); }, $signature: 96 }; S.AlignmentGeometryTween.prototype = { lerp$1: function(t) { return K.AlignmentGeometry_lerp(this.begin, this.end, t); } }; A.ViewConfiguration0.prototype = { toString$0: function(_) { return this.size.toString$0(0) + " at " + E.debugFormatDouble(this.devicePixelRatio) + "x"; } }; A.RenderView.prototype = { set$configuration: function(value) { var t1, _this = this; if (_this._view$_configuration === value) return; _this._view$_configuration = value; t1 = _this._updateMatricesAndCreateNewRootLayer$0(); _this._layer.detach$0(0); _this._layer = t1; _this.markNeedsPaint$0(); _this.markNeedsLayout$0(); }, _updateMatricesAndCreateNewRootLayer$0: function() { var rootLayer, t1 = this._view$_configuration.devicePixelRatio; t1 = E.Matrix4_Matrix4$diagonal3Values(t1, t1, 1); this._rootTransform = t1; rootLayer = new T.TransformLayer(t1, C.Offset_0_0); rootLayer.attach$1(this); return rootLayer; }, performResize$0: function() { }, performLayout$0: function() { var t2, t1 = this._view$_configuration.size; this._view$_size = t1; t2 = this.RenderObjectWithChildMixin__child; if (t2 != null) t2.layout$1(0, S.BoxConstraints$tight(t1)); }, hitTest$2$position: function(result, position) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.hitTest$2$position(S.BoxHitTestResult$wrap(result), position); t1 = new O.HitTestEntry(this); result._globalizeTransforms$0(); t1._transform = C.JSArray_methods.get$last(result._transforms); result._hit_test$_path.push(t1); return true; }, hitTestMouseTrackers$1: function(position) { var result, t1 = H.setRuntimeTypeInfo([], type$.JSArray_HitTestEntry), t2 = new E.Matrix4(new Float64Array(16)); t2.setIdentity$0(); result = new S.BoxHitTestResult(t1, H.setRuntimeTypeInfo([t2], type$.JSArray_Matrix4), H.setRuntimeTypeInfo([], type$.JSArray__TransformPart)); this.hitTest$2$position(result, position); return result; }, get$isRepaintBoundary: function() { return true; }, paint$2: function(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); }, applyPaintTransform$2: function(child, transform) { var t1 = this._rootTransform; t1.toString; transform.multiply$1(0, t1); this.super$RenderObject$applyPaintTransform(child, transform); }, compositeFrame$0: function() { var builder, scene, bounds, t1, t2, t3, upperOverlayStyle, lowerOverlayStyle, t4, t5, t6, _this = this, _null = null; P.Timeline_startSync("Compositing", C.Map_9aZ6I, _null); try { builder = P.SceneBuilder_SceneBuilder(); scene = _this._layer.buildScene$1(builder); if (_this.automaticSystemUiAdjustment) { bounds = _this.get$paintBounds(); t1 = bounds.get$center(); t2 = _this._view$_window; t2.get$viewConfiguration(); t3 = bounds.get$center(); t2.get$viewConfiguration(); t2 = type$.SystemUiOverlayStyle; upperOverlayStyle = _this._layer.find$1$1(0, new P.Offset(t1._dx, 0), t2); switch (U.defaultTargetPlatform()) { case C.TargetPlatform_0: lowerOverlayStyle = _this._layer.find$1$1(0, new P.Offset(t3._dx, bounds.bottom - 1 - 0), t2); break; case C.TargetPlatform_1: case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: lowerOverlayStyle = _null; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); lowerOverlayStyle = _null; } t1 = upperOverlayStyle == null; if (!t1 || lowerOverlayStyle != null) { t2 = t1 ? _null : upperOverlayStyle.statusBarBrightness; t3 = t1 ? _null : upperOverlayStyle.statusBarIconBrightness; t1 = t1 ? _null : upperOverlayStyle.statusBarColor; t4 = lowerOverlayStyle == null; t5 = t4 ? _null : lowerOverlayStyle.systemNavigationBarColor; t6 = t4 ? _null : lowerOverlayStyle.systemNavigationBarDividerColor; X.SystemChrome_setSystemUIOverlayStyle(new X.SystemUiOverlayStyle(t5, t6, t4 ? _null : lowerOverlayStyle.systemNavigationBarIconBrightness, t1, t2, t3)); } } t1 = _this._view$_window; t1.platformDispatcher.render$2(0, scene, t1); J.dispose$0$x(scene); } finally { P.Timeline_finishSync(); } }, get$paintBounds: function() { var t1 = this._view$_size.$mul(0, this._view$_configuration.devicePixelRatio); return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, get$semanticBounds: function() { var t2, t1 = this._rootTransform; t1.toString; t2 = this._view$_size; return T.MatrixUtils_transformRect(t1, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); } }; A._RenderView_RenderObject_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; Q.CacheExtentStyle.prototype = { toString$0: function(_) { return this._viewport$_name; } }; Q.RevealedOffset.prototype = { toString$0: function(_) { return "RevealedOffset(offset: " + H.S(this.offset) + ", rect: " + H.S(this.rect) + ")"; } }; Q.RenderViewportBase.prototype = { describeSemanticsConfiguration$1: function(config) { this.super$RenderObject$describeSemanticsConfiguration(config); config.addTagForChildren$1(C.SemanticsTag_FIw); }, visitChildrenForSemantics$1: function(visitor) { var t1 = this.get$childrenInPaintOrder(); t1.toString; new H.WhereIterable(t1, new Q.RenderViewportBase_visitChildrenForSemantics_closure(), t1.$ti._eval$1("WhereIterable")).forEach$1(0, visitor); }, set$axisDirection: function(value) { if (value === this._viewport$_axisDirection) return; this._viewport$_axisDirection = value; this.markNeedsLayout$0(); }, set$crossAxisDirection: function(value) { if (value === this._crossAxisDirection) return; this._crossAxisDirection = value; this.markNeedsLayout$0(); }, set$offset: function(_, value) { var _this = this, t1 = _this._viewport$_offset; if (value == t1) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$markNeedsLayout()); _this._viewport$_offset = value; if (_this._node$_owner != null) { t1 = value.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$markNeedsLayout()), false); } _this.markNeedsLayout$0(); }, set$cacheExtent: function(value) { if (value == null) value = 250; if (value === this._cacheExtent) return; this._cacheExtent = value; this.markNeedsLayout$0(); }, set$cacheExtentStyle: function(value) { if (value === this._cacheExtentStyle) return; this._cacheExtentStyle = value; this.markNeedsLayout$0(); }, set$clipBehavior: function(value) { var _this = this; if (value !== _this._viewport$_clipBehavior) { _this._viewport$_clipBehavior = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); } }, attach$1: function(owner) { var t1; this.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$attach(owner); t1 = this._viewport$_offset.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$markNeedsLayout()), false); }, detach$0: function(_) { this._viewport$_offset.removeListener$1(0, this.get$markNeedsLayout()); this.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$detach(0); }, computeMinIntrinsicWidth$1: function(height) { return 0; }, computeMaxIntrinsicWidth$1: function(height) { return 0; }, computeMinIntrinsicHeight$1: function(width) { return 0; }, computeMaxIntrinsicHeight$1: function(width) { return 0; }, get$isRepaintBoundary: function() { return true; }, layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset: function(advance, cacheOrigin, child, crossAxisExtent, growthDirection, layoutOffset, mainAxisExtent, overlap, remainingCacheExtent, remainingPaintExtent, scrollOffset) { var layoutOffset0, precedingScrollExtent, sliverScrollOffset, correctedCacheOrigin, cacheExtentCorrection, childLayoutGeometry, t1, effectiveLayoutOffset, _this = this, adjustedUserScrollDirection = G.applyGrowthDirectionToScrollDirection(_this._viewport$_offset._userScrollDirection, growthDirection), maxPaintOffset = layoutOffset + overlap; for (layoutOffset0 = layoutOffset, precedingScrollExtent = 0; child != null;) { sliverScrollOffset = scrollOffset <= 0 ? 0 : scrollOffset; correctedCacheOrigin = Math.max(cacheOrigin, -sliverScrollOffset); cacheExtentCorrection = cacheOrigin - correctedCacheOrigin; child.layout$2$parentUsesSize(0, new G.SliverConstraints(_this._viewport$_axisDirection, growthDirection, adjustedUserScrollDirection, sliverScrollOffset, precedingScrollExtent, maxPaintOffset - layoutOffset0, Math.max(0, remainingPaintExtent - layoutOffset0 + layoutOffset), crossAxisExtent, _this._crossAxisDirection, mainAxisExtent, correctedCacheOrigin, Math.max(0, remainingCacheExtent + cacheExtentCorrection)), true); childLayoutGeometry = child._geometry; t1 = childLayoutGeometry.scrollOffsetCorrection; if (t1 != null) return t1; effectiveLayoutOffset = layoutOffset0 + childLayoutGeometry.paintOrigin; if (childLayoutGeometry.visible || scrollOffset > 0) _this.updateChildLayoutOffset$3(child, effectiveLayoutOffset, growthDirection); else _this.updateChildLayoutOffset$3(child, -scrollOffset + layoutOffset, growthDirection); maxPaintOffset = Math.max(effectiveLayoutOffset + childLayoutGeometry.paintExtent, maxPaintOffset); t1 = childLayoutGeometry.scrollExtent; scrollOffset -= t1; precedingScrollExtent += t1; layoutOffset0 += childLayoutGeometry.layoutExtent; t1 = childLayoutGeometry.cacheExtent; if (t1 !== 0) { remainingCacheExtent -= t1 - cacheExtentCorrection; cacheOrigin = Math.min(correctedCacheOrigin + t1, 0); } _this.updateOutOfBandData$2(growthDirection, childLayoutGeometry); child = advance.call$1(child); } return 0; }, describeApproximatePaintClip$1: function(child) { var t2, overlapCorrection, $top, left, t1 = this._box$_size, right = 0 + t1._dx, bottom = 0 + t1._dy; child.toString; t1 = type$.SliverConstraints; if (t1._as(K.RenderObject.prototype.get$constraints.call(child)).overlap !== 0) { t2 = t1._as(K.RenderObject.prototype.get$constraints.call(child)).viewportMainAxisExtent; t2.toString; t2 = !isFinite(t2); } else t2 = true; if (t2) return new P.Rect(0, 0, right, bottom); overlapCorrection = t1._as(K.RenderObject.prototype.get$constraints.call(child)).viewportMainAxisExtent - t1._as(K.RenderObject.prototype.get$constraints.call(child)).remainingPaintExtent + t1._as(K.RenderObject.prototype.get$constraints.call(child)).overlap; switch (G.applyGrowthDirectionToAxisDirection(this._viewport$_axisDirection, t1._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection)) { case C.AxisDirection_2: $top = 0 + overlapCorrection; left = 0; break; case C.AxisDirection_0: bottom -= overlapCorrection; left = 0; $top = 0; break; case C.AxisDirection_1: left = 0 + overlapCorrection; $top = 0; break; case C.AxisDirection_3: right -= overlapCorrection; left = 0; $top = 0; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return new P.Rect(left, $top, right, bottom); }, describeSemanticsClip$1: function(child) { var t2, _this = this, t1 = _this._calculatedCacheExtent; if (t1 == null) { t1 = _this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: t2 = _this._box$_size; return new P.Rect(0, 0 - t1, 0 + t2._dx, 0 + t2._dy + t1); case C.Axis_0: t2 = _this._box$_size; return new P.Rect(0 - t1, 0, 0 + t2._dx + t1, 0 + t2._dy); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this.ContainerRenderObjectMixin__firstChild == null) return; if (_this.get$hasVisualOverflow() && _this._viewport$_clipBehavior !== C.Clip_0) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._viewport$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$_paintContents(), _this._viewport$_clipBehavior, _this._viewport$_clipRectLayer); } else { _this._viewport$_clipRectLayer = null; _this._paintContents$2(context, offset); } }, _paintContents$2: function(context, offset) { var t1, t2, t3, t4, t5; for (t1 = this.get$childrenInPaintOrder(), t1 = new P._SyncStarIterator(t1._outerHelper(), H._instanceType(t1)._eval$1("_SyncStarIterator<1>")), t2 = offset._dx, t3 = offset._dy; t1.moveNext$0();) { t4 = t1.get$current(t1); if (t4._geometry.visible) { t5 = this.paintOffsetOf$1(t4); context.paintChild$2(t4, new P.Offset(t2 + t5._dx, t3 + t5._dy)); } } }, hitTestChildren$2$position: function(result, position) { var sliverResult, t1, t2, transform, _this = this, _box_0 = {}; _box_0.crossAxisPosition = _box_0.mainAxisPosition = null; switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: _box_0.mainAxisPosition = position._dy; _box_0.crossAxisPosition = position._dx; break; case C.Axis_0: _box_0.mainAxisPosition = position._dx; _box_0.crossAxisPosition = position._dy; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } sliverResult = new G.SliverHitTestResult(result._hit_test$_path, result._transforms, result._localTransforms); for (t1 = _this.get$childrenInHitTestOrder(), t1 = new P._SyncStarIterator(t1._outerHelper(), H._instanceType(t1)._eval$1("_SyncStarIterator<1>")); t1.moveNext$0();) { t2 = t1.get$current(t1); if (!t2._geometry.visible) continue; transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); _this.applyPaintTransform$2(t2, transform); if (result.addWithOutOfBandPosition$2$hitTest$paintTransform(new Q.RenderViewportBase_hitTestChildren_closure(_box_0, _this, t2, sliverResult), transform)) return true; } return false; }, getOffsetToReveal$3$rect: function(target, alignment, rect) { var t1, child, leadingScrollOffset, pivot, t2, t3, growthDirection, pivotExtent, rectLocal, targetMainAxisExtent, isPinned, targetRect, extentOfPinnedSlivers, mainAxisExtent, targetOffset, offsetDifference, _this = this, _s80_ = string$.x60null_c, onlySlivers = target instanceof G.RenderSliver; for (t1 = type$.RenderObject, child = target, leadingScrollOffset = 0, pivot = null; child.get$parent(child) !== _this; child = t2) { t2 = child.get$parent(child); t2.toString; t1._as(t2); if (child instanceof S.RenderBox) pivot = child; if (t2 instanceof G.RenderSliver) { t3 = t2.childScrollOffset$1(child); t3.toString; leadingScrollOffset += t3; } else { leadingScrollOffset = 0; onlySlivers = false; } } if (pivot != null) { t1 = pivot.get$parent(pivot); t1.toString; type$.RenderSliver._as(t1); growthDirection = type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(t1)).growthDirection; switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_0: pivotExtent = pivot._box$_size._dx; break; case C.Axis_1: pivotExtent = pivot._box$_size._dy; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (rect == null) rect = target.get$paintBounds(); rectLocal = T.MatrixUtils_transformRect(target.getTransformTo$1(0, pivot), rect); } else { if (onlySlivers) { type$.RenderSliver._as(target); target.toString; t1 = type$.SliverConstraints; growthDirection = t1._as(K.RenderObject.prototype.get$constraints.call(target)).growthDirection; pivotExtent = target._geometry.scrollExtent; if (rect == null) switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_0: rect = new P.Rect(0, 0, 0 + pivotExtent, 0 + t1._as(K.RenderObject.prototype.get$constraints.call(target)).crossAxisExtent); break; case C.Axis_1: rect = new P.Rect(0, 0, 0 + t1._as(K.RenderObject.prototype.get$constraints.call(target)).crossAxisExtent, 0 + target._geometry.scrollExtent); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } else { t1 = _this._viewport$_offset._pixels; t1.toString; rect.toString; return new Q.RevealedOffset(t1, rect); } rectLocal = rect; } type$.RenderSliver._as(child); switch (G.applyGrowthDirectionToAxisDirection(_this._viewport$_axisDirection, growthDirection)) { case C.AxisDirection_0: t1 = rectLocal.bottom; leadingScrollOffset += pivotExtent - t1; targetMainAxisExtent = t1 - rectLocal.top; break; case C.AxisDirection_1: t1 = rectLocal.left; leadingScrollOffset += t1; targetMainAxisExtent = rectLocal.right - t1; break; case C.AxisDirection_2: t1 = rectLocal.top; leadingScrollOffset += t1; targetMainAxisExtent = rectLocal.bottom - t1; break; case C.AxisDirection_3: t1 = rectLocal.right; leadingScrollOffset += pivotExtent - t1; targetMainAxisExtent = t1 - rectLocal.left; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } isPinned = child._geometry.maxScrollObstructionExtent > 0 && leadingScrollOffset >= 0; leadingScrollOffset = _this.scrollOffsetOf$2(child, leadingScrollOffset); targetRect = T.MatrixUtils_transformRect(target.getTransformTo$1(0, _this), rect); extentOfPinnedSlivers = _this.maxScrollObstructionExtentBefore$1(child); switch (type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection) { case C.GrowthDirection_0: if (isPinned && alignment <= 0) return new Q.RevealedOffset(1 / 0, targetRect); leadingScrollOffset -= extentOfPinnedSlivers; break; case C.GrowthDirection_1: if (isPinned && alignment >= 1) return new Q.RevealedOffset(-1 / 0, targetRect); switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: leadingScrollOffset -= targetRect.bottom - targetRect.top; break; case C.Axis_0: leadingScrollOffset -= targetRect.right - targetRect.left; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this._viewport$_axisDirection; switch (G.axisDirectionToAxis(t1)) { case C.Axis_0: mainAxisExtent = _this._box$_size._dx - extentOfPinnedSlivers; break; case C.Axis_1: mainAxisExtent = _this._box$_size._dy - extentOfPinnedSlivers; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } targetOffset = leadingScrollOffset - (mainAxisExtent - targetMainAxisExtent) * alignment; t2 = _this._viewport$_offset._pixels; t2.toString; offsetDifference = t2 - targetOffset; switch (t1) { case C.AxisDirection_2: targetRect = targetRect.translate$2(0, 0, offsetDifference); break; case C.AxisDirection_1: targetRect = targetRect.translate$2(0, offsetDifference, 0); break; case C.AxisDirection_0: targetRect = targetRect.translate$2(0, 0, -offsetDifference); break; case C.AxisDirection_3: targetRect = targetRect.translate$2(0, -offsetDifference, 0); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return new Q.RevealedOffset(targetOffset, targetRect); }, computeAbsolutePaintOffset$3: function(child, layoutOffset, growthDirection) { switch (G.applyGrowthDirectionToAxisDirection(this._viewport$_axisDirection, growthDirection)) { case C.AxisDirection_0: return new P.Offset(0, this._box$_size._dy - (layoutOffset + child._geometry.paintExtent)); case C.AxisDirection_1: return new P.Offset(layoutOffset, 0); case C.AxisDirection_2: return new P.Offset(0, layoutOffset); case C.AxisDirection_3: return new P.Offset(this._box$_size._dx - (layoutOffset + child._geometry.paintExtent), 0); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, debugDescribeChildren$0: function() { var count, t1, t2, _this = this, children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode), child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return children; count = _this.get$indexOfFirstChild(); for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); true;) { child.toString; children.push(new Y.DiagnosticableTreeNode(child, _this.labelForChild$1(count), true, true, null, null)); if (child === _this.ContainerRenderObjectMixin__lastChild) break; ++count; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return children; }, showOnScreen$4$curve$descendant$duration$rect: function(curve, descendant, duration, rect) { var _this = this; if (!_this._viewport$_offset.physics.get$allowImplicitScrolling()) return _this.super$RenderObject$showOnScreen(curve, descendant, duration, rect); _this.super$RenderObject$showOnScreen(curve, null, duration, Q.RenderViewportBase_showInViewport(curve, descendant, duration, _this._viewport$_offset, rect, _this)); }, showOnScreen$0: function() { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, null); }, showOnScreen$1$rect: function(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, rect); }, showOnScreen$3$curve$duration$rect: function(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, $isRenderAbstractViewport: 1 }; Q.RenderViewportBase_visitChildrenForSemantics_closure.prototype = { call$1: function(sliver) { var t1 = sliver._geometry; return t1.visible || t1.cacheExtent > 0; }, $signature: 2542 }; Q.RenderViewportBase_hitTestChildren_closure.prototype = { call$1: function(result) { var _this = this, t1 = _this.child, t2 = _this._box_0, t3 = _this.$this.computeChildMainAxisPosition$2(t1, t2.mainAxisPosition); return t1.hitTest$3$crossAxisPosition$mainAxisPosition(_this.sliverResult, t2.crossAxisPosition, t3); }, $signature: 679 }; Q.RenderViewport.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof G.SliverPhysicalContainerParentData)) child.parentData = new G.SliverPhysicalContainerParentData(null, null, C.Offset_0_0); }, set$anchor: function(value) { if (value === this._anchor) return; this._anchor = value; this.markNeedsLayout$0(); }, set$center: function(value) { if (value == this._viewport$_center) return; this._viewport$_center = value; this.markNeedsLayout$0(); }, get$sizedByParent: function() { return true; }, computeDryLayout$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, get$_viewport$_minScrollExtent: function() { var t1 = this.__RenderViewport__minScrollExtent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_minScrollExtent")) : t1; }, get$_viewport$_maxScrollExtent: function() { var t1 = this.__RenderViewport__maxScrollExtent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_maxScrollExtent")) : t1; }, performLayout$0: function() { var t1, mainAxisExtent, crossAxisExtent, t2, correction, count, _this = this, _s80_ = string$.x60null_c; switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: _this._viewport$_offset.applyViewportDimension$1(_this._box$_size._dy); break; case C.Axis_0: _this._viewport$_offset.applyViewportDimension$1(_this._box$_size._dx); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (_this._viewport$_center == null) { _this.__RenderViewport__maxScrollExtent = _this.__RenderViewport__minScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; _this._viewport$_offset.applyContentDimensions$2(0, 0); return; } switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: t1 = _this._box$_size; mainAxisExtent = t1._dy; crossAxisExtent = t1._dx; break; case C.Axis_0: t1 = _this._box$_size; mainAxisExtent = t1._dx; crossAxisExtent = t1._dy; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = 0; do { t2 = _this._viewport$_offset._pixels; t2.toString; correction = _this._attemptLayout$3(mainAxisExtent, crossAxisExtent, t2 + 0); if (correction !== 0) _this._viewport$_offset.correctBy$1(correction); else if (_this._viewport$_offset.applyContentDimensions$2(Math.min(0, _this.get$_viewport$_minScrollExtent() + mainAxisExtent * _this._anchor), Math.max(0, _this.get$_viewport$_maxScrollExtent() - mainAxisExtent * (1 - _this._anchor)))) break; count = t1 + 1; if (count < 10) { t1 = count; continue; } else break; } while (true); }, _attemptLayout$3: function(mainAxisExtent, crossAxisExtent, correctedOffset) { var centerOffset, reverseDirectionRemainingPaintExtent, t1, forwardDirectionRemainingPaintExtent, t2, fullCacheExtent, centerCacheOffset, reverseDirectionRemainingCacheExtent, forwardDirectionRemainingCacheExtent, leadingNegativeChild, t3, t4, result, t5, _this = this; _this.__RenderViewport__maxScrollExtent = _this.__RenderViewport__minScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; centerOffset = mainAxisExtent * _this._anchor - correctedOffset; reverseDirectionRemainingPaintExtent = C.JSNumber_methods.clamp$2(centerOffset, 0, mainAxisExtent); t1 = mainAxisExtent - centerOffset; forwardDirectionRemainingPaintExtent = C.JSNumber_methods.clamp$2(t1, 0, mainAxisExtent); switch (_this._cacheExtentStyle) { case C.CacheExtentStyle_0: t2 = _this._calculatedCacheExtent = _this._cacheExtent; break; case C.CacheExtentStyle_1: t2 = _this._calculatedCacheExtent = mainAxisExtent * _this._cacheExtent; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } fullCacheExtent = mainAxisExtent + 2 * t2; centerCacheOffset = centerOffset + t2; reverseDirectionRemainingCacheExtent = C.JSNumber_methods.clamp$2(centerCacheOffset, 0, fullCacheExtent); forwardDirectionRemainingCacheExtent = C.JSNumber_methods.clamp$2(fullCacheExtent - centerCacheOffset, 0, fullCacheExtent); t2 = _this._viewport$_center.parentData; t2.toString; leadingNegativeChild = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1")._as(t2).ContainerParentDataMixin_previousSibling; t2 = leadingNegativeChild == null; if (!t2) { t3 = Math.max(mainAxisExtent, centerOffset); t4 = _this._calculatedCacheExtent; t4.toString; result = _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(_this.get$childBefore(), C.JSNumber_methods.clamp$2(t1, -t4, 0), leadingNegativeChild, crossAxisExtent, C.GrowthDirection_1, forwardDirectionRemainingPaintExtent, mainAxisExtent, 0, reverseDirectionRemainingCacheExtent, reverseDirectionRemainingPaintExtent, t3 - mainAxisExtent); if (result !== 0) return -result; } t1 = _this._viewport$_center; t3 = -centerOffset; t4 = Math.max(0, t3); t2 = t2 ? Math.min(0, t3) : 0; t3 = centerOffset >= mainAxisExtent ? centerOffset : reverseDirectionRemainingPaintExtent; t5 = _this._calculatedCacheExtent; t5.toString; return _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(_this.get$childAfter(), C.JSNumber_methods.clamp$2(centerOffset, -t5, 0), t1, crossAxisExtent, C.GrowthDirection_0, t3, mainAxisExtent, t2, forwardDirectionRemainingCacheExtent, forwardDirectionRemainingPaintExtent, t4); }, get$hasVisualOverflow: function() { return this._viewport$_hasVisualOverflow; }, updateOutOfBandData$2: function(growthDirection, childLayoutGeometry) { var _this = this; switch (growthDirection) { case C.GrowthDirection_0: _this.__RenderViewport__maxScrollExtent = _this.get$_viewport$_maxScrollExtent() + childLayoutGeometry.scrollExtent; break; case C.GrowthDirection_1: _this.__RenderViewport__minScrollExtent = _this.get$_viewport$_minScrollExtent() - childLayoutGeometry.scrollExtent; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (childLayoutGeometry.hasVisualOverflow) _this._viewport$_hasVisualOverflow = true; }, updateChildLayoutOffset$3: function(child, layoutOffset, growthDirection) { var t1 = child.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1).paintOffset = this.computeAbsolutePaintOffset$3(child, layoutOffset, growthDirection); }, paintOffsetOf$1: function(child) { var t1 = child.parentData; t1.toString; return type$.SliverPhysicalParentData._as(t1).paintOffset; }, scrollOffsetOf$2: function(child, scrollOffsetWithinChild) { var current, t1, scrollOffsetToChild, t2, _this = this; switch (type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection) { case C.GrowthDirection_0: current = _this._viewport$_center; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild += current._geometry.scrollExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return scrollOffsetToChild + scrollOffsetWithinChild; case C.GrowthDirection_1: t1 = _this._viewport$_center.parentData; t1.toString; t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); current = t2._as(t1).ContainerParentDataMixin_previousSibling; for (scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild -= current._geometry.scrollExtent; t1 = current.parentData; t1.toString; current = t2._as(t1).ContainerParentDataMixin_previousSibling; } return scrollOffsetToChild - scrollOffsetWithinChild; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, maxScrollObstructionExtentBefore$1: function(child) { var current, t1, pinnedExtent, t2, _this = this; switch (type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection) { case C.GrowthDirection_0: current = _this._viewport$_center; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return pinnedExtent; case C.GrowthDirection_1: t1 = _this._viewport$_center.parentData; t1.toString; t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"); current = t2._as(t1).ContainerParentDataMixin_previousSibling; for (pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t1 = current.parentData; t1.toString; current = t2._as(t1).ContainerParentDataMixin_previousSibling; } return pinnedExtent; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, applyPaintTransform$2: function(child, transform) { var t1 = child.parentData; t1.toString; t1 = type$.SliverPhysicalParentData._as(t1).paintOffset; transform.translate$2(0, t1._dx, t1._dy); }, computeChildMainAxisPosition$2: function(child, parentMainAxisPosition) { var t2, t1 = child.parentData; t1.toString; type$.SliverPhysicalParentData._as(t1); t2 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t2._as(K.RenderObject.prototype.get$constraints.call(child)).axisDirection, t2._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection)) { case C.AxisDirection_2: return parentMainAxisPosition - t1.paintOffset._dy; case C.AxisDirection_1: return parentMainAxisPosition - t1.paintOffset._dx; case C.AxisDirection_0: return child._geometry.paintExtent - (parentMainAxisPosition - t1.paintOffset._dy); case C.AxisDirection_3: return child._geometry.paintExtent - (parentMainAxisPosition - t1.paintOffset._dx); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$indexOfFirstChild: function() { var t1, t2, count, t3, child = this._viewport$_center; for (t1 = this.ContainerRenderObjectMixin__firstChild, t2 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), count = 0; child != t1;) { --count; t3 = child.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_previousSibling; } return count; }, labelForChild$1: function(index) { if (index === 0) return "center child"; return "child " + index; }, get$childrenInPaintOrder: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 2, $async$currentError, t1, t2, child; return function $async$get$childrenInPaintOrder($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start child = $async$self.ContainerRenderObjectMixin__firstChild; if (child == null) { // goto return $async$goto = 1; break; } t1 = H._instanceType($async$self)._eval$1("ContainerRenderObjectMixin.1"); case 3: // for condition if (!(child != $async$self._viewport$_center)) { // goto after for $async$goto = 4; break; } child.toString; $async$goto = 5; return child; case 5: // after yield t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; // goto for condition $async$goto = 3; break; case 4: // after for child = $async$self.ContainerRenderObjectMixin__lastChild; case 6: // for condition // trivial condition child.toString; $async$goto = 8; return child; case 8: // after yield if (child === $async$self._viewport$_center) { // goto return $async$goto = 1; break; } t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; // goto for condition $async$goto = 6; break; case 7: // after for case 1: // return return P._IterationMarker_endOfIteration(); case 2: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderSliver); }, get$childrenInHitTestOrder: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 2, $async$currentError, child, t1, t2; return function $async$get$childrenInHitTestOrder($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start if ($async$self.ContainerRenderObjectMixin__firstChild == null) { // goto return $async$goto = 1; break; } child = $async$self._viewport$_center; t1 = H._instanceType($async$self)._eval$1("ContainerRenderObjectMixin.1"); case 3: // for condition if (!(child != null)) { // goto after for $async$goto = 4; break; } $async$goto = 5; return child; case 5: // after yield t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; // goto for condition $async$goto = 3; break; case 4: // after for t2 = $async$self._viewport$_center.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; case 6: // for condition if (!(child != null)) { // goto after for $async$goto = 7; break; } $async$goto = 8; return child; case 8: // after yield t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; // goto for condition $async$goto = 6; break; case 7: // after for case 1: // return return P._IterationMarker_endOfIteration(); case 2: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderSliver); } }; Q.RenderShrinkWrappingViewport.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof G.SliverLogicalContainerParentData)) child.parentData = new G.SliverLogicalContainerParentData(null, null); }, get$_viewport$_maxScrollExtent: function() { var t1 = this.__RenderShrinkWrappingViewport__maxScrollExtent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_maxScrollExtent")) : t1; }, get$_shrinkWrapExtent: function() { var t1 = this.__RenderShrinkWrappingViewport__shrinkWrapExtent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_shrinkWrapExtent")) : t1; }, performLayout$0: function() { var mainAxisExtent, crossAxisExtent, t1, effectiveExtent, t2, t3, t4, t5, t6, correction, didAcceptViewportDimension, didAcceptContentDimension, _this = this, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); if (_this.ContainerRenderObjectMixin__firstChild == null) { switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: _this._box$_size = new P.Size(constraints.maxWidth, constraints.minHeight); break; case C.Axis_0: _this._box$_size = new P.Size(constraints.minWidth, constraints.maxHeight); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this._viewport$_offset.applyViewportDimension$1(0); _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = _this.__RenderShrinkWrappingViewport__maxScrollExtent = 0; _this._viewport$_hasVisualOverflow = false; _this._viewport$_offset.applyContentDimensions$2(0, 0); return; } switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: mainAxisExtent = constraints.maxHeight; crossAxisExtent = constraints.maxWidth; break; case C.Axis_0: mainAxisExtent = constraints.maxWidth; crossAxisExtent = constraints.maxHeight; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = _this.get$childAfter(); effectiveExtent = null; do { t2 = _this._viewport$_offset._pixels; t2.toString; _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = _this.__RenderShrinkWrappingViewport__maxScrollExtent = 0; t3 = _this._viewport$_hasVisualOverflow = false; t4 = _this.ContainerRenderObjectMixin__firstChild; t5 = Math.max(0, t2); t2 = Math.min(0, t2); t6 = _this._cacheExtent; correction = _this.layoutChildSequence$11$advance$cacheOrigin$child$crossAxisExtent$growthDirection$layoutOffset$mainAxisExtent$overlap$remainingCacheExtent$remainingPaintExtent$scrollOffset(t1, -t6, t4, crossAxisExtent, C.GrowthDirection_0, 0, mainAxisExtent, t2, mainAxisExtent + 2 * t6, mainAxisExtent, t5); if (correction !== 0) _this._viewport$_offset.correctBy$1(correction); else { switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: effectiveExtent = J.clamp$2$n(_this.get$_shrinkWrapExtent(), constraints.minHeight, constraints.maxHeight); break; case C.Axis_0: effectiveExtent = J.clamp$2$n(_this.get$_shrinkWrapExtent(), constraints.minWidth, constraints.maxWidth); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } didAcceptViewportDimension = _this._viewport$_offset.applyViewportDimension$1(effectiveExtent); didAcceptContentDimension = _this._viewport$_offset.applyContentDimensions$2(0, Math.max(0, _this.get$_viewport$_maxScrollExtent() - effectiveExtent)); if (didAcceptViewportDimension ? didAcceptContentDimension : t3) break; } } while (true); switch (G.axisDirectionToAxis(_this._viewport$_axisDirection)) { case C.Axis_1: _this._box$_size = new P.Size(J.clamp$2$n(crossAxisExtent, constraints.minWidth, constraints.maxWidth), J.clamp$2$n(effectiveExtent, constraints.minHeight, constraints.maxHeight)); break; case C.Axis_0: _this._box$_size = new P.Size(J.clamp$2$n(effectiveExtent, constraints.minWidth, constraints.maxWidth), J.clamp$2$n(crossAxisExtent, constraints.minHeight, constraints.maxHeight)); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, get$hasVisualOverflow: function() { return this._viewport$_hasVisualOverflow; }, updateOutOfBandData$2: function(growthDirection, childLayoutGeometry) { var _this = this; _this.__RenderShrinkWrappingViewport__maxScrollExtent = _this.get$_viewport$_maxScrollExtent() + childLayoutGeometry.scrollExtent; if (childLayoutGeometry.hasVisualOverflow) _this._viewport$_hasVisualOverflow = true; _this.__RenderShrinkWrappingViewport__shrinkWrapExtent = _this.get$_shrinkWrapExtent() + childLayoutGeometry.maxPaintExtent; }, updateChildLayoutOffset$3: function(child, layoutOffset, growthDirection) { var t1 = child.parentData; t1.toString; type$.SliverLogicalParentData._as(t1).layoutOffset = layoutOffset; }, paintOffsetOf$1: function(child) { var t1 = child.parentData; t1.toString; t1 = type$.SliverLogicalParentData._as(t1).layoutOffset; t1.toString; return this.computeAbsolutePaintOffset$3(child, t1, C.GrowthDirection_0); }, scrollOffsetOf$2: function(child, scrollOffsetWithinChild) { var t1, scrollOffsetToChild, t2, current = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), scrollOffsetToChild = 0; current !== child;) { scrollOffsetToChild += current._geometry.scrollExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return scrollOffsetToChild + scrollOffsetWithinChild; }, maxScrollObstructionExtentBefore$1: function(child) { var t1, pinnedExtent, t2, current = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("ContainerRenderObjectMixin.1"), pinnedExtent = 0; current !== child;) { pinnedExtent += current._geometry.maxScrollObstructionExtent; t2 = current.parentData; t2.toString; current = t1._as(t2).ContainerParentDataMixin_nextSibling; } return pinnedExtent; }, applyPaintTransform$2: function(child, transform) { var offset = this.paintOffsetOf$1(type$.RenderSliver._as(child)); transform.translate$2(0, offset._dx, offset._dy); }, computeChildMainAxisPosition$2: function(child, parentMainAxisPosition) { var t2, t1 = child.parentData; t1.toString; type$.SliverLogicalParentData._as(t1); t2 = type$.SliverConstraints; switch (G.applyGrowthDirectionToAxisDirection(t2._as(K.RenderObject.prototype.get$constraints.call(child)).axisDirection, t2._as(K.RenderObject.prototype.get$constraints.call(child)).growthDirection)) { case C.AxisDirection_2: case C.AxisDirection_1: t1 = t1.layoutOffset; t1.toString; return parentMainAxisPosition - t1; case C.AxisDirection_0: t2 = this._box$_size._dy; t1 = t1.layoutOffset; t1.toString; return t2 - parentMainAxisPosition - t1; case C.AxisDirection_3: t2 = this._box$_size._dx; t1 = t1.layoutOffset; t1.toString; return t2 - parentMainAxisPosition - t1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$indexOfFirstChild: function() { return 0; }, labelForChild$1: function(index) { return "child " + index; }, get$childrenInPaintOrder: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, child; return function $async$get$childrenInPaintOrder($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start child = $async$self.ContainerRenderObjectMixin__lastChild; t1 = H._instanceType($async$self)._eval$1("ContainerRenderObjectMixin.1"); case 2: // for condition if (!(child != null)) { // goto after for $async$goto = 3; break; } $async$goto = 4; return child; case 4: // after yield t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_previousSibling; // goto for condition $async$goto = 2; break; case 3: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderSliver); }, get$childrenInHitTestOrder: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, child; return function $async$get$childrenInHitTestOrder($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start child = $async$self.ContainerRenderObjectMixin__firstChild; t1 = H._instanceType($async$self)._eval$1("ContainerRenderObjectMixin.1"); case 2: // for condition if (!(child != null)) { // goto after for $async$goto = 3; break; } $async$goto = 4; return child; case 4: // after yield t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; // goto for condition $async$goto = 2; break; case 3: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.RenderSliver); } }; Q._RenderViewportBase_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0"); child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(this)._eval$1("_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0"); child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; N.ScrollDirection.prototype = { toString$0: function(_) { return this._viewport_offset$_name; } }; N.ViewportOffset.prototype = { moveTo$3$curve$duration: function(_, to, curve, duration) { var t1 = duration._duration === 0; if (t1) { this.jumpTo$1(to); return P.Future_Future$value(null, type$.void); } else return this.animateTo$3$curve$duration(to, curve, duration); }, toString$0: function(_) { var _this = this, description = H.setRuntimeTypeInfo([], type$.JSArray_String); _this.super$ScrollPosition$debugFillDescription(description); description.push(H.getRuntimeType(_this.context).toString$0(0)); description.push(H.S(_this.physics)); description.push(H.S(_this._activity)); description.push(_this._userScrollDirection.toString$0(0)); return "#" + Y.shortHash(_this) + "(" + C.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1: function(description) { var t1 = this._pixels; if (t1 != null) description.push("offset: " + C.JSNumber_methods.toStringAsFixed$1(t1, 1)); } }; N.WrapAlignment.prototype = { toString$0: function(_) { return this._wrap$_name; } }; N.WrapCrossAlignment.prototype = { toString$0: function(_) { return this._wrap$_name; } }; N._RunMetrics.prototype = {}; N.WrapParentData.prototype = {}; N.RenderWrap.prototype = { set$direction: function(_, value) { if (this._wrap$_direction === value) return; this._wrap$_direction = value; this.markNeedsLayout$0(); }, set$alignment: function(value) { if (this._wrap$_alignment === value) return; this._wrap$_alignment = value; this.markNeedsLayout$0(); }, set$spacing: function(_, value) { if (this._spacing === value) return; this._spacing = value; this.markNeedsLayout$0(); }, set$runAlignment: function(value) { if (this._runAlignment === value) return; this._runAlignment = value; this.markNeedsLayout$0(); }, set$runSpacing: function(value) { if (this._runSpacing === value) return; this._runSpacing = value; this.markNeedsLayout$0(); }, set$crossAxisAlignment: function(value) { if (this._crossAxisAlignment === value) return; this._crossAxisAlignment = value; this.markNeedsLayout$0(); }, setupParentData$1: function(child) { if (!(child.parentData instanceof N.WrapParentData)) child.parentData = new N.WrapParentData(null, null, C.Offset_0_0); }, computeMinIntrinsicWidth$1: function(height) { var child, t1, width, t2, _this = this; switch (_this._wrap$_direction) { case C.Axis_0: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width = Math.max(width, H.checkNum(child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width; case C.Axis_1: return _this._computeDryLayout$1(new S.BoxConstraints(0, 1 / 0, 0, height))._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicWidth$1: function(height) { var child, t1, width, t2, _this = this; switch (_this._wrap$_direction) { case C.Axis_0: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width; case C.Axis_1: return _this._computeDryLayout$1(new S.BoxConstraints(0, 1 / 0, 0, height))._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicHeight$1: function(width) { var child, t1, height, t2, _this = this; switch (_this._wrap$_direction) { case C.Axis_0: return _this._computeDryLayout$1(new S.BoxConstraints(0, width, 0, 1 / 0))._dy; case C.Axis_1: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), height = 0; child != null;) { height = Math.max(height, H.checkNum(child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, 1 / 0, child.get$computeMinIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMaxIntrinsicHeight$1: function(width) { var child, t1, height, t2, _this = this; switch (_this._wrap$_direction) { case C.Axis_0: return _this._computeDryLayout$1(new S.BoxConstraints(0, width, 0, 1 / 0))._dy; case C.Axis_1: child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), height = 0; child != null;) { height += child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, 1 / 0, child.get$computeMaxIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeDistanceToActualBaseline$1: function(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, _getMainAxisExtent$1: function(childSize) { switch (this._wrap$_direction) { case C.Axis_0: return childSize._dx; case C.Axis_1: return childSize._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getCrossAxisExtent$1: function(childSize) { switch (this._wrap$_direction) { case C.Axis_0: return childSize._dy; case C.Axis_1: return childSize._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getOffset$2: function(mainAxisOffset, crossAxisOffset) { switch (this._wrap$_direction) { case C.Axis_0: return new P.Offset(mainAxisOffset, crossAxisOffset); case C.Axis_1: return new P.Offset(crossAxisOffset, mainAxisOffset); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getChildCrossAxisOffset$3: function(flipCrossAxis, runCrossAxisExtent, childCrossAxisExtent) { var freeSpace = runCrossAxisExtent - childCrossAxisExtent; switch (this._crossAxisAlignment) { case C.WrapCrossAlignment_0: return flipCrossAxis ? freeSpace : 0; case C.WrapCrossAlignment_1: return flipCrossAxis ? 0 : freeSpace; case C.WrapCrossAlignment_2: return freeSpace / 2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeDryLayout$1: function(constraints) { return this._computeDryLayout$1(constraints); }, _computeDryLayout$1: function(constraints) { var mainAxisLimit, childConstraints, child, t1, mainAxisExtent, crossAxisExtent, runMainAxisExtent, runCrossAxisExtent, childCount, childSize, childMainAxisExtent, childCrossAxisExtent, t2, _this = this, _s80_ = string$.x60null_c; switch (_this._wrap$_direction) { case C.Axis_0: mainAxisLimit = constraints.maxWidth; childConstraints = new S.BoxConstraints(0, mainAxisLimit, 0, 1 / 0); break; case C.Axis_1: mainAxisLimit = constraints.maxHeight; childConstraints = new S.BoxConstraints(0, 1 / 0, 0, mainAxisLimit); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } child = _this.ContainerRenderObjectMixin__firstChild; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), mainAxisExtent = 0, crossAxisExtent = 0, runMainAxisExtent = 0, runCrossAxisExtent = 0, childCount = 0; child != null;) { childSize = N.ChildLayoutHelper_dryLayoutChild(child, childConstraints); childMainAxisExtent = _this._getMainAxisExtent$1(childSize); childCrossAxisExtent = _this._getCrossAxisExtent$1(childSize); if (childCount > 0 && runMainAxisExtent + childMainAxisExtent + _this._spacing > mainAxisLimit) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent + _this._runSpacing; runMainAxisExtent = 0; runCrossAxisExtent = 0; childCount = 0; } runMainAxisExtent += childMainAxisExtent; runCrossAxisExtent = Math.max(runCrossAxisExtent, H.checkNum(childCrossAxisExtent)); if (childCount > 0) runMainAxisExtent += _this._spacing; ++childCount; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } crossAxisExtent += runCrossAxisExtent; mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); switch (_this._wrap$_direction) { case C.Axis_0: return constraints.constrain$1(new P.Size(mainAxisExtent, crossAxisExtent)); case C.Axis_1: return constraints.constrain$1(new P.Size(crossAxisExtent, mainAxisExtent)); default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, performLayout$0: function() { var child, mainAxisLimit, childConstraints, flipMainAxis, flipCrossAxis, spacing, runSpacing, runMetrics, t1, mainAxisExtent, crossAxisExtent, runMainAxisExtent, runCrossAxisExtent, childCount, t2, childMainAxisExtent, childCrossAxisExtent, runCount, containerMainAxisExtent, containerCrossAxisExtent, crossAxisFreeSpace, runLeadingSpace, runBetweenSpace, crossAxisOffset, i, metrics, mainAxisFreeSpace, childLeadingSpace, childBetweenSpace, childMainPosition, t3, childCrossAxisOffset, _this = this, _s80_ = string$.x60null_c, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._wrap$_hasVisualOverflow = false; child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) { _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return; } switch (_this._wrap$_direction) { case C.Axis_0: mainAxisLimit = constraints.maxWidth; childConstraints = new S.BoxConstraints(0, mainAxisLimit, 0, 1 / 0); flipMainAxis = _this._wrap$_textDirection === C.TextDirection_0 && true; flipCrossAxis = _this._wrap$_verticalDirection === C.VerticalDirection_0 && true; break; case C.Axis_1: mainAxisLimit = constraints.maxHeight; childConstraints = new S.BoxConstraints(0, 1 / 0, 0, mainAxisLimit); flipMainAxis = _this._wrap$_verticalDirection === C.VerticalDirection_0 && true; flipCrossAxis = _this._wrap$_textDirection === C.TextDirection_0 && true; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } spacing = _this._spacing; runSpacing = _this._runSpacing; runMetrics = H.setRuntimeTypeInfo([], type$.JSArray__RunMetrics); for (t1 = type$.WrapParentData, mainAxisExtent = 0, crossAxisExtent = 0, runMainAxisExtent = 0, runCrossAxisExtent = 0, childCount = 0; child != null;) { child.layout$2$parentUsesSize(0, childConstraints, true); t2 = child._box$_size; t2.toString; childMainAxisExtent = _this._getMainAxisExtent$1(t2); t2 = child._box$_size; t2.toString; childCrossAxisExtent = _this._getCrossAxisExtent$1(t2); if (childCount > 0 && runMainAxisExtent + spacing + childMainAxisExtent > mainAxisLimit) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent; if (runMetrics.length !== 0) crossAxisExtent += runSpacing; runMetrics.push(new N._RunMetrics(runMainAxisExtent, runCrossAxisExtent, childCount)); runMainAxisExtent = 0; runCrossAxisExtent = 0; childCount = 0; } runMainAxisExtent += childMainAxisExtent; if (childCount > 0) runMainAxisExtent += spacing; runCrossAxisExtent = Math.max(runCrossAxisExtent, H.checkNum(childCrossAxisExtent)); ++childCount; t2 = child.parentData; t2.toString; t1._as(t2); t2._runIndex = runMetrics.length; child = t2.ContainerParentDataMixin_nextSibling; } if (childCount > 0) { mainAxisExtent = Math.max(mainAxisExtent, runMainAxisExtent); crossAxisExtent += runCrossAxisExtent; if (runMetrics.length !== 0) crossAxisExtent += runSpacing; runMetrics.push(new N._RunMetrics(runMainAxisExtent, runCrossAxisExtent, childCount)); } runCount = runMetrics.length; switch (_this._wrap$_direction) { case C.Axis_0: t2 = _this._box$_size = constraints.constrain$1(new P.Size(mainAxisExtent, crossAxisExtent)); containerMainAxisExtent = t2._dx; containerCrossAxisExtent = t2._dy; break; case C.Axis_1: t2 = _this._box$_size = constraints.constrain$1(new P.Size(crossAxisExtent, mainAxisExtent)); containerMainAxisExtent = t2._dy; containerCrossAxisExtent = t2._dx; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this._wrap$_hasVisualOverflow = containerMainAxisExtent < mainAxisExtent || containerCrossAxisExtent < crossAxisExtent; crossAxisFreeSpace = Math.max(0, containerCrossAxisExtent - crossAxisExtent); switch (_this._runAlignment) { case C.WrapAlignment_0: runLeadingSpace = 0; runBetweenSpace = 0; break; case C.WrapAlignment_1: runLeadingSpace = crossAxisFreeSpace; runBetweenSpace = 0; break; case C.WrapAlignment_2: runLeadingSpace = crossAxisFreeSpace / 2; runBetweenSpace = 0; break; case C.WrapAlignment_3: runBetweenSpace = runCount > 1 ? crossAxisFreeSpace / (runCount - 1) : 0; runLeadingSpace = 0; break; case C.WrapAlignment_4: runBetweenSpace = crossAxisFreeSpace / runCount; runLeadingSpace = runBetweenSpace / 2; break; case C.WrapAlignment_5: runBetweenSpace = crossAxisFreeSpace / (runCount + 1); runLeadingSpace = runBetweenSpace; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } runBetweenSpace += runSpacing; crossAxisOffset = flipCrossAxis ? containerCrossAxisExtent - runLeadingSpace : runLeadingSpace; child = _this.ContainerRenderObjectMixin__firstChild; for (i = 0; i < runCount; ++i) { metrics = runMetrics[i]; runCrossAxisExtent = metrics.crossAxisExtent; childCount = metrics.childCount; mainAxisFreeSpace = Math.max(0, containerMainAxisExtent - metrics.mainAxisExtent); switch (_this._wrap$_alignment) { case C.WrapAlignment_0: childLeadingSpace = 0; childBetweenSpace = 0; break; case C.WrapAlignment_1: childLeadingSpace = mainAxisFreeSpace; childBetweenSpace = 0; break; case C.WrapAlignment_2: childLeadingSpace = mainAxisFreeSpace / 2; childBetweenSpace = 0; break; case C.WrapAlignment_3: childBetweenSpace = childCount > 1 ? mainAxisFreeSpace / (childCount - 1) : 0; childLeadingSpace = 0; break; case C.WrapAlignment_4: childBetweenSpace = mainAxisFreeSpace / childCount; childLeadingSpace = childBetweenSpace / 2; break; case C.WrapAlignment_5: childBetweenSpace = mainAxisFreeSpace / (childCount + 1); childLeadingSpace = childBetweenSpace; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } childBetweenSpace += spacing; childMainPosition = flipMainAxis ? containerMainAxisExtent - childLeadingSpace : childLeadingSpace; if (flipCrossAxis) crossAxisOffset -= runCrossAxisExtent; for (; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); if (t2._runIndex !== i) break; t3 = child._box$_size; t3.toString; childMainAxisExtent = _this._getMainAxisExtent$1(t3); t3 = child._box$_size; t3.toString; childCrossAxisOffset = _this._getChildCrossAxisOffset$3(flipCrossAxis, runCrossAxisExtent, _this._getCrossAxisExtent$1(t3)); if (flipMainAxis) childMainPosition -= childMainAxisExtent; t2.offset = _this._getOffset$2(childMainPosition, crossAxisOffset + childCrossAxisOffset); childMainPosition = flipMainAxis ? childMainPosition - childBetweenSpace : childMainPosition + (childMainAxisExtent + childBetweenSpace); child = t2.ContainerParentDataMixin_nextSibling; } crossAxisOffset = flipCrossAxis ? crossAxisOffset - runBetweenSpace : crossAxisOffset + (runCrossAxisExtent + runBetweenSpace); } }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this._wrap$_hasVisualOverflow && _this._wrap$_clipBehavior !== C.Clip_0) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$defaultPaint(), _this._wrap$_clipBehavior, _this._clipRectLayer); } else { _this._clipRectLayer = null; _this.defaultPaint$2(context, offset); } } }; N._RenderWrap_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.WrapParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.WrapParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; N._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; N._TaskEntry.prototype = { run$0: function() { var t1 = this.debugLabel; if (t1 == null) t1 = "Scheduled Task"; P.Timeline_timeSync(t1, new N._TaskEntry_run_closure(this), null); }, get$task: function() { return this.task; } }; N._TaskEntry_run_closure.prototype = { call$0: function() { var t1 = this.$this; t1.completer.complete$1(0, t1.task.call$0()); }, $signature: 1 }; N._FrameCallbackEntry.prototype = {}; N.SchedulerPhase.prototype = { toString$0: function(_) { return this._binding$_name; } }; N.SchedulerBinding.prototype = { addTimingsCallback$1: function(callback) { var t1 = this.SchedulerBinding__timingsCallbacks; t1.push(callback); if (t1.length === 1) { t1 = $.$get$window().platformDispatcher; t1._onReportTimings = this.get$_executeTimingsCallbacks(); t1._onReportTimingsZone = $.Zone__current; } }, removeTimingsCallback$1: function(callback) { var t1 = this.SchedulerBinding__timingsCallbacks; C.JSArray_methods.remove$1(t1, callback); if (t1.length === 0) { t1 = $.$get$window().platformDispatcher; t1._onReportTimings = null; t1._onReportTimingsZone = $.Zone__current; } }, _executeTimingsCallbacks$1: function(timings) { var callback, exception, stack, t2, _i, exception0, t3, t4, t1 = this.SchedulerBinding__timingsCallbacks, clonedCallbacks = P.List_List$from(t1, true, type$.void_Function_List_FrameTiming); for (t2 = clonedCallbacks.length, _i = 0; _i < t2; ++_i) { callback = clonedCallbacks[_i]; try { if (C.JSArray_methods.contains$1(t1, callback)) callback.call$1(timings); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t3 = U.ErrorDescription$("while executing callbacks for FrameTiming"); t4 = $.FlutterError_onError; if (t4 != null) t4.call$1(new U.FlutterErrorDetails(exception, stack, "Flutter framework", t3, null, false)); } } }, handleAppLifecycleStateChanged$1: function(state) { this.SchedulerBinding__lifecycleState = state; switch (state) { case C.AppLifecycleState_0: case C.AppLifecycleState_1: this._setFramesEnabledState$1(true); break; case C.AppLifecycleState_2: case C.AppLifecycleState_3: this._setFramesEnabledState$1(false); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, scheduleTask$1$3$debugLabel: function(task, priority, debugLabel, $T) { var t1 = this.SchedulerBinding__taskQueue, t2 = t1._priority_queue$_length, t3 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); t1.add$1(0, new N._TaskEntry(task, priority._priority$_value, debugLabel, null, new P._AsyncCompleter(t3, $T._eval$1("_AsyncCompleter<0>")), $T._eval$1("_TaskEntry<0>"))); if (t2 === 0 && this._lockCount <= 0) this._ensureEventLoopCallback$0(); return t3; }, scheduleTask$1$2: function(task, priority, $T) { return this.scheduleTask$1$3$debugLabel(task, priority, null, $T); }, _ensureEventLoopCallback$0: function() { if (this.SchedulerBinding__hasRequestedAnEventLoopCallback) return; this.SchedulerBinding__hasRequestedAnEventLoopCallback = true; P.Timer_Timer(C.Duration_0, this.get$_runTasks()); }, _runTasks$0: function() { this.SchedulerBinding__hasRequestedAnEventLoopCallback = false; if (this.handleEventLoopCallback$0()) this._ensureEventLoopCallback$0(); }, handleEventLoopCallback$0: function() { var entry, exception, exceptionStack, newLength, last, exception0, _this = this, _s10_ = "No element", t1 = _this.SchedulerBinding__taskQueue, t2 = t1._priority_queue$_length === 0; if (t2 || _this._lockCount > 0) return false; if (t2) H.throwExpression(P.StateError$(_s10_)); entry = t1._elementAt$1(0); t2 = entry.priority; if (_this.SchedulerBinding_schedulingStrategy.call$2$priority$scheduler(t2, _this)) { try { if (t1._priority_queue$_length === 0) H.throwExpression(P.StateError$(_s10_)); ++t1._modificationCount; t1._elementAt$1(0); newLength = t1._priority_queue$_length - 1; last = t1._elementAt$1(newLength); C.JSArray_methods.$indexSet(t1._queue, newLength, null); t1._priority_queue$_length = newLength; if (newLength > 0) t1._bubbleDown$2(last, 0); entry.run$0(); } catch (exception0) { exception = H.unwrapException(exception0); exceptionStack = H.getTraceFromException(exception0); t2 = U.ErrorDescription$("during a task callback"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, exceptionStack, "scheduler library", t2, null, false)); } return t1._priority_queue$_length !== 0; } return false; }, scheduleFrameCallback$2$rescheduling: function(callback, rescheduling) { var t1, _this = this; _this.scheduleFrame$0(); t1 = ++_this.SchedulerBinding__nextFrameCallbackId; _this.SchedulerBinding__transientCallbacks.$indexSet(0, t1, new N._FrameCallbackEntry(callback)); return _this.SchedulerBinding__nextFrameCallbackId; }, scheduleFrameCallback$1: function(callback) { return this.scheduleFrameCallback$2$rescheduling(callback, false); }, get$endOfFrame: function() { var _this = this; if (_this.SchedulerBinding__nextFrameCompleter == null) { if (_this.SchedulerBinding__schedulerPhase === C.SchedulerPhase_0) _this.scheduleFrame$0(); _this.SchedulerBinding__nextFrameCompleter = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); _this.SchedulerBinding__postFrameCallbacks.push(new N.SchedulerBinding_endOfFrame_closure(_this)); } return _this.SchedulerBinding__nextFrameCompleter.future; }, get$framesEnabled: function() { return this.SchedulerBinding__framesEnabled; }, _setFramesEnabledState$1: function(enabled) { if (this.SchedulerBinding__framesEnabled === enabled) return; this.SchedulerBinding__framesEnabled = enabled; if (enabled) this.scheduleFrame$0(); }, ensureVisualUpdate$0: function() { switch (this.SchedulerBinding__schedulerPhase) { case C.SchedulerPhase_0: case C.SchedulerPhase_4: this.scheduleFrame$0(); return; case C.SchedulerPhase_1: case C.SchedulerPhase_2: case C.SchedulerPhase_3: return; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, scheduleFrame$0: function() { var t1, _this = this; if (!_this.SchedulerBinding__hasScheduledFrame) t1 = !(N.SchedulerBinding.prototype.get$framesEnabled.call(_this) && _this.WidgetsBinding__readyToProduceFrames); else t1 = true; if (t1) return; t1 = $.$get$window().platformDispatcher; if (t1._onBeginFrame == null) { t1._onBeginFrame = _this.get$_handleBeginFrame(); t1._onBeginFrameZone = $.Zone__current; } if (t1._onDrawFrame == null) { t1._onDrawFrame = _this.get$_handleDrawFrame(); t1._onDrawFrameZone = $.Zone__current; } t1.scheduleFrame$0(); _this.SchedulerBinding__hasScheduledFrame = true; }, scheduleForcedFrame$0: function() { var _this = this; if (!(N.SchedulerBinding.prototype.get$framesEnabled.call(_this) && _this.WidgetsBinding__readyToProduceFrames)) return; if (_this.SchedulerBinding__hasScheduledFrame) return; $.$get$window().platformDispatcher.scheduleFrame$0(); _this.SchedulerBinding__hasScheduledFrame = true; }, scheduleWarmUpFrame$0: function() { var hadScheduledFrame, _this = this; if (_this.SchedulerBinding__warmUpFrame || _this.SchedulerBinding__schedulerPhase !== C.SchedulerPhase_0) return; _this.SchedulerBinding__warmUpFrame = true; P.Timeline_startSync("Warm-up frame", null, null); hadScheduledFrame = _this.SchedulerBinding__hasScheduledFrame; P.Timer_Timer(C.Duration_0, new N.SchedulerBinding_scheduleWarmUpFrame_closure(_this)); P.Timer_Timer(C.Duration_0, new N.SchedulerBinding_scheduleWarmUpFrame_closure0(_this, hadScheduledFrame)); _this.lockEvents$1(new N.SchedulerBinding_scheduleWarmUpFrame_closure1(_this)); }, resetEpoch$0: function() { var _this = this; _this.SchedulerBinding__epochStart = _this._adjustForEpoch$1(_this.SchedulerBinding__lastRawTimeStamp); _this.SchedulerBinding__firstRawTimeStampInEpoch = null; }, _adjustForEpoch$1: function(rawTimeStamp) { var t1 = this.SchedulerBinding__firstRawTimeStampInEpoch, rawDurationSinceEpoch = t1 == null ? C.Duration_0 : new P.Duration(rawTimeStamp._duration - t1._duration); return P.Duration$(0, 0, C.JSNumber_methods.round$0(rawDurationSinceEpoch._duration / $._timeDilation) + this.SchedulerBinding__epochStart._duration, 0, 0, 0); }, _handleBeginFrame$1: function(rawTimeStamp) { if (this.SchedulerBinding__warmUpFrame) { this.SchedulerBinding__rescheduleAfterWarmUpFrame = true; return; } this.handleBeginFrame$1(rawTimeStamp); }, _handleDrawFrame$0: function() { var _this = this; if (_this.SchedulerBinding__rescheduleAfterWarmUpFrame) { _this.SchedulerBinding__rescheduleAfterWarmUpFrame = false; _this.SchedulerBinding__postFrameCallbacks.push(new N.SchedulerBinding__handleDrawFrame_closure(_this)); return; } _this.handleDrawFrame$0(); }, handleBeginFrame$1: function(rawTimeStamp) { var callbacks, t1, _this = this; P.Timeline_startSync("Frame", C.Map_9aZ6I, null); if (_this.SchedulerBinding__firstRawTimeStampInEpoch == null) _this.SchedulerBinding__firstRawTimeStampInEpoch = rawTimeStamp; t1 = rawTimeStamp == null; _this.SchedulerBinding__currentFrameTimeStamp = _this._adjustForEpoch$1(t1 ? _this.SchedulerBinding__lastRawTimeStamp : rawTimeStamp); if (!t1) _this.SchedulerBinding__lastRawTimeStamp = rawTimeStamp; _this.SchedulerBinding__hasScheduledFrame = false; try { P.Timeline_startSync("Animate", C.Map_9aZ6I, null); _this.SchedulerBinding__schedulerPhase = C.SchedulerPhase_1; callbacks = _this.SchedulerBinding__transientCallbacks; _this.SchedulerBinding__transientCallbacks = P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._FrameCallbackEntry); J.forEach$1$ax(callbacks, new N.SchedulerBinding_handleBeginFrame_closure(_this)); _this.SchedulerBinding__removedIds.clear$0(0); } finally { _this.SchedulerBinding__schedulerPhase = C.SchedulerPhase_2; } }, handleDrawFrame$0: function() { var callback, localPostFrameCallbacks, callback0, t1, t2, _i, t3, _this = this; P.Timeline_finishSync(); try { _this.SchedulerBinding__schedulerPhase = C.SchedulerPhase_3; for (t1 = _this.SchedulerBinding__persistentCallbacks, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { callback = t1[_i]; t3 = _this.SchedulerBinding__currentFrameTimeStamp; t3.toString; _this._invokeFrameCallback$2(callback, t3); } _this.SchedulerBinding__schedulerPhase = C.SchedulerPhase_4; t1 = _this.SchedulerBinding__postFrameCallbacks; localPostFrameCallbacks = P.List_List$from(t1, true, type$.void_Function_Duration); C.JSArray_methods.set$length(t1, 0); for (t1 = localPostFrameCallbacks, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { callback0 = t1[_i]; t3 = _this.SchedulerBinding__currentFrameTimeStamp; t3.toString; _this._invokeFrameCallback$2(callback0, t3); } } finally { _this.SchedulerBinding__schedulerPhase = C.SchedulerPhase_0; P.Timeline_finishSync(); _this.SchedulerBinding__currentFrameTimeStamp = null; } }, _invokeFrameCallback$3: function(callback, timeStamp, callbackStack) { var exception, exceptionStack, exception0, t1; try { callback.call$1(timeStamp); } catch (exception0) { exception = H.unwrapException(exception0); exceptionStack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("during a scheduler callback"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, exceptionStack, "scheduler library", t1, null, false)); } }, _invokeFrameCallback$2: function(callback, timeStamp) { return this._invokeFrameCallback$3(callback, timeStamp, null); } }; N.SchedulerBinding_endOfFrame_closure.prototype = { call$1: function(timeStamp) { var t1 = this.$this; t1.SchedulerBinding__nextFrameCompleter.complete$0(0); t1.SchedulerBinding__nextFrameCompleter = null; }, $signature: 28 }; N.SchedulerBinding_scheduleWarmUpFrame_closure.prototype = { call$0: function() { this.$this.handleBeginFrame$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.SchedulerBinding_scheduleWarmUpFrame_closure0.prototype = { call$0: function() { var t1 = this.$this; t1.handleDrawFrame$0(); t1.resetEpoch$0(); t1.SchedulerBinding__warmUpFrame = false; if (this.hadScheduledFrame) t1.scheduleFrame$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.SchedulerBinding_scheduleWarmUpFrame_closure1.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self.$this.get$endOfFrame(), $async$call$0); case 2: // returning from await. P.Timeline_finishSync(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 93 }; N.SchedulerBinding__handleDrawFrame_closure.prototype = { call$1: function(timeStamp) { var t1 = this.$this; t1.SchedulerBinding__hasScheduledFrame = false; t1.scheduleFrame$0(); }, $signature: 28 }; N.SchedulerBinding_handleBeginFrame_closure.prototype = { call$2: function(id, callbackEntry) { var t2, t3, t1 = this.$this; if (!t1.SchedulerBinding__removedIds.contains$1(0, id)) { t2 = callbackEntry.callback; t3 = t1.SchedulerBinding__currentFrameTimeStamp; t3.toString; t1._invokeFrameCallback$3(t2, t3, callbackEntry.debugStack); } }, $signature: 2649 }; V.Priority.prototype = { get$value: function(_) { return this._priority$_value; }, $add: function(_, offset) { if (Math.abs(offset) > 10000) offset = 10000 * C.JSInt_methods.get$sign(offset); return new V.Priority(this._priority$_value + offset); }, $sub: function(_, offset) { return this.$add(0, -offset); } }; M.Ticker.prototype = { set$muted: function(_, value) { var t1, _this = this; if (value === _this._muted) return; _this._muted = value; if (value) _this.unscheduleTick$0(); else { t1 = _this._ticker$_future != null && _this._animationId == null; if (t1) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), false); } }, get$isTicking: function() { if (this._ticker$_future == null) return false; if (this._muted) return false; var t1 = $.SchedulerBinding__instance; t1.toString; if (N.SchedulerBinding.prototype.get$framesEnabled.call(t1) && t1.WidgetsBinding__readyToProduceFrames) return true; if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase !== C.SchedulerPhase_0) return true; return false; }, start$0: function(_) { var t1, t2, _this = this; _this._ticker$_future = new M.TickerFuture(new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void)); if (!_this._muted) t1 = _this._animationId == null; else t1 = false; if (t1) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), false); t1 = $.SchedulerBinding__instance; t2 = t1.SchedulerBinding__schedulerPhase.index; if (t2 > 0 && t2 < 4) { t1 = t1.SchedulerBinding__currentFrameTimeStamp; t1.toString; _this._startTime = t1; } t1 = _this._ticker$_future; t1.toString; return t1; }, stop$1$canceled: function(_, canceled) { var _this = this, t1 = _this._ticker$_future; if (t1 == null) return; _this._startTime = _this._ticker$_future = null; _this.unscheduleTick$0(); if (canceled) t1._cancel$1(_this); else t1._ticker$_complete$0(); }, stop$0: function($receiver) { return this.stop$1$canceled($receiver, false); }, _ticker$_tick$1: function(timeStamp) { var t1, _this = this; _this._animationId = null; t1 = _this._startTime; if (t1 == null) t1 = _this._startTime = timeStamp; t1.toString; _this._onTick.call$1(new P.Duration(timeStamp._duration - t1._duration)); if (!_this._muted && _this._ticker$_future != null && _this._animationId == null) _this._animationId = $.SchedulerBinding__instance.scheduleFrameCallback$2$rescheduling(_this.get$_ticker$_tick(), true); }, unscheduleTick$0: function() { var t2, t1 = this._animationId; if (t1 != null) { t2 = $.SchedulerBinding__instance; t2.SchedulerBinding__transientCallbacks.remove$1(0, t1); t2.SchedulerBinding__removedIds.add$1(0, t1); this._animationId = null; } }, dispose$0: function(_) { var _this = this, t1 = _this._ticker$_future; if (t1 != null) { _this._ticker$_future = null; _this.unscheduleTick$0(); t1._cancel$1(_this); } }, toString$1$debugIncludeStack: function(_, debugIncludeStack) { return "Ticker()".charCodeAt(0) == 0 ? "Ticker()" : "Ticker()"; }, toString$0: function($receiver) { return this.toString$1$debugIncludeStack($receiver, false); } }; M.TickerFuture.prototype = { _ticker$_complete$0: function() { this._completed = true; this._primaryCompleter.complete$0(0); var t1 = this._secondaryCompleter; if (t1 != null) t1.complete$0(0); }, _cancel$1: function(ticker) { var t1; this._completed = false; t1 = this._secondaryCompleter; if (t1 != null) t1.completeError$1(new M.TickerCanceled(ticker)); }, whenCompleteOrCancel$1: function(callback) { var t1 = new M.TickerFuture_whenCompleteOrCancel_thunk(callback); this.get$orCancel().then$1$2$onError(0, t1, t1, type$.void); }, get$orCancel: function() { var t1, t2, _this = this; if (_this._secondaryCompleter == null) { t1 = _this._secondaryCompleter = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t2 = _this._completed; if (t2 != null) if (t2) t1.complete$0(0); else t1.completeError$1(C.TickerCanceled_null); } return _this._secondaryCompleter.future; }, catchError$2$test: function(onError, test) { return this._primaryCompleter.future.catchError$2$test(onError, test); }, catchError$1: function(onError) { return this.catchError$2$test(onError, null); }, then$1$2$onError: function(_, onValue, onError, $R) { return this._primaryCompleter.future.then$1$2$onError(0, onValue, onError, $R); }, then$1$1: function($receiver, onValue, $R) { return this.then$1$2$onError($receiver, onValue, null, $R); }, whenComplete$1: function(action) { return this._primaryCompleter.future.whenComplete$1(action); }, toString$0: function(_) { var t1 = "#" + Y.shortHash(this) + "(", t2 = this._completed; if (t2 == null) t2 = "active"; else t2 = t2 ? "complete" : "canceled"; return t1 + t2 + ")"; }, $isFuture: 1 }; M.TickerFuture_whenCompleteOrCancel_thunk.prototype = { call$1: function(value) { this.callback.call$0(); }, $signature: 81 }; M.TickerCanceled.prototype = { toString$0: function(_) { var t1 = this.ticker; if (t1 != null) return "This ticker was canceled: " + t1.toString$0(0); return 'The ticker was canceled before the "orCancel" property was first used.'; }, $isException: 1 }; N.SemanticsBinding.prototype = { get$_accessibilityFeatures: function() { var t1 = this.SemanticsBinding___SemanticsBinding__accessibilityFeatures; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_accessibilityFeatures")) : t1; } }; A.SemanticsTag.prototype = { toString$0: function(_) { return "SemanticsTag(" + this.name + ")"; }, get$name: function(receiver) { return this.name; } }; A.CustomSemanticsAction.prototype = { get$hashCode: function(_) { return P.hashValues(this.label, this.hint, this.action, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof A.CustomSemanticsAction && other.label == _this.label && other.hint == _this.hint && other.action == _this.action; }, toString$0: function(_) { var _this = this; return "CustomSemanticsAction(" + H.S($.CustomSemanticsAction__ids.$index(0, _this)) + ", label:" + H.S(_this.label) + ", hint:" + H.S(_this.hint) + ", action:" + H.S(_this.action) + ")"; } }; A.SemanticsData.prototype = { toStringShort$0: function() { return "SemanticsData"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; return other instanceof A.SemanticsData && other.flags === _this.flags && other.actions === _this.actions && other.label == _this.label && other.value == _this.value && other.increasedValue == _this.increasedValue && other.decreasedValue == _this.decreasedValue && other.hint == _this.hint && other.textDirection == _this.textDirection && J.$eq$(other.rect, _this.rect) && S.setEquals(other.tags, _this.tags) && other.scrollChildCount == _this.scrollChildCount && other.scrollIndex == _this.scrollIndex && J.$eq$(other.textSelection, _this.textSelection) && other.scrollPosition == _this.scrollPosition && other.scrollExtentMax == _this.scrollExtentMax && other.scrollExtentMin == _this.scrollExtentMin && other.platformViewId == _this.platformViewId && other.maxValueLength == _this.maxValueLength && other.currentValueLength == _this.currentValueLength && J.$eq$(other.transform, _this.transform) && other.elevation == _this.elevation && other.thickness === _this.thickness && A.SemanticsData__sortedListsEqual(other.customSemanticsActionIds, _this.customSemanticsActionIds); }, get$hashCode: function(_) { var _this = this; return P.hashValues(P.hashValues(_this.flags, _this.actions, _this.label, _this.value, _this.increasedValue, _this.decreasedValue, _this.hint, _this.textDirection, _this.rect, _this.tags, _this.textSelection, _this.scrollChildCount, _this.scrollIndex, _this.scrollPosition, _this.scrollExtentMax, _this.scrollExtentMin, _this.platformViewId, _this.maxValueLength, _this.currentValueLength, _this.transform), _this.elevation, _this.thickness, P.hashList(_this.customSemanticsActionIds), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, get$value: function(receiver) { return this.value; } }; A._SemanticsDiagnosticableNode.prototype = { getChildren$0: function() { return this.value.debugDescribeChildren$1$childOrder(this.childOrder); } }; A.SemanticsHintOverrides.prototype = { get$hashCode: function(_) { return P.hashValues(this.onTapHint, this.onLongPressHint, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof A.SemanticsHintOverrides && other.onTapHint == this.onTapHint && true; } }; A.SemanticsProperties.prototype = { toStringShort$0: function() { return "SemanticsProperties"; }, get$value: function(receiver) { return this.value; } }; A.SemanticsNode.prototype = { get$id: function(_) { return this._semantics$_id; }, set$transform: function(_, value) { if (!T.MatrixUtils_matrixEquals(this._semantics$_transform, value)) { this._semantics$_transform = value == null || T.MatrixUtils_isIdentity(value) ? null : value; this._semantics$_markDirty$0(); } }, set$rect: function(_, value) { if (!J.$eq$(this._semantics$_rect, value)) { this._semantics$_rect = value; this._semantics$_markDirty$0(); } }, set$isMergedIntoParent: function(value) { if (this._isMergedIntoParent === value) return; this._isMergedIntoParent = value; this._semantics$_markDirty$0(); }, _replaceChildren$1: function(newChildren) { var t2, _i, t3, sawChange, child, t4, i, _this = this, t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._dead = true; for (t1 = newChildren.length, _i = 0; _i < t1; ++_i) newChildren[_i]._dead = false; t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, t3 = type$.nullable_SemanticsNode, sawChange = false, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (child._dead) { t4 = J.getInterceptor$x(child); if (t3._as(B.AbstractNode.prototype.get$parent.call(t4, child)) === _this) { child._node$_parent = null; if (_this._node$_owner != null) child.detach$0(0); } sawChange = true; } } else sawChange = false; for (t1 = newChildren.length, t2 = type$.nullable_SemanticsNode, _i = 0; _i < newChildren.length; newChildren.length === t1 || (0, H.throwConcurrentModificationError)(newChildren), ++_i) { child = newChildren[_i]; child.toString; t3 = J.getInterceptor$x(child); if (t2._as(B.AbstractNode.prototype.get$parent.call(t3, child)) !== _this) { if (t2._as(B.AbstractNode.prototype.get$parent.call(t3, child)) != null) { t3 = t2._as(B.AbstractNode.prototype.get$parent.call(t3, child)); if (t3 != null) { child._node$_parent = null; if (t3._node$_owner != null) child.detach$0(0); } } child._node$_parent = _this; t3 = _this._node$_owner; if (t3 != null) child.attach$1(t3); t3 = child._node$_depth; t4 = _this._node$_depth; if (t3 <= t4) { child._node$_depth = t4 + 1; child.redepthChildren$0(); } sawChange = true; } } if (!sawChange && _this._semantics$_children != null) for (t1 = _this._semantics$_children, t2 = t1.length, i = 0; i < t2; ++i) if (t1[i]._semantics$_id !== newChildren[i]._semantics$_id) { sawChange = true; break; } _this._semantics$_children = newChildren; if (sawChange) _this._semantics$_markDirty$0(); }, get$hasChildren: function() { var t1 = this._semantics$_children; t1 = t1 == null ? null : t1.length !== 0; return t1 === true; }, _visitDescendants$1: function(visitor) { var t2, _i, child, t1 = this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; if (!visitor.call$1(child) || !child._visitDescendants$1(visitor)) return false; } return true; }, redepthChildren$0: function() { var t1 = this._semantics$_children; if (t1 != null) C.JSArray_methods.forEach$1(t1, this.get$redepthChild()); }, attach$1: function(owner) { var t1, t2, _i, _this = this; _this.super$AbstractNode$attach(owner); for (t1 = owner._nodes; t1.containsKey$1(0, _this._semantics$_id);) _this._semantics$_id = $.SemanticsNode__lastIdentifier = ($.SemanticsNode__lastIdentifier + 1) % 65535; t1.$indexSet(0, _this._semantics$_id, _this); owner._detachedNodes.remove$1(0, _this); if (_this._semantics$_dirty) { _this._semantics$_dirty = false; _this._semantics$_markDirty$0(); } t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].attach$1(owner); }, detach$0: function(_) { var t2, t3, _i, child, t4, _this = this, t1 = type$.nullable_SemanticsOwner; t1._as(B.AbstractNode.prototype.get$owner.call(_this))._nodes.remove$1(0, _this._semantics$_id); t1._as(B.AbstractNode.prototype.get$owner.call(_this))._detachedNodes.add$1(0, _this); _this.super$AbstractNode$detach(0); t1 = _this._semantics$_children; if (t1 != null) for (t2 = t1.length, t3 = type$.nullable_SemanticsNode, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; child.toString; t4 = J.getInterceptor$x(child); if (t3._as(B.AbstractNode.prototype.get$parent.call(t4, child)) === _this) t4.detach$0(child); } _this._semantics$_markDirty$0(); }, _semantics$_markDirty$0: function() { var _this = this; if (_this._semantics$_dirty) return; _this._semantics$_dirty = true; if (_this._node$_owner != null) type$.nullable_SemanticsOwner._as(B.AbstractNode.prototype.get$owner.call(_this))._semantics$_dirtyNodes.add$1(0, _this); }, get$value: function(_) { return this._semantics$_value; }, updateWith$2$childrenInInversePaintOrder$config: function(_, childrenInInversePaintOrder, config) { var _this = this; if (config == null) config = $.$get$SemanticsNode__kEmptyConfig(); if (_this._semantics$_label != config._semantics$_label || _this._semantics$_hint != config._semantics$_hint || _this._semantics$_elevation != config._semantics$_elevation || _this._semantics$_thickness !== config._semantics$_thickness || _this._semantics$_decreasedValue != config._semantics$_decreasedValue || _this._semantics$_value != config._semantics$_value || _this._semantics$_increasedValue != config._semantics$_increasedValue || _this._flags !== config._flags || _this._semantics$_textDirection != config._semantics$_textDirection || _this._semantics$_sortKey != config._semantics$_sortKey || !J.$eq$(_this._textSelection, config._textSelection) || _this._scrollPosition != config._scrollPosition || _this._scrollExtentMax != config._scrollExtentMax || _this._scrollExtentMin != config._scrollExtentMin || _this._actionsAsBits !== config._actionsAsBits || _this.indexInParent != config._indexInParent || _this._platformViewId != config._platformViewId || _this._semantics$_maxValueLength != config._semantics$_maxValueLength || _this._semantics$_currentValueLength != config._semantics$_currentValueLength || _this._mergeAllDescendantsIntoThisNode !== config._isMergingSemanticsOfDescendants) _this._semantics$_markDirty$0(); _this._semantics$_label = config._semantics$_label; _this._semantics$_decreasedValue = config._semantics$_decreasedValue; _this._semantics$_value = config._semantics$_value; _this._semantics$_increasedValue = config._semantics$_increasedValue; _this._semantics$_hint = config._semantics$_hint; _this._semantics$_hintOverrides = config._semantics$_hintOverrides; _this._semantics$_elevation = config._semantics$_elevation; _this._semantics$_thickness = config._semantics$_thickness; _this._flags = config._flags; _this._semantics$_textDirection = config._semantics$_textDirection; _this._semantics$_sortKey = config._semantics$_sortKey; _this._actions = P.LinkedHashMap_LinkedHashMap$from(config._actions, type$.SemanticsAction, type$.void_Function_nullable_Object); _this._semantics$_customSemanticsActions = P.LinkedHashMap_LinkedHashMap$from(config._semantics$_customSemanticsActions, type$.CustomSemanticsAction, type$.void_Function); _this._actionsAsBits = config._actionsAsBits; _this._textSelection = config._textSelection; _this._scrollPosition = config._scrollPosition; _this._scrollExtentMax = config._scrollExtentMax; _this._scrollExtentMin = config._scrollExtentMin; _this._mergeAllDescendantsIntoThisNode = config._isMergingSemanticsOfDescendants; _this._scrollChildCount = config._scrollChildCount; _this._scrollIndex = config._scrollIndex; _this.indexInParent = config._indexInParent; _this._platformViewId = config._platformViewId; _this._semantics$_maxValueLength = config._semantics$_maxValueLength; _this._semantics$_currentValueLength = config._semantics$_currentValueLength; _this._replaceChildren$1(childrenInInversePaintOrder == null ? C.List_empty16 : childrenInInversePaintOrder); }, updateWith$1$config: function($receiver, config) { return this.updateWith$2$childrenInInversePaintOrder$config($receiver, null, config); }, getSemanticsData$0: function() { var t1, elevation, customSemanticsActionIds, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _box_0 = {}; _box_0.flags = _this._flags; _box_0.actions = _this._actionsAsBits; _box_0.label = _this._semantics$_label; _box_0.hint = _this._semantics$_hint; _box_0.value = _this._semantics$_value; _box_0.increasedValue = _this._semantics$_increasedValue; _box_0.decreasedValue = _this._semantics$_decreasedValue; _box_0.textDirection = _this._semantics$_textDirection; t1 = _this.tags; _box_0.mergedTags = t1 == null ? null : P.LinkedHashSet_LinkedHashSet$from(t1, type$.SemanticsTag); _box_0.textSelection = _this._textSelection; _box_0.scrollChildCount = _this._scrollChildCount; _box_0.scrollIndex = _this._scrollIndex; _box_0.scrollPosition = _this._scrollPosition; _box_0.scrollExtentMax = _this._scrollExtentMax; _box_0.scrollExtentMin = _this._scrollExtentMin; _box_0.platformViewId = _this._platformViewId; _box_0.maxValueLength = _this._semantics$_maxValueLength; _box_0.currentValueLength = _this._semantics$_currentValueLength; elevation = _this._semantics$_elevation; _box_0.thickness = _this._semantics$_thickness; customSemanticsActionIds = P.LinkedHashSet_LinkedHashSet$_empty(type$.int); for (t1 = _this._semantics$_customSemanticsActions, t1 = t1.get$keys(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) customSemanticsActionIds.add$1(0, A.CustomSemanticsAction_getIdentifier(t1.get$current(t1))); t1 = _this._semantics$_hintOverrides; if (t1 != null) { t1 = t1.onTapHint; if (t1 != null) customSemanticsActionIds.add$1(0, A.CustomSemanticsAction_getIdentifier(new A.CustomSemanticsAction(null, t1, C.SemanticsAction_1))); _this._semantics$_hintOverrides.toString; } if (_this._mergeAllDescendantsIntoThisNode) _this._visitDescendants$1(new A.SemanticsNode_getSemanticsData_closure(_box_0, _this, customSemanticsActionIds)); t1 = _box_0.flags; t2 = _box_0.actions; t3 = _box_0.label; t4 = _box_0.value; t5 = _box_0.increasedValue; t6 = _box_0.decreasedValue; t7 = _box_0.hint; t8 = _box_0.textDirection; t9 = _this._semantics$_rect; t10 = _this._semantics$_transform; t11 = _box_0.thickness; t12 = _box_0.mergedTags; t13 = _box_0.textSelection; t14 = _box_0.scrollChildCount; t15 = _box_0.scrollIndex; t16 = _box_0.scrollPosition; t17 = _box_0.scrollExtentMax; t18 = _box_0.scrollExtentMin; t19 = _box_0.platformViewId; t20 = _box_0.maxValueLength; t21 = _box_0.currentValueLength; t22 = P.List_List$of(customSemanticsActionIds, true, customSemanticsActionIds.$ti._eval$1("SetMixin.E")); C.JSArray_methods.sort$0(t22); return new A.SemanticsData(t1, t2, t3, t4, t5, t6, t7, t8, t13, t14, t15, t16, t17, t18, t19, t20, t21, t9, t12, t10, elevation, t11, t22); }, _addToUpdate$2: function(builder, customSemanticsActionIdsUpdate) { var childrenInTraversalOrder, childrenInHitTestOrder, childCount, sortedChildren, i, t1, t2, customSemanticsActionIds, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, data = _this.getSemanticsData$0(); if (!_this.get$hasChildren() || _this._mergeAllDescendantsIntoThisNode) { childrenInTraversalOrder = $.$get$SemanticsNode__kEmptyChildList(); childrenInHitTestOrder = childrenInTraversalOrder; } else { childCount = _this._semantics$_children.length; sortedChildren = _this._childrenInTraversalOrder$0(); childrenInTraversalOrder = new Int32Array(childCount); for (i = 0; i < childCount; ++i) childrenInTraversalOrder[i] = sortedChildren[i]._semantics$_id; childrenInHitTestOrder = new Int32Array(childCount); for (i = childCount - 1, t1 = _this._semantics$_children; i >= 0; --i) childrenInHitTestOrder[i] = t1[childCount - i - 1]._semantics$_id; } t1 = data.customSemanticsActionIds; t2 = t1.length; if (t2 !== 0) { customSemanticsActionIds = new Int32Array(t2); for (i = 0; i < t1.length; ++i) { t2 = t1[i]; customSemanticsActionIds[i] = t2; customSemanticsActionIdsUpdate.add$1(0, t2); } } else customSemanticsActionIds = null; t1 = _this._semantics$_id; t2 = data.textSelection; t3 = t2 != null; t4 = t3 ? t2.baseOffset : -1; t2 = t3 ? t2.extentOffset : -1; t3 = data.scrollChildCount; if (t3 == null) t3 = 0; t5 = data.scrollIndex; if (t5 == null) t5 = 0; t6 = data.scrollPosition; if (t6 == null) t6 = 0 / 0; t7 = data.scrollExtentMax; if (t7 == null) t7 = 0 / 0; t8 = data.scrollExtentMin; if (t8 == null) t8 = 0 / 0; t9 = data.transform; t9 = t9 == null ? null : t9._m4storage; if (t9 == null) t9 = $.$get$SemanticsNode__kIdentityTransform(); t10 = customSemanticsActionIds == null ? $.$get$SemanticsNode__kEmptyCustomSemanticsActionsList() : customSemanticsActionIds; t9.length; builder._nodeUpdates.push(new H.SemanticsNodeUpdate(t1, data.flags, data.actions, t4, t2, t3, t5, t6, t7, t8, data.rect, data.label, data.hint, data.value, data.increasedValue, data.decreasedValue, data.textDirection, H.toMatrix32(t9), childrenInTraversalOrder, childrenInHitTestOrder, t10, data.thickness)); _this._semantics$_dirty = false; }, _childrenInTraversalOrder$0: function() { var t2, childrenInDefaultOrder, everythingSorted, sortNodes, lastSortKey, position, child, sortKey, isCompatibleWithPreviousSortKey, _this = this, inheritedTextDirection = _this._semantics$_textDirection, t1 = type$.nullable_SemanticsNode, ancestor = t1._as(B.AbstractNode.prototype.get$parent.call(_this, _this)); while (true) { t2 = inheritedTextDirection == null; if (!(t2 && ancestor != null)) break; inheritedTextDirection = ancestor._semantics$_textDirection; ancestor = t1._as(B.AbstractNode.prototype.get$parent.call(ancestor, ancestor)); } childrenInDefaultOrder = _this._semantics$_children; if (!t2) { childrenInDefaultOrder.toString; childrenInDefaultOrder = A._childrenInDefaultOrder(childrenInDefaultOrder, inheritedTextDirection); } t1 = type$.JSArray__TraversalSortNode; everythingSorted = H.setRuntimeTypeInfo([], t1); sortNodes = H.setRuntimeTypeInfo([], t1); for (lastSortKey = null, position = 0; position < childrenInDefaultOrder.length; ++position) { child = childrenInDefaultOrder[position]; sortKey = child._semantics$_sortKey; lastSortKey = position > 0 ? childrenInDefaultOrder[position - 1]._semantics$_sortKey : null; if (position !== 0) if (J.get$runtimeType$(sortKey) === J.get$runtimeType$(lastSortKey)) { if (sortKey != null) lastSortKey.toString; isCompatibleWithPreviousSortKey = true; } else isCompatibleWithPreviousSortKey = false; else isCompatibleWithPreviousSortKey = true; if (!isCompatibleWithPreviousSortKey && sortNodes.length !== 0) { if (lastSortKey != null) { if (!!sortNodes.immutable$list) H.throwExpression(P.UnsupportedError$("sort")); t1 = sortNodes.length - 1; if (t1 - 0 <= 32) H.Sort__insertionSort(sortNodes, 0, t1, J._interceptors_JSArray__compareAny$closure()); else H.Sort__dualPivotQuicksort(sortNodes, 0, t1, J._interceptors_JSArray__compareAny$closure()); } C.JSArray_methods.addAll$1(everythingSorted, sortNodes); C.JSArray_methods.set$length(sortNodes, 0); } sortNodes.push(new A._TraversalSortNode(child, sortKey, position)); } if (lastSortKey != null) C.JSArray_methods.sort$0(sortNodes); C.JSArray_methods.addAll$1(everythingSorted, sortNodes); t1 = type$.MappedListIterable__TraversalSortNode_SemanticsNode; return P.List_List$of(new H.MappedListIterable(everythingSorted, new A.SemanticsNode__childrenInTraversalOrder_closure(), t1), true, t1._eval$1("ListIterable.E")); }, sendEvent$1: function($event) { if (this._node$_owner == null) return; C.BasicMessageChannel_8hp.send$1(0, $event.toMap$1$nodeId(this._semantics$_id)); }, toStringShort$0: function() { return "SemanticsNode#" + this._semantics$_id; }, toStringDeep$1$childOrder: function(childOrder) { A._SemanticsDiagnosticableNode$(childOrder, null, C.DiagnosticsTreeStyle_1, this); return ""; }, toDiagnosticsNode$3$childOrder$name$style: function(childOrder, $name, style) { return new A._SemanticsDiagnosticableNode(childOrder, this, $name, true, true, null, style); }, toDiagnosticsNode$1$style: function(style) { return this.toDiagnosticsNode$3$childOrder$name$style(C.DebugSemanticsDumpOrder_1, null, style); }, toDiagnosticsNode$0: function() { return this.toDiagnosticsNode$3$childOrder$name$style(C.DebugSemanticsDumpOrder_1, null, C.DiagnosticsTreeStyle_1); }, debugDescribeChildren$1$childOrder: function(childOrder) { var t2, t1 = this.debugListChildrenInOrder$1(childOrder); t1.toString; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return P.List_List$of(new H.MappedListIterable(t1, new A.SemanticsNode_debugDescribeChildren_closure(childOrder), t2), true, t2._eval$1("ListIterable.E")); }, debugDescribeChildren$0: function() { return this.debugDescribeChildren$1$childOrder(C.DebugSemanticsDumpOrder_0); }, debugListChildrenInOrder$1: function(childOrder) { var t1 = this._semantics$_children; if (t1 == null) return C.List_empty16; switch (childOrder) { case C.DebugSemanticsDumpOrder_0: return t1; case C.DebugSemanticsDumpOrder_1: return this._childrenInTraversalOrder$0(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $isDiagnosticableTree: 1 }; A.SemanticsNode_getSemanticsData_closure.prototype = { call$1: function(node) { var t2, t3, t1 = this._box_0; t1.flags = t1.flags | node._flags; t1.actions = t1.actions | node._actionsAsBits; if (t1.textDirection == null) t1.textDirection = node._semantics$_textDirection; if (t1.textSelection == null) t1.textSelection = node._textSelection; if (t1.scrollChildCount == null) t1.scrollChildCount = node._scrollChildCount; if (t1.scrollIndex == null) t1.scrollIndex = node._scrollIndex; if (t1.scrollPosition == null) t1.scrollPosition = node._scrollPosition; if (t1.scrollExtentMax == null) t1.scrollExtentMax = node._scrollExtentMax; if (t1.scrollExtentMin == null) t1.scrollExtentMin = node._scrollExtentMin; if (t1.platformViewId == null) t1.platformViewId = node._platformViewId; if (t1.maxValueLength == null) t1.maxValueLength = node._semantics$_maxValueLength; if (t1.currentValueLength == null) t1.currentValueLength = node._semantics$_currentValueLength; t2 = t1.value; if (t2 === "" || t2 == null) t1.value = node._semantics$_value; t2 = t1.increasedValue; if (t2 === "" || t2 == null) t1.increasedValue = node._semantics$_increasedValue; t2 = t1.decreasedValue; if (t2 === "" || t2 == null) t1.decreasedValue = node._semantics$_decreasedValue; t2 = node.tags; if (t2 != null) { t3 = t1.mergedTags; (t3 == null ? t1.mergedTags = P.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t3).addAll$1(0, t2); } for (t2 = this.$this._semantics$_customSemanticsActions, t2 = t2.get$keys(t2), t2 = t2.get$iterator(t2), t3 = this.customSemanticsActionIds; t2.moveNext$0();) t3.add$1(0, A.CustomSemanticsAction_getIdentifier(t2.get$current(t2))); t2 = node._semantics$_hintOverrides; if (t2 != null) { t2 = t2.onTapHint; if (t2 != null) t3.add$1(0, A.CustomSemanticsAction_getIdentifier(new A.CustomSemanticsAction(null, t2, C.SemanticsAction_1))); node._semantics$_hintOverrides.toString; } t2 = t1.label; t3 = t1.textDirection; t1.label = A._concatStrings(node._semantics$_label, node._semantics$_textDirection, t2, t3); t3 = t1.hint; t2 = t1.textDirection; t1.hint = A._concatStrings(node._semantics$_hint, node._semantics$_textDirection, t3, t2); t1.thickness = Math.max(t1.thickness, node._semantics$_thickness + node._semantics$_elevation); return true; }, $signature: 427 }; A.SemanticsNode__childrenInTraversalOrder_closure.prototype = { call$1: function(sortNode) { return sortNode.node; }, $signature: 2706 }; A.SemanticsNode_debugDescribeChildren_closure.prototype = { call$1: function(node) { node.toString; return A._SemanticsDiagnosticableNode$(this.childOrder, null, C.DiagnosticsTreeStyle_1, node); }, $signature: 2756 }; A._BoxEdge.prototype = { compareTo$1: function(_, other) { return C.JSNumber_methods.toInt$0(J.get$sign$in(this.offset - other.offset)); }, $isComparable: 1 }; A._SemanticsSortGroup.prototype = { compareTo$1: function(_, other) { return C.JSNumber_methods.toInt$0(J.get$sign$in(this.startOffset - other.startOffset)); }, sortedWithinVerticalGroup$0: function() { var t1, t2, _i, child, t3, t4, t5, t6, horizontalGroups, group, depth, edge, edges = H.setRuntimeTypeInfo([], type$.JSArray__BoxEdge); for (t1 = this.nodes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; t3 = child._semantics$_rect; t4 = t3.left; t5 = t3.top; t6 = t3.right; t3 = t3.bottom; edges.push(new A._BoxEdge(true, A._pointInParentCoordinates(child, new P.Offset(t4 - -0.1, t5 - -0.1))._dx, child)); edges.push(new A._BoxEdge(false, A._pointInParentCoordinates(child, new P.Offset(t6 + -0.1, t3 + -0.1))._dx, child)); } C.JSArray_methods.sort$0(edges); horizontalGroups = H.setRuntimeTypeInfo([], type$.JSArray__SemanticsSortGroup); for (t1 = edges.length, t2 = this.textDirection, t3 = type$.JSArray_SemanticsNode, group = null, depth = 0, _i = 0; _i < edges.length; edges.length === t1 || (0, H.throwConcurrentModificationError)(edges), ++_i) { edge = edges[_i]; if (edge.isLeadingEdge) { ++depth; if (group == null) group = new A._SemanticsSortGroup(edge.offset, t2, H.setRuntimeTypeInfo([], t3)); group.nodes.push(edge.node); } else --depth; if (depth === 0) { group.toString; horizontalGroups.push(group); group = null; } } C.JSArray_methods.sort$0(horizontalGroups); if (t2 === C.TextDirection_0) { t1 = type$.ReversedListIterable__SemanticsSortGroup; horizontalGroups = P.List_List$of(new H.ReversedListIterable(horizontalGroups, t1), true, t1._eval$1("ListIterable.E")); } t1 = H._arrayInstanceType(horizontalGroups)._eval$1("ExpandIterable<1,SemanticsNode>"); return P.List_List$of(new H.ExpandIterable(horizontalGroups, new A._SemanticsSortGroup_sortedWithinVerticalGroup_closure(), t1), true, t1._eval$1("Iterable.E")); }, sortedWithinKnot$0: function() { var t3, nodeMap, edges, t4, t5, t6, _i, node, t7, t8, t9, center, _i0, nextNode, t10, t11, t12, nextCenter, direction, isLtrAndForward, isRtlAndForward, sortedIds, startNodes, t1 = this.nodes, t2 = t1.length; if (t2 <= 1) return t1; t3 = type$.int; nodeMap = P.LinkedHashMap_LinkedHashMap$_empty(t3, type$.SemanticsNode); edges = P.LinkedHashMap_LinkedHashMap$_empty(t3, t3); for (t4 = this.textDirection, t5 = t4 === C.TextDirection_0, t4 = t4 === C.TextDirection_1, t6 = t2, _i = 0; _i < t6; t9 === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i, t6 = t9) { node = t1[_i]; nodeMap.$indexSet(0, node._semantics$_id, node); t6 = node._semantics$_rect; t7 = t6.left; t8 = t6.right; t9 = t6.top; center = A._pointInParentCoordinates(node, new P.Offset(t7 + (t8 - t7) / 2, t9 + (t6.bottom - t9) / 2)); for (t6 = t1.length, t7 = center._dx, t8 = center._dy, _i0 = 0; t9 = t1.length, _i0 < t9; t1.length === t6 || (0, H.throwConcurrentModificationError)(t1), ++_i0) { nextNode = t1[_i0]; if ((node == null ? nextNode == null : node === nextNode) || edges.$index(0, nextNode._semantics$_id) === node._semantics$_id) continue; t9 = nextNode._semantics$_rect; t10 = t9.left; t11 = t9.right; t12 = t9.top; nextCenter = A._pointInParentCoordinates(nextNode, new P.Offset(t10 + (t11 - t10) / 2, t12 + (t9.bottom - t12) / 2)); direction = Math.atan2(nextCenter._dy - t8, nextCenter._dx - t7); isLtrAndForward = t4 && -0.7853981633974483 < direction && direction < 2.356194490192345; if (t5) isRtlAndForward = direction < -2.356194490192345 || direction > 2.356194490192345; else isRtlAndForward = false; if (isLtrAndForward || isRtlAndForward) edges.$indexSet(0, node._semantics$_id, nextNode._semantics$_id); } } sortedIds = H.setRuntimeTypeInfo([], type$.JSArray_int); startNodes = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); C.JSArray_methods.sort$1(startNodes, new A._SemanticsSortGroup_sortedWithinKnot_closure()); new H.MappedListIterable(startNodes, new A._SemanticsSortGroup_sortedWithinKnot_closure0(), H._arrayInstanceType(startNodes)._eval$1("MappedListIterable<1,int>")).forEach$1(0, new A._SemanticsSortGroup_sortedWithinKnot_search(P.LinkedHashSet_LinkedHashSet$_empty(t3), edges, sortedIds)); t1 = type$.MappedListIterable_int_SemanticsNode; t1 = P.List_List$of(new H.MappedListIterable(sortedIds, new A._SemanticsSortGroup_sortedWithinKnot_closure1(nodeMap), t1), true, t1._eval$1("ListIterable.E")); t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); return P.List_List$of(new H.ReversedListIterable(t1, t2), true, t2._eval$1("ListIterable.E")); } }; A._SemanticsSortGroup_sortedWithinVerticalGroup_closure.prototype = { call$1: function(group) { return group.sortedWithinKnot$0(); }, $signature: 544 }; A._SemanticsSortGroup_sortedWithinKnot_closure.prototype = { call$2: function(a, b) { var bTopLeft, verticalDiff, t1 = a._semantics$_rect, aTopLeft = A._pointInParentCoordinates(a, new P.Offset(t1.left, t1.top)); t1 = b._semantics$_rect; bTopLeft = A._pointInParentCoordinates(b, new P.Offset(t1.left, t1.top)); verticalDiff = J.compareTo$1$ns(aTopLeft._dy, bTopLeft._dy); if (verticalDiff !== 0) return -verticalDiff; return -J.compareTo$1$ns(aTopLeft._dx, bTopLeft._dx); }, $signature: 430 }; A._SemanticsSortGroup_sortedWithinKnot_search.prototype = { call$1: function(id) { var _this = this, t1 = _this.visitedIds; if (t1.contains$1(0, id)) return; t1.add$1(0, id); t1 = _this.edges; if (t1.containsKey$1(0, id)) { t1 = t1.$index(0, id); t1.toString; _this.call$1(t1); } _this.sortedIds.push(id); }, $signature: 67 }; A._SemanticsSortGroup_sortedWithinKnot_closure0.prototype = { call$1: function(node) { return node._semantics$_id; }, $signature: 3298 }; A._SemanticsSortGroup_sortedWithinKnot_closure1.prototype = { call$1: function(id) { var t1 = this.nodeMap.$index(0, id); t1.toString; return t1; }, $signature: 3195 }; A._childrenInDefaultOrder_closure.prototype = { call$1: function(group) { return group.sortedWithinVerticalGroup$0(); }, $signature: 544 }; A._TraversalSortNode.prototype = { compareTo$1: function(_, other) { var t2, t1 = this.sortKey; if (t1 == null || other.sortKey == null) return this.position - other.position; t1.toString; t2 = other.sortKey; t2.toString; return t1.compareTo$1(0, t2); }, $isComparable: 1 }; A.SemanticsOwner.prototype = { dispose$0: function(_) { var _this = this; _this._semantics$_dirtyNodes.clear$0(0); _this._nodes.clear$0(0); _this._detachedNodes.clear$0(0); _this.super$ChangeNotifier$dispose(0); }, sendSemanticsUpdate$0: function() { var customSemanticsActionIds, visitedNodes, t2, t3, t4, t5, localDirtyNodes, t6, t7, _i, node, t8, builder, _this = this, t1 = _this._semantics$_dirtyNodes; if (t1._collection$_length === 0) return; customSemanticsActionIds = P.LinkedHashSet_LinkedHashSet$_empty(type$.int); visitedNodes = H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNode); for (t2 = type$.nullable_SemanticsNode, t3 = H._instanceType(t1)._eval$1("WhereIterable"), t4 = t3._eval$1("Iterable.E"), t5 = _this._detachedNodes; t1._collection$_length !== 0;) { localDirtyNodes = P.List_List$of(new H.WhereIterable(t1, new A.SemanticsOwner_sendSemanticsUpdate_closure(_this), t3), true, t4); t1.clear$0(0); t5.clear$0(0); t6 = new A.SemanticsOwner_sendSemanticsUpdate_closure0(); if (!!localDirtyNodes.immutable$list) H.throwExpression(P.UnsupportedError$("sort")); t7 = localDirtyNodes.length - 1; if (t7 - 0 <= 32) H.Sort__insertionSort(localDirtyNodes, 0, t7, t6); else H.Sort__dualPivotQuicksort(localDirtyNodes, 0, t7, t6); C.JSArray_methods.addAll$1(visitedNodes, localDirtyNodes); for (t6 = localDirtyNodes.length, _i = 0; _i < localDirtyNodes.length; localDirtyNodes.length === t6 || (0, H.throwConcurrentModificationError)(localDirtyNodes), ++_i) { node = localDirtyNodes[_i]; if (node._mergeAllDescendantsIntoThisNode || node._isMergedIntoParent) { t7 = J.getInterceptor$x(node); if (t2._as(B.AbstractNode.prototype.get$parent.call(t7, node)) != null) { t8 = t2._as(B.AbstractNode.prototype.get$parent.call(t7, node)); t8 = t8._mergeAllDescendantsIntoThisNode || t8._isMergedIntoParent; } else t8 = false; if (t8) { t2._as(B.AbstractNode.prototype.get$parent.call(t7, node))._semantics$_markDirty$0(); node._semantics$_dirty = false; } } } } C.JSArray_methods.sort$1(visitedNodes, new A.SemanticsOwner_sendSemanticsUpdate_closure1()); $.SemanticsBinding__instance.toString; builder = new P.SemanticsUpdateBuilder(H.setRuntimeTypeInfo([], type$.JSArray_SemanticsNodeUpdate)); for (t2 = visitedNodes.length, _i = 0; _i < visitedNodes.length; visitedNodes.length === t2 || (0, H.throwConcurrentModificationError)(visitedNodes), ++_i) { node = visitedNodes[_i]; if (node._semantics$_dirty && node._node$_owner != null) node._addToUpdate$2(builder, customSemanticsActionIds); } t1.clear$0(0); for (t1 = P._LinkedHashSetIterator$(customSemanticsActionIds, customSemanticsActionIds._collection$_modifications, customSemanticsActionIds.$ti._precomputed1); t1.moveNext$0();) { t2 = $.CustomSemanticsAction__actions.$index(0, t1._collection$_current).action; t2 == null; } $.SemanticsBinding__instance.toString; $.$get$window().platformDispatcher.toString; t1 = $.EngineSemanticsOwner__instance; if (t1 == null) t1 = $.EngineSemanticsOwner__instance = H.EngineSemanticsOwner$_(); t1.updateSemantics$1(new H.SemanticsUpdate(builder._nodeUpdates)); _this.notifyListeners$0(); }, _getSemanticsActionHandlerForId$2: function(id, action) { var t2, t1 = {}, result = t1.result = this._nodes.$index(0, id); if (result != null) t2 = (result._mergeAllDescendantsIntoThisNode || result._isMergedIntoParent) && !result._actions.containsKey$1(0, action); else t2 = false; if (t2) result._visitDescendants$1(new A.SemanticsOwner__getSemanticsActionHandlerForId_closure(t1, action)); t2 = t1.result; if (t2 == null || !t2._actions.containsKey$1(0, action)) return null; return t1.result._actions.$index(0, action); }, performAction$3: function(id, action, args) { var handler = this._getSemanticsActionHandlerForId$2(id, action); if (handler != null) { handler.call$1(args); return; } if (action === C.SemanticsAction_256 && this._nodes.$index(0, id)._showOnScreen != null) this._nodes.$index(0, id)._showOnScreen.call$0(); }, toString$0: function(_) { return "#" + Y.shortHash(this); } }; A.SemanticsOwner_sendSemanticsUpdate_closure.prototype = { call$1: function(node) { return !this.$this._detachedNodes.contains$1(0, node); }, $signature: 427 }; A.SemanticsOwner_sendSemanticsUpdate_closure0.prototype = { call$2: function(a, b) { return a._node$_depth - b._node$_depth; }, $signature: 430 }; A.SemanticsOwner_sendSemanticsUpdate_closure1.prototype = { call$2: function(a, b) { return a._node$_depth - b._node$_depth; }, $signature: 430 }; A.SemanticsOwner__getSemanticsActionHandlerForId_closure.prototype = { call$1: function(node) { if (node._actions.containsKey$1(0, this.action)) { this._box_0.result = node; return false; } return true; }, $signature: 427 }; A.SemanticsConfiguration.prototype = { _addAction$2: function(action, handler) { var _this = this; _this._actions.$indexSet(0, action, handler); _this._actionsAsBits = _this._actionsAsBits | action.index; _this._hasBeenAnnotated = true; }, _addArgumentlessAction$2: function(action, handler) { this._addAction$2(action, new A.SemanticsConfiguration__addArgumentlessAction_closure(handler)); }, set$onTap: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_1, value); }, set$onLongPress: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_2, value); }, set$onScrollLeft: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_4, value); }, set$onDismiss: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_262144, value); }, set$onScrollRight: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_8, value); }, set$onScrollUp: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_16, value); }, set$onScrollDown: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_32, value); }, set$onIncrease: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_64, value); }, set$onDecrease: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_128, value); }, set$onCopy: function(_, value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_4096, value); }, set$onCut: function(_, value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_8192, value); }, set$onPaste: function(_, value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_16384, value); }, set$onMoveCursorForwardByCharacter: function(value) { this._addAction$2(C.SemanticsAction_512, new A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure(value)); }, set$onMoveCursorBackwardByCharacter: function(value) { this._addAction$2(C.SemanticsAction_1024, new A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure(value)); }, set$onMoveCursorForwardByWord: function(value) { this._addAction$2(C.SemanticsAction_524288, new A.SemanticsConfiguration_onMoveCursorForwardByWord_closure(value)); }, set$onMoveCursorBackwardByWord: function(value) { this._addAction$2(C.SemanticsAction_1048576, new A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure(value)); }, set$onSetSelection: function(value) { this._addAction$2(C.SemanticsAction_2048, new A.SemanticsConfiguration_onSetSelection_closure(value)); }, set$onSetText: function(value) { this._addAction$2(C.SemanticsAction_2097152, new A.SemanticsConfiguration_onSetText_closure(value)); }, set$onDidGainAccessibilityFocus: function(value) { value.toString; this._addArgumentlessAction$2(C.SemanticsAction_32768, value); }, set$scrollChildCount: function(value) { if (value == this._scrollChildCount) return; this._scrollChildCount = value; this._hasBeenAnnotated = true; }, set$scrollIndex: function(value) { if (value == this._scrollIndex) return; this._scrollIndex = value; this._hasBeenAnnotated = true; }, set$platformViewId: function(value) { if (value == this._platformViewId) return; this._platformViewId = value; this._hasBeenAnnotated = true; }, set$maxValueLength: function(value) { if (value == this._semantics$_maxValueLength) return; this._semantics$_maxValueLength = value; this._hasBeenAnnotated = true; }, set$currentValueLength: function(value) { if (value == this._semantics$_currentValueLength) return; this._semantics$_currentValueLength = value; this._hasBeenAnnotated = true; }, _onCustomSemanticsAction$1: function(args) { var action, callback; args.toString; action = $.CustomSemanticsAction__actions.$index(0, H._asIntS(args)); if (action == null) return; callback = this._semantics$_customSemanticsActions.$index(0, action); if (callback != null) callback.call$0(); }, get$value: function(_) { return this._semantics$_value; }, set$hintOverrides: function(value) { if (value == null) return; this._semantics$_hintOverrides = value; this._hasBeenAnnotated = true; }, set$elevation: function(_, value) { if (value == this._semantics$_elevation) return; this._semantics$_elevation = value; this._hasBeenAnnotated = true; }, addTagForChildren$1: function(tag) { var t1 = this._tagsForChildren; (t1 == null ? this._tagsForChildren = P.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsTag) : t1).add$1(0, tag); }, _setFlag$2: function(flag, value) { var _this = this, t1 = _this._flags, t2 = flag.index; if (value) _this._flags = t1 | t2; else _this._flags = t1 & ~t2; _this._hasBeenAnnotated = true; }, isCompatibleWith$1: function(other) { var t1, _this = this; if (other == null || !other._hasBeenAnnotated || !_this._hasBeenAnnotated) return true; if ((_this._actionsAsBits & other._actionsAsBits) !== 0) return false; if ((_this._flags & other._flags) !== 0) return false; if (_this._platformViewId != null && other._platformViewId != null) return false; if (_this._semantics$_maxValueLength != null && other._semantics$_maxValueLength != null) return false; if (_this._semantics$_currentValueLength != null && other._semantics$_currentValueLength != null) return false; t1 = _this._semantics$_value; if (t1 != null) if (t1.length !== 0) { t1 = other._semantics$_value; t1 = t1 != null && t1.length !== 0; } else t1 = false; else t1 = false; if (t1) return false; return true; }, absorb$1: function(child) { var t1, t2, _this = this; if (!child._hasBeenAnnotated) return; _this._actions.addAll$1(0, child._actions); _this._semantics$_customSemanticsActions.addAll$1(0, child._semantics$_customSemanticsActions); _this._actionsAsBits = _this._actionsAsBits | child._actionsAsBits; _this._flags = _this._flags | child._flags; if (_this._textSelection == null) _this._textSelection = child._textSelection; if (_this._scrollPosition == null) _this._scrollPosition = child._scrollPosition; if (_this._scrollExtentMax == null) _this._scrollExtentMax = child._scrollExtentMax; if (_this._scrollExtentMin == null) _this._scrollExtentMin = child._scrollExtentMin; if (_this._semantics$_hintOverrides == null) _this._semantics$_hintOverrides = child._semantics$_hintOverrides; if (_this._indexInParent == null) _this._indexInParent = child._indexInParent; if (_this._scrollIndex == null) _this._scrollIndex = child._scrollIndex; if (_this._scrollChildCount == null) _this._scrollChildCount = child._scrollChildCount; if (_this._platformViewId == null) _this._platformViewId = child._platformViewId; if (_this._semantics$_maxValueLength == null) _this._semantics$_maxValueLength = child._semantics$_maxValueLength; if (_this._semantics$_currentValueLength == null) _this._semantics$_currentValueLength = child._semantics$_currentValueLength; t1 = _this._semantics$_textDirection; if (t1 == null) { t1 = _this._semantics$_textDirection = child._semantics$_textDirection; _this._hasBeenAnnotated = true; } if (_this._semantics$_sortKey == null) _this._semantics$_sortKey = child._semantics$_sortKey; t2 = _this._semantics$_label; _this._semantics$_label = A._concatStrings(child._semantics$_label, child._semantics$_textDirection, t2, t1); t1 = _this._semantics$_decreasedValue; if (t1 === "" || t1 == null) _this._semantics$_decreasedValue = child._semantics$_decreasedValue; t1 = _this._semantics$_value; if (t1 === "" || t1 == null) _this._semantics$_value = child._semantics$_value; t1 = _this._semantics$_increasedValue; if (t1 === "" || t1 == null) _this._semantics$_increasedValue = child._semantics$_increasedValue; t1 = _this._semantics$_hint; t2 = _this._semantics$_textDirection; _this._semantics$_hint = A._concatStrings(child._semantics$_hint, child._semantics$_textDirection, t1, t2); _this._semantics$_thickness = Math.max(_this._semantics$_thickness, child._semantics$_thickness + child._semantics$_elevation); _this._hasBeenAnnotated = _this._hasBeenAnnotated || child._hasBeenAnnotated; }, copy$0: function(_) { var _this = this, t1 = A.SemanticsConfiguration$(); t1._isSemanticBoundary = _this._isSemanticBoundary; t1.explicitChildNodes = _this.explicitChildNodes; t1.isBlockingSemanticsOfPreviouslyPaintedNodes = _this.isBlockingSemanticsOfPreviouslyPaintedNodes; t1._hasBeenAnnotated = _this._hasBeenAnnotated; t1._isMergingSemanticsOfDescendants = _this._isMergingSemanticsOfDescendants; t1._semantics$_textDirection = _this._semantics$_textDirection; t1._semantics$_sortKey = _this._semantics$_sortKey; t1._semantics$_label = _this._semantics$_label; t1._semantics$_increasedValue = _this._semantics$_increasedValue; t1._semantics$_value = _this._semantics$_value; t1._semantics$_decreasedValue = _this._semantics$_decreasedValue; t1._semantics$_hint = _this._semantics$_hint; t1._semantics$_hintOverrides = _this._semantics$_hintOverrides; t1._semantics$_elevation = _this._semantics$_elevation; t1._semantics$_thickness = _this._semantics$_thickness; t1._flags = _this._flags; t1._tagsForChildren = _this._tagsForChildren; t1._textSelection = _this._textSelection; t1._scrollPosition = _this._scrollPosition; t1._scrollExtentMax = _this._scrollExtentMax; t1._scrollExtentMin = _this._scrollExtentMin; t1._actionsAsBits = _this._actionsAsBits; t1._indexInParent = _this._indexInParent; t1._scrollIndex = _this._scrollIndex; t1._scrollChildCount = _this._scrollChildCount; t1._platformViewId = _this._platformViewId; t1._semantics$_maxValueLength = _this._semantics$_maxValueLength; t1._semantics$_currentValueLength = _this._semantics$_currentValueLength; t1._actions.addAll$1(0, _this._actions); t1._semantics$_customSemanticsActions.addAll$1(0, _this._semantics$_customSemanticsActions); return t1; } }; A.SemanticsConfiguration__addArgumentlessAction_closure.prototype = { call$1: function(args) { this.handler.call$0(); }, $signature: 33 }; A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure.prototype = { call$1: function(args) { args.toString; this.value.call$1(H._asBoolS(args)); }, $signature: 33 }; A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure.prototype = { call$1: function(args) { args.toString; this.value.call$1(H._asBoolS(args)); }, $signature: 33 }; A.SemanticsConfiguration_onMoveCursorForwardByWord_closure.prototype = { call$1: function(args) { args.toString; this.value.call$1(H._asBoolS(args)); }, $signature: 33 }; A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure.prototype = { call$1: function(args) { args.toString; this.value.call$1(H._asBoolS(args)); }, $signature: 33 }; A.SemanticsConfiguration_onSetSelection_closure.prototype = { call$1: function(args) { var selection, t1, t2, t3; args.toString; selection = J.cast$2$0$ax(type$.Map_dynamic_dynamic._as(args), type$.String, type$.int); t1 = this.value; t1.toString; t2 = selection.$index(0, "base"); t2.toString; t3 = selection.$index(0, "extent"); t3.toString; t1.call$1(X.TextSelection$(C.TextAffinity_1, t2, t3, false)); }, $signature: 33 }; A.SemanticsConfiguration_onSetText_closure.prototype = { call$1: function(args) { args.toString; this.value.call$1(H._asStringS(args)); }, $signature: 33 }; A.DebugSemanticsDumpOrder.prototype = { toString$0: function(_) { return this._semantics$_name; } }; A.SemanticsSortKey.prototype = { compareTo$1: function(_, other) { var t1; other.toString; t1 = this.doCompare$1(other); return t1; }, $isComparable: 1, get$name: function(receiver) { return this.name; } }; A.OrdinalSortKey.prototype = { doCompare$1: function(other) { var t1 = other.order === this.order; if (t1) return 0; return C.JSInt_methods.compareTo$1(this.order, other.order); } }; A._SemanticsData_Object_Diagnosticable.prototype = {}; A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin.prototype = {}; A._SemanticsSortKey_Object_Diagnosticable.prototype = {}; E.SemanticsEvent.prototype = { toMap$1$nodeId: function(nodeId) { var $event = P.LinkedHashMap_LinkedHashMap$_literal(["type", this.type, "data", this.getDataMap$0()], type$.String, type$.dynamic); if (nodeId != null) $event.$indexSet(0, "nodeId", nodeId); return $event; }, toMap$0: function() { return this.toMap$1$nodeId(null); }, toString$0: function(_) { var t2, pairs = H.setRuntimeTypeInfo([], type$.JSArray_String), dataMap = this.getDataMap$0(), sortedKeys = J.toList$0$ax(dataMap.get$keys(dataMap)), t1 = J.getInterceptor$ax(sortedKeys); t1.sort$0(sortedKeys); for (t1 = t1.get$iterator(sortedKeys); t1.moveNext$0();) { t2 = t1.get$current(t1); pairs.push(H.S(t2) + ": " + H.S(dataMap.$index(0, t2))); } return "SemanticsEvent(" + C.JSArray_methods.join$1(pairs, ", ") + ")"; } }; E.AnnounceSemanticsEvent.prototype = { getDataMap$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["message", this.message, "textDirection", this.textDirection.index], type$.String, type$.dynamic); } }; E.TooltipSemanticsEvent.prototype = { getDataMap$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["message", this.message], type$.String, type$.dynamic); } }; E.LongPressSemanticsEvent.prototype = { getDataMap$0: function() { return C.Map_empty4; } }; E.TapSemanticEvent.prototype = { getDataMap$0: function() { return C.Map_empty4; } }; Q.AssetBundle.prototype = { loadString$2$cache: function(key, cache) { return this.loadString$body$AssetBundle(key, true); }, loadString$body$AssetBundle: function(key, cache) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.String), $async$returnValue, $async$self = this, t1, data; var $async$loadString$2$cache = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.load$1(0, key), $async$loadString$2$cache); case 3: // returning from await. data = $async$result; if (data == null) throw H.wrapException(U.FlutterError_FlutterError("Unable to load asset: " + key)); t1 = J.getInterceptor$x(data); if (t1.get$lengthInBytes(data) < 51200) { $async$returnValue = C.C_Utf8Codec.decode$1(0, J.asUint8List$0$x(t1.get$buffer(data))); // goto return $async$goto = 1; break; } $async$returnValue = U.compute(Q.asset_bundle_AssetBundle__utf8decode$closure(), data, 'UTF8 decode for "' + key + '"', type$.ByteData, type$.String); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadString$2$cache, $async$completer); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "()"; } }; Q.CachingAssetBundle.prototype = { loadString$2$cache: function(key, cache) { return this.super$AssetBundle$loadString(key, true); }, loadStructuredData$1$2: function(key, parser, $T) { var t3, t1 = {}, t2 = this._structuredDataCache; if (t2.containsKey$1(0, key)) { t1 = t2.$index(0, key); t1.toString; return $T._eval$1("Future<0>")._as(t1); } t1.result = t1.completer = null; this.loadString$2$cache(key, false).then$1$1(0, parser, $T).then$1$1(0, new Q.CachingAssetBundle_loadStructuredData_closure(t1, this, key, $T), type$.void); t3 = t1.result; if (t3 != null) return t3; t3 = new P._Future($.Zone__current, $T._eval$1("_Future<0>")); t1.completer = new P._AsyncCompleter(t3, $T._eval$1("_AsyncCompleter<0>")); t2.$indexSet(0, key, t3); return t1.completer.future; } }; Q.CachingAssetBundle_loadStructuredData_closure.prototype = { call$1: function(value) { var _this = this, result = new O.SynchronousFuture(value, _this.T._eval$1("SynchronousFuture<0>")), t1 = _this._box_0; t1.result = result; _this.$this._structuredDataCache.$indexSet(0, _this.key, result); t1 = t1.completer; if (t1 != null) t1.complete$1(0, value); }, $signature: function() { return this.T._eval$1("Null(0)"); } }; Q.PlatformAssetBundle.prototype = { load$1: function(_, key) { return this.load$body$PlatformAssetBundle(_, key); }, load$body$PlatformAssetBundle: function(_, key) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.ByteData), $async$returnValue, encoded, asset; var $async$load$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start encoded = C.C_Utf8Encoder.convert$1(P._Uri__Uri(null, P._Uri__uriEncode(C.List_gnE, key, C.C_Utf8Codec, false), null, null).path); $async$goto = 3; return P._asyncAwait($.ServicesBinding__instance.get$_defaultBinaryMessenger().send$2(0, "flutter/assets", H.NativeByteData_NativeByteData$view(encoded.buffer, 0, null)), $async$load$1); case 3: // returning from await. asset = $async$result; if (asset == null) throw H.wrapException(U.FlutterError_FlutterError("Unable to load asset: " + H.S(key))); $async$returnValue = asset; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$load$1, $async$completer); } }; F.AutofillConfiguration.prototype = { toJson$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["uniqueIdentifier", this.uniqueIdentifier, "hints", this.autofillHints, "editingValue", this.currentEditingValue.toJSON$0()], type$.String, type$.dynamic); } }; F._AutofillScopeTextInputConfiguration.prototype = { toJson$0: function() { var result = this.super$TextInputConfiguration$toJson(), t1 = this.allConfigurations; t1 = H.MappedIterable_MappedIterable(t1, new F._AutofillScopeTextInputConfiguration_toJson_closure(), t1.$ti._eval$1("Iterable.E"), type$.Map_String_dynamic); result.$indexSet(0, "fields", P.List_List$of(t1, false, H._instanceType(t1)._eval$1("Iterable.E"))); return result; } }; F._AutofillScopeTextInputConfiguration_toJson_closure.prototype = { call$1: function(configuration) { return configuration.toJson$0(); }, $signature: 3171 }; F.AutofillScopeMixin.prototype = { attach$2: function(trigger, configuration) { var t1 = this.get$autofillClients(), connection = N.TextInputConnection$_(trigger); $.$get$TextInput__instance()._attach$2(connection, new F._AutofillScopeTextInputConfiguration(new H.MappedIterable(t1, new F.AutofillScopeMixin_attach_closure(), t1.$ti._eval$1("MappedIterable<1,TextInputConfiguration>")), configuration.inputType, false, configuration.obscureText, configuration.autocorrect, configuration.autofillConfiguration, configuration.smartDashesType, configuration.smartQuotesType, true, configuration.actionLabel, configuration.inputAction, configuration.textCapitalization, configuration.keyboardAppearance)); return connection; } }; F.AutofillScopeMixin_attach_closure.prototype = { call$1: function(client) { return client._createTextInputConfiguration$1(client.get$_needsAutofill()); }, $signature: 3145 }; Q.BinaryMessenger.prototype = {}; N.ServicesBinding.prototype = { get$_defaultBinaryMessenger: function() { var t1 = this.ServicesBinding___ServicesBinding__defaultBinaryMessenger; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_defaultBinaryMessenger")) : t1; }, handleMemoryPressure$0: function() { }, handleSystemMessage$1: function(systemMessage) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this; var $async$handleSystemMessage$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start switch (H._asStringS(J.$index$asx(type$.Map_String_dynamic._as(systemMessage), "type"))) { case "memoryPressure": $async$self.handleMemoryPressure$0(); break; } // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleSystemMessage$1, $async$completer); }, _addLicenses$0: function() { var $async$_addLicenses$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = new P._Future($.Zone__current, type$._Future_String); rawLicenses = new P._AsyncCompleter(t1, type$._AsyncCompleter_String); t2 = type$.Future_Null; $async$self.scheduleTask$1$2(new N.ServicesBinding__addLicenses_closure(rawLicenses), C.Priority_100000, t2); $async$goto = 3; return P._asyncStarHelper(t1, $async$_addLicenses$0, $async$controller); case 3: // returning from await. t1 = new P._Future($.Zone__current, type$._Future_List_LicenseEntry); $async$self.scheduleTask$1$2(new N.ServicesBinding__addLicenses_closure0(new P._AsyncCompleter(t1, type$._AsyncCompleter_List_LicenseEntry), rawLicenses), C.Priority_100000, t2); $async$goto = 4; return P._asyncStarHelper(t1, $async$_addLicenses$0, $async$controller); case 4: // returning from await. $async$temp1 = P; $async$goto = 6; return P._asyncStarHelper(t1, $async$_addLicenses$0, $async$controller); case 6: // returning from await. $async$goto = 5; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldStar($async$temp1.Stream_Stream$fromIterable($async$result, type$.LicenseEntry)), $async$_addLicenses$0, $async$controller); case 5: // after yield case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$_addLicenses$0, type$.LicenseEntry), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, rawLicenses, t2, $async$temp1; return P._streamOfController($async$controller); }, readInitialLifecycleStateFromNativeWindow$0: function() { if (this.SchedulerBinding__lifecycleState != null) return; $.$get$window().platformDispatcher.toString; var state = N.ServicesBinding__parseAppLifecycleMessage("AppLifecycleState.resumed"); if (state != null) this.handleAppLifecycleStateChanged$1(state); }, _handleLifecycleMessage$1: function(message) { return this._handleLifecycleMessage$body$ServicesBinding(message); }, _handleLifecycleMessage$body$ServicesBinding: function(message) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_String), $async$returnValue, $async$self = this, t1; var $async$_handleLifecycleMessage$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start message.toString; t1 = N.ServicesBinding__parseAppLifecycleMessage(message); t1.toString; $async$self.handleAppLifecycleStateChanged$1(t1); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_handleLifecycleMessage$1, $async$completer); }, get$_restorationManager: function() { var t1 = this.ServicesBinding___ServicesBinding__restorationManager; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_restorationManager")) : t1; } }; N.ServicesBinding__addLicenses_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, $async$temp1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = $async$self.rawLicenses; $async$goto = 2; return P._asyncAwait($.$get$rootBundle().loadString$2$cache("NOTICES", false), $async$call$0); case 2: // returning from await. $async$temp1.complete$1(0, $async$result); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 396 }; N.ServicesBinding__addLicenses_closure0.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, $async$temp1, $async$temp2, $async$temp3; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = $async$self.parsedLicenses; $async$temp2 = U; $async$temp3 = N.binding0_ServicesBinding__parseLicenses$closure(); $async$goto = 2; return P._asyncAwait($async$self.rawLicenses.future, $async$call$0); case 2: // returning from await. $async$temp1.complete$1(0, $async$temp2.compute($async$temp3, $async$result, "parseLicenses", type$.String, type$.List_LicenseEntry)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 396 }; N._DefaultBinaryMessenger.prototype = { _sendPlatformMessage$2: function(channel, message) { var t1 = new P._Future($.Zone__current, type$._Future_nullable_ByteData), t2 = $.$get$EnginePlatformDispatcher__instance(); t2.toString; t2.__engine$_sendPlatformMessage$3(channel, message, H.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback(new N._DefaultBinaryMessenger__sendPlatformMessage_closure(new P._AsyncCompleter(t1, type$._AsyncCompleter_nullable_ByteData)))); return t1; }, handlePlatformMessage$3: function(channel, data, callback) { return this.handlePlatformMessage$body$_DefaultBinaryMessenger(channel, data, callback); }, handlePlatformMessage$body$_DefaultBinaryMessenger: function(channel, data, callback) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], response, handler, exception, stack, t1, t2, exception0, $async$exception0; var $async$handlePlatformMessage$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start callback = callback; response = null; $async$handler = 3; handler = $._DefaultBinaryMessenger__handlers.$index(0, channel); $async$goto = handler != null ? 6 : 8; break; case 6: // then $async$goto = 9; return P._asyncAwait(handler.call$1(data), $async$handlePlatformMessage$3); case 9: // returning from await. response = $async$result; // goto join $async$goto = 7; break; case 8: // else t1 = $.$get$channelBuffers(); t2 = callback; t2.toString; t1.push$3(channel, data, t2); callback = null; case 7: // join $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); t1 = U.ErrorDescription$("during a platform message callback"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "services library", t1, null, false)); $async$next.push(5); // goto finally $async$goto = 4; break; case 2: // uncaught $async$next = [1]; case 4: // finally $async$handler = 1; if (callback != null) callback.call$1(response); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$handlePlatformMessage$3, $async$completer); }, send$2: function(_, channel, message) { $._DefaultBinaryMessenger__mockHandlers.$index(0, channel); return this._sendPlatformMessage$2(channel, message); }, setMessageHandler$2: function(channel, handler) { if (handler == null) $._DefaultBinaryMessenger__handlers.remove$1(0, channel); else { $._DefaultBinaryMessenger__handlers.$indexSet(0, channel, handler); $.$get$channelBuffers().drain$2(channel, new N._DefaultBinaryMessenger_setMessageHandler_closure(this, channel)); } } }; N._DefaultBinaryMessenger__sendPlatformMessage_closure.prototype = { call$1: function(reply) { var exception, stack, exception0, t1; try { this.completer.complete$1(0, reply); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("during a platform message response callback"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "services library", t1, null, false)); } }, $signature: 117 }; N._DefaultBinaryMessenger_setMessageHandler_closure.prototype = { call$2: function(data, callback) { return this.$call$body$_DefaultBinaryMessenger_setMessageHandler_closure(data, callback); }, $call$body$_DefaultBinaryMessenger_setMessageHandler_closure: function(data, callback) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self.$this.handlePlatformMessage$3($async$self.channel, data, callback), $async$call$2); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 3089 }; T.ClipboardData.prototype = { text$0: function($receiver) { return this.text.call$0(); } }; G.KeyboardKey.prototype = {}; G.LogicalKeyboardKey.prototype = { get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this.keyId); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof G.LogicalKeyboardKey && other.keyId === this.keyId; } }; G.PhysicalKeyboardKey.prototype = { get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this.usbHidUsage); }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof G.PhysicalKeyboardKey && other.usbHidUsage === this.usbHidUsage; } }; G._KeyboardKey_Object_Diagnosticable.prototype = {}; F.MethodCall.prototype = { toString$0: function(_) { return "MethodCall(" + this.method + ", " + H.S(this.$arguments) + ")"; } }; F.PlatformException.prototype = { toString$0: function(_) { var _this = this; return "PlatformException(" + H.S(_this.code) + ", " + H.S(_this.message) + ", " + H.S(_this.details) + ", " + H.S(_this.stacktrace) + ")"; }, $isException: 1 }; F.MissingPluginException.prototype = { toString$0: function(_) { return "MissingPluginException(" + H.S(this.message) + ")"; }, $isException: 1 }; U.StringCodec.prototype = { decodeMessage$1: function(message) { var t1; if (message == null) return null; t1 = J.getInterceptor$x(message); return C.Utf8Decoder_false.convert$1(J.asUint8List$2$x(t1.get$buffer(message), t1.get$offsetInBytes(message), t1.get$lengthInBytes(message))); }, encodeMessage$1: function(message) { if (message == null) return null; return H.NativeByteData_NativeByteData$view(C.C_Utf8Encoder.convert$1(message).buffer, 0, null); } }; U.JSONMessageCodec0.prototype = { encodeMessage$1: function(message) { if (message == null) return null; return C.C_StringCodec.encodeMessage$1(C.C_JsonCodec.encode$1(message)); }, decodeMessage$1: function(message) { var t1; if (message == null) return message; t1 = C.C_StringCodec.decodeMessage$1(message); t1.toString; return C.C_JsonCodec.decode$1(0, t1); } }; U.JSONMethodCodec0.prototype = { encodeMethodCall$1: function($call) { var t1 = C.C_JSONMessageCodec0.encodeMessage$1(P.LinkedHashMap_LinkedHashMap$_literal(["method", $call.method, "args", $call.$arguments], type$.String, type$.nullable_Object)); t1.toString; return t1; }, decodeMethodCall$1: function(methodCall) { var t1, method, $arguments, _null = null, decoded = C.C_JSONMessageCodec0.decodeMessage$1(methodCall); if (!type$.Map_dynamic_dynamic._is(decoded)) throw H.wrapException(P.FormatException$("Expected method call Map, got " + H.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); method = t1.$index(decoded, "method"); $arguments = t1.$index(decoded, "args"); if (typeof method == "string") return new F.MethodCall(method, $arguments); throw H.wrapException(P.FormatException$("Invalid method call: " + H.S(decoded), _null, _null)); }, decodeEnvelope$1: function(envelope) { var t1, t2, t3, _null = null, decoded = C.C_JSONMessageCodec0.decodeMessage$1(envelope); if (!type$.List_dynamic._is(decoded)) throw H.wrapException(P.FormatException$("Expected envelope List, got " + H.S(decoded), _null, _null)); t1 = J.getInterceptor$asx(decoded); if (t1.get$length(decoded) === 1) return t1.$index(decoded, 0); if (t1.get$length(decoded) === 3) if (typeof t1.$index(decoded, 0) == "string") t2 = t1.$index(decoded, 1) == null || typeof t1.$index(decoded, 1) == "string"; else t2 = false; else t2 = false; if (t2) { t2 = H._asStringS(t1.$index(decoded, 0)); t3 = H._asStringS(t1.$index(decoded, 1)); throw H.wrapException(F.PlatformException$(t2, t1.$index(decoded, 2), t3, _null)); } if (t1.get$length(decoded) === 4) if (typeof t1.$index(decoded, 0) == "string") if (t1.$index(decoded, 1) == null || typeof t1.$index(decoded, 1) == "string") t2 = t1.$index(decoded, 3) == null || typeof t1.$index(decoded, 3) == "string"; else t2 = false; else t2 = false; else t2 = false; if (t2) { t2 = H._asStringS(t1.$index(decoded, 0)); t3 = H._asStringS(t1.$index(decoded, 1)); throw H.wrapException(F.PlatformException$(t2, t1.$index(decoded, 2), t3, H._asStringS(t1.$index(decoded, 3)))); } throw H.wrapException(P.FormatException$("Invalid envelope: " + H.S(decoded), _null, _null)); }, encodeSuccessEnvelope$1: function(result) { var t1 = C.C_JSONMessageCodec0.encodeMessage$1([result]); t1.toString; return t1; }, encodeErrorEnvelope$3$code$details$message: function(code, details, message) { var t1 = C.C_JSONMessageCodec0.encodeMessage$1([code, message, details]); t1.toString; return t1; } }; U.StandardMessageCodec0.prototype = { encodeMessage$1: function(message) { var buffer; if (message == null) return null; buffer = G.WriteBuffer$(); this.writeValue$2(0, buffer, message); return buffer.done$0(); }, decodeMessage$1: function(message) { var buffer, result; if (message == null) return null; buffer = new G.ReadBuffer(message); result = this.readValue$1(0, buffer); if (buffer._serialization$_position < J.get$lengthInBytes$x(message)) throw H.wrapException(C.FormatException_oCg); return result; }, writeValue$2: function(_, buffer, value) { var t1, t2, t3, bytes, _this = this; if (value == null) buffer._serialization$_buffer._typed_buffer$_add$1(0, 0); else if (H._isBool(value)) { t1 = value ? 1 : 2; buffer._serialization$_buffer._typed_buffer$_add$1(0, t1); } else if (typeof value == "number") { buffer._serialization$_buffer._typed_buffer$_add$1(0, 6); buffer._alignTo$1(8); t1 = $.$get$Endian_host(); buffer._eightBytes.setFloat64(0, value, C.C_Endian === t1); t1 = buffer._serialization$_buffer; t1.toString; t1.addAll$1(0, buffer.get$_eightBytesAsList()); } else if (H._isInt(value)) { t1 = -2147483648 <= value && value <= 2147483647; t2 = buffer._serialization$_buffer; t3 = buffer._eightBytes; if (t1) { t2._typed_buffer$_add$1(0, 3); t1 = $.$get$Endian_host(); t3.setInt32(0, value, C.C_Endian === t1); t1 = buffer._serialization$_buffer; t1.toString; t1.addAll$3(0, buffer.get$_eightBytesAsList(), 0, 4); } else { t2._typed_buffer$_add$1(0, 4); t1 = $.$get$Endian_host(); C.NativeByteData_methods.setInt64$3(t3, 0, value, t1); } } else if (typeof value == "string") { buffer._serialization$_buffer._typed_buffer$_add$1(0, 7); bytes = C.C_Utf8Encoder.convert$1(value); _this.writeSize$2(buffer, bytes.length); buffer._serialization$_buffer.addAll$1(0, bytes); } else if (type$.Uint8List._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 8); _this.writeSize$2(buffer, J.get$length$asx(value)); buffer._serialization$_buffer.addAll$1(0, value); } else if (type$.Int32List._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 9); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); buffer._alignTo$1(4); t2 = buffer._serialization$_buffer; t2.toString; t2.addAll$1(0, J.asUint8List$2$x(t1.get$buffer(value), t1.get$offsetInBytes(value), 4 * t1.get$length(value))); } else if (type$.Int64List._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 10); _this.writeSize$2(buffer, value.get$length(value)); } else if (type$.Float64List._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 11); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); buffer._alignTo$1(8); t2 = buffer._serialization$_buffer; t2.toString; t2.addAll$1(0, J.asUint8List$2$x(t1.get$buffer(value), t1.get$offsetInBytes(value), 8 * t1.get$length(value))); } else if (type$.List_dynamic._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 12); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); for (t1 = t1.get$iterator(value); t1.moveNext$0();) _this.writeValue$2(0, buffer, t1.get$current(t1)); } else if (type$.Map_dynamic_dynamic._is(value)) { buffer._serialization$_buffer._typed_buffer$_add$1(0, 13); t1 = J.getInterceptor$asx(value); _this.writeSize$2(buffer, t1.get$length(value)); t1.forEach$1(value, new U.StandardMessageCodec_writeValue_closure(_this, buffer)); } else throw H.wrapException(P.ArgumentError$value(value, null, null)); }, readValue$1: function(_, buffer) { if (!(buffer._serialization$_position < J.get$lengthInBytes$x(buffer.data))) throw H.wrapException(C.FormatException_oCg); return this.readValueOfType$2(buffer.getUint8$0(0), buffer); }, readValueOfType$2: function(type, buffer) { var t1, t2, value, $length, list, result, i, t3, _this = this; switch (type) { case 0: return null; case 1: return true; case 2: return false; case 3: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getInt32$2$x(buffer.data, t1, t2); buffer._serialization$_position += 4; return value; case 4: return buffer.getInt64$0(0); case 6: buffer._alignTo$1(8); t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getFloat64$2$x(buffer.data, t1, t2); buffer._serialization$_position += 8; return value; case 5: case 7: $length = _this.readSize$1(buffer); return C.Utf8Decoder_false.convert$1(buffer.getUint8List$1($length)); case 8: return buffer.getUint8List$1(_this.readSize$1(buffer)); case 9: $length = _this.readSize$1(buffer); buffer._alignTo$1(4); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asInt32List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 4 * $length; return list; case 10: $length = _this.readSize$1(buffer); buffer._alignTo$1(8); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asInt64List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 8 * $length; return list; case 11: $length = _this.readSize$1(buffer); buffer._alignTo$1(8); t1 = buffer.data; t2 = J.getInterceptor$x(t1); list = J.asFloat64List$2$x(t2.get$buffer(t1), t2.get$offsetInBytes(t1) + buffer._serialization$_position, $length); buffer._serialization$_position = buffer._serialization$_position + 8 * $length; return list; case 12: $length = _this.readSize$1(buffer); result = P.List_List$filled($length, null, false, type$.nullable_Object); for (t1 = buffer.data, t2 = J.getInterceptor$x(t1), i = 0; i < $length; ++i) { if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) H.throwExpression(C.FormatException_oCg); result[i] = _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer); } return result; case 13: $length = _this.readSize$1(buffer); t1 = type$.nullable_Object; result = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); for (t1 = buffer.data, t2 = J.getInterceptor$x(t1), i = 0; i < $length; ++i) { if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) H.throwExpression(C.FormatException_oCg); t3 = _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer); if (!(buffer._serialization$_position < t2.get$lengthInBytes(t1))) H.throwExpression(C.FormatException_oCg); result.$indexSet(0, t3, _this.readValueOfType$2(t2.getUint8$1(t1, buffer._serialization$_position++), buffer)); } return result; default: throw H.wrapException(C.FormatException_oCg); } }, writeSize$2: function(buffer, value) { var t1, t2; if (value < 254) buffer._serialization$_buffer._typed_buffer$_add$1(0, value); else { t1 = buffer._serialization$_buffer; t2 = buffer._eightBytes; if (value <= 65535) { t1._typed_buffer$_add$1(0, 254); t1 = $.$get$Endian_host(); t2.setUint16(0, value, C.C_Endian === t1); t1 = buffer._serialization$_buffer; t1.toString; t1.addAll$3(0, buffer.get$_eightBytesAsList(), 0, 2); } else { t1._typed_buffer$_add$1(0, 255); t1 = $.$get$Endian_host(); t2.setUint32(0, value, C.C_Endian === t1); t1 = buffer._serialization$_buffer; t1.toString; t1.addAll$3(0, buffer.get$_eightBytesAsList(), 0, 4); } } }, readSize$1: function(buffer) { var t1, t2, value = buffer.getUint8$0(0); switch (value) { case 254: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getUint16$2$x(buffer.data, t1, t2); buffer._serialization$_position += 2; return value; case 255: t1 = buffer._serialization$_position; t2 = $.$get$Endian_host(); value = J.getUint32$2$x(buffer.data, t1, t2); buffer._serialization$_position += 4; return value; default: return value; } } }; U.StandardMessageCodec_writeValue_closure.prototype = { call$2: function(key, value) { var t1 = this.$this, t2 = this.buffer; t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, $signature: 209 }; U.StandardMethodCodec0.prototype = { encodeMethodCall$1: function($call) { var buffer = G.WriteBuffer$(); C.C_StandardMessageCodec.writeValue$2(0, buffer, $call.method); C.C_StandardMessageCodec.writeValue$2(0, buffer, $call.$arguments); return buffer.done$0(); }, decodeMethodCall$1: function(methodCall) { var buffer, method, $arguments; methodCall.toString; buffer = new G.ReadBuffer(methodCall); method = C.C_StandardMessageCodec.readValue$1(0, buffer); $arguments = C.C_StandardMessageCodec.readValue$1(0, buffer); if (typeof method == "string" && !(buffer._serialization$_position < J.get$lengthInBytes$x(methodCall))) return new F.MethodCall(method, $arguments); else throw H.wrapException(C.FormatException_Qi2); }, encodeSuccessEnvelope$1: function(result) { var buffer = G.WriteBuffer$(); buffer._serialization$_buffer._typed_buffer$_add$1(0, 0); C.C_StandardMessageCodec.writeValue$2(0, buffer, result); return buffer.done$0(); }, encodeErrorEnvelope$3$code$details$message: function(code, details, message) { var buffer = G.WriteBuffer$(); buffer._serialization$_buffer._typed_buffer$_add$1(0, 1); C.C_StandardMessageCodec.writeValue$2(0, buffer, code); C.C_StandardMessageCodec.writeValue$2(0, buffer, message); C.C_StandardMessageCodec.writeValue$2(0, buffer, details); return buffer.done$0(); }, decodeEnvelope$1: function(envelope) { var buffer, errorCode, errorMessage, errorDetails, errorStacktrace, t1 = J.getInterceptor$x(envelope); if (t1.get$lengthInBytes(envelope) === 0) throw H.wrapException(C.FormatException_iDw); buffer = new G.ReadBuffer(envelope); if (buffer.getUint8$0(0) === 0) return C.C_StandardMessageCodec.readValue$1(0, buffer); errorCode = C.C_StandardMessageCodec.readValue$1(0, buffer); errorMessage = C.C_StandardMessageCodec.readValue$1(0, buffer); errorDetails = C.C_StandardMessageCodec.readValue$1(0, buffer); errorStacktrace = buffer._serialization$_position < t1.get$lengthInBytes(envelope) ? H._asStringQ(C.C_StandardMessageCodec.readValue$1(0, buffer)) : null; if (typeof errorCode == "string") t1 = (errorMessage == null || typeof errorMessage == "string") && !(buffer._serialization$_position < t1.get$lengthInBytes(envelope)); else t1 = false; if (t1) throw H.wrapException(F.PlatformException$(errorCode, errorDetails, H._asStringQ(errorMessage), errorStacktrace)); else throw H.wrapException(C.FormatException_pSr); } }; A.MouseCursorManager.prototype = { handleDeviceCursorUpdate$3: function(device, triggeringEvent, cursorCandidates) { var t1, lastSession, nextCursor, t2, nextSession; if (type$.PointerRemovedEvent._is(triggeringEvent)) { this._lastSession.remove$1(0, device); return; } t1 = this._lastSession; lastSession = t1.$index(0, device); nextCursor = A._DeferringMouseCursor_firstNonDeferred(cursorCandidates); if (nextCursor == null) nextCursor = this.fallbackMouseCursor; t2 = lastSession == null; if (J.$eq$(t2 ? null : lastSession.get$cursor(lastSession), nextCursor)) return; nextSession = nextCursor.createSession$1(device); t1.$indexSet(0, device, nextSession); if (!t2) lastSession.dispose$0(0); nextSession.activate$0(); } }; A.MouseCursorSession.prototype = { get$cursor: function(receiver) { return this.cursor; } }; A.MouseCursor0.prototype = { toString$0: function(_) { var debugDescription = this.get$debugDescription(); return debugDescription; } }; A._DeferringMouseCursor.prototype = { createSession$1: function(device) { throw H.wrapException(P.UnimplementedError$(null)); }, get$debugDescription: function() { return "defer"; } }; A._NoopMouseCursorSession.prototype = { activate$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$activate$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$activate$0, $async$completer); }, dispose$0: function(_) { } }; A._NoopMouseCursor.prototype = { createSession$1: function(device) { return new A._NoopMouseCursorSession(this, device); }, get$debugDescription: function() { return "uncontrolled"; } }; A._SystemMouseCursorSession.prototype = { get$cursor: function(_) { return type$.SystemMouseCursor._as(this.cursor); }, activate$0: function() { return C.OptionalMethodChannel_4Up.invokeMethod$1$2("activateSystemCursor", P.LinkedHashMap_LinkedHashMap$_literal(["device", this.device, "kind", type$.SystemMouseCursor._as(this.cursor).kind], type$.String, type$.dynamic), type$.void); }, dispose$0: function(_) { } }; A.SystemMouseCursor.prototype = { get$debugDescription: function() { return "SystemMouseCursor(" + this.kind + ")"; }, createSession$1: function(device) { return new A._SystemMouseCursorSession(this, device); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof A.SystemMouseCursor && other.kind === this.kind; }, get$hashCode: function(_) { return C.JSString_methods.get$hashCode(this.kind); } }; A._MouseCursor_Object_Diagnosticable.prototype = {}; A.BasicMessageChannel.prototype = { get$binaryMessenger: function() { var t1 = $.ServicesBinding__instance; return t1.get$_defaultBinaryMessenger(); }, send$1: function(_, message) { return this.send$body$BasicMessageChannel(_, message, this.$ti._eval$1("1?")); }, send$body$BasicMessageChannel: function(_, message, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$send$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.codec; $async$temp1 = t1; $async$goto = 3; return P._asyncAwait($async$self.get$binaryMessenger().send$2(0, $async$self.name, t1.encodeMessage$1(message)), $async$send$1); case 3: // returning from await. $async$returnValue = $async$temp1.decodeMessage$1($async$result); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$send$1, $async$completer); }, setMessageHandler$1: function(handler) { this.get$binaryMessenger().setMessageHandler$2(this.name, new A.BasicMessageChannel_setMessageHandler_closure(this, handler)); }, get$name: function(receiver) { return this.name; } }; A.BasicMessageChannel_setMessageHandler_closure.prototype = { call$1: function(message) { return this.$call$body$BasicMessageChannel_setMessageHandler_closure(message); }, $call$body$BasicMessageChannel_setMessageHandler_closure: function(message) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_ByteData), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this.codec; $async$temp1 = t1; $async$goto = 3; return P._asyncAwait($async$self.handler.call$1(t1.decodeMessage$1(message)), $async$call$1); case 3: // returning from await. $async$returnValue = $async$temp1.encodeMessage$1($async$result); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 462 }; A.MethodChannel.prototype = { get$binaryMessenger: function() { var t1 = this._binaryMessenger; return t1 == null ? $.ServicesBinding__instance.get$_defaultBinaryMessenger() : t1; }, _invokeMethod$1$3$arguments$missingOk: function(method, $arguments, missingOk, $T) { return this._invokeMethod$body$MethodChannel(method, $arguments, missingOk, $T, $T._eval$1("0?")); }, _invokeMethod$body$MethodChannel: function(method, $arguments, missingOk, $T, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, t1, t2, result; var $async$_invokeMethod$1$3$arguments$missingOk = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.name; t2 = $async$self.codec; $async$goto = 3; return P._asyncAwait($async$self.get$binaryMessenger().send$2(0, t1, t2.encodeMethodCall$1(new F.MethodCall(method, $arguments))), $async$_invokeMethod$1$3$arguments$missingOk); case 3: // returning from await. result = $async$result; if (result == null) { if (missingOk) { $async$returnValue = null; // goto return $async$goto = 1; break; } throw H.wrapException(F.MissingPluginException$("No implementation found for method " + method + " on channel " + t1)); } $async$returnValue = $T._eval$1("0?")._as(t2.decodeEnvelope$1(result)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_invokeMethod$1$3$arguments$missingOk, $async$completer); }, invokeMethod$1$2: function(method, $arguments, $T) { return this._invokeMethod$1$3$arguments$missingOk(method, $arguments, false, $T); }, invokeMethod$1$1: function(method, $T) { return this.invokeMethod$1$2(method, null, $T); }, invokeListMethod$1$2: function(method, $arguments, $T) { return this.invokeListMethod$body$MethodChannel(method, $arguments, $T, $T._eval$1("List<0>?")); }, invokeListMethod$1$1: function(method, $T) { return this.invokeListMethod$1$2(method, null, $T); }, invokeListMethod$body$MethodChannel: function(method, $arguments, $T, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, result; var $async$invokeListMethod$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.invokeMethod$1$2(method, $arguments, type$.nullable_List_dynamic), $async$invokeListMethod$1$2); case 3: // returning from await. result = $async$result; $async$returnValue = result == null ? null : J.cast$1$0$ax(result, $T); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$invokeListMethod$1$2, $async$completer); }, invokeMapMethod$2$2: function(method, $arguments, $K, $V) { return this.invokeMapMethod$body$MethodChannel(method, $arguments, $K, $V, $K._eval$1("@<0>")._bind$1($V)._eval$1("Map<1,2>?")); }, invokeMapMethod$2$1: function(method, $K, $V) { return this.invokeMapMethod$2$2(method, null, $K, $V); }, invokeMapMethod$body$MethodChannel: function(method, $arguments, $K, $V, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this, result; var $async$invokeMapMethod$2$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.invokeMethod$1$2(method, $arguments, type$.nullable_Map_dynamic_dynamic), $async$invokeMapMethod$2$2); case 3: // returning from await. result = $async$result; $async$returnValue = result == null ? null : J.cast$2$0$ax(result, $K, $V); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$invokeMapMethod$2$2, $async$completer); }, setMethodCallHandler$1: function(handler) { var t1, _this = this; $.$get$_methodChannelHandlers().$indexSet(0, _this, handler); t1 = _this.get$binaryMessenger(); t1.setMessageHandler$2(_this.name, new A.MethodChannel_setMethodCallHandler_closure(_this, handler)); }, _handleAsMethodCall$2: function(message, handler) { return this._handleAsMethodCall$body$MethodChannel(message, handler); }, _handleAsMethodCall$body$MethodChannel: function(message, handler) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_ByteData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, e0, t2, exception, t3, t1, $call, $async$exception, $async$temp1; var $async$_handleAsMethodCall$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.codec; $call = t1.decodeMethodCall$1(message); $async$handler = 4; $async$temp1 = t1; $async$goto = 7; return P._asyncAwait(handler.call$1($call), $async$_handleAsMethodCall$2); case 7: // returning from await. t2 = $async$temp1.encodeSuccessEnvelope$1($async$result); $async$returnValue = t2; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; t2 = H.unwrapException($async$exception); if (t2 instanceof F.PlatformException) { e = t2; t2 = e.code; t3 = e.message; $async$returnValue = t1.encodeErrorEnvelope$3$code$details$message(t2, e.details, t3); // goto return $async$goto = 1; break; } else if (t2 instanceof F.MissingPluginException) { $async$returnValue = null; // goto return $async$goto = 1; break; } else { e0 = t2; t1 = t1.encodeErrorEnvelope$3$code$details$message("error", null, J.toString$0$(e0)); $async$returnValue = t1; // goto return $async$goto = 1; break; } // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_handleAsMethodCall$2, $async$completer); }, get$name: function(receiver) { return this.name; } }; A.MethodChannel_setMethodCallHandler_closure.prototype = { call$1: function(message) { return this.$this._handleAsMethodCall$2(message, this.handler); }, $signature: 462 }; A.OptionalMethodChannel.prototype = { invokeMethod$1$2: function(method, $arguments, $T) { return this.invokeMethod$body$OptionalMethodChannel(method, $arguments, $T, $T._eval$1("0?")); }, invokeMethod$1$1: function(method, $T) { return this.invokeMethod$1$2(method, null, $T); }, invokeMethod$body$OptionalMethodChannel: function(method, $arguments, $T, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$self = this; var $async$invokeMethod$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.super$MethodChannel$_invokeMethod(method, $arguments, true, $T); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$invokeMethod$1$2, $async$completer); } }; A.EventChannel.prototype = { get$binaryMessenger: function() { var t1 = $.ServicesBinding__instance; return t1.get$_defaultBinaryMessenger(); }, receiveBroadcastStream$0: function() { var t2, t1 = {}, methodChannel = new A.MethodChannel(this.name, C.C_StandardMethodCodec, null); t1._controller0 = $; t2 = new A.EventChannel_receiveBroadcastStream__controller_get(t1); new A.EventChannel_receiveBroadcastStream__controller_set(t1).call$1(new P._AsyncBroadcastStreamController(new A.EventChannel_receiveBroadcastStream_closure(this, t2, methodChannel, null), new A.EventChannel_receiveBroadcastStream_closure0(this, methodChannel, null), type$._AsyncBroadcastStreamController_dynamic)); return J.get$stream$z(t2.call$0()); }, get$name: function(receiver) { return this.name; } }; A.EventChannel_receiveBroadcastStream__controller_set.prototype = { call$1: function(t1) { return this._box_0._controller0 = t1; }, $signature: 3065 }; A.EventChannel_receiveBroadcastStream__controller_get.prototype = { call$0: function() { var t1 = this._box_0._controller0; return t1 === $ ? H.throwExpression(H.LateError$localNI("controller")) : t1; }, $signature: 3047 }; A.EventChannel_receiveBroadcastStream_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, t2, $async$exception0; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = t1.name; t1.get$binaryMessenger().setMessageHandler$2(t2, new A.EventChannel_receiveBroadcastStream__closure(t1, $async$self._controller_get)); $async$handler = 3; $async$goto = 6; return P._asyncAwait($async$self.methodChannel._invokeMethod$1$3$arguments$missingOk("listen", $async$self.$arguments, false, type$.void), $async$call$0); case 6: // returning from await. $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); t1 = U.ErrorDescription$("while activating platform stream on channel " + t2); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "services library", t1, null, false)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 93 }; A.EventChannel_receiveBroadcastStream__closure.prototype = { call$1: function(reply) { return this.$call$body$EventChannel_receiveBroadcastStream__closure(reply); }, $call$body$EventChannel_receiveBroadcastStream__closure: function(reply) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$next = [], $async$self = this, e, exception, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (reply == null) J.close$0$x($async$self._controller_get.call$0()); else try { J.add$1$ax($async$self._controller_get.call$0(), C.C_StandardMethodCodec.decodeEnvelope$1(reply)); } catch (exception) { t1 = H.unwrapException(exception); if (t1 instanceof F.PlatformException) { e = t1; $async$self._controller_get.call$0().addError$1(e); } else throw exception; } $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2959 }; A.EventChannel_receiveBroadcastStream_closure0.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, exception, stack, exception0, t1, t2, $async$exception0; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = t1.name; t1.get$binaryMessenger().setMessageHandler$2(t2, null); $async$handler = 3; $async$goto = 6; return P._asyncAwait($async$self.methodChannel._invokeMethod$1$3$arguments$missingOk("cancel", $async$self.$arguments, false, type$.void), $async$call$0); case 6: // returning from await. $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); t1 = U.ErrorDescription$("while de-activating platform stream on channel " + t2); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "services library", t1, null, false)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 93 }; R.PlatformViewsRegistry.prototype = { getNextPlatformViewId$0: function() { return this._nextPlatformViewId++; } }; R.PlatformViewController.prototype = {}; B.KeyboardSide.prototype = { toString$0: function(_) { return this._raw_keyboard$_name; } }; B.ModifierKey.prototype = { toString$0: function(_) { return this._raw_keyboard$_name; } }; B.RawKeyEventData.prototype = { get$modifiersPressed: function() { var _i, key, side, result = P.LinkedHashMap_LinkedHashMap$_empty(type$.ModifierKey, type$.KeyboardSide); for (_i = 0; _i < 9; ++_i) { key = C.List_0[_i]; if (this.isModifierPressed$1(key)) { side = this.getModifierSide$1(key); if (side != null) result.$indexSet(0, key, side); } } return result; }, shouldDispatchEvent$0: function() { return true; } }; B.RawKeyEvent.prototype = {}; B.RawKeyDownEvent.prototype = {}; B.RawKeyUpEvent.prototype = {}; B.RawKeyboard.prototype = { addListener$1: function(_, listener) { this._raw_keyboard$_listeners.push(listener); }, removeListener$1: function(_, listener) { C.JSArray_methods.remove$1(this._raw_keyboard$_listeners, listener); }, _handleKeyEvent$1: function(message) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, t1, shouldDispatch, t2, t3, _i, listener, $event; var $async$_handleKeyEvent$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $event = B.RawKeyEvent_RawKeyEvent$fromMessage(type$.Map_String_dynamic._as(message)); if ($event instanceof B.RawKeyDownEvent) { t1 = $event.data; if (t1.shouldDispatchEvent$0()) { $async$self._keysPressed.$indexSet(0, t1.get$physicalKey(), t1.get$logicalKey()); shouldDispatch = true; } else { $async$self._hiddenKeysPressed.add$1(0, t1.get$physicalKey()); shouldDispatch = false; } } else if ($event instanceof B.RawKeyUpEvent) { t1 = $async$self._hiddenKeysPressed; t2 = $event.data; if (!t1.contains$1(0, t2.get$physicalKey())) { $async$self._keysPressed.remove$1(0, t2.get$physicalKey()); shouldDispatch = true; } else { t1.remove$1(0, t2.get$physicalKey()); shouldDispatch = false; } } else shouldDispatch = true; if (!shouldDispatch) { $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["handled", true], type$.String, type$.dynamic); // goto return $async$goto = 1; break; } $async$self._synchronizeModifiers$1($event); for (t1 = $async$self._raw_keyboard$_listeners, t2 = P.List_List$from(t1, true, type$.void_Function_RawKeyEvent), t3 = t2.length, _i = 0; _i < t3; ++_i) { listener = t2[_i]; if (C.JSArray_methods.contains$1(t1, listener)) listener.call$1($event); } t1 = $async$self.keyEventHandler; $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["handled", t1 != null && t1.call$1($event)], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_handleKeyEvent$1, $async$completer); }, _synchronizeModifiers$1: function($event) { var t2, t3, mappedKeys, t4, t5, t1 = $event.data, modifiersPressed = t1.get$modifiersPressed(), modifierKeys = P.LinkedHashMap_LinkedHashMap$_empty(type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey); for (t2 = modifiersPressed.get$keys(modifiersPressed), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); mappedKeys = $.RawKeyboard__modifierKeyMap.$index(0, new B._ModifierSidePair(t3, modifiersPressed.$index(0, t3))); if (mappedKeys == null) continue; for (t3 = new P._LinkedHashSetIterator(mappedKeys, mappedKeys._collection$_modifications, H._instanceType(mappedKeys)._eval$1("_LinkedHashSetIterator<1>")), t3._collection$_cell = mappedKeys._collection$_first; t3.moveNext$0();) { t4 = t3._collection$_current; t5 = $.$get$RawKeyboard__allModifiers().$index(0, t4); t5.toString; modifierKeys.$indexSet(0, t4, t5); } } t2 = this._keysPressed; $.RawKeyboard__allModifiersExceptFn.get$keys($.RawKeyboard__allModifiersExceptFn).forEach$1(0, t2.get$remove(t2)); if (!(t1 instanceof Q.RawKeyEventDataFuchsia) && !(t1 instanceof B.RawKeyEventDataMacOs)) t2.remove$1(0, C.PhysicalKeyboardKey_18); t2.addAll$1(0, modifierKeys); } }; B._ModifierSidePair.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof B._ModifierSidePair && other.modifier == this.modifier && other.side == this.side; }, get$hashCode: function(_) { return P.hashValues(this.modifier, this.side, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; B._RawKeyEvent_Object_Diagnosticable.prototype = {}; Q.RawKeyEventDataFuchsia.prototype = {}; B.RawKeyEventDataMacOs.prototype = {}; A.RawKeyEventDataWeb.prototype = { get$physicalKey: function() { var t1 = C.Map_YV2No.$index(0, this.code); return t1 == null ? C.PhysicalKeyboardKey_0 : t1; }, get$logicalKey: function() { var newKey, t1 = this.code, numPadKey = C.Map_oWkr3.$index(0, t1); if (numPadKey != null) return numPadKey; newKey = C.Map_YVCB9.$index(0, t1); if (newKey != null) return newKey; return new G.LogicalKeyboardKey((C.JSString_methods.get$hashCode(t1) | 0) >>> 0); }, isModifierPressed$1: function(key) { var _this = this; switch (key) { case C.ModifierKey_0: return (_this.metaState & 4) !== 0; case C.ModifierKey_1: return (_this.metaState & 1) !== 0; case C.ModifierKey_2: return (_this.metaState & 2) !== 0; case C.ModifierKey_3: return (_this.metaState & 8) !== 0; case C.ModifierKey_5: return (_this.metaState & 16) !== 0; case C.ModifierKey_4: return (_this.metaState & 32) !== 0; case C.ModifierKey_6: return (_this.metaState & 64) !== 0; case C.ModifierKey_7: case C.ModifierKey_8: return false; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getModifierSide$1: function(key) { return C.KeyboardSide_3; }, toString$0: function(_) { var _this = this, t1 = _this.key; return "RawKeyEventDataWeb(keyLabel: " + (t1 === "Unidentified" ? "" : t1) + ", code: " + _this.code + ", metaState: " + _this.metaState + ", modifiers down: " + _this.get$modifiersPressed().toString$0(0) + ")"; } }; K.RestorationManager.prototype = { get$rootBucket: function() { var _this = this; if (_this._rootBucketIsValid) return new O.SynchronousFuture(_this._restoration$_rootBucket, type$.SynchronousFuture_nullable_RestorationBucket); if (_this._pendingRootBucket == null) { _this._pendingRootBucket = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_nullable_RestorationBucket), type$._AsyncCompleter_nullable_RestorationBucket); _this._getRootBucketFromEngine$0(); } return _this._pendingRootBucket.future; }, _getRootBucketFromEngine$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, config; var $async$_getRootBucketFromEngine$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.OptionalMethodChannel_wEo.invokeMethod$1$1("get", type$.Map_of_nullable_Object_and_nullable_Object), $async$_getRootBucketFromEngine$0); case 3: // returning from await. config = $async$result; if ($async$self._pendingRootBucket == null) { // goto return $async$goto = 1; break; } $async$self._parseAndHandleRestorationUpdateFromEngine$1(config); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_getRootBucketFromEngine$0, $async$completer); }, _parseAndHandleRestorationUpdateFromEngine$1: function(update) { var t2, t1 = update == null; if (!t1) { t2 = J.$index$asx(update, "enabled"); t2.toString; H._asBoolS(t2); } else t2 = false; this.handleRestorationUpdateFromEngine$2$data$enabled(t1 ? null : type$.nullable_Uint8List._as(J.$index$asx(update, "data")), t2); }, handleRestorationUpdateFromEngine$2$data$enabled: function(data, enabled) { var oldRoot, t2, _this = this, t1 = _this._rootBucketIsValid && enabled; _this._isReplacing = t1; if (t1) $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new K.RestorationManager_handleRestorationUpdateFromEngine_closure(_this)); oldRoot = _this._restoration$_rootBucket; if (enabled) { t1 = _this._decodeRestorationData$1(data); t2 = type$.String; if (t1 == null) { t1 = type$.nullable_Object; t1 = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } t2 = new K.RestorationBucket(t1, _this, null, "root", P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.RestorationBucket), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_RestorationBucket)); t1 = t2; } else t1 = null; _this._restoration$_rootBucket = t1; _this._rootBucketIsValid = true; t2 = _this._pendingRootBucket; if (t2 != null) t2.complete$1(0, t1); _this._pendingRootBucket = null; if (_this._restoration$_rootBucket != oldRoot) { _this.notifyListeners$0(); if (oldRoot != null) oldRoot.dispose$0(0); } }, _methodHandler$1: function($call) { return this._methodHandler$body$RestorationManager($call); }, _methodHandler$body$RestorationManager: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_Object), $async$self = this, t1; var $async$_methodHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $call.method; switch (t1) { case "push": $async$self._parseAndHandleRestorationUpdateFromEngine$1(type$.Map_of_nullable_Object_and_nullable_Object._as($call.$arguments)); break; default: throw H.wrapException(P.UnimplementedError$(t1 + " was invoked but isn't implemented by " + H.getRuntimeType($async$self).toString$0(0))); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_methodHandler$1, $async$completer); }, _decodeRestorationData$1: function(data) { var t1; if (data == null) return null; t1 = J.getInterceptor$x(data); return type$.nullable_Map_of_nullable_Object_and_nullable_Object._as(C.C_StandardMessageCodec.decodeMessage$1(J.asByteData$2$x(t1.get$buffer(data), t1.get$offsetInBytes(data), t1.get$lengthInBytes(data)))); }, scheduleSerializationFor$1: function(bucket) { var _this = this; _this._bucketsNeedingSerialization.add$1(0, bucket); if (!_this._serializationScheduled) { _this._serializationScheduled = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new K.RestorationManager_scheduleSerializationFor_closure(_this)); } }, _doSerialization$0: function() { var t1, t2, encoded, _this = this; if (!_this._serializationScheduled) return; _this._serializationScheduled = false; for (t1 = _this._bucketsNeedingSerialization, t2 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t2.moveNext$0();) t2._collection$_current._needsSerialization = false; t1.clear$0(0); encoded = C.C_StandardMessageCodec.encodeMessage$1(_this._restoration$_rootBucket._rawData); C.OptionalMethodChannel_wEo.invokeMethod$1$2("put", H.NativeUint8List_NativeUint8List$view(encoded.buffer, encoded.byteOffset, encoded.byteLength), type$.void); }, flushData$0: function() { if ($.SchedulerBinding__instance.SchedulerBinding__hasScheduledFrame) return; this._doSerialization$0(); } }; K.RestorationManager_handleRestorationUpdateFromEngine_closure.prototype = { call$1: function(_) { this.$this._isReplacing = false; }, $signature: 28 }; K.RestorationManager_scheduleSerializationFor_closure.prototype = { call$1: function(_) { return this.$this._doSerialization$0(); }, $signature: 28 }; K.RestorationBucket.prototype = { get$_rawChildren: function() { var t1 = J.putIfAbsent$2$x(this._rawData, "c", new K.RestorationBucket__rawChildren_closure()); t1.toString; return type$.Map_of_nullable_Object_and_nullable_Object._as(t1); }, get$_rawValues: function() { var t1 = J.putIfAbsent$2$x(this._rawData, "v", new K.RestorationBucket__rawValues_closure()); t1.toString; return type$.Map_of_nullable_Object_and_nullable_Object._as(t1); }, remove$1$1: function(_, restorationId, $P) { var _this = this, needsUpdate = J.containsKey$1$x(_this.get$_rawValues(), restorationId), result = $P._eval$1("0?")._as(J.remove$1$ax(_this.get$_rawValues(), restorationId)); if (J.get$isEmpty$asx(_this.get$_rawValues())) J.remove$1$ax(_this._rawData, "v"); if (needsUpdate) _this._markNeedsSerialization$0(); return result; }, claimChild$2$debugOwner: function(restorationId, debugOwner) { var child, t2, t3, t4, _this = this, t1 = _this._claimedChildren; if (t1.containsKey$1(0, restorationId) || !J.containsKey$1$x(_this.get$_rawChildren(), restorationId)) { t1 = type$.String; child = new K.RestorationBucket(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.nullable_Object), null, null, restorationId, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.RestorationBucket), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.List_RestorationBucket)); _this.adoptChild$1(child); return child; } t2 = type$.String; t3 = _this._manager; t4 = J.$index$asx(_this.get$_rawChildren(), restorationId); t4.toString; child = new K.RestorationBucket(type$.Map_of_nullable_Object_and_nullable_Object._as(t4), t3, _this, restorationId, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.RestorationBucket), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.List_RestorationBucket)); t1.$indexSet(0, restorationId, child); return child; }, adoptChild$1: function(child) { var _this = this, t1 = child._restoration$_parent; if (t1 !== _this) { if (t1 != null) t1._removeChildData$1(child); child._restoration$_parent = _this; _this._addChildData$1(child); if (child._manager != _this._manager) _this._recursivelyUpdateManager$1(child); } }, _dropChild$1: function(child) { this._removeChildData$1(child); child._restoration$_parent = null; if (child._manager != null) { child._updateManager$1(null); child._visitChildren$1(this.get$_recursivelyUpdateManager()); } }, _markNeedsSerialization$0: function() { var t1, _this = this; if (!_this._needsSerialization) { _this._needsSerialization = true; t1 = _this._manager; if (t1 != null) t1.scheduleSerializationFor$1(_this); } }, _recursivelyUpdateManager$1: function(bucket) { bucket._updateManager$1(this._manager); bucket._visitChildren$1(this.get$_recursivelyUpdateManager()); }, _updateManager$1: function(newManager) { var _this = this, t1 = _this._manager; if (t1 == newManager) return; if (_this._needsSerialization) if (t1 != null) t1._bucketsNeedingSerialization.remove$1(0, _this); _this._manager = newManager; if (_this._needsSerialization && newManager != null) { _this._needsSerialization = false; _this._markNeedsSerialization$0(); } }, _removeChildData$1: function(child) { var t1, pendingChildren, t2, _this = this; if (J.$eq$(_this._claimedChildren.remove$1(0, child._restorationId), child)) { J.remove$1$ax(_this.get$_rawChildren(), child._restorationId); t1 = _this._childrenToAdd; pendingChildren = t1.$index(0, child._restorationId); if (pendingChildren != null) { t2 = J.getInterceptor$ax(pendingChildren); _this._finalizeAddChildData$1(t2.removeLast$0(pendingChildren)); if (t2.get$isEmpty(pendingChildren)) t1.remove$1(0, child._restorationId); } if (J.get$isEmpty$asx(_this.get$_rawChildren())) J.remove$1$ax(_this._rawData, "c"); _this._markNeedsSerialization$0(); return; } t1 = _this._childrenToAdd; t2 = t1.$index(0, child._restorationId); if (t2 != null) J.remove$1$ax(t2, child); t2 = t1.$index(0, child._restorationId); if ((t2 == null ? null : J.get$isEmpty$asx(t2)) === true) t1.remove$1(0, child._restorationId); }, _addChildData$1: function(child) { var _this = this; if (_this._claimedChildren.containsKey$1(0, child._restorationId)) { J.add$1$ax(_this._childrenToAdd.putIfAbsent$2(0, child._restorationId, new K.RestorationBucket__addChildData_closure()), child); _this._markNeedsSerialization$0(); return; } _this._finalizeAddChildData$1(child); _this._markNeedsSerialization$0(); }, _finalizeAddChildData$1: function(child) { this._claimedChildren.$indexSet(0, child._restorationId, child); J.$indexSet$ax(this.get$_rawChildren(), child._restorationId, child._rawData); }, _visitChildren$2$concurrentModification: function(visitor, concurrentModification) { var t2, children, t1 = this._claimedChildren; t1 = t1.get$values(t1); t2 = this._childrenToAdd; t2 = t2.get$values(t2); children = t1.followedBy$1(0, new H.ExpandIterable(t2, new K.RestorationBucket__visitChildren_closure(), H._instanceType(t2)._eval$1("ExpandIterable"))); J.forEach$1$ax(concurrentModification ? P.List_List$of(children, false, H._instanceType(children)._eval$1("Iterable.E")) : children, visitor); }, _visitChildren$1: function(visitor) { return this._visitChildren$2$concurrentModification(visitor, false); }, rename$1: function(newRestorationId) { var t1, _this = this; if (newRestorationId == _this._restorationId) return; t1 = _this._restoration$_parent; if (t1 != null) t1._removeChildData$1(_this); _this._restorationId = newRestorationId; t1 = _this._restoration$_parent; if (t1 != null) t1._addChildData$1(_this); }, dispose$0: function(_) { var t1, _this = this; _this._visitChildren$2$concurrentModification(_this.get$_dropChild(), true); _this._claimedChildren.clear$0(0); _this._childrenToAdd.clear$0(0); t1 = _this._restoration$_parent; if (t1 != null) t1._removeChildData$1(_this); _this._restoration$_parent = null; _this._updateManager$1(null); _this._debugDisposed = true; }, toString$0: function(_) { return "RestorationBucket(restorationId: " + H.S(this._restorationId) + ", owner: " + H.S(this._debugOwner) + ")"; } }; K.RestorationBucket__rawChildren_closure.prototype = { call$0: function() { var t1 = type$.nullable_Object; return P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, $signature: 464 }; K.RestorationBucket__rawValues_closure.prototype = { call$0: function() { var t1 = type$.nullable_Object; return P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, $signature: 464 }; K.RestorationBucket__addChildData_closure.prototype = { call$0: function() { return H.setRuntimeTypeInfo([], type$.JSArray_RestorationBucket); }, $signature: 2919 }; K.RestorationBucket__visitChildren_closure.prototype = { call$1: function(buckets) { return buckets; }, $signature: 2898 }; X.ApplicationSwitcherDescription.prototype = {}; X.SystemUiOverlayStyle.prototype = { _toMap$0: function() { var t2, t3, t4, _this = this, _null = null, t1 = _this.systemNavigationBarColor; t1 = t1 == null ? _null : t1.value; t2 = _this.statusBarBrightness; t2 = t2 == null ? _null : t2._ui$_name; t3 = _this.statusBarIconBrightness; t3 = t3 == null ? _null : t3._ui$_name; t4 = _this.systemNavigationBarIconBrightness; return P.LinkedHashMap_LinkedHashMap$_literal(["systemNavigationBarColor", t1, "systemNavigationBarDividerColor", null, "statusBarColor", null, "statusBarBrightness", t2, "statusBarIconBrightness", t3, "systemNavigationBarIconBrightness", t4 == null ? _null : t4._ui$_name], type$.String, type$.dynamic); }, toString$0: function(_) { return P.MapBase_mapToString(this._toMap$0()); }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.systemNavigationBarColor, _this.systemNavigationBarDividerColor, _this.statusBarColor, _this.statusBarBrightness, _this.statusBarIconBrightness, _this.systemNavigationBarIconBrightness, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; if (other instanceof X.SystemUiOverlayStyle) if (J.$eq$(other.systemNavigationBarColor, _this.systemNavigationBarColor)) t1 = other.statusBarIconBrightness == _this.statusBarIconBrightness && other.statusBarBrightness == _this.statusBarBrightness && other.systemNavigationBarIconBrightness == _this.systemNavigationBarIconBrightness; else t1 = false; else t1 = false; return t1; } }; X.SystemChrome_setSystemUIOverlayStyle_closure.prototype = { call$0: function() { if (!J.$eq$($.SystemChrome__pendingStyle, $.SystemChrome__latestStyle)) { C.OptionalMethodChannel_0.invokeMethod$1$2("SystemChrome.setSystemUIOverlayStyle", $.SystemChrome__pendingStyle._toMap$0(), type$.void); $.SystemChrome__latestStyle = $.SystemChrome__pendingStyle; } $.SystemChrome__pendingStyle = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SystemSoundType.prototype = { toString$0: function(_) { return this._system_sound$_name; } }; X.TextSelection.prototype = { toString$0: function(_) { var _this = this; return "TextSelection(baseOffset: " + H.S(_this.baseOffset) + ", extentOffset: " + H.S(_this.extentOffset) + ", affinity: " + _this.affinity.toString$0(0) + ", isDirectional: " + _this.isDirectional + ")"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof X.TextSelection && other.baseOffset == _this.baseOffset && other.extentOffset == _this.extentOffset && other.affinity === _this.affinity && other.isDirectional === _this.isDirectional; }, get$hashCode: function(_) { var _this = this; return P.hashValues(J.get$hashCode$(_this.baseOffset), J.get$hashCode$(_this.extentOffset), H.Primitives_objectHashCode(_this.affinity), C.JSBool_methods.get$hashCode(_this.isDirectional), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, copyWith$2$baseOffset$extentOffset: function(baseOffset, extentOffset) { var _this = this, t1 = baseOffset == null ? _this.baseOffset : baseOffset, t2 = extentOffset == null ? _this.extentOffset : extentOffset; return X.TextSelection$(_this.affinity, t1, t2, _this.isDirectional); }, copyWith$1$extentOffset: function(extentOffset) { return this.copyWith$2$baseOffset$extentOffset(null, extentOffset); }, copyWith$1$baseOffset: function(baseOffset) { return this.copyWith$2$baseOffset$extentOffset(baseOffset, null); } }; B.MaxLengthEnforcement.prototype = { toString$0: function(_) { return this._text_formatter$_name; } }; B.TextInputFormatter.prototype = {}; B.FilteringTextInputFormatter.prototype = { formatEditUpdate$2: function(oldValue, newValue) { var manipulatedText, manipulatedSelection, beforeSelection, inSelection, afterSelection, t1 = new B.FilteringTextInputFormatter_formatEditUpdate_closure(this), t2 = newValue.selection, selectionStartIndex = t2.start, selectionEndIndex = t2.end, t3 = selectionStartIndex < 0 || selectionEndIndex < 0, t4 = newValue.text; if (t3) { manipulatedText = t1.call$1(t4); manipulatedSelection = null; } else { beforeSelection = t1.call$1(J.substring$2$s(t4, 0, selectionStartIndex)); inSelection = t1.call$1(C.JSString_methods.substring$2(t4, selectionStartIndex, selectionEndIndex)); afterSelection = t1.call$1(C.JSString_methods.substring$1(t4, selectionEndIndex)); manipulatedText = C.JSString_methods.$add(J.$add$ansx(beforeSelection, inSelection), afterSelection); t1 = beforeSelection.length; manipulatedSelection = t2.baseOffset > t2.extentOffset ? t2.copyWith$2$baseOffset$extentOffset(t1 + inSelection.length, t1) : t2.copyWith$2$baseOffset$extentOffset(t1, t1 + inSelection.length); } t1 = manipulatedSelection == null ? C.TextSelection_TbC : manipulatedSelection; return new N.TextEditingValue(manipulatedText, t1, manipulatedText == t4 ? newValue.composing : C.TextRange_m1_m1); } }; B.FilteringTextInputFormatter_formatEditUpdate_closure.prototype = { call$1: function(substring) { var t1 = this.$this, t2 = t1.allow, t3 = !t2 ? new B.FilteringTextInputFormatter_formatEditUpdate__closure(t1) : null; t2 = t2 ? new B.FilteringTextInputFormatter_formatEditUpdate__closure0(t1) : null; substring.toString; return H.stringReplaceAllFuncUnchecked(substring, t1.filterPattern, t3, t2); }, $signature: 101 }; B.FilteringTextInputFormatter_formatEditUpdate__closure.prototype = { call$1: function(match) { return ""; }, $signature: 392 }; B.FilteringTextInputFormatter_formatEditUpdate__closure0.prototype = { call$1: function(nonMatch) { return ""; }, $signature: 101 }; B.LengthLimitingTextInputFormatter.prototype = { formatEditUpdate$2: function(oldValue, newValue) { var t1, maxLength = this.maxLength; if (maxLength != null) if (maxLength !== -1) { t1 = new T.StringCharacters(newValue.text); t1 = t1.get$length(t1) <= maxLength; } else t1 = true; else t1 = true; if (t1) return newValue; t1 = this.maxLengthEnforcement; switch (t1 == null ? B.LengthLimitingTextInputFormatter_getDefaultMaxLengthEnforcement(null) : t1) { case C.MaxLengthEnforcement_0: return newValue; case C.MaxLengthEnforcement_1: t1 = new T.StringCharacters(oldValue.text); if (t1.get$length(t1) === maxLength) { t1 = oldValue.selection; t1 = t1.start == t1.end; } else t1 = false; if (t1) return oldValue; return B.LengthLimitingTextInputFormatter_truncate(newValue, maxLength); case C.MaxLengthEnforcement_2: t1 = new T.StringCharacters(oldValue.text); if (t1.get$length(t1) === maxLength && !oldValue.composing.get$isValid()) return oldValue; if (newValue.composing.get$isValid()) return newValue; return B.LengthLimitingTextInputFormatter_truncate(newValue, maxLength); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; N.SmartDashesType.prototype = { toString$0: function(_) { return this._text_input$_name; } }; N.SmartQuotesType.prototype = { toString$0: function(_) { return this._text_input$_name; } }; N.TextInputType.prototype = { toJson$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["name", "TextInputType." + C.List_Gn1[this.index], "signed", this.signed, "decimal", this.decimal], type$.String, type$.dynamic); }, toString$0: function(_) { return "TextInputType(name: " + ("TextInputType." + C.List_Gn1[this.index]) + ", signed: " + H.S(this.signed) + ", decimal: " + H.S(this.decimal) + ")"; }, $eq: function(_, other) { if (other == null) return false; return other instanceof N.TextInputType && other.index === this.index && other.signed == this.signed && other.decimal == this.decimal; }, get$hashCode: function(_) { return P.hashValues(this.index, this.signed, this.decimal, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; N.TextInputAction.prototype = { toString$0: function(_) { return this._text_input$_name; } }; N.TextCapitalization0.prototype = { toString$0: function(_) { return "TextCapitalization.none"; } }; N.TextInputConfiguration.prototype = { toJson$0: function() { var t2, _this = this, t1 = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t1.$indexSet(0, "inputType", _this.inputType.toJson$0()); t1.$indexSet(0, "readOnly", _this.readOnly); t1.$indexSet(0, "obscureText", _this.obscureText); t1.$indexSet(0, "autocorrect", _this.autocorrect); t1.$indexSet(0, "smartDashesType", C.JSInt_methods.toString$0(_this.smartDashesType.index)); t1.$indexSet(0, "smartQuotesType", C.JSInt_methods.toString$0(_this.smartQuotesType.index)); t1.$indexSet(0, "enableSuggestions", true); t1.$indexSet(0, "actionLabel", _this.actionLabel); t1.$indexSet(0, "inputAction", _this.inputAction._text_input$_name); t1.$indexSet(0, "textCapitalization", "TextCapitalization.none"); t1.$indexSet(0, "keyboardAppearance", _this.keyboardAppearance._ui$_name); t2 = _this.autofillConfiguration; if (t2 != null) t1.$indexSet(0, "autofill", t2.toJson$0()); return t1; } }; N.FloatingCursorDragState.prototype = { toString$0: function(_) { return this._text_input$_name; } }; N.TextEditingValue.prototype = { toJSON$0: function() { var t1 = this.selection, t2 = this.composing; return P.LinkedHashMap_LinkedHashMap$_literal(["text", this.text, "selectionBase", t1.baseOffset, "selectionExtent", t1.extentOffset, "selectionAffinity", t1.affinity._ui$_name, "selectionIsDirectional", t1.isDirectional, "composingBase", t2.start, "composingExtent", t2.end], type$.String, type$.dynamic); }, copyWith$3$composing$selection$text: function(composing, selection, text) { var t1 = text == null ? this.text : text, t2 = selection == null ? this.selection : selection; return new N.TextEditingValue(t1, t2, composing == null ? this.composing : composing); }, copyWith$1$selection: function(selection) { return this.copyWith$3$composing$selection$text(null, selection, null); }, copyWith$1$composing: function(composing) { return this.copyWith$3$composing$selection$text(composing, null, null); }, copyWith$2$composing$selection: function(composing, selection) { return this.copyWith$3$composing$selection$text(composing, selection, null); }, copyWith$1$text: function(text) { return this.copyWith$3$composing$selection$text(null, null, text); }, toString$0: function(_) { return "TextEditingValue(text: \u2524" + H.S(this.text) + "\u251c, selection: " + this.selection.toString$0(0) + ", composing: " + this.composing.toString$0(0) + ")"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return other instanceof N.TextEditingValue && other.text == _this.text && other.selection.$eq(0, _this.selection) && other.composing.$eq(0, _this.composing); }, get$hashCode: function(_) { var t1 = this.selection, t2 = this.composing; return P.hashValues(J.get$hashCode$(this.text), t1.get$hashCode(t1), P.hashValues(J.get$hashCode$(t2.start), J.get$hashCode$(t2.end), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, text$0: function($receiver) { return this.text.call$0(); } }; N.SelectionChangedCause.prototype = { toString$0: function(_) { return this._text_input$_name; } }; N.TextSelectionDelegate.prototype = {}; N.TextInputConnection.prototype = { setComposingRect$1: function(rect) { var validRect, t1, t2, t3; if (rect.$eq(0, this._cachedRect)) return; this._cachedRect = rect; validRect = rect.get$isFinite(rect) ? rect : new P.Rect(0, 0, -1, -1); t1 = $.$get$TextInput__instance(); t2 = validRect.left; t3 = validRect.top; t3 = P.LinkedHashMap_LinkedHashMap$_literal(["width", validRect.right - t2, "height", validRect.bottom - t3, "x", t2, "y", t3], type$.String, type$.dynamic); t1.get$_channel().invokeMethod$1$2("TextInput.setMarkedTextRect", t3, type$.void); }, setCaretRect$1: function(rect) { var validRect, t1, t2, t3; if (rect.$eq(0, this._cachedCaretRect)) return; this._cachedCaretRect = rect; validRect = rect.get$isFinite(rect) ? rect : new P.Rect(0, 0, -1, -1); t1 = $.$get$TextInput__instance(); t2 = validRect.left; t3 = validRect.top; t3 = P.LinkedHashMap_LinkedHashMap$_literal(["width", validRect.right - t2, "height", validRect.bottom - t3, "x", t2, "y", t3], type$.String, type$.dynamic); t1.get$_channel().invokeMethod$1$2("TextInput.setCaretRect", t3, type$.void); }, setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection: function(_, fontFamily, fontSize, fontWeight, textAlign, textDirection) { var t1 = $.$get$TextInput__instance(), t2 = fontWeight == null ? null : fontWeight.index; t2 = P.LinkedHashMap_LinkedHashMap$_literal(["fontFamily", fontFamily, "fontSize", fontSize, "fontWeightIndex", t2, "textAlignIndex", textAlign.index, "textDirectionIndex", textDirection.index], type$.String, type$.dynamic); t1.get$_channel().invokeMethod$1$2("TextInput.setStyle", t2, type$.void); } }; N.TextInput.prototype = { _attach$2: function(connection, configuration) { this.get$_channel().invokeMethod$1$2("TextInput.setClient", [connection._text_input$_id, configuration.toJson$0()], type$.void); this._currentConnection = connection; this.__TextInput__currentConfiguration = configuration; }, get$_channel: function() { var t1 = this.__TextInput__channel; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_channel")) : t1; }, _handleTextInputInvocation$1: function(methodCall) { return this._handleTextInputInvocation$body$TextInput(methodCall); }, _handleTextInputInvocation$body$TextInput: function(methodCall) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, method, t2, args, scope, editingValue, t3, t4, t5, textEditingValue, client, action, offset, currentTextPosition, t6, centeredPoint, rawCursorOffset, t7, bottomBound, rightBound, deltaPosition, currentX, currentY, adjustedX, adjustedY, t8, t1; var $async$_handleTextInputInvocation$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._currentConnection; if (t1 == null) { // goto return $async$goto = 1; break; } method = methodCall.method; if (method === "TextInputClient.requestExistingInputState") { t2 = $async$self.__TextInput__currentConfiguration; $async$self._attach$2(t1, t2 === $ ? H.throwExpression(H.LateError$fieldNI("_currentConfiguration")) : t2); t1 = $async$self._currentConnection._text_input$_client._widget.controller._change_notifier$_value; if (t1 != null) $async$self.get$_channel().invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), type$.void); // goto return $async$goto = 1; break; } args = type$.List_dynamic._as(methodCall.$arguments); if (method === string$.TextIn) { scope = t1._text_input$_client._currentAutofillScope; t1 = type$.Map_String_dynamic; editingValue = t1._as(J.$index$asx(args, 1)); for (t2 = J.getInterceptor$x(editingValue), t3 = J.get$iterator$ax(t2.get$keys(editingValue)), t4 = scope == null; t3.moveNext$0();) { t5 = t3.get$current(t3); textEditingValue = N.TextEditingValue_TextEditingValue$fromJSON(t1._as(t2.$index(editingValue, t5))); if (!t4) { t5 = scope._autofill$_clients.$index(0, t5); if (t5 != null) t5.updateEditingValue$1(textEditingValue); } } // goto return $async$goto = 1; break; } t1 = J.getInterceptor$asx(args); client = H._asIntS(t1.$index(args, 0)); t2 = $async$self._currentConnection; if (client !== t2._text_input$_id) { // goto return $async$goto = 1; break; } switch (method) { case "TextInputClient.updateEditingState": t2._text_input$_client.updateEditingValue$1(N.TextEditingValue_TextEditingValue$fromJSON(type$.Map_String_dynamic._as(t1.$index(args, 1)))); break; case "TextInputClient.performAction": t2 = t2._text_input$_client; action = N._toTextInputAction(H._asStringS(t1.$index(args, 1))); switch (action) { case C.TextInputAction_12: if (t2._widget.maxLines === 1) t2._finalizeEditing$2$shouldUnfocus(action, true); break; case C.TextInputAction_2: case C.TextInputAction_3: case C.TextInputAction_6: case C.TextInputAction_7: case C.TextInputAction_4: case C.TextInputAction_5: t2._finalizeEditing$2$shouldUnfocus(action, true); break; case C.TextInputAction_8: case C.TextInputAction_11: case C.TextInputAction_9: case C.TextInputAction_0: case C.TextInputAction_10: case C.TextInputAction_1: t2._finalizeEditing$2$shouldUnfocus(action, false); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } break; case "TextInputClient.performPrivateCommand": t2 = t2._text_input$_client; t3 = H._asStringS(J.$index$asx(t1.$index(args, 1), "action")); t1 = type$.Map_String_dynamic._as(J.$index$asx(t1.$index(args, 1), "data")); t2._widget.onAppPrivateCommand.call$2(t3, t1); break; case "TextInputClient.updateFloatingCursor": t2 = t2._text_input$_client; t3 = N._toTextCursorAction(H._asStringS(t1.$index(args, 1))); t1 = type$.Map_String_dynamic._as(t1.$index(args, 2)); if (t3 === C.FloatingCursorDragState_1) { t4 = J.getInterceptor$asx(t1); offset = new P.Offset(H._asDoubleS(t4.$index(t1, "X")), H._asDoubleS(t4.$index(t1, "Y"))); } else offset = C.Offset_0_0; switch (t3) { case C.FloatingCursorDragState_0: t1 = t2.get$_floatingCursorResetController()._ticker; if (t1 != null && t1._ticker$_future != null) { t2.get$_floatingCursorResetController().stop$0(0); t2._onFloatingCursorResetTick$0(); } t2._pointOffsetOrigin = offset; t1 = t2._editableKey; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t4.toString; t5 = type$.RenderEditable; currentTextPosition = new P.TextPosition(t5._as(t4)._selection.baseOffset, C.TextAffinity_1); t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t4.toString; t4 = t5._as(t4).getLocalRectForCaret$1(currentTextPosition); t2._startCaretRect = t4; t4 = t4.get$center(); t6 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t6.toString; t2._lastBoundedOffset = t4.$sub(0, new P.Offset(0, t5._as(t6)._textPainter.get$preferredLineHeight() / 2)); t2._lastTextPosition = currentTextPosition; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t5._as(t1); t5 = t2._lastBoundedOffset; t5.toString; t2 = t2._lastTextPosition; t2.toString; t1.setFloatingCursor$3(t3, t5, t2); break; case C.FloatingCursorDragState_1: t1 = t2._pointOffsetOrigin; t1.toString; centeredPoint = offset.$sub(0, t1); t1 = t2._startCaretRect.get$center().$add(0, centeredPoint); t4 = t2._editableKey; t5 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t5.toString; t6 = type$.RenderEditable; rawCursorOffset = t1.$sub(0, new P.Offset(0, t6._as(t5)._textPainter.get$preferredLineHeight() / 2)); t5 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t5.toString; t6._as(t5); t1 = t5._textPainter; t7 = t1._text_painter$_paragraph; t7 = t7.get$height(t7); t7.toString; bottomBound = Math.ceil(t7) - t1.get$preferredLineHeight() + 5; rightBound = t1.get$width(t1) + 4; t1 = t5._previousOffset; deltaPosition = t1 != null ? rawCursorOffset.$sub(0, t1) : C.Offset_0_0; if (t5._resetOriginOnLeft && deltaPosition._dx > 0) { t5._relativeOrigin = new P.Offset(rawCursorOffset._dx - -4, t5._relativeOrigin._dy); t5._resetOriginOnLeft = false; } else if (t5._resetOriginOnRight && deltaPosition._dx < 0) { t5._relativeOrigin = new P.Offset(rawCursorOffset._dx - rightBound, t5._relativeOrigin._dy); t5._resetOriginOnRight = false; } if (t5._resetOriginOnTop && deltaPosition._dy > 0) { t5._relativeOrigin = new P.Offset(t5._relativeOrigin._dx, rawCursorOffset._dy - -4); t5._resetOriginOnTop = false; } else if (t5._resetOriginOnBottom && deltaPosition._dy < 0) { t5._relativeOrigin = new P.Offset(t5._relativeOrigin._dx, rawCursorOffset._dy - bottomBound); t5._resetOriginOnBottom = false; } t1 = t5._relativeOrigin; currentX = rawCursorOffset._dx - t1._dx; currentY = rawCursorOffset._dy - t1._dy; adjustedX = Math.min(Math.max(currentX, -4), rightBound); adjustedY = Math.min(Math.max(currentY, -4), bottomBound); if (currentX < -4 && deltaPosition._dx < 0) t5._resetOriginOnLeft = true; else if (currentX > rightBound && deltaPosition._dx > 0) t5._resetOriginOnRight = true; if (currentY < -4 && deltaPosition._dy < 0) t5._resetOriginOnTop = true; else if (currentY > bottomBound && deltaPosition._dy > 0) t5._resetOriginOnBottom = true; t5._previousOffset = rawCursorOffset; t2._lastBoundedOffset = new P.Offset(adjustedX, adjustedY); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t1.toString; t6._as(t1); t5 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t5.toString; t6._as(t5); t7 = t2._lastBoundedOffset; t7.toString; t8 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t8.toString; t8 = t7.$add(0, new P.Offset(0, t6._as(t8)._textPainter.get$preferredLineHeight() / 2)); t2._lastTextPosition = t1.getPositionForPoint$1(T.MatrixUtils_transformPoint(t5.getTransformTo$1(0, null), t8)); t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4).get$renderObject(); t4.toString; t6._as(t4); t6 = t2._lastBoundedOffset; t6.toString; t2 = t2._lastTextPosition; t2.toString; t4.setFloatingCursor$3(t3, t6, t2); break; case C.FloatingCursorDragState_2: if (t2._lastTextPosition != null && t2._lastBoundedOffset != null) { t2.get$_floatingCursorResetController().set$value(0, 0); t1 = t2.get$_floatingCursorResetController(); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, C.C__DecelerateCurve, C.Duration_125000); } break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); } break; case "TextInputClient.onConnectionClosed": t1 = t2._text_input$_client; if (t1.get$_hasInputConnection()) { t1._textInputConnection.toString; t1._lastKnownRemoteTextEditingValue = t1._textInputConnection = $.$get$TextInput__instance()._currentConnection = null; t1._finalizeEditing$2$shouldUnfocus(C.TextInputAction_2, true); } break; case "TextInputClient.showAutocorrectionPromptRect": t2._text_input$_client.showAutocorrectionPromptRect$2(H._asIntS(t1.$index(args, 1)), H._asIntS(t1.$index(args, 2))); break; default: throw H.wrapException(F.MissingPluginException$(null)); } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_handleTextInputInvocation$1, $async$completer); }, _scheduleHide$0: function() { if (this._hidePending) return; this._hidePending = true; P.scheduleMicrotask(new N.TextInput__scheduleHide_closure(this)); } }; N.TextInput__scheduleHide_closure.prototype = { call$0: function() { var t1 = this.$this; t1._hidePending = false; if (t1._currentConnection == null) t1.get$_channel().invokeMethod$1$1("TextInput.hide", type$.void); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; U._getParent__parent_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._parent0 === $) return t2._parent0 = t1; else throw H.wrapException(H.LateError$localAI("parent")); }, $signature: 2837 }; U._getParent__parent_get.prototype = { call$0: function() { var t1 = this._box_0._parent0; return t1 === $ ? H.throwExpression(H.LateError$localNI("parent")) : t1; }, $signature: 2815 }; U._getParent_closure.prototype = { call$1: function(ancestor) { this._parent_set.call$1(ancestor); return false; }, $signature: 119 }; U.Intent.prototype = {}; U.Action.prototype = { isEnabled$1: function(_, intent) { return true; }, consumesKey$1: function(intent) { return true; } }; U.ContextAction.prototype = {}; U.CallbackAction.prototype = { invoke$1: function(intent) { return this.onInvoke.call$1(intent); } }; U.ActionDispatcher.prototype = { invokeAction$3: function(action, intent, context) { var t1; if (action instanceof U.ContextAction) { if (context == null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; context = t1 == null ? null : t1._context; } return action.invoke$2(intent, context); } else return action.invoke$1(intent); } }; U.Actions.prototype = { createState$0: function() { return new U._ActionsState(P.LinkedHashSet_LinkedHashSet$_empty(type$.Action_Intent), new P.Object(), C._StateLifecycle_0); } }; U.Actions__findDispatcher_closure.prototype = { call$1: function(element) { type$._ActionsMarker._as(element.get$widget()).toString; return false; }, $signature: 466 }; U.Actions_maybeFind_closure.prototype = { call$1: function(element) { var t1, _this = this, result = _this.T._eval$1("Action<0>?")._as(J.$index$asx(type$._ActionsMarker._as(element.get$widget()).actions, _this.type)); if (result != null) { t1 = _this.context; t1.toString; t1.super$Element$dependOnInheritedElement(element, null); _this._box_0.action = result; return true; } return false; }, $signature: 466 }; U._ActionsState.prototype = { initState$0: function() { this.super$State$initState(); this._updateActionListeners$0(); }, _handleActionChanged$1: function(action) { this.setState$1(new U._ActionsState__handleActionChanged_closure(this)); }, _updateActionListeners$0: function() { var addedActions, t2, t3, t4, _this = this, widgetActions = J.toSet$0$ax(J.get$values$x(_this._widget.actions)), removedActions = _this.listenedActions.difference$1(widgetActions), t1 = _this.listenedActions; t1.toString; addedActions = widgetActions.difference$1(t1); for (t1 = removedActions.get$iterator(removedActions), t2 = _this.get$_handleActionChanged(); t1.moveNext$0();) { t3 = t1.get$current(t1)._actions$_listeners; t3._isDirty = true; t4 = t3.get$_observer_list$_set(); if (t4._collection$_length > 0) { t4._collection$_strings = t4._collection$_nums = t4._collection$_rest = t4._elements = null; t4._collection$_length = 0; } C.JSArray_methods.remove$1(t3._observer_list$_list, t2); } for (t1 = addedActions.get$iterator(addedActions); t1.moveNext$0();) { t3 = t1.get$current(t1)._actions$_listeners; t3._isDirty = true; t3._observer_list$_list.push(t2); } _this.listenedActions = widgetActions; }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateActionListeners$0(); }, dispose$0: function(_) { var t1, t2, t3, t4, _this = this; _this.super$State$dispose(0); for (t1 = _this.listenedActions, t1 = t1.get$iterator(t1), t2 = _this.get$_handleActionChanged(); t1.moveNext$0();) { t3 = t1.get$current(t1)._actions$_listeners; t3._isDirty = true; t4 = t3.get$_observer_list$_set(); if (t4._collection$_length > 0) { t4._collection$_strings = t4._collection$_nums = t4._collection$_rest = t4._elements = null; t4._collection$_length = 0; } C.JSArray_methods.remove$1(t3._observer_list$_list, t2); } _this.listenedActions = null; }, build$1: function(_, context) { var t1 = this._widget; return new U._ActionsMarker(null, t1.actions, this.rebuildKey, t1.child, null); } }; U._ActionsState__handleActionChanged_closure.prototype = { call$0: function() { this.$this.rebuildKey = new P.Object(); }, $signature: 0 }; U._ActionsMarker.prototype = { updateShouldNotify$1: function(oldWidget) { var t1; if (this.rebuildKey === oldWidget.rebuildKey) t1 = !S.mapEquals(oldWidget.actions, this.actions); else t1 = true; return t1; } }; U.FocusableActionDetector.prototype = { createState$0: function() { return new U._FocusableActionDetectorState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); } }; U._FocusableActionDetectorState.prototype = { initState$0: function() { this.super$State$initState(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._FocusableActionDetectorState_initState_closure(this)); $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.add$1(0, this.get$_actions$_handleFocusHighlightModeChange()); }, dispose$0: function(_) { $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._focus_manager$_listeners.remove$1(0, this.get$_actions$_handleFocusHighlightModeChange()); this.super$State$dispose(0); }, _updateHighlightMode$1: function(mode) { this._mayTriggerCallback$1$task(new U._FocusableActionDetectorState__updateHighlightMode_closure(this)); }, _actions$_handleFocusHighlightModeChange$1: function(mode) { if (this._framework$_element == null) return; this._updateHighlightMode$1(mode); }, _actions$_handleMouseEnter$1: function($event) { if (!this._actions$_hovering) this._mayTriggerCallback$1$task(new U._FocusableActionDetectorState__handleMouseEnter_closure(this)); }, _actions$_handleMouseExit$1: function($event) { if (this._actions$_hovering) this._mayTriggerCallback$1$task(new U._FocusableActionDetectorState__handleMouseExit_closure(this)); }, _handleFocusChange$1: function(focused) { var t1, _this = this; if (_this._actions$_focused !== focused) { _this._mayTriggerCallback$1$task(new U._FocusableActionDetectorState__handleFocusChange_closure(_this, focused)); t1 = _this._widget.onFocusChange; if (t1 != null) t1.call$1(_this._actions$_focused); } }, _mayTriggerCallback$2$oldWidget$task: function(oldWidget, task) { var t3, oldTarget, didShowHoverHighlight, didShowFocusHighlight, doShowHoverHighlight, doShowFocusHighlight, _this = this, t1 = new U._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight(_this), t2 = new U._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight(_this, new U._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus(_this)); if (oldWidget == null) { t3 = _this._widget; t3.toString; oldTarget = t3; } else oldTarget = oldWidget; didShowHoverHighlight = t1.call$1(oldTarget); didShowFocusHighlight = t2.call$1(oldTarget); if (task != null) task.call$0(); t3 = _this._widget; t3.toString; doShowHoverHighlight = t1.call$1(t3); t3 = _this._widget; t3.toString; doShowFocusHighlight = t2.call$1(t3); if (didShowFocusHighlight != doShowFocusHighlight) { t1 = _this._widget.onShowFocusHighlight; if (t1 != null) t1.call$1(doShowFocusHighlight); } if (didShowHoverHighlight != doShowHoverHighlight) { t1 = _this._widget.onShowHoverHighlight; if (t1 != null) t1.call$1(doShowHoverHighlight); } }, _mayTriggerCallback$1$task: function(task) { return this._mayTriggerCallback$2$oldWidget$task(null, task); }, _mayTriggerCallback$1$oldWidget: function(oldWidget) { return this._mayTriggerCallback$2$oldWidget$task(oldWidget, null); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.enabled !== oldWidget.enabled) $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._FocusableActionDetectorState_didUpdateWidget_closure(this, oldWidget)); }, get$_actions$_canRequestFocus: function() { var mode, t1 = this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: return this._widget.enabled; case C.NavigationMode_1: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t3, t4, child, _this = this, _null = null, t1 = _this._widget, t2 = t1.mouseCursor; t1 = t1.focusNode; t3 = _this.get$_actions$_canRequestFocus(); t4 = _this._widget; child = new T.MouseRegion(_this.get$_actions$_handleMouseEnter(), _null, _this.get$_actions$_handleMouseExit(), t2, true, L.Focus$(false, t3, t4.child, _null, true, t1, true, _null, _this.get$_handleFocusChange(), _null, _null), _this._mouseRegionKey); if (t4.enabled) { t1 = t4.actions; t1 = t1 != null && J.get$isNotEmpty$asx(t1); } else t1 = false; if (t1) { t1 = _this._widget.actions; t1.toString; child = new U.Actions(t1, child, _null); } t1 = _this._widget; if (t1.enabled) { t1 = t1.shortcuts; t1 = t1 != null && t1.get$isNotEmpty(t1); } else t1 = false; if (t1) { t1 = _this._widget.shortcuts; t1.toString; child = new X.Shortcuts(t1, child, _null, _null); } return child; } }; U._FocusableActionDetectorState_initState_closure.prototype = { call$1: function(duration) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; if (t1 == null) t1 = O.FocusManager__defaultModeForPlatform(); this.$this._updateHighlightMode$1(t1); }, $signature: 28 }; U._FocusableActionDetectorState__updateHighlightMode_closure.prototype = { call$0: function() { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._highlightMode; switch (t1 == null ? O.FocusManager__defaultModeForPlatform() : t1) { case C.FocusHighlightMode_0: this.$this._canShowHighlight = false; break; case C.FocusHighlightMode_1: this.$this._canShowHighlight = true; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 0 }; U._FocusableActionDetectorState__handleMouseEnter_closure.prototype = { call$0: function() { this.$this._actions$_hovering = true; }, $signature: 0 }; U._FocusableActionDetectorState__handleMouseExit_closure.prototype = { call$0: function() { this.$this._actions$_hovering = false; }, $signature: 0 }; U._FocusableActionDetectorState__handleFocusChange_closure.prototype = { call$0: function() { this.$this._actions$_focused = this.focused; }, $signature: 0 }; U._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight.prototype = { call$1: function(target) { var t1 = this.$this; return t1._actions$_hovering && target.enabled && t1._canShowHighlight; }, $signature: 455 }; U._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus.prototype = { call$1: function(target) { var mode, t1 = this.$this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); mode = t1 == null ? null : t1.navigationMode; switch (mode == null ? C.NavigationMode_0 : mode) { case C.NavigationMode_0: return target.enabled; case C.NavigationMode_1: return true; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 455 }; U._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight.prototype = { call$1: function(target) { var t1 = this.$this; return t1._actions$_focused && t1._canShowHighlight && this.canRequestFocus.call$1(target); }, $signature: 455 }; U._FocusableActionDetectorState_didUpdateWidget_closure.prototype = { call$1: function(duration) { this.$this._mayTriggerCallback$1$oldWidget(this.oldWidget); }, $signature: 28 }; U.DoNothingAction.prototype = { consumesKey$1: function(intent) { return this._consumesKey; }, invoke$1: function(intent) { } }; U.ActivateIntent.prototype = {}; U.ButtonActivateIntent.prototype = {}; U.DismissIntent.prototype = {}; U.DismissAction.prototype = {}; U.PrioritizedIntents.prototype = {}; U.PrioritizedAction.prototype = { isEnabled$1: function(_, intent) { var t1, _i, candidateIntent, t2, candidateAction, $focus = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; if ($focus == null || $focus._context == null) return false; intent.toString; t1 = type$.Intent; _i = 0; for (; _i < 2; ++_i) { candidateIntent = C.List_L3K[_i]; t2 = $focus._context; t2.toString; candidateAction = U.Actions_maybeFind(t2, candidateIntent, t1); if (candidateAction != null && candidateAction.isEnabled$1(0, candidateIntent)) { this.__PrioritizedAction__selectedAction = candidateAction; this.__PrioritizedAction__selectedIntent = candidateIntent; return true; } } return false; }, invoke$1: function(intent) { var t2, t1 = this.__PrioritizedAction__selectedAction; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_selectedAction")); t2 = this.__PrioritizedAction__selectedIntent; t1.invoke$1(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_selectedIntent")) : t2); } }; U._Action_Object_Diagnosticable.prototype = {}; U._ActionDispatcher_Object_Diagnosticable.prototype = {}; U._Intent_Object_Diagnosticable.prototype = {}; U.CrossFadeState.prototype = { toString$0: function(_) { return this._animated_cross_fade$_name; } }; U.AnimatedCrossFade.prototype = { createState$0: function() { return new U._AnimatedCrossFadeState(null, C._StateLifecycle_0); }, layoutBuilder$4: function(arg0, arg1, arg2, arg3) { return U.animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure().call$4(arg0, arg1, arg2, arg3); } }; U._AnimatedCrossFadeState.prototype = { get$_firstAnimation: function() { var t1 = this.___AnimatedCrossFadeState__firstAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_firstAnimation")) : t1; }, get$_secondAnimation: function() { var t1 = this.___AnimatedCrossFadeState__secondAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_secondAnimation")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = G.AnimationController$(null, _this._widget.duration, 0, null, 1, null, _this); _this._animated_cross_fade$_controller = t1; if (_this._widget.crossFadeState === C.CrossFadeState_1) t1.set$value(0, 1); _this.___AnimatedCrossFadeState__firstAnimation = _this._initAnimation$2(_this._widget.firstCurve, true); _this.___AnimatedCrossFadeState__secondAnimation = _this._initAnimation$2(_this._widget.secondCurve, false); _this._animated_cross_fade$_controller.addStatusListener$1(new U._AnimatedCrossFadeState_initState_closure(_this)); }, _initAnimation$2: function(curve, inverted) { var t2, result, t1 = this._animated_cross_fade$_controller; t1.toString; t2 = type$.Animation_double; result = new R._AnimatedEvaluation(t2._as(t1), new R.CurveTween(curve), type$.CurveTween._eval$1("_AnimatedEvaluation")); if (inverted) { t1 = type$.Tween_double; result = new R._AnimatedEvaluation(t2._as(result), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); } return result; }, dispose$0: function(_) { this._animated_cross_fade$_controller.dispose$0(0); this.super$__AnimatedCrossFadeState_State_TickerProviderStateMixin$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; t2 = t1.duration; t3 = oldWidget.duration; if (t2._duration !== t3._duration) _this._animated_cross_fade$_controller.duration = t2; t1 = t1.firstCurve; if (t1 !== oldWidget.firstCurve) _this.___AnimatedCrossFadeState__firstAnimation = _this._initAnimation$2(t1, true); t1 = _this._widget.secondCurve; if (t1 !== oldWidget.secondCurve) _this.___AnimatedCrossFadeState__secondAnimation = _this._initAnimation$2(t1, false); t1 = _this._widget.crossFadeState; if (t1 !== oldWidget.crossFadeState) switch (t1) { case C.CrossFadeState_0: _this._animated_cross_fade$_controller.reverse$0(0); break; case C.CrossFadeState_1: _this._animated_cross_fade$_controller.forward$0(0); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var topChild, topAnimation, bottomChild, bottomAnimation, topKey, bottomKey, t2, t3, t4, t5, t6, _this = this, transitioningForwards = _this._animated_cross_fade$_controller.get$_status() === C.AnimationStatus_3 || _this._animated_cross_fade$_controller.get$_status() === C.AnimationStatus_1, t1 = _this._widget; if (transitioningForwards) { topChild = t1.secondChild; topAnimation = _this.get$_secondAnimation(); bottomChild = _this._widget.firstChild; bottomAnimation = _this.get$_firstAnimation(); topKey = C.ValueKey_CrossFadeState_1; bottomKey = C.ValueKey_CrossFadeState_0; } else { topChild = t1.firstChild; topAnimation = _this.get$_firstAnimation(); bottomChild = _this._widget.secondChild; bottomAnimation = _this.get$_secondAnimation(); topKey = C.ValueKey_CrossFadeState_0; bottomKey = C.ValueKey_CrossFadeState_1; } t1 = _this._animated_cross_fade$_controller.get$_status() === C.AnimationStatus_1 || _this._animated_cross_fade$_controller.get$_status() === C.AnimationStatus_2; t2 = K.FadeTransition$(false, bottomChild, bottomAnimation); t3 = K.FadeTransition$(false, topChild, topAnimation); t4 = _this._widget; t5 = t4.duration; t6 = t4.sizeCurve; return T.ClipRect$(F.AnimatedSize$(C.Alignment_0_m1, t4.layoutBuilder$4(new U.TickerMode(true, new T.ExcludeSemantics(false, t3, null), topKey), topKey, new U.TickerMode(t1, new T.ExcludeSemantics(true, t2, null), bottomKey), bottomKey), t6, t5, null, _this)); } }; U._AnimatedCrossFadeState_initState_closure.prototype = { call$1: function($status) { this.$this.setState$1(new U._AnimatedCrossFadeState_initState__closure()); }, $signature: 35 }; U._AnimatedCrossFadeState_initState__closure.prototype = { call$0: function() { }, $signature: 0 }; U.__AnimatedCrossFadeState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; F.AnimatedSize.prototype = { createRenderObject$1: function(context) { var _this = this; return F.RenderAnimatedSize$(_this.alignment, C.Clip_1, _this.curve, _this.duration, _this.reverseDuration, T.Directionality_maybeOf(context), _this.vsync); }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$alignment(_this.alignment); renderObject.set$duration(0, _this.duration); renderObject.set$reverseDuration(_this.reverseDuration); renderObject.set$curve(0, _this.curve); renderObject.set$vsync(_this.vsync); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); if (C.Clip_1 !== renderObject._animated_size$_clipBehavior) { renderObject._animated_size$_clipBehavior = C.Clip_1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; G._ChildEntry.prototype = { toString$0: function(_) { return "Entry#" + Y.shortHash(this) + "(" + this.widgetChild.toString$0(0) + ")"; } }; G.AnimatedSwitcher.prototype = { createState$0: function() { return new G._AnimatedSwitcherState(P.LinkedHashSet_LinkedHashSet$_empty(type$._ChildEntry), C.List_empty8, null, C._StateLifecycle_0); }, transitionBuilder$2: function(arg0, arg1) { return this.transitionBuilder.call$2(arg0, arg1); }, layoutBuilder$2: function(arg0, arg1) { return G.animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure().call$2(arg0, arg1); } }; G._AnimatedSwitcherState.prototype = { initState$0: function() { this.super$State$initState(); this._addEntryForNewChild$1$animate(false); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(_this._widget.transitionBuilder, oldWidget.transitionBuilder)) { _this._outgoingEntries.forEach$1(0, _this.get$_updateTransitionForEntry()); t1 = _this._currentEntry; if (t1 != null) _this._updateTransitionForEntry$1(t1); _this._outgoingWidgets = null; } t1 = _this._widget; t1.toString; t2 = _this._currentEntry; if (t2 != null) { t1 = t1.child; t2 = t2.widgetChild; t1 = !(t1.get$runtimeType(t1) === t2.get$runtimeType(t2) && J.$eq$(t1.key, t2.key)); } else t1 = true; if (t1) { ++_this._childNumber; _this._addEntryForNewChild$1$animate(true); } else { t1 = _this._currentEntry; if (t1 != null) { t1.widgetChild = _this._widget.child; _this._updateTransitionForEntry$1(t1); _this._outgoingWidgets = null; } } }, _addEntryForNewChild$1$animate: function(animate) { var controller, animation, t2, _this = this, t1 = _this._currentEntry; if (t1 != null) { _this._outgoingEntries.add$1(0, t1); _this._currentEntry.controller.reverse$0(0); _this._currentEntry = _this._outgoingWidgets = null; } t1 = _this._widget; controller = G.AnimationController$(null, t1.duration, 0, null, 1, null, _this); _this._widget.toString; animation = S.CurvedAnimation$(C.C__Linear, controller, C.C__Linear); t1 = _this._widget; t2 = t1.child; _this._currentEntry = _this._newEntry$4$animation$builder$child$controller(animation, t1.transitionBuilder, t2, controller); if (animate) controller.forward$0(0); else controller.set$value(0, 1); }, _newEntry$4$animation$builder$child$controller: function(animation, builder, child, controller) { var entry = new G._ChildEntry(controller, animation, T.KeyedSubtree_KeyedSubtree$wrap(builder.call$2(child, animation), this._childNumber), child); animation.parent.addStatusListener$1(new G._AnimatedSwitcherState__newEntry_closure(this, entry, controller)); return entry; }, _updateTransitionForEntry$1: function(entry) { var t1 = entry.transition, t2 = this._widget; t2.toString; entry.transition = new T.KeyedSubtree(t2.transitionBuilder$2(entry.widgetChild, entry.animation), t1.key); }, _rebuildOutgoingWidgetsIfNeeded$0: function() { if (this._outgoingWidgets == null) { var t1 = this._outgoingEntries; this._outgoingWidgets = P.List_List$unmodifiable(new H.EfficientLengthMappedIterable(t1, new G._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure(), H._instanceType(t1)._eval$1("EfficientLengthMappedIterable")), type$.Widget); } }, dispose$0: function(_) { var t2, t1 = this._currentEntry; if (t1 != null) t1.controller.dispose$0(0); for (t1 = this._outgoingEntries, t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current.controller; t2._ticker.dispose$0(0); t2._ticker = null; t2.super$AnimationEagerListenerMixin$dispose(0); } this.super$__AnimatedSwitcherState_State_TickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t1, t2, t3, _this = this; _this._rebuildOutgoingWidgetsIfNeeded$0(); t1 = _this._widget; t1.toString; t2 = _this._currentEntry; t2 = t2 == null ? null : t2.transition; t3 = _this._outgoingWidgets; t3.toString; return t1.layoutBuilder$2(t2, t3); } }; G._AnimatedSwitcherState__newEntry_closure.prototype = { call$1: function($status) { var t1; if ($status === C.AnimationStatus_0) { t1 = this.$this; t1.setState$1(new G._AnimatedSwitcherState__newEntry__closure(t1, this.entry)); this.controller.dispose$0(0); } }, $signature: 35 }; G._AnimatedSwitcherState__newEntry__closure.prototype = { call$0: function() { var t1 = this.$this; t1._outgoingEntries.remove$1(0, this.entry); t1._outgoingWidgets = null; }, $signature: 0 }; G._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure.prototype = { call$1: function(entry) { return entry.transition; }, $signature: 2654 }; G.__AnimatedSwitcherState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; X.AnnotatedRegion.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderAnnotatedRegion(this.value, true, null, this.$ti._eval$1("RenderAnnotatedRegion<1>")); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$value(0, this.value); renderObject.set$sized(true); }, get$value: function(receiver) { return this.value; } }; S.WidgetsApp.prototype = { createState$0: function() { return new S._WidgetsAppState(C._StateLifecycle_0); } }; S._WidgetsAppState.prototype = { get$_initialRouteName: function() { var t1, t2; $.WidgetsBinding__instance.toString; t1 = $.$get$window().platformDispatcher; if (t1.get$defaultRouteName() !== "/") { $.WidgetsBinding__instance.toString; t1 = t1.get$defaultRouteName(); } else { this._widget.toString; t2 = $.WidgetsBinding__instance; t2.toString; t1 = t1.get$defaultRouteName(); } return t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this._updateRouting$0(); $.WidgetsBinding__instance.toString; _this._app$_locale = _this._resolveLocales$2($.$get$window().platformDispatcher._configuration.locales, _this._widget.supportedLocales); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._updateRouting$1$oldWidget(oldWidget); }, dispose$0: function(_) { var t1; C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, this); t1 = this._defaultRouteInformationProvider; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, _updateRouting$1$oldWidget: function(oldWidget) { var t1, _this = this; _this._widget.toString; if (_this.get$_usesNavigator()) { t1 = _this._defaultRouteInformationProvider; if (t1 != null) t1.dispose$0(0); _this._defaultRouteInformationProvider = null; if (oldWidget == null || _this._widget.navigatorKey != oldWidget.navigatorKey) { t1 = _this._widget.navigatorKey; _this._navigator = t1 == null ? new N.GlobalObjectKey(_this, type$.GlobalObjectKey_NavigatorState) : t1; } } else { _this._navigator = null; t1 = _this._defaultRouteInformationProvider; if (t1 != null) t1.dispose$0(0); _this._defaultRouteInformationProvider = null; } }, _updateRouting$0: function() { return this._updateRouting$1$oldWidget(null); }, get$_usesNavigator: function() { var t1 = this._widget; if (t1.home == null) { t1 = t1.routes; t1 = (t1 == null ? null : t1.get$isNotEmpty(t1)) === true || this._widget.onGenerateRoute != null || false; } else t1 = true; return t1; }, _onGenerateRoute$1: function(settings) { var t1, _this = this, $name = settings.name, pageContentBuilder = $name === "/" && _this._widget.home != null ? new S._WidgetsAppState__onGenerateRoute_closure(_this) : _this._widget.routes.$index(0, $name); if (pageContentBuilder != null) return _this._widget.pageRouteBuilder.call$1$2(settings, pageContentBuilder, type$.dynamic); t1 = _this._widget.onGenerateRoute; if (t1 != null) return t1.call$1(settings); return null; }, _onUnknownRoute$1: function(settings) { return this._widget.onUnknownRoute.call$1(settings); }, didPopRoute$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, $navigator; var $async$didPopRoute$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; t1 = $async$self._navigator; $navigator = t1 == null ? null : t1.get$currentState(); if ($navigator == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$returnValue = $navigator.maybePop$0(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$didPopRoute$0, $async$completer); }, didPushRoute$1: function(route) { return this.didPushRoute$body$_WidgetsAppState(route); }, didPushRoute$body$_WidgetsAppState: function(route) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, t1, $navigator; var $async$didPushRoute$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; t1 = $async$self._navigator; $navigator = t1 == null ? null : t1.get$currentState(); if ($navigator == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $navigator.pushNamed$1$1(route, type$.nullable_Object); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$didPushRoute$1, $async$completer); }, _resolveLocales$2: function(preferredLocales, supportedLocales) { this._widget.toString; return S._WidgetsAppState_basicLocaleListResolution(preferredLocales, supportedLocales); }, didChangeLocales$1: function(locales) { var _this = this, newLocale = _this._resolveLocales$2(locales, _this._widget.supportedLocales); if (!J.$eq$(newLocale, _this._app$_locale)) _this.setState$1(new S._WidgetsAppState_didChangeLocales_closure(_this, newLocale)); }, get$_app$_localizationsDelegates: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$get$_app$_localizationsDelegates($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._IterationMarker_yieldStar($async$self._widget.localizationsDelegates); case 2: // after yield $async$goto = 3; return C.C__WidgetsLocalizationsDelegate0; case 3: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.LocalizationsDelegate_dynamic); }, build$1: function(_, context) { var t2, t3, t4, result, performanceOverlay, t5, appLocale, t6, t7, _this = this, _null = null, t1 = {}; t1.routing = null; _this._widget.toString; if (_this.get$_usesNavigator()) { t2 = _this._navigator; t3 = _this.get$_initialRouteName(); t4 = _this._widget; t4 = t4.navigatorObservers; t4.toString; t1.routing = K.Navigator$(t3, t2, t4, K.navigator_Navigator_defaultGenerateInitialRoutes$closure(), _this.get$_onGenerateRoute(), _this.get$_onUnknownRoute(), true, "nav"); } t1.result = null; t2 = _this._widget; t2.toString; result = new T.Builder(new S._WidgetsAppState_build_closure(t1, _this), _null); t1.result = result; result = t1.result = L.DefaultTextStyle$(result, _null, _null, C.TextOverflow_0, true, t2.textStyle, _null, _null, C.TextWidthBasis_0); t2 = $.WidgetsApp_showPerformanceOverlayOverride; if (t2) performanceOverlay = new L.PerformanceOverlay(15, false, false, _null); else performanceOverlay = _null; t1 = performanceOverlay != null ? t1.result = T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([result, T.Positioned$(_null, performanceOverlay, _null, _null, 0, 0, 0, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, _null, _null) : result; t2 = _this._widget; t3 = t2.title; t4 = t2.color; t2 = H.setRuntimeTypeInfo([t2.locale], type$.JSArray_Locale); t5 = _this._widget; appLocale = _this._resolveLocales$2(t2, t5.supportedLocales); t2 = _this._widget.restorationScopeId; t5 = S.WidgetsApp_defaultShortcuts(); t6 = $.$get$WidgetsApp_defaultActions(); t7 = _this.get$_app$_localizationsDelegates(); t1 = U.FocusTraversalGroup$(new S._MediaQueryFromWindow(new L.Localizations(appLocale, P.List_List$of(t7, true, t7.$ti._eval$1("Iterable.E")), new U.Title(t3, t4, t1, _null), _null), _null), new U.ReadingOrderTraversalPolicy(P.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData))); t4 = $.$get$DefaultTextEditingActions__shortcutsActions(); return new K.RootRestorationScope(new X.Shortcuts(t5, new E.DefaultTextEditingShortcuts(E.DefaultTextEditingShortcuts__shortcuts(), new U.Actions(t6, new E.DefaultTextEditingActions(t4, t1, _null), _null), "", _null), "", _null), t2, _null); } }; S._WidgetsAppState__onGenerateRoute_closure.prototype = { call$1: function(context) { var t1 = this.$this._widget.home; t1.toString; return t1; }, $signature: 79 }; S._WidgetsAppState_didChangeLocales_closure.prototype = { call$0: function() { this.$this._app$_locale = this.newLocale; }, $signature: 0 }; S._WidgetsAppState_build_closure.prototype = { call$1: function(context) { return this.$this._widget.builder.call$2(context, this._box_0.routing); }, $signature: 79 }; S._MediaQueryFromWindow.prototype = { createState$0: function() { return new S._MediaQueryFromWindowsState(C._StateLifecycle_0); } }; S._MediaQueryFromWindowsState.prototype = { initState$0: function() { this.super$State$initState(); $.WidgetsBinding__instance.WidgetsBinding__observers.push(this); }, didChangeMetrics$0: function() { this.setState$1(new S._MediaQueryFromWindowsState_didChangeMetrics_closure()); }, didChangePlatformBrightness$0: function() { this.setState$1(new S._MediaQueryFromWindowsState_didChangePlatformBrightness_closure()); }, build$1: function(_, context) { var data; $.WidgetsBinding__instance.toString; data = F.MediaQueryData$fromWindow($.$get$window()).copyWith$1$platformBrightness($.debugBrightnessOverride); return new F.MediaQuery(data, this._widget.child, null); }, dispose$0: function(_) { C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, this); this.super$State$dispose(0); } }; S._MediaQueryFromWindowsState_didChangeMetrics_closure.prototype = { call$0: function() { }, $signature: 0 }; S._MediaQueryFromWindowsState_didChangePlatformBrightness_closure.prototype = { call$0: function() { }, $signature: 0 }; S.__MediaQueryFromWindowsState_State_WidgetsBindingObserver.prototype = {}; S.__WidgetsAppState_State_WidgetsBindingObserver.prototype = {}; B.StreamBuilderBase.prototype = { createState$0: function() { var t1 = this.$ti; return new B._StreamBuilderBaseState(C._StateLifecycle_0, t1._eval$1("@")._bind$1(t1._eval$1("StreamBuilderBase.S"))._eval$1("_StreamBuilderBaseState<1,2>")); } }; B._StreamBuilderBaseState.prototype = { get$_summary: function() { var t1 = this.___StreamBuilderBaseState__summary; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_summary")) : t1; }, initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.initialData; t1 = H._instanceType(t1); _this.___StreamBuilderBaseState__summary = t2 == null ? B.AsyncSnapshot$nothing(t1._precomputed1) : new B.AsyncSnapshot(C.ConnectionState_0, t2, null, null, t1._eval$1("AsyncSnapshot<1>")); _this._subscribe$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(oldWidget.stream, _this._widget.stream)) { if (_this._subscription != null) { _this._async0$_unsubscribe$0(); _this._widget.toString; t1 = _this.get$_summary(); _this.___StreamBuilderBaseState__summary = new B.AsyncSnapshot(C.ConnectionState_0, t1.data, t1.error, t1.stackTrace, H._instanceType(t1)); } _this._subscribe$0(); } }, build$1: function(_, context) { var t1 = this._widget; t1.toString; return t1.builder$2(context, this.get$_summary()); }, dispose$0: function(_) { this._async0$_unsubscribe$0(); this.super$State$dispose(0); }, _subscribe$0: function() { var _this = this, t1 = _this._widget.stream; if (t1 != null) { _this._subscription = t1.listen$3$onDone$onError(0, new B._StreamBuilderBaseState__subscribe_closure(_this), new B._StreamBuilderBaseState__subscribe_closure0(_this), new B._StreamBuilderBaseState__subscribe_closure1(_this)); _this._widget.toString; t1 = _this.get$_summary(); _this.___StreamBuilderBaseState__summary = new B.AsyncSnapshot(C.ConnectionState_1, t1.data, t1.error, t1.stackTrace, H._instanceType(t1)); } }, _async0$_unsubscribe$0: function() { var t1 = this._subscription; if (t1 != null) { t1.cancel$0(0); this._subscription = null; } } }; B._StreamBuilderBaseState__subscribe_closure.prototype = { call$1: function(data) { var t1 = this.$this; t1.setState$1(new B._StreamBuilderBaseState__subscribe__closure1(t1, data)); }, $signature: function() { return this.$this.$ti._eval$1("~(1)"); } }; B._StreamBuilderBaseState__subscribe__closure1.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget; t2.toString; t1.get$_summary(); t1.___StreamBuilderBaseState__summary = new B.AsyncSnapshot(C.ConnectionState_2, this.data, null, null, H._instanceType(t2)._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; B._StreamBuilderBaseState__subscribe_closure1.prototype = { call$2: function(error, stackTrace) { var t1 = this.$this; t1.setState$1(new B._StreamBuilderBaseState__subscribe__closure(t1, error, stackTrace)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; B._StreamBuilderBaseState__subscribe__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget; t2.toString; t1.get$_summary(); t1.___StreamBuilderBaseState__summary = new B.AsyncSnapshot(C.ConnectionState_2, null, this.error, this.stackTrace, H._instanceType(t2)._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; B._StreamBuilderBaseState__subscribe_closure0.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new B._StreamBuilderBaseState__subscribe__closure0(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; B._StreamBuilderBaseState__subscribe__closure0.prototype = { call$0: function() { var t2, t1 = this.$this; t1._widget.toString; t2 = t1.get$_summary(); t1.___StreamBuilderBaseState__summary = new B.AsyncSnapshot(C.ConnectionState_3, t2.data, t2.error, t2.stackTrace, H._instanceType(t2)); }, $signature: 0 }; B.ConnectionState.prototype = { toString$0: function(_) { return this._async0$_name; } }; B.AsyncSnapshot.prototype = { toString$0: function(_) { var _this = this; return "AsyncSnapshot(" + _this.connectionState.toString$0(0) + ", " + H.S(_this.data) + ", " + H.S(_this.error) + ", " + H.S(_this.stackTrace) + ")"; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; return _this.$ti._is(other) && other.connectionState === _this.connectionState && J.$eq$(other.data, _this.data) && J.$eq$(other.error, _this.error) && other.stackTrace == _this.stackTrace; }, get$hashCode: function(_) { return P.hashValues(this.connectionState, this.data, this.error, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; B.StreamBuilder.prototype = { builder$2: function(arg0, arg1) { return this.builder.call$2(arg0, arg1); } }; B.FutureBuilder.prototype = { createState$0: function() { return new B._FutureBuilderState(C._StateLifecycle_0, this.$ti._eval$1("_FutureBuilderState<1>")); } }; B._FutureBuilderState.prototype = { get$_snapshot: function() { var t1 = this.___FutureBuilderState__snapshot; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_snapshot")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; t1 = B.AsyncSnapshot$nothing(_this.$ti._precomputed1); _this.___FutureBuilderState__snapshot = t1; _this._subscribe$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (oldWidget.future != _this._widget.future) { if (_this._activeCallbackIdentity != null) { _this._activeCallbackIdentity = null; t1 = _this.get$_snapshot(); _this.___FutureBuilderState__snapshot = new B.AsyncSnapshot(C.ConnectionState_0, t1.data, t1.error, t1.stackTrace, H._instanceType(t1)); } _this._subscribe$0(); } }, build$1: function(_, context) { var t1 = this._widget; t1.toString; return t1.builder.call$2(context, this.get$_snapshot()); }, dispose$0: function(_) { this._activeCallbackIdentity = null; this.super$State$dispose(0); }, _subscribe$0: function() { var callbackIdentity, _this = this, t1 = _this._widget.future; if (t1 != null) { callbackIdentity = _this._activeCallbackIdentity = new P.Object(); t1.then$1$2$onError(0, new B._FutureBuilderState__subscribe_closure(_this, callbackIdentity), new B._FutureBuilderState__subscribe_closure0(_this, callbackIdentity), type$.void); t1 = _this.get$_snapshot(); _this.___FutureBuilderState__snapshot = new B.AsyncSnapshot(C.ConnectionState_1, t1.data, t1.error, t1.stackTrace, H._instanceType(t1)); } } }; B._FutureBuilderState__subscribe_closure.prototype = { call$1: function(data) { var t1 = this.$this; if (t1._activeCallbackIdentity === this.callbackIdentity) t1.setState$1(new B._FutureBuilderState__subscribe__closure0(t1, data)); }, $signature: function() { return this.$this.$ti._eval$1("Null(1)"); } }; B._FutureBuilderState__subscribe__closure0.prototype = { call$0: function() { var t1 = this.$this; t1.___FutureBuilderState__snapshot = new B.AsyncSnapshot(C.ConnectionState_3, this.data, null, null, t1.$ti._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; B._FutureBuilderState__subscribe_closure0.prototype = { call$2: function(error, stackTrace) { var t1 = this.$this; if (t1._activeCallbackIdentity === this.callbackIdentity) t1.setState$1(new B._FutureBuilderState__subscribe__closure(t1, error, stackTrace)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 125 }; B._FutureBuilderState__subscribe__closure.prototype = { call$0: function() { var t1 = this.$this; t1.___FutureBuilderState__snapshot = new B.AsyncSnapshot(C.ConnectionState_3, null, this.error, this.stackTrace, t1.$ti._eval$1("AsyncSnapshot<1>")); }, $signature: 0 }; S.RawAutocomplete.prototype = { createState$0: function() { var t1 = this.$ti; return new S._RawAutocompleteState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), new T.LayerLink(), new H.EmptyIterable(t1._eval$1("EmptyIterable<1>")), C._StateLifecycle_0, t1._eval$1("_RawAutocompleteState<1>")); }, optionsBuilder$1: function(arg0) { return this.optionsBuilder.call$1(arg0); } }; S._RawAutocompleteState.prototype = { get$_autocomplete$_textEditingController: function() { var t1 = this.___RawAutocompleteState__textEditingController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_textEditingController")) : t1; }, get$_autocomplete$_focusNode: function() { var t1 = this.___RawAutocompleteState__focusNode; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_focusNode")) : t1; }, _onChangedField$0: function() { var t2, t3, _this = this, t1 = _this._widget; t1.toString; _this._autocomplete$_options = t1.optionsBuilder$1(_this.get$_autocomplete$_textEditingController()._change_notifier$_value); if (_this._autocomplete$_selection != null) { t1 = _this.get$_autocomplete$_textEditingController()._change_notifier$_value.text; t2 = _this._widget; t2.toString; t3 = _this._autocomplete$_selection; t3.toString; t3 = t2.displayStringForOption.call$1(t3); t3 = t1 == null ? t3 != null : t1 !== t3; t1 = t3; } else t1 = false; if (t1) _this._autocomplete$_selection = null; _this._updateOverlay$0(); }, _onChangedFocus$0: function() { this._updateOverlay$0(); }, _onFieldSubmitted$0: function() { if (J.get$isEmpty$asx(this._autocomplete$_options)) return; this._select$1(J.get$first$ax(this._autocomplete$_options)); }, _select$1: function(nextSelection) { var selectionString, t1, t2, _this = this; if (J.$eq$(nextSelection, _this._autocomplete$_selection)) return; _this._autocomplete$_selection = nextSelection; selectionString = _this._widget.displayStringForOption.call$1(nextSelection); t1 = _this.get$_autocomplete$_textEditingController(); t2 = X.TextSelection$collapsed(C.TextAffinity_1, selectionString.length); t1.toString; t1.super$ValueNotifier$value(0, new N.TextEditingValue(selectionString, t2, C.TextRange_m1_m1)); t2 = _this._widget.onSelected; t1 = _this._autocomplete$_selection; t1.toString; t2.call$1(t1); }, _updateOverlay$0: function() { var t1, result, _this = this; if (_this.get$_autocomplete$_focusNode().get$hasFocus() && _this._autocomplete$_selection == null && J.get$isNotEmpty$asx(_this._autocomplete$_options)) { t1 = _this._floatingOptions; if (t1 != null) t1.remove$0(0); _this._floatingOptions = X.OverlayEntry$(new S._RawAutocompleteState__updateOverlay_closure(_this), false); result = _this._framework$_element.findRootAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._floatingOptions; t1.toString; result.insert$1(0, t1); } else { t1 = _this._floatingOptions; if (t1 != null) { t1.remove$0(0); _this._floatingOptions = null; } } }, _updateTextEditingController$2: function(old, current) { var t1, _this = this; if (old === current) return; _this.get$_autocomplete$_textEditingController().removeListener$1(0, _this.get$_onChangedField()); _this.___RawAutocompleteState__textEditingController = current; t1 = _this.get$_autocomplete$_textEditingController().ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onChangedField()), false); }, _updateFocusNode$2: function(old, current) { var t1, _this = this; if (old === current) return; _this.get$_autocomplete$_focusNode().removeListener$1(0, _this.get$_onChangedFocus()); _this.___RawAutocompleteState__focusNode = current; t1 = _this.get$_autocomplete$_focusNode().ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onChangedFocus()), false); }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.textEditingController; _this.___RawAutocompleteState__textEditingController = t1; t1 = _this.get$_autocomplete$_textEditingController().ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onChangedField()), false); t1 = _this._widget.focusNode; _this.___RawAutocompleteState__focusNode = t1; t1 = _this.get$_autocomplete$_focusNode().ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onChangedFocus()), false); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new S._RawAutocompleteState_initState_closure(_this)); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); _this._updateTextEditingController$2(oldWidget.textEditingController, _this._widget.textEditingController); _this._updateFocusNode$2(oldWidget.focusNode, _this._widget.focusNode); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new S._RawAutocompleteState_didUpdateWidget_closure(_this)); }, dispose$0: function(_) { var t1, _this = this; _this.get$_autocomplete$_textEditingController().removeListener$1(0, _this.get$_onChangedField()); _this._widget.toString; _this.get$_autocomplete$_focusNode().removeListener$1(0, _this.get$_onChangedFocus()); _this._widget.toString; t1 = _this._floatingOptions; if (t1 != null) t1.remove$0(0); _this._floatingOptions = null; _this.super$State$dispose(0); }, build$1: function(_, context) { var _this = this, _null = null, t1 = _this._widget.fieldViewBuilder.call$4(context, _this.get$_autocomplete$_textEditingController(), _this.get$_autocomplete$_focusNode(), _this.get$_onFieldSubmitted()); return M.Container$(_null, new T.CompositedTransformTarget(_this._optionsLayerLink, t1, _null), C.Clip_0, _null, _null, _null, _null, _null, _this._fieldKey, _null, _null, _null, _null, _null); } }; S._RawAutocompleteState__updateOverlay_closure.prototype = { call$1: function(context) { var t1 = this.$this, t2 = t1._widget, t3 = t1._autocomplete$_options; return T.CompositedTransformFollower$(t2.optionsViewBuilder.call$3(context, t1.get$_select(), t3), t1._optionsLayerLink, C.Offset_0_0, false, C.Alignment_m1_1); }, $signature: 2622 }; S._RawAutocompleteState_initState_closure.prototype = { call$1: function(_) { this.$this._updateOverlay$0(); }, $signature: 28 }; S._RawAutocompleteState_didUpdateWidget_closure.prototype = { call$1: function(_) { this.$this._updateOverlay$0(); }, $signature: 28 }; F.AutofillContextAction.prototype = { toString$0: function(_) { return this._autofill$_name; } }; F.AutofillGroup.prototype = { createState$0: function() { return new F.AutofillGroupState(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.AutofillClient), C._StateLifecycle_0); } }; F.AutofillGroupState.prototype = { get$autofillClients: function() { var t1 = this._autofill$_clients; t1 = t1.get$values(t1); return new H.WhereIterable(t1, new F.AutofillGroupState_autofillClients_closure(), H._instanceType(t1)._eval$1("WhereIterable")); }, register$1: function(_, client) { this._autofill$_clients.putIfAbsent$2(0, "EditableText-" + H.Primitives_objectHashCode(client), new F.AutofillGroupState_register_closure(client)); }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); var t1 = this._framework$_element; t1.toString; this._isTopmostAutofillGroup = F.AutofillGroup_of(t1) == null; }, build$1: function(_, context) { return new F._AutofillScope(this, this._widget.child, null); }, dispose$0: function(_) { var t1, _this = this, _s31_ = "TextInput.finishAutofillContext"; _this.super$State$dispose(0); if (_this._isTopmostAutofillGroup) { _this._widget.toString; t1 = false; } else t1 = true; if (t1) return; _this._widget.toString; switch (C.AutofillContextAction_0) { case C.AutofillContextAction_1: $.$get$TextInput__instance().get$_channel().invokeMethod$1$2(_s31_, false, type$.void); break; case C.AutofillContextAction_0: $.$get$TextInput__instance().get$_channel().invokeMethod$1$2(_s31_, true, type$.void); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; F.AutofillGroupState_autofillClients_closure.prototype = { call$1: function(client) { return client._createTextInputConfiguration$1(client.get$_needsAutofill()).autofillConfiguration != null; }, $signature: 2621 }; F.AutofillGroupState_register_closure.prototype = { call$0: function() { return this.client; }, $signature: 2618 }; F._AutofillScope.prototype = { updateShouldNotify$1: function(old) { return this._scope !== old._scope; } }; F._AutofillGroupState_State_AutofillScopeMixin.prototype = {}; L.AutomaticKeepAlive.prototype = { createState$0: function() { return new L._AutomaticKeepAliveState(C._StateLifecycle_0); } }; L._AutomaticKeepAliveState.prototype = { initState$0: function() { this.super$State$initState(); this._automatic_keep_alive$_updateChild$0(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._automatic_keep_alive$_updateChild$0(); }, _automatic_keep_alive$_updateChild$0: function() { this._automatic_keep_alive$_child = new U.NotificationListener(this._widget.child, this.get$_addClient(), null, type$.NotificationListener_KeepAliveNotification); }, dispose$0: function(_) { var t2, t3, t1 = this._automatic_keep_alive$_handles; if (t1 != null) for (t1 = t1.get$keys(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = this._automatic_keep_alive$_handles.$index(0, t2); t3.toString; t2.removeListener$1(0, t3); } this.super$State$dispose(0); }, _addClient$1: function(notification) { var t2, childElement, _this = this, handle = notification.handle, t1 = _this._automatic_keep_alive$_handles; if (t1 == null) t1 = _this._automatic_keep_alive$_handles = P.LinkedHashMap_LinkedHashMap$_empty(type$.Listenable, type$.void_Function); t1.$indexSet(0, handle, _this._createCallback$1(handle)); t1 = _this._automatic_keep_alive$_handles.$index(0, handle); t1.toString; t2 = handle.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1), false); if (!_this._keepingAlive) { _this._keepingAlive = true; childElement = _this._getChildElement$0(); if (childElement != null) _this._updateParentDataOfChild$1(childElement); else $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new L._AutomaticKeepAliveState__addClient_closure(_this)); } return false; }, _getChildElement$0: function() { var t1 = {}, t2 = this._framework$_element; t2.toString; t1.childElement = null; t2.visitChildren$1(new L._AutomaticKeepAliveState__getChildElement_closure(t1)); return type$.nullable_ParentDataElement_KeepAliveParentDataMixin._as(t1.childElement); }, _updateParentDataOfChild$1: function(childElement) { var t1, t2; this._framework$_element.toString; t1 = this._keepingAlive; t2 = this._automatic_keep_alive$_child; t2.toString; childElement._applyParentData$1(type$.ParentDataWidget_KeepAliveParentDataMixin._as(G.KeepAlive$(t2, t1))); }, _createCallback$1: function(handle) { return new L._AutomaticKeepAliveState__createCallback_closure(this, handle); }, build$1: function(_, context) { var t1 = this._keepingAlive, t2 = this._automatic_keep_alive$_child; t2.toString; return new G.KeepAlive(t1, t2, null); } }; L._AutomaticKeepAliveState__addClient_closure.prototype = { call$1: function(timeStamp) { var childElement, t1 = this.$this; if (t1._framework$_element == null) return; childElement = t1._getChildElement$0(); childElement.toString; t1._updateParentDataOfChild$1(childElement); }, $signature: 28 }; L._AutomaticKeepAliveState__getChildElement_closure.prototype = { call$1: function(child) { this._box_0.childElement = child; }, $signature: 87 }; L._AutomaticKeepAliveState__createCallback_closure.prototype = { call$0: function() { var t2, t1 = this.$this; t1._automatic_keep_alive$_handles.remove$1(0, this.handle); t2 = t1._automatic_keep_alive$_handles; if (t2.get$isEmpty(t2)) if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase.index < 3) t1.setState$1(new L._AutomaticKeepAliveState__createCallback__closure(t1)); else { t1._keepingAlive = false; P.scheduleMicrotask(new L._AutomaticKeepAliveState__createCallback__closure0(t1)); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; L._AutomaticKeepAliveState__createCallback__closure.prototype = { call$0: function() { this.$this._keepingAlive = false; }, $signature: 0 }; L._AutomaticKeepAliveState__createCallback__closure0.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1._framework$_element != null) { t2 = t1._automatic_keep_alive$_handles; t2 = t2.get$isEmpty(t2); } else t2 = false; if (t2) t1.setState$1(new L._AutomaticKeepAliveState__createCallback___closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; L._AutomaticKeepAliveState__createCallback___closure.prototype = { call$0: function() { }, $signature: 0 }; L.KeepAliveNotification.prototype = {}; L.KeepAliveHandle.prototype = {}; L.AutomaticKeepAliveClientMixin.prototype = { _ensureKeepAlive$0: function() { var t2, t1 = new L.KeepAliveHandle(new P.LinkedList(type$.LinkedList__ListenerEntry)); this.AutomaticKeepAliveClientMixin__keepAliveHandle = t1; t2 = this._framework$_element; t2.toString; new L.KeepAliveNotification(t1).dispatch$1(t2); }, updateKeepAlive$0: function() { var t1, _this = this; if (_this.get$wantKeepAlive()) { if (_this.AutomaticKeepAliveClientMixin__keepAliveHandle == null) _this._ensureKeepAlive$0(); } else { t1 = _this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); _this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } } }, build$1: function(_, context) { if (this.get$wantKeepAlive() && this.AutomaticKeepAliveClientMixin__keepAliveHandle == null) this._ensureKeepAlive$0(); return C._NullWidget_null; } }; L._NullWidget1.prototype = { build$1: function(_, context) { throw H.wrapException(U.FlutterError_FlutterError("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass.")); } }; T.Directionality.prototype = { updateShouldNotify$1: function(oldWidget) { return this.textDirection != oldWidget.textDirection; } }; T.Opacity.prototype = { createRenderObject$1: function(context) { var t2, t1 = this.opacity; t1 = new E.RenderOpacity(C.JSNumber_methods.round$0(J.clamp$2$n(t1, 0, 1) * 255), t1, false, null); t1.get$isRepaintBoundary(); t2 = t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = t2; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$opacity(0, this.opacity); renderObject.set$alwaysIncludeSemantics(false); } }; T.CustomPaint.prototype = { createRenderObject$1: function(context) { return V.RenderCustomPaint$(this.foregroundPainter, false, this.painter, this.size, false); }, updateRenderObject$2: function(context, renderObject) { renderObject.set$painter(this.painter); renderObject.set$foregroundPainter(this.foregroundPainter); renderObject.set$preferredSize(this.size); renderObject.willChange = renderObject.isComplex = false; }, didUnmountRenderObject$1: function(renderObject) { renderObject.set$painter(null); renderObject.set$foregroundPainter(null); } }; T.ClipRect.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderClipRect(null, C.Clip_1, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$clipper(null); renderObject.set$clipBehavior(C.Clip_1); }, didUnmountRenderObject$1: function(renderObject) { renderObject.set$clipper(null); } }; T.ClipRRect.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderClipRRect(this.borderRadius, null, C.Clip_2, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$borderRadius(0, this.borderRadius); renderObject.set$clipBehavior(C.Clip_2); renderObject.set$clipper(null); } }; T.ClipOval.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderClipOval(null, C.Clip_2, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$clipper(null); renderObject.set$clipBehavior(C.Clip_2); }, didUnmountRenderObject$1: function(renderObject) { renderObject.set$clipper(null); } }; T.ClipPath.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderClipPath(this.clipper, this.clipBehavior, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$clipper(this.clipper); renderObject.set$clipBehavior(this.clipBehavior); }, didUnmountRenderObject$1: function(renderObject) { renderObject.set$clipper(null); } }; T.PhysicalModel.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = new E.RenderPhysicalModel(_this.shape, _this.borderRadius, _this.elevation, _this.shadowColor, _this.color, null, _this.clipBehavior, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$shape(0, _this.shape); renderObject.set$clipBehavior(_this.clipBehavior); renderObject.set$borderRadius(0, _this.borderRadius); renderObject.set$elevation(0, _this.elevation); renderObject.set$color(0, _this.color); renderObject.set$shadowColor(0, _this.shadowColor); } }; T.PhysicalShape.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = new E.RenderPhysicalShape(_this.elevation, _this.shadowColor, _this.color, _this.clipper, _this.clipBehavior, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.set$clipper(_this.clipper); renderObject.set$clipBehavior(_this.clipBehavior); renderObject.set$elevation(0, _this.elevation); renderObject.set$color(0, _this.color); renderObject.set$shadowColor(0, _this.shadowColor); } }; T.Transform.prototype = { createRenderObject$1: function(context) { var t1 = T.Directionality_maybeOf(context), t2 = new E.RenderTransform(this.transformHitTests, null); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); t2.set$transform(0, this.transform); t2.set$alignment(this.alignment); t2.set$textDirection(0, t1); t2.set$origin(0, null); return t2; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$transform(0, this.transform); renderObject.set$origin(0, null); renderObject.set$alignment(this.alignment); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); renderObject.transformHitTests = this.transformHitTests; } }; T.CompositedTransformTarget.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderLeaderLayer(this.link, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$link(this.link); } }; T.CompositedTransformFollower.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderFollowerLayer(this.link, false, this.offset, this.targetAnchor, C.Alignment_m1_m1, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$link(this.link); renderObject.set$showWhenUnlinked(false); renderObject.set$offset(0, this.offset); renderObject.set$leaderAnchor(this.targetAnchor); renderObject.set$followerAnchor(C.Alignment_m1_m1); } }; T.FittedBox.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderFittedBox(C.BoxFit_1, C.Alignment_0_0, T.Directionality_maybeOf(context), C.Clip_0, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$fit(C.BoxFit_1); renderObject.set$alignment(C.Alignment_0_0); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); if (C.Clip_0 !== renderObject._clipBehavior) { renderObject._clipBehavior = C.Clip_0; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; T.FractionalTranslation.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderFractionalTranslation(this.translation, this.transformHitTests, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$translation(this.translation); renderObject.transformHitTests = this.transformHitTests; } }; T.Padding.prototype = { createRenderObject$1: function(context) { var t1 = new T.RenderPadding(this.padding, T.Directionality_maybeOf(context), null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$padding(0, this.padding); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); } }; T.Align.prototype = { createRenderObject$1: function(context) { var t1 = new T.RenderPositionedBox(this.widthFactor, this.heightFactor, this.alignment, T.Directionality_maybeOf(context), null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$alignment(this.alignment); renderObject.set$widthFactor(this.widthFactor); renderObject.set$heightFactor(this.heightFactor); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); } }; T.Center.prototype = {}; T.CustomSingleChildLayout.prototype = { createRenderObject$1: function(context) { var t1 = new T.RenderCustomSingleChildLayoutBox(this.delegate, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$delegate(this.delegate); } }; T.LayoutId.prototype = { applyParentData$1: function(renderObject) { var t2, t3, targetParent, t1 = renderObject.parentData; t1.toString; type$.MultiChildLayoutParentData._as(t1); t2 = t1.id; t3 = this.id; if (t2 == null ? t3 != null : t2 !== t3) { t1.id = t3; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof K.RenderObject) targetParent.markNeedsLayout$0(); } }, get$id: function(receiver) { return this.id; } }; T.CustomMultiChildLayout.prototype = { createRenderObject$1: function(context) { var t1 = new B.RenderCustomMultiChildLayoutBox(this.delegate, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$delegate(this.delegate); } }; T.SizedBox.prototype = { createRenderObject$1: function(context) { return E.RenderConstrainedBox$(S.BoxConstraints$tightFor(this.height, this.width)); }, updateRenderObject$2: function(context, renderObject) { renderObject.set$additionalConstraints(S.BoxConstraints$tightFor(this.height, this.width)); }, toStringShort$0: function() { var type, _this = this, t1 = _this.width; if (t1 === 1 / 0 && _this.height === 1 / 0) type = "SizedBox.expand"; else type = t1 === 0 && _this.height === 0 ? "SizedBox.shrink" : "SizedBox"; t1 = _this.key; return t1 == null ? type : type + "-" + t1.toString$0(0); } }; T.ConstrainedBox.prototype = { createRenderObject$1: function(context) { return E.RenderConstrainedBox$(this.constraints); }, updateRenderObject$2: function(context, renderObject) { renderObject.set$additionalConstraints(this.constraints); } }; T.FractionallySizedBox.prototype = { createRenderObject$1: function(context) { var t1 = new T.RenderFractionallySizedOverflowBox(this.widthFactor, this.heightFactor, this.alignment, T.Directionality_maybeOf(context), null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$alignment(this.alignment); renderObject.set$widthFactor(this.widthFactor); renderObject.set$heightFactor(this.heightFactor); renderObject.set$textDirection(0, T.Directionality_maybeOf(context)); } }; T.LimitedBox.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderLimitedBox(this.maxWidth, this.maxHeight, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$maxWidth(0, this.maxWidth); renderObject.set$maxHeight(0, this.maxHeight); } }; T.Offstage.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderOffstage(this.offstage, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$offstage(this.offstage); }, createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new T._OffstageElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); } }; T._OffstageElement.prototype = { get$widget: function() { return type$.Offstage._as(N.SingleChildRenderObjectElement.prototype.get$widget.call(this)); } }; T.AspectRatio.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderAspectRatio(this.aspectRatio, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$aspectRatio(0, this.aspectRatio); } }; T.IntrinsicWidth.prototype = { createRenderObject$1: function(context) { var _null = null, t1 = this.stepWidth; if (t1 === 0) t1 = _null; t1 = new E.RenderIntrinsicWidth(t1, _null, _null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.stepWidth; renderObject.set$stepWidth(t1 === 0 ? null : t1); renderObject.set$stepHeight(null); } }; T.IntrinsicHeight.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderIntrinsicHeight(null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; T.SliverPadding.prototype = { createRenderObject$1: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new T.RenderSliverPadding(this.padding, t1.textDirection, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1; renderObject.set$padding(0, this.padding); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); } }; T.ListBody.prototype = { createRenderObject$1: function(context) { return R.RenderListBody$(T.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false), null); }, updateRenderObject$2: function(context, renderObject) { renderObject.set$axisDirection(T.getAxisDirectionFromAxisReverseAndDirectionality(context, this.mainAxis, false)); } }; T.Stack.prototype = { createRenderObject$1: function(context) { var t1 = T.Directionality_maybeOf(context); return K.RenderStack$(this.alignment, null, this.clipBehavior, this.fit, t1); }, updateRenderObject$2: function(context, renderObject) { var t1; renderObject.set$alignment(this.alignment); t1 = T.Directionality_maybeOf(context); renderObject.set$textDirection(0, t1); t1 = this.fit; if (renderObject._stack$_fit !== t1) { renderObject._stack$_fit = t1; renderObject.markNeedsLayout$0(); } t1 = this.clipBehavior; if (t1 !== renderObject._stack$_clipBehavior) { renderObject._stack$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; T.IndexedStack.prototype = { createRenderObject$1: function(context) { var t1 = T.Directionality_maybeOf(context); t1 = new K.RenderIndexedStack(this.index, this.alignment, t1, C.StackFit_0, C.Clip_1, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.index; if (renderObject._stack$_index != t1) { renderObject._stack$_index = t1; renderObject.markNeedsLayout$0(); } renderObject.set$alignment(this.alignment); t1 = T.Directionality_maybeOf(context); renderObject.set$textDirection(0, t1); } }; T.Positioned.prototype = { applyParentData$1: function(renderObject) { var t2, needsLayout, targetParent, _this = this, t1 = renderObject.parentData; t1.toString; type$.StackParentData._as(t1); t2 = _this.left; if (t1.left != t2) { t1.left = t2; needsLayout = true; } else needsLayout = false; t2 = _this.top; if (t1.top != t2) { t1.top = t2; needsLayout = true; } t2 = _this.right; if (t1.right != t2) { t1.right = t2; needsLayout = true; } t2 = _this.bottom; if (t1.bottom != t2) { t1.bottom = t2; needsLayout = true; } t2 = _this.width; if (t1.width != t2) { t1.width = t2; needsLayout = true; } t2 = _this.height; if (t1.height != t2) { t1.height = t2; needsLayout = true; } if (needsLayout) { targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof K.RenderObject) targetParent.markNeedsLayout$0(); } } }; T.PositionedDirectional.prototype = { build$1: function(_, context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; return T.Positioned_Positioned$directional(_this.bottom, _this.child, null, null, _this.start, t1.textDirection, _this.top, _this.width); } }; T.Flex.prototype = { get$_needTextDirection: function() { switch (this.direction) { case C.Axis_0: return true; case C.Axis_1: var t1 = this.crossAxisAlignment; return t1 === C.CrossAxisAlignment_0 || t1 === C.CrossAxisAlignment_1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getEffectiveTextDirection$1: function(context) { var t1 = this.textDirection; if (t1 == null) t1 = this.get$_needTextDirection() ? T.Directionality_maybeOf(context) : null; return t1; }, createRenderObject$1: function(context) { var _this = this; return F.RenderFlex$(null, C.Clip_0, _this.crossAxisAlignment, _this.direction, _this.mainAxisAlignment, _this.mainAxisSize, _this.textBaseline, _this.getEffectiveTextDirection$1(context), _this.verticalDirection); }, updateRenderObject$2: function(context, renderObject) { var _this = this, t1 = _this.direction; if (renderObject._flex$_direction !== t1) { renderObject._flex$_direction = t1; renderObject.markNeedsLayout$0(); } t1 = _this.mainAxisAlignment; if (renderObject._mainAxisAlignment !== t1) { renderObject._mainAxisAlignment = t1; renderObject.markNeedsLayout$0(); } t1 = _this.mainAxisSize; if (renderObject._mainAxisSize !== t1) { renderObject._mainAxisSize = t1; renderObject.markNeedsLayout$0(); } t1 = _this.crossAxisAlignment; if (renderObject._flex$_crossAxisAlignment !== t1) { renderObject._flex$_crossAxisAlignment = t1; renderObject.markNeedsLayout$0(); } t1 = _this.getEffectiveTextDirection$1(context); if (renderObject._flex$_textDirection != t1) { renderObject._flex$_textDirection = t1; renderObject.markNeedsLayout$0(); } t1 = _this.verticalDirection; if (renderObject._flex$_verticalDirection !== t1) { renderObject._flex$_verticalDirection = t1; renderObject.markNeedsLayout$0(); } if (C.Clip_0 !== renderObject._flex$_clipBehavior) { renderObject._flex$_clipBehavior = C.Clip_0; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; T.Row.prototype = {}; T.Column.prototype = {}; T.Flexible.prototype = { applyParentData$1: function(renderObject) { var t2, needsLayout, targetParent, t1 = renderObject.parentData; t1.toString; type$.FlexParentData._as(t1); t2 = this.flex; if (t1.flex !== t2) { t1.flex = t2; needsLayout = true; } else needsLayout = false; t2 = this.fit; if (t1.fit !== t2) { t1.fit = t2; needsLayout = true; } if (needsLayout) { targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof K.RenderObject) targetParent.markNeedsLayout$0(); } } }; T.Expanded.prototype = {}; T.Wrap.prototype = { createRenderObject$1: function(context) { var t1 = T.Directionality_maybeOf(context); t1 = new N.RenderWrap(C.Axis_0, C.WrapAlignment_0, 0, C.WrapAlignment_0, 0, this.crossAxisAlignment, t1, C.VerticalDirection_1, C.Clip_0, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1; renderObject.set$direction(0, C.Axis_0); renderObject.set$alignment(C.WrapAlignment_0); renderObject.set$spacing(0, 0); renderObject.set$runAlignment(C.WrapAlignment_0); renderObject.set$runSpacing(0); renderObject.set$crossAxisAlignment(this.crossAxisAlignment); t1 = T.Directionality_maybeOf(context); if (renderObject._wrap$_textDirection != t1) { renderObject._wrap$_textDirection = t1; renderObject.markNeedsLayout$0(); } if (renderObject._wrap$_verticalDirection !== C.VerticalDirection_1) { renderObject._wrap$_verticalDirection = C.VerticalDirection_1; renderObject.markNeedsLayout$0(); } if (C.Clip_0 !== renderObject._wrap$_clipBehavior) { renderObject._wrap$_clipBehavior = C.Clip_0; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; T.RichText.prototype = { createRenderObject$1: function(context) { var t3, t4, t5, _this = this, _null = null, t1 = _this.text, t2 = _this.textDirection; if (t2 == null) { t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t2 = t2.textDirection; } t3 = _this.overflow; t4 = L.Localizations_maybeLocaleOf(context); t5 = t3 === C.TextOverflow_2 ? "\u2026" : _null; t3 = new Q.RenderParagraph(U.TextPainter$(t5, t4, _this.maxLines, _this.strutStyle, t1, _this.textAlign, t2, _this.textHeightBehavior, _this.textScaleFactor, _this.textWidthBasis), _this.softWrap, t3, 0, _null, _null); t3.get$isRepaintBoundary(); t3.get$alwaysNeedsCompositing(); t3.__RenderObject__needsCompositing = false; t3.addAll$1(0, _null); t3._extractPlaceholderSpans$1(t1); return t3; }, updateRenderObject$2: function(context, renderObject) { var t1, _this = this; renderObject.set$text(0, _this.text); renderObject.set$textAlign(0, _this.textAlign); t1 = _this.textDirection; if (t1 == null) { t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; } renderObject.set$textDirection(0, t1); renderObject.set$softWrap(_this.softWrap); renderObject.set$overflow(0, _this.overflow); renderObject.set$textScaleFactor(_this.textScaleFactor); renderObject.set$maxLines(0, _this.maxLines); renderObject.set$strutStyle(0, _this.strutStyle); renderObject.set$textWidthBasis(_this.textWidthBasis); renderObject.set$textHeightBehavior(0, _this.textHeightBehavior); t1 = L.Localizations_maybeLocaleOf(context); renderObject.set$locale(0, t1); }, text$0: function($receiver) { return this.text.call$0(); } }; T.RichText__extractChildren_closure.prototype = { call$1: function(span) { return true; }, $signature: 251 }; T.RawImage.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = _this.image; t1 = t1 == null ? null : t1.clone$0(0); t1 = new U.RenderImage(t1, _this.debugImageLabel, _this.width, _this.height, _this.scale, _this.color, _this.filterQuality, _this.colorBlendMode, _this.fit, _this.alignment, _this.repeat, _this.centerSlice, _this.invertColors, false, null, false); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1._updateColorFilter$0(); return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this, t1 = _this.image; renderObject.set$image(0, t1 == null ? null : t1.clone$0(0)); renderObject.debugImageLabel = _this.debugImageLabel; renderObject.set$width(0, _this.width); renderObject.set$height(0, _this.height); renderObject.set$scale(0, _this.scale); renderObject.set$color(0, _this.color); renderObject.set$colorBlendMode(_this.colorBlendMode); renderObject.set$alignment(_this.alignment); renderObject.set$fit(_this.fit); renderObject.set$repeat(0, _this.repeat); renderObject.set$centerSlice(_this.centerSlice); renderObject.set$matchTextDirection(false); renderObject.set$textDirection(0, null); renderObject.set$invertColors(_this.invertColors); renderObject.set$filterQuality(_this.filterQuality); }, didUnmountRenderObject$1: function(renderObject) { renderObject.set$image(0, null); } }; T.Listener.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = new E.RenderPointerListener(_this.onPointerDown, _this.onPointerMove, _this.onPointerUp, null, _this.onPointerCancel, _this.onPointerSignal, _this.behavior, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var _this = this; renderObject.onPointerDown = _this.onPointerDown; renderObject.onPointerMove = _this.onPointerMove; renderObject.onPointerUp = _this.onPointerUp; renderObject.onPointerHover = null; renderObject.onPointerCancel = _this.onPointerCancel; renderObject.onPointerSignal = _this.onPointerSignal; renderObject.behavior = _this.behavior; } }; T.MouseRegion.prototype = { createState$0: function() { return new T._MouseRegionState(C._StateLifecycle_0); } }; T._MouseRegionState.prototype = { handleExit$1: function($event) { var t1 = this._widget.onExit; if (t1 != null && this._framework$_element != null) t1.call$1($event); }, getHandleExit$0: function() { return this._widget.onExit == null ? null : this.get$handleExit(); }, build$1: function(_, context) { return new T._RawMouseRegion(this, this._widget.child, null); } }; T._RawMouseRegion.prototype = { createRenderObject$1: function(context) { var t1 = this.owner, t2 = t1._widget; t2.toString; t2 = new E.RenderMouseRegion(true, t2.onEnter, t2.onHover, t1.getHandleExit$0(), t2.cursor, null); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); return t2; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.owner, t2 = t1._widget; t2.toString; renderObject.onEnter = t2.onEnter; renderObject.onHover = t2.onHover; renderObject.onExit = t1.getHandleExit$0(); t2 = t2.cursor; if (!J.$eq$(renderObject._cursor, t2)) { renderObject._cursor = t2; renderObject.markNeedsPaint$0(); } } }; T.RepaintBoundary.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderRepaintBoundary(null); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; } }; T.IgnorePointer.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderIgnorePointer(this.ignoring, this.ignoringSemantics, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$ignoring(this.ignoring); renderObject.set$ignoringSemantics(this.ignoringSemantics); } }; T.AbsorbPointer.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderAbsorbPointer(this.absorbing, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$absorbing(this.absorbing); renderObject.set$ignoringSemantics(null); } }; T.Semantics.prototype = { createRenderObject$1: function(context) { var _this = this, _null = null, t1 = _this.properties; t1 = new E.RenderSemanticsAnnotations(_this.container, _this.explicitChildNodes, _this.excludeSemantics, t1.checked, t1.enabled, t1.selected, t1.button, t1.slider, t1.keyboardKey, t1.link, t1.header, t1.textField, t1.readOnly, t1.focusable, t1.focused, t1.inMutuallyExclusiveGroup, t1.obscured, t1.multiline, t1.scopesRoute, t1.namesRoute, t1.hidden, t1.image, t1.liveRegion, t1.maxValueLength, t1.currentValueLength, t1.toggled, t1.label, t1.value, t1.increasedValue, t1.decreasedValue, t1.hint, t1.hintOverrides, _this._getTextDirection$1(context), t1.sortKey, t1.tagForChildren, t1.onTap, t1.onDismiss, t1.onLongPress, t1.onScrollLeft, t1.onScrollRight, t1.onScrollUp, t1.onScrollDown, t1.onIncrease, t1.onDecrease, t1.onCopy, t1.onCut, t1.onPaste, t1.onMoveCursorForwardByCharacter, t1.onMoveCursorBackwardByCharacter, _null, _null, t1.onSetSelection, t1.onSetText, t1.onDidGainAccessibilityFocus, t1.onDidLoseAccessibilityFocus, t1.customSemanticsActions, _null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(_null); return t1; }, _getTextDirection$1: function(context) { var t1 = this.properties, t2 = t1.textDirection; if (t2 != null) return t2; if (!(t1.label != null || t1.value != null || false)) return null; return T.Directionality_maybeOf(context); }, updateRenderObject$2: function(context, renderObject) { var t1, t2, _this = this; renderObject.set$container(_this.container); renderObject.set$explicitChildNodes(_this.explicitChildNodes); renderObject.set$excludeSemantics(_this.excludeSemantics); t1 = _this.properties; renderObject.set$scopesRoute(t1.scopesRoute); renderObject.set$enabled(0, t1.enabled); renderObject.set$checked(0, t1.checked); renderObject.set$toggled(t1.toggled); renderObject.set$selected(0, t1.selected); renderObject.set$button(0, t1.button); renderObject.set$slider(t1.slider); renderObject.set$keyboardKey(t1.keyboardKey); renderObject.set$link(t1.link); renderObject.set$header(t1.header); renderObject.set$textField(t1.textField); renderObject.set$readOnly(0, t1.readOnly); renderObject.set$focusable(t1.focusable); renderObject.set$focused(0, t1.focused); renderObject.set$inMutuallyExclusiveGroup(t1.inMutuallyExclusiveGroup); renderObject.set$obscured(t1.obscured); renderObject.set$multiline(0, t1.multiline); renderObject.set$hidden(0, t1.hidden); renderObject.set$image(0, t1.image); renderObject.set$liveRegion(t1.liveRegion); renderObject.set$maxValueLength(t1.maxValueLength); renderObject.set$currentValueLength(t1.currentValueLength); renderObject.set$label(0, t1.label); renderObject.set$value(0, t1.value); renderObject.set$increasedValue(t1.increasedValue); renderObject.set$decreasedValue(t1.decreasedValue); renderObject.set$hint(0, t1.hint); renderObject.set$hintOverrides(t1.hintOverrides); renderObject.set$namesRoute(t1.namesRoute); renderObject.set$textDirection(0, _this._getTextDirection$1(context)); renderObject.set$sortKey(t1.sortKey); renderObject.set$tagForChildren(t1.tagForChildren); renderObject.set$onTap(t1.onTap); renderObject.set$onLongPress(t1.onLongPress); renderObject.set$onScrollLeft(t1.onScrollLeft); renderObject.set$onScrollRight(t1.onScrollRight); renderObject.set$onScrollUp(t1.onScrollUp); renderObject.set$onScrollDown(t1.onScrollDown); renderObject.set$onIncrease(t1.onIncrease); renderObject.set$onDismiss(t1.onDismiss); renderObject.set$onDecrease(t1.onDecrease); renderObject.set$onCopy(0, t1.onCopy); renderObject.set$onCut(0, t1.onCut); renderObject.set$onPaste(0, t1.onPaste); t2 = t1.onMoveCursorForwardByCharacter; renderObject.set$onMoveCursorForwardByCharacter(t2); renderObject.set$onMoveCursorBackwardByCharacter(t2); renderObject.set$onMoveCursorForwardByWord(null); renderObject.set$onMoveCursorBackwardByWord(null); renderObject.set$onSetSelection(t1.onSetSelection); renderObject.set$onSetText(t1.onSetText); renderObject.set$onDidGainAccessibilityFocus(t1.onDidGainAccessibilityFocus); renderObject.set$onDidLoseAccessibilityFocus(t1.onDidLoseAccessibilityFocus); renderObject.set$customSemanticsActions(t1.customSemanticsActions); } }; T.MergeSemantics.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderMergeSemantics(null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; T.BlockSemantics.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderBlockSemantics(true, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$blocking(true); } }; T.ExcludeSemantics.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderExcludeSemantics(this.excluding, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$excluding(this.excluding); } }; T.IndexedSemantics.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderIndexedSemantics(this.index, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$index(0, this.index); } }; T.KeyedSubtree.prototype = { build$1: function(_, context) { return this.child; } }; T.Builder.prototype = { build$1: function(_, context) { return this.builder.call$1(context); } }; T.ColoredBox.prototype = { createRenderObject$1: function(context) { var t1 = new T._RenderColoredBox(this.color, C.HitTestBehavior_1, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$color(0, this.color); } }; T._RenderColoredBox.prototype = { set$color: function(_, value) { if (J.$eq$(value, this._basic$_color)) return; this._basic$_color = value; this.markNeedsPaint$0(); }, paint$2: function(context, offset) { var t1, t2, t3, t4, t5, t6, _this = this; if (_this._box$_size.$gt(0, C.Size_0_0)) { t1 = context.get$canvas(context); t2 = _this._box$_size; t3 = offset._dx; t4 = offset._dy; t5 = t2._dx; t2 = t2._dy; t6 = H._detectRenderer(); t6 = t6 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t6.set$color(0, _this._basic$_color); t1.drawRect$2(0, new P.Rect(t3, t4, t3 + t5, t4 + t2), t6); } t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure.prototype = { call$1: function(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, data, result, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.RendererBinding__instance; if (t1 == null) data = null; else { t1 = t1.get$_pipelineOwner()._rootNode; t1.toString; result = t1.super$DiagnosticableTreeMixin$toStringDeep(C.DiagnosticLevel_2, "", ""); data = result; } $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["data", data == null ? "Render tree unavailable." : data], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 305 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0.prototype = { call$1: function(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, data, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.RendererBinding__instance; if (t1 == null) data = null; else { t1 = t1.get$_pipelineOwner()._rootNode.get$debugSemantics(); t1 = t1 == null ? null : t1.toStringDeep$1$childOrder(C.DebugSemanticsDumpOrder_1); data = t1; } $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["data", data == null ? "Semantics not collected." : data], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 305 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1.prototype = { call$1: function(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, data, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.RendererBinding__instance; if (t1 == null) data = null; else { t1 = t1.get$_pipelineOwner()._rootNode.get$debugSemantics(); t1 = t1 == null ? null : t1.toStringDeep$1$childOrder(C.DebugSemanticsDumpOrder_0); data = t1; } $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["data", data == null ? "Semantics not collected." : data], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 305 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure.prototype = { call$0: function() { var t2, result, t1 = this.hitTestResult; if (t1 == null) { t1 = this.$this.get$_pipelineOwner()._rootNode; t1.toString; t2 = this.event; t2 = t2.get$position(t2); result = S.BoxHitTestResult$(); t1.hitTest$2$position(result, t2); t1 = result; } return t1; }, $signature: 2541 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure.prototype = { call$1: function(timings) { var t1, t2, t3, t4, t5, t6, t7, t8, t9; for (t1 = J.get$iterator$ax(timings), t2 = this._box_0, t3 = type$.String, t4 = type$.dynamic; t1.moveNext$0();) { t5 = t1.get$current(t1); t6 = ++t2.frameNumber; t5 = t5._timestamps; t7 = t5[1]; t8 = t5[4]; t9 = t5[0]; t9 = P.LinkedHashMap_LinkedHashMap$_literal(["number", t6, "startTime", t7, "elapsed", t8 - t9, "build", t5[2] - t7, "raster", t8 - t5[3], "vsyncOverhead", t7 - t9], t3, t4); C.C_JsonCodec.encode$1(t9); } }, $signature: 416 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.double), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $._timeDilation; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 2533 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0.prototype = { call$1: function(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure: function(value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start N.timeDilation(value); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2529 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure.prototype = { call$1: function(message) { return this.$this.handleSystemMessage$1(message); }, $signature: 2523 }; N.WidgetsBindingObserver.prototype = { didPopRoute$0: function() { return P.Future_Future$value(false, type$.bool); }, didPushRoute$1: function(route) { return P.Future_Future$value(false, type$.bool); }, didPushRouteInformation$1: function(routeInformation) { var t1 = routeInformation.location; t1.toString; return this.didPushRoute$1(t1); }, didChangeMetrics$0: function() { }, didChangePlatformBrightness$0: function() { }, didChangeLocales$1: function(locales) { }, didChangeAppLifecycleState$1: function(state) { }, didHaveMemoryPressure$0: function() { } }; N.WidgetsBinding.prototype = { handleLocaleChanged$0: function() { this.dispatchLocalesChanged$1($.$get$window().platformDispatcher._configuration.locales); }, dispatchLocalesChanged$1: function(locales) { var t1, t2, _i; for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeLocales$1(locales); }, handlePopRoute$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, _i; var $async$handlePopRoute$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = P.List_List$from($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return P._asyncAwait(t1[_i].didPopRoute$0(), $async$handlePopRoute$0); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for M.SystemNavigator_pop(); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handlePopRoute$0, $async$completer); }, handlePushRoute$1: function(route) { return this.handlePushRoute$body$WidgetsBinding(route); }, handlePushRoute$body$WidgetsBinding: function(route) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, _i; var $async$handlePushRoute$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = P.List_List$from($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return P._asyncAwait(t1[_i].didPushRoute$1(route), $async$handlePushRoute$1); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handlePushRoute$1, $async$completer); }, _handlePushRouteInformation$1: function(routeArguments) { return this._handlePushRouteInformation$body$WidgetsBinding(routeArguments); }, _handlePushRouteInformation$body$WidgetsBinding: function(routeArguments) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, t2, t3, _i; var $async$_handlePushRouteInformation$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = P.List_List$from($async$self.WidgetsBinding__observers, true, type$.WidgetsBindingObserver), t2 = t1.length, t3 = J.getInterceptor$asx(routeArguments), _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$goto = 6; return P._asyncAwait(t1[_i].didPushRouteInformation$1(new Z.RouteInformation(H._asStringS(t3.$index(routeArguments, "location")), t3.$index(routeArguments, "state"))), $async$_handlePushRouteInformation$1); case 6: // returning from await. if ($async$result) { // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_handlePushRouteInformation$1, $async$completer); }, _handleNavigationInvocation$1: function(methodCall) { switch (methodCall.method) { case "popRoute": return this.handlePopRoute$0(); case "pushRoute": return this.handlePushRoute$1(H._asStringS(methodCall.$arguments)); case "pushRouteInformation": return this._handlePushRouteInformation$1(type$.Map_dynamic_dynamic._as(methodCall.$arguments)); } return P.Future_Future$value(null, type$.dynamic); }, _handleBuildScheduled$0: function() { this.ensureVisualUpdate$0(); }, scheduleAttachRootWidget$1: function(rootWidget) { P.Timer_Timer(C.Duration_0, new N.WidgetsBinding_scheduleAttachRootWidget_closure(this, rootWidget)); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure.prototype = { call$1: function(parameters) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3(parameters); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3: function(parameters) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, t2; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.get$runtimeType$($.WidgetsBinding__instance).toString$0(0) + " - PROFILE MODE\n"; t2 = $.WidgetsBinding__instance.WidgetsBinding__renderViewElement; if (t2 != null) { t2.toDiagnosticsNode$0(); t1 += "\n"; } else t1 += "\n"; $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["data", t1.charCodeAt(0) == 0 ? t1 : t1], type$.String, type$.Object); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 305 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0.prototype = { call$1: function(_) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(_); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["enabled", $async$self.$this.WidgetsBinding__needToReportFirstFrame ? "false" : "true"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 257 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1.prototype = { call$1: function(_) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(_); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["enabled", $async$self.$this.WidgetsBinding__firstFrameCompleter.future._state !== 0 ? "true" : "false"], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 257 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2.prototype = { call$1: function(params) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(params); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0: function(params) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_String), $async$returnValue, $async$self = this, className, t1, t2; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start className = H._asStringQ(J.$index$asx(params, "className")); t1 = $async$self.$this; t2 = t1.WidgetsBinding__renderViewElement; if (t2 != null) new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure_markElementsDirty(className).call$1(t2); $async$goto = 3; return P._asyncAwait(t1.get$endOfFrame(), $async$call$1); case 3: // returning from await. t1 = type$.String; $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["type", "Success"], t1, t1); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2505 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure_markElementsDirty.prototype = { call$1: function(element) { if (H._rtiToString(J.get$runtimeType$(element.get$widget())._rti, null) == this.className) element.markNeedsBuild$0(); element.visitChildren$1(this); }, $signature: 87 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $.debugProfileBuildsEnabled; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 389 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4.prototype = { call$1: function(value) { return this.$call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure(value); }, $call$body$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure: function(value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($.debugProfileBuildsEnabled !== value) $.debugProfileBuildsEnabled = value; // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2491 }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure.prototype = { call$1: function(timings) { var t1, t2, t3; P.Timeline_instantSync("Rasterized first useful frame", null); P.postEvent("Flutter.FirstFrame", P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic)); t1 = $.SchedulerBinding__instance; t1.toString; t2 = this._box_0; t3 = t2.firstFrameCallback; t3.toString; t1.removeTimingsCallback$1(t3); t2.firstFrameCallback = null; this.$this.WidgetsBinding__firstFrameCompleter.complete$0(0); }, $signature: 416 }; N.WidgetsBinding_scheduleAttachRootWidget_closure.prototype = { call$0: function() { var t3, t4, t1 = this.$this, t2 = t1.WidgetsBinding__renderViewElement; t1.WidgetsBinding__readyToProduceFrames = true; t3 = t1.get$_pipelineOwner()._rootNode; t3.toString; t4 = t1.WidgetsBinding__buildOwner; t4.toString; t1.WidgetsBinding__renderViewElement = new N.RenderObjectToWidgetAdapter(this.rootWidget, t3, "[root]", new N.GlobalObjectKey(t3, type$.GlobalObjectKey_State_StatefulWidget), type$.RenderObjectToWidgetAdapter_RenderBox).attachToRenderTree$2(t4, type$.nullable_RenderObjectToWidgetElement_RenderBox._as(t1.WidgetsBinding__renderViewElement)); if (t2 == null) $.SchedulerBinding__instance.ensureVisualUpdate$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.RenderObjectToWidgetAdapter.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.RenderObjectToWidgetElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2), this.$ti._eval$1("RenderObjectToWidgetElement<1>")); }, createRenderObject$1: function(context) { return this.container; }, updateRenderObject$2: function(context, renderObject) { }, attachToRenderTree$2: function(owner, element) { var t2, t1 = {}; t1.element = element; if (element == null) { owner.lockState$1(new N.RenderObjectToWidgetAdapter_attachToRenderTree_closure(t1, this, owner)); t2 = t1.element; t2.toString; owner.buildScope$2(t2, new N.RenderObjectToWidgetAdapter_attachToRenderTree_closure0(t1)); } else { element._newWidget = this; element.markNeedsBuild$0(); } t1 = t1.element; t1.toString; return t1; }, toStringShort$0: function() { return this.debugShortDescription; } }; N.RenderObjectToWidgetAdapter_attachToRenderTree_closure.prototype = { call$0: function() { var t1 = this.$this, element = N.RenderObjectToWidgetElement$(t1, t1.$ti._precomputed1); this._box_0.element = element; element._owner = this.owner; }, $signature: 0 }; N.RenderObjectToWidgetAdapter_attachToRenderTree_closure0.prototype = { call$0: function() { var t1 = this._box_0.element; t1.toString; t1.super$RootRenderObjectElement$mount(null, null); t1._rebuild$0(); }, $signature: 0 }; N.RenderObjectToWidgetElement.prototype = { get$widget: function() { return this.$ti._eval$1("RenderObjectToWidgetAdapter<1>")._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, visitChildren$1: function(visitor) { var t1 = this._child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1: function(child) { this._child = null; this.super$Element$forgetChild(child); }, mount$2: function($parent, newSlot) { this.super$RootRenderObjectElement$mount($parent, newSlot); this._rebuild$0(); }, update$1: function(_, newWidget) { this.super$RenderObjectElement$update(0, newWidget); this._rebuild$0(); }, performRebuild$0: function() { var _this = this, t1 = _this._newWidget; if (t1 != null) { _this._newWidget = null; _this.super$RenderObjectElement$update(0, _this.$ti._eval$1("RenderObjectToWidgetAdapter<1>")._as(t1)); _this._rebuild$0(); } _this.super$RenderObjectElement$performRebuild(); }, _rebuild$0: function() { var exception, stack, details, error, exception0, t1, _this = this; try { _this._child = _this.updateChild$3(_this._child, _this.$ti._eval$1("RenderObjectToWidgetAdapter<1>")._as(N.RenderObjectElement.prototype.get$widget.call(_this)).child, C.C_Object); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("attaching to the render tree"); details = new U.FlutterErrorDetails(exception, stack, "widgets library", t1, null, false); U.FlutterError_reportError(details); error = N.ErrorWidget__defaultErrorWidgetBuilder(details); _this._child = _this.updateChild$3(null, error, C.C_Object); } }, get$renderObject: function() { return this.$ti._eval$1("RenderObjectWithChildMixin<1>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, insertRenderObjectChild$2: function(child, slot) { var t1 = this.$ti; t1._eval$1("RenderObjectWithChildMixin<1>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(t1._precomputed1._as(child)); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { this.$ti._eval$1("RenderObjectWithChildMixin<1>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); } }; N.WidgetsFlutterBinding.prototype = {}; N._WidgetsFlutterBinding_BindingBase_GestureBinding.prototype = { initInstances$0: function() { this.super$BindingBase$initInstances(); $.GestureBinding__instance = this; var t1 = $.$get$window().platformDispatcher; t1._onPointerDataPacket = this.get$_handlePointerDataPacket(); t1._onPointerDataPacketZone = $.Zone__current; }, unlocked$0: function() { this.super$BindingBase$unlocked(); this._flushPointerEventQueue$0(); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding.prototype = { initInstances$0: function() { var _this = this, t1 = {}; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$initInstances(); $.SchedulerBinding__instance = _this; t1.frameNumber = 0; _this.addTimingsCallback$1(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure(t1, _this)); }, initServiceExtensions$0: function() { this.super$BindingBase$initServiceExtensions(); this.registerNumericServiceExtension$3$getter$name$setter(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure(), "timeDilation", new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0()); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding.prototype = { initInstances$0: function() { var t1, t2, _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initInstances(); $.ServicesBinding__instance = _this; _this.ServicesBinding___ServicesBinding__defaultBinaryMessenger = C.C__DefaultBinaryMessenger; t1 = new K.RestorationManager(P.LinkedHashSet_LinkedHashSet$_empty(type$.RestorationBucket), new P.LinkedList(type$.LinkedList__ListenerEntry)); C.OptionalMethodChannel_wEo.setMethodCallHandler$1(t1.get$_methodHandler()); _this.ServicesBinding___ServicesBinding__restorationManager = t1; t1 = $.$get$window(); t2 = _this.get$_defaultBinaryMessenger().get$handlePlatformMessage(); t1 = t1.platformDispatcher; t1._onPlatformMessage = t2; t1._onPlatformMessageZone = $.Zone__current; t1 = $.LicenseRegistry__collectors; if (t1 == null) t1 = $.LicenseRegistry__collectors = H.setRuntimeTypeInfo([], type$.JSArray_of_Stream_LicenseEntry_Function); t1.push(_this.get$_addLicenses()); C.BasicMessageChannel_Qma.setMessageHandler$1(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure(_this)); C.BasicMessageChannel_No7.setMessageHandler$1(_this.get$_handleLifecycleMessage()); _this.readInitialLifecycleStateFromNativeWindow$0(); }, initServiceExtensions$0: function() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initServiceExtensions(); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding.prototype = { initInstances$0: function() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initInstances(); $.PaintingBinding__instance = this; var t1 = type$.Object; this.PaintingBinding__imageCache = new E.ImageCache(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._PendingImage), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._CachedImage), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._LiveImage)); C.C_DefaultShaderWarmUp.execute$0(); }, handleMemoryPressure$0: function() { this.super$ServicesBinding$handleMemoryPressure(); var t1 = this.PaintingBinding__imageCache; if (t1 != null) t1.clear$0(0); }, handleSystemMessage$1: function(systemMessage) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this; var $async$handleSystemMessage$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.super$ServicesBinding$handleSystemMessage(systemMessage), $async$handleSystemMessage$1); case 3: // returning from await. switch (H._asStringS(J.$index$asx(type$.Map_String_dynamic._as(systemMessage), "type"))) { case "fontsChange": $async$self.PaintingBinding__systemFonts.notifyListeners$0(); break; } // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleSystemMessage$1, $async$completer); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding.prototype = { initInstances$0: function() { this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$initInstances(); $.SemanticsBinding__instance = this; this.SemanticsBinding___SemanticsBinding__accessibilityFeatures = $.$get$window().platformDispatcher._configuration.accessibilityFeatures; } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding.prototype = { initInstances$0: function() { var t1, t2, t3, _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding$initInstances(); $.RendererBinding__instance = _this; t1 = type$.JSArray_RenderObject; _this.RendererBinding___RendererBinding__pipelineOwner = new K.PipelineOwner(_this.get$ensureVisualUpdate(), _this.get$_handleSemanticsOwnerCreated(), _this.get$_handleSemanticsOwnerDisposed(), H.setRuntimeTypeInfo([], t1), H.setRuntimeTypeInfo([], t1), H.setRuntimeTypeInfo([], t1), P.LinkedHashSet_LinkedHashSet$_empty(type$.RenderObject)); t1 = $.$get$window(); t2 = t1.platformDispatcher; t2._onMetricsChanged = _this.get$handleMetricsChanged(); t3 = t2._onMetricsChangedZone = $.Zone__current; t2._onPlatformBrightnessChanged = _this.get$handlePlatformBrightnessChanged(); t2._onPlatformBrightnessChangedZone = t3; t2._onSemanticsEnabledChanged = _this.get$_handleSemanticsEnabledChanged(); t2._onSemanticsEnabledChangedZone = t3; t2._onSemanticsAction = _this.get$_handleSemanticsAction(); t2._onSemanticsActionZone = t3; t1 = new A.RenderView(C.Size_0_0, _this.createViewConfiguration$0(), t1, null); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); _this.get$_pipelineOwner().set$rootNode(t1); t1 = _this.get$_pipelineOwner()._rootNode; t1._relayoutBoundary = t1; t3 = type$.nullable_PipelineOwner; t3._as(B.AbstractNode.prototype.get$owner.call(t1))._nodesNeedingLayout.push(t1); t1._layer = t1._updateMatricesAndCreateNewRootLayer$0(); t3._as(B.AbstractNode.prototype.get$owner.call(t1))._nodesNeedingPaint.push(t1); _this.setSemanticsEnabled$1(t2._configuration.semanticsEnabled); _this.SchedulerBinding__persistentCallbacks.push(_this.get$_handlePersistentFrameCallback()); t2 = _this.RendererBinding__mouseTracker; if (t2 != null) t2.ChangeNotifier__listeners = null; t1 = type$.int; _this.RendererBinding__mouseTracker = new A.MouseTracker(new A.MouseCursorManager(C.SystemMouseCursor_basic, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.MouseCursorSession)), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._MouseState), new P.LinkedList(type$.LinkedList__ListenerEntry)); _this.SchedulerBinding__postFrameCallbacks.push(_this.get$_handleWebFirstFrame()); }, initServiceExtensions$0: function() { var _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initServiceExtensions(); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure(), "debugDumpRenderTree"); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0(), "debugDumpSemanticsTreeInTraversalOrder"); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1(), "debugDumpSemanticsTreeInInverseHitTestOrder"); }, dispatchEvent$2: function(_, $event, hitTestResult) { if (hitTestResult != null || type$.PointerAddedEvent._is($event) || type$.PointerRemovedEvent._is($event)) this.RendererBinding__mouseTracker.updateWithEvent$2($event, new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure(this, hitTestResult, $event)); this.super$GestureBinding$dispatchEvent(0, $event, hitTestResult); } }; N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding.prototype = { initServiceExtensions$0: function() { var _this = this; _this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initServiceExtensions(); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure(), "debugDumpApp"); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0(_this), "didSendFirstFrameEvent"); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1(_this), "didSendFirstFrameRasterizedEvent"); _this.registerServiceExtension$2$callback$name(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2(_this), "fastReassemble"); _this.registerBoolServiceExtension$3$getter$name$setter(new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3(), "profileWidgetBuilds", new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4()); }, handleMetricsChanged$0: function() { var t1, t2, _i; this.super$RendererBinding$handleMetricsChanged(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeMetrics$0(); }, handlePlatformBrightnessChanged$0: function() { var t1, t2, _i; this.super$RendererBinding$handlePlatformBrightnessChanged(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangePlatformBrightness$0(); }, handleAppLifecycleStateChanged$1: function(state) { var t1, t2, _i; this.super$SchedulerBinding$handleAppLifecycleStateChanged(state); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].didChangeAppLifecycleState$1(state); }, handleMemoryPressure$0: function() { var t1, t2, _i; this.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$handleMemoryPressure(); for (t1 = this.WidgetsBinding__observers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].didHaveMemoryPressure$0(); }, drawFrame$0: function() { var firstFrameCallback, t2, _this = this, t1 = {}; t1.firstFrameCallback = null; if (_this.WidgetsBinding__needToReportFirstFrame) { firstFrameCallback = new N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure(t1, _this); t1.firstFrameCallback = firstFrameCallback; $.SchedulerBinding__instance.addTimingsCallback$1(firstFrameCallback); } try { t2 = _this.WidgetsBinding__renderViewElement; if (t2 != null) _this.WidgetsBinding__buildOwner.buildScope$1(t2); _this.super$RendererBinding$drawFrame(); _this.WidgetsBinding__buildOwner.finalizeTree$0(); } finally { } if (_this.WidgetsBinding__needToReportFirstFrame) t2 = _this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0; else t2 = false; if (t2) P.Timeline_instantSync("Widgets built first useful frame", null); t2 = _this.WidgetsBinding__needToReportFirstFrame = false; t1 = t1.firstFrameCallback; if (t1 != null) t2 = !(_this.RendererBinding__firstFrameSent || _this.RendererBinding__firstFrameDeferredCount === 0); if (t2) { _this.WidgetsBinding__needToReportFirstFrame = true; t2 = $.SchedulerBinding__instance; t2.toString; t1.toString; t2.removeTimingsCallback$1(t1); } } }; M.DecoratedBox.prototype = { createRenderObject$1: function(context) { var t1 = new E.RenderDecoratedBox(this.decoration, this.position, U.createLocalImageConfiguration(context, null), null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$decoration(0, this.decoration); renderObject.set$configuration(U.createLocalImageConfiguration(context, null)); renderObject.set$position(0, this.position); } }; M.Container.prototype = { get$_paddingIncludingDecoration: function() { var decorationPadding, t1 = this.decoration; if (t1 == null || t1.get$padding(t1) == null) return this.padding; decorationPadding = t1.get$padding(t1); t1 = this.padding; if (t1 == null) return decorationPadding; decorationPadding.toString; return t1.add$1(0, decorationPadding); }, build$1: function(_, context) { var t1, effectivePadding, t2, t3, _this = this, _null = null, current = _this.child; if (current == null) { t1 = _this.constraints; if (t1 != null) t1 = !(t1.minWidth >= t1.maxWidth && t1.minHeight >= t1.maxHeight); else t1 = true; } else t1 = false; if (t1) current = T.LimitedBox$(new T.ConstrainedBox(C.BoxConstraints_ALM, _null, _null), 0, 0); t1 = _this.alignment; if (t1 != null) current = new T.Align(t1, _null, _null, current, _null); effectivePadding = _this.get$_paddingIncludingDecoration(); if (effectivePadding != null) current = new T.Padding(effectivePadding, current, _null); t1 = _this.color; if (t1 != null) current = new T.ColoredBox(t1, current, _null); t1 = _this.clipBehavior; if (t1 !== C.Clip_0) { t2 = T.Directionality_maybeOf(context); t3 = _this.decoration; t3.toString; current = T.ClipPath$(current, t1, new M._DecorationClipper(t2 == null ? C.TextDirection_1 : t2, t3, _null)); } t1 = _this.decoration; if (t1 != null) current = M.DecoratedBox$(current, t1, C.DecorationPosition_0); t1 = _this.foregroundDecoration; if (t1 != null) current = M.DecoratedBox$(current, t1, C.DecorationPosition_1); t1 = _this.constraints; if (t1 != null) current = new T.ConstrainedBox(t1, current, _null); t1 = _this.margin; if (t1 != null) current = new T.Padding(t1, current, _null); t1 = _this.transform; if (t1 != null) current = T.Transform$(_this.transformAlignment, current, t1, true); current.toString; return current; } }; M._DecorationClipper.prototype = { getClip$1: function(size) { return this.decoration.getClipPath$2(new P.Rect(0, 0, 0 + size._dx, 0 + size._dy), this.textDirection); }, shouldReclip$1: function(oldClipper) { return !J.$eq$(oldClipper.decoration, this.decoration) || oldClipper.textDirection !== this.textDirection; } }; E.DefaultTextEditingActions.prototype = {}; E._DoNothingAndStopPropagationTextAction.prototype = { consumesKey$1: function(intent) { return false; }, invoke$2: function(intent, context) { }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExpandSelectionLeftByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).expandSelectionLeftByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExpandSelectionRightByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).expandSelectionRightByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExpandSelectionToEndTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).expandSelectionToEnd$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExpandSelectionToStartTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).expandSelectionToStart$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionDownTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionDown$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionLeftByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionLeftByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionLeftByWordAndStopAtReversalTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionLeftByWord$3(C.SelectionChangedCause_4, false, true); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionLeftByWordTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionLeftByWord$2(C.SelectionChangedCause_4, false); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionLeftTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionLeft$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionRightByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionRightByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionRightByWordAndStopAtReversalTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionRightByWord$3(C.SelectionChangedCause_4, false, true); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionRightByWordTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionRightByWord$2(C.SelectionChangedCause_4, false); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionRightTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionRight$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._ExtendSelectionUpTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).extendSelectionUp$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionDownTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionDown$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionLeftTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionLeft$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionRightTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionRight$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionUpTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionUp$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionLeftByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionLeftByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionLeftByWordTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionLeftByWord$2(C.SelectionChangedCause_4, false); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionRightByLineTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionRightByLine$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionRightByWordTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionRightByWord$2(C.SelectionChangedCause_4, false); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionToEndTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionToEnd$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E._MoveSelectionToStartTextAction.prototype = { invoke$2: function(intent, context) { var t1 = this.get$textEditingActionTarget()._editableKey; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).moveSelectionToStart$1(C.SelectionChangedCause_4); }, invoke$1: function(intent) { return this.invoke$2(intent, null); } }; E.DefaultTextEditingShortcuts.prototype = {}; K.DisposableBuildContext.prototype = { get$context: function(_) { var t1 = this._disposable_build_context$_state; if (t1 == null) return null; t1 = t1._framework$_element; t1.toString; return t1; }, dispose$0: function(_) { this._disposable_build_context$_state = null; } }; S.DraggableScrollableSheet.prototype = { createState$0: function() { return new S._DraggableScrollableSheetState(C._StateLifecycle_0); }, builder$2: function(arg0, arg1) { return this.builder.call$2(arg0, arg1); } }; S.DraggableScrollableNotification.prototype = { debugFillDescription$1: function(description) { var _this = this; _this.super$_DraggableScrollableNotification_Notification_ViewportNotificationMixin$debugFillDescription(description); description.push("minExtent: " + H.S(_this.minExtent) + ", extent: " + H.S(_this.extent) + ", maxExtent: " + _this.maxExtent + ", initialExtent: " + H.S(_this.initialExtent)); } }; S._DraggableSheetExtent.prototype = { addPixelDelta$2: function(delta, context) { var t2, t3, t4, _this = this, t1 = _this.availablePixels; if (t1 === 0) return; t2 = _this._currentExtent; t3 = _this.maxExtent; t4 = _this.minExtent; t2.set$value(0, C.JSNumber_methods.clamp$2(t2._change_notifier$_value + delta / t1 * t3, t4, t3)); new S.DraggableScrollableNotification(t2._change_notifier$_value, t4, t3, _this.initialExtent, context, 0).dispatch$1(context); } }; S._DraggableScrollableSheetState.prototype = { get$_draggable_scrollable_sheet$_scrollController: function() { var t1 = this.___DraggableScrollableSheetState__scrollController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollController")) : t1; }, get$_draggable_scrollable_sheet$_extent: function() { var t1 = this.___DraggableScrollableSheetState__extent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_extent")) : t1; }, initState$0: function() { var t1, t2, t3, t4, t5, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.minChildSize; t3 = t1.maxChildSize; t1 = t1.initialChildSize; t4 = type$.LinkedList__ListenerEntry; t5 = new P.LinkedList(t4); t5._insertBefore$3$updateFirst(null, new B._ListenerEntry(_this.get$_setExtent()), false); _this.___DraggableScrollableSheetState__extent = new S._DraggableSheetExtent(t2, t3, t1, new B.ValueNotifier(t1, t5, type$.ValueNotifier_double), 1 / 0); _this.___DraggableScrollableSheetState__scrollController = new S._DraggableScrollableSheetScrollController(_this.get$_draggable_scrollable_sheet$_extent(), 0, null, H.setRuntimeTypeInfo([], type$.JSArray_ScrollPosition), new P.LinkedList(t4)); }, didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; if (S._InheritedResetNotifier_shouldReset(t1)) { t1 = C.JSArray_methods.get$single(_this.get$_draggable_scrollable_sheet$_scrollController()._positions)._pixels; t1.toString; if (t1 !== 0) _this.get$_draggable_scrollable_sheet$_scrollController().animateTo$3$curve$duration(0, C.C__Linear, C.Duration_1000); _this.get$_draggable_scrollable_sheet$_extent()._currentExtent.set$value(0, _this.get$_draggable_scrollable_sheet$_extent().initialExtent); } }, _setExtent$0: function() { this.setState$1(new S._DraggableScrollableSheetState__setExtent_closure()); }, build$1: function(_, context) { return new A.LayoutBuilder(new S._DraggableScrollableSheetState_build_closure(this), null); }, dispose$0: function(_) { this.get$_draggable_scrollable_sheet$_scrollController().dispose$0(0); this.super$State$dispose(0); } }; S._DraggableScrollableSheetState__setExtent_closure.prototype = { call$0: function() { }, $signature: 0 }; S._DraggableScrollableSheetState_build_closure.prototype = { call$2: function(context, constraints) { var sheet, t1 = this.$this, t2 = t1.get$_draggable_scrollable_sheet$_extent(), t3 = t1._widget.maxChildSize; C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth); t2.availablePixels = t3 * C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight); t3 = t1.get$_draggable_scrollable_sheet$_extent()._currentExtent._change_notifier$_value; t2 = t1._widget; t2.toString; sheet = T.FractionallySizedBox$(C.Alignment_0_1, t2.builder$2(context, t1.get$_draggable_scrollable_sheet$_scrollController()), t3, null); t1._widget.toString; return sheet; }, $signature: 307 }; S._DraggableScrollableSheetScrollController.prototype = { createScrollPosition$3: function(physics, context, oldPosition) { var t1 = type$.LinkedList__ListenerEntry; t1 = new S._DraggableScrollableSheetScrollPosition(this.extent, C.ScrollDirection_0, physics, context, true, null, new B.ValueNotifier(false, new P.LinkedList(t1), type$.ValueNotifier_bool), new P.LinkedList(t1)); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, null, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, null, 0, true, oldPosition, physics); return t1; }, debugFillDescription$1: function(description) { this.super$ScrollController$debugFillDescription(description); description.push("extent: " + H.S(this.extent)); } }; S._DraggableScrollableSheetScrollPosition.prototype = { applyContentDimensions$2: function(minScrollExtent, maxScrollExtent) { var t1 = this.extent, t2 = t1.minExtent, t3 = t1._currentExtent._change_notifier$_value; t2 = t2 >= t3 ? 0 : 1; t1 = t1.maxExtent <= t3 ? 0 : 1; return this.super$ScrollPosition$applyContentDimensions(minScrollExtent - t2, maxScrollExtent + t1); }, applyUserOffset$1: function(delta) { var t2, t3, _this = this, t1 = _this._pixels; t1.toString; if (!(t1 > 0)) { t1 = _this.extent; t2 = t1.minExtent; t3 = t1._currentExtent._change_notifier$_value; t2 = t2 >= t3; if (t2 || t1.maxExtent <= t3) if (!(t2 && delta < 0)) t1 = t1.maxExtent <= t3 && delta > 0; else t1 = true; else t1 = true; } else t1 = false; if (t1) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t1.toString; _this.extent.addPixelDelta$2(-delta, t1); } else _this.super$ScrollPositionWithSingleContext$applyUserOffset(delta); }, goBallistic$1: function(velocity) { var t2, simulation, ballisticController, _this = this, t1 = {}; t1.velocity = velocity; if (velocity !== 0) { if (velocity < 0) { t2 = _this._pixels; t2.toString; t2 = t2 > 0; } else t2 = false; if (!t2) if (velocity > 0) { t2 = _this.extent; t2 = t2.maxExtent <= t2._currentExtent._change_notifier$_value; } else t2 = false; else t2 = true; } else t2 = true; if (t2) { _this.super$ScrollPositionWithSingleContext$goBallistic(velocity); return; } t2 = _this._dragCancelCallback; if (t2 != null) t2.call$0(); _this._dragCancelCallback = null; simulation = Y.ClampingScrollSimulation$(_this.extent._currentExtent._change_notifier$_value, _this.physics.get$tolerance(), velocity); ballisticController = G.AnimationController$unbounded("_DraggableScrollableSheetPosition", 0, _this.context); t1.lastDelta = 0; ballisticController.didRegisterListener$0(); t2 = ballisticController.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(new S._DraggableScrollableSheetScrollPosition_goBallistic__tick(t1, _this, ballisticController)); ballisticController.animateWith$1(simulation).whenCompleteOrCancel$1(ballisticController.get$dispose(ballisticController)); }, drag$2: function(details, dragCancelCallback) { this._dragCancelCallback = dragCancelCallback; return this.super$ScrollPositionWithSingleContext$drag(details, dragCancelCallback); } }; S._DraggableScrollableSheetScrollPosition_goBallistic__tick.prototype = { call$0: function() { var t5, t6, t7, velocity, t1 = this.ballisticController, t2 = t1.get$_animation_controller$_value(), t3 = this._box_0, t4 = t3.lastDelta; t3.lastDelta = t1.get$_animation_controller$_value(); t5 = this.$this; t6 = t5.extent; t7 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t5.context._gestureDetectorKey); t7.toString; t6.addPixelDelta$2(t2 - t4, t7); t2 = t3.velocity; if (!(t2 > 0 && t6.maxExtent <= t6._currentExtent._change_notifier$_value)) t2 = t2 < 0 && t6.minExtent >= t6._currentExtent._change_notifier$_value; else t2 = true; if (t2) { velocity = t1.get$velocity() + t5.physics.get$tolerance().velocity * J.get$sign$in(t1.get$velocity()); t3.velocity = velocity; t5.super$ScrollPositionWithSingleContext$goBallistic(velocity); t1.stop$0(0); } else if (t1.get$status(t1) === C.AnimationStatus_3) t5.super$ScrollPositionWithSingleContext$goBallistic(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; S._DraggableScrollableNotification_Notification_ViewportNotificationMixin.prototype = { visitAncestor$1: function(element) { if (element instanceof N.RenderObjectElement && type$.RenderAbstractViewport._is(element.get$renderObject())) ++this.ViewportNotificationMixin__depth; return this.super$Notification$visitAncestor(element); }, debugFillDescription$1: function(description) { var t1; this.super$Notification$debugFillDescription(description); t1 = "depth: " + this.ViewportNotificationMixin__depth + " ("; description.push(t1 + (this.ViewportNotificationMixin__depth === 0 ? "local" : "remote") + ")"); } }; N.DualTransitionBuilder.prototype = { createState$0: function() { return new N._DualTransitionBuilderState(S.ProxyAnimation$(null), S.ProxyAnimation$(null), C._StateLifecycle_0); }, forwardBuilder$3: function(arg0, arg1, arg2) { return this.forwardBuilder.call$3(arg0, arg1, arg2); }, reverseBuilder$3: function(arg0, arg1, arg2) { return this.reverseBuilder.call$3(arg0, arg1, arg2); } }; N._DualTransitionBuilderState.prototype = { get$_effectiveAnimationStatus: function() { var t1 = this.___DualTransitionBuilderState__effectiveAnimationStatus; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_effectiveAnimationStatus")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.animation; _this.___DualTransitionBuilderState__effectiveAnimationStatus = t1.get$status(t1); _this._widget.animation.addStatusListener$1(_this.get$_animationListener()); _this._updateAnimations$0(); }, _animationListener$1: function(animationStatus) { var _this = this, oldEffective = _this.get$_effectiveAnimationStatus(); _this.___DualTransitionBuilderState__effectiveAnimationStatus = _this._calculateEffectiveAnimationStatus$2$current$lastEffective(animationStatus, _this.get$_effectiveAnimationStatus()); if (oldEffective != _this.get$_effectiveAnimationStatus()) _this._updateAnimations$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.animation; if (t1 != _this._widget.animation) { t2 = _this.get$_animationListener(); t1.removeStatusListener$1(t2); _this._widget.animation.addStatusListener$1(t2); t2 = _this._widget.animation; _this._animationListener$1(t2.get$status(t2)); } }, _calculateEffectiveAnimationStatus$2$current$lastEffective: function(current, lastEffective) { var _s80_ = string$.x60null_c; switch (current) { case C.AnimationStatus_0: case C.AnimationStatus_3: return current; case C.AnimationStatus_1: switch (lastEffective) { case C.AnimationStatus_0: case C.AnimationStatus_3: case C.AnimationStatus_1: return current; case C.AnimationStatus_2: return lastEffective; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.AnimationStatus_2: switch (lastEffective) { case C.AnimationStatus_0: case C.AnimationStatus_3: case C.AnimationStatus_2: return current; case C.AnimationStatus_1: return lastEffective; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, _updateAnimations$0: function() { var _this = this; switch (_this.get$_effectiveAnimationStatus()) { case C.AnimationStatus_0: case C.AnimationStatus_1: _this._forwardAnimation.set$parent(0, _this._widget.animation); _this._reverseAnimation.set$parent(0, C.C__AlwaysDismissedAnimation); break; case C.AnimationStatus_2: case C.AnimationStatus_3: _this._forwardAnimation.set$parent(0, C.C__AlwaysCompleteAnimation); _this._reverseAnimation.set$parent(0, new S.ReverseAnimation(_this._widget.animation, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_AnimationStatus), type$.ObserverList_of_void_Function_AnimationStatus), 0)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, dispose$0: function(_) { this._widget.animation.removeStatusListener$1(this.get$_animationListener()); this.super$State$dispose(0); }, build$1: function(_, context) { var t1 = this._widget; return t1.forwardBuilder$3(context, this._forwardAnimation, t1.reverseBuilder$3(context, this._reverseAnimation, t1.child)); } }; D.TextEditingController.prototype = { get$text: function(_) { return this._change_notifier$_value.text; }, set$text: function(_, newText) { this.super$ValueNotifier$value(0, this._change_notifier$_value.copyWith$3$composing$selection$text(C.TextRange_m1_m1, C.TextSelection_TbC, newText)); }, buildTextSpan$3$context$style$withComposing: function(context, style, withComposing) { var t3, composingStyle, _null = null, t1 = this._change_notifier$_value, t2 = t1.composing; if (t2.get$isValid()) { t3 = t2.end; t1 = t3 >= t2.start && t3 <= t1.text.length; } else t1 = false; if (!t1 || !withComposing) return Q.TextSpan$(_null, _null, style, this._change_notifier$_value.text); composingStyle = style.merge$1(C.TextStyle_Dfi); t1 = this._change_notifier$_value; t2 = t1.composing; t1 = t1.text; t3 = t2.start; t2 = t2.end; return Q.TextSpan$(H.setRuntimeTypeInfo([Q.TextSpan$(_null, _null, _null, J.substring$2$s(t1, 0, t3)), Q.TextSpan$(_null, _null, composingStyle, C.JSString_methods.substring$2(t1, t3, t2)), Q.TextSpan$(_null, _null, _null, C.JSString_methods.substring$1(t1, t2))], type$.JSArray_TextSpan), _null, style, _null); }, set$selection: function(newSelection) { var t1, t2, t3, newComposing, _this = this; if (!_this.isSelectionWithinTextBounds$1(newSelection)) throw H.wrapException(U.FlutterError_FlutterError("invalid text selection: " + newSelection.toString$0(0))); t1 = newSelection.start; t2 = newSelection.end; if (t1 == t2) { t3 = _this._change_notifier$_value.composing; t1 = t1 >= t3.start && t2 <= t3.end; } else t1 = false; newComposing = t1 ? _this._change_notifier$_value.composing : C.TextRange_m1_m1; _this.super$ValueNotifier$value(0, _this._change_notifier$_value.copyWith$2$composing$selection(newComposing, newSelection)); }, isSelectionWithinTextBounds$1: function(selection) { var t1 = this._change_notifier$_value.text.length; return selection.start <= t1 && selection.end <= t1; }, text$0: function($receiver) { return this.get$text(this).call$0(); } }; D.ToolbarOptions.prototype = {}; D.EditableText.prototype = { get$strutStyle: function(_) { var t2, t1 = this._editable_text$_strutStyle; if (t1 == null) { t1 = this.style; t2 = t1.get$fontFamilyFallback(); return new M.StrutStyle(t1.fontFamily, t2, t1.fontSize, t1.height, t1.fontWeight, t1.fontStyle, null, true, t1.debugLabel); } return t1.inheritFromTextStyle$1(this.style); }, createState$0: function() { return new D.EditableTextState(new B.ValueNotifier(true, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_bool), new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), new T.LayerLink(), new T.LayerLink(), new T.LayerLink(), null, null, C._StateLifecycle_0); } }; D.EditableTextState.prototype = { get$_cursorBlinkOpacityController: function() { var t1 = this.__EditableTextState__cursorBlinkOpacityController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_cursorBlinkOpacityController")) : t1; }, get$_floatingCursorResetController: function() { var t1 = this.__EditableTextState__floatingCursorResetController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_floatingCursorResetController")) : t1; }, get$wantKeepAlive: function() { return this._widget.focusNode.get$hasFocus(); }, initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$_EditableTextState_State_AutomaticKeepAliveClientMixin$initState(); t1 = _this._widget.controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_didChangeTextEditingValue()), false); t1 = _this._widget.focusNode; t2 = _this._framework$_element; t2.toString; _this._editable_text$_focusAttachment = t1.attach$1(t2); t2 = _this._widget.focusNode.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_editable_text$_handleFocusChanged()), false); _this._widget.toString; t1 = F.ScrollController$(_null, 0); _this._scrollController = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(new D.EditableTextState_initState_closure(_this)), false); _this.__EditableTextState__cursorBlinkOpacityController = G.AnimationController$(_null, C.Duration_250000, 0, _null, 1, _null, _this); t1 = _this.get$_cursorBlinkOpacityController(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_onCursorColorTick()); _this.__EditableTextState__floatingCursorResetController = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1 = _this.get$_floatingCursorResetController(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_onFloatingCursorResetTick()); _this._cursorVisibilityNotifier.set$value(0, _this._widget.showCursor); }, didChangeDependencies$0: function() { var t1, newAutofillGroup, t2, _this = this; _this.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; newAutofillGroup = F.AutofillGroup_of(t1); t1 = _this._currentAutofillScope; if (t1 != newAutofillGroup) { if (t1 != null) { t2 = "EditableText-" + H.Primitives_objectHashCode(_this); t1._autofill$_clients.remove$1(0, t2); } _this._currentAutofillScope = newAutofillGroup; if (newAutofillGroup != null) newAutofillGroup.register$1(0, _this); if (!_this._isInAutofillContext) t1 = _this.get$_needsAutofill() && _this._currentAutofillScope != null; else t1 = true; _this._isInAutofillContext = t1; } if (!_this._didAutoFocus && _this._widget.autofocus) { _this._didAutoFocus = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.EditableTextState_didChangeDependencies_closure(_this)); } }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, style, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.controller; t2 = oldWidget.controller; if (t1 != t2) { t1 = _this.get$_didChangeTextEditingValue(); t2.removeListener$1(0, t1); t3 = _this._widget.controller.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t1), false); _this._updateRemoteEditingValueIfNeeded$0(); } if (!_this._widget.controller._change_notifier$_value.selection.$eq(0, t2._change_notifier$_value.selection)) { t1 = _this._selectionOverlay; if (t1 != null) t1.update$1(0, _this._widget.controller._change_notifier$_value); } t1 = _this._selectionOverlay; if (t1 != null) t1.set$handlesVisible(_this._widget.showSelectionHandles); if (!_this._isInAutofillContext) t1 = _this.get$_needsAutofill() && _this._currentAutofillScope != null; else t1 = true; _this._isInAutofillContext = t1; t1 = _this._widget.focusNode; t2 = oldWidget.focusNode; if (t1 !== t2) { t1 = _this.get$_editable_text$_handleFocusChanged(); t2.removeListener$1(0, t1); t2 = _this._editable_text$_focusAttachment; if (t2 != null) t2.detach$0(0); t2 = _this._widget.focusNode; t3 = _this._framework$_element; t3.toString; _this._editable_text$_focusAttachment = t2.attach$1(t3); t3 = _this._widget.focusNode.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t1), false); _this.updateKeepAlive$0(); } if (oldWidget.readOnly && _this._widget.focusNode.get$hasFocus()) _this._openInputConnection$0(); t1 = _this.get$_hasInputConnection(); if (t1) if (oldWidget.readOnly !== _this._widget.readOnly) { _this._textInputConnection.toString; t1 = _this._createTextInputConfiguration$1(_this.get$_needsAutofill()); $.$get$TextInput__instance().get$_channel().invokeMethod$1$2("TextInput.updateConfig", t1.toJson$0(), type$.void); } if (!_this._widget.style.$eq(0, oldWidget.style)) { style = _this._widget.style; if (_this.get$_hasInputConnection()) { t1 = _this._textInputConnection; t1.toString; t2 = _this.get$_editable_text$_textDirection(); t1.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t2); } } t1 = _this._widget; t2 = t1.toolbarOptions.paste; if (t2 && !t1.readOnly) { if (t1.selectionControls == null) t1 = null; else t1 = t2 && !t1.readOnly; t1 = t1 === true; } else t1 = false; t1; }, dispose$0: function(_) { var t2, _this = this, t1 = _this._currentAutofillScope; if (t1 != null) { t2 = "EditableText-" + H.Primitives_objectHashCode(_this); t1._autofill$_clients.remove$1(0, t2); } _this._widget.controller.removeListener$1(0, _this.get$_didChangeTextEditingValue()); _this.get$_cursorBlinkOpacityController().removeListener$1(0, _this.get$_onCursorColorTick()); _this.get$_floatingCursorResetController().removeListener$1(0, _this.get$_onFloatingCursorResetTick()); _this._closeInputConnectionIfNeeded$0(); _this._stopCursorTimer$0(); t1 = _this._selectionOverlay; if (t1 != null) { t1.hide$0(); t1.get$_toolbarController().dispose$0(0); } _this._selectionOverlay = null; _this._editable_text$_focusAttachment.detach$0(0); _this._widget.focusNode.removeListener$1(0, _this.get$_editable_text$_handleFocusChanged()); C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$dispose(0); }, updateEditingValue$1: function(value) { var t2, _this = this, t1 = _this._widget; if (t1.readOnly) value = t1.controller._change_notifier$_value.copyWith$1$selection(value.selection); _this._lastKnownRemoteTextEditingValue = value; if (value.$eq(0, _this._widget.controller._change_notifier$_value)) return; t1 = value.text; t2 = _this._widget.controller._change_notifier$_value; if (t1 == t2.text && value.composing.$eq(0, t2.composing)) _this._handleSelectionChanged$2(value.selection, C.SelectionChangedCause_4); else { _this.hideToolbar$0(); _this._currentPromptRectRange = null; if (_this.get$_hasInputConnection()) { t2 = _this._widget; if (t2.obscureText && t1.length === t2.controller._change_notifier$_value.text.length + 1) { _this._obscureShowCharTicksPending = 3; _this._obscureLatestCharIndex = t2.controller._change_notifier$_value.selection.baseOffset; } } _this._formatAndSetValue$2(value, C.SelectionChangedCause_4); } _this._scheduleShowCaretOnScreen$0(); if (_this.get$_hasInputConnection()) { _this._stopCursorTimer$1$resetCharTicks(false); _this._startCursorTimer$0(); } }, _onFloatingCursorResetTick$0: function() { var t3, t4, finalPosition, lerpValue, _this = this, t1 = _this._editableKey, t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t4 = _this._lastTextPosition; t4.toString; t4 = t2.getLocalRectForCaret$1(t4).get$centerLeft(); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; finalPosition = t4.$sub(0, new P.Offset(0, t3._as(t2)._textPainter.get$preferredLineHeight() / 2)); t2 = _this.get$_floatingCursorResetController(); if (t2.get$status(t2) === C.AnimationStatus_3) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3._as(t2); t4 = _this._lastTextPosition; t4.toString; t2.setFloatingCursor$3(C.FloatingCursorDragState_2, finalPosition, t4); t2 = _this._lastTextPosition.offset; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; if (t2 != t3._as(t1)._selection.baseOffset) _this._handleSelectionChanged$2(X.TextSelection$collapsed(C.TextAffinity_1, _this._lastTextPosition.offset), C.SelectionChangedCause_3); _this._lastBoundedOffset = _this._pointOffsetOrigin = _this._lastTextPosition = _this._startCaretRect = null; } else { lerpValue = _this.get$_floatingCursorResetController().get$_animation_controller$_value(); t2 = _this._lastBoundedOffset; t4 = P.lerpDouble(t2._dx, finalPosition._dx, lerpValue); t4.toString; t2 = P.lerpDouble(t2._dy, finalPosition._dy, lerpValue); t2.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t3._as(t1); t3 = _this._lastTextPosition; t3.toString; t1.setFloatingCursor$4$resetLerpValue(C.FloatingCursorDragState_1, new P.Offset(t4, t2), t3, lerpValue); } }, _finalizeEditing$2$shouldUnfocus: function(action, shouldUnfocus) { var exception, stack, exception0, stack0, exception1, _this = this, t1 = _this._widget, t2 = t1.onEditingComplete; if (t2 != null) try { t2.call$0(); } catch (exception1) { exception = H.unwrapException(exception1); stack = H.getTraceFromException(exception1); t1 = U.ErrorDescription$("while calling onEditingComplete for " + action.toString$0(0)); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "widgets", t1, null, false)); } else { t1 = t1.controller; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$composing(C.TextRange_m1_m1)); if (shouldUnfocus) switch (action) { case C.TextInputAction_0: case C.TextInputAction_1: case C.TextInputAction_2: case C.TextInputAction_3: case C.TextInputAction_4: case C.TextInputAction_5: case C.TextInputAction_8: case C.TextInputAction_9: case C.TextInputAction_10: case C.TextInputAction_11: case C.TextInputAction_12: _this._widget.focusNode.unfocus$0(); break; case C.TextInputAction_6: t1 = _this._widget.focusNode; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); break; case C.TextInputAction_7: t1 = _this._widget.focusNode; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } try { t1 = _this._widget; t2 = t1.onSubmitted; if (t2 != null) t2.call$1(t1.controller._change_notifier$_value.text); } catch (exception) { exception0 = H.unwrapException(exception); stack0 = H.getTraceFromException(exception); t1 = U.ErrorDescription$("while calling onSubmitted for " + action.toString$0(0)); U.FlutterError_reportError(new U.FlutterErrorDetails(exception0, stack0, "widgets", t1, null, false)); } }, _updateRemoteEditingValueIfNeeded$0: function() { var t1, _this = this; if (_this._batchEditDepth > 0 || !_this.get$_hasInputConnection()) return; t1 = _this._widget.controller._change_notifier$_value; if (J.$eq$(t1, _this._lastKnownRemoteTextEditingValue)) return; _this._textInputConnection.toString; $.$get$TextInput__instance().get$_channel().invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), type$.void); _this._lastKnownRemoteTextEditingValue = t1; }, _getOffsetToRevealCaret$1: function(rect) { var t1, t2, t3, additionalOffset, unitOffset, t4, t5, t6, t7, t8, expandedRect, targetOffset, _this = this; if (!C.JSArray_methods.get$single(_this._scrollController._positions).physics.get$allowImplicitScrolling()) { t1 = C.JSArray_methods.get$single(_this._scrollController._positions)._pixels; t1.toString; return new Q.RevealedOffset(t1, rect); } t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._box$_size; t2.toString; if (_this._widget.maxLines === 1) { t1 = rect.right; t3 = rect.left; t2 = t2._dx; additionalOffset = t1 - t3 >= t2 ? t2 / 2 - rect.get$center()._dx : C.JSInt_methods.clamp$2(0, t1 - t2, t3); unitOffset = C.Offset_1_0; } else { t4 = rect.get$center(); t5 = rect.right; t6 = rect.left; t7 = rect.bottom; t8 = rect.top; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; expandedRect = P.Rect$fromCenter(t4, Math.max(t7 - t8, H.checkNum(t3._as(t1)._textPainter.get$preferredLineHeight())), t5 - t6); t1 = expandedRect.bottom; t3 = expandedRect.top; t2 = t2._dy; additionalOffset = t1 - t3 >= t2 ? t2 / 2 - expandedRect.get$center()._dy : C.JSInt_methods.clamp$2(0, t1 - t2, t3); unitOffset = C.Offset_0_1; } t1 = C.JSArray_methods.get$single(_this._scrollController._positions)._pixels; t1.toString; t2 = C.JSArray_methods.get$single(_this._scrollController._positions)._minScrollExtent; t2.toString; t3 = C.JSArray_methods.get$single(_this._scrollController._positions)._maxScrollExtent; t3.toString; targetOffset = C.JSNumber_methods.clamp$2(additionalOffset + t1, t2, t3); t3 = C.JSArray_methods.get$single(_this._scrollController._positions)._pixels; t3.toString; return new Q.RevealedOffset(targetOffset, rect.shift$1(unitOffset.$mul(0, t3 - targetOffset))); }, get$_hasInputConnection: function() { var t1 = this._textInputConnection; t1 = t1 == null ? null : $.$get$TextInput__instance()._currentConnection === t1; return t1 === true; }, get$_needsAutofill: function() { var t1 = this._widget.autofillHints; t1 = t1 == null ? null : t1.length !== 0; return t1 === true; }, _openInputConnection$0: function() { var t1, t2, connection, t3, style, t4, t5, _this = this, _s14_ = "TextInput.show"; if (!_this.get$_hasInputConnection()) { t1 = _this._widget.controller._change_notifier$_value; if (_this.get$_needsAutofill() && _this._currentAutofillScope != null) { t2 = _this._currentAutofillScope; t2.toString; t2 = t2.attach$2(_this, _this._createTextInputConfiguration$1(_this.get$_needsAutofill())); } else { t2 = _this._createTextInputConfiguration$1(_this._isInAutofillContext || _this.get$_needsAutofill()); connection = N.TextInputConnection$_(_this); $.$get$TextInput__instance()._attach$2(connection, t2); t2 = connection; } _this._textInputConnection = t2; t2 = $.$get$TextInput__instance(); t3 = type$.void; t2.get$_channel().invokeMethod$1$1(_s14_, t3); _this._updateSizeAndTransform$0(); _this._updateComposingRectIfNeeded$0(); _this._updateCaretRectIfNeeded$0(); if (_this.get$_needsAutofill()) { _this._textInputConnection.toString; t2.get$_channel().invokeMethod$1$1("TextInput.requestAutofill", t3); } style = _this._widget.style; t4 = _this._textInputConnection; t4.toString; t5 = _this.get$_editable_text$_textDirection(); t4.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t5); t2.get$_channel().invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), t3); } else { _this._textInputConnection.toString; $.$get$TextInput__instance().get$_channel().invokeMethod$1$1(_s14_, type$.void); } }, _closeInputConnectionIfNeeded$0: function() { var t1, t2, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._textInputConnection; t1.toString; t2 = $.$get$TextInput__instance(); if (t2._currentConnection === t1) { t2.get$_channel().invokeMethod$1$1("TextInput.clearClient", type$.void); t2._currentConnection = null; t2._scheduleHide$0(); } _this._lastKnownRemoteTextEditingValue = _this._textInputConnection = null; } }, requestKeyboard$0: function() { if (this._widget.focusNode.get$hasFocus()) this._openInputConnection$0(); else this._widget.focusNode.requestFocus$0(); }, _updateOrDisposeSelectionOverlayIfNeeded$0: function() { var t1, t2, _this = this; if (_this._selectionOverlay != null) { t1 = _this._widget.focusNode.get$hasFocus(); t2 = _this._selectionOverlay; if (t1) { t2.toString; t2.update$1(0, _this._widget.controller._change_notifier$_value); } else { t2.hide$0(); t2.get$_toolbarController().dispose$0(0); _this._selectionOverlay = null; } } }, _handleSelectionChanged$2: function(selection, cause) { var exception, stack, t1, t2, t3, t4, t5, result, exception0, _this = this, _null = null; if (!_this._widget.controller.isSelectionWithinTextBounds$1(selection)) return; _this._widget.controller.set$selection(selection); _this.requestKeyboard$0(); t1 = _this._widget; if (t1.selectionControls == null) { t1 = _this._selectionOverlay; if (t1 != null) t1.hide$0(); _this._selectionOverlay = null; } else { t2 = _this._selectionOverlay; t3 = t1.controller; if (t2 == null) { t2 = _this._framework$_element; t2.toString; t3 = t3._change_notifier$_value; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._editableKey).get$renderObject(); t4.toString; type$.RenderEditable._as(t4); t5 = _this._widget; t3 = new F.TextSelectionOverlay(t2, t1, _this._toolbarLayerLink, _this._startHandleLayerLink, _this._endHandleLayerLink, t4, t5.selectionControls, _this, t5.dragStartBehavior, t5.onSelectionHandleTapped, _null, t3); result = t2.findRootAncestorStateOfType$1$0(type$.OverlayState); result.toString; t3.__TextSelectionOverlay__toolbarController = G.AnimationController$(_null, C.Duration_150000, 0, _null, 1, _null, result); _this._selectionOverlay = t3; } else t2.update$1(0, t3._change_notifier$_value); t1 = _this._selectionOverlay; t1.toString; t1.set$handlesVisible(_this._widget.showSelectionHandles); _this._selectionOverlay.showHandles$0(); } try { _this._widget.onSelectionChanged.call$2(selection, cause); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("while calling onSelectionChanged for " + H.S(cause)); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "widgets", t1, _null, false)); } if (_this._cursorTimer != null) { _this._stopCursorTimer$1$resetCharTicks(false); _this._startCursorTimer$0(); } }, _handleCaretChanged$1: function(caretRect) { this._currentCaretRect = caretRect; }, _scheduleShowCaretOnScreen$0: function() { if (this._showCaretOnScreenScheduled) return; this._showCaretOnScreenScheduled = true; $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.EditableTextState__scheduleShowCaretOnScreen_closure(this)); }, didChangeMetrics$0: function() { var t2, t1 = this.__EditableTextState__lastBottomViewInset; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_lastBottomViewInset")); $.WidgetsBinding__instance.toString; t2 = $.$get$window(); if (t1 < t2._viewInsets.bottom) this._scheduleShowCaretOnScreen$0(); $.WidgetsBinding__instance.toString; this.__EditableTextState__lastBottomViewInset = t2._viewInsets.bottom; }, _formatAndSetValue$3$userInteraction: function(value, cause, userInteraction) { var exception, stack, t1, t2, textChanged, value0, t3, exception0, _this = this; value = value; t1 = _this._widget.controller._change_notifier$_value; if (t1.text == value.text) { t2 = t1.composing; if (t2.start != t2.end) { t2 = value.composing; t2 = t2.start == t2.end; textChanged = t2; } else textChanged = false; } else textChanged = true; t1 = t1.selection.$eq(0, value.selection); if (textChanged) { t2 = _this._widget.inputFormatters; value0 = t2 == null ? null : C.JSArray_methods.fold$1$2(t2, value, new D.EditableTextState__formatAndSetValue_closure(_this), type$.TextEditingValue); value = value0 == null ? value : value0; } ++_this._batchEditDepth; t2 = value; t3 = _this._widget.controller; t3.toString; t3.super$ValueNotifier$value(0, t2); if (t1) if (userInteraction) t1 = cause === C.SelectionChangedCause_2 || cause === C.SelectionChangedCause_4; else t1 = false; else t1 = true; if (t1) _this._handleSelectionChanged$2(value.selection, cause); if (textChanged) try { t1 = _this._widget.onChanged; if (t1 != null) t1.call$1(value.text); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("while calling onChanged"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "widgets", t1, null, false)); } --_this._batchEditDepth; _this._updateRemoteEditingValueIfNeeded$0(); }, _formatAndSetValue$2: function(value, cause) { return this._formatAndSetValue$3$userInteraction(value, cause, false); }, _onCursorColorTick$0: function() { var t2, t3, _this = this, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t2 = _this._widget.cursorColor; t3 = _this.get$_cursorBlinkOpacityController().get$_animation_controller$_value(); t2.toString; t2 = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t3), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255); t1.get$_caretPainter().set$caretColor(t2); t1 = _this._widget.showCursor && _this.get$_cursorBlinkOpacityController().get$_animation_controller$_value() > 0; _this._cursorVisibilityNotifier.set$value(0, t1); }, _cursorTick$1: function(timer) { var targetOpacity, _this = this, t1 = !_this._targetCursorVisibility; _this._targetCursorVisibility = t1; targetOpacity = t1 ? 1 : 0; if (_this._widget.cursorOpacityAnimates) { t1 = _this.get$_cursorBlinkOpacityController(); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(targetOpacity, C.Cubic_xDo0, null); } else _this.get$_cursorBlinkOpacityController().set$value(0, targetOpacity); if (_this._obscureShowCharTicksPending > 0) _this.setState$1(new D.EditableTextState__cursorTick_closure(_this)); }, _cursorWaitForStart$1: function(timer) { var t1 = this._cursorTimer; if (t1 != null) t1.cancel$0(0); this._cursorTimer = P.Timer_Timer$periodic(C.Duration_500000, this.get$_cursorTick()); }, _startCursorTimer$0: function() { var _this = this; _this._targetCursorVisibility = true; _this.get$_cursorBlinkOpacityController().set$value(0, 1); if (_this._widget.cursorOpacityAnimates) _this._cursorTimer = P.Timer_Timer$periodic(C.Duration_150000, _this.get$_cursorWaitForStart()); else _this._cursorTimer = P.Timer_Timer$periodic(C.Duration_500000, _this.get$_cursorTick()); }, _stopCursorTimer$1$resetCharTicks: function(resetCharTicks) { var _this = this, t1 = _this._cursorTimer; if (t1 != null) t1.cancel$0(0); _this._cursorTimer = null; _this._targetCursorVisibility = false; _this.get$_cursorBlinkOpacityController().set$value(0, 0); if (resetCharTicks) _this._obscureShowCharTicksPending = 0; if (_this._widget.cursorOpacityAnimates) { _this.get$_cursorBlinkOpacityController().stop$0(0); _this.get$_cursorBlinkOpacityController().set$value(0, 0); } }, _stopCursorTimer$0: function() { return this._stopCursorTimer$1$resetCharTicks(true); }, _startOrStopCursorTimerIfNeeded$0: function() { var t1, _this = this; if (_this._cursorTimer == null) if (_this._widget.focusNode.get$hasFocus()) { t1 = _this._widget.controller._change_notifier$_value.selection; t1 = t1.start == t1.end; } else t1 = false; else t1 = false; if (t1) _this._startCursorTimer$0(); else { if (_this._cursorTimer != null) if (_this._widget.focusNode.get$hasFocus()) { t1 = _this._widget.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = true; else t1 = false; if (t1) _this._stopCursorTimer$0(); } }, _didChangeTextEditingValue$0: function() { var _this = this; _this._updateRemoteEditingValueIfNeeded$0(); _this._startOrStopCursorTimerIfNeeded$0(); _this._updateOrDisposeSelectionOverlayIfNeeded$0(); _this.setState$1(new D.EditableTextState__didChangeTextEditingValue_closure()); }, _editable_text$_handleFocusChanged$0: function() { var t1, t2, _this = this; if (_this._widget.focusNode.get$hasFocus() && _this._widget.focusNode.consumeKeyboardToken$0()) _this._openInputConnection$0(); else if (!_this._widget.focusNode.get$hasFocus()) { _this._closeInputConnectionIfNeeded$0(); t1 = _this._widget.controller; t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$1$composing(C.TextRange_m1_m1)); } _this._startOrStopCursorTimerIfNeeded$0(); _this._updateOrDisposeSelectionOverlayIfNeeded$0(); t1 = _this._widget.focusNode.get$hasFocus(); t2 = $.WidgetsBinding__instance; if (t1) { t2.WidgetsBinding__observers.push(_this); $.WidgetsBinding__instance.toString; _this.__EditableTextState__lastBottomViewInset = $.$get$window()._viewInsets.bottom; if (!_this._widget.readOnly) _this._scheduleShowCaretOnScreen$0(); if (!_this._widget.controller._change_notifier$_value.selection.get$isValid()) _this._handleSelectionChanged$2(X.TextSelection$collapsed(C.TextAffinity_1, _this._widget.controller._change_notifier$_value.text.length), null); } else { C.JSArray_methods.remove$1(t2.WidgetsBinding__observers, _this); t1 = _this._widget.controller; t1.super$ValueNotifier$value(0, new N.TextEditingValue(t1._change_notifier$_value.text, C.TextSelection_TbC, C.TextRange_m1_m1)); _this._currentPromptRectRange = null; } _this.updateKeepAlive$0(); }, _updateSizeAndTransform$0: function() { var t1, t2, t3, transform, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t2 = t3._as(t2)._box$_size; t2.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; transform = t3._as(t1).getTransformTo$1(0, null); t1 = _this._textInputConnection; if (!t2.$eq(0, t1._cachedSize) || !transform.$eq(0, t1._cachedTransform)) { t1._cachedSize = t2; t1._cachedTransform = transform; t1 = $.$get$TextInput__instance(); t2 = P.LinkedHashMap_LinkedHashMap$_literal(["width", t2._dx, "height", t2._dy, "transform", transform._m4storage], type$.String, type$.dynamic); t1.get$_channel().invokeMethod$1$2("TextInput.setEditableSizeAndTransform", t2, type$.void); } $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.EditableTextState__updateSizeAndTransform_closure(_this)); } }, _updateComposingRectIfNeeded$0: function() { var t1, t2, t3, composingRect, offset, _this = this, composingRange = _this._widget.controller._change_notifier$_value.composing; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; composingRect = t3._as(t2).getRectForComposingRange$1(composingRange); if (composingRect == null) { offset = composingRange.get$isValid() ? composingRange.start : 0; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; composingRect = t3._as(t1).getLocalRectForCaret$1(new P.TextPosition(offset, C.TextAffinity_1)); } _this._textInputConnection.setComposingRect$1(composingRect); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.EditableTextState__updateComposingRectIfNeeded_closure(_this)); } }, _updateCaretRectIfNeeded$0: function() { var t1, t2, t3, caretRect, _this = this; if (_this.get$_hasInputConnection()) { t1 = _this._editableKey; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; if (t3._as(t2)._selection.get$isValid()) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t2 = t3._as(t2)._selection; t2 = t2.start == t2.end; } else t2 = false; if (t2) { t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t2 = t3._as(t2)._selection; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; caretRect = t3._as(t1).getLocalRectForCaret$1(new P.TextPosition(t2.baseOffset, C.TextAffinity_1)); _this._textInputConnection.setCaretRect$1(caretRect); } $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D.EditableTextState__updateCaretRectIfNeeded_closure(_this)); } }, get$_editable_text$_textDirection: function() { var t1, result; this._widget.toString; t1 = this._framework$_element; t1 = t1.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; result = t1.textDirection; return result; }, userUpdateTextEditingValue$2: function(value, cause) { var t1 = this._widget, t2 = t1.readOnly; t1 = t1.controller; if (t2 ? !t1._change_notifier$_value.selection.$eq(0, value.selection) : !J.$eq$(t1._change_notifier$_value, value)) this._scheduleShowCaretOnScreen$0(); this._formatAndSetValue$3$userInteraction(value, cause, true); }, bringIntoView$1: function(position) { var t3, targetOffset, t1 = this._editableKey, t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t2.toString; t3 = type$.RenderEditable; targetOffset = this._getOffsetToRevealCaret$1(t3._as(t2).getLocalRectForCaret$1(position)); this._scrollController.jumpTo$1(targetOffset.offset); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; t3._as(t1).showOnScreen$1$rect(targetOffset.rect); }, showToolbar$0: function() { return false; }, hideToolbar$1: function(hideHandles) { var t1 = this._selectionOverlay; if (hideHandles) { if (t1 != null) t1.hide$0(); } else if (t1 != null) t1.hideToolbar$0(); }, hideToolbar$0: function() { return this.hideToolbar$1(true); }, toggleToolbar$0: function() { if (this._selectionOverlay._toolbar != null) this.hideToolbar$0(); else this.showToolbar$0(); }, _createTextInputConfiguration$1: function(needsAutofillConfiguration) { var t8, t9, t10, t11, _this = this, t1 = _this._widget, t2 = t1.keyboardType, t3 = t1.readOnly, t4 = t1.obscureText, t5 = t1.autocorrect, t6 = t1.smartDashesType, t7 = t1.smartQuotesType; t1 = t1.textInputAction; if (t1 == null) t1 = t2.$eq(0, C.TextInputType_1_null_null) ? C.TextInputAction_12 : C.TextInputAction_2; t8 = _this._widget; t9 = t8.textCapitalization; t8 = t8.keyboardAppearance; if (!needsAutofillConfiguration) t10 = null; else { t10 = "EditableText-" + H.Primitives_objectHashCode(_this); t11 = _this._widget.autofillHints; if (t11 == null) t11 = null; else t11 = J.JSArray_JSArray$markFixed(t11.slice(0), H._arrayInstanceType(t11)._precomputed1); if (t11 == null) t11 = H.setRuntimeTypeInfo([], type$.JSArray_String); t11 = new F.AutofillConfiguration(t10, t11, _this._widget.controller._change_notifier$_value); t10 = t11; } return N.TextInputConfiguration$(null, t5, t10, true, t1, t2, t8, t4, t3, t6, t7, t9); }, showAutocorrectionPromptRect$2: function(start, end) { this.setState$1(new D.EditableTextState_showAutocorrectionPromptRect_closure(this, start, end)); }, _semanticsOnCopy$1: function(controls) { var t1 = this._widget; if (t1.toolbarOptions.copy) if (t1.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else { t1 = this._widget; if (t1.toolbarOptions.copy) { t1 = t1.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = false; } t1 = t1 === true; } else t1 = false; else t1 = false; return t1 ? new D.EditableTextState__semanticsOnCopy_closure(this, controls) : null; }, _semanticsOnCut$1: function(controls) { var t1 = this._widget; if (t1.toolbarOptions.cut && !t1.readOnly) if (t1.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else { t1 = this._widget; if (t1.toolbarOptions.cut && !t1.readOnly) { t1 = t1.controller._change_notifier$_value.selection; t1 = t1.start != t1.end; } else t1 = false; } t1 = t1 === true; } else t1 = false; else t1 = false; return t1 ? new D.EditableTextState__semanticsOnCut_closure(this, controls) : null; }, _semanticsOnPaste$1: function(controls) { var t1 = this._widget; if (t1.toolbarOptions.paste && !t1.readOnly) if (t1.focusNode.get$hasFocus()) { if (controls == null) t1 = null; else { t1 = this._widget; t1 = t1.toolbarOptions.paste && !t1.readOnly; } if (t1 === true) t1 = true; else t1 = false; } else t1 = false; else t1 = false; return t1 ? new D.EditableTextState__semanticsOnPaste_closure(this, controls) : null; }, build$1: function(_, context) { var t1, controls, t2, t3, t4, t5, t6, t7, _this = this, _null = null; _this._editable_text$_focusAttachment.reparent$0(); _this.super$AutomaticKeepAliveClientMixin$build(0, context); t1 = _this._widget; controls = t1.selectionControls; t2 = t1.mouseCursor; if (t2 == null) t2 = C.SystemMouseCursor_text; t3 = t1.maxLines !== 1; t4 = t3 ? C.AxisDirection_2 : C.AxisDirection_1; t5 = _this._scrollController; t6 = t1.scrollPhysics; t7 = t1.dragStartBehavior; t1 = t1.restorationId; t3 = t3 ? _null : K.ScrollConfiguration_of(context).copyWith$1$scrollbars(false); return new T.MouseRegion(_null, _null, _null, t2, true, F.Scrollable$(t4, t5, t7, true, t6, t1, t3, _null, new D.EditableTextState_build_closure(_this, controls)), _null); }, buildTextSpan$0: function() { var text, o, t2, t3, _this = this, t1 = _this._widget; if (t1.obscureText) { text = t1.controller._change_notifier$_value.text; text = C.JSString_methods.$mul(t1.obscuringCharacter, text.length); if (U.defaultTargetPlatform() === C.TargetPlatform_0 || U.defaultTargetPlatform() === C.TargetPlatform_2 || U.defaultTargetPlatform() === C.TargetPlatform_1) { o = _this._obscureShowCharTicksPending > 0 ? _this._obscureLatestCharIndex : null; if (o != null && o >= 0 && o < text.length) { t1 = o + 1; text = C.JSString_methods.replaceRange$3(text, o, t1, J.substring$2$s(_this._widget.controller._change_notifier$_value.text, o, t1)); } } return Q.TextSpan$(null, null, _this._widget.style, text); } t2 = t1.controller; t3 = _this._framework$_element; t3.toString; return t2.buildTextSpan$3$context$style$withComposing(t3, t1.style, !t1.readOnly); }, $isAutofillClient: 1, $isTextEditingActionTarget: 1 }; D.EditableTextState_initState_closure.prototype = { call$0: function() { var t1 = this.$this._selectionOverlay; if (t1 != null) t1._markNeedsBuild$0(); }, $signature: 0 }; D.EditableTextState_didChangeDependencies_closure.prototype = { call$1: function(_) { var t1 = this.$this, t2 = t1._framework$_element; if (t2 != null) L.FocusScope_of(t2).autofocus$1(0, t1._widget.focusNode); }, $signature: 28 }; D.EditableTextState__scheduleShowCaretOnScreen_closure.prototype = { call$1: function(_) { var t2, t3, t4, lineHeight, bottomSpacing, handleHeight, interactiveHandleHeight, caretPadding, targetOffset, t1 = this.$this; t1._showCaretOnScreenScheduled = false; if (t1._currentCaretRect == null || t1._scrollController._positions.length === 0) return; t2 = t1._editableKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t3.toString; t4 = type$.RenderEditable; lineHeight = t4._as(t3)._textPainter.get$preferredLineHeight(); bottomSpacing = t1._widget.scrollPadding.bottom; t3 = t1._selectionOverlay; if ((t3 == null ? null : t3.selectionControls) != null) { handleHeight = t3.selectionControls.getHandleSize$1(lineHeight)._dy; interactiveHandleHeight = Math.max(H.checkNum(handleHeight), 48); bottomSpacing = Math.max(handleHeight / 2 - t1._selectionOverlay.selectionControls.getHandleAnchor$2(C.TextSelectionHandleType_2, lineHeight)._dy + interactiveHandleHeight / 2, H.checkNum(bottomSpacing)); } caretPadding = t1._widget.scrollPadding.copyWith$1$bottom(bottomSpacing); t3 = t1._currentCaretRect; t3.toString; targetOffset = t1._getOffsetToRevealCaret$1(t3); t1._scrollController.animateTo$3$curve$duration(targetOffset.offset, C.Cubic_ifx, C.Duration_100000); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject(); t2.toString; t4._as(t2).showOnScreen$3$curve$duration$rect(C.Cubic_ifx, C.Duration_100000, caretPadding.inflateRect$1(targetOffset.rect)); }, $signature: 28 }; D.EditableTextState__formatAndSetValue_closure.prototype = { call$2: function(newValue, formatter) { return formatter.formatEditUpdate$2(this.$this._widget.controller._change_notifier$_value, newValue); }, $signature: 2488 }; D.EditableTextState__cursorTick_closure.prototype = { call$0: function() { --this.$this._obscureShowCharTicksPending; }, $signature: 0 }; D.EditableTextState__didChangeTextEditingValue_closure.prototype = { call$0: function() { }, $signature: 0 }; D.EditableTextState__updateSizeAndTransform_closure.prototype = { call$1: function(_) { return this.$this._updateSizeAndTransform$0(); }, $signature: 28 }; D.EditableTextState__updateComposingRectIfNeeded_closure.prototype = { call$1: function(_) { return this.$this._updateComposingRectIfNeeded$0(); }, $signature: 28 }; D.EditableTextState__updateCaretRectIfNeeded_closure.prototype = { call$1: function(_) { return this.$this._updateCaretRectIfNeeded$0(); }, $signature: 28 }; D.EditableTextState_showAutocorrectionPromptRect_closure.prototype = { call$0: function() { this.$this._currentPromptRectRange = new P.TextRange(this.start, this.end); }, $signature: 0 }; D.EditableTextState__semanticsOnCopy_closure.prototype = { call$0: function() { return this.controls.handleCopy$2(this.$this, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D.EditableTextState__semanticsOnCut_closure.prototype = { call$0: function() { return this.controls.handleCut$1(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D.EditableTextState__semanticsOnPaste_closure.prototype = { call$0: function() { return this.controls.handlePaste$1(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D.EditableTextState_build_closure.prototype = { call$2: function(context, offset) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, _null = null, t1 = this.$this, t2 = this.controls, t3 = t1._semanticsOnCopy$1(t2), t4 = t1._semanticsOnCut$1(t2); t2 = t1._semanticsOnPaste$1(t2); t5 = t1.buildTextSpan$0(); t6 = t1._widget; t7 = t6.controller._change_notifier$_value; t6 = t6.cursorColor; t8 = t1.get$_cursorBlinkOpacityController().get$_animation_controller$_value(); t6.toString; t6 = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t8), t6.get$value(t6) >>> 16 & 255, t6.get$value(t6) >>> 8 & 255, t6.get$value(t6) & 255); t8 = t1._widget; t9 = t8.backgroundCursorColor; t10 = t8.forceLine; t11 = t8.readOnly; t8 = t8.focusNode.get$hasFocus(); t12 = t1._widget; t13 = t12.maxLines; t14 = t12.minLines; t15 = t12.expands; t12 = t12.get$strutStyle(t12); t16 = t1._widget.selectionColor; t17 = F.MediaQuery_textScaleFactorOf(context); t18 = t1._widget.textAlign; t19 = t1.get$_editable_text$_textDirection(); t1._widget.toString; t20 = L.DefaultTextHeightBehavior_of(context); t21 = t1._widget; t22 = t21.textWidthBasis; t23 = t21.obscuringCharacter; t24 = t21.obscureText; t25 = t21.cursorWidth; t26 = t21.cursorHeight; t27 = t21.cursorRadius; t28 = t21.cursorOffset; if (t28 == null) t28 = C.Offset_0_0; t29 = t21.selectionHeightStyle; t30 = t21.selectionWidthStyle; t21 = t21.paintCursorAboveText; t31 = t1._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t32 = t1._currentPromptRectRange; t33 = t1._widget.autocorrectionTextRectColor; return new T.CompositedTransformTarget(t1._toolbarLayerLink, new T.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, 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), false, false, false, new D._Editable(t5, t7, t6, t1._startHandleLayerLink, t1._endHandleLayerLink, t9, t1._cursorVisibilityNotifier, t10, t11, t8, t13, t14, t15, t12, t16, t17, t18, t19, _null, t23, t24, t20, t22, offset, t1.get$_handleCaretChanged(), true, t25, t26, t27, t28, t21, t29, t30, true, t1, t31.devicePixelRatio, t32, t33, C.Clip_1, t1._editableKey), _null), _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2478 }; D._Editable.prototype = { createRenderObject$1: function(context) { var _this = this, _null = null, t1 = L.Localizations_maybeLocaleOf(context), t2 = _this.value.selection, t3 = D._TextHighlightPainter$(), t4 = D._TextHighlightPainter$(), t5 = type$.LinkedList__ListenerEntry, t6 = type$.ValueNotifier_bool; t1 = U.TextPainter$(_null, t1, _null, _this.strutStyle, _this.textSpan, _this.textAlign, _this.textDirection, _this.textHeightBehavior, _this.textScaleFactor, _this.textWidthBasis); t1 = new D.RenderEditable(t3, t4, _this.onCaretChanged, true, _this.devicePixelRatio, _this.obscuringCharacter, _this.obscureText, _this.textSelectionDelegate, new B.ValueNotifier(true, new P.LinkedList(t5), t6), new B.ValueNotifier(true, new P.LinkedList(t5), t6), t1, _this.showCursor, _this.hasFocus, _this.forceLine, _this.readOnly, _this.maxLines, _this.minLines, _this.expands, t2, _this.offset, _this.cursorWidth, _this.cursorHeight, _this.paintCursorAboveText, _this.startHandleLayerLink, _this.endHandleLayerLink, true, _this.clipBehavior, C.Offset_0_0); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t3.set$highlightColor(_this.selectionColor); t3.set$highlightedRange(t2); t3.set$selectionHeightStyle(_this.selectionHeightStyle); t3.set$selectionWidthStyle(_this.selectionWidthStyle); t4.set$highlightColor(_this.promptRectColor); t4.set$highlightedRange(_this.promptRectRange); t1.get$_caretPainter().set$caretColor(_this.cursorColor); t1.get$_caretPainter().set$cursorRadius(_this.cursorRadius); t1.get$_caretPainter().set$cursorOffset(_this.cursorOffset); t1.get$_caretPainter().set$backgroundCursorColor(_this.backgroundCursorColor); t1._updateForegroundPainter$1(_null); t1._updatePainter$1(_null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1, t2, _this = this; renderObject.set$text(0, _this.textSpan); renderObject.get$_caretPainter().set$caretColor(_this.cursorColor); renderObject.set$startHandleLayerLink(_this.startHandleLayerLink); renderObject.set$endHandleLayerLink(_this.endHandleLayerLink); renderObject.set$showCursor(_this.showCursor); renderObject.set$forceLine(_this.forceLine); renderObject.set$readOnly(0, _this.readOnly); renderObject.set$hasFocus(_this.hasFocus); renderObject.set$maxLines(0, _this.maxLines); renderObject.set$minLines(_this.minLines); renderObject.set$expands(_this.expands); renderObject.set$strutStyle(0, _this.strutStyle); t1 = renderObject._selectionPainter; t1.set$highlightColor(_this.selectionColor); renderObject.set$textScaleFactor(_this.textScaleFactor); renderObject.set$textAlign(0, _this.textAlign); renderObject.set$textDirection(0, _this.textDirection); t2 = L.Localizations_maybeLocaleOf(context); renderObject.set$locale(0, t2); renderObject.set$selection(_this.value.selection); renderObject.set$offset(0, _this.offset); renderObject.onCaretChanged = _this.onCaretChanged; renderObject.ignorePointer = true; renderObject.set$textHeightBehavior(0, _this.textHeightBehavior); renderObject.set$textWidthBasis(_this.textWidthBasis); renderObject.set$obscuringCharacter(_this.obscuringCharacter); renderObject.set$obscureText(_this.obscureText); renderObject.set$cursorWidth(_this.cursorWidth); renderObject.set$cursorHeight(_this.cursorHeight); renderObject.get$_caretPainter().set$cursorRadius(_this.cursorRadius); renderObject.get$_caretPainter().set$cursorOffset(_this.cursorOffset); t1.set$selectionHeightStyle(_this.selectionHeightStyle); t1.set$selectionWidthStyle(_this.selectionWidthStyle); renderObject.textSelectionDelegate = _this.textSelectionDelegate; renderObject.set$devicePixelRatio(0, _this.devicePixelRatio); renderObject.set$paintCursorAboveText(_this.paintCursorAboveText); t1 = renderObject._autocorrectHighlightPainter; t1.set$highlightColor(_this.promptRectColor); t2 = _this.clipBehavior; if (t2 !== renderObject._editable$_clipBehavior) { renderObject._editable$_clipBehavior = t2; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } t1.set$highlightedRange(_this.promptRectRange); }, get$value: function(receiver) { return this.value; } }; D._EditableTextState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); if (this._widget.focusNode.get$hasFocus()) this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver.prototype = {}; D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate.prototype = {}; O.KeyEventResult.prototype = { toString$0: function(_) { return this._focus_manager$_name; } }; O.FocusAttachment.prototype = { detach$0: function(_) { var t2, t1 = this._focus_manager$_node; if (t1._attachment === this) { if (!t1.get$hasPrimaryFocus()) { t2 = t1._focus_manager$_manager; t2 = t2 != null && t2._markedForFocus === t1; } else t2 = true; if (t2) t1.unfocus$1$disposition(C.UnfocusDisposition_1); t2 = t1._focus_manager$_manager; if (t2 != null) { if (t2._primaryFocus === t1) t2._primaryFocus = null; t2._dirtyNodes.remove$1(0, t1); } t2 = t1._focus_manager$_parent; if (t2 != null) t2._removeChild$1(0, t1); t1._attachment = null; } }, reparent$0: function() { var t2, $parent, t1 = this._focus_manager$_node; if (t1._attachment === this) { t2 = t1._context; t2.toString; $parent = L.Focus_maybeOf(t2, true); ($parent == null ? t1._context._owner.focusManager.rootScope : $parent)._reparent$1(t1); } } }; O.UnfocusDisposition.prototype = { toString$0: function(_) { return this._focus_manager$_name; } }; O.FocusNode.prototype = { set$skipTraversal: function(value) { var t1, _this = this; if (value != _this._skipTraversal) { _this._skipTraversal = value; t1 = _this._focus_manager$_manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } } }, get$canRequestFocus: function() { var scope, t1, t2, _i; if (!this._focus_manager$_canRequestFocus) return false; scope = this.get$enclosingScope(); if (scope != null && !scope.get$canRequestFocus()) return false; for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].toString; return true; }, set$canRequestFocus: function(value) { var t1, _this = this; if (value != _this._focus_manager$_canRequestFocus) { _this._focus_manager$_canRequestFocus = value; if (_this.get$hasFocus() && !value) _this.unfocus$1$disposition(C.UnfocusDisposition_1); t1 = _this._focus_manager$_manager; if (t1 != null) { t1._markNeedsUpdate$0(); t1._dirtyNodes.add$1(0, _this); } } }, set$descendantsAreFocusable: function(value) { return; }, get$descendants: function() { var result, t2, _i, child, t1 = this._descendants; if (t1 == null) { result = H.setRuntimeTypeInfo([], type$.JSArray_FocusNode); for (t1 = this._focus_manager$_children, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { child = t1[_i]; C.JSArray_methods.addAll$1(result, child.get$descendants()); result.push(child); } this._descendants = result; t1 = result; } return t1; }, get$traversalDescendants: function() { var t1 = this.get$descendants(); t1.toString; return new H.WhereIterable(t1, new O.FocusNode_traversalDescendants_closure(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, get$ancestors: function() { var result, $parent, t1 = this._ancestors; if (t1 == null) { result = H.setRuntimeTypeInfo([], type$.JSArray_FocusNode); $parent = this._focus_manager$_parent; for (; $parent != null;) { result.push($parent); $parent = $parent._focus_manager$_parent; } this._ancestors = result; t1 = result; } return t1; }, get$hasFocus: function() { if (!this.get$hasPrimaryFocus()) { var t1 = this._focus_manager$_manager; if (t1 == null) t1 = null; else { t1 = t1._primaryFocus; if (t1 == null) t1 = null; else { t1 = t1.get$ancestors(); t1 = (t1 && C.JSArray_methods).contains$1(t1, this); } } t1 = t1 === true; } else t1 = true; return t1; }, get$hasPrimaryFocus: function() { var t1 = this._focus_manager$_manager; return (t1 == null ? null : t1._primaryFocus) === this; }, get$nearestScope: function() { return this.get$enclosingScope(); }, get$enclosingScope: function() { var t1, t2, _i, node; for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) { node = t1[_i]; if (node instanceof O.FocusScopeNode) return node; } return null; }, get$rect: function(_) { var bottomRight, object = this._context.get$renderObject(), t1 = object.getTransformTo$1(0, null), t2 = object.get$semanticBounds(), topLeft = T.MatrixUtils_transformPoint(t1, new P.Offset(t2.left, t2.top)); t2 = object.getTransformTo$1(0, null); t1 = object.get$semanticBounds(); bottomRight = T.MatrixUtils_transformPoint(t2, new P.Offset(t1.right, t1.bottom)); return new P.Rect(topLeft._dx, topLeft._dy, bottomRight._dx, bottomRight._dy); }, unfocus$1$disposition: function(disposition) { var t1, scope, _this = this; if (!_this.get$hasFocus()) { t1 = _this._focus_manager$_manager; t1 = t1 == null || t1._markedForFocus !== _this; } else t1 = false; if (t1) return; scope = _this.get$enclosingScope(); if (scope == null) return; switch (disposition) { case C.UnfocusDisposition_0: if (scope.get$canRequestFocus()) C.JSArray_methods.set$length(scope._focusedChildren, 0); for (; !scope.get$canRequestFocus();) { scope = scope.get$enclosingScope(); if (scope == null) { t1 = _this._focus_manager$_manager; scope = t1 == null ? null : t1.rootScope; } } scope._doRequestFocus$1$findFirstFocus(false); break; case C.UnfocusDisposition_1: if (scope.get$canRequestFocus()) C.JSArray_methods.remove$1(scope._focusedChildren, _this); for (; !scope.get$canRequestFocus();) { t1 = scope.get$enclosingScope(); if (t1 != null) C.JSArray_methods.remove$1(t1._focusedChildren, scope); scope = scope.get$enclosingScope(); if (scope == null) { t1 = _this._focus_manager$_manager; scope = t1 == null ? null : t1.rootScope; } } scope._doRequestFocus$1$findFirstFocus(true); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, unfocus$0: function() { return this.unfocus$1$disposition(C.UnfocusDisposition_0); }, consumeKeyboardToken$0: function() { if (!this._hasKeyboardToken) return false; this._hasKeyboardToken = false; return true; }, _markNextFocus$1: function(newFocus) { var _this = this, t1 = _this._focus_manager$_manager; if (t1 != null) { if (t1._primaryFocus === _this) t1._markedForFocus = null; else { t1._markedForFocus = _this; t1._markNeedsUpdate$0(); } return; } newFocus._setAsFocusedChildForScope$0(); newFocus._notify$0(); if (newFocus !== _this) _this._notify$0(); }, _removeChild$2$removeScopeFocus: function(_, node, removeScopeFocus) { var t1, t2, _i; if (removeScopeFocus) { t1 = node.get$enclosingScope(); if (t1 != null) C.JSArray_methods.remove$1(t1._focusedChildren, node); } node._focus_manager$_parent = null; C.JSArray_methods.remove$1(this._focus_manager$_children, node); for (t1 = this.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._descendants = null; this._descendants = null; }, _removeChild$1: function($receiver, node) { return this._removeChild$2$removeScopeFocus($receiver, node, true); }, _focus_manager$_updateManager$1: function(manager) { var t1, t2, _i, descendant; this._focus_manager$_manager = manager; for (t1 = this.get$descendants(), t2 = t1.length, _i = 0; _i < t2; ++_i) { descendant = t1[_i]; descendant._focus_manager$_manager = manager; descendant._ancestors = null; } }, _reparent$1: function(child) { var oldScope, hadFocus, t1, t2, _i, inherited, _this = this; if (child._focus_manager$_parent === _this) return; oldScope = child.get$enclosingScope(); hadFocus = child.get$hasFocus(); t1 = child._focus_manager$_parent; if (t1 != null) t1._removeChild$2$removeScopeFocus(0, child, oldScope != _this.get$nearestScope()); _this._focus_manager$_children.push(child); child._focus_manager$_parent = _this; child._ancestors = null; child._focus_manager$_updateManager$1(_this._focus_manager$_manager); for (t1 = child.get$ancestors(), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._descendants = null; if (hadFocus) { t1 = _this._focus_manager$_manager; if (t1 != null) { t1 = t1._primaryFocus; if (t1 != null) t1._setAsFocusedChildForScope$0(); } } if (oldScope != null && child._context != null && child.get$enclosingScope() !== oldScope) { inherited = child._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker); t1 = inherited == null ? null : inherited.policy; if (t1 != null) t1.changedScope$2$node$oldScope(child, oldScope); } if (child._requestFocusWhenReparented) { child._doRequestFocus$1$findFirstFocus(true); child._requestFocusWhenReparented = false; } }, attach$2$onKey: function(context, onKey) { var _this = this; _this._context = context; _this.onKey = onKey == null ? _this.onKey : onKey; return _this._attachment = new O.FocusAttachment(_this); }, attach$1: function(context) { return this.attach$2$onKey(context, null); }, dispose$0: function(_) { var t1 = this._attachment; if (t1 != null) t1.detach$0(0); this.super$ChangeNotifier$dispose(0); }, _notify$0: function() { var _this = this; if (_this._focus_manager$_parent == null) return; if (_this.get$hasPrimaryFocus()) _this._setAsFocusedChildForScope$0(); _this.notifyListeners$0(); }, requestFocus$1: function(node) { if (node != null) { if (node._focus_manager$_parent == null) this._reparent$1(node); node._doRequestFocus$1$findFirstFocus(true); return; } this._doRequestFocus$1$findFirstFocus(true); }, requestFocus$0: function() { return this.requestFocus$1(null); }, _doRequestFocus$1$findFirstFocus: function(findFirstFocus) { var t1, _this = this; if (!_this.get$canRequestFocus()) return; if (_this._focus_manager$_parent == null) { _this._requestFocusWhenReparented = true; return; } _this._setAsFocusedChildForScope$0(); if (_this.get$hasPrimaryFocus()) { t1 = _this._focus_manager$_manager._markedForFocus; t1 = t1 == null || t1 === _this; } else t1 = false; if (t1) return; _this._hasKeyboardToken = true; _this._markNextFocus$1(_this); }, _setAsFocusedChildForScope$0: function() { var t2, t3, scopeFocus, scopeFocus0, t4, t1 = this.get$ancestors(); t1.toString; t1 = C.JSArray_methods.get$iterator(t1); t2 = new H.WhereTypeIterator(t1, type$.WhereTypeIterator_FocusScopeNode); t3 = type$.FocusScopeNode; scopeFocus = this; for (; t2.moveNext$0(); scopeFocus = scopeFocus0) { scopeFocus0 = t3._as(t1.get$current(t1)); t4 = scopeFocus0._focusedChildren; C.JSArray_methods.remove$1(t4, scopeFocus); t4.push(scopeFocus); } }, debugDescribeChildren$0: function() { var t2, t3, t1 = {}; t1.count = 1; t2 = this._focus_manager$_children; t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DiagnosticsNode>"); return P.List_List$of(new H.MappedListIterable(t2, new O.FocusNode_debugDescribeChildren_closure(t1), t3), true, t3._eval$1("ListIterable.E")); }, toStringShort$0: function() { var t1, extraData, _this = this; _this.get$hasFocus(); t1 = _this.get$hasFocus() && !_this.get$hasPrimaryFocus() ? "[IN FOCUS PATH]" : ""; extraData = t1 + (_this.get$hasPrimaryFocus() ? "[PRIMARY FOCUS]" : ""); t1 = "#" + Y.shortHash(_this); return t1 + (extraData.length !== 0 ? "(" + extraData + ")" : ""); }, $isListenable: 1, $isDiagnosticableTree: 1 }; O.FocusNode_traversalDescendants_closure.prototype = { call$1: function(node) { return !node._skipTraversal && node.get$canRequestFocus(); }, $signature: 114 }; O.FocusNode_debugDescribeChildren_closure.prototype = { call$1: function(child) { var t1 = "Child " + this._box_0.count++; child.toString; return Y.DiagnosticableTreeNode$(t1, null, child); }, $signature: 2460 }; O.FocusScopeNode.prototype = { get$nearestScope: function() { return this; }, setFirstFocus$1: function(scope) { if (scope._focus_manager$_parent == null) this._reparent$1(scope); if (this.get$hasFocus()) scope._doRequestFocus$1$findFirstFocus(true); else scope._setAsFocusedChildForScope$0(); }, autofocus$1: function(_, node) { var t1 = this._focusedChildren; if ((t1.length !== 0 ? C.JSArray_methods.get$last(t1) : null) == null) { if (node._focus_manager$_parent == null) this._reparent$1(node); node._doRequestFocus$1$findFirstFocus(true); } }, _doRequestFocus$1$findFirstFocus: function(findFirstFocus) { var t2, primaryFocus, _this = this, _null = null, t1 = _this._focusedChildren; while (true) { if ((t1.length !== 0 ? C.JSArray_methods.get$last(t1) : _null) != null) t2 = !(t1.length !== 0 ? C.JSArray_methods.get$last(t1) : _null).get$canRequestFocus(); else t2 = false; if (!t2) break; t1.pop(); } if (!findFirstFocus) { if (_this.get$canRequestFocus()) { _this._setAsFocusedChildForScope$0(); _this._markNextFocus$1(_this); } return; } primaryFocus = t1.length !== 0 ? C.JSArray_methods.get$last(t1) : _null; if (primaryFocus == null) primaryFocus = _this; while (true) { if (primaryFocus instanceof O.FocusScopeNode) { t1 = primaryFocus._focusedChildren; t1 = (t1.length !== 0 ? C.JSArray_methods.get$last(t1) : _null) != null; } else t1 = false; if (!t1) break; t1 = primaryFocus._focusedChildren; t1 = t1.length !== 0 ? C.JSArray_methods.get$last(t1) : _null; t1.toString; primaryFocus = t1; } if (primaryFocus === _this) { if (primaryFocus.get$canRequestFocus()) { _this._setAsFocusedChildForScope$0(); _this._markNextFocus$1(_this); } } else primaryFocus._doRequestFocus$1$findFirstFocus(true); } }; O.FocusHighlightMode.prototype = { toString$0: function(_) { return this._focus_manager$_name; } }; O.FocusHighlightStrategy.prototype = { toString$0: function(_) { return this._focus_manager$_name; } }; O.FocusManager.prototype = { dispose$0: function(_) { var t1 = $.$get$RawKeyboard_instance(); if (J.$eq$(t1.keyEventHandler, this.get$_handleRawKeyEvent())) { t1.keyEventHandler = null; $.GestureBinding__instance.GestureBinding_pointerRouter._globalRoutes.remove$1(0, this.get$_focus_manager$_handlePointerEvent()); } this.super$ChangeNotifier$dispose(0); }, _focus_manager$_updateHighlightMode$0: function() { var t1, newMode, oldMode, _this = this; switch (C.FocusHighlightStrategy_0) { case C.FocusHighlightStrategy_0: t1 = _this._lastInteractionWasTouch; if (t1 == null) return; newMode = t1 ? C.FocusHighlightMode_0 : C.FocusHighlightMode_1; break; case C.FocusHighlightStrategy_1: newMode = C.FocusHighlightMode_0; break; case C.FocusHighlightStrategy_2: newMode = C.FocusHighlightMode_1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } oldMode = _this._highlightMode; if (oldMode == null) oldMode = O.FocusManager__defaultModeForPlatform(); _this._highlightMode = newMode; if (newMode !== oldMode) _this._notifyHighlightModeListeners$0(); }, _notifyHighlightModeListeners$0: function() { var listener, exception, stack, localListeners, _i, t3, exception0, rti, t4, _this = this, t1 = _this._focus_manager$_listeners, t2 = t1._observer_list$_map; if (t2.get$isEmpty(t2)) return; localListeners = P.List_List$from(t1, true, type$.void_Function_FocusHighlightMode); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { listener = localListeners[_i]; try { if (t2.containsKey$1(0, listener)) { t3 = _this._highlightMode; if (t3 == null) t3 = O.FocusManager__defaultModeForPlatform(); listener.call$1(t3); } } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); rti = _this instanceof H.Closure ? H.closureFunctionType(_this) : null; t3 = U.ErrorDescription$("while dispatching notifications for " + H.createRuntimeType(rti == null ? H.instanceType(_this) : rti).toString$0(0)); t4 = $.FlutterError_onError; if (t4 != null) t4.call$1(new U.FlutterErrorDetails(exception, stack, "widgets library", t3, null, false)); } } }, _focus_manager$_handlePointerEvent$1: function($event) { var expectedMode, t1, _this = this; switch ($event.get$kind($event)) { case C.PointerDeviceKind_0: case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: _this._lastInteractionWasTouch = true; expectedMode = C.FocusHighlightMode_0; break; case C.PointerDeviceKind_1: case C.PointerDeviceKind_4: _this._lastInteractionWasTouch = false; expectedMode = C.FocusHighlightMode_1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this._highlightMode; if (expectedMode !== (t1 == null ? O.FocusManager__defaultModeForPlatform() : t1)) _this._focus_manager$_updateHighlightMode$0(); }, _handleRawKeyEvent$1: function($event) { var t1, handled, t2, _i, node, t3, result, _this = this; _this._lastInteractionWasTouch = false; _this._focus_manager$_updateHighlightMode$0(); t1 = _this._primaryFocus; if (t1 == null) return false; t1 = H.setRuntimeTypeInfo([t1], type$.JSArray_FocusNode); C.JSArray_methods.addAll$1(t1, _this._primaryFocus.get$ancestors()); t2 = t1.length; _i = 0; while (true) { if (!(_i < t1.length)) { handled = false; break; } c$1: { node = t1[_i]; t3 = node.onKey; if (t3 != null) { result = t3.call$2(node, $event); if (result instanceof O.KeyEventResult) switch (result) { case C.KeyEventResult_0: handled = true; break; case C.KeyEventResult_2: handled = false; break; case C.KeyEventResult_1: break c$1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } else { if (H._isBool(result)) if (result) { handled = true; break; } else break c$1; handled = false; } break; } } t1.length === t2 || (0, H.throwConcurrentModificationError)(t1); ++_i; } return handled; }, _markNeedsUpdate$0: function() { if (this._haveScheduledUpdate) return; this._haveScheduledUpdate = true; P.scheduleMicrotask(this.get$_applyFocusChange()); }, _applyFocusChange$0: function() { var previousFocus, t1, t2, previousPath, nextPath, _this = this; _this._haveScheduledUpdate = false; previousFocus = _this._primaryFocus; t1 = previousFocus == null; if (t1 && _this._markedForFocus == null) _this._markedForFocus = _this.rootScope; t2 = _this._markedForFocus; if (t2 != null && t2 !== previousFocus) { if (t1) previousPath = null; else { t2 = previousFocus.get$ancestors(); t2.toString; t2 = P.LinkedHashSet_LinkedHashSet$from(t2, H._arrayInstanceType(t2)._precomputed1); previousPath = t2; } if (previousPath == null) previousPath = P.LinkedHashSet_LinkedHashSet$_empty(type$.FocusNode); t2 = _this._markedForFocus.get$ancestors(); t2.toString; nextPath = P.LinkedHashSet_LinkedHashSet$from(t2, H._arrayInstanceType(t2)._precomputed1); t2 = _this._dirtyNodes; t2.addAll$1(0, nextPath.difference$1(previousPath)); t2.addAll$1(0, previousPath.difference$1(nextPath)); t2 = _this._primaryFocus = _this._markedForFocus; _this._markedForFocus = null; } else t2 = previousFocus; if (previousFocus != t2) { if (!t1) _this._dirtyNodes.add$1(0, previousFocus); t1 = _this._primaryFocus; if (t1 != null) _this._dirtyNodes.add$1(0, t1); } for (t1 = _this._dirtyNodes, t2 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t2.moveNext$0();) t2._collection$_current._notify$0(); t1.clear$0(0); if (previousFocus != _this._primaryFocus) _this.notifyListeners$0(); }, debugDescribeChildren$0: function() { return H.setRuntimeTypeInfo([Y.DiagnosticableTreeNode$("rootScope", null, this.rootScope)], type$.JSArray_DiagnosticsNode); }, $isListenable: 1, $isDiagnosticableTree: 1 }; O._FocusManager_Object_DiagnosticableTreeMixin.prototype = {}; O._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier.prototype = {}; O._FocusNode_Object_DiagnosticableTreeMixin.prototype = {}; O._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier.prototype = {}; L.Focus.prototype = { createState$0: function() { return new L._FocusState(C._StateLifecycle_0); } }; L._FocusState.prototype = { get$focusNode: function(_) { var t1 = this._widget.focusNode; if (t1 == null) { t1 = this._internalNode; t1.toString; } return t1; }, initState$0: function() { this.super$State$initState(); this._initNode$0(); }, _initNode$0: function() { var t1, t2, _this = this; if (_this._widget.focusNode == null) if (_this._internalNode == null) _this._internalNode = _this._createNode$0(); t1 = _this.get$focusNode(_this); _this._widget.toString; t1.set$descendantsAreFocusable(true); if (_this._widget.skipTraversal != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget.skipTraversal; t2.toString; t1.set$skipTraversal(t2); } if (_this._widget.canRequestFocus != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget.canRequestFocus; t2.toString; t1.set$canRequestFocus(t2); } _this._canRequestFocus = _this.get$focusNode(_this).get$canRequestFocus(); _this.get$focusNode(_this).toString; _this._descendantsAreFocusable = true; _this._hasPrimaryFocus = _this.get$focusNode(_this).get$hasPrimaryFocus(); t1 = _this.get$focusNode(_this); t2 = _this._framework$_element; t2.toString; _this._focusAttachment = t1.attach$2$onKey(t2, _this._widget.onKey); t2 = _this.get$focusNode(_this).ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_handleFocusChanged()), false); }, _createNode$0: function() { var t1 = this._widget, t2 = t1.debugLabel, t3 = t1.canRequestFocus; t1 = t1.skipTraversal; return O.FocusNode$(t3 !== false, t2, true, null, t1 === true); }, dispose$0: function(_) { var t1, _this = this; _this.get$focusNode(_this).removeListener$1(0, _this.get$_handleFocusChanged()); _this._focusAttachment.detach$0(0); t1 = _this._internalNode; if (t1 != null) t1.dispose$0(0); _this.super$State$dispose(0); }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); var t1 = this._focusAttachment; if (t1 != null) t1.reparent$0(); this._handleAutofocus$0(); }, _handleAutofocus$0: function() { var t1, _this = this; if (!_this._didAutofocus && _this._widget.autofocus) { t1 = _this._framework$_element; t1.toString; L.FocusScope_of(t1).autofocus$1(0, _this.get$focusNode(_this)); _this._didAutofocus = true; } }, deactivate$0: function() { this.super$State$deactivate(); var t1 = this._focusAttachment; if (t1 != null) t1.reparent$0(); this._didAutofocus = false; }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.focusNode; t2 = _this._widget; if (t1 == t2.focusNode) { if (!J.$eq$(t2.onKey, _this.get$focusNode(_this).onKey)) _this.get$focusNode(_this).onKey = _this._widget.onKey; if (_this._widget.skipTraversal != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget.skipTraversal; t2.toString; t1.set$skipTraversal(t2); } if (_this._widget.canRequestFocus != null) { t1 = _this.get$focusNode(_this); t2 = _this._widget.canRequestFocus; t2.toString; t1.set$canRequestFocus(t2); } t1 = _this.get$focusNode(_this); _this._widget.toString; t1.set$descendantsAreFocusable(true); } else { _this._focusAttachment.detach$0(0); _this.get$focusNode(_this).removeListener$1(0, _this.get$_handleFocusChanged()); _this._initNode$0(); } if (oldWidget.autofocus !== _this._widget.autofocus) _this._handleAutofocus$0(); }, _handleFocusChanged$0: function() { var t1, _this = this, hasPrimaryFocus = _this.get$focusNode(_this).get$hasPrimaryFocus(), canRequestFocus = _this.get$focusNode(_this).get$canRequestFocus(); _this.get$focusNode(_this).toString; t1 = _this._widget.onFocusChange; if (t1 != null) t1.call$1(_this.get$focusNode(_this).get$hasFocus()); if (_this._hasPrimaryFocus !== hasPrimaryFocus) _this.setState$1(new L._FocusState__handleFocusChanged_closure(_this, hasPrimaryFocus)); if (_this._canRequestFocus !== canRequestFocus) _this.setState$1(new L._FocusState__handleFocusChanged_closure0(_this, canRequestFocus)); if (_this._descendantsAreFocusable !== true) _this.setState$1(new L._FocusState__handleFocusChanged_closure1(_this, true)); }, build$1: function(_, context) { var t1, child, t2, _this = this, _null = null; _this._focusAttachment.reparent$0(); t1 = _this._widget; child = t1.child; if (t1.includeSemantics) { t1 = _this._canRequestFocus; t2 = _this._hasPrimaryFocus; child = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, t1, t2, _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), false, false, false, child, _null); } return L._FocusMarker$(child, _this.get$focusNode(_this)); } }; L._FocusState__handleFocusChanged_closure.prototype = { call$0: function() { this.$this._hasPrimaryFocus = this.hasPrimaryFocus; }, $signature: 0 }; L._FocusState__handleFocusChanged_closure0.prototype = { call$0: function() { this.$this._canRequestFocus = this.canRequestFocus; }, $signature: 0 }; L._FocusState__handleFocusChanged_closure1.prototype = { call$0: function() { this.$this._descendantsAreFocusable = this.descendantsAreFocusable; }, $signature: 0 }; L.FocusScope.prototype = { createState$0: function() { return new L._FocusScopeState(C._StateLifecycle_0); } }; L._FocusScopeState.prototype = { _createNode$0: function() { var t1 = this._widget, t2 = t1.debugLabel, t3 = t1.canRequestFocus; t1 = t1.skipTraversal; return O.FocusScopeNode$(t3 !== false, t2, t1 === true); }, build$1: function(_, context) { var t1, _this = this, _null = null; _this._focusAttachment.reparent$0(); t1 = _this.get$focusNode(_this); t1 = L._FocusMarker$(_this._widget.child, t1); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t1, _null); } }; L._FocusMarker.prototype = {}; U._getAncestor_closure.prototype = { call$1: function(ancestor) { var t1 = this._box_0; if (--t1.count === 0) { t1.target = ancestor; return false; } return true; }, $signature: 119 }; U._FocusTraversalGroupInfo.prototype = {}; U.TraversalDirection.prototype = { toString$0: function(_) { return this._focus_traversal$_name; } }; U.FocusTraversalPolicy.prototype = { _findInitialFocus$2$fromEnd: function(currentNode, fromEnd) { var sorted, scope = currentNode.get$nearestScope(), t1 = scope._focusedChildren, candidate = t1.length !== 0 ? C.JSArray_methods.get$last(t1) : null; if (candidate == null && scope.get$descendants().length !== 0) { sorted = this._sortAllDescendants$2(scope, currentNode); if (sorted.length === 0) candidate = null; else candidate = fromEnd ? C.JSArray_methods.get$last(sorted) : C.JSArray_methods.get$first(sorted); } return candidate == null ? currentNode : candidate; }, _findInitialFocus$1: function(currentNode) { return this._findInitialFocus$2$fromEnd(currentNode, false); }, invalidateScopeData$1: function(node) { }, changedScope$2$node$oldScope: function(node, oldScope) { }, _getMarker$1: function(context) { var t1; if (context == null) t1 = null; else { t1 = context.getElementForInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker); t1 = t1 == null ? null : t1.get$widget(); } return type$.nullable__FocusTraversalGroupMarker._as(t1); }, _sortAllDescendants$2: function(scope, currentNode) { var groups, t2, t3, t4, t5, t6, _i, node, t7, ancestor, groupNode, parentContext, parentNode, groupKeys, sortedDescendants, _null = null, scopeGroupMarker = this._getMarker$1(scope._context), t1 = scopeGroupMarker == null, defaultPolicy = t1 ? _null : scopeGroupMarker.policy; if (defaultPolicy == null) defaultPolicy = new U.ReadingOrderTraversalPolicy(P.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData)); groups = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_FocusNode, type$._FocusTraversalGroupInfo); for (t2 = scope.get$descendants(), t3 = t2.length, t4 = type$.nullable__FocusTraversalGroupMarker, t5 = type$._FocusTraversalGroupMarker, t6 = type$.JSArray_FocusNode, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { node = t2[_i]; t7 = node._context; if (t7 == null) t7 = _null; else { t7 = t7._inheritedWidgets; ancestor = t7 == null ? _null : t7.$index(0, H.createRuntimeType(t5)); t7 = ancestor == null ? _null : ancestor.get$widget(); } t4._as(t7); groupNode = t7 == null ? _null : t7.focusNode; if (J.$eq$(node, groupNode)) { t7 = groupNode._context; t7.toString; parentContext = U._getAncestor(t7, 2); if (parentContext == null) t7 = _null; else { t7 = parentContext._inheritedWidgets; ancestor = t7 == null ? _null : t7.$index(0, H.createRuntimeType(t5)); t7 = ancestor == null ? _null : ancestor.get$widget(); } t4._as(t7); parentNode = t7 == null ? _null : t7.focusNode; if (groups.$index(0, parentNode) == null) groups.$indexSet(0, parentNode, U._FocusTraversalGroupInfo$(t7, defaultPolicy, H.setRuntimeTypeInfo([], t6))); groups.$index(0, parentNode).members.push(groupNode); continue; } if (node.get$canRequestFocus() && !node._skipTraversal) { if (groups.$index(0, groupNode) == null) groups.$indexSet(0, groupNode, U._FocusTraversalGroupInfo$(t7, defaultPolicy, H.setRuntimeTypeInfo([], t6))); groups.$index(0, groupNode).members.push(node); } } t2 = groups.get$keys(groups); groupKeys = P.LinkedHashSet_LinkedHashSet$of(t2, H._instanceType(t2)._eval$1("Iterable.E")); for (t2 = groups.get$keys(groups), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = groups.$index(0, t3).policy.sortDescendants$2(groups.$index(0, t3).members, currentNode); t4 = H.setRuntimeTypeInfo(t4.slice(0), H._arrayInstanceType(t4)); C.JSArray_methods.set$length(groups.$index(0, t3).members, 0); C.JSArray_methods.addAll$1(groups.$index(0, t3).members, t4); } sortedDescendants = H.setRuntimeTypeInfo([], t6); t2 = groups.$index(0, t1 ? _null : scopeGroupMarker.focusNode); t2.toString; new U.FocusTraversalPolicy__sortAllDescendants_visitGroups(groupKeys, groups, sortedDescendants).call$1(t2); if (!!sortedDescendants.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(sortedDescendants, new U.FocusTraversalPolicy__sortAllDescendants_closure(), true); return sortedDescendants; }, _moveFocus$2$forward: function(currentNode, $forward) { var t2, focusedChild, firstFocus, sortedNodes, previousNode, previousNode0, _this = this, t1 = currentNode.get$nearestScope(); t1.toString; _this.super$FocusTraversalPolicy$invalidateScopeData(t1); _this.DirectionalFocusTraversalPolicyMixin__policyData.remove$1(0, t1); t2 = t1._focusedChildren; focusedChild = t2.length !== 0 ? C.JSArray_methods.get$last(t2) : null; if (focusedChild == null) { firstFocus = $forward ? _this._findInitialFocus$1(currentNode) : _this._findInitialFocus$2$fromEnd(currentNode, true); U._focusAndEnsureVisible(firstFocus, $forward ? C.ScrollPositionAlignmentPolicy_1 : C.ScrollPositionAlignmentPolicy_2); return true; } sortedNodes = _this._sortAllDescendants$2(t1, currentNode); if ($forward && focusedChild == C.JSArray_methods.get$last(sortedNodes)) { U._focusAndEnsureVisible(C.JSArray_methods.get$first(sortedNodes), C.ScrollPositionAlignmentPolicy_1); return true; } if (!$forward && focusedChild == C.JSArray_methods.get$first(sortedNodes)) { U._focusAndEnsureVisible(C.JSArray_methods.get$last(sortedNodes), C.ScrollPositionAlignmentPolicy_2); return true; } for (t1 = J.get$iterator$ax($forward ? sortedNodes : new H.ReversedListIterable(sortedNodes, H._arrayInstanceType(sortedNodes)._eval$1("ReversedListIterable<1>"))), previousNode = null; t1.moveNext$0(); previousNode = previousNode0) { previousNode0 = t1.get$current(t1); if (previousNode == focusedChild) { t1 = $forward ? C.ScrollPositionAlignmentPolicy_1 : C.ScrollPositionAlignmentPolicy_2; previousNode0.requestFocus$0(); t2 = previousNode0._context; t2.toString; F.Scrollable_ensureVisible(t2, 1, t1); return true; } } return false; } }; U.FocusTraversalPolicy__sortAllDescendants_visitGroups.prototype = { call$1: function(info) { var t1, t2, t3, t4, t5, _i, node, t6, _this = this; for (t1 = info.members, t2 = t1.length, t3 = _this.sortedDescendants, t4 = _this.groupKeys, t5 = _this.groups, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { node = t1[_i]; if (t4.contains$1(0, node)) { t6 = t5.$index(0, node); t6.toString; _this.call$1(t6); } else t3.push(node); } }, $signature: 2449 }; U.FocusTraversalPolicy__sortAllDescendants_closure.prototype = { call$1: function(node) { return !node.get$canRequestFocus() || node._skipTraversal; }, $signature: 114 }; U._DirectionalPolicyDataEntry.prototype = {}; U._DirectionalPolicyData.prototype = {}; U.DirectionalFocusTraversalPolicyMixin.prototype = { findFirstFocusInDirection$2: function(currentNode, direction) { var _this = this; switch (direction) { case C.TraversalDirection_0: return _this._sortAndFindInitial$3$first$vertical(currentNode, false, true); case C.TraversalDirection_2: return _this._sortAndFindInitial$3$first$vertical(currentNode, true, true); case C.TraversalDirection_3: return _this._sortAndFindInitial$3$first$vertical(currentNode, false, false); case C.TraversalDirection_1: return _this._sortAndFindInitial$3$first$vertical(currentNode, true, false); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _sortAndFindInitial$3$first$vertical: function(currentNode, first, vertical) { var nodes = currentNode.get$nearestScope().get$traversalDescendants(), sorted = P.List_List$of(nodes, true, nodes.$ti._eval$1("Iterable.E")); S.mergeSort(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure(vertical, first), type$.FocusNode); if (sorted.length !== 0) return C.JSArray_methods.get$first(sorted); return null; }, _sortAndFilterHorizontally$3: function(direction, target, nearestScope) { var result, nodes = nearestScope.get$traversalDescendants(), sorted = P.List_List$of(nodes, true, nodes.$ti._eval$1("Iterable.E")); S.mergeSort(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure(), type$.FocusNode); switch (direction) { case C.TraversalDirection_3: result = new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0(target), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); break; case C.TraversalDirection_1: result = new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1(target), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); break; case C.TraversalDirection_0: case C.TraversalDirection_2: result = null; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return result; }, _sortAndFilterVertically$3: function(direction, target, nodes) { var sorted = P.List_List$of(nodes, true, nodes.$ti._eval$1("Iterable.E")); S.mergeSort(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure(), type$.FocusNode); switch (direction) { case C.TraversalDirection_0: return new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0(target), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); case C.TraversalDirection_2: return new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1(target), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); case C.TraversalDirection_3: case C.TraversalDirection_1: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return null; }, _popPolicyDataIfNeeded$3: function(direction, nearestScope, focusedChild) { var t3, popOrInvalidate, _this = this, _s80_ = string$.x60null_c, t1 = _this.DirectionalFocusTraversalPolicyMixin__policyData, policyData = t1.$index(0, nearestScope), t2 = policyData != null; if (t2) { t3 = policyData.history; t3 = t3.length !== 0 && C.JSArray_methods.get$first(t3).direction !== direction; } else t3 = false; if (t3) { t3 = policyData.history; if (C.JSArray_methods.get$last(t3).node._focus_manager$_parent == null) { _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); return false; } popOrInvalidate = new U.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate(_this, policyData, nearestScope); switch (direction) { case C.TraversalDirection_2: case C.TraversalDirection_0: switch (C.JSArray_methods.get$first(t3).direction) { case C.TraversalDirection_3: case C.TraversalDirection_1: _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); break; case C.TraversalDirection_0: case C.TraversalDirection_2: if (popOrInvalidate.call$1(direction)) return true; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; case C.TraversalDirection_3: case C.TraversalDirection_1: switch (C.JSArray_methods.get$first(t3).direction) { case C.TraversalDirection_3: case C.TraversalDirection_1: if (popOrInvalidate.call$1(direction)) return true; break; case C.TraversalDirection_0: case C.TraversalDirection_2: _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } } if (t2 && policyData.history.length === 0) { _this.super$FocusTraversalPolicy$invalidateScopeData(nearestScope); t1.remove$1(0, nearestScope); } return false; }, inDirection$2: function(currentNode, direction) { var firstFocus, focusedScrollable, eligibleNodes, filteredEligibleNodes, found, sorted, inBand, policyData, newEntry, _this = this, _s80_ = string$.x60null_c, nearestScope = currentNode.get$nearestScope(), t1 = nearestScope._focusedChildren, focusedChild = t1.length !== 0 ? C.JSArray_methods.get$last(t1) : null; if (focusedChild == null) { firstFocus = _this.findFirstFocusInDirection$2(currentNode, direction); if (firstFocus == null) firstFocus = currentNode; switch (direction) { case C.TraversalDirection_0: case C.TraversalDirection_3: U._focusAndEnsureVisible(firstFocus, C.ScrollPositionAlignmentPolicy_2); break; case C.TraversalDirection_1: case C.TraversalDirection_2: U._focusAndEnsureVisible(firstFocus, C.ScrollPositionAlignmentPolicy_1); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return true; } if (_this._popPolicyDataIfNeeded$3(direction, nearestScope, focusedChild)) return true; t1 = focusedChild._context; t1.toString; focusedScrollable = F.Scrollable_of(t1); switch (direction) { case C.TraversalDirection_2: case C.TraversalDirection_0: eligibleNodes = _this._sortAndFilterVertically$3(direction, focusedChild.get$rect(focusedChild), nearestScope.get$traversalDescendants()); if (focusedScrollable != null && !focusedScrollable._scrollable$_position.get$atEdge()) { eligibleNodes.toString; filteredEligibleNodes = new H.WhereIterable(eligibleNodes, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure(focusedScrollable), eligibleNodes.$ti._eval$1("WhereIterable")); if (!filteredEligibleNodes.get$isEmpty(filteredEligibleNodes)) eligibleNodes = filteredEligibleNodes; } if (!eligibleNodes.get$iterator(eligibleNodes).moveNext$0()) { found = null; break; } sorted = P.List_List$of(eligibleNodes, true, H._instanceType(eligibleNodes)._eval$1("Iterable.E")); if (direction === C.TraversalDirection_0) { t1 = H._arrayInstanceType(sorted)._eval$1("ReversedListIterable<1>"); sorted = P.List_List$of(new H.ReversedListIterable(sorted, t1), true, t1._eval$1("ListIterable.E")); } inBand = new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure0(new P.Rect(focusedChild.get$rect(focusedChild).left, -1 / 0, focusedChild.get$rect(focusedChild).right, 1 / 0)), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); if (!inBand.get$isEmpty(inBand)) { found = inBand.get$first(inBand); break; } S.mergeSort(sorted, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure1(focusedChild), type$.FocusNode); found = C.JSArray_methods.get$first(sorted); break; case C.TraversalDirection_1: case C.TraversalDirection_3: eligibleNodes = _this._sortAndFilterHorizontally$3(direction, focusedChild.get$rect(focusedChild), nearestScope); if (focusedScrollable != null && !focusedScrollable._scrollable$_position.get$atEdge()) { eligibleNodes.toString; filteredEligibleNodes = new H.WhereIterable(eligibleNodes, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure2(focusedScrollable), eligibleNodes.$ti._eval$1("WhereIterable")); if (!filteredEligibleNodes.get$isEmpty(filteredEligibleNodes)) eligibleNodes = filteredEligibleNodes; } if (!eligibleNodes.get$iterator(eligibleNodes).moveNext$0()) { found = null; break; } sorted = P.List_List$of(eligibleNodes, true, H._instanceType(eligibleNodes)._eval$1("Iterable.E")); if (direction === C.TraversalDirection_3) { t1 = H._arrayInstanceType(sorted)._eval$1("ReversedListIterable<1>"); sorted = P.List_List$of(new H.ReversedListIterable(sorted, t1), true, t1._eval$1("ListIterable.E")); } inBand = new H.WhereIterable(sorted, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure3(new P.Rect(-1 / 0, focusedChild.get$rect(focusedChild).top, 1 / 0, focusedChild.get$rect(focusedChild).bottom)), H._arrayInstanceType(sorted)._eval$1("WhereIterable<1>")); if (!inBand.get$isEmpty(inBand)) { found = inBand.get$first(inBand); break; } S.mergeSort(sorted, new U.DirectionalFocusTraversalPolicyMixin_inDirection_closure4(focusedChild), type$.FocusNode); found = C.JSArray_methods.get$first(sorted); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } if (found != null) { t1 = _this.DirectionalFocusTraversalPolicyMixin__policyData; policyData = t1.$index(0, nearestScope); newEntry = new U._DirectionalPolicyDataEntry(direction, focusedChild); if (policyData != null) policyData.history.push(newEntry); else t1.$indexSet(0, nearestScope, new U._DirectionalPolicyData(H.setRuntimeTypeInfo([newEntry], type$.JSArray__DirectionalPolicyDataEntry))); switch (direction) { case C.TraversalDirection_0: case C.TraversalDirection_3: U._focusAndEnsureVisible(found, C.ScrollPositionAlignmentPolicy_2); break; case C.TraversalDirection_2: case C.TraversalDirection_1: U._focusAndEnsureVisible(found, C.ScrollPositionAlignmentPolicy_1); break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } return true; } return false; } }; U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure.prototype = { call$1: function(entry) { return entry.node === this.node; }, $signature: 2448 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure.prototype = { call$2: function(a, b) { if (this.vertical) if (this.first) return J.compareTo$1$ns(a.get$rect(a).top, b.get$rect(b).top); else return J.compareTo$1$ns(b.get$rect(b).bottom, a.get$rect(a).bottom); else if (this.first) return J.compareTo$1$ns(a.get$rect(a).left, b.get$rect(b).left); else return J.compareTo$1$ns(b.get$rect(b).right, a.get$rect(a).right); }, $signature: 225 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure.prototype = { call$2: function(a, b) { return J.compareTo$1$ns(a.get$rect(a).get$center()._dx, b.get$rect(b).get$center()._dx); }, $signature: 225 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0.prototype = { call$1: function(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx <= t1.left; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1.prototype = { call$1: function(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx >= t1.right; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure.prototype = { call$2: function(a, b) { return J.compareTo$1$ns(a.get$rect(a).get$center()._dy, b.get$rect(b).get$center()._dy); }, $signature: 225 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0.prototype = { call$1: function(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy <= t1.top; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1.prototype = { call$1: function(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy >= t1.bottom; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate.prototype = { call$1: function(direction) { var t2, alignmentPolicy, lastNode = this.policyData.history.pop().node, t1 = lastNode._context; t1.toString; t1 = F.Scrollable_of(t1); t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t2.toString; if (t1 != F.Scrollable_of(t2)) { t1 = this.$this; t2 = this.nearestScope; t1.super$FocusTraversalPolicy$invalidateScopeData(t2); t1.DirectionalFocusTraversalPolicyMixin__policyData.remove$1(0, t2); return false; } switch (direction) { case C.TraversalDirection_0: case C.TraversalDirection_3: alignmentPolicy = C.ScrollPositionAlignmentPolicy_2; break; case C.TraversalDirection_1: case C.TraversalDirection_2: alignmentPolicy = C.ScrollPositionAlignmentPolicy_1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } U._focusAndEnsureVisible(lastNode, alignmentPolicy); return true; }, $signature: 2423 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure.prototype = { call$1: function(node) { var t1 = node._context; t1.toString; return F.Scrollable_of(t1) === this.focusedScrollable; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure0.prototype = { call$1: function(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure1.prototype = { call$2: function(a, b) { var t1 = this.focusedChild; return C.JSNumber_methods.compareTo$1(Math.abs(a.get$rect(a).get$center()._dx - t1.get$rect(t1).get$center()._dx), Math.abs(b.get$rect(b).get$center()._dx - t1.get$rect(t1).get$center()._dx)); }, $signature: 225 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure2.prototype = { call$1: function(node) { var t1 = node._context; t1.toString; return F.Scrollable_of(t1) === this.focusedScrollable; }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure3.prototype = { call$1: function(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 114 }; U.DirectionalFocusTraversalPolicyMixin_inDirection_closure4.prototype = { call$2: function(a, b) { var t1 = this.focusedChild; return C.JSNumber_methods.compareTo$1(Math.abs(a.get$rect(a).get$center()._dy - t1.get$rect(t1).get$center()._dy), Math.abs(b.get$rect(b).get$center()._dy - t1.get$rect(t1).get$center()._dy)); }, $signature: 225 }; U._ReadingOrderSortData.prototype = { get$directionalAncestors: function() { var t1 = this._directionalAncestors; if (t1 == null) { t1 = this.node._context; t1.toString; t1 = this._directionalAncestors = new U._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors().call$1(t1); } t1.toString; return t1; } }; U._ReadingOrderSortData_commonDirectionalityOf_closure.prototype = { call$1: function(member) { var t1 = member.get$directionalAncestors(); t1.toString; return P.LinkedHashSet_LinkedHashSet$from(t1, H._arrayInstanceType(t1)._precomputed1); }, $signature: 2420 }; U._ReadingOrderSortData_sortWithDirectionality_closure.prototype = { call$2: function(a, b) { switch (this.directionality) { case C.TextDirection_1: return J.compareTo$1$ns(a.rect.left, b.rect.left); case C.TextDirection_0: return J.compareTo$1$ns(b.rect.right, a.rect.right); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 468 }; U._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors.prototype = { call$1: function(context) { var t2, ancestor, result = H.setRuntimeTypeInfo([], type$.JSArray_Directionality), t1 = type$.Directionality, directionalityElement = context.getElementForInheritedWidgetOfExactType$1$0(t1); for (; directionalityElement != null;) { result.push(t1._as(directionalityElement.get$widget())); t2 = U._getAncestor(directionalityElement, 1); if (t2 == null) directionalityElement = null; else { t2 = t2._inheritedWidgets; ancestor = t2 == null ? null : t2.$index(0, H.createRuntimeType(t1)); directionalityElement = ancestor; } } return result; }, $signature: 2413 }; U._ReadingOrderDirectionalGroupData.prototype = { get$rect: function(_) { var t1, t2, t3, _this = this; if (_this._rect == null) for (t1 = _this.members, t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Rect>"), t1 = new H.MappedListIterable(t1, new U._ReadingOrderDirectionalGroupData_rect_closure(), t2), t2 = new H.ListIterator(t1, t1.get$length(t1), t2._eval$1("ListIterator")); t2.moveNext$0();) { t1 = t2.__internal$_current; t3 = _this._rect; if (t3 == null) { _this._rect = t1; t3 = t1; } _this._rect = t3.expandToInclude$1(t1); } t1 = _this._rect; t1.toString; return t1; } }; U._ReadingOrderDirectionalGroupData_rect_closure.prototype = { call$1: function(data) { return data.rect; }, $signature: 2412 }; U._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure.prototype = { call$2: function(a, b) { switch (this.directionality) { case C.TextDirection_1: return J.compareTo$1$ns(a.get$rect(a).left, b.get$rect(b).left); case C.TextDirection_0: return J.compareTo$1$ns(b.get$rect(b).right, a.get$rect(a).right); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 2402 }; U.ReadingOrderTraversalPolicy.prototype = { _collectDirectionalityGroups$1: function(candidates) { var t2, _i, candidate, currentDirection0, t3, currentDirection = C.JSArray_methods.get$first(candidates).directionality, t1 = type$.JSArray__ReadingOrderSortData, currentGroup = H.setRuntimeTypeInfo([], t1), result = H.setRuntimeTypeInfo([], type$.JSArray__ReadingOrderDirectionalGroupData); for (t2 = candidates.length, _i = 0; _i < candidates.length; candidates.length === t2 || (0, H.throwConcurrentModificationError)(candidates), ++_i) { candidate = candidates[_i]; currentDirection0 = candidate.directionality; if (currentDirection0 == currentDirection) { currentGroup.push(candidate); continue; } result.push(new U._ReadingOrderDirectionalGroupData(currentGroup)); currentGroup = H.setRuntimeTypeInfo([candidate], t1); currentDirection = currentDirection0; } if (currentGroup.length !== 0) result.push(new U._ReadingOrderDirectionalGroupData(currentGroup)); for (t1 = result.length, _i = 0; _i < result.length; result.length === t1 || (0, H.throwConcurrentModificationError)(result), ++_i) { t2 = result[_i].members; if (t2.length === 1) continue; t3 = C.JSArray_methods.get$first(t2).directionality; t3.toString; U._ReadingOrderSortData_sortWithDirectionality(t2, t3); } return result; }, _pickNext$1: function(candidates) { var topmost, inBandOfTop, nearestCommonDirectionality, bandGroups; S.mergeSort(candidates, new U.ReadingOrderTraversalPolicy__pickNext_closure(), type$._ReadingOrderSortData); topmost = C.JSArray_methods.get$first(candidates); inBandOfTop = new U.ReadingOrderTraversalPolicy__pickNext_inBand().call$2(topmost, candidates); if (J.get$length$asx(inBandOfTop) <= 1) return topmost; nearestCommonDirectionality = U._ReadingOrderSortData_commonDirectionalityOf(inBandOfTop); nearestCommonDirectionality.toString; U._ReadingOrderSortData_sortWithDirectionality(inBandOfTop, nearestCommonDirectionality); bandGroups = this._collectDirectionalityGroups$1(inBandOfTop); if (bandGroups.length === 1) return C.JSArray_methods.get$first(C.JSArray_methods.get$first(bandGroups).members); U._ReadingOrderDirectionalGroupData_sortWithDirectionality(bandGroups, nearestCommonDirectionality); return C.JSArray_methods.get$first(C.JSArray_methods.get$first(bandGroups).members); }, sortDescendants$2: function(descendants, currentNode) { var t1, t2, t3, t4, _i, node, t5, t6, ancestor, sortedList, current, next; if (descendants.length <= 1) return descendants; t1 = H.setRuntimeTypeInfo([], type$.JSArray__ReadingOrderSortData); for (t2 = descendants.length, t3 = type$.nullable_Directionality, t4 = type$.Directionality, _i = 0; _i < descendants.length; descendants.length === t2 || (0, H.throwConcurrentModificationError)(descendants), ++_i) { node = descendants[_i]; t5 = node.get$rect(node); t6 = node._context._inheritedWidgets; ancestor = t6 == null ? null : t6.$index(0, H.createRuntimeType(t4)); t6 = t3._as(ancestor == null ? null : ancestor.get$widget()); t1.push(new U._ReadingOrderSortData(t6 == null ? null : t6.textDirection, t5, node)); } sortedList = H.setRuntimeTypeInfo([], type$.JSArray_FocusNode); current = this._pickNext$1(t1); sortedList.push(current.node); C.JSArray_methods.remove$1(t1, current); for (; t1.length !== 0;) { next = this._pickNext$1(t1); sortedList.push(next.node); C.JSArray_methods.remove$1(t1, next); } return sortedList; } }; U.ReadingOrderTraversalPolicy__pickNext_closure.prototype = { call$2: function(a, b) { return J.compareTo$1$ns(a.rect.top, b.rect.top); }, $signature: 468 }; U.ReadingOrderTraversalPolicy__pickNext_inBand.prototype = { call$2: function(current, candidates) { var t1 = current.rect, t2 = H._arrayInstanceType(candidates)._eval$1("WhereIterable<1>"); return P.List_List$of(new H.WhereIterable(candidates, new U.ReadingOrderTraversalPolicy__pickNext_inBand_closure(new P.Rect(-1 / 0, t1.top, 1 / 0, t1.bottom)), t2), true, t2._eval$1("Iterable.E")); }, $signature: 2399 }; U.ReadingOrderTraversalPolicy__pickNext_inBand_closure.prototype = { call$1: function(item) { var t1 = item.rect.intersect$1(this.band); return !t1.get$isEmpty(t1); }, $signature: 2324 }; U.FocusTraversalGroup.prototype = { createState$0: function() { return new U._FocusTraversalGroupState(C._StateLifecycle_0); } }; U._FocusTraversalGroupState.prototype = { initState$0: function() { this.super$State$initState(); this.focusNode = O.FocusNode$(false, "FocusTraversalGroup", true, null, true); }, dispose$0: function(_) { var t1 = this.focusNode; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var _null = null, t1 = this._widget, t2 = t1.policy, t3 = this.focusNode; t3.toString; return new U._FocusTraversalGroupMarker(t2, t3, L.Focus$(false, false, t1.child, _null, true, t3, false, _null, _null, _null, true), _null); } }; U._FocusTraversalGroupMarker.prototype = { updateShouldNotify$1: function(oldWidget) { return false; } }; U.RequestFocusAction.prototype = { invoke$1: function(intent) { U._focusAndEnsureVisible(intent.get$focusNode(intent), C.ScrollPositionAlignmentPolicy_0); } }; U.NextFocusIntent.prototype = {}; U.NextFocusAction.prototype = { invoke$1: function(intent) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, true); } }; U.PreviousFocusIntent.prototype = {}; U.PreviousFocusAction.prototype = { invoke$1: function(intent) { var t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy._moveFocus$2$forward(t1, false); } }; U.DirectionalFocusIntent.prototype = {}; U.DirectionalFocusAction.prototype = { invoke$1: function(intent) { var t1; intent.toString; t1 = $.WidgetsBinding__instance; if (!(t1.WidgetsBinding__buildOwner.focusManager._primaryFocus._context._widget instanceof D.EditableText)) { t1 = t1.WidgetsBinding__buildOwner.focusManager._primaryFocus; t1._context.dependOnInheritedWidgetOfExactType$1$0(type$._FocusTraversalGroupMarker).policy.inDirection$2(t1, intent.direction); } } }; U._FocusTraversalPolicy_Object_Diagnosticable.prototype = {}; U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin.prototype = { changedScope$2$node$oldScope: function(node, oldScope) { var t1; this.super$FocusTraversalPolicy$changedScope(node, oldScope); t1 = this.DirectionalFocusTraversalPolicyMixin__policyData.$index(0, oldScope); if (t1 != null) { t1 = t1.history; if (!!t1.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(t1, new U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure(node), true); } } }; U.__ReadingOrderDirectionalGroupData_Object_Diagnosticable.prototype = {}; U.__ReadingOrderSortData_Object_Diagnosticable.prototype = {}; A.Form.prototype = { createState$0: function() { return new A.FormState(P.LinkedHashSet_LinkedHashSet$_empty(type$.FormFieldState_dynamic), C._StateLifecycle_0); } }; A.FormState.prototype = { _fieldDidChange$0: function() { var _this = this; _this._widget.toString; _this._hasInteractedByUser = _this._fields.any$1(0, new A.FormState__fieldDidChange_closure()); _this._forceRebuild$0(); }, _forceRebuild$0: function() { this.setState$1(new A.FormState__forceRebuild_closure(this)); }, build$1: function(_, context) { var t1, _this = this; switch (_this._widget.autovalidateMode) { case C.AutovalidateMode_1: _this._validate$0(); break; case C.AutovalidateMode_2: if (_this._hasInteractedByUser) _this._validate$0(); break; case C.AutovalidateMode_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this._widget; return new F.WillPopScope(new A._FormScope(_this, _this._generation, t1.child, null), null, null); }, save$0: function(_) { var t1, t2, t3; for (t1 = this._fields, t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) { t2 = t1._collection$_current; t3 = t2.get$widget().onSaved; if (t3 != null) t3.call$1(t2._form$_value); } }, validate$0: function() { this._hasInteractedByUser = true; this._forceRebuild$0(); return this._validate$0(); }, _validate$0: function() { var t1, hasError; for (t1 = this._fields, t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1), hasError = false; t1.moveNext$0();) hasError = !t1._collection$_current.validate$0() || hasError; return !hasError; } }; A.FormState__fieldDidChange_closure.prototype = { call$1: function(field) { return field._hasInteractedByUser; }, $signature: 2320 }; A.FormState__forceRebuild_closure.prototype = { call$0: function() { ++this.$this._generation; }, $signature: 0 }; A._FormScope.prototype = { updateShouldNotify$1: function(old) { return this._generation !== old._generation; } }; A.FormField.prototype = { createState$0: function() { return new A.FormFieldState(C._StateLifecycle_0, H._instanceType(this)._eval$1("FormFieldState")); } }; A.FormFieldState.prototype = { get$value: function(_) { return this._form$_value; }, validate$0: function() { this.setState$1(new A.FormFieldState_validate_closure(this)); return this._errorText == null; }, _validate$0: function() { var _this = this; if (_this.get$widget().validator != null) _this._errorText = _this.get$widget().validator.call$1(_this._form$_value); }, didChange$1: function(value) { var t1; this.setState$1(new A.FormFieldState_didChange_closure(this, value)); t1 = this._framework$_element; t1.toString; t1 = A.Form_of(t1); if (t1 != null) t1._fieldDidChange$0(); }, initState$0: function() { this.super$State$initState(); this._form$_value = this.get$widget().initialValue; }, deactivate$0: function() { var t1 = this._framework$_element; t1.toString; t1 = A.Form_of(t1); if (t1 != null) t1._fields.remove$1(0, this); this.super$State$deactivate(); }, build$1: function(_, context) { var t1, _this = this; if (_this.get$widget().enabled) switch (_this.get$widget().autovalidateMode) { case C.AutovalidateMode_1: _this._validate$0(); break; case C.AutovalidateMode_2: if (_this._hasInteractedByUser) _this._validate$0(); break; case C.AutovalidateMode_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = A.Form_of(context); if (t1 != null) t1._fields.add$1(0, _this); return _this.get$widget().builder.call$1(_this); } }; A.FormFieldState_validate_closure.prototype = { call$0: function() { this.$this._validate$0(); }, $signature: 0 }; A.FormFieldState_didChange_closure.prototype = { call$0: function() { var t1 = this.$this; t1._form$_value = this.value; t1._hasInteractedByUser = true; }, $signature: 0 }; A.AutovalidateMode.prototype = { toString$0: function(_) { return this._form$_name; } }; N.UniqueKey.prototype = { toString$0: function(_) { return "[#" + Y.shortHash(this) + "]"; } }; N.ObjectKey.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof N.ObjectKey && other.value == this.value; }, get$hashCode: function(_) { return P.hashValues(H.getRuntimeType(this), H.objectHashCode(this.value), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _s16_ = "#"; if (H.getRuntimeType(this) === C.Type_ObjectKey_Gsr) return "[" + (_s16_ + Y.shortHash(this.value)) + "]"; return "[ObjectKey " + (_s16_ + Y.shortHash(this.value)) + "]"; }, get$value: function(receiver) { return this.value; } }; N.GlobalKey.prototype = { get$currentState: function() { var state, element = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this); if (element instanceof N.StatefulElement) { state = element.state; if (H._instanceType(this)._eval$1("GlobalKey.T")._is(state)) return state; } return null; } }; N.LabeledGlobalKey.prototype = { toString$0: function(_) { var _this = this, t1 = _this._debugLabel, label = t1 != null ? " " + t1 : ""; if (H.getRuntimeType(_this) === C.Type_LabeledGlobalKey_6TW) return "[GlobalKey#" + Y.shortHash(_this) + label + "]"; return "[" + ("#" + Y.shortHash(_this)) + label + "]"; } }; N.GlobalObjectKey.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return H._instanceType(this)._eval$1("GlobalObjectKey")._is(other) && other.value == this.value; }, get$hashCode: function(_) { return H.objectHashCode(this.value); }, toString$0: function(_) { var _s15_ = "GlobalObjectKey"; return "[" + (C.JSString_methods.endsWith$1(_s15_, ">") ? C.JSString_methods.substring$2(_s15_, 0, -8) : _s15_) + " " + ("#" + Y.shortHash(this.value)) + "]"; }, get$value: function(receiver) { return this.value; } }; N.Widget.prototype = { toStringShort$0: function() { var t1 = this.key; return t1 == null ? "Widget" : "Widget-" + t1.toString$0(0); }, $eq: function(_, other) { if (other == null) return false; return this.super$Object$$eq(0, other); }, get$hashCode: function(_) { return P.Object.prototype.get$hashCode.call(this, this); } }; N.StatelessWidget.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.StatelessElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); } }; N.StatefulWidget.prototype = { createElement$0: function(_) { return N.StatefulElement$(this); } }; N._StateLifecycle.prototype = { toString$0: function(_) { return this._framework$_name; } }; N.State.prototype = { get$widget: function() { var t1 = this._widget; t1.toString; return t1; }, initState$0: function() { }, didUpdateWidget$1: function(oldWidget) { }, setState$1: function(fn) { fn.call$0(); this._framework$_element.markNeedsBuild$0(); }, deactivate$0: function() { }, dispose$0: function(_) { }, didChangeDependencies$0: function() { } }; N.ProxyWidget.prototype = { get$child: function() { return this.child; } }; N.ParentDataWidget.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.ParentDataElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2), H._instanceType(this)._eval$1("ParentDataElement")); } }; N.InheritedWidget.prototype = { createElement$0: function(_) { return N.InheritedElement$(this); } }; N.RenderObjectWidget.prototype = { updateRenderObject$2: function(context, renderObject) { }, didUnmountRenderObject$1: function(renderObject) { } }; N.LeafRenderObjectWidget.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N.LeafRenderObjectElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); } }; N.SingleChildRenderObjectWidget.prototype = { createElement$0: function(_) { return N.SingleChildRenderObjectElement$(this); } }; N.MultiChildRenderObjectWidget.prototype = { createElement$0: function(_) { return N.MultiChildRenderObjectElement$(this); } }; N._ElementLifecycle.prototype = { toString$0: function(_) { return this._framework$_name; } }; N._InactiveElements.prototype = { _unmount$1: function(element) { element.visitChildren$1(new N._InactiveElements__unmount_closure(this, element)); element.unmount$0(); }, _unmountAll$0: function() { var elements, t1, elements0, _this = this; _this._locked = true; t1 = _this._framework$_elements; elements0 = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")); C.JSArray_methods.sort$1(elements0, N.framework_Element__sort$closure()); elements = elements0; t1.clear$0(0); try { t1 = elements; new H.ReversedListIterable(t1, H.instanceType(t1)._eval$1("ReversedListIterable<1>")).forEach$1(0, _this.get$_unmount()); } finally { _this._locked = false; } }, add$1: function(_, element) { if (element._lifecycleState === C._ElementLifecycle_1) { element.deactivate$0(); element.visitChildren$1(N.framework__InactiveElements__deactivateRecursively$closure()); } this._framework$_elements.add$1(0, element); } }; N._InactiveElements__unmount_closure.prototype = { call$1: function(child) { this.$this._unmount$1(child); }, $signature: 87 }; N.BuildOwner.prototype = { scheduleBuildFor$1: function(element) { var _this = this; if (element._inDirtyList) { _this._dirtyElementsNeedsResorting = true; return; } if (!_this._scheduledFlushDirtyElements && _this.onBuildScheduled != null) { _this._scheduledFlushDirtyElements = true; _this.onBuildScheduled.call$0(); } _this._dirtyElements.push(element); element._inDirtyList = true; }, lockState$1: function(callback) { try { callback.call$0(); } finally { } }, buildScope$2: function(context, callback) { var e, stack, element, t2, exception, t3, t4, _i, _this = this, _box_0 = {}, t1 = callback == null; if (t1 && _this._dirtyElements.length === 0) return; P.Timeline_startSync("Build", C.Map_9aZ6I, null); try { _this._scheduledFlushDirtyElements = true; if (!t1) { _box_0.debugPreviousBuildTarget = null; _this._dirtyElementsNeedsResorting = false; try { callback.call$0(); } finally { } } t1 = _this._dirtyElements; C.JSArray_methods.sort$1(t1, N.framework_Element__sort$closure()); _this._dirtyElementsNeedsResorting = false; _box_0.dirtyCount = t1.length; _box_0.index = 0; for (t2 = 0; t2 < _box_0.dirtyCount;) { try { t1[t2].rebuild$0(); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); t2 = U.ErrorDescription$("while rebuilding dirty elements"); t3 = $.FlutterError_onError; if (t3 != null) t3.call$1(new U.FlutterErrorDetails(e, stack, "widgets library", t2, new N.BuildOwner_buildScope_closure(_box_0, _this), false)); } t2 = ++_box_0.index; t3 = _box_0.dirtyCount; t4 = t1.length; if (t3 >= t4) { t3 = _this._dirtyElementsNeedsResorting; t3.toString; } else t3 = true; if (t3) { if (!!t1.immutable$list) H.throwExpression(P.UnsupportedError$("sort")); t2 = t4 - 1; if (t2 - 0 <= 32) H.Sort__insertionSort(t1, 0, t2, N.framework_Element__sort$closure()); else H.Sort__dualPivotQuicksort(t1, 0, t2, N.framework_Element__sort$closure()); t2 = _this._dirtyElementsNeedsResorting = false; _box_0.dirtyCount = t1.length; while (true) { t3 = _box_0.index; if (!(t3 > 0 ? t1[t3 - 1]._dirty : t2)) break; _box_0.index = t3 - 1; } t2 = t3; } } } finally { for (t1 = _this._dirtyElements, t2 = t1.length, _i = 0; _i < t2; ++_i) { element = t1[_i]; element._inDirtyList = false; } C.JSArray_methods.set$length(t1, 0); _this._scheduledFlushDirtyElements = false; _this._dirtyElementsNeedsResorting = null; P.Timeline_finishSync(); } }, buildScope$1: function(context) { return this.buildScope$2(context, null); }, finalizeTree$0: function() { var e, stack, exception; P.Timeline_startSync("Finalize tree", C.Map_9aZ6I, null); try { this.lockState$1(new N.BuildOwner_finalizeTree_closure(this)); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); N._debugReportException(U.ErrorSummary$("while finalizing the widget tree"), e, stack, null); } finally { P.Timeline_finishSync(); } } }; N.BuildOwner_buildScope_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, t3; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._box_0; t2 = t1.index; t3 = $async$self.$this._dirtyElements; $async$goto = t2 < t3.length ? 2 : 4; break; case 2: // then $async$goto = 5; return K.DiagnosticsDebugCreator$(new N.DebugCreator(t3[t2])); case 5: // after yield t2 = t1.index; t3 = t3[t2]; $async$goto = 6; return Y.DiagnosticsProperty$(string$.The_el + t2 + " of " + t1.dirtyCount, t3, true, C.C__NoDefaultValue, null, false, null, null, C.DiagnosticLevel_3, null, false, true, true, C.DiagnosticsTreeStyle_9, null, type$.Element_2); case 6: // after yield // goto join $async$goto = 3; break; case 4: // else $async$goto = 7; return U.ErrorHint$(string$.The_el + t2 + " of " + t1.dirtyCount + ", but _dirtyElements only had " + t3.length + " entries. This suggests some confusion in the framework internals."); case 7: // after yield case 3: // join // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; N.BuildOwner_finalizeTree_closure.prototype = { call$0: function() { this.$this._inactiveElements._unmountAll$0(); }, $signature: 0 }; N.Element0.prototype = { $eq: function(_, other) { if (other == null) return false; return this === other; }, get$hashCode: function(_) { return this._cachedHash; }, get$_depth: function() { var t1 = this.__Element__depth; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_depth")) : t1; }, get$widget: function() { return this._widget; }, get$renderObject: function() { var t1 = {}; t1.result = null; new N.Element_renderObject_visit(t1).call$1(this); return t1.result; }, describeElement$1: function($name) { var _null = null; return Y.DiagnosticsProperty$($name, this, true, C.C__NoDefaultValue, _null, false, _null, _null, C.DiagnosticLevel_3, _null, false, true, true, C.DiagnosticsTreeStyle_9, _null, type$.Element_2); }, visitChildren$1: function(visitor) { }, updateChild$3: function(child, newWidget, newSlot) { var t1, newChild, _this = this; if (newWidget == null) { if (child != null) _this.deactivateChild$1(child); return null; } if (child != null) { t1 = J.$eq$(child.get$widget(), newWidget); if (t1) { if (!J.$eq$(child._slot, newSlot)) _this.updateSlotForChild$2(child, newSlot); t1 = child; } else { t1 = child.get$widget(); t1 = J.get$runtimeType$(t1) === newWidget.get$runtimeType(newWidget) && J.$eq$(t1.key, newWidget.key); if (t1) { if (!J.$eq$(child._slot, newSlot)) _this.updateSlotForChild$2(child, newSlot); child.update$1(0, newWidget); t1 = child; } else { _this.deactivateChild$1(child); newChild = _this.inflateWidget$2(newWidget, newSlot); t1 = newChild; } } } else { newChild = _this.inflateWidget$2(newWidget, newSlot); t1 = newChild; } return t1; }, mount$2: function($parent, newSlot) { var t1, key, _this = this; _this._framework$_parent = $parent; _this._slot = newSlot; _this._lifecycleState = C._ElementLifecycle_1; t1 = $parent != null; _this.__Element__depth = t1 ? $parent.get$_depth() + 1 : 1; if (t1) _this._owner = $parent._owner; key = _this.get$widget().key; if (key instanceof N.GlobalKey) _this._owner._globalKeyRegistry.$indexSet(0, key, _this); _this._updateInheritance$0(); }, update$1: function(_, newWidget) { this._widget = newWidget; }, updateSlotForChild$2: function(child, newSlot) { new N.Element_updateSlotForChild_visit(newSlot).call$1(child); }, _updateSlot$1: function(newSlot) { this._slot = newSlot; }, _updateDepth$1: function(parentDepth) { var expectedDepth = parentDepth + 1; if (this.get$_depth() < expectedDepth) { this.__Element__depth = expectedDepth; this.visitChildren$1(new N.Element__updateDepth_closure(expectedDepth)); } }, detachRenderObject$0: function() { this.visitChildren$1(new N.Element_detachRenderObject_closure()); this._slot = null; }, attachRenderObject$1: function(newSlot) { this.visitChildren$1(new N.Element_attachRenderObject_closure(newSlot)); this._slot = newSlot; }, _retakeInactiveElement$2: function(key, newWidget) { var t1, $parent, element = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key); if (element == null) return null; t1 = element.get$widget(); if (!(J.get$runtimeType$(t1) === newWidget.get$runtimeType(newWidget) && J.$eq$(t1.key, newWidget.key))) return null; $parent = element._framework$_parent; if ($parent != null) { $parent.forgetChild$1(element); $parent.deactivateChild$1(element); } this._owner._inactiveElements._framework$_elements.remove$1(0, element); return element; }, inflateWidget$2: function(newWidget, newSlot) { var newChild, updatedChild, _this = this, key = newWidget.key; if (key instanceof N.GlobalKey) { newChild = _this._retakeInactiveElement$2(key, newWidget); if (newChild != null) { newChild._framework$_parent = _this; newChild._updateDepth$1(_this.get$_depth()); newChild.activate$0(); newChild.visitChildren$1(N.framework_Element__activateRecursively$closure()); newChild.attachRenderObject$1(newSlot); updatedChild = _this.updateChild$3(newChild, newWidget, newSlot); updatedChild.toString; return updatedChild; } } newChild = newWidget.createElement$0(0); newChild.mount$2(_this, newSlot); return newChild; }, deactivateChild$1: function(child) { child._framework$_parent = null; child.detachRenderObject$0(); this._owner._inactiveElements.add$1(0, child); }, forgetChild$1: function(child) { }, activate$0: function() { var _this = this, t1 = _this._dependencies, t2 = t1 == null, hadDependencies = !t2 && t1._collection$_length !== 0 || _this._hadUnsatisfiedDependencies; _this._lifecycleState = C._ElementLifecycle_1; if (!t2) t1.clear$0(0); _this._hadUnsatisfiedDependencies = false; _this._updateInheritance$0(); if (_this._dirty) _this._owner.scheduleBuildFor$1(_this); if (hadDependencies) _this.didChangeDependencies$0(); }, deactivate$0: function() { var _this = this, t1 = _this._dependencies; if (t1 != null && t1._collection$_length !== 0) for (t1 = new P._HashSetIterator(t1, t1._computeElements$0(), H._instanceType(t1)._eval$1("_HashSetIterator<1>")); t1.moveNext$0();) t1._collection$_current._dependents.remove$1(0, _this); _this._inheritedWidgets = null; _this._lifecycleState = C._ElementLifecycle_2; }, unmount$0: function() { var t1, _this = this, key = _this._widget.key; if (key instanceof N.GlobalKey) { t1 = _this._owner._globalKeyRegistry; if (J.$eq$(t1.$index(0, key), _this)) t1.remove$1(0, key); } _this._lifecycleState = C._ElementLifecycle_3; }, get$size: function(_) { var t1, renderObject = this.get$renderObject(); if (renderObject instanceof S.RenderBox) { t1 = renderObject._box$_size; t1.toString; return t1; } return null; }, dependOnInheritedElement$2$aspect: function(ancestor, aspect) { var t1 = this._dependencies; (t1 == null ? this._dependencies = P.HashSet_HashSet(type$.InheritedElement) : t1).add$1(0, ancestor); ancestor._dependents.$indexSet(0, this, null); return ancestor.get$widget(); }, dependOnInheritedWidgetOfExactType$1$0: function($T) { var t1 = this._inheritedWidgets, ancestor = t1 == null ? null : t1.$index(0, H.createRuntimeType($T)); if (ancestor != null) return $T._as(this.dependOnInheritedElement$2$aspect(ancestor, null)); this._hadUnsatisfiedDependencies = true; return null; }, getElementForInheritedWidgetOfExactType$1$0: function($T) { var t1 = this._inheritedWidgets; return t1 == null ? null : t1.$index(0, H.createRuntimeType($T)); }, _updateInheritance$0: function() { var t1 = this._framework$_parent; this._inheritedWidgets = t1 == null ? null : t1._inheritedWidgets; }, findAncestorWidgetOfExactType$1$0: function($T) { var t1, ancestor = this._framework$_parent; while (true) { t1 = ancestor == null; if (!(!t1 && J.get$runtimeType$(ancestor.get$widget()) !== H.createRuntimeType($T))) break; ancestor = ancestor._framework$_parent; } t1 = t1 ? null : ancestor.get$widget(); return $T._eval$1("0?")._as(t1); }, findAncestorStateOfType$1$0: function($T) { var t1, ancestor = this._framework$_parent; for (; t1 = ancestor == null, !t1;) { if (ancestor instanceof N.StatefulElement && $T._is(ancestor.state)) break; ancestor = ancestor._framework$_parent; } type$.nullable_StatefulElement._as(ancestor); t1 = t1 ? null : ancestor.state; return $T._eval$1("0?")._as(t1); }, findRootAncestorStateOfType$1$0: function($T) { var statefulAncestor, t1, ancestor = this._framework$_parent; for (statefulAncestor = null; ancestor != null;) { if (ancestor instanceof N.StatefulElement && $T._is(ancestor.state)) statefulAncestor = ancestor; ancestor = ancestor._framework$_parent; } t1 = statefulAncestor == null ? null : statefulAncestor.state; return $T._eval$1("0?")._as(t1); }, findAncestorRenderObjectOfType$1$0: function($T) { var ancestor = this._framework$_parent; for (; ancestor != null;) { if (ancestor instanceof N.RenderObjectElement && $T._is(ancestor.get$renderObject())) return $T._as(ancestor.get$renderObject()); ancestor = ancestor._framework$_parent; } return null; }, visitAncestorElements$1: function(visitor) { var ancestor = this._framework$_parent; while (true) { if (!(ancestor != null && visitor.call$1(ancestor))) break; ancestor = ancestor._framework$_parent; } }, didChangeDependencies$0: function() { this.markNeedsBuild$0(); }, debugGetCreatorChain$1: function(limit) { var chain = H.setRuntimeTypeInfo([], type$.JSArray_String), node = this; while (true) { if (!(chain.length < limit && node != null)) break; chain.push(node.get$widget().toStringShort$0()); node = node._framework$_parent; } if (node != null) chain.push("\u22ef"); return C.JSArray_methods.join$1(chain, " \u2190 "); }, toStringShort$0: function() { return this.get$widget().toStringShort$0(); }, toDiagnosticsNode$2$name$style: function($name, style) { return N._ElementDiagnosticableTreeNode$($name, false, style, this); }, toDiagnosticsNode$0: function() { return this.toDiagnosticsNode$2$name$style(null, null); }, debugDescribeChildren$0: function() { var children = H.setRuntimeTypeInfo([], type$.JSArray_DiagnosticsNode); this.visitChildren$1(new N.Element_debugDescribeChildren_closure(children)); return children; }, markNeedsBuild$0: function() { var _this = this; if (_this._lifecycleState !== C._ElementLifecycle_1) return; if (_this._dirty) return; _this._dirty = true; _this._owner.scheduleBuildFor$1(_this); }, rebuild$0: function() { if (this._lifecycleState !== C._ElementLifecycle_1 || !this._dirty) return; this.performRebuild$0(); }, $isBuildContext: 1 }; N.Element_renderObject_visit.prototype = { call$1: function(element) { if (element instanceof N.RenderObjectElement) this._box_0.result = element.get$renderObject(); else element.visitChildren$1(this); }, $signature: 87 }; N.Element_updateSlotForChild_visit.prototype = { call$1: function(element) { element._updateSlot$1(this.newSlot); if (!(element instanceof N.RenderObjectElement)) element.visitChildren$1(this); }, $signature: 87 }; N.Element__updateDepth_closure.prototype = { call$1: function(child) { child._updateDepth$1(this.expectedDepth); }, $signature: 87 }; N.Element_detachRenderObject_closure.prototype = { call$1: function(child) { child.detachRenderObject$0(); }, $signature: 87 }; N.Element_attachRenderObject_closure.prototype = { call$1: function(child) { child.attachRenderObject$1(this.newSlot); }, $signature: 87 }; N.Element_debugDescribeChildren_closure.prototype = { call$1: function(child) { this.children.push(child.toDiagnosticsNode$0()); }, $signature: 87 }; N._ElementDiagnosticableTreeNode.prototype = {}; N.ErrorWidget.prototype = { createRenderObject$1: function(context) { var t1 = this.message, t2 = new V.RenderErrorBox(t1); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.RenderErrorBox$1(t1); return t2; } }; N.ComponentElement.prototype = { mount$2: function($parent, newSlot) { this.super$Element$mount($parent, newSlot); this._firstBuild$0(); }, _firstBuild$0: function() { this.rebuild$0(); }, performRebuild$0: function() { var built, e, stack, e0, stack0, exception, built0, _this = this, t1 = $.debugProfileBuildsEnabled; if (t1) P.Timeline_startSync(J.get$runtimeType$(_this.get$widget()).toString$0(0), C.Map_9aZ6I, null); built = null; try { built = _this.build$0(0); _this.get$widget(); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); built0 = N.ErrorWidget__defaultErrorWidgetBuilder(N._debugReportException(U.ErrorDescription$("building " + _this.toString$0(0)), e, stack, new N.ComponentElement_performRebuild_closure(_this))); built = built0; } finally { _this._dirty = false; } try { _this._framework$_child = _this.updateChild$3(_this._framework$_child, built, _this._slot); } catch (exception) { e0 = H.unwrapException(exception); stack0 = H.getTraceFromException(exception); built0 = N.ErrorWidget__defaultErrorWidgetBuilder(N._debugReportException(U.ErrorDescription$("building " + _this.toString$0(0)), e0, stack0, new N.ComponentElement_performRebuild_closure0(_this))); built = built0; _this._framework$_child = _this.updateChild$3(null, built, _this._slot); } t1 = $.debugProfileBuildsEnabled; if (t1) P.Timeline_finishSync(); }, visitChildren$1: function(visitor) { var t1 = this._framework$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1: function(child) { this._framework$_child = null; this.super$Element$forgetChild(child); } }; N.ComponentElement_performRebuild_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return K.DiagnosticsDebugCreator$(new N.DebugCreator($async$self.$this)); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; N.ComponentElement_performRebuild_closure0.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return K.DiagnosticsDebugCreator$(new N.DebugCreator($async$self.$this)); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; N.StatelessElement.prototype = { get$widget: function() { return type$.StatelessWidget._as(N.Element0.prototype.get$widget.call(this)); }, build$0: function(_) { return type$.StatelessWidget._as(N.Element0.prototype.get$widget.call(this)).build$1(0, this); }, update$1: function(_, newWidget) { this.super$Element$update(0, newWidget); this._dirty = true; this.rebuild$0(); } }; N.StatefulElement.prototype = { build$0: function(_) { return this.state.build$1(0, this); }, _firstBuild$0: function() { var debugCheckForReturnedFuture, _this = this; try { _this._debugAllowIgnoredCallsToMarkNeedsBuild = true; debugCheckForReturnedFuture = _this.state.initState$0(); } finally { _this._debugAllowIgnoredCallsToMarkNeedsBuild = false; } _this.state.didChangeDependencies$0(); _this.super$ComponentElement$_firstBuild(); }, performRebuild$0: function() { var _this = this; if (_this._didChangeDependencies) { _this.state.didChangeDependencies$0(); _this._didChangeDependencies = false; } _this.super$ComponentElement$performRebuild(); }, update$1: function(_, newWidget) { var oldWidget, debugCheckForReturnedFuture, t1, t2, _this = this; _this.super$Element$update(0, newWidget); t1 = _this.state; t2 = t1._widget; t2.toString; oldWidget = t2; _this._dirty = true; t1._widget = type$.StatefulWidget._as(_this._widget); try { _this._debugAllowIgnoredCallsToMarkNeedsBuild = true; debugCheckForReturnedFuture = t1.didUpdateWidget$1(oldWidget); } finally { _this._debugAllowIgnoredCallsToMarkNeedsBuild = false; } _this.rebuild$0(); }, activate$0: function() { this.super$Element$activate(); this.markNeedsBuild$0(); }, deactivate$0: function() { this.state.deactivate$0(); this.super$Element$deactivate(); }, unmount$0: function() { this.super$Element$unmount(); var t1 = this.state; t1.dispose$0(0); t1._framework$_element = null; }, dependOnInheritedElement$2$aspect: function(ancestor, aspect) { return this.super$Element$dependOnInheritedElement(ancestor, aspect); }, didChangeDependencies$0: function() { this.super$Element$didChangeDependencies(); this._didChangeDependencies = true; }, toDiagnosticsNode$2$name$style: function($name, style) { return N._ElementDiagnosticableTreeNode$($name, true, style, this); }, toDiagnosticsNode$0: function() { return this.toDiagnosticsNode$2$name$style(null, null); } }; N.ProxyElement.prototype = { get$widget: function() { return type$.ProxyWidget._as(N.Element0.prototype.get$widget.call(this)); }, build$0: function(_) { return this.get$widget().get$child(); }, update$1: function(_, newWidget) { var _this = this, oldWidget = _this.get$widget(); _this.super$Element$update(0, newWidget); _this.updated$1(oldWidget); _this._dirty = true; _this.rebuild$0(); }, updated$1: function(oldWidget) { this.notifyClients$1(oldWidget); } }; N.ParentDataElement.prototype = { get$widget: function() { return this.$ti._eval$1("ParentDataWidget<1>")._as(N.ProxyElement.prototype.get$widget.call(this)); }, _applyParentData$1: function(widget) { this.visitChildren$1(new N.ParentDataElement__applyParentData_applyParentDataToChild(widget)); }, notifyClients$1: function(oldWidget) { this._applyParentData$1(this.$ti._eval$1("ParentDataWidget<1>")._as(N.ProxyElement.prototype.get$widget.call(this))); } }; N.ParentDataElement__applyParentData_applyParentDataToChild.prototype = { call$1: function(child) { if (child instanceof N.RenderObjectElement) this.widget.applyParentData$1(child.get$renderObject()); else child.visitChildren$1(this); }, $signature: 87 }; N.InheritedElement.prototype = { get$widget: function() { return type$.InheritedWidget._as(N.ProxyElement.prototype.get$widget.call(this)); }, _updateInheritance$0: function() { var t2, _this = this, _null = null, t1 = _this._framework$_parent, incomingWidgets = t1 == null ? _null : t1._inheritedWidgets; t1 = type$.Type; t2 = type$.InheritedElement; t1 = incomingWidgets != null ? _this._inheritedWidgets = P.HashMap_HashMap$from(incomingWidgets, t1, t2) : _this._inheritedWidgets = P.HashMap_HashMap(_null, _null, _null, t1, t2); t1.$indexSet(0, J.get$runtimeType$(_this.get$widget()), _this); }, updated$1: function(oldWidget) { if (this.get$widget().updateShouldNotify$1(oldWidget)) this.super$ProxyElement$updated(oldWidget); }, notifyClients$1: function(oldWidget) { var t1; for (t1 = this._dependents, t1 = new P._HashMapKeyIterable(t1, H._instanceType(t1)._eval$1("_HashMapKeyIterable<1>")), t1 = t1.get$iterator(t1); t1.moveNext$0();) t1._collection$_current.didChangeDependencies$0(); } }; N.RenderObjectElement.prototype = { get$widget: function() { return type$.RenderObjectWidget._as(N.Element0.prototype.get$widget.call(this)); }, get$renderObject: function() { var t1 = this._renderObject; t1.toString; return t1; }, _findAncestorRenderObjectElement$0: function() { var ancestor = this._framework$_parent; while (true) { if (!(ancestor != null && !(ancestor instanceof N.RenderObjectElement))) break; ancestor = ancestor._framework$_parent; } return type$.nullable_RenderObjectElement._as(ancestor); }, _findAncestorParentDataElement$0: function() { var ancestor, _box_0 = {}, t1 = _box_0.ancestor = this._framework$_parent; _box_0.result = null; while (true) { if (!(t1 != null && !(t1 instanceof N.RenderObjectElement))) break; if (t1 instanceof N.ParentDataElement) { _box_0.result = t1; break; } ancestor = t1._framework$_parent; _box_0.ancestor = ancestor; t1 = ancestor; } return _box_0.result; }, mount$2: function($parent, newSlot) { var _this = this; _this.super$Element$mount($parent, newSlot); _this._renderObject = _this.get$widget().createRenderObject$1(_this); _this.attachRenderObject$1(newSlot); _this._dirty = false; }, update$1: function(_, newWidget) { var _this = this; _this.super$Element$update(0, newWidget); _this.get$widget().updateRenderObject$2(_this, _this.get$renderObject()); _this._dirty = false; }, performRebuild$0: function() { var _this = this; _this.get$widget().updateRenderObject$2(_this, _this.get$renderObject()); _this._dirty = false; }, updateChildren$4$forgottenChildren$slots: function(oldChildren, newWidgets, forgottenChildren, slots) { var oldChild, newWidget, t4, haveOldChildren, oldKeyedChildren, key, _this = this, _null = null, replaceWithNullIfForgotten = new N.RenderObjectElement_updateChildren_replaceWithNullIfForgotten(forgottenChildren), slotFor = new N.RenderObjectElement_updateChildren_slotFor(slots), t1 = J.getInterceptor$asx(newWidgets), newChildrenBottom = t1.get$length(newWidgets) - 1, t2 = J.getInterceptor$asx(oldChildren), oldChildrenBottom = t2.get$length(oldChildren) - 1, newChildren = t2.get$length(oldChildren) == t1.get$length(newWidgets) ? oldChildren : P.List_List$filled(t1.get$length(newWidgets), $.$get$_NullElement_instance(), false, type$.Element_2), t3 = J.getInterceptor$ax(newChildren), previousChild = _null, newChildrenTop = 0, oldChildrenTop = 0; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenTop)); newWidget = t1.$index(newWidgets, newChildrenTop); if (oldChild != null) { t4 = oldChild.get$widget(); t4 = !(J.get$runtimeType$(t4) === J.get$runtimeType$(newWidget) && J.$eq$(t4.key, newWidget.key)); } else t4 = true; if (t4) break; t4 = _this.updateChild$3(oldChild, newWidget, slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; ++oldChildrenTop; previousChild = t4; } while (true) { haveOldChildren = oldChildrenTop <= oldChildrenBottom; if (!(haveOldChildren && newChildrenTop <= newChildrenBottom)) break; oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenBottom)); newWidget = t1.$index(newWidgets, newChildrenBottom); if (oldChild != null) { t4 = oldChild.get$widget(); t4 = !(J.get$runtimeType$(t4) === J.get$runtimeType$(newWidget) && J.$eq$(t4.key, newWidget.key)); } else t4 = true; if (t4) break; --oldChildrenBottom; --newChildrenBottom; } if (haveOldChildren) { oldKeyedChildren = P.LinkedHashMap_LinkedHashMap$_empty(type$.Key, type$.Element_2); for (; oldChildrenTop <= oldChildrenBottom;) { oldChild = replaceWithNullIfForgotten.call$1(t2.$index(oldChildren, oldChildrenTop)); if (oldChild != null) if (oldChild.get$widget().key != null) { t4 = oldChild.get$widget().key; t4.toString; oldKeyedChildren.$indexSet(0, t4, oldChild); } else { oldChild._framework$_parent = null; oldChild.detachRenderObject$0(); t4 = _this._owner._inactiveElements; if (oldChild._lifecycleState === C._ElementLifecycle_1) { oldChild.deactivate$0(); oldChild.visitChildren$1(N.framework__InactiveElements__deactivateRecursively$closure()); } t4._framework$_elements.add$1(0, oldChild); } ++oldChildrenTop; } haveOldChildren = true; } else oldKeyedChildren = _null; for (; newChildrenTop <= newChildrenBottom; previousChild = t4) { newWidget = t1.$index(newWidgets, newChildrenTop); if (haveOldChildren) { key = newWidget.key; if (key != null) { oldChild = oldKeyedChildren.$index(0, key); if (oldChild != null) { t4 = oldChild.get$widget(); if (J.get$runtimeType$(t4) === newWidget.get$runtimeType(newWidget) && J.$eq$(t4.key, key)) oldKeyedChildren.remove$1(0, key); else oldChild = _null; } } else oldChild = _null; } else oldChild = _null; t4 = _this.updateChild$3(oldChild, newWidget, slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; } newChildrenBottom = t1.get$length(newWidgets) - 1; oldChildrenBottom = t2.get$length(oldChildren) - 1; while (true) { if (!(oldChildrenTop <= oldChildrenBottom && newChildrenTop <= newChildrenBottom)) break; t4 = _this.updateChild$3(t2.$index(oldChildren, oldChildrenTop), t1.$index(newWidgets, newChildrenTop), slotFor.call$2(newChildrenTop, previousChild)); t4.toString; t3.$indexSet(newChildren, newChildrenTop, t4); ++newChildrenTop; ++oldChildrenTop; previousChild = t4; } if (haveOldChildren && oldKeyedChildren.get$isNotEmpty(oldKeyedChildren)) for (t1 = oldKeyedChildren.get$values(oldKeyedChildren), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); if (!forgottenChildren.contains$1(0, t2)) { t2._framework$_parent = null; t2.detachRenderObject$0(); t3 = _this._owner._inactiveElements; if (t2._lifecycleState === C._ElementLifecycle_1) { t2.deactivate$0(); t2.visitChildren$1(N.framework__InactiveElements__deactivateRecursively$closure()); } t3._framework$_elements.add$1(0, t2); } } return newChildren; }, updateChildren$3$forgottenChildren: function(oldChildren, newWidgets, forgottenChildren) { return this.updateChildren$4$forgottenChildren$slots(oldChildren, newWidgets, forgottenChildren, null); }, deactivate$0: function() { this.super$Element$deactivate(); }, unmount$0: function() { this.super$Element$unmount(); this.get$widget().didUnmountRenderObject$1(this.get$renderObject()); }, _updateSlot$1: function(newSlot) { var t1, _this = this, oldSlot = _this._slot; _this.super$Element$_updateSlot(newSlot); t1 = _this._ancestorRenderObjectElement; t1.toString; t1.moveRenderObjectChild$3(_this.get$renderObject(), oldSlot, _this._slot); }, attachRenderObject$1: function(newSlot) { var t1, parentDataElement, _this = this; _this._slot = newSlot; t1 = _this._ancestorRenderObjectElement = _this._findAncestorRenderObjectElement$0(); if (t1 != null) t1.insertRenderObjectChild$2(_this.get$renderObject(), newSlot); parentDataElement = _this._findAncestorParentDataElement$0(); if (parentDataElement != null) parentDataElement.$ti._eval$1("ParentDataWidget<1>")._as(N.ProxyElement.prototype.get$widget.call(parentDataElement)).applyParentData$1(_this.get$renderObject()); }, detachRenderObject$0: function() { var _this = this, t1 = _this._ancestorRenderObjectElement; if (t1 != null) { t1.removeRenderObjectChild$2(_this.get$renderObject(), _this._slot); _this._ancestorRenderObjectElement = null; } _this._slot = null; }, insertRenderObjectChild$2: function(child, slot) { }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { } }; N.RenderObjectElement_updateChildren_replaceWithNullIfForgotten.prototype = { call$1: function(child) { var t1 = this.forgottenChildren.contains$1(0, child); return t1 ? null : child; }, $signature: 2312 }; N.RenderObjectElement_updateChildren_slotFor.prototype = { call$2: function(newChildIndex, previousChild) { var t1 = this.slots; return t1 != null ? t1[newChildIndex] : new N.IndexedSlot(previousChild, newChildIndex, type$.IndexedSlot_nullable_Element); }, $signature: 2308 }; N.RootRenderObjectElement.prototype = { mount$2: function($parent, newSlot) { this.super$RenderObjectElement$mount($parent, newSlot); } }; N.LeafRenderObjectElement.prototype = { forgetChild$1: function(child) { this.super$Element$forgetChild(child); }, insertRenderObjectChild$2: function(child, slot) { }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { }, debugDescribeChildren$0: function() { type$.RenderObjectWidget._as(N.Element0.prototype.get$widget.call(this)).toString; return C.List_empty0; } }; N.SingleChildRenderObjectElement.prototype = { get$widget: function() { return type$.SingleChildRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, visitChildren$1: function(visitor) { var t1 = this._framework$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1: function(child) { this._framework$_child = null; this.super$Element$forgetChild(child); }, mount$2: function($parent, newSlot) { var _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); _this._framework$_child = _this.updateChild$3(_this._framework$_child, _this.get$widget().child, null); }, update$1: function(_, newWidget) { var _this = this; _this.super$RenderObjectElement$update(0, newWidget); _this._framework$_child = _this.updateChild$3(_this._framework$_child, _this.get$widget().child, null); }, insertRenderObjectChild$2: function(child, slot) { var t1 = this._renderObject; t1.toString; type$.RenderObjectWithChildMixin_RenderObject._as(t1).set$child(child); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { var t1 = this._renderObject; t1.toString; type$.RenderObjectWithChildMixin_RenderObject._as(t1).set$child(null); } }; N.MultiChildRenderObjectElement.prototype = { get$widget: function() { return type$.MultiChildRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$.ContainerRenderObjectMixin_of_RenderObject_and_ContainerParentDataMixin_RenderObject._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, get$children: function(_) { return J.where$1$ax(this.get$_framework$_children(this), new N.MultiChildRenderObjectElement_children_closure(this)); }, get$_framework$_children: function(_) { var t1 = this.__MultiChildRenderObjectElement__children; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_children")) : t1; }, insertRenderObjectChild$2: function(child, slot) { var renderObject = this.get$renderObject(), t1 = slot.value; renderObject.insert$2$after(0, child, t1 == null ? null : t1.get$renderObject()); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { var renderObject = this.get$renderObject(), t1 = newSlot.value; renderObject.move$2$after(child, t1 == null ? null : t1.get$renderObject()); }, removeRenderObjectChild$2: function(child, slot) { this.get$renderObject().remove$1(0, child); }, visitChildren$1: function(visitor) { var t1, t2, t3; for (t1 = J.get$iterator$ax(this.get$_framework$_children(this)), t2 = this._forgottenChildren; t1.moveNext$0();) { t3 = t1.get$current(t1); if (!t2.contains$1(0, t3)) visitor.call$1(t3); } }, forgetChild$1: function(child) { this._forgottenChildren.add$1(0, child); this.super$Element$forgetChild(child); }, inflateWidget$2: function(newWidget, newSlot) { return this.super$Element$inflateWidget(newWidget, newSlot); }, mount$2: function($parent, newSlot) { var children, t1, t2, previousChild, i, newChild, _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); children = P.List_List$filled(J.get$length$asx(_this.get$widget().children), $.$get$_NullElement_instance(), false, type$.Element_2); for (t1 = children.length, t2 = type$.IndexedSlot_nullable_Element, previousChild = null, i = 0; i < t1; ++i, previousChild = newChild) { newChild = _this.super$Element$inflateWidget(J.$index$asx(_this.get$widget().children, i), new N.IndexedSlot(previousChild, i, t2)); children[i] = newChild; } _this.__MultiChildRenderObjectElement__children = children; }, update$1: function(_, newWidget) { var t1, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = _this._forgottenChildren; _this.__MultiChildRenderObjectElement__children = _this.updateChildren$3$forgottenChildren(_this.get$_framework$_children(_this), _this.get$widget().children, t1); t1.clear$0(0); } }; N.MultiChildRenderObjectElement_children_closure.prototype = { call$1: function(child) { return !this.$this._forgottenChildren.contains$1(0, child); }, $signature: 119 }; N.DebugCreator.prototype = { toString$0: function(_) { return this.element.debugGetCreatorChain$1(12); } }; N.IndexedSlot.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof N.IndexedSlot && this.index === other.index && J.$eq$(this.value, other.value); }, get$hashCode: function(_) { return P.hashValues(this.index, this.value, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, get$value: function(receiver) { return this.value; } }; N._NullElement.prototype = { performRebuild$0: function() { } }; N._NullWidget.prototype = { createElement$0: function(_) { return H.throwExpression(P.UnimplementedError$(null)); } }; N._State_Object_Diagnosticable.prototype = {}; D.GestureRecognizerFactory.prototype = {}; D.GestureRecognizerFactoryWithHandlers.prototype = { constructor$0: function(_) { return this._constructor.call$0(); }, initializer$1: function(instance) { return this._initializer.call$1(instance); } }; D.GestureDetector.prototype = { build$1: function(_, context) { var t1, _this = this, gestures = P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); if (_this.onTapDown == null) if (_this.onTapUp == null) if (_this.onTap == null) if (_this.onTapCancel == null) t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) gestures.$indexSet(0, C.Type_TapGestureRecognizer_62h, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure(_this), new D.GestureDetector_build_closure0(_this), type$.GestureRecognizerFactoryWithHandlers_TapGestureRecognizer)); if (_this.onDoubleTap != null) gestures.$indexSet(0, C.Type_DoubleTapGestureRecognizer_oyU, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure1(_this), new D.GestureDetector_build_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_DoubleTapGestureRecognizer)); if (_this.onLongPress == null) t1 = false; else t1 = true; if (t1) gestures.$indexSet(0, C.Type_LongPressGestureRecognizer_46y, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure3(_this), new D.GestureDetector_build_closure4(_this), type$.GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer)); t1 = _this.onVerticalDragStart != null || _this.onVerticalDragUpdate != null || _this.onVerticalDragEnd != null || false; if (t1) gestures.$indexSet(0, C.Type_mLh, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure5(_this), new D.GestureDetector_build_closure6(_this), type$.GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer)); if (_this.onHorizontalDragDown != null || _this.onHorizontalDragStart != null || _this.onHorizontalDragUpdate != null || _this.onHorizontalDragEnd != null || _this.onHorizontalDragCancel != null) gestures.$indexSet(0, C.Type_Vq1, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure7(_this), new D.GestureDetector_build_closure8(_this), type$.GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer)); if (_this.onPanDown != null || _this.onPanStart != null || _this.onPanUpdate != null || _this.onPanEnd != null || false) gestures.$indexSet(0, C.Type_PanGestureRecognizer_bbH, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure9(_this), new D.GestureDetector_build_closure10(_this), type$.GestureRecognizerFactoryWithHandlers_PanGestureRecognizer)); if (_this.onScaleStart != null || _this.onScaleUpdate != null || _this.onScaleEnd != null) gestures.$indexSet(0, C.Type_ScaleGestureRecognizer_s8I, new D.GestureRecognizerFactoryWithHandlers(new D.GestureDetector_build_closure11(_this), new D.GestureDetector_build_closure12(_this), type$.GestureRecognizerFactoryWithHandlers_ScaleGestureRecognizer)); return new D.RawGestureDetector(_this.child, gestures, _this.behavior, _this.excludeFromSemantics, null, null); } }; D.GestureDetector_build_closure.prototype = { call$0: function() { return N.TapGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 469 }; D.GestureDetector_build_closure0.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onTapDown = t1.onTapDown; instance.onTapUp = t1.onTapUp; instance.onTap = t1.onTap; instance.onTapCancel = t1.onTapCancel; instance.onTertiaryTapCancel = instance.onTertiaryTapUp = instance.onTertiaryTapDown = instance.onSecondaryTapCancel = instance.onSecondaryTapUp = instance.onSecondaryTapDown = instance.onSecondaryTap = null; }, $signature: 470 }; D.GestureDetector_build_closure1.prototype = { call$0: function() { return F.DoubleTapGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 471 }; D.GestureDetector_build_closure2.prototype = { call$1: function(instance) { instance.onDoubleTapDown = null; instance.onDoubleTap = this.$this.onDoubleTap; instance.onDoubleTapCancel = null; }, $signature: 472 }; D.GestureDetector_build_closure3.prototype = { call$0: function() { return T.LongPressGestureRecognizer$(this.$this, null, null, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 473 }; D.GestureDetector_build_closure4.prototype = { call$1: function(instance) { instance.onLongPress = this.$this.onLongPress; instance.onSecondaryLongPressUp = instance.onSecondaryLongPressEnd = instance.onSecondaryLongPressMoveUpdate = instance.onSecondaryLongPressStart = instance.onSecondaryLongPress = instance.onLongPressUp = instance.onLongPressEnd = instance.onLongPressMoveUpdate = instance.onLongPressStart = null; }, $signature: 474 }; D.GestureDetector_build_closure5.prototype = { call$0: function() { return O.VerticalDragGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 475 }; D.GestureDetector_build_closure6.prototype = { call$1: function(instance) { var t1; instance.onDown = null; t1 = this.$this; instance.onStart = t1.onVerticalDragStart; instance.onUpdate = t1.onVerticalDragUpdate; instance.onEnd = t1.onVerticalDragEnd; instance.onCancel = null; instance.dragStartBehavior = t1.dragStartBehavior; }, $signature: 476 }; D.GestureDetector_build_closure7.prototype = { call$0: function() { return O.HorizontalDragGestureRecognizer$(this.$this, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 452 }; D.GestureDetector_build_closure8.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onDown = t1.onHorizontalDragDown; instance.onStart = t1.onHorizontalDragStart; instance.onUpdate = t1.onHorizontalDragUpdate; instance.onEnd = t1.onHorizontalDragEnd; instance.onCancel = t1.onHorizontalDragCancel; instance.dragStartBehavior = t1.dragStartBehavior; }, $signature: 448 }; D.GestureDetector_build_closure9.prototype = { call$0: function() { var t1 = type$.int; return new O.PanGestureRecognizer(C.DragStartBehavior_1, O.monodrag_DragGestureRecognizer__defaultBuilder$closure(), C._DragState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), this.$this, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2291 }; D.GestureDetector_build_closure10.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onDown = t1.onPanDown; instance.onStart = t1.onPanStart; instance.onUpdate = t1.onPanUpdate; instance.onEnd = t1.onPanEnd; instance.onCancel = null; instance.dragStartBehavior = t1.dragStartBehavior; }, $signature: 2290 }; D.GestureDetector_build_closure11.prototype = { call$0: function() { return B.ScaleGestureRecognizer$(this.$this, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2288 }; D.GestureDetector_build_closure12.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onStart = t1.onScaleStart; instance.onUpdate = t1.onScaleUpdate; instance.onEnd = t1.onScaleEnd; instance.dragStartBehavior = t1.dragStartBehavior; }, $signature: 2287 }; D.RawGestureDetector.prototype = { createState$0: function() { return new D.RawGestureDetectorState(C.Map_empty3, C._StateLifecycle_0); } }; D.RawGestureDetectorState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.semantics; _this._gesture_detector$_semantics = t2 == null ? new D._DefaultSemanticsGestureDelegate(_this) : t2; _this._syncAll$1(t1.gestures); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!(oldWidget.semantics == null && _this._widget.semantics == null)) { t1 = _this._widget.semantics; _this._gesture_detector$_semantics = t1 == null ? new D._DefaultSemanticsGestureDelegate(_this) : t1; } _this._syncAll$1(_this._widget.gestures); }, replaceSemanticsActions$1: function(actions) { if (this._widget.excludeFromSemantics) return; type$.nullable_RenderSemanticsGestureHandler._as(this._framework$_element.get$renderObject()).set$validActions(actions); }, dispose$0: function(_) { var t1; for (t1 = this._recognizers, t1 = J.get$iterator$ax(t1.get$values(t1)); t1.moveNext$0();) t1.get$current(t1).dispose$0(0); this._recognizers = null; this.super$State$dispose(0); }, _syncAll$1: function(gestures) { var t2, t3, t4, t5, _this = this, t1 = _this._recognizers; t1.toString; _this._recognizers = P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizer); for (t2 = J.get$iterator$ax(gestures.get$keys(gestures)); t2.moveNext$0();) { t3 = t2.get$current(t2); t4 = _this._recognizers; t4.toString; t5 = t1.$index(0, t3); t4.$indexSet(0, t3, t5 == null ? gestures.$index(0, t3).constructor$0(0) : t5); t4 = gestures.$index(0, t3); t4.toString; t3 = _this._recognizers.$index(0, t3); t3.toString; t4.initializer$1(t3); } for (t2 = J.get$iterator$ax(t1.get$keys(t1)); t2.moveNext$0();) { t3 = t2.get$current(t2); if (!_this._recognizers.containsKey$1(0, t3)) t1.$index(0, t3).dispose$0(0); } }, _gesture_detector$_handlePointerDown$1: function($event) { var t1, t2; for (t1 = this._recognizers, t1 = J.get$iterator$ax(t1.get$values(t1)); t1.moveNext$0();) { t2 = t1.get$current(t1); t2._pointerToKind.$indexSet(0, $event.get$pointer(), $event.get$kind($event)); if (t2.isPointerAllowed$1($event)) t2.addAllowedPointer$1($event); else t2.handleNonAllowedPointer$1($event); } }, _updateSemanticsForRenderObject$1: function(renderObject) { this._gesture_detector$_semantics.assignSemantics$1(renderObject); }, build$1: function(_, context) { var t4, t5, result, _null = null, t1 = this._widget, t2 = t1.behavior, t3 = t2 == null; if (t3) t4 = t1.child == null ? C.HitTestBehavior_2 : C.HitTestBehavior_0; else t4 = t2; t5 = t1.child; result = T.Listener$(t4, t5, _null, this.get$_gesture_detector$_handlePointerDown(), _null, _null, _null); if (!t1.excludeFromSemantics) { if (t3) t1 = t5 == null ? C.HitTestBehavior_2 : C.HitTestBehavior_0; else t1 = t2; result = new D._GestureSemantics(t1, this.get$_updateSemanticsForRenderObject(), result, _null); } return result; } }; D._GestureSemantics.prototype = { createRenderObject$1: function(context) { var renderObject = new E.RenderSemanticsGestureHandler(C.HitTestBehavior_0, null); renderObject.get$isRepaintBoundary(); renderObject.get$alwaysNeedsCompositing(); renderObject.__RenderObject__needsCompositing = false; renderObject.set$child(null); renderObject.behavior = this.behavior; this.assignSemantics.call$1(renderObject); return renderObject; }, updateRenderObject$2: function(context, renderObject) { renderObject.behavior = this.behavior; this.assignSemantics.call$1(renderObject); } }; D.SemanticsGestureDelegate.prototype = { toString$0: function(_) { return "SemanticsGestureDelegate()"; } }; D._DefaultSemanticsGestureDelegate.prototype = { assignSemantics$1: function(renderObject) { var _this = this, t1 = _this.detectorState._recognizers; t1.toString; renderObject.set$onTap(_this._getTapHandler$1(t1)); renderObject.set$onLongPress(_this._getLongPressHandler$1(t1)); renderObject.set$onHorizontalDragUpdate(_this._getHorizontalDragUpdateHandler$1(t1)); renderObject.set$onVerticalDragUpdate(_this._getVerticalDragUpdateHandler$1(t1)); }, _getTapHandler$1: function(recognizers) { var tap = type$.nullable_TapGestureRecognizer._as(recognizers.$index(0, C.Type_TapGestureRecognizer_62h)); if (tap == null) return null; return new D._DefaultSemanticsGestureDelegate__getTapHandler_closure(tap); }, _getLongPressHandler$1: function(recognizers) { var longPress = type$.nullable_LongPressGestureRecognizer._as(recognizers.$index(0, C.Type_LongPressGestureRecognizer_46y)); if (longPress == null) return null; return new D._DefaultSemanticsGestureDelegate__getLongPressHandler_closure(longPress); }, _getHorizontalDragUpdateHandler$1: function(recognizers) { var horizontal = type$.nullable_HorizontalDragGestureRecognizer._as(recognizers.$index(0, C.Type_Vq1)), pan = type$.nullable_PanGestureRecognizer._as(recognizers.$index(0, C.Type_PanGestureRecognizer_bbH)), horizontalHandler = horizontal == null ? null : new D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure(horizontal), panHandler = pan == null ? null : new D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0(pan); if (horizontalHandler == null && panHandler == null) return null; return new D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1(horizontalHandler, panHandler); }, _getVerticalDragUpdateHandler$1: function(recognizers) { var vertical = type$.nullable_VerticalDragGestureRecognizer._as(recognizers.$index(0, C.Type_mLh)), pan = type$.nullable_PanGestureRecognizer._as(recognizers.$index(0, C.Type_PanGestureRecognizer_bbH)), verticalHandler = vertical == null ? null : new D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure(vertical), panHandler = pan == null ? null : new D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0(pan); if (verticalHandler == null && panHandler == null) return null; return new D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1(verticalHandler, panHandler); } }; D._DefaultSemanticsGestureDelegate__getTapHandler_closure.prototype = { call$0: function() { var t1 = this.tap, t2 = t1.onTapDown; if (t2 != null) t2.call$1(new N.TapDownDetails(C.Offset_0_0, null, C.Offset_0_0)); t2 = t1.onTapUp; if (t2 != null) t2.call$1(new N.TapUpDetails(C.Offset_0_0, C.PointerDeviceKind_4)); t1 = t1.onTap; if (t1 != null) t1.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D._DefaultSemanticsGestureDelegate__getLongPressHandler_closure.prototype = { call$0: function() { var t1 = this.longPress, t2 = t1.onLongPressStart; if (t2 != null) t2.call$1(C.LongPressStartDetails_aWR); t2 = t1.onLongPress; if (t2 != null) t2.call$0(); t1 = t1.onLongPressEnd; if (t1 != null) t1.call$1(C.LongPressEndDetails_aB0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure.prototype = { call$1: function(details) { var t1 = this.horizontal, t2 = t1.onDown; if (t2 != null) t2.call$1(new O.DragDownDetails(C.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new O.DragStartDetails(null, C.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new O.DragEndDetails(C.Velocity_Offset_0_0, 0)); }, $signature: 70 }; D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0.prototype = { call$1: function(details) { var t1 = this.pan, t2 = t1.onDown; if (t2 != null) t2.call$1(new O.DragDownDetails(C.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new O.DragStartDetails(null, C.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new O.DragEndDetails(C.Velocity_Offset_0_0, null)); }, $signature: 70 }; D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1.prototype = { call$1: function(details) { var t1 = this.horizontalHandler; if (t1 != null) t1.call$1(details); t1 = this.panHandler; if (t1 != null) t1.call$1(details); }, $signature: 70 }; D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure.prototype = { call$1: function(details) { var t1 = this.vertical, t2 = t1.onDown; if (t2 != null) t2.call$1(new O.DragDownDetails(C.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new O.DragStartDetails(null, C.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new O.DragEndDetails(C.Velocity_Offset_0_0, 0)); }, $signature: 70 }; D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0.prototype = { call$1: function(details) { var t1 = this.pan, t2 = t1.onDown; if (t2 != null) t2.call$1(new O.DragDownDetails(C.Offset_0_0)); t2 = t1.onStart; if (t2 != null) t2.call$1(new O.DragStartDetails(null, C.Offset_0_0, null)); t2 = t1.onUpdate; if (t2 != null) t2.call$1(details); t1 = t1.onEnd; if (t1 != null) t1.call$1(new O.DragEndDetails(C.Velocity_Offset_0_0, null)); }, $signature: 70 }; D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1.prototype = { call$1: function(details) { var t1 = this.verticalHandler; if (t1 != null) t1.call$1(details); t1 = this.panHandler; if (t1 != null) t1.call$1(details); }, $signature: 70 }; T.HeroFlightDirection.prototype = { toString$0: function(_) { return this._heroes$_name; } }; T.Hero.prototype = { createState$0: function() { return new T._HeroState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), C._StateLifecycle_0); } }; T.Hero__allHeroesFor_inviteHero.prototype = { call$2: function(hero, tag) { var t1, heroWidget = type$.Hero._as(hero._widget), heroState = type$._HeroState._as(hero.state); if (this.isUserGestureTransition) { heroWidget.toString; t1 = false; } else t1 = true; if (t1) this.result.$indexSet(0, tag, heroState); else heroState.endFlight$0(); }, $signature: 2285 }; T.Hero__allHeroesFor_visitor.prototype = { call$1: function(element) { var tag, heroRoute, _this = this, widget = element.get$widget(); if (widget instanceof T.Hero) { type$.StatefulElement._as(element); tag = widget.tag; if (K.Navigator_of(element, false) === _this.navigator) _this.inviteHero.call$2(element, tag); else { heroRoute = T.ModalRoute_of(element, type$.nullable_Object); if (heroRoute != null && heroRoute instanceof V.PageRoute && heroRoute.get$isCurrent()) _this.inviteHero.call$2(element, tag); } } element.visitChildren$1(_this); }, $signature: 87 }; T._HeroState.prototype = { startFlight$1$shouldIncludedChildInPlaceholder: function(shouldIncludedChildInPlaceholder) { var t1, _this = this; _this._shouldIncludeChild = shouldIncludedChildInPlaceholder; t1 = _this._framework$_element.get$renderObject(); t1.toString; _this.setState$1(new T._HeroState_startFlight_closure(_this, type$.RenderBox._as(t1))); }, startFlight$0: function() { return this.startFlight$1$shouldIncludedChildInPlaceholder(false); }, endFlight$1$keepPlaceholder: function(keepPlaceholder) { var _this = this; if (keepPlaceholder || _this._placeholderSize == null) return; _this._placeholderSize = null; if (_this._framework$_element != null) _this.setState$1(new T._HeroState_endFlight_closure()); }, endFlight$0: function() { return this.endFlight$1$keepPlaceholder(false); }, build$1: function(_, context) { var t3, _this = this, _null = null, t1 = _this._placeholderSize, t2 = t1 == null, showPlaceholder = !t2; if (showPlaceholder) _this._widget.toString; if (showPlaceholder && !_this._shouldIncludeChild) { t2 = t1._dx; return T.SizedBox$(_null, t1._dy, t2); } t3 = t2 ? _null : t1._dx; t1 = t2 ? _null : t1._dy; return T.SizedBox$(new T.Offstage(showPlaceholder, new U.TickerMode(t2, new T.KeyedSubtree(_this._widget.child, _this._heroes$_key), _null), _null), t1, t3); } }; T._HeroState_startFlight_closure.prototype = { call$0: function() { var t1 = this.box._box$_size; t1.toString; this.$this._placeholderSize = t1; }, $signature: 0 }; T._HeroState_endFlight_closure.prototype = { call$0: function() { }, $signature: 0 }; T._HeroFlightManifest.prototype = { get$animation: function(_) { var t1, _this = this; if (_this.type === C.HeroFlightDirection_0) { t1 = _this.toRoute._animationProxy; t1.toString; } else { t1 = _this.fromRoute._animationProxy; t1.toString; } return S.CurvedAnimation$(C.Cubic_ifx, t1, _this.isDiverted ? null : new Z.FlippedCurve(C.Cubic_ifx)); }, createHeroRectTween$2$begin$end: function(begin, end) { var t1; this.toHero._widget.toString; t1 = this.createRectTween.call$2(begin, end); return t1 == null ? new R.RectTween(begin, end) : t1; }, get$fromHeroLocation: function() { var _this = this, t1 = _this.___HeroFlightManifest_fromHeroLocation; if (t1 === $) { t1 = _this.fromHero._framework$_element; t1.toString; t1 = T._HeroFlightManifest__boundingBoxFor(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.fromRoute._subtreeKey)); if (_this.___HeroFlightManifest_fromHeroLocation === $) _this.___HeroFlightManifest_fromHeroLocation = t1; else t1 = H.throwExpression(H.LateError$fieldADI("fromHeroLocation")); } return t1; }, get$toHeroLocation: function() { var _this = this, t1 = _this.___HeroFlightManifest_toHeroLocation; if (t1 === $) { t1 = _this.toHero._framework$_element; t1.toString; t1 = T._HeroFlightManifest__boundingBoxFor(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.toRoute._subtreeKey)); if (_this.___HeroFlightManifest_toHeroLocation === $) _this.___HeroFlightManifest_toHeroLocation = t1; else t1 = H.throwExpression(H.LateError$fieldADI("toHeroLocation")); } return t1; }, get$isValid: function() { var _this = this, t1 = _this.___HeroFlightManifest_isValid; if (t1 === $) { t1 = _this.get$toHeroLocation(); if (t1.get$isFinite(t1)) if (!_this.isDiverted) { t1 = _this.get$fromHeroLocation(); t1 = t1.get$isFinite(t1); } else t1 = true; else t1 = false; if (_this.___HeroFlightManifest_isValid === $) _this.___HeroFlightManifest_isValid = t1; else t1 = H.throwExpression(H.LateError$fieldADI("isValid")); } return t1; }, toString$0: function(_) { var _this = this, t1 = _this.fromHero; t1 = "_HeroFlightManifest(" + _this.type.toString$0(0) + " tag: " + H.S(t1._widget.tag) + " from route: " + _this.fromRoute._navigator$_settings.toString$0(0) + " to route: " + _this.toRoute._navigator$_settings.toString$0(0) + " with hero: " + t1.toString$0(0) + " to " + _this.toHero.toString$0(0) + ")"; return t1 + (_this.get$isValid() ? "" : ", INVALID"); } }; T._HeroFlight.prototype = { get$heroRectTween: function() { var t1 = this.___HeroFlight_heroRectTween; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("heroRectTween")) : t1; }, get$_proxyAnimation: function() { var t1 = this.___HeroFlight__proxyAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_proxyAnimation")) : t1; }, get$manifest: function() { var t1 = this.___HeroFlight_manifest; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("manifest")) : t1; }, _buildOverlay$1: function(context) { var t1, t2, t3, t4, t5, _this = this; if (_this.shuttle == null) { t1 = _this.get$manifest(); t2 = _this.get$manifest(); t2 = t2.get$animation(t2); t3 = _this.get$manifest().type; t4 = _this.get$manifest().fromHero._framework$_element; t4.toString; t5 = _this.get$manifest().toHero._framework$_element; t5.toString; _this.shuttle = t1.shuttleBuilder.call$5(context, t2, t3, t4, t5); } return K.AnimatedBuilder$(_this.get$_proxyAnimation(), new T._HeroFlight__buildOverlay_closure(_this), _this.shuttle); }, _performAnimationUpdate$1: function($status) { var _this = this, t1 = $status === C.AnimationStatus_3; if (t1 || $status === C.AnimationStatus_0) { _this.get$_proxyAnimation().set$parent(0, null); _this.overlayEntry.remove$0(0); _this.overlayEntry = null; _this.get$manifest().fromHero.endFlight$1$keepPlaceholder(t1); _this.get$manifest().toHero.endFlight$1$keepPlaceholder($status === C.AnimationStatus_0); _this.onFlightEnded.call$1(_this); _this.get$_proxyAnimation().removeListener$1(0, _this.get$onTick()); } }, _handleAnimationUpdate$1: function($status) { var t2, _this = this, t1 = _this.get$manifest().fromRoute._navigator$_navigator; if ((t1 == null ? null : t1.userGestureInProgressNotifier._change_notifier$_value) !== true) { _this._performAnimationUpdate$1($status); return; } if (_this._scheduledPerformAnimtationUpdate) return; t1 = _this.get$manifest().fromRoute._navigator$_navigator; t1.toString; _this._scheduledPerformAnimtationUpdate = true; t2 = t1.userGestureInProgressNotifier.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(new T._HeroFlight__handleAnimationUpdate_delayedPerformAnimtationUpdate(_this, t1)), false); }, onTick$0: function() { var t1, toHeroOrigin, t2, t3, t4, t5, t6, t7, _this = this, toHeroBox = !_this._aborted && _this.get$manifest().toHero._framework$_element != null ? type$.nullable_RenderBox._as(_this.get$manifest().toHero._framework$_element.get$renderObject()) : null; if (toHeroBox != null && toHeroBox._node$_owner != null && toHeroBox._box$_size != null) { t1 = _this.get$manifest().toRoute; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._subtreeKey); t1 = t1 == null ? null : t1.get$renderObject(); toHeroOrigin = T.MatrixUtils_transformPoint(toHeroBox.getTransformTo$1(0, type$.nullable_RenderBox._as(t1)), C.Offset_0_0); } else toHeroOrigin = null; t1 = toHeroOrigin != null; if (t1) { t2 = toHeroOrigin._dx; t2.toString; if (isFinite(t2)) { t2 = toHeroOrigin._dy; t2.toString; t2 = isFinite(t2); } else t2 = false; } else t2 = false; if (t2) { t2 = _this.get$heroRectTween().end; if (!J.$eq$(toHeroOrigin, new P.Offset(t2.left, t2.top))) { t2 = _this.get$heroRectTween().end; t3 = t2.right; t4 = t2.left; t5 = t2.bottom; t2 = t2.top; t6 = toHeroOrigin._dx; t7 = toHeroOrigin._dy; _this.___HeroFlight_heroRectTween = _this.get$manifest().createHeroRectTween$2$begin$end(_this.get$heroRectTween().begin, new P.Rect(t6, t7, t6 + (t3 - t4), t7 + (t5 - t2))); } } else { t2 = _this._heroOpacity; if (t2.get$status(t2) === C.AnimationStatus_3) { t2 = _this.get$_proxyAnimation(); t3 = $.$get$_HeroFlight__reverseTween(); t4 = _this.get$_proxyAnimation(); t4 = t4.get$value(t4); t3.toString; t5 = t3.$ti._eval$1("_ChainedEvaluation"); t2.toString; _this._heroOpacity = new R._AnimatedEvaluation(type$.Animation_double._as(t2), new R._ChainedEvaluation(new R.CurveTween(new Z.Interval(t4, 1, C.C__Linear)), t3, t5), t5._eval$1("_AnimatedEvaluation")); } } if (t1) { t1 = toHeroOrigin._dx; t1.toString; if (isFinite(t1)) { t1 = toHeroOrigin._dy; t1.toString; t1 = isFinite(t1); } else t1 = false; t1 = !t1; } else t1 = true; _this._aborted = t1; }, toString$0: function(_) { var _this = this, from = _this.get$manifest().fromRoute._navigator$_settings, to = _this.get$manifest().toRoute._navigator$_settings; return "HeroFlight(for: " + H.S(_this.get$manifest().fromHero._widget.tag) + ", from: " + from.toString$0(0) + ", to: " + to.toString$0(0) + " " + H.S(_this.get$_proxyAnimation()._animations$_parent) + ")"; } }; T._HeroFlight__buildOverlay_closure.prototype = { call$2: function(context, child) { var t4, _null = null, t1 = this.$this, t2 = t1.get$heroRectTween(), t3 = t1.get$_proxyAnimation(); t2.toString; t3 = t2.transform$1(0, t3.get$value(t3)); t3.toString; t2 = t1.get$manifest().navigatorSize; t4 = t2._dx; t2 = t2._dy; t1 = t1._heroOpacity; return T.Positioned$(t2 - t3.bottom, new T.IgnorePointer(true, _null, new T.RepaintBoundary(T.Opacity$(false, child, t1.get$value(t1)), _null), _null), _null, _null, t3.left, t4 - t3.right, t3.top, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 478 }; T._HeroFlight__handleAnimationUpdate_delayedPerformAnimtationUpdate.prototype = { call$0: function() { var t2, t1 = this.$this; t1._scheduledPerformAnimtationUpdate = false; this.navigator.userGestureInProgressNotifier.removeListener$1(0, this); t2 = t1.get$_proxyAnimation(); t1._performAnimationUpdate$1(t2.get$status(t2)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; T.HeroController.prototype = { didPush$2: function(route, previousRoute) { this._maybeStartHeroTransition$4(previousRoute, route, C.HeroFlightDirection_0, false); }, didPop$2: function(route, previousRoute) { if (!this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) this._maybeStartHeroTransition$4(route, previousRoute, C.HeroFlightDirection_1, false); }, didReplace$2$newRoute$oldRoute: function(newRoute, oldRoute) { if ((newRoute == null ? null : newRoute.get$isCurrent()) === true) this._maybeStartHeroTransition$4(oldRoute, newRoute, C.HeroFlightDirection_0, false); }, didStartUserGesture$2: function(route, previousRoute) { this._maybeStartHeroTransition$4(route, previousRoute, C.HeroFlightDirection_1, true); }, didStopUserGesture$0: function() { var t1, t2, invalidFlights, _i; if (this._navigator$_navigator.userGestureInProgressNotifier._change_notifier$_value) return; t1 = this._flights; t1 = t1.get$values(t1); t2 = H._instanceType(t1)._eval$1("WhereIterable"); invalidFlights = P.List_List$of(new H.WhereIterable(t1, new T.HeroController_didStopUserGesture_isInvalidFlight(), t2), false, t2._eval$1("Iterable.E")); for (t1 = invalidFlights.length, _i = 0; _i < t1; ++_i) invalidFlights[_i]._handleAnimationUpdate$1(C.AnimationStatus_0); }, _maybeStartHeroTransition$4: function(fromRoute, toRoute, flightType, isUserGestureTransition) { var t1, animation; if (toRoute != fromRoute && toRoute instanceof V.PageRoute && fromRoute instanceof V.PageRoute) { if (flightType === C.HeroFlightDirection_0) { t1 = toRoute._animationProxy; t1.toString; animation = t1; } else { t1 = fromRoute._animationProxy; t1.toString; animation = t1; } switch (flightType) { case C.HeroFlightDirection_1: if (animation.get$value(animation) === 0) return; break; case C.HeroFlightDirection_0: if (animation.get$value(animation) === 1) return; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (isUserGestureTransition) if (flightType === C.HeroFlightDirection_1) { toRoute.toString; t1 = true; } else t1 = false; else t1 = false; if (t1) this._startHeroTransition$5(fromRoute, toRoute, animation, flightType, isUserGestureTransition); else { t1 = toRoute._animationProxy; toRoute.set$offstage(t1.get$value(t1) === 0); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new T.HeroController__maybeStartHeroTransition_closure(this, fromRoute, toRoute, animation, flightType, isUserGestureTransition)); } } }, _startHeroTransition$5: function(from, to, animation, flightType, isUserGestureTransition) { var $navigator, t1, overlay, navigatorRenderObject, fromSubtreeContext, fromHeroes, toSubtreeContext, toHeroes, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, tag, fromHero, toHero, existingFlight, manifest, t17, t18, t19, shouldIncludeChildInPlacehold, _this = this, _null = null, _s8_ = "manifest", _s15_ = "_proxyAnimation", _s13_ = "heroRectTween"; to.set$offstage(false); $navigator = _this._navigator$_navigator; t1 = $navigator == null; overlay = t1 ? _null : $navigator.get$_overlayKey().get$currentState(); if (t1 || overlay == null) return; navigatorRenderObject = $navigator._framework$_element.get$renderObject(); if (!(navigatorRenderObject instanceof S.RenderBox)) return; fromSubtreeContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, from._subtreeKey); fromHeroes = fromSubtreeContext != null ? T.Hero__allHeroesFor(fromSubtreeContext, isUserGestureTransition, $navigator) : C.Map_empty2; toSubtreeContext = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, to._subtreeKey); toHeroes = toSubtreeContext != null ? T.Hero__allHeroesFor(toSubtreeContext, isUserGestureTransition, $navigator) : C.Map_empty2; for (t1 = fromHeroes.get$entries(fromHeroes), t1 = t1.get$iterator(t1), t2 = _this.get$_defaultHeroFlightShuttleBuilder(), t3 = _this.createRectTween, t4 = _this._flights, t5 = type$.LabeledGlobalKey__OverlayEntryWidgetState, t6 = type$.LinkedList__ListenerEntry, t7 = _this.get$_handleFlightEnded(), t8 = type$.JSArray_of_void_Function_AnimationStatus, t9 = type$.ObserverList_of_void_Function_AnimationStatus, t10 = type$.JSArray_of_void_Function, t11 = type$.ObserverList_of_void_Function, t12 = type$.Tween_double, t13 = type$.Animation_double, t14 = t12._eval$1("_AnimatedEvaluation"), t15 = type$.ReverseTween_nullable_Rect; t1.moveNext$0();) { t16 = t1.get$current(t1); tag = t16.get$key(t16); fromHero = t16.get$value(t16); toHero = toHeroes.$index(0, tag); existingFlight = t4.$index(0, tag); if (toHero == null) manifest = _null; else { t16 = navigatorRenderObject._box$_size; t16.toString; toHero._widget.toString; fromHero._widget.toString; manifest = new T._HeroFlightManifest(flightType, overlay, t16, from, to, fromHero, toHero, t3, t2, isUserGestureTransition, existingFlight != null); } if (manifest != null && manifest.get$isValid()) { toHeroes.remove$1(0, tag); if (existingFlight != null) { t16 = existingFlight.___HeroFlight_manifest; if ((t16 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t16).type === C.HeroFlightDirection_0 && manifest.type === C.HeroFlightDirection_1) { t16 = existingFlight.___HeroFlight__proxyAnimation; if (t16 === $) t16 = H.throwExpression(H.LateError$fieldNI(_s15_)); t16.set$parent(0, new S.ReverseAnimation(manifest.get$animation(manifest), new R.ObserverList(H.setRuntimeTypeInfo([], t8), t9), 0)); t16 = existingFlight.___HeroFlight_heroRectTween; if (t16 === $) t16 = H.throwExpression(H.LateError$fieldNI(_s13_)); existingFlight.___HeroFlight_heroRectTween = new R.ReverseTween(t16, t16.end, t16.begin, t15); } else if (t16.type === C.HeroFlightDirection_1 && manifest.type === C.HeroFlightDirection_0) { t16 = existingFlight.___HeroFlight__proxyAnimation; if (t16 === $) t16 = H.throwExpression(H.LateError$fieldNI(_s15_)); t17 = manifest.get$animation(manifest); t18 = existingFlight.___HeroFlight_manifest; if (t18 === $) t18 = H.throwExpression(H.LateError$fieldNI(_s8_)); t18 = t18.get$animation(t18); t18 = t18.get$value(t18); t16.set$parent(0, new R._AnimatedEvaluation(t13._as(t17), new R.Tween(t18, 1, t12), t14)); t16 = existingFlight.___HeroFlight_manifest; t17 = (t16 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t16).fromHero; t18 = manifest.toHero; if (t17 !== t18) { t16.fromHero.endFlight$1$keepPlaceholder(true); t18.startFlight$0(); t16 = existingFlight.___HeroFlight_manifest; if (t16 === $) t16 = H.throwExpression(H.LateError$fieldNI(_s8_)); t17 = existingFlight.___HeroFlight_heroRectTween; existingFlight.___HeroFlight_heroRectTween = t16.createHeroRectTween$2$begin$end((t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s13_)) : t17).end, manifest.get$toHeroLocation()); } else { t17 = existingFlight.___HeroFlight_heroRectTween; t18 = (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s13_)) : t17).end; existingFlight.___HeroFlight_heroRectTween = t16.createHeroRectTween$2$begin$end(t18, t17.begin); } } else { t17 = existingFlight.___HeroFlight_heroRectTween; if (t17 === $) t17 = H.throwExpression(H.LateError$fieldNI(_s13_)); t18 = existingFlight.___HeroFlight__proxyAnimation; if (t18 === $) t18 = H.throwExpression(H.LateError$fieldNI(_s15_)); t17.toString; existingFlight.___HeroFlight_heroRectTween = t16.createHeroRectTween$2$begin$end(t17.transform$1(0, t18.get$value(t18)), manifest.get$toHeroLocation()); existingFlight.shuttle = null; t16 = manifest.type; t17 = existingFlight.___HeroFlight__proxyAnimation; if (t16 === C.HeroFlightDirection_1) { if (t17 === $) t17 = H.throwExpression(H.LateError$fieldNI(_s15_)); t17.set$parent(0, new S.ReverseAnimation(manifest.get$animation(manifest), new R.ObserverList(H.setRuntimeTypeInfo([], t8), t9), 0)); } else { if (t17 === $) t17 = H.throwExpression(H.LateError$fieldNI(_s15_)); t17.set$parent(0, manifest.get$animation(manifest)); } t17 = existingFlight.___HeroFlight_manifest; (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17).fromHero.endFlight$1$keepPlaceholder(true); t17 = existingFlight.___HeroFlight_manifest; (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17).toHero.endFlight$1$keepPlaceholder(true); manifest.fromHero.startFlight$1$shouldIncludedChildInPlaceholder(t16 === C.HeroFlightDirection_0); manifest.toHero.startFlight$0(); t16 = existingFlight.overlayEntry._key.get$currentState(); if (t16 != null) t16._overlay$_markNeedsBuild$0(); } existingFlight.___HeroFlight_manifest = manifest; } else { t16 = new T._HeroFlight(t7, C.C__AlwaysCompleteAnimation); t17 = H.setRuntimeTypeInfo([], t8); t18 = new R.ObserverList(t17, t9); t19 = new S.ProxyAnimation(t18, new R.ObserverList(H.setRuntimeTypeInfo([], t10), t11), 0); t19._animations$_status = C.AnimationStatus_0; t19._animations$_value = 0; t19.didRegisterListener$0(); t18._isDirty = true; t17.push(t16.get$_handleAnimationUpdate()); t16.___HeroFlight__proxyAnimation = t19; t16.___HeroFlight_manifest = manifest; switch ((manifest === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : manifest).type) { case C.HeroFlightDirection_1: t17 = t19 === $ ? H.throwExpression(H.LateError$fieldNI(_s15_)) : t19; t17.set$parent(0, new S.ReverseAnimation(manifest.get$animation(manifest), new R.ObserverList(H.setRuntimeTypeInfo([], t8), t9), 0)); shouldIncludeChildInPlacehold = false; break; case C.HeroFlightDirection_0: t17 = t19 === $ ? H.throwExpression(H.LateError$fieldNI(_s15_)) : t19; t17.set$parent(0, manifest.get$animation(manifest)); shouldIncludeChildInPlacehold = true; break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); shouldIncludeChildInPlacehold = _null; } t17 = t16.___HeroFlight_manifest; t18 = t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17; t17 = t17.get$fromHeroLocation(); t19 = t16.___HeroFlight_manifest; t16.___HeroFlight_heroRectTween = t18.createHeroRectTween$2$begin$end(t17, (t19 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t19).get$toHeroLocation()); t17 = t16.___HeroFlight_manifest; (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17).fromHero.startFlight$1$shouldIncludedChildInPlaceholder(shouldIncludeChildInPlacehold); t17 = t16.___HeroFlight_manifest; (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17).toHero.startFlight$0(); t17 = t16.___HeroFlight_manifest; t17 = (t17 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t17).overlay; t18 = new X.OverlayEntry(t16.get$_buildOverlay(), false, new N.LabeledGlobalKey(_null, t5), new P.LinkedList(t6)); t16.overlayEntry = t18; t17.insert$1(0, t18); t18 = t16.___HeroFlight__proxyAnimation; t17 = t18 === $ ? H.throwExpression(H.LateError$fieldNI(_s15_)) : t18; t17.didRegisterListener$0(); t17 = t17.AnimationLocalListenersMixin__listeners; t17._isDirty = true; t17._observer_list$_list.push(t16.get$onTick()); t4.$indexSet(0, tag, t16); } } else if (existingFlight != null) existingFlight._aborted = true; } for (t1 = J.get$iterator$ax(toHeroes.get$values(toHeroes)); t1.moveNext$0();) t1.get$current(t1).endFlight$0(); }, _handleFlightEnded$1: function(flight) { this._flights.remove$1(0, flight.get$manifest().fromHero._widget.tag); }, _defaultHeroFlightShuttleBuilder$5: function(flightContext, animation, flightDirection, fromHeroContext, toHeroContext) { return type$.Hero._as(toHeroContext.get$widget()).child; } }; T.HeroController_didStopUserGesture_isInvalidFlight.prototype = { call$1: function(flight) { var t1; if (flight.get$manifest().isUserGestureTransition) if (flight.get$manifest().type === C.HeroFlightDirection_1) { t1 = flight.get$_proxyAnimation(); t1 = t1.get$status(t1) === C.AnimationStatus_0; } else t1 = false; else t1 = false; return t1; }, $signature: 2222 }; T.HeroController__maybeStartHeroTransition_closure.prototype = { call$1: function(value) { var _this = this; _this.$this._startHeroTransition$5(_this.from, _this.to, _this.animation, _this.flightType, _this.isUserGestureTransition); }, $signature: 28 }; L.Icon.prototype = { build$1: function(_, context) { var textDirection, iconThemeData, t2, iconTheme, t3, iconSize, iconOpacity, iconColor, iconWidget, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; textDirection = t1.textDirection; iconThemeData = Y.IconTheme__getInheritedIconThemeData(context).resolve$1(context); t1 = iconThemeData.color; t2 = t1 == null; if (!t2 && iconThemeData.get$opacity(iconThemeData) != null && iconThemeData.size != null) iconTheme = iconThemeData; else { t3 = iconThemeData.size; if (t3 == null) t3 = 24; if (t2) t1 = C.Color_4278190080; t2 = iconThemeData.get$opacity(iconThemeData); iconTheme = iconThemeData.copyWith$3$color$opacity$size(t1, t2 == null ? C.IconThemeData_Color_4278190080_1_24.get$opacity(C.IconThemeData_Color_4278190080_1_24) : t2, t3); } iconSize = this.size; if (iconSize == null) iconSize = iconTheme.size; t1 = this.icon; if (t1 == null) { t1 = T.SizedBox$(_null, iconSize, iconSize); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, t1, _null); } iconOpacity = iconTheme.get$opacity(iconTheme); if (iconOpacity == null) iconOpacity = 1; iconColor = this.color; if (iconColor == null) { t2 = iconTheme.color; t2.toString; iconColor = t2; } if (iconOpacity !== 1) iconColor = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * ((iconColor.get$value(iconColor) >>> 24 & 255) / 255 * iconOpacity)), iconColor.get$value(iconColor) >>> 16 & 255, iconColor.get$value(iconColor) >>> 8 & 255, iconColor.get$value(iconColor) & 255); t2 = H.Primitives_stringFromCharCode(t1.codePoint); iconWidget = T.RichText$(_null, _null, C.TextOverflow_3, true, _null, Q.TextSpan$(_null, _null, A.TextStyle$(_null, _null, iconColor, _null, _null, _null, _null, _null, t1.fontFamily, _null, _null, iconSize, _null, _null, _null, _null, false, _null, _null, _null, t1.fontPackage, _null, _null, _null), t2), C.TextAlign_4, textDirection, _null, 1, C.TextWidthBasis_0); if (t1.matchTextDirection) switch (textDirection) { case C.TextDirection_0: t1 = new E.Matrix4(new Float64Array(16)); t1.setIdentity$0(); t1.scale$3(0, -1, 1, 1); iconWidget = T.Transform$(C.Alignment_0_0, iconWidget, t1, false); break; case C.TextDirection_1: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = T.SizedBox$(T.Center$(iconWidget, _null, _null), iconSize, iconSize); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, new T.ExcludeSemantics(true, t1, _null), _null); } }; X.IconData.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof X.IconData && other.codePoint === _this.codePoint && other.fontFamily === _this.fontFamily && other.fontPackage == _this.fontPackage && other.matchTextDirection === _this.matchTextDirection; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.codePoint, _this.fontFamily, _this.fontPackage, _this.matchTextDirection, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { return "IconData(U+" + C.JSString_methods.padLeft$2(C.JSInt_methods.toRadixString$1(this.codePoint, 16).toUpperCase(), 5, "0") + ")"; } }; Y.IconTheme.prototype = { updateShouldNotify$1: function(oldWidget) { return !this.data.$eq(0, oldWidget.data); }, wrap$2: function(_, context, child) { return Y.IconTheme$(child, this.data, null); } }; Y.IconTheme_merge_closure.prototype = { call$1: function(context) { return Y.IconTheme$(this.child, Y.IconTheme__getInheritedIconThemeData(context).merge$1(this.data), this.key); }, $signature: 2217 }; T.IconThemeData.prototype = { copyWith$3$color$opacity$size: function(color, opacity, size) { var _this = this, t1 = color == null ? _this.color : color, t2 = opacity == null ? _this.get$opacity(_this) : opacity; return new T.IconThemeData(t1, t2, size == null ? _this.size : size); }, copyWith$1$opacity: function(opacity) { return this.copyWith$3$color$opacity$size(null, opacity, null); }, merge$1: function(other) { if (other == null) return this; return this.copyWith$3$color$opacity$size(other.color, other.get$opacity(other), other.size); }, resolve$1: function(context) { return this; }, get$opacity: function(_) { var t1 = this._opacity; return t1 == null ? null : C.JSNumber_methods.clamp$2(t1, 0, 1); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof T.IconThemeData && J.$eq$(other.color, _this.color) && other.get$opacity(other) == _this.get$opacity(_this) && other.size == _this.size; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.color, _this.get$opacity(_this), _this.size, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; T._IconThemeData_Object_Diagnosticable.prototype = {}; U.Image.prototype = { createState$0: function() { return new U._ImageState(C._StateLifecycle_0); } }; U._ImageState.prototype = { get$_scrollAwareContext: function() { var t1 = this.___ImageState__scrollAwareContext; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollAwareContext")) : t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); _this.___ImageState__scrollAwareContext = new K.DisposableBuildContext(_this, type$.DisposableBuildContext_State_Image); }, dispose$0: function(_) { var t1, _this = this; C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._stopListeningToStream$0(); t1 = _this._completerHandle; if (t1 != null) t1.dispose$0(0); _this.get$_scrollAwareContext()._disposable_build_context$_state = null; _this._replaceImage$1$info(null); _this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t1, _this = this; _this._updateInvertColors$0(); _this._resolveImage$0(); t1 = _this._framework$_element; t1.toString; if (U.TickerMode_of(t1)) _this._listenToStream$0(); else _this._stopListeningToStream$1$keepStreamAlive(true); _this.super$State$didChangeDependencies(); }, didUpdateWidget$1: function(oldWidget) { var oldListener, t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._isListeningToStream && _this._widget.loadingBuilder == null !== (oldWidget.loadingBuilder == null)) { oldListener = _this._getListener$0(); t1 = _this._imageStream; t1.toString; t1.addListener$1(0, _this._getListener$1$recreateListener(true)); _this._imageStream.removeListener$1(0, oldListener); } if (!J.$eq$(_this._widget.image, oldWidget.image)) _this._resolveImage$0(); }, _updateInvertColors$0: function() { var t1 = this._framework$_element; t1.toString; t1 = F.MediaQuery_maybeOf(t1); t1 = t1 == null ? null : t1.invertColors; if (t1 == null) { $.SemanticsBinding__instance.get$_accessibilityFeatures().toString; t1 = false; } this.___ImageState__invertColors = t1; }, _resolveImage$0: function() { var t5, _this = this, t1 = _this.get$_scrollAwareContext(), t2 = _this._widget, t3 = t2.image, t4 = _this._framework$_element; t4.toString; t5 = t2.width; if (t5 != null && t2.height != null) { t5.toString; t2 = t2.height; t2.toString; t2 = new P.Size(t5, t2); } else t2 = null; _this._updateSourceStream$1(new Y.ScrollAwareImageProvider(t1, t3, type$.ScrollAwareImageProvider_Object).resolve$1(U.createLocalImageConfiguration(t4, t2))); }, _getListener$1$recreateListener: function(recreateListener) { var t2, _this = this, t1 = _this._imageStreamListener; if (t1 == null || recreateListener) { _this._lastStack = _this._lastException = null; t1 = _this._widget; t2 = t1.loadingBuilder == null ? null : _this.get$_handleImageChunk(); t1 = t1.errorBuilder != null || false ? new U._ImageState__getListener_closure(_this) : null; t1 = _this._imageStreamListener = new L.ImageStreamListener(_this.get$_handleImageFrame(), t2, t1); } t1.toString; return t1; }, _getListener$0: function() { return this._getListener$1$recreateListener(false); }, _handleImageFrame$2: function(imageInfo, synchronousCall) { this.setState$1(new U._ImageState__handleImageFrame_closure(this, imageInfo, synchronousCall)); }, _handleImageChunk$1: function($event) { this.setState$1(new U._ImageState__handleImageChunk_closure(this, $event)); }, _replaceImage$1$info: function(info) { var t1 = this._imageInfo; if (t1 != null) t1.image.dispose$0(0); this._imageInfo = info; }, _updateSourceStream$1: function(newStream) { var t2, t3, _this = this, t1 = _this._imageStream; if (t1 == null) t2 = null; else { t2 = t1._image_stream$_completer; if (t2 == null) t2 = t1; } t3 = newStream._image_stream$_completer; if (t2 === (t3 == null ? newStream : t3)) return; if (_this._isListeningToStream) { t1.toString; t1.removeListener$1(0, _this._getListener$0()); } _this._widget.toString; _this.setState$1(new U._ImageState__updateSourceStream_closure(_this)); _this.setState$1(new U._ImageState__updateSourceStream_closure0(_this)); _this._imageStream = newStream; if (_this._isListeningToStream) newStream.addListener$1(0, _this._getListener$0()); }, _listenToStream$0: function() { var t1, _this = this; if (_this._isListeningToStream) return; t1 = _this._imageStream; t1.toString; t1.addListener$1(0, _this._getListener$0()); t1 = _this._completerHandle; if (t1 != null) t1.dispose$0(0); _this._completerHandle = null; _this._isListeningToStream = true; }, _stopListeningToStream$1$keepStreamAlive: function(keepStreamAlive) { var t1, t2, _this = this; if (!_this._isListeningToStream) return; if (keepStreamAlive) if (_this._completerHandle == null) { t1 = _this._imageStream; t1 = (t1 == null ? null : t1._image_stream$_completer) != null; } else t1 = false; else t1 = false; if (t1) { t1 = _this._imageStream._image_stream$_completer; if (t1._image_stream$_disposed) H.throwExpression(P.StateError$(string$.Stream)); t2 = new L.ImageStreamCompleterHandle(t1); t2.ImageStreamCompleterHandle$_$1(t1); _this._completerHandle = t2; } t1 = _this._imageStream; t1.toString; t1.removeListener$1(0, _this._getListener$0()); _this._isListeningToStream = false; }, _stopListeningToStream$0: function() { return this._stopListeningToStream$1$keepStreamAlive(false); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, result, _this = this, _null = null, t1 = _this._lastException; if (t1 != null) { t2 = _this._widget.errorBuilder; if (t2 != null) return t2.call$3(context, t1, _this._lastStack); } t1 = _this._imageInfo; t2 = t1 == null; t3 = t2 ? _null : t1.image; t4 = t2 ? _null : t1.debugLabel; t5 = _this._widget; t6 = t5.width; t7 = t5.height; t1 = t2 ? _null : t1.scale; if (t1 == null) t1 = 1; t2 = t5.color; t8 = t5.colorBlendMode; t9 = t5.fit; t10 = t5.alignment; t11 = t5.repeat; t12 = _this.___ImageState__invertColors; if (t12 === $) t12 = H.throwExpression(H.LateError$fieldNI("_invertColors")); t13 = t5.filterQuality; result = new T.Semantics(A.SemanticsProperties$(_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, _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, false, false, new T.RawImage(t3, t4, t6, t7, t1, t2, t13, t8, t9, t10, t11, _null, false, t12, false, _null), _null); t1 = t5.frameBuilder; if (t1 != null) result = t1.call$4(context, result, _this._frameNumber, _this._wasSynchronouslyLoaded); t1 = _this._widget.loadingBuilder; return t1 != null ? t1.call$3(context, result, _this._loadingProgress) : result; } }; U._ImageState__getListener_closure.prototype = { call$2: function(error, stackTrace) { var t1 = this.$this; t1.setState$1(new U._ImageState__getListener__closure(t1, error, stackTrace)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 479 }; U._ImageState__getListener__closure.prototype = { call$0: function() { var t1 = this.$this; t1._lastException = this.error; t1._lastStack = this.stackTrace; }, $signature: 0 }; U._ImageState__handleImageFrame_closure.prototype = { call$0: function() { var t2, t1 = this.$this; t1._replaceImage$1$info(this.imageInfo); t1._lastStack = t1._lastException = t1._loadingProgress = null; t2 = t1._frameNumber; t1._frameNumber = t2 == null ? 0 : t2 + 1; t1._wasSynchronouslyLoaded = C.JSBool_methods.$or(t1._wasSynchronouslyLoaded, this.synchronousCall); }, $signature: 0 }; U._ImageState__handleImageChunk_closure.prototype = { call$0: function() { var t1 = this.$this; t1._loadingProgress = this.event; t1._lastStack = t1._lastException = null; }, $signature: 0 }; U._ImageState__updateSourceStream_closure.prototype = { call$0: function() { this.$this._replaceImage$1$info(null); }, $signature: 0 }; U._ImageState__updateSourceStream_closure0.prototype = { call$0: function() { var t1 = this.$this; t1._frameNumber = t1._loadingProgress = null; t1._wasSynchronouslyLoaded = false; }, $signature: 0 }; U.__ImageState_State_WidgetsBindingObserver.prototype = {}; G.BoxConstraintsTween.prototype = { lerp$1: function(t) { var t1 = S.BoxConstraints_lerp(this.begin, this.end, t); t1.toString; return t1; } }; G.DecorationTween.prototype = { lerp$1: function(t) { var t1 = Z.Decoration_lerp(this.begin, this.end, t); t1.toString; return t1; } }; G.EdgeInsetsGeometryTween.prototype = { lerp$1: function(t) { var t1 = V.EdgeInsetsGeometry_lerp(this.begin, this.end, t); t1.toString; return t1; } }; G.BorderRadiusTween.prototype = { lerp$1: function(t) { var t1 = K.BorderRadius_lerp(this.begin, this.end, t); t1.toString; return t1; } }; G.Matrix4Tween.prototype = { lerp$1: function(t) { var t1, lerpTranslation, t2, t3, lerpRotation, lerpScale, x, y, z, w, x2, y2, z2, xx, xy, xz, yy, yz, zz, wx, wy, wz, arg0Storage, beginTranslation = new E.Vector3(new Float64Array(3)), endTranslation = new E.Vector3(new Float64Array(3)), beginRotation = E.Quaternion_Quaternion$identity(), endRotation = E.Quaternion_Quaternion$identity(), beginScale = new E.Vector3(new Float64Array(3)), endScale = new E.Vector3(new Float64Array(3)); this.begin.decompose$3(beginTranslation, beginRotation, beginScale); this.end.decompose$3(endTranslation, endRotation, endScale); t1 = 1 - t; lerpTranslation = beginTranslation.scaled$1(t1).$add(0, endTranslation.scaled$1(t)); t2 = beginRotation.scaled$1(t1).$add(0, endRotation.scaled$1(t)); t3 = new Float64Array(4); lerpRotation = new E.Quaternion(t3); lerpRotation.setFrom$1(t2); lerpRotation.normalize$0(0); lerpScale = beginScale.scaled$1(t1).$add(0, endScale.scaled$1(t)); t1 = new Float64Array(16); t2 = new E.Matrix4(t1); x = t3[0]; y = t3[1]; z = t3[2]; w = t3[3]; x2 = x + x; y2 = y + y; z2 = z + z; xx = x * x2; xy = x * y2; xz = x * z2; yy = y * y2; yz = y * z2; zz = z * z2; wx = w * x2; wy = w * y2; wz = w * z2; arg0Storage = lerpTranslation._v3storage; t1[0] = 1 - (yy + zz); t1[1] = xy + wz; t1[2] = xz - wy; t1[3] = 0; t1[4] = xy - wz; t1[5] = 1 - (xx + zz); t1[6] = yz + wx; t1[7] = 0; t1[8] = xz + wy; t1[9] = yz - wx; t1[10] = 1 - (xx + yy); t1[11] = 0; t1[12] = arg0Storage[0]; t1[13] = arg0Storage[1]; t1[14] = arg0Storage[2]; t1[15] = 1; t2.scale$1(0, lerpScale); return t2; } }; G.TextStyleTween.prototype = { lerp$1: function(t) { var t1 = A.TextStyle_lerp(this.begin, this.end, t); t1.toString; return t1; } }; G.ImplicitlyAnimatedWidget.prototype = {}; G.ImplicitlyAnimatedWidgetState.prototype = { get$_implicit_animations$_controller: function() { var _this = this, t1 = _this.__ImplicitlyAnimatedWidgetState__controller; if (t1 === $) { t1 = _this._widget.duration; t1 = G.AnimationController$(null, t1, 0, null, 1, null, _this); if (_this.__ImplicitlyAnimatedWidgetState__controller === $) _this.__ImplicitlyAnimatedWidgetState__controller = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_controller")); } return t1; }, get$_animation: function() { var _this = this, t1 = _this.__ImplicitlyAnimatedWidgetState__animation; if (t1 === $) { t1 = _this.get$_implicit_animations$_controller(); t1 = _this.__ImplicitlyAnimatedWidgetState__animation = S.CurvedAnimation$(_this._widget.curve, t1, null); } return t1; }, initState$0: function() { var _this = this; _this.super$State$initState(); _this.get$_implicit_animations$_controller().addStatusListener$1(new G.ImplicitlyAnimatedWidgetState_initState_closure(_this)); _this._constructTweens$0(); _this.didUpdateTweens$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.curve !== oldWidget.curve) { t1 = _this.get$_implicit_animations$_controller(); _this.__ImplicitlyAnimatedWidgetState__animation = S.CurvedAnimation$(_this._widget.curve, t1, null); } _this.get$_implicit_animations$_controller().duration = _this._widget.duration; if (_this._constructTweens$0()) { _this.forEachTween$1(new G.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure(_this)); t1 = _this.get$_implicit_animations$_controller(); t1.set$value(0, 0); t1.forward$0(0); _this.didUpdateTweens$0(); } }, dispose$0: function(_) { this.get$_implicit_animations$_controller().dispose$0(0); this.super$_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin$dispose(0); }, _updateTween$2: function(tween, targetValue) { var t1; if (tween == null) return; t1 = this.get$_animation(); tween.set$begin(tween.transform$1(0, t1.get$value(t1))); tween.set$end(0, targetValue); }, _constructTweens$0: function() { var t1 = {}; t1.shouldStartAnimation = false; this.forEachTween$1(new G.ImplicitlyAnimatedWidgetState__constructTweens_closure(t1, this)); return t1.shouldStartAnimation; }, didUpdateTweens$0: function() { } }; G.ImplicitlyAnimatedWidgetState_initState_closure.prototype = { call$1: function($status) { switch ($status) { case C.AnimationStatus_3: this.$this._widget.toString; break; case C.AnimationStatus_0: case C.AnimationStatus_1: case C.AnimationStatus_2: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 35 }; G.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure.prototype = { call$3: function(tween, targetValue, $constructor) { this.$this._updateTween$2(tween, targetValue); return tween; }, $signature: 480 }; G.ImplicitlyAnimatedWidgetState__constructTweens_closure.prototype = { call$3: function(tween, targetValue, $constructor) { var t1; if (targetValue != null) { if (tween == null) tween = $constructor.call$1(targetValue); t1 = tween.end; if (!J.$eq$(targetValue, t1 == null ? tween.begin : t1)) this._box_0.shouldStartAnimation = true; } else tween = null; return tween; }, $signature: 480 }; G.AnimatedWidgetBaseState.prototype = { initState$0: function() { this.super$ImplicitlyAnimatedWidgetState$initState(); var t1 = this.get$_implicit_animations$_controller(); t1.didRegisterListener$0(); t1 = t1.AnimationLocalListenersMixin__listeners; t1._isDirty = true; t1._observer_list$_list.push(this.get$_handleAnimationChanged()); }, _handleAnimationChanged$0: function() { this.setState$1(new G.AnimatedWidgetBaseState__handleAnimationChanged_closure()); } }; G.AnimatedWidgetBaseState__handleAnimationChanged_closure.prototype = { call$0: function() { }, $signature: 0 }; G.AnimatedContainer.prototype = { createState$0: function() { return new G._AnimatedContainerState(null, C._StateLifecycle_0); } }; G._AnimatedContainerState.prototype = { forEachTween$1: function(visitor) { var t2, t3, t4, _this = this, _null = null, t1 = _this._implicit_animations$_alignment; _this._widget.toString; t2 = type$.nullable_AlignmentGeometryTween; _this._implicit_animations$_alignment = t2._as(visitor.call$3(t1, _null, new G._AnimatedContainerState_forEachTween_closure())); t1 = type$.nullable_EdgeInsetsGeometryTween; _this._implicit_animations$_padding = t1._as(visitor.call$3(_this._implicit_animations$_padding, _this._widget.padding, new G._AnimatedContainerState_forEachTween_closure0())); t3 = type$.nullable_DecorationTween; _this._implicit_animations$_decoration = t3._as(visitor.call$3(_this._implicit_animations$_decoration, _this._widget.decoration, new G._AnimatedContainerState_forEachTween_closure1())); t4 = _this._foregroundDecoration; _this._widget.toString; _this._foregroundDecoration = t3._as(visitor.call$3(t4, _null, new G._AnimatedContainerState_forEachTween_closure2())); _this._implicit_animations$_constraints = type$.nullable_BoxConstraintsTween._as(visitor.call$3(_this._implicit_animations$_constraints, _this._widget.constraints, new G._AnimatedContainerState_forEachTween_closure3())); _this._margin = t1._as(visitor.call$3(_this._margin, _this._widget.margin, new G._AnimatedContainerState_forEachTween_closure4())); t1 = _this._implicit_animations$_transform; _this._widget.toString; _this._implicit_animations$_transform = type$.nullable_Matrix4Tween._as(visitor.call$3(t1, _null, new G._AnimatedContainerState_forEachTween_closure5())); t1 = _this._transformAlignment; _this._widget.toString; _this._transformAlignment = t2._as(visitor.call$3(t1, _null, new G._AnimatedContainerState_forEachTween_closure6())); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, animation = _this.get$_animation(), t1 = _this._widget.child, t2 = _this._implicit_animations$_alignment; t2 = t2 == null ? _null : t2.transform$1(0, animation.get$value(animation)); t3 = _this._implicit_animations$_padding; t3 = t3 == null ? _null : t3.transform$1(0, animation.get$value(animation)); t4 = _this._implicit_animations$_decoration; t4 = t4 == null ? _null : t4.transform$1(0, animation.get$value(animation)); t5 = _this._foregroundDecoration; t5 = t5 == null ? _null : t5.transform$1(0, animation.get$value(animation)); t6 = _this._implicit_animations$_constraints; t6 = t6 == null ? _null : t6.transform$1(0, animation.get$value(animation)); t7 = _this._margin; t7 = t7 == null ? _null : t7.transform$1(0, animation.get$value(animation)); t8 = _this._implicit_animations$_transform; t8 = t8 == null ? _null : t8.transform$1(0, animation.get$value(animation)); t9 = _this._transformAlignment; t9 = t9 == null ? _null : t9.transform$1(0, animation.get$value(animation)); _this._widget.toString; return M.Container$(t2, t1, C.Clip_0, _null, t6, t4, t5, _null, _null, t7, t3, t8, t9, _null); } }; G._AnimatedContainerState_forEachTween_closure.prototype = { call$1: function(value) { return new S.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, $signature: 481 }; G._AnimatedContainerState_forEachTween_closure0.prototype = { call$1: function(value) { return new G.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 445 }; G._AnimatedContainerState_forEachTween_closure1.prototype = { call$1: function(value) { return new G.DecorationTween(type$.Decoration._as(value), null); }, $signature: 483 }; G._AnimatedContainerState_forEachTween_closure2.prototype = { call$1: function(value) { return new G.DecorationTween(type$.Decoration._as(value), null); }, $signature: 483 }; G._AnimatedContainerState_forEachTween_closure3.prototype = { call$1: function(value) { return new G.BoxConstraintsTween(type$.BoxConstraints._as(value), null); }, $signature: 2215 }; G._AnimatedContainerState_forEachTween_closure4.prototype = { call$1: function(value) { return new G.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 445 }; G._AnimatedContainerState_forEachTween_closure5.prototype = { call$1: function(value) { return new G.Matrix4Tween(type$.Matrix4._as(value), null); }, $signature: 2214 }; G._AnimatedContainerState_forEachTween_closure6.prototype = { call$1: function(value) { return new S.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, $signature: 481 }; G.AnimatedPadding.prototype = { createState$0: function() { return new G._AnimatedPaddingState(null, C._StateLifecycle_0); } }; G._AnimatedPaddingState.prototype = { forEachTween$1: function(visitor) { this._implicit_animations$_padding = type$.nullable_EdgeInsetsGeometryTween._as(visitor.call$3(this._implicit_animations$_padding, this._widget.padding, new G._AnimatedPaddingState_forEachTween_closure())); }, build$1: function(_, context) { var t2, t1 = this._implicit_animations$_padding; t1.toString; t2 = this.get$_animation(); return new T.Padding(J.clamp$2$n(t1.transform$1(0, t2.get$value(t2)), C.EdgeInsets_0_0_0_0, C._MixedEdgeInsets_QWq), this._widget.child, null); } }; G._AnimatedPaddingState_forEachTween_closure.prototype = { call$1: function(value) { return new G.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, $signature: 445 }; G.AnimatedOpacity.prototype = { createState$0: function() { return new G._AnimatedOpacityState(null, C._StateLifecycle_0); } }; G._AnimatedOpacityState.prototype = { forEachTween$1: function(visitor) { this._implicit_animations$_opacity = type$.nullable_Tween_double._as(visitor.call$3(this._implicit_animations$_opacity, this._widget.opacity, new G._AnimatedOpacityState_forEachTween_closure())); }, didUpdateTweens$0: function() { var t1 = this.get$_animation(), t2 = this._implicit_animations$_opacity; t2.toString; t1.toString; this.___AnimatedOpacityState__opacityAnimation = new R._AnimatedEvaluation(type$.Animation_double._as(t1), t2, H._instanceType(t2)._eval$1("_AnimatedEvaluation")); }, build$1: function(_, context) { var t2, t3, t1 = this.___AnimatedOpacityState__opacityAnimation; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_opacityAnimation")); t2 = this._widget; t3 = t2.child; return K.FadeTransition$(t2.alwaysIncludeSemantics, t3, t1); } }; G._AnimatedOpacityState_forEachTween_closure.prototype = { call$1: function(value) { return new R.Tween(H._asDoubleS(value), null, type$.Tween_double); }, $signature: 361 }; G.AnimatedDefaultTextStyle.prototype = { createState$0: function() { return new G._AnimatedDefaultTextStyleState(null, C._StateLifecycle_0); } }; G._AnimatedDefaultTextStyleState.prototype = { forEachTween$1: function(visitor) { this._implicit_animations$_style = type$.nullable_TextStyleTween._as(visitor.call$3(this._implicit_animations$_style, this._widget.style, new G._AnimatedDefaultTextStyleState_forEachTween_closure())); }, build$1: function(_, context) { var t2, t3, _null = null, t1 = this._implicit_animations$_style; t1.toString; t2 = this.get$_animation(); t2 = t1.transform$1(0, t2.get$value(t2)); t1 = this._widget; t3 = t1.softWrap; return L.DefaultTextStyle$(t1.child, _null, _null, C.TextOverflow_0, t3, t2, _null, _null, C.TextWidthBasis_0); } }; G._AnimatedDefaultTextStyleState_forEachTween_closure.prototype = { call$1: function(value) { return new G.TextStyleTween(type$.TextStyle._as(value), null); }, $signature: 2213 }; G.AnimatedPhysicalModel.prototype = { createState$0: function() { return new G._AnimatedPhysicalModelState(null, C._StateLifecycle_0); } }; G._AnimatedPhysicalModelState.prototype = { forEachTween$1: function(visitor) { var t1, _this = this; _this._borderRadius = type$.nullable_BorderRadiusTween._as(visitor.call$3(_this._borderRadius, _this._widget.borderRadius, new G._AnimatedPhysicalModelState_forEachTween_closure())); _this._implicit_animations$_elevation = type$.nullable_Tween_double._as(visitor.call$3(_this._implicit_animations$_elevation, _this._widget.elevation, new G._AnimatedPhysicalModelState_forEachTween_closure0())); t1 = type$.nullable_ColorTween; _this._implicit_animations$_color = t1._as(visitor.call$3(_this._implicit_animations$_color, _this._widget.color, new G._AnimatedPhysicalModelState_forEachTween_closure1())); _this._implicit_animations$_shadowColor = t1._as(visitor.call$3(_this._implicit_animations$_shadowColor, _this._widget.shadowColor, new G._AnimatedPhysicalModelState_forEachTween_closure2())); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, _this = this, t1 = _this._widget, t2 = t1.child, t3 = t1.shape; t1 = t1.clipBehavior; t4 = _this._borderRadius; t4.toString; t5 = _this.get$_animation(); t5 = t4.transform$1(0, t5.get$value(t5)); t4 = _this._implicit_animations$_elevation; t4.toString; t6 = _this.get$_animation(); t6 = t4.transform$1(0, t6.get$value(t6)); t4 = _this._widget.color; t7 = _this._implicit_animations$_shadowColor; t7.toString; t8 = _this.get$_animation(); t8 = t7.transform$1(0, t8.get$value(t8)); t8.toString; t7 = t8; return new T.PhysicalModel(t3, t1, t5, t6, t4, t7, t2, null); } }; G._AnimatedPhysicalModelState_forEachTween_closure.prototype = { call$1: function(value) { return new G.BorderRadiusTween(type$.BorderRadius._as(value), null); }, $signature: 1651 }; G._AnimatedPhysicalModelState_forEachTween_closure0.prototype = { call$1: function(value) { return new R.Tween(H._asDoubleS(value), null, type$.Tween_double); }, $signature: 361 }; G._AnimatedPhysicalModelState_forEachTween_closure1.prototype = { call$1: function(value) { return new R.ColorTween(type$.Color._as(value), null); }, $signature: 362 }; G._AnimatedPhysicalModelState_forEachTween_closure2.prototype = { call$1: function(value) { return new R.ColorTween(type$.Color._as(value), null); }, $signature: 362 }; G._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; S.InheritedNotifier.prototype = { updateShouldNotify$1: function(oldWidget) { return oldWidget.notifier != this.notifier; }, createElement$0: function(_) { var t1 = type$.Element_2, t2 = P.HashMap_HashMap(null, null, null, t1, type$.nullable_Object), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; t1 = new S._InheritedNotifierElement(t2, t3, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1), H._instanceType(this)._eval$1("_InheritedNotifierElement")); t3 = this.notifier; if (t3 != null) { t2 = t3.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1.get$_handleUpdate()), false); } return t1; } }; S._InheritedNotifierElement.prototype = { get$widget: function() { return this.$ti._eval$1("InheritedNotifier<1>")._as(N.InheritedElement.prototype.get$widget.call(this)); }, update$1: function(_, newWidget) { var t1, _this = this, oldNotifier = _this.$ti._eval$1("InheritedNotifier<1>")._as(N.InheritedElement.prototype.get$widget.call(_this)).notifier, newNotifier = newWidget.notifier; if (oldNotifier != newNotifier) { if (oldNotifier != null) oldNotifier.removeListener$1(0, _this.get$_handleUpdate()); if (newNotifier != null) { t1 = newNotifier.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleUpdate()), false); } } _this.super$ProxyElement$update(0, newWidget); }, build$0: function(_) { var _this = this; if (_this._inherited_notifier$_dirty) { _this.super$InheritedElement$notifyClients(_this.$ti._eval$1("InheritedNotifier<1>")._as(N.InheritedElement.prototype.get$widget.call(_this))); _this._inherited_notifier$_dirty = false; } return _this.super$ProxyElement$build(0); }, _handleUpdate$0: function() { this._inherited_notifier$_dirty = true; this.markNeedsBuild$0(); }, notifyClients$1: function(oldWidget) { this.super$InheritedElement$notifyClients(oldWidget); this._inherited_notifier$_dirty = false; }, unmount$0: function() { var _this = this, t1 = _this.$ti._eval$1("InheritedNotifier<1>")._as(N.InheritedElement.prototype.get$widget.call(_this)).notifier; if (t1 != null) t1.removeListener$1(0, _this.get$_handleUpdate()); _this.super$Element$unmount(); } }; M.InheritedTheme.prototype = {}; M.InheritedTheme_capture__debugDidFindAncestor_set.prototype = { call$1: function(t1) { return this._box_0._debugDidFindAncestor = t1; }, $signature: 686 }; M.InheritedTheme_capture_closure.prototype = { call$1: function(ancestor) { var theme, themeType, t1; if (ancestor.$eq(0, this.to)) return false; if (ancestor instanceof N.InheritedElement && ancestor.get$widget() instanceof M.InheritedTheme) { theme = type$.InheritedTheme._as(ancestor.get$widget()); themeType = J.get$runtimeType$(theme); t1 = this.themeTypes; if (!t1.contains$1(0, themeType)) { t1.add$1(0, themeType); this.themes.push(theme); } } return true; }, $signature: 119 }; M.CapturedThemes.prototype = {}; M._CaptureAll.prototype = { build$1: function(_, context) { var t1, t2, _i, wrappedChild = this.child; for (t1 = this.themes, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) wrappedChild = t1[_i].wrap$2(0, context, wrappedChild); return wrappedChild; } }; A.ConstrainedLayoutBuilder.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new A._LayoutBuilderElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2), H._instanceType(this)._eval$1("_LayoutBuilderElement")); }, get$builder: function() { return this.builder; } }; A._LayoutBuilderElement.prototype = { get$widget: function() { return this.$ti._eval$1("ConstrainedLayoutBuilder<1>")._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, visitChildren$1: function(visitor) { var t1 = this._layout_builder$_child; if (t1 != null) visitor.call$1(t1); }, forgetChild$1: function(child) { this._layout_builder$_child = null; this.super$Element$forgetChild(child); }, mount$2: function($parent, newSlot) { var _this = this; _this.super$RenderObjectElement$mount($parent, newSlot); _this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)).updateCallback$1(_this.get$_layout()); }, update$1: function(_, newWidget) { var t1, _this = this; _this.super$RenderObjectElement$update(0, newWidget); t1 = _this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>"); t1._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)).updateCallback$1(_this.get$_layout()); t1 = t1._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)); t1.RenderConstrainedLayoutBuilder__needsBuild = true; t1.markNeedsLayout$0(); }, performRebuild$0: function() { var t1 = this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); t1.RenderConstrainedLayoutBuilder__needsBuild = true; t1.markNeedsLayout$0(); this.super$RenderObjectElement$performRebuild(); }, unmount$0: function() { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).updateCallback$1(null); this.super$RenderObjectElement$unmount(); }, _layout$1: function(constraints) { this._owner.buildScope$2(this, new A._LayoutBuilderElement__layout_closure(this, constraints)); }, insertRenderObjectChild$2: function(child, slot) { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(child); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { this.$ti._eval$1("RenderConstrainedLayoutBuilder<1,RenderObject>")._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); } }; A._LayoutBuilderElement__layout_closure.prototype = { call$0: function() { var e, stack, e0, stack0, t1, t2, exception, built0, _this = this, built = null; try { t1 = _this.$this; t2 = t1.$ti._eval$1("ConstrainedLayoutBuilder<1>"); built = t2._as(N.RenderObjectElement.prototype.get$widget.call(t1)).get$builder().call$2(t1, _this.constraints); t2._as(N.RenderObjectElement.prototype.get$widget.call(t1)); } catch (exception) { e = H.unwrapException(exception); stack = H.getTraceFromException(exception); t1 = _this.$this; built0 = N.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException0(U.ErrorDescription$("building " + H.S(t1.$ti._eval$1("ConstrainedLayoutBuilder<1>")._as(N.RenderObjectElement.prototype.get$widget.call(t1)))), e, stack, new A._LayoutBuilderElement__layout__closure(t1))); built = built0; } try { t1 = _this.$this; t1._layout_builder$_child = t1.updateChild$3(t1._layout_builder$_child, built, null); } catch (exception) { e0 = H.unwrapException(exception); stack0 = H.getTraceFromException(exception); t1 = _this.$this; built0 = N.ErrorWidget__defaultErrorWidgetBuilder(A._debugReportException0(U.ErrorDescription$("building " + H.S(t1.$ti._eval$1("ConstrainedLayoutBuilder<1>")._as(N.RenderObjectElement.prototype.get$widget.call(t1)))), e0, stack0, new A._LayoutBuilderElement__layout__closure0(t1))); built = built0; t1._layout_builder$_child = t1.updateChild$3(null, built, t1._slot); } }, $signature: 0 }; A._LayoutBuilderElement__layout__closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return K.DiagnosticsDebugCreator$(new N.DebugCreator($async$self.$this)); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; A._LayoutBuilderElement__layout__closure0.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return K.DiagnosticsDebugCreator$(new N.DebugCreator($async$self.$this)); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; A.RenderConstrainedLayoutBuilder.prototype = { updateCallback$1: function(value) { if (J.$eq$(value, this.RenderConstrainedLayoutBuilder__callback)) return; this.RenderConstrainedLayoutBuilder__callback = value; this.markNeedsLayout$0(); }, rebuildIfNecessary$0: function() { var t1, _this = this; if (_this.RenderConstrainedLayoutBuilder__needsBuild || !J.$eq$(_this.get$constraints(), _this.RenderConstrainedLayoutBuilder__previousConstraints)) { _this.RenderConstrainedLayoutBuilder__previousConstraints = _this.get$constraints(); _this.RenderConstrainedLayoutBuilder__needsBuild = false; t1 = _this.RenderConstrainedLayoutBuilder__callback; t1.toString; _this.invokeLayoutCallback$1$1(t1, H._instanceType(_this)._eval$1("RenderConstrainedLayoutBuilder.0")); } } }; A.LayoutBuilder.prototype = { get$builder: function() { return this.builder; }, createRenderObject$1: function(context) { var t1 = new A._RenderLayoutBuilder(null, true, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; A._RenderLayoutBuilder.prototype = { computeMinIntrinsicWidth$1: function(height) { return 0; }, computeMaxIntrinsicWidth$1: function(height) { return 0; }, computeMinIntrinsicHeight$1: function(width) { return 0; }, computeMaxIntrinsicHeight$1: function(width) { return 0; }, computeDryLayout$1: function(constraints) { return C.Size_0_0; }, performLayout$0: function() { var t1, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this.rebuildIfNecessary$0(); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, constraints, true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } else _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, computeDistanceToActualBaseline$1: function(baseline) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1.getDistanceToActualBaseline$1(baseline); return this.super$RenderBox$computeDistanceToActualBaseline(baseline); }, hitTestChildren$2$position: function(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, paint$2: function(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder.prototype = {}; L._Pending.prototype = {}; L._loadAll_closure.prototype = { call$1: function(value) { return this._box_0.completedValue = value; }, $signature: 10 }; L._loadAll_closure0.prototype = { call$1: function(p) { return p.futureValue; }, $signature: 2184 }; L._loadAll_closure1.prototype = { call$1: function(values) { var t1, t2, t3, i; for (t1 = J.getInterceptor$asx(values), t2 = this._box_1, t3 = this.output, i = 0; i < t1.get$length(values); ++i) t3.$indexSet(0, H.createRuntimeType(H._instanceType(t2.pendingList[i].delegate)._eval$1("LocalizationsDelegate.T")), t1.$index(values, i)); return t3; }, $signature: 2176 }; L.LocalizationsDelegate.prototype = { toString$0: function(_) { return "LocalizationsDelegate[" + H.createRuntimeType(H._instanceType(this)._eval$1("LocalizationsDelegate.T")).toString$0(0) + "]"; } }; L._WidgetsLocalizationsDelegate.prototype = { isSupported$1: function(locale) { return true; }, load$1: function(_, locale) { return new O.SynchronousFuture(C.C_DefaultWidgetsLocalizations, type$.SynchronousFuture_WidgetsLocalizations); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "DefaultWidgetsLocalizations.delegate(en_US)"; } }; L.DefaultWidgetsLocalizations.prototype = { get$textDirection: function(_) { return C.TextDirection_1; }, $isWidgetsLocalizations: 1 }; L._LocalizationsScope.prototype = { updateShouldNotify$1: function(old) { var t1 = this.typeToResources, t2 = old.typeToResources; return t1 == null ? t2 != null : t1 !== t2; } }; L.Localizations.prototype = { createState$0: function() { return new L._LocalizationsState(new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.dynamic), C._StateLifecycle_0); } }; L._LocalizationsState.prototype = { initState$0: function() { this.super$State$initState(); this.load$1(0, this._widget.locale); }, _anyDelegatesShouldReload$1: function(old) { var delegates, oldDelegates, i, delegate, oldDelegate, t1 = this._widget.delegates, t2 = old.delegates; if (t1.length !== t2.length) return true; delegates = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); oldDelegates = H.setRuntimeTypeInfo(t2.slice(0), H._arrayInstanceType(t2)); for (i = 0; i < delegates.length; ++i) { delegate = delegates[i]; oldDelegate = oldDelegates[i]; if (J.get$runtimeType$(delegate) === J.get$runtimeType$(oldDelegate)) { delegate.shouldReload$1(oldDelegate); t1 = false; } else t1 = true; if (t1) return true; } return false; }, didUpdateWidget$1: function(old) { var t1, _this = this; _this.super$State$didUpdateWidget(old); if (J.$eq$(_this._widget.locale, old.locale)) { _this._widget.toString; t1 = _this._anyDelegatesShouldReload$1(old); } else t1 = true; if (t1) _this.load$1(0, _this._widget.locale); }, load$1: function(_, locale) { var typeToResourcesFuture, _this = this, t1 = {}, delegates = _this._widget.delegates, t2 = delegates.length; if (t2 === 0) { _this._localizations$_locale = locale; return; } t1.typeToResources = null; typeToResourcesFuture = L._loadAll(locale, delegates).then$1$1(0, new L._LocalizationsState_load_closure(t1), type$.Map_Type_dynamic); t1 = t1.typeToResources; if (t1 != null) { _this._typeToResources = t1; _this._localizations$_locale = locale; } else { ++$.RendererBinding__instance.RendererBinding__firstFrameDeferredCount; typeToResourcesFuture.then$1$1(0, new L._LocalizationsState_load_closure0(_this, locale), type$.void); } }, get$_localizations$_textDirection: function() { var resources = type$.WidgetsLocalizations._as(J.$index$asx(this._typeToResources, C.Type_WidgetsLocalizations_43h)); return resources.get$textDirection(resources); }, build$1: function(_, context) { var t1, t2, t3, t4, _this = this, _null = null; if (_this._localizations$_locale == null) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = _this.get$_localizations$_textDirection(); _this._localizations$_locale.toString; t2 = _this._typeToResources; t3 = _this.get$_localizations$_textDirection(); t4 = _this._widget.child; t4.toString; t3 = T.Directionality$(t4, t3); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null), false, false, false, new L._LocalizationsScope(_this, t2, t3, _this._localizedResourcesScopeKey), _null); } }; L._LocalizationsState_load_closure.prototype = { call$1: function(value) { return this._box_0.typeToResources = value; }, $signature: 2153 }; L._LocalizationsState_load_closure0.prototype = { call$1: function(value) { var t1 = this.$this; if (t1._framework$_element != null) t1.setState$1(new L._LocalizationsState_load__closure(t1, value, this.locale)); $.RendererBinding__instance.allowFirstFrame$0(); }, $signature: 2144 }; L._LocalizationsState_load__closure.prototype = { call$0: function() { var t1 = this.$this; t1._typeToResources = this.value; t1._localizations$_locale = this.locale; }, $signature: 0 }; F.Orientation.prototype = { toString$0: function(_) { return this._media_query$_name; } }; F.MediaQueryData.prototype = { get$orientation: function(_) { var t1 = this.size; return t1._dx > t1._dy ? C.Orientation_1 : C.Orientation_0; }, copyWith$4$alwaysUse24HourFormat$padding$platformBrightness$textScaleFactor: function(alwaysUse24HourFormat, padding, platformBrightness, textScaleFactor) { var _this = this, t1 = textScaleFactor == null ? _this.textScaleFactor : textScaleFactor, t2 = padding == null ? _this.padding : padding, t3 = alwaysUse24HourFormat == null ? _this.alwaysUse24HourFormat : alwaysUse24HourFormat; return new F.MediaQueryData(_this.size, _this.devicePixelRatio, t1, _this.platformBrightness, _this.viewInsets, t2, _this.viewPadding, _this.systemGestureInsets, t3, _this.accessibleNavigation, _this.invertColors, _this.highContrast, _this.disableAnimations, _this.boldText, _this.navigationMode); }, copyWith$1$platformBrightness: function(platformBrightness) { return this.copyWith$4$alwaysUse24HourFormat$padding$platformBrightness$textScaleFactor(null, null, platformBrightness, null); }, copyWith$1$padding: function(padding) { return this.copyWith$4$alwaysUse24HourFormat$padding$platformBrightness$textScaleFactor(null, padding, null, null); }, copyWith$1$textScaleFactor: function(textScaleFactor) { return this.copyWith$4$alwaysUse24HourFormat$padding$platformBrightness$textScaleFactor(null, null, null, textScaleFactor); }, copyWith$1$alwaysUse24HourFormat: function(alwaysUse24HourFormat) { return this.copyWith$4$alwaysUse24HourFormat$padding$platformBrightness$textScaleFactor(alwaysUse24HourFormat, null, null, null); }, removePadding$4$removeBottom$removeLeft$removeRight$removeTop: function(removeBottom, removeLeft, removeRight, removeTop) { var t1, t2, t3, t4, t5, t6, _this = this, _null = null; if (!(removeLeft || removeTop || removeRight || removeBottom)) return _this; t1 = _this.padding; t2 = removeLeft ? 0 : _null; t3 = removeTop ? 0 : _null; t4 = removeRight ? 0 : _null; t2 = t1.copyWith$4$bottom$left$right$top(removeBottom ? 0 : _null, t2, t4, t3); t3 = _this.viewPadding; t4 = removeLeft ? Math.max(0, t3.left - t1.left) : _null; t5 = removeTop ? Math.max(0, t3.top - t1.top) : _null; t6 = removeRight ? Math.max(0, t3.right - t1.right) : _null; return new F.MediaQueryData(_this.size, _this.devicePixelRatio, _this.textScaleFactor, _this.platformBrightness, _this.viewInsets, t2, t3.copyWith$4$bottom$left$right$top(removeBottom ? Math.max(0, t3.bottom - t1.bottom) : _null, t4, t6, t5), C.EdgeInsets_0_0_0_0, _this.alwaysUse24HourFormat, _this.accessibleNavigation, _this.invertColors, _this.highContrast, _this.disableAnimations, _this.boldText, C.NavigationMode_0); }, removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop: function(removeBottom, removeLeft, removeRight, removeTop) { var t1, t2, t3, t4, t5, _this = this, _null = null; if (!removeLeft) !removeTop; t1 = _this.viewPadding; t2 = removeLeft ? Math.max(0, t1.left - _this.viewInsets.left) : _null; t3 = removeTop ? Math.max(0, t1.top - _this.viewInsets.top) : _null; t4 = removeRight ? Math.max(0, t1.right - _this.viewInsets.right) : _null; t5 = _this.viewInsets; t1 = t1.copyWith$4$bottom$left$right$top(Math.max(0, t1.bottom - t5.bottom), t2, t4, t3); t2 = removeLeft ? 0 : _null; t3 = removeTop ? 0 : _null; t4 = removeRight ? 0 : _null; return new F.MediaQueryData(_this.size, _this.devicePixelRatio, _this.textScaleFactor, _this.platformBrightness, t5.copyWith$4$bottom$left$right$top(0, t2, t4, t3), _this.padding, t1, C.EdgeInsets_0_0_0_0, _this.alwaysUse24HourFormat, _this.accessibleNavigation, _this.invertColors, _this.highContrast, _this.disableAnimations, _this.boldText, C.NavigationMode_0); }, removeViewInsets$1$removeBottom: function(removeBottom) { return this.removeViewInsets$4$removeBottom$removeLeft$removeRight$removeTop(removeBottom, false, false, false); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof F.MediaQueryData && other.size.$eq(0, _this.size) && other.devicePixelRatio === _this.devicePixelRatio && other.textScaleFactor === _this.textScaleFactor && other.platformBrightness === _this.platformBrightness && other.padding.$eq(0, _this.padding) && other.viewPadding.$eq(0, _this.viewPadding) && other.viewInsets.$eq(0, _this.viewInsets) && other.alwaysUse24HourFormat === _this.alwaysUse24HourFormat && other.highContrast === _this.highContrast && other.disableAnimations === _this.disableAnimations && other.invertColors === _this.invertColors && other.accessibleNavigation === _this.accessibleNavigation && other.boldText === _this.boldText && other.navigationMode === _this.navigationMode; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.size, _this.devicePixelRatio, _this.textScaleFactor, _this.platformBrightness, _this.padding, _this.viewPadding, _this.viewInsets, _this.alwaysUse24HourFormat, _this.highContrast, _this.disableAnimations, _this.invertColors, _this.accessibleNavigation, _this.boldText, _this.navigationMode, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "MediaQueryData(" + C.JSArray_methods.join$1(H.setRuntimeTypeInfo(["size: " + _this.size.toString$0(0), "devicePixelRatio: " + C.JSNumber_methods.toStringAsFixed$1(_this.devicePixelRatio, 1), "textScaleFactor: " + C.JSNumber_methods.toStringAsFixed$1(_this.textScaleFactor, 1), "platformBrightness: " + _this.platformBrightness.toString$0(0), "padding: " + _this.padding.toString$0(0), "viewPadding: " + _this.viewPadding.toString$0(0), "viewInsets: " + _this.viewInsets.toString$0(0), "alwaysUse24HourFormat: " + _this.alwaysUse24HourFormat, "accessibleNavigation: " + _this.accessibleNavigation, "highContrast: " + _this.highContrast, "disableAnimations: " + _this.disableAnimations, "invertColors: " + _this.invertColors, "boldText: " + _this.boldText, "navigationMode: " + Y.describeEnum(_this.navigationMode)], type$.JSArray_String), ", ") + ")"; } }; F.MediaQuery.prototype = { updateShouldNotify$1: function(oldWidget) { return !this.data.$eq(0, oldWidget.data); } }; F.NavigationMode.prototype = { toString$0: function(_) { return this._media_query$_name; } }; X.ModalBarrier.prototype = { build$1: function(_, context) { var platformSupportsDismissingBarrier, semanticsDismissible, t1, t2, t3, t4, t5, t6, _this = this, _null = null; switch (U.defaultTargetPlatform()) { case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: platformSupportsDismissingBarrier = false; break; case C.TargetPlatform_2: case C.TargetPlatform_4: platformSupportsDismissingBarrier = true; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } semanticsDismissible = _this.dismissible && platformSupportsDismissingBarrier; t1 = new X.ModalBarrier_build_handleDismiss(context); t2 = !semanticsDismissible || false; t3 = semanticsDismissible ? _this.semanticsLabel : _null; t4 = semanticsDismissible ? t1 : _null; if (semanticsDismissible && _this.semanticsLabel != null) { t5 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t5.toString; t5 = t5.textDirection; } else t5 = _null; t6 = _this.color; t6 = t6 == null ? _null : new T.ColoredBox(t6, _null, _null); return T.BlockSemantics$(new T.ExcludeSemantics(t2, new X._ModalBarrierGestureDetector(new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _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, _null, t5, _null, _null, _null), false, false, false, new T.MouseRegion(_null, _null, _null, C.SystemMouseCursor_basic, true, new T.ConstrainedBox(C.BoxConstraints_ALM, t6, _null), _null), _null), new X.ModalBarrier_build_closure(_this, t1), _null), _null)); } }; X.ModalBarrier_build_handleDismiss.prototype = { call$0: function() { K.Navigator_maybePop(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; X.ModalBarrier_build_closure.prototype = { call$0: function() { if (this.$this.dismissible) this.handleDismiss.call$0(); else V.SystemSound_play(C.SystemSoundType_1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; X.AnimatedModalBarrier.prototype = { build$1: function(_, context) { var t1 = type$.Animation_nullable_Color._as(this.listenable); return new X.ModalBarrier(t1.get$value(t1), this.dismissible, true, this.semanticsLabel, null); } }; X._AnyTapGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { if (this.onAnyTapUp == null) return false; return this.super$GestureRecognizer$isPointerAllowed($event); }, handleTapDown$1$down: function(down) { }, handleTapUp$2$down$up: function(down, up) { var t1 = this.onAnyTapUp; if (t1 != null) t1.call$0(); }, handleTapCancel$3$cancel$down$reason: function(cancel, down, reason) { } }; X._ModalBarrierSemanticsDelegate.prototype = { assignSemantics$1: function(renderObject) { renderObject.set$onTap(this.onDismiss); } }; X._AnyTapGestureRecognizerFactory.prototype = { constructor$0: function(_) { var t1 = type$.int; return new X._AnyTapGestureRecognizer(C.Duration_100000, 18, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), null, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, initializer$1: function(instance) { instance.onAnyTapUp = this.onAnyTapUp; } }; X._ModalBarrierGestureDetector.prototype = { build$1: function(_, context) { var t1 = this.onDismiss; return new D.RawGestureDetector(this.child, P.LinkedHashMap_LinkedHashMap$_literal([C.Type__AnyTapGestureRecognizer_5RQ, new X._AnyTapGestureRecognizerFactory(t1)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), C.HitTestBehavior_1, false, new X._ModalBarrierSemanticsDelegate(t1), null); } }; E.NavigationToolbar.prototype = { build$1: function(_, context) { var t2, t3, _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t2 = H.setRuntimeTypeInfo([], type$.JSArray_Widget); t3 = _this.leading; if (t3 != null) t2.push(T.LayoutId$(t3, C._ToolbarSlot_0)); t3 = _this.middle; if (t3 != null) t2.push(T.LayoutId$(t3, C._ToolbarSlot_1)); t3 = _this.trailing; if (t3 != null) t2.push(T.LayoutId$(t3, C._ToolbarSlot_2)); return new T.CustomMultiChildLayout(new E._ToolbarLayout(_this.centerMiddle, _this.middleSpacing, t1.textDirection), t2, null); } }; E._ToolbarSlot.prototype = { toString$0: function(_) { return this._navigation_toolbar$_name; } }; E._ToolbarLayout.prototype = { performLayout$1: function(size) { var t1, t2, leadingWidth, leadingX, trailingSize, trailingX, trailingWidth, maxWidth, middleSize, middleStartMargin, t3, t4, middleStart, t5, middleX, _this = this, _s80_ = string$.x60null_c; if (_this._idToChild.$index(0, C._ToolbarSlot_0) != null) { t1 = size._dx; t2 = size._dy; leadingWidth = _this.layoutChild$2(C._ToolbarSlot_0, new S.BoxConstraints(0, t1 / 3, t2, t2))._dx; switch (_this.textDirection) { case C.TextDirection_0: leadingX = t1 - leadingWidth; break; case C.TextDirection_1: leadingX = 0; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this.positionChild$2(C._ToolbarSlot_0, new P.Offset(leadingX, 0)); } else leadingWidth = 0; if (_this._idToChild.$index(0, C._ToolbarSlot_2) != null) { trailingSize = _this.layoutChild$2(C._ToolbarSlot_2, S.BoxConstraints$loose(size)); switch (_this.textDirection) { case C.TextDirection_0: trailingX = 0; break; case C.TextDirection_1: trailingX = size._dx - trailingSize._dx; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } t1 = size._dy; t2 = trailingSize._dy; trailingWidth = trailingSize._dx; _this.positionChild$2(C._ToolbarSlot_2, new P.Offset(trailingX, (t1 - t2) / 2)); } else trailingWidth = 0; if (_this._idToChild.$index(0, C._ToolbarSlot_1) != null) { t1 = size._dx; t2 = _this.middleSpacing; maxWidth = Math.max(t1 - leadingWidth - trailingWidth - t2 * 2, 0); middleSize = _this.layoutChild$2(C._ToolbarSlot_1, S.BoxConstraints$loose(size).copyWith$1$maxWidth(maxWidth)); middleStartMargin = leadingWidth + t2; t2 = size._dy; t3 = middleSize._dy; if (_this.centerMiddle) { t4 = middleSize._dx; middleStart = (t1 - t4) / 2; t5 = t1 - trailingWidth; if (middleStart + t4 > t5) middleStart = t5 - t4; else if (middleStart < middleStartMargin) middleStart = middleStartMargin; } else middleStart = middleStartMargin; switch (_this.textDirection) { case C.TextDirection_0: middleX = t1 - middleSize._dx - middleStart; break; case C.TextDirection_1: middleX = middleStart; break; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } _this.positionChild$2(C._ToolbarSlot_1, new P.Offset(middleX, (t2 - t3) / 2)); } }, shouldRelayout$1: function(oldDelegate) { return oldDelegate.centerMiddle != this.centerMiddle || oldDelegate.middleSpacing !== this.middleSpacing || oldDelegate.textDirection != this.textDirection; } }; K.RoutePopDisposition.prototype = { toString$0: function(_) { return this._navigator$_name; } }; K.Route.prototype = { get$overlayEntries: function() { return C.List_empty4; }, install$0: function() { }, didPush$0: function() { var t1 = M.TickerFuture$complete(); t1.then$1$1(0, new K.Route_didPush_closure(this), type$.void); return t1; }, didAdd$0: function() { M.TickerFuture$complete().then$1$1(0, new K.Route_didAdd_closure(this), type$.void); }, didReplace$1: function(oldRoute) { }, willPop$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this; var $async$willPop$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.get$isFirst() ? C.RoutePopDisposition_2 : C.RoutePopDisposition_0; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$willPop$0, $async$completer); }, get$willHandlePopInternally: function() { return false; }, didPop$1: function(result) { this.didComplete$1(result); return true; }, didComplete$1: function(result) { var t1 = result == null ? null : result; this._popCompleter.complete$1(0, t1); }, didPopNext$1: function(nextRoute) { }, didChangeNext$1: function(nextRoute) { }, didChangePrevious$1: function(previousRoute) { }, changedInternalState$0: function() { }, changedExternalState$0: function() { }, dispose$0: function(_) { this._navigator$_navigator = null; }, get$isCurrent: function() { var currentRouteEntry, t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); currentRouteEntry = t1.lastWhere$2$orElse(t1, new K.Route_isCurrent_closure(), new K.Route_isCurrent_closure0()); if (currentRouteEntry == null) return false; return currentRouteEntry.route === this; }, get$isFirst: function() { var currentRouteEntry, t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); currentRouteEntry = t1.firstWhere$2$orElse(t1, new K.Route_isFirst_closure(), new K.Route_isFirst_closure0()); if (currentRouteEntry == null) return false; return currentRouteEntry.route === this; }, get$hasActiveRouteBelow: function() { var t2, _i, entry, t3, t1 = this._navigator$_navigator; if (t1 == null) return false; for (t1 = t1._history, t2 = t1.length, _i = 0; _i < t2; ++_i) { entry = t1[_i]; if (entry.route === this) return false; t3 = entry.currentState.index; if (t3 <= 9 && t3 >= 1) return true; } return false; }, get$isActive: function() { var t1 = this._navigator$_navigator; if (t1 == null) return false; t1 = t1._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); t1 = t1.firstWhere$2$orElse(t1, new K.Route_isActive_closure(this), new K.Route_isActive_closure0()); return (t1 == null ? null : t1.get$isPresent()) === true; } }; K.Route_didPush_closure.prototype = { call$1: function(_) { var t1 = this.$this._navigator$_navigator; if (t1 != null) t1.focusScopeNode.requestFocus$0(); }, $signature: 83 }; K.Route_didAdd_closure.prototype = { call$1: function(_) { var t1 = this.$this._navigator$_navigator; if (t1 != null) t1.focusScopeNode.requestFocus$0(); }, $signature: 83 }; K.Route_isCurrent_closure.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.Route_isCurrent_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.Route_isFirst_closure.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.Route_isFirst_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.Route_isActive_closure.prototype = { call$1: function(e) { return e != null && K._RouteEntry_isRoutePredicate(this.$this).call$1(e); }, $signature: 180 }; K.Route_isActive_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.RouteSettings.prototype = { toString$0: function(_) { return 'RouteSettings("' + H.S(this.name) + '", ' + H.S(this.$arguments) + ")"; }, get$name: function(receiver) { return this.name; } }; K.NavigatorObserver.prototype = { didPush$2: function(route, previousRoute) { }, didPop$2: function(route, previousRoute) { }, didReplace$2$newRoute$oldRoute: function(newRoute, oldRoute) { }, didStartUserGesture$2: function(route, previousRoute) { }, didStopUserGesture$0: function() { } }; K.HeroControllerScope.prototype = { updateShouldNotify$1: function(oldWidget) { return oldWidget.controller != this.controller; } }; K.RouteTransitionRecord.prototype = {}; K.TransitionDelegate.prototype = {}; K.DefaultTransitionDelegate.prototype = {}; K.Navigator.prototype = { createState$0: function() { var _null = null, t1 = type$.LinkedList__ListenerEntry, t2 = type$._NavigatorObservation; return new K.NavigatorState(H.setRuntimeTypeInfo([], type$.JSArray__RouteEntry), new K._HistoryProperty(new P.LinkedList(t1)), P.ListQueue$(_null, t2), P.ListQueue$(_null, t2), O.FocusScopeNode$(true, "Navigator Scope", false), new U.RestorableNum(0, new P.LinkedList(t1), type$.RestorableNum_int), new B.ValueNotifier(false, new P.LinkedList(t1), type$.ValueNotifier_bool), P.LinkedHashSet_LinkedHashSet$_empty(type$.int), _null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, C._StateLifecycle_0); }, onGenerateInitialRoutes$2: function(arg0, arg1) { return this.onGenerateInitialRoutes.call$2(arg0, arg1); } }; K.Navigator_defaultGenerateInitialRoutes_closure.prototype = { call$1: function(route) { return route == null; }, $signature: 2143 }; K._RouteLifecycle.prototype = { toString$0: function(_) { return this._navigator$_name; } }; K._NotAnnounced.prototype = {}; K._RouteEntry.prototype = { get$restorationId: function() { this.route.toString; var t1 = this.restorationInformation; if (t1 != null) return "r+" + H.S(t1.get$restorationScopeId()); return null; }, handlePush$4$isNewFirst$navigator$previous$previousPresent: function(isNewFirst, $navigator, previous, previousPresent) { var t2, routeFuture, t3, _this = this, previousState = _this.currentState, t1 = _this.route; t1._navigator$_navigator = $navigator; t1.install$0(); t2 = _this.currentState; if (t2 === C._RouteLifecycle_3 || t2 === C._RouteLifecycle_4) { routeFuture = t1.didPush$0(); _this.currentState = C._RouteLifecycle_5; routeFuture.whenCompleteOrCancel$1(new K._RouteEntry_handlePush_closure(_this, $navigator)); } else { t1.didReplace$1(previous); _this.currentState = C._RouteLifecycle_7; } if (isNewFirst) t1.didChangeNext$1(null); t2 = previousState === C._RouteLifecycle_6 || previousState === C._RouteLifecycle_4; t3 = $navigator._observedRouteAdditions; if (t2) t3._add$1(0, new K._NavigatorReplaceObservation(t1, previousPresent)); else t3._add$1(0, new K._NavigatorPushObservation(t1, previousPresent)); }, pop$1$1: function(_, result) { var _this = this; _this.doingPop = true; if (_this.route.didPop$1(result) && _this.doingPop) _this.currentState = C._RouteLifecycle_8; _this.doingPop = false; }, pop$1: function($receiver, result) { return this.pop$1$1($receiver, result, type$.dynamic); }, remove$0: function(_) { if (this.currentState.index >= 9) return; this._reportRemovalToObserver = true; this.currentState = C._RouteLifecycle_9; }, complete$1$2$isReplaced: function(_, result, isReplaced) { var _this = this; if (_this.currentState.index >= 9) return; _this._reportRemovalToObserver = !isReplaced; _this.route.didComplete$1(result); _this.currentState = C._RouteLifecycle_9; }, complete$2$isReplaced: function($receiver, result, isReplaced) { return this.complete$1$2$isReplaced($receiver, result, isReplaced, type$.dynamic); }, dispose$0: function(_) { var t1, t2, t3, t4, mountedEntries, t5, _box_1 = {}; this.currentState = C._RouteLifecycle_13; t1 = this.route; t2 = t1.get$overlayEntries(); t3 = new K._RouteEntry_dispose_closure(); t4 = H._arrayInstanceType(t2); mountedEntries = new H.WhereIterable(t2, t3, t4._eval$1("WhereIterable<1>")); if (!mountedEntries.get$iterator(mountedEntries).moveNext$0()) t1.dispose$0(0); else { _box_1.mounted = mountedEntries.get$length(mountedEntries); for (t1 = C.JSArray_methods.get$iterator(t2), t4 = new H.WhereIterator(t1, t3, t4._eval$1("WhereIterator<1>")); t4.moveNext$0();) { t2 = {}; t3 = t1.get$current(t1); t2._listener = $; t5 = new K._RouteEntry_dispose__listener_get(t2); new K._RouteEntry_dispose__listener_set(t2).call$1(new K._RouteEntry_dispose_closure0(_box_1, this, t3, t5)); t5 = t5.call$0(); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t5), false); } } }, get$isPresent: function() { var t1 = this.currentState.index; return t1 <= 9 && t1 >= 1; } }; K._RouteEntry_handlePush_closure.prototype = { call$0: function() { var t1 = this.$this; if (t1.currentState === C._RouteLifecycle_5) { t1.currentState = C._RouteLifecycle_7; this.navigator._flushHistoryUpdates$0(); } }, $signature: 0 }; K._RouteEntry_dispose_closure.prototype = { call$1: function(e) { return e._mounted; }, $signature: 2128 }; K._RouteEntry_dispose__listener_set.prototype = { call$1: function(t1) { return this._box_0._listener = t1; }, $signature: 494 }; K._RouteEntry_dispose__listener_get.prototype = { call$0: function() { var t1 = this._box_0._listener; return t1 === $ ? H.throwExpression(H.LateError$localNI("listener")) : t1; }, $signature: 495 }; K._RouteEntry_dispose_closure0.prototype = { call$0: function() { var _this = this, t1 = _this._box_1; --t1.mounted; _this.entry.removeListener$1(0, _this._listener_get.call$0()); if (t1.mounted === 0) _this.$this.route.dispose$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; K._RouteEntry_isRoutePredicate_closure.prototype = { call$1: function(entry) { return entry.route === this.route; }, $signature: 240 }; K._NavigatorObservation.prototype = {}; K._NavigatorPushObservation.prototype = { notify$1: function(observer) { observer.didPush$2(this.primaryRoute, this.secondaryRoute); } }; K._NavigatorPopObservation.prototype = { notify$1: function(observer) { observer.didPop$2(this.primaryRoute, this.secondaryRoute); } }; K._NavigatorRemoveObservation.prototype = { notify$1: function(observer) { observer.toString; } }; K._NavigatorReplaceObservation.prototype = { notify$1: function(observer) { observer.didReplace$2$newRoute$oldRoute(this.primaryRoute, this.secondaryRoute); } }; K.NavigatorState.prototype = { get$_overlayKey: function() { var t1 = this.__NavigatorState__overlayKey; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_overlayKey")) : t1; }, get$_effectiveObservers: function() { var t1 = this.__NavigatorState__effectiveObservers; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_effectiveObservers")) : t1; }, initState$0: function() { var t1, t2, _i, _this = this; _this.super$State$initState(); for (t1 = _this._widget.observers, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = _this; _this.__NavigatorState__effectiveObservers = _this._widget.observers; t1 = _this._framework$_element.getElementForInheritedWidgetOfExactType$1$0(type$.HeroControllerScope); t1 = t1 == null ? null : t1.get$widget(); type$.nullable_HeroControllerScope._as(t1); _this._updateHeroController$1(t1 == null ? null : t1.controller); }, restoreState$2: function(oldBucket, initialRestore) { var t1, t2, _i, page, t3, entry, initialRoute, _this = this; _this.registerForRestoration$2(_this._rawNextPagelessRestorationScopeId, "id"); t1 = _this._serializableHistory; _this.registerForRestoration$2(t1, "history"); for (; t2 = _this._history, t2.length !== 0;) J.dispose$0$x(t2.pop()); _this.__NavigatorState__overlayKey = new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_OverlayState); C.JSArray_methods.addAll$1(t2, t1.restoreEntriesForPage$2(null, _this)); _this._widget.toString; _i = 0; for (; false; ++_i) { page = C.List_empty3[_i]; t2 = _this._framework$_element; t2.toString; t2 = page.createRoute$1(t2); t3 = $.$get$_RouteEntry_notAnnounced(); entry = new K._RouteEntry(t2, null, C._RouteLifecycle_1, t3, t3, t3); _this._history.push(entry); C.JSArray_methods.addAll$1(_this._history, t1.restoreEntriesForPage$2(entry, _this)); } if (t1._pageToPagelessRoutes == null) { t1 = _this._widget; initialRoute = t1.initialRoute; t2 = _this._history; C.JSArray_methods.addAll$1(t2, J.map$1$1$ax(t1.onGenerateInitialRoutes$2(_this, initialRoute), new K.NavigatorState_restoreState_closure(_this), type$._RouteEntry)); } _this._flushHistoryUpdates$0(); }, didToggleBucket$1: function(oldBucket) { var t1, _this = this; _this.super$RestorationMixin$didToggleBucket(oldBucket); t1 = _this._serializableHistory; if (_this.RestorationMixin__bucket != null) t1.update$1(0, _this._history); else t1.clear$0(0); }, get$restorationId: function() { return this._widget.restorationScopeId; }, didChangeDependencies$0: function() { var host, t1, t2, _i, _this = this; _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); host = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.HeroControllerScope); _this._updateHeroController$1(host == null ? null : host.controller); for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].route.changedExternalState$0(); }, _updateHeroController$1: function(newHeroController) { var t2, _this = this, t1 = _this._heroControllerFromScope; if (t1 != newHeroController) { if (newHeroController != null) newHeroController._navigator$_navigator = _this; t2 = t1 == null; if ((t2 ? null : t1._navigator$_navigator) === _this) if (!t2) t1._navigator$_navigator = null; _this._heroControllerFromScope = newHeroController; _this._updateEffectiveObservers$0(); } }, _updateEffectiveObservers$0: function() { var _this = this, t1 = _this._heroControllerFromScope, t2 = _this._widget; if (t1 != null) { t2 = t2.observers; _this.__NavigatorState__effectiveObservers = (t2 && C.JSArray_methods).$add(t2, H.setRuntimeTypeInfo([t1], type$.JSArray_NavigatorObserver)); } else _this.__NavigatorState__effectiveObservers = t2.observers; }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _i, _this = this; _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); t1 = oldWidget.observers; t2 = _this._widget.observers; if (t1 == null ? t2 != null : t1 !== t2) { for (t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = null; for (t1 = _this._widget.observers, t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i]._navigator$_navigator = _this; _this._updateEffectiveObservers$0(); } _this._widget.toString; for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].route.changedExternalState$0(); }, dispose$0: function(_) { var t1, t2, _i, _this = this; _this._updateHeroController$1(null); for (t1 = J.get$iterator$ax(_this.get$_effectiveObservers()); t1.moveNext$0();) t1.get$current(t1)._navigator$_navigator = null; _this.focusScopeNode.dispose$0(0); for (t1 = _this._history, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) J.dispose$0$x(t1[_i]); _this.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, get$_allRouteOverlayEntries: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1, t2, _i; return function $async$get$_allRouteOverlayEntries($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._history, t2 = t1.length, _i = 0; case 2: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 4; break; } $async$goto = 5; return P._IterationMarker_yieldStar(t1[_i].route.get$overlayEntries()); case 5: // after yield case 3: // for update t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 2; break; case 4: // after for // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.OverlayEntry); }, _flushHistoryUpdates$1$rearrangeOverlay: function(rearrangeOverlay) { var t2, poppedRoute, next, canRemoveOrAdd, seenTopActiveRoute, index0, t3, t4, previous0, lastEntry, routeName, _i, _i0, _this = this, _null = null, t1 = _this._history, index = t1.length - 1, entry = t1[index], previous = index > 0 ? t1[index - 1] : _null, toBeDisposed = H.setRuntimeTypeInfo([], type$.JSArray__RouteEntry); for (t1 = _this._observedRouteDeletions, t2 = _this._observedRouteAdditions, poppedRoute = _null, next = poppedRoute, canRemoveOrAdd = false, seenTopActiveRoute = false; index >= 0;) { switch (entry.currentState) { case C._RouteLifecycle_1: index0 = _this._getIndexBefore$2(index - 1, K.navigator__RouteEntry_isPresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; t3 = t3 == null ? _null : t3.route; t4 = entry.route; t4._navigator$_navigator = _this; t4.install$0(); entry.currentState = C._RouteLifecycle_2; t2._add$1(0, new K._NavigatorPushObservation(t4, t3)); continue; case C._RouteLifecycle_2: if (canRemoveOrAdd || next == null) { t3 = entry.route; t3.didAdd$0(); entry.currentState = C._RouteLifecycle_7; if (next == null) t3.didChangeNext$1(_null); continue; } break; case C._RouteLifecycle_3: case C._RouteLifecycle_4: case C._RouteLifecycle_6: t3 = previous == null ? _null : previous.route; index0 = _this._getIndexBefore$2(index - 1, K.navigator__RouteEntry_isPresentPredicate$closure()); t4 = index0 >= 0 ? _this._history[index0] : _null; t4 = t4 == null ? _null : t4.route; entry.handlePush$4$isNewFirst$navigator$previous$previousPresent(next == null, _this, t3, t4); if (entry.currentState === C._RouteLifecycle_7) continue; break; case C._RouteLifecycle_5: if (!seenTopActiveRoute && poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } seenTopActiveRoute = true; break; case C._RouteLifecycle_7: if (!seenTopActiveRoute && poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } canRemoveOrAdd = true; seenTopActiveRoute = true; break; case C._RouteLifecycle_8: if (!seenTopActiveRoute) { if (poppedRoute != null) { entry.route.didPopNext$1(poppedRoute); entry.lastAnnouncedPoppedNextRoute = poppedRoute; } poppedRoute = entry.route; } index0 = _this._getIndexBefore$2(index, K.navigator__RouteEntry_willBePresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; t3 = t3 == null ? _null : t3.route; entry.currentState = C._RouteLifecycle_10; t1._add$1(0, new K._NavigatorPopObservation(entry.route, t3)); canRemoveOrAdd = true; break; case C._RouteLifecycle_10: break; case C._RouteLifecycle_9: if (!seenTopActiveRoute) { if (poppedRoute != null) entry.route.didPopNext$1(poppedRoute); poppedRoute = _null; } index0 = _this._getIndexBefore$2(index, K.navigator__RouteEntry_willBePresentPredicate$closure()); t3 = index0 >= 0 ? _this._history[index0] : _null; t3 = t3 == null ? _null : t3.route; entry.currentState = C._RouteLifecycle_11; if (entry._reportRemovalToObserver) t1._add$1(0, new K._NavigatorRemoveObservation(entry.route, t3)); continue; case C._RouteLifecycle_11: if (!canRemoveOrAdd && next != null) break; entry.currentState = C._RouteLifecycle_12; continue; case C._RouteLifecycle_12: toBeDisposed.push(C.JSArray_methods.removeAt$1(_this._history, index)); entry = next; break; case C._RouteLifecycle_13: case C._RouteLifecycle_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } --index; previous0 = index > 0 ? _this._history[index - 1] : _null; next = entry; entry = previous; previous = previous0; } _this._flushObserverNotifications$0(); _this._flushRouteAnnouncement$0(); if (_this._widget.reportsRouteUpdateToEngine) { t1 = _this._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); lastEntry = t1.lastWhere$2$orElse(t1, new K.NavigatorState__flushHistoryUpdates_closure(), new K.NavigatorState__flushHistoryUpdates_closure0()); routeName = lastEntry == null ? _null : lastEntry.route._navigator$_settings.name; t1 = _this._lastAnnouncedRouteName; if (routeName != t1) { C.OptionalMethodChannel_qNA.invokeMethod$1$2("routeUpdated", P.LinkedHashMap_LinkedHashMap$_literal(["previousRouteName", t1, "routeName", routeName], type$.String, type$.dynamic), type$.void); _this._lastAnnouncedRouteName = routeName; } } for (t1 = toBeDisposed.length, _i = 0; _i < toBeDisposed.length; toBeDisposed.length === t1 || (0, H.throwConcurrentModificationError)(toBeDisposed), ++_i) { entry = toBeDisposed[_i]; for (t2 = entry.route.get$overlayEntries(), t3 = t2.length, _i0 = 0; _i0 < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i0) J.remove$0$ax(t2[_i0]); entry.dispose$0(0); } if (rearrangeOverlay) { t1 = _this.get$_overlayKey().get$currentState(); if (t1 != null) t1.rearrange$1(_this.get$_allRouteOverlayEntries()); } if (_this.RestorationMixin__bucket != null) _this._serializableHistory.update$1(0, _this._history); }, _flushHistoryUpdates$0: function() { return this._flushHistoryUpdates$1$rearrangeOverlay(true); }, _flushObserverNotifications$0: function() { var t1, observation, t2, _this = this, _s19_ = "_effectiveObservers"; if (J.get$isEmpty$asx(_this.get$_effectiveObservers())) { _this._observedRouteDeletions.clear$0(0); _this._observedRouteAdditions.clear$0(0); return; } for (t1 = _this._observedRouteAdditions; !t1.get$isEmpty(t1);) { observation = t1.removeLast$0(0); t2 = _this.__NavigatorState__effectiveObservers; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s19_)); J.forEach$1$ax(t2, observation.get$notify()); } for (t1 = _this._observedRouteDeletions; !t1.get$isEmpty(t1);) { observation = t1.removeFirst$0(); t2 = _this.__NavigatorState__effectiveObservers; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI(_s19_)); J.forEach$1$ax(t2, observation.get$notify()); } }, _flushRouteAnnouncement$0: function() { var entry, t1, next, t2, t3, index0, _this = this, _null = null, index = _this._history.length - 1; for (; index >= 0;) { entry = _this._history[index]; t1 = entry.currentState.index; if (!(t1 <= 11 && t1 >= 3)) { --index; continue; } next = _this._getRouteAfter$2(index + 1, K.navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure()); t1 = next == null; t2 = t1 ? _null : next.route; t3 = entry.lastAnnouncedNextRoute; if (t2 != t3) { if ((t1 ? _null : next.route) == null) { t2 = entry.lastAnnouncedPoppedNextRoute; t2 = t2 != null && t2 === t3; } else t2 = false; if (!t2) { t2 = entry.route; t2.didChangeNext$1(t1 ? _null : next.route); } entry.lastAnnouncedNextRoute = t1 ? _null : next.route; } --index; index0 = _this._getIndexBefore$2(index, K.navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure()); t1 = index0 >= 0 ? _this._history[index0] : _null; t2 = t1 == null; t3 = t2 ? _null : t1.route; if (t3 != entry.lastAnnouncedPreviousRoute) { t3 = entry.route; t3.didChangePrevious$1(t2 ? _null : t1.route); entry.lastAnnouncedPreviousRoute = t2 ? _null : t1.route; } } }, _getRouteBefore$2: function(index, predicate) { index = this._getIndexBefore$2(index, predicate); return index >= 0 ? this._history[index] : null; }, _getIndexBefore$2: function(index, predicate) { while (true) { if (!(index >= 0 && !predicate.call$1(this._history[index]))) break; --index; } return index; }, _getRouteAfter$2: function(index, predicate) { var t1; while (true) { t1 = this._history; if (!(index < t1.length && !predicate.call$1(t1[index]))) break; ++index; } t1 = this._history; return index < t1.length ? t1[index] : null; }, _routeNamed$1$3$allowNull$arguments: function($name, allowNull, $arguments, $T) { var settings, t1, route; if (allowNull) this._widget.toString; settings = new K.RouteSettings($name, $arguments); t1 = $T._eval$1("Route<0>?"); route = t1._as(this._widget.onGenerateRoute.call$1(settings)); return route == null && !allowNull ? t1._as(this._widget.onUnknownRoute.call$1(settings)) : route; }, _routeNamed$1$2$arguments: function($name, $arguments, $T) { return this._routeNamed$1$3$allowNull$arguments($name, false, $arguments, $T); }, pushNamed$1$2$arguments: function(routeName, $arguments, $T) { var t1 = this._routeNamed$1$2$arguments(routeName, $arguments, $T); t1.toString; return this.push$1(t1); }, pushNamed$1$1: function(routeName, $T) { return this.pushNamed$1$2$arguments(routeName, null, $T); }, pushReplacementNamed$2$1: function(routeName, $T, TO) { var t2, _this = this, t1 = _this._routeNamed$1$2$arguments(routeName, null, $T); t1.toString; t2 = K._RouteEntry$(t1, C._RouteLifecycle_4, null); J.complete$2$isReplaced$z(C.JSArray_methods.lastWhere$1(_this._history, K.navigator__RouteEntry_isPresentPredicate$closure()), null, true); _this._history.push(t2); _this._flushHistoryUpdates$0(); _this._afterNavigation$1(t2.route); return t1._popCompleter.future; }, pushNamedAndRemoveUntil$1$2: function(newRouteName, predicate, $T) { var t1 = this._routeNamed$1$2$arguments(newRouteName, null, $T); t1.toString; this._pushEntryAndRemoveUntil$2(K._RouteEntry$(t1, C._RouteLifecycle_3, null), predicate); return t1._popCompleter.future; }, push$1$1: function(route) { var t1 = K._RouteEntry$(route, C._RouteLifecycle_3, null); this._history.push(t1); this._flushHistoryUpdates$0(); this._afterNavigation$1(t1.route); return route._popCompleter.future; }, push$1: function(route) { return this.push$1$1(route, type$.nullable_Object); }, _afterNavigation$1: function(route) { var t1, t2, routeJsonable, settings, settingsJsonable; if (route != null) { t1 = type$.String; t2 = type$.dynamic; routeJsonable = P.LinkedHashMap_LinkedHashMap$_empty(t1, t2); routeJsonable.$indexSet(0, "description", route instanceof T.TransitionRoute ? route.get$debugLabel() : route.toString$0(0)); settings = route._navigator$_settings; settingsJsonable = P.LinkedHashMap_LinkedHashMap$_literal(["name", settings.name], t1, t2); t1 = settings.$arguments; if (t1 != null) settingsJsonable.$indexSet(0, "arguments", C.C_JsonCodec.encode$2$toEncodable(t1, new K.NavigatorState__afterNavigation_closure())); routeJsonable.$indexSet(0, "settings", settingsJsonable); } else routeJsonable = null; P.postEvent("Flutter.Navigation", P.LinkedHashMap_LinkedHashMap$_literal(["route", routeJsonable], type$.String, type$.dynamic)); this._cancelActivePointers$0(); }, _pushEntryAndRemoveUntil$2: function(entry, predicate) { var t2, _this = this, t1 = _this._history, index = t1.length - 1; t1.push(entry); while (true) { if (!(index >= 0 && !predicate.call$1(_this._history[index].route))) break; t1 = _this._history[index]; t2 = t1.currentState.index; if (t2 <= 9 && t2 >= 1) J.remove$0$ax(t1); --index; } _this._flushHistoryUpdates$0(); _this._afterNavigation$1(entry.route); }, canPop$0: function() { var t1 = this._history, t2 = C.JSArray_methods.get$iterator(t1), iterator = new H.WhereIterator(t2, K.navigator__RouteEntry_isPresentPredicate$closure(), H._arrayInstanceType(t1)._eval$1("WhereIterator<1>")); if (!iterator.moveNext$0()) return false; if (t2.get$current(t2).route.get$willHandlePopInternally()) return true; if (!iterator.moveNext$0()) return false; return true; }, maybePop$1$1: function(result) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, lastEntry, disposition, t1; var $async$maybePop$1$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) $async$outer: switch ($async$goto) { case 0: // Function start t1 = $async$self._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); lastEntry = t1.lastWhere$2$orElse(t1, new K.NavigatorState_maybePop_closure(), new K.NavigatorState_maybePop_closure0()); if (lastEntry == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$goto = 3; return P._asyncAwait(lastEntry.route.willPop$0(), $async$maybePop$1$1); case 3: // returning from await. disposition = $async$result; if ($async$self._framework$_element == null) { $async$returnValue = true; // goto return $async$goto = 1; break; } t1 = $async$self._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); if (lastEntry !== t1.lastWhere$2$orElse(t1, new K.NavigatorState_maybePop_closure1(), new K.NavigatorState_maybePop_closure2())) { $async$returnValue = true; // goto return $async$goto = 1; break; } switch (disposition) { case C.RoutePopDisposition_2: $async$returnValue = false; // goto return $async$goto = 1; break $async$outer; case C.RoutePopDisposition_0: $async$self.pop$1(0, result); $async$returnValue = true; // goto return $async$goto = 1; break $async$outer; case C.RoutePopDisposition_1: $async$returnValue = true; // goto return $async$goto = 1; break $async$outer; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$maybePop$1$1, $async$completer); }, maybePop$0: function() { return this.maybePop$1$1(null, type$.nullable_Object); }, maybePop$1: function(result) { return this.maybePop$1$1(result, type$.nullable_Object); }, pop$1$1: function(_, result) { var entry = C.JSArray_methods.lastWhere$1(this._history, K.navigator__RouteEntry_isPresentPredicate$closure()), t1 = entry.route; t1.toString; entry.pop$1(0, result); if (entry.currentState === C._RouteLifecycle_8) this._flushHistoryUpdates$1$rearrangeOverlay(false); this._afterNavigation$1(t1); }, pop$0: function($receiver) { return this.pop$1$1($receiver, null, type$.nullable_Object); }, pop$1: function($receiver, result) { return this.pop$1$1($receiver, result, type$.nullable_Object); }, removeRoute$1: function(route) { var t1, _this = this, wasCurrent = route.get$isCurrent(); C.JSArray_methods.firstWhere$1(_this._history, K._RouteEntry_isRoutePredicate(route)).remove$0(0); _this._flushHistoryUpdates$1$rearrangeOverlay(false); if (wasCurrent) { t1 = _this._history; t1 = new H.CastList(t1, H._arrayInstanceType(t1)._eval$1("CastList<1,_RouteEntry?>")); t1 = t1.lastWhere$2$orElse(t1, new K.NavigatorState_removeRoute_closure(), new K.NavigatorState_removeRoute_closure0()); _this._afterNavigation$1(t1 == null ? null : t1.route); } }, finalizeRoute$1: function(route) { var entry = C.JSArray_methods.firstWhere$1(this._history, K._RouteEntry_isRoutePredicate(route)); if (entry.doingPop) { entry.currentState = C._RouteLifecycle_8; this._flushHistoryUpdates$1$rearrangeOverlay(false); } entry.currentState = C._RouteLifecycle_12; this._flushHistoryUpdates$1$rearrangeOverlay(false); }, set$_userGesturesInProgress: function(value) { this._userGesturesInProgressCount = value; this.userGestureInProgressNotifier.set$value(0, value > 0); }, didStartUserGesture$0: function() { var routeIndex, route, previousRoute, t1, _this = this; _this.set$_userGesturesInProgress(_this._userGesturesInProgressCount + 1); if (_this._userGesturesInProgressCount === 1) { routeIndex = _this._getIndexBefore$2(_this._history.length - 1, K.navigator__RouteEntry_willBePresentPredicate$closure()); route = _this._history[routeIndex].route; previousRoute = !route.get$willHandlePopInternally() && routeIndex > 0 ? _this._getRouteBefore$2(routeIndex - 1, K.navigator__RouteEntry_willBePresentPredicate$closure()).route : null; for (t1 = J.get$iterator$ax(_this.get$_effectiveObservers()); t1.moveNext$0();) t1.get$current(t1).didStartUserGesture$2(route, previousRoute); } }, didStopUserGesture$0: function() { var t1, _this = this; _this.set$_userGesturesInProgress(_this._userGesturesInProgressCount - 1); if (_this._userGesturesInProgressCount === 0) for (t1 = J.get$iterator$ax(_this.get$_effectiveObservers()); t1.moveNext$0();) t1.get$current(t1).didStopUserGesture$0(); }, _handlePointerDown$1: function($event) { this._activePointers.add$1(0, $event.get$pointer()); }, _handlePointerUpOrCancel$1: function($event) { this._activePointers.remove$1(0, $event.get$pointer()); }, _cancelActivePointers$0: function() { if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase === C.SchedulerPhase_0) { var t1 = this.get$_overlayKey(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); this.setState$1(new K.NavigatorState__cancelActivePointers_closure(t1 == null ? null : t1.findAncestorRenderObjectOfType$1$0(type$.RenderAbsorbPointer))); } t1 = this._activePointers; C.JSArray_methods.forEach$1(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")), $.WidgetsBinding__instance.get$cancelPointer()); }, build$1: function(_, context) { var t4, _this = this, _null = null, t1 = _this.get$_handlePointerUpOrCancel(), t2 = _this.RestorationMixin__bucket, t3 = _this.get$_overlayKey(); if (_this.get$_overlayKey().get$currentState() == null) { t4 = _this.get$_allRouteOverlayEntries(); t4 = P.List_List$of(t4, false, t4.$ti._eval$1("Iterable.E")); } else t4 = C.List_empty4; return new K.HeroControllerScope(_null, T.Listener$(C.HitTestBehavior_0, T.AbsorbPointer$(false, L.FocusScope$(true, K.UnmanagedRestorationScope$(t2, new X.Overlay(t4, t3)), _null, _this.focusScopeNode)), t1, _this.get$_handlePointerDown(), _null, _null, t1), _null); } }; K.NavigatorState_restoreState_closure.prototype = { call$1: function(route) { var t2, t3, t1 = route._navigator$_settings.name; if (t1 != null) { t2 = this.$this._rawNextPagelessRestorationScopeId; t3 = t2._restoration_properties$_value; t2.super$RestorableValue$value(0, t3 + 1); t1 = new K._NamedRestorationInformation(t3, t1, null, C._RouteRestorationType_0); } else t1 = null; return K._RouteEntry$(route, C._RouteLifecycle_1, t1); }, $signature: 2099 }; K.NavigatorState__flushHistoryUpdates_closure.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.NavigatorState__flushHistoryUpdates_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.NavigatorState__afterNavigation_closure.prototype = { call$1: function(object) { return H.S(object); }, $signature: 2096 }; K.NavigatorState_maybePop_closure.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.NavigatorState_maybePop_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.NavigatorState_maybePop_closure1.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.NavigatorState_maybePop_closure2.prototype = { call$0: function() { return null; }, $signature: 1 }; K.NavigatorState_removeRoute_closure.prototype = { call$1: function(e) { return e != null && e.get$isPresent(); }, $signature: 180 }; K.NavigatorState_removeRoute_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; K.NavigatorState__cancelActivePointers_closure.prototype = { call$0: function() { var t1 = this.absorber; if (t1 != null) t1.set$absorbing(true); }, $signature: 0 }; K._RouteRestorationType.prototype = { toString$0: function(_) { return this._navigator$_name; } }; K._RestorationInformation.prototype = { get$isRestorable: function() { return true; }, computeSerializableData$0: function() { return H.setRuntimeTypeInfo([this.type.index], type$.JSArray_Object); } }; K._NamedRestorationInformation.prototype = { computeSerializableData$0: function() { var _this = this, t1 = _this.super$_RestorationInformation$computeSerializableData(), t2 = H.setRuntimeTypeInfo([_this.restorationScopeId, _this.name], type$.JSArray_Object), t3 = _this.$arguments; if (t3 != null) t2.push(t3); C.JSArray_methods.addAll$1(t1, t2); return t1; }, createRoute$1: function($navigator) { var t1 = $navigator._routeNamed$1$3$allowNull$arguments(this.name, false, this.$arguments, type$.dynamic); t1.toString; return t1; }, get$restorationScopeId: function() { return this.restorationScopeId; }, get$name: function(receiver) { return this.name; } }; K._AnonymousRestorationInformation.prototype = { get$isRestorable: function() { return false; }, computeSerializableData$0: function() { P.PluginUtilities_getCallbackHandle(this.routeBuilder); }, createRoute$1: function($navigator) { var t1 = $navigator._framework$_element; t1.toString; return this.routeBuilder.call$2(t1, this.$arguments); }, get$restorationScopeId: function() { return this.restorationScopeId; } }; K._HistoryProperty.prototype = { update$1: function(_, $history) { var newRoutesForCurrentPage, t1, oldRoutesForCurrentPage, newMap, removedPages, currentPage, needsSerialization, restorationEnabled, _i, entry, t2, t3, serializedData, t4, _this = this, _null = null, wasUninitialized = _this._pageToPagelessRoutes == null; if (wasUninitialized) _this._pageToPagelessRoutes = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.List_Object); newRoutesForCurrentPage = H.setRuntimeTypeInfo([], type$.JSArray_Object); t1 = _this._pageToPagelessRoutes; t1.toString; oldRoutesForCurrentPage = J.$index$asx(t1, null); if (oldRoutesForCurrentPage == null) oldRoutesForCurrentPage = C.List_empty; newMap = P.LinkedHashMap_LinkedHashMap$_empty(type$.nullable_String, type$.List_Object); t1 = _this._pageToPagelessRoutes; t1.toString; removedPages = J.toSet$0$ax(J.get$keys$x(t1)); for (t1 = $history.length, currentPage = _null, needsSerialization = wasUninitialized, restorationEnabled = true, _i = 0; _i < $history.length; $history.length === t1 || (0, H.throwConcurrentModificationError)($history), ++_i) { entry = $history[_i]; if (entry.currentState.index > 7) { t2 = entry.route; t2._restorationScopeId.set$value(0, _null); continue; } t2 = entry.route; t2.toString; if (restorationEnabled) { t3 = entry.restorationInformation; restorationEnabled = (t3 == null ? _null : t3.get$isRestorable()) === true; } else restorationEnabled = false; t3 = restorationEnabled ? entry.get$restorationId() : _null; t2._restorationScopeId.set$value(0, t3); if (restorationEnabled) { t2 = entry.restorationInformation; serializedData = t2._serializableData; if (serializedData == null) serializedData = t2._serializableData = t2.computeSerializableData$0(); if (!needsSerialization) { t2 = J.getInterceptor$asx(oldRoutesForCurrentPage); t3 = t2.get$length(oldRoutesForCurrentPage); t4 = newRoutesForCurrentPage.length; needsSerialization = t3 <= t4 || !J.$eq$(t2.$index(oldRoutesForCurrentPage, t4), serializedData); } else needsSerialization = true; newRoutesForCurrentPage.push(serializedData); } } needsSerialization = needsSerialization || newRoutesForCurrentPage.length !== J.get$length$asx(oldRoutesForCurrentPage); _this._finalizePage$4(newRoutesForCurrentPage, currentPage, newMap, removedPages); if (needsSerialization || removedPages.get$isNotEmpty(removedPages)) { _this._pageToPagelessRoutes = newMap; _this.notifyListeners$0(); } }, _finalizePage$4: function(routes, page, pageToRoutes, pagesToRemove) { var restorationId, t1 = routes.length; if (t1 !== 0) { restorationId = page == null ? null : page.get$restorationId(); pageToRoutes.$indexSet(0, restorationId, routes); pagesToRemove.remove$1(0, restorationId); } }, clear$0: function(_) { if (this._pageToPagelessRoutes == null) return; this._pageToPagelessRoutes = null; this.notifyListeners$0(); }, restoreEntriesForPage$2: function(page, $navigator) { var t1, serializedData, t2, route, t3, result = H.setRuntimeTypeInfo([], type$.JSArray__RouteEntry); if (this._pageToPagelessRoutes != null) t1 = page != null && page.get$restorationId() == null; else t1 = true; if (t1) return result; t1 = this._pageToPagelessRoutes; t1.toString; serializedData = J.$index$asx(t1, page == null ? null : page.get$restorationId()); if (serializedData == null) return result; for (t1 = J.get$iterator$ax(serializedData); t1.moveNext$0();) { t2 = K._RestorationInformation__RestorationInformation$fromSerializableData(t1.get$current(t1)); route = t2.createRoute$1($navigator); t3 = $.$get$_RouteEntry_notAnnounced(); result.push(new K._RouteEntry(route, t2, C._RouteLifecycle_1, t3, t3, t3)); } return result; }, createDefaultValue$0: function() { return null; }, fromPrimitives$1: function(data) { data.toString; return J.map$2$1$ax(type$.Map_dynamic_dynamic._as(data), new K._HistoryProperty_fromPrimitives_closure(), type$.nullable_String, type$.List_Object); }, initWithValue$1: function(value) { this._pageToPagelessRoutes = value; }, toPrimitives$0: function() { return this._pageToPagelessRoutes; }, get$enabled: function(_) { return this._pageToPagelessRoutes != null; } }; K._HistoryProperty_fromPrimitives_closure.prototype = { call$2: function(key, value) { return new P.MapEntry(H._asStringQ(key), P.List_List$from(type$.List_dynamic._as(value), true, type$.Object), type$.MapEntry_of_nullable_String_and_List_Object); }, $signature: 2091 }; K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; K._NavigatorState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$_NavigatorState_State_TickerProviderStateMixin$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_NavigatorState_State_TickerProviderStateMixin$dispose(0); } }; U.Notification0.prototype = { visitAncestor$1: function(element) { var widget; if (element instanceof N.StatelessElement) { widget = type$.StatelessWidget._as(N.Element0.prototype.get$widget.call(element)); if (widget instanceof U.NotificationListener) if (widget._notification_listener$_dispatch$2(this, element)) return false; } return true; }, dispatch$1: function(target) { if (target != null) target.visitAncestorElements$1(this.get$visitAncestor()); }, toString$0: function(_) { var description = H.setRuntimeTypeInfo([], type$.JSArray_String); this.debugFillDescription$1(description); return "Notification(" + C.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1: function(description) { } }; U.NotificationListener.prototype = { _notification_listener$_dispatch$2: function(notification, element) { if (this.$ti._precomputed1._is(notification)) return this.onNotification.call$1(notification) === true; return false; }, build$1: function(_, context) { return this.child; } }; U.LayoutChangedNotification.prototype = {}; E.OverflowBarAlignment.prototype = { toString$0: function(_) { return this._overflow_bar$_name; } }; E.OverflowBar.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; t1 = new E._RenderOverflowBar(_this.spacing, _this.overflowSpacing, _this.overflowAlignment, _this.overflowDirection, t1, C.Clip_0, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1, _this = this; renderObject.set$spacing(0, _this.spacing); renderObject.set$overflowSpacing(_this.overflowSpacing); renderObject.set$overflowAlignment(_this.overflowAlignment); renderObject.set$overflowDirection(_this.overflowDirection); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; renderObject.set$textDirection(0, t1); renderObject.set$clipBehavior(C.Clip_0); } }; E._OverflowBarParentData.prototype = {}; E._RenderOverflowBar.prototype = { set$spacing: function(_, value) { if (this._overflow_bar$_spacing === value) return; this._overflow_bar$_spacing = value; this.markNeedsLayout$0(); }, set$overflowSpacing: function(value) { if (this._overflowSpacing === value) return; this._overflowSpacing = value; this.markNeedsLayout$0(); }, set$overflowAlignment: function(value) { if (this._overflowAlignment === value) return; this._overflowAlignment = value; this.markNeedsLayout$0(); }, set$overflowDirection: function(value) { if (this._overflowDirection === value) return; this._overflowDirection = value; this.markNeedsLayout$0(); }, set$textDirection: function(_, value) { if (this._overflow_bar$_textDirection == value) return; this._overflow_bar$_textDirection = value; this.markNeedsLayout$0(); }, set$clipBehavior: function(value) { var _this = this; if (value === _this._overflow_bar$_clipBehavior) return; _this._overflow_bar$_clipBehavior = value; _this.markNeedsPaint$0(); _this.markNeedsSemanticsUpdate$0(); }, setupParentData$1: function(child) { if (!(child.parentData instanceof E._OverflowBarParentData)) child.parentData = new E._OverflowBarParentData(null, null, C.Offset_0_0); }, computeMinIntrinsicHeight$1: function(width) { var t1, barWidth, t2, t3, height, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), barWidth = 0; child != null;) { barWidth += child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } t2 = _this._overflow_bar$_spacing; t3 = _this.ContainerRenderObjectMixin__childCount; child = _this.ContainerRenderObjectMixin__firstChild; if (barWidth + t2 * (t3 - 1) > width) { for (height = 0; child != null;) { height += child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, child.get$computeMinIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height + _this._overflowSpacing * (_this.ContainerRenderObjectMixin__childCount - 1); } else { for (height = 0; child != null;) { height = Math.max(height, H.checkNum(child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, child.get$computeMinIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; } }, computeMaxIntrinsicHeight$1: function(width) { var t1, barWidth, t2, t3, height, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), barWidth = 0; child != null;) { barWidth += child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } t2 = _this._overflow_bar$_spacing; t3 = _this.ContainerRenderObjectMixin__childCount; child = _this.ContainerRenderObjectMixin__firstChild; if (barWidth + t2 * (t3 - 1) > width) { for (height = 0; child != null;) { height += child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, child.get$computeMaxIntrinsicHeight()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height + _this._overflowSpacing * (_this.ContainerRenderObjectMixin__childCount - 1); } else { for (height = 0; child != null;) { height = Math.max(height, H.checkNum(child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, child.get$computeMaxIntrinsicHeight()))); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return height; } }, computeMinIntrinsicWidth$1: function(height) { var t1, width, t2, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width + _this._overflow_bar$_spacing * (_this.ContainerRenderObjectMixin__childCount - 1); }, computeMaxIntrinsicWidth$1: function(height) { var t1, width, t2, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return 0; for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), width = 0; child != null;) { width += child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return width + _this._overflow_bar$_spacing * (_this.ContainerRenderObjectMixin__childCount - 1); }, computeDistanceToActualBaseline$1: function(baseline) { return this.defaultComputeDistanceToHighestActualBaseline$1(baseline); }, computeDryLayout$1: function(constraints) { var childConstraints, t1, childrenWidth, maxChildHeight, y, childSize, t2, actualWidth, _this = this, child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); childConstraints = constraints.loosen$0(); for (t1 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), childrenWidth = 0, maxChildHeight = 0, y = 0; child != null;) { childSize = child.getDryLayout$1(childConstraints); childrenWidth += childSize._dx; t2 = childSize._dy; maxChildHeight = Math.max(maxChildHeight, H.checkNum(t2)); y += t2 + _this._overflowSpacing; t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } actualWidth = childrenWidth + _this._overflow_bar$_spacing * (_this.ContainerRenderObjectMixin__childCount - 1); t1 = constraints.maxWidth; if (actualWidth > t1) return constraints.constrain$1(new P.Size(t1, y - _this._overflowSpacing)); else return constraints.constrain$1(new P.Size(actualWidth, maxChildHeight)); }, performLayout$0: function() { var t1, childConstraints, t2, t3, childrenWidth, maxChildHeight, maxChildWidth, t4, t5, rtl, actualWidth, nextChild, y, x, _this = this, _box_0 = {}, child = _box_0.child = _this.ContainerRenderObjectMixin__firstChild; if (child == null) { t1 = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(0, t1.minHeight, t1.maxHeight)); return; } t1 = type$.BoxConstraints; childConstraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).loosen$0(); for (t2 = H._instanceType(_this)._eval$1("ContainerRenderObjectMixin.1"), t3 = child, childrenWidth = 0, maxChildHeight = 0, maxChildWidth = 0; t3 != null; t3 = child) { t3.layout$2$parentUsesSize(0, childConstraints, true); t3 = _box_0.child; t4 = t3._box$_size; t5 = t4._dx; childrenWidth += t5; maxChildHeight = Math.max(maxChildHeight, H.checkNum(t4._dy)); maxChildWidth = Math.max(maxChildWidth, t5); t3 = t3.parentData; t3.toString; child = t2._as(t3).ContainerParentDataMixin_nextSibling; _box_0.child = child; } rtl = _this._overflow_bar$_textDirection === C.TextDirection_0; actualWidth = childrenWidth + _this._overflow_bar$_spacing * (_this.ContainerRenderObjectMixin__childCount - 1); if (actualWidth > t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth) { child = _this._overflowDirection === C.VerticalDirection_1 ? _this.ContainerRenderObjectMixin__firstChild : _this.ContainerRenderObjectMixin__lastChild; _box_0.child = child; nextChild = new E._RenderOverflowBar_performLayout_nextChild(_box_0, _this); for (t2 = type$._OverflowBarParentData, t3 = child, y = 0; t3 != null; t3 = child) { t4 = t3.parentData; t4.toString; t2._as(t4); switch (_this._overflowAlignment) { case C.OverflowBarAlignment_0: if (rtl) { t3 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = t3 - t5._box$_size._dx; t3 = t5; } else x = 0; break; case C.OverflowBarAlignment_2: t3 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = (t3 - t5._box$_size._dx) / 2; t3 = t5; break; case C.OverflowBarAlignment_1: if (rtl) x = 0; else { t3 = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; t5 = _box_0.child; x = t3 - t5._box$_size._dx; t3 = t5; } break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t4.offset = new P.Offset(x, y); y += t3._box$_size._dy + _this._overflowSpacing; child = nextChild.call$0(); _box_0.child = child; } _this._box$_size = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(new P.Size(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth, y - _this._overflowSpacing)); } else { t2 = _box_0.child = rtl ? _this.ContainerRenderObjectMixin__lastChild : _this.ContainerRenderObjectMixin__firstChild; nextChild = new E._RenderOverflowBar_performLayout_nextChild0(_box_0, _this, rtl); for (t3 = type$._OverflowBarParentData, x = 0; t2 != null; t2 = child) { t4 = t2.parentData; t4.toString; t3._as(t4); t2 = t2._box$_size; t4.offset = new P.Offset(x, (maxChildHeight - t2._dy) / 2); x += t2._dx + _this._overflow_bar$_spacing; child = nextChild.call$0(); _box_0.child = child; } _this._box$_size = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(new P.Size(actualWidth, maxChildHeight)); } }, hitTestChildren$2$position: function(result, position) { return this.defaultHitTestChildren$2$position(result, position); }, paint$2: function(context, offset) { this.defaultPaint$2(context, offset); } }; E._RenderOverflowBar_performLayout_nextChild.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._overflowDirection, t3 = this._box_0.child; t1 = H._instanceType(t1)._eval$1("ContainerRenderObjectMixin.1"); if (t2 === C.VerticalDirection_1) { t2 = t3.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_nextSibling; t1 = t2; } else { t2 = t3.parentData; t2.toString; t2 = t1._as(t2).ContainerParentDataMixin_previousSibling; t1 = t2; } return t1; }, $signature: 485 }; E._RenderOverflowBar_performLayout_nextChild0.prototype = { call$0: function() { var t1 = this._box_0.child, t2 = H._instanceType(this.$this); if (this.rtl) { t1 = t1.parentData; t1.toString; t1 = t2._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_previousSibling; } else { t1 = t1.parentData; t1.toString; t1 = t2._eval$1("ContainerRenderObjectMixin.1")._as(t1).ContainerParentDataMixin_nextSibling; } return t1; }, $signature: 485 }; E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._OverflowBarParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$._OverflowBarParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; X.OverlayEntry.prototype = { set$opaque: function(value) { var t1; if (this._opaque === value) return; this._opaque = value; t1 = this._overlay; if (t1 != null) t1._didChangeEntryOpacity$0(); }, set$maintainState: function(value) { if (this._maintainState) return; this._maintainState = true; this._overlay._didChangeEntryOpacity$0(); }, _updateMounted$1: function(value) { if (value === this._mounted) return; this._mounted = value; this.notifyListeners$0(); }, remove$0: function(_) { var t2, t1 = this._overlay; t1.toString; this._overlay = null; if (t1._framework$_element == null) return; C.JSArray_methods.remove$1(t1._entries, this); t2 = $.SchedulerBinding__instance; if (t2.SchedulerBinding__schedulerPhase === C.SchedulerPhase_3) t2.SchedulerBinding__postFrameCallbacks.push(new X.OverlayEntry_remove_closure(t1)); else t1._markDirty$0(); }, markNeedsBuild$0: function() { var t1 = this._key.get$currentState(); if (t1 != null) t1._overlay$_markNeedsBuild$0(); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(opaque: " + this._opaque + "; maintainState: " + this._maintainState + ")"; } }; X.OverlayEntry_remove_closure.prototype = { call$1: function(duration) { this.overlay._markDirty$0(); }, $signature: 28 }; X._OverlayEntryWidget.prototype = { createState$0: function() { return new X._OverlayEntryWidgetState(C._StateLifecycle_0); } }; X._OverlayEntryWidgetState.prototype = { initState$0: function() { this.super$State$initState(); this._widget.entry._updateMounted$1(true); }, dispose$0: function(_) { this._widget.entry._updateMounted$1(false); this.super$State$dispose(0); }, build$1: function(_, context) { var t1 = this._widget; return new U.TickerMode(t1.tickerEnabled, t1.entry.builder.call$1(context), null); }, _overlay$_markNeedsBuild$0: function() { this.setState$1(new X._OverlayEntryWidgetState__markNeedsBuild_closure()); } }; X._OverlayEntryWidgetState__markNeedsBuild_closure.prototype = { call$0: function() { }, $signature: 0 }; X.Overlay.prototype = { createState$0: function() { return new X.OverlayState(H.setRuntimeTypeInfo([], type$.JSArray_OverlayEntry), null, C._StateLifecycle_0); } }; X.OverlayState.prototype = { initState$0: function() { this.super$State$initState(); this.insertAll$1(0, this._widget.initialEntries); }, _insertionIndex$2: function(below, above) { return this._entries.length; }, insert$1: function(_, entry) { entry._overlay = this; this.setState$1(new X.OverlayState_insert_closure(this, null, null, entry)); }, insertAll$1: function(_, entries) { var _i, t1 = entries.length; if (t1 === 0) return; for (_i = 0; _i < t1; ++_i) entries[_i]._overlay = this; this.setState$1(new X.OverlayState_insertAll_closure(this, null, null, entries)); }, rearrange$1: function(newEntries) { var t1, old, _i, entry, _this = this, newEntriesList = P.List_List$of(newEntries, false, newEntries.$ti._eval$1("Iterable.E")); if (newEntriesList.length === 0) return; t1 = _this._entries; if (S.listEquals(t1, newEntriesList)) return; old = P.LinkedHashSet_LinkedHashSet$from(t1, type$.OverlayEntry); for (t1 = newEntriesList.length, _i = 0; _i < t1; ++_i) { entry = newEntriesList[_i]; if (entry._overlay == null) entry._overlay = _this; } _this.setState$1(new X.OverlayState_rearrange_closure(_this, newEntriesList, old, null, null)); }, _markDirty$0: function() { if (this._framework$_element != null) this.setState$1(new X.OverlayState__markDirty_closure()); }, _didChangeEntryOpacity$0: function() { this.setState$1(new X.OverlayState__didChangeEntryOpacity_closure()); }, build$1: function(_, context) { var t1, i, onstage, onstageCount, entry, t2, children = H.setRuntimeTypeInfo([], type$.JSArray_Widget); for (t1 = this._entries, i = t1.length - 1, onstage = true, onstageCount = 0; i >= 0; --i) { entry = t1[i]; if (onstage) { ++onstageCount; children.push(new X._OverlayEntryWidget(entry, true, entry._key)); onstage = !entry._opaque || false; } else if (entry._maintainState) children.push(new X._OverlayEntryWidget(entry, false, entry._key)); } t1 = children.length; t2 = type$.ReversedListIterable_Widget; t2 = P.List_List$of(new H.ReversedListIterable(children, t2), false, t2._eval$1("ListIterable.E")); this._widget.toString; return new X._Theatre(t1 - onstageCount, C.Clip_1, t2, null); } }; X.OverlayState_insert_closure.prototype = { call$0: function() { var _this = this, t1 = _this.$this; C.JSArray_methods.insert$2(t1._entries, t1._insertionIndex$2(_this.below, _this.above), _this.entry); }, $signature: 0 }; X.OverlayState_insertAll_closure.prototype = { call$0: function() { var _this = this, t1 = _this.$this; C.JSArray_methods.insertAll$2(t1._entries, t1._insertionIndex$2(_this.below, _this.above), _this.entries); }, $signature: 0 }; X.OverlayState_rearrange_closure.prototype = { call$0: function() { var t3, t4, _this = this, t1 = _this.$this, t2 = t1._entries; C.JSArray_methods.set$length(t2, 0); t3 = _this.newEntriesList; C.JSArray_methods.addAll$1(t2, t3); t4 = _this.old; t4.removeAll$1(t3); C.JSArray_methods.insertAll$2(t2, t1._insertionIndex$2(_this.below, _this.above), t4); }, $signature: 0 }; X.OverlayState__markDirty_closure.prototype = { call$0: function() { }, $signature: 0 }; X.OverlayState__didChangeEntryOpacity_closure.prototype = { call$0: function() { }, $signature: 0 }; X._Theatre.prototype = { createElement$0: function(_) { var t1 = type$.Element_2, t2 = P.HashSet_HashSet(t1), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new X._TheatreElement(t2, t3, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, createRenderObject$1: function(context) { var t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = new X._RenderTheatre(t1.textDirection, this.skipCount, this.clipBehavior, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.skipCount; if (renderObject._overlay$_skipCount !== t1) { renderObject._overlay$_skipCount = t1; renderObject.markNeedsLayout$0(); } t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; renderObject.set$textDirection(0, t1.textDirection); t1 = this.clipBehavior; if (t1 !== renderObject._overlay$_clipBehavior) { renderObject._overlay$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; X._TheatreElement.prototype = { get$widget: function() { return type$._Theatre._as(N.MultiChildRenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$._RenderTheatre._as(N.MultiChildRenderObjectElement.prototype.get$renderObject.call(this)); } }; X._RenderTheatre.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof K.StackParentData)) child.parentData = new K.StackParentData(null, null, C.Offset_0_0); }, _overlay$_resolve$0: function() { if (this._overlay$_resolvedAlignment != null) return; this._overlay$_resolvedAlignment = C.AlignmentDirectional_m1_m1.resolve$1(this._overlay$_textDirection); }, set$textDirection: function(_, value) { var _this = this; if (_this._overlay$_textDirection == value) return; _this._overlay$_textDirection = value; _this._overlay$_resolvedAlignment = null; _this.markNeedsLayout$0(); }, get$_firstOnstageChild: function() { var child, toSkip, t1, t2, _this = this; if (_this._overlay$_skipCount === K.ContainerRenderObjectMixin.prototype.get$childCount.call(_this)) return null; child = K.ContainerRenderObjectMixin.prototype.get$firstChild.call(_this, _this); for (toSkip = _this._overlay$_skipCount, t1 = type$.StackParentData; toSkip > 0; --toSkip) { t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } return child; }, computeMinIntrinsicWidth$1: function(height) { return K.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new X._RenderTheatre_computeMinIntrinsicWidth_closure(height)); }, computeMaxIntrinsicWidth$1: function(height) { return K.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new X._RenderTheatre_computeMaxIntrinsicWidth_closure(height)); }, computeMinIntrinsicHeight$1: function(width) { return K.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new X._RenderTheatre_computeMinIntrinsicHeight_closure(width)); }, computeMaxIntrinsicHeight$1: function(width) { return K.RenderStack_getIntrinsicDimension(this.get$_firstOnstageChild(), new X._RenderTheatre_computeMaxIntrinsicHeight_closure(width)); }, computeDistanceToActualBaseline$1: function(baseline) { var t1, result, t2, candidate, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, result = null; child != null;) { t2 = child.parentData; t2.toString; t1._as(t2); candidate = child.getDistanceToActualBaseline$1(baseline); if (candidate != null) { candidate += t2.offset._dy; result = result != null ? Math.min(result, candidate) : candidate; } child = t2.ContainerParentDataMixin_nextSibling; } return result; }, get$sizedByParent: function() { return true; }, computeDryLayout$1: function(constraints) { return new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, performLayout$0: function() { var t1, nonPositionedConstraints, child, t2, t3, t4, t5, t6, _this = this; _this._overlay$_hasVisualOverflow = false; if (_this.ContainerRenderObjectMixin__childCount - _this._overlay$_skipCount === 0) return; _this._overlay$_resolve$0(); t1 = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); nonPositionedConstraints = S.BoxConstraints$tight(new P.Size(C.JSInt_methods.clamp$2(1 / 0, t1.minWidth, t1.maxWidth), C.JSInt_methods.clamp$2(1 / 0, t1.minHeight, t1.maxHeight))); child = _this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, t2 = type$.Offset; child != null;) { t3 = child.parentData; t3.toString; t1._as(t3); if (!t3.get$isPositioned()) { child.layout$2$parentUsesSize(0, nonPositionedConstraints, true); t4 = _this._overlay$_resolvedAlignment; t4.toString; t5 = _this._box$_size; t5.toString; t6 = child._box$_size; t6.toString; t3.offset = t4.alongOffset$1(t2._as(t5.$sub(0, t6))); } else { t4 = _this._box$_size; t4.toString; t5 = _this._overlay$_resolvedAlignment; t5.toString; _this._overlay$_hasVisualOverflow = K.RenderStack_layoutPositionedChild(child, t3, t4, t5) || _this._overlay$_hasVisualOverflow; } child = t3.ContainerParentDataMixin_nextSibling; } }, hitTestChildren$2$position: function(result, position) { var t2, i, child, _this = this, _box_0 = {}, t1 = _box_0.child = _this._overlay$_skipCount === K.ContainerRenderObjectMixin.prototype.get$childCount.call(_this) ? null : _this.ContainerRenderObjectMixin__lastChild; for (t2 = type$.StackParentData, i = 0; i < _this.ContainerRenderObjectMixin__childCount - _this._overlay$_skipCount; ++i, t1 = child) { t1 = t1.parentData; t1.toString; t2._as(t1); if (result.addWithPaintOffset$3$hitTest$offset$position(new X._RenderTheatre_hitTestChildren_closure(_box_0, position, t1), t1.offset, position)) return true; child = t1.ContainerParentDataMixin_previousSibling; _box_0.child = child; } return false; }, paintStack$2: function(context, offset) { var t1, t2, t3, t4, t5, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, t2 = offset._dx, t3 = offset._dy; child != null;) { t4 = child.parentData; t4.toString; t1._as(t4); t5 = t4.offset; context.paintChild$2(child, new P.Offset(t5._dx + t2, t5._dy + t3)); child = t4.ContainerParentDataMixin_nextSibling; } }, paint$2: function(context, offset) { var t1, t2, _this = this; if (_this._overlay$_hasVisualOverflow && _this._overlay$_clipBehavior !== C.Clip_0) { t1 = _this.get$_needsCompositing(); t2 = _this._box$_size; _this._overlay$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t1, offset, new P.Rect(0, 0, 0 + t2._dx, 0 + t2._dy), _this.get$paintStack(), _this._overlay$_clipBehavior, _this._overlay$_clipRectLayer); } else { _this._overlay$_clipRectLayer = null; _this.paintStack$2(context, offset); } }, visitChildrenForSemantics$1: function(visitor) { var t1, t2, child = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData; child != null;) { visitor.call$1(child); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, describeApproximatePaintClip$1: function(child) { var t1; if (this._overlay$_hasVisualOverflow) { t1 = this._box$_size; t1 = new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } else t1 = null; return t1; }, debugDescribeChildren$0: function() { var count, onstage, t2, t1 = type$.JSArray_DiagnosticsNode, offstageChildren = H.setRuntimeTypeInfo([], t1), onstageChildren = H.setRuntimeTypeInfo([], t1), child = this.ContainerRenderObjectMixin__firstChild, firstOnstageChild = this.get$_firstOnstageChild(); for (t1 = type$.StackParentData, count = 1, onstage = false; child != null;) { if (child === firstOnstageChild) { count = 1; onstage = true; } if (onstage) onstageChildren.push(new Y.DiagnosticableTreeNode(child, "onstage " + count, true, true, null, null)); else offstageChildren.push(new Y.DiagnosticableTreeNode(child, "offstage " + count, true, true, null, C.DiagnosticsTreeStyle_2)); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; ++count; } t1 = P.List_List$of(onstageChildren, true, type$.DiagnosticsNode); if (offstageChildren.length !== 0) C.JSArray_methods.addAll$1(t1, offstageChildren); else t1.push(Y.DiagnosticsNode_DiagnosticsNode$message("no offstage children", true, C.DiagnosticsTreeStyle_2)); return t1; } }; X._RenderTheatre_computeMinIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, $signature: 77 }; X._RenderTheatre_computeMaxIntrinsicWidth_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, $signature: 77 }; X._RenderTheatre_computeMinIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, $signature: 77 }; X._RenderTheatre_computeMaxIntrinsicHeight_closure.prototype = { call$1: function(child) { return child._computeIntrinsicDimension$3(C._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, $signature: 77 }; X._RenderTheatre_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { var t1 = this._box_0.child; t1.toString; transformed.toString; return t1.hitTest$2$position(result, transformed); }, $signature: 96 }; X._OverlayState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; X.__RenderTheatre_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.StackParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; L.GlowingOverscrollIndicator.prototype = { createState$0: function() { var t1 = type$.bool; return new L._GlowingOverscrollIndicatorState(P.LinkedHashMap_LinkedHashMap$_literal([false, true, true, true], t1, t1), null, C._StateLifecycle_0); }, notificationPredicate$1: function(arg0) { return G.scroll_notification__defaultScrollNotificationPredicate$closure().call$1(arg0); } }; L._GlowingOverscrollIndicatorState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.color; _this._leadingController = L._GlowController$(G.axisDirectionToAxis(t1.axisDirection), t2, _this); t2 = _this._widget; t1 = t2.color; t1 = L._GlowController$(G.axisDirectionToAxis(t2.axisDirection), t1, _this); _this._trailingController = t1; t2 = _this._leadingController; t2.toString; _this._leadingAndTrailingListener = new B._MergingListenable(H.setRuntimeTypeInfo([t2, t1], type$.JSArray_Listenable)); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(oldWidget.color, _this._widget.color) || G.axisDirectionToAxis(oldWidget.axisDirection) !== G.axisDirectionToAxis(_this._widget.axisDirection)) { t1 = _this._leadingController; t1.toString; t1.set$color(0, _this._widget.color); t1 = _this._leadingController; t1.toString; t1.set$axis(G.axisDirectionToAxis(_this._widget.axisDirection)); t1 = _this._trailingController; t1.toString; t1.set$color(0, _this._widget.color); t1 = _this._trailingController; t1.toString; t1.set$axis(G.axisDirectionToAxis(_this._widget.axisDirection)); } }, _overscroll_indicator$_handleScrollNotification$1: function(notification) { var t1, t2, t3, t4, t5, controller, isLeading, confirmationNotification, velocity, position, _this = this; if (!_this._widget.notificationPredicate$1(notification)) return false; t1 = _this._leadingController; t1.toString; t2 = notification.metrics; t3 = t2._scroll_metrics$_pixels; t3.toString; t4 = t2._scroll_metrics$_minScrollExtent; t4.toString; t1._paintOffsetScrollPixels = -Math.min(t3 - t4, t1._overscroll_indicator$_paintOffset); t4 = _this._trailingController; t4.toString; t5 = t2._scroll_metrics$_maxScrollExtent; t5.toString; t4._paintOffsetScrollPixels = -Math.min(t5 - t3, t4._overscroll_indicator$_paintOffset); if (notification instanceof G.OverscrollNotification) { t3 = notification.overscroll; if (t3 < 0) controller = t1; else if (t3 > 0) controller = t4; else controller = null; isLeading = controller === t1; if (_this._lastNotificationType !== C.Type_OverscrollNotification_Ps9) { confirmationNotification = new L.OverscrollIndicatorNotification(isLeading, 0); t1 = _this._framework$_element; t1.toString; confirmationNotification.dispatch$1(t1); t1 = _this._accepted; t1.$indexSet(0, isLeading, confirmationNotification._accepted); t1 = t1.$index(0, isLeading); t1.toString; if (t1) controller._overscroll_indicator$_paintOffset = 0; } t1 = _this._accepted.$index(0, isLeading); t1.toString; if (t1) { t1 = notification.velocity; if (t1 !== 0) { t2 = controller._pullRecedeTimer; if (t2 != null) t2.cancel$0(0); controller._pullRecedeTimer = null; velocity = C.JSNumber_methods.clamp$2(Math.abs(t1), 100, 10000); t1 = controller._glowOpacityTween; if (controller._overscroll_indicator$_state === C._GlowState_0) t2 = 0.3; else { t2 = controller.get$_glowOpacity(); t2 = t2.get$value(t2); } t1.begin = t2; t2.toString; t1.end = C.JSNumber_methods.clamp$2(velocity * 0.00006, t2, 0.5); t2 = controller._glowSizeTween; t1 = controller.get$_glowSize(); t2.begin = t1.get$value(t1); t2.end = Math.min(0.025 + 75e-8 * velocity * velocity, 1); controller.get$_glowController().duration = P.Duration$(0, 0, 0, C.JSNumber_methods.round$0(0.15 + velocity * 0.02), 0, 0); controller.get$_glowController().forward$1$from(0, 0); controller._displacement = 0.5; controller._overscroll_indicator$_state = C._GlowState_1; } else { t1 = notification.dragDetails; if (t1 != null) { t4 = notification.context.get$renderObject(); t4.toString; type$.RenderBox._as(t4); t5 = t4._box$_size; t5.toString; position = t4.globalToLocal$1(t1.globalPosition); switch (G.axisDirectionToAxis(t2.axisDirection)) { case C.Axis_0: controller.toString; t1 = t5._dy; controller.pull$4(0, Math.abs(t3), t5._dx, J.clamp$2$n(position._dy, 0, t1), t1); break; case C.Axis_1: controller.toString; t1 = t5._dx; controller.pull$4(0, Math.abs(t3), t5._dy, J.clamp$2$n(position._dx, 0, t1), t1); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } } } } else if (notification instanceof G.ScrollEndNotification || notification instanceof G.ScrollUpdateNotification) if (notification.get$dragDetails() != null) { t1 = _this._leadingController; if (t1._overscroll_indicator$_state === C._GlowState_2) t1._recede$1(C.Duration_600000); t1 = _this._trailingController; if (t1._overscroll_indicator$_state === C._GlowState_2) t1._recede$1(C.Duration_600000); } _this._lastNotificationType = H.getRuntimeType(notification); return false; }, dispose$0: function(_) { this._leadingController.dispose$0(0); this._trailingController.dispose$0(0); this.super$__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var _this = this, _null = null, t1 = _this._widget, t2 = _this._leadingController, t3 = _this._trailingController, t4 = t1.axisDirection, t5 = _this._leadingAndTrailingListener; return new U.NotificationListener(new T.RepaintBoundary(T.CustomPaint$(new T.RepaintBoundary(t1.child, _null), new L._GlowingOverscrollIndicatorPainter(t2, t3, t4, t5), _null, _null, C.Size_0_0), _null), _this.get$_overscroll_indicator$_handleScrollNotification(), _null, type$.NotificationListener_ScrollNotification); } }; L._GlowState.prototype = { toString$0: function(_) { return this._overscroll_indicator$_name; } }; L._GlowController.prototype = { get$_glowController: function() { var t1 = this.___GlowController__glowController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_glowController")) : t1; }, get$_glowOpacity: function() { var t1 = this.___GlowController__glowOpacity; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_glowOpacity")) : t1; }, get$_glowSize: function() { var t1 = this.___GlowController__glowSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_glowSize")) : t1; }, get$_displacementTicker: function() { var t1 = this.___GlowController__displacementTicker; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_displacementTicker")) : t1; }, set$color: function(_, value) { if (J.$eq$(this._overscroll_indicator$_color, value)) return; this._overscroll_indicator$_color = value; this.notifyListeners$0(); }, set$axis: function(value) { if (this._axis === value) return; this._axis = value; this.notifyListeners$0(); }, dispose$0: function(_) { var t1, _this = this; _this.get$_glowController().dispose$0(0); _this.get$_displacementTicker().dispose$0(0); t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this.super$ChangeNotifier$dispose(0); }, pull$4: function(_, overscroll, extent, crossAxisOffset, crossExtent) { var t2, height, t3, _this = this, t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this._pullDistance = _this._pullDistance + overscroll / 200; t1 = _this._glowOpacityTween; t2 = _this.get$_glowOpacity(); t1.begin = t2.get$value(t2); t2 = _this.get$_glowOpacity(); t1.end = Math.min(t2.get$value(t2) + overscroll / extent * 0.8, 0.5); height = Math.min(extent, crossExtent * 0.20096189432249995); t2 = _this._glowSizeTween; t1 = _this.get$_glowSize(); t2.begin = t1.get$value(t1); t1 = Math.sqrt(_this._pullDistance * height); t3 = _this.get$_glowSize(); t2.end = Math.max(1 - 1 / (0.7 * t1), H.checkNum(t3.get$value(t3))); t3 = crossAxisOffset / crossExtent; _this._displacementTarget = t3; if (t3 !== _this._displacement) { if (!_this.get$_displacementTicker().get$isTicking()) _this.get$_displacementTicker().start$0(0); } else { _this.get$_displacementTicker().stop$0(0); _this._displacementTickerLastElapsed = null; } _this.get$_glowController().duration = C.Duration_167000; if (_this._overscroll_indicator$_state !== C._GlowState_2) { _this.get$_glowController().forward$1$from(0, 0); _this._overscroll_indicator$_state = C._GlowState_2; } else { t1 = _this.get$_glowController()._ticker; if (!(t1 != null && t1._ticker$_future != null)) _this.notifyListeners$0(); } _this._pullRecedeTimer = P.Timer_Timer(C.Duration_167000, new L._GlowController_pull_closure(_this)); }, _changePhase$1: function($status) { var _this = this; if ($status !== C.AnimationStatus_3) return; switch (_this._overscroll_indicator$_state) { case C._GlowState_1: _this._recede$1(C.Duration_600000); break; case C._GlowState_3: _this._overscroll_indicator$_state = C._GlowState_0; _this._pullDistance = 0; break; case C._GlowState_2: case C._GlowState_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _recede$1: function(duration) { var t2, _this = this, t1 = _this._overscroll_indicator$_state; if (t1 === C._GlowState_3 || t1 === C._GlowState_0) return; t1 = _this._pullRecedeTimer; if (t1 != null) t1.cancel$0(0); _this._pullRecedeTimer = null; t1 = _this._glowOpacityTween; t2 = _this.get$_glowOpacity(); t1.begin = t2.get$value(t2); t1.end = 0; t1 = _this._glowSizeTween; t2 = _this.get$_glowSize(); t1.begin = t2.get$value(t2); t1.end = 0; _this.get$_glowController().duration = duration; _this.get$_glowController().forward$1$from(0, 0); _this._overscroll_indicator$_state = C._GlowState_3; }, _tickDisplacement$1: function(elapsed) { var t2, _this = this, t1 = _this._displacementTickerLastElapsed; if (t1 != null) { t1 = t1._duration; t2 = _this._displacementTarget; _this._displacement = t2 - (t2 - _this._displacement) * Math.pow(2, -(elapsed._duration - t1) / $.$get$_GlowController__crossAxisHalfTime()._duration); _this.notifyListeners$0(); } if (B.nearEqual(_this._displacementTarget, _this._displacement, 0.001)) { _this.get$_displacementTicker().stop$0(0); _this._displacementTickerLastElapsed = null; } else _this._displacementTickerLastElapsed = elapsed; }, paint$2: function(canvas, size) { var t2, baseGlowScale, radius, height, t3, t4, paint, t5, _this = this, t1 = _this.get$_glowOpacity(); if (J.$eq$(t1.get$value(t1), 0)) return; t1 = size._dx; t2 = size._dy; baseGlowScale = t1 > t2 ? t2 / t1 : 1; radius = t1 * 3 / 2; height = Math.min(t2, t1 * 0.20096189432249995); t2 = _this.get$_glowSize(); t2 = t2.get$value(t2); t3 = _this._displacement; t4 = H._detectRenderer(); paint = t4 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t4 = _this._overscroll_indicator$_color; t5 = _this.get$_glowOpacity(); t5 = t5.get$value(t5); t4.toString; paint.set$color(0, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t5), t4.get$value(t4) >>> 16 & 255, t4.get$value(t4) >>> 8 & 255, t4.get$value(t4) & 255)); canvas.save$0(0); canvas.translate$2(0, 0, _this._overscroll_indicator$_paintOffset + _this._paintOffsetScrollPixels); canvas.scale$2(0, 1, t2 * baseGlowScale); canvas.clipRect$1(0, new P.Rect(0, 0, 0 + t1, 0 + height)); canvas.drawCircle$3(0, new P.Offset(t1 / 2 * (0.5 + t3), height - radius), radius, paint); canvas.restore$0(0); } }; L._GlowController_pull_closure.prototype = { call$0: function() { return this.$this._recede$1(C.Duration_2000000); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; L._GlowingOverscrollIndicatorPainter.prototype = { _paintSide$5: function(canvas, size, controller, axisDirection, growthDirection) { var t1; if (controller == null) return; switch (G.applyGrowthDirectionToAxisDirection(axisDirection, growthDirection)) { case C.AxisDirection_0: controller.paint$2(canvas, size); break; case C.AxisDirection_2: canvas.save$0(0); canvas.translate$2(0, 0, size._dy); canvas.scale$2(0, 1, -1); controller.paint$2(canvas, size); canvas.restore$0(0); break; case C.AxisDirection_3: canvas.save$0(0); canvas.rotate$1(0, 1.5707963267948966); canvas.scale$2(0, 1, -1); controller.paint$2(canvas, new P.Size(size._dy, size._dx)); canvas.restore$0(0); break; case C.AxisDirection_1: canvas.save$0(0); t1 = size._dx; canvas.translate$2(0, t1, 0); canvas.rotate$1(0, 1.5707963267948966); controller.paint$2(canvas, new P.Size(size._dy, t1)); canvas.restore$0(0); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, paint$2: function(canvas, size) { var _this = this, t1 = _this.axisDirection; _this._paintSide$5(canvas, size, _this.leadingController, t1, C.GrowthDirection_1); _this._paintSide$5(canvas, size, _this.trailingController, t1, C.GrowthDirection_0); }, shouldRepaint$1: function(oldDelegate) { return oldDelegate.leadingController != this.leadingController || oldDelegate.trailingController != this.trailingController; } }; L.OverscrollIndicatorNotification.prototype = { debugFillDescription$1: function(description) { this.super$_OverscrollIndicatorNotification_Notification_ViewportNotificationMixin$debugFillDescription(description); description.push("side: " + (this.leading ? "leading edge" : "trailing edge")); } }; L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin.prototype = { visitAncestor$1: function(element) { if (element instanceof N.RenderObjectElement && type$.RenderAbstractViewport._is(element.get$renderObject())) ++this.ViewportNotificationMixin__depth; return this.super$Notification$visitAncestor(element); }, debugFillDescription$1: function(description) { var t1; this.super$Notification$debugFillDescription(description); t1 = "depth: " + this.ViewportNotificationMixin__depth + " ("; description.push(t1 + (this.ViewportNotificationMixin__depth === 0 ? "local" : "remote") + ")"); } }; L.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; S._StorageEntryIdentifier.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof S._StorageEntryIdentifier && S.listEquals(other.keys, this.keys); }, get$hashCode: function(_) { return P.hashList(this.keys); }, toString$0: function(_) { return "StorageEntryIdentifier(" + C.JSArray_methods.join$1(this.keys, ":") + ")"; } }; S.PageStorageBucket.prototype = { _allKeys$1: function(context) { var keys = H.setRuntimeTypeInfo([], type$.JSArray_PageStorageKey_dynamic); if (S.PageStorageBucket__maybeAddKey(context, keys)) context.visitAncestorElements$1(new S.PageStorageBucket__allKeys_closure(keys)); return keys; }, writeState$2: function(context, data) { var t1, _this = this; if (_this._storage == null) _this._storage = P.LinkedHashMap_LinkedHashMap$_empty(type$.Object, type$.dynamic); t1 = _this._allKeys$1(context); if (t1.length !== 0) _this._storage.$indexSet(0, new S._StorageEntryIdentifier(t1), data); }, readState$1: function(context) { var t1; if (this._storage == null) return null; t1 = this._allKeys$1(context); return t1.length !== 0 ? this._storage.$index(0, new S._StorageEntryIdentifier(t1)) : null; } }; S.PageStorageBucket__allKeys_closure.prototype = { call$1: function(element) { return S.PageStorageBucket__maybeAddKey(element, this.keys); }, $signature: 119 }; S.PageStorage.prototype = { build$1: function(_, context) { return this.child; } }; D.PageController.prototype = { animateToPage$3$curve$duration: function(page, curve, duration) { var position = type$._PagePosition._as(C.JSArray_methods.get$single(this._positions)); page.toString; return position.animateTo$3$curve$duration(position.getPixelsFromPage$1(page), curve, duration); }, jumpToPage$1: function(page) { var position = type$._PagePosition._as(C.JSArray_methods.get$single(this._positions)); position.jumpTo$1(position.getPixelsFromPage$1(page)); }, createScrollPosition$3: function(physics, context, oldPosition) { var _null = null, t1 = type$.LinkedList__ListenerEntry; t1 = new D._PagePosition(this.initialPage, this.viewportFraction, C.ScrollDirection_0, physics, context, true, _null, new B.ValueNotifier(false, new P.LinkedList(t1), type$.ValueNotifier_bool), new P.LinkedList(t1)); t1.ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics(context, _null, true, oldPosition, physics); t1.ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics(context, _null, _null, true, oldPosition, physics); return t1; }, attach$1: function(position) { this.super$ScrollController$attach(position); type$._PagePosition._as(position).set$viewportFraction(this.viewportFraction); } }; D.PageMetrics.prototype = {}; D._PagePosition.prototype = { ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject: function(object, alignment, alignmentPolicy, curve, duration, targetRenderObject) { return this.super$ScrollPosition$ensureVisible(object, alignment, alignmentPolicy, curve, duration, null); }, set$viewportFraction: function(value) { var oldPage, _this = this; if (_this._viewportFraction === value) return; oldPage = _this.get$page(_this); _this._viewportFraction = value; if (oldPage != null) _this.forcePixels$1(_this.getPixelsFromPage$1(oldPage)); }, get$_initialPageOffset: function() { var t1 = this._viewportDimension; t1.toString; return Math.max(0, t1 * (this._viewportFraction - 1) / 2); }, getPageFromPixels$2: function(pixels, viewportDimension) { var actual = Math.max(0, pixels - this.get$_initialPageOffset()) / Math.max(1, viewportDimension * this._viewportFraction), round = C.JSNumber_methods.roundToDouble$0(actual); if (Math.abs(actual - round) < 1e-10) return round; return actual; }, getPixelsFromPage$1: function(page) { var t1 = this._viewportDimension; t1.toString; return page * t1 * this._viewportFraction + this.get$_initialPageOffset(); }, get$page: function(_) { var t2, t3, _this = this, t1 = _this._pixels; if (t1 == null) t1 = null; else { t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; t3 = C.JSNumber_methods.clamp$2(t1, t2, t3); t2 = _this._viewportDimension; t2.toString; t2 = _this.getPageFromPixels$2(t3, t2); t1 = t2; } return t1; }, saveScrollOffset$0: function() { var t3, t4, _this = this, t1 = _this.context, t2 = t1._framework$_element; t2.toString; t2 = S.PageStorage_of(t2); if (t2 != null) { t1 = t1._framework$_element; t1.toString; t3 = _this._pixels; t3.toString; t4 = _this._viewportDimension; t4.toString; t2.writeState$2(t1, _this.getPageFromPixels$2(t3, t4)); } }, restoreScrollOffset$0: function() { var t1, t2, value; if (this._pixels == null) { t1 = this.context; t2 = t1._framework$_element; t2.toString; t2 = S.PageStorage_of(t2); if (t2 == null) value = null; else { t1 = t1._framework$_element; t1.toString; value = t2.readState$1(t1); } if (value != null) this._pageToUseOnStartup = value; } }, saveOffset$0: function() { var t2, _this = this, t1 = _this._pixels; t1.toString; t2 = _this._viewportDimension; t2.toString; _this.context._persistedScrollOffset.set$value(0, _this.getPageFromPixels$2(t1, t2)); $.ServicesBinding__instance.get$_restorationManager().flushData$0(); }, restoreOffset$2$initialRestore: function(offset, initialRestore) { if (initialRestore) this._pageToUseOnStartup = offset; else this.jumpTo$1(this.getPixelsFromPage$1(offset)); }, applyViewportDimension$1: function(viewportDimension) { var oldPixels, page, newPixels, _this = this, oldViewportDimensions = _this._viewportDimension; oldViewportDimensions = oldViewportDimensions != null ? oldViewportDimensions : null; if (viewportDimension == oldViewportDimensions) return true; _this.super$ScrollPosition$applyViewportDimension(viewportDimension); oldPixels = _this._pixels; oldPixels = oldPixels != null ? oldPixels : null; if (oldPixels == null || oldViewportDimensions === 0) page = _this._pageToUseOnStartup; else { oldViewportDimensions.toString; page = _this.getPageFromPixels$2(oldPixels, oldViewportDimensions); } newPixels = _this.getPixelsFromPage$1(page); if (newPixels !== oldPixels) { _this._pixels = newPixels; return false; } return true; }, applyContentDimensions$2: function(minScrollExtent, maxScrollExtent) { var newMinScrollExtent = minScrollExtent + this.get$_initialPageOffset(); return this.super$ScrollPosition$applyContentDimensions(newMinScrollExtent, Math.max(newMinScrollExtent, maxScrollExtent - this.get$_initialPageOffset())); }, copyWith$0: function() { var t2, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._minScrollExtent; if (t1 != null && _this._maxScrollExtent != null) t1.toString; else t1 = _null; if (_this._minScrollExtent != null && _this._maxScrollExtent != null) { t2 = _this._maxScrollExtent; t2.toString; } else t2 = _null; t3 = _this._pixels; t3 = t3 != null ? t3 : _null; t4 = _this._viewportDimension; t4 = t4 != null ? t4 : _null; t5 = _this.context._widget; t5 = t5.axisDirection; t6 = _this._viewportFraction; return new D.PageMetrics(t6, t1, t2, t3, t4, t5); }, $isPageMetrics: 1 }; D._ForceImplicitScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new D._ForceImplicitScrollPhysics(false, this.buildParent$1(ancestor)); }, get$allowImplicitScrolling: function() { return this.allowImplicitScrolling; } }; D.PageScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new D.PageScrollPhysics(this.buildParent$1(ancestor)); }, _getPage$1: function(position) { var t1, t2; if (position instanceof D._PagePosition) { t1 = position.get$page(position); t1.toString; return t1; } t1 = position._pixels; t1.toString; t2 = position._viewportDimension; t2.toString; return t1 / t2; }, _getPixels$2: function(position, page) { var t1; if (position instanceof D._PagePosition) return position.getPixelsFromPage$1(page); t1 = position._viewportDimension; t1.toString; return page * t1; }, createBallisticSimulation$2: function(position, velocity) { var t1, t2, tolerance, page, target, _this = this; if (velocity <= 0) { t1 = position._pixels; t1.toString; t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; t1 = t2; } else t1 = false; if (!t1) if (velocity >= 0) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 >= t2; t1 = t2; } else t1 = false; else t1 = true; if (t1) return _this.super$ScrollPhysics$createBallisticSimulation(position, velocity); tolerance = _this.get$tolerance(); page = _this._getPage$1(position); t1 = tolerance.velocity; if (velocity < -t1) page -= 0.5; else if (velocity > t1) page += 0.5; target = _this._getPixels$2(position, J.roundToDouble$0$n(page)); t1 = position._pixels; t1.toString; if (target !== t1) { t1 = _this.get$spring(); t2 = position._pixels; t2.toString; return new M.ScrollSpringSimulation(target, M._SpringSolution__SpringSolution(t1, t2 - target, velocity), tolerance); } return null; }, get$allowImplicitScrolling: function() { return false; } }; D.PageView.prototype = { createState$0: function() { return new D._PageViewState(C._StateLifecycle_0); } }; D._PageViewState.prototype = { initState$0: function() { this.super$State$initState(); this._lastReportedPage = this._widget.controller.initialPage; }, _getDirection$1: function(context) { var t1, axisDirection; switch (this._widget.scrollDirection) { case C.Axis_0: t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; axisDirection = G.textDirectionToAxisDirection(t1.textDirection); this._widget.toString; return axisDirection; case C.Axis_1: return C.AxisDirection_2; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var t2, t3, t4, _this = this, _null = null, axisDirection = _this._getDirection$1(context), t1 = _this._widget.physics; if (t1 == null) t1 = _null; t1 = new D.PageScrollPhysics(C.PageScrollPhysics_null.buildParent$1(t1)); t1 = new D._ForceImplicitScrollPhysics(false, _null).buildParent$1(t1); t2 = _this._widget; t3 = t2.dragStartBehavior; t2 = t2.controller; t4 = K.ScrollConfiguration_of(context).copyWith$1$scrollbars(false); return new U.NotificationListener(F.Scrollable$(axisDirection, t2, t3, false, new D._ForceImplicitScrollPhysics(false, t1), _null, t4, _null, new D._PageViewState_build_closure(_this, axisDirection)), new D._PageViewState_build_closure0(_this), _null, type$.NotificationListener_ScrollNotification); } }; D._PageViewState_build_closure0.prototype = { call$1: function(notification) { var metrics, t1, t2, t3, currentPage; if (notification.ViewportNotificationMixin__depth === 0 && this.$this._widget.onPageChanged != null && notification instanceof G.ScrollUpdateNotification) { metrics = type$.PageMetrics._as(notification.metrics); t1 = metrics._scroll_metrics$_pixels; t1.toString; t2 = metrics._scroll_metrics$_minScrollExtent; t2.toString; t3 = metrics._scroll_metrics$_maxScrollExtent; t3.toString; t3 = Math.max(0, C.JSNumber_methods.clamp$2(t1, t2, t3)); t2 = metrics._scroll_metrics$_viewportDimension; t2.toString; currentPage = C.JSNumber_methods.round$0(t3 / Math.max(1, t2 * metrics.viewportFraction)); t1 = this.$this; if (currentPage !== t1._lastReportedPage) { t1._lastReportedPage = currentPage; t1._widget.onPageChanged.call$1(currentPage); } } return false; }, $signature: 160 }; D._PageViewState_build_closure.prototype = { call$2: function(context, position) { var t1 = this.$this._widget; return Q.Viewport$(0, this.axisDirection, 0, C.CacheExtentStyle_1, null, C.Clip_1, position, H.setRuntimeTypeInfo([new A.SliverFillViewport(t1.controller.viewportFraction, t1.childrenDelegate, null)], type$.JSArray_Widget)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2090 }; V.PageRoute.prototype = { get$opaque: function() { return true; }, get$barrierDismissible: function() { return false; }, canTransitionTo$1: function(nextRoute) { return nextRoute instanceof V.PageRoute; }, canTransitionFrom$1: function(previousRoute) { return previousRoute instanceof V.PageRoute; } }; L.PerformanceOverlay.prototype = { createRenderObject$1: function(context) { var t1 = new L.RenderPerformanceOverlay(this.optionsMask, 0, false, false); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = true; return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$optionsMask(this.optionsMask); renderObject.set$rasterizerThreshold(0); } }; G.HtmlElementView.prototype = { build$1: function(_, context) { return new G.PlatformViewLink(new G.HtmlElementView_build_closure(), this.get$_createHtmlElementView(), this.viewType, null); }, _createHtmlElementView$1: function(params) { var controller = new G._HtmlElementViewController(params.id, this.viewType); controller._platform_view$_initialize$0().then$1$1(0, new G.HtmlElementView__createHtmlElementView_closure(params), type$.Null); return controller; } }; G.HtmlElementView_build_closure.prototype = { call$2: function(context, controller) { return new G.PlatformViewSurface(controller, C.Set_empty, C.PlatformViewHitTestBehavior_0, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2080 }; G.HtmlElementView__createHtmlElementView_closure.prototype = { call$1: function(_) { var t1 = this.params; t1.onPlatformViewCreated.call$1(t1.id); }, $signature: 83 }; G._HtmlElementViewController.prototype = { _platform_view$_initialize$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$_platform_view$_initialize$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(C.MethodChannel_qdG._invokeMethod$1$3$arguments$missingOk("create", P.LinkedHashMap_LinkedHashMap$_literal(["id", $async$self.viewId, "viewType", $async$self.viewType], type$.String, type$.dynamic), false, type$.void), $async$_platform_view$_initialize$0); case 2: // returning from await. $async$self._initialized = true; // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_platform_view$_initialize$0, $async$completer); }, clearFocus$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$clearFocus$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$clearFocus$0, $async$completer); }, dispatchPointerEvent$1: function($event) { return this.dispatchPointerEvent$body$_HtmlElementViewController($event); }, dispatchPointerEvent$body$_HtmlElementViewController: function($event) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$dispatchPointerEvent$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$dispatchPointerEvent$1, $async$completer); }, dispose$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self._initialized ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait(C.MethodChannel_qdG._invokeMethod$1$3$arguments$missingOk("dispose", $async$self.viewId, false, type$.void), $async$dispose$0); case 4: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$dispose$0, $async$completer); }, get$viewId: function() { return this.viewId; } }; G.PlatformViewCreationParams.prototype = { get$id: function(receiver) { return this.id; } }; G.PlatformViewLink.prototype = { createState$0: function() { return new G._PlatformViewLinkState(C._StateLifecycle_0); }, _surfaceFactory$2: function(arg0, arg1) { return this._surfaceFactory.call$2(arg0, arg1); }, _onCreatePlatformView$1: function(arg0) { return this._onCreatePlatformView.call$1(arg0); } }; G._PlatformViewLinkState.prototype = { build$1: function(_, context) { var t1, t2, _this = this, _null = null; if (!_this._platformViewCreated) return C.SizedBox_yzX; t1 = _this._surface; if (t1 == null) { t1 = _this._widget; t1.toString; t2 = _this._platform_view$_controller; t2.toString; t2 = _this._surface = t1._surfaceFactory$2(context, t2); t1 = t2; } t2 = _this._focusNode; t1.toString; return L.Focus$(false, _null, t1, _null, true, t2, true, _null, _this.get$_handleFrameworkFocusChanged(), _null, _null); }, initState$0: function() { var _this = this; _this._focusNode = O.FocusNode$(true, "PlatformView(id: " + H.S(_this._platform_view$_id) + ")", true, null, false); _this._platform_view$_initialize$0(); _this.super$State$initState(); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.viewType != oldWidget.viewType) { t1 = _this._platform_view$_controller; if (t1 != null) t1.dispose$0(0); _this._surface = null; _this._platformViewCreated = false; _this._platform_view$_initialize$0(); } }, _platform_view$_initialize$0: function() { var _this = this, t1 = $.$get$platformViewsRegistry().getNextPlatformViewId$0(); _this._platform_view$_id = t1; _this._platform_view$_controller = _this._widget._onCreatePlatformView$1(new G.PlatformViewCreationParams(t1, _this.get$_onPlatformViewCreated())); }, _onPlatformViewCreated$1: function(id) { this.setState$1(new G._PlatformViewLinkState__onPlatformViewCreated_closure(this)); }, _handleFrameworkFocusChanged$1: function(isFocused) { var t1; if (!isFocused) { t1 = this._platform_view$_controller; if (t1 != null) t1.clearFocus$0(); } }, dispose$0: function(_) { var t1 = this._platform_view$_controller; if (t1 != null) t1.dispose$0(0); this._platform_view$_controller = null; this.super$State$dispose(0); } }; G._PlatformViewLinkState__onPlatformViewCreated_closure.prototype = { call$0: function() { this.$this._platformViewCreated = true; }, $signature: 0 }; G.PlatformViewSurface.prototype = { createRenderObject$1: function(context) { var t1 = new G.PlatformViewRenderBox(this.controller, null, null, null); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$hitTestBehavior(this.hitTestBehavior); t1._updateGestureRecognizersWithCallBack$2(this.gestureRecognizers, t1._platform_view0$_controller.get$dispatchPointerEvent()); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$controller(0, this.controller); renderObject.set$hitTestBehavior(this.hitTestBehavior); renderObject._updateGestureRecognizersWithCallBack$2(this.gestureRecognizers, renderObject._platform_view0$_controller.get$dispatchPointerEvent()); } }; Q.PreferredSize.prototype = { build$1: function(_, context) { return this.child; }, get$preferredSize: function() { return this.preferredSize; } }; E.PrimaryScrollController.prototype = { updateShouldNotify$1: function(oldWidget) { return this.controller != oldWidget.controller; } }; Z.SliverReorderableList.prototype = { createState$0: function() { return new Z.SliverReorderableListState(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$._ReorderableItemState), null, C._StateLifecycle_0); }, itemBuilder$2: function(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); } }; Z.SliverReorderableListState.prototype = { get$_scrollable: function() { var t1 = this.__SliverReorderableListState__scrollable; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollable")) : t1; }, get$_reverse: function() { return this.get$_scrollable()._widget.axisDirection === C.AxisDirection_0 || this.get$_scrollable()._widget.axisDirection === C.AxisDirection_3; }, didChangeDependencies$0: function() { this.super$_SliverReorderableListState_State_TickerProviderStateMixin$didChangeDependencies(); var t1 = this._framework$_element; t1.toString; t1 = F.Scrollable_of(t1); t1.toString; this.__SliverReorderableListState__scrollable = t1; }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.itemCount !== oldWidget.itemCount) this._dragReset$0(); }, dispose$0: function(_) { var t1 = this._dragInfo; if (t1 != null) t1.dispose$0(0); this.super$_SliverReorderableListState_State_TickerProviderStateMixin$dispose(0); }, startItemDragReorder$3$event$index$recognizer: function($event, index, recognizer) { this.setState$1(new Z.SliverReorderableListState_startItemDragReorder_closure(this, index, recognizer, $event)); }, _registerItem$1: function(item) { var t1, t2; this._reorderable_list$_items.$indexSet(0, item._widget.index, item); t1 = item._widget.index; t2 = this._dragInfo; if (t1 == (t2 == null ? null : t2.get$index(t2))) { item.set$dragging(true); item.rebuild$0(); } }, _unregisterItem$2: function(index, item) { var t1 = this._reorderable_list$_items; if (t1.$index(0, index) === item) t1.remove$1(0, index); }, _dragStart$1: function(position) { var item, t3, t4, t5, result, _this = this, t1 = _this._reorderable_list$_items, t2 = _this._dragIndex; t2.toString; item = t1.$index(0, t2); item.set$dragging(true); item.rebuild$0(); _this._insertIndex = item._widget.index; t2 = G.axisDirectionToAxis(_this.get$_scrollable()._widget.axisDirection); t3 = new Z._DragInfo(t2, _this.get$_dragUpdate(), _this.get$_dragEnd(), _this.get$_dragCancel(), _this.get$_dropCompleted(), _this._widget.proxyDecorator, _this); t4 = item._framework$_element.get$renderObject(); t4.toString; type$.RenderBox._as(t4); t3.___DragInfo_listState = item.get$_listState(); t5 = item._widget; t3.___DragInfo_index = t5.index; t3.___DragInfo_child = t5.child; t3.___DragInfo_capturedThemes = t5.capturedThemes; t3.___DragInfo_dragPosition = position; t3.___DragInfo_dragOffset = t4.globalToLocal$1(position); t4 = item._framework$_element; t4 = t4.get$size(t4); t4.toString; t3.___DragInfo_itemSize = t4; t3.___DragInfo_itemExtent = Z._sizeExtent(t3.get$itemSize(), t2); t2 = item._framework$_element; t2.toString; t3.scrollable = F.Scrollable_of(t2); _this._dragInfo = t3; t3.startDrag$0(); result = _this._framework$_element.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t2 = X.OverlayEntry$(_this._dragInfo.get$createProxy(), false); _this._reorderable_list$_overlayEntry = t2; result.insert$1(0, t2); for (t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); if (t2 == item || t2._framework$_element == null) continue; t3 = _this._insertIndex; t3.toString; t4 = _this._dragInfo.___DragInfo_itemExtent; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("itemExtent")); t5 = _this.__SliverReorderableListState__scrollable; if ((t5 === $ ? H.throwExpression(H.LateError$fieldNI("_scrollable")) : t5)._widget.axisDirection !== C.AxisDirection_0) t5 = t5._widget.axisDirection === C.AxisDirection_3; else t5 = true; t2.updateForGap$4(t3, t4, false, t5); } return _this._dragInfo; }, _dragUpdate$3: function(item, position, delta) { this.setState$1(new Z.SliverReorderableListState__dragUpdate_closure(this)); }, _dragCancel$1: function(item) { this._dragReset$0(); }, _dragEnd$1: function(item) { this.setState$1(new Z.SliverReorderableListState__dragEnd_closure(this, item)); }, _dropCompleted$0: function() { var t2, _this = this, t1 = _this._dragIndex; t1.toString; t2 = _this._insertIndex; t2.toString; if (t1 !== t2) _this._widget.onReorder.call$2(t1, t2); _this._dragReset$0(); }, _dragReset$0: function() { this.setState$1(new Z.SliverReorderableListState__dragReset_closure(this)); }, _resetItemGap$0: function() { var t1, t2, t3; for (t1 = this._reorderable_list$_items, t1 = t1.get$values(t1), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = t2._offsetAnimation; if (t3 != null) { t3._ticker.dispose$0(0); t3._ticker = null; t3.super$AnimationEagerListenerMixin$dispose(0); t2._offsetAnimation = null; } t2._targetOffset = t2._startOffset = C.Offset_0_0; t2.rebuild$0(); } }, _dragUpdateItems$0: function() { var t2, t3, t4, newIndex, t5, t6, t7, itemStart, itemStart0, itemStart1, itemExtent, itemEnd, itemMiddle, _this = this, _s11_ = "_scrollable", gapExtent = _this._dragInfo.get$itemExtent(), proxyItemStart = Z._offsetExtent(_this._dragInfo.get$dragPosition().$sub(0, _this._dragInfo.get$dragOffset()), G.axisDirectionToAxis(_this.get$_scrollable()._widget.axisDirection)), proxyItemEnd = proxyItemStart + gapExtent, t1 = _this._insertIndex; t1.toString; for (t2 = _this._reorderable_list$_items, t3 = t2.get$values(t2), t3 = t3.get$iterator(t3), t4 = type$.RenderBox, newIndex = t1; t3.moveNext$0();) { t1 = t3.get$current(t3); t5 = t1._widget.index; t6 = _this._dragIndex; t6.toString; if (t5 === t6 || t1._framework$_element == null) continue; t5 = t1._framework$_element.get$renderObject(); t5.toString; t4._as(t5); t6 = T.MatrixUtils_transformPoint(t5.getTransformTo$1(0, null), C.Offset_0_0); t7 = t1._targetOffset; itemStart = t6._dx + t7._dx; itemStart0 = t6._dy + t7._dy; t5 = t5._box$_size; t7 = t5._dx; t5 = t5._dy; t6 = _this.__SliverReorderableListState__scrollable; itemStart1 = G.axisDirectionToAxis((t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t6)._widget.axisDirection) === C.Axis_1 ? itemStart0 : itemStart; itemExtent = G.axisDirectionToAxis(t6._widget.axisDirection) === C.Axis_1 ? itemStart0 + t5 - itemStart0 : itemStart + t7 - itemStart; itemEnd = itemStart1 + itemExtent; itemMiddle = itemStart1 + itemExtent / 2; if (t6._widget.axisDirection !== C.AxisDirection_0) t5 = t6._widget.axisDirection === C.AxisDirection_3; else t5 = true; if (t5) { if (itemEnd >= proxyItemEnd && proxyItemEnd >= itemMiddle) { newIndex = t1._widget.index; break; } else if (itemMiddle >= proxyItemStart && proxyItemStart >= itemStart1) { newIndex = t1._widget.index + 1; break; } else if (itemStart1 > proxyItemEnd && newIndex < t1._widget.index + 1) newIndex = t1._widget.index + 1; else if (proxyItemStart > itemEnd && newIndex > t1._widget.index) newIndex = t1._widget.index; } else if (itemStart1 <= proxyItemStart && proxyItemStart <= itemMiddle) { newIndex = t1._widget.index; break; } else if (itemMiddle <= proxyItemEnd && proxyItemEnd <= itemEnd) { newIndex = t1._widget.index + 1; break; } else if (itemEnd < proxyItemStart && newIndex < t1._widget.index + 1) newIndex = t1._widget.index + 1; else if (proxyItemEnd < itemStart1 && newIndex > t1._widget.index) newIndex = t1._widget.index; } if (newIndex != _this._insertIndex) { _this._insertIndex = newIndex; for (t1 = t2.get$values(t2), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t2 = t1.get$current(t1); t3 = t2._widget.index; t4 = _this._dragIndex; t4.toString; if (t3 === t4 || t2._framework$_element == null) continue; t3 = _this.__SliverReorderableListState__scrollable; if ((t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s11_)) : t3)._widget.axisDirection !== C.AxisDirection_0) t3 = t3._widget.axisDirection === C.AxisDirection_3; else t3 = true; t2.updateForGap$4(newIndex, gapExtent, true, t3); } } }, _autoScrollIfNecessary$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, scrollStart, scrollEnd, proxyStart, proxyEnd, t3, overDrag, newOffset; var $async$_autoScrollIfNecessary$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$async$self._autoScrolling) { t1 = $async$self._dragInfo; t1 = t1 != null && t1.scrollable != null; } else t1 = false; $async$goto = t1 ? 2 : 3; break; case 2: // then t1 = $async$self._dragInfo.scrollable; t2 = t1._scrollable$_position; t2.toString; t1 = t1._framework$_element.get$renderObject(); t1.toString; type$.RenderBox._as(t1); scrollStart = Z._offsetExtent(T.MatrixUtils_transformPoint(t1.getTransformTo$1(0, null), C.Offset_0_0), G.axisDirectionToAxis($async$self.get$_scrollable()._widget.axisDirection)); t1 = t1._box$_size; t1.toString; scrollEnd = scrollStart + Z._sizeExtent(t1, G.axisDirectionToAxis($async$self.get$_scrollable()._widget.axisDirection)); proxyStart = Z._offsetExtent($async$self._dragInfo.get$dragPosition().$sub(0, $async$self._dragInfo.get$dragOffset()), G.axisDirectionToAxis($async$self.get$_scrollable()._widget.axisDirection)); proxyEnd = proxyStart + $async$self._dragInfo.get$itemExtent(); if ($async$self.get$_reverse()) { if (proxyEnd > scrollEnd) { t1 = t2._pixels; t1.toString; t3 = t2._minScrollExtent; t3.toString; t3 = t1 > t3; t1 = t3; } else t1 = false; if (t1) { overDrag = Math.max(proxyEnd - scrollEnd, 20); t1 = t2._minScrollExtent; t1.toString; t3 = t2._pixels; t3.toString; newOffset = Math.max(t1, t3 - overDrag / 10); } else { if (proxyStart < scrollStart) { t1 = t2._pixels; t1.toString; t3 = t2._maxScrollExtent; t3.toString; t3 = t1 < t3; t1 = t3; } else t1 = false; if (t1) { overDrag = Math.max(scrollStart - proxyStart, 20); t1 = t2._maxScrollExtent; t1.toString; t3 = t2._pixels; t3.toString; newOffset = Math.min(t1, t3 + overDrag / 10); } else newOffset = null; } } else { if (proxyStart < scrollStart) { t1 = t2._pixels; t1.toString; t3 = t2._minScrollExtent; t3.toString; t3 = t1 > t3; t1 = t3; } else t1 = false; if (t1) { overDrag = Math.max(scrollStart - proxyStart, 20); t1 = t2._minScrollExtent; t1.toString; t3 = t2._pixels; t3.toString; newOffset = Math.max(t1, t3 - overDrag / 10); } else { if (proxyEnd > scrollEnd) { t1 = t2._pixels; t1.toString; t3 = t2._maxScrollExtent; t3.toString; t3 = t1 < t3; t1 = t3; } else t1 = false; if (t1) { overDrag = Math.max(proxyEnd - scrollEnd, 20); t1 = t2._maxScrollExtent; t1.toString; t3 = t2._pixels; t3.toString; newOffset = Math.min(t1, t3 + overDrag / 10); } else newOffset = null; } } if (newOffset != null) { t1 = t2._pixels; t1.toString; t1 = Math.abs(newOffset - t1) >= 1; } else t1 = false; $async$goto = t1 ? 4 : 5; break; case 4: // then $async$self._autoScrolling = true; $async$goto = 6; return P._asyncAwait(t2.animateTo$3$curve$duration(newOffset, C.C__Linear, C.Duration_14000), $async$_autoScrollIfNecessary$0); case 6: // returning from await. $async$self._autoScrolling = false; if ($async$self._dragInfo != null) { $async$self._dragUpdateItems$0(); $async$self._autoScrollIfNecessary$0(); } case 5: // join case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_autoScrollIfNecessary$0, $async$completer); }, _itemOffsetAt$1: function(index) { var t1 = this._reorderable_list$_items.$index(0, index)._framework$_element.get$renderObject(); t1.toString; return T.MatrixUtils_transformPoint(type$.RenderBox._as(t1).getTransformTo$1(0, null), C.Offset_0_0); }, _reorderable_list$_itemBuilder$2: function(context, index) { var child, result, t1, t2, _this = this, _null = null; if (_this._dragInfo != null && index >= _this._widget.itemCount) switch (G.axisDirectionToAxis(_this.get$_scrollable()._widget.axisDirection)) { case C.Axis_0: return T.SizedBox$(_null, _null, _this._dragInfo.get$itemExtent()); case C.Axis_1: return T.SizedBox$(_null, _this._dragInfo.get$itemExtent(), _null); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } child = _this._widget.itemBuilder$2(context, index); result = context.findAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = child.key; t1.toString; t2 = result._framework$_element; t2.toString; return new Z._ReorderableItem(index, child, M.InheritedTheme_capture(context, t2), new Z._ReorderableItemGlobalKey(t1, index, _this, t1)); }, build$1: function(_, context) { var t1 = this._widget.itemCount, t2 = this._dragInfo != null ? 1 : 0; return G.SliverList$(new G.SliverChildBuilderDelegate(this.get$_reorderable_list$_itemBuilder(), t1 + t2, true, true, true, G.sliver___kDefaultSemanticIndexCallback$closure())); } }; Z.SliverReorderableListState_startItemDragReorder_closure.prototype = { call$0: function() { var t2, _this = this, t1 = _this.$this; if (t1._dragInfo != null) t1._dragReset$0(); t2 = _this.index; if (t1._reorderable_list$_items.containsKey$1(0, t2)) { t1._dragIndex = t2; t2 = _this.recognizer; t2.onStart = t1.get$_dragStart(); t2.addPointer$1(_this.event); t1._recognizer = t2; } else throw H.wrapException(P.Exception_Exception("Attempting to start a drag on a non-visible item")); }, $signature: 0 }; Z.SliverReorderableListState__dragUpdate_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._reorderable_list$_overlayEntry; if (t2 != null) t2.markNeedsBuild$0(); t1._dragUpdateItems$0(); t1._autoScrollIfNecessary$0(); }, $signature: 0 }; Z.SliverReorderableListState__dragEnd_closure.prototype = { call$0: function() { var t3, itemIndex, t1 = this.$this, t2 = t1._insertIndex; t2.toString; if (t2 < t1._widget.itemCount - 1) t1._finalDropPosition = t1._itemOffsetAt$1(t2); else { t2 = t1._reorderable_list$_items; t2 = t2.get$length(t2); t3 = t1._insertIndex; if (t2 > 1) { t3.toString; itemIndex = t3 - 1; } else { t3.toString; itemIndex = t3; } t2 = this.item; if (t1.get$_reverse()) t1._finalDropPosition = t1._itemOffsetAt$1(itemIndex).$sub(0, Z._extentOffset(t2.get$itemExtent(), G.axisDirectionToAxis(t1.get$_scrollable()._widget.axisDirection))); else t1._finalDropPosition = t1._itemOffsetAt$1(itemIndex).$add(0, Z._extentOffset(t2.get$itemExtent(), G.axisDirectionToAxis(t1.get$_scrollable()._widget.axisDirection))); } }, $signature: 0 }; Z.SliverReorderableListState__dragReset_closure.prototype = { call$0: function() { var t2, dragItem, t1 = this.$this; if (t1._dragInfo != null) { t2 = t1._dragIndex; if (t2 != null && t1._reorderable_list$_items.containsKey$1(0, t2)) { t2 = t1._dragIndex; t2.toString; dragItem = t1._reorderable_list$_items.$index(0, t2); dragItem._dragging = false; dragItem.rebuild$0(); t1._dragIndex = null; } t2 = t1._dragInfo; if (t2 != null) t2.dispose$0(0); t1._dragInfo = null; t1._resetItemGap$0(); t2 = t1._recognizer; if (t2 != null) t2.dispose$0(0); t1._recognizer = null; t2 = t1._reorderable_list$_overlayEntry; if (t2 != null) t2.remove$0(0); t1._finalDropPosition = t1._reorderable_list$_overlayEntry = null; } }, $signature: 0 }; Z._ReorderableItem.prototype = { createState$0: function() { return new Z._ReorderableItemState(C.Offset_0_0, C.Offset_0_0, C._StateLifecycle_0); } }; Z._ReorderableItemState.prototype = { get$_listState: function() { var t1 = this.___ReorderableItemState__listState; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_listState")) : t1; }, set$dragging: function(dragging) { if (this._framework$_element != null) this.setState$1(new Z._ReorderableItemState_dragging_closure(this, true)); }, initState$0: function() { var _this = this, result = _this._framework$_element.findAncestorStateOfType$1$0(type$.SliverReorderableListState); result.toString; _this.___ReorderableItemState__listState = result; _this.get$_listState()._registerItem$1(_this); _this.super$State$initState(); }, dispose$0: function(_) { var _this = this, t1 = _this._offsetAnimation; if (t1 != null) t1.dispose$0(0); _this.get$_listState()._unregisterItem$2(_this._widget.index, _this); _this.super$State$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.index; if (t1 != _this._widget.index) { _this.get$_listState()._unregisterItem$2(t1, _this); _this.get$_listState()._registerItem$1(_this); } }, build$1: function(_, context) { var t1, _this = this; if (_this._dragging) return C.SizedBox_null_null_null_null; _this.get$_listState()._registerItem$1(_this); t1 = E.Matrix4_Matrix4$translationValues(_this.get$offset(_this)._dx, _this.get$offset(_this)._dy, 0); return T.Transform$(null, _this._widget.child, t1, true); }, deactivate$0: function() { var _this = this; _this.get$_listState()._unregisterItem$2(_this._widget.index, _this); _this.super$State$deactivate(); }, get$offset: function(_) { var animValue, _this = this, t1 = _this._offsetAnimation; if (t1 != null) { animValue = C.Cubic_xDo.transform$1(0, t1.get$_animation_controller$_value()); t1 = P.Offset_lerp(_this._startOffset, _this._targetOffset, animValue); t1.toString; return t1; } return _this._targetOffset; }, updateForGap$4: function(gapIndex, gapExtent, animate, reverse) { var t1, newTargetOffset, t2, _this = this; if (gapIndex <= _this._widget.index) { t1 = reverse ? -gapExtent : gapExtent; newTargetOffset = Z._extentOffset(t1, G.axisDirectionToAxis(_this.get$_listState().get$_scrollable()._widget.axisDirection)); } else newTargetOffset = C.Offset_0_0; if (!newTargetOffset.$eq(0, _this._targetOffset)) { _this._targetOffset = newTargetOffset; if (animate) if (_this._offsetAnimation == null) { t1 = G.AnimationController$(null, C.Duration_250000, 0, null, 1, null, _this.get$_listState()); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$rebuild()); t1.addStatusListener$1(new Z._ReorderableItemState_updateForGap_closure(_this)); t1.forward$0(0); _this._offsetAnimation = t1; } else { _this._startOffset = _this.get$offset(_this); _this._offsetAnimation.forward$1$from(0, 0); } else { t1 = _this._offsetAnimation; if (t1 != null) { t1.dispose$0(0); _this._offsetAnimation = null; } _this._startOffset = _this._targetOffset; } _this.rebuild$0(); } }, rebuild$0: function() { if (this._framework$_element != null) this.setState$1(new Z._ReorderableItemState_rebuild_closure()); } }; Z._ReorderableItemState_dragging_closure.prototype = { call$0: function() { this.$this._dragging = this.dragging; }, $signature: 0 }; Z._ReorderableItemState_updateForGap_closure.prototype = { call$1: function($status) { var t1; if ($status === C.AnimationStatus_3) { t1 = this.$this; t1._startOffset = t1._targetOffset; t1._offsetAnimation.dispose$0(0); t1._offsetAnimation = null; } }, $signature: 35 }; Z._ReorderableItemState_rebuild_closure.prototype = { call$0: function() { }, $signature: 0 }; Z.ReorderableDragStartListener.prototype = { build$1: function(_, context) { var _null = null; return T.Listener$(C.HitTestBehavior_0, this.child, _null, new Z.ReorderableDragStartListener_build_closure(this, context), _null, _null, _null); }, createRecognizer$0: function() { var t1 = type$.int; return new V.ImmediateMultiDragGestureRecognizer(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._ImmediatePointerState), this, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); } }; Z.ReorderableDragStartListener_build_closure.prototype = { call$1: function($event) { var t1 = this.$this, t2 = this.context.findAncestorStateOfType$1$0(type$.SliverReorderableListState); if (t2 != null) t2.startItemDragReorder$3$event$index$recognizer($event, t1.index, t1.createRecognizer$0()); return null; }, $signature: 215 }; Z.ReorderableDelayedDragStartListener.prototype = { createRecognizer$0: function() { var t1 = type$.int; return new V.DelayedMultiDragGestureRecognizer(P.LinkedHashMap_LinkedHashMap$_empty(t1, type$._DelayedPointerState), this, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); } }; Z._DragInfo.prototype = { get$index: function(_) { var t1 = this.___DragInfo_index; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("index")) : t1; }, get$dragPosition: function() { var t1 = this.___DragInfo_dragPosition; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("dragPosition")) : t1; }, get$dragOffset: function() { var t1 = this.___DragInfo_dragOffset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("dragOffset")) : t1; }, get$itemSize: function() { var t1 = this.___DragInfo_itemSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("itemSize")) : t1; }, get$itemExtent: function() { var t1 = this.___DragInfo_itemExtent; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("itemExtent")) : t1; }, dispose$0: function(_) { var t1 = this._reorderable_list$_proxyAnimation; if (t1 != null) t1.dispose$0(0); }, startDrag$0: function() { var t1 = G.AnimationController$(null, C.Duration_250000, 0, null, 1, null, this.tickerProvider); t1.addStatusListener$1(new Z._DragInfo_startDrag_closure(this)); t1.forward$0(0); this._reorderable_list$_proxyAnimation = t1; }, update$1: function(_, details) { var _this = this, t1 = details.delta, delta = Z._restrictAxis(t1, _this.scrollDirection); _this.___DragInfo_dragPosition = _this.get$dragPosition().$add(0, delta); _this.onUpdate.call$3(_this, _this.get$dragPosition(), t1); }, end$1: function(_, details) { this._reorderable_list$_proxyAnimation.reverse$0(0); this.onEnd.call$1(this); }, cancel$0: function(_) { var _this = this, t1 = _this._reorderable_list$_proxyAnimation; if (t1 != null) t1.dispose$0(0); _this._reorderable_list$_proxyAnimation = null; _this.onCancel.call$1(_this); }, createProxy$1: function(context) { var t2, t3, t4, t5, t6, t7, _this = this, t1 = _this.___DragInfo_capturedThemes; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("capturedThemes")); t2 = _this.___DragInfo_listState; if (t2 === $) t2 = H.throwExpression(H.LateError$fieldNI("listState")); t3 = _this.get$index(_this); t4 = _this.___DragInfo_child; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("child")); t5 = _this.get$itemSize(); t6 = _this._reorderable_list$_proxyAnimation; t6.toString; t7 = _this.get$dragPosition().$sub(0, _this.get$dragOffset()).$sub(0, Z._overlayOrigin(context)); return new M._CaptureAll(t1._themes, new Z._DragItemProxy(t2, t3, t4, t7, t5, t6, _this.proxyDecorator, null), null); } }; Z._DragInfo_startDrag_closure.prototype = { call$1: function($status) { var t1, t2; if ($status === C.AnimationStatus_0) { t1 = this.$this; t2 = t1._reorderable_list$_proxyAnimation; if (t2 != null) t2.dispose$0(0); t1._reorderable_list$_proxyAnimation = null; t1.onDropCompleted.call$0(); } }, $signature: 35 }; Z._DragItemProxy.prototype = { build$1: function(_, context) { var t2, proxyChild0, _this = this, proxyChild = _this.child, t1 = _this.animation; t1.toString; t2 = _this.proxyDecorator.call$3(proxyChild, _this.index, t1); proxyChild0 = t2; proxyChild = proxyChild0 == null ? proxyChild : proxyChild0; return K.AnimatedBuilder$(t1, new Z._DragItemProxy_build_closure(_this, Z._overlayOrigin(context)), proxyChild); } }; Z._DragItemProxy_build_closure.prototype = { call$2: function(context, child) { var t2, _null = null, t1 = this.$this, effectivePosition = t1.position, dropPosition = t1.listState._finalDropPosition; if (dropPosition != null) { t2 = P.Offset_lerp(dropPosition.$sub(0, this.overlayOrigin), effectivePosition, C.Cubic_xDo0.transform$1(0, t1.animation.get$_animation_controller$_value())); t2.toString; effectivePosition = t2; } t1 = t1.size; t2 = t1._dx; return T.Positioned$(_null, T.SizedBox$(child, t1._dy, t2), _null, _null, effectivePosition._dx, _null, effectivePosition._dy, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 478 }; Z._ReorderableItemGlobalKey.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(_this)) return false; return other instanceof Z._ReorderableItemGlobalKey && J.$eq$(other.subKey, _this.subKey) && other.index == _this.index && other.state === _this.state; }, get$hashCode: function(_) { return P.hashValues(this.subKey, this.index, this.state, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; Z._SliverReorderableListState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; K.RestorationScope.prototype = { createState$0: function() { return new K._RestorationScopeState(null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), null, true, null, C._StateLifecycle_0); } }; K._RestorationScopeState.prototype = { get$restorationId: function() { return this._widget.restorationId; }, restoreState$2: function(oldBucket, initialRestore) { }, build$1: function(_, context) { return K.UnmanagedRestorationScope$(this.RestorationMixin__bucket, this._widget.child); } }; K.UnmanagedRestorationScope.prototype = { updateShouldNotify$1: function(oldWidget) { return oldWidget.bucket != this.bucket; } }; K.RootRestorationScope.prototype = { createState$0: function() { return new K._RootRestorationScopeState(C._StateLifecycle_0); } }; K._RootRestorationScopeState.prototype = { didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; _this._ancestorBucket = K.RestorationScope_of(t1); _this._loadRootBucketIfNecessary$0(); if (_this._okToRenderBlankContainer == null) { _this._widget.toString; _this._okToRenderBlankContainer = false; } }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._loadRootBucketIfNecessary$0(); }, get$_isWaitingForRootBucket: function() { this._widget.toString; return false; }, _loadRootBucketIfNecessary$0: function() { var _this = this; if (_this.get$_isWaitingForRootBucket() && !_this._isLoadingRootBucket) { _this._isLoadingRootBucket = true; ++$.RendererBinding__instance.RendererBinding__firstFrameDeferredCount; $.ServicesBinding__instance.get$_restorationManager().get$rootBucket().then$1$1(0, new K._RootRestorationScopeState__loadRootBucketIfNecessary_closure(_this), type$.Null); } }, _replaceRootBucket$0: function() { var _this = this; _this._rootBucketValid = false; _this._rootBucket = null; $.ServicesBinding__instance.get$_restorationManager().removeListener$1(0, _this.get$_replaceRootBucket()); _this._loadRootBucketIfNecessary$0(); }, dispose$0: function(_) { if (this._rootBucketValid) $.ServicesBinding__instance.get$_restorationManager().removeListener$1(0, this.get$_replaceRootBucket()); this.super$State$dispose(0); }, build$1: function(_, context) { var t2, t3, _this = this, t1 = _this._okToRenderBlankContainer; t1.toString; if (t1 && _this.get$_isWaitingForRootBucket()) return C.SizedBox_0_0_null_null; t1 = _this._ancestorBucket; if (t1 == null) t1 = _this._rootBucket; t2 = _this._widget; t3 = t2.restorationId; return K.UnmanagedRestorationScope$(t1, new K.RestorationScope(t2.child, t3, null)); } }; K._RootRestorationScopeState__loadRootBucketIfNecessary_closure.prototype = { call$1: function(bucket) { var t2, t1 = this.$this; t1._isLoadingRootBucket = false; if (t1._framework$_element != null) { t2 = $.ServicesBinding__instance.get$_restorationManager().ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1.get$_replaceRootBucket()), false); t1.setState$1(new K._RootRestorationScopeState__loadRootBucketIfNecessary__closure(t1, bucket)); } $.RendererBinding__instance.allowFirstFrame$0(); }, $signature: 2066 }; K._RootRestorationScopeState__loadRootBucketIfNecessary__closure.prototype = { call$0: function() { var t1 = this.$this; t1._rootBucket = this.bucket; t1._rootBucketValid = true; t1._okToRenderBlankContainer = false; }, $signature: 0 }; K.RestorableProperty.prototype = { get$enabled: function(_) { return true; }, dispose$0: function(_) { var _this = this, t1 = _this._restoration0$_owner; if (t1 != null) t1._unregister$1(_this); _this.super$ChangeNotifier$dispose(0); _this._restoration0$_disposed = true; } }; K.RestorationMixin.prototype = { didToggleBucket$1: function(oldBucket) { }, registerForRestoration$2: function(property, restorationId) { var t2, _this = this, t1 = _this.RestorationMixin__bucket, hasSerializedValue = (t1 == null ? null : J.containsKey$1$x(t1.get$_rawValues(), restorationId)) === true, initialValue = hasSerializedValue ? property.fromPrimitives$1(J.$index$asx(_this.RestorationMixin__bucket.get$_rawValues(), restorationId)) : property.createDefaultValue$0(); if (property._restoration0$_restorationId == null) { property._restoration0$_restorationId = restorationId; property._restoration0$_owner = _this; t1 = new K.RestorationMixin_registerForRestoration_listener(_this, property); t2 = property.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1), false); _this.RestorationMixin__properties.$indexSet(0, property, t1); } property.initWithValue$1(initialValue); if (!hasSerializedValue && property.get$enabled(property) && _this.RestorationMixin__bucket != null) _this._updateProperty$1(property); }, didUpdateRestorationId$0: function() { var t1, oldBucket, _this = this; if (_this.RestorationMixin__currentParent != null) { t1 = _this.RestorationMixin__bucket; t1 = t1 == null ? null : t1._restorationId; t1 = t1 == _this.get$restorationId() || _this.get$restorePending(); } else t1 = true; if (t1) return; oldBucket = _this.RestorationMixin__bucket; if (_this._updateBucketIfNecessary$2$parent$restorePending(_this.RestorationMixin__currentParent, false)) if (oldBucket != null) oldBucket.dispose$0(0); }, get$restorePending: function() { var t1, potentialNewParent, _this = this; if (_this.RestorationMixin__firstRestorePending) return true; if (_this.get$restorationId() == null) return false; t1 = _this._framework$_element; t1.toString; potentialNewParent = K.RestorationScope_of(t1); if (potentialNewParent != _this.RestorationMixin__currentParent) { if (potentialNewParent == null) t1 = null; else { t1 = potentialNewParent._manager; t1 = t1 == null ? null : t1._isReplacing; t1 = t1 === true; } t1 = t1 === true; } else t1 = false; return t1; }, _updateBucketIfNecessary$2$parent$restorePending: function($parent, restorePending) { var t1, t2, _this = this; if (_this.get$restorationId() == null || $parent == null) return _this._setNewBucketIfNecessary$2$newBucket$restorePending(null, restorePending); if (restorePending || _this.RestorationMixin__bucket == null) { t1 = _this.get$restorationId(); t1.toString; return _this._setNewBucketIfNecessary$2$newBucket$restorePending($parent.claimChild$2$debugOwner(t1, _this), restorePending); } t1 = _this.RestorationMixin__bucket; t1.toString; t2 = _this.get$restorationId(); t2.toString; t1.rename$1(t2); t2 = _this.RestorationMixin__bucket; t2.toString; $parent.adoptChild$1(t2); return false; }, _setNewBucketIfNecessary$2$newBucket$restorePending: function(newBucket, restorePending) { var t2, _this = this, t1 = _this.RestorationMixin__bucket; if (newBucket == t1) return false; _this.RestorationMixin__bucket = newBucket; if (!restorePending) { if (newBucket != null) { t2 = _this.RestorationMixin__properties; t2.get$keys(t2).forEach$1(0, _this.get$_updateProperty()); } _this.didToggleBucket$1(t1); } return true; }, _updateProperty$1: function(property) { var t3, t1 = property.get$enabled(property), t2 = this.RestorationMixin__bucket; if (t1) { if (t2 != null) { t1 = property._restoration0$_restorationId; t1.toString; t3 = property.toPrimitives$0(); if (!J.$eq$(J.$index$asx(t2.get$_rawValues(), t1), t3) || !J.containsKey$1$x(t2.get$_rawValues(), t1)) { J.$indexSet$ax(t2.get$_rawValues(), t1, t3); t2._markNeedsSerialization$0(); } } } else if (t2 != null) { t1 = property._restoration0$_restorationId; t1.toString; t2.remove$1$1(0, t1, type$.Object); } }, _unregister$1: function(property) { var t1 = this.RestorationMixin__properties.remove$1(0, property); t1.toString; property.removeListener$1(0, t1); property._restoration0$_owner = property._restoration0$_restorationId = null; } }; K.RestorationMixin_registerForRestoration_listener.prototype = { call$0: function() { var t1 = this.$this; if (t1.RestorationMixin__bucket == null) return; t1._updateProperty$1(this.property); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; K.__RestorationScopeState_State_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; K.__RestorationScopeState_State_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$State$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new K.__RestorationScopeState_State_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$State$dispose(0); } }; U.RestorableValue.prototype = { get$value: function(_) { return this._restoration_properties$_value; }, set$value: function(_, newValue) { var oldValue, _this = this; if (!J.$eq$(newValue, _this._restoration_properties$_value)) { oldValue = _this._restoration_properties$_value; _this._restoration_properties$_value = newValue; _this.didUpdateValue$1(oldValue); } }, initWithValue$1: function(value) { this._restoration_properties$_value = value; } }; U._RestorablePrimitiveValueN.prototype = { createDefaultValue$0: function() { return this._defaultValue; }, didUpdateValue$1: function(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1: function(serialized) { return H._instanceType(this)._eval$1("_RestorablePrimitiveValueN.T")._as(serialized); }, toPrimitives$0: function() { return this._restoration_properties$_value; } }; U._RestorablePrimitiveValue.prototype = { fromPrimitives$1: function(serialized) { return this.super$_RestorablePrimitiveValueN$fromPrimitives(serialized); }, toPrimitives$0: function() { var t1 = this.super$_RestorablePrimitiveValueN$toPrimitives(); t1.toString; return t1; } }; U.RestorableNum.prototype = {}; U.RestorableBool.prototype = {}; U.RestorableDateTime.prototype = { createDefaultValue$0: function() { return this._defaultValue; }, didUpdateValue$1: function(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1: function(data) { data.toString; return P.DateTime$fromMillisecondsSinceEpoch(H._asIntS(data), false); }, toPrimitives$0: function() { return this._restoration_properties$_value._value; } }; U.RestorableListenable.prototype = { get$value: function(_) { var t1 = this._restoration_properties$_value; t1.toString; return t1; }, initWithValue$1: function(value) { var _this = this, t1 = _this._restoration_properties$_value; if (t1 != null) t1.removeListener$1(0, _this.get$notifyListeners()); _this._restoration_properties$_value = value; value.toString; J.addListener$1$x(value, _this.get$notifyListeners()); }, dispose$0: function(_) { var t1; this.super$RestorableProperty$dispose(0); t1 = this._restoration_properties$_value; if (t1 != null) t1.removeListener$1(0, this.get$notifyListeners()); } }; U.RestorableChangeNotifier.prototype = { initWithValue$1: function(value) { this._disposeOldValue$0(); this.super$RestorableListenable$initWithValue(value); }, dispose$0: function(_) { this._disposeOldValue$0(); this.super$RestorableListenable$dispose(0); }, _disposeOldValue$0: function() { var t1 = this._restoration_properties$_value; if (t1 != null) P.scheduleMicrotask(t1.get$dispose(t1)); } }; U.RestorableTextEditingController.prototype = { createDefaultValue$0: function() { return D.TextEditingController$fromValue(this._initialValue); }, fromPrimitives$1: function(data) { data.toString; H._asStringS(data); return new D.TextEditingController(new N.TextEditingValue(data, C.TextSelection_TbC, C.TextRange_m1_m1), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, toPrimitives$0: function() { return this._restoration_properties$_value._change_notifier$_value.text; } }; Z.RouteInformation.prototype = {}; T.OverlayRoute.prototype = { get$overlayEntries: function() { return this._overlayEntries; }, install$0: function() { C.JSArray_methods.addAll$1(this._overlayEntries, this.createOverlayEntries$0()); this.super$Route$install(); }, didPop$1: function(result) { var _this = this; _this.super$Route$didPop(result); if (_this._routes$_controller.get$_status() === C.AnimationStatus_0) _this._navigator$_navigator.finalizeRoute$1(_this); return true; }, dispose$0: function(_) { C.JSArray_methods.set$length(this._overlayEntries, 0); this.super$Route$dispose(0); } }; T.TransitionRoute.prototype = { get$animation: function(_) { return this._routes$_animation; }, get$secondaryAnimation: function() { return this._secondaryAnimation; }, createAnimation$0: function() { var t1 = this._routes$_controller; t1.toString; return t1; }, _handleStatusChanged$1: function($status) { var t1, _this = this; switch ($status) { case C.AnimationStatus_3: t1 = _this._overlayEntries; if (t1.length !== 0) C.JSArray_methods.get$first(t1).set$opaque(_this.get$opaque()); break; case C.AnimationStatus_1: case C.AnimationStatus_2: t1 = _this._overlayEntries; if (t1.length !== 0) C.JSArray_methods.get$first(t1).set$opaque(false); break; case C.AnimationStatus_0: if (!_this.get$isActive()) _this._navigator$_navigator.finalizeRoute$1(_this); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, install$0: function() { var _this = this, duration = _this.get$transitionDuration(_this), reverseDuration = _this.get$transitionDuration(_this), t1 = _this.get$debugLabel(), t2 = _this._navigator$_navigator; t2.toString; _this._routes$_controller = G.AnimationController$(t1, duration, 0, reverseDuration, 1, null, t2); t2 = _this.createAnimation$0(); t2.addStatusListener$1(_this.get$_handleStatusChanged()); _this._routes$_animation = t2; _this.super$OverlayRoute$install(); t1 = _this._routes$_animation; if (t1.get$status(t1) === C.AnimationStatus_3 && _this._overlayEntries.length !== 0) C.JSArray_methods.get$first(_this._overlayEntries).set$opaque(_this.get$opaque()); }, didPush$0: function() { this.super$Route$didPush(); return this._routes$_controller.forward$0(0); }, didAdd$0: function() { this.super$Route$didAdd(); var t1 = this._routes$_controller; t1.set$value(0, t1.upperBound); }, didReplace$1: function(oldRoute) { var t1; if (oldRoute instanceof T.TransitionRoute) { t1 = this._routes$_controller; t1.toString; t1.set$value(0, oldRoute._routes$_controller.get$_animation_controller$_value()); } this.super$Route$didReplace(oldRoute); }, didPop$1: function(result) { this._routes$_result = result; this._routes$_controller.reverse$0(0); this.super$OverlayRoute$didPop(result); return true; }, didPopNext$1: function(nextRoute) { this._updateSecondaryAnimation$1(nextRoute); this.super$Route$didPopNext(nextRoute); }, didChangeNext$1: function(nextRoute) { this._updateSecondaryAnimation$1(nextRoute); this.super$Route$didChangeNext(nextRoute); }, _updateSecondaryAnimation$1: function(nextRoute) { var current, t2, t3, t4, t5, newAnimation, _this = this, t1 = {}, previousTrainHoppingListenerRemover = _this._trainHoppingListenerRemover; _this._trainHoppingListenerRemover = null; if (nextRoute instanceof T.TransitionRoute && _this.canTransitionTo$1(nextRoute) && nextRoute.canTransitionFrom$1(_this)) { current = _this._secondaryAnimation._animations$_parent; if (current != null) { t2 = current instanceof S.TrainHoppingAnimation ? current._currentTrain : current; t2.toString; t3 = nextRoute._routes$_animation; t3.toString; t4 = J.$eq$(t2.get$value(t2), t3.get$value(t3)) || t3.get$status(t3) === C.AnimationStatus_3 || t3.get$status(t3) === C.AnimationStatus_0; t5 = nextRoute._transitionCompleter.future; if (t4) _this._setSecondaryAnimation$2(t3, t5); else { t1.newAnimation = null; t4 = new T.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd(_this, t3, nextRoute); _this._trainHoppingListenerRemover = new T.TransitionRoute__updateSecondaryAnimation_closure(t1, t3, t4); t3.addStatusListener$1(t4); newAnimation = S.TrainHoppingAnimation$(t2, t3, new T.TransitionRoute__updateSecondaryAnimation_closure0(t1, _this, nextRoute)); t1.newAnimation = newAnimation; _this._setSecondaryAnimation$2(newAnimation, t5); } } else _this._setSecondaryAnimation$2(nextRoute._routes$_animation, nextRoute._transitionCompleter.future); } else _this._setSecondaryAnimation$1(C.C__AlwaysDismissedAnimation); if (previousTrainHoppingListenerRemover != null) previousTrainHoppingListenerRemover.call$0(); }, _setSecondaryAnimation$2: function(animation, disposed) { this._secondaryAnimation.set$parent(0, animation); if (disposed != null) disposed.then$1$1(0, new T.TransitionRoute__setSecondaryAnimation_closure(this, animation), type$.Null); }, _setSecondaryAnimation$1: function(animation) { return this._setSecondaryAnimation$2(animation, null); }, canTransitionTo$1: function(nextRoute) { return true; }, canTransitionFrom$1: function(previousRoute) { return true; }, dispose$0: function(_) { var _this = this, t1 = _this._routes$_controller; if (t1 != null) t1.dispose$0(0); _this._transitionCompleter.complete$1(0, _this._routes$_result); _this.super$OverlayRoute$dispose(0); }, get$debugLabel: function() { return "TransitionRoute"; }, toString$0: function(_) { return "TransitionRoute(animation: " + H.S(this._routes$_controller) + ")"; } }; T.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd.prototype = { call$1: function($status) { var t1, t2; switch ($status) { case C.AnimationStatus_3: case C.AnimationStatus_0: t1 = this.$this; t1._setSecondaryAnimation$2(this.nextTrain, this.nextRoute._transitionCompleter.future); t2 = t1._trainHoppingListenerRemover; if (t2 != null) { t2.call$0(); t1._trainHoppingListenerRemover = null; } break; case C.AnimationStatus_1: case C.AnimationStatus_2: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 35 }; T.TransitionRoute__updateSecondaryAnimation_closure.prototype = { call$0: function() { this.nextTrain.removeStatusListener$1(this._jumpOnAnimationEnd); var t1 = this._box_0.newAnimation; if (t1 != null) t1.dispose$0(0); }, $signature: 0 }; T.TransitionRoute__updateSecondaryAnimation_closure0.prototype = { call$0: function() { var t2, t1 = this.$this; t1._setSecondaryAnimation$2(this._box_0.newAnimation._currentTrain, this.nextRoute._transitionCompleter.future); t2 = t1._trainHoppingListenerRemover; if (t2 != null) { t2.call$0(); t1._trainHoppingListenerRemover = null; } }, $signature: 0 }; T.TransitionRoute__setSecondaryAnimation_closure.prototype = { call$1: function(_) { var t1 = this.$this._secondaryAnimation, t2 = this.animation; if (t1._animations$_parent == t2) { t1.set$parent(0, C.C__AlwaysDismissedAnimation); if (t2 instanceof S.TrainHoppingAnimation) t2.dispose$0(0); } }, $signature: 8 }; T.LocalHistoryEntry.prototype = { remove$0: function(_) { this._routes$_owner.removeLocalHistoryEntry$1(this); }, _notifyRemoved$0: function() { this.onRemove.call$0(); } }; T.LocalHistoryRoute.prototype = { addLocalHistoryEntry$1: function(entry) { var t1, t2, _this = this; entry._routes$_owner = _this; t1 = _this.LocalHistoryRoute__localHistory; if (t1 == null) t1 = _this.LocalHistoryRoute__localHistory = H.setRuntimeTypeInfo([], type$.JSArray_LocalHistoryEntry); t2 = t1.length; t1.push(entry); if (t2 === 0) _this.changedInternalState$0(); }, removeLocalHistoryEntry$1: function(entry) { var _this = this, t1 = _this.LocalHistoryRoute__localHistory; t1.toString; C.JSArray_methods.remove$1(t1, entry); entry._routes$_owner = null; entry._notifyRemoved$0(); if (_this.LocalHistoryRoute__localHistory.length === 0) { t1 = $.SchedulerBinding__instance; if (t1.SchedulerBinding__schedulerPhase === C.SchedulerPhase_3) t1.SchedulerBinding__postFrameCallbacks.push(new T.LocalHistoryRoute_removeLocalHistoryEntry_closure(_this)); else _this.changedInternalState$0(); } }, get$willHandlePopInternally: function() { var t1 = this.LocalHistoryRoute__localHistory; return t1 != null && t1.length !== 0; } }; T.LocalHistoryRoute_removeLocalHistoryEntry_closure.prototype = { call$1: function(duration) { this.$this.changedInternalState$0(); }, $signature: 28 }; T._DismissModalAction.prototype = { isEnabled$1: function(_, intent) { return T.ModalRoute_of(this.context, type$.dynamic).get$barrierDismissible(); }, invoke$1: function(intent) { return K.Navigator_of(this.context, false).maybePop$0(); } }; T._ModalScopeStatus.prototype = { updateShouldNotify$1: function(old) { return this.isCurrent !== old.isCurrent || this.canPop !== old.canPop || this.route !== old.route; } }; T._ModalScope.prototype = { createState$0: function() { return new T._ModalScopeState(O.FocusScopeNode$(true, C.Type__ModalScopeState_Yap.toString$0(0) + " Focus Scope", false), F.ScrollController$(null, 0), C._StateLifecycle_0, this.$ti._eval$1("_ModalScopeState<1>")); } }; T._ModalScopeState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = H.setRuntimeTypeInfo([], type$.JSArray_Listenable); t2 = _this._widget.route._animationProxy; if (t2 != null) t1.push(t2); t2 = _this._widget.route._secondaryAnimationProxy; if (t2 != null) t1.push(t2); _this.___ModalScopeState__listenable = new B._MergingListenable(t1); if (_this._widget.route.get$isCurrent()) _this._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(_this.focusScopeNode); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); if (_this._widget.route.get$isCurrent()) _this._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(_this.focusScopeNode); }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this._page = null; }, _forceRebuildPage$0: function() { this.setState$1(new T._ModalScopeState__forceRebuildPage_closure(this)); }, dispose$0: function(_) { this.focusScopeNode.dispose$0(0); this.super$State$dispose(0); }, get$_shouldIgnoreFocusRequest: function() { var t1 = this._widget.route._animationProxy; if ((t1 == null ? null : t1.get$status(t1)) !== C.AnimationStatus_2) { t1 = this._widget.route._navigator$_navigator; t1 = t1 == null ? null : t1.userGestureInProgressNotifier._change_notifier$_value; t1 = t1 === true; } else t1 = true; return t1; }, build$1: function(_, context) { var t4, _this = this, _null = null, t1 = _this._widget.route, t2 = t1.get$isCurrent(), t3 = _this._widget.route; if (!t3.get$hasActiveRouteBelow()) { t3 = t3.LocalHistoryRoute__localHistory; t3 = t3 != null && t3.length !== 0; } else t3 = true; t4 = _this._widget.route; return K.AnimatedBuilder$(t1._restorationScopeId, new T._ModalScopeState_build_closure(_this), new T._ModalScopeStatus(t2, t3, t1, new T.Offstage(t4._offstage, new S.PageStorage(new T.Builder(new T._ModalScopeState_build_closure0(_this), _null), t4._storageBucket, _null), _null), _null)); } }; T._ModalScopeState__forceRebuildPage_closure.prototype = { call$0: function() { this.$this._page = null; }, $signature: 0 }; T._ModalScopeState_build_closure.prototype = { call$2: function(context, child) { var t1 = this.$this._widget.route._restorationScopeId._change_notifier$_value; child.toString; return new K.RestorationScope(child, t1, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2063 }; T._ModalScopeState_build_closure0.prototype = { call$1: function(context) { var t4, _null = null, t1 = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_DismissIntent_Fb0, new T._DismissModalAction(context, new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.Type, type$.Action_Intent), t2 = this.$this, t3 = t2.___ModalScopeState__listenable; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_listenable")); t4 = t2._page; if (t4 == null) t4 = t2._page = new T.RepaintBoundary(new T.Builder(new T._ModalScopeState_build__closure(t2), _null), t2._widget.route._subtreeKey); return new U.Actions(t1, E.PrimaryScrollController$(L.FocusScope$(false, new T.RepaintBoundary(K.AnimatedBuilder$(t3, new T._ModalScopeState_build__closure0(t2), t4), _null), _null, t2.focusScopeNode), t2.primaryScrollController), _null); }, $signature: 2060 }; T._ModalScopeState_build__closure0.prototype = { call$2: function(context, child) { var t4, t5, t1 = this.$this, t2 = t1._widget.route, t3 = t2._animationProxy; t3.toString; t4 = t2._secondaryAnimationProxy; t4.toString; t5 = t2._navigator$_navigator; t5 = t5 == null ? null : t5.userGestureInProgressNotifier; if (t5 == null) t5 = new B.ValueNotifier(false, new P.LinkedList(type$.LinkedList__ListenerEntry), type$.ValueNotifier_bool); return t2.buildTransitions$4(context, t3, t4, K.AnimatedBuilder$(t5, new T._ModalScopeState_build___closure(t1), child)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 229 }; T._ModalScopeState_build___closure.prototype = { call$2: function(context, child) { var t1 = this.$this, ignoreEvents = t1.get$_shouldIgnoreFocusRequest(); t1.focusScopeNode.set$canRequestFocus(!ignoreEvents); return new T.IgnorePointer(ignoreEvents, null, child, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2055 }; T._ModalScopeState_build__closure.prototype = { call$1: function(context) { var t3, t1 = this.$this._widget.route, t2 = t1._animationProxy; t2.toString; t3 = t1._secondaryAnimationProxy; t3.toString; return t1.buildPage$3(context, t2, t3); }, $signature: 79 }; T.ModalRoute.prototype = { setState$1: function(fn) { var t1 = this._scopeKey; if (t1.get$currentState() != null) { t1 = t1.get$currentState(); if (t1._widget.route.get$isCurrent() && !t1.get$_shouldIgnoreFocusRequest()) t1._widget.route._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.focusScopeNode); t1.setState$1(fn); } else fn.call$0(); }, buildTransitions$4: function(context, animation, secondaryAnimation, child) { return child; }, install$0: function() { var _this = this; _this.super$TransitionRoute$install(); _this._animationProxy = S.ProxyAnimation$(T.TransitionRoute.prototype.get$animation.call(_this, _this)); _this._secondaryAnimationProxy = S.ProxyAnimation$(T.TransitionRoute.prototype.get$secondaryAnimation.call(_this)); }, didPush$0: function() { var t1 = this._scopeKey; if (t1.get$currentState() != null) this._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.get$currentState().focusScopeNode); return this.super$TransitionRoute$didPush(); }, didAdd$0: function() { var t1 = this._scopeKey; if (t1.get$currentState() != null) this._navigator$_navigator.focusScopeNode.setFirstFocus$1(t1.get$currentState().focusScopeNode); this.super$TransitionRoute$didAdd(); }, set$offstage: function(value) { var t1, _this = this; if (_this._offstage === value) return; _this.setState$1(new T.ModalRoute_offstage_closure(_this, value)); t1 = _this._animationProxy; t1.toString; t1.set$parent(0, _this._offstage ? C.C__AlwaysCompleteAnimation : T.TransitionRoute.prototype.get$animation.call(_this, _this)); t1 = _this._secondaryAnimationProxy; t1.toString; t1.set$parent(0, _this._offstage ? C.C__AlwaysDismissedAnimation : T.TransitionRoute.prototype.get$secondaryAnimation.call(_this)); _this.changedInternalState$0(); }, willPop$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this, t1, t2, _i, $async$temp1; var $async$willPop$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._scopeKey.get$currentState(); t1 = P.List_List$from($async$self._willPopCallbacks, true, type$.Future_bool_Function), t2 = t1.length, _i = 0; case 3: // for condition if (!(_i < t2)) { // goto after for $async$goto = 5; break; } $async$temp1 = J; $async$goto = 6; return P._asyncAwait(t1[_i].call$0(), $async$willPop$0); case 6: // returning from await. if (!$async$temp1.$eq$($async$result, true)) { $async$returnValue = C.RoutePopDisposition_1; // goto return $async$goto = 1; break; } case 4: // for update ++_i; // goto for condition $async$goto = 3; break; case 5: // after for $async$returnValue = $async$self.super$_ModalRoute_TransitionRoute_LocalHistoryRoute$willPop(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$willPop$0, $async$completer); }, didChangePrevious$1: function(previousRoute) { this.super$Route$didChangePrevious(previousRoute); this.changedInternalState$0(); }, changedInternalState$0: function() { var t1, _this = this; _this.super$Route$changedInternalState(); _this.setState$1(new T.ModalRoute_changedInternalState_closure()); _this.get$_modalBarrier().markNeedsBuild$0(); t1 = _this.__ModalRoute__modalScope; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_modalScope")); _this.get$maintainState(); t1.set$maintainState(true); }, changedExternalState$0: function() { this.super$Route$changedExternalState(); this.get$_modalBarrier().markNeedsBuild$0(); var t1 = this._scopeKey; if (t1.get$currentState() != null) t1.get$currentState()._forceRebuildPage$0(); }, get$_modalBarrier: function() { var t1 = this.__ModalRoute__modalBarrier; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_modalBarrier")) : t1; }, _buildModalBarrier$1: function(context) { var t1, t2, t3, t4, barrier, _this = this, _null = null; if (_this.get$barrierColor() != null && (_this.get$barrierColor().value >>> 24 & 255) !== 0 && !_this._offstage) { t1 = _this._animationProxy; t1.toString; t2 = _this.get$barrierColor().value; t2 = P.Color$fromARGB(0, t2 >>> 16 & 255, t2 >>> 8 & 255, t2 & 255); t3 = _this.get$barrierColor(); t4 = type$.ColorTween._eval$1("_ChainedEvaluation"); type$.Animation_double._as(t1); barrier = new X.AnimatedModalBarrier(_this.get$barrierDismissible(), _this.get$barrierLabel(), true, new R._AnimatedEvaluation(t1, new R._ChainedEvaluation(new R.CurveTween(C.Cubic_JUR), new R.ColorTween(t2, t3), t4), t4._eval$1("_AnimatedEvaluation")), _null); } else barrier = new X.ModalBarrier(_null, _this.get$barrierDismissible(), true, _this.get$barrierLabel(), _null); t1 = _this._animationProxy; if (t1.get$status(t1) !== C.AnimationStatus_2) { t1 = _this._animationProxy; t1 = t1.get$status(t1) === C.AnimationStatus_0; } else t1 = true; barrier = new T.IgnorePointer(t1, _null, barrier, _null); t1 = _this.get$barrierDismissible(); if (t1) barrier = new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.OrdinalSortKey_1_null, _null, _null, _null, _null, _null), false, false, false, barrier, _null); return barrier; }, _buildModalScope$1: function(context) { var _this = this, _null = null, t1 = _this._modalScopeCache; if (t1 == null) t1 = _this._modalScopeCache = new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.OrdinalSortKey_0_null, _null, _null, _null, _null, _null), false, false, false, new T._ModalScope(_this, _this._scopeKey, H._instanceType(_this)._eval$1("_ModalScope")), _null); return t1; }, createOverlayEntries$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$createOverlayEntries$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = X.OverlayEntry$($async$self.get$_buildModalBarrier(), false); $async$self.__ModalRoute__modalBarrier = t1; $async$goto = 2; return t1; case 2: // after yield $async$self.get$maintainState(); t1 = X.OverlayEntry$($async$self.get$_buildModalScope(), true); $async$self.__ModalRoute__modalScope = t1; $async$goto = 3; return t1; case 3: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.OverlayEntry); }, toString$0: function(_) { return "ModalRoute(" + this._navigator$_settings.toString$0(0) + ", animation: " + H.S(this._routes$_animation) + ")"; } }; T.ModalRoute_offstage_closure.prototype = { call$0: function() { this.$this._offstage = this.value; }, $signature: 0 }; T.ModalRoute_changedInternalState_closure.prototype = { call$0: function() { }, $signature: 0 }; T.PopupRoute.prototype = { get$opaque: function() { return false; }, get$maintainState: function() { return true; } }; T.RouteObserver.prototype = { didPop$2: function(route, previousRoute) { var t1 = H._instanceType(this)._eval$1("RouteObserver.R"); if (t1._is(route) && t1._is(previousRoute)) { t1 = this._routes$_listeners; t1.$index(0, previousRoute); t1.$index(0, route); } }, didPush$2: function(route, previousRoute) { var t1 = H._instanceType(this)._eval$1("RouteObserver.R"); if (t1._is(route) && t1._is(previousRoute)) this._routes$_listeners.$index(0, previousRoute); } }; T.RawDialogRoute.prototype = { get$barrierDismissible: function() { return this._barrierDismissible; }, get$barrierLabel: function() { return this._barrierLabel; }, get$barrierColor: function() { return this._barrierColor; }, get$transitionDuration: function(_) { return this._transitionDuration; }, buildPage$3: function(context, animation, secondaryAnimation) { var _null = null, t1 = this._pageBuilder.call$3(context, animation, secondaryAnimation); return new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), false, true, false, t1, _null); }, buildTransitions$4: function(context, animation, secondaryAnimation, child) { return this._transitionBuilder.call$4(context, animation, secondaryAnimation, child); } }; T._ModalRoute_TransitionRoute_LocalHistoryRoute.prototype = { willPop$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.RoutePopDisposition), $async$returnValue, $async$self = this, t1; var $async$willPop$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) { $async$returnValue = C.RoutePopDisposition_0; // goto return $async$goto = 1; break; } $async$returnValue = $async$self.super$Route$willPop(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$willPop$0, $async$completer); }, didPop$1: function(result) { var entry, _this = this, t1 = _this.LocalHistoryRoute__localHistory; if (t1 != null && t1.length !== 0) { entry = t1.pop(); entry._routes$_owner = null; entry._notifyRemoved$0(); if (_this.LocalHistoryRoute__localHistory.length === 0) _this.changedInternalState$0(); return false; } _this.super$TransitionRoute$didPop(result); return true; } }; Q.SafeArea.prototype = { build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, _this = this, padding = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding, t1 = padding.bottom; t1 === 0; t2 = _this.minimum; t3 = Math.max(H.checkNum(padding.left), H.checkNum(t2.left)); t4 = _this.top; t5 = Math.max(H.checkNum(t4 ? padding.top : 0), H.checkNum(t2.top)); t6 = Math.max(H.checkNum(padding.right), H.checkNum(t2.right)); t7 = _this.bottom; return new T.Padding(new V.EdgeInsets(t3, t5, t6, Math.max(H.checkNum(t7 ? t1 : 0), H.checkNum(t2.bottom))), F.MediaQuery_MediaQuery$removePadding(_this.child, context, t7, true, true, t4), null); } }; M.ScrollActivity.prototype = { resetActivity$0: function() { }, dispatchScrollStartNotification$2: function(metrics, context) { new G.ScrollStartNotification(null, metrics, context, 0).dispatch$1(context); }, dispatchScrollUpdateNotification$3: function(metrics, context, scrollDelta) { new G.ScrollUpdateNotification(null, scrollDelta, metrics, context, 0).dispatch$1(context); }, dispatchOverscrollNotification$3: function(metrics, context, overscroll) { new G.OverscrollNotification(null, overscroll, 0, metrics, context, 0).dispatch$1(context); }, dispatchScrollEndNotification$2: function(metrics, context) { new G.ScrollEndNotification(null, metrics, context, 0).dispatch$1(context); }, applyNewDimensions$0: function() { }, dispose$0: function(_) { }, toString$0: function(_) { return "#" + Y.shortHash(this); } }; M.IdleScrollActivity.prototype = { applyNewDimensions$0: function() { this._delegate.goBallistic$1(0); }, get$shouldIgnorePointer: function() { return false; }, get$isScrolling: function() { return false; }, get$velocity: function() { return 0; } }; M.HoldScrollActivity.prototype = { get$shouldIgnorePointer: function() { return false; }, get$isScrolling: function() { return false; }, get$velocity: function() { return 0; }, dispose$0: function(_) { this.onHoldCanceled.call$0(); this.super$ScrollActivity$dispose(0); } }; M.ScrollDragController.prototype = { _adjustForScrollStartThreshold$2: function(offset, timestamp) { var t1, t2, _this = this; if (timestamp == null) return offset; if (offset === 0) { if (_this.motionStartDistanceThreshold != null) if (_this._offsetSinceLastStop == null) { t1 = _this._lastNonStationaryTimestamp; t1 = timestamp._duration - t1._duration > 50000; } else t1 = false; else t1 = false; if (t1) _this._offsetSinceLastStop = 0; return 0; } else { t1 = _this._offsetSinceLastStop; if (t1 == null) return offset; else { t1 += offset; _this._offsetSinceLastStop = t1; t2 = _this.motionStartDistanceThreshold; t2.toString; if (Math.abs(t1) > t2) { _this._offsetSinceLastStop = null; t1 = Math.abs(offset); if (t1 > 24) return offset; else return Math.min(t2 / 3, t1) * J.get$sign$in(offset); } else return 0; } } }, update$1: function(_, details) { var t1, t2, t3, offset, _this = this; _this._lastDetails = details; t1 = details.primaryDelta; t1.toString; t2 = t1 === 0; if (!t2) _this._lastNonStationaryTimestamp = details.sourceTimeStamp; t3 = details.sourceTimeStamp; if (_this._retainMomentum) if (t2) if (t3 != null) { t2 = _this._lastNonStationaryTimestamp; t2 = t3._duration - t2._duration > 20000; } else t2 = true; else t2 = false; else t2 = false; if (t2) _this._retainMomentum = false; offset = _this._adjustForScrollStartThreshold$2(t1, t3); if (offset === 0) return; t1 = _this._delegate; t1.applyUserOffset$1(G.axisDirectionIsReversed(t1.context._widget.axisDirection) ? -offset : offset); }, end$1: function(_, details) { var velocity, isVelocityNotSubstantiallyLessThanCarriedMomentum, _this = this, t1 = details.primaryVelocity; t1.toString; velocity = -t1; if (G.axisDirectionIsReversed(_this._delegate.context._widget.axisDirection)) velocity = -velocity; _this._lastDetails = details; if (_this._retainMomentum) { t1 = _this.carriedVelocity; isVelocityNotSubstantiallyLessThanCarriedMomentum = Math.abs(velocity) > Math.abs(t1) * 0.5; if (J.get$sign$in(velocity) === J.get$sign$in(t1) && isVelocityNotSubstantiallyLessThanCarriedMomentum) velocity += t1; } _this._delegate.goBallistic$1(velocity); }, cancel$0: function(_) { this._delegate.goBallistic$1(0); }, dispose$0: function(_) { this._lastDetails = null; this.onDragCanceled.call$0(); }, toString$0: function(_) { return "#" + Y.shortHash(this); } }; M.DragScrollActivity.prototype = { dispatchScrollStartNotification$2: function(metrics, context) { new G.ScrollStartNotification(type$.DragStartDetails._as(this._scroll_activity$_controller._lastDetails), metrics, context, 0).dispatch$1(context); }, dispatchScrollUpdateNotification$3: function(metrics, context, scrollDelta) { new G.ScrollUpdateNotification(type$.DragUpdateDetails._as(this._scroll_activity$_controller._lastDetails), scrollDelta, metrics, context, 0).dispatch$1(context); }, dispatchOverscrollNotification$3: function(metrics, context, overscroll) { new G.OverscrollNotification(type$.DragUpdateDetails._as(this._scroll_activity$_controller._lastDetails), overscroll, 0, metrics, context, 0).dispatch$1(context); }, dispatchScrollEndNotification$2: function(metrics, context) { var lastDetails = this._scroll_activity$_controller._lastDetails; new G.ScrollEndNotification(lastDetails instanceof O.DragEndDetails ? lastDetails : null, metrics, context, 0).dispatch$1(context); }, get$shouldIgnorePointer: function() { return true; }, get$isScrolling: function() { return true; }, get$velocity: function() { return 0; }, dispose$0: function(_) { this._scroll_activity$_controller = null; this.super$ScrollActivity$dispose(0); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this._scroll_activity$_controller) + ")"; } }; M.BallisticScrollActivity.prototype = { get$_scroll_activity$_controller: function() { var t1 = this.__BallisticScrollActivity__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, resetActivity$0: function() { this._delegate.goBallistic$1(this.get$_scroll_activity$_controller().get$velocity()); }, applyNewDimensions$0: function() { this._delegate.goBallistic$1(this.get$_scroll_activity$_controller().get$velocity()); }, _scroll_activity$_tick$0: function() { var t1 = this.get$_scroll_activity$_controller().get$_animation_controller$_value(); if (this._delegate.super$ScrollPosition$setPixels(t1) !== 0) { t1 = this._delegate; t1.beginActivity$1(new M.IdleScrollActivity(t1)); } }, _scroll_activity$_end$0: function() { this._delegate.goBallistic$1(0); }, dispatchOverscrollNotification$3: function(metrics, context, overscroll) { new G.OverscrollNotification(null, overscroll, this.get$_scroll_activity$_controller().get$velocity(), metrics, context, 0).dispatch$1(context); }, get$shouldIgnorePointer: function() { return true; }, get$isScrolling: function() { return true; }, get$velocity: function() { return this.get$_scroll_activity$_controller().get$velocity(); }, dispose$0: function(_) { this.get$_scroll_activity$_controller().dispose$0(0); this.super$ScrollActivity$dispose(0); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this.get$_scroll_activity$_controller()) + ")"; } }; M.DrivenScrollActivity.prototype = { get$_completer: function() { var t1 = this.__DrivenScrollActivity__completer; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_completer")) : t1; }, get$_scroll_activity$_controller: function() { var t1 = this.__DrivenScrollActivity__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, _scroll_activity$_tick$0: function() { if (this._delegate.super$ScrollPosition$setPixels(this.get$_scroll_activity$_controller().get$_animation_controller$_value()) !== 0) { var t1 = this._delegate; t1.beginActivity$1(new M.IdleScrollActivity(t1)); } }, _scroll_activity$_end$0: function() { this._delegate.goBallistic$1(this.get$_scroll_activity$_controller().get$velocity()); }, dispatchOverscrollNotification$3: function(metrics, context, overscroll) { new G.OverscrollNotification(null, overscroll, this.get$_scroll_activity$_controller().get$velocity(), metrics, context, 0).dispatch$1(context); }, get$shouldIgnorePointer: function() { return true; }, get$isScrolling: function() { return true; }, get$velocity: function() { return this.get$_scroll_activity$_controller().get$velocity(); }, dispose$0: function(_) { this.get$_completer().complete$0(0); this.get$_scroll_activity$_controller().dispose$0(0); this.super$ScrollActivity$dispose(0); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this.get$_scroll_activity$_controller()) + ")"; } }; Y.ScrollAwareImageProvider.prototype = { resolveStreamForKey$4: function(configuration, stream, key, handleError) { var t1, _this = this; if (stream._image_stream$_completer != null || $.PaintingBinding__instance.PaintingBinding__imageCache.containsKey$1(0, key)) { _this.imageProvider.resolveStreamForKey$4(configuration, stream, key, handleError); return; } t1 = _this.context; if (t1.get$context(t1) == null) return; t1 = t1.get$context(t1); t1.toString; if (F.Scrollable_recommendDeferredLoadingForContext(t1)) { $.SchedulerBinding__instance.scheduleFrameCallback$1(new Y.ScrollAwareImageProvider_resolveStreamForKey_closure(_this, configuration, stream, key, handleError)); return; } _this.imageProvider.resolveStreamForKey$4(configuration, stream, key, handleError); }, load$2: function(_, key, decode) { return this.imageProvider.load$2(0, key, decode); }, obtainKey$1: function(configuration) { return this.imageProvider.obtainKey$1(configuration); } }; Y.ScrollAwareImageProvider_resolveStreamForKey_closure.prototype = { call$1: function(_) { var _this = this; P.scheduleMicrotask(new Y.ScrollAwareImageProvider_resolveStreamForKey__closure(_this.$this, _this.configuration, _this.stream, _this.key, _this.handleError)); }, $signature: 28 }; Y.ScrollAwareImageProvider_resolveStreamForKey__closure.prototype = { call$0: function() { var _this = this; return _this.$this.resolveStreamForKey$4(_this.configuration, _this.stream, _this.key, _this.handleError); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; K.ScrollBehavior.prototype = { copyWith$4$overscroll$physics$platform$scrollbars: function(overscroll, physics, platform, $scrollbars) { return new K._WrappedScrollBehavior(this, $scrollbars, overscroll, physics, platform); }, copyWith$1$scrollbars: function($scrollbars) { return this.copyWith$4$overscroll$physics$platform$scrollbars(true, null, null, $scrollbars); }, copyWith$3$overscroll$physics$platform: function(overscroll, physics, platform) { return this.copyWith$4$overscroll$physics$platform$scrollbars(overscroll, physics, platform, true); }, getPlatform$1: function(context) { return U.defaultTargetPlatform(); }, buildViewportChrome$3: function(context, child, axisDirection) { switch (this.getPlatform$1(context)) { case C.TargetPlatform_2: case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return child; case C.TargetPlatform_0: case C.TargetPlatform_1: return L.GlowingOverscrollIndicator$(axisDirection, child, C.Color_4294967295); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, buildScrollbar$3: function(context, child, details) { var _null = null; switch (this.getPlatform$1(context)) { case C.TargetPlatform_3: case C.TargetPlatform_4: case C.TargetPlatform_5: return E.RawScrollbar$(child, details.controller, C.Duration_300000, _null, _null, _null, G.scroll_notification__defaultScrollNotificationPredicate$closure(), C.Duration_0, _null, _null, C.Duration_600000); case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_2: return child; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, buildOverscrollIndicator$3: function(context, child, details) { return this.buildViewportChrome$3(context, child, details.direction); }, velocityTrackerBuilder$1: function(context) { switch (this.getPlatform$1(context)) { case C.TargetPlatform_2: case C.TargetPlatform_4: return new K.ScrollBehavior_velocityTrackerBuilder_closure(); case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return new K.ScrollBehavior_velocityTrackerBuilder_closure0(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, getScrollPhysics$1: function(context) { switch (this.getPlatform$1(context)) { case C.TargetPlatform_2: case C.TargetPlatform_4: return C.BouncingScrollPhysics_MuS; case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: return C.ClampingScrollPhysics_KYr; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, shouldNotify$1: function(oldDelegate) { return false; }, toString$0: function(_) { return "ScrollBehavior"; } }; K.ScrollBehavior_velocityTrackerBuilder_closure.prototype = { call$1: function($event) { var t1 = $event.get$kind($event), t2 = type$.nullable__PointAtTime; return new R.IOSScrollViewFlingVelocityTracker(P.List_List$filled(20, null, false, t2), t1, P.List_List$filled(20, null, false, t2)); }, $signature: 2049 }; K.ScrollBehavior_velocityTrackerBuilder_closure0.prototype = { call$1: function($event) { return new R.VelocityTracker($event.get$kind($event), P.List_List$filled(20, null, false, type$.nullable__PointAtTime)); }, $signature: 487 }; K._WrappedScrollBehavior.prototype = { buildOverscrollIndicator$3: function(context, child, details) { if (this.overscrollIndicator) return this.delegate.buildOverscrollIndicator$3(context, child, details); return child; }, buildScrollbar$3: function(context, child, details) { if (this.scrollbar) return this.delegate.buildScrollbar$3(context, child, details); return child; }, copyWith$4$overscroll$physics$platform$scrollbars: function(overscroll, physics, platform, $scrollbars) { return new K._WrappedScrollBehavior(this.delegate, $scrollbars, overscroll, physics, platform); }, copyWith$1$scrollbars: function($scrollbars) { return this.copyWith$4$overscroll$physics$platform$scrollbars(true, null, null, $scrollbars); }, copyWith$3$overscroll$physics$platform: function(overscroll, physics, platform) { return this.copyWith$4$overscroll$physics$platform$scrollbars(overscroll, physics, platform, true); }, getScrollPhysics$1: function(context) { var t1 = this.physics; return t1 == null ? this.delegate.getScrollPhysics$1(context) : t1; }, shouldNotify$1: function(oldDelegate) { var _this = this; return H.getRuntimeType(oldDelegate.delegate) !== H.getRuntimeType(_this.delegate) || oldDelegate.scrollbar !== _this.scrollbar || oldDelegate.overscrollIndicator !== _this.overscrollIndicator || oldDelegate.physics != _this.physics || oldDelegate.platform != _this.platform || false; }, velocityTrackerBuilder$1: function(context) { return this.delegate.velocityTrackerBuilder$1(context); }, toString$0: function(_) { return "_WrappedScrollBehavior"; } }; K.ScrollConfiguration.prototype = { updateShouldNotify$1: function(oldWidget) { var t1 = this.behavior, t2 = H.getRuntimeType(t1), t3 = oldWidget.behavior; if (t2 === H.getRuntimeType(t3)) t1 = t1 !== t3 && t1.shouldNotify$1(t3); else t1 = true; return t1; } }; F.ScrollController.prototype = { animateTo$3$curve$duration: function(offset, curve, duration) { return this.animateTo$body$ScrollController(offset, curve, duration); }, animateTo$body$ScrollController: function(offset, curve, duration) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t2, i, t1; var $async$animateTo$3$curve$duration = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = H.setRuntimeTypeInfo([], type$.JSArray_Future_void); for (t2 = $async$self._positions, i = 0; i < t2.length; ++i) t1.push(t2[i].animateTo$3$curve$duration(offset, curve, duration)); $async$goto = 2; return P._asyncAwait(P.Future_wait(t1, type$.void), $async$animateTo$3$curve$duration); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$animateTo$3$curve$duration, $async$completer); }, jumpTo$1: function(value) { var t1, t2, _i; for (t1 = P.List_List$from(this._positions, true, type$.ScrollPosition), t2 = t1.length, _i = 0; _i < t2; ++_i) t1[_i].jumpTo$1(value); }, attach$1: function(position) { var t1; this._positions.push(position); t1 = position.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$notifyListeners()), false); }, detach$1: function(_, position) { position.removeListener$1(0, this.get$notifyListeners()); C.JSArray_methods.remove$1(this._positions, position); }, dispose$0: function(_) { var t1, t2, t3, _i; for (t1 = this._positions, t2 = t1.length, t3 = this.get$notifyListeners(), _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t1[_i].removeListener$1(0, t3); this.super$ChangeNotifier$dispose(0); }, createScrollPosition$3: function(physics, context, oldPosition) { return R.ScrollPositionWithSingleContext$(context, this.debugLabel, this._initialScrollOffset, true, oldPosition, physics); }, toString$0: function(_) { var description = H.setRuntimeTypeInfo([], type$.JSArray_String); this.debugFillDescription$1(description); return "#" + Y.shortHash(this) + "(" + C.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1: function(description) { var t2, t1 = this._initialScrollOffset; if (t1 !== 0) description.push("initialScrollOffset: " + C.JSNumber_methods.toStringAsFixed$1(t1, 1) + ", "); t1 = this._positions; t2 = t1.length; if (t2 === 0) description.push("no clients"); else if (t2 === 1) { t1 = C.JSArray_methods.get$single(t1)._pixels; t1.toString; description.push("one client, offset " + C.JSNumber_methods.toStringAsFixed$1(t1, 1)); } else description.push("" + t2 + " clients"); } }; M.ScrollMetrics.prototype = { copyWith$0: function() { var _this = this, _null = null, t1 = _this.get$hasContentDimensions() ? _this.get$minScrollExtent() : _null, t2 = _this.get$hasContentDimensions() ? _this.get$maxScrollExtent() : _null, t3 = _this.get$hasPixels() ? _this.get$pixels() : _null, t4 = _this.get$hasViewportDimension() ? _this.get$viewportDimension() : _null, t5 = _this.get$axisDirection(); return new M.FixedScrollMetrics(t1, t2, t3, t4, t5); }, get$outOfRange: function() { var _this = this; return _this.get$pixels() < _this.get$minScrollExtent() || _this.get$pixels() > _this.get$maxScrollExtent(); }, get$atEdge: function() { var _this = this; return _this.get$pixels() == _this.get$minScrollExtent() || _this.get$pixels() == _this.get$maxScrollExtent(); }, get$extentInside: function() { var _this = this; return _this.get$viewportDimension() - C.JSNumber_methods.clamp$2(_this.get$minScrollExtent() - _this.get$pixels(), 0, _this.get$viewportDimension()) - C.JSNumber_methods.clamp$2(_this.get$pixels() - _this.get$maxScrollExtent(), 0, _this.get$viewportDimension()); } }; M.FixedScrollMetrics.prototype = { get$minScrollExtent: function() { var t1 = this._scroll_metrics$_minScrollExtent; t1.toString; return t1; }, get$maxScrollExtent: function() { var t1 = this._scroll_metrics$_maxScrollExtent; t1.toString; return t1; }, get$hasContentDimensions: function() { return this._scroll_metrics$_minScrollExtent != null && this._scroll_metrics$_maxScrollExtent != null; }, get$pixels: function() { var t1 = this._scroll_metrics$_pixels; t1.toString; return t1; }, get$hasPixels: function() { return this._scroll_metrics$_pixels != null; }, get$viewportDimension: function() { var t1 = this._scroll_metrics$_viewportDimension; t1.toString; return t1; }, get$hasViewportDimension: function() { return this._scroll_metrics$_viewportDimension != null; }, toString$0: function(_) { var _this = this; return "FixedScrollMetrics(" + C.JSNumber_methods.toStringAsFixed$1(Math.max(_this.get$pixels() - _this.get$minScrollExtent(), 0), 1) + "..[" + C.JSNumber_methods.toStringAsFixed$1(_this.get$extentInside(), 1) + "].." + C.JSNumber_methods.toStringAsFixed$1(Math.max(_this.get$maxScrollExtent() - _this.get$pixels(), 0), 1) + ")"; }, get$axisDirection: function() { return this.axisDirection; } }; M._FixedScrollMetrics_Object_ScrollMetrics.prototype = {}; G.ViewportNotificationMixin.prototype = {}; G.ScrollNotification.prototype = { debugFillDescription$1: function(description) { this.super$_ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin$debugFillDescription(description); description.push(this.metrics.toString$0(0)); } }; G.ScrollStartNotification.prototype = { debugFillDescription$1: function(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); } }; G.ScrollUpdateNotification.prototype = { debugFillDescription$1: function(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); description.push("scrollDelta: " + H.S(this.scrollDelta)); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); }, get$dragDetails: function() { return this.dragDetails; } }; G.OverscrollNotification.prototype = { debugFillDescription$1: function(description) { var t1, _this = this; _this.super$ScrollNotification$debugFillDescription(description); description.push("overscroll: " + C.JSNumber_methods.toStringAsFixed$1(_this.overscroll, 1)); description.push("velocity: " + C.JSNumber_methods.toStringAsFixed$1(_this.velocity, 1)); t1 = _this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); } }; G.ScrollEndNotification.prototype = { debugFillDescription$1: function(description) { var t1; this.super$ScrollNotification$debugFillDescription(description); t1 = this.dragDetails; if (t1 != null) description.push(t1.toString$0(0)); }, get$dragDetails: function() { return this.dragDetails; } }; G.UserScrollNotification.prototype = { debugFillDescription$1: function(description) { this.super$ScrollNotification$debugFillDescription(description); description.push("direction: " + this.direction.toString$0(0)); } }; G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin.prototype = { visitAncestor$1: function(element) { if (element instanceof N.RenderObjectElement && type$.RenderAbstractViewport._is(element.get$renderObject())) ++this.ViewportNotificationMixin__depth; return this.super$Notification$visitAncestor(element); }, debugFillDescription$1: function(description) { var t1; this.super$Notification$debugFillDescription(description); t1 = "depth: " + this.ViewportNotificationMixin__depth + " ("; description.push(t1 + (this.ViewportNotificationMixin__depth === 0 ? "local" : "remote") + ")"); } }; L.ScrollPhysics.prototype = { buildParent$1: function(ancestor) { var t1 = this.parent; t1 = t1 == null ? null : t1.applyTo$1(ancestor); return t1 == null ? ancestor : t1; }, applyTo$1: function(ancestor) { return new L.ScrollPhysics(this.buildParent$1(ancestor)); }, applyPhysicsToUserOffset$2: function(position, offset) { var t1 = this.parent; if (t1 == null) return offset; return t1.applyPhysicsToUserOffset$2(position, offset); }, shouldAcceptUserOffset$1: function(position) { var t2, t1 = this.parent; if (t1 == null) { t1 = position._pixels; t1.toString; if (t1 === 0) { t1 = position._minScrollExtent; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 !== t2; t1 = t2; } else t1 = true; return t1; } return t1.shouldAcceptUserOffset$1(position); }, recommendDeferredLoading$3: function(velocity, metrics, context) { var t1 = this.parent; if (t1 == null) { $.WidgetsBinding__instance.toString; return Math.abs(velocity) > $.$get$window().get$physicalSize().get$longestSide(); } return t1.recommendDeferredLoading$3(velocity, metrics, context); }, applyBoundaryConditions$2: function(position, value) { var t1 = this.parent; if (t1 == null) return 0; return t1.applyBoundaryConditions$2(position, value); }, adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity: function(isScrolling, newPosition, oldPosition, velocity) { var t1 = this.parent; if (t1 == null) { t1 = newPosition._scroll_metrics$_pixels; t1.toString; return t1; } return t1.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(isScrolling, newPosition, oldPosition, velocity); }, createBallisticSimulation$2: function(position, velocity) { var t1 = this.parent; if (t1 == null) return null; return t1.createBallisticSimulation$2(position, velocity); }, get$spring: function() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$spring(); return t1 == null ? $.$get$ScrollPhysics__kDefaultSpring() : t1; }, get$tolerance: function() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$tolerance(); return t1 == null ? $.$get$ScrollPhysics__kDefaultTolerance() : t1; }, get$minFlingDistance: function() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$minFlingDistance(); return t1 == null ? 18 : t1; }, get$minFlingVelocity: function() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$minFlingVelocity(); return t1 == null ? 50 : t1; }, get$maxFlingVelocity: function() { var t1 = this.parent; t1 = t1 == null ? null : t1.get$maxFlingVelocity(); return t1 == null ? 8000 : t1; }, carriedMomentum$1: function(existingVelocity) { var t1 = this.parent; if (t1 == null) return 0; return t1.carriedMomentum$1(existingVelocity); }, get$dragStartDistanceMotionThreshold: function() { var t1 = this.parent; return t1 == null ? null : t1.get$dragStartDistanceMotionThreshold(); }, get$allowImplicitScrolling: function() { return true; }, toString$0: function(_) { var t1 = this.parent; if (t1 == null) return "ScrollPhsyics"; return "ScrollPhysics -> " + t1.toString$0(0); } }; L.RangeMaintainingScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new L.RangeMaintainingScrollPhysics(this.buildParent$1(ancestor)); }, adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity: function(isScrolling, newPosition, oldPosition, velocity) { var maintainOverscroll, enforceBoundary, t1, t2, t3, t4, t5, result; if (velocity !== 0) { maintainOverscroll = false; enforceBoundary = false; } else { maintainOverscroll = true; enforceBoundary = true; } t1 = oldPosition._scroll_metrics$_minScrollExtent; t1.toString; t2 = newPosition._scroll_metrics$_minScrollExtent; t2.toString; if (t1 === t2) { t3 = oldPosition._scroll_metrics$_maxScrollExtent; t3.toString; t4 = newPosition._scroll_metrics$_maxScrollExtent; t4.toString; t4 = t3 === t4; t3 = t4; } else t3 = false; if (t3) maintainOverscroll = false; t3 = oldPosition._scroll_metrics$_pixels; t3.toString; t4 = newPosition._scroll_metrics$_pixels; t4.toString; if (t3 !== t4) { if (isFinite(t1)) { t4 = oldPosition._scroll_metrics$_maxScrollExtent; t4.toString; if (isFinite(t4)) if (isFinite(t2)) { t4 = newPosition._scroll_metrics$_maxScrollExtent; t4.toString; t4 = isFinite(t4); } else t4 = false; else t4 = false; } else t4 = false; if (t4) enforceBoundary = false; maintainOverscroll = false; } t4 = t3 < t1; if (!t4) { t5 = oldPosition._scroll_metrics$_maxScrollExtent; t5.toString; t5 = t3 > t5; } else t5 = true; if (t5) enforceBoundary = false; if (maintainOverscroll) { if (t4) return t2 - (t1 - t3); t1 = oldPosition._scroll_metrics$_maxScrollExtent; t1.toString; if (t3 > t1) { t2 = newPosition._scroll_metrics$_maxScrollExtent; t2.toString; return t2 + (t3 - t1); } } result = this.super$ScrollPhysics$adjustPositionForNewDimensions(isScrolling, newPosition, oldPosition, velocity); if (enforceBoundary) { t1 = newPosition._scroll_metrics$_maxScrollExtent; t1.toString; result = J.clamp$2$n(result, t2, t1); } return result; } }; L.BouncingScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new L.BouncingScrollPhysics(this.buildParent$1(ancestor)); }, applyPhysicsToUserOffset$2: function(position, offset) { var t1, t2, overscrollPastStart, overscrollPastEnd, overscrollPast, easing, friction; if (!position.get$outOfRange()) return offset; t1 = position._minScrollExtent; t1.toString; t2 = position._pixels; t2.toString; overscrollPastStart = Math.max(t1 - t2, 0); t1 = position._maxScrollExtent; t1.toString; overscrollPastEnd = Math.max(t2 - t1, 0); overscrollPast = Math.max(overscrollPastStart, overscrollPastEnd); if (!(overscrollPastStart > 0 && offset < 0)) easing = overscrollPastEnd > 0 && offset > 0; else easing = true; t1 = position._viewportDimension; if (easing) { t1.toString; friction = 0.52 * Math.pow(1 - (overscrollPast - Math.abs(offset)) / t1, 2); } else { t1.toString; friction = 0.52 * Math.pow(1 - overscrollPast / t1, 2); } return J.get$sign$in(offset) * L.BouncingScrollPhysics__applyFriction(overscrollPast, Math.abs(offset), friction); }, applyBoundaryConditions$2: function(position, value) { return 0; }, createBallisticSimulation$2: function(position, velocity) { var t1, t2, t3, t4, t5, finalX, t6, tolerance = this.get$tolerance(); if (Math.abs(velocity) >= tolerance.velocity || position.get$outOfRange()) { t1 = this.get$spring(); t2 = position._pixels; t2.toString; t3 = position._minScrollExtent; t3.toString; t4 = position._maxScrollExtent; t4.toString; t5 = new Y.BouncingScrollSimulation(t3, t4, t1, tolerance); if (t2 < t3) { t5.__BouncingScrollSimulation__springSimulation = new M.ScrollSpringSimulation(t3, M._SpringSolution__SpringSolution(t1, t2 - t3, velocity), C.Tolerance_Gdw); t5.__BouncingScrollSimulation__springTime = -1 / 0; } else if (t2 > t4) { t5.__BouncingScrollSimulation__springSimulation = new M.ScrollSpringSimulation(t4, M._SpringSolution__SpringSolution(t1, t2 - t4, velocity), C.Tolerance_Gdw); t5.__BouncingScrollSimulation__springTime = -1 / 0; } else { t5.__BouncingScrollSimulation__frictionSimulation = new D.FrictionSimulation(0.135, Math.log(0.135), t2, velocity, C.Tolerance_Gdw); finalX = t5.get$_frictionSimulation().get$finalX(); if (velocity > 0 && finalX > t4) { t5.__BouncingScrollSimulation__springTime = t5.get$_frictionSimulation().timeAtX$1(t4); t2 = t5.get$_frictionSimulation(); t3 = t5.get$_springTime(); t6 = t2._v; t2 = t2._drag; H.checkNum(t3); t5.__BouncingScrollSimulation__springSimulation = new M.ScrollSpringSimulation(t4, M._SpringSolution__SpringSolution(t1, t4 - t4, Math.min(t6 * Math.pow(t2, t3), 5000)), C.Tolerance_Gdw); } else if (velocity < 0 && finalX < t3) { t5.__BouncingScrollSimulation__springTime = t5.get$_frictionSimulation().timeAtX$1(t3); t2 = t5.get$_frictionSimulation(); t4 = t5.get$_springTime(); t6 = t2._v; t2 = t2._drag; H.checkNum(t4); t5.__BouncingScrollSimulation__springSimulation = new M.ScrollSpringSimulation(t3, M._SpringSolution__SpringSolution(t1, t3 - t3, Math.min(t6 * Math.pow(t2, t4), 5000)), C.Tolerance_Gdw); } else t5.__BouncingScrollSimulation__springTime = 1 / 0; } return t5; } return null; }, get$minFlingVelocity: function() { return 100; }, carriedMomentum$1: function(existingVelocity) { return J.get$sign$in(existingVelocity) * Math.min(0.000816 * Math.pow(Math.abs(existingVelocity), 1.967), 40000); }, get$dragStartDistanceMotionThreshold: function() { return 3.5; } }; L.ClampingScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new L.ClampingScrollPhysics(this.buildParent$1(ancestor)); }, applyBoundaryConditions$2: function(position, value) { var t2, t3, t1 = position._pixels; t1.toString; if (value < t1) { t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; } else t2 = false; if (t2) return value - t1; t2 = position._maxScrollExtent; t2.toString; if (t2 <= t1 && t1 < value) return value - t1; t3 = position._minScrollExtent; t3.toString; if (value < t3 && t3 < t1) return value - t3; if (t1 < t2 && t2 < value) return value - t2; return 0; }, createBallisticSimulation$2: function(position, velocity) { var t1, t2, end, _null = null, tolerance = this.get$tolerance(); if (position.get$outOfRange()) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; if (t1 > t2) end = t2; else end = _null; t2 = position._minScrollExtent; t2.toString; if (t1 < t2) end = t2; t1 = this.get$spring(); t2 = position._pixels; t2.toString; end.toString; return new M.ScrollSpringSimulation(end, M._SpringSolution__SpringSolution(t1, t2 - end, Math.min(0, velocity)), tolerance); } if (Math.abs(velocity) < tolerance.velocity) return _null; if (velocity > 0) { t1 = position._pixels; t1.toString; t2 = position._maxScrollExtent; t2.toString; t2 = t1 >= t2; t1 = t2; } else t1 = false; if (t1) return _null; if (velocity < 0) { t1 = position._pixels; t1.toString; t2 = position._minScrollExtent; t2.toString; t2 = t1 <= t2; t1 = t2; } else t1 = false; if (t1) return _null; t1 = position._pixels; t1.toString; return Y.ClampingScrollSimulation$(t1, tolerance, velocity); } }; L.AlwaysScrollableScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new L.AlwaysScrollableScrollPhysics(this.buildParent$1(ancestor)); }, shouldAcceptUserOffset$1: function(position) { return true; } }; L.NeverScrollableScrollPhysics.prototype = { applyTo$1: function(ancestor) { return new L.NeverScrollableScrollPhysics(this.buildParent$1(ancestor)); }, shouldAcceptUserOffset$1: function(position) { return false; }, get$allowImplicitScrolling: function() { return false; } }; A.ScrollPositionAlignmentPolicy.prototype = { toString$0: function(_) { return this._scroll_position$_name; } }; A.ScrollPosition.prototype = { ScrollPosition$5$context$debugLabel$keepScrollOffset$oldPosition$physics: function(context, debugLabel, keepScrollOffset, oldPosition, physics) { if (oldPosition != null) this.absorb$1(oldPosition); this.restoreScrollOffset$0(); }, get$minScrollExtent: function() { var t1 = this._minScrollExtent; t1.toString; return t1; }, get$maxScrollExtent: function() { var t1 = this._maxScrollExtent; t1.toString; return t1; }, get$hasContentDimensions: function() { return this._minScrollExtent != null && this._maxScrollExtent != null; }, get$pixels: function() { var t1 = this._pixels; t1.toString; return t1; }, get$hasPixels: function() { return this._pixels != null; }, get$viewportDimension: function() { var t1 = this._viewportDimension; t1.toString; return t1; }, get$hasViewportDimension: function() { return this._viewportDimension != null; }, absorb$1: function(other) { var _this = this, t1 = other._minScrollExtent; if (t1 != null && other._maxScrollExtent != null) { t1.toString; _this._minScrollExtent = t1; t1 = other._maxScrollExtent; t1.toString; _this._maxScrollExtent = t1; } t1 = other._pixels; if (t1 != null) _this._pixels = t1; t1 = other._viewportDimension; if (t1 != null) _this._viewportDimension = t1; _this._activity = other._activity; other._activity = null; if (H.getRuntimeType(other) !== H.getRuntimeType(_this)) _this._activity.resetActivity$0(); _this.context.setIgnorePointer$1(_this._activity.get$shouldIgnorePointer()); _this.isScrollingNotifier.set$value(0, _this._activity.get$isScrolling()); }, setPixels$1: function(newPixels) { var result, t2, t3, _this = this, t1 = _this._pixels; t1.toString; if (newPixels !== t1) { result = _this.physics.applyBoundaryConditions$2(_this, newPixels); t1 = _this._pixels; t1.toString; t2 = newPixels - result; _this._pixels = t2; if (t2 !== t1) { _this._updateSemanticActions$0(); _this.super$ChangeNotifier$notifyListeners(); t2 = _this._pixels; t2.toString; _this.didUpdateScrollPositionBy$1(t2 - t1); } if (result !== 0) { t1 = _this._activity; t1.toString; t2 = _this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t3.toString; t1.dispatchOverscrollNotification$3(t2, t3, result); return result; } } return 0; }, correctBy$1: function(correction) { var t1 = this._pixels; t1.toString; this._pixels = t1 + correction; this._didChangeViewportDimensionOrReceiveCorrection = true; }, forcePixels$1: function(value) { var _this = this, t1 = _this._pixels; t1.toString; _this._impliedVelocity = value - t1; _this._pixels = value; _this._updateSemanticActions$0(); _this.super$ChangeNotifier$notifyListeners(); $.SchedulerBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.ScrollPosition_forcePixels_closure(_this)); }, saveScrollOffset$0: function() { var t3, t1 = this.context, t2 = t1._framework$_element; t2.toString; t2 = S.PageStorage_of(t2); if (t2 != null) { t1 = t1._framework$_element; t1.toString; t3 = this._pixels; t3.toString; t2.writeState$2(t1, t3); } }, restoreScrollOffset$0: function() { var t1, t2, value; if (this._pixels == null) { t1 = this.context; t2 = t1._framework$_element; t2.toString; t2 = S.PageStorage_of(t2); if (t2 == null) value = null; else { t1 = t1._framework$_element; t1.toString; value = t2.readState$1(t1); } if (value != null) this._pixels = value; } }, restoreOffset$2$initialRestore: function(offset, initialRestore) { if (initialRestore) this._pixels = offset; else this.jumpTo$1(offset); }, saveOffset$0: function() { var t1 = this._pixels; t1.toString; this.context._persistedScrollOffset.set$value(0, t1); $.ServicesBinding__instance.get$_restorationManager().flushData$0(); }, applyViewportDimension$1: function(viewportDimension) { if (this._viewportDimension != viewportDimension) { this._viewportDimension = viewportDimension; this._didChangeViewportDimensionOrReceiveCorrection = true; } return true; }, applyContentDimensions$2: function(minScrollExtent, maxScrollExtent) { var currentMetrics, t1, _this = this; if (!B.nearEqual(_this._minScrollExtent, minScrollExtent, 0.001) || !B.nearEqual(_this._maxScrollExtent, maxScrollExtent, 0.001) || _this._didChangeViewportDimensionOrReceiveCorrection) { _this._minScrollExtent = minScrollExtent; _this._maxScrollExtent = maxScrollExtent; currentMetrics = _this._haveDimensions ? _this.copyWith$0() : null; _this._didChangeViewportDimensionOrReceiveCorrection = false; _this._pendingDimensions = true; if (_this._haveDimensions) { t1 = _this._scroll_position$_lastMetrics; t1.toString; currentMetrics.toString; t1 = !_this.correctForNewDimensions$2(t1, currentMetrics); } else t1 = false; if (t1) return false; _this._haveDimensions = true; } if (_this._pendingDimensions) { _this.super$ScrollPosition$applyNewDimensions(); _this.context.setCanDrag$1(_this.physics.shouldAcceptUserOffset$1(_this)); _this._pendingDimensions = false; } _this._scroll_position$_lastMetrics = _this.copyWith$0(); return true; }, correctForNewDimensions$2: function(oldPosition, newPosition) { var _this = this, newPixels = _this.physics.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity(_this._activity.get$isScrolling(), newPosition, oldPosition, _this._activity.get$velocity()), t1 = _this._pixels; t1.toString; if (newPixels !== t1) { _this._pixels = newPixels; return false; } return true; }, applyNewDimensions$0: function() { this._activity.applyNewDimensions$0(); this._updateSemanticActions$0(); }, _updateSemanticActions$0: function() { var $forward, backward, actions, t2, t3, _this = this, t1 = _this.context; switch (t1._widget.axisDirection) { case C.AxisDirection_0: $forward = C.SemanticsAction_32; backward = C.SemanticsAction_16; break; case C.AxisDirection_1: $forward = C.SemanticsAction_4; backward = C.SemanticsAction_8; break; case C.AxisDirection_2: $forward = C.SemanticsAction_16; backward = C.SemanticsAction_32; break; case C.AxisDirection_3: $forward = C.SemanticsAction_8; backward = C.SemanticsAction_4; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } actions = P.LinkedHashSet_LinkedHashSet$_empty(type$.SemanticsAction); t2 = _this._pixels; t2.toString; t3 = _this._minScrollExtent; t3.toString; if (t2 > t3) actions.add$1(0, backward); t2 = _this._pixels; t2.toString; t3 = _this._maxScrollExtent; t3.toString; if (t2 < t3) actions.add$1(0, $forward); if (S.setEquals(actions, _this._semanticActions)) return; _this._semanticActions = actions; t1 = t1._gestureDetectorKey; if (t1.get$currentState() != null) t1.get$currentState().replaceSemanticsActions$1(actions); }, ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject: function(object, alignment, alignmentPolicy, curve, duration, targetRenderObject) { var targetRect, t2, t3, target, _this = this, t1 = Q.RenderAbstractViewport_of(object); t1.toString; targetRect = targetRenderObject != null && targetRenderObject !== object ? T.MatrixUtils_transformRect(targetRenderObject.getTransformTo$1(0, object), object.get$paintBounds().intersect$1(targetRenderObject.get$paintBounds())) : null; switch (alignmentPolicy) { case C.ScrollPositionAlignmentPolicy_0: t1 = t1.getOffsetToReveal$3$rect(object, alignment, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); break; case C.ScrollPositionAlignmentPolicy_1: t1 = t1.getOffsetToReveal$3$rect(object, 1, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); t1 = _this._pixels; t1.toString; if (target < t1) target = t1; break; case C.ScrollPositionAlignmentPolicy_2: t1 = t1.getOffsetToReveal$3$rect(object, 0, targetRect); t2 = _this._minScrollExtent; t2.toString; t3 = _this._maxScrollExtent; t3.toString; target = J.clamp$2$n(t1.offset, t2, t3); t1 = _this._pixels; t1.toString; if (target > t1) target = t1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this._pixels; t1.toString; if (target === t1) return P.Future_Future$value(null, type$.void); if (duration._duration === 0) { _this.jumpTo$1(target); return P.Future_Future$value(null, type$.void); } return _this.animateTo$3$curve$duration(target, curve, duration); }, moveTo$3$curve$duration: function(_, to, curve, duration) { var t2, t1 = this._minScrollExtent; t1.toString; t2 = this._maxScrollExtent; t2.toString; to = J.clamp$2$n(to, t1, t2); return this.super$ViewportOffset$moveTo(0, to, curve, duration); }, beginActivity$1: function(newActivity) { var oldIgnorePointer, wasScrolling, _this = this, t1 = _this._activity; if (t1 != null) { oldIgnorePointer = t1.get$shouldIgnorePointer(); wasScrolling = _this._activity.get$isScrolling(); if (wasScrolling && !newActivity.get$isScrolling()) _this.didEndScroll$0(); _this._activity.dispose$0(0); } else { wasScrolling = false; oldIgnorePointer = false; } _this._activity = newActivity; if (oldIgnorePointer !== newActivity.get$shouldIgnorePointer()) _this.context.setIgnorePointer$1(_this._activity.get$shouldIgnorePointer()); _this.isScrollingNotifier.set$value(0, _this._activity.get$isScrolling()); if (!wasScrolling && _this._activity.get$isScrolling()) _this.didStartScroll$0(); }, didStartScroll$0: function() { var t1 = this._activity; t1.toString; t1.dispatchScrollStartNotification$2(this.copyWith$0(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.context._gestureDetectorKey)); }, didUpdateScrollPositionBy$1: function(delta) { var t2, t3, t1 = this._activity; t1.toString; t2 = this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, this.context._gestureDetectorKey); t3.toString; t1.dispatchScrollUpdateNotification$3(t2, t3, delta); }, didEndScroll$0: function() { var t2, t3, _this = this, t1 = _this._activity; t1.toString; t2 = _this.copyWith$0(); t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, _this.context._gestureDetectorKey); t3.toString; t1.dispatchScrollEndNotification$2(t2, t3); _this.saveOffset$0(); _this.saveScrollOffset$0(); }, dispose$0: function(_) { var t1 = this._activity; if (t1 != null) t1.dispose$0(0); this._activity = null; this.super$ChangeNotifier$dispose(0); }, debugFillDescription$1: function(description) { var t1, t2, _this = this; _this.super$ViewportOffset$debugFillDescription(description); t1 = _this._minScrollExtent; t1 = "range: " + H.S(t1 == null ? null : C.JSNumber_methods.toStringAsFixed$1(t1, 1)) + ".."; t2 = _this._maxScrollExtent; description.push(t1 + H.S(t2 == null ? null : C.JSNumber_methods.toStringAsFixed$1(t2, 1))); t1 = _this._viewportDimension; description.push("viewport: " + H.S(t1 == null ? null : C.JSNumber_methods.toStringAsFixed$1(t1, 1))); } }; A.ScrollPosition_forcePixels_closure.prototype = { call$1: function(timeStamp) { this.$this._impliedVelocity = 0; }, $signature: 28 }; A._ScrollPosition_ViewportOffset_ScrollMetrics.prototype = {}; R.ScrollPositionWithSingleContext.prototype = { ScrollPositionWithSingleContext$6$context$debugLabel$initialPixels$keepScrollOffset$oldPosition$physics: function(context, debugLabel, initialPixels, keepScrollOffset, oldPosition, physics) { var _this = this; if (_this._pixels == null && initialPixels != null) _this._pixels = initialPixels; if (_this._activity == null) _this.beginActivity$1(new M.IdleScrollActivity(_this)); }, get$axisDirection: function() { return this.context._widget.axisDirection; }, absorb$1: function(other) { var t1, _this = this; _this.super$ScrollPosition$absorb(other); _this._activity._delegate = _this; _this._userScrollDirection = other._userScrollDirection; t1 = other._currentDrag; if (t1 != null) { _this._currentDrag = t1; t1._delegate = _this; other._currentDrag = null; } }, beginActivity$1: function(newActivity) { var t1, _this = this; _this._heldPreviousVelocity = 0; _this.super$ScrollPosition$beginActivity(newActivity); t1 = _this._currentDrag; if (t1 != null) t1.dispose$0(0); _this._currentDrag = null; if (!_this._activity.get$isScrolling()) _this.updateUserScrollDirection$1(C.ScrollDirection_0); }, applyUserOffset$1: function(delta) { var t1, _this = this; _this.updateUserScrollDirection$1(delta > 0 ? C.ScrollDirection_1 : C.ScrollDirection_2); t1 = _this._pixels; t1.toString; _this.super$ScrollPosition$setPixels(t1 - _this.physics.applyPhysicsToUserOffset$2(_this, delta)); }, goBallistic$1: function(velocity) { var t1, t2, t3, _this = this, simulation = _this.physics.createBallisticSimulation$2(_this, velocity); if (simulation != null) { t1 = new M.BallisticScrollActivity(_this); t2 = G.AnimationController$unbounded(null, 0, _this.context); t2.didRegisterListener$0(); t3 = t2.AnimationLocalListenersMixin__listeners; t3._isDirty = true; t3._observer_list$_list.push(t1.get$_scroll_activity$_tick()); t2.animateWith$1(simulation)._primaryCompleter.future.whenComplete$1(t1.get$_scroll_activity$_end()); t1.__BallisticScrollActivity__controller = t2; _this.beginActivity$1(t1); } else _this.beginActivity$1(new M.IdleScrollActivity(_this)); }, updateUserScrollDirection$1: function(value) { var t1, t2, t3, _this = this; if (_this._userScrollDirection === value) return; _this._userScrollDirection = value; t1 = _this.copyWith$0(); t2 = _this.context._gestureDetectorKey; t3 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2); t3.toString; new G.UserScrollNotification(value, t1, t3, 0).dispatch$1($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2)); }, animateTo$3$curve$duration: function(to, curve, duration) { var activity, t2, _this = this, t1 = _this._pixels; t1.toString; if (B.nearEqual(to, t1, _this.physics.get$tolerance().distance)) { _this.jumpTo$1(to); return P.Future_Future$value(null, type$.void); } t1 = _this._pixels; t1.toString; activity = new M.DrivenScrollActivity(_this); activity.__DrivenScrollActivity__completer = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_void), type$._AsyncCompleter_void); t1 = G.AnimationController$unbounded("DrivenScrollActivity", t1, _this.context); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(activity.get$_scroll_activity$_tick()); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(to, curve, duration)._primaryCompleter.future.whenComplete$1(activity.get$_scroll_activity$_end()); if (activity.__DrivenScrollActivity__controller === $) activity.__DrivenScrollActivity__controller = t1; else H.throwExpression(H.LateError$fieldAI("_controller")); _this.beginActivity$1(activity); return activity.get$_completer().get$future(); }, jumpTo$1: function(value) { var t1, t2, _this = this; _this.beginActivity$1(new M.IdleScrollActivity(_this)); t1 = _this._pixels; t1.toString; if (t1 !== value) { _this.forcePixels$1(value); _this.didStartScroll$0(); t2 = _this._pixels; t2.toString; _this.didUpdateScrollPositionBy$1(t2 - t1); _this.didEndScroll$0(); } _this.goBallistic$1(0); }, drag$2: function(details, dragCancelCallback) { var t3, drag, _this = this, t1 = _this.physics, t2 = t1.carriedMomentum$1(_this._heldPreviousVelocity); t1 = t1.get$dragStartDistanceMotionThreshold(); t3 = t1 == null ? null : 0; drag = new M.ScrollDragController(_this, dragCancelCallback, t2, t1, details.sourceTimeStamp, t2 !== 0, t3, details); _this.beginActivity$1(new M.DragScrollActivity(drag, _this)); return _this._currentDrag = drag; }, dispose$0: function(_) { var t1 = this._currentDrag; if (t1 != null) t1.dispose$0(0); this._currentDrag = null; this.super$ScrollPosition$dispose(0); } }; Y.BouncingScrollSimulation.prototype = { get$_frictionSimulation: function() { var t1 = this.__BouncingScrollSimulation__frictionSimulation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_frictionSimulation")) : t1; }, get$_springTime: function() { var t1 = this.__BouncingScrollSimulation__springTime; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_springTime")) : t1; }, _scroll_simulation$_simulation$1: function(time) { var t1, simulation, _this = this; if (time > _this.get$_springTime()) { t1 = _this.get$_springTime(); t1.toString; _this._timeOffset = isFinite(t1) ? _this.get$_springTime() : 0; simulation = _this.__BouncingScrollSimulation__springSimulation; if (simulation === $) simulation = H.throwExpression(H.LateError$fieldNI("_springSimulation")); } else { _this._timeOffset = 0; simulation = _this.get$_frictionSimulation(); } simulation.tolerance = _this.tolerance; return simulation; }, x$1: function(_, time) { return this._scroll_simulation$_simulation$1(time).x$1(0, time - this._timeOffset); }, dx$1: function(_, time) { return this._scroll_simulation$_simulation$1(time).dx$1(0, time - this._timeOffset); }, isDone$1: function(time) { return this._scroll_simulation$_simulation$1(time).isDone$1(time - this._timeOffset); }, toString$0: function(_) { return "BouncingScrollSimulation(leadingExtent: " + H.S(this.leadingExtent) + ", trailingExtent: " + H.S(this.trailingExtent) + ")"; } }; Y.ClampingScrollSimulation.prototype = { get$_scroll_simulation$_duration: function() { var t1 = this.__ClampingScrollSimulation__duration; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_duration")) : t1; }, get$_distance: function() { var t1 = this.__ClampingScrollSimulation__distance; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_distance")) : t1; }, _splineDeceleration$1: function(velocity) { return Math.log(0.35 * Math.abs(velocity) / 778.3530259679998); }, x$1: function(_, time) { var t1, _this = this; if (time === 0) return _this.position; t1 = Y._NBSample$(time, _this.get$_scroll_simulation$_duration()).___NBSample__distanceCoef; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_distanceCoef")); return _this.position + t1 * _this.get$_distance() * J.get$sign$in(_this.velocity); }, dx$1: function(_, time) { var _this = this; if (time === 0) return _this.velocity; return Y._NBSample$(time, _this.get$_scroll_simulation$_duration()).get$_velocityCoef() * _this.get$_distance() / _this.get$_scroll_simulation$_duration() * J.get$sign$in(_this.velocity) * 1000; }, isDone$1: function(time) { return time * 1000 >= this.get$_scroll_simulation$_duration(); } }; Y._NBSample.prototype = { get$_velocityCoef: function() { var t1 = this.___NBSample__velocityCoef; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_velocityCoef")) : t1; } }; B.ScrollViewKeyboardDismissBehavior.prototype = { toString$0: function(_) { return this._scroll_view$_name; } }; B.ScrollView.prototype = { buildViewport$4: function(context, offset, axisDirection, slivers) { var _this = this; if (_this.shrinkWrap) return new Q.ShrinkWrappingViewport(axisDirection, offset, _this.clipBehavior, slivers, null); return Q.Viewport$(_this.anchor, axisDirection, _this.cacheExtent, C.CacheExtentStyle_0, _this.center, _this.clipBehavior, offset, slivers); }, build$1: function(_, context) { var _this = this, slivers = _this.buildSlivers$1(context), axisDirection = T.getAxisDirectionFromAxisReverseAndDirectionality(context, _this.scrollDirection, _this.reverse), t1 = _this.primary, scrollController = t1 ? E.PrimaryScrollController_of(context) : _this.controller, scrollable = F.Scrollable$(axisDirection, scrollController, _this.dragStartBehavior, false, _this.physics, _this.restorationId, _this.scrollBehavior, _this.semanticChildCount, new B.ScrollView_build_closure(_this, axisDirection, slivers)), scrollableResult = t1 && scrollController != null ? E.PrimaryScrollController$none(scrollable) : scrollable; if (_this.keyboardDismissBehavior === C.ScrollViewKeyboardDismissBehavior_1) return new U.NotificationListener(scrollableResult, new B.ScrollView_build_closure0(context), null, type$.NotificationListener_ScrollUpdateNotification); else return scrollableResult; } }; B.ScrollView_build_closure.prototype = { call$2: function(context, offset) { return this.$this.buildViewport$4(context, offset, this.axisDirection, this.slivers); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2047 }; B.ScrollView_build_closure0.prototype = { call$1: function(notification) { var focusScope = L.FocusScope_of(this.context); if (notification.dragDetails != null && focusScope.get$hasFocus()) focusScope.unfocus$0(); return false; }, $signature: 2046 }; B.CustomScrollView.prototype = { buildSlivers$1: function(context) { return this.slivers; } }; B.BoxScrollView.prototype = { buildSlivers$1: function(context) { var mediaQuery, t1, mediaQueryHorizontalPadding, mediaQueryVerticalPadding, sliver = this.buildChildLayout$1(context), effectivePadding = this.padding; if (effectivePadding == null) { mediaQuery = F.MediaQuery_maybeOf(context); if (mediaQuery != null) { t1 = mediaQuery.padding; mediaQueryHorizontalPadding = t1.copyWith$2$bottom$top(0, 0); mediaQueryVerticalPadding = t1.copyWith$2$left$right(0, 0); t1 = this.scrollDirection === C.Axis_1; effectivePadding = t1 ? mediaQueryVerticalPadding : mediaQueryHorizontalPadding; sliver = new F.MediaQuery(mediaQuery.copyWith$1$padding(t1 ? mediaQueryHorizontalPadding : mediaQueryVerticalPadding), sliver, null); } } return H.setRuntimeTypeInfo([effectivePadding != null ? new T.SliverPadding(effectivePadding, sliver, null) : sliver], type$.JSArray_Widget); } }; B.ListView.prototype = { buildChildLayout$1: function(context) { return G.SliverList$(this.childrenDelegate); } }; B.ListView$separated_closure.prototype = { call$2: function(context, index) { var itemIndex = C.JSInt_methods._tdivFast$1(index, 2); return (index & 1) === 0 ? this.itemBuilder.call$2(context, itemIndex) : this.separatorBuilder.call$2(context, itemIndex); }, "call*": "call$2", $requiredArgCount: 2, $signature: 128 }; B.ListView$separated_closure0.prototype = { call$2: function(_, index) { return (index & 1) === 0 ? C.JSInt_methods._tdivFast$1(index, 2) : null; }, $signature: 2040 }; B.GridView.prototype = { buildChildLayout$1: function(context) { return new G.SliverGrid(this.gridDelegate, this.childrenDelegate, null); } }; F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure.prototype = { call$2: function(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, $signature: 208 }; F.Scrollable.prototype = { createState$0: function() { var _null = null, t1 = type$.LabeledGlobalKey_State_StatefulWidget; return new F.ScrollableState(new F._RestorableScrollOffset(new P.LinkedList(type$.LinkedList__ListenerEntry)), new N.LabeledGlobalKey(_null, t1), new N.LabeledGlobalKey(_null, type$.LabeledGlobalKey_RawGestureDetectorState), new N.LabeledGlobalKey(_null, t1), C.Map_empty5, _null, P.LinkedHashMap_LinkedHashMap$_empty(type$.RestorableProperty_nullable_Object, type$.void_Function), _null, true, _null, _null, C._StateLifecycle_0); }, viewportBuilder$2: function(arg0, arg1) { return this.viewportBuilder.call$2(arg0, arg1); } }; F._ScrollableScope.prototype = { updateShouldNotify$1: function(old) { return this.position != old.position; } }; F.ScrollableState.prototype = { get$_scrollable$_configuration: function() { var t1 = this.__ScrollableState__configuration; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_configuration")) : t1; }, get$_effectiveScrollController: function() { var t1 = this._widget.controller; if (t1 == null) { t1 = this._fallbackScrollController; t1.toString; } return t1; }, _updatePosition$0: function() { var t2, t3, oldPosition, _this = this, t1 = _this._widget.scrollBehavior; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = K.ScrollConfiguration_of(t1); } _this.__ScrollableState__configuration = t1; t1 = _this.get$_scrollable$_configuration(); t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); _this._physics = t2; t1 = _this._widget; t3 = t1.physics; if (t3 != null) _this._physics = t3.applyTo$1(t2); else { t1 = t1.scrollBehavior; if (t1 != null) { t2 = _this._framework$_element; t2.toString; _this._physics = t1.getScrollPhysics$1(t2).applyTo$1(_this._physics); } } oldPosition = _this._scrollable$_position; if (oldPosition != null) { _this.get$_effectiveScrollController().detach$1(0, oldPosition); P.scheduleMicrotask(oldPosition.get$dispose(oldPosition)); } t1 = _this.get$_effectiveScrollController(); t2 = _this._physics; t2.toString; _this._scrollable$_position = t1.createScrollPosition$3(t2, _this, oldPosition); t2 = _this.get$_effectiveScrollController(); t1 = _this._scrollable$_position; t1.toString; t2.attach$1(t1); }, restoreState$2: function(oldBucket, initialRestore) { var t1 = this._persistedScrollOffset; this.registerForRestoration$2(t1, "offset"); t1 = t1._restoration_properties$_value; if (t1 != null) this._scrollable$_position.restoreOffset$2$initialRestore(t1, initialRestore); }, initState$0: function() { if (this._widget.controller == null) this._fallbackScrollController = F.ScrollController$(null, 0); this.super$State$initState(); }, didChangeDependencies$0: function() { this._updatePosition$0(); this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies(); }, _shouldUpdatePosition$1: function(oldWidget) { var t2, oldPhysics, t3, _this = this, _null = null, t1 = _this._widget, newPhysics = t1.physics; if (newPhysics == null) { t1 = t1.scrollBehavior; if (t1 == null) newPhysics = _null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); newPhysics = t2; } } oldPhysics = oldWidget.physics; if (oldPhysics == null) { t1 = oldWidget.scrollBehavior; if (t1 == null) oldPhysics = _null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.getScrollPhysics$1(t2); oldPhysics = t2; } } do { t1 = newPhysics == null; t2 = t1 ? _null : H.getRuntimeType(newPhysics); t3 = oldPhysics == null; if (t2 != (t3 ? _null : H.getRuntimeType(oldPhysics))) return true; newPhysics = t1 ? _null : newPhysics.parent; oldPhysics = t3 ? _null : oldPhysics.parent; } while (newPhysics != null || oldPhysics != null); t1 = _this._widget.controller; t1 = t1 == null ? _null : H.getRuntimeType(t1); t2 = oldWidget.controller; return t1 != (t2 == null ? _null : H.getRuntimeType(t2)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget(oldWidget); t1 = _this._widget.controller; t2 = oldWidget.controller; if (t1 != t2) { if (t2 == null) { t1 = _this._fallbackScrollController; t1.toString; t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); _this._fallbackScrollController.dispose$0(0); _this._fallbackScrollController = null; } else { t1 = _this._scrollable$_position; t1.toString; t2.detach$1(0, t1); if (_this._widget.controller == null) _this._fallbackScrollController = F.ScrollController$(null, 0); } t1 = _this.get$_effectiveScrollController(); t2 = _this._scrollable$_position; t2.toString; t1.attach$1(t2); } if (_this._shouldUpdatePosition$1(oldWidget)) _this._updatePosition$0(); }, dispose$0: function(_) { var t2, _this = this, t1 = _this._widget.controller; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); } else { t1 = _this._fallbackScrollController; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t1.detach$1(0, t2); } t1 = _this._fallbackScrollController; if (t1 != null) t1.dispose$0(0); } _this._scrollable$_position.dispose$0(0); _this._persistedScrollOffset.dispose$0(0); _this.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$dispose(0); }, setCanDrag$1: function(canDrag) { var t1, t2, _this = this; if (canDrag === _this._lastCanDrag) t1 = !canDrag || G.axisDirectionToAxis(_this._widget.axisDirection) === _this._scrollable$_lastAxisDirection; else t1 = false; if (t1) return; if (!canDrag) { _this._gestureRecognizers = C.Map_empty5; _this._scrollable$_handleDragCancel$0(); } else { switch (G.axisDirectionToAxis(_this._widget.axisDirection)) { case C.Axis_1: _this._gestureRecognizers = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_mLh, new D.GestureRecognizerFactoryWithHandlers(new F.ScrollableState_setCanDrag_closure(), new F.ScrollableState_setCanDrag_closure0(_this), type$.GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); break; case C.Axis_0: _this._gestureRecognizers = P.LinkedHashMap_LinkedHashMap$_literal([C.Type_Vq1, new D.GestureRecognizerFactoryWithHandlers(new F.ScrollableState_setCanDrag_closure1(), new F.ScrollableState_setCanDrag_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer)], type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } canDrag = true; } _this._lastCanDrag = canDrag; _this._scrollable$_lastAxisDirection = G.axisDirectionToAxis(_this._widget.axisDirection); t1 = _this._gestureDetectorKey; if (t1.get$currentState() != null) { t1 = t1.get$currentState(); t1._syncAll$1(_this._gestureRecognizers); if (!t1._widget.excludeFromSemantics) { t2 = t1._framework$_element.get$renderObject(); t2.toString; type$.RenderSemanticsGestureHandler._as(t2); t1._gesture_detector$_semantics.assignSemantics$1(t2); } } }, setIgnorePointer$1: function(value) { var t1, _this = this; if (_this._shouldIgnorePointer === value) return; _this._shouldIgnorePointer = value; t1 = _this._ignorePointerKey; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1) != null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject(); t1.toString; type$.RenderIgnorePointer._as(t1).set$ignoring(_this._shouldIgnorePointer); } }, _scrollable$_handleDragDown$1: function(details) { var t1 = this._scrollable$_position, previousVelocity = t1._activity.get$velocity(), holdActivity = new M.HoldScrollActivity(this.get$_disposeHold(), t1); t1.beginActivity$1(holdActivity); t1._heldPreviousVelocity = previousVelocity; this._hold = holdActivity; }, _scrollable$_handleDragStart$1: function(details) { this._scrollable$_drag = this._scrollable$_position.drag$2(details, this.get$_disposeDrag()); }, _scrollable$_handleDragUpdate$1: function(details) { var t1 = this._scrollable$_drag; if (t1 != null) t1.update$1(0, details); }, _scrollable$_handleDragEnd$1: function(details) { var t1 = this._scrollable$_drag; if (t1 != null) t1.end$1(0, details); }, _scrollable$_handleDragCancel$0: function() { var t1 = this._hold; if (t1 != null) t1._delegate.goBallistic$1(0); t1 = this._scrollable$_drag; if (t1 != null) t1._delegate.goBallistic$1(0); }, _disposeHold$0: function() { this._hold = null; }, _disposeDrag$0: function() { this._scrollable$_drag = null; }, _targetScrollOffsetForPointerScroll$1: function(delta) { var t3, t1 = this._scrollable$_position, t2 = t1._pixels; t2.toString; t3 = t1._minScrollExtent; t3.toString; t3 = Math.max(t2 + delta, t3); t1 = t1._maxScrollExtent; t1.toString; return Math.min(t3, t1); }, _pointerSignalEventDelta$1: function($event) { var delta = G.axisDirectionToAxis(this._widget.axisDirection) === C.Axis_0 ? $event.get$scrollDelta()._dx : $event.get$scrollDelta()._dy; return G.axisDirectionIsReversed(this._widget.axisDirection) ? delta * -1 : delta; }, _receivedPointerSignal$1: function($event) { var t1, t2, delta, targetScrollOffset, _this = this; if (type$.PointerScrollEvent._is($event) && _this._scrollable$_position != null) { t1 = _this._physics; if (t1 != null) { t2 = _this._scrollable$_position; t2.toString; t2 = !t1.shouldAcceptUserOffset$1(t2); t1 = t2; } else t1 = false; if (t1) return; delta = _this._pointerSignalEventDelta$1($event); targetScrollOffset = _this._targetScrollOffsetForPointerScroll$1(delta); if (delta !== 0) { t1 = _this._scrollable$_position._pixels; t1.toString; t1 = targetScrollOffset !== t1; } else t1 = false; if (t1) $.GestureBinding__instance.GestureBinding_pointerSignalResolver.register$2(0, $event, _this.get$_handlePointerScroll()); } }, _handlePointerScroll$1: function($event) { var t1, t2, t3, t4, targetPixels, _this = this, delta = _this._pointerSignalEventDelta$1($event), targetScrollOffset = _this._targetScrollOffsetForPointerScroll$1(delta); if (delta !== 0) { t1 = _this._scrollable$_position._pixels; t1.toString; t1 = targetScrollOffset !== t1; } else t1 = false; if (t1) { t1 = _this._scrollable$_position; t2 = t1._pixels; t2.toString; t3 = t1._minScrollExtent; t3.toString; t3 = Math.max(t2 + delta, t3); t4 = t1._maxScrollExtent; t4.toString; targetPixels = Math.min(t3, t4); if (targetPixels !== t2) { t1.beginActivity$1(new M.IdleScrollActivity(t1)); t1.updateUserScrollDirection$1(-delta > 0 ? C.ScrollDirection_1 : C.ScrollDirection_2); t2 = t1._pixels; t2.toString; t1.forcePixels$1(targetPixels); t1.didStartScroll$0(); t3 = t1._pixels; t3.toString; t1.didUpdateScrollPositionBy$1(t3 - t2); t1.didEndScroll$0(); t1.goBallistic$1(0); } } }, build$1: function(_, context) { var t2, t3, t4, t5, result, details, _this = this, _null = null, t1 = _this._scrollable$_position; t1.toString; t2 = _this._gestureRecognizers; t3 = _this._widget; t4 = t3.excludeFromSemantics; t5 = _this._shouldIgnorePointer; t3 = t3.viewportBuilder$2(context, t1); result = new F._ScrollableScope(_this, t1, T.Listener$(C.HitTestBehavior_0, new D.RawGestureDetector(new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, !t4, false, new T.IgnorePointer(t5, false, t3, _this._ignorePointerKey), _null), t2, C.HitTestBehavior_1, t4, _null, _this._gestureDetectorKey), _null, _null, _null, _this.get$_receivedPointerSignal(), _null), _null); t1 = _this._widget; if (!t1.excludeFromSemantics) { t1 = _this._scrollable$_position; t1.toString; t2 = _this._physics.get$allowImplicitScrolling(); t3 = _this._widget; result = new F._ScrollSemantics(t1, t2, t3.semanticChildCount, result, _this._scrollSemanticsKey); t1 = t3; } details = new F.ScrollableDetails(t1.axisDirection, _this.get$_effectiveScrollController()); return _this.get$_scrollable$_configuration().buildScrollbar$3(context, _this.get$_scrollable$_configuration().buildOverscrollIndicator$3(context, result, details), details); }, get$restorationId: function() { return this._widget.restorationId; } }; F.ScrollableState_setCanDrag_closure.prototype = { call$0: function() { return O.VerticalDragGestureRecognizer$(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 475 }; F.ScrollableState_setCanDrag_closure0.prototype = { call$1: function(instance) { var t2, t3, t1 = this.$this; instance.onDown = t1.get$_scrollable$_handleDragDown(); instance.onStart = t1.get$_scrollable$_handleDragStart(); instance.onUpdate = t1.get$_scrollable$_handleDragUpdate(); instance.onEnd = t1.get$_scrollable$_handleDragEnd(); instance.onCancel = t1.get$_scrollable$_handleDragCancel(); t2 = t1._physics; instance.minFlingDistance = t2 == null ? null : t2.get$minFlingDistance(); t2 = t1._physics; instance.minFlingVelocity = t2 == null ? null : t2.get$minFlingVelocity(); t2 = t1._physics; instance.maxFlingVelocity = t2 == null ? null : t2.get$maxFlingVelocity(); t2 = t1.get$_scrollable$_configuration(); t3 = t1._framework$_element; t3.toString; instance.velocityTrackerBuilder = t2.velocityTrackerBuilder$1(t3); instance.dragStartBehavior = t1._widget.dragStartBehavior; }, $signature: 476 }; F.ScrollableState_setCanDrag_closure1.prototype = { call$0: function() { return O.HorizontalDragGestureRecognizer$(null, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 452 }; F.ScrollableState_setCanDrag_closure2.prototype = { call$1: function(instance) { var t2, t3, t1 = this.$this; instance.onDown = t1.get$_scrollable$_handleDragDown(); instance.onStart = t1.get$_scrollable$_handleDragStart(); instance.onUpdate = t1.get$_scrollable$_handleDragUpdate(); instance.onEnd = t1.get$_scrollable$_handleDragEnd(); instance.onCancel = t1.get$_scrollable$_handleDragCancel(); t2 = t1._physics; instance.minFlingDistance = t2 == null ? null : t2.get$minFlingDistance(); t2 = t1._physics; instance.minFlingVelocity = t2 == null ? null : t2.get$minFlingVelocity(); t2 = t1._physics; instance.maxFlingVelocity = t2 == null ? null : t2.get$maxFlingVelocity(); t2 = t1.get$_scrollable$_configuration(); t3 = t1._framework$_element; t3.toString; instance.velocityTrackerBuilder = t2.velocityTrackerBuilder$1(t3); instance.dragStartBehavior = t1._widget.dragStartBehavior; }, $signature: 448 }; F.ScrollableDetails.prototype = {}; F._ScrollSemantics.prototype = { createRenderObject$1: function(context) { var t1 = this.position, t2 = new F._RenderScrollSemantics(t1, this.allowImplicitScrolling, this.semanticChildCount, null); t2.get$isRepaintBoundary(); t2.get$alwaysNeedsCompositing(); t2.__RenderObject__needsCompositing = false; t2.set$child(null); t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2.get$markNeedsSemanticsUpdate()), false); return t2; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$allowImplicitScrolling(this.allowImplicitScrolling); renderObject.set$position(0, this.position); renderObject.set$semanticChildCount(this.semanticChildCount); } }; F._RenderScrollSemantics.prototype = { set$position: function(_, value) { var t2, _this = this, t1 = _this._scrollable$_position; if (value == t1) return; t2 = _this.get$markNeedsSemanticsUpdate(); t1.removeListener$1(0, t2); _this._scrollable$_position = value; t1 = value.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); _this.markNeedsSemanticsUpdate$0(); }, set$allowImplicitScrolling: function(value) { if (value === this._allowImplicitScrolling) return; this._allowImplicitScrolling = value; this.markNeedsSemanticsUpdate$0(); }, set$semanticChildCount: function(value) { if (value == this._semanticChildCount) return; this._semanticChildCount = value; this.markNeedsSemanticsUpdate$0(); }, describeSemanticsConfiguration$1: function(config) { var t1, t2, _this = this; _this.super$RenderObject$describeSemanticsConfiguration(config); config._isSemanticBoundary = true; if (_this._scrollable$_position._haveDimensions) { config._setFlag$2(C.SemanticsFlag_262144, _this._allowImplicitScrolling); t1 = _this._scrollable$_position; t2 = t1._pixels; t2.toString; config._scrollPosition = t2; config._hasBeenAnnotated = true; t2 = t1._maxScrollExtent; t2.toString; config._scrollExtentMax = t2; t1 = t1._minScrollExtent; t1.toString; config._scrollExtentMin = t1; config.set$scrollChildCount(_this._semanticChildCount); } }, assembleSemanticsNode$3: function(node, config, children) { var t1, t2, excluded, included, firstVisibleIndex, _i, child, _this = this; if (children.length !== 0) { t1 = C.JSArray_methods.get$first(children).tags; t1 = !(t1 != null && t1.contains$1(0, C.SemanticsTag_FIw)); } else t1 = true; if (t1) { _this.super$RenderObject$assembleSemanticsNode(node, config, children); return; } t1 = _this._innerNode; if (t1 == null) t1 = _this._innerNode = A.SemanticsNode$(null, _this.get$showOnScreen()); t1.set$isMergedIntoParent(node._mergeAllDescendantsIntoThisNode || node._isMergedIntoParent); t1.set$rect(0, node._semantics$_rect); t1 = _this._innerNode; t1.toString; t2 = type$.JSArray_SemanticsNode; excluded = H.setRuntimeTypeInfo([t1], t2); included = H.setRuntimeTypeInfo([], t2); for (t1 = children.length, firstVisibleIndex = null, _i = 0; _i < children.length; children.length === t1 || (0, H.throwConcurrentModificationError)(children), ++_i) { child = children[_i]; t2 = child.tags; if (t2 != null && t2.contains$1(0, C.SemanticsTag_bQQ)) excluded.push(child); else { if ((child._flags & 8192) === 0) firstVisibleIndex = firstVisibleIndex == null ? child.indexInParent : firstVisibleIndex; included.push(child); } } config.set$scrollIndex(firstVisibleIndex); node.updateWith$2$childrenInInversePaintOrder$config(0, excluded, null); _this._innerNode.updateWith$2$childrenInInversePaintOrder$config(0, included, config); }, clearSemantics$0: function() { this.super$RenderObject$clearSemantics(); this._innerNode = null; } }; F.ScrollIncrementType.prototype = { toString$0: function(_) { return this._scrollable$_name; } }; F.ScrollIntent.prototype = {}; F.ScrollAction.prototype = { isEnabled$1: function(_, intent) { var t1, primaryScrollController, t2, $focus = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; if ($focus != null && $focus._context != null) { t1 = $focus._context; t1.toString; if (F.Scrollable_of(t1) != null) return true; t1 = $focus._context; t1.toString; if (E.PrimaryScrollController_of(t1) != null) { t1 = $focus._context; t1.toString; primaryScrollController = E.PrimaryScrollController_of(t1); if (primaryScrollController != null) { t1 = primaryScrollController._positions; if (t1.length !== 0) { t2 = C.JSArray_methods.get$single(t1).context; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._gestureDetectorKey) != null) { t1 = C.JSArray_methods.get$single(t1).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; t1 = F.Scrollable_of(t1) != null; } else t1 = false; } else t1 = false; } else t1 = false; return t1; } } return false; }, _calculateScrollIncrement$2$type: function(state, type) { var t1; state._widget.toString; switch (type) { case C.ScrollIncrementType_0: return 50; case C.ScrollIncrementType_1: t1 = state._scrollable$_position._viewportDimension; t1.toString; return 0.8 * t1; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _getIncrement$2: function(state, intent) { var _s80_ = string$.x60null_c, increment = this._calculateScrollIncrement$2$type(state, intent.type); switch (intent.direction) { case C.AxisDirection_2: switch (state._widget.axisDirection) { case C.AxisDirection_0: return -increment; case C.AxisDirection_2: return increment; case C.AxisDirection_1: case C.AxisDirection_3: return 0; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.AxisDirection_0: switch (state._widget.axisDirection) { case C.AxisDirection_0: return increment; case C.AxisDirection_2: return -increment; case C.AxisDirection_1: case C.AxisDirection_3: return 0; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.AxisDirection_3: switch (state._widget.axisDirection) { case C.AxisDirection_1: return -increment; case C.AxisDirection_3: return increment; case C.AxisDirection_0: case C.AxisDirection_2: return 0; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } case C.AxisDirection_1: switch (state._widget.axisDirection) { case C.AxisDirection_1: return increment; case C.AxisDirection_3: return -increment; case C.AxisDirection_0: case C.AxisDirection_2: return 0; default: throw H.wrapException(H.ReachabilityError$(_s80_)); } default: throw H.wrapException(H.ReachabilityError$(_s80_)); } }, invoke$1: function(intent) { var state, t2, increment, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t1.toString; state = F.Scrollable_of(t1); if (state == null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t1.toString; t1 = C.JSArray_methods.get$single(E.PrimaryScrollController_of(t1)._positions).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; state = F.Scrollable_of(t1); } t1 = state._physics; if (t1 != null) { t2 = state._scrollable$_position; t2.toString; t2 = !t1.shouldAcceptUserOffset$1(t2); t1 = t2; } else t1 = false; if (t1) return; increment = this._getIncrement$2(state, intent); if (increment === 0) return; t1 = state._scrollable$_position; t2 = t1._pixels; t2.toString; t1.moveTo$3$curve$duration(0, t2 + increment, C.Cubic_xDo, C.Duration_100000); } }; F._RestorableScrollOffset.prototype = { createDefaultValue$0: function() { return null; }, didUpdateValue$1: function(oldValue) { this.notifyListeners$0(); }, fromPrimitives$1: function(data) { data.toString; return H._asDoubleS(data); }, toPrimitives$0: function() { return this._restoration_properties$_value; }, get$enabled: function(_) { return this._restoration_properties$_value != null; } }; F._ScrollableState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this.didUpdateRestorationId$0(); }, didChangeDependencies$0: function() { var oldBucket, needsRestore, t1, didReplaceBucket, _this = this; _this.super$_ScrollableState_State_TickerProviderStateMixin$didChangeDependencies(); oldBucket = _this.RestorationMixin__bucket; needsRestore = _this.get$restorePending(); t1 = _this._framework$_element; t1.toString; t1 = K.RestorationScope_of(t1); _this.RestorationMixin__currentParent = t1; didReplaceBucket = _this._updateBucketIfNecessary$2$parent$restorePending(t1, needsRestore); if (needsRestore) { _this.restoreState$2(oldBucket, _this.RestorationMixin__firstRestorePending); _this.RestorationMixin__firstRestorePending = false; } if (didReplaceBucket) if (oldBucket != null) oldBucket.dispose$0(0); }, dispose$0: function(_) { var t1, _this = this; _this.RestorationMixin__properties.forEach$1(0, new F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure()); t1 = _this.RestorationMixin__bucket; if (t1 != null) t1.dispose$0(0); _this.RestorationMixin__bucket = null; _this.super$_ScrollableState_State_TickerProviderStateMixin$dispose(0); } }; E.ScrollbarPainter.prototype = { set$color: function(_, value) { if (J.$eq$(this._scrollbar$_color, value)) return; this._scrollbar$_color = value; this.notifyListeners$0(); }, set$trackColor: function(value) { if (J.$eq$(this._scrollbar$_trackColor, value)) return; this._scrollbar$_trackColor = value; this.notifyListeners$0(); }, set$trackBorderColor: function(value) { if (J.$eq$(this._scrollbar$_trackBorderColor, value)) return; this._scrollbar$_trackBorderColor = value; this.notifyListeners$0(); }, set$textDirection: function(_, value) { if (this._scrollbar$_textDirection == value) return; this._scrollbar$_textDirection = value; this.notifyListeners$0(); }, set$thickness: function(value) { if (this._thickness == value) return; this._thickness = value; this.notifyListeners$0(); }, set$mainAxisMargin: function(value) { if (this._mainAxisMargin === value) return; this._mainAxisMargin = value; this.notifyListeners$0(); }, set$crossAxisMargin: function(value) { if (this._crossAxisMargin === value) return; this._crossAxisMargin = value; this.notifyListeners$0(); }, set$radius: function(value) { if (J.$eq$(this._scrollbar$_radius, value)) return; this._scrollbar$_radius = value; this.notifyListeners$0(); }, set$padding: function(_, value) { if (this._scrollbar$_padding.$eq(0, value)) return; this._scrollbar$_padding = value; this.notifyListeners$0(); }, set$minLength: function(_, value) { if (this._minLength === value) return; this._minLength = value; this.notifyListeners$0(); }, set$minOverscrollLength: function(value) { if (this._minOverscrollLength === value) return; this._minOverscrollLength = value; this.notifyListeners$0(); }, get$_thumbOffset: function() { var t1 = this.__ScrollbarPainter__thumbOffset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_thumbOffset")) : t1; }, get$_paintThumb: function() { var t2, t3, t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2 = this._scrollbar$_color; t3 = this.fadeoutOpacityAnimation; t1.set$color(0, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); return t1; }, _paintTrack$1$isBorder: function(isBorder) { var t1, t2, t3, _this = this; if (isBorder) { t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2 = _this._scrollbar$_trackBorderColor; t3 = _this.fadeoutOpacityAnimation; t1.set$color(0, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); t1.set$style(0, C.PaintingStyle_1); t1.set$strokeWidth(1); return t1; } t1 = H._detectRenderer(); t1 = t1 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2 = _this._scrollbar$_trackColor; t3 = _this.fadeoutOpacityAnimation; t1.set$color(0, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * ((t2.get$value(t2) >>> 24 & 255) / 255 * t3.get$value(t3))), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255)); return t1; }, _paintTrack$0: function() { return this._paintTrack$1$isBorder(false); }, _thumbExtent$0: function() { var t3, t4, t5, t6, t7, fractionVisible, thumbExtent, safeMinLength, newMinLength, _this = this, t1 = _this._lastMetrics.get$extentInside(), t2 = _this._lastAxisDirection; t2 = t2 === C.AxisDirection_2 || t2 === C.AxisDirection_0; t3 = _this._scrollbar$_padding; t2 = t2 ? t3.get$_top(t3) + t3.get$_bottom(t3) : t3.get$horizontal(); t3 = _this._lastMetrics; t4 = t3._scroll_metrics$_maxScrollExtent; t4.toString; t5 = t3._scroll_metrics$_minScrollExtent; t5.toString; t3 = t3._scroll_metrics$_viewportDimension; t3.toString; t6 = _this._lastAxisDirection; t6 = t6 === C.AxisDirection_2 || t6 === C.AxisDirection_0; t7 = _this._scrollbar$_padding; t6 = t6 ? t7.get$_top(t7) + t7.get$_bottom(t7) : t7.get$horizontal(); fractionVisible = C.JSNumber_methods.clamp$2((t1 - t2) / (t4 - t5 + t3 - t6), 0, 1); thumbExtent = Math.max(Math.min(_this.get$_trackExtent(), _this._minOverscrollLength), _this.get$_trackExtent() * fractionVisible); t6 = _this._lastMetrics.get$extentInside(); t3 = _this._lastMetrics._scroll_metrics$_viewportDimension; t3.toString; safeMinLength = Math.min(_this._minLength, _this.get$_trackExtent()); t1 = _this._lastAxisDirection; t1 = t1 === C.AxisDirection_0 || t1 === C.AxisDirection_3; t2 = _this._lastMetrics; if ((t1 ? Math.max(t2.get$maxScrollExtent() - t2.get$pixels(), 0) : Math.max(t2.get$pixels() - t2.get$minScrollExtent(), 0)) > 0) { t1 = _this._lastAxisDirection; t1 = t1 === C.AxisDirection_0 || t1 === C.AxisDirection_3; t2 = _this._lastMetrics; t2 = (t1 ? Math.max(t2.get$pixels() - t2.get$minScrollExtent(), 0) : Math.max(t2.get$maxScrollExtent() - t2.get$pixels(), 0)) > 0; t1 = t2; } else t1 = false; newMinLength = t1 ? safeMinLength : safeMinLength * (1 - C.JSNumber_methods.clamp$2(1 - t6 / t3, 0, 0.2) / 0.2); return C.JSNumber_methods.clamp$2(thumbExtent, newMinLength, _this.get$_trackExtent()); }, dispose$0: function(_) { this.fadeoutOpacityAnimation.removeListener$1(0, this.get$notifyListeners()); this.super$ChangeNotifier$dispose(0); }, get$_trackExtent: function() { var t2, t3, t4, _this = this, t1 = _this._lastMetrics._scroll_metrics$_viewportDimension; t1.toString; t2 = _this._mainAxisMargin; t3 = _this._lastAxisDirection; t3 = t3 === C.AxisDirection_2 || t3 === C.AxisDirection_0; t4 = _this._scrollbar$_padding; t3 = t3 ? t4.get$_top(t4) + t4.get$_bottom(t4) : t4.get$horizontal(); return t1 - 2 * t2 - t3; }, paint$2: function(canvas, size) { var t1, t2, t3, beforePadding, thumbExtent, scrollableExtent, fractionPast, thumbSize, trackSize, x, y, trackOffset, _this = this, _null = null; if (_this._lastAxisDirection != null) if (_this._lastMetrics != null) { t1 = _this.fadeoutOpacityAnimation; t1 = J.$eq$(t1.get$value(t1), 0); } else t1 = true; else t1 = true; if (t1) return; t1 = _this._lastMetrics._scroll_metrics$_viewportDimension; t1.toString; t2 = _this._lastAxisDirection; t2 = t2 === C.AxisDirection_2 || t2 === C.AxisDirection_0; t3 = _this._scrollbar$_padding; if (t1 <= (t2 ? t3.get$_top(t3) + t3.get$_bottom(t3) : t3.get$horizontal()) || _this.get$_trackExtent() <= 0) return; t1 = _this._lastAxisDirection; t1 = t1 === C.AxisDirection_2 || t1 === C.AxisDirection_0; t2 = _this._scrollbar$_padding; beforePadding = t1 ? t2.top : t2.left; thumbExtent = _this._thumbExtent$0(); t1 = _this._lastMetrics; t2 = t1._scroll_metrics$_maxScrollExtent; t2.toString; t3 = t1._scroll_metrics$_minScrollExtent; t3.toString; scrollableExtent = t2 - t3; if (scrollableExtent > 0) { t1 = t1._scroll_metrics$_pixels; t1.toString; fractionPast = C.JSNumber_methods.clamp$2((t1 - t3) / scrollableExtent, 0, 1); } else fractionPast = 0; t1 = _this._lastAxisDirection; t1 = t1 === C.AxisDirection_0 || t1 === C.AxisDirection_3 ? 1 - fractionPast : fractionPast; _this.__ScrollbarPainter__thumbOffset = t1 * (_this.get$_trackExtent() - thumbExtent) + _this._mainAxisMargin + beforePadding; t1 = _this._lastMetrics._scroll_metrics$_maxScrollExtent; t1.toString; if (t1 == 1 / 0 || t1 == -1 / 0) return; t1 = _this._lastAxisDirection; t1.toString; switch (t1) { case C.AxisDirection_2: t1 = _this._thickness; thumbSize = new P.Size(t1, thumbExtent); trackSize = new P.Size(t1 + 2 * _this._crossAxisMargin, _this.get$_trackExtent()); t1 = _this._scrollbar$_textDirection; t2 = _this._crossAxisMargin; t3 = _this._scrollbar$_padding; x = t1 === C.TextDirection_0 ? t2 + t3.left : size._dx - _this._thickness - t2 - t3.right; y = _this.get$_thumbOffset(); trackOffset = new P.Offset(x - _this._crossAxisMargin, 0); break; case C.AxisDirection_0: t1 = _this._thickness; thumbSize = new P.Size(t1, thumbExtent); trackSize = new P.Size(t1 + 2 * _this._crossAxisMargin, _this.get$_trackExtent()); t1 = _this._scrollbar$_textDirection; t2 = _this._crossAxisMargin; t3 = _this._scrollbar$_padding; x = t1 === C.TextDirection_0 ? t2 + t3.left : size._dx - _this._thickness - t2 - t3.right; y = _this.get$_thumbOffset(); trackOffset = new P.Offset(x - _this._crossAxisMargin, 0); break; case C.AxisDirection_3: thumbSize = new P.Size(thumbExtent, _this._thickness); x = _this.get$_thumbOffset(); y = size._dy - _this._thickness - _this._crossAxisMargin - _this._scrollbar$_padding.bottom; t1 = _this.get$_trackExtent(); t2 = _this._thickness; t3 = _this._crossAxisMargin; trackSize = new P.Size(t1, t2 + 2 * t3); trackOffset = new P.Offset(0, y - t3); break; case C.AxisDirection_1: thumbSize = new P.Size(thumbExtent, _this._thickness); trackSize = new P.Size(_this.get$_trackExtent(), _this._thickness + 2 * _this._crossAxisMargin); x = _this.get$_thumbOffset(); t1 = size._dy; t2 = _this._thickness; t3 = _this._crossAxisMargin; y = t1 - t2 - t3 - _this._scrollbar$_padding.bottom; trackOffset = new P.Offset(0, y - t3); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); trackOffset = _null; trackSize = trackOffset; thumbSize = trackSize; y = thumbSize; x = y; } t1 = trackOffset._dx; t2 = trackOffset._dy; t3 = new P.Rect(t1, t2, t1 + trackSize._dx, t2 + trackSize._dy); _this._trackRect = t3; canvas.drawRect$2(0, t3, _this._paintTrack$0()); canvas.drawLine$3(0, trackOffset, new P.Offset(t1, t2 + _this.get$_trackExtent()), _this._paintTrack$1$isBorder(true)); t2 = _this._thumbRect = new P.Rect(x, y, x + thumbSize._dx, y + thumbSize._dy); t1 = _this._scrollbar$_radius; if (t1 == null) canvas.drawRect$2(0, t2, _this.get$_paintThumb()); else canvas.drawRRect$2(0, P.RRect$fromRectAndRadius(t2, t1), _this.get$_paintThumb()); return _null; }, hitTestInteractive$2: function(position, kind) { var t1, interactiveRect, _this = this; if (_this._thumbRect == null) return false; t1 = _this.fadeoutOpacityAnimation; if (J.$eq$(t1.get$value(t1), 0)) return false; interactiveRect = _this._trackRect; if (interactiveRect == null) { t1 = _this._thumbRect; t1.toString; interactiveRect = t1; } switch (kind) { case C.PointerDeviceKind_0: return interactiveRect.expandToInclude$1(P.Rect$fromCircle(_this._thumbRect.get$center(), 24)).contains$1(0, position); case C.PointerDeviceKind_1: case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: return interactiveRect.contains$1(0, position); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, hitTestOnlyThumbInteractive$2: function(position, kind) { var t1, _this = this; if (_this._thumbRect == null) return false; t1 = _this.fadeoutOpacityAnimation; if (J.$eq$(t1.get$value(t1), 0)) return false; switch (kind) { case C.PointerDeviceKind_0: t1 = _this._thumbRect; return t1.expandToInclude$1(P.Rect$fromCircle(t1.get$center(), 24)).contains$1(0, position); case C.PointerDeviceKind_1: case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: return _this._thumbRect.contains$1(0, position); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, hitTest$1: function(position) { var t1; if (this._thumbRect == null) return null; t1 = this.fadeoutOpacityAnimation; if (J.$eq$(t1.get$value(t1), 0)) return false; t1 = this._thumbRect; t1.toString; position.toString; return t1.contains$1(0, position); }, shouldRepaint$1: function(old) { var _this = this; return !J.$eq$(_this._scrollbar$_color, old._scrollbar$_color) || !J.$eq$(_this._scrollbar$_trackColor, old._scrollbar$_trackColor) || !J.$eq$(_this._scrollbar$_trackBorderColor, old._scrollbar$_trackBorderColor) || _this._scrollbar$_textDirection != old._scrollbar$_textDirection || _this._thickness != old._thickness || _this.fadeoutOpacityAnimation != old.fadeoutOpacityAnimation || _this._mainAxisMargin !== old._mainAxisMargin || _this._crossAxisMargin !== old._crossAxisMargin || !J.$eq$(_this._scrollbar$_radius, old._scrollbar$_radius) || _this._minLength !== old._minLength || !_this._scrollbar$_padding.$eq(0, old._scrollbar$_padding) || _this._minOverscrollLength !== old._minOverscrollLength; }, shouldRebuildSemantics$1: function(oldDelegate) { return false; }, get$semanticsBuilder: function() { return null; } }; E.RawScrollbar.prototype = { createState$0: function() { return E.RawScrollbarState$(type$.RawScrollbar); }, notificationPredicate$1: function(arg0) { return this.notificationPredicate.call$1(arg0); } }; E.RawScrollbarState.prototype = { get$_fadeoutAnimationController: function() { var t1 = this.__RawScrollbarState__fadeoutAnimationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_fadeoutAnimationController")) : t1; }, get$scrollbarPainter: function() { var t1 = this.__RawScrollbarState_scrollbarPainter; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("scrollbarPainter")) : t1; }, get$showScrollbar: function() { var t1 = this._widget.isAlwaysShown; return t1 === true; }, get$enableGestures: function() { this._widget.toString; return true; }, initState$0: function() { var t1, t2, _this = this, _null = null; _this.super$State$initState(); _this.__RawScrollbarState__fadeoutAnimationController = G.AnimationController$(_null, _this._widget.fadeDuration, 0, _null, 1, _null, _this); t1 = _this.__RawScrollbarState__fadeoutOpacityAnimation = S.CurvedAnimation$(C.Cubic_ifx, _this.get$_fadeoutAnimationController(), _null); t2 = _this._widget; t2 = t2.thickness; if (t2 == null) t2 = 6; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_fadeoutOpacityAnimation")); t2 = new E.ScrollbarPainter(C.Color_1723645116, C.Color_0, C.Color_0, t2, t1, C.EdgeInsets_0_0_0_0, 18, new P.LinkedList(type$.LinkedList__ListenerEntry)); t1.addListener$1(0, t2.get$notifyListeners()); if (_this.__RawScrollbarState_scrollbarPainter === $) _this.__RawScrollbarState_scrollbarPainter = t2; else H.throwExpression(H.LateError$fieldAI("scrollbarPainter")); }, didChangeDependencies$0: function() { this.super$_RawScrollbarState_State_TickerProviderStateMixin$didChangeDependencies(); this._maybeTriggerScrollbar$0(); }, _maybeTriggerScrollbar$0: function() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new E.RawScrollbarState__maybeTriggerScrollbar_closure(this)); }, updateScrollbarPainter$0: function() { var t2, _this = this, t1 = _this.get$scrollbarPainter(); _this._widget.toString; t1.set$color(0, C.Color_1723645116); t2 = _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t2.toString; t1.set$textDirection(0, t2.textDirection); t2 = _this._widget.thickness; t1.set$thickness(t2 == null ? 6 : t2); t1.set$radius(_this._widget.radius); t1.set$padding(0, _this._framework$_element.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.padding); }, didUpdateWidget$1: function(oldWidget) { var t1, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.isAlwaysShown; if (t1 != oldWidget.isAlwaysShown) if (t1 === true) { _this._maybeTriggerScrollbar$0(); t1 = _this.get$_fadeoutAnimationController(); t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(1, C.C__Linear, null); } else _this.get$_fadeoutAnimationController().reverse$0(0); }, _updateScrollPosition$1: function(primaryDelta) { var t4, t5, scrollOffsetGlobal, position = C.JSArray_methods.get$single(this._currentController._positions), t1 = this.get$scrollbarPainter(), t2 = t1._lastMetrics, t3 = t2._scroll_metrics$_maxScrollExtent; t3.toString; t2 = t2._scroll_metrics$_minScrollExtent; t2.toString; t4 = t1.get$_trackExtent(); t1 = t1._thumbExtent$0(); t5 = position._pixels; t5.toString; scrollOffsetGlobal = (t3 - t2) * primaryDelta / (t4 - t1) + t5; if (scrollOffsetGlobal !== t5) position.jumpTo$1(scrollOffsetGlobal - position.physics.applyBoundaryConditions$2(position, scrollOffsetGlobal)); }, _maybeStartFadeoutTimer$0: function() { var t1, _this = this; if (!_this.get$showScrollbar()) { t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); _this._fadeoutTimer = P.Timer_Timer(_this._widget.timeToFade, new E.RawScrollbarState__maybeStartFadeoutTimer_closure(_this)); } }, getScrollbarDirection$0: function() { var t1 = this._currentController._positions; if (t1.length !== 0) return G.axisDirectionToAxis(C.JSArray_methods.get$single(t1).get$axisDirection()); return null; }, handleThumbPress$0: function() { if (this.getScrollbarDirection$0() == null) return; var t1 = this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); }, handleThumbPressStart$1: function(localPosition) { var direction, _this = this, t1 = _this._widget.controller; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = E.PrimaryScrollController_of(t1); } _this._currentController = t1; direction = _this.getScrollbarDirection$0(); if (direction == null) return; t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); _this.get$_fadeoutAnimationController().forward$0(0); switch (direction) { case C.Axis_1: _this._dragScrollbarAxisPosition = localPosition._dy; break; case C.Axis_0: _this._dragScrollbarAxisPosition = localPosition._dx; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, handleThumbPressUpdate$1: function(localPosition) { var t1, t2, _this = this, direction = _this.getScrollbarDirection$0(); if (direction == null) return; switch (direction) { case C.Axis_1: t1 = localPosition._dy; t2 = _this._dragScrollbarAxisPosition; t2.toString; _this._updateScrollPosition$1(t1 - t2); _this._dragScrollbarAxisPosition = t1; break; case C.Axis_0: t1 = localPosition._dx; t2 = _this._dragScrollbarAxisPosition; t2.toString; _this._updateScrollPosition$1(t1 - t2); _this._dragScrollbarAxisPosition = t1; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, handleThumbPressEnd$2: function(localPosition, velocity) { var _this = this; if (_this.getScrollbarDirection$0() == null) return; _this._maybeStartFadeoutTimer$0(); _this._currentController = _this._dragScrollbarAxisPosition = null; }, _handleTrackTapDown$1: function(details) { var scrollIncrement, t2, _this = this, t1 = _this._widget.controller; if (t1 == null) { t1 = _this._framework$_element; t1.toString; t1 = E.PrimaryScrollController_of(t1); } _this._currentController = t1; t1 = C.JSArray_methods.get$single(t1._positions).context; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._gestureDetectorKey); t1.toString; t1 = F.Scrollable_of(t1); if (t1 != null) t1._widget.toString; t1 = _this._currentController; t1 = C.JSArray_methods.get$single(t1._positions)._viewportDimension; t1.toString; scrollIncrement = 0.8 * t1; switch (C.JSArray_methods.get$single(_this._currentController._positions).context._widget.axisDirection) { case C.AxisDirection_0: if (details.localPosition._dy > _this.get$scrollbarPainter().get$_thumbOffset()) scrollIncrement = -scrollIncrement; break; case C.AxisDirection_2: if (details.localPosition._dy < _this.get$scrollbarPainter().get$_thumbOffset()) scrollIncrement = -scrollIncrement; break; case C.AxisDirection_1: if (details.localPosition._dx < _this.get$scrollbarPainter().get$_thumbOffset()) scrollIncrement = -scrollIncrement; break; case C.AxisDirection_3: if (details.localPosition._dx > _this.get$scrollbarPainter().get$_thumbOffset()) scrollIncrement = -scrollIncrement; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = C.JSArray_methods.get$single(_this._currentController._positions); t2 = C.JSArray_methods.get$single(_this._currentController._positions)._pixels; t2.toString; t1.moveTo$3$curve$duration(0, t2 + scrollIncrement, C.Cubic_xDo, C.Duration_100000); }, _handleScrollNotification$1: function(notification) { var metrics, t1, t2, _this = this; if (!_this._widget.notificationPredicate$1(notification)) return false; metrics = notification.metrics; t1 = metrics._scroll_metrics$_maxScrollExtent; t1.toString; t2 = metrics._scroll_metrics$_minScrollExtent; t2.toString; if (t1 <= t2) return false; if (notification instanceof G.ScrollUpdateNotification || notification instanceof G.OverscrollNotification) { if (_this.get$_fadeoutAnimationController().get$_status() !== C.AnimationStatus_1) _this.get$_fadeoutAnimationController().forward$0(0); t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); t1 = _this.get$scrollbarPainter(); t1._lastMetrics = metrics; t1._lastAxisDirection = metrics.axisDirection; t1.notifyListeners$0(); } else if (notification instanceof G.ScrollEndNotification) if (_this._dragScrollbarAxisPosition == null) _this._maybeStartFadeoutTimer$0(); return false; }, get$_gestures: function() { var t1, _this = this, gestures = P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer), controller = _this._widget.controller; if (controller == null) { t1 = _this._framework$_element; t1.toString; controller = E.PrimaryScrollController_of(t1); } if (controller == null || !_this.get$enableGestures()) return gestures; gestures.$indexSet(0, C.Type__ThumbPressGestureRecognizer_KUi, new D.GestureRecognizerFactoryWithHandlers(new E.RawScrollbarState__gestures_closure(_this), new E.RawScrollbarState__gestures_closure0(_this), type$.GestureRecognizerFactoryWithHandlers__ThumbPressGestureRecognizer)); gestures.$indexSet(0, C.Type__TrackTapGestureRecognizer_LjJ, new D.GestureRecognizerFactoryWithHandlers(new E.RawScrollbarState__gestures_closure1(_this), new E.RawScrollbarState__gestures_closure2(_this), type$.GestureRecognizerFactoryWithHandlers__TrackTapGestureRecognizer)); return gestures; }, isPointerOverScrollbar$2: function(position, kind) { var localOffset, t1 = this._scrollbarPainterKey; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1) == null) return false; localOffset = E._getLocalOffset(t1, position); return this.get$scrollbarPainter().hitTestInteractive$2(localOffset, kind); }, handleHover$1: function($event) { var t1, _this = this; if (_this.isPointerOverScrollbar$2($event.get$position($event), $event.get$kind($event))) { _this._hoverIsActive = true; t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); } else if (_this._hoverIsActive) { _this._hoverIsActive = false; _this._maybeStartFadeoutTimer$0(); } }, handleHoverExit$1: function($event) { this._hoverIsActive = false; this._maybeStartFadeoutTimer$0(); }, dispose$0: function(_) { var t1, _this = this; _this.get$_fadeoutAnimationController().dispose$0(0); t1 = _this._fadeoutTimer; if (t1 != null) t1.cancel$0(0); t1 = _this.get$scrollbarPainter(); t1.fadeoutOpacityAnimation.removeListener$1(0, t1.get$notifyListeners()); t1.super$ChangeNotifier$dispose(0); _this.super$_RawScrollbarState_State_TickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t1, t2, _this = this, _null = null; _this.updateScrollbarPainter$0(); t1 = _this.get$_gestures(); t2 = _this.get$scrollbarPainter(); return new U.NotificationListener(new T.RepaintBoundary(new D.RawGestureDetector(new T.MouseRegion(_null, new E.RawScrollbarState_build_closure(_this), new E.RawScrollbarState_build_closure0(_this), C.C__DeferringMouseCursor, true, T.CustomPaint$(new T.RepaintBoundary(_this._widget.child, _null), t2, _this._scrollbarPainterKey, _null, C.Size_0_0), _null), t1, _null, false, _null, _null), _null), _this.get$_handleScrollNotification(), _null, type$.NotificationListener_ScrollNotification); } }; E.RawScrollbarState__maybeTriggerScrollbar_closure.prototype = { call$1: function(duration) { var t2, scrollController, t1 = this.$this; if (t1.get$showScrollbar()) { t2 = t1._fadeoutTimer; if (t2 != null) t2.cancel$0(0); scrollController = t1._widget.controller; if (scrollController == null) { t2 = t1._framework$_element; t2.toString; scrollController = E.PrimaryScrollController_of(t2); } t1._widget.toString; C.JSArray_methods.get$single(scrollController._positions).didUpdateScrollPositionBy$1(0); } }, $signature: 28 }; E.RawScrollbarState__maybeStartFadeoutTimer_closure.prototype = { call$0: function() { var t1 = this.$this; t1.get$_fadeoutAnimationController().reverse$0(0); t1._fadeoutTimer = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; E.RawScrollbarState__gestures_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.pressDuration, t3 = type$.int; return new E._ThumbPressGestureRecognizer(t1._scrollbarPainterKey, t2, null, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t3, type$.GestureArenaEntry), P.HashSet_HashSet(t3), t1, null, P.LinkedHashMap_LinkedHashMap$_empty(t3, type$.PointerDeviceKind)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2022 }; E.RawScrollbarState__gestures_closure0.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onLongPress = t1.get$handleThumbPress(); instance.onLongPressStart = new E.RawScrollbarState__gestures__closure(t1); instance.onLongPressMoveUpdate = new E.RawScrollbarState__gestures__closure0(t1); instance.onLongPressEnd = new E.RawScrollbarState__gestures__closure1(t1); }, $signature: 2021 }; E.RawScrollbarState__gestures__closure.prototype = { call$1: function(details) { return this.$this.handleThumbPressStart$1(details.localPosition); }, $signature: 221 }; E.RawScrollbarState__gestures__closure0.prototype = { call$1: function(details) { return this.$this.handleThumbPressUpdate$1(details.localPosition); }, $signature: 223 }; E.RawScrollbarState__gestures__closure1.prototype = { call$1: function(details) { return this.$this.handleThumbPressEnd$2(details.localPosition, details.velocity); }, $signature: 440 }; E.RawScrollbarState__gestures_closure1.prototype = { call$0: function() { var t1 = this.$this, t2 = type$.int; return new E._TrackTapGestureRecognizer(t1._scrollbarPainterKey, C.Duration_100000, 18, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), P.HashSet_HashSet(t2), t1, null, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2015 }; E.RawScrollbarState__gestures_closure2.prototype = { call$1: function(instance) { instance.onTapDown = this.$this.get$_handleTrackTapDown(); }, $signature: 2007 }; E.RawScrollbarState_build_closure0.prototype = { call$1: function($event) { var t1; switch ($event.get$kind($event)) { case C.PointerDeviceKind_1: t1 = this.$this; if (t1.get$enableGestures()) t1.handleHoverExit$1($event); break; case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: case C.PointerDeviceKind_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 207 }; E.RawScrollbarState_build_closure.prototype = { call$1: function($event) { var t1; switch ($event.get$kind($event)) { case C.PointerDeviceKind_1: t1 = this.$this; if (t1.get$enableGestures()) t1.handleHover$1($event); break; case C.PointerDeviceKind_2: case C.PointerDeviceKind_3: case C.PointerDeviceKind_4: case C.PointerDeviceKind_0: break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $signature: 2005 }; E._ThumbPressGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { if (!this._hitTestInteractive$3(this._customPaintKey, $event.get$position($event), $event.get$kind($event))) return false; return this.super$LongPressGestureRecognizer$isPointerAllowed($event); }, _hitTestInteractive$3: function(customPaintKey, offset, kind) { var t1; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey) == null) return false; t1 = type$.CustomPaint._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey).get$widget()).foregroundPainter; t1.toString; return type$.ScrollbarPainter._as(t1).hitTestOnlyThumbInteractive$2(E._getLocalOffset(customPaintKey, offset), kind); } }; E._TrackTapGestureRecognizer.prototype = { isPointerAllowed$1: function($event) { if (!this._hitTestInteractive$3(this._customPaintKey, $event.get$position($event), $event.get$kind($event))) return false; return this.super$TapGestureRecognizer$isPointerAllowed($event); }, _hitTestInteractive$3: function(customPaintKey, offset, kind) { var t1, localOffset; if ($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey) == null) return false; t1 = type$.CustomPaint._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, customPaintKey).get$widget()).foregroundPainter; t1.toString; type$.ScrollbarPainter._as(t1); localOffset = E._getLocalOffset(customPaintKey, offset); return t1.hitTestInteractive$2(localOffset, kind) && !t1.hitTestOnlyThumbInteractive$2(localOffset, kind); } }; E._RawScrollbarState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; X.KeySet.prototype = { KeySet$4: function(key1, key2, key3, key4, _box_0, $T) { _box_0.count = 1; if (key2 != null) this._shortcuts$_keys.add$1(0, key2); if (key3 != null) this._shortcuts$_keys.add$1(0, key3); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return H._instanceType(this)._eval$1("KeySet")._is(other) && S.setEquals(other._shortcuts$_keys, this._shortcuts$_keys); }, get$hashCode: function(_) { var _this = this, t1 = _this.__KeySet_hashCode; if (t1 === $) { t1 = X.KeySet__computeHashCode(_this._shortcuts$_keys); if (_this.__KeySet_hashCode === $) _this.__KeySet_hashCode = t1; else t1 = H.throwExpression(H.LateError$fieldADI("hashCode")); } return t1; } }; X.LogicalKeySet.prototype = {}; X.ShortcutManager.prototype = { set$shortcuts: function(value) { if (!S.mapEquals(this._shortcuts, value)) { this._shortcuts = value; this.notifyListeners$0(); } }, _find$1$keysPressed: function(keysPressed) { var matchedIntent, pseudoKeys, t3, result, synonyms, first, t1 = $.$get$RawKeyboard_instance(), t2 = t1._keysPressed; t2 = t2.get$values(t2); t2 = P.LinkedHashSet_LinkedHashSet$of(t2, H._instanceType(t2)._eval$1("Iterable.E"))._collection$_length === 0; if (t2) return null; t1 = t1._keysPressed; t1 = t1.get$values(t1); keysPressed = new X.LogicalKeySet(P.HashSet_HashSet$from(P.LinkedHashSet_LinkedHashSet$of(t1, H._instanceType(t1)._eval$1("Iterable.E")), type$.LogicalKeyboardKey)); matchedIntent = this._shortcuts.$index(0, keysPressed); if (matchedIntent == null) { t1 = type$.LogicalKeyboardKey; pseudoKeys = P.LinkedHashSet_LinkedHashSet$_empty(t1); for (t2 = keysPressed._shortcuts$_keys.toSet$0(0), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); if (t3 instanceof G.LogicalKeyboardKey) { result = $.LogicalKeyboardKey__synonyms.$index(0, t3); synonyms = result == null ? P.LinkedHashSet_LinkedHashSet$_empty(t1) : P.LinkedHashSet_LinkedHashSet$_literal([result], t1); if (synonyms._collection$_length !== 0) { first = synonyms._collection$_first; if (first == null) H.throwExpression(P.StateError$("No elements")); pseudoKeys.add$1(0, first._collection$_element); } else pseudoKeys.add$1(0, t3); } } matchedIntent = this._shortcuts.$index(0, new X.LogicalKeySet(P.HashSet_HashSet$from(pseudoKeys, t1))); } return matchedIntent; }, handleKeypress$2: function(context, $event) { var matchedIntent, t1, action, t2; if (!($event instanceof B.RawKeyDownEvent)) return C.KeyEventResult_1; matchedIntent = this._find$1$keysPressed(null); if (matchedIntent != null) { t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus._context; t1.toString; action = U.Actions_maybeFind(t1, matchedIntent, type$.Intent); if (action != null && action.isEnabled$1(0, matchedIntent)) { t1.dependOnInheritedWidgetOfExactType$1$0(type$._ActionsMarker); t2 = U.Actions__findDispatcher(t1); t2.invokeAction$3(action, matchedIntent, t1); return action.consumesKey$1(matchedIntent) ? C.KeyEventResult_0 : C.KeyEventResult_2; } } return C.KeyEventResult_1; } }; X.Shortcuts.prototype = { createState$0: function() { return new X._ShortcutsState(C._StateLifecycle_0); } }; X._ShortcutsState.prototype = { get$manager: function() { this._widget.toString; var t1 = this._internalManager; t1.toString; return t1; }, dispose$0: function(_) { var t1 = this._internalManager; if (t1 != null) t1.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, initState$0: function() { var _this = this; _this.super$State$initState(); _this._widget.toString; _this._internalManager = X.ShortcutManager$(); _this.get$manager().set$shortcuts(_this._widget.shortcuts); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this.super$State$didUpdateWidget(oldWidget); _this._widget.toString; oldWidget.toString; _this.get$manager().set$shortcuts(_this._widget.shortcuts); }, _handleOnKey$2: function(node, $event) { var t1, t2; if (node._context == null) return C.KeyEventResult_1; t1 = this.get$manager(); t2 = node._context; t2.toString; return t1.handleKeypress$2(t2, $event); }, build$1: function(_, context) { var _null = null, t1 = C.Type_Shortcuts_6TW.toString$0(0); return L.Focus$(false, false, new X._ShortcutsMarker(this.get$manager(), this._widget.child, _null), t1, true, _null, true, _null, _null, this.get$_handleOnKey(), _null); } }; X._ShortcutsMarker.prototype = {}; X._LogicalKeySet_KeySet_Diagnosticable.prototype = {}; X._ShortcutManager_ChangeNotifier_Diagnosticable.prototype = {}; E.SingleChildScrollView.prototype = { build$1: function(_, context) { var t2, scrollController, scrollable, _this = this, _null = null, t1 = {}, axisDirection = T.getAxisDirectionFromAxisReverseAndDirectionality(context, _this.scrollDirection, _this.reverse), contents = _this.child; t1.contents = contents; t2 = _this.padding; if (t2 != null) t1.contents = new T.Padding(t2, contents, _null); t2 = _this.primary; scrollController = t2 ? E.PrimaryScrollController_of(context) : _this.controller; scrollable = F.Scrollable$(axisDirection, scrollController, _this.dragStartBehavior, false, _this.physics, _null, _null, _null, new E.SingleChildScrollView_build_closure(t1, _this, axisDirection)); return t2 && scrollController != null ? E.PrimaryScrollController$none(scrollable) : scrollable; } }; E.SingleChildScrollView_build_closure.prototype = { call$2: function(context, offset) { return new E._SingleChildViewport(this.axisDirection, offset, C.Clip_1, this._box_0.contents, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1997 }; E._SingleChildViewport.prototype = { createRenderObject$1: function(context) { var t1 = new E._RenderSingleChildViewport(this.axisDirection, this.offset, this.clipBehavior, null); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.set$child(null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1; renderObject.set$axisDirection(this.axisDirection); renderObject.set$offset(0, this.offset); t1 = this.clipBehavior; if (t1 !== renderObject._single_child_scroll_view$_clipBehavior) { renderObject._single_child_scroll_view$_clipBehavior = t1; renderObject.markNeedsPaint$0(); renderObject.markNeedsSemanticsUpdate$0(); } } }; E._RenderSingleChildViewport.prototype = { set$axisDirection: function(value) { if (value === this._axisDirection) return; this._axisDirection = value; this.markNeedsLayout$0(); }, set$offset: function(_, value) { var _this = this, t1 = _this._single_child_scroll_view$_offset; if (value == t1) return; if (_this._node$_owner != null) t1.removeListener$1(0, _this.get$_hasScrolled()); _this._single_child_scroll_view$_offset = value; if (_this._node$_owner != null) { t1 = value.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_hasScrolled()), false); } _this.markNeedsLayout$0(); }, _hasScrolled$0: function() { this.markNeedsPaint$0(); this.markNeedsSemanticsUpdate$0(); }, setupParentData$1: function(child) { if (!(child.parentData instanceof K.ParentData)) child.parentData = new K.ParentData(); }, attach$1: function(owner) { var t1; this.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$attach(owner); t1 = this._single_child_scroll_view$_offset.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_hasScrolled()), false); }, detach$0: function(_) { this._single_child_scroll_view$_offset.removeListener$1(0, this.get$_hasScrolled()); this.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$detach(0); }, get$isRepaintBoundary: function() { return true; }, get$_viewportExtent: function() { switch (G.axisDirectionToAxis(this._axisDirection)) { case C.Axis_0: return this._box$_size._dx; case C.Axis_1: return this._box$_size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, get$_single_child_scroll_view$_maxScrollExtent: function() { var _this = this, t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) return 0; switch (G.axisDirectionToAxis(_this._axisDirection)) { case C.Axis_0: return Math.max(0, t1._box$_size._dx - _this._box$_size._dx); case C.Axis_1: return Math.max(0, t1._box$_size._dy - _this._box$_size._dy); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _single_child_scroll_view$_getInnerConstraints$1: function(constraints) { switch (G.axisDirectionToAxis(this._axisDirection)) { case C.Axis_0: return new S.BoxConstraints(0, 1 / 0, constraints.minHeight, constraints.maxHeight); case C.Axis_1: return new S.BoxConstraints(constraints.minWidth, constraints.maxWidth, 0, 1 / 0); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, computeMinIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_0, height, t1.get$computeMinIntrinsicWidth()); return 0; }, computeMaxIntrinsicWidth$1: function(height) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_1, height, t1.get$computeMaxIntrinsicWidth()); return 0; }, computeMinIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_2, width, t1.get$computeMinIntrinsicHeight()); return 0; }, computeMaxIntrinsicHeight$1: function(width) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) return t1._computeIntrinsicDimension$3(C._IntrinsicDimension_3, width, t1.get$computeMaxIntrinsicHeight()); return 0; }, computeDryLayout$1: function(constraints) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 == null) return new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); return constraints.constrain$1(t1.getDryLayout$1(this._single_child_scroll_view$_getInnerConstraints$1(constraints))); }, performLayout$0: function() { var _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)), t1 = _this.RenderObjectWithChildMixin__child; if (t1 == null) _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(0, constraints.minHeight, constraints.maxHeight)); else { t1.layout$2$parentUsesSize(0, _this._single_child_scroll_view$_getInnerConstraints$1(constraints), true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } _this._single_child_scroll_view$_offset.applyViewportDimension$1(_this.get$_viewportExtent()); _this._single_child_scroll_view$_offset.applyContentDimensions$2(0, _this.get$_single_child_scroll_view$_maxScrollExtent()); }, _paintOffsetForPosition$1: function(position) { var _this = this; switch (_this._axisDirection) { case C.AxisDirection_0: return new P.Offset(0, position - _this.RenderObjectWithChildMixin__child._box$_size._dy + _this._box$_size._dy); case C.AxisDirection_2: return new P.Offset(0, -position); case C.AxisDirection_3: return new P.Offset(position - _this.RenderObjectWithChildMixin__child._box$_size._dx + _this._box$_size._dx, 0); case C.AxisDirection_1: return new P.Offset(-position, 0); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _shouldClipAtPaintOffset$1: function(paintOffset) { var t2, t3, t4, t5, t1 = paintOffset._dx; if (!(t1 < 0)) { t2 = paintOffset._dy; if (!(t2 < 0)) { t3 = this.RenderObjectWithChildMixin__child._box$_size; t4 = t3._dx; t5 = this._box$_size; t1 = t1 + t4 > t5._dx || t2 + t3._dy > t5._dy; } else t1 = true; } else t1 = true; return t1; }, paint$2: function(context, offset) { var t1, paintOffset, t2, t3, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; paintOffset = _this._paintOffsetForPosition$1(t1); t1 = new E._RenderSingleChildViewport_paint_paintContents(_this, paintOffset); if (_this._shouldClipAtPaintOffset$1(paintOffset) && _this._single_child_scroll_view$_clipBehavior !== C.Clip_0) { t2 = _this.get$_needsCompositing(); t3 = _this._box$_size; _this._single_child_scroll_view$_clipRectLayer = context.pushClipRect$6$clipBehavior$oldLayer(t2, offset, new P.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), t1, _this._single_child_scroll_view$_clipBehavior, _this._single_child_scroll_view$_clipRectLayer); } else { _this._single_child_scroll_view$_clipRectLayer = null; t1.call$2(context, offset); } } }, applyPaintTransform$2: function(child, transform) { var paintOffset, t1 = this._single_child_scroll_view$_offset._pixels; t1.toString; paintOffset = this._paintOffsetForPosition$1(t1); transform.translate$2(0, paintOffset._dx, paintOffset._dy); }, describeApproximatePaintClip$1: function(child) { var t1, _this = this; if (child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; t1 = _this._shouldClipAtPaintOffset$1(_this._paintOffsetForPosition$1(t1)); } else t1 = false; if (t1) { t1 = _this._box$_size; return new P.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); } return null; }, hitTestChildren$2$position: function(result, position) { var t1, _this = this; if (_this.RenderObjectWithChildMixin__child != null) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; return result.addWithPaintOffset$3$hitTest$offset$position(new E._RenderSingleChildViewport_hitTestChildren_closure(_this, position), _this._paintOffsetForPosition$1(t1), position); } return false; }, getOffsetToReveal$3$rect: function(target, alignment, rect) { var t1, bounds, mainAxisExtent, t2, leadingScrollOffset, targetMainAxisExtent, targetOffset, _this = this; if (rect == null) rect = target.get$paintBounds(); if (!(target instanceof S.RenderBox)) { t1 = _this._single_child_scroll_view$_offset._pixels; t1.toString; return new Q.RevealedOffset(t1, rect); } bounds = T.MatrixUtils_transformRect(target.getTransformTo$1(0, _this.RenderObjectWithChildMixin__child), rect); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; switch (_this._axisDirection) { case C.AxisDirection_0: mainAxisExtent = _this._box$_size._dy; t2 = bounds.bottom; leadingScrollOffset = t1._dy - t2; targetMainAxisExtent = t2 - bounds.top; break; case C.AxisDirection_1: mainAxisExtent = _this._box$_size._dx; leadingScrollOffset = bounds.left; targetMainAxisExtent = bounds.right - leadingScrollOffset; break; case C.AxisDirection_2: mainAxisExtent = _this._box$_size._dy; leadingScrollOffset = bounds.top; targetMainAxisExtent = bounds.bottom - leadingScrollOffset; break; case C.AxisDirection_3: mainAxisExtent = _this._box$_size._dx; t2 = bounds.right; leadingScrollOffset = t1._dx - t2; targetMainAxisExtent = t2 - bounds.left; break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } targetOffset = leadingScrollOffset - (mainAxisExtent - targetMainAxisExtent) * alignment; return new Q.RevealedOffset(targetOffset, bounds.shift$1(_this._paintOffsetForPosition$1(targetOffset))); }, showOnScreen$4$curve$descendant$duration$rect: function(curve, descendant, duration, rect) { var _this = this; if (!_this._single_child_scroll_view$_offset.physics.get$allowImplicitScrolling()) return _this.super$RenderObject$showOnScreen(curve, descendant, duration, rect); _this.super$RenderObject$showOnScreen(curve, null, duration, Q.RenderViewportBase_showInViewport(curve, descendant, duration, _this._single_child_scroll_view$_offset, rect, _this)); }, showOnScreen$0: function() { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, null); }, showOnScreen$1$rect: function(rect) { return this.showOnScreen$4$curve$descendant$duration$rect(C.Cubic_JUR, null, C.Duration_0, rect); }, showOnScreen$3$curve$duration$rect: function(curve, duration, rect) { return this.showOnScreen$4$curve$descendant$duration$rect(curve, null, duration, rect); }, describeSemanticsClip$1: function(child) { var t1; switch (G.axisDirectionToAxis(this._axisDirection)) { case C.Axis_1: t1 = this._box$_size; return new P.Rect(0, -250, 0 + t1._dx, 0 + t1._dy + 250); case C.Axis_0: t1 = this._box$_size; return new P.Rect(-250, 0, 0 + t1._dx + 250, 0 + t1._dy); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, $isRenderAbstractViewport: 1 }; E._RenderSingleChildViewport_paint_paintContents.prototype = { call$2: function(context, offset) { var t1 = this.$this.RenderObjectWithChildMixin__child; t1.toString; context.paintChild$2(t1, offset.$add(0, this.paintOffset)); }, $signature: 85 }; E._RenderSingleChildViewport_hitTestChildren_closure.prototype = { call$2: function(result, transformed) { var t1 = this.$this.RenderObjectWithChildMixin__child; t1.toString; transformed.toString; return t1.hitTest$2$position(result, transformed); }, $signature: 96 }; E.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; G.SliverChildDelegate.prototype = { get$estimatedChildCount: function() { return null; }, toString$0: function(_) { var description = H.setRuntimeTypeInfo([], type$.JSArray_String); this.debugFillDescription$1(description); return "#" + Y.shortHash(this) + "(" + C.JSArray_methods.join$1(description, ", ") + ")"; }, debugFillDescription$1: function(description) { var children, e, exception; try { children = this.get$estimatedChildCount(); if (children != null) description.push("estimated child count: " + H.S(children)); } catch (exception) { e = H.unwrapException(exception); description.push("estimated child count: EXCEPTION (" + J.get$runtimeType$(e).toString$0(0) + ")"); } } }; G._SaltedValueKey.prototype = {}; G.SliverChildBuilderDelegate.prototype = { findIndexByKey$1: function(key) { return null; }, build$2: function(_, context, index) { var child, exception, stackTrace, t1, exception0, details, key, semanticIndex, _null = null; if (!(index < 0)) { t1 = this.childCount; t1 = t1 != null && index >= t1; } else t1 = true; if (t1) return _null; child = null; try { child = this.builder.call$2(context, index); } catch (exception0) { exception = H.unwrapException(exception0); stackTrace = H.getTraceFromException(exception0); details = new U.FlutterErrorDetails(exception, stackTrace, "widgets library", U.ErrorDescription$("building"), _null, false); U.FlutterError_reportError(details); child = N.ErrorWidget__defaultErrorWidgetBuilder(details); } if (child == null) return _null; if (child.key != null) { t1 = child.key; t1.toString; key = new G._SaltedValueKey(t1); } else key = _null; t1 = child; child = new T.RepaintBoundary(t1, _null); semanticIndex = this.semanticIndexCallback.call$2(child, index); if (semanticIndex != null) child = new T.IndexedSemantics(semanticIndex, child, _null); t1 = child; child = new L.AutomaticKeepAlive(t1, _null); return new T.KeyedSubtree(child, key); }, get$estimatedChildCount: function() { return this.childCount; }, shouldRebuild$1: function(oldDelegate) { return true; } }; G.SliverChildListDelegate.prototype = { _findChildIndex$1: function(key) { var t2, t3, t4, index, _null = null, t1 = this._keyToIndex; if (!t1.containsKey$1(0, key)) { t2 = t1.$index(0, _null); t2.toString; for (t3 = this.children, t4 = J.getInterceptor$asx(t3), index = t2; index < t4.get$length(t3);) { t2 = t4.$index(t3, index).key; if (t2 != null) t1.$indexSet(0, t2, index); if (J.$eq$(t2, key)) { t1.$indexSet(0, _null, index + 1); return index; } ++index; } t1.$indexSet(0, _null, index); } else return t1.$index(0, key); return _null; }, findIndexByKey$1: function(key) { return this._findChildIndex$1(key instanceof G._SaltedValueKey ? key.value : key); }, build$2: function(_, context, index) { var child, t1, key, semanticIndex, _null = null; if (index < 0 || index >= J.get$length$asx(this.children)) return _null; child = J.$index$asx(this.children, index); t1 = child.key; key = t1 != null ? new G._SaltedValueKey(t1) : _null; if (this.addRepaintBoundaries) child = new T.RepaintBoundary(child, _null); semanticIndex = G._kDefaultSemanticIndexCallback(child, index); if (semanticIndex != null) child = new T.IndexedSemantics(semanticIndex, child, _null); return new T.KeyedSubtree(new L.AutomaticKeepAlive(child, _null), key); }, get$estimatedChildCount: function() { return J.get$length$asx(this.children); }, shouldRebuild$1: function(oldDelegate) { return !J.$eq$(this.children, oldDelegate.children); } }; G.SliverWithKeepAliveWidget.prototype = {}; G.SliverMultiBoxAdaptorWidget.prototype = { createElement$0: function(_) { return G.SliverMultiBoxAdaptorElement$(this, false); }, estimateMaxScrollOffset$5: function(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { return null; } }; G.SliverList.prototype = { createElement$0: function(_) { return G.SliverMultiBoxAdaptorElement$(this, true); }, createRenderObject$1: function(context) { var t1 = new U.RenderSliverList(type$.SliverMultiBoxAdaptorElement._as(context), P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; G.SliverGrid.prototype = { createRenderObject$1: function(context) { var t1 = new B.RenderSliverGrid(this.gridDelegate, type$.SliverMultiBoxAdaptorElement._as(context), P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$gridDelegate(this.gridDelegate); }, estimateMaxScrollOffset$5: function(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { var t1, t2; this.super$SliverMultiBoxAdaptorWidget$estimateMaxScrollOffset(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset); t1 = this.gridDelegate.getLayout$1(constraints); t2 = this.delegate.get$estimatedChildCount(); t2.toString; t1 = t1.computeMaxScrollOffset$1(t2); return t1; } }; G.SliverMultiBoxAdaptorElement.prototype = { get$widget: function() { return type$.SliverMultiBoxAdaptorWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, update$1: function(_, newWidget) { var newDelegate, oldDelegate, t1, oldWidget = type$.SliverMultiBoxAdaptorWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); this.super$RenderObjectElement$update(0, newWidget); newDelegate = newWidget.delegate; oldDelegate = oldWidget.delegate; if (newDelegate !== oldDelegate) t1 = H.getRuntimeType(newDelegate) !== H.getRuntimeType(oldDelegate) || newDelegate.shouldRebuild$1(oldDelegate); else t1 = false; if (t1) this.performRebuild$0(); }, performRebuild$0: function() { var newChildren, indexToLayoutOffset, processElement, index, key, newIndex, childParentData, lastKey, rightBoundary, t1, t2, t3, t4, t5, t6, _i, t7, lastKey0, _this = this, _null = null, _box_0 = {}; _this.super$RenderObjectElement$performRebuild(); _this._currentBeforeChild = null; _box_0.childrenUpdated = false; try { t1 = type$.int; newChildren = P.SplayTreeMap$(t1, type$.nullable_Element); indexToLayoutOffset = P.HashMap_HashMap(_null, _null, _null, t1, type$.double); processElement = new G.SliverMultiBoxAdaptorElement_performRebuild_processElement(_box_0, _this, newChildren, indexToLayoutOffset); for (t1 = _this._sliver$_childElements, t2 = t1.$ti, t2 = t2._eval$1("@<1>")._bind$1(t2._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>"), t2 = P.List_List$of(new P._SplayTreeKeyIterable(t1, t2), true, t2._eval$1("Iterable.E")), t3 = t2.length, t4 = type$.nullable_SliverMultiBoxAdaptorParentData, t5 = type$.SliverMultiBoxAdaptorWidget, t6 = _this._replaceMovedChildren, _i = 0; _i < t3; ++_i) { index = t2[_i]; key = t1.$index(0, index).get$widget().key; newIndex = key == null ? _null : t5._as(N.RenderObjectElement.prototype.get$widget.call(_this)).delegate.findIndexByKey$1(key); t7 = t1.$index(0, index).get$renderObject(); childParentData = t4._as(t7 == null ? _null : t7.parentData); if (childParentData != null && childParentData.layoutOffset != null) { t7 = childParentData.layoutOffset; t7.toString; J.$indexSet$ax(indexToLayoutOffset, index, t7); } if (newIndex != null && !J.$eq$(newIndex, index)) { if (childParentData != null) childParentData.layoutOffset = null; J.$indexSet$ax(newChildren, newIndex, t1.$index(0, index)); if (t6) J.putIfAbsent$2$x(newChildren, index, new G.SliverMultiBoxAdaptorElement_performRebuild_closure()); t1.remove$1(0, index); } else J.putIfAbsent$2$x(newChildren, index, new G.SliverMultiBoxAdaptorElement_performRebuild_closure0(_this, index)); } type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)).toString; t2 = newChildren; t3 = H.instanceType(t2); new P._SplayTreeKeyIterable(t2, t3._eval$1("@<1>")._bind$1(t3._eval$1("_SplayTreeMapNode<1,2>"))._eval$1("_SplayTreeKeyIterable<1,2>")).forEach$1(0, processElement); if (!_box_0.childrenUpdated && _this._didUnderflow) { lastKey0 = t1.lastKey$0(); lastKey = lastKey0 == null ? -1 : lastKey0; rightBoundary = lastKey + 1; J.$indexSet$ax(newChildren, rightBoundary, t1.$index(0, rightBoundary)); processElement.call$1(rightBoundary); } } finally { _this._currentlyUpdatingChildIndex = null; type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)).toString; } }, createChild$2$after: function(index, after) { this._owner.buildScope$2(this, new G.SliverMultiBoxAdaptorElement_createChild_closure(this, after, index)); }, updateChild$3: function(child, newWidget, newSlot) { var t1, t2, newChild, t3, _null = null; if (child == null) t1 = _null; else { t1 = child.get$renderObject(); t1 = t1 == null ? _null : t1.parentData; } t2 = type$.nullable_SliverMultiBoxAdaptorParentData; t2._as(t1); newChild = this.super$Element$updateChild(child, newWidget, newSlot); if (newChild == null) t3 = _null; else { t3 = newChild.get$renderObject(); t3 = t3 == null ? _null : t3.parentData; } t2._as(t3); if (t1 != t3 && t1 != null && t3 != null) t3.layoutOffset = t1.layoutOffset; return newChild; }, forgetChild$1: function(child) { this._sliver$_childElements.remove$1(0, child._slot); this.super$Element$forgetChild(child); }, removeChild$1: function(child) { var t1, _this = this; type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(_this)).toString; t1 = child.parentData; t1.toString; t1 = type$.SliverMultiBoxAdaptorParentData._as(t1).index; t1.toString; _this._owner.buildScope$2(_this, new G.SliverMultiBoxAdaptorElement_removeChild_closure(_this, t1)); }, estimateMaxScrollOffset$5$firstIndex$lastIndex$leadingScrollOffset$trailingScrollOffset: function(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset) { var t1 = type$.SliverMultiBoxAdaptorWidget, childCount = t1._as(N.RenderObjectElement.prototype.get$widget.call(this)).delegate.get$estimatedChildCount(); if (childCount == null) return 1 / 0; t1 = t1._as(N.RenderObjectElement.prototype.get$widget.call(this)); firstIndex.toString; lastIndex.toString; leadingScrollOffset.toString; t1 = t1.estimateMaxScrollOffset$5(constraints, firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset); return t1 == null ? G.SliverMultiBoxAdaptorElement__extrapolateMaxScrollOffset(firstIndex, lastIndex, leadingScrollOffset, trailingScrollOffset, childCount) : t1; }, get$childCount: function() { var lo, hi, lo0, t2, mid, _this = this, t1 = type$.SliverMultiBoxAdaptorWidget, result = t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).delegate.get$estimatedChildCount(); if (result == null) { for (lo = 0, hi = 1; lo0 = hi - 1, t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).delegate.build$2(0, _this, lo0) != null; lo = lo0) if (hi < 4503599627370496) hi *= 2; else { if (hi >= 9007199254740992) throw H.wrapException(U.FlutterError_FlutterError("Could not find the number of children in " + _this.get$widget().delegate.toString$0(0) + ".\nThe childCount getter was called (implying that the delegate's builder returned null for a positive index), but even building the child with index " + hi + " (the maximum possible integer) did not return null. Consider implementing childCount to avoid the cost of searching for the final child.")); hi = 9007199254740992; } for (; t2 = hi - lo, t2 > 1;) { mid = C.JSInt_methods._tdivFast$1(t2, 2) + lo; if (t1._as(N.RenderObjectElement.prototype.get$widget.call(_this)).delegate.build$2(0, _this, mid - 1) == null) hi = mid; else lo = mid; } result = lo; } return result; }, didFinishLayout$0: function() { var t1 = this._sliver$_childElements; t1.firstKey$0(); t1.lastKey$0(); type$.SliverMultiBoxAdaptorWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)).toString; }, insertRenderObjectChild$2: function(child, slot) { var t2, t1 = type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); type$.RenderBox._as(child); t2 = this._currentBeforeChild; t1.toString; t1.super$ContainerRenderObjectMixin$insert(0, child, t2); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).move$2$after(type$.RenderBox._as(child), this._currentBeforeChild); }, removeRenderObjectChild$2: function(child, slot) { type$.RenderSliverMultiBoxAdaptor._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).remove$1(0, type$.RenderBox._as(child)); }, visitChildren$1: function(visitor) { var t1 = this._sliver$_childElements, t2 = t1.$ti; t2 = t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("_SplayTreeValueIterable<1,2>"); t2 = H.CastIterable_CastIterable(new P._SplayTreeValueIterable(t1, t2), t2._eval$1("Iterable.E"), type$.Element_2); C.JSArray_methods.forEach$1(P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")), visitor); } }; G.SliverMultiBoxAdaptorElement_performRebuild_processElement.prototype = { call$1: function(index) { var newChild, parentData, t2, t3, _this = this, t1 = _this.$this; t1._currentlyUpdatingChildIndex = index; t2 = t1._sliver$_childElements; if (t2.$index(0, index) != null && !J.$eq$(t2.$index(0, index), _this.newChildren.$index(0, index))) { t2.$indexSet(0, index, t1.updateChild$3(t2.$index(0, index), null, index)); _this._box_0.childrenUpdated = true; } newChild = t1.updateChild$3(_this.newChildren.$index(0, index), type$.SliverMultiBoxAdaptorWidget._as(N.RenderObjectElement.prototype.get$widget.call(t1)).delegate.build$2(0, t1, index), index); if (newChild != null) { t3 = _this._box_0; t3.childrenUpdated = t3.childrenUpdated || !J.$eq$(t2.$index(0, index), newChild); t2.$indexSet(0, index, newChild); t2 = newChild.get$renderObject().parentData; t2.toString; parentData = type$.SliverMultiBoxAdaptorParentData._as(t2); if (index === 0) parentData.layoutOffset = 0; else { t2 = _this.indexToLayoutOffset; if (t2.containsKey$1(0, index)) parentData.layoutOffset = t2.$index(0, index); } if (!parentData._keptAlive) t1._currentBeforeChild = type$.nullable_RenderBox._as(newChild.get$renderObject()); } else { _this._box_0.childrenUpdated = true; t2.remove$1(0, index); } }, $signature: 67 }; G.SliverMultiBoxAdaptorElement_performRebuild_closure.prototype = { call$0: function() { return null; }, $signature: 1 }; G.SliverMultiBoxAdaptorElement_performRebuild_closure0.prototype = { call$0: function() { return this.$this._sliver$_childElements.$index(0, this.index); }, $signature: 1979 }; G.SliverMultiBoxAdaptorElement_createChild_closure.prototype = { call$0: function() { var newChild, t2, _this = this, t1 = _this.$this; t1._currentBeforeChild = _this.after == null ? null : type$.nullable_RenderBox._as(t1._sliver$_childElements.$index(0, _this.index - 1).get$renderObject()); newChild = null; try { t2 = t1._currentlyUpdatingChildIndex = _this.index; newChild = t1.updateChild$3(t1._sliver$_childElements.$index(0, t2), type$.SliverMultiBoxAdaptorWidget._as(N.RenderObjectElement.prototype.get$widget.call(t1)).delegate.build$2(0, t1, t2), t2); } finally { t1._currentlyUpdatingChildIndex = null; } t2 = _this.index; t1 = t1._sliver$_childElements; if (newChild != null) t1.$indexSet(0, t2, newChild); else t1.remove$1(0, t2); }, $signature: 0 }; G.SliverMultiBoxAdaptorElement_removeChild_closure.prototype = { call$0: function() { var result, t1, t2, _this = this; try { t1 = _this.$this; t2 = t1._currentlyUpdatingChildIndex = _this.index; result = t1.updateChild$3(t1._sliver$_childElements.$index(0, t2), null, t2); } finally { _this.$this._currentlyUpdatingChildIndex = null; } _this.$this._sliver$_childElements.remove$1(0, _this.index); }, $signature: 0 }; G.KeepAlive.prototype = { applyParentData$1: function(renderObject) { var t2, targetParent, t1 = renderObject.parentData; t1.toString; type$.KeepAliveParentDataMixin._as(t1); t2 = this.keepAlive; if (t1.KeepAliveParentDataMixin_keepAlive !== t2) { t1.KeepAliveParentDataMixin_keepAlive = t2; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof K.RenderObject && !t2) targetParent.markNeedsLayout$0(); } } }; A.SliverFillViewport.prototype = { build$1: function(_, context) { var t1 = this.viewportFraction, t2 = C.JSInt_methods.clamp$2(1 - t1, 0, 1); return new A._SliverFractionalPadding(t2 / 2, new A._SliverFillViewportRenderObjectWidget(t1, this.delegate, null), null); } }; A._SliverFillViewportRenderObjectWidget.prototype = { createRenderObject$1: function(context) { var t1 = new A.RenderSliverFillViewport(this.viewportFraction, type$.SliverMultiBoxAdaptorElement._as(context), P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.RenderBox), 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$viewportFraction(this.viewportFraction); } }; A._SliverFractionalPadding.prototype = { createRenderObject$1: function(context) { var t1 = new A._RenderSliverFractionalPadding(this.viewportFraction, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$viewportFraction(this.viewportFraction); } }; A._RenderSliverFractionalPadding.prototype = { set$viewportFraction: function(newValue) { var _this = this; if (_this._sliver_fill$_viewportFraction === newValue) return; _this._sliver_fill$_viewportFraction = newValue; _this._sliver_fill$_resolvedPadding = null; _this.markNeedsLayout$0(); }, get$resolvedPadding: function() { return this._sliver_fill$_resolvedPadding; }, _sliver_fill$_resolve$0: function() { var t1, paddingValue, _this = this; if (_this._sliver_fill$_resolvedPadding != null && J.$eq$(_this._lastResolvedConstraints, type$.SliverConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)))) return; t1 = type$.SliverConstraints; paddingValue = t1._as(K.RenderObject.prototype.get$constraints.call(_this)).viewportMainAxisExtent * _this._sliver_fill$_viewportFraction; _this._lastResolvedConstraints = t1._as(K.RenderObject.prototype.get$constraints.call(_this)); switch (G.axisDirectionToAxis(t1._as(K.RenderObject.prototype.get$constraints.call(_this)).axisDirection)) { case C.Axis_0: _this._sliver_fill$_resolvedPadding = new V.EdgeInsets(paddingValue, 0, paddingValue, 0); break; case C.Axis_1: _this._sliver_fill$_resolvedPadding = new V.EdgeInsets(0, paddingValue, 0, paddingValue); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } return; }, performLayout$0: function() { this._sliver_fill$_resolve$0(); this.super$RenderSliverEdgeInsetsPadding$performLayout(); } }; U.SliverPersistentHeaderDelegate.prototype = {}; U.SliverPersistentHeader.prototype = { build$1: function(_, context) { return new U._SliverPinnedPersistentHeader(this.delegate, null); } }; U._SliverPersistentHeaderElement.prototype = { get$widget: function() { return type$._SliverPersistentHeaderRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2: function($parent, newSlot) { this.super$RenderObjectElement$mount($parent, newSlot); type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this))._RenderSliverPersistentHeaderForWidgetsMixin__element = this; }, unmount$0: function() { this.super$RenderObjectElement$unmount(); type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this))._RenderSliverPersistentHeaderForWidgetsMixin__element = null; }, update$1: function(_, newWidget) { var newDelegate, oldDelegate, t1, oldWidget = type$._SliverPersistentHeaderRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(this)); this.super$RenderObjectElement$update(0, newWidget); newDelegate = newWidget.delegate; oldDelegate = oldWidget.delegate; if (newDelegate !== oldDelegate) if (H.getRuntimeType(newDelegate) === H.getRuntimeType(oldDelegate)) if (newDelegate.title.super$Object$$eq(0, oldDelegate.title)) if (newDelegate._bottomHeight === oldDelegate._bottomHeight) if (J.$eq$(newDelegate.backgroundColor, oldDelegate.backgroundColor)) if (newDelegate.topPadding == oldDelegate.topPadding) if (newDelegate.vsync === oldDelegate.vsync) if (newDelegate.snapConfiguration == oldDelegate.snapConfiguration) if (newDelegate.stretchConfiguration == oldDelegate.stretchConfiguration) if (newDelegate.showOnScreenConfiguration == oldDelegate.showOnScreenConfiguration) if (newDelegate.toolbarHeight === oldDelegate.toolbarHeight) t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = true; else t1 = false; if (t1) type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).markNeedsLayout$0(); }, performRebuild$0: function() { this.super$RenderObjectElement$performRebuild(); type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).markNeedsLayout$0(); }, _sliver_persistent_header$_build$2: function(shrinkOffset, overlapsContent) { this._owner.buildScope$2(this, new U._SliverPersistentHeaderElement__build_closure(this, shrinkOffset, overlapsContent)); }, forgetChild$1: function(child) { this.child = null; this.super$Element$forgetChild(child); }, insertRenderObjectChild$2: function(child, slot) { type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(child); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { type$._RenderSliverPersistentHeaderForWidgetsMixin._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).set$child(null); }, visitChildren$1: function(visitor) { var t1 = this.child; if (t1 != null) visitor.call$1(t1); } }; U._SliverPersistentHeaderElement__build_closure.prototype = { call$0: function() { var t5, t6, t7, t8, appBar, t1 = this.$this, t2 = t1.child, t3 = type$._SliverPersistentHeaderRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(t1)).delegate, t4 = this.shrinkOffset; t3.get$maxExtent(); t5 = t3.collapsedHeight; t6 = t3.toolbarHeight; Math.max(t5 - t3._bottomHeight - t3.topPadding - t6, 0); t7 = t3.get$maxExtent(); t8 = Math.max(t5, t3.get$maxExtent() - t4); if (!this.overlapsContent) t4 = t4 > t3.get$maxExtent() - t5; else t4 = true; t4 = t4 ? t3.elevation : 0; appBar = Z.FlexibleSpaceBar_createSettings(E.AppBar$(t3.actions, t3.actionsIconTheme, false, t3.backgroundColor, t3.backwardsCompatibility, t3.bottom, 1, t3.brightness, t3.centerTitle, t4, false, t3.flexibleSpace, t3.foregroundColor, t3.iconTheme, t3.leading, t3.leadingWidth, true, t3.shadowColor, t3.shape, t3.systemOverlayStyle, t3.textTheme, t3.title, t3.titleSpacing, t3.titleTextStyle, t6, 1, t3.toolbarTextStyle), t8, t7, t5, 1); t1.child = t1.updateChild$3(t2, appBar, null); }, $signature: 0 }; U._SliverPersistentHeaderRenderObjectWidget.prototype = { createElement$0: function(_) { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new U._SliverPersistentHeaderElement(t1, this, C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); } }; U._RenderSliverPersistentHeaderForWidgetsMixin.prototype = { get$minExtent: function() { var t1 = this._RenderSliverPersistentHeaderForWidgetsMixin__element; t1.toString; return type$._SliverPersistentHeaderRenderObjectWidget._as(N.RenderObjectElement.prototype.get$widget.call(t1)).delegate.collapsedHeight; }, updateChild$2: function(shrinkOffset, overlapsContent) { this._RenderSliverPersistentHeaderForWidgetsMixin__element._sliver_persistent_header$_build$2(shrinkOffset, overlapsContent); } }; U._SliverPinnedPersistentHeader.prototype = { createRenderObject$1: function(context) { var t1 = new U._RenderSliverPinnedPersistentHeaderForWidgets(null, this.delegate.stretchConfiguration, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.set$child(null); return t1; } }; U._RenderSliverPinnedPersistentHeaderForWidgets.prototype = {}; U.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin.prototype = {}; R.Spacer.prototype = { build$1: function(_, context) { return T.Expanded$(C.SizedBox_0_0_null_null, 1); } }; S.TableRow.prototype = { toString$0: function(_) { var t2, t1 = this.key; t1 = t1 != null ? "TableRow(" + (t1.toString$0(0) + ", ") : "TableRow("; t2 = this.decoration; if (t2 != null) t1 += t2.toString$0(0) + ", "; t2 = this.children; t1 = t2.length === 0 ? t1 + "no children" : t1 + H.S(t2); t1 += ")"; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; S._TableElementRow.prototype = {}; S.Table.prototype = { createElement$0: function(_) { var t1 = type$.Element_2, t2 = P.HashSet_HashSet(t1), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new S._TableElement(C.List_empty11, t2, t3, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, createRenderObject$1: function(context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = _this.children, t2 = t1.length; t1 = t2 !== 0 ? t1[0].children.length : 0; t3 = _this.columnWidths; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t4.toString; t4 = t4.textDirection; t5 = U.createLocalImageConfiguration(context, _null); t6 = H.setRuntimeTypeInfo([], type$.JSArray_double); if (t3 == null) t3 = P.HashMap_HashMap(_null, _null, _null, type$.int, type$.TableColumnWidth); t6 = new S.RenderTable(C.List_empty10, t1, t2, t3, _this.defaultColumnWidth, t4, _null, t5, _this.defaultVerticalAlignment, _null, t6); t6.get$isRepaintBoundary(); t6.get$alwaysNeedsCompositing(); t6.__RenderObject__needsCompositing = false; t1 = H.setRuntimeTypeInfo([], type$.JSArray_nullable_RenderBox); C.JSArray_methods.set$length(t1, t6._table$_columns * t6._rows); t6._table$_children = t1; t6.set$rowDecorations(_this._rowDecorations); return t6; }, updateRenderObject$2: function(context, renderObject) { var t1, _this = this; renderObject.set$columnWidths(_this.columnWidths); renderObject.set$defaultColumnWidth(_this.defaultColumnWidth); t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.Directionality); t1.toString; t1 = t1.textDirection; renderObject.set$textDirection(0, t1); renderObject.set$border(0, null); renderObject.set$rowDecorations(_this._rowDecorations); renderObject.set$configuration(U.createLocalImageConfiguration(context, null)); renderObject.set$defaultVerticalAlignment(_this.defaultVerticalAlignment); renderObject.set$textBaseline(0, null); } }; S.Table_closure.prototype = { call$1: function(row) { return row.decoration != null; }, $signature: 1976 }; S.Table_closure0.prototype = { call$1: function(row) { return row.decoration; }, $signature: 1974 }; S._TableElement.prototype = { get$widget: function() { return type$.Table._as(N.RenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$.RenderTable._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2: function($parent, newSlot) { var t2, t3, _this = this, t1 = {}; _this._doingMountOrUpdate = true; _this.super$RenderObjectElement$mount($parent, newSlot); t1.rowIndex = -1; t2 = type$.Table._as(N.RenderObjectElement.prototype.get$widget.call(_this)).children; t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,_TableElementRow>"); _this._table0$_children = P.List_List$of(new H.MappedListIterable(t2, new S._TableElement_mount_closure(t1, _this), t3), false, t3._eval$1("ListIterable.E")); _this._updateRenderObjectChildren$0(); _this._doingMountOrUpdate = false; }, insertRenderObjectChild$2: function(child, slot) { var t1 = type$.RenderTable; t1._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).toString; if (!(child.parentData instanceof S.TableCellParentData)) child.parentData = new S.TableCellParentData(C.Offset_0_0); if (!this._doingMountOrUpdate) t1._as(N.RenderObjectElement.prototype.get$renderObject.call(this)).setChild$3(slot.column, slot.row, child); }, moveRenderObjectChild$3: function(child, oldSlot, newSlot) { }, removeRenderObjectChild$2: function(child, slot) { var t2, t3, t1 = child.parentData; t1.toString; type$.TableCellParentData._as(t1); t2 = type$.RenderTable._as(N.RenderObjectElement.prototype.get$renderObject.call(this)); t3 = t1.x; t3.toString; t1 = t1.y; t1.toString; t2.setChild$3(t3, t1, null); }, update$1: function(_, newWidget) { var t1, oldKeyedRows, t2, t3, _i, row, t4, oldUnkeyedRows, newChildren, taken, rowIndex, t5, t6, oldChildren, _length, slots, columnIndex, _this = this; _this._doingMountOrUpdate = true; t1 = type$.List_Element; oldKeyedRows = P.LinkedHashMap_LinkedHashMap$_empty(type$.LocalKey, t1); for (t2 = _this._table0$_children, t3 = t2.length, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { row = t2[_i]; t4 = row.key; if (t4 != null) oldKeyedRows.$indexSet(0, t4, row.children); } t2 = _this._table0$_children; t3 = C.JSArray_methods.get$iterator(t2); oldUnkeyedRows = new H.WhereIterator(t3, new S._TableElement_update_closure(), H._arrayInstanceType(t2)._eval$1("WhereIterator<1>")); newChildren = H.setRuntimeTypeInfo([], type$.JSArray__TableElementRow); taken = P.LinkedHashSet_LinkedHashSet$_empty(t1); for (t1 = newWidget.children, t2 = _this._table0$_forgottenChildren, t4 = type$.JSArray__TableSlot, rowIndex = 0; rowIndex < t1.length; ++rowIndex) { row = t1[rowIndex]; t5 = row.key; t6 = t5 == null; if (!t6 && oldKeyedRows.containsKey$1(0, t5)) { t6 = oldKeyedRows.$index(0, t5); t6.toString; taken.add$1(0, t6); oldChildren = t6; } else oldChildren = t6 && oldUnkeyedRows.moveNext$0() ? t3.get$current(t3).children : C.List_empty12; t6 = row.children; _length = t6.length; slots = H.setRuntimeTypeInfo(new Array(_length), t4); for (columnIndex = 0; columnIndex < _length; ++columnIndex) slots[columnIndex] = new S._TableSlot(columnIndex, rowIndex); newChildren.push(new S._TableElementRow(t5, _this.updateChildren$4$forgottenChildren$slots(oldChildren, t6, t2, slots))); } for (; oldUnkeyedRows.moveNext$0();) _this.updateChildren$3$forgottenChildren(t3.get$current(t3).children, C.List_empty8, t2); for (t1 = oldKeyedRows.get$values(oldKeyedRows), t3 = t1.get$iterator(t1), t1 = new H.WhereIterator(t3, new S._TableElement_update_closure0(taken), H._instanceType(t1)._eval$1("WhereIterator")); t1.moveNext$0();) _this.updateChildren$3$forgottenChildren(t3.get$current(t3), C.List_empty8, t2); _this._table0$_children = newChildren; _this._updateRenderObjectChildren$0(); t2.clear$0(0); _this.super$RenderObjectElement$update(0, newWidget); _this._doingMountOrUpdate = false; }, _updateRenderObjectChildren$0: function() { var t3, t4, t1 = type$.RenderTable._as(N.RenderObjectElement.prototype.get$renderObject.call(this)), t2 = this._table0$_children; t2 = t2.length !== 0 ? J.get$length$asx(t2[0].children) : 0; t3 = this._table0$_children; t4 = H._arrayInstanceType(t3)._eval$1("ExpandIterable<1,RenderBox>"); t1.setFlatChildren$2(t2, P.List_List$of(new H.ExpandIterable(t3, new S._TableElement__updateRenderObjectChildren_closure(), t4), true, t4._eval$1("Iterable.E"))); }, visitChildren$1: function(visitor) { var t1, t2, t3; for (t1 = this._table0$_children, t2 = H._arrayInstanceType(t1), t2 = new H.ExpandIterator(C.JSArray_methods.get$iterator(t1), new S._TableElement_visitChildren_closure(), C.C_EmptyIterator, t2._eval$1("@<1>")._bind$1(t2._eval$1("Element0"))._eval$1("ExpandIterator<1,2>")), t1 = this._table0$_forgottenChildren; t2.moveNext$0();) { t3 = t2.__internal$_current; if (!t1.contains$1(0, t3)) visitor.call$1(t3); } }, forgetChild$1: function(child) { this._table0$_forgottenChildren.add$1(0, child); this.super$Element$forgetChild(child); return true; } }; S._TableElement_mount_closure.prototype = { call$1: function(row) { var t2, t3, t4, t5, t1 = {}; t1.columnIndex = 0; t2 = this._box_1; ++t2.rowIndex; t3 = row.key; t4 = row.children; t5 = H._arrayInstanceType(t4)._eval$1("MappedListIterable<1,Element0>"); return new S._TableElementRow(t3, P.List_List$of(new H.MappedListIterable(t4, new S._TableElement_mount__closure(t1, t2, this.$this), t5), false, t5._eval$1("ListIterable.E"))); }, $signature: 1940 }; S._TableElement_mount__closure.prototype = { call$1: function(child) { return this.$this.inflateWidget$2(child, new S._TableSlot(this._box_0.columnIndex++, this._box_1.rowIndex)); }, $signature: 1923 }; S._TableElement_update_closure.prototype = { call$1: function(row) { return row.key == null; }, $signature: 1908 }; S._TableElement_update_closure0.prototype = { call$1: function(list) { return !this.taken.contains$1(0, list); }, $signature: 1906 }; S._TableElement__updateRenderObjectChildren_closure.prototype = { call$1: function(row) { return J.map$1$1$ax(row.children, new S._TableElement__updateRenderObjectChildren__closure(), type$.RenderBox); }, $signature: 1905 }; S._TableElement__updateRenderObjectChildren__closure.prototype = { call$1: function(child) { var t1 = child.get$renderObject(); t1.toString; return type$.RenderBox._as(t1); }, $signature: 1802 }; S._TableElement_visitChildren_closure.prototype = { call$1: function(row) { return row.children; }, $signature: 1796 }; S.TableCell.prototype = { applyParentData$1: function(renderObject) { var t2, targetParent, t1 = renderObject.parentData; t1.toString; type$.TableCellParentData._as(t1); t2 = this.verticalAlignment; if (t1.verticalAlignment !== t2) { t1.verticalAlignment = t2; targetParent = renderObject.get$parent(renderObject); if (targetParent instanceof K.RenderObject) targetParent.markNeedsLayout$0(); } } }; S._TableSlot.prototype = { $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof S._TableSlot && this.column === other.column && this.row === other.row; }, get$hashCode: function(_) { return P.hashValues(this.column, this.row, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; S.__TableSlot_Object_Diagnosticable.prototype = {}; L.DefaultTextStyle.prototype = { updateShouldNotify$1: function(oldWidget) { var t1, _this = this; if (J.$eq$(_this.style, oldWidget.style)) if (_this.softWrap === oldWidget.softWrap) if (_this.overflow === oldWidget.overflow) t1 = _this.textWidthBasis !== oldWidget.textWidthBasis || false; else t1 = true; else t1 = true; else t1 = true; return t1; }, wrap$2: function(_, context, child) { var _this = this; return L.DefaultTextStyle$(child, null, _this.maxLines, _this.overflow, _this.softWrap, _this.style, _this.textAlign, _this.textHeightBehavior, _this.textWidthBasis); } }; L._NullWidget2.prototype = { build$1: function(_, context) { throw H.wrapException(U.FlutterError_FlutterError("A DefaultTextStyle constructed with DefaultTextStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultTextStyle.of() when no enclosing default text style is present in a BuildContext.")); } }; L.Text.prototype = { build$1: function(_, context) { var effectiveTextStyle, t2, t3, t4, t5, t6, t7, t8, result, _this = this, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.DefaultTextStyle); if (t1 == null) t1 = C.DefaultTextStyle_4i6; effectiveTextStyle = _this.style; if (effectiveTextStyle == null || effectiveTextStyle.inherit) effectiveTextStyle = t1.style.merge$1(effectiveTextStyle); if (F.MediaQuery_boldTextOverride(context)) effectiveTextStyle = effectiveTextStyle.merge$1(C.TextStyle_YOT); t2 = _this.textAlign; if (t2 == null) t2 = t1.textAlign; if (t2 == null) t2 = C.TextAlign_4; t3 = _this.textDirection; t4 = _this.softWrap; if (t4 == null) t4 = t1.softWrap; t5 = _this.overflow; if (t5 == null) t5 = t1.overflow; t6 = _this.textScaleFactor; if (t6 == null) t6 = F.MediaQuery_textScaleFactorOf(context); t7 = _this.maxLines; if (t7 == null) t7 = t1.maxLines; t8 = L.DefaultTextHeightBehavior_of(context); result = T.RichText$(_null, t7, t5, t4, _null, Q.TextSpan$(_null, _null, effectiveTextStyle, _this.data), t2, t3, t8, t6, t1.textWidthBasis); t1 = _this.semanticsLabel; if (t1 != null) result = new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _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, _null, _null, _null), false, false, false, new T.ExcludeSemantics(true, result, _null), _null); return result; } }; Y.TextEditingAction.prototype = { get$textEditingActionTarget: function() { var t2, t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; if ((t1 == null ? null : t1._context) != null) t2 = !type$.TextEditingActionTarget._is(t1._context.state); else t2 = true; if (t2) return null; return type$.TextEditingActionTarget._as(t1._context.state); }, isEnabled$1: function(_, intent) { return this.get$textEditingActionTarget() != null; } }; M.DoNothingAndStopPropagationTextIntent.prototype = {}; F.TextSelectionHandleType.prototype = { toString$0: function(_) { return this._text_selection$_name; } }; F._TextSelectionHandlePosition.prototype = { toString$0: function(_) { return this._text_selection$_name; } }; F.TextSelectionControls.prototype = { handleCut$1: function(delegate) { var t3, t1 = delegate._widget.controller._change_notifier$_value, t2 = t1.selection; t1 = t1.text; t3 = t2.start; t2 = t2.end; T.Clipboard_setData(new T.ClipboardData(J.substring$2$s(t1, t3, t2))); delegate.userUpdateTextEditingValue$2(new N.TextEditingValue(C.JSString_methods.substring$2(t1, 0, t3) + C.JSString_methods.substring$1(t1, t2), X.TextSelection$collapsed(C.TextAffinity_1, t3), C.TextRange_m1_m1), C.SelectionChangedCause_5); t3 = delegate._widget.controller._change_notifier$_value.selection; delegate.bringIntoView$1(new P.TextPosition(t3.extentOffset, t3.affinity)); delegate.hideToolbar$0(); }, handleCopy$2: function(delegate, clipboardStatus) { var t3, t1 = delegate._widget.controller._change_notifier$_value, t2 = t1.selection; t1 = t1.text; t3 = t2.end; T.Clipboard_setData(new T.ClipboardData(J.substring$2$s(t1, t2.start, t3))); t2 = delegate._widget.controller._change_notifier$_value.selection; delegate.bringIntoView$1(new P.TextPosition(t2.extentOffset, t2.affinity)); switch (U.defaultTargetPlatform()) { case C.TargetPlatform_2: delegate.hideToolbar$1(false); return; case C.TargetPlatform_4: case C.TargetPlatform_0: case C.TargetPlatform_1: case C.TargetPlatform_3: case C.TargetPlatform_5: delegate.userUpdateTextEditingValue$2(new N.TextEditingValue(t1, X.TextSelection$collapsed(C.TextAffinity_1, t3), C.TextRange_m1_m1), C.SelectionChangedCause_5); delegate.hideToolbar$0(); return; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, handlePaste$1: function(delegate) { return this.handlePaste$body$TextSelectionControls(delegate); }, handlePaste$body$TextSelectionControls: function(delegate) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), t2, t3, t4, t5, t1, data; var $async$handlePaste$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = delegate._widget.controller._change_notifier$_value; $async$goto = 2; return P._asyncAwait(T.Clipboard_getData("text/plain"), $async$handlePaste$1); case 2: // returning from await. data = $async$result; if (data != null) { t2 = t1.selection; t1 = t1.text; t3 = t2.start; t4 = J.substring$2$s(t1, 0, t3); t5 = data.text; t5.toString; delegate.userUpdateTextEditingValue$2(new N.TextEditingValue(t4 + t5 + C.JSString_methods.substring$1(t1, t2.end), X.TextSelection$collapsed(C.TextAffinity_1, t3 + t5.length), C.TextRange_m1_m1), C.SelectionChangedCause_5); } t1 = delegate._widget.controller._change_notifier$_value.selection; delegate.bringIntoView$1(new P.TextPosition(t1.extentOffset, t1.affinity)); delegate.hideToolbar$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$handlePaste$1, $async$completer); } }; F.TextSelectionOverlay.prototype = { get$_toolbarController: function() { var t1 = this.__TextSelectionOverlay__toolbarController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_toolbarController")) : t1; }, get$value: function(_) { return this._text_selection$_value; }, set$handlesVisible: function(visible) { var t1, _this = this; if (_this._handlesVisible === visible) return; _this._handlesVisible = visible; t1 = $.SchedulerBinding__instance; if (t1.SchedulerBinding__schedulerPhase === C.SchedulerPhase_3) t1.SchedulerBinding__postFrameCallbacks.push(_this.get$_markNeedsBuild()); else _this._markNeedsBuild$0(); }, showHandles$0: function() { var result, t1, _this = this; if (_this._handles != null) return; _this._handles = H.setRuntimeTypeInfo([X.OverlayEntry$(new F.TextSelectionOverlay_showHandles_closure(_this), false), X.OverlayEntry$(new F.TextSelectionOverlay_showHandles_closure0(_this), false)], type$.JSArray_OverlayEntry); result = _this.context.findRootAncestorStateOfType$1$0(type$.OverlayState); result.toString; t1 = _this._handles; t1.toString; result.insertAll$1(0, t1); }, update$1: function(_, newValue) { var t1, _this = this; if (J.$eq$(_this._text_selection$_value, newValue)) return; _this._text_selection$_value = newValue; t1 = $.SchedulerBinding__instance; if (t1.SchedulerBinding__schedulerPhase === C.SchedulerPhase_3) t1.SchedulerBinding__postFrameCallbacks.push(_this.get$_markNeedsBuild()); else _this._markNeedsBuild$0(); }, _markNeedsBuild$1: function(duration) { var t1 = this._handles; if (t1 != null) { t1[0].markNeedsBuild$0(); this._handles[1].markNeedsBuild$0(); } t1 = this._toolbar; if (t1 != null) t1.markNeedsBuild$0(); }, _markNeedsBuild$0: function() { return this._markNeedsBuild$1(null); }, hide$0: function() { var _this = this, t1 = _this._handles; if (t1 != null) { t1[0].remove$0(0); _this._handles[1].remove$0(0); _this._handles = null; } if (_this._toolbar != null) _this.hideToolbar$0(); }, hideToolbar$0: function() { this.get$_toolbarController().stop$0(0); this._toolbar.remove$0(0); this._toolbar = null; }, dispose$0: function(_) { this.hide$0(); this.get$_toolbarController().dispose$0(0); }, _buildHandle$2: function(context, position) { var _this = this, _null = null, t1 = _this._text_selection$_value.selection; return new T.ExcludeSemantics(true, t1.start == t1.end && position === C._TextSelectionHandlePosition_1 || _this.selectionControls == null ? M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null) : new L.Visibility(new F._TextSelectionHandleOverlay(t1, position, _this.startHandleLayerLink, _this.endHandleLayerLink, _this.renderObject, new F.TextSelectionOverlay__buildHandle_closure(_this, position), _this.onSelectionHandleTapped, _this.selectionControls, _this.dragStartBehavior, _null), _this._handlesVisible, _null), _null); } }; F.TextSelectionOverlay_showHandles_closure.prototype = { call$1: function(context) { return this.$this._buildHandle$2(context, C._TextSelectionHandlePosition_0); }, $signature: 79 }; F.TextSelectionOverlay_showHandles_closure0.prototype = { call$1: function(context) { return this.$this._buildHandle$2(context, C._TextSelectionHandlePosition_1); }, $signature: 79 }; F.TextSelectionOverlay__buildHandle_closure.prototype = { call$1: function(newSelection) { var textPosition, t2, t1 = this.$this; switch (this.position) { case C._TextSelectionHandlePosition_0: textPosition = new P.TextPosition(newSelection.baseOffset, newSelection.affinity); break; case C._TextSelectionHandlePosition_1: textPosition = new P.TextPosition(newSelection.extentOffset, newSelection.affinity); break; default: H.throwExpression(H.ReachabilityError$(string$.x60null_c)); textPosition = null; } t2 = t1.selectionDelegate; t2.userUpdateTextEditingValue$2(t1._text_selection$_value.copyWith$2$composing$selection(C.TextRange_m1_m1, newSelection), C.SelectionChangedCause_6); t2.bringIntoView$1(textPosition); }, $signature: 705 }; F._TextSelectionHandleOverlay.prototype = { createState$0: function() { return new F._TextSelectionHandleOverlayState(null, C._StateLifecycle_0); }, get$_visibility: function(_) { switch (this.position) { case C._TextSelectionHandlePosition_0: return this.renderObject._selectionStartInViewport; case C._TextSelectionHandlePosition_1: return this.renderObject._selectionEndInViewport; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, onSelectionHandleChanged$1: function(arg0) { return this.onSelectionHandleChanged.call$1(arg0); } }; F._TextSelectionHandleOverlayState.prototype = { get$_dragPosition: function() { var t1 = this.___TextSelectionHandleOverlayState__dragPosition; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dragPosition")) : t1; }, get$_controller: function() { var t1 = this.___TextSelectionHandleOverlayState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this.___TextSelectionHandleOverlayState__controller = G.AnimationController$(null, C.Duration_150000, 0, null, 1, null, _this); _this._handleVisibilityChanged$0(); t1 = _this._widget; t1 = t1.get$_visibility(t1).ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleVisibilityChanged()), false); }, _handleVisibilityChanged$0: function() { var t1 = this._widget; if (t1.get$_visibility(t1)._change_notifier$_value) this.get$_controller().forward$0(0); else this.get$_controller().reverse$0(0); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this.get$_handleVisibilityChanged(); oldWidget.get$_visibility(oldWidget).removeListener$1(0, t1); _this._handleVisibilityChanged$0(); t2 = _this._widget; t2 = t2.get$_visibility(t2).ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1), false); }, dispose$0: function(_) { var _this = this, t1 = _this._widget; t1.get$_visibility(t1).removeListener$1(0, _this.get$_handleVisibilityChanged()); _this.get$_controller().dispose$0(0); _this.super$__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin$dispose(0); }, _handleDragStart$1: function(details) { var t1 = this._widget, t2 = t1.selectionControls; t2.toString; this.___TextSelectionHandleOverlayState__dragPosition = details.globalPosition.$add(0, new P.Offset(0, -t2.getHandleSize$1(t1.renderObject._textPainter.get$preferredLineHeight())._dy)); }, _handleDragUpdate$1: function(details) { var position, t1, t2, newSelection, _this = this; _this.___TextSelectionHandleOverlayState__dragPosition = _this.get$_dragPosition().$add(0, details.delta); position = _this._widget.renderObject.getPositionForPoint$1(_this.get$_dragPosition()); t1 = _this._widget; t2 = t1.selection; if (t2.start == t2.end) { t1.onSelectionHandleChanged$1(X.TextSelection$fromPosition(position)); return; } switch (t1.position) { case C._TextSelectionHandlePosition_0: newSelection = X.TextSelection$(C.TextAffinity_1, position.offset, t2.extentOffset, false); break; case C._TextSelectionHandlePosition_1: newSelection = X.TextSelection$(C.TextAffinity_1, t2.baseOffset, position.offset, false); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } if (newSelection.baseOffset >= newSelection.extentOffset) return; t1.onSelectionHandleChanged$1(newSelection); }, _handleTap$0: function() { this._widget.onSelectionHandleTapped.call$0(); }, build$1: function(_, context) { var layerLink, type, t2, handleAnchor, handleSize, t3, t4, handleRect, interactiveRect, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this._widget; switch (t1.position) { case C._TextSelectionHandlePosition_0: layerLink = t1.startHandleLayerLink; t1 = t1.renderObject._textPainter._text_painter$_textDirection; t1.toString; type = _this._chooseType$3(t1, C.TextSelectionHandleType_0, C.TextSelectionHandleType_1); break; case C._TextSelectionHandlePosition_1: layerLink = t1.endHandleLayerLink; t1 = t1.renderObject._textPainter._text_painter$_textDirection; t1.toString; type = _this._chooseType$3(t1, C.TextSelectionHandleType_1, C.TextSelectionHandleType_0); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } t1 = _this._widget; t2 = t1.selectionControls; t2.toString; handleAnchor = t2.getHandleAnchor$2(type, t1.renderObject._textPainter.get$preferredLineHeight()); t1 = _this._widget; t2 = t1.selectionControls; t2.toString; handleSize = t2.getHandleSize$1(t1.renderObject._textPainter.get$preferredLineHeight()); t1 = -handleAnchor._dx; t2 = -handleAnchor._dy; t3 = t1 + handleSize._dx; t4 = t2 + handleSize._dy; handleRect = new P.Rect(t1, t2, t3, t4); interactiveRect = handleRect.expandToInclude$1(P.Rect$fromCircle(handleRect.get$center(), 24)); t5 = interactiveRect.left; t6 = interactiveRect.right - t5; t1 = Math.max((t6 - (t3 - t1)) / 2, 0); t3 = interactiveRect.top; t7 = interactiveRect.bottom - t3; t2 = Math.max((t7 - (t4 - t2)) / 2, 0); t4 = _this.get$_controller(); t4.toString; t8 = _this._widget; t9 = t8.dragStartBehavior; t10 = t8.selectionControls; t10.toString; return T.CompositedTransformFollower$(K.FadeTransition$(false, M.Container$(C.Alignment_m1_m1, D.GestureDetector$(C.HitTestBehavior_2, new T.Padding(new V.EdgeInsets(t1, t2, t1, t2), t10.buildHandle$3(context, type, t8.renderObject._textPainter.get$preferredLineHeight()), _null), t9, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.get$_handleDragStart(), _this.get$_handleDragUpdate(), _null, _null, _null, _this.get$_handleTap(), _null, _null, _null, _null, _null, _null), C.Clip_0, _null, _null, _null, _null, t7, _null, _null, _null, _null, _null, t6), t4), layerLink, new P.Offset(t5, t3), false, C.Alignment_m1_m1); }, _chooseType$3: function(textDirection, ltrType, rtlType) { var t1 = this._widget.selection; if (t1.start == t1.end) return C.TextSelectionHandleType_2; switch (textDirection) { case C.TextDirection_1: return ltrType; case C.TextDirection_0: return rtlType; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } } }; F.TextSelectionGestureDetectorBuilder.prototype = { get$_lastSecondaryTapWasOnSelection: function() { var t3, t4, textPosition, t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3 = type$.RenderEditable; t3._as(t2); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t3._as(t2); t4 = t1.get$editableTextKey().get$currentState(); t4.toString; t4 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t4._editableKey).get$renderObject(); t4.toString; t4 = t3._as(t4)._lastSecondaryTapDownPosition; t4.toString; textPosition = t2.getPositionForPoint$1(t4); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; t4 = textPosition.offset; if (t3._as(t2)._selection.baseOffset <= t4) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; t4 = t3._as(t1)._selection.extentOffset >= t4; t1 = t4; } else t1 = false; return t1; }, onTapDown$1: function(details) { var kind, t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1)._lastTapDownPosition = details.globalPosition; kind = details.kind; this._shouldShowSelectionToolbar = kind == null || kind === C.PointerDeviceKind_0 || kind === C.PointerDeviceKind_2; }, onForcePressStart$1: function(details) { var t1; this._shouldShowSelectionToolbar = true; t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordsInRange$2$cause$from(C.SelectionChangedCause_3, details.globalPosition); }, onForcePressEnd$1: function(details) { var t1 = this.delegate, t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2).selectWordsInRange$2$cause$from(C.SelectionChangedCause_3, details.globalPosition); if (this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onSingleTapUp$1: function(details) { var t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectWordEdge$1$cause(C.SelectionChangedCause_0); }, onSingleTapCancel$0: function() { }, onSingleLongTapStart$1: function(details) { var t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(C.SelectionChangedCause_2, details.globalPosition); }, onSingleLongTapMoveUpdate$1: function(details) { var t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(C.SelectionChangedCause_2, details.globalPosition); }, onSingleLongTapEnd$1: function(details) { var t1; if (this._shouldShowSelectionToolbar) { t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onSecondaryTap$0: function() { var t2, t3, t1 = this.delegate; t1.get$selectionEnabled(); if (!this.get$_lastSecondaryTapWasOnSelection()) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2); t3 = t2._lastTapDownPosition; t3.toString; t2.selectWordsInRange$2$cause$from(C.SelectionChangedCause_0, t3); } if (this._shouldShowSelectionToolbar) { t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2.hideToolbar$0(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onSecondaryTapDown$1: function(details) { var t1 = this.delegate.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1); t1._lastSecondaryTapDownPosition = t1._lastTapDownPosition = details.globalPosition; this._shouldShowSelectionToolbar = true; }, onDoubleTapDown$1: function(details) { var t2, t3, t1 = this.delegate; t1.get$selectionEnabled(); t2 = t1.get$editableTextKey().get$currentState(); t2.toString; t2 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2._editableKey).get$renderObject(); t2.toString; type$.RenderEditable._as(t2); t3 = t2._lastTapDownPosition; t3.toString; t2.selectWordsInRange$2$cause$from(C.SelectionChangedCause_0, t3); if (this._shouldShowSelectionToolbar) { t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1.showToolbar$0(); } }, onDragSelectionStart$1: function(details) { var kind, t1 = this.delegate; t1.get$selectionEnabled(); kind = details.kind; this._shouldShowSelectionToolbar = kind == null || kind === C.PointerDeviceKind_0 || kind === C.PointerDeviceKind_2; t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$2$cause$from(C.SelectionChangedCause_6, details.globalPosition); }, onDragSelectionUpdate$2: function(startDetails, updateDetails) { var t1 = this.delegate; t1.get$selectionEnabled(); t1 = t1.get$editableTextKey().get$currentState(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1._editableKey).get$renderObject(); t1.toString; type$.RenderEditable._as(t1).selectPositionAt$3$cause$from$to(C.SelectionChangedCause_6, startDetails.globalPosition, updateDetails.globalPosition); }, onDragSelectionEnd$1: function(details) { }, buildGestureDetector$2$behavior$child: function(behavior, child) { var _this = this, t1 = _this.delegate, t2 = t1.get$forcePressEnabled() ? _this.get$onForcePressStart() : null; t1 = t1.get$forcePressEnabled() ? _this.get$onForcePressEnd() : null; return new F.TextSelectionGestureDetector(_this.get$onTapDown(), t2, t1, _this.get$onSecondaryTap(), _this.get$onSecondaryTapDown(), _this.get$onSingleTapUp(), _this.get$onSingleTapCancel(), _this.get$onSingleLongTapStart(), _this.get$onSingleLongTapMoveUpdate(), _this.get$onSingleLongTapEnd(), _this.get$onDoubleTapDown(), _this.get$onDragSelectionStart(), _this.get$onDragSelectionUpdate(), _this.get$onDragSelectionEnd(), behavior, child, null); } }; F.TextSelectionGestureDetector.prototype = { createState$0: function() { return new F._TextSelectionGestureDetectorState(C._StateLifecycle_0); } }; F._TextSelectionGestureDetectorState.prototype = { dispose$0: function(_) { var t1 = this._text_selection$_doubleTapTimer; if (t1 != null) t1.cancel$0(0); t1 = this._dragUpdateThrottleTimer; if (t1 != null) t1.cancel$0(0); this.super$State$dispose(0); }, _text_selection$_handleTapDown$1: function(details) { var _this = this; _this._widget.onTapDown.call$1(details); if (_this._text_selection$_doubleTapTimer != null && _this._isWithinDoubleTapTolerance$1(details.globalPosition)) { _this._widget.onDoubleTapDown.call$1(details); _this._text_selection$_doubleTapTimer.cancel$0(0); _this._lastTapOffset = _this._text_selection$_doubleTapTimer = null; _this._isDoubleTap = true; } }, _handleTapUp$1: function(details) { var _this = this; if (!_this._isDoubleTap) { _this._widget.onSingleTapUp.call$1(details); _this._lastTapOffset = details.globalPosition; _this._text_selection$_doubleTapTimer = P.Timer_Timer(C.Duration_300000, _this.get$_doubleTapTimeout()); } _this._isDoubleTap = false; }, _text_selection$_handleTapCancel$0: function() { this._widget.onSingleTapCancel.call$0(); }, _handleDragStart$1: function(details) { this._lastDragStartDetails = details; this._widget.onDragSelectionStart.call$1(details); }, _handleDragUpdate$1: function(details) { var _this = this; _this._lastDragUpdateDetails = details; if (_this._dragUpdateThrottleTimer == null) _this._dragUpdateThrottleTimer = P.Timer_Timer(C.Duration_50000, _this.get$_handleDragUpdateThrottled()); }, _handleDragUpdateThrottled$0: function() { var t3, _this = this, t1 = _this._widget.onDragSelectionUpdate, t2 = _this._lastDragStartDetails; t2.toString; t3 = _this._lastDragUpdateDetails; t3.toString; t1.call$2(t2, t3); _this._lastDragUpdateDetails = _this._dragUpdateThrottleTimer = null; }, _handleDragEnd$1: function(details) { var _this = this, t1 = _this._dragUpdateThrottleTimer; if (t1 != null) { t1.cancel$0(0); _this._handleDragUpdateThrottled$0(); } _this._widget.onDragSelectionEnd.call$1(details); _this._lastDragUpdateDetails = _this._lastDragStartDetails = _this._dragUpdateThrottleTimer = null; }, _forcePressStarted$1: function(details) { var t1 = this._text_selection$_doubleTapTimer; if (t1 != null) t1.cancel$0(0); this._text_selection$_doubleTapTimer = null; t1 = this._widget.onForcePressStart; if (t1 != null) t1.call$1(details); }, _forcePressEnded$1: function(details) { var t1 = this._widget.onForcePressEnd; if (t1 != null) t1.call$1(details); }, _handleLongPressStart$1: function(details) { var t1; if (!this._isDoubleTap) { this._widget.toString; t1 = true; } else t1 = false; if (t1) this._widget.onSingleLongTapStart.call$1(details); }, _handleLongPressMoveUpdate$1: function(details) { var t1; if (!this._isDoubleTap) { this._widget.toString; t1 = true; } else t1 = false; if (t1) this._widget.onSingleLongTapMoveUpdate.call$1(details); }, _handleLongPressEnd$1: function(details) { var t1, _this = this; if (!_this._isDoubleTap) { _this._widget.toString; t1 = true; } else t1 = false; if (t1) _this._widget.onSingleLongTapEnd.call$1(details); _this._isDoubleTap = false; }, _doubleTapTimeout$0: function() { this._lastTapOffset = this._text_selection$_doubleTapTimer = null; }, _isWithinDoubleTapTolerance$1: function(secondTapOffset) { var t1 = this._lastTapOffset; if (t1 == null) return false; return secondTapOffset.$sub(0, t1).get$distance() <= 100; }, build$1: function(_, context) { var t1, t2, _this = this, gestures = P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); gestures.$indexSet(0, C.Type_D34, new D.GestureRecognizerFactoryWithHandlers(new F._TextSelectionGestureDetectorState_build_closure(_this), new F._TextSelectionGestureDetectorState_build_closure0(_this), type$.GestureRecognizerFactoryWithHandlers__TransparentTapGestureRecognizer)); _this._widget.toString; gestures.$indexSet(0, C.Type_LongPressGestureRecognizer_46y, new D.GestureRecognizerFactoryWithHandlers(new F._TextSelectionGestureDetectorState_build_closure1(_this), new F._TextSelectionGestureDetectorState_build_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer)); _this._widget.toString; gestures.$indexSet(0, C.Type_Vq1, new D.GestureRecognizerFactoryWithHandlers(new F._TextSelectionGestureDetectorState_build_closure3(_this), new F._TextSelectionGestureDetectorState_build_closure4(_this), type$.GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer)); t1 = _this._widget; if (t1.onForcePressStart != null || t1.onForcePressEnd != null) gestures.$indexSet(0, C.Type_ForcePressGestureRecognizer_TN2, new D.GestureRecognizerFactoryWithHandlers(new F._TextSelectionGestureDetectorState_build_closure5(_this), new F._TextSelectionGestureDetectorState_build_closure6(_this), type$.GestureRecognizerFactoryWithHandlers_ForcePressGestureRecognizer)); t1 = _this._widget; t2 = t1.behavior; return new D.RawGestureDetector(t1.child, gestures, t2, true, null, null); } }; F._TextSelectionGestureDetectorState_build_closure.prototype = { call$0: function() { var t1 = type$.int; return new F._TransparentTapGestureRecognizer(C.Duration_100000, 18, C.GestureRecognizerState_0, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), P.HashSet_HashSet(t1), this.$this, null, P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1735 }; F._TextSelectionGestureDetectorState_build_closure0.prototype = { call$1: function(instance) { var t1 = this.$this, t2 = t1._widget; instance.onSecondaryTap = t2.onSecondaryTap; instance.onSecondaryTapDown = t2.onSecondaryTapDown; instance.onTapDown = t1.get$_text_selection$_handleTapDown(); instance.onTapUp = t1.get$_handleTapUp(); instance.onTapCancel = t1.get$_text_selection$_handleTapCancel(); }, $signature: 1716 }; F._TextSelectionGestureDetectorState_build_closure1.prototype = { call$0: function() { return T.LongPressGestureRecognizer$(this.$this, null, C.PointerDeviceKind_0, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 473 }; F._TextSelectionGestureDetectorState_build_closure2.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onLongPressStart = t1.get$_handleLongPressStart(); instance.onLongPressMoveUpdate = t1.get$_handleLongPressMoveUpdate(); instance.onLongPressEnd = t1.get$_handleLongPressEnd(); }, $signature: 474 }; F._TextSelectionGestureDetectorState_build_closure3.prototype = { call$0: function() { return O.HorizontalDragGestureRecognizer$(this.$this, C.PointerDeviceKind_1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 452 }; F._TextSelectionGestureDetectorState_build_closure4.prototype = { call$1: function(instance) { var t1; instance.dragStartBehavior = C.DragStartBehavior_0; t1 = this.$this; instance.onStart = t1.get$_handleDragStart(); instance.onUpdate = t1.get$_handleDragUpdate(); instance.onEnd = t1.get$_handleDragEnd(); }, $signature: 448 }; F._TextSelectionGestureDetectorState_build_closure5.prototype = { call$0: function() { return K.ForcePressGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1680 }; F._TextSelectionGestureDetectorState_build_closure6.prototype = { call$1: function(instance) { var t1 = this.$this, t2 = t1._widget; instance.onStart = t2.onForcePressStart != null ? t1.get$_forcePressStarted() : null; instance.onEnd = t2.onForcePressEnd != null ? t1.get$_forcePressEnded() : null; }, $signature: 1679 }; F._TransparentTapGestureRecognizer.prototype = { rejectGesture$1: function(pointer) { if (this.state === C.GestureRecognizerState_0) this.acceptGesture$1(pointer); else this.super$BaseTapGestureRecognizer$rejectGesture(pointer); } }; F.__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; U.TickerMode.prototype = { build$1: function(_, context) { var t1 = this.enabled && U.TickerMode_of(context); return new U._EffectiveTickerMode(t1, this.child, null); } }; U._EffectiveTickerMode.prototype = { updateShouldNotify$1: function(oldWidget) { return this.enabled !== oldWidget.enabled; } }; U.SingleTickerProviderStateMixin.prototype = { createTicker$1: function(onTick) { return this.SingleTickerProviderStateMixin__ticker = new M.Ticker(onTick, null); } }; U.TickerProviderStateMixin.prototype = { createTicker$1: function(onTick) { var result, _this = this; if (_this.TickerProviderStateMixin__tickers == null) _this.TickerProviderStateMixin__tickers = P.LinkedHashSet_LinkedHashSet$_empty(type$._WidgetTicker); result = new U._WidgetTicker(_this, onTick, "created by " + _this.toString$0(0)); _this.TickerProviderStateMixin__tickers.add$1(0, result); return result; } }; U._WidgetTicker.prototype = { dispose$0: function(_) { this._creator.TickerProviderStateMixin__tickers.remove$1(0, this); this.super$Ticker$dispose(0); } }; U.Title.prototype = { build$1: function(_, context) { var t1 = this.color; X.SystemChrome_setApplicationSwitcherDescription(new X.ApplicationSwitcherDescription(this.title, t1.get$value(t1))); return this.child; } }; K.AnimatedWidget.prototype = { createState$0: function() { return new K._AnimatedState(C._StateLifecycle_0); } }; K._AnimatedState.prototype = { initState$0: function() { this.super$State$initState(); this._widget.listenable.addListener$1(0, this.get$_handleChange()); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.listenable; t2 = oldWidget.listenable; if (!J.$eq$(t1, t2)) { t1 = _this.get$_handleChange(); t2.removeListener$1(0, t1); _this._widget.listenable.addListener$1(0, t1); } }, dispose$0: function(_) { this._widget.listenable.removeListener$1(0, this.get$_handleChange()); this.super$State$dispose(0); }, _handleChange$0: function() { this.setState$1(new K._AnimatedState__handleChange_closure()); }, build$1: function(_, context) { return this._widget.build$1(0, context); } }; K._AnimatedState__handleChange_closure.prototype = { call$0: function() { }, $signature: 0 }; K.SlideTransition.prototype = { build$1: function(_, context) { var _this = this, t1 = type$.Animation_Offset._as(_this.listenable), offset = t1.get$value(t1); if (_this.textDirection === C.TextDirection_0) offset = new P.Offset(-offset._dx, offset._dy); return T.FractionalTranslation$(_this.child, _this.transformHitTests, offset); } }; K.ScaleTransition.prototype = { build$1: function(_, context) { var t1 = type$.Animation_double._as(this.listenable), scaleValue = t1.get$value(t1), transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); transform.scale$3(0, scaleValue, scaleValue, 1); return T.Transform$(this.alignment, this.child, transform, true); } }; K.RotationTransition.prototype = { build$1: function(_, context) { var t1 = type$.Animation_double._as(this.listenable); return T.Transform$(this.alignment, this.child, E.Matrix4_Matrix4$rotationZ(t1.get$value(t1) * 3.141592653589793 * 2), true); } }; K.SizeTransition.prototype = { build$1: function(_, context) { var _this = this, t1 = _this.axis, t2 = t1 === C.Axis_1, t3 = _this.axisAlignment, alignment = t2 ? new K.AlignmentDirectional(-1, t3) : new K.AlignmentDirectional(t3, -1); if (t2) { t2 = type$.Animation_double._as(_this.listenable); t2 = Math.max(H.checkNum(t2.get$value(t2)), 0); } else t2 = null; if (t1 === C.Axis_0) { t1 = type$.Animation_double._as(_this.listenable); t1 = Math.max(H.checkNum(t1.get$value(t1)), 0); } else t1 = null; return T.ClipRect$(new T.Align(alignment, t1, t2, _this.child, null)); } }; K.FadeTransition.prototype = { createRenderObject$1: function(context) { var t2, _null = null, t1 = new E.RenderAnimatedOpacity(_null, _null, _null, _null, _null); t1.get$isRepaintBoundary(); t2 = t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = t2; t1.set$child(_null); t1.set$opacity(0, this.opacity); t1.set$alwaysIncludeSemantics(this.alwaysIncludeSemantics); return t1; }, updateRenderObject$2: function(context, renderObject) { renderObject.set$opacity(0, this.opacity); renderObject.set$alwaysIncludeSemantics(this.alwaysIncludeSemantics); } }; K.DecoratedBoxTransition.prototype = { build$1: function(_, context) { var t1 = this.decoration, t2 = t1.parent; return M.DecoratedBox$(this.child, t1._evaluatable.transform$1(0, t2.get$value(t2)), C.DecorationPosition_0); } }; K.AnimatedBuilder.prototype = { build$1: function(_, context) { return this.builder.call$2(context, this.child); } }; N.ValueListenableBuilder.prototype = { createState$0: function() { return new N._ValueListenableBuilderState(C._StateLifecycle_0, this.$ti._eval$1("_ValueListenableBuilderState<1>")); } }; N._ValueListenableBuilderState.prototype = { get$value: function(_) { var t1 = this.___ValueListenableBuilderState_value; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("value")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.valueListenable; _this.___ValueListenableBuilderState_value = t1._change_notifier$_value; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_valueChanged()), false); }, didUpdateWidget$1: function(oldWidget) { var t2, _this = this, t1 = oldWidget.valueListenable; if (t1 !== _this._widget.valueListenable) { t2 = _this.get$_valueChanged(); t1.removeListener$1(0, t2); t1 = _this._widget.valueListenable; _this.___ValueListenableBuilderState_value = t1._change_notifier$_value; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); } _this.super$State$didUpdateWidget(oldWidget); }, dispose$0: function(_) { this._widget.valueListenable.removeListener$1(0, this.get$_valueChanged()); this.super$State$dispose(0); }, _valueChanged$0: function() { this.setState$1(new N._ValueListenableBuilderState__valueChanged_closure(this)); }, build$1: function(_, context) { var t2, _this = this, t1 = _this._widget; t1.toString; t2 = _this.get$value(_this); _this._widget.toString; return t1.builder.call$3(context, t2, null); } }; N._ValueListenableBuilderState__valueChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1.___ValueListenableBuilderState_value = t1._widget.valueListenable._change_notifier$_value; }, $signature: 0 }; Q.Viewport.prototype = { createRenderObject$1: function(context) { var _this = this, t1 = _this.axisDirection, t2 = Q.Viewport_getDefaultCrossAxisDirection(context, t1), t3 = _this.cacheExtent; if (t3 == null) t3 = 250; t3 = new Q.RenderViewport(_this.anchor, t1, t2, _this.offset, t3, _this.cacheExtentStyle, _this.clipBehavior, 0, null, null); t3.get$isRepaintBoundary(); t3.__RenderObject__needsCompositing = true; t3.addAll$1(0, null); t1 = t3.ContainerRenderObjectMixin__firstChild; if (t1 != null) t3._viewport$_center = t1; return t3; }, updateRenderObject$2: function(context, renderObject) { var _this = this, t1 = _this.axisDirection; renderObject.set$axisDirection(t1); t1 = Q.Viewport_getDefaultCrossAxisDirection(context, t1); renderObject.set$crossAxisDirection(t1); renderObject.set$anchor(_this.anchor); renderObject.set$offset(0, _this.offset); renderObject.set$cacheExtent(_this.cacheExtent); renderObject.set$cacheExtentStyle(_this.cacheExtentStyle); renderObject.set$clipBehavior(_this.clipBehavior); }, createElement$0: function(_) { var t1 = type$.Element_2, t2 = P.HashSet_HashSet(t1), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new Q._ViewportElement(t2, t3, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); } }; Q._ViewportElement.prototype = { get$widget: function() { return type$.Viewport._as(N.MultiChildRenderObjectElement.prototype.get$widget.call(this)); }, get$renderObject: function() { return type$.RenderViewport._as(N.MultiChildRenderObjectElement.prototype.get$renderObject.call(this)); }, mount$2: function($parent, newSlot) { this.super$MultiChildRenderObjectElement$mount($parent, newSlot); this._updateCenter$0(); }, update$1: function(_, newWidget) { this.super$MultiChildRenderObjectElement$update(0, newWidget); this._updateCenter$0(); }, _updateCenter$0: function() { var t1, t2, _this = this; type$.Viewport._as(N.MultiChildRenderObjectElement.prototype.get$widget.call(_this)).toString; t1 = _this.get$children(_this); t2 = type$.RenderViewport; if (!t1.get$isEmpty(t1)) { t1 = t2._as(N.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)); t2 = _this.get$children(_this); t1.set$center(type$.nullable_RenderSliver._as(t2.get$first(t2).get$renderObject())); } else t2._as(N.MultiChildRenderObjectElement.prototype.get$renderObject.call(_this)).set$center(null); } }; Q.ShrinkWrappingViewport.prototype = { createRenderObject$1: function(context) { var t1 = this.axisDirection, t2 = Q.Viewport_getDefaultCrossAxisDirection(context, t1); t1 = new Q.RenderShrinkWrappingViewport(t1, t2, this.offset, 250, C.CacheExtentStyle_0, this.clipBehavior, 0, null, null); t1.get$isRepaintBoundary(); t1.__RenderObject__needsCompositing = true; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.axisDirection; renderObject.set$axisDirection(t1); t1 = Q.Viewport_getDefaultCrossAxisDirection(context, t1); renderObject.set$crossAxisDirection(t1); renderObject.set$offset(0, this.offset); renderObject.set$clipBehavior(this.clipBehavior); } }; L.Visibility.prototype = { build$1: function(_, context) { return this.visible ? this.child : C.SizedBox_0_0_null_null; } }; N._WidgetInspectorService.prototype = {}; N.WidgetInspectorService.prototype = { isWidgetCreationTracked$0: function() { var t1 = this.WidgetInspectorService__widgetCreationTracked; return t1 == null ? this.WidgetInspectorService__widgetCreationTracked = false : t1; } }; N._ElementLocationStatsTracker.prototype = { add$1: function(_, element) { element.get$widget(); return; } }; N.InspectorSelection.prototype = {}; N._describeRelevantUserCode_isOverflowError.prototype = { call$0: function() { var t2, summary, t1 = this.errorSummary; if (t1 != null) { t2 = Y.DiagnosticsProperty.prototype.get$value.call(t1, t1); t2.toString; t2 = J.get$isNotEmpty$asx(t2); } else t2 = false; if (t2) { t1 = Y.DiagnosticsProperty.prototype.get$value.call(t1, t1); t1.toString; summary = J.get$first$ax(t1); if (typeof summary == "string" && C.JSString_methods.startsWith$1(summary, "A RenderFlex overflowed by")) return true; } return false; }, $signature: 188 }; N._describeRelevantUserCode_processElement.prototype = { call$1: function(target) { return true; }, $signature: 119 }; F.WillPopScope.prototype = { createState$0: function() { return new F._WillPopScopeState(C._StateLifecycle_0); } }; F._WillPopScopeState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._widget.onWillPop; if (t1 != null) { t2 = _this._route; if (t2 != null) C.JSArray_methods.remove$1(t2._willPopCallbacks, t1); } t1 = _this._framework$_element; t1.toString; t1 = _this._route = T.ModalRoute_of(t1, type$.nullable_Object); t2 = _this._widget.onWillPop; if (t2 != null) if (t1 != null) t1._willPopCallbacks.push(t2); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget.onWillPop; t2 = oldWidget.onWillPop; if (!J.$eq$(t1, t2) && _this._route != null) { if (t2 != null) C.JSArray_methods.remove$1(_this._route._willPopCallbacks, t2); t1 = _this._widget.onWillPop; if (t1 != null) _this._route._willPopCallbacks.push(t1); } }, dispose$0: function(_) { var t2, t1 = this._widget.onWillPop; if (t1 != null) { t2 = this._route; if (t2 != null) C.JSArray_methods.remove$1(t2._willPopCallbacks, t1); } this.super$State$dispose(0); }, build$1: function(_, context) { return this._widget.child; } }; Y.CacheManager.prototype = { CacheManager$1: function(config) { var t1 = P.ListQueue$(null, type$.QueueItem); if (this.__CacheManager__webHelper === $) this.__CacheManager__webHelper = new Q.WebHelper(this._cache_manager$_store, config.fileService, P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BehaviorSubject_FileResponse), t1); else H.throwExpression(H.LateError$fieldAI("_webHelper")); }, _pushFileToStream$5: function(streamController, url, key, headers, withProgress) { return this._pushFileToStream$body$CacheManager(streamController, url, key, headers, true); }, _pushFileToStream$body$CacheManager: function(streamController, url, key, headers, withProgress) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, cacheFile, e, response, e0, exception, t1, t2, subject, t3, t4, lastEvent, $async$exception, $async$exception1; var $async$_pushFileToStream$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start key = key; withProgress = withProgress; if (key == null) key = url; cacheFile = null; $async$handler = 3; $async$goto = 6; return P._asyncAwait($async$self._cache_manager$_store.getFile$2$ignoreMemCache(0, key, false), $async$_pushFileToStream$5); case 6: // returning from await. cacheFile = $async$result; if (cacheFile != null) { streamController.add$1(0, cacheFile); withProgress = false; } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = H.unwrapException($async$exception); P.print("CacheManager: Failed to load cached file for " + H.S(url) + " with error:\n" + H.S(e)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (cacheFile != null) { t1 = cacheFile.validTill; t2 = Date.now(); t2 = t1._value < t2; t1 = t2; } else t1 = true; $async$goto = t1 ? 7 : 8; break; case 7: // then $async$handler = 10; t1 = $async$self.__CacheManager__webHelper; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_webHelper")); key = key; t1.toString; if (key == null) key = url; t2 = t1._memCache; subject = t2.$index(0, key); if (subject == null || false) { subject = U.BehaviorSubject_BehaviorSubject(null, null, false, type$.FileResponse); t2.$indexSet(0, key, subject); t1._downloadOrAddToQueue$3(url, key, headers); } t1 = new P._StreamIterator(H.checkNotNullable(subject, "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 13; t2 = H._instanceType(streamController)._eval$1("_DelayedData<1>"); case 16: // for condition $async$goto = 18; return P._asyncAwait(t1.moveNext$0(), $async$_pushFileToStream$5); case 18: // returning from await. if (!$async$result) { // goto after for $async$goto = 17; break; } response = t1.get$current(t1); if (response instanceof D.DownloadProgress && withProgress) { t3 = response; t4 = streamController._state; if (t4 >= 4) H.throwExpression(streamController._badEventState$0()); if ((t4 & 1) !== 0) streamController._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = streamController._ensurePendingEvents$0(); t3 = new P._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } if (response instanceof R.FileInfo) { t3 = response; t4 = streamController._state; if (t4 >= 4) H.throwExpression(streamController._badEventState$0()); if ((t4 & 1) !== 0) streamController._sendData$1(t3); else if ((t4 & 3) === 0) { t4 = streamController._ensurePendingEvents$0(); t3 = new P._DelayedData(t3, t2); lastEvent = t4.lastPendingEvent; if (lastEvent == null) t4.firstPendingEvent = t4.lastPendingEvent = t3; else { lastEvent.set$next(0, t3); t4.lastPendingEvent = t3; } } } // goto for condition $async$goto = 16; break; case 17: // after for $async$next.push(15); // goto finally $async$goto = 14; break; case 13: // uncaught $async$next = [10]; case 14: // finally $async$handler = 10; $async$goto = 19; return P._asyncAwait(t1.cancel$0(0), $async$_pushFileToStream$5); case 19: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 15: // after finally $async$handler = 1; // goto after finally $async$goto = 12; break; case 10: // catch $async$handler = 9; $async$exception1 = $async$currentError; e0 = H.unwrapException($async$exception1); if (cacheFile == null && (streamController._state & 1) !== 0) streamController.addError$1(e0); // goto after finally $async$goto = 12; break; case 9: // uncaught // goto rethrow $async$goto = 1; break; case 12: // after finally case 8: // join streamController.close$0(0); // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_pushFileToStream$5, $async$completer); }, dispose$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self._cache_manager$_config.repo.close$0(0), $async$dispose$0); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$dispose$0, $async$completer); } }; D.DefaultCacheManager.prototype = {}; D._DefaultCacheManager_CacheManager_ImageCacheManager.prototype = {}; V.ImageCacheManager.prototype = {}; D.CacheStore.prototype = { getFile$2$ignoreMemCache: function(_, key, ignoreMemCache) { return this.getFile$body$CacheStore(_, key, false); }, getFile$body$CacheStore: function(_, key, ignoreMemCache) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_FileInfo), $async$returnValue, $async$self = this, cacheObject, $async$temp1; var $async$getFile$2$ignoreMemCache = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.retrieveCacheData$2$ignoreMemCache(key, false), $async$getFile$2$ignoreMemCache); case 3: // returning from await. cacheObject = $async$result; if (cacheObject == null) { $async$returnValue = null; // goto return $async$goto = 1; break; } $async$temp1 = R; $async$goto = 4; return P._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$getFile$2$ignoreMemCache); case 4: // returning from await. $async$returnValue = new $async$temp1.FileInfo($async$result, cacheObject.validTill); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getFile$2$ignoreMemCache, $async$completer); }, putFile$1: function(cacheObject) { return this.putFile$body$CacheStore(cacheObject); }, putFile$body$CacheStore: function(cacheObject) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$putFile$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._cache_store$_memCache.$indexSet(0, cacheObject.key, cacheObject); $async$goto = 2; return P._asyncAwait($async$self._updateCacheDataInDatabase$1(cacheObject), $async$putFile$1); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$putFile$1, $async$completer); }, retrieveCacheData$2$ignoreMemCache: function(key, ignoreMemCache) { return this.retrieveCacheData$body$CacheStore(key, false); }, retrieveCacheData$1: function(key) { return this.retrieveCacheData$2$ignoreMemCache(key, false); }, retrieveCacheData$body$CacheStore: function(key, ignoreMemCache) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_CacheObject), $async$returnValue, $async$self = this, t1, t2; var $async$retrieveCacheData$2$ignoreMemCache = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._cache_store$_memCache; t2 = t1.containsKey$1(0, key); $async$goto = t2 ? 3 : 4; break; case 3: // then $async$goto = 5; return P._asyncAwait($async$self._fileExists$1(t1.$index(0, key)), $async$retrieveCacheData$2$ignoreMemCache); case 5: // returning from await. if ($async$result) { $async$returnValue = t1.$index(0, key); // goto return $async$goto = 1; break; } case 4: // join t1 = $async$self._futureCache; if (!t1.containsKey$1(0, key)) { t2 = new P._Future($.Zone__current, type$._Future_nullable_CacheObject); $async$self._getCacheDataFromDatabase$1(key).then$1$1(0, new D.CacheStore_retrieveCacheData_closure($async$self, key, new P._AsyncCompleter(t2, type$._AsyncCompleter_nullable_CacheObject)), type$.void); t1.$indexSet(0, key, t2); } $async$returnValue = t1.$index(0, key); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$retrieveCacheData$2$ignoreMemCache, $async$completer); }, _fileExists$1: function(cacheObject) { return this._fileExists$body$CacheStore(cacheObject); }, _fileExists$body$CacheStore: function(cacheObject) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this; var $async$_fileExists$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (cacheObject == null) { $async$returnValue = false; // goto return $async$goto = 1; break; } $async$goto = 3; return P._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_fileExists$1); case 3: // returning from await. $async$returnValue = $async$result.exists$0(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_fileExists$1, $async$completer); }, _getCacheDataFromDatabase$1: function(key) { return this._getCacheDataFromDatabase$body$CacheStore(key); }, _getCacheDataFromDatabase$body$CacheStore: function(key) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_CacheObject), $async$returnValue, $async$self = this, data; var $async$_getCacheDataFromDatabase$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self._cacheInfoRepository, $async$_getCacheDataFromDatabase$1); case 3: // returning from await. $async$result.toString; $async$goto = 4; return P._asyncAwait(P.Future_Future$value(null, type$.nullable_CacheObject), $async$_getCacheDataFromDatabase$1); case 4: // returning from await. data = $async$result; $async$goto = 5; return P._asyncAwait($async$self._fileExists$1(data), $async$_getCacheDataFromDatabase$1); case 5: // returning from await. if ($async$result) { data.toString; $async$self._updateCacheDataInDatabase$1(data); } $async$self._scheduleCleanup$0(); $async$returnValue = data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_getCacheDataFromDatabase$1, $async$completer); }, _scheduleCleanup$0: function() { if (this._scheduledCleanup != null) return; this._scheduledCleanup = P.Timer_Timer(C.Duration_10000000, new D.CacheStore__scheduleCleanup_closure(this)); }, _updateCacheDataInDatabase$1: function(cacheObject) { return this._updateCacheDataInDatabase$body$CacheStore(cacheObject); }, _updateCacheDataInDatabase$body$CacheStore: function(cacheObject) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this; var $async$_updateCacheDataInDatabase$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self._cacheInfoRepository, $async$_updateCacheDataInDatabase$1); case 3: // returning from await. $async$result.toString; $async$returnValue = P.Future_Future$value(null, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_updateCacheDataInDatabase$1, $async$completer); }, _cleanupCache$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3, toRemove, $async$temp1; var $async$_cleanupCache$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start toRemove = H.setRuntimeTypeInfo([], type$.JSArray_int); $async$goto = 2; return P._asyncAwait($async$self._cacheInfoRepository, $async$_cleanupCache$0); case 2: // returning from await. $async$result.toString; t1 = type$.JSArray_CacheObject; t2 = type$.List_CacheObject; $async$temp1 = J; $async$goto = 3; return P._asyncAwait(P.Future_Future$value(H.setRuntimeTypeInfo([], t1), t2), $async$_cleanupCache$0); case 3: // returning from await. t3 = $async$temp1.get$iterator$ax($async$result); case 4: // for condition if (!t3.moveNext$0()) { // goto after for $async$goto = 5; break; } $async$self._removeCachedFile$2(t3.get$current(t3), toRemove); // goto for condition $async$goto = 4; break; case 5: // after for $async$temp1 = J; $async$goto = 6; return P._asyncAwait(P.Future_Future$value(H.setRuntimeTypeInfo([], t1), t2), $async$_cleanupCache$0); case 6: // returning from await. t1 = $async$temp1.get$iterator$ax($async$result); case 7: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 8; break; } $async$self._removeCachedFile$2(t1.get$current(t1), toRemove); // goto for condition $async$goto = 7; break; case 8: // after for $async$goto = 9; return P._asyncAwait(P.Future_Future$value(toRemove.length, type$.int), $async$_cleanupCache$0); case 9: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_cleanupCache$0, $async$completer); }, _removeCachedFile$2: function(cacheObject, toRemove) { return this._removeCachedFile$body$CacheStore(cacheObject, toRemove); }, _removeCachedFile$body$CacheStore: function(cacheObject, toRemove) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t2, file, t1; var $async$_removeCachedFile$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = cacheObject.id; if (C.JSArray_methods.contains$1(toRemove, t1)) { // goto return $async$goto = 1; break; } t1.toString; toRemove.push(t1); t1 = $async$self._cache_store$_memCache; t2 = cacheObject.key; if (t1.containsKey$1(0, t2)) t1.remove$1(0, t2); t1 = $async$self._futureCache; if (t1.containsKey$1(0, t2)) t1.remove$1(0, t2); $async$goto = 3; return P._asyncAwait($async$self.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_removeCachedFile$2); case 3: // returning from await. file = $async$result; $async$goto = 6; return P._asyncAwait(file.exists$0(), $async$_removeCachedFile$2); case 6: // returning from await. $async$goto = $async$result ? 4 : 5; break; case 4: // then $async$goto = 7; return P._asyncAwait(file.delete$0(0), $async$_removeCachedFile$2); case 7: // returning from await. case 5: // join case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_removeCachedFile$2, $async$completer); }, dispose$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$dispose$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self._cacheInfoRepository, $async$dispose$0); case 3: // returning from await. $async$goto = 2; return P._asyncAwait($async$result.close$0(0), $async$dispose$0); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$dispose$0, $async$completer); } }; D.CacheStore_closure.prototype = { call$1: function(value) { return this.config.repo; }, $signature: 1639 }; D.CacheStore_retrieveCacheData_closure.prototype = { call$1: function(cacheObject) { return this.$call$body$CacheStore_retrieveCacheData_closure(cacheObject); }, $call$body$CacheStore_retrieveCacheData_closure: function(cacheObject) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1, t2, t3; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = $async$self.key; t3 = t1._cache_store$_memCache; if (cacheObject == null) t3.remove$1(0, t2); else t3.$indexSet(0, t2, cacheObject); $async$self.completer.complete$1(0, cacheObject); t1._futureCache.remove$1(0, t2); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 1572 }; D.CacheStore__scheduleCleanup_closure.prototype = { call$0: function() { var t1 = this.$this; t1._scheduledCleanup = null; t1._cleanupCache$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; R.Config.prototype = {}; D.DownloadProgress.prototype = {}; R.FileInfo.prototype = {}; V.FileResponse.prototype = {}; A.NonStoringObjectProvider.prototype = { close$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$close$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$close$0, $async$completer); }, open$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$open$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$open$0, $async$completer); }, $isCacheInfoRepository: 1 }; T.CacheObject.prototype = { copyWith$6$eTag$id$length$relativePath$url$validTill: function(eTag, id, $length, relativePath, url, validTill) { var _this = this, t1 = url == null ? _this.url : url, t2 = relativePath == null ? _this.relativePath : relativePath, t3 = validTill == null ? _this.validTill : validTill, t4 = eTag == null ? _this.eTag : eTag, t5 = $length == null ? _this.length : $length; return T.CacheObject$(t1, t4, _this.id, _this.key, t5, t2, _this.touched, t3); }, copyWith$1$url: function(url) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(null, null, null, null, url, null); }, copyWith$3$eTag$relativePath$validTill: function(eTag, relativePath, validTill) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(eTag, null, null, relativePath, null, validTill); }, copyWith$1$length: function($length) { return this.copyWith$6$eTag$id$length$relativePath$url$validTill(null, null, $length, null, null, null); }, get$id: function(receiver) { return this.id; }, get$length: function(receiver) { return this.length; } }; M.MemoryCacheSystem.prototype = { createFile$1: function(_, $name) { return this.createFile$body$MemoryCacheSystem(_, $name); }, createFile$body$MemoryCacheSystem: function(_, $name) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.File_2), $async$returnValue, $async$self = this, t1, t2, t3; var $async$createFile$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.directory, $async$createFile$1); case 3: // returning from await. t1 = $async$result; t2 = t1.get$fileSystem(); t3 = t1.get$fileSystem(); $async$returnValue = t2.file$1(0, t3.get$path(t3).join$2(0, J.get$path$x(t1), $name)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$createFile$1, $async$completer); } }; E.FileService.prototype = {}; E.HttpFileService.prototype = { $get$2$headers: function(_, url, headers) { return this.$get$body$HttpFileService(_, url, headers); }, $get$body$HttpFileService: function(_, url, headers) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.FileServiceResponse), $async$returnValue, $async$self = this, httpResponse, req; var $async$$get$2$headers = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start req = O.Request$("GET", P.Uri_parse(url, 0, null)); req.headers.addAll$1(0, headers); $async$goto = 3; return P._asyncAwait($async$self._httpClient.send$1(0, req), $async$$get$2$headers); case 3: // returning from await. httpResponse = $async$result; K.clock(); $async$returnValue = new E.HttpGetResponse(E.systemTime(), httpResponse); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$$get$2$headers, $async$completer); } }; E.HttpGetResponse.prototype = { get$statusCode: function(_) { return this._file_service$_response.statusCode; }, get$validTill: function() { var controlSettings, t1, ageDuration, _i, sanitizedSetting, validSeconds, controlHeader = this._file_service$_response.headers.$index(0, "cache-control"); if (controlHeader != null) { controlSettings = controlHeader.split(","); for (t1 = controlSettings.length, ageDuration = C.Duration_604800000000, _i = 0; _i < t1; ++_i) { sanitizedSetting = J.trim$0$s(controlSettings[_i]).toLowerCase(); if (sanitizedSetting === "no-cache") ageDuration = C.Duration_0; if (C.JSString_methods.startsWith$1(sanitizedSetting, "max-age=")) { validSeconds = H.Primitives_parseInt(sanitizedSetting.split("=")[1], null); if (validSeconds == null) validSeconds = 0; if (validSeconds > 0) ageDuration = new P.Duration(1000000 * validSeconds); } } } else ageDuration = C.Duration_604800000000; return this._receivedTime.add$1(0, ageDuration); }, $isFileServiceResponse: 1 }; B.QueueItem.prototype = {}; Q.WebHelper.prototype = { _downloadOrAddToQueue$3: function(url, key, authHeaders) { return this._downloadOrAddToQueue$body$WebHelper(url, key, authHeaders); }, _downloadOrAddToQueue$body$WebHelper: function(url, key, authHeaders) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, subject, result, e, stackTrace, t2, t3, t4, t5, exception, t1, $async$exception; var $async$_downloadOrAddToQueue$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.concurrentCalls; if (t1 >= 10) { $async$self._web_helper$_queue._add$1(0, new B.QueueItem(url, key, authHeaders)); // goto return $async$goto = 1; break; } $async$self.concurrentCalls = t1 + 1; t1 = $async$self._memCache; t2 = t1.$index(0, key); t2.toString; subject = t2; $async$handler = 4; t2 = new P._StreamIterator(H.checkNotNullable($async$self._updateFile$3$authHeaders(url, key, authHeaders), "stream", type$.Object), type$._StreamIterator_FileResponse); $async$handler = 7; case 10: // for condition $async$goto = 12; return P._asyncAwait(t2.moveNext$0(), $async$_downloadOrAddToQueue$3); case 12: // returning from await. if (!$async$result) { // goto after for $async$goto = 11; break; } result = t2.get$current(t2); t3 = subject; t4 = result; if (t3._isAddingStreamItems) H.throwExpression(P.StateError$(string$.You_ca)); t5 = t3._wrapper; t5.latestValue = new Q.ValueWrapper(t4, t5.$ti._eval$1("ValueWrapper<1>")); t5.latestErrorAndStackTrace = null; t3 = t3._subject$_controller; if (!t3.get$_mayAddEvent()) H.throwExpression(t3._addEventError$0()); t3._sendData$1(t4); // goto for condition $async$goto = 10; break; case 11: // after for $async$next.push(9); // goto finally $async$goto = 8; break; case 7: // uncaught $async$next = [4]; case 8: // finally $async$handler = 4; $async$goto = 13; return P._asyncAwait(t2.cancel$0(0), $async$_downloadOrAddToQueue$3); case 13: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 9: // after finally $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = H.unwrapException($async$exception); stackTrace = H.getTraceFromException($async$exception); subject.addError$2(e, stackTrace); $async$next.push(6); // goto finally $async$goto = 5; break; case 3: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; --$async$self.concurrentCalls; $async$goto = 14; return P._asyncAwait(J.close$0$x(subject), $async$_downloadOrAddToQueue$3); case 14: // returning from await. t1.remove$1(0, key); $async$self._checkQueue$0(); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_downloadOrAddToQueue$3, $async$completer); }, _checkQueue$0: function() { var next, t1 = this._web_helper$_queue; if (t1._head === t1._tail) return; next = t1.removeFirst$0(); this._downloadOrAddToQueue$3(next.url, next.key, next.headers); }, _updateFile$3$authHeaders: function(url, key, authHeaders) { return this._updateFile$body$WebHelper(url, key, authHeaders); }, _updateFile$body$WebHelper: function(url, key, authHeaders) { var $async$_updateFile$3$authHeaders = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncStarHelper($async$self._web_helper$_store.retrieveCacheData$1(key), $async$_updateFile$3$authHeaders, $async$controller); case 3: // returning from await. cacheObject = $async$result; if (cacheObject == null) { K.clock(); t1 = E.systemTime(); cacheObject = T.CacheObject$(url, null, null, key, null, C.C_Uuid.v1$0() + ".file", null, t1); } else cacheObject = cacheObject.copyWith$1$url(url); t1 = type$.String; headers = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); if (authHeaders != null) headers.addAll$1(0, authHeaders); $async$temp1 = cacheObject; $async$goto = 5; return P._asyncStarHelper($async$self.fileFetcher.$get$2$headers(0, cacheObject.url, headers), $async$_updateFile$3$authHeaders, $async$controller); case 5: // returning from await. $async$goto = 4; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldStar($async$self._manageResponse$2($async$temp1, $async$result)), $async$_updateFile$3$authHeaders, $async$controller); case 4: // after yield case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$_updateFile$3$authHeaders, type$.FileResponse), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, headers, cacheObject, $async$temp1; return P._streamOfController($async$controller); }, _manageResponse$2: function(cacheObject, response) { return this._manageResponse$body$WebHelper(cacheObject, response); }, _manageResponse$body$WebHelper: function(cacheObject, response) { var $async$_manageResponse$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; t1 = response._file_service$_response; t2 = t1.statusCode; hasNewFile = C.JSArray_methods.contains$1(C.List_200_202, t2); keepOldFile = C.JSArray_methods.contains$1(C.List_304, t2); if (!hasNewFile && !keepOldFile) { response.get$statusCode(response); throw H.wrapException(new Q.HttpExceptionWithStatus("Invalid statusCode: " + H.S(response.get$statusCode(response)), P.Uri_parse(cacheObject.url, 0, null))); } t3 = t1.headers; contentTypeHeader = t3.$index(0, "content-type"); if (contentTypeHeader != null) { result = new H._ContentType(); result._HeaderValue$2("", C.Map_empty7); result.__http$_parse$4(contentTypeHeader, ";", null, false); t4 = result.__http$_value; index = C.JSString_methods.indexOf$1(t4, "/"); if (index === -1 || index === t4.length - 1) t4 = result._primaryType = C.JSString_methods.trim$0(t4).toLowerCase(); else { t5 = result._primaryType = C.JSString_methods.trim$0(C.JSString_methods.substring$2(t4, 0, index)).toLowerCase(); result._subType = C.JSString_methods.trim$0(C.JSString_methods.substring$1(t4, index + 1)).toLowerCase(); t4 = t5; } fileExtension = C.Map_eyCh9.$index(0, t4 + "/" + result._subType); if (fileExtension == null) fileExtension = "." + result._subType; } else fileExtension = ""; filePath = cacheObject.relativePath; if (!C.JSArray_methods.contains$1(C.List_304, t2)) { if (!C.JSString_methods.endsWith$1(filePath, fileExtension)) $async$self._removeOldFile$1(filePath); filePath = C.C_Uuid.v1$0() + fileExtension; } t4 = response.get$validTill(); newCacheObject = _box_0.newCacheObject = cacheObject.copyWith$3$eTag$relativePath$validTill(t3.$index(0, "etag"), filePath, t4); $async$goto = C.JSArray_methods.contains$1(C.List_200_202, t2) ? 3 : 5; break; case 3: // then savedBytes = 0; receivedBytesResultController = P.StreamController_StreamController(null, null, null, null, false, type$.int); $async$self._saveFileAndPostUpdates$3(receivedBytesResultController, newCacheObject, response); t2 = new P._StreamIterator(H.checkNotNullable(new P._ControllerStream(receivedBytesResultController, H._instanceType(receivedBytesResultController)._eval$1("_ControllerStream<1>")), "stream", type$.Object), type$._StreamIterator_int); $async$handler = 6; t1 = t1.contentLength; case 9: // for condition $async$goto = 11; return P._asyncStarHelper(t2.moveNext$0(), $async$_manageResponse$2, $async$controller); case 11: // returning from await. if (!$async$result) { // goto after for $async$goto = 10; break; } progress = t2.get$current(t2); savedBytes = progress; $async$goto = 12; $async$nextWhenCanceled = [1, 7]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(new D.DownloadProgress(t1, progress)), $async$_manageResponse$2, $async$controller); case 12: // after yield // goto for condition $async$goto = 9; break; case 10: // after for $async$next.push(8); // goto finally $async$goto = 7; break; case 6: // uncaught $async$next = [2]; case 7: // finally $async$handler = 2; $async$goto = 13; return P._asyncStarHelper(t2.cancel$0(0), $async$_manageResponse$2, $async$controller); case 13: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 8: // after finally t1 = _box_0.newCacheObject = _box_0.newCacheObject.copyWith$1$length(savedBytes); // goto join $async$goto = 4; break; case 5: // else t1 = newCacheObject; case 4: // join t2 = $async$self._web_helper$_store; t2.putFile$1(t1).then$1$1(0, new Q.WebHelper__manageResponse_closure(_box_0, $async$self, cacheObject), type$.void); $async$temp1 = R; $async$goto = 15; return P._asyncStarHelper(t2.fileSystem.createFile$1(0, _box_0.newCacheObject.relativePath), $async$_manageResponse$2, $async$controller); case 15: // returning from await. $async$goto = 14; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(new $async$temp1.FileInfo($async$result, _box_0.newCacheObject.validTill)), $async$_manageResponse$2, $async$controller); case 14: // after yield case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$_manageResponse$2, type$.FileResponse), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, savedBytes, progress, t3, contentTypeHeader, result, t4, index, t5, fileExtension, filePath, newCacheObject, receivedBytesResultController, _box_0, t1, t2, hasNewFile, keepOldFile, $async$temp1; return P._streamOfController($async$controller); }, _saveFileAndPostUpdates$3: function(receivedBytesResultController, cacheObject, response) { return this._saveFileAndPostUpdates$body$WebHelper(receivedBytesResultController, cacheObject, response); }, _saveFileAndPostUpdates$body$WebHelper: function(receivedBytesResultController, cacheObject, response) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, sink, e, stacktrace, t2, exception, t1, file, $async$exception; var $async$_saveFileAndPostUpdates$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = {}; $async$goto = 2; return P._asyncAwait($async$self._web_helper$_store.fileSystem.createFile$1(0, cacheObject.relativePath), $async$_saveFileAndPostUpdates$3); case 2: // returning from await. file = $async$result; $async$handler = 4; t1.receivedBytes = 0; sink = file.openWrite$0(); t2 = response._file_service$_response.stream; $async$goto = 7; return P._asyncAwait(new P._MapStream(new Q.WebHelper__saveFileAndPostUpdates_closure(t1, receivedBytesResultController), t2, H._instanceType(t2)._eval$1("_MapStream>")).pipe$1(sink), $async$_saveFileAndPostUpdates$3); case 7: // returning from await. $async$handler = 1; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; e = H.unwrapException($async$exception); stacktrace = H.getTraceFromException($async$exception); receivedBytesResultController.addError$2(e, stacktrace); // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 1; break; case 6: // after finally $async$goto = 8; return P._asyncAwait(receivedBytesResultController.close$0(0), $async$_saveFileAndPostUpdates$3); case 8: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_saveFileAndPostUpdates$3, $async$completer); }, _removeOldFile$1: function(relativePath) { return this._removeOldFile$body$WebHelper(relativePath); }, _removeOldFile$body$WebHelper: function(relativePath) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, file; var $async$_removeOldFile$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self._web_helper$_store.fileSystem.createFile$1(0, relativePath), $async$_removeOldFile$1); case 2: // returning from await. file = $async$result; $async$goto = 5; return P._asyncAwait(file.exists$0(), $async$_removeOldFile$1); case 5: // returning from await. $async$goto = $async$result ? 3 : 4; break; case 3: // then $async$goto = 6; return P._asyncAwait(file.delete$0(0), $async$_removeOldFile$1); case 6: // returning from await. case 4: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_removeOldFile$1, $async$completer); } }; Q.WebHelper__manageResponse_closure.prototype = { call$1: function(_) { var t1 = this.oldCacheObject.relativePath; if (this._box_0.newCacheObject.relativePath !== t1) this.$this._removeOldFile$1(t1); }, $signature: 83 }; Q.WebHelper__saveFileAndPostUpdates_closure.prototype = { call$1: function(s) { var t1 = this._box_0, receivedBytes = t1.receivedBytes + J.get$length$asx(s); t1.receivedBytes = receivedBytes; this.receivedBytesResultController.add$1(0, receivedBytes); return s; }, $signature: 1561 }; Q.HttpExceptionWithStatus.prototype = {}; B.BlockPicker.prototype = { createState$0: function() { return new B._BlockPickerState(C._StateLifecycle_0); }, onColorChanged$1: function(arg0) { return this.onColorChanged.call$1(arg0); }, layoutBuilder$3: function(arg0, arg1, arg2) { return B.block_picker_BlockPicker_defaultLayoutBuilder$closure().call$3(arg0, arg1, arg2); }, itemBuilder$3: function(arg0, arg1, arg2) { return B.block_picker_BlockPicker_defaultItemBuilder$closure().call$3(arg0, arg1, arg2); } }; B.BlockPicker_defaultLayoutBuilder_closure.prototype = { call$1: function(color) { return this.child.call$1(color); }, $signature: 1560 }; B._BlockPickerState.prototype = { initState$0: function() { this.___BlockPickerState__currentColor = this._widget.pickerColor; this.super$State$initState(); }, changeColor$1: function(color) { this.setState$1(new B._BlockPickerState_changeColor_closure(this, color)); this._widget.onColorChanged$1(color); }, build$1: function(_, context) { var t1 = this._widget; return t1.layoutBuilder$3(context, t1.availableColors, new B._BlockPickerState_build_closure(this)); } }; B._BlockPickerState_changeColor_closure.prototype = { call$0: function() { return this.$this.___BlockPickerState__currentColor = this.color; }, $signature: 0 }; B._BlockPickerState_build_closure.prototype = { call$3: function(color, _, __) { var t3, t1 = this.$this, t2 = t1._widget; t2.toString; t3 = t1.___BlockPickerState__currentColor; if (t3 === $) t3 = H.throwExpression(H.LateError$fieldNI("_currentColor")); return t2.itemBuilder$3(color, t3.get$value(t3) === color.get$value(color), new B._BlockPickerState_build__closure(t1, color)); }, call$1: function(color) { return this.call$3(color, null, null); }, call$2: function(color, _) { return this.call$3(color, _, null); }, "call*": "call$3", $defaultValues: function() { return [null, null]; }, $signature: 1558 }; B._BlockPickerState_build__closure.prototype = { call$0: function() { return this.$this.changeColor$1(this.color); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; A.JsonViewer.prototype = { createState$0: function() { return new A._JsonViewerState(C._StateLifecycle_0); } }; A._JsonViewerState.prototype = { build$1: function(_, context) { return A._JsonViewerState_getContentWidget(this._widget.jsonObj); } }; A.JsonObjectViewer.prototype = { createState$0: function() { return new A.JsonObjectViewerState(new H.JsLinkedHashMap(type$.JsLinkedHashMap_String_bool), C._StateLifecycle_0); } }; A.JsonObjectViewerState.prototype = { build$1: function(_, context) { var _null = null; if (this._widget.notRoot) return M.Container$(_null, T.Column$(this._getList$0(), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(14, 0, 0, 0), _null, _null, _null); return T.Column$(this._getList$0(), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, _getList$0: function() { var t2, t3, t4, ex, ink, t5, t6, t7, _this = this, _null = null, t1 = type$.JSArray_Widget, list = H.setRuntimeTypeInfo([], t1); for (t2 = J.get$entries$x(_this._widget.jsonObj), t2 = t2.get$iterator(t2), t3 = _this.openFlag; t2.moveNext$0();) { t4 = t2.get$current(t2); ex = A.JsonObjectViewerState_isExtensible(t4.get$value(t4)); ink = A.JsonObjectViewerState_isInkWell(t4.get$value(t4)); if (ex) { t5 = t3.$index(0, t4.get$key(t4)); t5 = (t5 == null ? false : t5) ? new L.Icon(C.IconData_57496_MaterialIcons_null_false, 14, C.Map_HFpTk.$index(0, 700), _null) : new L.Icon(C.IconData_57502_MaterialIcons_null_true, 14, C.Map_HFpTk.$index(0, 700), _null); } else t5 = C.Icon_kXN; if (ex && ink) { t6 = t4.get$key(t4); t7 = C.Map_JNNS7.$index(0, 900); t6 = R.InkWell$(false, _null, true, new L.Text(t6, new A.TextStyle(true, t7, _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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState__getList_closure(_this, t4), _null, _null, _null, _null, _null); } else { t6 = t4.get$key(t4); t7 = t4.get$value(t4) == null ? C.MaterialColor_Map_HFpTk_4288585374 : C.Map_JNNS7.$index(0, 900); t6 = new L.Text(t6, new A.TextStyle(true, t7, _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); } list.push(T.Row$(H.setRuntimeTypeInfo([t5, t6, new L.Text(":", new A.TextStyle(true, C.MaterialColor_Map_HFpTk_4288585374, _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), C.SizedBox_3_null_null_null, _this.getValueWidget$1(t4)], t1), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); list.push(C.SizedBox_null_4_null_null); t5 = t3.$index(0, t4.get$key(t4)); if (t5 == null ? false : t5) list.push(A.JsonObjectViewerState_getContentWidget(t4.get$value(t4))); } return list; }, getValueWidget$1: function(entry) { var _null = null; if (entry.get$value(entry) == null) return T.Expanded$(L.Text$("undefined", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (H._isInt(entry.get$value(entry))) return T.Expanded$(L.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof entry.get$value(entry) == "string") return T.Expanded$(L.Text$(C.JSString_methods.$add('"', entry.get$value(entry)) + '"', _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialAccentColor_Map_iTECn_4294922834, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (H._isBool(entry.get$value(entry))) return T.Expanded$(L.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JNNS7_4288423856, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof entry.get$value(entry) == "number") return T.Expanded$(L.Text$(J.toString$0$(entry.get$value(entry)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (type$.List_dynamic._is(entry.get$value(entry))) if (J.get$isEmpty$asx(entry.get$value(entry))) return L.Text$("Array[0]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else return R.InkWell$(false, _null, true, L.Text$("Array<" + A.JsonObjectViewerState_getTypeName(J.$index$asx(entry.get$value(entry), 0)) + ">[" + H.S(J.get$length$asx(entry.get$value(entry))) + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _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, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState_getValueWidget_closure(this, entry), _null, _null, _null, _null, _null); return R.InkWell$(false, _null, true, L.Text$("Object", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _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, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.JsonObjectViewerState_getValueWidget_closure0(this, entry), _null, _null, _null, _null, _null); } }; A.JsonObjectViewerState__getList_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState__getList__closure(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState__getList__closure.prototype = { call$0: function() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState_getValueWidget__closure0(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget__closure0.prototype = { call$0: function() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget_closure0.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A.JsonObjectViewerState_getValueWidget__closure(t1, this.entry)); }, $signature: 0 }; A.JsonObjectViewerState_getValueWidget__closure.prototype = { call$0: function() { var t1 = this.$this.openFlag, t2 = this.entry, t3 = t2.get$key(t2); t2 = t1.$index(0, t2.get$key(t2)); t1.$indexSet(0, t3, !(t2 == null ? false : t2)); }, $signature: 0 }; A.JsonArrayViewer.prototype = { createState$0: function() { return new A._JsonArrayViewerState(C._StateLifecycle_0); } }; A._JsonArrayViewerState.prototype = { get$openFlag: function() { var t1 = this.___JsonArrayViewerState_openFlag; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("openFlag")) : t1; }, build$1: function(_, context) { var _null = null; if (this._widget.notRoot) return M.Container$(_null, T.Column$(this._getList$0(), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(14, 0, 0, 0), _null, _null, _null); return T.Column$(this._getList$0(), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, initState$0: function() { this.super$State$initState(); this.___JsonArrayViewerState_openFlag = P.List_List$filled(J.get$length$asx(this._widget.jsonArray), false, false, type$.bool); }, _getList$0: function() { var t2, i, $content, ex, ink, t3, t4, t5, _this = this, _null = null, _s8_ = "openFlag", t1 = type$.JSArray_Widget, list = H.setRuntimeTypeInfo([], t1); for (t2 = J.get$iterator$ax(_this._widget.jsonArray), i = 0; t2.moveNext$0();) { $content = t2.get$current(t2); ex = A.JsonObjectViewerState_isExtensible($content); ink = A.JsonObjectViewerState_isInkWell($content); if (ex) { t3 = _this.___JsonArrayViewerState_openFlag; t3 = J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t3, i) ? new L.Icon(C.IconData_57496_MaterialIcons_null_false, 14, C.Map_HFpTk.$index(0, 700), _null) : new L.Icon(C.IconData_57502_MaterialIcons_null_true, 14, C.Map_HFpTk.$index(0, 700), _null); } else t3 = C.Icon_kXN; if (ex && ink) t4 = _this.getInkWell$1(i); else { t4 = "[" + i + "]"; t5 = $content == null ? C.MaterialColor_Map_HFpTk_4288585374 : C.Map_JNNS7.$index(0, 900); t4 = new L.Text(t4, new A.TextStyle(true, t5, _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); } list.push(T.Row$(H.setRuntimeTypeInfo([t3, t4, new L.Text(":", new A.TextStyle(true, C.MaterialColor_Map_HFpTk_4288585374, _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), C.SizedBox_3_null_null_null, _this.getValueWidget$2($content, i)], t1), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); list.push(C.SizedBox_null_4_null_null); t3 = _this.___JsonArrayViewerState_openFlag; if (J.$index$asx(t3 === $ ? H.throwExpression(H.LateError$fieldNI(_s8_)) : t3, i)) list.push(A.JsonObjectViewerState_getContentWidget($content)); ++i; } return list; }, getInkWell$1: function(index) { var _null = null; return R.InkWell$(false, _null, true, L.Text$("[" + index + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Map_JNNS7.$index(0, 900), _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, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getInkWell_closure(this, index), _null, _null, _null, _null, _null); }, getValueWidget$2: function($content, index) { var t1, _null = null; if ($content == null) return T.Expanded$(L.Text$("undefined", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (H._isInt($content)) return T.Expanded$(L.Text$(C.JSInt_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof $content == "string") return T.Expanded$(L.Text$('"' + $content + '"', _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialAccentColor_Map_iTECn_4294922834, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (H._isBool($content)) return T.Expanded$(L.Text$(C.JSBool_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JNNS7_4288423856, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (typeof $content == "number") return T.Expanded$(L.Text$(C.JSNumber_methods.toString$0($content), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JN0Sr_4278228616, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); else if (type$.List_dynamic._is($content)) { t1 = J.getInterceptor$asx($content); if (t1.get$isEmpty($content)) return L.Text$("Array[0]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else return R.InkWell$(false, _null, true, L.Text$("Array<" + A.JsonObjectViewerState_getTypeName($content) + ">[" + H.S(t1.get$length($content)) + "]", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _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, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getValueWidget_closure(this, index), _null, _null, _null, _null, _null); } return R.InkWell$(false, _null, true, L.Text$("Object", _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _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, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._JsonArrayViewerState_getValueWidget_closure0(this, index), _null, _null, _null, _null, _null); } }; A._JsonArrayViewerState_getInkWell_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getInkWell__closure(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getInkWell__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.index; J.$indexSet$ax(t1.get$openFlag(), t2, !J.$index$asx(t1.get$openFlag(), t2)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getValueWidget__closure0(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = this.index; J.$indexSet$ax(t1.get$openFlag(), t2, !J.$index$asx(t1.get$openFlag(), t2)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget_closure0.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new A._JsonArrayViewerState_getValueWidget__closure(t1, this.index)); }, $signature: 0 }; A._JsonArrayViewerState_getValueWidget__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.index; J.$indexSet$ax(t1.get$openFlag(), t2, !J.$index$asx(t1.get$openFlag(), t2)); }, $signature: 0 }; Y.GlobalCupertinoLocalizations.prototype = {$isCupertinoLocalizations: 1}; Y._GlobalCupertinoLocalizationsDelegate.prototype = { isSupported$1: function(locale) { return $.$get$kCupertinoSupportedLanguages().contains$1(0, locale.get$languageCode(locale)); }, load$1: function(_, locale) { return $._GlobalCupertinoLocalizationsDelegate__loadedTranslations.putIfAbsent$2(0, locale, new Y._GlobalCupertinoLocalizationsDelegate_load_closure(locale)); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "GlobalCupertinoLocalizations.delegate(" + $.$get$kCupertinoSupportedLanguages()._collection$_length + " locales)"; } }; Y._GlobalCupertinoLocalizationsDelegate_load_closure.prototype = { call$0: function() { var t2, localeName, t3, t1 = {}; L.loadDateIntlDataIfNotLoaded(); t2 = this.locale; localeName = X.canonicalizedLocale(J.toString$0$(t2)); t1._fullYearFormat = $; t1._dayFormat = $; t1._mediumDateFormat = $; t1._singleDigitHourFormat = $; t1._singleDigitMinuteFormat = $; t1._doubleDigitMinuteFormat = $; t1._singleDigitSecondFormat = $; t1._decimalFormat = $; t3 = new Y._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats(new Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_set(t1), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_set(t1)); if (A.DateFormat_localeExists(localeName)) t3.call$1(localeName); else if (A.DateFormat_localeExists(t2.get$languageCode(t2))) t3.call$1(t2.get$languageCode(t2)); else t3.call$1(null); t1 = S.getCupertinoTranslation(t2, new Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_get(t1).call$0(), new Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_get(t1).call$0()); t1.toString; return new O.SynchronousFuture(t1, type$.SynchronousFuture_CupertinoLocalizations); }, $signature: 1541 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_set.prototype = { call$1: function(t1) { return this._box_0._dayFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_set.prototype = { call$1: function(t1) { return this._box_0._decimalFormat = t1; }, $signature: 1497 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_set.prototype = { call$1: function(t1) { return this._box_0._doubleDigitMinuteFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_set.prototype = { call$1: function(t1) { return this._box_0._fullYearFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_set.prototype = { call$1: function(t1) { return this._box_0._mediumDateFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_set.prototype = { call$1: function(t1) { return this._box_0._singleDigitHourFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_set.prototype = { call$1: function(t1) { return this._box_0._singleDigitMinuteFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_set.prototype = { call$1: function(t1) { return this._box_0._singleDigitSecondFormat = t1; }, $signature: 179 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_get.prototype = { call$0: function() { var t1 = this._box_0._fullYearFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("fullYearFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_get.prototype = { call$0: function() { var t1 = this._box_0._dayFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("dayFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_get.prototype = { call$0: function() { var t1 = this._box_0._mediumDateFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("mediumDateFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_get.prototype = { call$0: function() { var t1 = this._box_0._singleDigitHourFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("singleDigitHourFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_get.prototype = { call$0: function() { var t1 = this._box_0._singleDigitMinuteFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("singleDigitMinuteFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_get.prototype = { call$0: function() { var t1 = this._box_0._doubleDigitMinuteFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("doubleDigitMinuteFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_get.prototype = { call$0: function() { var t1 = this._box_0._singleDigitSecondFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("singleDigitSecondFormat")) : t1; }, $signature: 178 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_get.prototype = { call$0: function() { var t1 = this._box_0._decimalFormat; return t1 === $ ? H.throwExpression(H.LateError$localNI("decimalFormat")) : t1; }, $signature: 1496 }; Y._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats.prototype = { call$1: function(locale) { var _this = this; _this._fullYearFormat_set.call$1(A.DateFormat$y(locale)); _this._dayFormat_set.call$1(A.DateFormat$d(locale)); _this._mediumDateFormat_set.call$1(A.DateFormat$MMMEd(locale)); _this._singleDigitHourFormat_set.call$1(A.DateFormat$("HH", locale)); _this._singleDigitMinuteFormat_set.call$1(A.DateFormat$m(locale)); _this._doubleDigitMinuteFormat_set.call$1(A.DateFormat$("mm", locale)); _this._singleDigitSecondFormat_set.call$1(A.DateFormat$s(locale)); _this._decimalFormat_set.call$1(S.NumberFormat_NumberFormat$decimalPattern(locale)); }, $signature: 236 }; S.CupertinoLocalizationAf.prototype = {}; S.CupertinoLocalizationAm.prototype = {}; S.CupertinoLocalizationAr.prototype = {}; S.CupertinoLocalizationAs.prototype = {}; S.CupertinoLocalizationAz.prototype = {}; S.CupertinoLocalizationBe.prototype = {}; S.CupertinoLocalizationBg.prototype = {}; S.CupertinoLocalizationBn.prototype = {}; S.CupertinoLocalizationBs.prototype = {}; S.CupertinoLocalizationCa.prototype = {}; S.CupertinoLocalizationCs.prototype = {}; S.CupertinoLocalizationDa.prototype = {}; S.CupertinoLocalizationDe.prototype = {}; S.CupertinoLocalizationDeCh.prototype = {}; S.CupertinoLocalizationEl.prototype = {}; S.CupertinoLocalizationEn.prototype = {}; S.CupertinoLocalizationEnAu.prototype = {}; S.CupertinoLocalizationEnCa.prototype = {}; S.CupertinoLocalizationEnGb.prototype = {}; S.CupertinoLocalizationEnIe.prototype = {}; S.CupertinoLocalizationEnIn.prototype = {}; S.CupertinoLocalizationEnNz.prototype = {}; S.CupertinoLocalizationEnSg.prototype = {}; S.CupertinoLocalizationEnZa.prototype = {}; S.CupertinoLocalizationEs.prototype = {}; S.CupertinoLocalizationEs419.prototype = {}; S.CupertinoLocalizationEsAr.prototype = {}; S.CupertinoLocalizationEsBo.prototype = {}; S.CupertinoLocalizationEsCl.prototype = {}; S.CupertinoLocalizationEsCo.prototype = {}; S.CupertinoLocalizationEsCr.prototype = {}; S.CupertinoLocalizationEsDo.prototype = {}; S.CupertinoLocalizationEsEc.prototype = {}; S.CupertinoLocalizationEsGt.prototype = {}; S.CupertinoLocalizationEsHn.prototype = {}; S.CupertinoLocalizationEsMx.prototype = {}; S.CupertinoLocalizationEsNi.prototype = {}; S.CupertinoLocalizationEsPa.prototype = {}; S.CupertinoLocalizationEsPe.prototype = {}; S.CupertinoLocalizationEsPr.prototype = {}; S.CupertinoLocalizationEsPy.prototype = {}; S.CupertinoLocalizationEsSv.prototype = {}; S.CupertinoLocalizationEsUs.prototype = {}; S.CupertinoLocalizationEsUy.prototype = {}; S.CupertinoLocalizationEsVe.prototype = {}; S.CupertinoLocalizationEt.prototype = {}; S.CupertinoLocalizationEu.prototype = {}; S.CupertinoLocalizationFa.prototype = {}; S.CupertinoLocalizationFi.prototype = {}; S.CupertinoLocalizationFil.prototype = {}; S.CupertinoLocalizationFr.prototype = {}; S.CupertinoLocalizationFrCa.prototype = {}; S.CupertinoLocalizationGl.prototype = {}; S.CupertinoLocalizationGsw.prototype = {}; S.CupertinoLocalizationGu.prototype = {}; S.CupertinoLocalizationHe.prototype = {}; S.CupertinoLocalizationHi.prototype = {}; S.CupertinoLocalizationHr.prototype = {}; S.CupertinoLocalizationHu.prototype = {}; S.CupertinoLocalizationHy.prototype = {}; S.CupertinoLocalizationId.prototype = {}; S.CupertinoLocalizationIs.prototype = {}; S.CupertinoLocalizationIt.prototype = {}; S.CupertinoLocalizationJa.prototype = {}; S.CupertinoLocalizationKa.prototype = {}; S.CupertinoLocalizationKk.prototype = {}; S.CupertinoLocalizationKm.prototype = {}; S.CupertinoLocalizationKn.prototype = {}; S.CupertinoLocalizationKo.prototype = {}; S.CupertinoLocalizationKy.prototype = {}; S.CupertinoLocalizationLo.prototype = {}; S.CupertinoLocalizationLt.prototype = {}; S.CupertinoLocalizationLv.prototype = {}; S.CupertinoLocalizationMk.prototype = {}; S.CupertinoLocalizationMl.prototype = {}; S.CupertinoLocalizationMn.prototype = {}; S.CupertinoLocalizationMr.prototype = {}; S.CupertinoLocalizationMs.prototype = {}; S.CupertinoLocalizationMy.prototype = {}; S.CupertinoLocalizationNb.prototype = {}; S.CupertinoLocalizationNe.prototype = {}; S.CupertinoLocalizationNl.prototype = {}; S.CupertinoLocalizationNo.prototype = {}; S.CupertinoLocalizationOr.prototype = {}; S.CupertinoLocalizationPa.prototype = {}; S.CupertinoLocalizationPl.prototype = {}; S.CupertinoLocalizationPt.prototype = {}; S.CupertinoLocalizationPtPt.prototype = {}; S.CupertinoLocalizationRo.prototype = {}; S.CupertinoLocalizationRu.prototype = {}; S.CupertinoLocalizationSi.prototype = {}; S.CupertinoLocalizationSk.prototype = {}; S.CupertinoLocalizationSl.prototype = {}; S.CupertinoLocalizationSq.prototype = {}; S.CupertinoLocalizationSr.prototype = {}; S.CupertinoLocalizationSrCyrl.prototype = {}; S.CupertinoLocalizationSrLatn.prototype = {}; S.CupertinoLocalizationSv.prototype = {}; S.CupertinoLocalizationSw.prototype = {}; S.CupertinoLocalizationTa.prototype = {}; S.CupertinoLocalizationTe.prototype = {}; S.CupertinoLocalizationTh.prototype = {}; S.CupertinoLocalizationTl.prototype = {}; S.CupertinoLocalizationTr.prototype = {}; S.CupertinoLocalizationUk.prototype = {}; S.CupertinoLocalizationUr.prototype = {}; S.CupertinoLocalizationUz.prototype = {}; S.CupertinoLocalizationVi.prototype = {}; S.CupertinoLocalizationZh.prototype = {}; S.CupertinoLocalizationZhHans.prototype = {}; S.CupertinoLocalizationZhHant.prototype = {}; S.CupertinoLocalizationZhHantHk.prototype = {}; S.CupertinoLocalizationZhHantTw.prototype = {}; S.CupertinoLocalizationZu.prototype = {}; Y.MaterialLocalizationAf.prototype = { get$alertDialogLabel: function() { return "Opletberig"; }, get$anteMeridiemAbbreviation: function() { return "vm."; }, get$backButtonTooltip: function() { return "Terug"; }, get$calendarModeButtonLabel: function() { return "Skakel oor na kalender"; }, get$cancelButtonLabel: function() { return "KANSELLEER"; }, get$collapsedIconTapHint: function() { return "Vou uit"; }, get$dateHelpText: function() { return "dd-mm-jjjj"; }, get$dateInputLabel: function() { return "Voer datum in"; }, get$dateOutOfRangeLabel: function() { return "Buite reeks."; }, get$datePickerHelpText: function() { return "KIES DATUM"; }, get$dialModeButtonLabel: function() { return "Skakel oor na wyserplaatkiesermodus"; }, get$dialogLabel: function() { return "Dialoog"; }, get$drawerLabel: function() { return "Navigasiekieslys"; }, get$expandedIconTapHint: function() { return "Vou in"; }, get$inputDateModeButtonLabel: function() { return "Skakel oor na invoer"; }, get$inputTimeModeButtonLabel: function() { return "Skakel oor na teksinvoermodus"; }, get$invalidDateFormatLabel: function() { return "Ongeldige formaat."; }, get$invalidTimeLabel: function() { return "Voer 'n geldige tyd in"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisensie"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisensies"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lisensies"; }, get$modalBarrierDismissLabel: function() { return "Maak toe"; }, get$nextMonthTooltip: function() { return "Volgende maand"; }, get$nextPageTooltip: function() { return "Volgende bladsy"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Maak navigasiekieslys oop"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow van $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow van ongeveer $rowCount"; }, get$popupMenuLabel: function() { return "Opspringkieslys"; }, get$postMeridiemAbbreviation: function() { return "nm."; }, get$previousMonthTooltip: function() { return "Vorige maand"; }, get$previousPageTooltip: function() { return "Vorige bladsy"; }, get$refreshIndicatorSemanticLabel: function() { return "Herlaai"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 karakter oor"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount karakters oor"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Skuif af"; }, get$reorderItemToEnd: function() { return "Skuif na die einde"; }, get$reorderItemToStart: function() { return "Skuif na die begin"; }, get$reorderItemUp: function() { return "Skuif op"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Kies jaar"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item is gekies"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount items is gekies"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Wys kieslys"; }, get$tabLabelRaw: function() { return "Oortjie $tabIndex van $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "KIES TYD"; }, get$timePickerHourLabel: function() { return "Uur"; }, get$timePickerHourModeAnnouncement: function() { return "Kies ure"; }, get$timePickerInputHelpText: function() { return "VOER TYD IN"; }, get$timePickerMinuteLabel: function() { return "Minuut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Kies minute"; } }; Y.MaterialLocalizationAm.prototype = { get$alertDialogLabel: function() { return "\u121b\u1295\u1242\u12eb"; }, get$anteMeridiemAbbreviation: function() { return "\u1325\u12cb\u1275"; }, get$backButtonTooltip: function() { return "\u1270\u1218\u1208\u1235"; }, get$calendarModeButtonLabel: function() { return "\u12c8\u12f0 \u12e8\u1240\u1295 \u1218\u1241\u1320\u122a\u12eb \u1240\u12ed\u122d"; }, get$cancelButtonLabel: function() { return "\u12ed\u1245\u122d"; }, get$collapsedIconTapHint: function() { return "\u12d8\u122d\u130b"; }, get$dateHelpText: function() { return "\u12c8\u12c8/\u1240\u1240/\u12d3\u12d3\u12d3\u12d3"; }, get$dateInputLabel: function() { return "\u1240\u1295 \u12eb\u1235\u1308\u1261"; }, get$dateOutOfRangeLabel: function() { return "\u12a8\u12ad\u120d\u120d \u12cd\u132a\u1362"; }, get$datePickerHelpText: function() { return "\u1240\u1295 \u12ed\u121d\u1228\u1321"; }, get$dialModeButtonLabel: function() { return "\u12c8\u12f0 \u1218\u12f0\u12c8\u12eb \u1218\u122b\u132d \u1201\u1290\u1273 \u1240\u12ed\u122d"; }, get$dialogLabel: function() { return "\u1218\u1308\u1293\u129b"; }, get$drawerLabel: function() { return "\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c"; }, get$expandedIconTapHint: function() { return "\u1230\u1265\u1235\u1265"; }, get$inputDateModeButtonLabel: function() { return "\u12c8\u12f0 \u130d\u1264\u1275 \u1240\u12ed\u122d"; }, get$inputTimeModeButtonLabel: function() { return "\u12c8\u12f0 \u133d\u1211\u134d \u130d\u1264\u1275 \u1201\u1290\u1273 \u1240\u12ed\u122d"; }, get$invalidDateFormatLabel: function() { return "\u120d\u12ad \u12eb\u120d\u1206\u1290 \u1245\u122d\u1338\u1275\u1362"; }, get$invalidTimeLabel: function() { return "\u12e8\u121a\u1220\u122b \u1230\u12d3\u1275 \u12eb\u1235\u1308\u1261"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u1348\u1243\u12f5"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u1348\u1243\u12f6\u127d"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u1348\u1243\u12f6\u127d"; }, get$modalBarrierDismissLabel: function() { return "\u12a0\u1230\u1293\u1265\u1275"; }, get$nextMonthTooltip: function() { return "\u1240\u1323\u12ed \u12c8\u122d"; }, get$nextPageTooltip: function() { return "\u1240\u1323\u12ed \u1308\u133d"; }, get$okButtonLabel: function() { return "\u12a5\u123a"; }, get$openAppDrawerTooltip: function() { return "\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c\u1295 \u12ad\u1348\u1275"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u12a8$rowCount \u12cd\u1235\u1325"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u12a8$rowCount \u12eb\u1205\u120d \u12cd\u1235\u1325"; }, get$popupMenuLabel: function() { return "\u12e8\u1265\u1245-\u1263\u12ed \u121d\u1293\u120c"; }, get$postMeridiemAbbreviation: function() { return "\u12a8\u1230\u12d3\u1275"; }, get$previousMonthTooltip: function() { return "\u1240\u12f3\u121a \u12c8\u122d"; }, get$previousPageTooltip: function() { return "\u1240\u12f3\u121a \u1308\u133d"; }, get$refreshIndicatorSemanticLabel: function() { return "\u12a0\u12f5\u1235"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u1241\u121d\u134a \u12ed\u1240\u122b\u120d"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u1241\u121d\u134a\u12ce\u127d \u12ed\u1240\u122b\u1209"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u12c8\u12f0 \u1273\u127d \u12cd\u1230\u12f5"; }, get$reorderItemToEnd: function() { return "\u12c8\u12f0 \u1218\u1328\u1228\u123b \u12cd\u1230\u12f5"; }, get$reorderItemToStart: function() { return "\u12c8\u12f0 \u1218\u1300\u1218\u122a\u12eb \u12cd\u1230\u12f5"; }, get$reorderItemUp: function() { return "\u12c8\u12f0 \u120b\u12ed \u12cd\u1230\u12f5"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u12d3\u1218\u1275 \u12ed\u121d\u1228\u1321"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u1295\u1325\u120d \u1270\u1218\u122d\u1327\u120d"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u1295\u1325\u120e\u127d \u1270\u1218\u122d\u1320\u12cb\u120d"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u121d\u1293\u120c\u1295 \u12a0\u1233\u12ed"; }, get$tabLabelRaw: function() { return "\u1275\u122d $tabIndex \u12a8$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u130a\u12dc \u12ed\u121d\u1228\u1321"; }, get$timePickerHourLabel: function() { return "\u1230\u12d3\u1275"; }, get$timePickerHourModeAnnouncement: function() { return "\u1230\u12d3\u1273\u1275\u1295 \u121d\u1228\u1325"; }, get$timePickerInputHelpText: function() { return "\u1230\u12d3\u1275 \u12eb\u1235\u1308\u1261"; }, get$timePickerMinuteLabel: function() { return "\u12f0\u1242\u1243"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u12f0\u1242\u1243\u12ce\u127d\u1295 \u12ed\u121d\u1228\u1321"; } }; Y.MaterialLocalizationAr.prototype = { get$alertDialogLabel: function() { return "\u062a\u0646\u0628\u064a\u0647"; }, get$anteMeridiemAbbreviation: function() { return "\u0635"; }, get$backButtonTooltip: function() { return "\u0631\u062c\u0648\u0639"; }, get$calendarModeButtonLabel: function() { return "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0627\u0644\u062a\u0642\u0648\u064a\u0645"; }, get$cancelButtonLabel: function() { return "\u0625\u0644\u063a\u0627\u0621"; }, get$collapsedIconTapHint: function() { return "\u062a\u0648\u0633\u064a\u0639"; }, get$dateHelpText: function() { return "yyyy/mm/dd"; }, get$dateInputLabel: function() { return "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"; }, get$dateOutOfRangeLabel: function() { return "\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u062e\u0627\u0631\u062c \u0627\u0644\u0646\u0637\u0627\u0642."; }, get$datePickerHelpText: function() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"; }, get$dialModeButtonLabel: function() { return '\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0648\u0636\u0639 "\u0645\u0646\u062a\u0642\u064a \u0642\u064f\u0631\u0635 \u0627\u0644\u0633\u0627\u0639\u0629"'; }, get$dialogLabel: function() { return "\u0645\u0631\u0628\u0639 \u062d\u0648\u0627\u0631"; }, get$drawerLabel: function() { return "\u0642\u0627\u0626\u0645\u0629 \u062a\u0646\u0642\u0644"; }, get$expandedIconTapHint: function() { return "\u062a\u0635\u063a\u064a\u0631"; }, get$inputDateModeButtonLabel: function() { return "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0627\u0644\u0625\u062f\u062e\u0627\u0644"; }, get$inputTimeModeButtonLabel: function() { return '\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0648\u0636\u0639 "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0646\u0635"'; }, get$invalidDateFormatLabel: function() { return "\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d."; }, get$invalidTimeLabel: function() { return "\u064a\u064f\u0631\u062c\u0649 \u0625\u062f\u062e\u0627\u0644 \u0648\u0642\u062a \u0635\u0627\u0644\u062d."; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount \u062a\u0631\u0627\u062e\u064a\u0635"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount \u062a\u0631\u062e\u064a\u0635\u064b\u0627"; }, get$licensesPackageDetailTextOne: function() { return "\u062a\u0631\u062e\u064a\u0635 \u0648\u0627\u062d\u062f"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u062a\u0631\u062e\u064a\u0635"; }, get$licensesPackageDetailTextTwo: function() { return "\u062a\u0631\u062e\u064a\u0635\u0627\u0646 ($licenseCount)"; }, get$licensesPackageDetailTextZero: function() { return "\u0645\u0627 \u0645\u0650\u0646 \u062a\u0631\u0627\u062e\u064a\u0635"; }, get$licensesPageTitle: function() { return "\u0627\u0644\u062a\u0631\u0627\u062e\u064a\u0635"; }, get$modalBarrierDismissLabel: function() { return "\u0631\u0641\u0636"; }, get$nextMonthTooltip: function() { return "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u062a\u0627\u0644\u064a"; }, get$nextPageTooltip: function() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629"; }, get$okButtonLabel: function() { return "\u062d\u0633\u0646\u064b\u0627"; }, get$openAppDrawerTooltip: function() { return "\u0641\u062a\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0646\u0642\u0644"; }, get$pageRowsInfoTitleRaw: function() { return "\u0645\u0646 $firstRow \u0625\u0644\u0649 $lastRow \u0645\u0646 \u0625\u062c\u0645\u0627\u0644\u064a $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0645\u0646 $firstRow \u0625\u0644\u0649 $lastRow \u0645\u0646 \u0625\u062c\u0645\u0627\u0644\u064a $rowCount \u062a\u0642\u0631\u064a\u0628\u064b\u0627"; }, get$popupMenuLabel: function() { return "\u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0628\u062b\u0642\u0629"; }, get$postMeridiemAbbreviation: function() { return "\u0645"; }, get$previousMonthTooltip: function() { return "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0633\u0627\u0628\u0642"; }, get$previousPageTooltip: function() { return "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644"; }, get$remainingTextFieldCharacterCountFew: function() { return "$remainingCount \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"; }, get$remainingTextFieldCharacterCountMany: function() { return "$remainingCount \u062d\u0631\u0641\u064b\u0627 \u0645\u062a\u0628\u0642\u064a\u064b\u0627"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u062d\u0631\u0641 \u0648\u0627\u062d\u062f \u0645\u062a\u0628\u0642\u064d"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064d"; }, get$remainingTextFieldCharacterCountTwo: function() { return "\u062d\u0631\u0641\u0627\u0646 ($remainingCount) \u0645\u062a\u0628\u0642\u064a\u0627\u0646"; }, get$remainingTextFieldCharacterCountZero: function() { return "\u0644\u0627 \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"; }, get$reorderItemDown: function() { return "\u0646\u0642\u0644 \u0644\u0623\u0633\u0641\u0644"; }, get$reorderItemToEnd: function() { return "\u0646\u0642\u0644 \u0625\u0644\u0649 \u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$reorderItemToStart: function() { return "\u0646\u0642\u0644 \u0625\u0644\u0649 \u0628\u062f\u0627\u064a\u0629 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$reorderItemUp: function() { return "\u0646\u0642\u0644 \u0644\u0623\u0639\u0644\u0649"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0639\u0627\u0645"; }, get$selectedRowCountTitleFew: function() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631"; }, get$selectedRowCountTitleMany: function() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631\u064b\u0627"; }, get$selectedRowCountTitleOne: function() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0635\u0631 \u0648\u0627\u062d\u062f"; }, get$selectedRowCountTitleOther: function() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 $selectedRowCount \u0639\u0646\u0635\u0631"; }, get$selectedRowCountTitleTwo: function() { return "\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0635\u0631\u064a\u0646 ($selectedRowCount)"; }, get$selectedRowCountTitleZero: function() { return "\u0644\u0645 \u064a\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0623\u064a \u0639\u0646\u0635\u0631"; }, get$showMenuTooltip: function() { return "\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"; }, get$tabLabelRaw: function() { return "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062a\u0628\u0648\u064a\u0628 $tabIndex \u0645\u0646 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0648\u0642\u062a"; }, get$timePickerHourLabel: function() { return "\u0633\u0627\u0639\u0629"; }, get$timePickerHourModeAnnouncement: function() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0627\u062a"; }, get$timePickerInputHelpText: function() { return "\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0648\u0642\u062a"; }, get$timePickerMinuteLabel: function() { return "\u062f\u0642\u064a\u0642\u0629"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u062f\u0642\u0627\u0626\u0642"; } }; Y.MaterialLocalizationAs.prototype = { get$alertDialogLabel: function() { return "\u09b8\u09a4\u09f0\u09cd\u0995\u09ac\u09be\u09f0\u09cd\u09a4\u09be"; }, get$anteMeridiemAbbreviation: function() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09be\u09b9\u09cd\u09a8"; }, get$backButtonTooltip: function() { return "\u0989\u09ad\u09a4\u09bf \u09af\u09be\u0993\u0995"; }, get$calendarModeButtonLabel: function() { return "\u0995\u09c7\u09b2\u09c7\u09a3\u09cd\u09a1\u09be\u09f0\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$cancelButtonLabel: function() { return "\u09ac\u09be\u09a4\u09bf\u09b2 \u0995\u09f0\u0995"; }, get$collapsedIconTapHint: function() { return "\u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09f0 \u0995\u09f0\u0995"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u09a4\u09be\u09f0\u09bf\u0996\u099f\u09cb \u09a6\u09bf\u09df\u0995"; }, get$dateOutOfRangeLabel: function() { return "\u09b8\u09c0\u09ae\u09be\u09f0 \u09ac\u09be\u09b9\u09bf\u09f0\u09a4\u0964"; }, get$datePickerHelpText: function() { return "\u09a4\u09be\u09f0\u09bf\u0996 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$dialModeButtonLabel: function() { return "\u09a1\u09be\u09df\u09c7\u09b2 \u09ac\u09be\u099b\u09a8\u09bf\u0995\u09f0\u09cd\u09a4\u09be\u09f0 \u09ae\u2019\u09a1\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$dialogLabel: function() { return "\u09a1\u09be\u09df\u09b2'\u0997"; }, get$drawerLabel: function() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1"; }, get$expandedIconTapHint: function() { return "\u09b8\u0982\u0995\u09cb\u099a\u09a8 \u0995\u09f0\u0995"; }, get$inputDateModeButtonLabel: function() { return "\u0987\u09a8\u09aa\u09c1\u099f\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$inputTimeModeButtonLabel: function() { return "\u09aa\u09be\u09a0 \u0987\u09a8\u09aa\u09c1\u099f\u09f0 \u09ae\u2019\u09a1\u09b2\u09c8 \u09b8\u09b2\u09a8\u09bf \u0995\u09f0\u0995"; }, get$invalidDateFormatLabel: function() { return "\u0985\u09ae\u09be\u09a8\u09cd\u09af \u09ab\u09f0\u09cd\u09ae\u09c7\u099f\u0964"; }, get$invalidTimeLabel: function() { return "\u098f\u099f\u09be \u09ae\u09be\u09a8\u09cd\u09af \u09b8\u09ae\u09df \u09a6\u09bf\u09df\u0995"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u09e7 \u0996\u09a8 \u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0996\u09a8 \u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0985\u09a8\u09c1\u099c\u09cd\u099e\u09be\u09aa\u09a4\u09cd\u09f0\u09b8\u09ae\u09c2\u09b9"; }, get$modalBarrierDismissLabel: function() { return "\u0985\u0997\u09cd\u09f0\u09be\u09b9\u09cd\u09af \u0995\u09f0\u0995"; }, get$nextMonthTooltip: function() { return "\u09aa\u09f0\u09f1\u09f0\u09cd\u09a4\u09c0 \u09ae\u09be\u09b9"; }, get$nextPageTooltip: function() { return "\u09aa\u09f0\u09f1\u09f0\u09cd\u09a4\u09c0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$okButtonLabel: function() { return "\u09a0\u09bf\u0995 \u0986\u099b\u09c7"; }, get$openAppDrawerTooltip: function() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09cb\u09b2\u0995"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u09f0 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount\u09f0 $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u09aa'\u09aa\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"; }, get$postMeridiemAbbreviation: function() { return "\u0985\u09aa\u09f0\u09be\u09b9\u09cd\u09a8"; }, get$previousMonthTooltip: function() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09f1\u09f0\u09cd\u09a4\u09c0 \u09ae\u09be\u09b9"; }, get$previousPageTooltip: function() { return "\u09aa\u09c2\u09f0\u09cd\u09ac\u09f1\u09f0\u09cd\u09a4\u09c0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$refreshIndicatorSemanticLabel: function() { return "\u09f0\u09bf\u09ab\u09cd\u09f0\u09c7\u09b6\u09cd\u09ac \u0995\u09f0\u0995"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u09e7\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u09a4\u09b2\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemToEnd: function() { return "\u09b6\u09c7\u09b7\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemToStart: function() { return "\u0986\u09f0\u09ae\u09cd\u09ad\u09a3\u09bf\u09b2\u09c8 \u09b8\u09cd\u09a5\u09be\u09a8\u09be\u09a8\u09cd\u09a4\u09f0 \u0995\u09f0\u0995"; }, get$reorderItemUp: function() { return "\u0993\u09aa\u09f0\u09b2\u09c8 \u09a8\u09bf\u09df\u0995"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u09ac\u099b\u09f0 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u09e7\u099f\u09be \u09ac\u09b8\u09cd\u09a4\u09c1 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u09be \u09b9'\u09b2"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\u099f\u09be \u09ac\u09b8\u09cd\u09a4\u09c1 \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u09be \u09b9\u2019\u09b2"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u09ae\u09c7\u09a8\u09c1\u0996\u09a8 \u09a6\u09c7\u0996\u09c1\u09f1\u09be\u0993\u0995"; }, get$tabLabelRaw: function() { return "$tabCount\u09f0 $tabIndex\u099f\u09be \u099f\u09c7\u09ac"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u09b8\u09ae\u09df \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$timePickerHourLabel: function() { return "\u0998\u09a3\u09cd\u099f\u09be"; }, get$timePickerHourModeAnnouncement: function() { return "\u09b8\u09ae\u09df \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; }, get$timePickerInputHelpText: function() { return "\u09b8\u09ae\u09df \u09a6\u09bf\u09df\u0995"; }, get$timePickerMinuteLabel: function() { return "\u09ae\u09bf\u09a8\u09bf\u099f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u09ae\u09bf\u09a8\u09bf\u099f \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"; } }; Y.MaterialLocalizationAz.prototype = { get$alertDialogLabel: function() { return "Bildiri\u015f"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Geri"; }, get$calendarModeButtonLabel: function() { return "T\u0259qvim\u0259 ke\xe7in"; }, get$cancelButtonLabel: function() { return "L\u018f\u011eV ED\u0130N"; }, get$collapsedIconTapHint: function() { return "Geni\u015fl\u0259ndirin"; }, get$dateHelpText: function() { return "aa.gg.iiii"; }, get$dateInputLabel: function() { return "Tarix daxil edin"; }, get$dateOutOfRangeLabel: function() { return "Aral\u0131qdan k\u0259nar."; }, get$datePickerHelpText: function() { return "TAR\u0130X SE\xc7\u0130N"; }, get$dialModeButtonLabel: function() { return "Y\u0131\u011f\u0131m se\xe7ici rejimin\u0259 ke\xe7in"; }, get$dialogLabel: function() { return "Dialoq"; }, get$drawerLabel: function() { return "Naviqasiya menyusu"; }, get$expandedIconTapHint: function() { return "Y\u0131\u011fcamla\u015fd\u0131r\u0131n"; }, get$inputDateModeButtonLabel: function() { return "Daxiletm\u0259y\u0259 ke\xe7in"; }, get$inputTimeModeButtonLabel: function() { return "M\u0259tn daxiletm\u0259 rejimin\u0259 ke\xe7in"; }, get$invalidDateFormatLabel: function() { return "Yanl\u0131\u015f format."; }, get$invalidTimeLabel: function() { return "D\xfczg\xfcn vaxt daxil edin"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisenziya"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisenziya"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lisenziyalar"; }, get$modalBarrierDismissLabel: function() { return "\u0130mtina edin"; }, get$nextMonthTooltip: function() { return "N\xf6vb\u0259ti ay"; }, get$nextPageTooltip: function() { return "N\xf6vb\u0259ti s\u0259hif\u0259"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Naviqasiya menyusunu a\xe7\u0131n"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow/$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow/ t\u0259xmin\u0259n $rowCount"; }, get$popupMenuLabel: function() { return "Popap menyusu"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Ke\xe7\u0259n ay"; }, get$previousPageTooltip: function() { return "\u018fvv\u0259lki s\u0259hif\u0259"; }, get$refreshIndicatorSemanticLabel: function() { return "Yenil\u0259yin"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 simvol qal\u0131r"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount simvol qal\u0131r"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "A\u015fa\u011f\u0131 k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemToEnd: function() { return "Sona k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemToStart: function() { return "\u018fvv\u0259l\u0259 k\xf6\xe7\xfcr\xfcn"; }, get$reorderItemUp: function() { return "Yuxar\u0131 k\xf6\xe7\xfcr\xfcn"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0130l se\xe7in"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 element se\xe7ildi"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount element se\xe7ildi"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Menyunu g\xf6st\u0259rin"; }, get$tabLabelRaw: function() { return "$tabIndex/$tabCount tab"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "VAXT SE\xc7\u0130N"; }, get$timePickerHourLabel: function() { return "Saat"; }, get$timePickerHourModeAnnouncement: function() { return "Saat se\xe7in"; }, get$timePickerInputHelpText: function() { return "VAXTI DAX\u0130L ED\u0130N"; }, get$timePickerMinuteLabel: function() { return "D\u0259qiq\u0259"; }, get$timePickerMinuteModeAnnouncement: function() { return "D\u0259qiq\u0259 se\xe7in"; } }; Y.MaterialLocalizationBe.prototype = { get$alertDialogLabel: function() { return "\u0410\u0431\u0432\u0435\u0441\u0442\u043a\u0430"; }, get$anteMeridiemAbbreviation: function() { return "\u0440\u0430\u043d\u0456\u0446\u044b"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel: function() { return "\u0421\u041a\u0410\u0421\u0410\u0412\u0410\u0426\u042c"; }, get$collapsedIconTapHint: function() { return "\u0420\u0430\u0437\u0433\u0430\u0440\u043d\u0443\u0446\u044c"; }, get$dateHelpText: function() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel: function() { return "\u0423\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel: function() { return "\u041f\u0430-\u0437\u0430 \u043c\u0435\u0436\u0430\u043c\u0456 \u0434\u044b\u044f\u043f\u0430\u0437\u043e\u043d\u0443."; }, get$datePickerHelpText: function() { return "\u0412\u042b\u0411\u0410\u0420 \u0414\u0410\u0422\u042b"; }, get$dialModeButtonLabel: function() { return "\u041f\u0435\u0440\u0430\u0445\u043e\u0434 \u0443 \u0440\u044d\u0436\u044b\u043c \u0432\u044b\u0431\u0430\u0440\u0443 \u0447\u0430\u0441\u0443"; }, get$dialogLabel: function() { return "\u0414\u044b\u044f\u043b\u043e\u0433\u0430\u0432\u0430\u0435 \u0430\u043a\u043d\u043e"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"; }, get$expandedIconTapHint: function() { return "\u0417\u0433\u0430\u0440\u043d\u0443\u0446\u044c"; }, get$inputDateModeButtonLabel: function() { return "\u041f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u045e\u0432\u043e\u0434 \u0442\u044d\u043a\u0441\u0442\u0443"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0435\u0440\u0430\u0445\u043e\u0434 \u0443 \u0440\u044d\u0436\u044b\u043c \u0443\u0432\u043e\u0434\u0443 \u0442\u044d\u043a\u0441\u0442\u0443"; }, get$invalidDateFormatLabel: function() { return "\u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u044b \u0444\u0430\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel: function() { return "\u0423\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0434\u0430\u043f\u0443\u0448\u0447\u0430\u043b\u044c\u043d\u044b \u0447\u0430\u0441"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0439"; }, get$licensesPackageDetailTextOne: function() { return "1\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u044f"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0\u043b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0456\u0446\u044d\u043d\u0437\u0456\u0456"; }, get$modalBarrierDismissLabel: function() { return "\u0410\u0434\u0445\u0456\u043b\u0456\u0446\u044c"; }, get$nextMonthTooltip: function() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u044b \u043c\u0435\u0441\u044f\u0446"; }, get$nextPageTooltip: function() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0430"; }, get$okButtonLabel: function() { return "\u041e\u041a"; }, get$openAppDrawerTooltip: function() { return "\u0410\u0434\u043a\u0440\u044b\u0446\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0437 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0437 \u043f\u0440\u044b\u0431\u043b\u0456\u0437\u043d\u0430 $rowCount"; }, get$popupMenuLabel: function() { return "\u041c\u0435\u043d\u044e \u045e\u0441\u043f\u043b\u044b\u0432\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u0430\u043a\u043d\u0430"; }, get$postMeridiemAbbreviation: function() { return "\u0432\u0435\u0447\u0430\u0440\u0430"; }, get$previousMonthTooltip: function() { return "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u0456 \u043c\u0435\u0441\u044f\u0446"; }, get$previousPageTooltip: function() { return "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u044f \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0410\u0431\u043d\u0430\u0432\u0456\u0446\u044c"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u044b"; }, get$remainingTextFieldCharacterCountMany: function() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430\u045e"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0417\u0430\u0441\u0442\u0430\u045e\u0441\u044f 1\xa0\u0441\u0456\u043c\u0432\u0430\u043b"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443\u043d\u0456\u0437"; }, get$reorderItemToEnd: function() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443 \u043a\u0430\u043d\u0435\u0446"; }, get$reorderItemToStart: function() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443 \u043f\u0430\u0447\u0430\u0442\u0430\u043a"; }, get$reorderItemUp: function() { return "\u041f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0443\u0432\u0435\u0440\u0445"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0433\u043e\u0434"; }, get$selectedRowCountTitleFew: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b"; }, get$selectedRowCountTitleMany: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u045e"; }, get$selectedRowCountTitleOne: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u044b 1\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u0430 $selectedRowCount\xa0\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041f\u0430\u043a\u0430\u0437\u0430\u0446\u044c \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw: function() { return "\u0423\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0412\u042b\u0411\u0415\u0420\u042b\u0426\u0415 \u0427\u0410\u0421"; }, get$timePickerHourLabel: function() { return "\u0413\u0430\u0434\u0437\u0456\u043d\u0430"; }, get$timePickerHourModeAnnouncement: function() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0433\u0430\u0434\u0437\u0456\u043d\u044b"; }, get$timePickerInputHelpText: function() { return "\u0423\u0412\u042f\u0414\u0417\u0406\u0426\u0415 \u0427\u0410\u0421"; }, get$timePickerMinuteLabel: function() { return "\u0425\u0432\u0456\u043b\u0456\u043d\u0430"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u0445\u0432\u0456\u043b\u0456\u043d\u044b"; } }; Y.MaterialLocalizationBg.prototype = { get$alertDialogLabel: function() { return "\u0421\u0438\u0433\u043d\u0430\u043b"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u0430"; }, get$cancelButtonLabel: function() { return "\u041e\u0422\u041a\u0410\u0417"; }, get$collapsedIconTapHint: function() { return "\u0420\u0430\u0437\u0433\u044a\u0432\u0430\u043d\u0435"; }, get$dateHelpText: function() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel: function() { return "\u0412\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430"; }, get$dateOutOfRangeLabel: function() { return "\u0418\u0437\u0432\u044a\u043d \u0432\u0430\u043b\u0438\u0434\u043d\u0438\u044f \u043f\u0435\u0440\u0438\u043e\u0434 \u043e\u0442 \u0432\u0440\u0435\u043c\u0435."; }, get$datePickerHelpText: function() { return "\u0418\u0417\u0411\u0418\u0420\u0410\u041d\u0415 \u041d\u0410 \u0414\u0410\u0422\u0410"; }, get$dialModeButtonLabel: function() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0446\u0438\u0444\u0435\u0440\u0431\u043b\u0430\u0442"; }, get$dialogLabel: function() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u044e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"; }, get$expandedIconTapHint: function() { return "\u0421\u0432\u0438\u0432\u0430\u043d\u0435"; }, get$inputDateModeButtonLabel: function() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442"; }, get$invalidDateFormatLabel: function() { return "\u041d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel: function() { return "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0447\u0430\u0441"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0\u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0\u043b\u0438\u0446\u0435\u043d\u0437\u0430"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438"; }, get$modalBarrierDismissLabel: function() { return "\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435"; }, get$nextMonthTooltip: function() { return "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0438\u044f\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip: function() { return "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow \u043e\u0442 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow \u043e\u0442 \u043e\u043a\u043e\u043b\u043e $rowCount"; }, get$popupMenuLabel: function() { return "\u0418\u0437\u0441\u043a\u0430\u0447\u0430\u0449\u043e \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u044f\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip: function() { return "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u041e\u0441\u0442\u0430\u0432\u0430 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u041e\u0441\u0442\u0430\u0432\u0430\u0442 $remainingCount \u0437\u043d\u0430\u043a\u0430"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430\u0434\u043e\u043b\u0443"; }, get$reorderItemToEnd: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u0432 \u043a\u0440\u0430\u044f"; }, get$reorderItemToStart: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u0432 \u043d\u0430\u0447\u0430\u043b\u043e\u0442\u043e"; }, get$reorderItemUp: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0418\u0437\u0431\u0440\u0430\u043d \u0435 1 \u0435\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther: function() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0438 \u0441\u0430 $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e"; }, get$tabLabelRaw: function() { return "\u0420\u0430\u0437\u0434\u0435\u043b $tabIndex \u043e\u0442 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0427\u0410\u0421"; }, get$timePickerHourLabel: function() { return "\u0427\u0430\u0441"; }, get$timePickerHourModeAnnouncement: function() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u0435"; }, get$timePickerInputHelpText: function() { return "\u0412\u042a\u0412\u0415\u0414\u0415\u0422\u0415 \u0427\u0410\u0421"; }, get$timePickerMinuteLabel: function() { return "\u041c\u0438\u043d\u0443\u0442\u0430"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u0438\u043d\u0443\u0442\u0438"; } }; Y.MaterialLocalizationBn.prototype = { get$alertDialogLabel: function() { return "\u09b8\u09a4\u09b0\u09cd\u0995\u09a4\u09be"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u09ab\u09bf\u09b0\u09c7 \u09af\u09be\u09a8"; }, get$calendarModeButtonLabel: function() { return "\u0995\u09cd\u09af\u09be\u09b2\u09c7\u09a8\u09cd\u09a1\u09be\u09b0 \u09ae\u09c7\u09be\u09a1\u09c7 \u09ac\u09a6\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$cancelButtonLabel: function() { return "\u09ac\u09be\u09a4\u09bf\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$collapsedIconTapHint: function() { return "\u09ac\u09dc \u0995\u09b0\u09c1\u09a8"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u09a4\u09be\u09b0\u09bf\u0996 \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$dateOutOfRangeLabel: function() { return "\u09a4\u09be\u09b0\u09bf\u0996\u09c7\u09b0 \u09ac\u09cd\u09af\u09be\u09aa\u09cd\u09a4\u09bf\u09b0 \u09ac\u09be\u0987\u09b0\u09c7\u0964"; }, get$datePickerHelpText: function() { return "\u09a4\u09be\u09b0\u09bf\u0996 \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$dialModeButtonLabel: function() { return "\u09a1\u09be\u09df\u09be\u09b2 \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be\u09b0 \u09ae\u09cb\u09a1\u09c7 \u09aa\u09be\u09b2\u09cd\u099f\u09be\u09a8"; }, get$dialogLabel: function() { return "\u09a1\u09be\u09df\u09be\u09b2\u0997"; }, get$drawerLabel: function() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09be\u09a8 \u09ae\u09c7\u09a8\u09c1"; }, get$expandedIconTapHint: function() { return "\u0986\u09dc\u09be\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$inputDateModeButtonLabel: function() { return "\u0987\u09a8\u09aa\u09c1\u099f \u09ae\u09c7\u09be\u09a1\u09c7 \u09ac\u09a6\u09b2 \u0995\u09b0\u09c1\u09a8"; }, get$inputTimeModeButtonLabel: function() { return "\u099f\u09c7\u0995\u09cd\u09b8\u099f \u0987\u09a8\u09aa\u09c1\u099f \u09ae\u09cb\u09a1\u09c7 \u09aa\u09be\u09b2\u09cd\u099f\u09be\u09a8"; }, get$invalidDateFormatLabel: function() { return "\u09ad\u09c1\u09b2 \u09ab\u09b0\u09cd\u09ae\u09cd\u09af\u09be\u099f\u0964"; }, get$invalidTimeLabel: function() { return "\u09b8\u09a0\u09bf\u0995 \u09b8\u09ae\u09df \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u09e7\u099f\u09bf \u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\u099f\u09bf \u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u09b2\u09be\u0987\u09b8\u09c7\u09a8\u09cd\u09b8"; }, get$modalBarrierDismissLabel: function() { return "\u0996\u09be\u09b0\u09bf\u099c \u0995\u09b0\u09c1\u09a8"; }, get$nextMonthTooltip: function() { return "\u09aa\u09b0\u09c7\u09b0 \u09ae\u09be\u09b8"; }, get$nextPageTooltip: function() { return "\u09aa\u09b0\u09c7\u09b0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$okButtonLabel: function() { return "\u09a0\u09bf\u0995 \u0986\u099b\u09c7"; }, get$openAppDrawerTooltip: function() { return "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09c1\u09b2\u09c1\u09a8"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u099f\u09bf\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $firstRow-$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u09aa\u09cd\u09b0\u09be\u09df $rowCount\u099f\u09bf\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $firstRow-$lastRow \u09a8\u09ae\u09cd\u09ac\u09b0"; }, get$popupMenuLabel: function() { return "\u09aa\u09aa-\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0986\u0997\u09c7\u09b0 \u09ae\u09be\u09b8"; }, get$previousPageTooltip: function() { return "\u0986\u0997\u09c7\u09b0 \u09aa\u09c3\u09b7\u09cd\u09a0\u09be"; }, get$refreshIndicatorSemanticLabel: function() { return "\u09b0\u09bf\u09ab\u09cd\u09b0\u09c7\u09b6 \u0995\u09b0\u09c1\u09a8"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0986\u09b0 \u09e7\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0986\u09b0 $remainingCount\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u09a8\u09bf\u099a\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$reorderItemToEnd: function() { return "\u098f\u0995\u09a6\u09ae \u09b6\u09c7\u09b7\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09af\u09be\u09a8"; }, get$reorderItemToStart: function() { return "\u099a\u09be\u09b2\u09c1 \u0995\u09b0\u09a4\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$reorderItemUp: function() { return "\u0989\u09aa\u09b0\u09c7\u09b0 \u09a6\u09bf\u0995\u09c7 \u09b8\u09b0\u09be\u09a8"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u09ac\u099b\u09b0 \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u09e7\u099f\u09bf \u0986\u0987\u099f\u09c7\u09ae \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be \u09b9\u09df\u09c7\u099b\u09c7"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\u099f\u09bf \u0986\u0987\u099f\u09c7\u09ae \u09ac\u09c7\u099b\u09c7 \u09a8\u09c7\u0993\u09df\u09be \u09b9\u09df\u09c7\u099b\u09c7"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u09ae\u09c7\u09a8\u09c1 \u09a6\u09c7\u0996\u09be\u09a8"; }, get$tabLabelRaw: function() { return "$tabCount-\u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $tabIndex\u099f\u09bf \u099f\u09cd\u09af\u09be\u09ac"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u09b8\u09ae\u09df \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$timePickerHourLabel: function() { return "\u0998\u09a3\u09cd\u099f\u09be"; }, get$timePickerHourModeAnnouncement: function() { return "\u0998\u09a3\u09cd\u099f\u09be \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; }, get$timePickerInputHelpText: function() { return "\u09b8\u09ae\u09df \u09b2\u09bf\u0996\u09c1\u09a8"; }, get$timePickerMinuteLabel: function() { return "\u09ae\u09bf\u09a8\u09bf\u099f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u09ae\u09bf\u09a8\u09bf\u099f \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"; } }; Y.MaterialLocalizationBs.prototype = { get$alertDialogLabel: function() { return "Upozorenje"; }, get$anteMeridiemAbbreviation: function() { return "prijepodne"; }, get$backButtonTooltip: function() { return "Nazad"; }, get$calendarModeButtonLabel: function() { return "Prebacite na kalendar"; }, get$cancelButtonLabel: function() { return "OTKA\u017dI"; }, get$collapsedIconTapHint: function() { return "Pro\u0161iri"; }, get$dateHelpText: function() { return "dd. mm. gggg."; }, get$dateInputLabel: function() { return "Unesite datum"; }, get$dateOutOfRangeLabel: function() { return "Izvan raspona."; }, get$datePickerHelpText: function() { return "ODABERITE DATUM"; }, get$dialModeButtonLabel: function() { return "Prebacivanje na na\u010din rada alata za biranje"; }, get$dialogLabel: function() { return "Dijalo\u0161ki okvir"; }, get$drawerLabel: function() { return "Meni za navigaciju"; }, get$expandedIconTapHint: function() { return "Suzi"; }, get$inputDateModeButtonLabel: function() { return "Prebacite na unos teksta"; }, get$inputTimeModeButtonLabel: function() { return "Prebacivanje na na\u010din rada unosa teksta"; }, get$invalidDateFormatLabel: function() { return "Neva\u017ee\u0107i format."; }, get$invalidTimeLabel: function() { return "Unesite ispravno vrijeme"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenca"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licence"; }, get$modalBarrierDismissLabel: function() { return "Odbaci"; }, get$nextMonthTooltip: function() { return "Sljede\u0107i mjesec"; }, get$nextPageTooltip: function() { return "Sljede\u0107a stranica"; }, get$okButtonLabel: function() { return "Uredu"; }, get$openAppDrawerTooltip: function() { return "Otvorite meni za navigaciju"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow od oko $rowCount"; }, get$popupMenuLabel: function() { return "Sko\u010dni meni"; }, get$postMeridiemAbbreviation: function() { return "poslijepodne"; }, get$previousMonthTooltip: function() { return "Prethodni mjesec"; }, get$previousPageTooltip: function() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel: function() { return "Osvje\u017ei"; }, get$remainingTextFieldCharacterCountFew: function() { return "Jo\u0161 $remainingCount znaka"; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Jo\u0161 jedan znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Jo\u0161 $remainingCount znakova"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Pomjeri nadolje"; }, get$reorderItemToEnd: function() { return "Pomjerite na kraj"; }, get$reorderItemToStart: function() { return "Pomjerite na po\u010detak"; }, get$reorderItemUp: function() { return "Pomjeri nagore"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Odaberite godinu"; }, get$selectedRowCountTitleFew: function() { return "Odabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Odabrana je jedna stavka"; }, get$selectedRowCountTitleOther: function() { return "Odabrano je $selectedRowCount stavki"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Prika\u017ei meni"; }, get$tabLabelRaw: function() { return "$tabIndex. kartica od $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "ODABERITE VRIJEME"; }, get$timePickerHourLabel: function() { return "Sat"; }, get$timePickerHourModeAnnouncement: function() { return "Odaberite sat"; }, get$timePickerInputHelpText: function() { return "UNESITE VRIJEME"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Odaberite minute"; } }; Y.MaterialLocalizationCa.prototype = { get$alertDialogLabel: function() { return "Alerta"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Enrere"; }, get$calendarModeButtonLabel: function() { return "Canvia al calendari"; }, get$cancelButtonLabel: function() { return "CANCEL\xb7LA"; }, get$collapsedIconTapHint: function() { return "Desplega"; }, get$dateHelpText: function() { return "mm/dd/aaaa"; }, get$dateInputLabel: function() { return "Introdueix una data"; }, get$dateOutOfRangeLabel: function() { return "Fora de l'abast."; }, get$datePickerHelpText: function() { return "SELECCIONA LA DATA"; }, get$dialModeButtonLabel: function() { return "Canvia al mode de selector de dial"; }, get$dialogLabel: function() { return "Di\xe0leg"; }, get$drawerLabel: function() { return "Men\xfa de navegaci\xf3"; }, get$expandedIconTapHint: function() { return "Replega"; }, get$inputDateModeButtonLabel: function() { return "Canvia a introducci\xf3 de text"; }, get$inputTimeModeButtonLabel: function() { return "Canvia al mode d'introducci\xf3 de text"; }, get$invalidDateFormatLabel: function() { return "El format no \xe9s v\xe0lid."; }, get$invalidTimeLabel: function() { return "Introdueix una hora v\xe0lida"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0llic\xe8ncia"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0llic\xe8ncies"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Llic\xe8ncies"; }, get$modalBarrierDismissLabel: function() { return "Ignora"; }, get$nextMonthTooltip: function() { return "Mes seg\xfcent"; }, get$nextPageTooltip: function() { return "P\xe0gina seg\xfcent"; }, get$okButtonLabel: function() { return "D'ACORD"; }, get$openAppDrawerTooltip: function() { return "Obre el men\xfa de navegaci\xf3"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow d'aproximadament $rowCount"; }, get$popupMenuLabel: function() { return "Men\xfa emergent"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Mes anterior"; }, get$previousPageTooltip: function() { return "P\xe0gina anterior"; }, get$refreshIndicatorSemanticLabel: function() { return "Actualitza"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Queda 1\xa0car\xe0cter"; }, get$remainingTextFieldCharacterCountOther: function() { return "Queden $remainingCount\xa0car\xe0cters"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Mou avall"; }, get$reorderItemToEnd: function() { return "Mou al final"; }, get$reorderItemToStart: function() { return "Mou al principi"; }, get$reorderItemUp: function() { return "Mou amunt"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Selecciona un any"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "S'ha seleccionat 1\xa0element"; }, get$selectedRowCountTitleOther: function() { return "S'han seleccionat $selectedRowCount\xa0elements"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Mostra el men\xfa"; }, get$tabLabelRaw: function() { return "Pestanya $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SELECCIONA L'HORA"; }, get$timePickerHourLabel: function() { return "Hora"; }, get$timePickerHourModeAnnouncement: function() { return "Selecciona les hores"; }, get$timePickerInputHelpText: function() { return "INTRODUEIX L'HORA"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Selecciona els minuts"; } }; Y.MaterialLocalizationCs.prototype = { get$alertDialogLabel: function() { return "Upozorn\u011bn\xed"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Zp\u011bt"; }, get$calendarModeButtonLabel: function() { return "P\u0159epnout na kalend\xe1\u0159"; }, get$cancelButtonLabel: function() { return "ZRU\u0160IT"; }, get$collapsedIconTapHint: function() { return "Rozbalit"; }, get$dateHelpText: function() { return "mm.dd.rrrr"; }, get$dateInputLabel: function() { return "Zadejte datum"; }, get$dateOutOfRangeLabel: function() { return "Mimo rozsah."; }, get$datePickerHelpText: function() { return "VYBERTE DATUM"; }, get$dialModeButtonLabel: function() { return "P\u0159epnout na re\u017eim v\xfdb\u011bru \u010dasu"; }, get$dialogLabel: function() { return "Dialogov\xe9 okno"; }, get$drawerLabel: function() { return "Naviga\u010dn\xed nab\xeddka"; }, get$expandedIconTapHint: function() { return "Sbalit"; }, get$inputDateModeButtonLabel: function() { return "P\u0159epnout na zad\xe1v\xe1n\xed"; }, get$inputTimeModeButtonLabel: function() { return "P\u0159epnout na re\u017eim zad\xe1v\xe1n\xed textu"; }, get$invalidDateFormatLabel: function() { return "Neplatn\xfd form\xe1t."; }, get$invalidTimeLabel: function() { return "Zadejte platn\xfd \u010das"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount\xa0licence"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount\xa0licence"; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licenc\xed"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licence"; }, get$modalBarrierDismissLabel: function() { return "Zav\u0159\xedt"; }, get$nextMonthTooltip: function() { return "Dal\u0161\xed m\u011bs\xedc"; }, get$nextPageTooltip: function() { return "Dal\u0161\xed str\xe1nka"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Otev\u0159\xedt naviga\u010dn\xed nab\xeddku"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow z\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow z\xa0asi $rowCount"; }, get$popupMenuLabel: function() { return "Vyskakovac\xed nab\xeddka"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "P\u0159edchoz\xed m\u011bs\xedc"; }, get$previousPageTooltip: function() { return "P\u0159edchoz\xed str\xe1nka"; }, get$refreshIndicatorSemanticLabel: function() { return "Obnovit"; }, get$remainingTextFieldCharacterCountFew: function() { return "Zb\xfdvaj\xed $remainingCount znaky"; }, get$remainingTextFieldCharacterCountMany: function() { return "Zb\xfdv\xe1 $remainingCount znaku"; }, get$remainingTextFieldCharacterCountOne: function() { return "Zb\xfdv\xe1 1 znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Zb\xfdv\xe1 $remainingCount znak\u016f"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "P\u0159esunout dol\u016f"; }, get$reorderItemToEnd: function() { return "P\u0159esunout na konec"; }, get$reorderItemToStart: function() { return "P\u0159esunout na za\u010d\xe1tek"; }, get$reorderItemUp: function() { return "P\u0159esunout nahoru"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Vyberte rok"; }, get$selectedRowCountTitleFew: function() { return "Jsou vybr\xe1ny $selectedRowCount polo\u017eky"; }, get$selectedRowCountTitleMany: function() { return "Je vybr\xe1no $selectedRowCount polo\u017eky"; }, get$selectedRowCountTitleOne: function() { return "Je vybr\xe1na 1\xa0polo\u017eka"; }, get$selectedRowCountTitleOther: function() { return "Je vybr\xe1no $selectedRowCount polo\u017eek"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Zobrazit nab\xeddku"; }, get$tabLabelRaw: function() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VYBERTE \u010cAS"; }, get$timePickerHourLabel: function() { return "Hodina"; }, get$timePickerHourModeAnnouncement: function() { return "Vyberte hodiny"; }, get$timePickerInputHelpText: function() { return "ZADEJTE \u010cAS"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Vyberte minuty"; } }; Y.MaterialLocalizationDa.prototype = { get$alertDialogLabel: function() { return "Underretning"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Tilbage"; }, get$calendarModeButtonLabel: function() { return "Skift til kalender"; }, get$cancelButtonLabel: function() { return "ANNULLER"; }, get$collapsedIconTapHint: function() { return "Udvid"; }, get$dateHelpText: function() { return "dd/mm/\xe5\xe5\xe5\xe5"; }, get$dateInputLabel: function() { return "Angiv en dato"; }, get$dateOutOfRangeLabel: function() { return "Uden for r\xe6kkevidde."; }, get$datePickerHelpText: function() { return "V\xc6LG DATO"; }, get$dialModeButtonLabel: function() { return "Skift til urskivev\xe6lger"; }, get$dialogLabel: function() { return "Dialogboks"; }, get$drawerLabel: function() { return "Navigationsmenu"; }, get$expandedIconTapHint: function() { return "Skjul"; }, get$inputDateModeButtonLabel: function() { return "Skift til input"; }, get$inputTimeModeButtonLabel: function() { return "Skift til indtastning"; }, get$invalidDateFormatLabel: function() { return "Ugyldigt format."; }, get$invalidTimeLabel: function() { return "Angiv et gyldigt tidspunkt"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licens"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenser"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenser"; }, get$modalBarrierDismissLabel: function() { return "Afvis"; }, get$nextMonthTooltip: function() { return "N\xe6ste m\xe5ned"; }, get$nextPageTooltip: function() { return "N\xe6ste side"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\xc5bn navigationsmenuen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow af $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow af ca. $rowCount"; }, get$popupMenuLabel: function() { return "Pop op-menu"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Forrige m\xe5ned"; }, get$previousPageTooltip: function() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel: function() { return "Opdater"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\xc9t tegn tilbage"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount tegn tilbage"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Flyt ned"; }, get$reorderItemToEnd: function() { return "Flyt til sidst p\xe5 listen"; }, get$reorderItemToStart: function() { return "Flyt til f\xf8rst p\xe5 listen"; }, get$reorderItemUp: function() { return "Flyt op"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "V\xe6lg \xe5r"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 element er valgt"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Vis menu"; }, get$tabLabelRaw: function() { return "Fane $tabIndex af $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "V\xc6LG TIDSPUNKT"; }, get$timePickerHourLabel: function() { return "Time"; }, get$timePickerHourModeAnnouncement: function() { return "V\xe6lg timer"; }, get$timePickerInputHelpText: function() { return "ANGIV TIDSPUNKT"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "V\xe6lg minutter"; } }; Y.MaterialLocalizationDe.prototype = { get$alertDialogLabel: function() { return "Benachrichtigung"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Zur\xfcck"; }, get$calendarModeButtonLabel: function() { return "Zum Kalender wechseln"; }, get$cancelButtonLabel: function() { return "ABBRECHEN"; }, get$collapsedIconTapHint: function() { return "Maximieren"; }, get$dateHelpText: function() { return "tt.mm.jjjj"; }, get$dateInputLabel: function() { return "Datum eingeben"; }, get$dateOutOfRangeLabel: function() { return "Au\xdferhalb des Zeitraums."; }, get$datePickerHelpText: function() { return "DATUM AUSW\xc4HLEN"; }, get$dialModeButtonLabel: function() { return "Zur Uhrzeitauswahl wechseln"; }, get$dialogLabel: function() { return "Dialogfeld"; }, get$drawerLabel: function() { return "Navigationsmen\xfc"; }, get$expandedIconTapHint: function() { return "Minimieren"; }, get$inputDateModeButtonLabel: function() { return "Zur Texteingabe wechseln"; }, get$inputTimeModeButtonLabel: function() { return "Zum Texteingabemodus wechseln"; }, get$invalidDateFormatLabel: function() { return "Ung\xfcltiges Format."; }, get$invalidTimeLabel: function() { return "Geben Sie eine g\xfcltige Uhrzeit ein"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0Lizenz"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0Lizenzen"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lizenzen"; }, get$modalBarrierDismissLabel: function() { return "Schlie\xdfen"; }, get$nextMonthTooltip: function() { return "N\xe4chster Monat"; }, get$nextPageTooltip: function() { return "N\xe4chste Seite"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Navigationsmen\xfc \xf6ffnen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow von $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow von etwa $rowCount"; }, get$popupMenuLabel: function() { return "Pop-up-Men\xfc"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Vorheriger Monat"; }, get$previousPageTooltip: function() { return "Vorherige Seite"; }, get$refreshIndicatorSemanticLabel: function() { return "Aktualisieren"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Noch 1\xa0Zeichen"; }, get$remainingTextFieldCharacterCountOther: function() { return "Noch $remainingCount\xa0Zeichen"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Nach unten verschieben"; }, get$reorderItemToEnd: function() { return "An das Ende verschieben"; }, get$reorderItemToStart: function() { return "An den Anfang verschieben"; }, get$reorderItemUp: function() { return "Nach oben verschieben"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Jahr ausw\xe4hlen"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\xa0Element ausgew\xe4hlt"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\xa0Elemente ausgew\xe4hlt"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Keine Objekte ausgew\xe4hlt"; }, get$showMenuTooltip: function() { return "Men\xfc anzeigen"; }, get$tabLabelRaw: function() { return "Tab $tabIndex von $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "UHRZEIT AUSW\xc4HLEN"; }, get$timePickerHourLabel: function() { return "Stunde"; }, get$timePickerHourModeAnnouncement: function() { return "Stunden ausw\xe4hlen"; }, get$timePickerInputHelpText: function() { return "ZEIT EINGEBEN"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$timePickerMinuteModeAnnouncement: function() { return "Minuten ausw\xe4hlen"; } }; Y.MaterialLocalizationDeCh.prototype = { get$invalidTimeLabel: function() { return "Gib eine g\xfcltige Uhrzeit ein"; }, get$dateOutOfRangeLabel: function() { return "Ausserhalb des Zeitraums."; }, get$modalBarrierDismissLabel: function() { return "Schliessen"; } }; Y.MaterialLocalizationEl.prototype = { get$alertDialogLabel: function() { return "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"; }, get$anteMeridiemAbbreviation: function() { return "\u03c0.\u03bc."; }, get$backButtonTooltip: function() { return "\u03a0\u03af\u03c3\u03c9"; }, get$calendarModeButtonLabel: function() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf"; }, get$cancelButtonLabel: function() { return "\u0391\u039a\u03a5\u03a1\u03a9\u03a3\u0397"; }, get$collapsedIconTapHint: function() { return "\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7"; }, get$dateHelpText: function() { return "\u03bc\u03bc/\u03b7\u03b7/\u03b5\u03b5\u03b5\u03b5"; }, get$dateInputLabel: function() { return "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2"; }, get$dateOutOfRangeLabel: function() { return "\u0395\u03ba\u03c4\u03cc\u03c2 \u03b5\u03cd\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b9\u03bc\u03ce\u03bd."; }, get$datePickerHelpText: function() { return "\u0395\u03a0\u0399\u039b\u039f\u0393\u0397 \u0397\u039c\u0395\u03a1\u039f\u039c\u0397\u039d\u0399\u0391\u03a3"; }, get$dialModeButtonLabel: function() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03ba\u03bb\u03ae\u03c3\u03b7\u03c2"; }, get$dialogLabel: function() { return "\u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03b4\u03b9\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5"; }, get$drawerLabel: function() { return "\u039c\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"; }, get$expandedIconTapHint: function() { return "\u03a3\u03cd\u03bc\u03c0\u03c4\u03c5\u03be\u03b7"; }, get$inputDateModeButtonLabel: function() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b9\u03c3\u03b7"; }, get$inputTimeModeButtonLabel: function() { return "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"; }, get$invalidDateFormatLabel: function() { return "\u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03bc\u03bf\u03c1\u03c6\u03ae."; }, get$invalidTimeLabel: function() { return "\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03ce\u03c1\u03b1"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u03ac\u03b4\u03b5\u03b9\u03b1"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u03ac\u03b4\u03b5\u03b9\u03b5\u03c2"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0386\u03b4\u03b5\u03b9\u03b5\u03c2"; }, get$modalBarrierDismissLabel: function() { return "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7"; }, get$nextMonthTooltip: function() { return "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2"; }, get$nextPageTooltip: function() { return "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$okButtonLabel: function() { return "\u039f\u039a"; }, get$openAppDrawerTooltip: function() { return "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03bc\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow \u03b1\u03c0\u03cc $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow \u03b1\u03c0\u03cc \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 $rowCount"; }, get$popupMenuLabel: function() { return "\u0391\u03bd\u03b1\u03b4\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd"; }, get$postMeridiemAbbreviation: function() { return "\u03bc.\u03bc."; }, get$previousMonthTooltip: function() { return "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03ae\u03bd\u03b1\u03c2"; }, get$previousPageTooltip: function() { return "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03b5\u03b9 1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd $remainingCount \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03ba\u03ac\u03c4\u03c9"; }, get$reorderItemToEnd: function() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2"; }, get$reorderItemToStart: function() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae"; }, get$reorderItemUp: function() { return "\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03ac\u03bd\u03c9"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03ad\u03c4\u03bf\u03c5\u03c2"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 1 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf"; }, get$selectedRowCountTitleOther: function() { return "\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd $selectedRowCount \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03bc\u03b5\u03bd\u03bf\u03cd"; }, get$tabLabelRaw: function() { return "\u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 $tabIndex \u03b1\u03c0\u03cc $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "\u0395\u03a0\u0399\u039b\u039f\u0393\u0397 \u03a9\u03a1\u0391\u03a3"; }, get$timePickerHourLabel: function() { return "\u038f\u03c1\u03b1"; }, get$timePickerHourModeAnnouncement: function() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c9\u03c1\u03ce\u03bd"; }, get$timePickerInputHelpText: function() { return "\u0395\u0399\u03a3\u0391\u0393\u03a9\u0393\u0397 \u03a9\u03a1\u0391\u03a3"; }, get$timePickerMinuteLabel: function() { return "\u039b\u03b5\u03c0\u03c4\u03cc"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bb\u03b5\u03c0\u03c4\u03ce\u03bd"; } }; Y.MaterialLocalizationEn.prototype = { get$alertDialogLabel: function() { return "Alert"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Back"; }, get$calendarModeButtonLabel: function() { return "Switch to calendar"; }, get$cancelButtonLabel: function() { return "CANCEL"; }, get$collapsedIconTapHint: function() { return "Expand"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Enter Date"; }, get$dateOutOfRangeLabel: function() { return "Out of range."; }, get$datePickerHelpText: function() { return "SELECT DATE"; }, get$dialModeButtonLabel: function() { return "Switch to dial picker mode"; }, get$dialogLabel: function() { return "Dialog"; }, get$drawerLabel: function() { return "Navigation menu"; }, get$expandedIconTapHint: function() { return "Collapse"; }, get$inputDateModeButtonLabel: function() { return "Switch to input"; }, get$inputTimeModeButtonLabel: function() { return "Switch to text input mode"; }, get$invalidDateFormatLabel: function() { return "Invalid format."; }, get$invalidTimeLabel: function() { return "Enter a valid time"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 license"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenses"; }, get$modalBarrierDismissLabel: function() { return "Dismiss"; }, get$nextMonthTooltip: function() { return "Next month"; }, get$nextPageTooltip: function() { return "Next page"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Open navigation menu"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow of $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow of about $rowCount"; }, get$popupMenuLabel: function() { return "Popup menu"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Previous month"; }, get$previousPageTooltip: function() { return "Previous page"; }, get$refreshIndicatorSemanticLabel: function() { return "Refresh"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 character remaining"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "No characters remaining"; }, get$reorderItemDown: function() { return "Move down"; }, get$reorderItemToEnd: function() { return "Move to the end"; }, get$reorderItemToStart: function() { return "Move to the start"; }, get$reorderItemUp: function() { return "Move up"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Select year"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item selected"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount items selected"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "No items selected"; }, get$showMenuTooltip: function() { return "Show menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex of $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "SELECT TIME"; }, get$timePickerHourLabel: function() { return "Hour"; }, get$timePickerHourModeAnnouncement: function() { return "Select hours"; }, get$timePickerInputHelpText: function() { return "ENTER TIME"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$timePickerMinuteModeAnnouncement: function() { return "Select minutes"; } }; Y.MaterialLocalizationEnAu.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnCa.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnGb.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnIe.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnIn.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnNz.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnSg.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEnZa.prototype = { get$dateInputLabel: function() { return "Enter date"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$licensesPageTitle: function() { return "Licences"; }, get$licensesPackageDetailTextZero: function() { return "No licences"; }, get$licensesPackageDetailTextOne: function() { return "1 licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licences"; }, get$popupMenuLabel: function() { return "Pop-up menu"; }, get$dialogLabel: function() { return "Dialogue"; } }; Y.MaterialLocalizationEs.prototype = { get$alertDialogLabel: function() { return "Alerta"; }, get$anteMeridiemAbbreviation: function() { return "a. m."; }, get$backButtonTooltip: function() { return "Atr\xe1s"; }, get$calendarModeButtonLabel: function() { return "Cambiar a calendario"; }, get$cancelButtonLabel: function() { return "CANCELAR"; }, get$collapsedIconTapHint: function() { return "Mostrar"; }, get$dateHelpText: function() { return "mm/dd/aaaa"; }, get$dateInputLabel: function() { return "Introduce una fecha"; }, get$dateOutOfRangeLabel: function() { return "Fuera del periodo v\xe1lido."; }, get$datePickerHelpText: function() { return "SELECCIONAR FECHA"; }, get$dialModeButtonLabel: function() { return "Cambiar al modo de selecci\xf3n de hora"; }, get$dialogLabel: function() { return "Cuadro de di\xe1logo"; }, get$drawerLabel: function() { return "Men\xfa de navegaci\xf3n"; }, get$expandedIconTapHint: function() { return "Ocultar"; }, get$inputDateModeButtonLabel: function() { return "Cambiar a cuadro de texto"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de introducci\xf3n de texto"; }, get$invalidDateFormatLabel: function() { return "Formato no v\xe1lido."; }, get$invalidTimeLabel: function() { return "Indica una hora v\xe1lida"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licencia"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licencias"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencias"; }, get$modalBarrierDismissLabel: function() { return "Cerrar"; }, get$nextMonthTooltip: function() { return "Mes siguiente"; }, get$nextPageTooltip: function() { return "P\xe1gina siguiente"; }, get$okButtonLabel: function() { return "ACEPTAR"; }, get$openAppDrawerTooltip: function() { return "Abrir el men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2011$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2011$lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel: function() { return "Men\xfa emergente"; }, get$postMeridiemAbbreviation: function() { return "p. m."; }, get$previousMonthTooltip: function() { return "Mes anterior"; }, get$previousPageTooltip: function() { return "P\xe1gina anterior"; }, get$refreshIndicatorSemanticLabel: function() { return "Actualizar"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Queda 1 car\xe1cter."; }, get$remainingTextFieldCharacterCountOther: function() { return "Quedan $remainingCount caracteres"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Mover hacia abajo"; }, get$reorderItemToEnd: function() { return "Mover al final"; }, get$reorderItemToStart: function() { return "Mover al principio"; }, get$reorderItemUp: function() { return "Mover hacia arriba"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Seleccionar a\xf1o"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\xa0elemento seleccionado"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\xa0elementos seleccionados"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "No se han seleccionado elementos"; }, get$showMenuTooltip: function() { return "Mostrar men\xfa"; }, get$tabLabelRaw: function() { return "Pesta\xf1a $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "SELECCIONAR HORA"; }, get$timePickerHourLabel: function() { return "Hora"; }, get$timePickerHourModeAnnouncement: function() { return "Seleccionar horas"; }, get$timePickerInputHelpText: function() { return "INTRODUCIR HORA"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Seleccionar minutos"; } }; Y.MaterialLocalizationEs419.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsAr.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsBo.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsCl.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsCo.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsCr.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsDo.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsEc.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsGt.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsHn.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsMx.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsNi.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsPa.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsPe.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsPr.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsPy.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsSv.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsUs.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsUy.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEsVe.prototype = { get$licensesPackageDetailTextOne: function() { return "1 licencia"; }, get$timePickerInputHelpText: function() { return "INGRESAR HORA"; }, get$invalidTimeLabel: function() { return "Ingresa una hora v\xe1lida"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencias"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar al modo de entrada de texto"; }, get$dateInputLabel: function() { return "Ingresar fecha"; }, get$calendarModeButtonLabel: function() { return "Cambiar al calendario"; }, get$dateOutOfRangeLabel: function() { return "Fuera de rango"; }, get$invalidDateFormatLabel: function() { return "El formato no es v\xe1lido."; }, get$inputDateModeButtonLabel: function() { return "Cambiar a modo de entrada"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$reorderItemToStart: function() { return "Mover al inicio"; }, get$modalBarrierDismissLabel: function() { return "Descartar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo mes"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstde; }, get$selectedRowCountTitleOne: function() { return "Se seleccion\xf3 1 elemento"; }, get$selectedRowCountTitleOther: function() { return string$.Se_sel; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$dialogLabel: function() { return "Di\xe1logo"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$collapsedIconTapHint: function() { return "Expandir"; } }; Y.MaterialLocalizationEt.prototype = { get$alertDialogLabel: function() { return "M\xe4rguanne"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Tagasi"; }, get$calendarModeButtonLabel: function() { return "Kalendrile l\xfclitumine"; }, get$cancelButtonLabel: function() { return "T\xdcHISTA"; }, get$collapsedIconTapHint: function() { return "Laienda"; }, get$dateHelpText: function() { return "pp.kk.aaaa"; }, get$dateInputLabel: function() { return "Sisestage kuup\xe4ev"; }, get$dateOutOfRangeLabel: function() { return "Vahemikust v\xe4ljas."; }, get$datePickerHelpText: function() { return "VALIGE KUUP\xc4EV"; }, get$dialModeButtonLabel: function() { return "L\xfclitumine valikuketta re\u017eiimile"; }, get$dialogLabel: function() { return "Dialoog"; }, get$drawerLabel: function() { return "Navigeerimismen\xfc\xfc"; }, get$expandedIconTapHint: function() { return "Ahenda"; }, get$inputDateModeButtonLabel: function() { return "Sisestusre\u017eiimile l\xfclitumine"; }, get$inputTimeModeButtonLabel: function() { return "L\xfclitumine tekstisisestusre\u017eiimile"; }, get$invalidDateFormatLabel: function() { return "Sobimatu vorming."; }, get$invalidTimeLabel: function() { return "Sisestage sobiv kellaaeg"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 litsents"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount litsentsi"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Litsentsid"; }, get$modalBarrierDismissLabel: function() { return "Loobu"; }, get$nextMonthTooltip: function() { return "J\xe4rgmine kuu"; }, get$nextPageTooltip: function() { return "J\xe4rgmine leht"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Ava navigeerimismen\xfc\xfc"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow $rowCount-st"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow umbes $rowCount-st"; }, get$popupMenuLabel: function() { return "H\xfcpikmen\xfc\xfc"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Eelmine kuu"; }, get$previousPageTooltip: function() { return "Eelmine leht"; }, get$refreshIndicatorSemanticLabel: function() { return "V\xe4rskendamine"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "J\xe4\xe4nud on 1 t\xe4hem\xe4rk"; }, get$remainingTextFieldCharacterCountOther: function() { return "J\xe4\xe4nud on $remainingCount t\xe4hem\xe4rki"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Teisalda alla"; }, get$reorderItemToEnd: function() { return "Teisalda l\xf5ppu"; }, get$reorderItemToStart: function() { return "Teisalda algusesse"; }, get$reorderItemUp: function() { return "Teisalda \xfcles"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Valige aasta"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Valitud on 1 \xfcksus"; }, get$selectedRowCountTitleOther: function() { return "Valitud on $selectedRowCount \xfcksust"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Kuva men\xfc\xfc"; }, get$tabLabelRaw: function() { return "$tabIndex. vahekaart $tabCount-st"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VALIGE AEG"; }, get$timePickerHourLabel: function() { return "Tund"; }, get$timePickerHourModeAnnouncement: function() { return "Tundide valimine"; }, get$timePickerInputHelpText: function() { return "SISESTAGE AEG"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Minutite valimine"; } }; Y.MaterialLocalizationEu.prototype = { get$alertDialogLabel: function() { return "Alerta"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Atzera"; }, get$calendarModeButtonLabel: function() { return "Aldatu egutegiaren modura"; }, get$cancelButtonLabel: function() { return "UTZI"; }, get$collapsedIconTapHint: function() { return "Zabaldu"; }, get$dateHelpText: function() { return "uuuu/hh/ee"; }, get$dateInputLabel: function() { return "Idatzi data"; }, get$dateOutOfRangeLabel: function() { return "Barrutitik kanpo."; }, get$datePickerHelpText: function() { return "HAUTATU DATA"; }, get$dialModeButtonLabel: function() { return "Aldatu esfera hautatzeko modura"; }, get$dialogLabel: function() { return "Leihoa"; }, get$drawerLabel: function() { return "Nabigazio-menua"; }, get$expandedIconTapHint: function() { return "Tolestu"; }, get$inputDateModeButtonLabel: function() { return "Aldatu datak aukeratzeko modura"; }, get$inputTimeModeButtonLabel: function() { return "Aldatu testua idazteko modura"; }, get$invalidDateFormatLabel: function() { return "Formatuak ez du balio."; }, get$invalidTimeLabel: function() { return "Idatzi balio duen ordu bat"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lizentzia"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lizentzia"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lizentziak"; }, get$modalBarrierDismissLabel: function() { return "Baztertu"; }, get$nextMonthTooltip: function() { return "Hurrengo hilabetea"; }, get$nextPageTooltip: function() { return "Hurrengo orria"; }, get$okButtonLabel: function() { return "Ados"; }, get$openAppDrawerTooltip: function() { return "Ireki nabigazio-menua"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow - $lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow - $lastRow / $rowCount"; }, get$popupMenuLabel: function() { return "Menu gainerakorra"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Aurreko hilabetea"; }, get$previousPageTooltip: function() { return "Aurreko orria"; }, get$refreshIndicatorSemanticLabel: function() { return "Freskatu"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 karaktere geratzen da"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount karaktere geratzen dira"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Eraman behera"; }, get$reorderItemToEnd: function() { return "Eraman amaierara"; }, get$reorderItemToStart: function() { return "Eraman hasierara"; }, get$reorderItemUp: function() { return "Eraman gora"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Hautatu urtea"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 elementu hautatu da"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elementu hautatu dira"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Erakutsi menua"; }, get$tabLabelRaw: function() { return "$tabIndex/$tabCount fitxa"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "HAUTATU ORDUA"; }, get$timePickerHourLabel: function() { return "Ordua"; }, get$timePickerHourModeAnnouncement: function() { return "Hautatu orduak"; }, get$timePickerInputHelpText: function() { return "IDATZI ORDUA"; }, get$timePickerMinuteLabel: function() { return "Minutua"; }, get$timePickerMinuteModeAnnouncement: function() { return "Hautatu minutuak"; } }; Y.MaterialLocalizationFa.prototype = { get$alertDialogLabel: function() { return "\u0647\u0634\u062f\u0627\u0631"; }, get$anteMeridiemAbbreviation: function() { return "\u0642.\u0638."; }, get$backButtonTooltip: function() { return "\u0628\u0631\u06af\u0634\u062a"; }, get$calendarModeButtonLabel: function() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062a\u0642\u0648\u06cc\u0645"; }, get$cancelButtonLabel: function() { return "\u0644\u063a\u0648"; }, get$collapsedIconTapHint: function() { return "\u0628\u0632\u0631\u06af \u06a9\u0631\u062f\u0646"; }, get$dateHelpText: function() { return "\u0631\u0648\u0632/\u0645\u0627\u0647/\u0633\u0627\u0644"; }, get$dateInputLabel: function() { return "\u062a\u0627\u0631\u06cc\u062e \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$dateOutOfRangeLabel: function() { return "\u062e\u0627\u0631\u062c \u0627\u0632 \u0645\u062d\u062f\u0648\u062f\u0647."; }, get$datePickerHelpText: function() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e"; }, get$dialModeButtonLabel: function() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062d\u0627\u0644\u062a \u0627\u0646\u062a\u062e\u0627\u0628\u06af\u0631 \u0635\u0641\u062d\u0647 \u0633\u0627\u0639\u062a"; }, get$dialogLabel: function() { return "\u06a9\u0627\u062f\u0631 \u06af\u0641\u062a\u06af\u0648"; }, get$drawerLabel: function() { return "\u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"; }, get$expandedIconTapHint: function() { return "\u06a9\u0648\u0686\u06a9 \u06a9\u0631\u062f\u0646"; }, get$inputDateModeButtonLabel: function() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u0648\u0631\u0648\u062f\u06cc"; }, get$inputTimeModeButtonLabel: function() { return "\u0631\u0641\u062a\u0646 \u0628\u0647 \u062d\u0627\u0644\u062a \u0648\u0631\u0648\u062f\u06cc \u0646\u0648\u0634\u062a\u0627\u0631\u06cc"; }, get$invalidDateFormatLabel: function() { return "\u0642\u0627\u0644\u0628 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."; }, get$invalidTimeLabel: function() { return "\u0632\u0645\u0627\u0646 \u0645\u0639\u062a\u0628\u0631\u06cc \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u06f1 \u067e\u0631\u0648\u0627\u0646\u0647"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u067e\u0631\u0648\u0627\u0646\u0647"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0645\u062c\u0648\u0632\u0647\u0627"; }, get$modalBarrierDismissLabel: function() { return "\u0646\u067e\u0630\u06cc\u0631\u0641\u062a\u0646"; }, get$nextMonthTooltip: function() { return "\u0645\u0627\u0647 \u0628\u0639\u062f"; }, get$nextPageTooltip: function() { return "\u0635\u0641\u062d\u0647 \u0628\u0639\u062f"; }, get$okButtonLabel: function() { return "\u062a\u0623\u06cc\u06cc\u062f"; }, get$openAppDrawerTooltip: function() { return "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0627\u0632 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0627\u0632 \u062d\u062f\u0648\u062f $rowCount"; }, get$popupMenuLabel: function() { return "\u0645\u0646\u0648\u06cc \u0628\u0627\u0632\u0634\u0648"; }, get$postMeridiemAbbreviation: function() { return "\u0628.\u0638."; }, get$previousMonthTooltip: function() { return "\u0645\u0627\u0647 \u0642\u0628\u0644"; }, get$previousPageTooltip: function() { return "\u0635\u0641\u062d\u0647 \u0642\u0628\u0644"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0628\u0627\u0632\u062e\u0648\u0627\u0646\u06cc"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u06f1 \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u067e\u0627\u06cc\u06cc\u0646"; }, get$reorderItemToEnd: function() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0627\u0646\u062a\u0647\u0627"; }, get$reorderItemToStart: function() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0627\u0628\u062a\u062f\u0627"; }, get$reorderItemUp: function() { return "\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0628\u0627\u0644\u0627"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0627\u0644"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u06f1 \u0645\u0648\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0645\u0648\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0646\u062f"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648"; }, get$tabLabelRaw: function() { return "\u0628\u0631\u06af\u0647 $tabIndex \u0627\u0632 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0632\u0645\u0627\u0646"; }, get$timePickerHourLabel: function() { return "\u0633\u0627\u0639\u062a"; }, get$timePickerHourModeAnnouncement: function() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0627\u0639\u062a"; }, get$timePickerInputHelpText: function() { return "\u0632\u0645\u0627\u0646 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"; }, get$timePickerMinuteLabel: function() { return "\u062f\u0642\u06cc\u0642\u0647"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0642\u06cc\u0642\u0647"; } }; Y.MaterialLocalizationFi.prototype = { get$alertDialogLabel: function() { return "Ilmoitus"; }, get$anteMeridiemAbbreviation: function() { return "ap"; }, get$backButtonTooltip: function() { return "Takaisin"; }, get$calendarModeButtonLabel: function() { return "Vaihda kalenteriin"; }, get$cancelButtonLabel: function() { return "PERUUTA"; }, get$collapsedIconTapHint: function() { return "Laajenna"; }, get$dateHelpText: function() { return "pp/kk/vvvv"; }, get$dateInputLabel: function() { return "Lis\xe4\xe4 p\xe4iv\xe4m\xe4\xe4r\xe4"; }, get$dateOutOfRangeLabel: function() { return "P\xe4iv\xe4m\xe4\xe4r\xe4 ei kelpaa"; }, get$datePickerHelpText: function() { return "VALITSE P\xc4IV\xc4M\xc4\xc4R\xc4"; }, get$dialModeButtonLabel: function() { return "Valitse kellotauluvalitsin"; }, get$dialogLabel: function() { return "Valintaikkuna"; }, get$drawerLabel: function() { return "Navigointivalikko"; }, get$expandedIconTapHint: function() { return "Tiivist\xe4"; }, get$inputDateModeButtonLabel: function() { return "Vaihda tekstinsy\xf6tt\xf6\xf6n"; }, get$inputTimeModeButtonLabel: function() { return "Valitse sy\xf6tt\xf6tavaksi teksti"; }, get$invalidDateFormatLabel: function() { return "Virheellinen muoto"; }, get$invalidTimeLabel: function() { return "Lis\xe4\xe4 kelvollinen aika"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisenssi"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisenssi\xe4"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lisenssit"; }, get$modalBarrierDismissLabel: function() { return "Ohita"; }, get$nextMonthTooltip: function() { return "Seuraava kuukausi"; }, get$nextPageTooltip: function() { return "Seuraava sivu"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Avaa navigointivalikko"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow/$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow/~$rowCount"; }, get$popupMenuLabel: function() { return "Ponnahdusvalikko"; }, get$postMeridiemAbbreviation: function() { return "ip"; }, get$previousMonthTooltip: function() { return "Edellinen kuukausi"; }, get$previousPageTooltip: function() { return "Edellinen sivu"; }, get$refreshIndicatorSemanticLabel: function() { return "P\xe4ivitys"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 merkki j\xe4ljell\xe4"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount merkki\xe4 j\xe4ljell\xe4"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Siirr\xe4 alas"; }, get$reorderItemToEnd: function() { return "Siirr\xe4 loppuun"; }, get$reorderItemToStart: function() { return "Siirr\xe4 alkuun"; }, get$reorderItemUp: function() { return "Siirr\xe4 yl\xf6s"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Valitse vuosi"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\xa0kohde valittu"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount kohdetta valittu"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "N\xe4yt\xe4 valikko"; }, get$tabLabelRaw: function() { return "V\xe4lilehti $tabIndex/$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VALITSE AIKA"; }, get$timePickerHourLabel: function() { return "Tunti"; }, get$timePickerHourModeAnnouncement: function() { return "Valitse tunnit"; }, get$timePickerInputHelpText: function() { return "LIS\xc4\xc4 AIKA"; }, get$timePickerMinuteLabel: function() { return "Minuutti"; }, get$timePickerMinuteModeAnnouncement: function() { return "Valitse minuutit"; } }; Y.MaterialLocalizationFil.prototype = { get$alertDialogLabel: function() { return "Alerto"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Bumalik"; }, get$calendarModeButtonLabel: function() { return "Lumipat sa kalendaryo"; }, get$cancelButtonLabel: function() { return "KANSELAHIN"; }, get$collapsedIconTapHint: function() { return "I-expand"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Ilagay ang Petsa"; }, get$dateOutOfRangeLabel: function() { return "Wala sa hanay."; }, get$datePickerHelpText: function() { return "PUMILI NG PETSA"; }, get$dialModeButtonLabel: function() { return "Lumipat sa dial picker mode"; }, get$dialogLabel: function() { return "Dialog"; }, get$drawerLabel: function() { return "Menu ng navigation"; }, get$expandedIconTapHint: function() { return "I-collapse"; }, get$inputDateModeButtonLabel: function() { return "Lumipat sa input"; }, get$inputTimeModeButtonLabel: function() { return "Lumipat sa text input mode"; }, get$invalidDateFormatLabel: function() { return "Invalid ang format."; }, get$invalidTimeLabel: function() { return "Maglagay ng valid na oras"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisensya"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount na lisensya"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Mga Lisensya"; }, get$modalBarrierDismissLabel: function() { return "I-dismiss"; }, get$nextMonthTooltip: function() { return "Susunod na buwan"; }, get$nextPageTooltip: function() { return "Susunod na page"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Buksan ang menu ng navigation"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow ng $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstn; }, get$popupMenuLabel: function() { return "Popup na menu"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Nakaraang buwan"; }, get$previousPageTooltip: function() { return "Nakaraang page"; }, get$refreshIndicatorSemanticLabel: function() { return "Nagre-refresh"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 character ang natitira"; }, get$remainingTextFieldCharacterCountOther: function() { return string$.x24remai; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Ilipat pababa"; }, get$reorderItemToEnd: function() { return "Ilipat sa dulo"; }, get$reorderItemToStart: function() { return "Ilipat sa simula"; }, get$reorderItemUp: function() { return "Ilipat pataas"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Pumili ng taon"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item ang napili"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount na item ang napili"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Ipakita ang menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex ng $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "PUMILI NG ORAS"; }, get$timePickerHourLabel: function() { return "Oras"; }, get$timePickerHourModeAnnouncement: function() { return "Pumili ng mga oras"; }, get$timePickerInputHelpText: function() { return "MAGLAGAY NG ORAS"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Pumili ng mga minuto"; } }; Y.MaterialLocalizationFr.prototype = { get$alertDialogLabel: function() { return "Alerte"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Retour"; }, get$calendarModeButtonLabel: function() { return "Passer \xe0 l'agenda"; }, get$cancelButtonLabel: function() { return "ANNULER"; }, get$collapsedIconTapHint: function() { return "D\xe9velopper"; }, get$dateHelpText: function() { return "jj/mm/aaaa"; }, get$dateInputLabel: function() { return "Saisir une date"; }, get$dateOutOfRangeLabel: function() { return "Hors de port\xe9e."; }, get$datePickerHelpText: function() { return "S\xc9LECTIONNER UNE DATE"; }, get$dialModeButtonLabel: function() { return "Passer au mode de s\xe9lection via le cadran"; }, get$dialogLabel: function() { return "Bo\xeete de dialogue"; }, get$drawerLabel: function() { return "Menu de navigation"; }, get$expandedIconTapHint: function() { return "R\xe9duire"; }, get$inputDateModeButtonLabel: function() { return "Passer \xe0 la saisie"; }, get$inputTimeModeButtonLabel: function() { return "Passer au mode de saisie au format texte"; }, get$invalidDateFormatLabel: function() { return "Format non valide."; }, get$invalidTimeLabel: function() { return "Veuillez indiquer une heure valide"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licences"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licences"; }, get$modalBarrierDismissLabel: function() { return "Ignorer"; }, get$nextMonthTooltip: function() { return "Mois suivant"; }, get$nextPageTooltip: function() { return "Page suivante"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Ouvrir le menu de navigation"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow sur $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow sur environ $rowCount"; }, get$popupMenuLabel: function() { return "Menu contextuel"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Mois pr\xe9c\xe9dent"; }, get$previousPageTooltip: function() { return "Page pr\xe9c\xe9dente"; }, get$refreshIndicatorSemanticLabel: function() { return "Actualiser"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1\xa0caract\xe8re restant"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount\xa0caract\xe8res restants"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "D\xe9placer vers le bas"; }, get$reorderItemToEnd: function() { return "D\xe9placer vers la fin"; }, get$reorderItemToStart: function() { return "D\xe9placer vers le d\xe9but"; }, get$reorderItemUp: function() { return "D\xe9placer vers le haut"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "S\xe9lectionner une ann\xe9e"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\xa0\xe9l\xe9ment s\xe9lectionn\xe9"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\xa0\xe9l\xe9ments s\xe9lectionn\xe9s"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Aucun \xe9l\xe9ment s\xe9lectionn\xe9"; }, get$showMenuTooltip: function() { return "Afficher le menu"; }, get$tabLabelRaw: function() { return "Onglet $tabIndex sur $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "S\xc9LECTIONNER UNE HEURE"; }, get$timePickerHourLabel: function() { return "Heure"; }, get$timePickerHourModeAnnouncement: function() { return "S\xe9lectionner une heure"; }, get$timePickerInputHelpText: function() { return "SAISIR UNE HEURE"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$timePickerMinuteModeAnnouncement: function() { return "S\xe9lectionner des minutes"; } }; Y.MaterialLocalizationFrCa.prototype = { get$invalidTimeLabel: function() { return "Entrez une heure valide"; }, get$timePickerDialHelpText: function() { return "S\xc9LECTIONNER L'HEURE"; }, get$timePickerInputHelpText: function() { return "ENTRER L'HEURE"; }, get$timePickerMinuteLabel: function() { return "Minutes"; }, get$dialModeButtonLabel: function() { return "Passer au mode de s\xe9lection du cadran"; }, get$inputTimeModeButtonLabel: function() { return "Passer au mode d'entr\xe9e Texte"; }, get$datePickerHelpText: function() { return "S\xc9LECTIONNER LA DATE"; }, get$invalidDateFormatLabel: function() { return "Format incorrect"; }, get$inputDateModeButtonLabel: function() { return "Passer \xe0 l'entr\xe9e"; }, get$dateInputLabel: function() { return "Entrer une date"; }, get$dateHelpText: function() { return "jj-mm-aaaa"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \xe0 $lastRow sur $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \xe0 $lastRow sur environ\xa0$rowCount"; }, get$tabLabelRaw: function() { return "Onglet\xa0$tabIndex sur\xa0$tabCount"; }, get$anteMeridiemAbbreviation: function() { return "am"; }, get$postMeridiemAbbreviation: function() { return "pm"; }, get$timePickerHourModeAnnouncement: function() { return "S\xe9lectionnez les heures"; }, get$timePickerMinuteModeAnnouncement: function() { return "S\xe9lectionnez les minutes"; }, get$reorderItemToStart: function() { return "D\xe9placer au d\xe9but"; }, get$reorderItemToEnd: function() { return "D\xe9placer \xe0 la fin"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_2; } }; Y.MaterialLocalizationGl.prototype = { get$alertDialogLabel: function() { return "Alerta"; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$backButtonTooltip: function() { return "Atr\xe1s"; }, get$calendarModeButtonLabel: function() { return "Cambiar ao modo de calendario"; }, get$cancelButtonLabel: function() { return "CANCELAR"; }, get$collapsedIconTapHint: function() { return "Despregar"; }, get$dateHelpText: function() { return "mm/dd/aaaa"; }, get$dateInputLabel: function() { return "Introduce a data"; }, get$dateOutOfRangeLabel: function() { return "A data est\xe1 f\xf3ra do intervalo."; }, get$datePickerHelpText: function() { return "SELECCIONAR UNHA DATA"; }, get$dialModeButtonLabel: function() { return "Cambiar a modo de selector en esfera"; }, get$dialogLabel: function() { return "Cadro de di\xe1logo"; }, get$drawerLabel: function() { return "Men\xfa de navegaci\xf3n"; }, get$expandedIconTapHint: function() { return "Contraer"; }, get$inputDateModeButtonLabel: function() { return "Cambiar ao modo de introduci\xf3n de texto"; }, get$inputTimeModeButtonLabel: function() { return "Cambiar ao modo de escritura dos n\xfameros"; }, get$invalidDateFormatLabel: function() { return "O formato non \xe9 v\xe1lido."; }, get$invalidTimeLabel: function() { return "Escribe unha hora v\xe1lida"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenza"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenzas"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenzas"; }, get$modalBarrierDismissLabel: function() { return "Ignorar"; }, get$nextMonthTooltip: function() { return "Mes seguinte"; }, get$nextPageTooltip: function() { return "P\xe1xina seguinte"; }, get$okButtonLabel: function() { return "Aceptar"; }, get$openAppDrawerTooltip: function() { return "Abrir men\xfa de navegaci\xf3n"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel: function() { return "Men\xfa emerxente"; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$previousMonthTooltip: function() { return "Mes anterior"; }, get$previousPageTooltip: function() { return "P\xe1xina anterior"; }, get$refreshIndicatorSemanticLabel: function() { return "Actualizar"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 car\xe1cter restante"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount caracteres restantes"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Mover cara abaixo"; }, get$reorderItemToEnd: function() { return "Mover ao final"; }, get$reorderItemToStart: function() { return "Mover ao inicio"; }, get$reorderItemUp: function() { return "Mover cara arriba"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Seleccionar ano"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Seleccionouse 1 elemento"; }, get$selectedRowCountTitleOther: function() { return "Seleccion\xe1ronse $selectedRowCount elementos"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Non se seleccionaron elementos"; }, get$showMenuTooltip: function() { return "Mostrar men\xfa"; }, get$tabLabelRaw: function() { return "Pestana $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "SELECCIONA A HORA"; }, get$timePickerHourLabel: function() { return "Hora"; }, get$timePickerHourModeAnnouncement: function() { return "Seleccionar horas"; }, get$timePickerInputHelpText: function() { return "INDICA A HORA"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Seleccionar minutos"; } }; Y.MaterialLocalizationGsw.prototype = { get$alertDialogLabel: function() { return "Benachrichtigung"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Zur\xfcck"; }, get$calendarModeButtonLabel: function() { return "Zum Kalender wechseln"; }, get$cancelButtonLabel: function() { return "ABBRECHEN"; }, get$collapsedIconTapHint: function() { return "Maximieren"; }, get$dateHelpText: function() { return "tt.mm.jjjj"; }, get$dateInputLabel: function() { return "Datum eingeben"; }, get$dateOutOfRangeLabel: function() { return "Au\xdferhalb des Zeitraums."; }, get$datePickerHelpText: function() { return "DATUM AUSW\xc4HLEN"; }, get$dialModeButtonLabel: function() { return "Zur Uhrzeitauswahl wechseln"; }, get$dialogLabel: function() { return "Dialogfeld"; }, get$drawerLabel: function() { return "Navigationsmen\xfc"; }, get$expandedIconTapHint: function() { return "Minimieren"; }, get$inputDateModeButtonLabel: function() { return "Zur Texteingabe wechseln"; }, get$inputTimeModeButtonLabel: function() { return "Zum Texteingabemodus wechseln"; }, get$invalidDateFormatLabel: function() { return "Ung\xfcltiges Format."; }, get$invalidTimeLabel: function() { return "Geben Sie eine g\xfcltige Uhrzeit ein"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0Lizenz"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0Lizenzen"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lizenzen"; }, get$modalBarrierDismissLabel: function() { return "Schlie\xdfen"; }, get$nextMonthTooltip: function() { return "N\xe4chster Monat"; }, get$nextPageTooltip: function() { return "N\xe4chste Seite"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Navigationsmen\xfc \xf6ffnen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow von $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow von etwa $rowCount"; }, get$popupMenuLabel: function() { return "Pop-up-Men\xfc"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Vorheriger Monat"; }, get$previousPageTooltip: function() { return "Vorherige Seite"; }, get$refreshIndicatorSemanticLabel: function() { return "Aktualisieren"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Noch 1\xa0Zeichen"; }, get$remainingTextFieldCharacterCountOther: function() { return "Noch $remainingCount\xa0Zeichen"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Nach unten verschieben"; }, get$reorderItemToEnd: function() { return "An das Ende verschieben"; }, get$reorderItemToStart: function() { return "An den Anfang verschieben"; }, get$reorderItemUp: function() { return "Nach oben verschieben"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Jahr ausw\xe4hlen"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\xa0Element ausgew\xe4hlt"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\xa0Elemente ausgew\xe4hlt"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Men\xfc anzeigen"; }, get$tabLabelRaw: function() { return "Tab $tabIndex von $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "UHRZEIT AUSW\xc4HLEN"; }, get$timePickerHourLabel: function() { return "Stunde"; }, get$timePickerHourModeAnnouncement: function() { return "Stunden ausw\xe4hlen"; }, get$timePickerInputHelpText: function() { return "ZEIT EINGEBEN"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$timePickerMinuteModeAnnouncement: function() { return "Minuten ausw\xe4hlen"; } }; Y.MaterialLocalizationGu.prototype = { get$alertDialogLabel: function() { return "\u0a85\u0ab2\u0ab0\u0acd\u0a9f"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0aaa\u0abe\u0a9b\u0ab3"; }, get$calendarModeButtonLabel: function() { return "\u0a95\u0ac5\u0ab2\u0ac7\u0aa8\u0acd\u0aa1\u0ab0 \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$cancelButtonLabel: function() { return "\u0ab0\u0aa6 \u0a95\u0ab0\u0acb"; }, get$collapsedIconTapHint: function() { return "\u0ab5\u0abf\u0ab8\u0acd\u0aa4\u0ac3\u0aa4 \u0a95\u0ab0\u0acb"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u0aa4\u0abe\u0ab0\u0ac0\u0a96 \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$dateOutOfRangeLabel: function() { return "\u0ab0\u0ac7\u0a82\u0a9c\u0aae\u0abe\u0a82 \u0aa8\u0aa5\u0ac0."; }, get$datePickerHelpText: function() { return "\u0aa4\u0abe\u0ab0\u0ac0\u0a96 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$dialModeButtonLabel: function() { return "\u0aa1\u0abe\u0aaf\u0ab2 \u0aaa\u0abf\u0a95\u0ab0 \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$dialogLabel: function() { return "\u0ab8\u0a82\u0ab5\u0abe\u0aa6"; }, get$drawerLabel: function() { return "\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2"; }, get$expandedIconTapHint: function() { return "\u0ab8\u0a82\u0a95\u0ac1\u0a9a\u0abf\u0aa4 \u0a95\u0ab0\u0acb"; }, get$inputDateModeButtonLabel: function() { return "\u0a87\u0aa8\u0aaa\u0ac1\u0a9f \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$inputTimeModeButtonLabel: function() { return "\u0a9f\u0ac7\u0a95\u0acd\u0ab8\u0acd\u0a9f \u0a87\u0aa8\u0aaa\u0ac1\u0a9f \u0aae\u0acb\u0aa1 \u0aaa\u0ab0 \u0ab8\u0acd\u0ab5\u0abf\u0a9a \u0a95\u0ab0\u0acb"; }, get$invalidDateFormatLabel: function() { return "\u0a85\u0aae\u0abe\u0aa8\u0acd\u0aaf \u0aab\u0acb\u0ab0\u0acd\u0aae\u0ac7\u0a9f."; }, get$invalidTimeLabel: function() { return "\u0aae\u0abe\u0aa8\u0acd\u0aaf \u0ab8\u0aae\u0aaf \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0ab2\u0abe\u0a87\u0ab8\u0aa8\u0acd\u0ab8"; }, get$modalBarrierDismissLabel: function() { return "\u0a9b\u0acb\u0aa1\u0ac0 \u0aa6\u0acb"; }, get$nextMonthTooltip: function() { return "\u0a86\u0a97\u0ab2\u0acb \u0aae\u0ab9\u0abf\u0aa8\u0acb"; }, get$nextPageTooltip: function() { return "\u0a86\u0a97\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$okButtonLabel: function() { return "\u0a93\u0a95\u0ac7"; }, get$openAppDrawerTooltip: function() { return "\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2 \u0a96\u0acb\u0ab2\u0acb"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0a86\u0ab6\u0ab0\u0ac7 $rowCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0aaa\u0ac9\u0aaa\u0a85\u0aaa \u0aae\u0ac7\u0aa8\u0ac2"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0aaa\u0abe\u0a9b\u0ab2\u0acb \u0aae\u0ab9\u0abf\u0aa8\u0acb"; }, get$previousPageTooltip: function() { return "\u0aaa\u0abe\u0a9b\u0ab2\u0ac1\u0a82 \u0aaa\u0ac7\u0a9c"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0ab0\u0abf\u0aab\u0acd\u0ab0\u0ac7\u0ab6 \u0a95\u0ab0\u0acb"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0aa8\u0ac0\u0a9a\u0ac7 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemToEnd: function() { return "\u0a85\u0a82\u0aa4\u0aae\u0abe\u0a82 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemToStart: function() { return "\u0aaa\u0acd\u0ab0\u0abe\u0ab0\u0a82\u0aad\u0aae\u0abe\u0a82 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$reorderItemUp: function() { return "\u0a89\u0aaa\u0ab0 \u0a96\u0ab8\u0ac7\u0aa1\u0acb"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0ab5\u0ab0\u0acd\u0ab7 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0a86\u0a87\u0a9f\u0aae \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0ac0"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0a86\u0a87\u0a9f\u0aae \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0ac0"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0aae\u0ac7\u0aa8\u0ac2 \u0aac\u0aa4\u0abe\u0ab5\u0acb"; }, get$tabLabelRaw: function() { return "$tabCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $tabIndex \u0a9f\u0ac5\u0aac"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0ab8\u0aae\u0aaf \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$timePickerHourLabel: function() { return "\u0a95\u0ab2\u0abe\u0a95"; }, get$timePickerHourModeAnnouncement: function() { return "\u0a95\u0ab2\u0abe\u0a95 \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; }, get$timePickerInputHelpText: function() { return "\u0ab8\u0aae\u0aaf \u0aa6\u0abe\u0a96\u0ab2 \u0a95\u0ab0\u0acb"; }, get$timePickerMinuteLabel: function() { return "\u0aae\u0abf\u0aa8\u0abf\u0a9f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0aae\u0abf\u0aa8\u0abf\u0a9f \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"; } }; Y.MaterialLocalizationHe.prototype = { get$alertDialogLabel: function() { return "\u05d4\u05ea\u05e8\u05d0\u05d4"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$calendarModeButtonLabel: function() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05de\u05e6\u05d1 \u05d4\u05d9\u05d5\u05de\u05df"; }, get$cancelButtonLabel: function() { return "\u05d1\u05d9\u05d8\u05d5\u05dc"; }, get$collapsedIconTapHint: function() { return "\u05d4\u05e8\u05d7\u05d1\u05d4"; }, get$dateHelpText: function() { return "dd.mm.yyyy"; }, get$dateInputLabel: function() { return "\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05ea\u05d0\u05e8\u05d9\u05da"; }, get$dateOutOfRangeLabel: function() { return "\u05de\u05d7\u05d5\u05e5 \u05dc\u05d8\u05d5\u05d5\u05d7."; }, get$datePickerHelpText: function() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05ea\u05d0\u05e8\u05d9\u05da"; }, get$dialModeButtonLabel: function() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05d1\u05d7\u05d9\u05e8\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d7\u05d5\u05d2\u05d4"; }, get$dialogLabel: function() { return "\u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7"; }, get$drawerLabel: function() { return "\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8"; }, get$expandedIconTapHint: function() { return "\u05db\u05d9\u05d5\u05d5\u05e5"; }, get$inputDateModeButtonLabel: function() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05de\u05e6\u05d1 \u05d4\u05e7\u05dc\u05d8"; }, get$inputTimeModeButtonLabel: function() { return "\u05de\u05e2\u05d1\u05e8 \u05dc\u05d4\u05d6\u05e0\u05ea \u05d8\u05e7\u05e1\u05d8"; }, get$invalidDateFormatLabel: function() { return "\u05e4\u05d5\u05e8\u05de\u05d8 \u05dc\u05d0 \u05d7\u05d5\u05e7\u05d9."; }, get$invalidTimeLabel: function() { return "\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e9\u05e2\u05d4 \u05ea\u05e7\u05d9\u05e0\u05d4"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextOne: function() { return "\u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05d0\u05d7\u05d3"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextTwo: function() { return "$licenseCount \u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u05e8\u05d9\u05e9\u05d9\u05d5\u05e0\u05d5\u05ea"; }, get$modalBarrierDismissLabel: function() { return "\u05e1\u05d2\u05d9\u05e8\u05d4"; }, get$nextMonthTooltip: function() { return "\u05d4\u05d7\u05d5\u05d3\u05e9 \u05d4\u05d1\u05d0"; }, get$nextPageTooltip: function() { return "\u05d4\u05d3\u05e3 \u05d4\u05d1\u05d0"; }, get$okButtonLabel: function() { return "\u05d0\u05d9\u05e9\u05d5\u05e8"; }, get$openAppDrawerTooltip: function() { return "\u05e4\u05ea\u05d9\u05d7\u05d4 \u05e9\u05dc \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8"; }, get$pageRowsInfoTitleRaw: function() { return "$lastRow\u2013$firstRow \u05de\u05ea\u05d5\u05da $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$lastRow\u2013$firstRow \u05de\u05ea\u05d5\u05da \u05db-$rowCount"; }, get$popupMenuLabel: function() { return "\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e7\u05d5\u05e4\u05e5"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u05d4\u05d7\u05d5\u05d3\u05e9 \u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$previousPageTooltip: function() { return "\u05d4\u05d3\u05e3 \u05d4\u05e7\u05d5\u05d3\u05dd"; }, get$refreshIndicatorSemanticLabel: function() { return "\u05e8\u05e2\u05e0\u05d5\u05df"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u05e0\u05d5\u05ea\u05e8 \u05ea\u05d5 \u05d0\u05d7\u05d3"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountTwo: function() { return "\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05de\u05d8\u05d4"; }, get$reorderItemToEnd: function() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05e1\u05d5\u05e3"; }, get$reorderItemToStart: function() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05d4\u05ea\u05d7\u05dc\u05d4"; }, get$reorderItemUp: function() { return "\u05d4\u05e2\u05d1\u05e8\u05d4 \u05dc\u05de\u05e2\u05dc\u05d4"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e0\u05d4"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleOne: function() { return "\u05e4\u05e8\u05d9\u05d8 \u05d0\u05d7\u05d3 \u05e0\u05d1\u05d7\u05e8"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleTwo: function() { return "$selectedRowCount \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5"; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u05d4\u05e6\u05d2\u05ea \u05d4\u05ea\u05e4\u05e8\u05d9\u05d8"; }, get$tabLabelRaw: function() { return "\u05db\u05e8\u05d8\u05d9\u05e1\u05d9\u05d9\u05d4 $tabIndex \u05de\u05ea\u05d5\u05da $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e2\u05d4"; }, get$timePickerHourLabel: function() { return "\u05e9\u05e2\u05d4"; }, get$timePickerHourModeAnnouncement: function() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e2\u05d5\u05ea"; }, get$timePickerInputHelpText: function() { return "\u05d4\u05d6\u05e0\u05ea \u05e9\u05e2\u05d4"; }, get$timePickerMinuteLabel: function() { return "\u05d3\u05e7\u05d5\u05ea"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u05d1\u05d7\u05d9\u05e8\u05ea \u05d3\u05e7\u05d5\u05ea"; } }; Y.MaterialLocalizationHi.prototype = { get$alertDialogLabel: function() { return "\u0905\u0932\u0930\u094d\u091f"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0935\u093e\u092a\u0938 \u091c\u093e\u090f\u0902"; }, get$calendarModeButtonLabel: function() { return "\u0915\u0948\u0932\u0947\u0902\u0921\u0930 \u092a\u0930 \u091c\u093e\u090f\u0902"; }, get$cancelButtonLabel: function() { return "\u0930\u0926\u094d\u0926 \u0915\u0930\u0947\u0902"; }, get$collapsedIconTapHint: function() { return "\u092c\u095c\u093e \u0915\u0930\u0947\u0902"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u0924\u093e\u0930\u0940\u0916 \u0921\u093e\u0932\u0947\u0902"; }, get$dateOutOfRangeLabel: function() { return "\u0938\u0940\u092e\u093e \u0938\u0947 \u091c\u093c\u094d\u092f\u093e\u0926\u093e."; }, get$datePickerHelpText: function() { return "\u0924\u093e\u0930\u0940\u0916 \u091a\u0941\u0928\u0947\u0902"; }, get$dialModeButtonLabel: function() { return "\u0921\u093e\u092f\u0932 \u092a\u093f\u0915\u0930 \u092e\u094b\u0921 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0947\u0902"; }, get$dialogLabel: function() { return "\u0938\u0902\u0935\u093e\u0926"; }, get$drawerLabel: function() { return "\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942"; }, get$expandedIconTapHint: function() { return "\u091b\u094b\u091f\u093e \u0915\u0930\u0947\u0902"; }, get$inputDateModeButtonLabel: function() { return "\u0907\u0928\u092a\u0941\u091f \u092a\u0930 \u091c\u093e\u090f\u0902"; }, get$inputTimeModeButtonLabel: function() { return "\u091f\u0947\u0915\u094d\u0938\u094d\u091f \u0915\u0947 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0947\u0902"; }, get$invalidDateFormatLabel: function() { return "\u0905\u092e\u093e\u0928\u094d\u092f \u095e\u0949\u0930\u094d\u092e\u0948\u091f."; }, get$invalidTimeLabel: function() { return "\u092e\u093e\u0928\u094d\u092f \u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0932\u093e\u0907\u0938\u0947\u0902\u0938"; }, get$modalBarrierDismissLabel: function() { return "\u0916\u093e\u0930\u093f\u091c \u0915\u0930\u0947\u0902"; }, get$nextMonthTooltip: function() { return "\u0905\u0917\u0932\u093e \u092e\u0939\u0940\u0928\u093e"; }, get$nextPageTooltip: function() { return "\u0905\u0917\u0932\u093e \u092a\u0947\u091c"; }, get$okButtonLabel: function() { return "\u0920\u0940\u0915 \u0939\u0948"; }, get$openAppDrawerTooltip: function() { return "\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942 \u0916\u094b\u0932\u0947\u0902"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u0915\u093e $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount \u092e\u0947\u0902 \u0938\u0947 \u0915\u0930\u0940\u092c $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u094d\u092f\u0942"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u092a\u093f\u091b\u0932\u093e \u092e\u0939\u0940\u0928\u093e"; }, get$previousPageTooltip: function() { return "\u092a\u093f\u091b\u0932\u093e \u092a\u0947\u091c"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0930\u0940\u092b\u093c\u094d\u0930\u0947\u0936 \u0915\u0930\u0947\u0902"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u090f\u0915 \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u0947 \u091c\u093e \u0938\u0915\u0924\u0947 \u0939\u0948\u0902"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u0928\u0940\u091a\u0947 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemToEnd: function() { return "\u0906\u0916\u093f\u0930 \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemToStart: function() { return "\u0936\u0941\u0930\u0941\u0906\u0924 \u092a\u0930 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$reorderItemUp: function() { return "\u090a\u092a\u0930 \u0932\u0947 \u091c\u093e\u090f\u0902"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u0938\u093e\u0932 \u091a\u0941\u0928\u0947\u0902"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u091a\u0940\u091c\u093c \u091a\u0941\u0928\u0940 \u0917\u0908"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u091a\u0940\u091c\u093c\u0947\u0902 \u091a\u0941\u0928\u0940 \u0917\u0908\u0902"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u092e\u0947\u0928\u094d\u092f\u0942 \u0926\u093f\u0916\u093e\u090f\u0902"; }, get$tabLabelRaw: function() { return "$tabCount \u0915\u093e \u091f\u0948\u092c $tabIndex"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_5; }, get$timePickerDialHelpText: function() { return "\u0938\u092e\u092f \u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u091a\u0941\u0928\u0947\u0902"; }, get$timePickerHourLabel: function() { return "\u0918\u0902\u091f\u093e"; }, get$timePickerHourModeAnnouncement: function() { return "\u0918\u0902\u091f\u0947 \u0915\u0947 \u0939\u093f\u0938\u093e\u092c \u0938\u0947 \u0938\u092e\u092f \u091a\u0941\u0928\u0947\u0902"; }, get$timePickerInputHelpText: function() { return "\u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902"; }, get$timePickerMinuteLabel: function() { return "\u092e\u093f\u0928\u091f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u092e\u093f\u0928\u091f \u0915\u0947 \u0939\u093f\u0938\u093e\u092c \u0938\u0947 \u0938\u092e\u092f \u091a\u0941\u0928\u0947\u0902"; } }; Y.MaterialLocalizationHr.prototype = { get$alertDialogLabel: function() { return "Upozorenje"; }, get$anteMeridiemAbbreviation: function() { return "prijepodne"; }, get$backButtonTooltip: function() { return "Natrag"; }, get$calendarModeButtonLabel: function() { return "Prije\u0111ite na kalendar"; }, get$cancelButtonLabel: function() { return "ODUSTANI"; }, get$collapsedIconTapHint: function() { return "Pro\u0161iri"; }, get$dateHelpText: function() { return "dd. mm. gggg."; }, get$dateInputLabel: function() { return "Unesite datum"; }, get$dateOutOfRangeLabel: function() { return "Izvan raspona."; }, get$datePickerHelpText: function() { return "ODABERITE DATUM"; }, get$dialModeButtonLabel: function() { return "Prijelaz na na\u010din alata za odabir biranja"; }, get$dialogLabel: function() { return "Dijalog"; }, get$drawerLabel: function() { return "Navigacijski izbornik"; }, get$expandedIconTapHint: function() { return "Sa\u017emi"; }, get$inputDateModeButtonLabel: function() { return "Prije\u0111ite na unos"; }, get$inputTimeModeButtonLabel: function() { return "Prijelaz na na\u010din unosa teksta"; }, get$invalidDateFormatLabel: function() { return "Format nije va\u017ee\u0107i."; }, get$invalidTimeLabel: function() { return "Unesite va\u017ee\u0107e vrijeme"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenca"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licence"; }, get$modalBarrierDismissLabel: function() { return "Odbaci"; }, get$nextMonthTooltip: function() { return "Sljede\u0107i mjesec"; }, get$nextPageTooltip: function() { return "Sljede\u0107a stranica"; }, get$okButtonLabel: function() { return "U REDU"; }, get$openAppDrawerTooltip: function() { return "Otvaranje izbornika za navigaciju"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow od otprilike $rowCount"; }, get$popupMenuLabel: function() { return "Sko\u010dni izbornik"; }, get$postMeridiemAbbreviation: function() { return "popodne"; }, get$previousMonthTooltip: function() { return "Prethodni mjesec"; }, get$previousPageTooltip: function() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel: function() { return "Osvje\u017ei"; }, get$remainingTextFieldCharacterCountFew: function() { return "Preostala su $remainingCount znaka"; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Preostao je 1 znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Preostalo je $remainingCount znakova"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Pomakni prema dolje"; }, get$reorderItemToEnd: function() { return "Premjesti na kraj"; }, get$reorderItemToStart: function() { return "Premjesti na po\u010detak"; }, get$reorderItemUp: function() { return "Pomakni prema gore"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Odaberite godinu"; }, get$selectedRowCountTitleFew: function() { return "Odabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Odabrana je jedna stavka"; }, get$selectedRowCountTitleOther: function() { return "Odabrano je $selectedRowCount stavki"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Prikaz izbornika"; }, get$tabLabelRaw: function() { return "Kartica $tabIndex od $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "ODABERITE VRIJEME"; }, get$timePickerHourLabel: function() { return "Sat"; }, get$timePickerHourModeAnnouncement: function() { return "Odaberite sate"; }, get$timePickerInputHelpText: function() { return "UNESITE VRIJEME"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Odaberite minute"; } }; Y.MaterialLocalizationHu.prototype = { get$alertDialogLabel: function() { return "\xc9rtes\xedt\xe9s"; }, get$anteMeridiemAbbreviation: function() { return "de."; }, get$backButtonTooltip: function() { return "Vissza"; }, get$calendarModeButtonLabel: function() { return "V\xe1lt\xe1s napt\xe1rra"; }, get$cancelButtonLabel: function() { return "M\xc9GSE"; }, get$collapsedIconTapHint: function() { return "Kibont\xe1s"; }, get$dateHelpText: function() { return "\xe9\xe9\xe9\xe9. hh. nn."; }, get$dateInputLabel: function() { return "Adja meg a d\xe1tumot"; }, get$dateOutOfRangeLabel: function() { return "Tartom\xe1nyon k\xedv\xfcl."; }, get$datePickerHelpText: function() { return "D\xc1TUM KIV\xc1LASZT\xc1SA"; }, get$dialModeButtonLabel: function() { return "V\xe1lt\xe1s id\u0151pontv\xe1laszt\xf3 m\xf3dra"; }, get$dialogLabel: function() { return "P\xe1rbesz\xe9dablak"; }, get$drawerLabel: function() { return "Navig\xe1ci\xf3s men\xfc"; }, get$expandedIconTapHint: function() { return "\xd6sszecsuk\xe1s"; }, get$inputDateModeButtonLabel: function() { return "V\xe1lt\xe1s bevitelre"; }, get$inputTimeModeButtonLabel: function() { return "V\xe1lt\xe1s sz\xf6vegbeviteli m\xf3dra"; }, get$invalidDateFormatLabel: function() { return "\xc9rv\xe9nytelen form\xe1tum."; }, get$invalidTimeLabel: function() { return "\xc9rv\xe9nyes form\xe1tumban adja meg az id\u0151t"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenc"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenc"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencek"; }, get$modalBarrierDismissLabel: function() { return "Elvet\xe9s"; }, get$nextMonthTooltip: function() { return "K\xf6vetkez\u0151 h\xf3nap"; }, get$nextPageTooltip: function() { return "K\xf6vetkez\u0151 oldal"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Navig\xe1ci\xf3s men\xfc megnyit\xe1sa"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount/$firstRow\u2013$lastRow."; }, get$pageRowsInfoTitleApproximateRaw: function() { return "K\xf6r\xfclbel\xfcl $rowCount/$firstRow\u2013$lastRow."; }, get$popupMenuLabel: function() { return "El\u0151ugr\xf3 men\xfc"; }, get$postMeridiemAbbreviation: function() { return "du."; }, get$previousMonthTooltip: function() { return "El\u0151z\u0151 h\xf3nap"; }, get$previousPageTooltip: function() { return "El\u0151z\u0151 oldal"; }, get$refreshIndicatorSemanticLabel: function() { return "Friss\xedt\xe9s"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 karakter maradt"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount karakter maradt"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\xc1thelyez\xe9s lefel\xe9"; }, get$reorderItemToEnd: function() { return "\xc1thelyez\xe9s a v\xe9g\xe9re"; }, get$reorderItemToStart: function() { return "\xc1thelyez\xe9s az elej\xe9re"; }, get$reorderItemUp: function() { return "\xc1thelyez\xe9s felfel\xe9"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "V\xe1lassza ki az \xe9vet"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 elem kiv\xe1lasztva"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elem kiv\xe1lasztva"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Men\xfc megjelen\xedt\xe9se"; }, get$tabLabelRaw: function() { return "$tabCount/$tabIndex. lap"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "ID\u0150PONT KIV\xc1LASZT\xc1SA"; }, get$timePickerHourLabel: function() { return "\xd3ra"; }, get$timePickerHourModeAnnouncement: function() { return "\xd3ra kiv\xe1laszt\xe1sa"; }, get$timePickerInputHelpText: function() { return "ID\u0150PONT MEGAD\xc1SA"; }, get$timePickerMinuteLabel: function() { return "Perc"; }, get$timePickerMinuteModeAnnouncement: function() { return "Perc kiv\xe1laszt\xe1sa"; } }; Y.MaterialLocalizationHy.prototype = { get$alertDialogLabel: function() { return "\u053e\u0561\u0576\u0578\u0582\u0581\u0578\u0582\u0574"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0540\u0565\u057f"; }, get$calendarModeButtonLabel: function() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0585\u0580\u0561\u0581\u0578\u0582\u0575\u0581\u056b\u0576"; }, get$cancelButtonLabel: function() { return "\u0549\u0535\u0542\u0531\u0550\u053f\u0535\u053c"; }, get$collapsedIconTapHint: function() { return "\u053e\u0561\u057e\u0561\u056c\u0565\u056c"; }, get$dateHelpText: function() { return "\u0585\u0585.\u0561\u0561.\u057f\u057f\u057f\u057f"; }, get$dateInputLabel: function() { return "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u056c \u0561\u0574\u057d\u0561\u0569\u056b\u057e"; }, get$dateOutOfRangeLabel: function() { return "\u0539\u0578\u0582\u0575\u056c\u0561\u057f\u0580\u0565\u056c\u056b \u0568\u0576\u0564\u0563\u0580\u056f\u0578\u0582\u0575\u0569\u056b\u0581 \u0564\u0578\u0582\u0580\u057d \u0567\u0589"; }, get$datePickerHelpText: function() { return "\u0538\u0546\u054f\u0550\u0535\u053c \u0531\u0544\u054d\u0531\u0539\u053b\u054e"; }, get$dialModeButtonLabel: function() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0569\u057e\u0565\u0580\u056b \u0568\u0576\u057f\u0580\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$dialogLabel: function() { return "\u0535\u0580\u056f\u056d\u0578\u057d\u0578\u0582\u0569\u0575\u0561\u0576 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576"; }, get$drawerLabel: function() { return "\u0546\u0561\u057e\u0561\u0580\u056f\u0574\u0561\u0576 \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"; }, get$expandedIconTapHint: function() { return "\u053e\u0561\u056c\u0565\u056c"; }, get$inputDateModeButtonLabel: function() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u0576\u0565\u0580\u0561\u056e\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$inputTimeModeButtonLabel: function() { return "\u0531\u0576\u0581\u0576\u0565\u056c \u057f\u0565\u0584\u057d\u057f\u056b \u0574\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0574\u0561\u0576 \u057c\u0565\u056a\u056b\u0574\u056b\u0576"; }, get$invalidDateFormatLabel: function() { return "\u0541\u0587\u0561\u0579\u0561\u0583\u0576 \u0561\u0576\u057e\u0561\u057e\u0565\u0580 \u0567\u0589"; }, get$invalidTimeLabel: function() { return "\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u0584 \u057e\u0561\u057e\u0565\u0580 \u056a\u0561\u0574"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u056c\u056b\u0581\u0565\u0576\u0566\u056b\u0561"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u056c\u056b\u0581\u0565\u0576\u0566\u056b\u0561"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0531\u0580\u057f\u0578\u0576\u0561\u0563\u0580\u0565\u0580"; }, get$modalBarrierDismissLabel: function() { return "\u0553\u0561\u056f\u0565\u056c"; }, get$nextMonthTooltip: function() { return "\u0540\u0561\u057b\u0578\u0580\u0564 \u0561\u0574\u056b\u057d"; }, get$nextPageTooltip: function() { return "\u0540\u0561\u057b\u0578\u0580\u0564 \u0567\u057b"; }, get$okButtonLabel: function() { return "\u0535\u0572\u0561\u057e"; }, get$openAppDrawerTooltip: function() { return "\u0532\u0561\u0581\u0565\u056c \u0576\u0561\u057e\u0561\u0580\u056f\u0574\u0561\u0576 \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow $rowCount-\u056b\u0581"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0574\u0578\u057f\u0561\u057e\u0578\u0580\u0561\u057a\u0565\u057d $rowCount-\u056b\u0581"; }, get$popupMenuLabel: function() { return "\u0535\u056c\u0576\u0578\u0572 \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0546\u0561\u056d\u0578\u0580\u0564 \u0561\u0574\u056b\u057d"; }, get$previousPageTooltip: function() { return "\u0546\u0561\u056d\u0578\u0580\u0564 \u0567\u057b"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0539\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountMany: function() { return "\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0544\u0576\u0561\u0581\u0565\u056c \u0567 1 \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0544\u0576\u0561\u0581\u0565\u056c \u0567 $remainingCount \u0576\u056b\u0577"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "\u0546\u056b\u0577\u056b \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u056f\u0561"; }, get$reorderItemDown: function() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u0576\u0565\u0580\u0584\u0587"; }, get$reorderItemToEnd: function() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057e\u0565\u0580\u057b"; }, get$reorderItemToStart: function() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057d\u056f\u056b\u0566\u0562"; }, get$reorderItemUp: function() { return "\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u057e\u0565\u0580\u0587"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0538\u0576\u057f\u0580\u0565\u056c \u057f\u0561\u0580\u056b\u0576"; }, get$selectedRowCountTitleFew: function() { return "\u0538\u0576\u057f\u0580\u057e\u0561\u056e \u0567 $selectedRowCount \u0585\u0562\u0575\u0565\u056f\u057f"; }, get$selectedRowCountTitleMany: function() { return "\u0538\u0576\u057f\u0580\u057e\u0561\u056e \u0567 $selectedRowCount \u0585\u0562\u0575\u0565\u056f\u057f"; }, get$selectedRowCountTitleOne: function() { return "\u0538\u0576\u057f\u0580\u057e\u0565\u056c \u0567 1 \u057f\u0561\u0580\u0580"; }, get$selectedRowCountTitleOther: function() { return "\u0538\u0576\u057f\u0580\u057e\u0565\u056c \u0567 $selectedRowCount \u057f\u0561\u0580\u0580"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u054f\u0578\u0572\u0565\u0580\u0568 \u0568\u0576\u057f\u0580\u057e\u0561\u056e \u0579\u0565\u0576"; }, get$showMenuTooltip: function() { return "\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"; }, get$tabLabelRaw: function() { return "\u0546\u0565\u0580\u0564\u056b\u0580 $tabIndex\u055d $tabCount-\u056b\u0581"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0538\u0546\u054f\u0550\u0535\u0554 \u053a\u0531\u0544\u0538"; }, get$timePickerHourLabel: function() { return "\u053a\u0561\u0574"; }, get$timePickerHourModeAnnouncement: function() { return "\u0538\u0576\u057f\u0580\u0565\u0584 \u056a\u0561\u0574\u0568"; }, get$timePickerInputHelpText: function() { return "\u0544\u0548\u0552\u054f\u0554\u0531\u0533\u0550\u0535\u0554 \u053a\u0531\u0544\u0538"; }, get$timePickerMinuteLabel: function() { return "\u0550\u0578\u057a\u0565"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0538\u0576\u057f\u0580\u0565\u0584 \u0580\u0578\u057a\u0565\u0576\u0565\u0580\u0568"; } }; Y.MaterialLocalizationId.prototype = { get$alertDialogLabel: function() { return "Notifikasi"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Kembali"; }, get$calendarModeButtonLabel: function() { return "Beralih ke kalender"; }, get$cancelButtonLabel: function() { return "BATAL"; }, get$collapsedIconTapHint: function() { return "Luaskan"; }, get$dateHelpText: function() { return "hh/bb/tttt"; }, get$dateInputLabel: function() { return "Masukkan Tanggal"; }, get$dateOutOfRangeLabel: function() { return "Di luar rentang."; }, get$datePickerHelpText: function() { return "PILIH TANGGAL"; }, get$dialModeButtonLabel: function() { return "Beralih ke mode tampilan jam"; }, get$dialogLabel: function() { return "Dialog"; }, get$drawerLabel: function() { return "Menu navigasi"; }, get$expandedIconTapHint: function() { return "Ciutkan"; }, get$inputDateModeButtonLabel: function() { return "Beralih ke masukan"; }, get$inputTimeModeButtonLabel: function() { return "Beralih ke mode input teks"; }, get$invalidDateFormatLabel: function() { return "Format tidak valid."; }, get$invalidTimeLabel: function() { return "Masukkan waktu yang valid"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisensi"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisensi"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lisensi"; }, get$modalBarrierDismissLabel: function() { return "Tutup"; }, get$nextMonthTooltip: function() { return "Bulan berikutnya"; }, get$nextPageTooltip: function() { return "Halaman berikutnya"; }, get$okButtonLabel: function() { return "OKE"; }, get$openAppDrawerTooltip: function() { return "Buka menu navigasi"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow dari $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstda; }, get$popupMenuLabel: function() { return "Menu pop-up"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Bulan sebelumnya"; }, get$previousPageTooltip: function() { return "Halaman sebelumnya"; }, get$refreshIndicatorSemanticLabel: function() { return "Memuat ulang"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Sisa 1 karakter"; }, get$remainingTextFieldCharacterCountOther: function() { return "Sisa $remainingCount karakter"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Turunkan"; }, get$reorderItemToEnd: function() { return "Pindahkan ke akhir"; }, get$reorderItemToStart: function() { return "Pindahkan ke awal"; }, get$reorderItemUp: function() { return "Naikkan"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Pilih tahun"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item dipilih"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount item dipilih"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Tampilkan menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex dari $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "PILIH WAKTU"; }, get$timePickerHourLabel: function() { return "Jam"; }, get$timePickerHourModeAnnouncement: function() { return "Pilih jam"; }, get$timePickerInputHelpText: function() { return "MASUKKAN WAKTU"; }, get$timePickerMinuteLabel: function() { return "Menit"; }, get$timePickerMinuteModeAnnouncement: function() { return "Pilih menit"; } }; Y.MaterialLocalizationIs.prototype = { get$alertDialogLabel: function() { return "Tilkynning"; }, get$anteMeridiemAbbreviation: function() { return "f.h."; }, get$backButtonTooltip: function() { return "Til baka"; }, get$calendarModeButtonLabel: function() { return "Skipta yfir \xed dagatal"; }, get$cancelButtonLabel: function() { return "H\xc6TTA"; }, get$collapsedIconTapHint: function() { return "St\xe6kka"; }, get$dateHelpText: function() { return "dd.mm.\xe1\xe1\xe1\xe1"; }, get$dateInputLabel: function() { return "Sl\xe1 inn dagsetningu"; }, get$dateOutOfRangeLabel: function() { return "Utan svi\xf0s."; }, get$datePickerHelpText: function() { return "VELJA DAGSETNINGU"; }, get$dialModeButtonLabel: function() { return "Skiptu yfir \xed sk\xedfuval"; }, get$dialogLabel: function() { return "Gluggi"; }, get$drawerLabel: function() { return "Yfirlitsvalmynd"; }, get$expandedIconTapHint: function() { return "Draga saman"; }, get$inputDateModeButtonLabel: function() { return "Skipta yfir \xed innsl\xe1tt"; }, get$inputTimeModeButtonLabel: function() { return "Skiptu yfir \xed textainnsl\xe1tt"; }, get$invalidDateFormatLabel: function() { return "\xd3gilt sni\xf0."; }, get$invalidTimeLabel: function() { return "F\xe6r\xf0u inn gildan t\xedma"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 leyfi"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount leyfi"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Leyfi"; }, get$modalBarrierDismissLabel: function() { return "Hunsa"; }, get$nextMonthTooltip: function() { return "N\xe6sti m\xe1nu\xf0ur"; }, get$nextPageTooltip: function() { return "N\xe6sta s\xed\xf0a"; }, get$okButtonLabel: function() { return "\xcd lagi"; }, get$openAppDrawerTooltip: function() { return "Opna yfirlitsvalmynd"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow af $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow af um \xfea\xf0 bil $rowCount"; }, get$popupMenuLabel: function() { return "Sprettivalmynd"; }, get$postMeridiemAbbreviation: function() { return "e.h."; }, get$previousMonthTooltip: function() { return "Fyrri m\xe1nu\xf0ur"; }, get$previousPageTooltip: function() { return "Fyrri s\xed\xf0a"; }, get$refreshIndicatorSemanticLabel: function() { return "Endurn\xfdja"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 stafur eftir"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount stafir eftir"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "F\xe6ra ni\xf0ur"; }, get$reorderItemToEnd: function() { return "F\xe6ra aftast"; }, get$reorderItemToStart: function() { return "F\xe6ra fremst"; }, get$reorderItemUp: function() { return "F\xe6ra upp"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Velja \xe1r"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 atri\xf0i vali\xf0"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount atri\xf0i valin"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "S\xfdna valmynd"; }, get$tabLabelRaw: function() { return "Flipi $tabIndex af $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "VELJA T\xcdMA"; }, get$timePickerHourLabel: function() { return "Klukkustund"; }, get$timePickerHourModeAnnouncement: function() { return "Velja klukkustundir"; }, get$timePickerInputHelpText: function() { return "F\xc6RA INN T\xcdMA"; }, get$timePickerMinuteLabel: function() { return "M\xedn\xfata"; }, get$timePickerMinuteModeAnnouncement: function() { return "Velja m\xedn\xfatur"; } }; Y.MaterialLocalizationIt.prototype = { get$alertDialogLabel: function() { return "Avviso"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Indietro"; }, get$calendarModeButtonLabel: function() { return "Passa al calendario"; }, get$cancelButtonLabel: function() { return "ANNULLA"; }, get$collapsedIconTapHint: function() { return "Espandi"; }, get$dateHelpText: function() { return "mm/gg/aaaa"; }, get$dateInputLabel: function() { return "Inserisci data"; }, get$dateOutOfRangeLabel: function() { return "Fuori intervallo."; }, get$datePickerHelpText: function() { return "SELEZIONA DATA"; }, get$dialModeButtonLabel: function() { return "Passa alla modalit\xe0 selettore del quadrante"; }, get$dialogLabel: function() { return "Finestra di dialogo"; }, get$drawerLabel: function() { return "Menu di navigazione"; }, get$expandedIconTapHint: function() { return "Comprimi"; }, get$inputDateModeButtonLabel: function() { return "Passa alla modalit\xe0 di immissione"; }, get$inputTimeModeButtonLabel: function() { return "Passa alla modalit\xe0 immissione testo"; }, get$invalidDateFormatLabel: function() { return "Formato non valido."; }, get$invalidTimeLabel: function() { return "Inserisci un orario valido"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenza"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenze"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenze"; }, get$modalBarrierDismissLabel: function() { return "Ignora"; }, get$nextMonthTooltip: function() { return "Mese successivo"; }, get$nextPageTooltip: function() { return "Pagina successiva"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Apri il menu di navigazione"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow di $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow di circa $rowCount"; }, get$popupMenuLabel: function() { return "Menu popup"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Mese precedente"; }, get$previousPageTooltip: function() { return "Pagina precedente"; }, get$refreshIndicatorSemanticLabel: function() { return "Aggiorna"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 carattere rimanente"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount caratteri rimanenti"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Sposta gi\xf9"; }, get$reorderItemToEnd: function() { return "Sposta alla fine"; }, get$reorderItemToStart: function() { return "Sposta all'inizio"; }, get$reorderItemUp: function() { return "Sposta su"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Seleziona anno"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 elemento selezionato"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elementi selezionati"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Mostra il menu"; }, get$tabLabelRaw: function() { return "Scheda $tabIndex di $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SELEZIONA L'ORA"; }, get$timePickerHourLabel: function() { return "Ora"; }, get$timePickerHourModeAnnouncement: function() { return "Seleziona le ore"; }, get$timePickerInputHelpText: function() { return "INSERISCI L'ORA"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Seleziona i minuti"; } }; Y.MaterialLocalizationJa.prototype = { get$alertDialogLabel: function() { return "\u901a\u77e5"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u623b\u308b"; }, get$calendarModeButtonLabel: function() { return "\u30ab\u30ec\u30f3\u30c0\u30fc\u306b\u5207\u308a\u66ff\u3048"; }, get$cancelButtonLabel: function() { return "\u30ad\u30e3\u30f3\u30bb\u30eb"; }, get$collapsedIconTapHint: function() { return "\u5c55\u958b"; }, get$dateHelpText: function() { return "yyyy/mm/dd"; }, get$dateInputLabel: function() { return "\u65e5\u4ed8\u3092\u5165\u529b"; }, get$dateOutOfRangeLabel: function() { return "\u7bc4\u56f2\u5916\u3067\u3059\u3002"; }, get$datePickerHelpText: function() { return "\u65e5\u4ed8\u306e\u9078\u629e"; }, get$dialModeButtonLabel: function() { return "\u30c0\u30a4\u30e4\u30eb\u9078\u629e\u30c4\u30fc\u30eb \u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u3048\u307e\u3059"; }, get$dialogLabel: function() { return "\u30c0\u30a4\u30a2\u30ed\u30b0"; }, get$drawerLabel: function() { return "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc"; }, get$expandedIconTapHint: function() { return "\u6298\u308a\u305f\u305f\u3080"; }, get$inputDateModeButtonLabel: function() { return "\u5165\u529b\u306b\u5207\u308a\u66ff\u3048"; }, get$inputTimeModeButtonLabel: function() { return "\u30c6\u30ad\u30b9\u30c8\u5165\u529b\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u3048\u307e\u3059"; }, get$invalidDateFormatLabel: function() { return "\u5f62\u5f0f\u304c\u7121\u52b9\u3067\u3059\u3002"; }, get$invalidTimeLabel: function() { return "\u6709\u52b9\u306a\u6642\u523b\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u30e9\u30a4\u30bb\u30f3\u30b9: 1 \u4ef6"; }, get$licensesPackageDetailTextOther: function() { return "\u30e9\u30a4\u30bb\u30f3\u30b9: $licenseCount \u4ef6"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u30e9\u30a4\u30bb\u30f3\u30b9"; }, get$modalBarrierDismissLabel: function() { return "\u9589\u3058\u308b"; }, get$nextMonthTooltip: function() { return "\u6765\u6708"; }, get$nextPageTooltip: function() { return "\u6b21\u306e\u30da\u30fc\u30b8"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow - $lastRow \u884c\uff08\u5408\u8a08 $rowCount \u884c\uff09"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow \u884c\uff08\u5408\u8a08\u7d04 $rowCount \u884c\uff09"; }, get$popupMenuLabel: function() { return "\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7 \u30e1\u30cb\u30e5\u30fc"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u524d\u6708"; }, get$previousPageTooltip: function() { return "\u524d\u306e\u30da\u30fc\u30b8"; }, get$refreshIndicatorSemanticLabel: function() { return "\u66f4\u65b0"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u6b8b\u308a 1 \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u6b8b\u308a $remainingCount \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u4e0b\u306b\u79fb\u52d5"; }, get$reorderItemToEnd: function() { return "\u6700\u5f8c\u306b\u79fb\u52d5"; }, get$reorderItemToStart: function() { return "\u5148\u982d\u306b\u79fb\u52d5"; }, get$reorderItemUp: function() { return "\u4e0a\u306b\u79fb\u52d5"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u5e74\u3092\u9078\u629e"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u4ef6\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u9078\u629e\u4e2d"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u4ef6\u306e\u30a2\u30a4\u30c6\u30e0\u3092\u9078\u629e\u4e2d"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a"; }, get$tabLabelRaw: function() { return "\u30bf\u30d6: $tabIndex/$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u6642\u523b\u306e\u9078\u629e"; }, get$timePickerHourLabel: function() { return "\u6642"; }, get$timePickerHourModeAnnouncement: function() { return "\u6642\u9593\u3092\u9078\u629e"; }, get$timePickerInputHelpText: function() { return "\u6642\u523b\u306e\u5165\u529b"; }, get$timePickerMinuteLabel: function() { return "\u5206"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u5206\u3092\u9078\u629e"; } }; Y.MaterialLocalizationKa.prototype = { get$alertDialogLabel: function() { return "\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u10e3\u10d9\u10d0\u10dc"; }, get$calendarModeButtonLabel: function() { return "\u10d9\u10d0\u10da\u10d4\u10dc\u10d3\u10d0\u10e0\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$cancelButtonLabel: function() { return "\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0"; }, get$collapsedIconTapHint: function() { return "\u10d2\u10d0\u10e8\u10da\u10d0"; }, get$dateHelpText: function() { return "\u10d3\u10d3.\u10d7\u10d7.\u10ec\u10ec\u10ec\u10ec"; }, get$dateInputLabel: function() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8"; }, get$dateOutOfRangeLabel: function() { return "\u10d3\u10d8\u10d0\u10de\u10d0\u10d6\u10dd\u10dc\u10e1 \u10db\u10d8\u10e6\u10db\u10d0\u10d0."; }, get$datePickerHelpText: function() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8"; }, get$dialModeButtonLabel: function() { return "\u10ea\u10d8\u10e4\u10d4\u10e0\u10d1\u10da\u10d0\u10e2\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$dialogLabel: function() { return "\u10d3\u10d8\u10d0\u10da\u10dd\u10d2\u10d8"; }, get$drawerLabel: function() { return "\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10d8\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3"; }, get$expandedIconTapHint: function() { return "\u10e9\u10d0\u10d9\u10d4\u10ea\u10d5\u10d0"; }, get$inputDateModeButtonLabel: function() { return "\u10e8\u10d4\u10e7\u10d5\u10d0\u10dc\u10d0\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$inputTimeModeButtonLabel: function() { return "\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e8\u10d4\u10e7\u10d5\u10d0\u10dc\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"; }, get$invalidDateFormatLabel: function() { return "\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8 \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8\u10d0."; }, get$invalidTimeLabel: function() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10e1\u10ec\u10dd\u10e0\u10d8 \u10d3\u10e0\u10dd"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d0"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d0"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u10da\u10d8\u10ea\u10d4\u10dc\u10d6\u10d8\u10d4\u10d1\u10d8"; }, get$modalBarrierDismissLabel: function() { return "\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"; }, get$nextMonthTooltip: function() { return "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d7\u10d5\u10d4"; }, get$nextPageTooltip: function() { return "\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$okButtonLabel: function() { return "\u10d9\u10d0\u10e0\u10d2\u10d8"; }, get$openAppDrawerTooltip: function() { return "\u10e1\u10d0\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10dd \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow / $rowCount-\u10d3\u10d0\u10dc"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow / \u10d3\u10d0\u10d0\u10ee\u10da\u10dd\u10d4\u10d1\u10d8\u10d7 $rowCount-\u10d3\u10d0\u10dc"; }, get$popupMenuLabel: function() { return "\u10d0\u10db\u10dd\u10db\u10ee\u10e2\u10d0\u10e0\u10d8 \u10db\u10d4\u10dc\u10d8\u10e3"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u10ec\u10d8\u10dc\u10d0 \u10d7\u10d5\u10d4"; }, get$previousPageTooltip: function() { return "\u10ec\u10d8\u10dc\u10d0 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"; }, get$refreshIndicatorSemanticLabel: function() { return "\u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u10d3\u10d0\u10e0\u10e9\u10d0 1 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u10d3\u10d0\u10e0\u10e9\u10d0 $remainingCount \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u10e5\u10d5\u10d4\u10db\u10dd\u10d7 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemToEnd: function() { return "\u10d1\u10dd\u10da\u10dd\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemToStart: function() { return "\u10d3\u10d0\u10e1\u10d0\u10ec\u10e7\u10d8\u10e1\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$reorderItemUp: function() { return "\u10d6\u10d4\u10db\u10dd\u10d7 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10ec\u10d4\u10da\u10d8"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 1 \u10d4\u10e0\u10d7\u10d4\u10e3\u10da\u10d8"; }, get$selectedRowCountTitleOther: function() { return "\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 $selectedRowCount \u10d4\u10e0\u10d7\u10d4\u10e3\u10da\u10d8"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"; }, get$tabLabelRaw: function() { return "\u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10d8 $tabIndex / $tabCount-\u10d3\u10d0\u10dc"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d3\u10e0\u10dd"; }, get$timePickerHourLabel: function() { return "\u10e1\u10d0\u10d0\u10d7\u10d8"; }, get$timePickerHourModeAnnouncement: function() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e1\u10d0\u10d0\u10d7\u10d4\u10d1\u10d8"; }, get$timePickerInputHelpText: function() { return "\u10e8\u10d4\u10d8\u10e7\u10d5\u10d0\u10dc\u10d4\u10d7 \u10d3\u10e0\u10dd"; }, get$timePickerMinuteLabel: function() { return "\u10ec\u10e3\u10d7\u10d8"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10ec\u10e3\u10d7\u10d4\u10d1\u10d8"; } }; Y.MaterialLocalizationKk.prototype = { get$alertDialogLabel: function() { return "\u0414\u0430\u0431\u044b\u043b"; }, get$anteMeridiemAbbreviation: function() { return "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"; }, get$backButtonTooltip: function() { return "\u0410\u0440\u0442\u049b\u0430"; }, get$calendarModeButtonLabel: function() { return "\u041a\u04af\u043d\u0442\u0456\u0437\u0431\u0435\u0433\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$cancelButtonLabel: function() { return "\u0411\u0410\u0421 \u0422\u0410\u0420\u0422\u0423"; }, get$collapsedIconTapHint: function() { return "\u0416\u0430\u044e"; }, get$dateHelpText: function() { return "\u043a\u043a.\u0430\u0430.\u0436\u0436\u0436\u0436"; }, get$dateInputLabel: function() { return "\u041a\u04af\u043d\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443"; }, get$dateOutOfRangeLabel: function() { return "\u0410\u0443\u049b\u044b\u043c\u043d\u0430\u043d \u0442\u044bc."; }, get$datePickerHelpText: function() { return "\u041a\u04ae\u041d\u0414\u0406 \u0422\u0410\u04a2\u0414\u0410\u0423"; }, get$dialModeButtonLabel: function() { return "\u0422\u0430\u04a3\u0434\u0430\u0443 \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$dialogLabel: function() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u0440\u0435\u0437\u0435"; }, get$drawerLabel: function() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456"; }, get$expandedIconTapHint: function() { return "\u0416\u0438\u044e"; }, get$inputDateModeButtonLabel: function() { return "\u041c\u04d9\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0443\u0433\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$inputTimeModeButtonLabel: function() { return "\u041c\u04d9\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0443 \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0435 \u0430\u0443\u044b\u0441\u0443"; }, get$invalidDateFormatLabel: function() { return "\u0424\u043e\u0440\u043c\u0430\u0442 \u0436\u0430\u0440\u0430\u043c\u0441\u044b\u0437."; }, get$invalidTimeLabel: function() { return "\u0416\u0430\u0440\u0430\u043c\u0434\u044b \u0443\u0430\u049b\u044b\u0442 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437."; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f\u043b\u0430\u0440"; }, get$modalBarrierDismissLabel: function() { return "\u0416\u0430\u0431\u0443"; }, get$nextMonthTooltip: function() { return "\u041a\u0435\u043b\u0435\u0441\u0456 \u0430\u0439"; }, get$nextPageTooltip: function() { return "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0435\u0442"; }, get$okButtonLabel: function() { return "\u0418\u04d9"; }, get$openAppDrawerTooltip: function() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456\u043d \u0430\u0448\u0443"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u0456\u0448\u0456\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0428\u0430\u043c\u0430\u043c\u0435\u043d $rowCount \u0456\u0448\u0456\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u049a\u0430\u043b\u049b\u044b\u043c\u0430\u043b\u044b \u0442\u0435\u0440\u0435\u0437\u0435 \u043c\u04d9\u0437\u0456\u0440\u0456"; }, get$postMeridiemAbbreviation: function() { return "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"; }, get$previousMonthTooltip: function() { return "\u04e8\u0442\u043a\u0435\u043d \u0430\u0439"; }, get$previousPageTooltip: function() { return "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0431\u0435\u0442"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440 \u049b\u0430\u043b\u043c\u0430\u0434\u044b"; }, get$reorderItemDown: function() { return "\u0422\u04e9\u043c\u0435\u043d\u0433\u0435 \u0436\u044b\u043b\u0436\u044b\u0442\u0443"; }, get$reorderItemToEnd: function() { return "\u0421\u043e\u04a3\u044b\u043d\u0430 \u04e9\u0442\u0443"; }, get$reorderItemToStart: function() { return "\u0411\u0430\u0441\u044b\u043d\u0430 \u04e9\u0442\u0443"; }, get$reorderItemUp: function() { return "\u0416\u043e\u0493\u0430\u0440\u044b\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0416\u044b\u043b\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u04a3\u0434\u0430\u043b\u0434\u044b."; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0442\u0430\u04a3\u0434\u0430\u043b\u0434\u044b."; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u0422\u0430\u0440\u043c\u0430\u049b \u0442\u0430\u04a3\u0434\u0430\u043b\u043c\u0430\u0493\u0430\u043d"; }, get$showMenuTooltip: function() { return "\u041c\u04d9\u0437\u0456\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443"; }, get$tabLabelRaw: function() { return "$tabCount/$tabIndex \u049b\u043e\u0439\u044b\u043d\u0434\u044b"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0423\u0410\u049a\u042b\u0422\u0422\u042b \u0422\u0410\u04a2\u0414\u0410\u04a2\u042b\u0417"; }, get$timePickerHourLabel: function() { return "\u0421\u0430\u0493\u0430\u0442"; }, get$timePickerHourModeAnnouncement: function() { return "\u0421\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437"; }, get$timePickerInputHelpText: function() { return "\u0423\u0410\u049a\u042b\u0422\u0422\u042b \u0415\u041d\u0413\u0406\u0417\u0406\u04a2\u0406\u0417"; }, get$timePickerMinuteLabel: function() { return "M\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u041c\u0438\u043d\u0443\u0442\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437"; } }; Y.MaterialLocalizationKm.prototype = { get$alertDialogLabel: function() { return "\u1787\u17bc\u1793\u178a\u17c6\u178e\u17b9\u1784"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u1790\u1799\u1780\u17d2\u179a\u17c4\u1799"; }, get$calendarModeButtonLabel: function() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1794\u17d2\u179a\u178f\u17b7\u1791\u17b7\u1793"; }, get$cancelButtonLabel: function() { return "\u1794\u17c4\u17c7\u1794\u1784\u17cb"; }, get$collapsedIconTapHint: function() { return "\u1796\u1784\u17d2\u179a\u17b8\u1780"; }, get$dateHelpText: function() { return "\u1790\u17d2\u1784\u17c3/\u1781\u17c2/\u1786\u17d2\u1793\u17b6\u17c6"; }, get$dateInputLabel: function() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u1780\u17b6\u179b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791"; }, get$dateOutOfRangeLabel: function() { return "\u1780\u17d2\u179a\u17c5\u1785\u1793\u17d2\u179b\u17c4\u17c7\u17d4"; }, get$datePickerHelpText: function() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1780\u17b6\u179b\u200b\u1794\u179a\u17b7\u1785\u17d2\u1786\u17c1\u1791"; }, get$dialModeButtonLabel: function() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u1798\u17bb\u1781\u1784\u17b6\u179a\u1795\u17d2\u1791\u17b6\u17c6\u1784\u200b\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u179b\u17c1\u1781"; }, get$dialogLabel: function() { return "\u1794\u17d2\u179a\u17a2\u1794\u17cb"; }, get$drawerLabel: function() { return "\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"; }, get$expandedIconTapHint: function() { return "\u1794\u1784\u17d2\u179a\u17bd\u1798"; }, get$inputDateModeButtonLabel: function() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1780\u17b6\u179a\u1794\u1789\u17d2\u1785\u17bc\u179b"; }, get$inputTimeModeButtonLabel: function() { return "\u1794\u17d2\u178a\u17bc\u179a\u1791\u17c5\u200b\u1798\u17bb\u1781\u1784\u17b6\u179a\u200b\u1794\u1789\u17d2\u1785\u17bc\u179b\u200b\u17a2\u1780\u17d2\u179f\u179a"; }, get$invalidDateFormatLabel: function() { return "\u1791\u1798\u17d2\u179a\u1784\u17cb\u1798\u17b7\u1793\u200b\u178f\u17d2\u179a\u17b9\u1798\u178f\u17d2\u179a\u17bc\u179c\u1791\u17c1\u17d4"; }, get$invalidTimeLabel: function() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6\u200b\u178a\u17c2\u179b\u200b\u178f\u17d2\u179a\u17b9\u1798\u178f\u17d2\u179a\u17bc\u179c"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e 1"; }, get$licensesPackageDetailTextOther: function() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e $licenseCount"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u17a2\u17b6\u1787\u17d2\u1789\u17b6\u1794\u178e\u17d2\u178e"; }, get$modalBarrierDismissLabel: function() { return "\u1785\u17d2\u179a\u17b6\u1793\u200b\u1785\u17c4\u179b"; }, get$nextMonthTooltip: function() { return "\u1781\u17c2\u200b\u200b\u1780\u17d2\u179a\u17c4\u1799"; }, get$nextPageTooltip: function() { return "\u1791\u17c6\u1796\u17d0\u179a\u1794\u1793\u17d2\u1791\u17b6\u1794\u17cb"; }, get$okButtonLabel: function() { return "\u1799\u179b\u17cb\u1796\u17d2\u179a\u1798"; }, get$openAppDrawerTooltip: function() { return "\u1794\u17be\u1780\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b\u1794\u17d2\u179a\u17a0\u17c2\u179b $rowCount"; }, get$popupMenuLabel: function() { return "\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u200b\u179b\u17c4\u178f\u200b\u17a1\u17be\u1784"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u1781\u17c2\u1798\u17bb\u1793"; }, get$previousPageTooltip: function() { return "\u1791\u17c6\u1796\u17d0\u179a\u1798\u17bb\u1793"; }, get$refreshIndicatorSemanticLabel: function() { return "\u1795\u17d2\u1791\u17bb\u1780\u17a1\u17be\u1784\u179c\u17b7\u1789"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u1793\u17c5\u179f\u179b\u17cb\u200b 1 \u178f\u17bd\u200b\u1791\u17c0\u178f"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u1793\u17c5\u179f\u179b\u17cb $remainingCount \u178f\u17bd\u200b\u1791\u17c0\u178f"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u200b\u1785\u17bb\u17c7\u200b\u1780\u17d2\u179a\u17c4\u1798"; }, get$reorderItemToEnd: function() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u1791\u17c5\u200b\u1785\u17c6\u178e\u17bb\u1785\u1794\u1789\u17d2\u1785\u1794\u17cb"; }, get$reorderItemToStart: function() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u1791\u17c5\u200b\u1785\u17c6\u178e\u17bb\u1785\u200b\u1785\u17b6\u1794\u17cb\u1795\u17d2\u178a\u17be\u1798"; }, get$reorderItemUp: function() { return "\u1795\u17d2\u179b\u17b6\u179f\u17cb\u1791\u17b8\u200b\u17a1\u17be\u1784\u200b\u179b\u17be"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u1786\u17d2\u1793\u17b6\u17c6"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u1794\u17b6\u1793\u200b\u1787\u17d2\u179a\u17be\u179f\u200b\u179a\u17be\u179f\u200b\u1792\u17b6\u178f\u17bb 1"; }, get$selectedRowCountTitleOther: function() { return "\u1794\u17b6\u1793\u200b\u1787\u17d2\u179a\u17be\u179f\u200b\u179a\u17be\u179f\u200b\u1792\u17b6\u178f\u17bb $selectedRowCount"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799"; }, get$tabLabelRaw: function() { return "\u1795\u17d2\u1791\u17b6\u17c6\u1784 $tabIndex \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6"; }, get$timePickerHourLabel: function() { return "\u1798\u17c9\u17c4\u1784"; }, get$timePickerHourModeAnnouncement: function() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1798\u17c9\u17c4\u1784"; }, get$timePickerInputHelpText: function() { return "\u1794\u1789\u17d2\u1785\u17bc\u179b\u1796\u17c1\u179b\u179c\u17c1\u179b\u17b6"; }, get$timePickerMinuteLabel: function() { return "\u1793\u17b6\u1791\u17b8\u200b"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1793\u17b6\u1791\u17b8"; } }; Y.MaterialLocalizationKn.prototype = { get$alertDialogLabel: function() { return "\u0c8e\u0c9a\u0ccd\u0c9a\u0cb0\u0cbf\u0c95\u0cc6"; }, get$anteMeridiemAbbreviation: function() { return "\u0cac\u0cc6\u0cb3\u0cbf\u0c97\u0ccd\u0c97\u0cc6"; }, get$backButtonTooltip: function() { return "\u0cb9\u0cbf\u0c82\u0ca4\u0cbf\u0cb0\u0cc1\u0c97\u0cbf"; }, get$calendarModeButtonLabel: function() { return "\u0c95\u0ccd\u0caf\u0cbe\u0cb2\u0cc6\u0c82\u0ca1\u0cb0\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbf\u0cb8\u0cbf"; }, get$cancelButtonLabel: function() { return "\u0cb0\u0ca6\u0ccd\u0ca6\u0cc1\u0cae\u0cbe\u0ca1\u0cbf"; }, get$collapsedIconTapHint: function() { return "\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0ca6\u0cbf\u0ca8\u0cbe\u0c82\u0c95 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$dateOutOfRangeLabel: function() { return "\u0cb5\u0ccd\u0caf\u0cbe\u0caa\u0ccd\u0ca4\u0cbf\u0caf \u0cb9\u0cca\u0cb0\u0c97\u0cbf\u0ca6\u0cc6"; }, get$datePickerHelpText: function() { return "\u0ca6\u0cbf\u0ca8\u0cbe\u0c82\u0c95\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$dialModeButtonLabel: function() { return "\u0ca1\u0caf\u0cb2\u0ccd \u0caa\u0cbf\u0c95\u0cb0\u0ccd\u200c \u0cae\u0ccb\u0ca1\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbe\u0caf\u0cbf\u0cb8\u0cbf"; }, get$dialogLabel: function() { return "\u0ca1\u0cc8\u0cb2\u0cbe\u0c97\u0ccd"; }, get$drawerLabel: function() { return "\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1"; }, get$expandedIconTapHint: function() { return "\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cbf"; }, get$inputDateModeButtonLabel: function() { return "\u0c87\u0ca8\u0ccd\u200c\u0caa\u0cc1\u0c9f\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbf\u0cb8\u0cbf"; }, get$inputTimeModeButtonLabel: function() { return "\u0caa\u0ca0\u0ccd\u0caf \u0c87\u0ca8\u0ccd\u200c\u0caa\u0cc1\u0c9f\u0ccd \u0cae\u0ccb\u0ca1\u0ccd\u200c\u0c97\u0cc6 \u0cac\u0ca6\u0cb2\u0cbe\u0caf\u0cbf\u0cb8\u0cbf"; }, get$invalidDateFormatLabel: function() { return "\u0c85\u0cae\u0cbe\u0ca8\u0ccd\u0caf\u0cb5\u0cbe\u0ca6 \u0cab\u0cbe\u0cb0\u0ccd\u0cae\u0ccd\u0caf\u0cbe\u0c9f\u0ccd."; }, get$invalidTimeLabel: function() { return "\u0cae\u0cbe\u0ca8\u0ccd\u0caf\u0cb5\u0cbe\u0ca6 \u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf\u0c97\u0cb3\u0cc1"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0caa\u0cb0\u0cb5\u0cbe\u0ca8\u0c97\u0cbf\u0c97\u0cb3\u0cc1"; }, get$modalBarrierDismissLabel: function() { return "\u0cb5\u0c9c\u0cbe\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf"; }, get$nextMonthTooltip: function() { return "\u0cae\u0cc1\u0c82\u0ca6\u0cbf\u0ca8 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1"; }, get$nextPageTooltip: function() { return "\u0cae\u0cc1\u0c82\u0ca6\u0cbf\u0ca8 \u0caa\u0cc1\u0c9f"; }, get$okButtonLabel: function() { return "\u0cb8\u0cb0\u0cbf"; }, get$openAppDrawerTooltip: function() { return "\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0cc6\u0cb0\u0cc6\u0caf\u0cbf\u0cb0\u0cbf"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0caa\u0cbe\u0caa\u0ccd\u0c85\u0caa\u0ccd \u0cae\u0cc6\u0ca8\u0cc1"; }, get$postMeridiemAbbreviation: function() { return "\u0cb8\u0c82\u0c9c\u0cc6"; }, get$previousMonthTooltip: function() { return "\u0cb9\u0cbf\u0c82\u0ca6\u0cbf\u0ca8 \u0ca4\u0cbf\u0c82\u0c97\u0cb3\u0cc1"; }, get$previousPageTooltip: function() { return "\u0cb9\u0cbf\u0c82\u0ca6\u0cbf\u0ca8 \u0caa\u0cc1\u0c9f"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0cb0\u0cbf\u0cab\u0ccd\u0cb0\u0cc6\u0cb6\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0c85\u0c95\u0ccd\u0cb7\u0cb0 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0ca6\u0cc6"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0c85\u0c95\u0ccd\u0cb7\u0cb0\u0c97\u0cb3\u0cc1 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0cb5\u0cc6"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0c95\u0cc6\u0cb3\u0c97\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemToEnd: function() { return "\u0c95\u0cca\u0ca8\u0cc6\u0c97\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemToStart: function() { return "\u0caa\u0ccd\u0cb0\u0cbe\u0cb0\u0c82\u0cad\u0c95\u0ccd\u0c95\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$reorderItemUp: function() { return "\u0cae\u0cc7\u0cb2\u0cc6 \u0cb8\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0cb5\u0cb0\u0ccd\u0cb7\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0c90\u0c9f\u0c82 \u0c86\u0caf\u0ccd\u0c95\u0cc6 \u0cae\u0cbe\u0ca1\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0c90\u0c9f\u0c82\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6 \u0cae\u0cbe\u0ca1\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0ccb\u0cb0\u0cbf\u0cb8\u0cbf"; }, get$tabLabelRaw: function() { return "$tabCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf\u0ca8 $tabIndex \u0c9f\u0ccd\u0caf\u0cbe\u0cac\u0ccd"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$timePickerHourLabel: function() { return "\u0c97\u0c82\u0c9f\u0cc6"; }, get$timePickerHourModeAnnouncement: function() { return "\u0c97\u0c82\u0c9f\u0cc6\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; }, get$timePickerInputHelpText: function() { return "\u0cb8\u0cae\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0ca8\u0cae\u0cc2\u0ca6\u0cbf\u0cb8\u0cbf"; }, get$timePickerMinuteLabel: function() { return "\u0ca8\u0cbf\u0cae\u0cbf\u0cb7"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0ca8\u0cbf\u0cae\u0cbf\u0cb7\u0c97\u0cb3\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"; } }; Y.MaterialLocalizationKo.prototype = { get$alertDialogLabel: function() { return "\uc54c\ub9bc"; }, get$anteMeridiemAbbreviation: function() { return "\uc624\uc804"; }, get$backButtonTooltip: function() { return "\ub4a4\ub85c"; }, get$calendarModeButtonLabel: function() { return "\uce98\ub9b0\ub354 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$cancelButtonLabel: function() { return "\ucde8\uc18c"; }, get$collapsedIconTapHint: function() { return "\ud3bc\uce58\uae30"; }, get$dateHelpText: function() { return "yyyy.mm.dd"; }, get$dateInputLabel: function() { return "\ub0a0\uc9dc \uc785\ub825"; }, get$dateOutOfRangeLabel: function() { return "\ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4."; }, get$datePickerHelpText: function() { return "\ub0a0\uc9dc \uc120\ud0dd"; }, get$dialModeButtonLabel: function() { return "\ub2e4\uc774\uc5bc \uc120\ud0dd \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$dialogLabel: function() { return "\ub300\ud654\uc0c1\uc790"; }, get$drawerLabel: function() { return "\ud0d0\uc0c9 \uba54\ub274"; }, get$expandedIconTapHint: function() { return "\uc811\uae30"; }, get$inputDateModeButtonLabel: function() { return "\uc785\ub825 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$inputTimeModeButtonLabel: function() { return "\ud14d\uc2a4\ud2b8 \uc785\ub825 \ubaa8\ub4dc\ub85c \uc804\ud658"; }, get$invalidDateFormatLabel: function() { return "\ud615\uc2dd\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4."; }, get$invalidTimeLabel: function() { return "\uc720\ud6a8\ud55c \uc2dc\uac04\uc744 \uc785\ub825\ud558\uc138\uc694."; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\ub77c\uc774\uc120\uc2a4 1\uac1c"; }, get$licensesPackageDetailTextOther: function() { return "\ub77c\uc774\uc120\uc2a4 $licenseCount\uac1c"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\ub77c\uc774\uc120\uc2a4"; }, get$modalBarrierDismissLabel: function() { return "\ub2eb\uae30"; }, get$nextMonthTooltip: function() { return "\ub2e4\uc74c \ub2ec"; }, get$nextPageTooltip: function() { return "\ub2e4\uc74c \ud398\uc774\uc9c0"; }, get$okButtonLabel: function() { return "\ud655\uc778"; }, get$openAppDrawerTooltip: function() { return "\ud0d0\uc0c9 \uba54\ub274 \uc5f4\uae30"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\ud589 \uc911 $firstRow~$lastRow\ud589"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\uc57d $rowCount\ud589 \uc911 $firstRow~$lastRow\ud589"; }, get$popupMenuLabel: function() { return "\ud31d\uc5c5 \uba54\ub274"; }, get$postMeridiemAbbreviation: function() { return "\uc624\ud6c4"; }, get$previousMonthTooltip: function() { return "\uc9c0\ub09c\ub2ec"; }, get$previousPageTooltip: function() { return "\uc774\uc804 \ud398\uc774\uc9c0"; }, get$refreshIndicatorSemanticLabel: function() { return "\uc0c8\ub85c\uace0\uce68"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1\uc790 \ub0a8\uc74c"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount\uc790 \ub0a8\uc74c"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\uc544\ub798\ub85c \uc774\ub3d9"; }, get$reorderItemToEnd: function() { return "\ub05d\uc73c\ub85c \uc774\ub3d9"; }, get$reorderItemToStart: function() { return "\uc2dc\uc791\uc73c\ub85c \uc774\ub3d9"; }, get$reorderItemUp: function() { return "\uc704\ub85c \uc774\ub3d9"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\uc5f0\ub3c4 \uc120\ud0dd"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\ud56d\ubaa9 1\uac1c \uc120\ud0dd\ub428"; }, get$selectedRowCountTitleOther: function() { return "\ud56d\ubaa9 $selectedRowCount\uac1c \uc120\ud0dd\ub428"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\uba54\ub274 \ud45c\uc2dc"; }, get$tabLabelRaw: function() { return "\ud0ed $tabCount\uac1c \uc911 $tabIndex\ubc88\uc9f8"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_5; }, get$timePickerDialHelpText: function() { return "\uc2dc\uac04 \uc120\ud0dd"; }, get$timePickerHourLabel: function() { return "\uc2dc\uac04"; }, get$timePickerHourModeAnnouncement: function() { return "\uc2dc\uac04 \uc120\ud0dd"; }, get$timePickerInputHelpText: function() { return "\uc2dc\uac04 \uc785\ub825"; }, get$timePickerMinuteLabel: function() { return "\ubd84"; }, get$timePickerMinuteModeAnnouncement: function() { return "\ubd84 \uc120\ud0dd"; } }; Y.MaterialLocalizationKy.prototype = { get$alertDialogLabel: function() { return "\u042d\u0441\u043a\u0435\u0440\u0442\u04af\u04af"; }, get$anteMeridiemAbbreviation: function() { return "\u0442\u04af\u0448\u043a\u04e9 \u0447\u0435\u0439\u0438\u043d"; }, get$backButtonTooltip: function() { return "\u0410\u0440\u0442\u043a\u0430"; }, get$calendarModeButtonLabel: function() { return "\u0416\u044b\u043b\u043d\u0430\u0430\u043c\u0430\u0433\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u04a3\u0443\u0437"; }, get$cancelButtonLabel: function() { return "\u0416\u041e\u041a\u041a\u041e \u0427\u042b\u0413\u0410\u0420\u0423\u0423"; }, get$collapsedIconTapHint: function() { return "\u0416\u0430\u0439\u044b\u043f \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af"; }, get$dateHelpText: function() { return "\u043a\u043a.\u0430\u0430.\u0436\u0436\u0436\u0436"; }, get$dateInputLabel: function() { return "\u041a\u04af\u043d\u0434\u04af \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af"; }, get$dateOutOfRangeLabel: function() { return "\u0410\u0440\u0430\u043a\u0435\u0442 \u0447\u0435\u0433\u0438\u043d\u0435\u043d \u0442\u044b\u0448\u043a\u0430\u0440\u044b."; }, get$datePickerHelpText: function() { return "\u041a\u04ae\u041d\u0414\u04ae \u0422\u0410\u041d\u0414\u041e\u041e"; }, get$dialModeButtonLabel: function() { return "\u0422\u0435\u0440\u04af\u04af\u043d\u04af \u0442\u0430\u043d\u0434\u0430\u0433\u044b\u0447 \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u0443"; }, get$dialogLabel: function() { return "\u0414\u0438\u0430\u043b\u043e\u0433"; }, get$drawerLabel: function() { return "\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443"; }, get$expandedIconTapHint: function() { return "\u0416\u044b\u0439\u044b\u0448\u0442\u044b\u0440\u0443\u0443"; }, get$inputDateModeButtonLabel: function() { return "\u0422\u0435\u0440\u0438\u043f \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u04a3\u0443\u0437"; }, get$inputTimeModeButtonLabel: function() { return "\u0422\u0435\u043a\u0441\u0442 \u043a\u0438\u0440\u0433\u0438\u0437\u04af\u04af \u0440\u0435\u0436\u0438\u043c\u0438\u043d\u0435 \u043a\u043e\u0442\u043e\u0440\u0443\u043b\u0443\u0443"; }, get$invalidDateFormatLabel: function() { return "\u0416\u0430\u0440\u0430\u043a\u0441\u044b\u0437 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel: function() { return "\u0423\u0431\u0430\u043a\u044b\u0442\u0442\u044b \u0442\u0443\u0443\u0440\u0430 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04a3\u04af\u0437"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0443\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0443\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0423\u0440\u0443\u043a\u0441\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440"; }, get$modalBarrierDismissLabel: function() { return "\u0416\u0430\u0431\u0443\u0443"; }, get$nextMonthTooltip: function() { return "\u041a\u0438\u0439\u0438\u043d\u043a\u0438 \u0430\u0439"; }, get$nextPageTooltip: function() { return "\u041a\u0438\u0439\u0438\u043d\u043a\u0438 \u0431\u0435\u0442"; }, get$okButtonLabel: function() { return "\u041c\u0430\u043a\u0443\u043b"; }, get$openAppDrawerTooltip: function() { return "\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443\u043d \u0430\u0447\u0443\u0443"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u0438\u0447\u0438\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0411\u043e\u043b\u0436\u043e\u043b \u043c\u0435\u043d\u0435\u043d $rowCount \u0438\u0447\u0438\u043d\u0435\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u041a\u0430\u043b\u043a\u044b\u043f \u0447\u044b\u0433\u0443\u0443\u0447\u0443 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation: function() { return "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d"; }, get$previousMonthTooltip: function() { return "\u041c\u0443\u0440\u0443\u043d\u043a\u0443 \u0430\u0439"; }, get$previousPageTooltip: function() { return "\u041c\u0443\u0440\u0443\u043d\u043a\u0443 \u0431\u0435\u0442"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0416\u0430\u04a3\u044b\u0440\u0442\u0443\u0443"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0422\u04e9\u043c\u04e9\u043d \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemToEnd: function() { return "\u0410\u044f\u0433\u044b\u043d\u0430 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemToStart: function() { return "\u0411\u0430\u0448\u044b\u043d\u0430 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$reorderItemUp: function() { return "\u0416\u043e\u0433\u043e\u0440\u0443 \u0436\u044b\u043b\u0434\u044b\u0440\u0443\u0443"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0416\u044b\u043b\u0434\u044b \u0442\u0430\u043d\u0434\u043e\u043e"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u043d\u0435\u0440\u0441\u0435 \u0442\u0430\u043d\u0434\u0430\u043b\u0434\u044b"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u043d\u0435\u0440\u0441\u0435 \u0442\u0430\u043d\u0434\u0430\u043b\u0434\u044b"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041c\u0435\u043d\u044e\u043d\u0443 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af"; }, get$tabLabelRaw: function() { return "$tabCount \u043a\u044b\u043d\u0430\u043b\u043c\u0430 \u0438\u0447\u0438\u043d\u0435\u043d $tabIndex"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0423\u0411\u0410\u041a\u042b\u0422 \u0422\u0410\u041d\u0414\u041e\u041e"; }, get$timePickerHourLabel: function() { return "\u0421\u0430\u0430\u0442"; }, get$timePickerHourModeAnnouncement: function() { return "\u0421\u0430\u0430\u0442\u0442\u044b \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437"; }, get$timePickerInputHelpText: function() { return "\u0423\u0411\u0410\u041a\u042b\u0422 \u041a\u0418\u0420\u0413\u0418\u0417\u04ae\u04ae"; }, get$timePickerMinuteLabel: function() { return "\u041c\u04af\u043d\u04e9\u0442"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u041c\u04af\u043d\u04e9\u0442\u0442\u04e9\u0440\u0434\u04af \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437"; } }; Y.MaterialLocalizationLo.prototype = { get$alertDialogLabel: function() { return "\u0e81\u0eb2\u0e99\u0ec0\u0e95\u0eb7\u0ead\u0e99"; }, get$anteMeridiemAbbreviation: function() { return "\u0e81\u0ec8\u0ead\u0e99\u0e97\u0ec8\u0ebd\u0e87"; }, get$backButtonTooltip: function() { return "\u0e81\u0eb1\u0e9a\u0e84\u0eb7\u0e99"; }, get$calendarModeButtonLabel: function() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0e9b\u0eb0\u0e95\u0eb4\u0e97\u0eb4\u0e99"; }, get$cancelButtonLabel: function() { return "\u0e8d\u0ebb\u0e81\u0ec0\u0ea5\u0eb5\u0e81"; }, get$collapsedIconTapHint: function() { return "\u0e82\u0eb0\u0eab\u0e8d\u0eb2\u0e8d"; }, get$dateHelpText: function() { return "\u0e94\u0e94/\u0ea7\u0ea7/\u0e9b\u0e9b\u0e9b\u0e9b"; }, get$dateInputLabel: function() { return "\u0ec3\u0eaa\u0ec8\u0ea7\u0eb1\u0e99\u0e97\u0eb5"; }, get$dateOutOfRangeLabel: function() { return "\u0ea2\u0eb9\u0ec8\u0e99\u0ead\u0e81\u0ec4\u0ea5\u0e8d\u0eb0."; }, get$datePickerHelpText: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ea7\u0eb1\u0e99\u0e97\u0eb5"; }, get$dialModeButtonLabel: function() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0ec3\u0e8a\u0ec9\u0ec2\u0edd\u0e94\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e95\u0ebb\u0ea7\u0ec0\u0ea5\u0e81"; }, get$dialogLabel: function() { return "\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"; }, get$drawerLabel: function() { return "\u0ec0\u0ea1\u0e99\u0eb9\u0e99\u0eb3\u0e97\u0eb2\u0e87"; }, get$expandedIconTapHint: function() { return "\u0eab\u0e8d\u0ecd\u0ec9\u0ec0\u0e82\u0ebb\u0ec9\u0eb2"; }, get$inputDateModeButtonLabel: function() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0e81\u0eb2\u0e99\u0e9b\u0ec9\u0ead\u0e99\u0e82\u0ecd\u0ec9\u0ea1\u0eb9\u0e99"; }, get$inputTimeModeButtonLabel: function() { return "\u0eaa\u0eb0\u0eab\u0ebc\u0eb1\u0e9a\u0ec4\u0e9b\u0ec3\u0e8a\u0ec9\u0ec2\u0edd\u0e94\u0e9b\u0ec9\u0ead\u0e99\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"; }, get$invalidDateFormatLabel: function() { return "\u0eae\u0eb9\u0e9a\u0ec1\u0e9a\u0e9a\u0e9a\u0ecd\u0ec8\u0e96\u0eb7\u0e81\u0e95\u0ec9\u0ead\u0e87."; }, get$invalidTimeLabel: function() { return "\u0ea5\u0eb0\u0e9a\u0eb8\u0ec0\u0ea7\u0ea5\u0eb2\u0e97\u0eb5\u0ec8\u0e96\u0eb7\u0e81\u0e95\u0ec9\u0ead\u0e87"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0ec3\u0e9a\u0ead\u0eb0\u0e99\u0eb8\u0e8d\u0eb2\u0e94"; }, get$modalBarrierDismissLabel: function() { return "\u0e9b\u0eb4\u0e94\u0ec4\u0ea7\u0ec9"; }, get$nextMonthTooltip: function() { return "\u0ec0\u0e94\u0eb7\u0ead\u0e99\u0edc\u0ec9\u0eb2"; }, get$nextPageTooltip: function() { return "\u0edc\u0ec9\u0eb2\u0e95\u0ecd\u0ec8\u0ec4\u0e9b"; }, get$okButtonLabel: function() { return "\u0e95\u0ebb\u0e81\u0ea5\u0ebb\u0e87"; }, get$openAppDrawerTooltip: function() { return "\u0ec0\u0e9b\u0eb5\u0e94\u0ec0\u0ea1\u0e99\u0eb9\u0e81\u0eb2\u0e99\u0e99\u0eb3\u0e97\u0eb2\u0e87"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0e88\u0eb2\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0e88\u0eb2\u0e81\u0e9b\u0eb0\u0ea1\u0eb2\u0e99 $rowCount"; }, get$popupMenuLabel: function() { return "\u0ec0\u0ea1\u0e99\u0eb9\u0e9b\u0eb1\u0ead\u0e9a\u0ead\u0eb1\u0e9a"; }, get$postMeridiemAbbreviation: function() { return "\u0eab\u0ebc\u0eb1\u0e87\u0e97\u0ec8\u0ebd\u0e87"; }, get$previousMonthTooltip: function() { return "\u0ec0\u0e94\u0eb7\u0ead\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$previousPageTooltip: function() { return "\u0edc\u0ec9\u0eb2\u0e81\u0ec8\u0ead\u0e99\u0edc\u0ec9\u0eb2"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0ec2\u0eab\u0ebc\u0e94\u0e84\u0eb7\u0e99\u0ec3\u0edd\u0ec8"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 1 \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 $remainingCount \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ea5\u0ebb\u0e87"; }, get$reorderItemToEnd: function() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ec4\u0e9b\u0eaa\u0eb4\u0ec9\u0e99\u0eaa\u0eb8\u0e94"; }, get$reorderItemToStart: function() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0ec4\u0e9b\u0ec0\u0ea5\u0eb5\u0ec8\u0ea1\u0e95\u0ebb\u0ec9\u0e99"; }, get$reorderItemUp: function() { return "\u0e8d\u0ec9\u0eb2\u0e8d\u0e82\u0eb6\u0ec9\u0e99"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u200b\u0e9b\u0eb5"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81 1 \u0ea5\u0eb2\u0e8d\u0e81\u0eb2\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$selectedRowCountTitleOther: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81 $selectedRowCount \u0ea5\u0eb2\u0e8d\u0e81\u0eb2\u0e99\u0ec1\u0ea5\u0ec9\u0ea7"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0eaa\u0eb0\u0ec1\u0e94\u0e87\u0ec0\u0ea1\u0e99\u0eb9"; }, get$tabLabelRaw: function() { return "\u0ec1\u0e96\u0e9a\u0e97\u0eb5 $tabIndex \u0e88\u0eb2\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ec0\u0ea7\u0ea5\u0eb2"; }, get$timePickerHourLabel: function() { return "\u0e8a\u0ebb\u0ec8\u0ea7\u0ec2\u0ea1\u0e87"; }, get$timePickerHourModeAnnouncement: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0ec2\u0ea1\u0e87"; }, get$timePickerInputHelpText: function() { return "\u0ea5\u0eb0\u0e9a\u0eb8\u0ec0\u0ea7\u0ea5\u0eb2"; }, get$timePickerMinuteLabel: function() { return "\u0e99\u0eb2\u0e97\u0eb5"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e99\u0eb2\u0e97\u0eb5"; } }; Y.MaterialLocalizationLt.prototype = { get$alertDialogLabel: function() { return "\u012esp\u0117jimas"; }, get$anteMeridiemAbbreviation: function() { return "prie\u0161piet"; }, get$backButtonTooltip: function() { return "Atgal"; }, get$calendarModeButtonLabel: function() { return "Perjungti \u012f kalendori\u0173"; }, get$cancelButtonLabel: function() { return "AT\u0160AUKTI"; }, get$collapsedIconTapHint: function() { return "I\u0161skleisti"; }, get$dateHelpText: function() { return "yyyy/mm/dd/"; }, get$dateInputLabel: function() { return "\u012eveskite dat\u0105"; }, get$dateOutOfRangeLabel: function() { return "Nepatenka \u012f diapazon\u0105."; }, get$datePickerHelpText: function() { return "PASIRINKITE DAT\u0104"; }, get$dialModeButtonLabel: function() { return "Perjungti \u012f ciferblato parinkiklio re\u017eim\u0105"; }, get$dialogLabel: function() { return "Dialogo langas"; }, get$drawerLabel: function() { return "Nar\u0161ymo meniu"; }, get$expandedIconTapHint: function() { return "Sutraukti"; }, get$inputDateModeButtonLabel: function() { return "Perjungti \u012f \u012fvest\u012f"; }, get$inputTimeModeButtonLabel: function() { return "Perjungti \u012f teksto \u012fvesties re\u017eim\u0105"; }, get$invalidDateFormatLabel: function() { return "Netinkamas formatas."; }, get$invalidTimeLabel: function() { return "\u012eveskite tinkam\u0105 laik\u0105"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licencijos"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount licencijos"; }, get$licensesPackageDetailTextOne: function() { return "1 licencija"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licencij\u0173"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencijos"; }, get$modalBarrierDismissLabel: function() { return "Atsisakyti"; }, get$nextMonthTooltip: function() { return "Kitas m\u0117nuo"; }, get$nextPageTooltip: function() { return "Kitas puslapis"; }, get$okButtonLabel: function() { return "GERAI"; }, get$openAppDrawerTooltip: function() { return "Atidaryti nar\u0161ymo meniu"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow i\u0161 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow i\u0161 ma\u017edaug $rowCount"; }, get$popupMenuLabel: function() { return "I\u0161\u0161okantysis meniu"; }, get$postMeridiemAbbreviation: function() { return "popiet"; }, get$previousMonthTooltip: function() { return "Ankstesnis m\u0117nuo"; }, get$previousPageTooltip: function() { return "Ankstesnis puslapis"; }, get$refreshIndicatorSemanticLabel: function() { return "Atnaujinti"; }, get$remainingTextFieldCharacterCountFew: function() { return "Liko $remainingCount simboliai"; }, get$remainingTextFieldCharacterCountMany: function() { return "Liko $remainingCount simbolio"; }, get$remainingTextFieldCharacterCountOne: function() { return "Liko 1 simbolis"; }, get$remainingTextFieldCharacterCountOther: function() { return "Liko $remainingCount simboli\u0173"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Perkelti \u017eemyn"; }, get$reorderItemToEnd: function() { return "Perkelti \u012f pabaig\u0105"; }, get$reorderItemToStart: function() { return "Perkelti \u012f prad\u017ei\u0105"; }, get$reorderItemUp: function() { return "Perkelti auk\u0161tyn"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Pasirinkite metus"; }, get$selectedRowCountTitleFew: function() { return "Pasirinkti $selectedRowCount elementai"; }, get$selectedRowCountTitleMany: function() { return "Pasirinkta $selectedRowCount elemento"; }, get$selectedRowCountTitleOne: function() { return "Pasirinktas 1 elementas"; }, get$selectedRowCountTitleOther: function() { return "Pasirinkta $selectedRowCount element\u0173"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Rodyti meniu"; }, get$tabLabelRaw: function() { return "$tabIndex skirtukas i\u0161 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "PASIRINKITE LAIK\u0104"; }, get$timePickerHourLabel: function() { return "Valandos"; }, get$timePickerHourModeAnnouncement: function() { return "Pasirinkite valandas"; }, get$timePickerInputHelpText: function() { return "\u012eVESKITE LAIK\u0104"; }, get$timePickerMinuteLabel: function() { return "Minut\u0117s"; }, get$timePickerMinuteModeAnnouncement: function() { return "Pasirinkite minutes"; } }; Y.MaterialLocalizationLv.prototype = { get$alertDialogLabel: function() { return "Br\u012bdin\u0101jums"; }, get$anteMeridiemAbbreviation: function() { return "priek\u0161pusdien\u0101"; }, get$backButtonTooltip: function() { return "Atpaka\u013c"; }, get$calendarModeButtonLabel: function() { return "P\u0101rsl\u0113gties uz kalend\u0101ru"; }, get$cancelButtonLabel: function() { return "ATCELT"; }, get$collapsedIconTapHint: function() { return "Izv\u0113rst"; }, get$dateHelpText: function() { return "dd/mm/gggg"; }, get$dateInputLabel: function() { return "Ievadiet datumu"; }, get$dateOutOfRangeLabel: function() { return "\u0100rpus diapazona."; }, get$datePickerHelpText: function() { return "ATLASIET DATUMU"; }, get$dialModeButtonLabel: function() { return "P\u0101rsl\u0113gties uz ciparn\u012bcas atlas\u012bt\u0101ja re\u017e\u012bmu"; }, get$dialogLabel: function() { return "Dialoglodzi\u0146\u0161"; }, get$drawerLabel: function() { return "Navig\u0101cijas izv\u0113lne"; }, get$expandedIconTapHint: function() { return "Sak\u013caut"; }, get$inputDateModeButtonLabel: function() { return "P\u0101rsl\u0113gties uz ievadi"; }, get$inputTimeModeButtonLabel: function() { return "P\u0101rsl\u0113gties uz teksta ievades re\u017e\u012bmu"; }, get$invalidDateFormatLabel: function() { return "Neder\u012bgs form\u0101ts."; }, get$invalidTimeLabel: function() { return "Ievadiet der\u012bgu laiku."; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licence"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licences"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "Nav licen\u010du"; }, get$licensesPageTitle: function() { return "Licences"; }, get$modalBarrierDismissLabel: function() { return "Ner\u0101d\u012bt"; }, get$nextMonthTooltip: function() { return "N\u0101kamais m\u0113nesis"; }, get$nextPageTooltip: function() { return "N\u0101kam\u0101 lapa"; }, get$okButtonLabel: function() { return "LABI"; }, get$openAppDrawerTooltip: function() { return "Atv\u0113rt navig\u0101cijas izv\u0113lni"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow.\u2013$lastRow.\xa0no\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow.\u2013$lastRow.\xa0no aptuveni\xa0$rowCount"; }, get$popupMenuLabel: function() { return "Uznirsto\u0161\u0101 izv\u0113lne"; }, get$postMeridiemAbbreviation: function() { return "p\u0113cpusdien\u0101"; }, get$previousMonthTooltip: function() { return "Iepriek\u0161\u0113jais m\u0113nesis"; }, get$previousPageTooltip: function() { return "Iepriek\u0161\u0113j\u0101 lapa"; }, get$refreshIndicatorSemanticLabel: function() { return "Atsvaidzin\u0101t"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Atlikusi 1\xa0rakstz\u012bme."; }, get$remainingTextFieldCharacterCountOther: function() { return "Atliku\u0161as $remainingCount\xa0rakstz\u012bmes."; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "Nav atlikusi neviena rakstz\u012bme."; }, get$reorderItemDown: function() { return "P\u0101rvietot uz leju"; }, get$reorderItemToEnd: function() { return "P\u0101rvietot uz beig\u0101m"; }, get$reorderItemToStart: function() { return "P\u0101rvietot uz s\u0101kumu"; }, get$reorderItemUp: function() { return "P\u0101rvietot uz aug\u0161u"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Atlasiet gadu"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Atlas\u012bts 1\xa0vienums"; }, get$selectedRowCountTitleOther: function() { return "Atlas\u012bti $selectedRowCount\xa0vienumi"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Nav atlas\u012btu vienumu"; }, get$showMenuTooltip: function() { return "R\u0101d\u012bt izv\u0113lni"; }, get$tabLabelRaw: function() { return "$tabIndex.\xa0cilne no\xa0$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "ATLASIET LAIKU"; }, get$timePickerHourLabel: function() { return "Stunda"; }, get$timePickerHourModeAnnouncement: function() { return "Atlasiet stundas"; }, get$timePickerInputHelpText: function() { return "IEVADIET LAIKU"; }, get$timePickerMinuteLabel: function() { return "Min\u016bte"; }, get$timePickerMinuteModeAnnouncement: function() { return "Atlasiet min\u016btes"; } }; Y.MaterialLocalizationMk.prototype = { get$alertDialogLabel: function() { return "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435"; }, get$anteMeridiemAbbreviation: function() { return "\u041f\u0420\u0415\u0422\u041f\u041b\u0410\u0414\u041d\u0415"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0438 \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel: function() { return "\u041e\u0422\u041a\u0410\u0416\u0418"; }, get$collapsedIconTapHint: function() { return "\u041f\u0440\u043e\u0448\u0438\u0440\u0438"; }, get$dateHelpText: function() { return "dd.mm.yyyy"; }, get$dateInputLabel: function() { return "\u0412\u043d\u0435\u0441\u0435\u0442\u0435 \u0434\u0430\u0442\u0443\u043c"; }, get$dateOutOfRangeLabel: function() { return "\u041d\u0430\u0434\u0432\u043e\u0440 \u043e\u0434 \u043e\u043f\u0441\u0435\u0433."; }, get$datePickerHelpText: function() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0414\u0410\u0422\u0423\u041c"; }, get$dialModeButtonLabel: function() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u043d\u0430 \u0438\u0437\u0431\u0438\u0440\u0430\u0447"; }, get$dialogLabel: function() { return "\u0414\u0438\u0458\u0430\u043b\u043e\u0433"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"; }, get$expandedIconTapHint: function() { return "\u0421\u043e\u0431\u0435\u0440\u0438"; }, get$inputDateModeButtonLabel: function() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0438 \u043d\u0430 \u0432\u043d\u0435\u0441\u0443\u0432\u0430\u045a\u0435"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0440\u0435\u0444\u0440\u043b\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0437\u0430 \u0432\u043d\u0435\u0441\u0443\u0432\u0430\u045a\u0435 \u0442\u0435\u043a\u0441\u0442"; }, get$invalidDateFormatLabel: function() { return "\u041d\u0435\u0432\u0430\u0436\u0435\u0447\u043a\u0438 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel: function() { return "\u0412\u043d\u0435\u0441\u0435\u0442\u0435 \u0432\u0430\u0436\u0435\u0447\u043a\u043e \u0432\u0440\u0435\u043c\u0435"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0438\u0446\u0435\u043d\u0446\u0430"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$modalBarrierDismissLabel: function() { return "\u041e\u0442\u0444\u0440\u043b\u0438"; }, get$nextMonthTooltip: function() { return "\u0421\u043b\u0435\u0434\u043d\u0438\u043e\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip: function() { return "\u0421\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel: function() { return "\u0412\u043e \u0440\u0435\u0434"; }, get$openAppDrawerTooltip: function() { return "\u041e\u0442\u0432\u043e\u0440\u0435\u0442\u0435 \u0433\u043e \u043c\u0435\u043d\u0438\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow - $lastRow \u043e\u0434 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow - $lastRow \u043e\u0434 \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u043d\u043e $rowCount"; }, get$popupMenuLabel: function() { return "\u0421\u043a\u043e\u043a\u0430\u0447\u043a\u043e \u043c\u0435\u043d\u0438"; }, get$postMeridiemAbbreviation: function() { return "\u041f\u041e\u041f\u041b\u0410\u0414\u041d\u0415"; }, get$previousMonthTooltip: function() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438\u043e\u0442 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip: function() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u041e\u0441\u0432\u0435\u0436\u0438"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430 \u0443\u0448\u0442\u0435 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430\u0430\u0442 \u0443\u0448\u0442\u0435 $remainingCount \u0437\u043d\u0430\u0446\u0438"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430\u0434\u043e\u043b\u0443"; }, get$reorderItemToEnd: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430 \u043a\u0440\u0430\u0458\u043e\u0442"; }, get$reorderItemToStart: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430 \u043f\u043e\u0447\u0435\u0442\u043e\u043a"; }, get$reorderItemUp: function() { return "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0433\u043e\u0434\u0438\u043d\u0430"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0430 \u0435 1 \u0441\u0442\u0430\u0432\u043a\u0430"; }, get$selectedRowCountTitleOther: function() { return "\u0418\u0437\u0431\u0440\u0430\u043d\u0438 \u0441\u0435 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0438"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"; }, get$tabLabelRaw: function() { return "\u041a\u0430\u0440\u0442\u0438\u0447\u043a\u0430 $tabIndex \u043e\u0434 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0418\u0417\u0411\u0415\u0420\u0415\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerHourLabel: function() { return "\u0427\u0430\u0441"; }, get$timePickerHourModeAnnouncement: function() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0447\u0430\u0441\u043e\u0432\u0438"; }, get$timePickerInputHelpText: function() { return "\u0412\u041d\u0415\u0421\u0415\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerMinuteLabel: function() { return "\u041c\u0438\u043d\u0443\u0442\u0430"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u0438"; } }; Y.MaterialLocalizationMl.prototype = { get$alertDialogLabel: function() { return "\u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d31\u0d3f\u0d2f\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0d2e\u0d1f\u0d19\u0d4d\u0d19\u0d41\u0d15"; }, get$calendarModeButtonLabel: function() { return "\u0d15\u0d32\u0d23\u0d4d\u0d1f\u0d31\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$cancelButtonLabel: function() { return "\u0d31\u0d26\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$collapsedIconTapHint: function() { return "\u0d35\u0d3f\u0d15\u0d38\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$dateOutOfRangeLabel: function() { return "\u0d38\u0d3e\u0d27\u0d41\u0d35\u0d3e\u0d2f \u0d36\u0d4d\u0d30\u0d47\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d41\u0d31\u0d24\u0d4d\u0d24\u0d3e\u0d23\u0d4d."; }, get$datePickerHelpText: function() { return "\u0d24\u0d40\u0d2f\u0d24\u0d3f \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$dialModeButtonLabel: function() { return "\u0d21\u0d2f\u0d7d \u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d7c \u0d2e\u0d4b\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$dialogLabel: function() { return "\u0d21\u0d2f\u0d32\u0d4b\u0d17\u0d4d"; }, get$drawerLabel: function() { return "\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41"; }, get$expandedIconTapHint: function() { return "\u0d1a\u0d41\u0d30\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$inputDateModeButtonLabel: function() { return "\u0d07\u0d7b\u0d2a\u0d41\u0d1f\u0d4d\u0d1f\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$inputTimeModeButtonLabel: function() { return "\u0d1f\u0d46\u0d15\u0d4d\u200c\u0d38\u0d4d\u200c\u0d31\u0d4d\u0d31\u0d4d \u0d07\u0d7b\u0d2a\u0d41\u0d1f\u0d4d\u0d1f\u0d4d \u0d2e\u0d4b\u0d21\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2e\u0d3e\u0d31\u0d41\u0d15"; }, get$invalidDateFormatLabel: function() { return "\u0d24\u0d46\u0d31\u0d4d\u0d31\u0d3e\u0d2f \u0d2b\u0d47\u0d3e\u0d7c\u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d4d."; }, get$invalidTimeLabel: function() { return "\u0d38\u0d3e\u0d27\u0d41\u0d35\u0d3e\u0d2f \u0d38\u0d2e\u0d2f\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u0d12\u0d30\u0d41 \u0d32\u0d48\u0d38\u0d7b\u0d38\u0d4d"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0d32\u0d48\u0d38\u0d7b\u0d38\u0d41\u0d15\u0d7e"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0d32\u0d48\u0d38\u0d7b\u0d38\u0d41\u0d15\u0d7e"; }, get$modalBarrierDismissLabel: function() { return "\u0d28\u0d3f\u0d30\u0d38\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$nextMonthTooltip: function() { return "\u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d2e\u0d3e\u0d38\u0d02"; }, get$nextPageTooltip: function() { return "\u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d2a\u0d47\u0d1c\u0d4d"; }, get$okButtonLabel: function() { return "\u0d36\u0d30\u0d3f"; }, get$openAppDrawerTooltip: function() { return "\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41 \u0d24\u0d41\u0d31\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount-\u0d7d $firstRow \u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0d0f\u0d15\u0d26\u0d47\u0d36\u0d02 $rowCount-\u0d7d $firstRow \u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0d2a\u0d4b\u0d2a\u0d4d\u0d2a\u0d4d \u0d05\u0d2a\u0d4d\u0d2a\u0d4d \u0d2e\u0d46\u0d28\u0d41"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d24\u0d4d\u0d24\u0d46 \u0d2e\u0d3e\u0d38\u0d02"; }, get$previousPageTooltip: function() { return "\u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d24\u0d4d\u0d24\u0d46 \u0d2a\u0d47\u0d1c\u0d4d"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0d2a\u0d41\u0d24\u0d41\u0d15\u0d4d\u0d15\u0d3f\u0d2f\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0d12\u0d30\u0d41 \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d02 \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d19\u0d4d\u0d19\u0d7e \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0d24\u0d3e\u0d34\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d \u0d28\u0d40\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$reorderItemToEnd: function() { return "\u0d05\u0d35\u0d38\u0d3e\u0d28 \u0d2d\u0d3e\u0d17\u0d24\u0d4d\u0d24\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4b\u0d35\u0d41\u0d15"; }, get$reorderItemToStart: function() { return "\u0d24\u0d41\u0d1f\u0d15\u0d4d\u0d15\u0d24\u0d4d\u0d24\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d2a\u0d4b\u0d35\u0d41\u0d15"; }, get$reorderItemUp: function() { return "\u0d2e\u0d41\u0d15\u0d33\u0d3f\u0d32\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d \u0d28\u0d40\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0d35\u0d7c\u0d37\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0d12\u0d30\u0d41 \u0d07\u0d28\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0d07\u0d28\u0d19\u0d4d\u0d19\u0d7e \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d41"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0d2e\u0d46\u0d28\u0d41 \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$tabLabelRaw: function() { return "$tabCount-\u0d7d $tabIndex"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0d38\u0d2e\u0d2f\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$timePickerHourLabel: function() { return "\u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c"; }, get$timePickerHourModeAnnouncement: function() { return "\u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; }, get$timePickerInputHelpText: function() { return "\u0d38\u0d2e\u0d2f\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15"; }, get$timePickerMinuteLabel: function() { return "\u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"; } }; Y.MaterialLocalizationMn.prototype = { get$alertDialogLabel: function() { return "\u0421\u044d\u0440\u044d\u043c\u0436\u043b\u04af\u04af\u043b\u044d\u0433"; }, get$anteMeridiemAbbreviation: function() { return "\u04e8\u0413\u041b\u04e8\u04e8"; }, get$backButtonTooltip: function() { return "\u0411\u0443\u0446\u0430\u0445"; }, get$calendarModeButtonLabel: function() { return "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u043b\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$cancelButtonLabel: function() { return "\u0411\u041e\u041b\u0418\u0425"; }, get$collapsedIconTapHint: function() { return "\u0414\u044d\u043b\u0433\u044d\u0445"; }, get$dateHelpText: function() { return "\u0436\u0436\u0436\u0436.\u0441\u0441.\u04e9\u04e9"; }, get$dateInputLabel: function() { return "\u041e\u0433\u043d\u043e\u043e \u043e\u0440\u0443\u0443\u043b\u0430\u0445"; }, get$dateOutOfRangeLabel: function() { return "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u0430\u0441 \u0433\u0430\u0434\u0443\u0443\u0440 \u0431\u0430\u0439\u043d\u0430."; }, get$datePickerHelpText: function() { return "\u041e\u0413\u041d\u041e\u041e \u0421\u041e\u041d\u0413\u041e\u0425"; }, get$dialModeButtonLabel: function() { return "\u0426\u0430\u0433 \u0441\u043e\u043d\u0433\u043e\u0433\u0447 \u0433\u043e\u0440\u0438\u043c \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$dialogLabel: function() { return "\u0425\u0430\u0440\u0438\u043b\u0446\u0430\u0445 \u0446\u043e\u043d\u0445"; }, get$drawerLabel: function() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441"; }, get$expandedIconTapHint: function() { return "\u0411\u0443\u0443\u043b\u0433\u0430\u0445"; }, get$inputDateModeButtonLabel: function() { return "\u041e\u0440\u043e\u043b\u0442 \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$inputTimeModeButtonLabel: function() { return "\u0422\u0435\u043a\u0441\u0442 \u043e\u0440\u0443\u0443\u043b\u0430\u0445 \u0433\u043e\u0440\u0438\u043c \u0440\u0443\u0443 \u0441\u044d\u043b\u0433\u044d\u0445"; }, get$invalidDateFormatLabel: function() { return "\u0411\u0443\u0440\u0443\u0443 \u0444\u043e\u0440\u043c\u0430\u0442 \u0431\u0430\u0439\u043d\u0430."; }, get$invalidTimeLabel: function() { return "\u0426\u0430\u0433\u0438\u0439\u0433 \u0437\u04e9\u0432 \u043e\u0440\u0443\u0443\u043b\u043d\u0430 \u0443\u0443"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0437"; }, get$modalBarrierDismissLabel: function() { return "\u04ae\u043b \u0445\u044d\u0440\u044d\u0433\u0441\u044d\u0445"; }, get$nextMonthTooltip: function() { return "\u0414\u0430\u0440\u0430\u0430\u0445 \u0441\u0430\u0440"; }, get$nextPageTooltip: function() { return "\u0414\u0430\u0440\u0430\u0430\u0445 \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441\u0438\u0439\u0433 \u043d\u044d\u044d\u0445"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount-\u043d $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u041e\u0439\u0440\u043e\u043b\u0446\u043e\u043e\u0433\u043e\u043e\u0440 $rowCount-\u043d $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u041f\u043e\u043f\u0430\u043f \u0446\u044d\u0441"; }, get$postMeridiemAbbreviation: function() { return "\u041e\u0420\u041e\u0419"; }, get$previousMonthTooltip: function() { return "\u04e8\u043c\u043d\u04e9\u0445 \u0441\u0430\u0440"; }, get$previousPageTooltip: function() { return "\u04e8\u043c\u043d\u04e9\u0445 \u0445\u0443\u0443\u0434\u0430\u0441"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0421\u044d\u0440\u0433\u044d\u044d\u0445"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "No characters remaining"; }, get$reorderItemDown: function() { return "\u0414\u043e\u043e\u0448 \u0437\u04e9\u04e9\u0445"; }, get$reorderItemToEnd: function() { return "\u0422\u04e9\u0433\u0441\u0433\u04e9\u043b \u0440\u04af\u04af \u0437\u04e9\u04e9\u0445"; }, get$reorderItemToStart: function() { return "\u042d\u0445\u043b\u044d\u043b \u0440\u04af\u04af \u0437\u04e9\u04e9\u0445"; }, get$reorderItemUp: function() { return "\u0414\u044d\u044d\u0448 \u0437\u04e9\u04e9\u0445"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0416\u0438\u043b \u0441\u043e\u043d\u0433\u043e\u0445"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0437\u04af\u0439\u043b \u0441\u043e\u043d\u0433\u043e\u0441\u043e\u043d"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0437\u04af\u0439\u043b \u0441\u043e\u043d\u0433\u043e\u0441\u043e\u043d"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u0411\u0438\u0447\u043b\u044d\u0433 \u0441\u043e\u043d\u0433\u043e\u043e\u0433\u04af\u0439 \u0431\u0430\u0439\u043d\u0430"; }, get$showMenuTooltip: function() { return "\u0426\u044d\u0441\u0438\u0439\u0433 \u0445\u0430\u0440\u0443\u0443\u043b\u0430\u0445"; }, get$tabLabelRaw: function() { return "$tabCount-\u043d $tabIndex-\u0440 \u0442\u0430\u0431"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "\u0426\u0410\u0413 \u0421\u041e\u041d\u0413\u041e\u0425"; }, get$timePickerHourLabel: function() { return "\u0426\u0430\u0433"; }, get$timePickerHourModeAnnouncement: function() { return "\u0426\u0430\u0433 \u0441\u043e\u043d\u0433\u043e\u043d\u043e \u0443\u0443"; }, get$timePickerInputHelpText: function() { return "\u0426\u0410\u0413 \u041e\u0420\u0423\u0423\u041b\u0410\u0425"; }, get$timePickerMinuteLabel: function() { return "\u041c\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u041c\u0438\u043d\u0443\u0442 \u0441\u043e\u043d\u0433\u043e\u043d\u043e \u0443\u0443"; } }; Y.MaterialLocalizationMr.prototype = { get$alertDialogLabel: function() { return "\u0938\u0942\u091a\u0928\u093e"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u092e\u093e\u0917\u0947"; }, get$calendarModeButtonLabel: function() { return "\u0915\u0945\u0932\u0947\u0902\u0921\u0930\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$cancelButtonLabel: function() { return "\u0930\u0926\u094d\u0926 \u0915\u0930\u093e"; }, get$collapsedIconTapHint: function() { return "\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0930\u093e"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u0924\u093e\u0930\u0940\u0916 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$dateOutOfRangeLabel: function() { return "\u0936\u094d\u0930\u0947\u0923\u0940\u091a\u094d\u092f\u093e \u092c\u093e\u0939\u0947\u0930 \u0906\u0939\u0947."; }, get$datePickerHelpText: function() { return "\u0924\u093e\u0930\u0940\u0916 \u0928\u093f\u0935\u0921\u093e"; }, get$dialModeButtonLabel: function() { return "\u0921\u093e\u092f\u0932 \u092a\u093f\u0915\u0930 \u092e\u094b\u0921\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$dialogLabel: function() { return "\u0921\u093e\u092f\u0932\u0949\u0917"; }, get$drawerLabel: function() { return "\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942"; }, get$expandedIconTapHint: function() { return "\u0915\u094b\u0932\u0945\u092a\u094d\u0938 \u0915\u0930\u093e"; }, get$inputDateModeButtonLabel: function() { return "\u0907\u0928\u092a\u0941\u091f\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$inputTimeModeButtonLabel: function() { return "\u092e\u091c\u0915\u0942\u0930 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921\u0935\u0930 \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u093e"; }, get$invalidDateFormatLabel: function() { return "\u092b\u0949\u0930\u092e\u0945\u091f \u091a\u0941\u0915\u0940\u091a\u093e \u0906\u0939\u0947."; }, get$invalidTimeLabel: function() { return "\u092f\u094b\u0917\u094d\u092f \u0935\u0947\u0933 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u090f\u0915 \u092a\u0930\u0935\u093e\u0928\u093e"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u092a\u0930\u0935\u093e\u0928\u0947"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u092a\u0930\u0935\u093e\u0928\u0947"; }, get$modalBarrierDismissLabel: function() { return "\u0921\u093f\u0938\u092e\u093f\u0938 \u0915\u0930\u093e"; }, get$nextMonthTooltip: function() { return "\u092a\u0941\u0922\u0940\u0932 \u092e\u0939\u093f\u0928\u093e"; }, get$nextPageTooltip: function() { return "\u092a\u0941\u0922\u0940\u0932 \u092a\u0947\u091c"; }, get$okButtonLabel: function() { return "\u0913\u0915\u0947"; }, get$openAppDrawerTooltip: function() { return "\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942 \u0909\u0918\u0921\u093e"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u092a\u0948\u0915\u0940 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount \u091a\u094d\u092f\u093e \u092c\u0926\u094d\u0926\u0932 $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u0942"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u092e\u093e\u0917\u0940\u0932 \u092e\u0939\u093f\u0928\u093e"; }, get$previousPageTooltip: function() { return "\u092e\u093e\u0917\u0940\u0932 \u092a\u0947\u091c"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0930\u093f\u092b\u094d\u0930\u0947\u0936 \u0915\u0930\u093e"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u090f\u0915 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "\u0915\u094b\u0923\u0924\u0947\u0939\u0940 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915 \u0928\u093e\u0939\u0940\u0924"; }, get$reorderItemDown: function() { return "\u0916\u093e\u0932\u0940 \u0939\u0932\u0935\u093e"; }, get$reorderItemToEnd: function() { return "\u0936\u0947\u0935\u091f\u093e\u0915\u0921\u0947 \u0939\u0932\u0935\u093e"; }, get$reorderItemToStart: function() { return "\u0938\u0941\u0930\u0941\u0935\u093e\u0924\u0940\u0932\u093e \u0939\u0932\u0935\u093e"; }, get$reorderItemUp: function() { return "\u0935\u0930 \u0939\u0932\u0935\u093e"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u0935\u0930\u094d\u0937 \u0928\u093f\u0935\u0921\u093e"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u090f\u0915 \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u093e"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u0947"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u0915\u094b\u0923\u0924\u0947\u0939\u0940 \u0906\u092f\u091f\u092e \u0928\u093f\u0935\u0921\u0932\u0947\u0932\u0947 \u0928\u093e\u0939\u0940\u0924"; }, get$showMenuTooltip: function() { return "\u092e\u0947\u0928\u0942 \u0926\u093e\u0916\u0935\u093e"; }, get$tabLabelRaw: function() { return "$tabCount \u092a\u0948\u0915\u0940 $tabIndex \u091f\u0945\u092c"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "\u0935\u0947\u0933 \u0928\u093f\u0935\u0921\u093e"; }, get$timePickerHourLabel: function() { return "\u0924\u093e\u0938"; }, get$timePickerHourModeAnnouncement: function() { return "\u0924\u093e\u0938 \u0928\u093f\u0935\u0921\u093e"; }, get$timePickerInputHelpText: function() { return "\u0935\u0947\u0933 \u090f\u0902\u091f\u0930 \u0915\u0930\u093e"; }, get$timePickerMinuteLabel: function() { return "\u092e\u093f\u0928\u093f\u091f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u092e\u093f\u0928\u093f\u091f\u0947 \u0928\u093f\u0935\u0921\u093e"; } }; Y.MaterialLocalizationMs.prototype = { get$alertDialogLabel: function() { return "Makluman"; }, get$anteMeridiemAbbreviation: function() { return "PG"; }, get$backButtonTooltip: function() { return "Kembali"; }, get$calendarModeButtonLabel: function() { return "Tukar kepada kalendar"; }, get$cancelButtonLabel: function() { return "BATAL"; }, get$collapsedIconTapHint: function() { return "Kembangkan"; }, get$dateHelpText: function() { return "bb/hh/tttt"; }, get$dateInputLabel: function() { return "Masukkan Tarikh"; }, get$dateOutOfRangeLabel: function() { return "Di luar julat."; }, get$datePickerHelpText: function() { return "PILIH TARIKH"; }, get$dialModeButtonLabel: function() { return "Beralih kepada mod pemilih dail"; }, get$dialogLabel: function() { return "Dialog"; }, get$drawerLabel: function() { return "Menu navigasi"; }, get$expandedIconTapHint: function() { return "Runtuhkan"; }, get$inputDateModeButtonLabel: function() { return "Tukar kepada input"; }, get$inputTimeModeButtonLabel: function() { return "Beralih kepada mod input teks"; }, get$invalidDateFormatLabel: function() { return "Format tidak sah."; }, get$invalidTimeLabel: function() { return "Masukkan masa yang sah"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lesen"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lesen"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lesen"; }, get$modalBarrierDismissLabel: function() { return "Tolak"; }, get$nextMonthTooltip: function() { return "Bulan depan"; }, get$nextPageTooltip: function() { return "Halaman seterusnya"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Buka menu navigasi"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow dari $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstda; }, get$popupMenuLabel: function() { return "Menu pop timbul"; }, get$postMeridiemAbbreviation: function() { return "PTG"; }, get$previousMonthTooltip: function() { return "Bulan sebelumnya"; }, get$previousPageTooltip: function() { return "Halaman sebelumnya"; }, get$refreshIndicatorSemanticLabel: function() { return "Muat semula"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 aksara lagi"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount aksara lagi"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Alih ke bawah"; }, get$reorderItemToEnd: function() { return "Alih ke penghujung"; }, get$reorderItemToStart: function() { return "Alih ke permulaan"; }, get$reorderItemUp: function() { return "Alih ke atas"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Pilih tahun"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item dipilih"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount item dipilih"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Tiada item dipilih"; }, get$showMenuTooltip: function() { return "Tunjukkan menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex dari $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "PILIH MASA"; }, get$timePickerHourLabel: function() { return "Jam"; }, get$timePickerHourModeAnnouncement: function() { return "Pilih jam"; }, get$timePickerInputHelpText: function() { return "MASUKKAN MASA"; }, get$timePickerMinuteLabel: function() { return "Minit"; }, get$timePickerMinuteModeAnnouncement: function() { return "Pilih minit"; } }; Y.MaterialLocalizationMy.prototype = { get$alertDialogLabel: function() { return "\u101e\u1010\u102d\u1015\u1031\u1038\u1001\u103b\u1000\u103a"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u1014\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037"; }, get$calendarModeButtonLabel: function() { return "\u1015\u103c\u1000\u1039\u1001\u1012\u102d\u1014\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$cancelButtonLabel: function() { return "\u1019\u101c\u102f\u1015\u103a\u1010\u1031\u102c\u1037"; }, get$collapsedIconTapHint: function() { return "\u1001\u103b\u1032\u1037\u101b\u1014\u103a"; }, get$dateHelpText: function() { return "dd-mm-yyyy"; }, get$dateInputLabel: function() { return "\u101b\u1000\u103a\u1005\u103d\u1032 \u1011\u100a\u1037\u103a\u101b\u1014\u103a"; }, get$dateOutOfRangeLabel: function() { return "\u1021\u1015\u102d\u102f\u1004\u103a\u1038\u1021\u1001\u103c\u102c\u1038 \u1015\u103c\u1004\u103a\u1015\u1010\u103d\u1004\u103a\u1016\u103c\u1005\u103a\u1014\u1031\u101e\u100a\u103a\u104b"; }, get$datePickerHelpText: function() { return "\u101b\u1000\u103a\u1005\u103d\u1032\u101b\u103d\u1031\u1038\u1015\u102b"; }, get$dialModeButtonLabel: function() { return "\u1014\u1036\u1015\u102b\u1010\u103a\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1001\u103c\u1004\u103a\u1038\u1019\u102f\u1012\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$dialogLabel: function() { return "\u1012\u102d\u102f\u1004\u103a\u101a\u102c\u101c\u1031\u102c\u1037"; }, get$drawerLabel: function() { return "\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a \u1019\u102e\u1014\u1030\u1038"; }, get$expandedIconTapHint: function() { return "\u101c\u103b\u103e\u1031\u102c\u1037\u1015\u103c\u101b\u1014\u103a"; }, get$inputDateModeButtonLabel: function() { return "\u1011\u100a\u103a\u1037\u101e\u103d\u1004\u103a\u1038\u1019\u103e\u102f\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$inputTimeModeButtonLabel: function() { return "\u1005\u102c\u101e\u102c\u1038 \u1011\u100a\u103a\u1037\u101e\u103d\u1004\u103a\u1038\u1019\u103e\u102f\u1019\u102f\u1012\u103a\u101e\u102d\u102f\u1037 \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101b\u1014\u103a"; }, get$invalidDateFormatLabel: function() { return "\u1016\u1031\u102c\u103a\u1019\u1000\u103a \u1019\u1019\u103e\u1014\u103a\u1000\u1014\u103a\u1015\u102b\u104b"; }, get$invalidTimeLabel: function() { return "\u1019\u103e\u1014\u103a\u1000\u1014\u103a\u101e\u100a\u1037\u103a\u1021\u1001\u103b\u102d\u1014\u103a \u1011\u100a\u1037\u103a\u1015\u102b"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a 1 \u1001\u102f"; }, get$licensesPackageDetailTextOther: function() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a $licenseCount \u1001\u102f"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u101c\u102d\u102f\u1004\u103a\u1005\u1004\u103a\u1019\u103b\u102c\u1038"; }, get$modalBarrierDismissLabel: function() { return "\u1015\u101a\u103a\u101b\u1014\u103a"; }, get$nextMonthTooltip: function() { return "\u1014\u1031\u102c\u1000\u103a\u101c"; }, get$nextPageTooltip: function() { return "\u1014\u1031\u102c\u1000\u103a\u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a\u1019\u102e\u1014\u1030\u1038\u1000\u102d\u102f \u1016\u103d\u1004\u1037\u103a\u101b\u1014\u103a"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u1021\u1014\u1000\u103a $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount \u1001\u1014\u103a\u1037\u1019\u103e $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u1015\u1031\u102b\u1037\u1015\u103a\u1021\u1015\u103a\u1019\u102e\u1014\u1030\u1038"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u101a\u1001\u1004\u103a\u101c"; }, get$previousPageTooltip: function() { return "\u101a\u1001\u1004\u103a\u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"; }, get$refreshIndicatorSemanticLabel: function() { return "\u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1005\u1010\u1004\u103a\u101b\u1014\u103a"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u1021\u1000\u1039\u1001\u101b\u102c \u1041 \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u1021\u1000\u1039\u1001\u101b\u102c $remainingCount \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u1021\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037\u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemToEnd: function() { return "\u1021\u1006\u102f\u1036\u1038\u101e\u102d\u102f\u1037 \u200c\u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemToStart: function() { return "\u1021\u1005\u101e\u102d\u102f\u1037 \u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$reorderItemUp: function() { return "\u1021\u1015\u1031\u102b\u103a\u101e\u102d\u102f\u1037 \u101b\u103d\u103e\u1031\u1037\u101b\u1014\u103a"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u1001\u102f\u1014\u103e\u1005\u103a \u101b\u103d\u1031\u1038\u101b\u1014\u103a"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u1041 \u1001\u102f \u101b\u103d\u1031\u1038\u1011\u102c\u1038\u101e\u100a\u103a"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u1001\u102f \u101b\u103d\u1031\u1038\u1011\u102c\u1038\u101e\u100a\u103a"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u1019\u102e\u1014\u1030\u1038 \u1015\u103c\u101b\u1014\u103a"; }, get$tabLabelRaw: function() { return "\u1010\u1018\u103a $tabCount \u1021\u1014\u1000\u103a $tabIndex \u1001\u102f"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u1021\u1001\u103b\u102d\u1014\u103a\u101b\u103d\u1031\u1038\u101b\u1014\u103a"; }, get$timePickerHourLabel: function() { return "\u1014\u102c\u101b\u102e"; }, get$timePickerHourModeAnnouncement: function() { return "\u1014\u102c\u101b\u102e\u1000\u102d\u102f \u101b\u103d\u1031\u1038\u1015\u102b"; }, get$timePickerInputHelpText: function() { return "\u1021\u1001\u103b\u102d\u1014\u103a\u1011\u100a\u103a\u1037\u101b\u1014\u103a"; }, get$timePickerMinuteLabel: function() { return "\u1019\u102d\u1014\u1005\u103a"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u1019\u102d\u1014\u1005\u103a\u1000\u102d\u102f \u101b\u103d\u1031\u1038\u1015\u102b"; } }; Y.MaterialLocalizationNb.prototype = { get$alertDialogLabel: function() { return "Varsel"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Tilbake"; }, get$calendarModeButtonLabel: function() { return "Bytt til kalender"; }, get$cancelButtonLabel: function() { return "AVBRYT"; }, get$collapsedIconTapHint: function() { return "Vis"; }, get$dateHelpText: function() { return "dd.mm.\xe5\xe5\xe5\xe5"; }, get$dateInputLabel: function() { return "Skriv inn datoen"; }, get$dateOutOfRangeLabel: function() { return "Utenfor perioden."; }, get$datePickerHelpText: function() { return "VELG DATOEN"; }, get$dialModeButtonLabel: function() { return "Bytt til modus for valg fra urskive"; }, get$dialogLabel: function() { return "Dialogboks"; }, get$drawerLabel: function() { return "Navigasjonsmeny"; }, get$expandedIconTapHint: function() { return "Skjul"; }, get$inputDateModeButtonLabel: function() { return "Bytt til innskriving"; }, get$inputTimeModeButtonLabel: function() { return "Bytt til tekstinndatamodus"; }, get$invalidDateFormatLabel: function() { return "Ugyldig format."; }, get$invalidTimeLabel: function() { return "Angi et gyldig klokkeslett"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisens"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisenser"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return null; }, get$licensesPageTitle: function() { return "Lisenser"; }, get$modalBarrierDismissLabel: function() { return "Avvis"; }, get$nextMonthTooltip: function() { return "Neste m\xe5ned"; }, get$nextPageTooltip: function() { return "Neste side"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\xc5pne navigasjonsmenyen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow av omtrent $rowCount"; }, get$popupMenuLabel: function() { return "Forgrunnsmeny"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Forrige m\xe5ned"; }, get$previousPageTooltip: function() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel: function() { return "Laster inn p\xe5 nytt"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Flytt ned"; }, get$reorderItemToEnd: function() { return "Flytt til slutten"; }, get$reorderItemToStart: function() { return "Flytt til starten"; }, get$reorderItemUp: function() { return "Flytt opp"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Velg \xe5ret"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 element er valgt"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Vis meny"; }, get$tabLabelRaw: function() { return "Fane $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VELG KLOKKESLETT"; }, get$timePickerHourLabel: function() { return "Time"; }, get$timePickerHourModeAnnouncement: function() { return "Angi timer"; }, get$timePickerInputHelpText: function() { return "ANGI ET KLOKKESLETT"; }, get$timePickerMinuteLabel: function() { return "Minutt"; }, get$timePickerMinuteModeAnnouncement: function() { return "Angi minutter"; } }; Y.MaterialLocalizationNe.prototype = { get$alertDialogLabel: function() { return "\u0905\u0932\u0930\u094d\u091f"; }, get$anteMeridiemAbbreviation: function() { return "\u092a\u0942\u0930\u094d\u0935\u093e\u0939\u094d\u0928"; }, get$backButtonTooltip: function() { return "\u092a\u091b\u093e\u0921\u093f \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$calendarModeButtonLabel: function() { return "\u092a\u093e\u0924\u094d\u0930\u094b \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$cancelButtonLabel: function() { return "\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$collapsedIconTapHint: function() { return "\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dateHelpText: function() { return "yyyy/mm/dd"; }, get$dateInputLabel: function() { return "\u092e\u093f\u0924\u093f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dateOutOfRangeLabel: function() { return "\u0926\u093e\u092f\u0930\u093e\u092d\u0928\u094d\u0926\u093e \u092c\u093e\u0939\u093f\u0930"; }, get$datePickerHelpText: function() { return "\u092e\u093f\u0924\u093f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dialModeButtonLabel: function() { return "\u0921\u093e\u092f\u0932 \u091a\u092f\u0928\u0915\u0930\u094d\u0924\u093e \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$dialogLabel: function() { return "\u0938\u0902\u0935\u093e\u0926"; }, get$drawerLabel: function() { return "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941"; }, get$expandedIconTapHint: function() { return "\u0938\u0902\u0915\u094d\u0937\u093f\u092a\u094d\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$inputDateModeButtonLabel: function() { return "\u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$inputTimeModeButtonLabel: function() { return "\u092a\u093e\u0920 \u0907\u0928\u092a\u0941\u091f \u092e\u094b\u0921 \u092a\u094d\u0930\u092f\u094b\u0917 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$invalidDateFormatLabel: function() { return "\u0905\u0935\u0948\u0927 \u0922\u093e\u0901\u091a\u093e\u0964"; }, get$invalidTimeLabel: function() { return "\u0935\u0948\u0927 \u0938\u092e\u092f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u090f\u0909\u091f\u093e \u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0935\u091f\u093e \u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0907\u091c\u093e\u091c\u0924\u092a\u0924\u094d\u0930\u0939\u0930\u0942"; }, get$modalBarrierDismissLabel: function() { return "\u0916\u093e\u0930\u0947\u091c \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$nextMonthTooltip: function() { return "\u0905\u0930\u094d\u0915\u094b \u092e\u0939\u093f\u0928\u093e"; }, get$nextPageTooltip: function() { return "\u0905\u0930\u094d\u0915\u094b \u092a\u0943\u0937\u094d\u0920"; }, get$okButtonLabel: function() { return "\u0920\u093f\u0915 \u091b"; }, get$openAppDrawerTooltip: function() { return "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941 \u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u092e\u0927\u094d\u092f\u0947 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0932\u0917\u092d\u0917 $rowCount \u0915\u094b $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u092a\u092a\u0905\u092a \u092e\u0947\u0928\u0941"; }, get$postMeridiemAbbreviation: function() { return "\u0905\u092a\u0930\u093e\u0939\u094d\u0928"; }, get$previousMonthTooltip: function() { return "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u092e\u0939\u093f\u0928\u093e"; }, get$previousPageTooltip: function() { return "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u092a\u0943\u0937\u094d\u0920"; }, get$refreshIndicatorSemanticLabel: function() { return "\u092a\u0941\u0928\u0903 \u0924\u093e\u091c\u093e \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0967 \u0935\u0930\u094d\u0923 \u092c\u093e\u0901\u0915\u0940"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0935\u0930\u094d\u0923\u0939\u0930\u0942 \u092c\u093e\u0901\u0915\u0940"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0924\u0932 \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemToEnd: function() { return "\u0905\u0928\u094d\u0924\u094d\u092f\u092e\u093e \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemToStart: function() { return "\u0938\u0941\u0930\u0941\u092e\u093e \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$reorderItemUp: function() { return "\u092e\u093e\u0925\u093f \u0938\u093e\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0935\u0930\u094d\u0937 \u091b\u093e\u0928\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0967 \u0935\u0938\u094d\u0924\u0941 \u091a\u092f\u0928 \u0917\u0930\u093f\u092f\u094b"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0935\u0938\u094d\u0924\u0941\u0939\u0930\u0942 \u091a\u092f\u0928 \u0917\u0930\u093f\u090f"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u092e\u0947\u0928\u0941 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$tabLabelRaw: function() { return "$tabCount \u092e\u0927\u094d\u092f\u0947 $tabIndex \u091f\u094d\u092f\u093e\u092c"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0938\u092e\u092f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerHourLabel: function() { return "\u0918\u0928\u094d\u091f\u093e"; }, get$timePickerHourModeAnnouncement: function() { return "\u0918\u0928\u094d\u091f\u093e \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerInputHelpText: function() { return "\u0938\u092e\u092f \u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; }, get$timePickerMinuteLabel: function() { return "\u092e\u093f\u0928\u0947\u091f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u092e\u093f\u0928\u0947\u091f \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"; } }; Y.MaterialLocalizationNl.prototype = { get$alertDialogLabel: function() { return "Melding"; }, get$anteMeridiemAbbreviation: function() { return "am"; }, get$backButtonTooltip: function() { return "Terug"; }, get$calendarModeButtonLabel: function() { return "Overschakelen naar kalender"; }, get$cancelButtonLabel: function() { return "ANNULEREN"; }, get$collapsedIconTapHint: function() { return "Uitvouwen"; }, get$dateHelpText: function() { return "dd-mm-jjjj"; }, get$dateInputLabel: function() { return "Datum opgeven"; }, get$dateOutOfRangeLabel: function() { return "Buiten bereik."; }, get$datePickerHelpText: function() { return "DATUM SELECTEREN"; }, get$dialModeButtonLabel: function() { return "Overschakelen naar klok"; }, get$dialogLabel: function() { return "Dialoogvenster"; }, get$drawerLabel: function() { return "Navigatiemenu"; }, get$expandedIconTapHint: function() { return "Samenvouwen"; }, get$inputDateModeButtonLabel: function() { return "Overschakelen naar invoer"; }, get$inputTimeModeButtonLabel: function() { return "Overschakelen naar tekstinvoer"; }, get$invalidDateFormatLabel: function() { return "Ongeldige indeling."; }, get$invalidTimeLabel: function() { return "Geef een geldige tijd op"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licentie"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenties"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenties"; }, get$modalBarrierDismissLabel: function() { return "Sluiten"; }, get$nextMonthTooltip: function() { return "Volgende maand"; }, get$nextPageTooltip: function() { return "Volgende pagina"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Navigatiemenu openen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow van $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow van ongeveer $rowCount"; }, get$popupMenuLabel: function() { return "Pop-upmenu"; }, get$postMeridiemAbbreviation: function() { return "pm"; }, get$previousMonthTooltip: function() { return "Vorige maand"; }, get$previousPageTooltip: function() { return "Vorige pagina"; }, get$refreshIndicatorSemanticLabel: function() { return "Vernieuwen"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 teken resterend"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount tekens resterend"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Omlaag verplaatsen"; }, get$reorderItemToEnd: function() { return "Naar het einde verplaatsen"; }, get$reorderItemToStart: function() { return "Naar het begin verplaatsen"; }, get$reorderItemUp: function() { return "Omhoog verplaatsen"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Jaar selecteren"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item geselecteerd"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount items geselecteerd"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Menu weergeven"; }, get$tabLabelRaw: function() { return "Tabblad $tabIndex van $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "TIJD SELECTEREN"; }, get$timePickerHourLabel: function() { return "Uur"; }, get$timePickerHourModeAnnouncement: function() { return "Uren selecteren"; }, get$timePickerInputHelpText: function() { return "TIJD OPGEVEN"; }, get$timePickerMinuteLabel: function() { return "Minuut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Minuten selecteren"; } }; Y.MaterialLocalizationNo.prototype = { get$alertDialogLabel: function() { return "Varsel"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Tilbake"; }, get$calendarModeButtonLabel: function() { return "Bytt til kalender"; }, get$cancelButtonLabel: function() { return "AVBRYT"; }, get$collapsedIconTapHint: function() { return "Vis"; }, get$dateHelpText: function() { return "dd.mm.\xe5\xe5\xe5\xe5"; }, get$dateInputLabel: function() { return "Skriv inn datoen"; }, get$dateOutOfRangeLabel: function() { return "Utenfor perioden."; }, get$datePickerHelpText: function() { return "VELG DATOEN"; }, get$dialModeButtonLabel: function() { return "Bytt til modus for valg fra urskive"; }, get$dialogLabel: function() { return "Dialogboks"; }, get$drawerLabel: function() { return "Navigasjonsmeny"; }, get$expandedIconTapHint: function() { return "Skjul"; }, get$inputDateModeButtonLabel: function() { return "Bytt til innskriving"; }, get$inputTimeModeButtonLabel: function() { return "Bytt til tekstinndatamodus"; }, get$invalidDateFormatLabel: function() { return "Ugyldig format."; }, get$invalidTimeLabel: function() { return "Angi et gyldig klokkeslett"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisens"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisenser"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return null; }, get$licensesPageTitle: function() { return "Lisenser"; }, get$modalBarrierDismissLabel: function() { return "Avvis"; }, get$nextMonthTooltip: function() { return "Neste m\xe5ned"; }, get$nextPageTooltip: function() { return "Neste side"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\xc5pne navigasjonsmenyen"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow av omtrent $rowCount"; }, get$popupMenuLabel: function() { return "Forgrunnsmeny"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Forrige m\xe5ned"; }, get$previousPageTooltip: function() { return "Forrige side"; }, get$refreshIndicatorSemanticLabel: function() { return "Laster inn p\xe5 nytt"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount tegn gjenst\xe5r"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Flytt ned"; }, get$reorderItemToEnd: function() { return "Flytt til slutten"; }, get$reorderItemToStart: function() { return "Flytt til starten"; }, get$reorderItemUp: function() { return "Flytt opp"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Velg \xe5ret"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 element er valgt"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount elementer er valgt"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Vis meny"; }, get$tabLabelRaw: function() { return "Fane $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VELG KLOKKESLETT"; }, get$timePickerHourLabel: function() { return "Time"; }, get$timePickerHourModeAnnouncement: function() { return "Angi timer"; }, get$timePickerInputHelpText: function() { return "ANGI ET KLOKKESLETT"; }, get$timePickerMinuteLabel: function() { return "Minutt"; }, get$timePickerMinuteModeAnnouncement: function() { return "Angi minutter"; } }; Y.MaterialLocalizationOr.prototype = { get$alertDialogLabel: function() { return "\u0b06\u0b32\u0b30\u0b4d\u0b1f"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0b2a\u0b1b\u0b15\u0b41 \u0b2b\u0b47\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$calendarModeButtonLabel: function() { return "\u0b15\u0b4d\u0b5f\u0b3e\u0b32\u0b47\u0b23\u0b4d\u0b21\u0b30\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$cancelButtonLabel: function() { return "\u0b2c\u0b3e\u0b24\u0b3f\u0b32\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$collapsedIconTapHint: function() { return "\u0b2a\u0b4d\u0b30\u0b38\u0b3e\u0b30\u0b3f\u0b24 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0b24\u0b3e\u0b30\u0b3f\u0b16 \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$dateOutOfRangeLabel: function() { return "\u0b38\u0b40\u0b2e\u0b3e \u0b2c\u0b3e\u0b39\u0b3e\u0b30\u0b47\u0964"; }, get$datePickerHelpText: function() { return "\u0b24\u0b3e\u0b30\u0b3f\u0b16 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dialModeButtonLabel: function() { return "\u0b21\u0b3e\u0b0f\u0b32\u0b4d \u0b2a\u0b3f\u0b15\u0b30\u0b4d \u0b2e\u0b4b\u0b21\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$dialogLabel: function() { return "\u0b21\u0b3e\u0b5f\u0b32\u0b17\u0b4d"; }, get$drawerLabel: function() { return "\u0b28\u0b47\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41"; }, get$expandedIconTapHint: function() { return "\u0b38\u0b19\u0b4d\u0b15\u0b41\u0b1a\u0b3f\u0b24 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$inputDateModeButtonLabel: function() { return "\u0b07\u0b28\u0b2a\u0b41\u0b1f\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$inputTimeModeButtonLabel: function() { return "\u0b1f\u0b47\u0b15\u0b4d\u0b38\u0b1f\u0b4d \u0b07\u0b28\u0b2a\u0b41\u0b1f\u0b4d \u0b2e\u0b4b\u0b21\u0b15\u0b41 \u0b38\u0b4d\u0b71\u0b3f\u0b1a\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$invalidDateFormatLabel: function() { return "\u0b05\u0b2c\u0b48\u0b27 \u0b2b\u0b30\u0b4d\u0b2e\u0b3e\u0b1f\u0b4d\u0964"; }, get$invalidTimeLabel: function() { return "\u0b0f\u0b15 \u0b2c\u0b48\u0b27 \u0b38\u0b2e\u0b5f \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1\u0b1f\u0b3f \u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\u0b1f\u0b3f \u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0b32\u0b3e\u0b07\u0b38\u0b47\u0b28\u0b4d\u0b38\u0b17\u0b41\u0b21\u0b3c\u0b15"; }, get$modalBarrierDismissLabel: function() { return "\u0b16\u0b3e\u0b30\u0b1c \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$nextMonthTooltip: function() { return "\u0b2a\u0b30\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2e\u0b3e\u0b38"; }, get$nextPageTooltip: function() { return "\u0b2a\u0b30\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2a\u0b47\u0b1c\u0b4d"; }, get$okButtonLabel: function() { return "\u0b20\u0b3f\u0b15\u0b4d \u0b05\u0b1b\u0b3f"; }, get$openAppDrawerTooltip: function() { return "\u0b28\u0b3e\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41 \u0b16\u0b4b\u0b32\u0b28\u0b4d\u0b24\u0b41"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u0b30 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0b2a\u0b3e\u0b16\u0b3e\u0b2a\u0b3e\u0b16\u0b3f $rowCount\u0b30 $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0b2a\u0b2a\u0b4d-\u0b05\u0b2a\u0b4d \u0b2e\u0b47\u0b28\u0b41"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0b2a\u0b42\u0b30\u0b4d\u0b2c \u0b2e\u0b3e\u0b38"; }, get$previousPageTooltip: function() { return "\u0b2a\u0b42\u0b30\u0b4d\u0b2c\u0b2c\u0b30\u0b4d\u0b24\u0b4d\u0b24\u0b40 \u0b2a\u0b47\u0b1c\u0b4d"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0b30\u0b3f\u0b2b\u0b4d\u0b30\u0b47\u0b38\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0b24\u0b33\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemToEnd: function() { return "\u0b36\u0b47\u0b37\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemToStart: function() { return "\u0b06\u0b30\u0b2e\u0b4d\u0b2d\u0b15\u0b41 \u0b2f\u0b3e\u0b06\u0b28\u0b4d\u0b24\u0b41"; }, get$reorderItemUp: function() { return "\u0b09\u0b2a\u0b30\u0b15\u0b41 \u0b28\u0b3f\u0b05\u0b28\u0b4d\u0b24\u0b41"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0b2c\u0b30\u0b4d\u0b37 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1\u0b1f\u0b3f \u0b06\u0b07\u0b1f\u0b2e\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount\u0b1f\u0b3f \u0b06\u0b07\u0b1f\u0b2e\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0b2e\u0b47\u0b28\u0b41 \u0b26\u0b47\u0b16\u0b3e\u0b28\u0b4d\u0b24\u0b41"; }, get$tabLabelRaw: function() { return "$tabCount\u0b30 $tabIndex \u0b1f\u0b3e\u0b2c\u0b4d"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0b38\u0b2e\u0b5f \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerHourLabel: function() { return "\u0b18\u0b23\u0b4d\u0b1f\u0b3e"; }, get$timePickerHourModeAnnouncement: function() { return "\u0b18\u0b23\u0b4d\u0b1f\u0b3e \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerInputHelpText: function() { return "\u0b38\u0b2e\u0b5f \u0b32\u0b47\u0b16\u0b28\u0b4d\u0b24\u0b41"; }, get$timePickerMinuteLabel: function() { return "\u0b2e\u0b3f\u0b28\u0b3f\u0b1f\u0b4d"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0b2e\u0b3f\u0b28\u0b3f\u0b1f\u0b4d \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"; } }; Y.MaterialLocalizationPa.prototype = { get$alertDialogLabel: function() { return "\u0a38\u0a41\u0a1a\u0a47\u0a24\u0a28\u0a3e"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0a2a\u0a3f\u0a71\u0a1b\u0a47"; }, get$calendarModeButtonLabel: function() { return "\u0a15\u0a48\u0a32\u0a70\u0a21\u0a30 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$cancelButtonLabel: function() { return "\u0a30\u0a71\u0a26 \u0a15\u0a30\u0a4b"; }, get$collapsedIconTapHint: function() { return "\u0a35\u0a3f\u0a38\u0a24\u0a3e\u0a30 \u0a15\u0a30\u0a4b"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0a24\u0a3e\u0a30\u0a40\u0a16 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$dateOutOfRangeLabel: function() { return "\u0a30\u0a47\u0a02\u0a1c-\u0a24\u0a4b\u0a02-\u0a2c\u0a3e\u0a39\u0a30\u0964"; }, get$datePickerHelpText: function() { return "\u0a24\u0a3e\u0a30\u0a40\u0a16 \u0a1a\u0a41\u0a23\u0a4b"; }, get$dialModeButtonLabel: function() { return "\u0a21\u0a3e\u0a07\u0a32 \u0a1a\u0a4b\u0a23\u0a15\u0a3e\u0a30 \u0a2e\u0a4b\u0a21 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$dialogLabel: function() { return "\u0a35\u0a3f\u0a70\u0a21\u0a4b"; }, get$drawerLabel: function() { return "\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a38\u0a3c\u0a28 \u0a2e\u0a40\u0a28\u0a42"; }, get$expandedIconTapHint: function() { return "\u0a38\u0a2e\u0a47\u0a1f\u0a4b"; }, get$inputDateModeButtonLabel: function() { return "\u0a07\u0a28\u0a2a\u0a41\u0a71\u0a1f '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$inputTimeModeButtonLabel: function() { return "\u0a32\u0a3f\u0a16\u0a24 \u0a07\u0a28\u0a2a\u0a41\u0a71\u0a1f \u0a2e\u0a4b\u0a21 '\u0a24\u0a47 \u0a1c\u0a3e\u0a13"; }, get$invalidDateFormatLabel: function() { return "\u0a05\u0a35\u0a48\u0a27 \u0a2b\u0a3e\u0a30\u0a2e\u0a48\u0a1f\u0964"; }, get$invalidTimeLabel: function() { return "\u0a35\u0a48\u0a27 \u0a38\u0a2e\u0a3e\u0a02 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0a32\u0a3e\u0a07\u0a38\u0a70\u0a38"; }, get$modalBarrierDismissLabel: function() { return "\u0a16\u0a3e\u0a30\u0a1c \u0a15\u0a30\u0a4b"; }, get$nextMonthTooltip: function() { return "\u0a05\u0a17\u0a32\u0a3e \u0a2e\u0a39\u0a40\u0a28\u0a3e"; }, get$nextPageTooltip: function() { return "\u0a05\u0a17\u0a32\u0a3e \u0a2a\u0a70\u0a28\u0a3e"; }, get$okButtonLabel: function() { return "\u0a20\u0a40\u0a15 \u0a39\u0a48"; }, get$openAppDrawerTooltip: function() { return "\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a36\u0a28 \u0a2e\u0a40\u0a28\u0a42 \u0a16\u0a4b\u0a32\u0a4d\u0a39\u0a4b"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u0a32\u0a17\u0a2d\u0a17 $rowCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0a2a\u0a4c\u0a2a\u0a05\u0a71\u0a2a \u0a2e\u0a40\u0a28\u0a42"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0a2a\u0a3f\u0a1b\u0a32\u0a3e \u0a2e\u0a39\u0a40\u0a28\u0a3e"; }, get$previousPageTooltip: function() { return "\u0a2a\u0a3f\u0a1b\u0a32\u0a3e \u0a2a\u0a70\u0a28\u0a3e"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0a30\u0a3f\u0a2b\u0a4d\u0a30\u0a48\u0a36 \u0a15\u0a30\u0a4b"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0a39\u0a47\u0a20\u0a3e\u0a02 \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemToEnd: function() { return "\u0a05\u0a70\u0a24 \u0a35\u0a3f\u0a71\u0a1a \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemToStart: function() { return "\u0a36\u0a41\u0a30\u0a42 \u0a35\u0a3f\u0a71\u0a1a \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$reorderItemUp: function() { return "\u0a09\u0a71\u0a2a\u0a30 \u0a32\u0a3f\u0a1c\u0a3e\u0a13"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0a38\u0a3e\u0a32 \u0a1a\u0a41\u0a23\u0a4b"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0a06\u0a08\u0a1f\u0a2e \u0a1a\u0a41\u0a23\u0a40 \u0a17\u0a08"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0a06\u0a08\u0a1f\u0a2e\u0a3e\u0a02 \u0a1a\u0a41\u0a23\u0a40\u0a06\u0a02 \u0a17\u0a08\u0a06\u0a02"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0a2e\u0a40\u0a28\u0a42 \u0a26\u0a3f\u0a16\u0a3e\u0a13"; }, get$tabLabelRaw: function() { return "$tabCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $tabIndex \u0a1f\u0a48\u0a2c"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0a38\u0a2e\u0a3e\u0a02 \u0a1a\u0a41\u0a23\u0a4b"; }, get$timePickerHourLabel: function() { return "\u0a18\u0a70\u0a1f\u0a3e"; }, get$timePickerHourModeAnnouncement: function() { return "\u0a18\u0a70\u0a1f\u0a47 \u0a1a\u0a41\u0a23\u0a4b"; }, get$timePickerInputHelpText: function() { return "\u0a38\u0a2e\u0a3e\u0a02 \u0a26\u0a3e\u0a16\u0a32 \u0a15\u0a30\u0a4b"; }, get$timePickerMinuteLabel: function() { return "\u0a2e\u0a3f\u0a70\u0a1f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0a2e\u0a3f\u0a70\u0a1f \u0a1a\u0a41\u0a23\u0a4b"; } }; Y.MaterialLocalizationPl.prototype = { get$alertDialogLabel: function() { return "Alert"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Wstecz"; }, get$calendarModeButtonLabel: function() { return "Prze\u0142\u0105cz na kalendarz"; }, get$cancelButtonLabel: function() { return "ANULUJ"; }, get$collapsedIconTapHint: function() { return "Rozwi\u0144"; }, get$dateHelpText: function() { return "dd.mm.rrrr"; }, get$dateInputLabel: function() { return "Wpisz dat\u0119"; }, get$dateOutOfRangeLabel: function() { return "Poza zakresem."; }, get$datePickerHelpText: function() { return "WYBIERZ DAT\u0118"; }, get$dialModeButtonLabel: function() { return "W\u0142\u0105cz tryb selektora"; }, get$dialogLabel: function() { return "Okno dialogowe"; }, get$drawerLabel: function() { return "Menu nawigacyjne"; }, get$expandedIconTapHint: function() { return "Zwi\u0144"; }, get$inputDateModeButtonLabel: function() { return "Prze\u0142\u0105cz na wpisywanie"; }, get$inputTimeModeButtonLabel: function() { return "W\u0142\u0105cz tryb wprowadzania tekstu"; }, get$invalidDateFormatLabel: function() { return "Nieprawid\u0142owy format."; }, get$invalidTimeLabel: function() { return "Wpisz prawid\u0142ow\u0105 godzin\u0119"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount\xa0licencje"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount\xa0licencji"; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licencja"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licencji"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencje"; }, get$modalBarrierDismissLabel: function() { return "Zamknij"; }, get$nextMonthTooltip: function() { return "Nast\u0119pny miesi\u0105c"; }, get$nextPageTooltip: function() { return "Nast\u0119pna strona"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Otw\xf3rz menu nawigacyjne"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow z $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow z oko\u0142o $rowCount"; }, get$popupMenuLabel: function() { return "Menu kontekstowe"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Poprzedni miesi\u0105c"; }, get$previousPageTooltip: function() { return "Poprzednia strona"; }, get$refreshIndicatorSemanticLabel: function() { return "Od\u015bwie\u017c"; }, get$remainingTextFieldCharacterCountFew: function() { return "Pozosta\u0142y $remainingCount znaki"; }, get$remainingTextFieldCharacterCountMany: function() { return "Pozosta\u0142o $remainingCount znak\xf3w"; }, get$remainingTextFieldCharacterCountOne: function() { return "Jeszcze 1 znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Pozosta\u0142o $remainingCount znak\xf3w"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Przenie\u015b w d\xf3\u0142"; }, get$reorderItemToEnd: function() { return "Przenie\u015b na koniec"; }, get$reorderItemToStart: function() { return "Przenie\u015b na pocz\u0105tek"; }, get$reorderItemUp: function() { return "Przenie\u015b w g\xf3r\u0119"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Wybierz rok"; }, get$selectedRowCountTitleFew: function() { return "$selectedRowCount wybrane elementy"; }, get$selectedRowCountTitleMany: function() { return "$selectedRowCount wybranych element\xf3w"; }, get$selectedRowCountTitleOne: function() { return "1 wybrany element"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount wybranych element\xf3w"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Poka\u017c menu"; }, get$tabLabelRaw: function() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "WYBIERZ GODZIN\u0118"; }, get$timePickerHourLabel: function() { return "Godzina"; }, get$timePickerHourModeAnnouncement: function() { return "Wybierz godziny"; }, get$timePickerInputHelpText: function() { return "WPISZ GODZIN\u0118"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Wybierz minuty"; } }; Y.MaterialLocalizationPs.prototype = { get$alertDialogLabel: function() { return "\u062e\u0628\u0631\u062a\u06cc\u0627"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0634\u0627\u062a\u0647"; }, get$calendarModeButtonLabel: function() { return "Switch to calendar"; }, get$cancelButtonLabel: function() { return "\u0644\u063a\u0648\u0647 \u06a9\u0648\u0644"; }, get$collapsedIconTapHint: function() { return "Expand"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Enter Date"; }, get$dateOutOfRangeLabel: function() { return "Out of range."; }, get$datePickerHelpText: function() { return "SELECT DATE"; }, get$dialModeButtonLabel: function() { return "Switch to dial picker mode"; }, get$dialogLabel: function() { return "\u062e\u0628\u0631\u06d0 \u0627\u062a\u0631\u06d0"; }, get$drawerLabel: function() { return "\u062f \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648"; }, get$expandedIconTapHint: function() { return "Collapse"; }, get$inputDateModeButtonLabel: function() { return "Switch to input"; }, get$inputTimeModeButtonLabel: function() { return "Switch to text input mode"; }, get$invalidDateFormatLabel: function() { return "Invalid format."; }, get$invalidTimeLabel: function() { return "Enter a valid time"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 license"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u062c\u0648\u0627\u0632\u0648\u0646\u0647"; }, get$modalBarrierDismissLabel: function() { return "\u0631\u062f \u06a9\u0693\u0647"; }, get$nextMonthTooltip: function() { return "\u0628\u0644\u0647 \u0645\u06cc\u0627\u0634\u062a"; }, get$nextPageTooltip: function() { return "\u0628\u0644\u0647 \u067e\u0627\u06bc\u0647"; }, get$okButtonLabel: function() { return "\u0633\u0645\u0647 \u062f\u0647"; }, get$openAppDrawerTooltip: function() { return "\u062f \u067e\u0631\u0627\u0646\u06cc\u0633\u062a\u06cc \u0646\u06cc\u06cc\u0646\u06ab \u0645\u06cc\u0646\u0648"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u062f $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0685\u062e\u0647 $rowCount \u062f"; }, get$popupMenuLabel: function() { return "\u062f \u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u0648"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u062a\u06cc\u0631\u0647 \u0645\u06cc\u0627\u0634\u062a"; }, get$previousPageTooltip: function() { return "\u0645\u062e\u06a9\u06cc\u0646\u06cc \u0645\u062e"; }, get$refreshIndicatorSemanticLabel: function() { return "Refresh"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 character remaining"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "No characters remaining"; }, get$reorderItemDown: function() { return "Move down"; }, get$reorderItemToEnd: function() { return "Move to the end"; }, get$reorderItemToStart: function() { return "Move to the start"; }, get$reorderItemUp: function() { return "Move up"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "Select year"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return null; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u062a\u0648\u06a9\u064a \u063a\u0648\u0631\u0647 \u0634\u0648\u064a"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u063a\u0648\u0631\u0646\u06cd \u069a\u0648\u062f\u0644"; }, get$tabLabelRaw: function() { return "$tabIndex \u062f $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SELECT TIME"; }, get$timePickerHourLabel: function() { return "Hour"; }, get$timePickerHourModeAnnouncement: function() { return "\u0648\u062e\u062a\u0648\u0646\u0647 \u0648\u067c\u0627\u06a9\u0626"; }, get$timePickerInputHelpText: function() { return "ENTER TIME"; }, get$timePickerMinuteLabel: function() { return "Minute"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0645\u0646\u06d0 \u063a\u0648\u0631\u0647 \u06a9\u0693\u0626"; } }; Y.MaterialLocalizationPt.prototype = { get$alertDialogLabel: function() { return "Alerta"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Voltar"; }, get$calendarModeButtonLabel: function() { return "Mudar para agenda"; }, get$cancelButtonLabel: function() { return "CANCELAR"; }, get$collapsedIconTapHint: function() { return "Expandir"; }, get$dateHelpText: function() { return "dd/mm/aaaa"; }, get$dateInputLabel: function() { return "Inserir data"; }, get$dateOutOfRangeLabel: function() { return "Fora de alcance."; }, get$datePickerHelpText: function() { return "SELECIONAR DATA"; }, get$dialModeButtonLabel: function() { return "Alternar para o modo de sele\xe7\xe3o de discagem"; }, get$dialogLabel: function() { return "Caixa de di\xe1logo"; }, get$drawerLabel: function() { return "Menu de navega\xe7\xe3o"; }, get$expandedIconTapHint: function() { return "Recolher"; }, get$inputDateModeButtonLabel: function() { return "Mudar para modo de entrada"; }, get$inputTimeModeButtonLabel: function() { return "Alternar para o modo de entrada de texto"; }, get$invalidDateFormatLabel: function() { return "Formato inv\xe1lido."; }, get$invalidTimeLabel: function() { return "Insira um hor\xe1rio v\xe1lido"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licen\xe7a"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licen\xe7as"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licen\xe7as"; }, get$modalBarrierDismissLabel: function() { return "Dispensar"; }, get$nextMonthTooltip: function() { return "Pr\xf3ximo m\xeas"; }, get$nextPageTooltip: function() { return "Pr\xf3xima p\xe1gina"; }, get$okButtonLabel: function() { return "Ok"; }, get$openAppDrawerTooltip: function() { return "Abrir menu de navega\xe7\xe3o"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow de aproximadamente $rowCount"; }, get$popupMenuLabel: function() { return "Menu pop-up"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "M\xeas anterior"; }, get$previousPageTooltip: function() { return "P\xe1gina anterior"; }, get$refreshIndicatorSemanticLabel: function() { return "Atualizar"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 caractere restante"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount caracteres restantes"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Mover para baixo"; }, get$reorderItemToEnd: function() { return "Mover para o final"; }, get$reorderItemToStart: function() { return "Mover para o in\xedcio"; }, get$reorderItemUp: function() { return "Mover para cima"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Selecione o ano"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item selecionado"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount itens selecionados"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Mostrar menu"; }, get$tabLabelRaw: function() { return "Guia $tabIndex de $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SELECIONAR HOR\xc1RIO"; }, get$timePickerHourLabel: function() { return "Hora"; }, get$timePickerHourModeAnnouncement: function() { return "Selecione as horas"; }, get$timePickerInputHelpText: function() { return "INSERIR HOR\xc1RIO"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Selecione os minutos"; } }; Y.MaterialLocalizationPtPt.prototype = { get$dialModeButtonLabel: function() { return "Mude para o modo de seletor de mostrador"; }, get$timePickerDialHelpText: function() { return "SELECIONAR HORA"; }, get$timePickerInputHelpText: function() { return "INTRODUZIR HORA"; }, get$invalidTimeLabel: function() { return "Introduza uma hora v\xe1lida."; }, get$inputTimeModeButtonLabel: function() { return "Mude para o m\xe9todo de introdu\xe7\xe3o de texto"; }, get$dateInputLabel: function() { return "Introduzir data"; }, get$calendarModeButtonLabel: function() { return "Mude para o calend\xe1rio"; }, get$dateOutOfRangeLabel: function() { return "Fora do intervalo."; }, get$inputDateModeButtonLabel: function() { return "Mude para a introdu\xe7\xe3o"; }, get$selectYearSemanticsLabel: function() { return "Selecionar ano"; }, get$tabLabelRaw: function() { return "Separador $tabIndex de $tabCount"; }, get$timePickerMinuteModeAnnouncement: function() { return "Selecionar minutos"; }, get$timePickerHourModeAnnouncement: function() { return "Selecionar horas"; }, get$nextMonthTooltip: function() { return "M\xeas seguinte"; }, get$nextPageTooltip: function() { return "P\xe1gina seguinte"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow a $lastRow de $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow a $lastRow de cerca de $rowCount"; }, get$okButtonLabel: function() { return "OK"; }, get$modalBarrierDismissLabel: function() { return "Ignorar"; }, get$reorderItemToEnd: function() { return "Mover para o fim"; }, get$expandedIconTapHint: function() { return "Reduzir"; }, get$remainingTextFieldCharacterCountOne: function() { return "Resta 1 car\xe1ter"; }, get$remainingTextFieldCharacterCountOther: function() { return "Restam $remainingCount carateres"; } }; Y.MaterialLocalizationRo.prototype = { get$alertDialogLabel: function() { return "Alert\u0103"; }, get$anteMeridiemAbbreviation: function() { return "a.m."; }, get$backButtonTooltip: function() { return "\xcenapoi"; }, get$calendarModeButtonLabel: function() { return "Comuta\u021bi la calendar"; }, get$cancelButtonLabel: function() { return "ANULA\u021aI"; }, get$collapsedIconTapHint: function() { return "Extinde\u021bi"; }, get$dateHelpText: function() { return "zz.ll.aaaa"; }, get$dateInputLabel: function() { return "Introduce\u021bi data"; }, get$dateOutOfRangeLabel: function() { return "F\u0103r\u0103 acoperire."; }, get$datePickerHelpText: function() { return "SELECTA\u021aI DATA"; }, get$dialModeButtonLabel: function() { return "Comuta\u021bi la modul selector cadran"; }, get$dialogLabel: function() { return "Caset\u0103 de dialog"; }, get$drawerLabel: function() { return "Meniu de navigare"; }, get$expandedIconTapHint: function() { return "Restr\xe2nge\u021bi"; }, get$inputDateModeButtonLabel: function() { return "Comuta\u021bi la introducerea textului"; }, get$inputTimeModeButtonLabel: function() { return "Comuta\u021bi la modul de introducere a textului"; }, get$invalidDateFormatLabel: function() { return "Format nevalid."; }, get$invalidTimeLabel: function() { return "Introduce\u021bi o or\u0103 valid\u0103"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licen\u021be"; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "O licen\u021b\u0103"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount de licen\u021be"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licen\u021be"; }, get$modalBarrierDismissLabel: function() { return "\xcenchide\u021bi"; }, get$nextMonthTooltip: function() { return "Luna viitoare"; }, get$nextPageTooltip: function() { return "Pagina urm\u0103toare"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Deschide\u021bi meniul de navigare"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow din $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow din aproximativ $rowCount"; }, get$popupMenuLabel: function() { return "Meniu pop-up"; }, get$postMeridiemAbbreviation: function() { return "p.m."; }, get$previousMonthTooltip: function() { return "Luna trecut\u0103"; }, get$previousPageTooltip: function() { return "Pagina anterioar\u0103"; }, get$refreshIndicatorSemanticLabel: function() { return "Actualiza\u021bi"; }, get$remainingTextFieldCharacterCountFew: function() { return "$remainingCount caractere r\u0103mase"; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "un caracter r\u0103mas"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount de caractere r\u0103mase"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Muta\u021bi \xeen jos"; }, get$reorderItemToEnd: function() { return "Muta\u021bi la sf\xe2r\u0219it"; }, get$reorderItemToStart: function() { return "Muta\u021bi la \xeenceput"; }, get$reorderItemUp: function() { return "Muta\u021bi \xeen sus"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Selecta\u021bi anul"; }, get$selectedRowCountTitleFew: function() { return "$selectedRowCount articole selectate"; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Un articol selectat"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount de articole selectate"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Nu exist\u0103 elemente selectate"; }, get$showMenuTooltip: function() { return "Afi\u0219a\u021bi meniul"; }, get$tabLabelRaw: function() { return "Fila $tabIndex din $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SELECTA\u021aI ORA"; }, get$timePickerHourLabel: function() { return "Or\u0103"; }, get$timePickerHourModeAnnouncement: function() { return "Selecta\u021bi orele"; }, get$timePickerInputHelpText: function() { return "INTRODUCE\u021aI ORA"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Selecta\u021bi minutele"; } }; Y.MaterialLocalizationRu.prototype = { get$alertDialogLabel: function() { return "\u041e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435"; }, get$anteMeridiemAbbreviation: function() { return "\u0410\u041c"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c"; }, get$cancelButtonLabel: function() { return "\u041e\u0422\u041c\u0415\u041d\u0410"; }, get$collapsedIconTapHint: function() { return "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c"; }, get$dateHelpText: function() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433"; }, get$dateInputLabel: function() { return "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel: function() { return "\u0414\u0430\u0442\u0430 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432\u043d\u0435 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0433\u043e \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430."; }, get$datePickerHelpText: function() { return "\u0412\u042b\u0411\u0415\u0420\u0418\u0422\u0415 \u0414\u0410\u0422\u0423"; }, get$dialModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u044b\u0431\u043e\u0440\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438"; }, get$dialogLabel: function() { return "\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"; }, get$expandedIconTapHint: function() { return "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c"; }, get$inputDateModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u0440\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0432\u043e\u0434\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"; }, get$invalidDateFormatLabel: function() { return "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u044b."; }, get$invalidTimeLabel: function() { return "\u0423\u043a\u0430\u0437\u0430\u043d\u043e \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0432\u0440\u0435\u043c\u044f."; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0439"; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0438"; }, get$modalBarrierDismissLabel: function() { return "\u0417\u0430\u043a\u0440\u044b\u0442\u044c"; }, get$nextMonthTooltip: function() { return "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446"; }, get$nextPageTooltip: function() { return "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel: function() { return "\u041e\u041a"; }, get$openAppDrawerTooltip: function() { return "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0438\u0437\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0438\u0437 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\xa0$rowCount"; }, get$popupMenuLabel: function() { return "\u0412\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446"; }, get$previousPageTooltip: function() { return "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"; }, get$remainingTextFieldCharacterCountMany: function() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u041e\u0441\u0442\u0430\u043b\u0441\u044f 1\xa0\u0441\u0438\u043c\u0432\u043e\u043b"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u043d\u0438\u0437"; }, get$reorderItemToEnd: function() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u043a\u043e\u043d\u0435\u0446"; }, get$reorderItemToStart: function() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u043d\u0430\u0447\u0430\u043b\u043e"; }, get$reorderItemUp: function() { return "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u0432\u0435\u0440\u0445"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u043e\u0434"; }, get$selectedRowCountTitleFew: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u0430"; }, get$selectedRowCountTitleMany: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432"; }, get$selectedRowCountTitleOne: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d 1\xa0\u043e\u0431\u044a\u0435\u043a\u0442"; }, get$selectedRowCountTitleOther: function() { return "\u0412\u044b\u0431\u0440\u0430\u043d\u043e $selectedRowCount\xa0\u043e\u0431\u044a\u0435\u043a\u0442\u0430"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u0421\u0442\u0440\u043e\u043a\u0438 \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u044b"; }, get$showMenuTooltip: function() { return "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw: function() { return "\u0412\u043a\u043b\u0430\u0434\u043a\u0430\xa0$tabIndex \u0438\u0437\xa0$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0412\u042b\u0411\u0415\u0420\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u042f"; }, get$timePickerHourLabel: function() { return "\u0427\u0430\u0441\u044b"; }, get$timePickerHourModeAnnouncement: function() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0447\u0430\u0441\u044b"; }, get$timePickerInputHelpText: function() { return "\u0412\u0412\u0415\u0414\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u042f"; }, get$timePickerMinuteLabel: function() { return "\u041c\u0438\u043d\u0443\u0442\u044b"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u044b"; } }; Y.MaterialLocalizationSi.prototype = { get$alertDialogLabel: function() { return "\u0d87\u0d9f\u0dc0\u0dd3\u0db8"; }, get$anteMeridiemAbbreviation: function() { return "\u0db4\u0dd9.\u0dc0."; }, get$backButtonTooltip: function() { return "\u0d86\u0db4\u0dc3\u0dd4"; }, get$calendarModeButtonLabel: function() { return "\u0daf\u0dd2\u0db1 \u0daf\u0dbb\u0dca\u0dc1\u0db1\u0dba \u0dc0\u0dd9\u0dad \u0db8\u0dcf\u0dbb\u0dd4 \u0dc0\u0db1\u0dca\u0db1"; }, get$cancelButtonLabel: function() { return "\u0d85\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$collapsedIconTapHint: function() { return "\u0daf\u0dd2\u0d9c \u0dc4\u0dbb\u0dd2\u0db1\u0dca\u0db1"; }, get$dateHelpText: function() { return "mm.dd.yyyy"; }, get$dateInputLabel: function() { return "\u0daf\u0dd2\u0db1\u0dba \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$dateOutOfRangeLabel: function() { return "\u0db4\u0dbb\u0dcf\u0dc3\u0dba\u0dd9\u0db1\u0dca \u0db4\u0dd2\u0da7\u0dad."; }, get$datePickerHelpText: function() { return "\u0daf\u0dd2\u0db1\u0dba \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$dialModeButtonLabel: function() { return "\u0da9\u0dba\u0dbd\u0db1 \u0dad\u0ddd\u0dbb\u0d9a \u0db4\u0dca\u200d\u0dbb\u0d9a\u0dcf\u0dbb\u0dba\u0da7 \u0db8\u0dcf\u0dbb\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$dialogLabel: function() { return "\u0dc3\u0d82\u0dc0\u0dcf\u0daf\u0dba"; }, get$drawerLabel: function() { return "\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"; }, get$expandedIconTapHint: function() { return "\u0dc4\u0d9a\u0dd4\u0dc5\u0db1\u0dca\u0db1"; }, get$inputDateModeButtonLabel: function() { return "\u0d86\u0daf\u0dcf\u0db1\u0dba \u0dc0\u0dd9\u0dad \u0db8\u0dcf\u0dbb\u0dd4 \u0dc0\u0db1\u0dca\u0db1"; }, get$inputTimeModeButtonLabel: function() { return "\u0db4\u0dd9\u0dc5 \u0d86\u0daf\u0dcf\u0db1 \u0db4\u0dca\u200d\u0dbb\u0d9a\u0dcf\u0dbb\u0dba\u0da7 \u0db8\u0dcf\u0dbb\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$invalidDateFormatLabel: function() { return "\u0d85\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0d86\u0d9a\u0dd8\u0dad\u0dd2\u0dba\u0d9a\u0dd2."; }, get$invalidTimeLabel: function() { return "\u0dc0\u0dbd\u0d82\u0d9c\u0dd4 \u0dc0\u0dda\u0dbd\u0dcf\u0dc0\u0d9a\u0dca \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb 1"; }, get$licensesPackageDetailTextOther: function() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb $licenseCount"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0db6\u0dbd\u0db4\u0dad\u0dca\u200d\u0dbb"; }, get$modalBarrierDismissLabel: function() { return "\u0d89\u0dc0\u0dad \u0dbd\u0db1\u0dca\u0db1"; }, get$nextMonthTooltip: function() { return "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dc3\u0dba"; }, get$nextPageTooltip: function() { return "\u0d8a\u0dc5\u0d9f \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$okButtonLabel: function() { return "\u0dc4\u0dbb\u0dd2"; }, get$openAppDrawerTooltip: function() { return "\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0dc0\u0dd2\u0dc0\u0dd8\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u0db1\u0dca $firstRow\u2013$lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount\u0d9a\u0dd2\u0db1\u0dca \u0db4\u0db8\u0dab $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0d8b\u0dad\u0dca\u0db4\u0dad\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"; }, get$postMeridiemAbbreviation: function() { return "\u0db4.\u0dc0."; }, get$previousMonthTooltip: function() { return "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dc3\u0dba"; }, get$previousPageTooltip: function() { return "\u0db4\u0dd9\u0dbb \u0db4\u0dd2\u0da7\u0dd4\u0dc0"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0db1\u0dd0\u0dc0\u0dd4\u0db8\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 1\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 $remainingCount\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0db4\u0dc4\u0dc5\u0da7 \u0d9c\u0dd9\u0db1 \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemToEnd: function() { return "\u0d85\u0dc0\u0dc3\u0dcf\u0db1\u0dba\u0da7 \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemToStart: function() { return "\u0d86\u0dbb\u0db8\u0dca\u0db7\u0dba \u0dc0\u0dd9\u0dad \u0dba\u0db1\u0dca\u0db1"; }, get$reorderItemUp: function() { return "\u0d89\u0dc4\u0dc5\u0da7 \u0d9c\u0dd9\u0db1 \u0dba\u0db1\u0dca\u0db1"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0dc0\u0dbb\u0dca\u0dc2\u0dba \u0dad\u0ddc\u0dca\u0dbb\u0db1\u0dca\u0db1"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0d85\u0dba\u0dd2\u0dad\u0db8 1\u0d9a\u0dca \u0dad\u0ddd\u0dbb\u0db1 \u0dbd\u0daf\u0dd3"; }, get$selectedRowCountTitleOther: function() { return "\u0d85\u0dba\u0dd2\u0dad\u0db8 $selectedRowCount\u0d9a\u0dca \u0dad\u0ddd\u0dbb\u0db1 \u0dbd\u0daf\u0dd3"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1"; }, get$tabLabelRaw: function() { return "\u0da7\u0dd0\u0db6 $tabIndex\u0d9a\u0dd2\u0db1\u0dca $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0dc0\u0dda\u0dbd\u0dcf\u0dc0 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerHourLabel: function() { return "\u0db4\u0dd0\u0dba"; }, get$timePickerHourModeAnnouncement: function() { return "\u0db4\u0dd0\u0dba \u0d9c\u0dab\u0db1 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerInputHelpText: function() { return "\u0daf\u0dd2\u0db1\u0dba \u0d87\u0dad\u0dd4\u0dc5\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"; }, get$timePickerMinuteLabel: function() { return "\u0db8\u0dd2\u0db1\u0dd2\u0dad\u0dca\u0dad\u0dd4"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0db8\u0dd2\u0db1\u0dd2\u0dad\u0dca\u0dad\u0dd4 \u0d9c\u0dab\u0db1 \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"; } }; Y.MaterialLocalizationSk.prototype = { get$alertDialogLabel: function() { return "Upozornenie"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Sp\xe4\u0165"; }, get$calendarModeButtonLabel: function() { return "Prepn\xfa\u0165 na kalend\xe1r"; }, get$cancelButtonLabel: function() { return "ZRU\u0160I\u0164"; }, get$collapsedIconTapHint: function() { return "Rozbali\u0165"; }, get$dateHelpText: function() { return "mm.dd.yyyy"; }, get$dateInputLabel: function() { return "Zadajte d\xe1tum"; }, get$dateOutOfRangeLabel: function() { return "Mimo rozsahu."; }, get$datePickerHelpText: function() { return "VYBERTE D\xc1TUM"; }, get$dialModeButtonLabel: function() { return "Prepn\xfa\u0165 na re\u017eim v\xfdberu \u010dasu"; }, get$dialogLabel: function() { return "Dial\xf3gov\xe9 okno"; }, get$drawerLabel: function() { return "Naviga\u010dn\xe1 ponuka"; }, get$expandedIconTapHint: function() { return "Zbali\u0165"; }, get$inputDateModeButtonLabel: function() { return "Prepn\xfa\u0165 na zad\xe1vanie"; }, get$inputTimeModeButtonLabel: function() { return "Prepn\xfa\u0165 na textov\xfd re\u017eim vstupu"; }, get$invalidDateFormatLabel: function() { return "Neplatn\xfd form\xe1t."; }, get$invalidTimeLabel: function() { return "Zadajte platn\xfd \u010das"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount\xa0licencie"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount licenses"; }, get$licensesPackageDetailTextOne: function() { return "1\xa0licencia"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount\xa0licenci\xed"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencie"; }, get$modalBarrierDismissLabel: function() { return "Odmietnu\u0165"; }, get$nextMonthTooltip: function() { return "Bud\xfaci mesiac"; }, get$nextPageTooltip: function() { return "\u010eal\u0161ia strana"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Otvori\u0165 naviga\u010dn\xfa ponuku"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\xa0\u2013\xa0$lastRow z\xa0$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\xa0\u2013\xa0$lastRow z\xa0pribli\u017ene $rowCount"; }, get$popupMenuLabel: function() { return "Kontextov\xe1 ponuka"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Predo\u0161l\xfd mesiac"; }, get$previousPageTooltip: function() { return "Predch\xe1dzaj\xfaca str\xe1nka"; }, get$refreshIndicatorSemanticLabel: function() { return "Obnovi\u0165"; }, get$remainingTextFieldCharacterCountFew: function() { return "Zost\xe1vaj\xfa $remainingCount\xa0znaky"; }, get$remainingTextFieldCharacterCountMany: function() { return "$remainingCount characters remaining"; }, get$remainingTextFieldCharacterCountOne: function() { return "Zost\xe1va 1\xa0znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Zost\xe1va $remainingCount\xa0znakov"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Presun\xfa\u0165 nadol"; }, get$reorderItemToEnd: function() { return "Presun\xfa\u0165 na koniec"; }, get$reorderItemToStart: function() { return "Presun\xfa\u0165 na za\u010diatok"; }, get$reorderItemUp: function() { return "Presun\xfa\u0165 nahor"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Vyberte rok"; }, get$selectedRowCountTitleFew: function() { return "$selectedRowCount vybrat\xe9 polo\u017eky"; }, get$selectedRowCountTitleMany: function() { return "$selectedRowCount items selected"; }, get$selectedRowCountTitleOne: function() { return "1\xa0vybrat\xe1 polo\u017eka"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount vybrat\xfdch polo\u017eiek"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Zobrazi\u0165 ponuku"; }, get$tabLabelRaw: function() { return "Karta $tabIndex z\xa0$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "VYBERTE \u010cAS"; }, get$timePickerHourLabel: function() { return "Hodina"; }, get$timePickerHourModeAnnouncement: function() { return "Vybra\u0165 hodiny"; }, get$timePickerInputHelpText: function() { return "ZADAJTE \u010cAS"; }, get$timePickerMinuteLabel: function() { return "Min\xfata"; }, get$timePickerMinuteModeAnnouncement: function() { return "Vybra\u0165 min\xfaty"; } }; Y.MaterialLocalizationSl.prototype = { get$alertDialogLabel: function() { return "Opozorilo"; }, get$anteMeridiemAbbreviation: function() { return "DOP."; }, get$backButtonTooltip: function() { return "Nazaj"; }, get$calendarModeButtonLabel: function() { return "Preklop na koledar"; }, get$cancelButtonLabel: function() { return "PREKLI\u010cI"; }, get$collapsedIconTapHint: function() { return "Raz\u0161iriti"; }, get$dateHelpText: function() { return "dd. mm. llll"; }, get$dateInputLabel: function() { return "Vnesite datum"; }, get$dateOutOfRangeLabel: function() { return "Zunaj dovoljenega obdobja"; }, get$datePickerHelpText: function() { return "IZBIRA DATUMA"; }, get$dialModeButtonLabel: function() { return "Preklop na na\u010din izbirnika s \u0161tevil\u010dnico"; }, get$dialogLabel: function() { return "Pogovorno okno"; }, get$drawerLabel: function() { return "Meni za krmarjenje"; }, get$expandedIconTapHint: function() { return "Strniti"; }, get$inputDateModeButtonLabel: function() { return "Preklop na vnos"; }, get$inputTimeModeButtonLabel: function() { return "Preklop na na\u010din vnosa besedila"; }, get$invalidDateFormatLabel: function() { return "Neveljavna oblika"; }, get$invalidTimeLabel: function() { return "Vnesite veljaven \u010das"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licence"; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenca"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenc"; }, get$licensesPackageDetailTextTwo: function() { return "$licenseCount licenci"; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licence"; }, get$modalBarrierDismissLabel: function() { return "Opusti"; }, get$nextMonthTooltip: function() { return "Naslednji mesec"; }, get$nextPageTooltip: function() { return "Naslednja stran"; }, get$okButtonLabel: function() { return "V REDU"; }, get$openAppDrawerTooltip: function() { return "Odpiranje menija za krmarjenje"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow od pribli\u017eno $rowCount"; }, get$popupMenuLabel: function() { return "Pojavni meni"; }, get$postMeridiemAbbreviation: function() { return "POP."; }, get$previousMonthTooltip: function() { return "Prej\u0161nji mesec"; }, get$previousPageTooltip: function() { return "Prej\u0161nja stran"; }, get$refreshIndicatorSemanticLabel: function() { return "Osve\u017ei"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u0160e $remainingCount znaki"; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0160e 1 znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0160e $remainingCount znakov"; }, get$remainingTextFieldCharacterCountTwo: function() { return "\u0160e $remainingCount znaka"; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Premakni navzdol"; }, get$reorderItemToEnd: function() { return "Premakni na konec"; }, get$reorderItemToStart: function() { return "Premakni na za\u010detek"; }, get$reorderItemUp: function() { return "Premakni navzgor"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Izberite leto"; }, get$selectedRowCountTitleFew: function() { return "Izbrani so $selectedRowCount elementi"; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Izbran je 1 element"; }, get$selectedRowCountTitleOther: function() { return "Izbranih je $selectedRowCount elementov"; }, get$selectedRowCountTitleTwo: function() { return "Izbrana sta $selectedRowCount elementa"; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Prikaz menija"; }, get$tabLabelRaw: function() { return "Zavihek $tabIndex od $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "IZBERITE \u010cAS"; }, get$timePickerHourLabel: function() { return "Ura"; }, get$timePickerHourModeAnnouncement: function() { return "Izberite ure"; }, get$timePickerInputHelpText: function() { return "VNESITE \u010cAS"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Izberite minute"; } }; Y.MaterialLocalizationSq.prototype = { get$alertDialogLabel: function() { return "Sinjalizim"; }, get$anteMeridiemAbbreviation: function() { return "paradite"; }, get$backButtonTooltip: function() { return "Prapa"; }, get$calendarModeButtonLabel: function() { return "Kalo te kalendari"; }, get$cancelButtonLabel: function() { return "ANULO"; }, get$collapsedIconTapHint: function() { return "Zgjero"; }, get$dateHelpText: function() { return "dd.mm.yyyy"; }, get$dateInputLabel: function() { return "Vendos dat\xebn"; }, get$dateOutOfRangeLabel: function() { return "Jasht\xeb rrezes."; }, get$datePickerHelpText: function() { return "ZGJIDH DAT\xcbN"; }, get$dialModeButtonLabel: function() { return "Kalo te modaliteti i zgjedh\xebsit t\xeb or\xebs"; }, get$dialogLabel: function() { return "Dialogu"; }, get$drawerLabel: function() { return "Menyja e navigimit"; }, get$expandedIconTapHint: function() { return "Palos"; }, get$inputDateModeButtonLabel: function() { return "Kalo te hyrja"; }, get$inputTimeModeButtonLabel: function() { return "Kalo te modaliteti i hyrjes s\xeb tekstit"; }, get$invalidDateFormatLabel: function() { return "Format i pavlefsh\xebm."; }, get$invalidTimeLabel: function() { return "Fut nj\xeb koh\xeb t\xeb vlefshme"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licenc\xeb"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenca"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licencat"; }, get$modalBarrierDismissLabel: function() { return "Hiq"; }, get$nextMonthTooltip: function() { return "Muaji i ardhsh\xebm"; }, get$nextPageTooltip: function() { return "Faqja tjet\xebr"; }, get$okButtonLabel: function() { return "N\xeb rregull"; }, get$openAppDrawerTooltip: function() { return "Hap menyn\xeb e navigimit"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow nga $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow nga rreth $rowCount"; }, get$popupMenuLabel: function() { return "Menyja k\xebrcyese"; }, get$postMeridiemAbbreviation: function() { return "pasdite"; }, get$previousMonthTooltip: function() { return "Muaji i m\xebparsh\xebm"; }, get$previousPageTooltip: function() { return "Faqja e m\xebparshme"; }, get$refreshIndicatorSemanticLabel: function() { return "Rifresko"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 karakter i mbetur"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount karaktere t\xeb mbetura"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "L\xebvize posht\xeb"; }, get$reorderItemToEnd: function() { return "L\xebvize n\xeb fund"; }, get$reorderItemToStart: function() { return "L\xebvize n\xeb fillim"; }, get$reorderItemUp: function() { return "L\xebvize lart"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Zgjidh vitin"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "U zgjodh 1 artikull"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount artikuj u zgjodh\xebn"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Shfaq menyn\xeb"; }, get$tabLabelRaw: function() { return "Skeda $tabIndex nga $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "ZGJIDH OR\xcbN"; }, get$timePickerHourLabel: function() { return "Ora"; }, get$timePickerHourModeAnnouncement: function() { return "Zgjidh or\xebt"; }, get$timePickerInputHelpText: function() { return "VENDOS OR\xcbN"; }, get$timePickerMinuteLabel: function() { return "Minuta"; }, get$timePickerMinuteModeAnnouncement: function() { return "Zgjidh minutat"; } }; Y.MaterialLocalizationSr.prototype = { get$alertDialogLabel: function() { return "\u041e\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045a\u0435"; }, get$anteMeridiemAbbreviation: function() { return "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"; }, get$cancelButtonLabel: function() { return "\u041e\u0422\u041a\u0410\u0416\u0418"; }, get$collapsedIconTapHint: function() { return "\u041f\u0440\u043e\u0448\u0438\u0440\u0438"; }, get$dateHelpText: function() { return "\u0434\u0434.\u043c\u043c.\u0433\u0433\u0433\u0433."; }, get$dateInputLabel: function() { return "\u0423\u043d\u0435\u0441\u0438\u0442\u0435 \u0434\u0430\u0442\u0443\u043c"; }, get$dateOutOfRangeLabel: function() { return "\u0418\u0437\u0432\u0430\u043d \u043f\u0435\u0440\u0438\u043e\u0434\u0430."; }, get$datePickerHelpText: function() { return "\u0418\u0417\u0410\u0411\u0415\u0420\u0418\u0422\u0415 \u0414\u0410\u0422\u0423\u041c"; }, get$dialModeButtonLabel: function() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0431\u0438\u0440\u0430\u0447\u0430 \u0431\u0440\u043e\u0458\u0447\u0430\u043d\u0438\u043a\u0430"; }, get$dialogLabel: function() { return "\u0414\u0438\u0458\u0430\u043b\u043e\u0433"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"; }, get$expandedIconTapHint: function() { return "\u0421\u043a\u0443\u043f\u0438"; }, get$inputDateModeButtonLabel: function() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0443\u043d\u043e\u0441"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0440\u0435\u0452\u0438\u0442\u0435 \u043d\u0430 \u0440\u0435\u0436\u0438\u043c \u0443\u043d\u043e\u0441\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"; }, get$invalidDateFormatLabel: function() { return "\u0424\u043e\u0440\u043c\u0430\u0442 \u0458\u0435 \u043d\u0435\u0432\u0430\u0436\u0435\u045b\u0438."; }, get$invalidTimeLabel: function() { return "\u0423\u043d\u0435\u0441\u0438\u0442\u0435 \u0432\u0430\u0436\u0435\u045b\u0435 \u0432\u0440\u0435\u043c\u0435"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0435"; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0438\u0446\u0435\u043d\u0446\u0430"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0438\u0446\u0435\u043d\u0446\u0438"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0438\u0446\u0435\u043d\u0446\u0435"; }, get$modalBarrierDismissLabel: function() { return "\u041e\u0434\u0431\u0430\u0446\u0438"; }, get$nextMonthTooltip: function() { return "\u0421\u043b\u0435\u0434\u0435\u045b\u0438 \u043c\u0435\u0441\u0435\u0446"; }, get$nextPageTooltip: function() { return "\u0421\u043b\u0435\u0434\u0435\u045b\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$okButtonLabel: function() { return "\u041f\u043e\u0442\u0432\u0440\u0434\u0438"; }, get$openAppDrawerTooltip: function() { return "\u041e\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u043c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow o\u0434 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow o\u0434 \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u043d\u043e $rowCount"; }, get$popupMenuLabel: function() { return "\u0418\u0441\u043a\u0430\u0447\u0443\u045b\u0438 \u043c\u0435\u043d\u0438"; }, get$postMeridiemAbbreviation: function() { return "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"; }, get$previousMonthTooltip: function() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u043c\u0435\u0441\u0435\u0446"; }, get$previousPageTooltip: function() { return "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u041e\u0441\u0432\u0435\u0436\u0438"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u0430 \u0441\u0443 $remainingCount \u0437\u043d\u0430\u043a\u0430"; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043e \u0458\u0435 1 \u0437\u043d\u0430\u043a"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u043e \u0458\u0435 $remainingCount \u0437\u043d\u0430\u043a\u043e\u0432\u0430"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0434\u043e\u043b\u0435"; }, get$reorderItemToEnd: function() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430 \u043a\u0440\u0430\u0458"; }, get$reorderItemToStart: function() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u0447\u0435\u0442\u0430\u043a"; }, get$reorderItemUp: function() { return "\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0433\u043e\u0440\u0435"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u043e\u0434\u0438\u043d\u0443"; }, get$selectedRowCountTitleFew: function() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u0435 \u0441\u0443 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0435"; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u0430 \u0458\u0435 1 \u0441\u0442\u0430\u0432\u043a\u0430"; }, get$selectedRowCountTitleOther: function() { return "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u043e \u0458\u0435 $selectedRowCount \u0441\u0442\u0430\u0432\u043a\u0438"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"; }, get$tabLabelRaw: function() { return "$tabIndex. \u043a\u0430\u0440\u0442\u0438\u0446\u0430 \u043e\u0434 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "\u0418\u0417\u0410\u0411\u0415\u0420\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerHourLabel: function() { return "\u0421\u0430\u0442"; }, get$timePickerHourModeAnnouncement: function() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u0430\u0442\u0435"; }, get$timePickerInputHelpText: function() { return "\u0423\u041d\u0415\u0421\u0418\u0422\u0415 \u0412\u0420\u0415\u041c\u0415"; }, get$timePickerMinuteLabel: function() { return "\u041c\u0438\u043d\u0443\u0442"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"; } }; Y.MaterialLocalizationSrCyrl.prototype = {}; Y.MaterialLocalizationSrLatn.prototype = { get$alertDialogLabel: function() { return "Obave\u0161tenje"; }, get$anteMeridiemAbbreviation: function() { return "pre podne"; }, get$backButtonTooltip: function() { return "Nazad"; }, get$calendarModeButtonLabel: function() { return "Pre\u0111ite na kalendar"; }, get$cancelButtonLabel: function() { return "OTKA\u017dI"; }, get$collapsedIconTapHint: function() { return "Pro\u0161iri"; }, get$dateHelpText: function() { return "dd.mm.gggg."; }, get$dateInputLabel: function() { return "Unesite datum"; }, get$dateOutOfRangeLabel: function() { return "Izvan perioda."; }, get$datePickerHelpText: function() { return "IZABERITE DATUM"; }, get$dialModeButtonLabel: function() { return "Pre\u0111ite na re\u017eim bira\u010da broj\u010danika"; }, get$dialogLabel: function() { return "Dijalog"; }, get$drawerLabel: function() { return "Meni za navigaciju"; }, get$expandedIconTapHint: function() { return "Skupi"; }, get$inputDateModeButtonLabel: function() { return "Pre\u0111ite na unos"; }, get$inputTimeModeButtonLabel: function() { return "Pre\u0111ite na re\u017eim unosa teksta"; }, get$invalidDateFormatLabel: function() { return "Format je neva\u017eec\u0301i."; }, get$invalidTimeLabel: function() { return "Unesite va\u017eec\u0301e vreme"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount licence"; }, get$licensesPackageDetailTextOne: function() { return "1 licenca"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenci"; }, get$licensesPageTitle: function() { return "Licence"; }, get$modalBarrierDismissLabel: function() { return "Odbaci"; }, get$nextMonthTooltip: function() { return "Sledec\u0301i mesec"; }, get$nextPageTooltip: function() { return "Sledec\u0301a stranica"; }, get$okButtonLabel: function() { return "Potvrdi"; }, get$openAppDrawerTooltip: function() { return "Otvorite meni za navigaciju"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow \u2013 $lastRow od $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow \u2013 $lastRow od pribli\u017eno $rowCount"; }, get$popupMenuLabel: function() { return "Iska\u010duc\u0301i meni"; }, get$postMeridiemAbbreviation: function() { return "po podne"; }, get$previousMonthTooltip: function() { return "Prethodni mesec"; }, get$previousPageTooltip: function() { return "Prethodna stranica"; }, get$refreshIndicatorSemanticLabel: function() { return "Osve\u017ei"; }, get$remainingTextFieldCharacterCountFew: function() { return "Preostala su $remainingCount znaka"; }, get$remainingTextFieldCharacterCountOne: function() { return "Preostao je 1 znak"; }, get$remainingTextFieldCharacterCountOther: function() { return "Preostalo je $remainingCount znakova"; }, get$reorderItemDown: function() { return "Pomerite nadole"; }, get$reorderItemToEnd: function() { return "Pomerite na kraj"; }, get$reorderItemToStart: function() { return "Pomerite na po\u010detak"; }, get$reorderItemUp: function() { return "Pomerite nagore"; }, get$selectYearSemanticsLabel: function() { return "Izaberite godinu"; }, get$selectedRowCountTitleFew: function() { return "Izabrane su $selectedRowCount stavke"; }, get$selectedRowCountTitleOne: function() { return "Izabrana je 1 stavka"; }, get$selectedRowCountTitleOther: function() { return "Izabrano je $selectedRowCount stavki"; }, get$showMenuTooltip: function() { return "Prika\u017ei meni"; }, get$tabLabelRaw: function() { return "$tabIndex. kartica od $tabCount"; }, get$timePickerDialHelpText: function() { return "IZABERITE VREME"; }, get$timePickerHourLabel: function() { return "Sat"; }, get$timePickerHourModeAnnouncement: function() { return "Izaberite sate"; }, get$timePickerInputHelpText: function() { return "UNESITE VREME"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "Izaberite minute"; } }; Y.MaterialLocalizationSv.prototype = { get$alertDialogLabel: function() { return "Varning"; }, get$anteMeridiemAbbreviation: function() { return "FM"; }, get$backButtonTooltip: function() { return "Tillbaka"; }, get$calendarModeButtonLabel: function() { return "Byt till kalender"; }, get$cancelButtonLabel: function() { return "AVBRYT"; }, get$collapsedIconTapHint: function() { return "Ut\xf6ka"; }, get$dateHelpText: function() { return "\xe5\xe5\xe5\xe5-mm-dd"; }, get$dateInputLabel: function() { return "Ange datum"; }, get$dateOutOfRangeLabel: function() { return "Utanf\xf6r intervallet."; }, get$datePickerHelpText: function() { return "V\xc4LJ DATUM"; }, get$dialModeButtonLabel: function() { return "Byt till l\xe4get urtavlev\xe4ljare"; }, get$dialogLabel: function() { return "Dialogruta"; }, get$drawerLabel: function() { return "Navigeringsmeny"; }, get$expandedIconTapHint: function() { return "D\xf6lj"; }, get$inputDateModeButtonLabel: function() { return "Byt till inmatning"; }, get$inputTimeModeButtonLabel: function() { return "Byt till text som inmatningsl\xe4ge"; }, get$invalidDateFormatLabel: function() { return "Ogiltigt format."; }, get$invalidTimeLabel: function() { return "Ange en giltig tid"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 licens"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount licenser"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Licenser"; }, get$modalBarrierDismissLabel: function() { return "St\xe4ng"; }, get$nextMonthTooltip: function() { return "N\xe4sta m\xe5nad"; }, get$nextPageTooltip: function() { return "N\xe4sta sida"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\xd6ppna navigeringsmenyn"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow av $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow av ungef\xe4r $rowCount"; }, get$popupMenuLabel: function() { return "Popup-meny"; }, get$postMeridiemAbbreviation: function() { return "EM"; }, get$previousMonthTooltip: function() { return "F\xf6reg\xe5ende m\xe5nad"; }, get$previousPageTooltip: function() { return "F\xf6reg\xe5ende sida"; }, get$refreshIndicatorSemanticLabel: function() { return "Uppdatera"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 tecken kvar"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount tecken kvar"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Flytta ned\xe5t"; }, get$reorderItemToEnd: function() { return "Flytta till slutet"; }, get$reorderItemToStart: function() { return "Flytta till b\xf6rjan"; }, get$reorderItemUp: function() { return "Flytta upp\xe5t"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "V\xe4lj \xe5r"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 objekt har markerats"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount objekt har markerats"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Visa meny"; }, get$tabLabelRaw: function() { return "Flik $tabIndex av $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "V\xc4LJ TID"; }, get$timePickerHourLabel: function() { return "Timme"; }, get$timePickerHourModeAnnouncement: function() { return "V\xe4lj timmar"; }, get$timePickerInputHelpText: function() { return "ANGE TID"; }, get$timePickerMinuteLabel: function() { return "Minut"; }, get$timePickerMinuteModeAnnouncement: function() { return "V\xe4lj minuter"; } }; Y.MaterialLocalizationSw.prototype = { get$alertDialogLabel: function() { return "Arifa"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Rudi Nyuma"; }, get$calendarModeButtonLabel: function() { return "Badili utumie hali ya kalenda"; }, get$cancelButtonLabel: function() { return "GHAIRI"; }, get$collapsedIconTapHint: function() { return "Panua"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "Weka Tarehe"; }, get$dateOutOfRangeLabel: function() { return "Umechagua tarehe iliyo nje ya kipindi."; }, get$datePickerHelpText: function() { return "CHAGUA TAREHE"; }, get$dialModeButtonLabel: function() { return "Badilisha ili utumie hali ya kiteuzi cha kupiga simu"; }, get$dialogLabel: function() { return "Kidirisha"; }, get$drawerLabel: function() { return "Menyu ya kusogeza"; }, get$expandedIconTapHint: function() { return "Kunja"; }, get$inputDateModeButtonLabel: function() { return "Badili utumie hali ya kuweka maandishi"; }, get$inputTimeModeButtonLabel: function() { return "Tumia programu ya kuingiza data ya maandishi"; }, get$invalidDateFormatLabel: function() { return "Muundo si sahihi."; }, get$invalidTimeLabel: function() { return "Weka saa sahihi"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "Leseni moja"; }, get$licensesPackageDetailTextOther: function() { return "Leseni $licenseCount"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Leseni"; }, get$modalBarrierDismissLabel: function() { return "Ondoa"; }, get$nextMonthTooltip: function() { return "Mwezi ujao"; }, get$nextPageTooltip: function() { return "Ukurasa unaofuata"; }, get$okButtonLabel: function() { return "Sawa"; }, get$openAppDrawerTooltip: function() { return "Fungua menyu ya kusogeza"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow hadi $lastRow kati ya $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow hadi $lastRow kati ya takriban $rowCount"; }, get$popupMenuLabel: function() { return "Menyu ibukizi"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Mwezi uliopita"; }, get$previousPageTooltip: function() { return "Ukurasa uliotangulia"; }, get$refreshIndicatorSemanticLabel: function() { return "Onyesha upya"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Imesalia herufi 1"; }, get$remainingTextFieldCharacterCountOther: function() { return "Zimesalia herufi $remainingCount"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "Hapana herufi zilizo baki"; }, get$reorderItemDown: function() { return "Sogeza chini"; }, get$reorderItemToEnd: function() { return "Sogeza hadi mwisho"; }, get$reorderItemToStart: function() { return "Sogeza hadi mwanzo"; }, get$reorderItemUp: function() { return "Sogeza juu"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Chagua mwaka"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "Umechagua kipengee 1"; }, get$selectedRowCountTitleOther: function() { return "Umechagua vipengee $selectedRowCount"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "Hamna kilicho chaguliwa"; }, get$showMenuTooltip: function() { return "Onyesha menyu"; }, get$tabLabelRaw: function() { return "Kichupo cha $tabIndex kati ya $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "CHAGUA SAA"; }, get$timePickerHourLabel: function() { return "Saa"; }, get$timePickerHourModeAnnouncement: function() { return "Chagua saa"; }, get$timePickerInputHelpText: function() { return "WEKA SAA"; }, get$timePickerMinuteLabel: function() { return "Dakika"; }, get$timePickerMinuteModeAnnouncement: function() { return "Chagua dakika"; } }; Y.MaterialLocalizationTa.prototype = { get$alertDialogLabel: function() { return "\u0bb5\u0bbf\u0bb4\u0bbf\u0baa\u0bcd\u0baa\u0bc2\u0b9f\u0bcd\u0b9f\u0bb2\u0bcd"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$calendarModeButtonLabel: function() { return "\u0b95\u0bc7\u0bb2\u0bc6\u0ba3\u0bcd\u0b9f\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1"; }, get$cancelButtonLabel: function() { return "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1\u0b9a\u0bc6\u0baf\u0bcd"; }, get$collapsedIconTapHint: function() { return "\u0bb5\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0ba4\u0bc7\u0ba4\u0bbf\u0baf\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bc1\u0b95"; }, get$dateOutOfRangeLabel: function() { return "\u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1."; }, get$datePickerHelpText: function() { return "\u0ba4\u0bc7\u0ba4\u0bbf\u0baf\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$dialModeButtonLabel: function() { return "\u0b9f\u0baf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b95\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0baa\u0baf\u0ba9\u0bcd\u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd"; }, get$dialogLabel: function() { return "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd"; }, get$drawerLabel: function() { return "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"; }, get$expandedIconTapHint: function() { return "\u0b9a\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$inputDateModeButtonLabel: function() { return "\u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1"; }, get$inputTimeModeButtonLabel: function() { return "\u0b89\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd"; }, get$invalidDateFormatLabel: function() { return "\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd."; }, get$invalidTimeLabel: function() { return "\u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bb5\u0bc1\u0bae\u0bcd"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0b89\u0bb0\u0bbf\u0bae\u0bae\u0bcd"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0b89\u0bb0\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0b89\u0bb0\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd"; }, get$modalBarrierDismissLabel: function() { return "\u0ba8\u0bbf\u0bb0\u0bbe\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"; }, get$nextMonthTooltip: function() { return "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bbe\u0ba4\u0bae\u0bcd"; }, get$nextPageTooltip: function() { return "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$okButtonLabel: function() { return "\u0b9a\u0bb0\u0bbf"; }, get$openAppDrawerTooltip: function() { return "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow / $rowCount"; }, get$popupMenuLabel: function() { return "\u0baa\u0bbe\u0baa\u0bcd-\u0b85\u0baa\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0bae\u0bbe\u0ba4\u0bae\u0bcd"; }, get$previousPageTooltip: function() { return "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0bb0\u0bc6\u0b83\u0baa\u0bcd\u0bb0\u0bc6\u0bb7\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8"; }, get$reorderItemDown: function() { return "\u0b95\u0bc0\u0bb4\u0bc7 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemToEnd: function() { return "\u0b87\u0bb1\u0bc1\u0ba4\u0bbf\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemToStart: function() { return "\u0ba4\u0bca\u0b9f\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$reorderItemUp: function() { return "\u0bae\u0bc7\u0bb2\u0bc7 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u0b86\u0ba3\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba9"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return "\u0b8e\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8"; }, get$showMenuTooltip: function() { return "\u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0b95\u0bcd \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1"; }, get$tabLabelRaw: function() { return "\u0ba4\u0bbe\u0bb5\u0bb2\u0bcd $tabIndex / $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_5; }, get$timePickerDialHelpText: function() { return "\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0b95"; }, get$timePickerHourLabel: function() { return "\u0bae\u0ba3\u0bbf\u0ba8\u0bc7\u0bb0\u0bae\u0bcd"; }, get$timePickerHourModeAnnouncement: function() { return "\u0bae\u0ba3\u0bbf\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; }, get$timePickerInputHelpText: function() { return "\u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bc1\u0b95"; }, get$timePickerMinuteLabel: function() { return "\u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0bae\u0bcd"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd"; } }; Y.MaterialLocalizationTe.prototype = { get$alertDialogLabel: function() { return "\u0c05\u0c32\u0c30\u0c4d\u0c1f\u0c4d"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0c35\u0c46\u0c28\u0c41\u0c15\u0c15\u0c41"; }, get$calendarModeButtonLabel: function() { return "\u0c15\u0c4d\u0c2f\u0c3e\u0c32\u0c46\u0c02\u0c21\u0c30\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c02\u0c21\u0c3f"; }, get$cancelButtonLabel: function() { return "\u0c30\u0c26\u0c4d\u0c26\u0c41 \u0c1a\u0c47\u0c2f\u0c3f"; }, get$collapsedIconTapHint: function() { return "\u0c35\u0c3f\u0c38\u0c4d\u0c24\u0c30\u0c3f\u0c02\u0c1a\u0c41"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "\u0c24\u0c47\u0c26\u0c40\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$dateOutOfRangeLabel: function() { return "\u0c2a\u0c30\u0c3f\u0c27\u0c3f \u0c35\u0c46\u0c32\u0c41\u0c2a\u0c32 \u0c09\u0c02\u0c26\u0c3f."; }, get$datePickerHelpText: function() { return "\u0c24\u0c47\u0c26\u0c40\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$dialModeButtonLabel: function() { return "\u0c21\u0c2f\u0c32\u0c4d \u0c2a\u0c3f\u0c15\u0c30\u0c4d \u0c2e\u0c4b\u0c21\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c41\u0c38\u0c4d\u0c24\u0c41\u0c02\u0c26\u0c3f"; }, get$dialogLabel: function() { return "\u0c21\u0c48\u0c32\u0c3e\u0c17\u0c4d"; }, get$drawerLabel: function() { return "\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42"; }, get$expandedIconTapHint: function() { return "\u0c15\u0c41\u0c26\u0c3f\u0c02\u0c1a\u0c41"; }, get$inputDateModeButtonLabel: function() { return "\u0c07\u0c28\u0c4d\u200c\u0c2a\u0c41\u0c1f\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c02\u0c21\u0c3f"; }, get$inputTimeModeButtonLabel: function() { return "\u0c1f\u0c46\u0c15\u0c4d\u0c38\u0c4d\u0c1f\u0c4d \u0c07\u0c28\u0c4d\u200c\u0c2a\u0c41\u0c1f\u0c4d \u0c2e\u0c4b\u0c21\u0c4d\u200c\u0c15\u0c41 \u0c2e\u0c3e\u0c30\u0c41\u0c38\u0c4d\u0c24\u0c41\u0c02\u0c26\u0c3f"; }, get$invalidDateFormatLabel: function() { return "\u0c2b\u0c3e\u0c30\u0c4d\u0c2e\u0c3e\u0c1f\u0c4d \u0c1a\u0c46\u0c32\u0c4d\u0c32\u0c26\u0c41."; }, get$invalidTimeLabel: function() { return "\u0c1a\u0c46\u0c32\u0c4d\u0c32\u0c41\u0c2c\u0c3e\u0c1f\u0c41 \u0c05\u0c2f\u0c4d\u0c2f\u0c47 \u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d\u200c\u0c32\u0c41"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0c32\u0c48\u0c38\u0c46\u0c28\u0c4d\u0c38\u0c4d\u200c\u0c32\u0c41"; }, get$modalBarrierDismissLabel: function() { return "\u0c35\u0c3f\u0c38\u0c4d\u0c2e\u0c30\u0c3f\u0c02\u0c1a\u0c41"; }, get$nextMonthTooltip: function() { return "\u0c24\u0c30\u0c4d\u0c35\u0c3e\u0c24 \u0c28\u0c46\u0c32"; }, get$nextPageTooltip: function() { return "\u0c24\u0c30\u0c4d\u0c35\u0c3e\u0c24 \u0c2a\u0c47\u0c1c\u0c40"; }, get$okButtonLabel: function() { return "\u0c38\u0c30\u0c47"; }, get$openAppDrawerTooltip: function() { return "\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c24\u0c46\u0c30\u0c41\u0c35\u0c41"; }, get$pageRowsInfoTitleRaw: function() { return "$rowCount\u0c32\u0c4b $firstRow - $lastRow"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$rowCount\u0c32\u0c4b $firstRow\u2013$lastRow"; }, get$popupMenuLabel: function() { return "\u0c2a\u0c3e\u0c2a\u0c4d\u200c\u0c05\u0c2a\u0c4d \u0c2e\u0c46\u0c28\u0c42"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0c2e\u0c41\u0c28\u0c41\u0c2a\u0c1f\u0c3f \u0c28\u0c46\u0c32"; }, get$previousPageTooltip: function() { return "\u0c2e\u0c41\u0c28\u0c41\u0c2a\u0c1f\u0c3f \u0c2a\u0c47\u0c1c\u0c40"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0c30\u0c3f\u0c2b\u0c4d\u0c30\u0c46\u0c37\u0c4d \u0c1a\u0c47\u0c2f\u0c3f"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c02 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c02\u0c26\u0c3f"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c3e\u0c32\u0c41 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c28\u0c4d\u0c28\u0c3e\u0c2f\u0c3f"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "\u0c15\u0c3f\u0c02\u0c26\u0c3f\u0c15\u0c41 \u0c1c\u0c30\u0c41\u0c2a\u0c41"; }, get$reorderItemToEnd: function() { return "\u0c1a\u0c3f\u0c35\u0c30\u0c15\u0c41 \u0c24\u0c30\u0c32\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"; }, get$reorderItemToStart: function() { return "\u0c2a\u0c4d\u0c30\u0c3e\u0c30\u0c02\u0c2d\u0c3e\u0c28\u0c3f\u0c15\u0c3f \u0c24\u0c30\u0c32\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"; }, get$reorderItemUp: function() { return "\u0c2a\u0c48\u0c15\u0c3f \u0c1c\u0c30\u0c2a\u0c02\u0c21\u0c3f"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0c38\u0c02\u0c35\u0c24\u0c4d\u0c38\u0c30\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0c05\u0c02\u0c36\u0c02 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0c05\u0c02\u0c36\u0c3e\u0c32\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c2c\u0c21\u0c4d\u0c21\u0c3e\u0c2f\u0c3f"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c1a\u0c42\u0c2a\u0c41"; }, get$tabLabelRaw: function() { return "$tabCount\u0c32\u0c4b $tabIndex\u0c35 \u0c1f\u0c4d\u0c2f\u0c3e\u0c2c\u0c4d"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "\u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$timePickerHourLabel: function() { return "\u0c17\u0c02\u0c1f"; }, get$timePickerHourModeAnnouncement: function() { return "\u0c17\u0c02\u0c1f\u0c32\u0c28\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; }, get$timePickerInputHelpText: function() { return "\u0c38\u0c2e\u0c2f\u0c3e\u0c28\u0c4d\u0c28\u0c3f \u0c0e\u0c02\u0c1f\u0c30\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"; }, get$timePickerMinuteLabel: function() { return "\u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c02"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0c28\u0c3f\u0c2e\u0c3f\u0c37\u0c3e\u0c32\u0c28\u0c41 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"; } }; Y.MaterialLocalizationTh.prototype = { get$alertDialogLabel: function() { return "\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u0e01\u0e25\u0e31\u0e1a"; }, get$calendarModeButtonLabel: function() { return "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19"; }, get$cancelButtonLabel: function() { return "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01"; }, get$collapsedIconTapHint: function() { return "\u0e02\u0e22\u0e32\u0e22"; }, get$dateHelpText: function() { return "\u0e14\u0e14/\u0e27\u0e27/\u0e1b\u0e1b\u0e1b\u0e1b"; }, get$dateInputLabel: function() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48"; }, get$dateOutOfRangeLabel: function() { return "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07"; }, get$datePickerHelpText: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48"; }, get$dialModeButtonLabel: function() { return "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e2b\u0e21\u0e38\u0e19"; }, get$dialogLabel: function() { return "\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e42\u0e15\u0e49\u0e15\u0e2d\u0e1a"; }, get$drawerLabel: function() { return "\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"; }, get$expandedIconTapHint: function() { return "\u0e22\u0e38\u0e1a"; }, get$inputDateModeButtonLabel: function() { return "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"; }, get$inputTimeModeButtonLabel: function() { return "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e21\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"; }, get$invalidDateFormatLabel: function() { return "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"; }, get$invalidTimeLabel: function() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15 1 \u0e43\u0e1a"; }, get$licensesPackageDetailTextOther: function() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15 $licenseCount \u0e43\u0e1a"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0e43\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15"; }, get$modalBarrierDismissLabel: function() { return "\u0e1b\u0e34\u0e14"; }, get$nextMonthTooltip: function() { return "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32"; }, get$nextPageTooltip: function() { return "\u0e2b\u0e19\u0e49\u0e32\u0e16\u0e31\u0e14\u0e44\u0e1b"; }, get$okButtonLabel: function() { return "\u0e15\u0e01\u0e25\u0e07"; }, get$openAppDrawerTooltip: function() { return "\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow \u0e08\u0e32\u0e01 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0e08\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 $rowCount"; }, get$popupMenuLabel: function() { return "\u0e40\u0e21\u0e19\u0e39\u0e1b\u0e4a\u0e2d\u0e1b\u0e2d\u0e31\u0e1b"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27"; }, get$previousPageTooltip: function() { return "\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e48\u0e2d\u0e19"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0e23\u0e35\u0e40\u0e1f\u0e23\u0e0a"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0e40\u0e2b\u0e25\u0e37\u0e2d 1 \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0e40\u0e2b\u0e25\u0e37\u0e2d $remainingCount \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u0e22\u0e49\u0e32\u0e22\u0e25\u0e07"; }, get$reorderItemToEnd: function() { return "\u0e22\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e17\u0e49\u0e32\u0e22\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$reorderItemToStart: function() { return "\u0e22\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e15\u0e49\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$reorderItemUp: function() { return "\u0e22\u0e49\u0e32\u0e22\u0e02\u0e36\u0e49\u0e19"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1b\u0e35"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27 1 \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$selectedRowCountTitleOther: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27 $selectedRowCount \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e21\u0e19\u0e39"; }, get$tabLabelRaw: function() { return "\u0e41\u0e17\u0e47\u0e1a\u0e17\u0e35\u0e48 $tabIndex \u0e08\u0e32\u0e01 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_5; }, get$timePickerDialHelpText: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e27\u0e25\u0e32"; }, get$timePickerHourLabel: function() { return "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, get$timePickerHourModeAnnouncement: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07"; }, get$timePickerInputHelpText: function() { return "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32"; }, get$timePickerMinuteLabel: function() { return "\u0e19\u0e32\u0e17\u0e35"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e32\u0e17\u0e35"; } }; Y.MaterialLocalizationTl.prototype = { get$alertDialogLabel: function() { return "Alerto"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Bumalik"; }, get$calendarModeButtonLabel: function() { return "Lumipat sa kalendaryo"; }, get$cancelButtonLabel: function() { return "KANSELAHIN"; }, get$collapsedIconTapHint: function() { return "I-expand"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Ilagay ang Petsa"; }, get$dateOutOfRangeLabel: function() { return "Wala sa hanay."; }, get$datePickerHelpText: function() { return "PUMILI NG PETSA"; }, get$dialModeButtonLabel: function() { return "Lumipat sa dial picker mode"; }, get$dialogLabel: function() { return "Dialog"; }, get$drawerLabel: function() { return "Menu ng navigation"; }, get$expandedIconTapHint: function() { return "I-collapse"; }, get$inputDateModeButtonLabel: function() { return "Lumipat sa input"; }, get$inputTimeModeButtonLabel: function() { return "Lumipat sa text input mode"; }, get$invalidDateFormatLabel: function() { return "Invalid ang format."; }, get$invalidTimeLabel: function() { return "Maglagay ng valid na oras"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisensya"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount na lisensya"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Mga Lisensya"; }, get$modalBarrierDismissLabel: function() { return "I-dismiss"; }, get$nextMonthTooltip: function() { return "Susunod na buwan"; }, get$nextPageTooltip: function() { return "Susunod na page"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Buksan ang menu ng navigation"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow ng $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return string$.x24firstn; }, get$popupMenuLabel: function() { return "Popup na menu"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Nakaraang buwan"; }, get$previousPageTooltip: function() { return "Nakaraang page"; }, get$refreshIndicatorSemanticLabel: function() { return "Nagre-refresh"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 character ang natitira"; }, get$remainingTextFieldCharacterCountOther: function() { return string$.x24remai; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Ilipat pababa"; }, get$reorderItemToEnd: function() { return "Ilipat sa dulo"; }, get$reorderItemToStart: function() { return "Ilipat sa simula"; }, get$reorderItemUp: function() { return "Ilipat pataas"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Pumili ng taon"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 item ang napili"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount na item ang napili"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Ipakita ang menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex ng $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "PUMILI NG ORAS"; }, get$timePickerHourLabel: function() { return "Oras"; }, get$timePickerHourModeAnnouncement: function() { return "Pumili ng mga oras"; }, get$timePickerInputHelpText: function() { return "MAGLAGAY NG ORAS"; }, get$timePickerMinuteLabel: function() { return "Minuto"; }, get$timePickerMinuteModeAnnouncement: function() { return "Pumili ng mga minuto"; } }; Y.MaterialLocalizationTr.prototype = { get$alertDialogLabel: function() { return "Uyar\u0131"; }, get$anteMeridiemAbbreviation: function() { return "\xd6\xd6"; }, get$backButtonTooltip: function() { return "Geri"; }, get$calendarModeButtonLabel: function() { return "Takvime ge\xe7"; }, get$cancelButtonLabel: function() { return "\u0130PTAL"; }, get$collapsedIconTapHint: function() { return "Geni\u015flet"; }, get$dateHelpText: function() { return "gg.aa.yyyy"; }, get$dateInputLabel: function() { return "Tarih Girin"; }, get$dateOutOfRangeLabel: function() { return "Kapsama alan\u0131 d\u0131\u015f\u0131nda."; }, get$datePickerHelpText: function() { return "TAR\u0130H SE\xc7\u0130N"; }, get$dialModeButtonLabel: function() { return "Dairesel se\xe7ici moduna ge\xe7"; }, get$dialogLabel: function() { return "\u0130leti\u015fim kutusu"; }, get$drawerLabel: function() { return "Gezinme men\xfcs\xfc"; }, get$expandedIconTapHint: function() { return "Daralt"; }, get$inputDateModeButtonLabel: function() { return "Giri\u015fe ge\xe7"; }, get$inputTimeModeButtonLabel: function() { return "Metin giri\u015f moduna ge\xe7"; }, get$invalidDateFormatLabel: function() { return "Ge\xe7ersiz bi\xe7im."; }, get$invalidTimeLabel: function() { return "Ge\xe7erli bir saat girin"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 lisans"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount lisans"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Lisanslar"; }, get$modalBarrierDismissLabel: function() { return "Kapat"; }, get$nextMonthTooltip: function() { return "Gelecek ay"; }, get$nextPageTooltip: function() { return "Sonraki sayfa"; }, get$okButtonLabel: function() { return "Tamam"; }, get$openAppDrawerTooltip: function() { return "Gezinme men\xfcs\xfcn\xfc a\xe7"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow-$lastRow / $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow-$lastRow / $rowCount"; }, get$popupMenuLabel: function() { return "Popup men\xfc"; }, get$postMeridiemAbbreviation: function() { return "\xd6S"; }, get$previousMonthTooltip: function() { return "\xd6nceki ay"; }, get$previousPageTooltip: function() { return "\xd6nceki sayfa"; }, get$refreshIndicatorSemanticLabel: function() { return "Yenile"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 karakter kald\u0131"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount karakter kald\u0131"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "A\u015fa\u011f\u0131 ta\u015f\u0131"; }, get$reorderItemToEnd: function() { return "Sona ta\u015f\u0131"; }, get$reorderItemToStart: function() { return "Ba\u015fa ta\u015f\u0131"; }, get$reorderItemUp: function() { return "Yukar\u0131 ta\u015f\u0131"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Y\u0131l\u0131 se\xe7in"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \xf6\u011fe se\xe7ildi"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \xf6\u011fe se\xe7ildi"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Men\xfcy\xfc g\xf6ster"; }, get$tabLabelRaw: function() { return "Sekme $tabIndex / $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "SAAT\u0130 SE\xc7\u0130N"; }, get$timePickerHourLabel: function() { return "Saat"; }, get$timePickerHourModeAnnouncement: function() { return "Saati se\xe7in"; }, get$timePickerInputHelpText: function() { return "SAAT\u0130 G\u0130R\u0130N"; }, get$timePickerMinuteLabel: function() { return "Dakika"; }, get$timePickerMinuteModeAnnouncement: function() { return "Dakikay\u0131 se\xe7in"; } }; Y.MaterialLocalizationUk.prototype = { get$alertDialogLabel: function() { return "\u0421\u043f\u043e\u0432\u0456\u0449\u0435\u043d\u043d\u044f"; }, get$anteMeridiemAbbreviation: function() { return "\u0434\u043f"; }, get$backButtonTooltip: function() { return "\u041d\u0430\u0437\u0430\u0434"; }, get$calendarModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044f"; }, get$cancelButtonLabel: function() { return "\u0421\u041a\u0410\u0421\u0423\u0412\u0410\u0422\u0418"; }, get$collapsedIconTapHint: function() { return "\u0420\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438"; }, get$dateHelpText: function() { return "\u0434\u0434.\u043c\u043c.\u0440\u0440\u0440\u0440"; }, get$dateInputLabel: function() { return "\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u0430\u0442\u0443"; }, get$dateOutOfRangeLabel: function() { return "\u0417\u0430 \u043c\u0435\u0436\u0430\u043c\u0438 \u0434\u0456\u0430\u043f\u0430\u0437\u043e\u043d\u0443."; }, get$datePickerHelpText: function() { return "\u0412\u0418\u0411\u0420\u0410\u0422\u0418 \u0414\u0410\u0422\u0423"; }, get$dialModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0438\u0431\u043e\u0440\u0443 \u043d\u0430 \u0446\u0438\u0444\u0435\u0440\u0431\u043b\u0430\u0442\u0456"; }, get$dialogLabel: function() { return "\u0412\u0456\u043a\u043d\u043e"; }, get$drawerLabel: function() { return "\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"; }, get$expandedIconTapHint: function() { return "\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u0438"; }, get$inputDateModeButtonLabel: function() { return "\u0412\u0432\u0435\u0441\u0442\u0438 \u0432\u0440\u0443\u0447\u043d\u0443"; }, get$inputTimeModeButtonLabel: function() { return "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0446\u0438\u0444\u0440"; }, get$invalidDateFormatLabel: function() { return "\u041d\u0435\u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0444\u043e\u0440\u043c\u0430\u0442."; }, get$invalidTimeLabel: function() { return "\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0447\u0430\u0441"; }, get$licensesPackageDetailTextFew: function() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$licensesPackageDetailTextMany: function() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0439"; }, get$licensesPackageDetailTextOne: function() { return "1 \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u044f"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u043b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u041b\u0456\u0446\u0435\u043d\u0437\u0456\u0457"; }, get$modalBarrierDismissLabel: function() { return "\u0417\u0430\u043a\u0440\u0438\u0442\u0438"; }, get$nextMonthTooltip: function() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u043c\u0456\u0441\u044f\u0446\u044c"; }, get$nextPageTooltip: function() { return "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0437 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow \u0437 \u043f\u0440\u0438\u0431\u043b\u0438\u0437\u043d\u043e $rowCount"; }, get$popupMenuLabel: function() { return "\u0421\u043f\u043b\u0438\u0432\u0430\u044e\u0447\u0435 \u043c\u0435\u043d\u044e"; }, get$postMeridiemAbbreviation: function() { return "\u043f\u043f"; }, get$previousMonthTooltip: function() { return "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043c\u0456\u0441\u044f\u0446\u044c"; }, get$previousPageTooltip: function() { return "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"; }, get$refreshIndicatorSemanticLabel: function() { return "\u041e\u043d\u043e\u0432\u0438\u0442\u0438"; }, get$remainingTextFieldCharacterCountFew: function() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0438"; }, get$remainingTextFieldCharacterCountMany: function() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u0432\u0441\u044f 1 \u0441\u0438\u043c\u0432\u043e\u043b"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0443"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u043d\u0438\u0437"; }, get$reorderItemToEnd: function() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432 \u043a\u0456\u043d\u0435\u0446\u044c"; }, get$reorderItemToStart: function() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043d\u0430 \u043f\u043e\u0447\u0430\u0442\u043e\u043a"; }, get$reorderItemUp: function() { return "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u0433\u043e\u0440\u0443"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0440\u0456\u043a"; }, get$selectedRowCountTitleFew: function() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0438"; }, get$selectedRowCountTitleMany: function() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432"; }, get$selectedRowCountTitleOne: function() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e 1 \u0435\u043b\u0435\u043c\u0435\u043d\u0442"; }, get$selectedRowCountTitleOther: function() { return "\u0412\u0438\u0431\u0440\u0430\u043d\u043e $selectedRowCount \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043c\u0435\u043d\u044e"; }, get$tabLabelRaw: function() { return "\u0412\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "\u0412\u0418\u0411\u0415\u0420\u0406\u0422\u042c \u0427\u0410\u0421"; }, get$timePickerHourLabel: function() { return "\u0413\u043e\u0434\u0438\u043d\u0438"; }, get$timePickerHourModeAnnouncement: function() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0433\u043e\u0434\u0438\u043d\u0438"; }, get$timePickerInputHelpText: function() { return "\u0412\u0412\u0415\u0414\u0406\u0422\u042c \u0427\u0410\u0421"; }, get$timePickerMinuteLabel: function() { return "\u0425\u0432\u0438\u043b\u0438\u043d\u0438"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0445\u0432\u0438\u043b\u0438\u043d\u0438"; } }; Y.MaterialLocalizationUr.prototype = { get$alertDialogLabel: function() { return "\u0627\u0644\u0631\u0679"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "\u067e\u06cc\u0686\u06be\u06d2"; }, get$calendarModeButtonLabel: function() { return "\u06a9\u06cc\u0644\u0646\u0688\u0631 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$cancelButtonLabel: function() { return "\u0645\u0646\u0633\u0648\u062e \u06a9\u0631\u06cc\u06ba"; }, get$collapsedIconTapHint: function() { return "\u067e\u06be\u06cc\u0644\u0627\u0626\u06cc\u06ba"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u062a\u0627\u0631\u06cc\u062e \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$dateOutOfRangeLabel: function() { return "\u062d\u062f \u0633\u06d2 \u0628\u0627\u06c1\u0631\u06d4"; }, get$datePickerHelpText: function() { return "\u062a\u0627\u0631\u06cc\u062e \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$dialModeButtonLabel: function() { return "\u0688\u0627\u0626\u0644 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0646\u0646\u062f\u06c1 \u0648\u0636\u0639 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$dialogLabel: function() { return "\u0688\u0627\u0626\u0644\u0627\u06af"; }, get$drawerLabel: function() { return "\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648"; }, get$expandedIconTapHint: function() { return "\u0633\u06a9\u06cc\u0691\u06cc\u06ba"; }, get$inputDateModeButtonLabel: function() { return "\u0627\u0646 \u067e\u0679 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$inputTimeModeButtonLabel: function() { return "\u0679\u06cc\u06a9\u0633\u0679 \u0627\u0646 \u067e\u0679 \u0648\u0636\u0639 \u067e\u0631 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"; }, get$invalidDateFormatLabel: function() { return "\u063a\u0644\u0637 \u0641\u0627\u0631\u0645\u06cc\u0679\u06d4"; }, get$invalidTimeLabel: function() { return "\u062f\u0631\u0633\u062a \u0648\u0642\u062a \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u0644\u0627\u0626\u0633\u0646\u0633"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u0644\u0627\u0626\u0633\u0646\u0633\u0632"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u0644\u0627\u0626\u0633\u0646\u0633\u0632"; }, get$modalBarrierDismissLabel: function() { return "\u0628\u0631\u062e\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba"; }, get$nextMonthTooltip: function() { return "\u0627\u06af\u0644\u0627 \u0645\u06c1\u06cc\u0646\u06c1"; }, get$nextPageTooltip: function() { return "\u0627\u06af\u0644\u0627 \u0635\u0641\u062d\u06c1"; }, get$okButtonLabel: function() { return "\u0679\u06be\u06cc\u06a9 \u06c1\u06d2"; }, get$openAppDrawerTooltip: function() { return "\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648 \u06a9\u06be\u0648\u0644\u06cc\u06ba"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow \u0627\u0632 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow $rowCount \u0645\u06cc\u06ba \u0633\u06d2 \u062a\u0642\u0631\u06cc\u0628\u0627\u064b"; }, get$popupMenuLabel: function() { return "\u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u0648"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "\u067e\u0686\u06be\u0644\u0627 \u0645\u06c1\u06cc\u0646\u06c1"; }, get$previousPageTooltip: function() { return "\u06af\u0632\u0634\u062a\u06c1 \u0635\u0641\u062d\u06c1"; }, get$refreshIndicatorSemanticLabel: function() { return "\u0631\u06cc\u0641\u0631\u06cc\u0634 \u06a9\u0631\u06cc\u06ba"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 \u062d\u0631\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06d2"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount \u062d\u0631\u0648\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06cc\u06ba"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u0646\u06cc\u0686\u06d2 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemToEnd: function() { return "\u0622\u062e\u0631 \u0645\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemToStart: function() { return "\u0634\u0631\u0648\u0639 \u0645\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$reorderItemUp: function() { return "\u0627\u0648\u067e\u0631 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"; }, get$scriptCategory: function() { return C.ScriptCategory_2; }, get$selectYearSemanticsLabel: function() { return "\u0633\u0627\u0644 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 \u0622\u0626\u0679\u0645 \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u0627 \u06af\u06cc\u0627"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount \u0622\u0626\u0679\u0645\u0632 \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u06d2 \u06af\u0626\u06d2"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u0645\u06cc\u0646\u0648 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"; }, get$tabLabelRaw: function() { return "$tabCount \u0645\u06cc\u06ba \u0633\u06d2 $tabIndex \u0679\u06cc\u0628"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_4; }, get$timePickerDialHelpText: function() { return "\u0648\u0642\u062a \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$timePickerHourLabel: function() { return "\u06af\u06be\u0646\u0679\u06c1"; }, get$timePickerHourModeAnnouncement: function() { return "\u06af\u06be\u0646\u0679\u06d2 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; }, get$timePickerInputHelpText: function() { return "\u0648\u0642\u062a \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"; }, get$timePickerMinuteLabel: function() { return "\u0645\u0646\u0679"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u0645\u0646\u0679 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"; } }; Y.MaterialLocalizationUz.prototype = { get$alertDialogLabel: function() { return "Ogohlantirish"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Orqaga"; }, get$calendarModeButtonLabel: function() { return "Taqvimda ochish"; }, get$cancelButtonLabel: function() { return "BEKOR QILISH"; }, get$collapsedIconTapHint: function() { return "Yoyish"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Sanani kiriting"; }, get$dateOutOfRangeLabel: function() { return "Diapazondan tashqarida."; }, get$datePickerHelpText: function() { return "SANANI TANLANG"; }, get$dialModeButtonLabel: function() { return "Vaqtni burab tanlash rejimi"; }, get$dialogLabel: function() { return "Muloqot oynasi"; }, get$drawerLabel: function() { return "Navigatsiya menyusi"; }, get$expandedIconTapHint: function() { return "Kichraytirish"; }, get$inputDateModeButtonLabel: function() { return "Mustaqil kiritish"; }, get$inputTimeModeButtonLabel: function() { return "Vaqtni yozib tanlash rejimi"; }, get$invalidDateFormatLabel: function() { return "Yaroqsiz format."; }, get$invalidTimeLabel: function() { return "Vaqt xato kiritildi"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 ta litsenziya"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount ta litsenziya"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Litsenziyalar"; }, get$modalBarrierDismissLabel: function() { return "Yopish"; }, get$nextMonthTooltip: function() { return "Keyingi oy"; }, get$nextPageTooltip: function() { return "Keyingi sahifa"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "Navigatsiya menyusini ochish"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow, jami: $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow, jami: $rowCount"; }, get$popupMenuLabel: function() { return "Pop-ap menyusi"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Avvalgi oy"; }, get$previousPageTooltip: function() { return "Avvalgi sahifa"; }, get$refreshIndicatorSemanticLabel: function() { return "Yangilash"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 ta belgi qoldi"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount ta belgi qoldi"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Pastga siljitish"; }, get$reorderItemToEnd: function() { return "Oxiriga siljitish"; }, get$reorderItemToStart: function() { return "Boshiga siljitish"; }, get$reorderItemUp: function() { return "Tepaga siljitish"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Yilni tanlang"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 ta element tanlandi"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount ta element tanlandi"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Menyuni ko\u02bbrsatish"; }, get$tabLabelRaw: function() { return "$tabCount varaqdan $tabIndex"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "VAQTNI TANLANG"; }, get$timePickerHourLabel: function() { return "Soat"; }, get$timePickerHourModeAnnouncement: function() { return "Soatni tanlang"; }, get$timePickerInputHelpText: function() { return "VAQTNI KIRITING"; }, get$timePickerMinuteLabel: function() { return "Daqiqa"; }, get$timePickerMinuteModeAnnouncement: function() { return "Daqiqani tanlang"; } }; Y.MaterialLocalizationVi.prototype = { get$alertDialogLabel: function() { return "Th\xf4ng b\xe1o"; }, get$anteMeridiemAbbreviation: function() { return "S\xc1NG"; }, get$backButtonTooltip: function() { return "Quay l\u1ea1i"; }, get$calendarModeButtonLabel: function() { return "Chuy\u1ec3n sang l\u1ecbch"; }, get$cancelButtonLabel: function() { return "H\u1ee6Y"; }, get$collapsedIconTapHint: function() { return "M\u1edf r\u1ed9ng"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Nh\u1eadp ng\xe0y"; }, get$dateOutOfRangeLabel: function() { return "Ngo\xe0i ph\u1ea1m vi."; }, get$datePickerHelpText: function() { return "CH\u1eccN NG\xc0Y"; }, get$dialModeButtonLabel: function() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 ch\u1ecdn m\u1eb7t \u0111\u1ed3ng h\u1ed3"; }, get$dialogLabel: function() { return "H\u1ed9p tho\u1ea1i"; }, get$drawerLabel: function() { return "Menu di chuy\u1ec3n"; }, get$expandedIconTapHint: function() { return "Thu g\u1ecdn"; }, get$inputDateModeButtonLabel: function() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 nh\u1eadp"; }, get$inputTimeModeButtonLabel: function() { return "Chuy\u1ec3n sang ch\u1ebf \u0111\u1ed9 nh\u1eadp v\u0103n b\u1ea3n"; }, get$invalidDateFormatLabel: function() { return "\u0110\u1ecbnh d\u1ea1ng kh\xf4ng h\u1ee3p l\u1ec7."; }, get$invalidTimeLabel: function() { return "Nh\u1eadp th\u1eddi gian h\u1ee3p l\u1ec7"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 gi\u1ea5y ph\xe9p"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount gi\u1ea5y ph\xe9p"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Gi\u1ea5y ph\xe9p"; }, get$modalBarrierDismissLabel: function() { return "B\u1ecf qua"; }, get$nextMonthTooltip: function() { return "Th\xe1ng sau"; }, get$nextPageTooltip: function() { return "Trang ti\u1ebfp theo"; }, get$okButtonLabel: function() { return "OK"; }, get$openAppDrawerTooltip: function() { return "M\u1edf menu di chuy\u1ec3n"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow trong t\u1ed5ng s\u1ed1 $rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow trong t\u1ed5ng s\u1ed1 kho\u1ea3ng $rowCount"; }, get$popupMenuLabel: function() { return "Menu b\u1eadt l\xean"; }, get$postMeridiemAbbreviation: function() { return "CHI\u1ec0U"; }, get$previousMonthTooltip: function() { return "Th\xe1ng tr\u01b0\u1edbc"; }, get$previousPageTooltip: function() { return "Trang tr\u01b0\u1edbc"; }, get$refreshIndicatorSemanticLabel: function() { return "L\xe0m m\u1edbi"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "Co\u0300n la\u0323i 1 k\xfd t\u1ef1"; }, get$remainingTextFieldCharacterCountOther: function() { return "Co\u0300n la\u0323i $remainingCount k\xfd t\u1ef1"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "Di chuy\xea\u0309n xu\xf4\u0301ng"; }, get$reorderItemToEnd: function() { return "Di chuy\u1ec3n xu\u1ed1ng cu\u1ed1i danh s\xe1ch"; }, get$reorderItemToStart: function() { return "Di chuy\u1ec3n l\xean \u0111\u1ea7u danh s\xe1ch"; }, get$reorderItemUp: function() { return "Di chuy\u1ec3n l\xean"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Ch\u1ecdn n\u0103m"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u0110\xe3 ch\u1ecdn 1 m\u1ee5c"; }, get$selectedRowCountTitleOther: function() { return "\u0110\xe3 ch\u1ecdn $selectedRowCount m\u1ee5c"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Hi\u1ec3n th\u1ecb menu"; }, get$tabLabelRaw: function() { return "Tab $tabIndex trong t\u1ed5ng s\u1ed1 $tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_0; }, get$timePickerDialHelpText: function() { return "CH\u1eccN TH\u1edcI GIAN"; }, get$timePickerHourLabel: function() { return "Gi\u1edd"; }, get$timePickerHourModeAnnouncement: function() { return "Ch\u1ecdn gi\u1edd"; }, get$timePickerInputHelpText: function() { return "NH\u1eacP TH\u1edcI GIAN"; }, get$timePickerMinuteLabel: function() { return "Ph\xfat"; }, get$timePickerMinuteModeAnnouncement: function() { return "Ch\u1ecdn ph\xfat"; } }; Y.MaterialLocalizationZh.prototype = { get$alertDialogLabel: function() { return "\u63d0\u9192"; }, get$anteMeridiemAbbreviation: function() { return "\u4e0a\u5348"; }, get$backButtonTooltip: function() { return "\u8fd4\u56de"; }, get$calendarModeButtonLabel: function() { return "\u5207\u6362\u5230\u65e5\u5386\u6a21\u5f0f"; }, get$cancelButtonLabel: function() { return "\u53d6\u6d88"; }, get$collapsedIconTapHint: function() { return "\u5c55\u5f00"; }, get$dateHelpText: function() { return "yyyy/mm/dd"; }, get$dateInputLabel: function() { return "\u8f93\u5165\u65e5\u671f"; }, get$dateOutOfRangeLabel: function() { return "\u8d85\u51fa\u8303\u56f4\u3002"; }, get$datePickerHelpText: function() { return "\u9009\u62e9\u65e5\u671f"; }, get$dialModeButtonLabel: function() { return "\u5207\u6362\u5230\u8868\u76d8\u9009\u62e9\u5668\u6a21\u5f0f"; }, get$dialogLabel: function() { return "\u5bf9\u8bdd\u6846"; }, get$drawerLabel: function() { return "\u5bfc\u822a\u83dc\u5355"; }, get$expandedIconTapHint: function() { return "\u6536\u8d77"; }, get$inputDateModeButtonLabel: function() { return "\u5207\u6362\u5230\u8f93\u5165\u6a21\u5f0f"; }, get$inputTimeModeButtonLabel: function() { return "\u5207\u6362\u5230\u6587\u672c\u8f93\u5165\u6a21\u5f0f"; }, get$invalidDateFormatLabel: function() { return "\u683c\u5f0f\u65e0\u6548\u3002"; }, get$invalidTimeLabel: function() { return "\u8bf7\u8f93\u5165\u6709\u6548\u7684\u65f6\u95f4"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "1 \u4efd\u8bb8\u53ef"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u4efd\u8bb8\u53ef"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "\u8bb8\u53ef"; }, get$modalBarrierDismissLabel: function() { return "\u5173\u95ed"; }, get$nextMonthTooltip: function() { return "\u4e0b\u4e2a\u6708"; }, get$nextPageTooltip: function() { return "\u4e0b\u4e00\u9875"; }, get$okButtonLabel: function() { return "\u786e\u5b9a"; }, get$openAppDrawerTooltip: function() { return "\u6253\u5f00\u5bfc\u822a\u83dc\u5355"; }, get$pageRowsInfoTitleRaw: function() { return "\u7b2c $firstRow-$lastRow \u884c\uff08\u5171 $rowCount \u884c\uff09"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u7b2c $firstRow-$lastRow \u884c\uff08\u5171\u7ea6 $rowCount \u884c\uff09"; }, get$popupMenuLabel: function() { return "\u5f39\u51fa\u83dc\u5355"; }, get$postMeridiemAbbreviation: function() { return "\u4e0b\u5348"; }, get$previousMonthTooltip: function() { return "\u4e0a\u4e2a\u6708"; }, get$previousPageTooltip: function() { return "\u4e0a\u4e00\u9875"; }, get$refreshIndicatorSemanticLabel: function() { return "\u5237\u65b0"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "\u8fd8\u53ef\u8f93\u5165 1 \u4e2a\u5b57\u7b26"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u8fd8\u53ef\u8f93\u5165 $remainingCount \u4e2a\u5b57\u7b26"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return "TBD"; }, get$reorderItemDown: function() { return "\u4e0b\u79fb"; }, get$reorderItemToEnd: function() { return "\u79fb\u5230\u672b\u5c3e"; }, get$reorderItemToStart: function() { return "\u79fb\u5230\u5f00\u5934"; }, get$reorderItemUp: function() { return "\u4e0a\u79fb"; }, get$scriptCategory: function() { return C.ScriptCategory_1; }, get$selectYearSemanticsLabel: function() { return "\u9009\u62e9\u5e74\u4efd"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "\u5df2\u9009\u62e9 1 \u9879\u5185\u5bb9"; }, get$selectedRowCountTitleOther: function() { return "\u5df2\u9009\u62e9 $selectedRowCount \u9879\u5185\u5bb9"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "\u663e\u793a\u83dc\u5355"; }, get$tabLabelRaw: function() { return "\u7b2c $tabIndex \u4e2a\u6807\u7b7e\uff0c\u5171 $tabCount \u4e2a"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_5; }, get$timePickerDialHelpText: function() { return "\u9009\u62e9\u65f6\u95f4"; }, get$timePickerHourLabel: function() { return "\u5c0f\u65f6"; }, get$timePickerHourModeAnnouncement: function() { return "\u9009\u62e9\u5c0f\u65f6"; }, get$timePickerInputHelpText: function() { return "\u8f93\u5165\u65f6\u95f4"; }, get$timePickerMinuteLabel: function() { return "\u5206\u949f"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u9009\u62e9\u5206\u949f"; } }; Y.MaterialLocalizationZhHans.prototype = {}; Y.MaterialLocalizationZhHant.prototype = { get$alertDialogLabel: function() { return "\u901a\u77e5"; }, get$calendarModeButtonLabel: function() { return "\u5207\u63db\u81f3\u65e5\u66c6"; }, get$collapsedIconTapHint: function() { return "\u5c55\u958b"; }, get$dateHelpText: function() { return "dd/mm/yyyy"; }, get$dateInputLabel: function() { return "\u8f38\u5165\u65e5\u671f"; }, get$dateOutOfRangeLabel: function() { return "\u8d85\u51fa\u7bc4\u570d\u3002"; }, get$datePickerHelpText: function() { return "\u9078\u53d6\u65e5\u671f"; }, get$dialModeButtonLabel: function() { return "\u5207\u63db\u81f3\u9418\u9762\u9ede\u9078\u5668\u6a21\u5f0f"; }, get$dialogLabel: function() { return "\u5c0d\u8a71\u65b9\u584a"; }, get$drawerLabel: function() { return "\u5c0e\u89bd\u9078\u55ae"; }, get$expandedIconTapHint: function() { return "\u6536\u5408"; }, get$inputDateModeButtonLabel: function() { return "\u5207\u63db\u81f3\u8f38\u5165"; }, get$inputTimeModeButtonLabel: function() { return "\u5207\u63db\u81f3\u6587\u5b57\u8f38\u5165\u6a21\u5f0f"; }, get$invalidDateFormatLabel: function() { return "\u683c\u5f0f\u7121\u6548\u3002"; }, get$invalidTimeLabel: function() { return "\u8acb\u8f38\u5165\u6709\u6548\u7684\u6642\u9593"; }, get$licensesPackageDetailTextOne: function() { return "1 \u9805\u6388\u6b0a"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u9805\u6388\u6b0a"; }, get$licensesPageTitle: function() { return "\u6388\u6b0a"; }, get$modalBarrierDismissLabel: function() { return "\u62d2\u7d55"; }, get$nextMonthTooltip: function() { return "\u4e0b\u500b\u6708"; }, get$nextPageTooltip: function() { return "\u4e0b\u4e00\u9801"; }, get$okButtonLabel: function() { return "\u78ba\u5b9a"; }, get$openAppDrawerTooltip: function() { return "\u958b\u555f\u5c0e\u89bd\u9078\u55ae"; }, get$pageRowsInfoTitleRaw: function() { return "\u7b2c $firstRow \u81f3 $lastRow \u5217\uff0c\u5171 $rowCount \u5217"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u7b2c $firstRow \u81f3 $lastRow \u5217\uff0c\u5171\u7d04 $rowCount \u5217"; }, get$popupMenuLabel: function() { return "\u5f48\u51fa\u5f0f\u9078\u55ae"; }, get$previousMonthTooltip: function() { return "\u4e0a\u500b\u6708"; }, get$previousPageTooltip: function() { return "\u4e0a\u4e00\u9801"; }, get$refreshIndicatorSemanticLabel: function() { return "\u91cd\u65b0\u6574\u7406"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u5c1a\u9918 1 \u500b\u5b57\u5143"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u5c1a\u9918 $remainingCount \u500b\u5b57\u5143"; }, get$reorderItemDown: function() { return "\u5411\u4e0b\u79fb"; }, get$reorderItemToEnd: function() { return "\u79fb\u5230\u6700\u5f8c"; }, get$reorderItemToStart: function() { return "\u79fb\u5230\u958b\u982d"; }, get$reorderItemUp: function() { return "\u5411\u4e0a\u79fb"; }, get$selectYearSemanticsLabel: function() { return "\u63c0\u5e74\u4efd"; }, get$selectedRowCountTitleOne: function() { return "\u5df2\u9078\u53d6 1 \u500b\u9805\u76ee"; }, get$selectedRowCountTitleOther: function() { return "\u5df2\u9078\u53d6 $selectedRowCount \u500b\u9805\u76ee"; }, get$showMenuTooltip: function() { return "\u986f\u793a\u9078\u55ae"; }, get$tabLabelRaw: function() { return "\u7b2c $tabIndex \u500b\u6a19\u7c64\uff0c\u7e3d\u5171 $tabCount \u500b"; }, get$timePickerDialHelpText: function() { return "\u9078\u53d6\u6642\u9593"; }, get$timePickerHourLabel: function() { return "\u5c0f\u6642"; }, get$timePickerHourModeAnnouncement: function() { return "\u63c0\u9078\u5c0f\u6642"; }, get$timePickerInputHelpText: function() { return "\u8f38\u5165\u6642\u9593"; }, get$timePickerMinuteLabel: function() { return "\u5206\u9418"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u63c0\u9078\u5206\u9418"; } }; Y.MaterialLocalizationZhHantHk.prototype = {}; Y.MaterialLocalizationZhHantTw.prototype = { get$dialModeButtonLabel: function() { return "\u5207\u63db\u81f3\u9418\u9762\u6311\u9078\u5668\u6a21\u5f0f"; }, get$licensesPackageDetailTextOne: function() { return "1 \u500b\u6388\u6b0a"; }, get$timePickerHourLabel: function() { return "\u6642"; }, get$timePickerMinuteLabel: function() { return "\u5206"; }, get$licensesPackageDetailTextOther: function() { return "$licenseCount \u500b\u6388\u6b0a"; }, get$calendarModeButtonLabel: function() { return "\u5207\u63db\u5230\u65e5\u66c6\u6a21\u5f0f"; }, get$inputDateModeButtonLabel: function() { return "\u5207\u63db\u5230\u8f38\u5165\u6a21\u5f0f"; }, get$selectYearSemanticsLabel: function() { return "\u9078\u53d6\u5e74\u4efd"; }, get$dateHelpText: function() { return "yyyy/mm/dd"; }, get$tabLabelRaw: function() { return "\u7b2c $tabIndex \u500b\u5206\u9801 (\u5171 $tabCount \u500b)"; }, get$modalBarrierDismissLabel: function() { return "\u95dc\u9589"; }, get$pageRowsInfoTitleRaw: function() { return "\u7b2c $firstRow - $lastRow \u5217 (\u7e3d\u5171 $rowCount \u5217)"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "\u7b2c $firstRow - $lastRow \u5217 (\u7e3d\u5171\u7d04 $rowCount \u5217)"; }, get$timePickerHourModeAnnouncement: function() { return "\u9078\u53d6\u5c0f\u6642\u6578"; }, get$timePickerMinuteModeAnnouncement: function() { return "\u9078\u53d6\u5206\u9418\u6578"; }, get$alertDialogLabel: function() { return "\u5feb\u8a0a"; }, get$reorderItemToStart: function() { return "\u79fb\u81f3\u958b\u982d"; }, get$reorderItemToEnd: function() { return "\u79fb\u81f3\u7d50\u5c3e"; }, get$remainingTextFieldCharacterCountOne: function() { return "\u9084\u53ef\u8f38\u5165 1 \u500b\u5b57\u5143"; }, get$remainingTextFieldCharacterCountOther: function() { return "\u9084\u53ef\u8f38\u5165 $remainingCount \u500b\u5b57\u5143"; } }; Y.MaterialLocalizationZu.prototype = { get$alertDialogLabel: function() { return "Isexwayiso"; }, get$anteMeridiemAbbreviation: function() { return "AM"; }, get$backButtonTooltip: function() { return "Emuva"; }, get$calendarModeButtonLabel: function() { return "Shintshela kukhalenda"; }, get$cancelButtonLabel: function() { return "KHANSELA"; }, get$collapsedIconTapHint: function() { return "Nweba"; }, get$dateHelpText: function() { return "mm/dd/yyyy"; }, get$dateInputLabel: function() { return "Faka idethi"; }, get$dateOutOfRangeLabel: function() { return "Ikude kubanga."; }, get$datePickerHelpText: function() { return "KHETHA IDETHI"; }, get$dialModeButtonLabel: function() { return "Shintshela kwimodi yesikhi sokudayela"; }, get$dialogLabel: function() { return "Ingxoxo"; }, get$drawerLabel: function() { return "Imenyu yokuzulazula"; }, get$expandedIconTapHint: function() { return "Goqa"; }, get$inputDateModeButtonLabel: function() { return "Shintshela kokokufaka"; }, get$inputTimeModeButtonLabel: function() { return "Shintshela kwimodi yokufaka yombhalo"; }, get$invalidDateFormatLabel: function() { return "Ifomethi engavumelekile."; }, get$invalidTimeLabel: function() { return "Faka igama elivumelekile"; }, get$licensesPackageDetailTextFew: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextOne: function() { return "ilayisense e-1"; }, get$licensesPackageDetailTextOther: function() { return "amalayisense angu-$licenseCount"; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextZero: function() { return "No licenses"; }, get$licensesPageTitle: function() { return "Amalayisense"; }, get$modalBarrierDismissLabel: function() { return "Cashisa"; }, get$nextMonthTooltip: function() { return "Inyanga ezayo"; }, get$nextPageTooltip: function() { return "Ikhasi elilandelayo"; }, get$okButtonLabel: function() { return "KULUNGILE"; }, get$openAppDrawerTooltip: function() { return "Vula imenyu yokuzulazula"; }, get$pageRowsInfoTitleRaw: function() { return "$firstRow\u2013$lastRow kokungu-$rowCount"; }, get$pageRowsInfoTitleApproximateRaw: function() { return "$firstRow\u2013$lastRow cishe kokungu-$rowCount"; }, get$popupMenuLabel: function() { return "Imenyu ye-popup"; }, get$postMeridiemAbbreviation: function() { return "PM"; }, get$previousMonthTooltip: function() { return "Inyanga edlule"; }, get$previousPageTooltip: function() { return "Ikhasi elidlule"; }, get$refreshIndicatorSemanticLabel: function() { return "Vuselela"; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return "1 uhlamvu olusele"; }, get$remainingTextFieldCharacterCountOther: function() { return "$remainingCount izinhlamvu ezisele"; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$reorderItemDown: function() { return "Iya phansi"; }, get$reorderItemToEnd: function() { return "Yisa ekugcineni"; }, get$reorderItemToStart: function() { return "Yisa ekuqaleni"; }, get$reorderItemUp: function() { return "Iya phezulu"; }, get$scriptCategory: function() { return C.ScriptCategory_0; }, get$selectYearSemanticsLabel: function() { return "Khetha unyaka"; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, get$selectedRowCountTitleOne: function() { return "1 into ekhethiwe"; }, get$selectedRowCountTitleOther: function() { return "$selectedRowCount izinto ezikhethiwe"; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleZero: function() { return null; }, get$showMenuTooltip: function() { return "Bonisa imenyu"; }, get$tabLabelRaw: function() { return "Ithebhu $tabIndex kwangu-$tabCount"; }, get$timeOfDayFormatRaw: function() { return C.TimeOfDayFormat_3; }, get$timePickerDialHelpText: function() { return "KHETHA ISIKHATHI"; }, get$timePickerHourLabel: function() { return "Ihora"; }, get$timePickerHourModeAnnouncement: function() { return "Khetha amahora"; }, get$timePickerInputHelpText: function() { return "FAKA ISIKHATHI"; }, get$timePickerMinuteLabel: function() { return "Iminithi"; }, get$timePickerMinuteModeAnnouncement: function() { return "Khetha amaminithi"; } }; U.GlobalMaterialLocalizations.prototype = { formatHour$2$alwaysUse24HourFormat: function(timeOfDay, alwaysUse24HourFormat) { var t1, hour, _this = this; switch (Z.hourFormat(_this.timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat))) { case C.HourFormat_0: return _this._twoDigitZeroPaddedFormat.format$1(timeOfDay.hour); case C.HourFormat_1: return _this._decimalFormat0.format$1(timeOfDay.hour); case C.HourFormat_2: t1 = timeOfDay.hour; hour = t1 - ((t1 < 12 ? C.DayPeriod_0 : C.DayPeriod_1) === C.DayPeriod_0 ? 0 : 12); t1 = hour === 0 ? 12 : hour; return _this._decimalFormat0.format$1(t1); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, formatMinute$1: function(timeOfDay) { return this._twoDigitZeroPaddedFormat.format$1(timeOfDay.minute); }, formatYear$1: function(date) { return this._fullYearFormat0.format$1(date); }, formatCompactDate$1: function(date) { return this._compactDateFormat.format$1(date); }, formatMediumDate$1: function(date) { return this._mediumDateFormat0.format$1(date); }, formatFullDate$1: function(date) { return this._longDateFormat.format$1(date); }, formatMonthYear$1: function(date) { return this._yearMonthFormat.format$1(date); }, parseCompactDate$1: function(inputString) { var t1, exception; try { t1 = inputString != null ? this._compactDateFormat._date_format$_parse$3$strict$utc(inputString, true, false) : null; return t1; } catch (exception) { if (type$.FormatException._is(H.unwrapException(exception))) return null; else throw exception; } }, get$narrowWeekdays: function() { return this._longDateFormat.get$dateSymbols().NARROWWEEKDAYS; }, get$firstDayOfWeekIndex: function() { return C.JSInt_methods.$mod(this._longDateFormat.get$dateSymbols().FIRSTDAYOFWEEK + 1, 7); }, formatDecimal$1: function(number) { return this._decimalFormat0.format$1(number); }, formatTimeOfDay$2$alwaysUse24HourFormat: function(timeOfDay, alwaysUse24HourFormat) { var _this = this, hour = _this.formatHour$2$alwaysUse24HourFormat(timeOfDay, alwaysUse24HourFormat), minute = _this._twoDigitZeroPaddedFormat.format$1(timeOfDay.minute); switch (_this.timeOfDayFormat$1$alwaysUse24HourFormat(alwaysUse24HourFormat)) { case C.TimeOfDayFormat_4: return hour + ":" + minute + " " + _this._material_localizations0$_formatDayPeriod$1(timeOfDay); case C.TimeOfDayFormat_3: case C.TimeOfDayFormat_0: return hour + ":" + minute; case C.TimeOfDayFormat_1: return hour + "." + minute; case C.TimeOfDayFormat_5: return _this._material_localizations0$_formatDayPeriod$1(timeOfDay) + " " + hour + ":" + minute; case C.TimeOfDayFormat_2: return hour + " h " + minute; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _material_localizations0$_formatDayPeriod$1: function(timeOfDay) { switch (timeOfDay.hour < 12 ? C.DayPeriod_0 : C.DayPeriod_1) { case C.DayPeriod_0: return this.get$anteMeridiemAbbreviation(); case C.DayPeriod_1: return this.get$postMeridiemAbbreviation(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, pageRowsInfoTitle$4: function(firstRow, lastRow, rowCount, rowCountIsApproximate) { var t1, text = rowCountIsApproximate ? this.get$pageRowsInfoTitleApproximateRaw() : null; if (text == null) text = this.get$pageRowsInfoTitleRaw(); t1 = this._decimalFormat0; return C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(text, "$firstRow", t1.format$1(firstRow)), "$lastRow", t1.format$1(lastRow)), "$rowCount", t1.format$1(rowCount)); }, tabLabel$2$tabCount$tabIndex: function(tabCount, tabIndex) { var t1 = this._decimalFormat0; return C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(this.get$tabLabelRaw(), "$tabIndex", t1.format$1(tabIndex)), "$tabCount", t1.format$1(tabCount)); }, get$selectedRowCountTitleZero: function() { return null; }, get$selectedRowCountTitleOne: function() { return null; }, get$selectedRowCountTitleTwo: function() { return null; }, get$selectedRowCountTitleFew: function() { return null; }, get$selectedRowCountTitleMany: function() { return null; }, selectedRowCountTitle$1: function(selectedRowCount) { var _this = this, t1 = _this.get$selectedRowCountTitleZero(), t2 = _this.get$selectedRowCountTitleOne(), t3 = _this.get$selectedRowCountTitleTwo(); return C.JSString_methods.replaceFirst$2(T.Intl_pluralLogic(selectedRowCount, _this.get$selectedRowCountTitleFew(), _this._localeName, _this.get$selectedRowCountTitleMany(), t2, _this.get$selectedRowCountTitleOther(), t3, t1), "$selectedRowCount", _this._decimalFormat0.format$1(selectedRowCount)); }, timeOfDayFormat$1$alwaysUse24HourFormat: function(alwaysUse24HourFormat) { if (alwaysUse24HourFormat) return U._get24HourVersionOf(this.get$timeOfDayFormatRaw()); return this.get$timeOfDayFormatRaw(); }, get$licensesPackageDetailTextZero: function() { return null; }, get$licensesPackageDetailTextOne: function() { return null; }, get$licensesPackageDetailTextTwo: function() { return null; }, get$licensesPackageDetailTextMany: function() { return null; }, get$licensesPackageDetailTextFew: function() { return null; }, licensesPackageDetailText$1: function(licenseCount) { var _this = this, t1 = _this.get$licensesPackageDetailTextZero(), t2 = _this.get$licensesPackageDetailTextOne(), t3 = _this.get$licensesPackageDetailTextTwo(), t4 = _this.get$licensesPackageDetailTextMany(); return C.JSString_methods.replaceFirst$2(T.Intl_pluralLogic(licenseCount, _this.get$licensesPackageDetailTextFew(), _this._localeName, t4, t2, _this.get$licensesPackageDetailTextOther(), t3, t1), "$licenseCount", _this._decimalFormat0.format$1(licenseCount)); }, get$remainingTextFieldCharacterCountZero: function() { return null; }, get$remainingTextFieldCharacterCountOne: function() { return null; }, get$remainingTextFieldCharacterCountTwo: function() { return null; }, get$remainingTextFieldCharacterCountMany: function() { return null; }, get$remainingTextFieldCharacterCountFew: function() { return null; }, remainingTextFieldCharacterCount$1: function(remainingCount) { var _this = this, t1 = _this.get$remainingTextFieldCharacterCountZero(), t2 = _this.get$remainingTextFieldCharacterCountOne(), t3 = _this.get$remainingTextFieldCharacterCountTwo(), t4 = _this.get$remainingTextFieldCharacterCountMany(); return C.JSString_methods.replaceFirst$2(T.Intl_pluralLogic(remainingCount, _this.get$remainingTextFieldCharacterCountFew(), _this._localeName, t4, t2, _this.get$remainingTextFieldCharacterCountOther(), t3, t1), "$remainingCount", _this._decimalFormat0.format$1(remainingCount)); }, $isMaterialLocalizations: 1 }; U._MaterialLocalizationsDelegate0.prototype = { isSupported$1: function(locale) { return $.$get$kMaterialSupportedLanguages().contains$1(0, locale.get$languageCode(locale)); }, load$1: function(_, locale) { return $._MaterialLocalizationsDelegate__loadedTranslations.putIfAbsent$2(0, locale, new U._MaterialLocalizationsDelegate_load_closure(locale)); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "GlobalMaterialLocalizations.delegate(" + $.$get$kMaterialSupportedLanguages()._collection$_length + " locales)"; } }; U._MaterialLocalizationsDelegate_load_closure.prototype = { call$0: function() { var t1, localeName, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat, _null = null; L.loadDateIntlDataIfNotLoaded(); t1 = this.locale; localeName = X.canonicalizedLocale(J.toString$0$(t1)); if (A.DateFormat_localeExists(localeName)) { fullYearFormat = A.DateFormat$y(localeName); compactDateFormat = A.DateFormat$yMd(localeName); shortDateFormat = A.DateFormat$yMMMd(localeName); mediumDateFormat = A.DateFormat$MMMEd(localeName); longDateFormat = A.DateFormat$yMMMMEEEEd(localeName); yearMonthFormat = A.DateFormat$yMMMM(localeName); shortMonthDayFormat = A.DateFormat$MMMd(localeName); } else if (A.DateFormat_localeExists(t1.get$languageCode(t1))) { fullYearFormat = A.DateFormat$y(t1.get$languageCode(t1)); compactDateFormat = A.DateFormat$yMd(t1.get$languageCode(t1)); shortDateFormat = A.DateFormat$yMMMd(t1.get$languageCode(t1)); mediumDateFormat = A.DateFormat$MMMEd(t1.get$languageCode(t1)); longDateFormat = A.DateFormat$yMMMMEEEEd(t1.get$languageCode(t1)); yearMonthFormat = A.DateFormat$yMMMM(t1.get$languageCode(t1)); shortMonthDayFormat = A.DateFormat$MMMd(t1.get$languageCode(t1)); } else { fullYearFormat = A.DateFormat$y(_null); compactDateFormat = A.DateFormat$yMd(_null); shortDateFormat = A.DateFormat$yMMMd(_null); mediumDateFormat = A.DateFormat$MMMEd(_null); longDateFormat = A.DateFormat$yMMMMEEEEd(_null); yearMonthFormat = A.DateFormat$yMMMM(_null); shortMonthDayFormat = A.DateFormat$MMMd(_null); } if (S.NumberFormat_localeExists(localeName)) { decimalFormat = S.NumberFormat_NumberFormat$decimalPattern(localeName); twoDigitZeroPaddedFormat = S.NumberFormat_NumberFormat("00", localeName); } else if (S.NumberFormat_localeExists(t1.get$languageCode(t1))) { decimalFormat = S.NumberFormat_NumberFormat$decimalPattern(t1.get$languageCode(t1)); twoDigitZeroPaddedFormat = S.NumberFormat_NumberFormat("00", t1.get$languageCode(t1)); } else { decimalFormat = S.NumberFormat_NumberFormat$decimalPattern(_null); twoDigitZeroPaddedFormat = S.NumberFormat_NumberFormat("00", _null); } t1 = Y.getMaterialTranslation(t1, fullYearFormat, compactDateFormat, shortDateFormat, mediumDateFormat, longDateFormat, yearMonthFormat, shortMonthDayFormat, decimalFormat, twoDigitZeroPaddedFormat); t1.toString; return new O.SynchronousFuture(t1, type$.SynchronousFuture_MaterialLocalizations); }, $signature: 1494 }; L.loadDateIntlDataIfNotLoaded_closure.prototype = { call$2: function(locale, data) { var countryCode, countryCode0, symbols, t2, codes = locale.split("_"), t1 = codes.length; if (t1 === 2) { countryCode = codes[1]; countryCode = J.get$length$asx(countryCode) < 4 ? countryCode : null; } else if (t1 === 3) { countryCode = codes[1]; t1 = J.get$length$asx(countryCode); countryCode0 = codes[2]; countryCode = t1 < J.get$length$asx(countryCode0) ? countryCode : countryCode0; } else countryCode = null; t1 = codes[0]; locale = J.$add$ansx(t1, countryCode != null ? "_" + countryCode : ""); t1 = this.initializedLocales; if (t1.contains$1(0, locale)) return; t1.add$1(0, locale); symbols = B.DateSymbols_DateSymbols$deserializeFromMap(data); t1 = C.Map_2zurD.$index(0, locale); if ($.$get$_dateTimeSymbols() instanceof X.UninitializedLocaleData) { $._dateTimeSymbols = X._emptySymbols(); $.lastDateSymbolLocale = $.cachedDateSymbols = null; } if ($.$get$dateTimePatterns() instanceof X.UninitializedLocaleData) $.dateTimePatterns = X._emptyPatterns(); if (t1 == null) H.throwExpression(P.ArgumentError$("Missing DateTime formatting patterns")); t2 = symbols.NAME; if (locale !== t2) H.throwExpression(P.ArgumentError$value(H.setRuntimeTypeInfo([locale, t2], type$.JSArray_nullable_String), "Locale does not match symbols.NAME", null)); J.$indexSet$ax($.$get$_dateTimeSymbols(), t2, symbols); J.$indexSet$ax($.$get$dateTimePatterns(), t2, t1); }, $signature: 1477 }; B.GlobalWidgetsLocalizations.prototype = { get$textDirection: function(_) { var t1 = this.__GlobalWidgetsLocalizations__textDirection; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_textDirection")) : t1; }, $isWidgetsLocalizations: 1 }; B._WidgetsLocalizationsDelegate0.prototype = { isSupported$1: function(locale) { return true; }, load$1: function(_, locale) { var t1 = new B.GlobalWidgetsLocalizations(locale); t1.__GlobalWidgetsLocalizations__textDirection = C.JSArray_methods.contains$1(C.List_SL9, locale.get$languageCode(locale).toLowerCase()) ? C.TextDirection_0 : C.TextDirection_1; return new O.SynchronousFuture(t1, type$.SynchronousFuture_WidgetsLocalizations); }, shouldReload$1: function(old) { return false; }, toString$0: function(_) { return "GlobalWidgetsLocalizations.delegate(all locales)"; } }; O.StoreProvider.prototype = { updateShouldNotify$1: function(oldWidget) { return this._store !== oldWidget._store; } }; O.StoreConnector.prototype = { build$1: function(_, context) { var _this = this, t1 = _this.$ti; return new O._StoreStreamListener(_this.builder, _this.converter, O.StoreProvider_of(context, t1._precomputed1), true, false, _this.onInit, _this.onDispose, null, _this.onWillChange, _this.onDidChange, _this.onInitialBuild, null, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_StoreStreamListener<1,2>")); } }; O.StoreBuilder.prototype = { build$1: function(_, context) { var _null = null, t1 = this.$ti, t2 = t1._precomputed1; return O.StoreConnector$(this.builder, H.instantiate1(O.flutter_redux_StoreBuilder__identity$closure(), t2), _null, _null, this.onInit, _null, _null, true, t2, t1._eval$1("Store<1>")); } }; O._StoreStreamListener.prototype = { createState$0: function() { var t1 = this.$ti; return new O._StoreStreamListenerState(C._StateLifecycle_0, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_StoreStreamListenerState<1,2>")); } }; O._StoreStreamListenerState.prototype = { initState$0: function() { var _this = this, t1 = _this._widget, t2 = t1.onInit; if (t2 != null) t2.call$1(t1.store); _this._computeLatestValue$0(); _this._widget.toString; _this._createStream$0(); _this.super$State$initState(); }, dispose$0: function(_) { this._widget.toString; this.super$State$dispose(0); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this._computeLatestValue$0(); if (_this._widget.store !== oldWidget.store) _this._createStream$0(); _this.super$State$didUpdateWidget(oldWidget); }, _computeLatestValue$0: function() { var e, s, t1, t2, exception, _this = this; try { _this._latestError = null; t1 = _this._widget; t2 = t1.store; _this._latestValue = t1.converter.call$1(t2); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); _this._latestValue = null; _this._latestError = new O.ConverterError(e, s); } }, build$1: function(_, context) { var t1, _this = this; _this._widget.toString; t1 = _this.___StoreStreamListenerState__stream; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_stream")); t1 = B.StreamBuilder$(new O._StoreStreamListenerState_build_closure(_this), null, t1, _this.$ti._rest[1]); return t1; }, _mapConverter$1: function(state) { var t1 = this._widget, t2 = t1.store; return t1.converter.call$1(t2); }, _whereDistinct$1: function(vm) { this._widget.toString; return true; }, _ignoreChange$1: function(state) { this._widget.toString; return true; }, _createStream$0: function() { var _this = this, t1 = _this._widget.store._changeController, t2 = H._instanceType(t1)._eval$1("_BroadcastStream<1>"), t3 = t2._eval$1("_WhereStream"), t4 = _this.$ti._rest[1], t5 = t3._eval$1("@")._bind$1(t4)._eval$1("_MapStream<1,2>"); _this.___StoreStreamListenerState__stream = P._StreamHandlerTransformer$(_this.get$_flutter_redux$_handleChange(), null, _this.get$_handleError(), t4, t4).bind$1(new P._WhereStream(_this.get$_whereDistinct(), new P._MapStream(_this.get$_mapConverter(), new P._WhereStream(_this.get$_ignoreChange(), new P._BroadcastStream(t1, t2), t3), t5), t5._eval$1("_WhereStream"))); }, _flutter_redux$_handleChange$2: function(vm, sink) { var t1; this._latestError = null; this._widget.toString; this._latestValue = vm; t1 = sink._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_add(0, vm); }, _handleError$3: function(error, stackTrace, sink) { this._latestValue = null; this._latestError = new O.ConverterError(error, stackTrace); sink.addError$2(error, stackTrace); } }; O._StoreStreamListenerState_build_closure.prototype = { call$2: function(context, snapshot) { var t1 = this.$this, t2 = t1._latestError; if (t2 != null) throw H.wrapException(t2); t2 = t1._widget; t1 = t1._latestValue; return t2.builder.call$2(context, t1); }, "call*": "call$2", $requiredArgCount: 2, $signature: function() { return this.$this.$ti._eval$1("Widget(BuildContext,AsyncSnapshot<2>)"); } }; O.StoreProviderError.prototype = { toString$0: function(_) { return "Error: No " + H.createRuntimeType(this.$ti._precomputed1).toString$0(0) + " found. To fix, please try:\n \n * Wrapping your MaterialApp with the StoreProvider, \n rather than an individual Route\n * Providing full type information to your Store, \n StoreProvider and StoreConnector\n * Ensure you are using consistent and complete imports. \n E.g. always use `import 'package:my_app/app_state.dart';\n \nIf none of these solutions work, please file a bug at:\nhttps://github.com/brianegan/flutter_redux/issues/new\n "; } }; O.ConverterError.prototype = { toString$0: function(_) { return "Converter Function Error: " + H.S(this.error) + "\n \n" + H.S(this.stackTrace) + ";\n"; }, get$stackTrace: function() { return this.stackTrace; } }; A.SlidableRenderingMode.prototype = { toString$0: function(_) { return this._slidable$_name; } }; A.SlideActionType.prototype = { toString$0: function(_) { return this._slidable$_name; } }; A.SlideActionDelegate.prototype = {}; A.SlideActionListDelegate.prototype = { get$actionCount: function() { var t1 = this.actions.length; return t1; } }; A._SlidableScope.prototype = { updateShouldNotify$1: function(oldWidget) { return oldWidget.state !== this.state; } }; A.SlidableData.prototype = { get$actionCount: function() { var t1 = this.actionDelegate.get$actionCount(); return t1; }, get$alignment: function() { var t2, t1 = this.direction === C.Axis_0; if (t1) t2 = -(this.actionType === C.SlideActionType_0 ? 1 : -1); else t2 = 0; if (t1) t1 = 0; else t1 = -(this.actionType === C.SlideActionType_0 ? 1 : -1); return new K.Alignment(t2, t1); }, updateShouldNotify$1: function(oldWidget) { var _this = this; return oldWidget.actionType != _this.actionType || oldWidget.renderingMode !== _this.renderingMode || oldWidget.totalActionsExtent !== _this.totalActionsExtent || oldWidget.dismissThreshold !== _this.dismissThreshold || oldWidget.dismissible !== _this.dismissible || oldWidget.actionDelegate !== _this.actionDelegate || oldWidget.overallMoveAnimation !== _this.overallMoveAnimation || oldWidget.actionsMoveAnimation != _this.actionsMoveAnimation || oldWidget.dismissAnimation != _this.dismissAnimation || !J.$eq$(oldWidget.slidable, _this.slidable) || oldWidget.actionExtentRatio !== _this.actionExtentRatio || oldWidget.direction !== _this.direction; } }; A.Slidable.prototype = { createState$0: function() { return new A.SlidableState(C.SlidableRenderingMode_0, C.SlideActionType_0, null, null, C._StateLifecycle_0); } }; A.SlidableState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$_SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin$initState(); t1 = G.AnimationController$(null, _this._widget.movementDuration, 0, null, 1, null, _this); t1.addStatusListener$1(_this.get$_handleDismissStatusChanged()); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_handleOverallPositionChanged()); if (_this.__SlidableState__overallMoveController === $) _this.__SlidableState__overallMoveController = t1; else H.throwExpression(H.LateError$fieldAI("_overallMoveController")); _this._initAnimations$0(); }, _initAnimations$0: function() { var t2, _this = this, t1 = _this._actionsMoveAnimation; if (t1 != null) t1.parent.removeStatusListener$1(_this.get$_handleShowAllActionsStatusChanged()); t1 = _this._dismissAnimation; if (t1 != null) t1.parent.removeStatusListener$1(_this.get$_handleShowAllActionsStatusChanged()); t1 = _this.get$_overallMoveController(); t1 = S.CurvedAnimation$(new Z.Interval(0, _this._widget.actionExtentRatio * _this.get$_actionCount(), C.C__Linear), t1, null); t2 = _this.get$_handleShowAllActionsStatusChanged(); t1.parent.addStatusListener$1(t2); _this._actionsMoveAnimation = t1; t1 = _this.get$_overallMoveController(); t1 = S.CurvedAnimation$(new Z.Interval(_this._widget.actionExtentRatio * _this.get$_actionCount(), 1, C.C__Linear), t1, null); t1.parent.addStatusListener$1(t2); _this._dismissAnimation = t1; }, get$_overallMoveController: function() { var t1 = this.__SlidableState__overallMoveController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_overallMoveController")) : t1; }, get$_actionCount: function() { var t1 = this.get$_actionDelegate().get$actionCount(); return t1; }, get$_dismissThreshold: function() { this._widget.toString; return 0.75; }, get$_dismissible: function() { this._widget.toString; return false; }, get$wantKeepAlive: function() { this._widget.toString; return false; }, get$_actionDelegate: function() { var t1 = this._actionType, t2 = this._widget; return t1 === C.SlideActionType_0 ? t2.actionDelegate : t2.secondaryActionDelegate; }, get$_overallDragAxisExtent: function() { var t1 = this._framework$_element, size = t1.get$size(t1); return this._widget.direction === C.Axis_0 ? size._dx : size._dy; }, didChangeDependencies$0: function() { this.super$_SlidableState_State_TickerProviderStateMixin$didChangeDependencies(); this._removeScrollingNotifierListener$0(); this._addScrollingNotifierListener$0(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._widget.toString; oldWidget.toString; }, _addScrollingNotifierListener$0: function() { var t1, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; t1 = F.Scrollable_of(t1); if (t1 == null) t1 = null; else { t1 = t1._scrollable$_position; t1.toString; } _this._slidable$_scrollPosition = t1; if (t1 != null) { t1 = t1.isScrollingNotifier.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_isScrollingListener()), false); } }, _removeScrollingNotifierListener$0: function() { var t1 = this._slidable$_scrollPosition; if (t1 != null) t1.isScrollingNotifier.removeListener$1(0, this.get$_isScrollingListener()); }, dispose$0: function(_) { var t1, _this = this; _this.get$_overallMoveController().dispose$0(0); t1 = _this._resizeController; if (t1 != null) t1.dispose$0(0); _this._removeScrollingNotifierListener$0(); _this._widget.toString; _this.super$_SlidableState_State_TickerProviderStateMixin$dispose(0); }, open$0: function(_) { var t1, t2, t3, t4, _this = this; _this._widget.toString; if (_this.get$_actionCount() > 0) { t1 = _this.get$_overallMoveController(); t2 = _this._widget.actionExtentRatio; t3 = _this.get$_actionCount(); t4 = _this._widget.movementDuration; t1._direction = C._AnimationDirection_0; t1._animateToInternal$3$curve$duration(t2 * t3, C.Cubic_JUR0, t4); } }, close$0: function(_) { var _this = this, t1 = _this.get$_overallMoveController(); if (t1.get$status(t1) !== C.AnimationStatus_0) { _this._widget.toString; if (!_this._dismissing) _this.get$_overallMoveController().fling$1$velocity(-1); } }, dismiss$0: function() { var actionType, _this = this, t1 = {}; t1.actionType = actionType; t1.actionType = null; if (_this.get$_dismissible()) { _this._dismissing = true; actionType = _this._actionType; t1.actionType = actionType; if (actionType != _this._actionType) _this.setState$1(new A.SlidableState_dismiss_closure(t1, _this)); _this.get$_overallMoveController().fling$0(); } }, _isScrollingListener$0: function() { this._widget.toString; var t1 = this._slidable$_scrollPosition; if (t1 == null) return; if (t1.isScrollingNotifier._change_notifier$_value) this.close$0(0); }, _slidable$_handleDragStart$1: function(details) { var t1, _this = this; _this._dragUnderway = true; _this._widget.toString; t1 = _this._actionsMoveAnimation; _this._dragExtent = t1.get$value(t1) * (_this.get$_overallDragAxisExtent() * (_this._widget.actionExtentRatio * _this.get$_actionCount())) * J.get$sign$in(_this._dragExtent); t1 = _this.get$_overallMoveController()._ticker; if (t1 != null && t1._ticker$_future != null) _this.get$_overallMoveController().stop$0(0); }, _slidable$_handleDragUpdate$1: function(details) { var t1, _this = this; _this._widget.toString; t1 = details.primaryDelta; t1.toString; _this._dragExtent += t1; _this.setState$1(new A.SlidableState__handleDragUpdate_closure(_this)); }, _slidable$_handleDragEnd$1: function(details) { var t1, t2, t3, fast, _this = this; _this._widget.toString; _this._dragUnderway = false; t1 = details.primaryVelocity; t1.toString; t2 = J.get$sign$in(t1); t3 = J.get$sign$in(_this._dragExtent); fast = Math.abs(t1) > _this._widget.fastThreshold; if (_this.get$_dismissible() && _this.get$_overallMoveController().get$_animation_controller$_value() > _this._widget.actionExtentRatio * _this.get$_actionCount()) if (_this.get$_overallMoveController().get$_animation_controller$_value() >= _this.get$_dismissThreshold()) _this.dismiss$0(); else _this.open$0(0); else { t1 = _this._actionsMoveAnimation; if (!(t1.get$value(t1) >= _this._widget.showAllActionsThreshold)) t1 = t2 === t3 && fast; else t1 = true; if (t1) _this.open$0(0); else _this.close$0(0); } }, _handleShowAllActionsStatusChanged$1: function($status) { if ($status === C.AnimationStatus_3 || $status === C.AnimationStatus_0) this.setState$1(new A.SlidableState__handleShowAllActionsStatusChanged_closure()); this.updateKeepAlive$0(); }, _handleOverallPositionChanged$0: function() { var _this = this, value = _this.get$_overallMoveController().get$_animation_controller$_value(); if (value === _this.get$_overallMoveController().lowerBound) _this._renderingMode = C.SlidableRenderingMode_0; else if (value <= _this._widget.actionExtentRatio * _this.get$_actionCount()) _this._renderingMode = C.SlidableRenderingMode_1; else _this._renderingMode = C.SlidableRenderingMode_2; _this.setState$1(new A.SlidableState__handleOverallPositionChanged_closure()); }, _handleDismissStatusChanged$1: function($status) { return this._handleDismissStatusChanged$body$SlidableState($status); }, _handleDismissStatusChanged$body$SlidableState: function($status) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$_handleDismissStatusChanged$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.get$_dismissible() ? 2 : 3; break; case 2: // then $async$goto = $status === C.AnimationStatus_3 && $async$self.get$_overallMoveController().get$_animation_controller$_value() === $async$self.get$_overallMoveController().upperBound && !$async$self._dragUnderway ? 4 : 5; break; case 4: // then $async$self._widget.dismissal.get$onWillDismiss(); t1 = $async$self._widget; $async$goto = 6; return P._asyncAwait(t1.dismissal.get$onWillDismiss().call$1($async$self._actionType), $async$_handleDismissStatusChanged$1); case 6: // returning from await. if ($async$result) $async$self._startResizeAnimation$0(); else { $async$self._dismissing = false; $async$self._widget.toString; $async$self.open$0(0); } case 5: // join $async$self.updateKeepAlive$0(); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_handleDismissStatusChanged$1, $async$completer); }, _handleDismiss$0: function() { var t1 = this._widget, dismissal = t1.dismissal; dismissal.get$onDismissed(); dismissal.get$onDismissed().call$1(this._actionType); }, _startResizeAnimation$0: function() { var t1, t2, _this = this, dismissal = _this._widget.dismissal; dismissal.get$resizeDuration(); t1 = G.AnimationController$(null, dismissal.get$resizeDuration(), 0, null, 1, null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$_handleResizeProgressChanged()); t1.addStatusListener$1(new A.SlidableState__startResizeAnimation_closure(_this)); _this._resizeController = t1; t1.forward$0(0); _this.setState$1(new A.SlidableState__startResizeAnimation_closure0(_this)); }, _handleResizeProgressChanged$0: function() { var t1 = this._resizeController; if (t1.get$status(t1) === C.AnimationStatus_3) this._handleDismiss$0(); else { t1 = this._widget.dismissal; t1.get$onResize(t1).call$0(); } }, build$1: function(_, context) { var t1, $content, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null; _this.super$AutomaticKeepAliveClientMixin$build(0, context); t1 = _this._widget; $content = t1.child; t1 = t1.actionDelegate.get$actionCount(); if (t1 === 0) t1 = _this._widget.secondaryActionDelegate.get$actionCount() === 0; else t1 = false; if (!t1) { if (_this._actionType === C.SlideActionType_0) t1 = _this._widget.actionDelegate.get$actionCount() > 0; else t1 = false; if (!t1) if (_this._actionType === C.SlideActionType_1) t1 = _this._widget.secondaryActionDelegate.get$actionCount() > 0; else t1 = false; else t1 = true; if (t1) { t1 = _this.get$_dismissible(); t2 = _this._widget; if (t1) { $content = t2.dismissal; t1 = _this._resizeAnimation; if (t1 != null) { t2 = t2.direction === C.Axis_0 ? C.Axis_1 : C.Axis_0; t3 = _this._sizePriorToCollapse; t4 = t3._dx; $content = K.SizeTransition$(t2, 0, T.SizedBox$($content, t3._dy, t4), t1); } } else $content = t2.actionPane; } t1 = _this._widget.direction === C.Axis_0; t2 = t1 ? _this.get$_slidable$_handleDragStart() : _null; t3 = t1 ? _this.get$_slidable$_handleDragUpdate() : _null; t4 = t1 ? _this.get$_slidable$_handleDragEnd() : _null; t5 = t1 ? _null : _this.get$_slidable$_handleDragStart(); t6 = t1 ? _null : _this.get$_slidable$_handleDragUpdate(); $content = D.GestureDetector$(C.HitTestBehavior_1, $content, C.DragStartBehavior_1, false, _null, _null, _null, _null, t4, t2, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1 ? _null : _this.get$_slidable$_handleDragEnd(), t5, t6); } t1 = _this._actionType; t2 = _this._renderingMode; t3 = _this._widget.actionExtentRatio; t4 = _this.get$_actionCount(); t5 = _this.get$_dismissThreshold(); t6 = _this.get$_dismissible(); t7 = _this.get$_actionDelegate(); t8 = _this.get$_overallMoveController(); t8.toString; t9 = _this._actionsMoveAnimation; t10 = _this._dismissAnimation; t11 = _this._widget; return new A._SlidableScope(_this, new A.SlidableData(t1, t2, t3 * t4, t5, t6, t7, t8, t9, t10, t11, t11.actionExtentRatio, t11.direction, $content, _null), _null); } }; A.SlidableState_dismiss_closure.prototype = { call$0: function() { var t1 = this.$this; t1._actionType = this._box_0.actionType; t1._initAnimations$0(); }, $signature: 0 }; A.SlidableState__handleDragUpdate_closure.prototype = { call$0: function() { var t1 = this.$this; t1._actionType = J.get$sign$in(t1._dragExtent) >= 0 ? C.SlideActionType_0 : C.SlideActionType_1; t1._initAnimations$0(); if (t1.get$_actionCount() > 0) if (t1.get$_dismissible() && !t1._widget.dismissal.get$dragDismissible()) t1.get$_overallMoveController().set$value(0, C.JSNumber_methods.clamp$2(Math.abs(t1._dragExtent) / t1.get$_overallDragAxisExtent(), 0, t1._widget.actionExtentRatio * t1.get$_actionCount())); else t1.get$_overallMoveController().set$value(0, Math.abs(t1._dragExtent) / t1.get$_overallDragAxisExtent()); }, $signature: 0 }; A.SlidableState__handleShowAllActionsStatusChanged_closure.prototype = { call$0: function() { }, $signature: 0 }; A.SlidableState__handleOverallPositionChanged_closure.prototype = { call$0: function() { }, $signature: 0 }; A.SlidableState__startResizeAnimation_closure.prototype = { call$1: function($status) { return this.$this.updateKeepAlive$0(); }, $signature: 35 }; A.SlidableState__startResizeAnimation_closure0.prototype = { call$0: function() { var t2, t3, t1 = this.$this; t1._renderingMode = C.SlidableRenderingMode_3; t2 = t1._framework$_element; t1._sizePriorToCollapse = t2.get$size(t2); t2 = type$.Tween_double; t3 = t1._resizeController; t3.toString; t1._resizeAnimation = new R._AnimatedEvaluation(S.CurvedAnimation$(C.Interval_07W, t3, null), new R.Tween(1, 0, t2), t2._eval$1("_AnimatedEvaluation")); }, $signature: 0 }; A._SlidableState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; A._SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin.prototype = { initState$0: function() { this.super$State$initState(); if (this.get$wantKeepAlive()) this._ensureKeepAlive$0(); }, deactivate$0: function() { var t1 = this.AutomaticKeepAliveClientMixin__keepAliveHandle; if (t1 != null) { t1.notifyListeners$0(); this.AutomaticKeepAliveClientMixin__keepAliveHandle = null; } this.super$State$deactivate(); } }; V._SlidableStackActionPane.prototype = { build$1: function(_, context) { var t1 = this.data, t2 = t1.actionsMoveAnimation; if (t2.get$status(t2) === C.AnimationStatus_0) return t1.slidable.child; return T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([this.child, K.SlideTransition$(t1.slidable.child, this._slidable_action_pane$_animation, null, true)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, null, null); } }; V.SlidableDrawerActionPane.prototype = { build$1: function(_, context) { var t4, t5, _null = null, t1 = context.dependOnInheritedWidgetOfExactType$1$0(type$.SlidableData), alignment = t1.get$alignment(), animations = P.Iterable_Iterable$generate(t1.get$actionCount(), _null, type$.int).map$1$1(0, new V.SlidableDrawerActionPane_build_closure(new P.Offset(alignment.x, alignment.y), t1), type$.Animation_Offset).toList$0(0), t2 = T.Positioned$fill(T.Stack$(t1.get$alignment(), P.List_List$generate(t1.get$actionCount(), new V.SlidableDrawerActionPane_build_closure0(t1, animations, context), type$.Widget), C.Clip_1, C.StackFit_0, _null, _null)), t3 = t1.totalActionsExtent; t3 *= t1.actionType === C.SlideActionType_0 ? 1 : -1; t3 = t1.direction === C.Axis_0 ? new P.Offset(t3, 0) : new P.Offset(0, t3); t4 = type$.Tween_Offset; t5 = t1.actionsMoveAnimation; t5.toString; return new V._SlidableStackActionPane(t2, t1, new R._AnimatedEvaluation(t5, new R.Tween(C.Offset_0_0, t3, t4), t4._eval$1("_AnimatedEvaluation")), _null); } }; V.SlidableDrawerActionPane_build_closure.prototype = { call$1: function(index) { var t1 = this.startOffset, t2 = this.data, t3 = t1.$mul(0, index - t2.get$actionCount() + 1), t4 = type$.Tween_Offset; t2 = t2.actionsMoveAnimation; t2.toString; return new R._AnimatedEvaluation(t2, new R.Tween(t1, t3, t4), t4._eval$1("_AnimatedEvaluation")); }, $signature: 1443 }; V.SlidableDrawerActionPane_build_closure0.prototype = { call$1: function(index) { var t1 = this.data, displayIndex = t1.actionType === C.SlideActionType_0 ? t1.get$actionCount() - index - 1 : index, t2 = this.animations[index], t3 = t1.get$alignment(), t4 = t1.direction === C.Axis_0, t5 = t4 ? t1.actionExtentRatio : null; t4 = t4 ? null : t1.actionExtentRatio; return K.SlideTransition$(T.FractionallySizedBox$(t3, t1.actionDelegate.actions[displayIndex], t4, t5), t2, null, true); }, $signature: 1429 }; R.ClosableSlideAction.prototype = { build$1: function(_, context) { var widgets, t2, t3, _this = this, _null = null, t1 = _this.color; X.ThemeData_estimateBrightnessForColor(t1); widgets = H.setRuntimeTypeInfo([], type$.JSArray_Widget); t2 = _this.foregroundColor; widgets.push(new T.Flexible(1, C.FlexFit_1, L.Icon$(_this.icon, t2, _null), _null)); t3 = K.Theme_of(context); t3 = t3.primaryTextTheme; widgets.push(new T.Flexible(1, C.FlexFit_1, L.Text$(_this.caption, _null, _null, C.TextOverflow_2, _null, _null, t3.caption.copyWith$1$color(t2), _null, _null, _null), _null)); return D.GestureDetector$(_null, M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, T.Center$(T.Column$(widgets, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new R.ClosableSlideAction_build_closure(_this, context), _null, _null, _null, _null, _null), C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0), C.DragStartBehavior_1, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; R.ClosableSlideAction_build_closure.prototype = { call$0: function() { var scope, t1; this.$this.onTap.call$0(); scope = this.context.dependOnInheritedWidgetOfExactType$1$0(type$._SlidableScope); t1 = scope == null ? null : scope.state; if (t1 != null) t1.close$0(0); return null; }, $signature: 0 }; R.IconSlideAction.prototype = {}; R.CustomSizeTransition.prototype = { build$1: function(_, context) { var t2, _this = this, t1 = _this.axis; if (t1 === C.Axis_1) { t2 = type$.Animation_double._as(_this.listenable); t2 = Math.max(H.checkNum(t2.get$value(t2)), 0); } else t2 = null; if (t1 === C.Axis_0) { t1 = type$.Animation_double._as(_this.listenable); t1 = Math.max(H.checkNum(t1.get$value(t1)), 0); } else t1 = null; return T.ClipRect$(new T.Align(_this.alignment, t1, t2, _this.child, null)); } }; M.showToastWidget_closure.prototype = { call$1: function(ctx) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = this._box_0, t2 = t1.isIgnoring; t2.toString; t3 = t1.duration; t3.toString; t4 = t1.animDuration; t4.toString; t5 = t1.position; t6 = t1.animation; t7 = t1.reverseAnimation; t8 = t1.alignment; t9 = t1.axis; t10 = t1.startOffset; t11 = t1.endOffset; t12 = t1.reverseStartOffset; t13 = t1.reverseEndOffset; t14 = t1.curve; t14.toString; t15 = t1.reverseCurve; t15.toString; t16 = t1.animationBuilder; t17 = t1.reverseAnimBuilder; t18 = t1.onInitState; t1 = t1.textDirection; t1.toString; return new T.IgnorePointer(t2, _null, new M._StyledToastWidget(T.Directionality$(M.Material$(C.Duration_200000, true, _null, this.widget, C.Clip_0, C.Color_0, 0, _null, _null, _null, _null, C.MaterialType_0), t1), t3, t4, t14, t15, t5, t8, t9, t10, t11, t12, t13, t6, t7, t16, t17, t18, this.key), _null); }, $signature: 1424 }; M.StyledToast.prototype = { createState$0: function() { return new M._StyledToastState(C._StateLifecycle_0); } }; M._StyledToastState.prototype = { initState$0: function() { this.super$State$initState(); }, dispose$0: function(_) { this.super$State$dispose(0); }, build$1: function(_, context) { var wrapper, mTextStyle, mBackgroundColor, mBorderRadius, t2, t3, _this = this, _null = null, t1 = H.setRuntimeTypeInfo([X.OverlayEntry$(new M._StyledToastState_build_closure(_this), false)], type$.JSArray_OverlayEntry); _this._widget.toString; wrapper = T.Directionality$(T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([new X.Overlay(t1, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, _null, _null), C.TextDirection_1); t1 = _this._widget; mTextStyle = t1.textStyle; mBackgroundColor = t1.backgroundColor; mBorderRadius = K.BorderRadius$circular(5); t1 = H.setRuntimeTypeInfo([C.C__MaterialLocalizationsDelegate, C.C__GlobalCupertinoLocalizationsDelegate, C.C__WidgetsLocalizationsDelegate], type$.JSArray_LocalizationsDelegate_dynamic); t2 = _this._widget; t3 = t2.locale; t2 = t2.duration; $.WidgetsBinding__instance.toString; return new F.MediaQuery(F.MediaQueryData$fromWindow($.$get$window()), new L.Localizations(t3, t1, new R.StyledToastTheme(wrapper, C.TextAlign_2, C.TextDirection_1, mBorderRadius, mBackgroundColor, C.EdgeInsets_17_8_17_8, mTextStyle, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, true, _null, wrapper, _null), _null), _null); } }; M._StyledToastState_build_closure.prototype = { call$1: function(ctx) { $.currentContext = ctx; return this.$this._widget.child; }, $signature: 79 }; M._StyledToastWidget.prototype = { createState$0: function() { return new M.StyledToastWidgetState(null, C._StateLifecycle_0); } }; M.StyledToastWidgetState.prototype = { get$_animationController: function() { var t1 = this.__StyledToastWidgetState__animationController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_animationController")) : t1; }, get$_reverseAnimController: function() { var t1 = this.__StyledToastWidgetState__reverseAnimController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_reverseAnimController")) : t1; }, get$fadeAnim: function() { var t1 = this.__StyledToastWidgetState_fadeAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("fadeAnim")) : t1; }, get$scaleAnim: function() { var t1 = this.__StyledToastWidgetState_scaleAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("scaleAnim")) : t1; }, get$sizeAnim: function() { var t1 = this.__StyledToastWidgetState_sizeAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("sizeAnim")) : t1; }, get$slideFromTopAnim: function() { var t1 = this.__StyledToastWidgetState_slideFromTopAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideFromTopAnim")) : t1; }, get$slideFromBottomAnim: function() { var t1 = this.__StyledToastWidgetState_slideFromBottomAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideFromBottomAnim")) : t1; }, get$slideFromLeftAnim: function() { var t1 = this.__StyledToastWidgetState_slideFromLeftAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideFromLeftAnim")) : t1; }, get$slideFromRightAnim: function() { var t1 = this.__StyledToastWidgetState_slideFromRightAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideFromRightAnim")) : t1; }, get$rotateAnim: function() { var t1 = this.__StyledToastWidgetState_rotateAnim; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("rotateAnim")) : t1; }, get$fadeAnimReverse: function() { var t1 = this.__StyledToastWidgetState_fadeAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("fadeAnimReverse")) : t1; }, get$scaleAnimReverse: function() { var t1 = this.__StyledToastWidgetState_scaleAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("scaleAnimReverse")) : t1; }, get$sizeAnimReverse: function() { var t1 = this.__StyledToastWidgetState_sizeAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("sizeAnimReverse")) : t1; }, get$slideToTopAnimReverse: function() { var t1 = this.__StyledToastWidgetState_slideToTopAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideToTopAnimReverse")) : t1; }, get$slideToBottomAnimReverse: function() { var t1 = this.__StyledToastWidgetState_slideToBottomAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideToBottomAnimReverse")) : t1; }, get$slideToLeftAnimReverse: function() { var t1 = this.__StyledToastWidgetState_slideToLeftAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideToLeftAnimReverse")) : t1; }, get$slideToRightAnimReverse: function() { var t1 = this.__StyledToastWidgetState_slideToRightAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("slideToRightAnimReverse")) : t1; }, get$rotateAnimReverse: function() { var t1 = this.__StyledToastWidgetState_rotateAnimReverse; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("rotateAnimReverse")) : t1; }, get$offset: function(_) { return this._widget.position == null ? null : 20; }, get$positionAlignment: function() { return this._widget.position == null ? null : C.Alignment_0_1; }, initState$0: function() { var t1, t2, t3, t4, _this = this, _null = null; _this.super$State$initState(); _this.__StyledToastWidgetState__animationController = G.AnimationController$(_null, _this._widget.animDuration, 0, _null, 1, _null, _this); _this.__StyledToastWidgetState__reverseAnimController = G.AnimationController$(_null, _this._widget.animDuration, 0, _null, 1, _null, _this); switch (_this._widget.animation) { case C.StyledToastAnimation_0: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_1: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromTopAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(0, -1), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_2: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromTopAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(0, -1), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new R.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_3: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromBottomAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(0, 1), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_4: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromBottomAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(0, 1), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new R.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_5: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromLeftAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(-1, 0), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_6: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromLeftAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(-1, 0), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new R.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_7: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromRightAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(1, 0), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_8: t1 = _this.get$_animationController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.curve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideFromRightAnim = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(new P.Offset(1, 0), C.Offset_0_0, t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new R.Tween(0, 1, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_18: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; _this.__StyledToastWidgetState_sizeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_19: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_sizeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t4); t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t2.curve, t3, t2.reverseCurve), new R.Tween(0, 1, t1), t4); break; case C.StyledToastAnimation_17: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; _this.__StyledToastWidgetState_scaleAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_20: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t3.curve), t2, new Z.Interval(0, 1, t3.reverseCurve)), new R.Tween(0, 1, t1), t4); t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_scaleAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t2.curve), t3, new Z.Interval(0, 1, t2.reverseCurve)), new R.Tween(0, 1, t1), t4); break; case C.StyledToastAnimation_21: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_23: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_scaleAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t3.curve), t2, new Z.Interval(0, 1, t3.reverseCurve)), new R.Tween(0, 1, t1), t4); t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t2.curve), t3, new Z.Interval(0, 1, t2.reverseCurve)), new R.Tween(0, 1, t1), t4); break; case C.StyledToastAnimation_22: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t3.curve), t2, new Z.Interval(0, 1, t3.reverseCurve)), new R.Tween(0, 1, t1), t4); t3 = _this.get$_animationController(); t2 = _this._widget; _this.__StyledToastWidgetState_rotateAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, t2.curve), t3, new Z.Interval(0, 1, t2.reverseCurve)), new R.Tween(0, 1, t1), t4); break; case C.StyledToastAnimation_24: break; default: t1 = type$.Tween_double; t2 = _this.get$_animationController(); t3 = _this._widget; _this.__StyledToastWidgetState_fadeAnim = new R._AnimatedEvaluation(S.CurvedAnimation$(t3.curve, t2, t3.reverseCurve), new R.Tween(0, 1, t1), t1._eval$1("_AnimatedEvaluation")); break; } t1 = _this._widget.reverseAnimation; if (t1 != null) switch (t1) { case C.StyledToastAnimation_0: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_9: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToTopAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(0, -1), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_10: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToTopAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(0, -1), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new R.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_11: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToBottomAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(0, 1), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_12: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToBottomAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(0, 1), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new R.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_13: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToLeftAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(-1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_14: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToLeftAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(-1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new R.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_15: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToRightAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_16: t1 = _this.get$_reverseAnimController(); t2 = _this._widget; t3 = type$.Tween_Offset; t2 = t2.reverseCurve; t4 = t3._eval$1("_ChainedEvaluation"); t1.toString; _this.__StyledToastWidgetState_slideToRightAnimReverse = new R._AnimatedEvaluation(type$.Animation_double._as(t1), new R._ChainedEvaluation(new R.CurveTween(t2), new R.Tween(C.Offset_0_0, new P.Offset(1, 0), t3), t4), t4._eval$1("_AnimatedEvaluation")); t4 = type$.Tween_double; t3 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t3, _null), new R.Tween(1, 0, t4), t4._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_18: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); t3 = _this._widget.reverseCurve; _this.__StyledToastWidgetState_sizeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(t3, t2, t3), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_19: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); t3 = _this._widget.reverseCurve; t4 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_sizeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(t3, t2, t3), new R.Tween(1, 0, t1), t4); t3 = _this.get$_reverseAnimController(); t2 = _this._widget.reverseCurve; _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(t2, t3, t2), new R.Tween(1, 0, t1), t4); break; case C.StyledToastAnimation_17: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_scaleAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_20: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_scaleAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); break; case C.StyledToastAnimation_21: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_rotateAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; case C.StyledToastAnimation_23: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_scaleAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_rotateAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); break; case C.StyledToastAnimation_22: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); t3 = t1._eval$1("_AnimatedEvaluation"); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_rotateAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(new Z.Interval(0, 1, _this._widget.reverseCurve), t2, _null), new R.Tween(1, 0, t1), t3); break; case C.StyledToastAnimation_24: break; default: t1 = type$.Tween_double; t2 = _this.get$_reverseAnimController(); _this.__StyledToastWidgetState_fadeAnimReverse = new R._AnimatedEvaluation(S.CurvedAnimation$(_this._widget.reverseCurve, t2, _null), new R.Tween(1, 0, t1), t1._eval$1("_AnimatedEvaluation")); break; } _this.get$_animationController().forward$0(0); t1 = _this._widget; if (!J.$eq$(t1.duration, C.Duration_0)) { t1 = _this._widget; t2 = t1.duration; t1 = t1.animDuration; _this._toastTimer = P.Timer_Timer(new P.Duration(t2._duration - t1._duration), new M.StyledToastWidgetState_initState_closure(_this)); } $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); }, build$1: function(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = _this._widget, w = t1.child; switch (t1.animation) { case C.StyledToastAnimation_0: w = K.FadeTransition$(false, w, _this.get$fadeAnim()); break; case C.StyledToastAnimation_1: w = K.SlideTransition$(w, _this.get$slideFromTopAnim(), _null, true); break; case C.StyledToastAnimation_2: t1 = _this.get$slideFromTopAnim(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnim()), t1, _null, true); break; case C.StyledToastAnimation_3: w = K.SlideTransition$(w, _this.get$slideFromBottomAnim(), _null, true); break; case C.StyledToastAnimation_4: t1 = _this.get$slideFromBottomAnim(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnim()), t1, _null, true); break; case C.StyledToastAnimation_5: w = K.SlideTransition$(w, _this.get$slideFromLeftAnim(), _null, true); break; case C.StyledToastAnimation_6: t1 = _this.get$slideFromLeftAnim(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnim()), t1, _null, true); break; case C.StyledToastAnimation_7: w = K.SlideTransition$(w, _this.get$slideFromRightAnim(), _null, true); break; case C.StyledToastAnimation_8: t1 = _this.get$slideFromRightAnim(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnim()), t1, _null, true); break; case C.StyledToastAnimation_18: t1 = _this.get$sizeAnim(); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = C.Alignment_0_0; t3 = _this._widget.axis; w = R.CustomSizeTransition$(t2, t3 == null ? C.Axis_0 : t3, 0, w, t1); break; case C.StyledToastAnimation_19: t1 = _this.get$sizeAnim(); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = C.Alignment_0_0; t3 = _this._widget.axis; if (t3 == null) t3 = C.Axis_0; w = R.CustomSizeTransition$(t2, t3, 0, K.FadeTransition$(false, w, _this.get$fadeAnim()), t1); break; case C.StyledToastAnimation_17: t1 = _this.get$scaleAnim(); t2 = _this._widget.alignment; w = K.ScaleTransition$(t2 == null ? C.Alignment_0_0 : t2, w, t1); break; case C.StyledToastAnimation_20: t1 = _this.get$fadeAnim(); t2 = _this.get$scaleAnim(); t3 = _this._widget.alignment; w = K.FadeTransition$(false, K.ScaleTransition$(t3 == null ? C.Alignment_0_0 : t3, w, t2), t1); break; case C.StyledToastAnimation_21: t1 = _this.get$rotateAnim(); t2 = _this._widget.alignment; w = K.RotationTransition$(t2 == null ? C.FractionalOffset_0_0 : t2, w, t1); break; case C.StyledToastAnimation_22: t1 = _this.get$fadeAnim(); t2 = _this.get$rotateAnim(); t3 = _this._widget.alignment; w = K.FadeTransition$(false, K.RotationTransition$(t3 == null ? C.FractionalOffset_0_0 : t3, w, t2), t1); break; case C.StyledToastAnimation_23: t1 = _this.get$scaleAnim(); t2 = _this._widget.alignment; if (t2 == null) t2 = C.Alignment_0_0; t3 = _this.get$rotateAnim(); t4 = _this._widget.alignment; w = K.ScaleTransition$(t2, K.RotationTransition$(t4 == null ? C.FractionalOffset_0_0 : t4, w, t3), t1); break; case C.StyledToastAnimation_24: w = M.Container$(_null, w, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); break; default: w = K.FadeTransition$(false, w, _this.get$fadeAnim()); break; } t1 = _this._widget; t2 = t1.reverseAnimation; if (t2 != null && t1.animation !== t2) switch (t2) { case C.StyledToastAnimation_0: w = K.FadeTransition$(false, w, _this.get$fadeAnimReverse()); break; case C.StyledToastAnimation_9: w = K.SlideTransition$(w, _this.get$slideToTopAnimReverse(), _null, true); break; case C.StyledToastAnimation_10: t1 = _this.get$slideToTopAnimReverse(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnimReverse()), t1, _null, true); break; case C.StyledToastAnimation_11: w = K.SlideTransition$(w, _this.get$slideToBottomAnimReverse(), _null, true); break; case C.StyledToastAnimation_12: t1 = _this.get$slideToBottomAnimReverse(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnimReverse()), t1, _null, true); break; case C.StyledToastAnimation_13: w = K.SlideTransition$(w, _this.get$slideToLeftAnimReverse(), _null, true); break; case C.StyledToastAnimation_14: t1 = _this.get$slideToLeftAnimReverse(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnimReverse()), t1, _null, true); break; case C.StyledToastAnimation_15: w = K.SlideTransition$(w, _this.get$slideToRightAnimReverse(), _null, true); break; case C.StyledToastAnimation_16: t1 = _this.get$slideToRightAnimReverse(); w = K.SlideTransition$(K.FadeTransition$(false, w, _this.get$fadeAnimReverse()), t1, _null, true); break; case C.StyledToastAnimation_18: t1 = _this.get$positionAlignment(); if (t1 == null) t1 = C.Alignment_0_0; t2 = _this._widget.axis; if (t2 == null) t2 = C.Axis_0; w = R.CustomSizeTransition$(t1, t2, 0, w, _this.get$sizeAnimReverse()); break; case C.StyledToastAnimation_19: t1 = _this.get$fadeAnimReverse(); t2 = _this.get$positionAlignment(); if (t2 == null) t2 = C.Alignment_0_0; t3 = _this._widget.axis; if (t3 == null) t3 = C.Axis_0; w = K.FadeTransition$(false, R.CustomSizeTransition$(t2, t3, 0, w, _this.get$sizeAnimReverse()), t1); break; case C.StyledToastAnimation_17: t1 = _this.get$scaleAnimReverse(); t2 = _this._widget.alignment; w = K.ScaleTransition$(t2 == null ? C.Alignment_0_0 : t2, w, t1); break; case C.StyledToastAnimation_20: t1 = _this.get$fadeAnimReverse(); t2 = _this.get$scaleAnimReverse(); t3 = _this._widget.alignment; w = K.FadeTransition$(false, K.ScaleTransition$(t3 == null ? C.Alignment_0_0 : t3, w, t2), t1); break; case C.StyledToastAnimation_21: t1 = _this.get$rotateAnimReverse(); t2 = _this._widget.alignment; w = K.RotationTransition$(t2 == null ? C.FractionalOffset_0_0 : t2, w, t1); break; case C.StyledToastAnimation_22: t1 = _this.get$fadeAnimReverse(); t2 = _this.get$rotateAnimReverse(); t3 = _this._widget.alignment; w = K.FadeTransition$(false, K.RotationTransition$(t3 == null ? C.FractionalOffset_0_0 : t3, w, t2), t1); break; case C.StyledToastAnimation_23: t1 = _this.get$scaleAnimReverse(); t2 = _this.get$rotateAnimReverse(); t3 = _this._widget.alignment; w = K.ScaleTransition$(C.Alignment_0_0, K.RotationTransition$(t3 == null ? C.FractionalOffset_0_0 : t3, w, t2), t1); break; case C.StyledToastAnimation_24: break; default: break; } w = T.Opacity$(false, w, _this.opacity); t1 = F.MediaQueryData$fromWindow($.$get$window()).padding; w = M.Container$(_this.get$positionAlignment(), w, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(0, t1.top, 0, t1.bottom), _null, _null, _null); if (!C.Alignment_0_0.$eq(0, _this.get$positionAlignment())) if (C.Alignment_0_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, 0, 0, t1), w, _null); } else if (C.Alignment_0_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, t1, 0, 0), w, _null); } else if (C.Alignment_m1_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, t1, 0, 0), w, _null); } else if (C.Alignment_1_m1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, t1, 0, 0), w, _null); } else if (C.Alignment_m1_0.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(t1, 0, 0, 0), w, _null); } else if (C.Alignment_1_0.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, 0, t1, 0), w, _null); } else if (C.Alignment_m1_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, 0, 0, t1), w, _null); } else if (C.Alignment_1_1.$eq(0, _this.get$positionAlignment())) { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(0, 0, 0, t1), w, _null); } else { t1 = _this.get$offset(_this); t1.toString; w = new T.Padding(new V.EdgeInsets(t1, t1, t1, t1), w, _null); } return w; }, dismissToast$0: function() { var t1, _this = this; if (_this._framework$_element == null) return; t1 = _this._toastTimer; if (t1 != null) t1.cancel$0(0); _this.setState$1(new M.StyledToastWidgetState_dismissToast_closure(_this)); }, dismissToastAnim$0: function() { var onAnimationEnd = null; return this.dismissToastAnim$body$StyledToastWidgetState(); }, dismissToastAnim$body$StyledToastWidgetState: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, exception, onAnimationEnd, $async$exception; var $async$dismissToastAnim$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start onAnimationEnd = null; if ($async$self._framework$_element == null) { // goto return $async$goto = 1; break; } t1 = $async$self._toastTimer; if (t1 != null) t1.cancel$0(0); $async$handler = 4; t1 = $async$self._widget; $async$goto = t1.animation != t1.reverseAnimation || false ? 7 : 9; break; case 7: // then $async$goto = 10; return P._asyncAwait($async$self.get$_reverseAnimController().forward$0(0).get$orCancel(), $async$dismissToastAnim$0); case 10: // returning from await. // goto join $async$goto = 8; break; case 9: // else $async$goto = 11; return P._asyncAwait($async$self.get$_animationController().reverse$0(0).get$orCancel(), $async$dismissToastAnim$0); case 11: // returning from await. case 8: // join t1 = onAnimationEnd; if (t1 != null) t1.call$0(); $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; if (!(H.unwrapException($async$exception) instanceof M.TickerCanceled)) throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$dismissToastAnim$0, $async$completer); }, dispose$0: function(_) { var _this = this, t1 = _this._toastTimer; if (t1 != null) t1.cancel$0(0); C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this.get$_animationController().dispose$0(0); _this.get$_reverseAnimController().dispose$0(0); _this.super$_StyledToastWidgetState_State_TickerProviderStateMixin$dispose(0); }, didChangeMetrics$0: function() { this.super$WidgetsBindingObserver$didChangeMetrics(); if (this._framework$_element != null) this.setState$1(new M.StyledToastWidgetState_didChangeMetrics_closure()); } }; M.StyledToastWidgetState_initState_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1._widget.reverseAnimation === C.StyledToastAnimation_24) t1.dismissToast$0(); else t1.dismissToastAnim$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 93 }; M.StyledToastWidgetState_dismissToast_closure.prototype = { call$0: function() { this.$this.opacity = 0; }, $signature: 0 }; M.StyledToastWidgetState_didChangeMetrics_closure.prototype = { call$0: function() { }, $signature: 0 }; M._StyledToastWidgetState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; M._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver.prototype = {}; Z.StyledToastPosition.prototype = {}; Z.StyledToastAnimation.prototype = { toString$0: function(_) { return this._styled_toast_enum$_name; } }; Q.ToastFuture.prototype = { ToastFuture$create$4: function(duration, _entry, _onDismiss, _containerKey) { if (!J.$eq$(duration, C.Duration_0)) this._styled_toast_manage$_timer = P.Timer_Timer(duration, new Q.ToastFuture$create_closure(this)); }, dismiss$1$showAnim: function(showAnim) { return this.dismiss$body$ToastFuture(false); }, dismiss$0: function() { return this.dismiss$1$showAnim(false); }, dismiss$body$ToastFuture: function(showAnim) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$dismiss$1$showAnim = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!$async$self._isShow) { // goto return $async$goto = 1; break; } $async$self._isShow = false; t1 = $async$self._styled_toast_manage$_timer; if (t1 != null) t1.cancel$0(0); t1 = $.ToastManager__instance; (t1 == null ? $.ToastManager__instance = new Q.ToastManager(P.LinkedHashSet_LinkedHashSet(type$.ToastFuture)) : t1).toastSet.remove$1(0, $async$self); t1 = $async$self._containerKey.get$currentState(); if (t1 != null) t1.dismissToast$0(); $async$self._styled_toast_manage$_entry.remove$0(0); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$dismiss$1$showAnim, $async$completer); } }; Q.ToastFuture$create_closure.prototype = { call$0: function() { return this.$this.dismiss$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q.ToastManager.prototype = { dismissAll$1$showAnim: function(showAnim) { var t1 = this.toastSet; C.JSArray_methods.forEach$1(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")), new Q.ToastManager_dismissAll_closure(false)); } }; Q.ToastManager_dismissAll_closure.prototype = { call$1: function(v) { v.dismiss$1$showAnim(this.showAnim); }, $signature: 1391 }; R.StyledToastTheme.prototype = { updateShouldNotify$1: function(oldWidget) { return true; }, get$child: function() { return this.StyledToastTheme_child; } }; L.TypeAheadFormField.prototype = { createState$0: function() { return new L._TypeAheadFormFieldState(C._StateLifecycle_0, this.$ti._eval$1("_TypeAheadFormFieldState<1*>")); } }; L.TypeAheadFormField_closure.prototype = { call$1: function(field) { var _this = this, t1 = _this.textFieldConfiguration, t2 = t1.decoration.copyWith$1$errorText(field._errorText), t3 = field.get$_flutter_typeahead$_effectiveController(); if (t3 == null) t3 = t1.controller; return new L.TypeAheadField(_this.suggestionsCallback, _this.onSuggestionSelected, _this.itemBuilder, _this.suggestionsBoxDecoration, _this.suggestionsBoxController, _this.debounceDuration, _this.loadingBuilder, _this.noItemsFoundBuilder, _this.errorBuilder, _this.transitionBuilder, _this.animationDuration, _this.direction, _this.animationStart, L.TextFieldConfiguration$(true, false, t3, t1.cursorColor, t1.cursorRadius, t1.cursorWidth, t2, true, true, t1.focusNode, t1.inputFormatters, t1.keyboardAppearance, t1.keyboardType, t1.maxLength, true, t1.maxLines, t1.minLines, false, new L.TypeAheadFormField__closure(field, t1), t1.onEditingComplete, t1.onSubmitted, t1.onTap, t1.scrollPadding, t1.style, t1.textAlign, t1.textCapitalization, t1.textDirection, t1.textInputAction), _this.suggestionsBoxVerticalOffset, _this.getImmediateSuggestions, _this.hideOnLoading, _this.hideOnEmpty, _this.hideOnError, _this.hideSuggestionsOnKeyboardHide, _this.keepSuggestionsOnLoading, _this.keepSuggestionsOnSuggestionSelected, _this.autoFlipDirection, null, _this.T._eval$1("TypeAheadField<0*>")); }, $signature: function() { return this.T._eval$1("TypeAheadField<0*>*(FormFieldState*)"); } }; L.TypeAheadFormField__closure.prototype = { call$1: function(text) { this.state.didChange$1(text); this.textFieldConfiguration.onChanged.call$1(text); }, $signature: 7 }; L._TypeAheadFormFieldState.prototype = { get$_flutter_typeahead$_effectiveController: function() { var t1 = N.State.prototype.get$widget.call(this).textFieldConfiguration.controller; return t1 == null ? this._flutter_typeahead$_controller : t1; }, get$widget: function() { return N.State.prototype.get$widget.call(this); }, initState$0: function() { var t1, _this = this; _this.super$FormFieldState$initState(); if (N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller == null) { t1 = N.State.prototype.get$widget.call(_this).initialValue; t1 = t1 == null ? C.TextEditingValue_QOg : new N.TextEditingValue(t1, C.TextSelection_TbC, C.TextRange_m1_m1); _this._flutter_typeahead$_controller = new D.TextEditingController(t1, new P.LinkedList(type$.LinkedList__ListenerEntry)); } else { t1 = N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_flutter_typeahead$_handleControllerChanged()), false); } }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = N.State.prototype.get$widget.call(_this).textFieldConfiguration; t2 = oldWidget.textFieldConfiguration.controller; if (t1.controller != t2) { t1 = t2 == null; if (!t1) t2.removeListener$1(0, _this.get$_flutter_typeahead$_handleControllerChanged()); t3 = N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller; if (t3 != null) { t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(_this.get$_flutter_typeahead$_handleControllerChanged()), false); } if (!t1 && N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller == null) _this._flutter_typeahead$_controller = D.TextEditingController$fromValue(t2._change_notifier$_value); if (N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller != null) { _this._form$_value = N.State.prototype.get$widget.call(_this).textFieldConfiguration.controller._change_notifier$_value.text; if (t1) _this._flutter_typeahead$_controller = null; } } }, dispose$0: function(_) { var t1 = N.State.prototype.get$widget.call(this).textFieldConfiguration.controller; if (t1 != null) t1.removeListener$1(0, this.get$_flutter_typeahead$_handleControllerChanged()); this.super$State$dispose(0); }, _flutter_typeahead$_handleControllerChanged$0: function() { var _this = this, t1 = _this.get$_flutter_typeahead$_effectiveController()._change_notifier$_value.text, t2 = _this._form$_value; if (t1 == null ? t2 != null : t1 !== t2) _this.didChange$1(_this.get$_flutter_typeahead$_effectiveController()._change_notifier$_value.text); } }; L.TypeAheadField.prototype = { createState$0: function() { if (!$.KeyboardVisibility__isInitialized) { C.EventChannel_flutter_keyboard_visibility.receiveBroadcastStream$0().listen$1(0, X.flutter_keyboard_visibility_KeyboardVisibility__onKeyboardEvent$closure()); $.KeyboardVisibility__isInitialized = true; } return new L._TypeAheadFieldState(new T.LayerLink(), $.$get$KeyboardVisibility__onChange(), C._StateLifecycle_0, this.$ti._eval$1("_TypeAheadFieldState<1*>")); } }; L._TypeAheadFieldState.prototype = { get$_flutter_typeahead$_effectiveController: function() { var t1 = this._widget.textFieldConfiguration.controller; return t1 == null ? this._textEditingController : t1; }, get$_flutter_typeahead$_effectiveFocusNode: function() { this._widget.toString; var t1 = this._flutter_typeahead$_focusNode; return t1; }, didChangeMetrics$0: function() { this._suggestionsBox.onChangeMetrics$0(); }, dispose$0: function(_) { var t1, _this = this; _this._suggestionsBox.close$0(0); _this._suggestionsBox.widgetMounted = false; C.JSArray_methods.remove$1($.WidgetsBinding__instance.WidgetsBinding__observers, _this); _this._keyboardVisibilitySubscription.cancel$0(0); _this.get$_flutter_typeahead$_effectiveFocusNode().removeListener$1(0, _this._focusNodeListener); t1 = _this._flutter_typeahead$_focusNode; if (t1 != null) t1.dispose$0(0); t1 = _this._resizeOnScrollTimer; if (t1 != null) t1.cancel$0(0); t1 = _this._flutter_typeahead$_scrollPosition; if (t1 != null) t1.removeListener$1(0, _this.get$_scrollResizeListener()); _this.super$State$dispose(0); }, initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); t1 = _this._widget; if (t1.textFieldConfiguration.controller == null) _this._textEditingController = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)); _this._flutter_typeahead$_focusNode = O.FocusNode$(true, null, true, null, false); t2 = _this._framework$_element; t2.toString; t1 = t1.direction; _this._suggestionsBox = new L._SuggestionsBox(t2, t1, true, t1); _this._focusNodeListener = new L._TypeAheadFieldState_initState_closure(_this); t1 = _this.get$_flutter_typeahead$_effectiveFocusNode(); t2 = _this._focusNodeListener; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); _this._keyboardVisibilitySubscription = _this._keyboardVisibility.listen$1(0, new L._TypeAheadFieldState_initState_closure0(_this)); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new L._TypeAheadFieldState_initState_closure1(_this)); }, didChangeDependencies$0: function() { var t1, scrollableState, t2, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; scrollableState = F.Scrollable_of(t1); if (scrollableState != null) { t1 = scrollableState._scrollable$_position; t1.toString; _this._flutter_typeahead$_scrollPosition = t1; t2 = _this.get$_scrollResizeListener(); t1.removeListener$1(0, t2); t1 = _this._flutter_typeahead$_scrollPosition.isScrollingNotifier.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); } }, _scrollResizeListener$0: function() { var _this = this, isScrolling = _this._flutter_typeahead$_scrollPosition.isScrollingNotifier._change_notifier$_value, t1 = _this._resizeOnScrollTimer; if (t1 != null) t1.cancel$0(0); if (isScrolling) _this._resizeOnScrollTimer = P.Timer_Timer$periodic(C.Duration_500000, new L._TypeAheadFieldState__scrollResizeListener_closure(_this)); else _this._suggestionsBox.resize$0(0); }, _initOverlayEntry$0: function() { this._suggestionsBox._overlayEntry = X.OverlayEntry$(new L._TypeAheadFieldState__initOverlayEntry_closure(this), false); }, build$1: function(_, context) { var _this = this, _null = null, t1 = _this.get$_flutter_typeahead$_effectiveFocusNode(), t2 = _this.get$_flutter_typeahead$_effectiveController(), t3 = _this._widget.textFieldConfiguration; return new T.CompositedTransformTarget(_this._layerLink, Z.TextField$(true, _null, false, _null, t2, t3.cursorColor, _null, t3.cursorRadius, t3.cursorWidth, t3.decoration, true, true, true, false, t1, t3.inputFormatters, t3.keyboardAppearance, t3.keyboardType, t3.maxLength, true, _null, t3.maxLines, t3.minLines, false, "\u2022", t3.onChanged, t3.onEditingComplete, t3.onSubmitted, t3.onTap, false, _null, t3.scrollPadding, _null, _null, _null, _null, _null, _null, t3.style, t3.textAlign, _null, t3.textCapitalization, t3.textDirection, t3.textInputAction, _null), _null); } }; L._TypeAheadFieldState_initState_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.get$_flutter_typeahead$_effectiveFocusNode().get$hasFocus(); t1 = t1._suggestionsBox; if (t2) t1.open$0(0); else t1.close$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L._TypeAheadFieldState_initState_closure0.prototype = { call$1: function(isVisible) { var t1 = this.$this; t1._widget.toString; if (!isVisible) t1.get$_flutter_typeahead$_effectiveFocusNode().unfocus$0(); }, $signature: 20 }; L._TypeAheadFieldState_initState_closure1.prototype = { call$1: function(duration) { var t1 = this.$this; if (t1._framework$_element != null) { t1._initOverlayEntry$0(); t1._suggestionsBox.resize$0(0); if (t1.get$_flutter_typeahead$_effectiveFocusNode().get$hasFocus()) t1._suggestionsBox.open$0(0); } }, $signature: 45 }; L._TypeAheadFieldState__scrollResizeListener_closure.prototype = { call$1: function(timer) { this.$this._suggestionsBox.resize$0(0); }, $signature: 308 }; L._TypeAheadFieldState__initOverlayEntry_closure.prototype = { call$1: function(context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, suggestionsList, w, w0, _null = null, t1 = this.$this, t2 = t1._suggestionsBox, t3 = t1._widget, t4 = t3.suggestionsBoxDecoration; t3 = t3.debounceDuration; t5 = t1.get$_flutter_typeahead$_effectiveController(); t6 = t1._widget; t7 = t6.loadingBuilder; t8 = t6.noItemsFoundBuilder; t9 = t6.errorBuilder; t10 = t6.transitionBuilder; t11 = t6.suggestionsCallback; t12 = t6.animationDuration; t13 = t6.animationStart; t14 = t6.itemBuilder; t15 = t1._suggestionsBox; suggestionsList = new L._SuggestionsList(t2, t5, false, new L._TypeAheadFieldState__initOverlayEntry__closure(t1), t11, t14, t4, t3, t7, t8, t9, t10, t12, t13, false, false, false, true, _null, t1.$ti._eval$1("_SuggestionsList<1*>")); w = t15.textBoxWidth; t2 = t6.suggestionsBoxDecoration.constraints; if (t2 != null) { w0 = t2.minWidth; t3 = w0 !== 0; if (t3 && t2.maxWidth !== 1 / 0) w = (w0 + t2.maxWidth) / 2; else if (t3 && w0 > w) w = w0; else { w0 = t2.maxWidth; if (w0 !== 1 / 0 && w0 < w) w = w0; } } t2 = t15.direction === C.AxisDirection_2; t3 = t2 ? t15.textBoxHeight + t6.suggestionsBoxVerticalOffset : t15.directionUpOffset; t2 = t2 ? suggestionsList : T.FractionalTranslation$(suggestionsList, true, new P.Offset(0, -1)); return T.Positioned$(_null, T.CompositedTransformFollower$(t2, t1._layerLink, new P.Offset(0, t3), false, C.Alignment_m1_m1), _null, _null, _null, _null, _null, w); }, $signature: 1315 }; L._TypeAheadFieldState__initOverlayEntry__closure.prototype = { call$1: function(selection) { var t1 = this.$this; t1._widget.toString; t1.get$_flutter_typeahead$_effectiveFocusNode().unfocus$0(); t1._suggestionsBox.close$0(0); t1._widget.onSuggestionSelected.call$1(selection); }, $signature: function() { return this.$this.$ti._eval$1("Null(1*)"); } }; L._SuggestionsList.prototype = { createState$0: function() { return new L._SuggestionsListState(null, C._StateLifecycle_0, this.$ti._eval$1("_SuggestionsListState<1*>")); }, suggestionsCallback$1: function(arg0) { return this.suggestionsCallback.call$1(arg0); }, noItemsFoundBuilder$1: function(arg0) { return this.noItemsFoundBuilder.call$1(arg0); } }; L._SuggestionsListState.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); this._getSuggestions$0(); }, didChangeDependencies$0: function() { this.super$__SuggestionsListState_State_SingleTickerProviderStateMixin$didChangeDependencies(); this._getSuggestions$0(); }, initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); _this._flutter_typeahead$_animationController = G.AnimationController$(null, _this._widget.animationDuration, 0, null, 1, null, _this); _this._isQueued = _this._flutter_typeahead$_isLoading = false; t1 = _this._widget.controller; _this._lastTextValue = t1._change_notifier$_value.text; t2 = new L._SuggestionsListState_initState_closure(_this); _this._controllerListener = t2; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); }, _getSuggestions$0: function() { return this._getSuggestions$body$_SuggestionsListState(); }, _getSuggestions$body$_SuggestionsListState: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, callbackIdentity, t2, exception, t1, $async$exception, $async$temp1; var $async$_getSuggestions$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = {}; $async$goto = $async$self._framework$_element != null ? 3 : 4; break; case 3: // then $async$self.setState$1(new L._SuggestionsListState__getSuggestions_closure($async$self)); t1.suggestions = H.setRuntimeTypeInfo([], $async$self.$ti._eval$1("JSArray<1*>")); t1.error = null; callbackIdentity = new P.Object(); $async$self._flutter_typeahead$_activeCallbackIdentity = callbackIdentity; $async$handler = 6; t2 = $async$self._widget; $async$temp1 = t1; $async$goto = 9; return P._asyncAwait(t2.suggestionsCallback$1(t2.controller._change_notifier$_value.text), $async$_getSuggestions$0); case 9: // returning from await. $async$temp1.suggestions = $async$result; $async$handler = 2; // goto after finally $async$goto = 8; break; case 6: // catch $async$handler = 5; $async$exception = $async$currentError; e = H.unwrapException($async$exception); t1.error = e; // goto after finally $async$goto = 8; break; case 5: // uncaught // goto rethrow $async$goto = 2; break; case 8: // after finally if ($async$self._flutter_typeahead$_activeCallbackIdentity !== callbackIdentity) { // goto return $async$goto = 1; break; } if ($async$self._framework$_element != null) $async$self.setState$1(new L._SuggestionsListState__getSuggestions_closure0(t1, $async$self)); case 4: // join case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_getSuggestions$0, $async$completer); }, dispose$0: function(_) { var t1, _this = this; _this._flutter_typeahead$_animationController.dispose$0(0); t1 = _this._widget.controller; if (t1 != null) t1.removeListener$1(0, _this._controllerListener); _this.super$__SuggestionsListState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var child, animationChild, constraints, t3, maxHeight, _this = this, _null = null, t1 = _this._suggestions, t2 = t1 == null; if (t2 && _this._flutter_typeahead$_isLoading === false) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._flutter_typeahead$_isLoading) { _this._widget.toString; if (!t2) child = J.get$isEmpty$asx(t1) ? _this.createNoItemsFoundWidget$0() : _this.createSuggestionsWidget$0(); else child = new T.Align(C.Alignment_0_0, _null, _null, new T.Padding(C.EdgeInsets_0_8_0_8, U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null), _null); } else { t2 = _this._flutter_typeahead$_error; if (t2 != null) { _this._widget.toString; t1 = "Error: " + H.S(t2); t2 = _this._framework$_element; t2.toString; child = new T.Padding(C.EdgeInsets_8_8_8_8, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, K.Theme_of(t2).errorColor, _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); } else if (J.get$isEmpty$asx(t1)) { _this._widget.toString; child = _this.createNoItemsFoundWidget$0(); } else child = _this.createSuggestionsWidget$0(); } _this._widget.toString; animationChild = K.SizeTransition$(C.Axis_1, -1, child, S.CurvedAnimation$(C.Cubic_ifx, _this._flutter_typeahead$_animationController, _null)); t1 = _this._widget; t2 = t1.decoration.constraints; t1 = t1.suggestionsBox; if (t2 == null) constraints = new S.BoxConstraints(0, 1 / 0, 0, t1.maxHeight); else { t3 = t2.maxHeight; t1 = t1.maxHeight; maxHeight = Math.min(H.checkNum(t3), t1); constraints = t2.copyWith$2$maxHeight$minHeight(maxHeight, Math.min(H.checkNum(t2.minHeight), maxHeight)); } _this._widget.toString; return M.Material$(C.Duration_200000, true, _null, new T.ConstrainedBox(constraints, animationChild, _null), C.Clip_0, _null, 4, _null, C.Color_4278190080, _null, _null, C.MaterialType_0); }, createNoItemsFoundWidget$0: function() { var t2, t1 = this._widget; t1.toString; t2 = this._framework$_element; t2.toString; t1 = t1.noItemsFoundBuilder$1(t2); return t1; }, createSuggestionsWidget$0: function() { var _this = this, t1 = _this._widget.suggestionsBox.direction !== C.AxisDirection_2 || false, child = B.ListView$(J.map$1$1$ax(_this._suggestions, new L._SuggestionsListState_createSuggestionsWidget_closure(_this), type$.legacy_InkWell).toList$0(0), null, C.EdgeInsets_0_0_0_0, false, t1, C.Axis_1, true); _this._widget.toString; child = E.Scrollbar$(child, null, null); return child; } }; L._SuggestionsListState_initState_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.controller._change_notifier$_value.text; if (t2 == t1._lastTextValue) return; t1._lastTextValue = t2; t2 = t1._debounceTimer; if (t2 != null) t2.cancel$0(0); t1._debounceTimer = P.Timer_Timer(t1._widget.debounceDuration, new L._SuggestionsListState_initState__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L._SuggestionsListState_initState__closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1._debounceTimer._handle != null) { // goto return $async$goto = 1; break; } if (t1._flutter_typeahead$_isLoading) { t1._isQueued = true; // goto return $async$goto = 1; break; } $async$goto = 3; return P._asyncAwait(t1._getSuggestions$0(), $async$call$0); case 3: // returning from await. case 4: // for condition if (!t1._isQueued) { // goto after for $async$goto = 5; break; } t1._isQueued = false; $async$goto = 6; return P._asyncAwait(t1._getSuggestions$0(), $async$call$0); case 6: // returning from await. // goto for condition $async$goto = 4; break; case 5: // after for case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 31 }; L._SuggestionsListState__getSuggestions_closure.prototype = { call$0: function() { var t1 = this.$this; t1._flutter_typeahead$_animationController.forward$1$from(0, 1); t1._flutter_typeahead$_isLoading = true; t1._flutter_typeahead$_error = null; }, $signature: 1 }; L._SuggestionsListState__getSuggestions_closure0.prototype = { call$0: function() { var t3, t1 = this.$this, animationStart = t1._widget.animationStart, t2 = this._box_0; if (t2.error == null) { t3 = t2.suggestions; t3 = t3 == null || J.get$isEmpty$asx(t3); } else t3 = true; if (t3) animationStart = 1; t1._flutter_typeahead$_animationController.forward$1$from(0, animationStart); t1._flutter_typeahead$_error = t2.error; t1._flutter_typeahead$_isLoading = false; t1._suggestions = t2.suggestions; }, $signature: 1 }; L._SuggestionsListState_createSuggestionsWidget_closure.prototype = { call$1: function(suggestion) { var t3, _null = null, t1 = this.$this, t2 = t1._widget; t2.toString; t3 = t1._framework$_element; t3.toString; return R.InkWell$(false, _null, true, t2.itemBuilder.call$2(t3, suggestion), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new L._SuggestionsListState_createSuggestionsWidget__closure(t1, suggestion), _null, _null, _null, _null, _null); }, $signature: function() { return this.$this.$ti._eval$1("InkWell*(1*)"); } }; L._SuggestionsListState_createSuggestionsWidget__closure.prototype = { call$0: function() { this.$this._widget.onSuggestionSelected.call$1(this.suggestion); }, $signature: 1 }; L.SuggestionsBoxDecoration.prototype = {}; L.TextFieldConfiguration.prototype = {}; L._SuggestionsBox.prototype = { open$0: function(_) { var result, _this = this; if (_this.isOpened) return; result = _this.context.findAncestorStateOfType$1$0(type$.OverlayState); result.insert$1(0, _this._overlayEntry); _this.isOpened = true; }, close$0: function(_) { if (!this.isOpened) return; this._overlayEntry.remove$0(0); this.isOpened = false; }, _findRootMediaQuery$0: function() { var t1 = {}; t1.rootMediaQuery = null; this.context.visitAncestorElements$1(new L._SuggestionsBox__findRootMediaQuery_closure(t1)); return t1.rootMediaQuery; }, _waitChangeMetrics$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this, t1, t2, initial, initialRootMediaQuery, t3, timer, t4; var $async$_waitChangeMetrics$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = $async$self.widgetMounted ? 3 : 4; break; case 3: // then t1 = $async$self.context; t2 = type$.MediaQuery; initial = t1.dependOnInheritedWidgetOfExactType$1$0(t2).data.viewInsets; initialRootMediaQuery = $async$self._findRootMediaQuery$0(); t3 = type$.dynamic; timer = 0; case 5: // while condition if (!($async$self.widgetMounted && timer < 1000)) { // goto after while $async$goto = 6; break; } $async$goto = 7; return P._asyncAwait(P.Future_Future$delayed(C.Duration_170000, null, t3), $async$_waitChangeMetrics$0); case 7: // returning from await. timer += 170; if ($async$self.widgetMounted) t4 = !t1.dependOnInheritedWidgetOfExactType$1$0(t2).data.viewInsets.$eq(0, initial) || !J.$eq$($async$self._findRootMediaQuery$0(), initialRootMediaQuery); else t4 = false; if (t4) { $async$returnValue = true; // goto return $async$goto = 1; break; } // goto while condition $async$goto = 5; break; case 6: // after while case 4: // join $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_waitChangeMetrics$0, $async$completer); }, resize$0: function(_) { var t1, widget, box, t2, textBoxAbsY, windowHeight, rootMediaQuery, keyboardHeight, maxHDesired, flipped, maxHFlipped, _this = this; if (_this.widgetMounted) { t1 = _this.context; widget = type$.legacy_TypeAheadField_dynamic._as(t1._widget); box = t1.get$renderObject(); t2 = box._box$_size; _this.textBoxWidth = t2._dx; _this.textBoxHeight = t2._dy; textBoxAbsY = T.MatrixUtils_transformPoint(box.getTransformTo$1(0, null), C.Offset_0_0)._dy; windowHeight = t1.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dy; rootMediaQuery = _this._findRootMediaQuery$0(); keyboardHeight = rootMediaQuery.data.viewInsets.bottom; t1 = _this.desiredDirection; maxHDesired = _this._calculateMaxHeight$7(t1, box, widget, windowHeight, rootMediaQuery, keyboardHeight, textBoxAbsY); if (maxHDesired >= 64 || false) { _this.direction = t1; _this.maxHeight = maxHDesired; } else { flipped = G.flipAxisDirection(t1); maxHFlipped = _this._calculateMaxHeight$7(flipped, box, widget, windowHeight, rootMediaQuery, keyboardHeight, textBoxAbsY); if (maxHFlipped > maxHDesired) { _this.direction = flipped; _this.maxHeight = maxHFlipped; } } if (_this.maxHeight < 0) _this.maxHeight = 0; _this._overlayEntry.markNeedsBuild$0(); } }, _calculateMaxHeight$7: function(direction, box, widget, windowHeight, rootMediaQuery, keyboardHeight, textBoxAbsY) { var unsafeAreaHeight, t1, keyboardAbsY, t2, t3, t0; if (direction === C.AxisDirection_2) { unsafeAreaHeight = keyboardHeight === 0 && true ? rootMediaQuery.data.padding.bottom : 0; t1 = windowHeight - keyboardHeight - unsafeAreaHeight - this.textBoxHeight - textBoxAbsY - 2 * widget.suggestionsBoxVerticalOffset; } else { keyboardAbsY = windowHeight - keyboardHeight; t1 = textBoxAbsY > keyboardAbsY; if (t1) { t2 = widget.suggestionsBoxVerticalOffset; t3 = keyboardAbsY - textBoxAbsY - t2; t0 = t3; t3 = t2; t2 = t0; } else { t2 = widget.suggestionsBoxVerticalOffset; t3 = -t2; t0 = t3; t3 = t2; t2 = t0; } this.directionUpOffset = t2; unsafeAreaHeight = rootMediaQuery.data.padding.top; t2 = 2 * t3; if (t1) { widget.toString; t1 = keyboardAbsY - unsafeAreaHeight - t2; } else { widget.toString; t1 = textBoxAbsY - unsafeAreaHeight - t2; } } return t1; }, onChangeMetrics$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$self = this; var $async$onChangeMetrics$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait($async$self._waitChangeMetrics$0(), $async$onChangeMetrics$0); case 2: // returning from await. if ($async$result) $async$self.resize$0(0); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$onChangeMetrics$0, $async$completer); } }; L._SuggestionsBox__findRootMediaQuery_closure.prototype = { call$1: function(element) { if (element.get$widget() instanceof F.MediaQuery) this._box_0.rootMediaQuery = type$.legacy_MediaQuery._as(element.get$widget()); return true; }, $signature: 1312 }; L.__SuggestionsListState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; L.__TypeAheadFieldState_State_WidgetsBindingObserver.prototype = {}; L.JsUrlStrategy0.prototype = {}; D.Registrar.prototype = { handlePlatformMessage$3: function(channel, data, callback) { return this.handleFrameworkMessage$3(channel, data, callback); }, handleFrameworkMessage$3: function(channel, data, callback) { return this.handleFrameworkMessage$body$Registrar(channel, data, callback); }, handleFrameworkMessage$body$Registrar: function(channel, data, callback) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, handler, exception, stack, exception0, t1, response, $async$exception0; var $async$handleFrameworkMessage$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start response = null; $async$handler = 3; handler = $async$self._handlers.$index(0, channel); $async$goto = handler != null ? 6 : 7; break; case 6: // then $async$goto = 8; return P._asyncAwait(handler.call$1(data), $async$handleFrameworkMessage$3); case 8: // returning from await. response = $async$result; case 7: // join $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // catch $async$handler = 2; $async$exception0 = $async$currentError; exception = H.unwrapException($async$exception0); stack = H.getTraceFromException($async$exception0); t1 = U.ErrorDescription$("during a framework-to-plugin message"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "flutter web plugins", t1, null, false)); $async$next.push(5); // goto finally $async$goto = 4; break; case 2: // uncaught $async$next = [1]; case 4: // finally $async$handler = 1; if (callback != null) callback.call$1(response); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$handleFrameworkMessage$3, $async$completer); }, send$2: function(_, channel, message) { var t1 = new P._Future($.Zone__current, type$._Future_nullable_ByteData); $.$get$window().platformDispatcher._onPlatformMessage.call$3(channel, message, new D.Registrar_send_closure(new P._AsyncCompleter(t1, type$._AsyncCompleter_nullable_ByteData))); return t1; }, setMessageHandler$2: function(channel, handler) { var t1 = this._handlers; if (handler == null) t1.remove$1(0, channel); else t1.$indexSet(0, channel, handler); } }; D.Registrar_send_closure.prototype = { call$1: function(reply) { var exception, stack, exception0, t1; try { this.completer.complete$1(0, reply); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t1 = U.ErrorDescription$("during a plugin-to-framework message"); U.FlutterError_reportError(new U.FlutterErrorDetails(exception, stack, "flutter web plugins", t1, null, false)); } }, $signature: 117 }; D.PluginRegistry.prototype = {}; K.GoogleSignInAuthentication.prototype = { toString$0: function(_) { return "GoogleSignInAuthentication:" + this._google_sign_in$_data.toString$0(0); } }; K.GoogleSignInAccount.prototype = { get$authentication: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.GoogleSignInAuthentication), $async$returnValue, $async$self = this, response; var $async$get$authentication = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!J.$eq$($async$self._googleSignIn._currentUser, $async$self)) throw H.wrapException(P.StateError$("User is no longer signed in.")); $async$goto = 3; return P._asyncAwait($.$get$GoogleSignInPlatform__instance().getTokens$2$email$shouldRecoverAuth($async$self.email, true), $async$get$authentication); case 3: // returning from await. response = $async$result; if (response.idToken == null) response.idToken = $async$self._idToken; $async$returnValue = new K.GoogleSignInAuthentication(response); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$get$authentication, $async$completer); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof K.GoogleSignInAccount)) return false; return _this.displayName == other.displayName && _this.email == other.email && _this.id == other.id && _this.photoUrl == other.photoUrl && _this._idToken == other._idToken; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.displayName, _this.email, _this.id, _this.photoUrl, _this._idToken, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, toString$0: function(_) { var _this = this; return "GoogleSignInAccount:" + P.LinkedHashMap_LinkedHashMap$_literal(["displayName", _this.displayName, "email", _this.email, "id", _this.id, "photoUrl", _this.photoUrl], type$.String, type$.dynamic).toString$0(0); }, get$id: function(receiver) { return this.id; } }; K.GoogleSignIn.prototype = { _callMethod$1: function(method) { return this._callMethod$body$GoogleSignIn(method); }, _callMethod$body$GoogleSignIn: function(method) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$self = this, response, t1; var $async$_callMethod$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self._ensureInitialized$0(), $async$_callMethod$1); case 3: // returning from await. $async$goto = 4; return P._asyncAwait(method.call$0(), $async$_callMethod$1); case 4: // returning from await. response = $async$result; t1 = response != null && response instanceof G.GoogleSignInUserData ? new K.GoogleSignInAccount(response.displayName, response.email, response.id, response.photoUrl, response.idToken, $async$self) : null; if (!J.$eq$(t1, $async$self._currentUser)) { $async$self._currentUser = t1; $async$self._currentUserController.add$1(0, t1); } $async$returnValue = $async$self._currentUser; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_callMethod$1, $async$completer); }, _ensureInitialized$0: function() { var _this = this, t1 = _this._initialization; if (t1 == null) { t1 = $.$get$GoogleSignInPlatform__instance().init$4$clientId$hostedDomain$scopes$signInOption(null, null, _this.scopes, C.SignInOption_0); t1.catchError$1(new K.GoogleSignIn__ensureInitialized_closure(_this)); _this._initialization = t1; } return t1; }, _addMethodCall$2$canSkipCall: function(method, canSkipCall) { return this._addMethodCall$body$GoogleSignIn(method, canSkipCall); }, _addMethodCall$1: function(method) { return this._addMethodCall$2$canSkipCall(method, false); }, _addMethodCall$body$GoogleSignIn: function(method, canSkipCall) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$self = this, t1, response; var $async$_addMethodCall$2$canSkipCall = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._lastMethodCall; response = t1 == null ? $async$self._callMethod$1(method) : t1.then$1$1(0, new K.GoogleSignIn__addMethodCall_closure($async$self, canSkipCall, method), type$.nullable_GoogleSignInAccount); $async$self._lastMethodCall = K.GoogleSignIn__waitFor(response); $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_addMethodCall$2$canSkipCall, $async$completer); }, signInSilently$0: function() { var suppressErrors = true; return this.signInSilently$body$GoogleSignIn(); }, signInSilently$body$GoogleSignIn: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInAccount), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, t1, exception, suppressErrors, $async$exception; var $async$signInSilently$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start suppressErrors = true; $async$handler = 4; $async$goto = 7; return P._asyncAwait($async$self._addMethodCall$2$canSkipCall($.$get$GoogleSignInPlatform__instance().get$signInSilently(), true), $async$signInSilently$0); case 7: // returning from await. t1 = $async$result; $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; H.unwrapException($async$exception); if (suppressErrors) { $async$returnValue = null; // goto return $async$goto = 1; break; } else throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$signInSilently$0, $async$completer); }, signIn$0: function(_) { var t1 = $.$get$GoogleSignInPlatform__instance(); return this._addMethodCall$2$canSkipCall(t1.get$signIn(t1), true).catchError$2$test(new K.GoogleSignIn_signIn_closure(), new K.GoogleSignIn_signIn_isCanceled()); } }; K.GoogleSignIn__ensureInitialized_closure.prototype = { call$1: function(_) { this.$this._initialization = null; }, $signature: 8 }; K.GoogleSignIn__waitFor_closure.prototype = { call$1: function(_) { }, $signature: 8 }; K.GoogleSignIn__addMethodCall_closure.prototype = { call$1: function(_) { var _this = this; if (_this.canSkipCall && _this.$this._currentUser != null) return _this.$this._currentUser; return _this.$this._callMethod$1(_this.method); }, $signature: 1295 }; K.GoogleSignIn_signIn_isCanceled.prototype = { call$1: function(error) { return error instanceof F.PlatformException && error.code === "sign_in_canceled"; }, $signature: 110 }; K.GoogleSignIn_signIn_closure.prototype = { call$1: function(_) { return null; }, $signature: 8 }; X.GoogleSignInPlatform.prototype = {}; O.MethodChannelGoogleSignIn.prototype = { init$4$clientId$hostedDomain$scopes$signInOption: function(clientId, hostedDomain, scopes, signInOption) { return C.MethodChannel_Kf8._invokeMethod$1$3$arguments$missingOk("init", P.LinkedHashMap_LinkedHashMap$_literal(["signInOption", "SignInOption.standard", "scopes", scopes, "hostedDomain", hostedDomain, "clientId", clientId], type$.String, type$.dynamic), false, type$.void); }, signInSilently$0: function() { return C.MethodChannel_Kf8.invokeMapMethod$2$1("signInSilently", type$.String, type$.dynamic).then$1$1(0, B.utils__getUserDataFromMap$closure(), type$.nullable_GoogleSignInUserData); }, signIn$0: function(_) { return C.MethodChannel_Kf8.invokeMapMethod$2$1("signIn", type$.String, type$.dynamic).then$1$1(0, B.utils__getUserDataFromMap$closure(), type$.nullable_GoogleSignInUserData); }, getTokens$2$email$shouldRecoverAuth: function(email, shouldRecoverAuth) { var t1 = type$.String, t2 = type$.dynamic; return C.MethodChannel_Kf8.invokeMapMethod$2$2("getTokens", P.LinkedHashMap_LinkedHashMap$_literal(["email", email, "shouldRecoverAuth", true], t1, t2), t1, t2).then$1$1(0, new O.MethodChannelGoogleSignIn_getTokens_closure(), type$.GoogleSignInTokenData); }, signOut$0: function(_) { return C.MethodChannel_Kf8.invokeMapMethod$2$1("signOut", type$.String, type$.dynamic); }, disconnect$0: function(_) { return C.MethodChannel_Kf8.invokeMapMethod$2$1("disconnect", type$.String, type$.dynamic); } }; O.MethodChannelGoogleSignIn_getTokens_closure.prototype = { call$1: function(result) { var t1; result.toString; t1 = J.getInterceptor$asx(result); return new G.GoogleSignInTokenData(t1.$index(result, "idToken"), t1.$index(result, "accessToken"), t1.$index(result, "serverAuthCode")); }, $signature: 1227 }; G.SignInOption.prototype = { toString$0: function(_) { return "SignInOption.standard"; } }; G.GoogleSignInUserData.prototype = { get$hashCode: function(_) { var _this = this; return A.hashObjects1(H.setRuntimeTypeInfo([_this.displayName, _this.email, _this.id, _this.photoUrl, _this.idToken], type$.JSArray_nullable_String)); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof G.GoogleSignInUserData)) return false; return other.displayName == _this.displayName && other.email == _this.email && other.id == _this.id && other.photoUrl == _this.photoUrl && other.idToken == _this.idToken; }, get$id: function(receiver) { return this.id; } }; G.GoogleSignInTokenData.prototype = { get$hashCode: function(_) { return A._finish0(A._combine0(A._combine0(A._combine0(0, J.get$hashCode$(this.idToken)), J.get$hashCode$(this.accessToken)), J.get$hashCode$(this.serverAuthCode))); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!(other instanceof G.GoogleSignInTokenData)) return false; return other.idToken == _this.idToken && other.accessToken == _this.accessToken && other.serverAuthCode == _this.serverAuthCode; } }; M.GoogleSignInPlugin.prototype = { GoogleSignInPlugin$0: function() { var t1 = document.querySelector("meta[name=google-signin-client_id]"); this._autoDetectedClientId = t1 == null ? null : t1.getAttribute("content"); this.__GoogleSignInPlugin__isGapiInitialized = L.inject("https://apis.google.com/js/platform.js").then$1$1(0, new M.GoogleSignInPlugin_closure(), type$.void); }, get$_isGapiInitialized: function() { var t1 = this.__GoogleSignInPlugin__isGapiInitialized; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_isGapiInitialized")) : t1; }, get$_isAuthInitialized: function() { var t1 = this.__GoogleSignInPlugin__isAuthInitialized; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_isAuthInitialized")) : t1; }, get$initialized: function() { if (!this._isInitCalled) H.throwExpression(P.StateError$("GoogleSignInPlugin::init() must be called before any other method in this plugin.")); return P.Future_wait(H.setRuntimeTypeInfo([this.get$_isGapiInitialized(), this.get$_isAuthInitialized()], type$.JSArray_Future_void), type$.void); }, init$4$clientId$hostedDomain$scopes$signInOption: function(clientId, hostedDomain, scopes, signInOption) { return this.init$body$GoogleSignInPlugin(clientId, hostedDomain, scopes, signInOption); }, init$body$GoogleSignInPlugin: function(clientId, hostedDomain, scopes, signInOption) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, auth, isAuthInitialized, appClientId; var $async$init$4$clientId$hostedDomain$scopes$signInOption = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start appClientId = $async$self._autoDetectedClientId; $async$goto = 3; return P._asyncAwait($async$self.get$_isGapiInitialized(), $async$init$4$clientId$hostedDomain$scopes$signInOption); case 3: // returning from await. t1 = C.JSArray_methods.join$1(scopes, " "); appClientId.toString; auth = self.gapi.auth2.init({client_id: appClientId, scope: t1, hosted_domain: hostedDomain}); t1 = new P._Future($.Zone__current, type$._Future_void); isAuthInitialized = new P._AsyncCompleter(t1, type$._AsyncCompleter_void); $async$self.__GoogleSignInPlugin__isAuthInitialized = t1; $async$self._isInitCalled = true; J.then$2$x(auth, P.allowInterop(new M.GoogleSignInPlugin_init_closure(isAuthInitialized)), P.allowInterop(new M.GoogleSignInPlugin_init_closure0(isAuthInitialized))); $async$returnValue = $async$self.get$_isAuthInitialized(); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$init$4$clientId$hostedDomain$scopes$signInOption, $async$completer); }, signInSilently$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInUserData), $async$returnValue, $async$self = this, t1, $async$temp1; var $async$signInSilently$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.get$initialized(), $async$signInSilently$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) t1 = null; else { t1 = J.get$currentUser$x(t1); t1 = t1 == null ? null : J.$get$0$x(t1); } $async$temp1 = B; $async$goto = 4; return P._asyncAwait(t1, $async$signInSilently$0); case 4: // returning from await. $async$returnValue = $async$temp1.gapiUserToPluginUserData($async$result); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$signInSilently$0, $async$completer); }, signIn$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_GoogleSignInUserData), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, reason, t1, exception, $async$exception, $async$temp1; var $async$signIn$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.get$initialized(), $async$signIn$0); case 3: // returning from await. $async$handler = 5; t1 = self.gapi.auth2.getAuthInstance(); $async$temp1 = B; $async$goto = 8; return P._asyncAwait(t1 == null ? null : P.promiseToFuture(J.signIn$1$x(t1, null), type$.GoogleUser), $async$signIn$0); case 8: // returning from await. t1 = $async$temp1.gapiUserToPluginUserData($async$result); $async$returnValue = t1; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception = $async$currentError; t1 = H.unwrapException($async$exception); if (type$.GoogleAuthSignInError._is(t1)) { reason = t1; throw H.wrapException(F.PlatformException$(J.get$error$x(reason), "https://developers.google.com/identity/sign-in/web/reference#error_codes_2", "Exception raised from GoogleAuth.signIn()", null)); } else throw $async$exception; // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$signIn$0, $async$completer); }, getTokens$2$email$shouldRecoverAuth: function(email, shouldRecoverAuth) { return this.getTokens$body$GoogleSignInPlugin(email, true); }, getTokens$body$GoogleSignInPlugin: function(email, shouldRecoverAuth) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.GoogleSignInTokenData), $async$returnValue, $async$self = this, t1, currentUser, response, t2; var $async$getTokens$2$email$shouldRecoverAuth = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.get$initialized(), $async$getTokens$2$email$shouldRecoverAuth); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) currentUser = null; else { t1 = J.get$currentUser$x(t1); currentUser = t1 == null ? null : J.$get$0$x(t1); } response = currentUser == null ? null : J.getAuthResponse$0$x(currentUser); t1 = response == null; t2 = t1 ? null : J.get$id_token$x(response); $async$returnValue = new G.GoogleSignInTokenData(t2, t1 ? null : J.get$access_token$x(response), null); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getTokens$2$email$shouldRecoverAuth, $async$completer); }, signOut$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$signOut$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.get$initialized(), $async$signOut$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); $async$returnValue = t1 == null ? null : J.signOut$0$x(t1); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$signOut$0, $async$completer); }, disconnect$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1, currentUser; var $async$disconnect$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.get$initialized(), $async$disconnect$0); case 3: // returning from await. t1 = self.gapi.auth2.getAuthInstance(); if (t1 == null) currentUser = null; else { t1 = J.get$currentUser$x(t1); currentUser = t1 == null ? null : J.$get$0$x(t1); } if (currentUser == null) { // goto return $async$goto = 1; break; } $async$returnValue = J.disconnect$0$x(currentUser); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$disconnect$0, $async$completer); } }; M.GoogleSignInPlugin_closure.prototype = { call$1: function(_) { return L.init(); }, $signature: 636 }; M.GoogleSignInPlugin_init_closure.prototype = { call$1: function(initializedAuth) { this.isAuthInitialized.complete$0(0); }, $signature: 1226 }; M.GoogleSignInPlugin_init_closure0.prototype = { call$1: function(reason) { var t1 = J.getInterceptor$x(reason); this.isAuthInitialized.completeError$1(new F.PlatformException(t1.get$error(reason), t1.get$details(reason), "https://developers.google.com/identity/sign-in/web/reference#error_codes", null)); }, $signature: 1223 }; Q.LoadConfig.prototype = {}; U.GoogleAuthInitFailureError.prototype = {}; U.GoogleAuthSignInError.prototype = {}; U.OfflineAccessResponse.prototype = {}; U.GoogleAuth.prototype = {}; U._GoogleAuth.prototype = {}; U.IsSignedIn.prototype = {}; U.CurrentUser.prototype = {}; U.SigninOptions.prototype = {}; U.OfflineAccessOptions.prototype = {}; U.ClientConfig.prototype = {}; U.SigninOptionsBuilder.prototype = {}; U.BasicProfile.prototype = {}; U.AuthResponse.prototype = {}; U.AuthorizeConfig.prototype = {}; U.AuthorizeResponse.prototype = {}; U.GoogleUser.prototype = {}; U._GoogleUser.prototype = {}; U.Promise.prototype = {}; L.inject_closure.prototype = { call$0: function() { this.gapiOnLoad.complete$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.init_closure.prototype = { call$0: function() { this.gapiLoadCompleter.complete$0(0); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.injectJSLibraries_closure.prototype = { call$1: function(library) { var t1, script = document.createElement("script"); script.async = true; script.defer = true; script.src = library; t1 = new W._ElementEventStreamImpl(script, "load", false, type$._ElementEventStreamImpl_legacy_Event); this.loading.push(t1.get$first(t1)); this.tags.push(script); }, $signature: 88 }; E.BaseClient.prototype = { _sendUnstreamed$5: function(method, url, headers, body, encoding) { return this._sendUnstreamed$body$BaseClient(method, url, headers, body, encoding); }, _sendUnstreamed$3: function(method, url, headers) { return this._sendUnstreamed$5(method, url, headers, null, null); }, _sendUnstreamed$body$BaseClient: function(method, url, headers, body, encoding) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Response), $async$returnValue, $async$self = this, t1, contentType, request, $async$temp1; var $async$_sendUnstreamed$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start request = O.Request$(method, url); if (headers != null) request.headers.addAll$1(0, headers); if (body != null) if (typeof body == "string") request.set$body(0, body); else if (type$.List_dynamic._is(body)) { t1 = J.cast$1$0$ax(body, type$.int); request._checkFinalized$0(); request._bodyBytes = B.toUint8List(t1); } else if (type$.Map_dynamic_dynamic._is(body)) { t1 = type$.String; t1 = body.cast$2$0(body, t1, t1); contentType = request.get$_contentType(); if (contentType == null) request.set$_contentType(R.MediaType$("application", "x-www-form-urlencoded", null)); else if (contentType.type + "/" + contentType.subtype !== "application/x-www-form-urlencoded") H.throwExpression(P.StateError$('Cannot set the body fields of a Request with content-type "' + contentType.get$mimeType(contentType) + '".')); request.set$body(0, B.mapToQuery(t1, request.get$encoding(request))); } else throw H.wrapException(P.ArgumentError$('Invalid request body "' + H.S(body) + '".')); $async$temp1 = U; $async$goto = 3; return P._asyncAwait($async$self.send$1(0, request), $async$_sendUnstreamed$5); case 3: // returning from await. $async$returnValue = $async$temp1.Response_fromStream($async$result); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_sendUnstreamed$5, $async$completer); } }; G.BaseRequest.prototype = { finalize$0: function() { if (this._finalized) throw H.wrapException(P.StateError$("Can't finalize a finalized Request.")); this._finalized = true; return C.ByteStream__EmptyStream; }, send$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.StreamedResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, response, stream, t1, t2, t3, t4, exception, client, $async$exception; var $async$send$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start client = new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$handler = 4; $async$goto = 7; return P._asyncAwait(J.send$1$x(client, $async$self), $async$send$0); case 7: // returning from await. response = $async$result; stream = B.onDone(response.stream, J.get$close$x(client), type$.List_int); t1 = response.statusCode; t2 = response.contentLength; t3 = response.request; t4 = response.headers; response.toString; response.toString; t3 = X.StreamedResponse$(new Z.ByteStream(stream), t1, t2, t4, false, true, response.reasonPhrase, t3); $async$returnValue = t3; // goto return $async$goto = 1; break; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; H.unwrapException($async$exception); J.close$0$x(client); throw $async$exception; // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$send$0, $async$completer); }, toString$0: function(_) { return this.method + " " + this.url.toString$0(0); } }; G.BaseRequest_closure.prototype = { call$2: function(key1, key2) { return key1.toLowerCase() === key2.toLowerCase(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1222 }; G.BaseRequest_closure0.prototype = { call$1: function(key) { return C.JSString_methods.get$hashCode(key.toLowerCase()); }, $signature: 1194 }; T.BaseResponse.prototype = { BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request: function(statusCode, contentLength, headers, isRedirect, persistentConnection, reasonPhrase, request) { var t1 = this.statusCode; if (t1 < 100) throw H.wrapException(P.ArgumentError$("Invalid status code " + H.S(t1) + ".")); else { t1 = this.contentLength; if (t1 != null && t1 < 0) throw H.wrapException(P.ArgumentError$("Invalid content length " + H.S(t1) + ".")); } } }; O.BrowserClient.prototype = { send$1: function(_, request) { return this.send$body$BrowserClient(_, request); }, send$body$BrowserClient: function(_, request) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.StreamedResponse), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, completer, t2, t3, t4, bytes, xhr, t1; var $async$send$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(request.finalize$0().toBytes$0(), $async$send$1); case 3: // returning from await. bytes = $async$result; xhr = new XMLHttpRequest(); t1 = $async$self._xhrs; t1.add$1(0, xhr); t2 = xhr; J.open$3$async$x(t2, request.method, request.url.toString$0(0), true); t2.responseType = "arraybuffer"; t2.withCredentials = false; request.headers.forEach$1(0, J.get$setRequestHeader$x(xhr)); completer = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_StreamedResponse), type$._AsyncCompleter_StreamedResponse); t2 = type$._EventStream_legacy_ProgressEvent; t3 = new W._EventStream(xhr, "load", false, t2); t4 = type$.void; t3.get$first(t3).then$1$1(0, new O.BrowserClient_send_closure(xhr, completer, request), t4); t2 = new W._EventStream(xhr, "error", false, t2); t2.get$first(t2).then$1$1(0, new O.BrowserClient_send_closure0(completer, request), t4); J.send$1$x(xhr, bytes); $async$handler = 4; $async$goto = 7; return P._asyncAwait(completer.future, $async$send$1); case 7: // returning from await. t2 = $async$result; $async$returnValue = t2; $async$next = [1]; // goto finally $async$goto = 5; break; $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; t1.remove$1(0, xhr); // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$send$1, $async$completer); }, close$0: function(_) { var t1; for (t1 = this._xhrs, t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.abort(); } }; O.BrowserClient_send_closure.prototype = { call$1: function(_) { var t1 = this.xhr, body = J.asUint8List$0$x(type$.ByteBuffer._as(W._convertNativeToDart_XHR_Response(t1.response))), t2 = P.Stream_Stream$fromIterable(H.setRuntimeTypeInfo([body], type$.JSArray_List_int), type$.List_int), t3 = t1.status; t3.toString; this.completer.complete$1(0, X.StreamedResponse$(new Z.ByteStream(t2), t3, J.get$length$asx(body), C.HttpRequest_methods.get$responseHeaders(t1), false, true, t1.statusText, this.request)); }, $signature: 489 }; O.BrowserClient_send_closure0.prototype = { call$1: function(_) { this.completer.completeError$2(new E.ClientException("XMLHttpRequest error."), P.StackTrace_current()); }, $signature: 489 }; Z.ByteStream.prototype = { toBytes$0: function() { var t1 = new P._Future($.Zone__current, type$._Future_Uint8List), completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_Uint8List), sink = new P._ByteCallbackSink(new Z.ByteStream_toBytes_closure(completer), new Uint8Array(1024)); this.listen$4$cancelOnError$onDone$onError(0, sink.get$add(sink), true, sink.get$close(sink), completer.get$completeError()); return t1; } }; Z.ByteStream_toBytes_closure.prototype = { call$1: function(bytes) { return this.completer.complete$1(0, new Uint8Array(H._ensureNativeList(bytes))); }, $signature: 648 }; E.ClientException.prototype = { toString$0: function(_) { return this.message; }, $isException: 1 }; K.MultipartFile.prototype = { get$length: function(receiver) { return this.length; } }; D.MultipartRequest.prototype = { finalize$0: function() { var _this = this, boundary = _this._boundaryString$0(); _this.headers.$indexSet(0, "content-type", "multipart/form-data; boundary=" + boundary); _this.super$BaseRequest$finalize(); return new Z.ByteStream(_this._finalize$1(boundary)); }, _finalize$1: function(boundary) { return this._finalize$body$MultipartRequest(boundary); }, _finalize$body$MultipartRequest: function(boundary) { var $async$_finalize$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { switch ($async$errorCode) { case 2: $async$next = $async$nextWhenCanceled; $async$goto = $async$next.pop(); break; case 1: $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = "--" + boundary + "\r\n"; separator = C.C_Utf8Codec.get$encoder().convert$1(t1); t1 = "--" + boundary + "--\r\n"; $close = C.C_Utf8Codec.get$encoder().convert$1(t1); t1 = $async$self.fields, t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1); case 3: // for condition if (!t1.moveNext$0()) { // goto after for $async$goto = 4; break; } t2 = t1.get$current(t1); $async$goto = 5; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(separator), $async$_finalize$1, $async$controller); case 5: // after yield t3 = t2.get$key(t2); t4 = t2.get$value(t2); t5 = $.$get$_newlineRegExp(); t3.toString; t3 = H.stringReplaceAllUnchecked(t3, t5, "%0D%0A"); header = 'content-disposition: form-data; name="' + H.stringReplaceAllUnchecked(t3, '"', "%22") + '"'; t3 = $.$get$_asciiOnly()._nativeRegExp; if (typeof t4 != "string") H.throwExpression(H.argumentErrorValue(t4)); t5 = (!t3.test(t4) ? header + "\r\ncontent-type: text/plain; charset=utf-8\r\ncontent-transfer-encoding: binary" : header) + "\r\n\r\n"; $async$goto = 6; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(C.C_Utf8Codec.get$encoder().convert$1(t5)), $async$_finalize$1, $async$controller); case 6: // after yield t2 = t2.get$value(t2); $async$goto = 7; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(C.C_Utf8Codec.get$encoder().convert$1(t2)), $async$_finalize$1, $async$controller); case 7: // after yield $async$goto = 8; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(C.List_13_10), $async$_finalize$1, $async$controller); case 8: // after yield // goto for condition $async$goto = 3; break; case 4: // after for t1 = $async$self.files, t2 = t1.length, _i = 0; case 9: // for condition if (!(_i < t1.length)) { // goto after for $async$goto = 11; break; } file = t1[_i]; $async$goto = 12; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(separator), $async$_finalize$1, $async$controller); case 12: // after yield t3 = "content-type: " + file.contentType.toString$0(0) + '\r\ncontent-disposition: form-data; name="'; t4 = file.field; t5 = $.$get$_newlineRegExp(); t4 = H.stringReplaceAllUnchecked(t4, t5, "%0D%0A"); header = t3 + H.stringReplaceAllUnchecked(t4, '"', "%22") + '"'; t3 = file.filename; if (t3 != null) { t4 = header + '; filename="'; t3 = H.stringReplaceAllUnchecked(t3, t5, "%0D%0A"); header = t4 + H.stringReplaceAllUnchecked(t3, '"', "%22") + '"'; } t3 = header + "\r\n\r\n"; $async$goto = 13; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(C.C_Utf8Codec.get$encoder().convert$1(t3)), $async$_finalize$1, $async$controller); case 13: // after yield if (file._isFinalized) H.throwExpression(P.StateError$("Can't finalize a finalized MultipartFile.")); file._isFinalized = true; $async$goto = 14; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldStar(file._multipart_file$_stream), $async$_finalize$1, $async$controller); case 14: // after yield $async$goto = 15; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle(C.List_13_10), $async$_finalize$1, $async$controller); case 15: // after yield case 10: // for update t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i; // goto for condition $async$goto = 9; break; case 11: // after for $async$goto = 16; $async$nextWhenCanceled = [1]; return P._asyncStarHelper(P._IterationMarker_yieldSingle($close), $async$_finalize$1, $async$controller); case 16: // after yield case 1: // return return P._asyncStarHelper(null, 0, $async$controller); case 2: // rethrow return P._asyncStarHelper($async$currentError, 1, $async$controller); } }); var $async$goto = 0, $async$controller = P._makeAsyncStarStreamController($async$_finalize$1, type$.List_int), $async$nextWhenCanceled, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, $close, t2, t3, t4, t5, header, _i, file, t1, separator; return P._streamOfController($async$controller); }, _boundaryString$0: function() { var index, list = J.JSArray_JSArray$markFixed(new Array(51), type$.int); for (index = 0; index < 51; ++index) list[index] = C.List_Kxv[$.$get$MultipartRequest__random().nextInt$1(66)]; return "dart-http-boundary-" + P.String_String$fromCharCodes(list, 0, null); } }; O.Request.prototype = { get$encoding: function(_) { var t1, t2, _this = this; if (_this.get$_contentType() == null || !J.containsKey$1$x(_this.get$_contentType().parameters._collection$_map, "charset")) return _this._defaultEncoding; t1 = J.$index$asx(_this.get$_contentType().parameters._collection$_map, "charset"); t1.toString; t2 = P.Encoding_getByName(t1); return t2 == null ? H.throwExpression(P.FormatException$('Unsupported encoding "' + t1 + '".', null, null)) : t2; }, get$bodyBytes: function() { return this._bodyBytes; }, get$body: function(_) { return this.get$encoding(this).decode$1(0, this._bodyBytes); }, set$body: function(_, value) { var contentType, t2, _this = this, t1 = _this.get$encoding(_this).encode$1(value); _this._checkFinalized$0(); _this._bodyBytes = B.toUint8List(t1); contentType = _this.get$_contentType(); if (contentType == null) { t1 = _this.get$encoding(_this); t2 = type$.String; _this.set$_contentType(R.MediaType$("text", "plain", P.LinkedHashMap_LinkedHashMap$_literal(["charset", t1.get$name(t1)], t2, t2))); } else if (!J.containsKey$1$x(contentType.parameters._collection$_map, "charset")) { t1 = _this.get$encoding(_this); t2 = type$.String; _this.set$_contentType(contentType.change$1$parameters(P.LinkedHashMap_LinkedHashMap$_literal(["charset", t1.get$name(t1)], t2, t2))); } }, finalize$0: function() { this.super$BaseRequest$finalize(); return new Z.ByteStream(P.Stream_Stream$fromIterable(H.setRuntimeTypeInfo([this._bodyBytes], type$.JSArray_List_int), type$.List_int)); }, get$_contentType: function() { var contentType = this.headers.$index(0, "content-type"); if (contentType == null) return null; return R.MediaType_MediaType$parse(contentType); }, set$_contentType: function(value) { this.headers.$indexSet(0, "content-type", value.toString$0(0)); }, _checkFinalized$0: function() { if (!this._finalized) return; throw H.wrapException(P.StateError$("Can't modify a finalized Request.")); } }; U.Response.prototype = { get$body: function(_) { return B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(this.headers).parameters._collection$_map, "charset")).decode$1(0, this.bodyBytes); }, get$bodyBytes: function() { return this.bodyBytes; } }; X.StreamedResponse.prototype = {}; B.mapToQuery_closure.prototype = { call$2: function(key, value) { var t1 = this.encoding, t2 = P._Uri__uriEncode(C.List_nxB, key, t1, true); return this.pairs.push(H.setRuntimeTypeInfo([t2, P._Uri__uriEncode(C.List_nxB, value, t1, true)], type$.JSArray_String)); }, $signature: 105 }; B.mapToQuery_closure0.prototype = { call$1: function(pair) { var t1 = J.getInterceptor$asx(pair); return H.S(t1.$index(pair, 0)) + "=" + H.S(t1.$index(pair, 1)); }, $signature: 1190 }; B.onDone_closure.prototype = { call$1: function(sink) { var t1 = sink._async$_sink; if ((t1._state & 2) !== 0) H.throwExpression(P.StateError$("Stream is already closed")); t1.super$_BufferingStreamSubscription$_close(); this.onDone.call$0(); }, $signature: function() { return this.T._eval$1("~(EventSink<0>)"); } }; Z.CaseInsensitiveMap.prototype = {}; Z.CaseInsensitiveMap$from_closure.prototype = { call$1: function(key) { return key.toLowerCase(); }, $signature: 101 }; R.MediaType.prototype = { get$mimeType: function(_) { return this.type + "/" + this.subtype; }, change$1$parameters: function(parameters) { var t1 = type$.String, parameters0 = P.LinkedHashMap_LinkedHashMap$from(this.parameters, t1, t1); parameters0.addAll$1(0, parameters); return R.MediaType$(this.type, this.subtype, parameters0); }, toString$0: function(_) { var buffer = new P.StringBuffer(""), t1 = this.type; buffer._contents = t1; t1 += "/"; buffer._contents = t1; buffer._contents = t1 + this.subtype; J.forEach$1$ax(this.parameters._collection$_map, new R.MediaType_toString_closure(buffer)); t1 = buffer._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; } }; R.MediaType_MediaType$parse_closure.prototype = { call$0: function() { var t3, t4, t5, t6, parameters, t7, success, t8, value, t1 = this.mediaType, scanner = new X.StringScanner(null, t1), t2 = $.$get$whitespace(); scanner.scan$1(t2); t3 = $.$get$token(); scanner.expect$1(t3); t4 = scanner.get$lastMatch().$index(0, 0); t4.toString; scanner.expect$1("/"); scanner.expect$1(t3); t5 = scanner.get$lastMatch().$index(0, 0); t5.toString; scanner.scan$1(t2); t6 = type$.String; parameters = P.LinkedHashMap_LinkedHashMap$_empty(t6, t6); while (true) { t6 = scanner._lastMatch = C.JSString_methods.matchAsPrefix$2(";", t1, scanner._string_scanner$_position); t7 = scanner._lastMatchPosition = scanner._string_scanner$_position; success = t6 != null; t6 = success ? scanner._lastMatchPosition = scanner._string_scanner$_position = t6.get$end(t6) : t7; if (!success) break; t6 = scanner._lastMatch = t2.matchAsPrefix$2(0, t1, t6); scanner._lastMatchPosition = scanner._string_scanner$_position; if (t6 != null) scanner._lastMatchPosition = scanner._string_scanner$_position = t6.get$end(t6); scanner.expect$1(t3); if (scanner._string_scanner$_position !== scanner._lastMatchPosition) scanner._lastMatch = null; t6 = scanner._lastMatch.$index(0, 0); t6.toString; scanner.expect$1("="); t7 = scanner._lastMatch = t3.matchAsPrefix$2(0, t1, scanner._string_scanner$_position); t8 = scanner._lastMatchPosition = scanner._string_scanner$_position; success = t7 != null; if (success) { t7 = scanner._lastMatchPosition = scanner._string_scanner$_position = t7.get$end(t7); t8 = t7; } else t7 = t8; if (success) { if (t7 !== t8) scanner._lastMatch = null; t7 = scanner._lastMatch.$index(0, 0); t7.toString; value = t7; } else value = N.expectQuotedString(scanner); t7 = scanner._lastMatch = t2.matchAsPrefix$2(0, t1, scanner._string_scanner$_position); scanner._lastMatchPosition = scanner._string_scanner$_position; if (t7 != null) scanner._lastMatchPosition = scanner._string_scanner$_position = t7.get$end(t7); parameters.$indexSet(0, t6, value); } scanner.expectDone$0(); return R.MediaType$(t4, t5, parameters); }, $signature: 1185 }; R.MediaType_toString_closure.prototype = { call$2: function(attribute, value) { var t2, t1 = this.buffer; t1._contents += "; " + H.S(attribute) + "="; t2 = $.$get$nonToken()._nativeRegExp; if (typeof value != "string") H.throwExpression(H.argumentErrorValue(value)); if (t2.test(value)) { t1._contents += '"'; t2 = $.$get$_escapedChar(); value.toString; t2 = t1._contents += H.stringReplaceAllFuncUnchecked(value, t2, new R.MediaType_toString__closure(), null); t1._contents = t2 + '"'; } else t1._contents += H.S(value); }, $signature: 105 }; R.MediaType_toString__closure.prototype = { call$1: function(match) { return "\\" + H.S(match.$index(0, 0)); }, $signature: 392 }; N.expectQuotedString_closure.prototype = { call$1: function(match) { var t1 = match.$index(0, 1); t1.toString; return t1; }, $signature: 392 }; L.ImagePicker.prototype = { pickImage$1$source: function(source) { return $.$get$ImagePickerPlatform__instance().getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source(null, null, null, C.CameraDevice_0, source); } }; V.ImagePickerPlugin.prototype = { get$_image_picker_for_web$_target: function() { var t1 = this.__ImagePickerPlugin__target; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_target")) : t1; }, getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source: function(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { return this.getImage$body$ImagePickerPlugin(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source); }, getImage$body$ImagePickerPlugin: function(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.XFile), $async$returnValue, $async$self = this, input, $async$temp1; var $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start input = $async$self.createInputElement$3$multiple("image/*", $async$self.computeCaptureAttribute$2(source, preferredCameraDevice), false); J.get$children$x($async$self.get$_image_picker_for_web$_target()).clear$0(0); J.get$children$x($async$self.get$_image_picker_for_web$_target()).add$1(0, input); input.click(); $async$temp1 = J; $async$goto = 3; return P._asyncAwait($async$self._getSelectedXFiles$1(input), $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source); case 3: // returning from await. $async$returnValue = $async$temp1.get$first$ax($async$result); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source, $async$completer); }, computeCaptureAttribute$2: function(source, device) { if (source === C.ImageSource_0) return device === C.CameraDevice_1 ? "user" : "environment"; return null; }, _getFilesFromInput$1: function(input) { return input.files; }, _getSelectedXFiles$1: function(input) { var t1 = new P._Future($.Zone__current, type$._Future_List_XFile), _completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_List_XFile), t2 = type$._ElementEventStreamImpl_legacy_Event, t3 = new W._ElementEventStreamImpl(input, "change", false, t2), t4 = type$.Null; t3.get$first(t3).then$1$1(0, new V.ImagePickerPlugin__getSelectedXFiles_closure(this, _completer), t4); t2 = new W._ElementEventStreamImpl(input, "error", false, t2); t2.get$first(t2).then$1$1(0, new V.ImagePickerPlugin__getSelectedXFiles_closure0(_completer), t4); return t1; }, createInputElement$3$multiple: function(accept, capture, multiple) { var element = W.InputElement_InputElement("file"); element.accept = accept; element.multiple = false; if (capture != null) element.setAttribute("capture", capture); return element; } }; V.ImagePickerPlugin__getSelectedXFiles_closure.prototype = { call$1: function($event) { var t2, files = this.$this._getFilesFromInput$1(type$.FileUploadInputElement._as(J.get$target$x($event))), t1 = this._completer; if (t1.future._state === 0 && files != null) { t2 = H.instanceType(files)._eval$1("MappedListIterable"); t1.complete$1(0, P.List_List$of(new H.MappedListIterable(files, new V.ImagePickerPlugin__getSelectedXFiles__closure(), t2), true, t2._eval$1("ListIterable.E"))); } }, $signature: 61 }; V.ImagePickerPlugin__getSelectedXFiles__closure.prototype = { call$1: function(file) { var t1 = (self.URL || self.webkitURL).createObjectURL(file), t2 = file.name, t3 = file.size, t4 = file.lastModified; return A.XFile$(t1, P.DateTime$fromMillisecondsSinceEpoch(t4 == null ? Date.now() : t4, false), t3, file.type, t2); }, $signature: 1184 }; V.ImagePickerPlugin__getSelectedXFiles_closure0.prototype = { call$1: function($event) { var t1 = this._completer; if (t1.future._state === 0) t1.completeError$1($event); }, $signature: 61 }; L.MethodChannelImagePicker.prototype = { getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source: function(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { return this.getImage$body$MethodChannelImagePicker(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source); }, getImage$body$MethodChannelImagePicker: function(imageQuality, maxHeight, maxWidth, preferredCameraDevice, source) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_XFile), $async$returnValue, t1, path; var $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; $async$goto = 3; return P._asyncAwait($.$get$_channel()._invokeMethod$1$3$arguments$missingOk("pickImage", P.LinkedHashMap_LinkedHashMap$_literal(["source", 0, "maxWidth", maxWidth, "maxHeight", maxHeight, "imageQuality", imageQuality, "cameraDevice", preferredCameraDevice.index], t1, type$.dynamic), false, t1), $async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source); case 3: // returning from await. path = $async$result; $async$returnValue = path != null ? A.XFile$(path, null, null, null, null) : null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getImage$5$imageQuality$maxHeight$maxWidth$preferredCameraDevice$source, $async$completer); } }; R.ImagePickerPlatform.prototype = {}; Q.CameraDevice.prototype = { toString$0: function(_) { return this._camera_device$_name; } }; E.ImageSource.prototype = { toString$0: function(_) { return "ImageSource.camera"; } }; B.DateSymbols.prototype = { toString$0: function(_) { return this.NAME; } }; B.DateSymbols_DateSymbols$deserializeFromMap__getStringList.prototype = { call$1: function($name) { return P.List_List$from(J.$index$asx(this.map, $name), true, type$.String); }, $signature: 1161 }; T.Intl__pluralRule_closure.prototype = { call$1: function(locale) { return "default"; }, $signature: 101 }; B.NumberSymbols.prototype = { toString$0: function(_) { return this.NAME; } }; S.DateBuilder.prototype = { setYear$1: function(x) { this.year = x; }, setMonth$1: function(x) { this.month = x; }, setDay$1: function(x) { this.day = x; }, setDayOfYear$1: function(x) { this.dayOfYear = x; }, setHour$1: function(x) { this.hour = x; }, setMinute$1: function(x) { this.minute = x; }, setSecond$1: function(x) { this.second = x; }, setFractionalSecond$1: function(x) { this.fractionalSecond = x; }, _verify$6: function(value, min, max, desc, originalInput, parsed) { var t1, parsedDescription, t2, errorDescription; if (value < min || value > max) { t1 = parsed == null; parsedDescription = t1 ? "" : " Date parsed as " + parsed.toString$0(0) + "."; t2 = "Error parsing " + originalInput + ", invalid " + desc + " value: " + value + " in " + H.S(this._date_builder$_locale) + " with time zone offset "; t1 = t1 ? null : parsed.get$timeZoneOffset(); errorDescription = t2 + H.S(t1 == null ? "unknown" : t1) + ". Expected value between " + min + " and " + max + "." + parsedDescription + "."; t1 = this._retried; throw H.wrapException(P.FormatException$(t1 > 0 ? errorDescription + (" Failed after " + t1 + " retries.") : errorDescription, null, null)); } }, _verify$5: function(value, min, max, desc, originalInput) { return this._verify$6(value, min, max, desc, originalInput, null); }, _offsetYear$2: function(dateTime, offsetYears) { return this._dateTimeConstructor.call$8(H.Primitives_getYear(dateTime) + offsetYears, H.Primitives_getMonth(dateTime), H.Primitives_getDay(dateTime), H.Primitives_getHours(dateTime), H.Primitives_getMinutes(dateTime), H.Primitives_getSeconds(dateTime), H.Primitives_getMilliseconds(dateTime), dateTime.isUtc); }, asDate$1$retries: function(retries) { var hasCentury, t2, t3, t4, t5, preliminaryResult, now, lowerDate, upperDate, t6, t7, _this = this, t1 = _this._date_builder$_date; if (t1 != null) return t1; if (_this._hasAmbiguousCentury) { t1 = _this.year; hasCentury = t1 < 0 || t1 >= 100; } else hasCentury = true; if (hasCentury) { t1 = _this.year; t2 = _this.month; t3 = _this.dayOfYear; if (t3 === 0) t3 = _this.day; t4 = _this.pm; t5 = _this.hour; t4 = t4 ? t5 + 12 : t5; preliminaryResult = _this._dateTimeConstructor.call$8(t1, t2, t3, t4, _this.minute, _this.second, _this.fractionalSecond, _this.utc); } else { K.clock(); now = E.systemTime(); if (_this.utc) now = now.toUtc$0(); lowerDate = _this._offsetYear$2(now, -80); upperDate = _this._offsetYear$2(now, 20); lowerDate.toString; t1 = C.JSInt_methods._tdivFast$1(H.Primitives_getYear(lowerDate), 100); upperDate.toString; t2 = C.JSInt_methods._tdivFast$1(H.Primitives_getYear(upperDate), 100); t3 = _this.year; t4 = _this.month; t5 = _this.dayOfYear; if (t5 === 0) t5 = _this.day; t6 = _this.pm; t7 = _this.hour; t6 = t6 ? t7 + 12 : t7; t7 = _this._dateTimeConstructor; preliminaryResult = t7.call$8(t2 * 100 + t3, t4, t5, t6, _this.minute, _this.second, _this.fractionalSecond, _this.utc); if (!(C.JSInt_methods.compareTo$1(preliminaryResult._value, upperDate._value) <= 0)) { t2 = _this.year; t3 = _this.month; t4 = _this.dayOfYear; if (t4 === 0) t4 = _this.day; t5 = _this.pm; t6 = _this.hour; t5 = t5 ? t6 + 12 : t6; preliminaryResult = t7.call$8(t1 * 100 + t2, t3, t4, t5, _this.minute, _this.second, _this.fractionalSecond, _this.utc); } } if (_this.utc && hasCentury) { _this._date_builder$_date = preliminaryResult; t1 = preliminaryResult; } else t1 = _this._date_builder$_date = _this._correctForErrors$2(preliminaryResult, retries); t1.toString; return t1; }, asDate$0: function() { return this.asDate$1$retries(3); }, _correctForErrors$2: function(result, retries) { var t1, leapYear, resultDayOfYear, t2, tryAgain, expectedDayOfYear, adjusted, _this = this; if (retries <= 0) return result; result.toString; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(result), 2, 29, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); leapYear = H.Primitives_getMonth(new P.DateTime(t1, false)) === 2; resultDayOfYear = E.dayOfYear(H.Primitives_getMonth(result), H.Primitives_getDay(result), leapYear); if (!_this.utc) if (result.isUtc) { t1 = _this.pm; t2 = _this.hour; t1 = t1 ? t2 + 12 : t2; if (H.Primitives_getHours(result) === t1) if (H.Primitives_getDay(result) === resultDayOfYear) Date.now(); t1 = true; } else t1 = false; else t1 = false; if (t1) { ++_this._retried; return _this.asDate$1$retries(retries - 1); } if (_this.dateOnly && H.Primitives_getHours(result) !== 0) { tryAgain = _this.asDate$1$retries(retries - 1); if (!J.$eq$(tryAgain, result)) return tryAgain; expectedDayOfYear = _this.dayOfYear; if (expectedDayOfYear === 0) expectedDayOfYear = E.dayOfYear(_this.month, _this.day, leapYear); adjusted = result.add$1(0, P.Duration$(0, (expectedDayOfYear - resultDayOfYear) * 24 - H.Primitives_getHours(result), 0, 0, 0, 0)); if (H.Primitives_getHours(adjusted) === 0) return adjusted; if (E.dayOfYear(H.Primitives_getMonth(adjusted), H.Primitives_getDay(adjusted), leapYear) !== expectedDayOfYear) return result; return adjusted; } return result; } }; A.DateFormat.prototype = { format$1: function(date) { var t1, t2, _i, t3; for (t1 = this.get$_formatFields(), t2 = t1.length, _i = 0, t3 = ""; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) t3 += H.S(t1[_i].format$1(date)); return t3.charCodeAt(0) == 0 ? t3 : t3; }, _date_format$_parse$3$strict$utc: function(inputString, strict, utc) { var stream, t2, _i, date, minimumDate, correspondingDay, _this = this, dateFields = new S.DateBuilder(_this._date_format$_locale, _this.dateTimeConstructor), t1 = _this._dateOnly; dateFields.dateOnly = t1 == null ? _this._dateOnly = _this.get$_checkDateOnly() : t1; stream = new U.IntlStream(inputString); for (t1 = _this.get$_formatFields(), t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) J.parse$2$z(t1[_i], stream, dateFields); if (strict && stream.index < stream.contents.length) throw H.wrapException(P.FormatException$("Characters remaining after date parsing in " + inputString, null, null)); if (strict) { dateFields._verify$5(dateFields.month, 1, 12, "month", inputString); t1 = dateFields.pm; t2 = dateFields.hour; dateFields._verify$5(t1 ? t2 + 12 : t2, 0, 23, "hour", inputString); dateFields._verify$5(dateFields.minute, 0, 59, "minute", inputString); dateFields._verify$5(dateFields.second, 0, 59, "second", inputString); dateFields._verify$5(dateFields.fractionalSecond, 0, 999, "fractional second", inputString); date = dateFields.asDate$0(); if (dateFields.dateOnly) { date.toString; t1 = H.Primitives_getHours(date) === 1; } else t1 = false; if (t1) minimumDate = 0; else { date.toString; minimumDate = H.Primitives_getHours(date); } t1 = dateFields.pm; t2 = dateFields.hour; t1 = t1 ? t2 + 12 : t2; dateFields._verify$6(t1, minimumDate, H.Primitives_getHours(date), "hour", inputString, date); if (dateFields.dayOfYear > 0) { date.toString; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(date), 2, 29, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); correspondingDay = E.dayOfYear(H.Primitives_getMonth(date), H.Primitives_getDay(date), H.Primitives_getMonth(new P.DateTime(t1, false)) === 2); dateFields._verify$6(dateFields.dayOfYear, correspondingDay, correspondingDay, "dayOfYear", inputString, date); } else dateFields._verify$6(dateFields.day, H.Primitives_getDay(date), H.Primitives_getDay(date), "day", inputString, date); dateFields._verify$6(dateFields.year, H.Primitives_getYear(date), H.Primitives_getYear(date), "year", inputString, date); } return dateFields.asDate$0(); }, get$_checkDateOnly: function() { var t1 = this.get$_formatFields(); return (t1 && C.JSArray_methods).every$1(t1, new A.DateFormat__checkDateOnly_closure()); }, get$_formatFields: function() { var t2, _this = this, t1 = _this._formatFieldsPrivate; if (t1 == null) { if (_this._date_format$_pattern == null) { _this.addPattern$1("yMMMMd"); _this.addPattern$1("jms"); } t1 = _this._date_format$_pattern; t1.toString; t1 = _this._parsePatternHelper$1(t1); t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); t2 = _this._formatFieldsPrivate = P.List_List$of(new H.ReversedListIterable(t1, t2), true, t2._eval$1("ListIterable.E")); t1 = t2; } return t1; }, _appendPattern$2: function(inputPattern, separator) { var t1 = this._date_format$_pattern; this._date_format$_pattern = t1 == null ? inputPattern : t1 + separator + H.S(inputPattern); }, addPattern$1: function(inputPattern) { var t1, _this = this; _this._formatFieldsPrivate = null; t1 = _this._date_format$_locale; if (!J.containsKey$1$x(J.$index$asx($.$get$dateTimePatterns(), t1), inputPattern)) _this._appendPattern$2(inputPattern, " "); else _this._appendPattern$2(J.$index$asx(J.$index$asx($.$get$dateTimePatterns(), t1), inputPattern), " "); return _this; }, get$dateSymbols: function() { var t1 = this._date_format$_locale; if (t1 != $.lastDateSymbolLocale) { $.lastDateSymbolLocale = t1; $.cachedDateSymbols = J.$index$asx($.$get$_dateTimeSymbols(), t1); } t1 = $.cachedDateSymbols; t1.toString; return t1; }, get$useNativeDigits: function() { var t1 = this._useNativeDigits; if (t1 == null) { $.DateFormat__useNativeDigitsByDefault.$index(0, this._date_format$_locale); t1 = this._useNativeDigits = true; } return t1; }, get$digitMatcher: function() { var _this = this, t1 = _this._digitMatcher; if (t1 != null) return t1; t1 = $.DateFormat__digitMatchers.putIfAbsent$2(0, _this.get$localeZero(), _this.get$_initDigitMatcher()); _this._digitMatcher = t1; t1.toString; return t1; }, get$localeZeroCodeUnit: function() { var t1 = this._localeZeroCodeUnit; return t1 == null ? this._localeZeroCodeUnit = J._codeUnitAt$1$s(this.get$localeZero(), 0) : t1; }, get$localeZero: function() { var _this = this, t1 = _this._localeZero; if (t1 == null) { if (_this.get$useNativeDigits()) { t1 = _this.get$dateSymbols().ZERODIGIT; if (t1 == null) t1 = "0"; } else t1 = "0"; t1 = _this._localeZero = t1; } return t1; }, _localizeDigits$1: function(numberString) { var t1, newDigits, t2, i, t3, t4, _this = this; if (!(_this.get$useNativeDigits() && _this._localeZeroCodeUnit != $.$get$asciiZeroCodeUnit())) return numberString; t1 = numberString.length; newDigits = P.List_List$filled(t1, 0, false, type$.int); for (t2 = _this._date_format$_locale, i = 0; i < t1; ++i) { t3 = C.JSString_methods._codeUnitAt$1(numberString, i); t4 = _this._localeZeroCodeUnit; if (t4 == null) { t4 = _this._localeZero; if (t4 == null) { t4 = _this._useNativeDigits; if (t4 == null) { $.DateFormat__useNativeDigitsByDefault.$index(0, t2); t4 = _this._useNativeDigits = true; } if (t4) { if (t2 != $.lastDateSymbolLocale) { $.lastDateSymbolLocale = t2; $.cachedDateSymbols = J.$index$asx($.$get$_dateTimeSymbols(), t2); } t4 = $.cachedDateSymbols.ZERODIGIT; if (t4 == null) t4 = "0"; } else t4 = "0"; t4 = _this._localeZero = t4; } t4 = _this._localeZeroCodeUnit = C.JSString_methods._codeUnitAt$1(t4, 0); } newDigits[i] = t3 + t4 - $.$get$asciiZeroCodeUnit(); } return P.String_String$fromCharCodes(newDigits, 0, null); }, _initDigitMatcher$0: function() { if (!(this.get$useNativeDigits() && this._localeZeroCodeUnit != $.$get$asciiZeroCodeUnit())) return $.$get$asciiDigitMatcher(); var t1 = type$.int; return P.RegExp_RegExp("^[" + P.String_String$fromCharCodes(P.Iterable_Iterable$generate(10, new A.DateFormat__initDigitMatcher_closure(), t1).map$1$1(0, new A.DateFormat__initDigitMatcher_closure0(this), t1).toList$0(0), 0, null) + "]+", true, false); }, _parsePatternHelper$1: function(pattern) { var matched, parsed; if (pattern.length === 0) return H.setRuntimeTypeInfo([], type$.JSArray__DateFormatField); matched = this._date_format$_match$1(pattern); if (matched == null) return H.setRuntimeTypeInfo([], type$.JSArray__DateFormatField); parsed = this._parsePatternHelper$1(C.JSString_methods.substring$1(pattern, matched.fullPattern$0().length)); parsed.push(matched); return parsed; }, _date_format$_match$1: function(pattern) { var i, t1, match, t2; for (i = 0; t1 = $.$get$DateFormat__matchers(), i < 3; ++i) { match = t1[i].firstMatch$1(pattern); if (match != null) { t1 = A.DateFormat__fieldConstructors()[i]; t2 = match._match[0]; t2.toString; return t1.call$2(t2, this); } } return null; } }; A.DateFormat_dateTimeConstructor_closure.prototype = { call$8: function(year, month, day, hour24, minute, second, fractionalSecond, utc) { var t1; if (utc) { t1 = H.Primitives_valueFromDecomposedDate(year, month, day, hour24, minute, second, fractionalSecond, true); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, true); } else { t1 = H.Primitives_valueFromDecomposedDate(year, month, day, hour24, minute, second, fractionalSecond, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return new P.DateTime(t1, false); } }, "call*": "call$8", $requiredArgCount: 8, $signature: 1131 }; A.DateFormat__checkDateOnly_closure.prototype = { call$1: function(each) { return each.get$forDate(); }, $signature: 1128 }; A.DateFormat__initDigitMatcher_closure.prototype = { call$1: function(i) { return i; }, $signature: 177 }; A.DateFormat__initDigitMatcher_closure0.prototype = { call$1: function(i) { return this.$this.get$localeZeroCodeUnit() + i; }, $signature: 177 }; A.DateFormat__fieldConstructors_closure.prototype = { call$2: function(pattern, $parent) { var t1 = A._DateFormatQuotedField__patchQuotes(pattern); C.JSString_methods.trim$0(t1); return new A._DateFormatQuotedField(pattern, t1, $parent); }, $signature: 1127 }; A.DateFormat__fieldConstructors_closure0.prototype = { call$2: function(pattern, $parent) { J.trim$0$s(pattern); return new A._DateFormatPatternField(pattern, $parent); }, $signature: 1124 }; A.DateFormat__fieldConstructors_closure1.prototype = { call$2: function(pattern, $parent) { J.trim$0$s(pattern); return new A._DateFormatLiteralField(pattern, $parent); }, $signature: 1120 }; A._DateFormatField.prototype = { get$forDate: function() { return true; }, fullPattern$0: function() { return this.pattern; }, toString$0: function(_) { return this.pattern; }, format$1: function(date) { return this.pattern; }, parseLiteral$1: function(input) { var t1 = this.pattern; if (input.read$1(0, t1.length) !== t1) { this.throwFormatException$1(input); H.ReachabilityError$(string$.x60null_t); } }, throwFormatException$1: function(stream) { throw H.wrapException(P.FormatException$("Trying to read " + this.toString$0(0) + " from " + H.S(stream.contents) + " at position " + stream.index, null, null)); } }; A._DateFormatLiteralField.prototype = { parse$2: function(_, input, dateFields) { this.parseLiteral$1(input); } }; A._DateFormatQuotedField.prototype = { fullPattern$0: function() { return this._fullPattern; }, parse$2: function(_, input, dateFields) { this.parseLiteral$1(input); } }; A._DateFormatPatternField.prototype = { format$1: function(date) { return this.formatField$1(date); }, parse$2: function(_, input, dateFields) { this.parseField$2(input, dateFields); }, get$forDate: function() { var t1 = this._forDate; return t1 == null ? this._forDate = C.JSString_methods.contains$1("cdDEGLMQvyZz", this.pattern[0]) : t1; }, parseField$2: function(input, builder) { var t1, t2, exception, _this = this; try { t1 = _this.pattern; switch (t1[0]) { case "a": if (_this.parseEnumeratedString$2(input, _this.parent.get$dateSymbols().AMPMS) === 1) builder.pm = true; break; case "c": _this.parseStandaloneDay$1(input); break; case "d": _this.handleNumericField$2(input, builder.get$setDay()); break; case "D": _this.handleNumericField$2(input, builder.get$setDayOfYear()); break; case "E": t2 = _this.parent; _this.parseEnumeratedString$2(input, t1.length >= 4 ? t2.get$dateSymbols().WEEKDAYS : t2.get$dateSymbols().SHORTWEEKDAYS); break; case "G": t2 = _this.parent; _this.parseEnumeratedString$2(input, t1.length >= 4 ? t2.get$dateSymbols().ERANAMES : t2.get$dateSymbols().ERAS); break; case "h": _this.handleNumericField$2(input, builder.get$setHour()); if (builder.hour === 12) builder.hour = 0; break; case "H": _this.handleNumericField$2(input, builder.get$setHour()); break; case "K": _this.handleNumericField$2(input, builder.get$setHour()); break; case "k": _this.handleNumericField$3(input, builder.get$setHour(), -1); break; case "L": _this.parseStandaloneMonth$2(input, builder); break; case "M": _this.parseMonth$2(input, builder); break; case "m": _this.handleNumericField$2(input, builder.get$setMinute()); break; case "Q": break; case "S": _this.handleNumericField$2(input, builder.get$setFractionalSecond()); break; case "s": _this.handleNumericField$2(input, builder.get$setSecond()); break; case "v": break; case "y": _this.handleNumericField$2(input, builder.get$setYear()); builder._hasAmbiguousCentury = t1.length === 2; break; case "z": break; case "Z": break; default: return; } } catch (exception) { H.unwrapException(exception); _this.throwFormatException$1(input); H.ReachabilityError$(string$.x60null_t); } }, formatField$1: function(date) { var hours, index, t2, era, hour, year, _this = this, _s1_ = "0", t1 = _this.pattern; switch (t1[0]) { case "a": date.toString; hours = H.Primitives_getHours(date); index = hours >= 12 && hours < 24 ? 1 : 0; return _this.parent.get$dateSymbols().AMPMS[index]; case "c": return _this.formatStandaloneDay$1(date); case "d": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getDay(date), t1, _s1_)); case "D": t1 = t1.length; date.toString; t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(date), 2, 29, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + E.dayOfYear(H.Primitives_getMonth(date), H.Primitives_getDay(date), H.Primitives_getMonth(new P.DateTime(t2, false)) === 2), t1, _s1_)); case "E": t2 = _this.parent; t1 = t1.length >= 4 ? t2.get$dateSymbols().WEEKDAYS : t2.get$dateSymbols().SHORTWEEKDAYS; date.toString; return t1[C.JSInt_methods.$mod(H.Primitives_getWeekday(date), 7)]; case "G": date.toString; era = H.Primitives_getYear(date) > 0 ? 1 : 0; t2 = _this.parent; return t1.length >= 4 ? t2.get$dateSymbols().ERANAMES[era] : t2.get$dateSymbols().ERAS[era]; case "h": date.toString; hours = H.Primitives_getHours(date); if (H.Primitives_getHours(date) > 12) hours -= 12; if (hours === 0) hours = 12; t1 = t1.length; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + hours, t1, _s1_)); case "H": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getHours(date), t1, _s1_)); case "K": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + C.JSInt_methods.$mod(H.Primitives_getHours(date), 12), t1, _s1_)); case "k": date.toString; hour = H.Primitives_getHours(date) === 0 ? 24 : H.Primitives_getHours(date); t1 = t1.length; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + hour, t1, _s1_)); case "L": return _this.formatStandaloneMonth$1(date); case "M": return _this.formatMonth$1(date); case "m": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getMinutes(date), t1, _s1_)); case "Q": return _this.formatQuarter$1(date); case "S": return _this.formatFractionalSeconds$1(date); case "s": t1 = t1.length; date.toString; return _this.parent._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getSeconds(date), t1, _s1_)); case "v": return _this.formatTimeZoneId$1(date); case "y": date.toString; year = H.Primitives_getYear(date); if (year < 0) year = -year; t1 = t1.length; t2 = _this.parent; return t1 === 2 ? t2._localizeDigits$1(C.JSString_methods.padLeft$2("" + C.JSInt_methods.$mod(year, 100), 2, _s1_)) : t2._localizeDigits$1(C.JSString_methods.padLeft$2("" + year, t1, _s1_)); case "z": return _this.formatTimeZone$1(date); case "Z": return _this.formatTimeZoneRFC$1(date); default: return ""; } }, handleNumericField$3: function(input, setter, offset) { var t1 = this.parent, result = input.nextInteger$2$digitMatcher$zeroDigit(t1.get$digitMatcher(), t1.get$localeZeroCodeUnit()); if (result == null) { this.throwFormatException$1(input); H.ReachabilityError$(string$.x60null_t); } setter.call$1(result + offset); }, handleNumericField$2: function(input, setter) { return this.handleNumericField$3(input, setter, 0); }, parseEnumeratedString$2: function(input, possibilities) { var longestResult, results = new U.IntlStream(possibilities).findIndexes$1(new A._DateFormatPatternField_parseEnumeratedString_closure(input)); if (results.length === 0) { this.throwFormatException$1(input); H.ReachabilityError$(string$.x60null_t); } C.JSArray_methods.sort$1(results, new A._DateFormatPatternField_parseEnumeratedString_closure0(possibilities)); longestResult = C.JSArray_methods.get$last(results); input.read$1(0, J.get$length$asx(possibilities[longestResult])); return longestResult; }, formatMonth$1: function(date) { var t1 = this.pattern.length, t2 = this.parent; switch (t1) { case 5: t1 = t2.get$dateSymbols().NARROWMONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; case 4: t1 = t2.get$dateSymbols().MONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; case 3: t1 = t2.get$dateSymbols().SHORTMONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; default: date.toString; return t2._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getMonth(date), t1, "0")); } }, parseMonth$2: function(input, dateFields) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().NARROWMONTHS; break; case 4: possibilities = _this.parent.get$dateSymbols().MONTHS; break; case 3: possibilities = _this.parent.get$dateSymbols().SHORTMONTHS; break; default: return _this.handleNumericField$2(input, dateFields.get$setMonth()); } dateFields.month = _this.parseEnumeratedString$2(input, possibilities) + 1; }, formatFractionalSeconds$1: function(date) { var t1, basic, t2; date.toString; t1 = this.parent; basic = t1._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getMilliseconds(date), 3, "0")); t2 = this.pattern.length - 3; if (t2 > 0) return basic + t1._localizeDigits$1(C.JSString_methods.padLeft$2("0", t2, "0")); else return basic; }, formatStandaloneDay$1: function(date) { var t1 = this.parent; switch (this.pattern.length) { case 5: t1 = t1.get$dateSymbols().STANDALONENARROWWEEKDAYS; date.toString; return t1[C.JSInt_methods.$mod(H.Primitives_getWeekday(date), 7)]; case 4: t1 = t1.get$dateSymbols().STANDALONEWEEKDAYS; date.toString; return t1[C.JSInt_methods.$mod(H.Primitives_getWeekday(date), 7)]; case 3: t1 = t1.get$dateSymbols().STANDALONESHORTWEEKDAYS; date.toString; return t1[C.JSInt_methods.$mod(H.Primitives_getWeekday(date), 7)]; default: date.toString; return t1._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getDay(date), 1, "0")); } }, parseStandaloneDay$1: function(input) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().STANDALONENARROWWEEKDAYS; break; case 4: possibilities = _this.parent.get$dateSymbols().STANDALONEWEEKDAYS; break; case 3: possibilities = _this.parent.get$dateSymbols().STANDALONESHORTWEEKDAYS; break; default: return _this.handleNumericField$2(input, new A._DateFormatPatternField_parseStandaloneDay_closure()); } _this.parseEnumeratedString$2(input, possibilities); }, formatStandaloneMonth$1: function(date) { var t1 = this.pattern.length, t2 = this.parent; switch (t1) { case 5: t1 = t2.get$dateSymbols().STANDALONENARROWMONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; case 4: t1 = t2.get$dateSymbols().STANDALONEMONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; case 3: t1 = t2.get$dateSymbols().STANDALONESHORTMONTHS; date.toString; return t1[H.Primitives_getMonth(date) - 1]; default: date.toString; return t2._localizeDigits$1(C.JSString_methods.padLeft$2("" + H.Primitives_getMonth(date), t1, "0")); } }, parseStandaloneMonth$2: function(input, dateFields) { var possibilities, _this = this; switch (_this.pattern.length) { case 5: possibilities = _this.parent.get$dateSymbols().STANDALONENARROWMONTHS; break; case 4: possibilities = _this.parent.get$dateSymbols().STANDALONEMONTHS; break; case 3: possibilities = _this.parent.get$dateSymbols().STANDALONESHORTMONTHS; break; default: return _this.handleNumericField$2(input, dateFields.get$setMonth()); } dateFields.month = _this.parseEnumeratedString$2(input, possibilities) + 1; }, formatQuarter$1: function(date) { var quarter, t1, t2; date.toString; quarter = C.JSNumber_methods.toInt$0((H.Primitives_getMonth(date) - 1) / 3); t1 = this.pattern.length; t2 = this.parent; switch (t1) { case 4: return t2.get$dateSymbols().QUARTERS[quarter]; case 3: return t2.get$dateSymbols().SHORTQUARTERS[quarter]; default: return t2._localizeDigits$1(C.JSString_methods.padLeft$2("" + (quarter + 1), t1, "0")); } }, formatTimeZoneId$1: function(date) { throw H.wrapException(P.UnimplementedError$(null)); }, formatTimeZone$1: function(date) { throw H.wrapException(P.UnimplementedError$(null)); }, formatTimeZoneRFC$1: function(date) { throw H.wrapException(P.UnimplementedError$(null)); } }; A._DateFormatPatternField_parseEnumeratedString_closure.prototype = { call$1: function(each) { return this.input.peek$1(J.get$length$asx(each)) === each; }, $signature: 110 }; A._DateFormatPatternField_parseEnumeratedString_closure0.prototype = { call$2: function(a, b) { var t1 = this.possibilities; return C.JSInt_methods.compareTo$1(J.get$length$asx(t1[a]), J.get$length$asx(t1[b])); }, $signature: 317 }; A._DateFormatPatternField_parseStandaloneDay_closure.prototype = { call$1: function(x) { return x; }, $signature: 67 }; U.IntlStream.prototype = { read$1: function(_, howMany) { var result = this.peek$1(howMany); this.index += howMany; return result; }, peek$1: function(howMany) { var t1 = this.contents, t2 = this.index; return typeof t1 == "string" ? C.JSString_methods.substring$2(t1, t2, Math.min(t2 + howMany, t1.length)) : J.sublist$2$ax(t1, t2, t2 + howMany); }, findIndexes$1: function(f) { var t1, t2, _this = this, results = []; for (t1 = _this.contents; t2 = _this.index, t2 < t1.length;) { _this.index = t2 + 1; if (f.call$1(t1[t2])) results.push(_this.index - 1); } return results; }, nextInteger$2$digitMatcher$zeroDigit: function(digitMatcher, zeroDigit) { var newDigits, t2, i, _this = this, t1 = digitMatcher == null ? $.$get$asciiDigitMatcher() : digitMatcher, string = t1.stringMatch$1(_this.peek$1(_this.contents.length - _this.index)); if (string == null || string.length === 0) return null; t1 = string.length; _this.read$1(0, t1); if (zeroDigit != null && zeroDigit !== $.$get$asciiZeroCodeUnit()) { newDigits = P.List_List$filled(t1, 0, false, type$.int); for (t2 = J.getInterceptor$s(string), i = 0; i < t1; ++i) newDigits[i] = t2._codeUnitAt$1(string, i) - zeroDigit + $.$get$asciiZeroCodeUnit(); string = P.String_String$fromCharCodes(newDigits, 0, null); } return P.int_parse(string, null); } }; S.NumberFormat.prototype = { format$1: function(number) { var t2, _this = this, t1 = typeof number == "number"; if (t1 && isNaN(number)) return _this._symbols.NAN; if (t1) t1 = number == 1 / 0 || number == -1 / 0; else t1 = false; if (t1) { t1 = J.get$isNegative$n(number) ? _this.negativePrefix : _this.positivePrefix; return t1 + _this._symbols.INFINITY; } t1 = J.get$isNegative$n(number) ? _this.negativePrefix : _this.positivePrefix; t2 = _this._number_format$_buffer; t2._contents += t1; t1 = Math.abs(number); if (_this._useExponentialNotation) _this._formatExponential$1(t1); else _this._formatFixed$1(t1); t1 = t2._contents += C.JSNumber_methods.get$isNegative(number) ? _this.negativeSuffix : _this.positiveSuffix; t2._contents = ""; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _formatExponential$1: function(number) { var exponent, mantissa, t1, _this = this; if (number === 0) { _this._formatFixed$1(number); _this._formatExponent$1(0); return; } exponent = C.JSNumber_methods.floor$0(Math.log(number) / $.$get$_ln100()); mantissa = number / Math.pow(10, exponent); t1 = _this.maximumIntegerDigits; if (t1 > 1 && t1 > _this.minimumIntegerDigits) for (; C.JSInt_methods.$mod(exponent, t1) !== 0;) { mantissa *= 10; --exponent; } else { t1 = _this.minimumIntegerDigits; if (t1 < 1) { ++exponent; mantissa /= 10; } else { --t1; exponent -= t1; mantissa *= Math.pow(10, t1); } } _this._formatFixed$1(mantissa); _this._formatExponent$1(exponent); }, _formatExponent$1: function(exponent) { var _this = this, t1 = _this._symbols, t2 = _this._number_format$_buffer, t3 = t2._contents += t1.EXP_SYMBOL; if (exponent < 0) { exponent = -exponent; t2._contents = t3 + t1.MINUS_SIGN; } else if (_this._useSignForPositiveExponent) t2._contents = t3 + t1.PLUS_SIGN; t1 = _this.minimumExponentDigits; t3 = C.JSInt_methods.toString$0(exponent); if (_this._zeroOffset === 0) t2._contents += C.JSString_methods.padLeft$2(t3, t1, "0"); else _this._slowPad$2(t1, t3); }, _floor$1: function(number) { var t1; if (C.JSNumber_methods.get$isNegative(number) && !C.JSNumber_methods.get$isNegative(Math.abs(number))) throw H.wrapException(P.ArgumentError$("Internal error: expected positive number, got " + H.S(number))); t1 = C.JSNumber_methods.floor$0(number); return t1; }, _round$1: function(number) { if (number == 1 / 0 || number == -1 / 0) return $.$get$NumberFormat__maxInt(); else return C.JSNumber_methods.round$0(number); }, _formatFixed$1: function(number) { var integerPart, fractionPart, extraIntegerDigits, power, fraction, digitMultiplier, remainingDigits, howManyDigitsTooBig, divisor, paddingDigits, extra, intDigits, integerDigits, digitLength, fractionPresent, t2, i, _this = this, fractionDigits = _this.maximumFractionDigits, t1 = number == 1 / 0 || number == -1 / 0; if (t1) { integerPart = C.JSNumber_methods.toInt$0(number); fractionPart = 0; extraIntegerDigits = 0; power = 0; } else { integerPart = _this._floor$1(number); fraction = number - integerPart; if (C.JSNumber_methods.toInt$0(fraction) !== 0) { integerPart = number; fraction = 0; } H.checkNum(fractionDigits); power = H._asIntS(Math.pow(10, fractionDigits)); digitMultiplier = power * _this.multiplier; remainingDigits = C.JSNumber_methods.toInt$0(_this._round$1(fraction * digitMultiplier)); if (remainingDigits >= digitMultiplier) { ++integerPart; remainingDigits -= digitMultiplier; } extraIntegerDigits = C.JSInt_methods.$tdiv(remainingDigits, power); fractionPart = C.JSInt_methods.$mod(remainingDigits, power); } t1 = $.$get$NumberFormat__maxInt(); if (integerPart > t1) { howManyDigitsTooBig = C.JSNumber_methods.ceil$0(Math.log(integerPart) / $.$get$_ln100()) - $.$get$NumberFormat__maxDigits(); divisor = C.JSNumber_methods.round$0(Math.pow(10, howManyDigitsTooBig)); if (divisor === 0) divisor = Math.pow(10, howManyDigitsTooBig); paddingDigits = C.JSString_methods.$mul("0", C.JSInt_methods.toInt$0(howManyDigitsTooBig)); integerPart = C.JSNumber_methods.toInt$0(integerPart / divisor); } else paddingDigits = ""; extra = extraIntegerDigits === 0 ? "" : C.JSInt_methods.toString$0(extraIntegerDigits); intDigits = _this._mainIntegerDigits$1(integerPart); integerDigits = intDigits + (intDigits.length === 0 ? extra : C.JSString_methods.padLeft$2(extra, _this._multiplierDigits, "0")) + paddingDigits; digitLength = integerDigits.length; if (fractionDigits > 0) fractionPresent = _this.minimumFractionDigits > 0 || fractionPart > 0; else fractionPresent = false; if (digitLength !== 0 || _this.minimumIntegerDigits > 0) { integerDigits = C.JSString_methods.$mul("0", _this.minimumIntegerDigits - digitLength) + integerDigits; digitLength = integerDigits.length; for (t1 = _this._number_format$_buffer, t2 = _this._zeroOffset, i = 0; i < digitLength; ++i) { t1._contents += H.Primitives_stringFromCharCode(C.JSString_methods._codeUnitAt$1(integerDigits, i) + t2); _this._number_format$_group$2(digitLength, i); } } else if (!fractionPresent) _this._number_format$_buffer._contents += _this._symbols.ZERO_DIGIT; if (_this._decimalSeparatorAlwaysShown || fractionPresent) _this._number_format$_buffer._contents += _this._symbols.DECIMAL_SEP; _this._formatFractionPart$1(C.JSInt_methods.toString$0(fractionPart + power)); }, _mainIntegerDigits$1: function(integer) { var digits; if (integer === 0) return ""; digits = C.JSNumber_methods.toString$0(integer); return C.JSString_methods.startsWith$1(digits, "-") ? C.JSString_methods.substring$1(digits, 1) : digits; }, _formatFractionPart$1: function(fractionPart) { var fractionLength0, t2, i, fractionLength = fractionPart.length, t1 = this.minimumFractionDigits; while (true) { fractionLength0 = fractionLength - 1; if (!(C.JSString_methods.codeUnitAt$1(fractionPart, fractionLength0) === $.$get$asciiZeroCodeUnit() && fractionLength > t1 + 1)) break; fractionLength = fractionLength0; } for (t1 = this._number_format$_buffer, t2 = this._zeroOffset, i = 1; i < fractionLength; ++i) t1._contents += H.Primitives_stringFromCharCode(C.JSString_methods._codeUnitAt$1(fractionPart, i) + t2); }, _slowPad$2: function(numberOfDigits, basic) { var t1, t2, t3, t4, i; for (t1 = basic.length, t2 = numberOfDigits - t1, t3 = this._symbols.ZERO_DIGIT, t4 = this._number_format$_buffer, i = 0; i < t2; ++i) t4._contents += t3; for (t2 = this._zeroOffset, i = 0; i < t1; ++i) t4._contents += H.Primitives_stringFromCharCode(C.JSString_methods._codeUnitAt$1(basic, i) + t2); }, _number_format$_group$2: function(totalLength, position) { var t1, _this = this, distanceFromEnd = totalLength - position; if (distanceFromEnd <= 1 || _this._groupingSize <= 0) return; t1 = _this._finalGroupingSize; if (distanceFromEnd === t1 + 1) _this._number_format$_buffer._contents += _this._symbols.GROUP_SEP; else if (distanceFromEnd > t1 && C.JSInt_methods.$mod(distanceFromEnd - t1, _this._groupingSize) === 1) _this._number_format$_buffer._contents += _this._symbols.GROUP_SEP; }, toString$0: function(_) { return "NumberFormat(" + H.S(this._number_format$_locale) + ", " + H.S(this._number_format$_pattern) + ")"; } }; S.NumberFormat_NumberFormat_closure.prototype = { call$1: function(x) { return this.newPattern; }, $signature: 1118 }; S.NumberFormat_NumberFormat$decimalPattern_closure.prototype = { call$1: function(x) { return x.DECIMAL_PATTERN; }, $signature: 1115 }; Q.NumberFormatParseResult.prototype = {}; Q.NumberFormatParser.prototype = { _parse$0: function() { var trunk, t2, t3, trunkIterator, each, _this = this, t1 = _this.result; t1.positivePrefix = _this._parseAffix$0(); trunk = _this._parseTrunk$0(); t2 = _this._parseAffix$0(); t1.positiveSuffix = t2; t3 = _this.pattern; if (t3._string_iterator$_current === ";") { t3.moveNext$0(); t1.negativePrefix = _this._parseAffix$0(); trunkIterator = new K.StringIterator(trunk); for (; trunkIterator.moveNext$0();) { each = trunkIterator._string_iterator$_current; t2 = t3._string_iterator$_current; if (t2 != each && t2 != null) throw H.wrapException(P.FormatException$("Positive and negative trunks must be the same", trunk, null)); t3.moveNext$0(); } t1.negativeSuffix = _this._parseAffix$0(); } else { t1.negativePrefix = t1.negativePrefix + t1.positivePrefix; t1.negativeSuffix = t2 + t1.negativeSuffix; } t2 = t1.decimalDigits; if (t2 != null) t1.maximumFractionDigits = t1.minimumFractionDigits = t2; }, _parseAffix$0: function() { var affix = new P.StringBuffer(""), t1 = this.inQuote = false, t2 = this.pattern; while (true) if (!(this.parseCharacterAffix$1(affix) ? t2.moveNext$0() : t1)) break; t1 = affix._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, parseCharacterAffix$1: function(affix) { var t2, t3, _this = this, t1 = _this.pattern, ch = t1._string_iterator$_current; if (ch == null) return false; if (ch === "'") { t2 = t1.nextIndex; t3 = t1.input; if ((t2 >= t3.length ? null : t3[t2]) === "'") { t1.moveNext$0(); affix._contents += "'"; } else _this.inQuote = !_this.inQuote; return true; } if (_this.inQuote) affix._contents += ch; else switch (ch) { case "#": case "0": case ",": case ".": case ";": return false; case "\xa4": affix._contents += _this.currencySymbol; break; case "%": t1 = _this.result; t2 = t1.multiplier; if (t2 !== 1 && t2 !== 100) throw H.wrapException(C.FormatException_oQ2); t1.multiplier = 100; affix._contents += _this.symbols.PERCENT; break; case "\u2030": t1 = _this.result; t2 = t1.multiplier; if (t2 !== 1 && t2 !== 1000) throw H.wrapException(C.FormatException_oQ2); t1.multiplier = 1000; affix._contents += _this.symbols.PERMILL; break; default: affix._contents += ch; } return true; }, _parseTrunk$0: function() { var t2, n, effectiveDecimalPos, t3, totalDigits, t4, t5, _this = this, trunk = new P.StringBuffer(""), t1 = _this.pattern, loop = true; while (true) { if (!(t1._string_iterator$_current != null && loop)) break; loop = _this.parseTrunkCharacter$1(trunk); } t2 = _this.zeroDigitCount; if (t2 === 0 && _this.digitLeftCount > 0 && _this.decimalPos >= 0) { n = _this.decimalPos; if (n === 0) n = 1; _this.digitRightCount = _this.digitLeftCount - n; _this.digitLeftCount = n - 1; t2 = _this.zeroDigitCount = 1; } effectiveDecimalPos = _this.decimalPos; if (!(effectiveDecimalPos < 0 && _this.digitRightCount > 0)) { if (effectiveDecimalPos >= 0) { t3 = _this.digitLeftCount; t3 = effectiveDecimalPos < t3 || effectiveDecimalPos > t3 + t2; } else t3 = false; t3 = t3 || _this.groupingCount === 0; } else t3 = true; if (t3) throw H.wrapException(P.FormatException$('Malformed pattern "' + t1.input + '"', null, null)); t1 = _this.digitLeftCount; t2 = t1 + t2; totalDigits = t2 + _this.digitRightCount; t3 = _this.result; t4 = effectiveDecimalPos >= 0; t5 = t4 ? totalDigits - effectiveDecimalPos : 0; t3.maximumFractionDigits = t5; if (t4) { t2 -= effectiveDecimalPos; t3.minimumFractionDigits = t2; if (t2 < 0) t3.minimumFractionDigits = 0; } t2 = t3.minimumIntegerDigits = (t4 ? effectiveDecimalPos : totalDigits) - t1; if (t3.useExponentialNotation) { t3.maximumIntegerDigits = t1 + t2; if (t5 === 0 && t2 === 0) t3.minimumIntegerDigits = 1; } t1 = Math.max(0, _this.groupingCount); t3.finalGroupingSize = t1; if (!_this.groupingSizeSetExplicitly) t3.groupingSize = t1; t3.decimalSeparatorAlwaysShown = effectiveDecimalPos === 0 || effectiveDecimalPos === totalDigits; t1 = trunk._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, parseTrunkCharacter$1: function(trunk) { var t2, nextChar, t3, _this = this, _null = null, t1 = _this.pattern, ch = t1._string_iterator$_current; switch (ch) { case "#": if (_this.zeroDigitCount > 0) ++_this.digitRightCount; else ++_this.digitLeftCount; t2 = _this.groupingCount; if (t2 >= 0 && _this.decimalPos < 0) _this.groupingCount = t2 + 1; break; case "0": if (_this.digitRightCount > 0) throw H.wrapException(P.FormatException$('Unexpected "0" in pattern "' + t1.input, _null, _null)); ++_this.zeroDigitCount; t2 = _this.groupingCount; if (t2 >= 0 && _this.decimalPos < 0) _this.groupingCount = t2 + 1; break; case ",": t2 = _this.groupingCount; if (t2 > 0) { _this.groupingSizeSetExplicitly = true; _this.result.groupingSize = t2; } _this.groupingCount = 0; break; case ".": if (_this.decimalPos >= 0) throw H.wrapException(P.FormatException$('Multiple decimal separators in pattern "' + t1.toString$0(0) + '"', _null, _null)); _this.decimalPos = _this.digitLeftCount + _this.zeroDigitCount + _this.digitRightCount; break; case "E": trunk._contents += H.S(ch); t2 = _this.result; if (t2.useExponentialNotation) throw H.wrapException(P.FormatException$('Multiple exponential symbols in pattern "' + t1.toString$0(0) + '"', _null, _null)); t2.useExponentialNotation = true; t2.minimumExponentDigits = 0; t1.moveNext$0(); nextChar = t1._string_iterator$_current; if (nextChar === "+") { trunk._contents += H.S(nextChar); t1.moveNext$0(); t2.useSignForPositiveExponent = true; } for (; t3 = t1._string_iterator$_current, t3 === "0";) { trunk._contents += H.S(t3); t1.moveNext$0(); ++t2.minimumExponentDigits; } if (_this.digitLeftCount + _this.zeroDigitCount < 1 || t2.minimumExponentDigits < 1) throw H.wrapException(P.FormatException$('Malformed exponential pattern "' + t1.toString$0(0) + '"', _null, _null)); return false; default: return false; } trunk._contents += H.S(ch); t1.moveNext$0(); return true; } }; K.StringIterator.prototype = { moveNext$0: function() { var _this = this, t1 = _this.nextIndex, t2 = _this.input; if (t1 >= t2.length) { _this._string_iterator$_current = null; return false; } _this.nextIndex = t1 + 1; _this._string_iterator$_current = t2[t1]; return true; } }; X.UninitializedLocaleData.prototype = { $index: function(_, key) { return X.canonicalizedLocale(key) === "en_US" ? this.fallbackData : this._throwException$0(); }, containsKey$1: function(_, key) { if (X.canonicalizedLocale(key) !== "en_US") this._throwException$0(); return true; }, _throwException$0: function() { throw H.wrapException(new X.LocaleDataException("Locale data has not been initialized, call " + this.message + ".")); } }; X.LocaleDataException.prototype = { toString$0: function(_) { return "LocaleDataException: " + this.message; }, $isException: 1 }; E.PluralCase.prototype = { toString$0: function(_) { return this._plural_rules$_name; } }; E.InvoiceStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess, "-1", t1.colorDanger, "5", C.Color_4287137928, "6", C.Color_4287137928, "-3", t1.colorWarning], type$.legacy_String, type$.legacy_Color); } }; E.RecurringInvoiceStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme.colorSuccess; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", t1, "3", C.Color_4287137928, "4", t1, "-1", C.Color_4287137928], type$.legacy_String, type$.legacy_Color); } }; E.CreditStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess], type$.legacy_String, type$.legacy_Color); } }; E.QuoteStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", t1.colorInfo, "3", t1.colorPrimary, "4", t1.colorSuccess, "-1", t1.colorDanger, "-2", t1.colorWarning], type$.legacy_String, type$.legacy_Color); } }; E.PaymentStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", C.Color_4287137928, "3", t1.colorDanger, "4", t1.colorSuccess, "5", t1.colorPrimary, "6", C.Color_4287137928, "-1", C.Color_4281545523, "-2", C.Color_4281545523], type$.legacy_String, type$.legacy_Color); } }; E.ExpenseStatusColors.prototype = { get$colors: function() { var t1 = this._colors0$_colorTheme; return P.LinkedHashMap_LinkedHashMap$_literal(["1", C.Color_4281545523, "2", t1.colorPrimary, "3", t1.colorSuccess], type$.legacy_String, type$.legacy_Color); } }; S.FileStorage.prototype = { load$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, flags, t4, buffer, prefs, t1, t2, t3, value; var $async$load$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$load$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; t2 = prefs._preferenceCache; t3 = J.getInterceptor$asx(t2); value = H._asStringQ(t3.$index(t2, t1)); if (value != null) { $async$returnValue = value; // goto return $async$goto = 1; break; } value = H._asStringQ(t3.$index(t2, t1 + "_gzip")); if (value != null) { t1 = T.InputStream$(C.C_Base64Decoder.convert$1(value), 0, null, 0); if (t1.readUint16$0() !== 35615) H.throwExpression(R.ArchiveException$("Invalid GZip Signature")); if (t1.readByte$0() !== 8) H.throwExpression(R.ArchiveException$("Invalid GZip Compression Methos")); flags = t1.readByte$0(); t1.readUint32$0(); t1.readByte$0(); t1.readByte$0(); if ((flags & 4) !== 0) t1.readBytes$1(t1.readUint16$0()); if ((flags & 8) !== 0) t1.readString$0(); if ((flags & 16) !== 0) t1.readString$0(); if ((flags & 2) !== 0) t1.readUint16$0(); t2 = Y.HuffmanTable$(C.List_2Bc); t3 = Y.HuffmanTable$(C.List_X3d1); t4 = Q.OutputStream$(null); t3 = new S.Inflate(t1, t4, t2, t3); t3.inputSet = true; t3._inflate$0(); buffer = type$.List_int._as(C.NativeByteBuffer_methods.asUint8List$2(t4._output_stream$_buffer.buffer, 0, t4._output_stream$_length)); $async$returnValue = C.C_Utf8Codec.decode$1(0, buffer); // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$load$0, $async$completer); }, save$1: function(_, data) { return this.save$body$FileStorage(_, data); }, save$body$FileStorage: function(_, data) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, e, gzipBytes, zipped, e0, exception, t1, prefs0, prefs, $async$exception, $async$exception1; var $async$save$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$save$1); case 3: // returning from await. prefs0 = $async$result; prefs = prefs0; $async$handler = 5; $async$goto = 8; return P._asyncAwait(prefs._setValue$3("String", $async$self.tag, data), $async$save$1); case 8: // returning from await. $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception = $async$currentError; e = H.unwrapException($async$exception); $async$goto = C.JSString_methods.contains$1(H.S(e), "QuotaExceededError") ? 9 : 10; break; case 9: // then t1 = $async$self.tag; $async$goto = 11; return P._asyncAwait(J.remove$1$ax(prefs, t1), $async$save$1); case 11: // returning from await. gzipBytes = new D.GZipEncoder().encode$1(C.C_Utf8Codec.get$encoder().convert$1(data)); zipped = C.C_Base64Codec.get$encoder().convert$1(gzipBytes); $async$handler = 13; $async$goto = 16; return P._asyncAwait(prefs._setValue$3("String", t1 + "_gzip", zipped), $async$save$1); case 16: // returning from await. $async$handler = 4; // goto after finally $async$goto = 15; break; case 13: // catch $async$handler = 12; $async$exception1 = $async$currentError; e0 = H.unwrapException($async$exception1); $async$goto = C.JSString_methods.contains$1(H.S(e0), "QuotaExceededError") ? 17 : 18; break; case 17: // then $async$goto = 19; return P._asyncAwait(J.remove$1$ax(prefs, t1 + "_gzip"), $async$save$1); case 19: // returning from await. case 18: // join // goto after finally $async$goto = 15; break; case 12: // uncaught // goto uncaught $async$goto = 4; break; case 15: // after finally case 10: // join // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$save$1, $async$completer); }, delete$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_FileSystemEntity), $async$returnValue, $async$self = this, prefs, t1; var $async$delete$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$delete$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; prefs.remove$1(0, t1); prefs.remove$1(0, t1 + "_gzip"); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$delete$0, $async$completer); }, exists$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this, prefs, t1, t2, t3; var $async$exists$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$exists$0); case 3: // returning from await. prefs = $async$result; t1 = $async$self.tag; t2 = prefs._preferenceCache; t3 = J.getInterceptor$x(t2); $async$returnValue = t3.containsKey$1(t2, t1) || t3.containsKey$1(t2, t1 + "_gzip"); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$exists$0, $async$completer); } }; O.AccountEntity.prototype = { get$isUpdateAvailable: function() { var t1, _this = this; if (!_this.isSchedulerRunning || _this.disableAutoUpdate) return false; t1 = Q.Version__compare(Q.Version_parse(_this.currentVersion), Q.Version_parse(_this.latestVersion)); return t1 < 0; } }; O._$AccountEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "trial_plan", serializers.serialize$2$specifiedType(object.trialPlan, C.FullType_h8g), "trial_started", serializers.serialize$2$specifiedType(object.trialStarted, C.FullType_h8g), "default_url", serializers.serialize$2$specifiedType(object.defaultUrl, C.FullType_h8g), "report_errors", serializers.serialize$2$specifiedType(object.reportErrors, C.FullType_MtR), "plan", serializers.serialize$2$specifiedType(object.plan, C.FullType_h8g), "plan_expires", serializers.serialize$2$specifiedType(object.planExpires, C.FullType_h8g), "latest_version", serializers.serialize$2$specifiedType(object.latestVersion, C.FullType_h8g), "current_version", serializers.serialize$2$specifiedType(object.currentVersion, C.FullType_h8g), "debug_enabled", serializers.serialize$2$specifiedType(object.debugEnabled, C.FullType_MtR), "is_docker", serializers.serialize$2$specifiedType(object.isDocker, C.FullType_MtR), "is_scheduler_running", serializers.serialize$2$specifiedType(object.isSchedulerRunning, C.FullType_MtR), "disable_auto_update", serializers.serialize$2$specifiedType(object.disableAutoUpdate, C.FullType_MtR), "default_company_id", serializers.serialize$2$specifiedType(object.defaultCompanyId, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new O.AccountEntityBuilder(); O.AccountEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._account_model$_id = t1; break; case "trial_plan": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._trialPlan = t1; break; case "trial_started": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._trialStarted = t1; break; case "default_url": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._defaultUrl = t1; break; case "report_errors": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_account_model$_$this()._reportErrors = t1; break; case "plan": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._plan = t1; break; case "plan_expires": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._planExpires = t1; break; case "latest_version": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._latestVersion = t1; break; case "current_version": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._currentVersion = t1; break; case "debug_enabled": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_account_model$_$this()._debugEnabled = t1; break; case "is_docker": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_account_model$_$this()._isDocker = t1; break; case "is_scheduler_running": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_account_model$_$this()._isSchedulerRunning = t1; break; case "disable_auto_update": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_account_model$_$this()._disableAutoUpdate = t1; break; case "default_company_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_account_model$_$this()._defaultCompanyId = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uv0; }, get$wireName: function() { return "AccountEntity"; } }; O._$AccountEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof O.AccountEntity && _this.id === other.id && _this.trialPlan === other.trialPlan && _this.trialStarted === other.trialStarted && _this.defaultUrl === other.defaultUrl && _this.reportErrors === other.reportErrors && _this.plan === other.plan && _this.planExpires === other.planExpires && _this.latestVersion === other.latestVersion && _this.currentVersion === other.currentVersion && _this.debugEnabled === other.debugEnabled && _this.isDocker === other.isDocker && _this.isSchedulerRunning === other.isSchedulerRunning && _this.disableAutoUpdate === other.disableAutoUpdate && _this.defaultCompanyId === other.defaultCompanyId; }, get$hashCode: function(_) { var _this = this, t1 = _this._account_model$__hashCode; return t1 == null ? _this._account_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.trialPlan)), C.JSString_methods.get$hashCode(_this.trialStarted)), C.JSString_methods.get$hashCode(_this.defaultUrl)), C.JSBool_methods.get$hashCode(_this.reportErrors)), C.JSString_methods.get$hashCode(_this.plan)), C.JSString_methods.get$hashCode(_this.planExpires)), C.JSString_methods.get$hashCode(_this.latestVersion)), C.JSString_methods.get$hashCode(_this.currentVersion)), C.JSBool_methods.get$hashCode(_this.debugEnabled)), C.JSBool_methods.get$hashCode(_this.isDocker)), C.JSBool_methods.get$hashCode(_this.isSchedulerRunning)), C.JSBool_methods.get$hashCode(_this.disableAutoUpdate)), C.JSString_methods.get$hashCode(_this.defaultCompanyId))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("AccountEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "trialPlan", _this.trialPlan); t2.add$2(t1, "trialStarted", _this.trialStarted); t2.add$2(t1, "defaultUrl", _this.defaultUrl); t2.add$2(t1, "reportErrors", _this.reportErrors); t2.add$2(t1, "plan", _this.plan); t2.add$2(t1, "planExpires", _this.planExpires); t2.add$2(t1, "latestVersion", _this.latestVersion); t2.add$2(t1, "currentVersion", _this.currentVersion); t2.add$2(t1, "debugEnabled", _this.debugEnabled); t2.add$2(t1, "isDocker", _this.isDocker); t2.add$2(t1, "isSchedulerRunning", _this.isSchedulerRunning); t2.add$2(t1, "disableAutoUpdate", _this.disableAutoUpdate); t2.add$2(t1, "defaultCompanyId", _this.defaultCompanyId); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; } }; O.AccountEntityBuilder.prototype = { get$id: function(_) { return this.get$_account_model$_$this()._account_model$_id; }, get$_account_model$_$this: function() { var _this = this, $$v = _this._account_model$_$v; if ($$v != null) { _this._account_model$_id = $$v.id; _this._trialPlan = $$v.trialPlan; _this._trialStarted = $$v.trialStarted; _this._defaultUrl = $$v.defaultUrl; _this._reportErrors = $$v.reportErrors; _this._plan = $$v.plan; _this._planExpires = $$v.planExpires; _this._latestVersion = $$v.latestVersion; _this._currentVersion = $$v.currentVersion; _this._debugEnabled = $$v.debugEnabled; _this._isDocker = $$v.isDocker; _this._isSchedulerRunning = $$v.isSchedulerRunning; _this._disableAutoUpdate = $$v.disableAutoUpdate; _this._defaultCompanyId = $$v.defaultCompanyId; _this._account_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, _s13_ = "AccountEntity", _$result = _this._account_model$_$v; if (_$result == null) { t1 = _this.get$_account_model$_$this()._account_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); t2 = _this.get$_account_model$_$this()._trialPlan; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "trialPlan")); t3 = _this.get$_account_model$_$this()._trialStarted; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "trialStarted")); t4 = _this.get$_account_model$_$this()._defaultUrl; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "defaultUrl")); t5 = _this.get$_account_model$_$this()._reportErrors; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "reportErrors")); t6 = _this.get$_account_model$_$this()._plan; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "plan")); t7 = _this.get$_account_model$_$this()._planExpires; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "planExpires")); t8 = _this.get$_account_model$_$this()._latestVersion; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "latestVersion")); t9 = _this.get$_account_model$_$this()._currentVersion; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "currentVersion")); t10 = _this.get$_account_model$_$this()._debugEnabled; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "debugEnabled")); t11 = _this.get$_account_model$_$this()._isDocker; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isDocker")); t12 = _this.get$_account_model$_$this()._isSchedulerRunning; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isSchedulerRunning")); t13 = _this.get$_account_model$_$this()._disableAutoUpdate; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "disableAutoUpdate")); t14 = _this.get$_account_model$_$this()._defaultCompanyId; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "defaultCompanyId")); _$result = O._$AccountEntity$_(t9, t10, t14, t4, t13, t1, t11, t12, t8, t6, t7, t5, t2, t3); } return _this._account_model$_$v = _$result; } }; T.ClientListResponse.prototype = {}; T.ClientItemResponse.prototype = {}; T.ClientEntity.prototype = { get$isStale: function() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$entityType: function() { return C.EntityType_client; }, get$listDisplayName: function() { return this.displayName; }, getActivities$2$invoiceId$typeId: function(invoiceId, typeId) { return J.where$1$ax(this.activities._list, new T.ClientEntity_getActivities_closure(invoiceId, typeId)); }, get$primaryContact: function() { return J.firstWhere$2$orElse$ax(this.contacts._list, new T.ClientEntity_primaryContact_closure(), new T.ClientEntity_primaryContact_closure0()); }, get$emailContacts: function() { var t1 = J.where$1$ax(this.contacts._list, new T.ClientEntity_emailContacts_closure()), list = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); return list.length === 0 ? H.setRuntimeTypeInfo([this.get$primaryContact()], type$.JSArray_legacy_ContactEntity) : list; }, get$hasEmailAddress: function() { var t1 = J.where$1$ax(this.contacts._list, new T.ClientEntity_hasEmailAddress_closure()); return !t1.get$isEmpty(t1); }, compareTo$5: function(_, client, sortField, sortAscending, userMap, staticState) { var response, t1, t2, t3, userA, userB, countryA, countryB, currencyA, currencyB, stateA, stateB, languageA, languageB, _null = null, _s8_ = "archived", clientA = sortAscending ? this : client, clientB = sortAscending ? client : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "contact_name": response = C.JSString_methods.compareTo$1(clientA.get$primaryContact().get$fullName().toLowerCase(), clientB.get$primaryContact().get$fullName().toLowerCase()); break; case "contact_email": response = C.JSString_methods.compareTo$1(clientA.get$primaryContact().email.toLowerCase(), clientB.get$primaryContact().email.toLowerCase()); break; case "balance": response = C.JSNumber_methods.compareTo$1(clientA.balance, clientB.balance); break; case "credit_balance": response = C.JSNumber_methods.compareTo$1(clientA.creditBalance, clientB.creditBalance); break; case "paid_to_date": response = C.JSNumber_methods.compareTo$1(clientA.paidToDate, clientB.paidToDate); break; case "updated_at": response = C.JSInt_methods.compareTo$1(clientA.updatedAt, clientB.updatedAt); break; case "id_number": response = C.JSString_methods.compareTo$1(clientA.idNumber, clientB.idNumber); break; case "number": response = K.compareNatural(clientA.number.toLowerCase(), clientB.number.toLowerCase()); break; case "website": response = C.JSString_methods.compareTo$1(clientA.website.toLowerCase(), clientB.website.toLowerCase()); break; case "address1": response = C.JSString_methods.compareTo$1(clientA.address1.toLowerCase(), clientB.address1.toLowerCase()); break; case "address2": response = C.JSString_methods.compareTo$1(clientA.address2.toLowerCase(), clientB.address2.toLowerCase()); break; case "phone": response = C.JSString_methods.compareTo$1(clientA.phone.toLowerCase(), clientB.phone.toLowerCase()); break; case "public_notes": response = C.JSString_methods.compareTo$1(clientA.publicNotes.toLowerCase(), clientB.publicNotes.toLowerCase()); break; case "private_notes": response = C.JSString_methods.compareTo$1(clientA.privateNotes.toLowerCase(), clientB.privateNotes.toLowerCase()); break; case "vat_number": response = C.JSString_methods.compareTo$1(clientA.vatNumber.toLowerCase(), clientB.vatNumber.toLowerCase()); break; case "assigned_to_id": case "assigned_to": t1 = clientA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, clientB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by_id": case "created_by": t1 = clientA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, clientB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "country": t1 = staticState.countryMap; t2 = clientA.countryId; t1 = t1._map$_map; t3 = J.getInterceptor$asx(t1); countryA = t3.$index(t1, t2); if (countryA == null) countryA = L.CountryEntity_CountryEntity(); countryB = t3.$index(t1, clientB.countryId); if (countryB == null) countryB = L.CountryEntity_CountryEntity(); response = C.JSString_methods.compareTo$1(countryA.name.toLowerCase(), countryB.name.toLowerCase()); break; case "currency": t1 = staticState.currencyMap; t2 = clientA.settings.currencyId; t1 = t1._map$_map; t3 = J.getInterceptor$asx(t1); currencyA = t3.$index(t1, t2); if (currencyA == null) currencyA = O.CurrencyEntity_CurrencyEntity(); currencyB = t3.$index(t1, clientB.settings.currencyId); if (currencyB == null) currencyB = O.CurrencyEntity_CurrencyEntity(); response = C.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "entity_state": case "state": if (!clientA.get$isArchived() && !clientA.isDeleted) t1 = "active"; else t1 = clientA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!clientB.get$isArchived() && !clientB.isDeleted) t1 = "active"; else t1 = clientB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "language": t1 = staticState.languageMap; t2 = clientA.settings.languageId; t1 = t1._map$_map; t3 = J.getInterceptor$asx(t1); languageA = t3.$index(t1, t2); if (languageA == null) languageA = A._$LanguageEntity$_("", "", ""); languageB = t3.$index(t1, clientB.settings.languageId); if (languageB == null) languageB = A._$LanguageEntity$_("", "", ""); response = C.JSString_methods.compareTo$1(languageA.name.toLowerCase(), languageB.name.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(clientA.createdAt, clientB.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(clientA.archivedAt, clientB.archivedAt); break; case "last_login_at": response = C.JSInt_methods.compareTo$1(clientA.lastLogin, clientB.lastLogin); break; case "custom1": response = C.JSString_methods.compareTo$1(clientA.customValue1.toLowerCase(), clientB.customValue1.toLowerCase()); break; case "custom2": response = C.JSString_methods.compareTo$1(clientA.customValue2.toLowerCase(), clientB.customValue2.toLowerCase()); break; case "custom3": response = C.JSString_methods.compareTo$1(clientA.customValue3.toLowerCase(), clientB.customValue3.toLowerCase()); break; case "custom4": response = C.JSString_methods.compareTo$1(clientA.customValue4.toLowerCase(), clientB.customValue4.toLowerCase()); break; case "documents": t1 = clientA.documents._list; t2 = J.getInterceptor$asx(t1); response = J.compareTo$1$ns(t2.get$length(t1), t2.get$length(t1)); break; case "group": response = C.JSString_methods.compareTo$1(clientA.groupId, clientB.groupId); break; default: P.print("## ERROR: sort by client." + sortField + " not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(client.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1: function(filter) { var t1, t2, i, _this = this; for (t1 = _this.contacts._list, t2 = J.getInterceptor$asx(t1), i = 0; i < t2.get$length(t1); ++i) if (t2.$index(t1, i).matchesFilter$1(filter)) return true; return A.matchesStrings(H.setRuntimeTypeInfo([_this.displayName, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.city, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var t1, t2, i, value, _this = this; for (t1 = _this.contacts._list, t2 = J.getInterceptor$asx(t1), i = 0; i < t2.get$length(t1); ++i) { value = t2.$index(t1, i).matchesFilterValue$1(filter); if (value != null) return value; } return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.city, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_edit); actions.push(C.EntityAction_viewStatement); actions.push(C.EntityAction_clientPortal); if (userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_settings); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) actions.push(C.EntityAction_newInvoice); if (userCompany.can$2(C.UserPermission_create, C.EntityType_payment)) actions.push(C.EntityAction_newPayment); if (userCompany.can$2(C.UserPermission_create, C.EntityType_quote)) actions.push(C.EntityAction_newQuote); if (userCompany.can$2(C.UserPermission_create, C.EntityType_credit)) actions.push(C.EntityAction_newCredit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_task)) actions.push(C.EntityAction_newTask); if (userCompany.can$2(C.UserPermission_create, C.EntityType_expense)) actions.push(C.EntityAction_newExpense); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany: function(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, get$calculateDisplayName: function() { var t1 = this.name; if (t1.length !== 0) return t1; else return this.get$primaryContact().get$fullNameOrEmail(); }, get$areAddressesDifferent: function() { var _this = this; return _this.address1 !== _this.shippingAddress1 || _this.address2 !== _this.shippingAddress2 || _this.city !== _this.shippingCity || _this.state !== _this.shippingState || _this.postalCode !== _this.shippingPostalCode || _this.countryId !== _this.shippingCountryId; }, get$hasCurrency: function() { var t1 = this.settings.currencyId; return t1 != null && t1.length !== 0; }, get$hasNameSet: function() { var contact, t1 = this.contacts._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) return false; contact = t2.get$first(t1); return this.name.length !== 0 || contact.get$fullName().length !== 0 || contact.email.length !== 0; } }; T.ClientEntity_ClientEntity_closure.prototype = { call$1: function(b) { b.get$_client_model$_$this()._client_model$_isPrimary = true; return b; }, $signature: 490 }; T.ClientEntity_getActivities_closure.prototype = { call$1: function(activity) { if (activity.invoiceId !== this.invoiceId) return false; if (activity.activityTypeId !== this.typeId) return false; return true; }, $signature: 436 }; T.ClientEntity_primaryContact_closure.prototype = { call$1: function(contact) { return contact.isPrimary; }, $signature: 156 }; T.ClientEntity_primaryContact_closure0.prototype = { call$0: function() { return T.ContactEntity_ContactEntity(); }, $signature: 491 }; T.ClientEntity_emailContacts_closure.prototype = { call$1: function(contact) { return contact.sendEmail; }, $signature: 156 }; T.ClientEntity_hasEmailAddress_closure.prototype = { call$1: function(contact) { var t1 = contact.email; return t1.length !== 0; }, $signature: 156 }; T.ContactEntity.prototype = { get$fullName: function() { return C.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, get$fullNameOrEmail: function() { if (this.get$fullName().length !== 0) return this.get$fullName(); else return this.email; }, get$entityType: function() { return C.EntityType_contact; }, matchesFilter$1: function(filter) { var _this = this; if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(_this.firstName.toLowerCase(), filter)) return true; if (C.JSString_methods.contains$1(_this.lastName.toLowerCase(), filter)) return true; if (C.JSString_methods.contains$1(_this.phone.toLowerCase(), filter)) return true; if (C.JSString_methods.contains$1(_this.email.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { var t1, _this = this; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(_this.get$fullName().toLowerCase(), filter)) return _this.get$fullName(); else { t1 = _this.email; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = _this.phone; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } } return null; }, get$listDisplayName: function() { return this.get$fullNameOrEmail(); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; } }; T._$ClientListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Ag3)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new T.ClientListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ClientEntity, t3 = type$.ListBuilder_legacy_ClientEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._client_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._client_model$_data = t6; result._client_model$_$v = null; } t4 = result._client_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._client_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Ag3)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_EkK; }, get$wireName: function() { return "ClientListResponse"; } }; T._$ClientItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_W34)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new T.ClientItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ClientEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._client_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new T.ClientEntityBuilder(); t3.get$_client_model$_$this()._number = ""; t3._client_model$_$v = t2; result._client_model$_data = t3; result._client_model$_$v = null; } t2 = result._client_model$_data; if (t2 == null) { t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; result._client_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_W34)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._client_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_a5W; }, get$wireName: function() { return "ClientItemResponse"; } }; T._$ClientEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["group_settings_id", serializers.serialize$2$specifiedType(object.groupId, C.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "display_name", serializers.serialize$2$specifiedType(object.displayName, C.FullType_h8g), "balance", serializers.serialize$2$specifiedType(object.balance, C.FullType_MME), "credit_balance", serializers.serialize$2$specifiedType(object.creditBalance, C.FullType_MME), "paid_to_date", serializers.serialize$2$specifiedType(object.paidToDate, C.FullType_MME), "client_hash", serializers.serialize$2$specifiedType(object.clientHash, C.FullType_h8g), "address1", serializers.serialize$2$specifiedType(object.address1, C.FullType_h8g), "address2", serializers.serialize$2$specifiedType(object.address2, C.FullType_h8g), "city", serializers.serialize$2$specifiedType(object.city, C.FullType_h8g), "state", serializers.serialize$2$specifiedType(object.state, C.FullType_h8g), "postal_code", serializers.serialize$2$specifiedType(object.postalCode, C.FullType_h8g), "country_id", serializers.serialize$2$specifiedType(object.countryId, C.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, C.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, C.FullType_h8g), "website", serializers.serialize$2$specifiedType(object.website, C.FullType_h8g), "industry_id", serializers.serialize$2$specifiedType(object.industryId, C.FullType_h8g), "size_id", serializers.serialize$2$specifiedType(object.sizeId, C.FullType_h8g), "vat_number", serializers.serialize$2$specifiedType(object.vatNumber, C.FullType_h8g), "id_number", serializers.serialize$2$specifiedType(object.idNumber, C.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "shipping_address1", serializers.serialize$2$specifiedType(object.shippingAddress1, C.FullType_h8g), "shipping_address2", serializers.serialize$2$specifiedType(object.shippingAddress2, C.FullType_h8g), "shipping_city", serializers.serialize$2$specifiedType(object.shippingCity, C.FullType_h8g), "shipping_state", serializers.serialize$2$specifiedType(object.shippingState, C.FullType_h8g), "shipping_postal_code", serializers.serialize$2$specifiedType(object.shippingPostalCode, C.FullType_h8g), "shipping_country_id", serializers.serialize$2$specifiedType(object.shippingCountryId, C.FullType_h8g), "settings", serializers.serialize$2$specifiedType(object.settings, C.FullType_Iqz0), "last_login", serializers.serialize$2$specifiedType(object.lastLogin, C.FullType_kjq), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "contacts", serializers.serialize$2$specifiedType(object.contacts, C.FullType_CFh), "activities", serializers.serialize$2$specifiedType(object.activities, C.FullType_QWw), "ledger", serializers.serialize$2$specifiedType(object.ledger, C.FullType_2jN), "gateway_tokens", serializers.serialize$2$specifiedType(object.gatewayTokens, C.FullType_kr3), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, C.FullType_oGx), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, key, value, t15, t16, t17, result = new T.ClientEntityBuilder(); result.get$_client_model$_$this()._number = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SystemLogEntity, t3 = type$.ListBuilder_legacy_SystemLogEntity, t4 = type$.legacy_DocumentEntity, t5 = type$.ListBuilder_legacy_DocumentEntity, t6 = type$.legacy_GatewayTokenEntity, t7 = type$.ListBuilder_legacy_GatewayTokenEntity, t8 = type$.legacy_LedgerEntity, t9 = type$.ListBuilder_legacy_LedgerEntity, t10 = type$.legacy_ActivityEntity, t11 = type$.ListBuilder_legacy_ActivityEntity, t12 = type$.legacy_ContactEntity, t13 = type$.ListBuilder_legacy_ContactEntity, t14 = type$.legacy_SettingsEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "group_settings_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._groupId = t15; break; case "loadedAt": t15 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._loadedAt = t15; break; case "name": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_name = t15; break; case "display_name": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._displayName = t15; break; case "balance": t15 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_client_model$_$this()._balance = t15; break; case "credit_balance": t15 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_client_model$_$this()._creditBalance = t15; break; case "paid_to_date": t15 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_client_model$_$this()._paidToDate = t15; break; case "client_hash": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._clientHash = t15; break; case "address1": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._address1 = t15; break; case "address2": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._address2 = t15; break; case "city": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._city = t15; break; case "state": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_state = t15; break; case "postal_code": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._postalCode = t15; break; case "country_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._countryId = t15; break; case "phone": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_phone = t15; break; case "private_notes": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._privateNotes = t15; break; case "public_notes": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._publicNotes = t15; break; case "website": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._website = t15; break; case "industry_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._industryId = t15; break; case "size_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._sizeId = t15; break; case "vat_number": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._vatNumber = t15; break; case "id_number": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._idNumber = t15; break; case "number": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._number = t15; break; case "shipping_address1": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingAddress1 = t15; break; case "shipping_address2": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingAddress2 = t15; break; case "shipping_city": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingCity = t15; break; case "shipping_state": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingState = t15; break; case "shipping_postal_code": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingPostalCode = t15; break; case "shipping_country_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._shippingCountryId = t15; break; case "settings": t15 = result.get$_client_model$_$this(); t16 = t15._client_model$_settings; t15 = t16 == null ? t15._client_model$_settings = new G.SettingsEntityBuilder() : t16; t16 = t14._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz0)); if (t16 == null) H.throwExpression(P.ArgumentError$notNull("other")); t15._settings_model$_$v = t16; break; case "last_login": t15 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._lastLogin = t15; break; case "custom_value1": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue1 = t15; break; case "custom_value2": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue2 = t15; break; case "custom_value3": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue3 = t15; break; case "custom_value4": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue4 = t15; break; case "contacts": t15 = result.get$_client_model$_$this(); t16 = t15._contacts; if (t16 == null) { t16 = new D.ListBuilder(t13); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t12); t15._contacts = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_CFh)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "activities": t15 = result.get$_client_model$_$this(); t16 = t15._activities; if (t16 == null) { t16 = new D.ListBuilder(t11); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t10); t15._activities = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_QWw)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "ledger": t15 = result.get$_client_model$_$this(); t16 = t15._ledger; if (t16 == null) { t16 = new D.ListBuilder(t9); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t8); t15._ledger = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_2jN)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "gateway_tokens": t15 = result.get$_client_model$_$this(); t16 = t15._gatewayTokens; if (t16 == null) { t16 = new D.ListBuilder(t7); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t6); t15._gatewayTokens = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_kr3)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "documents": t15 = result.get$_client_model$_$this(); t16 = t15._client_model$_documents; if (t16 == null) { t16 = new D.ListBuilder(t5); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t4); t15._client_model$_documents = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "system_logs": t15 = result.get$_client_model$_$this(); t16 = t15._systemLogs; if (t16 == null) { t16 = new D.ListBuilder(t3); t16.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t15._systemLogs = t16; t15 = t16; } else t15 = t16; t16 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_oGx)); t17 = t15.$ti; if (t17._eval$1("_BuiltList<1>")._is(t16)) { t15.__ListBuilder__list = t16._list; t15._listOwner = t16; } else { t15.__ListBuilder__list = P.List_List$from(t16, true, t17._precomputed1); t15._listOwner = null; } break; case "isChanged": t15 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isChanged = t15; break; case "created_at": t15 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_createdAt = t15; break; case "updated_at": t15 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_updatedAt = t15; break; case "archived_at": t15 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_archivedAt = t15; break; case "is_deleted": t15 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isDeleted = t15; break; case "user_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_createdUserId = t15; break; case "assigned_user_id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_assignedUserId = t15; break; case "id": t15 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_id = t15; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_u3D; }, get$wireName: function() { return "ClientEntity"; } }; T._$ContactEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["first_name", serializers.serialize$2$specifiedType(object.firstName, C.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, C.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, C.FullType_h8g), "password", serializers.serialize$2$specifiedType(object.password, C.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, C.FullType_h8g), "contact_key", serializers.serialize$2$specifiedType(object.contactKey, C.FullType_h8g), "is_primary", serializers.serialize$2$specifiedType(object.isPrimary, C.FullType_MtR), "send_email", serializers.serialize$2$specifiedType(object.sendEmail, C.FullType_MtR), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "last_login", serializers.serialize$2$specifiedType(object.lastLogin, C.FullType_kjq), "link", serializers.serialize$2$specifiedType(object.link, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new T.ContactEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_firstName = t1; break; case "last_name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_lastName = t1; break; case "email": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_email = t1; break; case "password": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_password = t1; break; case "phone": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_phone = t1; break; case "contact_key": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._contactKey = t1; break; case "is_primary": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isPrimary = t1; break; case "send_email": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_sendEmail = t1; break; case "custom_value1": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue1 = t1; break; case "custom_value2": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue2 = t1; break; case "custom_value3": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue3 = t1; break; case "custom_value4": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_customValue4 = t1; break; case "last_login": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._lastLogin = t1; break; case "link": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._link = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_model$_$this()._client_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_model$_$this()._client_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_model$_$this()._client_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_QsZ; }, get$wireName: function() { return "ContactEntity"; } }; T._$ClientListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof T.ClientListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._client_model$__hashCode; return t1 == null ? this._client_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; T.ClientListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._client_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._client_model$_$v = null; } t1 = _this._client_model$_data; return t1 == null ? _this._client_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ClientEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "ClientListResponse", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new T._$ClientListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._client_model$_$v = t1; return _$result; } }; T._$ClientItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof T.ClientItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._client_model$__hashCode; return t1 == null ? this._client_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; T.ClientItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t2._client_model$_$v = t1; _this._client_model$_data = t2; _this._client_model$_$v = null; } t1 = _this._client_model$_data; if (t1 == null) { t1 = new T.ClientEntityBuilder(); t1.get$_client_model$_$this()._number = ""; _this._client_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "ClientItemResponse", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new T._$ClientItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._client_model$_$v = t1; return _$result; } }; T._$ClientEntity.prototype = { rebuild$1: function(updates) { var t1 = new T.ClientEntityBuilder(); t1.get$_client_model$_$this()._number = ""; t1._client_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.ClientEntity && _this.groupId === other.groupId && _this.name === other.name && _this.displayName === other.displayName && _this.balance === other.balance && _this.creditBalance === other.creditBalance && _this.paidToDate === other.paidToDate && _this.clientHash === other.clientHash && _this.address1 === other.address1 && _this.address2 === other.address2 && _this.city === other.city && _this.state === other.state && _this.postalCode === other.postalCode && _this.countryId === other.countryId && _this.phone === other.phone && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.website === other.website && _this.industryId === other.industryId && _this.sizeId === other.sizeId && _this.vatNumber === other.vatNumber && _this.idNumber === other.idNumber && _this.number === other.number && _this.shippingAddress1 === other.shippingAddress1 && _this.shippingAddress2 === other.shippingAddress2 && _this.shippingCity === other.shippingCity && _this.shippingState === other.shippingState && _this.shippingPostalCode === other.shippingPostalCode && _this.shippingCountryId === other.shippingCountryId && J.$eq$(_this.settings, other.settings) && _this.lastLogin === other.lastLogin && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && J.$eq$(_this.contacts, other.contacts) && J.$eq$(_this.activities, other.activities) && J.$eq$(_this.ledger, other.ledger) && J.$eq$(_this.gatewayTokens, other.gatewayTokens) && J.$eq$(_this.documents, other.documents) && J.$eq$(_this.systemLogs, other.systemLogs) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._client_model$__hashCode; return t1 == null ? _this._client_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.groupId)), C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.displayName)), C.JSNumber_methods.get$hashCode(_this.balance)), C.JSNumber_methods.get$hashCode(_this.creditBalance)), C.JSNumber_methods.get$hashCode(_this.paidToDate)), C.JSString_methods.get$hashCode(_this.clientHash)), C.JSString_methods.get$hashCode(_this.address1)), C.JSString_methods.get$hashCode(_this.address2)), C.JSString_methods.get$hashCode(_this.city)), C.JSString_methods.get$hashCode(_this.state)), C.JSString_methods.get$hashCode(_this.postalCode)), C.JSString_methods.get$hashCode(_this.countryId)), C.JSString_methods.get$hashCode(_this.phone)), C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.publicNotes)), C.JSString_methods.get$hashCode(_this.website)), C.JSString_methods.get$hashCode(_this.industryId)), C.JSString_methods.get$hashCode(_this.sizeId)), C.JSString_methods.get$hashCode(_this.vatNumber)), C.JSString_methods.get$hashCode(_this.idNumber)), C.JSString_methods.get$hashCode(_this.number)), C.JSString_methods.get$hashCode(_this.shippingAddress1)), C.JSString_methods.get$hashCode(_this.shippingAddress2)), C.JSString_methods.get$hashCode(_this.shippingCity)), C.JSString_methods.get$hashCode(_this.shippingState)), C.JSString_methods.get$hashCode(_this.shippingPostalCode)), C.JSString_methods.get$hashCode(_this.shippingCountryId)), J.get$hashCode$(_this.settings)), C.JSInt_methods.get$hashCode(_this.lastLogin)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.contacts)), J.get$hashCode$(_this.activities)), J.get$hashCode$(_this.ledger)), J.get$hashCode$(_this.gatewayTokens)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.systemLogs)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "groupId", _this.groupId); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "displayName", _this.displayName); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "creditBalance", _this.creditBalance); t2.add$2(t1, "paidToDate", _this.paidToDate); t2.add$2(t1, "clientHash", _this.clientHash); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "industryId", _this.industryId); t2.add$2(t1, "sizeId", _this.sizeId); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "shippingAddress1", _this.shippingAddress1); t2.add$2(t1, "shippingAddress2", _this.shippingAddress2); t2.add$2(t1, "shippingCity", _this.shippingCity); t2.add$2(t1, "shippingState", _this.shippingState); t2.add$2(t1, "shippingPostalCode", _this.shippingPostalCode); t2.add$2(t1, "shippingCountryId", _this.shippingCountryId); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "lastLogin", _this.lastLogin); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "contacts", _this.contacts); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "ledger", _this.ledger); t2.add$2(t1, "gatewayTokens", _this.gatewayTokens); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$address1: function() { return this.address1; }, get$address2: function() { return this.address2; }, get$city: function(receiver) { return this.city; }, get$state: function(receiver) { return this.state; }, get$postalCode: function(receiver) { return this.postalCode; }, get$shippingAddress1: function() { return this.shippingAddress1; }, get$shippingAddress2: function() { return this.shippingAddress2; }, get$shippingCity: function() { return this.shippingCity; }, get$shippingState: function() { return this.shippingState; }, get$shippingPostalCode: function() { return this.shippingPostalCode; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; T.ClientEntityBuilder.prototype = { get$name: function(_) { return this.get$_client_model$_$this()._client_model$_name; }, get$settings: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._client_model$_settings; return t2 == null ? t1._client_model$_settings = new G.SettingsEntityBuilder() : t2; }, get$contacts: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._contacts; return t2 == null ? t1._contacts = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ContactEntity) : t2; }, get$activities: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._activities; return t2 == null ? t1._activities = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity) : t2; }, get$ledger: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._ledger; return t2 == null ? t1._ledger = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LedgerEntity) : t2; }, get$gatewayTokens: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._gatewayTokens; return t2 == null ? t1._gatewayTokens = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayTokenEntity) : t2; }, get$documents: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._client_model$_documents; return t2 == null ? t1._client_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$systemLogs: function() { var t1 = this.get$_client_model$_$this(), t2 = t1._systemLogs; return t2 == null ? t1._systemLogs = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$id: function(_) { return this.get$_client_model$_$this()._client_model$_id; }, get$_client_model$_$this: function() { var t1, t2, _this = this, $$v = _this._client_model$_$v; if ($$v != null) { _this._groupId = $$v.groupId; _this._loadedAt = $$v.loadedAt; _this._client_model$_name = $$v.name; _this._displayName = $$v.displayName; _this._balance = $$v.balance; _this._creditBalance = $$v.creditBalance; _this._paidToDate = $$v.paidToDate; _this._clientHash = $$v.clientHash; _this._address1 = $$v.address1; _this._address2 = $$v.address2; _this._city = $$v.city; _this._client_model$_state = $$v.state; _this._postalCode = $$v.postalCode; _this._countryId = $$v.countryId; _this._client_model$_phone = $$v.phone; _this._privateNotes = $$v.privateNotes; _this._publicNotes = $$v.publicNotes; _this._website = $$v.website; _this._industryId = $$v.industryId; _this._sizeId = $$v.sizeId; _this._vatNumber = $$v.vatNumber; _this._idNumber = $$v.idNumber; _this._number = $$v.number; _this._shippingAddress1 = $$v.shippingAddress1; _this._shippingAddress2 = $$v.shippingAddress2; _this._shippingCity = $$v.shippingCity; _this._shippingState = $$v.shippingState; _this._shippingPostalCode = $$v.shippingPostalCode; _this._shippingCountryId = $$v.shippingCountryId; t1 = $$v.settings; t1.toString; t2 = new G.SettingsEntityBuilder(); t2._settings_model$_$v = t1; _this._client_model$_settings = t2; _this._lastLogin = $$v.lastLogin; _this._client_model$_customValue1 = $$v.customValue1; _this._client_model$_customValue2 = $$v.customValue2; _this._client_model$_customValue3 = $$v.customValue3; _this._client_model$_customValue4 = $$v.customValue4; t1 = $$v.contacts; t1.toString; _this._contacts = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._activities = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.ledger; t1.toString; _this._ledger = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.gatewayTokens; t1.toString; _this._gatewayTokens = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.documents; t1.toString; _this._client_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.systemLogs; t1.toString; _this._systemLogs = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._client_model$_isChanged = $$v.isChanged; _this._client_model$_createdAt = $$v.createdAt; _this._client_model$_updatedAt = $$v.updatedAt; _this._client_model$_archivedAt = $$v.archivedAt; _this._client_model$_isDeleted = $$v.isDeleted; _this._client_model$_createdUserId = $$v.createdUserId; _this._client_model$_assignedUserId = $$v.assignedUserId; _this._client_model$_id = $$v.id; _this._client_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, exception, _this = this, _s12_ = "ClientEntity", _$result = null; try { _$result0 = _this._client_model$_$v; if (_$result0 == null) { t1 = _this.get$_client_model$_$this()._groupId; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "groupId")); t2 = _this.get$_client_model$_$this()._loadedAt; t3 = _this.get$_client_model$_$this()._client_model$_name; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "name")); t4 = _this.get$_client_model$_$this()._displayName; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "displayName")); t5 = _this.get$_client_model$_$this()._balance; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "balance")); t6 = _this.get$_client_model$_$this()._creditBalance; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "creditBalance")); t7 = _this.get$_client_model$_$this()._paidToDate; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "paidToDate")); t8 = _this.get$_client_model$_$this()._clientHash; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "clientHash")); t9 = _this.get$_client_model$_$this()._address1; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "address1")); t10 = _this.get$_client_model$_$this()._address2; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "address2")); t11 = _this.get$_client_model$_$this()._city; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "city")); t12 = _this.get$_client_model$_$this()._client_model$_state; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "state")); t13 = _this.get$_client_model$_$this()._postalCode; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "postalCode")); t14 = _this.get$_client_model$_$this()._countryId; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "countryId")); t15 = _this.get$_client_model$_$this()._client_model$_phone; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "phone")); t16 = _this.get$_client_model$_$this()._privateNotes; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "privateNotes")); t17 = _this.get$_client_model$_$this()._publicNotes; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "publicNotes")); t18 = _this.get$_client_model$_$this()._website; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "website")); t19 = _this.get$_client_model$_$this()._industryId; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "industryId")); t20 = _this.get$_client_model$_$this()._sizeId; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "sizeId")); t21 = _this.get$_client_model$_$this()._vatNumber; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "vatNumber")); t22 = _this.get$_client_model$_$this()._idNumber; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "idNumber")); t23 = _this.get$_client_model$_$this()._number; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "number")); t24 = _this.get$_client_model$_$this()._shippingAddress1; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingAddress1")); t25 = _this.get$_client_model$_$this()._shippingAddress2; if (t25 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingAddress2")); t26 = _this.get$_client_model$_$this()._shippingCity; if (t26 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingCity")); t27 = _this.get$_client_model$_$this()._shippingState; if (t27 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingState")); t28 = _this.get$_client_model$_$this()._shippingPostalCode; if (t28 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingPostalCode")); t29 = _this.get$_client_model$_$this()._shippingCountryId; if (t29 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "shippingCountryId")); t30 = _this.get$settings().build$0(0); t31 = _this.get$_client_model$_$this()._lastLogin; if (t31 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "lastLogin")); t32 = _this.get$_client_model$_$this()._client_model$_customValue1; if (t32 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue1")); t33 = _this.get$_client_model$_$this()._client_model$_customValue2; if (t33 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue2")); t34 = _this.get$_client_model$_$this()._client_model$_customValue3; if (t34 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue3")); t35 = _this.get$_client_model$_$this()._client_model$_customValue4; if (t35 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue4")); t36 = _this.get$contacts().build$0(0); t37 = _this.get$activities().build$0(0); t38 = _this.get$ledger().build$0(0); t39 = _this.get$gatewayTokens().build$0(0); t40 = _this.get$documents().build$0(0); t41 = _this.get$systemLogs().build$0(0); t42 = _this.get$_client_model$_$this()._client_model$_isChanged; t43 = _this.get$_client_model$_$this()._client_model$_createdAt; if (t43 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "createdAt")); t44 = _this.get$_client_model$_$this()._client_model$_updatedAt; if (t44 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "updatedAt")); t45 = _this.get$_client_model$_$this()._client_model$_archivedAt; if (t45 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "archivedAt")); t46 = _this.get$_client_model$_$this()._client_model$_isDeleted; t47 = _this.get$_client_model$_$this()._client_model$_createdUserId; t48 = _this.get$_client_model$_$this()._client_model$_assignedUserId; t49 = _this.get$_client_model$_$this()._client_model$_id; if (t49 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = T._$ClientEntity$_(t37, t9, t10, t45, t48, t5, t11, t8, t36, t14, t43, t47, t6, t32, t33, t34, t35, t4, t40, t39, t1, t49, t22, t19, t42, t46, t31, t38, t2, t3, t23, t7, t15, t13, t16, t17, t30, t24, t25, t26, t29, t28, t27, t20, t12, t41, t44, t21, t18); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "contacts"; _this.get$contacts().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); _$failedField = "ledger"; _this.get$ledger().build$0(0); _$failedField = "gatewayTokens"; _this.get$gatewayTokens().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._client_model$_$v = t1; return _$result; } }; T._$ContactEntity.prototype = { rebuild$1: function(updates) { var t1 = new T.ContactEntityBuilder(); t1._client_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.ContactEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.password === other.password && _this.phone === other.phone && _this.contactKey === other.contactKey && _this.isPrimary === other.isPrimary && _this.sendEmail === other.sendEmail && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.lastLogin === other.lastLogin && _this.link === other.link && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._client_model$__hashCode; return t1 == null ? _this._client_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.firstName)), C.JSString_methods.get$hashCode(_this.lastName)), C.JSString_methods.get$hashCode(_this.email)), C.JSString_methods.get$hashCode(_this.password)), C.JSString_methods.get$hashCode(_this.phone)), C.JSString_methods.get$hashCode(_this.contactKey)), C.JSBool_methods.get$hashCode(_this.isPrimary)), C.JSBool_methods.get$hashCode(_this.sendEmail)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSInt_methods.get$hashCode(_this.lastLogin)), C.JSString_methods.get$hashCode(_this.link)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ContactEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "password", _this.password); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "contactKey", _this.contactKey); t2.add$2(t1, "isPrimary", _this.isPrimary); t2.add$2(t1, "sendEmail", _this.sendEmail); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "lastLogin", _this.lastLogin); t2.add$2(t1, "link", _this.link); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; T.ContactEntityBuilder.prototype = { get$id: function(_) { return this.get$_client_model$_$this()._client_model$_id; }, get$_client_model$_$this: function() { var _this = this, $$v = _this._client_model$_$v; if ($$v != null) { _this._client_model$_firstName = $$v.firstName; _this._client_model$_lastName = $$v.lastName; _this._client_model$_email = $$v.email; _this._client_model$_password = $$v.password; _this._client_model$_phone = $$v.phone; _this._contactKey = $$v.contactKey; _this._client_model$_isPrimary = $$v.isPrimary; _this._client_model$_sendEmail = $$v.sendEmail; _this._client_model$_customValue1 = $$v.customValue1; _this._client_model$_customValue2 = $$v.customValue2; _this._client_model$_customValue3 = $$v.customValue3; _this._client_model$_customValue4 = $$v.customValue4; _this._lastLogin = $$v.lastLogin; _this._link = $$v.link; _this._client_model$_isChanged = $$v.isChanged; _this._client_model$_createdAt = $$v.createdAt; _this._client_model$_updatedAt = $$v.updatedAt; _this._client_model$_archivedAt = $$v.archivedAt; _this._client_model$_isDeleted = $$v.isDeleted; _this._client_model$_createdUserId = $$v.createdUserId; _this._client_model$_assignedUserId = $$v.assignedUserId; _this._client_model$_id = $$v.id; _this._client_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, _this = this, _s13_ = "ContactEntity", _$result = _this._client_model$_$v; if (_$result == null) { t1 = _this.get$_client_model$_$this()._client_model$_firstName; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "firstName")); t2 = _this.get$_client_model$_$this()._client_model$_lastName; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "lastName")); t3 = _this.get$_client_model$_$this()._client_model$_email; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "email")); t4 = _this.get$_client_model$_$this()._client_model$_password; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "password")); t5 = _this.get$_client_model$_$this()._client_model$_phone; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "phone")); t6 = _this.get$_client_model$_$this()._contactKey; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "contactKey")); t7 = _this.get$_client_model$_$this()._client_model$_isPrimary; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isPrimary")); t8 = _this.get$_client_model$_$this()._client_model$_sendEmail; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "sendEmail")); t9 = _this.get$_client_model$_$this()._client_model$_customValue1; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t10 = _this.get$_client_model$_$this()._client_model$_customValue2; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t11 = _this.get$_client_model$_$this()._client_model$_customValue3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t12 = _this.get$_client_model$_$this()._client_model$_customValue4; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t13 = _this.get$_client_model$_$this()._lastLogin; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "lastLogin")); t14 = _this.get$_client_model$_$this()._link; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "link")); t15 = _this.get$_client_model$_$this()._client_model$_isChanged; t16 = _this.get$_client_model$_$this()._client_model$_createdAt; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t17 = _this.get$_client_model$_$this()._client_model$_updatedAt; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t18 = _this.get$_client_model$_$this()._client_model$_archivedAt; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t19 = _this.get$_client_model$_$this()._client_model$_isDeleted; t20 = _this.get$_client_model$_$this()._client_model$_createdUserId; t21 = _this.get$_client_model$_$this()._client_model$_assignedUserId; t22 = _this.get$_client_model$_$this()._client_model$_id; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result = T._$ContactEntity$_(t18, t21, t6, t16, t20, t9, t10, t11, t12, t3, t1, t22, t15, t19, t7, t13, t2, t14, t4, t5, t8, t17); } return _this._client_model$_$v = _$result; } }; T._ClientEntity_Object_BaseEntity.prototype = {}; T._ClientEntity_Object_BaseEntity_SelectableEntity.prototype = {}; T._ContactEntity_Object_BaseEntity.prototype = {}; T._ContactEntity_Object_BaseEntity_SelectableEntity.prototype = {}; O.CompanyGatewayListResponse.prototype = {}; O.CompanyGatewayItemResponse.prototype = {}; O.CompanyGatewayEntity.prototype = { get$isStale: function() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$entityType: function() { return C.EntityType_companyGateway; }, get$parsedConfig: function() { var t1 = this.config; return t1.length === 0 ? P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : C.C_JsonCodec.decode$2$reviver(0, t1, null); }, getSettingsForGatewayTypeId$1: function(gatewayTypeId) { var t1 = J.$index$asx(this.feesAndLimitsMap._map$_map, gatewayTypeId); return t1 == null ? O.FeesAndLimitsSettings_FeesAndLimitsSettings(null) : t1; }, get$listDisplayName: function() { var _this = this, t1 = _this.gatewayId === "54faab2ab6e3223dbe848b1686490baa" ? J.$index$asx(_this.get$parsedConfig(), "name") : _this.label; return t1 == null ? _this.label : t1; }, addCard$1: function(cardType) { return this.rebuild$1(new O.CompanyGatewayEntity_addCard_closure(this, cardType)); }, removeCard$1: function(cardType) { return this.rebuild$1(new O.CompanyGatewayEntity_removeCard_closure(this, cardType)); }, updateConfig$2: function(field, value) { var t2, updatedConfig = this.get$parsedConfig(), t1 = J.getInterceptor$(value); t1 = t1.get$runtimeType(value) === C.Type_String_k8F && t1.$eq(value, ""); t2 = J.getInterceptor$ax(updatedConfig); if (t1) t2.remove$1(updatedConfig, field); else t2.$indexSet(updatedConfig, field, value); return this.rebuild$1(new O.CompanyGatewayEntity_updateConfig_closure(updatedConfig)); }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.label, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; O.CompanyGatewayEntity_addCard_closure.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._acceptedCreditCards = (this.$this.acceptedCreditCards | this.cardType) >>> 0; return b; }, $signature: 43 }; O.CompanyGatewayEntity_removeCard_closure.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._acceptedCreditCards = (this.$this.acceptedCreditCards ^ this.cardType) >>> 0; return b; }, $signature: 43 }; O.CompanyGatewayEntity_updateConfig_closure.prototype = { call$1: function(b) { var t1 = C.C_JsonCodec.encode$2$toEncodable(this.updatedConfig, null); b.get$_company_gateway_model$_$this()._config = t1; return b; }, $signature: 43 }; O.FeesAndLimitsSettings.prototype = {}; O._$CompanyGatewayListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_A8J)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new O.CompanyGatewayListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CompanyGatewayEntity, t3 = type$.ListBuilder_legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_gateway_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._company_gateway_model$_data = t6; result._company_gateway_model$_$v = null; } t4 = result._company_gateway_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._company_gateway_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_A8J)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2Vk2; }, get$wireName: function() { return "CompanyGatewayListResponse"; } }; O._$CompanyGatewayItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_UQL)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new O.CompanyGatewayItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_gateway_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new O.CompanyGatewayEntityBuilder(); t3._company_gateway_model$_$v = t2; result._company_gateway_model$_data = t3; result._company_gateway_model$_$v = null; } t2 = result._company_gateway_model$_data; if (t2 == null) t2 = result._company_gateway_model$_data = new O.CompanyGatewayEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_UQL)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._company_gateway_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_U3i; }, get$wireName: function() { return "CompanyGatewayItemResponse"; } }; O._$CompanyGatewayEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["gateway_key", serializers.serialize$2$specifiedType(object.gatewayId, C.FullType_h8g), "accepted_credit_cards", serializers.serialize$2$specifiedType(object.acceptedCreditCards, C.FullType_kjq), "require_shipping_address", serializers.serialize$2$specifiedType(object.requireShippingAddress, C.FullType_MtR), "require_billing_address", serializers.serialize$2$specifiedType(object.requireBillingAddress, C.FullType_MtR), "require_client_name", serializers.serialize$2$specifiedType(object.requireClientName, C.FullType_MtR), "require_client_phone", serializers.serialize$2$specifiedType(object.requireClientPhone, C.FullType_MtR), "require_contact_name", serializers.serialize$2$specifiedType(object.requireContactName, C.FullType_MtR), "require_contact_email", serializers.serialize$2$specifiedType(object.requireContactEmail, C.FullType_MtR), "require_cvv", serializers.serialize$2$specifiedType(object.requireCvv, C.FullType_MtR), "update_details", serializers.serialize$2$specifiedType(object.updateDetails, C.FullType_MtR), "fees_and_limits", serializers.serialize$2$specifiedType(object.feesAndLimitsMap, C.FullType_oCX), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, C.FullType_oGx), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "config", serializers.serialize$2$specifiedType(object.config, C.FullType_h8g), "token_billing", serializers.serialize$2$specifiedType(object.tokenBilling, C.FullType_h8g), "test_mode", serializers.serialize$2$specifiedType(object.isTestMode, C.FullType_MtR), "label", serializers.serialize$2$specifiedType(object.label, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.requirePostalCode; if (value != null) { result.push("require_postal_code"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new O.CompanyGatewayEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SystemLogEntity, t3 = type$.ListBuilder_legacy_SystemLogEntity, t4 = type$.MapBuilder_of_legacy_String_and_legacy_FeesAndLimitsSettings; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "loadedAt": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t5; break; case "gateway_key": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._gatewayId = t5; break; case "accepted_credit_cards": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_model$_$this()._acceptedCreditCards = t5; break; case "require_shipping_address": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireShippingAddress = t5; break; case "require_billing_address": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireBillingAddress = t5; break; case "require_client_name": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireClientName = t5; break; case "require_postal_code": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requirePostalCode = t5; break; case "require_client_phone": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireClientPhone = t5; break; case "require_contact_name": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireContactName = t5; break; case "require_contact_email": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireContactEmail = t5; break; case "require_cvv": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._requireCvv = t5; break; case "update_details": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._updateDetails = t5; break; case "fees_and_limits": t5 = result.get$_company_gateway_model$_$this(); t6 = t5._feesAndLimitsMap; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._feesAndLimitsMap = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_oCX)); break; case "system_logs": t5 = result.get$_company_gateway_model$_$this(); t6 = t5._company_gateway_model$_systemLogs; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._company_gateway_model$_systemLogs = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_oGx)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "custom_value1": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue1 = t5; break; case "custom_value2": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue2 = t5; break; case "custom_value3": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue3 = t5; break; case "custom_value4": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_customValue4 = t5; break; case "config": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._config = t5; break; case "token_billing": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._tokenBilling = t5; break; case "test_mode": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._isTestMode = t5; break; case "label": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._label = t5; break; case "isChanged": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged = t5; break; case "created_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_createdAt = t5; break; case "updated_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_updatedAt = t5; break; case "archived_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_model$_$this()._company_gateway_model$_archivedAt = t5; break; case "is_deleted": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isDeleted = t5; break; case "user_id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_createdUserId = t5; break; case "assigned_user_id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_assignedUserId = t5; break; case "id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_id = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2uL; }, get$wireName: function() { return "CompanyGatewayEntity"; } }; O._$FeesAndLimitsSettingsSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["min_limit", serializers.serialize$2$specifiedType(object.minLimit, C.FullType_MME), "max_limit", serializers.serialize$2$specifiedType(object.maxLimit, C.FullType_MME), "fee_amount", serializers.serialize$2$specifiedType(object.feeAmount, C.FullType_MME), "fee_percent", serializers.serialize$2$specifiedType(object.feePercent, C.FullType_MME), "fee_cap", serializers.serialize$2$specifiedType(object.feeCap, C.FullType_MME), "fee_tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, C.FullType_MME), "fee_tax_name1", serializers.serialize$2$specifiedType(object.taxName1, C.FullType_h8g), "fee_tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, C.FullType_MME), "fee_tax_name2", serializers.serialize$2$specifiedType(object.taxName2, C.FullType_h8g), "fee_tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, C.FullType_MME), "fee_tax_name3", serializers.serialize$2$specifiedType(object.taxName3, C.FullType_h8g), "adjust_fee_percent", serializers.serialize$2$specifiedType(object.adjustFeePercent, C.FullType_MtR), "is_enabled", serializers.serialize$2$specifiedType(object.isEnabled, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new O.FeesAndLimitsSettingsBuilder(); result.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = false; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "min_limit": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._minLimit = t1; break; case "max_limit": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._maxLimit = t1; break; case "fee_amount": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._feeAmount = t1; break; case "fee_percent": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._feePercent = t1; break; case "fee_cap": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._feeCap = t1; break; case "fee_tax_rate1": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1 = t1; break; case "fee_tax_name1": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1 = t1; break; case "fee_tax_rate2": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2 = t1; break; case "fee_tax_name2": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2 = t1; break; case "fee_tax_rate3": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3 = t1; break; case "fee_tax_name3": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3 = t1; break; case "adjust_fee_percent": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._adjustFeePercent = t1; break; case "is_enabled": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_AcR; }, get$wireName: function() { return "FeesAndLimitsSettings"; } }; O._$CompanyGatewayListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.CompanyGatewayListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._company_gateway_model$__hashCode; return t1 == null ? this._company_gateway_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.CompanyGatewayListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._company_gateway_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_gateway_model$_$v = null; } t1 = _this._company_gateway_model$_data; return t1 == null ? _this._company_gateway_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CompanyGatewayEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "CompanyGatewayListResponse", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new O._$CompanyGatewayListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_gateway_model$_$v = t1; return _$result; } }; O._$CompanyGatewayItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.CompanyGatewayItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._company_gateway_model$__hashCode; return t1 == null ? this._company_gateway_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.CompanyGatewayItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new O.CompanyGatewayEntityBuilder(); t2._company_gateway_model$_$v = t1; _this._company_gateway_model$_data = t2; _this._company_gateway_model$_$v = null; } t1 = _this._company_gateway_model$_data; return t1 == null ? _this._company_gateway_model$_data = new O.CompanyGatewayEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "CompanyGatewayItemResponse", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new O._$CompanyGatewayItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_gateway_model$_$v = t1; return _$result; } }; O._$CompanyGatewayEntity.prototype = { rebuild$1: function(updates) { var t1 = new O.CompanyGatewayEntityBuilder(); t1._company_gateway_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof O.CompanyGatewayEntity && _this.gatewayId === other.gatewayId && _this.acceptedCreditCards === other.acceptedCreditCards && _this.requireShippingAddress === other.requireShippingAddress && _this.requireBillingAddress === other.requireBillingAddress && _this.requireClientName === other.requireClientName && _this.requirePostalCode == other.requirePostalCode && _this.requireClientPhone === other.requireClientPhone && _this.requireContactName === other.requireContactName && _this.requireContactEmail === other.requireContactEmail && _this.requireCvv === other.requireCvv && _this.updateDetails === other.updateDetails && J.$eq$(_this.feesAndLimitsMap, other.feesAndLimitsMap) && J.$eq$(_this.systemLogs, other.systemLogs) && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.config === other.config && _this.tokenBilling === other.tokenBilling && _this.isTestMode === other.isTestMode && _this.label === other.label && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_gateway_model$__hashCode; return t1 == null ? _this._company_gateway_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.gatewayId)), C.JSInt_methods.get$hashCode(_this.acceptedCreditCards)), C.JSBool_methods.get$hashCode(_this.requireShippingAddress)), C.JSBool_methods.get$hashCode(_this.requireBillingAddress)), C.JSBool_methods.get$hashCode(_this.requireClientName)), J.get$hashCode$(_this.requirePostalCode)), C.JSBool_methods.get$hashCode(_this.requireClientPhone)), C.JSBool_methods.get$hashCode(_this.requireContactName)), C.JSBool_methods.get$hashCode(_this.requireContactEmail)), C.JSBool_methods.get$hashCode(_this.requireCvv)), C.JSBool_methods.get$hashCode(_this.updateDetails)), J.get$hashCode$(_this.feesAndLimitsMap)), J.get$hashCode$(_this.systemLogs)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSString_methods.get$hashCode(_this.config)), C.JSString_methods.get$hashCode(_this.tokenBilling)), C.JSBool_methods.get$hashCode(_this.isTestMode)), C.JSString_methods.get$hashCode(_this.label)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "gatewayId", _this.gatewayId); t2.add$2(t1, "acceptedCreditCards", _this.acceptedCreditCards); t2.add$2(t1, "requireShippingAddress", _this.requireShippingAddress); t2.add$2(t1, "requireBillingAddress", _this.requireBillingAddress); t2.add$2(t1, "requireClientName", _this.requireClientName); t2.add$2(t1, "requirePostalCode", _this.requirePostalCode); t2.add$2(t1, "requireClientPhone", _this.requireClientPhone); t2.add$2(t1, "requireContactName", _this.requireContactName); t2.add$2(t1, "requireContactEmail", _this.requireContactEmail); t2.add$2(t1, "requireCvv", _this.requireCvv); t2.add$2(t1, "updateDetails", _this.updateDetails); t2.add$2(t1, "feesAndLimitsMap", _this.feesAndLimitsMap); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "config", _this.config); t2.add$2(t1, "tokenBilling", _this.tokenBilling); t2.add$2(t1, "isTestMode", _this.isTestMode); t2.add$2(t1, "label", _this.label); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; O.CompanyGatewayEntityBuilder.prototype = { get$feesAndLimitsMap: function() { var t1 = this.get$_company_gateway_model$_$this(), t2 = t1._feesAndLimitsMap; return t2 == null ? t1._feesAndLimitsMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_FeesAndLimitsSettings) : t2; }, get$systemLogs: function() { var t1 = this.get$_company_gateway_model$_$this(), t2 = t1._company_gateway_model$_systemLogs; return t2 == null ? t1._company_gateway_model$_systemLogs = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$id: function(_) { return this.get$_company_gateway_model$_$this()._company_gateway_model$_id; }, get$_company_gateway_model$_$this: function() { var t1, t2, _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { _this._company_gateway_model$_loadedAt = $$v.loadedAt; _this._gatewayId = $$v.gatewayId; _this._acceptedCreditCards = $$v.acceptedCreditCards; _this._requireShippingAddress = $$v.requireShippingAddress; _this._requireBillingAddress = $$v.requireBillingAddress; _this._requireClientName = $$v.requireClientName; _this._requirePostalCode = $$v.requirePostalCode; _this._requireClientPhone = $$v.requireClientPhone; _this._requireContactName = $$v.requireContactName; _this._requireContactEmail = $$v.requireContactEmail; _this._requireCvv = $$v.requireCvv; _this._updateDetails = $$v.updateDetails; t1 = $$v.feesAndLimitsMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._feesAndLimitsMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.systemLogs; t2.toString; _this._company_gateway_model$_systemLogs = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._company_gateway_model$_customValue1 = $$v.customValue1; _this._company_gateway_model$_customValue2 = $$v.customValue2; _this._company_gateway_model$_customValue3 = $$v.customValue3; _this._company_gateway_model$_customValue4 = $$v.customValue4; _this._config = $$v.config; _this._tokenBilling = $$v.tokenBilling; _this._isTestMode = $$v.isTestMode; _this._label = $$v.label; _this._company_gateway_model$_isChanged = $$v.isChanged; _this._company_gateway_model$_createdAt = $$v.createdAt; _this._company_gateway_model$_updatedAt = $$v.updatedAt; _this._company_gateway_model$_archivedAt = $$v.archivedAt; _this._company_gateway_model$_isDeleted = $$v.isDeleted; _this._company_gateway_model$_createdUserId = $$v.createdUserId; _this._company_gateway_model$_assignedUserId = $$v.assignedUserId; _this._company_gateway_model$_id = $$v.id; _this._company_gateway_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, exception, _this = this, _s20_ = "CompanyGatewayEntity", _$result = null; try { _$result0 = _this._company_gateway_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt; t2 = _this.get$_company_gateway_model$_$this()._gatewayId; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "gatewayId")); t3 = _this.get$_company_gateway_model$_$this()._acceptedCreditCards; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "acceptedCreditCards")); t4 = _this.get$_company_gateway_model$_$this()._requireShippingAddress; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireShippingAddress")); t5 = _this.get$_company_gateway_model$_$this()._requireBillingAddress; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireBillingAddress")); t6 = _this.get$_company_gateway_model$_$this()._requireClientName; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireClientName")); t7 = _this.get$_company_gateway_model$_$this()._requirePostalCode; t8 = _this.get$_company_gateway_model$_$this()._requireClientPhone; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireClientPhone")); t9 = _this.get$_company_gateway_model$_$this()._requireContactName; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireContactName")); t10 = _this.get$_company_gateway_model$_$this()._requireContactEmail; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireContactEmail")); t11 = _this.get$_company_gateway_model$_$this()._requireCvv; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "requireCvv")); t12 = _this.get$_company_gateway_model$_$this()._updateDetails; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "updateDetails")); t13 = _this.get$feesAndLimitsMap().build$0(0); t14 = _this.get$systemLogs().build$0(0); t15 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue1; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "customValue1")); t16 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue2; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "customValue2")); t17 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue3; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "customValue3")); t18 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_customValue4; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "customValue4")); t19 = _this.get$_company_gateway_model$_$this()._config; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "config")); t20 = _this.get$_company_gateway_model$_$this()._tokenBilling; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "tokenBilling")); t21 = _this.get$_company_gateway_model$_$this()._isTestMode; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "isTestMode")); t22 = _this.get$_company_gateway_model$_$this()._label; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "label")); t23 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged; t24 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_createdAt; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "createdAt")); t25 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_updatedAt; if (t25 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "updatedAt")); t26 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_archivedAt; if (t26 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "archivedAt")); t27 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isDeleted; t28 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_createdUserId; t29 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_assignedUserId; t30 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_id; if (t30 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "id")); _$result0 = O._$CompanyGatewayEntity$_(t3, t26, t29, t19, t24, t28, t15, t16, t17, t18, t13, t2, t30, t23, t27, t21, t22, t1, t5, t6, t8, t10, t9, t11, t7, t4, t14, t20, t12, t25); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "feesAndLimitsMap"; _this.get$feesAndLimitsMap().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_gateway_model$_$v = t1; return _$result; } }; O._$FeesAndLimitsSettings.prototype = { rebuild$1: function(updates) { var t1 = new O.FeesAndLimitsSettingsBuilder(); t1.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = false; t1._company_gateway_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof O.FeesAndLimitsSettings && _this.minLimit === other.minLimit && _this.maxLimit === other.maxLimit && _this.feeAmount === other.feeAmount && _this.feePercent === other.feePercent && _this.feeCap === other.feeCap && _this.taxRate1 === other.taxRate1 && _this.taxName1 === other.taxName1 && _this.taxRate2 === other.taxRate2 && _this.taxName2 === other.taxName2 && _this.taxRate3 === other.taxRate3 && _this.taxName3 === other.taxName3 && _this.adjustFeePercent === other.adjustFeePercent && _this.isEnabled === other.isEnabled; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_gateway_model$__hashCode; return t1 == null ? _this._company_gateway_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSNumber_methods.get$hashCode(_this.minLimit)), C.JSNumber_methods.get$hashCode(_this.maxLimit)), C.JSNumber_methods.get$hashCode(_this.feeAmount)), C.JSNumber_methods.get$hashCode(_this.feePercent)), C.JSNumber_methods.get$hashCode(_this.feeCap)), C.JSNumber_methods.get$hashCode(_this.taxRate1)), C.JSString_methods.get$hashCode(_this.taxName1)), C.JSNumber_methods.get$hashCode(_this.taxRate2)), C.JSString_methods.get$hashCode(_this.taxName2)), C.JSNumber_methods.get$hashCode(_this.taxRate3)), C.JSString_methods.get$hashCode(_this.taxName3)), C.JSBool_methods.get$hashCode(_this.adjustFeePercent)), C.JSBool_methods.get$hashCode(_this.isEnabled))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("FeesAndLimitsSettings"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "minLimit", _this.minLimit); t2.add$2(t1, "maxLimit", _this.maxLimit); t2.add$2(t1, "feeAmount", _this.feeAmount); t2.add$2(t1, "feePercent", _this.feePercent); t2.add$2(t1, "feeCap", _this.feeCap); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "adjustFeePercent", _this.adjustFeePercent); t2.add$2(t1, "isEnabled", _this.isEnabled); return t2.toString$0(t1); } }; O.FeesAndLimitsSettingsBuilder.prototype = { get$_company_gateway_model$_$this: function() { var _this = this, $$v = _this._company_gateway_model$_$v; if ($$v != null) { _this._minLimit = $$v.minLimit; _this._maxLimit = $$v.maxLimit; _this._feeAmount = $$v.feeAmount; _this._feePercent = $$v.feePercent; _this._feeCap = $$v.feeCap; _this._company_gateway_model$_taxRate1 = $$v.taxRate1; _this._company_gateway_model$_taxName1 = $$v.taxName1; _this._company_gateway_model$_taxRate2 = $$v.taxRate2; _this._company_gateway_model$_taxName2 = $$v.taxName2; _this._company_gateway_model$_taxRate3 = $$v.taxRate3; _this._company_gateway_model$_taxName3 = $$v.taxName3; _this._adjustFeePercent = $$v.adjustFeePercent; _this._company_gateway_model$_isEnabled = $$v.isEnabled; _this._company_gateway_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _s21_ = "FeesAndLimitsSettings", _$result = _this._company_gateway_model$_$v; if (_$result == null) { t1 = _this.get$_company_gateway_model$_$this()._minLimit; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "minLimit")); t2 = _this.get$_company_gateway_model$_$this()._maxLimit; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "maxLimit")); t3 = _this.get$_company_gateway_model$_$this()._feeAmount; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "feeAmount")); t4 = _this.get$_company_gateway_model$_$this()._feePercent; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "feePercent")); t5 = _this.get$_company_gateway_model$_$this()._feeCap; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "feeCap")); t6 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxRate1")); t7 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxName1")); t8 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxRate2")); t9 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxName2")); t10 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxRate3")); t11 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "taxName3")); t12 = _this.get$_company_gateway_model$_$this()._adjustFeePercent; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "adjustFeePercent")); t13 = _this.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "isEnabled")); _$result = O._$FeesAndLimitsSettings$_(t12, t3, t5, t4, t13, t2, t1, t7, t9, t11, t6, t8, t10); } return _this._company_gateway_model$_$v = _$result; } }; O._CompanyGatewayEntity_Object_BaseEntity.prototype = {}; O._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.CompanyEntity.prototype = { matchesFilter$1: function(filter) { var t1, t2, t3, _this = this; for (t1 = J.get$iterator$ax(_this.users._list), t2 = type$.JSArray_legacy_String; t1.moveNext$0();) { t3 = t1.get$current(t1); if (A.matchesStrings(H.setRuntimeTypeInfo([t3.firstName, t3.lastName, t3.email, t3.phone, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } for (t1 = J.get$iterator$ax(_this.projects._list); t1.moveNext$0();) { t3 = t1.get$current(t1); if (A.matchesStrings(H.setRuntimeTypeInfo([t3.name, t3.number, t3.publicNotes, t3.privateNotes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } for (t1 = J.get$iterator$ax(_this.products._list); t1.moveNext$0();) { t3 = t1.get$current(t1); if (A.matchesStrings(H.setRuntimeTypeInfo([t3.productKey, t3.notes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter)) return true; } t1 = _this.settings.name; if (t1 == null) t1 = ""; return A.matchesStrings(H.setRuntimeTypeInfo([_this.subdomain, t1, _this.companyKey], t2), filter); }, matchesFilterValue$1: function(filter) { var t1, t2, t3, value, _this = this; for (t1 = J.get$iterator$ax(_this.users._list), t2 = type$.JSArray_legacy_String; t1.moveNext$0();) { t3 = t1.get$current(t1); value = A.matchesStringsValue(H.setRuntimeTypeInfo([t3.firstName, t3.lastName, t3.email, t3.phone, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } for (t1 = J.get$iterator$ax(_this.projects._list); t1.moveNext$0();) { t3 = t1.get$current(t1); value = A.matchesStringsValue(H.setRuntimeTypeInfo([t3.name, t3.number, t3.publicNotes, t3.privateNotes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } for (t1 = J.get$iterator$ax(_this.products._list); t1.moveNext$0();) { t3 = t1.get$current(t1); value = A.matchesStringsValue(H.setRuntimeTypeInfo([t3.notes, t3.customValue1, t3.customValue2, t3.customValue3, t3.customValue4], t2), filter); if (value != null) return value; } t1 = _this.settings.name; if (t1 == null) t1 = ""; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.subdomain, t1, _this.companyKey], t2), filter); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; }, get$listDisplayName: function() { return null; }, get$enableFirstInvoiceTaxRate: function() { return this.numberOfInvoiceTaxRates >= 1; }, get$enableSecondInvoiceTaxRate: function() { return this.numberOfInvoiceTaxRates >= 2; }, get$enableThirdInvoiceTaxRate: function() { return this.numberOfInvoiceTaxRates >= 3; }, get$enableFirstItemTaxRate: function() { return this.numberOfItemTaxRates >= 1; }, get$enableSecondItemTaxRate: function() { return this.numberOfItemTaxRates >= 2; }, get$enableThirdItemTaxRate: function() { return this.numberOfItemTaxRates >= 3; }, get$hasCustomSurcharge: function() { var _this = this; return _this.getCustomFieldLabel$1("surcharge1").length !== 0 || _this.getCustomFieldLabel$1("surcharge2").length !== 0 || _this.getCustomFieldLabel$1("surcharge3").length !== 0 || _this.getCustomFieldLabel$1("surcharge4").length !== 0; }, getCustomFieldLabel$1: function(field) { var t1, t2; if (J.contains$1$asx(field, ".custom")) field = C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(field, ".custom", ""), "$", ""); t1 = this.customFields._map$_map; t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, field)) return C.JSArray_methods.get$first(J.split$1$s(t2.$index(t1, field), "|")); else return ""; }, getCustomFieldType$1: function(field) { var value, t1 = this.customFields._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, field); if (J.contains$1$asx(t3 == null ? "" : t3, "|")) { value = C.JSArray_methods.get$last(J.split$1$s(t2.$index(t1, field), "|")); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["single_line_text", "date", "switch"], type$.JSArray_legacy_String), value)) return value; else return "dropdown"; } else return "multi_line_text"; }, getCustomFieldValues$2$excludeBlank: function(field, excludeBlank) { var parts, data, t1, values = J.$index$asx(this.customFields._map$_map, field); if (values == null || !C.JSString_methods.contains$1(values, "|")) return H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); else { parts = values.split("|"); data = J.split$1$s(C.JSArray_methods.get$last(parts), ","); if (parts.length === 2) { t1 = type$.JSArray_legacy_String; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["date", "switch", "single_line_text"], t1), parts[1])) return H.setRuntimeTypeInfo([], t1); } if (excludeBlank) { t1 = H._arrayInstanceType(data)._eval$1("WhereIterable<1>"); return P.List_List$of(new H.WhereIterable(data, new A.CompanyEntity_getCustomFieldValues_closure(), t1), true, t1._eval$1("Iterable.E")); } else return data; } }, getCustomFieldValues$1: function(field) { return this.getCustomFieldValues$2$excludeBlank(field, false); }, get$coreCompany: function() { return this.rebuild$1(new A.CompanyEntity_coreCompany_closure()); }, isModuleEnabled$1: function(entityType) { var _this = this; if ((entityType === C.EntityType_invoice || entityType === C.EntityType_payment) && (_this.enabledModules & 4096) === 0) return false; else if (entityType === C.EntityType_credit && (_this.enabledModules & 2) === 0) return false; else if (entityType === C.EntityType_quote && (_this.enabledModules & 4) === 0) return false; else if (entityType === C.EntityType_task && (_this.enabledModules & 8) === 0) return false; else if (entityType === C.EntityType_project && (_this.enabledModules & 32) === 0) return false; else if (entityType === C.EntityType_vendor && (_this.enabledModules & 64) === 0) return false; else if (entityType === C.EntityType_expense && (_this.enabledModules & 16) === 0) return false; else if (entityType === C.EntityType_recurringInvoice && (_this.enabledModules & 1) === 0) return false; else if (entityType === C.EntityType_recurringExpense && (_this.enabledModules & 512) === 0) return false; return true; }, $isSelectableEntity: 1 }; A.CompanyEntity_getCustomFieldValues_closure.prototype = { call$1: function(data) { return data.length !== 0; }, $signature: 16 }; A.CompanyEntity_coreCompany_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$clients(b).get$_safeList()); J.clear$0$ax(b.get$products().get$_safeList()); J.clear$0$ax(b.get$invoices().get$_safeList()); J.clear$0$ax(b.get$payments().get$_safeList()); J.clear$0$ax(b.get$quotes(b).get$_safeList()); J.clear$0$ax(b.get$credits().get$_safeList()); J.clear$0$ax(b.get$tasks().get$_safeList()); J.clear$0$ax(b.get$projects().get$_safeList()); J.clear$0$ax(b.get$vendors().get$_safeList()); J.clear$0$ax(b.get$expenses().get$_safeList()); J.clear$0$ax(b.get$webhooks().get$_safeList()); J.clear$0$ax(b.get$designs().get$_safeList()); J.clear$0$ax(b.get$companyGateways().get$_safeList()); return b; }, $signature: 22 }; A.GatewayEntity.prototype = { get$supportsTokenBilling: function() { var t1 = this.options; t1 = J.where$1$ax(t1.get$keys(t1), new A.GatewayEntity_supportsTokenBilling_closure(this)); return t1.get$isNotEmpty(t1); }, get$supportsRefunds: function() { var t1 = this.options; t1 = J.where$1$ax(t1.get$keys(t1), new A.GatewayEntity_supportsRefunds_closure(this)); return t1.get$isNotEmpty(t1); }, get$parsedFields: function() { var t1 = this.fields; return t1.length === 0 ? P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : C.C_JsonCodec.decode$2$reviver(0, t1, null); }, matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; return C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase()); }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, supportedEvents$0: function() { var t1, events = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); J.forEach$1$ax(this.options._map$_map, new A.GatewayEntity_supportedEvents_closure(events)); t1 = P.LinkedHashSet_LinkedHashSet$from(events, type$.legacy_String); return P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")); }, get$listDisplayAmountType: function() { return null; } }; A.GatewayEntity_supportsTokenBilling_closure.prototype = { call$1: function(typeId) { return J.$index$asx(this.$this.options._map$_map, typeId).supportTokenBilling; }, $signature: 16 }; A.GatewayEntity_supportsRefunds_closure.prototype = { call$1: function(typeId) { return J.$index$asx(this.$this.options._map$_map, typeId).supportRefunds; }, $signature: 16 }; A.GatewayEntity_supportedEvents_closure.prototype = { call$2: function(key, option) { var t1 = option.webhooks; C.JSArray_methods.addAll$1(this.events, J.toList$0$ax(t1 == null ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : t1)); }, $signature: 1092 }; A.GatewayOptionsEntity.prototype = {}; A.UserCompanyEntity.prototype = { can$2: function(permission, entityType) { var t1; if (entityType == null) return false; if (!this.company.isModuleEnabled$1(entityType)) return false; if (this.isAdmin) return true; t1 = this.permissions; return C.JSString_methods.contains$1(t1, permission.toString$0(0) + "_all") || C.JSString_methods.contains$1(t1, permission.toString$0(0) + "_" + A.toSnakeCase(entityType.name)); }, canEditEntity$1: function(entity) { var t1; if (entity == null) return false; if (entity.get$isNew()) return this.can$2(C.UserPermission_create, entity.get$entityType()); else { if (!this.can$2(C.UserPermission_edit, entity.get$entityType())) { t1 = this.user; t1.toString; t1 = t1.id; t1 = entity.get$createdUserId() === t1 || entity.get$assignedUserId() === t1; } else t1 = true; return t1; } } }; A.UserCompanyEntity_UserCompanyEntity_closure.prototype = { call$1: function(b) { b.$indexSet(0, "email", D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo(["all_notifications"], type$.JSArray_legacy_String), type$.legacy_String)); return b; }, $signature: 493 }; A.UserCompanyEntity__initializeBuilder_closure.prototype = { call$1: function(b) { b.$indexSet(0, "email", D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo(["all_notifications"], type$.JSArray_legacy_String), type$.legacy_String)); return b; }, $signature: 493 }; A.UserSettingsEntity.prototype = { getTableColumns$1: function(entityType) { var t2, t1 = this.tableColumns; if (t1 != null) { t2 = entityType.toString$0(0); t2 = J.containsKey$1$x(t1._map$_map, t2); } else t2 = false; if (t2) { t2 = entityType.toString$0(0); t2 = J.$index$asx(t1._map$_map, t2); return new Q.CopyOnWriteList(true, t2._list, H.instanceType(t2)._eval$1("CopyOnWriteList<1>")); } else return null; } }; A.ReportSettingsEntity.prototype = {}; A.CompanyItemResponse.prototype = {}; A.RegistrationFieldEntity.prototype = {}; A._$CompanyEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["custom_surcharge_taxes1", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes1, C.FullType_MtR), "custom_surcharge_taxes2", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes2, C.FullType_MtR), "custom_surcharge_taxes3", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes3, C.FullType_MtR), "custom_surcharge_taxes4", serializers.serialize$2$specifiedType(object.enableCustomSurchargeTaxes4, C.FullType_MtR), "size_id", serializers.serialize$2$specifiedType(object.sizeId, C.FullType_h8g), "industry_id", serializers.serialize$2$specifiedType(object.industryId, C.FullType_h8g), "subdomain", serializers.serialize$2$specifiedType(object.subdomain, C.FullType_h8g), "portal_mode", serializers.serialize$2$specifiedType(object.portalMode, C.FullType_h8g), "portal_domain", serializers.serialize$2$specifiedType(object.portalDomain, C.FullType_h8g), "update_products", serializers.serialize$2$specifiedType(object.updateProducts, C.FullType_MtR), "convert_products", serializers.serialize$2$specifiedType(object.convertProductExchangeRate, C.FullType_MtR), "fill_products", serializers.serialize$2$specifiedType(object.fillProducts, C.FullType_MtR), "enable_product_cost", serializers.serialize$2$specifiedType(object.enableProductCost, C.FullType_MtR), "enable_product_quantity", serializers.serialize$2$specifiedType(object.enableProductQuantity, C.FullType_MtR), "enable_product_discount", serializers.serialize$2$specifiedType(object.enableProductDiscount, C.FullType_MtR), "default_task_is_date_based", serializers.serialize$2$specifiedType(object.defaultTaskIsDateBased, C.FullType_MtR), "default_quantity", serializers.serialize$2$specifiedType(object.defaultQuantity, C.FullType_MtR), "show_product_details", serializers.serialize$2$specifiedType(object.showProductDetails, C.FullType_MtR), "client_can_register", serializers.serialize$2$specifiedType(object.clientCanRegister, C.FullType_MtR), "is_large", serializers.serialize$2$specifiedType(object.isLarge, C.FullType_MtR), "is_disabled", serializers.serialize$2$specifiedType(object.isDisabled, C.FullType_MtR), "enable_shop_api", serializers.serialize$2$specifiedType(object.enableShopApi, C.FullType_MtR), "company_key", serializers.serialize$2$specifiedType(object.companyKey, C.FullType_h8g), "first_day_of_week", serializers.serialize$2$specifiedType(object.firstDayOfWeek, C.FullType_h8g), "first_month_of_year", serializers.serialize$2$specifiedType(object.firstMonthOfYear, C.FullType_h8g), "enabled_tax_rates", serializers.serialize$2$specifiedType(object.numberOfInvoiceTaxRates, C.FullType_kjq), "enabled_item_tax_rates", serializers.serialize$2$specifiedType(object.numberOfItemTaxRates, C.FullType_kjq), "expense_inclusive_taxes", serializers.serialize$2$specifiedType(object.expenseInclusiveTaxes, C.FullType_MtR), "session_timeout", serializers.serialize$2$specifiedType(object.sessionTimeout, C.FullType_kjq), "default_password_timeout", serializers.serialize$2$specifiedType(object.passwordTimeout, C.FullType_kjq), "oauth_password_required", serializers.serialize$2$specifiedType(object.oauthPasswordRequired, C.FullType_MtR), "markdown_enabled", serializers.serialize$2$specifiedType(object.markdownEnabled, C.FullType_MtR), "use_comma_as_decimal_place", serializers.serialize$2$specifiedType(object.useCommaAsDecimalPlace, C.FullType_MtR), "report_include_drafts", serializers.serialize$2$specifiedType(object.reportIncludeDrafts, C.FullType_MtR), "groups", serializers.serialize$2$specifiedType(object.groups, C.FullType_EOZ), "activities", serializers.serialize$2$specifiedType(object.activities, C.FullType_QWw), "tax_rates", serializers.serialize$2$specifiedType(object.taxRates, C.FullType_IIj), "task_statuses", serializers.serialize$2$specifiedType(object.taskStatuses, C.FullType_WVg), "taskStatusMap", serializers.serialize$2$specifiedType(object.taskStatusMap, C.FullType_woc), "company_gateways", serializers.serialize$2$specifiedType(object.companyGateways, C.FullType_A8J), "expense_categories", serializers.serialize$2$specifiedType(object.expenseCategories, C.FullType_8cq), "users", serializers.serialize$2$specifiedType(object.users, C.FullType_e7r), "clients", serializers.serialize$2$specifiedType(object.clients, C.FullType_Ag3), "products", serializers.serialize$2$specifiedType(object.products, C.FullType_GBo), "invoices", serializers.serialize$2$specifiedType(object.invoices, C.FullType_xS5), "recurring_invoices", serializers.serialize$2$specifiedType(object.recurringInvoices, C.FullType_xS5), "recurring_expenses", serializers.serialize$2$specifiedType(object.recurringExpenses, C.FullType_0vR), "payments", serializers.serialize$2$specifiedType(object.payments, C.FullType_ORM), "quotes", serializers.serialize$2$specifiedType(object.quotes, C.FullType_xS5), "credits", serializers.serialize$2$specifiedType(object.credits, C.FullType_xS5), "tasks", serializers.serialize$2$specifiedType(object.tasks, C.FullType_UWS), "projects", serializers.serialize$2$specifiedType(object.projects, C.FullType_KEc), "expenses", serializers.serialize$2$specifiedType(object.expenses, C.FullType_0vR), "vendors", serializers.serialize$2$specifiedType(object.vendors, C.FullType_Pss), "designs", serializers.serialize$2$specifiedType(object.designs, C.FullType_8sg), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "tokens_hashed", serializers.serialize$2$specifiedType(object.tokens, C.FullType_mKc), "webhooks", serializers.serialize$2$specifiedType(object.webhooks, C.FullType_46c), "subscriptions", serializers.serialize$2$specifiedType(object.subscriptions, C.FullType_NIe), "payment_terms", serializers.serialize$2$specifiedType(object.paymentTerms, C.FullType_kvD), "system_logs", serializers.serialize$2$specifiedType(object.systemLogs, C.FullType_oGx), "client_registration_fields", serializers.serialize$2$specifiedType(object.clientRegistrationFields, C.FullType_pjG), "custom_fields", serializers.serialize$2$specifiedType(object.customFields, C.FullType_LNO), "slack_webhook_url", serializers.serialize$2$specifiedType(object.slackWebhookUrl, C.FullType_h8g), "google_analytics_key", serializers.serialize$2$specifiedType(object.googleAnalyticsKey, C.FullType_h8g), "mark_expenses_invoiceable", serializers.serialize$2$specifiedType(object.markExpensesInvoiceable, C.FullType_MtR), "mark_expenses_paid", serializers.serialize$2$specifiedType(object.markExpensesPaid, C.FullType_MtR), "invoice_expense_documents", serializers.serialize$2$specifiedType(object.invoiceExpenseDocuments, C.FullType_MtR), "invoice_task_documents", serializers.serialize$2$specifiedType(object.invoiceTaskDocuments, C.FullType_MtR), "invoice_task_timelog", serializers.serialize$2$specifiedType(object.invoiceTaskTimelog, C.FullType_MtR), "invoice_task_datelog", serializers.serialize$2$specifiedType(object.invoiceTaskDatelog, C.FullType_MtR), "auto_start_tasks", serializers.serialize$2$specifiedType(object.autoStartTasks, C.FullType_MtR), "show_tasks_table", serializers.serialize$2$specifiedType(object.showTasksTable, C.FullType_MtR), "show_task_end_date", serializers.serialize$2$specifiedType(object.showTaskEndDate, C.FullType_MtR), "settings", serializers.serialize$2$specifiedType(object.settings, C.FullType_Iqz0), "enabled_modules", serializers.serialize$2$specifiedType(object.enabledModules, C.FullType_kjq), "calculate_expense_tax_by_amount", serializers.serialize$2$specifiedType(object.calculateExpenseTaxByAmount, C.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_qBb)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, key, value, t52, t53, t54, _null = null, result = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_SettingsEntity, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String, t4 = type$.legacy_BuiltList_legacy_Object, t5 = type$.legacy_RegistrationFieldEntity, t6 = type$.ListBuilder_legacy_RegistrationFieldEntity, t7 = type$.legacy_SystemLogEntity, t8 = type$.ListBuilder_legacy_SystemLogEntity, t9 = type$.legacy_PaymentTermEntity, t10 = type$.ListBuilder_legacy_PaymentTermEntity, t11 = type$.legacy_SubscriptionEntity, t12 = type$.ListBuilder_legacy_SubscriptionEntity, t13 = type$.legacy_WebhookEntity, t14 = type$.ListBuilder_legacy_WebhookEntity, t15 = type$.legacy_TokenEntity, t16 = type$.ListBuilder_legacy_TokenEntity, t17 = type$.legacy_DocumentEntity, t18 = type$.ListBuilder_legacy_DocumentEntity, t19 = type$.legacy_DesignEntity, t20 = type$.ListBuilder_legacy_DesignEntity, t21 = type$.legacy_VendorEntity, t22 = type$.ListBuilder_legacy_VendorEntity, t23 = type$.legacy_ExpenseEntity, t24 = type$.ListBuilder_legacy_ExpenseEntity, t25 = type$.legacy_ProjectEntity, t26 = type$.ListBuilder_legacy_ProjectEntity, t27 = type$.legacy_TaskEntity, t28 = type$.ListBuilder_legacy_TaskEntity, t29 = type$.legacy_InvoiceEntity, t30 = type$.ListBuilder_legacy_InvoiceEntity, t31 = type$.legacy_PaymentEntity, t32 = type$.ListBuilder_legacy_PaymentEntity, t33 = type$.legacy_ProductEntity, t34 = type$.ListBuilder_legacy_ProductEntity, t35 = type$.legacy_ClientEntity, t36 = type$.ListBuilder_legacy_ClientEntity, t37 = type$.legacy_UserEntity, t38 = type$.ListBuilder_legacy_UserEntity, t39 = type$.legacy_ExpenseCategoryEntity, t40 = type$.ListBuilder_legacy_ExpenseCategoryEntity, t41 = type$.legacy_CompanyGatewayEntity, t42 = type$.ListBuilder_legacy_CompanyGatewayEntity, t43 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity, t44 = type$.legacy_TaskStatusEntity, t45 = type$.ListBuilder_legacy_TaskStatusEntity, t46 = type$.legacy_TaxRateEntity, t47 = type$.ListBuilder_legacy_TaxRateEntity, t48 = type$.legacy_ActivityEntity, t49 = type$.ListBuilder_legacy_ActivityEntity, t50 = type$.legacy_GroupEntity, t51 = type$.ListBuilder_legacy_GroupEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "custom_surcharge_taxes1": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes1 = t52; break; case "custom_surcharge_taxes2": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes2 = t52; break; case "custom_surcharge_taxes3": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes3 = t52; break; case "custom_surcharge_taxes4": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableCustomSurchargeTaxes4 = t52; break; case "size_id": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_sizeId = t52; break; case "industry_id": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_industryId = t52; break; case "subdomain": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._subdomain = t52; break; case "portal_mode": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._portalMode = t52; break; case "portal_domain": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._portalDomain = t52; break; case "update_products": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._updateProducts = t52; break; case "convert_products": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._convertProductExchangeRate = t52; break; case "fill_products": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._fillProducts = t52; break; case "enable_product_cost": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableProductCost = t52; break; case "enable_product_quantity": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableProductQuantity = t52; break; case "enable_product_discount": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableProductDiscount = t52; break; case "default_task_is_date_based": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._defaultTaskIsDateBased = t52; break; case "default_quantity": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._defaultQuantity = t52; break; case "show_product_details": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._showProductDetails = t52; break; case "client_can_register": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._clientCanRegister = t52; break; case "is_large": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isLarge = t52; break; case "is_disabled": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isDisabled = t52; break; case "enable_shop_api": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._enableShopApi = t52; break; case "company_key": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._companyKey = t52; break; case "first_day_of_week": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._firstDayOfWeek = t52; break; case "first_month_of_year": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._firstMonthOfYear = t52; break; case "enabled_tax_rates": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._numberOfInvoiceTaxRates = t52; break; case "enabled_item_tax_rates": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._numberOfItemTaxRates = t52; break; case "expense_inclusive_taxes": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._expenseInclusiveTaxes = t52; break; case "session_timeout": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._sessionTimeout = t52; break; case "default_password_timeout": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._passwordTimeout = t52; break; case "oauth_password_required": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._oauthPasswordRequired = t52; break; case "markdown_enabled": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._markdownEnabled = t52; break; case "use_comma_as_decimal_place": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._useCommaAsDecimalPlace = t52; break; case "report_include_drafts": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._reportIncludeDrafts = t52; break; case "groups": t52 = result.get$_company_model$_$this(); t53 = t52._groups; if (t53 == null) { t53 = new D.ListBuilder(t51); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t50); t52._groups = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_EOZ)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "activities": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_activities; if (t53 == null) { t53 = new D.ListBuilder(t49); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t48); t52._company_model$_activities = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_QWw)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tax_rates": t52 = result.get$_company_model$_$this(); t53 = t52._taxRates; if (t53 == null) { t53 = new D.ListBuilder(t47); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t46); t52._taxRates = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_IIj)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "task_statuses": t52 = result.get$_company_model$_$this(); t53 = t52._taskStatuses; if (t53 == null) { t53 = new D.ListBuilder(t45); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t44); t52._taskStatuses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_WVg)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "taskStatusMap": t52 = result.get$_company_model$_$this(); t53 = t52._taskStatusMap; if (t53 == null) { t53 = new A.MapBuilder(_null, $, _null, t43); t53.replace$1(0, C.Map_empty0); t52._taskStatusMap = t53; t52 = t53; } else t52 = t53; t52.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_woc)); break; case "company_gateways": t52 = result.get$_company_model$_$this(); t53 = t52._companyGateways; if (t53 == null) { t53 = new D.ListBuilder(t42); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t41); t52._companyGateways = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_A8J)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "expense_categories": t52 = result.get$_company_model$_$this(); t53 = t52._expenseCategories; if (t53 == null) { t53 = new D.ListBuilder(t40); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t39); t52._expenseCategories = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_8cq)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "users": t52 = result.get$_company_model$_$this(); t53 = t52._users; if (t53 == null) { t53 = new D.ListBuilder(t38); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t37); t52._users = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_e7r)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "clients": t52 = result.get$_company_model$_$this(); t53 = t52._clients; if (t53 == null) { t53 = new D.ListBuilder(t36); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t35); t52._clients = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_Ag3)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "products": t52 = result.get$_company_model$_$this(); t53 = t52._products; if (t53 == null) { t53 = new D.ListBuilder(t34); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t33); t52._products = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_GBo)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "invoices": t52 = result.get$_company_model$_$this(); t53 = t52._invoices; if (t53 == null) { t53 = new D.ListBuilder(t30); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t29); t52._invoices = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "recurring_invoices": t52 = result.get$_company_model$_$this(); t53 = t52._recurringInvoices; if (t53 == null) { t53 = new D.ListBuilder(t30); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t29); t52._recurringInvoices = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "recurring_expenses": t52 = result.get$_company_model$_$this(); t53 = t52._recurringExpenses; if (t53 == null) { t53 = new D.ListBuilder(t24); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t23); t52._recurringExpenses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_0vR)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "payments": t52 = result.get$_company_model$_$this(); t53 = t52._payments; if (t53 == null) { t53 = new D.ListBuilder(t32); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t31); t52._payments = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_ORM)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "quotes": t52 = result.get$_company_model$_$this(); t53 = t52._quotes; if (t53 == null) { t53 = new D.ListBuilder(t30); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t29); t52._quotes = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "credits": t52 = result.get$_company_model$_$this(); t53 = t52._credits; if (t53 == null) { t53 = new D.ListBuilder(t30); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t29); t52._credits = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tasks": t52 = result.get$_company_model$_$this(); t53 = t52._tasks; if (t53 == null) { t53 = new D.ListBuilder(t28); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t27); t52._tasks = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_UWS)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "projects": t52 = result.get$_company_model$_$this(); t53 = t52._projects; if (t53 == null) { t53 = new D.ListBuilder(t26); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t25); t52._projects = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_KEc)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "expenses": t52 = result.get$_company_model$_$this(); t53 = t52._expenses; if (t53 == null) { t53 = new D.ListBuilder(t24); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t23); t52._expenses = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_0vR)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "vendors": t52 = result.get$_company_model$_$this(); t53 = t52._vendors; if (t53 == null) { t53 = new D.ListBuilder(t22); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t21); t52._vendors = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_Pss)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "designs": t52 = result.get$_company_model$_$this(); t53 = t52._designs; if (t53 == null) { t53 = new D.ListBuilder(t20); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t19); t52._designs = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_8sg)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "documents": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_documents; if (t53 == null) { t53 = new D.ListBuilder(t18); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t17); t52._company_model$_documents = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "tokens_hashed": t52 = result.get$_company_model$_$this(); t53 = t52._tokens; if (t53 == null) { t53 = new D.ListBuilder(t16); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t15); t52._tokens = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_mKc)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "webhooks": t52 = result.get$_company_model$_$this(); t53 = t52._webhooks; if (t53 == null) { t53 = new D.ListBuilder(t14); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t13); t52._webhooks = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_46c)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "subscriptions": t52 = result.get$_company_model$_$this(); t53 = t52._subscriptions; if (t53 == null) { t53 = new D.ListBuilder(t12); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t11); t52._subscriptions = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_NIe)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "payment_terms": t52 = result.get$_company_model$_$this(); t53 = t52._paymentTerms; if (t53 == null) { t53 = new D.ListBuilder(t10); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t9); t52._paymentTerms = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_kvD)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "system_logs": t52 = result.get$_company_model$_$this(); t53 = t52._company_model$_systemLogs; if (t53 == null) { t53 = new D.ListBuilder(t8); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t7); t52._company_model$_systemLogs = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_oGx)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "client_registration_fields": t52 = result.get$_company_model$_$this(); t53 = t52._clientRegistrationFields; if (t53 == null) { t53 = new D.ListBuilder(t6); t53.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t52._clientRegistrationFields = t53; t52 = t53; } else t52 = t53; t53 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_pjG)); t54 = t52.$ti; if (t54._eval$1("_BuiltList<1>")._is(t53)) { t52.__ListBuilder__list = t53._list; t52._listOwner = t53; } else { t52.__ListBuilder__list = P.List_List$from(t53, true, t54._precomputed1); t52._listOwner = null; } break; case "custom_fields": t52 = result.get$_company_model$_$this(); t53 = t52._customFields; if (t53 == null) { t53 = new A.MapBuilder(_null, $, _null, t3); t53.replace$1(0, C.Map_empty0); t52._customFields = t53; t52 = t53; } else t52 = t53; t52.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "slack_webhook_url": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._slackWebhookUrl = t52; break; case "google_analytics_key": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._googleAnalyticsKey = t52; break; case "mark_expenses_invoiceable": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._markExpensesInvoiceable = t52; break; case "mark_expenses_paid": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._markExpensesPaid = t52; break; case "invoice_expense_documents": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._invoiceExpenseDocuments = t52; break; case "invoice_task_documents": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskDocuments = t52; break; case "invoice_task_timelog": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskTimelog = t52; break; case "invoice_task_datelog": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._invoiceTaskDatelog = t52; break; case "auto_start_tasks": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._autoStartTasks = t52; break; case "show_tasks_table": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._showTasksTable = t52; break; case "show_task_end_date": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._showTaskEndDate = t52; break; case "settings": t52 = result.get$_company_model$_$this(); t53 = t52._settings; t52 = t53 == null ? t52._settings = new G.SettingsEntityBuilder() : t53; t53 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz0)); if (t53 == null) H.throwExpression(P.ArgumentError$notNull("other")); t52._settings_model$_$v = t53; break; case "enabled_modules": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._enabledModules = t52; break; case "calculate_expense_tax_by_amount": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._calculateExpenseTaxByAmount = t52; break; case "isChanged": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._company_model$_isChanged = t52; break; case "created_at": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._company_model$_createdAt = t52; break; case "updated_at": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._company_model$_updatedAt = t52; break; case "archived_at": t52 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._company_model$_archivedAt = t52; break; case "is_deleted": t52 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._company_model$_isDeleted = t52; break; case "user_id": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_createdUserId = t52; break; case "assigned_user_id": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_assignedUserId = t52; break; case "entity_type": t52 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_company_model$_$this()._company_model$_entityType = t52; break; case "id": t52 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_id = t52; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ChN; }, get$wireName: function() { return "CompanyEntity"; } }; A._$GatewayEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["key", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "is_offsite", serializers.serialize$2$specifiedType(object.isOffsite, C.FullType_MtR), "visible", serializers.serialize$2$specifiedType(object.isVisible, C.FullType_MtR), "sort_order", serializers.serialize$2$specifiedType(object.sortOrder, C.FullType_kjq), "default_gateway_type_id", serializers.serialize$2$specifiedType(object.defaultGatewayTypeId, C.FullType_h8g), "site_url", serializers.serialize$2$specifiedType(object.siteUrl, C.FullType_h8g), "options", serializers.serialize$2$specifiedType(object.options, C.FullType_sm9), "fields", serializers.serialize$2$specifiedType(object.fields, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new A.GatewayEntityBuilder(); result.get$_company_model$_$this()._siteUrl = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_GatewayOptionsEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_id = t2; break; case "name": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_name = t2; break; case "is_offsite": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isOffsite = t2; break; case "visible": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isVisible = t2; break; case "sort_order": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._sortOrder = t2; break; case "default_gateway_type_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._defaultGatewayTypeId = t2; break; case "site_url": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._siteUrl = t2; break; case "options": t2 = result.get$_company_model$_$this(); t3 = t2._options; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._options = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_sm9)); break; case "fields": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._company_model$_fields = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_oW3; }, get$wireName: function() { return "GatewayEntity"; } }; A._$GatewayOptionsEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["refund", serializers.serialize$2$specifiedType(object.supportRefunds, C.FullType_MtR), "token_billing", serializers.serialize$2$specifiedType(object.supportTokenBilling, C.FullType_MtR)], type$.JSArray_legacy_Object), value = object.webhooks; if (value != null) { result.push("webhooks"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_6m4)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new A.GatewayOptionsEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "refund": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._supportRefunds = t4; break; case "token_billing": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._supportTokenBilling = t4; break; case "webhooks": t4 = result.get$_company_model$_$this(); t5 = t4._webhooks; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._webhooks = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_hWW; }, get$wireName: function() { return "GatewayOptionsEntity"; } }; A._$UserCompanyEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["is_admin", serializers.serialize$2$specifiedType(object.isAdmin, C.FullType_MtR), "is_owner", serializers.serialize$2$specifiedType(object.isOwner, C.FullType_MtR), "permissions_updated_at", serializers.serialize$2$specifiedType(object.permissionsUpdatedAt, C.FullType_kjq), "permissions", serializers.serialize$2$specifiedType(object.permissions, C.FullType_h8g), "ninja_portal_url", serializers.serialize$2$specifiedType(object.ninjaPortalUrl, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.notifications; if (value != null) { result.push("notifications"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_mZn)); } value = object.company; if (value != null) { result.push("company"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_a9P)); } value = object.user; if (value != null) { result.push("user"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_oyU)); } value = object.token; if (value != null) { result.push("token"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_Azp)); } value = object.account; if (value != null) { result.push("account"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_wg3)); } value = object.settings; if (value != null) { result.push("settings"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_Ymm)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, key, value, t7, t8, _s5_ = "other", result = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserSettingsEntity, t2 = type$.legacy_AccountEntity, t3 = type$.legacy_TokenEntity, t4 = type$.legacy_UserEntity, t5 = type$.legacy_CompanyEntity, t6 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "is_admin": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isAdmin = t7; break; case "is_owner": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._isOwner = t7; break; case "permissions_updated_at": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._permissionsUpdatedAt = t7; break; case "permissions": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._permissions = t7; break; case "notifications": t7 = result.get$_company_model$_$this(); t8 = t7._notifications; if (t8 == null) { t8 = new A.MapBuilder(null, $, null, t6); t8.replace$1(0, C.Map_empty0); t7._notifications = t8; t7 = t8; } else t7 = t8; t7.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mZn)); break; case "company": t7 = result.get$_company_model$_$this(); t8 = t7._company_model$_company; if (t8 == null) { t8 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t8); t7._company_model$_company = t8; t7 = t8; } else t7 = t8; t8 = t5._as(serializers.deserialize$2$specifiedType(value, C.FullType_a9P)); if (t8 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t7._company_model$_$v = t8; break; case "user": t7 = result.get$_company_model$_$this(); t8 = t7._company_model$_user; if (t8 == null) { t8 = new B.UserEntityBuilder(); t8.get$_user_model$_$this()._isTwoFactorEnabled = false; t8.get$_user_model$_$this()._hasPassword = false; t8.get$_user_model$_$this()._password = ""; t8.get$_user_model$_$this()._lastEmailAddress = ""; t8.get$_user_model$_$this()._oauthUserToken = ""; t7._company_model$_user = t8; t7 = t8; } else t7 = t8; t8 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_oyU)); if (t8 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t7._user_model$_$v = t8; break; case "token": t7 = result.get$_company_model$_$this(); t8 = t7._token; t7 = t8 == null ? t7._token = new D.TokenEntityBuilder() : t8; t8 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_Azp)); if (t8 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t7._token_model$_$v = t8; break; case "account": t7 = result.get$_company_model$_$this(); t8 = t7._account; if (t8 == null) { t8 = new O.AccountEntityBuilder(); O.AccountEntity__initializeBuilder(t8); t7._account = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_wg3)); if (t8 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t7._account_model$_$v = t8; break; case "settings": t7 = result.get$_company_model$_$this(); t8 = t7._settings; if (t8 == null) { t8 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t8); t7._settings = t8; t7 = t8; } else t7 = t8; t8 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Ymm)); if (t8 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t7._company_model$_$v = t8; break; case "ninja_portal_url": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._ninjaPortalUrl = t7; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_m3m; }, get$wireName: function() { return "UserCompanyEntity"; } }; A._$UserSettingsEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["table_columns", serializers.serialize$2$specifiedType(object.tableColumns, C.FullType_mZn), "report_settings", serializers.serialize$2$specifiedType(object.reportSettings, C.FullType_Nhy), "number_years_active", serializers.serialize$2$specifiedType(object.numberYearsActive, C.FullType_kjq), "include_deleted_clients", serializers.serialize$2$specifiedType(object.includeDeletedClients, C.FullType_MtR)], type$.JSArray_legacy_Object), value = object.accentColor; if (value != null) { result.push("accent_color"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, key, value, t3, t4, _null = null, result = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_ReportSettingsEntity, t2 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "accent_color": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._accentColor = t3; break; case "table_columns": t3 = result.get$_company_model$_$this(); t4 = t3._tableColumns; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t2); t4.replace$1(0, C.Map_empty0); t3._tableColumns = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mZn)); break; case "report_settings": t3 = result.get$_company_model$_$this(); t4 = t3._reportSettings; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t1); t4.replace$1(0, C.Map_empty0); t3._reportSettings = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_Nhy)); break; case "number_years_active": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._numberYearsActive = t3; break; case "include_deleted_clients": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._includeDeletedClients = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_XBZ; }, get$wireName: function() { return "UserSettingsEntity"; } }; A._$ReportSettingsEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["sort_column", serializers.serialize$2$specifiedType(object.sortColumn, C.FullType_h8g), "sort_ascending", serializers.serialize$2$specifiedType(object.sortAscending, C.FullType_MtR), "sort_totals_index", serializers.serialize$2$specifiedType(object.sortTotalsIndex, C.FullType_kjq), "sort_totals_ascending", serializers.serialize$2$specifiedType(object.sortTotalsAscending, C.FullType_MtR), "columns", serializers.serialize$2$specifiedType(object.columns, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new A.ReportSettingsEntityBuilder(); result.get$_company_model$_$this()._sortColumn = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "sort_column": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_model$_$this()._sortColumn = t4; break; case "sort_ascending": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._company_model$_sortAscending = t4; break; case "sort_totals_index": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_model$_$this()._sortTotalsIndex = t4; break; case "sort_totals_ascending": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_model$_$this()._sortTotalsAscending = t4; break; case "columns": t4 = result.get$_company_model$_$this(); t5 = t4._columns; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._columns = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_QLF; }, get$wireName: function() { return "ReportSettingsEntity"; } }; A._$CompanyItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_a9P)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.CompanyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._company_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t3); t3._company_model$_$v = t2; result._company_model$_data = t3; result._company_model$_$v = null; } t2 = result._company_model$_data; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); result._company_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_a9P)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_1ru; }, get$wireName: function() { return "CompanyItemResponse"; } }; A._$RegistrationFieldEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["key", serializers.serialize$2$specifiedType(object.key, C.FullType_h8g), "required", serializers.serialize$2$specifiedType(object.required, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new A.RegistrationFieldEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._company_model$_$v; if ($$v != null) { result._company_model$_key = $$v.key; result._required = $$v.required; result._company_model$_$v = null; } result._company_model$_key = t1; break; case "required": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); $$v = result._company_model$_$v; if ($$v != null) { result._company_model$_key = $$v.key; result._required = $$v.required; result._company_model$_$v = null; } result._required = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_awF; }, get$wireName: function() { return "RegistrationFieldEntity"; } }; A._$CompanyEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t1); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.CompanyEntity && _this.enableCustomSurchargeTaxes1 === other.enableCustomSurchargeTaxes1 && _this.enableCustomSurchargeTaxes2 === other.enableCustomSurchargeTaxes2 && _this.enableCustomSurchargeTaxes3 === other.enableCustomSurchargeTaxes3 && _this.enableCustomSurchargeTaxes4 === other.enableCustomSurchargeTaxes4 && _this.sizeId === other.sizeId && _this.industryId === other.industryId && _this.subdomain === other.subdomain && _this.portalMode === other.portalMode && _this.portalDomain === other.portalDomain && _this.updateProducts === other.updateProducts && _this.convertProductExchangeRate === other.convertProductExchangeRate && _this.fillProducts === other.fillProducts && _this.enableProductCost === other.enableProductCost && _this.enableProductQuantity === other.enableProductQuantity && _this.enableProductDiscount === other.enableProductDiscount && _this.defaultTaskIsDateBased === other.defaultTaskIsDateBased && _this.defaultQuantity === other.defaultQuantity && _this.showProductDetails === other.showProductDetails && _this.clientCanRegister === other.clientCanRegister && _this.isLarge === other.isLarge && _this.isDisabled === other.isDisabled && _this.enableShopApi === other.enableShopApi && _this.companyKey === other.companyKey && _this.firstDayOfWeek === other.firstDayOfWeek && _this.firstMonthOfYear === other.firstMonthOfYear && _this.numberOfInvoiceTaxRates === other.numberOfInvoiceTaxRates && _this.numberOfItemTaxRates === other.numberOfItemTaxRates && _this.expenseInclusiveTaxes === other.expenseInclusiveTaxes && _this.sessionTimeout === other.sessionTimeout && _this.passwordTimeout === other.passwordTimeout && _this.oauthPasswordRequired === other.oauthPasswordRequired && _this.markdownEnabled === other.markdownEnabled && _this.useCommaAsDecimalPlace === other.useCommaAsDecimalPlace && _this.reportIncludeDrafts === other.reportIncludeDrafts && J.$eq$(_this.groups, other.groups) && J.$eq$(_this.activities, other.activities) && J.$eq$(_this.taxRates, other.taxRates) && J.$eq$(_this.taskStatuses, other.taskStatuses) && J.$eq$(_this.taskStatusMap, other.taskStatusMap) && J.$eq$(_this.companyGateways, other.companyGateways) && J.$eq$(_this.expenseCategories, other.expenseCategories) && J.$eq$(_this.users, other.users) && J.$eq$(_this.clients, other.clients) && J.$eq$(_this.products, other.products) && J.$eq$(_this.invoices, other.invoices) && J.$eq$(_this.recurringInvoices, other.recurringInvoices) && J.$eq$(_this.recurringExpenses, other.recurringExpenses) && J.$eq$(_this.payments, other.payments) && J.$eq$(_this.quotes, other.quotes) && J.$eq$(_this.credits, other.credits) && J.$eq$(_this.tasks, other.tasks) && J.$eq$(_this.projects, other.projects) && J.$eq$(_this.expenses, other.expenses) && J.$eq$(_this.vendors, other.vendors) && J.$eq$(_this.designs, other.designs) && J.$eq$(_this.documents, other.documents) && J.$eq$(_this.tokens, other.tokens) && J.$eq$(_this.webhooks, other.webhooks) && J.$eq$(_this.subscriptions, other.subscriptions) && J.$eq$(_this.paymentTerms, other.paymentTerms) && J.$eq$(_this.systemLogs, other.systemLogs) && J.$eq$(_this.clientRegistrationFields, other.clientRegistrationFields) && J.$eq$(_this.customFields, other.customFields) && _this.slackWebhookUrl === other.slackWebhookUrl && _this.googleAnalyticsKey === other.googleAnalyticsKey && _this.markExpensesInvoiceable === other.markExpensesInvoiceable && _this.markExpensesPaid === other.markExpensesPaid && _this.invoiceExpenseDocuments === other.invoiceExpenseDocuments && _this.invoiceTaskDocuments === other.invoiceTaskDocuments && _this.invoiceTaskTimelog === other.invoiceTaskTimelog && _this.invoiceTaskDatelog === other.invoiceTaskDatelog && _this.autoStartTasks === other.autoStartTasks && _this.showTasksTable === other.showTasksTable && _this.showTaskEndDate === other.showTaskEndDate && J.$eq$(_this.settings, other.settings) && _this.enabledModules === other.enabledModules && _this.calculateExpenseTaxByAmount === other.calculateExpenseTaxByAmount && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes1)), C.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes2)), C.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes3)), C.JSBool_methods.get$hashCode(_this.enableCustomSurchargeTaxes4)), C.JSString_methods.get$hashCode(_this.sizeId)), C.JSString_methods.get$hashCode(_this.industryId)), C.JSString_methods.get$hashCode(_this.subdomain)), C.JSString_methods.get$hashCode(_this.portalMode)), C.JSString_methods.get$hashCode(_this.portalDomain)), C.JSBool_methods.get$hashCode(_this.updateProducts)), C.JSBool_methods.get$hashCode(_this.convertProductExchangeRate)), C.JSBool_methods.get$hashCode(_this.fillProducts)), C.JSBool_methods.get$hashCode(_this.enableProductCost)), C.JSBool_methods.get$hashCode(_this.enableProductQuantity)), C.JSBool_methods.get$hashCode(_this.enableProductDiscount)), C.JSBool_methods.get$hashCode(_this.defaultTaskIsDateBased)), C.JSBool_methods.get$hashCode(_this.defaultQuantity)), C.JSBool_methods.get$hashCode(_this.showProductDetails)), C.JSBool_methods.get$hashCode(_this.clientCanRegister)), C.JSBool_methods.get$hashCode(_this.isLarge)), C.JSBool_methods.get$hashCode(_this.isDisabled)), C.JSBool_methods.get$hashCode(_this.enableShopApi)), C.JSString_methods.get$hashCode(_this.companyKey)), C.JSString_methods.get$hashCode(_this.firstDayOfWeek)), C.JSString_methods.get$hashCode(_this.firstMonthOfYear)), C.JSInt_methods.get$hashCode(_this.numberOfInvoiceTaxRates)), C.JSInt_methods.get$hashCode(_this.numberOfItemTaxRates)), C.JSBool_methods.get$hashCode(_this.expenseInclusiveTaxes)), C.JSInt_methods.get$hashCode(_this.sessionTimeout)), C.JSInt_methods.get$hashCode(_this.passwordTimeout)), C.JSBool_methods.get$hashCode(_this.oauthPasswordRequired)), C.JSBool_methods.get$hashCode(_this.markdownEnabled)), C.JSBool_methods.get$hashCode(_this.useCommaAsDecimalPlace)), C.JSBool_methods.get$hashCode(_this.reportIncludeDrafts)), J.get$hashCode$(_this.groups)), J.get$hashCode$(_this.activities)), J.get$hashCode$(_this.taxRates)), J.get$hashCode$(_this.taskStatuses)), J.get$hashCode$(_this.taskStatusMap)), J.get$hashCode$(_this.companyGateways)), J.get$hashCode$(_this.expenseCategories)), J.get$hashCode$(_this.users)), J.get$hashCode$(_this.clients)), J.get$hashCode$(_this.products)), J.get$hashCode$(_this.invoices)), J.get$hashCode$(_this.recurringInvoices)), J.get$hashCode$(_this.recurringExpenses)), J.get$hashCode$(_this.payments)), J.get$hashCode$(_this.quotes)), J.get$hashCode$(_this.credits)), J.get$hashCode$(_this.tasks)), J.get$hashCode$(_this.projects)), J.get$hashCode$(_this.expenses)), J.get$hashCode$(_this.vendors)), J.get$hashCode$(_this.designs)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.tokens)), J.get$hashCode$(_this.webhooks)), J.get$hashCode$(_this.subscriptions)), J.get$hashCode$(_this.paymentTerms)), J.get$hashCode$(_this.systemLogs)), J.get$hashCode$(_this.clientRegistrationFields)), J.get$hashCode$(_this.customFields)), C.JSString_methods.get$hashCode(_this.slackWebhookUrl)), C.JSString_methods.get$hashCode(_this.googleAnalyticsKey)), C.JSBool_methods.get$hashCode(_this.markExpensesInvoiceable)), C.JSBool_methods.get$hashCode(_this.markExpensesPaid)), C.JSBool_methods.get$hashCode(_this.invoiceExpenseDocuments)), C.JSBool_methods.get$hashCode(_this.invoiceTaskDocuments)), C.JSBool_methods.get$hashCode(_this.invoiceTaskTimelog)), C.JSBool_methods.get$hashCode(_this.invoiceTaskDatelog)), C.JSBool_methods.get$hashCode(_this.autoStartTasks)), C.JSBool_methods.get$hashCode(_this.showTasksTable)), C.JSBool_methods.get$hashCode(_this.showTaskEndDate)), J.get$hashCode$(_this.settings)), C.JSInt_methods.get$hashCode(_this.enabledModules)), C.JSBool_methods.get$hashCode(_this.calculateExpenseTaxByAmount)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "enableCustomSurchargeTaxes1", _this.enableCustomSurchargeTaxes1); t2.add$2(t1, "enableCustomSurchargeTaxes2", _this.enableCustomSurchargeTaxes2); t2.add$2(t1, "enableCustomSurchargeTaxes3", _this.enableCustomSurchargeTaxes3); t2.add$2(t1, "enableCustomSurchargeTaxes4", _this.enableCustomSurchargeTaxes4); t2.add$2(t1, "sizeId", _this.sizeId); t2.add$2(t1, "industryId", _this.industryId); t2.add$2(t1, "subdomain", _this.subdomain); t2.add$2(t1, "portalMode", _this.portalMode); t2.add$2(t1, "portalDomain", _this.portalDomain); t2.add$2(t1, "updateProducts", _this.updateProducts); t2.add$2(t1, "convertProductExchangeRate", _this.convertProductExchangeRate); t2.add$2(t1, "fillProducts", _this.fillProducts); t2.add$2(t1, "enableProductCost", _this.enableProductCost); t2.add$2(t1, "enableProductQuantity", _this.enableProductQuantity); t2.add$2(t1, "enableProductDiscount", _this.enableProductDiscount); t2.add$2(t1, "defaultTaskIsDateBased", _this.defaultTaskIsDateBased); t2.add$2(t1, "defaultQuantity", _this.defaultQuantity); t2.add$2(t1, "showProductDetails", _this.showProductDetails); t2.add$2(t1, "clientCanRegister", _this.clientCanRegister); t2.add$2(t1, "isLarge", _this.isLarge); t2.add$2(t1, "isDisabled", _this.isDisabled); t2.add$2(t1, "enableShopApi", _this.enableShopApi); t2.add$2(t1, "companyKey", _this.companyKey); t2.add$2(t1, "firstDayOfWeek", _this.firstDayOfWeek); t2.add$2(t1, "firstMonthOfYear", _this.firstMonthOfYear); t2.add$2(t1, "numberOfInvoiceTaxRates", _this.numberOfInvoiceTaxRates); t2.add$2(t1, "numberOfItemTaxRates", _this.numberOfItemTaxRates); t2.add$2(t1, "expenseInclusiveTaxes", _this.expenseInclusiveTaxes); t2.add$2(t1, "sessionTimeout", _this.sessionTimeout); t2.add$2(t1, "passwordTimeout", _this.passwordTimeout); t2.add$2(t1, "oauthPasswordRequired", _this.oauthPasswordRequired); t2.add$2(t1, "markdownEnabled", _this.markdownEnabled); t2.add$2(t1, "useCommaAsDecimalPlace", _this.useCommaAsDecimalPlace); t2.add$2(t1, "reportIncludeDrafts", _this.reportIncludeDrafts); t2.add$2(t1, "groups", _this.groups); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "taxRates", _this.taxRates); t2.add$2(t1, "taskStatuses", _this.taskStatuses); t2.add$2(t1, "taskStatusMap", _this.taskStatusMap); t2.add$2(t1, "companyGateways", _this.companyGateways); t2.add$2(t1, "expenseCategories", _this.expenseCategories); t2.add$2(t1, "users", _this.users); t2.add$2(t1, "clients", _this.clients); t2.add$2(t1, "products", _this.products); t2.add$2(t1, "invoices", _this.invoices); t2.add$2(t1, "recurringInvoices", _this.recurringInvoices); t2.add$2(t1, "recurringExpenses", _this.recurringExpenses); t2.add$2(t1, "payments", _this.payments); t2.add$2(t1, "quotes", _this.quotes); t2.add$2(t1, "credits", _this.credits); t2.add$2(t1, "tasks", _this.tasks); t2.add$2(t1, "projects", _this.projects); t2.add$2(t1, "expenses", _this.expenses); t2.add$2(t1, "vendors", _this.vendors); t2.add$2(t1, "designs", _this.designs); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "tokens", _this.tokens); t2.add$2(t1, "webhooks", _this.webhooks); t2.add$2(t1, "subscriptions", _this.subscriptions); t2.add$2(t1, "paymentTerms", _this.paymentTerms); t2.add$2(t1, "systemLogs", _this.systemLogs); t2.add$2(t1, "clientRegistrationFields", _this.clientRegistrationFields); t2.add$2(t1, "customFields", _this.customFields); t2.add$2(t1, "slackWebhookUrl", _this.slackWebhookUrl); t2.add$2(t1, "googleAnalyticsKey", _this.googleAnalyticsKey); t2.add$2(t1, "markExpensesInvoiceable", _this.markExpensesInvoiceable); t2.add$2(t1, "markExpensesPaid", _this.markExpensesPaid); t2.add$2(t1, "invoiceExpenseDocuments", _this.invoiceExpenseDocuments); t2.add$2(t1, "invoiceTaskDocuments", _this.invoiceTaskDocuments); t2.add$2(t1, "invoiceTaskTimelog", _this.invoiceTaskTimelog); t2.add$2(t1, "invoiceTaskDatelog", _this.invoiceTaskDatelog); t2.add$2(t1, "autoStartTasks", _this.autoStartTasks); t2.add$2(t1, "showTasksTable", _this.showTasksTable); t2.add$2(t1, "showTaskEndDate", _this.showTaskEndDate); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "enabledModules", _this.enabledModules); t2.add$2(t1, "calculateExpenseTaxByAmount", _this.calculateExpenseTaxByAmount); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$entityType: function() { return this.entityType; }, get$id: function(receiver) { return this.id; } }; A.CompanyEntityBuilder.prototype = { get$groups: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._groups; return t2 == null ? t1._groups = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GroupEntity) : t2; }, get$activities: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_activities; return t2 == null ? t1._company_model$_activities = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity) : t2; }, get$taxRates: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._taxRates; return t2 == null ? t1._taxRates = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaxRateEntity) : t2; }, get$taskStatuses: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._taskStatuses; return t2 == null ? t1._taskStatuses = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskStatusEntity) : t2; }, get$taskStatusMap: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._taskStatusMap; return t2 == null ? t1._taskStatusMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity) : t2; }, get$companyGateways: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._companyGateways; return t2 == null ? t1._companyGateways = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CompanyGatewayEntity) : t2; }, get$expenseCategories: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._expenseCategories; return t2 == null ? t1._expenseCategories = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseCategoryEntity) : t2; }, get$users: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._users; return t2 == null ? t1._users = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserEntity) : t2; }, get$clients: function(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._clients; return t2 == null ? t1._clients = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ClientEntity) : t2; }, get$products: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._products; return t2 == null ? t1._products = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProductEntity) : t2; }, get$invoices: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._invoices; return t2 == null ? t1._invoices = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$recurringInvoices: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._recurringInvoices; return t2 == null ? t1._recurringInvoices = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$recurringExpenses: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._recurringExpenses; return t2 == null ? t1._recurringExpenses = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity) : t2; }, get$payments: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._payments; return t2 == null ? t1._payments = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentEntity) : t2; }, get$quotes: function(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._quotes; return t2 == null ? t1._quotes = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$credits: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._credits; return t2 == null ? t1._credits = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t2; }, get$tasks: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._tasks; return t2 == null ? t1._tasks = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskEntity) : t2; }, get$projects: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._projects; return t2 == null ? t1._projects = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProjectEntity) : t2; }, get$expenses: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._expenses; return t2 == null ? t1._expenses = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity) : t2; }, get$vendors: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._vendors; return t2 == null ? t1._vendors = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorEntity) : t2; }, get$designs: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._designs; return t2 == null ? t1._designs = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DesignEntity) : t2; }, get$documents: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_documents; return t2 == null ? t1._company_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$tokens: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._tokens; return t2 == null ? t1._tokens = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TokenEntity) : t2; }, get$webhooks: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._webhooks; return t2 == null ? t1._webhooks = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_WebhookEntity) : t2; }, get$subscriptions: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._subscriptions; return t2 == null ? t1._subscriptions = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SubscriptionEntity) : t2; }, get$paymentTerms: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._paymentTerms; return t2 == null ? t1._paymentTerms = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTermEntity) : t2; }, get$systemLogs: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_systemLogs; return t2 == null ? t1._company_model$_systemLogs = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity) : t2; }, get$clientRegistrationFields: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._clientRegistrationFields; return t2 == null ? t1._clientRegistrationFields = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_RegistrationFieldEntity) : t2; }, get$customFields: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._customFields; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._customFields = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$settings: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._settings; return t2 == null ? t1._settings = new G.SettingsEntityBuilder() : t2; }, get$id: function(_) { return this.get$_company_model$_$this()._company_model$_id; }, get$_company_model$_$this: function() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._enableCustomSurchargeTaxes1 = $$v.enableCustomSurchargeTaxes1; _this._enableCustomSurchargeTaxes2 = $$v.enableCustomSurchargeTaxes2; _this._enableCustomSurchargeTaxes3 = $$v.enableCustomSurchargeTaxes3; _this._enableCustomSurchargeTaxes4 = $$v.enableCustomSurchargeTaxes4; _this._company_model$_sizeId = $$v.sizeId; _this._company_model$_industryId = $$v.industryId; _this._subdomain = $$v.subdomain; _this._portalMode = $$v.portalMode; _this._portalDomain = $$v.portalDomain; _this._updateProducts = $$v.updateProducts; _this._convertProductExchangeRate = $$v.convertProductExchangeRate; _this._fillProducts = $$v.fillProducts; _this._enableProductCost = $$v.enableProductCost; _this._enableProductQuantity = $$v.enableProductQuantity; _this._enableProductDiscount = $$v.enableProductDiscount; _this._defaultTaskIsDateBased = $$v.defaultTaskIsDateBased; _this._defaultQuantity = $$v.defaultQuantity; _this._showProductDetails = $$v.showProductDetails; _this._clientCanRegister = $$v.clientCanRegister; _this._isLarge = $$v.isLarge; _this._isDisabled = $$v.isDisabled; _this._enableShopApi = $$v.enableShopApi; _this._companyKey = $$v.companyKey; _this._firstDayOfWeek = $$v.firstDayOfWeek; _this._firstMonthOfYear = $$v.firstMonthOfYear; _this._numberOfInvoiceTaxRates = $$v.numberOfInvoiceTaxRates; _this._numberOfItemTaxRates = $$v.numberOfItemTaxRates; _this._expenseInclusiveTaxes = $$v.expenseInclusiveTaxes; _this._sessionTimeout = $$v.sessionTimeout; _this._passwordTimeout = $$v.passwordTimeout; _this._oauthPasswordRequired = $$v.oauthPasswordRequired; _this._markdownEnabled = $$v.markdownEnabled; _this._useCommaAsDecimalPlace = $$v.useCommaAsDecimalPlace; _this._reportIncludeDrafts = $$v.reportIncludeDrafts; t1 = $$v.groups; t1.toString; _this._groups = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._company_model$_activities = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taxRates; t1.toString; _this._taxRates = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taskStatuses; t1.toString; _this._taskStatuses = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.taskStatusMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._taskStatusMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.companyGateways; t2.toString; _this._companyGateways = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.expenseCategories; t2.toString; _this._expenseCategories = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.users; t2.toString; _this._users = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.clients; t2.toString; _this._clients = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.products; t2.toString; _this._products = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.invoices; t2.toString; _this._invoices = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.recurringInvoices; t2.toString; _this._recurringInvoices = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.recurringExpenses; t2.toString; _this._recurringExpenses = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.payments; t2.toString; _this._payments = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.quotes; t2.toString; _this._quotes = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.credits; t2.toString; _this._credits = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.tasks; t2.toString; _this._tasks = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.projects; t2.toString; _this._projects = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.expenses; t2.toString; _this._expenses = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.vendors; t2.toString; _this._vendors = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.designs; t2.toString; _this._designs = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.documents; t2.toString; _this._company_model$_documents = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.tokens; t2.toString; _this._tokens = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.webhooks; t2.toString; _this._webhooks = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.subscriptions; t2.toString; _this._subscriptions = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.paymentTerms; t2.toString; _this._paymentTerms = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.systemLogs; t2.toString; _this._company_model$_systemLogs = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.clientRegistrationFields; t2.toString; _this._clientRegistrationFields = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); t2 = $$v.customFields; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._customFields = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._slackWebhookUrl = $$v.slackWebhookUrl; _this._googleAnalyticsKey = $$v.googleAnalyticsKey; _this._markExpensesInvoiceable = $$v.markExpensesInvoiceable; _this._markExpensesPaid = $$v.markExpensesPaid; _this._invoiceExpenseDocuments = $$v.invoiceExpenseDocuments; _this._invoiceTaskDocuments = $$v.invoiceTaskDocuments; _this._invoiceTaskTimelog = $$v.invoiceTaskTimelog; _this._invoiceTaskDatelog = $$v.invoiceTaskDatelog; _this._autoStartTasks = $$v.autoStartTasks; _this._showTasksTable = $$v.showTasksTable; _this._showTaskEndDate = $$v.showTaskEndDate; t1 = $$v.settings; t1.toString; t2 = new G.SettingsEntityBuilder(); t2._settings_model$_$v = t1; _this._settings = t2; _this._enabledModules = $$v.enabledModules; _this._calculateExpenseTaxByAmount = $$v.calculateExpenseTaxByAmount; _this._company_model$_isChanged = $$v.isChanged; _this._company_model$_createdAt = $$v.createdAt; _this._company_model$_updatedAt = $$v.updatedAt; _this._company_model$_archivedAt = $$v.archivedAt; _this._company_model$_isDeleted = $$v.isDeleted; _this._company_model$_createdUserId = $$v.createdUserId; _this._company_model$_assignedUserId = $$v.assignedUserId; _this._company_model$_entityType = $$v.entityType; _this._company_model$_id = $$v.id; _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, exception, _this = this, _s13_ = "CompanyEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes1; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes1")); t2 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes2; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes2")); t3 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes3; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes3")); t4 = _this.get$_company_model$_$this()._enableCustomSurchargeTaxes4; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableCustomSurchargeTaxes4")); t5 = _this.get$_company_model$_$this()._company_model$_sizeId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "sizeId")); t6 = _this.get$_company_model$_$this()._company_model$_industryId; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "industryId")); t7 = _this.get$_company_model$_$this()._subdomain; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "subdomain")); t8 = _this.get$_company_model$_$this()._portalMode; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "portalMode")); t9 = _this.get$_company_model$_$this()._portalDomain; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "portalDomain")); t10 = _this.get$_company_model$_$this()._updateProducts; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updateProducts")); t11 = _this.get$_company_model$_$this()._convertProductExchangeRate; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "convertProductExchangeRate")); t12 = _this.get$_company_model$_$this()._fillProducts; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "fillProducts")); t13 = _this.get$_company_model$_$this()._enableProductCost; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableProductCost")); t14 = _this.get$_company_model$_$this()._enableProductQuantity; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableProductQuantity")); t15 = _this.get$_company_model$_$this()._enableProductDiscount; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableProductDiscount")); t16 = _this.get$_company_model$_$this()._defaultTaskIsDateBased; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "defaultTaskIsDateBased")); t17 = _this.get$_company_model$_$this()._defaultQuantity; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "defaultQuantity")); t18 = _this.get$_company_model$_$this()._showProductDetails; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "showProductDetails")); t19 = _this.get$_company_model$_$this()._clientCanRegister; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientCanRegister")); t20 = _this.get$_company_model$_$this()._isLarge; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isLarge")); t21 = _this.get$_company_model$_$this()._isDisabled; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isDisabled")); t22 = _this.get$_company_model$_$this()._enableShopApi; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enableShopApi")); t23 = _this.get$_company_model$_$this()._companyKey; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "companyKey")); t24 = _this.get$_company_model$_$this()._firstDayOfWeek; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "firstDayOfWeek")); t25 = _this.get$_company_model$_$this()._firstMonthOfYear; if (t25 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "firstMonthOfYear")); t26 = _this.get$_company_model$_$this()._numberOfInvoiceTaxRates; if (t26 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "numberOfInvoiceTaxRates")); t27 = _this.get$_company_model$_$this()._numberOfItemTaxRates; if (t27 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "numberOfItemTaxRates")); t28 = _this.get$_company_model$_$this()._expenseInclusiveTaxes; if (t28 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "expenseInclusiveTaxes")); t29 = _this.get$_company_model$_$this()._sessionTimeout; if (t29 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "sessionTimeout")); t30 = _this.get$_company_model$_$this()._passwordTimeout; if (t30 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "passwordTimeout")); t31 = _this.get$_company_model$_$this()._oauthPasswordRequired; if (t31 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "oauthPasswordRequired")); t32 = _this.get$_company_model$_$this()._markdownEnabled; if (t32 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "markdownEnabled")); t33 = _this.get$_company_model$_$this()._useCommaAsDecimalPlace; if (t33 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "useCommaAsDecimalPlace")); t34 = _this.get$_company_model$_$this()._reportIncludeDrafts; if (t34 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "reportIncludeDrafts")); t35 = _this.get$groups().build$0(0); t36 = _this.get$activities().build$0(0); t37 = _this.get$taxRates().build$0(0); t38 = _this.get$taskStatuses().build$0(0); t39 = _this.get$taskStatusMap().build$0(0); t40 = _this.get$companyGateways().build$0(0); t41 = _this.get$expenseCategories().build$0(0); t42 = _this.get$users().build$0(0); t43 = _this.get$clients(_this).build$0(0); t44 = _this.get$products().build$0(0); t45 = _this.get$invoices().build$0(0); t46 = _this.get$recurringInvoices().build$0(0); t47 = _this.get$recurringExpenses().build$0(0); t48 = _this.get$payments().build$0(0); t49 = _this.get$quotes(_this).build$0(0); t50 = _this.get$credits().build$0(0); t51 = _this.get$tasks().build$0(0); t52 = _this.get$projects().build$0(0); t53 = _this.get$expenses().build$0(0); t54 = _this.get$vendors().build$0(0); t55 = _this.get$designs().build$0(0); t56 = _this.get$documents().build$0(0); t57 = _this.get$tokens().build$0(0); t58 = _this.get$webhooks().build$0(0); t59 = _this.get$subscriptions().build$0(0); t60 = _this.get$paymentTerms().build$0(0); t61 = _this.get$systemLogs().build$0(0); t62 = _this.get$clientRegistrationFields().build$0(0); t63 = _this.get$customFields().build$0(0); t64 = _this.get$_company_model$_$this()._slackWebhookUrl; if (t64 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "slackWebhookUrl")); t65 = _this.get$_company_model$_$this()._googleAnalyticsKey; if (t65 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "googleAnalyticsKey")); t66 = _this.get$_company_model$_$this()._markExpensesInvoiceable; if (t66 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "markExpensesInvoiceable")); t67 = _this.get$_company_model$_$this()._markExpensesPaid; if (t67 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "markExpensesPaid")); t68 = _this.get$_company_model$_$this()._invoiceExpenseDocuments; if (t68 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceExpenseDocuments")); t69 = _this.get$_company_model$_$this()._invoiceTaskDocuments; if (t69 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceTaskDocuments")); t70 = _this.get$_company_model$_$this()._invoiceTaskTimelog; if (t70 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceTaskTimelog")); t71 = _this.get$_company_model$_$this()._invoiceTaskDatelog; if (t71 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceTaskDatelog")); t72 = _this.get$_company_model$_$this()._autoStartTasks; if (t72 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "autoStartTasks")); t73 = _this.get$_company_model$_$this()._showTasksTable; if (t73 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "showTasksTable")); t74 = _this.get$_company_model$_$this()._showTaskEndDate; if (t74 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "showTaskEndDate")); t75 = _this.get$settings().build$0(0); t76 = _this.get$_company_model$_$this()._enabledModules; if (t76 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "enabledModules")); t77 = _this.get$_company_model$_$this()._calculateExpenseTaxByAmount; if (t77 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "calculateExpenseTaxByAmount")); t78 = _this.get$_company_model$_$this()._company_model$_isChanged; t79 = _this.get$_company_model$_$this()._company_model$_createdAt; if (t79 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t80 = _this.get$_company_model$_$this()._company_model$_updatedAt; if (t80 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t81 = _this.get$_company_model$_$this()._company_model$_archivedAt; if (t81 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t82 = _this.get$_company_model$_$this()._company_model$_isDeleted; t83 = _this.get$_company_model$_$this()._company_model$_createdUserId; t84 = _this.get$_company_model$_$this()._company_model$_assignedUserId; t85 = _this.get$_company_model$_$this()._company_model$_entityType; t86 = _this.get$_company_model$_$this()._company_model$_id; if (t86 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$CompanyEntity$_(t36, t81, t84, t72, t77, t19, t62, t43, t40, t23, t11, t79, t83, t50, t63, t17, t16, t55, t56, t1, t2, t3, t4, t13, t15, t14, t22, t76, t85, t41, t28, t53, t12, t24, t25, t65, t35, t86, t6, t68, t71, t69, t70, t45, t78, t82, t21, t20, t66, t67, t32, t26, t27, t31, t30, t60, t48, t9, t8, t44, t52, t49, t47, t46, t34, t29, t75, t18, t74, t73, t5, t64, t7, t59, t61, t39, t38, t51, t37, t57, t10, t80, t33, t42, t54, t58); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "groups"; _this.get$groups().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); _$failedField = "taxRates"; _this.get$taxRates().build$0(0); _$failedField = "taskStatuses"; _this.get$taskStatuses().build$0(0); _$failedField = "taskStatusMap"; _this.get$taskStatusMap().build$0(0); _$failedField = "companyGateways"; _this.get$companyGateways().build$0(0); _$failedField = "expenseCategories"; _this.get$expenseCategories().build$0(0); _$failedField = "users"; _this.get$users().build$0(0); _$failedField = "clients"; _this.get$clients(_this).build$0(0); _$failedField = "products"; _this.get$products().build$0(0); _$failedField = "invoices"; _this.get$invoices().build$0(0); _$failedField = "recurringInvoices"; _this.get$recurringInvoices().build$0(0); _$failedField = "recurringExpenses"; _this.get$recurringExpenses().build$0(0); _$failedField = "payments"; _this.get$payments().build$0(0); _$failedField = "quotes"; _this.get$quotes(_this).build$0(0); _$failedField = "credits"; _this.get$credits().build$0(0); _$failedField = "tasks"; _this.get$tasks().build$0(0); _$failedField = "projects"; _this.get$projects().build$0(0); _$failedField = "expenses"; _this.get$expenses().build$0(0); _$failedField = "vendors"; _this.get$vendors().build$0(0); _$failedField = "designs"; _this.get$designs().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "tokens"; _this.get$tokens().build$0(0); _$failedField = "webhooks"; _this.get$webhooks().build$0(0); _$failedField = "subscriptions"; _this.get$subscriptions().build$0(0); _$failedField = "paymentTerms"; _this.get$paymentTerms().build$0(0); _$failedField = "systemLogs"; _this.get$systemLogs().build$0(0); _$failedField = "clientRegistrationFields"; _this.get$clientRegistrationFields().build$0(0); _$failedField = "customFields"; _this.get$customFields().build$0(0); _$failedField = "settings"; _this.get$settings().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$GatewayEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayEntity && _this.id === other.id && _this.name === other.name && _this.isOffsite === other.isOffsite && _this.isVisible === other.isVisible && _this.sortOrder === other.sortOrder && _this.defaultGatewayTypeId === other.defaultGatewayTypeId && _this.siteUrl === other.siteUrl && J.$eq$(_this.options, other.options) && _this.fields === other.fields; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.name)), C.JSBool_methods.get$hashCode(_this.isOffsite)), C.JSBool_methods.get$hashCode(_this.isVisible)), C.JSInt_methods.get$hashCode(_this.sortOrder)), C.JSString_methods.get$hashCode(_this.defaultGatewayTypeId)), C.JSString_methods.get$hashCode(_this.siteUrl)), J.get$hashCode$(_this.options)), C.JSString_methods.get$hashCode(_this.fields))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "isOffsite", _this.isOffsite); t2.add$2(t1, "isVisible", _this.isVisible); t2.add$2(t1, "sortOrder", _this.sortOrder); t2.add$2(t1, "defaultGatewayTypeId", _this.defaultGatewayTypeId); t2.add$2(t1, "siteUrl", _this.siteUrl); t2.add$2(t1, "options", _this.options); t2.add$2(t1, "fields", _this.fields); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; }, get$name: function(receiver) { return this.name; } }; A.GatewayEntityBuilder.prototype = { get$id: function(_) { return this.get$_company_model$_$this()._company_model$_id; }, get$name: function(_) { return this.get$_company_model$_$this()._company_model$_name; }, get$options: function(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._options; return t2 == null ? t1._options = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayOptionsEntity) : t2; }, get$_company_model$_$this: function() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._company_model$_id = $$v.id; _this._company_model$_name = $$v.name; _this._isOffsite = $$v.isOffsite; _this._isVisible = $$v.isVisible; _this._sortOrder = $$v.sortOrder; _this._defaultGatewayTypeId = $$v.defaultGatewayTypeId; _this._siteUrl = $$v.siteUrl; t1 = $$v.options; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._options = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._company_model$_fields = $$v.fields; _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, exception, _this = this, _s13_ = "GatewayEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._company_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); t2 = _this.get$_company_model$_$this()._company_model$_name; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "name")); t3 = _this.get$_company_model$_$this()._isOffsite; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isOffsite")); t4 = _this.get$_company_model$_$this()._isVisible; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isVisible")); t5 = _this.get$_company_model$_$this()._sortOrder; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "sortOrder")); t6 = _this.get$_company_model$_$this()._defaultGatewayTypeId; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "defaultGatewayTypeId")); t7 = _this.get$_company_model$_$this()._siteUrl; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "siteUrl")); t8 = _this.get$options(_this).build$0(0); t9 = _this.get$_company_model$_$this()._company_model$_fields; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "fields")); _$result0 = A._$GatewayEntity$_(t6, t9, t1, t3, t4, t2, t8, t7, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "options"; _this.get$options(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$GatewayOptionsEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.GatewayOptionsEntity && _this.supportRefunds === other.supportRefunds && _this.supportTokenBilling === other.supportTokenBilling && J.$eq$(_this.webhooks, other.webhooks); }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.supportRefunds)), C.JSBool_methods.get$hashCode(_this.supportTokenBilling)), J.get$hashCode$(_this.webhooks))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayOptionsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "supportRefunds", this.supportRefunds); t2.add$2(t1, "supportTokenBilling", this.supportTokenBilling); t2.add$2(t1, "webhooks", this.webhooks); return t2.toString$0(t1); } }; A.GatewayOptionsEntityBuilder.prototype = { get$_company_model$_$this: function() { var t1, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._supportRefunds = $$v.supportRefunds; _this._supportTokenBilling = $$v.supportTokenBilling; t1 = $$v.webhooks; _this._webhooks = t1 == null ? null : D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, exception, _this = this, _s20_ = "GatewayOptionsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._supportRefunds; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "supportRefunds")); t2 = _this.get$_company_model$_$this()._supportTokenBilling; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "supportTokenBilling")); t3 = _this._webhooks; _$result0 = new A._$GatewayOptionsEntity(t1, t2, t3 == null ? null : t3.build$0(0)); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "webhooks"; t1 = _this._webhooks; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$UserCompanyEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t1); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserCompanyEntity && _this.isAdmin === other.isAdmin && _this.isOwner === other.isOwner && _this.permissionsUpdatedAt === other.permissionsUpdatedAt && _this.permissions === other.permissions && J.$eq$(_this.notifications, other.notifications) && J.$eq$(_this.company, other.company) && J.$eq$(_this.user, other.user) && J.$eq$(_this.token, other.token) && J.$eq$(_this.account, other.account) && J.$eq$(_this.settings, other.settings) && _this.ninjaPortalUrl === other.ninjaPortalUrl; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.isAdmin)), C.JSBool_methods.get$hashCode(_this.isOwner)), C.JSInt_methods.get$hashCode(_this.permissionsUpdatedAt)), C.JSString_methods.get$hashCode(_this.permissions)), J.get$hashCode$(_this.notifications)), J.get$hashCode$(_this.company)), J.get$hashCode$(_this.user)), J.get$hashCode$(_this.token)), J.get$hashCode$(_this.account)), J.get$hashCode$(_this.settings)), C.JSString_methods.get$hashCode(_this.ninjaPortalUrl))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "isAdmin", _this.isAdmin); t2.add$2(t1, "isOwner", _this.isOwner); t2.add$2(t1, "permissionsUpdatedAt", _this.permissionsUpdatedAt); t2.add$2(t1, "permissions", _this.permissions); t2.add$2(t1, "notifications", _this.notifications); t2.add$2(t1, "company", _this.company); t2.add$2(t1, "user", _this.user); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "account", _this.account); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "ninjaPortalUrl", _this.ninjaPortalUrl); return t2.toString$0(t1); }, get$company: function() { return this.company; }, get$user: function() { return this.user; }, get$token: function() { return this.token; } }; A.UserCompanyEntityBuilder.prototype = { get$notifications: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._notifications; return t2 == null ? t1._notifications = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$company: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_company; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._company_model$_company = t2; t1 = t2; } else t1 = t2; return t1; }, get$user: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._company_model$_user; if (t2 == null) { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t1._company_model$_user = t2; t1 = t2; } else t1 = t2; return t1; }, get$token: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._token; return t2 == null ? t1._token = new D.TokenEntityBuilder() : t2; }, get$settings: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._settings; if (t2 == null) { t2 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t2); t1._settings = t2; t1 = t2; } else t1 = t2; return t1; }, get$_company_model$_$this: function() { var t1, t2, _this = this, _null = null, $$v = _this._company_model$_$v; if ($$v != null) { _this._isAdmin = $$v.isAdmin; _this._isOwner = $$v.isOwner; _this._permissionsUpdatedAt = $$v.permissionsUpdatedAt; _this._permissions = $$v.permissions; t1 = $$v.notifications; if (t1 == null) t1 = _null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._notifications = t1; t1 = $$v.company; if (t1 == null) t1 = _null; else { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; t1 = t2; } _this._company_model$_company = t1; t1 = $$v.user; if (t1 == null) t1 = _null; else { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t2._user_model$_$v = t1; t1 = t2; } _this._company_model$_user = t1; t1 = $$v.token; if (t1 == null) t1 = _null; else { t2 = new D.TokenEntityBuilder(); t2._token_model$_$v = t1; t1 = t2; } _this._token = t1; t1 = $$v.account; if (t1 == null) t1 = _null; else { t2 = new O.AccountEntityBuilder(); O.AccountEntity__initializeBuilder(t2); t2._account_model$_$v = t1; t1 = t2; } _this._account = t1; t1 = $$v.settings; if (t1 == null) t1 = _null; else { t2 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t2); t2._company_model$_$v = t1; t1 = t2; } _this._settings = t1; _this._ninjaPortalUrl = $$v.ninjaPortalUrl; _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _null = null, _s17_ = "UserCompanyEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._isAdmin; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "isAdmin")); t2 = _this.get$_company_model$_$this()._isOwner; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "isOwner")); t3 = _this.get$_company_model$_$this()._permissionsUpdatedAt; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "permissionsUpdatedAt")); t4 = _this.get$_company_model$_$this()._permissions; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "permissions")); t5 = _this._notifications; t5 = t5 == null ? _null : t5.build$0(0); t6 = _this._company_model$_company; t6 = t6 == null ? _null : t6.build$0(0); t7 = _this._company_model$_user; t7 = t7 == null ? _null : t7.build$0(0); t8 = _this._token; t8 = t8 == null ? _null : t8.build$0(0); t9 = _this._account; t9 = t9 == null ? _null : t9.build$0(0); t10 = _this._settings; t10 = t10 == null ? _null : t10.build$0(0); t11 = _this.get$_company_model$_$this()._ninjaPortalUrl; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "ninjaPortalUrl")); _$result0 = A._$UserCompanyEntity$_(t9, t6, t1, t2, t11, t5, t4, t3, t10, t8, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "notifications"; t1 = _this._notifications; if (t1 != null) t1.build$0(0); _$failedField = "company"; t1 = _this._company_model$_company; if (t1 != null) t1.build$0(0); _$failedField = "user"; t1 = _this._company_model$_user; if (t1 != null) t1.build$0(0); _$failedField = "token"; t1 = _this._token; if (t1 != null) t1.build$0(0); _$failedField = "account"; t1 = _this._account; if (t1 != null) t1.build$0(0); _$failedField = "settings"; t1 = _this._settings; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$UserSettingsEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.UserSettingsEntityBuilder(); A.UserSettingsEntity__initializeBuilder(t1); t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.UserSettingsEntity && _this.accentColor == other.accentColor && J.$eq$(_this.tableColumns, other.tableColumns) && J.$eq$(_this.reportSettings, other.reportSettings) && _this.numberYearsActive === other.numberYearsActive && _this.includeDeletedClients === other.includeDeletedClients; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.accentColor)), J.get$hashCode$(_this.tableColumns)), J.get$hashCode$(_this.reportSettings)), C.JSInt_methods.get$hashCode(_this.numberYearsActive)), C.JSBool_methods.get$hashCode(_this.includeDeletedClients))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserSettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "accentColor", _this.accentColor); t2.add$2(t1, "tableColumns", _this.tableColumns); t2.add$2(t1, "reportSettings", _this.reportSettings); t2.add$2(t1, "numberYearsActive", _this.numberYearsActive); t2.add$2(t1, "includeDeletedClients", _this.includeDeletedClients); return t2.toString$0(t1); } }; A.UserSettingsEntityBuilder.prototype = { get$tableColumns: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._tableColumns; return t2 == null ? t1._tableColumns = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$reportSettings: function() { var t1 = this.get$_company_model$_$this(), t2 = t1._reportSettings; return t2 == null ? t1._reportSettings = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ReportSettingsEntity) : t2; }, get$_company_model$_$this: function() { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._accentColor = $$v.accentColor; t1 = $$v.tableColumns; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._tableColumns = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.reportSettings; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._reportSettings = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._numberYearsActive = $$v.numberYearsActive; _this._includeDeletedClients = $$v.includeDeletedClients; _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, exception, _this = this, _s18_ = "UserSettingsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._accentColor; t2 = _this.get$tableColumns().build$0(0); t3 = _this.get$reportSettings().build$0(0); t4 = _this.get$_company_model$_$this()._numberYearsActive; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "numberYearsActive")); t5 = _this.get$_company_model$_$this()._includeDeletedClients; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "includeDeletedClients")); _$result0 = A._$UserSettingsEntity$_(t1, t5, t4, t3, t2); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "tableColumns"; _this.get$tableColumns().build$0(0); _$failedField = "reportSettings"; _this.get$reportSettings().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$ReportSettingsEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.ReportSettingsEntityBuilder(); t1.get$_company_model$_$this()._sortColumn = ""; t1._company_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ReportSettingsEntity && _this.sortColumn === other.sortColumn && _this.sortAscending === other.sortAscending && _this.sortTotalsIndex === other.sortTotalsIndex && _this.sortTotalsAscending === other.sortTotalsAscending && J.$eq$(_this.columns, other.columns); }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.sortColumn)), C.JSBool_methods.get$hashCode(_this.sortAscending)), C.JSInt_methods.get$hashCode(_this.sortTotalsIndex)), C.JSBool_methods.get$hashCode(_this.sortTotalsAscending)), J.get$hashCode$(_this.columns))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ReportSettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sortColumn", _this.sortColumn); t2.add$2(t1, "sortAscending", _this.sortAscending); t2.add$2(t1, "sortTotalsIndex", _this.sortTotalsIndex); t2.add$2(t1, "sortTotalsAscending", _this.sortTotalsAscending); t2.add$2(t1, "columns", _this.columns); return t2.toString$0(t1); } }; A.ReportSettingsEntityBuilder.prototype = { get$columns: function(_) { var t1 = this.get$_company_model$_$this(), t2 = t1._columns; return t2 == null ? t1._columns = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_company_model$_$this: function() { var t1, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._sortColumn = $$v.sortColumn; _this._company_model$_sortAscending = $$v.sortAscending; _this._sortTotalsIndex = $$v.sortTotalsIndex; _this._sortTotalsAscending = $$v.sortTotalsAscending; t1 = $$v.columns; t1.toString; _this._columns = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, exception, _this = this, _s20_ = "ReportSettingsEntity", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$_company_model$_$this()._sortColumn; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "sortColumn")); t2 = _this.get$_company_model$_$this()._company_model$_sortAscending; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "sortAscending")); t3 = _this.get$_company_model$_$this()._sortTotalsIndex; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "sortTotalsIndex")); t4 = _this.get$_company_model$_$this()._sortTotalsAscending; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "sortTotalsAscending")); _$result0 = A._$ReportSettingsEntity$_(_this.get$columns(_this).build$0(0), t2, t1, t4, t3); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "columns"; _this.get$columns(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$CompanyItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.CompanyItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._company_model$__hashCode; return t1 == null ? this._company_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.CompanyItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._company_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; _this._company_model$_data = t2; _this._company_model$_$v = null; } t1 = _this._company_model$_data; if (t1 == null) { t1 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t1); _this._company_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "CompanyItemResponse", _$result = null; try { _$result0 = _this._company_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$CompanyItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_model$_$v = t1; return _$result; } }; A._$RegistrationFieldEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.RegistrationFieldEntity && this.key === other.key && this.required === other.required; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_model$__hashCode; return t1 == null ? _this._company_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.key)), C.JSBool_methods.get$hashCode(_this.required))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RegistrationFieldEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "key", this.key); t2.add$2(t1, "required", this.required); return t2.toString$0(t1); } }; A.RegistrationFieldEntityBuilder.prototype = { get$_company_model$_$this: function() { var _this = this, $$v = _this._company_model$_$v; if ($$v != null) { _this._company_model$_key = $$v.key; _this._required = $$v.required; _this._company_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s23_ = "RegistrationFieldEntity", _$result = _this._company_model$_$v; if (_$result == null) { t1 = _this.get$_company_model$_$this()._company_model$_key; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "key")); t2 = _this.get$_company_model$_$this()._required; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "required")); _$result = new A._$RegistrationFieldEntity(t1, t2); } return _this._company_model$_$v = _$result; } }; A._CompanyEntity_Object_BaseEntity.prototype = {}; A._GatewayEntity_Object_SelectableEntity.prototype = {}; D.CreditListResponse.prototype = {}; D.CreditItemResponse.prototype = {}; D._$CreditListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_xS5)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.CreditListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_InvoiceEntity, t3 = type$.ListBuilder_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._credit_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._credit_model$_data = t6; result._credit_model$_$v = null; } t4 = result._credit_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._credit_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_86y; }, get$wireName: function() { return "CreditListResponse"; } }; D._$CreditItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_fXI)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, t8, result = new D.CreditItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceEntity, t2 = type$.legacy_ActivityEntity, t3 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._credit_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new Q.InvoiceEntityBuilder(); t6 = t5.get$_invoice_model$_$this(); t7 = t6._invoice_model$_activities; if (t7 == null) { t7 = new D.ListBuilder(t3); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t6._invoice_model$_activities = t7; t6 = t7; } else t6 = t7; t7 = D.BuiltList_BuiltList$from(C.List_empty, t2); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } t5.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t5.get$_invoice_model$_$this()._autoBillEnabled = false; t5.get$_invoice_model$_$this()._subscriptionId = ""; t5._invoice_model$_$v = t4; result._credit_model$_data = t5; result._credit_model$_$v = null; } t4 = result._credit_model$_data; if (t4 == null) { t4 = new Q.InvoiceEntityBuilder(); t5 = t4.get$_invoice_model$_$this(); t6 = t5._invoice_model$_activities; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._invoice_model$_activities = t6; t5 = t6; } else t5 = t6; t6 = D.BuiltList_BuiltList$from(C.List_empty, t2); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } t4.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t4.get$_invoice_model$_$this()._autoBillEnabled = false; t4.get$_invoice_model$_$this()._subscriptionId = ""; result._credit_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull("other")); t4._invoice_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ypO; }, get$wireName: function() { return "CreditItemResponse"; } }; D._$CreditListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.CreditListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._credit_model$__hashCode; return t1 == null ? this._credit_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.CreditListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._credit_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._credit_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._credit_model$_$v = null; } t1 = _this._credit_model$_data; return t1 == null ? _this._credit_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "CreditListResponse", _$result = null; try { _$result0 = _this._credit_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$CreditListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._credit_model$_$v = t1; return _$result; } }; D._$CreditItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.CreditItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._credit_model$__hashCode; return t1 == null ? this._credit_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.CreditItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._credit_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; _this._credit_model$_data = t2; _this._credit_model$_$v = null; } t1 = _this._credit_model$_data; if (t1 == null) { t1 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t1); _this._credit_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "CreditItemResponse", _$result = null; try { _$result0 = _this._credit_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$CreditItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._credit_model$_$v = t1; return _$result; } }; F.DateRange.prototype = {}; F.DateRangeComparison.prototype = {}; F.DashboardSettings.prototype = {}; F._$DateRangeSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return F._$valueOf0(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_DateRange_avx; }, get$wireName: function() { return "DateRange"; } }; F._$DateRangeComparisonSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return F._$comparisonValueOf(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_DateRangeComparison_wco; }, get$wireName: function() { return "DateRangeComparison"; } }; D.DesignListResponse.prototype = {}; D.DesignItemResponse.prototype = {}; D.DesignPreviewRequest.prototype = {}; D.DesignEntity.prototype = { get$entityType: function() { return C.EntityType_design; }, get$clone: function(_) { return this.rebuild$1(new D.DesignEntity_clone_closure()); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) actions.push(C.EntityAction_newInvoice); if (userCompany.can$2(C.UserPermission_create, C.EntityType_quote)) actions.push(C.EntityAction_newQuote); if (userCompany.can$2(C.UserPermission_create, C.EntityType_credit)) actions.push(C.EntityAction_newClient); if (userCompany.can$2(C.UserPermission_create, C.EntityType_recurringInvoice)) actions.push(C.EntityAction_newRecurringInvoice); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_design) && !multiselect) actions.push(C.EntityAction_clone); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, compareTo$3: function(_, design, sortField, sortAscending) { var response, designA = sortAscending ? this : design, designB = sortAscending ? design : this; switch (sortField) { case "updated_at": response = C.JSInt_methods.compareTo$1(designA.updatedAt, designB.updatedAt); break; default: response = 0; } if (response === 0) return C.JSString_methods.compareTo$1(designA.name.toLowerCase(), designB.name.toLowerCase()); else return response; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; }, $isSelectableEntity: 1 }; D.DesignEntity_clone_closure.prototype = { call$1: function(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_design_model$_$this()._design_model$_id = t1; b.get$_design_model$_$this()._design_model$_isChanged = false; b.get$_design_model$_$this()._design_model$_isDeleted = false; return b; }, $signature: 282 }; D._$DesignListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_8sg)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.DesignListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DesignEntity, t3 = type$.ListBuilder_legacy_DesignEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._design_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._design_model$_data = t6; result._design_model$_$v = null; } t4 = result._design_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._design_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_8sg)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_0O2; }, get$wireName: function() { return "DesignListResponse"; } }; D._$DesignItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_CNd)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new D.DesignItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DesignEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._design_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new D.DesignEntityBuilder(); t3.get$_design_model$_$this()._isFree = true; t3._design_model$_$v = t2; result._design_model$_data = t3; result._design_model$_$v = null; } t2 = result._design_model$_data; if (t2 == null) { t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; result._design_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_CNd)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._design_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_VgL; }, get$wireName: function() { return "DesignItemResponse"; } }; D._$DesignPreviewRequestSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["entity_type", serializers.serialize$2$specifiedType(object.entityType, C.FullType_qBb), "entity_id", serializers.serialize$2$specifiedType(object.entityId, C.FullType_h8g), "design", serializers.serialize$2$specifiedType(object.design, C.FullType_CNd)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new D.DesignPreviewRequestBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DesignEntity, t2 = type$.legacy_EntityType; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "entity_type": t3 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_design_model$_$this()._design_model$_entityType = t3; break; case "entity_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_model$_$this()._entityId = t3; break; case "design": t3 = result.get$_design_model$_$this(); t4 = t3._design; if (t4 == null) { t4 = new D.DesignEntityBuilder(); t4.get$_design_model$_$this()._isFree = true; t3._design = t4; t3 = t4; } else t3 = t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_CNd)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._design_model$_$v = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Hx4; }, get$wireName: function() { return "DesignPreviewRequest"; } }; D._$DesignEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "design", serializers.serialize$2$specifiedType(object.design, C.FullType_LNO), "is_custom", serializers.serialize$2$specifiedType(object.isCustom, C.FullType_MtR), "is_free", serializers.serialize$2$specifiedType(object.isFree, C.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new D.DesignEntityBuilder(); result.get$_design_model$_$this()._isFree = true; iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_model$_$this()._design_model$_name = t2; break; case "design": t2 = result.get$_design_model$_$this(); t3 = t2._design; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._design = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "is_custom": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_design_model$_$this()._isCustom = t2; break; case "is_free": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_design_model$_$this()._isFree = t2; break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_design_model$_$this()._design_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_design_model$_$this()._design_model$_createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_design_model$_$this()._design_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_design_model$_$this()._design_model$_archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_design_model$_$this()._design_model$_isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_model$_$this()._design_model$_createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_model$_$this()._design_model$_assignedUserId = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_model$_$this()._design_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_O9m; }, get$wireName: function() { return "DesignEntity"; } }; D._$DesignListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.DesignListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._design_model$__hashCode; return t1 == null ? this._design_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.DesignListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._design_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._design_model$_$v = null; } t1 = _this._design_model$_data; return t1 == null ? _this._design_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DesignEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "DesignListResponse", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$DesignListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_model$_$v = t1; return _$result; } }; D._$DesignItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.DesignItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._design_model$__hashCode; return t1 == null ? this._design_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.DesignItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t2._design_model$_$v = t1; _this._design_model$_data = t2; _this._design_model$_$v = null; } t1 = _this._design_model$_data; if (t1 == null) { t1 = new D.DesignEntityBuilder(); t1.get$_design_model$_$this()._isFree = true; _this._design_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "DesignItemResponse", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$DesignItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_model$_$v = t1; return _$result; } }; D._$DesignPreviewRequest.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.DesignPreviewRequest && _this.entityType === other.entityType && _this.entityId === other.entityId && J.$eq$(_this.design, other.design); }, get$hashCode: function(_) { var _this = this, t1 = _this._design_model$__hashCode; return t1 == null ? _this._design_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(0, H.Primitives_objectHashCode(_this.entityType)), C.JSString_methods.get$hashCode(_this.entityId)), J.get$hashCode$(_this.design))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignPreviewRequest"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "entityType", this.entityType); t2.add$2(t1, "entityId", this.entityId); t2.add$2(t1, "design", this.design); return t2.toString$0(t1); }, get$design: function() { return this.design; } }; D.DesignPreviewRequestBuilder.prototype = { get$design: function() { var t1 = this.get$_design_model$_$this(), t2 = t1._design; if (t2 == null) { t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t1._design = t2; t1 = t2; } else t1 = t2; return t1; }, get$_design_model$_$this: function() { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { _this._design_model$_entityType = $$v.entityType; _this._entityId = $$v.entityId; t1 = $$v.design; t1.toString; t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t2._design_model$_$v = t1; _this._design = t2; _this._design_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s20_ = "DesignPreviewRequest", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$_design_model$_$this()._design_model$_entityType; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "entityType")); t2 = _this.get$_design_model$_$this()._entityId; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "entityId")); _$result0 = D._$DesignPreviewRequest$_(_this.get$design().build$0(0), t2, t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "design"; _this.get$design().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_model$_$v = t1; return _$result; } }; D._$DesignEntity.prototype = { rebuild$1: function(updates) { var t1 = new D.DesignEntityBuilder(); t1.get$_design_model$_$this()._isFree = true; t1._design_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.DesignEntity && _this.name === other.name && J.$eq$(_this.design, other.design) && _this.isCustom === other.isCustom && _this.isFree === other.isFree && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._design_model$__hashCode; return t1 == null ? _this._design_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.design)), C.JSBool_methods.get$hashCode(_this.isCustom)), C.JSBool_methods.get$hashCode(_this.isFree)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "design", _this.design); t2.add$2(t1, "isCustom", _this.isCustom); t2.add$2(t1, "isFree", _this.isFree); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$design: function() { return this.design; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; D.DesignEntityBuilder.prototype = { get$name: function(_) { return this.get$_design_model$_$this()._design_model$_name; }, get$design: function() { var t1 = this.get$_design_model$_$this(), t2 = t1._design; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._design = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$id: function(_) { return this.get$_design_model$_$this()._design_model$_id; }, get$_design_model$_$this: function() { var t1, t2, _this = this, $$v = _this._design_model$_$v; if ($$v != null) { _this._design_model$_name = $$v.name; t1 = $$v.design; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._design = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._isCustom = $$v.isCustom; _this._isFree = $$v.isFree; _this._design_model$_isChanged = $$v.isChanged; _this._design_model$_createdAt = $$v.createdAt; _this._design_model$_updatedAt = $$v.updatedAt; _this._design_model$_archivedAt = $$v.archivedAt; _this._design_model$_isDeleted = $$v.isDeleted; _this._design_model$_createdUserId = $$v.createdUserId; _this._design_model$_assignedUserId = $$v.assignedUserId; _this._design_model$_id = $$v.id; _this._design_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, exception, _this = this, _s12_ = "DesignEntity", _$result = null; try { _$result0 = _this._design_model$_$v; if (_$result0 == null) { t1 = _this.get$_design_model$_$this()._design_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "name")); t2 = _this.get$design().build$0(0); t3 = _this.get$_design_model$_$this()._isCustom; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "isCustom")); t4 = _this.get$_design_model$_$this()._isFree; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "isFree")); t5 = _this.get$_design_model$_$this()._design_model$_isChanged; t6 = _this.get$_design_model$_$this()._design_model$_createdAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "createdAt")); t7 = _this.get$_design_model$_$this()._design_model$_updatedAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "updatedAt")); t8 = _this.get$_design_model$_$this()._design_model$_archivedAt; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "archivedAt")); t9 = _this.get$_design_model$_$this()._design_model$_isDeleted; t10 = _this.get$_design_model$_$this()._design_model$_createdUserId; t11 = _this.get$_design_model$_$this()._design_model$_assignedUserId; t12 = _this.get$_design_model$_$this()._design_model$_id; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = D._$DesignEntity$_(t8, t11, t6, t10, t2, t12, t5, t3, t9, t4, t1, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "design"; _this.get$design().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_model$_$v = t1; return _$result; } }; D._DesignEntity_Object_BaseEntity.prototype = {}; D.DocumentListResponse.prototype = {}; D.DocumentItemResponse.prototype = {}; D.DocumentEntity.prototype = { get$entityType: function() { return C.EntityType_document; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, compareTo$3: function(_, $document, sortField, sortAscending) { var response, documentA = sortAscending ? this : $document, documentB = sortAscending ? $document : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(documentA.name.toLowerCase(), documentB.name.toLowerCase()); break; case "updated_at": response = C.JSInt_methods.compareTo$1(documentA.updatedAt, documentB.updatedAt); break; default: P.print("## ERROR: sort by documents." + H.S(sortField) + " is not implemented"); response = 0; break; } return response; }, compareTo$1: function($receiver, $document) { return this.compareTo$3($receiver, $document, null, true); }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name, this.type, this.preview], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.name, this.type, this.preview], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) actions.push(C.EntityAction_newInvoice); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_document)) actions.push(C.EntityAction_clone); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); } }; D._$DocumentListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_EBZ)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.DocumentListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._document_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._document_model$_data = t6; result._document_model$_$v = null; } t4 = result._document_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._document_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_MYA; }, get$wireName: function() { return "DocumentListResponse"; } }; D._$DocumentItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_uzh)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new D.DocumentItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._document_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new D.DocumentEntityBuilder(); t3._document_model$_$v = t2; result._document_model$_data = t3; result._document_model$_$v = null; } t2 = result._document_model$_data; if (t2 == null) t2 = result._document_model$_data = new D.DocumentEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_uzh)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._document_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_65l; }, get$wireName: function() { return "DocumentItemResponse"; } }; D._$DocumentEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "hash", serializers.serialize$2$specifiedType(object.hash, C.FullType_h8g), "type", serializers.serialize$2$specifiedType(object.type, C.FullType_h8g), "url", serializers.serialize$2$specifiedType(object.url, C.FullType_h8g), "width", serializers.serialize$2$specifiedType(object.width, C.FullType_kjq), "height", serializers.serialize$2$specifiedType(object.height, C.FullType_kjq), "size", serializers.serialize$2$specifiedType(object.size, C.FullType_kjq), "preview", serializers.serialize$2$specifiedType(object.preview, C.FullType_h8g), "is_default", serializers.serialize$2$specifiedType(object.isDefault, C.FullType_MtR), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new D.DocumentEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._document_model$_name = t1; break; case "hash": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._hash = t1; break; case "type": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._type = t1; break; case "url": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._url = t1; break; case "width": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._document_model$_width = t1; break; case "height": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._document_model$_height = t1; break; case "size": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._size = t1; break; case "preview": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._preview = t1; break; case "is_default": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_document_model$_$this()._isDefault = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_document_model$_$this()._document_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._document_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._document_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_model$_$this()._document_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_document_model$_$this()._document_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._document_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._document_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_model$_$this()._document_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_iDT; }, get$wireName: function() { return "DocumentEntity"; } }; D._$DocumentListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.DocumentListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._document_model$__hashCode; return t1 == null ? this._document_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.DocumentListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._document_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._document_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._document_model$_$v = null; } t1 = _this._document_model$_data; return t1 == null ? _this._document_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "DocumentListResponse", _$result = null; try { _$result0 = _this._document_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$DocumentListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._document_model$_$v = t1; return _$result; } }; D._$DocumentItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.DocumentItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._document_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._document_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.DocumentItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._document_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new D.DocumentEntityBuilder(); t2._document_model$_$v = t1; _this._document_model$_data = t2; _this._document_model$_$v = null; } t1 = _this._document_model$_data; return t1 == null ? _this._document_model$_data = new D.DocumentEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._document_model$_$v; if (_$result0 == null) _$result0 = new D._$DocumentItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("DocumentItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._document_model$_$v = t1; return _$result; } }; D._$DocumentEntity.prototype = { rebuild$1: function(updates) { var t1 = new D.DocumentEntityBuilder(); t1._document_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.DocumentEntity && _this.name === other.name && _this.hash === other.hash && _this.type === other.type && _this.url === other.url && _this.width === other.width && _this.height === other.height && _this.size === other.size && _this.preview === other.preview && _this.isDefault === other.isDefault && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._document_model$__hashCode; return t1 == null ? _this._document_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.hash)), C.JSString_methods.get$hashCode(_this.type)), C.JSString_methods.get$hashCode(_this.url)), C.JSInt_methods.get$hashCode(_this.width)), C.JSInt_methods.get$hashCode(_this.height)), C.JSInt_methods.get$hashCode(_this.size)), C.JSString_methods.get$hashCode(_this.preview)), C.JSBool_methods.get$hashCode(_this.isDefault)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "hash", _this.hash); t2.add$2(t1, "type", _this.type); t2.add$2(t1, "url", _this.url); t2.add$2(t1, "width", _this.width); t2.add$2(t1, "height", _this.height); t2.add$2(t1, "size", _this.size); t2.add$2(t1, "preview", _this.preview); t2.add$2(t1, "isDefault", _this.isDefault); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; D.DocumentEntityBuilder.prototype = { get$name: function(_) { return this.get$_document_model$_$this()._document_model$_name; }, set$width: function(_, width) { this.get$_document_model$_$this()._document_model$_width = width; }, set$height: function(_, height) { this.get$_document_model$_$this()._document_model$_height = height; }, get$id: function(_) { return this.get$_document_model$_$this()._document_model$_id; }, get$_document_model$_$this: function() { var _this = this, $$v = _this._document_model$_$v; if ($$v != null) { _this._document_model$_name = $$v.name; _this._hash = $$v.hash; _this._type = $$v.type; _this._url = $$v.url; _this._document_model$_width = $$v.width; _this._document_model$_height = $$v.height; _this._size = $$v.size; _this._preview = $$v.preview; _this._isDefault = $$v.isDefault; _this._document_model$_isChanged = $$v.isChanged; _this._document_model$_createdAt = $$v.createdAt; _this._document_model$_updatedAt = $$v.updatedAt; _this._document_model$_archivedAt = $$v.archivedAt; _this._document_model$_isDeleted = $$v.isDeleted; _this._document_model$_createdUserId = $$v.createdUserId; _this._document_model$_assignedUserId = $$v.assignedUserId; _this._document_model$_id = $$v.id; _this._document_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, _s14_ = "DocumentEntity", _$result = _this._document_model$_$v; if (_$result == null) { t1 = _this.get$_document_model$_$this()._document_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_document_model$_$this()._hash; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "hash")); t3 = _this.get$_document_model$_$this()._type; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "type")); t4 = _this.get$_document_model$_$this()._url; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "url")); t5 = _this.get$_document_model$_$this()._document_model$_width; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "width")); t6 = _this.get$_document_model$_$this()._document_model$_height; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "height")); t7 = _this.get$_document_model$_$this()._size; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "size")); t8 = _this.get$_document_model$_$this()._preview; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "preview")); t9 = _this.get$_document_model$_$this()._isDefault; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "isDefault")); t10 = _this.get$_document_model$_$this()._document_model$_isChanged; t11 = _this.get$_document_model$_$this()._document_model$_createdAt; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "createdAt")); t12 = _this.get$_document_model$_$this()._document_model$_updatedAt; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "updatedAt")); t13 = _this.get$_document_model$_$this()._document_model$_archivedAt; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "archivedAt")); t14 = _this.get$_document_model$_$this()._document_model$_isDeleted; t15 = _this.get$_document_model$_$this()._document_model$_createdUserId; t16 = _this.get$_document_model$_$this()._document_model$_assignedUserId; t17 = _this.get$_document_model$_$this()._document_model$_id; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "id")); _$result = D._$DocumentEntity$_(t13, t16, t11, t15, t2, t6, t17, t10, t9, t14, t1, t8, t7, t3, t12, t4, t5); } return _this._document_model$_$v = _$result; } }; D._DocumentEntity_Object_BaseEntity.prototype = {}; D._DocumentEntity_Object_BaseEntity_SelectableEntity.prototype = {}; T.EntityType.prototype = { get$plural: function() { if (this === C.EntityType_expenseCategory) return "expenseCategories"; else if (this === C.EntityType_taskStatus) return "taskStatuses"; return this.name + "s"; }, get$isSetting: function() { return C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_paymentTerm, C.EntityType_taxRate, C.EntityType_companyGateway, C.EntityType_user, C.EntityType_group, C.EntityType_design, C.EntityType_token, C.EntityType_webhook, C.EntityType_expenseCategory, C.EntityType_taskStatus, C.EntityType_subscription], type$.JSArray_legacy_EntityType), this); }, get$relatedTypes: function() { var t1 = type$.JSArray_legacy_EntityType; switch (this) { case C.EntityType_client: return H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_task, C.EntityType_expense, C.EntityType_payment, C.EntityType_quote, C.EntityType_credit, C.EntityType_project, C.EntityType_recurringInvoice, C.EntityType_recurringExpense], t1); case C.EntityType_invoice: return H.setRuntimeTypeInfo([C.EntityType_payment], t1); case C.EntityType_recurringInvoice: return H.setRuntimeTypeInfo([C.EntityType_invoice], t1); case C.EntityType_payment: return H.setRuntimeTypeInfo([C.EntityType_invoice], t1); case C.EntityType_project: return H.setRuntimeTypeInfo([C.EntityType_task, C.EntityType_expense], t1); case C.EntityType_group: return H.setRuntimeTypeInfo([C.EntityType_client, C.EntityType_invoice, C.EntityType_quote, C.EntityType_credit, C.EntityType_task, C.EntityType_project, C.EntityType_expense, C.EntityType_recurringInvoice], t1); case C.EntityType_user: return H.setRuntimeTypeInfo([C.EntityType_client, C.EntityType_invoice, C.EntityType_quote, C.EntityType_credit, C.EntityType_task, C.EntityType_project, C.EntityType_expense, C.EntityType_vendor, C.EntityType_recurringInvoice, C.EntityType_recurringExpense], t1); case C.EntityType_companyGateway: return H.setRuntimeTypeInfo([C.EntityType_client, C.EntityType_payment], t1); case C.EntityType_vendor: return H.setRuntimeTypeInfo([C.EntityType_expense, C.EntityType_recurringExpense], t1); case C.EntityType_task: return H.setRuntimeTypeInfo([C.EntityType_project], t1); case C.EntityType_expense: return H.setRuntimeTypeInfo([C.EntityType_vendor, C.EntityType_project, C.EntityType_expenseCategory], t1); case C.EntityType_expenseCategory: return H.setRuntimeTypeInfo([C.EntityType_expense], t1); case C.EntityType_recurringExpense: return H.setRuntimeTypeInfo([C.EntityType_expense], t1); case C.EntityType_design: return H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_quote, C.EntityType_credit, C.EntityType_recurringInvoice], t1); default: return H.setRuntimeTypeInfo([], t1); } }, get$baseType: function() { var t1 = type$.JSArray_legacy_EntityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_credit, C.EntityType_quote, C.EntityType_recurringInvoice], t1), this)) return C.EntityType_invoice; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t1), this)) return C.EntityType_expense; return this; } }; T.EntityState.prototype = {}; T.EmailTemplate.prototype = {}; T.UserPermission.prototype = {}; T.EntityStatus.prototype = {}; T.EntityStats.prototype = { present$2: function(activeLabel, archivedLabel) { var str, t1 = this.countActive; if (t1 > 0) { str = "" + t1 + " " + activeLabel; if (this.countArchived > 0) str += " \u2022 "; } else str = ""; t1 = this.countArchived; return t1 > 0 ? str + ("" + t1 + " " + archivedLabel) : str; } }; T.SelectableEntity.prototype = { matchesFilter$1: function(filter) { return true; }, matchesFilterValue$1: function(filter) { return null; }, get$listDisplayName: function() { return "Error: listDisplayName not set"; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; } }; T.BaseEntity.prototype = { get$isNew: function() { var _this = this, t1 = _this.get$id(_this); if (t1.length !== 0) { t1 = H.Primitives_parseInt(_this.get$id(_this), null); t1 = (t1 == null ? 0 : t1) < 0; } else t1 = true; return t1; }, get$isArchived: function() { var t1, _this = this; _this.get$archivedAt(); t1 = _this.get$archivedAt() > 0 && !_this.get$isDeleted(_this); return t1; }, get$isEditable: function() { return !this.get$isDeleted(this); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var t1, _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (userCompany.canEditEntity$1(_this)) t1 = _this.get$isArchived() || _this.get$isDeleted(_this); else t1 = false; if (t1) actions.push(C.EntityAction_restore); if (userCompany.canEditEntity$1(_this) && !_this.get$isArchived() && !_this.get$isDeleted(_this)) actions.push(C.EntityAction_archive); if (userCompany.canEditEntity$1(_this)) t1 = !_this.get$isArchived() && !_this.get$isDeleted(_this) || _this.get$isArchived(); else t1 = false; if (t1) actions.push(C.EntityAction_delete); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, matchesStates$1: function(states) { var _this = this, t1 = states._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) return true; if (t2.contains$1(t1, C.EntityState_active) && !_this.get$isArchived() && !_this.get$isDeleted(_this)) return true; if (t2.contains$1(t1, C.EntityState_archived) && _this.get$isArchived()) return true; if (t2.contains$1(t1, C.EntityState_deleted) && _this.get$isDeleted(_this)) return true; return false; }, $isSelectableEntity: 1 }; T.BelongsToClient.prototype = {}; T.LoginResponse.prototype = {}; T.ActivityEntity.prototype = { get$entityType: function() { var t1 = type$.JSArray_legacy_String, t2 = this.activityTypeId; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["1", "61", "2", "3", "26"], t1), t2)) return C.EntityType_client; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["4", "5", "6", "7", "8", "9", "25", "53", "58", "59", "63", "64", "65", "66", "57"], t1), t2)) return C.EntityType_invoice; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["10", "11", "12", "13", "27", "41", "54"], t1), t2)) return C.EntityType_payment; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["14", "15", "16", "17", "28", "39", "40", "60"], t1), t2)) return C.EntityType_credit; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["18", "19", "20", "21", "22", "23", "24", "29"], t1), t2)) return C.EntityType_quote; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["30", "31", "62", "32", "33"], t1), t2)) return C.EntityType_vendor; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["34", "35", "36", "37", "47"], t1), t2)) return C.EntityType_expense; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["42", "43", "44", "45", "46"], t1), t2)) return C.EntityType_task; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["48", "49", "50", "51", "52"], t1), t2)) return C.EntityType_user; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["80", "81", "82", "83", "84"], t1), t2)) return C.EntityType_subscription; else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["100", "101", "102", "103", "104"], t1), t2)) return C.EntityType_recurringInvoice; else { P.print("## ERROR: failed to resolve entity type - activity_type_id: " + t2); return null; } }, getDescription$12$client$credit$expense$invoice$payment$quote$recurringInvoice$task$user$vendor: function(activity, systemString, client, credit, expense, invoice, payment, quote, recurringInvoice, task, user, vendor) { var t2, contact, t3, t4, _null = null, t1 = client == null; if (!t1) { t2 = this.contactId; t2 = t2 != null && t2.length !== 0; } else t2 = false; contact = t2 ? J.firstWhere$2$orElse$ax(client.contacts._list, new T.ActivityEntity_getDescription_closure(this), new T.ActivityEntity_getDescription_closure0()) : _null; t2 = user == null; if (t2) t3 = _null; else t3 = user.get$fullName().length !== 0 ? user.get$fullName() : user.email; activity = J.replaceFirst$2$s(activity, ":user", t3 == null ? systemString : t3); t3 = t1 ? _null : client.displayName; activity = C.JSString_methods.replaceFirst$2(activity, ":client", t3 == null ? "" : t3); t3 = invoice == null; t4 = t3 ? _null : invoice.number; activity = C.JSString_methods.replaceFirst$2(activity, ":invoice", t4 == null ? "" : t4); t3 = t3 ? _null : invoice.number; activity = C.JSString_methods.replaceFirst$2(activity, ":recurring_invoice", t3 == null ? "" : t3); t3 = quote == null ? _null : quote.number; activity = C.JSString_methods.replaceFirst$2(activity, ":quote", t3 == null ? "" : t3); t3 = contact == null ? _null : contact.get$fullName(); if (t3 == null) t1 = t1 ? _null : client.displayName; else t1 = t3; if (t1 == null) t1 = t2 ? _null : user.get$fullName(); activity = C.JSString_methods.replaceFirst$2(activity, ":contact", t1 == null ? "" : t1); if (payment == null) t1 = _null; else { t1 = payment.transactionReference; t1 = t1.length !== 0 ? t1 : payment.number; } activity = C.JSString_methods.replaceFirst$2(activity, ":payment", t1 == null ? "" : t1); t1 = credit == null ? _null : credit.privateNotes; activity = C.JSString_methods.replaceFirst$2(activity, ":credit", t1 == null ? "" : t1); t1 = task == null ? _null : task.description; activity = C.JSString_methods.replaceFirst$2(activity, ":task", t1 == null ? "" : t1); t1 = expense == null ? _null : expense.privateNotes; activity = C.JSString_methods.replaceFirst$2(activity, ":expense", t1 == null ? "" : t1); t1 = vendor == null ? _null : vendor.name; activity = C.JSString_methods.replaceFirst$2(activity, ":vendor", t1 == null ? "" : t1); return H.stringReplaceAllUnchecked(activity, " ", " "); } }; T.ActivityEntity_getDescription_closure.prototype = { call$1: function(contact) { return contact.id === this.$this.contactId; }, $signature: 156 }; T.ActivityEntity_getDescription_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; T.LedgerEntity.prototype = { get$entityType: function() { if (this.creditId != null) return C.EntityType_credit; else if (this.paymentId != null) return C.EntityType_payment; else return C.EntityType_invoice; }, get$entityId: function() { var t1 = this.creditId; if (t1 != null) return t1; else { t1 = this.paymentId; if (t1 != null) return t1; else return this.invoiceId; } } }; T._$EntityTypeSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return T._$typeValueOf(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_EntityType_6qb; }, get$wireName: function() { return "EntityType"; } }; T._$EntityStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return T._$valueOf(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_EntityState_NQk; }, get$wireName: function() { return "EntityState"; } }; T._$EmailTemplateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return T._$templateValueOf(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_EmailTemplate_GAI; }, get$wireName: function() { return "EmailTemplate"; } }; T._$LoginResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.userCompanies, C.FullType_89t), "static", serializers.serialize$2$specifiedType(object.$static, C.FullType_Met)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new T.LoginResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_StaticDataEntity, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_UserCompanyEntity, t4 = type$.ListBuilder_legacy_UserCompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": t5 = result.get$_entities$_$this(); t6 = t5._userCompanies; if (t6 == null) { t6 = new D.ListBuilder(t4); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t5._userCompanies = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_89t)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "static": t5 = result.get$_entities$_$this(); t6 = t5._static; t5 = t6 == null ? t5._static = new S.StaticDataEntityBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Met)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._static_data_model$_$v = t6; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_K9P; }, get$wireName: function() { return "LoginResponse"; } }; T._$ActivityEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["notes", serializers.serialize$2$specifiedType(object.notes, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.key, C.FullType_h8g), "activity_type_id", serializers.serialize$2$specifiedType(object.activityTypeId, C.FullType_h8g), "user_id", serializers.serialize$2$specifiedType(object.userId, C.FullType_h8g), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.clientId; if (value != null) { result.push("client_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringInvoiceId; if (value != null) { result.push("recurring_invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.quoteId; if (value != null) { result.push("quote_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.paymentId; if (value != null) { result.push("payment_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.expenseId; if (value != null) { result.push("expense_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.isSystem; if (value != null) { result.push("is_system"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.ip; if (value != null) { result.push("ip"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.contactId; if (value != null) { result.push("contact_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.taskId; if (value != null) { result.push("task_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.projectId; if (value != null) { result.push("project_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.vendorId; if (value != null) { result.push("vendor_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.tokenId; if (value != null) { result.push("token_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.history; if (value != null) { result.push("history"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_bLp)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new T.ActivityEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceHistoryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "notes": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_notes = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_key = t2; break; case "activity_type_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._activityTypeId = t2; break; case "client_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_clientId = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_userId = t2; break; case "invoice_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_invoiceId = t2; break; case "recurring_invoice_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._recurringInvoiceId = t2; break; case "quote_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._quoteId = t2; break; case "payment_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._paymentId = t2; break; case "credit_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_creditId = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_entities$_$this()._entities$_updatedAt = t2; break; case "expense_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_expenseId = t2; break; case "is_system": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_entities$_$this()._entities$_isSystem = t2; break; case "ip": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._ip = t2; break; case "contact_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_contactId = t2; break; case "task_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_taskId = t2; break; case "project_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_projectId = t2; break; case "vendor_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_vendorId = t2; break; case "token_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._tokenId = t2; break; case "history": t2 = result.get$_entities$_$this(); t3 = t2._entities$_history; t2 = t3 == null ? t2._entities$_history = new Q.InvoiceHistoryEntityBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_bLp)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._invoice_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uPE; }, get$wireName: function() { return "ActivityEntity"; } }; T._$LedgerEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["notes", serializers.serialize$2$specifiedType(object.notes, C.FullType_h8g), "balance", serializers.serialize$2$specifiedType(object.balance, C.FullType_MME), "adjustment", serializers.serialize$2$specifiedType(object.adjustment, C.FullType_MME), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.paymentId; if (value != null) { result.push("payment_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, _$result, t2, t3, t4, _s12_ = "LedgerEntity", result = new T.LedgerEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "notes": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_notes = t1; break; case "balance": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_entities$_$this()._entities$_balance = t1; break; case "adjustment": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_entities$_$this()._adjustment = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_entities$_$this()._entities$_createdAt = t1; break; case "invoice_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_invoiceId = t1; break; case "credit_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._entities$_creditId = t1; break; case "payment_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_entities$_$this()._paymentId = t1; break; } } _$result = result._entities$_$v; if (_$result == null) { t1 = result.get$_entities$_$this()._entities$_notes; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "notes")); t2 = result.get$_entities$_$this()._entities$_balance; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "balance")); t3 = result.get$_entities$_$this()._adjustment; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "adjustment")); t4 = result.get$_entities$_$this()._entities$_createdAt; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "createdAt")); _$result = new T._$LedgerEntity(t1, t2, t3, t4, result.get$_entities$_$this()._entities$_invoiceId, result.get$_entities$_$this()._entities$_creditId, result.get$_entities$_$this()._paymentId); } return result._entities$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_P7V; }, get$wireName: function() { return "LedgerEntity"; } }; T._$LoginResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof T.LoginResponse && J.$eq$(this.userCompanies, other.userCompanies) && J.$eq$(this.$static, other.$static); }, get$hashCode: function(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.userCompanies)), J.get$hashCode$(_this.$static))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LoginResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "userCompanies", this.userCompanies); t2.add$2(t1, "static", this.$static); return t2.toString$0(t1); } }; T.LoginResponseBuilder.prototype = { get$userCompanies: function() { var t1 = this.get$_entities$_$this(), t2 = t1._userCompanies; return t2 == null ? t1._userCompanies = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserCompanyEntity) : t2; }, get$$static: function() { var t1 = this.get$_entities$_$this(), t2 = t1._static; return t2 == null ? t1._static = new S.StaticDataEntityBuilder() : t2; }, get$_entities$_$this: function() { var t1, t2, _this = this, $$v = _this._entities$_$v; if ($$v != null) { t1 = $$v.userCompanies; t1.toString; _this._userCompanies = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.$static; t1.toString; t2 = new S.StaticDataEntityBuilder(); t2._static_data_model$_$v = t1; _this._static = t2; _this._entities$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s13_ = "LoginResponse", _$result = null; try { _$result0 = _this._entities$_$v; if (_$result0 == null) { t1 = _this.get$userCompanies().build$0(0); t2 = _this.get$$static().build$0(0); _$result0 = new T._$LoginResponse(t1, t2); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "userCompanies")); if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "static")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "userCompanies"; _this.get$userCompanies().build$0(0); _$failedField = "static"; _this.get$$static().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._entities$_$v = t1; return _$result; } }; T._$ActivityEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.ActivityEntity && _this.notes === other.notes && _this.key === other.key && _this.activityTypeId === other.activityTypeId && _this.clientId == other.clientId && _this.userId === other.userId && _this.invoiceId == other.invoiceId && _this.recurringInvoiceId == other.recurringInvoiceId && _this.quoteId == other.quoteId && _this.paymentId == other.paymentId && _this.creditId == other.creditId && _this.updatedAt === other.updatedAt && _this.expenseId == other.expenseId && _this.isSystem == other.isSystem && _this.ip == other.ip && _this.contactId == other.contactId && _this.taskId == other.taskId && _this.projectId == other.projectId && _this.vendorId == other.vendorId && _this.tokenId == other.tokenId && J.$eq$(_this.history, other.history); }, get$hashCode: function(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.notes)), C.JSString_methods.get$hashCode(_this.key)), C.JSString_methods.get$hashCode(_this.activityTypeId)), J.get$hashCode$(_this.clientId)), C.JSString_methods.get$hashCode(_this.userId)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.recurringInvoiceId)), J.get$hashCode$(_this.quoteId)), J.get$hashCode$(_this.paymentId)), J.get$hashCode$(_this.creditId)), C.JSInt_methods.get$hashCode(_this.updatedAt)), J.get$hashCode$(_this.expenseId)), J.get$hashCode$(_this.isSystem)), J.get$hashCode$(_this.ip)), J.get$hashCode$(_this.contactId)), J.get$hashCode$(_this.taskId)), J.get$hashCode$(_this.projectId)), J.get$hashCode$(_this.vendorId)), J.get$hashCode$(_this.tokenId)), J.get$hashCode$(_this.history))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ActivityEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "key", _this.key); t2.add$2(t1, "activityTypeId", _this.activityTypeId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "userId", _this.userId); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "recurringInvoiceId", _this.recurringInvoiceId); t2.add$2(t1, "quoteId", _this.quoteId); t2.add$2(t1, "paymentId", _this.paymentId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "expenseId", _this.expenseId); t2.add$2(t1, "isSystem", _this.isSystem); t2.add$2(t1, "ip", _this.ip); t2.add$2(t1, "contactId", _this.contactId); t2.add$2(t1, "taskId", _this.taskId); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "tokenId", _this.tokenId); t2.add$2(t1, "history", _this.history); return t2.toString$0(t1); }, get$tokenId: function() { return this.tokenId; } }; T.ActivityEntityBuilder.prototype = { get$tokenId: function() { return this.get$_entities$_$this()._tokenId; }, get$_entities$_$this: function() { var t1, t2, _this = this, $$v = _this._entities$_$v; if ($$v != null) { _this._entities$_notes = $$v.notes; _this._entities$_key = $$v.key; _this._activityTypeId = $$v.activityTypeId; _this._entities$_clientId = $$v.clientId; _this._entities$_userId = $$v.userId; _this._entities$_invoiceId = $$v.invoiceId; _this._recurringInvoiceId = $$v.recurringInvoiceId; _this._quoteId = $$v.quoteId; _this._paymentId = $$v.paymentId; _this._entities$_creditId = $$v.creditId; _this._entities$_updatedAt = $$v.updatedAt; _this._entities$_expenseId = $$v.expenseId; _this._entities$_isSystem = $$v.isSystem; _this._ip = $$v.ip; _this._entities$_contactId = $$v.contactId; _this._entities$_taskId = $$v.taskId; _this._entities$_projectId = $$v.projectId; _this._entities$_vendorId = $$v.vendorId; _this._tokenId = $$v.tokenId; t1 = $$v.history; if (t1 == null) t1 = null; else { t2 = new Q.InvoiceHistoryEntityBuilder(); t2._invoice_model$_$v = t1; t1 = t2; } _this._entities$_history = t1; _this._entities$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, exception, _this = this, _s14_ = "ActivityEntity", _$result = null; try { _$result0 = _this._entities$_$v; if (_$result0 == null) { t1 = _this.get$_entities$_$this()._entities$_notes; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "notes")); t2 = _this.get$_entities$_$this()._entities$_key; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "key")); t3 = _this.get$_entities$_$this()._activityTypeId; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "activityTypeId")); t4 = _this.get$_entities$_$this()._entities$_clientId; t5 = _this.get$_entities$_$this()._entities$_userId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "userId")); t6 = _this.get$_entities$_$this()._entities$_invoiceId; t7 = _this.get$_entities$_$this()._recurringInvoiceId; t8 = _this.get$_entities$_$this()._quoteId; t9 = _this.get$_entities$_$this()._paymentId; t10 = _this.get$_entities$_$this()._entities$_creditId; t11 = _this.get$_entities$_$this()._entities$_updatedAt; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "updatedAt")); t12 = _this.get$_entities$_$this()._entities$_expenseId; t13 = _this.get$_entities$_$this()._entities$_isSystem; t14 = _this.get$_entities$_$this()._ip; t15 = _this.get$_entities$_$this()._entities$_contactId; t16 = _this.get$_entities$_$this()._entities$_taskId; t17 = _this.get$_entities$_$this()._entities$_projectId; t18 = _this.get$_entities$_$this()._entities$_vendorId; t19 = _this.get$_entities$_$this()._tokenId; t20 = _this._entities$_history; _$result0 = new T._$ActivityEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20 == null ? null : t20.build$0(0)); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "history"; t1 = _this._entities$_history; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._entities$_$v = t1; return _$result; } }; T._$LedgerEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.LedgerEntity && _this.notes === other.notes && _this.balance === other.balance && _this.adjustment === other.adjustment && _this.createdAt === other.createdAt && _this.invoiceId == other.invoiceId && _this.creditId == other.creditId && _this.paymentId == other.paymentId; }, get$hashCode: function(_) { var _this = this, t1 = _this._entities$__hashCode; return t1 == null ? _this._entities$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.notes)), C.JSNumber_methods.get$hashCode(_this.balance)), C.JSNumber_methods.get$hashCode(_this.adjustment)), C.JSInt_methods.get$hashCode(_this.createdAt)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.creditId)), J.get$hashCode$(_this.paymentId))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("LedgerEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "adjustment", _this.adjustment); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "paymentId", _this.paymentId); return t2.toString$0(t1); } }; T.LedgerEntityBuilder.prototype = { get$_entities$_$this: function() { var _this = this, $$v = _this._entities$_$v; if ($$v != null) { _this._entities$_notes = $$v.notes; _this._entities$_balance = $$v.balance; _this._adjustment = $$v.adjustment; _this._entities$_createdAt = $$v.createdAt; _this._entities$_invoiceId = $$v.invoiceId; _this._entities$_creditId = $$v.creditId; _this._paymentId = $$v.paymentId; _this._entities$_$v = null; } return _this; } }; R.ExpenseCategoryListResponse.prototype = {}; R.ExpenseCategoryItemResponse.prototype = {}; R.ExpenseCategoryEntity.prototype = { get$entityType: function() { return C.EntityType_expenseCategory; }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); } C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, compareTo$3$expenseCategory$sortAscending$sortField: function(_, expenseCategory, sortAscending, sortField) { var response, categoryA = sortAscending ? this : expenseCategory, categoryB = sortAscending ? expenseCategory : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(categoryA.name.toLowerCase(), categoryB.name.toLowerCase()); break; default: P.print("## ERROR: sort by expoense_category." + sortField + " is not implemented"); response = 0; break; } return response; } }; R._$ExpenseCategoryListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_8cq)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new R.ExpenseCategoryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ExpenseCategoryEntity, t3 = type$.ListBuilder_legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_category_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._expense_category_model$_data = t6; result._expense_category_model$_$v = null; } t4 = result._expense_category_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._expense_category_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_8cq)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_vnU0; }, get$wireName: function() { return "ExpenseCategoryListResponse"; } }; R._$ExpenseCategoryItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_M6L)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new R.ExpenseCategoryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_category_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new R.ExpenseCategoryEntityBuilder(); t3.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t3._expense_category_model$_$v = t2; result._expense_category_model$_data = t3; result._expense_category_model$_$v = null; } t2 = result._expense_category_model$_data; if (t2 == null) { t2 = new R.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; result._expense_category_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_M6L)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._expense_category_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_vnU; }, get$wireName: function() { return "ExpenseCategoryItemResponse"; } }; R._$ExpenseCategoryEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new R.ExpenseCategoryEntityBuilder(); result.get$_expense_category_model$_$this()._expense_category_model$_color = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_name = t1; break; case "color": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_color = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_category_model$_$this()._expense_category_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_category_model$_$this()._expense_category_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_category_model$_$this()._expense_category_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_model$_$this()._expense_category_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_QoN; }, get$wireName: function() { return "ExpenseCategoryEntity"; } }; R._$ExpenseCategoryListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof R.ExpenseCategoryListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._expense_category_model$__hashCode; return t1 == null ? this._expense_category_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; R.ExpenseCategoryListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._expense_category_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_category_model$_$v = null; } t1 = _this._expense_category_model$_data; return t1 == null ? _this._expense_category_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseCategoryEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s27_ = "ExpenseCategoryListResponse", _$result = null; try { _$result0 = _this._expense_category_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new R._$ExpenseCategoryListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s27_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s27_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_category_model$_$v = t1; return _$result; } }; R._$ExpenseCategoryItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof R.ExpenseCategoryItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._expense_category_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._expense_category_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; R.ExpenseCategoryItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new R.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t2._expense_category_model$_$v = t1; _this._expense_category_model$_data = t2; _this._expense_category_model$_$v = null; } t1 = _this._expense_category_model$_data; if (t1 == null) { t1 = new R.ExpenseCategoryEntityBuilder(); t1.get$_expense_category_model$_$this()._expense_category_model$_color = ""; _this._expense_category_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._expense_category_model$_$v; if (_$result0 == null) _$result0 = new R._$ExpenseCategoryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ExpenseCategoryItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_category_model$_$v = t1; return _$result; } }; R._$ExpenseCategoryEntity.prototype = { rebuild$1: function(updates) { var t1 = new R.ExpenseCategoryEntityBuilder(); t1.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t1._expense_category_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof R.ExpenseCategoryEntity && _this.name === other.name && _this.color === other.color && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_category_model$__hashCode; return t1 == null ? _this._expense_category_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.color)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; R.ExpenseCategoryEntityBuilder.prototype = { get$name: function(_) { return this.get$_expense_category_model$_$this()._expense_category_model$_name; }, get$id: function(_) { return this.get$_expense_category_model$_$this()._expense_category_model$_id; }, get$_expense_category_model$_$this: function() { var _this = this, $$v = _this._expense_category_model$_$v; if ($$v != null) { _this._expense_category_model$_name = $$v.name; _this._expense_category_model$_color = $$v.color; _this._expense_category_model$_isChanged = $$v.isChanged; _this._expense_category_model$_createdAt = $$v.createdAt; _this._expense_category_model$_updatedAt = $$v.updatedAt; _this._expense_category_model$_archivedAt = $$v.archivedAt; _this._expense_category_model$_isDeleted = $$v.isDeleted; _this._expense_category_model$_createdUserId = $$v.createdUserId; _this._expense_category_model$_assignedUserId = $$v.assignedUserId; _this._expense_category_model$_id = $$v.id; _this._expense_category_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s21_ = "ExpenseCategoryEntity", _$result = _this._expense_category_model$_$v; if (_$result == null) { t1 = _this.get$_expense_category_model$_$this()._expense_category_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "name")); t2 = _this.get$_expense_category_model$_$this()._expense_category_model$_color; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "color")); t3 = _this.get$_expense_category_model$_$this()._expense_category_model$_isChanged; t4 = _this.get$_expense_category_model$_$this()._expense_category_model$_createdAt; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "createdAt")); t5 = _this.get$_expense_category_model$_$this()._expense_category_model$_updatedAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "updatedAt")); t6 = _this.get$_expense_category_model$_$this()._expense_category_model$_archivedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "archivedAt")); t7 = _this.get$_expense_category_model$_$this()._expense_category_model$_isDeleted; t8 = _this.get$_expense_category_model$_$this()._expense_category_model$_createdUserId; t9 = _this.get$_expense_category_model$_$this()._expense_category_model$_assignedUserId; t10 = _this.get$_expense_category_model$_$this()._expense_category_model$_id; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "id")); _$result = R._$ExpenseCategoryEntity$_(t6, t9, t2, t4, t8, t10, t3, t7, t1, t5); } return _this._expense_category_model$_$v = _$result; } }; R._ExpenseCategoryEntity_Object_BaseEntity.prototype = {}; R._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity.prototype = {}; M.ExpenseListResponse.prototype = {}; M.ExpenseItemResponse.prototype = {}; M.ExpenseEntity.prototype = { get$clone: function(_) { return this.rebuild$1(new M.ExpenseEntity_clone_closure()); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var t1, t2, t3, _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted) { if (includeEdit && !multiselect && userCompany.canEditEntity$1(_this) && true) actions.push(C.EntityAction_edit); t1 = type$.JSArray_legacy_EntityType; t2 = _this.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t1), t2)) if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t1), t2) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["1", "3"], type$.JSArray_legacy_String), _this.get$calculatedStatusId())) actions.push(C.EntityAction_start); else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t1), t2) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["-1", "2"], type$.JSArray_legacy_String), _this.get$calculatedStatusId())) actions.push(C.EntityAction_stop); t3 = _this.invoiceId; if (!(t3 != null && t3.length !== 0) && !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t1), t2) && userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) actions.push(C.EntityAction_invoiceExpense); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_expense) && !multiselect && !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) actions.push(C.EntityAction_cloneToExpense); if (userCompany.can$2(C.UserPermission_create, C.EntityType_recurringExpense) && !multiselect) actions.push(C.EntityAction_cloneToRecurring); if (userCompany.can$2(C.UserPermission_create, C.EntityType_expense) && !multiselect && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) actions.push(C.EntityAction_cloneToExpense); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany: function(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, compareTo$9: function(_, expense, sortField, sortAscending, clientMap, userMap, vendorMap, invoiceMap, expenseCategoryMap, staticState) { var response, t1, t2, t3, userA, userB, clientA, clientB, vendorA, vendorB, stateA, stateB, currencyMap, currencyA, currencyB, categoryA, categoryB, invoiceA, invoiceB, _null = null, _s8_ = "archived", expenseA = sortAscending ? this : expense, expenseB = sortAscending ? expense : this; switch (sortField) { case "net_amount": response = C.JSNumber_methods.compareTo$1(expenseA.get$netAmount(), expenseB.get$netAmount()); break; case "amount": response = C.JSNumber_methods.compareTo$1(expenseA.amount, expenseB.amount); break; case "assigned_to": t1 = expenseA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, expenseB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = expenseA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, expenseB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "client_id": case "client": t1 = expenseA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, expenseB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "vendor_id": case "vendor": t1 = expenseA.vendorId; t2 = vendorMap._map$_map; t3 = J.getInterceptor$asx(t2); vendorA = t3.$index(t2, t1); if (vendorA == null) vendorA = B.VendorEntity_VendorEntity(_null, _null, _null); vendorB = t3.$index(t2, expenseB.vendorId); if (vendorB == null) vendorB = B.VendorEntity_VendorEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(vendorA.name.toLowerCase(), vendorB.name.toLowerCase()); break; case "entity_state": if (!expenseA.get$isArchived() && !expenseA.isDeleted) t1 = "active"; else t1 = expenseA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!expenseB.get$isArchived() && !expenseB.isDeleted) t1 = "active"; else t1 = expenseB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "public_notes": response = C.JSString_methods.compareTo$1(expenseA.publicNotes.toLowerCase(), expenseB.publicNotes.toLowerCase()); break; case "date": response = C.JSString_methods.compareTo$1(expenseA.date.toLowerCase(), expenseB.date.toLowerCase()); break; case "payment_date": response = C.JSString_methods.compareTo$1(expenseA.paymentDate.toLowerCase(), expenseB.paymentDate.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(expenseA.createdAt, expenseB.createdAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(expenseA.updatedAt, expenseB.updatedAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(expenseA.archivedAt, expenseB.archivedAt); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(expenseA.documents._list), J.get$length$asx(expenseB.documents._list)); break; case "number": response = K.compareNatural(expenseA.number.toLowerCase(), expenseB.number.toLowerCase()); break; case "private_notes": response = C.JSString_methods.compareTo$1(expenseA.privateNotes, expenseB.privateNotes); break; case "transaction_id": response = C.JSString_methods.compareTo$1(expenseA.transactionId, expenseB.transactionId); break; case "transaction_reference": response = C.JSString_methods.compareTo$1(expenseA.transactionReference, expenseB.transactionReference); break; case "bank_id": response = C.JSString_methods.compareTo$1(expenseA.bankId, expenseB.bankId); break; case "currency_id": currencyMap = staticState.currencyMap; t1 = expenseA.currencyId; t2 = currencyMap._map$_map; t3 = J.getInterceptor$asx(t2); currencyA = t3.$index(t2, t1); if (currencyA == null) currencyA = O.CurrencyEntity_CurrencyEntity(); currencyB = t3.$index(t2, expenseB.currencyId); if (currencyB == null) currencyB = O.CurrencyEntity_CurrencyEntity(); response = C.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "category_id": case "category": t1 = expenseA.categoryId; t2 = expenseCategoryMap._map$_map; t3 = J.getInterceptor$asx(t2); categoryA = t3.$index(t2, t1); if (categoryA == null) categoryA = R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); categoryB = t3.$index(t2, expenseB.categoryId); if (categoryB == null) categoryB = R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); response = C.JSString_methods.compareTo$1(categoryA.name.toLowerCase(), categoryB.name.toLowerCase()); break; case "exchange_rate": response = C.JSNumber_methods.compareTo$1(expenseA.exchangeRate, expenseB.exchangeRate); break; case "invoice_currency_id": currencyMap = staticState.currencyMap; t1 = expenseA.invoiceCurrencyId; t2 = currencyMap._map$_map; t3 = J.getInterceptor$asx(t2); currencyA = t3.$index(t2, t1); if (currencyA == null) currencyA = O.CurrencyEntity_CurrencyEntity(); currencyB = t3.$index(t2, expenseB.invoiceCurrencyId); if (currencyB == null) currencyB = O.CurrencyEntity_CurrencyEntity(); response = C.JSString_methods.compareTo$1(currencyA.name.toLowerCase(), currencyB.name.toLowerCase()); break; case "tax_name1": response = C.JSString_methods.compareTo$1(expenseA.taxName1, expenseB.taxName1); break; case "tax_name2": response = C.JSString_methods.compareTo$1(expenseA.taxName2, expenseB.taxName2); break; case "tax_rate1": response = C.JSNumber_methods.compareTo$1(expenseA.taxRate1, expenseB.taxRate1); break; case "tax_rate2": response = C.JSNumber_methods.compareTo$1(expenseA.taxRate2, expenseB.taxRate2); break; case "invoice_id": t1 = expenseA.invoiceId; t2 = invoiceMap._map$_map; t3 = J.getInterceptor$asx(t2); invoiceA = t3.$index(t2, t1); if (invoiceA == null) invoiceA = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); invoiceB = t3.$index(t2, expenseB.invoiceId); if (invoiceB == null) invoiceB = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); response = C.JSString_methods.compareTo$1(invoiceA.number, invoiceB.number); break; case "custom1": response = C.JSString_methods.compareTo$1(expenseA.customValue1, expenseB.customValue1); break; case "custom2": response = C.JSString_methods.compareTo$1(expenseA.customValue2, expenseB.customValue2); break; case "custom3": response = C.JSString_methods.compareTo$1(expenseA.customValue3, expenseB.customValue3); break; case "custom4": response = C.JSString_methods.compareTo$1(expenseA.customValue4, expenseB.customValue4); break; case "frequency": response = C.JSString_methods.compareTo$1(expenseA.frequencyId, expenseB.frequencyId); break; case "next_send_date": response = J.compareTo$1$ns(expenseA.nextSendDate, expenseB.nextSendDate); break; default: P.print("## ERROR: sort by expense." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(expense.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.number, _this.publicNotes, _this.privateNotes, _this.transactionReference, _this.taxName1, _this.taxName2, _this.taxName3, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.number, _this.publicNotes, _this.privateNotes, _this.transactionReference, _this.taxName1, _this.taxName2, _this.taxName3, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesStatuses$1: function(statuses) { var t3, t4, t1 = statuses._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) return true; for (t1 = t2.get$iterator(t1), t2 = this.invoiceId, t3 = t2 != null; t1.moveNext$0();) { t4 = t1.get$current(t1); if (t4.get$id(t4) === "3" && t3 && t2.length !== 0) return true; else if (t4.get$id(t4) === "2" && this.get$isPending()) return true; else { if (t4.get$id(t4) === "1") t4 = !(t3 && t2.length !== 0) && !this.get$isPending(); else t4 = false; if (t4) return true; } } return false; }, get$listDisplayName: function() { return this.number; }, get$isStale: function() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, get$calculatetaxRate1: function() { var t1, t2, _this = this; if (_this.calculateTaxByAmount === true) { t1 = _this.taxAmount1; t2 = _this.amount; if (_this.usesInclusiveTaxes) return t1 / (t2 - t1) * 100; else return t1 / t2 * 100; } else return _this.taxRate1; }, get$taxAmount: function() { var total, t1, t2, _this = this; if (_this.calculateTaxByAmount === true) total = 0 + (_this.taxAmount1 + _this.taxAmount2 + _this.taxAmount3); else if (_this.usesInclusiveTaxes) { t1 = _this.taxRate1; if (t1 !== 0) { t2 = _this.amount; total = 0 + (t2 - t2 / (1 + t1 / 100)); } else total = 0; t1 = _this.taxRate2; if (t1 !== 0) { t2 = _this.amount; total += t2 - t2 / (1 + t1 / 100); } t1 = _this.taxRate3; if (t1 !== 0) { t2 = _this.amount; total += t2 - t2 / (1 + t1 / 100); } } else { t1 = _this.taxRate1; total = t1 !== 0 ? 0 + _this.amount * t1 / 100 : 0; t1 = _this.taxRate2; if (t1 !== 0) total += _this.amount * t1 / 100; t1 = _this.taxRate3; if (t1 !== 0) total += _this.amount * t1 / 100; } return total; }, get$netAmount: function() { var t1 = this.amount; return this.usesInclusiveTaxes ? t1 - this.get$taxAmount() : t1; }, get$grossAmount: function() { var t1 = this.amount; return this.usesInclusiveTaxes ? t1 : t1 + this.get$taxAmount(); }, get$calculatedStatusId: function() { var t1, _this = this; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) if (_this.get$isPending()) return "-1"; else return _this.statusId; else { t1 = _this.invoiceId; if (t1 != null && t1.length !== 0) return "3"; else if (_this.shouldBeInvoiced) return "2"; else return "1"; } }, get$isPending: function() { var t1, _this = this; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), _this.entityType)) return _this.statusId === "-1"; else { t1 = _this.invoiceId; return !(t1 != null && t1.length !== 0) && _this.shouldBeInvoiced; } } }; M.ExpenseEntity_clone_closure.prototype = { call$1: function(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_expense_model$_$this()._expense_model$_id = t1; b.get$_expense_model$_$this()._expense_model$_number = ""; b.get$_expense_model$_$this()._expense_model$_isChanged = false; b.get$_expense_model$_$this()._expense_model$_isDeleted = false; b.get$_expense_model$_$this()._expense_model$_invoiceId = null; t1 = Y.convertDateTimeToSqlDate(null); b.get$_expense_model$_$this()._expense_model$_date = t1; J.clear$0$ax(b.get$documents().get$_safeList()); b.get$_expense_model$_$this()._expense_model$_transactionReference = ""; b.get$_expense_model$_$this()._paymentTypeId = ""; b.get$_expense_model$_$this()._paymentDate = ""; return b; }, $signature: 23 }; M.ExpenseScheduleEntity.prototype = {}; M.ExpenseStatusEntity.prototype = { get$listDisplayName: function() { return this.name; } }; M._$ExpenseListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_0vR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new M.ExpenseListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ExpenseEntity, t3 = type$.ListBuilder_legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._expense_model$_data = t6; result._expense_model$_$v = null; } t4 = result._expense_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._expense_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_0vR)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2nm; }, get$wireName: function() { return "ExpenseListResponse"; } }; M._$ExpenseItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_UcG)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new M.ExpenseItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._expense_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new M.ExpenseEntityBuilder(); t3.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; t3.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t3.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t3.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t3.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._expense_model$_$v = t2; result._expense_model$_data = t3; result._expense_model$_$v = null; } t2 = result._expense_model$_data; if (t2 == null) { t2 = new M.ExpenseEntityBuilder(); t2.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; t2.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t2.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t2.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t2.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; result._expense_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_UcG)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._expense_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_iEE; }, get$wireName: function() { return "ExpenseItemResponse"; } }; M._$ExpenseEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, C.FullType_h8g), "should_be_invoiced", serializers.serialize$2$specifiedType(object.shouldBeInvoiced, C.FullType_MtR), "invoice_documents", serializers.serialize$2$specifiedType(object.invoiceDocuments, C.FullType_MtR), "transaction_id", serializers.serialize$2$specifiedType(object.transactionId, C.FullType_h8g), "transaction_reference", serializers.serialize$2$specifiedType(object.transactionReference, C.FullType_h8g), "bank_id", serializers.serialize$2$specifiedType(object.bankId, C.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, C.FullType_h8g), "category_id", serializers.serialize$2$specifiedType(object.categoryId, C.FullType_h8g), "amount", serializers.serialize$2$specifiedType(object.amount, C.FullType_MME), "payment_date", serializers.serialize$2$specifiedType(object.paymentDate, C.FullType_h8g), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, C.FullType_MME), "invoice_currency_id", serializers.serialize$2$specifiedType(object.invoiceCurrencyId, C.FullType_h8g), "payment_type_id", serializers.serialize$2$specifiedType(object.paymentTypeId, C.FullType_h8g), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, C.FullType_h8g), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, C.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, C.FullType_MME), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, C.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, C.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, C.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "tax_amount1", serializers.serialize$2$specifiedType(object.taxAmount1, C.FullType_MME), "tax_amount2", serializers.serialize$2$specifiedType(object.taxAmount2, C.FullType_MME), "tax_amount3", serializers.serialize$2$specifiedType(object.taxAmount3, C.FullType_MME), "uses_inclusive_taxes", serializers.serialize$2$specifiedType(object.usesInclusiveTaxes, C.FullType_MtR), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "frequency_id", serializers.serialize$2$specifiedType(object.frequencyId, C.FullType_h8g), "last_sent_date", serializers.serialize$2$specifiedType(object.lastSentDate, C.FullType_h8g), "next_send_date", serializers.serialize$2$specifiedType(object.nextSendDate, C.FullType_h8g), "remaining_cycles", serializers.serialize$2$specifiedType(object.remainingCycles, C.FullType_kjq), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.date; if (value != null) { result.push("date"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientId; if (value != null) { result.push("client_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.vendorId; if (value != null) { result.push("vendor_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.projectId; if (value != null) { result.push("project_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.statusId; if (value != null) { result.push("status_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.calculateTaxByAmount; if (value != null) { result.push("calculate_tax_by_amount"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.recurringId; if (value != null) { result.push("recurring_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringDates; if (value != null) { result.push("recurring_dates"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_aXU)); } value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_qBb)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, key, value, t7, t8, t9, result = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_ExpenseScheduleEntity, t4 = type$.ListBuilder_legacy_ExpenseScheduleEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "private_notes": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_privateNotes = t7; break; case "public_notes": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_publicNotes = t7; break; case "should_be_invoiced": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._shouldBeInvoiced = t7; break; case "invoice_documents": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._invoiceDocuments = t7; break; case "transaction_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._transactionId = t7; break; case "transaction_reference": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_transactionReference = t7; break; case "bank_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._bankId = t7; break; case "currency_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_currencyId = t7; break; case "category_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._categoryId = t7; break; case "amount": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_amount = t7; break; case "date": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_date = t7; break; case "payment_date": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._paymentDate = t7; break; case "exchange_rate": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_exchangeRate = t7; break; case "invoice_currency_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._invoiceCurrencyId = t7; break; case "payment_type_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._paymentTypeId = t7; break; case "tax_name1": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName1 = t7; break; case "tax_name2": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName2 = t7; break; case "tax_rate1": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate1 = t7; break; case "tax_rate2": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate2 = t7; break; case "tax_name3": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_taxName3 = t7; break; case "tax_rate3": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._expense_model$_taxRate3 = t7; break; case "client_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_clientId = t7; break; case "invoice_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_invoiceId = t7; break; case "vendor_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_vendorId = t7; break; case "project_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_projectId = t7; break; case "status_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_statusId = t7; break; case "custom_value1": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue1 = t7; break; case "custom_value2": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue2 = t7; break; case "custom_value3": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue3 = t7; break; case "custom_value4": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_customValue4 = t7; break; case "tax_amount1": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._taxAmount1 = t7; break; case "tax_amount2": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._taxAmount2 = t7; break; case "tax_amount3": t7 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_expense_model$_$this()._taxAmount3 = t7; break; case "uses_inclusive_taxes": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes = t7; break; case "calculate_tax_by_amount": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._calculateTaxByAmount = t7; break; case "documents": t7 = result.get$_expense_model$_$this(); t8 = t7._expense_model$_documents; if (t8 == null) { t8 = new D.ListBuilder(t6); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t7._expense_model$_documents = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } break; case "number": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_number = t7; break; case "recurring_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_recurringId = t7; break; case "frequency_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_frequencyId = t7; break; case "last_sent_date": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_lastSentDate = t7; break; case "next_send_date": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_nextSendDate = t7; break; case "remaining_cycles": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_remainingCycles = t7; break; case "recurring_dates": t7 = result.get$_expense_model$_$this(); t8 = t7._expense_model$_recurringDates; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._expense_model$_recurringDates = t8; t7 = t8; } else t7 = t8; t8 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_aXU)); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } break; case "loadedAt": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_loadedAt = t7; break; case "isChanged": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_isChanged = t7; break; case "created_at": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_createdAt = t7; break; case "updated_at": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_updatedAt = t7; break; case "archived_at": t7 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_model$_$this()._expense_model$_archivedAt = t7; break; case "is_deleted": t7 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_model$_$this()._expense_model$_isDeleted = t7; break; case "user_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_createdUserId = t7; break; case "assigned_user_id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_assignedUserId = t7; break; case "entity_type": t7 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_expense_model$_$this()._expense_model$_entityType = t7; break; case "id": t7 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_model$_$this()._expense_model$_id = t7; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_iFM; }, get$wireName: function() { return "ExpenseEntity"; } }; M._$ExpenseScheduleEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["send_date", serializers.serialize$2$specifiedType(object.sendDate, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, result = new M.ExpenseScheduleEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "send_date": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_sendDate = $$v.sendDate; result._expense_model$_$v = null; } result._expense_model$_sendDate = t1; break; } } _$result = result._expense_model$_$v; if (_$result == null) { t1 = result.get$_expense_model$_$this()._expense_model$_sendDate; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$("ExpenseScheduleEntity", "sendDate")); _$result = new M._$ExpenseScheduleEntity(t1); } return result._expense_model$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2Z6; }, get$wireName: function() { return "ExpenseScheduleEntity"; } }; M._$ExpenseStatusEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new M.ExpenseStatusEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_id = $$v.id; result._expense_model$_name = $$v.name; result._expense_model$_$v = null; } result._expense_model$_id = t1; break; case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._expense_model$_$v; if ($$v != null) { result._expense_model$_id = $$v.id; result._expense_model$_name = $$v.name; result._expense_model$_$v = null; } result._expense_model$_name = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_23h; }, get$wireName: function() { return "ExpenseStatusEntity"; } }; M._$ExpenseListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.ExpenseListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; M.ExpenseListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._expense_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_$v = null; } t1 = _this._expense_model$_data; return t1 == null ? _this._expense_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ExpenseListResponse", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new M._$ExpenseListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_model$_$v = t1; return _$result; } }; M._$ExpenseItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.ExpenseItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; M.ExpenseItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t2); t2._expense_model$_$v = t1; _this._expense_model$_data = t2; _this._expense_model$_$v = null; } t1 = _this._expense_model$_data; if (t1 == null) { t1 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t1); _this._expense_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ExpenseItemResponse", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new M._$ExpenseItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_model$_$v = t1; return _$result; } }; M._$ExpenseEntity.prototype = { rebuild$1: function(updates) { var t1 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t1); t1._expense_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof M.ExpenseEntity && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.shouldBeInvoiced === other.shouldBeInvoiced && _this.invoiceDocuments === other.invoiceDocuments && _this.transactionId === other.transactionId && _this.transactionReference === other.transactionReference && _this.bankId === other.bankId && _this.currencyId === other.currencyId && _this.categoryId === other.categoryId && _this.amount === other.amount && _this.date == other.date && _this.paymentDate == other.paymentDate && _this.exchangeRate === other.exchangeRate && _this.invoiceCurrencyId == other.invoiceCurrencyId && _this.paymentTypeId === other.paymentTypeId && _this.taxName1 === other.taxName1 && _this.taxName2 === other.taxName2 && _this.taxRate1 === other.taxRate1 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.clientId == other.clientId && _this.invoiceId == other.invoiceId && _this.vendorId == other.vendorId && _this.projectId == other.projectId && _this.statusId == other.statusId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.taxAmount1 === other.taxAmount1 && _this.taxAmount2 === other.taxAmount2 && _this.taxAmount3 === other.taxAmount3 && _this.usesInclusiveTaxes === other.usesInclusiveTaxes && _this.calculateTaxByAmount == other.calculateTaxByAmount && J.$eq$(_this.documents, other.documents) && _this.number === other.number && _this.recurringId == other.recurringId && _this.frequencyId === other.frequencyId && _this.lastSentDate === other.lastSentDate && _this.nextSendDate == other.nextSendDate && _this.remainingCycles === other.remainingCycles && J.$eq$(_this.recurringDates, other.recurringDates) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_model$__hashCode; return t1 == null ? _this._expense_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.publicNotes)), C.JSBool_methods.get$hashCode(_this.shouldBeInvoiced)), C.JSBool_methods.get$hashCode(_this.invoiceDocuments)), C.JSString_methods.get$hashCode(_this.transactionId)), C.JSString_methods.get$hashCode(_this.transactionReference)), C.JSString_methods.get$hashCode(_this.bankId)), C.JSString_methods.get$hashCode(_this.currencyId)), C.JSString_methods.get$hashCode(_this.categoryId)), C.JSNumber_methods.get$hashCode(_this.amount)), J.get$hashCode$(_this.date)), J.get$hashCode$(_this.paymentDate)), C.JSNumber_methods.get$hashCode(_this.exchangeRate)), J.get$hashCode$(_this.invoiceCurrencyId)), C.JSString_methods.get$hashCode(_this.paymentTypeId)), C.JSString_methods.get$hashCode(_this.taxName1)), C.JSString_methods.get$hashCode(_this.taxName2)), C.JSNumber_methods.get$hashCode(_this.taxRate1)), C.JSNumber_methods.get$hashCode(_this.taxRate2)), C.JSString_methods.get$hashCode(_this.taxName3)), C.JSNumber_methods.get$hashCode(_this.taxRate3)), J.get$hashCode$(_this.clientId)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.vendorId)), J.get$hashCode$(_this.projectId)), J.get$hashCode$(_this.statusId)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSNumber_methods.get$hashCode(_this.taxAmount1)), C.JSNumber_methods.get$hashCode(_this.taxAmount2)), C.JSNumber_methods.get$hashCode(_this.taxAmount3)), C.JSBool_methods.get$hashCode(_this.usesInclusiveTaxes)), J.get$hashCode$(_this.calculateTaxByAmount)), J.get$hashCode$(_this.documents)), C.JSString_methods.get$hashCode(_this.number)), J.get$hashCode$(_this.recurringId)), C.JSString_methods.get$hashCode(_this.frequencyId)), C.JSString_methods.get$hashCode(_this.lastSentDate)), J.get$hashCode$(_this.nextSendDate)), C.JSInt_methods.get$hashCode(_this.remainingCycles)), J.get$hashCode$(_this.recurringDates)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "shouldBeInvoiced", _this.shouldBeInvoiced); t2.add$2(t1, "invoiceDocuments", _this.invoiceDocuments); t2.add$2(t1, "transactionId", _this.transactionId); t2.add$2(t1, "transactionReference", _this.transactionReference); t2.add$2(t1, "bankId", _this.bankId); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "categoryId", _this.categoryId); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "paymentDate", _this.paymentDate); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "invoiceCurrencyId", _this.invoiceCurrencyId); t2.add$2(t1, "paymentTypeId", _this.paymentTypeId); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "taxAmount1", _this.taxAmount1); t2.add$2(t1, "taxAmount2", _this.taxAmount2); t2.add$2(t1, "taxAmount3", _this.taxAmount3); t2.add$2(t1, "usesInclusiveTaxes", _this.usesInclusiveTaxes); t2.add$2(t1, "calculateTaxByAmount", _this.calculateTaxByAmount); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "recurringId", _this.recurringId); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "lastSentDate", _this.lastSentDate); t2.add$2(t1, "nextSendDate", _this.nextSendDate); t2.add$2(t1, "remainingCycles", _this.remainingCycles); t2.add$2(t1, "recurringDates", _this.recurringDates); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount: function() { return this.amount; }, get$date: function() { return this.date; }, get$clientId: function(receiver) { return this.clientId; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$entityType: function() { return this.entityType; }, get$id: function(receiver) { return this.id; } }; M.ExpenseEntityBuilder.prototype = { get$amount: function() { return this.get$_expense_model$_$this()._expense_model$_amount; }, get$date: function() { return this.get$_expense_model$_$this()._expense_model$_date; }, get$documents: function() { var t1 = this.get$_expense_model$_$this(), t2 = t1._expense_model$_documents; return t2 == null ? t1._expense_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_expense_model$_$this()._expense_model$_id; }, get$_expense_model$_$this: function() { var t1, _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_privateNotes = $$v.privateNotes; _this._expense_model$_publicNotes = $$v.publicNotes; _this._shouldBeInvoiced = $$v.shouldBeInvoiced; _this._invoiceDocuments = $$v.invoiceDocuments; _this._transactionId = $$v.transactionId; _this._expense_model$_transactionReference = $$v.transactionReference; _this._bankId = $$v.bankId; _this._expense_model$_currencyId = $$v.currencyId; _this._categoryId = $$v.categoryId; _this._expense_model$_amount = $$v.amount; _this._expense_model$_date = $$v.date; _this._paymentDate = $$v.paymentDate; _this._expense_model$_exchangeRate = $$v.exchangeRate; _this._invoiceCurrencyId = $$v.invoiceCurrencyId; _this._paymentTypeId = $$v.paymentTypeId; _this._expense_model$_taxName1 = $$v.taxName1; _this._expense_model$_taxName2 = $$v.taxName2; _this._expense_model$_taxRate1 = $$v.taxRate1; _this._expense_model$_taxRate2 = $$v.taxRate2; _this._expense_model$_taxName3 = $$v.taxName3; _this._expense_model$_taxRate3 = $$v.taxRate3; _this._expense_model$_clientId = $$v.clientId; _this._expense_model$_invoiceId = $$v.invoiceId; _this._expense_model$_vendorId = $$v.vendorId; _this._expense_model$_projectId = $$v.projectId; _this._expense_model$_statusId = $$v.statusId; _this._expense_model$_customValue1 = $$v.customValue1; _this._expense_model$_customValue2 = $$v.customValue2; _this._expense_model$_customValue3 = $$v.customValue3; _this._expense_model$_customValue4 = $$v.customValue4; _this._taxAmount1 = $$v.taxAmount1; _this._taxAmount2 = $$v.taxAmount2; _this._taxAmount3 = $$v.taxAmount3; _this._expense_model$_usesInclusiveTaxes = $$v.usesInclusiveTaxes; _this._calculateTaxByAmount = $$v.calculateTaxByAmount; t1 = $$v.documents; t1.toString; _this._expense_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_number = $$v.number; _this._expense_model$_recurringId = $$v.recurringId; _this._expense_model$_frequencyId = $$v.frequencyId; _this._expense_model$_lastSentDate = $$v.lastSentDate; _this._expense_model$_nextSendDate = $$v.nextSendDate; _this._expense_model$_remainingCycles = $$v.remainingCycles; t1 = $$v.recurringDates; _this._expense_model$_recurringDates = t1 == null ? null : D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._expense_model$_loadedAt = $$v.loadedAt; _this._expense_model$_isChanged = $$v.isChanged; _this._expense_model$_createdAt = $$v.createdAt; _this._expense_model$_updatedAt = $$v.updatedAt; _this._expense_model$_archivedAt = $$v.archivedAt; _this._expense_model$_isDeleted = $$v.isDeleted; _this._expense_model$_createdUserId = $$v.createdUserId; _this._expense_model$_assignedUserId = $$v.assignedUserId; _this._expense_model$_entityType = $$v.entityType; _this._expense_model$_id = $$v.id; _this._expense_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, exception, _this = this, _s13_ = "ExpenseEntity", _$result = null; try { _$result0 = _this._expense_model$_$v; if (_$result0 == null) { t1 = _this.get$_expense_model$_$this()._expense_model$_privateNotes; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "privateNotes")); t2 = _this.get$_expense_model$_$this()._expense_model$_publicNotes; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "publicNotes")); t3 = _this.get$_expense_model$_$this()._shouldBeInvoiced; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "shouldBeInvoiced")); t4 = _this.get$_expense_model$_$this()._invoiceDocuments; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceDocuments")); t5 = _this.get$_expense_model$_$this()._transactionId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "transactionId")); t6 = _this.get$_expense_model$_$this()._expense_model$_transactionReference; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "transactionReference")); t7 = _this.get$_expense_model$_$this()._bankId; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "bankId")); t8 = _this.get$_expense_model$_$this()._expense_model$_currencyId; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "currencyId")); t9 = _this.get$_expense_model$_$this()._categoryId; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "categoryId")); t10 = _this.get$_expense_model$_$this()._expense_model$_amount; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "amount")); t11 = _this.get$_expense_model$_$this()._expense_model$_date; t12 = _this.get$_expense_model$_$this()._paymentDate; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paymentDate")); t13 = _this.get$_expense_model$_$this()._expense_model$_exchangeRate; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t14 = _this.get$_expense_model$_$this()._invoiceCurrencyId; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invoiceCurrencyId")); t15 = _this.get$_expense_model$_$this()._paymentTypeId; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paymentTypeId")); t16 = _this.get$_expense_model$_$this()._expense_model$_taxName1; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName1")); t17 = _this.get$_expense_model$_$this()._expense_model$_taxName2; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName2")); t18 = _this.get$_expense_model$_$this()._expense_model$_taxRate1; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate1")); t19 = _this.get$_expense_model$_$this()._expense_model$_taxRate2; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate2")); t20 = _this.get$_expense_model$_$this()._expense_model$_taxName3; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName3")); t21 = _this.get$_expense_model$_$this()._expense_model$_taxRate3; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate3")); t22 = _this.get$_expense_model$_$this()._expense_model$_clientId; t23 = _this.get$_expense_model$_$this()._expense_model$_invoiceId; t24 = _this.get$_expense_model$_$this()._expense_model$_vendorId; t25 = _this.get$_expense_model$_$this()._expense_model$_projectId; t26 = _this.get$_expense_model$_$this()._expense_model$_statusId; t27 = _this.get$_expense_model$_$this()._expense_model$_customValue1; if (t27 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t28 = _this.get$_expense_model$_$this()._expense_model$_customValue2; if (t28 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t29 = _this.get$_expense_model$_$this()._expense_model$_customValue3; if (t29 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t30 = _this.get$_expense_model$_$this()._expense_model$_customValue4; if (t30 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t31 = _this.get$_expense_model$_$this()._taxAmount1; if (t31 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxAmount1")); t32 = _this.get$_expense_model$_$this()._taxAmount2; if (t32 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxAmount2")); t33 = _this.get$_expense_model$_$this()._taxAmount3; if (t33 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxAmount3")); t34 = _this.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes; if (t34 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "usesInclusiveTaxes")); t35 = _this.get$_expense_model$_$this()._calculateTaxByAmount; t36 = _this.get$documents().build$0(0); t37 = _this.get$_expense_model$_$this()._expense_model$_number; if (t37 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "number")); t38 = _this.get$_expense_model$_$this()._expense_model$_recurringId; t39 = _this.get$_expense_model$_$this()._expense_model$_frequencyId; if (t39 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "frequencyId")); t40 = _this.get$_expense_model$_$this()._expense_model$_lastSentDate; if (t40 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "lastSentDate")); t41 = _this.get$_expense_model$_$this()._expense_model$_nextSendDate; if (t41 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "nextSendDate")); t42 = _this.get$_expense_model$_$this()._expense_model$_remainingCycles; if (t42 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "remainingCycles")); t43 = _this._expense_model$_recurringDates; t43 = t43 == null ? null : t43.build$0(0); t44 = _this.get$_expense_model$_$this()._expense_model$_loadedAt; t45 = _this.get$_expense_model$_$this()._expense_model$_isChanged; t46 = _this.get$_expense_model$_$this()._expense_model$_createdAt; if (t46 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t47 = _this.get$_expense_model$_$this()._expense_model$_updatedAt; if (t47 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t48 = _this.get$_expense_model$_$this()._expense_model$_archivedAt; if (t48 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t49 = _this.get$_expense_model$_$this()._expense_model$_isDeleted; t50 = _this.get$_expense_model$_$this()._expense_model$_createdUserId; t51 = _this.get$_expense_model$_$this()._expense_model$_assignedUserId; t52 = _this.get$_expense_model$_$this()._expense_model$_entityType; t53 = _this.get$_expense_model$_$this()._expense_model$_id; if (t53 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = M._$ExpenseEntity$_(t10, t48, t51, t7, t35, t9, t22, t46, t50, t8, t27, t28, t29, t30, t11, t36, t52, t13, t39, t53, t14, t4, t23, t45, t49, t40, t44, t41, t37, t12, t15, t1, t25, t2, t43, t38, t42, t3, t26, t31, t32, t33, t16, t17, t20, t18, t19, t21, t5, t6, t47, t34, t24); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "recurringDates"; t1 = _this._expense_model$_recurringDates; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_model$_$v = t1; return _$result; } }; M._$ExpenseScheduleEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.ExpenseScheduleEntity && this.sendDate === other.sendDate; }, get$hashCode: function(_) { var t1 = this._expense_model$__hashCode; return t1 == null ? this._expense_model$__hashCode = Y.$jf(Y.$jc(0, C.JSString_methods.get$hashCode(this.sendDate))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseScheduleEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sendDate", this.sendDate); return t2.toString$0(t1); } }; M.ExpenseScheduleEntityBuilder.prototype = { get$_expense_model$_$this: function() { var _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_sendDate = $$v.sendDate; _this._expense_model$_$v = null; } return _this; } }; M._$ExpenseStatusEntity.prototype = { rebuild$1: function(updates) { var t1 = new M.ExpenseStatusEntityBuilder(); t1._expense_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.ExpenseStatusEntity && this.id === other.id && this.name === other.name; }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_model$__hashCode; return t1 == null ? _this._expense_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.name))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "name", this.name); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; }, get$name: function(receiver) { return this.name; } }; M.ExpenseStatusEntityBuilder.prototype = { get$id: function(_) { return this.get$_expense_model$_$this()._expense_model$_id; }, get$name: function(_) { return this.get$_expense_model$_$this()._expense_model$_name; }, get$_expense_model$_$this: function() { var _this = this, $$v = _this._expense_model$_$v; if ($$v != null) { _this._expense_model$_id = $$v.id; _this._expense_model$_name = $$v.name; _this._expense_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s19_ = "ExpenseStatusEntity", _$result = _this._expense_model$_$v; if (_$result == null) { t1 = _this.get$_expense_model$_$this()._expense_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "id")); t2 = _this.get$_expense_model$_$this()._expense_model$_name; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "name")); _$result = M._$ExpenseStatusEntity$_(t1, t2); } return _this._expense_model$_$v = _$result; } }; M._ExpenseEntity_Object_BaseEntity.prototype = {}; M._ExpenseEntity_Object_BaseEntity_SelectableEntity.prototype = {}; M._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; M._ExpenseStatusEntity_Object_EntityStatus.prototype = {}; M._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity.prototype = {}; N.GatewayTokenListResponse.prototype = {}; N.GatewayTokenItemResponse.prototype = {}; N.GatewayTokenEntity.prototype = { get$entityType: function() { return C.EntityType_gatewayToken; }, get$listDisplayName: function() { return this.customerReference; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.customerReference], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.customerReference], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; N.GatewayTokenMetaEntity.prototype = {}; N._$GatewayTokenListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_kr3)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new N.GatewayTokenListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_GatewayTokenEntity, t3 = type$.ListBuilder_legacy_GatewayTokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._gateway_token_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._gateway_token_model$_data = t6; result._gateway_token_model$_$v = null; } t4 = result._gateway_token_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._gateway_token_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_kr3)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_qNu; }, get$wireName: function() { return "GatewayTokenListResponse"; } }; N._$GatewayTokenItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_C0V)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new N.GatewayTokenItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GatewayTokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._gateway_token_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new N.GatewayTokenEntityBuilder(); t3._gateway_token_model$_$v = t2; result._gateway_token_model$_data = t3; result._gateway_token_model$_$v = null; } t2 = result._gateway_token_model$_data; if (t2 == null) t2 = result._gateway_token_model$_data = new N.GatewayTokenEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_C0V)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._gateway_token_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yK7; }, get$wireName: function() { return "GatewayTokenItemResponse"; } }; N._$GatewayTokenEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["token", serializers.serialize$2$specifiedType(object.token, C.FullType_h8g), "gateway_customer_reference", serializers.serialize$2$specifiedType(object.customerReference, C.FullType_h8g), "company_gateway_id", serializers.serialize$2$specifiedType(object.companyGatewayId, C.FullType_h8g), "gateway_type_id", serializers.serialize$2$specifiedType(object.gatewayTypeId, C.FullType_h8g), "is_default", serializers.serialize$2$specifiedType(object.isDefault, C.FullType_MtR), "meta", serializers.serialize$2$specifiedType(object.meta, C.FullType_e10), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new N.GatewayTokenEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GatewayTokenMetaEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "token": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_token = t2; break; case "gateway_customer_reference": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._customerReference = t2; break; case "company_gateway_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_companyGatewayId = t2; break; case "gateway_type_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gatewayTypeId = t2; break; case "is_default": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isDefault = t2; break; case "meta": t2 = result.get$_gateway_token_model$_$this(); t3 = t2._meta; t2 = t3 == null ? t2._meta = new N.GatewayTokenMetaEntityBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_e10)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._gateway_token_model$_$v = t3; break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_gateway_token_model$_$this()._gateway_token_model$_isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_assignedUserId = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._gateway_token_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Now; }, get$wireName: function() { return "GatewayTokenEntity"; } }; N._$GatewayTokenMetaEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Object), value = object.brand; if (value != null) { result.push("brand"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.last4; if (value != null) { result.push("last4"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.type; if (value != null) { result.push("type"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.expMonth; if (value != null) { result.push("exp_month"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.expYear; if (value != null) { result.push("exp_year"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new N.GatewayTokenMetaEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "brand": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._brand = t1; break; case "last4": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._last4 = t1; break; case "type": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_gateway_token_model$_$this()._gateway_token_model$_type = t1; break; case "exp_month": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._expMonth = t1; break; case "exp_year": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_gateway_token_model$_$this()._expYear = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Ks3; }, get$wireName: function() { return "GatewayTokenMetaEntity"; } }; N._$GatewayTokenListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof N.GatewayTokenListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._gateway_token_model$__hashCode; return t1 == null ? this._gateway_token_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; N.GatewayTokenListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._gateway_token_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._gateway_token_model$_$v = null; } t1 = _this._gateway_token_model$_data; return t1 == null ? _this._gateway_token_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayTokenEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "GatewayTokenListResponse", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new N._$GatewayTokenListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._gateway_token_model$_$v = t1; return _$result; } }; N._$GatewayTokenItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof N.GatewayTokenItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._gateway_token_model$__hashCode; return t1 == null ? this._gateway_token_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; N.GatewayTokenItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new N.GatewayTokenEntityBuilder(); t2._gateway_token_model$_$v = t1; _this._gateway_token_model$_data = t2; _this._gateway_token_model$_$v = null; } t1 = _this._gateway_token_model$_data; return t1 == null ? _this._gateway_token_model$_data = new N.GatewayTokenEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "GatewayTokenItemResponse", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new N._$GatewayTokenItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._gateway_token_model$_$v = t1; return _$result; } }; N._$GatewayTokenEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof N.GatewayTokenEntity && _this.token === other.token && _this.customerReference === other.customerReference && _this.companyGatewayId === other.companyGatewayId && _this.gatewayTypeId === other.gatewayTypeId && _this.isDefault === other.isDefault && _this.meta.$eq(0, other.meta) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._gateway_token_model$__hashCode; if (t1 == null) { t1 = _this.meta; t1 = _this._gateway_token_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.token)), C.JSString_methods.get$hashCode(_this.customerReference)), C.JSString_methods.get$hashCode(_this.companyGatewayId)), C.JSString_methods.get$hashCode(_this.gatewayTypeId)), C.JSBool_methods.get$hashCode(_this.isDefault)), t1.get$hashCode(t1)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))); } return t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "customerReference", _this.customerReference); t2.add$2(t1, "companyGatewayId", _this.companyGatewayId); t2.add$2(t1, "gatewayTypeId", _this.gatewayTypeId); t2.add$2(t1, "isDefault", _this.isDefault); t2.add$2(t1, "meta", _this.meta); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$token: function() { return this.token; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; N.GatewayTokenEntityBuilder.prototype = { get$token: function() { return this.get$_gateway_token_model$_$this()._gateway_token_model$_token; }, get$meta: function() { var t1 = this.get$_gateway_token_model$_$this(), t2 = t1._meta; return t2 == null ? t1._meta = new N.GatewayTokenMetaEntityBuilder() : t2; }, get$id: function(_) { return this.get$_gateway_token_model$_$this()._gateway_token_model$_id; }, get$_gateway_token_model$_$this: function() { var t1, t2, _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { _this._gateway_token_model$_token = $$v.token; _this._customerReference = $$v.customerReference; _this._gateway_token_model$_companyGatewayId = $$v.companyGatewayId; _this._gatewayTypeId = $$v.gatewayTypeId; _this._gateway_token_model$_isDefault = $$v.isDefault; t1 = $$v.meta; t2 = new N.GatewayTokenMetaEntityBuilder(); t2._gateway_token_model$_$v = t1; _this._meta = t2; _this._gateway_token_model$_isChanged = $$v.isChanged; _this._gateway_token_model$_createdAt = $$v.createdAt; _this._gateway_token_model$_updatedAt = $$v.updatedAt; _this._gateway_token_model$_archivedAt = $$v.archivedAt; _this._gateway_token_model$_isDeleted = $$v.isDeleted; _this._gateway_token_model$_createdUserId = $$v.createdUserId; _this._gateway_token_model$_assignedUserId = $$v.assignedUserId; _this._gateway_token_model$_id = $$v.id; _this._gateway_token_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, exception, _this = this, _s18_ = "GatewayTokenEntity", _$result = null; try { _$result0 = _this._gateway_token_model$_$v; if (_$result0 == null) { t1 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_token; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "token")); t2 = _this.get$_gateway_token_model$_$this()._customerReference; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "customerReference")); t3 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_companyGatewayId; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "companyGatewayId")); t4 = _this.get$_gateway_token_model$_$this()._gatewayTypeId; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "gatewayTypeId")); t5 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isDefault; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "isDefault")); t6 = _this.get$meta().build$0(0); t7 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isChanged; t8 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_createdAt; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "createdAt")); t9 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_updatedAt; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "updatedAt")); t10 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_archivedAt; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "archivedAt")); t11 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_isDeleted; t12 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_createdUserId; t13 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_assignedUserId; t14 = _this.get$_gateway_token_model$_$this()._gateway_token_model$_id; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "id")); _$result0 = new N._$GatewayTokenEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "meta"; _this.get$meta().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._gateway_token_model$_$v = t1; return _$result; } }; N._$GatewayTokenMetaEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof N.GatewayTokenMetaEntity && _this.brand == other.brand && _this.last4 == other.last4 && _this.type == other.type && _this.expMonth == other.expMonth && _this.expYear == other.expYear; }, get$hashCode: function(_) { var _this = this, t1 = _this._gateway_token_model$__hashCode; return t1 == null ? _this._gateway_token_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.brand)), J.get$hashCode$(_this.last4)), J.get$hashCode$(_this.type)), J.get$hashCode$(_this.expMonth)), J.get$hashCode$(_this.expYear))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GatewayTokenMetaEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "brand", _this.brand); t2.add$2(t1, "last4", _this.last4); t2.add$2(t1, "type", _this.type); t2.add$2(t1, "expMonth", _this.expMonth); t2.add$2(t1, "expYear", _this.expYear); return t2.toString$0(t1); } }; N.GatewayTokenMetaEntityBuilder.prototype = { get$_gateway_token_model$_$this: function() { var _this = this, $$v = _this._gateway_token_model$_$v; if ($$v != null) { _this._brand = $$v.brand; _this._last4 = $$v.last4; _this._gateway_token_model$_type = $$v.type; _this._expMonth = $$v.expMonth; _this._expYear = $$v.expYear; _this._gateway_token_model$_$v = null; } return _this; }, build$0: function(_) { var _this = this, _$result = _this._gateway_token_model$_$v; if (_$result == null) _$result = new N._$GatewayTokenMetaEntity(_this.get$_gateway_token_model$_$this()._brand, _this.get$_gateway_token_model$_$this()._last4, _this.get$_gateway_token_model$_$this()._gateway_token_model$_type, _this.get$_gateway_token_model$_$this()._expMonth, _this.get$_gateway_token_model$_$this()._expYear); return _this._gateway_token_model$_$v = _$result; } }; N._GatewayTokenEntity_Object_BaseEntity.prototype = {}; N._GatewayTokenEntity_Object_BaseEntity_SelectableEntity.prototype = {}; Q.GroupListResponse.prototype = {}; Q.GroupItemResponse.prototype = {}; Q.GroupEntity.prototype = { get$entityType: function() { return C.EntityType_group; }, get$listDisplayName: function() { return this.name; }, get$hasCurrency: function() { var t1 = this.settings.currencyId; return t1 != null && t1.length !== 0; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_edit); if (userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_settings); if (userCompany.can$2(C.UserPermission_create, C.EntityType_client)) actions.push(C.EntityAction_newClient); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; Q._$GroupListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_EOZ)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new Q.GroupListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_GroupEntity, t3 = type$.ListBuilder_legacy_GroupEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._group_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._group_model$_data = t6; result._group_model$_$v = null; } t4 = result._group_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._group_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EOZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_MUw; }, get$wireName: function() { return "GroupListResponse"; } }; Q._$GroupItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Iiu)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, t8, result = new Q.GroupItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GroupEntity, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._group_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new Q.GroupEntityBuilder(); t6 = t5.get$_group_model$_$this(); t7 = t6._group_model$_documents; if (t7 == null) { t7 = new D.ListBuilder(t3); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t6._group_model$_documents = t7; t6 = t7; } else t6 = t7; t7 = D.BuiltList_BuiltList$from(C.List_empty, t2); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } t5._group_model$_$v = t4; result._group_model$_data = t5; result._group_model$_$v = null; } t4 = result._group_model$_data; if (t4 == null) { t4 = new Q.GroupEntityBuilder(); t5 = t4.get$_group_model$_$this(); t6 = t5._group_model$_documents; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._group_model$_documents = t6; t5 = t6; } else t5 = t6; t6 = D.BuiltList_BuiltList$from(C.List_empty, t2); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } result._group_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iiu)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull("other")); t4._group_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_SLW; }, get$wireName: function() { return "GroupItemResponse"; } }; Q._$GroupEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "settings", serializers.serialize$2$specifiedType(object.settings, C.FullType_Iqz0), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity, t4 = type$.legacy_SettingsEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_group_model$_$this()._group_model$_name = t5; break; case "settings": t5 = result.get$_group_model$_$this(); t6 = t5._group_model$_settings; t5 = t6 == null ? t5._group_model$_settings = new G.SettingsEntityBuilder() : t6; t6 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz0)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._settings_model$_$v = t6; break; case "documents": t5 = result.get$_group_model$_$this(); t6 = t5._group_model$_documents; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._group_model$_documents = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; case "isChanged": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_group_model$_$this()._group_model$_isChanged = t5; break; case "created_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_group_model$_$this()._group_model$_createdAt = t5; break; case "updated_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_group_model$_$this()._group_model$_updatedAt = t5; break; case "archived_at": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_group_model$_$this()._group_model$_archivedAt = t5; break; case "is_deleted": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_group_model$_$this()._group_model$_isDeleted = t5; break; case "user_id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_group_model$_$this()._group_model$_createdUserId = t5; break; case "assigned_user_id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_group_model$_$this()._group_model$_assignedUserId = t5; break; case "id": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_group_model$_$this()._group_model$_id = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wIq; }, get$wireName: function() { return "GroupEntity"; } }; Q._$GroupListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.GroupListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._group_model$__hashCode; return t1 == null ? this._group_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; Q.GroupListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._group_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._group_model$_$v = null; } t1 = _this._group_model$_data; return t1 == null ? _this._group_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GroupEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "GroupListResponse", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new Q._$GroupListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._group_model$_$v = t1; return _$result; } }; Q._$GroupItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.GroupItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._group_model$__hashCode; return t1 == null ? this._group_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; Q.GroupItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t2._group_model$_$v = t1; _this._group_model$_data = t2; _this._group_model$_$v = null; } t1 = _this._group_model$_data; if (t1 == null) { t1 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t1); _this._group_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "GroupItemResponse", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new Q._$GroupItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._group_model$_$v = t1; return _$result; } }; Q._$GroupEntity.prototype = { rebuild$1: function(updates) { var t1 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t1); t1._group_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.GroupEntity && _this.name === other.name && J.$eq$(_this.settings, other.settings) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._group_model$__hashCode; return t1 == null ? _this._group_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.settings)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; Q.GroupEntityBuilder.prototype = { get$name: function(_) { return this.get$_group_model$_$this()._group_model$_name; }, get$settings: function() { var t1 = this.get$_group_model$_$this(), t2 = t1._group_model$_settings; return t2 == null ? t1._group_model$_settings = new G.SettingsEntityBuilder() : t2; }, get$documents: function() { var t1 = this.get$_group_model$_$this(), t2 = t1._group_model$_documents; return t2 == null ? t1._group_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_group_model$_$this()._group_model$_id; }, get$_group_model$_$this: function() { var t1, t2, _this = this, $$v = _this._group_model$_$v; if ($$v != null) { _this._group_model$_name = $$v.name; t1 = $$v.settings; t1.toString; t2 = new G.SettingsEntityBuilder(); t2._settings_model$_$v = t1; _this._group_model$_settings = t2; t1 = $$v.documents; t1.toString; _this._group_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._group_model$_isChanged = $$v.isChanged; _this._group_model$_createdAt = $$v.createdAt; _this._group_model$_updatedAt = $$v.updatedAt; _this._group_model$_archivedAt = $$v.archivedAt; _this._group_model$_isDeleted = $$v.isDeleted; _this._group_model$_createdUserId = $$v.createdUserId; _this._group_model$_assignedUserId = $$v.assignedUserId; _this._group_model$_id = $$v.id; _this._group_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _s11_ = "GroupEntity", _$result = null; try { _$result0 = _this._group_model$_$v; if (_$result0 == null) { t1 = _this.get$_group_model$_$this()._group_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "name")); t2 = _this.get$settings().build$0(0); t3 = _this.get$documents().build$0(0); t4 = _this.get$_group_model$_$this()._group_model$_isChanged; t5 = _this.get$_group_model$_$this()._group_model$_createdAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "createdAt")); t6 = _this.get$_group_model$_$this()._group_model$_updatedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "updatedAt")); t7 = _this.get$_group_model$_$this()._group_model$_archivedAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "archivedAt")); t8 = _this.get$_group_model$_$this()._group_model$_isDeleted; t9 = _this.get$_group_model$_$this()._group_model$_createdUserId; t10 = _this.get$_group_model$_$this()._group_model$_assignedUserId; t11 = _this.get$_group_model$_$this()._group_model$_id; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "id")); _$result0 = Q._$GroupEntity$_(t7, t10, t5, t9, t3, t11, t4, t8, t1, t2, t6); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._group_model$_$v = t1; return _$result; } }; Q._GroupEntity_Object_BaseEntity.prototype = {}; Q._GroupEntity_Object_BaseEntity_SelectableEntity.prototype = {}; U.HealthCheckResponse.prototype = {}; U.HealthCheckPHPResponse.prototype = {}; U._$HealthCheckResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["system_health", serializers.serialize$2$specifiedType(object.systemHealth, C.FullType_MtR), "php_version", serializers.serialize$2$specifiedType(object.phpVersion, C.FullType_uRN), "env_writable", serializers.serialize$2$specifiedType(object.envWritable, C.FullType_MtR), "simple_db_check", serializers.serialize$2$specifiedType(object.dbCheck, C.FullType_MtR), "cache_enabled", serializers.serialize$2$specifiedType(object.cacheEnabled, C.FullType_MtR), "phantom_enabled", serializers.serialize$2$specifiedType(object.phantomEnabled, C.FullType_MtR), "open_basedir", serializers.serialize$2$specifiedType(object.openBasedir, C.FullType_MtR), "exec", serializers.serialize$2$specifiedType(object.execEnabled, C.FullType_MtR), "mail_mailer", serializers.serialize$2$specifiedType(object.emailDriver, C.FullType_h8g), "jobs_pending", serializers.serialize$2$specifiedType(object.pendingJobs, C.FullType_kjq), "pdf_engine", serializers.serialize$2$specifiedType(object.pdfEngine, C.FullType_h8g), "trailing_slash", serializers.serialize$2$specifiedType(object.trailingSlash, C.FullType_MtR), "queue", serializers.serialize$2$specifiedType(object.queue, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new U.HealthCheckResponseBuilder(); result.get$_health_check_model$_$this()._trailingSlash = false; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_HealthCheckPHPResponse; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "system_health": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._systemHealth = t2; break; case "php_version": t2 = result.get$_health_check_model$_$this(); t3 = t2._phpVersion; t2 = t3 == null ? t2._phpVersion = new U.HealthCheckPHPResponseBuilder() : t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_uRN)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._health_check_model$_$v = t3; break; case "env_writable": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._envWritable = t2; break; case "simple_db_check": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._dbCheck = t2; break; case "cache_enabled": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._cacheEnabled = t2; break; case "phantom_enabled": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._phantomEnabled = t2; break; case "open_basedir": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._openBasedir = t2; break; case "exec": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._execEnabled = t2; break; case "mail_mailer": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._emailDriver = t2; break; case "jobs_pending": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_health_check_model$_$this()._pendingJobs = t2; break; case "pdf_engine": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._pdfEngine = t2; break; case "trailing_slash": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._trailingSlash = t2; break; case "queue": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._health_check_model$_queue = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_woD; }, get$wireName: function() { return "HealthCheckResponse"; } }; U._$HealthCheckPHPResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["minimum_php_version", serializers.serialize$2$specifiedType(object.minimumPHPVersion, C.FullType_h8g), "current_php_version", serializers.serialize$2$specifiedType(object.currentPHPVersion, C.FullType_h8g), "current_php_cli_version", serializers.serialize$2$specifiedType(object.currentPHPCLIVersion, C.FullType_h8g), "is_okay", serializers.serialize$2$specifiedType(object.isOkay, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new U.HealthCheckPHPResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "minimum_php_version": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._minimumPHPVersion = t1; break; case "current_php_version": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._currentPHPVersion = t1; break; case "current_php_cli_version": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_health_check_model$_$this()._currentPHPCLIVersion = t1; break; case "is_okay": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_health_check_model$_$this()._isOkay = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_JQT; }, get$wireName: function() { return "HealthCheckPHPResponse"; } }; U._$HealthCheckResponse.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof U.HealthCheckResponse && _this.systemHealth === other.systemHealth && _this.phpVersion.$eq(0, other.phpVersion) && _this.envWritable === other.envWritable && _this.dbCheck === other.dbCheck && _this.cacheEnabled === other.cacheEnabled && _this.phantomEnabled === other.phantomEnabled && _this.openBasedir === other.openBasedir && _this.execEnabled === other.execEnabled && _this.emailDriver === other.emailDriver && _this.pendingJobs === other.pendingJobs && _this.pdfEngine === other.pdfEngine && _this.trailingSlash === other.trailingSlash && _this.queue === other.queue; }, get$hashCode: function(_) { var _this = this, t1 = _this._health_check_model$__hashCode; if (t1 == null) { t1 = _this.phpVersion; t1 = _this._health_check_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.systemHealth)), t1.get$hashCode(t1)), C.JSBool_methods.get$hashCode(_this.envWritable)), C.JSBool_methods.get$hashCode(_this.dbCheck)), C.JSBool_methods.get$hashCode(_this.cacheEnabled)), C.JSBool_methods.get$hashCode(_this.phantomEnabled)), C.JSBool_methods.get$hashCode(_this.openBasedir)), C.JSBool_methods.get$hashCode(_this.execEnabled)), C.JSString_methods.get$hashCode(_this.emailDriver)), C.JSInt_methods.get$hashCode(_this.pendingJobs)), C.JSString_methods.get$hashCode(_this.pdfEngine)), C.JSBool_methods.get$hashCode(_this.trailingSlash)), C.JSString_methods.get$hashCode(_this.queue))); } return t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("HealthCheckResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "systemHealth", _this.systemHealth); t2.add$2(t1, "phpVersion", _this.phpVersion); t2.add$2(t1, "envWritable", _this.envWritable); t2.add$2(t1, "dbCheck", _this.dbCheck); t2.add$2(t1, "cacheEnabled", _this.cacheEnabled); t2.add$2(t1, "phantomEnabled", _this.phantomEnabled); t2.add$2(t1, "openBasedir", _this.openBasedir); t2.add$2(t1, "execEnabled", _this.execEnabled); t2.add$2(t1, "emailDriver", _this.emailDriver); t2.add$2(t1, "pendingJobs", _this.pendingJobs); t2.add$2(t1, "pdfEngine", _this.pdfEngine); t2.add$2(t1, "trailingSlash", _this.trailingSlash); t2.add$2(t1, "queue", _this.queue); return t2.toString$0(t1); } }; U.HealthCheckResponseBuilder.prototype = { get$phpVersion: function() { var t1 = this.get$_health_check_model$_$this(), t2 = t1._phpVersion; return t2 == null ? t1._phpVersion = new U.HealthCheckPHPResponseBuilder() : t2; }, get$_health_check_model$_$this: function() { var t1, t2, _this = this, $$v = _this._health_check_model$_$v; if ($$v != null) { _this._systemHealth = $$v.systemHealth; t1 = $$v.phpVersion; t2 = new U.HealthCheckPHPResponseBuilder(); t2._health_check_model$_$v = t1; _this._phpVersion = t2; _this._envWritable = $$v.envWritable; _this._dbCheck = $$v.dbCheck; _this._cacheEnabled = $$v.cacheEnabled; _this._phantomEnabled = $$v.phantomEnabled; _this._openBasedir = $$v.openBasedir; _this._execEnabled = $$v.execEnabled; _this._emailDriver = $$v.emailDriver; _this._pendingJobs = $$v.pendingJobs; _this._pdfEngine = $$v.pdfEngine; _this._trailingSlash = $$v.trailingSlash; _this._health_check_model$_queue = $$v.queue; _this._health_check_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, exception, _this = this, _s19_ = "HealthCheckResponse", _$result = null; try { _$result0 = _this._health_check_model$_$v; if (_$result0 == null) { t1 = _this.get$_health_check_model$_$this()._systemHealth; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "systemHealth")); t2 = _this.get$phpVersion().build$0(0); t3 = _this.get$_health_check_model$_$this()._envWritable; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "envWritable")); t4 = _this.get$_health_check_model$_$this()._dbCheck; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "dbCheck")); t5 = _this.get$_health_check_model$_$this()._cacheEnabled; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "cacheEnabled")); t6 = _this.get$_health_check_model$_$this()._phantomEnabled; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "phantomEnabled")); t7 = _this.get$_health_check_model$_$this()._openBasedir; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "openBasedir")); t8 = _this.get$_health_check_model$_$this()._execEnabled; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "execEnabled")); t9 = _this.get$_health_check_model$_$this()._emailDriver; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "emailDriver")); t10 = _this.get$_health_check_model$_$this()._pendingJobs; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "pendingJobs")); t11 = _this.get$_health_check_model$_$this()._pdfEngine; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "pdfEngine")); t12 = _this.get$_health_check_model$_$this()._trailingSlash; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "trailingSlash")); t13 = _this.get$_health_check_model$_$this()._health_check_model$_queue; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "queue")); _$result0 = new U._$HealthCheckResponse(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "phpVersion"; _this.get$phpVersion().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._health_check_model$_$v = t1; return _$result; } }; U._$HealthCheckPHPResponse.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof U.HealthCheckPHPResponse && _this.minimumPHPVersion === other.minimumPHPVersion && _this.currentPHPVersion === other.currentPHPVersion && _this.currentPHPCLIVersion === other.currentPHPCLIVersion && _this.isOkay === other.isOkay; }, get$hashCode: function(_) { var _this = this, t1 = _this._health_check_model$__hashCode; return t1 == null ? _this._health_check_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.minimumPHPVersion)), C.JSString_methods.get$hashCode(_this.currentPHPVersion)), C.JSString_methods.get$hashCode(_this.currentPHPCLIVersion)), C.JSBool_methods.get$hashCode(_this.isOkay))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("HealthCheckPHPResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "minimumPHPVersion", _this.minimumPHPVersion); t2.add$2(t1, "currentPHPVersion", _this.currentPHPVersion); t2.add$2(t1, "currentPHPCLIVersion", _this.currentPHPCLIVersion); t2.add$2(t1, "isOkay", _this.isOkay); return t2.toString$0(t1); } }; U.HealthCheckPHPResponseBuilder.prototype = { get$_health_check_model$_$this: function() { var _this = this, $$v = _this._health_check_model$_$v; if ($$v != null) { _this._minimumPHPVersion = $$v.minimumPHPVersion; _this._currentPHPVersion = $$v.currentPHPVersion; _this._currentPHPCLIVersion = $$v.currentPHPCLIVersion; _this._isOkay = $$v.isOkay; _this._health_check_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, _this = this, _s22_ = "HealthCheckPHPResponse", _$result = _this._health_check_model$_$v; if (_$result == null) { t1 = _this.get$_health_check_model$_$this()._minimumPHPVersion; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "minimumPHPVersion")); t2 = _this.get$_health_check_model$_$this()._currentPHPVersion; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "currentPHPVersion")); t3 = _this.get$_health_check_model$_$this()._currentPHPCLIVersion; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "currentPHPCLIVersion")); t4 = _this.get$_health_check_model$_$this()._isOkay; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "isOkay")); _$result = new U._$HealthCheckPHPResponse(t1, t2, t3, t4); } return _this._health_check_model$_$v = _$result; } }; B.PreImportResponse.prototype = {}; B.PreImportResponseEntityDetails.prototype = {}; B.ImportRequest.prototype = {}; B.ImportRequestMapping.prototype = {}; B.ImportType.prototype = { get$uploadParts: function() { switch (this) { case C.ImportType_json: var t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["json", "json"], t1, t1); case C.ImportType_csv: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "invoices", "payment", "payments", "product", "products", "vendor", "vendors", "expense", "expenses"], t1, t1); case C.ImportType_freshbooks: case C.ImportType_invoicely: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "invoices"], t1, t1); case C.ImportType_waveaccounting: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["client", "clients", "invoice", "accounting"], t1, t1); case C.ImportType_zoho: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["client", "contacts", "invoice", "invoices"], t1, t1); case C.ImportType_invoice2go: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["invoice", "invoices"], t1, t1); default: t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); } } }; B._$PreImportResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["hash", serializers.serialize$2$specifiedType(object.hash, C.FullType_h8g), "mappings", serializers.serialize$2$specifiedType(object.mappings, C.FullType_blF)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new B.PreImportResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_PreImportResponseEntityDetails; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "hash": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_import_model$_$this()._import_model$_hash = t2; break; case "mappings": t2 = result.get$_import_model$_$this(); t3 = t2._mappings; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._mappings = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_blF)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_vx7; }, get$wireName: function() { return "PreImportResponse"; } }; B._$PreImportResponseEntityDetailsSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["available", serializers.serialize$2$specifiedType(object.available, C.FullType_6m4), "headers", serializers.serialize$2$specifiedType(object.headers, C.FullType_qwt)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, key, value, t6, t7, t8, result = new B.PreImportResponseEntityDetailsBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_BuiltList_legacy_String, t3 = type$.ListBuilder_legacy_BuiltList_legacy_String, t4 = type$.legacy_String, t5 = type$.ListBuilder_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "available": t6 = result.get$_import_model$_$this(); t7 = t6._available; if (t7 == null) { t7 = new D.ListBuilder(t5); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t4); t6._available = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; case "headers": t6 = result.get$_import_model$_$this(); t7 = t6._import_model$_headers; if (t7 == null) { t7 = new D.ListBuilder(t3); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t6._import_model$_headers = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qwt)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_5U9; }, get$wireName: function() { return "PreImportResponseEntityDetails"; } }; B._$ImportRequestSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["hash", serializers.serialize$2$specifiedType(object.hash, C.FullType_h8g), "import_type", serializers.serialize$2$specifiedType(object.importType, C.FullType_h8g), "skip_header", serializers.serialize$2$specifiedType(object.skipHeader, C.FullType_MtR), "column_map", serializers.serialize$2$specifiedType(object.columnMap, C.FullType_Yup)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new B.ImportRequestBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_ImportRequestMapping; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "hash": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_import_model$_$this()._import_model$_hash = t2; break; case "import_type": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_import_model$_$this()._importType = t2; break; case "skip_header": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_import_model$_$this()._skipHeader = t2; break; case "column_map": t2 = result.get$_import_model$_$this(); t3 = t2._columnMap; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._columnMap = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_Yup)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yvL; }, get$wireName: function() { return "ImportRequest"; } }; B._$ImportRequestMappingSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["mapping", serializers.serialize$2$specifiedType(object.mapping, C.FullType_5FV)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new B.ImportRequestMappingBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_int_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "mapping": $$v = result._import_model$_$v; if ($$v != null) { t2 = $$v.mapping; t2.toString; t3 = t2.$ti; t3._eval$1("_BuiltMap<1,2>")._as(t2); result._mapping = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t3._eval$1("@<1>")._bind$1(t3._rest[1])._eval$1("MapBuilder<1,2>")); result._import_model$_$v = null; } t2 = result._mapping; if (t2 == null) { t2 = new A.MapBuilder(null, $, null, t1); t2.replace$1(0, C.Map_empty0); result._mapping = t2; } t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_5FV)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_gg4; }, get$wireName: function() { return "ImportRequestMapping"; } }; B._$PreImportResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.PreImportResponse && this.hash === other.hash && J.$eq$(this.mappings, other.mappings); }, get$hashCode: function(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.hash)), J.get$hashCode$(_this.mappings))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PreImportResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "hash", this.hash); t2.add$2(t1, "mappings", this.mappings); return t2.toString$0(t1); } }; B.PreImportResponseBuilder.prototype = { get$mappings: function() { var t1 = this.get$_import_model$_$this(), t2 = t1._mappings; return t2 == null ? t1._mappings = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PreImportResponseEntityDetails) : t2; }, get$_import_model$_$this: function() { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { _this._import_model$_hash = $$v.hash; t1 = $$v.mappings; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._mappings = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s17_ = "PreImportResponse", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$_import_model$_$this()._import_model$_hash; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "hash")); t2 = _this.get$mappings().build$0(0); _$result0 = new B._$PreImportResponse(t1, t2); if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "mappings")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "mappings"; _this.get$mappings().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._import_model$_$v = t1; return _$result; } }; B._$PreImportResponseEntityDetails.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.PreImportResponseEntityDetails && J.$eq$(this.available, other.available) && J.$eq$(this.headers, other.headers); }, get$hashCode: function(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.available)), J.get$hashCode$(_this.headers))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PreImportResponseEntityDetails"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "available", this.available); t2.add$2(t1, "headers", this.headers); return t2.toString$0(t1); } }; B.PreImportResponseEntityDetailsBuilder.prototype = { get$available: function(_) { var t1 = this.get$_import_model$_$this(), t2 = t1._available; return t2 == null ? t1._available = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$headers: function(_) { var t1 = this.get$_import_model$_$this(), t2 = t1._import_model$_headers; return t2 == null ? t1._import_model$_headers = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_BuiltList_legacy_String) : t2; }, get$_import_model$_$this: function() { var t1, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { t1 = $$v.available; t1.toString; _this._available = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.headers; t1.toString; _this._import_model$_headers = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._import_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, exception, _this = this, _s30_ = "PreImportResponseEntityDetails", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$available(_this).build$0(0); t2 = _this.get$headers(_this).build$0(0); _$result0 = new B._$PreImportResponseEntityDetails(t1, t2); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s30_, "available")); if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s30_, "headers")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "available"; _this.get$available(_this).build$0(0); _$failedField = "headers"; _this.get$headers(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s30_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._import_model$_$v = t1; return _$result; } }; B._$ImportRequest.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.ImportRequest && _this.hash === other.hash && _this.importType === other.importType && _this.skipHeader == other.skipHeader && J.$eq$(_this.columnMap, other.columnMap); }, get$hashCode: function(_) { var _this = this, t1 = _this._import_model$__hashCode; return t1 == null ? _this._import_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.hash)), C.JSString_methods.get$hashCode(_this.importType)), J.get$hashCode$(_this.skipHeader)), J.get$hashCode$(_this.columnMap))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ImportRequest"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "hash", _this.hash); t2.add$2(t1, "importType", _this.importType); t2.add$2(t1, "skipHeader", _this.skipHeader); t2.add$2(t1, "columnMap", _this.columnMap); return t2.toString$0(t1); } }; B.ImportRequestBuilder.prototype = { get$columnMap: function() { var t1 = this.get$_import_model$_$this(), t2 = t1._columnMap; return t2 == null ? t1._columnMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ImportRequestMapping) : t2; }, get$_import_model$_$this: function() { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { _this._import_model$_hash = $$v.hash; _this._importType = $$v.importType; _this._skipHeader = $$v.skipHeader; t1 = $$v.columnMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._columnMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, exception, _this = this, _s13_ = "ImportRequest", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$_import_model$_$this()._import_model$_hash; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "hash")); t2 = _this.get$_import_model$_$this()._importType; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "importType")); t3 = _this.get$_import_model$_$this()._skipHeader; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "skipHeader")); _$result0 = B._$ImportRequest$_(_this.get$columnMap().build$0(0), t1, t2, t3); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "columnMap"; _this.get$columnMap().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._import_model$_$v = t1; return _$result; } }; B._$ImportRequestMapping.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.ImportRequestMapping && J.$eq$(this.mapping, other.mapping); }, get$hashCode: function(_) { var t1 = this._import_model$__hashCode; return t1 == null ? this._import_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.mapping))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ImportRequestMapping"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "mapping", this.mapping); return t2.toString$0(t1); } }; B.ImportRequestMappingBuilder.prototype = { get$mapping: function(_) { var t1, t2, _this = this, $$v = _this._import_model$_$v; if ($$v != null) { t1 = $$v.mapping; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._mapping = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._import_model$_$v = null; } t1 = _this._mapping; return t1 == null ? _this._mapping = A.MapBuilder_MapBuilder(type$.legacy_int, type$.legacy_String) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "ImportRequestMapping", _$result = null; try { _$result0 = _this._import_model$_$v; if (_$result0 == null) { t1 = _this.get$mapping(_this).build$0(0); _$result0 = new B._$ImportRequestMapping(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "mapping")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "mapping"; _this.get$mapping(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._import_model$_$v = t1; return _$result; } }; Q.InvoiceListResponse.prototype = {}; Q.InvoiceItemResponse.prototype = {}; Q.InvoiceEntity.prototype = { moveLineItem$2: function(oldIndex, newIndex) { var t1 = {}, lineItem = J.$index$asx(this.lineItems._list, oldIndex), invoice = this.rebuild$1(new Q.InvoiceEntity_moveLineItem_closure(oldIndex)); t1.invoice = invoice; return t1.invoice = invoice.rebuild$1(new Q.InvoiceEntity_moveLineItem_closure0(t1, newIndex, lineItem)); }, get$clone: function(_) { return this.rebuild$1(new Q.InvoiceEntity_clone_closure(this)); }, get$netBalance: function() { var t1 = this.balance; return t1 - this.taxAmount * t1 / this.amount; }, get$history: function(_) { var t1 = J.where$1$ax(this.activities._list, new Q.InvoiceEntity_history_closure()), t2 = t1.$ti._eval$1("MappedIterable<1,InvoiceHistoryEntity*>"); return P.List_List$of(new H.MappedIterable(t1, new Q.InvoiceEntity_history_closure0(), t2), true, t2._eval$1("Iterable.E")); }, get$isStale: function() { var t1 = this.loadedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; }, get$hasTasks: function() { return J.any$1$ax(this.lineItems._list, new Q.InvoiceEntity_hasTasks_closure()); }, get$hasProducts: function() { return J.any$1$ax(this.lineItems._list, new Q.InvoiceEntity_hasProducts_closure()); }, get$hasExpenses: function() { return J.any$1$ax(this.lineItems._list, new Q.InvoiceEntity_hasExpenses_closure()); }, get$isEditable: function() { if (this.isDeleted) return false; if (this.entityType === C.EntityType_invoice) { var t1 = this.statusId; if (t1 === "5" || t1 === "6") return false; } return true; }, compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap: function(_, clientMap, invoice, recurringPrefix, sortAscending, sortField, userMap) { var invoiceANumber, invoiceBNumber, t1, t2, response, stateA, stateB, t3, userA, userB, clientA, clientB, _null = null, _s8_ = "archived", invoiceA = sortAscending ? this : invoice, invoiceB = sortAscending ? invoice : this; switch (sortField) { case "number": invoiceANumber = invoiceA.number; invoiceBNumber = invoiceB.number; t1 = recurringPrefix.length !== 0; if (t1) { t2 = invoiceA.recurringId; t2 = (t2 == null ? "" : t2).length !== 0 && C.JSString_methods.startsWith$1(invoiceANumber, recurringPrefix); } else t2 = false; if (t2) invoiceANumber = C.JSString_methods.replaceFirst$2(invoiceANumber, recurringPrefix, ""); if (t1) { t1 = invoiceB.recurringId; t1 = (t1 == null ? "" : t1).length !== 0 && C.JSString_methods.startsWith$1(invoiceBNumber, recurringPrefix); } else t1 = false; if (t1) invoiceBNumber = C.JSString_methods.replaceFirst$2(invoiceBNumber, recurringPrefix, ""); response = K.compareNatural(invoiceANumber.toLowerCase(), invoiceBNumber.toLowerCase()); break; case "amount": response = C.JSNumber_methods.compareTo$1(invoiceA.amount, invoiceB.amount); break; case "created_at": response = C.JSInt_methods.compareTo$1(invoiceA.createdAt, invoiceB.createdAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(invoiceA.updatedAt, invoiceB.updatedAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(invoiceA.archivedAt, invoiceB.archivedAt); break; case "date": response = J.compareTo$1$ns(invoiceA.date, invoiceB.date); break; case "last_sent_date": response = C.JSString_methods.compareTo$1(invoiceA.lastSentDate, invoiceB.lastSentDate); break; case "reminder1_sent": response = J.compareTo$1$ns(invoiceA.reminder1Sent, invoiceB.reminder1Sent); break; case "reminder2_sent": response = J.compareTo$1$ns(invoiceA.reminder2Sent, invoiceB.reminder2Sent); break; case "reminder3_sent": response = J.compareTo$1$ns(invoiceA.reminder3Sent, invoiceB.reminder3Sent); break; case "reminder_last_sent": response = J.compareTo$1$ns(invoiceA.reminderLastSent, invoiceB.reminderLastSent); break; case "balance": t1 = invoiceA.statusId !== "1" ? invoiceA.balance : invoiceA.amount; response = C.JSNumber_methods.compareTo$1(t1, invoiceB.statusId !== "1" ? invoiceB.balance : invoiceB.amount); break; case "discount": response = C.JSNumber_methods.compareTo$1(invoiceA.discount, invoiceB.discount); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(invoiceA.documents._list), J.get$length$asx(invoiceB.documents._list)); break; case "po_number": response = C.JSString_methods.compareTo$1(invoiceA.poNumber, invoiceB.poNumber); break; case "status": response = C.JSString_methods.compareTo$1(invoiceA.get$calculatedStatusId(), invoiceB.get$calculatedStatusId()); break; case "entity_state": if (!invoiceA.get$isArchived() && !invoiceA.isDeleted) t1 = "active"; else t1 = invoiceA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!invoiceB.get$isArchived() && !invoiceB.isDeleted) t1 = "active"; else t1 = invoiceB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "due_date": case "valid_until": response = C.JSString_methods.compareTo$1(invoiceA.dueDate, invoiceB.dueDate); break; case "next_send_date": response = J.compareTo$1$ns(invoiceA.nextSendDate, invoiceB.nextSendDate); break; case "assigned_to": t1 = invoiceA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, invoiceB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = invoiceA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, invoiceB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "public_notes": response = C.JSString_methods.compareTo$1(invoiceA.publicNotes.toLowerCase(), invoiceB.publicNotes.toLowerCase()); break; case "private_notes": response = C.JSString_methods.compareTo$1(invoiceA.privateNotes.toLowerCase(), invoiceB.privateNotes.toLowerCase()); break; case "custom1": response = C.JSString_methods.compareTo$1(invoiceA.customValue1.toLowerCase(), invoiceB.customValue1.toLowerCase()); break; case "custom2": response = C.JSString_methods.compareTo$1(invoiceA.customValue2.toLowerCase(), invoiceB.customValue2.toLowerCase()); break; case "custom3": response = C.JSString_methods.compareTo$1(invoiceA.customValue3.toLowerCase(), invoiceB.customValue3.toLowerCase()); break; case "custom4": response = C.JSString_methods.compareTo$1(invoiceA.customValue4.toLowerCase(), invoiceB.customValue4.toLowerCase()); break; case "client": t1 = invoiceA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, invoiceB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "is_viewed": response = invoiceB.get$isViewed() ? 1 : -1; break; case "remaining_cycles": response = J.compareTo$1$ns(invoiceA.remainingCycles, invoiceB.remainingCycles); break; case "frequency": response = J.compareTo$1$ns(invoiceA.frequencyId, invoiceB.frequencyId); break; case "auto_bill": response = J.compareTo$1$ns(invoiceA.autoBill, invoiceB.autoBill); break; default: P.print("## ERROR: sort by invoice." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(invoice.number.toLowerCase(), this.number.toLowerCase()) : response; }, compareTo$5$clientMap$invoice$sortAscending$sortField$userMap: function($receiver, clientMap, invoice, sortAscending, sortField, userMap) { return this.compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap($receiver, clientMap, invoice, "", sortAscending, sortField, userMap); }, matchesStatuses$1: function(statuses) { var t3, t4, t1 = statuses._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) return true; for (t1 = t2.get$iterator(t1), t2 = this.statusId, t3 = t2 !== "1"; t1.moveNext$0();) { t4 = t1.get$current(t1); if (t4.get$id(t4) === t2 || t4.get$id(t4) === this.get$calculatedStatusId()) return true; else if (t4.get$id(t4) === "-2" && this.get$isUnpaid() && t3) return true; } return false; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.number, _this.poNumber, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.poNumber, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var t2, t3, t4, countOtherTypes, _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1) { if (userCompany.canEditEntity$1(_this)) { if (includeEdit && !multiselect) actions.push(C.EntityAction_edit); if (_this.entityType === C.EntityType_recurringInvoice) { t2 = type$.JSArray_legacy_String; t3 = _this.statusId; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["1", "3"], t2), t3)) actions.push(C.EntityAction_start); else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["-1", "2"], t2), t3)) actions.push(C.EntityAction_stop); } } t2 = _this.invitations._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2)) if (multiselect) actions.push(C.EntityAction_download); else actions.push(C.EntityAction_viewPdf); if (userCompany.canEditEntity$1(_this)) { t4 = _this.statusId; t4 = !(t4 === "5" || t4 === "6"); } else t4 = false; if (t4) { if (multiselect) { t4 = _this.entityType; if (t4 === C.EntityType_quote) actions.push(C.EntityAction_bulkEmailQuote); else if (t4 === C.EntityType_credit) actions.push(C.EntityAction_bulkEmailCredit); else if (t4 === C.EntityType_invoice) actions.push(C.EntityAction_bulkEmailInvoice); } else { t4 = _this.entityType; if (t4 === C.EntityType_quote) actions.push(C.EntityAction_emailQuote); else if (t4 === C.EntityType_credit) actions.push(C.EntityAction_emailCredit); else if (t4 === C.EntityType_invoice) actions.push(C.EntityAction_emailInvoice); } if (_this.get$isPayable() && userCompany.can$2(C.UserPermission_create, C.EntityType_payment)) actions.push(C.EntityAction_newPayment); if (_this.statusId === "1" && !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t4)) actions.push(C.EntityAction_markSent); if (_this.get$isPayable() && t4 === C.EntityType_invoice) actions.push(C.EntityAction_markPaid); if (t4 === C.EntityType_quote) { t4 = _this.invoiceId; t4 = (t4 == null ? "" : t4).length === 0; } else t4 = false; if (t4) actions.push(C.EntityAction_convertToInvoice); } if (t3.get$isNotEmpty(t2) && !multiselect) actions.push(C.EntityAction_clientPortal); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); if (!multiselect) { if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) { if (_this.entityType === C.EntityType_invoice) actions.push(C.EntityAction_cloneToInvoice); countOtherTypes = 1; } else countOtherTypes = 0; if (userCompany.can$2(C.UserPermission_create, C.EntityType_quote)) { ++countOtherTypes; if (_this.entityType === C.EntityType_quote) actions.push(C.EntityAction_cloneToQuote); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_credit)) { ++countOtherTypes; if (_this.entityType === C.EntityType_credit) actions.push(C.EntityAction_cloneToCredit); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_recurringInvoice)) { ++countOtherTypes; if (_this.entityType === C.EntityType_recurringInvoice) actions.push(C.EntityAction_cloneToRecurring); } if (countOtherTypes === 2) { if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice) && _this.entityType !== C.EntityType_invoice) actions.push(C.EntityAction_cloneToInvoice); if (userCompany.can$2(C.UserPermission_create, C.EntityType_quote) && _this.entityType !== C.EntityType_quote) actions.push(C.EntityAction_cloneToQuote); if (userCompany.can$2(C.UserPermission_create, C.EntityType_credit) && _this.entityType !== C.EntityType_credit) actions.push(C.EntityAction_cloneToCredit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_recurringInvoice) && _this.entityType !== C.EntityType_recurringInvoice) actions.push(C.EntityAction_cloneToRecurring); } else if (countOtherTypes > 2) actions.push(C.EntityAction_cloneToOther); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); } if (userCompany.canEditEntity$1(_this)) if (t1) { t1 = _this.statusId; t1 = !(t1 === "5" || t1 === "6"); } else t1 = false; else t1 = false; if (t1) { t1 = _this.entityType; if (t1 !== C.EntityType_quote && t1 !== C.EntityType_credit && t1 !== C.EntityType_recurringInvoice && _this.statusId !== "1") { if (_this.statusId !== "4") actions.push(C.EntityAction_cancel); if (userCompany.can$2(C.UserPermission_create, C.EntityType_credit)) actions.push(C.EntityAction_reverse); } } C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, applyTax$3$isSecond$isThird: function(taxRate, isSecond, isThird) { var invoice; if (isThird) invoice = this.rebuild$1(new Q.InvoiceEntity_applyTax_closure(taxRate)); else invoice = isSecond ? this.rebuild$1(new Q.InvoiceEntity_applyTax_closure0(taxRate)) : this.rebuild$1(new Q.InvoiceEntity_applyTax_closure1(taxRate)); return invoice; }, applyTax$1: function(taxRate) { return this.applyTax$3$isSecond$isThird(taxRate, false, false); }, applyTax$2$isSecond: function(taxRate, isSecond) { return this.applyTax$3$isSecond$isThird(taxRate, isSecond, false); }, applyTax$2$isThird: function(taxRate, isThird) { return this.applyTax$3$isSecond$isThird(taxRate, false, isThird); }, get$listDisplayName: function() { return this.number; }, get$listDisplayAmount: function() { return this.statusId !== "1" ? this.balance : this.amount; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, isBetween$2: function(startDate, endDate) { var t1 = this.date; return J.compareTo$1$ns(startDate, t1) <= 0 && J.compareTo$1$ns(endDate, t1) >= 0; }, get$isUnpaid: function() { var t1 = this.statusId; if (this.entityType === C.EntityType_quote) return !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["3", "4"], type$.JSArray_legacy_String), t1); else return t1 !== "4"; }, get$isPayable: function() { var t2, t1 = this.statusId; if (t1 !== "4") { t2 = this.entityType; if (t2 !== C.EntityType_quote) if (t2 !== C.EntityType_recurringInvoice) t1 = !(t1 === "5" || t1 === "6"); else t1 = false; else t1 = false; } else t1 = false; return t1; }, get$isViewed: function() { return J.any$1$ax(this.invitations._list, new Q.InvoiceEntity_isViewed_closure()); }, get$isUpcoming: function() { var t1, _this = this; if (!_this.get$isArchived() && !_this.isDeleted) { t1 = _this.statusId; t1 = t1 !== "4" && !_this.get$isPastDue() && t1 !== "1"; } else t1 = false; return t1; }, get$calculatedStatusId: function() { var t1, t2, _this = this; if (_this.get$isPastDue()) { t1 = _this.statusId; t1 = !(t1 === "5" || t1 === "6"); } else t1 = false; if (t1) return "-1"; t1 = _this.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t1)) if (_this.statusId === "2") t2 = _this.lastSentDate.length === 0; else t2 = false; else t2 = false; if (t2) return "-1"; if (_this.get$isViewed() && _this.get$isUnpaid()) return t1 === C.EntityType_invoice ? "-3" : "-2"; return _this.statusId; }, get$isPastDue: function() { var t2, _this = this, t1 = _this.dueDate; if (t1.length === 0 || _this.balance === 0) return false; if (!_this.isDeleted) if (!C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), _this.entityType)) if (_this.statusId !== "1") if (_this.get$isUnpaid()) { t1 = P.DateTime_tryParse(t1); t2 = new P.DateTime(Date.now(), false).subtract$1(P.Duration$(1, 0, 0, 0, 0, 0)); t2 = t1._value < t2._value; t1 = t2; } else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, getInvitationForContact$1: function(contact) { return J.firstWhere$2$orElse$ax(this.invitations._list, new Q.InvoiceEntity_getInvitationForContact_closure(contact), new Q.InvoiceEntity_getInvitationForContact_closure0()); }, getTaxes$1: function(precision) { var invoiceTaxAmount, t2, invoicePaidAmount, t3, t4, itemTaxable, t5, itemTaxAmount, t6, itemPaidAmount, _this = this, taxes = P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_Map_of_legacy_String_and_dynamic), taxable = _this.getTaxable$0(), calculateAmount = new Q.InvoiceEntity_getTaxes_calculateAmount(_this), t1 = _this.taxRate1; if (t1 !== 0) { invoiceTaxAmount = calculateAmount.call$2(taxable, t1); t2 = _this.amount; invoicePaidAmount = t2 * invoiceTaxAmount !== 0 ? _this.paidToDate / t2 * invoiceTaxAmount : 0; _this._calculateTax$5(taxes, _this.taxName1, t1, invoiceTaxAmount, invoicePaidAmount); } t1 = _this.taxRate2; if (t1 !== 0) { invoiceTaxAmount = calculateAmount.call$2(taxable, t1); t2 = _this.amount; invoicePaidAmount = t2 * invoiceTaxAmount !== 0 ? _this.paidToDate / t2 * invoiceTaxAmount : 0; _this._calculateTax$5(taxes, _this.taxName2, t1, invoiceTaxAmount, invoicePaidAmount); } t1 = _this.taxRate3; if (t1 !== 0) { invoiceTaxAmount = calculateAmount.call$2(taxable, t1); t2 = _this.amount; invoicePaidAmount = t2 * invoiceTaxAmount !== 0 ? _this.paidToDate / t2 * invoiceTaxAmount : 0; _this._calculateTax$5(taxes, _this.taxName3, t1, invoiceTaxAmount, invoicePaidAmount); } for (t1 = J.get$iterator$ax(_this.lineItems._list), t2 = _this.amount, t3 = _this.paidToDate / t2; t1.moveNext$0();) { t4 = t1.get$current(t1); itemTaxable = _this.getItemTaxable$3(t4, t2, precision); t5 = t4.taxRate1; if (t5 !== 0) { itemTaxAmount = calculateAmount.call$2(itemTaxable, t5); t6 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; itemPaidAmount = t6 ? t3 * itemTaxAmount : 0; _this._calculateTax$5(taxes, t4.taxName1, t5, itemTaxAmount, itemPaidAmount); } t5 = t4.taxRate2; if (t5 !== 0) { itemTaxAmount = calculateAmount.call$2(itemTaxable, t5); t6 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; itemPaidAmount = t6 ? t3 * itemTaxAmount : 0; _this._calculateTax$5(taxes, t4.taxName2, t5, itemTaxAmount, itemPaidAmount); } t5 = t4.taxRate3; if (t5 !== 0) { itemTaxAmount = calculateAmount.call$2(itemTaxable, t5); t6 = itemTaxAmount != null && t2 * itemTaxAmount !== 0; itemPaidAmount = t6 ? t3 * itemTaxAmount : 0; _this._calculateTax$5(taxes, t4.taxName3, t5, itemTaxAmount, itemPaidAmount); } } return taxes; }, _calculateTax$5: function(map, $name, rate, amount, paid) { var key, t1, t2; if (amount == null) return; key = C.JSNumber_methods.toString$0(rate) + " " + $name; map.putIfAbsent$2(0, key, new Q.InvoiceEntity__calculateTax_closure($name, rate)); t1 = map.$index(0, key); t2 = J.getInterceptor$asx(t1); t2.$indexSet(t1, "amount", J.$add$ansx(t2.$index(t1, "amount"), amount)); t1 = map.$index(0, key); t2 = J.getInterceptor$asx(t1); t2.$indexSet(t1, "paid", J.$add$ansx(t2.$index(t1, "paid"), paid)); } }; Q.InvoiceEntity_InvoiceEntity_closure.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; Q.InvoiceEntity_moveLineItem_closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$lineItems().get$_safeList(), this.oldIndex); return b; }, $signature: 11 }; Q.InvoiceEntity_moveLineItem_closure0.prototype = { call$1: function(b) { var t5, t6, t1 = b.get$lineItems(), t2 = this._box_0, t3 = t2.invoice.lineItems, t4 = this.newIndex; t3 = P.List_List$of(new D._BuiltList(J.sublist$2$ax(t3._list, 0, t4), H._instanceType(t3)._eval$1("_BuiltList<1>")), true, type$.legacy_InvoiceItemEntity); t3.push(this.lineItem); t2 = t2.invoice.lineItems; t5 = t2._list; t6 = J.getInterceptor$asx(t5); C.JSArray_methods.addAll$1(t3, new D._BuiltList(t6.sublist$2(t5, t4, t6.get$length(t5)), H._instanceType(t2)._eval$1("_BuiltList<1>"))); t1.replace$1(0, t3); b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; Q.InvoiceEntity_clone_closure.prototype = { call$1: function(b) { var t2, t3, t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_invoice_model$_$this()._invoice_model$_id = t1; b.get$_invoice_model$_$this()._invoice_model$_isChanged = false; b.get$_invoice_model$_$this()._invoice_model$_isDeleted = false; b.get$_invoice_model$_$this()._statusId = "1"; b.get$_invoice_model$_$this()._invoice_model$_balance = 0; b.get$_invoice_model$_$this()._amount = 0; b.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; b.get$_invoice_model$_$this()._remainingCycles = -1; b.get$_invoice_model$_$this()._invoiceId = ""; b.get$_invoice_model$_$this()._subscriptionId = ""; b.get$_invoice_model$_$this()._invoice_model$_number = ""; t1 = Y.convertDateTimeToSqlDate(null); b.get$_invoice_model$_$this()._date = t1; b.get$_invoice_model$_$this()._dueDate = ""; J.clear$0$ax(b.get$documents().get$_safeList()); t1 = b.get$lineItems(); t2 = this.$this; t3 = J.where$1$ax(t2.lineItems._list, new Q.InvoiceEntity_clone__closure()); t1.replace$1(0, P.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E"))); b.get$invitations().replace$1(0, J.map$1$1$ax(t2.invitations._list, new Q.InvoiceEntity_clone__closure0(), type$.legacy_InvitationEntity).toList$0(0)); return b; }, $signature: 11 }; Q.InvoiceEntity_clone__closure.prototype = { call$1: function(lineItem) { return lineItem.typeId !== "3"; }, $signature: 58 }; Q.InvoiceEntity_clone__closure0.prototype = { call$1: function(invitation) { return Q.InvitationEntity_InvitationEntity(invitation.contactId); }, $signature: 1072 }; Q.InvoiceEntity_history_closure.prototype = { call$1: function(activity) { var t1 = activity.history; if (t1 != null) { t1 = t1.id; t1 = t1.length !== 0; } else t1 = false; return t1; }, $signature: 436 }; Q.InvoiceEntity_history_closure0.prototype = { call$1: function(activity) { return activity.history; }, $signature: 1058 }; Q.InvoiceEntity_hasTasks_closure.prototype = { call$1: function(item) { return item.typeId === "2"; }, $signature: 58 }; Q.InvoiceEntity_hasProducts_closure.prototype = { call$1: function(item) { return item.typeId !== "2"; }, $signature: 58 }; Q.InvoiceEntity_hasExpenses_closure.prototype = { call$1: function(item) { return item.typeId === "6"; }, $signature: 58 }; Q.InvoiceEntity_applyTax_closure.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t1; return b; }, $signature: 11 }; Q.InvoiceEntity_applyTax_closure0.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t1; return b; }, $signature: 11 }; Q.InvoiceEntity_applyTax_closure1.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t1; return b; }, $signature: 11 }; Q.InvoiceEntity_isViewed_closure.prototype = { call$1: function(invitation) { return invitation.viewedDate.length !== 0; }, $signature: 497 }; Q.InvoiceEntity_getInvitationForContact_closure.prototype = { call$1: function(invitation) { return invitation.contactId === this.contact.id; }, $signature: 497 }; Q.InvoiceEntity_getInvitationForContact_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; Q.InvoiceEntity_getTaxes_calculateAmount.prototype = { call$2: function(taxable, rate) { var t1 = rate / 100; if (this.$this.usesInclusiveTaxes) return Y.round(taxable - taxable / (1 + t1), 2); else return Y.round(taxable * t1, 2); }, $signature: 1051 }; Q.InvoiceEntity__calculateTax_closure.prototype = { call$0: function() { return P.LinkedHashMap_LinkedHashMap$_literal(["name", this.name, "rate", this.rate, "amount", 0, "paid", 0], type$.legacy_String, type$.dynamic); }, $signature: 1023 }; Q.InvoiceItemEntity.prototype = { taxAmount$2: function(invoice, precision) { var _this = this, t1 = new Q.InvoiceItemEntity_taxAmount_calculateTaxAmount(_this, invoice, precision); return t1.call$1(_this.taxRate1) + t1.call$1(_this.taxRate2) + t1.call$1(_this.taxRate3); }, total$2: function(_, invoice, precision) { var total = this.quantity * this.cost, t1 = this.discount; if (t1 !== 0) total = invoice.isAmountDiscount ? total - t1 : total - t1 / 100 * total; return Y.round(total, precision); }, get$isEmpty: function(_) { var t1, _this = this; if (_this.productKey.length === 0) if (_this.notes.length === 0) if (_this.cost === 0) { t1 = _this.quantity; t1 = (t1 === 0 || t1 === 1) && _this.taxName1.length === 0 && _this.taxRate1 === 0 && _this.taxName2.length === 0 && _this.taxRate2 === 0 && _this.taxName3.length === 0 && _this.taxRate3 === 0 && _this.customValue1.length === 0 && _this.customValue2.length === 0 && _this.customValue3.length === 0 && _this.customValue4.length === 0; } else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hasTaxes: function() { var _this = this; return _this.taxRate1 !== 0 || _this.taxRate2 !== 0 || _this.taxRate3 !== 0 || _this.taxName1.length !== 0 || _this.taxName2.length !== 0 || _this.taxName3.length !== 0; }, get$taxRates: function() { var parts = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), t1 = this.taxName1; if (t1.length !== 0) parts.push(t1); t1 = this.taxName2; if (t1.length !== 0) parts.push(t1); t1 = this.taxName3; if (t1.length !== 0) parts.push(t1); return C.JSArray_methods.join$1(parts, ", "); }, applyTax$3$isSecond$isThird: function(taxRate, isSecond, isThird) { var item; if (isThird) item = this.rebuild$1(new Q.InvoiceItemEntity_applyTax_closure(taxRate)); else item = isSecond ? this.rebuild$1(new Q.InvoiceItemEntity_applyTax_closure0(taxRate)) : this.rebuild$1(new Q.InvoiceItemEntity_applyTax_closure1(taxRate)); return item; }, applyTax$1: function(taxRate) { return this.applyTax$3$isSecond$isThird(taxRate, false, false); }, applyTax$2$isSecond: function(taxRate, isSecond) { return this.applyTax$3$isSecond$isThird(taxRate, isSecond, false); }, applyTax$2$isThird: function(taxRate, isThird) { return this.applyTax$3$isSecond$isThird(taxRate, false, isThird); } }; Q.InvoiceItemEntity_taxAmount_calculateTaxAmount.prototype = { call$1: function(rate) { var t1, t2, lineTotal; if (rate === 0) return 0; t1 = this.invoice; t2 = this.precision; lineTotal = this.$this.total$2(0, t1, t2); return Y.round(t1.usesInclusiveTaxes ? lineTotal - lineTotal / (1 + rate / 100) : lineTotal * rate / 100, t2); }, $signature: 171 }; Q.InvoiceItemEntity_applyTax_closure.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t1; return b; }, $signature: 54 }; Q.InvoiceItemEntity_applyTax_closure0.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t1; return b; }, $signature: 54 }; Q.InvoiceItemEntity_applyTax_closure1.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t2; t1 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t1; return b; }, $signature: 54 }; Q.InvitationEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; return null; }, get$listDisplayName: function() { return ""; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; } }; Q.InvoiceScheduleEntity.prototype = {}; Q.InvoiceHistoryEntity.prototype = {}; Q._$InvoiceListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_xS5)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new Q.InvoiceListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_InvoiceEntity, t3 = type$.ListBuilder_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._invoice_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._invoice_model$_data = t6; result._invoice_model$_$v = null; } t4 = result._invoice_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._invoice_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_xS5)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_0qh; }, get$wireName: function() { return "InvoiceListResponse"; } }; Q._$InvoiceItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_fXI)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, t8, result = new Q.InvoiceItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_InvoiceEntity, t2 = type$.legacy_ActivityEntity, t3 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._invoice_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new Q.InvoiceEntityBuilder(); t6 = t5.get$_invoice_model$_$this(); t7 = t6._invoice_model$_activities; if (t7 == null) { t7 = new D.ListBuilder(t3); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t6._invoice_model$_activities = t7; t6 = t7; } else t6 = t7; t7 = D.BuiltList_BuiltList$from(C.List_empty, t2); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } t5.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t5.get$_invoice_model$_$this()._autoBillEnabled = false; t5.get$_invoice_model$_$this()._subscriptionId = ""; t5._invoice_model$_$v = t4; result._invoice_model$_data = t5; result._invoice_model$_$v = null; } t4 = result._invoice_model$_data; if (t4 == null) { t4 = new Q.InvoiceEntityBuilder(); t5 = t4.get$_invoice_model$_$this(); t6 = t5._invoice_model$_activities; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._invoice_model$_activities = t6; t5 = t6; } else t5 = t6; t6 = D.BuiltList_BuiltList$from(C.List_empty, t2); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } t4.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t4.get$_invoice_model$_$this()._autoBillEnabled = false; t4.get$_invoice_model$_$this()._subscriptionId = ""; result._invoice_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull("other")); t4._invoice_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Mkn; }, get$wireName: function() { return "InvoiceItemResponse"; } }; Q._$InvoiceEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["amount", serializers.serialize$2$specifiedType(object.amount, C.FullType_MME), "balance", serializers.serialize$2$specifiedType(object.balance, C.FullType_MME), "paid_to_date", serializers.serialize$2$specifiedType(object.paidToDate, C.FullType_MME), "client_id", serializers.serialize$2$specifiedType(object.clientId, C.FullType_h8g), "subscription_id", serializers.serialize$2$specifiedType(object.subscriptionId, C.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, C.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "discount", serializers.serialize$2$specifiedType(object.discount, C.FullType_MME), "po_number", serializers.serialize$2$specifiedType(object.poNumber, C.FullType_h8g), "date", serializers.serialize$2$specifiedType(object.date, C.FullType_h8g), "due_date", serializers.serialize$2$specifiedType(object.dueDate, C.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, C.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "terms", serializers.serialize$2$specifiedType(object.terms, C.FullType_h8g), "footer", serializers.serialize$2$specifiedType(object.footer, C.FullType_h8g), "design_id", serializers.serialize$2$specifiedType(object.designId, C.FullType_h8g), "uses_inclusive_taxes", serializers.serialize$2$specifiedType(object.usesInclusiveTaxes, C.FullType_MtR), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, C.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, C.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, C.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, C.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, C.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, C.FullType_MME), "is_amount_discount", serializers.serialize$2$specifiedType(object.isAmountDiscount, C.FullType_MtR), "partial", serializers.serialize$2$specifiedType(object.partial, C.FullType_MME), "total_taxes", serializers.serialize$2$specifiedType(object.taxAmount, C.FullType_MME), "partial_due_date", serializers.serialize$2$specifiedType(object.partialDueDate, C.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "custom_surcharge1", serializers.serialize$2$specifiedType(object.customSurcharge1, C.FullType_MME), "custom_surcharge2", serializers.serialize$2$specifiedType(object.customSurcharge2, C.FullType_MME), "custom_surcharge3", serializers.serialize$2$specifiedType(object.customSurcharge3, C.FullType_MME), "custom_surcharge4", serializers.serialize$2$specifiedType(object.customSurcharge4, C.FullType_MME), "custom_surcharge_tax1", serializers.serialize$2$specifiedType(object.customTaxes1, C.FullType_MtR), "custom_surcharge_tax2", serializers.serialize$2$specifiedType(object.customTaxes2, C.FullType_MtR), "custom_surcharge_tax3", serializers.serialize$2$specifiedType(object.customTaxes3, C.FullType_MtR), "custom_surcharge_tax4", serializers.serialize$2$specifiedType(object.customTaxes4, C.FullType_MtR), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, C.FullType_MME), "last_sent_date", serializers.serialize$2$specifiedType(object.lastSentDate, C.FullType_h8g), "next_send_date", serializers.serialize$2$specifiedType(object.nextSendDate, C.FullType_h8g), "auto_bill_enabled", serializers.serialize$2$specifiedType(object.autoBillEnabled, C.FullType_MtR), "line_items", serializers.serialize$2$specifiedType(object.lineItems, C.FullType_JhS), "invitations", serializers.serialize$2$specifiedType(object.invitations, C.FullType_koo), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "activities", serializers.serialize$2$specifiedType(object.activities, C.FullType_QWw), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.autoBill; if (value != null) { result.push("auto_bill"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.reminder1Sent; if (value != null) { result.push("reminder1_sent"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.reminder2Sent; if (value != null) { result.push("reminder2_sent"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.reminder3Sent; if (value != null) { result.push("reminder3_sent"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.reminderLastSent; if (value != null) { result.push("reminder_last_sent"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.frequencyId; if (value != null) { result.push("frequency_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.remainingCycles; if (value != null) { result.push("remaining_cycles"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.dueDateDays; if (value != null) { result.push("due_date_days"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringId; if (value != null) { result.push("recurring_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.filename; if (value != null) { result.push("filename"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringDates; if (value != null) { result.push("recurring_dates"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_RDC)); } value = object.loadedAt; if (value != null) { result.push("loadedAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_qBb)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, key, value, t13, t14, t15, result = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity, t7 = type$.legacy_InvitationEntity, t8 = type$.ListBuilder_legacy_InvitationEntity, t9 = type$.legacy_InvoiceItemEntity, t10 = type$.ListBuilder_legacy_InvoiceItemEntity, t11 = type$.legacy_InvoiceScheduleEntity, t12 = type$.ListBuilder_legacy_InvoiceScheduleEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "amount": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._amount = t13; break; case "balance": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_balance = t13; break; case "paid_to_date": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_paidToDate = t13; break; case "client_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._clientId = t13; break; case "subscription_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._subscriptionId = t13; break; case "status_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._statusId = t13; break; case "number": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_number = t13; break; case "discount": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._discount = t13; break; case "po_number": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._poNumber = t13; break; case "date": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._date = t13; break; case "due_date": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._dueDate = t13; break; case "public_notes": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_publicNotes = t13; break; case "private_notes": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_privateNotes = t13; break; case "terms": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._terms = t13; break; case "footer": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._footer = t13; break; case "design_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._designId = t13; break; case "uses_inclusive_taxes": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._usesInclusiveTaxes = t13; break; case "tax_name1": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName1 = t13; break; case "tax_rate1": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate1 = t13; break; case "tax_name2": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName2 = t13; break; case "tax_rate2": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate2 = t13; break; case "tax_name3": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName3 = t13; break; case "tax_rate3": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate3 = t13; break; case "is_amount_discount": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._isAmountDiscount = t13; break; case "partial": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._partial = t13; break; case "total_taxes": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxAmount = t13; break; case "partial_due_date": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._partialDueDate = t13; break; case "auto_bill": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_autoBill = t13; break; case "custom_value1": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue1 = t13; break; case "custom_value2": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue2 = t13; break; case "custom_value3": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue3 = t13; break; case "custom_value4": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue4 = t13; break; case "custom_surcharge1": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge1 = t13; break; case "custom_surcharge2": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge2 = t13; break; case "custom_surcharge3": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge3 = t13; break; case "custom_surcharge4": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._customSurcharge4 = t13; break; case "custom_surcharge_tax1": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes1 = t13; break; case "custom_surcharge_tax2": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes2 = t13; break; case "custom_surcharge_tax3": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes3 = t13; break; case "custom_surcharge_tax4": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._customTaxes4 = t13; break; case "exchange_rate": t13 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._exchangeRate = t13; break; case "reminder1_sent": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._reminder1Sent = t13; break; case "reminder2_sent": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._reminder2Sent = t13; break; case "reminder3_sent": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._reminder3Sent = t13; break; case "reminder_last_sent": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._reminderLastSent = t13; break; case "frequency_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._frequencyId = t13; break; case "last_sent_date": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._lastSentDate = t13; break; case "next_send_date": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._nextSendDate = t13; break; case "remaining_cycles": t13 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._remainingCycles = t13; break; case "due_date_days": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._dueDateDays = t13; break; case "invoice_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoiceId = t13; break; case "recurring_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._recurringId = t13; break; case "auto_bill_enabled": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._autoBillEnabled = t13; break; case "filename": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._filename = t13; break; case "recurring_dates": t13 = result.get$_invoice_model$_$this(); t14 = t13._recurringDates; if (t14 == null) { t14 = new D.ListBuilder(t12); t14.__ListBuilder__list = P.List_List$from(C.List_empty, true, t11); t13._recurringDates = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_RDC)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = P.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "line_items": t13 = result.get$_invoice_model$_$this(); t14 = t13._lineItems; if (t14 == null) { t14 = new D.ListBuilder(t10); t14.__ListBuilder__list = P.List_List$from(C.List_empty, true, t9); t13._lineItems = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_JhS)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = P.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "invitations": t13 = result.get$_invoice_model$_$this(); t14 = t13._invitations; if (t14 == null) { t14 = new D.ListBuilder(t8); t14.__ListBuilder__list = P.List_List$from(C.List_empty, true, t7); t13._invitations = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_koo)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = P.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "documents": t13 = result.get$_invoice_model$_$this(); t14 = t13._invoice_model$_documents; if (t14 == null) { t14 = new D.ListBuilder(t6); t14.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t13._invoice_model$_documents = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = P.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "activities": t13 = result.get$_invoice_model$_$this(); t14 = t13._invoice_model$_activities; if (t14 == null) { t14 = new D.ListBuilder(t4); t14.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t13._invoice_model$_activities = t14; t13 = t14; } else t13 = t14; t14 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_QWw)); t15 = t13.$ti; if (t15._eval$1("_BuiltList<1>")._is(t14)) { t13.__ListBuilder__list = t14._list; t13._listOwner = t14; } else { t13.__ListBuilder__list = P.List_List$from(t14, true, t15._precomputed1); t13._listOwner = null; } break; case "loadedAt": t13 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_loadedAt = t13; break; case "isChanged": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isChanged = t13; break; case "created_at": t13 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t13; break; case "updated_at": t13 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_updatedAt = t13; break; case "archived_at": t13 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_archivedAt = t13; break; case "is_deleted": t13 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isDeleted = t13; break; case "user_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_createdUserId = t13; break; case "assigned_user_id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t13; break; case "entity_type": t13 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_invoice_model$_$this()._invoice_model$_entityType = t13; break; case "id": t13 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t13; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kuc; }, get$wireName: function() { return "InvoiceEntity"; } }; Q._$InvoiceItemEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["product_key", serializers.serialize$2$specifiedType(object.productKey, C.FullType_h8g), "notes", serializers.serialize$2$specifiedType(object.notes, C.FullType_h8g), "cost", serializers.serialize$2$specifiedType(object.cost, C.FullType_MME), "product_cost", serializers.serialize$2$specifiedType(object.productCost, C.FullType_MME), "quantity", serializers.serialize$2$specifiedType(object.quantity, C.FullType_MME), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, C.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, C.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, C.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, C.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, C.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, C.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "discount", serializers.serialize$2$specifiedType(object.discount, C.FullType_MME)], type$.JSArray_legacy_Object), value = object.typeId; if (value != null) { result.push("type_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.taskId; if (value != null) { result.push("task_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.expenseId; if (value != null) { result.push("expense_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.createdAt; if (value != null) { result.push("createdAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new Q.InvoiceItemEntityBuilder(); result.get$_invoice_model$_$this()._productCost = 0; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "product_key": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_productKey = t1; break; case "notes": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_notes = t1; break; case "cost": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_cost = t1; break; case "product_cost": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._productCost = t1; break; case "quantity": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._invoice_model$_quantity = t1; break; case "tax_name1": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName1 = t1; break; case "tax_rate1": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate1 = t1; break; case "tax_name2": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName2 = t1; break; case "tax_rate2": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate2 = t1; break; case "tax_name3": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._taxName3 = t1; break; case "tax_rate3": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._taxRate3 = t1; break; case "type_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_typeId = t1; break; case "custom_value1": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1; break; case "custom_value2": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1; break; case "custom_value3": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1; break; case "custom_value4": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1; break; case "discount": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._discount = t1; break; case "task_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_taskId = t1; break; case "expense_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._expenseId = t1; break; case "createdAt": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Tph; }, get$wireName: function() { return "InvoiceItemEntity"; } }; Q._$InvitationEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["key", serializers.serialize$2$specifiedType(object.key, C.FullType_h8g), "link", serializers.serialize$2$specifiedType(object.link, C.FullType_h8g), "client_contact_id", serializers.serialize$2$specifiedType(object.contactId, C.FullType_h8g), "sent_date", serializers.serialize$2$specifiedType(object.sentDate, C.FullType_h8g), "viewed_date", serializers.serialize$2$specifiedType(object.viewedDate, C.FullType_h8g), "opened_date", serializers.serialize$2$specifiedType(object.openedDate, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.emailStatus; if (value != null) { result.push("email_status"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.entityType; if (value != null) { result.push("entity_type"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_qBb)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, _$result, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _s16_ = "InvitationEntity", result = new Q.InvitationEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "key": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_key = t2; break; case "link": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_link = t2; break; case "client_contact_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._contactId = t2; break; case "sent_date": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._sentDate = t2; break; case "viewed_date": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._viewedDate = t2; break; case "opened_date": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._openedDate = t2; break; case "email_status": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._emailStatus = t2; break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_model$_$this()._invoice_model$_isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t2; break; case "entity_type": t2 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_invoice_model$_$this()._invoice_model$_entityType = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t2; break; } } _$result = result._invoice_model$_$v; if (_$result == null) { t1 = result.get$_invoice_model$_$this()._invoice_model$_key; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "key")); t2 = result.get$_invoice_model$_$this()._invoice_model$_link; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "link")); t3 = result.get$_invoice_model$_$this()._contactId; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "contactId")); t4 = result.get$_invoice_model$_$this()._sentDate; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "sentDate")); t5 = result.get$_invoice_model$_$this()._viewedDate; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "viewedDate")); t6 = result.get$_invoice_model$_$this()._openedDate; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "openedDate")); t7 = result.get$_invoice_model$_$this()._emailStatus; t8 = result.get$_invoice_model$_$this()._invoice_model$_isChanged; t9 = result.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "createdAt")); t10 = result.get$_invoice_model$_$this()._invoice_model$_updatedAt; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "updatedAt")); t11 = result.get$_invoice_model$_$this()._invoice_model$_archivedAt; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "archivedAt")); t12 = result.get$_invoice_model$_$this()._invoice_model$_isDeleted; t13 = result.get$_invoice_model$_$this()._invoice_model$_createdUserId; t14 = result.get$_invoice_model$_$this()._invoice_model$_assignedUserId; t15 = result.get$_invoice_model$_$this()._invoice_model$_entityType; t16 = result.get$_invoice_model$_$this()._invoice_model$_id; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "id")); _$result = Q._$InvitationEntity$_(t11, t14, t3, t9, t13, t7, t15, t16, t8, t12, t1, t2, t6, t4, t10, t5); } return result._invoice_model$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_NQk; }, get$wireName: function() { return "InvitationEntity"; } }; Q._$InvoiceScheduleEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["send_date", serializers.serialize$2$specifiedType(object.sendDate, C.FullType_h8g), "due_date", serializers.serialize$2$specifiedType(object.dueDate, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, t2, _s21_ = "InvoiceScheduleEntity", result = new Q.InvoiceScheduleEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "send_date": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._invoice_model$_$v; if ($$v != null) { result._sendDate = $$v.sendDate; result._dueDate = $$v.dueDate; result._invoice_model$_$v = null; } result._sendDate = t1; break; case "due_date": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._invoice_model$_$v; if ($$v != null) { result._sendDate = $$v.sendDate; result._dueDate = $$v.dueDate; result._invoice_model$_$v = null; } result._dueDate = t1; break; } } _$result = result._invoice_model$_$v; if (_$result == null) { t1 = result.get$_invoice_model$_$this()._sendDate; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "sendDate")); t2 = result.get$_invoice_model$_$this()._dueDate; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "dueDate")); _$result = new Q._$InvoiceScheduleEntity(t1, t2); } return result._invoice_model$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_gkc1; }, get$wireName: function() { return "InvoiceScheduleEntity"; } }; Q._$InvoiceHistoryEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "activity_id", serializers.serialize$2$specifiedType(object.activityId, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "amount", serializers.serialize$2$specifiedType(object.amount, C.FullType_MME)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new Q.InvoiceHistoryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._invoice_model$_id = t1; break; case "activity_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_model$_$this()._activityId = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_model$_$this()._invoice_model$_createdAt = t1; break; case "amount": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_invoice_model$_$this()._amount = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_AKW; }, get$wireName: function() { return "InvoiceHistoryEntity"; } }; Q._$InvoiceListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.InvoiceListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._invoice_model$__hashCode; return t1 == null ? this._invoice_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; Q.InvoiceListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._invoice_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._invoice_model$_$v = null; } t1 = _this._invoice_model$_data; return t1 == null ? _this._invoice_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "InvoiceListResponse", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new Q._$InvoiceListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._invoice_model$_$v = t1; return _$result; } }; Q._$InvoiceItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.InvoiceItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._invoice_model$__hashCode; return t1 == null ? this._invoice_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; Q.InvoiceItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; _this._invoice_model$_data = t2; _this._invoice_model$_$v = null; } t1 = _this._invoice_model$_data; if (t1 == null) { t1 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t1); _this._invoice_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "InvoiceItemResponse", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new Q._$InvoiceItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._invoice_model$_$v = t1; return _$result; } }; Q._$InvoiceEntity.prototype = { rebuild$1: function(updates) { var t1 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t1); t1._invoice_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.InvoiceEntity && _this.amount === other.amount && _this.balance === other.balance && _this.paidToDate === other.paidToDate && _this.clientId === other.clientId && _this.subscriptionId === other.subscriptionId && _this.statusId === other.statusId && _this.number === other.number && _this.discount === other.discount && _this.poNumber === other.poNumber && _this.date == other.date && _this.dueDate === other.dueDate && _this.publicNotes === other.publicNotes && _this.privateNotes === other.privateNotes && _this.terms === other.terms && _this.footer === other.footer && _this.designId === other.designId && _this.usesInclusiveTaxes === other.usesInclusiveTaxes && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.isAmountDiscount === other.isAmountDiscount && _this.partial === other.partial && _this.taxAmount === other.taxAmount && _this.partialDueDate === other.partialDueDate && _this.autoBill == other.autoBill && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.customSurcharge1 === other.customSurcharge1 && _this.customSurcharge2 === other.customSurcharge2 && _this.customSurcharge3 === other.customSurcharge3 && _this.customSurcharge4 === other.customSurcharge4 && _this.customTaxes1 === other.customTaxes1 && _this.customTaxes2 === other.customTaxes2 && _this.customTaxes3 === other.customTaxes3 && _this.customTaxes4 === other.customTaxes4 && _this.exchangeRate === other.exchangeRate && _this.reminder1Sent == other.reminder1Sent && _this.reminder2Sent == other.reminder2Sent && _this.reminder3Sent == other.reminder3Sent && _this.reminderLastSent == other.reminderLastSent && _this.frequencyId == other.frequencyId && _this.lastSentDate === other.lastSentDate && _this.nextSendDate == other.nextSendDate && _this.remainingCycles == other.remainingCycles && _this.dueDateDays == other.dueDateDays && _this.invoiceId == other.invoiceId && _this.recurringId == other.recurringId && _this.autoBillEnabled === other.autoBillEnabled && _this.filename == other.filename && J.$eq$(_this.recurringDates, other.recurringDates) && J.$eq$(_this.lineItems, other.lineItems) && J.$eq$(_this.invitations, other.invitations) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSNumber_methods.get$hashCode(_this.amount)), C.JSNumber_methods.get$hashCode(_this.balance)), C.JSNumber_methods.get$hashCode(_this.paidToDate)), C.JSString_methods.get$hashCode(_this.clientId)), C.JSString_methods.get$hashCode(_this.subscriptionId)), C.JSString_methods.get$hashCode(_this.statusId)), C.JSString_methods.get$hashCode(_this.number)), C.JSNumber_methods.get$hashCode(_this.discount)), C.JSString_methods.get$hashCode(_this.poNumber)), J.get$hashCode$(_this.date)), C.JSString_methods.get$hashCode(_this.dueDate)), C.JSString_methods.get$hashCode(_this.publicNotes)), C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.terms)), C.JSString_methods.get$hashCode(_this.footer)), C.JSString_methods.get$hashCode(_this.designId)), C.JSBool_methods.get$hashCode(_this.usesInclusiveTaxes)), C.JSString_methods.get$hashCode(_this.taxName1)), C.JSNumber_methods.get$hashCode(_this.taxRate1)), C.JSString_methods.get$hashCode(_this.taxName2)), C.JSNumber_methods.get$hashCode(_this.taxRate2)), C.JSString_methods.get$hashCode(_this.taxName3)), C.JSNumber_methods.get$hashCode(_this.taxRate3)), C.JSBool_methods.get$hashCode(_this.isAmountDiscount)), C.JSNumber_methods.get$hashCode(_this.partial)), C.JSNumber_methods.get$hashCode(_this.taxAmount)), C.JSString_methods.get$hashCode(_this.partialDueDate)), J.get$hashCode$(_this.autoBill)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSNumber_methods.get$hashCode(_this.customSurcharge1)), C.JSNumber_methods.get$hashCode(_this.customSurcharge2)), C.JSNumber_methods.get$hashCode(_this.customSurcharge3)), C.JSNumber_methods.get$hashCode(_this.customSurcharge4)), C.JSBool_methods.get$hashCode(_this.customTaxes1)), C.JSBool_methods.get$hashCode(_this.customTaxes2)), C.JSBool_methods.get$hashCode(_this.customTaxes3)), C.JSBool_methods.get$hashCode(_this.customTaxes4)), C.JSNumber_methods.get$hashCode(_this.exchangeRate)), J.get$hashCode$(_this.reminder1Sent)), J.get$hashCode$(_this.reminder2Sent)), J.get$hashCode$(_this.reminder3Sent)), J.get$hashCode$(_this.reminderLastSent)), J.get$hashCode$(_this.frequencyId)), C.JSString_methods.get$hashCode(_this.lastSentDate)), J.get$hashCode$(_this.nextSendDate)), J.get$hashCode$(_this.remainingCycles)), J.get$hashCode$(_this.dueDateDays)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.recurringId)), C.JSBool_methods.get$hashCode(_this.autoBillEnabled)), J.get$hashCode$(_this.filename)), J.get$hashCode$(_this.recurringDates)), J.get$hashCode$(_this.lineItems)), J.get$hashCode$(_this.invitations)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "balance", _this.balance); t2.add$2(t1, "paidToDate", _this.paidToDate); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "subscriptionId", _this.subscriptionId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "discount", _this.discount); t2.add$2(t1, "poNumber", _this.poNumber); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "dueDate", _this.dueDate); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "terms", _this.terms); t2.add$2(t1, "footer", _this.footer); t2.add$2(t1, "designId", _this.designId); t2.add$2(t1, "usesInclusiveTaxes", _this.usesInclusiveTaxes); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "isAmountDiscount", _this.isAmountDiscount); t2.add$2(t1, "partial", _this.partial); t2.add$2(t1, "taxAmount", _this.taxAmount); t2.add$2(t1, "partialDueDate", _this.partialDueDate); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "customSurcharge1", _this.customSurcharge1); t2.add$2(t1, "customSurcharge2", _this.customSurcharge2); t2.add$2(t1, "customSurcharge3", _this.customSurcharge3); t2.add$2(t1, "customSurcharge4", _this.customSurcharge4); t2.add$2(t1, "customTaxes1", _this.customTaxes1); t2.add$2(t1, "customTaxes2", _this.customTaxes2); t2.add$2(t1, "customTaxes3", _this.customTaxes3); t2.add$2(t1, "customTaxes4", _this.customTaxes4); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "reminder1Sent", _this.reminder1Sent); t2.add$2(t1, "reminder2Sent", _this.reminder2Sent); t2.add$2(t1, "reminder3Sent", _this.reminder3Sent); t2.add$2(t1, "reminderLastSent", _this.reminderLastSent); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "lastSentDate", _this.lastSentDate); t2.add$2(t1, "nextSendDate", _this.nextSendDate); t2.add$2(t1, "remainingCycles", _this.remainingCycles); t2.add$2(t1, "dueDateDays", _this.dueDateDays); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "recurringId", _this.recurringId); t2.add$2(t1, "autoBillEnabled", _this.autoBillEnabled); t2.add$2(t1, "filename", _this.filename); t2.add$2(t1, "recurringDates", _this.recurringDates); t2.add$2(t1, "lineItems", _this.lineItems); t2.add$2(t1, "invitations", _this.invitations); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "activities", _this.activities); t2.add$2(t1, "loadedAt", _this.loadedAt); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount: function() { return this.amount; }, get$clientId: function(receiver) { return this.clientId; }, get$subscriptionId: function() { return this.subscriptionId; }, get$date: function() { return this.date; }, get$designId: function() { return this.designId; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$entityType: function() { return this.entityType; }, get$id: function(receiver) { return this.id; } }; Q.InvoiceEntityBuilder.prototype = { get$amount: function() { return this.get$_invoice_model$_$this()._amount; }, get$subscriptionId: function() { return this.get$_invoice_model$_$this()._subscriptionId; }, get$date: function() { return this.get$_invoice_model$_$this()._date; }, get$designId: function() { return this.get$_invoice_model$_$this()._designId; }, get$lineItems: function() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._lineItems; return t2 == null ? t1._lineItems = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceItemEntity) : t2; }, get$invitations: function() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invitations; return t2 == null ? t1._invitations = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvitationEntity) : t2; }, get$documents: function() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invoice_model$_documents; return t2 == null ? t1._invoice_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$activities: function() { var t1 = this.get$_invoice_model$_$this(), t2 = t1._invoice_model$_activities; return t2 == null ? t1._invoice_model$_activities = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity) : t2; }, get$id: function(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$_invoice_model$_$this: function() { var t1, _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._amount = $$v.amount; _this._invoice_model$_balance = $$v.balance; _this._invoice_model$_paidToDate = $$v.paidToDate; _this._clientId = $$v.clientId; _this._subscriptionId = $$v.subscriptionId; _this._statusId = $$v.statusId; _this._invoice_model$_number = $$v.number; _this._discount = $$v.discount; _this._poNumber = $$v.poNumber; _this._date = $$v.date; _this._dueDate = $$v.dueDate; _this._invoice_model$_publicNotes = $$v.publicNotes; _this._invoice_model$_privateNotes = $$v.privateNotes; _this._terms = $$v.terms; _this._footer = $$v.footer; _this._designId = $$v.designId; _this._usesInclusiveTaxes = $$v.usesInclusiveTaxes; _this._taxName1 = $$v.taxName1; _this._taxRate1 = $$v.taxRate1; _this._taxName2 = $$v.taxName2; _this._taxRate2 = $$v.taxRate2; _this._taxName3 = $$v.taxName3; _this._taxRate3 = $$v.taxRate3; _this._isAmountDiscount = $$v.isAmountDiscount; _this._partial = $$v.partial; _this._taxAmount = $$v.taxAmount; _this._partialDueDate = $$v.partialDueDate; _this._invoice_model$_autoBill = $$v.autoBill; _this._invoice_model$_customValue1 = $$v.customValue1; _this._invoice_model$_customValue2 = $$v.customValue2; _this._invoice_model$_customValue3 = $$v.customValue3; _this._invoice_model$_customValue4 = $$v.customValue4; _this._customSurcharge1 = $$v.customSurcharge1; _this._customSurcharge2 = $$v.customSurcharge2; _this._customSurcharge3 = $$v.customSurcharge3; _this._customSurcharge4 = $$v.customSurcharge4; _this._customTaxes1 = $$v.customTaxes1; _this._customTaxes2 = $$v.customTaxes2; _this._customTaxes3 = $$v.customTaxes3; _this._customTaxes4 = $$v.customTaxes4; _this._exchangeRate = $$v.exchangeRate; _this._reminder1Sent = $$v.reminder1Sent; _this._reminder2Sent = $$v.reminder2Sent; _this._reminder3Sent = $$v.reminder3Sent; _this._reminderLastSent = $$v.reminderLastSent; _this._frequencyId = $$v.frequencyId; _this._lastSentDate = $$v.lastSentDate; _this._nextSendDate = $$v.nextSendDate; _this._remainingCycles = $$v.remainingCycles; _this._dueDateDays = $$v.dueDateDays; _this._invoiceId = $$v.invoiceId; _this._recurringId = $$v.recurringId; _this._autoBillEnabled = $$v.autoBillEnabled; _this._filename = $$v.filename; t1 = $$v.recurringDates; _this._recurringDates = t1 == null ? null : D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.lineItems; t1.toString; _this._lineItems = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invitations; t1.toString; _this._invitations = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.documents; t1.toString; _this._invoice_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.activities; t1.toString; _this._invoice_model$_activities = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._invoice_model$_loadedAt = $$v.loadedAt; _this._invoice_model$_isChanged = $$v.isChanged; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_updatedAt = $$v.updatedAt; _this._invoice_model$_archivedAt = $$v.archivedAt; _this._invoice_model$_isDeleted = $$v.isDeleted; _this._invoice_model$_createdUserId = $$v.createdUserId; _this._invoice_model$_assignedUserId = $$v.assignedUserId; _this._invoice_model$_entityType = $$v.entityType; _this._invoice_model$_id = $$v.id; _this._invoice_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, exception, _this = this, _s13_ = "InvoiceEntity", _$result = null; try { _$result0 = _this._invoice_model$_$v; if (_$result0 == null) { t1 = _this.get$_invoice_model$_$this()._amount; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "amount")); t2 = _this.get$_invoice_model$_$this()._invoice_model$_balance; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "balance")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_paidToDate; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "paidToDate")); t4 = _this.get$_invoice_model$_$this()._clientId; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientId")); t5 = _this.get$_invoice_model$_$this()._subscriptionId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "subscriptionId")); t6 = _this.get$_invoice_model$_$this()._statusId; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "statusId")); t7 = _this.get$_invoice_model$_$this()._invoice_model$_number; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "number")); t8 = _this.get$_invoice_model$_$this()._discount; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "discount")); t9 = _this.get$_invoice_model$_$this()._poNumber; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "poNumber")); t10 = _this.get$_invoice_model$_$this()._date; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "date")); t11 = _this.get$_invoice_model$_$this()._dueDate; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "dueDate")); t12 = _this.get$_invoice_model$_$this()._invoice_model$_publicNotes; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "publicNotes")); t13 = _this.get$_invoice_model$_$this()._invoice_model$_privateNotes; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "privateNotes")); t14 = _this.get$_invoice_model$_$this()._terms; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "terms")); t15 = _this.get$_invoice_model$_$this()._footer; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "footer")); t16 = _this.get$_invoice_model$_$this()._designId; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "designId")); t17 = _this.get$_invoice_model$_$this()._usesInclusiveTaxes; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "usesInclusiveTaxes")); t18 = _this.get$_invoice_model$_$this()._taxName1; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName1")); t19 = _this.get$_invoice_model$_$this()._taxRate1; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate1")); t20 = _this.get$_invoice_model$_$this()._taxName2; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName2")); t21 = _this.get$_invoice_model$_$this()._taxRate2; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate2")); t22 = _this.get$_invoice_model$_$this()._taxName3; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName3")); t23 = _this.get$_invoice_model$_$this()._taxRate3; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate3")); t24 = _this.get$_invoice_model$_$this()._isAmountDiscount; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isAmountDiscount")); t25 = _this.get$_invoice_model$_$this()._partial; if (t25 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "partial")); t26 = _this.get$_invoice_model$_$this()._taxAmount; if (t26 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxAmount")); t27 = _this.get$_invoice_model$_$this()._partialDueDate; if (t27 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "partialDueDate")); t28 = _this.get$_invoice_model$_$this()._invoice_model$_autoBill; t29 = _this.get$_invoice_model$_$this()._invoice_model$_customValue1; if (t29 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t30 = _this.get$_invoice_model$_$this()._invoice_model$_customValue2; if (t30 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t31 = _this.get$_invoice_model$_$this()._invoice_model$_customValue3; if (t31 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t32 = _this.get$_invoice_model$_$this()._invoice_model$_customValue4; if (t32 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t33 = _this.get$_invoice_model$_$this()._customSurcharge1; if (t33 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customSurcharge1")); t34 = _this.get$_invoice_model$_$this()._customSurcharge2; if (t34 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customSurcharge2")); t35 = _this.get$_invoice_model$_$this()._customSurcharge3; if (t35 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customSurcharge3")); t36 = _this.get$_invoice_model$_$this()._customSurcharge4; if (t36 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customSurcharge4")); t37 = _this.get$_invoice_model$_$this()._customTaxes1; if (t37 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customTaxes1")); t38 = _this.get$_invoice_model$_$this()._customTaxes2; if (t38 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customTaxes2")); t39 = _this.get$_invoice_model$_$this()._customTaxes3; if (t39 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customTaxes3")); t40 = _this.get$_invoice_model$_$this()._customTaxes4; if (t40 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customTaxes4")); t41 = _this.get$_invoice_model$_$this()._exchangeRate; if (t41 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t42 = _this.get$_invoice_model$_$this()._reminder1Sent; t43 = _this.get$_invoice_model$_$this()._reminder2Sent; t44 = _this.get$_invoice_model$_$this()._reminder3Sent; t45 = _this.get$_invoice_model$_$this()._reminderLastSent; t46 = _this.get$_invoice_model$_$this()._frequencyId; t47 = _this.get$_invoice_model$_$this()._lastSentDate; if (t47 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "lastSentDate")); t48 = _this.get$_invoice_model$_$this()._nextSendDate; if (t48 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "nextSendDate")); t49 = _this.get$_invoice_model$_$this()._remainingCycles; t50 = _this.get$_invoice_model$_$this()._dueDateDays; t51 = _this.get$_invoice_model$_$this()._invoiceId; t52 = _this.get$_invoice_model$_$this()._recurringId; t53 = _this.get$_invoice_model$_$this()._autoBillEnabled; if (t53 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "autoBillEnabled")); t54 = _this.get$_invoice_model$_$this()._filename; t55 = _this._recurringDates; t55 = t55 == null ? null : t55.build$0(0); t56 = _this.get$lineItems().build$0(0); t57 = _this.get$invitations().build$0(0); t58 = _this.get$documents().build$0(0); t59 = _this.get$activities().build$0(0); t60 = _this.get$_invoice_model$_$this()._invoice_model$_loadedAt; t61 = _this.get$_invoice_model$_$this()._invoice_model$_isChanged; t62 = _this.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t62 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t63 = _this.get$_invoice_model$_$this()._invoice_model$_updatedAt; if (t63 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t64 = _this.get$_invoice_model$_$this()._invoice_model$_archivedAt; if (t64 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t65 = _this.get$_invoice_model$_$this()._invoice_model$_isDeleted; t66 = _this.get$_invoice_model$_$this()._invoice_model$_createdUserId; t67 = _this.get$_invoice_model$_$this()._invoice_model$_assignedUserId; t68 = _this.get$_invoice_model$_$this()._invoice_model$_entityType; t69 = _this.get$_invoice_model$_$this()._invoice_model$_id; if (t69 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = Q._$InvoiceEntity$_(t59, t1, t64, t67, t28, t53, t2, t4, t62, t66, t33, t34, t35, t36, t37, t38, t39, t40, t29, t30, t31, t32, t10, t16, t8, t58, t11, t50, t68, t41, t54, t15, t46, t69, t57, t51, t24, t61, t65, t47, t56, t60, t48, t7, t3, t25, t27, t9, t13, t12, t55, t52, t49, t42, t43, t44, t45, t6, t5, t26, t18, t20, t22, t19, t21, t23, t14, t63, t17); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "recurringDates"; t1 = _this._recurringDates; if (t1 != null) t1.build$0(0); _$failedField = "lineItems"; _this.get$lineItems().build$0(0); _$failedField = "invitations"; _this.get$invitations().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); _$failedField = "activities"; _this.get$activities().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._invoice_model$_$v = t1; return _$result; } }; Q._$InvoiceItemEntity.prototype = { rebuild$1: function(updates) { var t1 = new Q.InvoiceItemEntityBuilder(); t1.get$_invoice_model$_$this()._productCost = 0; t1._invoice_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.InvoiceItemEntity && _this.productKey === other.productKey && _this.notes === other.notes && _this.cost === other.cost && _this.productCost === other.productCost && _this.quantity === other.quantity && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.typeId == other.typeId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.discount === other.discount && _this.taskId == other.taskId && _this.expenseId == other.expenseId && _this.createdAt == other.createdAt; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.productKey)), C.JSString_methods.get$hashCode(_this.notes)), C.JSNumber_methods.get$hashCode(_this.cost)), C.JSNumber_methods.get$hashCode(_this.productCost)), C.JSNumber_methods.get$hashCode(_this.quantity)), C.JSString_methods.get$hashCode(_this.taxName1)), C.JSNumber_methods.get$hashCode(_this.taxRate1)), C.JSString_methods.get$hashCode(_this.taxName2)), C.JSNumber_methods.get$hashCode(_this.taxRate2)), C.JSString_methods.get$hashCode(_this.taxName3)), C.JSNumber_methods.get$hashCode(_this.taxRate3)), J.get$hashCode$(_this.typeId)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSNumber_methods.get$hashCode(_this.discount)), J.get$hashCode$(_this.taskId)), J.get$hashCode$(_this.expenseId)), J.get$hashCode$(_this.createdAt))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceItemEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "productKey", _this.productKey); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "cost", _this.cost); t2.add$2(t1, "productCost", _this.productCost); t2.add$2(t1, "quantity", _this.quantity); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "discount", _this.discount); t2.add$2(t1, "taskId", _this.taskId); t2.add$2(t1, "expenseId", _this.expenseId); t2.add$2(t1, "createdAt", _this.createdAt); return t2.toString$0(t1); } }; Q.InvoiceItemEntityBuilder.prototype = { get$_invoice_model$_$this: function() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_productKey = $$v.productKey; _this._invoice_model$_notes = $$v.notes; _this._invoice_model$_cost = $$v.cost; _this._productCost = $$v.productCost; _this._invoice_model$_quantity = $$v.quantity; _this._taxName1 = $$v.taxName1; _this._taxRate1 = $$v.taxRate1; _this._taxName2 = $$v.taxName2; _this._taxRate2 = $$v.taxRate2; _this._taxName3 = $$v.taxName3; _this._taxRate3 = $$v.taxRate3; _this._invoice_model$_typeId = $$v.typeId; _this._invoice_model$_customValue1 = $$v.customValue1; _this._invoice_model$_customValue2 = $$v.customValue2; _this._invoice_model$_customValue3 = $$v.customValue3; _this._invoice_model$_customValue4 = $$v.customValue4; _this._discount = $$v.discount; _this._invoice_model$_taskId = $$v.taskId; _this._expenseId = $$v.expenseId; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, _this = this, _s17_ = "InvoiceItemEntity", _$result = _this._invoice_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_model$_$this()._invoice_model$_productKey; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "productKey")); t2 = _this.get$_invoice_model$_$this()._invoice_model$_notes; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "notes")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_cost; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "cost")); t4 = _this.get$_invoice_model$_$this()._productCost; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "productCost")); t5 = _this.get$_invoice_model$_$this()._invoice_model$_quantity; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "quantity")); t6 = _this.get$_invoice_model$_$this()._taxName1; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxName1")); t7 = _this.get$_invoice_model$_$this()._taxRate1; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxRate1")); t8 = _this.get$_invoice_model$_$this()._taxName2; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxName2")); t9 = _this.get$_invoice_model$_$this()._taxRate2; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxRate2")); t10 = _this.get$_invoice_model$_$this()._taxName3; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxName3")); t11 = _this.get$_invoice_model$_$this()._taxRate3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "taxRate3")); t12 = _this.get$_invoice_model$_$this()._invoice_model$_typeId; t13 = _this.get$_invoice_model$_$this()._invoice_model$_customValue1; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "customValue1")); t14 = _this.get$_invoice_model$_$this()._invoice_model$_customValue2; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "customValue2")); t15 = _this.get$_invoice_model$_$this()._invoice_model$_customValue3; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "customValue3")); t16 = _this.get$_invoice_model$_$this()._invoice_model$_customValue4; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "customValue4")); t17 = _this.get$_invoice_model$_$this()._discount; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "discount")); t18 = _this.get$_invoice_model$_$this()._invoice_model$_taskId; t19 = _this.get$_invoice_model$_$this()._expenseId; _$result = Q._$InvoiceItemEntity$_(t3, _this.get$_invoice_model$_$this()._invoice_model$_createdAt, t13, t14, t15, t16, t17, t19, t2, t4, t1, t5, t18, t6, t8, t10, t7, t9, t11, t12); } return _this._invoice_model$_$v = _$result; } }; Q._$InvitationEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.InvitationEntity && _this.key === other.key && _this.link === other.link && _this.contactId === other.contactId && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.entityType == other.entityType && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.key)), C.JSString_methods.get$hashCode(_this.link)), C.JSString_methods.get$hashCode(_this.contactId)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), J.get$hashCode$(_this.entityType)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvitationEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "key", _this.key); t2.add$2(t1, "link", _this.link); t2.add$2(t1, "contactId", _this.contactId); t2.add$2(t1, "sentDate", _this.sentDate); t2.add$2(t1, "viewedDate", _this.viewedDate); t2.add$2(t1, "openedDate", _this.openedDate); t2.add$2(t1, "emailStatus", _this.emailStatus); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$entityType: function() { return this.entityType; }, get$id: function(receiver) { return this.id; } }; Q.InvitationEntityBuilder.prototype = { get$id: function(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$_invoice_model$_$this: function() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_key = $$v.key; _this._invoice_model$_link = $$v.link; _this._contactId = $$v.contactId; _this._sentDate = $$v.sentDate; _this._viewedDate = $$v.viewedDate; _this._openedDate = $$v.openedDate; _this._emailStatus = $$v.emailStatus; _this._invoice_model$_isChanged = $$v.isChanged; _this._invoice_model$_createdAt = $$v.createdAt; _this._invoice_model$_updatedAt = $$v.updatedAt; _this._invoice_model$_archivedAt = $$v.archivedAt; _this._invoice_model$_isDeleted = $$v.isDeleted; _this._invoice_model$_createdUserId = $$v.createdUserId; _this._invoice_model$_assignedUserId = $$v.assignedUserId; _this._invoice_model$_entityType = $$v.entityType; _this._invoice_model$_id = $$v.id; _this._invoice_model$_$v = null; } return _this; } }; Q._$InvoiceScheduleEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.InvoiceScheduleEntity && this.sendDate === other.sendDate && this.dueDate === other.dueDate; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.sendDate)), C.JSString_methods.get$hashCode(_this.dueDate))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceScheduleEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "sendDate", this.sendDate); t2.add$2(t1, "dueDate", this.dueDate); return t2.toString$0(t1); } }; Q.InvoiceScheduleEntityBuilder.prototype = { get$_invoice_model$_$this: function() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._sendDate = $$v.sendDate; _this._dueDate = $$v.dueDate; _this._invoice_model$_$v = null; } return _this; } }; Q._$InvoiceHistoryEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.InvoiceHistoryEntity && _this.id === other.id && _this.activityId === other.activityId && _this.createdAt === other.createdAt && _this.amount === other.amount; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_model$__hashCode; return t1 == null ? _this._invoice_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.activityId)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSNumber_methods.get$hashCode(_this.amount))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceHistoryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "activityId", _this.activityId); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "amount", _this.amount); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; }, get$amount: function() { return this.amount; } }; Q.InvoiceHistoryEntityBuilder.prototype = { get$id: function(_) { return this.get$_invoice_model$_$this()._invoice_model$_id; }, get$amount: function() { return this.get$_invoice_model$_$this()._amount; }, get$_invoice_model$_$this: function() { var _this = this, $$v = _this._invoice_model$_$v; if ($$v != null) { _this._invoice_model$_id = $$v.id; _this._activityId = $$v.activityId; _this._invoice_model$_createdAt = $$v.createdAt; _this._amount = $$v.amount; _this._invoice_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, _this = this, _s20_ = "InvoiceHistoryEntity", _$result = _this._invoice_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_model$_$this()._invoice_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "id")); t2 = _this.get$_invoice_model$_$this()._activityId; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "activityId")); t3 = _this.get$_invoice_model$_$this()._invoice_model$_createdAt; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "createdAt")); t4 = _this.get$_invoice_model$_$this()._amount; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "amount")); _$result = new Q._$InvoiceHistoryEntity(t1, t2, t3, t4); } return _this._invoice_model$_$v = _$result; } }; Q._InvitationEntity_Object_BaseEntity.prototype = {}; Q._InvitationEntity_Object_BaseEntity_SelectableEntity.prototype = {}; Q._InvoiceEntity_Object_BaseEntity.prototype = {}; Q._InvoiceEntity_Object_BaseEntity_SelectableEntity.prototype = {}; Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal.prototype = {}; Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient.prototype = {}; X.CalculateInvoiceTotal.prototype = { _calculateTaxAmount$4: function(amount, rate, useInclusiveTaxes, precision) { return Y.round(useInclusiveTaxes ? amount - amount / (1 + rate / 100) : amount * rate / 100, precision); }, calculateTaxes$2$precision$useInclusiveTaxes: function(precision, useInclusiveTaxes) { var map, t2, t3, _this = this, t1 = {}; t1.total = _this.calculateSubtotal$1$precision(precision); t1.taxAmount = null; map = P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_double); J.forEach$1$ax(_this.lineItems._list, new X.CalculateInvoiceTotal_calculateTaxes_closure(t1, _this, precision, useInclusiveTaxes, map)); t2 = _this.discount; if (t2 !== 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - Y.round(t2, precision); else t1.total = t3 - Y.round(t3 * t2 / 100, precision); } t2 = _this.customSurcharge1; if (t2 !== 0 && _this.customTaxes1) t1.total = t1.total + Y.round(t2, precision); t2 = _this.customSurcharge2; if (t2 !== 0 && _this.customTaxes2) t1.total = t1.total + Y.round(t2, precision); t2 = _this.taxRate1; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName1, new X.CalculateInvoiceTotal_calculateTaxes_closure0(t1), new X.CalculateInvoiceTotal_calculateTaxes_closure1(t1)); } t2 = _this.taxRate2; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName2, new X.CalculateInvoiceTotal_calculateTaxes_closure2(t1), new X.CalculateInvoiceTotal_calculateTaxes_closure3(t1)); } t2 = _this.taxRate3; if (t2 !== 0) { t1.taxAmount = _this._calculateTaxAmount$4(t1.total, t2, useInclusiveTaxes, precision); map.update$3$ifAbsent(map, _this.taxName3, new X.CalculateInvoiceTotal_calculateTaxes_closure4(t1), new X.CalculateInvoiceTotal_calculateTaxes_closure5(t1)); } return map; }, getTaxable$0: function() { var t2, t3, total, _this = this, t1 = {}; t1.total = 0; J.forEach$1$ax(_this.lineItems._list, new X.CalculateInvoiceTotal_getTaxable_closure(t1, _this)); t2 = _this.discount; if (t2 > 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - t2; else { total = t3 * ((100 - t2) / 100); t1.total = total; t1.total = Y.round(total, 2); } } if (_this.customTaxes1) t1.total = t1.total + _this.customSurcharge1; if (_this.customTaxes2) t1.total = t1.total + _this.customSurcharge2; if (_this.customTaxes3) t1.total = t1.total + _this.customSurcharge3; if (_this.customTaxes4) t1.total = t1.total + _this.customSurcharge4; return t1.total; }, getItemTaxable$3: function(item, invoiceTotal, precision) { var t2, qty = Y.round(item.quantity, 5), cost = Y.round(item.cost, 4), itemDiscount = Y.round(item.discount, precision), lineTotal = qty * cost, t1 = this.discount; if (t1 !== 0) if (this.isAmountDiscount) { t2 = invoiceTotal + t1; if (t2 !== 0) lineTotal -= invoiceTotal !== 0 ? lineTotal / t2 * t1 : 0; } else lineTotal *= (100 - t1) / 100; if (itemDiscount !== 0) lineTotal = this.isAmountDiscount ? lineTotal - itemDiscount : lineTotal - lineTotal * itemDiscount / 100; return Y.round(lineTotal, precision); }, calculateTotal$1$precision: function(precision) { var t2, t3, t4, t5, taxAmount1, taxAmount2, _this = this, t1 = {}; t1.total = _this.calculateSubtotal$1$precision(precision); t1.itemTax = 0; J.forEach$1$ax(_this.lineItems._list, new X.CalculateInvoiceTotal_calculateTotal_closure(t1, _this, precision)); t2 = _this.discount; if (t2 !== 0) { t3 = t1.total; if (_this.isAmountDiscount) t1.total = t3 - Y.round(t2, precision); else t1.total = t3 - Y.round(t3 * t2 / 100, precision); } t2 = _this.customSurcharge1; t3 = t2 !== 0; if (t3 && _this.customTaxes1) t1.total = t1.total + Y.round(t2, precision); t4 = _this.customSurcharge2; t5 = t4 !== 0; if (t5 && _this.customTaxes2) t1.total = t1.total + Y.round(t4, precision); if (!_this.usesInclusiveTaxes) { taxAmount1 = Y.round(t1.total * _this.taxRate1 / 100, precision); taxAmount2 = Y.round(t1.total * _this.taxRate2 / 100, precision); t1.total = t1.total + (t1.itemTax + taxAmount1 + taxAmount2); } if (t3 && !_this.customTaxes1) t1.total = t1.total + Y.round(t2, precision); if (t5 && !_this.customTaxes2) t1.total = t1.total + Y.round(t4, precision); return t1.total; }, calculateSubtotal$1$precision: function(precision) { var t1 = {}; t1.total = 0; J.forEach$1$ax(this.lineItems._list, new X.CalculateInvoiceTotal_calculateSubtotal_closure(t1, this, precision)); return t1.total; } }; X.CalculateInvoiceTotal_calculateTaxes_closure.prototype = { call$1: function(item) { var t4, _this = this, taxRate1 = Y.round(item.taxRate1, 3), taxRate2 = Y.round(item.taxRate2, 3), taxRate3 = Y.round(item.taxRate3, 3), t1 = _this.$this, t2 = _this._box_0, t3 = _this.precision, lineTotal = t1.getItemTaxable$3(item, t2.total, t3); if (taxRate1 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate1, _this.useInclusiveTaxes, t3); t4 = _this.map; t4.update$3$ifAbsent(t4, item.taxName1, new X.CalculateInvoiceTotal_calculateTaxes__closure(t2), new X.CalculateInvoiceTotal_calculateTaxes__closure0(t2)); } if (taxRate2 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate2, _this.useInclusiveTaxes, t3); t4 = _this.map; t4.update$3$ifAbsent(t4, item.taxName2, new X.CalculateInvoiceTotal_calculateTaxes__closure1(t2), new X.CalculateInvoiceTotal_calculateTaxes__closure2(t2)); } if (taxRate3 !== 0) { t2.taxAmount = t1._calculateTaxAmount$4(lineTotal, taxRate3, _this.useInclusiveTaxes, t3); t1 = _this.map; t1.update$3$ifAbsent(t1, item.taxName3, new X.CalculateInvoiceTotal_calculateTaxes__closure3(t2), new X.CalculateInvoiceTotal_calculateTaxes__closure4(t2)); } }, $signature: 216 }; X.CalculateInvoiceTotal_calculateTaxes__closure.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes__closure0.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_calculateTaxes__closure1.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes__closure2.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_calculateTaxes__closure3.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes__closure4.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_calculateTaxes_closure0.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes_closure1.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_calculateTaxes_closure2.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes_closure3.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_calculateTaxes_closure4.prototype = { call$1: function(value) { return value + this._box_0.taxAmount; }, $signature: 171 }; X.CalculateInvoiceTotal_calculateTaxes_closure5.prototype = { call$0: function() { return this._box_0.taxAmount; }, $signature: 193 }; X.CalculateInvoiceTotal_getTaxable_closure.prototype = { call$1: function(invoiceItem) { var lineTotal = invoiceItem.quantity * invoiceItem.cost, t1 = invoiceItem.discount; if (t1 !== 0) lineTotal = this.$this.isAmountDiscount ? lineTotal - t1 : lineTotal - lineTotal * t1 / 100; this._box_0.total += lineTotal; }, $signature: 216 }; X.CalculateInvoiceTotal_calculateTotal_closure.prototype = { call$1: function(item) { var t2, t3, _this = this, qty = Y.round(item.quantity, 4), cost = Y.round(item.cost, 4), t1 = _this.precision, itemDiscount = Y.round(item.discount, t1), taxRate1 = Y.round(item.taxRate1, 3), taxRate2 = Y.round(item.taxRate2, 3), taxRate3 = Y.round(item.taxRate3, 3), lineTotal = qty * cost; if (itemDiscount !== 0) lineTotal = _this.$this.isAmountDiscount ? lineTotal - itemDiscount : lineTotal - Y.round(lineTotal * itemDiscount / 100, 4); t2 = _this.$this; t3 = t2.discount; if (t3 !== 0) if (t2.isAmountDiscount) { t2 = _this._box_0.total; if (t2 !== 0) lineTotal -= Y.round(lineTotal / t2 * t3, 4); } if (taxRate1 !== 0) { t2 = _this._box_0; t2.itemTax = t2.itemTax + Y.round(lineTotal * taxRate1 / 100, t1); } if (taxRate2 !== 0) { t2 = _this._box_0; t2.itemTax = t2.itemTax + Y.round(lineTotal * taxRate2 / 100, t1); } if (taxRate3 !== 0) { t2 = _this._box_0; t2.itemTax = t2.itemTax + Y.round(lineTotal * taxRate3 / 100, t1); } }, $signature: 216 }; X.CalculateInvoiceTotal_calculateSubtotal_closure.prototype = { call$1: function(item) { var t2, qty = Y.round(item.quantity, 4), cost = Y.round(item.cost, 4), t1 = this.precision, discount = Y.round(item.discount, t1), lineTotal = qty * cost; if (discount !== 0) lineTotal = this.$this.isAmountDiscount ? lineTotal - discount : lineTotal - Y.round(lineTotal * discount / 100, 4); t2 = this._box_0; t2.total = t2.total + Y.round(lineTotal, t1); }, $signature: 216 }; D.EntityAction.prototype = { toString$0: function(_) { return A.toSnakeCase(this.super$EnumClass$toString(0)); }, toApiParam$0: function() { var value = A.toSnakeCase(this.super$EnumClass$toString(0)); if (C.JSString_methods.startsWith$1(value, "email")) return "email"; return value; } }; F.PaymentListResponse.prototype = {}; F.PaymentItemResponse.prototype = {}; F.PaymentEntity.prototype = { get$entityType: function() { return C.EntityType_payment; }, get$calculatedStatusId: function() { var t1 = this.applied; if (t1 < this.amount) return t1 === 0 ? "-1" : "-2"; return this.statusId; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.number, _this.transactionReference, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.number, _this.transactionReference, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction), t1 = !_this.isDeleted; if (t1) if (userCompany.canEditEntity$1(_this)) { if (!multiselect) { if (includeEdit) actions.push(C.EntityAction_edit); if (_this.applied < _this.amount) actions.push(C.EntityAction_apply); if (_this.get$completedAmount() > 0) actions.push(C.EntityAction_refund); } if (client != null && client.get$hasEmailAddress()) actions.push(C.EntityAction_emailPayment); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); if (userCompany.canEditEntity$1(_this) && _this.get$isArchived()) actions.push(C.EntityAction_restore); if (userCompany.canEditEntity$1(_this) && !_this.get$isArchived() && t1) actions.push(C.EntityAction_archive); if (userCompany.canEditEntity$1(_this)) t1 = !_this.get$isArchived() && t1 || _this.get$isArchived(); else t1 = false; if (t1) actions.push(C.EntityAction_delete); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayName: function() { return this.number; }, get$listDisplayAmount: function() { return this.amount; }, get$invoicePaymentables: function() { var t1 = J.where$1$ax(this.paymentables._list, new F.PaymentEntity_invoicePaymentables_closure()); return P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, get$creditPaymentables: function() { var t1 = J.where$1$ax(this.paymentables._list, new F.PaymentEntity_creditPaymentables_closure()); return P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, get$invoiceId: function() { var invoicePaymentables = J.firstWhere$2$orElse$ax(this.paymentables._list, new F.PaymentEntity_invoiceId_closure(), null); return invoicePaymentables.get$isEmpty(invoicePaymentables) ? null : invoicePaymentables.invoiceId; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, get$completedAmount: function() { var _this = this; if (_this.isDeleted) return 0; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["2", "3"], type$.JSArray_legacy_String), _this.statusId)) return 0; return _this.amount - _this.refunded; } }; F.PaymentEntity_invoicePaymentables_closure.prototype = { call$1: function(p) { return p.get$entityType() === C.EntityType_invoice; }, $signature: 196 }; F.PaymentEntity_creditPaymentables_closure.prototype = { call$1: function(p) { return p.get$entityType() === C.EntityType_credit; }, $signature: 196 }; F.PaymentEntity_invoiceId_closure.prototype = { call$1: function(p) { return p.get$entityType() === C.EntityType_invoice; }, $signature: 196 }; F.PaymentableEntity.prototype = { get$isEmpty: function(_) { var t1 = this.invoiceId; return (t1 == null ? "" : t1).length === 0 && this.amount === 0; }, get$entityType: function() { var t1 = this.invoiceId; return (t1 == null ? "" : t1).length === 0 ? C.EntityType_credit : C.EntityType_invoice; } }; F._$PaymentListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_ORM)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new F.PaymentListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentEntity, t3 = type$.ListBuilder_legacy_PaymentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._payment_model$_data = t6; result._payment_model$_$v = null; } t4 = result._payment_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._payment_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_ORM)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_NQk0; }, get$wireName: function() { return "PaymentListResponse"; } }; F._$PaymentItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_CxZ0)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new F.PaymentItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new F.PaymentEntityBuilder(); t3._payment_model$_$v = t2; result._payment_model$_data = t3; result._payment_model$_$v = null; } t2 = result._payment_model$_data; if (t2 == null) t2 = result._payment_model$_data = new F.PaymentEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_CxZ0)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._payment_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_puA; }, get$wireName: function() { return "PaymentItemResponse"; } }; F._$PaymentEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["amount", serializers.serialize$2$specifiedType(object.amount, C.FullType_MME), "applied", serializers.serialize$2$specifiedType(object.applied, C.FullType_MME), "refunded", serializers.serialize$2$specifiedType(object.refunded, C.FullType_MME), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, C.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, C.FullType_h8g), "transaction_reference", serializers.serialize$2$specifiedType(object.transactionReference, C.FullType_h8g), "date", serializers.serialize$2$specifiedType(object.date, C.FullType_h8g), "type_id", serializers.serialize$2$specifiedType(object.typeId, C.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, C.FullType_MME), "exchange_currency_id", serializers.serialize$2$specifiedType(object.exchangeCurrencyId, C.FullType_h8g), "is_manual", serializers.serialize$2$specifiedType(object.isManual, C.FullType_MtR), "project_id", serializers.serialize$2$specifiedType(object.projectId, C.FullType_h8g), "vendor_id", serializers.serialize$2$specifiedType(object.vendorId, C.FullType_h8g), "invitation_id", serializers.serialize$2$specifiedType(object.invitationId, C.FullType_h8g), "client_contact_id", serializers.serialize$2$specifiedType(object.clientContactId, C.FullType_h8g), "company_gateway_id", serializers.serialize$2$specifiedType(object.companyGatewayId, C.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, C.FullType_h8g), "paymentables", serializers.serialize$2$specifiedType(object.paymentables, C.FullType_U06), "invoices", serializers.serialize$2$specifiedType(object.invoices, C.FullType_U06), "credits", serializers.serialize$2$specifiedType(object.credits, C.FullType_U06), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isForInvoice; if (value != null) { result.push("isForInvoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isApplying; if (value != null) { result.push("isApplying"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.sendEmail; if (value != null) { result.push("sendEmail"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.gatewayRefund; if (value != null) { result.push("gatewayRefund"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new F.PaymentEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentableEntity, t3 = type$.ListBuilder_legacy_PaymentableEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "amount": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_amount = t4; break; case "applied": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_payment_model$_$this()._applied = t4; break; case "refunded": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_payment_model$_$this()._refunded = t4; break; case "number": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_number = t4; break; case "client_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_clientId = t4; break; case "status_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_statusId = t4; break; case "transaction_reference": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._transactionReference = t4; break; case "date": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_date = t4; break; case "type_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._typeId = t4; break; case "private_notes": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_privateNotes = t4; break; case "custom_value1": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue1 = t4; break; case "custom_value2": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue2 = t4; break; case "custom_value3": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue3 = t4; break; case "custom_value4": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_customValue4 = t4; break; case "exchange_rate": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_exchangeRate = t4; break; case "exchange_currency_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._exchangeCurrencyId = t4; break; case "is_manual": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._isManual = t4; break; case "project_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._projectId = t4; break; case "vendor_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._vendorId = t4; break; case "invitation_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._invitationId = t4; break; case "client_contact_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._clientContactId = t4; break; case "company_gateway_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._companyGatewayId = t4; break; case "currency_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_currencyId = t4; break; case "isForInvoice": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._isForInvoice = t4; break; case "isApplying": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._isApplying = t4; break; case "sendEmail": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._sendEmail = t4; break; case "gatewayRefund": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._gatewayRefund = t4; break; case "paymentables": t4 = result.get$_payment_model$_$this(); t5 = t4._paymentables; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._paymentables = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "invoices": t4 = result.get$_payment_model$_$this(); t5 = t4._payment_model$_invoices; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._payment_model$_invoices = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "credits": t4 = result.get$_payment_model$_$this(); t5 = t4._payment_model$_credits; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._payment_model$_credits = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_U06)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._payment_model$_isChanged = t4; break; case "created_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_createdAt = t4; break; case "updated_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_updatedAt = t4; break; case "archived_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_archivedAt = t4; break; case "is_deleted": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_model$_$this()._payment_model$_isDeleted = t4; break; case "user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_createdUserId = t4; break; case "assigned_user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_assignedUserId = t4; break; case "id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_6PY; }, get$wireName: function() { return "PaymentEntity"; } }; F._$PaymentableEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["amount", serializers.serialize$2$specifiedType(object.amount, C.FullType_MME), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.createdAt; if (value != null) { result.push("created_at"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.updatedAt; if (value != null) { result.push("updated_at"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.invoiceId; if (value != null) { result.push("invoice_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.creditId; if (value != null) { result.push("credit_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new F.PaymentableEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_model$_$this()._payment_model$_updatedAt = t1; break; case "invoice_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_invoiceId = t1; break; case "credit_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._creditId = t1; break; case "amount": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_payment_model$_$this()._payment_model$_amount = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_model$_$this()._payment_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_FIw; }, get$wireName: function() { return "PaymentableEntity"; } }; F._$PaymentListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.PaymentListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._payment_model$__hashCode; return t1 == null ? this._payment_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; F.PaymentListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_model$_$v = null; } t1 = _this._payment_model$_data; return t1 == null ? _this._payment_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "PaymentListResponse", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new F._$PaymentListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_model$_$v = t1; return _$result; } }; F._$PaymentItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.PaymentItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._payment_model$__hashCode; return t1 == null ? this._payment_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; F.PaymentItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new F.PaymentEntityBuilder(); t2._payment_model$_$v = t1; _this._payment_model$_data = t2; _this._payment_model$_$v = null; } t1 = _this._payment_model$_data; return t1 == null ? _this._payment_model$_data = new F.PaymentEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "PaymentItemResponse", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new F._$PaymentItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_model$_$v = t1; return _$result; } }; F._$PaymentEntity.prototype = { rebuild$1: function(updates) { var t1 = new F.PaymentEntityBuilder(); t1._payment_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof F.PaymentEntity && _this.amount === other.amount && _this.applied === other.applied && _this.refunded === other.refunded && _this.number === other.number && _this.clientId === other.clientId && _this.statusId === other.statusId && _this.transactionReference === other.transactionReference && _this.date == other.date && _this.typeId == other.typeId && _this.privateNotes === other.privateNotes && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.exchangeRate === other.exchangeRate && _this.exchangeCurrencyId === other.exchangeCurrencyId && _this.isManual === other.isManual && _this.projectId === other.projectId && _this.vendorId === other.vendorId && _this.invitationId === other.invitationId && _this.clientContactId === other.clientContactId && _this.companyGatewayId === other.companyGatewayId && _this.currencyId === other.currencyId && _this.isForInvoice == other.isForInvoice && _this.isApplying == other.isApplying && _this.sendEmail == other.sendEmail && _this.gatewayRefund == other.gatewayRefund && J.$eq$(_this.paymentables, other.paymentables) && J.$eq$(_this.invoices, other.invoices) && J.$eq$(_this.credits, other.credits) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_model$__hashCode; return t1 == null ? _this._payment_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSNumber_methods.get$hashCode(_this.amount)), C.JSNumber_methods.get$hashCode(_this.applied)), C.JSNumber_methods.get$hashCode(_this.refunded)), C.JSString_methods.get$hashCode(_this.number)), C.JSString_methods.get$hashCode(_this.clientId)), C.JSString_methods.get$hashCode(_this.statusId)), C.JSString_methods.get$hashCode(_this.transactionReference)), J.get$hashCode$(_this.date)), J.get$hashCode$(_this.typeId)), C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSNumber_methods.get$hashCode(_this.exchangeRate)), C.JSString_methods.get$hashCode(_this.exchangeCurrencyId)), C.JSBool_methods.get$hashCode(_this.isManual)), C.JSString_methods.get$hashCode(_this.projectId)), C.JSString_methods.get$hashCode(_this.vendorId)), C.JSString_methods.get$hashCode(_this.invitationId)), C.JSString_methods.get$hashCode(_this.clientContactId)), C.JSString_methods.get$hashCode(_this.companyGatewayId)), C.JSString_methods.get$hashCode(_this.currencyId)), J.get$hashCode$(_this.isForInvoice)), J.get$hashCode$(_this.isApplying)), J.get$hashCode$(_this.sendEmail)), J.get$hashCode$(_this.gatewayRefund)), J.get$hashCode$(_this.paymentables)), J.get$hashCode$(_this.invoices)), J.get$hashCode$(_this.credits)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "applied", _this.applied); t2.add$2(t1, "refunded", _this.refunded); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "transactionReference", _this.transactionReference); t2.add$2(t1, "date", _this.date); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "exchangeCurrencyId", _this.exchangeCurrencyId); t2.add$2(t1, "isManual", _this.isManual); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "vendorId", _this.vendorId); t2.add$2(t1, "invitationId", _this.invitationId); t2.add$2(t1, "clientContactId", _this.clientContactId); t2.add$2(t1, "companyGatewayId", _this.companyGatewayId); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "isForInvoice", _this.isForInvoice); t2.add$2(t1, "isApplying", _this.isApplying); t2.add$2(t1, "sendEmail", _this.sendEmail); t2.add$2(t1, "gatewayRefund", _this.gatewayRefund); t2.add$2(t1, "paymentables", _this.paymentables); t2.add$2(t1, "invoices", _this.invoices); t2.add$2(t1, "credits", _this.credits); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount: function() { return this.amount; }, get$clientId: function(receiver) { return this.clientId; }, get$date: function() { return this.date; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; F.PaymentEntityBuilder.prototype = { get$amount: function() { return this.get$_payment_model$_$this()._payment_model$_amount; }, get$date: function() { return this.get$_payment_model$_$this()._payment_model$_date; }, get$paymentables: function() { var t1 = this.get$_payment_model$_$this(), t2 = t1._paymentables; return t2 == null ? t1._paymentables = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$invoices: function() { var t1 = this.get$_payment_model$_$this(), t2 = t1._payment_model$_invoices; return t2 == null ? t1._payment_model$_invoices = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$credits: function() { var t1 = this.get$_payment_model$_$this(), t2 = t1._payment_model$_credits; return t2 == null ? t1._payment_model$_credits = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity) : t2; }, get$id: function(_) { return this.get$_payment_model$_$this()._payment_model$_id; }, get$_payment_model$_$this: function() { var t1, _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { _this._payment_model$_amount = $$v.amount; _this._applied = $$v.applied; _this._refunded = $$v.refunded; _this._payment_model$_number = $$v.number; _this._payment_model$_clientId = $$v.clientId; _this._payment_model$_statusId = $$v.statusId; _this._transactionReference = $$v.transactionReference; _this._payment_model$_date = $$v.date; _this._typeId = $$v.typeId; _this._payment_model$_privateNotes = $$v.privateNotes; _this._payment_model$_customValue1 = $$v.customValue1; _this._payment_model$_customValue2 = $$v.customValue2; _this._payment_model$_customValue3 = $$v.customValue3; _this._payment_model$_customValue4 = $$v.customValue4; _this._payment_model$_exchangeRate = $$v.exchangeRate; _this._exchangeCurrencyId = $$v.exchangeCurrencyId; _this._isManual = $$v.isManual; _this._projectId = $$v.projectId; _this._vendorId = $$v.vendorId; _this._invitationId = $$v.invitationId; _this._clientContactId = $$v.clientContactId; _this._companyGatewayId = $$v.companyGatewayId; _this._payment_model$_currencyId = $$v.currencyId; _this._isForInvoice = $$v.isForInvoice; _this._isApplying = $$v.isApplying; _this._sendEmail = $$v.sendEmail; _this._gatewayRefund = $$v.gatewayRefund; t1 = $$v.paymentables; t1.toString; _this._paymentables = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invoices; t1.toString; _this._payment_model$_invoices = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.credits; t1.toString; _this._payment_model$_credits = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_model$_isChanged = $$v.isChanged; _this._payment_model$_createdAt = $$v.createdAt; _this._payment_model$_updatedAt = $$v.updatedAt; _this._payment_model$_archivedAt = $$v.archivedAt; _this._payment_model$_isDeleted = $$v.isDeleted; _this._payment_model$_createdUserId = $$v.createdUserId; _this._payment_model$_assignedUserId = $$v.assignedUserId; _this._payment_model$_id = $$v.id; _this._payment_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, exception, _this = this, _s13_ = "PaymentEntity", _$result = null; try { _$result0 = _this._payment_model$_$v; if (_$result0 == null) { t1 = _this.get$_payment_model$_$this()._payment_model$_amount; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "amount")); t2 = _this.get$_payment_model$_$this()._applied; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "applied")); t3 = _this.get$_payment_model$_$this()._refunded; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "refunded")); t4 = _this.get$_payment_model$_$this()._payment_model$_number; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "number")); t5 = _this.get$_payment_model$_$this()._payment_model$_clientId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientId")); t6 = _this.get$_payment_model$_$this()._payment_model$_statusId; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "statusId")); t7 = _this.get$_payment_model$_$this()._transactionReference; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "transactionReference")); t8 = _this.get$_payment_model$_$this()._payment_model$_date; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "date")); t9 = _this.get$_payment_model$_$this()._typeId; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "typeId")); t10 = _this.get$_payment_model$_$this()._payment_model$_privateNotes; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "privateNotes")); t11 = _this.get$_payment_model$_$this()._payment_model$_customValue1; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t12 = _this.get$_payment_model$_$this()._payment_model$_customValue2; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t13 = _this.get$_payment_model$_$this()._payment_model$_customValue3; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t14 = _this.get$_payment_model$_$this()._payment_model$_customValue4; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t15 = _this.get$_payment_model$_$this()._payment_model$_exchangeRate; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "exchangeRate")); t16 = _this.get$_payment_model$_$this()._exchangeCurrencyId; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "exchangeCurrencyId")); t17 = _this.get$_payment_model$_$this()._isManual; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "isManual")); t18 = _this.get$_payment_model$_$this()._projectId; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "projectId")); t19 = _this.get$_payment_model$_$this()._vendorId; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "vendorId")); t20 = _this.get$_payment_model$_$this()._invitationId; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "invitationId")); t21 = _this.get$_payment_model$_$this()._clientContactId; if (t21 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientContactId")); t22 = _this.get$_payment_model$_$this()._companyGatewayId; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "companyGatewayId")); t23 = _this.get$_payment_model$_$this()._payment_model$_currencyId; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "currencyId")); t24 = _this.get$_payment_model$_$this()._isForInvoice; t25 = _this.get$_payment_model$_$this()._isApplying; t26 = _this.get$_payment_model$_$this()._sendEmail; t27 = _this.get$_payment_model$_$this()._gatewayRefund; t28 = _this.get$paymentables().build$0(0); t29 = _this.get$invoices().build$0(0); t30 = _this.get$credits().build$0(0); t31 = _this.get$_payment_model$_$this()._payment_model$_isChanged; t32 = _this.get$_payment_model$_$this()._payment_model$_createdAt; if (t32 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t33 = _this.get$_payment_model$_$this()._payment_model$_updatedAt; if (t33 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t34 = _this.get$_payment_model$_$this()._payment_model$_archivedAt; if (t34 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t35 = _this.get$_payment_model$_$this()._payment_model$_isDeleted; t36 = _this.get$_payment_model$_$this()._payment_model$_createdUserId; t37 = _this.get$_payment_model$_$this()._payment_model$_assignedUserId; t38 = _this.get$_payment_model$_$this()._payment_model$_id; if (t38 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = F._$PaymentEntity$_(t1, t2, t34, t37, t21, t5, t22, t32, t36, t30, t23, t11, t12, t13, t14, t8, t16, t15, t27, t38, t20, t29, t25, t31, t35, t24, t17, t4, t28, t10, t18, t3, t26, t6, t7, t9, t33, t19); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "paymentables"; _this.get$paymentables().build$0(0); _$failedField = "invoices"; _this.get$invoices().build$0(0); _$failedField = "credits"; _this.get$credits().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_model$_$v = t1; return _$result; } }; F._$PaymentableEntity.prototype = { rebuild$1: function(updates) { var t1 = new F.PaymentableEntityBuilder(); t1._payment_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof F.PaymentableEntity && _this.createdAt == other.createdAt && _this.updatedAt == other.updatedAt && _this.invoiceId == other.invoiceId && _this.creditId == other.creditId && _this.amount === other.amount && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_model$__hashCode; return t1 == null ? _this._payment_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.createdAt)), J.get$hashCode$(_this.updatedAt)), J.get$hashCode$(_this.invoiceId)), J.get$hashCode$(_this.creditId)), C.JSNumber_methods.get$hashCode(_this.amount)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentableEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "creditId", _this.creditId); t2.add$2(t1, "amount", _this.amount); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$amount: function() { return this.amount; }, get$id: function(receiver) { return this.id; } }; F.PaymentableEntityBuilder.prototype = { get$amount: function() { return this.get$_payment_model$_$this()._payment_model$_amount; }, get$id: function(_) { return this.get$_payment_model$_$this()._payment_model$_id; }, get$_payment_model$_$this: function() { var _this = this, $$v = _this._payment_model$_$v; if ($$v != null) { _this._payment_model$_createdAt = $$v.createdAt; _this._payment_model$_updatedAt = $$v.updatedAt; _this._payment_model$_invoiceId = $$v.invoiceId; _this._creditId = $$v.creditId; _this._payment_model$_amount = $$v.amount; _this._payment_model$_id = $$v.id; _this._payment_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, _this = this, _s17_ = "PaymentableEntity", _$result = _this._payment_model$_$v; if (_$result == null) { t1 = _this.get$_payment_model$_$this()._payment_model$_createdAt; t2 = _this.get$_payment_model$_$this()._payment_model$_updatedAt; t3 = _this.get$_payment_model$_$this()._payment_model$_invoiceId; t4 = _this.get$_payment_model$_$this()._creditId; t5 = _this.get$_payment_model$_$this()._payment_model$_amount; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "amount")); t6 = _this.get$_payment_model$_$this()._payment_model$_id; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "id")); _$result = F._$PaymentableEntity$_(t5, t1, t4, t6, t3, t2); } return _this._payment_model$_$v = _$result; } }; F._PaymentEntity_Object_BaseEntity.prototype = {}; F._PaymentEntity_Object_BaseEntity_SelectableEntity.prototype = {}; F._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; F._PaymentableEntity_Object_SelectableEntity.prototype = {}; X.PaymentTermListResponse.prototype = {}; X.PaymentTermItemResponse.prototype = {}; X.PaymentTermEntity.prototype = { get$entityType: function() { return C.EntityType_paymentTerm; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo(["" + this.numDays], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; } }; X._$PaymentTermListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_kvD)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new X.PaymentTermListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentTermEntity, t3 = type$.ListBuilder_legacy_PaymentTermEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_term_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._payment_term_model$_data = t6; result._payment_term_model$_$v = null; } t4 = result._payment_term_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._payment_term_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_kvD)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yNA0; }, get$wireName: function() { return "PaymentTermListResponse"; } }; X._$PaymentTermItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_y87)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new X.PaymentTermItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentTermEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_term_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new X.PaymentTermEntityBuilder(); t3._payment_term_model$_$v = t2; result._payment_term_model$_data = t3; result._payment_term_model$_$v = null; } t2 = result._payment_term_model$_data; if (t2 == null) t2 = result._payment_term_model$_data = new X.PaymentTermEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_y87)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._payment_term_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yNA; }, get$wireName: function() { return "PaymentTermItemResponse"; } }; X._$PaymentTermEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "num_days", serializers.serialize$2$specifiedType(object.numDays, C.FullType_kjq), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new X.PaymentTermEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_name = t1; break; case "num_days": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_term_model$_$this()._numDays = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_term_model$_$this()._payment_term_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_term_model$_$this()._payment_term_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_term_model$_$this()._payment_term_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_term_model$_$this()._payment_term_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wTh; }, get$wireName: function() { return "PaymentTermEntity"; } }; X._$PaymentTermListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.PaymentTermListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._payment_term_model$__hashCode; return t1 == null ? this._payment_term_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; X.PaymentTermListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_term_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_term_model$_$v = null; } t1 = _this._payment_term_model$_data; return t1 == null ? _this._payment_term_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTermEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "PaymentTermListResponse", _$result = null; try { _$result0 = _this._payment_term_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new X._$PaymentTermListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_term_model$_$v = t1; return _$result; } }; X._$PaymentTermItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.PaymentTermItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._payment_term_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._payment_term_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; X.PaymentTermItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new X.PaymentTermEntityBuilder(); t2._payment_term_model$_$v = t1; _this._payment_term_model$_data = t2; _this._payment_term_model$_$v = null; } t1 = _this._payment_term_model$_data; return t1 == null ? _this._payment_term_model$_data = new X.PaymentTermEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._payment_term_model$_$v; if (_$result0 == null) _$result0 = new X._$PaymentTermItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("PaymentTermItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_term_model$_$v = t1; return _$result; } }; X._$PaymentTermEntity.prototype = { rebuild$1: function(updates) { var t1 = new X.PaymentTermEntityBuilder(); t1._payment_term_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof X.PaymentTermEntity && _this.name === other.name && _this.numDays === other.numDays && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_term_model$__hashCode; return t1 == null ? _this._payment_term_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSInt_methods.get$hashCode(_this.numDays)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "numDays", _this.numDays); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; X.PaymentTermEntityBuilder.prototype = { get$name: function(_) { return this.get$_payment_term_model$_$this()._payment_term_model$_name; }, get$id: function(_) { return this.get$_payment_term_model$_$this()._payment_term_model$_id; }, get$_payment_term_model$_$this: function() { var _this = this, $$v = _this._payment_term_model$_$v; if ($$v != null) { _this._payment_term_model$_name = $$v.name; _this._numDays = $$v.numDays; _this._payment_term_model$_isChanged = $$v.isChanged; _this._payment_term_model$_createdAt = $$v.createdAt; _this._payment_term_model$_updatedAt = $$v.updatedAt; _this._payment_term_model$_archivedAt = $$v.archivedAt; _this._payment_term_model$_isDeleted = $$v.isDeleted; _this._payment_term_model$_createdUserId = $$v.createdUserId; _this._payment_term_model$_assignedUserId = $$v.assignedUserId; _this._payment_term_model$_id = $$v.id; _this._payment_term_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s17_ = "PaymentTermEntity", _$result = _this._payment_term_model$_$v; if (_$result == null) { t1 = _this.get$_payment_term_model$_$this()._payment_term_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "name")); t2 = _this.get$_payment_term_model$_$this()._numDays; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "numDays")); t3 = _this.get$_payment_term_model$_$this()._payment_term_model$_isChanged; t4 = _this.get$_payment_term_model$_$this()._payment_term_model$_createdAt; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "createdAt")); t5 = _this.get$_payment_term_model$_$this()._payment_term_model$_updatedAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "updatedAt")); t6 = _this.get$_payment_term_model$_$this()._payment_term_model$_archivedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "archivedAt")); t7 = _this.get$_payment_term_model$_$this()._payment_term_model$_isDeleted; t8 = _this.get$_payment_term_model$_$this()._payment_term_model$_createdUserId; t9 = _this.get$_payment_term_model$_$this()._payment_term_model$_assignedUserId; t10 = _this.get$_payment_term_model$_$this()._payment_term_model$_id; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "id")); _$result = X._$PaymentTermEntity$_(t6, t9, t4, t8, t10, t3, t7, t1, t2, t5); } return _this._payment_term_model$_$v = _$result; } }; X._PaymentTermEntity_Object_BaseEntity.prototype = {}; X._PaymentTermEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.ProductListResponse.prototype = {}; A.ProductItemResponse.prototype = {}; A.ProductEntity.prototype = { get$clone: function(_) { return this.rebuild$1(new A.ProductEntity_clone_closure()); }, get$entityType: function() { return C.EntityType_product; }, get$listDisplayName: function() { return this.productKey; }, get$listDisplayAmount: function() { return this.price; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, compareTo$4: function(_, product, sortField, sortAscending, userMap) { var response, t1, t2, t3, userA, userB, stateA, stateB, _null = null, _s8_ = "archived", productA = sortAscending ? this : product, productB = sortAscending ? product : this; switch (sortField) { case "product_key": response = C.JSString_methods.compareTo$1(productA.productKey.toLowerCase(), productB.productKey.toLowerCase()); break; case "price": response = C.JSNumber_methods.compareTo$1(productA.price, productB.price); break; case "cost": response = C.JSNumber_methods.compareTo$1(productA.cost, productB.cost); break; case "quantity": response = C.JSNumber_methods.compareTo$1(productA.quantity, productB.quantity); break; case "updated_at": response = C.JSInt_methods.compareTo$1(productA.updatedAt, productB.updatedAt); break; case "created_at": response = C.JSInt_methods.compareTo$1(productA.createdAt, productB.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(productA.archivedAt, productB.archivedAt); break; case "description": response = C.JSString_methods.compareTo$1(productA.notes.toLowerCase(), productB.notes.toLowerCase()); break; case "assigned_to": t1 = productA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, productB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = productA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, productB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "entity_state": if (!productA.get$isArchived() && !productA.isDeleted) t1 = "active"; else t1 = productA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!productB.get$isArchived() && !productB.isDeleted) t1 = "active"; else t1 = productB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "custom1": response = C.JSString_methods.compareTo$1(productA.customValue1.toLowerCase(), productB.customValue1.toLowerCase()); break; case "custom2": response = C.JSString_methods.compareTo$1(productA.customValue2.toLowerCase(), productB.customValue2.toLowerCase()); break; case "custom3": response = C.JSString_methods.compareTo$1(productA.customValue3.toLowerCase(), productB.customValue3.toLowerCase()); break; case "custom4": response = C.JSString_methods.compareTo$1(productA.customValue4.toLowerCase(), productB.customValue4.toLowerCase()); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(productA.documents._list), J.get$length$asx(productB.documents._list)); break; default: P.print("## ERROR: sort by product." + H.S(sortField) + " is not implemented"); response = 0; break; } return response === 0 ? C.JSInt_methods.compareTo$1(product.createdAt, this.createdAt) : response; }, compareTo$1: function($receiver, product) { return this.compareTo$4($receiver, product, null, true, null); }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.productKey, _this.notes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.notes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var t1, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted) { if (!multiselect) t1 = includeEdit && userCompany.canEditEntity$1(this); else t1 = false; if (t1) actions.push(C.EntityAction_edit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice) && true) actions.push(C.EntityAction_newInvoice); } if (userCompany.can$2(C.UserPermission_create, C.EntityType_product) && !multiselect) actions.push(C.EntityAction_clone); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany: function(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); } }; A.ProductEntity_clone_closure.prototype = { call$1: function(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_product_model$_$this()._product_model$_id = t1; J.clear$0$ax(b.get$documents().get$_safeList()); b.get$_product_model$_$this()._product_model$_isChanged = false; b.get$_product_model$_$this()._product_model$_isDeleted = false; return b; }, $signature: 170 }; A._$ProductListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_GBo)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ProductListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ProductEntity, t3 = type$.ListBuilder_legacy_ProductEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._product_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._product_model$_data = t6; result._product_model$_$v = null; } t4 = result._product_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._product_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_GBo)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ooa; }, get$wireName: function() { return "ProductListResponse"; } }; A._$ProductItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Art)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ProductItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ProductEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._product_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ProductEntityBuilder(); t3._product_model$_$v = t2; result._product_model$_data = t3; result._product_model$_$v = null; } t2 = result._product_model$_data; if (t2 == null) t2 = result._product_model$_data = new A.ProductEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Art)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._product_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_mxd; }, get$wireName: function() { return "ProductItemResponse"; } }; A._$ProductEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["product_key", serializers.serialize$2$specifiedType(object.productKey, C.FullType_h8g), "notes", serializers.serialize$2$specifiedType(object.notes, C.FullType_h8g), "cost", serializers.serialize$2$specifiedType(object.cost, C.FullType_MME), "price", serializers.serialize$2$specifiedType(object.price, C.FullType_MME), "quantity", serializers.serialize$2$specifiedType(object.quantity, C.FullType_MME), "tax_name1", serializers.serialize$2$specifiedType(object.taxName1, C.FullType_h8g), "tax_rate1", serializers.serialize$2$specifiedType(object.taxRate1, C.FullType_MME), "tax_name2", serializers.serialize$2$specifiedType(object.taxName2, C.FullType_h8g), "tax_rate2", serializers.serialize$2$specifiedType(object.taxRate2, C.FullType_MME), "tax_name3", serializers.serialize$2$specifiedType(object.taxName3, C.FullType_h8g), "tax_rate3", serializers.serialize$2$specifiedType(object.taxRate3, C.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, t6, result = new A.ProductEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "product_key": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._productKey = t4; break; case "notes": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._notes = t4; break; case "cost": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._cost = t4; break; case "price": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._product_model$_price = t4; break; case "quantity": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._quantity = t4; break; case "tax_name1": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName1 = t4; break; case "tax_rate1": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate1 = t4; break; case "tax_name2": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName2 = t4; break; case "tax_rate2": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate2 = t4; break; case "tax_name3": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_taxName3 = t4; break; case "tax_rate3": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_product_model$_$this()._product_model$_taxRate3 = t4; break; case "custom_value1": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue1 = t4; break; case "custom_value2": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue2 = t4; break; case "custom_value3": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue3 = t4; break; case "custom_value4": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_customValue4 = t4; break; case "documents": t4 = result.get$_product_model$_$this(); t5 = t4._product_model$_documents; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._product_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_product_model$_$this()._product_model$_isChanged = t4; break; case "created_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_product_model$_$this()._product_model$_createdAt = t4; break; case "updated_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_product_model$_$this()._product_model$_updatedAt = t4; break; case "archived_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_product_model$_$this()._product_model$_archivedAt = t4; break; case "is_deleted": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_product_model$_$this()._product_model$_isDeleted = t4; break; case "user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_createdUserId = t4; break; case "assigned_user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_assignedUserId = t4; break; case "id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_model$_$this()._product_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_PiJ; }, get$wireName: function() { return "ProductEntity"; } }; A._$ProductListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProductListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._product_model$__hashCode; return t1 == null ? this._product_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProductListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._product_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._product_model$_$v = null; } t1 = _this._product_model$_data; return t1 == null ? _this._product_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProductEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProductListResponse", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProductListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._product_model$_$v = t1; return _$result; } }; A._$ProductItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProductItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._product_model$__hashCode; return t1 == null ? this._product_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProductItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ProductEntityBuilder(); t2._product_model$_$v = t1; _this._product_model$_data = t2; _this._product_model$_$v = null; } t1 = _this._product_model$_data; return t1 == null ? _this._product_model$_data = new A.ProductEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProductItemResponse", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProductItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._product_model$_$v = t1; return _$result; } }; A._$ProductEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.ProductEntityBuilder(); t1._product_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ProductEntity && _this.productKey === other.productKey && _this.notes === other.notes && _this.cost === other.cost && _this.price === other.price && _this.quantity === other.quantity && _this.taxName1 === other.taxName1 && _this.taxRate1 === other.taxRate1 && _this.taxName2 === other.taxName2 && _this.taxRate2 === other.taxRate2 && _this.taxName3 === other.taxName3 && _this.taxRate3 === other.taxRate3 && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._product_model$__hashCode; return t1 == null ? _this._product_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.productKey)), C.JSString_methods.get$hashCode(_this.notes)), C.JSNumber_methods.get$hashCode(_this.cost)), C.JSNumber_methods.get$hashCode(_this.price)), C.JSNumber_methods.get$hashCode(_this.quantity)), C.JSString_methods.get$hashCode(_this.taxName1)), C.JSNumber_methods.get$hashCode(_this.taxRate1)), C.JSString_methods.get$hashCode(_this.taxName2)), C.JSNumber_methods.get$hashCode(_this.taxRate2)), C.JSString_methods.get$hashCode(_this.taxName3)), C.JSNumber_methods.get$hashCode(_this.taxRate3)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "productKey", _this.productKey); t2.add$2(t1, "notes", _this.notes); t2.add$2(t1, "cost", _this.cost); t2.add$2(t1, "price", _this.price); t2.add$2(t1, "quantity", _this.quantity); t2.add$2(t1, "taxName1", _this.taxName1); t2.add$2(t1, "taxRate1", _this.taxRate1); t2.add$2(t1, "taxName2", _this.taxName2); t2.add$2(t1, "taxRate2", _this.taxRate2); t2.add$2(t1, "taxName3", _this.taxName3); t2.add$2(t1, "taxRate3", _this.taxRate3); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; A.ProductEntityBuilder.prototype = { get$documents: function() { var t1 = this.get$_product_model$_$this(), t2 = t1._product_model$_documents; return t2 == null ? t1._product_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_product_model$_$this()._product_model$_id; }, get$_product_model$_$this: function() { var t1, _this = this, $$v = _this._product_model$_$v; if ($$v != null) { _this._productKey = $$v.productKey; _this._notes = $$v.notes; _this._cost = $$v.cost; _this._product_model$_price = $$v.price; _this._quantity = $$v.quantity; _this._product_model$_taxName1 = $$v.taxName1; _this._product_model$_taxRate1 = $$v.taxRate1; _this._product_model$_taxName2 = $$v.taxName2; _this._product_model$_taxRate2 = $$v.taxRate2; _this._product_model$_taxName3 = $$v.taxName3; _this._product_model$_taxRate3 = $$v.taxRate3; _this._product_model$_customValue1 = $$v.customValue1; _this._product_model$_customValue2 = $$v.customValue2; _this._product_model$_customValue3 = $$v.customValue3; _this._product_model$_customValue4 = $$v.customValue4; t1 = $$v.documents; t1.toString; _this._product_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._product_model$_isChanged = $$v.isChanged; _this._product_model$_createdAt = $$v.createdAt; _this._product_model$_updatedAt = $$v.updatedAt; _this._product_model$_archivedAt = $$v.archivedAt; _this._product_model$_isDeleted = $$v.isDeleted; _this._product_model$_createdUserId = $$v.createdUserId; _this._product_model$_assignedUserId = $$v.assignedUserId; _this._product_model$_id = $$v.id; _this._product_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, exception, _this = this, _s13_ = "ProductEntity", _$result = null; try { _$result0 = _this._product_model$_$v; if (_$result0 == null) { t1 = _this.get$_product_model$_$this()._productKey; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "productKey")); t2 = _this.get$_product_model$_$this()._notes; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "notes")); t3 = _this.get$_product_model$_$this()._cost; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "cost")); t4 = _this.get$_product_model$_$this()._product_model$_price; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "price")); t5 = _this.get$_product_model$_$this()._quantity; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "quantity")); t6 = _this.get$_product_model$_$this()._product_model$_taxName1; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName1")); t7 = _this.get$_product_model$_$this()._product_model$_taxRate1; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate1")); t8 = _this.get$_product_model$_$this()._product_model$_taxName2; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName2")); t9 = _this.get$_product_model$_$this()._product_model$_taxRate2; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate2")); t10 = _this.get$_product_model$_$this()._product_model$_taxName3; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxName3")); t11 = _this.get$_product_model$_$this()._product_model$_taxRate3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taxRate3")); t12 = _this.get$_product_model$_$this()._product_model$_customValue1; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t13 = _this.get$_product_model$_$this()._product_model$_customValue2; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t14 = _this.get$_product_model$_$this()._product_model$_customValue3; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t15 = _this.get$_product_model$_$this()._product_model$_customValue4; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t16 = _this.get$documents().build$0(0); t17 = _this.get$_product_model$_$this()._product_model$_isChanged; t18 = _this.get$_product_model$_$this()._product_model$_createdAt; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t19 = _this.get$_product_model$_$this()._product_model$_updatedAt; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t20 = _this.get$_product_model$_$this()._product_model$_archivedAt; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t21 = _this.get$_product_model$_$this()._product_model$_isDeleted; t22 = _this.get$_product_model$_$this()._product_model$_createdUserId; t23 = _this.get$_product_model$_$this()._product_model$_assignedUserId; t24 = _this.get$_product_model$_$this()._product_model$_id; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$ProductEntity$_(t20, t23, t3, t18, t22, t12, t13, t14, t15, t16, t24, t17, t21, t2, t4, t1, t5, t6, t8, t10, t7, t9, t11, t19); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._product_model$_$v = t1; return _$result; } }; A._ProductEntity_Object_BaseEntity.prototype = {}; A._ProductEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A.ProjectListResponse.prototype = {}; A.ProjectItemResponse.prototype = {}; A.ProjectEntity.prototype = { get$clone: function(_) { return this.rebuild$1(new A.ProjectEntity_clone_closure()); }, get$entityType: function() { return C.EntityType_project; }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!multiselect && !_this.isDeleted) { if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_edit); if (!_this.get$isArchived() && !_this.isDeleted) { if (userCompany.can$2(C.UserPermission_create, C.EntityType_task)) actions.push(C.EntityAction_newTask); if (userCompany.can$2(C.UserPermission_create, C.EntityType_expense)) actions.push(C.EntityAction_newExpense); } } if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice) && !_this.isDeleted) actions.push(C.EntityAction_invoiceProject); if (userCompany.can$2(C.UserPermission_create, C.EntityType_project)) actions.push(C.EntityAction_clone); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, compareTo$5: function(_, project, sortField, sortAscending, userMap, clientMap) { var response, t1, t2, t3, clientA, clientB, stateA, stateB, userA, userB, _null = null, _s8_ = "archived", projectA = sortAscending ? this : project, projectB = sortAscending ? project : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(projectA.name.toLowerCase(), projectB.name.toLowerCase()); break; case "task_rate": response = C.JSNumber_methods.compareTo$1(projectA.taskRate, projectB.taskRate); break; case "client": t1 = projectA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, projectB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "client_number": t1 = projectA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, projectB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.number.toLowerCase(), clientB.number.toLowerCase()); break; case "client_id_number": t1 = projectA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, projectB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.idNumber.toLowerCase(), clientB.idNumber.toLowerCase()); break; case "due_date": response = C.JSString_methods.compareTo$1(projectA.dueDate, projectB.dueDate); break; case "private_notes": response = C.JSString_methods.compareTo$1(projectA.privateNotes, projectB.privateNotes); break; case "public_notes": response = C.JSString_methods.compareTo$1(projectA.publicNotes, projectB.publicNotes); break; case "budgeted_hours": response = C.JSNumber_methods.compareTo$1(projectA.budgetedHours, projectB.budgetedHours); break; case "entity_state": if (!projectA.get$isArchived() && !projectA.isDeleted) t1 = "active"; else t1 = projectA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!projectB.get$isArchived() && !projectB.isDeleted) t1 = "active"; else t1 = projectB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(projectA.createdAt, projectB.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(projectA.archivedAt, projectB.archivedAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(projectA.updatedAt, projectB.updatedAt); break; case "assigned_to": t1 = projectA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, projectB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = projectA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, projectB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(projectA.documents._list), J.get$length$asx(projectB.documents._list)); break; case "number": t1 = projectA.number; t2 = projectB.number; response = C.JSString_methods.compareTo$1(t1, t2); break; case "custom1": response = C.JSString_methods.compareTo$1(projectA.customValue1, projectB.customValue1); break; case "custom2": response = C.JSString_methods.compareTo$1(projectA.customValue2, projectB.customValue2); break; case "custom3": response = C.JSString_methods.compareTo$1(projectA.customValue3, projectB.customValue3); break; case "custom4": response = C.JSString_methods.compareTo$1(projectA.customValue4, projectB.customValue4); break; default: P.print("## ERROR: sort by project." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(project.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.name, _this.number, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.name, _this.number, _this.publicNotes, _this.privateNotes, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; } }; A.ProjectEntity_clone_closure.prototype = { call$1: function(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_project_model$_$this()._project_model$_id = t1; b.get$_project_model$_$this()._project_model$_number = ""; J.clear$0$ax(b.get$documents().get$_safeList()); b.get$_project_model$_$this()._project_model$_isChanged = false; b.get$_project_model$_$this()._project_model$_isDeleted = false; return b; }, $signature: 168 }; A._$ProjectListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_KEc)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.ProjectListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_ProjectEntity, t3 = type$.ListBuilder_legacy_ProjectEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._project_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._project_model$_data = t6; result._project_model$_$v = null; } t4 = result._project_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._project_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_KEc)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_bfP; }, get$wireName: function() { return "ProjectListResponse"; } }; A._$ProjectItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_vbG)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.ProjectItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ProjectEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._project_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.ProjectEntityBuilder(); t3.get$_project_model$_$this()._color = ""; t3._project_model$_$v = t2; result._project_model$_data = t3; result._project_model$_$v = null; } t2 = result._project_model$_data; if (t2 == null) { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; result._project_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_vbG)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._project_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_vhP; }, get$wireName: function() { return "ProjectItemResponse"; } }; A._$ProjectEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, C.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, C.FullType_h8g), "task_rate", serializers.serialize$2$specifiedType(object.taskRate, C.FullType_MME), "due_date", serializers.serialize$2$specifiedType(object.dueDate, C.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, C.FullType_h8g), "budgeted_hours", serializers.serialize$2$specifiedType(object.budgetedHours, C.FullType_MME), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new A.ProjectEntityBuilder(); result.get$_project_model$_$this()._color = ""; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_name = t4; break; case "color": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._color = t4; break; case "client_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_clientId = t4; break; case "task_rate": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_project_model$_$this()._taskRate = t4; break; case "due_date": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_dueDate = t4; break; case "private_notes": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_privateNotes = t4; break; case "public_notes": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_publicNotes = t4; break; case "budgeted_hours": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_project_model$_$this()._budgetedHours = t4; break; case "custom_value1": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue1 = t4; break; case "custom_value2": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue2 = t4; break; case "custom_value3": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue3 = t4; break; case "custom_value4": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_customValue4 = t4; break; case "number": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_number = t4; break; case "documents": t4 = result.get$_project_model$_$this(); t5 = t4._project_model$_documents; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._project_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "isChanged": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_project_model$_$this()._project_model$_isChanged = t4; break; case "created_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_project_model$_$this()._project_model$_createdAt = t4; break; case "updated_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_project_model$_$this()._project_model$_updatedAt = t4; break; case "archived_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_project_model$_$this()._project_model$_archivedAt = t4; break; case "is_deleted": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_project_model$_$this()._project_model$_isDeleted = t4; break; case "user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_createdUserId = t4; break; case "assigned_user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_assignedUserId = t4; break; case "id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_model$_$this()._project_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_05; }, get$wireName: function() { return "ProjectEntity"; } }; A._$ProjectListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProjectListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._project_model$__hashCode; return t1 == null ? this._project_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProjectListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._project_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._project_model$_$v = null; } t1 = _this._project_model$_data; return t1 == null ? _this._project_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProjectEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProjectListResponse", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProjectListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._project_model$_$v = t1; return _$result; } }; A._$ProjectItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.ProjectItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._project_model$__hashCode; return t1 == null ? this._project_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.ProjectItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; t2._project_model$_$v = t1; _this._project_model$_data = t2; _this._project_model$_$v = null; } t1 = _this._project_model$_data; if (t1 == null) { t1 = new A.ProjectEntityBuilder(); t1.get$_project_model$_$this()._color = ""; _this._project_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "ProjectItemResponse", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$ProjectItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._project_model$_$v = t1; return _$result; } }; A._$ProjectEntity.prototype = { rebuild$1: function(updates) { var t1 = new A.ProjectEntityBuilder(); t1.get$_project_model$_$this()._color = ""; t1._project_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.ProjectEntity && _this.name === other.name && _this.color === other.color && _this.clientId === other.clientId && _this.taskRate === other.taskRate && _this.dueDate === other.dueDate && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.budgetedHours === other.budgetedHours && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.number === other.number && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._project_model$__hashCode; return t1 == null ? _this._project_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.color)), C.JSString_methods.get$hashCode(_this.clientId)), C.JSNumber_methods.get$hashCode(_this.taskRate)), C.JSString_methods.get$hashCode(_this.dueDate)), C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.publicNotes)), C.JSNumber_methods.get$hashCode(_this.budgetedHours)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSString_methods.get$hashCode(_this.number)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "taskRate", _this.taskRate); t2.add$2(t1, "dueDate", _this.dueDate); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "budgetedHours", _this.budgetedHours); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$clientId: function(receiver) { return this.clientId; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; A.ProjectEntityBuilder.prototype = { get$name: function(_) { return this.get$_project_model$_$this()._project_model$_name; }, get$documents: function() { var t1 = this.get$_project_model$_$this(), t2 = t1._project_model$_documents; return t2 == null ? t1._project_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_project_model$_$this()._project_model$_id; }, get$_project_model$_$this: function() { var t1, _this = this, $$v = _this._project_model$_$v; if ($$v != null) { _this._project_model$_name = $$v.name; _this._color = $$v.color; _this._project_model$_clientId = $$v.clientId; _this._taskRate = $$v.taskRate; _this._project_model$_dueDate = $$v.dueDate; _this._project_model$_privateNotes = $$v.privateNotes; _this._project_model$_publicNotes = $$v.publicNotes; _this._budgetedHours = $$v.budgetedHours; _this._project_model$_customValue1 = $$v.customValue1; _this._project_model$_customValue2 = $$v.customValue2; _this._project_model$_customValue3 = $$v.customValue3; _this._project_model$_customValue4 = $$v.customValue4; _this._project_model$_number = $$v.number; t1 = $$v.documents; t1.toString; _this._project_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._project_model$_isChanged = $$v.isChanged; _this._project_model$_createdAt = $$v.createdAt; _this._project_model$_updatedAt = $$v.updatedAt; _this._project_model$_archivedAt = $$v.archivedAt; _this._project_model$_isDeleted = $$v.isDeleted; _this._project_model$_createdUserId = $$v.createdUserId; _this._project_model$_assignedUserId = $$v.assignedUserId; _this._project_model$_id = $$v.id; _this._project_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, exception, _this = this, _s13_ = "ProjectEntity", _$result = null; try { _$result0 = _this._project_model$_$v; if (_$result0 == null) { t1 = _this.get$_project_model$_$this()._project_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_project_model$_$this()._color; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "color")); t3 = _this.get$_project_model$_$this()._project_model$_clientId; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "clientId")); t4 = _this.get$_project_model$_$this()._taskRate; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "taskRate")); t5 = _this.get$_project_model$_$this()._project_model$_dueDate; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "dueDate")); t6 = _this.get$_project_model$_$this()._project_model$_privateNotes; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "privateNotes")); t7 = _this.get$_project_model$_$this()._project_model$_publicNotes; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "publicNotes")); t8 = _this.get$_project_model$_$this()._budgetedHours; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "budgetedHours")); t9 = _this.get$_project_model$_$this()._project_model$_customValue1; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue1")); t10 = _this.get$_project_model$_$this()._project_model$_customValue2; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue2")); t11 = _this.get$_project_model$_$this()._project_model$_customValue3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue3")); t12 = _this.get$_project_model$_$this()._project_model$_customValue4; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "customValue4")); t13 = _this.get$_project_model$_$this()._project_model$_number; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "number")); t14 = _this.get$documents().build$0(0); t15 = _this.get$_project_model$_$this()._project_model$_isChanged; t16 = _this.get$_project_model$_$this()._project_model$_createdAt; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t17 = _this.get$_project_model$_$this()._project_model$_updatedAt; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t18 = _this.get$_project_model$_$this()._project_model$_archivedAt; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t19 = _this.get$_project_model$_$this()._project_model$_isDeleted; t20 = _this.get$_project_model$_$this()._project_model$_createdUserId; t21 = _this.get$_project_model$_$this()._project_model$_assignedUserId; t22 = _this.get$_project_model$_$this()._project_model$_id; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = A._$ProjectEntity$_(t18, t21, t8, t3, t2, t16, t20, t9, t10, t11, t12, t14, t5, t22, t15, t19, t1, t13, t6, t7, t4, t17); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._project_model$_$v = t1; return _$result; } }; A._ProjectEntity_Object_BaseEntity.prototype = {}; A._ProjectEntity_Object_BaseEntity_SelectableEntity.prototype = {}; A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; K._$serializers_closure.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ClientEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 498 }; K._$serializers_closure0.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CompanyGatewayEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 499 }; K._$serializers_closure1.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ContactEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 985 }; K._$serializers_closure2.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 423 }; K._$serializers_closure3.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LedgerEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 982 }; K._$serializers_closure4.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayTokenEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 501 }; K._$serializers_closure5.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure6.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 420 }; K._$serializers_closure7.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CountryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 503 }; K._$serializers_closure8.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CurrencyEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 504 }; K._$serializers_closure9.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CurrencyEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 504 }; K._$serializers_closure10.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SizeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 505 }; K._$serializers_closure11.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_IndustryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 506 }; K._$serializers_closure12.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TimezoneEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 507 }; K._$serializers_closure13.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 947 }; K._$serializers_closure14.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DateFormatEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 508 }; K._$serializers_closure15.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DatetimeFormatEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 509 }; K._$serializers_closure16.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LanguageEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 510 }; K._$serializers_closure17.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTypeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 511 }; K._$serializers_closure18.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CountryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 503 }; K._$serializers_closure19.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceStatusEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 934 }; K._$serializers_closure20.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 512 }; K._$serializers_closure21.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DateFormatEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 508 }; K._$serializers_closure22.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DatetimeFormatEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 509 }; K._$serializers_closure23.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DesignEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 513 }; K._$serializers_closure24.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure25.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure26.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure27.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure28.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure29.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure30.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseScheduleEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 933 }; K._$serializers_closure31.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityState); }, "call*": "call$0", $requiredArgCount: 0, $signature: 931 }; K._$serializers_closure32.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityStatus); }, "call*": "call$0", $requiredArgCount: 0, $signature: 930 }; K._$serializers_closure33.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure34.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure35.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure36.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure37.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure38.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityType); }, "call*": "call$0", $requiredArgCount: 0, $signature: 924 }; K._$serializers_closure39.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_BaseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 923 }; K._$serializers_closure40.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseCategoryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 514 }; K._$serializers_closure41.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 417 }; K._$serializers_closure42.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayTokenEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 501 }; K._$serializers_closure43.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GroupEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 515 }; K._$serializers_closure44.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GroupEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 515 }; K._$serializers_closure45.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 423 }; K._$serializers_closure46.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaxRateEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 516 }; K._$serializers_closure47.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskStatusEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 517 }; K._$serializers_closure48.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 518 }; K._$serializers_closure49.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CompanyGatewayEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 499 }; K._$serializers_closure50.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseCategoryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 514 }; K._$serializers_closure51.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 519 }; K._$serializers_closure52.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ClientEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 498 }; K._$serializers_closure53.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProductEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 520 }; K._$serializers_closure54.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure55.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure56.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 417 }; K._$serializers_closure57.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 522 }; K._$serializers_closure58.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure59.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure60.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 523 }; K._$serializers_closure61.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProjectEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 524 }; K._$serializers_closure62.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ExpenseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 417 }; K._$serializers_closure63.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 525 }; K._$serializers_closure64.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DesignEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 513 }; K._$serializers_closure65.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure66.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TokenEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 526 }; K._$serializers_closure67.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_WebhookEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 527 }; K._$serializers_closure68.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SubscriptionEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 528 }; K._$serializers_closure69.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTermEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 529 }; K._$serializers_closure70.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 420 }; K._$serializers_closure71.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_RegistrationFieldEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 896 }; K._$serializers_closure72.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure73.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_HistoryRecord); }, "call*": "call$0", $requiredArgCount: 0, $signature: 895 }; K._$serializers_closure74.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_IndustryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 506 }; K._$serializers_closure75.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure76.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 199 }; K._$serializers_closure77.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceScheduleEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 819 }; K._$serializers_closure78.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceItemEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 818 }; K._$serializers_closure79.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvitationEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 785 }; K._$serializers_closure80.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure81.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ActivityEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 423 }; K._$serializers_closure82.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LanguageEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 510 }; K._$serializers_closure83.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 522 }; K._$serializers_closure84.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTermEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 529 }; K._$serializers_closure85.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTypeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 511 }; K._$serializers_closure86.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 413 }; K._$serializers_closure87.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 413 }; K._$serializers_closure88.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentableEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 413 }; K._$serializers_closure89.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProductEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 520 }; K._$serializers_closure90.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_ProjectEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 524 }; K._$serializers_closure91.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SizeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 505 }; K._$serializers_closure92.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure93.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure94.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure95.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_BuiltList_legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 783 }; K._$serializers_closure96.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SubscriptionEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 528 }; K._$serializers_closure97.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 523 }; K._$serializers_closure98.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskStatusEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 517 }; K._$serializers_closure99.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaxRateEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 516 }; K._$serializers_closure100.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TimezoneEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 507 }; K._$serializers_closure101.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TokenEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 526 }; K._$serializers_closure102.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserCompanyEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 781 }; K._$serializers_closure103.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserCompanyState); }, "call*": "call$0", $requiredArgCount: 0, $signature: 778 }; K._$serializers_closure104.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 519 }; K._$serializers_closure105.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorContactEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 773 }; K._$serializers_closure106.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 112 }; K._$serializers_closure107.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 525 }; K._$serializers_closure108.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_WebhookEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 527 }; K._$serializers_closure109.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_BuiltList_legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 758 }; K._$serializers_closure110.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool); }, "call*": "call$0", $requiredArgCount: 0, $signature: 753 }; K._$serializers_closure111.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure112.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_PrefStateSortField); }, "call*": "call$0", $requiredArgCount: 0, $signature: 735 }; K._$serializers_closure113.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyPrefState); }, "call*": "call$0", $requiredArgCount: 0, $signature: 736 }; K._$serializers_closure114.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 410 }; K._$serializers_closure115.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 410 }; K._$serializers_closure116.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ReportSettingsEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 738 }; K._$serializers_closure117.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ClientEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 739 }; K._$serializers_closure118.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure119.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyGatewayEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 740 }; K._$serializers_closure120.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure121.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CurrencyEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 741 }; K._$serializers_closure122.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SizeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 742 }; K._$serializers_closure123.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 743 }; K._$serializers_closure124.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_IndustryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 744 }; K._$serializers_closure125.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TimezoneEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 745 }; K._$serializers_closure126.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DateFormatEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 746 }; K._$serializers_closure127.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_LanguageEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 747 }; K._$serializers_closure128.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTypeEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 748 }; K._$serializers_closure129.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CountryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 749 }; K._$serializers_closure130.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 512 }; K._$serializers_closure131.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DesignEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 750 }; K._$serializers_closure132.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure133.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DocumentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 751 }; K._$serializers_closure134.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure135.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseCategoryEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 752 }; K._$serializers_closure136.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure137.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 666 }; K._$serializers_closure138.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure139.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 666 }; K._$serializers_closure140.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure141.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_FeesAndLimitsSettings); }, "call*": "call$0", $requiredArgCount: 0, $signature: 754 }; K._$serializers_closure142.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SystemLogEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 420 }; K._$serializers_closure143.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayOptionsEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 755 }; K._$serializers_closure144.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GroupEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 756 }; K._$serializers_closure145.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure146.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ImportRequestMapping); }, "call*": "call$0", $requiredArgCount: 0, $signature: 757 }; K._$serializers_closure147.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 291 }; K._$serializers_closure148.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure149.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 291 }; K._$serializers_closure150.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure151.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 291 }; K._$serializers_closure152.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure153.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 291 }; K._$serializers_closure154.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure155.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 759 }; K._$serializers_closure156.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure157.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTermEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 760 }; K._$serializers_closure158.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure159.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PreImportResponseEntityDetails); }, "call*": "call$0", $requiredArgCount: 0, $signature: 761 }; K._$serializers_closure160.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProductEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 762 }; K._$serializers_closure161.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure162.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProjectEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 763 }; K._$serializers_closure163.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure164.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure165.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure166.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure167.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure168.prototype = { call$0: function() { var t1 = type$.legacy_String; return A.MapBuilder_MapBuilder(t1, t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 163 }; K._$serializers_closure169.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 410 }; K._$serializers_closure170.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SubscriptionEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 764 }; K._$serializers_closure171.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure172.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 765 }; K._$serializers_closure173.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure174.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 518 }; K._$serializers_closure175.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure176.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaxRateEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 766 }; K._$serializers_closure177.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure178.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TokenEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 767 }; K._$serializers_closure179.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure180.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_UserEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 768 }; K._$serializers_closure181.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure182.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_VendorEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 769 }; K._$serializers_closure183.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure184.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_WebhookEntity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 770 }; K._$serializers_closure185.prototype = { call$0: function() { return D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 32 }; K._$serializers_closure186.prototype = { call$0: function() { return A.MapBuilder_MapBuilder(type$.legacy_int, type$.legacy_String); }, "call*": "call$0", $requiredArgCount: 0, $signature: 771 }; G.SettingsEntity.prototype = { getFieldsForSection$1: function(section) { var t1 = this.pdfVariables; if (t1 != null && J.containsKey$1$x(t1._map$_map, section)) { t1 = J.$index$asx(t1._map$_map, section); t1 = new Q.CopyOnWriteList(true, t1._list, H.instanceType(t1)._eval$1("CopyOnWriteList<1>")); } else t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); return t1; }, setFieldsForSection$2: function(section, fields) { if (this.pdfVariables == null) return this.rebuild$1(new G.SettingsEntity_setFieldsForSection_closure(section, fields)); else return this.rebuild$1(new G.SettingsEntity_setFieldsForSection_closure0(section, fields)); }, getDesignId$1: function(entityType) { switch (entityType) { case C.EntityType_invoice: return this.defaultInvoiceDesignId; case C.EntityType_quote: return this.defaultQuoteDesignId; case C.EntityType_credit: return this.defaultCreditDesignId; } P.print("## Error: unhandled entity type: " + entityType.toString$0(0) + " for design id"); return ""; }, getDefaultTerms$1: function(entityType) { switch (entityType) { case C.EntityType_invoice: case C.EntityType_recurringInvoice: return this.defaultInvoiceTerms; case C.EntityType_quote: return this.defaultQuoteTerms; case C.EntityType_credit: return this.defaultCreditTerms; default: P.print("## ERROR: getDefaultTerms not defined for " + H.S(entityType)); return ""; } }, getDefaultFooter$1: function(entityType) { switch (entityType) { case C.EntityType_invoice: case C.EntityType_recurringInvoice: return this.defaultInvoiceFooter; case C.EntityType_quote: return this.defaultQuoteFooter; case C.EntityType_credit: return this.defaultCreditFooter; default: P.print("## ERROR: getDefaultFooter not defined for " + H.S(entityType)); return ""; } }, getEmailSubject$1: function(emailTemplate) { var _this = this; switch (emailTemplate) { case C.EmailTemplate_invoice: return _this.emailSubjectInvoice; case C.EmailTemplate_quote: return _this.emailSubjectQuote; case C.EmailTemplate_credit: return _this.emailSubjectCredit; case C.EmailTemplate_payment: return _this.emailSubjectPayment; case C.EmailTemplate_payment_partial: return _this.emailSubjectPaymentPartial; case C.EmailTemplate_reminder1: return _this.emailSubjectReminder1; case C.EmailTemplate_reminder2: return _this.emailSubjectReminder2; case C.EmailTemplate_reminder3: return _this.emailSubjectReminder3; case C.EmailTemplate_reminder_endless: return _this.emailSubjectReminderEndless; case C.EmailTemplate_custom1: return _this.emailSubjectCustom1; case C.EmailTemplate_custom2: return _this.emailSubjectCustom2; case C.EmailTemplate_custom3: return _this.emailSubjectCustom3; default: return "Error: template not defined for " + H.S(emailTemplate); } }, getEmailBody$1: function(template) { var _this = this; switch (template) { case C.EmailTemplate_invoice: return _this.emailBodyInvoice; case C.EmailTemplate_quote: return _this.emailBodyQuote; case C.EmailTemplate_credit: return _this.emailBodyCredit; case C.EmailTemplate_payment: return _this.emailBodyPayment; case C.EmailTemplate_payment_partial: return _this.emailBodyPaymentPartial; case C.EmailTemplate_reminder1: return _this.emailBodyReminder1; case C.EmailTemplate_reminder2: return _this.emailBodyReminder2; case C.EmailTemplate_reminder3: return _this.emailBodyReminder3; case C.EmailTemplate_reminder_endless: return _this.emailBodyReminderEndless; case C.EmailTemplate_custom1: return _this.emailBodyCustom1; case C.EmailTemplate_custom2: return _this.emailBodyCustom2; case C.EmailTemplate_custom3: return _this.emailBodyCustom3; default: return "Error: template not defined for " + H.S(template); } } }; G.SettingsEntity_setFieldsForSection_closure.prototype = { call$1: function(b) { b.get$pdfVariables().replace$1(0, P.LinkedHashMap_LinkedHashMap$_literal([this.section, this.fields], type$.legacy_String, type$.legacy_List_legacy_String)); return b; }, $signature: 13 }; G.SettingsEntity_setFieldsForSection_closure0.prototype = { call$1: function(b) { b.get$pdfVariables().$indexSet(0, this.section, D.BuiltList_BuiltList$from(this.fields, type$.legacy_String)); return b; }, $signature: 13 }; G._$SettingsEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Object), value = object.timezoneId; if (value != null) { result.push("timezone_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.dateFormatId; if (value != null) { result.push("date_format_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.enableMilitaryTime; if (value != null) { result.push("military_time"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.languageId; if (value != null) { result.push("language_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.showCurrencyCode; if (value != null) { result.push("show_currency_code"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.currencyId; if (value != null) { result.push("currency_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customValue1; if (value != null) { result.push("custom_value1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customValue2; if (value != null) { result.push("custom_value2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customValue3; if (value != null) { result.push("custom_value3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customValue4; if (value != null) { result.push("custom_value4"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultPaymentTerms; if (value != null) { result.push("payment_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultValidUntil; if (value != null) { result.push("valid_until"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.companyGatewayIds; if (value != null) { result.push("company_gateway_ids"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultTaskRate; if (value != null) { result.push("default_task_rate"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.sendReminders; if (value != null) { result.push("send_reminders"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enablePortal; if (value != null) { result.push("enable_client_portal"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enablePortalDashboard; if (value != null) { result.push("enable_client_portal_dashboard"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enablePortalTasks; if (value != null) { result.push("enable_client_portal_tasks"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enablePortalUploads; if (value != null) { result.push("client_portal_enable_uploads"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.emailStyle; if (value != null) { result.push("email_style"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.replyToEmail; if (value != null) { result.push("reply_to_email"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.replyToName; if (value != null) { result.push("reply_to_name"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailFromName; if (value != null) { result.push("email_from_name"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.bccEmail; if (value != null) { result.push("bcc_email"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.pdfEmailAttachment; if (value != null) { result.push("pdf_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.ublEmailAttachment; if (value != null) { result.push("ubl_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.documentEmailAttachment; if (value != null) { result.push("document_email_attachment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.emailStyleCustom; if (value != null) { result.push("email_style_custom"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customMessageDashboard; if (value != null) { result.push("custom_message_dashboard"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customMessageUnpaidInvoice; if (value != null) { result.push("custom_message_unpaid_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customMessagePaidInvoice; if (value != null) { result.push("custom_message_paid_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.customMessageUnapprovedQuote; if (value != null) { result.push("custom_message_unapproved_quote"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.autoArchiveInvoice; if (value != null) { result.push("auto_archive_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.autoArchiveQuote; if (value != null) { result.push("auto_archive_quote"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.autoEmailInvoice; if (value != null) { result.push("auto_email_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.autoConvertQuote; if (value != null) { result.push("auto_convert_quote"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableInclusiveTaxes; if (value != null) { result.push("inclusive_taxes"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.translations; if (value != null) { result.push("translations"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_LNO)); } value = object.taskNumberPattern; if (value != null) { result.push("task_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.taskNumberCounter; if (value != null) { result.push("task_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.expenseNumberPattern; if (value != null) { result.push("expense_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.expenseNumberCounter; if (value != null) { result.push("expense_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.recurringExpenseNumberPattern; if (value != null) { result.push("recurring_expense_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringExpenseNumberCounter; if (value != null) { result.push("recurring_expense_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.vendorNumberPattern; if (value != null) { result.push("vendor_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.vendorNumberCounter; if (value != null) { result.push("vendor_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.ticketNumberPattern; if (value != null) { result.push("ticket_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.ticketNumberCounter; if (value != null) { result.push("ticket_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.paymentNumberPattern; if (value != null) { result.push("payment_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.paymentNumberCounter; if (value != null) { result.push("payment_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.projectNumberPattern; if (value != null) { result.push("project_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.projectNumberCounter; if (value != null) { result.push("project_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.invoiceNumberPattern; if (value != null) { result.push("invoice_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.invoiceNumberCounter; if (value != null) { result.push("invoice_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.recurringInvoiceNumberPattern; if (value != null) { result.push("recurring_invoice_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.recurringInvoiceNumberCounter; if (value != null) { result.push("recurring_invoice_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.quoteNumberPattern; if (value != null) { result.push("quote_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.quoteNumberCounter; if (value != null) { result.push("quote_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.clientNumberPattern; if (value != null) { result.push("client_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientNumberCounter; if (value != null) { result.push("client_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.creditNumberPattern; if (value != null) { result.push("credit_number_pattern"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.creditNumberCounter; if (value != null) { result.push("credit_number_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.recurringNumberPrefix; if (value != null) { result.push("recurring_number_prefix"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.resetCounterFrequencyId; if (value != null) { result.push("reset_counter_frequency_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.resetCounterDate; if (value != null) { result.push("reset_counter_date"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.counterPadding; if (value != null) { result.push("counter_padding"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.sharedInvoiceQuoteCounter; if (value != null) { result.push("shared_invoice_quote_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.sharedInvoiceCreditCounter; if (value != null) { result.push("shared_invoice_credit_counter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.defaultInvoiceTerms; if (value != null) { result.push("invoice_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultQuoteTerms; if (value != null) { result.push("quote_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultQuoteFooter; if (value != null) { result.push("quote_footer"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultCreditTerms; if (value != null) { result.push("credit_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultCreditFooter; if (value != null) { result.push("credit_footer"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultInvoiceDesignId; if (value != null) { result.push("invoice_design_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultQuoteDesignId; if (value != null) { result.push("quote_design_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultCreditDesignId; if (value != null) { result.push("credit_design_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultInvoiceFooter; if (value != null) { result.push("invoice_footer"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultTaxName1; if (value != null) { result.push("tax_name1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultTaxRate1; if (value != null) { result.push("tax_rate1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.defaultTaxName2; if (value != null) { result.push("tax_name2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultTaxRate2; if (value != null) { result.push("tax_rate2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.defaultTaxName3; if (value != null) { result.push("tax_name3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.defaultTaxRate3; if (value != null) { result.push("tax_rate3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.defaultPaymentTypeId; if (value != null) { result.push("payment_type_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.pdfVariables; if (value != null) { result.push("pdf_variables"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_mZn)); } value = object.emailSignature; if (value != null) { result.push("email_signature"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectInvoice; if (value != null) { result.push("email_subject_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectQuote; if (value != null) { result.push("email_subject_quote"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectCredit; if (value != null) { result.push("email_subject_credit"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectPayment; if (value != null) { result.push("email_subject_payment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectPaymentPartial; if (value != null) { result.push("email_subject_payment_partial"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyInvoice; if (value != null) { result.push("email_template_invoice"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyQuote; if (value != null) { result.push("email_template_quote"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyCredit; if (value != null) { result.push("email_template_credit"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyPayment; if (value != null) { result.push("email_template_payment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyPaymentPartial; if (value != null) { result.push("email_template_payment_partial"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectReminder1; if (value != null) { result.push("email_subject_reminder1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectReminder2; if (value != null) { result.push("email_subject_reminder2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectReminder3; if (value != null) { result.push("email_subject_reminder3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyReminder1; if (value != null) { result.push("email_template_reminder1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyReminder2; if (value != null) { result.push("email_template_reminder2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyReminder3; if (value != null) { result.push("email_template_reminder3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectCustom1; if (value != null) { result.push("email_subject_custom1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyCustom1; if (value != null) { result.push("email_template_custom1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectCustom2; if (value != null) { result.push("email_subject_custom2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyCustom2; if (value != null) { result.push("email_template_custom2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectCustom3; if (value != null) { result.push("email_subject_custom3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyCustom3; if (value != null) { result.push("email_template_custom3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSubjectStatement; if (value != null) { result.push("email_subject_statement"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyStatement; if (value != null) { result.push("email_template_statement"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.enablePortalPassword; if (value != null) { result.push("enable_client_portal_password"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.signatureOnPdf; if (value != null) { result.push("signature_on_pdf"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableEmailMarkup; if (value != null) { result.push("enable_email_markup"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.showAcceptInvoiceTerms; if (value != null) { result.push("show_accept_invoice_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.showAcceptQuoteTerms; if (value != null) { result.push("show_accept_quote_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.requireInvoiceSignature; if (value != null) { result.push("require_invoice_signature"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.requireQuoteSignature; if (value != null) { result.push("require_quote_signature"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.name; if (value != null) { result.push("name"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.companyLogo; if (value != null) { result.push("company_logo"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.website; if (value != null) { result.push("website"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.address1; if (value != null) { result.push("address1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.address2; if (value != null) { result.push("address2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.city; if (value != null) { result.push("city"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.state; if (value != null) { result.push("state"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.postalCode; if (value != null) { result.push("postal_code"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.phone; if (value != null) { result.push("phone"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.email; if (value != null) { result.push("email"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.countryId; if (value != null) { result.push("country_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.vatNumber; if (value != null) { result.push("vat_number"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.idNumber; if (value != null) { result.push("id_number"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.pageSize; if (value != null) { result.push("page_size"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.pageLayout; if (value != null) { result.push("page_layout"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.fontSize; if (value != null) { result.push("font_size"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.primaryColor; if (value != null) { result.push("primary_color"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.secondaryColor; if (value != null) { result.push("secondary_color"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.primaryFont; if (value != null) { result.push("primary_font"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.secondaryFont; if (value != null) { result.push("secondary_font"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.hidePaidToDate; if (value != null) { result.push("hide_paid_to_date"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.embedDocuments; if (value != null) { result.push("embed_documents"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.allPagesHeader; if (value != null) { result.push("all_pages_header"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.allPagesFooter; if (value != null) { result.push("all_pages_footer"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableReminder1; if (value != null) { result.push("enable_reminder1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableReminder2; if (value != null) { result.push("enable_reminder2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableReminder3; if (value != null) { result.push("enable_reminder3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.enableReminderEndless; if (value != null) { result.push("enable_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.numDaysReminder1; if (value != null) { result.push("num_days_reminder1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.numDaysReminder2; if (value != null) { result.push("num_days_reminder2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.numDaysReminder3; if (value != null) { result.push("num_days_reminder3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.scheduleReminder1; if (value != null) { result.push("schedule_reminder1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.scheduleReminder2; if (value != null) { result.push("schedule_reminder2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.scheduleReminder3; if (value != null) { result.push("schedule_reminder3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.endlessReminderFrequencyId; if (value != null) { result.push("endless_reminder_frequency_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.lateFeeAmount1; if (value != null) { result.push("late_fee_amount1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeeAmount2; if (value != null) { result.push("late_fee_amount2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeeAmount3; if (value != null) { result.push("late_fee_amount3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeeAmountEndless; if (value != null) { result.push("late_fee_endless_amount"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeePercent1; if (value != null) { result.push("late_fee_percent1"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeePercent2; if (value != null) { result.push("late_fee_percent2"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeePercent3; if (value != null) { result.push("late_fee_percent3"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.lateFeePercentEndless; if (value != null) { result.push("late_fee_endless_percent"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.emailSubjectReminderEndless; if (value != null) { result.push("email_subject_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailBodyReminderEndless; if (value != null) { result.push("email_template_reminder_endless"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientOnlinePaymentNotification; if (value != null) { result.push("client_online_payment_notification"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.clientManualPaymentNotification; if (value != null) { result.push("client_manual_payment_notification"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.counterNumberApplied; if (value != null) { result.push("counter_number_applied"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.emailSendingMethod; if (value != null) { result.push("email_sending_method"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.gmailSendingUserId; if (value != null) { result.push("gmail_sending_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalTerms; if (value != null) { result.push("client_portal_terms"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalPrivacy; if (value != null) { result.push("client_portal_privacy_policy"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.lockInvoices; if (value != null) { result.push("lock_invoices"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.autoBill; if (value != null) { result.push("auto_bill"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalAllowUnderPayment; if (value != null) { result.push("client_portal_allow_under_payment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.clientPortalAllowOverPayment; if (value != null) { result.push("client_portal_allow_over_payment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.autoBillDate; if (value != null) { result.push("auto_bill_date"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalUnderPaymentMinimum; if (value != null) { result.push("client_portal_under_payment_minimum"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MME)); } value = object.useCreditsPayment; if (value != null) { result.push("use_credits_payment"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalCustomHeader; if (value != null) { result.push("portal_custom_head"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalCustomCss; if (value != null) { result.push("portal_custom_css"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalCustomFooter; if (value != null) { result.push("portal_custom_footer"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.clientPortalCustomJs; if (value != null) { result.push("portal_custom_js"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.hideEmptyColumnsOnPdf; if (value != null) { result.push("hide_empty_columns_on_pdf"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.entitySendTime; if (value != null) { result.push("entity_send_time"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.clientPortalTasks; if (value != null) { result.push("show_all_tasks_client_portal"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, _null = null, result = new G.SettingsEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String, t2 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "timezone_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._timezoneId = t3; break; case "date_format_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._dateFormatId = t3; break; case "military_time": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableMilitaryTime = t3; break; case "language_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._languageId = t3; break; case "show_currency_code": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._showCurrencyCode = t3; break; case "currency_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._currencyId = t3; break; case "custom_value1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_customValue1 = t3; break; case "custom_value2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_customValue2 = t3; break; case "custom_value3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_customValue3 = t3; break; case "custom_value4": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_customValue4 = t3; break; case "payment_terms": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultPaymentTerms = t3; break; case "valid_until": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultValidUntil = t3; break; case "company_gateway_ids": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._companyGatewayIds = t3; break; case "default_task_rate": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._defaultTaskRate = t3; break; case "send_reminders": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._sendReminders = t3; break; case "enable_client_portal": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enablePortal = t3; break; case "enable_client_portal_dashboard": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalDashboard = t3; break; case "enable_client_portal_tasks": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalTasks = t3; break; case "client_portal_enable_uploads": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalUploads = t3; break; case "email_style": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailStyle = t3; break; case "reply_to_email": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._replyToEmail = t3; break; case "reply_to_name": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._replyToName = t3; break; case "email_from_name": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailFromName = t3; break; case "bcc_email": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._bccEmail = t3; break; case "pdf_email_attachment": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._pdfEmailAttachment = t3; break; case "ubl_email_attachment": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._ublEmailAttachment = t3; break; case "document_email_attachment": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._documentEmailAttachment = t3; break; case "email_style_custom": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailStyleCustom = t3; break; case "custom_message_dashboard": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._customMessageDashboard = t3; break; case "custom_message_unpaid_invoice": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._customMessageUnpaidInvoice = t3; break; case "custom_message_paid_invoice": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._customMessagePaidInvoice = t3; break; case "custom_message_unapproved_quote": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._customMessageUnapprovedQuote = t3; break; case "auto_archive_invoice": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._autoArchiveInvoice = t3; break; case "auto_archive_quote": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._autoArchiveQuote = t3; break; case "auto_email_invoice": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._autoEmailInvoice = t3; break; case "auto_convert_quote": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._autoConvertQuote = t3; break; case "inclusive_taxes": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableInclusiveTaxes = t3; break; case "translations": t3 = result.get$_settings_model$_$this(); t4 = t3._translations; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t2); t4.replace$1(0, C.Map_empty0); t3._translations = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "task_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._taskNumberPattern = t3; break; case "task_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._taskNumberCounter = t3; break; case "expense_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._expenseNumberPattern = t3; break; case "expense_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._expenseNumberCounter = t3; break; case "recurring_expense_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._recurringExpenseNumberPattern = t3; break; case "recurring_expense_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._recurringExpenseNumberCounter = t3; break; case "vendor_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._vendorNumberPattern = t3; break; case "vendor_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._vendorNumberCounter = t3; break; case "ticket_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._ticketNumberPattern = t3; break; case "ticket_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._ticketNumberCounter = t3; break; case "payment_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._paymentNumberPattern = t3; break; case "payment_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._paymentNumberCounter = t3; break; case "project_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._projectNumberPattern = t3; break; case "project_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._projectNumberCounter = t3; break; case "invoice_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._invoiceNumberPattern = t3; break; case "invoice_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._invoiceNumberCounter = t3; break; case "recurring_invoice_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._recurringInvoiceNumberPattern = t3; break; case "recurring_invoice_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._recurringInvoiceNumberCounter = t3; break; case "quote_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._quoteNumberPattern = t3; break; case "quote_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._quoteNumberCounter = t3; break; case "client_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientNumberPattern = t3; break; case "client_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._clientNumberCounter = t3; break; case "credit_number_pattern": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._creditNumberPattern = t3; break; case "credit_number_counter": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._creditNumberCounter = t3; break; case "recurring_number_prefix": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._recurringNumberPrefix = t3; break; case "reset_counter_frequency_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._resetCounterFrequencyId = t3; break; case "reset_counter_date": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._resetCounterDate = t3; break; case "counter_padding": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._counterPadding = t3; break; case "shared_invoice_quote_counter": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._sharedInvoiceQuoteCounter = t3; break; case "shared_invoice_credit_counter": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._sharedInvoiceCreditCounter = t3; break; case "invoice_terms": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceTerms = t3; break; case "quote_terms": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteTerms = t3; break; case "quote_footer": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteFooter = t3; break; case "credit_terms": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditTerms = t3; break; case "credit_footer": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditFooter = t3; break; case "invoice_design_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceDesignId = t3; break; case "quote_design_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultQuoteDesignId = t3; break; case "credit_design_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultCreditDesignId = t3; break; case "invoice_footer": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultInvoiceFooter = t3; break; case "tax_name1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName1 = t3; break; case "tax_rate1": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate1 = t3; break; case "tax_name2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName2 = t3; break; case "tax_rate2": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate2 = t3; break; case "tax_name3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultTaxName3 = t3; break; case "tax_rate3": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._defaultTaxRate3 = t3; break; case "payment_type_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._defaultPaymentTypeId = t3; break; case "pdf_variables": t3 = result.get$_settings_model$_$this(); t4 = t3._pdfVariables; if (t4 == null) { t4 = new A.MapBuilder(_null, $, _null, t1); t4.replace$1(0, C.Map_empty0); t3._pdfVariables = t4; t3 = t4; } else t3 = t4; t3.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mZn)); break; case "email_signature": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSignature = t3; break; case "email_subject_invoice": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectInvoice = t3; break; case "email_subject_quote": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectQuote = t3; break; case "email_subject_credit": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCredit = t3; break; case "email_subject_payment": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectPayment = t3; break; case "email_subject_payment_partial": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectPaymentPartial = t3; break; case "email_template_invoice": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyInvoice = t3; break; case "email_template_quote": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyQuote = t3; break; case "email_template_credit": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCredit = t3; break; case "email_template_payment": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyPayment = t3; break; case "email_template_payment_partial": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyPaymentPartial = t3; break; case "email_subject_reminder1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder1 = t3; break; case "email_subject_reminder2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder2 = t3; break; case "email_subject_reminder3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminder3 = t3; break; case "email_template_reminder1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder1 = t3; break; case "email_template_reminder2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder2 = t3; break; case "email_template_reminder3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminder3 = t3; break; case "email_subject_custom1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom1 = t3; break; case "email_template_custom1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom1 = t3; break; case "email_subject_custom2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom2 = t3; break; case "email_template_custom2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom2 = t3; break; case "email_subject_custom3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectCustom3 = t3; break; case "email_template_custom3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyCustom3 = t3; break; case "email_subject_statement": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectStatement = t3; break; case "email_template_statement": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyStatement = t3; break; case "enable_client_portal_password": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enablePortalPassword = t3; break; case "signature_on_pdf": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._signatureOnPdf = t3; break; case "enable_email_markup": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableEmailMarkup = t3; break; case "show_accept_invoice_terms": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._showAcceptInvoiceTerms = t3; break; case "show_accept_quote_terms": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._showAcceptQuoteTerms = t3; break; case "require_invoice_signature": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._requireInvoiceSignature = t3; break; case "require_quote_signature": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._requireQuoteSignature = t3; break; case "name": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_name = t3; break; case "company_logo": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._companyLogo = t3; break; case "website": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_website = t3; break; case "address1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_address1 = t3; break; case "address2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_address2 = t3; break; case "city": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_city = t3; break; case "state": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_state = t3; break; case "postal_code": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_postalCode = t3; break; case "phone": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_phone = t3; break; case "email": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_email = t3; break; case "country_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_countryId = t3; break; case "vat_number": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_vatNumber = t3; break; case "id_number": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._settings_model$_idNumber = t3; break; case "page_size": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._pageSize = t3; break; case "page_layout": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._pageLayout = t3; break; case "font_size": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._fontSize = t3; break; case "primary_color": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._primaryColor = t3; break; case "secondary_color": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._secondaryColor = t3; break; case "primary_font": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._primaryFont = t3; break; case "secondary_font": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._secondaryFont = t3; break; case "hide_paid_to_date": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._hidePaidToDate = t3; break; case "embed_documents": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._embedDocuments = t3; break; case "all_pages_header": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._allPagesHeader = t3; break; case "all_pages_footer": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._allPagesFooter = t3; break; case "enable_reminder1": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder1 = t3; break; case "enable_reminder2": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder2 = t3; break; case "enable_reminder3": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableReminder3 = t3; break; case "enable_reminder_endless": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._enableReminderEndless = t3; break; case "num_days_reminder1": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder1 = t3; break; case "num_days_reminder2": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder2 = t3; break; case "num_days_reminder3": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._numDaysReminder3 = t3; break; case "schedule_reminder1": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder1 = t3; break; case "schedule_reminder2": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder2 = t3; break; case "schedule_reminder3": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._scheduleReminder3 = t3; break; case "endless_reminder_frequency_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._endlessReminderFrequencyId = t3; break; case "late_fee_amount1": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount1 = t3; break; case "late_fee_amount2": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount2 = t3; break; case "late_fee_amount3": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmount3 = t3; break; case "late_fee_endless_amount": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeeAmountEndless = t3; break; case "late_fee_percent1": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent1 = t3; break; case "late_fee_percent2": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent2 = t3; break; case "late_fee_percent3": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercent3 = t3; break; case "late_fee_endless_percent": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._lateFeePercentEndless = t3; break; case "email_subject_reminder_endless": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSubjectReminderEndless = t3; break; case "email_template_reminder_endless": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailBodyReminderEndless = t3; break; case "client_online_payment_notification": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._clientOnlinePaymentNotification = t3; break; case "client_manual_payment_notification": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._clientManualPaymentNotification = t3; break; case "counter_number_applied": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._counterNumberApplied = t3; break; case "email_sending_method": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._emailSendingMethod = t3; break; case "gmail_sending_user_id": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._gmailSendingUserId = t3; break; case "client_portal_terms": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalTerms = t3; break; case "client_portal_privacy_policy": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalPrivacy = t3; break; case "lock_invoices": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._lockInvoices = t3; break; case "auto_bill": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._autoBill = t3; break; case "client_portal_allow_under_payment": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._clientPortalAllowUnderPayment = t3; break; case "client_portal_allow_over_payment": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._clientPortalAllowOverPayment = t3; break; case "auto_bill_date": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._autoBillDate = t3; break; case "client_portal_under_payment_minimum": t3 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum = t3; break; case "use_credits_payment": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._useCreditsPayment = t3; break; case "portal_custom_head": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomHeader = t3; break; case "portal_custom_css": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomCss = t3; break; case "portal_custom_footer": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomFooter = t3; break; case "portal_custom_js": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalCustomJs = t3; break; case "hide_empty_columns_on_pdf": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_settings_model$_$this()._hideEmptyColumnsOnPdf = t3; break; case "entity_send_time": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_settings_model$_$this()._entitySendTime = t3; break; case "show_all_tasks_client_portal": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_settings_model$_$this()._clientPortalTasks = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_GXp; }, get$wireName: function() { return "SettingsEntity"; } }; G._$SettingsEntity.prototype = { rebuild$1: function(updates) { var t1 = new G.SettingsEntityBuilder(); t1._settings_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof G.SettingsEntity && _this.timezoneId == other.timezoneId && _this.dateFormatId == other.dateFormatId && _this.enableMilitaryTime == other.enableMilitaryTime && _this.languageId == other.languageId && _this.showCurrencyCode == other.showCurrencyCode && _this.currencyId == other.currencyId && _this.customValue1 == other.customValue1 && _this.customValue2 == other.customValue2 && _this.customValue3 == other.customValue3 && _this.customValue4 == other.customValue4 && _this.defaultPaymentTerms == other.defaultPaymentTerms && _this.defaultValidUntil == other.defaultValidUntil && _this.companyGatewayIds == other.companyGatewayIds && _this.defaultTaskRate == other.defaultTaskRate && _this.sendReminders == other.sendReminders && _this.enablePortal == other.enablePortal && _this.enablePortalDashboard == other.enablePortalDashboard && _this.enablePortalTasks == other.enablePortalTasks && _this.enablePortalUploads == other.enablePortalUploads && _this.emailStyle == other.emailStyle && _this.replyToEmail == other.replyToEmail && _this.replyToName == other.replyToName && _this.emailFromName == other.emailFromName && _this.bccEmail == other.bccEmail && _this.pdfEmailAttachment == other.pdfEmailAttachment && _this.ublEmailAttachment == other.ublEmailAttachment && _this.documentEmailAttachment == other.documentEmailAttachment && _this.emailStyleCustom == other.emailStyleCustom && _this.customMessageDashboard == other.customMessageDashboard && _this.customMessageUnpaidInvoice == other.customMessageUnpaidInvoice && _this.customMessagePaidInvoice == other.customMessagePaidInvoice && _this.customMessageUnapprovedQuote == other.customMessageUnapprovedQuote && _this.autoArchiveInvoice == other.autoArchiveInvoice && _this.autoArchiveQuote == other.autoArchiveQuote && _this.autoEmailInvoice == other.autoEmailInvoice && _this.autoConvertQuote == other.autoConvertQuote && _this.enableInclusiveTaxes == other.enableInclusiveTaxes && J.$eq$(_this.translations, other.translations) && _this.taskNumberPattern == other.taskNumberPattern && _this.taskNumberCounter == other.taskNumberCounter && _this.expenseNumberPattern == other.expenseNumberPattern && _this.expenseNumberCounter == other.expenseNumberCounter && _this.recurringExpenseNumberPattern == other.recurringExpenseNumberPattern && _this.recurringExpenseNumberCounter == other.recurringExpenseNumberCounter && _this.vendorNumberPattern == other.vendorNumberPattern && _this.vendorNumberCounter == other.vendorNumberCounter && _this.ticketNumberPattern == other.ticketNumberPattern && _this.ticketNumberCounter == other.ticketNumberCounter && _this.paymentNumberPattern == other.paymentNumberPattern && _this.paymentNumberCounter == other.paymentNumberCounter && _this.projectNumberPattern == other.projectNumberPattern && _this.projectNumberCounter == other.projectNumberCounter && _this.invoiceNumberPattern == other.invoiceNumberPattern && _this.invoiceNumberCounter == other.invoiceNumberCounter && _this.recurringInvoiceNumberPattern == other.recurringInvoiceNumberPattern && _this.recurringInvoiceNumberCounter == other.recurringInvoiceNumberCounter && _this.quoteNumberPattern == other.quoteNumberPattern && _this.quoteNumberCounter == other.quoteNumberCounter && _this.clientNumberPattern == other.clientNumberPattern && _this.clientNumberCounter == other.clientNumberCounter && _this.creditNumberPattern == other.creditNumberPattern && _this.creditNumberCounter == other.creditNumberCounter && _this.recurringNumberPrefix == other.recurringNumberPrefix && _this.resetCounterFrequencyId == other.resetCounterFrequencyId && _this.resetCounterDate == other.resetCounterDate && _this.counterPadding == other.counterPadding && _this.sharedInvoiceQuoteCounter == other.sharedInvoiceQuoteCounter && _this.sharedInvoiceCreditCounter == other.sharedInvoiceCreditCounter && _this.defaultInvoiceTerms == other.defaultInvoiceTerms && _this.defaultQuoteTerms == other.defaultQuoteTerms && _this.defaultQuoteFooter == other.defaultQuoteFooter && _this.defaultCreditTerms == other.defaultCreditTerms && _this.defaultCreditFooter == other.defaultCreditFooter && _this.defaultInvoiceDesignId == other.defaultInvoiceDesignId && _this.defaultQuoteDesignId == other.defaultQuoteDesignId && _this.defaultCreditDesignId == other.defaultCreditDesignId && _this.defaultInvoiceFooter == other.defaultInvoiceFooter && _this.defaultTaxName1 == other.defaultTaxName1 && _this.defaultTaxRate1 == other.defaultTaxRate1 && _this.defaultTaxName2 == other.defaultTaxName2 && _this.defaultTaxRate2 == other.defaultTaxRate2 && _this.defaultTaxName3 == other.defaultTaxName3 && _this.defaultTaxRate3 == other.defaultTaxRate3 && _this.defaultPaymentTypeId == other.defaultPaymentTypeId && J.$eq$(_this.pdfVariables, other.pdfVariables) && _this.emailSignature == other.emailSignature && _this.emailSubjectInvoice == other.emailSubjectInvoice && _this.emailSubjectQuote == other.emailSubjectQuote && _this.emailSubjectCredit == other.emailSubjectCredit && _this.emailSubjectPayment == other.emailSubjectPayment && _this.emailSubjectPaymentPartial == other.emailSubjectPaymentPartial && _this.emailBodyInvoice == other.emailBodyInvoice && _this.emailBodyQuote == other.emailBodyQuote && _this.emailBodyCredit == other.emailBodyCredit && _this.emailBodyPayment == other.emailBodyPayment && _this.emailBodyPaymentPartial == other.emailBodyPaymentPartial && _this.emailSubjectReminder1 == other.emailSubjectReminder1 && _this.emailSubjectReminder2 == other.emailSubjectReminder2 && _this.emailSubjectReminder3 == other.emailSubjectReminder3 && _this.emailBodyReminder1 == other.emailBodyReminder1 && _this.emailBodyReminder2 == other.emailBodyReminder2 && _this.emailBodyReminder3 == other.emailBodyReminder3 && _this.emailSubjectCustom1 == other.emailSubjectCustom1 && _this.emailBodyCustom1 == other.emailBodyCustom1 && _this.emailSubjectCustom2 == other.emailSubjectCustom2 && _this.emailBodyCustom2 == other.emailBodyCustom2 && _this.emailSubjectCustom3 == other.emailSubjectCustom3 && _this.emailBodyCustom3 == other.emailBodyCustom3 && _this.emailSubjectStatement == other.emailSubjectStatement && _this.emailBodyStatement == other.emailBodyStatement && _this.enablePortalPassword == other.enablePortalPassword && _this.signatureOnPdf == other.signatureOnPdf && _this.enableEmailMarkup == other.enableEmailMarkup && _this.showAcceptInvoiceTerms == other.showAcceptInvoiceTerms && _this.showAcceptQuoteTerms == other.showAcceptQuoteTerms && _this.requireInvoiceSignature == other.requireInvoiceSignature && _this.requireQuoteSignature == other.requireQuoteSignature && _this.name == other.name && _this.companyLogo == other.companyLogo && _this.website == other.website && _this.address1 == other.address1 && _this.address2 == other.address2 && _this.city == other.city && _this.state == other.state && _this.postalCode == other.postalCode && _this.phone == other.phone && _this.email == other.email && _this.countryId == other.countryId && _this.vatNumber == other.vatNumber && _this.idNumber == other.idNumber && _this.pageSize == other.pageSize && _this.pageLayout == other.pageLayout && _this.fontSize == other.fontSize && _this.primaryColor == other.primaryColor && _this.secondaryColor == other.secondaryColor && _this.primaryFont == other.primaryFont && _this.secondaryFont == other.secondaryFont && _this.hidePaidToDate == other.hidePaidToDate && _this.embedDocuments == other.embedDocuments && _this.allPagesHeader == other.allPagesHeader && _this.allPagesFooter == other.allPagesFooter && _this.enableReminder1 == other.enableReminder1 && _this.enableReminder2 == other.enableReminder2 && _this.enableReminder3 == other.enableReminder3 && _this.enableReminderEndless == other.enableReminderEndless && _this.numDaysReminder1 == other.numDaysReminder1 && _this.numDaysReminder2 == other.numDaysReminder2 && _this.numDaysReminder3 == other.numDaysReminder3 && _this.scheduleReminder1 == other.scheduleReminder1 && _this.scheduleReminder2 == other.scheduleReminder2 && _this.scheduleReminder3 == other.scheduleReminder3 && _this.endlessReminderFrequencyId == other.endlessReminderFrequencyId && _this.lateFeeAmount1 == other.lateFeeAmount1 && _this.lateFeeAmount2 == other.lateFeeAmount2 && _this.lateFeeAmount3 == other.lateFeeAmount3 && _this.lateFeeAmountEndless == other.lateFeeAmountEndless && _this.lateFeePercent1 == other.lateFeePercent1 && _this.lateFeePercent2 == other.lateFeePercent2 && _this.lateFeePercent3 == other.lateFeePercent3 && _this.lateFeePercentEndless == other.lateFeePercentEndless && _this.emailSubjectReminderEndless == other.emailSubjectReminderEndless && _this.emailBodyReminderEndless == other.emailBodyReminderEndless && _this.clientOnlinePaymentNotification == other.clientOnlinePaymentNotification && _this.clientManualPaymentNotification == other.clientManualPaymentNotification && _this.counterNumberApplied == other.counterNumberApplied && _this.emailSendingMethod == other.emailSendingMethod && _this.gmailSendingUserId == other.gmailSendingUserId && _this.clientPortalTerms == other.clientPortalTerms && _this.clientPortalPrivacy == other.clientPortalPrivacy && _this.lockInvoices == other.lockInvoices && _this.autoBill == other.autoBill && _this.clientPortalAllowUnderPayment == other.clientPortalAllowUnderPayment && _this.clientPortalAllowOverPayment == other.clientPortalAllowOverPayment && _this.autoBillDate == other.autoBillDate && _this.clientPortalUnderPaymentMinimum == other.clientPortalUnderPaymentMinimum && _this.useCreditsPayment == other.useCreditsPayment && _this.clientPortalCustomHeader == other.clientPortalCustomHeader && _this.clientPortalCustomCss == other.clientPortalCustomCss && _this.clientPortalCustomFooter == other.clientPortalCustomFooter && _this.clientPortalCustomJs == other.clientPortalCustomJs && _this.hideEmptyColumnsOnPdf == other.hideEmptyColumnsOnPdf && _this.entitySendTime == other.entitySendTime && _this.clientPortalTasks == other.clientPortalTasks; }, get$hashCode: function(_) { var _this = this, t1 = _this._settings_model$__hashCode; return t1 == null ? _this._settings_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.timezoneId)), J.get$hashCode$(_this.dateFormatId)), J.get$hashCode$(_this.enableMilitaryTime)), J.get$hashCode$(_this.languageId)), J.get$hashCode$(_this.showCurrencyCode)), J.get$hashCode$(_this.currencyId)), J.get$hashCode$(_this.customValue1)), J.get$hashCode$(_this.customValue2)), J.get$hashCode$(_this.customValue3)), J.get$hashCode$(_this.customValue4)), J.get$hashCode$(_this.defaultPaymentTerms)), J.get$hashCode$(_this.defaultValidUntil)), J.get$hashCode$(_this.companyGatewayIds)), J.get$hashCode$(_this.defaultTaskRate)), J.get$hashCode$(_this.sendReminders)), J.get$hashCode$(_this.enablePortal)), J.get$hashCode$(_this.enablePortalDashboard)), J.get$hashCode$(_this.enablePortalTasks)), J.get$hashCode$(_this.enablePortalUploads)), J.get$hashCode$(_this.emailStyle)), J.get$hashCode$(_this.replyToEmail)), J.get$hashCode$(_this.replyToName)), J.get$hashCode$(_this.emailFromName)), J.get$hashCode$(_this.bccEmail)), J.get$hashCode$(_this.pdfEmailAttachment)), J.get$hashCode$(_this.ublEmailAttachment)), J.get$hashCode$(_this.documentEmailAttachment)), J.get$hashCode$(_this.emailStyleCustom)), J.get$hashCode$(_this.customMessageDashboard)), J.get$hashCode$(_this.customMessageUnpaidInvoice)), J.get$hashCode$(_this.customMessagePaidInvoice)), J.get$hashCode$(_this.customMessageUnapprovedQuote)), J.get$hashCode$(_this.autoArchiveInvoice)), J.get$hashCode$(_this.autoArchiveQuote)), J.get$hashCode$(_this.autoEmailInvoice)), J.get$hashCode$(_this.autoConvertQuote)), J.get$hashCode$(_this.enableInclusiveTaxes)), J.get$hashCode$(_this.translations)), J.get$hashCode$(_this.taskNumberPattern)), J.get$hashCode$(_this.taskNumberCounter)), J.get$hashCode$(_this.expenseNumberPattern)), J.get$hashCode$(_this.expenseNumberCounter)), J.get$hashCode$(_this.recurringExpenseNumberPattern)), J.get$hashCode$(_this.recurringExpenseNumberCounter)), J.get$hashCode$(_this.vendorNumberPattern)), J.get$hashCode$(_this.vendorNumberCounter)), J.get$hashCode$(_this.ticketNumberPattern)), J.get$hashCode$(_this.ticketNumberCounter)), J.get$hashCode$(_this.paymentNumberPattern)), J.get$hashCode$(_this.paymentNumberCounter)), J.get$hashCode$(_this.projectNumberPattern)), J.get$hashCode$(_this.projectNumberCounter)), J.get$hashCode$(_this.invoiceNumberPattern)), J.get$hashCode$(_this.invoiceNumberCounter)), J.get$hashCode$(_this.recurringInvoiceNumberPattern)), J.get$hashCode$(_this.recurringInvoiceNumberCounter)), J.get$hashCode$(_this.quoteNumberPattern)), J.get$hashCode$(_this.quoteNumberCounter)), J.get$hashCode$(_this.clientNumberPattern)), J.get$hashCode$(_this.clientNumberCounter)), J.get$hashCode$(_this.creditNumberPattern)), J.get$hashCode$(_this.creditNumberCounter)), J.get$hashCode$(_this.recurringNumberPrefix)), J.get$hashCode$(_this.resetCounterFrequencyId)), J.get$hashCode$(_this.resetCounterDate)), J.get$hashCode$(_this.counterPadding)), J.get$hashCode$(_this.sharedInvoiceQuoteCounter)), J.get$hashCode$(_this.sharedInvoiceCreditCounter)), J.get$hashCode$(_this.defaultInvoiceTerms)), J.get$hashCode$(_this.defaultQuoteTerms)), J.get$hashCode$(_this.defaultQuoteFooter)), J.get$hashCode$(_this.defaultCreditTerms)), J.get$hashCode$(_this.defaultCreditFooter)), J.get$hashCode$(_this.defaultInvoiceDesignId)), J.get$hashCode$(_this.defaultQuoteDesignId)), J.get$hashCode$(_this.defaultCreditDesignId)), J.get$hashCode$(_this.defaultInvoiceFooter)), J.get$hashCode$(_this.defaultTaxName1)), J.get$hashCode$(_this.defaultTaxRate1)), J.get$hashCode$(_this.defaultTaxName2)), J.get$hashCode$(_this.defaultTaxRate2)), J.get$hashCode$(_this.defaultTaxName3)), J.get$hashCode$(_this.defaultTaxRate3)), J.get$hashCode$(_this.defaultPaymentTypeId)), J.get$hashCode$(_this.pdfVariables)), J.get$hashCode$(_this.emailSignature)), J.get$hashCode$(_this.emailSubjectInvoice)), J.get$hashCode$(_this.emailSubjectQuote)), J.get$hashCode$(_this.emailSubjectCredit)), J.get$hashCode$(_this.emailSubjectPayment)), J.get$hashCode$(_this.emailSubjectPaymentPartial)), J.get$hashCode$(_this.emailBodyInvoice)), J.get$hashCode$(_this.emailBodyQuote)), J.get$hashCode$(_this.emailBodyCredit)), J.get$hashCode$(_this.emailBodyPayment)), J.get$hashCode$(_this.emailBodyPaymentPartial)), J.get$hashCode$(_this.emailSubjectReminder1)), J.get$hashCode$(_this.emailSubjectReminder2)), J.get$hashCode$(_this.emailSubjectReminder3)), J.get$hashCode$(_this.emailBodyReminder1)), J.get$hashCode$(_this.emailBodyReminder2)), J.get$hashCode$(_this.emailBodyReminder3)), J.get$hashCode$(_this.emailSubjectCustom1)), J.get$hashCode$(_this.emailBodyCustom1)), J.get$hashCode$(_this.emailSubjectCustom2)), J.get$hashCode$(_this.emailBodyCustom2)), J.get$hashCode$(_this.emailSubjectCustom3)), J.get$hashCode$(_this.emailBodyCustom3)), J.get$hashCode$(_this.emailSubjectStatement)), J.get$hashCode$(_this.emailBodyStatement)), J.get$hashCode$(_this.enablePortalPassword)), J.get$hashCode$(_this.signatureOnPdf)), J.get$hashCode$(_this.enableEmailMarkup)), J.get$hashCode$(_this.showAcceptInvoiceTerms)), J.get$hashCode$(_this.showAcceptQuoteTerms)), J.get$hashCode$(_this.requireInvoiceSignature)), J.get$hashCode$(_this.requireQuoteSignature)), J.get$hashCode$(_this.name)), J.get$hashCode$(_this.companyLogo)), J.get$hashCode$(_this.website)), J.get$hashCode$(_this.address1)), J.get$hashCode$(_this.address2)), J.get$hashCode$(_this.city)), J.get$hashCode$(_this.state)), J.get$hashCode$(_this.postalCode)), J.get$hashCode$(_this.phone)), J.get$hashCode$(_this.email)), J.get$hashCode$(_this.countryId)), J.get$hashCode$(_this.vatNumber)), J.get$hashCode$(_this.idNumber)), J.get$hashCode$(_this.pageSize)), J.get$hashCode$(_this.pageLayout)), J.get$hashCode$(_this.fontSize)), J.get$hashCode$(_this.primaryColor)), J.get$hashCode$(_this.secondaryColor)), J.get$hashCode$(_this.primaryFont)), J.get$hashCode$(_this.secondaryFont)), J.get$hashCode$(_this.hidePaidToDate)), J.get$hashCode$(_this.embedDocuments)), J.get$hashCode$(_this.allPagesHeader)), J.get$hashCode$(_this.allPagesFooter)), J.get$hashCode$(_this.enableReminder1)), J.get$hashCode$(_this.enableReminder2)), J.get$hashCode$(_this.enableReminder3)), J.get$hashCode$(_this.enableReminderEndless)), J.get$hashCode$(_this.numDaysReminder1)), J.get$hashCode$(_this.numDaysReminder2)), J.get$hashCode$(_this.numDaysReminder3)), J.get$hashCode$(_this.scheduleReminder1)), J.get$hashCode$(_this.scheduleReminder2)), J.get$hashCode$(_this.scheduleReminder3)), J.get$hashCode$(_this.endlessReminderFrequencyId)), J.get$hashCode$(_this.lateFeeAmount1)), J.get$hashCode$(_this.lateFeeAmount2)), J.get$hashCode$(_this.lateFeeAmount3)), J.get$hashCode$(_this.lateFeeAmountEndless)), J.get$hashCode$(_this.lateFeePercent1)), J.get$hashCode$(_this.lateFeePercent2)), J.get$hashCode$(_this.lateFeePercent3)), J.get$hashCode$(_this.lateFeePercentEndless)), J.get$hashCode$(_this.emailSubjectReminderEndless)), J.get$hashCode$(_this.emailBodyReminderEndless)), J.get$hashCode$(_this.clientOnlinePaymentNotification)), J.get$hashCode$(_this.clientManualPaymentNotification)), J.get$hashCode$(_this.counterNumberApplied)), J.get$hashCode$(_this.emailSendingMethod)), J.get$hashCode$(_this.gmailSendingUserId)), J.get$hashCode$(_this.clientPortalTerms)), J.get$hashCode$(_this.clientPortalPrivacy)), J.get$hashCode$(_this.lockInvoices)), J.get$hashCode$(_this.autoBill)), J.get$hashCode$(_this.clientPortalAllowUnderPayment)), J.get$hashCode$(_this.clientPortalAllowOverPayment)), J.get$hashCode$(_this.autoBillDate)), J.get$hashCode$(_this.clientPortalUnderPaymentMinimum)), J.get$hashCode$(_this.useCreditsPayment)), J.get$hashCode$(_this.clientPortalCustomHeader)), J.get$hashCode$(_this.clientPortalCustomCss)), J.get$hashCode$(_this.clientPortalCustomFooter)), J.get$hashCode$(_this.clientPortalCustomJs)), J.get$hashCode$(_this.hideEmptyColumnsOnPdf)), J.get$hashCode$(_this.entitySendTime)), J.get$hashCode$(_this.clientPortalTasks))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SettingsEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "timezoneId", _this.timezoneId); t2.add$2(t1, "dateFormatId", _this.dateFormatId); t2.add$2(t1, "enableMilitaryTime", _this.enableMilitaryTime); t2.add$2(t1, "languageId", _this.languageId); t2.add$2(t1, "showCurrencyCode", _this.showCurrencyCode); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "defaultPaymentTerms", _this.defaultPaymentTerms); t2.add$2(t1, "defaultValidUntil", _this.defaultValidUntil); t2.add$2(t1, "companyGatewayIds", _this.companyGatewayIds); t2.add$2(t1, "defaultTaskRate", _this.defaultTaskRate); t2.add$2(t1, "sendReminders", _this.sendReminders); t2.add$2(t1, "enablePortal", _this.enablePortal); t2.add$2(t1, "enablePortalDashboard", _this.enablePortalDashboard); t2.add$2(t1, "enablePortalTasks", _this.enablePortalTasks); t2.add$2(t1, "enablePortalUploads", _this.enablePortalUploads); t2.add$2(t1, "emailStyle", _this.emailStyle); t2.add$2(t1, "replyToEmail", _this.replyToEmail); t2.add$2(t1, "replyToName", _this.replyToName); t2.add$2(t1, "emailFromName", _this.emailFromName); t2.add$2(t1, "bccEmail", _this.bccEmail); t2.add$2(t1, "pdfEmailAttachment", _this.pdfEmailAttachment); t2.add$2(t1, "ublEmailAttachment", _this.ublEmailAttachment); t2.add$2(t1, "documentEmailAttachment", _this.documentEmailAttachment); t2.add$2(t1, "emailStyleCustom", _this.emailStyleCustom); t2.add$2(t1, "customMessageDashboard", _this.customMessageDashboard); t2.add$2(t1, "customMessageUnpaidInvoice", _this.customMessageUnpaidInvoice); t2.add$2(t1, "customMessagePaidInvoice", _this.customMessagePaidInvoice); t2.add$2(t1, "customMessageUnapprovedQuote", _this.customMessageUnapprovedQuote); t2.add$2(t1, "autoArchiveInvoice", _this.autoArchiveInvoice); t2.add$2(t1, "autoArchiveQuote", _this.autoArchiveQuote); t2.add$2(t1, "autoEmailInvoice", _this.autoEmailInvoice); t2.add$2(t1, "autoConvertQuote", _this.autoConvertQuote); t2.add$2(t1, "enableInclusiveTaxes", _this.enableInclusiveTaxes); t2.add$2(t1, "translations", _this.translations); t2.add$2(t1, "taskNumberPattern", _this.taskNumberPattern); t2.add$2(t1, "taskNumberCounter", _this.taskNumberCounter); t2.add$2(t1, "expenseNumberPattern", _this.expenseNumberPattern); t2.add$2(t1, "expenseNumberCounter", _this.expenseNumberCounter); t2.add$2(t1, "recurringExpenseNumberPattern", _this.recurringExpenseNumberPattern); t2.add$2(t1, "recurringExpenseNumberCounter", _this.recurringExpenseNumberCounter); t2.add$2(t1, "vendorNumberPattern", _this.vendorNumberPattern); t2.add$2(t1, "vendorNumberCounter", _this.vendorNumberCounter); t2.add$2(t1, "ticketNumberPattern", _this.ticketNumberPattern); t2.add$2(t1, "ticketNumberCounter", _this.ticketNumberCounter); t2.add$2(t1, "paymentNumberPattern", _this.paymentNumberPattern); t2.add$2(t1, "paymentNumberCounter", _this.paymentNumberCounter); t2.add$2(t1, "projectNumberPattern", _this.projectNumberPattern); t2.add$2(t1, "projectNumberCounter", _this.projectNumberCounter); t2.add$2(t1, "invoiceNumberPattern", _this.invoiceNumberPattern); t2.add$2(t1, "invoiceNumberCounter", _this.invoiceNumberCounter); t2.add$2(t1, "recurringInvoiceNumberPattern", _this.recurringInvoiceNumberPattern); t2.add$2(t1, "recurringInvoiceNumberCounter", _this.recurringInvoiceNumberCounter); t2.add$2(t1, "quoteNumberPattern", _this.quoteNumberPattern); t2.add$2(t1, "quoteNumberCounter", _this.quoteNumberCounter); t2.add$2(t1, "clientNumberPattern", _this.clientNumberPattern); t2.add$2(t1, "clientNumberCounter", _this.clientNumberCounter); t2.add$2(t1, "creditNumberPattern", _this.creditNumberPattern); t2.add$2(t1, "creditNumberCounter", _this.creditNumberCounter); t2.add$2(t1, "recurringNumberPrefix", _this.recurringNumberPrefix); t2.add$2(t1, "resetCounterFrequencyId", _this.resetCounterFrequencyId); t2.add$2(t1, "resetCounterDate", _this.resetCounterDate); t2.add$2(t1, "counterPadding", _this.counterPadding); t2.add$2(t1, "sharedInvoiceQuoteCounter", _this.sharedInvoiceQuoteCounter); t2.add$2(t1, "sharedInvoiceCreditCounter", _this.sharedInvoiceCreditCounter); t2.add$2(t1, "defaultInvoiceTerms", _this.defaultInvoiceTerms); t2.add$2(t1, "defaultQuoteTerms", _this.defaultQuoteTerms); t2.add$2(t1, "defaultQuoteFooter", _this.defaultQuoteFooter); t2.add$2(t1, "defaultCreditTerms", _this.defaultCreditTerms); t2.add$2(t1, "defaultCreditFooter", _this.defaultCreditFooter); t2.add$2(t1, "defaultInvoiceDesignId", _this.defaultInvoiceDesignId); t2.add$2(t1, "defaultQuoteDesignId", _this.defaultQuoteDesignId); t2.add$2(t1, "defaultCreditDesignId", _this.defaultCreditDesignId); t2.add$2(t1, "defaultInvoiceFooter", _this.defaultInvoiceFooter); t2.add$2(t1, "defaultTaxName1", _this.defaultTaxName1); t2.add$2(t1, "defaultTaxRate1", _this.defaultTaxRate1); t2.add$2(t1, "defaultTaxName2", _this.defaultTaxName2); t2.add$2(t1, "defaultTaxRate2", _this.defaultTaxRate2); t2.add$2(t1, "defaultTaxName3", _this.defaultTaxName3); t2.add$2(t1, "defaultTaxRate3", _this.defaultTaxRate3); t2.add$2(t1, "defaultPaymentTypeId", _this.defaultPaymentTypeId); t2.add$2(t1, "pdfVariables", _this.pdfVariables); t2.add$2(t1, "emailSignature", _this.emailSignature); t2.add$2(t1, "emailSubjectInvoice", _this.emailSubjectInvoice); t2.add$2(t1, "emailSubjectQuote", _this.emailSubjectQuote); t2.add$2(t1, "emailSubjectCredit", _this.emailSubjectCredit); t2.add$2(t1, "emailSubjectPayment", _this.emailSubjectPayment); t2.add$2(t1, "emailSubjectPaymentPartial", _this.emailSubjectPaymentPartial); t2.add$2(t1, "emailBodyInvoice", _this.emailBodyInvoice); t2.add$2(t1, "emailBodyQuote", _this.emailBodyQuote); t2.add$2(t1, "emailBodyCredit", _this.emailBodyCredit); t2.add$2(t1, "emailBodyPayment", _this.emailBodyPayment); t2.add$2(t1, "emailBodyPaymentPartial", _this.emailBodyPaymentPartial); t2.add$2(t1, "emailSubjectReminder1", _this.emailSubjectReminder1); t2.add$2(t1, "emailSubjectReminder2", _this.emailSubjectReminder2); t2.add$2(t1, "emailSubjectReminder3", _this.emailSubjectReminder3); t2.add$2(t1, "emailBodyReminder1", _this.emailBodyReminder1); t2.add$2(t1, "emailBodyReminder2", _this.emailBodyReminder2); t2.add$2(t1, "emailBodyReminder3", _this.emailBodyReminder3); t2.add$2(t1, "emailSubjectCustom1", _this.emailSubjectCustom1); t2.add$2(t1, "emailBodyCustom1", _this.emailBodyCustom1); t2.add$2(t1, "emailSubjectCustom2", _this.emailSubjectCustom2); t2.add$2(t1, "emailBodyCustom2", _this.emailBodyCustom2); t2.add$2(t1, "emailSubjectCustom3", _this.emailSubjectCustom3); t2.add$2(t1, "emailBodyCustom3", _this.emailBodyCustom3); t2.add$2(t1, "emailSubjectStatement", _this.emailSubjectStatement); t2.add$2(t1, "emailBodyStatement", _this.emailBodyStatement); t2.add$2(t1, "enablePortalPassword", _this.enablePortalPassword); t2.add$2(t1, "signatureOnPdf", _this.signatureOnPdf); t2.add$2(t1, "enableEmailMarkup", _this.enableEmailMarkup); t2.add$2(t1, "showAcceptInvoiceTerms", _this.showAcceptInvoiceTerms); t2.add$2(t1, "showAcceptQuoteTerms", _this.showAcceptQuoteTerms); t2.add$2(t1, "requireInvoiceSignature", _this.requireInvoiceSignature); t2.add$2(t1, "requireQuoteSignature", _this.requireQuoteSignature); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "companyLogo", _this.companyLogo); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "pageSize", _this.pageSize); t2.add$2(t1, "pageLayout", _this.pageLayout); t2.add$2(t1, "fontSize", _this.fontSize); t2.add$2(t1, "primaryColor", _this.primaryColor); t2.add$2(t1, "secondaryColor", _this.secondaryColor); t2.add$2(t1, "primaryFont", _this.primaryFont); t2.add$2(t1, "secondaryFont", _this.secondaryFont); t2.add$2(t1, "hidePaidToDate", _this.hidePaidToDate); t2.add$2(t1, "embedDocuments", _this.embedDocuments); t2.add$2(t1, "allPagesHeader", _this.allPagesHeader); t2.add$2(t1, "allPagesFooter", _this.allPagesFooter); t2.add$2(t1, "enableReminder1", _this.enableReminder1); t2.add$2(t1, "enableReminder2", _this.enableReminder2); t2.add$2(t1, "enableReminder3", _this.enableReminder3); t2.add$2(t1, "enableReminderEndless", _this.enableReminderEndless); t2.add$2(t1, "numDaysReminder1", _this.numDaysReminder1); t2.add$2(t1, "numDaysReminder2", _this.numDaysReminder2); t2.add$2(t1, "numDaysReminder3", _this.numDaysReminder3); t2.add$2(t1, "scheduleReminder1", _this.scheduleReminder1); t2.add$2(t1, "scheduleReminder2", _this.scheduleReminder2); t2.add$2(t1, "scheduleReminder3", _this.scheduleReminder3); t2.add$2(t1, "endlessReminderFrequencyId", _this.endlessReminderFrequencyId); t2.add$2(t1, "lateFeeAmount1", _this.lateFeeAmount1); t2.add$2(t1, "lateFeeAmount2", _this.lateFeeAmount2); t2.add$2(t1, "lateFeeAmount3", _this.lateFeeAmount3); t2.add$2(t1, "lateFeeAmountEndless", _this.lateFeeAmountEndless); t2.add$2(t1, "lateFeePercent1", _this.lateFeePercent1); t2.add$2(t1, "lateFeePercent2", _this.lateFeePercent2); t2.add$2(t1, "lateFeePercent3", _this.lateFeePercent3); t2.add$2(t1, "lateFeePercentEndless", _this.lateFeePercentEndless); t2.add$2(t1, "emailSubjectReminderEndless", _this.emailSubjectReminderEndless); t2.add$2(t1, "emailBodyReminderEndless", _this.emailBodyReminderEndless); t2.add$2(t1, "clientOnlinePaymentNotification", _this.clientOnlinePaymentNotification); t2.add$2(t1, "clientManualPaymentNotification", _this.clientManualPaymentNotification); t2.add$2(t1, "counterNumberApplied", _this.counterNumberApplied); t2.add$2(t1, "emailSendingMethod", _this.emailSendingMethod); t2.add$2(t1, "gmailSendingUserId", _this.gmailSendingUserId); t2.add$2(t1, "clientPortalTerms", _this.clientPortalTerms); t2.add$2(t1, "clientPortalPrivacy", _this.clientPortalPrivacy); t2.add$2(t1, "lockInvoices", _this.lockInvoices); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "clientPortalAllowUnderPayment", _this.clientPortalAllowUnderPayment); t2.add$2(t1, "clientPortalAllowOverPayment", _this.clientPortalAllowOverPayment); t2.add$2(t1, "autoBillDate", _this.autoBillDate); t2.add$2(t1, "clientPortalUnderPaymentMinimum", _this.clientPortalUnderPaymentMinimum); t2.add$2(t1, "useCreditsPayment", _this.useCreditsPayment); t2.add$2(t1, "clientPortalCustomHeader", _this.clientPortalCustomHeader); t2.add$2(t1, "clientPortalCustomCss", _this.clientPortalCustomCss); t2.add$2(t1, "clientPortalCustomFooter", _this.clientPortalCustomFooter); t2.add$2(t1, "clientPortalCustomJs", _this.clientPortalCustomJs); t2.add$2(t1, "hideEmptyColumnsOnPdf", _this.hideEmptyColumnsOnPdf); t2.add$2(t1, "entitySendTime", _this.entitySendTime); t2.add$2(t1, "clientPortalTasks", _this.clientPortalTasks); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$address1: function() { return this.address1; }, get$address2: function() { return this.address2; }, get$city: function(receiver) { return this.city; }, get$state: function(receiver) { return this.state; }, get$postalCode: function(receiver) { return this.postalCode; } }; G.SettingsEntityBuilder.prototype = { get$translations: function() { var t1 = this.get$_settings_model$_$this(), t2 = t1._translations; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._translations = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$pdfVariables: function() { var t1 = this.get$_settings_model$_$this(), t2 = t1._pdfVariables; return t2 == null ? t1._pdfVariables = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_BuiltList_legacy_String) : t2; }, get$name: function(_) { return this.get$_settings_model$_$this()._settings_model$_name; }, get$_settings_model$_$this: function() { var t1, t2, _this = this, $$v = _this._settings_model$_$v; if ($$v != null) { _this._timezoneId = $$v.timezoneId; _this._dateFormatId = $$v.dateFormatId; _this._enableMilitaryTime = $$v.enableMilitaryTime; _this._languageId = $$v.languageId; _this._showCurrencyCode = $$v.showCurrencyCode; _this._currencyId = $$v.currencyId; _this._settings_model$_customValue1 = $$v.customValue1; _this._settings_model$_customValue2 = $$v.customValue2; _this._settings_model$_customValue3 = $$v.customValue3; _this._settings_model$_customValue4 = $$v.customValue4; _this._defaultPaymentTerms = $$v.defaultPaymentTerms; _this._defaultValidUntil = $$v.defaultValidUntil; _this._companyGatewayIds = $$v.companyGatewayIds; _this._defaultTaskRate = $$v.defaultTaskRate; _this._sendReminders = $$v.sendReminders; _this._enablePortal = $$v.enablePortal; _this._enablePortalDashboard = $$v.enablePortalDashboard; _this._enablePortalTasks = $$v.enablePortalTasks; _this._enablePortalUploads = $$v.enablePortalUploads; _this._emailStyle = $$v.emailStyle; _this._replyToEmail = $$v.replyToEmail; _this._replyToName = $$v.replyToName; _this._emailFromName = $$v.emailFromName; _this._bccEmail = $$v.bccEmail; _this._pdfEmailAttachment = $$v.pdfEmailAttachment; _this._ublEmailAttachment = $$v.ublEmailAttachment; _this._documentEmailAttachment = $$v.documentEmailAttachment; _this._emailStyleCustom = $$v.emailStyleCustom; _this._customMessageDashboard = $$v.customMessageDashboard; _this._customMessageUnpaidInvoice = $$v.customMessageUnpaidInvoice; _this._customMessagePaidInvoice = $$v.customMessagePaidInvoice; _this._customMessageUnapprovedQuote = $$v.customMessageUnapprovedQuote; _this._autoArchiveInvoice = $$v.autoArchiveInvoice; _this._autoArchiveQuote = $$v.autoArchiveQuote; _this._autoEmailInvoice = $$v.autoEmailInvoice; _this._autoConvertQuote = $$v.autoConvertQuote; _this._enableInclusiveTaxes = $$v.enableInclusiveTaxes; t1 = $$v.translations; if (t1 == null) t1 = null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._translations = t1; _this._taskNumberPattern = $$v.taskNumberPattern; _this._taskNumberCounter = $$v.taskNumberCounter; _this._expenseNumberPattern = $$v.expenseNumberPattern; _this._expenseNumberCounter = $$v.expenseNumberCounter; _this._recurringExpenseNumberPattern = $$v.recurringExpenseNumberPattern; _this._recurringExpenseNumberCounter = $$v.recurringExpenseNumberCounter; _this._vendorNumberPattern = $$v.vendorNumberPattern; _this._vendorNumberCounter = $$v.vendorNumberCounter; _this._ticketNumberPattern = $$v.ticketNumberPattern; _this._ticketNumberCounter = $$v.ticketNumberCounter; _this._paymentNumberPattern = $$v.paymentNumberPattern; _this._paymentNumberCounter = $$v.paymentNumberCounter; _this._projectNumberPattern = $$v.projectNumberPattern; _this._projectNumberCounter = $$v.projectNumberCounter; _this._invoiceNumberPattern = $$v.invoiceNumberPattern; _this._invoiceNumberCounter = $$v.invoiceNumberCounter; _this._recurringInvoiceNumberPattern = $$v.recurringInvoiceNumberPattern; _this._recurringInvoiceNumberCounter = $$v.recurringInvoiceNumberCounter; _this._quoteNumberPattern = $$v.quoteNumberPattern; _this._quoteNumberCounter = $$v.quoteNumberCounter; _this._clientNumberPattern = $$v.clientNumberPattern; _this._clientNumberCounter = $$v.clientNumberCounter; _this._creditNumberPattern = $$v.creditNumberPattern; _this._creditNumberCounter = $$v.creditNumberCounter; _this._recurringNumberPrefix = $$v.recurringNumberPrefix; _this._resetCounterFrequencyId = $$v.resetCounterFrequencyId; _this._resetCounterDate = $$v.resetCounterDate; _this._counterPadding = $$v.counterPadding; _this._sharedInvoiceQuoteCounter = $$v.sharedInvoiceQuoteCounter; _this._sharedInvoiceCreditCounter = $$v.sharedInvoiceCreditCounter; _this._defaultInvoiceTerms = $$v.defaultInvoiceTerms; _this._defaultQuoteTerms = $$v.defaultQuoteTerms; _this._defaultQuoteFooter = $$v.defaultQuoteFooter; _this._defaultCreditTerms = $$v.defaultCreditTerms; _this._defaultCreditFooter = $$v.defaultCreditFooter; _this._defaultInvoiceDesignId = $$v.defaultInvoiceDesignId; _this._defaultQuoteDesignId = $$v.defaultQuoteDesignId; _this._defaultCreditDesignId = $$v.defaultCreditDesignId; _this._defaultInvoiceFooter = $$v.defaultInvoiceFooter; _this._defaultTaxName1 = $$v.defaultTaxName1; _this._defaultTaxRate1 = $$v.defaultTaxRate1; _this._defaultTaxName2 = $$v.defaultTaxName2; _this._defaultTaxRate2 = $$v.defaultTaxRate2; _this._defaultTaxName3 = $$v.defaultTaxName3; _this._defaultTaxRate3 = $$v.defaultTaxRate3; _this._defaultPaymentTypeId = $$v.defaultPaymentTypeId; t1 = $$v.pdfVariables; if (t1 == null) t1 = null; else { t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); t2 = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t1 = t2; } _this._pdfVariables = t1; _this._emailSignature = $$v.emailSignature; _this._emailSubjectInvoice = $$v.emailSubjectInvoice; _this._emailSubjectQuote = $$v.emailSubjectQuote; _this._emailSubjectCredit = $$v.emailSubjectCredit; _this._emailSubjectPayment = $$v.emailSubjectPayment; _this._emailSubjectPaymentPartial = $$v.emailSubjectPaymentPartial; _this._emailBodyInvoice = $$v.emailBodyInvoice; _this._emailBodyQuote = $$v.emailBodyQuote; _this._emailBodyCredit = $$v.emailBodyCredit; _this._emailBodyPayment = $$v.emailBodyPayment; _this._emailBodyPaymentPartial = $$v.emailBodyPaymentPartial; _this._emailSubjectReminder1 = $$v.emailSubjectReminder1; _this._emailSubjectReminder2 = $$v.emailSubjectReminder2; _this._emailSubjectReminder3 = $$v.emailSubjectReminder3; _this._emailBodyReminder1 = $$v.emailBodyReminder1; _this._emailBodyReminder2 = $$v.emailBodyReminder2; _this._emailBodyReminder3 = $$v.emailBodyReminder3; _this._emailSubjectCustom1 = $$v.emailSubjectCustom1; _this._emailBodyCustom1 = $$v.emailBodyCustom1; _this._emailSubjectCustom2 = $$v.emailSubjectCustom2; _this._emailBodyCustom2 = $$v.emailBodyCustom2; _this._emailSubjectCustom3 = $$v.emailSubjectCustom3; _this._emailBodyCustom3 = $$v.emailBodyCustom3; _this._emailSubjectStatement = $$v.emailSubjectStatement; _this._emailBodyStatement = $$v.emailBodyStatement; _this._enablePortalPassword = $$v.enablePortalPassword; _this._signatureOnPdf = $$v.signatureOnPdf; _this._enableEmailMarkup = $$v.enableEmailMarkup; _this._showAcceptInvoiceTerms = $$v.showAcceptInvoiceTerms; _this._showAcceptQuoteTerms = $$v.showAcceptQuoteTerms; _this._requireInvoiceSignature = $$v.requireInvoiceSignature; _this._requireQuoteSignature = $$v.requireQuoteSignature; _this._settings_model$_name = $$v.name; _this._companyLogo = $$v.companyLogo; _this._settings_model$_website = $$v.website; _this._settings_model$_address1 = $$v.address1; _this._settings_model$_address2 = $$v.address2; _this._settings_model$_city = $$v.city; _this._settings_model$_state = $$v.state; _this._settings_model$_postalCode = $$v.postalCode; _this._settings_model$_phone = $$v.phone; _this._settings_model$_email = $$v.email; _this._settings_model$_countryId = $$v.countryId; _this._settings_model$_vatNumber = $$v.vatNumber; _this._settings_model$_idNumber = $$v.idNumber; _this._pageSize = $$v.pageSize; _this._pageLayout = $$v.pageLayout; _this._fontSize = $$v.fontSize; _this._primaryColor = $$v.primaryColor; _this._secondaryColor = $$v.secondaryColor; _this._primaryFont = $$v.primaryFont; _this._secondaryFont = $$v.secondaryFont; _this._hidePaidToDate = $$v.hidePaidToDate; _this._embedDocuments = $$v.embedDocuments; _this._allPagesHeader = $$v.allPagesHeader; _this._allPagesFooter = $$v.allPagesFooter; _this._enableReminder1 = $$v.enableReminder1; _this._enableReminder2 = $$v.enableReminder2; _this._enableReminder3 = $$v.enableReminder3; _this._enableReminderEndless = $$v.enableReminderEndless; _this._numDaysReminder1 = $$v.numDaysReminder1; _this._numDaysReminder2 = $$v.numDaysReminder2; _this._numDaysReminder3 = $$v.numDaysReminder3; _this._scheduleReminder1 = $$v.scheduleReminder1; _this._scheduleReminder2 = $$v.scheduleReminder2; _this._scheduleReminder3 = $$v.scheduleReminder3; _this._endlessReminderFrequencyId = $$v.endlessReminderFrequencyId; _this._lateFeeAmount1 = $$v.lateFeeAmount1; _this._lateFeeAmount2 = $$v.lateFeeAmount2; _this._lateFeeAmount3 = $$v.lateFeeAmount3; _this._lateFeeAmountEndless = $$v.lateFeeAmountEndless; _this._lateFeePercent1 = $$v.lateFeePercent1; _this._lateFeePercent2 = $$v.lateFeePercent2; _this._lateFeePercent3 = $$v.lateFeePercent3; _this._lateFeePercentEndless = $$v.lateFeePercentEndless; _this._emailSubjectReminderEndless = $$v.emailSubjectReminderEndless; _this._emailBodyReminderEndless = $$v.emailBodyReminderEndless; _this._clientOnlinePaymentNotification = $$v.clientOnlinePaymentNotification; _this._clientManualPaymentNotification = $$v.clientManualPaymentNotification; _this._counterNumberApplied = $$v.counterNumberApplied; _this._emailSendingMethod = $$v.emailSendingMethod; _this._gmailSendingUserId = $$v.gmailSendingUserId; _this._clientPortalTerms = $$v.clientPortalTerms; _this._clientPortalPrivacy = $$v.clientPortalPrivacy; _this._lockInvoices = $$v.lockInvoices; _this._autoBill = $$v.autoBill; _this._clientPortalAllowUnderPayment = $$v.clientPortalAllowUnderPayment; _this._clientPortalAllowOverPayment = $$v.clientPortalAllowOverPayment; _this._autoBillDate = $$v.autoBillDate; _this._clientPortalUnderPaymentMinimum = $$v.clientPortalUnderPaymentMinimum; _this._useCreditsPayment = $$v.useCreditsPayment; _this._clientPortalCustomHeader = $$v.clientPortalCustomHeader; _this._clientPortalCustomCss = $$v.clientPortalCustomCss; _this._clientPortalCustomFooter = $$v.clientPortalCustomFooter; _this._clientPortalCustomJs = $$v.clientPortalCustomJs; _this._hideEmptyColumnsOnPdf = $$v.hideEmptyColumnsOnPdf; _this._entitySendTime = $$v.entitySendTime; _this._clientPortalTasks = $$v.clientPortalTasks; _this._settings_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, exception, _this = this, _$result = null; try { _$result0 = _this._settings_model$_$v; if (_$result0 == null) { t1 = _this.get$_settings_model$_$this()._timezoneId; t2 = _this.get$_settings_model$_$this()._dateFormatId; t3 = _this.get$_settings_model$_$this()._enableMilitaryTime; t4 = _this.get$_settings_model$_$this()._languageId; t5 = _this.get$_settings_model$_$this()._showCurrencyCode; t6 = _this.get$_settings_model$_$this()._currencyId; t7 = _this.get$_settings_model$_$this()._settings_model$_customValue1; t8 = _this.get$_settings_model$_$this()._settings_model$_customValue2; t9 = _this.get$_settings_model$_$this()._settings_model$_customValue3; t10 = _this.get$_settings_model$_$this()._settings_model$_customValue4; t11 = _this.get$_settings_model$_$this()._defaultPaymentTerms; t12 = _this.get$_settings_model$_$this()._defaultValidUntil; t13 = _this.get$_settings_model$_$this()._companyGatewayIds; t14 = _this.get$_settings_model$_$this()._defaultTaskRate; t15 = _this.get$_settings_model$_$this()._sendReminders; t16 = _this.get$_settings_model$_$this()._enablePortal; t17 = _this.get$_settings_model$_$this()._enablePortalDashboard; t18 = _this.get$_settings_model$_$this()._enablePortalTasks; t19 = _this.get$_settings_model$_$this()._enablePortalUploads; t20 = _this.get$_settings_model$_$this()._emailStyle; t21 = _this.get$_settings_model$_$this()._replyToEmail; t22 = _this.get$_settings_model$_$this()._replyToName; t23 = _this.get$_settings_model$_$this()._emailFromName; t24 = _this.get$_settings_model$_$this()._bccEmail; t25 = _this.get$_settings_model$_$this()._pdfEmailAttachment; t26 = _this.get$_settings_model$_$this()._ublEmailAttachment; t27 = _this.get$_settings_model$_$this()._documentEmailAttachment; t28 = _this.get$_settings_model$_$this()._emailStyleCustom; t29 = _this.get$_settings_model$_$this()._customMessageDashboard; t30 = _this.get$_settings_model$_$this()._customMessageUnpaidInvoice; t31 = _this.get$_settings_model$_$this()._customMessagePaidInvoice; t32 = _this.get$_settings_model$_$this()._customMessageUnapprovedQuote; t33 = _this.get$_settings_model$_$this()._autoArchiveInvoice; t34 = _this.get$_settings_model$_$this()._autoArchiveQuote; t35 = _this.get$_settings_model$_$this()._autoEmailInvoice; t36 = _this.get$_settings_model$_$this()._autoConvertQuote; t37 = _this.get$_settings_model$_$this()._enableInclusiveTaxes; t38 = _this._translations; t38 = t38 == null ? null : t38.build$0(0); t39 = _this.get$_settings_model$_$this()._taskNumberPattern; t40 = _this.get$_settings_model$_$this()._taskNumberCounter; t41 = _this.get$_settings_model$_$this()._expenseNumberPattern; t42 = _this.get$_settings_model$_$this()._expenseNumberCounter; t43 = _this.get$_settings_model$_$this()._recurringExpenseNumberPattern; t44 = _this.get$_settings_model$_$this()._recurringExpenseNumberCounter; t45 = _this.get$_settings_model$_$this()._vendorNumberPattern; t46 = _this.get$_settings_model$_$this()._vendorNumberCounter; t47 = _this.get$_settings_model$_$this()._ticketNumberPattern; t48 = _this.get$_settings_model$_$this()._ticketNumberCounter; t49 = _this.get$_settings_model$_$this()._paymentNumberPattern; t50 = _this.get$_settings_model$_$this()._paymentNumberCounter; t51 = _this.get$_settings_model$_$this()._projectNumberPattern; t52 = _this.get$_settings_model$_$this()._projectNumberCounter; t53 = _this.get$_settings_model$_$this()._invoiceNumberPattern; t54 = _this.get$_settings_model$_$this()._invoiceNumberCounter; t55 = _this.get$_settings_model$_$this()._recurringInvoiceNumberPattern; t56 = _this.get$_settings_model$_$this()._recurringInvoiceNumberCounter; t57 = _this.get$_settings_model$_$this()._quoteNumberPattern; t58 = _this.get$_settings_model$_$this()._quoteNumberCounter; t59 = _this.get$_settings_model$_$this()._clientNumberPattern; t60 = _this.get$_settings_model$_$this()._clientNumberCounter; t61 = _this.get$_settings_model$_$this()._creditNumberPattern; t62 = _this.get$_settings_model$_$this()._creditNumberCounter; t63 = _this.get$_settings_model$_$this()._recurringNumberPrefix; t64 = _this.get$_settings_model$_$this()._resetCounterFrequencyId; t65 = _this.get$_settings_model$_$this()._resetCounterDate; t66 = _this.get$_settings_model$_$this()._counterPadding; t67 = _this.get$_settings_model$_$this()._sharedInvoiceQuoteCounter; t68 = _this.get$_settings_model$_$this()._sharedInvoiceCreditCounter; t69 = _this.get$_settings_model$_$this()._defaultInvoiceTerms; t70 = _this.get$_settings_model$_$this()._defaultQuoteTerms; t71 = _this.get$_settings_model$_$this()._defaultQuoteFooter; t72 = _this.get$_settings_model$_$this()._defaultCreditTerms; t73 = _this.get$_settings_model$_$this()._defaultCreditFooter; t74 = _this.get$_settings_model$_$this()._defaultInvoiceDesignId; t75 = _this.get$_settings_model$_$this()._defaultQuoteDesignId; t76 = _this.get$_settings_model$_$this()._defaultCreditDesignId; t77 = _this.get$_settings_model$_$this()._defaultInvoiceFooter; t78 = _this.get$_settings_model$_$this()._defaultTaxName1; t79 = _this.get$_settings_model$_$this()._defaultTaxRate1; t80 = _this.get$_settings_model$_$this()._defaultTaxName2; t81 = _this.get$_settings_model$_$this()._defaultTaxRate2; t82 = _this.get$_settings_model$_$this()._defaultTaxName3; t83 = _this.get$_settings_model$_$this()._defaultTaxRate3; t84 = _this.get$_settings_model$_$this()._defaultPaymentTypeId; t85 = _this._pdfVariables; t85 = t85 == null ? null : t85.build$0(0); t86 = _this.get$_settings_model$_$this()._emailSignature; t87 = _this.get$_settings_model$_$this()._emailSubjectInvoice; t88 = _this.get$_settings_model$_$this()._emailSubjectQuote; t89 = _this.get$_settings_model$_$this()._emailSubjectCredit; t90 = _this.get$_settings_model$_$this()._emailSubjectPayment; t91 = _this.get$_settings_model$_$this()._emailSubjectPaymentPartial; t92 = _this.get$_settings_model$_$this()._emailBodyInvoice; t93 = _this.get$_settings_model$_$this()._emailBodyQuote; t94 = _this.get$_settings_model$_$this()._emailBodyCredit; t95 = _this.get$_settings_model$_$this()._emailBodyPayment; t96 = _this.get$_settings_model$_$this()._emailBodyPaymentPartial; t97 = _this.get$_settings_model$_$this()._emailSubjectReminder1; t98 = _this.get$_settings_model$_$this()._emailSubjectReminder2; t99 = _this.get$_settings_model$_$this()._emailSubjectReminder3; t100 = _this.get$_settings_model$_$this()._emailBodyReminder1; t101 = _this.get$_settings_model$_$this()._emailBodyReminder2; t102 = _this.get$_settings_model$_$this()._emailBodyReminder3; t103 = _this.get$_settings_model$_$this()._emailSubjectCustom1; t104 = _this.get$_settings_model$_$this()._emailBodyCustom1; t105 = _this.get$_settings_model$_$this()._emailSubjectCustom2; t106 = _this.get$_settings_model$_$this()._emailBodyCustom2; t107 = _this.get$_settings_model$_$this()._emailSubjectCustom3; t108 = _this.get$_settings_model$_$this()._emailBodyCustom3; t109 = _this.get$_settings_model$_$this()._emailSubjectStatement; t110 = _this.get$_settings_model$_$this()._emailBodyStatement; t111 = _this.get$_settings_model$_$this()._enablePortalPassword; t112 = _this.get$_settings_model$_$this()._signatureOnPdf; t113 = _this.get$_settings_model$_$this()._enableEmailMarkup; t114 = _this.get$_settings_model$_$this()._showAcceptInvoiceTerms; t115 = _this.get$_settings_model$_$this()._showAcceptQuoteTerms; t116 = _this.get$_settings_model$_$this()._requireInvoiceSignature; t117 = _this.get$_settings_model$_$this()._requireQuoteSignature; t118 = _this.get$_settings_model$_$this()._settings_model$_name; t119 = _this.get$_settings_model$_$this()._companyLogo; t120 = _this.get$_settings_model$_$this()._settings_model$_website; t121 = _this.get$_settings_model$_$this()._settings_model$_address1; t122 = _this.get$_settings_model$_$this()._settings_model$_address2; t123 = _this.get$_settings_model$_$this()._settings_model$_city; t124 = _this.get$_settings_model$_$this()._settings_model$_state; t125 = _this.get$_settings_model$_$this()._settings_model$_postalCode; t126 = _this.get$_settings_model$_$this()._settings_model$_phone; t127 = _this.get$_settings_model$_$this()._settings_model$_email; t128 = _this.get$_settings_model$_$this()._settings_model$_countryId; t129 = _this.get$_settings_model$_$this()._settings_model$_vatNumber; t130 = _this.get$_settings_model$_$this()._settings_model$_idNumber; t131 = _this.get$_settings_model$_$this()._pageSize; t132 = _this.get$_settings_model$_$this()._pageLayout; t133 = _this.get$_settings_model$_$this()._fontSize; t134 = _this.get$_settings_model$_$this()._primaryColor; t135 = _this.get$_settings_model$_$this()._secondaryColor; t136 = _this.get$_settings_model$_$this()._primaryFont; t137 = _this.get$_settings_model$_$this()._secondaryFont; t138 = _this.get$_settings_model$_$this()._hidePaidToDate; t139 = _this.get$_settings_model$_$this()._embedDocuments; t140 = _this.get$_settings_model$_$this()._allPagesHeader; t141 = _this.get$_settings_model$_$this()._allPagesFooter; t142 = _this.get$_settings_model$_$this()._enableReminder1; t143 = _this.get$_settings_model$_$this()._enableReminder2; t144 = _this.get$_settings_model$_$this()._enableReminder3; t145 = _this.get$_settings_model$_$this()._enableReminderEndless; t146 = _this.get$_settings_model$_$this()._numDaysReminder1; t147 = _this.get$_settings_model$_$this()._numDaysReminder2; t148 = _this.get$_settings_model$_$this()._numDaysReminder3; t149 = _this.get$_settings_model$_$this()._scheduleReminder1; t150 = _this.get$_settings_model$_$this()._scheduleReminder2; t151 = _this.get$_settings_model$_$this()._scheduleReminder3; t152 = _this.get$_settings_model$_$this()._endlessReminderFrequencyId; t153 = _this.get$_settings_model$_$this()._lateFeeAmount1; t154 = _this.get$_settings_model$_$this()._lateFeeAmount2; t155 = _this.get$_settings_model$_$this()._lateFeeAmount3; t156 = _this.get$_settings_model$_$this()._lateFeeAmountEndless; t157 = _this.get$_settings_model$_$this()._lateFeePercent1; t158 = _this.get$_settings_model$_$this()._lateFeePercent2; t159 = _this.get$_settings_model$_$this()._lateFeePercent3; t160 = _this.get$_settings_model$_$this()._lateFeePercentEndless; t161 = _this.get$_settings_model$_$this()._emailSubjectReminderEndless; t162 = _this.get$_settings_model$_$this()._emailBodyReminderEndless; t163 = _this.get$_settings_model$_$this()._clientOnlinePaymentNotification; t164 = _this.get$_settings_model$_$this()._clientManualPaymentNotification; t165 = _this.get$_settings_model$_$this()._counterNumberApplied; t166 = _this.get$_settings_model$_$this()._emailSendingMethod; t167 = _this.get$_settings_model$_$this()._gmailSendingUserId; t168 = _this.get$_settings_model$_$this()._clientPortalTerms; t169 = _this.get$_settings_model$_$this()._clientPortalPrivacy; t170 = _this.get$_settings_model$_$this()._lockInvoices; t171 = _this.get$_settings_model$_$this()._autoBill; t172 = _this.get$_settings_model$_$this()._clientPortalAllowUnderPayment; t173 = _this.get$_settings_model$_$this()._clientPortalAllowOverPayment; t174 = _this.get$_settings_model$_$this()._autoBillDate; t175 = _this.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum; t176 = _this.get$_settings_model$_$this()._useCreditsPayment; t177 = _this.get$_settings_model$_$this()._clientPortalCustomHeader; t178 = _this.get$_settings_model$_$this()._clientPortalCustomCss; t179 = _this.get$_settings_model$_$this()._clientPortalCustomFooter; t180 = _this.get$_settings_model$_$this()._clientPortalCustomJs; t181 = _this.get$_settings_model$_$this()._hideEmptyColumnsOnPdf; t182 = _this.get$_settings_model$_$this()._entitySendTime; _$result0 = G._$SettingsEntity$_(t121, t122, t141, t140, t33, t34, t171, t174, t36, t35, t24, t123, t164, t60, t59, t163, t173, t172, t178, t179, t177, t180, t169, _this.get$_settings_model$_$this()._clientPortalTasks, t168, t175, t13, t119, t165, t66, t128, t62, t61, t6, t29, t31, t32, t30, t7, t8, t9, t10, t2, t76, t73, t72, t74, t77, t69, t11, t84, t75, t71, t70, t14, t78, t80, t82, t79, t81, t83, t12, t27, t127, t94, t104, t106, t108, t92, t95, t96, t93, t100, t101, t102, t162, t110, t23, t166, t86, t20, t28, t89, t103, t105, t107, t87, t90, t91, t88, t97, t98, t99, t161, t109, t139, t113, t37, t3, t16, t17, t111, t18, t19, t142, t143, t144, t145, t152, t182, t42, t41, t133, t167, t181, t138, t130, t54, t53, t4, t153, t154, t155, t156, t157, t158, t159, t160, t170, t118, t146, t147, t148, t132, t131, t50, t49, t25, t85, t126, t125, t134, t136, t52, t51, t58, t57, t44, t43, t56, t55, t63, t21, t22, t116, t117, t65, t64, t149, t150, t151, t135, t137, t15, t68, t67, t114, t115, t5, t112, t124, t40, t39, t48, t47, t1, t38, t26, t176, t129, t46, t45, t120); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "translations"; t1 = _this._translations; if (t1 != null) t1.build$0(0); _$failedField = "pdfVariables"; t1 = _this._pdfVariables; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("SettingsEntity", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._settings_model$_$v = t1; return _$result; } }; A.ColorTheme.prototype = {}; L.CountryListResponse.prototype = {}; L.CountryItemResponse.prototype = {}; L.CountryEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (C.JSString_methods.contains$1(this.iso2.toLowerCase(), filter)) return true; else if (C.JSString_methods.contains$1(this.iso3.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { var t1; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); t1 = this.iso2; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = this.iso3; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; L._$CountryListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_kr30)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new L.CountryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CountryEntity, t3 = type$.ListBuilder_legacy_CountryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._country_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._country_model$_data = t6; result._country_model$_$v = null; } t4 = result._country_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._country_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_kr30)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_nXg; }, get$wireName: function() { return "CountryListResponse"; } }; L._$CountryItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_i9j)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new L.CountryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CountryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._country_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new L.CountryEntityBuilder(); t3._country_model$_$v = t2; result._country_model$_data = t3; result._country_model$_$v = null; } t2 = result._country_model$_data; if (t2 == null) t2 = result._country_model$_data = new L.CountryEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_i9j)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._country_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_cKo; }, get$wireName: function() { return "CountryItemResponse"; } }; L._$CountryEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "swap_postal_code", serializers.serialize$2$specifiedType(object.swapPostalCode, C.FullType_MtR), "swap_currency_symbol", serializers.serialize$2$specifiedType(object.swapCurrencySymbol, C.FullType_MtR), "thousand_separator", serializers.serialize$2$specifiedType(object.thousandSeparator, C.FullType_h8g), "decimal_separator", serializers.serialize$2$specifiedType(object.decimalSeparator, C.FullType_h8g), "iso_3166_2", serializers.serialize$2$specifiedType(object.iso2, C.FullType_h8g), "iso_3166_3", serializers.serialize$2$specifiedType(object.iso3, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new L.CountryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._country_model$_name = t1; break; case "swap_postal_code": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_country_model$_$this()._swapPostalCode = t1; break; case "swap_currency_symbol": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_country_model$_$this()._country_model$_swapCurrencySymbol = t1; break; case "thousand_separator": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._country_model$_thousandSeparator = t1; break; case "decimal_separator": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._country_model$_decimalSeparator = t1; break; case "iso_3166_2": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._iso2 = t1; break; case "iso_3166_3": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._iso3 = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_country_model$_$this()._country_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_THJ; }, get$wireName: function() { return "CountryEntity"; } }; L._$CountryListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof L.CountryListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._country_model$__hashCode; return t1 == null ? this._country_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; L.CountryListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._country_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._country_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._country_model$_$v = null; } t1 = _this._country_model$_data; return t1 == null ? _this._country_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CountryEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "CountryListResponse", _$result = null; try { _$result0 = _this._country_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new L._$CountryListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._country_model$_$v = t1; return _$result; } }; L._$CountryItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof L.CountryItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._country_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._country_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; L.CountryItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._country_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new L.CountryEntityBuilder(); t2._country_model$_$v = t1; _this._country_model$_data = t2; _this._country_model$_$v = null; } t1 = _this._country_model$_data; return t1 == null ? _this._country_model$_data = new L.CountryEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._country_model$_$v; if (_$result0 == null) _$result0 = new L._$CountryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("CountryItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._country_model$_$v = t1; return _$result; } }; L._$CountryEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof L.CountryEntity && _this.name === other.name && _this.swapPostalCode === other.swapPostalCode && _this.swapCurrencySymbol === other.swapCurrencySymbol && _this.thousandSeparator === other.thousandSeparator && _this.decimalSeparator === other.decimalSeparator && _this.iso2 === other.iso2 && _this.iso3 === other.iso3 && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._country_model$__hashCode; return t1 == null ? _this._country_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSBool_methods.get$hashCode(_this.swapPostalCode)), C.JSBool_methods.get$hashCode(_this.swapCurrencySymbol)), C.JSString_methods.get$hashCode(_this.thousandSeparator)), C.JSString_methods.get$hashCode(_this.decimalSeparator)), C.JSString_methods.get$hashCode(_this.iso2)), C.JSString_methods.get$hashCode(_this.iso3)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CountryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "swapPostalCode", _this.swapPostalCode); t2.add$2(t1, "swapCurrencySymbol", _this.swapCurrencySymbol); t2.add$2(t1, "thousandSeparator", _this.thousandSeparator); t2.add$2(t1, "decimalSeparator", _this.decimalSeparator); t2.add$2(t1, "iso2", _this.iso2); t2.add$2(t1, "iso3", _this.iso3); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; L.CountryEntityBuilder.prototype = { get$name: function(_) { return this.get$_country_model$_$this()._country_model$_name; }, get$id: function(_) { return this.get$_country_model$_$this()._country_model$_id; }, get$_country_model$_$this: function() { var _this = this, $$v = _this._country_model$_$v; if ($$v != null) { _this._country_model$_name = $$v.name; _this._swapPostalCode = $$v.swapPostalCode; _this._country_model$_swapCurrencySymbol = $$v.swapCurrencySymbol; _this._country_model$_thousandSeparator = $$v.thousandSeparator; _this._country_model$_decimalSeparator = $$v.decimalSeparator; _this._iso2 = $$v.iso2; _this._iso3 = $$v.iso3; _this._country_model$_id = $$v.id; _this._country_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, _this = this, _s13_ = "CountryEntity", _$result = _this._country_model$_$v; if (_$result == null) { t1 = _this.get$_country_model$_$this()._country_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_country_model$_$this()._swapPostalCode; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "swapPostalCode")); t3 = _this.get$_country_model$_$this()._country_model$_swapCurrencySymbol; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "swapCurrencySymbol")); t4 = _this.get$_country_model$_$this()._country_model$_thousandSeparator; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "thousandSeparator")); t5 = _this.get$_country_model$_$this()._country_model$_decimalSeparator; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "decimalSeparator")); t6 = _this.get$_country_model$_$this()._iso2; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "iso2")); t7 = _this.get$_country_model$_$this()._iso3; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "iso3")); t8 = _this.get$_country_model$_$this()._country_model$_id; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result = L._$CountryEntity$_(t5, t8, t6, t7, t1, t3, t2, t4); } return _this._country_model$_$v = _$result; } }; L._CountryEntity_Object_SelectableEntity.prototype = {}; O.CurrencyListResponse.prototype = {}; O.CurrencyItemResponse.prototype = {}; O.CurrencyEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (C.JSString_methods.contains$1(this.code.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.code; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; O._$CurrencyListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_4uk)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new O.CurrencyListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_CurrencyEntity, t3 = type$.ListBuilder_legacy_CurrencyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._currency_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._currency_model$_data = t6; result._currency_model$_$v = null; } t4 = result._currency_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._currency_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_4uk)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_mb4; }, get$wireName: function() { return "CurrencyListResponse"; } }; O._$CurrencyItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Yio)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new O.CurrencyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_CurrencyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._currency_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new O.CurrencyEntityBuilder(); t3._currency_model$_$v = t2; result._currency_model$_data = t3; result._currency_model$_$v = null; } t2 = result._currency_model$_data; if (t2 == null) t2 = result._currency_model$_data = new O.CurrencyEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Yio)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._currency_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uUY; }, get$wireName: function() { return "CurrencyItemResponse"; } }; O._$CurrencyEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "symbol", serializers.serialize$2$specifiedType(object.symbol, C.FullType_h8g), "precision", serializers.serialize$2$specifiedType(object.precision, C.FullType_kjq), "thousand_separator", serializers.serialize$2$specifiedType(object.thousandSeparator, C.FullType_h8g), "decimal_separator", serializers.serialize$2$specifiedType(object.decimalSeparator, C.FullType_h8g), "code", serializers.serialize$2$specifiedType(object.code, C.FullType_h8g), "swap_currency_symbol", serializers.serialize$2$specifiedType(object.swapCurrencySymbol, C.FullType_MtR), "exchange_rate", serializers.serialize$2$specifiedType(object.exchangeRate, C.FullType_MME), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new O.CurrencyEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._currency_model$_name = t1; break; case "symbol": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._symbol = t1; break; case "precision": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_currency_model$_$this()._precision = t1; break; case "thousand_separator": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._thousandSeparator = t1; break; case "decimal_separator": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._decimalSeparator = t1; break; case "code": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._code = t1; break; case "swap_currency_symbol": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_currency_model$_$this()._swapCurrencySymbol = t1; break; case "exchange_rate": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_currency_model$_$this()._currency_model$_exchangeRate = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_currency_model$_$this()._currency_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_0sW; }, get$wireName: function() { return "CurrencyEntity"; } }; O._$CurrencyListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.CurrencyListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._currency_model$__hashCode; return t1 == null ? this._currency_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.CurrencyListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._currency_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._currency_model$_$v = null; } t1 = _this._currency_model$_data; return t1 == null ? _this._currency_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CurrencyEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "CurrencyListResponse", _$result = null; try { _$result0 = _this._currency_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new O._$CurrencyListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._currency_model$_$v = t1; return _$result; } }; O._$CurrencyItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.CurrencyItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._currency_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._currency_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.CurrencyItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new O.CurrencyEntityBuilder(); t2._currency_model$_$v = t1; _this._currency_model$_data = t2; _this._currency_model$_$v = null; } t1 = _this._currency_model$_data; return t1 == null ? _this._currency_model$_data = new O.CurrencyEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._currency_model$_$v; if (_$result0 == null) _$result0 = new O._$CurrencyItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("CurrencyItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._currency_model$_$v = t1; return _$result; } }; O._$CurrencyEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof O.CurrencyEntity && _this.name === other.name && _this.symbol === other.symbol && _this.precision === other.precision && _this.thousandSeparator === other.thousandSeparator && _this.decimalSeparator === other.decimalSeparator && _this.code === other.code && _this.swapCurrencySymbol === other.swapCurrencySymbol && _this.exchangeRate === other.exchangeRate && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._currency_model$__hashCode; return t1 == null ? _this._currency_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.symbol)), C.JSInt_methods.get$hashCode(_this.precision)), C.JSString_methods.get$hashCode(_this.thousandSeparator)), C.JSString_methods.get$hashCode(_this.decimalSeparator)), C.JSString_methods.get$hashCode(_this.code)), C.JSBool_methods.get$hashCode(_this.swapCurrencySymbol)), C.JSNumber_methods.get$hashCode(_this.exchangeRate)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CurrencyEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "symbol", _this.symbol); t2.add$2(t1, "precision", _this.precision); t2.add$2(t1, "thousandSeparator", _this.thousandSeparator); t2.add$2(t1, "decimalSeparator", _this.decimalSeparator); t2.add$2(t1, "code", _this.code); t2.add$2(t1, "swapCurrencySymbol", _this.swapCurrencySymbol); t2.add$2(t1, "exchangeRate", _this.exchangeRate); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; O.CurrencyEntityBuilder.prototype = { get$name: function(_) { return this.get$_currency_model$_$this()._currency_model$_name; }, get$id: function(_) { return this.get$_currency_model$_$this()._currency_model$_id; }, get$_currency_model$_$this: function() { var _this = this, $$v = _this._currency_model$_$v; if ($$v != null) { _this._currency_model$_name = $$v.name; _this._symbol = $$v.symbol; _this._precision = $$v.precision; _this._thousandSeparator = $$v.thousandSeparator; _this._decimalSeparator = $$v.decimalSeparator; _this._code = $$v.code; _this._swapCurrencySymbol = $$v.swapCurrencySymbol; _this._currency_model$_exchangeRate = $$v.exchangeRate; _this._currency_model$_id = $$v.id; _this._currency_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _s14_ = "CurrencyEntity", _$result = _this._currency_model$_$v; if (_$result == null) { t1 = _this.get$_currency_model$_$this()._currency_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_currency_model$_$this()._symbol; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "symbol")); t3 = _this.get$_currency_model$_$this()._precision; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "precision")); t4 = _this.get$_currency_model$_$this()._thousandSeparator; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "thousandSeparator")); t5 = _this.get$_currency_model$_$this()._decimalSeparator; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "decimalSeparator")); t6 = _this.get$_currency_model$_$this()._code; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "code")); t7 = _this.get$_currency_model$_$this()._swapCurrencySymbol; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "swapCurrencySymbol")); t8 = _this.get$_currency_model$_$this()._currency_model$_exchangeRate; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "exchangeRate")); t9 = _this.get$_currency_model$_$this()._currency_model$_id; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "id")); _$result = O._$CurrencyEntity$_(t6, t5, t8, t9, t1, t3, t7, t2, t4); } return _this._currency_model$_$v = _$result; } }; O._CurrencyEntity_Object_SelectableEntity.prototype = {}; M.DateFormatListResponse.prototype = {}; M.DateFormatItemResponse.prototype = {}; M.DateFormatEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(filter.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$preview: function() { return A.DateFormat$(this.format, "en").format$1(P.DateTime_parse("2000-01-31")); }, get$listDisplayName: function() { return A.DateFormat$(this.format, "en").format$1(P.DateTime_parse("2000-01-31")); }, get$listDisplayAmount: function() { return null; } }; M._$DateFormatListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_rQK)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new M.DateFormatListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DateFormatEntity, t3 = type$.ListBuilder_legacy_DateFormatEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._date_format_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._date_format_model$_data = t6; result._date_format_model$_$v = null; } t4 = result._date_format_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._date_format_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_rQK)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_jjG; }, get$wireName: function() { return "DateFormatListResponse"; } }; M._$DateFormatItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_gg9)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new M.DateFormatItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DateFormatEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._date_format_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new M.DateFormatEntityBuilder(); t3._date_format_model$_$v = t2; result._date_format_model$_data = t3; result._date_format_model$_$v = null; } t2 = result._date_format_model$_data; if (t2 == null) t2 = result._date_format_model$_data = new M.DateFormatEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_gg9)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._date_format_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_5dG; }, get$wireName: function() { return "DateFormatItemResponse"; } }; M._$DateFormatEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["format_dart", serializers.serialize$2$specifiedType(object.format, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new M.DateFormatEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "format_dart": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._date_format_model$_$v; if ($$v != null) { result._date_format_model$_format = $$v.format; result._date_format_model$_id = $$v.id; result._date_format_model$_$v = null; } result._date_format_model$_format = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._date_format_model$_$v; if ($$v != null) { result._date_format_model$_format = $$v.format; result._date_format_model$_id = $$v.id; result._date_format_model$_$v = null; } result._date_format_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_SJx; }, get$wireName: function() { return "DateFormatEntity"; } }; M._$DateFormatListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.DateFormatListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._date_format_model$__hashCode; return t1 == null ? this._date_format_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; M.DateFormatListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._date_format_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._date_format_model$_$v = null; } t1 = _this._date_format_model$_data; return t1 == null ? _this._date_format_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DateFormatEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "DateFormatListResponse", _$result = null; try { _$result0 = _this._date_format_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new M._$DateFormatListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._date_format_model$_$v = t1; return _$result; } }; M._$DateFormatItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.DateFormatItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._date_format_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._date_format_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; M.DateFormatItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new M.DateFormatEntityBuilder(); t2._date_format_model$_$v = t1; _this._date_format_model$_data = t2; _this._date_format_model$_$v = null; } t1 = _this._date_format_model$_data; return t1 == null ? _this._date_format_model$_data = new M.DateFormatEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._date_format_model$_$v; if (_$result0 == null) _$result0 = new M._$DateFormatItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("DateFormatItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._date_format_model$_$v = t1; return _$result; } }; M._$DateFormatEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.DateFormatEntity && this.format === other.format && this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._date_format_model$__hashCode; return t1 == null ? _this._date_format_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.format)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DateFormatEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "format", this.format); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; } }; M.DateFormatEntityBuilder.prototype = { get$id: function(_) { return this.get$_date_format_model$_$this()._date_format_model$_id; }, get$_date_format_model$_$this: function() { var _this = this, $$v = _this._date_format_model$_$v; if ($$v != null) { _this._date_format_model$_format = $$v.format; _this._date_format_model$_id = $$v.id; _this._date_format_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s16_ = "DateFormatEntity", _$result = _this._date_format_model$_$v; if (_$result == null) { t1 = _this.get$_date_format_model$_$this()._date_format_model$_format; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "format")); t2 = _this.get$_date_format_model$_$this()._date_format_model$_id; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "id")); _$result = new M._$DateFormatEntity(t1, t2); } return _this._date_format_model$_$v = _$result; } }; M._DateFormatEntity_Object_SelectableEntity.prototype = {}; F.DatetimeFormatListResponse.prototype = {}; F.DatetimeFormatItemResponse.prototype = {}; F.DatetimeFormatEntity.prototype = {}; F._$DatetimeFormatListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_gsm)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new F.DatetimeFormatListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DatetimeFormatEntity, t3 = type$.ListBuilder_legacy_DatetimeFormatEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._datetime_format_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._datetime_format_model$_data = t6; result._datetime_format_model$_$v = null; } t4 = result._datetime_format_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._datetime_format_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_gsm)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_aYE; }, get$wireName: function() { return "DatetimeFormatListResponse"; } }; F._$DatetimeFormatItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_kqZ)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new F.DatetimeFormatItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DatetimeFormatEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._datetime_format_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new F.DatetimeFormatEntityBuilder(); t3._datetime_format_model$_$v = t2; result._datetime_format_model$_data = t3; result._datetime_format_model$_$v = null; } t2 = result._datetime_format_model$_data; if (t2 == null) t2 = result._datetime_format_model$_data = new F.DatetimeFormatEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_kqZ)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._datetime_format_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_3GN; }, get$wireName: function() { return "DatetimeFormatItemResponse"; } }; F._$DatetimeFormatEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "format_dart", serializers.serialize$2$specifiedType(object.format, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new F.DatetimeFormatEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._datetime_format_model$_$v; if ($$v != null) { result._datetime_format_model$_id = $$v.id; result._datetime_format_model$_format = $$v.format; result._datetime_format_model$_$v = null; } result._datetime_format_model$_id = t1; break; case "format_dart": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._datetime_format_model$_$v; if ($$v != null) { result._datetime_format_model$_id = $$v.id; result._datetime_format_model$_format = $$v.format; result._datetime_format_model$_$v = null; } result._datetime_format_model$_format = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_myU; }, get$wireName: function() { return "DatetimeFormatEntity"; } }; F._$DatetimeFormatListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.DatetimeFormatListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._datetime_format_model$__hashCode; return t1 == null ? this._datetime_format_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; F.DatetimeFormatListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._datetime_format_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._datetime_format_model$_$v = null; } t1 = _this._datetime_format_model$_data; return t1 == null ? _this._datetime_format_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DatetimeFormatEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s26_ = "DatetimeFormatListResponse", _$result = null; try { _$result0 = _this._datetime_format_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new F._$DatetimeFormatListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._datetime_format_model$_$v = t1; return _$result; } }; F._$DatetimeFormatItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.DatetimeFormatItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._datetime_format_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._datetime_format_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; F.DatetimeFormatItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new F.DatetimeFormatEntityBuilder(); t2._datetime_format_model$_$v = t1; _this._datetime_format_model$_data = t2; _this._datetime_format_model$_$v = null; } t1 = _this._datetime_format_model$_data; return t1 == null ? _this._datetime_format_model$_data = new F.DatetimeFormatEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._datetime_format_model$_$v; if (_$result0 == null) _$result0 = new F._$DatetimeFormatItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("DatetimeFormatItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._datetime_format_model$_$v = t1; return _$result; } }; F._$DatetimeFormatEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.DatetimeFormatEntity && this.id === other.id && this.format === other.format; }, get$hashCode: function(_) { var _this = this, t1 = _this._datetime_format_model$__hashCode; return t1 == null ? _this._datetime_format_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.format))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DatetimeFormatEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "format", this.format); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; } }; F.DatetimeFormatEntityBuilder.prototype = { get$id: function(_) { return this.get$_datetime_format_model$_$this()._datetime_format_model$_id; }, get$_datetime_format_model$_$this: function() { var _this = this, $$v = _this._datetime_format_model$_$v; if ($$v != null) { _this._datetime_format_model$_id = $$v.id; _this._datetime_format_model$_format = $$v.format; _this._datetime_format_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s20_ = "DatetimeFormatEntity", _$result = _this._datetime_format_model$_$v; if (_$result == null) { t1 = _this.get$_datetime_format_model$_$this()._datetime_format_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "id")); t2 = _this.get$_datetime_format_model$_$this()._datetime_format_model$_format; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "format")); _$result = new F._$DatetimeFormatEntity(t1, t2); } return _this._datetime_format_model$_$v = _$result; } }; K.FontEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; K._$FontEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof K.FontEntity && this.name === other.name && this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._font_model$__hashCode; return t1 == null ? _this._font_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("FontEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; K._FontEntity_Object_SelectableEntity.prototype = {}; O.IndustryListResponse.prototype = {}; O.IndustryItemResponse.prototype = {}; O.IndustryEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; O._$IndustryListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_l2n)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new O.IndustryListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_IndustryEntity, t3 = type$.ListBuilder_legacy_IndustryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._industry_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._industry_model$_data = t6; result._industry_model$_$v = null; } t4 = result._industry_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._industry_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_l2n)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_0kz; }, get$wireName: function() { return "IndustryListResponse"; } }; O._$IndustryItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_8h5)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new O.IndustryItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_IndustryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._industry_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new O.IndustryEntityBuilder(); t3._industry_model$_$v = t2; result._industry_model$_data = t3; result._industry_model$_$v = null; } t2 = result._industry_model$_data; if (t2 == null) t2 = result._industry_model$_data = new O.IndustryEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_8h5)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._industry_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_GBj; }, get$wireName: function() { return "IndustryItemResponse"; } }; O._$IndustryEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new O.IndustryEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._industry_model$_$v; if ($$v != null) { result._industry_model$_name = $$v.name; result._industry_model$_id = $$v.id; result._industry_model$_$v = null; } result._industry_model$_name = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._industry_model$_$v; if ($$v != null) { result._industry_model$_name = $$v.name; result._industry_model$_id = $$v.id; result._industry_model$_$v = null; } result._industry_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_6n0; }, get$wireName: function() { return "IndustryEntity"; } }; O._$IndustryListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.IndustryListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._industry_model$__hashCode; return t1 == null ? this._industry_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.IndustryListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._industry_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._industry_model$_$v = null; } t1 = _this._industry_model$_data; return t1 == null ? _this._industry_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_IndustryEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "IndustryListResponse", _$result = null; try { _$result0 = _this._industry_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new O._$IndustryListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._industry_model$_$v = t1; return _$result; } }; O._$IndustryItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.IndustryItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._industry_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._industry_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; O.IndustryItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new O.IndustryEntityBuilder(); t2._industry_model$_$v = t1; _this._industry_model$_data = t2; _this._industry_model$_$v = null; } t1 = _this._industry_model$_data; return t1 == null ? _this._industry_model$_data = new O.IndustryEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._industry_model$_$v; if (_$result0 == null) _$result0 = new O._$IndustryItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("IndustryItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._industry_model$_$v = t1; return _$result; } }; O._$IndustryEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof O.IndustryEntity && this.name === other.name && this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._industry_model$__hashCode; return t1 == null ? _this._industry_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("IndustryEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; O.IndustryEntityBuilder.prototype = { get$name: function(_) { return this.get$_industry_model$_$this()._industry_model$_name; }, get$id: function(_) { return this.get$_industry_model$_$this()._industry_model$_id; }, get$_industry_model$_$this: function() { var _this = this, $$v = _this._industry_model$_$v; if ($$v != null) { _this._industry_model$_name = $$v.name; _this._industry_model$_id = $$v.id; _this._industry_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s14_ = "IndustryEntity", _$result = _this._industry_model$_$v; if (_$result == null) { t1 = _this.get$_industry_model$_$this()._industry_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_industry_model$_$this()._industry_model$_id; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "id")); _$result = new O._$IndustryEntity(t1, t2); } return _this._industry_model$_$v = _$result; } }; O._IndustryEntity_Object_SelectableEntity.prototype = {}; F.InvoiceStatusEntity.prototype = {}; F._$InvoiceStatusEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new F.InvoiceStatusEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._invoice_status_model$_$v; if ($$v != null) { result._invoice_status_model$_id = $$v.id; result._invoice_status_model$_name = $$v.name; result._invoice_status_model$_$v = null; } result._invoice_status_model$_id = t1; break; case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._invoice_status_model$_$v; if ($$v != null) { result._invoice_status_model$_id = $$v.id; result._invoice_status_model$_name = $$v.name; result._invoice_status_model$_$v = null; } result._invoice_status_model$_name = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_8aB0; }, get$wireName: function() { return "InvoiceStatusEntity"; } }; F._$InvoiceStatusEntity.prototype = { rebuild$1: function(updates) { var t1 = new F.InvoiceStatusEntityBuilder(); t1._invoice_status_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.InvoiceStatusEntity && this.id === other.id && this.name === other.name; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_status_model$__hashCode; return t1 == null ? _this._invoice_status_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.name))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "name", this.name); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; }, get$name: function(receiver) { return this.name; } }; F.InvoiceStatusEntityBuilder.prototype = { get$id: function(_) { return this.get$_invoice_status_model$_$this()._invoice_status_model$_id; }, get$name: function(_) { return this.get$_invoice_status_model$_$this()._invoice_status_model$_name; }, get$_invoice_status_model$_$this: function() { var _this = this, $$v = _this._invoice_status_model$_$v; if ($$v != null) { _this._invoice_status_model$_id = $$v.id; _this._invoice_status_model$_name = $$v.name; _this._invoice_status_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s19_ = "InvoiceStatusEntity", _$result = _this._invoice_status_model$_$v; if (_$result == null) { t1 = _this.get$_invoice_status_model$_$this()._invoice_status_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "id")); t2 = _this.get$_invoice_status_model$_$this()._invoice_status_model$_name; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "name")); _$result = F._$InvoiceStatusEntity$_(t1, t2); } return _this._invoice_status_model$_$v = _$result; } }; F._InvoiceStatusEntity_Object_EntityStatus.prototype = {}; A.LanguageListResponse.prototype = {}; A.LanguageItemResponse.prototype = {}; A.LanguageEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (C.JSString_methods.contains$1(this.locale.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.locale; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; A._$LanguageListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_r6h)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new A.LanguageListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_LanguageEntity, t3 = type$.ListBuilder_legacy_LanguageEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._language_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._language_model$_data = t6; result._language_model$_$v = null; } t4 = result._language_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._language_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_r6h)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_y6N; }, get$wireName: function() { return "LanguageListResponse"; } }; A._$LanguageItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_DZ5)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new A.LanguageItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_LanguageEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._language_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new A.LanguageEntityBuilder(); t3._language_model$_$v = t2; result._language_model$_data = t3; result._language_model$_$v = null; } t2 = result._language_model$_data; if (t2 == null) t2 = result._language_model$_data = new A.LanguageEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_DZ5)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._language_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_NcA; }, get$wireName: function() { return "LanguageItemResponse"; } }; A._$LanguageEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "locale", serializers.serialize$2$specifiedType(object.locale, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new A.LanguageEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_language_model$_$this()._language_model$_name = t1; break; case "locale": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_language_model$_$this()._language_model$_locale = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_language_model$_$this()._language_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Ohq; }, get$wireName: function() { return "LanguageEntity"; } }; A._$LanguageListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.LanguageListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._language_model$__hashCode; return t1 == null ? this._language_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.LanguageListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._language_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._language_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._language_model$_$v = null; } t1 = _this._language_model$_data; return t1 == null ? _this._language_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LanguageEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "LanguageListResponse", _$result = null; try { _$result0 = _this._language_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new A._$LanguageListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._language_model$_$v = t1; return _$result; } }; A._$LanguageItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof A.LanguageItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._language_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._language_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; A.LanguageItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._language_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new A.LanguageEntityBuilder(); t2._language_model$_$v = t1; _this._language_model$_data = t2; _this._language_model$_$v = null; } t1 = _this._language_model$_data; return t1 == null ? _this._language_model$_data = new A.LanguageEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._language_model$_$v; if (_$result0 == null) _$result0 = new A._$LanguageItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("LanguageItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._language_model$_$v = t1; return _$result; } }; A._$LanguageEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof A.LanguageEntity && _this.name === other.name && _this.locale === other.locale && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._language_model$__hashCode; return t1 == null ? _this._language_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.locale)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("LanguageEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "locale", this.locale); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; A.LanguageEntityBuilder.prototype = { get$name: function(_) { return this.get$_language_model$_$this()._language_model$_name; }, get$id: function(_) { return this.get$_language_model$_$this()._language_model$_id; }, get$_language_model$_$this: function() { var _this = this, $$v = _this._language_model$_$v; if ($$v != null) { _this._language_model$_name = $$v.name; _this._language_model$_locale = $$v.locale; _this._language_model$_id = $$v.id; _this._language_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, _this = this, _s14_ = "LanguageEntity", _$result = _this._language_model$_$v; if (_$result == null) { t1 = _this.get$_language_model$_$this()._language_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_language_model$_$this()._language_model$_locale; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "locale")); t3 = _this.get$_language_model$_$this()._language_model$_id; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "id")); _$result = A._$LanguageEntity$_(t3, t2, t1); } return _this._language_model$_$v = _$result; } }; A._LanguageEntity_Object_SelectableEntity.prototype = {}; S.PaymentTypeListResponse.prototype = {}; S.PaymentTypeItemResponse.prototype = {}; S.PaymentTypeEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; S._$PaymentTypeListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_mJb)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new S.PaymentTypeListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_PaymentTypeEntity, t3 = type$.ListBuilder_legacy_PaymentTypeEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_type_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._payment_type_model$_data = t6; result._payment_type_model$_$v = null; } t4 = result._payment_type_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._payment_type_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_mJb)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_mNZ0; }, get$wireName: function() { return "PaymentTypeListResponse"; } }; S._$PaymentTypeItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_G05)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new S.PaymentTypeItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_PaymentTypeEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._payment_type_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new S.PaymentTypeEntityBuilder(); t3._payment_type_model$_$v = t2; result._payment_type_model$_data = t3; result._payment_type_model$_$v = null; } t2 = result._payment_type_model$_data; if (t2 == null) t2 = result._payment_type_model$_data = new S.PaymentTypeEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_G05)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._payment_type_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_mNZ; }, get$wireName: function() { return "PaymentTypeItemResponse"; } }; S._$PaymentTypeEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new S.PaymentTypeEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._payment_type_model$_$v; if ($$v != null) { result._payment_type_model$_name = $$v.name; result._payment_type_model$_id = $$v.id; result._payment_type_model$_$v = null; } result._payment_type_model$_name = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._payment_type_model$_$v; if ($$v != null) { result._payment_type_model$_name = $$v.name; result._payment_type_model$_id = $$v.id; result._payment_type_model$_$v = null; } result._payment_type_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_zgG; }, get$wireName: function() { return "PaymentTypeEntity"; } }; S._$PaymentTypeListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.PaymentTypeListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._payment_type_model$__hashCode; return t1 == null ? this._payment_type_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; S.PaymentTypeListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._payment_type_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._payment_type_model$_$v = null; } t1 = _this._payment_type_model$_data; return t1 == null ? _this._payment_type_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTypeEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "PaymentTypeListResponse", _$result = null; try { _$result0 = _this._payment_type_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new S._$PaymentTypeListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_type_model$_$v = t1; return _$result; } }; S._$PaymentTypeItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.PaymentTypeItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._payment_type_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._payment_type_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; S.PaymentTypeItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new S.PaymentTypeEntityBuilder(); t2._payment_type_model$_$v = t1; _this._payment_type_model$_data = t2; _this._payment_type_model$_$v = null; } t1 = _this._payment_type_model$_data; return t1 == null ? _this._payment_type_model$_data = new S.PaymentTypeEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._payment_type_model$_$v; if (_$result0 == null) _$result0 = new S._$PaymentTypeItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("PaymentTypeItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_type_model$_$v = t1; return _$result; } }; S._$PaymentTypeEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.PaymentTypeEntity && this.name === other.name && this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_type_model$__hashCode; return t1 == null ? _this._payment_type_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTypeEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; S.PaymentTypeEntityBuilder.prototype = { get$name: function(_) { return this.get$_payment_type_model$_$this()._payment_type_model$_name; }, get$id: function(_) { return this.get$_payment_type_model$_$this()._payment_type_model$_id; }, get$_payment_type_model$_$this: function() { var _this = this, $$v = _this._payment_type_model$_$v; if ($$v != null) { _this._payment_type_model$_name = $$v.name; _this._payment_type_model$_id = $$v.id; _this._payment_type_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s17_ = "PaymentTypeEntity", _$result = _this._payment_type_model$_$v; if (_$result == null) { t1 = _this.get$_payment_type_model$_$this()._payment_type_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "name")); t2 = _this.get$_payment_type_model$_$this()._payment_type_model$_id; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "id")); _$result = new S._$PaymentTypeEntity(t1, t2); } return _this._payment_type_model$_$v = _$result; } }; S._PaymentTypeEntity_Object_SelectableEntity.prototype = {}; D.SizeListResponse.prototype = {}; D.SizeItemResponse.prototype = {}; D.SizeEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter.toLowerCase())) return true; return false; }, matchesFilterValue$1: function(filter) { if (filter == null || filter.length === 0) return null; filter.toLowerCase(); return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; D._$SizeListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_wsa)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.SizeListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SizeEntity, t3 = type$.ListBuilder_legacy_SizeEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._size_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._size_model$_data = t6; result._size_model$_$v = null; } t4 = result._size_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._size_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_wsa)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_8Gh; }, get$wireName: function() { return "SizeListResponse"; } }; D._$SizeItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_paV)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new D.SizeItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_SizeEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._size_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new D.SizeEntityBuilder(); t3._size_model$_$v = t2; result._size_model$_data = t3; result._size_model$_$v = null; } t2 = result._size_model$_data; if (t2 == null) t2 = result._size_model$_data = new D.SizeEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_paV)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._size_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_USZ; }, get$wireName: function() { return "SizeItemResponse"; } }; D._$SizeEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new D.SizeEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._size_model$_$v; if ($$v != null) { result._size_model$_name = $$v.name; result._size_model$_id = $$v.id; result._size_model$_$v = null; } result._size_model$_name = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._size_model$_$v; if ($$v != null) { result._size_model$_name = $$v.name; result._size_model$_id = $$v.id; result._size_model$_$v = null; } result._size_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wMy0; }, get$wireName: function() { return "SizeEntity"; } }; D._$SizeListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.SizeListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._size_model$__hashCode; return t1 == null ? this._size_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.SizeListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._size_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._size_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._size_model$_$v = null; } t1 = _this._size_model$_data; return t1 == null ? _this._size_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SizeEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "SizeListResponse", _$result = null; try { _$result0 = _this._size_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$SizeListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._size_model$_$v = t1; return _$result; } }; D._$SizeItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.SizeItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._size_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._size_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.SizeItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._size_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new D.SizeEntityBuilder(); t2._size_model$_$v = t1; _this._size_model$_data = t2; _this._size_model$_$v = null; } t1 = _this._size_model$_data; return t1 == null ? _this._size_model$_data = new D.SizeEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._size_model$_$v; if (_$result0 == null) _$result0 = new D._$SizeItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("SizeItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._size_model$_$v = t1; return _$result; } }; D._$SizeEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.SizeEntity && this.name === other.name && this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._size_model$__hashCode; return t1 == null ? _this._size_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SizeEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; D.SizeEntityBuilder.prototype = { get$name: function(_) { return this.get$_size_model$_$this()._size_model$_name; }, get$id: function(_) { return this.get$_size_model$_$this()._size_model$_id; }, get$_size_model$_$this: function() { var _this = this, $$v = _this._size_model$_$v; if ($$v != null) { _this._size_model$_name = $$v.name; _this._size_model$_id = $$v.id; _this._size_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s10_ = "SizeEntity", _$result = _this._size_model$_$v; if (_$result == null) { t1 = _this.get$_size_model$_$this()._size_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "name")); t2 = _this.get$_size_model$_$this()._size_model$_id; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "id")); _$result = new D._$SizeEntity(t1, t2); } return _this._size_model$_$v = _$result; } }; D._SizeEntity_Object_SelectableEntity.prototype = {}; S.StaticDataItemResponse.prototype = {}; S.StaticDataEntity.prototype = {}; S.TemplateEntity.prototype = {}; S._$StaticDataItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Met)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new S.StaticDataItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_StaticDataEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._static_data_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new S.StaticDataEntityBuilder(); t3._static_data_model$_$v = t2; result._static_data_model$_data = t3; result._static_data_model$_$v = null; } t2 = result._static_data_model$_data; if (t2 == null) t2 = result._static_data_model$_data = new S.StaticDataEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Met)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._static_data_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_UNp; }, get$wireName: function() { return "StaticDataItemResponse"; } }; S._$StaticDataEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["currencies", serializers.serialize$2$specifiedType(object.currencies, C.FullType_4uk), "sizes", serializers.serialize$2$specifiedType(object.sizes, C.FullType_wsa), "industries", serializers.serialize$2$specifiedType(object.industries, C.FullType_l2n), "timezones", serializers.serialize$2$specifiedType(object.timezones, C.FullType_NYu), "gateways", serializers.serialize$2$specifiedType(object.gateways, C.FullType_N80), "date_formats", serializers.serialize$2$specifiedType(object.dateFormats, C.FullType_rQK), "datetime_formats", serializers.serialize$2$specifiedType(object.datetimeFormats, C.FullType_gsm), "languages", serializers.serialize$2$specifiedType(object.languages, C.FullType_r6h), "payment_types", serializers.serialize$2$specifiedType(object.paymentTypes, C.FullType_mJb), "countries", serializers.serialize$2$specifiedType(object.countries, C.FullType_kr30), "invoice_status", serializers.serialize$2$specifiedType(object.invoiceStatus, C.FullType_cL3), "templates", serializers.serialize$2$specifiedType(object.templates, C.FullType_IWk)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, key, value, t25, t26, t27, result = new S.StaticDataEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_TemplateEntity, t2 = type$.legacy_BuiltList_legacy_Object, t3 = type$.legacy_InvoiceStatusEntity, t4 = type$.ListBuilder_legacy_InvoiceStatusEntity, t5 = type$.legacy_CountryEntity, t6 = type$.ListBuilder_legacy_CountryEntity, t7 = type$.legacy_PaymentTypeEntity, t8 = type$.ListBuilder_legacy_PaymentTypeEntity, t9 = type$.legacy_LanguageEntity, t10 = type$.ListBuilder_legacy_LanguageEntity, t11 = type$.legacy_DatetimeFormatEntity, t12 = type$.ListBuilder_legacy_DatetimeFormatEntity, t13 = type$.legacy_DateFormatEntity, t14 = type$.ListBuilder_legacy_DateFormatEntity, t15 = type$.legacy_GatewayEntity, t16 = type$.ListBuilder_legacy_GatewayEntity, t17 = type$.legacy_TimezoneEntity, t18 = type$.ListBuilder_legacy_TimezoneEntity, t19 = type$.legacy_IndustryEntity, t20 = type$.ListBuilder_legacy_IndustryEntity, t21 = type$.legacy_SizeEntity, t22 = type$.ListBuilder_legacy_SizeEntity, t23 = type$.legacy_CurrencyEntity, t24 = type$.ListBuilder_legacy_CurrencyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "currencies": t25 = result.get$_static_data_model$_$this(); t26 = t25._currencies; if (t26 == null) { t26 = new D.ListBuilder(t24); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t23); t25._currencies = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_4uk)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "sizes": t25 = result.get$_static_data_model$_$this(); t26 = t25._sizes; if (t26 == null) { t26 = new D.ListBuilder(t22); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t21); t25._sizes = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_wsa)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "industries": t25 = result.get$_static_data_model$_$this(); t26 = t25._industries; if (t26 == null) { t26 = new D.ListBuilder(t20); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t19); t25._industries = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_l2n)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "timezones": t25 = result.get$_static_data_model$_$this(); t26 = t25._timezones; if (t26 == null) { t26 = new D.ListBuilder(t18); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t17); t25._timezones = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_NYu)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "gateways": t25 = result.get$_static_data_model$_$this(); t26 = t25._gateways; if (t26 == null) { t26 = new D.ListBuilder(t16); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t15); t25._gateways = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_N80)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "date_formats": t25 = result.get$_static_data_model$_$this(); t26 = t25._dateFormats; if (t26 == null) { t26 = new D.ListBuilder(t14); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t13); t25._dateFormats = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_rQK)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "datetime_formats": t25 = result.get$_static_data_model$_$this(); t26 = t25._datetimeFormats; if (t26 == null) { t26 = new D.ListBuilder(t12); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t11); t25._datetimeFormats = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_gsm)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "languages": t25 = result.get$_static_data_model$_$this(); t26 = t25._languages; if (t26 == null) { t26 = new D.ListBuilder(t10); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t9); t25._languages = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_r6h)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "payment_types": t25 = result.get$_static_data_model$_$this(); t26 = t25._paymentTypes; if (t26 == null) { t26 = new D.ListBuilder(t8); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t7); t25._paymentTypes = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_mJb)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "countries": t25 = result.get$_static_data_model$_$this(); t26 = t25._countries; if (t26 == null) { t26 = new D.ListBuilder(t6); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t25._countries = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_kr30)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "invoice_status": t25 = result.get$_static_data_model$_$this(); t26 = t25._invoiceStatus; if (t26 == null) { t26 = new D.ListBuilder(t4); t26.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t25._invoiceStatus = t26; t25 = t26; } else t25 = t26; t26 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_cL3)); t27 = t25.$ti; if (t27._eval$1("_BuiltList<1>")._is(t26)) { t25.__ListBuilder__list = t26._list; t25._listOwner = t26; } else { t25.__ListBuilder__list = P.List_List$from(t26, true, t27._precomputed1); t25._listOwner = null; } break; case "templates": t25 = result.get$_static_data_model$_$this(); t26 = t25._templates; if (t26 == null) { t26 = new A.MapBuilder(null, $, null, t1); t26.replace$1(0, C.Map_empty0); t25._templates = t26; t25 = t26; } else t25 = t26; t25.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_IWk)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_K12; }, get$wireName: function() { return "StaticDataEntity"; } }; S._$TemplateEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["subject", serializers.serialize$2$specifiedType(object.subject, C.FullType_h8g), "body", serializers.serialize$2$specifiedType(object.body, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, _$result, t2, _s14_ = "TemplateEntity", result = new S.TemplateEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "subject": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._static_data_model$_$v; if ($$v != null) { result._subject = $$v.subject; result._static_data_model$_body = $$v.body; result._static_data_model$_$v = null; } result._subject = t1; break; case "body": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._static_data_model$_$v; if ($$v != null) { result._subject = $$v.subject; result._static_data_model$_body = $$v.body; result._static_data_model$_$v = null; } result._static_data_model$_body = t1; break; } } _$result = result._static_data_model$_$v; if (_$result == null) { t1 = result.get$_static_data_model$_$this()._subject; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "subject")); t2 = result.get$_static_data_model$_$this()._static_data_model$_body; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "body")); _$result = S._$TemplateEntity$_(t2, t1); } return result._static_data_model$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_9e5; }, get$wireName: function() { return "TemplateEntity"; } }; S._$StaticDataItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.StaticDataItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._static_data_model$__hashCode; return t1 == null ? this._static_data_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticDataItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; S.StaticDataItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new S.StaticDataEntityBuilder(); t2._static_data_model$_$v = t1; _this._static_data_model$_data = t2; _this._static_data_model$_$v = null; } t1 = _this._static_data_model$_data; return t1 == null ? _this._static_data_model$_data = new S.StaticDataEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "StaticDataItemResponse", _$result = null; try { _$result0 = _this._static_data_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new S._$StaticDataItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._static_data_model$_$v = t1; return _$result; } }; S._$StaticDataEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof S.StaticDataEntity && J.$eq$(_this.currencies, other.currencies) && J.$eq$(_this.sizes, other.sizes) && J.$eq$(_this.industries, other.industries) && J.$eq$(_this.timezones, other.timezones) && J.$eq$(_this.gateways, other.gateways) && J.$eq$(_this.dateFormats, other.dateFormats) && J.$eq$(_this.datetimeFormats, other.datetimeFormats) && J.$eq$(_this.languages, other.languages) && J.$eq$(_this.paymentTypes, other.paymentTypes) && J.$eq$(_this.countries, other.countries) && J.$eq$(_this.invoiceStatus, other.invoiceStatus) && J.$eq$(_this.templates, other.templates); }, get$hashCode: function(_) { var _this = this, t1 = _this._static_data_model$__hashCode; return t1 == null ? _this._static_data_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.currencies)), J.get$hashCode$(_this.sizes)), J.get$hashCode$(_this.industries)), J.get$hashCode$(_this.timezones)), J.get$hashCode$(_this.gateways)), J.get$hashCode$(_this.dateFormats)), J.get$hashCode$(_this.datetimeFormats)), J.get$hashCode$(_this.languages)), J.get$hashCode$(_this.paymentTypes)), J.get$hashCode$(_this.countries)), J.get$hashCode$(_this.invoiceStatus)), J.get$hashCode$(_this.templates))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticDataEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "currencies", _this.currencies); t2.add$2(t1, "sizes", _this.sizes); t2.add$2(t1, "industries", _this.industries); t2.add$2(t1, "timezones", _this.timezones); t2.add$2(t1, "gateways", _this.gateways); t2.add$2(t1, "dateFormats", _this.dateFormats); t2.add$2(t1, "datetimeFormats", _this.datetimeFormats); t2.add$2(t1, "languages", _this.languages); t2.add$2(t1, "paymentTypes", _this.paymentTypes); t2.add$2(t1, "countries", _this.countries); t2.add$2(t1, "invoiceStatus", _this.invoiceStatus); t2.add$2(t1, "templates", _this.templates); return t2.toString$0(t1); } }; S.StaticDataEntityBuilder.prototype = { get$currencies: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._currencies; return t2 == null ? t1._currencies = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CurrencyEntity) : t2; }, get$sizes: function(_) { var t1 = this.get$_static_data_model$_$this(), t2 = t1._sizes; return t2 == null ? t1._sizes = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SizeEntity) : t2; }, get$industries: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._industries; return t2 == null ? t1._industries = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_IndustryEntity) : t2; }, get$timezones: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._timezones; return t2 == null ? t1._timezones = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TimezoneEntity) : t2; }, get$gateways: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._gateways; return t2 == null ? t1._gateways = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_GatewayEntity) : t2; }, get$dateFormats: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._dateFormats; return t2 == null ? t1._dateFormats = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DateFormatEntity) : t2; }, get$datetimeFormats: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._datetimeFormats; return t2 == null ? t1._datetimeFormats = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DatetimeFormatEntity) : t2; }, get$languages: function(_) { var t1 = this.get$_static_data_model$_$this(), t2 = t1._languages; return t2 == null ? t1._languages = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_LanguageEntity) : t2; }, get$paymentTypes: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._paymentTypes; return t2 == null ? t1._paymentTypes = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_PaymentTypeEntity) : t2; }, get$countries: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._countries; return t2 == null ? t1._countries = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_CountryEntity) : t2; }, get$invoiceStatus: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._invoiceStatus; return t2 == null ? t1._invoiceStatus = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_InvoiceStatusEntity) : t2; }, get$templates: function() { var t1 = this.get$_static_data_model$_$this(), t2 = t1._templates; return t2 == null ? t1._templates = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity) : t2; }, get$_static_data_model$_$this: function() { var t1, t2, _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { t1 = $$v.currencies; t1.toString; _this._currencies = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.sizes; t1.toString; _this._sizes = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.industries; t1.toString; _this._industries = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.timezones; t1.toString; _this._timezones = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.gateways; t1.toString; _this._gateways = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.dateFormats; t1.toString; _this._dateFormats = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.datetimeFormats; t1.toString; _this._datetimeFormats = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.languages; t1.toString; _this._languages = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.paymentTypes; t1.toString; _this._paymentTypes = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.countries; t1.toString; _this._countries = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.invoiceStatus; t1.toString; _this._invoiceStatus = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.templates; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._templates = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._static_data_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, exception, _this = this, _s16_ = "StaticDataEntity", _$result = null; try { _$result0 = _this._static_data_model$_$v; if (_$result0 == null) { t1 = _this.get$currencies().build$0(0); t2 = _this.get$sizes(_this).build$0(0); t3 = _this.get$industries().build$0(0); t4 = _this.get$timezones().build$0(0); t5 = _this.get$gateways().build$0(0); t6 = _this.get$dateFormats().build$0(0); t7 = _this.get$datetimeFormats().build$0(0); t8 = _this.get$languages(_this).build$0(0); t9 = _this.get$paymentTypes().build$0(0); t10 = _this.get$countries().build$0(0); t11 = _this.get$invoiceStatus().build$0(0); t12 = _this.get$templates().build$0(0); _$result0 = new S._$StaticDataEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "currencies")); if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "sizes")); if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "industries")); if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "timezones")); if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "gateways")); if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "dateFormats")); if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "datetimeFormats")); if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "languages")); if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "paymentTypes")); if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "countries")); if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "invoiceStatus")); if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "templates")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "currencies"; _this.get$currencies().build$0(0); _$failedField = "sizes"; _this.get$sizes(_this).build$0(0); _$failedField = "industries"; _this.get$industries().build$0(0); _$failedField = "timezones"; _this.get$timezones().build$0(0); _$failedField = "gateways"; _this.get$gateways().build$0(0); _$failedField = "dateFormats"; _this.get$dateFormats().build$0(0); _$failedField = "datetimeFormats"; _this.get$datetimeFormats().build$0(0); _$failedField = "languages"; _this.get$languages(_this).build$0(0); _$failedField = "paymentTypes"; _this.get$paymentTypes().build$0(0); _$failedField = "countries"; _this.get$countries().build$0(0); _$failedField = "invoiceStatus"; _this.get$invoiceStatus().build$0(0); _$failedField = "templates"; _this.get$templates().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._static_data_model$_$v = t1; return _$result; } }; S._$TemplateEntity.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.TemplateEntity && this.subject === other.subject && this.body === other.body; }, get$hashCode: function(_) { var _this = this, t1 = _this._static_data_model$__hashCode; return t1 == null ? _this._static_data_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.subject)), C.JSString_methods.get$hashCode(_this.body))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TemplateEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "subject", this.subject); t2.add$2(t1, "body", this.body); return t2.toString$0(t1); }, get$body: function(receiver) { return this.body; } }; S.TemplateEntityBuilder.prototype = { get$body: function(_) { return this.get$_static_data_model$_$this()._static_data_model$_body; }, get$_static_data_model$_$this: function() { var _this = this, $$v = _this._static_data_model$_$v; if ($$v != null) { _this._subject = $$v.subject; _this._static_data_model$_body = $$v.body; _this._static_data_model$_$v = null; } return _this; } }; U.TimezoneListResponse.prototype = {}; U.TimezoneItemResponse.prototype = {}; U.TimezoneEntity.prototype = { matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(this.name.toLowerCase(), filter)) return true; else if (C.JSString_methods.contains$1(this.location.toLowerCase(), filter)) return true; return false; }, matchesFilterValue$1: function(filter) { var t1; if (filter == null || filter.length === 0) return null; t1 = this.location; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter.toLowerCase())) return t1; return null; }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; } }; U._$TimezoneListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_NYu)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new U.TimezoneListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TimezoneEntity, t3 = type$.ListBuilder_legacy_TimezoneEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._timezone_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._timezone_model$_data = t6; result._timezone_model$_$v = null; } t4 = result._timezone_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._timezone_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_NYu)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_FeN; }, get$wireName: function() { return "TimezoneListResponse"; } }; U._$TimezoneItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_bTj)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new U.TimezoneItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TimezoneEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._timezone_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new U.TimezoneEntityBuilder(); t3._timezone_model$_$v = t2; result._timezone_model$_data = t3; result._timezone_model$_$v = null; } t2 = result._timezone_model$_data; if (t2 == null) t2 = result._timezone_model$_data = new U.TimezoneEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_bTj)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._timezone_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Phi; }, get$wireName: function() { return "TimezoneItemResponse"; } }; U._$TimezoneEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "location", serializers.serialize$2$specifiedType(object.location, C.FullType_h8g), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new U.TimezoneEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_timezone_model$_$this()._timezone_model$_name = t1; break; case "location": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_timezone_model$_$this()._location = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_timezone_model$_$this()._timezone_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_U8b; }, get$wireName: function() { return "TimezoneEntity"; } }; U._$TimezoneListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof U.TimezoneListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._timezone_model$__hashCode; return t1 == null ? this._timezone_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; U.TimezoneListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._timezone_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._timezone_model$_$v = null; } t1 = _this._timezone_model$_data; return t1 == null ? _this._timezone_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TimezoneEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s20_ = "TimezoneListResponse", _$result = null; try { _$result0 = _this._timezone_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new U._$TimezoneListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s20_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s20_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._timezone_model$_$v = t1; return _$result; } }; U._$TimezoneItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof U.TimezoneItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._timezone_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._timezone_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; U.TimezoneItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new U.TimezoneEntityBuilder(); t2._timezone_model$_$v = t1; _this._timezone_model$_data = t2; _this._timezone_model$_$v = null; } t1 = _this._timezone_model$_data; return t1 == null ? _this._timezone_model$_data = new U.TimezoneEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._timezone_model$_$v; if (_$result0 == null) _$result0 = new U._$TimezoneItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TimezoneItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._timezone_model$_$v = t1; return _$result; } }; U._$TimezoneEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof U.TimezoneEntity && _this.name === other.name && _this.location === other.location && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._timezone_model$__hashCode; return t1 == null ? _this._timezone_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.location)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TimezoneEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", this.name); t2.add$2(t1, "location", this.location); t2.add$2(t1, "id", this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$id: function(receiver) { return this.id; } }; U.TimezoneEntityBuilder.prototype = { get$name: function(_) { return this.get$_timezone_model$_$this()._timezone_model$_name; }, get$id: function(_) { return this.get$_timezone_model$_$this()._timezone_model$_id; }, get$_timezone_model$_$this: function() { var _this = this, $$v = _this._timezone_model$_$v; if ($$v != null) { _this._timezone_model$_name = $$v.name; _this._location = $$v.location; _this._timezone_model$_id = $$v.id; _this._timezone_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, _this = this, _s14_ = "TimezoneEntity", _$result = _this._timezone_model$_$v; if (_$result == null) { t1 = _this.get$_timezone_model$_$this()._timezone_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "name")); t2 = _this.get$_timezone_model$_$this()._location; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "location")); t3 = _this.get$_timezone_model$_$this()._timezone_model$_id; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "id")); _$result = new U._$TimezoneEntity(t1, t2, t3); } return _this._timezone_model$_$v = _$result; } }; U._TimezoneEntity_Object_SelectableEntity.prototype = {}; X.SubscriptionListResponse.prototype = {}; X.SubscriptionItemResponse.prototype = {}; X.SubscriptionEntity.prototype = { get$entityType: function() { return C.EntityType_subscription; }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted) if (!multiselect && includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, compareTo$3: function(_, subscription, sortField, sortAscending) { var response, subscriptionA = sortAscending ? this : subscription, subscriptionB = sortAscending ? subscription : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(subscriptionA.id.toLowerCase(), subscriptionB.id.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(subscriptionA.createdAt, subscriptionB.createdAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(subscriptionA.updatedAt, subscriptionB.updatedAt); break; default: P.print("## ERROR: sort by subscription." + sortField + " is not implemented"); response = 0; break; } if (response === 0) return C.JSInt_methods.compareTo$1(subscriptionA.createdAt, subscriptionB.createdAt); else return response; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; }, $isSelectableEntity: 1 }; X.WebhookConfigurationEntity.prototype = {}; X._$SubscriptionListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_NIe)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new X.SubscriptionListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_SubscriptionEntity, t3 = type$.ListBuilder_legacy_SubscriptionEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._subscription_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._subscription_model$_data = t6; result._subscription_model$_$v = null; } t4 = result._subscription_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._subscription_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_NIe)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_QgW0; }, get$wireName: function() { return "SubscriptionListResponse"; } }; X._$SubscriptionItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_VCV)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new X.SubscriptionItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_SubscriptionEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._subscription_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new X.SubscriptionEntityBuilder(); t3._subscription_model$_$v = t2; result._subscription_model$_data = t3; result._subscription_model$_$v = null; } t2 = result._subscription_model$_data; if (t2 == null) t2 = result._subscription_model$_data = new X.SubscriptionEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_VCV)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._subscription_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_QgW; }, get$wireName: function() { return "SubscriptionItemResponse"; } }; X._$SubscriptionEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "group_id", serializers.serialize$2$specifiedType(object.groupId, C.FullType_h8g), "product_ids", serializers.serialize$2$specifiedType(object.productIds, C.FullType_h8g), "recurring_product_ids", serializers.serialize$2$specifiedType(object.recurringProductIds, C.FullType_h8g), "frequency_id", serializers.serialize$2$specifiedType(object.frequencyId, C.FullType_h8g), "auto_bill", serializers.serialize$2$specifiedType(object.autoBill, C.FullType_h8g), "promo_code", serializers.serialize$2$specifiedType(object.promoCode, C.FullType_h8g), "promo_discount", serializers.serialize$2$specifiedType(object.promoDiscount, C.FullType_MME), "price", serializers.serialize$2$specifiedType(object.price, C.FullType_MME), "is_amount_discount", serializers.serialize$2$specifiedType(object.isAmountDiscount, C.FullType_MtR), "allow_cancellation", serializers.serialize$2$specifiedType(object.allowCancellation, C.FullType_MtR), "per_seat_enabled", serializers.serialize$2$specifiedType(object.perSeatEnabled, C.FullType_MtR), "max_seats_limit", serializers.serialize$2$specifiedType(object.maxSeatsLimit, C.FullType_kjq), "trial_enabled", serializers.serialize$2$specifiedType(object.trialEnabled, C.FullType_MtR), "trial_duration", serializers.serialize$2$specifiedType(object.trialDuration, C.FullType_kjq), "allow_query_overrides", serializers.serialize$2$specifiedType(object.allowQueryOverrides, C.FullType_MtR), "allow_plan_changes", serializers.serialize$2$specifiedType(object.allowPlanChanges, C.FullType_MtR), "refund_period", serializers.serialize$2$specifiedType(object.refundPeriod, C.FullType_kjq), "webhook_configuration", serializers.serialize$2$specifiedType(object.webhookConfiguration, C.FullType_dct), "purchase_page", serializers.serialize$2$specifiedType(object.purchasePage, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new X.SubscriptionEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_WebhookConfigurationEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_name = t2; break; case "group_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_groupId = t2; break; case "product_ids": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._productIds = t2; break; case "recurring_product_ids": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._recurringProductIds = t2; break; case "frequency_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_frequencyId = t2; break; case "auto_bill": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_autoBill = t2; break; case "promo_code": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._promoCode = t2; break; case "promo_discount": t2 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_subscription_model$_$this()._promoDiscount = t2; break; case "price": t2 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_subscription_model$_$this()._price = t2; break; case "is_amount_discount": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount = t2; break; case "allow_cancellation": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._allowCancellation = t2; break; case "per_seat_enabled": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._perSeatEnabled = t2; break; case "max_seats_limit": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._maxSeatsLimit = t2; break; case "trial_enabled": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._trialEnabled = t2; break; case "trial_duration": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._trialDuration = t2; break; case "allow_query_overrides": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._allowQueryOverrides = t2; break; case "allow_plan_changes": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._allowPlanChanges = t2; break; case "refund_period": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._refundPeriod = t2; break; case "webhook_configuration": t2 = result.get$_subscription_model$_$this(); t3 = t2._webhookConfiguration; if (t3 == null) { t3 = new X.WebhookConfigurationEntityBuilder(); X.WebhookConfigurationEntity__initializeBuilder(t3); t2._webhookConfiguration = t3; t2 = t3; } else t2 = t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_dct)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._subscription_model$_$v = t3; break; case "purchase_page": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._purchasePage = t2; break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_model$_$this()._subscription_model$_archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_model$_$this()._subscription_model$_isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_assignedUserId = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._subscription_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2No; }, get$wireName: function() { return "SubscriptionEntity"; } }; X._$WebhookConfigurationEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["return_url", serializers.serialize$2$specifiedType(object.returnUrl, C.FullType_h8g), "post_purchase_url", serializers.serialize$2$specifiedType(object.postPurchaseUrl, C.FullType_h8g), "post_purchase_rest_method", serializers.serialize$2$specifiedType(object.postPurchaseRestMethod, C.FullType_h8g), "post_purchase_headers", serializers.serialize$2$specifiedType(object.postPurchaseHeaders, C.FullType_LNO), "post_purchase_body", serializers.serialize$2$specifiedType(object.postPurchaseBody, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new X.WebhookConfigurationEntityBuilder(); X.WebhookConfigurationEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "return_url": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._returnUrl = t2; break; case "post_purchase_url": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseUrl = t2; break; case "post_purchase_rest_method": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseRestMethod = t2; break; case "post_purchase_headers": t2 = result.get$_subscription_model$_$this(); t3 = t2._postPurchaseHeaders; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._postPurchaseHeaders = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "post_purchase_body": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_model$_$this()._postPurchaseBody = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_n7e; }, get$wireName: function() { return "WebhookConfigurationEntity"; } }; X._$SubscriptionListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.SubscriptionListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._subscription_model$__hashCode; return t1 == null ? this._subscription_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; X.SubscriptionListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._subscription_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._subscription_model$_$v = null; } t1 = _this._subscription_model$_data; return t1 == null ? _this._subscription_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_SubscriptionEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "SubscriptionListResponse", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new X._$SubscriptionListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_model$_$v = t1; return _$result; } }; X._$SubscriptionItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.SubscriptionItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._subscription_model$__hashCode; return t1 == null ? this._subscription_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; X.SubscriptionItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new X.SubscriptionEntityBuilder(); t2._subscription_model$_$v = t1; _this._subscription_model$_data = t2; _this._subscription_model$_$v = null; } t1 = _this._subscription_model$_data; return t1 == null ? _this._subscription_model$_data = new X.SubscriptionEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s24_ = "SubscriptionItemResponse", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new X._$SubscriptionItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s24_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s24_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_model$_$v = t1; return _$result; } }; X._$SubscriptionEntity.prototype = { rebuild$1: function(updates) { var t1 = new X.SubscriptionEntityBuilder(); t1._subscription_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof X.SubscriptionEntity && _this.name === other.name && _this.groupId === other.groupId && _this.productIds === other.productIds && _this.recurringProductIds === other.recurringProductIds && _this.frequencyId === other.frequencyId && _this.autoBill === other.autoBill && _this.promoCode === other.promoCode && _this.promoDiscount === other.promoDiscount && _this.price === other.price && _this.isAmountDiscount === other.isAmountDiscount && _this.allowCancellation === other.allowCancellation && _this.perSeatEnabled === other.perSeatEnabled && _this.maxSeatsLimit === other.maxSeatsLimit && _this.trialEnabled === other.trialEnabled && _this.trialDuration === other.trialDuration && _this.allowQueryOverrides === other.allowQueryOverrides && _this.allowPlanChanges === other.allowPlanChanges && _this.refundPeriod === other.refundPeriod && J.$eq$(_this.webhookConfiguration, other.webhookConfiguration) && _this.purchasePage === other.purchasePage && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._subscription_model$__hashCode; return t1 == null ? _this._subscription_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.groupId)), C.JSString_methods.get$hashCode(_this.productIds)), C.JSString_methods.get$hashCode(_this.recurringProductIds)), C.JSString_methods.get$hashCode(_this.frequencyId)), C.JSString_methods.get$hashCode(_this.autoBill)), C.JSString_methods.get$hashCode(_this.promoCode)), C.JSNumber_methods.get$hashCode(_this.promoDiscount)), C.JSNumber_methods.get$hashCode(_this.price)), C.JSBool_methods.get$hashCode(_this.isAmountDiscount)), C.JSBool_methods.get$hashCode(_this.allowCancellation)), C.JSBool_methods.get$hashCode(_this.perSeatEnabled)), C.JSInt_methods.get$hashCode(_this.maxSeatsLimit)), C.JSBool_methods.get$hashCode(_this.trialEnabled)), C.JSInt_methods.get$hashCode(_this.trialDuration)), C.JSBool_methods.get$hashCode(_this.allowQueryOverrides)), C.JSBool_methods.get$hashCode(_this.allowPlanChanges)), C.JSInt_methods.get$hashCode(_this.refundPeriod)), J.get$hashCode$(_this.webhookConfiguration)), C.JSString_methods.get$hashCode(_this.purchasePage)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "groupId", _this.groupId); t2.add$2(t1, "productIds", _this.productIds); t2.add$2(t1, "recurringProductIds", _this.recurringProductIds); t2.add$2(t1, "frequencyId", _this.frequencyId); t2.add$2(t1, "autoBill", _this.autoBill); t2.add$2(t1, "promoCode", _this.promoCode); t2.add$2(t1, "promoDiscount", _this.promoDiscount); t2.add$2(t1, "price", _this.price); t2.add$2(t1, "isAmountDiscount", _this.isAmountDiscount); t2.add$2(t1, "allowCancellation", _this.allowCancellation); t2.add$2(t1, "perSeatEnabled", _this.perSeatEnabled); t2.add$2(t1, "maxSeatsLimit", _this.maxSeatsLimit); t2.add$2(t1, "trialEnabled", _this.trialEnabled); t2.add$2(t1, "trialDuration", _this.trialDuration); t2.add$2(t1, "allowQueryOverrides", _this.allowQueryOverrides); t2.add$2(t1, "allowPlanChanges", _this.allowPlanChanges); t2.add$2(t1, "refundPeriod", _this.refundPeriod); t2.add$2(t1, "webhookConfiguration", _this.webhookConfiguration); t2.add$2(t1, "purchasePage", _this.purchasePage); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; X.SubscriptionEntityBuilder.prototype = { get$name: function(_) { return this.get$_subscription_model$_$this()._subscription_model$_name; }, get$webhookConfiguration: function() { var t1 = this.get$_subscription_model$_$this(), t2 = t1._webhookConfiguration; if (t2 == null) { t2 = new X.WebhookConfigurationEntityBuilder(); X.WebhookConfigurationEntity__initializeBuilder(t2); t1._webhookConfiguration = t2; t1 = t2; } else t1 = t2; return t1; }, get$id: function(_) { return this.get$_subscription_model$_$this()._subscription_model$_id; }, get$_subscription_model$_$this: function() { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { _this._subscription_model$_name = $$v.name; _this._subscription_model$_groupId = $$v.groupId; _this._productIds = $$v.productIds; _this._recurringProductIds = $$v.recurringProductIds; _this._subscription_model$_frequencyId = $$v.frequencyId; _this._subscription_model$_autoBill = $$v.autoBill; _this._promoCode = $$v.promoCode; _this._promoDiscount = $$v.promoDiscount; _this._price = $$v.price; _this._subscription_model$_isAmountDiscount = $$v.isAmountDiscount; _this._allowCancellation = $$v.allowCancellation; _this._perSeatEnabled = $$v.perSeatEnabled; _this._maxSeatsLimit = $$v.maxSeatsLimit; _this._trialEnabled = $$v.trialEnabled; _this._trialDuration = $$v.trialDuration; _this._allowQueryOverrides = $$v.allowQueryOverrides; _this._allowPlanChanges = $$v.allowPlanChanges; _this._refundPeriod = $$v.refundPeriod; t1 = $$v.webhookConfiguration; t1.toString; t2 = new X.WebhookConfigurationEntityBuilder(); X.WebhookConfigurationEntity__initializeBuilder(t2); t2._subscription_model$_$v = t1; _this._webhookConfiguration = t2; _this._purchasePage = $$v.purchasePage; _this._subscription_model$_isChanged = $$v.isChanged; _this._subscription_model$_createdAt = $$v.createdAt; _this._subscription_model$_updatedAt = $$v.updatedAt; _this._subscription_model$_archivedAt = $$v.archivedAt; _this._subscription_model$_isDeleted = $$v.isDeleted; _this._subscription_model$_createdUserId = $$v.createdUserId; _this._subscription_model$_assignedUserId = $$v.assignedUserId; _this._subscription_model$_id = $$v.id; _this._subscription_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, exception, _this = this, _s18_ = "SubscriptionEntity", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$_subscription_model$_$this()._subscription_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "name")); t2 = _this.get$_subscription_model$_$this()._subscription_model$_groupId; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "groupId")); t3 = _this.get$_subscription_model$_$this()._productIds; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "productIds")); t4 = _this.get$_subscription_model$_$this()._recurringProductIds; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "recurringProductIds")); t5 = _this.get$_subscription_model$_$this()._subscription_model$_frequencyId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "frequencyId")); t6 = _this.get$_subscription_model$_$this()._subscription_model$_autoBill; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "autoBill")); t7 = _this.get$_subscription_model$_$this()._promoCode; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "promoCode")); t8 = _this.get$_subscription_model$_$this()._promoDiscount; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "promoDiscount")); t9 = _this.get$_subscription_model$_$this()._price; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "price")); t10 = _this.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "isAmountDiscount")); t11 = _this.get$_subscription_model$_$this()._allowCancellation; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "allowCancellation")); t12 = _this.get$_subscription_model$_$this()._perSeatEnabled; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "perSeatEnabled")); t13 = _this.get$_subscription_model$_$this()._maxSeatsLimit; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "maxSeatsLimit")); t14 = _this.get$_subscription_model$_$this()._trialEnabled; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "trialEnabled")); t15 = _this.get$_subscription_model$_$this()._trialDuration; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "trialDuration")); t16 = _this.get$_subscription_model$_$this()._allowQueryOverrides; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "allowQueryOverrides")); t17 = _this.get$_subscription_model$_$this()._allowPlanChanges; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "allowPlanChanges")); t18 = _this.get$_subscription_model$_$this()._refundPeriod; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "refundPeriod")); t19 = _this.get$webhookConfiguration().build$0(0); t20 = _this.get$_subscription_model$_$this()._purchasePage; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "purchasePage")); t21 = _this.get$_subscription_model$_$this()._subscription_model$_isChanged; t22 = _this.get$_subscription_model$_$this()._subscription_model$_createdAt; if (t22 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "createdAt")); t23 = _this.get$_subscription_model$_$this()._subscription_model$_updatedAt; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "updatedAt")); t24 = _this.get$_subscription_model$_$this()._subscription_model$_archivedAt; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "archivedAt")); t25 = _this.get$_subscription_model$_$this()._subscription_model$_isDeleted; t26 = _this.get$_subscription_model$_$this()._subscription_model$_createdUserId; t27 = _this.get$_subscription_model$_$this()._subscription_model$_assignedUserId; t28 = _this.get$_subscription_model$_$this()._subscription_model$_id; if (t28 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "id")); _$result0 = X._$SubscriptionEntity$_(t11, t17, t16, t24, t27, t6, t22, t26, t5, t2, t28, t10, t21, t25, t13, t1, t12, t9, t3, t7, t8, t20, t4, t18, t15, t14, t23, t19); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "webhookConfiguration"; _this.get$webhookConfiguration().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_model$_$v = t1; return _$result; } }; X._$WebhookConfigurationEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof X.WebhookConfigurationEntity && _this.returnUrl === other.returnUrl && _this.postPurchaseUrl === other.postPurchaseUrl && _this.postPurchaseRestMethod === other.postPurchaseRestMethod && J.$eq$(_this.postPurchaseHeaders, other.postPurchaseHeaders) && _this.postPurchaseBody === other.postPurchaseBody; }, get$hashCode: function(_) { var _this = this, t1 = _this._subscription_model$__hashCode; return t1 == null ? _this._subscription_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.returnUrl)), C.JSString_methods.get$hashCode(_this.postPurchaseUrl)), C.JSString_methods.get$hashCode(_this.postPurchaseRestMethod)), J.get$hashCode$(_this.postPurchaseHeaders)), C.JSString_methods.get$hashCode(_this.postPurchaseBody))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookConfigurationEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "returnUrl", _this.returnUrl); t2.add$2(t1, "postPurchaseUrl", _this.postPurchaseUrl); t2.add$2(t1, "postPurchaseRestMethod", _this.postPurchaseRestMethod); t2.add$2(t1, "postPurchaseHeaders", _this.postPurchaseHeaders); t2.add$2(t1, "postPurchaseBody", _this.postPurchaseBody); return t2.toString$0(t1); } }; X.WebhookConfigurationEntityBuilder.prototype = { get$postPurchaseHeaders: function() { var t1 = this.get$_subscription_model$_$this(), t2 = t1._postPurchaseHeaders; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._postPurchaseHeaders = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$_subscription_model$_$this: function() { var t1, t2, _this = this, $$v = _this._subscription_model$_$v; if ($$v != null) { _this._returnUrl = $$v.returnUrl; _this._postPurchaseUrl = $$v.postPurchaseUrl; _this._postPurchaseRestMethod = $$v.postPurchaseRestMethod; t1 = $$v.postPurchaseHeaders; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._postPurchaseHeaders = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._postPurchaseBody = $$v.postPurchaseBody; _this._subscription_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, exception, _this = this, _s26_ = "WebhookConfigurationEntity", _$result = null; try { _$result0 = _this._subscription_model$_$v; if (_$result0 == null) { t1 = _this.get$_subscription_model$_$this()._returnUrl; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "returnUrl")); t2 = _this.get$_subscription_model$_$this()._postPurchaseUrl; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "postPurchaseUrl")); t3 = _this.get$_subscription_model$_$this()._postPurchaseRestMethod; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "postPurchaseRestMethod")); t4 = _this.get$postPurchaseHeaders().build$0(0); t5 = _this.get$_subscription_model$_$this()._postPurchaseBody; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s26_, "postPurchaseBody")); _$result0 = X._$WebhookConfigurationEntity$_(t5, t4, t3, t2, t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "postPurchaseHeaders"; _this.get$postPurchaseHeaders().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s26_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_model$_$v = t1; return _$result; } }; X._SubscriptionEntity_Object_BaseEntity.prototype = {}; F.SystemLogEntity.prototype = { get$category: function() { switch (this.categoryId) { case 1: return "payment"; case 2: return "email"; case 4: return "pdf"; case 5: return "security"; case 3: return "webhook"; } return ""; }, get$event: function() { var t1 = this.eventId; switch (t1) { case 10: return "payment_reconciliation_failure"; case 11: return "payment_reconciliation_success"; case 21: return "gateway_success"; case 22: return "gateway_failure"; case 23: return "gateway_error"; case 30: return "email_send"; case 31: return "email_retry_queue"; case 32: return "email_bounced"; case 33: return "email_spam_complaint"; case 34: return "email_delivery"; case 40: return "webhook_response"; case 41: return "webhook_success"; case 50: return "pdf_response"; case 60: return "authentication_failure"; case 61: return "user"; } return "Unknown " + t1; }, get$type: function(_) { var t1 = this.typeId; switch (t1) { case 300: return "PayPal"; case 301: return "Stripe"; case 302: return "ledger"; case 303: return "failure"; case 304: return "Checkout.com"; case 305: return "Authorize.net"; case 306: return "custom"; case 307: return "Braintree"; case 309: return "WePay"; case 310: return "PayFast"; case 311: return "PayTrace"; case 312: return "Mollie"; case 313: return "eWay"; case 320: return "Square"; case 400: return "quota_exceeded"; case 401: return "upstream_failure"; case 500: return "webhook_response"; case 600: return "pdf_failed"; case 601: return "pdf_success"; case 701: return "modified"; case 702: return "deleted"; case 800: return "login_success"; case 801: return "login_failure"; } return "Unknown " + t1; } }; F._$SystemLogEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g), "company_id", serializers.serialize$2$specifiedType(object.companyId, C.FullType_h8g), "user_id", serializers.serialize$2$specifiedType(object.userId, C.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, C.FullType_h8g), "event_id", serializers.serialize$2$specifiedType(object.eventId, C.FullType_kjq), "category_id", serializers.serialize$2$specifiedType(object.categoryId, C.FullType_kjq), "type_id", serializers.serialize$2$specifiedType(object.typeId, C.FullType_kjq), "log", serializers.serialize$2$specifiedType(object.log, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, _$result, t2, t3, t4, t5, t6, t7, t8, t9, _s15_ = "SystemLogEntity", result = new F.SystemLogEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_system_log_model$_$this()._system_log_model$_id = t1; break; case "company_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_system_log_model$_$this()._companyId = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_system_log_model$_$this()._userId = t1; break; case "client_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_system_log_model$_$this()._system_log_model$_clientId = t1; break; case "event_id": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_eventId = t1; break; case "category_id": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_categoryId = t1; break; case "type_id": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_typeId = t1; break; case "log": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_system_log_model$_$this()._log = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_system_log_model$_$this()._system_log_model$_createdAt = t1; break; } } _$result = result._system_log_model$_$v; if (_$result == null) { t1 = result.get$_system_log_model$_$this()._system_log_model$_id; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "id")); t2 = result.get$_system_log_model$_$this()._companyId; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "companyId")); t3 = result.get$_system_log_model$_$this()._userId; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "userId")); t4 = result.get$_system_log_model$_$this()._system_log_model$_clientId; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "clientId")); t5 = result.get$_system_log_model$_$this()._system_log_model$_eventId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "eventId")); t6 = result.get$_system_log_model$_$this()._system_log_model$_categoryId; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "categoryId")); t7 = result.get$_system_log_model$_$this()._system_log_model$_typeId; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "typeId")); t8 = result.get$_system_log_model$_$this()._log; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "log")); t9 = result.get$_system_log_model$_$this()._system_log_model$_createdAt; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "createdAt")); _$result = new F._$SystemLogEntity(t1, t2, t3, t4, t5, t6, t7, t8, t9); } return result._system_log_model$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_m2M; }, get$wireName: function() { return "SystemLogEntity"; } }; F._$SystemLogEntity.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof F.SystemLogEntity && _this.id === other.id && _this.companyId === other.companyId && _this.userId === other.userId && _this.clientId === other.clientId && _this.eventId === other.eventId && _this.categoryId === other.categoryId && _this.typeId === other.typeId && _this.log === other.log && _this.createdAt === other.createdAt; }, get$hashCode: function(_) { var _this = this, t1 = _this._system_log_model$__hashCode; return t1 == null ? _this._system_log_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.id)), C.JSString_methods.get$hashCode(_this.companyId)), C.JSString_methods.get$hashCode(_this.userId)), C.JSString_methods.get$hashCode(_this.clientId)), C.JSInt_methods.get$hashCode(_this.eventId)), C.JSInt_methods.get$hashCode(_this.categoryId)), C.JSInt_methods.get$hashCode(_this.typeId)), C.JSString_methods.get$hashCode(_this.log)), C.JSInt_methods.get$hashCode(_this.createdAt))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SystemLogEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", _this.id); t2.add$2(t1, "companyId", _this.companyId); t2.add$2(t1, "userId", _this.userId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "eventId", _this.eventId); t2.add$2(t1, "categoryId", _this.categoryId); t2.add$2(t1, "typeId", _this.typeId); t2.add$2(t1, "log", _this.log); t2.add$2(t1, "createdAt", _this.createdAt); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; } }; F.SystemLogEntityBuilder.prototype = { get$id: function(_) { return this.get$_system_log_model$_$this()._system_log_model$_id; }, get$_system_log_model$_$this: function() { var _this = this, $$v = _this._system_log_model$_$v; if ($$v != null) { _this._system_log_model$_id = $$v.id; _this._companyId = $$v.companyId; _this._userId = $$v.userId; _this._system_log_model$_clientId = $$v.clientId; _this._system_log_model$_eventId = $$v.eventId; _this._system_log_model$_categoryId = $$v.categoryId; _this._system_log_model$_typeId = $$v.typeId; _this._log = $$v.log; _this._system_log_model$_createdAt = $$v.createdAt; _this._system_log_model$_$v = null; } return _this; } }; D.TaskListResponse.prototype = {}; D.TaskItemResponse.prototype = {}; D.TaskTime.prototype = { get$duration: function(_) { var t1 = this.endDate; if (t1 == null) t1 = new P.DateTime(Date.now(), false); return P.Duration$(0, 0, 0, t1._value - this.startDate._value, 0, 0); }, get$asList: function() { var t1 = C.JSNumber_methods.floor$0(this.startDate._value / 1000), t2 = this.endDate; return [t1, t2 != null ? C.JSNumber_methods.floor$0(t2._value / 1000) : 0]; }, get$stop: function(_) { return this.rebuild$1(new D.TaskTime_stop_closure()); }, get$isEmpty: function(_) { return this.startDate == null && this.endDate == null; }, getParts$0: function() { var dates, offset, t2, nextDate, duration, _this = this, localStartDate = _this.startDate.toLocal$0(), t1 = _this.endDate, localEndDate = (t1 == null ? new P.DateTime(Date.now(), false) : t1).toLocal$0(), startSqlDate = Y.convertDateTimeToSqlDate(localStartDate); if (startSqlDate == Y.convertDateTimeToSqlDate(localEndDate)) return P.LinkedHashMap_LinkedHashMap$_literal([startSqlDate, _this.get$duration(_this)], type$.legacy_String, type$.legacy_Duration); t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(localStartDate), H.Primitives_getMonth(localStartDate), H.Primitives_getDay(localStartDate), 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); dates = P.LinkedHashMap_LinkedHashMap$_literal([startSqlDate, P.Duration$(0, 0, 0, new P.DateTime(t1, false).add$1(0, P.Duration$(1, 0, 0, 0, 0, 0))._value - localStartDate._value, 0, 0)], type$.legacy_String, type$.legacy_Duration); t1 = localEndDate._value; offset = 1; do { t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(localStartDate), H.Primitives_getMonth(localStartDate), H.Primitives_getDay(localStartDate), 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); nextDate = new P.DateTime(t2, false).add$1(0, P.Duration$(offset, 0, 0, 0, 0, 0)); ++offset; t2 = nextDate._value; duration = P.Duration$(0, 0, 0, t1 - t2, 0, 0); if (C.JSInt_methods._tdivFast$1(duration._duration, 3600000000) > 24) duration = P.Duration$(0, 24, 0, 0, 0, 0); dates.$indexSet(0, Y.convertDateTimeToSqlDate(nextDate), duration); } while (t2 < localEndDate.subtract$1(P.Duration$(1, 0, 0, 0, 0, 0))._value); return dates; }, copyWithStartDate$2$syncDates: function(date, syncDates) { var dateTime, now, t1, t2, t3, t4, t5, t6, t7, _this = this, _null = null; if ((date == null ? "" : date).length === 0) return _this; dateTime = P.DateTime_parse(date); now = new P.DateTime(Date.now(), false); t1 = dateTime.toLocal$0(); t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = _this.startDate; t5 = t4 == null; t6 = t5 ? _null : t4.toLocal$0(); t6 = t6 == null ? _null : H.Primitives_getHours(t6); if (t6 == null) t6 = H.Primitives_getHours(now); t7 = t5 ? _null : t4.toLocal$0(); t7 = t7 == null ? _null : H.Primitives_getMinutes(t7); if (t7 == null) t7 = H.Primitives_getMinutes(now); t4 = t5 ? _null : t4.toLocal$0(); t4 = t4 == null ? _null : H.Primitives_getSeconds(t4); if (t4 == null) t4 = H.Primitives_getSeconds(now); t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t2), H.Primitives_getDay(t3), t6, t7, t4, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); t1 = new P.DateTime(t1, false).toUtc$0(); if (syncDates && _this.endDate != null) { t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = dateTime.toLocal$0(); t5 = _this.endDate; t6 = t5.toLocal$0(); t7 = t5.toLocal$0(); t5 = t5.toLocal$0(); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t2), H.Primitives_getMonth(t3), H.Primitives_getDay(t4), H.Primitives_getHours(t6), H.Primitives_getMinutes(t7), H.Primitives_getSeconds(t5), 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t2 = new P.DateTime(t2, false); } else t2 = _this.endDate; return D.TaskTime_TaskTime(t2, t1); }, copyWithEndDate$1: function(date) { var dateTime, now, t1, t2, t3, t4, t5, t6, t7, _null = null; if ((date == null ? "" : date).length === 0) return this; dateTime = P.DateTime_parse(date); now = new P.DateTime(Date.now(), false); t1 = dateTime.toLocal$0(); t2 = dateTime.toLocal$0(); t3 = dateTime.toLocal$0(); t4 = this.endDate; t5 = t4 == null; t6 = t5 ? _null : t4.toLocal$0(); t6 = t6 == null ? _null : H.Primitives_getHours(t6); if (t6 == null) t6 = H.Primitives_getHours(now); t7 = t5 ? _null : t4.toLocal$0(); t7 = t7 == null ? _null : H.Primitives_getMinutes(t7); if (t7 == null) t7 = H.Primitives_getMinutes(now); t4 = t5 ? _null : t4.toLocal$0(); t4 = t4 == null ? _null : H.Primitives_getSeconds(t4); if (t4 == null) t4 = H.Primitives_getSeconds(now); t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(t1), H.Primitives_getMonth(t2), H.Primitives_getDay(t3), t6, t7, t4, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return D.TaskTime_TaskTime(new P.DateTime(t1, false).toUtc$0(), this.startDate); }, copyWithStartTime$1: function(dateTime) { var t4, t5, t6, _null = null, now = new P.DateTime(Date.now(), false), t1 = this.startDate, t2 = t1 == null, t3 = t2 ? _null : t1.toLocal$0(); t3 = t3 == null ? _null : H.Primitives_getYear(t3); if (t3 == null) t3 = H.Primitives_getYear(now); t4 = t2 ? _null : t1.toLocal$0(); t4 = t4 == null ? _null : H.Primitives_getMonth(t4); if (t4 == null) t4 = H.Primitives_getMonth(now); t1 = t2 ? _null : t1.toLocal$0(); t1 = t1 == null ? _null : H.Primitives_getDay(t1); if (t1 == null) t1 = H.Primitives_getDay(now); t2 = dateTime.toLocal$0(); t5 = dateTime.toLocal$0(); t6 = dateTime.toLocal$0(); t1 = H.Primitives_valueFromDecomposedDate(t3, t4, t1, H.Primitives_getHours(t2), H.Primitives_getMinutes(t5), H.Primitives_getSeconds(t6), 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); return D.TaskTime_TaskTime(this.endDate, new P.DateTime(t1, false).toUtc$0()); }, copyWithEndTime$1: function(dateTime) { var t5, t6, t7, _null = null, now = new P.DateTime(Date.now(), false), t1 = this.startDate, t2 = this.endDate, t3 = t2 == null, t4 = t3 ? _null : t2.toLocal$0(); t4 = t4 == null ? _null : H.Primitives_getYear(t4); if (t4 == null) { t4 = t1 == null ? _null : t1.toLocal$0(); t4 = t4 == null ? _null : H.Primitives_getYear(t4); } if (t4 == null) t4 = H.Primitives_getYear(now); t5 = t3 ? _null : t2.toLocal$0(); t5 = t5 == null ? _null : H.Primitives_getMonth(t5); if (t5 == null) { t5 = t1 == null ? _null : t1.toLocal$0(); t5 = t5 == null ? _null : H.Primitives_getMonth(t5); } if (t5 == null) t5 = H.Primitives_getMonth(now); t2 = t3 ? _null : t2.toLocal$0(); t2 = t2 == null ? _null : H.Primitives_getDay(t2); if (t2 == null) { t2 = t1 == null ? _null : t1.toLocal$0(); t2 = t2 == null ? _null : H.Primitives_getDay(t2); } if (t2 == null) t2 = H.Primitives_getDay(now); t3 = dateTime.toLocal$0(); t6 = dateTime.toLocal$0(); t7 = dateTime.toLocal$0(); t2 = H.Primitives_valueFromDecomposedDate(t4, t5, t2, H.Primitives_getHours(t3), H.Primitives_getMinutes(t6), H.Primitives_getSeconds(t7), 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); return D.TaskTime_TaskTime(new P.DateTime(t2, false).toUtc$0(), t1); }, copyWithDuration$1: function(duration) { var start = this.startDate; if (start == null) start = new P.DateTime(Date.now(), false).subtract$1(duration); return D.TaskTime_TaskTime(start.add$1(0, duration), start); } }; D.TaskTime_stop_closure.prototype = { call$1: function(b) { var t1 = new P.DateTime(Date.now(), false).toUtc$0(); b.get$_task_model$_$this()._endDate = t1; return b; }, $signature: 732 }; D.TaskEntity.prototype = { get$clone: function(_) { return this.rebuild$1(new D.TaskEntity_clone_closure()); }, stop$0: function(_) { var times = this.getTaskTimes$0(), t1 = C.JSArray_methods.get$last(times); return this.updateTaskTime$2(t1.get$stop(t1), times.length - 1); }, get$entityType: function() { return C.EntityType_task; }, get$areTimesValid: function() { var t1 = {}, times = this.getTaskTimes$0(), t2 = H.Primitives_valueFromDecomposedDate(2000, 1, 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); t1.lastDateTime = new P.DateTime(t2, false); t1.countRunning = 0; t1.isValid = true; C.JSArray_methods.forEach$1(times, new D.TaskEntity_areTimesValid_closure(t1)); return t1.isValid && t1.countRunning <= 1; }, get$isRunning: function() { var taskTimes = this.getTaskTimes$0(); if (taskTimes.length === 0) return false; return C.JSArray_methods.any$1(taskTimes, new D.TaskEntity_isRunning_closure()); }, isBetween$2: function(startDate, endDate) { var date, taskTimes = this.getTaskTimes$0(); if (taskTimes.length === 0) return false; date = Y.convertDateTimeToSqlDate(C.JSArray_methods.get$first(taskTimes).startDate.toLocal$0()); return J.compareTo$1$ns(startDate, date) <= 0 && J.compareTo$1$ns(endDate, date) >= 0; }, get$startTimestamp: function() { var log, t1 = this.timeLog; if (t1.length === 0) return null; log = C.C_JsonCodec.decode$2$reviver(0, t1, null); t1 = J.getInterceptor$asx(log); if (t1.get$isEmpty(log)) return null; return J.$index$asx(type$.legacy_List_dynamic._as(t1.get$first(log)), 0); }, get$endTimestamp: function() { var log, last, _null = null, t1 = this.timeLog; if (t1.length === 0) return _null; log = C.C_JsonCodec.decode$2$reviver(0, t1, _null); t1 = J.getInterceptor$asx(log); if (t1.get$isEmpty(log)) return _null; last = type$.legacy_List_dynamic._as(t1.get$last(log)); t1 = J.getInterceptor$asx(last); if (t1.get$length(last) < 2) return _null; return t1.$index(last, 1); }, getTaskTimes$1$sort: function(sort) { var details = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TaskTime), t1 = this.timeLog; if (t1.length === 0) return details; J.forEach$1$ax(C.C_JsonCodec.decode$2$reviver(0, t1, null), new D.TaskEntity_getTaskTimes_closure(details)); if (sort) C.JSArray_methods.sort$1(details, new D.TaskEntity_getTaskTimes_closure0()); return details; }, getTaskTimes$0: function() { return this.getTaskTimes$1$sort(true); }, addTaskTime$1: function(time) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? C.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.add$1$ax(taskTimes, time.get$asList()); return this.rebuild$1(new D.TaskEntity_addTaskTime_closure(taskTimes)); }, updateTaskTime$2: function(time, index) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? C.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.$indexSet$ax(taskTimes, index, time.get$asList()); return this.rebuild$1(new D.TaskEntity_updateTaskTime_closure(taskTimes)); }, deleteTaskTime$1: function(index) { var t1 = this.timeLog, taskTimes = t1.length !== 0 ? C.C_JsonCodec.decode$2$reviver(0, t1, null) : []; J.removeAt$1$ax(taskTimes, index); return this.rebuild$1(new D.TaskEntity_deleteTaskTime_closure(taskTimes)); }, calculateDuration$1$includeRunning: function(includeRunning) { var t1 = {}; t1.seconds = 0; C.JSArray_methods.forEach$1(this.getTaskTimes$0(), new D.TaskEntity_calculateDuration_closure(t1, includeRunning)); return P.Duration$(0, 0, 0, 0, 0, t1.seconds); }, calculateDuration$0: function() { return this.calculateDuration$1$includeRunning(true); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var t1, _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted) { if (includeEdit) if (userCompany.canEditEntity$1(_this)) t1 = !multiselect; else t1 = false; else t1 = false; if (t1) actions.push(C.EntityAction_edit); if (_this.invoiceId.length === 0) if (_this.get$isRunning()) actions.push(C.EntityAction_stop); else { if (!multiselect) if (_this.duration > 0) actions.push(C.EntityAction_resume); else actions.push(C.EntityAction_start); if (userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) actions.push(C.EntityAction_invoiceTask); } } if (!multiselect) if (userCompany.can$2(C.UserPermission_create, C.EntityType_task)) actions.push(C.EntityAction_clone); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany: function(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, compareTo$8: function(_, task, sortField, sortAscending, userMap, clientMap, projectMap, invoiceMap, taskStatusMap) { var response, t1, t2, t3, clientA, clientB, projectA, projectB, invoiceA, invoiceB, stateA, stateB, taskAStatus, taskBStatus, _null = null, _s8_ = "archived", taskA = sortAscending ? this : task, taskB = sortAscending ? task : this; switch (sortField) { case "duration": response = C.JSInt_methods.compareTo$1(taskA.duration, taskB.duration); break; case "description": response = C.JSString_methods.compareTo$1(taskA.description, taskB.description); break; case "custom1": response = C.JSString_methods.compareTo$1(taskA.customValue1, taskB.customValue1); break; case "custom2": response = C.JSString_methods.compareTo$1(taskA.customValue2, taskB.customValue2); break; case "custom3": response = C.JSString_methods.compareTo$1(taskA.customValue3, taskB.customValue3); break; case "custom4": response = C.JSString_methods.compareTo$1(taskA.customValue4, taskB.customValue4); break; case "client_id": case "client": t1 = taskA.clientId; t2 = clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, taskB.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "project_id": case "project": t1 = taskA.projectId; t2 = projectMap._map$_map; t3 = J.getInterceptor$asx(t2); projectA = t3.$index(t2, t1); if (projectA == null) projectA = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); projectB = t3.$index(t2, taskB.projectId); if (projectB == null) projectB = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null); response = C.JSString_methods.compareTo$1(projectA.name.toLowerCase(), projectB.name.toLowerCase()); break; case "invoice_id": t1 = taskA.invoiceId; t2 = invoiceMap._map$_map; t3 = J.getInterceptor$asx(t2); invoiceA = t3.$index(t2, t1); if (invoiceA == null) invoiceA = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); invoiceB = t3.$index(t2, taskB.invoiceId); if (invoiceB == null) invoiceB = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); response = C.JSString_methods.compareTo$1(invoiceA.number.toLowerCase(), invoiceB.number.toLowerCase()); break; case "entity_state": if (!taskA.get$isArchived() && !taskA.isDeleted) t1 = "active"; else t1 = taskA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!taskB.get$isArchived() && !taskB.isDeleted) t1 = "active"; else t1 = taskB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "time_log": response = C.JSString_methods.compareTo$1(taskA.timeLog.toLowerCase(), taskB.timeLog.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(taskA.createdAt, taskB.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(taskA.archivedAt, taskB.archivedAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(taskA.updatedAt, taskB.updatedAt); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(taskA.documents._list), J.get$length$asx(taskB.documents._list)); break; case "number": response = K.compareNatural(taskA.number.toLowerCase(), taskB.number.toLowerCase()); break; case "status": if (taskA.get$isRunning()) taskAStatus = -1; else { t1 = taskA.invoiceId; if (t1.length !== 0) taskAStatus = 999999; else { t1 = taskA.statusId; t1 = J.$index$asx(taskStatusMap._map$_map, t1); t1 = t1 == null ? _null : t1.statusOrder; if (t1 == null) t1 = 0; taskAStatus = t1; } } if (taskB.get$isRunning()) taskBStatus = -1; else { t1 = taskB.invoiceId; if (t1.length !== 0) taskBStatus = 999999; else { t1 = taskB.statusId; t1 = J.$index$asx(taskStatusMap._map$_map, t1); t1 = t1 == null ? _null : t1.statusOrder; if (t1 == null) t1 = 0; taskBStatus = t1; } } response = C.JSInt_methods.compareTo$1(taskAStatus, taskBStatus); break; default: P.print("## ERROR: sort by task." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(task.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.number, _this.description, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesStatuses$1: function(statuses) { var t3, t4, t5, t1 = statuses._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) return true; for (t1 = t2.get$iterator(t1), t2 = this.invoiceId.length === 0, t3 = !t2; t1.moveNext$0();) { t4 = t1.get$current(t1); if (t4.get$id(t4) === "-2" && this.get$isRunning()) return true; else { if (t4.get$id(t4) === "-3") t5 = t3; else t5 = false; if (t5) return true; else { if (t4.get$id(t4) === "-1") if (!this.get$isRunning()) t4 = t2; else t4 = false; else t4 = false; if (t4) return true; } } } return false; }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.number, _this.description, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.number; }, get$listDisplayAmount: function() { return C.JSInt_methods._tdivFast$1(this.calculateDuration$0()._duration, 1000000); }, get$listDisplayAmountType: function() { return C.FormatNumberType_6; }, get$calculateStatusId: function() { if (this.invoiceId.length !== 0) return "-3"; else if (this.get$isRunning()) return "-2"; else return "-1"; } }; D.TaskEntity_clone_closure.prototype = { call$1: function(b) { var t1 = $.BaseEntity_counter - 1; $.BaseEntity_counter = t1; t1 = "" + t1; b.get$_task_model$_$this()._task_model$_id = t1; b.get$_task_model$_$this()._task_model$_number = ""; b.get$_task_model$_$this()._task_model$_isChanged = false; b.get$_task_model$_$this()._task_model$_isDeleted = false; b.get$_task_model$_$this()._task_model$_invoiceId = ""; b.get$_task_model$_$this()._task_model$_duration = 0; J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 46 }; D.TaskEntity_areTimesValid_closure.prototype = { call$1: function(time) { var t1, lastDateTime, t2, t3, t4, startDate = time.startDate, endDate = time.endDate; if (endDate == null) ++this._box_0.countRunning; else { t1 = this._box_0; lastDateTime = t1.lastDateTime; t2 = startDate._value; t3 = lastDateTime._value; if (t2 < t3 || t2 > endDate._value) t1.isValid = false; t4 = endDate._value; if (t4 < t2 || t4 < t3) t1.isValid = false; t1.lastDateTime = t3 > t4 ? lastDateTime : endDate; } }, $signature: 204 }; D.TaskEntity_isRunning_closure.prototype = { call$1: function(taskTime) { return taskTime.endDate == null; }, $signature: 182 }; D.TaskEntity_getTaskTimes_closure.prototype = { call$1: function(detail) { var t1, startDate, endDate, t2, t3; type$.legacy_List_dynamic._as(detail); t1 = J.getInterceptor$asx(detail); startDate = J.$eq$(t1.$index(detail, 0), false) || t1.$index(detail, 0) == null ? 0 : J.round$0$n(t1.$index(detail, 0)); if (startDate !== 0) { endDate = J.$eq$(t1.$index(detail, 1), false) || t1.$index(detail, 1) == null ? 0 : J.round$0$n(t1.$index(detail, 1)); t1 = P.DateTime$fromMillisecondsSinceEpoch((startDate == null ? 0 : startDate) * 1000, false).toUtc$0(); t2 = endDate == null; if ((t2 ? 0 : endDate) > 0) { t3 = P.DateTime$fromMillisecondsSinceEpoch((t2 ? 0 : endDate) * 1000, false).toUtc$0(); t2 = t3; } else t2 = null; this.details.push(D.TaskTime_TaskTime(t2, t1)); } }, $signature: 8 }; D.TaskEntity_getTaskTimes_closure0.prototype = { call$2: function(timeA, timeB) { var t1 = timeA.startDate, t2 = timeB.startDate; return C.JSInt_methods.compareTo$1(t1._value, t2._value); }, $signature: 777 }; D.TaskEntity_addTaskTime_closure.prototype = { call$1: function(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = C.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 46 }; D.TaskEntity_updateTaskTime_closure.prototype = { call$1: function(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = C.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 46 }; D.TaskEntity_deleteTaskTime_closure.prototype = { call$1: function(b) { var t1; b.get$_task_model$_$this()._task_model$_isChanged = true; t1 = C.C_JsonCodec.encode$2$toEncodable(this.taskTimes, null); b.get$_task_model$_$this()._timeLog = t1; return b; }, $signature: 46 }; D.TaskEntity_calculateDuration_closure.prototype = { call$1: function(taskTime) { var t1; if (taskTime.endDate != null || this.includeRunning) { t1 = this._box_0; t1.seconds = t1.seconds + C.JSInt_methods._tdivFast$1(taskTime.get$duration(taskTime)._duration, 1000000); } }, $signature: 204 }; D._$TaskListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_UWS)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.TaskListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaskEntity, t3 = type$.ListBuilder_legacy_TaskEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._task_model$_data = t6; result._task_model$_$v = null; } t4 = result._task_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._task_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_UWS)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_86y0; }, get$wireName: function() { return "TaskListResponse"; } }; D._$TaskItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_4QF0)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new D.TaskItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaskEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new D.TaskEntityBuilder(); t3.get$_task_model$_$this()._showAsRunning = false; t3._task_model$_$v = t2; result._task_model$_data = t3; result._task_model$_$v = null; } t2 = result._task_model$_data; if (t2 == null) { t2 = new D.TaskEntityBuilder(); t2.get$_task_model$_$this()._showAsRunning = false; result._task_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_4QF0)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._task_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_2DL; }, get$wireName: function() { return "TaskItemResponse"; } }; D._$TaskEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["description", serializers.serialize$2$specifiedType(object.description, C.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "duration", serializers.serialize$2$specifiedType(object.duration, C.FullType_kjq), "invoice_id", serializers.serialize$2$specifiedType(object.invoiceId, C.FullType_h8g), "client_id", serializers.serialize$2$specifiedType(object.clientId, C.FullType_h8g), "rate", serializers.serialize$2$specifiedType(object.rate, C.FullType_MME), "project_id", serializers.serialize$2$specifiedType(object.projectId, C.FullType_h8g), "time_log", serializers.serialize$2$specifiedType(object.timeLog, C.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "status_id", serializers.serialize$2$specifiedType(object.statusId, C.FullType_h8g), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.statusOrder; if (value != null) { result.push("status_order"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.showAsRunning; if (value != null) { result.push("showAsRunning"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, key, value, t4, t5, t6, result = new D.TaskEntityBuilder(); result.get$_task_model$_$this()._showAsRunning = false; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "description": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_description = t4; break; case "number": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_number = t4; break; case "duration": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_model$_$this()._task_model$_duration = t4; break; case "invoice_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_invoiceId = t4; break; case "client_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_clientId = t4; break; case "rate": t4 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_task_model$_$this()._rate = t4; break; case "project_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_projectId = t4; break; case "time_log": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._timeLog = t4; break; case "custom_value1": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue1 = t4; break; case "custom_value2": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue2 = t4; break; case "custom_value3": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue3 = t4; break; case "custom_value4": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_customValue4 = t4; break; case "status_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_statusId = t4; break; case "status_order": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_model$_$this()._statusOrder = t4; break; case "documents": t4 = result.get$_task_model$_$this(); t5 = t4._task_model$_documents; if (t5 == null) { t5 = new D.ListBuilder(t3); t5.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t4._task_model$_documents = t5; t4 = t5; } else t4 = t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; case "showAsRunning": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_model$_$this()._showAsRunning = t4; break; case "isChanged": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_model$_$this()._task_model$_isChanged = t4; break; case "created_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_model$_$this()._task_model$_createdAt = t4; break; case "updated_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_model$_$this()._task_model$_updatedAt = t4; break; case "archived_at": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_model$_$this()._task_model$_archivedAt = t4; break; case "is_deleted": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_model$_$this()._task_model$_isDeleted = t4; break; case "user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_createdUserId = t4; break; case "assigned_user_id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_assignedUserId = t4; break; case "id": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_model$_$this()._task_model$_id = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ckJ; }, get$wireName: function() { return "TaskEntity"; } }; D._$TaskListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.TaskListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._task_model$__hashCode; return t1 == null ? this._task_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.TaskListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._task_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._task_model$_$v = null; } t1 = _this._task_model$_data; return t1 == null ? _this._task_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "TaskListResponse", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$TaskListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_model$_$v = t1; return _$result; } }; D._$TaskItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.TaskItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._task_model$__hashCode; return t1 == null ? this._task_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.TaskItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new D.TaskEntityBuilder(); t2.get$_task_model$_$this()._showAsRunning = false; t2._task_model$_$v = t1; _this._task_model$_data = t2; _this._task_model$_$v = null; } t1 = _this._task_model$_data; if (t1 == null) { t1 = new D.TaskEntityBuilder(); t1.get$_task_model$_$this()._showAsRunning = false; _this._task_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "TaskItemResponse", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$TaskItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_model$_$v = t1; return _$result; } }; D._$TaskTime.prototype = { rebuild$1: function(updates) { var _$result, t1 = new D.TaskTimeBuilder(); t1._task_model$_$v = this; updates.call$1(t1); _$result = t1._task_model$_$v; if (_$result == null) _$result = new D._$TaskTime(t1.get$_task_model$_$this()._startDate, t1.get$_task_model$_$this()._endDate); return t1._task_model$_$v = _$result; }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.TaskTime && J.$eq$(this.startDate, other.startDate) && J.$eq$(this.endDate, other.endDate); }, get$hashCode: function(_) { var _this = this, t1 = _this._task_model$__hashCode; return t1 == null ? _this._task_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.startDate)), J.get$hashCode$(_this.endDate))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskTime"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "startDate", this.startDate); t2.add$2(t1, "endDate", this.endDate); return t2.toString$0(t1); } }; D.TaskTimeBuilder.prototype = { get$_task_model$_$this: function() { var _this = this, $$v = _this._task_model$_$v; if ($$v != null) { _this._startDate = $$v.startDate; _this._endDate = $$v.endDate; _this._task_model$_$v = null; } return _this; } }; D._$TaskEntity.prototype = { rebuild$1: function(updates) { var t1 = new D.TaskEntityBuilder(); t1.get$_task_model$_$this()._showAsRunning = false; t1._task_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.TaskEntity && _this.description === other.description && _this.number === other.number && _this.duration === other.duration && _this.invoiceId === other.invoiceId && _this.clientId === other.clientId && _this.rate === other.rate && _this.projectId === other.projectId && _this.timeLog === other.timeLog && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.statusId == other.statusId && _this.statusOrder == other.statusOrder && J.$eq$(_this.documents, other.documents) && _this.showAsRunning == other.showAsRunning && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._task_model$__hashCode; return t1 == null ? _this._task_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.description)), C.JSString_methods.get$hashCode(_this.number)), C.JSInt_methods.get$hashCode(_this.duration)), C.JSString_methods.get$hashCode(_this.invoiceId)), C.JSString_methods.get$hashCode(_this.clientId)), C.JSNumber_methods.get$hashCode(_this.rate)), C.JSString_methods.get$hashCode(_this.projectId)), C.JSString_methods.get$hashCode(_this.timeLog)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.statusId)), J.get$hashCode$(_this.statusOrder)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.showAsRunning)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "description", _this.description); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "duration", _this.duration); t2.add$2(t1, "invoiceId", _this.invoiceId); t2.add$2(t1, "clientId", _this.clientId); t2.add$2(t1, "rate", _this.rate); t2.add$2(t1, "projectId", _this.projectId); t2.add$2(t1, "timeLog", _this.timeLog); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "statusId", _this.statusId); t2.add$2(t1, "statusOrder", _this.statusOrder); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "showAsRunning", _this.showAsRunning); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$clientId: function(receiver) { return this.clientId; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; D.TaskEntityBuilder.prototype = { get$documents: function() { var t1 = this.get$_task_model$_$this(), t2 = t1._task_model$_documents; return t2 == null ? t1._task_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_task_model$_$this()._task_model$_id; }, get$_task_model$_$this: function() { var t1, _this = this, $$v = _this._task_model$_$v; if ($$v != null) { _this._task_model$_description = $$v.description; _this._task_model$_number = $$v.number; _this._task_model$_duration = $$v.duration; _this._task_model$_invoiceId = $$v.invoiceId; _this._task_model$_clientId = $$v.clientId; _this._rate = $$v.rate; _this._task_model$_projectId = $$v.projectId; _this._timeLog = $$v.timeLog; _this._task_model$_customValue1 = $$v.customValue1; _this._task_model$_customValue2 = $$v.customValue2; _this._task_model$_customValue3 = $$v.customValue3; _this._task_model$_customValue4 = $$v.customValue4; _this._task_model$_statusId = $$v.statusId; _this._statusOrder = $$v.statusOrder; t1 = $$v.documents; t1.toString; _this._task_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._showAsRunning = $$v.showAsRunning; _this._task_model$_isChanged = $$v.isChanged; _this._task_model$_createdAt = $$v.createdAt; _this._task_model$_updatedAt = $$v.updatedAt; _this._task_model$_archivedAt = $$v.archivedAt; _this._task_model$_isDeleted = $$v.isDeleted; _this._task_model$_createdUserId = $$v.createdUserId; _this._task_model$_assignedUserId = $$v.assignedUserId; _this._task_model$_id = $$v.id; _this._task_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, exception, _this = this, _s10_ = "TaskEntity", _$result = null; try { _$result0 = _this._task_model$_$v; if (_$result0 == null) { t1 = _this.get$_task_model$_$this()._task_model$_description; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "description")); t2 = _this.get$_task_model$_$this()._task_model$_number; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "number")); t3 = _this.get$_task_model$_$this()._task_model$_duration; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "duration")); t4 = _this.get$_task_model$_$this()._task_model$_invoiceId; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "invoiceId")); t5 = _this.get$_task_model$_$this()._task_model$_clientId; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "clientId")); t6 = _this.get$_task_model$_$this()._rate; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "rate")); t7 = _this.get$_task_model$_$this()._task_model$_projectId; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "projectId")); t8 = _this.get$_task_model$_$this()._timeLog; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "timeLog")); t9 = _this.get$_task_model$_$this()._task_model$_customValue1; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue1")); t10 = _this.get$_task_model$_$this()._task_model$_customValue2; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue2")); t11 = _this.get$_task_model$_$this()._task_model$_customValue3; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue3")); t12 = _this.get$_task_model$_$this()._task_model$_customValue4; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue4")); t13 = _this.get$_task_model$_$this()._task_model$_statusId; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "statusId")); t14 = _this.get$_task_model$_$this()._statusOrder; t15 = _this.get$documents().build$0(0); t16 = _this.get$_task_model$_$this()._showAsRunning; t17 = _this.get$_task_model$_$this()._task_model$_isChanged; t18 = _this.get$_task_model$_$this()._task_model$_createdAt; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "createdAt")); t19 = _this.get$_task_model$_$this()._task_model$_updatedAt; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "updatedAt")); t20 = _this.get$_task_model$_$this()._task_model$_archivedAt; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "archivedAt")); t21 = _this.get$_task_model$_$this()._task_model$_isDeleted; t22 = _this.get$_task_model$_$this()._task_model$_createdUserId; t23 = _this.get$_task_model$_$this()._task_model$_assignedUserId; t24 = _this.get$_task_model$_$this()._task_model$_id; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "id")); _$result0 = D._$TaskEntity$_(t20, t23, t5, t18, t22, t9, t10, t11, t12, t1, t15, t3, t24, t4, t17, t21, t2, t7, t6, t16, t13, t14, t8, t19); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s10_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_model$_$v = t1; return _$result; } }; D._TaskEntity_Object_BaseEntity.prototype = {}; D._TaskEntity_Object_BaseEntity_SelectableEntity.prototype = {}; D._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient.prototype = {}; S.TaskStatusListResponse.prototype = {}; S.TaskStatusItemResponse.prototype = {}; S.TaskStatusEntity.prototype = { get$entityType: function() { return C.EntityType_taskStatus; }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect && includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, compareTo$3$sortAscending$sortField$taskStatus: function(_, sortAscending, sortField, taskStatus) { var response, t1, t2, taskStatusA = sortAscending ? this : taskStatus, taskStatusB = sortAscending ? taskStatus : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(taskStatusA.name, taskStatusB.name); break; case "order": t1 = taskStatusA.statusOrder; if (t1 == null) t1 = 99999; t2 = taskStatusB.statusOrder; response = C.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); break; case "updated_at": response = C.JSInt_methods.compareTo$1(taskStatusA.updatedAt, taskStatusB.updatedAt); break; default: P.print("## ERROR: sort by taskStatus." + sortField + " is not implemented"); response = 0; break; } return response; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; } }; S._$TaskStatusListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_WVg)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new S.TaskStatusListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaskStatusEntity, t3 = type$.ListBuilder_legacy_TaskStatusEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_status_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._task_status_model$_data = t6; result._task_status_model$_$v = null; } t4 = result._task_status_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._task_status_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_WVg)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ouA; }, get$wireName: function() { return "TaskStatusListResponse"; } }; S._$TaskStatusItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_ef4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new S.TaskStatusItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaskStatusEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._task_status_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new S.TaskStatusEntityBuilder(); t3.get$_task_status_model$_$this()._task_status_model$_color = ""; t3._task_status_model$_$v = t2; result._task_status_model$_data = t3; result._task_status_model$_$v = null; } t2 = result._task_status_model$_data; if (t2 == null) { t2 = new S.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; result._task_status_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_ef4)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._task_status_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_n7k; }, get$wireName: function() { return "TaskStatusItemResponse"; } }; S._$TaskStatusEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "color", serializers.serialize$2$specifiedType(object.color, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.statusOrder; if (value != null) { result.push("status_order"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new S.TaskStatusEntityBuilder(); result.get$_task_status_model$_$this()._task_status_model$_color = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_name = t1; break; case "color": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_color = t1; break; case "status_order": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_status_model$_$this()._task_status_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_status_model$_$this()._task_status_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_status_model$_$this()._task_status_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_model$_$this()._task_status_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_4MM; }, get$wireName: function() { return "TaskStatusEntity"; } }; S._$TaskStatusListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.TaskStatusListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._task_status_model$__hashCode; return t1 == null ? this._task_status_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; S.TaskStatusListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._task_status_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._task_status_model$_$v = null; } t1 = _this._task_status_model$_data; return t1 == null ? _this._task_status_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaskStatusEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s22_ = "TaskStatusListResponse", _$result = null; try { _$result0 = _this._task_status_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new S._$TaskStatusListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_status_model$_$v = t1; return _$result; } }; S._$TaskStatusItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof S.TaskStatusItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._task_status_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._task_status_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; S.TaskStatusItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new S.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; t2._task_status_model$_$v = t1; _this._task_status_model$_data = t2; _this._task_status_model$_$v = null; } t1 = _this._task_status_model$_data; if (t1 == null) { t1 = new S.TaskStatusEntityBuilder(); t1.get$_task_status_model$_$this()._task_status_model$_color = ""; _this._task_status_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._task_status_model$_$v; if (_$result0 == null) _$result0 = new S._$TaskStatusItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TaskStatusItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_status_model$_$v = t1; return _$result; } }; S._$TaskStatusEntity.prototype = { rebuild$1: function(updates) { var t1 = new S.TaskStatusEntityBuilder(); t1.get$_task_status_model$_$this()._task_status_model$_color = ""; t1._task_status_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof S.TaskStatusEntity && _this.name === other.name && _this.color === other.color && _this.statusOrder == other.statusOrder && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._task_status_model$__hashCode; return t1 == null ? _this._task_status_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.color)), J.get$hashCode$(_this.statusOrder)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "color", _this.color); t2.add$2(t1, "statusOrder", _this.statusOrder); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; S.TaskStatusEntityBuilder.prototype = { get$name: function(_) { return this.get$_task_status_model$_$this()._task_status_model$_name; }, get$id: function(_) { return this.get$_task_status_model$_$this()._task_status_model$_id; }, get$_task_status_model$_$this: function() { var _this = this, $$v = _this._task_status_model$_$v; if ($$v != null) { _this._task_status_model$_name = $$v.name; _this._task_status_model$_color = $$v.color; _this._task_status_model$_statusOrder = $$v.statusOrder; _this._task_status_model$_isChanged = $$v.isChanged; _this._task_status_model$_createdAt = $$v.createdAt; _this._task_status_model$_updatedAt = $$v.updatedAt; _this._task_status_model$_archivedAt = $$v.archivedAt; _this._task_status_model$_isDeleted = $$v.isDeleted; _this._task_status_model$_createdUserId = $$v.createdUserId; _this._task_status_model$_assignedUserId = $$v.assignedUserId; _this._task_status_model$_id = $$v.id; _this._task_status_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _s16_ = "TaskStatusEntity", _$result = _this._task_status_model$_$v; if (_$result == null) { t1 = _this.get$_task_status_model$_$this()._task_status_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "name")); t2 = _this.get$_task_status_model$_$this()._task_status_model$_color; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "color")); t3 = _this.get$_task_status_model$_$this()._task_status_model$_statusOrder; t4 = _this.get$_task_status_model$_$this()._task_status_model$_isChanged; t5 = _this.get$_task_status_model$_$this()._task_status_model$_createdAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "createdAt")); t6 = _this.get$_task_status_model$_$this()._task_status_model$_updatedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "updatedAt")); t7 = _this.get$_task_status_model$_$this()._task_status_model$_archivedAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "archivedAt")); t8 = _this.get$_task_status_model$_$this()._task_status_model$_isDeleted; t9 = _this.get$_task_status_model$_$this()._task_status_model$_createdUserId; t10 = _this.get$_task_status_model$_$this()._task_status_model$_assignedUserId; t11 = _this.get$_task_status_model$_$this()._task_status_model$_id; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "id")); _$result = S._$TaskStatusEntity$_(t7, t10, t2, t5, t9, t11, t4, t8, t1, t3, t6); } return _this._task_status_model$_$v = _$result; } }; S._TaskStatusEntity_Object_BaseEntity.prototype = {}; S._TaskStatusEntity_Object_BaseEntity_SelectableEntity.prototype = {}; S._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus.prototype = {}; T.TaxRateListResponse.prototype = {}; T.TaxRateItemResponse.prototype = {}; T.TaxRateEntity.prototype = { get$entityType: function() { return C.EntityType_taxRate; }, get$listDisplayName: function() { return this.name; }, get$isEmpty: function(_) { return this.rate === 0 && this.name.length === 0; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; T._$TaxRateListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_IIj)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new T.TaxRateListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TaxRateEntity, t3 = type$.ListBuilder_legacy_TaxRateEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._tax_rate_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._tax_rate_model$_data = t6; result._tax_rate_model$_$v = null; } t4 = result._tax_rate_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._tax_rate_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_IIj)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Qwv; }, get$wireName: function() { return "TaxRateListResponse"; } }; T._$TaxRateItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_ML3)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new T.TaxRateItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TaxRateEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._tax_rate_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new T.TaxRateEntityBuilder(); t3._tax_rate_model$_$v = t2; result._tax_rate_model$_data = t3; result._tax_rate_model$_$v = null; } t2 = result._tax_rate_model$_data; if (t2 == null) t2 = result._tax_rate_model$_data = new T.TaxRateEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_ML3)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._tax_rate_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wEo0; }, get$wireName: function() { return "TaxRateItemResponse"; } }; T._$TaxRateEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "rate", serializers.serialize$2$specifiedType(object.rate, C.FullType_MME), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new T.TaxRateEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_name = t1; break; case "rate": t1 = H._asDoubleS(serializers.deserialize$2$specifiedType(value, C.FullType_MME)); result.get$_tax_rate_model$_$this()._tax_rate_model$_rate = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_tax_rate_model$_$this()._tax_rate_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_tax_rate_model$_$this()._tax_rate_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_tax_rate_model$_$this()._tax_rate_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_AOK; }, get$wireName: function() { return "TaxRateEntity"; } }; T._$TaxRateListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof T.TaxRateListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._tax_rate_model$__hashCode; return t1 == null ? this._tax_rate_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; T.TaxRateListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._tax_rate_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._tax_rate_model$_$v = null; } t1 = _this._tax_rate_model$_data; return t1 == null ? _this._tax_rate_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TaxRateEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "TaxRateListResponse", _$result = null; try { _$result0 = _this._tax_rate_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new T._$TaxRateListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._tax_rate_model$_$v = t1; return _$result; } }; T._$TaxRateItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof T.TaxRateItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._tax_rate_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._tax_rate_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; T.TaxRateItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new T.TaxRateEntityBuilder(); t2._tax_rate_model$_$v = t1; _this._tax_rate_model$_data = t2; _this._tax_rate_model$_$v = null; } t1 = _this._tax_rate_model$_data; return t1 == null ? _this._tax_rate_model$_data = new T.TaxRateEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._tax_rate_model$_$v; if (_$result0 == null) _$result0 = new T._$TaxRateItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TaxRateItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._tax_rate_model$_$v = t1; return _$result; } }; T._$TaxRateEntity.prototype = { rebuild$1: function(updates) { var t1 = new T.TaxRateEntityBuilder(); t1._tax_rate_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.TaxRateEntity && _this.name === other.name && _this.rate === other.rate && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._tax_rate_model$__hashCode; return t1 == null ? _this._tax_rate_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSNumber_methods.get$hashCode(_this.rate)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "rate", _this.rate); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; T.TaxRateEntityBuilder.prototype = { get$name: function(_) { return this.get$_tax_rate_model$_$this()._tax_rate_model$_name; }, get$id: function(_) { return this.get$_tax_rate_model$_$this()._tax_rate_model$_id; }, get$_tax_rate_model$_$this: function() { var _this = this, $$v = _this._tax_rate_model$_$v; if ($$v != null) { _this._tax_rate_model$_name = $$v.name; _this._tax_rate_model$_rate = $$v.rate; _this._tax_rate_model$_isChanged = $$v.isChanged; _this._tax_rate_model$_createdAt = $$v.createdAt; _this._tax_rate_model$_updatedAt = $$v.updatedAt; _this._tax_rate_model$_archivedAt = $$v.archivedAt; _this._tax_rate_model$_isDeleted = $$v.isDeleted; _this._tax_rate_model$_createdUserId = $$v.createdUserId; _this._tax_rate_model$_assignedUserId = $$v.assignedUserId; _this._tax_rate_model$_id = $$v.id; _this._tax_rate_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s13_ = "TaxRateEntity", _$result = _this._tax_rate_model$_$v; if (_$result == null) { t1 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "name")); t2 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_rate; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "rate")); t3 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged; t4 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_createdAt; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t5 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_updatedAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t6 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_archivedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t7 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_isDeleted; t8 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_createdUserId; t9 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_assignedUserId; t10 = _this.get$_tax_rate_model$_$this()._tax_rate_model$_id; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result = T._$TaxRateEntity$_(t6, t9, t4, t8, t10, t3, t7, t1, t2, t5); } return _this._tax_rate_model$_$v = _$result; } }; T._TaxRateEntity_Object_BaseEntity.prototype = {}; T._TaxRateEntity_Object_BaseEntity_SelectableEntity.prototype = {}; D.TokenListResponse.prototype = {}; D.TokenItemResponse.prototype = {}; D.TokenEntity.prototype = { get$entityType: function() { return C.EntityType_token; }, get$listDisplayName: function() { return this.name; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.name], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (C.JSString_methods.substring$1(_this.token, 10) !== "xxxxxxxxxxx" && !multiselect) actions.push(C.EntityAction_copy); if (!_this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; D._$TokenListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_mKc)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new D.TokenListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_TokenEntity, t3 = type$.ListBuilder_legacy_TokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._token_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._token_model$_data = t6; result._token_model$_$v = null; } t4 = result._token_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._token_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_mKc)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_vzd; }, get$wireName: function() { return "TokenListResponse"; } }; D._$TokenItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Azp)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new D.TokenItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_TokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._token_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new D.TokenEntityBuilder(); t3._token_model$_$v = t2; result._token_model$_data = t3; result._token_model$_$v = null; } t2 = result._token_model$_data; if (t2 == null) t2 = result._token_model$_data = new D.TokenEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Azp)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._token_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ZAJ; }, get$wireName: function() { return "TokenItemResponse"; } }; D._$TokenEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["is_system", serializers.serialize$2$specifiedType(object.isSystem, C.FullType_MtR), "token", serializers.serialize$2$specifiedType(object.token, C.FullType_h8g), "name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new D.TokenEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "is_system": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_token_model$_$this()._isSystem = t1; break; case "token": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_model$_$this()._token_model$_token = t1; break; case "name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_model$_$this()._token_model$_name = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_token_model$_$this()._token_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_token_model$_$this()._token_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_token_model$_$this()._token_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_token_model$_$this()._token_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_token_model$_$this()._token_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_model$_$this()._token_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_model$_$this()._token_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_model$_$this()._token_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_HFE; }, get$wireName: function() { return "TokenEntity"; } }; D._$TokenListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.TokenListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._token_model$__hashCode; return t1 == null ? this._token_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.TokenListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._token_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._token_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._token_model$_$v = null; } t1 = _this._token_model$_data; return t1 == null ? _this._token_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_TokenEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s17_ = "TokenListResponse", _$result = null; try { _$result0 = _this._token_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new D._$TokenListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._token_model$_$v = t1; return _$result; } }; D._$TokenItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.TokenItemResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._token_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._token_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; D.TokenItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._token_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new D.TokenEntityBuilder(); t2._token_model$_$v = t1; _this._token_model$_data = t2; _this._token_model$_$v = null; } t1 = _this._token_model$_data; return t1 == null ? _this._token_model$_data = new D.TokenEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._token_model$_$v; if (_$result0 == null) _$result0 = new D._$TokenItemResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TokenItemResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._token_model$_$v = t1; return _$result; } }; D._$TokenEntity.prototype = { rebuild$1: function(updates) { var t1 = new D.TokenEntityBuilder(); t1._token_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.TokenEntity && _this.isSystem === other.isSystem && _this.token === other.token && _this.name === other.name && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._token_model$__hashCode; return t1 == null ? _this._token_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.isSystem)), C.JSString_methods.get$hashCode(_this.token)), C.JSString_methods.get$hashCode(_this.name)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "isSystem", _this.isSystem); t2.add$2(t1, "token", _this.token); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$token: function() { return this.token; }, get$name: function(receiver) { return this.name; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; D.TokenEntityBuilder.prototype = { get$token: function() { return this.get$_token_model$_$this()._token_model$_token; }, get$name: function(_) { return this.get$_token_model$_$this()._token_model$_name; }, get$id: function(_) { return this.get$_token_model$_$this()._token_model$_id; }, get$_token_model$_$this: function() { var _this = this, $$v = _this._token_model$_$v; if ($$v != null) { _this._isSystem = $$v.isSystem; _this._token_model$_token = $$v.token; _this._token_model$_name = $$v.name; _this._token_model$_isChanged = $$v.isChanged; _this._token_model$_createdAt = $$v.createdAt; _this._token_model$_updatedAt = $$v.updatedAt; _this._token_model$_archivedAt = $$v.archivedAt; _this._token_model$_isDeleted = $$v.isDeleted; _this._token_model$_createdUserId = $$v.createdUserId; _this._token_model$_assignedUserId = $$v.assignedUserId; _this._token_model$_id = $$v.id; _this._token_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _s11_ = "TokenEntity", _$result = _this._token_model$_$v; if (_$result == null) { t1 = _this.get$_token_model$_$this()._isSystem; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "isSystem")); t2 = _this.get$_token_model$_$this()._token_model$_token; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "token")); t3 = _this.get$_token_model$_$this()._token_model$_name; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "name")); t4 = _this.get$_token_model$_$this()._token_model$_isChanged; t5 = _this.get$_token_model$_$this()._token_model$_createdAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "createdAt")); t6 = _this.get$_token_model$_$this()._token_model$_updatedAt; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "updatedAt")); t7 = _this.get$_token_model$_$this()._token_model$_archivedAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "archivedAt")); t8 = _this.get$_token_model$_$this()._token_model$_isDeleted; t9 = _this.get$_token_model$_$this()._token_model$_createdUserId; t10 = _this.get$_token_model$_$this()._token_model$_assignedUserId; t11 = _this.get$_token_model$_$this()._token_model$_id; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "id")); _$result = D._$TokenEntity$_(t7, t10, t5, t9, t11, t4, t8, t1, t3, t2, t6); } return _this._token_model$_$v = _$result; } }; D._TokenEntity_Object_BaseEntity.prototype = {}; D._TokenEntity_Object_BaseEntity_SelectableEntity.prototype = {}; B.UserListResponse.prototype = {}; B.UserItemResponse.prototype = {}; B.UserTwoFactorResponse.prototype = {}; B.UserTwoFactorData.prototype = {}; B.UserCompanyItemResponse.prototype = {}; B.UserEntity.prototype = { get$entityType: function() { return C.EntityType_user; }, get$fullName: function() { return C.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, get$listDisplayName: function() { return this.get$fullName().length !== 0 ? this.get$fullName() : this.email; }, matchesFilter$1: function(filter) { var _this = this; return A.matchesStrings(H.setRuntimeTypeInfo([_this.firstName, _this.lastName, _this.email, _this.phone, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var _this = this; return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.firstName, _this.lastName, _this.email, _this.phone, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var _this = this, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!_this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(_this)) actions.push(C.EntityAction_edit); if (userCompany.isAdmin || userCompany.isOwner) { if (_this.emailVerifiedAt == null) actions.push(C.EntityAction_resendInvite); actions.push(C.EntityAction_remove); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, _this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; B._$UserListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_e7r)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new B.UserListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_UserEntity, t3 = type$.ListBuilder_legacy_UserEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._user_model$_data = t6; result._user_model$_$v = null; } t4 = result._user_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._user_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_e7r)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_RsV0; }, get$wireName: function() { return "UserListResponse"; } }; B._$UserItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_oyU)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new B.UserItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new B.UserEntityBuilder(); t3.get$_user_model$_$this()._isTwoFactorEnabled = false; t3.get$_user_model$_$this()._hasPassword = false; t3.get$_user_model$_$this()._password = ""; t3.get$_user_model$_$this()._lastEmailAddress = ""; t3.get$_user_model$_$this()._oauthUserToken = ""; t3._user_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) { t2 = new B.UserEntityBuilder(); t2.get$_user_model$_$this()._isTwoFactorEnabled = false; t2.get$_user_model$_$this()._hasPassword = false; t2.get$_user_model$_$this()._password = ""; t2.get$_user_model$_$this()._lastEmailAddress = ""; t2.get$_user_model$_$this()._oauthUserToken = ""; result._user_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_oyU)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._user_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_bti; }, get$wireName: function() { return "UserItemResponse"; } }; B._$UserTwoFactorResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_CyS)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new B.UserTwoFactorResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserTwoFactorData; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t3 = new B.UserTwoFactorDataBuilder(); t3._user_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) t2 = result._user_model$_data = new B.UserTwoFactorDataBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_CyS)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._user_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yHZ; }, get$wireName: function() { return "UserTwoFactorResponse"; } }; B._$UserTwoFactorDataSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["secret", serializers.serialize$2$specifiedType(object.secret, C.FullType_h8g), "qrCode", serializers.serialize$2$specifiedType(object.qrCode, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new B.UserTwoFactorDataBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "secret": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._user_model$_$v; if ($$v != null) { result._secret = $$v.secret; result._qrCode = $$v.qrCode; result._user_model$_$v = null; } result._secret = t1; break; case "qrCode": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._user_model$_$v; if ($$v != null) { result._secret = $$v.secret; result._qrCode = $$v.qrCode; result._user_model$_$v = null; } result._qrCode = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Vet; }, get$wireName: function() { return "UserTwoFactorData"; } }; B._$UserCompanyItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_whX)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new B.UserCompanyItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._user_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t3); t3._company_model$_$v = t2; result._user_model$_data = t3; result._user_model$_$v = null; } t2 = result._user_model$_data; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); result._user_model$_data = t2; } t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_whX)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_nTi; }, get$wireName: function() { return "UserCompanyItemResponse"; } }; B._$UserEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["first_name", serializers.serialize$2$specifiedType(object.firstName, C.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, C.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, C.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, C.FullType_h8g), "password", serializers.serialize$2$specifiedType(object.password, C.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "google_2fa_secret", serializers.serialize$2$specifiedType(object.isTwoFactorEnabled, C.FullType_MtR), "has_password", serializers.serialize$2$specifiedType(object.hasPassword, C.FullType_MtR), "last_confirmed_email_address", serializers.serialize$2$specifiedType(object.lastEmailAddress, C.FullType_h8g), "oauth_user_token", serializers.serialize$2$specifiedType(object.oauthUserToken, C.FullType_h8g), "oauth_provider_id", serializers.serialize$2$specifiedType(object.oauthProvider, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.emailVerifiedAt; if (value != null) { result.push("email_verified_at"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } value = object.userCompany; if (value != null) { result.push("company_user"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_whX)); } value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._firstName = t2; break; case "last_name": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._lastName = t2; break; case "email": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._email = t2; break; case "phone": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._phone = t2; break; case "password": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._password = t2; break; case "email_verified_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_user_model$_$this()._emailVerifiedAt = t2; break; case "custom_value1": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._customValue1 = t2; break; case "custom_value2": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._customValue2 = t2; break; case "custom_value3": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._customValue3 = t2; break; case "custom_value4": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._customValue4 = t2; break; case "google_2fa_secret": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_user_model$_$this()._isTwoFactorEnabled = t2; break; case "has_password": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_user_model$_$this()._hasPassword = t2; break; case "last_confirmed_email_address": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._lastEmailAddress = t2; break; case "oauth_user_token": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._oauthUserToken = t2; break; case "company_user": t2 = result.get$_user_model$_$this(); t3 = t2._userCompany; if (t3 == null) { t3 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t3); t2._userCompany = t3; t2 = t3; } else t2 = t3; t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_whX)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._company_model$_$v = t3; break; case "oauth_provider_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._oauthProvider = t2; break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_user_model$_$this()._user_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_user_model$_$this()._createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_user_model$_$this()._user_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_user_model$_$this()._archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_user_model$_$this()._isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._assignedUserId = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_model$_$this()._id = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_IU1; }, get$wireName: function() { return "UserEntity"; } }; B._$UserListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.UserListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.UserListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._user_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._user_model$_$v = null; } t1 = _this._user_model$_data; return t1 == null ? _this._user_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "UserListResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new B._$UserListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_model$_$v = t1; return _$result; } }; B._$UserItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.UserItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.UserItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t2._user_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; if (t1 == null) { t1 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t1); _this._user_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "UserItemResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new B._$UserItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_model$_$v = t1; return _$result; } }; B._$UserTwoFactorResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.UserTwoFactorResponse && this.data.$eq(0, other.data); }, get$hashCode: function(_) { var t1 = this._user_model$__hashCode; if (t1 == null) { t1 = this.data; t1 = this._user_model$__hashCode = Y.$jf(Y.$jc(0, t1.get$hashCode(t1))); } return t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserTwoFactorResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.UserTwoFactorResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t2 = new B.UserTwoFactorDataBuilder(); t2._user_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; return t1 == null ? _this._user_model$_data = new B.UserTwoFactorDataBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, exception, t1, _this = this, _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) _$result0 = new B._$UserTwoFactorResponse(_this.get$data(_this).build$0(0)); _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("UserTwoFactorResponse", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_model$_$v = t1; return _$result; } }; B._$UserTwoFactorData.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.UserTwoFactorData && this.secret === other.secret && this.qrCode === other.qrCode; }, get$hashCode: function(_) { var _this = this, t1 = _this._user_model$__hashCode; return t1 == null ? _this._user_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.secret)), C.JSString_methods.get$hashCode(_this.qrCode))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserTwoFactorData"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "secret", this.secret); t2.add$2(t1, "qrCode", this.qrCode); return t2.toString$0(t1); } }; B.UserTwoFactorDataBuilder.prototype = { get$_user_model$_$this: function() { var _this = this, $$v = _this._user_model$_$v; if ($$v != null) { _this._secret = $$v.secret; _this._qrCode = $$v.qrCode; _this._user_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s17_ = "UserTwoFactorData", _$result = _this._user_model$_$v; if (_$result == null) { t1 = _this.get$_user_model$_$this()._secret; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "secret")); t2 = _this.get$_user_model$_$this()._qrCode; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "qrCode")); _$result = new B._$UserTwoFactorData(t1, t2); } return _this._user_model$_$v = _$result; } }; B._$UserCompanyItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.UserCompanyItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._user_model$__hashCode; return t1 == null ? this._user_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.UserCompanyItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; _this._user_model$_data = t2; _this._user_model$_$v = null; } t1 = _this._user_model$_data; if (t1 == null) { t1 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t1); _this._user_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s23_ = "UserCompanyItemResponse", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new B._$UserCompanyItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_model$_$v = t1; return _$result; } }; B._$UserEntity.prototype = { rebuild$1: function(updates) { var t1 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t1); t1._user_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.UserEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.phone === other.phone && _this.password === other.password && _this.emailVerifiedAt == other.emailVerifiedAt && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && _this.isTwoFactorEnabled === other.isTwoFactorEnabled && _this.hasPassword === other.hasPassword && _this.lastEmailAddress === other.lastEmailAddress && _this.oauthUserToken === other.oauthUserToken && J.$eq$(_this.userCompany, other.userCompany) && _this.oauthProvider === other.oauthProvider && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._user_model$__hashCode; return t1 == null ? _this._user_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.firstName)), C.JSString_methods.get$hashCode(_this.lastName)), C.JSString_methods.get$hashCode(_this.email)), C.JSString_methods.get$hashCode(_this.phone)), C.JSString_methods.get$hashCode(_this.password)), J.get$hashCode$(_this.emailVerifiedAt)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), C.JSBool_methods.get$hashCode(_this.isTwoFactorEnabled)), C.JSBool_methods.get$hashCode(_this.hasPassword)), C.JSString_methods.get$hashCode(_this.lastEmailAddress)), C.JSString_methods.get$hashCode(_this.oauthUserToken)), J.get$hashCode$(_this.userCompany)), C.JSString_methods.get$hashCode(_this.oauthProvider)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "password", _this.password); t2.add$2(t1, "emailVerifiedAt", _this.emailVerifiedAt); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "isTwoFactorEnabled", _this.isTwoFactorEnabled); t2.add$2(t1, "hasPassword", _this.hasPassword); t2.add$2(t1, "lastEmailAddress", _this.lastEmailAddress); t2.add$2(t1, "oauthUserToken", _this.oauthUserToken); t2.add$2(t1, "userCompany", _this.userCompany); t2.add$2(t1, "oauthProvider", _this.oauthProvider); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; B.UserEntityBuilder.prototype = { get$userCompany: function() { var t1 = this.get$_user_model$_$this(), t2 = t1._userCompany; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t1._userCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$id: function(_) { return this.get$_user_model$_$this()._id; }, get$_user_model$_$this: function() { var t1, t2, _this = this, $$v = _this._user_model$_$v; if ($$v != null) { _this._firstName = $$v.firstName; _this._lastName = $$v.lastName; _this._email = $$v.email; _this._phone = $$v.phone; _this._password = $$v.password; _this._emailVerifiedAt = $$v.emailVerifiedAt; _this._customValue1 = $$v.customValue1; _this._customValue2 = $$v.customValue2; _this._customValue3 = $$v.customValue3; _this._customValue4 = $$v.customValue4; _this._isTwoFactorEnabled = $$v.isTwoFactorEnabled; _this._hasPassword = $$v.hasPassword; _this._lastEmailAddress = $$v.lastEmailAddress; _this._oauthUserToken = $$v.oauthUserToken; t1 = $$v.userCompany; if (t1 == null) t1 = null; else { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; t1 = t2; } _this._userCompany = t1; _this._oauthProvider = $$v.oauthProvider; _this._user_model$_isChanged = $$v.isChanged; _this._createdAt = $$v.createdAt; _this._user_model$_updatedAt = $$v.updatedAt; _this._archivedAt = $$v.archivedAt; _this._isDeleted = $$v.isDeleted; _this._createdUserId = $$v.createdUserId; _this._assignedUserId = $$v.assignedUserId; _this._id = $$v.id; _this._user_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, exception, _this = this, _s10_ = "UserEntity", _$result = null; try { _$result0 = _this._user_model$_$v; if (_$result0 == null) { t1 = _this.get$_user_model$_$this()._firstName; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "firstName")); t2 = _this.get$_user_model$_$this()._lastName; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "lastName")); t3 = _this.get$_user_model$_$this()._email; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "email")); t4 = _this.get$_user_model$_$this()._phone; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "phone")); t5 = _this.get$_user_model$_$this()._password; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "password")); t6 = _this.get$_user_model$_$this()._emailVerifiedAt; t7 = _this.get$_user_model$_$this()._customValue1; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue1")); t8 = _this.get$_user_model$_$this()._customValue2; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue2")); t9 = _this.get$_user_model$_$this()._customValue3; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue3")); t10 = _this.get$_user_model$_$this()._customValue4; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "customValue4")); t11 = _this.get$_user_model$_$this()._isTwoFactorEnabled; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "isTwoFactorEnabled")); t12 = _this.get$_user_model$_$this()._hasPassword; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "hasPassword")); t13 = _this.get$_user_model$_$this()._lastEmailAddress; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "lastEmailAddress")); t14 = _this.get$_user_model$_$this()._oauthUserToken; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "oauthUserToken")); t15 = _this._userCompany; t15 = t15 == null ? null : t15.build$0(0); t16 = _this.get$_user_model$_$this()._oauthProvider; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "oauthProvider")); t17 = _this.get$_user_model$_$this()._user_model$_isChanged; t18 = _this.get$_user_model$_$this()._createdAt; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "createdAt")); t19 = _this.get$_user_model$_$this()._user_model$_updatedAt; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "updatedAt")); t20 = _this.get$_user_model$_$this()._archivedAt; if (t20 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "archivedAt")); t21 = _this.get$_user_model$_$this()._isDeleted; t22 = _this.get$_user_model$_$this()._createdUserId; t23 = _this.get$_user_model$_$this()._assignedUserId; t24 = _this.get$_user_model$_$this()._id; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s10_, "id")); _$result0 = B._$UserEntity$_(t20, t23, t18, t22, t7, t8, t9, t10, t3, t6, t1, t12, t24, t17, t21, t11, t13, t2, t16, t14, t5, t4, t19, t15); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "userCompany"; t1 = _this._userCompany; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s10_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_model$_$v = t1; return _$result; } }; B._UserEntity_Object_BaseEntity.prototype = {}; B._UserEntity_Object_BaseEntity_SelectableEntity.prototype = {}; B.VendorListResponse.prototype = {}; B.VendorItemResponse.prototype = {}; B.VendorEntity.prototype = { get$entityType: function() { return C.EntityType_vendor; }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) { if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (userCompany.can$2(C.UserPermission_create, C.EntityType_expense)) actions.push(C.EntityAction_newExpense); } if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, getActions$1$userCompany: function(userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(null, false, false, userCompany); }, compareTo$5: function(_, vendor, sortField, sortAscending, userMap, staticState) { var response, t1, stateA, stateB, t2, t3, userA, userB, currencyMap, _null = null, _s8_ = "archived", vendorA = sortAscending ? this : vendor, vendorB = sortAscending ? vendor : this; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(vendorA.name.toLowerCase(), vendorB.name.toLowerCase()); break; case "city": response = C.JSString_methods.compareTo$1(vendorA.city.toLowerCase(), vendorB.city.toLowerCase()); break; case "phone": response = C.JSString_methods.compareTo$1(vendorA.phone.toLowerCase(), vendorB.phone.toLowerCase()); break; case "entity_state": case "state": if (!vendorA.get$isArchived() && !vendorA.isDeleted) t1 = "active"; else t1 = vendorA.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!vendorB.get$isArchived() && !vendorB.isDeleted) t1 = "active"; else t1 = vendorB.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; case "assigned_to": t1 = vendorA.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, vendorB.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = vendorA.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, vendorB.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_at": response = C.JSInt_methods.compareTo$1(vendorA.createdAt, vendorB.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(vendorA.archivedAt, vendorB.archivedAt); break; case "updated_at": response = C.JSInt_methods.compareTo$1(vendorA.updatedAt, vendorB.updatedAt); break; case "documents": response = J.compareTo$1$ns(J.get$length$asx(vendorA.documents._list), J.get$length$asx(vendorB.documents._list)); break; case "number": response = K.compareNatural(vendorA.number.toLowerCase(), vendorB.number.toLowerCase()); break; case "address1": response = C.JSString_methods.compareTo$1(vendorA.address1, vendorB.address1); break; case "address2": response = C.JSString_methods.compareTo$1(vendorA.address2, vendorB.address2); break; case "postal_code": response = C.JSString_methods.compareTo$1(vendorA.postalCode, vendorB.postalCode); break; case "country_id": response = C.JSString_methods.compareTo$1(vendorA.countryId, vendorB.countryId); break; case "private_notes": response = C.JSString_methods.compareTo$1(vendorA.privateNotes, vendorB.privateNotes); break; case "public_notes": response = C.JSString_methods.compareTo$1(vendorA.publicNotes, vendorB.publicNotes); break; case "website": response = C.JSString_methods.compareTo$1(vendorA.website, vendorB.website); break; case "vat_number": response = C.JSString_methods.compareTo$1(vendorA.vatNumber, vendorB.vatNumber); break; case "id_number": response = C.JSString_methods.compareTo$1(vendorA.idNumber, vendorB.idNumber); break; case "currency_id": currencyMap = staticState.currencyMap; t1 = vendorA.currencyId; t2 = currencyMap._map$_map; t3 = J.getInterceptor$asx(t2); response = C.JSString_methods.compareTo$1(t3.$index(t2, t1).name, t3.$index(t2, vendorB.currencyId).name); break; case "custom1": response = C.JSString_methods.compareTo$1(vendorA.customValue1, vendorB.customValue1); break; case "custom2": response = C.JSString_methods.compareTo$1(vendorA.customValue2, vendorB.customValue2); break; case "custom3": response = C.JSString_methods.compareTo$1(vendorA.customValue3, vendorB.customValue3); break; case "custom4": response = C.JSString_methods.compareTo$1(vendorA.customValue4, vendorB.customValue4); break; default: P.print("## ERROR: sort by vendor." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(vendor.number.toLowerCase(), this.number.toLowerCase()) : response; }, matchesFilter$1: function(filter) { var t1, _this = this; for (t1 = J.get$iterator$ax(_this.contacts._list); t1.moveNext$0();) if (t1.get$current(t1).matchesFilter$1(filter)) return true; return A.matchesStrings(H.setRuntimeTypeInfo([_this.name, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.address2, _this.city, _this.state, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { var t1, value, _this = this; for (t1 = J.get$iterator$ax(_this.contacts._list); t1.moveNext$0();) { value = t1.get$current(t1).matchesFilterValue$1(filter); if (value != null) return value; } return A.matchesStringsValue(H.setRuntimeTypeInfo([_this.name, _this.vatNumber, _this.idNumber, _this.number, _this.phone, _this.address1, _this.address2, _this.city, _this.state, _this.postalCode, _this.customValue1, _this.customValue2, _this.customValue3, _this.customValue4], type$.JSArray_legacy_String), filter); }, get$listDisplayName: function() { return this.name; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; } }; B.VendorEntity_VendorEntity_closure.prototype = { call$1: function(b) { b.get$_vendor_model$_$this()._isPrimary = true; return b; }, $signature: 731 }; B.VendorContactEntity.prototype = { get$entityType: function() { return C.EntityType_vendorContact; }, get$fullName: function() { return C.JSString_methods.trim$0(this.firstName + " " + this.lastName); }, matchesFilter$1: function(filter) { if (filter == null || filter.length === 0) return true; return false; }, matchesFilterValue$1: function(filter) { var t1, _this = this; if (filter == null || filter.length === 0) return null; filter = filter.toLowerCase(); if (C.JSString_methods.contains$1(_this.get$fullName().toLowerCase(), filter)) return _this.get$fullName(); else { t1 = _this.email; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; else { t1 = _this.phone; if (C.JSString_methods.contains$1(t1.toLowerCase(), filter)) return t1; } } return null; }, get$listDisplayName: function() { return ""; }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return C.FormatNumberType_0; }, $isSelectableEntity: 1 }; B._$VendorListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_Pss)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new B.VendorListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_VendorEntity, t3 = type$.ListBuilder_legacy_VendorEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._vendor_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._vendor_model$_data = t6; result._vendor_model$_$v = null; } t4 = result._vendor_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._vendor_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Pss)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_MQk; }, get$wireName: function() { return "VendorListResponse"; } }; B._$VendorItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_efs)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, $$v, t2, t3, result = new B.VendorItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_VendorEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._vendor_model$_$v; if ($$v != null) { t2 = $$v.data; t2.toString; t3 = new B.VendorEntityBuilder(); t3._vendor_model$_$v = t2; result._vendor_model$_data = t3; result._vendor_model$_$v = null; } t2 = result._vendor_model$_data; if (t2 == null) t2 = result._vendor_model$_data = new B.VendorEntityBuilder(); t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_efs)); if (t3 == null) H.throwExpression(P.ArgumentError$notNull("other")); t2._vendor_model$_$v = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uae; }, get$wireName: function() { return "VendorItemResponse"; } }; B._$VendorEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["name", serializers.serialize$2$specifiedType(object.name, C.FullType_h8g), "address1", serializers.serialize$2$specifiedType(object.address1, C.FullType_h8g), "address2", serializers.serialize$2$specifiedType(object.address2, C.FullType_h8g), "city", serializers.serialize$2$specifiedType(object.city, C.FullType_h8g), "state", serializers.serialize$2$specifiedType(object.state, C.FullType_h8g), "postal_code", serializers.serialize$2$specifiedType(object.postalCode, C.FullType_h8g), "country_id", serializers.serialize$2$specifiedType(object.countryId, C.FullType_h8g), "phone", serializers.serialize$2$specifiedType(object.phone, C.FullType_h8g), "private_notes", serializers.serialize$2$specifiedType(object.privateNotes, C.FullType_h8g), "public_notes", serializers.serialize$2$specifiedType(object.publicNotes, C.FullType_h8g), "website", serializers.serialize$2$specifiedType(object.website, C.FullType_h8g), "number", serializers.serialize$2$specifiedType(object.number, C.FullType_h8g), "vat_number", serializers.serialize$2$specifiedType(object.vatNumber, C.FullType_h8g), "id_number", serializers.serialize$2$specifiedType(object.idNumber, C.FullType_h8g), "currency_id", serializers.serialize$2$specifiedType(object.currencyId, C.FullType_h8g), "custom_value1", serializers.serialize$2$specifiedType(object.customValue1, C.FullType_h8g), "custom_value2", serializers.serialize$2$specifiedType(object.customValue2, C.FullType_h8g), "custom_value3", serializers.serialize$2$specifiedType(object.customValue3, C.FullType_h8g), "custom_value4", serializers.serialize$2$specifiedType(object.customValue4, C.FullType_h8g), "contacts", serializers.serialize$2$specifiedType(object.contacts, C.FullType_MO9), "documents", serializers.serialize$2$specifiedType(object.documents, C.FullType_EBZ), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, key, value, t6, t7, t8, result = new B.VendorEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_DocumentEntity, t3 = type$.ListBuilder_legacy_DocumentEntity, t4 = type$.legacy_VendorContactEntity, t5 = type$.ListBuilder_legacy_VendorContactEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "name": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_name = t6; break; case "address1": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_address1 = t6; break; case "address2": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_address2 = t6; break; case "city": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_city = t6; break; case "state": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_state = t6; break; case "postal_code": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_postalCode = t6; break; case "country_id": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_countryId = t6; break; case "phone": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_phone = t6; break; case "private_notes": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_privateNotes = t6; break; case "public_notes": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_publicNotes = t6; break; case "website": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_website = t6; break; case "number": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_number = t6; break; case "vat_number": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_vatNumber = t6; break; case "id_number": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_idNumber = t6; break; case "currency_id": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_currencyId = t6; break; case "custom_value1": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue1 = t6; break; case "custom_value2": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue2 = t6; break; case "custom_value3": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue3 = t6; break; case "custom_value4": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_customValue4 = t6; break; case "contacts": t6 = result.get$_vendor_model$_$this(); t7 = t6._vendor_model$_contacts; if (t7 == null) { t7 = new D.ListBuilder(t5); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t4); t6._vendor_model$_contacts = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_MO9)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; case "documents": t6 = result.get$_vendor_model$_$this(); t7 = t6._vendor_model$_documents; if (t7 == null) { t7 = new D.ListBuilder(t3); t7.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t6._vendor_model$_documents = t7; t6 = t7; } else t6 = t7; t7 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_EBZ)); t8 = t6.$ti; if (t8._eval$1("_BuiltList<1>")._is(t7)) { t6.__ListBuilder__list = t7._list; t6._listOwner = t7; } else { t6.__ListBuilder__list = P.List_List$from(t7, true, t8._precomputed1); t6._listOwner = null; } break; case "isChanged": t6 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isChanged = t6; break; case "created_at": t6 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_createdAt = t6; break; case "updated_at": t6 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_updatedAt = t6; break; case "archived_at": t6 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_archivedAt = t6; break; case "is_deleted": t6 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isDeleted = t6; break; case "user_id": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_createdUserId = t6; break; case "assigned_user_id": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t6; break; case "id": t6 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_id = t6; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uUY0; }, get$wireName: function() { return "VendorEntity"; } }; B._$VendorContactEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["first_name", serializers.serialize$2$specifiedType(object.firstName, C.FullType_h8g), "last_name", serializers.serialize$2$specifiedType(object.lastName, C.FullType_h8g), "email", serializers.serialize$2$specifiedType(object.email, C.FullType_h8g), "is_primary", serializers.serialize$2$specifiedType(object.isPrimary, C.FullType_MtR), "phone", serializers.serialize$2$specifiedType(object.phone, C.FullType_h8g), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, result = new B.VendorContactEntityBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "first_name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_firstName = t1; break; case "last_name": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_lastName = t1; break; case "email": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_email = t1; break; case "is_primary": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_model$_$this()._isPrimary = t1; break; case "phone": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_phone = t1; break; case "isChanged": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isChanged = t1; break; case "created_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_createdAt = t1; break; case "updated_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_updatedAt = t1; break; case "archived_at": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_model$_$this()._vendor_model$_archivedAt = t1; break; case "is_deleted": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_model$_$this()._vendor_model$_isDeleted = t1; break; case "user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_createdUserId = t1; break; case "assigned_user_id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t1; break; case "id": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_model$_$this()._vendor_model$_id = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_yjH; }, get$wireName: function() { return "VendorContactEntity"; } }; B._$VendorListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.VendorListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._vendor_model$__hashCode; return t1 == null ? this._vendor_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.VendorListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._vendor_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._vendor_model$_$v = null; } t1 = _this._vendor_model$_data; return t1 == null ? _this._vendor_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "VendorListResponse", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new B._$VendorListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._vendor_model$_$v = t1; return _$result; } }; B._$VendorItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.VendorItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._vendor_model$__hashCode; return t1 == null ? this._vendor_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; B.VendorItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new B.VendorEntityBuilder(); t2._vendor_model$_$v = t1; _this._vendor_model$_data = t2; _this._vendor_model$_$v = null; } t1 = _this._vendor_model$_data; return t1 == null ? _this._vendor_model$_data = new B.VendorEntityBuilder() : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s18_ = "VendorItemResponse", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new B._$VendorItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._vendor_model$_$v = t1; return _$result; } }; B._$VendorEntity.prototype = { rebuild$1: function(updates) { var t1 = new B.VendorEntityBuilder(); t1._vendor_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.VendorEntity && _this.name === other.name && _this.address1 === other.address1 && _this.address2 === other.address2 && _this.city === other.city && _this.state === other.state && _this.postalCode === other.postalCode && _this.countryId === other.countryId && _this.phone === other.phone && _this.privateNotes === other.privateNotes && _this.publicNotes === other.publicNotes && _this.website === other.website && _this.number === other.number && _this.vatNumber === other.vatNumber && _this.idNumber === other.idNumber && _this.currencyId === other.currencyId && _this.customValue1 === other.customValue1 && _this.customValue2 === other.customValue2 && _this.customValue3 === other.customValue3 && _this.customValue4 === other.customValue4 && J.$eq$(_this.contacts, other.contacts) && J.$eq$(_this.documents, other.documents) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._vendor_model$__hashCode; return t1 == null ? _this._vendor_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.name)), C.JSString_methods.get$hashCode(_this.address1)), C.JSString_methods.get$hashCode(_this.address2)), C.JSString_methods.get$hashCode(_this.city)), C.JSString_methods.get$hashCode(_this.state)), C.JSString_methods.get$hashCode(_this.postalCode)), C.JSString_methods.get$hashCode(_this.countryId)), C.JSString_methods.get$hashCode(_this.phone)), C.JSString_methods.get$hashCode(_this.privateNotes)), C.JSString_methods.get$hashCode(_this.publicNotes)), C.JSString_methods.get$hashCode(_this.website)), C.JSString_methods.get$hashCode(_this.number)), C.JSString_methods.get$hashCode(_this.vatNumber)), C.JSString_methods.get$hashCode(_this.idNumber)), C.JSString_methods.get$hashCode(_this.currencyId)), C.JSString_methods.get$hashCode(_this.customValue1)), C.JSString_methods.get$hashCode(_this.customValue2)), C.JSString_methods.get$hashCode(_this.customValue3)), C.JSString_methods.get$hashCode(_this.customValue4)), J.get$hashCode$(_this.contacts)), J.get$hashCode$(_this.documents)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "name", _this.name); t2.add$2(t1, "address1", _this.address1); t2.add$2(t1, "address2", _this.address2); t2.add$2(t1, "city", _this.city); t2.add$2(t1, "state", _this.state); t2.add$2(t1, "postalCode", _this.postalCode); t2.add$2(t1, "countryId", _this.countryId); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "privateNotes", _this.privateNotes); t2.add$2(t1, "publicNotes", _this.publicNotes); t2.add$2(t1, "website", _this.website); t2.add$2(t1, "number", _this.number); t2.add$2(t1, "vatNumber", _this.vatNumber); t2.add$2(t1, "idNumber", _this.idNumber); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "customValue1", _this.customValue1); t2.add$2(t1, "customValue2", _this.customValue2); t2.add$2(t1, "customValue3", _this.customValue3); t2.add$2(t1, "customValue4", _this.customValue4); t2.add$2(t1, "contacts", _this.contacts); t2.add$2(t1, "documents", _this.documents); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$name: function(receiver) { return this.name; }, get$address1: function() { return this.address1; }, get$address2: function() { return this.address2; }, get$city: function(receiver) { return this.city; }, get$state: function(receiver) { return this.state; }, get$postalCode: function(receiver) { return this.postalCode; }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; B.VendorEntityBuilder.prototype = { get$name: function(_) { return this.get$_vendor_model$_$this()._vendor_model$_name; }, get$contacts: function() { var t1 = this.get$_vendor_model$_$this(), t2 = t1._vendor_model$_contacts; return t2 == null ? t1._vendor_model$_contacts = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_VendorContactEntity) : t2; }, get$documents: function() { var t1 = this.get$_vendor_model$_$this(), t2 = t1._vendor_model$_documents; return t2 == null ? t1._vendor_model$_documents = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_DocumentEntity) : t2; }, get$id: function(_) { return this.get$_vendor_model$_$this()._vendor_model$_id; }, get$_vendor_model$_$this: function() { var t1, _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { _this._vendor_model$_name = $$v.name; _this._vendor_model$_address1 = $$v.address1; _this._vendor_model$_address2 = $$v.address2; _this._vendor_model$_city = $$v.city; _this._vendor_model$_state = $$v.state; _this._vendor_model$_postalCode = $$v.postalCode; _this._vendor_model$_countryId = $$v.countryId; _this._vendor_model$_phone = $$v.phone; _this._vendor_model$_privateNotes = $$v.privateNotes; _this._vendor_model$_publicNotes = $$v.publicNotes; _this._vendor_model$_website = $$v.website; _this._vendor_model$_number = $$v.number; _this._vendor_model$_vatNumber = $$v.vatNumber; _this._vendor_model$_idNumber = $$v.idNumber; _this._vendor_model$_currencyId = $$v.currencyId; _this._vendor_model$_customValue1 = $$v.customValue1; _this._vendor_model$_customValue2 = $$v.customValue2; _this._vendor_model$_customValue3 = $$v.customValue3; _this._vendor_model$_customValue4 = $$v.customValue4; t1 = $$v.contacts; t1.toString; _this._vendor_model$_contacts = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.documents; t1.toString; _this._vendor_model$_documents = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._vendor_model$_isChanged = $$v.isChanged; _this._vendor_model$_createdAt = $$v.createdAt; _this._vendor_model$_updatedAt = $$v.updatedAt; _this._vendor_model$_archivedAt = $$v.archivedAt; _this._vendor_model$_isDeleted = $$v.isDeleted; _this._vendor_model$_createdUserId = $$v.createdUserId; _this._vendor_model$_assignedUserId = $$v.assignedUserId; _this._vendor_model$_id = $$v.id; _this._vendor_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, exception, _this = this, _s12_ = "VendorEntity", _$result = null; try { _$result0 = _this._vendor_model$_$v; if (_$result0 == null) { t1 = _this.get$_vendor_model$_$this()._vendor_model$_name; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "name")); t2 = _this.get$_vendor_model$_$this()._vendor_model$_address1; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "address1")); t3 = _this.get$_vendor_model$_$this()._vendor_model$_address2; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "address2")); t4 = _this.get$_vendor_model$_$this()._vendor_model$_city; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "city")); t5 = _this.get$_vendor_model$_$this()._vendor_model$_state; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "state")); t6 = _this.get$_vendor_model$_$this()._vendor_model$_postalCode; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "postalCode")); t7 = _this.get$_vendor_model$_$this()._vendor_model$_countryId; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "countryId")); t8 = _this.get$_vendor_model$_$this()._vendor_model$_phone; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "phone")); t9 = _this.get$_vendor_model$_$this()._vendor_model$_privateNotes; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "privateNotes")); t10 = _this.get$_vendor_model$_$this()._vendor_model$_publicNotes; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "publicNotes")); t11 = _this.get$_vendor_model$_$this()._vendor_model$_website; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "website")); t12 = _this.get$_vendor_model$_$this()._vendor_model$_number; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "number")); t13 = _this.get$_vendor_model$_$this()._vendor_model$_vatNumber; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "vatNumber")); t14 = _this.get$_vendor_model$_$this()._vendor_model$_idNumber; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "idNumber")); t15 = _this.get$_vendor_model$_$this()._vendor_model$_currencyId; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "currencyId")); t16 = _this.get$_vendor_model$_$this()._vendor_model$_customValue1; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue1")); t17 = _this.get$_vendor_model$_$this()._vendor_model$_customValue2; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue2")); t18 = _this.get$_vendor_model$_$this()._vendor_model$_customValue3; if (t18 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue3")); t19 = _this.get$_vendor_model$_$this()._vendor_model$_customValue4; if (t19 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "customValue4")); t20 = _this.get$contacts().build$0(0); t21 = _this.get$documents().build$0(0); t22 = _this.get$_vendor_model$_$this()._vendor_model$_isChanged; t23 = _this.get$_vendor_model$_$this()._vendor_model$_createdAt; if (t23 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "createdAt")); t24 = _this.get$_vendor_model$_$this()._vendor_model$_updatedAt; if (t24 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "updatedAt")); t25 = _this.get$_vendor_model$_$this()._vendor_model$_archivedAt; if (t25 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "archivedAt")); t26 = _this.get$_vendor_model$_$this()._vendor_model$_isDeleted; t27 = _this.get$_vendor_model$_$this()._vendor_model$_createdUserId; t28 = _this.get$_vendor_model$_$this()._vendor_model$_assignedUserId; t29 = _this.get$_vendor_model$_$this()._vendor_model$_id; if (t29 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "id")); _$result0 = B._$VendorEntity$_(t2, t3, t25, t28, t4, t20, t7, t23, t27, t15, t16, t17, t18, t19, t21, t29, t14, t22, t26, t1, t12, t8, t6, t9, t10, t5, t24, t13, t11); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "contacts"; _this.get$contacts().build$0(0); _$failedField = "documents"; _this.get$documents().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._vendor_model$_$v = t1; return _$result; } }; B._$VendorContactEntity.prototype = { rebuild$1: function(updates) { var t1 = new B.VendorContactEntityBuilder(); t1._vendor_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.VendorContactEntity && _this.firstName === other.firstName && _this.lastName === other.lastName && _this.email === other.email && _this.isPrimary === other.isPrimary && _this.phone === other.phone && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._vendor_model$__hashCode; return t1 == null ? _this._vendor_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.firstName)), C.JSString_methods.get$hashCode(_this.lastName)), C.JSString_methods.get$hashCode(_this.email)), C.JSBool_methods.get$hashCode(_this.isPrimary)), C.JSString_methods.get$hashCode(_this.phone)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorContactEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "firstName", _this.firstName); t2.add$2(t1, "lastName", _this.lastName); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "isPrimary", _this.isPrimary); t2.add$2(t1, "phone", _this.phone); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; B.VendorContactEntityBuilder.prototype = { get$id: function(_) { return this.get$_vendor_model$_$this()._vendor_model$_id; }, get$_vendor_model$_$this: function() { var _this = this, $$v = _this._vendor_model$_$v; if ($$v != null) { _this._vendor_model$_firstName = $$v.firstName; _this._vendor_model$_lastName = $$v.lastName; _this._vendor_model$_email = $$v.email; _this._isPrimary = $$v.isPrimary; _this._vendor_model$_phone = $$v.phone; _this._vendor_model$_isChanged = $$v.isChanged; _this._vendor_model$_createdAt = $$v.createdAt; _this._vendor_model$_updatedAt = $$v.updatedAt; _this._vendor_model$_archivedAt = $$v.archivedAt; _this._vendor_model$_isDeleted = $$v.isDeleted; _this._vendor_model$_createdUserId = $$v.createdUserId; _this._vendor_model$_assignedUserId = $$v.assignedUserId; _this._vendor_model$_id = $$v.id; _this._vendor_model$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _s19_ = "VendorContactEntity", _$result = _this._vendor_model$_$v; if (_$result == null) { t1 = _this.get$_vendor_model$_$this()._vendor_model$_firstName; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "firstName")); t2 = _this.get$_vendor_model$_$this()._vendor_model$_lastName; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "lastName")); t3 = _this.get$_vendor_model$_$this()._vendor_model$_email; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "email")); t4 = _this.get$_vendor_model$_$this()._isPrimary; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "isPrimary")); t5 = _this.get$_vendor_model$_$this()._vendor_model$_phone; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "phone")); t6 = _this.get$_vendor_model$_$this()._vendor_model$_isChanged; t7 = _this.get$_vendor_model$_$this()._vendor_model$_createdAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "createdAt")); t8 = _this.get$_vendor_model$_$this()._vendor_model$_updatedAt; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "updatedAt")); t9 = _this.get$_vendor_model$_$this()._vendor_model$_archivedAt; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "archivedAt")); t10 = _this.get$_vendor_model$_$this()._vendor_model$_isDeleted; t11 = _this.get$_vendor_model$_$this()._vendor_model$_createdUserId; t12 = _this.get$_vendor_model$_$this()._vendor_model$_assignedUserId; t13 = _this.get$_vendor_model$_$this()._vendor_model$_id; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "id")); _$result = B._$VendorContactEntity$_(t9, t12, t7, t11, t3, t1, t13, t6, t10, t4, t2, t5, t8); } return _this._vendor_model$_$v = _$result; } }; B._VendorContactEntity_Object_BaseEntity.prototype = {}; B._VendorEntity_Object_BaseEntity.prototype = {}; B._VendorEntity_Object_BaseEntity_SelectableEntity.prototype = {}; E.WebhookListResponse.prototype = {}; E.WebhookItemResponse.prototype = {}; E.WebhookEntity.prototype = { get$entityType: function() { return C.EntityType_webhook; }, get$listDisplayName: function() { return this.targetUrl; }, matchesFilter$1: function(filter) { return A.matchesStrings(H.setRuntimeTypeInfo([this.targetUrl], type$.JSArray_legacy_String), filter); }, matchesFilterValue$1: function(filter) { return A.matchesStringsValue(H.setRuntimeTypeInfo([this.targetUrl], type$.JSArray_legacy_String), filter); }, getActions$4$client$includeEdit$multiselect$userCompany: function(client, includeEdit, multiselect, userCompany) { var actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); if (!this.isDeleted && !multiselect) if (includeEdit && userCompany.canEditEntity$1(this)) actions.push(C.EntityAction_edit); if (actions.length !== 0 && C.JSArray_methods.get$last(actions) != null) actions.push(null); C.JSArray_methods.addAll$1(actions, this.super$BaseEntity$getActions(null, false, false, userCompany)); return actions; }, getActions$2$client$userCompany: function(client, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, false, false, userCompany); }, getActions$3$client$includeEdit$userCompany: function(client, includeEdit, userCompany) { return this.getActions$4$client$includeEdit$multiselect$userCompany(client, includeEdit, false, userCompany); }, get$listDisplayAmount: function() { return null; }, get$listDisplayAmountType: function() { return null; } }; E._$WebhookListResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_46c)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new E.WebhookListResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_WebhookEntity, t3 = type$.ListBuilder_legacy_WebhookEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._webhook_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._webhook_model$_data = t6; result._webhook_model$_$v = null; } t4 = result._webhook_model$_data; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._webhook_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_46c)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_XRi; }, get$wireName: function() { return "WebhookListResponse"; } }; E._$WebhookItemResponseSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["data", serializers.serialize$2$specifiedType(object.data, C.FullType_iL9)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, t7, _null = null, result = new E.WebhookItemResponseBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_WebhookEntity, t2 = type$.legacy_String, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "data": $$v = result._webhook_model$_$v; if ($$v != null) { t4 = $$v.data; t4.toString; t5 = new E.WebhookEntityBuilder(); t6 = t5.get$_webhook_model$_$this(); t7 = t6._headers; if (t7 == null) { t7 = new A.MapBuilder(_null, $, _null, t3); t7.replace$1(0, C.Map_empty0); t6._headers = t7; t6 = t7; } else t6 = t7; t6.replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2)); t5.get$_webhook_model$_$this()._restMethod = ""; t5._webhook_model$_$v = t4; result._webhook_model$_data = t5; result._webhook_model$_$v = null; } t4 = result._webhook_model$_data; if (t4 == null) { t4 = new E.WebhookEntityBuilder(); t5 = t4.get$_webhook_model$_$this(); t6 = t5._headers; if (t6 == null) { t6 = new A.MapBuilder(_null, $, _null, t3); t6.replace$1(0, C.Map_empty0); t5._headers = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2)); t4.get$_webhook_model$_$this()._restMethod = ""; result._webhook_model$_data = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_iL9)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull("other")); t4._webhook_model$_$v = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_IMQ; }, get$wireName: function() { return "WebhookItemResponse"; } }; E._$WebhookEntitySerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["event_id", serializers.serialize$2$specifiedType(object.eventId, C.FullType_h8g), "target_url", serializers.serialize$2$specifiedType(object.targetUrl, C.FullType_h8g), "format", serializers.serialize$2$specifiedType(object.format, C.FullType_h8g), "rest_method", serializers.serialize$2$specifiedType(object.restMethod, C.FullType_h8g), "headers", serializers.serialize$2$specifiedType(object.headers, C.FullType_LNO), "created_at", serializers.serialize$2$specifiedType(object.createdAt, C.FullType_kjq), "updated_at", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "archived_at", serializers.serialize$2$specifiedType(object.archivedAt, C.FullType_kjq), "id", serializers.serialize$2$specifiedType(object.id, C.FullType_h8g)], type$.JSArray_legacy_Object), value = object.isChanged; if (value != null) { result.push("isChanged"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.isDeleted; if (value != null) { result.push("is_deleted"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } value = object.createdUserId; if (value != null) { result.push("user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.assignedUserId; if (value != null) { result.push("assigned_user_id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, key, value, t2, t3, result = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "event_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._eventId = t2; break; case "target_url": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._targetUrl = t2; break; case "format": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._format = t2; break; case "rest_method": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._restMethod = t2; break; case "headers": t2 = result.get$_webhook_model$_$this(); t3 = t2._headers; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._headers = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "isChanged": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_webhook_model$_$this()._webhook_model$_isChanged = t2; break; case "created_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_createdAt = t2; break; case "updated_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_updatedAt = t2; break; case "archived_at": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_webhook_model$_$this()._webhook_model$_archivedAt = t2; break; case "is_deleted": t2 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_webhook_model$_$this()._webhook_model$_isDeleted = t2; break; case "user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_createdUserId = t2; break; case "assigned_user_id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_assignedUserId = t2; break; case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_model$_$this()._webhook_model$_id = t2; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_VOT; }, get$wireName: function() { return "WebhookEntity"; } }; E._$WebhookListResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof E.WebhookListResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._webhook_model$__hashCode; return t1 == null ? this._webhook_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookListResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; E.WebhookListResponseBuilder.prototype = { get$data: function(_) { var t1, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; _this._webhook_model$_data = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._webhook_model$_$v = null; } t1 = _this._webhook_model$_data; return t1 == null ? _this._webhook_model$_data = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_WebhookEntity) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "WebhookListResponse", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new E._$WebhookListResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._webhook_model$_$v = t1; return _$result; } }; E._$WebhookItemResponse.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof E.WebhookItemResponse && J.$eq$(this.data, other.data); }, get$hashCode: function(_) { var t1 = this._webhook_model$__hashCode; return t1 == null ? this._webhook_model$__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.data))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookItemResponse"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "data", this.data); return t2.toString$0(t1); } }; E.WebhookItemResponseBuilder.prototype = { get$data: function(_) { var t1, t2, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { t1 = $$v.data; t1.toString; t2 = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(t2); t2._webhook_model$_$v = t1; _this._webhook_model$_data = t2; _this._webhook_model$_$v = null; } t1 = _this._webhook_model$_data; if (t1 == null) { t1 = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(t1); _this._webhook_model$_data = t1; } return t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s19_ = "WebhookItemResponse", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$data(_this).build$0(0); _$result0 = new E._$WebhookItemResponse(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "data")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "data"; _this.get$data(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._webhook_model$_$v = t1; return _$result; } }; E._$WebhookEntity.prototype = { rebuild$1: function(updates) { var t1 = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(t1); t1._webhook_model$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof E.WebhookEntity && _this.eventId === other.eventId && _this.targetUrl === other.targetUrl && _this.format === other.format && _this.restMethod === other.restMethod && J.$eq$(_this.headers, other.headers) && _this.isChanged == other.isChanged && _this.createdAt === other.createdAt && _this.updatedAt === other.updatedAt && _this.archivedAt === other.archivedAt && _this.isDeleted == other.isDeleted && _this.createdUserId == other.createdUserId && _this.assignedUserId == other.assignedUserId && _this.id === other.id; }, get$hashCode: function(_) { var _this = this, t1 = _this._webhook_model$__hashCode; return t1 == null ? _this._webhook_model$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.eventId)), C.JSString_methods.get$hashCode(_this.targetUrl)), C.JSString_methods.get$hashCode(_this.format)), C.JSString_methods.get$hashCode(_this.restMethod)), J.get$hashCode$(_this.headers)), J.get$hashCode$(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.createdAt)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSInt_methods.get$hashCode(_this.archivedAt)), J.get$hashCode$(_this.isDeleted)), J.get$hashCode$(_this.createdUserId)), J.get$hashCode$(_this.assignedUserId)), C.JSString_methods.get$hashCode(_this.id))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookEntity"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "eventId", _this.eventId); t2.add$2(t1, "targetUrl", _this.targetUrl); t2.add$2(t1, "format", _this.format); t2.add$2(t1, "restMethod", _this.restMethod); t2.add$2(t1, "headers", _this.headers); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "createdAt", _this.createdAt); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "archivedAt", _this.archivedAt); t2.add$2(t1, "isDeleted", _this.isDeleted); t2.add$2(t1, "createdUserId", _this.createdUserId); t2.add$2(t1, "assignedUserId", _this.assignedUserId); t2.add$2(t1, "id", _this.id); return t2.toString$0(t1); }, get$createdAt: function() { return this.createdAt; }, get$updatedAt: function() { return this.updatedAt; }, get$archivedAt: function() { return this.archivedAt; }, get$isDeleted: function(receiver) { return this.isDeleted; }, get$createdUserId: function() { return this.createdUserId; }, get$assignedUserId: function() { return this.assignedUserId; }, get$id: function(receiver) { return this.id; } }; E.WebhookEntityBuilder.prototype = { get$headers: function(_) { var t1 = this.get$_webhook_model$_$this(), t2 = t1._headers; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._headers = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$id: function(_) { return this.get$_webhook_model$_$this()._webhook_model$_id; }, get$_webhook_model$_$this: function() { var t1, t2, _this = this, $$v = _this._webhook_model$_$v; if ($$v != null) { _this._eventId = $$v.eventId; _this._targetUrl = $$v.targetUrl; _this._format = $$v.format; _this._restMethod = $$v.restMethod; t1 = $$v.headers; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._headers = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._webhook_model$_isChanged = $$v.isChanged; _this._webhook_model$_createdAt = $$v.createdAt; _this._webhook_model$_updatedAt = $$v.updatedAt; _this._webhook_model$_archivedAt = $$v.archivedAt; _this._webhook_model$_isDeleted = $$v.isDeleted; _this._webhook_model$_createdUserId = $$v.createdUserId; _this._webhook_model$_assignedUserId = $$v.assignedUserId; _this._webhook_model$_id = $$v.id; _this._webhook_model$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, exception, _this = this, _s13_ = "WebhookEntity", _$result = null; try { _$result0 = _this._webhook_model$_$v; if (_$result0 == null) { t1 = _this.get$_webhook_model$_$this()._eventId; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "eventId")); t2 = _this.get$_webhook_model$_$this()._targetUrl; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "targetUrl")); t3 = _this.get$_webhook_model$_$this()._format; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "format")); t4 = _this.get$_webhook_model$_$this()._restMethod; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "restMethod")); t5 = _this.get$headers(_this).build$0(0); t6 = _this.get$_webhook_model$_$this()._webhook_model$_isChanged; t7 = _this.get$_webhook_model$_$this()._webhook_model$_createdAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "createdAt")); t8 = _this.get$_webhook_model$_$this()._webhook_model$_updatedAt; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "updatedAt")); t9 = _this.get$_webhook_model$_$this()._webhook_model$_archivedAt; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "archivedAt")); t10 = _this.get$_webhook_model$_$this()._webhook_model$_isDeleted; t11 = _this.get$_webhook_model$_$this()._webhook_model$_createdUserId; t12 = _this.get$_webhook_model$_$this()._webhook_model$_assignedUserId; t13 = _this.get$_webhook_model$_$this()._webhook_model$_id; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "id")); _$result0 = E._$WebhookEntity$_(t9, t12, t7, t11, t1, t3, t5, t13, t6, t10, t4, t2, t8); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "headers"; _this.get$headers(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._webhook_model$_$v = t1; return _$result; } }; E._WebhookEntity_Object_BaseEntity.prototype = {}; E._WebhookEntity_Object_BaseEntity_SelectableEntity.prototype = {}; Z.AuthRepository.prototype = { signUp$3$email$password$referralCode: function(email, password, referralCode) { return this.signUp$body$AuthRepository(email, password, referralCode); }, signUp$body$AuthRepository: function(email, password, referralCode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, credentials; var $async$signUp$3$email$password$referralCode = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start credentials = P.LinkedHashMap_LinkedHashMap$_literal(["email", email, "password", password, "terms_of_service", true, "privacy_policy", true, "token_name", "web_client"], type$.legacy_String, type$.legacy_Object); $async$returnValue = $async$self.sendRequest$3$data$secret$url(credentials, null, Y.formatApiUrl("https://invoicing.co") + ("/signup?rc=" + referralCode)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$signUp$3$email$password$referralCode, $async$completer); }, oauthSignUp$3$accessToken$idToken$referralCode: function(accessToken, idToken, referralCode) { return this.oauthSignUp$body$AuthRepository(accessToken, idToken, referralCode); }, oauthSignUp$body$AuthRepository: function(accessToken, idToken, referralCode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this; var $async$oauthSignUp$3$accessToken$idToken$referralCode = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = $async$self.sendRequest$3$data$secret$url(P.LinkedHashMap_LinkedHashMap$_literal(["terms_of_service", true, "privacy_policy", true, "token_name", "web_client", "id_token", idToken, "provider", "google"], type$.legacy_String, type$.legacy_Object), "", Y.formatApiUrl("https://invoicing.co") + ("/oauth_login?create=true&rc=" + referralCode)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$oauthSignUp$3$accessToken$idToken$referralCode, $async$completer); }, login$6$email$oneTimePassword$password$platform$secret$url: function(email, oneTimePassword, password, platform, secret, url) { return this.login$body$AuthRepository(email, oneTimePassword, password, platform, secret, url); }, login$body$AuthRepository: function(email, oneTimePassword, password, platform, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$login$6$email$oneTimePassword$password$platform$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$3$data$secret$url(P.LinkedHashMap_LinkedHashMap$_literal(["email", email, "password", password, "one_time_password", oneTimePassword], t1, t1), secret, Y.formatApiUrl(url) + "/login"); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$login$6$email$oneTimePassword$password$platform$secret$url, $async$completer); }, logout$1$credentials: function(credentials) { return this.logout$body$AuthRepository(credentials); }, logout$body$AuthRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$logout$1$credentials = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = C.C_WebClient.post$2(credentials.url + "/logout", credentials.token); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$logout$1$credentials, $async$completer); }, oauthLogin$5$accessToken$idToken$platform$secret$url: function(accessToken, idToken, platform, secret, url) { return this.oauthLogin$body$AuthRepository(accessToken, idToken, platform, secret, url); }, oauthLogin$body$AuthRepository: function(accessToken, idToken, platform, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$oauthLogin$5$accessToken$idToken$platform$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$3$data$secret$url(P.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "provider", "google"], t1, t1), secret, Y.formatApiUrl(url) + "/oauth_login"); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$oauthLogin$5$accessToken$idToken$platform$secret$url, $async$completer); }, refresh$5$currentCompany$includeStatic$token$updatedAt$url: function(_, currentCompany, includeStatic, token, updatedAt, url) { return this.refresh$body$AuthRepository(_, currentCompany, includeStatic, token, updatedAt, url); }, refresh$body$AuthRepository: function(_, currentCompany, includeStatic, token, updatedAt, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this; var $async$refresh$5$currentCompany$includeStatic$token$updatedAt$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = Y.formatApiUrl(url) + "/refresh?"; if (currentCompany) url += "current_company=true"; if (updatedAt > 0) { url += "&updated_at=" + updatedAt; includeStatic = includeStatic || Date.now() - updatedAt * 1000 > 86400000; } else includeStatic = true; $async$returnValue = $async$self.sendRequest$3$includeStatic$token$url(includeStatic, token, url); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$refresh$5$currentCompany$includeStatic$token$updatedAt$url, $async$completer); }, recoverPassword$3$email$secret$url: function(email, secret, url) { return this.recoverPassword$body$AuthRepository(email, secret, url); }, recoverPassword$body$AuthRepository: function(email, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, $async$self = this, t1; var $async$recoverPassword$3$email$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = $async$self.sendRequest$2$data$url(P.LinkedHashMap_LinkedHashMap$_literal(["email", email], t1, t1), Y.formatApiUrl(url) + "/reset_password"); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$recoverPassword$3$email$secret$url, $async$completer); }, setDefaultCompany$2$companyId$credentials: function(companyId, credentials) { return this.setDefaultCompany$body$AuthRepository(companyId, credentials); }, setDefaultCompany$body$AuthRepository: function(companyId, credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue; var $async$setDefaultCompany$2$companyId$credentials = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = C.C_WebClient.post$2(credentials.url + "/companies/" + companyId + "/default", credentials.token); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$setDefaultCompany$2$companyId$credentials, $async$completer); }, addCompany$1$credentials: function(credentials) { return this.addCompany$body$AuthRepository(credentials); }, addCompany$body$AuthRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, url, t1; var $async$addCompany$1$credentials = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + "/companies"; t1 = type$.legacy_String; $async$returnValue = C.C_WebClient.post$3$data(url, credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["token_name", "web_client"], t1, t1))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$addCompany$1$credentials, $async$completer); }, deleteCompany$4$companyId$credentials$password$reason: function(companyId, credentials, password, reason) { return this.deleteCompany$body$AuthRepository(companyId, credentials, password, reason); }, deleteCompany$body$AuthRepository: function(companyId, credentials, password, reason) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, t1; var $async$deleteCompany$4$companyId$credentials$password$reason = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$returnValue = C.C_WebClient.delete$4$data$password(0, credentials.url + "/companies/" + companyId, credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["cancellation_message", reason], t1, t1)), password); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$deleteCompany$4$companyId$credentials$password$reason, $async$completer); }, purgeData$4$companyId$credentials$idToken$password: function(companyId, credentials, idToken, password) { return this.purgeData$body$AuthRepository(companyId, credentials, idToken, password); }, purgeData$body$AuthRepository: function(companyId, credentials, idToken, password) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$purgeData$4$companyId$credentials$idToken$password = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = C.C_WebClient.post$4$idToken$password(credentials.url + "/companies/purge_save_settings/" + companyId, credentials.token, idToken, password); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$purgeData$4$companyId$credentials$idToken$password, $async$completer); }, resendConfirmation$2$credentials$userId: function(credentials, userId) { return this.resendConfirmation$body$AuthRepository(credentials, userId); }, resendConfirmation$body$AuthRepository: function(credentials, userId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$resendConfirmation$2$credentials$userId = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = C.C_WebClient.post$2(credentials.url + "/user/" + userId + "/reconfirm", credentials.token); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$resendConfirmation$2$credentials$userId, $async$completer); }, sendRequest$5$data$includeStatic$secret$token$url: function(data, includeStatic, secret, token, url) { return this.sendRequest$body$AuthRepository(data, includeStatic, secret, token, url); }, sendRequest$2$data$url: function(data, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(data, true, null, null, url); }, sendRequest$3$includeStatic$token$url: function(includeStatic, token, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(null, includeStatic, null, token, url); }, sendRequest$3$data$secret$url: function(data, secret, url) { return this.sendRequest$5$data$includeStatic$secret$token$url(data, true, secret, null, url); }, sendRequest$body$AuthRepository: function(data, includeStatic, secret, token, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_LoginResponse), $async$returnValue, t1, response; var $async$sendRequest$5$data$includeStatic$secret$token$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = (C.JSString_methods.contains$1(url, "?") ? url + "&" : url + "?") + "first_load=true"; if (includeStatic) url += "&include_static=true"; t1 = token == null ? "" : token; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$secret(url, t1, C.C_JsonCodec.encode$1(data), secret), $async$sendRequest$5$data$includeStatic$secret$token$url); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$loginResponseSerializer(), response], t1, t1), $async$sendRequest$5$data$includeStatic$secret$token$url); case 4: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$sendRequest$5$data$includeStatic$secret$token$url, $async$completer); } }; G.ClientRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$ClientRepository(credentials, entityId); }, loadItem$body$ClientRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/clients/" + entityId + string$.x3finclug, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$clientItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$ClientRepository(credentials); }, loadList$body$ClientRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ClientEntity), $async$returnValue, response, t1; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/clients?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$clientListResponseSerializer(), response], t1, t1), $async$loadList$1); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$ClientRepository(credentials, ids, action); }, bulkAction$body$ClientRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ClientEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/clients/bulk?include=gateway_tokens,activities,ledger,system_logs,documents", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$clientListResponseSerializer(), response, type$.legacy_ClientListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, client) { return this.saveData$body$ClientRepository(credentials, client); }, saveData$body$ClientRepository: function(credentials, client) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start client = client.rebuild$1(new G.ClientRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$clientEntitySerializer(), client); t2 = credentials.url; t3 = credentials.token; $async$goto = client.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/clients?include=gateway_tokens,activities,ledger,system_logs,documents", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/clients/" + client.id + string$.x3finclug), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$ClientRepository(credentials, entity, multipartFile); }, uploadDocument$body$ClientRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ClientEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/clients/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; G.ClientRepository_saveData_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 40 }; Z.CompanyGatewayRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$CompanyGatewayRepository(credentials, entityId); }, loadItem$body$CompanyGatewayRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_CompanyGatewayEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/company_gateways/" + entityId + "?include=system_logs", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayItemResponseSerializer(), response, type$.legacy_CompanyGatewayItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$CompanyGatewayRepository(credentials); }, loadList$body$CompanyGatewayRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_CompanyGatewayEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/company_gateways", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayListResponseSerializer(), response, type$.legacy_CompanyGatewayListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$CompanyGatewayRepository(credentials, ids, action); }, bulkAction$body$CompanyGatewayRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_CompanyGatewayEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/company_gateways/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$companyGatewayListResponseSerializer(), response, type$.legacy_CompanyGatewayListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, companyGateway) { return this.saveData$body$CompanyGatewayRepository(credentials, companyGateway); }, saveData$body$CompanyGatewayRepository: function(credentials, companyGateway) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_CompanyGatewayEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$companyGatewayEntitySerializer(), companyGateway); t2 = credentials.url; t3 = credentials.token; $async$goto = companyGateway.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/company_gateways", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/company_gateways/" + companyGateway.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$companyGatewayItemResponseSerializer(), response, type$.legacy_CompanyGatewayItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; T.CreditRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$CreditRepository(credentials, entityId); }, loadItem$body$CreditRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/credits/" + entityId + "?include=history,activities", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$CreditRepository(credentials, createdAt, filterDeleted); }, loadList$body$CreditRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/credits?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$CreditRepository(credentials, ids, action); }, bulkAction$body$CreditRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/credits/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, credit) { return this.saveData$body$CreditRepository(credentials, credit); }, saveData$body$CreditRepository: function(credentials, credit) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start credit = credit.rebuild$1(new T.CreditRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), credit); t2 = credentials.url; t3 = credentials.token; $async$goto = credit.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/credits?include=history,activities", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/credits/" + credit.id + "?include=history,activities", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, emailCredit$5: function(credentials, credit, template, subject, body) { return this.emailCredit$body$CreditRepository(credentials, credit, template, subject, body); }, emailCredit$body$CreditRepository: function(credentials, credit, template, subject, body) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, response; var $async$emailCredit$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; data = P.LinkedHashMap_LinkedHashMap$_literal(["entity", H.S(credit.entityType), "entity_id", credit.id, "template", "email_template_" + H.S(template), "body", body, "subject", subject], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, C.C_JsonCodec.encode$1(data)), $async$emailCredit$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$emailCredit$5, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$CreditRepository(credentials, entity, multipartFile); }, uploadDocument$body$CreditRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/credits/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; T.CreditRepository_saveData_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 11 }; L.DesignRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$DesignRepository(credentials, entityId); }, loadItem$body$DesignRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_DesignEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/designs/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$designItemResponseSerializer(), response, type$.legacy_DesignItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$DesignRepository(credentials); }, loadList$body$DesignRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_DesignEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/designs?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$designListResponseSerializer(), response, type$.legacy_DesignListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$DesignRepository(credentials, ids, action); }, bulkAction$body$DesignRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_DesignEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/designs/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$designListResponseSerializer(), response, type$.legacy_DesignListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, design) { return this.saveData$body$DesignRepository(credentials, design); }, saveData$body$DesignRepository: function(credentials, design) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_DesignEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$designEntitySerializer(), design); t2 = credentials.url; t3 = credentials.token; $async$goto = design.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/designs", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/designs/" + design.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$designItemResponseSerializer(), response, type$.legacy_DesignItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; S.DocumentRepository0.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$DocumentRepository(credentials, entityId); }, loadItem$body$DocumentRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_DocumentEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/documents/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$documentItemResponseSerializer(), response, type$.legacy_DocumentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$DocumentRepository(credentials); }, loadList$body$DocumentRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_DocumentEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/documents?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$documentListResponseSerializer(), response, type$.legacy_DocumentListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$DocumentRepository(credentials, ids, action); }, bulkAction$body$DocumentRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_DocumentEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/documents/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$documentListResponseSerializer(), response, type$.legacy_DocumentListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, delete$4: function(_, credentials, documentId, password, idToken) { return this.delete$body$DocumentRepository(_, credentials, documentId, password, idToken); }, delete$body$DocumentRepository: function(_, credentials, documentId, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$delete$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.delete$4$idToken$password(0, credentials.url + "/documents/" + documentId, credentials.token, idToken, password), $async$delete$4); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$delete$4, $async$completer); } }; U.ExpenseCategoryRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$ExpenseCategoryRepository(credentials, entityId); }, loadItem$body$ExpenseCategoryRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseCategoryEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/expense_categories/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryItemResponseSerializer(), response, type$.legacy_ExpenseCategoryItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$ExpenseCategoryRepository(credentials); }, loadList$body$ExpenseCategoryRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseCategoryEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/expense_categories?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryListResponseSerializer(), response, type$.legacy_ExpenseCategoryListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$ExpenseCategoryRepository(credentials, ids, action); }, bulkAction$body$ExpenseCategoryRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseCategoryEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/expense_categories/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseCategoryListResponseSerializer(), response, type$.legacy_ExpenseCategoryListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, expenseCategory) { return this.saveData$body$ExpenseCategoryRepository(credentials, expenseCategory); }, saveData$body$ExpenseCategoryRepository: function(credentials, expenseCategory) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseCategoryEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseCategoryEntitySerializer(), expenseCategory); t2 = credentials.url; t3 = credentials.token; $async$goto = expenseCategory.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/expense_categories", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/expense_categories/" + expenseCategory.id, t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseCategoryItemResponseSerializer(), response, type$.legacy_ExpenseCategoryItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; B.ExpenseRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$ExpenseRepository(credentials, entityId); }, loadItem$body$ExpenseRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/expenses/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$expenseItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$ExpenseRepository(credentials, createdAt, filterDeleted); }, loadList$body$ExpenseRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + ("/expenses?created_at=" + createdAt), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$expenseListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$ExpenseRepository(credentials, ids, action); }, bulkAction$body$ExpenseRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/expenses/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, expense) { return this.saveData$body$ExpenseRepository(credentials, expense); }, saveData$body$ExpenseRepository: function(credentials, expense) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseEntitySerializer(), expense); t2 = credentials.url; t3 = credentials.token; $async$goto = expense.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/expenses", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/expenses/" + expense.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$ExpenseRepository(credentials, entity, multipartFile); }, uploadDocument$body$ExpenseRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/expenses/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; E.GroupRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$GroupRepository(credentials, entityId); }, loadItem$body$GroupRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/group_settings/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$GroupRepository(credentials); }, loadList$body$GroupRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_GroupEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/group_settings?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupListResponseSerializer(), response, type$.legacy_GroupListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$GroupRepository(credentials, ids, action); }, bulkAction$body$GroupRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_GroupEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/group_settings/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$groupListResponseSerializer(), response, type$.legacy_GroupListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, group) { return this.saveData$body$GroupRepository(credentials, group); }, saveData$body$GroupRepository: function(credentials, group) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$groupEntitySerializer(), group); t2 = credentials.url; t3 = credentials.token; $async$goto = group.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/group_settings", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/group_settings/" + group.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$GroupRepository(credentials, entity, multipartFile); }, uploadDocument$body$GroupRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_GroupEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/group_settings/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; T.InvoiceRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$InvoiceRepository(credentials, entityId); }, loadItem$body$InvoiceRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/invoices/" + entityId + "?include=activities.history", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$InvoiceRepository(credentials, createdAt, filterDeleted); }, loadList$body$InvoiceRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/invoices?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$InvoiceRepository(credentials, ids, action); }, bulkAction$body$InvoiceRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/invoices/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$action: function(credentials, invoice, action) { return this.saveData$body$InvoiceRepository(credentials, invoice, action); }, saveData$body$InvoiceRepository: function(credentials, invoice, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3$action = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start invoice = invoice.rebuild$1(new T.InvoiceRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), invoice); t2 = credentials.url; url = invoice.get$isNew() ? t2 + "/invoices?include=activities.history" : t2 + "/invoices/" + invoice.id + "?include=activities.history"; if (action === C.EntityAction_markPaid) url += "&paid=true"; else if (action === C.EntityAction_markSent) url += "&mark_sent=true"; t2 = credentials.token; $async$goto = invoice.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$3$action, $async$completer); }, emailInvoice$5: function(credentials, invoice, template, subject, body) { return this.emailInvoice$body$InvoiceRepository(credentials, invoice, template, subject, body); }, emailInvoice$body$InvoiceRepository: function(credentials, invoice, template, subject, body) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, response; var $async$emailInvoice$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; data = P.LinkedHashMap_LinkedHashMap$_literal(["entity", H.S(invoice.entityType), "entity_id", invoice.id, "template", "email_template_" + H.S(template), "body", body, "subject", subject], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, C.C_JsonCodec.encode$1(data)), $async$emailInvoice$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$emailInvoice$5, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$InvoiceRepository(credentials, entity, multipartFile); }, uploadDocument$body$InvoiceRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/invoices/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; T.InvoiceRepository_saveData_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 11 }; L.PaymentRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$PaymentRepository(credentials, entityId); }, loadItem$body$PaymentRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/payments/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$paymentItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$PaymentRepository(credentials, createdAt, filterDeleted); }, loadList$body$PaymentRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_PaymentEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/payments?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$paymentListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$PaymentRepository(credentials, ids, action); }, bulkAction$body$PaymentRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_PaymentEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/payments/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentListResponseSerializer(), response, type$.legacy_PaymentListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$sendEmail: function(credentials, payment, sendEmail) { return this.saveData$body$PaymentRepository(credentials, payment, sendEmail); }, saveData$body$PaymentRepository: function(credentials, payment, sendEmail) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, url, t1, data, t2; var $async$saveData$3$sendEmail = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentEntitySerializer(), payment); t2 = credentials.url; $async$goto = payment.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/payments?email_receipt=" + H.S(sendEmail), credentials.token, C.C_JsonCodec.encode$1(data)), $async$saveData$3$sendEmail); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else url = t2 + "/payments/" + payment.id + "?"; if (sendEmail) url += "&email_receipt=true"; $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, url, credentials.token, C.C_JsonCodec.encode$1(data)), $async$saveData$3$sendEmail); case 7: // returning from await. response = $async$result; case 4: // join $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentItemResponseSerializer(), response, type$.legacy_PaymentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$3$sendEmail, $async$completer); }, refundPayment$2: function(credentials, payment) { return this.refundPayment$body$PaymentRepository(credentials, payment); }, refundPayment$body$PaymentRepository: function(credentials, payment) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_PaymentEntity), $async$returnValue, response, t1, data, url; var $async$refundPayment$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentEntitySerializer(), payment); url = credentials.url + "/payments/refund?"; if (payment.sendEmail === true) url += "&email_receipt=true"; if (payment.gatewayRefund === true) url += "&gateway_refund=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(url, credentials.token, C.C_JsonCodec.encode$1(data)), $async$refundPayment$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentItemResponseSerializer(), response, type$.legacy_PaymentItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$refundPayment$2, $async$completer); } }; V.PaymentTermRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$PaymentTermRepository(credentials, entityId); }, loadItem$body$PaymentTermRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_PaymentTermEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/payment_terms/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermItemResponseSerializer(), response, type$.legacy_PaymentTermItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$PaymentTermRepository(credentials); }, loadList$body$PaymentTermRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_PaymentTermEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/payment_terms?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermListResponseSerializer(), response, type$.legacy_PaymentTermListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$PaymentTermRepository(credentials, ids, action); }, bulkAction$body$PaymentTermRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_PaymentTermEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/payment_terms/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$paymentTermListResponseSerializer(), response, type$.legacy_PaymentTermListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, paymentTerm) { return this.saveData$body$PaymentTermRepository(credentials, paymentTerm); }, saveData$body$PaymentTermRepository: function(credentials, paymentTerm) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_PaymentTermEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$paymentTermEntitySerializer(), paymentTerm); t2 = credentials.url; t3 = credentials.token; $async$goto = paymentTerm.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/payment_terms", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/payment_terms/" + paymentTerm.id, t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$paymentTermItemResponseSerializer(), response, type$.legacy_PaymentTermItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; X.PersistenceRepository.prototype = { saveCompanyState$1: function(state) { return this.saveCompanyState$body$PersistenceRepository(state); }, saveCompanyState$body$PersistenceRepository: function(state) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveCompanyState$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.save$1(0, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$userCompanyStateSerializer(), state))), $async$saveCompanyState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveCompanyState$1, $async$completer); }, loadCompanyState$1: function(index) { return this.loadCompanyState$body$PersistenceRepository(index); }, loadCompanyState$body$PersistenceRepository: function(index) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserCompanyState), $async$returnValue, $async$self = this, data; var $async$loadCompanyState$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.load$0(0), $async$loadCompanyState$1); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userCompanyStateSerializer(), C.C_JsonCodec.decode$1(0, data), type$.legacy_UserCompanyState); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadCompanyState$1, $async$completer); }, saveAuthState$1: function(state) { return this.saveAuthState$body$PersistenceRepository(state); }, saveAuthState$body$PersistenceRepository: function(state) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveAuthState$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.save$1(0, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$authStateSerializer(), state))), $async$saveAuthState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveAuthState$1, $async$completer); }, loadAuthState$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_AuthState), $async$returnValue, $async$self = this, data, t1; var $async$loadAuthState$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.fileStorage; $async$goto = 6; return P._asyncAwait(t1.exists$0(), $async$loadAuthState$0); case 6: // returning from await. $async$goto = $async$result ? 3 : 5; break; case 3: // then $async$goto = 7; return P._asyncAwait(t1.load$0(0), $async$loadAuthState$0); case 7: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$authStateSerializer(), C.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_AuthState); // goto return $async$goto = 1; break; // goto join $async$goto = 4; break; case 5: // else throw H.wrapException("State does not exist on file"); case 4: // join case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadAuthState$0, $async$completer); }, saveStaticState$1: function(state) { return this.saveStaticState$body$PersistenceRepository(state); }, saveStaticState$body$PersistenceRepository: function(state) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveStaticState$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.save$1(0, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$staticStateSerializer(), state))), $async$saveStaticState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveStaticState$1, $async$completer); }, loadStaticState$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_StaticState), $async$returnValue, $async$self = this, data; var $async$loadStaticState$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.load$0(0), $async$loadStaticState$0); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$staticStateSerializer(), C.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_StaticState); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadStaticState$0, $async$completer); }, saveUIState$1: function(state) { return this.saveUIState$body$PersistenceRepository(state); }, saveUIState$body$PersistenceRepository: function(state) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_File), $async$returnValue, $async$self = this; var $async$saveUIState$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.save$1(0, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$uIStateSerializer(), state))), $async$saveUIState$1); case 3: // returning from await. $async$returnValue = $async$result; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveUIState$1, $async$completer); }, loadUIState$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UIState), $async$returnValue, $async$self = this, data; var $async$loadUIState$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.fileStorage.load$0(0), $async$loadUIState$0); case 3: // returning from await. data = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$uIStateSerializer(), C.C_JsonCodec.decode$1(0, data), type$.legacy_FutureOr_legacy_UIState); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadUIState$0, $async$completer); }, delete$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, t1; var $async$delete$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.fileStorage; $async$goto = 2; return P._asyncAwait(t1.exists$0(), $async$delete$0); case 2: // returning from await. if ($async$result) t1.delete$0(0); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$delete$0, $async$completer); } }; U.ProductRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$ProductRepository(credentials, entityId); }, loadItem$body$ProductRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/products/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$productItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$ProductRepository(credentials); }, loadList$body$ProductRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ProductEntity), $async$returnValue, response, t1; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/products?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$productListResponseSerializer(), response], t1, t1), $async$loadList$1); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$ProductRepository(credentials, ids, action); }, bulkAction$body$ProductRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ProductEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/products/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$productListResponseSerializer(), response, type$.legacy_ProductListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, product) { return this.saveData$body$ProductRepository(credentials, product); }, saveData$body$ProductRepository: function(credentials, product) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start product = product.rebuild$1(new U.ProductRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$productEntitySerializer(), product); t2 = credentials.url; t3 = credentials.token; $async$goto = product.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/products", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/products/" + product.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$productItemResponseSerializer(), response, type$.legacy_ProductItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$ProductRepository(credentials, entity, multipartFile); }, uploadDocument$body$ProductRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProductEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/products/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$productItemResponseSerializer(), response, type$.legacy_ProductItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; U.ProductRepository_saveData_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 170 }; X.ProjectRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$ProjectRepository(credentials, entityId); }, loadItem$body$ProjectRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/projects/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$projectItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$ProjectRepository(credentials, createdAt, filterDeleted); }, loadList$body$ProjectRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ProjectEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/projects?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$projectListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$ProjectRepository(credentials, ids, action); }, bulkAction$body$ProjectRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ProjectEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/projects/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$projectListResponseSerializer(), response, type$.legacy_ProjectListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, project) { return this.saveData$body$ProjectRepository(credentials, project); }, saveData$body$ProjectRepository: function(credentials, project) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$projectEntitySerializer(), project); t2 = credentials.url; t3 = credentials.token; $async$goto = project.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/projects", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/projects/" + project.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$projectItemResponseSerializer(), response, type$.legacy_ProjectItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$ProjectRepository(credentials, entity, multipartFile); }, uploadDocument$body$ProjectRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ProjectEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/projects/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$projectItemResponseSerializer(), response, type$.legacy_ProjectItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; U.QuoteRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$QuoteRepository(credentials, entityId); }, loadItem$body$QuoteRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/quotes/" + entityId + "?include=history,activities", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$QuoteRepository(credentials, createdAt, filterDeleted); }, loadList$body$QuoteRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, t1, url; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + ("/quotes?created_at=" + createdAt); if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$invoiceListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$QuoteRepository(credentials, ids, action); }, bulkAction$body$QuoteRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/quotes/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3: function(credentials, quote, action) { return this.saveData$body$QuoteRepository(credentials, quote, action); }, saveData$body$QuoteRepository: function(credentials, quote, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, t2, url, response; var $async$saveData$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start quote = quote.rebuild$1(new U.QuoteRepository_saveData_closure()); t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), quote); t2 = credentials.url; url = quote.get$isNew() ? t2 + "/quotes?include=history,activities" : t2 + "/quotes/" + quote.id + "?include=history,activities"; if (action === C.EntityAction_convertToInvoice) url += "&convert=true"; else if (action === C.EntityAction_markSent) url += "&mark_sent=true"; t2 = credentials.token; $async$goto = quote.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$3, $async$completer); }, emailQuote$5: function(credentials, quote, template, subject, body) { return this.emailQuote$body$QuoteRepository(credentials, quote, template, subject, body); }, emailQuote$body$QuoteRepository: function(credentials, quote, template, subject, body) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, data, response; var $async$emailQuote$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; data = P.LinkedHashMap_LinkedHashMap$_literal(["entity", H.S(quote.entityType), "entity_id", quote.id, "template", "email_template_" + H.S(template), "body", body, "subject", subject], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/emails", credentials.token, C.C_JsonCodec.encode$1(data)), $async$emailQuote$5); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$emailQuote$5, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$QuoteRepository(credentials, entity, multipartFile); }, uploadDocument$body$QuoteRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/quotes/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; U.QuoteRepository_saveData_closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$documents().get$_safeList()); return b; }, $signature: 11 }; A.RecurringExpenseRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$RecurringExpenseRepository(credentials, entityId); }, loadItem$body$RecurringExpenseRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/recurring_expenses/" + entityId + "?show_dates=true", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$RecurringExpenseRepository(credentials); }, loadList$body$RecurringExpenseRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_ExpenseEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/recurring_expenses?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$RecurringExpenseRepository(credentials, ids, action); }, bulkAction$body$RecurringExpenseRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_ExpenseEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/recurring_expenses/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseListResponseSerializer(), response, type$.legacy_ExpenseListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, recurringExpense) { return this.saveData$body$RecurringExpenseRepository(credentials, recurringExpense); }, saveData$body$RecurringExpenseRepository: function(credentials, recurringExpense) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$expenseEntitySerializer(), recurringExpense); t2 = credentials.url; t3 = credentials.token; $async$goto = recurringExpense.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/recurring_expenses?show_dates=true", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/recurring_expenses/" + recurringExpense.id + "?show_dates=true", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$RecurringExpenseRepository(credentials, entity, multipartFile); }, uploadDocument$body$RecurringExpenseRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_ExpenseEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/recurring_expenses/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$expenseItemResponseSerializer(), response, type$.legacy_ExpenseItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; N.RecurringInvoiceRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$RecurringInvoiceRepository(credentials, entityId); }, loadItem$body$RecurringInvoiceRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/recurring_invoices/" + entityId + string$.x3finclua, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$2: function(credentials, filterDeleted) { return this.loadList$body$RecurringInvoiceRepository(credentials, filterDeleted); }, loadList$body$RecurringInvoiceRepository: function(credentials, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_InvoiceEntity), $async$returnValue, response, url; var $async$loadList$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start url = credentials.url + "/recurring_invoices?include=invitations,documents,client.gateway_tokens,client.group_settings"; if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$2, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$RecurringInvoiceRepository(credentials, ids, action); }, bulkAction$body$RecurringInvoiceRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_InvoiceEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/recurring_invoices/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceListResponseSerializer(), response, type$.legacy_InvoiceListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$3$action: function(credentials, recurringInvoice, action) { return this.saveData$body$RecurringInvoiceRepository(credentials, recurringInvoice, action); }, saveData$body$RecurringInvoiceRepository: function(credentials, recurringInvoice, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, response, t1, data, t2, url; var $async$saveData$3$action = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$invoiceEntitySerializer(), recurringInvoice); t2 = credentials.url; url = recurringInvoice.get$isNew() ? t2 + "/recurring_invoices?include=activities,history&show_dates=true" : t2 + "/recurring_invoices/" + recurringInvoice.id + string$.x3finclua; if (action === C.EntityAction_start) url += "&start=true"; else if (action === C.EntityAction_stop) url += "&stop=true"; t2 = credentials.token; $async$goto = recurringInvoice.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, url, t2, C.C_JsonCodec.encode$1(data)), $async$saveData$3$action); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$3$action, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$RecurringInvoiceRepository(credentials, entity, multipartFile); }, uploadDocument$body$RecurringInvoiceRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_InvoiceEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/recurring_invoices/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$invoiceItemResponseSerializer(), response, type$.legacy_InvoiceItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; Y.SettingsRepository.prototype = { saveCompany$2: function(credentials, company) { return this.saveCompany$body$SettingsRepository(credentials, company); }, saveCompany$body$SettingsRepository: function(credentials, company) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_CompanyEntity), $async$returnValue, t1, data, response; var $async$saveCompany$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$companyEntitySerializer(), company); $async$goto = 3; return P._asyncAwait(C.C_WebClient.put$3$data(0, credentials.url + ("/companies/" + company.id), credentials.token, C.C_JsonCodec.encode$1(data)), $async$saveCompany$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveCompany$2, $async$completer); }, saveAuthUser$4: function(credentials, user, password, idToken) { return this.saveAuthUser$body$SettingsRepository(credentials, user, password, idToken); }, saveAuthUser$body$SettingsRepository: function(credentials, user, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, data, response; var $async$saveAuthUser$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); $async$goto = 3; return P._asyncAwait(C.C_WebClient.put$5$data$idToken$password(0, credentials.url + ("/users/" + user.id + "?include=company_user"), credentials.token, C.C_JsonCodec.encode$1(data), idToken, password), $async$saveAuthUser$4); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveAuthUser$4, $async$completer); }, connectOAuthUser$3: function(credentials, password, idToken) { return this.connectOAuthUser$body$SettingsRepository(credentials, password, idToken); }, connectOAuthUser$body$SettingsRepository: function(credentials, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, response; var $async$connectOAuthUser$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$5$data$idToken$password(credentials.url + "/connected_account?include=company_user", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "provider", "google"], t1, t1)), idToken, password), $async$connectOAuthUser$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$connectOAuthUser$3, $async$completer); }, connectGmailUser$4: function(credentials, password, idToken, serverAuthCode) { return this.connectGmailUser$body$SettingsRepository(credentials, password, idToken, serverAuthCode); }, connectGmailUser$body$SettingsRepository: function(credentials, password, idToken, serverAuthCode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, response; var $async$connectGmailUser$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$5$data$idToken$password(credentials.url + "/connected_account/gmail?include=company_user", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["id_token", idToken, "server_auth_code", serverAuthCode], t1, t1)), idToken, password), $async$connectGmailUser$4); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$connectGmailUser$4, $async$completer); }, saveUserSettings$2: function(credentials, user) { return this.saveUserSettings$body$SettingsRepository(credentials, user); }, saveUserSettings$body$SettingsRepository: function(credentials, user) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserCompanyEntity), $async$returnValue, t1, data, response; var $async$saveUserSettings$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); $async$goto = 3; return P._asyncAwait(C.C_WebClient.put$3$data(0, credentials.url + ("/company_users/" + user.id), credentials.token, C.C_JsonCodec.encode$1(data)), $async$saveUserSettings$2); case 3: // returning from await. response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userCompanyItemResponseSerializer(), response, type$.legacy_UserCompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveUserSettings$2, $async$completer); }, uploadLogo$4: function(credentials, entityId, multipartFile, type) { return this.uploadLogo$body$SettingsRepository(credentials, entityId, multipartFile, type); }, uploadLogo$body$SettingsRepository: function(credentials, entityId, multipartFile, type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BaseEntity), $async$returnValue, route, t1, response; var $async$uploadLogo$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (type === C.EntityType_company) route = "companies"; else route = type === C.EntityType_group ? "group_settings" : "clients"; t1 = type$.legacy_String; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/" + route + "/" + entityId, credentials.token, P.LinkedHashMap_LinkedHashMap$_literal(["_method", "PUT"], t1, t1), H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadLogo$4); case 3: // returning from await. response = $async$result; if (type === C.EntityType_client) { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$clientItemResponseSerializer(), response, type$.legacy_ClientItemResponse).data; // goto return $async$goto = 1; break; } else if (type === C.EntityType_group) { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$groupItemResponseSerializer(), response, type$.legacy_GroupItemResponse).data; // goto return $async$goto = 1; break; } else { $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadLogo$4, $async$completer); }, uploadDocument$3: function(credentials, company, multipartFile) { return this.uploadDocument$body$SettingsRepository(credentials, company, multipartFile); }, uploadDocument$body$SettingsRepository: function(credentials, company, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_CompanyEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/companies/" + company.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$companyItemResponseSerializer(), response, type$.legacy_CompanyItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); }, disableTwoFactor$3: function(credentials, password, idToken) { return this.disableTwoFactor$body$SettingsRepository(credentials, password, idToken); }, disableTwoFactor$body$SettingsRepository: function(credentials, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$disableTwoFactor$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$idToken$password(credentials.url + "/settings/disable_two_factor", credentials.token, idToken, password), $async$disableTwoFactor$3); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$disableTwoFactor$3, $async$completer); } }; L.SubscriptionRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$SubscriptionRepository(credentials, entityId); }, loadItem$body$SubscriptionRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_SubscriptionEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/subscriptions/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionItemResponseSerializer(), response, type$.legacy_SubscriptionItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$SubscriptionRepository(credentials); }, loadList$body$SubscriptionRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_SubscriptionEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/subscriptions?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionListResponseSerializer(), response, type$.legacy_SubscriptionListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$SubscriptionRepository(credentials, ids, action); }, bulkAction$body$SubscriptionRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_SubscriptionEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/subscriptions/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$subscriptionListResponseSerializer(), response, type$.legacy_SubscriptionListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, subscription) { return this.saveData$body$SubscriptionRepository(credentials, subscription); }, saveData$body$SubscriptionRepository: function(credentials, subscription) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_SubscriptionEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$subscriptionEntitySerializer(), subscription); t2 = credentials.url; t3 = credentials.token; $async$goto = subscription.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/subscriptions", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/subscriptions/" + subscription.id, t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$subscriptionItemResponseSerializer(), response, type$.legacy_SubscriptionItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; Y.TaskRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$TaskRepository(credentials, entityId); }, loadItem$body$TaskRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/tasks/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$taskItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$3: function(credentials, createdAt, filterDeleted) { return this.loadList$body$TaskRepository(credentials, createdAt, filterDeleted); }, loadList$body$TaskRepository: function(credentials, createdAt, filterDeleted) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaskEntity), $async$returnValue, response, t1; var $async$loadList$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + ("/tasks?created_at=" + createdAt), credentials.token), $async$loadList$3); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$taskListResponseSerializer(), response], t1, t1), $async$loadList$3); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$3, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$TaskRepository(credentials, ids, action); }, bulkAction$body$TaskRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaskEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/tasks/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taskListResponseSerializer(), response, type$.legacy_TaskListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, sortTasks$3: function(credentials, statusIds, taskIds) { return this.sortTasks$body$TaskRepository(credentials, statusIds, taskIds); }, sortTasks$body$TaskRepository: function(credentials, statusIds, taskIds) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$sortTasks$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/tasks/sort", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["status_ids", statusIds, "task_ids", taskIds], type$.legacy_String, type$.legacy_Object))), $async$sortTasks$3); case 3: // returning from await. $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$sortTasks$3, $async$completer); }, saveData$2: function(credentials, task) { return this.saveData$body$TaskRepository(credentials, task); }, saveData$body$TaskRepository: function(credentials, task) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taskEntitySerializer(), task); t2 = credentials.url; t3 = credentials.token; $async$goto = task.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/tasks", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/tasks/" + task.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taskItemResponseSerializer(), response, type$.legacy_TaskItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$TaskRepository(credentials, entity, multipartFile); }, uploadDocument$body$TaskRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaskEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/tasks/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskItemResponseSerializer(), response, type$.legacy_TaskItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; X.TaskStatusRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$TaskStatusRepository(credentials, entityId); }, loadItem$body$TaskStatusRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaskStatusEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/task_statuses/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusItemResponseSerializer(), response, type$.legacy_TaskStatusItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$TaskStatusRepository(credentials); }, loadList$body$TaskStatusRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaskStatusEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/task_statuses?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusListResponseSerializer(), response, type$.legacy_TaskStatusListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$TaskStatusRepository(credentials, ids, action); }, bulkAction$body$TaskStatusRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaskStatusEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/task_statuses/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taskStatusListResponseSerializer(), response, type$.legacy_TaskStatusListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, taskStatus) { return this.saveData$body$TaskStatusRepository(credentials, taskStatus); }, saveData$body$TaskStatusRepository: function(credentials, taskStatus) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaskStatusEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taskStatusEntitySerializer(), taskStatus); t2 = credentials.url; t3 = credentials.token; $async$goto = taskStatus.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/task_statuses", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/task_statuses/" + taskStatus.id, t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taskStatusItemResponseSerializer(), response, type$.legacy_TaskStatusItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; B.TaxRateRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$TaxRateRepository(credentials, entityId); }, loadItem$body$TaxRateRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaxRateEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/tax_rates/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateItemResponseSerializer(), response, type$.legacy_TaxRateItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$TaxRateRepository(credentials); }, loadList$body$TaxRateRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TaxRateEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/tax_rates?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateListResponseSerializer(), response, type$.legacy_TaxRateListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$TaxRateRepository(credentials, ids, action); }, bulkAction$body$TaxRateRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TaxRateEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/tax_rates/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$taxRateListResponseSerializer(), response, type$.legacy_TaxRateListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, taxRate) { return this.saveData$body$TaxRateRepository(credentials, taxRate); }, saveData$body$TaxRateRepository: function(credentials, taxRate) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TaxRateEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$taxRateEntitySerializer(), taxRate); t2 = credentials.url; t3 = credentials.token; $async$goto = taxRate.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/tax_rates", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/tax_rates/" + taxRate.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$taxRateItemResponseSerializer(), response, type$.legacy_TaxRateItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; A.TokenRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$TokenRepository(credentials, entityId); }, loadItem$body$TokenRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TokenEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/tokens/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenItemResponseSerializer(), response, type$.legacy_TokenItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$TokenRepository(credentials); }, loadList$body$TokenRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_TokenEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/tokens?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenListResponseSerializer(), response, type$.legacy_TokenListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$TokenRepository(credentials, ids, action); }, bulkAction$body$TokenRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_TokenEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/tokens/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$tokenListResponseSerializer(), response, type$.legacy_TokenListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$4: function(credentials, token, password, idToken) { return this.saveData$body$TokenRepository(credentials, token, password, idToken); }, saveData$body$TokenRepository: function(credentials, token, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_TokenEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$tokenEntitySerializer(), token); t2 = credentials.url; t3 = credentials.token; $async$goto = token.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$5$data$idToken$password(t2 + "/tokens", t3, C.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$5$data$idToken$password(0, t2 + "/tokens/" + token.id, t3, C.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$tokenItemResponseSerializer(), response, type$.legacy_TokenItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$4, $async$completer); } }; Q.UserRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$UserRepository(credentials, entityId); }, loadItem$body$UserRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/users/" + entityId + "?include=company_user", credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$UserRepository(credentials); }, loadList$body$UserRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_UserEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/users?include=company_user", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$5: function(credentials, ids, action, password, idToken) { return this.bulkAction$body$UserRepository(credentials, ids, action, password, idToken); }, bulkAction$body$UserRepository: function(credentials, ids, action, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, response, t1; var $async$bulkAction$5 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$5$data$idToken$password(credentials.url + "/users/bulk?include=company_user", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object)), idToken, password), $async$bulkAction$5); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$5, $async$completer); }, detachFromCompany$4: function(credentials, userId, password, idToken) { return this.detachFromCompany$body$UserRepository(credentials, userId, password, idToken); }, detachFromCompany$body$UserRepository: function(credentials, userId, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, response, t1; var $async$detachFromCompany$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.delete$4$idToken$password(0, credentials.url + ("/users/" + userId + "/detach_from_company"), credentials.token, idToken, password), $async$detachFromCompany$4); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$userListResponseSerializer(), response, type$.legacy_UserListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$detachFromCompany$4, $async$completer); }, resendInvite$4: function(credentials, userId, password, idToken) { return this.resendInvite$body$UserRepository(credentials, userId, password, idToken); }, resendInvite$body$UserRepository: function(credentials, userId, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_UserEntity), $async$returnValue, $async$temp1, $async$temp2, $async$temp3; var $async$resendInvite$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = P; $async$temp2 = "## invite: "; $async$temp3 = H; $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$idToken$password(credentials.url + ("/users/" + userId + "/invite"), credentials.token, idToken, password), $async$resendInvite$4); case 3: // returning from await. $async$temp1.print($async$temp2 + $async$temp3.S($async$result)); $async$returnValue = null; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$resendInvite$4, $async$completer); }, saveData$4: function(credentials, user, password, idToken) { return this.saveData$body$UserRepository(credentials, user, password, idToken); }, saveData$body$UserRepository: function(credentials, user, password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_UserEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$4 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$userEntitySerializer(), user); t2 = credentials.url; t3 = credentials.token; $async$goto = user.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$5$data$idToken$password(t2 + "/users?include=company_user", t3, C.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$5$data$idToken$password(0, t2 + ("/users/" + user.id + "?include=company_user"), t3, C.C_JsonCodec.encode$1(data), idToken, password), $async$saveData$4); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$userItemResponseSerializer(), response, type$.legacy_UserItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$4, $async$completer); } }; V.VendorRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$VendorRepository(credentials, entityId); }, loadItem$body$VendorRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, response, t1; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/vendors/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$vendorItemResponseSerializer(), response], t1, t1), $async$loadItem$2); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$VendorRepository(credentials); }, loadList$body$VendorRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_VendorEntity), $async$returnValue, response, t1; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/vendors?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; return P._asyncAwait(U._isolates_web__compute$closure().call$2$2(G.serialization0_SerializationUtils_computeDecode$closure(), [$.$get$_$vendorListResponseSerializer(), response], t1, t1), $async$loadList$1); case 4: // returning from await. $async$returnValue = $async$result.data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$VendorRepository(credentials, ids, action); }, bulkAction$body$VendorRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_VendorEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/vendors/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$vendorListResponseSerializer(), response, type$.legacy_VendorListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, vendor) { return this.saveData$body$VendorRepository(credentials, vendor); }, saveData$body$VendorRepository: function(credentials, vendor) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$vendorEntitySerializer(), vendor); t2 = credentials.url; t3 = credentials.token; $async$goto = vendor.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/vendors", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + ("/vendors/" + vendor.id), t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$vendorItemResponseSerializer(), response, type$.legacy_VendorItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); }, uploadDocument$3: function(credentials, entity, multipartFile) { return this.uploadDocument$body$VendorRepository(credentials, entity, multipartFile); }, uploadDocument$body$VendorRepository: function(credentials, entity, multipartFile) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_VendorEntity), $async$returnValue, t1, fields, response; var $async$uploadDocument$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["_method", "put"], t1, t1); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$4$data$multipartFiles(credentials.url + "/vendors/" + entity.id + "/upload", credentials.token, fields, H.setRuntimeTypeInfo([multipartFile], type$.JSArray_legacy_MultipartFile)), $async$uploadDocument$3); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$vendorItemResponseSerializer(), response, type$.legacy_VendorItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$uploadDocument$3, $async$completer); } }; G.WebhookRepository.prototype = { loadItem$2: function(credentials, entityId) { return this.loadItem$body$WebhookRepository(credentials, entityId); }, loadItem$body$WebhookRepository: function(credentials, entityId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_WebhookEntity), $async$returnValue, response; var $async$loadItem$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/webhooks/" + entityId, credentials.token), $async$loadItem$2); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookItemResponseSerializer(), response, type$.legacy_WebhookItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadItem$2, $async$completer); }, loadList$1: function(credentials) { return this.loadList$body$WebhookRepository(credentials); }, loadList$body$WebhookRepository: function(credentials) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_BuiltList_legacy_WebhookEntity), $async$returnValue, response; var $async$loadList$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.C_WebClient.$get$2(0, credentials.url + "/webhooks?", credentials.token), $async$loadList$1); case 3: // returning from await. response = $async$result; $async$returnValue = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookListResponseSerializer(), response, type$.legacy_WebhookListResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$loadList$1, $async$completer); }, bulkAction$3: function(credentials, ids, action) { return this.bulkAction$body$WebhookRepository(credentials, ids, action); }, bulkAction$body$WebhookRepository: function(credentials, ids, action) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_List_legacy_WebhookEntity), $async$returnValue, response, t1; var $async$bulkAction$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (ids.length > 100) ids = C.JSArray_methods.sublist$2(ids, 0, 100); $async$goto = 3; return P._asyncAwait(C.C_WebClient.post$3$data(credentials.url + "/webhooks/bulk", credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["ids", ids, "action", action.toApiParam$0()], type$.legacy_String, type$.legacy_Object))), $async$bulkAction$3); case 3: // returning from await. response = $async$result; t1 = $.$get$serializers().deserializeWith$1$2($.$get$_$webhookListResponseSerializer(), response, type$.legacy_WebhookListResponse).data; $async$returnValue = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$bulkAction$3, $async$completer); }, saveData$2: function(credentials, webhook) { return this.saveData$body$WebhookRepository(credentials, webhook); }, saveData$body$WebhookRepository: function(credentials, webhook) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_WebhookEntity), $async$returnValue, t1, data, t2, t3, response; var $async$saveData$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $.$get$serializers(); data = t1.serializeWith$2($.$get$_$webhookEntitySerializer(), webhook); t2 = credentials.url; t3 = credentials.token; $async$goto = webhook.get$isNew() ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(C.C_WebClient.post$3$data(t2 + "/webhooks", t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 6: // returning from await. // goto join $async$goto = 4; break; case 5: // else $async$goto = 7; return P._asyncAwait(C.C_WebClient.put$3$data(0, t2 + "/webhooks/" + webhook.id, t3, C.C_JsonCodec.encode$1(data)), $async$saveData$2); case 7: // returning from await. case 4: // join response = $async$result; $async$returnValue = t1.deserializeWith$1$2($.$get$_$webhookItemResponseSerializer(), response, type$.legacy_WebhookItemResponse).data; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$saveData$2, $async$completer); } }; F.WebClient.prototype = { $get$3$rawResponse: function(_, url, token, rawResponse) { return this.$get$body$WebClient(_, url, token, rawResponse); }, $get$2: function($receiver, url, token) { return this.$get$3$rawResponse($receiver, url, token, false); }, $get$body$WebClient: function(_, url, token, rawResponse) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$$get$3$rawResponse = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.contains$1(url, "?")) url += "?"; P.print("GET: " + url); url = C.JSString_methods.contains$1(url, "invoiceninja.com") ? url + "&per_page=5000" : url + "&per_page=999999"; client = new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return P._asyncAwait(client._sendUnstreamed$3("GET", P.Uri_parse(url, 0, null), F._getHeaders(url, token, null, null, null)), $async$$get$3$rawResponse); case 3: // returning from await. response = $async$result; client.close$0(0); if (rawResponse) { $async$returnValue = response; // goto return $async$goto = 1; break; } F._checkResponse(response); $async$returnValue = C.C_JsonCodec.decode$1(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$$get$3$rawResponse, $async$completer); }, post$8$data$idToken$multipartFiles$password$rawResponse$secret: function(url, token, data, idToken, multipartFiles, password, rawResponse, secret) { return this.post$body$WebClient(url, token, data, idToken, multipartFiles, password, rawResponse, secret); }, post$5$idToken$password$rawResponse: function(url, token, idToken, password, rawResponse) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, idToken, null, password, rawResponse, null); }, post$3$data: function(url, token, data) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, false, null); }, post$2: function(url, token) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, null, null, null, false, null); }, post$4$data$rawResponse: function(url, token, data, rawResponse) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, rawResponse, null); }, post$4$data$multipartFiles: function(url, token, data, multipartFiles) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, multipartFiles, null, false, null); }, post$3$multipartFiles: function(url, token, multipartFiles) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, null, multipartFiles, null, false, null); }, post$4$idToken$password: function(url, token, idToken, password) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, null, idToken, null, password, false, null); }, post$5$data$idToken$password: function(url, token, data, idToken, password) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, idToken, null, password, false, null); }, post$4$data$secret: function(url, token, data, secret) { return this.post$8$data$idToken$multipartFiles$password$rawResponse$secret(url, token, data, null, null, null, false, secret); }, post$body$WebClient: function(url, token, data, idToken, multipartFiles, password, rawResponse, secret) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, response, client, t1; var $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.contains$1(url, "?")) url += "?"; P.print("POST: " + url); $async$goto = multipartFiles != null ? 3 : 5; break; case 3: // then $async$goto = 6; return P._asyncAwait(F._uploadFiles(url, token, multipartFiles, data, "file", "POST"), $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret); case 6: // returning from await. response = $async$result; // goto join $async$goto = 4; break; case 5: // else client = new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); t1 = client._sendUnstreamed$5("POST", P.Uri_parse(url, 0, null), F._getHeaders(url, token, idToken, password, secret), data, null); $async$goto = 7; return P._asyncAwait(t1.timeout$1(0, P.Duration$(0, 0, 0, 0, 0, rawResponse ? 180 : 30)), $async$post$8$data$idToken$multipartFiles$password$rawResponse$secret); case 7: // returning from await. response = $async$result; client.close$0(0); case 4: // join if (rawResponse) { $async$returnValue = response; // goto return $async$goto = 1; break; } F._checkResponse(response); $async$returnValue = C.C_JsonCodec.decode$1(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$post$8$data$idToken$multipartFiles$password$rawResponse$secret, $async$completer); }, put$5$data$idToken$password: function(_, url, token, data, idToken, password) { return this.put$body$WebClient(_, url, token, data, idToken, password); }, put$3$data: function($receiver, url, token, data) { return this.put$5$data$idToken$password($receiver, url, token, data, null, null); }, put$body$WebClient: function(_, url, token, data, idToken, password) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$put$5$data$idToken$password = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.contains$1(url, "?")) url += "?"; P.print("PUT: " + url); client = new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return P._asyncAwait(client._sendUnstreamed$5("PUT", P.Uri_parse(url, 0, null), F._getHeaders(url, token, idToken, password, null), data, null), $async$put$5$data$idToken$password); case 3: // returning from await. response = $async$result; client.close$0(0); F._checkResponse(response); $async$returnValue = C.C_JsonCodec.decode$1(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$put$5$data$idToken$password, $async$completer); }, delete$5$data$idToken$password: function(_, url, token, data, idToken, password) { return this.delete$body$WebClient(_, url, token, data, idToken, password); }, delete$4$idToken$password: function($receiver, url, token, idToken, password) { return this.delete$5$data$idToken$password($receiver, url, token, null, idToken, password); }, delete$4$data$password: function($receiver, url, token, data, password) { return this.delete$5$data$idToken$password($receiver, url, token, data, null, password); }, delete$body$WebClient: function(_, url, token, data, idToken, password) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, client, response; var $async$delete$5$data$idToken$password = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.contains$1(url, "?")) url += "?"; P.print("Delete: " + url); client = new O.BrowserClient(P.LinkedHashSet_LinkedHashSet$_empty(type$.HttpRequest)); $async$goto = 3; return P._asyncAwait(client._sendUnstreamed$5("DELETE", P.Uri_parse(url, 0, null), F._getHeaders(url, token, idToken, password, null), data, null), $async$delete$5$data$idToken$password); case 3: // returning from await. response = $async$result; client.close$0(0); F._checkResponse(response); $async$returnValue = C.C_JsonCodec.decode$1(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(response.headers).parameters._collection$_map, "charset")).decode$1(0, response.bodyBytes)); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$delete$5$data$idToken$password, $async$completer); } }; F._parseError_closure.prototype = { call$2: function(field, errors) { J.forEach$1$ax(type$.legacy_List_dynamic._as(errors), new F._parseError__closure(this._box_0)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 780 }; F._parseError__closure.prototype = { call$1: function(error) { var t1 = this._box_0; return t1.message = J.$add$ansx(t1.message, "\n \u2022 " + H.S(error)); }, $signature: 10 }; F._initialState_closure.prototype = { call$1: function(b) { b.get$_pref_state$_$this()._showKanban = true; b.get$useSidebarEditor().$indexSet(0, C.EntityType_task, true); return b; }, $signature: 730 }; K.InvoiceNinjaApp.prototype = { createState$0: function() { return new K.InvoiceNinjaAppState(C._StateLifecycle_0); } }; K.InvoiceNinjaAppState.prototype = { _authenticate$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, e, exception, authenticated, $async$exception; var $async$_authenticate$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start authenticated = false; $async$handler = 3; $async$goto = 6; return P._asyncAwait(new L.LocalAuthentication().authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs(true, "Please authenticate to access the app", false, true), $async$_authenticate$0); case 6: // returning from await. authenticated = $async$result; $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = H.unwrapException($async$exception); P.print(e); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (authenticated) $async$self.setState$1(new K.InvoiceNinjaAppState__authenticate_closure($async$self)); // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_authenticate$0, $async$completer); }, initState$0: function() { this.super$State$initState(); L.WebUtils_warnChanges(this._widget.store); P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 300000, 0, 0), new K.InvoiceNinjaAppState_initState_closure(this)); }, didChangeDependencies$0: function() { var _this = this; if (_this._widget.store.get$_store$_state().prefState.requireAuthentication && !_this._authenticated) _this._authenticate$0(); _this.super$State$didChangeDependencies(); }, generateRoute$1: function(settings) { var t1 = type$.dynamic; switch (settings.name) { case "/login": return V.MaterialPageRoute$(new K.InvoiceNinjaAppState_generateRoute_closure(), null, t1); default: return V.MaterialPageRoute$(new K.InvoiceNinjaAppState_generateRoute_closure0(), null, t1); } }, build$1: function(_, context) { return new O.StoreProvider(this._widget.store, new A.WebSessionTimeout(new G.AppBuilder(new K.InvoiceNinjaAppState_build_closure(this), null), null), null, type$.StoreProvider_legacy_AppState); } }; K.InvoiceNinjaAppState__authenticate_closure.prototype = { call$0: function() { return this.$this._authenticated = true; }, $signature: 19 }; K.InvoiceNinjaAppState_initState_closure.prototype = { call$1: function(_) { var t1, t2, t3, store = this.$this._widget.store, state = store.get$_store$_state(); if (!state.authState.isAuthenticated) return; t1 = state.uiState; if (!t1.get$hasRecentActivity()) return; t2 = Date.now(); t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; if (t2 - J.$index$asx(t3._list, t1).lastUpdated > 300000) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 308 }; K.InvoiceNinjaAppState_generateRoute_closure.prototype = { call$1: function(_) { return new G.LoginScreen(null); }, $signature: 728 }; K.InvoiceNinjaAppState_generateRoute_closure0.prototype = { call$1: function(_) { return new X.MainScreen(null); }, $signature: 727 }; K.InvoiceNinjaAppState_build_closure.prototype = { call$1: function(context) { var locale, textButtonTheme, t2, t3, outlinedButtonTheme, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, _null = null, t1 = this.$this, state = t1._widget.store.get$_store$_state(), hasAccentColor = state.get$hasAccentColor(), accentColor = state.get$accentColor(), pageTransitionsTheme = new K.PageTransitionsTheme(P.LinkedHashMap_LinkedHashMap$_literal([C.TargetPlatform_0, new K.ZoomPageTransitionsBuilder()], type$.legacy_TargetPlatform, type$.legacy_PageTransitionsBuilder)); $._defaultLocale = U.localeSelector(state); locale = X.AppLocalization_createLocale(U.localeSelector(state)); textButtonTheme = U.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, new P.Size(88, 36), _null, new V.EdgeInsets(16, 0, 16, 0), _null, _null, C.RoundedRectangleBorder_a51, _null, _null, _null, _null, _null); t2 = state.prefState; t3 = t2.enableDarkMode; outlinedButtonTheme = B.OutlinedButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3 ? C.Color_4294967295 : C.Color_3707764736, _null, _null, _null, _null, _null, _null, _null); t4 = P.Duration$(0, 0, 0, 0, 0, 3); t5 = t3 ? C.Color_4294967295 : C.Color_4278190080; t6 = A.TextStyle$(_null, _null, t3 ? C.Color_3707764736 : C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; J.$index$asx(t7._list, t8).userCompany.toString; t7 = $.$get$navigatorKey(); t8 = type$.MappedListIterable_of_legacy_String_and_legacy_Locale; t8 = P.List_List$of(new H.MappedListIterable(C.List_Hn1, new K.InvoiceNinjaAppState_build__closure(), t8), true, t8._eval$1("ListIterable.E")); t9 = $.$get$HubAdapter__instance(); t9 = H.setRuntimeTypeInfo([new M.SentryNavigatorObserver(t9, P.LinkedHashMap_LinkedHashMap$_empty(type$.PageRoute_dynamic, type$.Set_RouteAware))], type$.JSArray_legacy_NavigatorObserver); t10 = H.setRuntimeTypeInfo([C.C_AppLocalizationsDelegate, C.C__GlobalCupertinoLocalizationsDelegate, C.C__WidgetsLocalizationsDelegate, C.C__MaterialLocalizationsDelegate], type$.JSArray_legacy_LocalizationsDelegate_dynamic); t2 = t2.requireAuthentication && !t1._authenticated ? new Z.LockScreen(t1.get$_authenticate(), _null) : new B.InitScreen(_null); if (t3) t3 = X.ThemeData_ThemeData(accentColor, _null, C.Color_4278190080, C.Color_4279966750, C.Brightness_0, accentColor, C.Color_4278190080, C.Color_4279966750, "Roboto", _null, accentColor, new U.OutlinedButtonThemeData(outlinedButtonTheme), pageTransitionsTheme, _null, C.Color_4278190080, _null, _null, _null, new T.TextButtonThemeData(textButtonTheme), new R.TextSelectionThemeData(_null, _null, accentColor), _null); else { t3 = hasAccentColor ? accentColor : C.Color_4279066001; t11 = hasAccentColor ? accentColor : C.Color_4284328948; t12 = hasAccentColor ? accentColor : C.Color_4279066001; t13 = hasAccentColor ? C.Color_4294967295 : C.Color_4278190080; t14 = hasAccentColor ? P.Color$fromARGB(166, 255, 255, 255) : P.Color$fromARGB(166, 0, 0, 0); t15 = hasAccentColor ? _null : accentColor; t16 = hasAccentColor ? accentColor : C.Color_4294967295; t17 = hasAccentColor ? C.Color_4294967295 : accentColor; t18 = K.Theme_of(context).textTheme; t19 = hasAccentColor ? C.Color_4294967295 : C.Color_4278190080; t14 = X.ThemeData_ThemeData(accentColor, V.AppBarTheme$(_null, _null, _null, C.Brightness_1, _null, t16, _null, _null, new T.IconThemeData(t17, _null, _null), _null, _null, R.TextTheme$(_null, _null, _null, _null, _null, _null, _null, _null, _null, t18.headline6.copyWith$1$color(t19), _null, _null, _null), _null, _null, _null), C.Color_4294967295, C.Color_4294967295, _null, t12, C.Color_4294967295, C.Color_4294967295, "Roboto", new T.IconThemeData(t15, _null, _null), accentColor, new U.OutlinedButtonThemeData(outlinedButtonTheme), pageTransitionsTheme, accentColor, t3, t11, C.Color_4293191915, new U.TabBarTheme(_null, _null, t13, _null, _null, t14, _null), new T.TextButtonThemeData(textButtonTheme), new R.TextSelectionThemeData(_null, accentColor, _null), _null); t3 = t14; } t1 = D.getLayout(context) === C.AppLayout_mobile ? _null : t1.get$generateRoute(); t11 = type$.legacy_String; t12 = type$.legacy_legacy_Widget_Function_legacy_BuildContext; return new M.StyledToast(new B.WebSocketRefresh(new S.MaterialApp(t7, t2, D.getLayout(context) === C.AppLayout_mobile ? P.LinkedHashMap_LinkedHashMap$_literal(["/login", new K.InvoiceNinjaAppState_build__closure0(), "/main", new K.InvoiceNinjaAppState_build__closure1(), "/dashboard", new K.InvoiceNinjaAppState_build__closure2(state), "/product", new K.InvoiceNinjaAppState_build__closure3(), "/product/view", new K.InvoiceNinjaAppState_build__closure4(), "/product/edit", new K.InvoiceNinjaAppState_build__closure5(), "/client", new K.InvoiceNinjaAppState_build__closure6(), "/client/view", new K.InvoiceNinjaAppState_build__closure7(), "/client/edit", new K.InvoiceNinjaAppState_build__closure8(), "/client/pdf", new K.InvoiceNinjaAppState_build__closure9(), "/invoice", new K.InvoiceNinjaAppState_build__closure10(), "/invoice/view", new K.InvoiceNinjaAppState_build__closure11(), "/invoice/edit", new K.InvoiceNinjaAppState_build__closure12(), "/invoice/email", new K.InvoiceNinjaAppState_build__closure13(), "/invoice/pdf", new K.InvoiceNinjaAppState_build__closure14(), "/document", new K.InvoiceNinjaAppState_build__closure15(), "/document/view", new K.InvoiceNinjaAppState_build__closure16(), "/document/edit", new K.InvoiceNinjaAppState_build__closure17(), "/expense", new K.InvoiceNinjaAppState_build__closure18(), "/expense/view", new K.InvoiceNinjaAppState_build__closure19(), "/expense/edit", new K.InvoiceNinjaAppState_build__closure20(), "/vendor", new K.InvoiceNinjaAppState_build__closure21(), "/vendor/view", new K.InvoiceNinjaAppState_build__closure22(), "/vendor/edit", new K.InvoiceNinjaAppState_build__closure23(), "/task", new K.InvoiceNinjaAppState_build__closure24(), "/task/view", new K.InvoiceNinjaAppState_build__closure25(), "/task/edit", new K.InvoiceNinjaAppState_build__closure26(), "/project", new K.InvoiceNinjaAppState_build__closure27(), "/project/view", new K.InvoiceNinjaAppState_build__closure28(), "/project/edit", new K.InvoiceNinjaAppState_build__closure29(), "/payment", new K.InvoiceNinjaAppState_build__closure30(), "/payment/view", new K.InvoiceNinjaAppState_build__closure31(), "/payment/edit", new K.InvoiceNinjaAppState_build__closure32(), "/payment/refund", new K.InvoiceNinjaAppState_build__closure33(), "/quote", new K.InvoiceNinjaAppState_build__closure34(), "/quote/view", new K.InvoiceNinjaAppState_build__closure35(), "/quote/edit", new K.InvoiceNinjaAppState_build__closure36(), "/quote/email", new K.InvoiceNinjaAppState_build__closure37(), "/quote/pdf", new K.InvoiceNinjaAppState_build__closure38(), "/recurring_expense", new K.InvoiceNinjaAppState_build__closure39(), "/recurring_expense/view", new K.InvoiceNinjaAppState_build__closure40(), "/recurring_expense/edit", new K.InvoiceNinjaAppState_build__closure41(), "/settings/subscriptions", new K.InvoiceNinjaAppState_build__closure42(), "/settings/subscriptions_view", new K.InvoiceNinjaAppState_build__closure43(), "/settings/subscriptions_edit", new K.InvoiceNinjaAppState_build__closure44(), "/settings/task_status", new K.InvoiceNinjaAppState_build__closure45(), "/settings/task_status_view", new K.InvoiceNinjaAppState_build__closure46(), "/settings/task_status_edit", new K.InvoiceNinjaAppState_build__closure47(), "/settings/expense_category", new K.InvoiceNinjaAppState_build__closure48(), "/settings/expense_category_view", new K.InvoiceNinjaAppState_build__closure49(), "/settings/expense_category_edit", new K.InvoiceNinjaAppState_build__closure50(), "/recurring_invoice", new K.InvoiceNinjaAppState_build__closure51(), "/recurring_invoice/view", new K.InvoiceNinjaAppState_build__closure52(), "/recurring_invoice/edit", new K.InvoiceNinjaAppState_build__closure53(), "/recurring_invoice/pdf", new K.InvoiceNinjaAppState_build__closure54(), "/settings/webhook", new K.InvoiceNinjaAppState_build__closure55(), "/settings/webhook_view", new K.InvoiceNinjaAppState_build__closure56(), "/settings/webhook_edit", new K.InvoiceNinjaAppState_build__closure57(), "/settings/tokens", new K.InvoiceNinjaAppState_build__closure58(), "/settings/token_view", new K.InvoiceNinjaAppState_build__closure59(), "/settings/token_edit", new K.InvoiceNinjaAppState_build__closure60(), "/settings/payment_terms", new K.InvoiceNinjaAppState_build__closure61(), "/settings/payment_term_edit", new K.InvoiceNinjaAppState_build__closure62(), "/settings/payment_term_view", new K.InvoiceNinjaAppState_build__closure63(), "/settings/custom_designs", new K.InvoiceNinjaAppState_build__closure64(), "/settings/custom_designs_view", new K.InvoiceNinjaAppState_build__closure65(), "/settings/custom_designs_edit", new K.InvoiceNinjaAppState_build__closure66(), "/credit", new K.InvoiceNinjaAppState_build__closure67(), "/credit/view", new K.InvoiceNinjaAppState_build__closure68(), "/credit/edit", new K.InvoiceNinjaAppState_build__closure69(), "/credit/email", new K.InvoiceNinjaAppState_build__closure70(), "/credit/pdf", new K.InvoiceNinjaAppState_build__closure71(), "/settings/user_management", new K.InvoiceNinjaAppState_build__closure72(), "/settings/user_management_view", new K.InvoiceNinjaAppState_build__closure73(), "/settings/user_management_edit", new K.InvoiceNinjaAppState_build__closure74(), "/settings/group_settings", new K.InvoiceNinjaAppState_build__closure75(), "/settings/group_settings_view", new K.InvoiceNinjaAppState_build__closure76(), "/settings/group_settings_edit", new K.InvoiceNinjaAppState_build__closure77(), "/settings", new K.InvoiceNinjaAppState_build__closure78(), "/reports", new K.InvoiceNinjaAppState_build__closure79(), "/settings/company_details", new K.InvoiceNinjaAppState_build__closure80(), "/settings/user_details", new K.InvoiceNinjaAppState_build__closure81(), "/settings/localization", new K.InvoiceNinjaAppState_build__closure82(), "/settings/online_payments", new K.InvoiceNinjaAppState_build__closure83(), "/settings/company_gateways", new K.InvoiceNinjaAppState_build__closure84(), "/settings/company_gateways_view", new K.InvoiceNinjaAppState_build__closure85(), "/settings/company_gateways_edit", new K.InvoiceNinjaAppState_build__closure86(), "/settings/tax_settings", new K.InvoiceNinjaAppState_build__closure87(), "/settings/tax_settings_rates", new K.InvoiceNinjaAppState_build__closure88(), "/settings/tax_settings_rates_view", new K.InvoiceNinjaAppState_build__closure89(), "/settings/tax_settings_rates_edit", new K.InvoiceNinjaAppState_build__closure90(), "/settings/product_settings", new K.InvoiceNinjaAppState_build__closure91(), "/settings/expense_settings", new K.InvoiceNinjaAppState_build__closure92(), "/settings/task_settings", new K.InvoiceNinjaAppState_build__closure93(), "/settings/import_export", new K.InvoiceNinjaAppState_build__closure94(), "/settings/device_settings", new K.InvoiceNinjaAppState_build__closure95(), "/settings/account_management", new K.InvoiceNinjaAppState_build__closure96(), "/settings/custom_fields", new K.InvoiceNinjaAppState_build__closure97(), "/settings/generated_numbers", new K.InvoiceNinjaAppState_build__closure98(), "/settings/workflow_settings", new K.InvoiceNinjaAppState_build__closure99(), "/settings/invoice_design", new K.InvoiceNinjaAppState_build__closure100(), "/settings/client_portal", new K.InvoiceNinjaAppState_build__closure101(), "/settings/buy_now_buttons", new K.InvoiceNinjaAppState_build__closure102(), "/settings/email_settings", new K.InvoiceNinjaAppState_build__closure103(), "/settings/templates_and_reminders", new K.InvoiceNinjaAppState_build__closure104(), "/settings/credit_cards_and_banks", new K.InvoiceNinjaAppState_build__closure105(), "/settings/data_visualizations", new K.InvoiceNinjaAppState_build__closure106()], t11, t12) : P.LinkedHashMap_LinkedHashMap$_empty(t11, t12), t1, t9, "Invoice Ninja", t3, locale, t10, t8, false, _null), _null), t5, t6, t4, locale, _null); }, $signature: 786 }; K.InvoiceNinjaAppState_build__closure.prototype = { call$1: function(locale) { return X.AppLocalization_createLocale(locale); }, $signature: 787 }; K.InvoiceNinjaAppState_build__closure0.prototype = { call$1: function(context) { return new G.LoginScreen(null); }, $signature: 728 }; K.InvoiceNinjaAppState_build__closure1.prototype = { call$1: function(context) { return new X.MainScreen(null); }, $signature: 727 }; K.InvoiceNinjaAppState_build__closure2.prototype = { call$1: function(context) { return new O.ChangeLayoutBanner(new Q.DashboardScreenBuilder(null), this.state.prefState.appLayout, C.AppLayout_mobile, null); }, $signature: 788 }; K.InvoiceNinjaAppState_build__closure3.prototype = { call$1: function(context) { return new E.ProductScreenBuilder(null); }, $signature: 789 }; K.InvoiceNinjaAppState_build__closure4.prototype = { call$1: function(context) { return new F.ProductViewScreen(null); }, $signature: 790 }; K.InvoiceNinjaAppState_build__closure5.prototype = { call$1: function(context) { return new S.ProductEditScreen(null); }, $signature: 791 }; K.InvoiceNinjaAppState_build__closure6.prototype = { call$1: function(context) { return new D.ClientScreenBuilder(null); }, $signature: 792 }; K.InvoiceNinjaAppState_build__closure7.prototype = { call$1: function(context) { return new X.ClientViewScreen(false, null); }, $signature: 793 }; K.InvoiceNinjaAppState_build__closure8.prototype = { call$1: function(context) { return new M.ClientEditScreen(null); }, $signature: 794 }; K.InvoiceNinjaAppState_build__closure9.prototype = { call$1: function(context) { return new V.ClientPdfScreen(null); }, $signature: 795 }; K.InvoiceNinjaAppState_build__closure10.prototype = { call$1: function(context) { return new E.InvoiceScreenBuilder(null); }, $signature: 796 }; K.InvoiceNinjaAppState_build__closure11.prototype = { call$1: function(context) { return new F.InvoiceViewScreen(false, null); }, $signature: 797 }; K.InvoiceNinjaAppState_build__closure12.prototype = { call$1: function(context) { return new M.InvoiceEditScreen(null); }, $signature: 798 }; K.InvoiceNinjaAppState_build__closure13.prototype = { call$1: function(context) { return new M.InvoiceEmailScreen(null); }, $signature: 799 }; K.InvoiceNinjaAppState_build__closure14.prototype = { call$1: function(context) { return new O.InvoicePdfScreen(true, null); }, $signature: 800 }; K.InvoiceNinjaAppState_build__closure15.prototype = { call$1: function(context) { return new U.DocumentScreenBuilder(null); }, $signature: 801 }; K.InvoiceNinjaAppState_build__closure16.prototype = { call$1: function(context) { return new A.DocumentViewScreen(null); }, $signature: 802 }; K.InvoiceNinjaAppState_build__closure17.prototype = { call$1: function(context) { return new E.DocumentEditScreen(null); }, $signature: 803 }; K.InvoiceNinjaAppState_build__closure18.prototype = { call$1: function(context) { return new U.ExpenseScreenBuilder(null); }, $signature: 804 }; K.InvoiceNinjaAppState_build__closure19.prototype = { call$1: function(context) { return new U.ExpenseViewScreen(null); }, $signature: 805 }; K.InvoiceNinjaAppState_build__closure20.prototype = { call$1: function(context) { return new O.ExpenseEditScreen(null); }, $signature: 806 }; K.InvoiceNinjaAppState_build__closure21.prototype = { call$1: function(context) { return new B.VendorScreenBuilder(null); }, $signature: 807 }; K.InvoiceNinjaAppState_build__closure22.prototype = { call$1: function(context) { return new F.VendorViewScreen(false, null); }, $signature: 808 }; K.InvoiceNinjaAppState_build__closure23.prototype = { call$1: function(context) { return new A.VendorEditScreen(null); }, $signature: 809 }; K.InvoiceNinjaAppState_build__closure24.prototype = { call$1: function(context) { return new Y.TaskScreenBuilder(null); }, $signature: 810 }; K.InvoiceNinjaAppState_build__closure25.prototype = { call$1: function(context) { return new L.TaskViewScreen(null); }, $signature: 811 }; K.InvoiceNinjaAppState_build__closure26.prototype = { call$1: function(context) { return new B.TaskEditScreen(null); }, $signature: 812 }; K.InvoiceNinjaAppState_build__closure27.prototype = { call$1: function(context) { return new S.ProjectScreenBuilder(null); }, $signature: 813 }; K.InvoiceNinjaAppState_build__closure28.prototype = { call$1: function(context) { return new D.ProjectViewScreen(false, null); }, $signature: 814 }; K.InvoiceNinjaAppState_build__closure29.prototype = { call$1: function(context) { return new G.ProjectEditScreen(null); }, $signature: 815 }; K.InvoiceNinjaAppState_build__closure30.prototype = { call$1: function(context) { return new G.PaymentScreenBuilder(null); }, $signature: 816 }; K.InvoiceNinjaAppState_build__closure31.prototype = { call$1: function(context) { return new F.PaymentViewScreen(false, null); }, $signature: 817 }; K.InvoiceNinjaAppState_build__closure32.prototype = { call$1: function(context) { return new B.PaymentEditScreen(null); }, $signature: 726 }; K.InvoiceNinjaAppState_build__closure33.prototype = { call$1: function(context) { return new Y.PaymentRefundScreen(null); }, $signature: 725 }; K.InvoiceNinjaAppState_build__closure34.prototype = { call$1: function(context) { return new B.QuoteScreenBuilder(null); }, $signature: 820 }; K.InvoiceNinjaAppState_build__closure35.prototype = { call$1: function(context) { return new O.QuoteViewScreen(false, null); }, $signature: 821 }; K.InvoiceNinjaAppState_build__closure36.prototype = { call$1: function(context) { return new B.QuoteEditScreen(null); }, $signature: 822 }; K.InvoiceNinjaAppState_build__closure37.prototype = { call$1: function(context) { return new B.QuoteEmailScreen(null); }, $signature: 823 }; K.InvoiceNinjaAppState_build__closure38.prototype = { call$1: function(context) { return new V.QuotePdfScreen(true, null); }, $signature: 824 }; K.InvoiceNinjaAppState_build__closure39.prototype = { call$1: function(context) { return new B.RecurringExpenseScreenBuilder(null); }, $signature: 825 }; K.InvoiceNinjaAppState_build__closure40.prototype = { call$1: function(context) { return new Z.RecurringExpenseViewScreen(null); }, $signature: 826 }; K.InvoiceNinjaAppState_build__closure41.prototype = { call$1: function(context) { return new M.RecurringExpenseEditScreen(null); }, $signature: 827 }; K.InvoiceNinjaAppState_build__closure42.prototype = { call$1: function(context) { return new L.SubscriptionScreenBuilder(null); }, $signature: 828 }; K.InvoiceNinjaAppState_build__closure43.prototype = { call$1: function(context) { return new E.SubscriptionViewScreen(false, null); }, $signature: 829 }; K.InvoiceNinjaAppState_build__closure44.prototype = { call$1: function(context) { return new R.SubscriptionEditScreen(null); }, $signature: 830 }; K.InvoiceNinjaAppState_build__closure45.prototype = { call$1: function(context) { return new U.TaskStatusScreenBuilder(null); }, $signature: 831 }; K.InvoiceNinjaAppState_build__closure46.prototype = { call$1: function(context) { return new T.TaskStatusViewScreen(false, null); }, $signature: 832 }; K.InvoiceNinjaAppState_build__closure47.prototype = { call$1: function(context) { return new Q.TaskStatusEditScreen(null); }, $signature: 833 }; K.InvoiceNinjaAppState_build__closure48.prototype = { call$1: function(context) { return new O.ExpenseCategoryScreenBuilder(null); }, $signature: 834 }; K.InvoiceNinjaAppState_build__closure49.prototype = { call$1: function(context) { return new L.ExpenseCategoryViewScreen(false, null); }, $signature: 835 }; K.InvoiceNinjaAppState_build__closure50.prototype = { call$1: function(context) { return new F.ExpenseCategoryEditScreen(null); }, $signature: 836 }; K.InvoiceNinjaAppState_build__closure51.prototype = { call$1: function(context) { return new A.RecurringInvoiceScreenBuilder(null); }, $signature: 837 }; K.InvoiceNinjaAppState_build__closure52.prototype = { call$1: function(context) { return new O.RecurringInvoiceViewScreen(false, null); }, $signature: 838 }; K.InvoiceNinjaAppState_build__closure53.prototype = { call$1: function(context) { return new Q.RecurringInvoiceEditScreen(null); }, $signature: 839 }; K.InvoiceNinjaAppState_build__closure54.prototype = { call$1: function(context) { return new X.RecurringInvoicePdfScreen(null); }, $signature: 840 }; K.InvoiceNinjaAppState_build__closure55.prototype = { call$1: function(context) { return new T.WebhookScreenBuilder(null); }, $signature: 841 }; K.InvoiceNinjaAppState_build__closure56.prototype = { call$1: function(context) { return new Y.WebhookViewScreen(null); }, $signature: 842 }; K.InvoiceNinjaAppState_build__closure57.prototype = { call$1: function(context) { return new F.WebhookEditScreen(null); }, $signature: 843 }; K.InvoiceNinjaAppState_build__closure58.prototype = { call$1: function(context) { return new K.TokenScreenBuilder(null); }, $signature: 844 }; K.InvoiceNinjaAppState_build__closure59.prototype = { call$1: function(context) { return new U.TokenViewScreen(null); }, $signature: 845 }; K.InvoiceNinjaAppState_build__closure60.prototype = { call$1: function(context) { return new R.TokenEditScreen(null); }, $signature: 846 }; K.InvoiceNinjaAppState_build__closure61.prototype = { call$1: function(context) { return new Z.PaymentTermScreenBuilder(null); }, $signature: 847 }; K.InvoiceNinjaAppState_build__closure62.prototype = { call$1: function(context) { return new Y.PaymentTermEditScreen(null); }, $signature: 848 }; K.InvoiceNinjaAppState_build__closure63.prototype = { call$1: function(context) { return new U.PaymentTermViewScreen(null); }, $signature: 849 }; K.InvoiceNinjaAppState_build__closure64.prototype = { call$1: function(context) { return new G.DesignScreenBuilder(null); }, $signature: 850 }; K.InvoiceNinjaAppState_build__closure65.prototype = { call$1: function(context) { return new B.DesignViewScreen(false, null); }, $signature: 851 }; K.InvoiceNinjaAppState_build__closure66.prototype = { call$1: function(context) { return new G.DesignEditScreen(null); }, $signature: 852 }; K.InvoiceNinjaAppState_build__closure67.prototype = { call$1: function(context) { return new R.CreditScreenBuilder(null); }, $signature: 853 }; K.InvoiceNinjaAppState_build__closure68.prototype = { call$1: function(context) { return new M.CreditViewScreen(false, null); }, $signature: 854 }; K.InvoiceNinjaAppState_build__closure69.prototype = { call$1: function(context) { return new X.CreditEditScreen(null); }, $signature: 855 }; K.InvoiceNinjaAppState_build__closure70.prototype = { call$1: function(context) { return new S.CreditEmailScreen(null); }, $signature: 856 }; K.InvoiceNinjaAppState_build__closure71.prototype = { call$1: function(context) { return new U.CreditPdfScreen(true, null); }, $signature: 857 }; K.InvoiceNinjaAppState_build__closure72.prototype = { call$1: function(context) { return new A.UserScreenBuilder(null); }, $signature: 858 }; K.InvoiceNinjaAppState_build__closure73.prototype = { call$1: function(context) { return new X.UserViewScreen(false, null); }, $signature: 859 }; K.InvoiceNinjaAppState_build__closure74.prototype = { call$1: function(context) { return new Y.UserEditScreen(null); }, $signature: 860 }; K.InvoiceNinjaAppState_build__closure75.prototype = { call$1: function(context) { return new S.GroupScreenBuilder(null); }, $signature: 861 }; K.InvoiceNinjaAppState_build__closure76.prototype = { call$1: function(context) { return new A.GroupViewScreen(false, null); }, $signature: 862 }; K.InvoiceNinjaAppState_build__closure77.prototype = { call$1: function(context) { return new A.GroupEditScreen(null); }, $signature: 863 }; K.InvoiceNinjaAppState_build__closure78.prototype = { call$1: function(context) { return new L.SettingsScreenBuilder(null); }, $signature: 864 }; K.InvoiceNinjaAppState_build__closure79.prototype = { call$1: function(context) { return new L.ReportsScreenBuilder(null); }, $signature: 865 }; K.InvoiceNinjaAppState_build__closure80.prototype = { call$1: function(context) { return new A.CompanyDetailsScreen(null); }, $signature: 866 }; K.InvoiceNinjaAppState_build__closure81.prototype = { call$1: function(context) { return new M.UserDetailsScreen(null); }, $signature: 867 }; K.InvoiceNinjaAppState_build__closure82.prototype = { call$1: function(context) { return new B.LocalizationScreen(null); }, $signature: 868 }; K.InvoiceNinjaAppState_build__closure83.prototype = { call$1: function(context) { return new B.OnlinePaymentsScreen(null); }, $signature: 869 }; K.InvoiceNinjaAppState_build__closure84.prototype = { call$1: function(context) { return new Y.CompanyGatewayScreenBuilder(null); }, $signature: 870 }; K.InvoiceNinjaAppState_build__closure85.prototype = { call$1: function(context) { return new A.CompanyGatewayViewScreen(false, null); }, $signature: 871 }; K.InvoiceNinjaAppState_build__closure86.prototype = { call$1: function(context) { return new L.CompanyGatewayEditScreen(null); }, $signature: 872 }; K.InvoiceNinjaAppState_build__closure87.prototype = { call$1: function(context) { return new A.TaxSettingsScreen(null); }, $signature: 873 }; K.InvoiceNinjaAppState_build__closure88.prototype = { call$1: function(context) { return new O.TaxRateScreenBuilder(null); }, $signature: 874 }; K.InvoiceNinjaAppState_build__closure89.prototype = { call$1: function(context) { return new R.TaxRateViewScreen(null); }, $signature: 875 }; K.InvoiceNinjaAppState_build__closure90.prototype = { call$1: function(context) { return new S.TaxRateEditScreen(null); }, $signature: 876 }; K.InvoiceNinjaAppState_build__closure91.prototype = { call$1: function(context) { return new G.ProductSettingsScreen(null); }, $signature: 877 }; K.InvoiceNinjaAppState_build__closure92.prototype = { call$1: function(context) { return new N.ExpenseSettingsScreen(null); }, $signature: 878 }; K.InvoiceNinjaAppState_build__closure93.prototype = { call$1: function(context) { return new F.TaskSettingsScreen(null); }, $signature: 879 }; K.InvoiceNinjaAppState_build__closure94.prototype = { call$1: function(context) { return new N.ImportExportScreen(null); }, $signature: 880 }; K.InvoiceNinjaAppState_build__closure95.prototype = { call$1: function(context) { return new L.DeviceSettingsScreen(null); }, $signature: 881 }; K.InvoiceNinjaAppState_build__closure96.prototype = { call$1: function(context) { return new A.AccountManagementScreen(null); }, $signature: 882 }; K.InvoiceNinjaAppState_build__closure97.prototype = { call$1: function(context) { return new M.CustomFieldsScreen(null); }, $signature: 883 }; K.InvoiceNinjaAppState_build__closure98.prototype = { call$1: function(context) { return new F.GeneratedNumbersScreen(null); }, $signature: 884 }; K.InvoiceNinjaAppState_build__closure99.prototype = { call$1: function(context) { return new Y.WorkflowSettingsScreen(null); }, $signature: 885 }; K.InvoiceNinjaAppState_build__closure100.prototype = { call$1: function(context) { return new B.InvoiceDesignScreen(null); }, $signature: 886 }; K.InvoiceNinjaAppState_build__closure101.prototype = { call$1: function(context) { return new A.ClientPortalScreen(null); }, $signature: 887 }; K.InvoiceNinjaAppState_build__closure102.prototype = { call$1: function(context) { return new B.BuyNowButtonsScreen(null); }, $signature: 888 }; K.InvoiceNinjaAppState_build__closure103.prototype = { call$1: function(context) { return new D.EmailSettingsScreen(null); }, $signature: 889 }; K.InvoiceNinjaAppState_build__closure104.prototype = { call$1: function(context) { return new F.TemplatesAndRemindersScreen(null); }, $signature: 890 }; K.InvoiceNinjaAppState_build__closure105.prototype = { call$1: function(context) { return new F.CreditCardsAndBanksScreen(null); }, $signature: 891 }; K.InvoiceNinjaAppState_build__closure106.prototype = { call$1: function(context) { return new M.DataVisualizationsScreen(null); }, $signature: 892 }; M.PersistData.prototype = {}; M.SwitchListTableLayout.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; M.PopLastHistory.prototype = {}; M.ViewMainScreen.prototype = {}; M.StartSaving.prototype = {}; M.StopSaving.prototype = {}; M.LoadStaticSuccess.prototype = {$isPersistStatic: 1}; M.ToggleEditorLayout.prototype = {$isPersistPrefs: 1}; M.TogglePreviewSidebar.prototype = {}; M.UpdateUserPreferences.prototype = {$isPersistPrefs: 1}; M.LoadAccountSuccess.prototype = {$isStopLoading: 1}; M.ResendConfirmation.prototype = {$isStartLoading: 1}; M.ResendConfirmationFailure.prototype = {$isStopLoading: 1}; M.ResendConfirmationSuccess.prototype = {$isStopLoading: 1}; M.RefreshData.prototype = {$isStartLoading: 1}; M.RefreshDataSuccess.prototype = {$isStopLoading: 1}; M.RefreshDataFailure.prototype = {$isStopLoading: 1}; M.PreviewEntity.prototype = {}; M.ClearPreviewStack.prototype = {}; M.PopPreviewStack.prototype = {}; M.PopFilterStack.prototype = {}; M.ClearData.prototype = {}; M.ClearLastError.prototype = {}; M.DiscardChanges.prototype = {}; M.ClearEntityFilter.prototype = {}; M.ClearEntitySelection.prototype = {}; M.FilterByEntity.prototype = {$isPersistUI: 1}; M.FilterCompany.prototype = {$isPersistUI: 1}; M.viewEntitiesByType_closure.prototype = { call$0: function() { var t2, t3, t4, t5, _this = this, _null = null, t1 = _this.filterEntity; if (t1 != null) { t2 = _this.uiState; t3 = t2.filterStack._list; t4 = J.getInterceptor$asx(t3); t5 = t4.get$isEmpty(t3) ? _null : t4.get$last(t3).get$entityType(); if (t5 == t1.get$entityType()) { if (t4.get$isEmpty(t3)) t3 = _null; else { t3 = t4.get$last(t3); t3 = t3.get$id(t3); } t3 = t3 !== t1.get$id(t1); } else t3 = true; if (t3) { t3 = _this.store; J.$index$asx(t3.get$_dispatchers(), 0).call$1(new M.ClearEntitySelection(_this.entityType)); J.$index$asx(t3.get$_dispatchers(), 0).call$1(new M.FilterByEntity(t1, false)); } t1 = t2; } else { t1 = _this.uiState; t2 = t1.filterStack._list; t3 = J.getInterceptor$asx(t2); if ((t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType()) != null) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearEntityFilter()); } if (J.get$isNotEmpty$asx(t1.previewStack._list)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearPreviewStack()); t1 = _this.store; if (t1.get$_store$_state().prefState.isPreviewVisible && t1.get$_store$_state().prefState.moduleLayout === C.ModuleLayout_table) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); switch (_this.entityType) { case C.EntityType_dashboard: _this._box_0.action = new G.ViewDashboard(false, _null); break; case C.EntityType_reports: _this._box_0.action = new K.ViewReports(); break; case C.EntityType_settings: t2 = t1.get$_store$_state(); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; _this._box_0.action = new L.ViewSettings(J.$index$asx(t3._list, t2).userCompany.company, _null, _null, _null, false, _null, true, _null); break; case C.EntityType_client: _this._box_0.action = new E.ViewClientList(); break; case C.EntityType_user: _this._box_0.action = new X.ViewUserList(); break; case C.EntityType_project: _this._box_0.action = new M.ViewProjectList(); break; case C.EntityType_taxRate: _this._box_0.action = new A.ViewTaxRateList(); break; case C.EntityType_companyGateway: _this._box_0.action = new Q.ViewCompanyGatewayList(); break; case C.EntityType_invoice: _this._box_0.action = new Q.ViewInvoiceList(); break; case C.EntityType_quote: _this._box_0.action = new E.ViewQuoteList(); break; case C.EntityType_vendor: _this._box_0.action = new L.ViewVendorList(); break; case C.EntityType_product: _this._box_0.action = new Z.ViewProductList(); break; case C.EntityType_task: _this._box_0.action = new U.ViewTaskList(); break; case C.EntityType_expense: _this._box_0.action = new T.ViewExpenseList(); break; case C.EntityType_payment: _this._box_0.action = new Q.ViewPaymentList(); break; case C.EntityType_group: _this._box_0.action = new Q.ViewGroupList(); break; case C.EntityType_recurringExpense: _this._box_0.action = new U.ViewRecurringExpenseList(); break; case C.EntityType_subscription: _this._box_0.action = new A.ViewSubscriptionList(); break; case C.EntityType_taskStatus: _this._box_0.action = new V.ViewTaskStatusList(); break; case C.EntityType_expenseCategory: _this._box_0.action = new X.ViewExpenseCategoryList(); break; case C.EntityType_recurringInvoice: _this._box_0.action = new N.ViewRecurringInvoiceList(); break; case C.EntityType_webhook: _this._box_0.action = new S.ViewWebhookList(); break; case C.EntityType_token: _this._box_0.action = new Q.ViewTokenList(); break; case C.EntityType_paymentTerm: _this._box_0.action = new D.ViewPaymentTermList(); break; case C.EntityType_design: _this._box_0.action = new N.ViewDesignList(); break; case C.EntityType_credit: _this._box_0.action = new E.ViewCreditList(); break; } t2 = _this._box_0.action; if (t2 != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); }, $signature: 1 }; M.viewEntityById_closure.prototype = { call$0: function() { var t1, t2, t3, t4, _this = this, _null = null; if (_this.addToStack) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.PreviewEntity(_this.entityId, _this.entityType)); return; } else { t1 = _this.state; if (J.get$isNotEmpty$asx(t1.uiState.previewStack._list)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearPreviewStack()); } t1 = t1.prefState; if (t1.appLayout === C.AppLayout_desktop && !t1.isPreviewVisible) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); t1 = _this.filterEntity; if (t1 != null) { t2 = _this.uiState.filterStack._list; t3 = J.getInterceptor$asx(t2); t4 = t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType(); if (t4 == t1.get$entityType()) { if (t3.get$isEmpty(t2)) t2 = _null; else { t2 = t3.get$last(t2); t2 = t2.get$id(t2); } t2 = t2 !== t1.get$id(t1); } else t2 = true; } else t2 = false; if (t2) { t2 = _this.store; J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.ClearEntitySelection(_this.entityType)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.FilterByEntity(t1, false)); } else { t1 = _this.uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); if ((t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) != null) { if (t2.get$isEmpty(t1)) t3 = _null; else { t3 = t2.get$last(t1); t3 = t3.get$id(t3); } if (t3 != _this.entityId) { t3 = t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType(); t3 = t3 == _this.entityType; } else t3 = false; } else t3 = false; if (t3) { t1 = t2.get$last(t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.FilterByEntity(t1, true)); } } t1 = _this.entityId; if (t1 != null && _this.showError && !J.containsKey$1$x(_this.store.get$_store$_state().getEntityMap$1(_this.entityType)._map$_map, t1)) { t1 = $.$get$navigatorKey(); t1.toString; t2 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "failed_to_find_record"); O.showErrorDialog(false, t1, t2 == null ? "" : t2); return; } switch (_this.entityType) { case C.EntityType_client: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.ViewClient(t1)); break; case C.EntityType_user: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.ViewUser(t1)); break; case C.EntityType_project: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ViewProject(t1)); break; case C.EntityType_taxRate: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.ViewTaxRate(t1)); break; case C.EntityType_companyGateway: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.ViewCompanyGateway(t1)); break; case C.EntityType_invoice: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.ViewInvoice(t1)); break; case C.EntityType_quote: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.ViewQuote(t1)); break; case C.EntityType_vendor: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.ViewVendor(t1)); break; case C.EntityType_product: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Z.ViewProduct(t1)); break; case C.EntityType_task: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.ViewTask(t1)); break; case C.EntityType_expense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new T.ViewExpense(t1)); break; case C.EntityType_payment: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.ViewPayment(t1)); break; case C.EntityType_group: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.ViewGroup(t1)); break; case C.EntityType_recurringExpense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.ViewRecurringExpense(t1)); break; case C.EntityType_subscription: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.ViewSubscription(t1)); break; case C.EntityType_taskStatus: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new V.ViewTaskStatus(t1)); break; case C.EntityType_expenseCategory: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.ViewExpenseCategory(t1)); break; case C.EntityType_recurringInvoice: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.ViewRecurringInvoice(t1)); break; case C.EntityType_webhook: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new S.ViewWebhook(t1)); break; case C.EntityType_token: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.ViewToken(t1)); break; case C.EntityType_paymentTerm: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new D.ViewPaymentTerm(t1)); break; case C.EntityType_design: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.ViewDesign(t1)); break; case C.EntityType_credit: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.ViewCredit(t1)); break; } }, $signature: 1 }; M.createEntityByType_closure.prototype = { call$0: function() { var t3, t4, filterEntityId, t5, filterEntityType, client, user, vendor, project, _this = this, _null = null, t1 = _this.state, t2 = t1.uiState; if (J.get$isNotEmpty$asx(t2.previewStack._list)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearPreviewStack()); t3 = t1.prefState; if (t3.appLayout === C.AppLayout_desktop && !t3.isEditorFullScreen$1(_this.entityType)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(_this.entityType)); t3 = t2.filterStack._list; t4 = J.getInterceptor$asx(t3); if (t4.get$isEmpty(t3)) filterEntityId = _null; else { t5 = t4.get$last(t3); filterEntityId = t5.get$id(t5); } filterEntityType = t4.get$isEmpty(t3) ? _null : t4.get$last(t3).get$entityType(); if (_this.applyFilter && filterEntityType != null) switch (filterEntityType) { case C.EntityType_client: t2 = t2.selectedCompanyIndex; client = J.$index$asx(t1.userCompanyStates._list, t2).clientState.$get$1(0, filterEntityId); user = _null; vendor = user; project = vendor; break; case C.EntityType_project: t2 = t2.selectedCompanyIndex; t3 = t1.userCompanyStates._list; t4 = J.getInterceptor$asx(t3); project = t4.$index(t3, t2).projectState.$get$1(0, filterEntityId); client = t4.$index(t3, t2).clientState.$get$1(0, project.clientId); user = _null; vendor = user; break; case C.EntityType_vendor: t2 = t2.selectedCompanyIndex; vendor = J.$index$asx(t1.userCompanyStates._list, t2).vendorState.$get$1(0, filterEntityId); user = _null; project = user; client = project; break; case C.EntityType_user: t2 = t2.selectedCompanyIndex; user = J.$index$asx(t1.userCompanyStates._list, t2).userState.$get$1(0, filterEntityId); vendor = _null; project = vendor; client = project; break; default: user = _null; vendor = user; project = vendor; client = project; } else { user = _null; vendor = user; project = vendor; client = project; } switch (_this.entityType) { case C.EntityType_client: t1 = T.ClientEntity_ClientEntity(_null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditClient(t1, _null, _null)); break; case C.EntityType_user: t1 = B.UserEntity_UserEntity(_null, t1, A.UserCompanyEntity_UserCompanyEntity(false)); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditUser(t1)); break; case C.EntityType_project: t1 = A.ProjectEntity_ProjectEntity(client, _null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.EditProject(t1, _null, _null)); break; case C.EntityType_taxRate: t1 = T.TaxRateEntity_TaxRateEntity(_null, _null, _null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditTaxRate(t1)); break; case C.EntityType_companyGateway: t1 = O.CompanyGatewayEntity_CompanyGatewayEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditCompanyGateway(t1)); break; case C.EntityType_invoice: t1 = Q.InvoiceEntity_InvoiceEntity(client, _null, _null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditInvoice(t1, _null)); break; case C.EntityType_quote: t1 = Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_quote, _null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditQuote(t1, _null)); break; case C.EntityType_vendor: t1 = B.VendorEntity_VendorEntity(_null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.EditVendor(t1, _null, _null)); break; case C.EntityType_product: t1 = A.ProductEntity_ProductEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Z.EditProduct(t1)); break; case C.EntityType_task: t1 = D.TaskEntity_TaskEntity(client, _null, project, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditTask(_null, t1)); break; case C.EntityType_expense: t1 = M.ExpenseEntity_ExpenseEntity(client, _null, _null, project, t1, user, vendor); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new T.EditExpense(t1)); break; case C.EntityType_payment: t1 = F.PaymentEntity_PaymentEntity(client, _null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditPayment(t1)); break; case C.EntityType_group: t1 = Q.GroupEntity_GroupEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditGroup(t1)); break; case C.EntityType_recurringExpense: t1 = M.ExpenseEntity_ExpenseEntity(client, C.EntityType_recurringExpense, _null, project, t1, user, vendor); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditRecurringExpense(t1)); break; case C.EntityType_subscription: t1 = X.SubscriptionEntity_SubscriptionEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditSubscription(t1)); break; case C.EntityType_taskStatus: t1 = S.TaskStatusEntity_TaskStatusEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new V.EditTaskStatus(t1)); break; case C.EntityType_expenseCategory: t1 = R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditExpenseCategory(t1)); break; case C.EntityType_recurringInvoice: t1 = Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_recurringInvoice, _null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditRecurringInvoice(t1)); break; case C.EntityType_webhook: t1 = E.WebhookEntity_WebhookEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new S.EditWebhook(t1)); break; case C.EntityType_token: t1 = D.TokenEntity_TokenEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditToken(t1)); break; case C.EntityType_paymentTerm: t1 = X.PaymentTermEntity_PaymentTermEntity(_null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new D.EditPaymentTerm(t1)); break; case C.EntityType_design: t1 = D.DesignEntity_DesignEntity(_null, _null, t1); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditDesign(t1)); break; case C.EntityType_credit: t1 = Q.InvoiceEntity_InvoiceEntity(client, C.EntityType_credit, _null, t1, user); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditCredit(t1)); break; } }, $signature: 1 }; M.createEntity_closure.prototype = { call$0: function() { var t2, t3, t4, _this = this, _null = null, t1 = _this.filterEntity; if (t1 != null) { t2 = _this.uiState.filterStack._list; t3 = J.getInterceptor$asx(t2); t4 = t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType(); if (t4 != t1.get$entityType()) { if (t3.get$isEmpty(t2)) t2 = _null; else { t2 = t3.get$last(t2); t2 = t2.get$id(t2); } t2 = t2 !== t1.get$id(t1); } else t2 = false; } else t2 = false; if (t2) M.filterByEntity(_this.context, t1); if (J.get$isNotEmpty$asx(_this.uiState.previewStack._list)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearPreviewStack()); t1 = _this.state.prefState; if (t1.appLayout === C.AppLayout_desktop && !t1.isEditorFullScreen$1(_this.entity.get$entityType())) { t1 = _this.entity.get$entityType(); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(t1)); } t1 = _this.entity; switch (t1.get$entityType()) { case C.EntityType_client: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditClient(t1, _this.completer, _this.cancelCompleter)); break; case C.EntityType_user: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditUser(t1)); break; case C.EntityType_project: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.EditProject(t1, _this.completer, _this.cancelCompleter)); break; case C.EntityType_taxRate: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditTaxRate(t1)); break; case C.EntityType_companyGateway: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditCompanyGateway(t1)); break; case C.EntityType_invoice: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditInvoice(t1, _null)); break; case C.EntityType_quote: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditQuote(t1, _null)); break; case C.EntityType_vendor: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.EditVendor(t1, _this.completer, _this.cancelCompleter)); break; case C.EntityType_product: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Z.EditProduct(t1)); break; case C.EntityType_task: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditTask(_null, t1)); break; case C.EntityType_expense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new T.EditExpense(t1)); break; case C.EntityType_payment: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditPayment(t1)); break; case C.EntityType_group: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditGroup(t1)); break; case C.EntityType_recurringExpense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditRecurringExpense(t1)); break; case C.EntityType_subscription: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditSubscription(t1)); break; case C.EntityType_taskStatus: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new V.EditTaskStatus(t1)); break; case C.EntityType_expenseCategory: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditExpenseCategory(t1)); break; case C.EntityType_recurringInvoice: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditRecurringInvoice(t1)); break; case C.EntityType_webhook: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new S.EditWebhook(t1)); break; case C.EntityType_token: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditToken(t1)); break; case C.EntityType_paymentTerm: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new D.EditPaymentTerm(t1)); break; case C.EntityType_design: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditDesign(t1)); break; case C.EntityType_credit: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditCredit(t1)); break; } }, $signature: 1 }; M.editEntity_closure.prototype = { call$0: function() { var invoice, t3, client, t4, t5, _this = this, _null = null, t1 = _this.state, t2 = t1.prefState; if (t2.appLayout === C.AppLayout_desktop && !t2.isEditorFullScreen$1(_this.entityType)) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(_this.entityType)); switch (_this.entityType) { case C.EntityType_client: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditClient(_this.entity, _this.completer, _null)); break; case C.EntityType_user: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditUser(_this.entity)); break; case C.EntityType_project: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.EditProject(_this.entity, _this.completer, _null)); break; case C.EntityType_taxRate: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditTaxRate(_this.entity)); break; case C.EntityType_companyGateway: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditCompanyGateway(_this.entity)); break; case C.EntityType_invoice: invoice = type$.legacy_InvoiceEntity._as(_this.entity); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); client = t3.$index(t2, t1).clientState.$get$1(0, invoice.clientId); t4 = client.settings; t5 = t3.$index(t2, t1).groupState.$get$1(0, client.groupId).settings; t1 = G.SettingsEntity_SettingsEntity(t4, t3.$index(t2, t1).userCompany.company.settings, t5).lockInvoices; if (t1 === "when_paid" && invoice.statusId === "4") { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "paid_invoices_are_locked"); if (t1 == null) t1 = ""; O.showMessageDialog(_this.context, t1, _null); } else if (t1 === "when_sent" && invoice.statusId !== "1") { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "sent_invoices_are_locked"); if (t1 == null) t1 = ""; O.showMessageDialog(_this.context, t1, _null); } else J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditInvoice(invoice, _this.subIndex)); break; case C.EntityType_quote: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditQuote(_this.entity, _this.subIndex)); break; case C.EntityType_vendor: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.EditVendor(_this.entity, _this.completer, _null)); break; case C.EntityType_product: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Z.EditProduct(_this.entity)); break; case C.EntityType_task: t1 = type$.legacy_TaskEntity._as(_this.entity); t1 = t1.rebuild$1(new M.editEntity__closure(t1)); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditTask(_this.subIndex, t1)); break; case C.EntityType_expense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new T.EditExpense(_this.entity)); break; case C.EntityType_payment: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditPayment(_this.entity)); break; case C.EntityType_group: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditGroup(_this.entity)); break; case C.EntityType_recurringExpense: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.EditRecurringExpense(_this.entity)); break; case C.EntityType_subscription: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new A.EditSubscription(_this.entity)); break; case C.EntityType_taskStatus: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new V.EditTaskStatus(_this.entity)); break; case C.EntityType_expenseCategory: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.EditExpenseCategory(_this.entity)); break; case C.EntityType_recurringInvoice: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditRecurringInvoice(_this.entity)); break; case C.EntityType_webhook: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new S.EditWebhook(_this.entity)); break; case C.EntityType_token: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.EditToken(_this.entity)); break; case C.EntityType_paymentTerm: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new D.EditPaymentTerm(_this.entity)); break; case C.EntityType_design: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.EditDesign(_this.entity)); break; case C.EntityType_credit: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.EditCredit(_this.entity)); break; } }, $signature: 1 }; M.editEntity__closure.prototype = { call$1: function(b) { var t1 = type$.legacy_TaskEntity._as(this.entity).get$isRunning(); b.get$_task_model$_$this()._showAsRunning = t1; return b; }, $signature: 46 }; M.checkForChanges_closure.prototype = { call$1: function(dialogContext) { var t1 = L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$errorUnsavedChanges(); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "continue_editing"); if (t1 == null) t1 = ""; return E.MessageDialog$(t2, t1, new M.checkForChanges__closure(this.store, this.callback), null); }, $signature: 314 }; M.checkForChanges__closure.prototype = { call$0: function() { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.DiscardChanges()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ResetSettings()); this.callback.call$0(); }, $signature: 1 }; K._createLoadState_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_createLoadState_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createLoadState_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, state, prefs, appVersion, i, prefState, i0, companyState, appState, $navigator, routes, error, token, prefs0, completer, t1, t2, t3, t4, t5, exception, token0, _box_0, action, $async$exception, $async$exception1, $async$temp1; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start _box_0 = {}; action = type$.legacy_LoadStateRequest._as(dynamicAction); $async$handler = 3; state = store.get$_store$_state(); $async$goto = 6; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 6: // returning from await. prefs = $async$result; appVersion = H._asStringQ(J.$index$asx(prefs._preferenceCache, "app_version")); prefs._setValue$3("String", "app_version", "5.0.62"); if (!J.$eq$(appVersion, "5.0.62")) { $async$self.authRepository.delete$0(0); $async$self.uiRepository.delete$0(0); $async$self.staticRepository.delete$0(0); for (i = 0, t1 = $async$self.companyRepositories; i < 10; ++i) t1[i].delete$0(0); throw H.wrapException("New app version - clearing state"); } prefState = state.prefState; t1 = $async$self._box_1; $async$temp1 = t1; $async$goto = 7; return P._asyncAwait($async$self.authRepository.loadAuthState$0(), $async$call$3); case 7: // returning from await. $async$temp1.authState = $async$result; $async$temp1 = t1; $async$goto = 8; return P._asyncAwait($async$self.uiRepository.loadUIState$0(), $async$call$3); case 8: // returning from await. $async$temp1.uiState = $async$result; $async$temp1 = t1; $async$goto = 9; return P._asyncAwait($async$self.staticRepository.loadStaticState$0(), $async$call$3); case 9: // returning from await. $async$temp1.staticState = $async$result; i0 = 0, t2 = $async$self.companyStates, t3 = $async$self.companyRepositories; case 10: // for condition if (!(i0 < 10)) { // goto after for $async$goto = 12; break; } t4 = state; t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; t4 = J.$index$asx(t5._list, t4).userCompany.account; t4 = t4 == null ? null : t4.reportErrors; companyState = B.UserCompanyState_UserCompanyState(t4 === true); $async$handler = 14; $async$goto = 17; return P._asyncAwait(t3[i0].loadCompanyState$1(i0), $async$call$3); case 17: // returning from await. companyState = $async$result; $async$handler = 3; // goto after finally $async$goto = 16; break; case 14: // catch $async$handler = 13; $async$exception = $async$currentError; H.unwrapException($async$exception); // goto after finally $async$goto = 16; break; case 13: // uncaught // goto catch $async$goto = 3; break; case 16: // after finally t2.push(companyState); case 11: // for update ++i0; // goto for condition $async$goto = 10; break; case 12: // after for if (state.uiState.currentRoute !== "/login") t1.uiState = t1.uiState.rebuild$1(new K._createLoadState__closure(state)); t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; appState = T.AppState_AppState(null, prefState, null, J.$index$asx(t4._list, t3).userCompany.account.reportErrors, null).rebuild$1(new K._createLoadState__closure0(t1, t2)); action.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.LoadStateSuccess(appState)); t2 = store.get$_store$_state(); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = J.$index$asx(t3._list, t2).userCompany.company.isLarge; t3 = $.Zone__current; t4 = type$._Future_Null; t5 = type$._AsyncCompleter_Null; if (t2) { t2 = new P._Future(t3, t4); t2.catchError$1(new K._createLoadState__closure1(store)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClients(new P._AsyncCompleter(t2, t5))); } else { t2 = new P._Future(t3, t4); t2.then$1$1(0, new K._createLoadState__closure2(), type$.Null).catchError$1(new K._createLoadState__closure3(store)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t2, t5), false, false, false)); } t1 = t1.uiState.currentRoute; if (t1 !== "/login" && t1.length !== 0) { $navigator = $.$get$navigatorKey().get$currentState(); routes = K._getRoutes(appState); if (appState.prefState.appLayout === C.AppLayout_mobile) { _box_0.isFirst = true; J.forEach$1$ax(routes, new K._createLoadState__closure4(_box_0, $navigator)); } else { if (J.get$length$asx(routes) === 0 || J.get$last$ax(routes) === "/dashboard") J.$index$asx(store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); else { t1 = J.get$last$ax(routes); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.ViewMainScreen()); } } else { t1 = "Unknown page: " + t1; throw H.wrapException(t1); } $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception1 = $async$currentError; error = H.unwrapException($async$exception1); P.print("## ERROR (app_middleware - load state): " + H.S(error)); token = null; $async$goto = Y.cleanApiUrl(store.get$_store$_state().authState.url) === "https://demo.invoiceninja.com" ? 18 : 20; break; case 18: // then token = "TOKEN"; // goto join $async$goto = 19; break; case 20: // else $async$goto = 21; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 21: // returning from await. prefs0 = $async$result; token0 = H._asStringQ(J.$index$asx(prefs0._preferenceCache, "checksum")); token = token0 == null ? "" : token0; if (J.get$length$asx(token) !== 0) token = D.TokenEntity_unobscureToken(token); case 19: // join t1 = token; t1.toString; if (J.get$length$asx(t1) !== 0) { completer = new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_Null), type$._AsyncCompleter_Null); completer.future.then$1$1(0, new K._createLoadState__closure5(action, store), type$.Null).catchError$1(new K._createLoadState__closure6(store)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, true, false, false)); } else J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.UserLogout()); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally next.call$1(action); // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; K._createLoadState__closure.prototype = { call$1: function(b) { var t1 = this.state.uiState.currentRoute; b.get$_ui_state$_$this()._currentRoute = t1; return b; }, $signature: 724 }; K._createLoadState__closure0.prototype = { call$1: function(b) { var _s5_ = "other", t1 = b.get$authState(), t2 = this._box_1, t3 = t2.authState; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._$v = t3; t1 = b.get$uiState(); t3 = t2.uiState; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._ui_state$_$v = t3; t1 = b.get$staticState(); t2 = t2.staticState; if (t2 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._static_state$_$v = t2; b.get$userCompanyStates().replace$1(0, this.companyStates); return b; }, $signature: 213 }; K._createLoadState__closure1.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 3 }; K._createLoadState__closure2.prototype = { call$1: function(value) { var t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 3 }; K._createLoadState__closure3.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 3 }; K._createLoadState__closure4.prototype = { call$1: function(route) { var t1 = this._box_0, t2 = this.navigator, t3 = type$.legacy_Object; if (t1.isFirst) t2.pushReplacementNamed$2$1(route, t3, t3); else t2.pushNamed$1$1(route, t3); t1.isFirst = false; }, $signature: 7 }; K._createLoadState__closure5.prototype = { call$1: function(_) { var t3, _null = null, t1 = this.action.context, t2 = this.store; if (D.calculateLayout(t1) === C.AppLayout_mobile) { t3 = M.UpdateUserPreferences$(C.AppLayout_mobile, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(t2.get$_dispatchers(), 0).call$1(t3); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new K._createLoadState___closure(t2)); } else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.ViewMainScreen()); t1.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 3 }; K._createLoadState___closure.prototype = { call$1: function(duration) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); }, $signature: 45 }; K._createLoadState__closure6.prototype = { call$1: function(error) { P.print("## ERROR (app_middleware - refresh): " + H.S(error)); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 3 }; K._getRoutes_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; K._getRoutes_closure0.prototype = { call$1: function(part) { var t1, t2, exception, _this = this; if (part === "edit") { t1 = _this._box_0; t2 = _this.state.getUIState$1(t1.entityType); t2 = t2 == null ? null : t2.get$isCreatingNew(); if (t2 === true) t1.route += "/edit"; else if (t1.entityType !== C.EntityType_product) t1.route += "/view"; } else { if (!C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["main", "dashboard", "settings"], type$.JSArray_legacy_String), part) && _this._box_0.entityType == null) try { _this._box_0.entityType = T._$typeValueOf(part); } catch (exception) { H.unwrapException(exception); } t1 = _this._box_0; t1.route = t1.route + C.JSString_methods.$add("/", part); } _this.routes.push(t1.route); }, $signature: 7 }; K._createUserLoggedIn_closure.prototype = { call$3: function(store, dynamicAction, next) { var state, t1, t2, t3, i, _this = this; next.call$1(type$.legacy_UserLoginSuccess._as(dynamicAction)); state = store.get$_store$_state(); _this.authRepository.saveAuthState$1(state.authState); _this.uiRepository.saveUIState$1(state.uiState); _this.staticRepository.saveStaticState$1(state.staticState); if (state.prefState.persistData) for (t1 = state.userCompanyStates._list, t2 = J.getInterceptor$asx(t1), t3 = _this.companyRepositories, i = 0; i < t2.get$length(t1); ++i) t3[i].saveCompanyState$1(t2.$index(t1, i)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createPersistData_closure.prototype = { call$3: function(store, dynamicAction, next) { var state, index, companyState; next.call$1(type$.legacy_PersistData._as(dynamicAction)); state = store.get$_store$_state(); index = state.uiState.selectedCompanyIndex; companyState = J.$index$asx(state.userCompanyStates._list, index); if (state.prefState.persistData) this.companyRepositories[index].saveCompanyState$1(companyState); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createPersistUI_closure.prototype = { call$3: function(store, dynamicAction, next) { next.call$1(type$.legacy_PersistUI._as(dynamicAction)); this.uiRepository.saveUIState$1(store.get$_store$_state().uiState); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createPersistPrefs_closure.prototype = { call$3: function(store, dynamicAction, next) { var string; next.call$1(type$.legacy_PersistPrefs._as(dynamicAction)); string = $.$get$serializers().serializeWith$2($.$get$_$prefStateSerializer(), store.get$_store$_state().prefState); V.SharedPreferences_getInstance().then$1$1(0, new K._createPersistPrefs__closure(string), type$.legacy_bool); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createPersistPrefs__closure.prototype = { call$1: function(prefs) { return prefs._setValue$3("String", "shared_prefs", C.C_JsonCodec.encode$1(this.string)); }, $signature: 899 }; K._createAccountLoaded_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_createAccountLoaded_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createAccountLoaded_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], selectedCompanyIndex, i, userCompany, prefs, error, t1, t2, exception, action, response, loadedStaticData, $async$exception; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start action = type$.legacy_LoadAccountSuccess._as(dynamicAction); response = action.loginResponse; loadedStaticData = J.get$isNotEmpty$asx(response.$static.currencies._list); if (loadedStaticData) { t1 = response.$static; J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.LoadStaticSuccess(t1)); } selectedCompanyIndex = 0; $async$handler = 3; P.print("## Account Loaded: " + H.S(J.get$length$asx(response.userCompanies._list))); i = 0; case 6: // for condition if (!(i < Math.min(H.checkNum(J.get$length$asx(response.userCompanies._list)), 10))) { // goto after for $async$goto = 8; break; } t1 = response.userCompanies; t2 = i; userCompany = J.$index$asx(t1._list, t2); $async$goto = J.$eq$(i, 0) ? 9 : 10; break; case 9: // then $async$goto = 11; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 11: // returning from await. prefs = $async$result; t1 = userCompany.token.token; t1 = C.C_Utf8Codec.get$encoder().convert$1(t1); prefs._setValue$3("String", "checksum", C.C_Base64Codec.get$encoder().convert$1(t1)); case 10: // join t1 = i; t2 = store.__Store__dispatchers; J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t2, 0).call$1(new E.SelectCompany(t1, loadedStaticData)); t1 = store.__Store__dispatchers; J.$index$asx(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t1, 0).call$1(new E.LoadCompanySuccess(userCompany)); t1 = store.__Store__state; if (t1 === $) t1 = H.throwExpression(H.LateError$fieldNI("_state")); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.account.defaultCompanyId === userCompany.company.id) selectedCompanyIndex = i; case 7: // for update ++i; // goto for condition $async$goto = 6; break; case 8: // after for $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = H.unwrapException($async$exception); action.completer.completeError$1(error); throw $async$exception; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally t1 = selectedCompanyIndex; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SelectCompany(t1, loadedStaticData)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.UserLoginSuccess()); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).lastUpdated; if (t1 <= 0) if (J.get$isNotEmpty$asx(response.userCompanies._list)) if (J.get$length$asx(response.userCompanies._list) > selectedCompanyIndex) { t1 = response.userCompanies; t2 = selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).company.isLarge; t1 = t2; } else t1 = false; else t1 = false; else t1 = false; if (t1) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClients(null)); action.toString; action.completer.complete$1(0, null); next.call$1(action); // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; K._createDataRefreshed_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_createDataRefreshed_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createDataRefreshed_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], userCompany, i, userCompany0, prefs, error, t1, t2, exception, action, response, loadedStaticData, selectedCompanyIndex, $async$exception; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start action = type$.legacy_RefreshDataSuccess._as(dynamicAction); response = action.data; loadedStaticData = J.get$isNotEmpty$asx(response.$static.currencies._list); selectedCompanyIndex = store.get$_store$_state().uiState.selectedCompanyIndex; if (loadedStaticData) { t1 = response.$static; J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.LoadStaticSuccess(t1)); } $async$handler = 3; $async$goto = J.get$length$asx(response.userCompanies._list) === 1 ? 6 : 8; break; case 6: // then userCompany = J.get$first$ax(response.userCompanies._list); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadCompanySuccess(userCompany)); // goto join $async$goto = 7; break; case 8: // else i = 0; case 9: // for condition if (!(i < Math.min(H.checkNum(J.get$length$asx(response.userCompanies._list)), 10))) { // goto after for $async$goto = 11; break; } t1 = response.userCompanies; t2 = i; userCompany0 = J.$index$asx(t1._list, t2); $async$goto = J.$eq$(i, 0) ? 12 : 13; break; case 12: // then $async$goto = 14; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 14: // returning from await. prefs = $async$result; t1 = userCompany0.token.token; t1 = C.C_Utf8Codec.get$encoder().convert$1(t1); prefs._setValue$3("String", "checksum", C.C_Base64Codec.get$encoder().convert$1(t1)); case 13: // join t1 = i; t2 = store.__Store__dispatchers; J.$index$asx(t2 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t2, 0).call$1(new E.SelectCompany(t1, loadedStaticData)); t1 = store.__Store__dispatchers; J.$index$asx(t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t1, 0).call$1(new E.LoadCompanySuccess(userCompany0)); case 10: // for update ++i; // goto for condition $async$goto = 9; break; case 11: // after for if (store.get$_store$_state().uiState.selectedCompanyIndex !== selectedCompanyIndex) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SelectCompany(selectedCompanyIndex, true)); case 7: // join $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = H.unwrapException($async$exception); t1 = action.completer; if (t1 != null) t1.completeError$1(error); throw $async$exception; // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.PersistData()); if (action.completer != null) action.completer.complete$1(0, null); next.call$1(action); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.company.isLarge) { t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).lastUpdated; t1 = t1 <= 0; } else t1 = false; if (t1) J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClients(null)); // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; K._createPersistStatic_closure.prototype = { call$3: function(store, dynamicAction, next) { next.call$1(type$.legacy_PersistStatic._as(dynamicAction)); this.staticRepository.saveStaticState$1(store.get$_store$_state().staticState); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createDeleteState_closure.prototype = { call$3: function(store, action, next) { return this.$call$body$_createDeleteState_closure(store, action, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createDeleteState_closure: function(store, action, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, prefs; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.authRepository.delete$0(0); $async$self.uiRepository.delete$0(0); $async$self.staticRepository.delete$0(0); C.JSArray_methods.forEach$1($async$self.companyRepositories, new K._createDeleteState__closure()); $async$goto = 2; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 2: // returning from await. prefs = $async$result; prefs.remove$1(0, "checksum"); prefs.remove$1(0, "url"); next.call$1(action); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; K._createDeleteState__closure.prototype = { call$1: function(repo) { return repo.delete$0(0); }, $signature: 900 }; K._createViewMainScreen_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1; type$.legacy_ViewMainScreen._as(dynamicAction); if (store.get$_store$_state().uiState.currentRoute === "/login") J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/dashboard")); for (; t1 = $.$get$navigatorKey(), t1.get$currentState().canPop$0();) t1.get$currentState().pop$0(0); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new K._createViewMainScreen__closure()); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; K._createViewMainScreen__closure.prototype = { call$1: function(duration) { $.$get$navigatorKey().get$currentState().pushNamed$1$1("/main", type$.legacy_Object); }, $signature: 45 }; G.appReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$authState(), t2 = this.state, t3 = t2.authState.rebuild$1(new G.appReducer__closure()); t1._$v = t3; b.get$_$this()._isTesting = t2.isTesting; return b; }, $signature: 213 }; G.appReducer__closure.prototype = { call$1: function(b) { b.get$_auth_state$_$this()._isAuthenticated = false; b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, $signature: 134 }; G.appReducer_closure0.prototype = { call$1: function(b) { b.get$_$this()._isLoading = false; b.get$_$this()._isSaving = false; return b; }, $signature: 213 }; G.appReducer_closure1.prototype = { call$1: function(b) { var t1 = b.get$userCompanyStates(), t2 = this.state, t3 = t2.uiState.selectedCompanyIndex; t2 = B.UserCompanyState_UserCompanyState(J.$index$asx(t2.userCompanyStates._list, t3).userCompany.account.reportErrors); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t3, t2); return b; }, $signature: 213 }; G.appReducer_closure2.prototype = { call$1: function(b) { var t4, t5, t6, t7, t8, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$loadingReducer().call$2(t1.isLoading, t2); b.get$_$this()._isLoading = t3; t3 = $.$get$savingReducer().call$2(t1.isSaving, t2); b.get$_$this()._isSaving = t3; t3 = $.$get$lastErrorReducer().call$2(t1.lastError, t2); b.get$_$this()._lastError = t3; t3 = b.get$authState(); t4 = $.$get$authReducer().call$2(t1.authState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._$v = t4; t3 = b.get$staticState(); t4 = $.$get$staticReducer().call$2(t1.staticState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._static_state$_$v = t4; t3 = b.get$userCompanyStates(); t4 = t1.uiState; t5 = t4.selectedCompanyIndex; t6 = t1.userCompanyStates._list; t7 = J.getInterceptor$asx(t6); t8 = T.companyReducer(t7.$index(t6, t5), t2); if (!$.$get$isSoundMode() && !t3.$ti._precomputed1._is(null)) if (t8 == null) H.throwExpression(P.ArgumentError$("null element")); J.$indexSet$ax(t3.get$_safeList(), t5, t8); t3 = b.get$uiState(); t4 = D.uiReducer(t4, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._ui_state$_$v = t4; t3 = b.get$prefState(); t5 = Y.prefReducer(t1.prefState, t2, t7.$index(t6, t5).userCompany.company.id); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._pref_state$_$v = t5; return b; }, $signature: 213 }; G.lastErrorReducer_closure.prototype = { call$2: function(state, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 902 }; G.lastErrorReducer_closure0.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 903 }; G.lastErrorReducer_closure1.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 904 }; G.lastErrorReducer_closure2.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 905 }; G.lastErrorReducer_closure3.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 906 }; G.lastErrorReducer_closure4.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 907 }; G.lastErrorReducer_closure5.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 908 }; G.lastErrorReducer_closure6.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 909 }; G.lastErrorReducer_closure7.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 910 }; G.lastErrorReducer_closure8.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 911 }; G.lastErrorReducer_closure9.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 912 }; G.lastErrorReducer_closure10.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 913 }; G.lastErrorReducer_closure11.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 914 }; G.lastErrorReducer_closure12.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 915 }; G.lastErrorReducer_closure13.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 916 }; G.lastErrorReducer_closure14.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 917 }; G.lastErrorReducer_closure15.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 918 }; G.lastErrorReducer_closure16.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 919 }; G.lastErrorReducer_closure17.prototype = { call$2: function(state, action) { return H.S(action.error); }, "call*": "call$2", $requiredArgCount: 2, $signature: 920 }; G.lastErrorReducer_closure18.prototype = { call$2: function(state, action) { return action.error; }, "call*": "call$2", $requiredArgCount: 2, $signature: 921 }; T.AppState.prototype = { get$company: function() { var t1 = this.uiState.selectedCompanyIndex; return J.$index$asx(this.userCompanyStates._list, t1).userCompany.company; }, get$companies: function() { var t1, t2, list = H.setRuntimeTypeInfo([], type$.JSArray_legacy_CompanyEntity); for (t1 = J.get$iterator$ax(this.userCompanyStates._list); t1.moveNext$0();) { t2 = t1.get$current(t1).userCompany.company; if (t2 != null) list.push(t2); } t1 = type$.WhereIterable_legacy_CompanyEntity; return P.List_List$of(new H.WhereIterable(list, new T.AppState_companies_closure(), t1), true, t1._eval$1("Iterable.E")); }, get$user: function() { var t1 = this.uiState.selectedCompanyIndex; return J.$index$asx(this.userCompanyStates._list, t1).userCompany.user; }, get$credentials: function(_) { var t1 = this.uiState.selectedCompanyIndex; return new T.Credentials(this.authState.url, J.$index$asx(this.userCompanyStates._list, t1).userCompany.token.token); }, get$hasAccentColor: function() { var t1, color, _this = this; if (Y.cleanApiUrl(_this.authState.url) === "https://demo.invoiceninja.com") return true; t1 = _this.uiState.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).userCompany; t1 = t1 == null ? null : t1.settings; color = t1 == null ? null : t1.accentColor; if (color == null) color = ""; if (color === "#ffffff" && !_this.prefState.enableDarkMode) return false; return color.length !== 0; }, get$headerTextColor: function() { return this.prefState.enableDarkMode || this.get$hasAccentColor() ? E.convertHexStringToColor("#FFFFFF") : E.convertHexStringToColor("#000000"); }, get$accentColor: function() { var color, t1 = this.uiState.selectedCompanyIndex; t1 = J.$index$asx(this.userCompanyStates._list, t1).userCompany; t1 = t1 == null ? null : t1.settings; color = t1 == null ? null : t1.accentColor; if (color == null) color = "#2F7DC3"; return E.convertHexStringToColor(color === "#ffffff" && !this.prefState.enableDarkMode ? "#000000" : color); }, get$appVersion: function(_) { var version, t1 = this.uiState.selectedCompanyIndex; t1 = J.$index$asx(this.userCompanyStates._list, t1).userCompany.account; t1 = t1 == null ? null : t1.currentVersion; version = "v" + (t1 == null ? "" : t1); if (version.length !== 0) version += "-"; return C.JSString_methods.$add(version + D.getPlatformLetter(), C.JSArray_methods.get$last("5.0.62".split("."))); }, get$historyList: function() { var _this = this, t1 = _this.prefState.companyPrefs, t2 = _this.uiState.selectedCompanyIndex; t2 = J.$index$asx(_this.userCompanyStates._list, t2).userCompany.company.id; t2 = J.where$1$ax(J.$index$asx(t1._map$_map, t2).historyList._list, new T.AppState_historyList_closure(_this)); return P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); }, get$unfilteredHistoryList: function() { var t1 = this.prefState.companyPrefs, t2 = this.uiState.selectedCompanyIndex; t2 = J.$index$asx(this.userCompanyStates._list, t2).userCompany.company.id; t2 = J.$index$asx(t1._map$_map, t2).historyList; return new Q.CopyOnWriteList(true, t2._list, H._instanceType(t2)._eval$1("CopyOnWriteList<1>")); }, shouldSelectEntity$2$entityList$entityType: function(entityList, entityType) { var _this = this, entityUIState = _this.getUIState$1(entityType), t1 = _this.prefState; if (t1.appLayout !== C.AppLayout_mobile) if (t1.isPreviewVisible) if (!_this.uiState.get$isEditing()) if (!entityType.get$isSetting()) if (J.get$isEmpty$asx(entityList)) { t1 = entityUIState.get$selectedId(); t1 = (t1 == null ? "" : t1).length === 0; } else t1 = false; else t1 = true; else t1 = true; else t1 = true; else t1 = true; if (t1) return false; t1 = entityUIState.get$selectedId(); if ((t1 == null ? "" : t1).length === 0 || !J.contains$1$asx(entityList, entityUIState.get$selectedId())) return true; else { if (J.get$isNotEmpty$asx(_this.get$unfilteredHistoryList()._copy_on_write_list$_list)) { t1 = _this.uiState; t1 = !t1.get$isEditing() && !C.JSString_methods.endsWith$1(t1.currentRoute, "/email") && J.get$first$ax(_this.get$unfilteredHistoryList()._copy_on_write_list$_list).entityType !== entityType; } else t1 = false; if (t1) return null; } return false; }, getEntity$2: function(type, id) { var map = this.getEntityMap$1(type); return map != null ? J.$index$asx(map._map$_map, id) : null; }, getEntityMap$1: function(type) { var t1, _this = this; switch (type) { case C.EntityType_product: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).productState.map; case C.EntityType_client: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).clientState.map; case C.EntityType_invoice: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).invoiceState.map; case C.EntityType_recurringExpense: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).recurringExpenseState.map; case C.EntityType_subscription: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).subscriptionState.map; case C.EntityType_taskStatus: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).taskStatusState.map; case C.EntityType_expenseCategory: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).expenseCategoryState.map; case C.EntityType_recurringInvoice: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).recurringInvoiceState.map; case C.EntityType_webhook: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).webhookState.map; case C.EntityType_token: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).tokenState.map; case C.EntityType_paymentTerm: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).paymentTermState.map; case C.EntityType_design: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).designState.map; case C.EntityType_credit: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).creditState.map; case C.EntityType_user: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).userState.map; case C.EntityType_taxRate: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).taxRateState.map; case C.EntityType_companyGateway: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).companyGatewayState.map; case C.EntityType_group: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).groupState.map; case C.EntityType_document: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).documentState.map; case C.EntityType_expense: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).expenseState.map; case C.EntityType_vendor: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).vendorState.map; case C.EntityType_task: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).taskState.map; case C.EntityType_project: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).projectState.map; case C.EntityType_payment: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).paymentState.map; case C.EntityType_quote: t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).quoteState.map; case C.EntityType_paymentType: return _this.staticState.paymentTypeMap; case C.EntityType_currency: return _this.staticState.currencyMap; case C.EntityType_country: return _this.staticState.countryMap; case C.EntityType_language: return _this.staticState.languageMap; case C.EntityType_industry: return _this.staticState.industryMap; case C.EntityType_size: return _this.staticState.sizeMap; case C.EntityType_gateway: return _this.staticState.gatewayMap; case C.EntityType_dateFormat: return _this.staticState.dateFormatMap; case C.EntityType_timezone: return _this.staticState.timezoneMap; case C.EntityType_dashboard: case C.EntityType_reports: case C.EntityType_settings: return null; default: P.print("## ERROR: getEntityMap " + H.S(type) + " not found"); return null; } }, getUISelection$1: function(type) { var t4, entityUIState = this.getUIState$1(type), t1 = entityUIState.get$forceSelected() === true ? entityUIState.get$selectedId() : null, t2 = this.uiState.filterStack._list, t3 = J.getInterceptor$asx(t2); if (t3.get$isEmpty(t2)) t4 = null; else { t4 = t3.get$last(t2); t4 = t4.get$id(t4); } return new T.SelectionState(t1, t4, t3.get$isEmpty(t2) ? null : t3.get$last(t2).get$entityType()); }, getUIState$1: function(type) { var _this = this; switch (type) { case C.EntityType_product: return _this.uiState.productUIState; case C.EntityType_client: return _this.uiState.clientUIState; case C.EntityType_invoice: return _this.uiState.invoiceUIState; case C.EntityType_recurringExpense: return _this.uiState.recurringExpenseUIState; case C.EntityType_subscription: return _this.uiState.subscriptionUIState; case C.EntityType_taskStatus: return _this.uiState.taskStatusUIState; case C.EntityType_expenseCategory: return _this.uiState.expenseCategoryUIState; case C.EntityType_recurringInvoice: return _this.uiState.recurringInvoiceUIState; case C.EntityType_webhook: return _this.uiState.webhookUIState; case C.EntityType_token: return _this.uiState.tokenUIState; case C.EntityType_paymentTerm: return _this.uiState.paymentTermUIState; case C.EntityType_design: return _this.uiState.designUIState; case C.EntityType_credit: return _this.uiState.creditUIState; case C.EntityType_user: return _this.uiState.userUIState; case C.EntityType_taxRate: return _this.uiState.taxRateUIState; case C.EntityType_companyGateway: return _this.uiState.companyGatewayUIState; case C.EntityType_group: return _this.uiState.groupUIState; case C.EntityType_document: return _this.uiState.documentUIState; case C.EntityType_expense: return _this.uiState.expenseUIState; case C.EntityType_vendor: return _this.uiState.vendorUIState; case C.EntityType_task: return _this.uiState.taskUIState; case C.EntityType_project: return _this.uiState.projectUIState; case C.EntityType_payment: return _this.uiState.paymentUIState; case C.EntityType_quote: return _this.uiState.quoteUIState; default: return null; } }, hasChanges$0: function() { var t3, _this = this, t1 = _this.uiState, t2 = t1.currentRoute; switch (t2) { case "/client/edit": t2 = t1.clientUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).clientState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/product/edit": t2 = t1.productUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).productState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/invoice/edit": t2 = t1.invoiceUIState.editing; t1 = t1.selectedCompanyIndex; return Z.hasInvoiceChanges(t2, J.$index$asx(_this.userCompanyStates._list, t1).invoiceState.map); case "/payment/edit": t2 = t1.paymentUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).paymentState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/quote/edit": t2 = t1.quoteUIState.editing; t1 = t1.selectedCompanyIndex; return Y.hasQuoteChanges(t2, J.$index$asx(_this.userCompanyStates._list, t1).quoteState.map); case "/project/edit": t2 = t1.projectUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).projectState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/task/edit": t2 = t1.taskUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).taskState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/vendor/edit": t2 = t1.vendorUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).vendorState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/expense/edit": t2 = t1.expenseUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).expenseState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/group_settings_edit": t2 = t1.groupUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).groupState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/tax_settings_rates_edit": t2 = t1.taxRateUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).taxRateState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/company_gateways_edit": t2 = t1.companyGatewayUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).companyGatewayState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/credit/edit": t2 = t1.creditUIState.editing; t1 = t1.selectedCompanyIndex; return B.hasCreditChanges(t2, J.$index$asx(_this.userCompanyStates._list, t1).creditState.map); case "/recurring_expense/edit": t2 = t1.recurringExpenseUIState.editing; t1 = t1.selectedCompanyIndex; return A.hasRecurringExpenseChanges(t2, J.$index$asx(_this.userCompanyStates._list, t1).recurringExpenseState.map); case "/settings/subscriptions_edit": t2 = t1.subscriptionUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).subscriptionState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/task_status_edit": t2 = t1.taskStatusUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).taskStatusState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/expense_category_edit": t2 = t1.expenseCategoryUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).expenseCategoryState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/recurring_invoice/edit": t2 = t1.recurringInvoiceUIState.editing; t1 = t1.selectedCompanyIndex; return L.hasRecurringInvoiceChanges(t2, J.$index$asx(_this.userCompanyStates._list, t1).recurringInvoiceState.map); case "/settings/webhook_edit": t2 = t1.webhookUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).webhookState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/token_edit": t2 = t1.tokenUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).tokenState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/payment_term_edit": t2 = t1.paymentTermUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).paymentTermState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; case "/settings/custom_designs_edit": t2 = t1.designUIState.editing; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(_this.userCompanyStates._list, t1).designState.map; if (t2.get$isNew()) t1 = t2.isChanged; else { t3 = t2.id; t3 = !t2.$eq(0, J.$index$asx(t1._map$_map, t3)); t1 = t3; } return t1; } if (C.JSString_methods.startsWith$1(t2, "/settings")) return t1.settingsUIState.isChanged; if (C.JSString_methods.endsWith$1(t2, "/edit") || C.JSString_methods.endsWith$1(t2, "_edit")) throw H.wrapException("AppState.hasChanges is not defined for " + t2); return false; }, get$isUserConfirmed: function() { var t1 = this.authState.get$isHosted(); if (!t1) return true; t1 = this.uiState.selectedCompanyIndex; t1 = J.$index$asx(this.userCompanyStates._list, t1).userCompany.user.emailVerifiedAt; return (t1 == null ? 0 : t1) > 0; }, get$createdAtLimit: function() { var t1 = this.uiState.selectedCompanyIndex, t2 = this.userCompanyStates._list, t3 = J.getInterceptor$asx(t2), numberYearsActive = t3.$index(t2, t1).userCompany.settings.numberYearsActive; if (!t3.$index(t2, t1).userCompany.company.isLarge || numberYearsActive === 0) return 0; return C.JSNumber_methods.round$0(Date.now() / 1000) - numberYearsActive * 31536000; }, get$filterDeletedClients: function() { var t1 = this.uiState.selectedCompanyIndex, t2 = this.userCompanyStates._list, t3 = J.getInterceptor$asx(t2); if (!t3.$index(t2, t1).userCompany.company.isLarge) return false; return !t3.$index(t2, t1).userCompany.settings.includeDeletedClients; }, get$canAddCompany: function() { var _this = this, t1 = _this.uiState.selectedCompanyIndex; return J.$index$asx(_this.userCompanyStates._list, t1).userCompany.isOwner && _this.get$companies().length < 10 && Y.cleanApiUrl(_this.authState.url) !== "https://demo.invoiceninja.com"; }, get$isMenuCollapsed: function() { var t2, t3, t1 = this.prefState; if (t1.appLayout === C.AppLayout_mobile) return false; if (t1.isFilterVisible) if (t1.get$showMenu()) { t2 = this.uiState; if (!C.JSString_methods.startsWith$1(t2.currentRoute, "/settings")) { t2 = t2.filterStack._list; t3 = J.getInterceptor$asx(t2); t2 = (t3.get$isEmpty(t2) ? null : t3.get$last(t2).get$entityType()) != null; } else t2 = false; } else t2 = false; else t2 = false; if (!t2) t1 = t1.menuSidebarMode === C.AppSidebarMode_collapse && !t1.isMenuVisible; else t1 = true; return t1; }, get$isFullScreen: function() { var isFullScreen, t2, t3, _this = this, _s18_ = "/recurring_expense", t1 = _this.uiState, mainRoute = C.JSString_methods.$add("/", t1.get$mainRoute()), subRoute = t1.get$subRoute(), isPdf = subRoute === "pdf"; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["/client", "/vendor", "/expense", "/invoice", "/quote", "/credit", "/recurring_invoice", _s18_, "/task"], type$.JSArray_legacy_String), mainRoute)) if (subRoute === "email" || isPdf) isFullScreen = true; else if (subRoute === "edit") if (mainRoute === "/task") isFullScreen = _this.prefState.isEditorFullScreen$1(C.EntityType_task); else if (mainRoute === "/client") isFullScreen = _this.prefState.isEditorFullScreen$1(C.EntityType_client); else if (mainRoute === "/vendor") isFullScreen = _this.prefState.isEditorFullScreen$1(C.EntityType_vendor); else { t2 = mainRoute === "/expense" || mainRoute === _s18_; t3 = _this.prefState; isFullScreen = t2 ? t3.isEditorFullScreen$1(C.EntityType_expense) : t3.isEditorFullScreen$1(C.EntityType_invoice); } else isFullScreen = false; else isFullScreen = false; return "/settings/custom_designs_edit" === t1.currentRoute ? true : isFullScreen; }, get$hasRecentlyEnteredPassword: function() { var t2, t3, t1 = this.authState.lastEnteredPasswordAt; if (t1 === 0) return false; t2 = Date.now(); t3 = this.uiState.selectedCompanyIndex; return t2 - t1 < J.$index$asx(this.userCompanyStates._list, t3).userCompany.company.passwordTimeout; }, toString$0: function(_) { var t5, companyUpdated, t6, staticUpdated, t7, passwordUpdated, _this = this, _null = null, _s5_ = "Blank", _s3_ = "Yes", _s2_ = "No", _s4_ = " [S]", t1 = _this.uiState, t2 = t1.selectedCompanyIndex, t3 = _this.userCompanyStates._list, t4 = J.getInterceptor$asx(t3); t4.$index(t3, t2).toString; t5 = t4.$index(t3, t2); if (t5.lastUpdated === 0) companyUpdated = _s5_; else { t5 = C.JSNumber_methods.round$0(t4.$index(t3, t2).lastUpdated / 1000); companyUpdated = E.format(P.DateTime$fromMillisecondsSinceEpoch(t5 * 1000, false), _null); } t5 = _this.staticState; t6 = t5.updatedAt; if (t6 == null || t6 === 0) staticUpdated = _s5_; else { t6 = C.JSNumber_methods.round$0(t6 / 1000); staticUpdated = E.format(P.DateTime$fromMillisecondsSinceEpoch(t6 * 1000, false), _null); } t6 = _this.authState; t7 = t6.lastEnteredPasswordAt; if (t7 === 0) passwordUpdated = _s5_; else { t7 = C.JSNumber_methods.round$0(t7 / 1000); passwordUpdated = E.format(P.DateTime$fromMillisecondsSinceEpoch(t7 * 1000, false), _null); } t6 = "\n\nForce: " + H.S(t1.clientUIState.forceSelected) + "\n\nURL: " + t6.url + "\nRoute: " + t1.currentRoute + "\nPrevious: " + t1.previousRoute + "\nPreview: " + H.S(t1.previewStack) + "\nFilter: "; t1 = t1.filterStack._list; t7 = J.getInterceptor$asx(t1); t6 = t6 + H.S(t7.get$isEmpty(t1) ? _null : t7.get$last(t1).get$entityType()) + " "; if (t7.get$isEmpty(t1)) t1 = _null; else { t1 = t7.get$last(t1); t1 = t1.get$id(t1); } t1 = t6 + H.S(t1) + "\nIs Loading: "; t1 = t1 + (_this.isLoading ? _s3_ : _s2_) + "\nIs Saving: "; t1 = t1 + (_this.isSaving ? _s3_ : _s2_) + "\nIs Loaded: "; t6 = t4.$index(t3, t2).lastUpdated; t1 = t1 + (t6 > 0 ? _s3_ : _s2_) + "\nis Large: "; t6 = t4.$index(t3, t2).userCompany.company; t6 = t6 == null ? _null : t6.isLarge; t1 = t1 + (t6 === true ? _s3_ : _s2_) + "\nCompany: " + companyUpdated; t1 = t1 + (t4.$index(t3, t2).get$isStale() ? _s4_ : "") + "\nStatic: " + staticUpdated; t1 = t1 + (t5.get$isStale() ? _s4_ : "") + "\nPassword: " + passwordUpdated; t1 = t1 + (_this.get$hasRecentlyEnteredPassword() ? "" : _s4_) + "\nAccent: " + _this.get$hasAccentColor() + " "; t2 = t4.$index(t3, t2).userCompany; t2 = t2 == null ? _null : t2.settings; t2 = t2 == null ? _null : t2.accentColor; return t1 + (t2 == null ? "" : t2) + "\n"; } }; T.AppState_AppState_closure.prototype = { call$1: function(index) { return B.UserCompanyState_UserCompanyState(this.reportErrors); }, $signature: 922 }; T.AppState_companies_closure.prototype = { call$1: function(company) { var t1 = company.id; return t1.length !== 0; }, $signature: 704 }; T.AppState_historyList_closure.prototype = { call$1: function($history) { var t1, entity, entityMap = this.$this.getEntityMap$1($history.entityType); if (entityMap != null) { t1 = $history.id; entity = type$.legacy_BaseEntity._as(J.$index$asx(entityMap._map$_map, t1)); if ((entity == null ? null : entity.get$isDeleted(entity)) === true) return false; } return true; }, $signature: 703 }; T.Credentials.prototype = { get$token: function() { return this.token; } }; T.SelectionState.prototype = {}; T._$AppStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["isLoading", serializers.serialize$2$specifiedType(object.isLoading, C.FullType_MtR), "isSaving", serializers.serialize$2$specifiedType(object.isSaving, C.FullType_MtR), "isTesting", serializers.serialize$2$specifiedType(object.isTesting, C.FullType_MtR), "lastError", serializers.serialize$2$specifiedType(object.lastError, C.FullType_h8g), "authState", serializers.serialize$2$specifiedType(object.authState, C.FullType_DFh), "staticState", serializers.serialize$2$specifiedType(object.staticState, C.FullType_SQp0), "prefState", serializers.serialize$2$specifiedType(object.prefState, C.FullType_qBb0), "uiState", serializers.serialize$2$specifiedType(object.uiState, C.FullType_69P), "userCompanyStates", serializers.serialize$2$specifiedType(object.userCompanyStates, C.FullType_UH2)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, key, value, t10, t11, t12, t13, t14, _s5_ = "other", result = new T.AppStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_UserCompanyState, t3 = type$.ListBuilder_legacy_UserCompanyState, t4 = type$.legacy_UIState, t5 = type$.legacy_BaseEntity, t6 = type$.ListBuilder_legacy_BaseEntity, t7 = type$.legacy_PrefState, t8 = type$.legacy_StaticState, t9 = type$.legacy_AuthState; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "isLoading": t10 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_$this()._isLoading = t10; break; case "isSaving": t10 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_$this()._isSaving = t10; break; case "isTesting": t10 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_$this()._isTesting = t10; break; case "lastError": t10 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_$this()._lastError = t10; break; case "authState": t10 = result.get$_$this(); t11 = t10._authState; if (t11 == null) { t11 = new Z.AuthStateBuilder(); t11.get$_auth_state$_$this()._referralCode = ""; t10._authState = t11; t10 = t11; } else t10 = t11; t11 = t9._as(serializers.deserialize$2$specifiedType(value, C.FullType_DFh)); if (t11 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t10._$v = t11; break; case "staticState": t10 = result.get$_$this(); t11 = t10._staticState; t10 = t11 == null ? t10._staticState = new B.StaticStateBuilder() : t11; t11 = t8._as(serializers.deserialize$2$specifiedType(value, C.FullType_SQp0)); if (t11 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t10._static_state$_$v = t11; break; case "prefState": t10 = result.get$_$this(); t11 = t10._prefState; if (t11 == null) { t11 = new X.PrefStateBuilder(); X.PrefState__initializeBuilder(t11); t10._prefState = t11; t10 = t11; } else t10 = t11; t11 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb0)); if (t11 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t10._pref_state$_$v = t11; break; case "uiState": t10 = result.get$_$this(); t11 = t10._uiState; if (t11 == null) { t11 = new U.UIStateBuilder(); t11.get$_ui_state$_$this()._lastActivityAt = 0; t12 = t11.get$_ui_state$_$this(); t13 = t12._filterStack; if (t13 == null) { t13 = new D.ListBuilder(t6); t13.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t12._filterStack = t13; t12 = t13; } else t12 = t13; t13 = D.BuiltList_BuiltList$from(C.List_empty, t5); t14 = t12.$ti; if (t14._eval$1("_BuiltList<1>")._is(t13)) { t12.__ListBuilder__list = t13._list; t12._listOwner = t13; } else { t12.__ListBuilder__list = P.List_List$from(t13, true, t14._precomputed1); t12._listOwner = null; } t10._uiState = t11; t10 = t11; } else t10 = t11; t11 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_69P)); if (t11 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t10._ui_state$_$v = t11; break; case "userCompanyStates": t10 = result.get$_$this(); t11 = t10._userCompanyStates; if (t11 == null) { t11 = new D.ListBuilder(t3); t11.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t10._userCompanyStates = t11; t10 = t11; } else t10 = t11; t11 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_UH2)); t12 = t10.$ti; if (t12._eval$1("_BuiltList<1>")._is(t11)) { t10.__ListBuilder__list = t11._list; t10._listOwner = t11; } else { t10.__ListBuilder__list = P.List_List$from(t11, true, t12._precomputed1); t10._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_FeV; }, get$wireName: function() { return "AppState"; } }; T._$AppState.prototype = { rebuild$1: function(updates) { var t1 = new T.AppStateBuilder(); t1._app_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof T.AppState && _this.isLoading === other.isLoading && _this.isSaving === other.isSaving && _this.isTesting === other.isTesting && _this.lastError === other.lastError && _this.authState.$eq(0, other.authState) && J.$eq$(_this.staticState, other.staticState) && J.$eq$(_this.prefState, other.prefState) && J.$eq$(_this.uiState, other.uiState) && J.$eq$(_this.userCompanyStates, other.userCompanyStates); }, get$hashCode: function(_) { var _this = this, t1 = _this._app_state$__hashCode; if (t1 == null) { t1 = _this.authState; t1 = _this._app_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSBool_methods.get$hashCode(_this.isLoading)), C.JSBool_methods.get$hashCode(_this.isSaving)), C.JSBool_methods.get$hashCode(_this.isTesting)), C.JSString_methods.get$hashCode(_this.lastError)), t1.get$hashCode(t1)), J.get$hashCode$(_this.staticState)), J.get$hashCode$(_this.prefState)), J.get$hashCode$(_this.uiState)), J.get$hashCode$(_this.userCompanyStates))); } return t1; } }; T.AppStateBuilder.prototype = { get$authState: function() { var t1 = this.get$_$this(), t2 = t1._authState; if (t2 == null) { t2 = new Z.AuthStateBuilder(); t2.get$_auth_state$_$this()._referralCode = ""; t1._authState = t2; t1 = t2; } else t1 = t2; return t1; }, get$staticState: function() { var t1 = this.get$_$this(), t2 = t1._staticState; return t2 == null ? t1._staticState = new B.StaticStateBuilder() : t2; }, get$prefState: function() { var t1 = this.get$_$this(), t2 = t1._prefState; if (t2 == null) { t2 = new X.PrefStateBuilder(); X.PrefState__initializeBuilder(t2); t1._prefState = t2; t1 = t2; } else t1 = t2; return t1; }, get$uiState: function() { var t1 = this.get$_$this(), t2 = t1._uiState; if (t2 == null) { t2 = new U.UIStateBuilder(); U.UIState__initializeBuilder(t2); t1._uiState = t2; t1 = t2; } else t1 = t2; return t1; }, get$userCompanyStates: function() { var t1 = this.get$_$this(), t2 = t1._userCompanyStates; return t2 == null ? t1._userCompanyStates = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_UserCompanyState) : t2; }, get$_$this: function() { var t1, t2, _this = this, $$v = _this._app_state$_$v; if ($$v != null) { _this._isLoading = $$v.isLoading; _this._isSaving = $$v.isSaving; _this._isTesting = $$v.isTesting; _this._lastError = $$v.lastError; t1 = $$v.authState; t2 = new Z.AuthStateBuilder(); t2.get$_auth_state$_$this()._referralCode = ""; t2._$v = t1; _this._authState = t2; t1 = $$v.staticState; t1.toString; t2 = new B.StaticStateBuilder(); t2._static_state$_$v = t1; _this._staticState = t2; t1 = $$v.prefState; t1.toString; t2 = new X.PrefStateBuilder(); X.PrefState__initializeBuilder(t2); t2._pref_state$_$v = t1; _this._prefState = t2; t1 = $$v.uiState; t1.toString; t2 = new U.UIStateBuilder(); U.UIState__initializeBuilder(t2); t2._ui_state$_$v = t1; _this._uiState = t2; t1 = $$v.userCompanyStates; t1.toString; _this._userCompanyStates = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._app_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s8_ = "AppState", _$result = null; try { _$result0 = _this._app_state$_$v; if (_$result0 == null) { t1 = _this.get$_$this()._isLoading; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "isLoading")); t2 = _this.get$_$this()._isSaving; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "isSaving")); t3 = _this.get$_$this()._isTesting; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "isTesting")); t4 = _this.get$_$this()._lastError; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s8_, "lastError")); t5 = _this.get$authState().build$0(0); t6 = _this.get$staticState().build$0(0); _$result0 = T._$AppState$_(t5, t1, t2, t3, t4, _this.get$prefState().build$0(0), t6, _this.get$uiState().build$0(0), _this.get$userCompanyStates().build$0(0)); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "authState"; _this.get$authState().build$0(0); _$failedField = "staticState"; _this.get$staticState().build$0(0); _$failedField = "prefState"; _this.get$prefState().build$0(0); _$failedField = "uiState"; _this.get$uiState().build$0(0); _$failedField = "userCompanyStates"; _this.get$userCompanyStates().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s8_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._app_state$_$v = t1; return _$result; } }; B.LoadStateRequest.prototype = {}; B.LoadStateSuccess.prototype = {}; B.OAuthLoginRequest.prototype = {$isStartLoading: 1}; B.UserLoadUrl.prototype = {}; B.UserLoginRequest.prototype = {$isStartLoading: 1}; B.UserLoginSuccess.prototype = {$isStopLoading: 1}; B.UserLoginFailure.prototype = {$isStopLoading: 1}; B.RecoverPasswordRequest.prototype = {$isStartLoading: 1}; B.RecoverPasswordSuccess.prototype = {$isStopLoading: 1}; B.RecoverPasswordFailure.prototype = {$isStopLoading: 1}; B.UserLogout.prototype = {$isPersistUI: 1, $isPersistData: 1}; B.UserLogoutAll.prototype = {$isStartLoading: 1}; B.UserLogoutAllSuccess.prototype = {$isStopLoading: 1}; B.UserLogoutAllFailure.prototype = {$isStopLoading: 1}; B.UserSignUpRequest.prototype = {$isStartLoading: 1}; B.OAuthSignUpRequest.prototype = {$isStartLoading: 1}; B.UserVerifiedPassword.prototype = {}; B.UserUnverifiedPassword.prototype = {}; V._createUserLogout_closure.prototype = { call$3: function(store, dynamicAction, next) { next.call$1(type$.legacy_UserLogout._as(dynamicAction)); $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/login", new V._createUserLogout__closure(), type$.legacy_Object); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/login")); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createUserLogout__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; V._createUserLogoutAll_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_UserLogoutAll._as(dynamicAction); this.repository.logout$1$credentials(J.get$credentials$z(store.get$_store$_state())).then$1$1(0, new V._createUserLogoutAll__closure(store), type$.Null).catchError$1(new V._createUserLogoutAll__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createUserLogoutAll__closure.prototype = { call$1: function(response) { var t1; P.print("## DONE MIDDLE"); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLogoutAllSuccess()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 8 }; V._createUserLogoutAll__closure0.prototype = { call$1: function(error) { this.action.completer.completeError$1(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogoutAllFailure()); }, $signature: 3 }; V._createLoginRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, t4, t5; type$.legacy_UserLoginRequest._as(dynamicAction); t1 = dynamicAction.email; t2 = dynamicAction.password; t3 = dynamicAction.url; t4 = dynamicAction.secret; t5 = dynamicAction.platform; this.repository.login$6$email$oneTimePassword$password$platform$secret$url(t1, dynamicAction.oneTimePassword, t2, t5, t4, t3).then$1$1(0, new V._createLoginRequest__closure(dynamicAction, store), type$.Null).catchError$1(new V._createLoginRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createLoginRequest__closure.prototype = { call$1: function(data) { var t2, t1 = this.action; V._saveAuthLocal(t1.url); t2 = this.store; J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.LoadAccountSuccess(t1.completer, data)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new B.UserVerifiedPassword()); }, $signature: 184 }; V._createLoginRequest__closure0.prototype = { call$1: function(error) { P.print("## Login error: " + H.S(error)); this.action.completer.completeError$1(V._parseError0(H.S(error))); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLoginFailure()); if (C.JSString_methods.startsWith$1(H.S(error), "Error ::")) throw H.wrapException(error); }, $signature: 3 }; V._createSignUpRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_UserSignUpRequest._as(dynamicAction); state = store.get$_store$_state(); this.repository.signUp$3$email$password$referralCode(dynamicAction.email, dynamicAction.password, state.authState.referralCode).then$1$1(0, new V._createSignUpRequest__closure(store, dynamicAction), type$.Null).catchError$1(new V._createSignUpRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createSignUpRequest__closure.prototype = { call$1: function(data) { var t1; V._saveAuthLocal("https://invoicing.co"); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.LoadAccountSuccess(this.action.completer, data)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserVerifiedPassword()); }, $signature: 184 }; V._createSignUpRequest__closure0.prototype = { call$1: function(error) { P.print("## Signup error: " + H.S(error)); this.action.completer.completeError$1(V._parseError0(H.S(error))); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLoginFailure()); if (C.JSString_methods.startsWith$1(H.S(error), "Error ::")) throw H.wrapException(error); }, $signature: 3 }; V._createOAuthLoginRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, t4; type$.legacy_OAuthLoginRequest._as(dynamicAction); t1 = dynamicAction.idToken; t2 = dynamicAction.accessToken; t3 = dynamicAction.url; t4 = dynamicAction.secret; this.repository.oauthLogin$5$accessToken$idToken$platform$secret$url(t2, t1, dynamicAction.platform, t4, t3).then$1$1(0, new V._createOAuthLoginRequest__closure(dynamicAction, store), type$.Null).catchError$1(new V._createOAuthLoginRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createOAuthLoginRequest__closure.prototype = { call$1: function(data) { var t2, t1 = this.action; V._saveAuthLocal(t1.url); t2 = this.store; J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.LoadAccountSuccess(t1.completer, data)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new B.UserVerifiedPassword()); }, $signature: 184 }; V._createOAuthLoginRequest__closure0.prototype = { call$1: function(error) { P.print("## Oauth login error: " + H.S(error)); this.action.completer.completeError$1(V._parseError0(H.S(error))); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLoginFailure()); if (C.JSString_methods.startsWith$1(H.S(error), "Error ::")) throw H.wrapException(error); }, $signature: 3 }; V._createOAuthSignUpRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_OAuthSignUpRequest._as(dynamicAction); state = store.get$_store$_state(); this.repository.oauthSignUp$3$accessToken$idToken$referralCode(dynamicAction.accessToken, dynamicAction.idToken, state.authState.referralCode).then$1$1(0, new V._createOAuthSignUpRequest__closure(store, dynamicAction), type$.Null).catchError$1(new V._createOAuthSignUpRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createOAuthSignUpRequest__closure.prototype = { call$1: function(data) { var t1; V._saveAuthLocal("https://invoicing.co"); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.LoadAccountSuccess(this.action.completer, data)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserVerifiedPassword()); }, $signature: 184 }; V._createOAuthSignUpRequest__closure0.prototype = { call$1: function(error) { P.print("## OAuth signup error: " + H.S(error)); this.action.completer.completeError$1(V._parseError0(H.S(error))); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLoginFailure()); if (C.JSString_methods.startsWith$1(H.S(error), "Error ::")) throw H.wrapException(error); }, $signature: 3 }; V._createRefreshRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_createRefreshRequest_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createRefreshRequest_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, state, t1, t2, t3, t4, url, t5, token, hasToken, updatedAt; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_RefreshData._as(dynamicAction); state = store.get$_store$_state(); t1 = dynamicAction.clearData; if (!t1) if (state.isSaving) { P.print("## Skipping refresh request - pending save"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } else if (state.isLoading) { P.print("## Skipping refresh request - pending load"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } else { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); if (t4.$index(t2, t3).userCompany.company.isLarge) { t2 = t4.$index(t2, t3).lastUpdated; t2 = t2 <= 0; } else t2 = false; if (t2) { P.print("## Skipping refresh request - not loaded"); next.call$1(dynamicAction); // goto return $async$goto = 1; break; } } $async$goto = 3; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3); case 3: // returning from await. t2 = $async$result._preferenceCache; t3 = J.getInterceptor$asx(t2); t4 = H._asStringQ(t3.$index(t2, "url")); url = Y.formatApiUrl(t4 == null ? state.authState.url : t4); if (state == null) t4 = null; else { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = J.$index$asx(t4._list, t5).userCompany; t4 = t5; } t4 = t4 == null ? null : t4.token; t4 = t4 == null ? null : t4.token; if ((t4 == null ? "" : t4).length !== 0) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; token = J.$index$asx(t2._list, t3).userCompany.token.token; hasToken = true; } else { token = D.TokenEntity_unobscureToken(H._asStringQ(t3.$index(t2, "checksum"))); if (token == null) token = "TOKEN"; hasToken = false; } if (t1) updatedAt = 0; else { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; updatedAt = C.JSNumber_methods.round$0((J.$index$asx(t1._list, t2).lastUpdated - 900000) / 1000); } J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.UserLoadUrl(url)); t1 = dynamicAction.includeStatic || state.staticState.get$isStale(); t2 = hasToken && !dynamicAction.allCompanies; $async$self.repository.refresh$5$currentCompany$includeStatic$token$updatedAt$url(0, t2, t1, token, updatedAt - 600, url).then$1$1(0, new V._createRefreshRequest__closure(state, store, dynamicAction), type$.Null).catchError$1(new V._createRefreshRequest__closure0(dynamicAction, store)); next.call$1(dynamicAction); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._createRefreshRequest__closure.prototype = { call$1: function(data) { var _this = this, t1 = {}; t1.permissionsWereChanged = false; J.forEach$1$ax(data.userCompanies._list, new V._createRefreshRequest___closure(t1, _this.state)); if (t1.permissionsWereChanged) { t1 = _this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ClearData()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(_this.action.completer, true, false, false)); } else { t1 = _this.action; if (t1.clearData) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ClearData()); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.RefreshDataSuccess(t1.completer, data)); } }, $signature: 184 }; V._createRefreshRequest___closure.prototype = { call$1: function(userCompany) { J.forEach$1$ax(this.state.userCompanyStates._list, new V._createRefreshRequest____closure(this._box_0, userCompany)); }, $signature: 702 }; V._createRefreshRequest____closure.prototype = { call$1: function(userCompanyState) { var t1 = this.userCompany, t2 = t1.company.id, t3 = userCompanyState.userCompany; if (t2 === t3.company.id) { t2 = t3.permissionsUpdatedAt; if (t2 > 0 && t1.permissionsUpdatedAt !== t2) this._box_0.permissionsWereChanged = true; } }, $signature: 928 }; V._createRefreshRequest__closure0.prototype = { call$1: function(error) { var message = V._parseError0(H.S(error)), t1 = this.action.completer; if (t1 != null) t1.completeError$1(message); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshDataFailure(message)); if (C.JSString_methods.startsWith$1(H.S(error), "403")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLogout()); else if (C.JSString_methods.startsWith$1(H.S(error), "Error ::")) throw H.wrapException(error); }, $signature: 3 }; V._createRecoverRequest_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_RecoverPasswordRequest._as(dynamicAction); t1 = dynamicAction.email; t2 = dynamicAction.url; this.repository.recoverPassword$3$email$secret$url(t1, dynamicAction.secret, t2).then$1$1(0, new V._createRecoverRequest__closure(store, dynamicAction), type$.Null).catchError$1(new V._createRecoverRequest__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._createRecoverRequest__closure.prototype = { call$1: function(data) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.RecoverPasswordSuccess()); this.action.completer.complete$1(0, null); }, $signature: 184 }; V._createRecoverRequest__closure0.prototype = { call$1: function(error) { J.toString$0$(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.RecoverPasswordFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._createCompany_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_createCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_createCompany_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_AddCompany._as(dynamicAction); state = store.get$_store$_state(); $async$self.repository.addCompany$1$credentials(state.get$credentials(state)).then$1$1(0, new V._createCompany__closure(store, state, dynamicAction), type$.Null); next.call$1(dynamicAction); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._createCompany__closure.prototype = { call$1: function(value) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.AddCompanySuccess()); t2 = new P._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new V._createCompany___closure(t1, this.state, this.action), type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), false, false, true)); }, $signature: 8 }; V._createCompany___closure.prototype = { call$1: function(_) { var t1 = this.store, t2 = this.state.get$companies().length; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SelectCompany(t2, true)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(true, null)); this.action.completer.complete$0(0); }, $signature: 3 }; V._setDefaultCompany_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_setDefaultCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_setDefaultCompany_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_SetDefaultCompanyRequest._as(dynamicAction); state = store.get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; $async$self.repository.setDefaultCompany$2$companyId$credentials(J.$index$asx(t1._list, t2).userCompany.company.id, state.get$credentials(state)).then$1$1(0, new V._setDefaultCompany__closure(store, dynamicAction), type$.Null).catchError$1(new V._setDefaultCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._setDefaultCompany__closure.prototype = { call$1: function(_) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SetDefaultCompanySuccess()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, true)); this.action.completer.complete$0(0); }, $signature: 83 }; V._setDefaultCompany__closure0.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SetDefaultCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._deleteCompany_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_deleteCompany_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_deleteCompany_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3, t4; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_DeleteCompanyRequest._as(dynamicAction); state = store.get$_store$_state(); t1 = state.get$credentials(state); t2 = dynamicAction.password; t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; $async$self.repository.deleteCompany$4$companyId$credentials$password$reason(J.$index$asx(t3._list, t4).userCompany.company.id, t1, t2, dynamicAction.reason).then$1$1(0, new V._deleteCompany__closure(store, dynamicAction), type$.Null).catchError$1(new V._deleteCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._deleteCompany__closure.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteCompanySuccess()); this.action.completer.complete$1(0, null); }, $signature: 8 }; V._deleteCompany__closure0.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._purgeData_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_purgeData_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_purgeData_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3, t4, t5; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_PurgeDataRequest._as(dynamicAction); state = store.get$_store$_state(); t1 = state.get$credentials(state); t2 = dynamicAction.password; t3 = dynamicAction.idToken; t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; $async$self.repository.purgeData$4$companyId$credentials$idToken$password(J.$index$asx(t4._list, t5).userCompany.company.id, t1, t3, t2).then$1$1(0, new V._purgeData__closure(store, dynamicAction), type$.Null).catchError$1(new V._purgeData__closure0(store, dynamicAction)); next.call$1(dynamicAction); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._purgeData__closure.prototype = { call$1: function(value) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.PurgeDataSuccess()); t2 = new P._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new V._purgeData___closure(this.action), type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), true, false, false)); }, $signature: 8 }; V._purgeData___closure.prototype = { call$1: function(value) { this.action.completer.complete$1(0, null); }, $signature: 3 }; V._purgeData__closure0.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.PurgeDataFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._resendConfirmation_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_resendConfirmation_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_resendConfirmation_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, state, t1, t2, t3; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ResendConfirmation._as(dynamicAction); state = store.get$_store$_state(); t1 = state.get$credentials(state); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; $async$self.repository.resendConfirmation$2$credentials$userId(t1, J.$index$asx(t2._list, t3).userCompany.user.id).then$1$1(0, new V._resendConfirmation__closure(store), type$.Null).catchError$1(new V._resendConfirmation__closure0(store)); next.call$1(dynamicAction); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._resendConfirmation__closure.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ResendConfirmationSuccess()); }, $signature: 8 }; V._resendConfirmation__closure0.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ResendConfirmationFailure()); }, $signature: 3 }; S.userLoadUrlReducer_closure.prototype = { call$1: function(b) { var t1 = Y.formatApiUrl(this.action.url); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 134 }; S.userSignUpRequestReducer_closure.prototype = { call$1: function(b) { var t1 = Y.formatApiUrl("https://invoicing.co"); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 134 }; S.userLoginRequestReducer_closure.prototype = { call$1: function(b) { var t1 = this.action, t2 = Y.formatApiUrl(t1.url); b.get$_auth_state$_$this()._auth_state$_url = t2; t1 = t1.email; b.get$_auth_state$_$this()._auth_state$_email = t1; return b; }, $signature: 134 }; S.oauthLoginRequestReducer_closure.prototype = { call$1: function(b) { var t1 = Y.formatApiUrl(this.action.url); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 134 }; S.oauthSignUpRequestReducer_closure.prototype = { call$1: function(b) { var t1 = Y.formatApiUrl("https://invoicing.co"); b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, $signature: 134 }; S.userLoginSuccessReducer_closure.prototype = { call$1: function(b) { b.get$_auth_state$_$this()._isAuthenticated = true; return b; }, $signature: 134 }; S.userVerifiedPasswordReducer_closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_auth_state$_$this()._lastEnteredPasswordAt = t1; return b; }, $signature: 134 }; S.userUnverifiedPasswordReducer_closure.prototype = { call$1: function(b) { b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, $signature: 134 }; Z.AuthState.prototype = { get$isHosted: function() { var cleanUrl = Y.cleanApiUrl(this.url); if (cleanUrl.length === 0) return true; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["https://invoicing.co", "https://demo.invoiceninja.com", "https://staging.invoicing.co"], type$.JSArray_legacy_String), cleanUrl)) return true; return false; } }; Z._$AuthStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["email", serializers.serialize$2$specifiedType(object.email, C.FullType_h8g), "url", serializers.serialize$2$specifiedType(object.url, C.FullType_h8g), "isInitialized", serializers.serialize$2$specifiedType(object.isInitialized, C.FullType_MtR), "isAuthenticated", serializers.serialize$2$specifiedType(object.isAuthenticated, C.FullType_MtR), "lastEnteredPasswordAt", serializers.serialize$2$specifiedType(object.lastEnteredPasswordAt, C.FullType_kjq), "referralCode", serializers.serialize$2$specifiedType(object.referralCode, C.FullType_h8g)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, key, value, t1, result = new Z.AuthStateBuilder(); result.get$_auth_state$_$this()._referralCode = ""; iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "email": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_auth_state$_$this()._auth_state$_email = t1; break; case "url": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_auth_state$_$this()._auth_state$_url = t1; break; case "isInitialized": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_auth_state$_$this()._isInitialized = t1; break; case "isAuthenticated": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_auth_state$_$this()._isAuthenticated = t1; break; case "lastEnteredPasswordAt": t1 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_auth_state$_$this()._lastEnteredPasswordAt = t1; break; case "referralCode": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_auth_state$_$this()._referralCode = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_cYh; }, get$wireName: function() { return "AuthState"; } }; Z._$AuthState.prototype = { rebuild$1: function(updates) { var t1 = new Z.AuthStateBuilder(); t1.get$_auth_state$_$this()._referralCode = ""; t1._$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Z.AuthState && _this.email === other.email && _this.url === other.url && _this.isInitialized === other.isInitialized && _this.isAuthenticated === other.isAuthenticated && _this.lastEnteredPasswordAt === other.lastEnteredPasswordAt && _this.referralCode === other.referralCode; }, get$hashCode: function(_) { var _this = this, t1 = _this._auth_state$__hashCode; return t1 == null ? _this._auth_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.email)), C.JSString_methods.get$hashCode(_this.url)), C.JSBool_methods.get$hashCode(_this.isInitialized)), C.JSBool_methods.get$hashCode(_this.isAuthenticated)), C.JSInt_methods.get$hashCode(_this.lastEnteredPasswordAt)), C.JSString_methods.get$hashCode(_this.referralCode))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("AuthState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "email", _this.email); t2.add$2(t1, "url", _this.url); t2.add$2(t1, "isInitialized", _this.isInitialized); t2.add$2(t1, "isAuthenticated", _this.isAuthenticated); t2.add$2(t1, "lastEnteredPasswordAt", _this.lastEnteredPasswordAt); t2.add$2(t1, "referralCode", _this.referralCode); return t2.toString$0(t1); } }; Z.AuthStateBuilder.prototype = { get$_auth_state$_$this: function() { var _this = this, $$v = _this._$v; if ($$v != null) { _this._auth_state$_email = $$v.email; _this._auth_state$_url = $$v.url; _this._isInitialized = $$v.isInitialized; _this._isAuthenticated = $$v.isAuthenticated; _this._lastEnteredPasswordAt = $$v.lastEnteredPasswordAt; _this._referralCode = $$v.referralCode; _this._$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, _this = this, _s9_ = "AuthState", _$result = _this._$v; if (_$result == null) { t1 = _this.get$_auth_state$_$this()._auth_state$_email; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "email")); t2 = _this.get$_auth_state$_$this()._auth_state$_url; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "url")); t3 = _this.get$_auth_state$_$this()._isInitialized; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isInitialized")); t4 = _this.get$_auth_state$_$this()._isAuthenticated; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isAuthenticated")); t5 = _this.get$_auth_state$_$this()._lastEnteredPasswordAt; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "lastEnteredPasswordAt")); t6 = _this.get$_auth_state$_$this()._referralCode; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "referralCode")); _$result = Z._$AuthState$_(t1, t4, t3, t5, t6, t2); } return _this._$v = _$result; } }; E.ViewClientList.prototype = {$isStopLoading: 1}; E.ViewClient.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.EditClient.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$contact: function() { return null; } }; E.EditContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; E.ShowPdfClient.prototype = {}; E.UpdateClient.prototype = {$isPersistUI: 1}; E.LoadClient.prototype = {}; E.LoadClients.prototype = {}; E.LoadClientRequest.prototype = {$isStartLoading: 1}; E.LoadClientFailure.prototype = { toString$0: function(_) { return "LoadClientFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadClientSuccess.prototype = { toString$0: function(_) { return "LoadClientSuccess{client: " + H.S(this.client) + "}"; }, $isPersistData: 1, $isStopLoading: 1 }; E.LoadClientsRequest.prototype = {$isStartLoading: 1}; E.LoadClientsFailure.prototype = { toString$0: function(_) { return "LoadClientsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadClientsSuccess.prototype = { toString$0: function(_) { return "LoadClientsSuccess{clients: " + H.S(this.clients) + "}"; }, $isStopLoading: 1 }; E.AddContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; E.UpdateContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; E.DeleteContact.prototype = {$isPersistUI: 1}; E.SaveClientRequest.prototype = {$isStartSaving: 1}; E.SaveClientSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; E.AddClientSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; E.SaveClientFailure.prototype = {$isStopSaving: 1}; E.ArchiveClientsRequest.prototype = {$isStartSaving: 1}; E.ArchiveClientsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.ArchiveClientsFailure.prototype = {$isStopSaving: 1}; E.DeleteClientsRequest.prototype = {$isStartSaving: 1}; E.DeleteClientsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.DeleteClientsFailure.prototype = {$isStopSaving: 1}; E.RestoreClientsRequest.prototype = {$isStartSaving: 1}; E.RestoreClientSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.RestoreClientFailure.prototype = {$isStopSaving: 1}; E.FilterClients.prototype = {$isPersistUI: 1}; E.SortClients.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.FilterClientsByState.prototype = {$isPersistUI: 1}; E.FilterClientsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterClientsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterClientsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterClientsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.handleClientAction_closure.prototype = { call$1: function(client) { return client.get$id(client); }, $signature: 41 }; E.handleClientAction_closure0.prototype = { call$1: function(b) { var t1 = this.client.id; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 46 }; E.handleClientAction_closure1.prototype = { call$1: function(b) { var t1 = this.client.id; return b.get$_payment_model$_$this()._payment_model$_clientId = t1; }, $signature: 701 }; E.handleClientAction_closure2.prototype = { call$1: function(b) { var t1 = this.client.id; return b.get$_project_model$_$this()._project_model$_clientId = t1; }, $signature: 700 }; E.StartClientMultiselect.prototype = {}; E.AddToClientMultiselect.prototype = {}; E.RemoveFromClientMultiselect.prototype = {}; E.ClearClientMultiselect.prototype = {}; E.SaveClientDocumentRequest.prototype = {$isStartSaving: 1}; E.SaveClientDocumentFailure.prototype = {$isStopSaving: 1}; E.UpdateClientTab.prototype = {$isPersistUI: 1}; Q._editClient_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s12_ = "/client/edit"; next.call$1(type$.legacy_EditClient._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewClient_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewClient_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewClient_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewClient._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/client/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/client/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; Q._viewClientList_closure1.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewClientList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/client")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/client", new Q._viewClientList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewClientList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; Q._archiveClient_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_ArchiveClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = P.List_List$of(new H.MappedListIterable(t1, new Q._archiveClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new Q._archiveClient__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._archiveClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._archiveClient__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).clientState.map._map$_map, id); }, $signature: 321 }; Q._archiveClient__closure0.prototype = { call$1: function(clients) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 406 }; Q._archiveClient__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveClientsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._deleteClient_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_DeleteClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = P.List_List$of(new H.MappedListIterable(t1, new Q._deleteClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new Q._deleteClient__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._deleteClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._deleteClient__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).clientState.map._map$_map, id); }, $signature: 321 }; Q._deleteClient__closure0.prototype = { call$1: function(clients) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 406 }; Q._deleteClient__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteClientsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._restoreClient_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevClients; type$.legacy_RestoreClientsRequest._as(dynamicAction); t1 = dynamicAction.clientIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ClientEntity*>"); prevClients = P.List_List$of(new H.MappedListIterable(t1, new Q._restoreClient__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new Q._restoreClient__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._restoreClient__closure1(store, prevClients, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._restoreClient__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).clientState.map._map$_map, id); }, $signature: 321 }; Q._restoreClient__closure0.prototype = { call$1: function(clients) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreClientSuccess(clients)); this.action.completer.complete$1(0, null); }, $signature: 406 }; Q._restoreClient__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreClientFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._saveClient_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveClientRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.client).then$1$1(0, new Q._saveClient__closure(dynamicAction, store), type$.Null).catchError$1(new Q._saveClient__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveClient__closure.prototype = { call$1: function(client) { var t1 = this.action, t2 = this.store; if (t1.client.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.AddClientSuccess(client)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.SaveClientSuccess(client)); t1.completer.complete$1(0, client); t1 = t2.get$_store$_state().uiState.clientUIState.saveCompleter; if (t1 != null) t1.complete$1(0, client); }, $signature: 279 }; Q._saveClient__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveClientFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._loadClient_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadClient._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClientRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.clientId).then$1$1(0, new Q._loadClient__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadClient__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadClient__closure.prototype = { call$1: function(client) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClientSuccess(client)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 279 }; Q._loadClient__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClientFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; Q._loadClients_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadClients._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClientsRequest()); this.repository.loadList$1(J.get$credentials$z(store.get$_store$_state())).then$1$1(0, new Q._loadClients__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadClients__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadClients__closure.prototype = { call$1: function(data) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClientsSuccess(data)); t2 = this.action.completer; if (t2 != null) t2.complete$1(0, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.LoadProducts()); }, $signature: 935 }; Q._loadClients__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClientsFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; Q._saveDocument_closure10.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveClientDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.client, dynamicAction.multipartFile).then$1$1(0, new Q._saveDocument__closure21(store, dynamicAction), type$.Null).catchError$1(new Q._saveDocument__closure22(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SaveClientDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveDocument__closure21.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveClientSuccess(client)); this.action.completer.complete$1(0, null); }, $signature: 279 }; Q._saveDocument__closure22.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveClientDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._showPdfClient_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showPdfClient_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfClient_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfClient._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/client/pdf")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/client/pdf", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; S.clientUIReducer_closure.prototype = { call$1: function(b) { var _s5_ = "other", t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$clientListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer21().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._client_model$_$v = t4; t1 = b.get$editingContact(); t4 = $.$get$editingContactReducer().call$2(t2.editingContact, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._client_model$_$v = t4; t1 = $.$get$selectedIdReducer21().call$2(t2.selectedId, t3); b.get$_client_state$_$this()._client_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer21().call$2(t2.forceSelected, t3); b.get$_client_state$_$this()._client_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer10().call$2(t2.tabIndex, t3); b.get$_client_state$_$this()._client_state$_tabIndex = t1; t1 = $.$get$saveCompleterReducer1().call$2(t2.saveCompleter, t3); b.get$_client_state$_$this()._client_state$_saveCompleter = t1; t3 = $.$get$cancelCompleterReducer1().call$2(t2.cancelCompleter, t3); b.get$_client_state$_$this()._client_state$_cancelCompleter = t3; return b; }, $signature: 936 }; S.forceSelectedReducer_closure167.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 937 }; S.forceSelectedReducer_closure168.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 938 }; S.forceSelectedReducer_closure169.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 939 }; S.forceSelectedReducer_closure170.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 940 }; S.forceSelectedReducer_closure171.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 941 }; S.forceSelectedReducer_closure172.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 942 }; S.forceSelectedReducer_closure173.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 943 }; S.forceSelectedReducer_closure174.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 944 }; S.tabIndexReducer_closure21.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 945 }; S.tabIndexReducer_closure22.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; S.saveCompleterReducer_closure1.prototype = { call$2: function(completer, action) { return action.completer; }, "call*": "call$2", $requiredArgCount: 2, $signature: 691 }; S.cancelCompleterReducer_closure1.prototype = { call$2: function(completer, action) { return action.cancelCompleter; }, "call*": "call$2", $requiredArgCount: 2, $signature: 691 }; S.editingContactReducer_closure.prototype = { call$2: function(contact, action) { var t1; action.toString; t1 = T.ContactEntity_ContactEntity(); return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 948 }; S.editingContactReducer_closure0.prototype = { call$2: function(contact, action) { var t1 = action.contact; return t1 == null ? T.ContactEntity_ContactEntity() : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 949 }; S.selectedIdReducer_closure335.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 950 }; S.selectedIdReducer_closure336.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 951 }; S.selectedIdReducer_closure337.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_client ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; S.selectedIdReducer_closure338.prototype = { call$2: function(selectedId, action) { return action.clientId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 953 }; S.selectedIdReducer_closure339.prototype = { call$2: function(selectedId, action) { return action.client.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 954 }; S.selectedIdReducer_closure340.prototype = { call$2: function(selectedId, action) { return action.client.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 955 }; S.selectedIdReducer_closure341.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; S.selectedIdReducer_closure342.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; S.selectedIdReducer_closure343.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 958 }; S.selectedIdReducer_closure344.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 959 }; S.selectedIdReducer_closure345.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 960 }; S.selectedIdReducer_closure346.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 961 }; S.selectedIdReducer_closure347.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 962 }; S.selectedIdReducer_closure348.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 963 }; S.selectedIdReducer_closure349.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 964 }; S.selectedIdReducer_closure350.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_client ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; S.selectedIdReducer_closure351.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_client ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; S.editingReducer_closure112.prototype = { call$2: function(client, action) { return action.client; }, "call*": "call$2", $requiredArgCount: 2, $signature: 967 }; S.editingReducer_closure113.prototype = { call$2: function(client, action) { return action.client; }, "call*": "call$2", $requiredArgCount: 2, $signature: 968 }; S.editingReducer_closure114.prototype = { call$2: function(clients, action) { return J.$index$asx(action.clients, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 969 }; S.editingReducer_closure115.prototype = { call$2: function(clients, action) { return J.$index$asx(action.clients, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 970 }; S.editingReducer_closure116.prototype = { call$2: function(clients, action) { return J.$index$asx(action.clients, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 971 }; S.editingReducer_closure117.prototype = { call$2: function(client, action) { return action.client; }, "call*": "call$2", $requiredArgCount: 2, $signature: 972 }; S.editingReducer_closure118.prototype = { call$2: function(client, action) { return action.client.rebuild$1(new S.editingReducer__closure48()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 973 }; S.editingReducer__closure48.prototype = { call$1: function(b) { b.get$_client_model$_$this()._client_model$_isChanged = true; return b; }, $signature: 40 }; S.editingReducer_closure119.prototype = { call$2: function(client, action) { return client.rebuild$1(new S.editingReducer__closure47(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 974 }; S.editingReducer__closure47.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 40 }; S.editingReducer_closure120.prototype = { call$2: function(client, action) { return client.rebuild$1(new S.editingReducer__closure46(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 975 }; S.editingReducer__closure46.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action.index; J.removeAt$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 40 }; S.editingReducer_closure121.prototype = { call$2: function(client, action) { return client.rebuild$1(new S.editingReducer__closure45(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 976 }; S.editingReducer__closure45.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action, t3 = t2.index; t2 = t2.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t3, t2); return b; }, $signature: 40 }; S.editingReducer_closure122.prototype = { call$2: function(client, action) { return T.ClientEntity_ClientEntity(null, null, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 977 }; S.editingReducer_closure123.prototype = { call$2: function(client, action) { return T.ClientEntity_ClientEntity(null, null, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 978 }; S.editingReducer_closure124.prototype = { call$2: function(client, action) { return T.ClientEntity_ClientEntity(null, null, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 979 }; S.editingReducer_closure125.prototype = { call$2: function(client, action) { return T.ClientEntity_ClientEntity(null, null, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 980 }; S._viewClientList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; S._filterClientsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterClientsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterClientsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterClientsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterClientsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterClientsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterClientsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterClientsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterClientsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; S._filterClientsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterClients_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.clientListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; S._sortClients_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; S._startListMultiselect_closure21.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; S._addToListMultiselect_closure21.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._removeFromListMultiselect_closure21.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._clearListMultiselect_closure21.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; S._archiveClientSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 403 }; S._deleteClientSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 403 }; S._restoreClientSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.clients), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_client_state$_$this(); t5 = t4._client_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._client_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 403 }; S._addClient_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.client, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new S._addClient__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 280 }; S._addClient__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 40 }; S._updateClient_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.client; t1.$indexSet(0, t2.id, t2.rebuild$1(new S._updateClient__closure())); return b; }, $signature: 280 }; S._updateClient__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 40 }; S._setLoadedClient_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.client; t1.$indexSet(0, t2.id, t2.rebuild$1(new S._setLoadedClient__closure())); return b; }, $signature: 280 }; S._setLoadedClient__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_client_model$_$this()._loadedAt = t1; return b; }, $signature: 40 }; G.memoizedDropdownClientList_closure.prototype = { call$4: function(clientMap, clientList, userMap, staticState) { return G.dropdownClientsSelector(clientMap, clientList, userMap, staticState); }, $signature: 984 }; G.dropdownClientsSelector_closure.prototype = { call$1: function(clientId) { var t1 = J.$index$asx(this.clientMap._map$_map, clientId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; G.dropdownClientsSelector_closure0.prototype = { call$2: function(clientAId, clientBId) { var t1 = this.clientMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, clientAId).compareTo$5(0, t2.$index(t1, clientBId), "name", true, this.userMap, this.staticState); }, $signature: 18 }; G.memoizedClientStatsForUser_closure.prototype = { call$2: function(userId, clientMap) { return G.clientStatsForUser(userId, clientMap); }, $signature: 677 }; G.clientStatsForUser_closure.prototype = { call$2: function(clientId, client) { if (client.assignedUserId == this.userId) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.isDeleted) ++this._box_0.countArchived; }, $signature: 234 }; G.memoizedFilteredClientList_closure.prototype = { call$7: function(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState) { return G.filteredClientsSelector(selectionState, clientMap, clientList, groupMap, clientListState, userMap, staticState); }, $signature: 988 }; G.filteredClientsSelector_closure.prototype = { call$1: function(clientId) { var t2, t3, _this = this, client = J.$index$asx(_this.clientMap._map$_map, clientId), t1 = client.groupId, group = J.$index$asx(_this.groupMap._map$_map, t1); if (group == null) group = Q.GroupEntity_GroupEntity(t1, null); if (client.id === _this.selectionState.selectedId) return true; t1 = _this.filterEntityType; if (t1 === C.EntityType_group && group.id !== _this.filterEntityId) return false; else if (t1 === C.EntityType_user && client.assignedUserId != _this.filterEntityId) return false; else if (t1 === C.EntityType_companyGateway && !J.any$1$ax(client.gatewayTokens._list, new G.filteredClientsSelector__closure(_this.filterEntityId))) return false; t1 = _this.clientListState; if (!client.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, client.customValue1)) return false; t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, client.customValue2)) return false; t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, client.customValue3)) return false; t2 = t1.custom4Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, client.customValue4)) return false; t1 = t1.filter; if (!client.matchesFilter$1(t1) && !A.matchesStrings(H.setRuntimeTypeInfo([group.name], type$.JSArray_legacy_String), t1)) return false; return true; }, $signature: 16 }; G.filteredClientsSelector__closure.prototype = { call$1: function(token) { return token.companyGatewayId === this.filterEntityId; }, $signature: 676 }; G.filteredClientsSelector_closure0.prototype = { call$2: function(clientAId, clientBId) { var _this = this, t1 = _this.clientMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.clientListState; return t2.$index(t1, clientAId).compareTo$5(0, t2.$index(t1, clientBId), t3.sortField, t3.sortAscending, _this.userMap, _this.staticState); }, $signature: 18 }; F.ClientState.prototype = { $get$1: function(_, clientId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, clientId)) return t2.$index(t1, clientId); else return T.ClientEntity_ClientEntity(clientId, null, null); }, loadClients$1: function(clients) { return this.rebuild$1(new F.ClientState_loadClients_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new F.ClientState_loadClients_closure0(), new F.ClientState_loadClients_closure1(), type$.legacy_String, type$.legacy_ClientEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; F.ClientState_loadClients_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; F.ClientState_loadClients_closure1.prototype = { call$1: function(item) { return item; }, $signature: 991 }; F.ClientState_loadClients_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 280 }; F.ClientUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; F._$ClientStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_wHc), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new F.ClientStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ClientEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_client_state$_$this(); t6 = t5._client_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._client_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_wHc)); break; case "list": t5 = result.get$_client_state$_$this(); t6 = t5._client_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._client_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_K9i; }, get$wireName: function() { return "ClientState"; } }; F._$ClientUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_W34)); } value = object.editingContact; if (value != null) { result.push("editingContact"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_5MH)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, _s5_ = "other", result = new F.ClientUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ContactEntity, t3 = type$.legacy_ClientEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_editing; if (t5 == null) { t5 = new T.ClientEntityBuilder(); t5.get$_client_model$_$this()._number = ""; t4._client_state$_editing = t5; t4 = t5; } else t4 = t5; t5 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_W34)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._client_model$_$v = t5; break; case "editingContact": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_editingContact; t4 = t5 == null ? t4._client_state$_editingContact = new T.ContactEntityBuilder() : t5; t5 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_5MH)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._client_model$_$v = t5; break; case "listUIState": t4 = result.get$_client_state$_$this(); t5 = t4._client_state$_listUIState; t4 = t5 == null ? t4._client_state$_listUIState = new Q.ListUIStateBuilder() : t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._list_ui_state$_$v = t5; break; case "selectedId": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_client_state$_$this()._client_state$_selectedId = t4; break; case "forceSelected": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_client_state$_$this()._client_state$_forceSelected = t4; break; case "tabIndex": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_client_state$_$this()._client_state$_tabIndex = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kya; }, get$wireName: function() { return "ClientUIState"; } }; F._$ClientState.prototype = { rebuild$1: function(updates) { var t1 = new F.ClientStateBuilder(); t1._client_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof F.ClientState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._client_state$__hashCode; return t1 == null ? _this._client_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; F.ClientStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_map; return t2 == null ? t1._client_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ClientEntity) : t2; }, get$list: function(_) { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_list; return t2 == null ? t1._client_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_client_state$_$this: function() { var t1, t2, _this = this, $$v = _this._client_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._client_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._client_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._client_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._client_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = F._$ClientState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ClientState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._client_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; F._$ClientUIState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof F.ClientUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.editingContact, other.editingContact) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode: function(_) { var _this = this, t1 = _this._client_state$__hashCode; return t1 == null ? _this._client_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingContact)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ClientUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingContact", _this.editingContact); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; F.ClientUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_editing; if (t2 == null) { t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._client_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$editingContact: function() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_editingContact; return t2 == null ? t1._client_state$_editingContact = new T.ContactEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_client_state$_$this(), t2 = t1._client_state$_listUIState; return t2 == null ? t1._client_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_client_state$_$this: function() { var t1, t2, _this = this, $$v = _this._client_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t2._client_model$_$v = t1; t1 = t2; } _this._client_state$_editing = t1; t1 = $$v.editingContact; if (t1 == null) t1 = null; else { t2 = new T.ContactEntityBuilder(); t2._client_model$_$v = t1; t1 = t2; } _this._client_state$_editingContact = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._client_state$_listUIState = t2; _this._client_state$_selectedId = $$v.selectedId; _this._client_state$_forceSelected = $$v.forceSelected; _this._client_state$_tabIndex = $$v.tabIndex; _this._client_state$_saveCompleter = $$v.saveCompleter; _this._client_state$_cancelCompleter = $$v.cancelCompleter; _this._client_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s13_ = "ClientUIState", _$result = null; try { _$result0 = _this._client_state$_$v; if (_$result0 == null) { t1 = _this._client_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this._client_state$_editingContact; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$listUIState().build$0(0); t4 = _this.get$_client_state$_$this()._client_state$_selectedId; t5 = _this.get$_client_state$_$this()._client_state$_forceSelected; t6 = _this.get$_client_state$_$this()._client_state$_tabIndex; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tabIndex")); t7 = _this.get$_client_state$_$this()._client_state$_saveCompleter; _$result0 = F._$ClientUIState$_(_this.get$_client_state$_$this()._client_state$_cancelCompleter, t1, t2, t5, t3, t7, t4, t6); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._client_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "editingContact"; t1 = _this._client_state$_editingContact; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._client_state$_$v = t1; return _$result; } }; F._ClientUIState_Object_EntityUIState.prototype = {}; E.SelectCompany.prototype = {$isClearClientMultiselect: 1}; E.LoadCompanySuccess.prototype = {}; E.UpdateCompany.prototype = {$isPersistUI: 1, get$company: function() { return this.company; } }; E.SaveCompanyRequest.prototype = {$isStartSaving: 1, get$company: function() { return this.company; } }; E.SaveCompanySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$company: function() { return this.company; } }; E.SaveCompanyFailure.prototype = {$isStopSaving: 1}; E.AddCompany.prototype = {$isStartSaving: 1}; E.AddCompanySuccess.prototype = {$isStopSaving: 1}; E.DeleteCompanyRequest.prototype = {$isStartSaving: 1}; E.DeleteCompanySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.DeleteCompanyFailure.prototype = {$isStopSaving: 1}; E.PurgeDataRequest.prototype = {$isStartSaving: 1}; E.PurgeDataSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.PurgeDataFailure.prototype = {$isStopSaving: 1}; E.UpdateCompanyLanguage.prototype = {}; E.SaveCompanyDocumentRequest.prototype = {$isStartSaving: 1}; E.SaveCompanyDocumentFailure.prototype = {$isStopSaving: 1}; E.SetDefaultCompanyRequest.prototype = {$isStartSaving: 1}; E.SetDefaultCompanySuccess.prototype = {$isStopSaving: 1}; E.SetDefaultCompanyFailure.prototype = {$isStopSaving: 1}; T.companyReducer_closure.prototype = { call$1: function(b) { var t4, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$lastUpdatedReducer().call$2(t1.lastUpdated, t2); b.get$_company_state$_$this()._lastUpdated = t3; t3 = b.get$userCompany(); t4 = $.$get$userCompanyEntityReducer().call$2(t1.userCompany, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._company_model$_$v = t4; t3 = b.get$documentState(); t4 = $.$get$documentsReducer().call$2(t1.documentState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._document_state$_$v = t4; t3 = b.get$clientState(); t4 = $.$get$clientsReducer().call$2(t1.clientState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._client_state$_$v = t4; t3 = b.get$productState(); t4 = $.$get$productsReducer().call$2(t1.productState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._product_state$_$v = t4; t3 = b.get$invoiceState(); t4 = $.$get$invoicesReducer().call$2(t1.invoiceState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._invoice_state$_$v = t4; t3 = b.get$expenseState(); t4 = $.$get$expensesReducer().call$2(t1.expenseState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._expense_state$_$v = t4; t3 = b.get$vendorState(); t4 = $.$get$vendorsReducer().call$2(t1.vendorState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._vendor_state$_$v = t4; t3 = b.get$taskState(); t4 = $.$get$tasksReducer().call$2(t1.taskState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._task_state$_$v = t4; t3 = b.get$recurringExpenseState(); t4 = $.$get$recurringExpensesReducer().call$2(t1.recurringExpenseState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._recurring_expense_state$_$v = t4; t3 = b.get$subscriptionState(); t4 = $.$get$subscriptionsReducer().call$2(t1.subscriptionState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._subscription_state$_$v = t4; t3 = b.get$taskStatusState(); t4 = $.$get$taskStatusesReducer().call$2(t1.taskStatusState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._task_status_state$_$v = t4; t3 = b.get$expenseCategoryState(); t4 = $.$get$expenseCategoriesReducer().call$2(t1.expenseCategoryState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._expense_category_state$_$v = t4; t3 = b.get$recurringInvoiceState(); t4 = $.$get$recurringInvoicesReducer().call$2(t1.recurringInvoiceState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._recurring_invoice_state$_$v = t4; t3 = b.get$webhookState(); t4 = $.$get$webhooksReducer().call$2(t1.webhookState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._webhook_state$_$v = t4; t3 = b.get$tokenState(); t4 = $.$get$tokensReducer().call$2(t1.tokenState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._token_state$_$v = t4; t3 = b.get$paymentTermState(); t4 = $.$get$paymentTermsReducer().call$2(t1.paymentTermState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._payment_term_state$_$v = t4; t3 = b.get$designState(); t4 = $.$get$designsReducer().call$2(t1.designState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._design_state$_$v = t4; t3 = b.get$creditState(); t4 = $.$get$creditsReducer().call$2(t1.creditState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._credit_state$_$v = t4; t3 = b.get$userState(); t4 = $.$get$usersReducer().call$2(t1.userState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._user_state$_$v = t4; t3 = b.get$taxRateState(); t4 = $.$get$taxRatesReducer().call$2(t1.taxRateState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._tax_rate_state$_$v = t4; t3 = b.get$companyGatewayState(); t4 = $.$get$companyGatewaysReducer().call$2(t1.companyGatewayState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._company_gateway_state$_$v = t4; t3 = b.get$projectState(); t4 = $.$get$projectsReducer().call$2(t1.projectState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._project_state$_$v = t4; t3 = b.get$paymentState(); t4 = $.$get$paymentsReducer().call$2(t1.paymentState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._payment_state$_$v = t4; t3 = b.get$quoteState(); t4 = $.$get$quotesReducer().call$2(t1.quoteState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._quote_state$_$v = t4; t3 = b.get$groupState(); t2 = $.$get$groupsReducer().call$2(t1.groupState, t2); if (t2 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._group_state$_$v = t2; return b; }, $signature: 992 }; T.userCompanyEntityReducer_closure.prototype = { call$2: function(userCompany, action) { var t3, t1 = userCompany.settings.reportSettings, t2 = action.report; t1 = t1._map$_map; t3 = J.getInterceptor$x(t1); if (t3.containsKey$1(t1, t2)) return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure5(action, t3.$index(t1, t2))); else return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure6(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 993 }; T.userCompanyEntityReducer__closure5.prototype = { call$1: function(b) { var t1 = this.action, t2 = this.settings; b.get$settings().get$reportSettings().$indexSet(0, t1.report, t2.rebuild$1(new T.userCompanyEntityReducer___closure(t1, t2))); return b; }, $signature: 90 }; T.userCompanyEntityReducer___closure.prototype = { call$1: function(b) { var t4, t5, t0, t6, t1 = this.action, t2 = t1.sortColumn, t3 = t2 == null; if (t3) { t4 = this.settings; t5 = t4.sortAscending; t0 = t5; t5 = t4; t4 = t0; } else { t4 = this.settings; t5 = t2 !== t4.sortColumn || !t4.sortAscending; t0 = t5; t5 = t4; t4 = t0; } b.get$_company_model$_$this()._company_model$_sortAscending = t4; t1 = t1.sortTotalsIndex; t4 = t1 == null; if (t4) t6 = t5.sortTotalsAscending; else t6 = t1 !== t5.sortTotalsIndex || !t5.sortTotalsAscending; b.get$_company_model$_$this()._sortTotalsAscending = t6; if (t3) t2 = t5.sortColumn; b.get$_company_model$_$this()._sortColumn = t2; if (t4) t1 = t5.sortTotalsIndex; b.get$_company_model$_$this()._sortTotalsIndex = t1; return b; }, $signature: 675 }; T.userCompanyEntityReducer__closure6.prototype = { call$1: function(b) { var t1 = this.action; b.get$settings().get$reportSettings().$indexSet(0, t1.report, A.ReportSettingsEntity_ReportSettingsEntity(t1.sortColumn, t1.sortTotalsIndex)); return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure0.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure4(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 996 }; T.userCompanyEntityReducer__closure4.prototype = { call$1: function(b) { var t1 = b.get$user(), t2 = this.action.user; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t2; t1 = b.get$settings(); t2 = t2.userCompany.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure1.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure3(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 997 }; T.userCompanyEntityReducer__closure3.prototype = { call$1: function(b) { var t1 = b.get$user(), t2 = this.action.user; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t2; return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure2.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure2(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 998 }; T.userCompanyEntityReducer__closure2.prototype = { call$1: function(b) { var t1 = b.get$user(), t2 = this.action.user; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t2; return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure3.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure1()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 999 }; T.userCompanyEntityReducer__closure1.prototype = { call$1: function(b) { b.get$user().get$_user_model$_$this()._isTwoFactorEnabled = false; return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure4.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure0(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1000 }; T.userCompanyEntityReducer__closure0.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.action.userCompany.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; T.userCompanyEntityReducer_closure5.prototype = { call$2: function(userCompany, action) { return userCompany.rebuild$1(new T.userCompanyEntityReducer__closure(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1001 }; T.userCompanyEntityReducer__closure.prototype = { call$1: function(b) { var t1 = b.get$company().get$settings(), t2 = this.action.languageId; t1.get$_settings_model$_$this()._languageId = t2; return b; }, $signature: 90 }; T.loadCompanySuccessReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = A.UserSettingsEntity_UserSettingsEntity(); t1._company_model$_$v = t2; b.get$user().get$userCompany().get$notifications().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String)); return b; }, $signature: 90 }; T.loadCompanySuccessReducer_closure0.prototype = { call$1: function(b) { var t1 = b.get$company(); t1.get$taskStatuses().replace$1(0, H.setRuntimeTypeInfo([], type$.JSArray_legacy_TaskStatusEntity)); t1.get$taskStatusMap().replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_TaskStatusEntity)); t1.get$expenseCategories().replace$1(0, H.setRuntimeTypeInfo([], type$.JSArray_legacy_ExpenseCategoryEntity)); return t1; }, $signature: 1002 }; T.loadCompanySuccessReducer_closure1.prototype = { call$1: function(b) { var t1 = b.get$company(), t2 = this._box_0.userCompany.company.get$coreCompany(); if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; T.saveCompanySuccessReducer_closure.prototype = { call$1: function(b) { var t1 = this._box_0; b.get$taxRates().replace$1(0, t1.userCompany.company.taxRates); b.get$taskStatuses().replace$1(0, t1.userCompany.company.taskStatuses); b.get$taskStatusMap().replace$1(0, t1.userCompany.company.taskStatusMap); b.get$expenseCategories().replace$1(0, t1.userCompany.company.expenseCategories); b.get$users().replace$1(0, t1.userCompany.company.users); return b; }, $signature: 22 }; T.saveCompanySuccessReducer_closure0.prototype = { call$1: function(b) { var t1 = b.get$company(), t2 = this.company; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; T.lastUpdatedReducer_closure.prototype = { call$2: function(state, action) { return action.userCompany.company.isLarge && state === 0 ? 0 : Date.now(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1003 }; T.lastUpdatedReducer_closure0.prototype = { call$2: function(state, action) { return Date.now(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1004 }; U.memoizedDropdownExpenseCategoriesList_closure.prototype = { call$2: function(categoryMap, categoryList) { return U.dropdownExpenseCategoriesSelector(categoryMap, categoryList); }, $signature: 1005 }; U.dropdownExpenseCategoriesSelector_closure.prototype = { call$1: function(categoryId) { var t1 = J.$index$asx(this.categoryMap._map$_map, categoryId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; U.dropdownExpenseCategoriesSelector_closure0.prototype = { call$2: function(categoryAId, categoryBId) { var t1 = this.categoryMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, categoryAId).compareTo$3$expenseCategory$sortAscending$sortField(0, t2.$index(t1, categoryBId), true, "name"); }, $signature: 18 }; U.memoizedHasMultipleCurrencies_closure.prototype = { call$3: function(company, clientMap, groupMap) { return J.get$length$asx($.$get$memoizedGetCurrencyIds().call$3(company, clientMap, groupMap)) > 1; }, $signature: 1006 }; U.memoizedGetCurrencyIds_closure.prototype = { call$3: function(company, clientMap, groupMap) { return U.getCurrencyIds(company, clientMap, groupMap); }, $signature: 1007 }; U.getCurrencyIds_closure.prototype = { call$2: function(clientId, client) { var currencyId, t1 = client.groupId, group = J.$index$asx(this.groupMap._map$_map, t1); if (!client.isDeleted) { if (client.get$hasCurrency()) currencyId = client.settings.currencyId; else currencyId = group != null && group.get$hasCurrency() ? group.settings.currencyId : null; if (currencyId != null && !C.JSArray_methods.contains$1(this.currencyIds, currencyId)) this.currencyIds.push(currencyId); } }, $signature: 234 }; U.memoizedFilteredSelector_closure.prototype = { call$2: function(filter, state) { return U.filteredSelector(filter, state); }, $signature: 1008 }; U.filteredSelector_closure.prototype = { call$1: function(productId) { return J.$index$asx(this.state.productState.map._map$_map, productId); }, $signature: 301 }; U.filteredSelector_closure0.prototype = { call$1: function(product) { return product.matchesFilter$1(this.filter); }, $signature: 1010 }; U.filteredSelector_closure1.prototype = { call$1: function(clientId) { return J.$index$asx(this.state.clientState.map._map$_map, clientId); }, $signature: 321 }; U.filteredSelector_closure2.prototype = { call$1: function(client) { return client.matchesFilter$1(this.filter); }, $signature: 1011 }; U.filteredSelector_closure3.prototype = { call$1: function(quoteId) { return J.$index$asx(this.state.quoteState.map._map$_map, quoteId); }, $signature: 64 }; U.filteredSelector_closure4.prototype = { call$1: function(quote) { return quote.matchesFilter$1(this.filter); }, $signature: 189 }; U.filteredSelector_closure5.prototype = { call$1: function(paymentId) { return J.$index$asx(this.state.paymentState.map._map$_map, paymentId); }, $signature: 190 }; U.filteredSelector_closure6.prototype = { call$1: function(payment) { return payment.matchesFilter$1(this.filter); }, $signature: 401 }; U.filteredSelector_closure7.prototype = { call$1: function(projectId) { return J.$index$asx(this.state.projectState.map._map$_map, projectId); }, $signature: 254 }; U.filteredSelector_closure8.prototype = { call$1: function(project) { return project.matchesFilter$1(this.filter); }, $signature: 1017 }; U.filteredSelector_closure9.prototype = { call$1: function(taskId) { return J.$index$asx(this.state.taskState.map._map$_map, taskId); }, $signature: 211 }; U.filteredSelector_closure10.prototype = { call$1: function(task) { return task.matchesFilter$1(this.filter); }, $signature: 1019 }; U.filteredSelector_closure11.prototype = { call$1: function(invoiceId) { return J.$index$asx(this.state.invoiceState.map._map$_map, invoiceId); }, $signature: 64 }; U.filteredSelector_closure12.prototype = { call$1: function(invoice) { return invoice.matchesFilter$1(this.filter); }, $signature: 189 }; U.filteredSelector_closure13.prototype = { call$2: function(entityA, entityB) { return J.compareTo$1$ns(entityA.get$listDisplayName(), entityB.get$listDisplayName()); }, $signature: 672 }; B.UserCompanyState.prototype = { get$company: function() { return this.userCompany.company; }, get$user: function() { return this.userCompany.user; }, get$token: function() { return this.userCompany.token; }, get$isStale: function() { var t1 = this.lastUpdated; if (t1 <= 0) return true; return Date.now() - t1 > 900000; } }; B.SettingsUIState.prototype = { get$settings: function() { var _this = this, t1 = _this.entityType; if (t1 === C.EntityType_client && _this.client != null) return _this.client.settings; else if (t1 === C.EntityType_group && _this.group != null) return _this.group.settings; else return _this.company.settings; } }; B._$UserCompanyStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["lastUpdated", serializers.serialize$2$specifiedType(object.lastUpdated, C.FullType_kjq), "documentState", serializers.serialize$2$specifiedType(object.documentState, C.FullType_61h), "productState", serializers.serialize$2$specifiedType(object.productState, C.FullType_HZ2), "clientState", serializers.serialize$2$specifiedType(object.clientState, C.FullType_MIo), "invoiceState", serializers.serialize$2$specifiedType(object.invoiceState, C.FullType_mXg), "expenseState", serializers.serialize$2$specifiedType(object.expenseState, C.FullType_5OF), "vendorState", serializers.serialize$2$specifiedType(object.vendorState, C.FullType_xI0), "taskState", serializers.serialize$2$specifiedType(object.taskState, C.FullType_SQp), "projectState", serializers.serialize$2$specifiedType(object.projectState, C.FullType_cEX), "paymentState", serializers.serialize$2$specifiedType(object.paymentState, C.FullType_sgl), "quoteState", serializers.serialize$2$specifiedType(object.quoteState, C.FullType_yqa), "recurringExpenseState", serializers.serialize$2$specifiedType(object.recurringExpenseState, C.FullType_nrV), "subscriptionState", serializers.serialize$2$specifiedType(object.subscriptionState, C.FullType_3BG), "taskStatusState", serializers.serialize$2$specifiedType(object.taskStatusState, C.FullType_A6W), "expenseCategoryState", serializers.serialize$2$specifiedType(object.expenseCategoryState, C.FullType_4qm), "recurringInvoiceState", serializers.serialize$2$specifiedType(object.recurringInvoiceState, C.FullType_Elr), "webhookState", serializers.serialize$2$specifiedType(object.webhookState, C.FullType_EAC), "tokenState", serializers.serialize$2$specifiedType(object.tokenState, C.FullType_ouN), "paymentTermState", serializers.serialize$2$specifiedType(object.paymentTermState, C.FullType_KIj), "designState", serializers.serialize$2$specifiedType(object.designState, C.FullType_QKT), "creditState", serializers.serialize$2$specifiedType(object.creditState, C.FullType_lqU), "userState", serializers.serialize$2$specifiedType(object.userState, C.FullType_d4x), "taxRateState", serializers.serialize$2$specifiedType(object.taxRateState, C.FullType_dIX), "companyGatewayState", serializers.serialize$2$specifiedType(object.companyGatewayState, C.FullType_gGD), "groupState", serializers.serialize$2$specifiedType(object.groupState, C.FullType_SNv)], type$.JSArray_legacy_Object), value = object.userCompany; if (value != null) { result.push("userCompany"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_whX)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, key, value, t26, t27, _s5_ = "other", result = new B.UserCompanyStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_GroupState, t2 = type$.legacy_CompanyGatewayState, t3 = type$.legacy_TaxRateState, t4 = type$.legacy_UserState, t5 = type$.legacy_CreditState, t6 = type$.legacy_DesignState, t7 = type$.legacy_PaymentTermState, t8 = type$.legacy_TokenState, t9 = type$.legacy_WebhookState, t10 = type$.legacy_RecurringInvoiceState, t11 = type$.legacy_ExpenseCategoryState, t12 = type$.legacy_TaskStatusState, t13 = type$.legacy_SubscriptionState, t14 = type$.legacy_RecurringExpenseState, t15 = type$.legacy_QuoteState, t16 = type$.legacy_PaymentState, t17 = type$.legacy_ProjectState, t18 = type$.legacy_TaskState, t19 = type$.legacy_VendorState, t20 = type$.legacy_ExpenseState, t21 = type$.legacy_InvoiceState, t22 = type$.legacy_ClientState, t23 = type$.legacy_ProductState, t24 = type$.legacy_DocumentState, t25 = type$.legacy_UserCompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "lastUpdated": t26 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_state$_$this()._lastUpdated = t26; break; case "userCompany": t26 = result.get$_company_state$_$this(); t27 = t26._company_state$_userCompany; if (t27 == null) { t27 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t27); t26._company_state$_userCompany = t27; t26 = t27; } else t26 = t27; t27 = t25._as(serializers.deserialize$2$specifiedType(value, C.FullType_whX)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._company_model$_$v = t27; break; case "documentState": t26 = result.get$_company_state$_$this(); t27 = t26._documentState; t26 = t27 == null ? t26._documentState = new Q.DocumentStateBuilder() : t27; t27 = t24._as(serializers.deserialize$2$specifiedType(value, C.FullType_61h)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._document_state$_$v = t27; break; case "productState": t26 = result.get$_company_state$_$this(); t27 = t26._productState; t26 = t27 == null ? t26._productState = new Y.ProductStateBuilder() : t27; t27 = t23._as(serializers.deserialize$2$specifiedType(value, C.FullType_HZ2)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._product_state$_$v = t27; break; case "clientState": t26 = result.get$_company_state$_$this(); t27 = t26._clientState; t26 = t27 == null ? t26._clientState = new F.ClientStateBuilder() : t27; t27 = t22._as(serializers.deserialize$2$specifiedType(value, C.FullType_MIo)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._client_state$_$v = t27; break; case "invoiceState": t26 = result.get$_company_state$_$this(); t27 = t26._invoiceState; t26 = t27 == null ? t26._invoiceState = new B.InvoiceStateBuilder() : t27; t27 = t21._as(serializers.deserialize$2$specifiedType(value, C.FullType_mXg)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._invoice_state$_$v = t27; break; case "expenseState": t26 = result.get$_company_state$_$this(); t27 = t26._expenseState; t26 = t27 == null ? t26._expenseState = new R.ExpenseStateBuilder() : t27; t27 = t20._as(serializers.deserialize$2$specifiedType(value, C.FullType_5OF)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._expense_state$_$v = t27; break; case "vendorState": t26 = result.get$_company_state$_$this(); t27 = t26._vendorState; t26 = t27 == null ? t26._vendorState = new Y.VendorStateBuilder() : t27; t27 = t19._as(serializers.deserialize$2$specifiedType(value, C.FullType_xI0)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._vendor_state$_$v = t27; break; case "taskState": t26 = result.get$_company_state$_$this(); t27 = t26._taskState; t26 = t27 == null ? t26._taskState = new M.TaskStateBuilder() : t27; t27 = t18._as(serializers.deserialize$2$specifiedType(value, C.FullType_SQp)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._task_state$_$v = t27; break; case "projectState": t26 = result.get$_company_state$_$this(); t27 = t26._projectState; t26 = t27 == null ? t26._projectState = new D.ProjectStateBuilder() : t27; t27 = t17._as(serializers.deserialize$2$specifiedType(value, C.FullType_cEX)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._project_state$_$v = t27; break; case "paymentState": t26 = result.get$_company_state$_$this(); t27 = t26._paymentState; t26 = t27 == null ? t26._paymentState = new L.PaymentStateBuilder() : t27; t27 = t16._as(serializers.deserialize$2$specifiedType(value, C.FullType_sgl)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._payment_state$_$v = t27; break; case "quoteState": t26 = result.get$_company_state$_$this(); t27 = t26._quoteState; t26 = t27 == null ? t26._quoteState = new G.QuoteStateBuilder() : t27; t27 = t15._as(serializers.deserialize$2$specifiedType(value, C.FullType_yqa)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._quote_state$_$v = t27; break; case "recurringExpenseState": t26 = result.get$_company_state$_$this(); t27 = t26._recurringExpenseState; t26 = t27 == null ? t26._recurringExpenseState = new K.RecurringExpenseStateBuilder() : t27; t27 = t14._as(serializers.deserialize$2$specifiedType(value, C.FullType_nrV)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._recurring_expense_state$_$v = t27; break; case "subscriptionState": t26 = result.get$_company_state$_$this(); t27 = t26._subscriptionState; t26 = t27 == null ? t26._subscriptionState = new M.SubscriptionStateBuilder() : t27; t27 = t13._as(serializers.deserialize$2$specifiedType(value, C.FullType_3BG)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._subscription_state$_$v = t27; break; case "taskStatusState": t26 = result.get$_company_state$_$this(); t27 = t26._taskStatusState; t26 = t27 == null ? t26._taskStatusState = new L.TaskStatusStateBuilder() : t27; t27 = t12._as(serializers.deserialize$2$specifiedType(value, C.FullType_A6W)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._task_status_state$_$v = t27; break; case "expenseCategoryState": t26 = result.get$_company_state$_$this(); t27 = t26._expenseCategoryState; t26 = t27 == null ? t26._expenseCategoryState = new Q.ExpenseCategoryStateBuilder() : t27; t27 = t11._as(serializers.deserialize$2$specifiedType(value, C.FullType_4qm)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._expense_category_state$_$v = t27; break; case "recurringInvoiceState": t26 = result.get$_company_state$_$this(); t27 = t26._recurringInvoiceState; t26 = t27 == null ? t26._recurringInvoiceState = new Q.RecurringInvoiceStateBuilder() : t27; t27 = t10._as(serializers.deserialize$2$specifiedType(value, C.FullType_Elr)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._recurring_invoice_state$_$v = t27; break; case "webhookState": t26 = result.get$_company_state$_$this(); t27 = t26._webhookState; t26 = t27 == null ? t26._webhookState = new V.WebhookStateBuilder() : t27; t27 = t9._as(serializers.deserialize$2$specifiedType(value, C.FullType_EAC)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._webhook_state$_$v = t27; break; case "tokenState": t26 = result.get$_company_state$_$this(); t27 = t26._tokenState; t26 = t27 == null ? t26._tokenState = new N.TokenStateBuilder() : t27; t27 = t8._as(serializers.deserialize$2$specifiedType(value, C.FullType_ouN)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._token_state$_$v = t27; break; case "paymentTermState": t26 = result.get$_company_state$_$this(); t27 = t26._paymentTermState; t26 = t27 == null ? t26._paymentTermState = new N.PaymentTermStateBuilder() : t27; t27 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_KIj)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._payment_term_state$_$v = t27; break; case "designState": t26 = result.get$_company_state$_$this(); t27 = t26._designState; t26 = t27 == null ? t26._designState = new Y.DesignStateBuilder() : t27; t27 = t6._as(serializers.deserialize$2$specifiedType(value, C.FullType_QKT)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._design_state$_$v = t27; break; case "creditState": t26 = result.get$_company_state$_$this(); t27 = t26._creditState; t26 = t27 == null ? t26._creditState = new G.CreditStateBuilder() : t27; t27 = t5._as(serializers.deserialize$2$specifiedType(value, C.FullType_lqU)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._credit_state$_$v = t27; break; case "userState": t26 = result.get$_company_state$_$this(); t27 = t26._userState; t26 = t27 == null ? t26._userState = new Q.UserStateBuilder() : t27; t27 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_d4x)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._user_state$_$v = t27; break; case "taxRateState": t26 = result.get$_company_state$_$this(); t27 = t26._taxRateState; t26 = t27 == null ? t26._taxRateState = new Q.TaxRateStateBuilder() : t27; t27 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_dIX)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._tax_rate_state$_$v = t27; break; case "companyGatewayState": t26 = result.get$_company_state$_$this(); t27 = t26._companyGatewayState; t26 = t27 == null ? t26._companyGatewayState = new U.CompanyGatewayStateBuilder() : t27; t27 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_gGD)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._company_gateway_state$_$v = t27; break; case "groupState": t26 = result.get$_company_state$_$this(); t27 = t26._groupState; t26 = t27 == null ? t26._groupState = new E.GroupStateBuilder() : t27; t27 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_SNv)); if (t27 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t26._group_state$_$v = t27; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uEs; }, get$wireName: function() { return "UserCompanyState"; } }; B._$SettingsUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["company", serializers.serialize$2$specifiedType(object.company, C.FullType_a9P), "origCompany", serializers.serialize$2$specifiedType(object.origCompany, C.FullType_a9P), "client", serializers.serialize$2$specifiedType(object.client, C.FullType_W34), "origClient", serializers.serialize$2$specifiedType(object.origClient, C.FullType_W34), "group", serializers.serialize$2$specifiedType(object.group, C.FullType_Iiu), "origGroup", serializers.serialize$2$specifiedType(object.origGroup, C.FullType_Iiu), "user", serializers.serialize$2$specifiedType(object.user, C.FullType_oyU), "origUser", serializers.serialize$2$specifiedType(object.origUser, C.FullType_oyU), "entityType", serializers.serialize$2$specifiedType(object.entityType, C.FullType_qBb), "isChanged", serializers.serialize$2$specifiedType(object.isChanged, C.FullType_MtR), "updatedAt", serializers.serialize$2$specifiedType(object.updatedAt, C.FullType_kjq), "section", serializers.serialize$2$specifiedType(object.section, C.FullType_h8g), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq), "selectedTemplate", serializers.serialize$2$specifiedType(object.selectedTemplate, C.FullType_t81), "filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, key, value, t9, t10, t11, t12, t13, _s5_ = "other", result = new B.SettingsUIStateBuilder(); result.get$_company_state$_$this()._selectedTemplate = C.EmailTemplate_invoice; iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EmailTemplate, t2 = type$.legacy_EntityType, t3 = type$.legacy_UserEntity, t4 = type$.legacy_GroupEntity, t5 = type$.legacy_DocumentEntity, t6 = type$.ListBuilder_legacy_DocumentEntity, t7 = type$.legacy_ClientEntity, t8 = type$.legacy_CompanyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "company": t9 = result.get$_company_state$_$this(); t10 = t9._company; if (t10 == null) { t10 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t10); t9._company = t10; t9 = t10; } else t9 = t10; t10 = t8._as(serializers.deserialize$2$specifiedType(value, C.FullType_a9P)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._company_model$_$v = t10; break; case "origCompany": t9 = result.get$_company_state$_$this(); t10 = t9._origCompany; if (t10 == null) { t10 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t10); t9._origCompany = t10; t9 = t10; } else t9 = t10; t10 = t8._as(serializers.deserialize$2$specifiedType(value, C.FullType_a9P)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._company_model$_$v = t10; break; case "client": t9 = result.get$_company_state$_$this(); t10 = t9._client; if (t10 == null) { t10 = new T.ClientEntityBuilder(); t10.get$_client_model$_$this()._number = ""; t9._client = t10; t9 = t10; } else t9 = t10; t10 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_W34)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._client_model$_$v = t10; break; case "origClient": t9 = result.get$_company_state$_$this(); t10 = t9._origClient; if (t10 == null) { t10 = new T.ClientEntityBuilder(); t10.get$_client_model$_$this()._number = ""; t9._origClient = t10; t9 = t10; } else t9 = t10; t10 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_W34)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._client_model$_$v = t10; break; case "group": t9 = result.get$_company_state$_$this(); t10 = t9._company_state$_group; if (t10 == null) { t10 = new Q.GroupEntityBuilder(); t11 = t10.get$_group_model$_$this(); t12 = t11._group_model$_documents; if (t12 == null) { t12 = new D.ListBuilder(t6); t12.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t11._group_model$_documents = t12; t11 = t12; } else t11 = t12; t12 = D.BuiltList_BuiltList$from(C.List_empty, t5); t13 = t11.$ti; if (t13._eval$1("_BuiltList<1>")._is(t12)) { t11.__ListBuilder__list = t12._list; t11._listOwner = t12; } else { t11.__ListBuilder__list = P.List_List$from(t12, true, t13._precomputed1); t11._listOwner = null; } t9._company_state$_group = t10; t9 = t10; } else t9 = t10; t10 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iiu)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._group_model$_$v = t10; break; case "origGroup": t9 = result.get$_company_state$_$this(); t10 = t9._origGroup; if (t10 == null) { t10 = new Q.GroupEntityBuilder(); t11 = t10.get$_group_model$_$this(); t12 = t11._group_model$_documents; if (t12 == null) { t12 = new D.ListBuilder(t6); t12.__ListBuilder__list = P.List_List$from(C.List_empty, true, t5); t11._group_model$_documents = t12; t11 = t12; } else t11 = t12; t12 = D.BuiltList_BuiltList$from(C.List_empty, t5); t13 = t11.$ti; if (t13._eval$1("_BuiltList<1>")._is(t12)) { t11.__ListBuilder__list = t12._list; t11._listOwner = t12; } else { t11.__ListBuilder__list = P.List_List$from(t12, true, t13._precomputed1); t11._listOwner = null; } t9._origGroup = t10; t9 = t10; } else t9 = t10; t10 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iiu)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._group_model$_$v = t10; break; case "user": t9 = result.get$_company_state$_$this(); t10 = t9._user; if (t10 == null) { t10 = new B.UserEntityBuilder(); t10.get$_user_model$_$this()._isTwoFactorEnabled = false; t10.get$_user_model$_$this()._hasPassword = false; t10.get$_user_model$_$this()._password = ""; t10.get$_user_model$_$this()._lastEmailAddress = ""; t10.get$_user_model$_$this()._oauthUserToken = ""; t9._user = t10; t9 = t10; } else t9 = t10; t10 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_oyU)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._user_model$_$v = t10; break; case "origUser": t9 = result.get$_company_state$_$this(); t10 = t9._origUser; if (t10 == null) { t10 = new B.UserEntityBuilder(); t10.get$_user_model$_$this()._isTwoFactorEnabled = false; t10.get$_user_model$_$this()._hasPassword = false; t10.get$_user_model$_$this()._password = ""; t10.get$_user_model$_$this()._lastEmailAddress = ""; t10.get$_user_model$_$this()._oauthUserToken = ""; t9._origUser = t10; t9 = t10; } else t9 = t10; t10 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_oyU)); if (t10 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t9._user_model$_$v = t10; break; case "entityType": t9 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_company_state$_$this()._entityType = t9; break; case "isChanged": t9 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_state$_$this()._isChanged = t9; break; case "updatedAt": t9 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_state$_$this()._updatedAt = t9; break; case "section": t9 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_state$_$this()._section = t9; break; case "tabIndex": t9 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_state$_$this()._tabIndex = t9; break; case "selectedTemplate": t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_t81)); result.get$_company_state$_$this()._selectedTemplate = t9; break; case "filter": t9 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_state$_$this()._company_state$_filter = t9; break; case "filterClearedAt": t9 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_state$_$this()._company_state$_filterClearedAt = t9; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_SFj; }, get$wireName: function() { return "SettingsUIState"; } }; B._$UserCompanyState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.UserCompanyState && _this.lastUpdated === other.lastUpdated && J.$eq$(_this.userCompany, other.userCompany) && J.$eq$(_this.documentState, other.documentState) && J.$eq$(_this.productState, other.productState) && J.$eq$(_this.clientState, other.clientState) && J.$eq$(_this.invoiceState, other.invoiceState) && J.$eq$(_this.expenseState, other.expenseState) && J.$eq$(_this.vendorState, other.vendorState) && J.$eq$(_this.taskState, other.taskState) && J.$eq$(_this.projectState, other.projectState) && J.$eq$(_this.paymentState, other.paymentState) && J.$eq$(_this.quoteState, other.quoteState) && J.$eq$(_this.recurringExpenseState, other.recurringExpenseState) && J.$eq$(_this.subscriptionState, other.subscriptionState) && J.$eq$(_this.taskStatusState, other.taskStatusState) && J.$eq$(_this.expenseCategoryState, other.expenseCategoryState) && J.$eq$(_this.recurringInvoiceState, other.recurringInvoiceState) && J.$eq$(_this.webhookState, other.webhookState) && J.$eq$(_this.tokenState, other.tokenState) && J.$eq$(_this.paymentTermState, other.paymentTermState) && J.$eq$(_this.designState, other.designState) && J.$eq$(_this.creditState, other.creditState) && J.$eq$(_this.userState, other.userState) && J.$eq$(_this.taxRateState, other.taxRateState) && J.$eq$(_this.companyGatewayState, other.companyGatewayState) && J.$eq$(_this.groupState, other.groupState); }, get$hashCode: function(_) { var _this = this, t1 = _this._company_state$__hashCode; return t1 == null ? _this._company_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSInt_methods.get$hashCode(_this.lastUpdated)), J.get$hashCode$(_this.userCompany)), J.get$hashCode$(_this.documentState)), J.get$hashCode$(_this.productState)), J.get$hashCode$(_this.clientState)), J.get$hashCode$(_this.invoiceState)), J.get$hashCode$(_this.expenseState)), J.get$hashCode$(_this.vendorState)), J.get$hashCode$(_this.taskState)), J.get$hashCode$(_this.projectState)), J.get$hashCode$(_this.paymentState)), J.get$hashCode$(_this.quoteState)), J.get$hashCode$(_this.recurringExpenseState)), J.get$hashCode$(_this.subscriptionState)), J.get$hashCode$(_this.taskStatusState)), J.get$hashCode$(_this.expenseCategoryState)), J.get$hashCode$(_this.recurringInvoiceState)), J.get$hashCode$(_this.webhookState)), J.get$hashCode$(_this.tokenState)), J.get$hashCode$(_this.paymentTermState)), J.get$hashCode$(_this.designState)), J.get$hashCode$(_this.creditState)), J.get$hashCode$(_this.userState)), J.get$hashCode$(_this.taxRateState)), J.get$hashCode$(_this.companyGatewayState)), J.get$hashCode$(_this.groupState))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserCompanyState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "lastUpdated", _this.lastUpdated); t2.add$2(t1, "userCompany", _this.userCompany); t2.add$2(t1, "documentState", _this.documentState); t2.add$2(t1, "productState", _this.productState); t2.add$2(t1, "clientState", _this.clientState); t2.add$2(t1, "invoiceState", _this.invoiceState); t2.add$2(t1, "expenseState", _this.expenseState); t2.add$2(t1, "vendorState", _this.vendorState); t2.add$2(t1, "taskState", _this.taskState); t2.add$2(t1, "projectState", _this.projectState); t2.add$2(t1, "paymentState", _this.paymentState); t2.add$2(t1, "quoteState", _this.quoteState); t2.add$2(t1, "recurringExpenseState", _this.recurringExpenseState); t2.add$2(t1, "subscriptionState", _this.subscriptionState); t2.add$2(t1, "taskStatusState", _this.taskStatusState); t2.add$2(t1, "expenseCategoryState", _this.expenseCategoryState); t2.add$2(t1, "recurringInvoiceState", _this.recurringInvoiceState); t2.add$2(t1, "webhookState", _this.webhookState); t2.add$2(t1, "tokenState", _this.tokenState); t2.add$2(t1, "paymentTermState", _this.paymentTermState); t2.add$2(t1, "designState", _this.designState); t2.add$2(t1, "creditState", _this.creditState); t2.add$2(t1, "userState", _this.userState); t2.add$2(t1, "taxRateState", _this.taxRateState); t2.add$2(t1, "companyGatewayState", _this.companyGatewayState); t2.add$2(t1, "groupState", _this.groupState); return t2.toString$0(t1); } }; B.UserCompanyStateBuilder.prototype = { get$userCompany: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._company_state$_userCompany; if (t2 == null) { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t1._company_state$_userCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$documentState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._documentState; return t2 == null ? t1._documentState = new Q.DocumentStateBuilder() : t2; }, get$productState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._productState; return t2 == null ? t1._productState = new Y.ProductStateBuilder() : t2; }, get$clientState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._clientState; return t2 == null ? t1._clientState = new F.ClientStateBuilder() : t2; }, get$invoiceState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._invoiceState; return t2 == null ? t1._invoiceState = new B.InvoiceStateBuilder() : t2; }, get$expenseState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._expenseState; return t2 == null ? t1._expenseState = new R.ExpenseStateBuilder() : t2; }, get$vendorState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._vendorState; return t2 == null ? t1._vendorState = new Y.VendorStateBuilder() : t2; }, get$taskState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._taskState; return t2 == null ? t1._taskState = new M.TaskStateBuilder() : t2; }, get$projectState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._projectState; return t2 == null ? t1._projectState = new D.ProjectStateBuilder() : t2; }, get$paymentState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._paymentState; return t2 == null ? t1._paymentState = new L.PaymentStateBuilder() : t2; }, get$quoteState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._quoteState; return t2 == null ? t1._quoteState = new G.QuoteStateBuilder() : t2; }, get$recurringExpenseState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._recurringExpenseState; return t2 == null ? t1._recurringExpenseState = new K.RecurringExpenseStateBuilder() : t2; }, get$subscriptionState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._subscriptionState; return t2 == null ? t1._subscriptionState = new M.SubscriptionStateBuilder() : t2; }, get$taskStatusState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._taskStatusState; return t2 == null ? t1._taskStatusState = new L.TaskStatusStateBuilder() : t2; }, get$expenseCategoryState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._expenseCategoryState; return t2 == null ? t1._expenseCategoryState = new Q.ExpenseCategoryStateBuilder() : t2; }, get$recurringInvoiceState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._recurringInvoiceState; return t2 == null ? t1._recurringInvoiceState = new Q.RecurringInvoiceStateBuilder() : t2; }, get$webhookState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._webhookState; return t2 == null ? t1._webhookState = new V.WebhookStateBuilder() : t2; }, get$tokenState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._tokenState; return t2 == null ? t1._tokenState = new N.TokenStateBuilder() : t2; }, get$paymentTermState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._paymentTermState; return t2 == null ? t1._paymentTermState = new N.PaymentTermStateBuilder() : t2; }, get$designState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._designState; return t2 == null ? t1._designState = new Y.DesignStateBuilder() : t2; }, get$creditState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._creditState; return t2 == null ? t1._creditState = new G.CreditStateBuilder() : t2; }, get$userState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._userState; return t2 == null ? t1._userState = new Q.UserStateBuilder() : t2; }, get$taxRateState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._taxRateState; return t2 == null ? t1._taxRateState = new Q.TaxRateStateBuilder() : t2; }, get$companyGatewayState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._companyGatewayState; return t2 == null ? t1._companyGatewayState = new U.CompanyGatewayStateBuilder() : t2; }, get$groupState: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._groupState; return t2 == null ? t1._groupState = new E.GroupStateBuilder() : t2; }, get$_company_state$_$this: function() { var t1, t2, _this = this, $$v = _this._company_state$_$v; if ($$v != null) { _this._lastUpdated = $$v.lastUpdated; t1 = $$v.userCompany; if (t1 == null) t1 = null; else { t2 = new A.UserCompanyEntityBuilder(); A.UserCompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; t1 = t2; } _this._company_state$_userCompany = t1; t1 = $$v.documentState; t1.toString; t2 = new Q.DocumentStateBuilder(); t2._document_state$_$v = t1; _this._documentState = t2; t1 = $$v.productState; t1.toString; t2 = new Y.ProductStateBuilder(); t2._product_state$_$v = t1; _this._productState = t2; t1 = $$v.clientState; t1.toString; t2 = new F.ClientStateBuilder(); t2._client_state$_$v = t1; _this._clientState = t2; t1 = $$v.invoiceState; t1.toString; t2 = new B.InvoiceStateBuilder(); t2._invoice_state$_$v = t1; _this._invoiceState = t2; t1 = $$v.expenseState; t1.toString; t2 = new R.ExpenseStateBuilder(); t2._expense_state$_$v = t1; _this._expenseState = t2; t1 = $$v.vendorState; t1.toString; t2 = new Y.VendorStateBuilder(); t2._vendor_state$_$v = t1; _this._vendorState = t2; t1 = $$v.taskState; t1.toString; t2 = new M.TaskStateBuilder(); t2._task_state$_$v = t1; _this._taskState = t2; t1 = $$v.projectState; t1.toString; t2 = new D.ProjectStateBuilder(); t2._project_state$_$v = t1; _this._projectState = t2; t1 = $$v.paymentState; t1.toString; t2 = new L.PaymentStateBuilder(); t2._payment_state$_$v = t1; _this._paymentState = t2; t1 = $$v.quoteState; t1.toString; t2 = new G.QuoteStateBuilder(); t2._quote_state$_$v = t1; _this._quoteState = t2; t1 = $$v.recurringExpenseState; t1.toString; t2 = new K.RecurringExpenseStateBuilder(); t2._recurring_expense_state$_$v = t1; _this._recurringExpenseState = t2; t1 = $$v.subscriptionState; t1.toString; t2 = new M.SubscriptionStateBuilder(); t2._subscription_state$_$v = t1; _this._subscriptionState = t2; t1 = $$v.taskStatusState; t1.toString; t2 = new L.TaskStatusStateBuilder(); t2._task_status_state$_$v = t1; _this._taskStatusState = t2; t1 = $$v.expenseCategoryState; t1.toString; t2 = new Q.ExpenseCategoryStateBuilder(); t2._expense_category_state$_$v = t1; _this._expenseCategoryState = t2; t1 = $$v.recurringInvoiceState; t1.toString; t2 = new Q.RecurringInvoiceStateBuilder(); t2._recurring_invoice_state$_$v = t1; _this._recurringInvoiceState = t2; t1 = $$v.webhookState; t1.toString; t2 = new V.WebhookStateBuilder(); t2._webhook_state$_$v = t1; _this._webhookState = t2; t1 = $$v.tokenState; t1.toString; t2 = new N.TokenStateBuilder(); t2._token_state$_$v = t1; _this._tokenState = t2; t1 = $$v.paymentTermState; t1.toString; t2 = new N.PaymentTermStateBuilder(); t2._payment_term_state$_$v = t1; _this._paymentTermState = t2; t1 = $$v.designState; t1.toString; t2 = new Y.DesignStateBuilder(); t2._design_state$_$v = t1; _this._designState = t2; t1 = $$v.creditState; t1.toString; t2 = new G.CreditStateBuilder(); t2._credit_state$_$v = t1; _this._creditState = t2; t1 = $$v.userState; t1.toString; t2 = new Q.UserStateBuilder(); t2._user_state$_$v = t1; _this._userState = t2; t1 = $$v.taxRateState; t1.toString; t2 = new Q.TaxRateStateBuilder(); t2._tax_rate_state$_$v = t1; _this._taxRateState = t2; t1 = $$v.companyGatewayState; t1.toString; t2 = new U.CompanyGatewayStateBuilder(); t2._company_gateway_state$_$v = t1; _this._companyGatewayState = t2; t1 = $$v.groupState; t1.toString; t2 = new E.GroupStateBuilder(); t2._group_state$_$v = t1; _this._groupState = t2; _this._company_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, exception, _this = this, _s16_ = "UserCompanyState", _$result = null; try { _$result0 = _this._company_state$_$v; if (_$result0 == null) { t1 = _this.get$_company_state$_$this()._lastUpdated; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "lastUpdated")); t2 = _this._company_state$_userCompany; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$documentState().build$0(0); t4 = _this.get$productState().build$0(0); t5 = _this.get$clientState().build$0(0); t6 = _this.get$invoiceState().build$0(0); t7 = _this.get$expenseState().build$0(0); t8 = _this.get$vendorState().build$0(0); t9 = _this.get$taskState().build$0(0); t10 = _this.get$projectState().build$0(0); t11 = _this.get$paymentState().build$0(0); t12 = _this.get$quoteState().build$0(0); t13 = _this.get$recurringExpenseState().build$0(0); t14 = _this.get$subscriptionState().build$0(0); t15 = _this.get$taskStatusState().build$0(0); t16 = _this.get$expenseCategoryState().build$0(0); t17 = _this.get$recurringInvoiceState().build$0(0); t18 = _this.get$webhookState().build$0(0); t19 = _this.get$tokenState().build$0(0); t20 = _this.get$paymentTermState().build$0(0); t21 = _this.get$designState().build$0(0); t22 = _this.get$creditState().build$0(0); t23 = _this.get$userState().build$0(0); t24 = _this.get$taxRateState().build$0(0); _$result0 = B._$UserCompanyState$_(t5, _this.get$companyGatewayState().build$0(0), t22, t21, t3, t16, t7, _this.get$groupState().build$0(0), t6, t1, t11, t20, t4, t10, t12, t13, t17, t14, t9, t15, t24, t19, t2, t23, t8, t18); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "userCompany"; t1 = _this._company_state$_userCompany; if (t1 != null) t1.build$0(0); _$failedField = "documentState"; _this.get$documentState().build$0(0); _$failedField = "productState"; _this.get$productState().build$0(0); _$failedField = "clientState"; _this.get$clientState().build$0(0); _$failedField = "invoiceState"; _this.get$invoiceState().build$0(0); _$failedField = "expenseState"; _this.get$expenseState().build$0(0); _$failedField = "vendorState"; _this.get$vendorState().build$0(0); _$failedField = "taskState"; _this.get$taskState().build$0(0); _$failedField = "projectState"; _this.get$projectState().build$0(0); _$failedField = "paymentState"; _this.get$paymentState().build$0(0); _$failedField = "quoteState"; _this.get$quoteState().build$0(0); _$failedField = "recurringExpenseState"; _this.get$recurringExpenseState().build$0(0); _$failedField = "subscriptionState"; _this.get$subscriptionState().build$0(0); _$failedField = "taskStatusState"; _this.get$taskStatusState().build$0(0); _$failedField = "expenseCategoryState"; _this.get$expenseCategoryState().build$0(0); _$failedField = "recurringInvoiceState"; _this.get$recurringInvoiceState().build$0(0); _$failedField = "webhookState"; _this.get$webhookState().build$0(0); _$failedField = "tokenState"; _this.get$tokenState().build$0(0); _$failedField = "paymentTermState"; _this.get$paymentTermState().build$0(0); _$failedField = "designState"; _this.get$designState().build$0(0); _$failedField = "creditState"; _this.get$creditState().build$0(0); _$failedField = "userState"; _this.get$userState().build$0(0); _$failedField = "taxRateState"; _this.get$taxRateState().build$0(0); _$failedField = "companyGatewayState"; _this.get$companyGatewayState().build$0(0); _$failedField = "groupState"; _this.get$groupState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_state$_$v = t1; return _$result; } }; B._$SettingsUIState.prototype = { rebuild$1: function(updates) { var t1 = new B.SettingsUIStateBuilder(); t1.get$_company_state$_$this()._selectedTemplate = C.EmailTemplate_invoice; t1._company_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.SettingsUIState && J.$eq$(_this.company, other.company) && J.$eq$(_this.origCompany, other.origCompany) && J.$eq$(_this.client, other.client) && J.$eq$(_this.origClient, other.origClient) && J.$eq$(_this.group, other.group) && J.$eq$(_this.origGroup, other.origGroup) && J.$eq$(_this.user, other.user) && J.$eq$(_this.origUser, other.origUser) && _this.entityType === other.entityType && _this.isChanged === other.isChanged && _this.updatedAt === other.updatedAt && _this.section === other.section && _this.tabIndex === other.tabIndex && _this.selectedTemplate === other.selectedTemplate && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_state$__hashCode; return t1 == null ? _this._company_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.company)), J.get$hashCode$(_this.origCompany)), J.get$hashCode$(_this.client)), J.get$hashCode$(_this.origClient)), J.get$hashCode$(_this.group)), J.get$hashCode$(_this.origGroup)), J.get$hashCode$(_this.user)), J.get$hashCode$(_this.origUser)), H.Primitives_objectHashCode(_this.entityType)), C.JSBool_methods.get$hashCode(_this.isChanged)), C.JSInt_methods.get$hashCode(_this.updatedAt)), C.JSString_methods.get$hashCode(_this.section)), C.JSInt_methods.get$hashCode(_this.tabIndex)), H.Primitives_objectHashCode(_this.selectedTemplate)), J.get$hashCode$(_this.filter)), C.JSInt_methods.get$hashCode(_this.filterClearedAt))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SettingsUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "company", _this.company); t2.add$2(t1, "origCompany", _this.origCompany); t2.add$2(t1, "client", _this.client); t2.add$2(t1, "origClient", _this.origClient); t2.add$2(t1, "group", _this.group); t2.add$2(t1, "origGroup", _this.origGroup); t2.add$2(t1, "user", _this.user); t2.add$2(t1, "origUser", _this.origUser); t2.add$2(t1, "entityType", _this.entityType); t2.add$2(t1, "isChanged", _this.isChanged); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "section", _this.section); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "selectedTemplate", _this.selectedTemplate); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); return t2.toString$0(t1); }, get$company: function() { return this.company; }, get$group: function() { return this.group; }, get$user: function() { return this.user; } }; B.SettingsUIStateBuilder.prototype = { get$company: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._company; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._company = t2; t1 = t2; } else t1 = t2; return t1; }, get$origCompany: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._origCompany; if (t2 == null) { t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t1._origCompany = t2; t1 = t2; } else t1 = t2; return t1; }, get$client: function(_) { var t1 = this.get$_company_state$_$this(), t2 = t1._client; if (t2 == null) { t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._client = t2; t1 = t2; } else t1 = t2; return t1; }, get$origClient: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._origClient; if (t2 == null) { t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t1._origClient = t2; t1 = t2; } else t1 = t2; return t1; }, get$group: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._company_state$_group; if (t2 == null) { t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t1._company_state$_group = t2; t1 = t2; } else t1 = t2; return t1; }, get$origGroup: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._origGroup; if (t2 == null) { t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t1._origGroup = t2; t1 = t2; } else t1 = t2; return t1; }, get$user: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._user; if (t2 == null) { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t1._user = t2; t1 = t2; } else t1 = t2; return t1; }, get$origUser: function() { var t1 = this.get$_company_state$_$this(), t2 = t1._origUser; if (t2 == null) { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t1._origUser = t2; t1 = t2; } else t1 = t2; return t1; }, get$_company_state$_$this: function() { var t1, t2, _this = this, $$v = _this._company_state$_$v; if ($$v != null) { t1 = $$v.company; t1.toString; t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; _this._company = t2; t1 = $$v.origCompany; t1.toString; t2 = new A.CompanyEntityBuilder(); A.CompanyEntity__initializeBuilder(t2); t2._company_model$_$v = t1; _this._origCompany = t2; t1 = $$v.client; t1.toString; t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t2._client_model$_$v = t1; _this._client = t2; t1 = $$v.origClient; t1.toString; t2 = new T.ClientEntityBuilder(); t2.get$_client_model$_$this()._number = ""; t2._client_model$_$v = t1; _this._origClient = t2; t1 = $$v.group; t1.toString; t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t2._group_model$_$v = t1; _this._company_state$_group = t2; t1 = $$v.origGroup; t1.toString; t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t2._group_model$_$v = t1; _this._origGroup = t2; t1 = $$v.user; t1.toString; t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t2._user_model$_$v = t1; _this._user = t2; t1 = $$v.origUser; t1.toString; t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t2._user_model$_$v = t1; _this._origUser = t2; _this._entityType = $$v.entityType; _this._isChanged = $$v.isChanged; _this._updatedAt = $$v.updatedAt; _this._section = $$v.section; _this._tabIndex = $$v.tabIndex; _this._selectedTemplate = $$v.selectedTemplate; _this._company_state$_filter = $$v.filter; _this._company_state$_filterClearedAt = $$v.filterClearedAt; _this._company_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, exception, _this = this, _s15_ = "SettingsUIState", _$result = null; try { _$result0 = _this._company_state$_$v; if (_$result0 == null) { t1 = _this.get$company().build$0(0); t2 = _this.get$origCompany().build$0(0); t3 = _this.get$client(_this).build$0(0); t4 = _this.get$origClient().build$0(0); t5 = _this.get$group().build$0(0); t6 = _this.get$origGroup().build$0(0); t7 = _this.get$user().build$0(0); t8 = _this.get$origUser().build$0(0); t9 = _this.get$_company_state$_$this()._entityType; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "entityType")); t10 = _this.get$_company_state$_$this()._isChanged; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "isChanged")); t11 = _this.get$_company_state$_$this()._updatedAt; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "updatedAt")); t12 = _this.get$_company_state$_$this()._section; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "section")); t13 = _this.get$_company_state$_$this()._tabIndex; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "tabIndex")); t14 = _this.get$_company_state$_$this()._selectedTemplate; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "selectedTemplate")); t15 = _this.get$_company_state$_$this()._company_state$_filter; t16 = _this.get$_company_state$_$this()._company_state$_filterClearedAt; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "filterClearedAt")); _$result0 = B._$SettingsUIState$_(t3, t1, t9, t15, t16, t5, t10, t4, t2, t6, t8, t12, t14, t13, t11, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "company"; _this.get$company().build$0(0); _$failedField = "origCompany"; _this.get$origCompany().build$0(0); _$failedField = "client"; _this.get$client(_this).build$0(0); _$failedField = "origClient"; _this.get$origClient().build$0(0); _$failedField = "group"; _this.get$group().build$0(0); _$failedField = "origGroup"; _this.get$origGroup().build$0(0); _$failedField = "user"; _this.get$user().build$0(0); _$failedField = "origUser"; _this.get$origUser().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s15_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_state$_$v = t1; return _$result; } }; Q.ViewCompanyGatewayList.prototype = {$isStopLoading: 1}; Q.ViewCompanyGateway.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.EditCompanyGateway.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.UpdateCompanyGateway.prototype = {$isPersistUI: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.LoadCompanyGateway.prototype = {}; Q.LoadCompanyGatewayRequest.prototype = {$isStartLoading: 1}; Q.LoadCompanyGatewayFailure.prototype = { toString$0: function(_) { return "LoadCompanyGatewayFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadCompanyGatewaySuccess.prototype = { toString$0: function(_) { return "LoadCompanyGatewaySuccess{companyGateway: " + H.S(this.companyGateway) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.LoadCompanyGatewaysRequest.prototype = {$isStartLoading: 1}; Q.LoadCompanyGatewaysFailure.prototype = { toString$0: function(_) { return "LoadCompanyGatewaysFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadCompanyGatewaysSuccess.prototype = { toString$0: function(_) { return "LoadCompanyGatewaysSuccess{companyGateways: " + H.S(this.companyGateways) + "}"; }, $isStopLoading: 1 }; Q.SaveCompanyGatewayRequest.prototype = {$isStartSaving: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.SaveCompanyGatewaySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.AddCompanyGatewaySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$companyGateway: function() { return this.companyGateway; } }; Q.SaveCompanyGatewayFailure.prototype = {$isStopSaving: 1}; Q.ArchiveCompanyGatewayRequest.prototype = {$isStartSaving: 1}; Q.ArchiveCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.ArchiveCompanyGatewayFailure.prototype = {$isStopSaving: 1}; Q.DeleteCompanyGatewayRequest.prototype = {$isStartSaving: 1}; Q.DeleteCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.DeleteCompanyGatewayFailure.prototype = {$isStopSaving: 1}; Q.RestoreCompanyGatewayRequest.prototype = {$isStartSaving: 1}; Q.RestoreCompanyGatewaySuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.RestoreCompanyGatewayFailure.prototype = {$isStopSaving: 1}; Q.FilterCompanyGatewaysByState.prototype = {$isPersistUI: 1}; Q.FilterCompanyGatewaysByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterCompanyGatewaysByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterCompanyGatewaysByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterCompanyGatewaysByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.handleCompanyGatewayAction_closure.prototype = { call$1: function(companyGateway) { return companyGateway.get$id(companyGateway); }, $signature: 41 }; Q.StartCompanyGatewayMultiselect.prototype = {}; Q.AddToCompanyGatewayMultiselect.prototype = {}; Q.RemoveFromCompanyGatewayMultiselect.prototype = {}; Q.ClearCompanyGatewayMultiselect.prototype = {}; L._editCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s31_ = "/settings/company_gateways_edit"; next.call$1(type$.legacy_EditCompanyGateway._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s31_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s31_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._viewCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewCompanyGateway_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewCompanyGateway_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewCompanyGateway._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/company_gateways_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/company_gateways_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; L._viewCompanyGatewayList_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s26_ = "/settings/company_gateways"; next.call$1(type$.legacy_ViewCompanyGatewayList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s26_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s26_, new L._viewCompanyGatewayList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._viewCompanyGatewayList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; L._archiveCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_ArchiveCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = P.List_List$of(new H.MappedListIterable(t1, new L._archiveCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new L._archiveCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new L._archiveCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._archiveCompanyGateway__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).companyGatewayState.map._map$_map, id); }, $signature: 286 }; L._archiveCompanyGateway__closure0.prototype = { call$1: function(companyGateways) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 400 }; L._archiveCompanyGateway__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; L._deleteCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_DeleteCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = P.List_List$of(new H.MappedListIterable(t1, new L._deleteCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new L._deleteCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new L._deleteCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._deleteCompanyGateway__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).companyGatewayState.map._map$_map, id); }, $signature: 286 }; L._deleteCompanyGateway__closure0.prototype = { call$1: function(companyGateways) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 400 }; L._deleteCompanyGateway__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; L._restoreCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCompanyGateways; type$.legacy_RestoreCompanyGatewayRequest._as(dynamicAction); t1 = dynamicAction.companyGatewayIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,CompanyGatewayEntity*>"); prevCompanyGateways = P.List_List$of(new H.MappedListIterable(t1, new L._restoreCompanyGateway__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new L._restoreCompanyGateway__closure0(store, dynamicAction), type$.Null).catchError$1(new L._restoreCompanyGateway__closure1(store, prevCompanyGateways, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._restoreCompanyGateway__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).companyGatewayState.map._map$_map, id); }, $signature: 286 }; L._restoreCompanyGateway__closure0.prototype = { call$1: function(companyGateways) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, $signature: 400 }; L._restoreCompanyGateway__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; L._saveCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveCompanyGatewayRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.companyGateway).then$1$1(0, new L._saveCompanyGateway__closure(dynamicAction, store), type$.Null).catchError$1(new L._saveCompanyGateway__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._saveCompanyGateway__closure.prototype = { call$1: function(companyGateway) { var t1 = this.action, t2 = this.store; if (t1.companyGateway.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.AddCompanyGatewaySuccess(companyGateway)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SaveCompanyGatewaySuccess(companyGateway)); t1.completer.complete$1(0, companyGateway); }, $signature: 297 }; L._saveCompanyGateway__closure0.prototype = { call$1: function(error) { P.print(error); P.StackTrace_current(); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveCompanyGatewayFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; L._loadCompanyGateway_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadCompanyGateway._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewayRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.companyGatewayId).then$1$1(0, new L._loadCompanyGateway__closure(store, dynamicAction), type$.Null).catchError$1(new L._loadCompanyGateway__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._loadCompanyGateway__closure.prototype = { call$1: function(companyGateway) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewaySuccess(companyGateway)); this.action.completer.complete$1(0, null); }, $signature: 297 }; L._loadCompanyGateway__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewayFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; L._loadCompanyGateways_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadCompanyGateways._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewaysRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new L._loadCompanyGateways__closure(store, dynamicAction), type$.Null).catchError$1(new L._loadCompanyGateways__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; L._loadCompanyGateways__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewaysSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1024 }; L._loadCompanyGateways__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGatewaysFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; N.companyGatewayUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$companyGatewayListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer7().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_gateway_model$_$v = t4; t1 = $.$get$selectedIdReducer7().call$2(t2.selectedId, t3); b.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer7().call$2(t2.forceSelected, t3); b.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected = t3; return b; }, $signature: 1025 }; N.forceSelectedReducer_closure59.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1026 }; N.forceSelectedReducer_closure60.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1027 }; N.forceSelectedReducer_closure61.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1028 }; N.forceSelectedReducer_closure62.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1029 }; N.forceSelectedReducer_closure63.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1030 }; N.forceSelectedReducer_closure64.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1031 }; N.forceSelectedReducer_closure65.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1032 }; N.forceSelectedReducer_closure66.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1033 }; N.selectedIdReducer_closure119.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1034 }; N.selectedIdReducer_closure120.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1035 }; N.selectedIdReducer_closure121.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_companyGateway ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; N.selectedIdReducer_closure122.prototype = { call$2: function(selectedId, action) { return action.companyGatewayId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1036 }; N.selectedIdReducer_closure123.prototype = { call$2: function(selectedId, action) { return action.companyGateway.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1037 }; N.selectedIdReducer_closure124.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; N.selectedIdReducer_closure125.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; N.selectedIdReducer_closure126.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1038 }; N.selectedIdReducer_closure127.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1039 }; N.selectedIdReducer_closure128.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1040 }; N.selectedIdReducer_closure129.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1041 }; N.selectedIdReducer_closure130.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1042 }; N.selectedIdReducer_closure131.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1043 }; N.selectedIdReducer_closure132.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1044 }; N.selectedIdReducer_closure133.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_companyGateway ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; N.editingReducer_closure35.prototype = { call$2: function(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1045 }; N.editingReducer_closure36.prototype = { call$2: function(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1046 }; N.editingReducer_closure37.prototype = { call$2: function(companyGateways, action) { return J.$index$asx(action.companyGateways, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1047 }; N.editingReducer_closure38.prototype = { call$2: function(companyGateway, action) { return action.companyGateway.rebuild$1(new N.editingReducer__closure13()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1048 }; N.editingReducer__closure13.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged = true; return b; }, $signature: 43 }; N._filterCompanyGatewaysByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; N._filterCompanyGatewaysByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterCompanyGatewaysByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; N._filterCompanyGatewaysByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterCompanyGatewaysByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; N._filterCompanyGatewaysByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterCompanyGateways_closure.prototype = { call$1: function(b) { var t1 = this.action, t2 = t1.get$filter(t1); b.get$_list_ui_state$_$this()._list_ui_state$_filter = t2; t1.get$filter(t1); t1 = this.companyGatewayListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; N._sortCompanyGateways_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this(); t1 = this.action; t1.get$field(); b.get$_list_ui_state$_$this()._sortAscending = true; t1 = t1.get$field(); b.get$_list_ui_state$_$this()._sortField = t1; return b; }, $signature: 2 }; N._startListMultiselect_closure7.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; N._addToListMultiselect_closure7.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._removeFromListMultiselect_closure7.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._clearListMultiselect_closure7.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; N._archiveCompanyGatewaySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 399 }; N._deleteCompanyGatewaySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 399 }; N._restoreCompanyGatewaySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.companyGateways), t2 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_company_gateway_state$_$this(); t5 = t4._company_gateway_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._company_gateway_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 399 }; N._addCompanyGateway_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new N._addCompanyGateway__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 159 }; N._addCompanyGateway__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 43 }; N._updateCompanyGateway_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway; t1.$indexSet(0, t2.id, t2.rebuild$1(new N._updateCompanyGateway__closure())); return b; }, $signature: 159 }; N._updateCompanyGateway__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 43 }; N._setLoadedCompanyGateway_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.companyGateway; t1.$indexSet(0, t2.id, t2.rebuild$1(new N._setLoadedCompanyGateway__closure())); return b; }, $signature: 159 }; N._setLoadedCompanyGateway__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, $signature: 43 }; N._setLoadedCompany_closure1.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.companyGateways, new N._setLoadedCompany__closure1(), new N._setLoadedCompany__closure2(), type$.legacy_String, type$.legacy_CompanyGatewayEntity)); return b; }, $signature: 159 }; N._setLoadedCompany__closure1.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; N._setLoadedCompany__closure2.prototype = { call$1: function(item) { return item; }, $signature: 669 }; N._setLoadedCompany_closure2.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 159 }; N._setLoadedCompanyGateways_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.companyGateways, new N._setLoadedCompanyGateways__closure(), new N._setLoadedCompanyGateways__closure0(), type$.legacy_String, type$.legacy_CompanyGatewayEntity)); return b; }, $signature: 159 }; N._setLoadedCompanyGateways__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; N._setLoadedCompanyGateways__closure0.prototype = { call$1: function(item) { return item; }, $signature: 669 }; N._setLoadedCompanyGateways_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 159 }; T.memoizedFilteredCompanyGatewayList_closure.prototype = { call$5: function(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll) { return T.filteredCompanyGatewaysSelector(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll); }, $signature: 1052 }; T.filteredCompanyGatewaysSelector_closure.prototype = { call$1: function(companyGatewayId) { if (!J.$index$asx(this.companyGatewayMap._map$_map, companyGatewayId).matchesStates$1(this.companyGatewayListState.stateFilters)) return false; return true; }, $signature: 16 }; T.filteredCompanyGatewaysSelector_closure0.prototype = { call$1: function(id) { var t1, t2; if (id.length !== 0) { t1 = this.companyGatewayMap._map$_map; t2 = J.getInterceptor$x(t1); t1 = t2.containsKey$1(t1, id) && t2.$index(t1, id).matchesStates$1(this.companyGatewayListState.stateFilters); } else t1 = false; return t1; }, $signature: 16 }; T.filteredCompanyGatewaysSelector_closure1.prototype = { call$1: function(id) { var t1 = this.gatewaysIds; if (!C.JSArray_methods.contains$1(t1, id)) C.JSArray_methods.add$1(t1, id); }, $signature: 7 }; T.memoizedCalculateCompanyGatewayProcessed_closure.prototype = { call$2: function(companyGatewayId, paymentMap) { return T.calculateCompanyGatewayProcessed(companyGatewayId, paymentMap); }, $signature: 1053 }; T.calculateCompanyGatewayProcessed_closure.prototype = { call$2: function(paymentId, payment) { var t1; if (payment.companyGatewayId === this.companyGatewayId) { t1 = this._box_0; t1.total = t1.total + payment.get$completedAmount() * payment.exchangeRate; } }, $signature: 191 }; T.memoizedClientStatsForCompanyGateway_closure.prototype = { call$2: function(companyGatewayId, clientMap) { return T.clientStatsForCompanyGateway(companyGatewayId, clientMap); }, $signature: 677 }; T.clientStatsForCompanyGateway_closure.prototype = { call$2: function(clientId, client) { var t1 = J.where$1$ax(client.gatewayTokens._list, new T.clientStatsForCompanyGateway__closure(this.companyGatewayId)); if (!t1.get$isEmpty(t1)) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.get$isArchived()) ++this._box_0.countArchived; }, $signature: 234 }; T.clientStatsForCompanyGateway__closure.prototype = { call$1: function(token) { return token.companyGatewayId === this.companyGatewayId; }, $signature: 676 }; T.memoizedPaymentStatsForCompanyGateway_closure.prototype = { call$2: function(companyGatewayId, paymentMap) { return T.paymentStatsForCompanyGateway(companyGatewayId, paymentMap); }, $signature: 1055 }; T.paymentStatsForCompanyGateway_closure.prototype = { call$2: function(paymentId, payment) { if (payment.companyGatewayId === this.companyGatewayId) if (!payment.get$isArchived() && !payment.isDeleted) ++this._box_0.countActive; else if (payment.get$isArchived()) ++this._box_0.countArchived; }, $signature: 191 }; T.getUnconnectedStripeAccount_closure.prototype = { call$2: function(id, gateway) { var t1; if (gateway.gatewayId === "d14dd26a47cecc30fdd65700bfb67b34" && !gateway.get$isArchived() && !gateway.isDeleted) { t1 = J.$index$asx(gateway.get$parsedConfig(), "account_id"); if (J.toString$0$(t1 == null ? "" : t1).length === 0) this._box_0.unconnectedGateway = gateway; } }, $signature: 1056 }; U.CompanyGatewayState.prototype = { $get$1: function(_, companyGatewayId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, companyGatewayId)) return t2.$index(t1, companyGatewayId); else return O.CompanyGatewayEntity_CompanyGatewayEntity(companyGatewayId, null); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; U.CompanyGatewayUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; U._$CompanyGatewayStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_6Re), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new U.CompanyGatewayStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_company_gateway_state$_$this(); t6 = t5._company_gateway_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._company_gateway_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_6Re)); break; case "list": t5 = result.get$_company_gateway_state$_$this(); t6 = t5._company_gateway_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._company_gateway_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Jwp; }, get$wireName: function() { return "CompanyGatewayState"; } }; U._$CompanyGatewayUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_UQL)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new U.CompanyGatewayUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_CompanyGatewayEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_company_gateway_state$_$this(); t4 = t3._company_gateway_state$_editing; t3 = t4 == null ? t3._company_gateway_state$_editing = new O.CompanyGatewayEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_UQL)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._company_gateway_model$_$v = t4; break; case "listUIState": t3 = result.get$_company_gateway_state$_$this(); t4 = t3._company_gateway_state$_listUIState; t3 = t4 == null ? t3._company_gateway_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_company_gateway_state$_$this()._company_gateway_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_56s; }, get$wireName: function() { return "CompanyGatewayUIState"; } }; U._$CompanyGatewayState.prototype = { rebuild$1: function(updates) { var t1 = new U.CompanyGatewayStateBuilder(); t1._company_gateway_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof U.CompanyGatewayState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._company_gateway_state$__hashCode; return t1 == null ? _this._company_gateway_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; U.CompanyGatewayStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_map; return t2 == null ? t1._company_gateway_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyGatewayEntity) : t2; }, get$list: function(_) { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_list; return t2 == null ? t1._company_gateway_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_company_gateway_state$_$this: function() { var t1, t2, _this = this, $$v = _this._company_gateway_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._company_gateway_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._company_gateway_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._company_gateway_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._company_gateway_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = U._$CompanyGatewayState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("CompanyGatewayState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_gateway_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; U._$CompanyGatewayUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof U.CompanyGatewayUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._company_gateway_state$__hashCode; return t1 == null ? _this._company_gateway_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyGatewayUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; U.CompanyGatewayUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_editing; return t2 == null ? t1._company_gateway_state$_editing = new O.CompanyGatewayEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_company_gateway_state$_$this(), t2 = t1._company_gateway_state$_listUIState; return t2 == null ? t1._company_gateway_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_company_gateway_state$_$this: function() { var t1, t2, _this = this, $$v = _this._company_gateway_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new O.CompanyGatewayEntityBuilder(); t2._company_gateway_model$_$v = t1; t1 = t2; } _this._company_gateway_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._company_gateway_state$_listUIState = t2; _this._company_gateway_state$_selectedId = $$v.selectedId; _this._company_gateway_state$_forceSelected = $$v.forceSelected; _this._company_gateway_state$_tabIndex = $$v.tabIndex; _this._company_gateway_state$_saveCompleter = $$v.saveCompleter; _this._company_gateway_state$_cancelCompleter = $$v.cancelCompleter; _this._company_gateway_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s21_ = "CompanyGatewayUIState", _$result = null; try { _$result0 = _this._company_gateway_state$_$v; if (_$result0 == null) { t1 = _this._company_gateway_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_selectedId; t4 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_forceSelected; t5 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s21_, "tabIndex")); t6 = _this.get$_company_gateway_state$_$this()._company_gateway_state$_saveCompleter; _$result0 = U._$CompanyGatewayUIState$_(_this.get$_company_gateway_state$_$this()._company_gateway_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._company_gateway_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s21_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._company_gateway_state$_$v = t1; return _$result; } }; U._CompanyGatewayUIState_Object_EntityUIState.prototype = {}; E.ViewCreditList.prototype = {$isStopLoading: 1}; E.ViewCredit.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.EditCredit.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$credit: function() { return this.credit; } }; E.ShowEmailCredit.prototype = { get$credit: function() { return this.credit; } }; E.ShowPdfCredit.prototype = { get$credit: function() { return this.credit; } }; E.EditCreditItem.prototype = {$isPersistUI: 1}; E.UpdateCredit.prototype = {$isPersistUI: 1, get$credit: function() { return this.credit; } }; E.UpdateCreditClient.prototype = {$isPersistUI: 1}; E.LoadCredit.prototype = {}; E.LoadCredits.prototype = {}; E.LoadCreditRequest.prototype = {$isStartLoading: 1}; E.LoadCreditFailure.prototype = { toString$0: function(_) { return "LoadCreditFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadCreditSuccess.prototype = { toString$0: function(_) { return "LoadCreditSuccess{credit: " + H.S(this.credit) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$credit: function() { return this.credit; } }; E.LoadCreditsRequest.prototype = {$isStartLoading: 1}; E.LoadCreditsFailure.prototype = { toString$0: function(_) { return "LoadCreditsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadCreditsSuccess.prototype = { toString$0: function(_) { return "LoadCreditsSuccess{credits: " + H.S(this.credits) + "}"; }, $isStopLoading: 1 }; E.AddCreditContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; E.RemoveCreditContact.prototype = {$isPersistUI: 1}; E.AddCreditItem.prototype = {$isPersistUI: 1}; E.MoveCreditItem.prototype = {$isPersistUI: 1}; E.AddCreditItems.prototype = {$isPersistUI: 1}; E.UpdateCreditItem.prototype = {$isPersistUI: 1}; E.DeleteCreditItem.prototype = {$isPersistUI: 1}; E.SaveCreditRequest.prototype = {$isStartSaving: 1, get$credit: function() { return this.credit; } }; E.SaveCreditSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$credit: function() { return this.credit; } }; E.AddCreditSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$credit: function() { return this.credit; } }; E.SaveCreditFailure.prototype = {$isStopSaving: 1}; E.EmailCreditRequest.prototype = {$isStartSaving: 1, get$body: function(receiver) { return this.body; } }; E.EmailCreditSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.EmailCreditFailure.prototype = {$isStopSaving: 1}; E.MarkSentCreditRequest.prototype = {$isStartSaving: 1}; E.MarkSentCreditSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.MarkSentCreditFailure.prototype = {$isStopSaving: 1}; E.BulkEmailCreditsRequest.prototype = {$isStartSaving: 1}; E.BulkEmailCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.BulkEmailCreditsFailure.prototype = {$isStopSaving: 1}; E.ArchiveCreditsRequest.prototype = {$isStartSaving: 1}; E.ArchiveCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.ArchiveCreditsFailure.prototype = {$isStopSaving: 1}; E.DeleteCreditsRequest.prototype = {$isStartSaving: 1}; E.DeleteCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.DeleteCreditsFailure.prototype = {$isStopSaving: 1}; E.DownloadCreditsRequest.prototype = {$isStartSaving: 1}; E.DownloadCreditsSuccess.prototype = {$isStopSaving: 1}; E.DownloadCreditsFailure.prototype = {$isStopSaving: 1}; E.RestoreCreditsRequest.prototype = {$isStartSaving: 1}; E.RestoreCreditsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.RestoreCreditsFailure.prototype = {$isStopSaving: 1}; E.FilterCredits.prototype = {$isPersistUI: 1}; E.SortCredits.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.FilterCreditsByState.prototype = {$isPersistUI: 1}; E.FilterCreditsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterCreditsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterCreditsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterCreditsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.SaveCreditDocumentRequest.prototype = {$isStartSaving: 1, get$credit: function() { return this.credit; } }; E.SaveCreditDocumentFailure.prototype = {$isStopSaving: 1}; E.handleCreditAction_closure.prototype = { call$1: function(credit) { return credit.get$id(credit); }, $signature: 41 }; E.handleCreditAction_closure0.prototype = { call$1: function(element) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!J.$index$asx(t2._list, t1).clientState.$get$1(0, this.credit.clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 7 }; E.handleCreditAction_closure1.prototype = { call$0: function() { var t2, t3, t1 = this.context; K.Navigator_of(t1, false).pop$0(0); t2 = this.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; M.editEntity(null, t1, J.$index$asx(t3._list, t2).clientState.$get$1(0, this.credit.clientId), null); }, $signature: 1 }; E.handleCreditAction_closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_invoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.handleCreditAction_closure3.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.handleCreditAction_closure4.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_recurringInvoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.handleCreditAction_closure5.prototype = { call$1: function(b) { var t2, t1 = this.credit.clientId; b.get$_payment_model$_$this()._payment_model$_clientId = t1; t1 = this.credits; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentableEntity*>"); b.get$credits().addAll$1(0, P.List_List$of(new H.MappedListIterable(t1, new E.handleCreditAction__closure(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 37 }; E.handleCreditAction__closure.prototype = { call$1: function(credit) { var t1 = credit.id; return F.PaymentableEntity_PaymentableEntity(credit.statusId !== "1" ? credit.balance : credit.amount, t1, null); }, $signature: 667 }; E.StartCreditMultiselect.prototype = {}; E.AddToCreditMultiselect.prototype = {}; E.RemoveFromCreditMultiselect.prototype = {}; E.ClearCreditMultiselect.prototype = {}; E.UpdateCreditTab.prototype = {$isPersistUI: 1}; X._viewCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewCredit_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewCredit._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit/view")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; X._viewCreditList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewCreditList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/credit", new X._viewCreditList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._viewCreditList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; X._editCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s12_ = "/credit/edit"; next.call$1(type$.legacy_EditCredit._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._showEmailCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showEmailCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailCredit_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailCredit._as(dynamicAction); next.call$1(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit/email")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; X._showPdfCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showPdfCredit_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfCredit_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfCredit._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit/pdf")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/credit/pdf", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; X._archiveCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_ArchiveCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = P.List_List$of(new H.MappedListIterable(t1, new X._archiveCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new X._archiveCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new X._archiveCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._archiveCredit__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).creditState.map._map$_map, id); }, $signature: 64 }; X._archiveCredit__closure0.prototype = { call$1: function(credits) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._archiveCredit__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._deleteCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_DeleteCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = P.List_List$of(new H.MappedListIterable(t1, new X._deleteCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new X._deleteCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new X._deleteCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._deleteCredit__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).creditState.map._map$_map, id); }, $signature: 64 }; X._deleteCredit__closure0.prototype = { call$1: function(credits) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._deleteCredit__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._restoreCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevCredits; type$.legacy_RestoreCreditsRequest._as(dynamicAction); t1 = dynamicAction.creditIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevCredits = P.List_List$of(new H.MappedListIterable(t1, new X._restoreCredit__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new X._restoreCredit__closure0(store, dynamicAction), type$.Null).catchError$1(new X._restoreCredit__closure1(store, prevCredits, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._restoreCredit__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).creditState.map._map$_map, id); }, $signature: 64 }; X._restoreCredit__closure0.prototype = { call$1: function(credits) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreCreditsSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._restoreCredit__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._markSentCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_MarkSentCreditRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.creditIds, C.EntityAction_markSent).then$1$1(0, new X._markSentCredit__closure(store, dynamicAction), type$.Null).catchError$1(new X._markSentCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._markSentCredit__closure.prototype = { call$1: function(credits) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MarkSentCreditSuccess(credits)); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._markSentCredit__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MarkSentCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._emailCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, origCredit; type$.legacy_EmailCreditRequest._as(dynamicAction); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).creditState.map; t2 = dynamicAction.creditId; origCredit = J.$index$asx(t1._map$_map, t2); this.repository.emailCredit$5(J.get$credentials$z(store.get$_store$_state()), origCredit, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new X._emailCredit__closure(store, dynamicAction), type$.Null).catchError$1(new X._emailCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._emailCredit__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailCreditSuccess()); this.action.completer.complete$1(0, null); }, $signature: 83 }; X._emailCredit__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._saveCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { var updatedCredit; type$.legacy_SaveCreditRequest._as(dynamicAction); updatedCredit = dynamicAction.credit.rebuild$1(new X._saveCredit__closure(dynamicAction)); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), updatedCredit).then$1$1(0, new X._saveCredit__closure0(dynamicAction, store), type$.Null).catchError$1(new X._saveCredit__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._saveCredit__closure.prototype = { call$1: function(b) { b.get$lineItems().replace$1(0, J.where$1$ax(this.action.credit.lineItems._list, new X._saveCredit___closure())); return b; }, $signature: 11 }; X._saveCredit___closure.prototype = { call$1: function(item) { return !item.get$isEmpty(item); }, $signature: 58 }; X._saveCredit__closure0.prototype = { call$1: function(credit) { var t1 = this.action, t2 = this.store; if (t1.credit.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.AddCreditSuccess(credit)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.SaveCreditSuccess(credit)); t1.completer.complete$1(0, credit); }, $signature: 68 }; X._saveCredit__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCreditFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._loadCredit_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadCredit._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadCreditRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.creditId).then$1$1(0, new X._loadCredit__closure(store, dynamicAction), type$.Null).catchError$1(new X._loadCredit__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._loadCredit__closure.prototype = { call$1: function(credit) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadCreditSuccess(credit)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 68 }; X._loadCredit__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadCreditFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; X._loadCredits_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadCredits._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadCreditsRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new X._loadCredits__closure(store, dynamicAction), type$.Null).catchError$1(new X._loadCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._loadCredits__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadCreditsSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.LoadProjects()); }, $signature: 258 }; X._loadCredits__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadCreditsFailure(error)); this.action.toString; }, $signature: 3 }; X._downloadCredits_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_DownloadCreditsRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.creditIds, C.EntityAction_download).then$1$1(0, new X._downloadCredits__closure(store, dynamicAction), type$.Null).catchError$1(new X._downloadCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._downloadCredits__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DownloadCreditsSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._downloadCredits__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DownloadCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._bulkEmailCredits_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_BulkEmailCreditsRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.creditIds, C.EntityAction_emailCredit).then$1$1(0, new X._bulkEmailCredits__closure(store, dynamicAction), type$.Null).catchError$1(new X._bulkEmailCredits__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._bulkEmailCredits__closure.prototype = { call$1: function(credits) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.BulkEmailCreditsSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; X._bulkEmailCredits__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.BulkEmailCreditsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._saveDocument_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveCreditDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.credit, dynamicAction.multipartFile).then$1$1(0, new X._saveDocument__closure1(store, dynamicAction), type$.Null).catchError$1(new X._saveDocument__closure2(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SaveCreditDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._saveDocument__closure1.prototype = { call$1: function(credit) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCreditSuccess(credit)); this.action.completer.complete$1(0, null); }, $signature: 68 }; X._saveDocument__closure2.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCreditDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q.creditUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$creditListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer10().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._invoice_model$_$v = t4; t1 = $.$get$editingItemReducer0().call$2(t2.editingItemIndex, t3); b.get$_credit_state$_$this()._credit_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer10().call$2(t2.selectedId, t3); b.get$_credit_state$_$this()._credit_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer10().call$2(t2.forceSelected, t3); b.get$_credit_state$_$this()._credit_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer5().call$2(t2.tabIndex, t3); b.get$_credit_state$_$this()._credit_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer0().call$2(t2.historyActivityId, t3); b.get$_credit_state$_$this()._credit_state$_historyActivityId = t3; return b; }, $signature: 1062 }; Q.forceSelectedReducer_closure79.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1063 }; Q.forceSelectedReducer_closure80.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1064 }; Q.forceSelectedReducer_closure81.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1065 }; Q.forceSelectedReducer_closure82.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1066 }; Q.forceSelectedReducer_closure83.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1067 }; Q.forceSelectedReducer_closure84.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1068 }; Q.forceSelectedReducer_closure85.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1069 }; Q.forceSelectedReducer_closure86.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1070 }; Q.tabIndexReducer_closure11.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1071 }; Q.tabIndexReducer_closure12.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; Q.historyActivityIdReducer_closure0.prototype = { call$2: function(index, action) { return action.activityId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 734 }; Q.editingItemReducer_closure1.prototype = { call$2: function(index, action) { action.toString; return null; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1073 }; Q.editingItemReducer_closure2.prototype = { call$2: function(index, action) { return action.creditItemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1074 }; Q.selectedIdReducer_closure160.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1075 }; Q.selectedIdReducer_closure161.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1076 }; Q.selectedIdReducer_closure162.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_credit ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; Q.selectedIdReducer_closure163.prototype = { call$2: function(selectedId, action) { return action.creditId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1077 }; Q.selectedIdReducer_closure164.prototype = { call$2: function(selectedId, action) { return action.credit.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1078 }; Q.selectedIdReducer_closure165.prototype = { call$2: function(selectedId, action) { return action.credit.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1079 }; Q.selectedIdReducer_closure166.prototype = { call$2: function(selectedId, action) { return action.credit.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 734 }; Q.selectedIdReducer_closure167.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; Q.selectedIdReducer_closure168.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; Q.selectedIdReducer_closure169.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1080 }; Q.selectedIdReducer_closure170.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1081 }; Q.selectedIdReducer_closure171.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1082 }; Q.selectedIdReducer_closure172.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1083 }; Q.selectedIdReducer_closure173.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1084 }; Q.selectedIdReducer_closure174.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1085 }; Q.selectedIdReducer_closure175.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1086 }; Q.selectedIdReducer_closure176.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1087 }; Q.selectedIdReducer_closure177.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_credit ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; Q.selectedIdReducer_closure178.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_credit ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; Q.editingReducer_closure47.prototype = { call$2: function(credit, action) { return action.credit.rebuild$1(new Q.editingReducer__closure22()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1088 }; Q.editingReducer__closure22.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; Q.editingReducer_closure48.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new Q.editingReducer__closure21()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 664 }; Q.editingReducer__closure21.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; Q.editingReducer_closure49.prototype = { call$2: function(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1090 }; Q.editingReducer_closure50.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new Q.editingReducer__closure20()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 662 }; Q.editingReducer__closure20.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; Q.editingReducer_closure51.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new Q.editingReducer__closure19()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 659 }; Q.editingReducer__closure19.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; Q.editingReducer_closure52.prototype = { call$2: function(credit, action) { return credit.rebuild$1(new Q.editingReducer__closure18(action.client)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1093 }; Q.editingReducer__closure18.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ContactEntity); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, P.List_List$of(new H.MappedListIterable(t1, new Q.editingReducer___closure0(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 11 }; Q.editingReducer___closure0.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; Q.editingReducer_closure53.prototype = { call$2: function(credits, action) { return J.$index$asx(action.credits, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1094 }; Q.editingReducer_closure54.prototype = { call$2: function(credits, action) { return J.$index$asx(action.credits, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1095 }; Q.editingReducer_closure55.prototype = { call$2: function(credits, action) { return J.$index$asx(action.credits, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1096 }; Q.editingReducer_closure56.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new Q.editingReducer__closure17(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1097 }; Q.editingReducer__closure17.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? Q.InvitationEntity_InvitationEntity(t2.contact.id) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; Q.editingReducer_closure57.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new Q.editingReducer__closure16(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1098 }; Q.editingReducer__closure16.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; Q._addCreditItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action.creditItem; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; Q._addCreditItems_closure.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.action.creditItems); return b; }, $signature: 11 }; Q._removeCreditItem_closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 11 }; Q._updateCreditItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t2.index, t2.creditItem); return b; }, $signature: 11 }; Q._viewCreditList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; Q._filterCreditsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; Q._filterCreditsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; Q._filterCreditsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; Q._filterCreditsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; Q._filterCreditsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; Q._filterCreditsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByStatus_closure.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(), t2 = this.action; t2 = t2.get$status(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCreditsByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(), t2 = this.action; t2 = t2.get$status(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._filterCredits_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.creditListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; Q._sortCredits_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; Q._startListMultiselect_closure10.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; Q._addToListMultiselect_closure10.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._removeFromListMultiselect_closure10.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Q._clearListMultiselect_closure10.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; Q._markSentCreditSuccess_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q._markSentCreditSuccess_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; Q._markSentCreditSuccess_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, this.creditMap); return b; }, $signature: 264 }; Q._archiveCreditSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 443 }; Q._deleteCreditSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 443 }; Q._restoreCreditSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.credits), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_credit_state$_$this(); t5 = t4._credit_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._credit_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 443 }; Q._addCredit_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.credit, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new Q._addCredit__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 264 }; Q._addCredit__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; Q._updateCredit_closure.prototype = { call$1: function(b) { var t1 = this.credit; b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new Q._updateCredit__closure())); return b; }, $signature: 264 }; Q._updateCredit__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; B.memoizedDropdownCreditList_closure.prototype = { call$6: function(creditMap, clientMap, creditList, clientId, userMap, excludedIds) { return B.dropdownCreditSelector(creditMap, clientMap, creditList, clientId, userMap, excludedIds); }, $signature: 1102 }; B.dropdownCreditSelector_closure.prototype = { call$1: function(creditId) { var t2, t3, _this = this, credit = J.$index$asx(_this.creditMap._map$_map, creditId), t1 = _this.excludedIds; if ((t1 && C.JSArray_methods).contains$1(t1, creditId)) return false; t1 = _this.clientId; if (t1 != null && t1.length !== 0 && credit.clientId !== t1) return false; t1 = credit.clientId; t2 = _this.clientMap._map$_map; t3 = J.getInterceptor$x(t2); if (t3.containsKey$1(t2, t1)) { t1 = t3.$index(t2, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = true; if (t1) return false; if (credit.balance === 0) return false; return !credit.get$isArchived() && !credit.isDeleted && credit.get$isUnpaid(); }, $signature: 16 }; B.dropdownCreditSelector_closure0.prototype = { call$2: function(creditAId, creditBId) { var t1 = this.creditMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, creditAId).compareTo$5$clientMap$invoice$sortAscending$sortField$userMap(0, this.clientMap, t2.$index(t1, creditBId), true, "name", this.userMap); }, $signature: 18 }; B.memoizedFilteredCreditList_closure.prototype = { call$6: function(selectionState, creditMap, creditList, clientMap, creditListState, userMap) { return B.filteredCreditsSelector(selectionState, creditMap, creditList, clientMap, creditListState, userMap); }, $signature: 656 }; B.filteredCreditsSelector_closure.prototype = { call$1: function(creditId) { var t2, t3, _this = this, credit = J.$index$asx(_this.creditMap._map$_map, creditId), t1 = credit.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (credit.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = _this.filterEntityType; if (t1 === C.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t1 === C.EntityType_user && credit.assignedUserId != _this.filterEntityId) return false; else if (t1 === C.EntityType_design && credit.designId !== _this.filterEntityId) return false; else if (t1 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; t1 = _this.creditListState; if (!credit.matchesStates$1(t1.stateFilters)) return false; if (!credit.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!credit.matchesFilter$1(t2) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t2.toLowerCase())) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, credit.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, credit.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, credit.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, credit.customValue4)) return false; } } } return true; }, $signature: 16 }; B.filteredCreditsSelector_closure0.prototype = { call$2: function(creditAId, creditBId) { var t4, _this = this, t1 = _this.creditMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, creditAId); t1 = t2.$index(t1, creditBId); t2 = _this.creditListState; t4 = t2.sortField; return J.compareTo$5$clientMap$invoice$sortAscending$sortField$userMap$ns(t3, _this.clientMap, t1, t2.sortAscending, t4, _this.userMap); }, $signature: 18 }; B.memoizedCreditStatsForDesign_closure.prototype = { call$2: function(designId, creditMap) { return B.creditStatsForDesign(designId, creditMap); }, $signature: 82 }; B.creditStatsForDesign_closure.prototype = { call$2: function(creditId, credit) { if (credit.designId === this.designId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; B.memoizedCreditStatsForClient_closure.prototype = { call$2: function(clientId, creditMap) { return B.creditStatsForClient(clientId, creditMap); }, $signature: 82 }; B.creditStatsForClient_closure.prototype = { call$2: function(creditId, credit) { if (credit.clientId === this.clientId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; B.memoizedCreditStatsForUser_closure.prototype = { call$2: function(userId, creditMap) { return B.creditStatsForUser(userId, creditMap); }, $signature: 82 }; B.creditStatsForUser_closure.prototype = { call$2: function(creditId, credit) { if (credit.assignedUserId == this.userId) if (!credit.get$isArchived() && !credit.isDeleted) ++this._box_0.countActive; else if (credit.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; G.CreditState.prototype = { $get$1: function(_, creditId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, creditId)) return t2.$index(t1, creditId); else return Q.InvoiceEntity_InvoiceEntity(null, C.EntityType_credit, creditId, null, null); }, loadCredits$1: function(clients) { return this.rebuild$1(new G.CreditState_loadCredits_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new G.CreditState_loadCredits_closure0(), new G.CreditState_loadCredits_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; G.CreditState_loadCredits_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; G.CreditState_loadCredits_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; G.CreditState_loadCredits_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 264 }; G.CreditUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; G._$CreditStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new G.CreditStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._credit_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_n67)); break; case "list": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._credit_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kQR; }, get$wireName: function() { return "CreditState"; } }; G._$CreditUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new G.CreditUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_editing; if (t6 == null) { t6 = new Q.InvoiceEntityBuilder(); t7 = t6.get$_invoice_model$_$this(); t8 = t7._invoice_model$_activities; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._invoice_model$_activities = t8; t7 = t8; } else t7 = t8; t8 = D.BuiltList_BuiltList$from(C.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t6.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t6.get$_invoice_model$_$this()._autoBillEnabled = false; t6.get$_invoice_model$_$this()._subscriptionId = ""; t5._credit_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._invoice_model$_$v = t6; break; case "listUIState": t5 = result.get$_credit_state$_$this(); t6 = t5._credit_state$_listUIState; t5 = t6 == null ? t5._credit_state$_listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_credit_state$_$this()._credit_state$_selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_credit_state$_$this()._credit_state$_forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_credit_state$_$this()._credit_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_uQd; }, get$wireName: function() { return "CreditUIState"; } }; G._$CreditState.prototype = { rebuild$1: function(updates) { var t1 = new G.CreditStateBuilder(); t1._credit_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof G.CreditState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._credit_state$__hashCode; return t1 == null ? _this._credit_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; G.CreditStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_map; return t2 == null ? t1._credit_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list: function(_) { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_list; return t2 == null ? t1._credit_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_credit_state$_$this: function() { var t1, t2, _this = this, $$v = _this._credit_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._credit_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._credit_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._credit_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._credit_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = G._$CreditState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("CreditState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._credit_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; G._$CreditUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof G.CreditUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._credit_state$__hashCode; return t1 == null ? _this._credit_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("CreditUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; G.CreditUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_editing; if (t2 == null) { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t1._credit_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_credit_state$_$this(), t2 = t1._credit_state$_listUIState; return t2 == null ? t1._credit_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_credit_state$_$this: function() { var t1, t2, _this = this, $$v = _this._credit_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; t1 = t2; } _this._credit_state$_editing = t1; _this._credit_state$_editingItemIndex = $$v.editingItemIndex; _this._credit_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._credit_state$_listUIState = t2; _this._credit_state$_selectedId = $$v.selectedId; _this._credit_state$_forceSelected = $$v.forceSelected; _this._credit_state$_tabIndex = $$v.tabIndex; _this._credit_state$_saveCompleter = $$v.saveCompleter; _this._credit_state$_cancelCompleter = $$v.cancelCompleter; _this._credit_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s13_ = "CreditUIState", _$result = null; try { _$result0 = _this._credit_state$_$v; if (_$result0 == null) { t1 = _this._credit_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_credit_state$_$this()._credit_state$_editingItemIndex; t3 = _this.get$_credit_state$_$this()._credit_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_credit_state$_$this()._credit_state$_selectedId; t6 = _this.get$_credit_state$_$this()._credit_state$_forceSelected; t7 = _this.get$_credit_state$_$this()._credit_state$_tabIndex; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tabIndex")); t8 = _this.get$_credit_state$_$this()._credit_state$_saveCompleter; _$result0 = G._$CreditUIState$_(_this.get$_credit_state$_$this()._credit_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._credit_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._credit_state$_$v = t1; return _$result; } }; G._CreditUIState_Object_EntityUIState.prototype = {}; G.ViewDashboard.prototype = {$isPersistUI: 1}; G.UpdateDashboardSettings.prototype = {$isPersistUI: 1}; G.UpdateDashboardSelection.prototype = {$isPersistUI: 1}; G.UpdateDashboardEntityType.prototype = {$isPersistUI: 1}; G.UpdateDashboardSidebar.prototype = {$isPersistUI: 1}; R._createViewDashboard_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1; type$.legacy_ViewDashboard._as(dynamicAction); t1 = $.$get$navigatorKey(); t1.toString; M.checkForChanges(new R._createViewDashboard__closure(store, next, dynamicAction), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), dynamicAction.force, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._createViewDashboard__closure.prototype = { call$0: function() { var _s10_ = "/dashboard", t1 = this.store, t2 = t1.get$_store$_state(), t3 = t2.userCompanyStates, t4 = t2.uiState.selectedCompanyIndex; if (J.$index$asx(t3._list, t4).get$isStale() || t2.staticState.get$isStale()) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s10_)); this.next.call$1(this.action); if (t1.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s10_, new R._createViewDashboard___closure(), type$.legacy_Object); }, $signature: 1 }; R._createViewDashboard___closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; D.dashboardUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.state, t3 = this.action, t4 = D.dashboardSettingsReducer(t2.settings, t3); t1._dashboard_state$_$v = t4; b.get$selectedEntities().replace$1(0, $.$get$selectedEntitiesReducer().call$2(t2.selectedEntities, t3)); t1 = $.$get$selectedEntityTypeReducer().call$2(t2.selectedEntityType, t3); b.get$_dashboard_state$_$this()._selectedEntityType = t1; t3 = $.$get$showSidebarReducer().call$2(t2.showSidebar, t3); b.get$_dashboard_state$_$this()._showSidebar = t3; return b; }, $signature: 1106 }; D.selectedEntitiesReducer_closure.prototype = { call$2: function(state, action) { return state.rebuild$1(new D.selectedEntitiesReducer__closure0(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1107 }; D.selectedEntitiesReducer__closure0.prototype = { call$1: function(b) { var t1 = this.action, t2 = t1.entityType; t1 = t1.entityIds; if (t1 == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); b.$indexSet(0, t2, D.BuiltList_BuiltList$from(t1, type$.legacy_String)); return b; }, $signature: 654 }; D.selectedEntitiesReducer_closure0.prototype = { call$2: function(state, action) { return state.rebuild$1(new D.selectedEntitiesReducer__closure()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1109 }; D.selectedEntitiesReducer__closure.prototype = { call$1: function(b) { J.clear$0$ax(b.get$_safeMap()); return b; }, $signature: 654 }; D.selectedEntityTypeReducer_closure.prototype = { call$2: function(state, action) { return action.entityType; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1110 }; D.showSidebarReducer_closure.prototype = { call$2: function(state, action) { return action.showSidebar; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1111 }; D.dashboardSettingsReducer_closure.prototype = { call$1: function(b) { var t1 = this.settings, t2 = t1.dateRange; b.get$_dashboard_state$_$this()._dateRange = t2; t2 = t1.startDate; b.get$_dashboard_state$_$this()._dashboard_state$_customStartDate = t2; t2 = t1.endDate; b.get$_dashboard_state$_$this()._dashboard_state$_customEndDate = t2; t2 = t1.enableComparison; b.get$_dashboard_state$_$this()._enableComparison = t2; t2 = t1.compareDateRange; b.get$_dashboard_state$_$this()._compareDateRange = t2; t2 = t1.compareStartDate; b.get$_dashboard_state$_$this()._compareCustomStartDate = t2; t1 = t1.compareEndDate; b.get$_dashboard_state$_$this()._compareCustomStartDate = t1; b.get$_dashboard_state$_$this()._offset = 0; return b; }, $signature: 123 }; D.dashboardSettingsReducer_closure0.prototype = { call$1: function(b) { b.get$_dashboard_state$_$this()._includeTaxes = this.action.includeTaxes; return b; }, $signature: 123 }; D.dashboardSettingsReducer_closure1.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + this.action.offset; return b; }, $signature: 123 }; D.dashboardSettingsReducer_closure2.prototype = { call$1: function(b) { b.get$_dashboard_state$_$this()._dashboard_state$_currencyId = this.action.currencyId; return b; }, $signature: 123 }; O.ChartDataGroup.prototype = { get$name: function(receiver) { return this.name; } }; O.ChartMoneyData.prototype = { get$date: function() { return this.date; }, get$amount: function() { return this.amount; } }; O.memoizedChartInvoices_closure.prototype = { call$5: function(currencyMap, company, settings, invoiceMap, clientMap) { return O._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, $signature: 281 }; O.memoizedPreviousChartInvoices_closure.prototype = { call$5: function(currencyMap, company, settings, invoiceMap, clientMap) { return O._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, $signature: 281 }; O._chartInvoices_closure.prototype = { call$2: function(int, invoice) { var t2, t3, date, t4, t5, amount, balance, exchangeRate, _this = this, _s6_ = "active", _s11_ = "outstanding", t1 = invoice.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); t1 = invoice.statusId; if (t1 !== "1") if (!invoice.isDeleted) t1 = t1 === "5" || t1 === "6" || client.isDeleted; else t1 = true; else t1 = true; if (!t1) { t1 = _this.settings; t2 = _this.company; if (invoice.isBetween$2(t1.startDate$1(t2), t1.endDate$1(t2))) { t3 = client.settings.currencyId; if (t1.matchesCurrency$1(t3)) { date = invoice.date.split("T")[0]; t4 = _this.totals; if (t4.$index(0, _s6_).$index(0, date) == null) { t4.$index(0, _s6_).$indexSet(0, date, 0); t4.$index(0, _s11_).$indexSet(0, date, 0); t5 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t5)); _this.outstandingData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t5)); } t5 = t1.includeTaxes; amount = invoice.amount; amount = t5 ? amount : amount - invoice.taxAmount; balance = t5 ? invoice.balance : invoice.get$netBalance(); if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = t3 !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { exchangeRate = invoice.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = R.getExchangeRate(_this.currencyMap, t3, t1); } amount *= exchangeRate; balance *= exchangeRate; } t1 = t4.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t4 = t4.$index(0, _s11_); t4.$indexSet(0, date, t4.$index(0, date) + balance); t4 = _this.counts; t4.$indexSet(0, _s6_, t4.$index(0, _s6_) + 1); t1 = _this.activeData.entityMap.$index(0, date); t2 = invoice.id; J.add$1$ax(t1, t2); if (invoice.balance > 0) { t4.$indexSet(0, _s11_, t4.$index(0, _s11_) + 1); J.add$1$ax(_this.outstandingData.entityMap.$index(0, date), t2); } } } } }, $signature: 55 }; O.memoizedChartQuotes_closure.prototype = { call$5: function(currencyMap, company, settings, quoteMap, clientMap) { return O.chartQuotes(clientMap, company, currencyMap, quoteMap, settings); }, $signature: 281 }; O.memoizedPreviousChartQuotes_closure.prototype = { call$5: function(currencyMap, company, settings, quoteMap, clientMap) { return O.chartQuotes(clientMap, company, currencyMap, quoteMap, settings); }, $signature: 281 }; O.chartQuotes_closure.prototype = { call$2: function(int, quote) { var date, t2, t3, t4, t5, t6, amount, exchangeRate, _this = this, _s6_ = "active", _s8_ = "approved", _s10_ = "unapproved", t1 = quote.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); date = quote.date; t1 = quote.statusId; if (!(t1 === "1" || quote.isDeleted || client.isDeleted)) { t2 = _this.settings; t3 = _this.company; if (quote.isBetween$2(t2.startDate$1(t3), t2.endDate$1(t3))) { t4 = client.settings.currencyId; if (t2.matchesCurrency$1(t4)) { t5 = _this.totals; if (t5.$index(0, _s6_).$index(0, date) == null) { t5.$index(0, _s6_).$indexSet(0, date, 0); t5.$index(0, _s8_).$indexSet(0, date, 0); t5.$index(0, _s10_).$indexSet(0, date, 0); t6 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t6)); _this.approvedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t6)); _this.unapprovedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t6)); } t6 = t2.includeTaxes; amount = quote.amount; amount = t6 ? amount : amount - quote.taxAmount; if (t2.currencyId === "-1") { t2 = t3.settings.currencyId; t2 = t4 !== (t2 == null ? "1" : t2); } else t2 = false; if (t2) { exchangeRate = quote.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t2 = t3.settings.currencyId; if (t2 == null) t2 = "1"; exchangeRate = R.getExchangeRate(_this.currencyMap, t4, t2); } amount *= exchangeRate; } t2 = t5.$index(0, _s6_); t2.$indexSet(0, date, t2.$index(0, date) + amount); t2 = _this.counts; t2.$indexSet(0, _s6_, t2.$index(0, _s6_) + 1); t3 = _this.activeData.entityMap.$index(0, date); t4 = quote.id; J.add$1$ax(t3, t4); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["3", "4"], type$.JSArray_legacy_String), t1)) { t1 = t5.$index(0, _s8_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s8_, t2.$index(0, _s8_) + 1); J.add$1$ax(_this.approvedData.entityMap.$index(0, date), t4); } else { t1 = t5.$index(0, _s10_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s10_, t2.$index(0, _s10_) + 1); J.add$1$ax(_this.unapprovedData.entityMap.$index(0, date), t4); } } } } }, $signature: 55 }; O.memoizedChartPayments_closure.prototype = { call$6: function(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return O.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, $signature: 653 }; O.memoizedPreviousChartPayments_closure.prototype = { call$6: function(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return O.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, $signature: 653 }; O.chartPayments_closure.prototype = { call$2: function(int, payment) { var date, t2, t3, t4, t5, completedAmount, refunded, exchangeRate, refunded0, _this = this, _s6_ = "active", _s8_ = "refunded", t1 = payment.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); date = payment.date; if (!(payment.isDeleted || !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["4", "5"], type$.JSArray_legacy_String), payment.statusId) || client.isDeleted)) { t1 = _this.settings; t2 = _this.company; t3 = t1.startDate$1(t2); t4 = t1.endDate$1(t2); if (J.compareTo$1$ns(t3, date) <= 0 && J.compareTo$1$ns(t4, date) >= 0) { t3 = client.settings.currencyId; if (t1.matchesCurrency$1(t3)) { t4 = _this.totals; if (t4.$index(0, _s6_).$index(0, date) == null) { t4.$index(0, _s6_).$indexSet(0, date, 0); t4.$index(0, _s8_).$indexSet(0, date, 0); t5 = type$.JSArray_legacy_String; _this.activeData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t5)); _this.refundedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t5)); } completedAmount = payment.get$completedAmount(); refunded = payment.refunded; if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = t3 !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { exchangeRate = payment.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = R.getExchangeRate(_this.currencyMap, t3, t1); } completedAmount *= exchangeRate; refunded0 = refunded * exchangeRate; } else refunded0 = refunded; t1 = t4.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + completedAmount); t4 = t4.$index(0, _s8_); t1 = t4.$index(0, date); t4.$indexSet(0, date, t1 + refunded0); t1 = _this.counts; t1.$indexSet(0, _s6_, t1.$index(0, _s6_) + 1); t2 = _this.activeData.entityMap.$index(0, date); t3 = payment.id; J.add$1$ax(t2, t3); if (refunded > 0) { t1.$indexSet(0, _s8_, t1.$index(0, _s8_) + 1); J.add$1$ax(_this.refundedData.entityMap.$index(0, date), t3); } } } } }, $signature: 191 }; O.memoizedChartTasks_closure.prototype = { call$8: function(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return O.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, $signature: 651 }; O.memoizedPreviousChartTasks_closure.prototype = { call$8: function(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return O.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, $signature: 651 }; O.chartTasks_closure.prototype = { call$2: function(int, task) { var t2, t3, invoice, project, group, _this = this, _null = null, t1 = task.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, _null, _null); t2 = _this.invoiceMap; t3 = task.invoiceId; invoice = J.$index$asx(t2._map$_map, t3); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, t1, _null, _null); t1 = task.projectId; project = J.$index$asx(_this.projectMap._map$_map, t1); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t1, _null, _null); t1 = client.groupId; group = J.$index$asx(_this.groupMap._map$_map, t1); if (group == null) group = Q.GroupEntity_GroupEntity(t1, _null); if (!(task.isDeleted || client.isDeleted || project.isDeleted)) { t1 = _this.settings; t3 = _this.company; if (task.isBetween$2(t1.startDate$1(t3), t1.endDate$1(t3))) if (t1.matchesCurrency$1(client.settings.currencyId)) C.JSArray_methods.forEach$1(task.getTaskTimes$0(), new O.chartTasks__closure(_this.totals, _this.loggedData, _this.invoicedData, _this.paidData, t3, project, client, task, group, t1, invoice, _this.currencyMap, t2, _this.counts)); } }, $signature: 122 }; O.chartTasks__closure.prototype = { call$1: function(taskTime) { var _this = this; taskTime.getParts$0().forEach$1(0, new O.chartTasks___closure(_this.totals, _this.loggedData, _this.invoicedData, _this.paidData, _this.company, _this.project, _this.client, _this.task, _this.group, _this.settings, _this.invoice, _this.currencyMap, _this.invoiceMap, _this.counts)); }, $signature: 204 }; O.chartTasks___closure.prototype = { call$2: function(date, duration) { var t2, t3, t4, amount, t5, t6, exchangeRate, _this = this, _s6_ = "logged", _s8_ = "invoiced", _s4_ = "paid", t1 = _this.totals; if (t1.$index(0, _s6_).$index(0, date) == null) { t1.$index(0, _s6_).$indexSet(0, date, 0); t1.$index(0, _s8_).$indexSet(0, date, 0); t1.$index(0, _s4_).$indexSet(0, date, 0); t2 = type$.JSArray_legacy_String; _this.loggedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t2)); _this.invoicedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t2)); _this.paidData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t2)); } t2 = _this.company; t3 = _this.client; t4 = _this.task; amount = U.taskRateSelector(t3, t2, _this.group, _this.project, t4) * Y.round(C.JSInt_methods._tdivFast$1(duration._duration, 1000000) / 3600, 3); if (_this.settings.currencyId === "-1") { t5 = t3.settings.currencyId; t6 = t2.settings.currencyId; t5 = t5 !== (t6 == null ? "1" : t6); } else t5 = false; if (t5) { exchangeRate = _this.invoice.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t3 = t3.settings.currencyId; t2 = t2.settings.currencyId; if (t2 == null) t2 = "1"; exchangeRate = R.getExchangeRate(_this.currencyMap, t3, t2); } amount *= exchangeRate; } t2 = t4.invoiceId; if (t2.length !== 0) { t3 = _this.invoiceMap._map$_map; t5 = J.getInterceptor$x(t3); t2 = t5.containsKey$1(t3, t2) && t5.$index(t3, t2).statusId === "4"; t3 = _this.counts; t4 = t4.id; if (t2) { t1 = t1.$index(0, _s4_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t3.$indexSet(0, _s4_, t3.$index(0, _s4_) + 1); J.add$1$ax(_this.paidData.entityMap.$index(0, date), t4); } else { t1 = t1.$index(0, _s8_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t3.$indexSet(0, _s8_, t3.$index(0, _s8_) + 1); J.add$1$ax(_this.invoicedData.entityMap.$index(0, date), t4); } } else { t1 = t1.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t1 = _this.counts; t1.$indexSet(0, _s6_, t1.$index(0, _s6_) + 1); J.add$1$ax(_this.loggedData.entityMap.$index(0, date), t4.id); } }, $signature: 1117 }; O.chartExpenses_closure.prototype = { call$2: function(int, expense) { var t1, t2, t3, t4, t5, exchangeRate, invoice, _this = this, _null = null, _s6_ = "logged", _s7_ = "pending", _s8_ = "invoiced", _s4_ = "paid", currencyId = expense.currencyId, date = expense.date, amount = expense.get$grossAmount(); if (!expense.isDeleted) { t1 = _this.settings; t2 = _this.company; t3 = t1.startDate$1(t2); t4 = t1.endDate$1(t2); if (t3 == null) t3 = ""; t5 = date == null; if (C.JSString_methods.compareTo$1(t3, t5 ? "" : date) <= 0) { t3 = t4 == null ? "" : t4; t3 = C.JSString_methods.compareTo$1(t3, t5 ? "" : date) >= 0; } else t3 = false; if (t3) if (t1.matchesCurrency$1(currencyId)) { t3 = _this.totals; if (t3.$index(0, _s6_).$index(0, date) == null) { t3.$index(0, _s6_).$indexSet(0, date, 0); t3.$index(0, _s7_).$indexSet(0, date, 0); t3.$index(0, _s8_).$indexSet(0, date, 0); t3.$index(0, _s4_).$indexSet(0, date, 0); t4 = type$.JSArray_legacy_String; _this.loggedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t4)); _this.pendingData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t4)); _this.invoicedData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t4)); _this.paidData.entityMap.$indexSet(0, date, H.setRuntimeTypeInfo([], t4)); } if (t1.currencyId === "-1") { t1 = t2.settings.currencyId; t1 = currencyId !== (t1 == null ? "1" : t1); } else t1 = false; if (t1) { exchangeRate = expense.exchangeRate; if (!(exchangeRate !== 1 && exchangeRate !== 0)) { t1 = t2.settings.currencyId; if (t1 == null) t1 = "1"; exchangeRate = R.getExchangeRate(_this.currencyMap, currencyId, t1); } amount *= exchangeRate; } t1 = expense.invoiceId; if (t1 != null && t1.length !== 0) { invoice = J.$index$asx(_this.invoiceMap._map$_map, t1); if (invoice == null) invoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); t1 = _this.counts; t2 = expense.id; if (invoice.statusId === "4") { t3 = t3.$index(0, _s4_); t3.$indexSet(0, date, t3.$index(0, date) + amount); t1.$indexSet(0, _s4_, t1.$index(0, _s4_) + 1); J.add$1$ax(_this.paidData.entityMap.$index(0, date), t2); } else { t3 = t3.$index(0, _s8_); t3.$indexSet(0, date, t3.$index(0, date) + amount); t1.$indexSet(0, _s8_, t1.$index(0, _s8_) + 1); J.add$1$ax(_this.invoicedData.entityMap.$index(0, date), t2); } } else { t1 = expense.get$isPending(); t2 = _this.counts; t4 = expense.id; if (t1) { t1 = t3.$index(0, _s7_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s7_, t2.$index(0, _s7_) + 1); J.add$1$ax(_this.pendingData.entityMap.$index(0, date), t4); } else { t1 = t3.$index(0, _s6_); t1.$indexSet(0, date, t1.$index(0, date) + amount); t2.$indexSet(0, _s6_, t2.$index(0, _s6_) + 1); J.add$1$ax(_this.loggedData.entityMap.$index(0, date), t4); } } } } }, $signature: 89 }; O.memoizedChartExpenses_closure.prototype = { call$5: function(currencyMap, company, settings, invoiceMap, expenseMap) { return O.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, $signature: 649 }; O.memoizedPreviousChartExpenses_closure.prototype = { call$5: function(currencyMap, company, settings, invoiceMap, expenseMap) { return O.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, $signature: 649 }; A.memoizedUpcomingInvoices_closure.prototype = { call$2: function(invoiceMap, clientMap) { return A._upcomingInvoices(clientMap, invoiceMap); }, $signature: 255 }; A._upcomingInvoices_closure.prototype = { call$2: function(index, invoice) { var t1 = invoice.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(invoice.get$isArchived() || invoice.isDeleted)) { t1 = invoice.statusId; t1 = t1 === "5" || t1 === "6" || client.get$isArchived() || client.isDeleted; } else t1 = true; if (!t1) if (invoice.get$isUpcoming()) this.invoices.push(invoice); }, $signature: 55 }; A._upcomingInvoices_closure0.prototype = { call$2: function(invoiceA, invoiceB) { return C.JSString_methods.compareTo$1(invoiceA.dueDate, invoiceB.dueDate); }, $signature: 287 }; A.memoizedPastDueInvoices_closure.prototype = { call$2: function(invoiceMap, clientMap) { return A._pastDueInvoices(clientMap, invoiceMap); }, $signature: 255 }; A._pastDueInvoices_closure.prototype = { call$2: function(index, invoice) { var t1 = invoice.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(invoice.get$isArchived() || invoice.isDeleted)) { t1 = invoice.statusId; t1 = t1 === "5" || t1 === "6" || client.get$isArchived() || client.isDeleted; } else t1 = true; if (!t1) if (invoice.get$isPastDue()) this.invoices.push(invoice); }, $signature: 55 }; A._pastDueInvoices_closure0.prototype = { call$2: function(invoiceA, invoiceB) { return C.JSString_methods.compareTo$1(invoiceA.dueDate, invoiceB.dueDate); }, $signature: 287 }; A.memoizedRecentPayments_closure.prototype = { call$2: function(paymentMap, clientMap) { return A._recentPayments(clientMap, paymentMap); }, $signature: 1122 }; A._recentPayments_closure.prototype = { call$2: function(index, payment) { var t1 = payment.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(payment.get$isArchived() || payment.isDeleted || client.get$isArchived() || client.isDeleted)) if (!payment.get$isArchived() && !payment.isDeleted && payment.createdAt > this.threeMonthsAgo) this.payments.push(payment); }, $signature: 191 }; A._recentPayments_closure0.prototype = { call$2: function(paymentA, paymentB) { var t1 = paymentA.date, t2 = paymentB.date; if (t1 == t2) return C.JSInt_methods.compareTo$1(paymentB.createdAt, paymentA.createdAt); else return J.compareTo$1$ns(t2, t1); }, $signature: 1123 }; A.memoizedUpcomingQuotes_closure.prototype = { call$2: function(quoteMap, clientMap) { return A._upcomingQuotes(clientMap, quoteMap); }, $signature: 255 }; A._upcomingQuotes_closure.prototype = { call$2: function(index, quote) { var t1 = quote.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(quote.get$isArchived() || quote.isDeleted || client.get$isArchived() || client.isDeleted)) if (quote.get$isUpcoming()) this.quotes.push(quote); }, $signature: 55 }; A._upcomingQuotes_closure0.prototype = { call$2: function(quoteA, quoteB) { return C.JSString_methods.compareTo$1(quoteA.dueDate, quoteB.dueDate); }, $signature: 287 }; A.memoizedExpiredQuotes_closure.prototype = { call$2: function(quoteMap, clientMap) { return A._expiredQuotes(clientMap, quoteMap); }, $signature: 255 }; A._expiredQuotes_closure.prototype = { call$2: function(index, quote) { var t1 = quote.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(quote.get$isArchived() || quote.isDeleted || client.get$isArchived() || client.isDeleted)) if (quote.get$isPastDue()) this.quotes.push(quote); }, $signature: 55 }; A._expiredQuotes_closure0.prototype = { call$2: function(quoteA, quoteB) { return C.JSString_methods.compareTo$1(quoteA.dueDate, quoteB.dueDate); }, $signature: 287 }; A.memoizedRunningTasks_closure.prototype = { call$2: function(taskMap, clientMap) { return A._runningTasks(clientMap, taskMap); }, $signature: 647 }; A._runningTasks_closure.prototype = { call$2: function(index, task) { var t1 = task.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(task.get$isArchived() || task.isDeleted || client.get$isArchived() || client.isDeleted)) if (task.get$isRunning()) this.tasks.push(task); }, $signature: 122 }; A._runningTasks_closure0.prototype = { call$2: function(taskA, taskB) { var t2, t1 = taskA.get$startTimestamp(); if (t1 == null) t1 = 0; t2 = taskB.get$startTimestamp(); return C.JSInt_methods.compareTo$1(t1, t2 == null ? 0 : t2); }, $signature: 393 }; A.memoizedRecentTasks_closure.prototype = { call$2: function(taskMap, clientMap) { return A._recentTasks(clientMap, taskMap); }, $signature: 647 }; A._recentTasks_closure.prototype = { call$2: function(index, task) { var t1 = task.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(task.get$isArchived() || task.isDeleted || client.get$isArchived() || client.isDeleted)) if (!task.get$isRunning()) this.tasks.push(task); }, $signature: 122 }; A._recentTasks_closure0.prototype = { call$2: function(taskA, taskB) { var t2, t1 = taskA.get$startTimestamp(); if (t1 == null) t1 = 0; t2 = taskB.get$startTimestamp(); return C.JSInt_methods.compareTo$1(t1, t2 == null ? 0 : t2); }, $signature: 393 }; A.memoizedRecentExpenses_closure.prototype = { call$2: function(expenseMap, clientMap) { return A._recentExpenses(clientMap, expenseMap); }, $signature: 1126 }; A._recentExpenses_closure.prototype = { call$2: function(index, expense) { var t1 = expense.clientId, client = J.$index$asx(this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(expense.get$isArchived() || expense.isDeleted || client.get$isArchived() || client.isDeleted)) this.expenses.push(expense); }, $signature: 89 }; A._recentExpenses_closure0.prototype = { call$2: function(expenseA, expenseB) { var t2, t1 = expenseA.date; if (t1 == null) t1 = ""; t2 = expenseB.date; return C.JSString_methods.compareTo$1(t1, t2 == null ? "" : t2); }, $signature: 646 }; Y.DashboardUIState.prototype = {}; Y.DashboardUISettings.prototype = { matchesCurrency$1: function(match) { var t1 = this.currencyId; t1 = t1.length === 0 || t1 === "-1"; if (t1) return true; return this.currencyId === match; }, startDate$1: function(company) { var _this = this; return V.calculateStartDate(company, _this.customEndDate, _this.customStartDate, _this.dateRange, _this.offset); }, endDate$1: function(company) { var _this = this; return V.calculateEndDate(company, _this.customEndDate, _this.customStartDate, _this.dateRange, _this.offset); } }; Y._$DashboardUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["settings", serializers.serialize$2$specifiedType(object.settings, C.FullType_86y), "selectedEntityType", serializers.serialize$2$specifiedType(object.selectedEntityType, C.FullType_qBb), "selectedEntities", serializers.serialize$2$specifiedType(object.selectedEntities, C.FullType_mVA), "showSidebar", serializers.serialize$2$specifiedType(object.showSidebar, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, result = new Y.DashboardUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_EntityType_and_legacy_BuiltList_legacy_String, t2 = type$.legacy_EntityType, t3 = type$.legacy_DashboardUISettings; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "settings": t4 = result.get$_dashboard_state$_$this(); t5 = t4._dashboard_state$_settings; t4 = t5 == null ? t4._dashboard_state$_settings = new Y.DashboardUISettingsBuilder() : t5; t5 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_86y)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull("other")); t4._dashboard_state$_$v = t5; break; case "selectedEntityType": t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_dashboard_state$_$this()._selectedEntityType = t4; break; case "selectedEntities": t4 = result.get$_dashboard_state$_$this(); t5 = t4._selectedEntities; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t1); t5.replace$1(0, C.Map_empty0); t4._selectedEntities = t5; t4 = t5; } else t4 = t5; t4.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mVA)); break; case "showSidebar": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_dashboard_state$_$this()._showSidebar = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_qjZ; }, get$wireName: function() { return "DashboardUIState"; } }; Y._$DashboardUISettingsSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["dateRange", serializers.serialize$2$specifiedType(object.dateRange, C.FullType_AaU), "customStartDate", serializers.serialize$2$specifiedType(object.customStartDate, C.FullType_h8g), "customEndDate", serializers.serialize$2$specifiedType(object.customEndDate, C.FullType_h8g), "enableComparison", serializers.serialize$2$specifiedType(object.enableComparison, C.FullType_MtR), "compareDateRange", serializers.serialize$2$specifiedType(object.compareDateRange, C.FullType_oEc), "compareCustomStartDate", serializers.serialize$2$specifiedType(object.compareCustomStartDate, C.FullType_h8g), "compareCustomEndDate", serializers.serialize$2$specifiedType(object.compareCustomEndDate, C.FullType_h8g), "offset", serializers.serialize$2$specifiedType(object.offset, C.FullType_kjq), "currencyId", serializers.serialize$2$specifiedType(object.currencyId, C.FullType_h8g), "includeTaxes", serializers.serialize$2$specifiedType(object.includeTaxes, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, result = new Y.DashboardUISettingsBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_DateRangeComparison, t2 = type$.legacy_DateRange; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "dateRange": t3 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_AaU)); result.get$_dashboard_state$_$this()._dateRange = t3; break; case "customStartDate": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_customStartDate = t3; break; case "customEndDate": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_customEndDate = t3; break; case "enableComparison": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_dashboard_state$_$this()._enableComparison = t3; break; case "compareDateRange": t3 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_oEc)); result.get$_dashboard_state$_$this()._compareDateRange = t3; break; case "compareCustomStartDate": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_dashboard_state$_$this()._compareCustomStartDate = t3; break; case "compareCustomEndDate": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_dashboard_state$_$this()._compareCustomEndDate = t3; break; case "offset": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_dashboard_state$_$this()._offset = t3; break; case "currencyId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_dashboard_state$_$this()._dashboard_state$_currencyId = t3; break; case "includeTaxes": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_dashboard_state$_$this()._includeTaxes = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_MYE; }, get$wireName: function() { return "DashboardUISettings"; } }; Y._$DashboardUIState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Y.DashboardUIState && _this.settings.$eq(0, other.settings) && _this.selectedEntityType === other.selectedEntityType && J.$eq$(_this.selectedEntities, other.selectedEntities) && _this.showSidebar === other.showSidebar; }, get$hashCode: function(_) { var _this = this, t1 = _this._dashboard_state$__hashCode; if (t1 == null) { t1 = _this.settings; t1 = _this._dashboard_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, t1.get$hashCode(t1)), H.Primitives_objectHashCode(_this.selectedEntityType)), J.get$hashCode$(_this.selectedEntities)), C.JSBool_methods.get$hashCode(_this.showSidebar))); } return t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DashboardUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "settings", _this.settings); t2.add$2(t1, "selectedEntityType", _this.selectedEntityType); t2.add$2(t1, "selectedEntities", _this.selectedEntities); t2.add$2(t1, "showSidebar", _this.showSidebar); return t2.toString$0(t1); } }; Y.DashboardUIStateBuilder.prototype = { get$settings: function() { var t1 = this.get$_dashboard_state$_$this(), t2 = t1._dashboard_state$_settings; return t2 == null ? t1._dashboard_state$_settings = new Y.DashboardUISettingsBuilder() : t2; }, get$selectedEntities: function() { var t1 = this.get$_dashboard_state$_$this(), t2 = t1._selectedEntities; return t2 == null ? t1._selectedEntities = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_BuiltList_legacy_String) : t2; }, get$_dashboard_state$_$this: function() { var t1, t2, _this = this, $$v = _this._dashboard_state$_$v; if ($$v != null) { t1 = $$v.settings; t2 = new Y.DashboardUISettingsBuilder(); t2._dashboard_state$_$v = t1; _this._dashboard_state$_settings = t2; _this._selectedEntityType = $$v.selectedEntityType; t1 = $$v.selectedEntities; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._selectedEntities = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._showSidebar = $$v.showSidebar; _this._dashboard_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, exception, _this = this, _s16_ = "DashboardUIState", _$result = null; try { _$result0 = _this._dashboard_state$_$v; if (_$result0 == null) { t1 = _this.get$settings().build$0(0); t2 = _this.get$_dashboard_state$_$this()._selectedEntityType; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "selectedEntityType")); t3 = _this.get$selectedEntities().build$0(0); t4 = _this.get$_dashboard_state$_$this()._showSidebar; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "showSidebar")); _$result0 = Y._$DashboardUIState$_(t3, t2, t1, t4); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "settings"; _this.get$settings().build$0(0); _$failedField = "selectedEntities"; _this.get$selectedEntities().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._dashboard_state$_$v = t1; return _$result; } }; Y._$DashboardUISettings.prototype = { rebuild$1: function(updates) { var t1 = new Y.DashboardUISettingsBuilder(); t1._dashboard_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Y.DashboardUISettings && _this.dateRange === other.dateRange && _this.customStartDate === other.customStartDate && _this.customEndDate == other.customEndDate && _this.enableComparison === other.enableComparison && _this.compareDateRange === other.compareDateRange && _this.compareCustomStartDate === other.compareCustomStartDate && _this.compareCustomEndDate == other.compareCustomEndDate && _this.offset === other.offset && _this.currencyId === other.currencyId && _this.includeTaxes === other.includeTaxes; }, get$hashCode: function(_) { var _this = this, t1 = _this._dashboard_state$__hashCode; return t1 == null ? _this._dashboard_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, H.Primitives_objectHashCode(_this.dateRange)), C.JSString_methods.get$hashCode(_this.customStartDate)), J.get$hashCode$(_this.customEndDate)), C.JSBool_methods.get$hashCode(_this.enableComparison)), H.Primitives_objectHashCode(_this.compareDateRange)), C.JSString_methods.get$hashCode(_this.compareCustomStartDate)), J.get$hashCode$(_this.compareCustomEndDate)), C.JSInt_methods.get$hashCode(_this.offset)), C.JSString_methods.get$hashCode(_this.currencyId)), C.JSBool_methods.get$hashCode(_this.includeTaxes))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DashboardUISettings"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "dateRange", _this.dateRange); t2.add$2(t1, "customStartDate", _this.customStartDate); t2.add$2(t1, "customEndDate", _this.customEndDate); t2.add$2(t1, "enableComparison", _this.enableComparison); t2.add$2(t1, "compareDateRange", _this.compareDateRange); t2.add$2(t1, "compareCustomStartDate", _this.compareCustomStartDate); t2.add$2(t1, "compareCustomEndDate", _this.compareCustomEndDate); t2.add$2(t1, "offset", _this.offset); t2.add$2(t1, "currencyId", _this.currencyId); t2.add$2(t1, "includeTaxes", _this.includeTaxes); return t2.toString$0(t1); } }; Y.DashboardUISettingsBuilder.prototype = { get$_dashboard_state$_$this: function() { var _this = this, $$v = _this._dashboard_state$_$v; if ($$v != null) { _this._dateRange = $$v.dateRange; _this._dashboard_state$_customStartDate = $$v.customStartDate; _this._dashboard_state$_customEndDate = $$v.customEndDate; _this._enableComparison = $$v.enableComparison; _this._compareDateRange = $$v.compareDateRange; _this._compareCustomStartDate = $$v.compareCustomStartDate; _this._compareCustomEndDate = $$v.compareCustomEndDate; _this._offset = $$v.offset; _this._dashboard_state$_currencyId = $$v.currencyId; _this._includeTaxes = $$v.includeTaxes; _this._dashboard_state$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _s19_ = "DashboardUISettings", _$result = _this._dashboard_state$_$v; if (_$result == null) { t1 = _this.get$_dashboard_state$_$this()._dateRange; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "dateRange")); t2 = _this.get$_dashboard_state$_$this()._dashboard_state$_customStartDate; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "customStartDate")); t3 = _this.get$_dashboard_state$_$this()._dashboard_state$_customEndDate; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "customEndDate")); t4 = _this.get$_dashboard_state$_$this()._enableComparison; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "enableComparison")); t5 = _this.get$_dashboard_state$_$this()._compareDateRange; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "compareDateRange")); t6 = _this.get$_dashboard_state$_$this()._compareCustomStartDate; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "compareCustomStartDate")); t7 = _this.get$_dashboard_state$_$this()._compareCustomEndDate; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "compareCustomEndDate")); t8 = _this.get$_dashboard_state$_$this()._offset; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "offset")); t9 = _this.get$_dashboard_state$_$this()._dashboard_state$_currencyId; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "currencyId")); t10 = _this.get$_dashboard_state$_$this()._includeTaxes; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "includeTaxes")); _$result = Y._$DashboardUISettings$_(t7, t6, t5, t9, t3, t2, t1, t4, t10, t8); } return _this._dashboard_state$_$v = _$result; } }; N.ViewDesignList.prototype = {$isStopLoading: 1}; N.ViewDesign.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$designId: function() { return this.designId; } }; N.EditDesign.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$design: function() { return this.design; } }; N.UpdateDesign.prototype = {$isPersistUI: 1, get$design: function() { return this.design; } }; N.LoadDesignRequest.prototype = {$isStartLoading: 1}; N.LoadDesignFailure.prototype = { toString$0: function(_) { return "LoadDesignFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; N.LoadDesignSuccess.prototype = { toString$0: function(_) { return "LoadDesignSuccess{design: " + H.S(this.design) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$design: function() { return this.design; } }; N.LoadDesignsRequest.prototype = {$isStartLoading: 1}; N.LoadDesignsFailure.prototype = { toString$0: function(_) { return "LoadDesignsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; N.LoadDesignsSuccess.prototype = { toString$0: function(_) { return "LoadDesignsSuccess{designs: " + H.S(this.designs) + "}"; }, $isStopLoading: 1 }; N.SaveDesignRequest.prototype = {$isStartSaving: 1, get$design: function() { return this.design; } }; N.SaveDesignSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$design: function() { return this.design; } }; N.AddDesignSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$design: function() { return this.design; } }; N.SaveDesignFailure.prototype = {$isStopSaving: 1}; N.ArchiveDesignsRequest.prototype = {$isStartSaving: 1}; N.ArchiveDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.ArchiveDesignsFailure.prototype = {$isStopSaving: 1}; N.DeleteDesignsRequest.prototype = {$isStartSaving: 1}; N.DeleteDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.DeleteDesignsFailure.prototype = {$isStopSaving: 1}; N.RestoreDesignsRequest.prototype = {$isStartSaving: 1}; N.RestoreDesignsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.RestoreDesignsFailure.prototype = {$isStopSaving: 1}; N.FilterDesigns.prototype = {$isPersistUI: 1}; N.SortDesigns.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; N.FilterDesignsByState.prototype = {$isPersistUI: 1}; N.FilterDesignsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterDesignsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterDesignsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterDesignsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.handleDesignAction_closure.prototype = { call$1: function(design) { return design.get$id(design); }, $signature: 41 }; N.handleDesignAction_closure0.prototype = { call$1: function(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 154 }; N.handleDesignAction_closure1.prototype = { call$1: function(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 154 }; N.handleDesignAction_closure2.prototype = { call$1: function(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 154 }; N.handleDesignAction_closure3.prototype = { call$1: function(b) { var t1 = this.design.id; return b.get$_invoice_model$_$this()._designId = t1; }, $signature: 154 }; N.StartDesignMultiselect.prototype = {}; N.AddToDesignMultiselect.prototype = {}; N.RemoveFromDesignMultiselect.prototype = {}; N.ClearDesignMultiselect.prototype = {}; V._editDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s29_ = "/settings/custom_designs_edit"; next.call$1(type$.legacy_EditDesign._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s29_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s29_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._viewDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewDesign_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewDesign_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewDesign._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/custom_designs_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/custom_designs_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; V._viewDesignList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s24_ = "/settings/custom_designs"; next.call$1(type$.legacy_ViewDesignList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s24_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s24_, new V._viewDesignList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._viewDesignList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; V._archiveDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_ArchiveDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = P.List_List$of(new H.MappedListIterable(t1, new V._archiveDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new V._archiveDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new V._archiveDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._archiveDesign__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).designState.map._map$_map, id); }, $signature: 290 }; V._archiveDesign__closure0.prototype = { call$1: function(designs) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ArchiveDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 391 }; V._archiveDesign__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ArchiveDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._deleteDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_DeleteDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = P.List_List$of(new H.MappedListIterable(t1, new V._deleteDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new V._deleteDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new V._deleteDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._deleteDesign__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).designState.map._map$_map, id); }, $signature: 290 }; V._deleteDesign__closure0.prototype = { call$1: function(designs) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.DeleteDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 391 }; V._deleteDesign__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.DeleteDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._restoreDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevDesigns; type$.legacy_RestoreDesignsRequest._as(dynamicAction); t1 = dynamicAction.designIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DesignEntity*>"); prevDesigns = P.List_List$of(new H.MappedListIterable(t1, new V._restoreDesign__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new V._restoreDesign__closure0(store, dynamicAction), type$.Null).catchError$1(new V._restoreDesign__closure1(store, prevDesigns, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._restoreDesign__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).designState.map._map$_map, id); }, $signature: 290 }; V._restoreDesign__closure0.prototype = { call$1: function(designs) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.RestoreDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, $signature: 391 }; V._restoreDesign__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.RestoreDesignsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._saveDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveDesignRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.design).then$1$1(0, new V._saveDesign__closure(dynamicAction, store), type$.Null).catchError$1(new V._saveDesign__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._saveDesign__closure.prototype = { call$1: function(design) { var t1 = this.action, t2 = this.store; if (t1.design.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new N.AddDesignSuccess(design)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new N.SaveDesignSuccess(design)); t1.completer.complete$1(0, design); }, $signature: 151 }; V._saveDesign__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SaveDesignFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; V._loadDesign_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadDesign._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.LoadDesignRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.designId).then$1$1(0, new V._loadDesign__closure(store, dynamicAction), type$.Null).catchError$1(new V._loadDesign__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._loadDesign__closure.prototype = { call$1: function(design) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadDesignSuccess(design)); this.action.completer.complete$1(0, null); }, $signature: 151 }; V._loadDesign__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadDesignFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; V._loadDesigns_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadDesigns._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.LoadDesignsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new V._loadDesigns__closure(store, dynamicAction), type$.Null).catchError$1(new V._loadDesigns__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; V._loadDesigns__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadDesignsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1132 }; V._loadDesigns__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadDesignsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; U.designUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$designListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer11().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._design_model$_$v = t4; t1 = $.$get$selectedIdReducer11().call$2(t2.selectedId, t3); b.get$_design_state$_$this()._design_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer11().call$2(t2.forceSelected, t3); b.get$_design_state$_$this()._design_state$_forceSelected = t3; return b; }, $signature: 1133 }; U.forceSelectedReducer_closure87.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1134 }; U.forceSelectedReducer_closure88.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1135 }; U.forceSelectedReducer_closure89.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1136 }; U.forceSelectedReducer_closure90.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1137 }; U.forceSelectedReducer_closure91.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1138 }; U.forceSelectedReducer_closure92.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1139 }; U.forceSelectedReducer_closure93.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1140 }; U.forceSelectedReducer_closure94.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1141 }; U.selectedIdReducer_closure179.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1142 }; U.selectedIdReducer_closure180.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1143 }; U.selectedIdReducer_closure181.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_design ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; U.selectedIdReducer_closure182.prototype = { call$2: function(selectedId, action) { return action.get$designId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; U.selectedIdReducer_closure183.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$design()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; U.selectedIdReducer_closure184.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; U.selectedIdReducer_closure185.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; U.selectedIdReducer_closure186.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1145 }; U.selectedIdReducer_closure187.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1146 }; U.selectedIdReducer_closure188.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1147 }; U.selectedIdReducer_closure189.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1148 }; U.selectedIdReducer_closure190.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1149 }; U.selectedIdReducer_closure191.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1150 }; U.selectedIdReducer_closure192.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1151 }; U.editingReducer_closure58.prototype = { call$2: function(designs, action) { return J.$index$asx(action.designs, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1152 }; U.editingReducer_closure59.prototype = { call$2: function(designs, action) { return J.$index$asx(action.designs, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1153 }; U.editingReducer_closure60.prototype = { call$2: function(designs, action) { return J.$index$asx(action.designs, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1154 }; U.editingReducer_closure61.prototype = { call$2: function(design, action) { return action.design.rebuild$1(new U.editingReducer__closure23()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1155 }; U.editingReducer__closure23.prototype = { call$1: function(b) { b.get$_design_model$_$this()._design_model$_isChanged = true; return b; }, $signature: 282 }; U._viewDesignList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; U._filterDesignsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; U._filterDesignsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; U._filterDesignsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; U._filterDesignsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; U._filterDesignsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; U._filterDesignsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; U._filterDesigns_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.designListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; U._sortDesigns_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; U._startListMultiselect_closure11.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; U._addToListMultiselect_closure11.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; U._removeFromListMultiselect_closure11.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; U._clearListMultiselect_closure11.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; U._archiveDesignSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 390 }; U._deleteDesignSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 390 }; U._restoreDesignSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.designs), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_design_state$_$this(); t5 = t4._design_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._design_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 390 }; U._addDesign_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.design, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 313 }; U._updateDesign_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.design; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 313 }; U._setLoadedDesign_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.design; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 313 }; A.memoizedFilteredDesignList_closure.prototype = { call$3: function(designMap, designList, designListState) { return A.filteredDesignsSelector(designMap, designList, designListState); }, $signature: 1158 }; A.filteredDesignsSelector_closure.prototype = { call$1: function(designId) { var t1, design = J.$index$asx(this.designMap._map$_map, designId); if (!design.isCustom) return false; t1 = this.designListState; if (!design.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([design.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; A.filteredDesignsSelector_closure0.prototype = { call$2: function(designAId, designBId) { var t1 = this.designMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = this.designListState; return t2.$index(t1, designAId).compareTo$3(0, t2.$index(t1, designBId), t3.sortField, t3.sortAscending); }, $signature: 18 }; Y.DesignState.prototype = { get$cleanDesign: function() { var t1 = J.firstWhere$2$orElse$ax(this.list._list, new Y.DesignState_cleanDesign_closure(this), new Y.DesignState_cleanDesign_closure0()); t1 = J.$index$asx(this.map._map$_map, t1); return t1 == null ? D.DesignEntity_DesignEntity(null, null, null) : t1; }, get$customDesigns: function() { var t1 = J.where$1$ax(this.list._list, new Y.DesignState_customDesigns_closure(this)), t2 = t1.$ti._eval$1("MappedIterable<1,DesignEntity*>"); return P.List_List$of(new H.MappedIterable(t1, new Y.DesignState_customDesigns_closure0(this), t2), true, t2._eval$1("Iterable.E")); }, loadDesigns$1: function(clients) { return this.rebuild$1(new Y.DesignState_loadDesigns_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new Y.DesignState_loadDesigns_closure0(), new Y.DesignState_loadDesigns_closure1(), type$.legacy_String, type$.legacy_DesignEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y.DesignState_cleanDesign_closure.prototype = { call$1: function(id) { var t1 = this.$this.map._map$_map, t2 = J.getInterceptor$asx(t1); return !t2.$index(t1, id).isCustom && t2.$index(t1, id).name === "Clean"; }, $signature: 16 }; Y.DesignState_cleanDesign_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; Y.DesignState_customDesigns_closure.prototype = { call$1: function(designId) { return J.$index$asx(this.$this.map._map$_map, designId).isCustom; }, $signature: 16 }; Y.DesignState_customDesigns_closure0.prototype = { call$1: function(designId) { return J.$index$asx(this.$this.map._map$_map, designId); }, $signature: 290 }; Y.DesignState_loadDesigns_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Y.DesignState_loadDesigns_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1159 }; Y.DesignState_loadDesigns_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 313 }; Y.DesignUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Y._$DesignStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_4ig), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Y.DesignStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_DesignEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_design_state$_$this(); t6 = t5._design_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._design_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_4ig)); break; case "list": t5 = result.get$_design_state$_$this(); t6 = t5._design_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._design_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_CCG; }, get$wireName: function() { return "DesignState"; } }; Y._$DesignUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_CNd)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Y.DesignUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_DesignEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_design_state$_$this(); t4 = t3._design_state$_editing; if (t4 == null) { t4 = new D.DesignEntityBuilder(); t4.get$_design_model$_$this()._isFree = true; t3._design_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_CNd)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._design_model$_$v = t4; break; case "listUIState": t3 = result.get$_design_state$_$this(); t4 = t3._design_state$_listUIState; t3 = t4 == null ? t3._design_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_design_state$_$this()._design_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_design_state$_$this()._design_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_design_state$_$this()._design_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_5uk; }, get$wireName: function() { return "DesignUIState"; } }; Y._$DesignState.prototype = { rebuild$1: function(updates) { var t1 = new Y.DesignStateBuilder(); t1._design_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Y.DesignState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._design_state$__hashCode; return t1 == null ? _this._design_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Y.DesignStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_map; return t2 == null ? t1._design_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DesignEntity) : t2; }, get$list: function(_) { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_list; return t2 == null ? t1._design_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_design_state$_$this: function() { var t1, t2, _this = this, $$v = _this._design_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._design_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._design_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._design_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._design_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Y._$DesignState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("DesignState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y._$DesignUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Y.DesignUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._design_state$__hashCode; return t1 == null ? _this._design_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DesignUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Y.DesignUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_editing; if (t2 == null) { t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t1._design_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_design_state$_$this(), t2 = t1._design_state$_listUIState; return t2 == null ? t1._design_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_design_state$_$this: function() { var t1, t2, _this = this, $$v = _this._design_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new D.DesignEntityBuilder(); t2.get$_design_model$_$this()._isFree = true; t2._design_model$_$v = t1; t1 = t2; } _this._design_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._design_state$_listUIState = t2; _this._design_state$_selectedId = $$v.selectedId; _this._design_state$_forceSelected = $$v.forceSelected; _this._design_state$_tabIndex = $$v.tabIndex; _this._design_state$_saveCompleter = $$v.saveCompleter; _this._design_state$_cancelCompleter = $$v.cancelCompleter; _this._design_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s13_ = "DesignUIState", _$result = null; try { _$result0 = _this._design_state$_$v; if (_$result0 == null) { t1 = _this._design_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_design_state$_$this()._design_state$_selectedId; t4 = _this.get$_design_state$_$this()._design_state$_forceSelected; t5 = _this.get$_design_state$_$this()._design_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tabIndex")); t6 = _this.get$_design_state$_$this()._design_state$_saveCompleter; _$result0 = Y._$DesignUIState$_(_this.get$_design_state$_$this()._design_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._design_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._design_state$_$v = t1; return _$result; } }; Y._DesignUIState_Object_EntityUIState.prototype = {}; X.UpdateDocument.prototype = {$isPersistUI: 1, get$document: function(receiver) { return this.document; } }; X.LoadDocumentRequest.prototype = {$isStartLoading: 1}; X.LoadDocumentFailure.prototype = { toString$0: function(_) { return "LoadDocumentFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadDocumentSuccess.prototype = { toString$0: function(_) { return "LoadDocumentSuccess{document: " + H.S(this.document) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$document: function(receiver) { return this.document; } }; X.LoadDocumentsRequest.prototype = {$isStartLoading: 1}; X.LoadDocumentsFailure.prototype = { toString$0: function(_) { return "LoadDocumentsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadDocumentsSuccess.prototype = { toString$0: function(_) { return "LoadDocumentsSuccess{documents: " + H.S(this.documents) + "}"; }, $isStopLoading: 1 }; X.ArchiveDocumentRequest.prototype = {$isStartSaving: 1}; X.ArchiveDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.ArchiveDocumentFailure.prototype = {$isStopSaving: 1}; X.DeleteDocumentRequest.prototype = {$isStartSaving: 1}; X.DeleteDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.DeleteDocumentFailure.prototype = {$isStopSaving: 1}; X.RestoreDocumentRequest.prototype = {$isStartSaving: 1}; X.RestoreDocumentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.RestoreDocumentFailure.prototype = {$isStopSaving: 1}; X.FilterDocuments.prototype = {$isPersistUI: 1}; X.SortDocuments.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; X.FilterDocumentsByState.prototype = {$isPersistUI: 1}; X.FilterDocumentsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterDocumentsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterDocumentsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterDocumentsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.handleDocumentAction_closure.prototype = { call$1: function($document) { return $document.get$id($document); }, $signature: 41 }; X.StartDocumentMultiselect.prototype = {}; X.AddToDocumentMultiselect.prototype = {}; X.RemoveFromDocumentMultiselect.prototype = {}; X.ClearDocumentMultiselect.prototype = {}; Y._editDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s14_ = "/document/edit"; next.call$1(type$.legacy_EditDocument._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s14_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s14_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._viewDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewDocument_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewDocument_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewDocument._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/document/view")); $.$get$navigatorKey().get$currentState().pushNamed$1$1("/document/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; Y._viewDocumentList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s9_ = "/document"; next.call$1(type$.legacy_ViewDocumentList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s9_)); $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s9_, new Y._viewDocumentList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._viewDocumentList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; Y._archiveDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevDocuments; type$.legacy_ArchiveDocumentRequest._as(dynamicAction); t1 = dynamicAction.documentIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DocumentEntity*>"); prevDocuments = P.List_List$of(new H.MappedListIterable(t1, new Y._archiveDocument__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new Y._archiveDocument__closure0(store, dynamicAction), type$.Null).catchError$1(new Y._archiveDocument__closure1(store, prevDocuments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._archiveDocument__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).documentState.map._map$_map, id); }, $signature: 643 }; Y._archiveDocument__closure0.prototype = { call$1: function(documents) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ArchiveDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, $signature: 642 }; Y._archiveDocument__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ArchiveDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Y._deleteDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_DeleteDocumentRequest._as(dynamicAction); this.repository.delete$4(0, J.get$credentials$z(store.get$_store$_state()), C.JSArray_methods.get$first(dynamicAction.documentIds), dynamicAction.password, dynamicAction.idToken).then$1$1(0, new Y._deleteDocument__closure(store, dynamicAction), type$.Null).catchError$1(new Y._deleteDocument__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._deleteDocument__closure.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.DeleteDocumentSuccess()); this.action.completer.complete$1(0, null); }, $signature: 20 }; Y._deleteDocument__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.DeleteDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Y._restoreDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevDocuments; type$.legacy_RestoreDocumentRequest._as(dynamicAction); t1 = dynamicAction.documentIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DocumentEntity*>"); prevDocuments = P.List_List$of(new H.MappedListIterable(t1, new Y._restoreDocument__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new Y._restoreDocument__closure0(store, dynamicAction), type$.Null).catchError$1(new Y._restoreDocument__closure1(store, prevDocuments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._restoreDocument__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).documentState.map._map$_map, id); }, $signature: 643 }; Y._restoreDocument__closure0.prototype = { call$1: function(documents) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RestoreDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, $signature: 642 }; Y._restoreDocument__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RestoreDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Y._loadDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadDocument._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadDocumentRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.documentId).then$1$1(0, new Y._loadDocument__closure(store, dynamicAction), type$.Null).catchError$1(new Y._loadDocument__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._loadDocument__closure.prototype = { call$1: function($document) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadDocumentSuccess($document)); this.action.completer.complete$1(0, null); }, $signature: 63 }; Y._loadDocument__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadDocumentFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; Y._loadDocuments_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadDocuments._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadDocumentsRequest()); this.repository.loadList$1(J.get$credentials$z(store.get$_store$_state())).then$1$1(0, new Y._loadDocuments__closure(store, dynamicAction), type$.Null).catchError$1(new Y._loadDocuments__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Y._loadDocuments__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadDocumentsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1163 }; Y._loadDocuments__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadDocumentsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; M.documentUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$documentListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer5().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._document_model$_$v = t4; t1 = $.$get$selectedIdReducer5().call$2(t2.selectedId, t3); b.get$_document_state$_$this()._document_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer5().call$2(t2.forceSelected, t3); b.get$_document_state$_$this()._document_state$_forceSelected = t3; return b; }, $signature: 1164 }; M.forceSelectedReducer_closure47.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1165 }; M.forceSelectedReducer_closure48.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1166 }; M.forceSelectedReducer_closure49.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1167 }; M.forceSelectedReducer_closure50.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1168 }; M.forceSelectedReducer_closure51.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1169 }; M.forceSelectedReducer_closure52.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1170 }; M.forceSelectedReducer_closure53.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1171 }; M.forceSelectedReducer_closure54.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1172 }; M.selectedIdReducer_closure94.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1173 }; M.selectedIdReducer_closure95.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1174 }; M.selectedIdReducer_closure96.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_document ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; M.selectedIdReducer_closure97.prototype = { call$2: function(selectedId, action) { return action.get$documentId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1175 }; M.selectedIdReducer_closure98.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; M.selectedIdReducer_closure99.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; M.selectedIdReducer_closure100.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1176 }; M.selectedIdReducer_closure101.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1177 }; M.selectedIdReducer_closure102.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1178 }; M.selectedIdReducer_closure103.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1179 }; M.selectedIdReducer_closure104.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1180 }; M.selectedIdReducer_closure105.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1181 }; M.selectedIdReducer_closure106.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1182 }; M.editingReducer_closure30.prototype = { call$2: function($document, action) { return action.document.rebuild$1(new M.editingReducer__closure11()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1183 }; M.editingReducer__closure11.prototype = { call$1: function(b) { b.get$_document_model$_$this()._document_model$_isChanged = true; return b; }, $signature: 641 }; M._viewDocumentList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; M._filterDocumentsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; M._filterDocumentsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; M._filterDocumentsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; M._filterDocumentsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; M._filterDocumentsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; M._filterDocumentsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; M._filterDocuments_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.documentListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; M._sortDocuments_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; M._startListMultiselect_closure5.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; M._addToListMultiselect_closure5.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; M._removeFromListMultiselect_closure5.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; M._clearListMultiselect_closure5.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; M._archiveDocumentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.documents), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_document_state$_$this(); t5 = t4._document_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._document_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 640 }; M._deleteDocumentSuccess_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b); this.action.toString; J.remove$1$ax(t1.get$_safeMap(), null); return b; }, $signature: 217 }; M._restoreDocumentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.documents), t2 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_document_state$_$this(); t5 = t4._document_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._document_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 640 }; M._updateDocument_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action, t3 = t2.get$document(t2); t1.$indexSet(0, t3.get$id(t3), t2.get$document(t2)); return b; }, $signature: 217 }; M._setLoadedDocument_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.document; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 217 }; M._setLoadedDocuments_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.documents, new M._setLoadedDocuments__closure(), new M._setLoadedDocuments__closure0(), type$.legacy_String, type$.legacy_DocumentEntity)); return b; }, $signature: 217 }; M._setLoadedDocuments__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; M._setLoadedDocuments__closure0.prototype = { call$1: function(item) { return item; }, $signature: 1187 }; M._setLoadedDocuments_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 217 }; A.memoizedFilteredDocumentList_closure.prototype = { call$3: function(documentMap, documentList, documentListState) { return A.filteredDocumentsSelector(documentMap, documentList, documentListState); }, $signature: 1188 }; A.filteredDocumentsSelector_closure.prototype = { call$1: function(documentId) { var $document = J.$index$asx(this.documentMap._map$_map, documentId), t1 = this.documentListState; if (!$document.matchesStates$1(t1.stateFilters)) return false; return $document.matchesFilter$1(t1.filter); }, $signature: 16 }; A.filteredDocumentsSelector_closure0.prototype = { call$2: function(documentAId, documentBId) { var t1 = this.documentMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = this.documentListState; return t2.$index(t1, documentAId).compareTo$3(0, t2.$index(t1, documentBId), t3.sortField, t3.sortAscending); }, $signature: 18 }; Q.DocumentState.prototype = { map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q.DocumentUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Q._$DocumentStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_0), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.DocumentStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_document_state$_$this(); t6 = t5._document_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._document_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_0)); break; case "list": t5 = result.get$_document_state$_$this(); t6 = t5._document_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._document_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kHh; }, get$wireName: function() { return "DocumentState"; } }; Q._$DocumentUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_uzh)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Q.DocumentUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_document_state$_$this(); t4 = t3._document_state$_editing; t3 = t4 == null ? t3._document_state$_editing = new D.DocumentEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_uzh)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._document_model$_$v = t4; break; case "listUIState": t3 = result.get$_document_state$_$this(); t4 = t3._document_state$_listUIState; t3 = t4 == null ? t3._document_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_document_state$_$this()._document_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_document_state$_$this()._document_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_document_state$_$this()._document_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ROa; }, get$wireName: function() { return "DocumentUIState"; } }; Q._$DocumentState.prototype = { rebuild$1: function(updates) { var t1 = new Q.DocumentStateBuilder(); t1._document_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.DocumentState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._document_state$__hashCode; return t1 == null ? _this._document_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Q.DocumentStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_map; return t2 == null ? t1._document_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DocumentEntity) : t2; }, get$list: function(_) { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_list; return t2 == null ? t1._document_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_document_state$_$this: function() { var t1, t2, _this = this, $$v = _this._document_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._document_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._document_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._document_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._document_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Q._$DocumentState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("DocumentState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._document_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q._$DocumentUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Q.DocumentUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._document_state$__hashCode; return t1 == null ? _this._document_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("DocumentUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Q.DocumentUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_editing; return t2 == null ? t1._document_state$_editing = new D.DocumentEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_document_state$_$this(), t2 = t1._document_state$_listUIState; return t2 == null ? t1._document_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_document_state$_$this: function() { var t1, t2, _this = this, $$v = _this._document_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new D.DocumentEntityBuilder(); t2._document_model$_$v = t1; t1 = t2; } _this._document_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._document_state$_listUIState = t2; _this._document_state$_selectedId = $$v.selectedId; _this._document_state$_forceSelected = $$v.forceSelected; _this._document_state$_tabIndex = $$v.tabIndex; _this._document_state$_saveCompleter = $$v.saveCompleter; _this._document_state$_cancelCompleter = $$v.cancelCompleter; _this._document_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s15_ = "DocumentUIState", _$result = null; try { _$result0 = _this._document_state$_$v; if (_$result0 == null) { t1 = _this._document_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_document_state$_$this()._document_state$_selectedId; t4 = _this.get$_document_state$_$this()._document_state$_forceSelected; t5 = _this.get$_document_state$_$this()._document_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s15_, "tabIndex")); t6 = _this.get$_document_state$_$this()._document_state$_saveCompleter; _$result0 = Q._$DocumentUIState$_(_this.get$_document_state$_$this()._document_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._document_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s15_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._document_state$_$v = t1; return _$result; } }; Q._DocumentUIState_Object_EntityUIState.prototype = {}; T.ViewExpenseList.prototype = {$isStopLoading: 1}; T.ViewExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; T.EditExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expense: function() { return this.expense; } }; T.UpdateExpense.prototype = {$isPersistUI: 1, get$expense: function() { return this.expense; } }; T.LoadExpense.prototype = {}; T.LoadExpenses.prototype = {}; T.LoadExpenseRequest.prototype = {$isStartLoading: 1}; T.LoadExpenseFailure.prototype = { toString$0: function(_) { return "LoadExpenseFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; T.LoadExpenseSuccess.prototype = { toString$0: function(_) { return "LoadExpenseSuccess{expense: " + H.S(this.expense) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$expense: function() { return this.expense; } }; T.LoadExpensesRequest.prototype = {$isStartLoading: 1}; T.LoadExpensesFailure.prototype = { toString$0: function(_) { return "LoadExpensesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; T.LoadExpensesSuccess.prototype = { toString$0: function(_) { return "LoadExpensesSuccess{expenses: " + H.S(this.expenses) + "}"; }, $isStopLoading: 1 }; T.SaveExpenseRequest.prototype = {$isStartSaving: 1, get$expense: function() { return this.expense; } }; T.SaveExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expense: function() { return this.expense; } }; T.AddExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expense: function() { return this.expense; } }; T.SaveExpenseFailure.prototype = {$isStopSaving: 1}; T.ArchiveExpenseRequest.prototype = {$isStartSaving: 1}; T.ArchiveExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; T.ArchiveExpenseFailure.prototype = {$isStopSaving: 1}; T.DeleteExpenseRequest.prototype = {$isStartSaving: 1}; T.DeleteExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; T.DeleteExpenseFailure.prototype = {$isStopSaving: 1}; T.RestoreExpenseRequest.prototype = {$isStartSaving: 1}; T.RestoreExpenseSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; T.RestoreExpenseFailure.prototype = {$isStopSaving: 1}; T.FilterExpenses.prototype = {$isPersistUI: 1}; T.SortExpenses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; T.FilterExpensesByState.prototype = {$isPersistUI: 1}; T.FilterExpensesByStatus.prototype = {$isPersistUI: 1}; T.FilterExpensesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; T.FilterExpensesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; T.FilterExpensesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; T.FilterExpensesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; T.handleExpenseAction_closure.prototype = { call$1: function(expense) { return expense.get$id(expense); }, $signature: 41 }; T.handleExpenseAction_closure0.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; return b; }, $signature: 23 }; T.handleExpenseAction_closure1.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_recurringExpense; return b; }, $signature: 23 }; T.handleExpenseAction_closure2.prototype = { call$1: function(entity) { var t1; type$.legacy_ExpenseEntity._as(entity); if (!entity.isDeleted) { t1 = entity.invoiceId; t1 = !(t1 != null && t1.length !== 0); } else t1 = false; return t1; }, $signature: 194 }; T.handleExpenseAction_closure3.prototype = { call$1: function(expense) { return L.convertExpenseToInvoiceItem(this.context, expense); }, $signature: 639 }; T.handleExpenseAction_closure4.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.items); return b; }, $signature: 11 }; T.StartExpenseMultiselect.prototype = {}; T.AddToExpenseMultiselect.prototype = {}; T.RemoveFromExpenseMultiselect.prototype = {}; T.ClearExpenseMultiselect.prototype = {}; T.SaveExpenseDocumentRequest.prototype = {$isStartSaving: 1, get$expense: function() { return this.expense; } }; T.SaveExpenseDocumentFailure.prototype = {$isStopSaving: 1}; T.UpdateExpenseTab.prototype = {$isPersistUI: 1}; R._editExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s13_ = "/expense/edit"; next.call$1(type$.legacy_EditExpense._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._viewExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewExpense_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewExpense_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewExpense._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/expense/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/expense/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; R._viewExpenseList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/expense"; next.call$1(type$.legacy_ViewExpenseList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new R._viewExpenseList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._viewExpenseList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; R._archiveExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_ArchiveExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._archiveExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new R._archiveExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._archiveExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._archiveExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseState.map._map$_map, id); }, $signature: 195 }; R._archiveExpense__closure0.prototype = { call$1: function(expenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.ArchiveExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._archiveExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.ArchiveExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._deleteExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_DeleteExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._deleteExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new R._deleteExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._deleteExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._deleteExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseState.map._map$_map, id); }, $signature: 195 }; R._deleteExpense__closure0.prototype = { call$1: function(expenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.DeleteExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._deleteExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.DeleteExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._restoreExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenses; type$.legacy_RestoreExpenseRequest._as(dynamicAction); t1 = dynamicAction.expenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._restoreExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new R._restoreExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._restoreExpense__closure1(store, prevExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._restoreExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseState.map._map$_map, id); }, $signature: 195 }; R._restoreExpense__closure0.prototype = { call$1: function(expenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.RestoreExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._restoreExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.RestoreExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._saveExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveExpenseRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expense).then$1$1(0, new R._saveExpense__closure(dynamicAction, store), type$.Null).catchError$1(new R._saveExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._saveExpense__closure.prototype = { call$1: function(expense) { var t1 = this.action, t2 = this.store; if (t1.expense.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new T.AddExpenseSuccess(expense)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new T.SaveExpenseSuccess(expense)); t1.completer.complete$1(0, expense); }, $signature: 115 }; R._saveExpense__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SaveExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._loadExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadExpense._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.LoadExpenseRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expenseId).then$1$1(0, new R._loadExpense__closure(store, dynamicAction), type$.Null).catchError$1(new R._loadExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._loadExpense__closure.prototype = { call$1: function(expense) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.LoadExpenseSuccess(expense)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 115 }; R._loadExpense__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.LoadExpenseFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; R._loadExpenses_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadExpenses._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.LoadExpensesRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new R._loadExpenses__closure(store, dynamicAction), type$.Null).catchError$1(new R._loadExpenses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._loadExpenses__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.LoadExpensesSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpenses()); }, $signature: 637 }; R._loadExpenses__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.LoadExpensesFailure(error)); this.action.toString; }, $signature: 3 }; R._saveDocument_closure8.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveExpenseDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expense, dynamicAction.multipartFile).then$1$1(0, new R._saveDocument__closure17(store, dynamicAction), type$.Null).catchError$1(new R._saveDocument__closure18(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.SaveExpenseDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._saveDocument__closure17.prototype = { call$1: function(expense) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SaveExpenseSuccess(expense)); this.action.completer.complete$1(0, null); }, $signature: 115 }; R._saveDocument__closure18.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SaveExpenseDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; K.expenseUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$expenseListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer4().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._expense_model$_$v = t4; t1 = $.$get$selectedIdReducer4().call$2(t2.selectedId, t3); b.get$_expense_state$_$this()._expense_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer4().call$2(t2.forceSelected, t3); b.get$_expense_state$_$this()._expense_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer4().call$2(t2.tabIndex, t3); b.get$_expense_state$_$this()._expense_state$_tabIndex = t3; return b; }, $signature: 1195 }; K.forceSelectedReducer_closure39.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1196 }; K.forceSelectedReducer_closure40.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1197 }; K.forceSelectedReducer_closure41.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1198 }; K.forceSelectedReducer_closure42.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1199 }; K.forceSelectedReducer_closure43.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1200 }; K.forceSelectedReducer_closure44.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1201 }; K.forceSelectedReducer_closure45.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1202 }; K.forceSelectedReducer_closure46.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1203 }; K.tabIndexReducer_closure9.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1204 }; K.tabIndexReducer_closure10.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; K.selectedIdReducer_closure79.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1205 }; K.selectedIdReducer_closure80.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1206 }; K.selectedIdReducer_closure81.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_expense ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; K.selectedIdReducer_closure82.prototype = { call$2: function(selectedId, action) { return action.expenseId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1207 }; K.selectedIdReducer_closure83.prototype = { call$2: function(selectedId, action) { return action.expense.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1208 }; K.selectedIdReducer_closure84.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; K.selectedIdReducer_closure85.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; K.selectedIdReducer_closure86.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1209 }; K.selectedIdReducer_closure87.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1210 }; K.selectedIdReducer_closure88.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1211 }; K.selectedIdReducer_closure89.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1212 }; K.selectedIdReducer_closure90.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1213 }; K.selectedIdReducer_closure91.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1214 }; K.selectedIdReducer_closure92.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1215 }; K.selectedIdReducer_closure93.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1216 }; K.editingReducer_closure26.prototype = { call$2: function(expenses, action) { return J.$index$asx(action.expenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1217 }; K.editingReducer_closure27.prototype = { call$2: function(expenses, action) { return J.$index$asx(action.expenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1218 }; K.editingReducer_closure28.prototype = { call$2: function(expenses, action) { return J.$index$asx(action.expenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1219 }; K.editingReducer_closure29.prototype = { call$2: function(expense, action) { return action.expense.rebuild$1(new K.editingReducer__closure10()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1220 }; K.editingReducer__closure10.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_isChanged = true; return b; }, $signature: 23 }; K._viewExpenseList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._filterExpensesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterExpensesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterExpensesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterExpensesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterExpensesByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterExpensesByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterExpensesByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterExpensesByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterExpensesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; K._filterExpensesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterExpensesByStatus_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; K._filterExpensesByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.action.status); return b; }, $signature: 2 }; K._filterExpenses_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.expenseListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._sortExpenses_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; K._startListMultiselect_closure4.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; K._addToListMultiselect_closure4.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._removeFromListMultiselect_closure4.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._clearListMultiselect_closure4.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; K._archiveExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 388 }; K._deleteExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 388 }; K._restoreExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_state$_$this(); t5 = t4._expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 388 }; K._addExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expense, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 248 }; K._updateExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expense; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 248 }; K._setLoadedExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expense; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 248 }; L.convertExpenseToInvoiceItem_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4; b.get$_invoice_model$_$this()._invoice_model$_typeId = "6"; t1 = this.expense; t2 = t1.id; b.get$_invoice_model$_$this()._expenseId = t2; t2 = t1.categoryId; t2 = J.$index$asx(this.categoryMap._map$_map, t2); t2 = t2 == null ? null : t2.name; if (t2 == null) t2 = ""; b.get$_invoice_model$_$this()._invoice_model$_productKey = t2; t2 = t1.publicNotes; b.get$_invoice_model$_$this()._invoice_model$_notes = t2; b.get$_invoice_model$_$this()._invoice_model$_quantity = 1; t2 = this.company; if (t2.settings.enableInclusiveTaxes) { t3 = t1.get$grossAmount(); t4 = t1.exchangeRate; t3 *= t4 === 0 ? 1 : t4; } else { t3 = t1.get$netAmount(); t4 = t1.exchangeRate; t3 *= t4 === 0 ? 1 : t4; } b.get$_invoice_model$_$this()._invoice_model$_cost = t3; t3 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t3; t3 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t3; t3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t3; t3 = t1.customValue4; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t3; t2 = t2.numberOfItemTaxRates; t3 = t2 >= 1; t4 = t3 ? t1.taxName1 : ""; b.get$_invoice_model$_$this()._taxName1 = t4; t3 = t3 ? t1.get$calculatetaxRate1() : 0; b.get$_invoice_model$_$this()._taxRate1 = t3; t3 = t2 >= 2; t4 = t3 ? t1.taxName2 : ""; b.get$_invoice_model$_$this()._taxName2 = t4; if (t3) if (t1.calculateTaxByAmount === true) { t3 = t1.taxAmount2; t3 = t3 / (t1.amount - t3) * 100; } else t3 = t1.taxRate2; else t3 = 0; b.get$_invoice_model$_$this()._taxRate2 = t3; t2 = t2 >= 3; t3 = t2 ? t1.taxName3 : ""; b.get$_invoice_model$_$this()._taxName3 = t3; if (t2) if (t1.calculateTaxByAmount === true) { t2 = t1.taxAmount3; t2 = t2 / (t1.amount - t2) * 100; t1 = t2; } else t1 = t1.taxRate3; else t1 = 0; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 54 }; L.memoizedFilteredExpenseList_closure.prototype = { call$9: function(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return L.filteredExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, $signature: 635 }; L.filteredExpensesSelector_closure.prototype = { call$1: function(expenseId) { var t2, vendor, t3, client, t4, _this = this, _null = null, expense = J.$index$asx(_this.expenseMap._map$_map, expenseId), t1 = expense.categoryId, expenseCategory = J.$index$asx(_this.expenseCategoryMap._map$_map, t1); if (expenseCategory == null) expenseCategory = R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); t2 = expense.vendorId; vendor = J.$index$asx(_this.vendorMap._map$_map, t2); if (vendor == null) vendor = B.VendorEntity_VendorEntity(t2, _null, _null); t3 = expense.clientId; client = J.$index$asx(_this.clientMap._map$_map, t3); if (client == null) client = T.ClientEntity_ClientEntity(t3, _null, _null); if (expense.id === _this.selectionState.selectedId) return true; t4 = _this.filterEntityType; if (t4 != null) { if (t4 === C.EntityType_client && t3 != _this.filterEntityId) return false; else if (t4 === C.EntityType_vendor && t2 != _this.filterEntityId) return false; else if (t4 === C.EntityType_expenseCategory && t1 !== _this.filterEntityId) return false; else if (t4 === C.EntityType_user && expense.assignedUserId != _this.filterEntityId) return false; else if (t4 === C.EntityType_project && expense.projectId != _this.filterEntityId) return false; else if (t4 === C.EntityType_invoice && expense.invoiceId != _this.filterEntityId) return false; else if (t4 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t4 === C.EntityType_recurringExpense && expense.recurringId != _this.filterEntityId) return false; } else { if (t2 != null) t1 = !(!vendor.get$isArchived() && !vendor.isDeleted); else t1 = false; if (t1) return false; else { if (t3 != null) t1 = !(!client.get$isArchived() && !client.isDeleted); else t1 = false; if (t1) return false; } } t1 = _this.expenseListState; if (!expense.matchesStates$1(t1.stateFilters)) return false; if (!expense.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue3)) return false; else { t2 = t1.custom4Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue4)) return false; } } } t1 = t1.filter; return expense.matchesFilter$1(t1) || expenseCategory.matchesFilter$1(t1) || C.JSString_methods.contains$1(client.displayName.toLowerCase(), t1.toLowerCase()) || C.JSString_methods.contains$1(vendor.name.toLowerCase(), t1.toLowerCase()); }, $signature: 16 }; L.filteredExpensesSelector_closure0.prototype = { call$2: function(expenseAId, expenseBId) { var _this = this, t1 = _this.expenseMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.expenseListState; return t2.$index(t1, expenseAId).compareTo$9(0, t2.$index(t1, expenseBId), t3.sortField, t3.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, $signature: 18 }; L.memoizedExpenseStatsForVendor_closure.prototype = { call$2: function(vendorId, expenseMap) { return L.expenseStatsForVendor(vendorId, expenseMap); }, $signature: 131 }; L.expenseStatsForVendor_closure.prototype = { call$2: function(expenseId, expense) { if (expense.vendorId == this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; L.memoizedExpenseStatsForClient_closure.prototype = { call$2: function(clientId, expenseMap) { return L.expenseStatsForClient(clientId, expenseMap); }, $signature: 131 }; L.expenseStatsForClient_closure.prototype = { call$2: function(expenseId, expense) { if (expense.clientId == this.clientId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; L.memoizedClientExpenseList_closure.prototype = { call$2: function(expenseMap, clientId) { return L.clientExpenseList(expenseMap, clientId); }, $signature: 1225 }; L.clientExpenseList_closure.prototype = { call$1: function(expenseid) { var t2, expense = J.$index$asx(this.expenseMap._map$_map, expenseid), t1 = this.clientId; if ((t1 == null ? "" : t1).length !== 0) { t2 = expense.clientId; t1 = (t2 == null ? "" : t2).length !== 0 && t2 != t1; } else t1 = false; if (t1) return false; if (!expense.get$isArchived() && !expense.isDeleted) { t1 = expense.invoiceId; t1 = !(t1 != null && t1.length !== 0); } else t1 = false; return t1; }, $signature: 16 }; L.clientExpenseList_closure0.prototype = { call$2: function(idA, idB) { var t1 = this.expenseMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, idA).number; t1 = t2.$index(t1, idB).number; return C.JSString_methods.compareTo$1(t3, t1); }, $signature: 18 }; L.memoizedExpenseStatsForProject_closure.prototype = { call$2: function(projectId, expenseMap) { return L.expenseStatsForProject(projectId, expenseMap); }, $signature: 131 }; L.expenseStatsForProject_closure.prototype = { call$2: function(expenseId, expense) { if (expense.projectId == this.projectId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; L.memoizedExpenseStatsForUser_closure.prototype = { call$2: function(userId, expenseMap) { return L.expenseStatsForUser(userId, expenseMap); }, $signature: 131 }; L.expenseStatsForUser_closure.prototype = { call$2: function(expenseId, expense) { if (expense.assignedUserId == this.userId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; R.ExpenseState.prototype = { $get$1: function(_, expenseId) { var _null = null, t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, expenseId)) return t2.$index(t1, expenseId); else return M.ExpenseEntity_ExpenseEntity(_null, _null, expenseId, _null, _null, _null, _null); }, loadExpenses$1: function(clients) { return this.rebuild$1(new R.ExpenseState_loadExpenses_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new R.ExpenseState_loadExpenses_closure0(), new R.ExpenseState_loadExpenses_closure1(), type$.legacy_String, type$.legacy_ExpenseEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; R.ExpenseState_loadExpenses_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; R.ExpenseState_loadExpenses_closure1.prototype = { call$1: function(item) { return item; }, $signature: 634 }; R.ExpenseState_loadExpenses_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 248 }; R.ExpenseUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; R._$ExpenseStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_6Ps), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new R.ExpenseStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_expense_state$_$this(); t6 = t5._expense_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._expense_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_6Ps)); break; case "list": t5 = result.get$_expense_state$_$this(); t6 = t5._expense_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._expense_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_OXO; }, get$wireName: function() { return "ExpenseState"; } }; R._$ExpenseUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_UcG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new R.ExpenseUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_expense_state$_$this(); t4 = t3._expense_state$_editing; if (t4 == null) { t4 = new M.ExpenseEntityBuilder(); t4.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; t4.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t4.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t4.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t4.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._expense_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_UcG)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._expense_model$_$v = t4; break; case "listUIState": t3 = result.get$_expense_state$_$this(); t4 = t3._expense_state$_listUIState; t3 = t4 == null ? t3._expense_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_state$_$this()._expense_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_state$_$this()._expense_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_state$_$this()._expense_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_fkg; }, get$wireName: function() { return "ExpenseUIState"; } }; R._$ExpenseState.prototype = { rebuild$1: function(updates) { var t1 = new R.ExpenseStateBuilder(); t1._expense_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof R.ExpenseState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_state$__hashCode; return t1 == null ? _this._expense_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; R.ExpenseStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_map; return t2 == null ? t1._expense_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity) : t2; }, get$list: function(_) { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_list; return t2 == null ? t1._expense_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_expense_state$_$this: function() { var t1, t2, _this = this, $$v = _this._expense_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._expense_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._expense_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._expense_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._expense_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = R._$ExpenseState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ExpenseState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; R._$ExpenseUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof R.ExpenseUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_state$__hashCode; return t1 == null ? _this._expense_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; R.ExpenseUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_editing; if (t2 == null) { t2 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t2); t1._expense_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_expense_state$_$this(), t2 = t1._expense_state$_listUIState; return t2 == null ? t1._expense_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_expense_state$_$this: function() { var t1, t2, _this = this, $$v = _this._expense_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t2); t2._expense_model$_$v = t1; t1 = t2; } _this._expense_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._expense_state$_listUIState = t2; _this._expense_state$_selectedId = $$v.selectedId; _this._expense_state$_forceSelected = $$v.forceSelected; _this._expense_state$_tabIndex = $$v.tabIndex; _this._expense_state$_saveCompleter = $$v.saveCompleter; _this._expense_state$_cancelCompleter = $$v.cancelCompleter; _this._expense_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ExpenseUIState", _$result = null; try { _$result0 = _this._expense_state$_$v; if (_$result0 == null) { t1 = _this._expense_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_expense_state$_$this()._expense_state$_selectedId; t4 = _this.get$_expense_state$_$this()._expense_state$_forceSelected; t5 = _this.get$_expense_state$_$this()._expense_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_expense_state$_$this()._expense_state$_saveCompleter; _$result0 = R._$ExpenseUIState$_(_this.get$_expense_state$_$this()._expense_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._expense_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_state$_$v = t1; return _$result; } }; R._ExpenseUIState_Object_EntityUIState.prototype = {}; X.ViewExpenseCategoryList.prototype = {$isStopLoading: 1}; X.ViewExpenseCategory.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expenseCategoryId: function() { return this.expenseCategoryId; } }; X.EditExpenseCategory.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.UpdateExpenseCategory.prototype = {$isPersistUI: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.LoadExpenseCategoryRequest.prototype = {$isStartLoading: 1}; X.LoadExpenseCategoryFailure.prototype = { toString$0: function(_) { return "LoadExpenseCategoryFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadExpenseCategorySuccess.prototype = { toString$0: function(_) { return "LoadExpenseCategorySuccess{expenseCategory: " + H.S(this.expenseCategory) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.LoadExpenseCategoriesRequest.prototype = {$isStartLoading: 1}; X.LoadExpenseCategoriesFailure.prototype = { toString$0: function(_) { return "LoadExpenseCategoriesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadExpenseCategoriesSuccess.prototype = { toString$0: function(_) { return "LoadExpenseCategoriesSuccess{expenseCategories: " + H.S(this.expenseCategories) + "}"; }, $isStopLoading: 1 }; X.SaveExpenseCategoryRequest.prototype = {$isStartSaving: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.SaveExpenseCategorySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.AddExpenseCategorySuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$expenseCategory: function() { return this.expenseCategory; } }; X.SaveExpenseCategoryFailure.prototype = {$isStopSaving: 1}; X.ArchiveExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; X.ArchiveExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.ArchiveExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; X.DeleteExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; X.DeleteExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.DeleteExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; X.RestoreExpenseCategoriesRequest.prototype = {$isStartSaving: 1}; X.RestoreExpenseCategoriesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.RestoreExpenseCategoriesFailure.prototype = {$isStopSaving: 1}; X.FilterExpenseCategories.prototype = {$isPersistUI: 1}; X.SortExpenseCategories.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; X.FilterExpenseCategoriesByState.prototype = {$isPersistUI: 1}; X.FilterExpenseCategoriesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterExpenseCategoriesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterExpenseCategoriesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterExpenseCategoriesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.StartExpenseCategoryMultiselect.prototype = {}; X.AddToExpenseCategoryMultiselect.prototype = {}; X.RemoveFromExpenseCategoryMultiselect.prototype = {}; X.ClearExpenseCategoryMultiselect.prototype = {}; X.handleExpenseCategoryAction_closure.prototype = { call$1: function(expenseCategory) { return expenseCategory.get$id(expenseCategory); }, $signature: 41 }; X.handleExpenseCategoryAction_closure0.prototype = { call$1: function(b) { var t1 = this.expenseCategory.id; b.get$_expense_model$_$this()._categoryId = t1; return b; }, $signature: 23 }; M._editExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s31_ = "/settings/expense_category_edit"; next.call$1(type$.legacy_EditExpenseCategory._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s31_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s31_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._viewExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewExpenseCategory_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewExpenseCategory_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewExpenseCategory._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/expense_category_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/expense_category_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; M._viewExpenseCategoryList_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s26_ = "/settings/expense_category"; next.call$1(type$.legacy_ViewExpenseCategoryList._as(dynamicAction)); if (store.get$_store$_state().staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s26_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s26_, new M._viewExpenseCategoryList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._viewExpenseCategoryList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; M._archiveExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_ArchiveExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = P.List_List$of(new H.MappedListIterable(t1, new M._archiveExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new M._archiveExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new M._archiveExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._archiveExpenseCategory__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseCategoryState.map._map$_map, id); }, $signature: 387 }; M._archiveExpenseCategory__closure0.prototype = { call$1: function(expenseCategories) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ArchiveExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 386 }; M._archiveExpenseCategory__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ArchiveExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._deleteExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_DeleteExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = P.List_List$of(new H.MappedListIterable(t1, new M._deleteExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new M._deleteExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new M._deleteExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._deleteExpenseCategory__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseCategoryState.map._map$_map, id); }, $signature: 387 }; M._deleteExpenseCategory__closure0.prototype = { call$1: function(expenseCategories) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.DeleteExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 386 }; M._deleteExpenseCategory__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.DeleteExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._restoreExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevExpenseCategories; type$.legacy_RestoreExpenseCategoriesRequest._as(dynamicAction); t1 = dynamicAction.expenseCategoryIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseCategoryEntity*>"); prevExpenseCategories = P.List_List$of(new H.MappedListIterable(t1, new M._restoreExpenseCategory__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new M._restoreExpenseCategory__closure0(store, dynamicAction), type$.Null).catchError$1(new M._restoreExpenseCategory__closure1(store, prevExpenseCategories, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._restoreExpenseCategory__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).expenseCategoryState.map._map$_map, id); }, $signature: 387 }; M._restoreExpenseCategory__closure0.prototype = { call$1: function(expenseCategories) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RestoreExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, $signature: 386 }; M._restoreExpenseCategory__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RestoreExpenseCategoriesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._saveExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveExpenseCategoryRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expenseCategory).then$1$1(0, new M._saveExpenseCategory__closure(dynamicAction, store), type$.Null).catchError$1(new M._saveExpenseCategory__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._saveExpenseCategory__closure.prototype = { call$1: function(expenseCategory) { var t1 = this.action, t2 = this.store; if (t1.expenseCategory.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.AddExpenseCategorySuccess(expenseCategory)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.SaveExpenseCategorySuccess(expenseCategory)); t1.completer.complete$1(0, expenseCategory); }, $signature: 252 }; M._saveExpenseCategory__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SaveExpenseCategoryFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._loadExpenseCategory_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadExpenseCategory._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategoryRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.expenseCategoryId).then$1$1(0, new M._loadExpenseCategory__closure(store, dynamicAction), type$.Null).catchError$1(new M._loadExpenseCategory__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._loadExpenseCategory__closure.prototype = { call$1: function(expenseCategory) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategorySuccess(expenseCategory)); this.action.completer.complete$1(0, null); }, $signature: 252 }; M._loadExpenseCategory__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategoryFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; M._loadExpenseCategories_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadExpenseCategories._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategoriesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new M._loadExpenseCategories__closure(store, dynamicAction), type$.Null).catchError$1(new M._loadExpenseCategories__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._loadExpenseCategories__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategoriesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1230 }; M._loadExpenseCategories__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadExpenseCategoriesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; F.expenseCategoryUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$expenseCategoryListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer16().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._expense_category_model$_$v = t4; t1 = $.$get$selectedIdReducer16().call$2(t2.selectedId, t3); b.get$_expense_category_state$_$this()._expense_category_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer16().call$2(t2.forceSelected, t3); b.get$_expense_category_state$_$this()._expense_category_state$_forceSelected = t3; return b; }, $signature: 1231 }; F.forceSelectedReducer_closure127.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1232 }; F.forceSelectedReducer_closure128.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1233 }; F.forceSelectedReducer_closure129.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1234 }; F.forceSelectedReducer_closure130.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1235 }; F.forceSelectedReducer_closure131.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1236 }; F.forceSelectedReducer_closure132.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1237 }; F.forceSelectedReducer_closure133.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1238 }; F.forceSelectedReducer_closure134.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1239 }; F.selectedIdReducer_closure256.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1240 }; F.selectedIdReducer_closure257.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1241 }; F.selectedIdReducer_closure258.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_expenseCategory ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; F.selectedIdReducer_closure259.prototype = { call$2: function(selectedId, action) { return action.get$expenseCategoryId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; F.selectedIdReducer_closure260.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$expenseCategory()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; F.selectedIdReducer_closure261.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; F.selectedIdReducer_closure262.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; F.selectedIdReducer_closure263.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1242 }; F.selectedIdReducer_closure264.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1243 }; F.selectedIdReducer_closure265.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1244 }; F.selectedIdReducer_closure266.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1245 }; F.selectedIdReducer_closure267.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1246 }; F.selectedIdReducer_closure268.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1247 }; F.selectedIdReducer_closure269.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1248 }; F.selectedIdReducer_closure270.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_expenseCategory ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; F.editingReducer_closure85.prototype = { call$2: function(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1249 }; F.editingReducer_closure86.prototype = { call$2: function(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1250 }; F.editingReducer_closure87.prototype = { call$2: function(expenseCategories, action) { return J.$index$asx(action.expenseCategories, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1251 }; F.editingReducer_closure88.prototype = { call$2: function(expenseCategory, action) { return action.expenseCategory.rebuild$1(new F.editingReducer__closure34()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1252 }; F.editingReducer__closure34.prototype = { call$1: function(b) { b.get$_expense_category_model$_$this()._expense_category_model$_isChanged = true; return b; }, $signature: 385 }; F._filterExpenseCategoriesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; F._filterExpenseCategoriesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; F._filterExpenseCategoriesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; F._filterExpenseCategoriesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; F._filterExpenseCategoriesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; F._filterExpenseCategoriesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; F._filterExpenseCategories_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.expenseCategoryListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; F._sortExpenseCategories_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; F._startListMultiselect_closure16.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; F._addToListMultiselect_closure16.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; F._removeFromListMultiselect_closure16.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; F._clearListMultiselect_closure16.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; F._archiveExpenseCategorySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 380 }; F._deleteExpenseCategorySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 380 }; F._restoreExpenseCategorySuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenseCategories), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_expense_category_state$_$this(); t5 = t4._expense_category_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._expense_category_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 380 }; F._addExpenseCategory_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 328 }; F._updateExpenseCategory_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 328 }; F._setLoadedExpenseCategory_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.expenseCategory; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 328 }; O.memoizedFilteredExpenseCategoryList_closure.prototype = { call$4: function(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState) { return O.filteredExpenseCategoriesSelector(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState); }, $signature: 1256 }; O.filteredExpenseCategoriesSelector_closure.prototype = { call$1: function(expenseCategoryId) { var t1, expenseCategory = J.$index$asx(this.expenseCategoryMap._map$_map, expenseCategoryId); if (expenseCategory.id === this.selectionState.selectedId) return true; t1 = this.expenseCategoryListState; if (!expenseCategory.matchesStates$1(t1.stateFilters)) return false; return expenseCategory.matchesFilter$1(t1.filter); }, $signature: 16 }; O.filteredExpenseCategoriesSelector_closure0.prototype = { call$2: function(expenseCategoryAId, expenseCategoryBId) { var t4, t1 = this.expenseCategoryMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, expenseCategoryAId); t1 = t2.$index(t1, expenseCategoryBId); t2 = this.expenseCategoryListState; t4 = t2.sortField; return J.compareTo$3$expenseCategory$sortAscending$sortField$ns(t3, t1, t2.sortAscending, t4); }, $signature: 18 }; O.memoizedCalculateExpenseCategoryAmount_closure.prototype = { call$2: function(categoryId, expenseMap) { return O.calculateExpenseCategoryAmount(categoryId, expenseMap); }, $signature: 1257 }; O.calculateExpenseCategoryAmount_closure.prototype = { call$2: function(expenseId, expense) { var t1; if (expense.categoryId === this.categoryId) { t1 = this._box_0; t1.total = t1.total + expense.amount; } }, $signature: 89 }; O.memoizedExpenseStatsForExpenseCategory_closure.prototype = { call$2: function(companyGatewayId, expenseMap) { return O.expenseStatsForExpenseCategory(companyGatewayId, expenseMap); }, $signature: 131 }; O.expenseStatsForExpenseCategory_closure.prototype = { call$2: function(expenseId, expense) { if (expense.categoryId === this.categoryId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; Q.ExpenseCategoryState.prototype = { $get$1: function(_, categoryId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, categoryId)) return t2.$index(t1, categoryId); else return R.ExpenseCategoryEntity_ExpenseCategoryEntity(categoryId, null); }, loadExpenseCategories$1: function(clients) { return this.rebuild$1(new Q.ExpenseCategoryState_loadExpenseCategories_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new Q.ExpenseCategoryState_loadExpenseCategories_closure0(), new Q.ExpenseCategoryState_loadExpenseCategories_closure1(), type$.legacy_String, type$.legacy_ExpenseCategoryEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q.ExpenseCategoryState_loadExpenseCategories_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.ExpenseCategoryState_loadExpenseCategories_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1258 }; Q.ExpenseCategoryState_loadExpenseCategories_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 328 }; Q.ExpenseCategoryUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Q._$ExpenseCategoryStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_HZS), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.ExpenseCategoryStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_expense_category_state$_$this(); t6 = t5._expense_category_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._expense_category_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_HZS)); break; case "list": t5 = result.get$_expense_category_state$_$this(); t6 = t5._expense_category_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._expense_category_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_04; }, get$wireName: function() { return "ExpenseCategoryState"; } }; Q._$ExpenseCategoryUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_M6L)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Q.ExpenseCategoryUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseCategoryEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_expense_category_state$_$this(); t4 = t3._expense_category_state$_editing; if (t4 == null) { t4 = new R.ExpenseCategoryEntityBuilder(); t4.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t3._expense_category_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_M6L)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._expense_category_model$_$v = t4; break; case "listUIState": t3 = result.get$_expense_category_state$_$this(); t4 = t3._expense_category_state$_listUIState; t3 = t4 == null ? t3._expense_category_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_expense_category_state$_$this()._expense_category_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_expense_category_state$_$this()._expense_category_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_expense_category_state$_$this()._expense_category_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_FcO; }, get$wireName: function() { return "ExpenseCategoryUIState"; } }; Q._$ExpenseCategoryState.prototype = { rebuild$1: function(updates) { var t1 = new Q.ExpenseCategoryStateBuilder(); t1._expense_category_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.ExpenseCategoryState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_category_state$__hashCode; return t1 == null ? _this._expense_category_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Q.ExpenseCategoryStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_map; return t2 == null ? t1._expense_category_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseCategoryEntity) : t2; }, get$list: function(_) { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_list; return t2 == null ? t1._expense_category_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_expense_category_state$_$this: function() { var t1, t2, _this = this, $$v = _this._expense_category_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._expense_category_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._expense_category_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._expense_category_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._expense_category_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Q._$ExpenseCategoryState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ExpenseCategoryState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_category_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q._$ExpenseCategoryUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Q.ExpenseCategoryUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._expense_category_state$__hashCode; return t1 == null ? _this._expense_category_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ExpenseCategoryUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Q.ExpenseCategoryUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_editing; if (t2 == null) { t2 = new R.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t1._expense_category_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_expense_category_state$_$this(), t2 = t1._expense_category_state$_listUIState; return t2 == null ? t1._expense_category_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_expense_category_state$_$this: function() { var t1, t2, _this = this, $$v = _this._expense_category_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new R.ExpenseCategoryEntityBuilder(); t2.get$_expense_category_model$_$this()._expense_category_model$_color = ""; t2._expense_category_model$_$v = t1; t1 = t2; } _this._expense_category_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._expense_category_state$_listUIState = t2; _this._expense_category_state$_selectedId = $$v.selectedId; _this._expense_category_state$_forceSelected = $$v.forceSelected; _this._expense_category_state$_tabIndex = $$v.tabIndex; _this._expense_category_state$_saveCompleter = $$v.saveCompleter; _this._expense_category_state$_cancelCompleter = $$v.cancelCompleter; _this._expense_category_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s22_ = "ExpenseCategoryUIState", _$result = null; try { _$result0 = _this._expense_category_state$_$v; if (_$result0 == null) { t1 = _this._expense_category_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_expense_category_state$_$this()._expense_category_state$_selectedId; t4 = _this.get$_expense_category_state$_$this()._expense_category_state$_forceSelected; t5 = _this.get$_expense_category_state$_$this()._expense_category_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s22_, "tabIndex")); t6 = _this.get$_expense_category_state$_$this()._expense_category_state$_saveCompleter; _$result0 = Q._$ExpenseCategoryUIState$_(_this.get$_expense_category_state$_$this()._expense_category_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._expense_category_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s22_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._expense_category_state$_$v = t1; return _$result; } }; Q._ExpenseCategoryUIState_Object_EntityUIState.prototype = {}; Q.ViewGroupList.prototype = {$isStopLoading: 1}; Q.ViewGroup.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.EditGroup.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$group: function() { return this.group; } }; Q.UpdateGroup.prototype = {$isPersistUI: 1, get$group: function() { return this.group; } }; Q.LoadGroup.prototype = {}; Q.LoadGroupRequest.prototype = {$isStartLoading: 1}; Q.LoadGroupFailure.prototype = { toString$0: function(_) { return "LoadGroupFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadGroupSuccess.prototype = { toString$0: function(_) { return "LoadGroupSuccess{group: " + H.S(this.group) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$group: function() { return this.group; } }; Q.LoadGroupsRequest.prototype = {$isStartLoading: 1}; Q.LoadGroupsFailure.prototype = { toString$0: function(_) { return "LoadGroupsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadGroupsSuccess.prototype = { toString$0: function(_) { return "LoadGroupsSuccess{groups: " + H.S(this.groups) + "}"; }, $isStopLoading: 1 }; Q.SaveGroupRequest.prototype = {$isStartSaving: 1, get$group: function() { return this.group; } }; Q.SaveGroupSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$group: function() { return this.group; } }; Q.AddGroupSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$group: function() { return this.group; } }; Q.SaveGroupFailure.prototype = {$isStopSaving: 1}; Q.ArchiveGroupRequest.prototype = {$isStartSaving: 1}; Q.ArchiveGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.ArchiveGroupFailure.prototype = {$isStopSaving: 1}; Q.DeleteGroupRequest.prototype = {$isStartSaving: 1}; Q.DeleteGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.DeleteGroupFailure.prototype = {$isStopSaving: 1}; Q.RestoreGroupRequest.prototype = {$isStartSaving: 1}; Q.RestoreGroupSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.RestoreGroupFailure.prototype = {$isStopSaving: 1}; Q.FilterGroups.prototype = {$isPersistUI: 1}; Q.SortGroups.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.FilterGroupsByState.prototype = {$isPersistUI: 1}; Q.handleGroupAction_closure.prototype = { call$1: function(group) { return group.get$id(group); }, $signature: 41 }; Q.handleGroupAction_closure0.prototype = { call$1: function(b) { var t1 = this.group; t1 = t1.get$id(t1); b.get$_client_model$_$this()._groupId = t1; return b; }, $signature: 40 }; Q.StartGroupMultiselect.prototype = {}; Q.AddToGroupMultiselect.prototype = {}; Q.RemoveFromGroupMultiselect.prototype = {}; Q.ClearGroupMultiselect.prototype = {}; Q.SaveGroupDocumentRequest.prototype = {$isStartSaving: 1, get$group: function() { return this.group; } }; Q.SaveGroupDocumentFailure.prototype = {$isStopSaving: 1}; X._editGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s29_ = "/settings/group_settings_edit"; next.call$1(type$.legacy_EditGroup._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s29_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s29_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._viewGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewGroup_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewGroup_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewGroup._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/group_settings_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/group_settings_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; X._viewGroupList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s24_ = "/settings/group_settings"; next.call$1(type$.legacy_ViewGroupList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s24_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s24_, new X._viewGroupList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._viewGroupList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; X._archiveGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_ArchiveGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = P.List_List$of(new H.MappedListIterable(t1, new X._archiveGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new X._archiveGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new X._archiveGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._archiveGroup__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).groupState.map._map$_map, id); }, $signature: 379 }; X._archiveGroup__closure0.prototype = { call$1: function(groups) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 378 }; X._archiveGroup__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._deleteGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_DeleteGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = P.List_List$of(new H.MappedListIterable(t1, new X._deleteGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new X._deleteGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new X._deleteGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._deleteGroup__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).groupState.map._map$_map, id); }, $signature: 379 }; X._deleteGroup__closure0.prototype = { call$1: function(groups) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 378 }; X._deleteGroup__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._restoreGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevGroups; type$.legacy_RestoreGroupRequest._as(dynamicAction); t1 = dynamicAction.groupIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,GroupEntity*>"); prevGroups = P.List_List$of(new H.MappedListIterable(t1, new X._restoreGroup__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new X._restoreGroup__closure0(store, dynamicAction), type$.Null).catchError$1(new X._restoreGroup__closure1(store, prevGroups, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._restoreGroup__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).groupState.map._map$_map, id); }, $signature: 379 }; X._restoreGroup__closure0.prototype = { call$1: function(groups) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, $signature: 378 }; X._restoreGroup__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._saveGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveGroupRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.group).then$1$1(0, new X._saveGroup__closure(dynamicAction, store), type$.Null).catchError$1(new X._saveGroup__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._saveGroup__closure.prototype = { call$1: function(group) { var t1 = this.action, t2 = this.store; if (t1.group.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.AddGroupSuccess(group)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SaveGroupSuccess(group)); t1.completer.complete$1(0, group); }, $signature: 222 }; X._saveGroup__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveGroupFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; X._loadGroup_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadGroup._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadGroupRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.groupId).then$1$1(0, new X._loadGroup__closure(store, dynamicAction), type$.Null).catchError$1(new X._loadGroup__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._loadGroup__closure.prototype = { call$1: function(group) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadGroupSuccess(group)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 222 }; X._loadGroup__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadGroupFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; X._loadGroups_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadGroups._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadGroupsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new X._loadGroups__closure(store, dynamicAction), type$.Null).catchError$1(new X._loadGroups__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._loadGroups__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadGroupsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1262 }; X._loadGroups__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadGroupsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; X._saveDocument_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveGroupDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.group, dynamicAction.multipartFile).then$1$1(0, new X._saveDocument__closure(store, dynamicAction), type$.Null).catchError$1(new X._saveDocument__closure0(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.SaveGroupDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; X._saveDocument__closure.prototype = { call$1: function(group) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveGroupSuccess(group)); this.action.completer.complete$1(0, null); }, $signature: 222 }; X._saveDocument__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveGroupDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; K.groupUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$groupListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer6().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._group_model$_$v = t4; t1 = $.$get$selectedIdReducer6().call$2(t2.selectedId, t3); b.get$_group_state$_$this()._group_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer6().call$2(t2.forceSelected, t3); b.get$_group_state$_$this()._group_state$_forceSelected = t3; return b; }, $signature: 1263 }; K.forceSelectedReducer_closure55.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1264 }; K.forceSelectedReducer_closure56.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1265 }; K.forceSelectedReducer_closure57.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1266 }; K.forceSelectedReducer_closure58.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1267 }; K.selectedIdReducer_closure107.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1268 }; K.selectedIdReducer_closure108.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1269 }; K.selectedIdReducer_closure109.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_group ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; K.selectedIdReducer_closure110.prototype = { call$2: function(selectedId, action) { return action.groupId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1270 }; K.selectedIdReducer_closure111.prototype = { call$2: function(selectedId, action) { return action.group.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1271 }; K.selectedIdReducer_closure112.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; K.selectedIdReducer_closure113.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; K.selectedIdReducer_closure114.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1272 }; K.selectedIdReducer_closure115.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1273 }; K.selectedIdReducer_closure116.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1274 }; K.selectedIdReducer_closure117.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_group ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; K.selectedIdReducer_closure118.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_group ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; K.editingReducer_closure31.prototype = { call$2: function(groups, action) { return J.$index$asx(action.groups, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1275 }; K.editingReducer_closure32.prototype = { call$2: function(groups, action) { return J.$index$asx(action.groups, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1276 }; K.editingReducer_closure33.prototype = { call$2: function(groups, action) { return J.$index$asx(action.groups, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1277 }; K.editingReducer_closure34.prototype = { call$2: function(group, action) { return action.group.rebuild$1(new K.editingReducer__closure12()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1278 }; K.editingReducer__closure12.prototype = { call$1: function(b) { b.get$_group_model$_$this()._group_model$_isChanged = true; return b; }, $signature: 376 }; K._viewGroupList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._filterGroupsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; K._filterGroupsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterGroups_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.groupListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._sortGroups_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; K._startListMultiselect_closure6.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; K._addToListMultiselect_closure6.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._removeFromListMultiselect_closure6.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._clearListMultiselect_closure6.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; K._archiveGroupSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 374 }; K._deleteGroupSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 374 }; K._restoreGroupSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.groups), t2 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_group_state$_$this(); t5 = t4._group_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._group_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 374 }; K._addGroup_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.group, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 166 }; K._updateGroup_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.group; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 166 }; K._setLoadedGroup_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.group; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 166 }; K._setLoadedGroups_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.groups, new K._setLoadedGroups__closure(), new K._setLoadedGroups__closure0(), type$.legacy_String, type$.legacy_GroupEntity)); return b; }, $signature: 166 }; K._setLoadedGroups__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; K._setLoadedGroups__closure0.prototype = { call$1: function(item) { return item; }, $signature: 632 }; K._setLoadedGroups_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 166 }; K._setLoadedCompany_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.groups, new K._setLoadedCompany__closure(), new K._setLoadedCompany__closure0(), type$.legacy_String, type$.legacy_GroupEntity)); return b; }, $signature: 166 }; K._setLoadedCompany__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; K._setLoadedCompany__closure0.prototype = { call$1: function(item) { return item; }, $signature: 632 }; K._setLoadedCompany_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 166 }; S.memoizedFilteredGroupList_closure.prototype = { call$4: function(selectionState, groupMap, groupList, groupListState) { return S.filteredGroupsSelector(selectionState, groupMap, groupList, groupListState); }, $signature: 1283 }; S.filteredGroupsSelector_closure.prototype = { call$1: function(groupId) { var t1, group = J.$index$asx(this.groupMap._map$_map, groupId); if (group.id === this.selectionState.selectedId) return true; t1 = this.groupListState; if (!group.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([group.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; S.filteredGroupsSelector_closure0.prototype = { call$2: function(groupAId, groupBId) { var sortField, sortAscending, groupA0, response, t1 = this.groupMap._map$_map, t2 = J.getInterceptor$asx(t1), groupA = t2.$index(t1, groupAId), groupB = t2.$index(t1, groupBId); t1 = this.groupListState; sortField = t1.sortField; sortAscending = t1.sortAscending; groupA.toString; if (sortAscending) groupA0 = groupA; else groupA0 = groupB; if (!sortAscending) groupB = groupA; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(groupA0.name.toLowerCase(), groupB.name.toLowerCase()); break; default: P.print("## ERROR: sort by group." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 18 }; S.memoizedClientStatsForGroup_closure.prototype = { call$2: function(clientMap, groupId) { return S.clientStatsForGroup(clientMap, groupId); }, $signature: 1284 }; S.clientStatsForGroup_closure.prototype = { call$2: function(clientId, client) { if (client.groupId === this.groupId) if (!client.get$isArchived() && !client.isDeleted) ++this._box_0.countActive; else if (client.get$isArchived()) ++this._box_0.countArchived; }, $signature: 234 }; E.GroupState.prototype = { $get$1: function(_, groupId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, groupId)) return t2.$index(t1, groupId); else return Q.GroupEntity_GroupEntity(groupId, null); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; E.GroupUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; E._$GroupStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_CxZ), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new E.GroupStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_GroupEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._group_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_CxZ)); break; case "list": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._group_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_3IR; }, get$wireName: function() { return "GroupState"; } }; E._$GroupUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_Iiu)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new E.GroupUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_GroupEntity, t3 = type$.legacy_DocumentEntity, t4 = type$.ListBuilder_legacy_DocumentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_editing; if (t6 == null) { t6 = new Q.GroupEntityBuilder(); t7 = t6.get$_group_model$_$this(); t8 = t7._group_model$_documents; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._group_model$_documents = t8; t7 = t8; } else t7 = t8; t8 = D.BuiltList_BuiltList$from(C.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t5._group_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iiu)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._group_model$_$v = t6; break; case "listUIState": t5 = result.get$_group_state$_$this(); t6 = t5._group_state$_listUIState; t5 = t6 == null ? t5._group_state$_listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_group_state$_$this()._group_state$_selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_group_state$_$this()._group_state$_forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_group_state$_$this()._group_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_FVt; }, get$wireName: function() { return "GroupUIState"; } }; E._$GroupState.prototype = { rebuild$1: function(updates) { var t1 = new E.GroupStateBuilder(); t1._group_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof E.GroupState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._group_state$__hashCode; return t1 == null ? _this._group_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; E.GroupStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_map; return t2 == null ? t1._group_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GroupEntity) : t2; }, get$list: function(_) { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_list; return t2 == null ? t1._group_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_group_state$_$this: function() { var t1, t2, _this = this, $$v = _this._group_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._group_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._group_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._group_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._group_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = E._$GroupState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("GroupState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._group_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; E._$GroupUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof E.GroupUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._group_state$__hashCode; return t1 == null ? _this._group_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("GroupUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; E.GroupUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_editing; if (t2 == null) { t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t1._group_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_group_state$_$this(), t2 = t1._group_state$_listUIState; return t2 == null ? t1._group_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_group_state$_$this: function() { var t1, t2, _this = this, $$v = _this._group_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new Q.GroupEntityBuilder(); Q.GroupEntity__initializeBuilder(t2); t2._group_model$_$v = t1; t1 = t2; } _this._group_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._group_state$_listUIState = t2; _this._group_state$_selectedId = $$v.selectedId; _this._group_state$_forceSelected = $$v.forceSelected; _this._group_state$_tabIndex = $$v.tabIndex; _this._group_state$_saveCompleter = $$v.saveCompleter; _this._group_state$_cancelCompleter = $$v.cancelCompleter; _this._group_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s12_ = "GroupUIState", _$result = null; try { _$result0 = _this._group_state$_$v; if (_$result0 == null) { t1 = _this._group_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_group_state$_$this()._group_state$_selectedId; t4 = _this.get$_group_state$_$this()._group_state$_forceSelected; t5 = _this.get$_group_state$_$this()._group_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "tabIndex")); t6 = _this.get$_group_state$_$this()._group_state$_saveCompleter; _$result0 = E._$GroupUIState$_(_this.get$_group_state$_$this()._group_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._group_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._group_state$_$v = t1; return _$result; } }; E._GroupUIState_Object_EntityUIState.prototype = {}; Q.ViewInvoiceList.prototype = {$isStopLoading: 1}; Q.ViewInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.EditInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$invoice: function() { return this.invoice; } }; Q.ShowEmailInvoice.prototype = { get$invoice: function() { return this.invoice; } }; Q.ShowPdfInvoice.prototype = { get$invoice: function() { return this.invoice; } }; Q.EditInvoiceItem.prototype = {$isPersistUI: 1}; Q.UpdateInvoice.prototype = {$isPersistUI: 1, get$invoice: function() { return this.invoice; } }; Q.UpdateInvoiceClient.prototype = {$isPersistUI: 1}; Q.LoadInvoice.prototype = {}; Q.LoadInvoices.prototype = {}; Q.LoadInvoiceRequest.prototype = {$isStartLoading: 1}; Q.LoadInvoiceFailure.prototype = { toString$0: function(_) { return "LoadInvoiceFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadInvoiceSuccess.prototype = { toString$0: function(_) { return "LoadInvoiceSuccess{invoice: " + H.S(this.invoice) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$invoice: function() { return this.invoice; } }; Q.LoadInvoicesRequest.prototype = {$isStartLoading: 1}; Q.LoadInvoicesFailure.prototype = { toString$0: function(_) { return "LoadInvoicesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadInvoicesSuccess.prototype = { toString$0: function(_) { return "LoadInvoicesSuccess{invoices: " + H.S(this.invoices) + "}"; }, $isStopLoading: 1 }; Q.AddInvoiceContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; Q.RemoveInvoiceContact.prototype = {$isPersistUI: 1}; Q.AddInvoiceItem.prototype = {$isPersistUI: 1}; Q.MoveInvoiceItem.prototype = {$isPersistUI: 1}; Q.AddInvoiceItems.prototype = {$isPersistUI: 1}; Q.UpdateInvoiceItem.prototype = {$isPersistUI: 1}; Q.DeleteInvoiceItem.prototype = {$isPersistUI: 1}; Q.SaveInvoiceRequest.prototype = {$isStartSaving: 1, get$invoice: function() { return this.invoice; } }; Q.SaveInvoiceSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$invoice: function() { return this.invoice; } }; Q.AddInvoiceSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$invoice: function() { return this.invoice; } }; Q.SaveInvoiceFailure.prototype = {$isStopSaving: 1}; Q.EmailInvoiceRequest.prototype = {$isStartSaving: 1, get$body: function(receiver) { return this.body; } }; Q.EmailInvoiceSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, get$invoice: function() { return this.invoice; } }; Q.EmailInvoiceFailure.prototype = {$isStopSaving: 1}; Q.MarkInvoicesSentRequest.prototype = {$isStartSaving: 1}; Q.MarkInvoicesSentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.MarkInvoicesSentFailure.prototype = {$isStopSaving: 1}; Q.BulkEmailInvoicesRequest.prototype = {$isStartSaving: 1}; Q.BulkEmailInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.BulkEmailInvoicesFailure.prototype = {$isStopSaving: 1}; Q.MarkInvoicesPaidRequest.prototype = {$isStartSaving: 1}; Q.MarkInvoicesPaidSuccess.prototype = {$isStopSaving: 1}; Q.MarkInvoicesPaidFailure.prototype = {$isStopSaving: 1}; Q.ReverseInvoicesRequest.prototype = {$isStartSaving: 1}; Q.ReverseInvoicesSuccess.prototype = {$isStopSaving: 1}; Q.ReverseInvoicesFailure.prototype = {$isStopSaving: 1}; Q.CancelInvoicesRequest.prototype = {$isStartSaving: 1}; Q.CancelInvoicesSuccess.prototype = {$isStopSaving: 1}; Q.CancelInvoicesFailure.prototype = {$isStopSaving: 1}; Q.ArchiveInvoicesRequest.prototype = {$isStartSaving: 1}; Q.ArchiveInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.ArchiveInvoicesFailure.prototype = {$isStopSaving: 1}; Q.DeleteInvoicesRequest.prototype = {$isStartSaving: 1}; Q.DeleteInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.DeleteInvoicesFailure.prototype = {$isStopSaving: 1}; Q.DownloadInvoicesRequest.prototype = {$isStartSaving: 1}; Q.DownloadInvoicesSuccess.prototype = {$isStopSaving: 1}; Q.DownloadInvoicesFailure.prototype = {$isStopSaving: 1}; Q.RestoreInvoicesRequest.prototype = {$isStartSaving: 1}; Q.RestoreInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.RestoreInvoicesFailure.prototype = {$isStopSaving: 1}; Q.FilterInvoices.prototype = {$isPersistUI: 1}; Q.SortInvoices.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.FilterInvoicesByState.prototype = {$isPersistUI: 1}; Q.FilterInvoicesByStatus.prototype = {$isPersistUI: 1}; Q.FilterInvoicesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterInvoicesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterInvoicesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterInvoicesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.StartInvoiceMultiselect.prototype = {}; Q.AddToInvoiceMultiselect.prototype = {}; Q.RemoveFromInvoiceMultiselect.prototype = {}; Q.ClearInvoiceMultiselect.prototype = {}; Q.SaveInvoiceDocumentRequest.prototype = {$isStartSaving: 1, get$invoice: function() { return this.invoice; } }; Q.SaveInvoiceDocumentFailure.prototype = {$isStopSaving: 1}; Q.UpdateInvoiceTab.prototype = {$isPersistUI: 1}; Q.handleInvoiceAction_closure.prototype = { call$1: function(invoice) { return invoice.get$id(invoice); }, $signature: 41 }; Q.handleInvoiceAction_closure0.prototype = { call$1: function(element) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!J.$index$asx(t2._list, t1).clientState.$get$1(0, this.invoice.clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 7 }; Q.handleInvoiceAction_closure1.prototype = { call$0: function() { var t2, t3, t1 = this.context; K.Navigator_of(t1, false).pop$0(0); t2 = this.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; M.editEntity(null, t1, J.$index$asx(t3._list, t2).clientState.$get$1(0, this.invoice.clientId), null); }, $signature: 1 }; Q.handleInvoiceAction_closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; Q.handleInvoiceAction_closure3.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; Q.handleInvoiceAction_closure4.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_recurringInvoice; return b; }, $signature: 11 }; Q.handleInvoiceAction_closure5.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_payment_model$_$this()._isForInvoice = true; t1 = this.invoice.clientId; b.get$_payment_model$_$this()._payment_model$_clientId = t1; t1 = this.invoices; t2 = H._arrayInstanceType(t1); t3 = t2._eval$1("MappedIterable<1,PaymentableEntity*>"); b.get$invoices().addAll$1(0, P.List_List$of(new H.MappedIterable(new H.WhereIterable(t1, new Q.handleInvoiceAction__closure(), t2._eval$1("WhereIterable<1>")), new Q.handleInvoiceAction__closure0(), t3), true, t3._eval$1("Iterable.E"))); return b; }, $signature: 37 }; Q.handleInvoiceAction__closure.prototype = { call$1: function(invoice) { return type$.legacy_InvoiceEntity._as(invoice).statusId !== "4"; }, $signature: 194 }; Q.handleInvoiceAction__closure0.prototype = { call$1: function(invoice) { var t1 = invoice.id; return F.PaymentableEntity_PaymentableEntity(invoice.statusId !== "1" ? invoice.balance : invoice.amount, null, t1); }, $signature: 667 }; G._viewInvoiceList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/invoice"; next.call$1(type$.legacy_ViewInvoiceList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new G._viewInvoiceList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._viewInvoiceList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; G._viewInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewInvoice_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/invoice/view")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; G._editInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s13_ = "/invoice/edit"; next.call$1(type$.legacy_EditInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._showEmailInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showEmailInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailInvoice_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailInvoice._as(dynamicAction); next.call$1(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/invoice/email")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; G._showPdfInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showPdfInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfInvoice_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/invoice/pdf")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/invoice/pdf", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; G._cancelInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_CancelInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_cancel).then$1$1(0, new G._cancelInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new G._cancelInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._cancelInvoices__closure.prototype = { call$1: function(invoices) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.CancelInvoicesSuccess(invoices)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._cancelInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.CancelInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._reverseInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_ReverseInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_reverse).then$1$1(0, new G._reverseInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new G._reverseInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._reverseInvoices__closure.prototype = { call$1: function(invoices) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ReverseInvoicesSuccess(invoices)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._reverseInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ReverseInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._archiveInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_ArchiveInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = P.List_List$of(new H.MappedListIterable(t1, new G._archiveInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new G._archiveInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new G._archiveInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._archiveInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).invoiceState.map._map$_map, id); }, $signature: 64 }; G._archiveInvoice__closure0.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._archiveInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._deleteInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_DeleteInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = P.List_List$of(new H.MappedListIterable(t1, new G._deleteInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new G._deleteInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new G._deleteInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._deleteInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).invoiceState.map._map$_map, id); }, $signature: 64 }; G._deleteInvoice__closure0.prototype = { call$1: function(invoices) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.DeleteInvoicesSuccess(invoices)); t2 = J.get$first$ax(invoices).clientId; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t2)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._deleteInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._restoreInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevInvoices; type$.legacy_RestoreInvoicesRequest._as(dynamicAction); t1 = dynamicAction.invoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevInvoices = P.List_List$of(new H.MappedListIterable(t1, new G._restoreInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new G._restoreInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new G._restoreInvoice__closure1(store, prevInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._restoreInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).invoiceState.map._map$_map, id); }, $signature: 64 }; G._restoreInvoice__closure0.prototype = { call$1: function(invoices) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.RestoreInvoicesSuccess(invoices)); t2 = J.get$first$ax(invoices).clientId; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t2)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._restoreInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._markInvoiceSent_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_MarkInvoicesSentRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_markSent).then$1$1(0, new G._markInvoiceSent__closure(store, dynamicAction), type$.Null).catchError$1(new G._markInvoiceSent__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._markInvoiceSent__closure.prototype = { call$1: function(invoices) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesSentSuccess(invoices)); t2 = J.get$first$ax(invoices).clientId; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t2)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._markInvoiceSent__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesSentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._markInvoicePaid_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_MarkInvoicesPaidRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_markPaid).then$1$1(0, new G._markInvoicePaid__closure(store, dynamicAction), type$.Null).catchError$1(new G._markInvoicePaid__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._markInvoicePaid__closure.prototype = { call$1: function(invoices) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesPaidSuccess(invoices)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._markInvoicePaid__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.MarkInvoicesPaidFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._downloadInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_DownloadInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_download).then$1$1(0, new G._downloadInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new G._downloadInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._downloadInvoices__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DownloadInvoicesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._downloadInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DownloadInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._emailInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, origInvoice; type$.legacy_EmailInvoiceRequest._as(dynamicAction); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).invoiceState.map; t2 = dynamicAction.invoiceId; origInvoice = J.$index$asx(t1._map$_map, t2); this.repository.emailInvoice$5(J.get$credentials$z(store.get$_store$_state()), origInvoice, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new G._emailInvoice__closure(store, origInvoice, dynamicAction), type$.Null).catchError$1(new G._emailInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._emailInvoice__closure.prototype = { call$1: function(invoice) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.EmailInvoiceSuccess(invoice)); t2 = this.origInvoice.clientId; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t2)); this.action.completer.complete$1(0, null); }, $signature: 68 }; G._emailInvoice__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.EmailInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._bulkEmailInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_BulkEmailInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_emailInvoice).then$1$1(0, new G._bulkEmailInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new G._bulkEmailInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._bulkEmailInvoices__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.BulkEmailInvoicesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; G._bulkEmailInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.BulkEmailInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._saveInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var updatedInvoice; type$.legacy_SaveInvoiceRequest._as(dynamicAction); updatedInvoice = dynamicAction.invoice.rebuild$1(new G._saveInvoice__closure(dynamicAction)); this.repository.saveData$3$action(J.get$credentials$z(store.get$_store$_state()), updatedInvoice, dynamicAction.entityAction).then$1$1(0, new G._saveInvoice__closure0(dynamicAction, store), type$.Null).catchError$1(new G._saveInvoice__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._saveInvoice__closure.prototype = { call$1: function(b) { b.get$lineItems().replace$1(0, J.where$1$ax(this.action.invoice.lineItems._list, new G._saveInvoice___closure())); return b; }, $signature: 11 }; G._saveInvoice___closure.prototype = { call$1: function(item) { return !item.get$isEmpty(item); }, $signature: 58 }; G._saveInvoice__closure0.prototype = { call$1: function(invoice) { var t1 = this.action, t2 = this.store; if (t1.invoice.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.AddInvoiceSuccess(invoice)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceSuccess(invoice)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); t1.completer.complete$1(0, invoice); }, $signature: 68 }; G._saveInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G._loadInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadInvoice._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadInvoiceRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceId).then$1$1(0, new G._loadInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new G._loadInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._loadInvoice__closure.prototype = { call$1: function(invoice) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadInvoiceSuccess(invoice)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 68 }; G._loadInvoice__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadInvoiceFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; G._loadInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadInvoices._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadInvoicesRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new G._loadInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new G._loadInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._loadInvoices__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.LoadInvoicesSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.LoadPayments()); }, $signature: 258 }; G._loadInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadInvoicesFailure(error)); this.action.toString; }, $signature: 3 }; G._saveDocument_closure9.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveInvoiceDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoice, dynamicAction.multipartFile).then$1$1(0, new G._saveDocument__closure19(store, dynamicAction), type$.Null).catchError$1(new G._saveDocument__closure20(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; G._saveDocument__closure19.prototype = { call$1: function(invoice) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceSuccess(invoice)); this.action.completer.complete$1(0, null); }, $signature: 68 }; G._saveDocument__closure20.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D.invoiceUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$invoiceListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer20().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._invoice_model$_$v = t4; t1 = $.$get$editingItemIndexReducer0().call$2(t2.editingItemIndex, t3); b.get$_invoice_state$_$this()._invoice_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer20().call$2(t2.selectedId, t3); b.get$_invoice_state$_$this()._invoice_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer20().call$2(t2.forceSelected, t3); b.get$_invoice_state$_$this()._invoice_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer9().call$2(t2.tabIndex, t3); b.get$_invoice_state$_$this()._invoice_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer2().call$2(t2.historyActivityId, t3); b.get$_invoice_state$_$this()._invoice_state$_historyActivityId = t3; return b; }, $signature: 1285 }; D.forceSelectedReducer_closure159.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1286 }; D.forceSelectedReducer_closure160.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1287 }; D.forceSelectedReducer_closure161.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1288 }; D.forceSelectedReducer_closure162.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1289 }; D.forceSelectedReducer_closure163.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1290 }; D.forceSelectedReducer_closure164.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1291 }; D.forceSelectedReducer_closure165.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1292 }; D.forceSelectedReducer_closure166.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1293 }; D.tabIndexReducer_closure19.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1294 }; D.tabIndexReducer_closure20.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; D.historyActivityIdReducer_closure2.prototype = { call$2: function(index, action) { return action.activityId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 631 }; D.editingItemIndexReducer_closure1.prototype = { call$2: function(index, action) { return action.invoiceItemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1296 }; D.editingItemIndexReducer_closure2.prototype = { call$2: function(index, action) { return action.invoiceItemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1297 }; D.selectedIdReducer_closure316.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1298 }; D.selectedIdReducer_closure317.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1299 }; D.selectedIdReducer_closure318.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_invoice ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; D.selectedIdReducer_closure319.prototype = { call$2: function(selectedId, action) { return action.invoiceId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1300 }; D.selectedIdReducer_closure320.prototype = { call$2: function(selectedId, action) { return action.invoice.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1301 }; D.selectedIdReducer_closure321.prototype = { call$2: function(selectedId, action) { return action.invoice.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1302 }; D.selectedIdReducer_closure322.prototype = { call$2: function(selectedId, action) { return action.invoice.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 631 }; D.selectedIdReducer_closure323.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; D.selectedIdReducer_closure324.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; D.selectedIdReducer_closure325.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1303 }; D.selectedIdReducer_closure326.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1304 }; D.selectedIdReducer_closure327.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1305 }; D.selectedIdReducer_closure328.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1306 }; D.selectedIdReducer_closure329.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1307 }; D.selectedIdReducer_closure330.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1308 }; D.selectedIdReducer_closure331.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1309 }; D.selectedIdReducer_closure332.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1310 }; D.selectedIdReducer_closure333.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_invoice ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; D.selectedIdReducer_closure334.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_invoice ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; D.editingReducer_closure101.prototype = { call$2: function(invoice, action) { return action.invoice.rebuild$1(new D.editingReducer__closure44()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1311 }; D.editingReducer__closure44.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; D.editingReducer_closure102.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure43()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 630 }; D.editingReducer__closure43.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; D.editingReducer_closure103.prototype = { call$2: function(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1313 }; D.editingReducer_closure104.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure42()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 629 }; D.editingReducer__closure42.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; D.editingReducer_closure105.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure41()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 628 }; D.editingReducer__closure41.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; D.editingReducer_closure106.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure40(action.client)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1316 }; D.editingReducer__closure40.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ContactEntity); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, P.List_List$of(new H.MappedListIterable(t1, new D.editingReducer___closure2(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 11 }; D.editingReducer___closure2.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; D.editingReducer_closure107.prototype = { call$2: function(invoices, action) { return J.$index$asx(action.invoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1317 }; D.editingReducer_closure108.prototype = { call$2: function(invoices, action) { return J.$index$asx(action.invoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1318 }; D.editingReducer_closure109.prototype = { call$2: function(invoices, action) { return J.$index$asx(action.invoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1319 }; D.editingReducer_closure110.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure39(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1320 }; D.editingReducer__closure39.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? Q.InvitationEntity_InvitationEntity(t2.contact.id) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; D.editingReducer_closure111.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new D.editingReducer__closure38(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1321 }; D.editingReducer__closure38.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; D._addInvoiceItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.item); return b; }, $signature: 11 }; D._addInvoiceItems_closure.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.action.lineItems); return b; }, $signature: 11 }; D._removeInvoiceItem_closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 11 }; D._updateInvoiceItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t2.index, t2.invoiceItem); return b; }, $signature: 11 }; D._viewInvoiceList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; D._filterInvoicesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; D._filterInvoicesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._filterInvoicesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; D._filterInvoicesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._filterInvoicesByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; D._filterInvoicesByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._filterInvoicesByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; D._filterInvoicesByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._filterInvoicesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; D._filterInvoicesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._filterInvoicesByStatus_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; D._filterInvoicesByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.action.status); return b; }, $signature: 2 }; D._filterInvoices_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.invoiceListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; D._sortInvoices_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; D._startListMultiselect_closure20.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; D._addToListMultiselect_closure20.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._removeFromListMultiselect_closure20.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; D._clearListMultiselect_closure20.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; D._markInvoicesSentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._markInvoicesPaidSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._reverseInvoicesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._cancelInvoicesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._archiveInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._deleteInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._emailInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.invoice; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 263 }; D._restoreInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_invoice_state$_$this(); t5 = t4._invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 167 }; D._addInvoice_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.invoice, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new D._addInvoice__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 263 }; D._addInvoice__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; D._updateInvoice_closure.prototype = { call$1: function(b) { b.get$map(b).$indexSet(0, J.get$id$x(this.action.get$invoice()), this.invoice.rebuild$1(new D._updateInvoice__closure())); return b; }, $signature: 263 }; D._updateInvoice__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; Z.memoizedDropdownInvoiceList_closure.prototype = { call$7: function(invoiceMap, clientMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix) { return Z.dropdownInvoiceSelector(invoiceMap, clientMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix); }, $signature: 1324 }; Z.dropdownInvoiceSelector_closure.prototype = { call$1: function(invoiceId) { var t2, t3, _this = this, invoice = J.$index$asx(_this.invoiceMap._map$_map, invoiceId), t1 = _this.excludedIds; if ((t1 && C.JSArray_methods).contains$1(t1, invoiceId)) return false; t1 = _this.clientId; if (t1 != null && t1.length !== 0 && invoice.clientId !== t1) return false; t1 = invoice.clientId; t2 = _this.clientMap._map$_map; t3 = J.getInterceptor$x(t2); if (t3.containsKey$1(t2, t1)) { t1 = t3.$index(t2, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = true; if (t1) return false; if (!invoice.get$isArchived() && !invoice.isDeleted) if (invoice.get$isUnpaid()) { t1 = invoice.statusId; t1 = !(t1 === "5" || t1 === "6"); } else t1 = false; else t1 = false; return t1; }, $signature: 16 }; Z.dropdownInvoiceSelector_closure0.prototype = { call$2: function(invoiceAId, invoiceBId) { var _this = this, t1 = _this.invoiceMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, invoiceAId).compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap(0, _this.clientMap, t2.$index(t1, invoiceBId), _this.recurringPrefix, false, "number", _this.userMap); }, $signature: 18 }; Z.memoizedFilteredInvoiceList_closure.prototype = { call$8: function(selectionState, invoiceMap, invoiceList, clientMap, paymentMap, invoiceListState, userMap, recurringPrefix) { return Z.filteredInvoicesSelector(selectionState, invoiceMap, invoiceList, clientMap, paymentMap, invoiceListState, userMap, recurringPrefix); }, $signature: 1325 }; Z.filteredInvoicesSelector_closure.prototype = { call$2: function(paymentId, payment) { C.JSArray_methods.forEach$1(payment.get$invoicePaymentables(), new Z.filteredInvoicesSelector__closure0(this.invoicePaymentMap, payment)); }, $signature: 191 }; Z.filteredInvoicesSelector__closure0.prototype = { call$1: function(invoicePaymentable) { var t1 = this.invoicePaymentMap, t2 = invoicePaymentable.invoiceId, paymentIds = t1.$index(0, t2); if (paymentIds == null) paymentIds = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); paymentIds.push(this.payment.id); t1.$indexSet(0, t2, paymentIds); }, $signature: 224 }; Z.filteredInvoicesSelector_closure0.prototype = { call$1: function(invoiceId) { var t3, _this = this, t1 = {}, invoice = J.$index$asx(_this.invoiceMap._map$_map, invoiceId), t2 = invoice.clientId, client = J.$index$asx(_this.clientMap._map$_map, t2); if (client == null) client = T.ClientEntity_ClientEntity(t2, null, null); if (invoice.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t2 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t2 = false; if (t2) return false; t2 = _this.filterEntityType; if (t2 === C.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t2 === C.EntityType_user && invoice.assignedUserId != _this.filterEntityId) return false; else if (t2 === C.EntityType_recurringInvoice && invoice.recurringId != _this.filterEntityId) return false; else if (t2 === C.EntityType_subscription && invoice.subscriptionId !== _this.filterEntityId) return false; else if (t2 === C.EntityType_design && invoice.designId !== _this.filterEntityId) return false; else if (t2 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t2 === C.EntityType_payment) { t1.isMatch = false; t2 = _this.invoicePaymentMap.$index(0, invoiceId); if (t2 == null) t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); C.JSArray_methods.forEach$1(t2, new Z.filteredInvoicesSelector__closure(t1, _this.filterEntityId)); if (!t1.isMatch) return false; } t1 = _this.invoiceListState; if (!invoice.matchesStates$1(t1.stateFilters)) return false; if (!invoice.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!invoice.matchesFilter$1(t2) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t2.toLowerCase())) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, invoice.customValue4)) return false; } } } return true; }, $signature: 16 }; Z.filteredInvoicesSelector__closure.prototype = { call$1: function(paymentId) { if (this.filterEntityId == paymentId) this._box_0.isMatch = true; }, $signature: 7 }; Z.filteredInvoicesSelector_closure1.prototype = { call$2: function(invoiceAId, invoiceBId) { var t4, _this = this, t1 = _this.invoiceMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, invoiceAId); t1 = t2.$index(t1, invoiceBId); t2 = _this.invoiceListState; t4 = t2.sortField; return J.compareTo$6$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$ns(t3, _this.clientMap, t1, _this.recurringPrefix, t2.sortAscending, t4, _this.userMap); }, $signature: 18 }; Z.memoizedInvoiceStatsForClient_closure.prototype = { call$2: function(clientId, invoiceMap) { return Z.invoiceStatsForClient(clientId, invoiceMap); }, $signature: 82 }; Z.invoiceStatsForClient_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.clientId === this.clientId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Z.memoizedInvoiceStatsForDesign_closure.prototype = { call$2: function(designId, invoiceMap) { return Z.invoiceStatsForDesign(designId, invoiceMap); }, $signature: 82 }; Z.invoiceStatsForDesign_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.designId === this.designId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Z.memoizedInvoiceStatsForSubscription_closure.prototype = { call$2: function(subscriptionId, invoiceMap) { return Z.invoiceStatsForSubscription(subscriptionId, invoiceMap); }, $signature: 82 }; Z.invoiceStatsForSubscription_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.subscriptionId === this.subscriptionId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Z.memoizedInvoiceStatsForUser_closure.prototype = { call$2: function(userId, invoiceMap) { return Z.invoiceStatsForUser(userId, invoiceMap); }, $signature: 82 }; Z.invoiceStatsForUser_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.assignedUserId == this.userId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 55 }; B.InvoiceState.prototype = { $get$1: function(_, invoiceId) { var _null = null, t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, invoiceId)) return t2.$index(t1, invoiceId); else return Q.InvoiceEntity_InvoiceEntity(_null, _null, invoiceId, _null, _null); }, loadInvoices$1: function(clients) { return this.rebuild$1(new B.InvoiceState_loadInvoices_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new B.InvoiceState_loadInvoices_closure0(), new B.InvoiceState_loadInvoices_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; B.InvoiceState_loadInvoices_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; B.InvoiceState_loadInvoices_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; B.InvoiceState_loadInvoices_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 263 }; B.InvoiceUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; B._$InvoiceStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new B.InvoiceStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._invoice_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_n67)); break; case "list": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._invoice_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Js5; }, get$wireName: function() { return "InvoiceState"; } }; B._$InvoiceUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new B.InvoiceUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_editing; if (t6 == null) { t6 = new Q.InvoiceEntityBuilder(); t7 = t6.get$_invoice_model$_$this(); t8 = t7._invoice_model$_activities; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._invoice_model$_activities = t8; t7 = t8; } else t7 = t8; t8 = D.BuiltList_BuiltList$from(C.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t6.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t6.get$_invoice_model$_$this()._autoBillEnabled = false; t6.get$_invoice_model$_$this()._subscriptionId = ""; t5._invoice_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._invoice_model$_$v = t6; break; case "listUIState": t5 = result.get$_invoice_state$_$this(); t6 = t5._invoice_state$_listUIState; t5 = t6 == null ? t5._invoice_state$_listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_invoice_state$_$this()._invoice_state$_selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_invoice_state$_$this()._invoice_state$_forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_invoice_state$_$this()._invoice_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kMT; }, get$wireName: function() { return "InvoiceUIState"; } }; B._$InvoiceState.prototype = { rebuild$1: function(updates) { var t1 = new B.InvoiceStateBuilder(); t1._invoice_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof B.InvoiceState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_state$__hashCode; return t1 == null ? _this._invoice_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; B.InvoiceStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_map; return t2 == null ? t1._invoice_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list: function(_) { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_list; return t2 == null ? t1._invoice_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_invoice_state$_$this: function() { var t1, t2, _this = this, $$v = _this._invoice_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._invoice_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._invoice_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._invoice_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._invoice_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = B._$InvoiceState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("InvoiceState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._invoice_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; B._$InvoiceUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof B.InvoiceUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._invoice_state$__hashCode; return t1 == null ? _this._invoice_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("InvoiceUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; B.InvoiceUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_editing; if (t2 == null) { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t1._invoice_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_invoice_state$_$this(), t2 = t1._invoice_state$_listUIState; return t2 == null ? t1._invoice_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_invoice_state$_$this: function() { var t1, t2, _this = this, $$v = _this._invoice_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; t1 = t2; } _this._invoice_state$_editing = t1; _this._invoice_state$_editingItemIndex = $$v.editingItemIndex; _this._invoice_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._invoice_state$_listUIState = t2; _this._invoice_state$_selectedId = $$v.selectedId; _this._invoice_state$_forceSelected = $$v.forceSelected; _this._invoice_state$_tabIndex = $$v.tabIndex; _this._invoice_state$_saveCompleter = $$v.saveCompleter; _this._invoice_state$_cancelCompleter = $$v.cancelCompleter; _this._invoice_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s14_ = "InvoiceUIState", _$result = null; try { _$result0 = _this._invoice_state$_$v; if (_$result0 == null) { t1 = _this._invoice_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_invoice_state$_$this()._invoice_state$_editingItemIndex; t3 = _this.get$_invoice_state$_$this()._invoice_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_invoice_state$_$this()._invoice_state$_selectedId; t6 = _this.get$_invoice_state$_$this()._invoice_state$_forceSelected; t7 = _this.get$_invoice_state$_$this()._invoice_state$_tabIndex; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t8 = _this.get$_invoice_state$_$this()._invoice_state$_saveCompleter; _$result0 = B._$InvoiceUIState$_(_this.get$_invoice_state$_$this()._invoice_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._invoice_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._invoice_state$_$v = t1; return _$result; } }; B._InvoiceUIState_Object_EntityUIState.prototype = {}; Q.ViewPaymentList.prototype = {$isStopLoading: 1}; Q.ViewPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.EditPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$payment: function() { return this.payment; } }; Q.ViewRefundPayment.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$payment: function() { return this.payment; } }; Q.UpdatePayment.prototype = {$isPersistUI: 1, get$payment: function() { return this.payment; } }; Q.LoadPayment.prototype = {}; Q.LoadPayments.prototype = {}; Q.LoadPaymentRequest.prototype = {$isStartLoading: 1}; Q.LoadPaymentFailure.prototype = { toString$0: function(_) { return "LoadPaymentFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadPaymentSuccess.prototype = { toString$0: function(_) { return "LoadPaymentSuccess{payment: " + H.S(this.payment) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$payment: function() { return this.payment; } }; Q.LoadPaymentsRequest.prototype = {$isStartLoading: 1}; Q.LoadPaymentsFailure.prototype = { toString$0: function(_) { return "LoadPaymentsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadPaymentsSuccess.prototype = { toString$0: function(_) { return "LoadPaymentsSuccess{payments: " + H.S(this.payments) + "}"; }, $isStopLoading: 1 }; Q.SavePaymentRequest.prototype = {$isStartSaving: 1, get$payment: function() { return this.payment; } }; Q.SavePaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment: function() { return this.payment; } }; Q.AddPaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment: function() { return this.payment; } }; Q.SavePaymentFailure.prototype = {$isStopSaving: 1}; Q.RefundPaymentRequest.prototype = {$isStartSaving: 1, get$payment: function() { return this.payment; } }; Q.RefundPaymentSuccess.prototype = {$isPersistUI: 1, $isStopSaving: 1, get$payment: function() { return this.payment; } }; Q.RefundPaymentFailure.prototype = {$isStopSaving: 1}; Q.ArchivePaymentsRequest.prototype = {$isStartSaving: 1}; Q.ArchivePaymentsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.ArchivePaymentsFailure.prototype = {$isStopSaving: 1}; Q.DeletePaymentsRequest.prototype = {$isStartSaving: 1}; Q.DeletePaymentsSuccess.prototype = {$isStopSaving: 1}; Q.DeletePaymentsFailure.prototype = {$isStopSaving: 1}; Q.RestorePaymentsRequest.prototype = {$isStartSaving: 1}; Q.RestorePaymentsSuccess.prototype = {$isStopSaving: 1}; Q.RestorePaymentsFailure.prototype = {$isStopSaving: 1}; Q.EmailPaymentRequest.prototype = {$isStartSaving: 1}; Q.EmailPaymentSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.FilterPayments.prototype = {$isPersistUI: 1}; Q.SortPayments.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.FilterPaymentsByState.prototype = {$isPersistUI: 1}; Q.FilterPaymentsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterPaymentsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterPaymentsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterPaymentsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.StartPaymentMultiselect.prototype = {}; Q.AddToPaymentMultiselect.prototype = {}; Q.RemoveFromPaymentMultiselect.prototype = {}; Q.ClearPaymentMultiselect.prototype = {}; Q.handlePaymentAction_closure.prototype = { call$1: function(payment) { return payment.get$id(payment); }, $signature: 41 }; Q.handlePaymentAction_closure0.prototype = { call$1: function(duration) { M.editEntity(null, this.context, this._box_0.payment.rebuild$1(new Q.handlePaymentAction__closure1()), null); }, $signature: 45 }; Q.handlePaymentAction__closure1.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._isApplying = true; return b; }, $signature: 37 }; Q.handlePaymentAction_closure1.prototype = { call$1: function(duration) { var t1 = this._box_0; if (t1.payment.get$invoicePaymentables().length === 1) t1.payment = t1.payment.rebuild$1(new Q.handlePaymentAction__closure(t1)); t1 = t1.payment.rebuild$1(new Q.handlePaymentAction__closure0(this.company)); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ViewRefundPayment(t1)); }, $signature: 45 }; Q.handlePaymentAction__closure.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this._box_0, t3 = t2.payment.get$invoiceId(); t3 = F.PaymentableEntity_PaymentableEntity(t2.payment.get$completedAmount(), null, t3); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t3); return b; }, $signature: 37 }; Q.handlePaymentAction__closure0.prototype = { call$1: function(b) { var t1 = this.company.settings.clientManualPaymentNotification; b.get$_payment_model$_$this()._sendEmail = t1; return b; }, $signature: 37 }; D._editPayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, _s13_ = "/payment/edit"; type$.legacy_EditPayment._as(dynamicAction); next.call$1(dynamicAction); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile || dynamicAction.payment.isApplying !== true) { J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); } else { t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(false, new D._editPayment__closure(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_PaymentEditScreen); } }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._editPayment__closure.prototype = { call$1: function(context) { return new B.PaymentEditScreen(null); }, $signature: 726 }; D._viewRefundPayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, _s15_ = "/payment/refund"; next.call$1(type$.legacy_ViewRefundPayment._as(dynamicAction)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s15_)); $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s15_, type$.legacy_Object); } else { t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(false, new D._viewRefundPayment__closure(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_PaymentRefundScreen); } }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._viewRefundPayment__closure.prototype = { call$1: function(context) { return new Y.PaymentRefundScreen(null); }, $signature: 725 }; D._viewPayment_closure.prototype = { call$3: function(store, action, next) { return this.$call$body$_viewPayment_closure(store, action, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewPayment_closure: function(store, action, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(action); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/payment/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/payment/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; D._viewPaymentList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/payment"; next.call$1(type$.legacy_ViewPaymentList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new D._viewPaymentList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._viewPaymentList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; D._archivePayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_ArchivePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = P.List_List$of(new H.MappedListIterable(t1, new D._archivePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new D._archivePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new D._archivePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._archivePayment__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentState.map._map$_map, id); }, $signature: 190 }; D._archivePayment__closure0.prototype = { call$1: function(payments) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchivePaymentsSuccess(payments)); this.action.completer.complete$1(0, null); }, $signature: 265 }; D._archivePayment__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchivePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._deletePayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_DeletePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = P.List_List$of(new H.MappedListIterable(t1, new D._deletePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new D._deletePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new D._deletePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._deletePayment__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentState.map._map$_map, id); }, $signature: 190 }; D._deletePayment__closure0.prototype = { call$1: function(payments) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.DeletePaymentsSuccess(payments)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 265 }; D._deletePayment__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeletePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._restorePayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPayments; type$.legacy_RestorePaymentsRequest._as(dynamicAction); t1 = dynamicAction.paymentIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentEntity*>"); prevPayments = P.List_List$of(new H.MappedListIterable(t1, new D._restorePayment__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new D._restorePayment__closure0(store, dynamicAction), type$.Null).catchError$1(new D._restorePayment__closure1(store, prevPayments, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._restorePayment__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentState.map._map$_map, id); }, $signature: 190 }; D._restorePayment__closure0.prototype = { call$1: function(payments) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.RestorePaymentsSuccess(payments)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 265 }; D._restorePayment__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestorePaymentsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._savePayment_closure.prototype = { call$3: function(store, dynamicAction, next) { var payment, sendEmail; type$.legacy_SavePaymentRequest._as(dynamicAction); payment = dynamicAction.payment; sendEmail = payment.get$isNew() && payment.sendEmail; this.repository.saveData$3$sendEmail(J.get$credentials$z(store.get$_store$_state()), payment, sendEmail).then$1$1(0, new D._savePayment__closure(dynamicAction, store), type$.Null).catchError$1(new D._savePayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._savePayment__closure.prototype = { call$1: function(payment) { var t1 = this.action, t2 = this.store; if (t1.payment.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.AddPaymentSuccess(payment)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SavePaymentSuccess(payment)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); t1.completer.complete$1(0, payment); }, $signature: 129 }; D._savePayment__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SavePaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._refundPayment_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_RefundPaymentRequest._as(dynamicAction); this.repository.refundPayment$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.payment).then$1$1(0, new D._refundPayment__closure(store, dynamicAction), type$.Null).catchError$1(new D._refundPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._refundPayment__closure.prototype = { call$1: function(payment) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SavePaymentSuccess(payment)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.RefundPaymentSuccess(payment)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, payment); }, $signature: 129 }; D._refundPayment__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RefundPaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._emailPayment_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_EmailPaymentRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.paymentIds, C.EntityAction_emailPayment).then$1$1(0, new D._emailPayment__closure(store, dynamicAction), type$.Null).catchError$1(new D._emailPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._emailPayment__closure.prototype = { call$1: function(payments) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.EmailPaymentSuccess()); this.action.completer.complete$1(0, null); }, $signature: 265 }; D._emailPayment__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SavePaymentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._loadPayment_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadPayment._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadPaymentRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.paymentId).then$1$1(0, new D._loadPayment__closure(store, dynamicAction), type$.Null).catchError$1(new D._loadPayment__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._loadPayment__closure.prototype = { call$1: function(payment) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadPaymentSuccess(payment)); this.action.completer.complete$1(0, null); }, $signature: 129 }; D._loadPayment__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadPaymentFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; D._loadPayments_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadPayments._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadPaymentsRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new D._loadPayments__closure(store, dynamicAction), type$.Null).catchError$1(new D._loadPayments__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._loadPayments__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.LoadPaymentsSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoices()); }, $signature: 1329 }; D._loadPayments__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadPaymentsFailure(error)); this.action.toString; }, $signature: 3 }; R.paymentUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$paymentListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer0().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._payment_model$_$v = t4; t1 = $.$get$selectedIdReducer0().call$2(t2.selectedId, t3); b.get$_payment_state$_$this()._payment_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer0().call$2(t2.forceSelected, t3); b.get$_payment_state$_$this()._payment_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer0().call$2(t2.tabIndex, t3); b.get$_payment_state$_$this()._payment_state$_tabIndex = t3; return b; }, $signature: 1330 }; R.forceSelectedReducer_closure7.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1331 }; R.forceSelectedReducer_closure8.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1332 }; R.forceSelectedReducer_closure9.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1333 }; R.forceSelectedReducer_closure10.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1334 }; R.forceSelectedReducer_closure11.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1335 }; R.forceSelectedReducer_closure12.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1336 }; R.forceSelectedReducer_closure13.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1337 }; R.forceSelectedReducer_closure14.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1338 }; R.tabIndexReducer_closure1.prototype = { call$2: function(completer, action) { return action.get$tabIndex(action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1339 }; R.tabIndexReducer_closure2.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; R.selectedIdReducer_closure18.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1340 }; R.selectedIdReducer_closure19.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1341 }; R.selectedIdReducer_closure20.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_payment ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; R.selectedIdReducer_closure21.prototype = { call$2: function(selectedId, action) { return action.paymentId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1342 }; R.selectedIdReducer_closure22.prototype = { call$2: function(selectedId, action) { return action.payment.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1343 }; R.selectedIdReducer_closure23.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; R.selectedIdReducer_closure24.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; R.selectedIdReducer_closure25.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1344 }; R.selectedIdReducer_closure26.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1345 }; R.selectedIdReducer_closure27.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1346 }; R.selectedIdReducer_closure28.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1347 }; R.selectedIdReducer_closure29.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1348 }; R.selectedIdReducer_closure30.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1349 }; R.selectedIdReducer_closure31.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1350 }; R.selectedIdReducer_closure32.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_payment ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; R.selectedIdReducer_closure33.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_payment ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; R.editingReducer_closure10.prototype = { call$2: function(payments, action) { return J.$index$asx(action.payments, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1351 }; R.editingReducer_closure11.prototype = { call$2: function(payments, action) { return J.$index$asx(action.payments, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1352 }; R.editingReducer_closure12.prototype = { call$2: function(payments, action) { return J.$index$asx(action.payments, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1353 }; R.editingReducer_closure13.prototype = { call$2: function(payment, action) { return action.payment.rebuild$1(new R.editingReducer__closure6()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1354 }; R.editingReducer__closure6.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_isChanged = true; return b; }, $signature: 37 }; R._viewPaymentList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; R._filterPaymentsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; R._filterPaymentsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._filterPaymentsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; R._filterPaymentsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._filterPaymentsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; R._filterPaymentsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._filterPaymentsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; R._filterPaymentsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._filterPaymentsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; R._filterPaymentsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._filterPayments_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.paymentListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; R._sortPayments_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; R._startListMultiselect_closure0.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; R._addToListMultiselect_closure0.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._removeFromListMultiselect_closure0.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; R._clearListMultiselect_closure0.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; R._archivePaymentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 373 }; R._deletePaymentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 373 }; R._restorePaymentSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.payments), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_state$_$this(); t5 = t4._payment_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 373 }; R._addPayment_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.payment, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 268 }; R._updatePayment_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.payment; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 268 }; R._setLoadedPayment_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.payment; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 268 }; Q.memoizedPaymentsByInvoice_closure.prototype = { call$3: function(invoiceId, paymentMap, paymentList) { return Q.paymentsByInvoiceSelector(invoiceId, paymentMap, paymentList); }, $signature: 626 }; Q.paymentsByInvoiceSelector_closure.prototype = { call$1: function(paymentId) { return J.$index$asx(this.paymentMap._map$_map, paymentId); }, $signature: 190 }; Q.paymentsByInvoiceSelector_closure0.prototype = { call$1: function(payment) { return J.map$1$1$ax(payment.paymentables._list, new Q.paymentsByInvoiceSelector__closure(), type$.legacy_String).contains$1(0, this.invoiceId) && !payment.isDeleted; }, $signature: 401 }; Q.paymentsByInvoiceSelector__closure.prototype = { call$1: function(p) { return p.invoiceId; }, $signature: 169 }; Q.memoizedPaymentsByCredit_closure.prototype = { call$3: function(invoiceId, paymentMap, paymentList) { return Q.paymentsByCreditSelector(invoiceId, paymentMap, paymentList); }, $signature: 626 }; Q.paymentsByCreditSelector_closure.prototype = { call$1: function(paymentId) { return J.$index$asx(this.paymentMap._map$_map, paymentId); }, $signature: 190 }; Q.paymentsByCreditSelector_closure0.prototype = { call$1: function(payment) { return J.map$1$1$ax(payment.paymentables._list, new Q.paymentsByCreditSelector__closure(), type$.legacy_String).contains$1(0, this.creditId) && !payment.isDeleted; }, $signature: 401 }; Q.paymentsByCreditSelector__closure.prototype = { call$1: function(p) { return p.creditId; }, $signature: 169 }; Q.memoizedFilteredPaymentList_closure.prototype = { call$7: function(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentListState) { return Q.filteredPaymentsSelector(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentListState); }, $signature: 1359 }; Q.filteredPaymentsSelector_closure.prototype = { call$1: function(paymentId) { var t2, client, t3, _this = this, payment = J.$index$asx(_this.paymentMap._map$_map, paymentId), t1 = _this.paymentListState; if (!payment.matchesStates$1(t1.stateFilters)) return false; t2 = payment.clientId; client = J.$index$asx(_this.clientMap._map$_map, t2); if (client == null) client = T.ClientEntity_ClientEntity(t2, null, null); if (payment.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t3 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t3 = false; if (t3) return false; t3 = _this.filterEntityType; if (t3 === C.EntityType_client && t2 !== _this.filterEntityId) return false; else if (t3 === C.EntityType_invoice) { if (!J.map$1$1$ax(payment.paymentables._list, new Q.filteredPaymentsSelector__closure(), type$.legacy_String).contains$1(0, _this.filterEntityId)) return false; } else if (t3 === C.EntityType_user && payment.assignedUserId != _this.filterEntityId) return false; else if (t3 === C.EntityType_companyGateway && payment.companyGatewayId !== _this.filterEntityId) return false; t1 = t1.filter; if (!payment.matchesFilter$1(t1) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t1.toLowerCase())) return false; return true; }, $signature: 16 }; Q.filteredPaymentsSelector__closure.prototype = { call$1: function(p) { return p.invoiceId; }, $signature: 169 }; Q.filteredPaymentsSelector_closure0.prototype = { call$2: function(paymentAId, paymentBId) { var sortAscending, sortField, userMap, paymentA0, paymentB0, response, t3, invoiceA, invoiceB, clientA, clientB, userA, userB, stateA, stateB, _this = this, _null = null, _s8_ = "archived", t1 = _this.paymentMap._map$_map, t2 = J.getInterceptor$asx(t1), paymentA = t2.$index(t1, paymentAId), paymentB = t2.$index(t1, paymentBId); t1 = _this.paymentListState; sortAscending = t1.sortAscending; sortField = t1.sortField; userMap = _this.userMap; paymentA.toString; if (sortAscending) paymentA0 = paymentA; else paymentA0 = paymentB; if (sortAscending) paymentB0 = paymentB; else paymentB0 = paymentA; switch (sortField) { case "amount": response = C.JSNumber_methods.compareTo$1(paymentA0.amount, paymentB0.amount); break; case "exchange_rate": response = C.JSNumber_methods.compareTo$1(paymentA0.exchangeRate, paymentB0.exchangeRate); break; case "refunded": response = C.JSNumber_methods.compareTo$1(paymentA0.refunded, paymentB0.refunded); break; case "number": response = C.JSString_methods.compareTo$1(paymentA0.number.toLowerCase(), paymentB0.number.toLowerCase()); break; case "transaction_reference": response = C.JSString_methods.compareTo$1(paymentA0.transactionReference, paymentB0.transactionReference); break; case "date": response = J.compareTo$1$ns(paymentA0.date, paymentB0.date); break; case "private_notes": response = C.JSString_methods.compareTo$1(paymentA0.privateNotes.toLowerCase(), paymentB0.date.toLowerCase()); break; case "updated_at": response = C.JSInt_methods.compareTo$1(paymentA0.updatedAt, paymentB0.updatedAt); break; case "created_at": response = C.JSInt_methods.compareTo$1(paymentA0.createdAt, paymentB0.createdAt); break; case "archived_at": response = C.JSInt_methods.compareTo$1(paymentA0.archivedAt, paymentB0.archivedAt); break; case "status": response = C.JSString_methods.compareTo$1(paymentA0.statusId, paymentB0.statusId); break; case "custom1": response = C.JSString_methods.compareTo$1(paymentA0.customValue1.toLowerCase(), paymentB0.customValue1.toLowerCase()); break; case "custom2": response = C.JSString_methods.compareTo$1(paymentA0.customValue2.toLowerCase(), paymentB0.customValue2.toLowerCase()); break; case "custom3": response = C.JSString_methods.compareTo$1(paymentA0.customValue3.toLowerCase(), paymentB0.customValue3.toLowerCase()); break; case "custom4": response = C.JSString_methods.compareTo$1(paymentA0.customValue4.toLowerCase(), paymentB0.customValue4.toLowerCase()); break; case "invoice_number": t1 = paymentA0.get$invoiceId(); t2 = _this.invoiceMap._map$_map; t3 = J.getInterceptor$asx(t2); invoiceA = t3.$index(t2, t1); if (invoiceA == null) invoiceA = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); invoiceB = t3.$index(t2, paymentB0.get$invoiceId()); if (invoiceB == null) invoiceB = Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null); response = C.JSString_methods.compareTo$1(invoiceA.number.toLowerCase(), invoiceB.number.toLowerCase()); break; case "client": t1 = paymentA0.clientId; t2 = _this.clientMap._map$_map; t3 = J.getInterceptor$asx(t2); clientA = t3.$index(t2, t1); if (clientA == null) clientA = T.ClientEntity_ClientEntity(_null, _null, _null); clientB = t3.$index(t2, paymentB0.clientId); if (clientB == null) clientB = T.ClientEntity_ClientEntity(_null, _null, _null); response = C.JSString_methods.compareTo$1(clientA.displayName.toLowerCase(), clientB.displayName.toLowerCase()); break; case "assigned_to": t1 = paymentA0.assignedUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, paymentB0.assignedUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "created_by": t1 = paymentA0.createdUserId; t2 = userMap._map$_map; t3 = J.getInterceptor$asx(t2); userA = t3.$index(t2, t1); if (userA == null) userA = B.UserEntity_UserEntity(_null, _null, _null); userB = t3.$index(t2, paymentB0.createdUserId); if (userB == null) userB = B.UserEntity_UserEntity(_null, _null, _null); t1 = userA.get$fullName().length !== 0 ? userA.get$fullName() : userA.email; t2 = userB.get$fullName().length !== 0 ? userB.get$fullName() : userB.email; response = C.JSString_methods.compareTo$1(t1.toLowerCase(), t2.toLowerCase()); break; case "entity_state": if (!paymentA0.get$isArchived() && !paymentA0.isDeleted) t1 = "active"; else t1 = paymentA0.get$isArchived() ? _s8_ : "deleted"; stateA = T._$valueOf(t1); if (!paymentB0.get$isArchived() && !paymentB0.isDeleted) t1 = "active"; else t1 = paymentB0.get$isArchived() ? _s8_ : "deleted"; stateB = T._$valueOf(t1); response = C.JSString_methods.compareTo$1(stateA.name.toLowerCase(), stateB.name.toLowerCase()); break; default: P.print("## ERROR: sort by payment." + sortField + " is not implemented"); response = 0; break; } return response === 0 ? C.JSString_methods.compareTo$1(paymentB.number.toLowerCase(), paymentA.number.toLowerCase()) : response; }, $signature: 18 }; Q.memoizedPaymentStatsForClient_closure.prototype = { call$3: function(clientId, paymentMap, invoiceMap) { return Q.paymentStatsForClient(clientId, paymentMap, invoiceMap); }, $signature: 1360 }; Q.paymentStatsForClient_closure.prototype = { call$2: function(paymentId, payment) { if (payment.clientId === this.clientId) if (!payment.get$isArchived() && !payment.isDeleted) ++this._box_0.countActive; else if (payment.get$isArchived()) ++this._box_0.countArchived; }, $signature: 191 }; L.PaymentState.prototype = { loadPayments$1: function(clients) { return this.rebuild$1(new L.PaymentState_loadPayments_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new L.PaymentState_loadPayments_closure0(), new L.PaymentState_loadPayments_closure1(), type$.legacy_String, type$.legacy_PaymentEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; L.PaymentState_loadPayments_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; L.PaymentState_loadPayments_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1361 }; L.PaymentState_loadPayments_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 268 }; L.PaymentUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; L._$PaymentStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_mC7), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new L.PaymentStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_payment_state$_$this(); t6 = t5._payment_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._payment_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mC7)); break; case "list": t5 = result.get$_payment_state$_$this(); t6 = t5._payment_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._payment_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_UOT; }, get$wireName: function() { return "PaymentState"; } }; L._$PaymentUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_CxZ0)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new L.PaymentUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_PaymentEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_payment_state$_$this(); t4 = t3._payment_state$_editing; t3 = t4 == null ? t3._payment_state$_editing = new F.PaymentEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_CxZ0)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._payment_model$_$v = t4; break; case "listUIState": t3 = result.get$_payment_state$_$this(); t4 = t3._payment_state$_listUIState; t3 = t4 == null ? t3._payment_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_state$_$this()._payment_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_state$_$this()._payment_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_state$_$this()._payment_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_HTT; }, get$wireName: function() { return "PaymentUIState"; } }; L._$PaymentState.prototype = { rebuild$1: function(updates) { var t1 = new L.PaymentStateBuilder(); t1._payment_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof L.PaymentState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_state$__hashCode; return t1 == null ? _this._payment_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; L.PaymentStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_map; return t2 == null ? t1._payment_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentEntity) : t2; }, get$list: function(_) { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_list; return t2 == null ? t1._payment_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_payment_state$_$this: function() { var t1, t2, _this = this, $$v = _this._payment_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._payment_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._payment_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._payment_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._payment_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = L._$PaymentState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("PaymentState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; L._$PaymentUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof L.PaymentUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_state$__hashCode; return t1 == null ? _this._payment_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; L.PaymentUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_editing; return t2 == null ? t1._payment_state$_editing = new F.PaymentEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_payment_state$_$this(), t2 = t1._payment_state$_listUIState; return t2 == null ? t1._payment_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_payment_state$_$this: function() { var t1, t2, _this = this, $$v = _this._payment_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new F.PaymentEntityBuilder(); t2._payment_model$_$v = t1; t1 = t2; } _this._payment_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._payment_state$_listUIState = t2; _this._payment_state$_selectedId = $$v.selectedId; _this._payment_state$_forceSelected = $$v.forceSelected; _this._payment_state$_tabIndex = $$v.tabIndex; _this._payment_state$_saveCompleter = $$v.saveCompleter; _this._payment_state$_cancelCompleter = $$v.cancelCompleter; _this._payment_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "PaymentUIState", _$result = null; try { _$result0 = _this._payment_state$_$v; if (_$result0 == null) { t1 = _this._payment_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_payment_state$_$this()._payment_state$_selectedId; t4 = _this.get$_payment_state$_$this()._payment_state$_forceSelected; t5 = _this.get$_payment_state$_$this()._payment_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_payment_state$_$this()._payment_state$_saveCompleter; _$result0 = L._$PaymentUIState$_(_this.get$_payment_state$_$this()._payment_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._payment_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_state$_$v = t1; return _$result; } }; L._PaymentUIState_Object_EntityUIState.prototype = {}; D.ViewPaymentTermList.prototype = {$isStopLoading: 1}; D.ViewPaymentTerm.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$paymentTermId: function() { return this.paymentTermId; } }; D.EditPaymentTerm.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.UpdatePaymentTerm.prototype = {$isPersistUI: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.LoadPaymentTermRequest.prototype = {$isStartLoading: 1}; D.LoadPaymentTermFailure.prototype = { toString$0: function(_) { return "LoadPaymentTermFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; D.LoadPaymentTermSuccess.prototype = { toString$0: function(_) { return "LoadPaymentTermSuccess{paymentTerm: " + H.S(this.paymentTerm) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.LoadPaymentTermsRequest.prototype = {$isStartLoading: 1}; D.LoadPaymentTermsFailure.prototype = { toString$0: function(_) { return "LoadPaymentTermsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; D.LoadPaymentTermsSuccess.prototype = { toString$0: function(_) { return "LoadPaymentTermsSuccess{paymentTerms: " + H.S(this.paymentTerms) + "}"; }, $isStopLoading: 1 }; D.SavePaymentTermRequest.prototype = {$isStartSaving: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.SavePaymentTermSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.AddPaymentTermSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$paymentTerm: function() { return this.paymentTerm; } }; D.SavePaymentTermFailure.prototype = {$isStopSaving: 1}; D.ArchivePaymentTermsRequest.prototype = {$isStartSaving: 1}; D.ArchivePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; D.ArchivePaymentTermsFailure.prototype = {$isStopSaving: 1}; D.DeletePaymentTermsRequest.prototype = {$isStartSaving: 1}; D.DeletePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; D.DeletePaymentTermsFailure.prototype = {$isStopSaving: 1}; D.RestorePaymentTermsRequest.prototype = {$isStartSaving: 1}; D.RestorePaymentTermsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; D.RestorePaymentTermsFailure.prototype = {$isStopSaving: 1}; D.FilterPaymentTerms.prototype = {$isPersistUI: 1}; D.SortPaymentTerms.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; D.FilterPaymentTermsByState.prototype = {$isPersistUI: 1}; D.FilterPaymentTermsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; D.FilterPaymentTermsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; D.FilterPaymentTermsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; D.FilterPaymentTermsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; D.handlePaymentTermAction_closure.prototype = { call$1: function(paymentTerm) { return paymentTerm.get$id(paymentTerm); }, $signature: 41 }; D.StartPaymentTermMultiselect.prototype = {}; D.AddToPaymentTermMultiselect.prototype = {}; D.RemoveFromPaymentTermMultiselect.prototype = {}; D.ClearPaymentTermMultiselect.prototype = {}; E._editPaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s27_ = "/settings/payment_term_edit"; next.call$1(type$.legacy_EditPaymentTerm._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s27_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s27_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._viewPaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewPaymentTerm_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewPaymentTerm_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewPaymentTerm._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/payment_term_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/payment_term_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; E._viewPaymentTermList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s23_ = "/settings/payment_terms"; next.call$1(type$.legacy_ViewPaymentTermList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s23_, new E._viewPaymentTermList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._viewPaymentTermList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; E._archivePaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_ArchivePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = P.List_List$of(new H.MappedListIterable(t1, new E._archivePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new E._archivePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new E._archivePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._archivePaymentTerm__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentTermState.map._map$_map, id); }, $signature: 330 }; E._archivePaymentTerm__closure0.prototype = { call$1: function(paymentTerms) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.ArchivePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 371 }; E._archivePaymentTerm__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.ArchivePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._deletePaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_DeletePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = P.List_List$of(new H.MappedListIterable(t1, new E._deletePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new E._deletePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new E._deletePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._deletePaymentTerm__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentTermState.map._map$_map, id); }, $signature: 330 }; E._deletePaymentTerm__closure0.prototype = { call$1: function(paymentTerms) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.DeletePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 371 }; E._deletePaymentTerm__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.DeletePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._restorePaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevPaymentTerms; type$.legacy_RestorePaymentTermsRequest._as(dynamicAction); t1 = dynamicAction.paymentTermIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PaymentTermEntity*>"); prevPaymentTerms = P.List_List$of(new H.MappedListIterable(t1, new E._restorePaymentTerm__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new E._restorePaymentTerm__closure0(store, dynamicAction), type$.Null).catchError$1(new E._restorePaymentTerm__closure1(store, prevPaymentTerms, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._restorePaymentTerm__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).paymentTermState.map._map$_map, id); }, $signature: 330 }; E._restorePaymentTerm__closure0.prototype = { call$1: function(paymentTerms) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.RestorePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, $signature: 371 }; E._restorePaymentTerm__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.RestorePaymentTermsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._savePaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SavePaymentTermRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.paymentTerm).then$1$1(0, new E._savePaymentTerm__closure(dynamicAction, store), type$.Null).catchError$1(new E._savePaymentTerm__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._savePaymentTerm__closure.prototype = { call$1: function(paymentTerm) { var t1 = this.action, t2 = this.store; if (t1.paymentTerm.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new D.AddPaymentTermSuccess(paymentTerm)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new D.SavePaymentTermSuccess(paymentTerm)); t1.completer.complete$1(0, paymentTerm); }, $signature: 272 }; E._savePaymentTerm__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.SavePaymentTermFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._loadPaymentTerm_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadPaymentTerm._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.paymentTermId).then$1$1(0, new E._loadPaymentTerm__closure(store, dynamicAction), type$.Null).catchError$1(new E._loadPaymentTerm__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._loadPaymentTerm__closure.prototype = { call$1: function(paymentTerm) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermSuccess(paymentTerm)); this.action.completer.complete$1(0, null); }, $signature: 272 }; E._loadPaymentTerm__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; E._loadPaymentTerms_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadPaymentTerms._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new E._loadPaymentTerms__closure(store, dynamicAction), type$.Null).catchError$1(new E._loadPaymentTerms__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._loadPaymentTerms__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1365 }; E._loadPaymentTerms__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.LoadPaymentTermsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; L.paymentTermUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$paymentTermListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer12().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._payment_term_model$_$v = t4; t1 = $.$get$selectedIdReducer12().call$2(t2.selectedId, t3); b.get$_payment_term_state$_$this()._payment_term_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer12().call$2(t2.forceSelected, t3); b.get$_payment_term_state$_$this()._payment_term_state$_forceSelected = t3; return b; }, $signature: 1366 }; L.forceSelectedReducer_closure95.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1367 }; L.forceSelectedReducer_closure96.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1368 }; L.forceSelectedReducer_closure97.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1369 }; L.forceSelectedReducer_closure98.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1370 }; L.forceSelectedReducer_closure99.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1371 }; L.forceSelectedReducer_closure100.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1372 }; L.forceSelectedReducer_closure101.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1373 }; L.forceSelectedReducer_closure102.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1374 }; L.selectedIdReducer_closure193.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1375 }; L.selectedIdReducer_closure194.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1376 }; L.selectedIdReducer_closure195.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_paymentTerm ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; L.selectedIdReducer_closure196.prototype = { call$2: function(selectedId, action) { return action.get$paymentTermId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; L.selectedIdReducer_closure197.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$paymentTerm()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; L.selectedIdReducer_closure198.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; L.selectedIdReducer_closure199.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; L.selectedIdReducer_closure200.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1377 }; L.selectedIdReducer_closure201.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1378 }; L.selectedIdReducer_closure202.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1379 }; L.selectedIdReducer_closure203.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1380 }; L.selectedIdReducer_closure204.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1381 }; L.selectedIdReducer_closure205.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1382 }; L.selectedIdReducer_closure206.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1383 }; L.editingReducer_closure62.prototype = { call$2: function(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1384 }; L.editingReducer_closure63.prototype = { call$2: function(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1385 }; L.editingReducer_closure64.prototype = { call$2: function(paymentTerms, action) { return J.$index$asx(action.paymentTerms, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1386 }; L.editingReducer_closure65.prototype = { call$2: function(paymentTerm, action) { return action.paymentTerm.rebuild$1(new L.editingReducer__closure24()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1387 }; L.editingReducer__closure24.prototype = { call$1: function(b) { b.get$_payment_term_model$_$this()._payment_term_model$_isChanged = true; return b; }, $signature: 624 }; L._viewPaymentTermList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._filterPaymentTermsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterPaymentTermsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterPaymentTermsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterPaymentTermsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterPaymentTermsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; L._filterPaymentTermsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterPaymentTerms_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.paymentTermListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._sortPaymentTerms_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; L._startListMultiselect_closure12.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; L._addToListMultiselect_closure12.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._removeFromListMultiselect_closure12.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._clearListMultiselect_closure12.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; L._archivePaymentTermSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 370 }; L._deletePaymentTermSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 370 }; L._restorePaymentTermSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.paymentTerms), t2 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_payment_term_state$_$this(); t5 = t4._payment_term_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._payment_term_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 370 }; L._addPaymentTerm_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 200 }; L._updatePaymentTerm_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 200 }; L._setLoadedPaymentTerm_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.paymentTerm; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 200 }; L._setLoadedCompany_closure7.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.paymentTerms, new L._setLoadedCompany__closure7(), new L._setLoadedCompany__closure8(), type$.legacy_String, type$.legacy_PaymentTermEntity)); return b; }, $signature: 200 }; L._setLoadedCompany__closure7.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; L._setLoadedCompany__closure8.prototype = { call$1: function(item) { return item; }, $signature: 623 }; L._setLoadedCompany_closure8.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 200 }; V.memoizedDropdownPaymentTermList_closure.prototype = { call$2: function(paymentTermMap, paymentTermList) { return V.dropdownPaymentTermsSelector(paymentTermMap, paymentTermList); }, $signature: 1392 }; V.dropdownPaymentTermsSelector_closure.prototype = { call$1: function(paymentTermId) { var paymentTerm = J.$index$asx(this.paymentTermMap._map$_map, paymentTermId), t1 = this.numDays, t2 = paymentTerm.numDays; if (t1.containsKey$1(0, t2)) return false; t1.$indexSet(0, t2, true); return !paymentTerm.get$isArchived() && !paymentTerm.isDeleted; }, $signature: 16 }; V.dropdownPaymentTermsSelector_closure0.prototype = { call$2: function(paymentTermAId, paymentTermBId) { var t1 = this.paymentTermMap._map$_map, t2 = J.getInterceptor$asx(t1), paymentTermA = t2.$index(t1, paymentTermAId), paymentTermB = t2.$index(t1, paymentTermBId); return C.JSInt_methods.compareTo$1(paymentTermA.numDays, paymentTermB.numDays); }, $signature: 18 }; V.memoizedFilteredPaymentTermList_closure.prototype = { call$4: function(selectionState, paymentTermMap, paymentTermList, paymentTermListState) { return V.filteredPaymentTermsSelector(selectionState, paymentTermMap, paymentTermList, paymentTermListState); }, $signature: 1393 }; V.filteredPaymentTermsSelector_closure.prototype = { call$1: function(paymentTermId) { var t1, paymentTerm = J.$index$asx(this.paymentTermMap._map$_map, paymentTermId); if (paymentTerm.id === this.selectionState.selectedId) return true; t1 = this.paymentTermListState; if (!paymentTerm.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo(["" + paymentTerm.numDays], type$.JSArray_legacy_String), t1); }, $signature: 16 }; V.filteredPaymentTermsSelector_closure0.prototype = { call$2: function(paymentTermAId, paymentTermBId) { var t1 = this.paymentTermMap._map$_map, t2 = J.getInterceptor$asx(t1), paymentTermA = t2.$index(t1, paymentTermAId), paymentTermB = t2.$index(t1, paymentTermBId); this.paymentTermListState.toString; return C.JSInt_methods.compareTo$1(paymentTermA.numDays, paymentTermB.numDays); }, $signature: 18 }; N.PaymentTermState.prototype = { loadPaymentTerms$1: function(clients) { return this.rebuild$1(new N.PaymentTermState_loadPaymentTerms_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new N.PaymentTermState_loadPaymentTerms_closure0(), new N.PaymentTermState_loadPaymentTerms_closure1(), type$.legacy_String, type$.legacy_PaymentTermEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; N.PaymentTermState_loadPaymentTerms_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; N.PaymentTermState_loadPaymentTerms_closure1.prototype = { call$1: function(item) { return item; }, $signature: 623 }; N.PaymentTermState_loadPaymentTerms_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 200 }; N.PaymentTermUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; N._$PaymentTermStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_weg), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new N.PaymentTermStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_payment_term_state$_$this(); t6 = t5._payment_term_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._payment_term_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_weg)); break; case "list": t5 = result.get$_payment_term_state$_$this(); t6 = t5._payment_term_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._payment_term_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_LCF; }, get$wireName: function() { return "PaymentTermState"; } }; N._$PaymentTermUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_y87)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new N.PaymentTermUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_PaymentTermEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_payment_term_state$_$this(); t4 = t3._payment_term_state$_editing; t3 = t4 == null ? t3._payment_term_state$_editing = new X.PaymentTermEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_y87)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._payment_term_model$_$v = t4; break; case "listUIState": t3 = result.get$_payment_term_state$_$this(); t4 = t3._payment_term_state$_listUIState; t3 = t4 == null ? t3._payment_term_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_payment_term_state$_$this()._payment_term_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_payment_term_state$_$this()._payment_term_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_payment_term_state$_$this()._payment_term_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_oyU; }, get$wireName: function() { return "PaymentTermUIState"; } }; N._$PaymentTermState.prototype = { rebuild$1: function(updates) { var t1 = new N.PaymentTermStateBuilder(); t1._payment_term_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof N.PaymentTermState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_term_state$__hashCode; return t1 == null ? _this._payment_term_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; N.PaymentTermStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_map; return t2 == null ? t1._payment_term_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTermEntity) : t2; }, get$list: function(_) { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_list; return t2 == null ? t1._payment_term_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_payment_term_state$_$this: function() { var t1, t2, _this = this, $$v = _this._payment_term_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._payment_term_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._payment_term_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._payment_term_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._payment_term_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = N._$PaymentTermState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("PaymentTermState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_term_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; N._$PaymentTermUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof N.PaymentTermUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._payment_term_state$__hashCode; return t1 == null ? _this._payment_term_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PaymentTermUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; N.PaymentTermUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_editing; return t2 == null ? t1._payment_term_state$_editing = new X.PaymentTermEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_payment_term_state$_$this(), t2 = t1._payment_term_state$_listUIState; return t2 == null ? t1._payment_term_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_payment_term_state$_$this: function() { var t1, t2, _this = this, $$v = _this._payment_term_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new X.PaymentTermEntityBuilder(); t2._payment_term_model$_$v = t1; t1 = t2; } _this._payment_term_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._payment_term_state$_listUIState = t2; _this._payment_term_state$_selectedId = $$v.selectedId; _this._payment_term_state$_forceSelected = $$v.forceSelected; _this._payment_term_state$_tabIndex = $$v.tabIndex; _this._payment_term_state$_saveCompleter = $$v.saveCompleter; _this._payment_term_state$_cancelCompleter = $$v.cancelCompleter; _this._payment_term_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s18_ = "PaymentTermUIState", _$result = null; try { _$result0 = _this._payment_term_state$_$v; if (_$result0 == null) { t1 = _this._payment_term_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_payment_term_state$_$this()._payment_term_state$_selectedId; t4 = _this.get$_payment_term_state$_$this()._payment_term_state$_forceSelected; t5 = _this.get$_payment_term_state$_$this()._payment_term_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "tabIndex")); t6 = _this.get$_payment_term_state$_$this()._payment_term_state$_saveCompleter; _$result0 = N._$PaymentTermUIState$_(_this.get$_payment_term_state$_$this()._payment_term_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._payment_term_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s18_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._payment_term_state$_$v = t1; return _$result; } }; N._PaymentTermUIState_Object_EntityUIState.prototype = {}; Z.ViewProductList.prototype = {$isStopLoading: 1}; Z.ViewProduct.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Z.EditProduct.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$product: function(receiver) { return this.product; } }; Z.UpdateProduct.prototype = {$isPersistUI: 1, get$product: function(receiver) { return this.product; } }; Z.LoadProductRequest.prototype = {$isStartLoading: 1}; Z.LoadProduct.prototype = {}; Z.LoadProductSuccess.prototype = { toString$0: function(_) { return "LoadProductSuccess{product: " + H.S(this.product) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$product: function(receiver) { return this.product; } }; Z.LoadProductFailure.prototype = { toString$0: function(_) { return "LoadProductFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Z.LoadProducts.prototype = {}; Z.LoadProductsRequest.prototype = {$isStartLoading: 1}; Z.LoadProductsFailure.prototype = { toString$0: function(_) { return "LoadProductsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Z.LoadProductsSuccess.prototype = { toString$0: function(_) { return "LoadProductsSuccess{products: " + H.S(this.products) + "}"; }, $isPersistData: 1, $isStopLoading: 1 }; Z.SaveProductRequest.prototype = {$isStartSaving: 1, get$product: function(receiver) { return this.product; } }; Z.SaveProductSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$product: function(receiver) { return this.product; } }; Z.AddProductSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$product: function(receiver) { return this.product; } }; Z.SaveProductFailure.prototype = {$isStopSaving: 1}; Z.ArchiveProductsRequest.prototype = {$isStartSaving: 1}; Z.ArchiveProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Z.ArchiveProductsFailure.prototype = {$isStopSaving: 1}; Z.DeleteProductsRequest.prototype = {$isStartSaving: 1}; Z.DeleteProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Z.DeleteProductsFailure.prototype = {$isStopSaving: 1}; Z.RestoreProductsRequest.prototype = {$isStartSaving: 1}; Z.RestoreProductsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Z.RestoreProductsFailure.prototype = {$isStopSaving: 1}; Z.FilterProducts.prototype = {$isPersistUI: 1}; Z.SortProducts.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Z.FilterProductsByState.prototype = {$isPersistUI: 1}; Z.FilterProductsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Z.FilterProductsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Z.FilterProductsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Z.FilterProductsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Z.handleProductAction_closure.prototype = { call$1: function(product) { return product.get$id(product); }, $signature: 41 }; Z.handleProductAction_closure0.prototype = { call$1: function(b) { var t1 = this.productIds; b.get$lineItems().addAll$1(0, new H.MappedListIterable(t1, new Z.handleProductAction__closure(this.state, this.invoice), H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceItemEntity*>"))); return b; }, $signature: 11 }; Z.handleProductAction__closure.prototype = { call$1: function(productId) { var t4, t5, t1 = this.state, t2 = t1.userCompanyStates, t3 = t1.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).userCompany.company; t3 = J.$index$asx(t4.$index(t2, t3).productState.map._map$_map, productId); return O.convertProductToInvoiceItem(null, t5, t1.staticState.currencyMap, this.invoice, t3); }, $signature: 1394 }; Z.StartProductMultiselect.prototype = {}; Z.AddToProductMultiselect.prototype = {}; Z.RemoveFromProductMultiselect.prototype = {}; Z.ClearProductMultiselect.prototype = {}; Z.SaveProductDocumentRequest.prototype = {$isStartSaving: 1, get$product: function(receiver) { return this.product; } }; Z.SaveProductDocumentFailure.prototype = {$isStopSaving: 1}; Z.UpdateProductTab.prototype = {$isPersistUI: 1}; E._editProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s13_ = "/product/edit"; next.call$1(type$.legacy_EditProduct._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._viewProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewProduct_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewProduct_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewProduct._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/product/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/product/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; E._viewProductList_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/product"; next.call$1(type$.legacy_ViewProductList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new E._viewProductList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._viewProductList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; E._archiveProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_ArchiveProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = P.List_List$of(new H.MappedListIterable(t1, new E._archiveProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new E._archiveProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new E._archiveProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._archiveProduct__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).productState.map._map$_map, id); }, $signature: 301 }; E._archiveProduct__closure0.prototype = { call$1: function(products) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.ArchiveProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 369 }; E._archiveProduct__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.ArchiveProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 8 }; E._deleteProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_DeleteProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = P.List_List$of(new H.MappedListIterable(t1, new E._deleteProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new E._deleteProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new E._deleteProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._deleteProduct__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).productState.map._map$_map, id); }, $signature: 301 }; E._deleteProduct__closure0.prototype = { call$1: function(products) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.DeleteProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 369 }; E._deleteProduct__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.DeleteProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._restoreProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProducts; type$.legacy_RestoreProductsRequest._as(dynamicAction); t1 = dynamicAction.productIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProductEntity*>"); prevProducts = P.List_List$of(new H.MappedListIterable(t1, new E._restoreProduct__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new E._restoreProduct__closure0(store, dynamicAction), type$.Null).catchError$1(new E._restoreProduct__closure1(store, prevProducts, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._restoreProduct__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).productState.map._map$_map, id); }, $signature: 301 }; E._restoreProduct__closure0.prototype = { call$1: function(products) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.RestoreProductsSuccess(products)); this.action.completer.complete$1(0, null); }, $signature: 369 }; E._restoreProduct__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.RestoreProductsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._saveProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveProductRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.product).then$1$1(0, new E._saveProduct__closure(dynamicAction, store), type$.Null).catchError$1(new E._saveProduct__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._saveProduct__closure.prototype = { call$1: function(product) { var t1 = this.action, t2 = this.store; if (t1.product.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Z.AddProductSuccess(product)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Z.SaveProductSuccess(product)); t1.completer.complete$1(0, product); }, $signature: 226 }; E._saveProduct__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SaveProductFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E._loadProduct_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadProduct._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.LoadProductRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.productId).then$1$1(0, new E._loadProduct__closure(store, dynamicAction), type$.Null).catchError$1(new E._loadProduct__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._loadProduct__closure.prototype = { call$1: function(product) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.LoadProductSuccess(product)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 226 }; E._loadProduct__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.LoadProductFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; E._loadProducts_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadProducts._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.LoadProductsRequest()); this.repository.loadList$1(J.get$credentials$z(store.get$_store$_state())).then$1$1(0, new E._loadProducts__closure(store, dynamicAction), type$.Null).catchError$1(new E._loadProducts__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._loadProducts__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.LoadProductsSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.LoadInvoices()); }, $signature: 1397 }; E._loadProducts__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.LoadProductsFailure(error)); this.action.toString; }, $signature: 3 }; E._saveDocument_closure11.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveProductDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.product, dynamicAction.multipartFile).then$1$1(0, new E._saveDocument__closure23(store, dynamicAction), type$.Null).catchError$1(new E._saveDocument__closure24(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.SaveProductDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; E._saveDocument__closure23.prototype = { call$1: function(product) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SaveProductSuccess(product)); this.action.completer.complete$1(0, null); }, $signature: 226 }; E._saveDocument__closure24.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SaveProductDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; B.productUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$productListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer22().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._product_model$_$v = t4; t1 = $.$get$tabIndexReducer11().call$2(t2.tabIndex, t3); b.get$_product_state$_$this()._product_state$_tabIndex = t1; t1 = $.$get$selectedIdReducer22().call$2(t2.selectedId, t3); b.get$_product_state$_$this()._product_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer22().call$2(t2.forceSelected, t3); b.get$_product_state$_$this()._product_state$_forceSelected = t3; return b; }, $signature: 1398 }; B.forceSelectedReducer_closure175.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1399 }; B.forceSelectedReducer_closure176.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1400 }; B.forceSelectedReducer_closure177.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1401 }; B.forceSelectedReducer_closure178.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1402 }; B.forceSelectedReducer_closure179.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1403 }; B.forceSelectedReducer_closure180.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1404 }; B.forceSelectedReducer_closure181.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1405 }; B.forceSelectedReducer_closure182.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1406 }; B.tabIndexReducer_closure23.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1407 }; B.tabIndexReducer_closure24.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; B.editingReducer_closure126.prototype = { call$2: function(product, action) { return action.product.rebuild$1(new B.editingReducer__closure49()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1408 }; B.editingReducer__closure49.prototype = { call$1: function(b) { b.get$_product_model$_$this()._product_model$_isChanged = true; return b; }, $signature: 170 }; B.editingReducer_closure127.prototype = { call$2: function(products, action) { return J.$index$asx(action.products, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1409 }; B.editingReducer_closure128.prototype = { call$2: function(products, action) { return J.$index$asx(action.products, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1410 }; B.editingReducer_closure129.prototype = { call$2: function(products, action) { return J.$index$asx(action.products, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1411 }; B.selectedIdReducer_closure352.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1412 }; B.selectedIdReducer_closure353.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1413 }; B.selectedIdReducer_closure354.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_product ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; B.selectedIdReducer_closure355.prototype = { call$2: function(selectedId, action) { return action.productId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1414 }; B.selectedIdReducer_closure356.prototype = { call$2: function(selectedId, action) { return action.product.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1415 }; B.selectedIdReducer_closure357.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; B.selectedIdReducer_closure358.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; B.selectedIdReducer_closure359.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1416 }; B.selectedIdReducer_closure360.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1417 }; B.selectedIdReducer_closure361.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1418 }; B.selectedIdReducer_closure362.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1419 }; B.selectedIdReducer_closure363.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1420 }; B.selectedIdReducer_closure364.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1421 }; B.selectedIdReducer_closure365.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1422 }; B._viewClientList_closure0.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; B._filterProductsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; B._filterProductsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._filterProductsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; B._filterProductsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._filterProductsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; B._filterProductsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._filterProductsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; B._filterProductsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._filterProductsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; B._filterProductsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._filterProducts_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.productListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; B._sortProducts_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; B._startListMultiselect_closure22.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; B._addToListMultiselect_closure22.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._removeFromListMultiselect_closure22.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; B._clearListMultiselect_closure22.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; B._archiveProductSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 366 }; B._deleteProductSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 366 }; B._restoreProductSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.products), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_product_state$_$this(); t5 = t4._product_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._product_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 366 }; B._addProduct_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.product, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 278 }; B._updateProduct_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.product; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 278 }; B._setLoadedProduct_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.product; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 278 }; O.convertProductToInvoiceItem_closure.prototype = { call$1: function(b) { var t2, t3, t4, t1 = this.product; b.get$_invoice_model$_$this()._invoice_model$_productKey = t1.productKey; b.get$_invoice_model$_$this()._invoice_model$_notes = t1.notes; t2 = this._box_0.cost; b.get$_invoice_model$_$this()._invoice_model$_cost = t2; b.get$_invoice_model$_$this()._productCost = t1.cost; t2 = t1.quantity; if (t2 === 0) t2 = 1; b.get$_invoice_model$_$this()._invoice_model$_quantity = t2; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1.customValue4; t2 = this.company.numberOfItemTaxRates; t3 = t2 >= 1; t4 = t3 ? t1.taxName1 : ""; b.get$_invoice_model$_$this()._taxName1 = t4; t3 = t3 ? t1.taxRate1 : 0; b.get$_invoice_model$_$this()._taxRate1 = t3; t3 = t2 >= 2; t4 = t3 ? t1.taxName2 : ""; b.get$_invoice_model$_$this()._taxName2 = t4; t3 = t3 ? t1.taxRate2 : 0; b.get$_invoice_model$_$this()._taxRate2 = t3; t2 = t2 >= 3; t3 = t2 ? t1.taxName3 : ""; b.get$_invoice_model$_$this()._taxName3 = t3; t1 = t2 ? t1.taxRate3 : 0; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 54 }; O.memoizedDropdownProductList_closure.prototype = { call$3: function(productMap, productList, userMap) { return O.dropdownProductsSelector(productMap, productList, userMap); }, $signature: 1425 }; O.dropdownProductsSelector_closure.prototype = { call$1: function(productId) { var t1 = J.$index$asx(this.productMap._map$_map, productId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; O.dropdownProductsSelector_closure0.prototype = { call$2: function(productAId, productBId) { var t1 = this.productMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, productAId).compareTo$4(0, t2.$index(t1, productBId), "product_key", true, this.userMap); }, $signature: 18 }; O.memoizedProductList_closure.prototype = { call$1: function(productMap) { return O.productList(productMap); }, $signature: 1426 }; O.productList_closure.prototype = { call$1: function(productId) { var t1 = J.$index$asx(this.productMap._map$_map, productId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; O.productList_closure0.prototype = { call$2: function(idA, idB) { var t1 = this.productMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).productKey, t2.$index(t1, idB).productKey); }, $signature: 18 }; O.memoizedFilteredProductList_closure.prototype = { call$5: function(selectionState, productMap, productList, productListState, userMap) { return O.filteredProductsSelector(selectionState, productMap, productList, productListState, userMap); }, $signature: 1427 }; O.filteredProductsSelector_closure.prototype = { call$1: function(productId) { var t1, t2, t3, product = J.$index$asx(this.productMap._map$_map, productId); if (product.id === this.selectionState.selectedId) return true; t1 = this.productListState; if (!product.matchesStates$1(t1.stateFilters)) return false; if (!product.matchesFilter$1(t1.filter)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, product.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, product.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, product.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, product.customValue4)) return false; } } } return true; }, $signature: 16 }; O.filteredProductsSelector_closure0.prototype = { call$2: function(productAId, productBId) { var t1 = this.productMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = this.productListState; return t2.$index(t1, productAId).compareTo$4(0, t2.$index(t1, productBId), t3.sortField, t3.sortAscending, this.userMap); }, $signature: 18 }; Y.ProductState.prototype = { $get$1: function(_, productId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, productId)) return t2.$index(t1, productId); else return A.ProductEntity_ProductEntity(productId, null); }, loadProducts$1: function(clients) { return this.rebuild$1(new Y.ProductState_loadProducts_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new Y.ProductState_loadProducts_closure0(), new Y.ProductState_loadProducts_closure1(), type$.legacy_String, type$.legacy_ProductEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y.ProductState_loadProducts_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Y.ProductState_loadProducts_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1428 }; Y.ProductState_loadProducts_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 278 }; Y.ProductUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Y._$ProductStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_woD), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Y.ProductStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ProductEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_product_state$_$this(); t6 = t5._product_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._product_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_woD)); break; case "list": t5 = result.get$_product_state$_$this(); t6 = t5._product_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._product_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_E4Q; }, get$wireName: function() { return "ProductState"; } }; Y._$ProductUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_Art)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Y.ProductUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ProductEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_product_state$_$this(); t4 = t3._product_state$_editing; t3 = t4 == null ? t3._product_state$_editing = new A.ProductEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_Art)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._product_model$_$v = t4; break; case "listUIState": t3 = result.get$_product_state$_$this(); t4 = t3._product_state$_listUIState; t3 = t4 == null ? t3._product_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_product_state$_$this()._product_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_product_state$_$this()._product_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_product_state$_$this()._product_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_6H2; }, get$wireName: function() { return "ProductUIState"; } }; Y._$ProductState.prototype = { rebuild$1: function(updates) { var t1 = new Y.ProductStateBuilder(); t1._product_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Y.ProductState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._product_state$__hashCode; return t1 == null ? _this._product_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Y.ProductStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_map; return t2 == null ? t1._product_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProductEntity) : t2; }, get$list: function(_) { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_list; return t2 == null ? t1._product_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_product_state$_$this: function() { var t1, t2, _this = this, $$v = _this._product_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._product_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._product_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._product_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._product_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Y._$ProductState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ProductState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._product_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y._$ProductUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Y.ProductUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._product_state$__hashCode; return t1 == null ? _this._product_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProductUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Y.ProductUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_editing; return t2 == null ? t1._product_state$_editing = new A.ProductEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_product_state$_$this(), t2 = t1._product_state$_listUIState; return t2 == null ? t1._product_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_product_state$_$this: function() { var t1, t2, _this = this, $$v = _this._product_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ProductEntityBuilder(); t2._product_model$_$v = t1; t1 = t2; } _this._product_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._product_state$_listUIState = t2; _this._product_state$_selectedId = $$v.selectedId; _this._product_state$_forceSelected = $$v.forceSelected; _this._product_state$_tabIndex = $$v.tabIndex; _this._product_state$_saveCompleter = $$v.saveCompleter; _this._product_state$_cancelCompleter = $$v.cancelCompleter; _this._product_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ProductUIState", _$result = null; try { _$result0 = _this._product_state$_$v; if (_$result0 == null) { t1 = _this._product_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_product_state$_$this()._product_state$_selectedId; t4 = _this.get$_product_state$_$this()._product_state$_forceSelected; t5 = _this.get$_product_state$_$this()._product_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_product_state$_$this()._product_state$_saveCompleter; _$result0 = Y._$ProductUIState$_(_this.get$_product_state$_$this()._product_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._product_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._product_state$_$v = t1; return _$result; } }; Y._ProductUIState_Object_EntityUIState.prototype = {}; M.ViewProjectList.prototype = {$isStopLoading: 1}; M.ViewProject.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; M.EditProject.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$project: function() { return this.project; } }; M.UpdateProject.prototype = {$isPersistUI: 1, get$project: function() { return this.project; } }; M.LoadProject.prototype = {}; M.LoadProjects.prototype = {}; M.LoadProjectRequest.prototype = {$isStartLoading: 1}; M.LoadProjectFailure.prototype = { toString$0: function(_) { return "LoadProjectFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; M.LoadProjectSuccess.prototype = { toString$0: function(_) { return "LoadProjectSuccess{project: " + H.S(this.project) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$project: function() { return this.project; } }; M.LoadProjectsRequest.prototype = {$isStartLoading: 1}; M.LoadProjectsFailure.prototype = { toString$0: function(_) { return "LoadProjectsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; M.LoadProjectsSuccess.prototype = { toString$0: function(_) { return "LoadProjectsSuccess{projects: " + H.S(this.projects) + "}"; }, $isStopLoading: 1 }; M.SaveProjectRequest.prototype = {$isStartSaving: 1, get$project: function() { return this.project; } }; M.SaveProjectSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$project: function() { return this.project; } }; M.AddProjectSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$project: function() { return this.project; } }; M.SaveProjectFailure.prototype = {$isStopSaving: 1}; M.ArchiveProjectRequest.prototype = {$isStartSaving: 1}; M.ArchiveProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; M.ArchiveProjectFailure.prototype = {$isStopSaving: 1}; M.DeleteProjectRequest.prototype = {$isStartSaving: 1}; M.DeleteProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; M.DeleteProjectFailure.prototype = {$isStopSaving: 1}; M.RestoreProjectRequest.prototype = {$isStartSaving: 1}; M.RestoreProjectSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; M.RestoreProjectFailure.prototype = {$isStopSaving: 1}; M.FilterProjects.prototype = {$isPersistUI: 1}; M.SortProjects.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; M.FilterProjectsByState.prototype = {$isPersistUI: 1}; M.FilterProjectsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; M.FilterProjectsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; M.FilterProjectsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; M.FilterProjectsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; M.handleProjectAction_closure.prototype = { call$1: function(project) { return project.get$id(project); }, $signature: 41 }; M.handleProjectAction_closure0.prototype = { call$1: function(b) { var t1 = this.project; b.get$_task_model$_$this()._task_model$_projectId = t1.id; b.get$_task_model$_$this()._task_model$_clientId = t1.clientId; return b; }, $signature: 46 }; M.handleProjectAction_closure1.prototype = { call$1: function(project) { C.JSArray_methods.addAll$1(this.items, Q.convertProjectToInvoiceItem(this.context, project)); }, $signature: 365 }; M.handleProjectAction_closure2.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.items); return b; }, $signature: 11 }; M.handleProjectAction_closure3.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_projectId = this.project.id; return b; }, $signature: 23 }; M.StartProjectMultiselect.prototype = {}; M.AddToProjectMultiselect.prototype = {}; M.RemoveFromProjectMultiselect.prototype = {}; M.ClearProjectMultiselect.prototype = {}; M.SaveProjectDocumentRequest.prototype = {$isStartSaving: 1, get$project: function() { return this.project; } }; M.SaveProjectDocumentFailure.prototype = {$isStopSaving: 1}; M.UpdateProjectTab.prototype = {$isPersistUI: 1}; Q._editProject_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s13_ = "/project/edit"; next.call$1(type$.legacy_EditProject._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s13_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewProject_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewProject_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewProject_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewProject._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/project/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/project/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; Q._viewProjectList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s8_ = "/project"; next.call$1(type$.legacy_ViewProjectList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new Q._viewProjectList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewProjectList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; Q._archiveProject_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_ArchiveProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = P.List_List$of(new H.MappedListIterable(t1, new Q._archiveProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new Q._archiveProject__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._archiveProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._archiveProject__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).projectState.map._map$_map, id); }, $signature: 254 }; Q._archiveProject__closure0.prototype = { call$1: function(projects) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ArchiveProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 364 }; Q._archiveProject__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ArchiveProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._deleteProject_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_DeleteProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = P.List_List$of(new H.MappedListIterable(t1, new Q._deleteProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new Q._deleteProject__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._deleteProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._deleteProject__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).projectState.map._map$_map, id); }, $signature: 254 }; Q._deleteProject__closure0.prototype = { call$1: function(projects) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.DeleteProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 364 }; Q._deleteProject__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.DeleteProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._restoreProject_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevProjects; type$.legacy_RestoreProjectRequest._as(dynamicAction); t1 = dynamicAction.projectIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ProjectEntity*>"); prevProjects = P.List_List$of(new H.MappedListIterable(t1, new Q._restoreProject__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new Q._restoreProject__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._restoreProject__closure1(store, prevProjects, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._restoreProject__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).projectState.map._map$_map, id); }, $signature: 254 }; Q._restoreProject__closure0.prototype = { call$1: function(projects) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RestoreProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, $signature: 364 }; Q._restoreProject__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RestoreProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._saveProject_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveProjectRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.project).then$1$1(0, new Q._saveProject__closure(dynamicAction, store), type$.Null).catchError$1(new Q._saveProject__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveProject__closure.prototype = { call$1: function(project) { var t1 = this.action, t2 = this.store; if (t1.project.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.AddProjectSuccess(project)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.SaveProjectSuccess(project)); t1.completer.complete$1(0, project); t1 = t2.get$_store$_state().uiState.projectUIState.saveCompleter; if (t1 != null) t1.complete$1(0, project); }, $signature: 228 }; Q._saveProject__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SaveProjectFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._loadProject_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadProject._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.LoadProjectRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.projectId).then$1$1(0, new Q._loadProject__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadProject__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadProject__closure.prototype = { call$1: function(project) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.LoadProjectSuccess(project)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 228 }; Q._loadProject__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.LoadProjectFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; Q._loadProjects_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadProjects._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.LoadProjectsRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new Q._loadProjects__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadProjects__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadProjects__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.LoadProjectsSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.LoadTasks()); }, $signature: 1432 }; Q._loadProjects__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.LoadProjectsFailure(error)); this.action.toString; }, $signature: 3 }; Q._saveDocument_closure5.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveProjectDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.project, dynamicAction.multipartFile).then$1$1(0, new Q._saveDocument__closure11(store, dynamicAction), type$.Null).catchError$1(new Q._saveDocument__closure12(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.SaveProjectDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveDocument__closure11.prototype = { call$1: function(project) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SaveProjectSuccess(project)); this.action.completer.complete$1(0, null); }, $signature: 228 }; Q._saveDocument__closure12.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SaveProjectDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; G.projectUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$projectListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer1().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._project_model$_$v = t4; t1 = $.$get$selectedIdReducer1().call$2(t2.selectedId, t3); b.get$_project_state$_$this()._project_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer1().call$2(t2.forceSelected, t3); b.get$_project_state$_$this()._project_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer1().call$2(t2.tabIndex, t3); b.get$_project_state$_$this()._project_state$_tabIndex = t1; t1 = $.$get$saveCompleterReducer().call$2(t2.saveCompleter, t3); b.get$_project_state$_$this()._project_state$_saveCompleter = t1; t3 = $.$get$cancelCompleterReducer().call$2(t2.cancelCompleter, t3); b.get$_project_state$_$this()._project_state$_cancelCompleter = t3; return b; }, $signature: 1433 }; G.forceSelectedReducer_closure15.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1434 }; G.forceSelectedReducer_closure16.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1435 }; G.forceSelectedReducer_closure17.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1436 }; G.forceSelectedReducer_closure18.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1437 }; G.forceSelectedReducer_closure19.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1438 }; G.forceSelectedReducer_closure20.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1439 }; G.forceSelectedReducer_closure21.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1440 }; G.forceSelectedReducer_closure22.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1441 }; G.tabIndexReducer_closure3.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1442 }; G.tabIndexReducer_closure4.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; G.saveCompleterReducer_closure.prototype = { call$2: function(completer, action) { return action.completer; }, "call*": "call$2", $requiredArgCount: 2, $signature: 620 }; G.cancelCompleterReducer_closure.prototype = { call$2: function(completer, action) { return action.cancelCompleter; }, "call*": "call$2", $requiredArgCount: 2, $signature: 620 }; G.selectedIdReducer_closure34.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1444 }; G.selectedIdReducer_closure35.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1445 }; G.selectedIdReducer_closure36.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_project ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; G.selectedIdReducer_closure37.prototype = { call$2: function(selectedId, action) { return action.projectId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1446 }; G.selectedIdReducer_closure38.prototype = { call$2: function(selectedId, action) { return action.project.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1447 }; G.selectedIdReducer_closure39.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; G.selectedIdReducer_closure40.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; G.selectedIdReducer_closure41.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1448 }; G.selectedIdReducer_closure42.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1449 }; G.selectedIdReducer_closure43.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1450 }; G.selectedIdReducer_closure44.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1451 }; G.selectedIdReducer_closure45.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1452 }; G.selectedIdReducer_closure46.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1453 }; G.selectedIdReducer_closure47.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1454 }; G.selectedIdReducer_closure48.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_project ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; G.editingReducer_closure14.prototype = { call$2: function(projects, action) { return J.$index$asx(action.projects, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1455 }; G.editingReducer_closure15.prototype = { call$2: function(projects, action) { return J.$index$asx(action.projects, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1456 }; G.editingReducer_closure16.prototype = { call$2: function(projects, action) { return J.$index$asx(action.projects, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1457 }; G.editingReducer_closure17.prototype = { call$2: function(project, action) { return action.project.rebuild$1(new G.editingReducer__closure7()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1458 }; G.editingReducer__closure7.prototype = { call$1: function(b) { b.get$_project_model$_$this()._project_model$_isChanged = true; return b; }, $signature: 168 }; G._viewProjectList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; G._filterProjectsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; G._filterProjectsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._filterProjectsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; G._filterProjectsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._filterProjectsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; G._filterProjectsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._filterProjectsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; G._filterProjectsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._filterProjectsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; G._filterProjectsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._filterProjects_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.projectListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; G._sortProjects_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; G._startListMultiselect_closure1.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; G._addToListMultiselect_closure1.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._removeFromListMultiselect_closure1.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; G._clearListMultiselect_closure1.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; G._archiveProjectSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 363 }; G._deleteProjectSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 363 }; G._restoreProjectSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.projects), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_project_state$_$this(); t5 = t4._project_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._project_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 363 }; G._addProject_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.project, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 283 }; G._updateProject_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.project; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 283 }; G._setLoadedProject_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.project; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 283 }; Q.convertProjectToInvoiceItem_closure.prototype = { call$2: function(index, task) { var t1; if (!task.get$isArchived() && !task.isDeleted) if (!task.get$isRunning()) { t1 = task.invoiceId; t1 = t1.length === 0 && task.projectId === this.project.id; } else t1 = false; else t1 = false; if (t1) this.tasks.push(task); }, $signature: 122 }; Q.convertProjectToInvoiceItem_closure0.prototype = { call$2: function(index, expense) { if (!expense.get$isArchived() && !expense.isDeleted && expense.projectId === this.project.id && expense.get$isPending()) this.expenses.push(expense); }, $signature: 89 }; Q.convertProjectToInvoiceItem_closure1.prototype = { call$2: function(taskA, taskB) { var t1 = C.JSArray_methods.get$first(taskA.getTaskTimes$0()), t2 = C.JSArray_methods.get$first(taskB.getTaskTimes$0()); return C.JSInt_methods.compareTo$1(t1.startDate._value, t2.startDate._value); }, $signature: 393 }; Q.convertProjectToInvoiceItem_closure2.prototype = { call$2: function(expenseA, expenseB) { return J.compareTo$1$ns(expenseA.date, expenseB.date); }, $signature: 646 }; Q.convertProjectToInvoiceItem_closure3.prototype = { call$1: function(b) { var t1 = this._box_0.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, $signature: 619 }; Q.convertProjectToInvoiceItem_closure4.prototype = { call$1: function(b) { var t1 = this._box_1.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, $signature: 619 }; Q.memoizedDropdownProjectList_closure.prototype = { call$5: function(projectMap, projectList, clientMap, userMap, clientId) { return Q.dropdownProjectsSelector(projectMap, projectList, clientMap, userMap, clientId); }, $signature: 1462 }; Q.dropdownProjectsSelector_closure.prototype = { call$1: function(projectId) { var t2, t3, project = J.$index$asx(this.projectMap._map$_map, projectId), t1 = this.clientId; if (t1 != null && t1.length !== 0 && project.clientId !== t1) return false; t1 = project.clientId; if (t1.length !== 0) { t2 = this.clientMap._map$_map; t3 = J.getInterceptor$x(t2); if (t3.containsKey$1(t2, t1)) { t1 = t3.$index(t2, t1); t1 = !(!t1.get$isArchived() && !J.get$isDeleted$x(t1)); } else t1 = false; } else t1 = false; if (t1) return false; return !project.get$isArchived() && !project.isDeleted; }, $signature: 16 }; Q.dropdownProjectsSelector_closure0.prototype = { call$2: function(projectAId, projectBId) { var t1 = this.projectMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, projectAId).compareTo$5(0, t2.$index(t1, projectBId), "name", true, this.userMap, this.clientMap); }, $signature: 18 }; Q.memoizedFilteredProjectList_closure.prototype = { call$6: function(selectionState, projectMap, projectList, projectListState, clientMap, userMap) { return Q.filteredProjectsSelector(selectionState, projectMap, projectList, projectListState, clientMap, userMap); }, $signature: 1463 }; Q.filteredProjectsSelector_closure.prototype = { call$1: function(projectId) { var user, t2, t3, _this = this, _null = null, project = J.$index$asx(_this.projectMap._map$_map, projectId), t1 = project.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, _null, _null); t1 = project.assignedUserId; user = J.$index$asx(_this.userMap._map$_map, t1); if (user == null) user = B.UserEntity_UserEntity(t1, _null, _null); if (project.id === _this.selectionState.selectedId) return true; t1 = _this.filterEntityId; if (t1 != null) { t2 = _this.filterEntityType; if (t2 === C.EntityType_client) t3 = !(client.id === t1 && client.get$entityType() === t2); else t3 = false; if (t3) return false; else { if (t2 === C.EntityType_user) t3 = !(user.id === t1 && user.get$entityType() === t2); else t3 = false; if (t3) return false; else if (t2 === C.EntityType_group && client.groupId !== t1) return false; } } else if (!(!client.get$isArchived() && !client.isDeleted)) return false; t1 = _this.projectListState; t2 = t1.filter; if (!project.matchesFilter$1(t2) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t2.toLowerCase())) return false; if (!project.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, project.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, project.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, project.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, project.customValue4)) return false; } } } return true; }, $signature: 16 }; Q.filteredProjectsSelector_closure0.prototype = { call$2: function(projectAId, projectBId) { var _this = this, t1 = _this.projectMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.projectListState; return t2.$index(t1, projectAId).compareTo$5(0, t2.$index(t1, projectBId), t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap); }, $signature: 18 }; Q.taskDurationForProject_closure.prototype = { call$2: function(index, task) { var t1; if (!task.isDeleted && task.projectId === this.project.id) { t1 = this._box_0; t1.total = t1.total + C.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, $signature: 122 }; Q.memoizedProjectStatsForClient_closure.prototype = { call$2: function(clientId, projectMap) { return Q.projectStatsForClient(clientId, projectMap); }, $signature: 618 }; Q.projectStatsForClient_closure.prototype = { call$2: function(projectId, project) { if (project.clientId === this.clientId) if (!project.get$isArchived() && !project.isDeleted) ++this._box_0.countActive; else if (project.get$isArchived()) ++this._box_0.countArchived; }, $signature: 1465 }; Q.memoizedProjectStatsForUser_closure.prototype = { call$2: function(userId, projectMap) { return Q.projectStatsForClient(userId, projectMap); }, $signature: 618 }; D.ProjectState.prototype = { $get$1: function(_, projectId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, projectId)) return t2.$index(t1, projectId); else return A.ProjectEntity_ProjectEntity(null, projectId, null, null); }, loadProjects$1: function(clients) { return this.rebuild$1(new D.ProjectState_loadProjects_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new D.ProjectState_loadProjects_closure0(), new D.ProjectState_loadProjects_closure1(), type$.legacy_String, type$.legacy_ProjectEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; D.ProjectState_loadProjects_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; D.ProjectState_loadProjects_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1466 }; D.ProjectState_loadProjects_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 283 }; D.ProjectUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; D._$ProjectStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_qFt), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new D.ProjectStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ProjectEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_project_state$_$this(); t6 = t5._project_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._project_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_qFt)); break; case "list": t5 = result.get$_project_state$_$this(); t6 = t5._project_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._project_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Fgs; }, get$wireName: function() { return "ProjectState"; } }; D._$ProjectUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_vbG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new D.ProjectUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ProjectEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_project_state$_$this(); t4 = t3._project_state$_editing; if (t4 == null) { t4 = new A.ProjectEntityBuilder(); t4.get$_project_model$_$this()._color = ""; t3._project_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_vbG)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._project_model$_$v = t4; break; case "listUIState": t3 = result.get$_project_state$_$this(); t4 = t3._project_state$_listUIState; t3 = t4 == null ? t3._project_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_project_state$_$this()._project_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_project_state$_$this()._project_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_project_state$_$this()._project_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_gg40; }, get$wireName: function() { return "ProjectUIState"; } }; D._$ProjectState.prototype = { rebuild$1: function(updates) { var t1 = new D.ProjectStateBuilder(); t1._project_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof D.ProjectState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._project_state$__hashCode; return t1 == null ? _this._project_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; D.ProjectStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_map; return t2 == null ? t1._project_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ProjectEntity) : t2; }, get$list: function(_) { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_list; return t2 == null ? t1._project_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_project_state$_$this: function() { var t1, t2, _this = this, $$v = _this._project_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._project_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._project_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._project_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._project_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = D._$ProjectState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("ProjectState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._project_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; D._$ProjectUIState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof D.ProjectUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode: function(_) { var _this = this, t1 = _this._project_state$__hashCode; return t1 == null ? _this._project_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ProjectUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; D.ProjectUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_editing; if (t2 == null) { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; t1._project_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_project_state$_$this(), t2 = t1._project_state$_listUIState; return t2 == null ? t1._project_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_project_state$_$this: function() { var t1, t2, _this = this, $$v = _this._project_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new A.ProjectEntityBuilder(); t2.get$_project_model$_$this()._color = ""; t2._project_model$_$v = t1; t1 = t2; } _this._project_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._project_state$_listUIState = t2; _this._project_state$_selectedId = $$v.selectedId; _this._project_state$_forceSelected = $$v.forceSelected; _this._project_state$_tabIndex = $$v.tabIndex; _this._project_state$_saveCompleter = $$v.saveCompleter; _this._project_state$_cancelCompleter = $$v.cancelCompleter; _this._project_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "ProjectUIState", _$result = null; try { _$result0 = _this._project_state$_$v; if (_$result0 == null) { t1 = _this._project_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_project_state$_$this()._project_state$_selectedId; t4 = _this.get$_project_state$_$this()._project_state$_forceSelected; t5 = _this.get$_project_state$_$this()._project_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_project_state$_$this()._project_state$_saveCompleter; _$result0 = D._$ProjectUIState$_(_this.get$_project_state$_$this()._project_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._project_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._project_state$_$v = t1; return _$result; } }; D._ProjectUIState_Object_EntityUIState.prototype = {}; E.ViewQuoteList.prototype = {$isStopLoading: 1}; E.ViewQuote.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.EditQuote.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$quote: function() { return this.quote; } }; E.ShowEmailQuote.prototype = { get$quote: function() { return this.quote; } }; E.ShowPdfQuote.prototype = { get$quote: function() { return this.quote; } }; E.EditQuoteItem.prototype = {$isPersistUI: 1}; E.UpdateQuote.prototype = {$isPersistUI: 1, get$quote: function() { return this.quote; } }; E.UpdateQuoteClient.prototype = {$isPersistUI: 1}; E.LoadQuote.prototype = {}; E.LoadQuotes.prototype = {}; E.LoadQuoteRequest.prototype = {$isStartLoading: 1}; E.LoadQuoteFailure.prototype = { toString$0: function(_) { return "LoadQuoteFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadQuoteSuccess.prototype = { toString$0: function(_) { return "LoadQuoteSuccess{quote: " + H.S(this.quote) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$quote: function() { return this.quote; } }; E.LoadQuotesRequest.prototype = {$isStartLoading: 1}; E.LoadQuotesFailure.prototype = { toString$0: function(_) { return "LoadQuotesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; E.LoadQuotesSuccess.prototype = { toString$0: function(_) { return "LoadQuotesSuccess{quotes: " + H.S(this.quotes) + "}"; }, $isStopLoading: 1 }; E.AddQuoteContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; E.RemoveQuoteContact.prototype = {$isPersistUI: 1}; E.AddQuoteItem.prototype = {$isPersistUI: 1}; E.MoveQuoteItem.prototype = {$isPersistUI: 1}; E.AddQuoteItems.prototype = {$isPersistUI: 1}; E.UpdateQuoteItem.prototype = {$isPersistUI: 1}; E.DeleteQuoteItem.prototype = {$isPersistUI: 1}; E.SaveQuoteRequest.prototype = {$isStartSaving: 1, get$quote: function() { return this.quote; } }; E.SaveQuoteSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$quote: function() { return this.quote; } }; E.AddQuoteSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$quote: function() { return this.quote; } }; E.SaveQuoteFailure.prototype = {$isStopSaving: 1}; E.EmailQuoteRequest.prototype = {$isStartSaving: 1, get$body: function(receiver) { return this.body; } }; E.EmailQuoteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.EmailQuoteFailure.prototype = {$isStopSaving: 1}; E.MarkSentQuotesRequest.prototype = {$isStartSaving: 1}; E.MarkSentQuoteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.MarkSentQuoteFailure.prototype = {$isStopSaving: 1}; E.BulkEmailQuotesRequest.prototype = {$isStartSaving: 1}; E.BulkEmailQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.BulkEmailQuotesFailure.prototype = {$isStopSaving: 1}; E.ArchiveQuotesRequest.prototype = {$isStartSaving: 1}; E.ArchiveQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.ArchiveQuotesFailure.prototype = {$isStopSaving: 1}; E.DeleteQuotesRequest.prototype = {$isStartSaving: 1}; E.DeleteQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.DeleteQuotesFailure.prototype = {$isStopSaving: 1}; E.DownloadQuotesRequest.prototype = {$isStartSaving: 1}; E.DownloadQuotesSuccess.prototype = {$isStopSaving: 1}; E.DownloadQuotesFailure.prototype = {$isStopSaving: 1}; E.RestoreQuotesRequest.prototype = {$isStartSaving: 1}; E.RestoreQuotesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; E.RestoreQuotesFailure.prototype = {$isStopSaving: 1}; E.FilterQuotes.prototype = {$isPersistUI: 1}; E.SortQuotes.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; E.FilterQuotesByState.prototype = {$isPersistUI: 1}; E.FilterQuotesByStatus.prototype = {$isPersistUI: 1}; E.FilterQuotesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterQuotesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterQuotesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.FilterQuotesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; E.ConvertQuotes.prototype = {$isStartSaving: 1}; E.ConvertQuoteSuccess.prototype = {$isStopSaving: 1}; E.ConvertQuoteFailure.prototype = {$isStopSaving: 1}; E.SaveQuoteDocumentRequest.prototype = {$isStartSaving: 1, get$quote: function() { return this.quote; } }; E.SaveQuoteDocumentFailure.prototype = {$isStopSaving: 1}; E.handleQuoteAction_closure.prototype = { call$1: function(quote) { return quote.get$id(quote); }, $signature: 41 }; E.handleQuoteAction_closure0.prototype = { call$1: function(element) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (!J.$index$asx(t2._list, t1).clientState.$get$1(0, this.quote.clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, $signature: 7 }; E.handleQuoteAction_closure1.prototype = { call$0: function() { var t2, t3, t1 = this.context; K.Navigator_of(t1, false).pop$0(0); t2 = this.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; M.editEntity(null, t1, J.$index$asx(t3._list, t2).clientState.$get$1(0, this.quote.clientId), null); }, $signature: 1 }; E.handleQuoteAction_closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_invoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.handleQuoteAction_closure3.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.handleQuoteAction_closure4.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_recurringInvoice; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; E.StartQuoteMultiselect.prototype = {}; E.AddToQuoteMultiselect.prototype = {}; E.RemoveFromQuoteMultiselect.prototype = {}; E.ClearQuoteMultiselect.prototype = {}; E.UpdateQuoteTab.prototype = {$isPersistUI: 1}; S._viewQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewQuote_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewQuote._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote/view")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/view", type$.legacy_Object), $async$call$3); case 4: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; S._viewQuoteList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewQuoteList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/quote", new S._viewQuoteList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._viewQuoteList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; S._editQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s11_ = "/quote/edit"; next.call$1(type$.legacy_EditQuote._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s11_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s11_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._showEmailQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showEmailQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showEmailQuote_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), emailWasSent, t1; var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start type$.legacy_ShowEmailQuote._as(dynamicAction); next.call$1(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote/email")); $async$goto = store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile ? 2 : 3; break; case 2: // then $async$goto = 4; return P._asyncAwait($.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/email", type$.legacy_Object), $async$call$3); case 4: // returning from await. emailWasSent = $async$result; dynamicAction.toString; t1 = emailWasSent === true; if (t1) dynamicAction.completer.complete$1(0, null); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; S._showPdfQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showPdfQuote_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfQuote_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfQuote._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote/pdf")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/quote/pdf", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; S._archiveQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_ArchiveQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = P.List_List$of(new H.MappedListIterable(t1, new S._archiveQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new S._archiveQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new S._archiveQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._archiveQuote__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).quoteState.map._map$_map, id); }, $signature: 64 }; S._archiveQuote__closure0.prototype = { call$1: function(quotes) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._archiveQuote__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ArchiveQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._deleteQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_DeleteQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = P.List_List$of(new H.MappedListIterable(t1, new S._deleteQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new S._deleteQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new S._deleteQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._deleteQuote__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).quoteState.map._map$_map, id); }, $signature: 64 }; S._deleteQuote__closure0.prototype = { call$1: function(quotes) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._deleteQuote__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._restoreQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevQuotes; type$.legacy_RestoreQuotesRequest._as(dynamicAction); t1 = dynamicAction.quoteIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevQuotes = P.List_List$of(new H.MappedListIterable(t1, new S._restoreQuote__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new S._restoreQuote__closure0(store, dynamicAction), type$.Null).catchError$1(new S._restoreQuote__closure1(store, prevQuotes, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._restoreQuote__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).quoteState.map._map$_map, id); }, $signature: 64 }; S._restoreQuote__closure0.prototype = { call$1: function(quotes) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreQuotesSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._restoreQuote__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.RestoreQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._convertQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_ConvertQuotes._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.quoteIds, C.EntityAction_convertToInvoice).then$1$1(0, new S._convertQuote__closure(store, dynamicAction), type$.Null).catchError$1(new S._convertQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._convertQuote__closure.prototype = { call$1: function(quotes) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ConvertQuoteSuccess(quotes)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._convertQuote__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ConvertQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._markSentQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_MarkSentQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.quoteIds, C.EntityAction_markSent).then$1$1(0, new S._markSentQuote__closure(store, dynamicAction), type$.Null).catchError$1(new S._markSentQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._markSentQuote__closure.prototype = { call$1: function(quotes) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MarkSentQuoteSuccess(quotes)); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._markSentQuote__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MarkSentQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._emailQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, origQuote; type$.legacy_EmailQuoteRequest._as(dynamicAction); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).quoteState.map; t2 = dynamicAction.quoteId; origQuote = J.$index$asx(t1._map$_map, t2); this.repository.emailQuote$5(J.get$credentials$z(store.get$_store$_state()), origQuote, dynamicAction.template, dynamicAction.subject, dynamicAction.body).then$1$1(0, new S._emailQuote__closure(store, dynamicAction), type$.Null).catchError$1(new S._emailQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._emailQuote__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailQuoteSuccess()); this.action.completer.complete$1(0, null); }, $signature: 83 }; S._emailQuote__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._saveQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { var updatedQuote; type$.legacy_SaveQuoteRequest._as(dynamicAction); updatedQuote = dynamicAction.quote.rebuild$1(new S._saveQuote__closure(dynamicAction)); this.repository.saveData$3(J.get$credentials$z(store.get$_store$_state()), updatedQuote, dynamicAction.action).then$1$1(0, new S._saveQuote__closure0(dynamicAction, store), type$.Null).catchError$1(new S._saveQuote__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._saveQuote__closure.prototype = { call$1: function(b) { b.get$lineItems().replace$1(0, J.where$1$ax(this.action.quote.lineItems._list, new S._saveQuote___closure())); return b; }, $signature: 11 }; S._saveQuote___closure.prototype = { call$1: function(item) { return !item.get$isEmpty(item); }, $signature: 58 }; S._saveQuote__closure0.prototype = { call$1: function(quote) { var t1 = this.action, t2 = this.store; if (t1.quote.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.AddQuoteSuccess(quote)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.SaveQuoteSuccess(quote)); t1.completer.complete$1(0, quote); }, $signature: 68 }; S._saveQuote__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveQuoteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._loadQuote_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadQuote._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadQuoteRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.quoteId).then$1$1(0, new S._loadQuote__closure(store, dynamicAction), type$.Null).catchError$1(new S._loadQuote__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._loadQuote__closure.prototype = { call$1: function(quote) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadQuoteSuccess(quote)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 68 }; S._loadQuote__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadQuoteFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; S._downloadQuotes_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_DownloadQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_download).then$1$1(0, new S._downloadQuotes__closure(store, dynamicAction), type$.Null).catchError$1(new S._downloadQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._downloadQuotes__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DownloadQuotesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._downloadQuotes__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DownloadQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._bulkEmailQuotes_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_BulkEmailQuotesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.quoteIds, C.EntityAction_emailQuote).then$1$1(0, new S._bulkEmailQuotes__closure(store, dynamicAction), type$.Null).catchError$1(new S._bulkEmailQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._bulkEmailQuotes__closure.prototype = { call$1: function(quotes) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.BulkEmailQuotesSuccess()); this.action.completer.complete$1(0, null); }, $signature: 42 }; S._bulkEmailQuotes__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.BulkEmailQuotesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; S._loadQuotes_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadQuotes._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadQuotesRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new S._loadQuotes__closure(store, dynamicAction), type$.Null).catchError$1(new S._loadQuotes__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._loadQuotes__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadQuotesSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadCredits()); }, $signature: 258 }; S._loadQuotes__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadQuotesFailure(error)); this.action.toString; }, $signature: 3 }; S._saveDocument_closure4.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveQuoteDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.quote, dynamicAction.multipartFile).then$1$1(0, new S._saveDocument__closure9(store, dynamicAction), type$.Null).catchError$1(new S._saveDocument__closure10(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SaveQuoteDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; S._saveDocument__closure9.prototype = { call$1: function(quote) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveQuoteSuccess(quote)); this.action.completer.complete$1(0, null); }, $signature: 68 }; S._saveDocument__closure10.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveQuoteDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; L.quoteUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$quoteListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._invoice_model$_$v = t4; t1 = $.$get$editingItemReducer().call$2(t2.editingItemIndex, t3); b.get$_quote_state$_$this()._editingItemIndex = t1; t1 = $.$get$selectedIdReducer().call$2(t2.selectedId, t3); b.get$_quote_state$_$this()._selectedId = t1; t1 = $.$get$forceSelectedReducer().call$2(t2.forceSelected, t3); b.get$_quote_state$_$this()._forceSelected = t1; t1 = $.$get$tabIndexReducer().call$2(t2.tabIndex, t3); b.get$_quote_state$_$this()._quote_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer().call$2(t2.historyActivityId, t3); b.get$_quote_state$_$this()._historyActivityId = t3; return b; }, $signature: 1467 }; L.forceSelectedReducer_closure.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1468 }; L.forceSelectedReducer_closure0.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1469 }; L.forceSelectedReducer_closure1.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1470 }; L.forceSelectedReducer_closure2.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1471 }; L.forceSelectedReducer_closure3.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1472 }; L.forceSelectedReducer_closure4.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1473 }; L.forceSelectedReducer_closure5.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1474 }; L.forceSelectedReducer_closure6.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1475 }; L.tabIndexReducer_closure.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1476 }; L.tabIndexReducer_closure0.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; L.historyActivityIdReducer_closure.prototype = { call$2: function(index, action) { return action.activityId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 617 }; L.editingItemReducer_closure.prototype = { call$2: function(index, action) { return action.quoteItemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1478 }; L.editingItemReducer_closure0.prototype = { call$2: function(index, action) { return action.quoteItemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1479 }; L.selectedIdReducer_closure.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1480 }; L.selectedIdReducer_closure0.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1481 }; L.selectedIdReducer_closure1.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_quote ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; L.selectedIdReducer_closure2.prototype = { call$2: function(selectedId, action) { return action.quoteId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1482 }; L.selectedIdReducer_closure3.prototype = { call$2: function(selectedId, action) { return action.quote.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1483 }; L.selectedIdReducer_closure4.prototype = { call$2: function(selectedId, action) { return action.quote.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1484 }; L.selectedIdReducer_closure5.prototype = { call$2: function(selectedId, action) { return action.quote.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 617 }; L.selectedIdReducer_closure6.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; L.selectedIdReducer_closure7.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; L.selectedIdReducer_closure8.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1485 }; L.selectedIdReducer_closure9.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1486 }; L.selectedIdReducer_closure10.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1487 }; L.selectedIdReducer_closure11.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1488 }; L.selectedIdReducer_closure12.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1489 }; L.selectedIdReducer_closure13.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1490 }; L.selectedIdReducer_closure14.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1491 }; L.selectedIdReducer_closure15.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1492 }; L.selectedIdReducer_closure16.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_quote ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; L.selectedIdReducer_closure17.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_quote ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; L.editingReducer_closure.prototype = { call$2: function(quote, action) { return action.quote.rebuild$1(new L.editingReducer__closure5()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1493 }; L.editingReducer__closure5.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; L.editingReducer_closure0.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new L.editingReducer__closure4()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 616 }; L.editingReducer__closure4.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; L.editingReducer_closure1.prototype = { call$2: function(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1495 }; L.editingReducer_closure2.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new L.editingReducer__closure3()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 615 }; L.editingReducer__closure3.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; L.editingReducer_closure3.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new L.editingReducer__closure2()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 613 }; L.editingReducer__closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; L.editingReducer_closure4.prototype = { call$2: function(quote, action) { return quote.rebuild$1(new L.editingReducer__closure1(action.client)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1498 }; L.editingReducer__closure1.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ContactEntity); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, P.List_List$of(new H.MappedListIterable(t1, new L.editingReducer___closure(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 11 }; L.editingReducer___closure.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; L.editingReducer_closure5.prototype = { call$2: function(quotes, action) { return J.$index$asx(action.quotes, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1499 }; L.editingReducer_closure6.prototype = { call$2: function(quotes, action) { return J.$index$asx(action.quotes, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1500 }; L.editingReducer_closure7.prototype = { call$2: function(quotes, action) { return J.$index$asx(action.quotes, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1501 }; L.editingReducer_closure8.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new L.editingReducer__closure0(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1502 }; L.editingReducer__closure0.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? Q.InvitationEntity_InvitationEntity(t2.contact.id) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; L.editingReducer_closure9.prototype = { call$2: function(invoice, action) { return invoice.rebuild$1(new L.editingReducer__closure(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1503 }; L.editingReducer__closure.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; L._addQuoteItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action.quoteItem; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; L._addQuoteItems_closure.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.action.quoteItems); return b; }, $signature: 11 }; L._removeQuoteItem_closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 11 }; L._updateQuoteItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t2.index, t2.quoteItem); return b; }, $signature: 11 }; L._viewQuoteList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._filterQuotesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterQuotesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterQuotesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterQuotesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterQuotesByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterQuotesByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterQuotesByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterQuotesByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterQuotesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; L._filterQuotesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterQuotesByStatus_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; L._filterQuotesByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.action.status); return b; }, $signature: 2 }; L._filterQuotes_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.quoteListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._sortQuotes_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; L._startListMultiselect_closure.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; L._addToListMultiselect_closure.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._removeFromListMultiselect_closure.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._clearListMultiselect_closure.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; L._markSentQuoteSuccess_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; L._markSentQuoteSuccess_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; L._markSentQuoteSuccess_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, this.quoteMap); return b; }, $signature: 230 }; L._archiveQuoteSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 360 }; L._deleteQuoteSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 360 }; L._restoreQuoteSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.quotes), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_quote_state$_$this(); t5 = t4._quote_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._quote_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 360 }; L._convertQuoteSuccess_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; L._convertQuoteSuccess_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; L._convertQuoteSuccess_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, this.quoteMap); return b; }, $signature: 230 }; L._addQuote_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.quote, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new L._addQuote__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 230 }; L._addQuote__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; L._updateQuote_closure.prototype = { call$1: function(b) { var t1 = this.quote; b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new L._updateQuote__closure())); return b; }, $signature: 230 }; L._updateQuote__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; Y.memoizedFilteredQuoteList_closure.prototype = { call$6: function(selectionState, quoteMap, quoteList, clientMap, quoteListState, userMap) { return Y.filteredQuotesSelector(selectionState, quoteMap, quoteList, clientMap, quoteListState, userMap); }, $signature: 656 }; Y.filteredQuotesSelector_closure.prototype = { call$1: function(quoteId) { var t2, t3, _this = this, quote = J.$index$asx(_this.quoteMap._map$_map, quoteId), t1 = quote.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (quote.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t2 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t2 = false; if (t2) return false; t2 = _this.filterEntityType; if (t2 === C.EntityType_client && t1 !== _this.filterEntityId) return false; else if (t2 === C.EntityType_user && quote.assignedUserId != _this.filterEntityId) return false; else if (t2 === C.EntityType_design && quote.designId !== _this.filterEntityId) return false; else if (t2 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; else if (t2 === C.EntityType_invoice && quote.invoiceId != _this.filterEntityId) return false; t1 = _this.quoteListState; if (!quote.matchesStates$1(t1.stateFilters)) return false; else if (!quote.matchesStatuses$1(t1.statusFilters)) return false; else { t2 = t1.filter; if (!quote.matchesFilter$1(t2) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t2.toLowerCase())) return false; } t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, quote.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, quote.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, quote.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, quote.customValue4)) return false; } } } return true; }, $signature: 16 }; Y.filteredQuotesSelector_closure0.prototype = { call$2: function(quoteAId, quoteBId) { var t4, _this = this, t1 = _this.quoteMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, quoteAId); t1 = t2.$index(t1, quoteBId); t2 = _this.quoteListState; t4 = t2.sortField; return J.compareTo$5$clientMap$invoice$sortAscending$sortField$userMap$ns(t3, _this.clientMap, t1, t2.sortAscending, t4, _this.userMap); }, $signature: 18 }; Y.memoizedQuoteStatsForClient_closure.prototype = { call$2: function(clientId, quoteMap) { return Y.quoteStatsForClient(clientId, quoteMap); }, $signature: 82 }; Y.quoteStatsForClient_closure.prototype = { call$2: function(quoteId, quote) { if (quote.clientId === this.clientId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Y.memoizedQuoteStatsForDesign_closure.prototype = { call$2: function(designId, quoteMap) { return Y.quoteStatsForDesign(designId, quoteMap); }, $signature: 82 }; Y.quoteStatsForDesign_closure.prototype = { call$2: function(quoteId, quote) { if (quote.designId === this.designId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Y.memoizedQuoteStatsForUser_closure.prototype = { call$2: function(userId, quoteMap) { return Y.quoteStatsForUser(userId, quoteMap); }, $signature: 82 }; Y.quoteStatsForUser_closure.prototype = { call$2: function(quoteId, quote) { if (quote.assignedUserId == this.userId) if (!quote.get$isArchived() && !quote.isDeleted) ++this._box_0.countActive; else if (quote.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; G.QuoteState.prototype = { $get$1: function(_, quoteId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, quoteId)) return t2.$index(t1, quoteId); else return Q.InvoiceEntity_InvoiceEntity(null, C.EntityType_quote, quoteId, null, null); }, loadQuotes$1: function(quotes) { return this.rebuild$1(new G.QuoteState_loadQuotes_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(quotes, new G.QuoteState_loadQuotes_closure0(), new G.QuoteState_loadQuotes_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; G.QuoteState_loadQuotes_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; G.QuoteState_loadQuotes_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; G.QuoteState_loadQuotes_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 230 }; G.QuoteUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; G._$QuoteStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new G.QuoteStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_quote_state$_$this(); t6 = t5._quote_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._quote_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_n67)); break; case "list": t5 = result.get$_quote_state$_$this(); t6 = t5._quote_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._quote_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ad2; }, get$wireName: function() { return "QuoteState"; } }; G._$QuoteUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new G.QuoteUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_quote_state$_$this(); t6 = t5._editing; if (t6 == null) { t6 = new Q.InvoiceEntityBuilder(); t7 = t6.get$_invoice_model$_$this(); t8 = t7._invoice_model$_activities; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._invoice_model$_activities = t8; t7 = t8; } else t7 = t8; t8 = D.BuiltList_BuiltList$from(C.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t6.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t6.get$_invoice_model$_$this()._autoBillEnabled = false; t6.get$_invoice_model$_$this()._subscriptionId = ""; t5._editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._invoice_model$_$v = t6; break; case "listUIState": t5 = result.get$_quote_state$_$this(); t6 = t5._listUIState; t5 = t6 == null ? t5._listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_quote_state$_$this()._selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_quote_state$_$this()._forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_quote_state$_$this()._quote_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_SIL; }, get$wireName: function() { return "QuoteUIState"; } }; G._$QuoteState.prototype = { rebuild$1: function(updates) { var t1 = new G.QuoteStateBuilder(); t1._quote_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof G.QuoteState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._quote_state$__hashCode; return t1 == null ? _this._quote_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("QuoteState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; G.QuoteStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_quote_state$_$this(), t2 = t1._quote_state$_map; return t2 == null ? t1._quote_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list: function(_) { var t1 = this.get$_quote_state$_$this(), t2 = t1._quote_state$_list; return t2 == null ? t1._quote_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_quote_state$_$this: function() { var t1, t2, _this = this, $$v = _this._quote_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._quote_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._quote_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._quote_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._quote_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = G._$QuoteState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("QuoteState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._quote_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; G._$QuoteUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof G.QuoteUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._quote_state$__hashCode; return t1 == null ? _this._quote_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("QuoteUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; G.QuoteUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_quote_state$_$this(), t2 = t1._editing; if (t2 == null) { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t1._editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_quote_state$_$this(), t2 = t1._listUIState; return t2 == null ? t1._listUIState = new Q.ListUIStateBuilder() : t2; }, get$_quote_state$_$this: function() { var t1, t2, _this = this, $$v = _this._quote_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; t1 = t2; } _this._editing = t1; _this._editingItemIndex = $$v.editingItemIndex; _this._historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._listUIState = t2; _this._selectedId = $$v.selectedId; _this._forceSelected = $$v.forceSelected; _this._quote_state$_tabIndex = $$v.tabIndex; _this._saveCompleter = $$v.saveCompleter; _this._cancelCompleter = $$v.cancelCompleter; _this._quote_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s12_ = "QuoteUIState", _$result = null; try { _$result0 = _this._quote_state$_$v; if (_$result0 == null) { t1 = _this._editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_quote_state$_$this()._editingItemIndex; t3 = _this.get$_quote_state$_$this()._historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_quote_state$_$this()._selectedId; t6 = _this.get$_quote_state$_$this()._forceSelected; t7 = _this.get$_quote_state$_$this()._quote_state$_tabIndex; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "tabIndex")); t8 = _this.get$_quote_state$_$this()._saveCompleter; _$result0 = G._$QuoteUIState$_(_this.get$_quote_state$_$this()._cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._quote_state$_$v = t1; return _$result; } }; G._QuoteUIState_Object_EntityUIState.prototype = {}; U.ViewRecurringExpenseList.prototype = {$isStopLoading: 1}; U.ViewRecurringExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringExpenseId: function() { return this.recurringExpenseId; } }; U.EditRecurringExpense.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.UpdateRecurringExpense.prototype = {$isPersistUI: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.LoadRecurringExpense.prototype = { get$recurringExpenseId: function() { return this.recurringExpenseId; } }; U.LoadRecurringExpenses.prototype = {}; U.LoadRecurringExpenseRequest.prototype = {$isStartLoading: 1}; U.LoadRecurringExpenseFailure.prototype = { toString$0: function(_) { return "LoadRecurringExpenseFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; U.LoadRecurringExpenseSuccess.prototype = { toString$0: function(_) { return "LoadRecurringExpenseSuccess{recurringExpense: " + H.S(this.recurringExpense) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.LoadRecurringExpensesRequest.prototype = {$isStartLoading: 1}; U.LoadRecurringExpensesFailure.prototype = { toString$0: function(_) { return "LoadRecurringExpensesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; U.LoadRecurringExpensesSuccess.prototype = { toString$0: function(_) { return "LoadRecurringExpensesSuccess{recurringExpenses: " + H.S(this.recurringExpenses) + "}"; }, $isStopLoading: 1 }; U.SaveRecurringExpenseRequest.prototype = {$isStartSaving: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.SaveRecurringExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.AddRecurringExpenseSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringExpense: function() { return this.recurringExpense; } }; U.SaveRecurringExpenseFailure.prototype = {$isStopSaving: 1}; U.ArchiveRecurringExpensesRequest.prototype = {$isStartSaving: 1}; U.ArchiveRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.ArchiveRecurringExpensesFailure.prototype = {$isStopSaving: 1}; U.DeleteRecurringExpensesRequest.prototype = {$isStartSaving: 1}; U.DeleteRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.DeleteRecurringExpensesFailure.prototype = {$isStopSaving: 1}; U.RestoreRecurringExpensesRequest.prototype = {$isStartSaving: 1}; U.RestoreRecurringExpensesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.RestoreRecurringExpensesFailure.prototype = {$isStopSaving: 1}; U.FilterRecurringExpenses.prototype = {$isPersistUI: 1}; U.SortRecurringExpenses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; U.FilterRecurringExpensesByState.prototype = {$isPersistUI: 1}; U.FilterRecurringExpensesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterRecurringExpensesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterRecurringExpensesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterRecurringExpensesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.StartRecurringExpenseMultiselect.prototype = {}; U.AddToRecurringExpenseMultiselect.prototype = {}; U.RemoveFromRecurringExpenseMultiselect.prototype = {}; U.ClearRecurringExpenseMultiselect.prototype = {}; U.UpdateRecurringExpenseTab.prototype = {$isPersistUI: 1}; U.StartRecurringExpensesRequest.prototype = {$isStartSaving: 1}; U.StartRecurringExpensesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; U.StartRecurringExpensesFailure.prototype = {$isStopSaving: 1}; U.StopRecurringExpensesRequest.prototype = {$isStartSaving: 1}; U.StopRecurringExpensesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; U.StopRecurringExpensesFailure.prototype = {$isStopSaving: 1}; U.SaveRecurringExpenseDocumentRequest.prototype = {$isStartSaving: 1, get$expense: function() { return this.expense; } }; U.SaveRecurringExpenseDocumentFailure.prototype = {$isStopSaving: 1}; U.handleRecurringExpenseAction_closure.prototype = { call$1: function(recurringExpense) { return recurringExpense.get$id(recurringExpense); }, $signature: 41 }; U.handleRecurringExpenseAction_closure0.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; return b; }, $signature: 23 }; U.handleRecurringExpenseAction_closure1.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_recurringExpense; return b; }, $signature: 23 }; R._editRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s23_ = "/recurring_expense/edit"; next.call$1(type$.legacy_EditRecurringExpense._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s23_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._viewRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewRecurringExpense_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewRecurringExpense_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewRecurringExpense._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/recurring_expense/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_expense/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; R._viewRecurringExpenseList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var _s18_ = "/recurring_expense"; next.call$1(type$.legacy_ViewRecurringExpenseList._as(dynamicAction)); if (store.get$_store$_state().staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s18_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s18_, new R._viewRecurringExpenseList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._viewRecurringExpenseList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; R._archiveRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_ArchiveRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._archiveRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new R._archiveRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._archiveRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._archiveRecurringExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringExpenseState.map._map$_map, id); }, $signature: 195 }; R._archiveRecurringExpense__closure0.prototype = { call$1: function(recurringExpenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ArchiveRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._archiveRecurringExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ArchiveRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._deleteRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_DeleteRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._deleteRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new R._deleteRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._deleteRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._deleteRecurringExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringExpenseState.map._map$_map, id); }, $signature: 195 }; R._deleteRecurringExpense__closure0.prototype = { call$1: function(recurringExpenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._deleteRecurringExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._restoreRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringExpenses; type$.legacy_RestoreRecurringExpensesRequest._as(dynamicAction); t1 = dynamicAction.recurringExpenseIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,ExpenseEntity*>"); prevRecurringExpenses = P.List_List$of(new H.MappedListIterable(t1, new R._restoreRecurringExpense__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new R._restoreRecurringExpense__closure0(store, dynamicAction), type$.Null).catchError$1(new R._restoreRecurringExpense__closure1(store, prevRecurringExpenses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._restoreRecurringExpense__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringExpenseState.map._map$_map, id); }, $signature: 195 }; R._restoreRecurringExpense__closure0.prototype = { call$1: function(recurringExpenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.RestoreRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._restoreRecurringExpense__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.RestoreRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._saveRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveRecurringExpenseRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.recurringExpense).then$1$1(0, new R._saveRecurringExpense__closure(dynamicAction, store), type$.Null).catchError$1(new R._saveRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._saveRecurringExpense__closure.prototype = { call$1: function(recurringExpense) { var t1 = this.action, t2 = this.store; if (t1.recurringExpense.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.AddRecurringExpenseSuccess(recurringExpense)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseSuccess(recurringExpense)); t1.completer.complete$1(0, recurringExpense); }, $signature: 115 }; R._saveRecurringExpense__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._loadRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringExpense._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpenseRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.recurringExpenseId).then$1$1(0, new R._loadRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new R._loadRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._loadRecurringExpense__closure.prototype = { call$1: function(recurringExpense) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpenseSuccess(recurringExpense)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 115 }; R._loadRecurringExpense__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpenseFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; R._loadRecurringExpenses_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringExpenses._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpensesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new R._loadRecurringExpenses__closure(store, dynamicAction), type$.Null).catchError$1(new R._loadRecurringExpenses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._loadRecurringExpenses__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpensesSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.PersistData()); }, $signature: 637 }; R._loadRecurringExpenses__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpensesFailure(error)); this.action.toString; }, $signature: 3 }; R._startRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_StartRecurringExpensesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expenseIds, C.EntityAction_start).then$1$1(0, new R._startRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new R._startRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._startRecurringExpense__closure.prototype = { call$1: function(expenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StartRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._startRecurringExpense__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StartRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._stopRecurringExpense_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_StopRecurringExpensesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expenseIds, C.EntityAction_stop).then$1$1(0, new R._stopRecurringExpense__closure(store, dynamicAction), type$.Null).catchError$1(new R._stopRecurringExpense__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._stopRecurringExpense__closure.prototype = { call$1: function(expenses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StopRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, $signature: 143 }; R._stopRecurringExpense__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StopRecurringExpensesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; R._saveDocument_closure2.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveRecurringExpenseDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.expense, dynamicAction.multipartFile).then$1$1(0, new R._saveDocument__closure5(store, dynamicAction), type$.Null).catchError$1(new R._saveDocument__closure6(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._saveDocument__closure5.prototype = { call$1: function(expense) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseSuccess(expense)); this.action.completer.complete$1(0, null); }, $signature: 115 }; R._saveDocument__closure6.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; E.recurringExpenseUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$recurringExpenseListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer19().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._expense_model$_$v = t4; t1 = $.$get$selectedIdReducer19().call$2(t2.selectedId, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer19().call$2(t2.forceSelected, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer8().call$2(t2.tabIndex, t3); b.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex = t3; return b; }, $signature: 1506 }; E.forceSelectedReducer_closure151.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1507 }; E.forceSelectedReducer_closure152.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1508 }; E.forceSelectedReducer_closure153.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1509 }; E.forceSelectedReducer_closure154.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1510 }; E.forceSelectedReducer_closure155.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1511 }; E.forceSelectedReducer_closure156.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1512 }; E.forceSelectedReducer_closure157.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1513 }; E.forceSelectedReducer_closure158.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1514 }; E.tabIndexReducer_closure17.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1515 }; E.tabIndexReducer_closure18.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; E.selectedIdReducer_closure301.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1516 }; E.selectedIdReducer_closure302.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1517 }; E.selectedIdReducer_closure303.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_recurringExpense ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; E.selectedIdReducer_closure304.prototype = { call$2: function(selectedId, action) { return action.get$recurringExpenseId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; E.selectedIdReducer_closure305.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$recurringExpense()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; E.selectedIdReducer_closure306.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; E.selectedIdReducer_closure307.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; E.selectedIdReducer_closure308.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1518 }; E.selectedIdReducer_closure309.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1519 }; E.selectedIdReducer_closure310.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1520 }; E.selectedIdReducer_closure311.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1521 }; E.selectedIdReducer_closure312.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1522 }; E.selectedIdReducer_closure313.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1523 }; E.selectedIdReducer_closure314.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1524 }; E.selectedIdReducer_closure315.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_recurringExpense ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; E.editingReducer_closure97.prototype = { call$2: function(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1525 }; E.editingReducer_closure98.prototype = { call$2: function(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1526 }; E.editingReducer_closure99.prototype = { call$2: function(recurringExpenses, action) { return J.$index$asx(action.recurringExpenses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1527 }; E.editingReducer_closure100.prototype = { call$2: function(recurringExpense, action) { return action.recurringExpense.rebuild$1(new E.editingReducer__closure37()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1528 }; E.editingReducer__closure37.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_isChanged = true; return b; }, $signature: 23 }; E._viewRecurringExpenseList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; E._filterRecurringExpensesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterRecurringExpensesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterRecurringExpensesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterRecurringExpensesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterRecurringExpensesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; E._filterRecurringExpensesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterRecurringExpenses_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.recurringExpenseListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; E._sortRecurringExpenses_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; E._startListMultiselect_closure19.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; E._addToListMultiselect_closure19.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._removeFromListMultiselect_closure19.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._clearListMultiselect_closure19.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; E._archiveRecurringExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 231 }; E._deleteRecurringExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 231 }; E._restoreRecurringExpenseSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringExpenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 231 }; E._addRecurringExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new E._addRecurringExpense__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 327 }; E._addRecurringExpense__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 23 }; E._updateRecurringExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense; t1.$indexSet(0, t2.id, t2.rebuild$1(new E._updateRecurringExpense__closure())); return b; }, $signature: 327 }; E._updateRecurringExpense__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 23 }; E._startRecurringExpensesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 231 }; E._stopRecurringExpensesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.expenses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_expense_state$_$this(); t5 = t4._recurring_expense_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_expense_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 231 }; E._setLoadedRecurringExpense_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.recurringExpense; t1.$indexSet(0, t2.id, t2.rebuild$1(new E._setLoadedRecurringExpense__closure())); return b; }, $signature: 327 }; E._setLoadedRecurringExpense__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_expense_model$_$this()._expense_model$_loadedAt = t1; return b; }, $signature: 23 }; A.memoizedFilteredRecurringExpenseList_closure.prototype = { call$9: function(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return A.filteredRecurringExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, $signature: 635 }; A.filteredRecurringExpensesSelector_closure.prototype = { call$1: function(expenseId) { var t2, vendor, t3, client, t4, _this = this, _null = null, expense = J.$index$asx(_this.expenseMap._map$_map, expenseId), t1 = expense.categoryId, expenseCategory = J.$index$asx(_this.expenseCategoryMap._map$_map, t1); if (expenseCategory == null) expenseCategory = R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null); t2 = expense.vendorId; vendor = J.$index$asx(_this.vendorMap._map$_map, t2); if (vendor == null) vendor = B.VendorEntity_VendorEntity(t2, _null, _null); t3 = expense.clientId; client = J.$index$asx(_this.clientMap._map$_map, t3); if (client == null) client = T.ClientEntity_ClientEntity(t3, _null, _null); if (expense.id === _this.selectionState.selectedId) return true; t4 = _this.filterEntityType; if (t4 != null) { if (t4 === C.EntityType_client && t3 != _this.filterEntityId) return false; else if (t4 === C.EntityType_vendor && t2 != _this.filterEntityId) return false; else if (t4 === C.EntityType_expenseCategory && t1 !== _this.filterEntityId) return false; else if (t4 === C.EntityType_user && expense.assignedUserId != _this.filterEntityId) return false; else if (t4 === C.EntityType_project && expense.projectId != _this.filterEntityId) return false; else if (t4 === C.EntityType_invoice && expense.invoiceId != _this.filterEntityId) return false; else if (t4 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; } else { if (t2 != null) t1 = !(!vendor.get$isArchived() && !vendor.isDeleted); else t1 = false; if (t1) return false; else { if (t3 != null) t1 = !(!client.get$isArchived() && !client.isDeleted); else t1 = false; if (t1) return false; } } t1 = _this.expenseListState; if (!expense.matchesStates$1(t1.stateFilters)) return false; if (!expense.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue3)) return false; else { t2 = t1.custom4Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, expense.customValue4)) return false; } } } t1 = t1.filter; return expense.matchesFilter$1(t1) || expenseCategory.matchesFilter$1(t1) || C.JSString_methods.contains$1(client.displayName.toLowerCase(), t1.toLowerCase()) || C.JSString_methods.contains$1(vendor.name.toLowerCase(), t1.toLowerCase()); }, $signature: 16 }; A.filteredRecurringExpensesSelector_closure0.prototype = { call$2: function(expenseAId, expenseBId) { var _this = this, t1 = _this.expenseMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.expenseListState; return t2.$index(t1, expenseAId).compareTo$9(0, t2.$index(t1, expenseBId), t3.sortField, t3.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, $signature: 18 }; A.memoizedRecurringExpenseStatsForClient_closure.prototype = { call$2: function(clientId, expenseMap) { return A.recurringExpenseStatsForClient(clientId, expenseMap); }, $signature: 131 }; A.recurringExpenseStatsForClient_closure.prototype = { call$2: function(expenseId, expense) { if (expense.clientId == this.clientId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; A.memoizedRecurringExpenseStatsForVendor_closure.prototype = { call$2: function(vendorId, expenseMap) { return A.recurringExpenseStatsForVendor(vendorId, expenseMap); }, $signature: 131 }; A.recurringExpenseStatsForVendor_closure.prototype = { call$2: function(expenseId, expense) { if (expense.vendorId == this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.get$isArchived()) ++this._box_0.countArchived; }, $signature: 89 }; A.memoizedRecurringExpenseStatsForUser_closure.prototype = { call$2: function(userId, expenseMap) { return A.recurringExpenseStatsForUser(userId, expenseMap); }, $signature: 131 }; A.recurringExpenseStatsForUser_closure.prototype = { call$2: function(expenseId, expense) { if (expense.assignedUserId == this.userId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.isDeleted) ++this._box_0.countArchived; }, $signature: 89 }; A.memoizedRecurringExpenseStatsForExpense_closure.prototype = { call$2: function(expenseId, expenseMap) { return A.recurringExpenseStatsForExpense(expenseId, expenseMap); }, $signature: 131 }; A.recurringExpenseStatsForExpense_closure.prototype = { call$2: function(expenseId, expense) { if (expense.recurringId == this.recurrigExpenseId) if (!expense.get$isArchived() && !expense.isDeleted) ++this._box_0.countActive; else if (expense.isDeleted) ++this._box_0.countArchived; }, $signature: 89 }; K.RecurringExpenseState.prototype = { $get$1: function(_, recurringExpenseId) { var _null = null, t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, recurringExpenseId)) return t2.$index(t1, recurringExpenseId); else return M.ExpenseEntity_ExpenseEntity(_null, _null, recurringExpenseId, _null, _null, _null, _null); }, loadRecurringExpenses$1: function(clients) { return this.rebuild$1(new K.RecurringExpenseState_loadRecurringExpenses_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new K.RecurringExpenseState_loadRecurringExpenses_closure0(), new K.RecurringExpenseState_loadRecurringExpenses_closure1(), type$.legacy_String, type$.legacy_ExpenseEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; K.RecurringExpenseState_loadRecurringExpenses_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; K.RecurringExpenseState_loadRecurringExpenses_closure1.prototype = { call$1: function(item) { return item; }, $signature: 634 }; K.RecurringExpenseState_loadRecurringExpenses_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 327 }; K.RecurringExpenseUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; K._$RecurringExpenseStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_6Ps), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new K.RecurringExpenseStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_recurring_expense_state$_$this(); t6 = t5._recurring_expense_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._recurring_expense_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_6Ps)); break; case "list": t5 = result.get$_recurring_expense_state$_$this(); t6 = t5._recurring_expense_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._recurring_expense_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wD4; }, get$wireName: function() { return "RecurringExpenseState"; } }; K._$RecurringExpenseUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_UcG)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new K.RecurringExpenseUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_ExpenseEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_recurring_expense_state$_$this(); t4 = t3._recurring_expense_state$_editing; if (t4 == null) { t4 = new M.ExpenseEntityBuilder(); t4.get$_expense_model$_$this()._expense_model$_entityType = C.EntityType_expense; t4.get$_expense_model$_$this()._expense_model$_frequencyId = ""; t4.get$_expense_model$_$this()._expense_model$_lastSentDate = ""; t4.get$_expense_model$_$this()._expense_model$_nextSendDate = ""; t4.get$_expense_model$_$this()._expense_model$_remainingCycles = -1; t3._recurring_expense_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_UcG)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._expense_model$_$v = t4; break; case "listUIState": t3 = result.get$_recurring_expense_state$_$this(); t4 = t3._recurring_expense_state$_listUIState; t3 = t4 == null ? t3._recurring_expense_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_a9w; }, get$wireName: function() { return "RecurringExpenseUIState"; } }; K._$RecurringExpenseState.prototype = { rebuild$1: function(updates) { var t1 = new K.RecurringExpenseStateBuilder(); t1._recurring_expense_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof K.RecurringExpenseState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._recurring_expense_state$__hashCode; return t1 == null ? _this._recurring_expense_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringExpenseState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; K.RecurringExpenseStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_map; return t2 == null ? t1._recurring_expense_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_ExpenseEntity) : t2; }, get$list: function(_) { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_list; return t2 == null ? t1._recurring_expense_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_recurring_expense_state$_$this: function() { var t1, t2, _this = this, $$v = _this._recurring_expense_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._recurring_expense_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._recurring_expense_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._recurring_expense_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._recurring_expense_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = K._$RecurringExpenseState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("RecurringExpenseState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._recurring_expense_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; K._$RecurringExpenseUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof K.RecurringExpenseUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._recurring_expense_state$__hashCode; return t1 == null ? _this._recurring_expense_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringExpenseUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; K.RecurringExpenseUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_editing; if (t2 == null) { t2 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t2); t1._recurring_expense_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_recurring_expense_state$_$this(), t2 = t1._recurring_expense_state$_listUIState; return t2 == null ? t1._recurring_expense_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_recurring_expense_state$_$this: function() { var t1, t2, _this = this, $$v = _this._recurring_expense_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new M.ExpenseEntityBuilder(); M.ExpenseEntity__initializeBuilder(t2); t2._expense_model$_$v = t1; t1 = t2; } _this._recurring_expense_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._recurring_expense_state$_listUIState = t2; _this._recurring_expense_state$_selectedId = $$v.selectedId; _this._recurring_expense_state$_forceSelected = $$v.forceSelected; _this._recurring_expense_state$_tabIndex = $$v.tabIndex; _this._recurring_expense_state$_saveCompleter = $$v.saveCompleter; _this._recurring_expense_state$_cancelCompleter = $$v.cancelCompleter; _this._recurring_expense_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s23_ = "RecurringExpenseUIState", _$result = null; try { _$result0 = _this._recurring_expense_state$_$v; if (_$result0 == null) { t1 = _this._recurring_expense_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_selectedId; t4 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_forceSelected; t5 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "tabIndex")); t6 = _this.get$_recurring_expense_state$_$this()._recurring_expense_state$_saveCompleter; _$result0 = K._$RecurringExpenseUIState$_(_this.get$_recurring_expense_state$_$this()._recurring_expense_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._recurring_expense_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._recurring_expense_state$_$v = t1; return _$result; } }; K._RecurringExpenseUIState_Object_EntityUIState.prototype = {}; N.ViewRecurringInvoiceList.prototype = {$isStopLoading: 1}; N.ViewRecurringInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; N.EditRecurringInvoice.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.ShowPdfRecurringInvoice.prototype = { get$invoice: function() { return this.invoice; } }; N.EditRecurringInvoiceItem.prototype = {$isPersistUI: 1}; N.UpdateRecurringInvoice.prototype = {$isPersistUI: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.UpdateRecurringInvoiceClient.prototype = {$isPersistUI: 1}; N.LoadRecurringInvoice.prototype = {}; N.LoadRecurringInvoices.prototype = {}; N.LoadRecurringInvoiceRequest.prototype = {$isStartLoading: 1}; N.LoadRecurringInvoiceFailure.prototype = { toString$0: function(_) { return "LoadRecurringInvoiceFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; N.LoadRecurringInvoiceSuccess.prototype = { toString$0: function(_) { return "LoadRecurringInvoiceSuccess{recurringInvoice: " + H.S(this.recurringInvoice) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.LoadRecurringInvoicesRequest.prototype = {$isStartLoading: 1}; N.LoadRecurringInvoicesFailure.prototype = { toString$0: function(_) { return "LoadRecurringInvoicesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; N.LoadRecurringInvoicesSuccess.prototype = { toString$0: function(_) { return "LoadRecurringInvoicesSuccess{recurringInvoices: " + H.S(this.recurringInvoices) + "}"; }, $isStopLoading: 1 }; N.AddRecurringInvoiceContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; N.RemoveRecurringInvoiceContact.prototype = {$isPersistUI: 1}; N.SaveRecurringInvoiceRequest.prototype = {$isStartSaving: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.SaveRecurringInvoiceSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.AddRecurringInvoiceSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$recurringInvoice: function() { return this.recurringInvoice; } }; N.AddRecurringInvoiceItem.prototype = {$isPersistUI: 1}; N.MoveRecurringInvoiceItem.prototype = {$isPersistUI: 1}; N.AddRecurringInvoiceItems.prototype = {$isPersistUI: 1}; N.UpdateRecurringInvoiceItem.prototype = {$isPersistUI: 1}; N.DeleteRecurringInvoiceItem.prototype = {$isPersistUI: 1}; N.SaveRecurringInvoiceFailure.prototype = {$isStopSaving: 1}; N.ArchiveRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; N.ArchiveRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.ArchiveRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; N.DeleteRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; N.DeleteRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.DeleteRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; N.RestoreRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; N.RestoreRecurringInvoicesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; N.RestoreRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; N.FilterRecurringInvoices.prototype = {$isPersistUI: 1}; N.SortRecurringInvoices.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; N.FilterRecurringInvoicesByState.prototype = {$isPersistUI: 1}; N.FilterRecurringInvoicesByStatus.prototype = {$isPersistUI: 1}; N.FilterRecurringInvoicesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterRecurringInvoicesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterRecurringInvoicesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.FilterRecurringInvoicesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; N.SaveRecurringInvoiceDocumentRequest.prototype = {$isStartSaving: 1, get$invoice: function() { return this.invoice; } }; N.SaveRecurringInvoiceDocumentFailure.prototype = {$isStopSaving: 1}; N.StartRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; N.StartRecurringInvoicesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; N.StartRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; N.StopRecurringInvoicesRequest.prototype = {$isStartSaving: 1}; N.StopRecurringInvoicesSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; N.StopRecurringInvoicesFailure.prototype = {$isStopSaving: 1}; N.handleRecurringInvoiceAction_closure.prototype = { call$1: function(recurringInvoice) { return recurringInvoice.get$id(recurringInvoice); }, $signature: 41 }; N.handleRecurringInvoiceAction_closure0.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_invoice; return b; }, $signature: 11 }; N.handleRecurringInvoiceAction_closure1.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_quote; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; N.handleRecurringInvoiceAction_closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_entityType = C.EntityType_credit; b.get$_invoice_model$_$this()._designId = this.designId; return b; }, $signature: 11 }; N.StartRecurringInvoiceMultiselect.prototype = {}; N.AddToRecurringInvoiceMultiselect.prototype = {}; N.RemoveFromRecurringInvoiceMultiselect.prototype = {}; N.ClearRecurringInvoiceMultiselect.prototype = {}; N.UpdateRecurringInvoiceTab.prototype = {$isPersistUI: 1}; Q._editRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s23_ = "/recurring_invoice/edit"; next.call$1(type$.legacy_EditRecurringInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s23_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewRecurringInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewRecurringInvoice_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewRecurringInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/recurring_invoice/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_invoice/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; Q._viewRecurringInvoiceList_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s18_ = "/recurring_invoice"; next.call$1(type$.legacy_ViewRecurringInvoiceList._as(dynamicAction)); if (store.get$_store$_state().staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s18_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s18_, new Q._viewRecurringInvoiceList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._viewRecurringInvoiceList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; Q._showPdfRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_showPdfRecurringInvoice_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_showPdfRecurringInvoice_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ShowPdfRecurringInvoice._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/recurring_invoice/pdf")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/recurring_invoice/pdf", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; Q._startRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_StartRecurringInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_start).then$1$1(0, new Q._startRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new Q._startRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._startRecurringInvoice__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; Q._startRecurringInvoice__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._stopRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_StopRecurringInvoicesRequest._as(dynamicAction); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoiceIds, C.EntityAction_stop).then$1$1(0, new Q._stopRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new Q._stopRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._stopRecurringInvoice__closure.prototype = { call$1: function(invoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StopRecurringInvoicesSuccess(invoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; Q._stopRecurringInvoice__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StopRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._archiveRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_ArchiveRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = P.List_List$of(new H.MappedListIterable(t1, new Q._archiveRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new Q._archiveRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._archiveRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._archiveRecurringInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringInvoiceState.map._map$_map, id); }, $signature: 64 }; Q._archiveRecurringInvoice__closure0.prototype = { call$1: function(recurringInvoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ArchiveRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; Q._archiveRecurringInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ArchiveRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._deleteRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_DeleteRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = P.List_List$of(new H.MappedListIterable(t1, new Q._deleteRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new Q._deleteRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._deleteRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._deleteRecurringInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringInvoiceState.map._map$_map, id); }, $signature: 64 }; Q._deleteRecurringInvoice__closure0.prototype = { call$1: function(recurringInvoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.DeleteRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; Q._deleteRecurringInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.DeleteRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._restoreRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevRecurringInvoices; type$.legacy_RestoreRecurringInvoicesRequest._as(dynamicAction); t1 = dynamicAction.recurringInvoiceIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvoiceEntity*>"); prevRecurringInvoices = P.List_List$of(new H.MappedListIterable(t1, new Q._restoreRecurringInvoice__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new Q._restoreRecurringInvoice__closure0(store, dynamicAction), type$.Null).catchError$1(new Q._restoreRecurringInvoice__closure1(store, prevRecurringInvoices, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._restoreRecurringInvoice__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).recurringInvoiceState.map._map$_map, id); }, $signature: 64 }; Q._restoreRecurringInvoice__closure0.prototype = { call$1: function(recurringInvoices) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.RestoreRecurringInvoicesSuccess(recurringInvoices)); this.action.completer.complete$1(0, null); }, $signature: 42 }; Q._restoreRecurringInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.RestoreRecurringInvoicesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._saveRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var updatedInvoice; type$.legacy_SaveRecurringInvoiceRequest._as(dynamicAction); updatedInvoice = dynamicAction.recurringInvoice.rebuild$1(new Q._saveRecurringInvoice__closure(dynamicAction)); this.repository.saveData$3$action(J.get$credentials$z(store.get$_store$_state()), updatedInvoice, dynamicAction.action).then$1$1(0, new Q._saveRecurringInvoice__closure0(dynamicAction, store), type$.Null).catchError$1(new Q._saveRecurringInvoice__closure1(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveRecurringInvoice__closure.prototype = { call$1: function(b) { b.get$lineItems().replace$1(0, J.where$1$ax(this.action.recurringInvoice.lineItems._list, new Q._saveRecurringInvoice___closure())); return b; }, $signature: 11 }; Q._saveRecurringInvoice___closure.prototype = { call$1: function(item) { return !item.get$isEmpty(item); }, $signature: 58 }; Q._saveRecurringInvoice__closure0.prototype = { call$1: function(recurringInvoice) { var t1 = this.action, t2 = this.store; if (t1.recurringInvoice.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new N.AddRecurringInvoiceSuccess(recurringInvoice)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceSuccess(recurringInvoice)); t1.completer.complete$1(0, recurringInvoice); }, $signature: 68 }; Q._saveRecurringInvoice__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q._loadRecurringInvoice_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringInvoice._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoiceRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.recurringInvoiceId).then$1$1(0, new Q._loadRecurringInvoice__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadRecurringInvoice__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadRecurringInvoice__closure.prototype = { call$1: function(recurringInvoice) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoiceSuccess(recurringInvoice)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 68 }; Q._loadRecurringInvoice__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoiceFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; Q._loadRecurringInvoices_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadRecurringInvoices._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoicesRequest()); this.repository.loadList$2(state.get$credentials(state), state.get$filterDeletedClients()).then$1$1(0, new Q._loadRecurringInvoices__closure(store, dynamicAction), type$.Null).catchError$1(new Q._loadRecurringInvoices__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._loadRecurringInvoices__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoicesSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadQuotes()); }, $signature: 258 }; Q._loadRecurringInvoices__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoicesFailure(error)); this.action.toString; }, $signature: 3 }; Q._saveDocument_closure1.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveRecurringInvoiceDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.invoice, dynamicAction.multipartFile).then$1$1(0, new Q._saveDocument__closure3(store, dynamicAction), type$.Null).catchError$1(new Q._saveDocument__closure4(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; Q._saveDocument__closure3.prototype = { call$1: function(invoice) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceSuccess(invoice)); this.action.completer.complete$1(0, null); }, $signature: 68 }; Q._saveDocument__closure4.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; A.recurringInvoiceUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$recurringInvoiceListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer15().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._invoice_model$_$v = t4; t1 = $.$get$editingItemIndexReducer().call$2(t2.editingItemIndex, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_editingItemIndex = t1; t1 = $.$get$selectedIdReducer15().call$2(t2.selectedId, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer15().call$2(t2.forceSelected, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer6().call$2(t2.tabIndex, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex = t1; t3 = $.$get$historyActivityIdReducer1().call$2(t2.historyActivityId, t3); b.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_historyActivityId = t3; return b; }, $signature: 1531 }; A.forceSelectedReducer_closure119.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1532 }; A.forceSelectedReducer_closure120.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1533 }; A.forceSelectedReducer_closure121.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1534 }; A.forceSelectedReducer_closure122.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1535 }; A.forceSelectedReducer_closure123.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1536 }; A.forceSelectedReducer_closure124.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1537 }; A.forceSelectedReducer_closure125.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1538 }; A.forceSelectedReducer_closure126.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1539 }; A.tabIndexReducer_closure13.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1540 }; A.tabIndexReducer_closure14.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; A.historyActivityIdReducer_closure1.prototype = { call$2: function(index, action) { return action.activityId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 611 }; A.editingItemIndexReducer_closure.prototype = { call$2: function(index, action) { action.toString; return null; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1542 }; A.editingItemIndexReducer_closure0.prototype = { call$2: function(index, action) { return action.itemIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1543 }; A.selectedIdReducer_closure237.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1544 }; A.selectedIdReducer_closure238.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1545 }; A.selectedIdReducer_closure239.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_recurringInvoice ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; A.selectedIdReducer_closure240.prototype = { call$2: function(selectedId, action) { return action.recurringInvoiceId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1546 }; A.selectedIdReducer_closure241.prototype = { call$2: function(selectedId, action) { return action.recurringInvoice.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1547 }; A.selectedIdReducer_closure242.prototype = { call$2: function(selectedId, action) { var t1 = action.get$invoice(); return t1.get$id(t1); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1548 }; A.selectedIdReducer_closure243.prototype = { call$2: function(selectedId, action) { return action.invoice.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 611 }; A.selectedIdReducer_closure244.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; A.selectedIdReducer_closure245.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; A.selectedIdReducer_closure246.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1549 }; A.selectedIdReducer_closure247.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1550 }; A.selectedIdReducer_closure248.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1551 }; A.selectedIdReducer_closure249.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1552 }; A.selectedIdReducer_closure250.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1553 }; A.selectedIdReducer_closure251.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1554 }; A.selectedIdReducer_closure252.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1555 }; A.selectedIdReducer_closure253.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1556 }; A.selectedIdReducer_closure254.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_recurringInvoice ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; A.selectedIdReducer_closure255.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_recurringInvoice ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; A.editingReducer_closure74.prototype = { call$2: function(recurringInvoice, action) { return action.recurringInvoice.rebuild$1(new A.editingReducer__closure33()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1557 }; A.editingReducer__closure33.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; A.editingReducer_closure75.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure32()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 610 }; A.editingReducer__closure32.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; A.editingReducer_closure76.prototype = { call$2: function(invoice, action) { return invoice.moveLineItem$2(action.oldIndex, action.newIndex); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1559 }; A.editingReducer_closure77.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure31()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 609 }; A.editingReducer__closure31.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; A.editingReducer_closure78.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure30()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 608 }; A.editingReducer__closure30.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; return b; }, $signature: 11 }; A.editingReducer_closure79.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure29(action.client)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1562 }; A.editingReducer__closure29.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._invoice_model$_isChanged = true; t1 = this.client; t2 = t1 == null; t3 = t2 ? null : t1.id; if (t3 == null) t3 = ""; b.get$_invoice_model$_$this()._clientId = t3; t3 = b.get$invitations(); t1 = t2 ? null : t1.get$emailContacts(); if (t1 == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ContactEntity); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,InvitationEntity*>"); t3.replace$1(0, P.List_List$of(new H.MappedListIterable(t1, new A.editingReducer___closure1(), t2), true, t2._eval$1("ListIterable.E"))); return b; }, $signature: 11 }; A.editingReducer___closure1.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; A.editingReducer_closure80.prototype = { call$2: function(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1563 }; A.editingReducer_closure81.prototype = { call$2: function(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1564 }; A.editingReducer_closure82.prototype = { call$2: function(recurringInvoices, action) { return J.$index$asx(action.recurringInvoices, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1565 }; A.editingReducer_closure83.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure28(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1566 }; A.editingReducer__closure28.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action, t3 = t2.invitation; t2 = t3 == null ? Q.InvitationEntity_InvitationEntity(t2.contact.id) : t3; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; A.editingReducer_closure84.prototype = { call$2: function(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure27(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1567 }; A.editingReducer__closure27.prototype = { call$1: function(b) { var t1 = b.get$invitations(), t2 = this.action.invitation; J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 11 }; A._addRecurringInvoiceItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.item); return b; }, $signature: 11 }; A._addRecurringInvoiceItems_closure.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.action.items); return b; }, $signature: 11 }; A._removeRecurringInvoiceItem_closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$lineItems().get$_safeList(), this.action.index); return b; }, $signature: 11 }; A._updateRecurringInvoiceItem_closure.prototype = { call$1: function(b) { var t1 = b.get$lineItems(), t2 = this.action; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t2.index, t2.item); return b; }, $signature: 11 }; A._filterRecurringInvoicesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterRecurringInvoicesByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterRecurringInvoicesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterRecurringInvoicesByStatus_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterRecurringInvoicesByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.action.status); return b; }, $signature: 2 }; A._filterRecurringInvoices_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.recurringInvoiceListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortRecurringInvoices_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure15.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure15.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure15.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure15.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._archiveRecurringInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 233 }; A._deleteRecurringInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 233 }; A._emailRecurringInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action, t3 = t2.get$invoice(); t1.$indexSet(0, t3.get$id(t3), t2.get$invoice()); return b; }, $signature: 289 }; A._restoreRecurringInvoiceSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.recurringInvoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 233 }; A._startRecurringInvoicesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 233 }; A._stopRecurringInvoicesSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.invoices), t2 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_recurring_invoice_state$_$this(); t5 = t4._recurring_invoice_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._recurring_invoice_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 233 }; A._addRecurringInvoice_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.recurringInvoice, t3 = t2.id; t1.$indexSet(0, t3, t2.rebuild$1(new A._addRecurringInvoice__closure())); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 289 }; A._addRecurringInvoice__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; A._updateRecurringInvoice_closure.prototype = { call$1: function(b) { 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: 289 }; A._updateRecurringInvoice__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_invoice_model$_$this()._invoice_model$_loadedAt = t1; return b; }, $signature: 11 }; L.memoizedFilteredRecurringInvoiceList_closure.prototype = { call$6: function(selectionState, recurringInvoiceMap, clientMap, recurringInvoiceList, recurringInvoiceListState, userMap) { return L.filteredRecurringInvoicesSelector(selectionState, recurringInvoiceMap, clientMap, recurringInvoiceList, recurringInvoiceListState, userMap); }, $signature: 1570 }; L.filteredRecurringInvoicesSelector_closure.prototype = { call$1: function(recurringInvoiceId) { var t2, t3, _this = this, invoice = J.$index$asx(_this.recurringInvoiceMap._map$_map, recurringInvoiceId), t1 = invoice.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (invoice.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = _this.filterEntityType; if (t1 === C.EntityType_client && client.id !== _this.filterEntityId) return false; else if (t1 === C.EntityType_user && invoice.assignedUserId != _this.filterEntityId) return false; else if (t1 === C.EntityType_subscription && invoice.subscriptionId !== _this.filterEntityId) return false; else if (t1 === C.EntityType_design && invoice.designId !== _this.filterEntityId) return false; else if (t1 === C.EntityType_group && client.groupId !== _this.filterEntityId) return false; t1 = _this.invoiceListState; if (!invoice.matchesStates$1(t1.stateFilters)) return false; if (!invoice.matchesStatuses$1(t1.statusFilters)) return false; t2 = t1.filter; if (!invoice.matchesFilter$1(t2) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t2.toLowerCase())) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, invoice.customValue3)) return false; else { t1 = t1.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, invoice.customValue4)) return false; } } } return true; }, $signature: 16 }; L.filteredRecurringInvoicesSelector_closure0.prototype = { call$2: function(recurringInvoiceAId, recurringInvoiceBId) { var _this = this, t1 = _this.recurringInvoiceMap._map$_map, t2 = J.getInterceptor$asx(t1), recurringInvoiceA = t2.$index(t1, recurringInvoiceAId), recurringInvoiceB = t2.$index(t1, recurringInvoiceBId); t1 = _this.invoiceListState; t2 = t1.sortField; return recurringInvoiceA.compareTo$5$clientMap$invoice$sortAscending$sortField$userMap(0, _this.clientMap, recurringInvoiceB, t1.sortAscending, t2, _this.userMap); }, $signature: 18 }; L.memoizedRecurringInvoiceStatsForClient_closure.prototype = { call$2: function(clientId, invoiceMap) { return L.recurringInvoiceStatsForClient(clientId, invoiceMap); }, $signature: 82 }; L.recurringInvoiceStatsForClient_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.clientId === this.clientId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; L.memoizedRecurringInvoiceStatsForUser_closure.prototype = { call$2: function(userId, invoiceMap) { return L.recurringInvoiceStatsForUser(userId, invoiceMap); }, $signature: 82 }; L.recurringInvoiceStatsForUser_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.assignedUserId == this.userId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 55 }; L.memoizedRecurringInvoiceStatsForInvoice_closure.prototype = { call$2: function(invoiceId, invoiceMap) { return L.recurringInvoiceStatsForInvoice(invoiceId, invoiceMap); }, $signature: 82 }; L.recurringInvoiceStatsForInvoice_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.recurringId == this.recurrinInvoiceId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.isDeleted) ++this._box_0.countArchived; }, $signature: 55 }; L.memoizedRecurringInvoiceStatsForDesign_closure.prototype = { call$2: function(designId, recurringInvoiceMap) { return L.recurringInvoiceStatsForDesign(designId, recurringInvoiceMap); }, $signature: 82 }; L.recurringInvoiceStatsForDesign_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.designId === this.designId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; L.memoizedRecurringInvoiceStatsForSubscription_closure.prototype = { call$2: function(subscriptionId, invoiceMap) { return L.recurringInvoiceStatsForSubscription(subscriptionId, invoiceMap); }, $signature: 82 }; L.recurringInvoiceStatsForSubscription_closure.prototype = { call$2: function(invoiceId, invoice) { if (invoice.subscriptionId === this.subscriptionId) if (!invoice.get$isArchived() && !invoice.isDeleted) ++this._box_0.countActive; else if (invoice.get$isArchived()) ++this._box_0.countArchived; }, $signature: 55 }; Q.RecurringInvoiceState.prototype = { $get$1: function(_, invoiceId) { var _null = null, t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, invoiceId)) return t2.$index(t1, invoiceId); else return Q.InvoiceEntity_InvoiceEntity(_null, _null, invoiceId, _null, _null); }, loadRecurringInvoices$1: function(clients) { return this.rebuild$1(new Q.RecurringInvoiceState_loadRecurringInvoices_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new Q.RecurringInvoiceState_loadRecurringInvoices_closure0(), new Q.RecurringInvoiceState_loadRecurringInvoices_closure1(), type$.legacy_String, type$.legacy_InvoiceEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q.RecurringInvoiceState_loadRecurringInvoices_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.RecurringInvoiceState_loadRecurringInvoices_closure1.prototype = { call$1: function(item) { return item; }, $signature: 158 }; Q.RecurringInvoiceState_loadRecurringInvoices_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 289 }; Q.RecurringInvoiceUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Q._$RecurringInvoiceStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_n67), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.RecurringInvoiceStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_InvoiceEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._recurring_invoice_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_n67)); break; case "list": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._recurring_invoice_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_8zm; }, get$wireName: function() { return "RecurringInvoiceState"; } }; Q._$RecurringInvoiceUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_fXI)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, t9, result = new Q.RecurringInvoiceUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_InvoiceEntity, t3 = type$.legacy_ActivityEntity, t4 = type$.ListBuilder_legacy_ActivityEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_editing; if (t6 == null) { t6 = new Q.InvoiceEntityBuilder(); t7 = t6.get$_invoice_model$_$this(); t8 = t7._invoice_model$_activities; if (t8 == null) { t8 = new D.ListBuilder(t4); t8.__ListBuilder__list = P.List_List$from(C.List_empty, true, t3); t7._invoice_model$_activities = t8; t7 = t8; } else t7 = t8; t8 = D.BuiltList_BuiltList$from(C.List_empty, t3); t9 = t7.$ti; if (t9._eval$1("_BuiltList<1>")._is(t8)) { t7.__ListBuilder__list = t8._list; t7._listOwner = t8; } else { t7.__ListBuilder__list = P.List_List$from(t8, true, t9._precomputed1); t7._listOwner = null; } t6.get$_invoice_model$_$this()._invoice_model$_paidToDate = 0; t6.get$_invoice_model$_$this()._autoBillEnabled = false; t6.get$_invoice_model$_$this()._subscriptionId = ""; t5._recurring_invoice_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_fXI)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._invoice_model$_$v = t6; break; case "listUIState": t5 = result.get$_recurring_invoice_state$_$this(); t6 = t5._recurring_invoice_state$_listUIState; t5 = t6 == null ? t5._recurring_invoice_state$_listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_cMx; }, get$wireName: function() { return "RecurringInvoiceUIState"; } }; Q._$RecurringInvoiceState.prototype = { rebuild$1: function(updates) { var t1 = new Q.RecurringInvoiceStateBuilder(); t1._recurring_invoice_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.RecurringInvoiceState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._recurring_invoice_state$__hashCode; return t1 == null ? _this._recurring_invoice_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringInvoiceState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Q.RecurringInvoiceStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_map; return t2 == null ? t1._recurring_invoice_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_InvoiceEntity) : t2; }, get$list: function(_) { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_list; return t2 == null ? t1._recurring_invoice_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_recurring_invoice_state$_$this: function() { var t1, t2, _this = this, $$v = _this._recurring_invoice_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._recurring_invoice_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._recurring_invoice_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._recurring_invoice_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._recurring_invoice_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Q._$RecurringInvoiceState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("RecurringInvoiceState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._recurring_invoice_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q._$RecurringInvoiceUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Q.RecurringInvoiceUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingItemIndex == other.editingItemIndex) if (_this.historyActivityId == other.historyActivityId) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._recurring_invoice_state$__hashCode; return t1 == null ? _this._recurring_invoice_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingItemIndex)), J.get$hashCode$(_this.historyActivityId)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("RecurringInvoiceUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingItemIndex", _this.editingItemIndex); t2.add$2(t1, "historyActivityId", _this.historyActivityId); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Q.RecurringInvoiceUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_editing; if (t2 == null) { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t1._recurring_invoice_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_recurring_invoice_state$_$this(), t2 = t1._recurring_invoice_state$_listUIState; return t2 == null ? t1._recurring_invoice_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_recurring_invoice_state$_$this: function() { var t1, t2, _this = this, $$v = _this._recurring_invoice_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new Q.InvoiceEntityBuilder(); Q.InvoiceEntity__initializeBuilder(t2); t2._invoice_model$_$v = t1; t1 = t2; } _this._recurring_invoice_state$_editing = t1; _this._recurring_invoice_state$_editingItemIndex = $$v.editingItemIndex; _this._recurring_invoice_state$_historyActivityId = $$v.historyActivityId; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._recurring_invoice_state$_listUIState = t2; _this._recurring_invoice_state$_selectedId = $$v.selectedId; _this._recurring_invoice_state$_forceSelected = $$v.forceSelected; _this._recurring_invoice_state$_tabIndex = $$v.tabIndex; _this._recurring_invoice_state$_saveCompleter = $$v.saveCompleter; _this._recurring_invoice_state$_cancelCompleter = $$v.cancelCompleter; _this._recurring_invoice_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, exception, _this = this, _s23_ = "RecurringInvoiceUIState", _$result = null; try { _$result0 = _this._recurring_invoice_state$_$v; if (_$result0 == null) { t1 = _this._recurring_invoice_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_editingItemIndex; t3 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_historyActivityId; t4 = _this.get$listUIState().build$0(0); t5 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_selectedId; t6 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_forceSelected; t7 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_tabIndex; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s23_, "tabIndex")); t8 = _this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_saveCompleter; _$result0 = Q._$RecurringInvoiceUIState$_(_this.get$_recurring_invoice_state$_$this()._recurring_invoice_state$_cancelCompleter, t1, t2, t6, t3, t4, t8, t5, t7); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._recurring_invoice_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s23_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._recurring_invoice_state$_$v = t1; return _$result; } }; Q._RecurringInvoiceUIState_Object_EntityUIState.prototype = {}; K.ViewReports.prototype = {$isPersistUI: 1}; K.UpdateReportSettings.prototype = {$isPersistUI: 1, get$group: function() { return this.group; } }; R._viewReports_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1; type$.legacy_ViewReports._as(dynamicAction); t1 = $.$get$navigatorKey(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); dynamicAction.toString; M.checkForChanges(new R._viewReports__closure(store, next, dynamicAction), t1, false, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; R._viewReports__closure.prototype = { call$0: function() { var _s8_ = "/reports", t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s8_)); this.next.call$1(this.action); if (t1.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s8_, new R._viewReports___closure(), type$.legacy_Object); }, $signature: 1 }; R._viewReports___closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; X.reportsUIReducer_closure.prototype = { call$1: function(b) { b.get$_reports_state$_$this()._group = ""; b.get$_reports_state$_$this()._subgroup = ""; b.get$_reports_state$_$this()._selectedGroup = ""; b.get$_reports_state$_$this()._chart = ""; return b; }, $signature: 402 }; X.reportsUIReducer_closure0.prototype = { call$1: function(b) { b.get$_reports_state$_$this()._report = this.action.report; return b; }, $signature: 402 }; X.reportsUIReducer_closure1.prototype = { call$1: function(b) { var t2, _this = this, t1 = _this.action; b.get$_reports_state$_$this()._report = t1.report; t2 = t1.group; if (t2 == null) t2 = _this.state.group; b.get$_reports_state$_$this()._group = t2; t2 = t1.selectedGroup; if (t2 == null) t2 = _this.state.selectedGroup; b.get$_reports_state$_$this()._selectedGroup = t2; t2 = t1.subgroup; if (t2 == null) t2 = _this.state.subgroup; b.get$_reports_state$_$this()._subgroup = t2; t2 = t1.chart; if (t2 == null) t2 = _this.state.chart; b.get$_reports_state$_$this()._chart = t2; t2 = t1.customStartDate; if (t2 == null) t2 = _this.state.customStartDate; b.get$_reports_state$_$this()._customStartDate = t2; t2 = t1.customEndDate; if (t2 == null) t2 = _this.state.customEndDate; b.get$_reports_state$_$this()._customEndDate = t2; t2 = b.get$filters(); t1 = t1.filters; t2.replace$1(0, t1 == null ? _this.state.filters : t1); return b; }, $signature: 402 }; G.ReportsUIState.prototype = { get$isGroupByFiltered: function() { var t1 = this.group, t2 = this.filters._map$_map, t3 = J.getInterceptor$x(t2); if (t3.containsKey$1(t2, t1)) { t1 = t3.$index(t2, t1); t1.toString; t1 = J.get$length$asx(t1) !== 0; } else t1 = false; return t1; } }; G._$ReportsUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["report", serializers.serialize$2$specifiedType(object.report, C.FullType_h8g), "group", serializers.serialize$2$specifiedType(object.group, C.FullType_h8g), "selectedGroup", serializers.serialize$2$specifiedType(object.selectedGroup, C.FullType_h8g), "chart", serializers.serialize$2$specifiedType(object.chart, C.FullType_h8g), "subgroup", serializers.serialize$2$specifiedType(object.subgroup, C.FullType_h8g), "customStartDate", serializers.serialize$2$specifiedType(object.customStartDate, C.FullType_h8g), "customEndDate", serializers.serialize$2$specifiedType(object.customEndDate, C.FullType_h8g), "filters", serializers.serialize$2$specifiedType(object.filters, C.FullType_LNO)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, t3, result = new G.ReportsUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "report": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._report = t2; break; case "group": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._group = t2; break; case "selectedGroup": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._selectedGroup = t2; break; case "chart": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._chart = t2; break; case "subgroup": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._subgroup = t2; break; case "customStartDate": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._customStartDate = t2; break; case "customEndDate": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_reports_state$_$this()._customEndDate = t2; break; case "filters": t2 = result.get$_reports_state$_$this(); t3 = t2._filters; if (t3 == null) { t3 = new A.MapBuilder(null, $, null, t1); t3.replace$1(0, C.Map_empty0); t2._filters = t3; t2 = t3; } else t2 = t3; t2.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_CHP; }, get$wireName: function() { return "ReportsUIState"; } }; G._$ReportsUIState.prototype = { rebuild$1: function(updates) { var t1 = new G.ReportsUIStateBuilder(); t1._reports_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof G.ReportsUIState && _this.report === other.report && _this.group === other.group && _this.selectedGroup === other.selectedGroup && _this.chart === other.chart && _this.subgroup === other.subgroup && _this.customStartDate === other.customStartDate && _this.customEndDate === other.customEndDate && J.$eq$(_this.filters, other.filters); }, get$hashCode: function(_) { var _this = this, t1 = _this._reports_state$__hashCode; return t1 == null ? _this._reports_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSString_methods.get$hashCode(_this.report)), C.JSString_methods.get$hashCode(_this.group)), C.JSString_methods.get$hashCode(_this.selectedGroup)), C.JSString_methods.get$hashCode(_this.chart)), C.JSString_methods.get$hashCode(_this.subgroup)), C.JSString_methods.get$hashCode(_this.customStartDate)), C.JSString_methods.get$hashCode(_this.customEndDate)), J.get$hashCode$(_this.filters))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ReportsUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "report", _this.report); t2.add$2(t1, "group", _this.group); t2.add$2(t1, "selectedGroup", _this.selectedGroup); t2.add$2(t1, "chart", _this.chart); t2.add$2(t1, "subgroup", _this.subgroup); t2.add$2(t1, "customStartDate", _this.customStartDate); t2.add$2(t1, "customEndDate", _this.customEndDate); t2.add$2(t1, "filters", _this.filters); return t2.toString$0(t1); }, get$group: function() { return this.group; } }; G.ReportsUIStateBuilder.prototype = { get$group: function() { return this.get$_reports_state$_$this()._group; }, get$filters: function() { var t1 = this.get$_reports_state$_$this(), t2 = t1._filters; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._filters = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$_reports_state$_$this: function() { var t1, t2, _this = this, $$v = _this._reports_state$_$v; if ($$v != null) { _this._report = $$v.report; _this._group = $$v.group; _this._selectedGroup = $$v.selectedGroup; _this._chart = $$v.chart; _this._subgroup = $$v.subgroup; _this._customStartDate = $$v.customStartDate; _this._customEndDate = $$v.customEndDate; t1 = $$v.filters; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._filters = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); _this._reports_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s14_ = "ReportsUIState", _$result = null; try { _$result0 = _this._reports_state$_$v; if (_$result0 == null) { t1 = _this.get$_reports_state$_$this()._report; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "report")); t2 = _this.get$_reports_state$_$this()._group; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "group")); t3 = _this.get$_reports_state$_$this()._selectedGroup; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "selectedGroup")); t4 = _this.get$_reports_state$_$this()._chart; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "chart")); t5 = _this.get$_reports_state$_$this()._subgroup; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "subgroup")); t6 = _this.get$_reports_state$_$this()._customStartDate; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "customStartDate")); t7 = _this.get$_reports_state$_$this()._customEndDate; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "customEndDate")); _$result0 = G._$ReportsUIState$_(t4, t7, t6, _this.get$filters().build$0(0), t2, t1, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "filters"; _this.get$filters().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._reports_state$_$v = t1; return _$result; } }; L.ViewSettings.prototype = {$isPersistUI: 1, get$company: function() { return this.company; }, get$group: function() { return this.group; }, get$user: function() { return this.user; } }; L.ClearSettingsFilter.prototype = {$isPersistUI: 1}; L.ResetSettings.prototype = {}; L.UpdateSettings.prototype = {$isPersistUI: 1}; L.UpdateSettingsTab.prototype = {$isPersistUI: 1}; L.UpdatedSetting.prototype = {$isPersistUI: 1}; L.UpdateSettingsTemplate.prototype = {$isPersistUI: 1}; L.UpdateUserSettings.prototype = {$isPersistUI: 1, get$user: function() { return this.user; } }; L.UploadLogoRequest.prototype = {$isStartSaving: 1}; L.UploadLogoFailure.prototype = {$isStopSaving: 1}; L.SaveUserSettingsRequest.prototype = {$isStartSaving: 1, get$user: function() { return this.user; } }; L.SaveUserSettingsSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1}; L.SaveUserSettingsFailure.prototype = {$isStopSaving: 1}; L.SaveAuthUserRequest.prototype = {$isStartSaving: 1, get$user: function() { return this.user; } }; L.SaveAuthUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user: function() { return this.user; } }; L.SaveAuthUserFailure.prototype = {$isStopSaving: 1}; L.ConnecOAuthUserRequest.prototype = {$isStartSaving: 1}; L.ConnecOAuthUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user: function() { return this.user; } }; L.ConnecOAuthUserFailure.prototype = {$isStopSaving: 1}; L.DisableTwoFactorRequest.prototype = {$isStartSaving: 1}; L.DisableTwoFactorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; L.DisableTwoFactorFailure.prototype = {$isStopSaving: 1}; L.ConnecGmailUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user: function() { return this.user; } }; L.ConnecGmailUserFailure.prototype = {$isStopSaving: 1}; L.FilterSettings.prototype = {$isPersistUI: 1}; D._viewSettings_closure.prototype = { call$3: function(store, dynamicAction, next) { var uiState, t1; type$.legacy_ViewSettings._as(dynamicAction); uiState = store.get$_store$_state().uiState; t1 = $.$get$navigatorKey(); t1.toString; M.checkForChanges(new D._viewSettings__closure(dynamicAction, uiState, store, next), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), dynamicAction.force, store); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._viewSettings__closure.prototype = { call$0: function() { var route, t4, t5, t6, _this = this, t1 = _this.action, t2 = t1.section, t3 = t2 == null; if (!t3) route = "/settings" + ("/" + t2); else { t2 = _this.uiState; route = t2.get$mainRoute() === "settings" ? "/settings/company_details" : "/settings" + ("/" + t2.settingsUIState.section); } t2 = _this.store; t4 = t2.get$_store$_state(); t5 = t4.userCompanyStates; t6 = t4.uiState.selectedCompanyIndex; if (J.$index$asx(t5._list, t6).get$isStale() || t4.staticState.get$isStale()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(route)); _this.next.call$1(t1); if (t2.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) { t1 = type$.legacy_Object; if (t3) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/settings", new D._viewSettings___closure(), t1); else $.$get$navigatorKey().get$currentState().pushNamed$1$1(route, t1); } }, $signature: 1 }; D._viewSettings___closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; D._saveCompany_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveCompanyRequest._as(dynamicAction); this.settingsRepository.saveCompany$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.company).then$1$1(0, new D._saveCompany__closure(store, dynamicAction), type$.Null).catchError$1(new D._saveCompany__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._saveCompany__closure.prototype = { call$1: function(company) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanySuccess(company)); this.action.completer.complete$0(0); }, $signature: 607 }; D._saveCompany__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanyFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._saveAuthUser_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveAuthUserRequest._as(dynamicAction); this.settingsRepository.saveAuthUser$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.user, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new D._saveAuthUser__closure(store, dynamicAction), type$.Null).catchError$1(new D._saveAuthUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._saveAuthUser__closure.prototype = { call$1: function(user) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveAuthUserSuccess(user)); t1 = this.action.completer; if (t1 != null) t1.complete$0(0); }, $signature: 174 }; D._saveAuthUser__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.SaveAuthUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; D._connectOAuthUser_closure0.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_ConnecOAuthUserRequest._as(dynamicAction); this.settingsRepository.connectOAuthUser$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.password, dynamicAction.idToken).then$1$1(0, new D._connectOAuthUser__closure(store, dynamicAction), type$.Null).catchError$1(new D._connectOAuthUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._connectOAuthUser__closure.prototype = { call$1: function(user) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ConnecOAuthUserSuccess(user)); this.action.completer.complete$0(0); }, $signature: 174 }; D._connectOAuthUser__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ConnecOAuthUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._connectGmailUser_closure0.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_ConnecGmailUserRequest._as(dynamicAction); this.settingsRepository.connectGmailUser$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.get$password(dynamicAction), dynamicAction.get$idToken(), dynamicAction.get$serverAuthCode()).then$1$1(0, new D._connectGmailUser__closure(store, dynamicAction), type$.Null).catchError$1(new D._connectGmailUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._connectGmailUser__closure.prototype = { call$1: function(user) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ConnecGmailUserSuccess(user)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$0(0); }, $signature: 174 }; D._connectGmailUser__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ConnecGmailUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; D._disableTwoFactor_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_DisableTwoFactorRequest._as(dynamicAction); this.settingsRepository.disableTwoFactor$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.password, dynamicAction.idToken).then$1$1(0, new D._disableTwoFactor__closure(store, dynamicAction), type$.Null).catchError$1(new D._disableTwoFactor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._disableTwoFactor__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.DisableTwoFactorSuccess()); this.action.completer.complete$0(0); }, $signature: 20 }; D._disableTwoFactor__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.DisableTwoFactorFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._saveSettings_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveUserSettingsRequest._as(dynamicAction); this.settingsRepository.saveUserSettings$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.user).then$1$1(0, new D._saveSettings__closure(store, dynamicAction), type$.Null).catchError$1(new D._saveSettings__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._saveSettings__closure.prototype = { call$1: function(userCompany) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveUserSettingsSuccess(userCompany)); this.action.completer.complete$0(0); }, $signature: 702 }; D._saveSettings__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveUserSettingsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._uploadLogo_closure.prototype = { call$3: function(store, dynamicAction, next) { var state, t1, settingsState, t2, t3, entityId; type$.legacy_UploadLogoRequest._as(dynamicAction); state = store.get$_store$_state(); t1 = state.uiState; settingsState = t1.settingsUIState; t2 = dynamicAction.type; if (t2 === C.EntityType_company) { t3 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; entityId = J.$index$asx(t3._list, t1).userCompany.company.id; } else entityId = t2 === C.EntityType_group ? settingsState.group.id : settingsState.client.id; this.settingsRepository.uploadLogo$4(J.get$credentials$z(store.get$_store$_state()), entityId, dynamicAction.multipartFile, t2).then$1$1(0, new D._uploadLogo__closure(dynamicAction, store), type$.Null).catchError$1(new D._uploadLogo__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._uploadLogo__closure.prototype = { call$1: function(entity) { var t3, t1 = this.action, t2 = t1.type; if (t2 === C.EntityType_client) { type$.legacy_ClientEntity._as(entity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveClientSuccess(entity)); } else { t3 = this.store; if (t2 === C.EntityType_group) { type$.legacy_GroupEntity._as(entity); J.$index$asx(t3.get$_dispatchers(), 0).call$1(new Q.SaveGroupSuccess(entity)); } else { type$.legacy_CompanyEntity._as(entity); J.$index$asx(t3.get$_dispatchers(), 0).call$1(new E.SaveCompanySuccess(entity)); } } t1.completer.complete$0(0); }, $signature: 365 }; D._uploadLogo__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UploadLogoFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._saveDocument_closure3.prototype = { call$3: function(store, dynamicAction, next) { var state, t1, t2, t3; type$.legacy_SaveCompanyDocumentRequest._as(dynamicAction); state = store.get$_store$_state(); if (Y.cleanApiUrl(state.authState.url) === "https://invoicing.co") { t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).userCompany.account.plan === "enterprise"; t1 = t2; } else t1 = true; if (t1) { t1 = J.get$credentials$z(store.get$_store$_state()); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; this.repository.uploadDocument$3(t1, J.$index$asx(t2._list, t3).userCompany.company, dynamicAction.multipartFile).then$1$1(0, new D._saveDocument__closure7(store, dynamicAction), type$.Null).catchError$1(new D._saveDocument__closure8(store, dynamicAction)); } else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.SaveCompanyDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._saveDocument__closure7.prototype = { call$1: function(company) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanySuccess(company)); this.action.completer.complete$1(0, null); }, $signature: 607 }; D._saveDocument__closure8.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanyDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; Q.settingsUIReducer_closure.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure14(action, state)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1574 }; Q.settingsUIReducer__closure14.prototype = { call$1: function(b) { var t6, t7, _this = this, _s5_ = "other", t1 = b.get$company(), t2 = _this.action, t3 = t2.company, t4 = t3 == null, t5 = t4 ? _this.state.company : t3; if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._company_model$_$v = t5; t1 = b.get$origCompany(); if (t4) t3 = _this.state.origCompany; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._company_model$_$v = t3; t1 = b.get$group(); t3 = t2.group; t4 = t3 == null; t5 = t4 ? _this.state.group : t3; if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._group_model$_$v = t5; t1 = b.get$origGroup(); if (t4) t3 = _this.state.origGroup; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._group_model$_$v = t3; t1 = b.get$client(b); t3 = t2.client; t5 = t3 == null; t6 = t5 ? _this.state.client : t3; if (t6 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._client_model$_$v = t6; t1 = b.get$origClient(); if (t5) t3 = _this.state.origClient; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._client_model$_$v = t3; t1 = b.get$user(); t3 = t2.user; t6 = t3 == null; t7 = t6 ? _this.state.user : t3; if (t7 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._user_model$_$v = t7; t1 = b.get$origUser(); if (t6) t3 = _this.state.origUser; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._user_model$_$v = t3; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; t1 = t2.section; if (t1 == null) t1 = _this.state.section; b.get$_company_state$_$this()._section = t1; t1 = t2.clearFilter; if (t1) t2 = 0; else { t2 = t2.tabIndex; if (t2 == null) t2 = _this.state.tabIndex; } b.get$_company_state$_$this()._tabIndex = t2; b.get$_company_state$_$this()._isChanged = false; t2 = t1 ? null : _this.state.filter; b.get$_company_state$_$this()._company_state$_filter = t2; t1 = t1 ? Date.now() : _this.state.filterClearedAt; b.get$_company_state$_$this()._company_state$_filterClearedAt = t1; if (!t5) t1 = C.EntityType_client; else t1 = !t4 ? C.EntityType_group : _this.state.entityType; b.get$_company_state$_$this()._entityType = t1; return b; }, $signature: 76 }; Q.settingsUIReducer_closure0.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure13(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1576 }; Q.settingsUIReducer__closure13.prototype = { call$1: function(b) { var t1 = b.get$company(), t2 = this.action.company; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 76 }; Q.settingsUIReducer_closure1.prototype = { call$2: function(state, action) { switch (state.entityType) { case C.EntityType_client: return state.rebuild$1(new Q.settingsUIReducer__closure10(action)); case C.EntityType_group: return state.rebuild$1(new Q.settingsUIReducer__closure11(action)); default: return state.rebuild$1(new Q.settingsUIReducer__closure12(action)); } }, "call*": "call$2", $requiredArgCount: 2, $signature: 1577 }; Q.settingsUIReducer__closure10.prototype = { call$1: function(b) { var t1 = b.get$client(b).get$settings(), t2 = this.action.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 76 }; Q.settingsUIReducer__closure11.prototype = { call$1: function(b) { var t1 = b.get$group().get$settings(), t2 = this.action.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 76 }; Q.settingsUIReducer__closure12.prototype = { call$1: function(b) { var t1 = b.get$company().get$settings(), t2 = this.action.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._settings_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 76 }; Q.settingsUIReducer_closure2.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure9(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1578 }; Q.settingsUIReducer__closure9.prototype = { call$1: function(b) { var t1 = b.get$user(), t2 = this.action.user; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = true; return b; }, $signature: 76 }; Q.settingsUIReducer_closure3.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure8(state)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1579 }; Q.settingsUIReducer__closure8.prototype = { call$1: function(b) { var _s5_ = "other", t1 = b.get$company(), t2 = this.state, t3 = t2.origCompany; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._company_model$_$v = t3; t1 = b.get$group(); t3 = t2.origGroup; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._group_model$_$v = t3; t1 = b.get$client(b); t3 = t2.origClient; if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._client_model$_$v = t3; t1 = b.get$user(); t2 = t2.origUser; if (t2 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = false; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; return b; }, $signature: 76 }; Q.settingsUIReducer_closure4.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure7(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1580 }; Q.settingsUIReducer__closure7.prototype = { call$1: function(b) { var t1 = b.get$company(), t2 = this.action.company; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; t1 = b.get$origCompany(); t1._company_model$_$v = t2; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 76 }; Q.settingsUIReducer_closure5.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure6(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1581 }; Q.settingsUIReducer__closure6.prototype = { call$1: function(b) { var t1 = b.get$group(), t2 = this.action.group; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._group_model$_$v = t2; t1 = b.get$origGroup(); t1._group_model$_$v = t2; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 76 }; Q.settingsUIReducer_closure6.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure5(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1582 }; Q.settingsUIReducer__closure5.prototype = { call$1: function(b) { var t1 = b.get$client(b), t2 = this.action.client; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._client_model$_$v = t2; t1 = b.get$origClient(); t1._client_model$_$v = t2; t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 76 }; Q.settingsUIReducer_closure7.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure4(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1583 }; Q.settingsUIReducer__closure4.prototype = { call$1: function(b) { var t1 = b.get$user(), t2 = this.action.user; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t2; t1 = b.get$origUser(); t1._user_model$_$v = t2; b.get$_company_state$_$this()._isChanged = false; return b; }, $signature: 76 }; Q.settingsUIReducer_closure8.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure3(action, state)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1584 }; Q.settingsUIReducer__closure3.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_company_state$_$this()._company_state$_filter = t1; t1 = t1 == null ? Date.now() : this.state.filterClearedAt; b.get$_company_state$_$this()._company_state$_filterClearedAt = t1; return b; }, $signature: 76 }; Q.settingsUIReducer_closure9.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure2(state)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1585 }; Q.settingsUIReducer__closure2.prototype = { call$1: function(b) { var t2, t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; t1 = b.get$company(); t2 = this.state.origCompany; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; b.get$_company_state$_$this()._entityType = C.EntityType_company; b.get$_company_state$_$this()._isChanged = false; b.get$_company_state$_$this()._tabIndex = 0; return b; }, $signature: 76 }; Q.settingsUIReducer_closure10.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure1(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1586 }; Q.settingsUIReducer__closure1.prototype = { call$1: function(b) { var t1 = this.action.tabIndex; b.get$_company_state$_$this()._tabIndex = t1; return b; }, $signature: 76 }; Q.settingsUIReducer_closure11.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure0(action)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1587 }; Q.settingsUIReducer__closure0.prototype = { call$1: function(b) { var t1 = this.action.selectedTemplate; b.get$_company_state$_$this()._selectedTemplate = t1; return b; }, $signature: 76 }; Q.settingsUIReducer_closure12.prototype = { call$2: function(state, action) { return state.rebuild$1(new Q.settingsUIReducer__closure()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1588 }; Q.settingsUIReducer__closure.prototype = { call$1: function(b) { var t1 = Date.now(); b.get$_company_state$_$this()._updatedAt = t1; return b; }, $signature: 76 }; Q.staticLoadedReducer_closure.prototype = { call$1: function(b) { var t2, t1 = Date.now(); b.get$_static_state$_$this()._static_state$_updatedAt = t1; t1 = this.data; b.get$templateMap().replace$1(0, t1.templates); t2 = type$.legacy_String; b.get$currencyMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.currencies, new Q.staticLoadedReducer__closure(), new Q.staticLoadedReducer__closure0(), t2, type$.legacy_CurrencyEntity)); b.get$sizeMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.sizes, new Q.staticLoadedReducer__closure1(), new Q.staticLoadedReducer__closure2(), t2, type$.legacy_SizeEntity)); b.get$industryMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.industries, new Q.staticLoadedReducer__closure3(), new Q.staticLoadedReducer__closure4(), t2, type$.legacy_IndustryEntity)); b.get$timezoneMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.timezones, new Q.staticLoadedReducer__closure5(), new Q.staticLoadedReducer__closure6(), t2, type$.legacy_TimezoneEntity)); b.get$dateFormatMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.dateFormats, new Q.staticLoadedReducer__closure7(), new Q.staticLoadedReducer__closure8(), t2, type$.legacy_DateFormatEntity)); b.get$languageMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.languages, new Q.staticLoadedReducer__closure9(), new Q.staticLoadedReducer__closure10(), t2, type$.legacy_LanguageEntity)); b.get$paymentTypeMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.paymentTypes, new Q.staticLoadedReducer__closure11(), new Q.staticLoadedReducer__closure12(), t2, type$.legacy_PaymentTypeEntity)); b.get$countryMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.countries, new Q.staticLoadedReducer__closure13(), new Q.staticLoadedReducer__closure14(), t2, type$.legacy_CountryEntity)); b.get$gatewayMap().addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(t1.gateways, new Q.staticLoadedReducer__closure15(), new Q.staticLoadedReducer__closure16(), t2, type$.legacy_GatewayEntity)); return b; }, $signature: 1589 }; Q.staticLoadedReducer__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure0.prototype = { call$1: function(item) { return item; }, $signature: 1590 }; Q.staticLoadedReducer__closure1.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure2.prototype = { call$1: function(item) { return item; }, $signature: 1591 }; Q.staticLoadedReducer__closure3.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure4.prototype = { call$1: function(item) { return item; }, $signature: 1592 }; Q.staticLoadedReducer__closure5.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure6.prototype = { call$1: function(item) { return item; }, $signature: 1593 }; Q.staticLoadedReducer__closure7.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure8.prototype = { call$1: function(item) { return item; }, $signature: 1594 }; Q.staticLoadedReducer__closure9.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure10.prototype = { call$1: function(item) { return item; }, $signature: 1595 }; Q.staticLoadedReducer__closure11.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure12.prototype = { call$1: function(item) { return item; }, $signature: 1596 }; Q.staticLoadedReducer__closure13.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure14.prototype = { call$1: function(item) { return item; }, $signature: 1597 }; Q.staticLoadedReducer__closure15.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Q.staticLoadedReducer__closure16.prototype = { call$1: function(item) { return item; }, $signature: 1598 }; V.memoizedCountryList_closure.prototype = { call$1: function(countryMap) { return V.countryList(countryMap); }, $signature: 1599 }; V.countryList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.countryMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedGroupList_closure.prototype = { call$1: function(groupMap) { return V.groupList(groupMap); }, $signature: 1600 }; V.groupList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.groupMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedLanguageList_closure.prototype = { call$1: function(languageMap) { return V.languageList(languageMap); }, $signature: 1601 }; V.languageList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.languageMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedCurrencyList_closure.prototype = { call$1: function(currencyMap) { return V.currencyList(currencyMap); }, $signature: 1602 }; V.currencyList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.currencyMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedTimezoneList_closure.prototype = { call$1: function(timezoneMap) { return V.timezoneList(timezoneMap); }, $signature: 1603 }; V.timezoneList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.timezoneMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedDateFormatList_closure.prototype = { call$1: function(dateFormatMap) { return V.dateFormatList(dateFormatMap); }, $signature: 1604 }; V.dateFormatList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.dateFormatMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).get$preview(), t2.$index(t1, idB).get$preview()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedIndustryList_closure.prototype = { call$1: function(industryMap) { return V.industryList(industryMap); }, $signature: 1605 }; V.industryList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.industryMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedSizeList_closure.prototype = { call$1: function(sizeMap) { return V.sizeList(sizeMap); }, $signature: 1606 }; V.sizeList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.sizeMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).id, t2.$index(t1, idB).id); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedGatewayList_closure.prototype = { call$1: function(gatewayMap) { return V.gatewayList(gatewayMap); }, $signature: 1607 }; V.gatewayList_closure.prototype = { call$1: function(gatewayId) { return J.$index$asx(this.gatewayMap._map$_map, gatewayId).isVisible; }, $signature: 16 }; V.gatewayList_closure0.prototype = { call$2: function(idA, idB) { var t1 = this.gatewayMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSInt_methods.compareTo$1(t2.$index(t1, idA).sortOrder, t2.$index(t1, idB).sortOrder); }, $signature: 18 }; V.memoizedPaymentTypeList_closure.prototype = { call$1: function(paymentTypeMap) { return V.paymentTypeList(paymentTypeMap); }, $signature: 1608 }; V.paymentTypeList_closure.prototype = { call$2: function(idA, idB) { var t1 = this.paymentTypeMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).name, t2.$index(t1, idB).name); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; V.memoizedFontMap_closure.prototype = { call$1: function(fontList) { return V.fontMap(fontList); }, $signature: 1609 }; V.fontMap_closure.prototype = { call$1: function(v) { return J.$index$asx(v, "value"); }, $signature: 24 }; V.fontMap_closure0.prototype = { call$1: function(v) { var t1 = J.getInterceptor$asx(v), t2 = t1.$index(v, "value"); t1 = t1.$index(v, "label"); if (t2 == null) t2 = ""; if (t1 == null) t1 = ""; return new K._$FontEntity(t1, t2); }, $signature: 1610 }; B.StaticState.prototype = { get$isStale: function() { var t1 = this.updatedAt; if (!(t1 != null && t1 > 0)) return true; return Date.now() - t1 > 86400000; } }; B._$StaticStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["currencyMap", serializers.serialize$2$specifiedType(object.currencyMap, C.FullType_5m9), "sizeMap", serializers.serialize$2$specifiedType(object.sizeMap, C.FullType_pUI), "gatewayMap", serializers.serialize$2$specifiedType(object.gatewayMap, C.FullType_CWG), "industryMap", serializers.serialize$2$specifiedType(object.industryMap, C.FullType_mFp), "timezoneMap", serializers.serialize$2$specifiedType(object.timezoneMap, C.FullType_sYl), "dateFormatMap", serializers.serialize$2$specifiedType(object.dateFormatMap, C.FullType_9Sk), "languageMap", serializers.serialize$2$specifiedType(object.languageMap, C.FullType_YiR), "paymentTypeMap", serializers.serialize$2$specifiedType(object.paymentTypeMap, C.FullType_2fF), "countryMap", serializers.serialize$2$specifiedType(object.countryMap, C.FullType_0kM), "templateMap", serializers.serialize$2$specifiedType(object.templateMap, C.FullType_IWk)], type$.JSArray_legacy_Object), value = object.updatedAt; if (value != null) { result.push("updatedAt"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_kjq)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, key, value, t11, t12, _null = null, result = new B.StaticStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_TemplateEntity, t2 = type$.MapBuilder_of_legacy_String_and_legacy_CountryEntity, t3 = type$.MapBuilder_of_legacy_String_and_legacy_PaymentTypeEntity, t4 = type$.MapBuilder_of_legacy_String_and_legacy_LanguageEntity, t5 = type$.MapBuilder_of_legacy_String_and_legacy_DateFormatEntity, t6 = type$.MapBuilder_of_legacy_String_and_legacy_TimezoneEntity, t7 = type$.MapBuilder_of_legacy_String_and_legacy_IndustryEntity, t8 = type$.MapBuilder_of_legacy_String_and_legacy_GatewayEntity, t9 = type$.MapBuilder_of_legacy_String_and_legacy_SizeEntity, t10 = type$.MapBuilder_of_legacy_String_and_legacy_CurrencyEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "updatedAt": t11 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_static_state$_$this()._static_state$_updatedAt = t11; break; case "currencyMap": t11 = result.get$_static_state$_$this(); t12 = t11._currencyMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t10); t12.replace$1(0, C.Map_empty0); t11._currencyMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_5m9)); break; case "sizeMap": t11 = result.get$_static_state$_$this(); t12 = t11._sizeMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t9); t12.replace$1(0, C.Map_empty0); t11._sizeMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_pUI)); break; case "gatewayMap": t11 = result.get$_static_state$_$this(); t12 = t11._gatewayMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t8); t12.replace$1(0, C.Map_empty0); t11._gatewayMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_CWG)); break; case "industryMap": t11 = result.get$_static_state$_$this(); t12 = t11._industryMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t7); t12.replace$1(0, C.Map_empty0); t11._industryMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_mFp)); break; case "timezoneMap": t11 = result.get$_static_state$_$this(); t12 = t11._timezoneMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t6); t12.replace$1(0, C.Map_empty0); t11._timezoneMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_sYl)); break; case "dateFormatMap": t11 = result.get$_static_state$_$this(); t12 = t11._dateFormatMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t5); t12.replace$1(0, C.Map_empty0); t11._dateFormatMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_9Sk)); break; case "languageMap": t11 = result.get$_static_state$_$this(); t12 = t11._languageMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t4); t12.replace$1(0, C.Map_empty0); t11._languageMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_YiR)); break; case "paymentTypeMap": t11 = result.get$_static_state$_$this(); t12 = t11._paymentTypeMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t3); t12.replace$1(0, C.Map_empty0); t11._paymentTypeMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_2fF)); break; case "countryMap": t11 = result.get$_static_state$_$this(); t12 = t11._countryMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t2); t12.replace$1(0, C.Map_empty0); t11._countryMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_0kM)); break; case "templateMap": t11 = result.get$_static_state$_$this(); t12 = t11._templateMap; if (t12 == null) { t12 = new A.MapBuilder(_null, $, _null, t1); t12.replace$1(0, C.Map_empty0); t11._templateMap = t12; t11 = t12; } else t11 = t12; t11.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_IWk)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_8LU; }, get$wireName: function() { return "StaticState"; } }; B._$StaticState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof B.StaticState && _this.updatedAt == other.updatedAt && J.$eq$(_this.currencyMap, other.currencyMap) && J.$eq$(_this.sizeMap, other.sizeMap) && J.$eq$(_this.gatewayMap, other.gatewayMap) && J.$eq$(_this.industryMap, other.industryMap) && J.$eq$(_this.timezoneMap, other.timezoneMap) && J.$eq$(_this.dateFormatMap, other.dateFormatMap) && J.$eq$(_this.languageMap, other.languageMap) && J.$eq$(_this.paymentTypeMap, other.paymentTypeMap) && J.$eq$(_this.countryMap, other.countryMap) && J.$eq$(_this.templateMap, other.templateMap); }, get$hashCode: function(_) { var _this = this, t1 = _this._static_state$__hashCode; return t1 == null ? _this._static_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.updatedAt)), J.get$hashCode$(_this.currencyMap)), J.get$hashCode$(_this.sizeMap)), J.get$hashCode$(_this.gatewayMap)), J.get$hashCode$(_this.industryMap)), J.get$hashCode$(_this.timezoneMap)), J.get$hashCode$(_this.dateFormatMap)), J.get$hashCode$(_this.languageMap)), J.get$hashCode$(_this.paymentTypeMap)), J.get$hashCode$(_this.countryMap)), J.get$hashCode$(_this.templateMap))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("StaticState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "updatedAt", _this.updatedAt); t2.add$2(t1, "currencyMap", _this.currencyMap); t2.add$2(t1, "sizeMap", _this.sizeMap); t2.add$2(t1, "gatewayMap", _this.gatewayMap); t2.add$2(t1, "industryMap", _this.industryMap); t2.add$2(t1, "timezoneMap", _this.timezoneMap); t2.add$2(t1, "dateFormatMap", _this.dateFormatMap); t2.add$2(t1, "languageMap", _this.languageMap); t2.add$2(t1, "paymentTypeMap", _this.paymentTypeMap); t2.add$2(t1, "countryMap", _this.countryMap); t2.add$2(t1, "templateMap", _this.templateMap); return t2.toString$0(t1); } }; B.StaticStateBuilder.prototype = { get$currencyMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._currencyMap; return t2 == null ? t1._currencyMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CurrencyEntity) : t2; }, get$sizeMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._sizeMap; return t2 == null ? t1._sizeMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SizeEntity) : t2; }, get$gatewayMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._gatewayMap; return t2 == null ? t1._gatewayMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_GatewayEntity) : t2; }, get$industryMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._industryMap; return t2 == null ? t1._industryMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_IndustryEntity) : t2; }, get$timezoneMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._timezoneMap; return t2 == null ? t1._timezoneMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TimezoneEntity) : t2; }, get$dateFormatMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._dateFormatMap; return t2 == null ? t1._dateFormatMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_DateFormatEntity) : t2; }, get$languageMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._languageMap; return t2 == null ? t1._languageMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_LanguageEntity) : t2; }, get$paymentTypeMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._paymentTypeMap; return t2 == null ? t1._paymentTypeMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_PaymentTypeEntity) : t2; }, get$countryMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._countryMap; return t2 == null ? t1._countryMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CountryEntity) : t2; }, get$templateMap: function() { var t1 = this.get$_static_state$_$this(), t2 = t1._templateMap; return t2 == null ? t1._templateMap = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TemplateEntity) : t2; }, get$_static_state$_$this: function() { var t1, t2, _this = this, $$v = _this._static_state$_$v; if ($$v != null) { _this._static_state$_updatedAt = $$v.updatedAt; t1 = $$v.currencyMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._currencyMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.sizeMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._sizeMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.gatewayMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._gatewayMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.industryMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._industryMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.timezoneMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._timezoneMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.dateFormatMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._dateFormatMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.languageMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._languageMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.paymentTypeMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._paymentTypeMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); t1 = $$v.countryMap; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._countryMap = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.templateMap; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._templateMap = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._static_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, exception, _this = this, _$result = null; try { _$result0 = _this._static_state$_$v; if (_$result0 == null) { t1 = _this.get$_static_state$_$this()._static_state$_updatedAt; t2 = _this.get$currencyMap().build$0(0); t3 = _this.get$sizeMap().build$0(0); t4 = _this.get$gatewayMap().build$0(0); t5 = _this.get$industryMap().build$0(0); t6 = _this.get$timezoneMap().build$0(0); t7 = _this.get$dateFormatMap().build$0(0); t8 = _this.get$languageMap().build$0(0); t9 = _this.get$paymentTypeMap().build$0(0); _$result0 = B._$StaticState$_(_this.get$countryMap().build$0(0), t2, t7, t4, t5, t8, t9, t3, _this.get$templateMap().build$0(0), t6, t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "currencyMap"; _this.get$currencyMap().build$0(0); _$failedField = "sizeMap"; _this.get$sizeMap().build$0(0); _$failedField = "gatewayMap"; _this.get$gatewayMap().build$0(0); _$failedField = "industryMap"; _this.get$industryMap().build$0(0); _$failedField = "timezoneMap"; _this.get$timezoneMap().build$0(0); _$failedField = "dateFormatMap"; _this.get$dateFormatMap().build$0(0); _$failedField = "languageMap"; _this.get$languageMap().build$0(0); _$failedField = "paymentTypeMap"; _this.get$paymentTypeMap().build$0(0); _$failedField = "countryMap"; _this.get$countryMap().build$0(0); _$failedField = "templateMap"; _this.get$templateMap().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("StaticState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._static_state$_$v = t1; return _$result; } }; A.ViewSubscriptionList.prototype = {$isStopLoading: 1}; A.ViewSubscription.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$subscriptionId: function() { return this.subscriptionId; } }; A.EditSubscription.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$subscription: function() { return this.subscription; } }; A.UpdateSubscription.prototype = {$isPersistUI: 1, get$subscription: function() { return this.subscription; } }; A.LoadSubscriptionRequest.prototype = {$isStartLoading: 1}; A.LoadSubscriptionFailure.prototype = { toString$0: function(_) { return "LoadSubscriptionFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadSubscriptionSuccess.prototype = { toString$0: function(_) { return "LoadSubscriptionSuccess{subscription: " + H.S(this.subscription) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$subscription: function() { return this.subscription; } }; A.LoadSubscriptionsRequest.prototype = {$isStartLoading: 1}; A.LoadSubscriptionsFailure.prototype = { toString$0: function(_) { return "LoadSubscriptionsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadSubscriptionsSuccess.prototype = { toString$0: function(_) { return "LoadSubscriptionsSuccess{subscriptions: " + H.S(this.subscriptions) + "}"; }, $isStopLoading: 1 }; A.SaveSubscriptionRequest.prototype = {$isStartSaving: 1, get$subscription: function() { return this.subscription; } }; A.SaveSubscriptionSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$subscription: function() { return this.subscription; } }; A.AddSubscriptionSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$subscription: function() { return this.subscription; } }; A.SaveSubscriptionFailure.prototype = {$isStopSaving: 1}; A.ArchiveSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.ArchiveSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.DeleteSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.DeleteSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.RestoreSubscriptionsRequest.prototype = {$isStartSaving: 1}; A.RestoreSubscriptionsSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreSubscriptionsFailure.prototype = {$isStopSaving: 1}; A.FilterSubscriptions.prototype = {$isPersistUI: 1}; A.SortSubscriptions.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterSubscriptionsByState.prototype = {$isPersistUI: 1}; A.FilterSubscriptionsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; A.FilterSubscriptionsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; A.StartSubscriptionMultiselect.prototype = {}; A.AddToSubscriptionMultiselect.prototype = {}; A.RemoveFromSubscriptionMultiselect.prototype = {}; A.ClearSubscriptionMultiselect.prototype = {}; A.handleSubscriptionAction_closure.prototype = { call$1: function(subscription) { return subscription.get$id(subscription); }, $signature: 41 }; T._editSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s28_ = "/settings/subscriptions_edit"; next.call$1(type$.legacy_EditSubscription._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s28_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s28_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewSubscription_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewSubscription_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewSubscription._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/subscriptions_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/subscriptions_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; T._viewSubscriptionList_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s23_ = "/settings/subscriptions"; next.call$1(type$.legacy_ViewSubscriptionList._as(dynamicAction)); if (store.get$_store$_state().staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s23_, new T._viewSubscriptionList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewSubscriptionList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; T._archiveSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_ArchiveSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = P.List_List$of(new H.MappedListIterable(t1, new T._archiveSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new T._archiveSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new T._archiveSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._archiveSubscription__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).subscriptionState.map._map$_map, id); }, $signature: 359 }; T._archiveSubscription__closure0.prototype = { call$1: function(subscriptions) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ArchiveSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 358 }; T._archiveSubscription__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ArchiveSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._deleteSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_DeleteSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = P.List_List$of(new H.MappedListIterable(t1, new T._deleteSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new T._deleteSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new T._deleteSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._deleteSubscription__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).subscriptionState.map._map$_map, id); }, $signature: 359 }; T._deleteSubscription__closure0.prototype = { call$1: function(subscriptions) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.DeleteSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 358 }; T._deleteSubscription__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.DeleteSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._restoreSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevSubscriptions; type$.legacy_RestoreSubscriptionsRequest._as(dynamicAction); t1 = dynamicAction.subscriptionIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,SubscriptionEntity*>"); prevSubscriptions = P.List_List$of(new H.MappedListIterable(t1, new T._restoreSubscription__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new T._restoreSubscription__closure0(store, dynamicAction), type$.Null).catchError$1(new T._restoreSubscription__closure1(store, prevSubscriptions, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._restoreSubscription__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).subscriptionState.map._map$_map, id); }, $signature: 359 }; T._restoreSubscription__closure0.prototype = { call$1: function(subscriptions) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.RestoreSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, $signature: 358 }; T._restoreSubscription__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.RestoreSubscriptionsFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._saveSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveSubscriptionRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.subscription).then$1$1(0, new T._saveSubscription__closure(dynamicAction, store), type$.Null).catchError$1(new T._saveSubscription__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._saveSubscription__closure.prototype = { call$1: function(subscription) { var t1 = this.action, t2 = this.store; if (t1.subscription.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new A.AddSubscriptionSuccess(subscription)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new A.SaveSubscriptionSuccess(subscription)); t1.completer.complete$1(0, subscription); }, $signature: 295 }; T._saveSubscription__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SaveSubscriptionFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadSubscription_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadSubscription._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.subscriptionId).then$1$1(0, new T._loadSubscription__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadSubscription__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadSubscription__closure.prototype = { call$1: function(subscription) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionSuccess(subscription)); this.action.completer.complete$1(0, null); }, $signature: 295 }; T._loadSubscription__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadSubscriptions_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadSubscriptions._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionsRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new T._loadSubscriptions__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadSubscriptions__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadSubscriptions__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionsSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1614 }; T._loadSubscriptions__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadSubscriptionsFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; X.subscriptionUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$subscriptionListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer18().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._subscription_model$_$v = t4; t1 = $.$get$selectedIdReducer18().call$2(t2.selectedId, t3); b.get$_subscription_state$_$this()._subscription_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer18().call$2(t2.forceSelected, t3); b.get$_subscription_state$_$this()._subscription_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer7().call$2(t2.tabIndex, t3); b.get$_subscription_state$_$this()._subscription_state$_tabIndex = t3; return b; }, $signature: 1615 }; X.forceSelectedReducer_closure143.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1616 }; X.forceSelectedReducer_closure144.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1617 }; X.forceSelectedReducer_closure145.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1618 }; X.forceSelectedReducer_closure146.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1619 }; X.forceSelectedReducer_closure147.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1620 }; X.forceSelectedReducer_closure148.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1621 }; X.forceSelectedReducer_closure149.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1622 }; X.forceSelectedReducer_closure150.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1623 }; X.tabIndexReducer_closure15.prototype = { call$2: function(completer, action) { return action.get$tabIndex(action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1624 }; X.tabIndexReducer_closure16.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; X.selectedIdReducer_closure286.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1625 }; X.selectedIdReducer_closure287.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1626 }; X.selectedIdReducer_closure288.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_subscription ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; X.selectedIdReducer_closure289.prototype = { call$2: function(selectedId, action) { return action.get$subscriptionId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; X.selectedIdReducer_closure290.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$subscription()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; X.selectedIdReducer_closure291.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; X.selectedIdReducer_closure292.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; X.selectedIdReducer_closure293.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1627 }; X.selectedIdReducer_closure294.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1628 }; X.selectedIdReducer_closure295.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1629 }; X.selectedIdReducer_closure296.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1630 }; X.selectedIdReducer_closure297.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1631 }; X.selectedIdReducer_closure298.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1632 }; X.selectedIdReducer_closure299.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1633 }; X.selectedIdReducer_closure300.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_subscription ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; X.editingReducer_closure93.prototype = { call$2: function(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1634 }; X.editingReducer_closure94.prototype = { call$2: function(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1635 }; X.editingReducer_closure95.prototype = { call$2: function(subscriptions, action) { return J.$index$asx(action.subscriptions, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1636 }; X.editingReducer_closure96.prototype = { call$2: function(subscription, action) { return action.subscription.rebuild$1(new X.editingReducer__closure36()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1637 }; X.editingReducer__closure36.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_isChanged = true; return b; }, $signature: 62 }; X._filterSubscriptionsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; X._filterSubscriptionsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; X._filterSubscriptionsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; X._filterSubscriptionsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; X._filterSubscriptionsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; X._filterSubscriptionsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; X._filterSubscriptions_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.subscriptionListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; X._sortSubscriptions_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; X._startListMultiselect_closure18.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; X._addToListMultiselect_closure18.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; X._removeFromListMultiselect_closure18.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; X._clearListMultiselect_closure18.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; X._archiveSubscriptionSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 355 }; X._deleteSubscriptionSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 355 }; X._restoreSubscriptionSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.subscriptions), t2 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_subscription_state$_$this(); t5 = t4._subscription_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._subscription_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 355 }; X._addSubscription_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.subscription, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 298 }; X._updateSubscription_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.subscription; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 298 }; X._setLoadedSubscription_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.subscription; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 298 }; F.memoizedFilteredSubscriptionList_closure.prototype = { call$4: function(selectionState, subscriptionMap, subscriptionList, subscriptionListState) { return F.filteredSubscriptionsSelector(selectionState, subscriptionMap, subscriptionList, subscriptionListState); }, $signature: 1641 }; F.filteredSubscriptionsSelector_closure.prototype = { call$1: function(subscriptionId) { var t2, _this = this, subscription = J.$index$asx(_this.subscriptionMap._map$_map, subscriptionId), t1 = subscription.id; if (t1 === _this.selectionState.selectedId) return true; t2 = _this.filterEntityId; if (t2 != null && t1 !== t2) return false; t1 = _this.subscriptionListState; if (!subscription.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([subscription.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; F.filteredSubscriptionsSelector_closure0.prototype = { call$2: function(subscriptionAId, subscriptionBId) { var t1 = this.subscriptionMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = this.subscriptionListState; return t2.$index(t1, subscriptionAId).compareTo$3(0, t2.$index(t1, subscriptionBId), t3.sortField, t3.sortAscending); }, $signature: 18 }; M.SubscriptionState.prototype = { loadSubscriptions$1: function(clients) { return this.rebuild$1(new M.SubscriptionState_loadSubscriptions_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new M.SubscriptionState_loadSubscriptions_closure0(), new M.SubscriptionState_loadSubscriptions_closure1(), type$.legacy_String, type$.legacy_SubscriptionEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; M.SubscriptionState_loadSubscriptions_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; M.SubscriptionState_loadSubscriptions_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1642 }; M.SubscriptionState_loadSubscriptions_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 298 }; M.SubscriptionUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; M._$SubscriptionStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_YGD), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new M.SubscriptionStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_subscription_state$_$this(); t6 = t5._subscription_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._subscription_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_YGD)); break; case "list": t5 = result.get$_subscription_state$_$this(); t6 = t5._subscription_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._subscription_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_G3h; }, get$wireName: function() { return "SubscriptionState"; } }; M._$SubscriptionUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_VCV)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new M.SubscriptionUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_SubscriptionEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_subscription_state$_$this(); t4 = t3._subscription_state$_editing; t3 = t4 == null ? t3._subscription_state$_editing = new X.SubscriptionEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_VCV)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._subscription_model$_$v = t4; break; case "listUIState": t3 = result.get$_subscription_state$_$this(); t4 = t3._subscription_state$_listUIState; t3 = t4 == null ? t3._subscription_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_subscription_state$_$this()._subscription_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_subscription_state$_$this()._subscription_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_subscription_state$_$this()._subscription_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Tfa; }, get$wireName: function() { return "SubscriptionUIState"; } }; M._$SubscriptionState.prototype = { rebuild$1: function(updates) { var t1 = new M.SubscriptionStateBuilder(); t1._subscription_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.SubscriptionState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._subscription_state$__hashCode; return t1 == null ? _this._subscription_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; M.SubscriptionStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_map; return t2 == null ? t1._subscription_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_SubscriptionEntity) : t2; }, get$list: function(_) { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_list; return t2 == null ? t1._subscription_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_subscription_state$_$this: function() { var t1, t2, _this = this, $$v = _this._subscription_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._subscription_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._subscription_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._subscription_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._subscription_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = M._$SubscriptionState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("SubscriptionState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; M._$SubscriptionUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof M.SubscriptionUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._subscription_state$__hashCode; return t1 == null ? _this._subscription_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("SubscriptionUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; M.SubscriptionUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_editing; return t2 == null ? t1._subscription_state$_editing = new X.SubscriptionEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_subscription_state$_$this(), t2 = t1._subscription_state$_listUIState; return t2 == null ? t1._subscription_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_subscription_state$_$this: function() { var t1, t2, _this = this, $$v = _this._subscription_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new X.SubscriptionEntityBuilder(); t2._subscription_model$_$v = t1; t1 = t2; } _this._subscription_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._subscription_state$_listUIState = t2; _this._subscription_state$_selectedId = $$v.selectedId; _this._subscription_state$_forceSelected = $$v.forceSelected; _this._subscription_state$_tabIndex = $$v.tabIndex; _this._subscription_state$_saveCompleter = $$v.saveCompleter; _this._subscription_state$_cancelCompleter = $$v.cancelCompleter; _this._subscription_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s19_ = "SubscriptionUIState", _$result = null; try { _$result0 = _this._subscription_state$_$v; if (_$result0 == null) { t1 = _this._subscription_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_subscription_state$_$this()._subscription_state$_selectedId; t4 = _this.get$_subscription_state$_$this()._subscription_state$_forceSelected; t5 = _this.get$_subscription_state$_$this()._subscription_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s19_, "tabIndex")); t6 = _this.get$_subscription_state$_$this()._subscription_state$_saveCompleter; _$result0 = M._$SubscriptionUIState$_(_this.get$_subscription_state$_$this()._subscription_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._subscription_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s19_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._subscription_state$_$v = t1; return _$result; } }; M._SubscriptionUIState_Object_EntityUIState.prototype = {}; U.ViewTaskList.prototype = {$isStopLoading: 1}; U.ViewTask.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; U.EditTask.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$task: function() { return this.task; } }; U.UpdateTask.prototype = {$isPersistUI: 1, get$task: function() { return this.task; } }; U.LoadTask.prototype = {}; U.LoadTasks.prototype = {}; U.LoadTaskRequest.prototype = {$isStartLoading: 1}; U.LoadTaskFailure.prototype = { toString$0: function(_) { return "LoadTaskFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; U.LoadTaskSuccess.prototype = { toString$0: function(_) { return "LoadTaskSuccess{task: " + H.S(this.task) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$task: function() { return this.task; } }; U.EditTaskTime.prototype = {$isPersistUI: 1}; U.AddTaskTime.prototype = {$isPersistUI: 1}; U.UpdateTaskTime.prototype = {$isPersistUI: 1}; U.DeleteTaskTime.prototype = {$isPersistUI: 1}; U.LoadTasksRequest.prototype = {$isStartLoading: 1}; U.LoadTasksFailure.prototype = { toString$0: function(_) { return "LoadTasksFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; U.LoadTasksSuccess.prototype = { toString$0: function(_) { return "LoadTasksSuccess{tasks: " + H.S(this.tasks) + "}"; }, $isStopLoading: 1 }; U.SaveTaskRequest.prototype = {$isStartSaving: 1, get$task: function() { return this.task; } }; U.SaveTaskSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$task: function() { return this.task; } }; U.AddTaskSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$task: function() { return this.task; } }; U.SaveTaskFailure.prototype = {$isStopSaving: 1}; U.ArchiveTaskRequest.prototype = {$isStartSaving: 1}; U.ArchiveTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.ArchiveTaskFailure.prototype = {$isStopSaving: 1}; U.DeleteTaskRequest.prototype = {$isStartSaving: 1}; U.DeleteTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.DeleteTaskFailure.prototype = {$isStopSaving: 1}; U.RestoreTaskRequest.prototype = {$isStartSaving: 1}; U.RestoreTaskSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.RestoreTaskFailure.prototype = {$isStopSaving: 1}; U.SortTasksRequest.prototype = {$isStartSaving: 1}; U.SortTasksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; U.SortTasksFailure.prototype = {$isStopSaving: 1}; U.FilterTasks.prototype = {$isPersistUI: 1}; U.SortTasks.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; U.FilterTasksByState.prototype = {$isPersistUI: 1}; U.FilterTasksByStatus.prototype = {$isPersistUI: 1}; U.FilterTasksByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterTasksByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterTasksByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.FilterTasksByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; U.handleTaskAction_closure.prototype = { call$1: function(task) { return task.get$id(task); }, $signature: 41 }; U.handleTaskAction_closure0.prototype = { call$1: function(savedTask) { var t1; if (savedTask.get$isRunning()) { t1 = this.localization; t1 = savedTask.duration > 0 ? t1.get$resumedTask() : t1.get$startedTask(); } else t1 = this.localization.get$stoppedTask(); M.showToast(t1); }, $signature: 139 }; U.handleTaskAction_closure1.prototype = { call$1: function(error) { E.showDialog(true, new U.handleTaskAction__closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; U.handleTaskAction__closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; U.handleTaskAction_closure2.prototype = { call$2: function(taskA, taskB) { var taskATimes, taskBTimes, taskADate, taskBDate, t1 = type$.legacy_TaskEntity; t1._as(taskA); taskATimes = taskA.getTaskTimes$0(); t1._as(taskB); taskBTimes = taskB.getTaskTimes$0(); if (taskATimes.length === 0) { t1 = taskA.createdAt; taskADate = P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false); } else taskADate = C.JSArray_methods.get$first(taskATimes).startDate; if (taskBTimes.length === 0) { t1 = taskB.createdAt; taskBDate = P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false); } else taskBDate = C.JSArray_methods.get$first(taskBTimes).startDate; return C.JSInt_methods.compareTo$1(taskADate._value, taskBDate._value); }, $signature: 672 }; U.handleTaskAction_closure3.prototype = { call$1: function(entity) { var t1; type$.legacy_TaskEntity._as(entity); if (!entity.isDeleted) if (!entity.get$isRunning()) t1 = entity.invoiceId.length === 0; else t1 = false; else t1 = false; return t1; }, $signature: 194 }; U.handleTaskAction_closure4.prototype = { call$1: function(task) { return U.convertTaskToInvoiceItem(this.context, task); }, $signature: 639 }; U.handleTaskAction_closure5.prototype = { call$1: function(b) { b.get$lineItems().addAll$1(0, this.items); return b; }, $signature: 11 }; U.StartTaskMultiselect.prototype = {}; U.AddToTaskMultiselect.prototype = {}; U.RemoveFromTaskMultiselect.prototype = {}; U.ClearTaskMultiselect.prototype = {}; U.SaveTaskDocumentRequest.prototype = {$isStartSaving: 1, get$task: function() { return this.task; } }; U.SaveTaskDocumentFailure.prototype = {$isStopSaving: 1}; U.UpdateTaskTab.prototype = {$isPersistUI: 1}; U._editTask_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s10_ = "/task/edit"; next.call$1(type$.legacy_EditTask._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s10_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s10_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._viewTask_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewTask_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTask_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTask._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/task/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; U._viewTaskList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewTaskList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/task", new U._viewTaskList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._viewTaskList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; U._archiveTask_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_ArchiveTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = P.List_List$of(new H.MappedListIterable(t1, new U._archiveTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new U._archiveTask__closure0(store, dynamicAction), type$.Null).catchError$1(new U._archiveTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._archiveTask__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskState.map._map$_map, id); }, $signature: 211 }; U._archiveTask__closure0.prototype = { call$1: function(tasks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ArchiveTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 353 }; U._archiveTask__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ArchiveTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; U._deleteTask_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_DeleteTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = P.List_List$of(new H.MappedListIterable(t1, new U._deleteTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new U._deleteTask__closure0(store, dynamicAction), type$.Null).catchError$1(new U._deleteTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._deleteTask__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskState.map._map$_map, id); }, $signature: 211 }; U._deleteTask__closure0.prototype = { call$1: function(tasks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 353 }; U._deleteTask__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; U._restoreTask_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTasks; type$.legacy_RestoreTaskRequest._as(dynamicAction); t1 = dynamicAction.taskIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskEntity*>"); prevTasks = P.List_List$of(new H.MappedListIterable(t1, new U._restoreTask__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new U._restoreTask__closure0(store, dynamicAction), type$.Null).catchError$1(new U._restoreTask__closure1(store, prevTasks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._restoreTask__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskState.map._map$_map, id); }, $signature: 211 }; U._restoreTask__closure0.prototype = { call$1: function(tasks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.RestoreTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, $signature: 353 }; U._restoreTask__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.RestoreTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; U._saveTask_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveTaskRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.task).then$1$1(0, new U._saveTask__closure(dynamicAction, store), type$.Null).catchError$1(new U._saveTask__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._saveTask__closure.prototype = { call$1: function(task) { var t1 = this.action, t2 = this.store; if (t1.task.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.AddTaskSuccess(task, t1.autoSelect)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.SaveTaskSuccess(task)); t1.completer.complete$1(0, task); }, $signature: 139 }; U._saveTask__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; U._loadTask_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTask._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.LoadTaskRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taskId).then$1$1(0, new U._loadTask__closure(store, dynamicAction), type$.Null).catchError$1(new U._loadTask__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._loadTask__closure.prototype = { call$1: function(task) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadTaskSuccess(task)); t1 = this.action.completer; if (t1 != null) t1.complete$1(0, null); }, $signature: 139 }; U._loadTask__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadTaskFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; U._loadTasks_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTasks._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.LoadTasksRequest()); this.repository.loadList$3(state.get$credentials(state), state.get$createdAtLimit(), state.get$filterDeletedClients()).then$1$1(0, new U._loadTasks__closure(store, dynamicAction), type$.Null).catchError$1(new U._loadTasks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._loadTasks__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.LoadTasksSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.LoadVendors()); }, $signature: 1646 }; U._loadTasks__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadTasksFailure(error)); this.action.toString; }, $signature: 3 }; U._saveDocument_closure6.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveTaskDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.task, dynamicAction.multipartFile).then$1$1(0, new U._saveDocument__closure13(store, dynamicAction), type$.Null).catchError$1(new U._saveDocument__closure14(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.SaveTaskDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._saveDocument__closure13.prototype = { call$1: function(task) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskSuccess(task)); this.action.completer.complete$1(0, null); }, $signature: 139 }; U._saveDocument__closure14.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; U._sortTasks_closure0.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SortTasksRequest._as(dynamicAction); this.repository.sortTasks$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.statusIds, dynamicAction.taskIds).then$1$1(0, new U._sortTasks__closure(store, dynamicAction), type$.Null).catchError$1(new U._sortTasks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; U._sortTasks__closure.prototype = { call$1: function(_) { var t1 = this.action; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortTasksSuccess(t1.statusIds, t1.taskIds)); t1.completer.complete$1(0, null); }, $signature: 20 }; U._sortTasks__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortTasksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; N.taskUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taskListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer2().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._task_model$_$v = t4; t1 = $.$get$editingTimeReducer().call$2(t2.editingTimeIndex, t3); b.get$_task_state$_$this()._editingTimeIndex = t1; t1 = $.$get$selectedIdReducer2().call$2(t2.selectedId, t3); b.get$_task_state$_$this()._task_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer2().call$2(t2.forceSelected, t3); b.get$_task_state$_$this()._task_state$_forceSelected = t1; t3 = $.$get$tabIndexReducer2().call$2(t2.tabIndex, t3); b.get$_task_state$_$this()._task_state$_tabIndex = t3; return b; }, $signature: 1647 }; N.forceSelectedReducer_closure23.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1648 }; N.forceSelectedReducer_closure24.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1649 }; N.forceSelectedReducer_closure25.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1650 }; N.forceSelectedReducer_closure26.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 3303 }; N.forceSelectedReducer_closure27.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1652 }; N.forceSelectedReducer_closure28.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1653 }; N.forceSelectedReducer_closure29.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1654 }; N.forceSelectedReducer_closure30.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1655 }; N.tabIndexReducer_closure5.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1656 }; N.tabIndexReducer_closure6.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; N.editingTimeReducer_closure.prototype = { call$2: function(index, action) { return action.taskTimeIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1657 }; N.editingTimeReducer_closure0.prototype = { call$2: function(index, action) { action.toString; return null; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1658 }; N.selectedIdReducer_closure49.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1659 }; N.selectedIdReducer_closure50.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1660 }; N.selectedIdReducer_closure51.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_task ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; N.selectedIdReducer_closure52.prototype = { call$2: function(selectedId, action) { return action.taskId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1661 }; N.selectedIdReducer_closure53.prototype = { call$2: function(selectedId, action) { return selectedId.length !== 0 || action.autoSelect ? action.task.id : ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1662 }; N.selectedIdReducer_closure54.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; N.selectedIdReducer_closure55.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; N.selectedIdReducer_closure56.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1663 }; N.selectedIdReducer_closure57.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1664 }; N.selectedIdReducer_closure58.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1665 }; N.selectedIdReducer_closure59.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1666 }; N.selectedIdReducer_closure60.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1667 }; N.selectedIdReducer_closure61.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1668 }; N.selectedIdReducer_closure62.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1669 }; N.selectedIdReducer_closure63.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1670 }; N.editingReducer_closure18.prototype = { call$2: function(tasks, action) { return J.$index$asx(action.tasks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1671 }; N.editingReducer_closure19.prototype = { call$2: function(tasks, action) { return J.$index$asx(action.tasks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1672 }; N.editingReducer_closure20.prototype = { call$2: function(tasks, action) { return J.$index$asx(action.tasks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1673 }; N.editingReducer_closure21.prototype = { call$2: function(task, action) { return action.task.rebuild$1(new N.editingReducer__closure8()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1674 }; N.editingReducer__closure8.prototype = { call$1: function(b) { b.get$_task_model$_$this()._task_model$_isChanged = true; return b; }, $signature: 46 }; N._viewTaskList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; N._filterTasksByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; N._filterTasksByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterTasksByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; N._filterTasksByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterTasksByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; N._filterTasksByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._filterTasksByStatus_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$statusFilters().get$_safeList(), this.action.status); return b; }, $signature: 2 }; N._filterTasksByStatus_closure0.prototype = { call$1: function(b) { var t1 = b.get$statusFilters(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.action.status); return b; }, $signature: 2 }; N._filterTasks_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taskListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; N._sortTasks_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; N._addTaskTime_closure.prototype = { call$1: function(b) { return b.get$_task_model$_$this()._showAsRunning = this.action.showAsRunning; }, $signature: 1675 }; N._startListMultiselect_closure2.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; N._addToListMultiselect_closure2.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._removeFromListMultiselect_closure2.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; N._clearListMultiselect_closure2.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; N._sortTasksSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11; for (t1 = this.action, t2 = t1.taskIds, t3 = t2.get$keys(t2), t3 = t3.get$iterator(t3), t4 = this.taskState, t5 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t3.moveNext$0();) { t6 = t3.get$current(t3); for (t7 = J.get$iterator$ax(t2.$index(0, t6)); t7.moveNext$0();) { t8 = t7.get$current(t7); t9 = b.get$_task_state$_$this(); t10 = t9._task_state$_map; if (t10 == null) { t10 = new A.MapBuilder(null, $, null, t5); t10.replace$1(0, C.Map_empty0); t9._task_state$_map = t10; t9 = t10; } else t9 = t10; t10 = J.$index$asx(t4.map._map$_map, t8); t10.toString; t11 = new D.TaskEntityBuilder(); t11.get$_task_model$_$this()._showAsRunning = false; t11._task_model$_$v = t10; new N._sortTasksSuccess__closure(t6, t1, t8).call$1(t11); t10 = t11.build$0(0); t9._checkKey$1(t8); t9._checkValue$1(t10); J.$indexSet$ax(t9.get$_safeMap(), t8, t10); } } }, $signature: 302 }; N._sortTasksSuccess__closure.prototype = { call$1: function(b) { var t1 = this.statusId; b.get$_task_model$_$this()._task_model$_statusId = t1; t1 = J.indexOf$1$asx(this.action.taskIds.$index(0, t1), this.taskId); b.get$_task_model$_$this()._statusOrder = t1; return b; }, $signature: 46 }; N._archiveTaskSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 302 }; N._deleteTaskSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 302 }; N._restoreTaskSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tasks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_state$_$this(); t5 = t4._task_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 302 }; N._addTask_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.task, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 303 }; N._updateTask_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.task; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 303 }; N._setLoadedTask_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.task; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 303 }; U.convertTaskToInvoiceItem_closure.prototype = { call$1: function(time) { return time.startDate != null && time.endDate != null; }, $signature: 182 }; U.convertTaskToInvoiceItem_closure0.prototype = { call$1: function(time) { var t3, start, end, t4, _this = this, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); if (t3.$index(t1, t2).userCompany.company.invoiceTaskDatelog && t3.$index(t1, t2).userCompany.company.invoiceTaskTimelog) { t1 = _this.context; start = Y.formatDate(time.startDate.toIso8601String$0(), t1, true, true, true); end = Y.formatDate(time.endDate.toIso8601String$0(), t1, false, true, true); t1 = _this._box_0; t1.notes = t1.notes + ("### " + start + " - " + end + "\n"); } else { t4 = _this.context; if (t3.$index(t1, t2).userCompany.company.invoiceTaskDatelog) _this.dates.add$1(0, Y.formatDate(time.startDate.toIso8601String$0(), t4, true, true, false)); else { start = Y.formatDate(time.startDate.toIso8601String$0(), t4, false, true, true); end = Y.formatDate(time.endDate.toIso8601String$0(), t4, false, true, true); t1 = _this._box_0; t1.notes = t1.notes + ("### " + start + " - " + end + "\n"); } } }, $signature: 204 }; U.convertTaskToInvoiceItem_closure1.prototype = { call$1: function(b) { var t1, t2, t3, _this = this; b.get$_invoice_model$_$this()._invoice_model$_typeId = "2"; t1 = _this.task; b.get$_invoice_model$_$this()._invoice_model$_taskId = t1.id; t2 = _this._box_0.notes; b.get$_invoice_model$_$this()._invoice_model$_notes = t2; t2 = _this.state; t3 = t2.uiState.selectedCompanyIndex; t3 = U.taskRateSelector(_this.client, J.$index$asx(t2.userCompanyStates._list, t3).userCompany.company, _this.group, _this.project, t1); b.get$_invoice_model$_$this()._invoice_model$_cost = t3; t3 = Y.round(C.JSInt_methods._tdivFast$1(t1.calculateDuration$0()._duration, 1000000) / 3600, 3); b.get$_invoice_model$_$this()._invoice_model$_quantity = t3; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1.customValue4; return b; }, $signature: 54 }; U.memoizedTaskList_closure.prototype = { call$5: function(taskMap, clientId, userMap, clientMap, projectMap) { return U.taskList(taskMap, clientId, userMap, clientMap, projectMap); }, $signature: 1678 }; U.taskList_closure.prototype = { call$1: function(taskId) { var t2, task = J.$index$asx(this.taskMap._map$_map, taskId), t1 = this.clientId; if ((t1 == null ? "" : t1).length !== 0) { t2 = task.clientId; t1 = t2.length !== 0 && t2 !== t1; } else t1 = false; if (t1) return false; if (!task.get$isArchived() && !task.isDeleted) if (!task.get$isRunning()) t1 = task.invoiceId.length === 0; else t1 = false; else t1 = false; return t1; }, $signature: 16 }; U.taskList_closure0.prototype = { call$2: function(idA, idB) { var t1 = this.taskMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, idA).number; t1 = t2.$index(t1, idB).number; return C.JSString_methods.compareTo$1(t3, t1); }, $signature: 18 }; U.memoizedKanbanTaskList_closure.prototype = { call$9: function(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return U.kanbanTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, $signature: 605 }; U.kanbanTasksSelector_closure.prototype = { call$1: function(taskId) { var _this = this, task = J.$index$asx(_this.taskMap._map$_map, taskId), t1 = task.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, null, null); if (!(!client.get$isArchived() && !client.isDeleted)) t1 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t1 = false; if (t1) return false; t1 = task.invoiceId; if (t1.length !== 0) return false; return true; }, $signature: 16 }; U.kanbanTasksSelector_closure0.prototype = { call$2: function(taskAId, taskBId) { var _this = this, t1 = _this.taskMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.taskListState; return t2.$index(t1, taskAId).compareTo$8(0, t2.$index(t1, taskBId), t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, $signature: 18 }; U.memoizedFilteredTaskList_closure.prototype = { call$9: function(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return U.filteredTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, $signature: 605 }; U.filteredTasksSelector_closure.prototype = { call$1: function(taskId) { var t2, project, t3, t4, t5, _this = this, _null = null, task = J.$index$asx(_this.taskMap._map$_map, taskId), t1 = task.clientId, client = J.$index$asx(_this.clientMap._map$_map, t1); if (client == null) client = T.ClientEntity_ClientEntity(t1, _null, _null); t2 = task.projectId; project = J.$index$asx(_this.projectMap._map$_map, t2); if (project == null) project = A.ProjectEntity_ProjectEntity(_null, t2, _null, _null); if (task.id === _this.selectionState.selectedId) return true; if (!(!client.get$isArchived() && !client.isDeleted)) t3 = !(client.id === _this.filterEntityId && client.get$entityType() === _this.filterEntityType); else t3 = false; if (t3) return false; t3 = _this.taskListState; t4 = t3.filter; if (!task.matchesFilter$1(t4) && !C.JSString_methods.contains$1(client.displayName.toLowerCase(), t4.toLowerCase()) && !C.JSString_methods.contains$1(project.name.toLowerCase(), t4.toLowerCase())) return false; if (!task.matchesStates$1(t3.stateFilters)) return false; if (!task.matchesStatuses$1(t3.statusFilters)) return false; t4 = _this.filterEntityId; if (t4 != null) { t5 = _this.filterEntityType; if (t5 === C.EntityType_client && t1 !== t4) return false; else if (t5 === C.EntityType_project && t2 !== t4) return false; else if (t5 === C.EntityType_invoice && task.invoiceId !== t4) return false; else if (t5 === C.EntityType_user && task.assignedUserId !== t4) return false; else if (t5 === C.EntityType_taskStatus && task.statusId !== t4) return false; else if (t5 === C.EntityType_group && client.groupId !== t4) return false; } else { t1 = !(!client.get$isArchived() && !client.isDeleted); if (t1) return false; else { t1 = !(!project.get$isArchived() && !project.isDeleted); if (t1) return false; } } t1 = t3.custom1Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, task.customValue1)) return false; else { t1 = t3.custom2Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, task.customValue2)) return false; else { t1 = t3.custom3Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, task.customValue3)) return false; else { t1 = t3.custom4Filters._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1) && !t2.contains$1(t1, task.customValue4)) return false; } } } return true; }, $signature: 16 }; U.filteredTasksSelector_closure0.prototype = { call$2: function(taskAId, taskBId) { var _this = this, t1 = _this.taskMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.taskListState; return t2.$index(t1, taskAId).compareTo$8(0, t2.$index(t1, taskBId), t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, $signature: 18 }; U.memoizedTaskStatsForClient_closure.prototype = { call$2: function(clientId, taskMap) { return U.taskStatsForClient(clientId, taskMap); }, $signature: 304 }; U.taskStatsForClient_closure.prototype = { call$2: function(taskId, task) { if (task.clientId === this.clientId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 122 }; U.memoizedTaskStatsForProject_closure.prototype = { call$2: function(projectId, taskMap) { return U.taskStatsForProject(projectId, taskMap); }, $signature: 304 }; U.taskStatsForProject_closure.prototype = { call$2: function(taskId, task) { if (task.projectId === this.projectId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 122 }; U.memoizedTaskStatsForUser_closure.prototype = { call$2: function(userId, taskMap) { return U.taskStatsForProject(userId, taskMap); }, $signature: 304 }; M.TaskState.prototype = { $get$1: function(_, taskId) { var _null = null, t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, taskId)) return t2.$index(t1, taskId); else return D.TaskEntity_TaskEntity(_null, taskId, _null, _null, _null); }, loadTasks$1: function(clients) { return this.rebuild$1(new M.TaskState_loadTasks_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new M.TaskState_loadTasks_closure0(), new M.TaskState_loadTasks_closure1(), type$.legacy_String, type$.legacy_TaskEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; M.TaskState_loadTasks_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; M.TaskState_loadTasks_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1681 }; M.TaskState_loadTasks_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 303 }; M.TaskUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; M._$TaskStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_woc0), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new M.TaskStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaskEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_task_state$_$this(); t6 = t5._task_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._task_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_woc0)); break; case "list": t5 = result.get$_task_state$_$this(); t6 = t5._task_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._task_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_a1Y; }, get$wireName: function() { return "TaskState"; } }; M._$TaskUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_4QF0)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new M.TaskUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaskEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_task_state$_$this(); t4 = t3._task_state$_editing; if (t4 == null) { t4 = new D.TaskEntityBuilder(); t4.get$_task_model$_$this()._showAsRunning = false; t3._task_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_4QF0)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._task_model$_$v = t4; break; case "listUIState": t3 = result.get$_task_state$_$this(); t4 = t3._task_state$_listUIState; t3 = t4 == null ? t3._task_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_state$_$this()._task_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_state$_$this()._task_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_state$_$this()._task_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_YgE; }, get$wireName: function() { return "TaskUIState"; } }; M._$TaskState.prototype = { rebuild$1: function(updates) { var t1 = new M.TaskStateBuilder(); t1._task_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof M.TaskState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._task_state$__hashCode; return t1 == null ? _this._task_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; M.TaskStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_map; return t2 == null ? t1._task_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskEntity) : t2; }, get$list: function(_) { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_list; return t2 == null ? t1._task_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_task_state$_$this: function() { var t1, t2, _this = this, $$v = _this._task_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._task_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._task_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._task_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._task_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = M._$TaskState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TaskState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; M._$TaskUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof M.TaskUIState) if (J.$eq$(_this.editing, other.editing)) if (_this.editingTimeIndex == other.editingTimeIndex) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._task_state$__hashCode; return t1 == null ? _this._task_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingTimeIndex)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingTimeIndex", _this.editingTimeIndex); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; M.TaskUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_editing; if (t2 == null) { t2 = new D.TaskEntityBuilder(); t2.get$_task_model$_$this()._showAsRunning = false; t1._task_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_task_state$_$this(), t2 = t1._task_state$_listUIState; return t2 == null ? t1._task_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_task_state$_$this: function() { var t1, t2, _this = this, $$v = _this._task_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new D.TaskEntityBuilder(); t2.get$_task_model$_$this()._showAsRunning = false; t2._task_model$_$v = t1; t1 = t2; } _this._task_state$_editing = t1; _this._editingTimeIndex = $$v.editingTimeIndex; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._task_state$_listUIState = t2; _this._task_state$_selectedId = $$v.selectedId; _this._task_state$_forceSelected = $$v.forceSelected; _this._task_state$_tabIndex = $$v.tabIndex; _this._task_state$_saveCompleter = $$v.saveCompleter; _this._task_state$_cancelCompleter = $$v.cancelCompleter; _this._task_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s11_ = "TaskUIState", _$result = null; try { _$result0 = _this._task_state$_$v; if (_$result0 == null) { t1 = _this._task_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$_task_state$_$this()._editingTimeIndex; t3 = _this.get$listUIState().build$0(0); t4 = _this.get$_task_state$_$this()._task_state$_selectedId; t5 = _this.get$_task_state$_$this()._task_state$_forceSelected; t6 = _this.get$_task_state$_$this()._task_state$_tabIndex; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "tabIndex")); t7 = _this.get$_task_state$_$this()._task_state$_saveCompleter; _$result0 = M._$TaskUIState$_(_this.get$_task_state$_$this()._task_state$_cancelCompleter, t1, t2, t5, t3, t7, t4, t6); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._task_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_state$_$v = t1; return _$result; } }; M._TaskUIState_Object_EntityUIState.prototype = {}; V.ViewTaskStatusList.prototype = {$isStopLoading: 1}; V.ViewTaskStatus.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$taskStatusId: function() { return this.taskStatusId; } }; V.EditTaskStatus.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$taskStatus: function() { return this.taskStatus; } }; V.UpdateTaskStatus.prototype = {$isPersistUI: 1, get$taskStatus: function() { return this.taskStatus; } }; V.LoadTaskStatusRequest.prototype = {$isStartLoading: 1}; V.LoadTaskStatusFailure.prototype = { toString$0: function(_) { return "LoadTaskStatusFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; V.LoadTaskStatusSuccess.prototype = { toString$0: function(_) { return "LoadTaskStatusSuccess{taskStatus: " + H.S(this.taskStatus) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$taskStatus: function() { return this.taskStatus; } }; V.LoadTaskStatusesRequest.prototype = {$isStartLoading: 1}; V.LoadTaskStatusesFailure.prototype = { toString$0: function(_) { return "LoadTaskStatusesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; V.LoadTaskStatusesSuccess.prototype = { toString$0: function(_) { return "LoadTaskStatusesSuccess{taskStatuses: " + H.S(this.taskStatuses) + "}"; }, $isStopLoading: 1 }; V.SaveTaskStatusRequest.prototype = {$isStartSaving: 1, get$taskStatus: function() { return this.taskStatus; } }; V.SaveTaskStatusSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taskStatus: function() { return this.taskStatus; } }; V.AddTaskStatusSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taskStatus: function() { return this.taskStatus; } }; V.SaveTaskStatusFailure.prototype = {$isStopSaving: 1}; V.ArchiveTaskStatusesRequest.prototype = {$isStartSaving: 1}; V.ArchiveTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; V.ArchiveTaskStatusesFailure.prototype = {$isStopSaving: 1}; V.DeleteTaskStatusesRequest.prototype = {$isStartSaving: 1}; V.DeleteTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; V.DeleteTaskStatusesFailure.prototype = {$isStopSaving: 1}; V.RestoreTaskStatusesRequest.prototype = {$isStartSaving: 1}; V.RestoreTaskStatusesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; V.RestoreTaskStatusesFailure.prototype = {$isStopSaving: 1}; V.FilterTaskStatuses.prototype = {$isPersistUI: 1}; V.SortTaskStatuses.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; V.FilterTaskStatusesByState.prototype = {$isPersistUI: 1}; V.FilterTaskStatusesByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; V.FilterTaskStatusesByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; V.FilterTaskStatusesByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; V.FilterTaskStatusesByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; V.StartTaskStatusMultiselect.prototype = {}; V.AddToTaskStatusMultiselect.prototype = {}; V.RemoveFromTaskStatusMultiselect.prototype = {}; V.ClearTaskStatusMultiselect.prototype = {}; V.handleTaskStatusAction_closure.prototype = { call$1: function(taskStatus) { return taskStatus.get$id(taskStatus); }, $signature: 41 }; V.handleTaskStatusAction_closure0.prototype = { call$1: function(b) { var t1 = this.taskStatus.id; b.get$_task_model$_$this()._task_model$_statusId = t1; return b; }, $signature: 46 }; B._editTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s26_ = "/settings/task_status_edit"; next.call$1(type$.legacy_EditTaskStatus._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s26_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s26_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._viewTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewTaskStatus_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTaskStatus_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTaskStatus._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/task_status_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/task_status_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; B._viewTaskStatusList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var _s21_ = "/settings/task_status"; next.call$1(type$.legacy_ViewTaskStatusList._as(dynamicAction)); if (store.get$_store$_state().staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s21_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s21_, new B._viewTaskStatusList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._viewTaskStatusList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; B._archiveTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_ArchiveTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = P.List_List$of(new H.MappedListIterable(t1, new B._archiveTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new B._archiveTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new B._archiveTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._archiveTaskStatus__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskStatusState.map._map$_map, id); }, $signature: 382 }; B._archiveTaskStatus__closure0.prototype = { call$1: function(taskStatuses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.ArchiveTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 352 }; B._archiveTaskStatus__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.ArchiveTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; B._deleteTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_DeleteTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = P.List_List$of(new H.MappedListIterable(t1, new B._deleteTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new B._deleteTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new B._deleteTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._deleteTaskStatus__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskStatusState.map._map$_map, id); }, $signature: 382 }; B._deleteTaskStatus__closure0.prototype = { call$1: function(taskStatuses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.DeleteTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 352 }; B._deleteTaskStatus__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.DeleteTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; B._restoreTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaskStatuses; type$.legacy_RestoreTaskStatusesRequest._as(dynamicAction); t1 = dynamicAction.taskStatusIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaskStatusEntity*>"); prevTaskStatuses = P.List_List$of(new H.MappedListIterable(t1, new B._restoreTaskStatus__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new B._restoreTaskStatus__closure0(store, dynamicAction), type$.Null).catchError$1(new B._restoreTaskStatus__closure1(store, prevTaskStatuses, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._restoreTaskStatus__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taskStatusState.map._map$_map, id); }, $signature: 382 }; B._restoreTaskStatus__closure0.prototype = { call$1: function(taskStatuses) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.RestoreTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, $signature: 352 }; B._restoreTaskStatus__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.RestoreTaskStatusesFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; B._saveTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveTaskStatusRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.taskStatus).then$1$1(0, new B._saveTaskStatus__closure(dynamicAction, store), type$.Null).catchError$1(new B._saveTaskStatus__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._saveTaskStatus__closure.prototype = { call$1: function(taskStatus) { var t1 = this.action, t2 = this.store; if (t1.taskStatus.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new V.AddTaskStatusSuccess(taskStatus)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new V.SaveTaskStatusSuccess(taskStatus)); t1.completer.complete$1(0, taskStatus); }, $signature: 238 }; B._saveTaskStatus__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.SaveTaskStatusFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; B._loadTaskStatus_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTaskStatus._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taskStatusId).then$1$1(0, new B._loadTaskStatus__closure(store, dynamicAction), type$.Null).catchError$1(new B._loadTaskStatus__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._loadTaskStatus__closure.prototype = { call$1: function(taskStatus) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusSuccess(taskStatus)); this.action.completer.complete$1(0, null); }, $signature: 238 }; B._loadTaskStatus__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; B._loadTaskStatuses_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTaskStatuses._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new B._loadTaskStatuses__closure(store, dynamicAction), type$.Null).catchError$1(new B._loadTaskStatuses__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; B._loadTaskStatuses__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1685 }; B._loadTaskStatuses__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.LoadTaskStatusesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; A.taskStatusUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taskStatusListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer17().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._task_status_model$_$v = t4; t1 = $.$get$selectedIdReducer17().call$2(t2.selectedId, t3); b.get$_task_status_state$_$this()._task_status_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer17().call$2(t2.forceSelected, t3); b.get$_task_status_state$_$this()._task_status_state$_forceSelected = t3; return b; }, $signature: 1686 }; A.forceSelectedReducer_closure135.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1687 }; A.forceSelectedReducer_closure136.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1688 }; A.forceSelectedReducer_closure137.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1689 }; A.forceSelectedReducer_closure138.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1690 }; A.forceSelectedReducer_closure139.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1691 }; A.forceSelectedReducer_closure140.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1692 }; A.forceSelectedReducer_closure141.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1693 }; A.forceSelectedReducer_closure142.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1694 }; A.selectedIdReducer_closure271.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1695 }; A.selectedIdReducer_closure272.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1696 }; A.selectedIdReducer_closure273.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_taskStatus ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; A.selectedIdReducer_closure274.prototype = { call$2: function(selectedId, action) { return action.get$taskStatusId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; A.selectedIdReducer_closure275.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$taskStatus()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; A.selectedIdReducer_closure276.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; A.selectedIdReducer_closure277.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; A.selectedIdReducer_closure278.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1697 }; A.selectedIdReducer_closure279.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1698 }; A.selectedIdReducer_closure280.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1699 }; A.selectedIdReducer_closure281.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1700 }; A.selectedIdReducer_closure282.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1701 }; A.selectedIdReducer_closure283.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1702 }; A.selectedIdReducer_closure284.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1703 }; A.selectedIdReducer_closure285.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_taskStatus ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; A.editingReducer_closure89.prototype = { call$2: function(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1704 }; A.editingReducer_closure90.prototype = { call$2: function(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1705 }; A.editingReducer_closure91.prototype = { call$2: function(taskStatuses, action) { return J.$index$asx(action.taskStatuses, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1706 }; A.editingReducer_closure92.prototype = { call$2: function(taskStatus, action) { return action.taskStatus.rebuild$1(new A.editingReducer__closure35()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1707 }; A.editingReducer__closure35.prototype = { call$1: function(b) { b.get$_task_status_model$_$this()._task_status_model$_isChanged = true; return b; }, $signature: 145 }; A._viewTaskStatusList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._filterTaskStatusesByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; A._filterTaskStatusesByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatusesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; A._filterTaskStatusesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._filterTaskStatuses_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taskStatusListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; A._sortTaskStatuses_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; A._startListMultiselect_closure17.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; A._addToListMultiselect_closure17.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._removeFromListMultiselect_closure17.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; A._clearListMultiselect_closure17.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; A._sortTaskStatusSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5, _i, statusId, t6, t7, t8; for (t1 = this.action, t2 = t1.statusIds, t3 = t2.length, t4 = this.taskStatusState, t5 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { statusId = t2[_i]; t6 = b.get$_task_status_state$_$this(); t7 = t6._task_status_state$_map; if (t7 == null) { t7 = new A.MapBuilder(null, $, null, t5); t7.replace$1(0, C.Map_empty0); t6._task_status_state$_map = t7; t6 = t7; } else t6 = t7; t7 = J.$index$asx(t4.map._map$_map, statusId); t7.toString; t8 = new S.TaskStatusEntityBuilder(); t8.get$_task_status_model$_$this()._task_status_model$_color = ""; t8._task_status_model$_$v = t7; new A._sortTaskStatusSuccess__closure(t1, statusId).call$1(t8); t7 = t8.build$0(0); t6._checkKey$1(statusId); t6._checkValue$1(t7); J.$indexSet$ax(t6.get$_safeMap(), statusId, t7); } }, $signature: 309 }; A._sortTaskStatusSuccess__closure.prototype = { call$1: function(b) { var t1 = this.action.statusIds; t1 = (t1 && C.JSArray_methods).indexOf$1(t1, this.statusId); b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, $signature: 145 }; A._archiveTaskStatusSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 309 }; A._deleteTaskStatusSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 309 }; A._restoreTaskStatusSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taskStatuses), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_task_status_state$_$this(); t5 = t4._task_status_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._task_status_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 309 }; A._addTaskStatus_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 310 }; A._updateTaskStatus_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 310 }; A._setLoadedTaskStatus_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taskStatus; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 310 }; U.memoizedDropdownTaskStatusList_closure.prototype = { call$4: function(taskStatusMap, taskStatusList, staticState, userMap) { return U.dropdownTaskStatusesSelector(taskStatusMap, taskStatusList, staticState, userMap); }, $signature: 1711 }; U.dropdownTaskStatusesSelector_closure.prototype = { call$1: function(taskStatusId) { var taskStatus = J.$index$asx(this.taskStatusMap._map$_map, taskStatusId); return !taskStatus.get$isArchived() && !taskStatus.isDeleted; }, $signature: 16 }; U.dropdownTaskStatusesSelector_closure0.prototype = { call$2: function(taskStatusAId, taskStatusBId) { var t1 = this.taskStatusMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, taskStatusAId).compareTo$3$sortAscending$sortField$taskStatus(0, true, "name", t2.$index(t1, taskStatusBId)); }, $signature: 18 }; U.memoizedFilteredTaskStatusList_closure.prototype = { call$4: function(selectionState, taskStatusMap, taskStatusList, taskStatusListState) { return U.filteredTaskStatusesSelector(selectionState, taskStatusMap, taskStatusList, taskStatusListState); }, $signature: 1712 }; U.filteredTaskStatusesSelector_closure.prototype = { call$1: function(taskStatusId) { var t1, taskStatus = J.$index$asx(this.taskStatusMap._map$_map, taskStatusId); if (taskStatus.id === this.selectionState.selectedId) return true; t1 = this.taskStatusListState; if (!taskStatus.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([taskStatus.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; U.filteredTaskStatusesSelector_closure0.prototype = { call$2: function(taskStatusAId, taskStatusBId) { var t4, t1 = this.taskStatusMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = t2.$index(t1, taskStatusAId); t1 = t2.$index(t1, taskStatusBId); t2 = this.taskStatusListState; t4 = t2.sortField; return J.compareTo$3$sortAscending$sortField$taskStatus$ns(t3, t2.sortAscending, t4, t1); }, $signature: 18 }; U.memoizedCalculateTaskStatusAmount_closure.prototype = { call$2: function(taskStatusId, taskMap) { return U.calculateTaskStatusAmount(taskMap, taskStatusId); }, $signature: 1713 }; U.calculateTaskStatusAmount_closure.prototype = { call$2: function(taskId, task) { var t1; if (task.statusId == this.taskStatusId) { t1 = this._box_0; t1.total = t1.total + C.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, $signature: 122 }; U.memoizedTaskStatsForTaskStatus_closure.prototype = { call$2: function(companyGatewayId, taskMap) { return U.taskStatsForTaskStatus(companyGatewayId, taskMap); }, $signature: 304 }; U.taskStatsForTaskStatus_closure.prototype = { call$2: function(taskId, task) { if (task.statusId == this.statusId) if (!task.get$isArchived() && !task.isDeleted) ++this._box_0.countActive; else if (task.get$isArchived()) ++this._box_0.countArchived; }, $signature: 122 }; U.defaultTaskStatusId_closure.prototype = { call$1: function(statusId) { var $status = J.$index$asx(this.taskStatusMap._map$_map, statusId); return !$status.get$isArchived() && !$status.isDeleted; }, $signature: 16 }; U.defaultTaskStatusId_closure0.prototype = { call$2: function(statusIdA, statusIdB) { var t1 = this.taskStatusMap._map$_map, t2 = J.getInterceptor$asx(t1), statusA = t2.$index(t1, statusIdA), statusB = t2.$index(t1, statusIdB); t1 = statusA.statusOrder; if (t1 == null) t1 = 9999; t2 = statusB.statusOrder; return C.JSInt_methods.compareTo$1(t1, t2 == null ? 9999 : t2); }, $signature: 18 }; L.TaskStatusState.prototype = { $get$1: function(_, statusId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, statusId)) return t2.$index(t1, statusId); else return S.TaskStatusEntity_TaskStatusEntity(statusId, null); }, loadTaskStatuses$1: function(clients) { return this.rebuild$1(new L.TaskStatusState_loadTaskStatuses_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new L.TaskStatusState_loadTaskStatuses_closure0(), new L.TaskStatusState_loadTaskStatuses_closure1(), type$.legacy_String, type$.legacy_TaskStatusEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; L.TaskStatusState_loadTaskStatuses_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; L.TaskStatusState_loadTaskStatuses_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1714 }; L.TaskStatusState_loadTaskStatuses_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 310 }; L.TaskStatusUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; L._$TaskStatusStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_woc), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new L.TaskStatusStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_task_status_state$_$this(); t6 = t5._task_status_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._task_status_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_woc)); break; case "list": t5 = result.get$_task_status_state$_$this(); t6 = t5._task_status_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._task_status_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_w4G; }, get$wireName: function() { return "TaskStatusState"; } }; L._$TaskStatusUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_ef4)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new L.TaskStatusUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaskStatusEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_task_status_state$_$this(); t4 = t3._task_status_state$_editing; if (t4 == null) { t4 = new S.TaskStatusEntityBuilder(); t4.get$_task_status_model$_$this()._task_status_model$_color = ""; t3._task_status_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_ef4)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._task_status_model$_$v = t4; break; case "listUIState": t3 = result.get$_task_status_state$_$this(); t4 = t3._task_status_state$_listUIState; t3 = t4 == null ? t3._task_status_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_task_status_state$_$this()._task_status_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_task_status_state$_$this()._task_status_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_task_status_state$_$this()._task_status_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kyy; }, get$wireName: function() { return "TaskStatusUIState"; } }; L._$TaskStatusState.prototype = { rebuild$1: function(updates) { var t1 = new L.TaskStatusStateBuilder(); t1._task_status_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof L.TaskStatusState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._task_status_state$__hashCode; return t1 == null ? _this._task_status_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; L.TaskStatusStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_map; return t2 == null ? t1._task_status_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaskStatusEntity) : t2; }, get$list: function(_) { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_list; return t2 == null ? t1._task_status_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_task_status_state$_$this: function() { var t1, t2, _this = this, $$v = _this._task_status_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._task_status_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._task_status_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._task_status_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._task_status_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = L._$TaskStatusState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TaskStatusState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_status_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; L._$TaskStatusUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof L.TaskStatusUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._task_status_state$__hashCode; return t1 == null ? _this._task_status_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaskStatusUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; L.TaskStatusUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_editing; if (t2 == null) { t2 = new S.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; t1._task_status_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_task_status_state$_$this(), t2 = t1._task_status_state$_listUIState; return t2 == null ? t1._task_status_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_task_status_state$_$this: function() { var t1, t2, _this = this, $$v = _this._task_status_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new S.TaskStatusEntityBuilder(); t2.get$_task_status_model$_$this()._task_status_model$_color = ""; t2._task_status_model$_$v = t1; t1 = t2; } _this._task_status_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._task_status_state$_listUIState = t2; _this._task_status_state$_selectedId = $$v.selectedId; _this._task_status_state$_forceSelected = $$v.forceSelected; _this._task_status_state$_tabIndex = $$v.tabIndex; _this._task_status_state$_saveCompleter = $$v.saveCompleter; _this._task_status_state$_cancelCompleter = $$v.cancelCompleter; _this._task_status_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s17_ = "TaskStatusUIState", _$result = null; try { _$result0 = _this._task_status_state$_$v; if (_$result0 == null) { t1 = _this._task_status_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_task_status_state$_$this()._task_status_state$_selectedId; t4 = _this.get$_task_status_state$_$this()._task_status_state$_forceSelected; t5 = _this.get$_task_status_state$_$this()._task_status_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s17_, "tabIndex")); t6 = _this.get$_task_status_state$_$this()._task_status_state$_saveCompleter; _$result0 = L._$TaskStatusUIState$_(_this.get$_task_status_state$_$this()._task_status_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._task_status_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s17_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._task_status_state$_$v = t1; return _$result; } }; L._TaskStatusUIState_Object_EntityUIState.prototype = {}; A.ViewTaxRateList.prototype = {$isStopLoading: 1}; A.ViewTaxRate.prototype = {$isPersistUI: 1}; A.EditTaxRate.prototype = {$isPersistUI: 1, get$taxRate: function() { return this.taxRate; } }; A.UpdateTaxRate.prototype = {$isPersistUI: 1, get$taxRate: function() { return this.taxRate; } }; A.LoadTaxRateRequest.prototype = {$isStartLoading: 1}; A.LoadTaxRateFailure.prototype = { toString$0: function(_) { return "LoadTaxRateFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaxRateSuccess.prototype = { toString$0: function(_) { return "LoadTaxRateSuccess{taxRate: " + H.S(this.taxRate) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$taxRate: function() { return this.taxRate; } }; A.LoadTaxRatesRequest.prototype = {$isStartLoading: 1}; A.LoadTaxRatesFailure.prototype = { toString$0: function(_) { return "LoadTaxRatesFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; A.LoadTaxRatesSuccess.prototype = { toString$0: function(_) { return "LoadTaxRatesSuccess{taxRates: " + H.S(this.taxRates) + "}"; }, $isStopLoading: 1 }; A.SaveTaxRateRequest.prototype = {$isStartSaving: 1, get$taxRate: function() { return this.taxRate; } }; A.SaveTaxRateSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taxRate: function() { return this.taxRate; } }; A.AddTaxRateSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$taxRate: function() { return this.taxRate; } }; A.SaveTaxRateFailure.prototype = {$isStopSaving: 1}; A.ArchiveTaxRateRequest.prototype = {$isStartSaving: 1}; A.ArchiveTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.ArchiveTaxRateFailure.prototype = {$isStopSaving: 1}; A.DeleteTaxRateRequest.prototype = {$isStartSaving: 1}; A.DeleteTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.DeleteTaxRateFailure.prototype = {$isStopSaving: 1}; A.RestoreTaxRateRequest.prototype = {$isStartSaving: 1}; A.RestoreTaxRatesSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; A.RestoreTaxRateFailure.prototype = {$isStopSaving: 1}; A.FilterTaxRates.prototype = {$isPersistUI: 1}; A.SortTaxRates.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; A.FilterTaxRatesByState.prototype = {$isPersistUI: 1}; A.handleTaxRateAction_closure.prototype = { call$1: function(taxRate) { return taxRate.get$id(taxRate); }, $signature: 41 }; A.StartTaxRateMultiselect.prototype = {}; A.AddToTaxRateMultiselect.prototype = {}; A.RemoveFromTaxRateMultiselect.prototype = {}; A.ClearTaxRateMultiselect.prototype = {}; T._editTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s33_ = "/settings/tax_settings_rates_edit"; next.call$1(type$.legacy_EditTaxRate._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s33_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s33_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewTaxRate_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewTaxRate_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewTaxRate._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/tax_settings_rates_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/tax_settings_rates_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; T._viewTaxRateList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s28_ = "/settings/tax_settings_rates"; next.call$1(type$.legacy_ViewTaxRateList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s28_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s28_, new T._viewTaxRateList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewTaxRateList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; T._archiveTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_ArchiveTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = P.List_List$of(new H.MappedListIterable(t1, new T._archiveTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new T._archiveTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new T._archiveTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._archiveTaxRate__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taxRateState.map._map$_map, id); }, $signature: 239 }; T._archiveTaxRate__closure0.prototype = { call$1: function(taxRates) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ArchiveTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 351 }; T._archiveTaxRate__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ArchiveTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._deleteTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_DeleteTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = P.List_List$of(new H.MappedListIterable(t1, new T._deleteTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new T._deleteTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new T._deleteTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._deleteTaxRate__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taxRateState.map._map$_map, id); }, $signature: 239 }; T._deleteTaxRate__closure0.prototype = { call$1: function(taxRates) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.DeleteTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 351 }; T._deleteTaxRate__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.DeleteTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._restoreTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTaxRates; type$.legacy_RestoreTaxRateRequest._as(dynamicAction); t1 = dynamicAction.taxRateIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TaxRateEntity*>"); prevTaxRates = P.List_List$of(new H.MappedListIterable(t1, new T._restoreTaxRate__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new T._restoreTaxRate__closure0(store, dynamicAction), type$.Null).catchError$1(new T._restoreTaxRate__closure1(store, prevTaxRates, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._restoreTaxRate__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).taxRateState.map._map$_map, id); }, $signature: 239 }; T._restoreTaxRate__closure0.prototype = { call$1: function(taxRates) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.RestoreTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, $signature: 351 }; T._restoreTaxRate__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.RestoreTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._saveTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveTaxRateRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.taxRate).then$1$1(0, new T._saveTaxRate__closure(dynamicAction, store), type$.Null).catchError$1(new T._saveTaxRate__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._saveTaxRate__closure.prototype = { call$1: function(taxRate) { var t1 = this.action, t2 = this.store; if (t1.taxRate.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new A.AddTaxRateSuccess(taxRate)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new A.SaveTaxRateSuccess(taxRate)); t1.completer.complete$1(0, taxRate); }, $signature: 121 }; T._saveTaxRate__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SaveTaxRateFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadTaxRate_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTaxRate._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.LoadTaxRateRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.taxRateId).then$1$1(0, new T._loadTaxRate__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadTaxRate__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadTaxRate__closure.prototype = { call$1: function(taxRate) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadTaxRateSuccess(taxRate)); this.action.completer.complete$1(0, null); }, $signature: 121 }; T._loadTaxRate__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadTaxRateFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadTaxRates_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTaxRates._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new A.LoadTaxRatesRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new T._loadTaxRates__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadTaxRates__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadTaxRates__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadTaxRatesSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1718 }; T._loadTaxRates__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.LoadTaxRatesFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; Z.taxRateUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$taxRateListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer8().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._tax_rate_model$_$v = t4; t1 = $.$get$selectedIdReducer8().call$2(t2.selectedId, t3); b.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer8().call$2(t2.forceSelected, t3); b.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected = t3; return b; }, $signature: 1719 }; Z.forceSelectedReducer_closure67.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1720 }; Z.forceSelectedReducer_closure68.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1721 }; Z.forceSelectedReducer_closure69.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1722 }; Z.forceSelectedReducer_closure70.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1723 }; Z.selectedIdReducer_closure134.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1724 }; Z.selectedIdReducer_closure135.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1725 }; Z.selectedIdReducer_closure136.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_taxRate ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; Z.selectedIdReducer_closure137.prototype = { call$2: function(selectedId, action) { return action.taxRateId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1726 }; Z.selectedIdReducer_closure138.prototype = { call$2: function(selectedId, action) { return action.taxRate.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1727 }; Z.selectedIdReducer_closure139.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; Z.selectedIdReducer_closure140.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; Z.selectedIdReducer_closure141.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1728 }; Z.selectedIdReducer_closure142.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1729 }; Z.selectedIdReducer_closure143.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1730 }; Z.editingReducer_closure39.prototype = { call$2: function(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1731 }; Z.editingReducer_closure40.prototype = { call$2: function(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1732 }; Z.editingReducer_closure41.prototype = { call$2: function(taxRates, action) { return J.$index$asx(action.taxRates, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1733 }; Z.editingReducer_closure42.prototype = { call$2: function(taxRate, action) { return action.taxRate.rebuild$1(new Z.editingReducer__closure14()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1734 }; Z.editingReducer__closure14.prototype = { call$1: function(b) { b.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged = true; return b; }, $signature: 602 }; Z._viewTaxRateList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; Z._filterTaxRatesByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; Z._filterTaxRatesByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Z._filterTaxRates_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.taxRateListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; Z._sortTaxRates_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; Z._startListMultiselect_closure8.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; Z._addToListMultiselect_closure8.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Z._removeFromListMultiselect_closure8.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; Z._clearListMultiselect_closure8.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; Z._archiveTaxRateSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 349 }; Z._deleteTaxRateSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 349 }; Z._restoreTaxRateSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.taxRates), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_tax_rate_state$_$this(); t5 = t4._tax_rate_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._tax_rate_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 349 }; Z._addTaxRate_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taxRate, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 162 }; Z._updateTaxRate_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taxRate; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 162 }; Z._setLoadedTaxRate_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.taxRate; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 162 }; Z._setLoadedTaxRates_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.taxRates, new Z._setLoadedTaxRates__closure(), new Z._setLoadedTaxRates__closure0(), type$.legacy_String, type$.legacy_TaxRateEntity)); return b; }, $signature: 162 }; Z._setLoadedTaxRates__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Z._setLoadedTaxRates__closure0.prototype = { call$1: function(item) { return item; }, $signature: 601 }; Z._setLoadedTaxRates_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 162 }; Z._setLoadedCompany_closure3.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.taxRates, new Z._setLoadedCompany__closure3(), new Z._setLoadedCompany__closure4(), type$.legacy_String, type$.legacy_TaxRateEntity)); return b; }, $signature: 162 }; Z._setLoadedCompany__closure3.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Z._setLoadedCompany__closure4.prototype = { call$1: function(item) { return item; }, $signature: 601 }; Z._setLoadedCompany_closure4.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 162 }; G.memoizedFilteredTaxRateList_closure.prototype = { call$4: function(selectionState, taxRateMap, taxRateList, taxRateListState) { return G.filteredTaxRatesSelector(selectionState, taxRateMap, taxRateList, taxRateListState); }, $signature: 1739 }; G.filteredTaxRatesSelector_closure.prototype = { call$1: function(taxRateId) { var t1, taxRate = J.$index$asx(this.taxRateMap._map$_map, taxRateId); if (taxRate.id === this.selectionState.selectedId) return true; t1 = this.taxRateListState; if (!taxRate.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([taxRate.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; G.filteredTaxRatesSelector_closure0.prototype = { call$2: function(taxRateAId, taxRateBId) { var sortField, sortAscending, taxRateA0, response, t1 = this.taxRateMap._map$_map, t2 = J.getInterceptor$asx(t1), taxRateA = t2.$index(t1, taxRateAId), taxRateB = t2.$index(t1, taxRateBId); t1 = this.taxRateListState; sortField = t1.sortField; sortAscending = t1.sortAscending; taxRateA.toString; if (sortAscending) taxRateA0 = taxRateA; else taxRateA0 = taxRateB; if (!sortAscending) taxRateB = taxRateA; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(taxRateA0.name.toLowerCase(), taxRateB.name.toLowerCase()); break; case "rate": response = C.JSNumber_methods.compareTo$1(taxRateA0.rate, taxRateB.rate); break; default: P.print("## ERROR: sort by ." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 18 }; Q.TaxRateState.prototype = { map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q.TaxRateUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Q._$TaxRateStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_o2l), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.TaxRateStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TaxRateEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_tax_rate_state$_$this(); t6 = t5._tax_rate_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._tax_rate_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_o2l)); break; case "list": t5 = result.get$_tax_rate_state$_$this(); t6 = t5._tax_rate_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._tax_rate_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_kii; }, get$wireName: function() { return "TaxRateState"; } }; Q._$TaxRateUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_ML3)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Q.TaxRateUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TaxRateEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_tax_rate_state$_$this(); t4 = t3._tax_rate_state$_editing; t3 = t4 == null ? t3._tax_rate_state$_editing = new T.TaxRateEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_ML3)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._tax_rate_model$_$v = t4; break; case "listUIState": t3 = result.get$_tax_rate_state$_$this(); t4 = t3._tax_rate_state$_listUIState; t3 = t4 == null ? t3._tax_rate_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_tax_rate_state$_$this()._tax_rate_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_wEo1; }, get$wireName: function() { return "TaxRateUIState"; } }; Q._$TaxRateState.prototype = { rebuild$1: function(updates) { var t1 = new Q.TaxRateStateBuilder(); t1._tax_rate_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.TaxRateState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._tax_rate_state$__hashCode; return t1 == null ? _this._tax_rate_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Q.TaxRateStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_map; return t2 == null ? t1._tax_rate_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TaxRateEntity) : t2; }, get$list: function(_) { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_list; return t2 == null ? t1._tax_rate_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_tax_rate_state$_$this: function() { var t1, t2, _this = this, $$v = _this._tax_rate_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._tax_rate_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._tax_rate_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._tax_rate_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._tax_rate_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Q._$TaxRateState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TaxRateState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._tax_rate_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q._$TaxRateUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Q.TaxRateUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._tax_rate_state$__hashCode; return t1 == null ? _this._tax_rate_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TaxRateUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Q.TaxRateUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_editing; return t2 == null ? t1._tax_rate_state$_editing = new T.TaxRateEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_tax_rate_state$_$this(), t2 = t1._tax_rate_state$_listUIState; return t2 == null ? t1._tax_rate_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_tax_rate_state$_$this: function() { var t1, t2, _this = this, $$v = _this._tax_rate_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new T.TaxRateEntityBuilder(); t2._tax_rate_model$_$v = t1; t1 = t2; } _this._tax_rate_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._tax_rate_state$_listUIState = t2; _this._tax_rate_state$_selectedId = $$v.selectedId; _this._tax_rate_state$_forceSelected = $$v.forceSelected; _this._tax_rate_state$_tabIndex = $$v.tabIndex; _this._tax_rate_state$_saveCompleter = $$v.saveCompleter; _this._tax_rate_state$_cancelCompleter = $$v.cancelCompleter; _this._tax_rate_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "TaxRateUIState", _$result = null; try { _$result0 = _this._tax_rate_state$_$v; if (_$result0 == null) { t1 = _this._tax_rate_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_selectedId; t4 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_forceSelected; t5 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_tax_rate_state$_$this()._tax_rate_state$_saveCompleter; _$result0 = Q._$TaxRateUIState$_(_this.get$_tax_rate_state$_$this()._tax_rate_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._tax_rate_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._tax_rate_state$_$v = t1; return _$result; } }; Q._TaxRateUIState_Object_EntityUIState.prototype = {}; Q.ViewTokenList.prototype = {$isStopLoading: 1}; Q.ViewToken.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$tokenId: function() { return this.tokenId; } }; Q.EditToken.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$token: function() { return this.token; } }; Q.UpdateToken.prototype = {$isPersistUI: 1, get$token: function() { return this.token; } }; Q.LoadTokenRequest.prototype = {$isStartLoading: 1}; Q.LoadTokenFailure.prototype = { toString$0: function(_) { return "LoadTokenFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadTokenSuccess.prototype = { toString$0: function(_) { return "LoadTokenSuccess{token: " + H.S(this.token) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$token: function() { return this.token; } }; Q.LoadTokensRequest.prototype = {$isStartLoading: 1}; Q.LoadTokensFailure.prototype = { toString$0: function(_) { return "LoadTokensFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; Q.LoadTokensSuccess.prototype = { toString$0: function(_) { return "LoadTokensSuccess{tokens: " + H.S(this.tokens) + "}"; }, $isStopLoading: 1 }; Q.SaveTokenRequest.prototype = {$isStartSaving: 1, get$token: function() { return this.token; } }; Q.SaveTokenSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$token: function() { return this.token; } }; Q.AddTokenSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$token: function() { return this.token; } }; Q.SaveTokenFailure.prototype = {$isStopSaving: 1}; Q.ArchiveTokensRequest.prototype = {$isStartSaving: 1}; Q.ArchiveTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.ArchiveTokensFailure.prototype = {$isStopSaving: 1}; Q.DeleteTokensRequest.prototype = {$isStartSaving: 1}; Q.DeleteTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.DeleteTokensFailure.prototype = {$isStopSaving: 1}; Q.RestoreTokensRequest.prototype = {$isStartSaving: 1}; Q.RestoreTokensSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; Q.RestoreTokensFailure.prototype = {$isStopSaving: 1}; Q.FilterTokens.prototype = {$isPersistUI: 1}; Q.SortTokens.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; Q.FilterTokensByState.prototype = {$isPersistUI: 1}; Q.FilterTokensByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterTokensByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterTokensByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.FilterTokensByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; Q.handleTokenAction_closure.prototype = { call$1: function(token) { return token.get$id(token); }, $signature: 41 }; Q.StartTokenMultiselect.prototype = {}; Q.AddToTokenMultiselect.prototype = {}; Q.RemoveFromTokenMultiselect.prototype = {}; Q.ClearTokenMultiselect.prototype = {}; D._editToken_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s20_ = "/settings/token_edit"; next.call$1(type$.legacy_EditToken._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s20_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s20_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._viewToken_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewToken_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewToken_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewToken._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/token_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/token_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; D._viewTokenList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s16_ = "/settings/tokens"; next.call$1(type$.legacy_ViewTokenList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s16_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s16_, new D._viewTokenList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._viewTokenList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; D._archiveToken_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_ArchiveTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = P.List_List$of(new H.MappedListIterable(t1, new D._archiveToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new D._archiveToken__closure0(store, dynamicAction), type$.Null).catchError$1(new D._archiveToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._archiveToken__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).tokenState.map._map$_map, id); }, $signature: 348 }; D._archiveToken__closure0.prototype = { call$1: function(tokens) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 346 }; D._archiveToken__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ArchiveTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._deleteToken_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_DeleteTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = P.List_List$of(new H.MappedListIterable(t1, new D._deleteToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new D._deleteToken__closure0(store, dynamicAction), type$.Null).catchError$1(new D._deleteToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._deleteToken__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).tokenState.map._map$_map, id); }, $signature: 348 }; D._deleteToken__closure0.prototype = { call$1: function(tokens) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 346 }; D._deleteToken__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._restoreToken_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevTokens; type$.legacy_RestoreTokensRequest._as(dynamicAction); t1 = dynamicAction.tokenIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TokenEntity*>"); prevTokens = P.List_List$of(new H.MappedListIterable(t1, new D._restoreToken__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new D._restoreToken__closure0(store, dynamicAction), type$.Null).catchError$1(new D._restoreToken__closure1(store, prevTokens, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._restoreToken__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).tokenState.map._map$_map, id); }, $signature: 348 }; D._restoreToken__closure0.prototype = { call$1: function(tokens) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, $signature: 346 }; D._restoreToken__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.RestoreTokensFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._saveToken_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveTokenRequest._as(dynamicAction); this.repository.saveData$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.token, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new D._saveToken__closure(dynamicAction, store), type$.Null).catchError$1(new D._saveToken__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._saveToken__closure.prototype = { call$1: function(token) { var t1 = this.action, t2 = this.store; if (t1.token.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.AddTokenSuccess(token)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SaveTokenSuccess(token)); t1.completer.complete$1(0, token); }, $signature: 318 }; D._saveToken__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveTokenFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; D._loadToken_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadToken._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadTokenRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.tokenId).then$1$1(0, new D._loadToken__closure(store, dynamicAction), type$.Null).catchError$1(new D._loadToken__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._loadToken__closure.prototype = { call$1: function(token) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadTokenSuccess(token)); this.action.completer.complete$1(0, null); }, $signature: 318 }; D._loadToken__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadTokenFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; D._loadTokens_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadTokens._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.LoadTokensRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new D._loadTokens__closure(store, dynamicAction), type$.Null).catchError$1(new D._loadTokens__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; D._loadTokens__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadTokensSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1743 }; D._loadTokens__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadTokensFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; S.tokenUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$tokenListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer13().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._token_model$_$v = t4; t1 = $.$get$selectedIdReducer13().call$2(t2.selectedId, t3); b.get$_token_state$_$this()._token_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer13().call$2(t2.forceSelected, t3); b.get$_token_state$_$this()._token_state$_forceSelected = t3; return b; }, $signature: 1744 }; S.forceSelectedReducer_closure103.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1745 }; S.forceSelectedReducer_closure104.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1746 }; S.forceSelectedReducer_closure105.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1747 }; S.forceSelectedReducer_closure106.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1748 }; S.forceSelectedReducer_closure107.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1749 }; S.forceSelectedReducer_closure108.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1750 }; S.forceSelectedReducer_closure109.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1751 }; S.forceSelectedReducer_closure110.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1752 }; S.selectedIdReducer_closure207.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1753 }; S.selectedIdReducer_closure208.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1754 }; S.selectedIdReducer_closure209.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_token ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; S.selectedIdReducer_closure210.prototype = { call$2: function(selectedId, action) { return action.get$tokenId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; S.selectedIdReducer_closure211.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$token()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; S.selectedIdReducer_closure212.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; S.selectedIdReducer_closure213.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; S.selectedIdReducer_closure214.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1755 }; S.selectedIdReducer_closure215.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1756 }; S.selectedIdReducer_closure216.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1757 }; S.selectedIdReducer_closure217.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1758 }; S.selectedIdReducer_closure218.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1759 }; S.selectedIdReducer_closure219.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1760 }; S.selectedIdReducer_closure220.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1761 }; S.selectedIdReducer_closure221.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_token ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; S.editingReducer_closure66.prototype = { call$2: function(tokens, action) { return J.$index$asx(action.tokens, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1762 }; S.editingReducer_closure67.prototype = { call$2: function(tokens, action) { return J.$index$asx(action.tokens, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1763 }; S.editingReducer_closure68.prototype = { call$2: function(tokens, action) { return J.$index$asx(action.tokens, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1764 }; S.editingReducer_closure69.prototype = { call$2: function(token, action) { return action.token.rebuild$1(new S.editingReducer__closure25()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1765 }; S.editingReducer__closure25.prototype = { call$1: function(b) { b.get$_token_model$_$this()._token_model$_isChanged = true; return b; }, $signature: 600 }; S._viewTokenList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; S._filterTokensByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterTokensByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterTokensByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; S._filterTokensByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterTokensByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; S._filterTokensByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._filterTokens_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.tokenListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; S._sortTokens_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; S._startListMultiselect_closure13.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; S._addToListMultiselect_closure13.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._removeFromListMultiselect_closure13.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; S._clearListMultiselect_closure13.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; S._archiveTokenSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 342 }; S._deleteTokenSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 342 }; S._restoreTokenSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.tokens), t2 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_token_state$_$this(); t5 = t4._token_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._token_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 342 }; S._addToken_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.token, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 320 }; S._updateToken_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.token; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 320 }; S._setLoadedToken_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.token; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 320 }; O.memoizedFilteredTokenList_closure.prototype = { call$4: function(selectionState, tokenMap, tokenList, tokenListState) { return O.filteredTokensSelector(selectionState, tokenMap, tokenList, tokenListState); }, $signature: 1769 }; O.filteredTokensSelector_closure.prototype = { call$1: function(tokenId) { var t1, token = J.$index$asx(this.tokenMap._map$_map, tokenId); if (token.id === this.selectionState.selectedId) return true; if (token.isSystem) return false; t1 = this.tokenListState; if (!token.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([token.name], type$.JSArray_legacy_String), t1); }, $signature: 16 }; O.filteredTokensSelector_closure0.prototype = { call$2: function(tokenAId, tokenBId) { var sortField, sortAscending, tokenA0, response, t1 = this.tokenMap._map$_map, t2 = J.getInterceptor$asx(t1), tokenA = t2.$index(t1, tokenAId), tokenB = t2.$index(t1, tokenBId); t1 = this.tokenListState; sortField = t1.sortField; sortAscending = t1.sortAscending; tokenA.toString; if (sortAscending) tokenA0 = tokenA; else tokenA0 = tokenB; if (!sortAscending) tokenB = tokenA; switch (sortField) { case "name": response = C.JSString_methods.compareTo$1(tokenA0.name.toLowerCase(), tokenB.name.toLowerCase()); break; default: P.print("## ERROR: sort by token." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 18 }; N.TokenState.prototype = { loadTokens$1: function(clients) { return this.rebuild$1(new N.TokenState_loadTokens_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new N.TokenState_loadTokens_closure0(), new N.TokenState_loadTokens_closure1(), type$.legacy_String, type$.legacy_TokenEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; N.TokenState_loadTokens_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; N.TokenState_loadTokens_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1770 }; N.TokenState_loadTokens_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 320 }; N.TokenUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; N._$TokenStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_C42), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new N.TokenStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_TokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_token_state$_$this(); t6 = t5._token_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._token_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_C42)); break; case "list": t5 = result.get$_token_state$_$this(); t6 = t5._token_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._token_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_H7P; }, get$wireName: function() { return "TokenState"; } }; N._$TokenUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_Azp)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new N.TokenUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_TokenEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_token_state$_$this(); t4 = t3._token_state$_editing; t3 = t4 == null ? t3._token_state$_editing = new D.TokenEntityBuilder() : t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_Azp)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._token_model$_$v = t4; break; case "listUIState": t3 = result.get$_token_state$_$this(); t4 = t3._token_state$_listUIState; t3 = t4 == null ? t3._token_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_token_state$_$this()._token_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_token_state$_$this()._token_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_token_state$_$this()._token_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_YuA; }, get$wireName: function() { return "TokenUIState"; } }; N._$TokenState.prototype = { rebuild$1: function(updates) { var t1 = new N.TokenStateBuilder(); t1._token_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof N.TokenState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._token_state$__hashCode; return t1 == null ? _this._token_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; N.TokenStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_map; return t2 == null ? t1._token_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_TokenEntity) : t2; }, get$list: function(_) { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_list; return t2 == null ? t1._token_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_token_state$_$this: function() { var t1, t2, _this = this, $$v = _this._token_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._token_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._token_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._token_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._token_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = N._$TokenState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("TokenState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._token_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; N._$TokenUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof N.TokenUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._token_state$__hashCode; return t1 == null ? _this._token_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("TokenUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; N.TokenUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_editing; return t2 == null ? t1._token_state$_editing = new D.TokenEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_token_state$_$this(), t2 = t1._token_state$_listUIState; return t2 == null ? t1._token_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_token_state$_$this: function() { var t1, t2, _this = this, $$v = _this._token_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new D.TokenEntityBuilder(); t2._token_model$_$v = t1; t1 = t2; } _this._token_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._token_state$_listUIState = t2; _this._token_state$_selectedId = $$v.selectedId; _this._token_state$_forceSelected = $$v.forceSelected; _this._token_state$_tabIndex = $$v.tabIndex; _this._token_state$_saveCompleter = $$v.saveCompleter; _this._token_state$_cancelCompleter = $$v.cancelCompleter; _this._token_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s12_ = "TokenUIState", _$result = null; try { _$result0 = _this._token_state$_$v; if (_$result0 == null) { t1 = _this._token_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_token_state$_$this()._token_state$_selectedId; t4 = _this.get$_token_state$_$this()._token_state$_forceSelected; t5 = _this.get$_token_state$_$this()._token_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s12_, "tabIndex")); t6 = _this.get$_token_state$_$this()._token_state$_saveCompleter; _$result0 = N._$TokenUIState$_(_this.get$_token_state$_$this()._token_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._token_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s12_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._token_state$_$v = t1; return _$result; } }; N._TokenUIState_Object_EntityUIState.prototype = {}; U.EntityUIState.prototype = {}; Q.ListUIState.prototype = { getCustomFilters$1: function(fieldNumber) { var _this = this; switch (fieldNumber) { case 1: return _this.custom1Filters; case 2: return _this.custom2Filters; case 3: return _this.custom3Filters; case 4: return _this.custom4Filters; default: return null; } } }; Q._$ListUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, C.FullType_kjq), "sortField", serializers.serialize$2$specifiedType(object.sortField, C.FullType_h8g), "sortAscending", serializers.serialize$2$specifiedType(object.sortAscending, C.FullType_MtR), "stateFilters", serializers.serialize$2$specifiedType(object.stateFilters, C.FullType_JmU), "statusFilters", serializers.serialize$2$specifiedType(object.statusFilters, C.FullType_Icb), "custom1Filters", serializers.serialize$2$specifiedType(object.custom1Filters, C.FullType_6m4), "custom2Filters", serializers.serialize$2$specifiedType(object.custom2Filters, C.FullType_6m4), "custom3Filters", serializers.serialize$2$specifiedType(object.custom3Filters, C.FullType_6m4), "custom4Filters", serializers.serialize$2$specifiedType(object.custom4Filters, C.FullType_6m4)], type$.JSArray_legacy_Object), value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.selectedIds; if (value != null) { result.push("selectedIds"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_6m4)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, t5, t6, t7, key, value, t8, t9, t10, result = new Q.ListUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.legacy_EntityStatus, t5 = type$.ListBuilder_legacy_EntityStatus, t6 = type$.legacy_EntityState, t7 = type$.ListBuilder_legacy_EntityState; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "filter": t8 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_list_ui_state$_$this()._list_ui_state$_filter = t8; break; case "filterClearedAt": t8 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t8; break; case "sortField": t8 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_list_ui_state$_$this()._sortField = t8; break; case "sortAscending": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_list_ui_state$_$this()._sortAscending = t8; break; case "stateFilters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._stateFilters; if (t9 == null) { t9 = new D.ListBuilder(t7); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t6); t8._stateFilters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_JmU)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "statusFilters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._statusFilters; if (t9 == null) { t9 = new D.ListBuilder(t5); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t4); t8._statusFilters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Icb)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom1Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom1Filters; if (t9 == null) { t9 = new D.ListBuilder(t3); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t8._custom1Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom2Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom2Filters; if (t9 == null) { t9 = new D.ListBuilder(t3); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t8._custom2Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom3Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom3Filters; if (t9 == null) { t9 = new D.ListBuilder(t3); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t8._custom3Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "custom4Filters": t8 = result.get$_list_ui_state$_$this(); t9 = t8._custom4Filters; if (t9 == null) { t9 = new D.ListBuilder(t3); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t8._custom4Filters = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; case "selectedIds": t8 = result.get$_list_ui_state$_$this(); t9 = t8._selectedIds; if (t9 == null) { t9 = new D.ListBuilder(t3); t9.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t8._selectedIds = t9; t8 = t9; } else t8 = t9; t9 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t10 = t8.$ti; if (t10._eval$1("_BuiltList<1>")._is(t9)) { t8.__ListBuilder__list = t9._list; t8._listOwner = t9; } else { t8.__ListBuilder__list = P.List_List$from(t9, true, t10._precomputed1); t8._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_RsV; }, get$wireName: function() { return "ListUIState"; } }; Q._$ListUIState.prototype = { rebuild$1: function(updates) { var t1 = new Q.ListUIStateBuilder(); t1._list_ui_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Q.ListUIState && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt && _this.sortField === other.sortField && _this.sortAscending === other.sortAscending && J.$eq$(_this.stateFilters, other.stateFilters) && J.$eq$(_this.statusFilters, other.statusFilters) && J.$eq$(_this.custom1Filters, other.custom1Filters) && J.$eq$(_this.custom2Filters, other.custom2Filters) && J.$eq$(_this.custom3Filters, other.custom3Filters) && J.$eq$(_this.custom4Filters, other.custom4Filters) && J.$eq$(_this.selectedIds, other.selectedIds); }, get$hashCode: function(_) { var _this = this, t1 = _this._list_ui_state$__hashCode; return t1 == null ? _this._list_ui_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.filter)), C.JSInt_methods.get$hashCode(_this.filterClearedAt)), C.JSString_methods.get$hashCode(_this.sortField)), C.JSBool_methods.get$hashCode(_this.sortAscending)), J.get$hashCode$(_this.stateFilters)), J.get$hashCode$(_this.statusFilters)), J.get$hashCode$(_this.custom1Filters)), J.get$hashCode$(_this.custom2Filters)), J.get$hashCode$(_this.custom3Filters)), J.get$hashCode$(_this.custom4Filters)), J.get$hashCode$(_this.selectedIds))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("ListUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); t2.add$2(t1, "sortField", _this.sortField); t2.add$2(t1, "sortAscending", _this.sortAscending); t2.add$2(t1, "stateFilters", _this.stateFilters); t2.add$2(t1, "statusFilters", _this.statusFilters); t2.add$2(t1, "custom1Filters", _this.custom1Filters); t2.add$2(t1, "custom2Filters", _this.custom2Filters); t2.add$2(t1, "custom3Filters", _this.custom3Filters); t2.add$2(t1, "custom4Filters", _this.custom4Filters); t2.add$2(t1, "selectedIds", _this.selectedIds); return t2.toString$0(t1); } }; Q.ListUIStateBuilder.prototype = { get$stateFilters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._stateFilters; return t2 == null ? t1._stateFilters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityState) : t2; }, get$statusFilters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._statusFilters; return t2 == null ? t1._statusFilters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityStatus) : t2; }, get$custom1Filters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom1Filters; return t2 == null ? t1._custom1Filters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$custom2Filters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom2Filters; return t2 == null ? t1._custom2Filters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$custom3Filters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom3Filters; return t2 == null ? t1._custom3Filters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$custom4Filters: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._custom4Filters; return t2 == null ? t1._custom4Filters = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$selectedIds: function() { var t1 = this.get$_list_ui_state$_$this(), t2 = t1._selectedIds; return t2 == null ? t1._selectedIds = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_list_ui_state$_$this: function() { var t1, _this = this, $$v = _this._list_ui_state$_$v; if ($$v != null) { _this._list_ui_state$_filter = $$v.filter; _this._list_ui_state$_filterClearedAt = $$v.filterClearedAt; _this._sortField = $$v.sortField; _this._sortAscending = $$v.sortAscending; t1 = $$v.stateFilters; t1.toString; _this._stateFilters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.statusFilters; t1.toString; _this._statusFilters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom1Filters; t1.toString; _this._custom1Filters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom2Filters; t1.toString; _this._custom2Filters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom3Filters; t1.toString; _this._custom3Filters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.custom4Filters; t1.toString; _this._custom4Filters = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.selectedIds; _this._selectedIds = t1 == null ? null : D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._list_ui_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, exception, _this = this, _s11_ = "ListUIState", _$result = null; try { _$result0 = _this._list_ui_state$_$v; if (_$result0 == null) { t1 = _this.get$_list_ui_state$_$this()._list_ui_state$_filter; t2 = _this.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "filterClearedAt")); t3 = _this.get$_list_ui_state$_$this()._sortField; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "sortField")); t4 = _this.get$_list_ui_state$_$this()._sortAscending; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "sortAscending")); t5 = _this.get$stateFilters().build$0(0); t6 = _this.get$statusFilters().build$0(0); t7 = _this.get$custom1Filters().build$0(0); t8 = _this.get$custom2Filters().build$0(0); t9 = _this.get$custom3Filters().build$0(0); t10 = _this.get$custom4Filters().build$0(0); t11 = _this._selectedIds; _$result0 = Q._$ListUIState$_(t7, t8, t9, t10, t1, t2, t11 == null ? null : t11.build$0(0), t4, t3, t5, t6); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "stateFilters"; _this.get$stateFilters().build$0(0); _$failedField = "statusFilters"; _this.get$statusFilters().build$0(0); _$failedField = "custom1Filters"; _this.get$custom1Filters().build$0(0); _$failedField = "custom2Filters"; _this.get$custom2Filters().build$0(0); _$failedField = "custom3Filters"; _this.get$custom3Filters().build$0(0); _$failedField = "custom4Filters"; _this.get$custom4Filters().build$0(0); _$failedField = "selectedIds"; t1 = _this._selectedIds; if (t1 != null) t1.build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._list_ui_state$_$v = t1; return _$result; } }; Y.prefReducer_closure.prototype = { call$1: function(b) { var t1 = this.selectedCompanyId, t2 = this.state, t3 = this.action; b.get$companyPrefs().$indexSet(0, t1, Y.companyPrefReducer(J.$index$asx(t2.companyPrefs._map$_map, t1), t3)); t1 = $.$get$layoutReducer().call$2(t2.appLayout, t3); b.get$_pref_state$_$this()._appLayout = t1; t1 = $.$get$rowsPerPageReducer().call$2(t2.rowsPerPage, t3); b.get$_pref_state$_$this()._rowsPerPage = t1; t1 = $.$get$moduleLayoutReducer().call$2(t2.moduleLayout, t3); b.get$_pref_state$_$this()._moduleLayout = t1; t1 = $.$get$isPreviewVisibleReducer().call$2(t2.isPreviewVisible, t3); b.get$_pref_state$_$this()._isPreviewVisible = t1; t1 = $.$get$manuSidebarReducer().call$2(t2.menuSidebarMode, t3); b.get$_pref_state$_$this()._menuSidebarMode = t1; t1 = $.$get$historySidebarReducer().call$2(t2.historySidebarMode, t3); b.get$_pref_state$_$this()._historySidebarMode = t1; t1 = $.$get$menuVisibleReducer().call$2(t2.isMenuVisible, t3); b.get$_pref_state$_$this()._isMenuVisible = t1; t1 = $.$get$historyVisibleReducer().call$2(t2.isHistoryVisible, t3); b.get$_pref_state$_$this()._isHistoryVisible = t1; t1 = $.$get$darkModeReducer().call$2(t2.enableDarkMode, t3); b.get$_pref_state$_$this()._enableDarkMode = t1; t1 = $.$get$persistDataReducer().call$2(t2.persistData, t3); b.get$_pref_state$_$this()._persistData = t1; t1 = $.$get$showKanbanReducer().call$2(t2.showKanban, t3); b.get$_pref_state$_$this()._showKanban = t1; t1 = $.$get$isFilterVisibleReducer().call$2(t2.isFilterVisible, t3); b.get$_pref_state$_$this()._isFilterVisible = t1; t1 = $.$get$longPressReducer().call$2(t2.longPressSelectionIsDefault, t3); b.get$_pref_state$_$this()._longPressSelectionIsDefault = t1; t1 = $.$get$requireAuthenticationReducer().call$2(t2.requireAuthentication, t3); b.get$_pref_state$_$this()._requireAuthentication = t1; t1 = $.$get$colorThemeReducer().call$2(t2.colorTheme, t3); b.get$_pref_state$_$this()._colorTheme = t1; b.get$customColors().replace$1(0, $.$get$customColorsReducer().call$2(t2.customColors, t3)); b.get$useSidebarEditor().replace$1(0, $.$get$sidebarEditorReducer().call$2(t2.useSidebarEditor, t3)); b.get$sortFields().replace$1(0, $.$get$sortFieldsReducer().call$2(t2.sortFields, t3)); return b; }, $signature: 730 }; Y._resortFields_closure.prototype = { call$1: function(b) { var t1 = this.sortField, t2 = this.field; t1 = t1.field != t2 || !t1.ascending; b.get$_pref_state$_$this()._ascending = t1; b.get$_pref_state$_$this()._field = t2; return b; }, $signature: 1771 }; Y._resortFields_closure0.prototype = { call$1: function(b) { b.$indexSet(0, this.entityType, this.directon); return b; }, $signature: 1772 }; Y.sortFieldsReducer_closure.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_client, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1773 }; Y.sortFieldsReducer_closure0.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_product, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1774 }; Y.sortFieldsReducer_closure1.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_invoice, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1775 }; Y.sortFieldsReducer_closure2.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_payment, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1776 }; Y.sortFieldsReducer_closure3.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_recurringInvoice, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1777 }; Y.sortFieldsReducer_closure4.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_quote, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1778 }; Y.sortFieldsReducer_closure5.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_credit, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1779 }; Y.sortFieldsReducer_closure6.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_project, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1780 }; Y.sortFieldsReducer_closure7.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_task, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1781 }; Y.sortFieldsReducer_closure8.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_vendor, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1782 }; Y.sortFieldsReducer_closure9.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_expense, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1783 }; Y.sortFieldsReducer_closure10.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_payment, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1784 }; Y.sortFieldsReducer_closure11.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_taxRate, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1785 }; Y.sortFieldsReducer_closure12.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_companyGateway, action.get$field()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1786 }; Y.sortFieldsReducer_closure13.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_user, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1787 }; Y.sortFieldsReducer_closure14.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_group, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1788 }; Y.sortFieldsReducer_closure15.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_design, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1789 }; Y.sortFieldsReducer_closure16.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_token, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1790 }; Y.sortFieldsReducer_closure17.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_webhook, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1791 }; Y.sortFieldsReducer_closure18.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_expenseCategory, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1792 }; Y.sortFieldsReducer_closure19.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_taskStatus, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1793 }; Y.sortFieldsReducer_closure20.prototype = { call$2: function(value, action) { return Y._resortFields(value, C.EntityType_subscription, action.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1794 }; Y.sidebarEditorReducer_closure.prototype = { call$2: function(value, action) { var entityType = action.entityType.get$baseType(); if (J.containsKey$1$x(value._map$_map, entityType)) return value.rebuild$1(new Y.sidebarEditorReducer__closure(entityType, value)); else return value.rebuild$1(new Y.sidebarEditorReducer__closure0(entityType)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1795 }; Y.sidebarEditorReducer__closure.prototype = { call$1: function(b) { var t1 = this.entityType; b.$indexSet(0, t1, !J.$index$asx(this.value._map$_map, t1)); return b; }, $signature: 599 }; Y.sidebarEditorReducer__closure0.prototype = { call$1: function(b) { b.$indexSet(0, this.entityType, true); return b; }, $signature: 599 }; Y.menuVisibleReducer_closure.prototype = { call$2: function(value, action) { return action.sidebar === C.AppSidebar_menu ? !value : value; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.menuVisibleReducer_closure0.prototype = { call$2: function(value, action) { switch (action.menuMode) { case C.AppSidebarMode_visible: return true; case C.AppSidebarMode_collapse: case C.AppSidebarMode_float: return false; default: return value; } }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.historyVisibleReducer_closure.prototype = { call$2: function(value, action) { return action.sidebar === C.AppSidebar_history ? !value : value; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.historyVisibleReducer_closure0.prototype = { call$2: function(value, action) { var t1 = action.historyMode; if (t1 === C.AppSidebarMode_visible) t1 = true; else t1 = t1 === C.AppSidebarMode_float ? false : value; return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.layoutReducer_closure.prototype = { call$2: function(layout, action) { var t1 = action.appLayout; return t1 == null ? layout : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1798 }; Y.moduleLayoutReducer_closure.prototype = { call$2: function(moduleLayout, action) { var t1 = action.moduleLayout; return t1 == null ? moduleLayout : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1799 }; Y.moduleLayoutReducer_closure0.prototype = { call$2: function(moduleLayout, action) { if (moduleLayout === C.ModuleLayout_list) return C.ModuleLayout_table; else return C.ModuleLayout_list; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1800 }; Y.rowsPerPageReducer_closure.prototype = { call$2: function(numRows, action) { var t1 = action.rowsPerPage; return t1 == null ? numRows : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1801 }; Y.manuSidebarReducer_closure.prototype = { call$2: function(mode, action) { var t1 = action.menuMode; return t1 == null ? mode : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 531 }; Y.historySidebarReducer_closure.prototype = { call$2: function(mode, action) { var t1 = action.historyMode; return t1 == null ? mode : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 531 }; Y.darkModeReducer_closure.prototype = { call$2: function(enableDarkMode, action) { var t1 = action.enableDarkMode; return t1 == null ? enableDarkMode : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.persistDataReducer_closure.prototype = { call$2: function(persistData, action) { var t1 = action.persistData; return t1 == null ? persistData : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.showKanbanReducer_closure.prototype = { call$2: function(showKanban, action) { var t1 = action.showKanban; return t1 == null ? showKanban : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.isFilterVisibleReducer_closure.prototype = { call$2: function(value, action) { var t1 = action.isFilterVisible; return t1 == null ? value : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.longPressReducer_closure.prototype = { call$2: function(longPressSelectionIsDefault, action) { var t1 = action.longPressSelectionIsDefault; return t1 == null ? longPressSelectionIsDefault : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.isPreviewVisibleReducer_closure.prototype = { call$2: function(value, action) { return !value; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1803 }; Y.isPreviewVisibleReducer_closure0.prototype = { call$2: function(isPreviewEnabled, action) { var t1 = action.isPreviewVisible; return t1 == null ? isPreviewEnabled : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.requireAuthenticationReducer_closure.prototype = { call$2: function(requireAuthentication, action) { var t1 = action.requireAuthentication; return t1 == null ? requireAuthentication : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 106 }; Y.colorThemeReducer_closure.prototype = { call$2: function(currentColorTheme, action) { var t1 = action.colorTheme; return t1 == null ? currentColorTheme : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1804 }; Y.customColorsReducer_closure.prototype = { call$2: function(customColors, action) { var t1 = action.customColors; return t1 == null ? customColors : t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1805 }; Y.companyPrefReducer_closure.prototype = { call$1: function(b) { b.get$historyList().replace$1(0, $.$get$historyReducer().call$2(this._box_0.state.historyList, this.action)); return b; }, $signature: 1806 }; Y.historyReducer_closure.prototype = { call$2: function(historyList, action) { if (J.get$isEmpty$asx(historyList._list)) return historyList; else return historyList.rebuild$1(new Y.historyReducer__closure()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1807 }; Y.historyReducer__closure.prototype = { call$1: function(b) { J.removeAt$1$ax(b.get$_safeList(), 0); return b; }, $signature: 339 }; Y.historyReducer_closure0.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_dashboard, null, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1809 }; Y.historyReducer_closure1.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_reports, null, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1810 }; Y.historyReducer_closure2.prototype = { call$2: function(historyList, action) { var t1 = action.section; if (t1 == null) t1 = "company_details"; return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_settings, t1, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1811 }; Y.historyReducer_closure3.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_client, action.clientId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1812 }; Y.historyReducer_closure4.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_client, action.client.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1813 }; Y.historyReducer_closure5.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_product, action.productId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1814 }; Y.historyReducer_closure6.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_product, action.product.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1815 }; Y.historyReducer_closure7.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_invoice, action.invoiceId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1816 }; Y.historyReducer_closure8.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_invoice, action.invoice.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1817 }; Y.historyReducer_closure9.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_payment, action.paymentId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1818 }; Y.historyReducer_closure10.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_payment, action.payment.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1819 }; Y.historyReducer_closure11.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_quote, action.quoteId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1820 }; Y.historyReducer_closure12.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_quote, action.quote.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1821 }; Y.historyReducer_closure13.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_task, action.taskId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1822 }; Y.historyReducer_closure14.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_task, action.task.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1823 }; Y.historyReducer_closure15.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_project, action.projectId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1824 }; Y.historyReducer_closure16.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_project, action.project.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1825 }; Y.historyReducer_closure17.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_vendor, action.vendorId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1826 }; Y.historyReducer_closure18.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_vendor, action.vendor.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1827 }; Y.historyReducer_closure19.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_expense, action.expenseId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1828 }; Y.historyReducer_closure20.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_expense, action.expense.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1829 }; Y.historyReducer_closure21.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_companyGateway, action.companyGatewayId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1830 }; Y.historyReducer_closure22.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_companyGateway, action.companyGateway.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1831 }; Y.historyReducer_closure23.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_user, action.userId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1832 }; Y.historyReducer_closure24.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_user, action.user.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1833 }; Y.historyReducer_closure25.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_group, action.groupId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1834 }; Y.historyReducer_closure26.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_group, action.group.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1835 }; Y.historyReducer_closure27.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_recurringExpense, action.recurringExpenseId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1836 }; Y.historyReducer_closure28.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_recurringExpense, action.recurringExpense.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1837 }; Y.historyReducer_closure29.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_subscription, action.subscriptionId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1838 }; Y.historyReducer_closure30.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_subscription, action.subscription.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1839 }; Y.historyReducer_closure31.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_taskStatus, action.taskStatusId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1840 }; Y.historyReducer_closure32.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_taskStatus, action.taskStatus.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1841 }; Y.historyReducer_closure33.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_expenseCategory, action.expenseCategoryId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1842 }; Y.historyReducer_closure34.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_expenseCategory, action.expenseCategory.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1843 }; Y.historyReducer_closure35.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_recurringInvoice, action.recurringInvoiceId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1844 }; Y.historyReducer_closure36.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_recurringInvoice, action.recurringInvoice.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1845 }; Y.historyReducer_closure37.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_webhook, action.webhookId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1846 }; Y.historyReducer_closure38.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_webhook, action.webhook.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1847 }; Y.historyReducer_closure39.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_token, action.tokenId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1848 }; Y.historyReducer_closure40.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_token, action.token.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1849 }; Y.historyReducer_closure41.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_paymentTerm, action.paymentTermId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1850 }; Y.historyReducer_closure42.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_paymentTerm, action.paymentTerm.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1851 }; Y.historyReducer_closure43.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_design, action.design.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1852 }; Y.historyReducer_closure44.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_credit, action.creditId, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1853 }; Y.historyReducer_closure45.prototype = { call$2: function(historyList, action) { return Y._addToHistory(historyList, X._$HistoryRecord$_(C.EntityType_credit, action.credit.id, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1854 }; Y.historyReducer_closure46.prototype = { call$2: function(historyList, action) { var t1 = action.entity, t2 = t1.get$id(t1); return Y._addToHistory(historyList, X._$HistoryRecord$_(t1.get$entityType(), t2, Date.now())); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1855 }; Y._addToHistory_closure.prototype = { call$1: function(item) { var t1 = this.record; return t1.entityType == item.entityType && t1.id == item.id; }, $signature: 703 }; Y._addToHistory_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; Y._addToHistory_closure1.prototype = { call$1: function(b) { J.remove$1$ax(b.get$_safeList(), this.old); !$.$get$isSoundMode() && !b.$ti._precomputed1._is(null); J.insert$2$ax(b.get$_safeList(), 0, this.record); return b; }, $signature: 339 }; Y._addToHistory_closure2.prototype = { call$1: function(b) { var t1; !$.$get$isSoundMode() && !b.$ti._precomputed1._is(null); J.insert$2$ax(b.get$_safeList(), 0, this.record); t1 = Math.min(50, J.get$length$asx(this.list._list) + 1); b.__ListBuilder__list = J.sublist$2$ax(b.get$_list(), 0, t1); b._listOwner = null; return b; }, $signature: 339 }; X.PrefState.prototype = { get$colorThemeModel: function() { var t1 = this.colorTheme; return $.$get$colorThemesMap().containsKey$1(0, t1) ? $.$get$colorThemesMap().$index(0, t1) : $.$get$colorThemesMap().$index(0, "light"); }, isEditorFullScreen$1: function(entityType) { var t1; if (this.appLayout !== C.AppLayout_desktop) return false; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_product, C.EntityType_payment, C.EntityType_project], type$.JSArray_legacy_EntityType), entityType)) return false; t1 = entityType.get$baseType(); t1 = J.$index$asx(this.useSidebarEditor._map$_map, t1); return !(t1 == null ? false : t1); }, get$isModuleList: function() { if (this.appLayout === C.AppLayout_desktop && !this.isPreviewVisible) return false; return this.moduleLayout === C.ModuleLayout_list; }, get$showMenu: function() { return this.isMenuVisible && this.menuSidebarMode === C.AppSidebarMode_visible || this.menuSidebarMode === C.AppSidebarMode_collapse; } }; X.PrefStateSortField.prototype = {}; X.CompanyPrefState.prototype = {}; X.AppLayout.prototype = {}; X.ModuleLayout.prototype = {}; X.AppSidebar.prototype = {}; X.AppSidebarMode.prototype = {}; X.HistoryRecord.prototype = {}; X._$PrefStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["appLayout", serializers.serialize$2$specifiedType(object.appLayout, C.FullType_88H), "moduleLayout", serializers.serialize$2$specifiedType(object.moduleLayout, C.FullType_2No), "menuSidebarMode", serializers.serialize$2$specifiedType(object.menuSidebarMode, C.FullType_D72), "historySidebarMode", serializers.serialize$2$specifiedType(object.historySidebarMode, C.FullType_D72), "useSidebarEditor", serializers.serialize$2$specifiedType(object.useSidebarEditor, C.FullType_QqY), "customColors", serializers.serialize$2$specifiedType(object.customColors, C.FullType_LNO), "isPreviewVisible", serializers.serialize$2$specifiedType(object.isPreviewVisible, C.FullType_MtR), "isMenuVisible", serializers.serialize$2$specifiedType(object.isMenuVisible, C.FullType_MtR), "showKanban", serializers.serialize$2$specifiedType(object.showKanban, C.FullType_MtR), "isHistoryVisible", serializers.serialize$2$specifiedType(object.isHistoryVisible, C.FullType_MtR), "enableDarkMode", serializers.serialize$2$specifiedType(object.enableDarkMode, C.FullType_MtR), "isFilterVisible", serializers.serialize$2$specifiedType(object.isFilterVisible, C.FullType_MtR), "persistData", serializers.serialize$2$specifiedType(object.persistData, C.FullType_MtR), "longPressSelectionIsDefault", serializers.serialize$2$specifiedType(object.longPressSelectionIsDefault, C.FullType_MtR), "requireAuthentication", serializers.serialize$2$specifiedType(object.requireAuthentication, C.FullType_MtR), "rowsPerPage", serializers.serialize$2$specifiedType(object.rowsPerPage, C.FullType_kjq), "colorTheme", serializers.serialize$2$specifiedType(object.colorTheme, C.FullType_h8g), "sortFields", serializers.serialize$2$specifiedType(object.sortFields, C.FullType_fL6), "companyPrefs", serializers.serialize$2$specifiedType(object.companyPrefs, C.FullType_ym9)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, key, value, t8, t9, _null = null, result = new X.PrefStateBuilder(); X.PrefState__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.MapBuilder_of_legacy_String_and_legacy_CompanyPrefState, t2 = type$.MapBuilder_of_legacy_EntityType_and_legacy_PrefStateSortField, t3 = type$.MapBuilder_of_legacy_String_and_legacy_String, t4 = type$.MapBuilder_of_legacy_EntityType_and_legacy_bool, t5 = type$.legacy_AppSidebarMode, t6 = type$.legacy_ModuleLayout, t7 = type$.legacy_AppLayout; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "appLayout": t8 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_88H)); result.get$_pref_state$_$this()._appLayout = t8; break; case "moduleLayout": t8 = t6._as(serializers.deserialize$2$specifiedType(value, C.FullType_2No)); result.get$_pref_state$_$this()._moduleLayout = t8; break; case "menuSidebarMode": t8 = t5._as(serializers.deserialize$2$specifiedType(value, C.FullType_D72)); result.get$_pref_state$_$this()._menuSidebarMode = t8; break; case "historySidebarMode": t8 = t5._as(serializers.deserialize$2$specifiedType(value, C.FullType_D72)); result.get$_pref_state$_$this()._historySidebarMode = t8; break; case "useSidebarEditor": t8 = result.get$_pref_state$_$this(); t9 = t8._useSidebarEditor; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t4); t9.replace$1(0, C.Map_empty0); t8._useSidebarEditor = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_QqY)); break; case "customColors": t8 = result.get$_pref_state$_$this(); t9 = t8._customColors; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t3); t9.replace$1(0, C.Map_empty0); t8._customColors = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_LNO)); break; case "isPreviewVisible": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._isPreviewVisible = t8; break; case "isMenuVisible": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._isMenuVisible = t8; break; case "showKanban": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._showKanban = t8; break; case "isHistoryVisible": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._isHistoryVisible = t8; break; case "enableDarkMode": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._enableDarkMode = t8; break; case "isFilterVisible": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._isFilterVisible = t8; break; case "persistData": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._persistData = t8; break; case "longPressSelectionIsDefault": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._longPressSelectionIsDefault = t8; break; case "requireAuthentication": t8 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_pref_state$_$this()._requireAuthentication = t8; break; case "rowsPerPage": t8 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_pref_state$_$this()._rowsPerPage = t8; break; case "colorTheme": t8 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_pref_state$_$this()._colorTheme = t8; break; case "sortFields": t8 = result.get$_pref_state$_$this(); t9 = t8._sortFields; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t2); t9.replace$1(0, C.Map_empty0); t8._sortFields = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_fL6)); break; case "companyPrefs": t8 = result.get$_pref_state$_$this(); t9 = t8._companyPrefs; if (t9 == null) { t9 = new A.MapBuilder(_null, $, _null, t1); t9.replace$1(0, C.Map_empty0); t8._companyPrefs = t9; t8 = t9; } else t8 = t9; t8.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_ym9)); break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ERv; }, get$wireName: function() { return "PrefState"; } }; X._$PrefStateSortFieldSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["field", serializers.serialize$2$specifiedType(object.field, C.FullType_h8g), "ascending", serializers.serialize$2$specifiedType(object.ascending, C.FullType_MtR)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var key, value, t1, $$v, result = new X.PrefStateSortFieldBuilder(), iterator = J.get$iterator$ax(serialized); for (; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "field": t1 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); $$v = result._pref_state$_$v; if ($$v != null) { result._field = $$v.field; result._ascending = $$v.ascending; result._pref_state$_$v = null; } result._field = t1; break; case "ascending": t1 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); $$v = result._pref_state$_$v; if ($$v != null) { result._field = $$v.field; result._ascending = $$v.ascending; result._pref_state$_$v = null; } result._ascending = t1; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_JEy; }, get$wireName: function() { return "PrefStateSortField"; } }; X._$CompanyPrefStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["historyList", serializers.serialize$2$specifiedType(object.historyList, C.FullType_WXJ)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, $$v, t4, t5, t6, result = new X.CompanyPrefStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_HistoryRecord, t3 = type$.ListBuilder_legacy_HistoryRecord; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "historyList": $$v = result._pref_state$_$v; if ($$v != null) { t4 = $$v.historyList; t4.toString; t5 = t4.$ti; t6 = new D.ListBuilder(t5._eval$1("ListBuilder<1>")); if (t5._eval$1("_BuiltList<1>")._is(t4)) { t6.__ListBuilder__list = t4._list; t6._listOwner = t4; } else t6.__ListBuilder__list = P.List_List$from(t4, true, t5._precomputed1); result._historyList = t6; result._pref_state$_$v = null; } t4 = result._historyList; if (t4 == null) { t4 = new D.ListBuilder(t3); t4.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); result._historyList = t4; } t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_WXJ)); t6 = t4.$ti; if (t6._eval$1("_BuiltList<1>")._is(t5)) { t4.__ListBuilder__list = t5._list; t4._listOwner = t5; } else { t4.__ListBuilder__list = P.List_List$from(t5, true, t6._precomputed1); t4._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_cOY; }, get$wireName: function() { return "CompanyPrefState"; } }; X._$AppLayoutSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return X._$valueOf1(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_AppLayout_co1; }, get$wireName: function() { return "AppLayout"; } }; X._$ModuleLayoutSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return X._$moduleLayoutValueOf(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_ModuleLayout_0mz; }, get$wireName: function() { return "ModuleLayout"; } }; X._$AppSidebarModeSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return object.name; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { return X._$valueOfSidebarMode(H._asStringS(serialized)); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isPrimitiveSerializer: 1, get$types: function() { return C.List_Type_AppSidebarMode_ZeT; }, get$wireName: function() { return "AppSidebarMode"; } }; X._$HistoryRecordSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["entityType", serializers.serialize$2$specifiedType(object.entityType, C.FullType_qBb), "timestamp", serializers.serialize$2$specifiedType(object.timestamp, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.id; if (value != null) { result.push("id"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, key, value, t2, _$result, t3, _s13_ = "HistoryRecord", result = new X.HistoryRecordBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_EntityType; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "id": t2 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_pref_state$_$this()._pref_state$_id = t2; break; case "entityType": t2 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_qBb)); result.get$_pref_state$_$this()._pref_state$_entityType = t2; break; case "timestamp": t2 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_pref_state$_$this()._timestamp = t2; break; } } _$result = result._pref_state$_$v; if (_$result == null) { t1 = result.get$_pref_state$_$this()._pref_state$_id; t2 = result.get$_pref_state$_$this()._pref_state$_entityType; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "entityType")); t3 = result.get$_pref_state$_$this()._timestamp; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "timestamp")); _$result = X._$HistoryRecord$_(t2, t1, t3); } return result._pref_state$_$v = _$result; }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_blc; }, get$wireName: function() { return "HistoryRecord"; } }; X._$PrefState.prototype = { rebuild$1: function(updates) { var t1 = new X.PrefStateBuilder(); X.PrefState__initializeBuilder(t1); t1._pref_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof X.PrefState && _this.appLayout === other.appLayout && _this.moduleLayout === other.moduleLayout && _this.menuSidebarMode === other.menuSidebarMode && _this.historySidebarMode === other.historySidebarMode && J.$eq$(_this.useSidebarEditor, other.useSidebarEditor) && J.$eq$(_this.customColors, other.customColors) && _this.isPreviewVisible === other.isPreviewVisible && _this.isMenuVisible === other.isMenuVisible && _this.showKanban === other.showKanban && _this.isHistoryVisible === other.isHistoryVisible && _this.enableDarkMode === other.enableDarkMode && _this.isFilterVisible === other.isFilterVisible && _this.persistData === other.persistData && _this.longPressSelectionIsDefault === other.longPressSelectionIsDefault && _this.requireAuthentication === other.requireAuthentication && _this.rowsPerPage === other.rowsPerPage && _this.colorTheme === other.colorTheme && J.$eq$(_this.sortFields, other.sortFields) && J.$eq$(_this.companyPrefs, other.companyPrefs); }, get$hashCode: function(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, H.Primitives_objectHashCode(_this.appLayout)), H.Primitives_objectHashCode(_this.moduleLayout)), H.Primitives_objectHashCode(_this.menuSidebarMode)), H.Primitives_objectHashCode(_this.historySidebarMode)), J.get$hashCode$(_this.useSidebarEditor)), J.get$hashCode$(_this.customColors)), C.JSBool_methods.get$hashCode(_this.isPreviewVisible)), C.JSBool_methods.get$hashCode(_this.isMenuVisible)), C.JSBool_methods.get$hashCode(_this.showKanban)), C.JSBool_methods.get$hashCode(_this.isHistoryVisible)), C.JSBool_methods.get$hashCode(_this.enableDarkMode)), C.JSBool_methods.get$hashCode(_this.isFilterVisible)), C.JSBool_methods.get$hashCode(_this.persistData)), C.JSBool_methods.get$hashCode(_this.longPressSelectionIsDefault)), C.JSBool_methods.get$hashCode(_this.requireAuthentication)), C.JSInt_methods.get$hashCode(_this.rowsPerPage)), C.JSString_methods.get$hashCode(_this.colorTheme)), J.get$hashCode$(_this.sortFields)), J.get$hashCode$(_this.companyPrefs))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("PrefState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "appLayout", _this.appLayout); t2.add$2(t1, "moduleLayout", _this.moduleLayout); t2.add$2(t1, "menuSidebarMode", _this.menuSidebarMode); t2.add$2(t1, "historySidebarMode", _this.historySidebarMode); t2.add$2(t1, "useSidebarEditor", _this.useSidebarEditor); t2.add$2(t1, "customColors", _this.customColors); t2.add$2(t1, "isPreviewVisible", _this.isPreviewVisible); t2.add$2(t1, "isMenuVisible", _this.isMenuVisible); t2.add$2(t1, "showKanban", _this.showKanban); t2.add$2(t1, "isHistoryVisible", _this.isHistoryVisible); t2.add$2(t1, "enableDarkMode", _this.enableDarkMode); t2.add$2(t1, "isFilterVisible", _this.isFilterVisible); t2.add$2(t1, "persistData", _this.persistData); t2.add$2(t1, "longPressSelectionIsDefault", _this.longPressSelectionIsDefault); t2.add$2(t1, "requireAuthentication", _this.requireAuthentication); t2.add$2(t1, "rowsPerPage", _this.rowsPerPage); t2.add$2(t1, "colorTheme", _this.colorTheme); t2.add$2(t1, "sortFields", _this.sortFields); t2.add$2(t1, "companyPrefs", _this.companyPrefs); return t2.toString$0(t1); } }; X.PrefStateBuilder.prototype = { get$useSidebarEditor: function() { var t1 = this.get$_pref_state$_$this(), t2 = t1._useSidebarEditor; return t2 == null ? t1._useSidebarEditor = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_bool) : t2; }, get$customColors: function() { var t1 = this.get$_pref_state$_$this(), t2 = t1._customColors; if (t2 == null) { t2 = type$.legacy_String; t2 = t1._customColors = A.MapBuilder_MapBuilder(t2, t2); t1 = t2; } else t1 = t2; return t1; }, get$sortFields: function() { var t1 = this.get$_pref_state$_$this(), t2 = t1._sortFields; return t2 == null ? t1._sortFields = A.MapBuilder_MapBuilder(type$.legacy_EntityType, type$.legacy_PrefStateSortField) : t2; }, get$companyPrefs: function() { var t1 = this.get$_pref_state$_$this(), t2 = t1._companyPrefs; return t2 == null ? t1._companyPrefs = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_CompanyPrefState) : t2; }, get$_pref_state$_$this: function() { var t1, t2, _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._appLayout = $$v.appLayout; _this._moduleLayout = $$v.moduleLayout; _this._menuSidebarMode = $$v.menuSidebarMode; _this._historySidebarMode = $$v.historySidebarMode; t1 = $$v.useSidebarEditor; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._useSidebarEditor = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.customColors; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._customColors = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._isPreviewVisible = $$v.isPreviewVisible; _this._isMenuVisible = $$v.isMenuVisible; _this._showKanban = $$v.showKanban; _this._isHistoryVisible = $$v.isHistoryVisible; _this._enableDarkMode = $$v.enableDarkMode; _this._isFilterVisible = $$v.isFilterVisible; _this._persistData = $$v.persistData; _this._longPressSelectionIsDefault = $$v.longPressSelectionIsDefault; _this._requireAuthentication = $$v.requireAuthentication; _this._rowsPerPage = $$v.rowsPerPage; _this._colorTheme = $$v.colorTheme; t1 = $$v.sortFields; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._sortFields = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.companyPrefs; t2.toString; t1 = t2.$ti; t1._eval$1("_BuiltMap<1,2>")._as(t2); _this._companyPrefs = new A.MapBuilder(t2._mapFactory, t2._map$_map, t2, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("MapBuilder<1,2>")); _this._pref_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, exception, _this = this, _s9_ = "PrefState", _$result = null; try { _$result0 = _this._pref_state$_$v; if (_$result0 == null) { t1 = _this.get$_pref_state$_$this()._appLayout; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "appLayout")); t2 = _this.get$_pref_state$_$this()._moduleLayout; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "moduleLayout")); t3 = _this.get$_pref_state$_$this()._menuSidebarMode; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "menuSidebarMode")); t4 = _this.get$_pref_state$_$this()._historySidebarMode; if (t4 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "historySidebarMode")); t5 = _this.get$useSidebarEditor().build$0(0); t6 = _this.get$customColors().build$0(0); t7 = _this.get$_pref_state$_$this()._isPreviewVisible; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isPreviewVisible")); t8 = _this.get$_pref_state$_$this()._isMenuVisible; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isMenuVisible")); t9 = _this.get$_pref_state$_$this()._showKanban; if (t9 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "showKanban")); t10 = _this.get$_pref_state$_$this()._isHistoryVisible; if (t10 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isHistoryVisible")); t11 = _this.get$_pref_state$_$this()._enableDarkMode; if (t11 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "enableDarkMode")); t12 = _this.get$_pref_state$_$this()._isFilterVisible; if (t12 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "isFilterVisible")); t13 = _this.get$_pref_state$_$this()._persistData; if (t13 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "persistData")); t14 = _this.get$_pref_state$_$this()._longPressSelectionIsDefault; if (t14 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "longPressSelectionIsDefault")); t15 = _this.get$_pref_state$_$this()._requireAuthentication; if (t15 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "requireAuthentication")); t16 = _this.get$_pref_state$_$this()._rowsPerPage; if (t16 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "rowsPerPage")); t17 = _this.get$_pref_state$_$this()._colorTheme; if (t17 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s9_, "colorTheme")); t18 = _this.get$sortFields().build$0(0); _$result0 = X._$PrefState$_(t1, t17, _this.get$companyPrefs().build$0(0), t6, t11, t4, t12, t10, t8, t7, t14, t3, t2, t13, t15, t16, t9, t18, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "useSidebarEditor"; _this.get$useSidebarEditor().build$0(0); _$failedField = "customColors"; _this.get$customColors().build$0(0); _$failedField = "sortFields"; _this.get$sortFields().build$0(0); _$failedField = "companyPrefs"; _this.get$companyPrefs().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s9_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._pref_state$_$v = t1; return _$result; } }; X._$PrefStateSortField.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.PrefStateSortField && this.field == other.field && this.ascending === other.ascending; }, get$hashCode: function(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.field)), C.JSBool_methods.get$hashCode(_this.ascending))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("PrefStateSortField"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "field", this.field); t2.add$2(t1, "ascending", this.ascending); return t2.toString$0(t1); } }; X.PrefStateSortFieldBuilder.prototype = { get$_pref_state$_$this: function() { var _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._field = $$v.field; _this._ascending = $$v.ascending; _this._pref_state$_$v = null; } return _this; }, build$0: function(_) { var t1, t2, _this = this, _s18_ = "PrefStateSortField", _$result = _this._pref_state$_$v; if (_$result == null) { t1 = _this.get$_pref_state$_$this()._field; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "field")); t2 = _this.get$_pref_state$_$this()._ascending; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s18_, "ascending")); _$result = X._$PrefStateSortField$_(t2, t1); } return _this._pref_state$_$v = _$result; } }; X._$CompanyPrefState.prototype = { $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof X.CompanyPrefState && J.$eq$(this.historyList, other.historyList); }, get$hashCode: function(_) { var t1 = this.__hashCode; return t1 == null ? this.__hashCode = Y.$jf(Y.$jc(0, J.get$hashCode$(this.historyList))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("CompanyPrefState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "historyList", this.historyList); return t2.toString$0(t1); } }; X.CompanyPrefStateBuilder.prototype = { get$historyList: function() { var t1, _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { t1 = $$v.historyList; t1.toString; _this._historyList = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._pref_state$_$v = null; } t1 = _this._historyList; return t1 == null ? _this._historyList = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_HistoryRecord) : t1; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _s16_ = "CompanyPrefState", _$result = null; try { _$result0 = _this._pref_state$_$v; if (_$result0 == null) { t1 = _this.get$historyList().build$0(0); _$result0 = new X._$CompanyPrefState(t1); if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s16_, "historyList")); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "historyList"; _this.get$historyList().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s16_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._pref_state$_$v = t1; return _$result; } }; X._$HistoryRecord.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof X.HistoryRecord && _this.id == other.id && _this.entityType == other.entityType && _this.timestamp === other.timestamp; }, get$hashCode: function(_) { var _this = this, t1 = _this.__hashCode; return t1 == null ? _this.__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.id)), J.get$hashCode$(_this.entityType)), C.JSInt_methods.get$hashCode(_this.timestamp))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("HistoryRecord"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "id", this.id); t2.add$2(t1, "entityType", this.entityType); t2.add$2(t1, "timestamp", this.timestamp); return t2.toString$0(t1); }, get$id: function(receiver) { return this.id; } }; X.HistoryRecordBuilder.prototype = { get$id: function(_) { return this.get$_pref_state$_$this()._pref_state$_id; }, get$_pref_state$_$this: function() { var _this = this, $$v = _this._pref_state$_$v; if ($$v != null) { _this._pref_state$_id = $$v.id; _this._pref_state$_entityType = $$v.entityType; _this._timestamp = $$v.timestamp; _this._pref_state$_$v = null; } return _this; } }; Q.UpdateCurrentRoute.prototype = {}; D.uiReducer_closure.prototype = { call$1: function(b) { var t4, _s5_ = "other", t1 = this.state, t2 = this.action, t3 = $.$get$filterReducer().call$2(t1.filter, t2); b.get$_ui_state$_$this()._filter = t3; t3 = $.$get$filterClearedAtReducer().call$2(t1.filterClearedAt, t2); b.get$_ui_state$_$this()._filterClearedAt = t3; t3 = $.$get$lastActivityReducer().call$2(t1.lastActivityAt, t2); b.get$_ui_state$_$this()._lastActivityAt = t3; t3 = $.$get$selectedCompanyIndexReducer().call$2(t1.selectedCompanyIndex, t2); b.get$_ui_state$_$this()._selectedCompanyIndex = t3; t3 = t1.currentRoute; t4 = this.currentRoute; if (t3 === t4) t3 = t1.previousRoute; else if (C.JSString_methods.endsWith$1(t3, "edit")) t3 = t1.previousRoute; b.get$_ui_state$_$this()._previousRoute = t3; b.get$_ui_state$_$this()._currentRoute = t4; b.get$previewStack().replace$1(0, $.$get$previewStackReducer().call$2(t1.previewStack, t2)); b.get$filterStack().replace$1(0, $.$get$filterStackReducer().call$2(t1.filterStack, t2)); t4 = b.get$productUIState(); t3 = B.productUIReducer(t1.productUIState, t2); if (t3 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._product_state$_$v = t3; t3 = b.get$clientUIState(); t4 = S.clientUIReducer(t1.clientUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._client_state$_$v = t4; t3 = b.get$invoiceUIState(); t4 = D.invoiceUIReducer(t1.invoiceUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._invoice_state$_$v = t4; t3 = b.get$dashboardUIState(); t4 = D.dashboardUIReducer(t1.dashboardUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._dashboard_state$_$v = t4; t3 = b.get$reportsUIState(); t4 = X.reportsUIReducer(t1.reportsUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._reports_state$_$v = t4; t3 = b.get$recurringExpenseUIState(); t4 = E.recurringExpenseUIReducer(t1.recurringExpenseUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._recurring_expense_state$_$v = t4; t3 = b.get$subscriptionUIState(); t4 = X.subscriptionUIReducer(t1.subscriptionUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._subscription_state$_$v = t4; t3 = b.get$taskStatusUIState(); t4 = A.taskStatusUIReducer(t1.taskStatusUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._task_status_state$_$v = t4; t3 = b.get$expenseCategoryUIState(); t4 = F.expenseCategoryUIReducer(t1.expenseCategoryUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._expense_category_state$_$v = t4; t3 = b.get$recurringInvoiceUIState(); t4 = A.recurringInvoiceUIReducer(t1.recurringInvoiceUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._recurring_invoice_state$_$v = t4; t3 = b.get$webhookUIState(); t4 = L.webhookUIReducer(t1.webhookUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._webhook_state$_$v = t4; t3 = b.get$tokenUIState(); t4 = S.tokenUIReducer(t1.tokenUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._token_state$_$v = t4; t3 = b.get$paymentTermUIState(); t4 = L.paymentTermUIReducer(t1.paymentTermUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._payment_term_state$_$v = t4; t3 = b.get$designUIState(); t4 = U.designUIReducer(t1.designUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._design_state$_$v = t4; t3 = b.get$creditUIState(); t4 = Q.creditUIReducer(t1.creditUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._credit_state$_$v = t4; t3 = b.get$userUIState(); t4 = E.userUIReducer(t1.userUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._user_state$_$v = t4; t3 = b.get$taxRateUIState(); t4 = Z.taxRateUIReducer(t1.taxRateUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._tax_rate_state$_$v = t4; t3 = b.get$companyGatewayUIState(); t4 = N.companyGatewayUIReducer(t1.companyGatewayUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._company_gateway_state$_$v = t4; t3 = b.get$groupUIState(); t4 = K.groupUIReducer(t1.groupUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._group_state$_$v = t4; t3 = b.get$documentUIState(); t4 = M.documentUIReducer(t1.documentUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._document_state$_$v = t4; t3 = b.get$expenseUIState(); t4 = K.expenseUIReducer(t1.expenseUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._expense_state$_$v = t4; t3 = b.get$vendorUIState(); t4 = K.vendorUIReducer(t1.vendorUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._vendor_state$_$v = t4; t3 = b.get$taskUIState(); t4 = N.taskUIReducer(t1.taskUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._task_state$_$v = t4; t3 = b.get$projectUIState(); t4 = G.projectUIReducer(t1.projectUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._project_state$_$v = t4; t3 = b.get$paymentUIState(); t4 = R.paymentUIReducer(t1.paymentUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._payment_state$_$v = t4; t3 = b.get$quoteUIState(); t4 = L.quoteUIReducer(t1.quoteUIState, t2); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._quote_state$_$v = t4; t3 = b.get$settingsUIState(); t2 = $.$get$settingsUIReducer().call$2(t1.settingsUIState, t2); if (t2 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t3._company_state$_$v = t2; return b; }, $signature: 724 }; D.lastActivityReducer_closure.prototype = { call$2: function(state, action) { return Date.now(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1856 }; D.filterReducer_closure.prototype = { call$2: function(filter, action) { return action.filter; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1857 }; D.filterReducer_closure0.prototype = { call$2: function(state, action) { return action.filter; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1858 }; D.filterClearedAtReducer_closure.prototype = { call$2: function(filterClearedAt, action) { return action.filter == null ? Date.now() : filterClearedAt; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1859 }; D.filterClearedAtReducer_closure0.prototype = { call$2: function(state, action) { return Date.now(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1860 }; D.currentRouteReducer_closure.prototype = { call$2: function(currentRoute, action) { return action.route; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1861 }; D.selectedCompanyIndexReducer_closure.prototype = { call$2: function(selectedCompanyIndex, action) { return action.companyIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1862 }; D.previewStackReducer_closure.prototype = { call$2: function(previewStack, action) { var t2, t3, t4, t1 = action.entityType; if (t1 == null) return previewStack; t2 = previewStack._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && J.$eq$(t3.get$last(t2), t1)) return D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityType), type$.legacy_EntityType); t4 = type$.legacy_EntityType; t2 = P.List_List$of(t3.where$1(t2, new D.previewStackReducer__closure(action)), true, t4); t2.push(t1); return D.BuiltList_BuiltList$from(t2, t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1863 }; D.previewStackReducer__closure.prototype = { call$1: function(entityType) { return entityType != this.action.entityType; }, $signature: 323 }; D.previewStackReducer_closure0.prototype = { call$2: function(previewStack, action) { return D.BuiltList_BuiltList$from(H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityType), type$.legacy_EntityType); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1865 }; D.previewStackReducer_closure1.prototype = { call$2: function(previewStack, action) { var t1 = previewStack._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_EntityType; return D.BuiltList_BuiltList$from(P.List_List$of(new D._BuiltList(t2.sublist$2(t1, 0, t2.get$length(t1) - 1), H._instanceType(previewStack)._eval$1("_BuiltList<1>")), true, t3), t3); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1866 }; D.filterStackReducer_closure.prototype = { call$2: function(filterStack, action) { return D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_BaseEntity); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1867 }; D.filterStackReducer_closure0.prototype = { call$2: function(filterStack, action) { var t3, t1 = filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isNotEmpty(t1)) { t3 = action.entity; if (t3.get$id(t3) === J.get$id$x(t2.get$last(t1)) && t3.get$entityType() == t2.get$last(t1).get$entityType()) return D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_BaseEntity); } t3 = type$.legacy_BaseEntity; t1 = P.List_List$of(t2.where$1(t1, new D.filterStackReducer__closure(action)), true, t3); t1.push(action.entity); return D.BuiltList_BuiltList$from(t1, t3); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1868 }; D.filterStackReducer__closure.prototype = { call$1: function(entity) { return entity.get$entityType() != this.action.entity.get$entityType(); }, $signature: 194 }; D.filterStackReducer_closure1.prototype = { call$2: function(filterStack, action) { var t1 = filterStack._list, t2 = J.getInterceptor$asx(t1), t3 = type$.legacy_BaseEntity; return D.BuiltList_BuiltList$from(P.List_List$of(new D._BuiltList(t2.sublist$2(t1, 0, t2.get$length(t1) - 1), H._instanceType(filterStack)._eval$1("_BuiltList<1>")), true, t3), t3); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1869 }; U.UIState.prototype = { containsRoute$1: function(route) { if (route.length === 0) return false; return C.JSString_methods.contains$1(this.currentRoute, route); }, get$mainRoute: function() { var t1 = type$.WhereIterable_String, parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(this.currentRoute.split("/"), type$.JSArray_String), new U.UIState_mainRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length !== 0 ? parts[0] : ""; }, get$subRoute: function() { var t1 = type$.WhereIterable_String, parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(this.currentRoute.split("/"), type$.JSArray_String), new U.UIState_subRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length > 1 ? parts[1] : ""; }, get$baseSubRoute: function() { var route = this.get$subRoute(); route.toString; route = H.stringReplaceAllUnchecked(route, "_edit", ""); return H.stringReplaceAllUnchecked(route, "_view", ""); }, get$previousMainRoute: function() { var t1 = type$.WhereIterable_String, parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(this.previousRoute.split("/"), type$.JSArray_String), new U.UIState_previousMainRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length !== 0 ? parts[0] : ""; }, get$previousSubRoute: function() { var t1 = type$.WhereIterable_String, parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(this.previousRoute.split("/"), type$.JSArray_String), new U.UIState_previousSubRoute_closure(), t1), true, t1._eval$1("Iterable.E")); return parts.length > 1 ? parts[1] : ""; }, get$isEditing: function() { var t1 = this.currentRoute; return C.JSString_methods.endsWith$1(t1, "_edit") || C.JSString_methods.endsWith$1(t1, "/edit") || C.JSString_methods.endsWith$1(t1, "refund"); }, get$hasRecentActivity: function() { var t1 = this.lastActivityAt; if (t1 === 0) return false; return Date.now() - t1 < 86400000; } }; U.UIState_mainRoute_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; U.UIState_subRoute_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; U.UIState_previousMainRoute_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; U.UIState_previousSubRoute_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; U._$UIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["selectedCompanyIndex", serializers.serialize$2$specifiedType(object.selectedCompanyIndex, C.FullType_kjq), "currentRoute", serializers.serialize$2$specifiedType(object.currentRoute, C.FullType_h8g), "previousRoute", serializers.serialize$2$specifiedType(object.previousRoute, C.FullType_h8g), "previewStack", serializers.serialize$2$specifiedType(object.previewStack, C.FullType_kSI), "filterStack", serializers.serialize$2$specifiedType(object.filterStack, C.FullType_bQV), "filterClearedAt", serializers.serialize$2$specifiedType(object.filterClearedAt, C.FullType_kjq), "lastActivityAt", serializers.serialize$2$specifiedType(object.lastActivityAt, C.FullType_kjq), "dashboardUIState", serializers.serialize$2$specifiedType(object.dashboardUIState, C.FullType_wEo), "productUIState", serializers.serialize$2$specifiedType(object.productUIState, C.FullType_DDR), "clientUIState", serializers.serialize$2$specifiedType(object.clientUIState, C.FullType_cys), "invoiceUIState", serializers.serialize$2$specifiedType(object.invoiceUIState, C.FullType_4QF), "recurringExpenseUIState", serializers.serialize$2$specifiedType(object.recurringExpenseUIState, C.FullType_fs3), "subscriptionUIState", serializers.serialize$2$specifiedType(object.subscriptionUIState, C.FullType_NT2), "taskStatusUIState", serializers.serialize$2$specifiedType(object.taskStatusUIState, C.FullType_Ufa), "expenseCategoryUIState", serializers.serialize$2$specifiedType(object.expenseCategoryUIState, C.FullType_Xjb), "recurringInvoiceUIState", serializers.serialize$2$specifiedType(object.recurringInvoiceUIState, C.FullType_gA4), "webhookUIState", serializers.serialize$2$specifiedType(object.webhookUIState, C.FullType_AUo), "tokenUIState", serializers.serialize$2$specifiedType(object.tokenUIState, C.FullType_oeJ), "paymentTermUIState", serializers.serialize$2$specifiedType(object.paymentTermUIState, C.FullType_cg9), "designUIState", serializers.serialize$2$specifiedType(object.designUIState, C.FullType_cE9), "creditUIState", serializers.serialize$2$specifiedType(object.creditUIState, C.FullType_kiO), "userUIState", serializers.serialize$2$specifiedType(object.userUIState, C.FullType_A8J0), "taxRateUIState", serializers.serialize$2$specifiedType(object.taxRateUIState, C.FullType_MIo0), "companyGatewayUIState", serializers.serialize$2$specifiedType(object.companyGatewayUIState, C.FullType_2Px), "groupUIState", serializers.serialize$2$specifiedType(object.groupUIState, C.FullType_2bx), "documentUIState", serializers.serialize$2$specifiedType(object.documentUIState, C.FullType_wwi), "expenseUIState", serializers.serialize$2$specifiedType(object.expenseUIState, C.FullType_ivT), "vendorUIState", serializers.serialize$2$specifiedType(object.vendorUIState, C.FullType_2be), "taskUIState", serializers.serialize$2$specifiedType(object.taskUIState, C.FullType_5xM), "projectUIState", serializers.serialize$2$specifiedType(object.projectUIState, C.FullType_EOF), "paymentUIState", serializers.serialize$2$specifiedType(object.paymentUIState, C.FullType_1cc), "quoteUIState", serializers.serialize$2$specifiedType(object.quoteUIState, C.FullType_0eC), "settingsUIState", serializers.serialize$2$specifiedType(object.settingsUIState, C.FullType_eFJ), "reportsUIState", serializers.serialize$2$specifiedType(object.reportsUIState, C.FullType_NPy)], type$.JSArray_legacy_Object), value = object.filter; if (value != null) { result.push("filter"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var iterator, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, key, value, t33, t34, t35, _s5_ = "other", result = new U.UIStateBuilder(); U.UIState__initializeBuilder(result); iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ReportsUIState, t2 = type$.legacy_SettingsUIState, t3 = type$.legacy_QuoteUIState, t4 = type$.legacy_PaymentUIState, t5 = type$.legacy_ProjectUIState, t6 = type$.legacy_TaskUIState, t7 = type$.legacy_VendorUIState, t8 = type$.legacy_ExpenseUIState, t9 = type$.legacy_DocumentUIState, t10 = type$.legacy_GroupUIState, t11 = type$.legacy_CompanyGatewayUIState, t12 = type$.legacy_TaxRateUIState, t13 = type$.legacy_UserUIState, t14 = type$.legacy_CreditUIState, t15 = type$.legacy_DesignUIState, t16 = type$.legacy_PaymentTermUIState, t17 = type$.legacy_TokenUIState, t18 = type$.legacy_WebhookUIState, t19 = type$.legacy_RecurringInvoiceUIState, t20 = type$.legacy_ExpenseCategoryUIState, t21 = type$.legacy_TaskStatusUIState, t22 = type$.legacy_SubscriptionUIState, t23 = type$.legacy_RecurringExpenseUIState, t24 = type$.legacy_InvoiceUIState, t25 = type$.legacy_ClientUIState, t26 = type$.legacy_ProductUIState, t27 = type$.legacy_DashboardUIState, t28 = type$.legacy_BuiltList_legacy_Object, t29 = type$.legacy_BaseEntity, t30 = type$.ListBuilder_legacy_BaseEntity, t31 = type$.legacy_EntityType, t32 = type$.ListBuilder_legacy_EntityType; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "selectedCompanyIndex": t33 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_ui_state$_$this()._selectedCompanyIndex = t33; break; case "currentRoute": t33 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_ui_state$_$this()._currentRoute = t33; break; case "previousRoute": t33 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_ui_state$_$this()._previousRoute = t33; break; case "previewStack": t33 = result.get$_ui_state$_$this(); t34 = t33._previewStack; if (t34 == null) { t34 = new D.ListBuilder(t32); t34.__ListBuilder__list = P.List_List$from(C.List_empty, true, t31); t33._previewStack = t34; t33 = t34; } else t33 = t34; t34 = t28._as(serializers.deserialize$2$specifiedType(value, C.FullType_kSI)); t35 = t33.$ti; if (t35._eval$1("_BuiltList<1>")._is(t34)) { t33.__ListBuilder__list = t34._list; t33._listOwner = t34; } else { t33.__ListBuilder__list = P.List_List$from(t34, true, t35._precomputed1); t33._listOwner = null; } break; case "filterStack": t33 = result.get$_ui_state$_$this(); t34 = t33._filterStack; if (t34 == null) { t34 = new D.ListBuilder(t30); t34.__ListBuilder__list = P.List_List$from(C.List_empty, true, t29); t33._filterStack = t34; t33 = t34; } else t33 = t34; t34 = t28._as(serializers.deserialize$2$specifiedType(value, C.FullType_bQV)); t35 = t33.$ti; if (t35._eval$1("_BuiltList<1>")._is(t34)) { t33.__ListBuilder__list = t34._list; t33._listOwner = t34; } else { t33.__ListBuilder__list = P.List_List$from(t34, true, t35._precomputed1); t33._listOwner = null; } break; case "filter": t33 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_ui_state$_$this()._filter = t33; break; case "filterClearedAt": t33 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_ui_state$_$this()._filterClearedAt = t33; break; case "lastActivityAt": t33 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_ui_state$_$this()._lastActivityAt = t33; break; case "dashboardUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._dashboardUIState; t33 = t34 == null ? t33._dashboardUIState = new Y.DashboardUIStateBuilder() : t34; t34 = t27._as(serializers.deserialize$2$specifiedType(value, C.FullType_wEo)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._dashboard_state$_$v = t34; break; case "productUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._productUIState; t33 = t34 == null ? t33._productUIState = new Y.ProductUIStateBuilder() : t34; t34 = t26._as(serializers.deserialize$2$specifiedType(value, C.FullType_DDR)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._product_state$_$v = t34; break; case "clientUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._clientUIState; t33 = t34 == null ? t33._clientUIState = new F.ClientUIStateBuilder() : t34; t34 = t25._as(serializers.deserialize$2$specifiedType(value, C.FullType_cys)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._client_state$_$v = t34; break; case "invoiceUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._invoiceUIState; t33 = t34 == null ? t33._invoiceUIState = new B.InvoiceUIStateBuilder() : t34; t34 = t24._as(serializers.deserialize$2$specifiedType(value, C.FullType_4QF)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._invoice_state$_$v = t34; break; case "recurringExpenseUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._recurringExpenseUIState; t33 = t34 == null ? t33._recurringExpenseUIState = new K.RecurringExpenseUIStateBuilder() : t34; t34 = t23._as(serializers.deserialize$2$specifiedType(value, C.FullType_fs3)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._recurring_expense_state$_$v = t34; break; case "subscriptionUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._subscriptionUIState; t33 = t34 == null ? t33._subscriptionUIState = new M.SubscriptionUIStateBuilder() : t34; t34 = t22._as(serializers.deserialize$2$specifiedType(value, C.FullType_NT2)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._subscription_state$_$v = t34; break; case "taskStatusUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._taskStatusUIState; t33 = t34 == null ? t33._taskStatusUIState = new L.TaskStatusUIStateBuilder() : t34; t34 = t21._as(serializers.deserialize$2$specifiedType(value, C.FullType_Ufa)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._task_status_state$_$v = t34; break; case "expenseCategoryUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._expenseCategoryUIState; t33 = t34 == null ? t33._expenseCategoryUIState = new Q.ExpenseCategoryUIStateBuilder() : t34; t34 = t20._as(serializers.deserialize$2$specifiedType(value, C.FullType_Xjb)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._expense_category_state$_$v = t34; break; case "recurringInvoiceUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._recurringInvoiceUIState; t33 = t34 == null ? t33._recurringInvoiceUIState = new Q.RecurringInvoiceUIStateBuilder() : t34; t34 = t19._as(serializers.deserialize$2$specifiedType(value, C.FullType_gA4)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._recurring_invoice_state$_$v = t34; break; case "webhookUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._webhookUIState; t33 = t34 == null ? t33._webhookUIState = new V.WebhookUIStateBuilder() : t34; t34 = t18._as(serializers.deserialize$2$specifiedType(value, C.FullType_AUo)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._webhook_state$_$v = t34; break; case "tokenUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._tokenUIState; t33 = t34 == null ? t33._tokenUIState = new N.TokenUIStateBuilder() : t34; t34 = t17._as(serializers.deserialize$2$specifiedType(value, C.FullType_oeJ)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._token_state$_$v = t34; break; case "paymentTermUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._paymentTermUIState; t33 = t34 == null ? t33._paymentTermUIState = new N.PaymentTermUIStateBuilder() : t34; t34 = t16._as(serializers.deserialize$2$specifiedType(value, C.FullType_cg9)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._payment_term_state$_$v = t34; break; case "designUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._designUIState; t33 = t34 == null ? t33._designUIState = new Y.DesignUIStateBuilder() : t34; t34 = t15._as(serializers.deserialize$2$specifiedType(value, C.FullType_cE9)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._design_state$_$v = t34; break; case "creditUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._creditUIState; t33 = t34 == null ? t33._creditUIState = new G.CreditUIStateBuilder() : t34; t34 = t14._as(serializers.deserialize$2$specifiedType(value, C.FullType_kiO)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._credit_state$_$v = t34; break; case "userUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._userUIState; t33 = t34 == null ? t33._userUIState = new Q.UserUIStateBuilder() : t34; t34 = t13._as(serializers.deserialize$2$specifiedType(value, C.FullType_A8J0)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._user_state$_$v = t34; break; case "taxRateUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._taxRateUIState; t33 = t34 == null ? t33._taxRateUIState = new Q.TaxRateUIStateBuilder() : t34; t34 = t12._as(serializers.deserialize$2$specifiedType(value, C.FullType_MIo0)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._tax_rate_state$_$v = t34; break; case "companyGatewayUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._companyGatewayUIState; t33 = t34 == null ? t33._companyGatewayUIState = new U.CompanyGatewayUIStateBuilder() : t34; t34 = t11._as(serializers.deserialize$2$specifiedType(value, C.FullType_2Px)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._company_gateway_state$_$v = t34; break; case "groupUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._groupUIState; t33 = t34 == null ? t33._groupUIState = new E.GroupUIStateBuilder() : t34; t34 = t10._as(serializers.deserialize$2$specifiedType(value, C.FullType_2bx)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._group_state$_$v = t34; break; case "documentUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._documentUIState; t33 = t34 == null ? t33._documentUIState = new Q.DocumentUIStateBuilder() : t34; t34 = t9._as(serializers.deserialize$2$specifiedType(value, C.FullType_wwi)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._document_state$_$v = t34; break; case "expenseUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._expenseUIState; t33 = t34 == null ? t33._expenseUIState = new R.ExpenseUIStateBuilder() : t34; t34 = t8._as(serializers.deserialize$2$specifiedType(value, C.FullType_ivT)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._expense_state$_$v = t34; break; case "vendorUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._vendorUIState; t33 = t34 == null ? t33._vendorUIState = new Y.VendorUIStateBuilder() : t34; t34 = t7._as(serializers.deserialize$2$specifiedType(value, C.FullType_2be)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._vendor_state$_$v = t34; break; case "taskUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._taskUIState; t33 = t34 == null ? t33._taskUIState = new M.TaskUIStateBuilder() : t34; t34 = t6._as(serializers.deserialize$2$specifiedType(value, C.FullType_5xM)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._task_state$_$v = t34; break; case "projectUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._projectUIState; t33 = t34 == null ? t33._projectUIState = new D.ProjectUIStateBuilder() : t34; t34 = t5._as(serializers.deserialize$2$specifiedType(value, C.FullType_EOF)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._project_state$_$v = t34; break; case "paymentUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._paymentUIState; t33 = t34 == null ? t33._paymentUIState = new L.PaymentUIStateBuilder() : t34; t34 = t4._as(serializers.deserialize$2$specifiedType(value, C.FullType_1cc)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._payment_state$_$v = t34; break; case "quoteUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._quoteUIState; t33 = t34 == null ? t33._quoteUIState = new G.QuoteUIStateBuilder() : t34; t34 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_0eC)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._quote_state$_$v = t34; break; case "settingsUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._settingsUIState; if (t34 == null) { t34 = new B.SettingsUIStateBuilder(); t34.get$_company_state$_$this()._selectedTemplate = C.EmailTemplate_invoice; t33._settingsUIState = t34; t33 = t34; } else t33 = t34; t34 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_eFJ)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._company_state$_$v = t34; break; case "reportsUIState": t33 = result.get$_ui_state$_$this(); t34 = t33._reportsUIState; t33 = t34 == null ? t33._reportsUIState = new G.ReportsUIStateBuilder() : t34; t34 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_NPy)); if (t34 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t33._reports_state$_$v = t34; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_nZd; }, get$wireName: function() { return "UIState"; } }; U._$UIState.prototype = { rebuild$1: function(updates) { var t1 = new U.UIStateBuilder(); U.UIState__initializeBuilder(t1); t1._ui_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof U.UIState && _this.selectedCompanyIndex === other.selectedCompanyIndex && _this.currentRoute === other.currentRoute && _this.previousRoute === other.previousRoute && J.$eq$(_this.previewStack, other.previewStack) && J.$eq$(_this.filterStack, other.filterStack) && _this.filter == other.filter && _this.filterClearedAt === other.filterClearedAt && _this.lastActivityAt === other.lastActivityAt && J.$eq$(_this.dashboardUIState, other.dashboardUIState) && J.$eq$(_this.productUIState, other.productUIState) && J.$eq$(_this.clientUIState, other.clientUIState) && J.$eq$(_this.invoiceUIState, other.invoiceUIState) && J.$eq$(_this.recurringExpenseUIState, other.recurringExpenseUIState) && J.$eq$(_this.subscriptionUIState, other.subscriptionUIState) && J.$eq$(_this.taskStatusUIState, other.taskStatusUIState) && J.$eq$(_this.expenseCategoryUIState, other.expenseCategoryUIState) && J.$eq$(_this.recurringInvoiceUIState, other.recurringInvoiceUIState) && J.$eq$(_this.webhookUIState, other.webhookUIState) && J.$eq$(_this.tokenUIState, other.tokenUIState) && J.$eq$(_this.paymentTermUIState, other.paymentTermUIState) && J.$eq$(_this.designUIState, other.designUIState) && J.$eq$(_this.creditUIState, other.creditUIState) && J.$eq$(_this.userUIState, other.userUIState) && J.$eq$(_this.taxRateUIState, other.taxRateUIState) && J.$eq$(_this.companyGatewayUIState, other.companyGatewayUIState) && J.$eq$(_this.groupUIState, other.groupUIState) && J.$eq$(_this.documentUIState, other.documentUIState) && J.$eq$(_this.expenseUIState, other.expenseUIState) && J.$eq$(_this.vendorUIState, other.vendorUIState) && J.$eq$(_this.taskUIState, other.taskUIState) && J.$eq$(_this.projectUIState, other.projectUIState) && J.$eq$(_this.paymentUIState, other.paymentUIState) && J.$eq$(_this.quoteUIState, other.quoteUIState) && J.$eq$(_this.settingsUIState, other.settingsUIState) && J.$eq$(_this.reportsUIState, other.reportsUIState); }, get$hashCode: function(_) { var _this = this, t1 = _this._ui_state$__hashCode; return t1 == null ? _this._ui_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, C.JSInt_methods.get$hashCode(_this.selectedCompanyIndex)), C.JSString_methods.get$hashCode(_this.currentRoute)), C.JSString_methods.get$hashCode(_this.previousRoute)), J.get$hashCode$(_this.previewStack)), J.get$hashCode$(_this.filterStack)), J.get$hashCode$(_this.filter)), C.JSInt_methods.get$hashCode(_this.filterClearedAt)), C.JSInt_methods.get$hashCode(_this.lastActivityAt)), J.get$hashCode$(_this.dashboardUIState)), J.get$hashCode$(_this.productUIState)), J.get$hashCode$(_this.clientUIState)), J.get$hashCode$(_this.invoiceUIState)), J.get$hashCode$(_this.recurringExpenseUIState)), J.get$hashCode$(_this.subscriptionUIState)), J.get$hashCode$(_this.taskStatusUIState)), J.get$hashCode$(_this.expenseCategoryUIState)), J.get$hashCode$(_this.recurringInvoiceUIState)), J.get$hashCode$(_this.webhookUIState)), J.get$hashCode$(_this.tokenUIState)), J.get$hashCode$(_this.paymentTermUIState)), J.get$hashCode$(_this.designUIState)), J.get$hashCode$(_this.creditUIState)), J.get$hashCode$(_this.userUIState)), J.get$hashCode$(_this.taxRateUIState)), J.get$hashCode$(_this.companyGatewayUIState)), J.get$hashCode$(_this.groupUIState)), J.get$hashCode$(_this.documentUIState)), J.get$hashCode$(_this.expenseUIState)), J.get$hashCode$(_this.vendorUIState)), J.get$hashCode$(_this.taskUIState)), J.get$hashCode$(_this.projectUIState)), J.get$hashCode$(_this.paymentUIState)), J.get$hashCode$(_this.quoteUIState)), J.get$hashCode$(_this.settingsUIState)), J.get$hashCode$(_this.reportsUIState))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "selectedCompanyIndex", _this.selectedCompanyIndex); t2.add$2(t1, "currentRoute", _this.currentRoute); t2.add$2(t1, "previousRoute", _this.previousRoute); t2.add$2(t1, "previewStack", _this.previewStack); t2.add$2(t1, "filterStack", _this.filterStack); t2.add$2(t1, "filter", _this.filter); t2.add$2(t1, "filterClearedAt", _this.filterClearedAt); t2.add$2(t1, "lastActivityAt", _this.lastActivityAt); t2.add$2(t1, "dashboardUIState", _this.dashboardUIState); t2.add$2(t1, "productUIState", _this.productUIState); t2.add$2(t1, "clientUIState", _this.clientUIState); t2.add$2(t1, "invoiceUIState", _this.invoiceUIState); t2.add$2(t1, "recurringExpenseUIState", _this.recurringExpenseUIState); t2.add$2(t1, "subscriptionUIState", _this.subscriptionUIState); t2.add$2(t1, "taskStatusUIState", _this.taskStatusUIState); t2.add$2(t1, "expenseCategoryUIState", _this.expenseCategoryUIState); t2.add$2(t1, "recurringInvoiceUIState", _this.recurringInvoiceUIState); t2.add$2(t1, "webhookUIState", _this.webhookUIState); t2.add$2(t1, "tokenUIState", _this.tokenUIState); t2.add$2(t1, "paymentTermUIState", _this.paymentTermUIState); t2.add$2(t1, "designUIState", _this.designUIState); t2.add$2(t1, "creditUIState", _this.creditUIState); t2.add$2(t1, "userUIState", _this.userUIState); t2.add$2(t1, "taxRateUIState", _this.taxRateUIState); t2.add$2(t1, "companyGatewayUIState", _this.companyGatewayUIState); t2.add$2(t1, "groupUIState", _this.groupUIState); t2.add$2(t1, "documentUIState", _this.documentUIState); t2.add$2(t1, "expenseUIState", _this.expenseUIState); t2.add$2(t1, "vendorUIState", _this.vendorUIState); t2.add$2(t1, "taskUIState", _this.taskUIState); t2.add$2(t1, "projectUIState", _this.projectUIState); t2.add$2(t1, "paymentUIState", _this.paymentUIState); t2.add$2(t1, "quoteUIState", _this.quoteUIState); t2.add$2(t1, "settingsUIState", _this.settingsUIState); t2.add$2(t1, "reportsUIState", _this.reportsUIState); return t2.toString$0(t1); } }; U.UIStateBuilder.prototype = { get$previewStack: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._previewStack; return t2 == null ? t1._previewStack = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_EntityType) : t2; }, get$filterStack: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._filterStack; return t2 == null ? t1._filterStack = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_BaseEntity) : t2; }, get$dashboardUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._dashboardUIState; return t2 == null ? t1._dashboardUIState = new Y.DashboardUIStateBuilder() : t2; }, get$productUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._productUIState; return t2 == null ? t1._productUIState = new Y.ProductUIStateBuilder() : t2; }, get$clientUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._clientUIState; return t2 == null ? t1._clientUIState = new F.ClientUIStateBuilder() : t2; }, get$invoiceUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._invoiceUIState; return t2 == null ? t1._invoiceUIState = new B.InvoiceUIStateBuilder() : t2; }, get$recurringExpenseUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._recurringExpenseUIState; return t2 == null ? t1._recurringExpenseUIState = new K.RecurringExpenseUIStateBuilder() : t2; }, get$subscriptionUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._subscriptionUIState; return t2 == null ? t1._subscriptionUIState = new M.SubscriptionUIStateBuilder() : t2; }, get$taskStatusUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taskStatusUIState; return t2 == null ? t1._taskStatusUIState = new L.TaskStatusUIStateBuilder() : t2; }, get$expenseCategoryUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._expenseCategoryUIState; return t2 == null ? t1._expenseCategoryUIState = new Q.ExpenseCategoryUIStateBuilder() : t2; }, get$recurringInvoiceUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._recurringInvoiceUIState; return t2 == null ? t1._recurringInvoiceUIState = new Q.RecurringInvoiceUIStateBuilder() : t2; }, get$webhookUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._webhookUIState; return t2 == null ? t1._webhookUIState = new V.WebhookUIStateBuilder() : t2; }, get$tokenUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._tokenUIState; return t2 == null ? t1._tokenUIState = new N.TokenUIStateBuilder() : t2; }, get$paymentTermUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._paymentTermUIState; return t2 == null ? t1._paymentTermUIState = new N.PaymentTermUIStateBuilder() : t2; }, get$designUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._designUIState; return t2 == null ? t1._designUIState = new Y.DesignUIStateBuilder() : t2; }, get$creditUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._creditUIState; return t2 == null ? t1._creditUIState = new G.CreditUIStateBuilder() : t2; }, get$userUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._userUIState; return t2 == null ? t1._userUIState = new Q.UserUIStateBuilder() : t2; }, get$taxRateUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taxRateUIState; return t2 == null ? t1._taxRateUIState = new Q.TaxRateUIStateBuilder() : t2; }, get$companyGatewayUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._companyGatewayUIState; return t2 == null ? t1._companyGatewayUIState = new U.CompanyGatewayUIStateBuilder() : t2; }, get$groupUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._groupUIState; return t2 == null ? t1._groupUIState = new E.GroupUIStateBuilder() : t2; }, get$documentUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._documentUIState; return t2 == null ? t1._documentUIState = new Q.DocumentUIStateBuilder() : t2; }, get$expenseUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._expenseUIState; return t2 == null ? t1._expenseUIState = new R.ExpenseUIStateBuilder() : t2; }, get$vendorUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._vendorUIState; return t2 == null ? t1._vendorUIState = new Y.VendorUIStateBuilder() : t2; }, get$taskUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._taskUIState; return t2 == null ? t1._taskUIState = new M.TaskUIStateBuilder() : t2; }, get$projectUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._projectUIState; return t2 == null ? t1._projectUIState = new D.ProjectUIStateBuilder() : t2; }, get$paymentUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._paymentUIState; return t2 == null ? t1._paymentUIState = new L.PaymentUIStateBuilder() : t2; }, get$quoteUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._quoteUIState; return t2 == null ? t1._quoteUIState = new G.QuoteUIStateBuilder() : t2; }, get$settingsUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._settingsUIState; if (t2 == null) { t2 = new B.SettingsUIStateBuilder(); t2.get$_company_state$_$this()._selectedTemplate = C.EmailTemplate_invoice; t1._settingsUIState = t2; t1 = t2; } else t1 = t2; return t1; }, get$reportsUIState: function() { var t1 = this.get$_ui_state$_$this(), t2 = t1._reportsUIState; return t2 == null ? t1._reportsUIState = new G.ReportsUIStateBuilder() : t2; }, get$_ui_state$_$this: function() { var t1, t2, _this = this, $$v = _this._ui_state$_$v; if ($$v != null) { _this._selectedCompanyIndex = $$v.selectedCompanyIndex; _this._currentRoute = $$v.currentRoute; _this._previousRoute = $$v.previousRoute; t1 = $$v.previewStack; t1.toString; _this._previewStack = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); t1 = $$v.filterStack; t1.toString; _this._filterStack = D.ListBuilder_ListBuilder(t1, t1.$ti._precomputed1); _this._filter = $$v.filter; _this._filterClearedAt = $$v.filterClearedAt; _this._lastActivityAt = $$v.lastActivityAt; t1 = $$v.dashboardUIState; t1.toString; t2 = new Y.DashboardUIStateBuilder(); t2._dashboard_state$_$v = t1; _this._dashboardUIState = t2; t1 = $$v.productUIState; t1.toString; t2 = new Y.ProductUIStateBuilder(); t2._product_state$_$v = t1; _this._productUIState = t2; t1 = $$v.clientUIState; t1.toString; t2 = new F.ClientUIStateBuilder(); t2._client_state$_$v = t1; _this._clientUIState = t2; t1 = $$v.invoiceUIState; t1.toString; t2 = new B.InvoiceUIStateBuilder(); t2._invoice_state$_$v = t1; _this._invoiceUIState = t2; t1 = $$v.recurringExpenseUIState; t1.toString; t2 = new K.RecurringExpenseUIStateBuilder(); t2._recurring_expense_state$_$v = t1; _this._recurringExpenseUIState = t2; t1 = $$v.subscriptionUIState; t1.toString; t2 = new M.SubscriptionUIStateBuilder(); t2._subscription_state$_$v = t1; _this._subscriptionUIState = t2; t1 = $$v.taskStatusUIState; t1.toString; t2 = new L.TaskStatusUIStateBuilder(); t2._task_status_state$_$v = t1; _this._taskStatusUIState = t2; t1 = $$v.expenseCategoryUIState; t1.toString; t2 = new Q.ExpenseCategoryUIStateBuilder(); t2._expense_category_state$_$v = t1; _this._expenseCategoryUIState = t2; t1 = $$v.recurringInvoiceUIState; t1.toString; t2 = new Q.RecurringInvoiceUIStateBuilder(); t2._recurring_invoice_state$_$v = t1; _this._recurringInvoiceUIState = t2; t1 = $$v.webhookUIState; t1.toString; t2 = new V.WebhookUIStateBuilder(); t2._webhook_state$_$v = t1; _this._webhookUIState = t2; t1 = $$v.tokenUIState; t1.toString; t2 = new N.TokenUIStateBuilder(); t2._token_state$_$v = t1; _this._tokenUIState = t2; t1 = $$v.paymentTermUIState; t1.toString; t2 = new N.PaymentTermUIStateBuilder(); t2._payment_term_state$_$v = t1; _this._paymentTermUIState = t2; t1 = $$v.designUIState; t1.toString; t2 = new Y.DesignUIStateBuilder(); t2._design_state$_$v = t1; _this._designUIState = t2; t1 = $$v.creditUIState; t1.toString; t2 = new G.CreditUIStateBuilder(); t2._credit_state$_$v = t1; _this._creditUIState = t2; t1 = $$v.userUIState; t1.toString; t2 = new Q.UserUIStateBuilder(); t2._user_state$_$v = t1; _this._userUIState = t2; t1 = $$v.taxRateUIState; t1.toString; t2 = new Q.TaxRateUIStateBuilder(); t2._tax_rate_state$_$v = t1; _this._taxRateUIState = t2; t1 = $$v.companyGatewayUIState; t1.toString; t2 = new U.CompanyGatewayUIStateBuilder(); t2._company_gateway_state$_$v = t1; _this._companyGatewayUIState = t2; t1 = $$v.groupUIState; t1.toString; t2 = new E.GroupUIStateBuilder(); t2._group_state$_$v = t1; _this._groupUIState = t2; t1 = $$v.documentUIState; t1.toString; t2 = new Q.DocumentUIStateBuilder(); t2._document_state$_$v = t1; _this._documentUIState = t2; t1 = $$v.expenseUIState; t1.toString; t2 = new R.ExpenseUIStateBuilder(); t2._expense_state$_$v = t1; _this._expenseUIState = t2; t1 = $$v.vendorUIState; t1.toString; t2 = new Y.VendorUIStateBuilder(); t2._vendor_state$_$v = t1; _this._vendorUIState = t2; t1 = $$v.taskUIState; t1.toString; t2 = new M.TaskUIStateBuilder(); t2._task_state$_$v = t1; _this._taskUIState = t2; t1 = $$v.projectUIState; t1.toString; t2 = new D.ProjectUIStateBuilder(); t2._project_state$_$v = t1; _this._projectUIState = t2; t1 = $$v.paymentUIState; t1.toString; t2 = new L.PaymentUIStateBuilder(); t2._payment_state$_$v = t1; _this._paymentUIState = t2; t1 = $$v.quoteUIState; t1.toString; t2 = new G.QuoteUIStateBuilder(); t2._quote_state$_$v = t1; _this._quoteUIState = t2; t1 = $$v.settingsUIState; t1.toString; t2 = new B.SettingsUIStateBuilder(); t2.get$_company_state$_$this()._selectedTemplate = C.EmailTemplate_invoice; t2._company_state$_$v = t1; _this._settingsUIState = t2; t1 = $$v.reportsUIState; t1.toString; t2 = new G.ReportsUIStateBuilder(); t2._reports_state$_$v = t1; _this._reportsUIState = t2; _this._ui_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, exception, _this = this, _s7_ = "UIState", _$result = null; try { _$result0 = _this._ui_state$_$v; if (_$result0 == null) { t1 = _this.get$_ui_state$_$this()._selectedCompanyIndex; if (t1 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "selectedCompanyIndex")); t2 = _this.get$_ui_state$_$this()._currentRoute; if (t2 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "currentRoute")); t3 = _this.get$_ui_state$_$this()._previousRoute; if (t3 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "previousRoute")); t4 = _this.get$previewStack().build$0(0); t5 = _this.get$filterStack().build$0(0); t6 = _this.get$_ui_state$_$this()._filter; t7 = _this.get$_ui_state$_$this()._filterClearedAt; if (t7 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "filterClearedAt")); t8 = _this.get$_ui_state$_$this()._lastActivityAt; if (t8 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s7_, "lastActivityAt")); t9 = _this.get$dashboardUIState().build$0(0); t10 = _this.get$productUIState().build$0(0); t11 = _this.get$clientUIState().build$0(0); t12 = _this.get$invoiceUIState().build$0(0); t13 = _this.get$recurringExpenseUIState().build$0(0); t14 = _this.get$subscriptionUIState().build$0(0); t15 = _this.get$taskStatusUIState().build$0(0); t16 = _this.get$expenseCategoryUIState().build$0(0); t17 = _this.get$recurringInvoiceUIState().build$0(0); t18 = _this.get$webhookUIState().build$0(0); t19 = _this.get$tokenUIState().build$0(0); t20 = _this.get$paymentTermUIState().build$0(0); t21 = _this.get$designUIState().build$0(0); t22 = _this.get$creditUIState().build$0(0); t23 = _this.get$userUIState().build$0(0); t24 = _this.get$taxRateUIState().build$0(0); t25 = _this.get$companyGatewayUIState().build$0(0); t26 = _this.get$groupUIState().build$0(0); t27 = _this.get$documentUIState().build$0(0); t28 = _this.get$expenseUIState().build$0(0); t29 = _this.get$vendorUIState().build$0(0); t30 = _this.get$taskUIState().build$0(0); t31 = _this.get$projectUIState().build$0(0); t32 = _this.get$paymentUIState().build$0(0); t33 = _this.get$quoteUIState().build$0(0); t34 = _this.get$settingsUIState().build$0(0); _$result0 = U._$UIState$_(t11, t25, t22, t2, t9, t21, t27, t16, t28, t6, t7, t5, t26, t12, t8, t20, t32, t4, t3, t10, t31, t33, t13, t17, _this.get$reportsUIState().build$0(0), t1, t34, t14, t15, t30, t24, t19, t23, t29, t18); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "previewStack"; _this.get$previewStack().build$0(0); _$failedField = "filterStack"; _this.get$filterStack().build$0(0); _$failedField = "dashboardUIState"; _this.get$dashboardUIState().build$0(0); _$failedField = "productUIState"; _this.get$productUIState().build$0(0); _$failedField = "clientUIState"; _this.get$clientUIState().build$0(0); _$failedField = "invoiceUIState"; _this.get$invoiceUIState().build$0(0); _$failedField = "recurringExpenseUIState"; _this.get$recurringExpenseUIState().build$0(0); _$failedField = "subscriptionUIState"; _this.get$subscriptionUIState().build$0(0); _$failedField = "taskStatusUIState"; _this.get$taskStatusUIState().build$0(0); _$failedField = "expenseCategoryUIState"; _this.get$expenseCategoryUIState().build$0(0); _$failedField = "recurringInvoiceUIState"; _this.get$recurringInvoiceUIState().build$0(0); _$failedField = "webhookUIState"; _this.get$webhookUIState().build$0(0); _$failedField = "tokenUIState"; _this.get$tokenUIState().build$0(0); _$failedField = "paymentTermUIState"; _this.get$paymentTermUIState().build$0(0); _$failedField = "designUIState"; _this.get$designUIState().build$0(0); _$failedField = "creditUIState"; _this.get$creditUIState().build$0(0); _$failedField = "userUIState"; _this.get$userUIState().build$0(0); _$failedField = "taxRateUIState"; _this.get$taxRateUIState().build$0(0); _$failedField = "companyGatewayUIState"; _this.get$companyGatewayUIState().build$0(0); _$failedField = "groupUIState"; _this.get$groupUIState().build$0(0); _$failedField = "documentUIState"; _this.get$documentUIState().build$0(0); _$failedField = "expenseUIState"; _this.get$expenseUIState().build$0(0); _$failedField = "vendorUIState"; _this.get$vendorUIState().build$0(0); _$failedField = "taskUIState"; _this.get$taskUIState().build$0(0); _$failedField = "projectUIState"; _this.get$projectUIState().build$0(0); _$failedField = "paymentUIState"; _this.get$paymentUIState().build$0(0); _$failedField = "quoteUIState"; _this.get$quoteUIState().build$0(0); _$failedField = "settingsUIState"; _this.get$settingsUIState().build$0(0); _$failedField = "reportsUIState"; _this.get$reportsUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s7_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._ui_state$_$v = t1; return _$result; } }; X.ViewUserList.prototype = {$isStopLoading: 1}; X.ViewUser.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; X.EditUser.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$user: function() { return this.user; } }; X.UpdateUser.prototype = {$isPersistUI: 1, get$user: function() { return this.user; } }; X.LoadUserRequest.prototype = {$isStartLoading: 1}; X.LoadUserFailure.prototype = { toString$0: function(_) { return "LoadUserFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadUserSuccess.prototype = { toString$0: function(_) { return "LoadUserSuccess{user: " + H.S(this.user) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$user: function() { return this.user; } }; X.LoadUsersRequest.prototype = {$isStartLoading: 1}; X.LoadUsersFailure.prototype = { toString$0: function(_) { return "LoadUsersFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; X.LoadUsersSuccess.prototype = { toString$0: function(_) { return "LoadUsersSuccess{users: " + H.S(this.users) + "}"; }, $isStopLoading: 1 }; X.SaveUserRequest.prototype = {$isStartSaving: 1, get$user: function() { return this.user; } }; X.SaveUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user: function() { return this.user; } }; X.AddUserSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1, get$user: function() { return this.user; } }; X.SaveUserFailure.prototype = {$isStopSaving: 1}; X.ArchiveUserRequest.prototype = {$isStartSaving: 1}; X.ArchiveUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; X.ArchiveUserFailure.prototype = {$isStopSaving: 1}; X.DeleteUserRequest.prototype = {$isStartSaving: 1}; X.DeleteUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; X.DeleteUserFailure.prototype = {$isStopSaving: 1}; X.RestoreUserRequest.prototype = {$isStartSaving: 1}; X.RestoreUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1, $isUserVerifiedPassword: 1}; X.RestoreUserFailure.prototype = {$isStopSaving: 1}; X.RemoveUserRequest.prototype = {$isStartSaving: 1}; X.RemoveUserSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.RemoveUserFailure.prototype = {$isStopSaving: 1}; X.ResendInviteRequest.prototype = {$isStartSaving: 1}; X.ResendInviteSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; X.ResendInviteFailure.prototype = {$isStopSaving: 1}; X.FilterUsers.prototype = {}; X.SortUsers.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; X.FilterUsersByState.prototype = {$isPersistUI: 1}; X.FilterUsersByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterUsersByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterUsersByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.FilterUsersByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; X.handleUserAction_closure.prototype = { call$1: function(user) { return user.get$id(user); }, $signature: 41 }; X.handleUserAction_closure0.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_client_model$_$this()._client_model$_assignedUserId = t1; }, $signature: 1870 }; X.handleUserAction_closure1.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 154 }; X.handleUserAction_closure2.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 154 }; X.handleUserAction_closure3.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 154 }; X.handleUserAction_closure4.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = t1; }, $signature: 154 }; X.handleUserAction_closure5.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_expense_model$_$this()._expense_model$_assignedUserId = t1; }, $signature: 1871 }; X.handleUserAction_closure6.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_payment_model$_$this()._payment_model$_assignedUserId = t1; }, $signature: 701 }; X.handleUserAction_closure7.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_project_model$_$this()._project_model$_assignedUserId = t1; }, $signature: 700 }; X.handleUserAction_closure8.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_task_model$_$this()._task_model$_assignedUserId = t1; }, $signature: 1872 }; X.handleUserAction_closure9.prototype = { call$1: function(b) { var t1 = this.user.id; return b.get$_vendor_model$_$this()._vendor_model$_assignedUserId = t1; }, $signature: 1873 }; X.handleUserAction_closure11.prototype = { call$2: function(password, idToken) { var _this = this, t1 = O.snackBarCompleter(_this.context, _this.message, false, type$.Null); return J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.RestoreUserRequest(t1, _this.userIds, password, idToken)); }, call$1: function(password) { return this.call$2(password, null); }, call$0: function() { return this.call$2(null, null); }, $signature: 324 }; X.handleUserAction_closure10.prototype = { call$2: function(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 51 }; X.handleUserAction_closure13.prototype = { call$2: function(password, idToken) { var _this = this, t1 = O.snackBarCompleter(_this.context, _this.message, false, type$.Null); return J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.ArchiveUserRequest(t1, _this.userIds, password, idToken)); }, call$1: function(password) { return this.call$2(password, null); }, call$0: function() { return this.call$2(null, null); }, $signature: 324 }; X.handleUserAction_closure12.prototype = { call$2: function(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 51 }; X.handleUserAction_closure15.prototype = { call$2: function(password, idToken) { var _this = this, t1 = O.snackBarCompleter(_this.context, _this.message, false, type$.Null); return J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.DeleteUserRequest(t1, _this.userIds, password, idToken)); }, call$1: function(password) { return this.call$2(password, null); }, call$0: function() { return this.call$2(null, null); }, $signature: 324 }; X.handleUserAction_closure14.prototype = { call$2: function(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 51 }; X.handleUserAction_closure17.prototype = { call$2: function(password, idToken) { var _this = this, t1 = O.snackBarCompleter(_this.context, _this.message, false, type$.Null), t2 = _this.user.id; return J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.RemoveUserRequest(t1, t2, password, idToken)); }, call$1: function(password) { return this.call$2(password, null); }, call$0: function() { return this.call$2(null, null); }, $signature: 324 }; X.handleUserAction_closure16.prototype = { call$1: function(_) { O.passwordCallback(false, new X.handleUserAction__closure(this.dispatch), this.context); }, $signature: 7 }; X.handleUserAction__closure.prototype = { call$2: function(password, idToken) { this.dispatch.call$2(password, idToken); }, $signature: 51 }; X.handleUserAction_closure18.prototype = { call$2: function(password, idToken) { var _this = this, t1 = _this.user.id, t2 = O.snackBarCompleter(_this.context, _this.localization.get$emailSentToConfirmEmail(), false, type$.Null); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new X.ResendInviteRequest(t2, t1, password, idToken)); }, $signature: 51 }; X.StartUserMultiselect.prototype = {}; X.AddToUserMultiselect.prototype = {}; X.RemoveFromUserMultiselect.prototype = {}; X.ClearUserMultiselect.prototype = {}; M._editUser_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s30_ = "/settings/user_management_edit"; next.call$1(type$.legacy_EditUser._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s30_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s30_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._viewUser_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewUser_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewUser_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewUser._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/user_management_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/user_management_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; M._viewUserList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s25_ = "/settings/user_management"; next.call$1(type$.legacy_ViewUserList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s25_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s25_, new M._viewUserList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._viewUserList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; M._archiveUser_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_ArchiveUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = P.List_List$of(new H.MappedListIterable(t1, new M._archiveUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._archiveUser__closure0(store, dynamicAction), type$.Null).catchError$1(new M._archiveUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._archiveUser__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).userState.map._map$_map, id); }, $signature: 334 }; M._archiveUser__closure0.prototype = { call$1: function(users) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ArchiveUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 232 }; M._archiveUser__closure1.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ArchiveUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._deleteUser_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_DeleteUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = P.List_List$of(new H.MappedListIterable(t1, new M._deleteUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._deleteUser__closure0(store, dynamicAction), type$.Null).catchError$1(new M._deleteUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._deleteUser__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).userState.map._map$_map, id); }, $signature: 334 }; M._deleteUser__closure0.prototype = { call$1: function(users) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.DeleteUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 232 }; M._deleteUser__closure1.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.DeleteUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._restoreUser_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevUsers; type$.legacy_RestoreUserRequest._as(dynamicAction); t1 = dynamicAction.userIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,UserEntity*>"); prevUsers = P.List_List$of(new H.MappedListIterable(t1, new M._restoreUser__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$5(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._restoreUser__closure0(store, dynamicAction), type$.Null).catchError$1(new M._restoreUser__closure1(store, prevUsers, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._restoreUser__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).userState.map._map$_map, id); }, $signature: 334 }; M._restoreUser__closure0.prototype = { call$1: function(users) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RestoreUserSuccess(users)); this.action.completer.complete$1(0, null); }, $signature: 232 }; M._restoreUser__closure1.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.RestoreUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._removeUser_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_RemoveUserRequest._as(dynamicAction); this.repository.detachFromCompany$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.userId, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._removeUser__closure(store, dynamicAction), type$.Null).catchError$1(new M._removeUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._removeUser__closure.prototype = { call$1: function(_) { var t1 = this.action; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RemoveUserSuccess(t1.userId)); t1.completer.complete$1(0, null); }, $signature: 232 }; M._removeUser__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.RemoveUserFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._resendInvite_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_ResendInviteRequest._as(dynamicAction); this.repository.resendInvite$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.userId, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._resendInvite__closure(store, dynamicAction), type$.Null).catchError$1(new M._resendInvite__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._resendInvite__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ResendInviteSuccess()); this.action.completer.complete$1(0, null); }, $signature: 232 }; M._resendInvite__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ResendInviteFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._saveUser_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveUserRequest._as(dynamicAction); this.repository.saveData$4(J.get$credentials$z(store.get$_store$_state()), dynamicAction.user, dynamicAction.password, dynamicAction.idToken).then$1$1(0, new M._saveUser__closure(dynamicAction, store), type$.Null).catchError$1(new M._saveUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._saveUser__closure.prototype = { call$1: function(user) { var t1 = this.action, t2 = this.store; if (t1.user.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.AddUserSuccess(user)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.SaveUserSuccess(user)); t1.completer.complete$1(0, user); }, $signature: 174 }; M._saveUser__closure0.prototype = { call$1: function(error) { var t1; P.print(error); t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.SaveUserFailure()); if (C.JSString_methods.contains$1(H.S(error), "412")) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserUnverifiedPassword()); this.action.completer.completeError$1(error); }, $signature: 3 }; M._loadUser_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadUser._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadUserRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.userId).then$1$1(0, new M._loadUser__closure(store, dynamicAction), type$.Null).catchError$1(new M._loadUser__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._loadUser__closure.prototype = { call$1: function(user) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadUserSuccess(user)); this.action.completer.complete$1(0, null); }, $signature: 174 }; M._loadUser__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadUserFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; M._loadUsers_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadUsers._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new X.LoadUsersRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new M._loadUsers__closure(store, dynamicAction), type$.Null).catchError$1(new M._loadUsers__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; M._loadUsers__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadUsersSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1878 }; M._loadUsers__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.LoadUsersFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; E.userUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$userListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer9().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._user_model$_$v = t4; t1 = $.$get$selectedIdReducer9().call$2(t2.selectedId, t3); b.get$_user_state$_$this()._user_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer9().call$2(t2.forceSelected, t3); b.get$_user_state$_$this()._user_state$_forceSelected = t3; return b; }, $signature: 1879 }; E.forceSelectedReducer_closure71.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1880 }; E.forceSelectedReducer_closure72.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1881 }; E.forceSelectedReducer_closure73.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1882 }; E.forceSelectedReducer_closure74.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1883 }; E.forceSelectedReducer_closure75.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1884 }; E.forceSelectedReducer_closure76.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1885 }; E.forceSelectedReducer_closure77.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1886 }; E.forceSelectedReducer_closure78.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1887 }; E.selectedIdReducer_closure144.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1888 }; E.selectedIdReducer_closure145.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1889 }; E.selectedIdReducer_closure146.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_user ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; E.selectedIdReducer_closure147.prototype = { call$2: function(selectedId, action) { return action.userId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1890 }; E.selectedIdReducer_closure148.prototype = { call$2: function(selectedId, action) { return action.user.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1891 }; E.selectedIdReducer_closure149.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; E.selectedIdReducer_closure150.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; E.selectedIdReducer_closure151.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1892 }; E.selectedIdReducer_closure152.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1893 }; E.selectedIdReducer_closure153.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1894 }; E.selectedIdReducer_closure154.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1895 }; E.selectedIdReducer_closure155.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1896 }; E.selectedIdReducer_closure156.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1897 }; E.selectedIdReducer_closure157.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1898 }; E.selectedIdReducer_closure158.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_user ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 149 }; E.selectedIdReducer_closure159.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_user ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; E.editingReducer_closure43.prototype = { call$2: function(users, action) { return J.$index$asx(action.users, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1899 }; E.editingReducer_closure44.prototype = { call$2: function(users, action) { return J.$index$asx(action.users, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1900 }; E.editingReducer_closure45.prototype = { call$2: function(users, action) { return J.$index$asx(action.users, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1901 }; E.editingReducer_closure46.prototype = { call$2: function(user, action) { return action.user.rebuild$1(new E.editingReducer__closure15()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1902 }; E.editingReducer__closure15.prototype = { call$1: function(b) { b.get$_user_model$_$this()._user_model$_isChanged = true; return b; }, $signature: 78 }; E._viewUserList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; E._filterUsersByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterUsersByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterUsersByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterUsersByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterUsersByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterUsersByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterUsersByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; E._filterUsersByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterUsersByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; E._filterUsersByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._filterUsers_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.userListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; E._sortUsers_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; E._startListMultiselect_closure9.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; E._addToListMultiselect_closure9.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._removeFromListMultiselect_closure9.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; E._clearListMultiselect_closure9.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; E._archiveUserSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 414 }; E._deleteUserSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 414 }; E._restoreUserSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.users), t2 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_user_state$_$this(); t5 = t4._user_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._user_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 414 }; E._removeUserSuccess_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.userId; J.remove$1$ax(t1.get$_safeMap(), t2); J.remove$1$ax(b.get$list(b).get$_safeList(), t2); return b; }, $signature: 108 }; E._addUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 108 }; E._updateUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 108 }; E._updateAuthUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 108 }; E._connectOAuthUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 108 }; E._connectGmailUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 108 }; E._setLoadedUser_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.user; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 108 }; E._setLoadedUsers_closure.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.users, new E._setLoadedUsers__closure(), new E._setLoadedUsers__closure0(), type$.legacy_String, type$.legacy_UserEntity)); return b; }, $signature: 108 }; E._setLoadedUsers__closure.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; E._setLoadedUsers__closure0.prototype = { call$1: function(item) { return item; }, $signature: 596 }; E._setLoadedUsers_closure0.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 108 }; E._setLoadedCompany_closure5.prototype = { call$1: function(b) { b.get$map(b).addAll$1(0, P.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.users, new E._setLoadedCompany__closure5(), new E._setLoadedCompany__closure6(), type$.legacy_String, type$.legacy_UserEntity)); return b; }, $signature: 108 }; E._setLoadedCompany__closure5.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; E._setLoadedCompany__closure6.prototype = { call$1: function(item) { return item; }, $signature: 596 }; E._setLoadedCompany_closure6.prototype = { call$1: function(b) { var t1 = b.get$list(b), t2 = this.state.map; t1.replace$1(0, t2.get$keys(t2)); return b; }, $signature: 108 }; L.memoizedFilteredUserList_closure.prototype = { call$5: function(selectionState, userMap, userList, userListState, authUserId) { return L.filteredUsersSelector(selectionState, userMap, userList, userListState, authUserId); }, $signature: 1907 }; L.filteredUsersSelector_closure.prototype = { call$1: function(userId) { var t2, _this = this, user = J.$index$asx(_this.userMap._map$_map, userId), t1 = user.id; if (t1 === _this.selectionState.selectedId) return true; t2 = _this.userListState; if (!user.matchesStates$1(t2.stateFilters)) return false; else if (t1 === _this.authUserId) return false; return user.matchesFilter$1(t2.filter); }, $signature: 16 }; L.filteredUsersSelector_closure0.prototype = { call$2: function(userAId, userBId) { var sortField, sortAscending, userA0, response, t1 = this.userMap._map$_map, t2 = J.getInterceptor$asx(t1), userA = t2.$index(t1, userAId), userB = t2.$index(t1, userBId); t1 = this.userListState; sortField = t1.sortField; sortAscending = t1.sortAscending; userA.toString; if (sortAscending) userA0 = userA; else userA0 = userB; if (!sortAscending) userB = userA; switch (sortField) { case "last_name": response = C.JSString_methods.compareTo$1(userA0.lastName.toLowerCase(), userB.lastName.toLowerCase()); break; case "first_name": response = C.JSString_methods.compareTo$1(userA0.firstName.toLowerCase(), userB.firstName.toLowerCase()); break; case "email": response = C.JSString_methods.compareTo$1(userA0.email, userB.email); break; default: P.print("## ERROR: sort by user." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 18 }; L.memoizedUserList_closure.prototype = { call$1: function(userMap) { return L.userList(userMap); }, $signature: 595 }; L.userList_closure.prototype = { call$1: function(userId) { var t1 = J.$index$asx(this.userMap._map$_map, userId); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; L.userList_closure0.prototype = { call$2: function(idA, idB) { var t1 = this.userMap._map$_map, t2 = J.getInterceptor$asx(t1); return C.JSString_methods.compareTo$1(t2.$index(t1, idA).get$fullName().toLowerCase(), t2.$index(t1, idB).get$fullName().toLowerCase()); }, $signature: 18 }; L.memoizedGmailUserList_closure.prototype = { call$1: function(userMap) { return L.gmailUserList(userMap); }, $signature: 595 }; L.gmailUserList_closure.prototype = { call$1: function(userId) { var t1 = J.$index$asx(this.userMap._map$_map, userId); if (t1 == null) t1 = C.Type_UserEntity_IVQ; type$.legacy_UserEntity._as(t1); return !t1.get$isArchived() && !t1.isDeleted && t1.oauthProvider === "google" && t1.oauthUserToken.length !== 0; }, $signature: 16 }; Q.UserState.prototype = { $get$1: function(_, userId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, userId)) return t2.$index(t1, userId); else return B.UserEntity_UserEntity(userId, null, null); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q.UserUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Q._$UserStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_4y3), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Q.UserStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_UserEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_user_state$_$this(); t6 = t5._user_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._user_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_4y3)); break; case "list": t5 = result.get$_user_state$_$this(); t6 = t5._user_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._user_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_Y3r; }, get$wireName: function() { return "UserState"; } }; Q._$UserUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_oyU)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, key, value, t3, t4, result = new Q.UserUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_UserEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t3 = result.get$_user_state$_$this(); t4 = t3._user_state$_editing; if (t4 == null) { t4 = new B.UserEntityBuilder(); t4.get$_user_model$_$this()._isTwoFactorEnabled = false; t4.get$_user_model$_$this()._hasPassword = false; t4.get$_user_model$_$this()._password = ""; t4.get$_user_model$_$this()._lastEmailAddress = ""; t4.get$_user_model$_$this()._oauthUserToken = ""; t3._user_state$_editing = t4; t3 = t4; } else t3 = t4; t4 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_oyU)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._user_model$_$v = t4; break; case "listUIState": t3 = result.get$_user_state$_$this(); t4 = t3._user_state$_listUIState; t3 = t4 == null ? t3._user_state$_listUIState = new Q.ListUIStateBuilder() : t4; t4 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t3._list_ui_state$_$v = t4; break; case "selectedId": t3 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_user_state$_$this()._user_state$_selectedId = t3; break; case "forceSelected": t3 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_user_state$_$this()._user_state$_forceSelected = t3; break; case "tabIndex": t3 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_user_state$_$this()._user_state$_tabIndex = t3; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_9rO; }, get$wireName: function() { return "UserUIState"; } }; Q._$UserState.prototype = { rebuild$1: function(updates) { var t1 = new Q.UserStateBuilder(); t1._user_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Q.UserState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._user_state$__hashCode; return t1 == null ? _this._user_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("UserState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Q.UserStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_map; return t2 == null ? t1._user_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_UserEntity) : t2; }, get$list: function(_) { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_list; return t2 == null ? t1._user_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_user_state$_$this: function() { var t1, t2, _this = this, $$v = _this._user_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._user_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._user_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._user_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._user_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Q._$UserState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("UserState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Q._$UserUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof Q.UserUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._user_state$__hashCode; return t1 == null ? _this._user_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("UserUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Q.UserUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_editing; if (t2 == null) { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t1._user_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_user_state$_$this(), t2 = t1._user_state$_listUIState; return t2 == null ? t1._user_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_user_state$_$this: function() { var t1, t2, _this = this, $$v = _this._user_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new B.UserEntityBuilder(); B.UserEntity__initializeBuilder(t2); t2._user_model$_$v = t1; t1 = t2; } _this._user_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._user_state$_listUIState = t2; _this._user_state$_selectedId = $$v.selectedId; _this._user_state$_forceSelected = $$v.forceSelected; _this._user_state$_tabIndex = $$v.tabIndex; _this._user_state$_saveCompleter = $$v.saveCompleter; _this._user_state$_cancelCompleter = $$v.cancelCompleter; _this._user_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s11_ = "UserUIState", _$result = null; try { _$result0 = _this._user_state$_$v; if (_$result0 == null) { t1 = _this._user_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_user_state$_$this()._user_state$_selectedId; t4 = _this.get$_user_state$_$this()._user_state$_forceSelected; t5 = _this.get$_user_state$_$this()._user_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s11_, "tabIndex")); t6 = _this.get$_user_state$_$this()._user_state$_saveCompleter; _$result0 = Q._$UserUIState$_(_this.get$_user_state$_$this()._user_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._user_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s11_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._user_state$_$v = t1; return _$result; } }; Q._UserUIState_Object_EntityUIState.prototype = {}; L.ViewVendorList.prototype = {$isStopLoading: 1}; L.ViewVendor.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; L.EditVendor.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$vendor: function(receiver) { return this.vendor; }, get$contact: function() { return null; } }; L.UpdateVendor.prototype = {$isPersistUI: 1, get$vendor: function(receiver) { return this.vendor; } }; L.LoadVendor.prototype = {}; L.LoadVendors.prototype = {}; L.LoadVendorRequest.prototype = {$isStartLoading: 1}; L.LoadVendorFailure.prototype = { toString$0: function(_) { return "LoadVendorFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; L.LoadVendorSuccess.prototype = { toString$0: function(_) { return "LoadVendorSuccess{vendor: " + H.S(this.vendor) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$vendor: function(receiver) { return this.vendor; } }; L.LoadVendorsRequest.prototype = {$isStartLoading: 1}; L.LoadVendorsFailure.prototype = { toString$0: function(_) { return "LoadVendorsFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; L.LoadVendorsSuccess.prototype = { toString$0: function(_) { return "LoadVendorsSuccess{vendors: " + H.S(this.vendors) + "}"; }, $isStopLoading: 1 }; L.SaveVendorRequest.prototype = {$isStartSaving: 1, get$vendor: function(receiver) { return this.vendor; } }; L.SaveVendorSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$vendor: function(receiver) { return this.vendor; } }; L.AddVendorSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$vendor: function(receiver) { return this.vendor; } }; L.SaveVendorFailure.prototype = {$isStopSaving: 1}; L.ArchiveVendorRequest.prototype = {$isStartSaving: 1}; L.ArchiveVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; L.ArchiveVendorFailure.prototype = {$isStopSaving: 1}; L.DeleteVendorRequest.prototype = {$isStartSaving: 1}; L.DeleteVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; L.DeleteVendorFailure.prototype = {$isStopSaving: 1}; L.RestoreVendorRequest.prototype = {$isStartSaving: 1}; L.RestoreVendorSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; L.RestoreVendorFailure.prototype = {$isStopSaving: 1}; L.EditVendorContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; L.AddVendorContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; L.UpdateVendorContact.prototype = {$isPersistUI: 1, get$contact: function() { return this.contact; } }; L.DeleteVendorContact.prototype = {$isPersistUI: 1}; L.FilterVendors.prototype = {$isPersistUI: 1}; L.SortVendors.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; L.FilterVendorsByState.prototype = {$isPersistUI: 1}; L.FilterVendorsByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; L.FilterVendorsByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; L.FilterVendorsByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; L.FilterVendorsByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; L.handleVendorAction_closure.prototype = { call$1: function(vendor) { return vendor.get$id(vendor); }, $signature: 41 }; L.StartVendorMultiselect.prototype = {}; L.AddToVendorMultiselect.prototype = {}; L.RemoveFromVendorMultiselect.prototype = {}; L.ClearVendorMultiselect.prototype = {}; L.SaveVendorDocumentRequest.prototype = {$isStartSaving: 1, get$vendor: function(receiver) { return this.vendor; } }; L.SaveVendorDocumentFailure.prototype = {$isStopSaving: 1}; L.UpdateVendorTab.prototype = {$isPersistUI: 1}; F._editVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s12_ = "/vendor/edit"; next.call$1(type$.legacy_EditVendor._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s12_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._viewVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewVendor_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewVendor_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewVendor._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/vendor/view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/vendor/view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; F._viewVendorList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3; next.call$1(type$.legacy_ViewVendorList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/vendor")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2("/vendor", new F._viewVendorList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._viewVendorList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; F._archiveVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_ArchiveVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = P.List_List$of(new H.MappedListIterable(t1, new F._archiveVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new F._archiveVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new F._archiveVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._archiveVendor__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).vendorState.map._map$_map, id); }, $signature: 331 }; F._archiveVendor__closure0.prototype = { call$1: function(vendors) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ArchiveVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 332 }; F._archiveVendor__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ArchiveVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; F._deleteVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_DeleteVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = P.List_List$of(new H.MappedListIterable(t1, new F._deleteVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new F._deleteVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new F._deleteVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._deleteVendor__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).vendorState.map._map$_map, id); }, $signature: 331 }; F._deleteVendor__closure0.prototype = { call$1: function(vendors) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.DeleteVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 332 }; F._deleteVendor__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.DeleteVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; F._restoreVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevVendors; type$.legacy_RestoreVendorRequest._as(dynamicAction); t1 = dynamicAction.vendorIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,VendorEntity*>"); prevVendors = P.List_List$of(new H.MappedListIterable(t1, new F._restoreVendor__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new F._restoreVendor__closure0(store, dynamicAction), type$.Null).catchError$1(new F._restoreVendor__closure1(store, prevVendors, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._restoreVendor__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).vendorState.map._map$_map, id); }, $signature: 331 }; F._restoreVendor__closure0.prototype = { call$1: function(vendors) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.RestoreVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, $signature: 332 }; F._restoreVendor__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.RestoreVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; F._saveVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveVendorRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.vendor).then$1$1(0, new F._saveVendor__closure(dynamicAction, store), type$.Null).catchError$1(new F._saveVendor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._saveVendor__closure.prototype = { call$1: function(vendor) { var t1 = this.action, t2 = this.store; if (t1.vendor.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new L.AddVendorSuccess(vendor)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new L.SaveVendorSuccess(vendor)); t1.completer.complete$1(0, vendor); t1 = t2.get$_store$_state().uiState.vendorUIState.saveCompleter; if (t1 != null) t1.complete$1(0, vendor); }, $signature: 227 }; F._saveVendor__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveVendorFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; F._loadVendor_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadVendor._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.LoadVendorRequest()); this.repository.loadItem$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.vendorId).then$1$1(0, new F._loadVendor__closure(store, dynamicAction), type$.Null).catchError$1(new F._loadVendor__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._loadVendor__closure.prototype = { call$1: function(vendor) { var t2, t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.LoadVendorSuccess(vendor)); t2 = this.action.completer; if (t2 != null) t2.complete$1(0, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.LoadExpenses()); }, $signature: 227 }; F._loadVendor__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.LoadVendorFailure(error)); t1 = this.action.completer; if (t1 != null) t1.completeError$1(error); }, $signature: 3 }; F._loadVendors_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_LoadVendors._as(dynamicAction); J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.LoadVendorsRequest()); this.repository.loadList$1(J.get$credentials$z(store.get$_store$_state())).then$1$1(0, new F._loadVendors__closure(store, dynamicAction), type$.Null).catchError$1(new F._loadVendors__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._loadVendors__closure.prototype = { call$1: function(data) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.LoadVendorsSuccess(data)); this.action.toString; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.LoadExpenses()); }, $signature: 1912 }; F._loadVendors__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.LoadVendorsFailure(error)); this.action.toString; }, $signature: 3 }; F._saveDocument_closure7.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2; type$.legacy_SaveVendorDocumentRequest._as(dynamicAction); t1 = store.get$_store$_state(); if (Y.cleanApiUrl(t1.authState.url) === "https://invoicing.co") { t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.account.plan === "enterprise"; } else t1 = true; if (t1) this.repository.uploadDocument$3(J.get$credentials$z(store.get$_store$_state()), dynamicAction.vendor, dynamicAction.multipartFile).then$1$1(0, new F._saveDocument__closure15(store, dynamicAction), type$.Null).catchError$1(new F._saveDocument__closure16(store, dynamicAction)); else { J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.SaveVendorDocumentFailure()); dynamicAction.completer.completeError$1(string$.Upload); } next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; F._saveDocument__closure15.prototype = { call$1: function(vendor) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveVendorSuccess(vendor)); this.action.completer.complete$1(0, null); }, $signature: 227 }; F._saveDocument__closure16.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveVendorDocumentFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; K.vendorUIReducer_closure.prototype = { call$1: function(b) { var _s5_ = "other", t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$vendorListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer3().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._vendor_model$_$v = t4; t1 = b.get$editingContact(); t4 = $.$get$editingVendorContactReducer().call$2(t2.editingContact, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t1._vendor_model$_$v = t4; t1 = $.$get$selectedIdReducer3().call$2(t2.selectedId, t3); b.get$_vendor_state$_$this()._vendor_state$_selectedId = t1; t1 = $.$get$forceSelectedReducer3().call$2(t2.forceSelected, t3); b.get$_vendor_state$_$this()._vendor_state$_forceSelected = t1; t1 = $.$get$tabIndexReducer3().call$2(t2.tabIndex, t3); b.get$_vendor_state$_$this()._vendor_state$_tabIndex = t1; t1 = $.$get$saveCompleterReducer0().call$2(t2.saveCompleter, t3); b.get$_vendor_state$_$this()._vendor_state$_saveCompleter = t1; t3 = $.$get$cancelCompleterReducer0().call$2(t2.cancelCompleter, t3); b.get$_vendor_state$_$this()._vendor_state$_cancelCompleter = t3; return b; }, $signature: 1913 }; K.forceSelectedReducer_closure31.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1914 }; K.forceSelectedReducer_closure32.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1915 }; K.forceSelectedReducer_closure33.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1916 }; K.forceSelectedReducer_closure34.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1917 }; K.forceSelectedReducer_closure35.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1918 }; K.forceSelectedReducer_closure36.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1919 }; K.forceSelectedReducer_closure37.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1920 }; K.forceSelectedReducer_closure38.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1921 }; K.tabIndexReducer_closure7.prototype = { call$2: function(completer, action) { return action.tabIndex; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1922 }; K.tabIndexReducer_closure8.prototype = { call$2: function(completer, action) { return 0; }, "call*": "call$2", $requiredArgCount: 2, $signature: 91 }; K.saveCompleterReducer_closure0.prototype = { call$2: function(completer, action) { return action.completer; }, "call*": "call$2", $requiredArgCount: 2, $signature: 594 }; K.cancelCompleterReducer_closure0.prototype = { call$2: function(completer, action) { return action.cancelCompleter; }, "call*": "call$2", $requiredArgCount: 2, $signature: 594 }; K.selectedIdReducer_closure64.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1924 }; K.selectedIdReducer_closure65.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1925 }; K.selectedIdReducer_closure66.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_vendor ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; K.selectedIdReducer_closure67.prototype = { call$2: function(selectedId, action) { return action.vendorId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1926 }; K.selectedIdReducer_closure68.prototype = { call$2: function(selectedId, action) { return action.vendor.id; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1927 }; K.selectedIdReducer_closure69.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; K.selectedIdReducer_closure70.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; K.selectedIdReducer_closure71.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1928 }; K.selectedIdReducer_closure72.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1929 }; K.selectedIdReducer_closure73.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1930 }; K.selectedIdReducer_closure74.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1931 }; K.selectedIdReducer_closure75.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1932 }; K.selectedIdReducer_closure76.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1933 }; K.selectedIdReducer_closure77.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1934 }; K.selectedIdReducer_closure78.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_vendor ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; K.editingReducer_closure22.prototype = { call$2: function(vendors, action) { return J.$index$asx(action.vendors, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1935 }; K.editingReducer_closure23.prototype = { call$2: function(vendors, action) { return J.$index$asx(action.vendors, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1936 }; K.editingReducer_closure24.prototype = { call$2: function(vendors, action) { return J.$index$asx(action.vendors, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1937 }; K.editingReducer_closure25.prototype = { call$2: function(vendor, action) { return action.vendor.rebuild$1(new K.editingReducer__closure9()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1938 }; K.editingReducer__closure9.prototype = { call$1: function(b) { b.get$_vendor_model$_$this()._vendor_model$_isChanged = true; return b; }, $signature: 120 }; K._addContact_closure.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 120 }; K._removeContact_closure.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action.index; J.removeAt$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 120 }; K._updateContact_closure.prototype = { call$1: function(b) { var t1 = b.get$contacts(), t2 = this.action, t3 = t2.index; t2 = t2.contact; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t3, t2); return b; }, $signature: 120 }; K._viewVendorList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._filterVendorsByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterVendorsByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterVendorsByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterVendorsByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterVendorsByCustom3_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom3Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterVendorsByCustom3_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom3Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterVendorsByCustom4_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom4Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; K._filterVendorsByCustom4_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom4Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterVendorsByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; K._filterVendorsByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._filterVendors_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.vendorListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; K._sortVendors_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; K._startListMultiselect_closure3.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; K._addToListMultiselect_closure3.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._removeFromListMultiselect_closure3.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; K._clearListMultiselect_closure3.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; K._archiveVendorSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 335 }; K._deleteVendorSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 335 }; K._restoreVendorSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.vendors), t2 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_vendor_state$_$this(); t5 = t4._vendor_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._vendor_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 335 }; K._addVendor_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.vendor, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 325 }; K._updateVendor_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.vendor; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 325 }; K._setLoadedVendor_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.vendor; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 325 }; G.memoizedDropdownVendorList_closure.prototype = { call$4: function(vendorMap, vendorList, userMap, staticState) { return G.dropdownVendorsSelector(vendorMap, vendorList, userMap, staticState); }, $signature: 1942 }; G.dropdownVendorsSelector_closure.prototype = { call$1: function(vendorId) { var vendor = J.$index$asx(this.vendorMap._map$_map, vendorId); return !vendor.get$isArchived() && !vendor.isDeleted; }, $signature: 16 }; G.dropdownVendorsSelector_closure0.prototype = { call$2: function(vendorAId, vendorBId) { var t1 = this.vendorMap._map$_map, t2 = J.getInterceptor$asx(t1); return t2.$index(t1, vendorAId).compareTo$5(0, t2.$index(t1, vendorBId), "name", true, this.userMap, this.staticState); }, $signature: 18 }; G.memoizedFilteredVendorList_closure.prototype = { call$6: function(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState) { return G.filteredVendorsSelector(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState); }, $signature: 1943 }; G.filteredVendorsSelector_closure.prototype = { call$1: function(vendorId) { var t1, t2, t3, vendor = J.$index$asx(this.vendorMap._map$_map, vendorId); if (vendor.id === this.selectionState.selectedId) return true; t1 = this.vendorListState; if (!vendor.matchesStates$1(t1.stateFilters)) return false; t2 = t1.custom1Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, vendor.customValue1)) return false; else { t2 = t1.custom2Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, vendor.customValue2)) return false; else { t2 = t1.custom3Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, vendor.customValue3)) return false; else { t2 = t1.custom4Filters._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isNotEmpty(t2) && !t3.contains$1(t2, vendor.customValue4)) return false; } } } return vendor.matchesFilter$1(t1.filter); }, $signature: 16 }; G.filteredVendorsSelector_closure0.prototype = { call$2: function(vendorAId, vendorBId) { var _this = this, t1 = _this.vendorMap._map$_map, t2 = J.getInterceptor$asx(t1), t3 = _this.vendorListState; return t2.$index(t1, vendorAId).compareTo$5(0, t2.$index(t1, vendorBId), t3.sortField, t3.sortAscending, _this.userMap, _this.staticState); }, $signature: 18 }; G.memoizedVendorStatsForUser_closure.prototype = { call$2: function(userId, vendorMap) { return G.vendorStatsForUser(userId, vendorMap); }, $signature: 1944 }; G.vendorStatsForUser_closure.prototype = { call$2: function(vendorId, vendor) { if (vendor.assignedUserId == this.userId) if (!vendor.get$isArchived() && !vendor.isDeleted) ++this._box_0.countActive; else if (vendor.get$isArchived()) ++this._box_0.countArchived; }, $signature: 1945 }; G.memoizedCalculateVendorBalance_closure.prototype = { call$4: function(vendorId, currencyId, expenseMap, expenseList) { return G.calculateVendorBalance(vendorId, currencyId, expenseMap, expenseList); }, $signature: 1946 }; G.calculateVendorBalance_closure.prototype = { call$1: function(expenseId) { var t1, _this = this, _null = null, expense = J.$index$asx(_this.expenseMap._map$_map, expenseId); if (expense == null) expense = M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); if (expense.vendorId == _this.vendorId) if (!expense.get$isArchived() && !expense.isDeleted) { t1 = _this.currencyId; t1 = t1 == null || expense.currencyId === t1; } else t1 = false; else t1 = false; if (t1) { t1 = _this._box_0; t1.total = t1.total + expense.get$grossAmount(); } }, $signature: 7 }; Y.VendorState.prototype = { $get$1: function(_, vendorId) { var t1 = this.map._map$_map, t2 = J.getInterceptor$x(t1); if (t2.containsKey$1(t1, vendorId)) return t2.$index(t1, vendorId); else return B.VendorEntity_VendorEntity(vendorId, null, null); }, loadVendors$1: function(clients) { return this.rebuild$1(new Y.VendorState_loadVendors_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new Y.VendorState_loadVendors_closure0(), new Y.VendorState_loadVendors_closure1(), type$.legacy_String, type$.legacy_VendorEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y.VendorState_loadVendors_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; Y.VendorState_loadVendors_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1947 }; Y.VendorState_loadVendors_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 325 }; Y.VendorUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; Y._$VendorStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_sav), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new Y.VendorStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_VendorEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_vendor_state$_$this(); t6 = t5._vendor_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._vendor_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_sav)); break; case "list": t5 = result.get$_vendor_state$_$this(); t6 = t5._vendor_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._vendor_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_KLt; }, get$wireName: function() { return "VendorState"; } }; Y._$VendorUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_efs)); } value = object.editingContact; if (value != null) { result.push("editingContact"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_HVD)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, key, value, t4, t5, _s5_ = "other", result = new Y.VendorUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_VendorContactEntity, t3 = type$.legacy_VendorEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t4 = result.get$_vendor_state$_$this(); t5 = t4._vendor_state$_editing; t4 = t5 == null ? t4._vendor_state$_editing = new B.VendorEntityBuilder() : t5; t5 = t3._as(serializers.deserialize$2$specifiedType(value, C.FullType_efs)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._vendor_model$_$v = t5; break; case "editingContact": t4 = result.get$_vendor_state$_$this(); t5 = t4._editingContact; t4 = t5 == null ? t4._editingContact = new B.VendorContactEntityBuilder() : t5; t5 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_HVD)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._vendor_model$_$v = t5; break; case "listUIState": t4 = result.get$_vendor_state$_$this(); t5 = t4._vendor_state$_listUIState; t4 = t5 == null ? t4._vendor_state$_listUIState = new Q.ListUIStateBuilder() : t5; t5 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t5 == null) H.throwExpression(P.ArgumentError$notNull(_s5_)); t4._list_ui_state$_$v = t5; break; case "selectedId": t4 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_vendor_state$_$this()._vendor_state$_selectedId = t4; break; case "forceSelected": t4 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_vendor_state$_$this()._vendor_state$_forceSelected = t4; break; case "tabIndex": t4 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_vendor_state$_$this()._vendor_state$_tabIndex = t4; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_ifx; }, get$wireName: function() { return "VendorUIState"; } }; Y._$VendorState.prototype = { rebuild$1: function(updates) { var t1 = new Y.VendorStateBuilder(); t1._vendor_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof Y.VendorState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._vendor_state$__hashCode; return t1 == null ? _this._vendor_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; Y.VendorStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_map; return t2 == null ? t1._vendor_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_VendorEntity) : t2; }, get$list: function(_) { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_list; return t2 == null ? t1._vendor_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_vendor_state$_$this: function() { var t1, t2, _this = this, $$v = _this._vendor_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._vendor_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._vendor_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._vendor_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._vendor_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = Y._$VendorState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("VendorState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._vendor_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; Y._$VendorUIState.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (other === _this) return true; return other instanceof Y.VendorUIState && J.$eq$(_this.editing, other.editing) && J.$eq$(_this.editingContact, other.editingContact) && J.$eq$(_this.listUIState, other.listUIState) && _this.selectedId == other.selectedId && _this.forceSelected == other.forceSelected && _this.tabIndex === other.tabIndex && _this.saveCompleter == other.saveCompleter && _this.cancelCompleter == other.cancelCompleter; }, get$hashCode: function(_) { var _this = this, t1 = _this._vendor_state$__hashCode; return t1 == null ? _this._vendor_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.editingContact)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), J.get$hashCode$(_this.saveCompleter)), J.get$hashCode$(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("VendorUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "editingContact", _this.editingContact); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; Y.VendorUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_editing; return t2 == null ? t1._vendor_state$_editing = new B.VendorEntityBuilder() : t2; }, get$editingContact: function() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._editingContact; return t2 == null ? t1._editingContact = new B.VendorContactEntityBuilder() : t2; }, get$listUIState: function() { var t1 = this.get$_vendor_state$_$this(), t2 = t1._vendor_state$_listUIState; return t2 == null ? t1._vendor_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_vendor_state$_$this: function() { var t1, t2, _this = this, $$v = _this._vendor_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new B.VendorEntityBuilder(); t2._vendor_model$_$v = t1; t1 = t2; } _this._vendor_state$_editing = t1; t1 = $$v.editingContact; if (t1 == null) t1 = null; else { t2 = new B.VendorContactEntityBuilder(); t2._vendor_model$_$v = t1; t1 = t2; } _this._editingContact = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._vendor_state$_listUIState = t2; _this._vendor_state$_selectedId = $$v.selectedId; _this._vendor_state$_forceSelected = $$v.forceSelected; _this._vendor_state$_tabIndex = $$v.tabIndex; _this._vendor_state$_saveCompleter = $$v.saveCompleter; _this._vendor_state$_cancelCompleter = $$v.cancelCompleter; _this._vendor_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, t7, exception, _this = this, _s13_ = "VendorUIState", _$result = null; try { _$result0 = _this._vendor_state$_$v; if (_$result0 == null) { t1 = _this._vendor_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this._editingContact; t2 = t2 == null ? null : t2.build$0(0); t3 = _this.get$listUIState().build$0(0); t4 = _this.get$_vendor_state$_$this()._vendor_state$_selectedId; t5 = _this.get$_vendor_state$_$this()._vendor_state$_forceSelected; t6 = _this.get$_vendor_state$_$this()._vendor_state$_tabIndex; if (t6 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s13_, "tabIndex")); t7 = _this.get$_vendor_state$_$this()._vendor_state$_saveCompleter; _$result0 = Y._$VendorUIState$_(_this.get$_vendor_state$_$this()._vendor_state$_cancelCompleter, t1, t2, t5, t3, t7, t4, t6); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._vendor_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "editingContact"; t1 = _this._editingContact; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s13_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._vendor_state$_$v = t1; return _$result; } }; Y._VendorUIState_Object_EntityUIState.prototype = {}; S.ViewWebhookList.prototype = {$isStopLoading: 1}; S.ViewWebhook.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$webhookId: function() { return this.webhookId; } }; S.EditWebhook.prototype = {$isPersistUI: 1, $isPersistPrefs: 1, get$webhook: function() { return this.webhook; } }; S.UpdateWebhook.prototype = {$isPersistUI: 1, get$webhook: function() { return this.webhook; } }; S.LoadWebhookRequest.prototype = {$isStartLoading: 1}; S.LoadWebhookFailure.prototype = { toString$0: function(_) { return "LoadWebhookFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; S.LoadWebhookSuccess.prototype = { toString$0: function(_) { return "LoadWebhookSuccess{webhook: " + H.S(this.webhook) + "}"; }, $isPersistData: 1, $isStopLoading: 1, get$webhook: function() { return this.webhook; } }; S.LoadWebhooksRequest.prototype = {$isStartLoading: 1}; S.LoadWebhooksFailure.prototype = { toString$0: function(_) { return "LoadWebhooksFailure{error: " + H.S(this.error) + "}"; }, $isStopLoading: 1 }; S.LoadWebhooksSuccess.prototype = { toString$0: function(_) { return "LoadWebhooksSuccess{webhooks: " + H.S(this.webhooks) + "}"; }, $isStopLoading: 1 }; S.SaveWebhookRequest.prototype = {$isStartSaving: 1, get$webhook: function() { return this.webhook; } }; S.SaveWebhookSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$webhook: function() { return this.webhook; } }; S.AddWebhookSuccess.prototype = {$isPersistUI: 1, $isPersistData: 1, $isStopSaving: 1, get$webhook: function() { return this.webhook; } }; S.SaveWebhookFailure.prototype = {$isStopSaving: 1}; S.ArchiveWebhooksRequest.prototype = {$isStartSaving: 1}; S.ArchiveWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; S.ArchiveWebhooksFailure.prototype = {$isStopSaving: 1}; S.DeleteWebhooksRequest.prototype = {$isStartSaving: 1}; S.DeleteWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; S.DeleteWebhooksFailure.prototype = {$isStopSaving: 1}; S.RestoreWebhooksRequest.prototype = {$isStartSaving: 1}; S.RestoreWebhooksSuccess.prototype = {$isPersistData: 1, $isStopSaving: 1}; S.RestoreWebhooksFailure.prototype = {$isStopSaving: 1}; S.FilterWebhooks.prototype = {$isPersistUI: 1}; S.SortWebhooks.prototype = {$isPersistUI: 1, $isPersistPrefs: 1}; S.FilterWebhooksByState.prototype = {$isPersistUI: 1}; S.FilterWebhooksByCustom1.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; S.FilterWebhooksByCustom2.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; S.FilterWebhooksByCustom3.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; S.FilterWebhooksByCustom4.prototype = {$isPersistUI: 1, get$value: function(receiver) { return this.value; } }; S.handleWebhookAction_closure.prototype = { call$1: function(webhook) { return webhook.get$id(webhook); }, $signature: 41 }; S.StartWebhookMultiselect.prototype = {}; S.AddToWebhookMultiselect.prototype = {}; S.RemoveFromWebhookMultiselect.prototype = {}; S.ClearWebhookMultiselect.prototype = {}; T._editWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { var _s22_ = "/settings/webhook_edit"; next.call$1(type$.legacy_EditWebhook._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s22_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1(_s22_, type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { return this.$call$body$_viewWebhook_closure(store, dynamicAction, next); }, "call*": "call$3", $requiredArgCount: 3, $call$body$_viewWebhook_closure: function(store, dynamicAction, next) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start next.call$1(type$.legacy_ViewWebhook._as(dynamicAction)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/webhook_view")); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamed$1$1("/settings/webhook_view", type$.legacy_Object); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3, $async$completer); }, $signature: 25 }; T._viewWebhookList_closure0.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, t3, _s17_ = "/settings/webhook"; next.call$1(type$.legacy_ViewWebhookList._as(dynamicAction)); t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t3 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t3).get$isStale() || t1.staticState.get$isStale()) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s17_)); if (store.get$_store$_state().prefState.appLayout === C.AppLayout_mobile) $.$get$navigatorKey().get$currentState().pushNamedAndRemoveUntil$1$2(_s17_, new T._viewWebhookList__closure(), type$.legacy_Object); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._viewWebhookList__closure.prototype = { call$1: function(route) { return false; }, $signature: 38 }; T._archiveWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_ArchiveWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = P.List_List$of(new H.MappedListIterable(t1, new T._archiveWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_archive).then$1$1(0, new T._archiveWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new T._archiveWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._archiveWebhook__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).webhookState.map._map$_map, id); }, $signature: 337 }; T._archiveWebhook__closure0.prototype = { call$1: function(webhooks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.ArchiveWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 338 }; T._archiveWebhook__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.ArchiveWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._deleteWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_DeleteWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = P.List_List$of(new H.MappedListIterable(t1, new T._deleteWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_delete).then$1$1(0, new T._deleteWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new T._deleteWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._deleteWebhook__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).webhookState.map._map$_map, id); }, $signature: 337 }; T._deleteWebhook__closure0.prototype = { call$1: function(webhooks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.DeleteWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 338 }; T._deleteWebhook__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.DeleteWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._restoreWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { var t1, t2, prevWebhooks; type$.legacy_RestoreWebhooksRequest._as(dynamicAction); t1 = dynamicAction.webhookIds; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,WebhookEntity*>"); prevWebhooks = P.List_List$of(new H.MappedListIterable(t1, new T._restoreWebhook__closure(store), t2), true, t2._eval$1("ListIterable.E")); this.repository.bulkAction$3(J.get$credentials$z(store.get$_store$_state()), t1, C.EntityAction_restore).then$1$1(0, new T._restoreWebhook__closure0(store, dynamicAction), type$.Null).catchError$1(new T._restoreWebhook__closure1(store, prevWebhooks, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._restoreWebhook__closure.prototype = { call$1: function(id) { var t1 = this.store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t2._list, t1).webhookState.map._map$_map, id); }, $signature: 337 }; T._restoreWebhook__closure0.prototype = { call$1: function(webhooks) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.RestoreWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, $signature: 338 }; T._restoreWebhook__closure1.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.RestoreWebhooksFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._saveWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { type$.legacy_SaveWebhookRequest._as(dynamicAction); this.repository.saveData$2(J.get$credentials$z(store.get$_store$_state()), dynamicAction.webhook).then$1$1(0, new T._saveWebhook__closure(dynamicAction, store), type$.Null).catchError$1(new T._saveWebhook__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._saveWebhook__closure.prototype = { call$1: function(webhook) { var t1 = this.action, t2 = this.store; if (t1.webhook.get$isNew()) J.$index$asx(t2.get$_dispatchers(), 0).call$1(new S.AddWebhookSuccess(webhook)); else J.$index$asx(t2.get$_dispatchers(), 0).call$1(new S.SaveWebhookSuccess(webhook)); t1.completer.complete$1(0, webhook); }, $signature: 322 }; T._saveWebhook__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.SaveWebhookFailure()); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadWebhook_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadWebhook._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.LoadWebhookRequest()); this.repository.loadItem$2(state.get$credentials(state), dynamicAction.webhookId).then$1$1(0, new T._loadWebhook__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadWebhook__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadWebhook__closure.prototype = { call$1: function(webhook) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.LoadWebhookSuccess(webhook)); this.action.completer.complete$1(0, null); }, $signature: 322 }; T._loadWebhook__closure0.prototype = { call$1: function(error) { P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.LoadWebhookFailure(error)); this.action.completer.completeError$1(error); }, $signature: 3 }; T._loadWebhooks_closure.prototype = { call$3: function(store, dynamicAction, next) { var state; type$.legacy_LoadWebhooks._as(dynamicAction); state = store.get$_store$_state(); J.$index$asx(store.get$_dispatchers(), 0).call$1(new S.LoadWebhooksRequest()); this.repository.loadList$1(state.get$credentials(state)).then$1$1(0, new T._loadWebhooks__closure(store, dynamicAction), type$.Null).catchError$1(new T._loadWebhooks__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", $requiredArgCount: 3, $signature: 4 }; T._loadWebhooks__closure.prototype = { call$1: function(data) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.LoadWebhooksSuccess(data)); t1 = this.action; t1.get$completer(); t1.get$completer().complete$1(0, null); }, $signature: 1951 }; T._loadWebhooks__closure0.prototype = { call$1: function(error) { var t1; P.print(error); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.LoadWebhooksFailure(error)); t1 = this.action; t1.get$completer(); t1.get$completer().completeError$1(error); }, $signature: 3 }; L.webhookUIReducer_closure.prototype = { call$1: function(b) { var t1 = b.get$listUIState(), t2 = this.state, t3 = this.action, t4 = $.$get$webhookListReducer().call$2(t2.listUIState, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._list_ui_state$_$v = t4; t1 = b.get$editing(); t4 = $.$get$editingReducer14().call$2(t2.editing, t3); if (t4 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._webhook_model$_$v = t4; t1 = $.$get$selectedIdReducer14().call$2(t2.selectedId, t3); b.get$_webhook_state$_$this()._webhook_state$_selectedId = t1; t3 = $.$get$forceSelectedReducer14().call$2(t2.forceSelected, t3); b.get$_webhook_state$_$this()._webhook_state$_forceSelected = t3; return b; }, $signature: 1952 }; L.forceSelectedReducer_closure111.prototype = { call$2: function(completer, action) { return true; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1953 }; L.forceSelectedReducer_closure112.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1954 }; L.forceSelectedReducer_closure113.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1955 }; L.forceSelectedReducer_closure114.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1956 }; L.forceSelectedReducer_closure115.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1957 }; L.forceSelectedReducer_closure116.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1958 }; L.forceSelectedReducer_closure117.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1959 }; L.forceSelectedReducer_closure118.prototype = { call$2: function(completer, action) { return false; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1960 }; L.selectedIdReducer_closure222.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1961 }; L.selectedIdReducer_closure223.prototype = { call$2: function(completer, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1962 }; L.selectedIdReducer_closure224.prototype = { call$2: function(selectedId, action) { return action.entityType === C.EntityType_webhook ? action.entityId : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 47 }; L.selectedIdReducer_closure225.prototype = { call$2: function(selectedId, action) { return action.get$webhookId(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; L.selectedIdReducer_closure226.prototype = { call$2: function(selectedId, action) { return J.get$id$x(action.get$webhook()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 75 }; L.selectedIdReducer_closure227.prototype = { call$2: function(selectedId, action) { return action.clearSelection ? "" : selectedId; }, "call*": "call$2", $requiredArgCount: 2, $signature: 49 }; L.selectedIdReducer_closure228.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 50 }; L.selectedIdReducer_closure229.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1963 }; L.selectedIdReducer_closure230.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1964 }; L.selectedIdReducer_closure231.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1965 }; L.selectedIdReducer_closure232.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1966 }; L.selectedIdReducer_closure233.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1967 }; L.selectedIdReducer_closure234.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1968 }; L.selectedIdReducer_closure235.prototype = { call$2: function(selectedId, action) { return ""; }, "call*": "call$2", $requiredArgCount: 2, $signature: 1969 }; L.selectedIdReducer_closure236.prototype = { call$2: function(selectedId, action) { var t1; if (action.clearSelection) t1 = ""; else { t1 = action.entity; t1 = t1.get$entityType() === C.EntityType_webhook ? t1.get$id(t1) : selectedId; } return t1; }, "call*": "call$2", $requiredArgCount: 2, $signature: 72 }; L.editingReducer_closure70.prototype = { call$2: function(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1970 }; L.editingReducer_closure71.prototype = { call$2: function(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1971 }; L.editingReducer_closure72.prototype = { call$2: function(webhooks, action) { return J.$index$asx(action.webhooks, 0); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1972 }; L.editingReducer_closure73.prototype = { call$2: function(webhook, action) { return action.webhook.rebuild$1(new L.editingReducer__closure26()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 1973 }; L.editingReducer__closure26.prototype = { call$1: function(b) { b.get$_webhook_model$_$this()._webhook_model$_isChanged = true; return b; }, $signature: 183 }; L._viewWebhookList_closure.prototype = { call$1: function(b) { var t1; b.get$_list_ui_state$_$this()._selectedIds = null; b.get$_list_ui_state$_$this()._list_ui_state$_filter = null; t1 = Date.now(); b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._filterWebhooksByCustom1_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom1Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterWebhooksByCustom1_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom1Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterWebhooksByCustom2_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$custom2Filters().get$_safeList(), this.action.value); return b; }, $signature: 2 }; L._filterWebhooksByCustom2_closure0.prototype = { call$1: function(b) { var t1 = b.get$custom2Filters(), t2 = this.action.value; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterWebhooksByState_closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$stateFilters().get$_safeList(), this.action.state); return b; }, $signature: 2 }; L._filterWebhooksByState_closure0.prototype = { call$1: function(b) { var t1 = b.get$stateFilters(), t2 = this.action.state; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._filterWebhooks_closure.prototype = { call$1: function(b) { var t1 = this.action.filter; b.get$_list_ui_state$_$this()._list_ui_state$_filter = t1; t1 = t1 == null ? Date.now() : this.webhookListState.filterClearedAt; b.get$_list_ui_state$_$this()._list_ui_state$_filterClearedAt = t1; return b; }, $signature: 2 }; L._sortWebhooks_closure.prototype = { call$1: function(b) { var t1 = b.get$_list_ui_state$_$this()._sortField, t2 = this.action.field; t1 = t1 != t2 || !b.get$_list_ui_state$_$this()._sortAscending; b.get$_list_ui_state$_$this()._sortAscending = t1; b.get$_list_ui_state$_$this()._sortField = t2; return b; }, $signature: 2 }; L._startListMultiselect_closure14.prototype = { call$1: function(b) { var t1 = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String); b.get$_list_ui_state$_$this()._selectedIds = t1; return b; }, $signature: 2 }; L._addToListMultiselect_closure14.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._removeFromListMultiselect_closure14.prototype = { call$1: function(b) { var t1 = b.get$selectedIds(), t2 = this.action.entity; t2 = t2.get$id(t2); J.remove$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 2 }; L._clearListMultiselect_closure14.prototype = { call$1: function(b) { b.get$_list_ui_state$_$this()._selectedIds = null; return b; }, $signature: 2 }; L._archiveWebhookSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 341 }; L._deleteWebhookSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 341 }; L._restoreWebhookSuccess_closure.prototype = { call$1: function(b) { var t1, t2, t3, t4, t5; for (t1 = J.get$iterator$ax(this.action.webhooks), t2 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; t1.moveNext$0();) { t3 = t1.get$current(t1); t4 = b.get$_webhook_state$_$this(); t5 = t4._webhook_state$_map; if (t5 == null) { t5 = new A.MapBuilder(null, $, null, t2); t5.replace$1(0, C.Map_empty0); t4._webhook_state$_map = t5; t4 = t5; } else t4 = t5; t5 = t3.id; t4._checkKey$1(t5); t4._checkValue$1(t3); J.$indexSet$ax(t4.get$_safeMap(), t5, t3); } }, $signature: 341 }; L._addWebhook_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.webhook, t3 = t2.id; t1.$indexSet(0, t3, t2); t2 = b.get$list(b); !$.$get$isSoundMode() && !t2.$ti._precomputed1._is(null); J.add$1$ax(t2.get$_safeList(), t3); return b; }, $signature: 319 }; L._updateWebhook_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.webhook; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 319 }; L._setLoadedWebhook_closure.prototype = { call$1: function(b) { var t1 = b.get$map(b), t2 = this.action.webhook; t1.$indexSet(0, t2.id, t2); return b; }, $signature: 319 }; E.memoizedFilteredWebhookList_closure.prototype = { call$4: function(selectionState, webhookMap, webhookList, webhookListState) { return E.filteredWebhooksSelector(selectionState, webhookMap, webhookList, webhookListState); }, $signature: 1977 }; E.filteredWebhooksSelector_closure.prototype = { call$1: function(webhookId) { var t1, webhook = J.$index$asx(this.webhookMap._map$_map, webhookId); if (webhook.id === this.selectionState.selectedId) return true; t1 = this.webhookListState; if (!webhook.matchesStates$1(t1.stateFilters)) return false; t1 = t1.filter; return A.matchesStrings(H.setRuntimeTypeInfo([webhook.targetUrl], type$.JSArray_legacy_String), t1); }, $signature: 16 }; E.filteredWebhooksSelector_closure0.prototype = { call$2: function(webhookAId, webhookBId) { var sortField, sortAscending, webhookA0, response, t1 = this.webhookMap._map$_map, t2 = J.getInterceptor$asx(t1), webhookA = t2.$index(t1, webhookAId), webhookB = t2.$index(t1, webhookBId); t1 = this.webhookListState; sortField = t1.sortField; sortAscending = t1.sortAscending; webhookA.toString; if (sortAscending) webhookA0 = webhookA; else webhookA0 = webhookB; if (!sortAscending) webhookB = webhookA; switch (sortField) { case "target_url": response = C.JSString_methods.compareTo$1(webhookA0.targetUrl.toLowerCase(), webhookB.targetUrl.toLowerCase()); break; default: P.print("## ERROR: sort by webhook." + sortField + " is not implemented"); response = 0; break; } return response; }, $signature: 18 }; V.WebhookState.prototype = { loadWebhooks$1: function(clients) { return this.rebuild$1(new V.WebhookState_loadWebhooks_closure(this, P.LinkedHashMap_LinkedHashMap$fromIterable(clients, new V.WebhookState_loadWebhooks_closure0(), new V.WebhookState_loadWebhooks_closure1(), type$.legacy_String, type$.legacy_WebhookEntity))); }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; V.WebhookState_loadWebhooks_closure0.prototype = { call$1: function(item) { return J.get$id$x(item); }, $signature: 24 }; V.WebhookState_loadWebhooks_closure1.prototype = { call$1: function(item) { return item; }, $signature: 1978 }; V.WebhookState_loadWebhooks_closure.prototype = { call$1: function(b) { var t2, t3, t1 = this.map; b.get$map(b).addAll$1(0, t1); t2 = b.get$list(b); t1 = t1.get$keys(t1); t3 = this.$this.list; t3 = C.JSArray_methods.$add(P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), new Q.CopyOnWriteList(true, t3._list, H._instanceType(t3)._eval$1("CopyOnWriteList<1>"))); t3 = P.LinkedHashSet_LinkedHashSet$from(t3, H._arrayInstanceType(t3)._precomputed1); t2.replace$1(0, P.List_List$of(t3, true, H._instanceType(t3)._eval$1("SetMixin.E"))); return b; }, $signature: 319 }; V.WebhookUIState.prototype = { get$isCreatingNew: function() { return this.editing.get$isNew(); }, get$editingId: function() { return this.editing.id; } }; V._$WebhookStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { return H.setRuntimeTypeInfo(["map", serializers.serialize$2$specifiedType(object.map, C.FullType_QKO), "list", serializers.serialize$2$specifiedType(object.list, C.FullType_6m4)], type$.JSArray_legacy_Object); }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, result = new V.WebhookStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_BuiltList_legacy_Object, t2 = type$.legacy_String, t3 = type$.ListBuilder_legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_WebhookEntity; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "map": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_map; if (t6 == null) { t6 = new A.MapBuilder(null, $, null, t4); t6.replace$1(0, C.Map_empty0); t5._webhook_state$_map = t6; t5 = t6; } else t5 = t6; t5.replace$1(0, serializers.deserialize$2$specifiedType(value, C.FullType_QKO)); break; case "list": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_list; if (t6 == null) { t6 = new D.ListBuilder(t3); t6.__ListBuilder__list = P.List_List$from(C.List_empty, true, t2); t5._webhook_state$_list = t6; t5 = t6; } else t5 = t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_6m4)); t7 = t5.$ti; if (t7._eval$1("_BuiltList<1>")._is(t6)) { t5.__ListBuilder__list = t6._list; t5._listOwner = t6; } else { t5.__ListBuilder__list = P.List_List$from(t6, true, t7._precomputed1); t5._listOwner = null; } break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_CFL; }, get$wireName: function() { return "WebhookState"; } }; V._$WebhookUIStateSerializer.prototype = { serialize$3$specifiedType: function(serializers, object, specifiedType) { var result = H.setRuntimeTypeInfo(["listUIState", serializers.serialize$2$specifiedType(object.listUIState, C.FullType_Iqz), "tabIndex", serializers.serialize$2$specifiedType(object.tabIndex, C.FullType_kjq)], type$.JSArray_legacy_Object), value = object.editing; if (value != null) { result.push("editing"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_iL9)); } value = object.selectedId; if (value != null) { result.push("selectedId"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_h8g)); } value = object.forceSelected; if (value != null) { result.push("forceSelected"); result.push(serializers.serialize$2$specifiedType(value, C.FullType_MtR)); } return result; }, serialize$2: function(serializers, object) { return this.serialize$3$specifiedType(serializers, object, C.FullType_null_List_empty_false); }, deserialize$3$specifiedType: function(serializers, serialized, specifiedType) { var t1, t2, t3, t4, key, value, t5, t6, t7, t8, result = new V.WebhookUIStateBuilder(), iterator = J.get$iterator$ax(serialized); for (t1 = type$.legacy_ListUIState, t2 = type$.legacy_WebhookEntity, t3 = type$.legacy_String, t4 = type$.MapBuilder_of_legacy_String_and_legacy_String; iterator.moveNext$0();) { key = H._asStringS(iterator.get$current(iterator)); iterator.moveNext$0(); value = iterator.get$current(iterator); switch (key) { case "editing": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_editing; if (t6 == null) { t6 = new E.WebhookEntityBuilder(); t7 = t6.get$_webhook_model$_$this(); t8 = t7._headers; if (t8 == null) { t8 = new A.MapBuilder(null, $, null, t4); t8.replace$1(0, C.Map_empty0); t7._headers = t8; t7 = t8; } else t7 = t8; t7.replace$1(0, A.BuiltMap_BuiltMap(C.Map_empty0, t3, t3)); t6.get$_webhook_model$_$this()._restMethod = ""; t5._webhook_state$_editing = t6; t5 = t6; } else t5 = t6; t6 = t2._as(serializers.deserialize$2$specifiedType(value, C.FullType_iL9)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._webhook_model$_$v = t6; break; case "listUIState": t5 = result.get$_webhook_state$_$this(); t6 = t5._webhook_state$_listUIState; t5 = t6 == null ? t5._webhook_state$_listUIState = new Q.ListUIStateBuilder() : t6; t6 = t1._as(serializers.deserialize$2$specifiedType(value, C.FullType_Iqz)); if (t6 == null) H.throwExpression(P.ArgumentError$notNull("other")); t5._list_ui_state$_$v = t6; break; case "selectedId": t5 = H._asStringS(serializers.deserialize$2$specifiedType(value, C.FullType_h8g)); result.get$_webhook_state$_$this()._webhook_state$_selectedId = t5; break; case "forceSelected": t5 = H._asBoolS(serializers.deserialize$2$specifiedType(value, C.FullType_MtR)); result.get$_webhook_state$_$this()._webhook_state$_forceSelected = t5; break; case "tabIndex": t5 = H._asIntS(serializers.deserialize$2$specifiedType(value, C.FullType_kjq)); result.get$_webhook_state$_$this()._webhook_state$_tabIndex = t5; break; } } return result.build$0(0); }, deserialize$2: function(serializers, serialized) { return this.deserialize$3$specifiedType(serializers, serialized, C.FullType_null_List_empty_false); }, $isSerializer: 1, $isStructuredSerializer: 1, get$types: function() { return C.List_oUG; }, get$wireName: function() { return "WebhookUIState"; } }; V._$WebhookState.prototype = { rebuild$1: function(updates) { var t1 = new V.WebhookStateBuilder(); t1._webhook_state$_$v = this; updates.call$1(t1); return t1.build$0(0); }, $eq: function(_, other) { if (other == null) return false; if (other === this) return true; return other instanceof V.WebhookState && J.$eq$(this.map, other.map) && J.$eq$(this.list, other.list); }, get$hashCode: function(_) { var _this = this, t1 = _this._webhook_state$__hashCode; return t1 == null ? _this._webhook_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.map)), J.get$hashCode$(_this.list))) : t1; }, toString$0: function(_) { var t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "map", this.map); t2.add$2(t1, "list", this.list); return t2.toString$0(t1); }, map$1: function($receiver, arg0) { return this.map.call$1(arg0); } }; V.WebhookStateBuilder.prototype = { get$map: function(_) { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_map; return t2 == null ? t1._webhook_state$_map = A.MapBuilder_MapBuilder(type$.legacy_String, type$.legacy_WebhookEntity) : t2; }, get$list: function(_) { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_list; return t2 == null ? t1._webhook_state$_list = D.ListBuilder_ListBuilder(C.List_empty, type$.legacy_String) : t2; }, get$_webhook_state$_$this: function() { var t1, t2, _this = this, $$v = _this._webhook_state$_$v; if ($$v != null) { t1 = $$v.map; t1.toString; t2 = t1.$ti; t2._eval$1("_BuiltMap<1,2>")._as(t1); _this._webhook_state$_map = new A.MapBuilder(t1._mapFactory, t1._map$_map, t1, t2._eval$1("@<1>")._bind$1(t2._rest[1])._eval$1("MapBuilder<1,2>")); t2 = $$v.list; t2.toString; _this._webhook_state$_list = D.ListBuilder_ListBuilder(t2, t2.$ti._precomputed1); _this._webhook_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, exception, _this = this, _$result = null; try { _$result0 = _this._webhook_state$_$v; if (_$result0 == null) { t1 = _this.get$map(_this).build$0(0); _$result0 = V._$WebhookState$_(_this.get$list(_this).build$0(0), t1); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "map"; _this.get$map(_this).build$0(0); _$failedField = "list"; _this.get$list(_this).build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$("WebhookState", _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._webhook_state$_$v = t1; return _$result; }, map$1: function($receiver, arg0) { return this.get$map(this).call$1(arg0); } }; V._$WebhookUIState.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (other === _this) return true; if (other instanceof V.WebhookUIState) if (J.$eq$(_this.editing, other.editing)) if (J.$eq$(_this.listUIState, other.listUIState)) if (_this.selectedId == other.selectedId) if (_this.forceSelected == other.forceSelected) if (_this.tabIndex === other.tabIndex) t1 = true; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; else t1 = false; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this._webhook_state$__hashCode; return t1 == null ? _this._webhook_state$__hashCode = Y.$jf(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(Y.$jc(0, J.get$hashCode$(_this.editing)), J.get$hashCode$(_this.listUIState)), J.get$hashCode$(_this.selectedId)), J.get$hashCode$(_this.forceSelected)), C.JSInt_methods.get$hashCode(_this.tabIndex)), C.JSNull_methods.get$hashCode(_this.saveCompleter)), C.JSNull_methods.get$hashCode(_this.cancelCompleter))) : t1; }, toString$0: function(_) { var _this = this, t1 = $.$get$newBuiltValueToStringHelper().call$1("WebhookUIState"), t2 = J.getInterceptor$ax(t1); t2.add$2(t1, "editing", _this.editing); t2.add$2(t1, "listUIState", _this.listUIState); t2.add$2(t1, "selectedId", _this.selectedId); t2.add$2(t1, "forceSelected", _this.forceSelected); t2.add$2(t1, "tabIndex", _this.tabIndex); t2.add$2(t1, "saveCompleter", _this.saveCompleter); t2.add$2(t1, "cancelCompleter", _this.cancelCompleter); return t2.toString$0(t1); }, get$listUIState: function() { return this.listUIState; }, get$selectedId: function() { return this.selectedId; }, get$forceSelected: function() { return this.forceSelected; }, get$tabIndex: function(receiver) { return this.tabIndex; } }; V.WebhookUIStateBuilder.prototype = { get$editing: function() { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_editing; if (t2 == null) { t2 = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(t2); t1._webhook_state$_editing = t2; t1 = t2; } else t1 = t2; return t1; }, get$listUIState: function() { var t1 = this.get$_webhook_state$_$this(), t2 = t1._webhook_state$_listUIState; return t2 == null ? t1._webhook_state$_listUIState = new Q.ListUIStateBuilder() : t2; }, get$_webhook_state$_$this: function() { var t1, t2, _this = this, $$v = _this._webhook_state$_$v; if ($$v != null) { t1 = $$v.editing; if (t1 == null) t1 = null; else { t2 = new E.WebhookEntityBuilder(); E.WebhookEntity__initializeBuilder(t2); t2._webhook_model$_$v = t1; t1 = t2; } _this._webhook_state$_editing = t1; t1 = $$v.listUIState; t1.toString; t2 = new Q.ListUIStateBuilder(); t2._list_ui_state$_$v = t1; _this._webhook_state$_listUIState = t2; _this._webhook_state$_selectedId = $$v.selectedId; _this._webhook_state$_forceSelected = $$v.forceSelected; _this._webhook_state$_tabIndex = $$v.tabIndex; _this._webhook_state$_saveCompleter = $$v.saveCompleter; _this._webhook_state$_cancelCompleter = $$v.cancelCompleter; _this._webhook_state$_$v = null; } return _this; }, build$0: function(_) { var _$failedField, e, _$result0, t1, t2, t3, t4, t5, t6, exception, _this = this, _s14_ = "WebhookUIState", _$result = null; try { _$result0 = _this._webhook_state$_$v; if (_$result0 == null) { t1 = _this._webhook_state$_editing; t1 = t1 == null ? null : t1.build$0(0); t2 = _this.get$listUIState().build$0(0); t3 = _this.get$_webhook_state$_$this()._webhook_state$_selectedId; t4 = _this.get$_webhook_state$_$this()._webhook_state$_forceSelected; t5 = _this.get$_webhook_state$_$this()._webhook_state$_tabIndex; if (t5 == null) H.throwExpression(Y.BuiltValueNullFieldError$(_s14_, "tabIndex")); t6 = _this.get$_webhook_state$_$this()._webhook_state$_saveCompleter; _$result0 = V._$WebhookUIState$_(_this.get$_webhook_state$_$this()._webhook_state$_cancelCompleter, t1, t4, t2, t6, t3, t5); } _$result = _$result0; } catch (exception) { H.unwrapException(exception); _$failedField = null; try { _$failedField = "editing"; t1 = _this._webhook_state$_editing; if (t1 != null) t1.build$0(0); _$failedField = "listUIState"; _this.get$listUIState().build$0(0); } catch (exception) { e = H.unwrapException(exception); t1 = Y.BuiltValueNestedFieldError$(_s14_, _$failedField, J.toString$0$(e)); throw H.wrapException(t1); } throw exception; } t1 = _$result; if (t1 == null) H.throwExpression(P.ArgumentError$notNull("other")); _this._webhook_state$_$v = t1; return _$result; } }; V._WebhookUIState_Object_EntityUIState.prototype = {}; T.FieldGrid.prototype = { build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textColor = K.Theme_of(context).textTheme.bodyText1.color, t2 = type$.JSArray_legacy_Widget, fieldWidgets = H.setRuntimeTypeInfo([], t2); J.forEach$1$ax(this.fields, new T.FieldGrid_build_closure(fieldWidgets, t1, textColor)); if (fieldWidgets.length === 0) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return T.Column$(H.setRuntimeTypeInfo([M.Container$(_null, new T.Padding(C.EdgeInsets_20_16_20_16, new A.LayoutBuilder(new T.FieldGrid_build_closure0(fieldWidgets), _null), _null), C.Clip_0, K.Theme_of(context).cardColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), new G.ListDivider(_null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } }; T.FieldGrid_build_closure.prototype = { call$2: function(field, value) { var text, t1, t2, _null = null; if (value != null) { text = L.Text$(H.stringReplaceAllUnchecked(value, "\n", " "), _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 18, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); if (C.JSString_methods.contains$1(value, "\n")) text = S.Tooltip$(text, value); t1 = value.length; if (t1 !== 0) { t1 = this.localization; t2 = this.textColor; this.fieldWidgets.push(M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, T.Column$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(t1.lookup$1(field), _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _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), T.SizedBox$(_null, 4, _null), text], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new T.FieldGrid_build__closure(value, t1), _null, _null, _null, _null, _null), C.Clip_0, C.Color_0, 0, _null, _null, _null, _null, C.MaterialType_0)); } } }, $signature: 51 }; T.FieldGrid_build__closure.prototype = { call$0: function() { var t2, t1 = this.value; T.Clipboard_setData(new T.ClipboardData(t1)); t2 = this.localization.get$copiedToClipboard(); M.showToast(C.JSString_methods.replaceFirst$2(t2, ":value", H.stringReplaceAllUnchecked(t1, "\n", " "))); }, $signature: 1 }; T.FieldGrid_build_closure0.prototype = { call$2: function(context, constraints) { return B.GridView$count((constraints.maxWidth / 2 - 8) / 54, this.fieldWidgets, 2, 0, 12, null, new L.NeverScrollableScrollPhysics(null), true, true); }, $signature: 343 }; D.ActionMenuButton.prototype = { build$1: function(_, context) { var t1, _this = this, _null = null, actions = H.setRuntimeTypeInfo([], type$.JSArray_legacy_PopupMenuEntry_legacy_EntityAction); if (_this.isSaving) return B.IconButton$(C.Alignment_0_0, _null, _null, true, T.SizedBox$(U.CircularProgressIndicator$(_null, C.Color_4294967295, _null, _null, _null, 4, _null, _null), 26, 26), 24, _null, C.EdgeInsets_8_8_8_8, _null, _null); C.JSArray_methods.forEach$1(_this.entityActions, new D.ActionMenuButton_build_closure(actions, context)); t1 = _this.iconData; if (t1 == null) t1 = C.IconData_58372_MaterialIcons_null_false; t1 = L.Icon$(t1, _null, _this.iconSize); return Z.PopupMenuButton$(_null, _null, actions.length !== 0, t1, _null, new D.ActionMenuButton_build_closure0(actions), new D.ActionMenuButton_build_closure1(_this, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction); } }; D.ActionMenuButton_build_closure.prototype = { call$1: function(action) { var t2, t3, t4, _null = null, t1 = this.actions; if (action == null) t1.push(new Z.PopupMenuDivider(_null)); else { t2 = this.context; t3 = L.Icon$(Q.getEntityActionIcon(action), K.Theme_of(t2).accentColor, _null); t4 = T.SizedBox$(_null, _null, 16); t2 = L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(A.toSnakeCase(action.super$EnumClass$toString(0))); t1.push(Z.PopupMenuItem$(T.Row$(H.setRuntimeTypeInfo([t3, t4, T.Expanded$(L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), action, type$.legacy_EntityAction)); } }, $signature: 344 }; D.ActionMenuButton_build_closure0.prototype = { call$1: function(context) { return this.actions; }, $signature: 1981 }; D.ActionMenuButton_build_closure1.prototype = { call$1: function(action) { this.$this.onSelected.call$2(this.context, action); }, $signature: 344 }; D.ViewActionMenuButton.prototype = { build$1: function(_, context) { var _this = this; return D.ActionMenuButton$(_this.entity, _this.entityActions, null, null, _this.isSaving, _this.onSelected); } }; T.AppBorder.prototype = { build$1: function(_, context) { var enableDarkMode, t1, isAllSides, color, t2, _this = this, _null = null; if (_this.hideBorder) return _this.child; enableDarkMode = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.enableDarkMode; t1 = _this.isTop; isAllSides = t1 == null && _this.isLeft == null; color = enableDarkMode ? E.convertHexStringToColor("#393A3C") : E.convertHexStringToColor("#dfdfdf"); t2 = isAllSides ? K.BorderRadius$circular(2) : _null; if (isAllSides) t1 = F.Border_Border$all(color, 2); else { t1 = t1 === true ? new Y.BorderSide(color, 2, C.BorderStyle_1) : C.BorderSide_m7u; t1 = new F.Border(t1, C.BorderSide_m7u, C.BorderSide_m7u, _this.isLeft === true ? new Y.BorderSide(color, 2, C.BorderStyle_1) : C.BorderSide_m7u); } return M.Container$(_null, _this.child, C.Clip_0, _null, _null, new S.BoxDecoration(_null, _null, t1, t2, _null, _null, C.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null); } }; Z.AppBottomBar.prototype = { createState$0: function() { return new Z._AppBottomBarState(C._StateLifecycle_0); }, onCheckboxPressed$0: function() { return this.onCheckboxPressed.call$0(); }, onSelectedSortField$1: function(arg0) { return this.onSelectedSortField.call$1(arg0); }, onSelectedState$2: function(arg0, arg1) { return this.onSelectedState.call$2(arg0, arg1); }, onSelectedStatus$2: function(arg0, arg1) { return this.onSelectedStatus.call$2(arg0, arg1); }, onSelectedCustom1$1: function(arg0) { return this.onSelectedCustom1.call$1(arg0); }, onSelectedCustom2$1: function(arg0) { return this.onSelectedCustom2.call$1(arg0); }, onSelectedCustom3$1: function(arg0) { return this.onSelectedCustom3.call$1(arg0); }, onSelectedCustom4$1: function(arg0) { return this.onSelectedCustom4.call$1(arg0); } }; Z._AppBottomBarState.prototype = { closeBottomSheet$0: function() { var _this = this, t1 = _this._filterStateController; if (t1 != null) { t1.close.call$0(); return 1; } t1 = _this._filterStatusController; if (t1 != null) { t1.close.call$0(); return 2; } t1 = _this._sortController; if (t1 != null) { t1.close.call$0(); return 0; } t1 = _this._filterCustom1Controller; if (t1 != null) { t1.close.call$0(); return 3; } t1 = _this._filterCustom2Controller; if (t1 != null) { t1.close.call$0(); return 4; } t1 = _this._filterCustom3Controller; if (t1 != null) { t1.close.call$0(); return 5; } t1 = _this._filterCustom4Controller; if (t1 != null) { t1.close.call$0(); return 6; } return null; }, build$1: function(_, context) { var _this = this, t1 = type$.legacy_AppState, state = O.StoreProvider_of(context, t1).get$_store$_state(); return O.StoreBuilder$(new Z._AppBottomBarState_build_closure(_this, state, new Z._AppBottomBarState_build_closure0(_this, context), new Z._AppBottomBarState_build_closure1(_this, context), new Z._AppBottomBarState_build_closure2(_this, context, state), new Z._AppBottomBarState_build_closure3(_this, context, state), new Z._AppBottomBarState_build_closure4(_this, context, state), new Z._AppBottomBarState_build_closure5(_this, context, state), new Z._AppBottomBarState_build_closure6(_this, context)), null, t1); } }; Z._AppBottomBarState_build_closure0.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 1) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure14(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterStateController = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure15(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure14.prototype = { call$1: function(context) { var _null = null, t1 = this.$this; return O.StoreConnector$(new Z._AppBottomBarState_build___closure7(t1), new Z._AppBottomBarState_build___closure8(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_EntityState); }, $signature: 1982 }; Z._AppBottomBarState_build___closure8.prototype = { call$1: function(store) { return store.get$_store$_state().getUIState$1(this.$this._widget.entityType).get$listUIState().stateFilters; }, $signature: 1983 }; Z._AppBottomBarState_build___closure7.prototype = { call$2: function(context, stateFilters) { var _null = null, t1 = K.Theme_of(context).backgroundColor, t2 = $.$get$_$values0()._set$_set.map$1$1(0, new Z._AppBottomBarState_build____closure1(this.$this, context, stateFilters), type$.legacy_Widget); return M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([T.Column$(P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 1984 }; Z._AppBottomBarState_build____closure1.prototype = { call$1: function(state) { var t4, _null = null, t1 = this.context, t2 = type$.legacy_AppLocalization, t3 = C.JSString_methods.$add("state_", L.Localizations_of(t1, C.Type_AppLocalization_KyD, t2).lookup$1(H.S(state))); t2 = L.Text$(L.Localizations_of(t1, C.Type_AppLocalization_KyD, t2).lookup$1(H.S(state)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = J.contains$1$asx(this.stateFilters._list, state); return D.CheckboxListTile$(K.Theme_of(t1).accentColor, _null, C.ListTileControlAffinity_0, true, new D.ValueKey(t3, type$.ValueKey_legacy_String), new Z._AppBottomBarState_build_____closure2(this.$this, state), t2, t4); }, $signature: 1985 }; Z._AppBottomBarState_build_____closure2.prototype = { call$1: function(value) { this.$this._widget.onSelectedState$2(this.state, value); }, $signature: 20 }; Z._AppBottomBarState_build__closure15.prototype = { call$0: function() { this.$this._filterStateController = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure1.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 2) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure12(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterStatusController = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure13(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure12.prototype = { call$1: function(context) { var _null = null, t1 = this.$this; return O.StoreConnector$(new Z._AppBottomBarState_build___closure5(t1), new Z._AppBottomBarState_build___closure6(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_EntityStatus); }, $signature: 1986 }; Z._AppBottomBarState_build___closure6.prototype = { call$1: function(store) { return store.get$_store$_state().getUIState$1(this.$this._widget.entityType).get$listUIState().statusFilters; }, $signature: 1987 }; Z._AppBottomBarState_build___closure5.prototype = { call$2: function(context, statusFilters) { var _null = null, t1 = K.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2._widget.statuses, t4 = H._arrayInstanceType(t3)._eval$1("MappedListIterable<1,CheckboxListTile*>"); return M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([T.Column$(P.List_List$of(new H.MappedListIterable(t3, new Z._AppBottomBarState_build____closure0(t2, context, statusFilters), t4), true, t4._eval$1("ListIterable.E")), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 1988 }; Z._AppBottomBarState_build____closure0.prototype = { call$1: function($status) { var _null = null, t1 = J.toString$0$($status), t2 = this.context, t3 = L.Text$(L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1($status.get$name($status)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = J.contains$1$asx(this.statusFilters._list, $status); return D.CheckboxListTile$(K.Theme_of(t2).accentColor, _null, C.ListTileControlAffinity_0, true, new D.ValueKey(t1, type$.ValueKey_String), new Z._AppBottomBarState_build_____closure1(this.$this, $status), t3, t4); }, $signature: 1989 }; Z._AppBottomBarState_build_____closure1.prototype = { call$1: function(value) { this.$this._widget.onSelectedStatus$2(this.status, value); }, $signature: 20 }; Z._AppBottomBarState_build__closure13.prototype = { call$0: function() { this.$this._filterStatusController = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure6.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 0) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure2(t1), type$.legacy_StoreConnector_dynamic_dynamic); t1._sortController = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure3(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure2.prototype = { call$1: function(context) { var _null = null, t1 = this.$this; return O.StoreConnector$(new Z._AppBottomBarState_build___closure(t1), new Z._AppBottomBarState_build___closure0(t1), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ListUIState); }, $signature: 1990 }; Z._AppBottomBarState_build___closure0.prototype = { call$1: function(store) { return store.get$_store$_state().getUIState$1(this.$this._widget.entityType).get$listUIState(); }, $signature: 1991 }; Z._AppBottomBarState_build___closure.prototype = { call$2: function(context, listUIState) { var _null = null, t1 = K.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2._widget.sortFields, t4 = H._arrayInstanceType(t3)._eval$1("MappedListIterable<1,InkWell*>"); return M.Container$(_null, T.Column$(P.List_List$of(new H.MappedListIterable(t3, new Z._AppBottomBarState_build____closure(t2, context, listUIState), t4), true, t4._eval$1("ListIterable.E")), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 1992 }; Z._AppBottomBarState_build____closure.prototype = { call$1: function(sortField) { var _null = null, t1 = this.$this, t2 = this.context, t3 = type$.legacy_AppLocalization, t4 = L.Text$(L.Localizations_of(t2, C.Type_AppLocalization_KyD, t3).lookup$1(sortField), _null, _null, _null, _null, _null, _null, _null, _null, _null), t5 = this.listUIState, t6 = t5.sortField; if (sortField === t6) { if (t5.sortAscending) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t2, C.Type_AppLocalization_KyD, t3).localeCode), "ascending"); if (t3 == null) t3 = ""; } else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t2, C.Type_AppLocalization_KyD, t3).localeCode), "descending"); if (t3 == null) t3 = ""; } t3 = L.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t3 = _null; return R.InkWell$(false, _null, true, new T.IgnorePointer(true, _null, new G.RadioListTile(sortField, t6, new Z._AppBottomBarState_build_____closure(t1, t5, sortField), true, K.Theme_of(t2).accentColor, t4, t3, true, _null, type$.RadioListTile_legacy_String), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Z._AppBottomBarState_build_____closure0(t1, sortField), _null, _null, _null, _null, _null); }, $signature: 589 }; Z._AppBottomBarState_build_____closure0.prototype = { call$0: function() { return this.$this._widget.onSelectedSortField$1(this.sortField); }, $signature: 9 }; Z._AppBottomBarState_build_____closure.prototype = { call$1: function(value) { var _this = this, t1 = value == null && _this.listUIState.sortField === _this.field, t2 = _this.$this._widget; if (t1) t2.onSelectedSortField$1(_this.field); else t2.onSelectedSortField$1(value); }, $signature: 7 }; Z._AppBottomBarState_build__closure3.prototype = { call$0: function() { this.$this._sortController = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure2.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 3) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure10(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom1Controller = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure11(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure10.prototype = { call$1: function(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new Z.CustomFieldSelector(1, t2, t1._widget.customValues1, new Z._AppBottomBarState_build___closure4(t1), null); }, $signature: 329 }; Z._AppBottomBarState_build___closure4.prototype = { call$1: function(field) { return this.$this._widget.onSelectedCustom1$1(field); }, $signature: 5 }; Z._AppBottomBarState_build__closure11.prototype = { call$0: function() { this.$this._filterCustom1Controller = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure3.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 4) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure8(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom2Controller = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure9(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure8.prototype = { call$1: function(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new Z.CustomFieldSelector(2, t2, t1._widget.customValues2, new Z._AppBottomBarState_build___closure3(t1), null); }, $signature: 329 }; Z._AppBottomBarState_build___closure3.prototype = { call$1: function(field) { return this.$this._widget.onSelectedCustom2$1(field); }, $signature: 5 }; Z._AppBottomBarState_build__closure9.prototype = { call$0: function() { this.$this._filterCustom2Controller = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure4.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 5) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure6(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom3Controller = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure7(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure6.prototype = { call$1: function(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new Z.CustomFieldSelector(3, t2, t1._widget.customValues3, new Z._AppBottomBarState_build___closure2(t1), null); }, $signature: 329 }; Z._AppBottomBarState_build___closure2.prototype = { call$1: function(field) { return this.$this._widget.onSelectedCustom3$1(field); }, $signature: 5 }; Z._AppBottomBarState_build__closure7.prototype = { call$0: function() { this.$this._filterCustom3Controller = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure5.prototype = { call$0: function() { var t2, t1 = this.$this; if (t1.closeBottomSheet$0() === 6) return; t2 = M.Scaffold_of(this.context).showBottomSheet$1$1(new Z._AppBottomBarState_build__closure4(t1, this.state), type$.legacy_StoreConnector_dynamic_dynamic); t1._filterCustom4Controller = t2; t2._scaffold$_completer.future.whenComplete$1(new Z._AppBottomBarState_build__closure5(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure4.prototype = { call$1: function(context) { var t1 = this.$this, t2 = t1._widget.entityType; this.state.getUIState$1(t2).get$listUIState().toString; return new Z.CustomFieldSelector(4, t2, t1._widget.customValues4, new Z._AppBottomBarState_build___closure1(t1), null); }, $signature: 329 }; Z._AppBottomBarState_build___closure1.prototype = { call$1: function(field) { return this.$this._widget.onSelectedCustom4$1(field); }, $signature: 5 }; Z._AppBottomBarState_build__closure5.prototype = { call$0: function() { this.$this._filterCustom4Controller = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build_closure.prototype = { call$2: function(context, store) { var t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), prefState = store.get$_store$_state().prefState, t2 = _this.$this, isList = t2._widget.entityType.get$isSetting() || _this.state.prefState.get$isModuleList(), t3 = _this.state, t4 = new Z._AppBottomBarState_build_closure__onColumnsPressed(t2, context, store, t3), t5 = P.List_List$of(t2._widget.iconButtons, true, type$.legacy_Widget); if (!t2._widget.hideListOptions) { t6 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (D.getLayout(context) === C.AppLayout_mobile) { t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "multiselect"); if (t7 == null) t7 = ""; t6.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57687_MaterialIcons_null_false, _null, _null), 24, new Z._AppBottomBarState_build__closure(t2), C.EdgeInsets_8_8_8_8, t7, _null)); } C.JSArray_methods.addAll$1(t5, t6); } t6 = t1.get$filter(t1); t7 = L.Icon$(C.IconData_57984_MaterialIcons_null_false, _null, _null); t8 = store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().stateFilters._list; t9 = J.getInterceptor$asx(t8); t8 = t9.get$length(t8) !== 1 || !J.$eq$(t9.get$first(t8), C.EntityState_active) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterStateSheet, C.EdgeInsets_8_8_8_8, t6, _null)); if (t2._widget.statuses.length !== 0) { t6 = t1.get$status(t1); t7 = L.Icon$(C.IconData_57967_MaterialIcons_null_false, _null, _null); t8 = J.get$isNotEmpty$asx(store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().statusFilters._list) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterStatusSheet, C.EdgeInsets_8_8_8_8, t6, _null)); } if (t2._widget.customValues1.length !== 0) { t6 = t1.get$filteredBy(); t7 = L.Icon$(C.IconData_58297_MaterialIcons_null_false, _null, _null); t8 = J.get$isNotEmpty$asx(store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().custom1Filters._list) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterCustom1Sheet, C.EdgeInsets_8_8_8_8, t6, _null)); } if (t2._widget.customValues2.length !== 0) { t6 = t1.get$filteredBy(); t7 = L.Icon$(C.IconData_58298_MaterialIcons_null_false, _null, _null); t8 = J.get$isNotEmpty$asx(store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().custom2Filters._list) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterCustom2Sheet, C.EdgeInsets_8_8_8_8, t6, _null)); } if (t2._widget.customValues3.length !== 0) { t6 = t1.get$filteredBy(); t7 = L.Icon$(C.IconData_58293_MaterialIcons_null_false, _null, _null); t8 = J.get$isNotEmpty$asx(store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().custom3Filters._list) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterCustom3Sheet, C.EdgeInsets_8_8_8_8, t6, _null)); } if (t2._widget.customValues4.length !== 0) { t6 = t1.get$filteredBy(); t7 = L.Icon$(C.IconData_58294_MaterialIcons_null_false, _null, _null); t8 = J.get$isNotEmpty$asx(store.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().custom4Filters._list) ? K.Theme_of(context).accentColor : _null; t5.push(B.IconButton$(C.Alignment_0_0, t8, _null, true, t7, 24, _this._showFilterCustom4Sheet, C.EdgeInsets_8_8_8_8, t6, _null)); } if (!t2._widget.entityType.get$isSetting()) t6 = prefState.isPreviewVisible || D.getLayout(context) === C.AppLayout_mobile; else t6 = false; if (t6) { t6 = t1.localeCode; if (isList) { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "show_table"); if (t6 == null) t6 = ""; } else { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "show_list"); if (t6 == null) t6 = ""; } t5.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(isList ? C.IconData_58938_MaterialIcons_null_false : C.IconData_59061_MaterialIcons_null_true, _null, _null), 24, new Z._AppBottomBarState_build__closure0(store), C.EdgeInsets_8_8_8_8, t6, _null)); } if (!t2._widget.hideListOptions) { t6 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (isList && t2._widget.sortFields.length !== 0) { t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "sort"); if (t7 == null) t7 = ""; t6.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58835_MaterialIcons_null_false, _null, _null), 24, _this._showSortSheet, C.EdgeInsets_8_8_8_8, t7, _null)); } C.JSArray_methods.addAll$1(t5, t6); } t3 = t3.prefState; t6 = t3.appLayout; if (!(t6 === C.AppLayout_mobile || t3.menuSidebarMode === C.AppSidebarMode_float)) t5.push(new R.Spacer(_null)); if (!t2._widget.entityType.get$isSetting() && !isList && !t2._widget.hideListOptions) if (t6 === C.AppLayout_desktop) t5.push(new X.AppTextButton(t1.get$columns(t1), t4, false, _null, _null)); else t5.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59066_MaterialIcons_null_false, _null, _null), 24, t4, C.EdgeInsets_8_8_8_8, t1.get$columns(t1), _null)); if (t6 === C.AppLayout_desktop) { t1 = t1.get$refreshData(); t5.push(new T.AppBorder(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_12_0_12_0, L.Icon$(C.IconData_58644_MaterialIcons_null_false, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Z._AppBottomBarState_build__closure1(store), _null, _null, _null, _null, _null), t1), _null, true, false, _null)); } return B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t5, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), _null, 0, new V.CircularNotchedRectangle()); }, $signature: 1996 }; Z._AppBottomBarState_build_closure__onColumnsPressed.prototype = { call$0: function() { var t6, t7, _this = this, t1 = _this.context, t2 = _this.$this, t3 = _this.state, t4 = t2._widget, t5 = t4.tableColumns; t4 = t4.defaultTableColumns; t6 = t3.userCompanyStates; t7 = t3.uiState.selectedCompanyIndex; t7 = J.$index$asx(t6._list, t7).userCompany.settings.tableColumns; t6 = t2._widget.entityType.toString$0(0); t6 = J.$index$asx(t7._map$_map, t6); t6 = t6 == null ? null : new Q.CopyOnWriteList(true, t6._list, H.instanceType(t6)._eval$1("CopyOnWriteList<1>")); E.multiselectDialog(t1, t4, new Z._AppBottomBarState_build___onColumnsPressed_closure(t2, _this.store, t3, t1), t5, t6); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Z._AppBottomBarState_build___onColumnsPressed_closure.prototype = { call$1: function(selected) { var t4, t5, settings, userCompany, user, completer, _this = this, t1 = _this.store, t2 = _this.$this, t3 = J.getInterceptor$asx(selected); if (!t3.contains$1(selected, t1.get$_store$_state().getUIState$1(t2._widget.entityType).get$listUIState().sortField)) { t4 = t2._widget; t4.toString; t4.onSelectedSortField$1(t3.get$isEmpty(selected) ? "" : t3.$index(selected, 0)); } t3 = _this.state; t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t4 = t4._list; t5 = J.getInterceptor$asx(t4); settings = t5.$index(t4, t3).userCompany.settings.rebuild$1(new Z._AppBottomBarState_build___onColumnsPressed__closure(t2, selected)); userCompany = t5.$index(t4, t3).userCompany.rebuild$1(new Z._AppBottomBarState_build___onColumnsPressed__closure0(settings)); user = t5.$index(t4, t3).userCompany.user.rebuild$1(new Z._AppBottomBarState_build___onColumnsPressed__closure1(userCompany)); t3 = _this.context; completer = O.snackBarCompleter(t3, L.Localizations_of(t3, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.SaveUserSettingsRequest(completer, user)); }, $signature: 99 }; Z._AppBottomBarState_build___onColumnsPressed__closure.prototype = { call$1: function(b) { b.get$tableColumns().$indexSet(0, this.$this._widget.entityType.toString$0(0), D.BuiltList_BuiltList$from(this.selected, type$.legacy_String)); return b; }, $signature: 587 }; Z._AppBottomBarState_build___onColumnsPressed__closure0.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; Z._AppBottomBarState_build___onColumnsPressed__closure1.prototype = { call$1: function(b) { var t1 = b.get$userCompany(), t2 = this.userCompany; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 78 }; Z._AppBottomBarState_build__closure.prototype = { call$0: function() { return this.$this._widget.onCheckboxPressed$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Z._AppBottomBarState_build__closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SwitchListTableLayout()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z._AppBottomBarState_build__closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 9 }; Z.CustomFieldSelector.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Z.CustomFieldSelector_build_closure(this), new Z.CustomFieldSelector_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuiltList_legacy_String); } }; Z.CustomFieldSelector_build_closure0.prototype = { call$1: function(store) { var t1 = this.$this; return store.get$_store$_state().getUIState$1(t1.entityType).get$listUIState().getCustomFilters$1(t1.customNumber); }, $signature: 1999 }; Z.CustomFieldSelector_build_closure.prototype = { call$2: function(context, customFilters) { var _null = null, t1 = K.Theme_of(context).backgroundColor, t2 = this.$this, t3 = t2.customValues, t4 = H._arrayInstanceType(t3)._eval$1("MappedListIterable<1,Widget*>"); return M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([T.Column$(P.List_List$of(new H.MappedListIterable(t3, new Z.CustomFieldSelector_build__closure(t2, customFilters, context), t4), true, t4._eval$1("ListIterable.E")), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2000 }; Z.CustomFieldSelector_build__closure.prototype = { call$1: function(customField) { var _null = null, t1 = J.toString$0$(customField), t2 = L.Text$(customField, _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = J.contains$1$asx(this.customFilters._list, customField); return D.CheckboxListTile$(K.Theme_of(this.context).accentColor, _null, C.ListTileControlAffinity_0, true, new D.ValueKey(t1, type$.ValueKey_String), new Z.CustomFieldSelector_build___closure(this.$this, customField), t2, t3); }, $signature: 2001 }; Z.CustomFieldSelector_build___closure.prototype = { call$1: function(value) { return this.$this.onSelected.call$1(this.customField); }, $signature: 12 }; G.AppBuilder.prototype = { createState$0: function() { return new G.AppBuilderState(C._StateLifecycle_0); }, builder$1: function(arg0) { return this.builder.call$1(arg0); } }; G.AppBuilderState.prototype = { rebuild$0: function() { this.setState$1(new G.AppBuilderState_rebuild_closure()); }, build$1: function(_, context) { return this._widget.builder$1(context); } }; G.AppBuilderState_rebuild_closure.prototype = { call$0: function() { }, $signature: 1 }; R.AppHeader.prototype = { build$1: function(_, context) { var _this = this, _null = null, textColor = K.Theme_of(context).textTheme.bodyText1.color, t1 = type$.JSArray_legacy_Widget, t2 = H.setRuntimeTypeInfo([T.Expanded$(new R.AppHeader_build__value1(_this, textColor).call$0(), 1)], t1), t3 = _this.secondValue; if ((t3 == null ? "" : t3).length !== 0) C.JSArray_methods.addAll$1(t2, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 8), T.Expanded$(new R.AppHeader_build__value2(_this, textColor).call$0(), 1)], t1)); t1 = H.setRuntimeTypeInfo([T.Row$(t2, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t1); t2 = _this.message; if (t2 != null) t1.push(new T.Padding(C.EdgeInsets_0_16_0_0, L.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); return Y.FormCard$(_null, t1, _null, 4, false, _null, false, _null); }, get$value: function(receiver) { return this.value; } }; R.AppHeader_build__value1.prototype = { call$0: function() { var t3, _null = null, t1 = this.$this, t2 = this.textColor; t2 = L.Text$(t1.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t3 = T.SizedBox$(_null, 8, _null); t1 = t1.value; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return T.Column$(H.setRuntimeTypeInfo([t2, t3, T.FittedBox$(L.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, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, $signature: 133 }; R.AppHeader_build__value2.prototype = { call$0: function() { var t3, _null = null, t1 = this.$this, t2 = this.textColor; t2 = L.Text$(t1.secondLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t3 = T.SizedBox$(_null, 8, _null); t1 = t1.secondValue; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return T.Column$(H.setRuntimeTypeInfo([t2, t3, T.FittedBox$(L.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, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, $signature: 133 }; O.AppScrollbar.prototype = { createState$0: function() { return new O._AppScrollbarState(C._StateLifecycle_0); } }; O._AppScrollbarState.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = D.getLayout(context) === C.AppLayout_mobile && !_this._widget.hideMobileThumb, t2 = _this._widget; if (t1) { t1 = t2.child; t2 = t2.controller; return new M.DraggableScrollbar(t1, M.DraggableScrollbar__thumbSemicircleBuilder(28.799999999999997, _null, false), C.Duration_1500000, t2, _null); } else { t1 = t2.child; t2 = t2.controller; return new T.MouseRegion(new O._AppScrollbarState_build_closure(_this), _null, new O._AppScrollbarState_build_closure0(_this), C.C__DeferringMouseCursor, true, E.Scrollbar$(t1, t2, D.getLayout(context) === C.AppLayout_desktop && _this._app_scrollbar$_isHovered), _null); } } }; O._AppScrollbarState_build_closure.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._AppScrollbarState_build__closure0(t1)); }, $signature: 350 }; O._AppScrollbarState_build__closure0.prototype = { call$0: function() { return this.$this._app_scrollbar$_isHovered = true; }, $signature: 19 }; O._AppScrollbarState_build_closure0.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._AppScrollbarState_build__closure(t1)); }, $signature: 312 }; O._AppScrollbarState_build__closure.prototype = { call$0: function() { return this.$this._app_scrollbar$_isHovered = false; }, $signature: 19 }; S.AppWebView.prototype = { build$1: function(_, context) { return new S._WebWebView(this.html, null); } }; S._WebWebView.prototype = { build$1: function(_, context) { var encodedHtml = C.JSString_methods.$add("data:text/html;charset=utf-8,", P._Uri__uriEncode(C.List_KIf, this.html, C.C_Utf8Codec, false)); L.WebUtils_registerWebView(encodedHtml); return T.AbsorbPointer$(true, new G.HtmlElementView(encodedHtml, null)); } }; Q.BlankScreen.prototype = { build$1: function(_, context) { var _null = null, t1 = E.AppBar$(_null, _null, D.getLayout(context) === C.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, 1, _null), t2 = K.Theme_of(context).cardColor, t3 = this.message; return M.Scaffold$(t1, _null, M.Container$(_null, new U.HelpText(t3 == null ? "" : t3, _null), C.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, _null, _null); } }; X.AppTextButton.prototype = { build$1: function(_, context) { var primaryColor, flatButtonStyle, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = _this.onPressed; if (t1 == null) primaryColor = _null; else { primaryColor = _this.color; if (!(primaryColor != null)) if (_this.isInHeader) primaryColor = state.get$headerTextColor(); else primaryColor = state.prefState.enableDarkMode ? C.Color_4294967295 : C.Color_3707764736; } flatButtonStyle = U.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, primaryColor, _null, _null, _null, _null, _null, _null, _null); return U.TextButton$(false, L.Text$(_this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, flatButtonStyle); } }; Z.BottomButtons.prototype = { build$1: function(_, context) { var t3, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), textColor = state.prefState.enableDarkMode || state.get$hasAccentColor() ? K.Theme_of(context).textTheme.bodyText1.color : state.get$accentColor(), t2 = _this.action1Enabled; if (t2) { t3 = _this.entity; t3 = !t3.get$isDeleted(t3) || _this.action1 === C.EntityAction_viewPdf; } else t3 = false; t3 = t3 ? new Z.BottomButtons_build_closure(_this) : _null; t4 = t1.lookup$1(_this.action1.toString$0(0)); if (t2) { t2 = _this.entity; t2 = !t2.get$isDeleted(t2); } else t2 = false; t2 = t2 ? 1 : 0.5; textColor.toString; t3 = T.Expanded$(R.InkWell$(false, _null, true, T.Center$(L.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t2), textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_2, _null, _null), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null), 1); t2 = _this.action2Enabled; if (t2) { t4 = _this.entity; t4 = !t4.get$isDeleted(t4); } else t4 = false; t4 = t4 ? new Z.BottomButtons_build_closure0(_this) : _null; t1 = t1.lookup$1(H.S(_this.action2)); if (t2) { t2 = _this.entity; t2 = !t2.get$isDeleted(t2); } else t2 = false; return T.SizedBox$(new T.AppBorder(T.Row$(H.setRuntimeTypeInfo([t3, T.Expanded$(new T.AppBorder(R.InkWell$(false, _null, true, T.Center$(L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(C.JSNumber_methods.round$0(255 * (t2 ? 1 : 0.6)), textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_2, _null, _null), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null), _null, true, false, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null); } }; Z.BottomButtons_build_closure.prototype = { call$0: function() { var t1 = this.$this; M.handleEntitiesActions(H.setRuntimeTypeInfo([t1.entity], type$.JSArray_legacy_BaseEntity), t1.action1, false); }, $signature: 1 }; Z.BottomButtons_build_closure0.prototype = { call$0: function() { var t1 = this.$this; M.handleEntitiesActions(H.setRuntimeTypeInfo([t1.entity], type$.JSArray_legacy_BaseEntity), t1.action2, false); }, $signature: 1 }; D.AppButton.prototype = { build$1: function(_, context) { var t2, t3, button, _this = this, _null = null, t1 = _this.color; if (t1 == null) t1 = K.Theme_of(context).buttonColor; t1 = D.ElevatedButton_styleFrom(_null, _null, _null, 4, _null, _null, _null, _null, _null, new V.EdgeInsets(14, 14, 14, 14), t1, _null, new X.RoundedRectangleBorder(K.BorderRadius$circular(2), C.BorderSide_m7u), _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null); t2 = _this.iconData; t3 = _this.label; t2 = t2 != null ? new U.IconText(t3, t2, _null, C.MainAxisAlignment_2, _null) : L.Text$(t3, _null, _null, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); button = D.ElevatedButton$(t2, _this.onPressed, t1); t1 = _this.width; return new T.Padding(C.EdgeInsets_0_20_0_0, t1 == null ? button : T.SizedBox$(button, _null, t1), _null); } }; O.ChangeLayoutBanner.prototype = { createState$0: function() { return new O._ChangeLayoutBannerState(C._StateLifecycle_0); } }; O._ChangeLayoutBannerState.prototype = { build$1: function(_, context) { var t2, t3, message, t4, t5, t6, t7, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), calculatedLayout = D.calculateLayout(context); if (!_this._dismissedChange) { t2 = _this._widget; t3 = t2.appLayout; if (t3 === C.AppLayout_mobile && t2.suggestedLayout === C.AppLayout_mobile && calculatedLayout === C.AppLayout_desktop) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "change_to_desktop_layout"); message = t2 == null ? "" : t2; } else if (t3 === C.AppLayout_desktop && t2.suggestedLayout === C.AppLayout_desktop && calculatedLayout === C.AppLayout_mobile) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "change_to_mobile_layout"); message = t2 == null ? "" : t2; } else message = _null; } else message = _null; t2 = message == null; t3 = !t2; t2 = t2 ? 0 : 50; t4 = P.Duration$(0, 0, 0, 500, 0, 0); t5 = T.Expanded$(new U.IconText(message, C.IconData_58173_MaterialIcons_null_false, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null), 1); t6 = t1.get$dismiss(); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "change"); if (t1 == null) t1 = ""; t7 = type$.JSArray_legacy_Widget; return Q.SafeArea$(t3, T.Column$(H.setRuntimeTypeInfo([G.AnimatedContainer$(M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_10_0_0_0, T.Row$(H.setRuntimeTypeInfo([t5, new X.AppTextButton(t6, new O._ChangeLayoutBannerState_build_closure(_this), false, C.Color_4294967295, _null), new X.AppTextButton(t1, new O._ChangeLayoutBannerState_build_closure0(_this, store, context), false, C.Color_4294967295, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), C.Clip_0, C.MaterialColor_Map_JNZaB_4294940672, 0, _null, _null, _null, _null, C.MaterialType_0), _null, C.Cubic_oKc, _null, t4, t2, _null, _null, _null, _null), T.Expanded$(_this._widget.child, 1)], t7), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.EdgeInsets_0_0_0_0, t3); } }; O._ChangeLayoutBannerState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O._ChangeLayoutBannerState_build__closure0(t1)); }, $signature: 1 }; O._ChangeLayoutBannerState_build__closure0.prototype = { call$0: function() { return this.$this._dismissedChange = true; }, $signature: 19 }; O._ChangeLayoutBannerState_build_closure0.prototype = { call$0: function() { var _null = null, layout = this.$this._widget.suggestedLayout === C.AppLayout_desktop ? C.AppLayout_mobile : C.AppLayout_desktop, t1 = this.store, t2 = M.UpdateUserPreferences$(layout, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new O._ChangeLayoutBannerState_build__closure(layout, t1)); }, $signature: 1 }; O._ChangeLayoutBannerState_build__closure.prototype = { call$1: function(duration) { var t1 = this.store; if (this.layout === C.AppLayout_mobile) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ViewMainScreen()); }, $signature: 45 }; T.ConfirmEmail.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, state = t2.state, t3 = K.Theme_of(context).cardColor; if (state.isLoading || state.isSaving) t1 = new V.LoadingIndicator(_null, false, _null); else { t4 = U.Image$asset("assets/images/icon.png", 80, _null); t5 = T.SizedBox$(_null, 60, _null); t6 = t1.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "confirm_your_email_address"); if (t7 == null) t7 = ""; t7 = L.Text$(t7, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null); t8 = state.userCompanyStates; t9 = state.uiState.selectedCompanyIndex; t9 = J.$index$asx(t8._list, t9).userCompany.user.email; t8 = D.calculateLayout(context) === C.AppLayout_desktop ? C.Axis_0 : C.Axis_1; t10 = t2.onResendPressed; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "resend_email"); if (t6 == null) t6 = ""; t10 = U.TextButton$(false, L.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t10, _null); t6 = T.SizedBox$(_null, _null, 16); t11 = U.TextButton$(false, L.Text$(t1.get$changeEmail().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new T.ConfirmEmail_build_closure(this, context, t1), _null); t12 = T.SizedBox$(_null, _null, 16); t2 = t2.onRefreshPressed; t13 = type$.JSArray_legacy_Widget; t13 = new T.Padding(C.EdgeInsets_20_20_20_20, T.Column$(H.setRuntimeTypeInfo([t4, t5, t7, new T.Padding(C.EdgeInsets_0_16_0_80, new U.HelpText(t9, _null), _null), T.Flex$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_0_16, t10, _null), t6, new T.Padding(C.EdgeInsets_0_0_0_16, t11, _null), t12, new T.Padding(C.EdgeInsets_0_0_0_16, U.TextButton$(false, L.Text$(t1.get$refreshData().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, _null), _null)], t13), C.CrossAxisAlignment_2, t8, _null, C.MainAxisAlignment_2, C.MainAxisSize_1, _null, _null, C.VerticalDirection_1)], t13), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_2, C.MainAxisSize_1, C.VerticalDirection_1), _null); t1 = t13; } return M.Material$(C.Duration_200000, true, _null, t1, C.Clip_0, t3, 0, _null, _null, _null, _null, C.MaterialType_0); } }; T.ConfirmEmail_build_closure.prototype = { call$0: function() { var t1 = this.context; O.passwordCallback(false, new T.ConfirmEmail_build__closure(this.$this, t1, this.localization), t1); }, $signature: 1 }; T.ConfirmEmail_build__closure.prototype = { call$2: function(password, idToken) { var t1 = this.context, t2 = this.localization; O.fieldCallback(new T.ConfirmEmail_build___closure(this.$this, t1, password, idToken), t1, t2.get$email(), null, null, t2.get$changeEmail()); }, $signature: 51 }; T.ConfirmEmail_build___closure.prototype = { call$1: function(value) { var _this = this; _this.$this.viewModel.onChangeEmail.call$4(_this.context, value, _this.password, _this.idToken); }, $signature: 7 }; B.ConfirmEmailBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.ConfirmEmailBuilder_build_closure(), B.confirm_email_vm_ConfirmEmailVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ConfirmEmailVM); } }; B.ConfirmEmailBuilder_build_closure.prototype = { call$2: function(context, viewModel) { return new T.ConfirmEmail(viewModel, null); }, $signature: 2006 }; B.ConfirmEmailVM.prototype = {}; B.ConfirmEmailVM_fromStore_closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 1 }; B.ConfirmEmailVM_fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ResendConfirmation()); }, $signature: 1 }; B.ConfirmEmailVM_fromStore_closure1.prototype = { call$4: function(context, email, password, idToken) { var user, completer, t1 = this.store, t2 = t1.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; user = J.$index$asx(t3._list, t2).userCompany.user.rebuild$1(new B.ConfirmEmailVM_fromStore__closure(email)); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.SaveAuthUserRequest(completer, user, password, idToken)); }, $signature: 585 }; B.ConfirmEmailVM_fromStore__closure.prototype = { call$1: function(b) { b.get$_user_model$_$this()._email = this.email; return b; }, $signature: 78 }; K.DesktopSessionTimeout.prototype = { createState$0: function() { return new K._DesktopSessionTimeoutState(C._StateLifecycle_0); } }; K._DesktopSessionTimeoutState.prototype = { initState$0: function() { this.super$State$initState(); this._desktop_session_timeout$_timer = P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 0, 1, 0), new K._DesktopSessionTimeoutState_initState_closure(this)); }, dispose$0: function(_) { var t1 = this._desktop_session_timeout$_timer; if (t1 != null) t1.cancel$0(0); this._desktop_session_timeout$_timer = null; this.super$State$dispose(0); }, build$1: function(_, context) { var t2, t3, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this._isWarned) { t1 = t1.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "session_about_to_expire"); if (t2 == null) t2 = ""; t2 = T.Expanded$(L.Text$(t2, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "stay_logged_in"); if (t1 == null) t1 = ""; t3 = type$.JSArray_legacy_Widget; return M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_8_16_8, T.Row$(H.setRuntimeTypeInfo([t2, U.TextButton$(false, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _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, new K._DesktopSessionTimeoutState_build_closure(_this, context), _null)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), T.Expanded$(_this._widget.child, 1)], t3), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, C.MaterialColor_Map_JNZaB_4294940672, 0, _null, _null, _null, _null, C.MaterialType_0); } return _this._widget.child; } }; K._DesktopSessionTimeoutState_initState_closure.prototype = { call$1: function(timer) { var store, state, t3, t4, sessionTimeout, t5, sessionLength, t1 = this.$this, t2 = t1._framework$_element; t2.toString; store = O.StoreProvider_of(t2, type$.legacy_AppState); state = store.get$_store$_state(); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); sessionTimeout = t4.$index(t2, t3).userCompany.company.sessionTimeout; if (sessionTimeout !== 0) { t5 = t1._framework$_element; t5.toString; t5 = D.getLayout(t5) === C.AppLayout_mobile; } else t5 = true; if (t5) return; sessionLength = Date.now() - t4.$index(t2, t3).lastUpdated; if (sessionLength > sessionTimeout) J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.UserLogout()); else if (sessionLength > sessionTimeout - 120000) t1.setState$1(new K._DesktopSessionTimeoutState_initState__closure(t1)); }, $signature: 308 }; K._DesktopSessionTimeoutState_initState__closure.prototype = { call$0: function() { this.$this._isWarned = true; }, $signature: 1 }; K._DesktopSessionTimeoutState_build_closure.prototype = { call$0: function() { var store = O.StoreProvider_of(this.context, type$.legacy_AppState), t1 = new P._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new K._DesktopSessionTimeoutState_build__closure(this.$this), type$.Null); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t1, type$._AsyncCompleter_Null), false, false, false)); }, $signature: 1 }; K._DesktopSessionTimeoutState_build__closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new K._DesktopSessionTimeoutState_build___closure(t1)); }, $signature: 3 }; K._DesktopSessionTimeoutState_build___closure.prototype = { call$0: function() { this.$this._isWarned = false; }, $signature: 1 }; E.MessageDialog.prototype = { build$1: function(_, context) { var t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = T.SizedBox$(_null, 20, _null), t3 = L.Text$(_this.message, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), t4 = T.SizedBox$(_null, 40, _null), t5 = type$.JSArray_legacy_Widget, t6 = H.setRuntimeTypeInfo([], t5), t7 = _this.secondaryActions; if (t7 != null) { t8 = H._arrayInstanceType(t7)._eval$1("MappedListIterable<1,Padding*>"); t6.push(T.Row$(P.List_List$of(new H.MappedListIterable(t7, new E.MessageDialog_build_closure(), t8), true, t8._eval$1("ListIterable.E")), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); } t7 = _this.dismissLabel; if (t7 == null) t7 = t1.get$dismiss(); t6.push(new T.Padding(C.EdgeInsets_0_0_10_0, U.TextButton$(false, L.Text$(t7.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MessageDialog_build_closure0(_this, context), _null), _null)); if (_this.onDiscard != null) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "discard_changes"); if (t1 == null) t1 = ""; t6.push(U.TextButton$(true, L.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MessageDialog_build_closure1(_this, context), _null)); } return new T.Padding(new V.EdgeInsets(16, 24, 16, 24), T.Column$(H.setRuntimeTypeInfo([L.PointerInterceptor$(M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_28_28_28_28, T.Column$(H.setRuntimeTypeInfo([t2, t3, t4, T.Row$(t6, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_0)), T.Expanded$(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null); } }; E.MessageDialog_build_closure.prototype = { call$1: function(action) { return new T.Padding(C.EdgeInsets_0_0_10_0, action, null); }, $signature: 2008 }; E.MessageDialog_build_closure0.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; E.MessageDialog_build_closure1.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$0(0); this.$this.onDiscard.call$0(); }, $signature: 1 }; M.ErrorDialog.prototype = { build$1: function(_, context) { var t6, _null = null, t1 = {}, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), t3 = this.error, errorStr = t1.errorStr = H.S(t3), t4 = type$.legacy_Error._is(t3) ? t1.errorStr = errorStr + ("\n\n" + J.toString$0$(t3.get$stackTrace())) : errorStr, t5 = L.Text$(t2.get$error(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = t3 != null ? O.SelectableText$(t4, _null) : T.SizedBox$(_null, _null, _null); t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (this.clearErrorOnDismiss && true) t4.push(U.TextButton$(false, L.Text$(t2.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new M.ErrorDialog_build_closure(context, store), _null)); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "copy"); if (t6 == null) t6 = ""; t4.push(U.TextButton$(false, L.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new M.ErrorDialog_build_closure0(t1), _null)); t4.push(U.TextButton$(true, L.Text$(t2.get$dismiss().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new M.ErrorDialog_build_closure1(this, store, context), _null)); return L.PointerInterceptor$(E.AlertDialog$(t4, C.EdgeInsets_0_0_0_0, _null, t3, C.EdgeInsets_24_20_24_24, _null, _null, t5)); } }; M.ErrorDialog_build_closure.prototype = { call$0: function() { O.confirmCallback(false, new M.ErrorDialog_build__closure(this.store), this.context, null, false, null); }, $signature: 1 }; M.ErrorDialog_build__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 7 }; M.ErrorDialog_build_closure0.prototype = { call$0: function() { T.Clipboard_setData(new T.ClipboardData(this._box_0.errorStr)); }, $signature: 1 }; M.ErrorDialog_build_closure1.prototype = { call$0: function() { if (this.$this.clearErrorOnDismiss) J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ClearLastError()); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; E.HealthCheckDialog.prototype = { createState$0: function() { return new E._HealthCheckDialogState(C._StateLifecycle_0); } }; E._HealthCheckDialogState.prototype = { didChangeDependencies$0: function() { if (this._response == null) this.runCheck$0(); this.super$State$didChangeDependencies(); }, runCheck$0: function() { var t1, state, credentials, _this = this; _this.setState$1(new E._HealthCheckDialogState_runCheck_closure(_this)); t1 = _this._framework$_element; t1.toString; state = O.StoreProvider_of(t1, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); new F.WebClient().$get$2(0, credentials.url + "/health_check", credentials.token).then$1$1(0, new E._HealthCheckDialogState_runCheck_closure0(_this), type$.Null).catchError$1(new E._HealthCheckDialogState_runCheck_closure1(_this)); }, clearCache$0: function() { var t1, store, state, credentials, _this = this; _this.setState$1(new E._HealthCheckDialogState_clearCache_closure(_this)); t1 = _this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); state = store.get$_store$_state(); credentials = state.get$credentials(state); new F.WebClient().$get$2(0, credentials.url + "/ping?clear_cache=true", credentials.token).then$1$1(0, new E._HealthCheckDialogState_clearCache_closure0(_this, store), type$.Null).catchError$1(new E._HealthCheckDialogState_clearCache_closure1(_this)); }, build$1: function(_, context) { var webPhpVersion, cliPhpVersion, t3, t4, t5, t6, t7, _this = this, _null = null, _s14_ = "(\\d+\\.\\d+.\\d+)", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = _this._response; t2 = t2 == null ? _null : t2.phpVersion; t2 = t2 == null ? _null : t2.currentPHPVersion; if (t2 == null) t2 = ""; webPhpVersion = P.RegExp_RegExp(_s14_, true, false).stringMatch$1(t2); t2 = _this._response; t2 = t2 == null ? _null : t2.phpVersion; t2 = t2 == null ? _null : t2.currentPHPCLIVersion; if (t2 == null) t2 = ""; cliPhpVersion = P.RegExp_RegExp(_s14_, true, false).stringMatch$1(t2); t2 = _this._response; if (t2 == null) t2 = T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_16_0_16, U.LinearProgressIndicator$(), _null), L.Text$(t1.get$loading() + "...", _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); else { t2 = "Email: " + t2.emailDriver + "\nQueue: " + t2.queue + "\nPDF: " + C.JSString_methods.replaceFirst$2(t2.pdfEngine, " Generator", ""); t3 = _this._response; t4 = t3.systemHealth; t5 = t3.dbCheck; t3 = t3.phpVersion; t6 = webPhpVersion == cliPhpVersion ? "v" + H.S(webPhpVersion) : "Web: v" + H.S(webPhpVersion) + "\nCLI: v" + H.S(cliPhpVersion); t7 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([new E._HealthListTile("System Health", t4, false, t2, _null, _null), new E._HealthListTile("Database Check", t5, false, _null, _null, _null), new E._HealthListTile("PHP Version", t3.isOkay, false, t6, _null, _null)], t7); t2 = _this._response.pendingJobs; if (t2 > 0) t6.push(new E._HealthListTile("Pending Jobs", true, true, "Count: " + t2, _null, _null)); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; if (!J.$index$asx(t2._list, t3).userCompany.account.isDocker) { t2 = H.setRuntimeTypeInfo([], t7); t3 = _this._response; if (!t3.openBasedir) if (!t3.cacheEnabled) t2.push(new E._HealthListTile("Config not cached", true, true, "Run php artisan optimize to improve performance", _null, _null)); C.JSArray_methods.addAll$1(t6, t2); } if (_this._response.queue === "sync") t6.push(new E._HealthListTile("Queue not enabled", true, true, "Enable the queue for improved performance", "https://invoiceninja.github.io/docs/self-host-installation/#final-setup-steps", _null)); if (_this._response.phantomEnabled) t6.push(new E._HealthListTile("SnapPDF not enabled", true, true, "Use SnapPDF for faster PDF generation", "https://invoiceninja.github.io/docs/self-host-troubleshooting/#pdf-conversion-issues", _null)); t2 = T.Column$(t6, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } if (_this._response == null) t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "clear_cache"); if (t3 == null) t3 = ""; t1 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t3.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E._HealthCheckDialogState_build_closure(_this), _null), U.TextButton$(false, L.Text$(t1.get$refresh(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E._HealthCheckDialogState_build_closure0(_this), _null), U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E._HealthCheckDialogState_build_closure1(context), _null)], type$.JSArray_legacy_Widget); } return E.AlertDialog$(t1, C.EdgeInsets_0_0_0_0, _null, t2, C.EdgeInsets_24_20_24_24, _null, _null, _null); } }; E._HealthCheckDialogState_runCheck_closure.prototype = { call$0: function() { this.$this._response = null; }, $signature: 1 }; E._HealthCheckDialogState_runCheck_closure0.prototype = { call$1: function(response) { var t1 = this.$this; t1.setState$1(new E._HealthCheckDialogState_runCheck__closure(t1, response)); }, $signature: 8 }; E._HealthCheckDialogState_runCheck__closure.prototype = { call$0: function() { this.$this._response = $.$get$serializers().deserializeWith$1$2($.$get$_$healthCheckResponseSerializer(), this.response, type$.legacy_HealthCheckResponse); }, $signature: 1 }; E._HealthCheckDialogState_runCheck_closure1.prototype = { call$1: function(error) { var t1 = this.$this._framework$_element; t1.toString; O.showErrorDialog(false, t1, error); }, $signature: 8 }; E._HealthCheckDialogState_clearCache_closure.prototype = { call$0: function() { this.$this._response = null; }, $signature: 1 }; E._HealthCheckDialogState_clearCache_closure0.prototype = { call$1: function(response) { var t1 = new P._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new E._HealthCheckDialogState_clearCache__closure(this.$this), type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t1, type$._AsyncCompleter_Null), false, false, false)); }, $signature: 8 }; E._HealthCheckDialogState_clearCache__closure.prototype = { call$1: function(value) { this.$this.runCheck$0(); }, $signature: 3 }; E._HealthCheckDialogState_clearCache_closure1.prototype = { call$1: function(error) { var t1 = this.$this._framework$_element; t1.toString; O.showErrorDialog(false, t1, error); }, $signature: 8 }; E._HealthCheckDialogState_build_closure.prototype = { call$0: function() { return this.$this.clearCache$0(); }, $signature: 0 }; E._HealthCheckDialogState_build_closure0.prototype = { call$0: function() { return this.$this.runCheck$0(); }, $signature: 0 }; E._HealthCheckDialogState_build_closure1.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; E._HealthListTile.prototype = { build$1: function(_, context) { var t3, t4, _this = this, _null = null, t1 = L.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t2 = _this.subtitle; if (!(t2 != null)) if (_this.isWarning) t2 = "Warning"; else t2 = _this.isValid ? "Passed" : "Failed"; t2 = L.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.isWarning; if (t3) t4 = C.IconData_59083_MaterialIcons_null_false; else t4 = _this.isValid ? C.IconData_57690_MaterialIcons_null_false : C.IconData_57912_MaterialIcons_null_false; if (t3) t3 = C.MaterialColor_Map_JNZaB_4294940672; else t3 = _this.isValid ? C.MaterialColor_Map_JNEaM_4283215696 : C.MaterialColor_Map_JNc9P_4294198070; t3 = L.Icon$(t4, t3, _null); return Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, _this.url != null ? new E._HealthListTile_build_closure(_this) : _null, false, _null, _null, t2, _null, t1, t3); } }; E._HealthListTile_build_closure.prototype = { call$0: function() { return T.launch(this.$this.url, null, false); }, $signature: 30 }; F.LoadingDialog.prototype = { build$1: function(_, context) { var _null = null; return T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_16_16_16, L.Text$(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$loading() + "...", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Padding(C.EdgeInsets_16_16_16_16, T.SizedBox$(U.LinearProgressIndicator$(), 4, _null), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }; E.multiselectDialog_closure.prototype = { call$1: function(context) { var _this = this, t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "add_column"); if (t1 == null) t1 = ""; return E.MultiSelectList$(t1, C.List_empty1, _this.defaultSelected, true, false, new E.multiselectDialog__closure(_this.onSelected), _this.options, null, _this.selected); }, $signature: 2010 }; E.multiselectDialog__closure.prototype = { call$1: function(values) { return this.onSelected.call$1(values); }, $signature: 206 }; E.MultiSelectList.prototype = { createState$0: function() { return new E.MultiSelectListState(C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); } }; E.MultiSelectListState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.selected; _this.selected = t2 == null ? t1.defaultSelected : t2; _this._multiselect_dialog$_controller = F.ScrollController$(null, 0); }, dispose$0: function(_) { this._multiselect_dialog$_controller.dispose$0(0); this.super$State$dispose(0); }, lookupOption$1: function(value) { var t1, parts; value = J.replaceFirst$2$s(value, "$", ""); t1 = this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); parts = value.split("."); if (parts.length === 1 || J.$eq$(parts[0], this._widget.prefix)) return t1.lookup$1(C.JSArray_methods.get$last(parts)); else return C.JSString_methods.$add(J.$add$ansx(t1.lookup$1(parts[0]), " "), t1.lookup$1(parts[1])); }, build$1: function(_, context) { var keys, t3, t4, t5, t6, t7, t8, column, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = type$.legacy_String, options = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t2 = _this._widget.options; t2.toString; new H.WhereIterable(t2, new E.MultiSelectListState_build_closure(_this), H._arrayInstanceType(t2)._eval$1("WhereIterable<1>")).forEach$1(0, new E.MultiSelectListState_build_closure0(_this, state, options)); t2 = options.get$keys(options); keys = P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")); C.JSArray_methods.sort$1(keys, new E.MultiSelectListState_build_closure1(_this)); t2 = D.getLayout(context) === C.AppLayout_mobile ? 17976931348623157e292 : 400; t3 = _this._widget.addTitle; t4 = H._arrayInstanceType(keys)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t4 = P.List_List$of(new H.MappedListIterable(keys, new E.MultiSelectListState_build_closure2(options), t4), true, t4._eval$1("ListIterable.E")); t5 = T.SizedBox$(_null, 20, _null); t6 = _this._multiselect_dialog$_controller; t7 = J.asMap$0$ax(_this.selected); t8 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t3, _null, new E.MultiSelectListState_build_closure3(_this), t4, _null, true, "", _null, type$.AppDropdownButton_legacy_String), t5, T.Expanded$(Z.ReorderableListView$(t7.get$entries(t7).map$1$1(0, new E.MultiSelectListState_build_closure4(_this, state, context), type$.legacy_Padding).toList$0(0), new E.MultiSelectListState_build_closure5(_this), t6), 1)], t8); if (!_this._widget.isDialog) t6.push(new T.Padding(C.EdgeInsets_0_10_0_0, T.Row$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$reset(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MultiSelectListState_build_closure6(_this), _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null), _null)); column = M.Container$(_null, T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2); if (_this._widget.isDialog) { t2 = t1.get$editColumns(); t3 = L.Text$(t1.get$editColumns(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$reset(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MultiSelectListState_build_closure7(_this), _null), U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MultiSelectListState_build_closure8(context), _null), U.TextButton$(false, L.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E.MultiSelectListState_build_closure9(_this, context), _null)], t8), C.EdgeInsets_0_0_0_0, _null, column, C.EdgeInsets_24_20_24_24, _null, t2, t3); t1 = t3; } else t1 = column; return t1; } }; E.MultiSelectListState_build_closure.prototype = { call$1: function(option) { var t1 = this.$this; return !J.contains$1$asx(t1.selected, option) || C.JSArray_methods.contains$1(t1._widget.allowDuplicates, option); }, $signature: 16 }; E.MultiSelectListState_build_closure0.prototype = { call$1: function(option) { var columnTitle, t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; columnTitle = J.$index$asx(t2._list, t1).userCompany.company.getCustomFieldLabel$1(option); t1 = columnTitle.length === 0 ? this.$this.lookupOption$1(option) : columnTitle; this.options.$indexSet(0, option, t1); }, $signature: 7 }; E.MultiSelectListState_build_closure1.prototype = { call$2: function(a, b) { var t1 = this.$this; return C.JSString_methods.compareTo$1(t1.lookupOption$1(a).toLowerCase(), t1.lookupOption$1(b).toLowerCase()); }, $signature: 18 }; E.MultiSelectListState_build_closure2.prototype = { call$1: function(option) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.options.$index(0, option), _null, _null, _null, _null, _null, _null, _null, _null, _null), option, type$.legacy_String); }, $signature: 36 }; E.MultiSelectListState_build_closure3.prototype = { call$1: function(value) { var t1, t2; if (H.S(value).length === 0) return; t1 = this.$this; if (J.contains$1$asx(t1.selected, value) && !C.JSArray_methods.contains$1(t1._widget.allowDuplicates, value)) return; t1.setState$1(new E.MultiSelectListState_build__closure3(t1, value)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 8 }; E.MultiSelectListState_build__closure3.prototype = { call$0: function() { J.add$1$ax(this.$this.selected, this.value); }, $signature: 1 }; E.MultiSelectListState_build_closure4.prototype = { call$1: function(entry) { var columnTitle, t3, t4, _null = null, option = entry.get$value(entry), t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; columnTitle = J.$index$asx(t2._list, t1).userCompany.company.getCustomFieldLabel$1(option); t1 = "__" + H.S(entry.get$key(entry)) + "_" + H.S(entry.get$value(entry)) + "__"; t2 = this.$this; t3 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57706_MaterialIcons_null_false, _null, _null), 24, new E.MultiSelectListState_build__closure2(t2, option), C.EdgeInsets_8_8_8_8, _null, _null); t4 = T.SizedBox$(_null, _null, 20); t2 = columnTitle.length === 0 ? t2.lookupOption$1(option) : columnTitle; return new T.Padding(C.EdgeInsets_10_3_10_3, T.Row$(H.setRuntimeTypeInfo([t3, t4, T.Expanded$(L.Text$(t2, _null, _null, _null, _null, _null, K.Theme_of(this.context).textTheme.subtitle1, C.TextAlign_0, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new D.ValueKey(t1, type$.ValueKey_legacy_String)); }, $signature: 2013 }; E.MultiSelectListState_build__closure2.prototype = { call$0: function() { var t2, t1 = this.$this; t1.setState$1(new E.MultiSelectListState_build___closure(t1, this.option)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; E.MultiSelectListState_build___closure.prototype = { call$0: function() { return J.remove$1$ax(this.$this.selected, this.option); }, $signature: 19 }; E.MultiSelectListState_build_closure5.prototype = { call$2: function(oldIndex, newIndex) { var t2, t3, t1 = {}; t1.newIndex = newIndex; t2 = this.$this; t3 = newIndex > J.get$length$asx(t2.selected) ? t1.newIndex = J.get$length$asx(t2.selected) : newIndex; if (oldIndex < t3) t1.newIndex = t3 - 1; t2.setState$1(new E.MultiSelectListState_build__closure1(t1, t2, oldIndex)); t1 = t2._widget; if (t1.liveChanges) t1.onSelected$1(t2.selected); }, $signature: 141 }; E.MultiSelectListState_build__closure1.prototype = { call$0: function() { var t1 = this.$this, t2 = this.oldIndex, field = J.$index$asx(t1.selected, t2); J.removeAt$1$ax(t1.selected, t2); J.insert$2$ax(t1.selected, this._box_0.newIndex, field); }, $signature: 1 }; E.MultiSelectListState_build_closure6.prototype = { call$0: function() { var t2, t1 = this.$this; t1.setState$1(new E.MultiSelectListState_build__closure0(t1)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 1 }; E.MultiSelectListState_build__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.defaultSelected; t2 = H.setRuntimeTypeInfo(t2.slice(0), H.instanceType(t2)); return t1.selected = t2; }, $signature: 584 }; E.MultiSelectListState_build_closure7.prototype = { call$0: function() { var t2, t1 = this.$this; t1.setState$1(new E.MultiSelectListState_build__closure(t1)); t2 = t1._widget; if (t2.liveChanges) t2.onSelected$1(t1.selected); }, $signature: 1 }; E.MultiSelectListState_build__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.defaultSelected; t2 = H.setRuntimeTypeInfo(t2.slice(0), H.instanceType(t2)); return t1.selected = t2; }, $signature: 584 }; E.MultiSelectListState_build_closure8.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; E.MultiSelectListState_build_closure9.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); var t1 = this.$this; t1._widget.onSelected$1(t1.selected); }, $signature: 1 }; L.DismissibleEntity.prototype = { build$1: function(_, context) { var t2, t3, widget, t4, t5, t6, _this = this, _null = null, t1 = _this.entity; if (!_this.userCompany.canEditEntity$1(t1)) return _this.child; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().getUIState$1(t1.get$entityType()).get$listUIState().selectedIds; t3 = _this.isSelected && _this.showCheckbox && _this.isDismissible && t3 == null && !t1.get$entityType().get$isSetting(); widget = new N.SelectedIndicator(new T.ConstrainedBox(new S.BoxConstraints(0, 1 / 0, 60, 1 / 0), _this.child, _null), t3, false, _null); if (!_this.isDismissible) return widget; t3 = "__" + ("__" + H.S(t1.get$entityType()) + "__" + t1.get$id(t1) + "__") + "_"; if (!t1.get$isArchived() && !t1.get$isDeleted(t1)) t4 = "active"; else t4 = t1.get$isArchived() ? "archived" : "deleted"; t4 = t3 + t4 + "__"; t3 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t3); if (_this.showCheckbox) { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "select"); if (t6 == null) t6 = ""; t5.push(R.IconSlideAction$(t6, C.MaterialColor_Map_JN0Sr_4278228616, C.Color_4294967295, C.IconData_57687_MaterialIcons_null_false, new L.DismissibleEntity_build_closure(_this))); } t5.push(R.IconSlideAction$(t2.get$more(), C.Color_1929379840, C.Color_4294967295, C.IconData_58372_MaterialIcons_null_false, new L.DismissibleEntity_build_closure0(_this))); if (!t1.get$isArchived() && !t1.get$isDeleted(t1)) { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "archive"); if (t6 == null) t6 = ""; t6 = R.IconSlideAction$(t6, C.MaterialColor_Map_JNZaB_4294940672, C.Color_4294967295, C.IconData_57489_MaterialIcons_null_false, new L.DismissibleEntity_build_closure1(_this)); } else t6 = R.IconSlideAction$(t2.get$restore(t2), C.MaterialColor_Map_JNwaj_4280391411, C.Color_4294967295, C.IconData_58676_MaterialIcons_null_false, new L.DismissibleEntity_build_closure2(_this)); t2 = H.setRuntimeTypeInfo([t6, t1.get$isDeleted(t1) ? R.IconSlideAction$(t2.get$restore(t2), C.MaterialColor_Map_JNwaj_4280391411, C.Color_4294967295, C.IconData_58676_MaterialIcons_null_false, new L.DismissibleEntity_build_closure3(_this)) : R.IconSlideAction$(t2.get$$delete(t2), C.MaterialColor_Map_JNc9P_4294198070, C.Color_4294967295, C.IconData_57785_MaterialIcons_null_false, new L.DismissibleEntity_build_closure4(_this))], t3); return new A.Slidable(widget, _null, new A.SlideActionListDelegate(t5), new A.SlideActionListDelegate(t2), new V.SlidableDrawerActionPane(_null), _null, 0.25, C.Axis_0, 0.5, C.Duration_200000, true, true, 2500, new D.ValueKey(t4, type$.ValueKey_String)); } }; L.DismissibleEntity_build_closure.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_toggleMultiselect, false); return null; }, $signature: 0 }; L.DismissibleEntity_build_closure0.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_more, false); return null; }, $signature: 0 }; L.DismissibleEntity_build_closure1.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_archive, false); return null; }, $signature: 0 }; L.DismissibleEntity_build_closure2.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_restore, false); return null; }, $signature: 0 }; L.DismissibleEntity_build_closure3.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_restore, false); return null; }, $signature: 0 }; L.DismissibleEntity_build_closure4.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), C.EntityAction_delete, false); return null; }, $signature: 0 }; V.DocumentGrid.prototype = { build$1: function(_, context) { var t4, t5, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = type$.JSArray_legacy_Widget, t3 = H.setRuntimeTypeInfo([], t2); if (Y.cleanApiUrl(state.authState.url) === "https://invoicing.co") { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; t5 = J.$index$asx(t4._list, t5).userCompany.account.plan === "enterprise"; t4 = t5; } else t4 = true; if (t4) { t4 = H.setRuntimeTypeInfo([], t2); if (D.isAndroid() || D.isIOS()) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "take_picture"); if (t5 == null) t5 = ""; C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([T.Expanded$(new D.AppButton(_null, C.IconData_57648_MaterialIcons_null_false, t5, new V.DocumentGrid_build_closure(this), _null, _null), 1), T.SizedBox$(_null, _null, 14)], t2)); } t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "upload_file"); if (t1 == null) t1 = ""; t4.push(T.Expanded$(new D.AppButton(_null, C.IconData_58178_MaterialIcons_null_false, t1, new V.DocumentGrid_build_closure0(this), _null, _null), 1)); t3.push(new T.Padding(C.EdgeInsets_16_0_16_16, T.Row$(t4, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); } else t3.push(new T.Padding(new V.EdgeInsets(0, 30, 0, 30), T.Center$(L.Text$(t1.get$requiresAnEnterprisePlan(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 18, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), _null)); t3.push(new G.ListDivider(_null)); t3.push(new A.LayoutBuilder(new V.DocumentGrid_build_closure1(this), _null)); return new X.ScrollableListView(t3, _null, _null, false, _null); } }; V.DocumentGrid_build_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, image, $async$temp1, $async$temp2, $async$temp3; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 5; return P._asyncAwait($.$get$PermissionHandlerPlatform__instance().checkPermissionStatus$1(C.Permission_1), $async$call$0); case 5: // returning from await. $async$goto = $async$result === C.PermissionStatus_1 ? 2 : 4; break; case 2: // then $async$goto = 6; return P._asyncAwait(new L.ImagePicker().pickImage$1$source(C.ImageSource_0), $async$call$0); case 6: // returning from await. image = $async$result; $async$goto = image != null && image.get$path(image) != null ? 7 : 8; break; case 7: // then $async$temp1 = $async$self.$this.onUploadDocument; $async$temp2 = K; $async$temp3 = "documents[]"; $async$goto = 9; return P._asyncAwait(image.readAsBytes$0(), $async$call$0); case 9: // returning from await. $async$temp1.call$1($async$temp2.MultipartFile_MultipartFile$fromBytes($async$temp3, $async$result, C.JSArray_methods.get$last(image.get$path(image).split("/")))); case 8: // join // goto join $async$goto = 3; break; case 4: // else $.$get$PermissionHandlerPlatform__instance().openAppSettings$0(); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; V.DocumentGrid_build_closure0.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, multipartFile; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(Q.pickFile(C.List_gkc, "documents[]", null), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) $async$self.$this.onUploadDocument.call$1(multipartFile); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; V.DocumentGrid_build_closure1.prototype = { call$2: function(context, constraints) { var t1 = this.$this; return B.GridView$count((constraints.maxWidth / 2 - 8) / 200, J.map$1$1$ax(t1.documents._copy_on_write_list$_list, new V.DocumentGrid_build__closure(t1), type$.legacy_DocumentTile).toList$0(0), 2, 0, 0, new V.EdgeInsets(6, 6, 6, 6), new L.NeverScrollableScrollPhysics(null), true, true); }, $signature: 343 }; V.DocumentGrid_build__closure.prototype = { call$1: function($document) { var t1 = this.$this; return new V.DocumentTile($document, t1.onDeleteDocument, t1.onViewExpense, null); }, $signature: 2016 }; V.DocumentTile.prototype = { build$1: function(_, context) { var t4, t5, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = this.document, t3 = t2.name; t3 = L.Text$(t3, _null, 1, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null); t4 = t2.createdAt; t5 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_4_4_4_4, V.Card$(T.Column$(H.setRuntimeTypeInfo([new V.DocumentPreview(t2, 110, _null), new T.Padding(C.EdgeInsets_4_4_4_4, T.Stack$(C.AlignmentDirectional_m1_m1, H.setRuntimeTypeInfo([T.Column$(H.setRuntimeTypeInfo([t3, L.Text$(Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t4 * 1000, false).toIso8601String$0(), context, true, true, false) + "\n" + Y.formatSize(t2.size), _null, 2, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.caption, _null, _null, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), new T.Align(C.Alignment_1_1, _null, _null, new T.Padding(C.EdgeInsets_0_22_0_0, Z.PopupMenuButton$(_null, _null, true, _null, _null, new V.DocumentTile_build_closure(t1), new V.DocumentTile_build_closure0(this, t1, state, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_String), _null), _null)], t5), C.Clip_1, C.StackFit_0, _null, _null), _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null, 4, _null, true, _null), _null)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, get$document: function(receiver) { return this.document; } }; V.DocumentTile_build_closure0.prototype = { call$1: function(value) { return this.$call$body$DocumentTile_build_closure(value); }, $call$body$DocumentTile_build_closure: function(value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.localization; if (value === t1.get$view(t1)) { t1 = $async$self.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; T.launch(J.$index$asx(t2._list, t1).userCompany.account.defaultUrl + ("/documents/" + $async$self.$this.document.hash) + "?inline=true", null, false); } else if (value === t1.get$download(t1)) { t1 = $async$self.state; t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; T.launch(J.$index$asx(t2._list, t1).userCompany.account.defaultUrl + ("/documents/" + $async$self.$this.document.hash), null, false); } else if (value === t1.get$$delete(t1)) { t1 = $async$self.context; O.confirmCallback(false, new V.DocumentTile_build__closure($async$self.$this, t1), t1, null, false, null); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "view_expense"); if (value === (t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), "view_expense") : t1)) { t1 = $async$self.$this; t1.onViewExpense.call$1(t1.document); } } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 296 }; V.DocumentTile_build__closure.prototype = { call$1: function(_) { var t1 = this.context; O.passwordCallback(false, new V.DocumentTile_build___closure(this.$this, t1), t1); }, $signature: 7 }; V.DocumentTile_build___closure.prototype = { call$2: function(password, idToken) { var t1 = this.$this; t1.onDeleteDocument.call$3(t1.document, password, idToken); K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 51 }; V.DocumentTile_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = this.localization, t2 = type$.legacy_String; return H.setRuntimeTypeInfo([Z.PopupMenuItem$(new U.IconText(t1.get$view(t1), C.IconData_58458_MaterialIcons_null_false, _null, _null, _null), t1.get$view(t1), t2), Z.PopupMenuItem$(new U.IconText(t1.get$download(t1), C.IconData_57857_MaterialIcons_null_false, _null, _null, _null), t1.get$download(t1), t2), Z.PopupMenuItem$(new U.IconText(t1.get$$delete(t1), C.IconData_57785_MaterialIcons_null_false, _null, _null, _null), t1.get$$delete(t1), t2)], type$.JSArray_legacy_PopupMenuEntry_legacy_String); }, $signature: 357 }; V.DocumentPreview.prototype = { build$1: function(_, context) { var _this = this, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = H.setRuntimeTypeInfo(["png", "jpg", "jpeg"], type$.JSArray_legacy_String), t2 = _this.document, t3 = t2.type; if (C.JSArray_methods.contains$1(t1, t3)) { t1 = t2.preview; t2 = t2.url; t3 = type$.legacy_String; return A.CachedNetworkImage$(new V.DocumentPreview_build_closure(), C.BoxFit_2, _this.height, P.LinkedHashMap_LinkedHashMap$_literal(["X-API-TOKEN", state.get$credentials(state).token], t3, t3), C.ImageRenderMethodForWeb_1, t2, new D.ValueKey(t1, type$.ValueKey_legacy_String), new V.DocumentPreview_build_closure0(_this), 1 / 0); } return T.SizedBox$(L.Icon$(Q.getFileTypeIcon(t3), null, 40), _this.height, 1 / 0); }, get$document: function(receiver) { return this.document; } }; V.DocumentPreview_build_closure0.prototype = { call$2: function(context, url) { var _null = null; return M.Container$(_null, T.Center$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, this.$this.height, _null, _null, _null, _null, _null, _null); }, $signature: 2019 }; V.DocumentPreview_build_closure.prototype = { call$3: function(context, url, error) { var _null = null; return L.Text$(H.S(error) + ": " + H.S(url), _null, 6, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); }, $signature: 2020 }; K.EditScaffold.prototype = { build$1: function(_, context) { var t2, isEnabled, t3, t4, t5, t6, t7, upgradeMessage, trialStarted, countDays, isCancelEnabled, showUpgradeBanner, _this = this, _null = null, _s21_ = "free_trial_ends_today", _s23_ = "free_trial_ends_in_days", _s20_ = "https://invoicing.co", store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (D.getLayout(context) !== C.AppLayout_mobile) { t2 = state.uiState; t2 = !C.JSString_methods.startsWith$1(t2.currentRoute, "/settings") || t2.get$isEditing() || t2.settingsUIState.isChanged; } else t2 = true; if (t2) if (!state.isSaving) { t2 = _this.entity; t2 = t2 == null ? _null : t2.get$isEditable(); t2 = t2 !== false; isEnabled = t2; } else isEnabled = false; else isEnabled = false; t2 = state.userCompanyStates; t3 = state.uiState; t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); if (t5.$index(t2, t4).userCompany.isOwner) { t6 = t1.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "upgrade_to_paid_plan"); upgradeMessage = t7 == null ? "" : t7; } else { t6 = t1.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "owner_upgrade_to_paid_plan"); upgradeMessage = t7 == null ? "" : t7; } if (t5.$index(t2, t4).userCompany.account.trialPlan.length !== 0) { trialStarted = Y.convertSqlDateToDateTime(t5.$index(t2, t4).userCompany.account.trialStarted); countDays = C.JSInt_methods._tdivFast$1(P.Duration$(0, 0, 0, trialStarted.add$1(0, P.Duration$(14, 0, 0, 0, 0, 0))._value - trialStarted._value, 0, 0)._duration, 864e8); if (countDays <= 1) { t1.toString; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), _s21_); upgradeMessage = t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s21_) : t1; } else { t1.toString; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), _s23_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s23_); upgradeMessage = J.replaceFirst$2$s(t1, ":count", C.JSInt_methods.toString$0(countDays)); } } t1 = state.authState.url; if (!(Y.cleanApiUrl(t1) !== _s20_ || t5.$index(t2, t4).userCompany.account.plan === "enterprise" || t5.$index(t2, t4).userCompany.account.plan === "pro") || t5.$index(t2, t4).userCompany.account.trialPlan.length !== 0) if (C.JSArray_methods.contains$1(C.List_m5d, t3.get$baseSubRoute())) { if (!(Y.cleanApiUrl(t1) !== _s20_ || t5.$index(t2, t4).userCompany.account.plan === "enterprise" || t5.$index(t2, t4).userCompany.account.plan === "pro") && t5.$index(t2, t4).userCompany.account.trialPlan.length === 0 && isEnabled) { isEnabled = false; isCancelEnabled = true; } else isCancelEnabled = false; showUpgradeBanner = true; } else { showUpgradeBanner = t3.currentRoute === "/settings/account_management" && true; isCancelEnabled = false; } else { isCancelEnabled = C.JSString_methods.contains$1("company_gateways_edit", t3.get$baseSubRoute()) && true; showUpgradeBanner = false; } if (showUpgradeBanner && !D.isApple()) { t1 = t5.$index(t2, t4).userCompany.isOwner ? new K.EditScaffold_build_closure(state) : _null; t1 = T.Column$(H.setRuntimeTypeInfo([R.InkWell$(false, _null, true, new S.IconMessage(upgradeMessage, _null, C.MaterialColor_Map_JNZaB_4294940672, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null), T.Expanded$(_this.body, 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } else t1 = _this.body; t2 = D.getLayout(context) === C.AppLayout_desktop ? new A.MenuDrawerBuilder(_null) : _null; t3 = D.getLayout(context); t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4); t6 = _this.entity; if (t6 != null && !t6.get$isNew()) C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 16), new V.EntityStatusChip(state.getEntity$2(t6.get$entityType(), t6.get$id(t6)), 105, _null)], t4)); t5 = T.Row$(t5, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t4 = H.setRuntimeTypeInfo([], t4); if (state.isSaving) t4.push(new T.Padding(C.EdgeInsets_0_0_20_0, T.Center$(T.SizedBox$(U.CircularProgressIndicator$(_null, C.Color_4294967295, _null, _null, _null, 4, _null, _null), 26, 26), _null, _null), _null)); else { t6 = isEnabled && _this.onSavePressed != null; t7 = D.getLayout(context) === C.AppLayout_mobile ? _null : new K.EditScaffold_build_closure0(_this, store); t4.push(V.SaveCancelButtons$(isCancelEnabled, t6, true, t7, new K.EditScaffold_build_closure1(_this), _this.saveLabel)); } if (_this.actions != null) t4.push(Z.PopupMenuButton$(_null, _null, isEnabled, L.Icon$(C.IconData_58372_MaterialIcons_null_false, _null, _null), _null, new K.EditScaffold_build_closure2(_this), new K.EditScaffold_build_closure3(_this, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction)); t6 = _this.isFullscreen && D.getLayout(context) === C.AppLayout_desktop ? _null : _this.appBarBottom; return new F.WillPopScope(U.FocusTraversalGroup$(M.Scaffold$(E.AppBar$(t4, _null, t3 === C.AppLayout_mobile, _null, _null, t6, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t5, _null, _null, _null, 1, _null), _null, t1, _this.bottomNavigationBar, t2, _null, _this.floatingActionButton, C.C__EndDockedFabLocation), _null), new K.EditScaffold_build_closure4(), _null); }, get$body: function(receiver) { return this.body; } }; K.EditScaffold_build_closure4.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; K.EditScaffold_build_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; t2 = t1.uiState.selectedCompanyIndex; T.launch(J.$index$asx(t1.userCompanyStates._list, t2).userCompany.ninjaPortalUrl, null, false); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; K.EditScaffold_build_closure1.prototype = { call$1: function(context) { L.FocusScope_of(context).unfocus$1$disposition(C.UnfocusDisposition_1); this.$this.onSavePressed.call$1(context); }, $signature: 14 }; K.EditScaffold_build_closure0.prototype = { call$1: function(context) { var t1 = this.$this.onCancelPressed; if (t1 != null) t1.call$1(context); else J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ResetSettings()); }, $signature: 14 }; K.EditScaffold_build_closure2.prototype = { call$1: function(context) { var t2, t1 = this.$this.actions; t1.toString; t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); return P.List_List$of(new H.MappedListIterable(t1, new K.EditScaffold_build__closure(context), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 581 }; K.EditScaffold_build__closure.prototype = { call$1: function(action) { var _null = null, t1 = this.context; return Z.PopupMenuItem$(T.Row$(H.setRuntimeTypeInfo([L.Icon$(Q.getEntityActionIcon(action), K.Theme_of(t1).accentColor, _null), T.SizedBox$(_null, _null, 16), L.Text$(L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(J.toString$0$(action)), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), action, type$.legacy_EntityAction); }, $signature: 580 }; K.EditScaffold_build_closure3.prototype = { call$1: function(action) { return this.$this.onActionPressed.call$2(this.context, action); }, $signature: 2024 }; L.showEntityActionsDialog_closure.prototype = { call$1: function(entityAction) { var _null = null; if (entityAction == null) return Z.Divider$(_null, _null, _null); else return new L.EntityActionListTile(this.entities, entityAction, this.mainContext, this.completer, _null); }, $signature: 2025 }; L.showEntityActionsDialog_closure0.prototype = { call$1: function(dialogContext) { return E.SimpleDialog$(this.actions); }, $signature: 176 }; L.EntityActionListTile.prototype = { build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.action; return Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityActionIcon(t2), _null, _null), _null, new L.EntityActionListTile_build_closure(this, context), false, _null, _null, _null, _null, L.Text$(t1.lookup$1(A.toSnakeCase(t2.super$EnumClass$toString(0))), _null, _null, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null); } }; L.EntityActionListTile_build_closure.prototype = { call$0: function() { var first, t1 = this.$this, t2 = t1.completer; if (t2 != null) t2.complete$1(0, null); K.Navigator_of(this.context, false).pop$0(0); t2 = t1.entities; first = C.JSArray_methods.get$first(t2); switch (first.get$entityType()) { case C.EntityType_client: E.handleClientAction(t1.mainContext, t2, t1.action); break; case C.EntityType_product: Z.handleProductAction(t1.mainContext, t2, t1.action); break; case C.EntityType_invoice: Q.handleInvoiceAction(t1.mainContext, t2, t1.action); break; case C.EntityType_recurringInvoice: N.handleRecurringInvoiceAction(t1.mainContext, t2, t1.action); break; case C.EntityType_payment: Q.handlePaymentAction(t1.mainContext, t2, t1.action); break; case C.EntityType_quote: E.handleQuoteAction(t1.mainContext, t2, t1.action); break; case C.EntityType_credit: E.handleCreditAction(t1.mainContext, t2, t1.action); break; case C.EntityType_task: U.handleTaskAction(t1.mainContext, t2, t1.action); break; case C.EntityType_project: M.handleProjectAction(t1.mainContext, t2, t1.action); break; case C.EntityType_vendor: L.handleVendorAction(t1.mainContext, t2, t1.action); break; case C.EntityType_expense: T.handleExpenseAction(t1.mainContext, t2, t1.action); break; case C.EntityType_companyGateway: Q.handleCompanyGatewayAction(t1.mainContext, t2, t1.action); break; case C.EntityType_group: Q.handleGroupAction(t1.mainContext, t2, t1.action); break; case C.EntityType_taxRate: A.handleTaxRateAction(t1.mainContext, t2, t1.action); break; case C.EntityType_user: X.handleUserAction(t1.mainContext, t2, t1.action); break; case C.EntityType_design: N.handleDesignAction(t1.mainContext, t2, t1.action); break; case C.EntityType_paymentTerm: D.handlePaymentTermAction(t1.mainContext, t2, t1.action); break; case C.EntityType_token: Q.handleTokenAction(t1.mainContext, t2, t1.action); break; case C.EntityType_webhook: S.handleWebhookAction(t1.mainContext, t2, t1.action); break; case C.EntityType_expenseCategory: X.handleExpenseCategoryAction(t1.mainContext, t2, t1.action); break; case C.EntityType_taskStatus: V.handleTaskStatusAction(t1.mainContext, t2, t1.action); break; case C.EntityType_subscription: A.handleSubscriptionAction(t1.mainContext, t2, t1.action); break; default: throw H.wrapException("Error: unhandled entity type " + H.S(first.get$entityType())); } }, $signature: 1 }; O.EntityListTile.prototype = { createState$0: function() { return new O._EntityListTileState(C._StateLifecycle_0); } }; O._EntityListTileState.prototype = { build$1: function(_, context) { var state, t2, t3, t4, t5, isFilteredBy, entityClient, isHovered, t6, leading, trailing, _this = this, _null = null, t1 = _this._widget.entity; if (t1 == null || t1.get$isNew()) return T.SizedBox$(_null, _null, _null); state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.uiState; t2 = t1.filterStack._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isEmpty(t2)) t4 = _null; else { t4 = t3.get$last(t2); t4 = t4.get$id(t4); } t5 = _this._widget.entity; if (t4 === t5.get$id(t5)) { t2 = t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType(); isFilteredBy = t2 == _this._widget.entity.get$entityType(); } else isFilteredBy = false; t2 = _this._widget; t3 = type$.legacy_BelongsToClient; if (t3._is(t2.entity)) { t2 = state.userCompanyStates; t4 = t1.selectedCompanyIndex; t4 = J.$index$asx(t2._list, t4).clientState.map; t3 = t3._as(_this._widget.entity); t3 = t3.get$clientId(t3); t3 = J.$index$asx(t4._map$_map, t3); entityClient = t3; } else entityClient = _null; t2 = $.RendererBinding__instance.RendererBinding__mouseTracker._mouseStates; isHovered = !t2.get$isNotEmpty(t2) && isFilteredBy || _this._entity_list_tile$_isHovered; t2 = isHovered ? C.IconData_58372_MaterialIcons_null_false : Q.getEntityIcon(_this._widget.entity.get$entityType()); t3 = isHovered ? _null : 18; t4 = _this._widget.entity; t5 = state.userCompanyStates; t6 = t1.selectedCompanyIndex; t6 = t4.getActions$3$client$includeEdit$userCompany(entityClient, true, J.$index$asx(t5._list, t6).userCompany); t5 = _this._widget.entity; leading = D.ActionMenuButton$(t5, t6, t2, t3, false, new O._EntityListTileState_build_closure(_this)); if (t5.get$createdAt() === 0) trailing = _null; else { t2 = !isHovered || _this._widget.isFilter; trailing = new T.IgnorePointer(t2, _null, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(isHovered || _this._widget.isFilter || D.getLayout(context) === C.AppLayout_mobile || J.get$isNotEmpty$asx(t1.previewStack._list) ? C.IconData_57695_MaterialIcons_null_true : C.IconData_57984_MaterialIcons_null_false, _null, _null), 24, new O._EntityListTileState_build_closure0(_this, context), C.EdgeInsets_8_8_8_8, _null, _null), _null); } t1 = isFilteredBy && D.getLayout(context) === C.AppLayout_desktop; t2 = new Q.EntityPresenter(); t2.entity = _this._widget.entity; t2.context = context; t2 = L.Text$(t2.title$0(0), _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t3 = _this._widget; t4 = t3.subtitle; if ((t4 == null ? "" : t4).length === 0) { t3 = t3.entity; t3 = !t3.get$isArchived() && !t3.get$isDeleted(t3); } else t3 = false; if (t3) t3 = _null; else { t3 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t4 = _this._widget.subtitle; if ((t4 == null ? "" : t4).length !== 0) t3.push(L.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t4 = _this._widget.entity; if (!(!t4.get$isArchived() && !t4.get$isDeleted(t4))) t3.push(new L.EntityStateLabel(_this._widget.entity, _null)); t3 = T.Column$(t3, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } t4 = _this._widget; t5 = t4.subtitle; if ((t5 == null ? "" : t5).length !== 0) { t4 = t4.entity; t4 = !(!t4.get$isArchived() && !t4.get$isDeleted(t4)); } else t4 = false; return new T.MouseRegion(new O._EntityListTileState_build_closure1(_this), _null, new O._EntityListTileState_build_closure2(_this), C.C__DeferringMouseCursor, true, T.Column$(H.setRuntimeTypeInfo([new N.SelectedIndicator(Q.ListTile$(false, C.EdgeInsets_16_0_16_0, _null, true, t4, _null, leading, new O._EntityListTileState_build_closure3(_this), new O._EntityListTileState_build_closure4(_this), false, _null, _null, t3, _null, t2, trailing), t1, true, _null), new G.ListDivider(_null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null); } }; O._EntityListTileState_build_closure.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this._widget.entity], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; O._EntityListTileState_build_closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.entity; return M.viewEntity(D.getLayout(this.context) === C.AppLayout_desktop && !t1._widget.isFilter, t2, null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; O._EntityListTileState_build_closure1.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._EntityListTileState_build__closure0(t1)); }, $signature: 350 }; O._EntityListTileState_build__closure0.prototype = { call$0: function() { return this.$this._entity_list_tile$_isHovered = true; }, $signature: 19 }; O._EntityListTileState_build_closure2.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._EntityListTileState_build__closure(t1)); }, $signature: 312 }; O._EntityListTileState_build__closure.prototype = { call$0: function() { return this.$this._entity_list_tile$_isHovered = false; }, $signature: 19 }; O._EntityListTileState_build_closure4.prototype = { call$0: function() { return M.inspectEntity(this.$this._widget.entity, false); }, $signature: 0 }; O._EntityListTileState_build_closure3.prototype = { call$0: function() { return M.inspectEntity(this.$this._widget.entity, true); }, $signature: 0 }; O.EntitiesListTile.prototype = { createState$0: function() { return new O._EntitiesListTileState(C._StateLifecycle_0); } }; O._EntitiesListTileState.prototype = { _entity_list_tile$_onLongPress$0: function() { var store, uiState, entity, t2, t3, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); uiState = store.get$_store$_state().uiState; entity = this._widget.entity; t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t3 = null; else { t3 = t2.get$last(t1); t3 = t3.get$id(t3); } if (t3 === entity.get$id(entity)) { t1 = t2.get$isEmpty(t1) ? null : t2.get$last(t1).get$entityType(); t1 = t1 != entity.get$entityType(); } else t1 = true; if (t1) J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.FilterByEntity(entity, false)); t1 = D.EntityAction_newEntityType(this._widget.entityType); M.handleEntitiesActions(H.setRuntimeTypeInfo([entity], type$.JSArray_legacy_BaseEntity), t1, false); }, build$1: function(_, context) { var t3, t4, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.uiState, mainRoute = t1.get$mainRoute(), t2 = _this._widget, isFilterMatch = t2.isFilter && t2.entityType.toString$0(0) === A.toCamelCase(mainRoute); t2 = _this._widget; t3 = L.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = t2.subtitle; t2 = L.Text$(t2.length === 0 ? L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$none() : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._entity_list_tile$_isHovered) if (!_this._widget.hideNew) { t4 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t1 = J.$index$asx(t4._list, t1).userCompany.can$2(C.UserPermission_create, _this._widget.entityType); } else t1 = false; else t1 = false; t1 = t1 ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), 24, _this.get$_entity_list_tile$_onLongPress(), C.EdgeInsets_8_8_8_8, _null, _null) : new T.IgnorePointer(true, _null, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(Q.getEntityIcon(_this._widget.entityType), _null, 18), 24, new O._EntitiesListTileState_build_closure(_this, context), C.EdgeInsets_8_8_8_8, _null, _null), _null); return new T.MouseRegion(new O._EntitiesListTileState_build_closure0(_this), _null, new O._EntitiesListTileState_build_closure1(_this), C.C__DeferringMouseCursor, true, T.Column$(H.setRuntimeTypeInfo([new N.SelectedIndicator(Q.ListTile$(false, C.EdgeInsets_16_0_16_0, _null, true, false, _null, t1, _this.get$_entity_list_tile$_onLongPress(), new O._EntitiesListTileState_build_closure2(_this, context), false, _null, _null, t2, _null, t3, new T.IgnorePointer(true, _null, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C._MdiIconData_Up3, _null, _null), 24, new O._EntitiesListTileState_build_closure3(), C.EdgeInsets_8_8_8_8, _null, _null), _null)), isFilterMatch, true, _null), new G.ListDivider(_null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null); } }; O._EntitiesListTileState_build_closure0.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._EntitiesListTileState_build__closure0(t1)); }, $signature: 350 }; O._EntitiesListTileState_build__closure0.prototype = { call$0: function() { return this.$this._entity_list_tile$_isHovered = true; }, $signature: 19 }; O._EntitiesListTileState_build_closure1.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._EntitiesListTileState_build__closure(t1)); }, $signature: 312 }; O._EntitiesListTileState_build__closure.prototype = { call$0: function() { return this.$this._entity_list_tile$_isHovered = false; }, $signature: 19 }; O._EntitiesListTileState_build_closure.prototype = { call$0: function() { var t1 = this.$this._widget; return M.viewEntitiesByType(t1.entityType, t1.entity); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; O._EntitiesListTileState_build_closure3.prototype = { call$0: function() { return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O._EntitiesListTileState_build_closure2.prototype = { call$0: function() { var t1 = this.$this._widget; return M.viewEntitiesByType(t1.entityType, t1.entity); }, $signature: 0 }; V.EntityStatusChip.prototype = { build$1: function(_, context) { var label, color, statusId, t3, t4, category, $status, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.entity; switch (t2.get$entityType()) { case C.EntityType_payment: type$.legacy_PaymentEntity._as(t2); label = C.Map_IYlun.$index(0, t2.get$calculatedStatusId()); color = new E.PaymentStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2.get$calculatedStatusId()); break; case C.EntityType_invoice: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = C.Map_j34mP.$index(0, statusId); color = new E.InvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case C.EntityType_recurringInvoice: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = C.Map_BzEVk.$index(0, statusId); color = new E.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case C.EntityType_quote: statusId = type$.legacy_InvoiceEntity._as(t2).get$calculatedStatusId(); label = C.Map_IF4bq.$index(0, statusId); color = new E.QuoteStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case C.EntityType_credit: t2 = type$.legacy_InvoiceEntity._as(t2).statusId; label = C.Map_qBa3g.$index(0, t2); color = new E.CreditStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2); break; case C.EntityType_expense: type$.legacy_ExpenseEntity._as(t2); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; category = J.$index$asx(t3._list, t4).expenseCategoryState.$get$1(0, t2.categoryId); label = C.Map_Y3IEU.$index(0, t2.get$calculatedStatusId()); t3 = category.color; color = t3.length !== 0 && t3 !== "#fff" ? E.convertHexStringToColor(t3) : new E.ExpenseStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t2.get$calculatedStatusId()); break; case C.EntityType_recurringExpense: statusId = type$.legacy_ExpenseEntity._as(t2).get$calculatedStatusId(); label = C.Map_BzEVk.$index(0, statusId); color = new E.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, statusId); break; case C.EntityType_task: type$.legacy_TaskEntity._as(t2); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; $status = J.$index$asx(t3._list, t4).taskStatusState.$get$1(0, t2.statusId); t3 = t2.invoiceId.length !== 0; if (t3) label = t1.get$invoiced(); else if (t2.get$isRunning()) { t4 = t1.get$running(); label = t4; } else { t4 = $status.name; t4 = t4.length !== 0 ? t4 : t1.get$logged(); label = t4; } if (t3) color = state.prefState.get$colorThemeModel().colorSuccess; else if (t2.get$isRunning()) { t2 = state.prefState.get$colorThemeModel().colorInfo; color = t2; } else { t3 = $status.color; if (t3.length !== 0 && t3 !== "#fff") t2 = E.convertHexStringToColor(t3); else { t3 = state.prefState.get$colorThemeModel(); t2 = P.LinkedHashMap_LinkedHashMap$_literal(["-1", C.Color_4281545523, "-2", t3.colorPrimary, "-3", t3.colorSuccess], type$.legacy_String, type$.legacy_Color).$index(0, t2.get$calculateStatusId()); } color = t2; } break; default: P.print("ERROR: unhandled entityType " + H.S(t2.get$entityType()) + " in entity_status_chip.dart"); return T.SizedBox$(_null, _null, _null); } label = t1.lookup$1(label); if (label == null) label = ""; if (label.length === 0) label = t1.get$logged(); t1 = K.BorderRadius$all(new P.Radius(2, 2)); t2 = this.width; t3 = t2 == null; t4 = t3 ? 100 : t2; if (t3) t2 = 200; return new T.Padding(new V.EdgeInsets(0, 0, 0, 0), M.DecoratedBox$(new T.ConstrainedBox(new S.BoxConstraints(t4, t2, 0, 1 / 0), new T.Padding(new V.EdgeInsets(4, 6, 4, 6), L.Text$(label, _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 13, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_2, _null, _null), _null), _null), new S.BoxDecoration(color, _null, _null, t1, _null, _null, C.BoxShape_0), C.DecorationPosition_0), _null); } }; F.EntityDropdown.prototype = { createState$0: function() { return new F._EntityDropdownState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), O.FocusNode$(true, null, true, null, false), C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); }, onAddPressed$1: function(arg0) { return this.onAddPressed.call$1(arg0); }, overrideSuggestedLabel$1: function(arg0) { return this.overrideSuggestedLabel.call$1(arg0); } }; F._EntityDropdownState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = this._entity_dropdown$_focusNode.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_onFocusChanged()), false); }, _onFocusChanged$0: function() { var t2, _this = this, t1 = _this._entity_dropdown$_focusNode; if (t1.get$hasFocus()) { t2 = _this._framework$_element; t2.toString; t2 = D.getLayout(t2) === C.AppLayout_mobile; } else t2 = false; if (t2) _this._showOptions$0(); if (!t1.get$hasFocus() && !_this.get$hasValue()) _this._entity_dropdown$_textController.set$text(0, ""); }, didChangeDependencies$0: function() { var state, t2, entity, _this = this, t1 = _this._framework$_element; t1.toString; state = O.StoreProvider_of(t1, type$.legacy_AppState).get$_store$_state(); t1 = _this._widget; t2 = t1.entityMap; t1 = t2 == null ? state.getEntityMap$1(t1.entityType) : t2; _this._entityMap = t1; t2 = _this._widget; if (t1 == null) P.print("## ERROR: ENTITY MAP IS NULL: " + t2.entityType.toString$0(0)); else { t2 = t2.entityId; entity = J.$index$asx(t1._map$_map, t2); t1 = _this._widget; t2 = _this._entity_dropdown$_textController; if (t1.overrideSuggestedLabel != null) t2.set$text(0, t1.overrideSuggestedLabel$1(entity)); else { t1 = entity == null ? null : entity.get$listDisplayName(); t2.set$text(0, t1 == null ? "" : t1); } } _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1, _this = this; _this._entity_dropdown$_textController.ChangeNotifier__listeners = null; t1 = _this._entity_dropdown$_focusNode; t1.removeListener$1(0, _this.get$_onFocusChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showOptions$0: function() { var t1 = this._framework$_element; t1.toString; E.showDialog(true, new F._EntityDropdownState__showOptions_closure(this), t1, null, true, type$.legacy_EntityDropdownDialog); }, get$hasValue: function() { var t1 = this._widget.entityId; return t1 != null && t1 !== "0" && t1.length !== 0; }, build$1: function(_, context) { var theme, iconButton, t3, t4, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; if (!J.$index$asx(t1._list, t2).userCompany.company.isModuleEnabled$1(_this._widget.entityType)) return T.SizedBox$(_null, _null, _null); theme = K.Theme_of(context); if (_this._widget.allowClearing && _this.get$hasValue()) iconButton = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new F._EntityDropdownState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null); else iconButton = _this._widget.onAddPressed != null ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), 24, new F._EntityDropdownState_build_closure0(_this), C.EdgeInsets_8_8_8_8, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$createNew(), _null) : _null; if (D.getLayout(context) !== C.AppLayout_mobile && true) return new S.RawAutocomplete(new F._EntityDropdownState_build_closure1(_this, iconButton), _this._entity_dropdown$_focusNode, new F._EntityDropdownState_build_closure2(_this, theme), new F._EntityDropdownState_build_closure3(), new F._EntityDropdownState_build_closure4(_this), new F._EntityDropdownState_build_closure5(_this), _this._entity_dropdown$_textController, _null, type$.RawAutocomplete_legacy_SelectableEntity); t1 = _this._widget; t2 = t1.validator; t3 = t1.autoValidate ? C.AutovalidateMode_1 : C.AutovalidateMode_2; t4 = t1.labelText; t2 = H.setRuntimeTypeInfo([R.InkWell$(false, _null, true, new T.IgnorePointer(true, _null, E.TextFormField$(true, _null, false, t3, _this._entity_dropdown$_textController, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, t1.allowClearing && _this.get$hasValue() ? _null : C.Icon_OxR, _null, _null, _null), _null, false, _this._entity_dropdown$_focusNode, _null, _null, _null, _null, 1, _null, false, _null, _null, _null, _null, true, _null, C.TextAlign_4, _null, t2), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new F._EntityDropdownState_build_closure6(_this), _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget); if (_this._widget.allowClearing && _this.get$hasValue()) t2.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new F._EntityDropdownState_build_closure7(_this), C.EdgeInsets_8_8_8_8, _null, _null)); return T.Stack$(C.Alignment_1_0, t2, C.Clip_1, C.StackFit_0, _null, _null); } }; F._EntityDropdownState__showOptions_closure.prototype = { call$1: function(context) { var t4, t5, t1 = this.$this, t2 = t1._entityMap, t3 = t1._widget.entityList; if (t3 == null) t3 = J.toList$0$ax(t2.get$keys(t2)); t4 = t1._widget; t5 = t4.onAddPressed != null ? new F._EntityDropdownState__showOptions__closure(t1) : null; return new F.EntityDropdownDialog(t2, t3, new F._EntityDropdownState__showOptions__closure0(t1), t5, t4.overrideSuggestedAmount, t4.overrideSuggestedLabel, null); }, $signature: 2028 }; F._EntityDropdownState__showOptions__closure0.prototype = { call$2: function(entity, update) { var label, t1 = entity == null ? null : entity.get$id(entity), t2 = this.$this, t3 = t2._widget; if (t1 == t3.entityId) return; t3.onSelected$1(entity); t1 = t2._widget; label = t1.overrideSuggestedLabel != null ? t1.overrideSuggestedLabel$1(entity) : entity.get$listDisplayName(); if (update) t2._entity_dropdown$_textController.set$text(0, label); t2._widget.toString; }, call$1: function(entity) { return this.call$2(entity, true); }, $signature: 2029 }; F._EntityDropdownState__showOptions__closure.prototype = { call$2: function(context, completer) { return this.$this._widget.onAddPressed$1(completer); }, $signature: 2030 }; F._EntityDropdownState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1._entity_dropdown$_textController.set$text(0, ""); t1._widget.onSelected$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._EntityDropdownState_build_closure0.prototype = { call$0: function() { var t1 = new P._Future($.Zone__current, type$._Future_legacy_SelectableEntity), t2 = this.$this; t2._widget.onAddPressed$1(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_SelectableEntity)); t1.then$1$1(0, new F._EntityDropdownState_build__closure4(t2), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._EntityDropdownState_build__closure4.prototype = { call$1: function(entity) { this.$this._widget.onSelected$1(entity); }, $signature: 44 }; F._EntityDropdownState_build_closure5.prototype = { call$1: function(textEditingValue) { var options, t1 = this.$this, t2 = t1._widget, t3 = t2.entityList; if (t3 == null) { t2 = t2.entityMap; t2 = J.toList$0$ax(t2.get$keys(t2)); } else t2 = t3; t2 = J.map$1$1$ax(t2, new F._EntityDropdownState_build__closure(t1), type$.legacy_SelectableEntity).where$1(0, new F._EntityDropdownState_build__closure0(textEditingValue)); options = P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); if (options.length === 1 && J.get$id$x(options[0]) === t1._widget.entityId) return H.setRuntimeTypeInfo([], type$.JSArray_legacy_SelectableEntity); return options; }, $signature: 2032 }; F._EntityDropdownState_build__closure.prototype = { call$1: function(entityId) { return J.$index$asx(this.$this._entityMap._map$_map, entityId); }, $signature: 2033 }; F._EntityDropdownState_build__closure0.prototype = { call$1: function(entity) { var t1 = entity == null ? null : entity.matchesFilter$1(this.textEditingValue.text); return t1 === true; }, $signature: 2034 }; F._EntityDropdownState_build_closure3.prototype = { call$1: function(entity) { return entity.get$listDisplayName(); }, $signature: 2035 }; F._EntityDropdownState_build_closure4.prototype = { call$1: function(entity) { var t1 = entity == null ? null : entity.get$id(entity), t2 = this.$this._widget; if (t1 == t2.entityId) return; t2.onSelected$1(entity); }, $signature: 44 }; F._EntityDropdownState_build_closure1.prototype = { call$4: function(context, textEditingController, focusNode, onFieldSubmitted) { var t4, t5, _null = null, t1 = this.$this, t2 = t1._widget, t3 = t2.validator; t2 = t2.allowClearing && t1.get$hasValue(); t4 = t1._widget; t5 = t4.labelText; t4 = t4.autofocus; return S.DecoratedFormField$(false, _null, t4 === true, false, textEditingController, _null, true, focusNode, _null, _null, _null, false, false, _null, _null, t5, _null, _null, false, new F._EntityDropdownState_build__closure2(t1), new F._EntityDropdownState_build__closure3(onFieldSubmitted), _null, t2, _null, this.iconButton, C.TextAlign_4, t3); }, $signature: 2036 }; F._EntityDropdownState_build__closure3.prototype = { call$1: function(value) { this.onFieldSubmitted.call$0(); }, $signature: 7 }; F._EntityDropdownState_build__closure2.prototype = { call$1: function(value) { return this.$this._entity_dropdown$_filter = value; }, $signature: 15 }; F._EntityDropdownState_build_closure2.prototype = { call$3: function(context, onSelected, options) { var _null = null, t1 = K.Theme_of(context).cardColor; return new K.Theme(this.theme, new T.Align(C.Alignment_m1_m1, _null, _null, M.Material$(C.Duration_200000, true, _null, new T.AppBorder(M.Container$(_null, X.ScrollableListViewBuilder$(new F._EntityDropdownState_build__closure1(this.$this, onSelected, options), J.get$length$asx(options), _null, _null), C.Clip_0, t1, new S.BoxConstraints(0, 1 / 0, 0, 270), _null, _null, _null, _null, _null, _null, _null, _null, 250), _null, _null, false, _null), C.Clip_0, _null, 4, _null, _null, _null, _null, C.MaterialType_0), _null), _null); }, $signature: 2038 }; F._EntityDropdownState_build__closure1.prototype = { call$2: function(context, index) { var _null = null, t1 = K.Theme_of(context).cardColor, t2 = J.elementAt$1$ax(this.options, index), t3 = this.$this, t4 = t3._entity_dropdown$_filter; t3 = t3._widget; return M.Container$(_null, new F._EntityListTile(t2, new F._EntityDropdownState_build___closure(this.onSelected), t4, t3.overrideSuggestedAmount, t3.overrideSuggestedLabel, _null), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2039 }; F._EntityDropdownState_build___closure.prototype = { call$1: function(entity) { return this.onSelected.call$1(entity); }, $signature: 202 }; F._EntityDropdownState_build_closure6.prototype = { call$0: function() { return this.$this._showOptions$0(); }, $signature: 0 }; F._EntityDropdownState_build_closure7.prototype = { call$0: function() { var t1 = this.$this; t1._entity_dropdown$_textController.set$text(0, ""); t1._widget.onSelected$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.EntityDropdownDialog.prototype = { createState$0: function() { return new F._EntityDropdownDialogState(C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); }, onSelected$2: function(arg0, arg1) { return this.onSelected.call$2(arg0, arg1); }, onAddPressed$2: function(arg0, arg1) { return this.onAddPressed.call$2(arg0, arg1); } }; F._EntityDropdownDialogState.prototype = { build$1: function(_, context) { var _null = null; return new E.ResponsivePadding(M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([new F._EntityDropdownDialogState_build__headerRow(this, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), context).call$0(), T.Expanded$(new F._EntityDropdownDialogState_build__createList(this, new F._EntityDropdownDialogState_build__selectEntity(this, context)).call$0(), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, _null, 4, _null, _null, _null, _null, C.MaterialType_0), _null); } }; F._EntityDropdownDialogState_build__selectEntity.prototype = { call$1: function(entity) { this.$this._widget.onSelected$1(entity); K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 202 }; F._EntityDropdownDialogState_build__headerRow.prototype = { call$0: function() { var _null = null, t1 = L.Icon$(C.IconData_58727_MaterialIcons_null_false, C.MaterialColor_Map_HFpTk_4288585374, _null), t2 = this.$this, t3 = this.localization, t4 = T.Expanded$(Z.TextField$(true, _null, true, _null, _null, _null, _null, _null, 2, L.InputDecoration$(_null, C._NoInputBorder_EYU, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, t3.get$filter(t3), _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, true, _null, false, _null, _null, _null, _null, _null, true, _null, 1, _null, false, "\u2022", new F._EntityDropdownDialogState_build__headerRow_closure(t2), _null, _null, _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, C.TextAlign_4, _null, C.TextCapitalization_3, _null, _null, _null), 1), t5 = this.context, t6 = B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_O5U, 24, new F._EntityDropdownDialogState_build__headerRow_closure0(t5), C.EdgeInsets_8_8_8_8, _null, _null); t2 = t2._widget.onAddPressed != null ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), 24, new F._EntityDropdownDialogState_build__headerRow_closure1(t2, t5), C.EdgeInsets_8_8_8_8, t3.get$createNew(), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_10_0_10_0, t1, _null), t4, t6, t2], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); }, $signature: 133 }; F._EntityDropdownDialogState_build__headerRow_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new F._EntityDropdownDialogState_build__headerRow__closure0(t1, value)); }, $signature: 7 }; F._EntityDropdownDialogState_build__headerRow__closure0.prototype = { call$0: function() { this.$this._entity_dropdown$_filter = this.value; }, $signature: 1 }; F._EntityDropdownDialogState_build__headerRow_closure0.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; F._EntityDropdownDialogState_build__headerRow_closure1.prototype = { call$0: function() { var t2, t3, t1 = this.context; K.Navigator_of(t1, false).pop$1(0, null); t2 = new P._Future($.Zone__current, type$._Future_legacy_SelectableEntity); t3 = this.$this; t3._widget.onAddPressed$2(t1, new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_SelectableEntity)); t2.then$1$1(0, new F._EntityDropdownDialogState_build__headerRow__closure(t3), type$.Null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._EntityDropdownDialogState_build__headerRow__closure.prototype = { call$1: function(entity) { this.$this._widget.onSelected$2(entity, false); }, $signature: 44 }; F._EntityDropdownDialogState_build__createList.prototype = { call$0: function() { var t1 = this.$this, t2 = J.where$1$ax(t1._widget.entityList, new F._EntityDropdownDialogState_build__createList_closure(t1)), matches = P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); return X.ScrollableListViewBuilder$(new F._EntityDropdownDialogState_build__createList_closure0(t1, matches, this._selectEntity), matches.length, null, null); }, $signature: 133 }; F._EntityDropdownDialogState_build__createList_closure.prototype = { call$1: function(entityId) { var t1 = this.$this, t2 = J.$index$asx(t1._widget.entityMap._map$_map, entityId); t1 = t2 == null ? null : t2.matchesFilter$1(t1._entity_dropdown$_filter); return t1 === true; }, $signature: 16 }; F._EntityDropdownDialogState_build__createList_closure0.prototype = { call$2: function(context, index) { var entityId = this.matches[index], t1 = this.$this, entity = J.$index$asx(t1._widget.entityMap._map$_map, entityId), t2 = t1._entity_dropdown$_filter; t1 = t1._widget; return new F._EntityListTile(entity, new F._EntityDropdownDialogState_build__createList__closure(this._selectEntity), t2, t1.overrideSuggestedAmount, t1.overrideSuggestedLabel, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2041 }; F._EntityDropdownDialogState_build__createList__closure.prototype = { call$1: function(entity) { return this._selectEntity.call$1(entity); }, $signature: 202 }; F._EntityListTile.prototype = { build$1: function(_, context) { var amount, _this = this, _null = null, t1 = _this.entity, subtitle = t1.matchesFilterValue$1(_this.filter), t2 = _this.overrideSuggestedLabel, label = t2 == null ? t1.get$listDisplayName() : t2.call$1(t1); t2 = _this.overrideSuggestedAmount; amount = t2 == null ? Y.formatNumber(t1.get$listDisplayAmount(), context, _null, _null, t1.get$listDisplayAmountType(), true, _null, false) : t2.call$1(t1); t2 = T.Expanded$(L.Text$(label, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1); t2 = T.Row$(H.setRuntimeTypeInfo([t2, t1.get$listDisplayAmount() != null ? L.Text$(amount, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t1 = subtitle != null ? L.Text$(subtitle, _null, 2, _null, _null, _null, _null, _null, _null, _null) : _null; return Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new F._EntityListTile_build_closure(_this), false, _null, _null, t1, _null, t2, _null); } }; F._EntityListTile_build_closure.prototype = { call$0: function() { var t1 = this.$this; return t1.onTap.call$1(t1.entity); }, $signature: 9 }; D.EntityHeader.prototype = { build$1: function(_, context) { var t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textColor = K.Theme_of(context).textTheme.bodyText1.color, prefState = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState, t2 = type$.JSArray_legacy_Widget, t3 = H.setRuntimeTypeInfo([T.Expanded$(new D.EntityHeader_build__value1(_this, textColor).call$0(), 1)], t2), t4 = _this.secondValue; if ((t4 == null ? "" : t4).length !== 0) C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 8), T.Expanded$(new D.EntityHeader_build__value2(_this, textColor).call$0(), 1)], t2)); t3 = T.Row$(t3, C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t4 = _this.statusLabel == null; if (t4) { t5 = _this.entity; t5 = !(!t5.get$isArchived() && !t5.get$isDeleted(t5)); } else t5 = true; t5 = t5 ? C.EdgeInsets_0_25_0_5 : C.EdgeInsets_0_0_0_0; t6 = H.setRuntimeTypeInfo([], t2); if (!t4) t6.push(new T.Padding(C.EdgeInsets_0_0_16_0, new V.EntityStatusChip(_this.entity, _null, _null), _null)); t4 = _this.entity; if (!(!t4.get$isArchived() && !t4.get$isDeleted(t4))) { t7 = t4.get$isArchived() ? C.MaterialColor_Map_JNZaB_4294940672 : prefState.get$colorThemeModel().colorDanger; t8 = K.BorderRadius$all(new P.Radius(2, 2)); t1 = t4.get$isArchived() ? t1.get$archived() : t1.get$deleted(); t6.push(M.DecoratedBox$(new T.ConstrainedBox(new S.BoxConstraints(120, 120, 0, 1 / 0), new T.Padding(C.EdgeInsets_8_8_8_8, L.Text$(t1.toUpperCase(), _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_2, _null, _null), _null), _null), new S.BoxDecoration(t7, _null, _null, t8, _null, _null, C.BoxShape_0), C.DecorationPosition_0)); } return M.Container$(_null, new T.Padding(new V.EdgeInsets(20, 30, 20, 25), T.Column$(H.setRuntimeTypeInfo([t3, new T.Padding(t5, T.Row$(t6, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)], t2), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, get$value: function(receiver) { return this.value; } }; D.EntityHeader_build__value1.prototype = { call$0: function() { var t3, _null = null, t1 = this.$this, t2 = this.textColor; t2 = L.Text$(t1.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t3 = T.SizedBox$(_null, 8, _null); t1 = t1.value; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return T.Column$(H.setRuntimeTypeInfo([t2, t3, T.FittedBox$(O.SelectableText$(t1, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null)))], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, $signature: 133 }; D.EntityHeader_build__value2.prototype = { call$0: function() { var t3, _null = null, t1 = this.$this, t2 = this.textColor; t2 = L.Text$(t1.secondLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, P.Color$fromARGB(166, t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t3 = T.SizedBox$(_null, 8, _null); t1 = t1.secondValue; if ((t1 == null ? "" : t1).length === 0) t1 = " "; return T.Column$(H.setRuntimeTypeInfo([t2, t3, T.FittedBox$(O.SelectableText$(t1, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null)))], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, $signature: 133 }; L.EntityStateLabel.prototype = { build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.entity; if (t2.get$isDeleted(t2)) t1 = L.Text$(t1.get$deleted(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JNc9P_4294198070, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); else t1 = t2.get$isArchived() ? L.Text$(t1.get$archived(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_JNZaB_4294940672, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return t1; } }; E.EntityTopFilter.prototype = { build$1: function(_, context) { var filterEntity, relatedTypes, backgroundColor, t5, t6, t7, t8, t9, t10, t11, t12, i, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, prefState = state.prefState, t2 = uiState.filterStack._list, t3 = J.getInterceptor$asx(t2), filterEntityType = t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType(), routeEntityType = T._$typeValueOf(A.toCamelCase(J.replaceFirst$2$s(uiState.get$mainRoute(), "/", ""))), t4 = filterEntityType == null, entityMap = !t4 ? state.getEntityMap$1(filterEntityType) : _null; if (entityMap != null) { if (t3.get$isEmpty(t2)) t2 = _null; else { t2 = t3.get$last(t2); t2 = t2.get$id(t2); } filterEntity = J.$index$asx(entityMap._map$_map, t2); } else filterEntity = _null; t2 = t4 ? _null : filterEntityType.get$relatedTypes(); t2 = t2 == null ? _null : new H.WhereIterable(t2, new E.EntityTopFilter_build_closure(state), H._arrayInstanceType(t2)._eval$1("WhereIterable<1>")); relatedTypes = t2 == null ? _null : P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); if (relatedTypes == null) relatedTypes = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityType); t2 = !prefState.enableDarkMode; backgroundColor = t2 && state.get$hasAccentColor() ? state.get$accentColor() : K.Theme_of(context).cardColor; t3 = this.show; t4 = t3 ? 46 : 0; t5 = P.Duration$(0, 0, 0, 500, 0, 0); t3 = t3 ? 1 : 0; t6 = P.Duration$(0, 0, 0, 500, 0, 0); if (filterEntity == null) t1 = M.Container$(_null, _null, C.Clip_0, backgroundColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([], t7); if (!prefState.isFilterVisible) { t9 = T.SizedBox$(_null, _null, 12); t10 = L.Icon$(C.IconData_57698_MaterialIcons_null_true, state.get$headerTextColor(), _null); t11 = T.SizedBox$(_null, _null, 12); t12 = new Q.EntityPresenter(); t12.entity = filterEntity; t12.context = context; t8.push(R.InkWell$(false, _null, true, T.Row$(H.setRuntimeTypeInfo([t9, t10, t11, new T.ConstrainedBox(new S.BoxConstraints(0, 220, 0, 1 / 0), L.Text$(t12.title$0(0), _null, 1, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, 17, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), T.SizedBox$(_null, _null, 12)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new E.EntityTopFilter_build_closure0(context, filterEntity), new E.EntityTopFilter_build_closure1(store, prefState), _null, _null, _null, _null, _null)); } t7 = H.setRuntimeTypeInfo([], t7); for (i = 0; i < relatedTypes.length; ++i) { t9 = t1.lookup$1(relatedTypes[i].get$plural()); t10 = !t2 || state.get$hasAccentColor() ? E.convertHexStringToColor("#FFFFFF") : E.convertHexStringToColor("#000000"); t11 = U.TextButton_styleFrom(_null, _null, _null, _null, _null, _null, _null, new P.Size(0, 36), _null, new V.EdgeInsets(12, 0, 12, 0), _null, _null, _null, _null, _null, _null, _null, _null); if (J.$eq$(relatedTypes[i], routeEntityType)) t12 = new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, new Y.BorderSide(!t2 || !state.get$hasAccentColor() ? state.get$accentColor() : C.Color_4294967295, 2, C.BorderStyle_1), C.BorderSide_m7u); else t12 = _null; t7.push(new M.DecoratedBox(new S.BoxDecoration(_null, _null, t12, _null, _null, _null, C.BoxShape_0), C.DecorationPosition_0, new U.TextButton(new E.EntityTopFilter_build_closure2(relatedTypes, i, filterEntity), new E.EntityTopFilter_build_closure3(filterEntity, relatedTypes, i), t11, C.Clip_0, _null, false, new L.Text(t9, new A.TextStyle(true, t10, _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)); } t8.push(T.Expanded$(new T.Align(C.Alignment_1_0, _null, _null, K.OverflowView$flexible(new E.EntityTopFilter_build_closure4(t1, state, routeEntityType, filterEntityType, filterEntity, relatedTypes), t7, 4), _null), 1)); t8.push(T.SizedBox$(_null, _null, 4)); t8.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, state.get$headerTextColor(), _null), 24, new E.EntityTopFilter_build_closure5(store, uiState), C.EdgeInsets_8_8_8_8, _null, _null)); t1 = T.Row$(t8, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } return M.Material$(C.Duration_200000, true, _null, G.AnimatedContainer$(G.AnimatedOpacity$(false, t1, C.Cubic_oKc, t6, t3), _null, C.Cubic_oKc, _null, t5, t4, _null, _null, _null, _null), C.Clip_0, backgroundColor, 0, _null, _null, _null, _null, C.MaterialType_0); } }; E.EntityTopFilter_build_closure.prototype = { call$1: function(element) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.isModuleEnabled$1(element); }, $signature: 323 }; E.EntityTopFilter_build_closure1.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, !this.prefState.isFilterVisible, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, $signature: 1 }; E.EntityTopFilter_build_closure0.prototype = { call$0: function() { M.editEntity(null, this.context, this.filterEntity, null); }, $signature: 1 }; E.EntityTopFilter_build_closure2.prototype = { call$0: function() { M.viewEntitiesByType(this.relatedTypes[this.i], this.filterEntity); }, $signature: 1 }; E.EntityTopFilter_build_closure3.prototype = { call$0: function() { var t1 = D.EntityAction_newEntityType(this.relatedTypes[this.i]); M.handleEntitiesActions(H.setRuntimeTypeInfo([this.filterEntity], type$.JSArray_legacy_BaseEntity), t1, false); }, $signature: 1 }; E.EntityTopFilter_build_closure4.prototype = { call$2: function(context, remaining) { var _this = this, _null = null, t1 = _this.localization, t2 = _this.state, t3 = _this.filterEntityType; return Z.PopupMenuButton$(new T.Padding(C.EdgeInsets_4_0_4_0, T.Row$(H.setRuntimeTypeInfo([L.Text$(t1.get$more(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), T.SizedBox$(_null, _null, 4), L.Icon$(C.IconData_57496_MaterialIcons_null_false, t2.get$headerTextColor(), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _this.routeEntityType, new E.EntityTopFilter_build__closure(t3, _this.relatedTypes, remaining, t2, t1), new E.EntityTopFilter_build__closure0(t3, _this.filterEntity), C.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityType); }, $signature: 2042 }; E.EntityTopFilter_build__closure0.prototype = { call$1: function(value) { var t1 = this.filterEntity; if (value === this.filterEntityType) M.viewEntity(false, t1, null, false); else M.viewEntitiesByType(value, t1); }, $signature: 201 }; E.EntityTopFilter_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.filterEntityType, t2 = C.JSArray_methods.sublist$1(t1.get$relatedTypes(), _this.relatedTypes.length - _this.remaining), t3 = H._arrayInstanceType(t2), t4 = t3._eval$1("MappedIterable<1,PopupMenuItem*>"); return P.List_List$of(new H.MappedIterable(new H.WhereIterable(t2, new E.EntityTopFilter_build___closure(_this.state), t3._eval$1("WhereIterable<1>")), new E.EntityTopFilter_build___closure0(t1, _this.localization), t4), true, t4._eval$1("Iterable.E")); }, $signature: 2044 }; E.EntityTopFilter_build___closure.prototype = { call$1: function(element) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.isModuleEnabled$1(element); }, $signature: 323 }; E.EntityTopFilter_build___closure0.prototype = { call$1: function(type) { var _null = null, t1 = this.localization; return Z.PopupMenuItem$(new T.ConstrainedBox(new S.BoxConstraints(75, 1 / 0, 0, 1 / 0), L.Text$(type === this.filterEntityType ? t1.get$overview() : H.S(t1.lookup$1(type.get$plural())), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), type, type$.legacy_EntityType); }, $signature: 2045 }; E.EntityTopFilter_build_closure5.prototype = { call$0: function() { var t1 = J.get$last$ax(this.uiState.filterStack._list); return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterByEntity(t1, false)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Y.FormCard.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = _this.child, t2 = t1 == null; if (t2) { t3 = _this.children; t3 = t3 == null || t3.length === 0; } else t3 = false; if (t3) return T.SizedBox$(_null, _null, _null); t3 = _this.padding; if (t3 == null) if (_this.forceNarrow) { t3 = (context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dx - 510) / 2; t3 = new V.EdgeInsets(t3, 12, t3, 12); } else t3 = new V.EdgeInsets(12, 12, 12, _this.isLast ? 12 : 0); t4 = K.BorderRadius$circular(2); t5 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.enableDarkMode; t6 = _this.internalPadding; if (t6 == null) t6 = C.EdgeInsets_16_16_16_16; if (!!t2) { t1 = _this.crossAxisAlignment; if (t1 == null) t1 = C.CrossAxisAlignment_2; t1 = M.Container$(_null, T.Column$(_this.children, t1, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 1 / 0); } return new T.Padding(t3, U.FocusTraversalGroup$(V.Card$(new T.AppBorder(new T.Padding(t6, t1, _null), _null, _null, !t5, _null), _null, _null, _this.elevation, _null, true, new X.RoundedRectangleBorder(t4, C.BorderSide_m7u)), _null), _null); } }; Q.AppDropdownButton.prototype = { build$1: function(_, context) { var checkedValue, t1, t2, t3, t4, t5, isEmpty, t6, dropDownButton, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), _showBlank = _this.showBlank; if (_showBlank == null) _showBlank = state.uiState.settingsUIState.entityType !== C.EntityType_company; checkedValue = _this.value; t1 = _this.items; t2 = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); t3 = _this.$ti; t4 = t3._eval$1("1*"); t5 = H._arrayInstanceType(t2)._eval$1("@<1>")._bind$1(t4)._eval$1("MappedListIterable<1,2>"); if (!C.JSArray_methods.contains$1(P.List_List$of(new H.MappedListIterable(t2, new Q.AppDropdownButton_build_closure(_this), t5), true, t5._eval$1("ListIterable.E")), checkedValue)) checkedValue = _this.blankValue; isEmpty = checkedValue == null || J.$eq$(checkedValue, ""); t2 = _this.labelText; t5 = t2 != null; t6 = _this.enabled ? _this.onChanged : _null; t3 = H.setRuntimeTypeInfo([], t3._eval$1("JSArray*>")); if (_showBlank || isEmpty) t3.push(K.DropdownMenuItem$(T.SizedBox$(_null, _null, _null), _this.blankValue, t4)); C.JSArray_methods.addAll$1(t3, t1); dropDownButton = new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, t5, true, 48, t3, _null, t6, _null, _null, _null, checkedValue, t4), _null); return t5 ? L.InputDecorator$(_null, dropDownButton, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, isEmpty, false, false, _null, _null) : dropDownButton; }, get$value: function(receiver) { return this.value; } }; Q.AppDropdownButton_build_closure.prototype = { call$1: function(option) { return option.value; }, $signature: function() { return this.$this.$ti._eval$1("1*(DropdownMenuItem<1*>*)"); } }; X.AppForm.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = _this.child; if (t1 == null) t1 = new X.ScrollableListView(_this.children, _null, _null, false, _null); return L.FocusScope$(false, A.Form$(false, t1, _this.formKey), _null, _this.focusNode); } }; X.AppTabForm.prototype = { build$1: function(_, context) { var _this = this, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = _this.tabBarKey; if (t1 == null) t1 = new D.ValueKey(state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int); return L.FocusScope$(false, A.Form$(false, E.TabBarView$(_this.children, _this.tabController, t1), _this.formKey), null, _this.focusNode); } }; R.AppTabBar.prototype = { build$1: function(_, context) { var _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), tabBar = E.TabBar$(_this.controller, K.Theme_of(context).accentColor, _this.isScrollable, _null, _this.onTap, _this.tabs); if (state.prefState.enableDarkMode || !state.get$hasAccentColor()) return tabBar; return new K.Theme(X.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new U.TabBarTheme(_null, _null, C.Color_4278190080, _null, _null, P.Color$fromARGB(166, 0, 0, 0), _null), _null, _null, _null), tabBar, _null); } }; Z.AppToggleButtons.prototype = { build$1: function(_, context) { var _null = null, t1 = D.calculateLayout(context), t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data, toggleWidth = t1 !== C.AppLayout_mobile ? 208 : (t2.size._dx - 70) / 2; t1 = this.tabLabels; t1 = H.setRuntimeTypeInfo([M.Container$(_null, T.Center$(L.Text$(t1[0], _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, 40, _null, _null, _null, _null, _null, toggleWidth), M.Container$(_null, T.Center$(L.Text$(t1[1], _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, 40, _null, _null, _null, _null, _null, toggleWidth)], type$.JSArray_legacy_Widget); t2 = type$.JSArray_legacy_bool; t2 = this.selectedIndex === 0 ? H.setRuntimeTypeInfo([true, false], t2) : H.setRuntimeTypeInfo([false, true], t2); return new T.Padding(C.EdgeInsets_0_0_0_20, E.ToggleButtons$(t1, _null, t2, new Z.AppToggleButtons_build_closure(this)), _null); } }; Z.AppToggleButtons_build_closure.prototype = { call$1: function(index) { return this.$this.onTabChanged.call$1(index); }, $signature: 173 }; K.BoolDropdownButton.prototype = { build$1: function(_, context) { var state, _showBlank, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), trueLabel = _this.enabledLabel, t2 = trueLabel == null, trueLabel0 = t2 ? t1.get$enabled(t1) : trueLabel, falseLabel = _this.disabledLabel; if (falseLabel == null) falseLabel = t1.get$disabled(t1); state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); _showBlank = _this.showBlank; if (_showBlank == null) _showBlank = state.uiState.settingsUIState.entityType !== C.EntityType_company; if (!_showBlank) t1 = t2 || trueLabel === t1.get$yes(); else t1 = false; if (t1) { t1 = L.Text$(_this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = _this.iconData; t2 = t2 != null && D.getLayout(context) === C.AppLayout_desktop ? L.Icon$(t2, _null, _null) : _null; t3 = K.Theme_of(context).accentColor; t4 = _this.helpLabel; t4 = t4 != null ? L.Text$(t4, _null, _null, _null, _null, _null, _null, _null, _null, _null) : _null; return new T.Padding(C.EdgeInsets_0_12_0_0, O.SwitchListTile$(t3, _null, new K.BoolDropdownButton_build_closure(_this), t2, t4, t1, _this.value === true), _null); } t1 = _showBlank ? _null : C._NoInputBorder_EYU; t1 = L.InputDecoration$(_null, t1, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _this.label, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = _this.value; t3 = H.S(t2 == null ? "" : t2); if (_showBlank) { t4 = type$.legacy_bool; t5 = type$.JSArray_legacy_DropdownMenuItem_legacy_bool; t5 = H.setRuntimeTypeInfo(H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, type$.Null), K.DropdownMenuItem$(L.Text$(falseLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, t4), K.DropdownMenuItem$(L.Text$(trueLabel0, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, t4)], t5).slice(0), t5); t2 = new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, true, true, 48, t5, _null, new K.BoolDropdownButton_build_closure0(_this), _null, _null, _null, t2, t4), _null); } else { t4 = D.getLayout(context) === C.AppLayout_desktop ? C.Axis_0 : C.Axis_1; t5 = _this.minWidth; t6 = t5 == null; t7 = t6 ? 120 : t5; t8 = type$.legacy_bool; t9 = type$.JSArray_legacy_Widget; t7 = R.InkWell$(false, _null, true, new T.ConstrainedBox(new S.BoxConstraints(t7, 1 / 0, 36, 1 / 0), T.Row$(H.setRuntimeTypeInfo([new T.IgnorePointer(true, _null, Y.Radio$(K.Theme_of(context).accentColor, false, t2, _null, new K.BoolDropdownButton_build_closure1(), false, false, t8), _null), L.Text$(falseLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), T.SizedBox$(_null, _null, 16)], t9), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new K.BoolDropdownButton_build_closure2(_this), _null, _null, _null, _null, _null); if (t6) t5 = 120; t4 = new T.Padding(C.EdgeInsets_0_4_0_0, T.Flex$(H.setRuntimeTypeInfo([t7, R.InkWell$(false, _null, true, new T.ConstrainedBox(new S.BoxConstraints(t5, 1 / 0, 36, 1 / 0), T.Row$(H.setRuntimeTypeInfo([new T.IgnorePointer(true, _null, Y.Radio$(K.Theme_of(context).accentColor, false, t2, _null, new K.BoolDropdownButton_build_closure3(), false, true, t8), _null), L.Text$(trueLabel0, _null, _null, _null, _null, _null, _null, _null, _null, _null), T.SizedBox$(_null, _null, 16)], t9), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new K.BoolDropdownButton_build_closure4(_this), _null, _null, _null, _null, _null)], t9), C.CrossAxisAlignment_2, t4, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, _null, _null, C.VerticalDirection_1), _null); t2 = t4; } return L.InputDecorator$(_null, t2, t1, false, t3.length === 0, false, false, _null, _null); }, get$value: function(receiver) { return this.value; } }; K.BoolDropdownButton_build_closure.prototype = { call$1: function(value) { return this.$this.onChanged.call$1(value); }, $signature: 12 }; K.BoolDropdownButton_build_closure0.prototype = { call$1: function(value) { return this.$this.onChanged.call$1(value); }, $signature: 12 }; K.BoolDropdownButton_build_closure2.prototype = { call$0: function() { return this.$this.onChanged.call$1(false); }, $signature: 9 }; K.BoolDropdownButton_build_closure1.prototype = { call$1: function(value) { return null; }, $signature: 20 }; K.BoolDropdownButton_build_closure4.prototype = { call$0: function() { return this.$this.onChanged.call$1(true); }, $signature: 9 }; K.BoolDropdownButton_build_closure3.prototype = { call$1: function(value) { return null; }, $signature: 20 }; R.ClientPicker.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, t8, _this = this, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = _this.clientId, t3 = "__client_" + t2 + "__"; t1 = t1.get$client(t1); t4 = $.$get$memoizedDropdownClientList(); t5 = _this.clientState; t6 = t5.map; t5 = t5.list; t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; return F.EntityDropdown$(true, false, null, t2, t4.call$4(t6, t5, J.$index$asx(t7._list, t8).userState.map, state.staticState), t6, C.EntityType_client, new D.ValueKey(t3, type$.ValueKey_legacy_String), t1, _this.onAddPressed, _this.onSelected, null, null, new R.ClientPicker_build_closure(context)); } }; R.ClientPicker_build_closure.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectAClient() : null; }, $signature: 15 }; A.FormColorPicker.prototype = { createState$0: function() { return new A._FormColorPickerState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([C.MaterialColor_Map_JNc9P_4294198070, C.MaterialColor_Map_JN0o6_4293467747, C.MaterialColor_Map_JNNS7_4288423856, C.MaterialColor_Map_JNEyN_4284955319, C.MaterialColor_Map_JN8qN_4282339765, E.convertHexStringToColor("#2F7DC3"), C.MaterialColor_Map_JNwaj_4280391411, C.MaterialColor_Map_JN94k_4278238420, C.MaterialColor_Map_JN0Sr_4278228616, C.MaterialColor_Map_JNEaM_4283215696, C.MaterialColor_Map_JNJAl_4287349578, C.MaterialColor_Map_JNQQJ_4291681337, C.MaterialColor_Map_JNHRl_4294961979, C.MaterialColor_Map_JNsy5_4294951175, C.MaterialColor_Map_JNZaB_4294940672, C.MaterialColor_Map_JNUn6_4294924066, C.MaterialColor_Map_HFpTk_4288585374, C.MaterialColor_Map_JNy8A_4284513675, C.Color_4278190080], type$.JSArray_legacy_Color), C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); } }; A._FormColorPickerState.prototype = { initState$0: function() { this.super$State$initState(); }, didChangeDependencies$0: function() { var _this = this, t1 = _this._color_picker$_textController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._controllers = t2; C.JSArray_methods.forEach$1(t2, new A._FormColorPickerState_didChangeDependencies_closure(_this)); t2 = _this._widget.initialValue; t1.set$text(0, t2); _this._selectedColor = t2; t2 = _this._controllers; (t2 && C.JSArray_methods).forEach$1(t2, new A._FormColorPickerState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _color_picker$_onChanged$0: function() { this._color_picker$_debouncer.run$1(new A._FormColorPickerState__onChanged_closure(this)); }, _selectColor$1: function(color) { if (color != null && color.length !== 7) return; this.setState$1(new A._FormColorPickerState__selectColor_closure(this, color)); }, dispose$0: function(_) { this._color_picker$_textController.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, _showPicker$0: function() { var color, t3, color0, theme, colors, _this = this, t1 = {}, t2 = _this._framework$_element; t2.toString; t2 = L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); _this._selectedColor = null; color = t1.color = C.Color_4278190080; t3 = _this._widget.initialValue; if (t3 != null && t3.length !== 0) { color0 = E.convertHexStringToColor(t3); t1.color = color0 == null ? color : color0; } t3 = _this._framework$_element; t3.toString; theme = O.StoreProvider_of(t3, type$.legacy_AppState).get$_store$_state().prefState.colorTheme; colors = $.$get$colorThemesMap().$index(0, theme); t3 = _this._framework$_element; t3.toString; E.showDialog(true, new A._FormColorPickerState__showPicker_closure(t1, _this, colors, t2), t3, null, true, type$.legacy_AlertDialog); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._widget.labelText; if (t1 == null) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "color"); if (t1 == null) t1 = ""; } t1 = S.DecoratedFormField$(false, _null, false, false, _this._color_picker$_textController, _null, true, _null, "#000000", _null, _null, false, false, _null, _null, t1, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t2 = _this.get$_showPicker(); t3 = _this._selectedColor; if (t3 == null) t3 = C.MaterialColor_Map_HFpTk_4288585374; else { t3 = E.convertHexStringToColor(t3); if (t3 == null) t3 = C.MaterialColor_Map_HFpTk_4288585374; } t4 = F.Border_Border$all(C.Color_1627389952, 1); t5 = D.getLayout(context) === C.AppLayout_mobile ? 25 : 100; t6 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([R.InkWell$(false, _null, true, M.Container$(_null, _null, C.Clip_0, _null, _null, new S.BoxDecoration(t3, _null, t4, _null, _null, _null, C.BoxShape_0), _null, 25, _null, _null, _null, _null, _null, t5), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null), T.SizedBox$(_null, _null, 10)], t6); _this._widget.toString; t3 = _this._selectedColor; if (t3 != null) t5.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new A._FormColorPickerState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null)); else t5.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57724_MaterialIcons_null_false, _null, _null), 24, t2, C.EdgeInsets_8_8_8_8, _null, _null)); return T.Stack$(C.Alignment_1_0, H.setRuntimeTypeInfo([t1, T.Row$(t5, C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null)], t6), C.Clip_1, C.StackFit_0, _null, _null); } }; A._FormColorPickerState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_color_picker$_onChanged()); }, $signature: 10 }; A._FormColorPickerState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_color_picker$_onChanged()); }, $signature: 10 }; A._FormColorPickerState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1._selectColor$1(J.trim$0$s(t1._color_picker$_textController._change_notifier$_value.text)); }, $signature: 1 }; A._FormColorPickerState__selectColor_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.color; t1._selectedColor = t2; t1._widget.onSelected$1(t2); }, $signature: 1 }; A._FormColorPickerState__showPicker_closure.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.$this, t2 = P.List_List$of(t1._defaultColors, true, type$.legacy_Color), t3 = _this.colors; t2.push(t3.colorInfo); t2.push(t3.colorPrimary); t2.push(t3.colorSuccess); t2.push(t3.colorWarning); t2.push(t3.colorDanger); t2 = E.SingleChildScrollView$(new B.BlockPicker(_this._box_0.color, new A._FormColorPickerState__showPicker__closure(t1), t2, _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t3 = _this.localization; return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t3.get$cancel(t3).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FormColorPickerState__showPicker__closure0(context), _null), U.TextButton$(false, L.Text$(t3.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._FormColorPickerState__showPicker__closure1(t1, context), _null)], type$.JSArray_legacy_Widget), C.EdgeInsets_0_0_0_0, _null, t2, C.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 172 }; A._FormColorPickerState__showPicker__closure.prototype = { call$1: function(color) { this.$this._pendingColor = E.convertColorToHexString(color); }, $signature: 2048 }; A._FormColorPickerState__showPicker__closure0.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A._FormColorPickerState__showPicker__closure1.prototype = { call$0: function() { var t1 = this.$this; t1._selectColor$1(t1._pendingColor); t1._color_picker$_textController.set$text(0, t1._pendingColor); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; A._FormColorPickerState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1._color_picker$_textController.set$text(0, ""); t1._selectColor$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.CustomField.prototype = { createState$0: function() { return new B._CustomFieldState(C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); }, get$value: function(receiver) { return this.value; } }; B._CustomFieldState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; t2 = t1.controller; if (t2 == null) t2 = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)); _this._custom_field$_controller = t2; t1 = t1.value; t2.set$text(0, t1 == null ? "" : t1); _this._custom_field$_value = _this._widget.value; }, dispose$0: function(_) { if (this._widget.controller == null) this._custom_field$_controller.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, build$1: function(_, context) { var fieldLabel, fieldType, fieldOptions, t3, t4, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, company = J.$index$asx(t1._list, t2).userCompany.company; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); fieldLabel = company.getCustomFieldLabel$1(_this._widget.field); if ((fieldLabel == null ? "" : fieldLabel).length === 0) return T.SizedBox$(_null, _null, _null); fieldType = company.getCustomFieldType$1(_this._widget.field); fieldOptions = company.getCustomFieldValues$1(_this._widget.field); switch (fieldType) { case "single_line_text": t1 = _this._custom_field$_controller; t2 = _this._widget; t3 = t2.hideFieldLabel ? _null : fieldLabel; return S.DecoratedFormField$(false, _null, false, false, t1, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, 1, _null, false, t2.onChanged, _null, t2.onSavePressed, true, _null, _null, C.TextAlign_4, _null); case "multi_line_text": t1 = _this._custom_field$_controller; t2 = _this._widget; t3 = t2.hideFieldLabel ? _null : fieldLabel; return S.DecoratedFormField$(false, _null, false, false, t1, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t3, 3, _null, false, t2.onChanged, _null, t2.onSavePressed, true, _null, _null, C.TextAlign_4, _null); case "switch": t1 = _this._widget; t3 = t1.value; t3 = t3 == null ? _null : t3 === "yes"; t1 = t1.hideFieldLabel ? "" : fieldLabel; t4 = t2.get$yes(); return K.BoolDropdownButton$(t2.get$no(), t4, _null, _null, t1, _null, new B._CustomFieldState_build_closure(_this), _null, t3); case "date": t1 = _this._widget; t2 = t1.hideFieldLabel ? _null : fieldLabel; return K.DatePicker$(false, _null, _null, t2, _null, new B._CustomFieldState_build_closure0(_this), t1.value, _null); case "dropdown": t1 = _this._custom_field$_value; t2 = H._arrayInstanceType(fieldOptions)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t2 = P.List_List$of(new H.MappedListIterable(fieldOptions, new B._CustomFieldState_build_closure1(), t2), true, t2._eval$1("ListIterable.E")); t3 = _this._widget.hideFieldLabel ? _null : fieldLabel; return new Q.AppDropdownButton(t3, t1, new B._CustomFieldState_build_closure2(_this), t2, _null, true, "", _null, type$.AppDropdownButton_legacy_String); default: return T.SizedBox$(_null, _null, _null); } } }; B._CustomFieldState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this, t2 = t1._custom_field$_controller; t2.set$text(0, value ? "yes" : "no"); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value ? "yes" : "no"); }, $signature: 20 }; B._CustomFieldState_build_closure0.prototype = { call$1: function(date) { var t2, t1 = this.$this; t1._custom_field$_controller.set$text(0, date); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(date); }, $signature: 7 }; B._CustomFieldState_build_closure1.prototype = { call$1: function(option) { var _null = null; return K.DropdownMenuItem$(L.Text$(option, _null, _null, _null, _null, _null, _null, _null, _null, _null), option, type$.legacy_String); }, $signature: 36 }; B._CustomFieldState_build_closure2.prototype = { call$1: function(value) { var t2, t1 = this.$this; t1.setState$1(new B._CustomFieldState_build__closure(t1, value)); t2 = $.Debouncer_action; if (t2 != null) { t2.call$0(); $.Debouncer_action = null; } t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value); }, $signature: 8 }; B._CustomFieldState_build__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._custom_field$_controller, t3 = this.value; t1._custom_field$_value = t3; t2.set$text(0, t3); }, $signature: 1 }; V.CustomSurcharges.prototype = { build$1: function(_, context) { var _this = this, _null = null, _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, company = J.$index$asx(t1._list, t2).userCompany.company; t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (company.getCustomFieldLabel$1(_s10_).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes1)) t1 = !t1 && company.enableCustomSurchargeTaxes1; else t1 = true; } else t1 = false; if (t1) t2.push(S.DecoratedFormField$(false, _null, false, false, _this.surcharge1Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_0).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes2)) t1 = !t1 && company.enableCustomSurchargeTaxes2; else t1 = true; } else t1 = false; if (t1) t2.push(S.DecoratedFormField$(false, _null, false, false, _this.surcharge2Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_0), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_1).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes3)) t1 = !t1 && company.enableCustomSurchargeTaxes3; else t1 = true; } else t1 = false; if (t1) t2.push(S.DecoratedFormField$(false, _null, false, false, _this.surcharge3Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_1), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_2).length !== 0) { t1 = _this.isAfterTaxes; if (!(t1 && !company.enableCustomSurchargeTaxes4)) t1 = !t1 && company.enableCustomSurchargeTaxes4; else t1 = true; } else t1 = false; if (t1) t2.push(S.DecoratedFormField$(false, _null, false, false, _this.surcharge4Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_2), _null, _null, false, _null, _null, _this.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); return T.Column$(t2, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }; K.DatePicker.prototype = { createState$0: function() { return new K._DatePickerState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), O.FocusNode$(true, null, true, null, false), C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); } }; K._DatePickerState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = this._date_picker$_focusNode.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_onFoucsChanged()), false); }, didChangeDependencies$0: function() { var t2, _this = this, t1 = _this._widget.selectedDate; if ((t1 == null ? "" : t1).length !== 0) { t2 = _this._framework$_element; t2.toString; _this._textController.set$text(0, Y.formatDate(t1, t2, true, true, false)); } _this.super$State$didChangeDependencies(); }, _onFoucsChanged$0: function() { var t1, t2, _this = this; if (!_this._date_picker$_focusNode.get$hasFocus()) { t1 = _this._widget.selectedDate; t2 = _this._framework$_element; t2.toString; _this._textController.set$text(0, Y.formatDate(t1, t2, true, true, false)); _this.setState$1(new K._DatePickerState__onFoucsChanged_closure(_this)); } }, dispose$0: function(_) { var t1, _this = this; _this._textController.ChangeNotifier__listeners = null; t1 = _this._date_picker$_focusNode; t1.removeListener$1(0, _this.get$_onFoucsChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showDatePicker$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, selectedDate, date, t1, firstDate, t2, initialDate; var $async$_showDatePicker$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = Date.now(); firstDate = new P.DateTime(t1, false); t2 = $async$self._widget.selectedDate; initialDate = t2 != null && t2.length !== 0 ? P.DateTime_tryParse(t2) : new P.DateTime(Date.now(), false); if ($async$self._widget.firstDate != null) { if (initialDate._value < t1) firstDate = initialDate; } else { t1 = H.Primitives_valueFromDecomposedDate(2015, 8, 1, 0, 0, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); firstDate = new P.DateTime(t1, false); } t1 = $async$self._framework$_element; t1.toString; t2 = H.Primitives_valueFromDecomposedDate(2101, 1, 1, 0, 0, 0, 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); $async$goto = 2; return P._asyncAwait(K.showDatePicker(t1, firstDate, initialDate, new P.DateTime(t2, false)), $async$_showDatePicker$0); case 2: // returning from await. selectedDate = $async$result; if (selectedDate != null) { date = Y.convertDateTimeToSqlDate(selectedDate); t1 = $async$self._framework$_element; t1.toString; $async$self._textController.set$text(0, Y.formatDate(date, t1, true, true, false)); $async$self._widget.onSelected$1(date); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_showDatePicker$0, $async$completer); }, build$1: function(_, context) { var t3, _this = this, _null = null, t1 = _this._widget, label = t1.labelText, t2 = t1.message; if (t2 != null) { t1 = t1.selectedDate; t1 = (t1 == null ? "" : t1).length === 0; } else t1 = false; if (t1) label = J.$add$ansx(label, " \u2022 " + H.S(t2)); t1 = _this._widget.validator; t2 = _this._pendingValue; if (t2 == null) t2 = label; if (t2 == null) t2 = ""; t3 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57782_MaterialIcons_null_false, _null, _null), 24, new K._DatePickerState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null); return S.DecoratedFormField$(false, _null, false, false, _this._textController, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null), true, _this._date_picker$_focusNode, _null, _null, _null, false, false, _null, _null, _null, _null, _null, false, new K._DatePickerState_build_closure0(_this, context), _null, _null, true, _null, _null, C.TextAlign_4, t1); } }; K._DatePickerState__onFoucsChanged_closure.prototype = { call$0: function() { this.$this._pendingValue = null; }, $signature: 1 }; K._DatePickerState_build_closure.prototype = { call$0: function() { return this.$this._showDatePicker$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; K._DatePickerState_build_closure0.prototype = { call$1: function(value) { var t2, t3, year, parts, firstPart, secondPart, state, countryId, date, exception, t4, firstDateSql, _this = this, t1 = {}; value = value; t2 = value; t2.toString; if (J.get$length$asx(t2) === 0) _this.$this._widget.onSelected$1(""); else { t1.date = ""; t2 = value; t3 = P.RegExp_RegExp("[^\\d]", true, false); if (H.stringReplaceAllUnchecked(t2, t3, "") === t2 || J.get$length$asx(value) <= 5) { year = H.Primitives_getYear(new P.DateTime(Date.now(), false)); if (J.contains$1$asx(value, "/")) { parts = J.split$1$s(value, "/"); firstPart = J.get$length$asx(parts[0]) === 1 ? C.JSString_methods.$add("0", parts[0]) : parts[0]; secondPart = J.get$length$asx(parts[1]) === 1 ? C.JSString_methods.$add("0", parts[1]) : parts[1]; } else { t2 = value; t3 = P.RegExp_RegExp("[^0-9]", true, false); value = H.stringReplaceAllUnchecked(t2, t3, ""); if (J.get$length$asx(value) <= 2) { if (J.get$length$asx(value) === 1) value = "0" + H.S(value); firstPart = value; secondPart = "01"; } else if (J.get$length$asx(value) === 3) if (J.substring$2$s(value, 0, 1) === "0") { firstPart = J.substring$2$s(value, 0, 2); secondPart = "0" + J.substring$2$s(value, 2, 3); } else { firstPart = "0" + J.substring$2$s(value, 0, 1); secondPart = J.substring$2$s(value, 1, 3); } else { if (J.get$length$asx(value) === 5) value = "0" + H.S(value); firstPart = J.substring$2$s(value, 0, 2); secondPart = J.substring$2$s(value, 2, 4); if (J.get$length$asx(value) === 6) { year = H.Primitives_parseInt(J.substring$2$s(value, 4, 6), null); year = year < 30 ? year + 2000 : year + 1900; } else if (J.get$length$asx(value) === 8) year = H.Primitives_parseInt(J.substring$2$s(value, 4, 8), null); } } state = O.StoreProvider_of(_this.context, type$.legacy_AppState).get$_store$_state(); t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; countryId = J.$index$asx(t2._list, t3).userCompany.company.settings.countryId; value = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["840", "124"], type$.JSArray_legacy_String), countryId) ? H.S(firstPart) + H.S(secondPart) : H.S(secondPart) + H.S(firstPart); if (J.get$length$asx(value) === 4) value = H.S(year) + H.S(value); date = Y.convertDateTimeToSqlDate(P.DateTime_tryParse(value)); t1.date = date; t2 = date; } else try { date = Y.parseDate(value, _this.context); t1.date = date; t2 = date; } catch (exception) { H.unwrapException(exception); return; } t3 = _this.$this; t4 = t3._widget.firstDate; if (t4 != null) { firstDateSql = Y.convertDateTimeToSqlDate(t4); if (J.compareTo$1$ns(firstDateSql, t2) > 0) { t1.date = firstDateSql; t2 = firstDateSql; } } if ((t2 == null ? "" : t2).length !== 0) t3._widget.onSelected$1(t2); t3.setState$1(new K._DatePickerState_build__closure(t1, t3, _this.context)); } }, $signature: 7 }; K._DatePickerState_build__closure.prototype = { call$0: function() { this.$this._pendingValue = Y.formatDate(this._box_0.date, this.context, true, true, false); }, $signature: 1 }; S.DecoratedFormField.prototype = { createState$0: function() { return new S._DecoratedFormFieldState(C._StateLifecycle_0); }, onFieldSubmitted$1: function(arg0) { return this.onFieldSubmitted.call$1(arg0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); }, onSavePressed$1: function(arg0) { return this.onSavePressed.call$1(arg0); } }; S._DecoratedFormFieldState.prototype = { build$1: function(_, context) { var hasValue, calcKeyboardType, enterShouldSubmit, inputDecoration, icon, state, t3, t4, t5, t6, t7, _this = this, _null = null, t1 = _this._widget, iconButton = t1.suffixIconButton, t2 = t1.initialValue; if ((t2 == null ? "" : t2).length === 0) { t2 = t1.controller; t2 = t2 == null ? _null : t2._change_notifier$_value.text; hasValue = (t2 == null ? "" : t2).length !== 0; } else hasValue = true; if (t1.isMoney || t1.isPercent) calcKeyboardType = new N.TextInputType(2, true, true); else { t2 = t1.maxLines; if ((t2 == null ? 0 : t2) > 1) calcKeyboardType = C.TextInputType_1_null_null; else { t1 = t1.keyboardType; if (t1 == null) t1 = C.TextInputType_0_null_null; calcKeyboardType = t1; } } if (D.getLayout(context) === C.AppLayout_desktop) { t1 = _this._widget; if (t1.onSavePressed != null) { t1 = t1.maxLines; t1 = (t1 == null ? 1 : t1) <= 1; enterShouldSubmit = t1; } else enterShouldSubmit = false; } else enterShouldSubmit = false; if (_this._showClear) { t1 = _this._widget; t1 = t1.showClear && hasValue && t1.key == null && t1.controller != null; } else t1 = false; if (t1) { t1 = _this._widget; if (t1.suffixIconButton == null && t1.suffixIcon == null && t1.enabled) iconButton = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S._DecoratedFormFieldState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null); } t1 = _this._widget; inputDecoration = t1.decoration; if (!(inputDecoration != null)) if (t1.label == null) inputDecoration = _null; else { icon = t1.suffixIcon; if (icon == null) icon = iconButton; if (icon == null) if (t1.isMoney) { state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).userCompany.company.settings.currencyId; icon = L.Icon$((t2 == null ? "1" : t2) === "3" ? C.IconData_57915_MaterialIcons_null_false : C.IconData_57522_MaterialIcons_null_false, _null, _null); } else if (t1.isPercent) icon = L.Icon$(C._MdiIconData_egL, _null, 16); t1 = _this._widget; t2 = t1.label; t3 = t1.hint; t4 = icon == null ? _null : icon; if ((t3 == null ? "" : t3).length !== 0) t5 = (t2 == null ? "" : t2).length === 0; else t5 = false; inputDecoration = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, t5 ? C.FloatingLabelBehavior_2 : C.FloatingLabelBehavior_1, _null, _null, _null, true, _null, _null, _null, _null, _null, t3, _null, _null, _null, false, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null); } t2 = t1.maxLines; if (t2 == null) t2 = 1; t3 = t1.autovalidate ? C.AutovalidateMode_2 : C.AutovalidateMode_0; !t1.isMoney; if (calcKeyboardType.$eq(0, C.TextInputType_1_null_null)) t4 = C.TextInputAction_12; else t4 = enterShouldSubmit ? C.TextInputAction_2 : C.TextInputAction_6; t5 = _this._widget; t6 = t5.inputFormatters; t7 = t5.enabled; return E.TextFormField$(false, t5.autofillHints, t1.autofocus, t3, t1.controller, inputDecoration, t7, false, t1.focusNode, t1.initialValue, t6, new D.ValueKey(t1.label, type$.ValueKey_legacy_String), calcKeyboardType, t2, t1.minLines, t1.obscureText, new S._DecoratedFormFieldState_build_closure0(_this), _null, new S._DecoratedFormFieldState_build_closure1(_this, calcKeyboardType, enterShouldSubmit, context), _null, false, _null, t5.textAlign, t4, t1.validator); } }; S._DecoratedFormFieldState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1._widget.controller.set$text(0, ""); t1.setState$1(new S._DecoratedFormFieldState_build__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._DecoratedFormFieldState_build__closure.prototype = { call$0: function() { this.$this._showClear = false; }, $signature: 1 }; S._DecoratedFormFieldState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; t1._showClear = true; t1 = t1._widget; if (t1.onChanged != null) t1.onChanged$1(value); }, $signature: 7 }; S._DecoratedFormFieldState_build_closure1.prototype = { call$1: function(value) { var _this = this, t1 = _this.$this, t2 = t1._widget; if (t2.onFieldSubmitted != null) return t2.onFieldSubmitted$1(value); else if (_this.calcKeyboardType.$eq(0, C.TextInputType_1_null_null)) return null; else if (_this.enterShouldSubmit) t1._widget.onSavePressed$1(_this.context); }, $signature: 59 }; A.DesignPicker.prototype = { build$1: function(_, context) { var _this = this, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, designState = J.$index$asx(t2._list, t3).designState; t3 = J.where$1$ax(designState.list._list, new A.DesignPicker_build_closure(_this, designState, state)); t2 = t3.$ti._eval$1("MappedIterable<1,DropdownMenuItem*>"); t2 = P.List_List$of(new H.MappedIterable(t3, new A.DesignPicker_build_closure0(designState), t2), true, t2._eval$1("Iterable.E")); t3 = _this.label; t1 = t3 == null ? t1.get$design() : t3; return new Q.AppDropdownButton(t1, _this.initialValue, new A.DesignPicker_build_closure1(_this, designState), t2, null, true, "", null, type$.AppDropdownButton_legacy_String); } }; A.DesignPicker_build_closure1.prototype = { call$1: function(value) { return this.$this.onSelected.call$1(J.$index$asx(this.designState.map._map$_map, value)); }, $signature: 10 }; A.DesignPicker_build_closure.prototype = { call$1: function(designId) { var _s20_ = "https://invoicing.co", design = J.$index$asx(this.designState.map._map$_map, designId), t1 = this.state, t2 = t1.authState, t3 = t2.get$isHosted(); if (t3) { t3 = t2.get$isHosted(); if (!t3) { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.account.plan === "white_label"; } else { t2 = t2.url; if (Y.cleanApiUrl(t2) === _s20_) { t3 = t1.uiState.selectedCompanyIndex; t3 = J.$index$asx(t1.userCompanyStates._list, t3).userCompany.account.plan === "enterprise"; } else t3 = true; if (!t3) { t3 = t1.uiState.selectedCompanyIndex; t3 = J.$index$asx(t1.userCompanyStates._list, t3).userCompany.account.plan === "pro"; } else t3 = true; if (!t3) if (Y.cleanApiUrl(t2) === _s20_) { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.account.plan === "enterprise"; } else t2 = true; else t2 = true; } if (!t2) { t2 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.account.trialPlan.length === 0 && !design.isFree; } else t1 = false; } else t1 = false; if (t1) return false; return !design.get$isArchived() && !design.isDeleted || designId == this.$this.initialValue; }, $signature: 16 }; A.DesignPicker_build_closure0.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(J.$index$asx(this.designState.map._map$_map, value).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; L.DiscountField.prototype = { build$1: function(_, context) { var t3, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.label; if (t2 == null) t2 = t1.get$discount(); t2 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, _this.controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), 1); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "percent"); if (t3 == null) t3 = ""; t4 = type$.legacy_bool; return T.Row$(H.setRuntimeTypeInfo([t2, C.SizedBox_10_null_null_null, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t3, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), false, t4), K.DropdownMenuItem$(L.Text$(t1.get$amount(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), true, t4)], type$.JSArray_legacy_DropdownMenuItem_legacy_bool), _null, _this.onTypeChanged, _null, _null, _null, _this.isAmountDiscount, t4), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null); }, get$value: function(receiver) { return this.value; } }; U.DurationPicker.prototype = { createState$0: function() { return new U._DurationPickerState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), O.FocusNode$(true, null, true, null, false), C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); } }; U._DurationPickerState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = this._duration_picker$_focusNode.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_duration_picker$_onFoucsChanged()), false); }, didChangeDependencies$0: function() { var t1 = this._widget.selectedDuration; t1 = t1 != null ? Y.formatDuration(t1, true) : ""; this._duration_picker$_textController.set$text(0, t1); this.super$State$didChangeDependencies(); }, _duration_picker$_onFoucsChanged$0: function() { var t1, duration, _this = this; if (!_this._duration_picker$_focusNode.get$hasFocus()) { t1 = _this._widget; if (t1.selectedDuration == null && _this._pendingDuration != null) t1.onSelected$1(_this._pendingDuration); duration = _this._pendingDuration; if (duration == null) duration = _this._widget.selectedDuration; t1 = duration != null ? Y.formatDuration(duration, true) : ""; _this._duration_picker$_textController.set$text(0, t1); _this.setState$1(new U._DurationPickerState__onFoucsChanged_closure(_this)); } }, dispose$0: function(_) { var _this = this, t1 = _this._duration_picker$_focusNode; t1.removeListener$1(0, _this.get$_duration_picker$_onFoucsChanged()); t1.dispose$0(0); _this._duration_picker$_textController.ChangeNotifier__listeners = null; _this.super$State$dispose(0); }, build$1: function(_, context) { var t2, _this = this, _null = null, t1 = _this._pendingDuration; if (t1 != null) t1 = Y.formatDuration(t1, true); else { t1 = _this._widget.labelText; if (t1 == null) t1 = ""; } _this._widget.toString; t2 = Z.PopupMenuButton$(C.Icon_MC7, _null, true, _null, _null, new U._DurationPickerState_build_closure(), new U._DurationPickerState_build_closure0(_this), C.EdgeInsets_0_0_0_0, _null, type$.legacy_int); return S.DecoratedFormField$(false, _null, false, false, _this._duration_picker$_textController, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null), true, _this._duration_picker$_focusNode, _null, _null, _null, false, false, _null, _null, _null, _null, _null, false, new U._DurationPickerState_build_closure1(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null); } }; U._DurationPickerState__onFoucsChanged_closure.prototype = { call$0: function() { this.$this._pendingDuration = null; }, $signature: 1 }; U._DurationPickerState_build_closure1.prototype = { call$1: function(value) { var parts, seconds, t1, duration, t2; if (J.contains$1$asx(value, ":")) { parts = value.split(":"); seconds = Y.parseInt(parts[0], false) * 60 * 60; t1 = parts[1]; seconds = J.get$length$asx(t1) === 1 ? seconds + Y.parseInt(H.S(t1) + "0", false) * 60 : seconds + Y.parseInt(t1, false) * 60; if (parts.length > 2) seconds += Y.parseInt(parts[2], false); } else seconds = C.JSNumber_methods.round$0(Y.parseDouble(value, false) * 60 * 60); duration = P.Duration$(0, 0, 0, 0, 0, seconds); t1 = this.$this; t2 = t1._widget; if (t2.selectedDuration != null) t2.onSelected$1(duration); t1.setState$1(new U._DurationPickerState_build__closure(t1, duration)); }, $signature: 7 }; U._DurationPickerState_build__closure.prototype = { call$0: function() { this.$this._pendingDuration = this.duration; }, $signature: 1 }; U._DurationPickerState_build_closure.prototype = { call$1: function(context) { var t1 = type$.MappedListIterable_of_legacy_int_and_legacy_PopupMenuItem_legacy_int; return P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo([15, 30, 45, 60, 75, 90, 105, 120], type$.JSArray_legacy_int), new U._DurationPickerState_build__closure0(), t1), true, t1._eval$1("ListIterable.E")); }, $signature: 2050 }; U._DurationPickerState_build__closure0.prototype = { call$1: function(minutes) { var _null = null; return Z.PopupMenuItem$(L.Text$(Y.formatDuration(P.Duration$(0, 0, 0, 0, minutes, 0), false), _null, _null, _null, _null, _null, _null, _null, _null, _null), minutes, type$.legacy_int); }, $signature: 2051 }; U._DurationPickerState_build_closure0.prototype = { call$1: function(minutes) { var duration = P.Duration$(0, 0, 0, 0, minutes, 0), t1 = this.$this; t1._duration_picker$_textController.set$text(0, Y.formatDuration(duration, true)); t1._widget.onSelected$1(duration); }, $signature: 103 }; Y.DynamicSelector.prototype = { build$1: function(_, context) { var t5, t6, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = _this.entityType, entityMap = state.getEntityMap$1(t2), t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; if (!J.$index$asx(t3._list, t4).userCompany.company.isModuleEnabled$1(t2)) return T.SizedBox$(_null, _null, _null); t3 = _this.entityIds; t4 = J.getInterceptor$asx(t3); t5 = _this.labelText; if (t4.get$length(t3) < 10) { t1 = t5 == null ? t1.lookup$1(t2.toString$0(0)) : t5; return new Q.AppDropdownButton(t1, _this.entityId, new Y.DynamicSelector_build_closure(_this), t4.map$1$1(t3, new Y.DynamicSelector_build_closure0(_this, entityMap), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _this.allowClearing, true, "", _null, type$.AppDropdownButton_legacy_String); } else { t4 = _this.entityId; t6 = "__entity_id_" + H.S(t4) + "__"; t1 = t5 == null ? t1.lookup$1(t2.toString$0(0)) : t5; return F.EntityDropdown$(_this.allowClearing, false, false, t4, t3, _null, t2, new D.ValueKey(t6, type$.ValueKey_legacy_String), t1, _this.onAddPressed, new Y.DynamicSelector_build_closure1(_this), _null, _this.overrideSuggestedLabel, _null); } } }; Y.DynamicSelector_build_closure.prototype = { call$1: function(entityId) { return this.$this.onChanged.call$1(entityId); }, $signature: 10 }; Y.DynamicSelector_build_closure0.prototype = { call$1: function(entityId) { var _null = null, t1 = this.$this.overrideSuggestedLabel, t2 = this.entityMap; if (t1 != null) t1 = t1.call$1(J.$index$asx(t2._map$_map, entityId)); else { t1 = J.$index$asx(t2._map$_map, entityId); t1 = t1 == null ? _null : t1.get$listDisplayName(); if (t1 == null) t1 = ""; } return K.DropdownMenuItem$(L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), entityId, type$.legacy_String); }, $signature: 36 }; Y.DynamicSelector_build_closure1.prototype = { call$1: function(entity) { var t1 = entity == null ? null : entity.get$id(entity); return this.$this.onChanged.call$1(t1); }, $signature: 56 }; A.GrowableFormField.prototype = { createState$0: function() { return new A._GrowableFormFieldState(O.FocusNode$(true, null, true, null, false), C._StateLifecycle_0); } }; A._GrowableFormFieldState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = this._growable_form_field$_focusNode.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_growable_form_field$_onFoucsChanged()), false); }, _growable_form_field$_onFoucsChanged$0: function() { this.setState$1(new A._GrowableFormFieldState__onFoucsChanged_closure(this)); }, dispose$0: function(_) { var t1 = this._growable_form_field$_focusNode; t1.removeListener$1(0, this.get$_growable_form_field$_onFoucsChanged()); t1.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, _null = null, t1 = this._widget, t2 = t1.autofocus, t3 = t1.initialValue; t1 = t1.onChanged; t4 = this._growable_form_field$_hasFocus ? 20 : 2; return S.DecoratedFormField$(false, _null, t2, false, _null, _null, true, this._growable_form_field$_focusNode, _null, t3, _null, false, false, _null, C.TextInputType_1_null_null, _null, t4, 1, false, t1, _null, _null, true, _null, _null, C.TextAlign_4, _null); } }; A._GrowableFormFieldState__onFoucsChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1._growable_form_field$_hasFocus = t1._growable_form_field$_focusNode.get$hasFocus(); }, $signature: 1 }; B.LearnMoreUrl.prototype = { build$1: function(_, context) { var t2, t3, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this.url.length === 0) return _this.child; t2 = T.Expanded$(_this.child, 1); t3 = T.SizedBox$(_null, _null, 10); t4 = _this.label; return T.Row$(H.setRuntimeTypeInfo([t2, t3, U.TextButton$(false, L.Text$(t4 == null ? t1.get$learnMore() : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new B.LearnMoreUrl_build_closure(_this), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_1, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; B.LearnMoreUrl_build_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this.url; $async$goto = 4; return P._asyncAwait(T.canLaunch(t1), $async$call$0); case 4: // returning from await. $async$goto = $async$result ? 2 : 3; break; case 2: // then $async$goto = 5; return P._asyncAwait(T.launch(t1, false, false), $async$call$0); case 5: // returning from await. case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; B.NotificationSettings.prototype = { build$1: function(_, context) { var hasMultipleUsers, t5, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.user, notifications = t2.userCompany.notifications, t3 = (notifications == null ? A.BuiltMap_BuiltMap(C.Map_empty0, type$.legacy_String, type$.legacy_BuiltList_legacy_String) : notifications)._map$_map, t4 = J.getInterceptor$x(t3), emailNotifications = t4.containsKey$1(t3, "email") ? t4.$index(t3, "email") : D.BuiltList_BuiltList$from(C.List_empty, type$.legacy_String); t3 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; hasMultipleUsers = J.get$length$asx(J.$index$asx(t3._list, t4).userState.list._list) > 1 || t2.get$isNew(); t2 = H.setRuntimeTypeInfo([new S.DataColumn(T.SizedBox$(_null, _null, _null), false, _null), new S.DataColumn(L.Text$(t1.get$email(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null)], type$.JSArray_legacy_DataColumn); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "all_events"); t3 = S.DataCell$(L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); t4 = emailNotifications._list; t5 = J.getInterceptor$asx(t4); if (t5.contains$1(t4, "all_notifications")) t4 = "all"; else t4 = t5.contains$1(t4, "all_user_notifications") ? "user" : _null; t4 = H.setRuntimeTypeInfo([S.DataRow$(H.setRuntimeTypeInfo([t3, S.DataCell$(new B._NotificationSelector(t4, new B.NotificationSettings_build_closure(this), hasMultipleUsers, true, _null), _null)], type$.JSArray_legacy_DataCell))], type$.JSArray_legacy_DataRow); t3 = type$.MappedIterable_of_legacy_String_and_legacy_DataRow; C.JSArray_methods.addAll$1(t4, P.List_List$of(new H.MappedIterable(new H.WhereIterable(C.List_Sfa, new B.NotificationSettings_build_closure0(state), type$.WhereIterable_legacy_String), new B.NotificationSettings_build_closure1(this, emailNotifications, t1, hasMultipleUsers), t3), true, t3._eval$1("Iterable.E"))); t3 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([Y.FormCard$(T.Column$(H.setRuntimeTypeInfo([S.DataTable$(_null, _null, t2, _null, _null, _null, _null, _null, _null, t4, false, true, true, _null)], t3), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null, 4, false, _null, true, _null)], t3), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); }, get$user: function() { return this.user; } }; B.NotificationSettings_build_closure.prototype = { call$1: function(value) { var t1 = type$.JSArray_legacy_String, options = H.setRuntimeTypeInfo([], t1); if (value === "all") options = H.setRuntimeTypeInfo(["all_notifications"], t1); else if (value === "user") options = H.setRuntimeTypeInfo(["all_user_notifications"], t1); this.$this.onChanged.call$2("email", options); }, $signature: 7 }; B.NotificationSettings_build_closure0.prototype = { call$1: function(eventType) { var t2, t3, t1 = type$.JSArray_legacy_String; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["quote_sent", "quote_viewed", "quote_approved"], t1), eventType)) { t2 = this.state; t3 = t2.uiState.selectedCompanyIndex; t3 = !J.$index$asx(t2.userCompanyStates._list, t3).userCompany.company.isModuleEnabled$1(C.EntityType_quote); t2 = t3; } else t2 = false; if (t2) return false; else { if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["credit_sent", "credit_viewed"], t1), eventType)) { t1 = this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.isModuleEnabled$1(C.EntityType_credit); t1 = t2; } else t1 = false; if (t1) return false; } return true; }, $signature: 16 }; B.NotificationSettings_build_closure1.prototype = { call$1: function(eventType) { var value, isAllEnabled, _this = this, _null = null, t1 = _this.emailNotifications, t2 = t1._list, t3 = J.getInterceptor$asx(t2); if (t3.contains$1(t2, "all_notifications")) { value = "all"; isAllEnabled = true; } else if (t3.contains$1(t2, "all_user_notifications")) { value = "user"; isAllEnabled = true; } else { if (t3.contains$1(t2, H.S(eventType) + "_all")) value = "all"; else value = t3.contains$1(t2, H.S(eventType) + "_user") ? "user" : "none"; isAllEnabled = false; } t2 = _this.localization; t3 = S.DataCell$(L.Text$(t2.lookup$1(eventType), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); if (isAllEnabled) if (value === "all") { t1 = _this.hasMultipleUsers; t2 = t1 ? t2.get$allRecords() : t2.get$enabled(t2); t2 = new U.IconText(t2, t1 ? C.IconData_58910_MaterialIcons_null_false : C.IconData_57689_MaterialIcons_null_false, _null, _null, _null); t1 = t2; } else t1 = new U.IconText(t2.get$ownedByUser(), C.IconData_57411_MaterialIcons_null_false, _null, _null, _null); else t1 = new B._NotificationSelector(value, new B.NotificationSettings_build__closure(_this.$this, t1, eventType), _this.hasMultipleUsers, false, _null); return S.DataRow$(H.setRuntimeTypeInfo([t3, S.DataCell$(t1, _null)], type$.JSArray_legacy_DataCell)); }, $signature: 2054 }; B.NotificationSettings_build__closure.prototype = { call$1: function(value) { var t2, t1 = this.emailNotifications, options = new Q.CopyOnWriteList(true, t1._list, t1.$ti._eval$1("CopyOnWriteList<1>")); t1 = this.eventType; t2 = H.S(t1) + "_all"; options._maybeCopyBeforeWrite$0(); J.remove$1$ax(options._copy_on_write_list$_list, t2); t2 = H.S(t1) + "_user"; options._maybeCopyBeforeWrite$0(); J.remove$1$ax(options._copy_on_write_list$_list, t2); if (value === "all") { t1 = H.S(t1) + "_all"; options._maybeCopyBeforeWrite$0(); J.add$1$ax(options._copy_on_write_list$_list, t1); } else if (value === "user") { t1 = H.S(t1) + "_user"; options._maybeCopyBeforeWrite$0(); J.add$1$ax(options._copy_on_write_list$_list, t1); } this.$this.onChanged.call$2("email", options); }, $signature: 7 }; B._NotificationSelector.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.hasMultipleUsers, t3 = t2 ? t1.get$allRecords() : t1.get$enabled(t1), t4 = t2 ? C.IconData_58910_MaterialIcons_null_false : C.IconData_57689_MaterialIcons_null_false, t5 = type$.legacy_String; t4 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(new U.IconText(t3, t4, _null, _null, _null), "all", t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); if (t2) t4.push(K.DropdownMenuItem$(new U.IconText(t1.get$ownedByUser(), C.IconData_57411_MaterialIcons_null_false, _null, _null, _null), "user", t5)); t3 = _this.showNoneAsCustom; if (t3) t1 = t1.get$custom(); else t1 = t2 ? t1.get$none() : t1.get$disabled(t1); t4.push(K.DropdownMenuItem$(new U.IconText(t1, t3 ? C.IconData_57497_MaterialIcons_null_false : C.IconData_57835_MaterialIcons_null_false, _null, _null, _null), "none", t5)); return new Q.AppDropdownButton(_null, _this.value, new B._NotificationSelector_build_closure(_this), t4, _null, true, "", _null, type$.AppDropdownButton_legacy_String); }, get$value: function(receiver) { return this.value; } }; B._NotificationSelector_build_closure.prototype = { call$1: function(value) { if (value == null || J.get$isEmpty$asx(value)) return; this.$this.onChanged.call$1(value); }, $signature: 8 }; S.PasswordFormField.prototype = { createState$0: function() { return new S._PasswordFormFieldState(C._StateLifecycle_0); } }; S._PasswordFormFieldState.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget.labelText; if (t2 == null) t2 = t1.get$password(t1); t3 = _this._widget; t4 = t3.controller; t5 = t3.onSavePressed; t6 = t3.autoValidate; t3 = t3.labelText; if (t3 == null) t3 = t1.get$password(t1); if (_this._password_field$_isPasswordObscured) { t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "show_password"); if (t7 == null) t7 = ""; } else { t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "hide_password"); if (t7 == null) t7 = ""; } t8 = _this._password_field$_isPasswordObscured; t3 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, B.IconButton$(C.Alignment_0_1, _null, _null, true, L.Icon$(t8 ? C.IconData_59069_MaterialIcons_null_false : C.IconData_59070_MaterialIcons_null_false, C.MaterialColor_Map_HFpTk_4288585374, _null), 24, new S._PasswordFormFieldState_build_closure(_this), C.EdgeInsets_8_8_8_8, t7, _null), _null, _null, _null); return S.DecoratedFormField$(false, H.setRuntimeTypeInfo([_this._widget.newPassword ? "newPassword" : "password"], type$.JSArray_legacy_String), false, t6, t4, t3, true, _null, _null, _null, _null, false, false, new D.ValueKey(t2, type$.ValueKey_legacy_String), C.TextInputType_7_null_null, _null, _null, _null, t8, _null, _null, t5, true, _null, _null, C.TextAlign_4, new S._PasswordFormFieldState_build_closure0(_this, t1)); } }; S._PasswordFormFieldState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new S._PasswordFormFieldState_build__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._PasswordFormFieldState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._password_field$_isPasswordObscured = !t1._password_field$_isPasswordObscured; }, $signature: 1 }; S._PasswordFormFieldState_build_closure0.prototype = { call$1: function(value) { var regExp, _this = this, t1 = value.length; if (t1 === 0 || C.JSString_methods.trim$0(value).length === 0) { if (_this.$this._widget.newPassword) t1 = null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "please_enter_your_password"); if (t1 == null) t1 = ""; } return t1; } if (!_this.$this._widget.newPassword) return null; if (t1 < 8) return _this.localization.get$passwordIsTooShort(); regExp = P.RegExp_RegExp("^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9]).{8,}$", true, false); if (!regExp._nativeRegExp.test(value)) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "password_is_too_easy"); return t1 == null ? "" : t1; } return null; }, $signature: 15 }; N.ProjectPicker.prototype = { build$1: function(_, context) { var t4, _this = this, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = $.$get$memoizedDropdownProjectList(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); return Y.DynamicSelector$(true, _this.projectId, t1.call$5(t4.$index(t2, t3).projectState.map, t4.$index(t2, t3).projectState.list, t4.$index(t2, t3).clientState.map, t4.$index(t2, t3).userState.map, _this.clientId), C.EntityType_project, null, null, _this.onAddPressed, _this.onChanged, null); } }; V.SaveCancelButtons.prototype = { build$1: function(_, context) { var _this = this, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.isHeader ? C.CrossAxisAlignment_3 : C.CrossAxisAlignment_2, t3 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (_this.onCancelPressed != null) t3.push(new T.Builder(new V.SaveCancelButtons_build_closure(_this, t1), null)); t3.push(new T.Builder(new V.SaveCancelButtons_build_closure0(_this, t1), null)); return T.Row$(t3, t2, C.MainAxisAlignment_0, C.MainAxisSize_1, null); } }; V.SaveCancelButtons_build_closure.prototype = { call$1: function(context) { var t2, t3, t1 = this.localization; t1 = t1.get$cancel(t1); t2 = this.$this; if (t2.isHeader) t3 = t2.isEnabled || t2.isCancelEnabled; else t3 = false; return new X.AppTextButton(t1, t2.isEnabled || t2.isCancelEnabled ? new V.SaveCancelButtons_build__closure0(t2, context) : null, t3, null, null); }, $signature: 273 }; V.SaveCancelButtons_build__closure0.prototype = { call$0: function() { return this.$this.onCancelPressed.call$1(this.context); }, $signature: 9 }; V.SaveCancelButtons_build_closure0.prototype = { call$1: function(context) { var t3, t1 = this.$this, t2 = t1.saveLabel; if (t2 == null) { t2 = this.localization; t2 = t2.get$save(t2); } t3 = t1.isEnabled ? new V.SaveCancelButtons_build__closure(t1, context) : null; return new X.AppTextButton(t2, t3, t1.isHeader, null, null); }, $signature: 273 }; V.SaveCancelButtons_build__closure.prototype = { call$0: function() { return this.$this.onSavePressed.call$1(this.context); }, $signature: 9 }; M.TimePicker.prototype = { createState$0: function() { return new M._TimePickerState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), O.FocusNode$(true, null, true, null, false), C._StateLifecycle_0); }, onSelected$1: function(arg0) { return this.onSelected.call$1(arg0); } }; M._TimePickerState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = this._time_picker$_focusNode.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.get$_time_picker$_onFoucsChanged()), false); }, didChangeDependencies$0: function() { var t2, _this = this, t1 = _this._widget.selectedDateTime; if (t1 != null) { t1 = t1.toIso8601String$0(); t2 = _this._framework$_element; t2.toString; _this._time_picker$_textController.set$text(0, Y.formatDate(t1, t2, false, true, true)); } _this.super$State$didChangeDependencies(); }, _time_picker$_onFoucsChanged$0: function() { var t1, t2, _this = this; if (!_this._time_picker$_focusNode.get$hasFocus() && _this._widget.selectedDateTime != null) { t1 = _this._widget.selectedDateTime.toIso8601String$0(); t2 = _this._framework$_element; t2.toString; _this._time_picker$_textController.set$text(0, Y.formatDate(t1, t2, false, true, true)); _this.setState$1(new M._TimePickerState__onFoucsChanged_closure(_this)); } }, dispose$0: function(_) { var t1, _this = this; _this._time_picker$_textController.ChangeNotifier__listeners = null; t1 = _this._time_picker$_focusNode; t1.removeListener$1(0, _this.get$_time_picker$_onFoucsChanged()); t1.dispose$0(0); _this.super$State$dispose(0); }, _showTimePicker$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, hour, minute, selectedTime, dateTime, t2, t1, selectedDateTime, now; var $async$_showTimePicker$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.selectedDateTime; selectedDateTime = t1 == null ? null : t1.toLocal$0(); now = new P.DateTime(Date.now(), false); t1 = selectedDateTime == null; hour = t1 ? null : H.Primitives_getHours(selectedDateTime); if (hour == null) hour = H.Primitives_getHours(now); minute = t1 ? null : H.Primitives_getMinutes(selectedDateTime); if (minute == null) minute = H.Primitives_getMinutes(now); t1 = $async$self._framework$_element; t1.toString; $async$goto = 2; return P._asyncAwait(M.showTimePicker(new M._TimePickerState__showTimePicker_closure(), t1, new Z.TimeOfDay(hour, minute)), $async$_showTimePicker$0); case 2: // returning from await. selectedTime = $async$result; if (selectedTime != null) { dateTime = new P.DateTime(Date.now(), false); t1 = selectedTime.hour; t2 = selectedTime.minute; t1 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(dateTime), H.Primitives_getMonth(dateTime), H.Primitives_getDay(dateTime), t1, t2, 0, 0, false); if (!H._isInt(t1)) H.throwExpression(H.argumentErrorValue(t1)); dateTime = new P.DateTime(t1, false).toUtc$0(); t1 = dateTime.toIso8601String$0(); t2 = $async$self._framework$_element; t2.toString; $async$self._time_picker$_textController.set$text(0, Y.formatDate(t1, t2, false, true, true)); t2 = $async$self._widget; t2.toString; t2.onSelected$1(dateTime.toLocal$0()); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_showTimePicker$0, $async$completer); }, build$1: function(_, context) { var t2, _this = this, _null = null, t1 = _this._widget; t1.toString; t2 = _this._time_picker$_pendingValue; t1 = t2 == null ? t1.labelText : t2; if (t1 == null) t1 = ""; t2 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57402_MaterialIcons_null_false, _null, _null), 24, new M._TimePickerState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null); return S.DecoratedFormField$(false, _null, false, false, _this._time_picker$_textController, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null), true, _this._time_picker$_focusNode, _null, _null, _null, false, false, _null, _null, _null, _null, _null, false, new M._TimePickerState_build_closure0(_this, context), _null, _null, true, _null, _null, C.TextAlign_4, _null); } }; M._TimePickerState__onFoucsChanged_closure.prototype = { call$0: function() { this.$this._time_picker$_pendingValue = null; }, $signature: 1 }; M._TimePickerState__showTimePicker_closure.prototype = { call$2: function(context, child) { var enableMilitaryTime, t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; enableMilitaryTime = J.$index$asx(t2._list, t1).userCompany.company.settings.enableMilitaryTime; return new F.MediaQuery(context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.copyWith$1$alwaysUse24HourFormat(enableMilitaryTime), child, null); }, $signature: 2056 }; M._TimePickerState_build_closure.prototype = { call$0: function() { return this.$this._showTimePicker$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M._TimePickerState_build_closure0.prototype = { call$1: function(value) { var t1, value0, t2, t3, parts, t4, part, dateTimeStr, t5, t6, hour, dateTime, date, selectedDate, _this = this, _s1_ = ":"; if (value.length === 0) _this.$this._widget.toString; else { t1 = P.RegExp_RegExp("[^\\d:]", true, false); value0 = H.stringReplaceAllUnchecked(value, t1, ""); t1 = type$.JSArray_String; t2 = type$.WhereIterable_String; t3 = t2._eval$1("Iterable.E"); parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(H.stringReplaceAllUnchecked(value0.toLowerCase(), ".", _s1_).split(_s1_), t1), new M._TimePickerState_build__closure(), t2), true, t3); t4 = parts.length; if (t4 === 1) { part = parts[0]; t4 = part.length; if (t4 === 1 || t4 === 2) dateTimeStr = J.$add$ansx(part, ":00:00"); else if (t4 === 3) dateTimeStr = J.substring$2$s(part, 0, 1) + ":" + C.JSString_methods.substring$2(part, 1, 3) + ":00"; else dateTimeStr = t4 === 4 ? J.substring$2$s(part, 0, 2) + ":" + C.JSString_methods.substring$2(part, 2, 4) + ":00" : ""; } else if (t4 !== 0) { t5 = J.$add$ansx(parts[0], _s1_); t6 = parts[1]; dateTimeStr = C.JSString_methods.$add(t5, t6); if (J.get$length$asx(t6) === 1) dateTimeStr += "0"; dateTimeStr = t4 === 3 ? dateTimeStr + C.JSString_methods.$add(_s1_, parts[2]) : dateTimeStr + ":00"; } else dateTimeStr = ""; if (C.JSString_methods.contains$1(value.toLowerCase(), "a")) dateTimeStr += " AM"; else if (C.JSString_methods.contains$1(value.toLowerCase(), "p")) dateTimeStr += " PM"; else { t4 = O.StoreProvider_of(_this.context, type$.legacy_AppState).get$_store$_state(); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; if (!J.$index$asx(t5._list, t4).userCompany.company.settings.enableMilitaryTime) { hour = Y.parseDouble(parts[0], false); if (hour > 12) { parts = P.List_List$of(new H.WhereIterable(H.setRuntimeTypeInfo(dateTimeStr.split(_s1_), t1), new M._TimePickerState_build__closure0(), t2), true, t3); parts[0] = "" + C.JSNumber_methods.toInt$0(hour - 12); dateTimeStr = C.JSArray_methods.join$1(parts, _s1_); } dateTimeStr += " PM"; } } t1 = _this.context; dateTime = Y.parseTime(dateTimeStr, t1); if (dateTime != null) { date = new P.DateTime(Date.now(), false); t2 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(date), H.Primitives_getMonth(date), H.Primitives_getDay(date), H.Primitives_getHours(dateTime), H.Primitives_getMinutes(dateTime), H.Primitives_getSeconds(dateTime), 0, false); if (!H._isInt(t2)) H.throwExpression(H.argumentErrorValue(t2)); selectedDate = new P.DateTime(t2, false).toUtc$0(); t2 = _this.$this; t2._widget.onSelected$1(selectedDate); t2.setState$1(new M._TimePickerState_build__closure1(t2, selectedDate, t1)); } } }, $signature: 7 }; M._TimePickerState_build__closure.prototype = { call$1: function(element) { return element.length !== 0; }, $signature: 16 }; M._TimePickerState_build__closure0.prototype = { call$1: function(element) { return element.length !== 0; }, $signature: 16 }; M._TimePickerState_build__closure1.prototype = { call$0: function() { this.$this._time_picker$_pendingValue = Y.formatDate(this.selectedDate.toIso8601String$0(), this.context, false, true, true); }, $signature: 1 }; V.UserPicker.prototype = { build$1: function(_, context) { var t4, userIds, t5, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = $.$get$memoizedUserList(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); userIds = t1.call$1(t4.$index(t2, t3).userState.map); if (!t4.$index(t2, t3).userCompany.isAdmin) return T.SizedBox$(_null, _null, _null); t1 = state.authState; t5 = t1.get$isHosted(); if (t5) { t2 = !(Y.cleanApiUrl(t1.url) !== "https://invoicing.co" || t4.$index(t2, t3).userCompany.account.plan === "enterprise"); t1 = t2; } else t1 = false; if (t1) return T.SizedBox$(_null, _null, _null); return Y.DynamicSelector$(true, this.userId, userIds, C.EntityType_user, _null, _null, _null, this.onChanged, _null); } }; K.TokenMeta.prototype = { build$1: function(_, context) { var _null = null, t1 = this.meta; return T.Row$(H.setRuntimeTypeInfo([U.Image$asset("assets/images/payment_types/" + H.S(t1.brand) + ".png", 16, _null), T.SizedBox$(_null, _null, 8), new T.Flexible(1, C.FlexFit_1, L.Text$("\u2022\u2022\u2022\u2022 " + H.S(t1.last4) + " " + H.S(t1.expMonth) + "/" + H.S(t1.expYear), _null, _null, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; U.HelpText.prototype = { build$1: function(_, context) { var _null = null; return M.Container$(_null, T.Center$(T.Opacity$(false, L.Text$(this.message, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 22, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 0.8), _null, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; V.HistoryDrawer.prototype = { build$1: function(_, context) { var t3, t4, _i, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = type$.JSArray_legacy_Widget, widgets = H.setRuntimeTypeInfo([], t2); for (t3 = state.get$historyList(), t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) widgets.push(new V.HistoryListTile(t3[_i], _null)); t1 = L.Text$(t1.get$history(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = H.setRuntimeTypeInfo([], t2); t3 = state.prefState; if (t3.appLayout === C.AppLayout_mobile || t3.historySidebarMode === C.AppSidebarMode_float) t2.push(new T.Builder(new V.HistoryDrawer_build_closure(), _null)); else t2.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57706_MaterialIcons_null_false, _null, _null), 24, new V.HistoryDrawer_build_closure0(store), C.EdgeInsets_8_8_8_8, _null, _null)); return T.SizedBox$(Z.Drawer$(M.Scaffold$(E.AppBar$(t2, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t1, _null, _null, _null, 1, _null), _null, U.FocusTraversalGroup$(new T.ColoredBox(K.Theme_of(context).cardColor, new X.ScrollableListView(widgets, _null, _null, false, _null), _null), _null), _null, _null, _null, _null, _null)), _null, 270); } }; V.HistoryDrawer_build_closure.prototype = { call$1: function(context) { var _null = null; return B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57706_MaterialIcons_null_false, _null, _null), 24, new V.HistoryDrawer_build__closure(context), C.EdgeInsets_8_8_8_8, _null, _null); }, $signature: 271 }; V.HistoryDrawer_build__closure.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V.HistoryDrawer_build_closure0.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_history); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V.HistoryListTile.prototype = { createState$0: function() { return new V._HistoryListTileState(C._StateLifecycle_0); } }; V._HistoryListTileState.prototype = { build$1: function(_, context) { var t3, t4, title, subtitle, t5, entity, clientId, _null = null, t1 = {}, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), $history = this._widget.history; t1.entity = null; t3 = H.setRuntimeTypeInfo([C.EntityType_dashboard, C.EntityType_reports, C.EntityType_settings], type$.JSArray_legacy_EntityType); t4 = $history.entityType; if (C.JSArray_methods.contains$1(t3, t4)) { title = L.Text$(t2.lookup$1(J.toString$0$(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (t4 === C.EntityType_reports) subtitle = L.Text$(t2.lookup$1(state.uiState.reportsUIState.report), _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (t4 === C.EntityType_settings) { t3 = $history.id; subtitle = L.Text$(t2.lookup$1(t3 == null ? "company_details" : t3), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else subtitle = _null; t2 = _null; } else { t3 = state.getEntityMap$1(t4); t5 = $history.id; entity = type$.legacy_BaseEntity._as(J.$index$asx(t3._map$_map, t5)); t1.entity = entity; if (entity != null) t3 = !(!entity.get$isArchived() && !entity.get$isDeleted(entity)); else t3 = true; if (t3) return T.SizedBox$(_null, _null, _null); clientId = type$.legacy_BelongsToClient._is(entity) ? entity.get$clientId(entity) : _null; title = L.Text$(entity.get$listDisplayName().length === 0 ? Y.formatNumber(entity.get$listDisplayAmount(), context, clientId, _null, entity.get$listDisplayAmountType(), true, _null, false) : entity.get$listDisplayName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); subtitle = L.Text$(t2.lookup$1(H.S(t4)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = entity; } t3 = "__" + H.S($history.id) + "_" + H.S(t4) + "__"; t4 = L.Icon$(Q.getEntityIcon(t4), _null, _null); t5 = P.Duration$(0, 0, 0, 0, 1, 0); t1 = t2 == null ? _null : new V._HistoryListTileState_build_closure(t1, state, context); return M.Container$(_null, Q.ListTile$(false, _null, _null, true, false, new D.ValueKey(t3, type$.ValueKey_legacy_String), t4, t1, new V._HistoryListTileState_build_closure0(state, context, $history, store), false, _null, _null, subtitle, _null, title, new E.LiveText(t5, new V._HistoryListTileState_build_closure1($history), _null, _null)), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; V._HistoryListTileState_build_closure1.prototype = { call$0: function() { return E.format(P.DateTime$fromMillisecondsSinceEpoch(this.history.timestamp, false), "en_short"); }, "call*": "call$0", $requiredArgCount: 0, $signature: 150 }; V._HistoryListTileState_build_closure0.prototype = { call$0: function() { var t3, _this = this, _null = null, t1 = _this.state, t2 = t1.prefState; if (t2.appLayout === C.AppLayout_mobile || t2.historySidebarMode === C.AppSidebarMode_float) K.Navigator_of(_this.context, false).pop$1(0, _null); t2 = _this.history; t3 = t2.entityType; switch (t3) { case C.EntityType_dashboard: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, _null)); break; case C.EntityType_reports: J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new K.ViewReports()); break; case C.EntityType_settings: t3 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t1).userCompany.company; J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(t1, _null, _null, _null, false, t2.id, false, _null)); break; default: M.viewEntityById(false, t2.id, t3, _null, false, true); } }, $signature: 1 }; V._HistoryListTileState_build_closure.prototype = { call$0: function() { var t3, t1 = H.setRuntimeTypeInfo([this._box_0.entity], type$.JSArray_legacy_BaseEntity), t2 = this.state.prefState; if (t2.appLayout === C.AppLayout_mobile || t2.historySidebarMode === C.AppSidebarMode_float) { t2 = new P._Future($.Zone__current, type$._Future_Null); t3 = new P._AsyncCompleter(t2, type$._AsyncCompleter_Null); t2.then$1$1(0, new V._HistoryListTileState_build__closure(this.context), type$.Null); t2 = t3; } else t2 = null; L.showEntityActionsDialog(t2, t1, false); }, $signature: 1 }; V._HistoryListTileState_build__closure.prototype = { call$1: function(value) { K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 3 }; A.HistoryDrawerBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.HistoryDrawerBuilder_build_closure(), A.history_drawer_vm_AppDrawerVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_AppDrawerVM); } }; A.HistoryDrawerBuilder_build_closure.prototype = { call$2: function(context, viewModel) { return new V.HistoryDrawer(null); }, $signature: 2059 }; A.AppDrawerVM.prototype = { get$user: function() { return this.user; } }; S.IconMessage.prototype = { build$1: function(_, context) { var t2, _null = null, t1 = this.color; if (t1 == null) t1 = K.Theme_of(context).primaryColorDark; t2 = this.iconData; return M.Container$(_null, new T.Padding(C.EdgeInsets_20_16_20_16, T.Row$(H.setRuntimeTypeInfo([L.Icon$(t2 == null ? C.IconData_58173_MaterialIcons_null_false : t2, C.Color_4294967295, 18), T.SizedBox$(_null, _null, 10), new T.Flexible(1, C.FlexFit_1, L.Text$(this.text, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _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)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, text$0: function($receiver) { return this.text.call$0(); } }; U.IconText.prototype = { build$1: function(_, context) { var t2, t3, t4, t5, _this = this, _null = null, t1 = _this.alignment; if (t1 == null) t1 = C.MainAxisAlignment_0; t2 = _this.style; t3 = t2 == null ? _null : t2.color; t3 = L.Icon$(_this.icon, t3, _null); t4 = T.SizedBox$(_null, _null, 10); t5 = _this.text; return T.Row$(H.setRuntimeTypeInfo([t3, t4, new T.Flexible(1, C.FlexFit_1, L.Text$(t5 == null ? "" : t5, _null, _null, C.TextOverflow_2, _null, _null, t2, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, t1, C.MainAxisSize_0, _null); }, text$0: function($receiver) { return this.text.call$0(); } }; E.InvoiceEmailView.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new E._InvoiceEmailViewState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(1500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; E._InvoiceEmailViewState.prototype = { initState$0: function() { var t1, viewModel, client, invoice, _this = this; _this.super$State$initState(); t1 = U.TabController$(0, 4, _this); _this._invoice_email_view$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_invoice_email_view$_loadTemplate()), false); _this._invoice_email_view$_controllers = H.setRuntimeTypeInfo([_this._invoice_email_view$_subjectController, _this._invoice_email_view$_bodyController], type$.JSArray_legacy_TextEditingController); viewModel = _this._widget.viewModel; client = viewModel.client; invoice = viewModel.invoice; if (client.get$isStale()) viewModel.loadClient.call$0(); switch (invoice.entityType) { case C.EntityType_invoice: t1 = invoice.reminder3Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = C.EmailTemplate_reminder_endless; else { t1 = invoice.reminder2Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = C.EmailTemplate_reminder3; else { t1 = invoice.reminder1Sent; if ((t1 == null ? "" : t1).length !== 0) _this.selectedTemplate = C.EmailTemplate_reminder2; else { t1 = invoice.lastSentDate; if (t1.length !== 0) _this.selectedTemplate = C.EmailTemplate_reminder1; else _this.selectedTemplate = C.EmailTemplate_invoice; } } } break; case C.EntityType_quote: _this.selectedTemplate = C.EmailTemplate_quote; break; case C.EntityType_credit: _this.selectedTemplate = C.EmailTemplate_credit; break; } }, didChangeDependencies$0: function() { this._invoice_email_view$_loadTemplate$0(); this.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._invoice_email_view$_controller.removeListener$1(0, _this.get$_invoice_email_view$_loadTemplate()); _this._invoice_email_view$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._invoice_email_view$_controllers, new E._InvoiceEmailViewState_dispose_closure()); _this.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$dispose(0); }, _invoice_email_view$_onChanged$0: function() { this._invoice_email_view$_debouncer.run$1(new E._InvoiceEmailViewState__onChanged_closure(this)); }, _invoice_email_view$_loadTemplate$0: function() { var t1, origSubject, origBody, t2, _this = this; if (!_this._invoice_email_view$_isLoading) { t1 = _this._framework$_element; t1.toString; t1 = D.getLayout(t1) === C.AppLayout_mobile && _this._invoice_email_view$_controller._tab_controller$_index !== 0; } else t1 = true; if (t1) return; origSubject = J.trim$0$s(_this._invoice_email_view$_subjectController._change_notifier$_value.text); origBody = J.trim$0$s(_this._invoice_email_view$_bodyController._change_notifier$_value.text); _this.setState$1(new E._InvoiceEmailViewState__loadTemplate_closure(_this)); t1 = _this._framework$_element; t1.toString; t2 = H.S(_this.selectedTemplate); L.loadEmailTemplate(origBody, t1, _this._widget.viewModel.invoice, new E._InvoiceEmailViewState__loadTemplate_closure0(_this, origSubject, origBody), origSubject, t2); }, _buildTemplateDropdown$1: function(context) { var t5, t6, settings, contacts, t7, t8, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, invoice = viewModel.invoice, client = viewModel.client, state = viewModel.state, t2 = client.settings, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t3 = t3._list; t5 = J.getInterceptor$asx(t3); t6 = t5.$index(t3, t4).groupState.$get$1(0, client.groupId).settings; settings = G.SettingsEntity_SettingsEntity(t2, t5.$index(t3, t4).userCompany.company.settings, t6); contacts = J.map$1$1$ax(invoice.invitations._list, new E._InvoiceEmailViewState__buildTemplateDropdown_closure(client), type$.legacy_ContactEntity).toList$0(0); t6 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "to"); t2 = H._arrayInstanceType(contacts); t2 = T.Expanded$(L.Text$((t4 == null ? "" : t4) + ": " + new H.MappedIterable(new H.WhereIterable(contacts, new E._InvoiceEmailViewState__buildTemplateDropdown_closure0(), t2._eval$1("WhereIterable<1>")), new E._InvoiceEmailViewState__buildTemplateDropdown_closure1(), t2._eval$1("MappedIterable<1,String*>")).join$1(0, ", "), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t4 = this.selectedTemplate; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "initial_email"); t3 = L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = invoice.entityType; if (t5 === C.EntityType_quote) t6 = C.EmailTemplate_quote; else t6 = t5 === C.EntityType_credit ? C.EmailTemplate_credit : C.EmailTemplate_invoice; t7 = type$.legacy_EmailTemplate; t8 = type$.JSArray_legacy_DropdownMenuItem_legacy_EmailTemplate; t6 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(t3, t6, t7)], t8); if (t5 === C.EntityType_invoice) C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$firstReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_reminder1, t7), K.DropdownMenuItem$(L.Text$(t1.get$secondReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_reminder2, t7), K.DropdownMenuItem$(L.Text$(t1.get$thirdReminder(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_reminder3, t7)], t8)); t3 = settings.emailSubjectCustom1; if ((t3 == null ? "" : t3).length !== 0) t6.push(K.DropdownMenuItem$(L.Text$(t1.get$firstCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_custom1, t7)); t3 = settings.emailSubjectCustom2; if ((t3 == null ? "" : t3).length !== 0) t6.push(K.DropdownMenuItem$(L.Text$(t1.get$secondCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_custom2, t7)); t3 = settings.emailSubjectCustom3; if ((t3 == null ? "" : t3).length !== 0) t6.push(K.DropdownMenuItem$(L.Text$(t1.get$thirdCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), C.EmailTemplate_custom3, t7)); return new T.Padding(C.EdgeInsets_18_2_18_0, T.Row$(H.setRuntimeTypeInfo([t2, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, t6, _null, new E._InvoiceEmailViewState__buildTemplateDropdown_closure2(this), _null, _null, _null, t4, t7), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null); }, _buildPreview$1: function(context) { var t1, _this = this, _null = null; if (D.isMacOS() || D.isWindows() || D.isLinux()) return T.SizedBox$(_null, _null, _null); if (_this._widget.viewModel.isLoading) return new V.LoadingIndicator(210, false, _null); t1 = _this._invoice_email_view$_isLoading; return new L.EmailPreview(_this._invoice_email_view$_subjectPreview, _this._invoice_email_view$_bodyPreview, t1, _null); }, _buildEdit$1: function(context) { var _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = D.getLayout(context) === C.AppLayout_mobile ? 16 : 0, t3 = type$.JSArray_legacy_Widget, t4 = H.setRuntimeTypeInfo([], t3); if (_this._invoice_email_view$_isLoading && _this._invoice_email_view$_subjectController._change_notifier$_value.text.length === 0 && _this._invoice_email_view$_bodyController._change_notifier$_value.text.length === 0) t4.push(new V.LoadingIndicator(210, false, _null)); else C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._invoice_email_view$_subjectController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$subject(), _null, _null, false, new E._InvoiceEmailViewState__buildEdit_closure(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._invoice_email_view$_bodyController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$body(t1), 6, _null, false, new E._InvoiceEmailViewState__buildEdit_closure0(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null)], t3)); return E.SingleChildScrollView$(Y.FormCard$(_null, t4, _null, 4, false, _null, false, new V.EdgeInsets(16, t2, 16, 16)), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); }, _buildHistory$1: function(context) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget.viewModel, invoice = t2.invoice, activities = t2.client.getActivities$2$invoiceId$typeId(invoice.id, "6"); if (!activities.get$iterator(activities).moveNext$0()) return new U.HelpText(t1.get$noHistory(), null); return X.ScrollableListViewBuilder$(new E._InvoiceEmailViewState__buildHistory_closure(activities), activities.get$length(activities), null, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice; if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t1.get$sendEmail(); t3 = t1.get$send(t1); t4 = type$.JSArray_legacy_Widget; t5 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([_this._buildTemplateDropdown$1(context), _this._buildEdit$1(context), T.Expanded$(M.Container$(_null, _this._buildPreview$1(context), C.Clip_0, C.Color_4294967295, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, _null), 1)], t4), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), 1); t1 = H.setRuntimeTypeInfo([E.Tab$(L.Text$(t1.get$pdf(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), E.Tab$(L.Text$(t1.get$history(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4); t6 = invoice.entityType; if (t6 === C.EntityType_credit) t6 = new U.CreditPdfScreen(false, _null); else t6 = t6 === C.EntityType_quote ? new V.QuotePdfScreen(false, _null) : new O.InvoicePdfScreen(false, _null); return K.EditScaffold$(_null, _null, T.Row$(H.setRuntimeTypeInfo([t5, T.Expanded$(U.DefaultTabController$(T.Column$(H.setRuntimeTypeInfo([new R.AppTabBar(t1, _null, false, _null, _null), T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([t6, _this._buildHistory$1(context)], t4), _null, _null), 1)], t4), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), 2), 1)], t4), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, invoice, _null, false, _null, new E._InvoiceEmailViewState_build_closure(invoice), new E._InvoiceEmailViewState_build_closure0(_this, viewModel), t3, t2); } t2 = t1.get$sendEmail(); t3 = type$.JSArray_legacy_Widget; t4 = E.TabBar$(_this._invoice_email_view$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$preview()), E.Tab$(_null, t1.get$customize()), E.Tab$(_null, t1.get$pdf()), E.Tab$(_null, t1.get$history(t1))], t3)); t1 = t1.get$send(t1); t5 = _this._invoice_email_view$_controller; t6 = T.Column$(H.setRuntimeTypeInfo([_this._buildTemplateDropdown$1(context), T.Expanded$(_this._buildPreview$1(context), 1)], t3), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); t7 = _this._buildEdit$1(context); t8 = invoice.entityType; if (t8 === C.EntityType_credit) t8 = new U.CreditPdfScreen(false, _null); else t8 = t8 === C.EntityType_quote ? new V.QuotePdfScreen(false, _null) : new O.InvoicePdfScreen(false, _null); return U.DefaultTabController$(K.EditScaffold$(_null, t4, E.TabBarView$(H.setRuntimeTypeInfo([t6, t7, t8, _this._buildHistory$1(context)], t3), t5, _null), _null, invoice, _null, false, _null, new E._InvoiceEmailViewState_build_closure1(invoice), new E._InvoiceEmailViewState_build_closure2(_this, viewModel), t1, t2), 3); } }; E._InvoiceEmailViewState_dispose_closure.prototype = { call$1: function(controller) { J.dispose$0$x(controller); }, $signature: 8 }; E._InvoiceEmailViewState__onChanged_closure.prototype = { call$0: function() { this.$this._invoice_email_view$_loadTemplate$0(); }, $signature: 1 }; E._InvoiceEmailViewState__loadTemplate_closure.prototype = { call$0: function() { this.$this._invoice_email_view$_isLoading = true; }, $signature: 1 }; E._InvoiceEmailViewState__loadTemplate_closure0.prototype = { call$4: function(subject, body, rawSubject, rawBody) { var t1 = this.$this; if (t1._framework$_element == null) return; t1.setState$1(new E._InvoiceEmailViewState__loadTemplate__closure(t1, subject, body, this.origSubject, this.origBody, rawSubject, rawBody)); }, $signature: 573 }; E._InvoiceEmailViewState__loadTemplate__closure.prototype = { call$0: function() { var _this = this, t1 = _this.$this, t2 = t1._invoice_email_view$_isLoading = false; t1._invoice_email_view$_subjectPreview = J.trim$0$s(_this.subject); t1._invoice_email_view$_bodyPreview = J.trim$0$s(_this.body); if (_this.origSubject.length === 0 ? _this.origBody.length === 0 : t2) { t1._invoice_email_view$_subjectController.set$text(0, J.trim$0$s(_this.rawSubject)); t1._invoice_email_view$_bodyController.set$text(0, J.trim$0$s(_this.rawBody)); } }, $signature: 1 }; E._InvoiceEmailViewState__buildTemplateDropdown_closure.prototype = { call$1: function(invitation) { return J.firstWhere$2$orElse$ax(this.client.contacts._list, new E._InvoiceEmailViewState__buildTemplateDropdown__closure0(invitation), new E._InvoiceEmailViewState__buildTemplateDropdown__closure1()); }, $signature: 2061 }; E._InvoiceEmailViewState__buildTemplateDropdown__closure0.prototype = { call$1: function(contact) { return contact.id === this.invitation.contactId; }, $signature: 156 }; E._InvoiceEmailViewState__buildTemplateDropdown__closure1.prototype = { call$0: function() { return null; }, $signature: 1 }; E._InvoiceEmailViewState__buildTemplateDropdown_closure0.prototype = { call$1: function(contact) { return contact != null; }, $signature: 156 }; E._InvoiceEmailViewState__buildTemplateDropdown_closure1.prototype = { call$1: function(contact) { var $name = contact.get$fullName(), t1 = contact.email; if (t1.length !== 0) $name = $name.length === 0 ? $name + t1 : $name + (" \u2022 " + t1); return $name; }, $signature: 2062 }; E._InvoiceEmailViewState__buildTemplateDropdown_closure2.prototype = { call$1: function(template) { var t1 = this.$this; t1.setState$1(new E._InvoiceEmailViewState__buildTemplateDropdown__closure(t1, template)); }, $signature: 572 }; E._InvoiceEmailViewState__buildTemplateDropdown__closure.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_email_view$_subjectController.set$text(0, ""); t1._invoice_email_view$_bodyController.set$text(0, ""); t1.selectedTemplate = this.template; t1._invoice_email_view$_loadTemplate$0(); }, $signature: 1 }; E._InvoiceEmailViewState__buildEdit_closure.prototype = { call$1: function(_) { return this.$this._invoice_email_view$_onChanged$0(); }, $signature: 59 }; E._InvoiceEmailViewState__buildEdit_closure0.prototype = { call$1: function(_) { return this.$this._invoice_email_view$_onChanged$0(); }, $signature: 59 }; E._InvoiceEmailViewState__buildHistory_closure.prototype = { call$2: function(context, index) { return new N.ActivityListTile(this.activities.elementAt$1(0, index), false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 267 }; E._InvoiceEmailViewState_build_closure.prototype = { call$1: function(context) { return M.viewEntity(false, this.invoice, null, false); }, $signature: 29 }; E._InvoiceEmailViewState_build_closure0.prototype = { call$1: function(context) { var t1 = this.$this; this.viewModel.onSendPressed.call$4(context, t1.selectedTemplate, t1._invoice_email_view$_subjectController._change_notifier$_value.text, t1._invoice_email_view$_bodyController._change_notifier$_value.text); }, $signature: 14 }; E._InvoiceEmailViewState_build_closure1.prototype = { call$1: function(context) { return M.viewEntity(false, this.invoice, null, false); }, $signature: 29 }; E._InvoiceEmailViewState_build_closure2.prototype = { call$1: function(context) { var t1 = this.$this; this.viewModel.onSendPressed.call$4(context, t1.selectedTemplate, t1._invoice_email_view$_subjectController._change_notifier$_value.text, t1._invoice_email_view$_bodyController._change_notifier$_value.text); }, $signature: 14 }; E.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; T.InvoiceItemListTile.prototype = { build$1: function(_, context) { var precision, subtitle, parts, _null = null, t1 = this.invoiceItem, t2 = this.invoice, t3 = t2.clientId, cost = Y.formatNumber(t1.cost, context, t3, _null, C.FormatNumberType_0, false, _null, false), qty = Y.formatNumber(t1.quantity, context, t3, _null, C.FormatNumberType_3, true, _null, false), t4 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t5 = state.userCompanyStates, t6 = state.uiState.selectedCompanyIndex, client = J.$index$asx(t5._list, t6).clientState.$get$1(0, t3); t6 = state.staticState.currencyMap; t5 = client.settings.currencyId; t5 = J.$index$asx(t6._map$_map, t5); precision = t5 == null ? _null : t5.precision; if (precision == null) precision = 2; subtitle = H.S(qty) + " x " + H.S(cost); t5 = t1.discount; if (t5 !== 0) { subtitle += " \u2022 " + t4.get$discount() + " "; subtitle = t2.isAmountDiscount ? C.JSString_methods.$add(subtitle, Y.formatNumber(t5, context, t3, _null, C.FormatNumberType_0, true, _null, false)) : C.JSString_methods.$add(subtitle, Y.formatNumber(t5, context, t3, _null, C.FormatNumberType_1, true, _null, false)); } t4 = t1.taxRate1; if (t4 !== 0) subtitle += " \u2022 " + H.S(Y.formatNumber(t4, context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t1.taxName1; t4 = t1.taxRate2; if (t4 !== 0) subtitle += " \u2022 " + H.S(Y.formatNumber(t4, context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t1.taxName2; t4 = t1.taxRate3; if (t4 !== 0) subtitle += " \u2022 " + H.S(Y.formatNumber(t4, context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t1.taxName3; parts = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t4 = t1.customValue1; if (t4.length !== 0) parts.push(Y.formatCustomValue(context, "product1", t4)); t4 = t1.customValue2; if (t4.length !== 0) parts.push(Y.formatCustomValue(context, "product2", t4)); t4 = t1.customValue3; if (t4.length !== 0) parts.push(Y.formatCustomValue(context, "product3", t4)); t4 = t1.customValue4; if (t4.length !== 0) parts.push(Y.formatCustomValue(context, "product4", t4)); t4 = t1.notes; if (t4.length !== 0) parts.push(t4); if (parts.length !== 0) subtitle += "\n" + C.JSArray_methods.join$1(parts, " \u2022 "); t4 = K.Theme_of(context).cardColor; t5 = type$.JSArray_legacy_Widget; t3 = T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t1.productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), L.Text$(Y.formatNumber(t1.total$2(0, t2, precision), context, t3, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t2 = T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(subtitle, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), 1), T.SizedBox$(_null, _null, 1)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t1 = L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null); return M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([Q.ListTile$(false, C.EdgeInsets_20_4_20_4, _null, true, false, _null, _null, _null, this.onTap, false, _null, _null, t2, _null, t3, t1), new G.ListDivider(_null)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, t4, 0, _null, _null, _null, _null, C.MaterialType_0); }, get$invoice: function() { return this.invoice; } }; D.TaxRateDropdown.prototype = { createState$0: function() { return new D._TaxRateDropdownState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), C._StateLifecycle_0); } }; D._TaxRateDropdownState.prototype = { didChangeDependencies$0: function() { var t2, taxState, _this = this, t1 = _this._framework$_element; t1.toString; t1 = O.StoreProvider_of(t1, type$.legacy_AppState).get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; taxState = J.$index$asx(t2._list, t1).taxRateState; t1 = _this._selectedTaxRate = C.JSArray_methods.firstWhere$2$orElse(J.map$1$1$ax(taxState.list._list, new D._TaxRateDropdownState_didChangeDependencies_closure(taxState), type$.legacy_TaxRateEntity).toList$0(0), new D._TaxRateDropdownState_didChangeDependencies_closure0(_this), new D._TaxRateDropdownState_didChangeDependencies_closure1(_this)); if (t1.rate !== 0) _this._tax_rate_dropdown$_textController.set$text(0, _this._formatTaxRate$1(t1)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { this._tax_rate_dropdown$_textController.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, _formatTaxRate$1: function(taxRate) { var t1 = taxRate.rate, t2 = this._framework$_element; t2.toString; return H.S(Y.formatNumber(t1, t2, null, null, C.FormatNumberType_1, true, null, false)) + " " + taxRate.name; }, build$1: function(_, context) { var taxRates, taxRate, t3, t4, t5, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex, taxState = J.$index$asx(t1._list, t2).taxRateState; t2 = J.where$1$ax(taxState.list._list, new D._TaxRateDropdownState_build_closure(taxState)); t1 = t2.$ti._eval$1("MappedIterable<1,TaxRateEntity*>"); taxRates = P.List_List$of(new H.MappedIterable(t2, new D._TaxRateDropdownState_build_closure0(taxState), t1), true, t1._eval$1("Iterable.E")); if (taxRates.length === 0) return T.SizedBox$(_null, _null, _null); taxRate = C.JSArray_methods.firstWhere$2$orElse(taxRates, new D._TaxRateDropdownState_build_closure1(_this), new D._TaxRateDropdownState_build_closure2(_this)); t1 = _this._widget; t2 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1.labelText, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (taxRate != null) t3 = taxRate.rate === 0 && taxRate.name.length === 0; else t3 = true; t1 = t1.onSelected; t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DropdownMenuItem_legacy_TaxRateEntity); t5 = taxRate.rate === 0; if (!(t5 && taxRate.name.length === 0)) t4.push(K.DropdownMenuItem$(L.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null), T.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), type$.legacy_TaxRateEntity)); if (taxRate.get$isNew()) t4.push(K.DropdownMenuItem$(L.Text$(t5 && taxRate.name.length === 0 ? "" : _this._formatTaxRate$1(taxRate), _null, _null, _null, _null, _null, _null, _null, _null, _null), taxRate, type$.legacy_TaxRateEntity)); t5 = H._arrayInstanceType(taxRates)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t4, P.List_List$of(new H.MappedListIterable(taxRates, new D._TaxRateDropdownState_build_closure3(_this), t5), true, t5._eval$1("ListIterable.E"))); return L.InputDecorator$(_null, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, true, true, 48, t4, _null, t1, _null, _null, _null, taxRate, type$.legacy_TaxRateEntity), _null), t2, false, t3, false, false, _null, _null); } }; D._TaxRateDropdownState_didChangeDependencies_closure.prototype = { call$1: function(id) { return J.$index$asx(this.taxState.map._map$_map, id); }, $signature: 239 }; D._TaxRateDropdownState_didChangeDependencies_closure0.prototype = { call$1: function(taxRate) { var t1 = taxRate.name, t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, $signature: 570 }; D._TaxRateDropdownState_didChangeDependencies_closure1.prototype = { call$0: function() { var t1 = this.$this._widget; return T.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, $signature: 568 }; D._TaxRateDropdownState_build_closure.prototype = { call$1: function(id) { var t1 = J.$index$asx(this.taxState.map._map$_map, id); return !t1.get$isArchived() && !J.get$isDeleted$x(t1); }, $signature: 16 }; D._TaxRateDropdownState_build_closure0.prototype = { call$1: function(id) { return J.$index$asx(this.taxState.map._map$_map, id); }, $signature: 239 }; D._TaxRateDropdownState_build_closure1.prototype = { call$1: function(taxRate) { var t1 = taxRate.name, t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, $signature: 570 }; D._TaxRateDropdownState_build_closure2.prototype = { call$0: function() { var t1 = this.$this._widget; return T.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, $signature: 568 }; D._TaxRateDropdownState_build_closure3.prototype = { call$1: function(taxRate) { var _null = null; return K.DropdownMenuItem$(L.Text$(taxRate.rate === 0 && taxRate.name.length === 0 ? "" : this.$this._formatTaxRate$1(taxRate), _null, _null, _null, _null, _null, _null, _null, _null, _null), taxRate, type$.legacy_TaxRateEntity); }, $signature: 2068 }; R.TaxRateField.prototype = { build$1: function(_, context) { var t3, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "tax_name"); if (t2 == null) t2 = ""; t2 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, _this.initialTaxName, _null, false, false, _null, _null, t2, _null, _null, false, new R.TaxRateField_build_closure(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null), 1); t3 = T.SizedBox$(_null, _null, 16); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "tax_amount"); if (t1 == null) t1 = ""; return T.Row$(H.setRuntimeTypeInfo([t2, t3, T.Expanded$(S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, Y.formatNumber(_this.initialTaxAmount, context, _null, _null, C.FormatNumberType_4, true, _null, false), _null, false, false, _null, _null, t1, _null, _null, false, new R.TaxRateField_build_closure0(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; R.TaxRateField_build_closure.prototype = { call$1: function(value) { return this.$this.onNameChanged.call$1(value); }, $signature: 5 }; R.TaxRateField_build_closure0.prototype = { call$1: function(value) { return this.$this.onAmountChanged.call$1(Y.parseDouble(value, false)); }, $signature: 5 }; Z.LinkTextSpan.prototype = {}; Z.LinkTextSpan_closure.prototype = { call$0: function() { T.launch(this.url, false, false); }, $signature: 1 }; N.ListFilter.prototype = { createState$0: function() { return new N._ListFilterState(new O.Debouncer(500, false), C._StateLifecycle_0); }, onFilterChanged$1: function(arg0) { return this.onFilterChanged.call$1(arg0); } }; N._ListFilterState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); _this._filterController = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)); t1 = O.FocusNode$(true, null, true, null, false); t2 = t1.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$onFocusChanged()), false); _this._list_filter$_focusNode = t1; }, onFocusChanged$0: function() { if (this._list_filter$_focusNode.get$hasFocus()) this.setState$1(new N._ListFilterState_onFocusChanged_closure()); }, get$_getPlaceholder: function() { var t1, count, isSingle, t2, key, placeholder, _this = this; if (_this._list_filter$_focusNode.get$hasFocus()) return ""; t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); count = J.get$length$asx(_this._widget.entityIds); isSingle = count === 1 || C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_dashboard, C.EntityType_settings], type$.JSArray_legacy_EntityType), _this._widget.entityType); t2 = _this._widget; key = A.toSnakeCase(isSingle ? t2.entityType.name : t2.entityType.get$plural()); placeholder = t1.lookup$1(_this._widget.entityType === C.EntityType_dashboard ? "search_company" : "search_" + key); if (isSingle) t1 = placeholder; else { count.toString; t1 = _this._framework$_element; t1.toString; t1 = J.replaceFirst$2$s(placeholder, ":count", Y.formatNumber(count, t1, null, null, C.FormatNumberType_2, true, null, false)); } return t1; }, didChangeDependencies$0: function() { var _this = this; _this.super$State$didChangeDependencies(); _this._filterController.set$text(0, _this._widget.filter); if (_this._widget.filter != null) _this._list_filter$_focusNode.requestFocus$0(); }, dispose$0: function(_) { var _this = this; _this._filterController.ChangeNotifier__listeners = null; _this._list_filter$_focusNode.removeListener$1(0, _this.get$onFocusChanged()); _this._list_filter$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, build$1: function(_, context) { var color, t1, t2, t3, t4, _this = this, _null = null, textColor = K.Theme_of(context).textTheme.bodyText1.color; _this._widget.toString; if (O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.enableDarkMode) color = E.convertHexStringToColor("#393A3C"); else color = E.convertHexStringToColor("#dfdfdf"); t1 = K.BorderRadius$all(new P.Radius(2, 2)); t2 = _this._list_filter$_focusNode; t3 = _this._filterController._change_notifier$_value.text.length !== 0 || t2.get$hasFocus() ? C.TextAlign_4 : C.TextAlign_2; t4 = _this._filterController._change_notifier$_value.text.length !== 0 || _this._list_filter$_focusNode.get$hasFocus() ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, textColor, _null), 24, new N._ListFilterState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null) : L.Icon$(C.IconData_58727_MaterialIcons_null_false, textColor, _null); t4 = L.InputDecoration$(_null, C._NoInputBorder_EYU, new V.EdgeInsets(8, 0, 8, 6), _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _this.get$_getPlaceholder(), _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null); return new T.Padding(C.EdgeInsets_0_2_0_0, M.Container$(_null, Z.TextField$(false, _null, false, _null, _this._filterController, _null, _null, _null, 2, t4, true, true, _null, false, t2, _null, _null, _null, _null, true, _null, 1, _null, false, "\u2022", new N._ListFilterState_build_closure0(_this), _null, _null, _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, t3, C.TextAlignVertical_0, C.TextCapitalization_3, _null, _null, _null), C.Clip_0, _null, _null, new S.BoxDecoration(color, _null, _null, t1, _null, _null, C.BoxShape_0), _null, 40, _null, new V.EdgeInsets(0, 0, 0, 2), C.EdgeInsets_8_0_0_0, _null, _null, _null), _null); } }; N._ListFilterState_onFocusChanged_closure.prototype = { call$0: function() { }, $signature: 1 }; N._ListFilterState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1._filterController.set$text(0, ""); t1._list_filter$_focusNode.unfocus$1$disposition(C.UnfocusDisposition_1); t1._widget.onFilterChanged$1(null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N._ListFilterState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; t1._debouncer.run$1(new N._ListFilterState_build__closure(t1, value)); }, $signature: 7 }; N._ListFilterState_build__closure.prototype = { call$0: function() { this.$this._widget.onFilterChanged$1(this.value); }, $signature: 1 }; Y.ListScaffold.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.entityType, isSettings = t2.get$isSetting(), leading = T.SizedBox$(_null, _null, _null); if (isSettings) leading = D.getLayout(context) === C.AppLayout_mobile ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57490_MaterialIcons_null_true, _null, _null), 24, new Y.ListScaffold_build_closure(context), C.EdgeInsets_8_8_8_8, _null, _null) : B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57415_MaterialIcons_null_false, _null, _null), 24, new Y.ListScaffold_build_closure0(_this, context), C.EdgeInsets_8_8_8_8, _null, _null); else { if (D.getLayout(context) !== C.AppLayout_mobile) { t3 = state.prefState; t3 = t3.appLayout === C.AppLayout_mobile || t3.menuSidebarMode === C.AppSidebarMode_float; } else t3 = true; if (t3) leading = new T.Builder(new Y.ListScaffold_build_closure1(_this, t1), _null); else if (t2 !== C.EntityType_settings) leading = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57415_MaterialIcons_null_false, _null, _null), 24, new Y.ListScaffold_build_closure2(_this, context), C.EdgeInsets_8_8_8_8, _null, _null); } t2 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([T.Expanded$(leading, 1)], t2); if (D.getLayout(context) === C.AppLayout_desktop && _this.onCheckboxPressed != null) { t4 = L.Icon$(C.IconData_57687_MaterialIcons_null_false, _null, _null); t3.push(T.Expanded$(B.IconButton$(C.Alignment_0_0, _null, _null, true, t4, 24, state.prefState.showKanban && state.uiState.get$mainRoute() === C.EntityType_task.toString$0(0) ? _null : new Y.ListScaffold_build_closure3(_this), C.EdgeInsets_8_8_8_8, _null, _null), 1)); } t4 = _this.appBarLeadingActions; C.JSArray_methods.addAll$1(t3, t4); leading = T.Row$(t3, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); if (D.getLayout(context) !== C.AppLayout_mobile) { t3 = state.prefState; t3 = t3.appLayout === C.AppLayout_mobile || t3.menuSidebarMode === C.AppSidebarMode_float; } else t3 = true; t3 = t3 ? new A.MenuDrawerBuilder(_null) : _null; if (D.getLayout(context) !== C.AppLayout_mobile) { t5 = state.prefState; t5 = (t5.appLayout === C.AppLayout_mobile || t5.historySidebarMode === C.AppSidebarMode_float) && !isSettings; } else t5 = true; t5 = t5 ? new A.HistoryDrawerBuilder(_null) : _null; t4 = t4.length; t6 = _this.onCheckboxPressed == null || D.getLayout(context) === C.AppLayout_mobile ? 1 : 2; t7 = _this.appBarActions; t2 = t7 == null ? H.setRuntimeTypeInfo([], t2) : t7; t2 = P.List_List$of(t2, true, type$.legacy_Widget); if (D.getLayout(context) === C.AppLayout_desktop && _this.onCancelSettingsSection != null) t2.push(U.TextButton$(false, L.Text$(t1.get$back(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _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, new Y.ListScaffold_build_closure4(_this, store, state), _null)); if (!isSettings) t7 = D.getLayout(context) === C.AppLayout_mobile || !state.prefState.isHistoryVisible; else t7 = false; if (t7) t2.push(new T.Builder(new Y.ListScaffold_build_closure5(t1, state, store), _null)); return new F.WillPopScope(U.FocusTraversalGroup$(M.Scaffold$(E.AppBar$(t2, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, leading, 48 * (t4 + t6), true, _null, _null, _null, _null, _this.appBarTitle, _null, _null, _null, 1, _null), _null, T.ClipRect$(_this.body), _this.bottomNavigationBar, t3, t5, _this.floatingActionButton, C.C__EndDockedFabLocation), _null), new Y.ListScaffold_build_closure6(store), _null); }, get$body: function(receiver) { return this.body; } }; Y.ListScaffold_build_closure.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Y.ListScaffold_build_closure0.prototype = { call$0: function() { M.createEntityByType(true, this.context, this.$this.entityType); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.ListScaffold_build_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return R.InkWell$(false, _null, true, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58332_MaterialIcons_null_false, _null, _null), 24, new Y.ListScaffold_build__closure0(context), C.EdgeInsets_8_8_8_8, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.$this.onHamburgerLongPress, _null, _null, _null, _null, _null, _null); }, $signature: 375 }; Y.ListScaffold_build__closure0.prototype = { call$0: function() { M.Scaffold_of(this.context).openDrawer$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.ListScaffold_build_closure2.prototype = { call$0: function() { M.createEntityByType(true, this.context, this.$this.entityType); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.ListScaffold_build_closure3.prototype = { call$0: function() { return this.$this.onCheckboxPressed.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Y.ListScaffold_build_closure6.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start J.$index$asx($async$self.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; Y.ListScaffold_build_closure4.prototype = { call$0: function() { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).userCompany.company; t2 = this.$this; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(t1, null, null, null, false, t2.onCancelSettingsSection, false, t2.onCancelSettingsIndex)); }, $signature: 1 }; Y.ListScaffold_build_closure5.prototype = { call$1: function(context) { var _null = null, t1 = this.localization; t1 = t1.get$history(t1); return B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58132_MaterialIcons_null_false, _null, _null), 24, new Y.ListScaffold_build__closure(context, this.state, this.store), C.EdgeInsets_4_0_20_0, t1, _null); }, $signature: 271 }; Y.ListScaffold_build__closure.prototype = { call$0: function() { var t2, _null = null, t1 = this.context; if (D.getLayout(t1) !== C.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === C.AppLayout_mobile || t2.historySidebarMode === C.AppSidebarMode_float; } else t2 = true; if (t2) M.Scaffold_of(t1).openEndDrawer$0(); else { t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_history); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.ActivityListTile.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, user, client, vendor, invoice, quote, credit, recurringInvoice, payment, task, expense, title, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).userState.map; t6 = this.activity; t7 = t6.userId; user = J.$index$asx(t5._map$_map, t7); t7 = t4.$index(t2, t3).clientState.map; t5 = t6.clientId; client = J.$index$asx(t7._map$_map, t5); t5 = t4.$index(t2, t3).vendorState.map; t7 = t6.vendorId; vendor = J.$index$asx(t5._map$_map, t7); t7 = t4.$index(t2, t3).invoiceState.map; t5 = t6.invoiceId; invoice = J.$index$asx(t7._map$_map, t5); t5 = t4.$index(t2, t3).quoteState.map; t7 = t6.quoteId; quote = J.$index$asx(t5._map$_map, t7); t7 = t4.$index(t2, t3).creditState.map; t5 = t6.creditId; credit = J.$index$asx(t7._map$_map, t5); t5 = t4.$index(t2, t3).recurringInvoiceState.map; t7 = t6.recurringInvoiceId; recurringInvoice = J.$index$asx(t5._map$_map, t7); t7 = t4.$index(t2, t3).paymentState.map; t5 = t6.paymentId; payment = J.$index$asx(t7._map$_map, t5); t5 = t4.$index(t2, t3).taskState.map; t7 = t6.taskId; task = J.$index$asx(t5._map$_map, t7); t3 = t4.$index(t2, t3).expenseState.map; t2 = t6.expenseId; expense = J.$index$asx(t3._map$_map, t2); title = t1.lookup$1("activity_" + t6.activityTypeId); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "system"); title = t6.getDescription$12$client$credit$expense$invoice$payment$quote$recurringInvoice$task$user$vendor(title, t2 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), "system") : t2, client, credit, expense, invoice, payment, quote, recurringInvoice, task, user, vendor); t2 = L.Icon$(Q.getEntityIcon(t6.get$entityType()), _null, _null); t3 = L.Text$(title, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = this.enableNavigation; t5 = !t4 ? _null : new N.ActivityListTile_build_closure(this, client); t4 = t4 ? L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null) : _null; t7 = t6.notes; t1 = t7.length !== 0 ? J.trim$0$s(t1.lookup$1(t7)) + "\n" : ""; t7 = t6.updatedAt; t1 += Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t7 * 1000, false).toIso8601String$0(), context, true, true, true); t6 = t6.ip; return Q.ListTile$(false, _null, _null, true, false, _null, t2, _null, t5, false, _null, _null, T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(t1 + ((t6 == null ? "" : t6).length !== 0 ? C.JSString_methods.$add(" \u2022 ", t6) : ""), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, t3, t4); } }; N.ActivityListTile_build_closure.prototype = { call$0: function() { var _this = this, t1 = _this.$this.activity; switch (t1.get$entityType()) { case C.EntityType_task: M.viewEntityById(false, t1.taskId, C.EntityType_task, _this.client, false, true); break; case C.EntityType_client: M.viewEntityById(false, t1.clientId, C.EntityType_client, null, false, true); break; case C.EntityType_invoice: M.viewEntityById(false, t1.invoiceId, C.EntityType_invoice, _this.client, false, true); break; case C.EntityType_quote: M.viewEntityById(false, t1.quoteId, C.EntityType_quote, _this.client, false, true); break; case C.EntityType_credit: M.viewEntityById(false, t1.creditId, C.EntityType_credit, _this.client, false, true); break; case C.EntityType_payment: M.viewEntityById(false, t1.paymentId, C.EntityType_payment, _this.client, false, true); break; case C.EntityType_expense: M.viewEntityById(false, t1.expenseId, C.EntityType_expense, _this.client, false, true); break; default: P.print("Error: entity type " + H.S(t1.get$entityType()) + " not handled in activity_list_tile"); } }, $signature: 1 }; G.AppListTile.prototype = { _app_list_tile$_onLongPress$1: function(context) { var _this = this, t1 = _this.copyValue, t2 = t1 == null, t3 = t2 ? _this.title : t1; if (t3.length === 0) return; T.Clipboard_setData(new T.ClipboardData(t2 ? _this.title : t1)); t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$copiedToClipboard(); M.showToast(C.JSString_methods.replaceFirst$2(t3, ":value", t2 ? _this.title : t1)); }, build$1: function(_, context) { var t5, _this = this, _null = null, t1 = K.Theme_of(context).cardColor, t2 = L.Icon$(_this.icon, _null, _null), t3 = L.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t4.push(L.Text$(_this.subtitle, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t5 = _this.buttons; if (t5 != null) t4.push(new T.Padding(C.EdgeInsets_0_8_0_0, T.Row$(t5, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); t4 = T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); return M.Material$(C.Duration_200000, true, _null, Q.ListTile$(false, new V.EdgeInsets(25, 16, 25, 16), false, true, false, _null, t2, new G.AppListTile_build_closure(_this, context), new G.AppListTile_build_closure0(_this, context), false, _null, _null, t4, _null, t3, _null), C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0); } }; G.AppListTile_build_closure0.prototype = { call$0: function() { var t1 = this.context, t2 = this.$this; return D.getLayout(t1) === C.AppLayout_desktop ? t2._app_list_tile$_onLongPress$1(t1) : t2.onTap.call$0(); }, $signature: 0 }; G.AppListTile_build_closure.prototype = { call$0: function() { return this.$this._app_list_tile$_onLongPress$1(this.context); }, $signature: 0 }; G.ListDivider.prototype = { build$1: function(_, context) { var _null = null, color = E.convertHexStringToColor(O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.enableDarkMode ? "#393A3C" : "#dfdfdf"); return M.Container$(_null, Z.Divider$(color, 1.5, 1.5), C.Clip_0, color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; N.ListFilterMessage.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = _this.filterEntityType; return M.Material$(C.Duration_200000, true, _null, new N.FilterListTile(t1, J.$index$asx(O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().getEntityMap$1(t1)._map$_map, _this.filterEntityId), _this.onPressed, _this.onClearPressed, _this.isSettings, _null), C.Clip_0, C.MaterialColor_Map_JNZaB_4294940672, 6, _null, _null, _null, _null, C.MaterialType_0); } }; N.FilterListTile.prototype = { build$1: function(_, context) { var t3, subtitle, _this = this, _null = null, t1 = {}, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.subtitle = t1.title = null; t3 = _this.entity; if (_this.isSettings) { subtitle = t3 == null ? _null : t3.get$listDisplayName(); t1.subtitle = subtitle == null ? "" : subtitle; t3 = _this.entityType; if (t3 === C.EntityType_client) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "client_settings"); t1.title = t2 == null ? "" : t2; } else if (t3 === C.EntityType_group) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "group_settings"); t1.title = t2 == null ? "" : t2; } } else { t1.title = C.JSString_methods.replaceFirst$2(t2.get$filteredBy(), ":value", t3.get$listDisplayName()); t1.subtitle = t2.lookup$1(J.toString$0$(_this.entityType)); } return T.ClipRect$(new T.Padding(C.EdgeInsets_0_2_0_0, M.Container$(_null, new A.LayoutBuilder(new N.FilterListTile_build_closure(t1, _this), _null), C.Clip_0, _null, _null, new S.BoxDecoration(_null, _null, F.Border_Border$all(C.MaterialColor_Map_HFpTk_4288585374, 0.5), K.BorderRadius$all(new P.Radius(2, 2)), _null, _null, C.BoxShape_0), _null, _null, _null, _null, _null, _null, _null, _null), _null)); } }; N.FilterListTile_build_closure.prototype = { call$2: function(context, constraints) { var _null = null, t1 = constraints.maxWidth > 250 ? L.Icon$(Q.getEntityIcon(this.$this.entityType), _null, _null) : _null, t2 = this._box_0, t3 = L.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = this.$this; return Q.ListTile$(false, _null, _null, true, false, _null, t1, _null, new N.FilterListTile_build__closure(t4, context), false, _null, _null, L.Text$(t2.subtitle, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, t4.onClearPressed, C.EdgeInsets_8_8_8_8, _null, _null)); }, $signature: 2070 }; N.FilterListTile_build__closure.prototype = { call$0: function() { return this.$this.onPressed.call$1(this.context); }, $signature: 9 }; N.SelectedIndicator.prototype = { build$1: function(_, context) { var t1, _this = this, _null = null, enableDarkMode = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.enableDarkMode; if (_this.isSelected) { if (enableDarkMode) t1 = _this.isMenu ? "#1E252F" : "#253750"; else t1 = _this.isMenu ? "#f2faff" : "#e5f5ff"; t1 = E.convertHexStringToColor(t1); } else t1 = K.Theme_of(context).cardColor; return M.Material$(C.Duration_200000, true, _null, _this.child, C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0); } }; E.LiveText.prototype = { createState$0: function() { return new E._LiveTextState(C._StateLifecycle_0); }, value$0: function($receiver) { return this.value.call$0(); }, get$value: function(receiver) { return this.value; } }; E._LiveTextState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.duration; if (t1 == null) t1 = P.Duration$(0, 0, 0, 100, 0, 0); _this._live_text$_timer = P.Timer_Timer$periodic(t1, new E._LiveTextState_initState_closure(_this)); }, dispose$0: function(_) { this._live_text$_timer.cancel$0(0); this._live_text$_timer = null; this.super$State$dispose(0); }, build$1: function(_, context) { var _null = null; return L.Text$(this._widget.value$0(0), _null, 1, C.TextOverflow_2, _null, _null, this._widget.style, _null, _null, _null); } }; E._LiveTextState_initState_closure.prototype = { call$1: function(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new E._LiveTextState_initState__closure()); }, $signature: 259 }; E._LiveTextState_initState__closure.prototype = { call$0: function() { return false; }, $signature: 19 }; V.LoadingIndicator.prototype = { build$1: function(_, context) { var t1, _null = null; if (this.useCard) return new T.Padding(new V.EdgeInsets(16, 16, 16, 16), T.SizedBox$(V.Card$(T.Center$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), _null, _null, 4, _null, true, _null), 200, 1 / 0), _null); t1 = this.height; if (t1 == null) t1 = 1 / 0; return M.Container$(_null, T.Center$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, 1 / 0); } }; X.MainScreen.prototype = { build$1: function(_, context) { return O.StoreBuilder$(new X.MainScreen_build_closure(), null, type$.legacy_AppState); } }; X.MainScreen_build_closure.prototype = { call$2: function(context, store) { var t1, t2, editingFilterEntity, showFilterSidebar, t3, _null = null, state = store.get$_store$_state(), uiState = state.uiState, prefState = state.prefState, subRoute = C.JSString_methods.$add("/", uiState.get$subRoute()), mainRoute = C.JSString_methods.$add("/", uiState.get$mainRoute()), $screen = new Q.BlankScreen(_null, _null); if (state.authState.isAuthenticated && state.get$companies().length === 0) return M.Container$(_null, new V.LoadingIndicator(_null, false, _null), C.Clip_0, K.Theme_of(context).cardColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else if (!state.get$isUserConfirmed()) return new B.ConfirmEmailBuilder(_null); if (prefState.isFilterVisible) { t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t1 = _null; else { t1 = t2.get$last(t1); t1 = t1.get$id(t1); } t1 = t1 != null; } else t1 = false; if (t1) { t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); if (mainRoute === "/" + H.S(t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) && subRoute === "/edit") { mainRoute = C.JSString_methods.$add("/", uiState.get$previousMainRoute()); editingFilterEntity = true; } else editingFilterEntity = false; showFilterSidebar = true; } else { showFilterSidebar = false; editingFilterEntity = false; } switch (mainRoute) { case "/dashboard": t1 = H.setRuntimeTypeInfo([T.Expanded$(new Q.DashboardScreenBuilder(_null), 5)], type$.JSArray_legacy_Widget); if (prefState.isHistoryVisible && prefState.historySidebarMode === C.AppSidebarMode_visible) t1.push(new T.AppBorder(new A.HistoryDrawerBuilder(_null), _null, true, false, _null)); $screen = T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); break; case "/client": $screen = new X.EntityScreens(C.EntityType_client, editingFilterEntity, _null); break; case "/product": $screen = new X.EntityScreens(C.EntityType_product, editingFilterEntity, _null); break; case "/invoice": $screen = new X.EntityScreens(C.EntityType_invoice, editingFilterEntity, _null); break; case "/recurring_invoice": $screen = new X.EntityScreens(C.EntityType_recurringInvoice, editingFilterEntity, _null); break; case "/payment": $screen = new X.EntityScreens(C.EntityType_payment, editingFilterEntity, _null); break; case "/quote": $screen = new X.EntityScreens(C.EntityType_quote, editingFilterEntity, _null); break; case "/credit": $screen = new X.EntityScreens(C.EntityType_credit, editingFilterEntity, _null); break; case "/project": $screen = new X.EntityScreens(C.EntityType_project, editingFilterEntity, _null); break; case "/task": $screen = new X.EntityScreens(C.EntityType_task, editingFilterEntity, _null); break; case "/vendor": $screen = new X.EntityScreens(C.EntityType_vendor, editingFilterEntity, _null); break; case "/expense": $screen = new X.EntityScreens(C.EntityType_expense, editingFilterEntity, _null); break; case "/recurring_expense": $screen = new X.EntityScreens(C.EntityType_recurringExpense, editingFilterEntity, _null); break; case "/settings": $screen = new X.SettingsScreens(_null); break; case "/reports": t1 = H.setRuntimeTypeInfo([T.Expanded$(new L.ReportsScreenBuilder(_null), 5)], type$.JSArray_legacy_Widget); if (prefState.isHistoryVisible && prefState.historySidebarMode === C.AppSidebarMode_visible) t1.push(new T.AppBorder(new A.HistoryDrawerBuilder(_null), _null, true, false, _null)); $screen = T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); break; default: P.print("## Error: main screen route " + mainRoute + " not defined"); } t1 = prefState.appLayout; t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (prefState.get$showMenu()) t2.push(new A.MenuDrawerBuilder(_null)); if (prefState.get$showMenu()) t3 = !state.get$isFullScreen() || showFilterSidebar; else t3 = false; t2.push(T.Expanded$(new T.AppBorder($screen, _null, t3, false, _null), 1)); return new F.WillPopScope(new K.DesktopSessionTimeout(Q.SafeArea$(true, U.FocusTraversalGroup$(new O.ChangeLayoutBanner(T.Row$(t2, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), t1, C.AppLayout_desktop, _null), new U.ReadingOrderTraversalPolicy(P.LinkedHashMap_LinkedHashMap$_empty(type$.FocusScopeNode, type$._DirectionalPolicyData))), C.EdgeInsets_0_0_0_0, true), _null), new X.MainScreen_build__closure(store), _null); }, $signature: 2072 }; X.MainScreen_build__closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this, $history, t3, t4, i, item, t5, t6, entity, t1, state, historyList, t2, isEditing, index; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; state = t1.get$_store$_state(); historyList = state.get$historyList(); t2 = state.uiState; isEditing = t2.get$isEditing(); index = isEditing ? 0 : 1; if (J.get$isNotEmpty$asx(t2.previewStack._list)) { J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.PopPreviewStack()); $async$returnValue = false; // goto return $async$goto = 1; break; } t3 = type$.legacy_BaseEntity; t4 = type$.JSArray_legacy_EntityType; i = index; while (true) { if (!(i < historyList.length)) { $history = null; break; } c$1: { item = historyList[i]; t5 = H.setRuntimeTypeInfo([C.EntityType_dashboard, C.EntityType_reports, C.EntityType_settings], t4); t6 = item.entityType; if (C.JSArray_methods.contains$1(t5, t6)) { $history = item; break; } else { t5 = item.id; if (t5 == null) break c$1; entity = t3._as(J.$index$asx(state.getEntityMap$1(t6)._map$_map, t5)); if (entity != null) { entity.get$archivedAt(); t5 = entity.get$archivedAt() > 0 && !entity.get$isDeleted(entity); t6 = !(!t5 && !entity.get$isDeleted(entity)); t5 = t6; } else t5 = true; if (t5) break c$1; $history = item; break; } } ++i; } if (!isEditing) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.PopLastHistory()); if ($history == null) { J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; } t3 = $history.entityType; switch (t3) { case C.EntityType_dashboard: J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); break; case C.EntityType_reports: J.$index$asx(t1.get$_dispatchers(), 0).call$1(new K.ViewReports()); break; case C.EntityType_settings: t3 = $history.id; t4 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t4._list, t2).userCompany.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ViewSettings(t2, null, null, null, false, t3, false, null)); break; default: M.viewEntityById(false, $history.id, t3, null, false, true); } $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; X.EntityScreens.prototype = { build$1: function(_, context) { var listFlex, t1, t2, child, editEntityType, previewEntityType, entityUIState, leftFilterChild, topFilterChild, t3, t4, listWidget, t5, t6, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, prefState = state.prefState, mainRoute = C.JSString_methods.$add("/", uiState.get$mainRoute()), subRoute = uiState.get$subRoute(), isEmail = subRoute === "email", isPdf = subRoute === "pdf", isFullScreen = state.get$isFullScreen(), isPreviewShown = prefState.isPreviewVisible; if (subRoute !== "view" && subRoute.length !== 0) isPreviewShown = true; else if (mainRoute === "/task" && prefState.showKanban && uiState.taskUIState.selectedId.length === 0) isPreviewShown = false; if ((!prefState.get$isModuleList() || mainRoute === "/task") && !isPreviewShown) listFlex = 5; else listFlex = prefState.appLayout !== C.AppLayout_mobile && prefState.menuSidebarMode === C.AppSidebarMode_collapse && !prefState.isMenuVisible ? 4 : 3; if (uiState.get$isEditing()) { t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); t1 = (t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) === C.EntityType_project && uiState.currentRoute === "/project/edit"; } else t1 = false; if (t1) child = new G.ProjectEditScreen(_null); else if (isFullScreen) { switch (mainRoute) { case "/invoice": if (isPdf) child = new O.InvoicePdfScreen(true, _null); else child = isEmail ? new M.InvoiceEmailScreen(_null) : new M.InvoiceEditScreen(_null); break; case "/quote": if (isPdf) child = new V.QuotePdfScreen(true, _null); else child = isEmail ? new B.QuoteEmailScreen(_null) : new B.QuoteEditScreen(_null); break; case "/credit": if (isPdf) child = new U.CreditPdfScreen(true, _null); else child = isEmail ? new S.CreditEmailScreen(_null) : new X.CreditEditScreen(_null); break; case "/recurring_invoice": child = isPdf ? new X.RecurringInvoicePdfScreen(_null) : new Q.RecurringInvoiceEditScreen(_null); break; case "/task": child = new B.TaskEditScreen(_null); break; case "/client": child = isPdf ? new V.ClientPdfScreen(_null) : new M.ClientEditScreen(_null); break; case "/vendor": child = new A.VendorEditScreen(_null); break; case "/expense": child = new O.ExpenseEditScreen(_null); break; case "/recurring_expense": child = new M.RecurringExpenseEditScreen(_null); break; default: switch (uiState.currentRoute) { case "/settings/custom_designs_edit": child = new G.DesignEditScreen(_null); break; default: P.print("## ERROR: screen not defined in main_screen"); child = _null; break; } } isFullScreen = true; } else { if (subRoute === "edit") { if (_this.editingFilterEntity) { t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); editEntityType = t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType(); } else editEntityType = _this.entityType; switch (editEntityType) { case C.EntityType_client: child = new M.ClientEditScreen(_null); break; case C.EntityType_product: child = new S.ProductEditScreen(_null); break; case C.EntityType_invoice: child = new M.InvoiceEditScreen(_null); break; case C.EntityType_recurringInvoice: child = new Q.RecurringInvoiceEditScreen(_null); break; case C.EntityType_payment: child = new B.PaymentEditScreen(_null); break; case C.EntityType_quote: child = new B.QuoteEditScreen(_null); break; case C.EntityType_credit: child = new X.CreditEditScreen(_null); break; case C.EntityType_project: child = new G.ProjectEditScreen(_null); break; case C.EntityType_task: child = new B.TaskEditScreen(_null); break; case C.EntityType_vendor: child = new A.VendorEditScreen(_null); break; case C.EntityType_expense: child = new O.ExpenseEditScreen(_null); break; case C.EntityType_recurringExpense: child = new M.RecurringExpenseEditScreen(_null); break; default: child = _null; } } else { t1 = uiState.previewStack._list; t2 = J.getInterceptor$asx(t1); previewEntityType = t2.get$isEmpty(t1) ? _this.entityType : t2.get$last(t1); entityUIState = state.getUIState$1(previewEntityType); t1 = entityUIState.get$selectedId(); if ((t1 == null ? "" : t1).length !== 0) { t1 = state.getEntityMap$1(previewEntityType); t2 = entityUIState.get$selectedId(); t2 = !J.containsKey$1$x(t1._map$_map, t2); t1 = t2; } else t1 = true; if (t1) child = new Q.BlankScreen(_null, _null); else switch (previewEntityType) { case C.EntityType_client: child = new X.ClientViewScreen(false, _null); break; case C.EntityType_product: child = new F.ProductViewScreen(_null); break; case C.EntityType_invoice: child = new F.InvoiceViewScreen(false, _null); break; case C.EntityType_recurringInvoice: child = new O.RecurringInvoiceViewScreen(false, _null); break; case C.EntityType_payment: child = new F.PaymentViewScreen(false, _null); break; case C.EntityType_quote: child = new O.QuoteViewScreen(false, _null); break; case C.EntityType_credit: child = new M.CreditViewScreen(false, _null); break; case C.EntityType_project: child = new D.ProjectViewScreen(false, _null); break; case C.EntityType_task: child = new L.TaskViewScreen(_null); break; case C.EntityType_vendor: child = new F.VendorViewScreen(false, _null); break; case C.EntityType_expense: child = new U.ExpenseViewScreen(_null); break; case C.EntityType_user: child = new X.UserViewScreen(false, _null); break; case C.EntityType_group: child = new A.GroupViewScreen(false, _null); break; case C.EntityType_subscription: child = new E.SubscriptionViewScreen(false, _null); break; case C.EntityType_companyGateway: child = new A.CompanyGatewayViewScreen(false, _null); break; case C.EntityType_expenseCategory: child = new L.ExpenseCategoryViewScreen(false, _null); break; case C.EntityType_taskStatus: child = new T.TaskStatusViewScreen(false, _null); break; case C.EntityType_recurringExpense: child = new Z.RecurringExpenseViewScreen(_null); break; default: P.print("## View screen not defined for " + H.S(previewEntityType)); child = _null; } } isFullScreen = false; } t1 = uiState.filterStack._list; t2 = J.getInterceptor$asx(t1); if ((t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) != null) if (prefState.isFilterVisible) switch (t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) { case C.EntityType_client: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new M.ClientEditScreen(_null) : new X.ClientViewScreen(true, _null); break; case C.EntityType_invoice: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new F.InvoiceViewScreen(false, _null) : new F.InvoiceViewScreen(true, _null); break; case C.EntityType_quote: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new O.QuoteViewScreen(false, _null) : new O.QuoteViewScreen(true, _null); break; case C.EntityType_credit: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new M.CreditViewScreen(false, _null) : new M.CreditViewScreen(true, _null); break; case C.EntityType_payment: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new B.PaymentEditScreen(_null) : new F.PaymentViewScreen(true, _null); break; case C.EntityType_user: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new Y.UserEditScreen(_null) : new X.UserViewScreen(true, _null); break; case C.EntityType_group: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.GroupEditScreen(_null) : new A.GroupViewScreen(true, _null); break; case C.EntityType_subscription: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new R.SubscriptionEditScreen(_null) : new E.SubscriptionViewScreen(true, _null); break; case C.EntityType_companyGateway: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new L.CompanyGatewayEditScreen(_null) : new A.CompanyGatewayViewScreen(true, _null); break; case C.EntityType_recurringInvoice: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new Q.RecurringInvoiceEditScreen(_null) : new O.RecurringInvoiceViewScreen(true, _null); break; case C.EntityType_expenseCategory: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new F.ExpenseCategoryEditScreen(_null) : new L.ExpenseCategoryViewScreen(true, _null); break; case C.EntityType_taskStatus: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new Q.TaskStatusEditScreen(_null) : new T.TaskStatusViewScreen(true, _null); break; case C.EntityType_vendor: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new A.VendorEditScreen(_null) : new F.VendorViewScreen(true, _null); break; case C.EntityType_project: leftFilterChild = _this.editingFilterEntity && !uiState.get$isEditing() ? new G.ProjectEditScreen(_null) : new D.ProjectViewScreen(true, _null); break; case C.EntityType_design: leftFilterChild = new B.DesignViewScreen(true, _null); break; default: P.print("Error: filter view not implemented for " + H.S(t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType())); leftFilterChild = _null; } else leftFilterChild = _null; else leftFilterChild = _null; topFilterChild = new E.EntityTopFilter((t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) != null, _null); t3 = !isFullScreen; if (t3) { t4 = _this.entityType; switch (t4) { case C.EntityType_client: listWidget = new D.ClientScreenBuilder(_null); break; case C.EntityType_product: listWidget = new E.ProductScreenBuilder(_null); break; case C.EntityType_invoice: listWidget = new E.InvoiceScreenBuilder(_null); break; case C.EntityType_recurringInvoice: listWidget = new A.RecurringInvoiceScreenBuilder(_null); break; case C.EntityType_payment: listWidget = new G.PaymentScreenBuilder(_null); break; case C.EntityType_quote: listWidget = new B.QuoteScreenBuilder(_null); break; case C.EntityType_credit: listWidget = new R.CreditScreenBuilder(_null); break; case C.EntityType_project: listWidget = new S.ProjectScreenBuilder(_null); break; case C.EntityType_task: listWidget = new Y.TaskScreenBuilder(_null); break; case C.EntityType_vendor: listWidget = new B.VendorScreenBuilder(_null); break; case C.EntityType_expense: listWidget = new U.ExpenseScreenBuilder(_null); break; case C.EntityType_recurringExpense: listWidget = new B.RecurringExpenseScreenBuilder(_null); break; default: P.print("## ERROR: list widget not implemented for " + t4.toString$0(0)); listWidget = _null; break; } } else listWidget = _null; t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); t6 = leftFilterChild != null; if (t6) t5.push(T.Expanded$(leftFilterChild, 2)); if (t3) { t3 = T.Column$(H.setRuntimeTypeInfo([topFilterChild, T.Expanded$(new T.AppBorder(listWidget, (t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) != null && true, _null, false, _null), 1)], t4), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); t5.push(T.Expanded$(T.ClipRRect$(C.BorderRadius_tLn, new T.AppBorder(t3, _null, t6, false, _null)), listFlex)); } if (prefState.get$isModuleList() && mainRoute !== "/task" || isPreviewShown) { t3 = isFullScreen ? listFlex + 2 : 2; t4 = H.setRuntimeTypeInfo([], t4); if (isFullScreen) t4.push(topFilterChild); if (isFullScreen) t1 = (t2.get$isEmpty(t1) ? _null : t2.get$last(t1).get$entityType()) != null; else t1 = false; t4.push(T.Expanded$(new T.AppBorder(child, t1, _null, false, _null), 1)); t5.push(T.Expanded$(new T.AppBorder(T.Column$(t4, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, true, false, _null), t3)); } if (prefState.isHistoryVisible && prefState.historySidebarMode === C.AppSidebarMode_visible) t5.push(new T.AppBorder(new A.HistoryDrawerBuilder(_null), _null, true, false, _null)); return T.Row$(t5, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; X.SettingsScreens.prototype = { build$1: function(_, context) { var t1, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, prefState = state.prefState, $screen = new Q.BlankScreen(_null, _null); switch (uiState.get$subRoute()) { case "company_details": $screen = new A.CompanyDetailsScreen(_null); break; case "payment_terms": $screen = new Z.PaymentTermScreenBuilder(_null); break; case "payment_term_edit": $screen = new Y.PaymentTermEditScreen(_null); break; case "payment_term_view": $screen = new U.PaymentTermViewScreen(_null); break; case "user_details": $screen = new M.UserDetailsScreen(_null); break; case "localization": $screen = new B.LocalizationScreen(_null); break; case "online_payments": $screen = new B.OnlinePaymentsScreen(_null); break; case "company_gateways": $screen = new Y.CompanyGatewayScreenBuilder(_null); break; case "company_gateways_view": $screen = new A.CompanyGatewayViewScreen(false, _null); break; case "company_gateways_edit": $screen = new L.CompanyGatewayEditScreen(_null); break; case "tax_settings": $screen = new A.TaxSettingsScreen(_null); break; case "tax_settings_rates": $screen = new O.TaxRateScreenBuilder(_null); break; case "tax_settings_rates_view": $screen = new R.TaxRateViewScreen(_null); break; case "tax_settings_rates_edit": $screen = new S.TaxRateEditScreen(_null); break; case "task_status": $screen = new U.TaskStatusScreenBuilder(_null); break; case "task_status_view": $screen = new T.TaskStatusViewScreen(false, _null); break; case "task_status_edit": $screen = new Q.TaskStatusEditScreen(_null); break; case "product_settings": $screen = new G.ProductSettingsScreen(_null); break; case "task_settings": $screen = new F.TaskSettingsScreen(_null); break; case "expense_settings": $screen = new N.ExpenseSettingsScreen(_null); break; case "import_export": $screen = new N.ImportExportScreen(_null); break; case "device_settings": $screen = new L.DeviceSettingsScreen(_null); break; case "group_settings": $screen = new S.GroupScreenBuilder(_null); break; case "group_settings_view": $screen = new A.GroupViewScreen(false, _null); break; case "group_settings_edit": $screen = new A.GroupEditScreen(_null); break; case "subscriptions": $screen = new L.SubscriptionScreenBuilder(_null); break; case "subscriptions_view": $screen = new E.SubscriptionViewScreen(false, _null); break; case "subscriptions_edit": $screen = new R.SubscriptionEditScreen(_null); break; case "generated_numbers": $screen = new F.GeneratedNumbersScreen(_null); break; case "custom_fields": $screen = new M.CustomFieldsScreen(_null); break; case "workflow_settings": $screen = new Y.WorkflowSettingsScreen(_null); break; case "invoice_design": $screen = new B.InvoiceDesignScreen(_null); break; case "client_portal": $screen = new A.ClientPortalScreen(_null); break; case "buy_now_buttons": $screen = new B.BuyNowButtonsScreen(_null); break; case "email_settings": $screen = new D.EmailSettingsScreen(_null); break; case "templates_and_reminders": $screen = new F.TemplatesAndRemindersScreen(_null); break; case "credit_cards_and_banks": $screen = new F.CreditCardsAndBanksScreen(_null); break; case "data_visualizations": $screen = new M.DataVisualizationsScreen(_null); break; case "user_management": $screen = new A.UserScreenBuilder(_null); break; case "user_management_view": $screen = new X.UserViewScreen(false, _null); break; case "user_management_edit": $screen = new Y.UserEditScreen(_null); break; case "custom_designs": $screen = new G.DesignScreenBuilder(_null); break; case "custom_designs_view": $screen = new B.DesignViewScreen(false, _null); break; case "custom_designs_edit": $screen = new G.DesignEditScreen(_null); break; case "account_management": $screen = new A.AccountManagementScreen(_null); break; case "tokens": $screen = new K.TokenScreenBuilder(_null); break; case "token_view": $screen = new U.TokenViewScreen(_null); break; case "token_edit": $screen = new R.TokenEditScreen(_null); break; case "webhook": $screen = new T.WebhookScreenBuilder(_null); break; case "webhook_view": $screen = new Y.WebhookViewScreen(_null); break; case "webhook_edit": $screen = new F.WebhookEditScreen(_null); break; case "expense_category": $screen = new O.ExpenseCategoryScreenBuilder(_null); break; case "expense_category_view": $screen = new L.ExpenseCategoryViewScreen(false, _null); break; case "expense_category_edit": $screen = new F.ExpenseCategoryEditScreen(_null); break; } t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (!state.get$isFullScreen()) t1.push(T.Expanded$(new L.SettingsScreenBuilder(_null), 2)); t1.push(T.Expanded$(new T.AppBorder($screen, _null, true, false, _null), 3)); if (prefState.isHistoryVisible && prefState.historySidebarMode === C.AppSidebarMode_visible) t1.push(new T.AppBorder(new A.HistoryDrawerBuilder(_null), _null, true, false, _null)); return T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; V.MenuDrawer.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, _collapsedCompanySelector, _expandedCompanySelector, t8, t9, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.prefState, enableDarkMode = t1.enableDarkMode, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = _this.viewModel, company = t3.selectedCompany, inactiveColor = J.$index$asx(t1.customColors._map$_map, "sidebar_inactive_background_color"); if (inactiveColor == null) inactiveColor = ""; if (company == null) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = new V.MenuDrawer_build__companyLogo(); t4 = new V.MenuDrawer_build__companyListItem(state, t1, t2, context); t5 = t2.localeCode; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "select_company"); if (t6 == null) t6 = ""; t7 = type$.legacy_String; _collapsedCompanySelector = Z.PopupMenuButton$(T.SizedBox$(t1.call$1(company), 50, 38), K.Theme_of(context).cardColor, true, _null, _null, new V.MenuDrawer_build_closure(_this, t4, state, t2), new V.MenuDrawer_build_closure0(_this, context, state, t2), C.EdgeInsets_8_8_8_8, t6, t7); if (state.get$companies().length === 0) _expandedCompanySelector = T.SizedBox$(_null, _null, _null); else { t1 = t3.selectedCompanyIndex; t3 = state.get$companies(); t6 = H._arrayInstanceType(t3)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t6 = P.List_List$of(P.List_List$of(new H.MappedListIterable(t3, new V.MenuDrawer_build_closure1(state, t4), t6), true, t6._eval$1("ListIterable.E")), true, type$.legacy_DropdownMenuItem_legacy_String); if (state.get$canAddCompany()) t6.push(K.DropdownMenuItem$(T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 2), L.Icon$(C.IconData_57423_MaterialIcons_null_false, _null, 32), T.SizedBox$(_null, _null, 20), L.Text$(t2.get$addCompany(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), "company", t7)); t6.push(K.DropdownMenuItem$(T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 2), L.Icon$(C.IconData_58291_MaterialIcons_null_false, _null, 32), T.SizedBox$(_null, _null, 20), L.Text$(t2.get$logout(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), "logout", t7)); _expandedCompanySelector = T.SizedBox$(new Q.AppDropdownButton(_null, t1, new V.MenuDrawer_build_closure2(_this, context, state, t2), t6, _null, true, "", new D.ValueKey("select_company_dropdown_key", type$.ValueKey_legacy_String), type$.AppDropdownButton_legacy_String), 50, _null); } t1 = state.get$isMenuCollapsed() ? 65 : 270; if (state.get$credentials(state).token.length === 0) t3 = T.Expanded$(T.SizedBox$(_null, _null, _null), 1); else { t3 = enableDarkMode ? C.Color_452984831 : K.Theme_of(context).cardColor; t4 = state.get$isMenuCollapsed() ? _collapsedCompanySelector : _expandedCompanySelector; t3 = M.Container$(_null, t4, C.Clip_0, t3, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(14, 3, 14, 3), _null, _null, _null); } if (state.get$credentials(state).token.length === 0) t2 = T.SizedBox$(_null, _null, _null); else { t4 = inactiveColor.length !== 0 ? E.convertHexStringToColor(inactiveColor) : K.Theme_of(context).cardColor; t6 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; t7 = t7._list; t9 = J.getInterceptor$asx(t7); t9.$index(t7, t8).userCompany.account.toString; if (t9.$index(t7, t8).userCompany.company.isDisabled && t9.$index(t7, t8).userCompany.isAdmin) if (state.get$isMenuCollapsed()) { t7 = t2.get$companyDisabledWarning(); t6.push(S.Tooltip$(Q.ListTile$(false, C.EdgeInsets_20_0_0_0, _null, true, false, _null, L.Icon$(C.IconData_59083_MaterialIcons_null_false, C.MaterialColor_Map_JNZaB_4294940672, _null), _null, new V.MenuDrawer_build_closure3(), false, _null, _null, _null, _null, _null, _null), t7)); } else { t7 = C.Map_JNZaB.$index(0, 800); t7.toString; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "warning"); if (t8 == null) t8 = ""; t9 = A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t6.push(M.Material$(C.Duration_200000, true, _null, Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new V.MenuDrawer_build_closure4(), false, _null, _null, L.Text$(t2.get$companyDisabledWarning(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t7, new T.Padding(C.EdgeInsets_0_0_0_6, new U.IconText(t8, C.IconData_59083_MaterialIcons_null_false, t9, _null, _null), _null), _null), C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_0)); } t6.push(V.DrawerTile$(company, _null, Q.getEntityIcon(C.EntityType_dashboard), _null, new V.MenuDrawer_build_closure5(store), new V.MenuDrawer_build_closure6(), t2.get$dashboard())); t7 = Q.getEntityIcon(C.EntityType_client); t8 = t2.get$clients(t2); t6.push(V.DrawerTile$(company, C.EntityType_client, t7, t2.get$newClient(), _null, _null, t8)); t8 = Q.getEntityIcon(C.EntityType_product); t7 = t2.get$products(); t6.push(V.DrawerTile$(company, C.EntityType_product, t8, t2.get$newProduct(), _null, _null, t7)); t7 = Q.getEntityIcon(C.EntityType_invoice); t8 = t2.get$invoices(); t6.push(V.DrawerTile$(company, C.EntityType_invoice, t7, t2.get$newInvoice(), _null, _null, t8)); t8 = Q.getEntityIcon(C.EntityType_recurringInvoice); t7 = t2.get$recurringInvoices(); t6.push(V.DrawerTile$(company, C.EntityType_recurringInvoice, t8, t2.get$newRecurringInvoice(), _null, _null, t7)); t7 = Q.getEntityIcon(C.EntityType_payment); t8 = t2.get$payments(); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "new_payment"); t6.push(V.DrawerTile$(company, C.EntityType_payment, t7, t5 == null ? "" : t5, _null, _null, t8)); t5 = Q.getEntityIcon(C.EntityType_quote); t7 = t2.get$quotes(t2); t6.push(V.DrawerTile$(company, C.EntityType_quote, t5, t2.get$newQuote(), _null, _null, t7)); t7 = Q.getEntityIcon(C.EntityType_credit); t5 = t2.get$credits(); t6.push(V.DrawerTile$(company, C.EntityType_credit, t7, t2.get$newCredit(), _null, _null, t5)); t5 = Q.getEntityIcon(C.EntityType_project); t7 = t2.get$projects(); t6.push(V.DrawerTile$(company, C.EntityType_project, t5, t2.get$newProject(), _null, _null, t7)); t7 = Q.getEntityIcon(C.EntityType_task); t5 = t2.get$tasks(); t6.push(V.DrawerTile$(company, C.EntityType_task, t7, t2.get$newTask(), _null, _null, t5)); t5 = Q.getEntityIcon(C.EntityType_vendor); t7 = t2.get$vendors(); t6.push(V.DrawerTile$(company, C.EntityType_vendor, t5, t2.get$newVendor(), _null, _null, t7)); t7 = Q.getEntityIcon(C.EntityType_expense); t5 = t2.get$expenses(); t6.push(V.DrawerTile$(company, C.EntityType_expense, t7, t2.get$newExpense(), _null, _null, t5)); t6.push(V.DrawerTile$(company, C.EntityType_recurringExpense, Q.getEntityIcon(C.EntityType_recurringExpense), _null, _null, _null, t2.get$recurringExpenses())); t6.push(V.DrawerTile$(company, _null, Q.getEntityIcon(C.EntityType_reports), _null, _null, new V.MenuDrawer_build_closure7(), t2.get$reports())); t6.push(V.DrawerTile$(company, _null, Q.getEntityIcon(C.EntityType_settings), _null, _null, new V.MenuDrawer_build_closure8(), t2.get$settings())); t4 = T.Expanded$(M.Container$(_null, new X.ScrollableListView(t6, _null, _null, true, _null), C.Clip_0, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t2 = t4; } t4 = state.get$isMenuCollapsed() ? new V.SidebarFooterCollapsed(_null) : new V.SidebarFooter(_null); return U.FocusTraversalGroup$(M.Container$(_null, Z.Drawer$(Q.SafeArea$(true, T.Column$(H.setRuntimeTypeInfo([t3, t2, T.SizedBox$(new T.AppBorder(new T.Align(new K.Alignment(0, 1), _null, _null, t4, _null), true, _null, false, _null), 50, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.EdgeInsets_0_0_0_0, true)), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1), _null); } }; V.MenuDrawer_build__companyLogo.prototype = { call$1: function(company) { var t1 = company.settings.companyLogo; return t1 != null && t1.length !== 0 ? D.CachedImage$(t1, 38) : U.Image$asset("assets/images/icon.png", null, 38); }, $signature: 567 }; V.MenuDrawer_build__companyListItem.prototype = { call$1: function(company) { var _this = this, _null = null, t1 = _this.state, userCompany = J.firstWhere$2$orElse$ax(t1.userCompanyStates._list, new V.MenuDrawer_build__companyListItem_closure(company), null).userCompany, t2 = _this._companyLogo.call$1(company), t3 = T.SizedBox$(_null, 50, 15), t4 = company.settings.name, t5 = t4 == null; if ((t5 ? "" : t4).length === 0) t4 = _this.localization.get$newCompany(); else if (t5) t4 = ""; t4 = H.setRuntimeTypeInfo([t2, t3, T.Expanded$(L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, K.Theme_of(_this.context).textTheme.headline6, _null, _null, _null), 1)], type$.JSArray_legacy_Widget); t2 = userCompany.settings.accentColor; if (t2 != null && t1.get$companies().length > 1) t4.push(M.Container$(_null, _null, C.Clip_0, _null, _null, new S.BoxDecoration(E.convertHexStringToColor(t2), _null, _null, _null, _null, _null, C.BoxShape_1), _null, 10, _null, _null, C.EdgeInsets_0_0_2_0, _null, _null, 10)); return T.Row$(t4, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); }, $signature: 567 }; V.MenuDrawer_build__companyListItem_closure.prototype = { call$1: function(userCompanyState) { return userCompanyState.userCompany.company.id === this.company.id; }, $signature: 2074 }; V.MenuDrawer_build_closure.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.$this.viewModel.state.get$companies(), t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); t2 = P.List_List$of(P.List_List$of(new H.MappedListIterable(t1, new V.MenuDrawer_build__closure0(_this._companyListItem), t2), true, t2._eval$1("ListIterable.E")), true, type$.legacy_PopupMenuEntry_legacy_String); if (_this.state.get$canAddCompany()) t2.push(Z.PopupMenuItem$(T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 2), L.Icon$(C.IconData_57423_MaterialIcons_null_false, _null, 32), T.SizedBox$(_null, _null, 20), L.Text$(_this.localization.get$addCompany(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), "company", type$.legacy_String)); t2.push(Z.PopupMenuItem$(T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 2), L.Icon$(C.IconData_58291_MaterialIcons_null_false, _null, 32), T.SizedBox$(_null, _null, 20), L.Text$(_this.localization.get$logout(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), "logout", type$.legacy_String)); return t2; }, $signature: 357 }; V.MenuDrawer_build__closure0.prototype = { call$1: function(company) { return Z.PopupMenuItem$(this._companyListItem.call$1(company), company.id, type$.legacy_String); }, $signature: 2075 }; V.MenuDrawer_build_closure0.prototype = { call$1: function(companyId) { var t1, t2, t3, company, index, _this = this; if (companyId === "logout") _this.$this.viewModel.onLogoutTap.call$1(_this.context); else { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).lastUpdated; if (t2 <= 0 || t1.isLoading || t1.isSaving) { O.showMessageDialog(_this.context, _this.localization.get$waitForData(), null); return; } else { t2 = _this.context; t3 = _this.$this.viewModel; if (companyId === "company") t3.onAddCompany.call$1(t2); else { company = C.JSArray_methods.firstWhere$1(t1.get$companies(), new V.MenuDrawer_build__closure(companyId)); index = C.JSArray_methods.indexOf$1(t1.get$companies(), company); t3.onCompanyChanged.call$3(t2, index, company); } } } }, $signature: 7 }; V.MenuDrawer_build__closure.prototype = { call$1: function(company) { return company.id === this.companyId; }, $signature: 704 }; V.MenuDrawer_build_closure1.prototype = { call$1: function(company) { var t1 = C.JSInt_methods.toString$0(C.JSArray_methods.indexOf$1(this.state.get$companies(), company)); return K.DropdownMenuItem$(this._companyListItem.call$1(company), t1, type$.legacy_String); }, $signature: 2076 }; V.MenuDrawer_build_closure2.prototype = { call$1: function(value) { var t2, t3, t4, index, _this = this, t1 = J.getInterceptor$(value); if (t1.$eq(value, "logout")) _this.$this.viewModel.onLogoutTap.call$1(_this.context); else { t2 = _this.state; t3 = t2.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2.userCompanyStates._list, t3).lastUpdated; if (t3 <= 0 || t2.isLoading || t2.isSaving) { O.showMessageDialog(_this.context, _this.localization.get$waitForData(), null); return; } else { t3 = _this.context; t4 = _this.$this.viewModel; if (t1.$eq(value, "company")) t4.onAddCompany.call$1(t3); else { index = P.int_parse(value, null); t1 = t2.get$companies()[index]; t4.onCompanyChanged.call$3(t3, index, t1); } } } }, $signature: 8 }; V.MenuDrawer_build_closure3.prototype = { call$0: function() { T.launch(string$.https_i, null, false); }, $signature: 1 }; V.MenuDrawer_build_closure4.prototype = { call$0: function() { T.launch(string$.https_i, null, false); }, $signature: 1 }; V.MenuDrawer_build_closure6.prototype = { call$0: function() { return M.viewEntitiesByType(C.EntityType_dashboard, null); }, $signature: 0 }; V.MenuDrawer_build_closure5.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, "")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; V.MenuDrawer_build_closure7.prototype = { call$0: function() { return M.viewEntitiesByType(C.EntityType_reports, null); }, $signature: 0 }; V.MenuDrawer_build_closure8.prototype = { call$0: function() { return M.viewEntitiesByType(C.EntityType_settings, null); }, $signature: 0 }; V.DrawerTile.prototype = { createState$0: function() { return new V._DrawerTileState(C._StateLifecycle_0); }, onTap$0: function() { return this.onTap.call$0(); }, onLongPress$0: function() { return this.onLongPress.call$0(); }, get$company: function() { return this.company; } }; V._DrawerTileState.prototype = { build$1: function(_, context) { var enableDarkMode, route, t3, t4, isSelected, inactiveColor, inactiveFontColor, activeColor, activeFontColor, textColor, color, trailingWidget, child, _this = this, _null = null, _s6_ = "kanban", store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t2).userCompany, $navigator = K.Navigator_of(context, false); t1 = _this._widget.entityType; if (t1 != null) t1 = !(userCompany.can$2(C.UserPermission_view, t1) || userCompany.can$2(C.UserPermission_create, t1)); else t1 = false; if (t1) return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = state.prefState; enableDarkMode = t1.enableDarkMode; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this._widget.title === t2.get$dashboard()) route = "dashboard"; else if (_this._widget.title === t2.get$settings()) route = "settings"; else if (_this._widget.title === t2.get$reports()) route = "reports"; else { t3 = _this._widget.title; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), _s6_); route = t3 === (t4 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s6_) : t4) ? _s6_ : _this._widget.entityType.name; } if (C.JSString_methods.startsWith$1(uiState.currentRoute, "/" + A.toSnakeCase(route))) { t3 = uiState.filterStack._list; t4 = J.getInterceptor$asx(t3); isSelected = (t4.get$isEmpty(t3) ? _null : t4.get$last(t3).get$entityType()) == null || !t1.isFilterVisible; } else isSelected = false; t1 = t1.customColors._map$_map; t3 = J.getInterceptor$asx(t1); inactiveColor = t3.$index(t1, "sidebar_inactive_background_color"); if (inactiveColor == null) inactiveColor = ""; inactiveFontColor = t3.$index(t1, "sidebar_inactive_font_color"); if (inactiveFontColor == null) inactiveFontColor = ""; activeColor = t3.$index(t1, "sidebar_active_background_color"); if (activeColor == null) activeColor = ""; activeFontColor = t3.$index(t1, "sidebar_active_font_color"); if (activeFontColor == null) activeFontColor = ""; t1 = K.Theme_of(context).textTheme.bodyText1.color; t3 = isSelected ? 1 : 0.7; t1.toString; textColor = P.Color$fromARGB(C.JSNumber_methods.round$0(255 * t3), t1.get$value(t1) >>> 16 & 255, t1.get$value(t1) >>> 8 & 255, t1.get$value(t1) & 255); if (isSelected) { if (activeColor.length !== 0) color = E.convertHexStringToColor(activeColor); else color = E.convertHexStringToColor(enableDarkMode ? "#1E252F" : "#f2faff"); if (activeFontColor.length !== 0) textColor = E.convertHexStringToColor(activeFontColor); } else { color = inactiveColor.length !== 0 ? E.convertHexStringToColor(inactiveColor) : C.Color_0; if (inactiveFontColor.length !== 0) textColor = E.convertHexStringToColor(inactiveFontColor); } if (!state.get$isMenuCollapsed()) if (_this._widget.title === t2.get$dashboard()) trailingWidget = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58727_MaterialIcons_null_false, textColor, _null), 24, new V._DrawerTileState_build_closure(context, $navigator, store, uiState), C.EdgeInsets_8_8_8_8, _null, _null); else if (userCompany.can$2(C.UserPermission_create, _this._widget.entityType)) { t1 = _this._widget.iconTooltip; trailingWidget = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57424_MaterialIcons_null_false, textColor, _null), 24, new V._DrawerTileState_build_closure0(_this, context, $navigator), C.EdgeInsets_8_8_8_8, t1, _null); } else trailingWidget = _null; else trailingWidget = _null; t1 = isSelected ? 1 : 0.8; t2 = _this._widget; t3 = L.Icon$(t2.icon, textColor, 22); t2 = t2.title; t2 = L.Text$(t2, new D.ValueKey("menu_" + t2, type$.ValueKey_legacy_String), 1, C.TextOverflow_0, _null, _null, K.Theme_of(context).textTheme.bodyText1.copyWith$2$color$fontSize(textColor, 14), _null, _null, _null); t4 = state.get$isMenuCollapsed() ? _null : trailingWidget; child = M.Material$(C.Duration_200000, true, _null, T.Opacity$(false, Q.ListTile$(false, _null, true, true, false, _null, new T.Padding(C.EdgeInsets_4_0_0_0, t3, _null), new V._DrawerTileState_build_closure1(_this, context), new V._DrawerTileState_build_closure2(_this), false, _null, _null, _null, _null, t2, t4), t1), C.Clip_0, color, 0, _null, _null, _null, _null, C.MaterialType_0); return new T.MouseRegion(_null, _null, _null, C.C__DeferringMouseCursor, true, state.get$isMenuCollapsed() ? S.Tooltip$(child, _this._widget.title) : child, _null); } }; V._DrawerTileState_build_closure.prototype = { call$0: function() { var t1, _this = this; if (D.getLayout(_this.context) === C.AppLayout_mobile) _this.navigator.pop$0(0); t1 = _this.uiState; t1 = t1.get$mainRoute() === "dashboard" && t1.filter === "" ? null : ""; J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V._DrawerTileState_build_closure0.prototype = { call$0: function() { var t1 = this.context; if (D.getLayout(t1) === C.AppLayout_mobile) this.navigator.pop$0(0); M.createEntityByType(false, t1, this.$this._widget.entityType); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V._DrawerTileState_build_closure2.prototype = { call$0: function() { var t1 = this.$this._widget, t2 = t1.entityType; if (t2 != null) M.viewEntitiesByType(t2, null); else t1.onTap$0(); }, $signature: 1 }; V._DrawerTileState_build_closure1.prototype = { call$0: function() { var t1 = this.$this._widget; if (t1.onLongPress != null) t1 = t1.onLongPress$0(); else { t1 = t1.entityType; t1 = t1 != null ? M.createEntityByType(false, this.context, t1) : null; } return t1; }, $signature: 0 }; V.SidebarFooter.prototype = { build$1: function(_, context) { var t5, t6, t7, t8, t9, _null = null, _s20_ = "https://invoicing.co", _s10_ = "user_guide", t1 = type$.legacy_AppState, store = O.StoreProvider_of(context, t1), state = store.get$_store$_state(), t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex, account = J.$index$asx(t3._list, t4).userCompany.account; t4 = K.Theme_of(context).bottomAppBarColor; t3 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t3); if (state.get$isMenuCollapsed()) C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([T.Expanded$(T.SizedBox$(_null, _null, _null), 1)], t3)); else { t3 = H.setRuntimeTypeInfo([], t3); t6 = state.authState; t7 = Y.cleanApiUrl(t6.url); if (t7 !== "https://demo.invoiceninja.com") { t7 = t6.get$isHosted(); if (!t7 && !account.isSchedulerRunning) { t6 = t2.get$error(t2); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59083_MaterialIcons_null_false, C.MaterialColor_Map_JNc9P_4294198070, _null), 24, new V.SidebarFooter_build_closure(context, t2, store), C.EdgeInsets_8_8_8_8, t6, _null)); } else if (state.get$credentials(state).token.length === 0) { t6 = t2.get$error(t2); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59083_MaterialIcons_null_false, C.MaterialColor_Map_JNc9P_4294198070, _null), 24, new V.SidebarFooter_build_closure0(context), C.EdgeInsets_8_8_8_8, t6, _null)); } else { t7 = t6.get$isHosted(); if (!t7 && account.get$isUpdateAvailable()) { t6 = t2.get$updateAvailable(); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59083_MaterialIcons_null_false, K.Theme_of(context).accentColor, _null), 24, new V.SidebarFooter_build_closure1(context), C.EdgeInsets_8_8_8_8, t6, _null)); } else { t6 = t6.get$isHosted(); if (t6 && T.getUnconnectedStripeAccount(state) != null) t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59083_MaterialIcons_null_false, C.MaterialColor_Map_JNZaB_4294940672, _null), 24, new V.SidebarFooter_build_closure2(context), C.EdgeInsets_8_8_8_8, _null, _null)); } } } t6 = O.StoreProvider_of(context, t1).get$_store$_state().authState.get$isHosted(); if (t6) { t6 = O.StoreProvider_of(context, t1).get$_store$_state(); t7 = t6.authState; t8 = t7.get$isHosted(); if (!t8) { t7 = t6.userCompanyStates; t6 = t6.uiState.selectedCompanyIndex; t6 = J.$index$asx(t7._list, t6).userCompany.account.plan === "white_label"; } else { t7 = t7.url; if (Y.cleanApiUrl(t7) === _s20_) { t8 = t6.userCompanyStates; t9 = t6.uiState.selectedCompanyIndex; t9 = J.$index$asx(t8._list, t9).userCompany.account.plan === "enterprise"; t8 = t9; } else t8 = true; if (!t8) { t8 = t6.userCompanyStates; t9 = t6.uiState.selectedCompanyIndex; t9 = J.$index$asx(t8._list, t9).userCompany.account.plan === "pro"; t8 = t9; } else t8 = true; if (!t8) if (Y.cleanApiUrl(t7) === _s20_) { t7 = t6.userCompanyStates; t6 = t6.uiState.selectedCompanyIndex; t6 = J.$index$asx(t7._list, t6).userCompany.account.plan === "enterprise"; } else t6 = true; else t6 = true; } t6 = !t6 && !D.isApple(); } else t6 = false; if (t6) { t1 = O.StoreProvider_of(context, t1).get$_store$_state().authState.get$isHosted(); if (t1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "upgrade"); if (t1 == null) t1 = ""; } else t1 = t2.get$purchaseLicense(); t3.push(B.IconButton$(C.Alignment_0_0, C.MaterialColor_Map_JNEaM_4283215696, _null, true, L.Icon$(C.IconData_57494_MaterialIcons_null_false, _null, _null), 24, new V.SidebarFooter_build_closure3(context, state), C.EdgeInsets_8_8_8_8, t1, _null)); } t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58307_MaterialIcons_null_false, _null, _null), 24, new V.SidebarFooter_build_closure4(context), C.EdgeInsets_8_8_8_8, t2.get$contactUs(), _null)); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58051_MaterialIcons_null_false, _null, _null), 24, new V.SidebarFooter_build_closure5(), C.EdgeInsets_8_8_8_8, t2.get$supportForum(), _null)); t1 = L.Icon$(C.IconData_58123_MaterialIcons_null_true, _null, _null); t6 = t2.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), _s10_); if (t7 == null) t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s10_); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, t1, 24, new V.SidebarFooter_build_closure6(state), C.EdgeInsets_8_8_8_8, t7, _null)); t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58173_MaterialIcons_null_false, _null, _null), 24, new V.SidebarFooter_build_closure7(context), C.EdgeInsets_8_8_8_8, t2.get$about(), _null)); t1 = state.lastError; if (t1.length !== 0) t3.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59083_MaterialIcons_null_false, C.MaterialColor_Map_JNc9P_4294198070, _null), 24, new V.SidebarFooter_build_closure8(context, state), C.EdgeInsets_8_8_8_8, t2.get$error(t2), _null)); t3.push(new R.Spacer(_null)); if (D.getLayout(context) !== C.AppLayout_mobile && state.prefState.menuSidebarMode === C.AppSidebarMode_collapse) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), "hide_menu"); if (t1 == null) t1 = ""; t3.push(new T.AppBorder(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(C.IconData_57694_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new V.SidebarFooter_build_closure9(store), _null, _null, _null, _null, _null), t1), _null, true, false, _null)); } C.JSArray_methods.addAll$1(t5, t3); } return M.Material$(C.Duration_200000, true, _null, T.Row$(t5, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, t4, 0, _null, _null, _null, _null, C.MaterialType_0); } }; V.SidebarFooter_build_closure.prototype = { call$0: function() { var _null = null, t1 = this.context, t2 = this.localization, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "crons_not_enabled"); if (t3 == null) t3 = ""; return O.showMessageDialog(t1, t3, H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t2.get$learnMore().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V.SidebarFooter_build__closure0(), _null), U.TextButton$(false, L.Text$(t2.get$refreshData().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V.SidebarFooter_build__closure1(this.store, t1), _null)], type$.JSArray_legacy_TextButton)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build__closure0.prototype = { call$0: function() { T.launch("https://invoiceninja.github.io/docs/self-host-troubleshooting/#cron-not-running-queue-not-running", false, false); }, $signature: 1 }; V.SidebarFooter_build__closure1.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; V.SidebarFooter_build_closure0.prototype = { call$0: function() { return O.showErrorDialog(true, this.context, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build_closure1.prototype = { call$0: function() { return V._showUpdate(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build_closure2.prototype = { call$0: function() { return V._showConnectStripe(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build_closure3.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2, t3; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.context; t2 = type$.legacy_AppState; t3 = O.StoreProvider_of(t1, t2).get$_store$_state().authState.get$isHosted(); t1 = O.StoreProvider_of(t1, t2).get$_store$_state().authState.get$isHosted(); if (t1) { t1 = $async$self.state; t2 = t1.uiState.selectedCompanyIndex; T.launch(J.$index$asx(t1.userCompanyStates._list, t2).userCompany.ninjaPortalUrl, null, false); } else T.launch(string$.https_a_, null, false); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 31 }; V.SidebarFooter_build_closure4.prototype = { call$0: function() { return V._showContactUs(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build_closure5.prototype = { call$0: function() { return T.launch("https://forum.invoiceninja.com", null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; V.SidebarFooter_build_closure6.prototype = { call$0: function() { var url, _s35_ = "https://invoiceninja.github.io/docs", t1 = this.state.uiState, subRoute = t1.get$baseSubRoute(); if (C.JSString_methods.startsWith$1(t1.currentRoute, "/settings")) url = C.JSArray_methods.contains$1(C.List_m5d, subRoute) ? _s35_ + ("/advanced-settings/#" + subRoute) : _s35_ + ("/basic-settings/#" + subRoute); else url = "https://invoiceninja.github.io/docs/getting-started"; T.launch(url, null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V.SidebarFooter_build_closure7.prototype = { call$0: function() { return V._showAbout(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; V.SidebarFooter_build_closure8.prototype = { call$0: function() { return E.showDialog(true, new V.SidebarFooter_build__closure(this.state), this.context, null, true, type$.legacy_ErrorDialog); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2077 }; V.SidebarFooter_build__closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.state.lastError, true, null); }, $signature: 21 }; V.SidebarFooter_build_closure9.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_menu); return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, $signature: 9 }; V.SidebarFooterCollapsed.prototype = { build$1: function(_, context) { var t3, isUpdateAvailable, t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = state.authState.get$isHosted(); if (!t2) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; isUpdateAvailable = J.$index$asx(t2._list, t3).userCompany.account.get$isUpdateAvailable(); } else isUpdateAvailable = false; t2 = K.Theme_of(context).cardColor; t3 = state.uiState.filterStack._list; t4 = J.getInterceptor$asx(t3); if ((t4.get$isEmpty(t3) ? _null : t4.get$last(t3).get$entityType()) != null && state.prefState.isFilterVisible) { t3 = isUpdateAvailable ? L.Icon$(C.IconData_59083_MaterialIcons_null_false, K.Theme_of(context).accentColor, _null) : L.Icon$(C.IconData_58173_MaterialIcons_null_false, _null, _null); t1 = Z.PopupMenuButton$(_null, _null, true, t3, _null, new V.SidebarFooterCollapsed_build_closure(isUpdateAvailable, t1), new V.SidebarFooterCollapsed_build_closure0(t1, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_String); } else { t3 = L.Icon$(C.IconData_57695_MaterialIcons_null_true, isUpdateAvailable ? state.get$accentColor() : _null, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "show_menu"); if (t1 == null) t1 = ""; t1 = B.IconButton$(C.Alignment_0_0, _null, _null, true, t3, 24, new V.SidebarFooterCollapsed_build_closure1(store), C.EdgeInsets_8_8_8_8, t1, _null); } return M.Container$(_null, t1, C.Clip_0, t2, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, 1 / 0); } }; V.SidebarFooterCollapsed_build_closure0.prototype = { call$1: function(value) { var _this = this, t1 = _this.localization; if (value === t1.get$updateAvailable()) V._showUpdate(_this.context); else if (value === t1.get$about()) V._showAbout(_this.context); else if (value === t1.get$contactUs()) V._showContactUs(_this.context); }, $signature: 7 }; V.SidebarFooterCollapsed_build_closure.prototype = { call$1: function(context) { var t2, t3, _null = null, t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_PopupMenuEntry_legacy_String); if (this.isUpdateAvailable) { t2 = this.localization; t1.push(Z.PopupMenuItem$(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_59083_MaterialIcons_null_false, K.Theme_of(context).accentColor, _null), _null, _null, false, _null, _null, _null, _null, L.Text$(t2.get$updateAvailable(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), t2.get$updateAvailable(), type$.legacy_String)); } t2 = this.localization; t3 = type$.legacy_String; t1.push(Z.PopupMenuItem$(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_58307_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, L.Text$(t2.get$contactUs(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), t2.get$contactUs(), t3)); t1.push(Z.PopupMenuItem$(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_58123_MaterialIcons_null_true, _null, _null), _null, _null, false, _null, _null, _null, _null, L.Text$(t2.get$documentation(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), t2.get$documentation(), t3)); t1.push(Z.PopupMenuItem$(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_58051_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, L.Text$(t2.get$supportForum(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), t2.get$supportForum(), t3)); t1.push(Z.PopupMenuItem$(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_58173_MaterialIcons_null_false, _null, _null), _null, _null, false, _null, _null, _null, _null, L.Text$(t2.get$about(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), t2.get$about(), t3)); return t1; }, $signature: 357 }; V.SidebarFooterCollapsed_build_closure1.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_menu); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V._showContactUs_closure.prototype = { call$1: function(context) { return new V.ContactUsDialog(null); }, $signature: 2078 }; V._showUpdate_closure.prototype = { call$1: function(context) { return new B.UpdateDialog(null); }, $signature: 2079 }; V._showConnectStripe_closure.prototype = { call$0: function() { var context, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); K.Navigator_of(context, false).pop$0(0); M.editEntity(null, context, T.getUnconnectedStripeAccount(O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state()), null); }, $signature: 1 }; V._showAbout_closure.prototype = { call$1: function(context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, _s10_ = "review_app", t1 = _this.localization, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "view_licenses"); if (t3 == null) t3 = ""; t4 = _this.apppIcon; t5 = _this.state; t6 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t3.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showAbout__closure(context, t4, _this.appLegalese, t5), _null), U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showAbout__closure0(context), _null)], t6); t7 = L.Text$("Invoice Ninja", _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null); t7 = Q.ListTile$(false, _null, _null, true, false, _null, new T.Padding(C.EdgeInsets_0_0_16_0, t4, _null), new V._showAbout__closure1(context), new V._showAbout__closure2(t5, t1), false, _null, _null, L.Text$(t5.get$appVersion(t5), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t7, _null); t4 = T.SizedBox$(_null, 8, _null); t8 = t5.uiState.selectedCompanyIndex; t9 = t5.userCompanyStates._list; t10 = J.getInterceptor$asx(t9); t11 = L.Text$(t10.$index(t9, t8).userCompany.user.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = Q.ListTile$(false, C.EdgeInsets_0_0_0_0, _null, true, false, _null, _null, _null, _null, false, _null, _null, L.Text$(t10.$index(t9, t8).userCompany.user.email, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t11, _null); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "app_platforms"); if (t12 == null) t12 = ""; t12 = H.setRuntimeTypeInfo([t7, t4, t11, new T.Padding(C.EdgeInsets_0_4_0_0, new D.AppButton(_null, C._MdiIconData_EuK, t12.toUpperCase(), new V._showAbout__closure3(context, t1), _null, _null), _null)], t6); t5.authState.get$isHosted(); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "health_check"); if (t4 == null) t4 = ""; t4 = H.setRuntimeTypeInfo([new D.AppButton(C.MaterialColor_Map_JNEaM_4283215696, C._MdiIconData_2Nv, t4.toUpperCase(), new V._showAbout__closure4(context), _null, _null)], t6); if (!t10.$index(t9, t8).userCompany.account.disableAutoUpdate) { if (t10.$index(t9, t8).userCompany.account.get$isUpdateAvailable()) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "update_app"); if (t1 == null) t1 = ""; } else t1 = t1.get$forceUpdate(); t4.push(new D.AppButton(C.MaterialColor_Map_JNZaB_4294940672, C._MdiIconData_egL0, t1.toUpperCase(), new V._showAbout__closure5(context), _null, _null)); } C.JSArray_methods.addAll$1(t12, t4); if (_this.daysActive > 100) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s10_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s10_); t12.push(new D.AppButton(C.MaterialColor_Map_JNNS7_4288423856, C.IconData_58873_MaterialIcons_null_false, t1.toUpperCase(), new V._showAbout__closure6(context), _null, _null)); } t12.push(T.SizedBox$(_null, 22, _null)); t12.push(T.Row$(H.setRuntimeTypeInfo([B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C._MdiIconData_sUr, _null, _null), 24, new V._showAbout__closure7(), C.EdgeInsets_8_8_8_8, "Facebook", _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C._MdiIconData_SXh, _null, _null), 24, new V._showAbout__closure8(), C.EdgeInsets_8_8_8_8, "Twitter", _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C._MdiIconData_7vC, _null, _null), 24, new V._showAbout__closure9(), C.EdgeInsets_8_8_8_8, "YouTube", _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_5, C.MainAxisSize_1, _null)); return L.PointerInterceptor$(E.AlertDialog$(t3, C.EdgeInsets_0_0_0_0, _null, E.SingleChildScrollView$(T.Column$(t12, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), C.EdgeInsets_24_20_24_24, _null, _null, _null)); }, $signature: 566 }; V._showAbout__closure.prototype = { call$0: function() { var _this = this, t1 = _this.state; return A.showLicensePage(_this.apppIcon, _this.appLegalese, "Invoice Ninja v5", t1.get$appVersion(t1), _this.context); }, $signature: 0 }; V._showAbout__closure0.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; V._showAbout__closure2.prototype = { call$0: function() { var t1 = this.state; T.Clipboard_setData(new T.ClipboardData(t1.get$appVersion(t1))); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", t1.get$appVersion(t1))); }, $signature: 1 }; V._showAbout__closure1.prototype = { call$0: function() { O.showMessageDialog(this.context, C.JSString_methods.$add(C.Map_HL6YB.$index(0, "channel").toUpperCase() + " \u2022 ", C.Map_HL6YB.$index(0, "frameworkVersion")), null); }, $signature: 1 }; V._showAbout__closure3.prototype = { call$0: function() { E.showDialog(true, new V._showAbout___closure0(this.localization), this.context, null, true, type$.legacy_AlertDialog); }, $signature: 1 }; V._showAbout___closure0.prototype = { call$1: function(context) { var t3, _null = null, t1 = this.localization, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "source_code"); if (t2 == null) t2 = ""; t3 = type$.JSArray_legacy_Widget; return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showAbout____closure(context, t1), _null), U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showAbout____closure0(context), _null)], t3), C.EdgeInsets_0_0_0_0, _null, T.Column$(H.setRuntimeTypeInfo([L.Text$(t1.get$desktop() + " \u2022 Beta", _null, _null, _null, _null, _null, _null, _null, _null, _null), new D.AppButton(_null, C._MdiIconData_MO9, "Windows", new V._showAbout____closure1(), _null, _null), new D.AppButton(_null, C._MdiIconData_7T1, "macOS", new V._showAbout____closure2(), _null, _null), new D.AppButton(_null, C._MdiIconData_ifn, "Linux", new V._showAbout____closure3(), _null, _null), new T.Padding(C.EdgeInsets_0_30_0_0, L.Text$(t1.get$mobile(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new D.AppButton(_null, C._MdiIconData_7T1, "iOS", new V._showAbout____closure4(), _null, _null), new D.AppButton(_null, C._MdiIconData_7T10, "Android", new V._showAbout____closure5(), _null, _null), new D.AppButton(_null, C._MdiIconData_7T10, "F-Droid", new V._showAbout____closure6(), _null, _null)], t3), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 172 }; V._showAbout____closure.prototype = { call$0: function() { E.showDialog(true, new V._showAbout_____closure(this.localization), this.context, null, true, type$.legacy_AlertDialog); }, $signature: 1 }; V._showAbout_____closure.prototype = { call$1: function(context) { var _null = null, t1 = this.localization, t2 = type$.JSArray_legacy_Widget; return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._showAbout______closure(context), _null)], t2), C.EdgeInsets_0_0_0_0, _null, T.Column$(H.setRuntimeTypeInfo([L.Text$("Backend", _null, _null, _null, _null, _null, _null, _null, _null, _null), new D.AppButton(_null, C._MdiIconData_id2, "Laravel/PHP", new V._showAbout______closure0(), _null, _null), new T.Padding(C.EdgeInsets_0_30_0_0, L.Text$("Frontend", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new D.AppButton(_null, C._MdiIconData_7T11, "Flutter/Dart", new V._showAbout______closure1(), _null, _null), new D.AppButton(_null, C._MdiIconData_43h, "Storefront SDK", new V._showAbout______closure2(), _null, _null)], t2), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.EdgeInsets_24_20_24_24, _null, _null, _null); }, $signature: 172 }; V._showAbout______closure.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; V._showAbout______closure0.prototype = { call$0: function() { return T.launch("https://github.com/invoiceninja/invoiceninja/tree/v5-stable", null, false); }, $signature: 30 }; V._showAbout______closure1.prototype = { call$0: function() { return T.launch("https://github.com/invoiceninja/admin-portal", null, false); }, $signature: 30 }; V._showAbout______closure2.prototype = { call$0: function() { return T.launch("https://pub.dev/packages/invoiceninja", null, false); }, $signature: 30 }; V._showAbout____closure0.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; V._showAbout____closure1.prototype = { call$0: function() { return T.launch(string$.https_w, null, false); }, $signature: 30 }; V._showAbout____closure2.prototype = { call$0: function() { return T.launch("https://download.invoiceninja.com/macos", null, false); }, $signature: 30 }; V._showAbout____closure3.prototype = { call$0: function() { return T.launch("https://download.invoiceninja.com/linux", null, false); }, $signature: 30 }; V._showAbout____closure4.prototype = { call$0: function() { return T.launch(string$.https_as, null, false); }, $signature: 30 }; V._showAbout____closure5.prototype = { call$0: function() { return T.launch(string$.https_p, null, false); }, $signature: 30 }; V._showAbout____closure6.prototype = { call$0: function() { return T.launch("https://f-droid.org/packages/com.invoiceninja.app/", null, false); }, $signature: 30 }; V._showAbout__closure4.prototype = { call$0: function() { E.showDialog(true, new V._showAbout___closure(), this.context, null, true, type$.legacy_HealthCheckDialog); }, $signature: 1 }; V._showAbout___closure.prototype = { call$1: function(context) { return new E.HealthCheckDialog(null); }, $signature: 2081 }; V._showAbout__closure5.prototype = { call$0: function() { return V._showUpdate(this.context); }, $signature: 0 }; V._showAbout__closure6.prototype = { call$0: function() { return T.launch(D.getRateAppURL(this.context), null, false); }, $signature: 30 }; V._showAbout__closure7.prototype = { call$0: function() { return T.launch("https://www.facebook.com/invoiceninja", null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; V._showAbout__closure8.prototype = { call$0: function() { return T.launch("https://twitter.com/invoiceninja", null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; V._showAbout__closure9.prototype = { call$0: function() { return T.launch("https://www.youtube.com/channel/UCXAHcBvhW05PDtWYIq7WDFA/videos", null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; V.ContactUsDialog.prototype = { createState$0: function() { return new V._ContactUsDialogState(C._StateLifecycle_0); } }; V._ContactUsDialogState.prototype = { _sendMessage$0: function() { var t1, t2, state, t3, t4, t5, t6, _this = this; if (_this._menu_drawer$_message.length === 0) return; t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); _this.setState$1(new V._ContactUsDialogState__sendMessage_closure(_this)); t2 = state.get$credentials(state).url + "/support/messages/send"; t3 = state.get$credentials(state); t4 = _this._menu_drawer$_message; t5 = _this._includeLogs ? "true" : ""; t6 = type$.legacy_String; new F.WebClient().post$3$data(t2, t3.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["message", t4, "send_logs", t5, "platform", D.getPlatformLetter()], t6, t6))).then$1$1(0, new V._ContactUsDialogState__sendMessage_closure0(_this, t1), type$.Null).catchError$1(new V._ContactUsDialogState__sendMessage_closure1(_this)); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, user = J.$index$asx(t2._list, t3).userCompany.user; t3 = L.Text$(t1.get$contactUs(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([], t2); if (_this._menu_drawer$_isSaving) t4.push(new T.Padding(C.EdgeInsets_12_12_12_12, U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null)); if (!_this._menu_drawer$_isSaving) t4.push(U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._ContactUsDialogState_build_closure(context), _null)); if (!_this._menu_drawer$_isSaving) t4.push(U.TextButton$(false, L.Text$(t1.get$send(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new V._ContactUsDialogState_build_closure0(_this), _null)); t5 = D.getLayout(context) === C.AppLayout_mobile ? _null : 500; t1 = t1.localeCode; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "from"); t6 = E.TextFormField$(true, _null, false, _null, _null, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, _null, user.get$fullName() + " \u2022 " + user.email, _null, _null, _null, 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_4, _null, _null); t7 = T.SizedBox$(_null, 10, _null); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "message"); t6 = H.setRuntimeTypeInfo([t6, t7, E.TextFormField$(true, _null, true, _null, _null, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, false, _null, _null, _null, _null, C.TextInputType_1_null_null, 4, 4, false, new V._ContactUsDialogState_build_closure1(_this), _null, _null, _null, false, _null, C.TextAlign_4, _null, _null)], t2); t7 = state.authState.get$isHosted(); if (!t7) { t7 = T.SizedBox$(_null, 10, _null); t8 = _this._includeLogs; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "include_recent_errors"); t1 = L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo([t7, O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new V._ContactUsDialogState_build_closure2(_this), _null, _null, t1, t8)], t2)); } return L.PointerInterceptor$(E.AlertDialog$(t4, C.EdgeInsets_0_0_0_0, _null, E.SingleChildScrollView$(M.Container$(_null, T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), new V.EdgeInsets(25, 25, 25, 25), _null, _null, t3)); } }; V._ContactUsDialogState__sendMessage_closure.prototype = { call$0: function() { return this.$this._menu_drawer$_isSaving = true; }, $signature: 19 }; V._ContactUsDialogState__sendMessage_closure0.prototype = { call$1: function(response) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t1.setState$1(new V._ContactUsDialogState__sendMessage__closure0(t1)); t2 = t1._framework$_element; t2.toString; $async$goto = 2; return P._asyncAwait(E.showDialog(true, new V._ContactUsDialogState__sendMessage__closure1($async$self.localization), t2, null, true, type$.legacy_MessageDialog), $async$call$1); case 2: // returning from await. t1 = t1._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2082 }; V._ContactUsDialogState__sendMessage__closure0.prototype = { call$0: function() { return this.$this._menu_drawer$_isSaving = false; }, $signature: 19 }; V._ContactUsDialogState__sendMessage__closure1.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "your_message_has_been_received"); return E.MessageDialog$(t1 == null ? "" : t1, null, null, null); }, $signature: 314 }; V._ContactUsDialogState__sendMessage_closure1.prototype = { call$1: function(error) { var t1; P.print("## ERROR: " + H.S(error)); t1 = this.$this; t1.setState$1(new V._ContactUsDialogState__sendMessage__closure(t1)); t1 = t1._framework$_element; t1.toString; O.showErrorDialog(false, t1, H.S(error)); }, $signature: 8 }; V._ContactUsDialogState__sendMessage__closure.prototype = { call$0: function() { return this.$this._menu_drawer$_isSaving = false; }, $signature: 19 }; V._ContactUsDialogState_build_closure.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; V._ContactUsDialogState_build_closure0.prototype = { call$0: function() { return this.$this._sendMessage$0(); }, $signature: 0 }; V._ContactUsDialogState_build_closure1.prototype = { call$1: function(value) { return this.$this._menu_drawer$_message = value; }, $signature: 15 }; V._ContactUsDialogState_build_closure2.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new V._ContactUsDialogState_build__closure(t1, value)); }, $signature: 20 }; V._ContactUsDialogState_build__closure.prototype = { call$0: function() { return this.$this._includeLogs = this.value; }, $signature: 19 }; A.MenuDrawerBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.MenuDrawerBuilder_build_closure(), A.menu_drawer_vm_MenuDrawerVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_MenuDrawerVM); } }; A.MenuDrawerBuilder_build_closure.prototype = { call$2: function(context, viewModel) { return new V.MenuDrawer(viewModel, null); }, $signature: 2083 }; A.MenuDrawerVM.prototype = { get$user: function() { return this.user; } }; A.MenuDrawerVM_fromStore_closure1.prototype = { call$1: function(context) { Y.cleanApiUrl(this.state.authState.url); O.confirmCallback(false, new A.MenuDrawerVM_fromStore__closure(this.store), context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$logout(), false, null); }, $signature: 14 }; A.MenuDrawerVM_fromStore__closure.prototype = { call$1: function(_) { return this.$call$body$MenuDrawerVM_fromStore__closure(_); }, $call$body$MenuDrawerVM_fromStore__closure: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLogout()); t1 = t1.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.user.oauthProvider === "google") B.GoogleOAuth_signOut(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 296 }; A.MenuDrawerVM_fromStore_closure.prototype = { call$3: function(context, index, company) { var t2, t1 = this.state; if (index === t1.uiState.selectedCompanyIndex) return; t2 = this.store; M.checkForChanges(new A.MenuDrawerVM_fromStore__closure1(t2, index, context, t1, company), context, false, t2); }, $signature: 2084 }; A.MenuDrawerVM_fromStore__closure1.prototype = { call$0: function() { var t2, t3, t4, uiState, _this = this, _null = null, t1 = _this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ClearEntityFilter()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.DiscardChanges()); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SelectCompany(_this.index, true)); t2 = t1.get$_store$_state(); t3 = t2.userCompanyStates; t4 = t2.uiState.selectedCompanyIndex; if (J.$index$asx(t3._list, t4).get$isStale() || t2.staticState.get$isStale()) { t2 = t1.get$_store$_state(); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = J.$index$asx(t3._list, t2).lastUpdated; if (t2 <= 0) { t2 = t1.get$_store$_state(); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t2 = J.$index$asx(t3._list, t2).userCompany.company.isLarge; } else t2 = false; if (t2) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.LoadClients(_null)); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(_null, false, false, false)); } _this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); uiState = _this.state.uiState; t2 = uiState.currentRoute; if (C.JSString_methods.startsWith$1(t2, "/settings")) { t3 = t1.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; t3 = J.$index$asx(t4._list, t3).userCompany.user; t4 = uiState.get$subRoute(); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ViewSettings(_this.company, _null, _null, t3, true, t4, false, _null)); if (!uiState.get$isEditing()) t3 = !uiState.get$isEditing() && !C.JSString_methods.endsWith$1(t2, "/email"); else t3 = true; if (t3) { t2 = C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(t2, "_edit", ""), "_view", ""); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t2)); } } }, $signature: 1 }; A.MenuDrawerVM_fromStore_closure0.prototype = { call$1: function(context) { O.confirmCallback(false, new A.MenuDrawerVM_fromStore__closure0(context, this.store), context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$addCompany(), false, null); }, $signature: 14 }; A.MenuDrawerVM_fromStore__closure0.prototype = { call$1: function(_) { return this.$call$body$MenuDrawerVM_fromStore__closure0(_); }, $call$body$MenuDrawerVM_fromStore__closure0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t3, completer, t1, t2; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.context; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "added_company"); if (t2 == null) t2 = ""; t3 = type$.Null; completer = O.snackBarCompleter(t1, t2, true, t3); completer.future.then$1$1(0, new A.MenuDrawerVM_fromStore___closure(), t3); J.$index$asx($async$self.store.get$_dispatchers(), 0).call$1(new E.AddCompany(t1, completer)); $async$goto = 2; return P._asyncAwait(E.showDialog(false, new A.MenuDrawerVM_fromStore___closure0(), t1, null, true, type$.legacy_AlertDialog), $async$call$1); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 296 }; A.MenuDrawerVM_fromStore___closure.prototype = { call$1: function(value) { var t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 3 }; A.MenuDrawerVM_fromStore___closure0.prototype = { call$1: function(context) { return E.SimpleDialog$(H.setRuntimeTypeInfo([new F.LoadingDialog(null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; Q.EntityPresenter.prototype = { title$1$isShort: function(_, isShort) { var _this = this, t1 = L.Localizations_of(_this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), type = t1.lookup$1(H.S(_this.entity.get$entityType())), $name = _this.entity.get$listDisplayName(); if (($name == null ? "" : $name).length === 0) $name = t1.get$pending(t1); else if ($name.length > 10) return $name; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_client, C.EntityType_vendor, C.EntityType_project, C.EntityType_user, C.EntityType_product], type$.JSArray_legacy_EntityType), _this.entity.get$entityType()) || isShort) return $name; else if (D.getLayout(_this.context) === C.AppLayout_mobile) return H.S(type) + " " + H.S($name); else return H.S(type) + " \u203a " + H.S($name); }, title$0: function($receiver) { return this.title$1$isShort($receiver, false); }, getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); switch (field) { case "created_at": t1 = _this.entity.get$createdAt(); return L.Text$(Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "updated_at": if (_this.entity.get$updatedAt() === 0) t1 = ""; else { t1 = _this.entity.get$updatedAt(); t1 = Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false).toIso8601String$0(), context, true, true, true); } return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "archived_at": if (_this.entity.get$archivedAt() === 0) t1 = ""; else { t1 = _this.entity.get$archivedAt(); t1 = Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false).toIso8601String$0(), context, true, true, true); } return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "entity_state": t2 = _this.entity; if (!t2.get$isArchived() && !t2.get$isDeleted(t2)) t1 = t1.get$active(t1); else t1 = _this.entity.get$isArchived() ? t1.get$archived() : t1.get$deleted(); return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "created_by": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).userState.map; t1 = _this.entity.get$createdUserId(); t1 = J.$index$asx(t2._map$_map, t1); if (t1 == null) t1 = _null; else t1 = t1.get$fullName().length !== 0 ? t1.get$fullName() : t1.email; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "assigned_to": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).userState.map; t1 = _this.entity.get$assignedUserId(); t1 = J.$index$asx(t2._map$_map, t1); if (t1 == null) t1 = _null; else t1 = t1.get$fullName().length !== 0 ? t1.get$fullName() : t1.email; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_deleted": t2 = _this.entity; return L.Text$(t2.get$isDeleted(t2) ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return L.Text$("Error: " + H.S(field) + " not found", _null, _null, _null, _null, _null, _null, _null, _null, _null); }, presentCustomField$2: function(context, value) { var t1; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["yes", "no"], type$.JSArray_legacy_String), value)) return L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(value); else { t1 = P.RegExp_RegExp("^\\d{4}-\\d{2}-\\d{2}$", true, false); if (t1._nativeRegExp.test(value)) return Y.formatDate(value, context, true, true, false); } return value; } }; D.CachedImage.prototype = { build$1: function(_, context) { var t1, t2, _this = this, _null = null; if (!O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().isTesting) { t1 = _this.url; t1 = (t1 == null ? "" : t1).length === 0; } else t1 = true; if (t1) return T.SizedBox$(_null, _null, _this.width); t1 = _this.url; t2 = M.ResizeImage_resizeIfNeeded(_null, _null, new D.NetworkImage(t1, 1)); return new U.Image(t2, _null, _null, _null, _this.width, _null, _null, C.FilterQuality_1, _null, C.BoxFit_1, C.Alignment_0_0, C.ImageRepeat_3, false, false, new D.ValueKey(t1, type$.ValueKey_legacy_String)); } }; E.ResponsivePadding.prototype = { build$1: function(_, context) { var t1 = this.child; if (D.getLayout(context) === C.AppLayout_mobile) return new T.Padding(new V.EdgeInsets(12, 12, 12, 12 + context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.viewInsets.bottom), t1, null); else return T.FractionallySizedBox$(C.Alignment_0_0, new T.Padding(new V.EdgeInsets(0, 24, 0, 0), t1, null), null, 0.4); } }; X.ScrollableListView.prototype = { createState$0: function() { return new X._ScrollableListViewState(C._StateLifecycle_0); } }; X._ScrollableListViewState.prototype = { initState$0: function() { this.super$State$initState(); this._scrollable_listview$_scrollController = F.ScrollController$(null, 0); }, dispose$0: function(_) { this._scrollable_listview$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t1 = this._widget, t2 = t1.scrollController, t3 = t2 == null, t4 = t3 ? this._scrollable_listview$_scrollController : t2, t5 = t1.hideMobileThumb, t6 = t1.padding; t1 = t1.children; return new O.AppScrollbar(B.ListView$(t1, t3 ? this._scrollable_listview$_scrollController : t2, t6, null, false, C.Axis_1, true), t4, t5, null); } }; X.ScrollableListViewBuilder.prototype = { createState$0: function() { return new X._ScrollableListViewBuilderState(C._StateLifecycle_0); } }; X._ScrollableListViewBuilderState.prototype = { initState$0: function() { this.super$State$initState(); this._scrollable_listview$_scrollController = F.ScrollController$(null, 0); }, dispose$0: function(_) { this._scrollable_listview$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t1 = this._widget, t2 = this._scrollable_listview$_scrollController, t3 = t1.separatorBuilder, t4 = t1.padding, t5 = t1.itemBuilder; t1 = t1.itemCount; if (t3 != null) t1 = B.ListView$separated(t2, t5, t1, t4, t3, true); else t1 = B.ListView$builder(t2, t5, t1, t4, null, C.Axis_1, true); return new O.AppScrollbar(t1, t2, false, null); } }; V.SystemLogViewer.prototype = { createState$0: function() { return new V._SystemLogViewerState(P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_bool), C._StateLifecycle_0); } }; V._SystemLogViewerState.prototype = { build$1: function(_, context) { var t4, t5, _null = null, t1 = {}, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t3 = J.where$1$ax(this._widget.systemLogs._list, new V._SystemLogViewerState_build_closure()), systemLogs = t1.systemLogs = P.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")); t3 = systemLogs.length > 25 ? t1.systemLogs = C.JSArray_methods.sublist$2(systemLogs, 0, 25) : systemLogs; t4 = H._arrayInstanceType(t3); t5 = t4._eval$1("MappedIterable<1,ExpansionPanel*>"); return new X.ScrollableListView(H.setRuntimeTypeInfo([new D.ExpansionPanelList(P.List_List$of(new H.MappedIterable(new H.WhereIterable(t3, new V._SystemLogViewerState_build_closure0(), t4._eval$1("WhereIterable<1>")), new V._SystemLogViewerState_build_closure1(this, state, t2), t5), true, t5._eval$1("Iterable.E")), new V._SystemLogViewerState_build_closure2(t1, this), _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null); } }; V._SystemLogViewerState_build_closure.prototype = { call$1: function(log) { return log.typeId !== 800; }, $signature: 565 }; V._SystemLogViewerState_build_closure2.prototype = { call$2: function(index, isExpanded) { var t1 = this.$this; t1.setState$1(new V._SystemLogViewerState_build__closure(this._box_0, t1, index, isExpanded)); }, $signature: 377 }; V._SystemLogViewerState_build__closure.prototype = { call$0: function() { var _this = this; _this.$this._isExpanded.$indexSet(0, _this._box_0.systemLogs[_this.index].id, !_this.isExpanded); }, $signature: 1 }; V._SystemLogViewerState_build_closure0.prototype = { call$1: function(systemLog) { return systemLog.eventId >= 20; }, $signature: 565 }; V._SystemLogViewerState_build_closure1.prototype = { call$1: function(systemLog) { var logs, client, t3, exception, t4, _null = null, t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; client = J.$index$asx(t2._list, t1).clientState.$get$1(0, systemLog.clientId); logs = null; t1 = this.$this; t2 = t1._isExpanded; t3 = systemLog.id; if (t2.$index(0, t3) === true && systemLog.log.length !== 0) try { logs = C.C_JsonCodec.decode$1(0, systemLog.log); } catch (exception) { H.unwrapException(exception); } t4 = t2.$index(0, t3); if (t2.$index(0, t3) === true) { t2 = logs; t2 = M.Container$(_null, new T.Padding(C.EdgeInsets_0_8_0_8, new A.JsonViewer(t2 == null ? P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.dynamic) : t2, _null), _null), C.Clip_0, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t2 = T.SizedBox$(_null, _null, _null); return new D.ExpansionPanel(new V._SystemLogViewerState_build__closure0(t1, systemLog, this.localization, client), t2, t4 === true); }, $signature: 2087 }; V._SystemLogViewerState_build__closure0.prototype = { call$2: function(context, isExpanded) { var t5, _this = this, _null = null, t1 = _this.systemLog, t2 = L.Icon$(Q.getActivityIcon(t1.categoryId), _null, _null), t3 = _this.localization, t4 = L.Text$(C.JSString_methods.$add(J.$add$ansx(t3.lookup$1(t1.get$category()), " \u203a "), t3.lookup$1(t1.get$type(t1))), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = t3.lookup$1(t1.get$event()); t5 = _this.client; t3 = J.$add$ansx(t3, !t5.get$isNew() ? " \u2022 " + t5.displayName : "") + "\n"; return Q.ListTile$(false, _null, _null, true, true, _null, t2, _null, new V._SystemLogViewerState_build___closure(_this.$this, t1), false, _null, _null, L.Text$(t3 + Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t1.createdAt * 1000, false).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t4, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2088 }; V._SystemLogViewerState_build___closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new V._SystemLogViewerState_build____closure(t1, this.systemLog)); }, $signature: 1 }; V._SystemLogViewerState_build____closure.prototype = { call$0: function() { var t1 = this.$this._isExpanded, t2 = this.systemLog.id; t1.$indexSet(0, t2, !t1.containsKey$1(0, t2) || !t1.$index(0, t2)); }, $signature: 1 }; L.DataColumn0.prototype = {}; L.DataRow0.prototype = {}; L.DataCell0.prototype = {}; L.AppDataTable.prototype = { _app_data_table$_handleSelectAll$1: function(checked) { this.onSelectAll.call$1(checked); }, _app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap: function(checked, color, onCheckboxChanged, onRowTap) { var _null = null, t1 = this.horizontalMargin, t2 = T.Center$(K.Checkbox$(color, false, _null, _null, onCheckboxChanged, false, checked), _null, _null), contents = new T.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, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, new T.Padding(new V.EdgeInsetsDirectional(t1, 0, t1 / 2, 0), t2, _null), _null); return S.TableCell$(onRowTap != null ? L.TableRowInkWell$0(contents, onRowTap) : contents, C.TableCellVerticalAlignment_4); }, _app_data_table$_buildCheckbox$3$checked$color$onCheckboxChanged: function(checked, color, onCheckboxChanged) { return this._app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap(checked, color, onCheckboxChanged, null); }, _buildHeadingCell$8$ascending$context$label$numeric$onSort$padding$sorted$tooltip: function(ascending, context, label, numeric, onSort, padding, sorted, tooltip) { var t2, t3, _null = null, t1 = H.setRuntimeTypeInfo([label], type$.JSArray_legacy_Widget); C.JSArray_methods.addAll$1(t1, new L.AppDataTable__buildHeadingCell_arrowWithPadding(onSort, sorted, ascending).call$0()); label = T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t1 = this.headingRowHeight; t2 = Math.min(1, t1 / 12); if (K.Theme_of(context).colorScheme.brightness === C.Brightness_1) t3 = onSort != null && sorted ? C.Color_3707764736 : C.Color_2315255808; else t3 = onSort != null && sorted ? C.Color_4294967295 : C.Color_3019898879; label = M.Container$(C.AlignmentDirectional_m1_0, G.AnimatedDefaultTextStyle$(label, C.C__Linear, C.Duration_160000, false, A.TextStyle$(_null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, C.FontWeight_4, _null, t2, true, _null, _null, _null, _null, _null, _null, _null)), C.Clip_0, _null, _null, _null, _null, t1, _null, _null, padding, _null, _null, _null); return R.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, onSort, _null, _null, _null, _null, _null); }, build$1: function(_, context) { var displayCheckboxColumn, allChecked, t3, tableColumns, _length, tableRows, t4, index, t5, t6, rowIndex, _i, row, displayColumnIndex, paddingEnd, t7, paddingEnd0, paddingStart, dataColumnIndex, t8, column, t9, paddingStart0, paddingEnd1, padding, t10, cell, label, t11, isLightTheme, t12, t13, _this = this, _null = null, theme = K.Theme_of(context), t1 = Z.Divider_createBorderSide(context, _null, 1), t2 = K.Theme_of(context).colorScheme.brightness === C.Brightness_1 ? C.Color_167772160 : C.Color_503316480, _kSelectedDecoration = new S.BoxDecoration(t2, _null, new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, t1, C.BorderSide_m7u), _null, _null, _null, C.BoxShape_0), _kUnselectedDecoration = new S.BoxDecoration(_null, _null, new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, Z.Divider_createBorderSide(context, _null, 1), C.BorderSide_m7u), _null, _null, _null, C.BoxShape_0); t1 = _this.rows; displayCheckboxColumn = C.JSArray_methods.any$1(t1, new L.AppDataTable_build_closure()); allChecked = displayCheckboxColumn && !C.JSArray_methods.any$1(t1, new L.AppDataTable_build_closure0()); t2 = _this.columns; t3 = t2.length; t3 += displayCheckboxColumn ? 1 : 0; tableColumns = P.List_List$filled(t3, C.C__NullTableColumnWidth0, false, type$.legacy_TableColumnWidth); _length = t1.length + 1; tableRows = J.JSArray_JSArray$allocateGrowable(_length, type$.legacy_TableRow); for (t4 = type$.legacy_Widget, index = 0; index < _length; ++index) { t5 = index === 0 ? $.$get$AppDataTable__headingRowKey() : t1[index - 1].key; t6 = index > 0 && t1[index - 1].selected ? _kSelectedDecoration : _kUnselectedDecoration; tableRows[index] = new S.TableRow(t5, t6, P.List_List$filled(t3, C._NullWidget_null1, false, t4)); } if (displayCheckboxColumn) { t3 = _this.horizontalMargin; tableColumns[0] = new S.FixedColumnWidth(t3 + 18 + t3 / 2); t3 = tableRows[0]; t4 = theme.accentColor; t3.children[0] = _this._app_data_table$_buildCheckbox$3$checked$color$onCheckboxChanged(allChecked, t4, _this.get$_app_data_table$_handleSelectAll()); for (t3 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t3 || (0, H.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; tableRows[rowIndex].children[0] = _this._app_data_table$_buildCheckbox$4$checked$color$onCheckboxChanged$onRowTap(row.selected, t4, row.onSelectChanged, new L.AppDataTable_build_closure1(row)); ++rowIndex; } displayColumnIndex = 1; } else displayColumnIndex = 0; for (t3 = _this.dataRowHeight, t4 = _this.sortAscending, t5 = _this.sortColumnIndex, t6 = _this._app_data_table$_onlyTextColumn, paddingEnd = _this.columnSpacing / 2, t7 = !displayCheckboxColumn, paddingEnd0 = _this.horizontalMargin, paddingStart = paddingEnd0 / 2, dataColumnIndex = 0; t8 = t2.length, dataColumnIndex < t8; ++dataColumnIndex) { column = t2[dataColumnIndex]; t9 = dataColumnIndex === 0; if (t9) paddingStart0 = paddingStart; else paddingStart0 = dataColumnIndex === 1 && t7 ? paddingStart : paddingEnd; if (t9) paddingEnd1 = paddingStart; else paddingEnd1 = dataColumnIndex === t8 - 1 ? paddingEnd0 : paddingEnd; padding = new V.EdgeInsetsDirectional(paddingStart0, 0, paddingEnd1, 0); if (dataColumnIndex === t6) tableColumns[displayColumnIndex] = C.IntrinsicColumnWidth_1; else tableColumns[displayColumnIndex] = C.IntrinsicColumnWidth_null; t8 = tableRows[0]; t9 = column.label; t10 = column.onSort != null ? new L.AppDataTable_build_closure2(_this, column, dataColumnIndex) : _null; t8.children[displayColumnIndex] = _this._buildHeadingCell$8$ascending$context$label$numeric$onSort$padding$sorted$tooltip(t4, context, t9, false, t10, padding, displayCheckboxColumn ? dataColumnIndex === t5 : dataColumnIndex - 1 === t5, _null); for (t8 = t1.length, rowIndex = 1, _i = 0; _i < t1.length; t1.length === t8 || (0, H.throwConcurrentModificationError)(t1), ++_i) { row = t1[_i]; cell = row.cells[dataColumnIndex]; t9 = tableRows[rowIndex]; label = cell.child; t10 = cell.onTap; t11 = cell.backgroundColor; isLightTheme = K.Theme_of(context).colorScheme.brightness === C.Brightness_1; if (isLightTheme) t12 = C.Color_3707764736; else t12 = C.Color_3019898879; t13 = isLightTheme ? C.Color_2315255808 : C.Color_3019898879; label = M.Container$(C.AlignmentDirectional_m1_0, new L.DefaultTextStyle(new A.TextStyle(true, t12, _null, _null, _null, _null, 13, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, true, C.TextOverflow_0, _null, C.TextWidthBasis_0, _null, Y.IconTheme_merge(new K.DropdownButtonHideUnderline(label, _null), new T.IconThemeData(t13, _null, _null)), _null), C.Clip_0, _null, _null, _null, _null, t3, _null, _null, padding, _null, _null, _null); if (t10 != null) label = R.InkWell$(false, _null, true, label, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t10, _null, _null, _null, _null, _null); else label = L.TableRowInkWell$0(label, new L.AppDataTable_build_closure3(row)); t9.children[displayColumnIndex] = new M.DecoratedBox(new S.BoxDecoration(t11, _null, _null, _null, _null, _null, C.BoxShape_0), C.DecorationPosition_0, label, _null); ++rowIndex; } ++displayColumnIndex; } return S.Table$(tableRows, new H.ListMapView(tableColumns, H._arrayInstanceType(tableColumns)._eval$1("ListMapView<1>")), C.FlexColumnWidth_1, C.TableCellVerticalAlignment_0, _null); } }; L.AppDataTable__buildHeadingCell_arrowWithPadding.prototype = { call$0: function() { if (this.onSort == null) var t1 = C.List_empty8; else { t1 = this.sorted; t1 = H.setRuntimeTypeInfo([new L._SortArrow0(t1, t1 ? this.ascending : null, C.Duration_160000, null), C.SizedBox_2_null_null_null], type$.JSArray_legacy_Widget); } return t1; }, $signature: 198 }; L.AppDataTable_build_closure.prototype = { call$1: function(row) { return row.onSelectChanged != null; }, $signature: 562 }; L.AppDataTable_build_closure0.prototype = { call$1: function(row) { return row.onSelectChanged != null && !row.selected; }, $signature: 562 }; L.AppDataTable_build_closure1.prototype = { call$0: function() { var t1 = this.row, t2 = t1.onSelectChanged; return t2 != null ? t2.call$1(!t1.selected) : null; }, $signature: 0 }; L.AppDataTable_build_closure2.prototype = { call$0: function() { var t1 = this.dataColumnIndex, t2 = this.$this; t2 = t2.sortColumnIndex !== t1 || !t2.sortAscending; return this.column.onSort.call$2(t1, t2); }, $signature: 0 }; L.AppDataTable_build_closure3.prototype = { call$0: function() { var t1 = this.row, t2 = t1.onSelectChanged; return t2 != null ? t2.call$1(!t1.selected) : null; }, $signature: 0 }; L.TableRowInkWell0.prototype = { getRectCallback$1: function(referenceBox) { return new L.TableRowInkWell_getRectCallback_closure0(referenceBox); }, debugCheckContext$1: function(context) { this.super$InkResponse$debugCheckContext(context); return true; } }; L.TableRowInkWell_getRectCallback_closure0.prototype = { call$0: function() { var table0, rect, offset, cell = this.referenceBox, table = cell.get$parent(cell), transform = new E.Matrix4(new Float64Array(16)); transform.setIdentity$0(); while (true) { if (!(table instanceof K.RenderObject && !(table instanceof S.RenderTable))) break; table.applyPaintTransform$2(cell, transform); table0 = table.get$parent(table); cell = table; table = table0; } if (table instanceof S.RenderTable) { rect = table.getRowBox$1(type$.legacy_TableCellParentData._as(cell.parentData).y); table.applyPaintTransform$2(cell, transform); offset = T.MatrixUtils_getAsTranslation(transform); if (offset != null) return rect.shift$1(new P.Offset(-offset._dx, -offset._dy)); } return C.Rect_0_0_0_0; }, "call*": "call$0", $requiredArgCount: 0, $signature: 2094 }; L._SortArrow0.prototype = { createState$0: function() { return new L._SortArrowState0(null, C._StateLifecycle_0); } }; L._SortArrowState0.prototype = { initState$0: function() { var t1, t2, t3, _this = this, _null = null; _this.super$State$initState(); t1 = G.AnimationController$(_null, _this._widget.duration, 0, _null, 1, _null, _this); _this._app_data_table$_opacityController = t1; t1 = S.CurvedAnimation$(C.Cubic_ifx, t1, _null); t2 = _this.get$_app_data_table$_rebuild(); t1.parent.addListener$1(0, t2); _this._app_data_table$_opacityAnimation = t1; t1 = _this._app_data_table$_opacityController; t1.set$value(0, _this._widget.visible ? 1 : 0); t1 = G.AnimationController$(_null, _this._widget.duration, 0, _null, 1, _null, _this); _this._app_data_table$_orientationController = t1; t3 = $.$get$_SortArrowState__turnTween0(); type$.Animation_double._as(t1); t3.toString; t1.addListener$1(0, t2); t1.addStatusListener$1(_this.get$_app_data_table$_resetOrientationAnimation()); _this._orientationAnimation = new R._AnimatedEvaluation(t1, t3, t3.$ti._eval$1("_AnimatedEvaluation")); t1 = _this._widget; if (t1.visible) _this._app_data_table$_orientationOffset = t1.down ? 0 : 3.141592653589793; }, _app_data_table$_rebuild$0: function() { this.setState$1(new L._SortArrowState__rebuild_closure0()); }, _app_data_table$_resetOrientationAnimation$1: function($status) { if ($status === C.AnimationStatus_3) { this._app_data_table$_orientationOffset += 3.141592653589793; this._app_data_table$_orientationController.set$value(0, 0); } }, didUpdateWidget$1: function(oldWidget) { var t1, newDown, t2, skipArrow, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; newDown = t1.down; if (newDown == null) newDown = _this._app_data_table$_down; t2 = oldWidget.visible; t1 = t1.visible; if (t2 !== t1) { if (t1 && _this._app_data_table$_opacityController.get$_status() === C.AnimationStatus_0) { _this._app_data_table$_orientationController.stop$0(0); _this._app_data_table$_orientationController.set$value(0, 0); _this._app_data_table$_orientationOffset = newDown ? 0 : 3.141592653589793; skipArrow = true; } else skipArrow = false; t1 = _this._widget.visible; t2 = _this._app_data_table$_opacityController; if (t1) t2.forward$0(0); else t2.reverse$0(0); } else skipArrow = false; if (_this._app_data_table$_down != newDown && !skipArrow) { t1 = _this._app_data_table$_orientationController.get$_status(); t2 = _this._app_data_table$_orientationController; if (t1 === C.AnimationStatus_0) t2.forward$0(0); else t2.reverse$0(0); } _this._app_data_table$_down = newDown; }, dispose$0: function(_) { this._app_data_table$_opacityController.dispose$0(0); this._app_data_table$_orientationController.dispose$0(0); this.super$__SortArrowState_State_TickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t2, t3, t4, t1 = this._app_data_table$_opacityAnimation; t1 = t1.get$value(t1); t2 = this._app_data_table$_orientationOffset; t3 = this._orientationAnimation; t4 = t3._evaluatable; t3 = t3.parent; t3 = E.Matrix4_Matrix4$rotationZ(t2 + t4.transform$1(0, t3.get$value(t3))); t3.setTranslationRaw$3(0, -1.5, 0); return T.Opacity$(false, T.Transform$(C.Alignment_0_0, L.Icon$(C.IconData_57495_MaterialIcons_null_false, K.Theme_of(context).colorScheme.brightness === C.Brightness_1 ? C.Color_3707764736 : C.Color_3019898879, 16), t3, true), t1); } }; L._SortArrowState__rebuild_closure0.prototype = { call$0: function() { }, $signature: 1 }; L._NullTableColumnWidth0.prototype = { maxIntrinsicWidth$2: function(cells, containerWidth) { return H.throwExpression(P.UnimplementedError$(null)); }, minIntrinsicWidth$2: function(cells, containerWidth) { return H.throwExpression(P.UnimplementedError$(null)); } }; L._NullWidget3.prototype = { createElement$0: function(_) { return H.throwExpression(P.UnimplementedError$(null)); } }; L.__SortArrowState_State_TickerProviderStateMixin0.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; K.AppDataTableSource.prototype = {}; N.AppPaginatedDataTable.prototype = { createState$0: function() { return new N.AppPaginatedDataTableState(P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_DataRow), new N.LabeledGlobalKey(null, type$.LabeledGlobalKey_legacy_State_legacy_StatefulWidget), C._StateLifecycle_0); }, onPageChanged$1: function(arg0) { return this.onPageChanged.call$1(arg0); } }; N.AppPaginatedDataTableState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._framework$_element; t1.toString; t1 = S.PageStorage_of(t1); if (t1 == null) t1 = null; else { t2 = _this._framework$_element; t2.toString; t2 = t1.readState$1(t2); t1 = t2; } H._asIntS(t1); if (t1 == null) t1 = _this._widget.initialFirstRowIndex; _this._app_paginated_data_table$_firstRowIndex = t1 == null ? 0 : t1; t1 = _this._widget.source.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_app_paginated_data_table$_handleDataSourceChanged()), false); _this._app_paginated_data_table$_handleDataSourceChanged$0(); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.source; if (t1 != _this._widget.source) { t2 = _this.get$_app_paginated_data_table$_handleDataSourceChanged(); t1.removeListener$1(0, t2); t1 = _this._widget.source.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); _this._app_paginated_data_table$_handleDataSourceChanged$0(); } }, dispose$0: function(_) { this._widget.source.removeListener$1(0, this.get$_app_paginated_data_table$_handleDataSourceChanged()); this.super$State$dispose(0); }, _app_paginated_data_table$_handleDataSourceChanged$0: function() { this.setState$1(new N.AppPaginatedDataTableState__handleDataSourceChanged_closure(this)); }, pageTo$1: function(rowIndex) { var t1, t2, _this = this, oldFirstRowIndex = _this._app_paginated_data_table$_firstRowIndex; _this.setState$1(new N.AppPaginatedDataTableState_pageTo_closure(_this, rowIndex)); t1 = _this._widget; t1.toString; t2 = _this._app_paginated_data_table$_firstRowIndex; if (oldFirstRowIndex != t2) t1.onPageChanged$1(t2); }, _app_paginated_data_table$_getBlankRowFor$1: function(index) { var t1 = this._widget.columns, t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,DataCell0*>"); return new L.DataRow0(new D.ValueKey(index, type$.ValueKey_legacy_int), null, false, P.List_List$of(new H.MappedListIterable(t1, new N.AppPaginatedDataTableState__getBlankRowFor_closure(), t2), true, t2._eval$1("ListIterable.E"))); }, _app_paginated_data_table$_getProgressIndicatorRowFor$1: function(index) { var t2, t3, cells, t1 = {}; t1.haveProgressIndicator = false; t2 = this._widget.columns; t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,DataCell0*>"); cells = P.List_List$of(new H.MappedListIterable(t2, new N.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure(t1), t3), true, t3._eval$1("ListIterable.E")); if (!t1.haveProgressIndicator) { t1.haveProgressIndicator = true; cells[0] = C.DataCell_R8h; } return new L.DataRow0(new D.ValueKey(index, type$.ValueKey_legacy_int), null, false, cells); }, _app_paginated_data_table$_getRows$2: function(firstRowIndex, rowsPerPage) { var t1, t2, index, haveProgressIndicator, row, t3, _this = this, result = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataRow_2), nextPageFirstRowIndex = firstRowIndex + rowsPerPage; for (t1 = _this._app_paginated_data_table$_rows, t2 = J.getInterceptor$x(t1), index = firstRowIndex, haveProgressIndicator = false; index < nextPageFirstRowIndex; ++index) { if (index < _this._app_paginated_data_table$_rowCount || _this._app_paginated_data_table$_rowCountApproximate) { row = t2.putIfAbsent$2(t1, index, new N.AppPaginatedDataTableState__getRows_closure(_this, index)); t3 = row == null; if (t3 && !haveProgressIndicator) { if (t3) row = _this._app_paginated_data_table$_getProgressIndicatorRowFor$1(index); haveProgressIndicator = true; } } else row = null; result.push(row == null ? _this._app_paginated_data_table$_getBlankRowFor$1(index) : row); } return result; }, _app_paginated_data_table$_handlePrevious$0: function() { this.pageTo$1(Math.max(this._app_paginated_data_table$_firstRowIndex - this._widget.rowsPerPage, 0)); }, _app_paginated_data_table$_handleNext$0: function() { this.pageTo$1(this._app_paginated_data_table$_firstRowIndex + this._widget.rowsPerPage); }, build$1: function(_, context) { var t2, t3, footerWidgets, t4, t5, t6, t7, t8, _this = this, _null = null, themeData = K.Theme_of(context), t1 = L.Localizations_of(context, C.Type_MaterialLocalizations_flR, type$.MaterialLocalizations); t1.toString; t2 = themeData.textTheme; t3 = type$.JSArray_legacy_Widget; footerWidgets = H.setRuntimeTypeInfo([], t3); t4 = _this._widget; t4.toString; t5 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t6 = _this._app_paginated_data_table$_firstRowIndex; t4 = L.Text$(t1.pageRowsInfoTitle$4(t6 + 1, t6 + t4.rowsPerPage, _this._app_paginated_data_table$_rowCount, _this._app_paginated_data_table$_rowCountApproximate), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 32); t7 = t1.get$previousPageTooltip(); t7 = B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_cKo, 24, _this._app_paginated_data_table$_firstRowIndex <= 0 ? _null : _this.get$_app_paginated_data_table$_handlePrevious(), C.EdgeInsets_0_0_0_0, t7, _null); t8 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 24); t1 = t1.get$nextPageTooltip(); C.JSArray_methods.addAll$1(footerWidgets, H.setRuntimeTypeInfo([t5, t4, t6, t7, t8, B.IconButton$(C.Alignment_0_0, _null, _null, true, C.Icon_wEo, 24, !_this._app_paginated_data_table$_rowCountApproximate && _this._app_paginated_data_table$_firstRowIndex + _this._widget.rowsPerPage >= _this._app_paginated_data_table$_rowCount ? _null : _this.get$_app_paginated_data_table$_handleNext(), C.EdgeInsets_0_0_0_0, t1, _null), M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14)], t3)); return new A.LayoutBuilder(new N.AppPaginatedDataTableState_build_closure(_this, t2.caption, footerWidgets), _null); } }; N.AppPaginatedDataTableState__handleDataSourceChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1._app_paginated_data_table$_rowCount = J.get$length$asx(t1._widget.source.entityList); t1._widget.source.toString; t1._app_paginated_data_table$_rowCountApproximate = false; J.clear$0$ax(t1._app_paginated_data_table$_rows); }, $signature: 1 }; N.AppPaginatedDataTableState_pageTo_closure.prototype = { call$0: function() { var t1 = this.$this, rowsPerPage = t1._widget.rowsPerPage; t1._app_paginated_data_table$_firstRowIndex = C.JSInt_methods.$tdiv(this.rowIndex, rowsPerPage) * rowsPerPage; }, $signature: 1 }; N.AppPaginatedDataTableState__getBlankRowFor_closure.prototype = { call$1: function(column) { return C.DataCell_mS8; }, $signature: 561 }; N.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure.prototype = { call$1: function(column) { column.toString; this._box_0.haveProgressIndicator = true; return C.DataCell_R8h; }, $signature: 561 }; N.AppPaginatedDataTableState__getRows_closure.prototype = { call$0: function() { return this.$this._widget.source.getRow$1(this.index); }, $signature: 2097 }; N.AppPaginatedDataTableState_build_closure.prototype = { call$2: function(context, constraints) { var t4, _null = null, t1 = T.SizedBox$(_null, 4, _null), t2 = this.$this, t3 = t2._widget; t3.toString; t4 = t3.columns; t4 = E.SingleChildScrollView$(new T.ConstrainedBox(new S.BoxConstraints(constraints.minWidth, 1 / 0, 0, 1 / 0), new L.AppDataTable(t4, t3.sortColumnIndex, t3.sortAscending, t3.onSelectAll, 48, 56, 24, 56, true, t2._app_paginated_data_table$_getRows$2(t2._app_paginated_data_table$_firstRowIndex, t3.rowsPerPage), L.AppDataTable__initOnlyTextColumn(t4), t2._app_paginated_data_table$_tableKey), _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_0); t2._widget.toString; return V.Card$(T.Column$(H.setRuntimeTypeInfo([t1, t4, L.DefaultTextStyle$(Y.IconTheme_merge(M.Container$(_null, E.SingleChildScrollView$(T.Row$(this.footerWidgets, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, C.DragStartBehavior_1, _null, _null, true, C.Axis_0), C.Clip_0, _null, _null, _null, _null, 56, _null, _null, _null, _null, _null, _null), C.IconThemeData_gsm), _null, _null, C.TextOverflow_0, true, this.footerTextStyle, _null, _null, C.TextWidthBasis_0)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null, _null, _null, false, _null); }, $signature: 2098 }; D.EntityDataTableSource.prototype = { getRow$1: function(index) { var listState, uIState, t5, isSelected, rowColor, backgroundColor, t6, t7, t8, t9, _this = this, _null = null, t1 = {}, t2 = _this.context, state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(), t3 = _this.entityMap, t4 = J.$index$asx(_this.entityList, index), entity = J.$index$asx(t3._map$_map, t4); t4 = _this.entityPresenter; t4.entity = entity; t4.context = t2; t4 = _this.entityType; listState = state.getUIState$1(t4).get$listUIState(); uIState = state.getUIState$1(t4); if (entity == null) { t1 = H.setRuntimeTypeInfo([new L.DataCell0(T.SizedBox$(_null, _null, _null), _null, _null)], type$.JSArray_legacy_DataCell_2); C.JSArray_methods.addAll$1(t1, J.map$1$1$ax(_this.tableColumns, new D.EntityDataTableSource_getRow_closure(), type$.legacy_DataCell)); return new L.DataRow0(_null, _null, false, t1); } t3 = listState.selectedIds; t4 = t3 == null; if (t4) t5 = state.prefState.isPreviewVisible || state.uiState.get$isEditing(); else t5 = false; if (t5) isSelected = (state.uiState.get$isEditing() ? entity.get$id(entity) === _this.editingId : entity.get$id(entity) === uIState.get$selectedId()) && true; else isSelected = false; t1.backgroundColor = null; t5 = state.prefState; rowColor = J.$index$asx(t5.customColors._map$_map, "table_alternate_row_background_color"); if (rowColor == null) rowColor = ""; if (isSelected && D.getLayout(t2) === C.AppLayout_desktop) t2 = t1.backgroundColor = E.convertHexStringToColor(t5.enableDarkMode ? "#253750" : "#e5f5ff"); else if (rowColor.length !== 0 && C.JSInt_methods.$mod(index, 2) === 0) { backgroundColor = E.convertHexStringToColor(rowColor); t1.backgroundColor = backgroundColor; t2 = backgroundColor; } else t2 = _null; if (t4) t3 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t3 = J.contains$1$asx(t3, entity.get$id(entity)); t5 = !t4 ? new D.EntityDataTableSource_getRow_closure0(_this, entity) : _null; t6 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataCell_2); if (t4) { t4 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t4 = t4._list; t8 = J.getInterceptor$asx(t4); t9 = t8.$index(t4, t7).userCompany; if (type$.legacy_BelongsToClient._is(entity)) { t4 = t8.$index(t4, t7).clientState.map; t7 = entity.get$clientId(entity); t4 = J.$index$asx(t4._map$_map, t7); } else t4 = _null; t6.push(new L.DataCell0(T.Row$(H.setRuntimeTypeInfo([D.ActionMenuButton$(entity, entity.getActions$3$client$includeEdit$userCompany(t4, true, t9), _null, _null, false, new D.EntityDataTableSource_getRow_closure1(entity))], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new D.EntityDataTableSource_getRow_closure2(_this, entity), t2)); } C.JSArray_methods.addAll$1(t6, J.map$1$1$ax(_this.tableColumns, new D.EntityDataTableSource_getRow_closure3(t1, _this, entity), type$.legacy_DataCell)); return new L.DataRow0(_null, t5, t3, t6); } }; D.EntityDataTableSource_getRow_closure.prototype = { call$1: function(field) { var _null = null; return new L.DataCell0(T.SizedBox$(_null, _null, _null), _null, _null); }, $signature: 560 }; D.EntityDataTableSource_getRow_closure0.prototype = { call$1: function(value) { return this.$this.onTap.call$1(this.entity); }, $signature: 12 }; D.EntityDataTableSource_getRow_closure1.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.entity], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; D.EntityDataTableSource_getRow_closure2.prototype = { call$0: function() { return this.$this.onTap.call$1(this.entity); }, $signature: 9 }; D.EntityDataTableSource_getRow_closure3.prototype = { call$1: function(field) { var t1 = this.$this; return new L.DataCell0(t1.entityPresenter.getField$2$context$field(t1.context, field), new D.EntityDataTableSource_getRow__closure(t1, this.entity), this._box_0.backgroundColor); }, $signature: 560 }; D.EntityDataTableSource_getRow__closure.prototype = { call$0: function() { return this.$this.onTap.call$1(this.entity); }, $signature: 9 }; S.EntityList.prototype = { createState$0: function() { return new S._EntityListState(C._StateLifecycle_0); }, onRefreshed$1: function(arg0) { return this.onRefreshed.call$1(arg0); }, onSortColumn$1: function(arg0) { return this.onSortColumn.call$1(arg0); }, itemBuilder$2: function(arg0, arg1) { return this.itemBuilder.call$2(arg0, arg1); }, onClearMultiselect$0: function() { return this.onClearMultiselect.call$0(); } }; S._EntityListState.prototype = { initState$0: function() { var t1, entityType, state, entityList, entityMap, entityState, t2, t3, entityUIState, selectedIndex, rowsPerPage, _this = this; _this.super$State$initState(); t1 = _this._widget; entityType = t1.entityType; state = t1.state; entityList = t1.entityList; entityMap = state.getEntityMap$1(entityType); entityState = state.getUIState$1(entityType); t1 = _this._framework$_element; t1.toString; t2 = entityState.get$editingId(); t3 = _this._widget.tableColumns; _this.dataTableSource = new D.EntityDataTableSource(entityType, t2, t1, J.toList$0$ax(entityList), _this._widget.presenter, entityMap, t3, new S._EntityListState_initState_closure(_this), new P.LinkedList(type$.LinkedList__ListenerEntry)); entityUIState = state.getUIState$1(entityType); selectedIndex = J.indexOf$1$asx(_this._widget.entityList, entityUIState.get$selectedId()); rowsPerPage = state.prefState.rowsPerPage; if (selectedIndex >= 0) _this._entity_list$_firstRowIndex = C.JSNumber_methods.floor$0(selectedIndex / rowsPerPage) * rowsPerPage; }, didUpdateWidget$1: function(oldWidget) { var t1, state, uiState, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); t1 = _this._widget; state = t1.state; uiState = state.getUIState$1(t1.entityType); _this.dataTableSource.editingId = uiState.get$editingId(); t1 = _this.dataTableSource; t2 = _this._widget; t1.entityList = t2.entityList; t1.entityMap = state.getEntityMap$1(t2.entityType); _this.dataTableSource.notifyListeners$0(); }, build$1: function(_, context) { var t3, isInMultiselect, entityList, entityMap, countSelected, isList, t4, t5, t6, t7, shouldSelectEntity, entityId, entities, firstEntity, actions, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, state = t2.state, uiState = state.uiState, entityType = t2.entityType, listUIState = state.getUIState$1(entityType).get$listUIState(); t2 = listUIState.selectedIds; t3 = t2 == null; isInMultiselect = !t3; entityList = _this._widget.entityList; entityMap = state.getEntityMap$1(entityType); countSelected = J.get$length$asx(t3 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : t2); isList = entityType.get$isSetting() || state.prefState.get$isModuleList(); t4 = state.userCompanyStates; t5 = uiState.selectedCompanyIndex; t4 = t4._list; t6 = J.getInterceptor$asx(t4); t7 = t6.$index(t4, t5).lastUpdated; if (t7 <= 0 && J.get$isEmpty$asx(entityList)) return new V.LoadingIndicator(_null, false, _null); shouldSelectEntity = state.shouldSelectEntity$2$entityList$entityType(entityList, entityType); if (shouldSelectEntity !== false) { if (shouldSelectEntity == null) entityId = state.getUIState$1(entityType).get$selectedId(); else { t7 = J.getInterceptor$asx(entityList); entityId = t7.get$isEmpty(entityList) ? _null : t7.get$first(entityList); } $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new S._EntityListState_build_closure(entityType, entityId)); } entities = t3 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_BaseEntity) : J.map$1$1$ax(t2._list, new S._EntityListState_build_closure0(entityMap), type$.legacy_BaseEntity).toList$0(0); firstEntity = entities.length === 0 ? _null : C.JSArray_methods.get$first(entities); if (firstEntity == null) t4 = _null; else { t7 = t6.$index(t4, t5).userCompany; t4 = firstEntity.getActions$4$client$includeEdit$multiselect$userCompany(type$.legacy_BelongsToClient._is(firstEntity) ? t6.$index(t4, t5).clientState.$get$1(0, firstEntity.get$clientId(firstEntity)) : _null, false, true, t7); } if (t4 == null) t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); t5 = H._arrayInstanceType(t4); actions = new H.WhereIterable(t4, new S._EntityListState_build_closure1(), t5._eval$1("WhereIterable<1>")); t4 = K.Theme_of(context).cardColor; t6 = isInMultiselect ? 50 : 0; t7 = P.Duration$(0, 0, 0, 500, 0, 0); t8 = isInMultiselect ? 1 : 0; t9 = P.Duration$(0, 0, 0, 500, 0, 0); t10 = type$.JSArray_legacy_Widget; t11 = H.setRuntimeTypeInfo([], t10); t12 = state.prefState; if (t12.moduleLayout === C.ModuleLayout_list || entityType.get$isSetting()) { t13 = K.Theme_of(context).accentColor; t14 = J.get$length$asx(entityList); t11.push(K.Checkbox$(t13, false, _null, C.MaterialTapTargetSize_1, new S._EntityListState_build_closure2(entityList, state, entityMap), false, t14 == J.get$length$asx(t3 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : t2))); } if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t5._eval$1("MappedIterable<1,OutlinedButton*>"); C.JSArray_methods.addAll$1(t11, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_4_0_4_0, L.Text$(isList ? "(" + H.S(countSelected) + ")" : C.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", H.S(countSelected)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), T.Expanded$(new T.Align(C.Alignment_1_0, _null, _null, K.OverflowView$flexible(new S._EntityListState_build_closure3(_this, t1, state, entities, actions), P.List_List$of(new H.MappedIterable(actions, new S._EntityListState_build_closure4(_this, t1, entities), t2), true, t2._eval$1("Iterable.E")), 8), _null), 1)], t10)); } else { t2 = T.SizedBox$(_null, _null, 16); t3 = T.Expanded$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", H.S(countSelected)), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t1 = t1.get$actions(t1); C.JSArray_methods.addAll$1(t11, H.setRuntimeTypeInfo([t2, t3, V.SaveCancelButtons$(true, entities.length !== 0, false, new S._EntityListState_build_closure5(_this), new S._EntityListState_build_closure6(_this, entities), t1)], t10)); } t1 = G.AnimatedContainer$(G.AnimatedOpacity$(false, T.Row$(t11, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Cubic_oKc, t9, t8), t4, C.Cubic_oKc, _null, t7, t6, _null, _null, C.EdgeInsets_10_0_10_0, _null); t2 = H.setRuntimeTypeInfo([new S._EntityListState_build_closure7(_this, isList, uiState, context, state, store, entityList, listUIState, entityMap, isInMultiselect, entityType).call$0()], t10); if (state.isLoading) t3 = D.getLayout(context) === C.AppLayout_mobile || !entityType.get$isSetting(); else t3 = false; if (!t3) if (state.isSaving) if (!entityType.get$isSetting()) t3 = !t12.isPreviewVisible && !uiState.get$isEditing(); else t3 = true; else t3 = false; else t3 = true; if (t3) t2.push(U.LinearProgressIndicator$()); return N.RefreshIndicator$(T.Column$(H.setRuntimeTypeInfo([new T.AppBorder(t1, true, _null, false, _null), T.Expanded$(T.Stack$(C.Alignment_0_m1, t2, C.Clip_1, C.StackFit_0, _null, _null), 1)], t10), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), new S._EntityListState_build_closure8(_this, context)); } }; S._EntityListState_initState_closure.prototype = { call$1: function(entity) { var t1 = this.$this._framework$_element; t1.toString; return M.selectEntity(t1, entity, false, false); }, $signature: 2100 }; S._EntityListState_build_closure.prototype = { call$1: function(duration) { M.viewEntityById(false, this.entityId, this.entityType, null, false, true); }, $signature: 45 }; S._EntityListState_build_closure7.prototype = { call$0: function() { var t1, t2, t3, t4, rowsPerPage, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, _this = this, _null = null; if (_this.isList) { t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t2 = _this.uiState.filterStack._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isEmpty(t2)) t4 = _null; else { t4 = t3.get$last(t2); t4 = t4.get$id(t4); } if (t4 != null && D.getLayout(_this.context) === C.AppLayout_mobile) { if (t3.get$isEmpty(t2)) t4 = _null; else { t4 = t3.get$last(t2); t4 = t4.get$id(t4); } t2 = t3.get$isEmpty(t2) ? _null : t3.get$last(t2).get$entityType(); t1.push(new N.ListFilterMessage(t4, t2, new S._EntityListState_build__closure(_this.state), new S._EntityListState_build__closure0(_this.store), false, _null)); } t2 = _this.entityList; t3 = J.getInterceptor$asx(t2); t1.push(new T.Flexible(1, C.FlexFit_1, t3.get$isEmpty(t2) ? new U.HelpText(L.Localizations_of(_this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$noRecordsFound(), _null) : X.ScrollableListViewBuilder$(new S._EntityListState_build__closure1(_this.$this, t2), t3.get$length(t2) + 2, C.EdgeInsets_0_20_0_20, new S._EntityListState_build__closure2(t2)), _null)); return T.Column$(t1, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } else { t1 = _this.$this; if (J.get$isEmpty$asx(t1._widget.tableColumns)) return T.SizedBox$(_null, _null, _null); t2 = _this.state; rowsPerPage = t2.prefState.rowsPerPage; t3 = _this.listUIState; t4 = J.get$hashCode$(t3.custom1Filters); t5 = J.get$hashCode$(t3.custom2Filters); t6 = J.get$hashCode$(t3.custom3Filters); t7 = J.get$hashCode$(t3.custom4Filters); t8 = J.get$hashCode$(t3.stateFilters); t9 = J.get$hashCode$(t3.statusFilters); t10 = C.JSInt_methods.get$hashCode(t3.filterClearedAt); t11 = J.get$hashCode$(t3.filter); t12 = t3.sortAscending; t13 = C.JSBool_methods.get$hashCode(t12); t14 = t3.sortField; t15 = C.JSString_methods.get$hashCode(t14); t16 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t17 = _this.uiState.filterStack._list; t18 = J.getInterceptor$asx(t17); if (t18.get$isEmpty(t17)) t19 = _null; else { t19 = t18.get$last(t17); t19 = t19.get$id(t19); } if (t19 != null && D.getLayout(_this.context) === C.AppLayout_mobile) { if (t18.get$isEmpty(t17)) t19 = _null; else { t19 = t18.get$last(t17); t19 = t19.get$id(t19); } t20 = t18.get$isEmpty(t17) ? _null : t18.get$last(t17).get$entityType(); t16.push(new N.ListFilterMessage(t19, t20, new S._EntityListState_build__closure3(t2), new S._EntityListState_build__closure4(_this.store), false, _null)); } if (t18.get$isEmpty(t17)) t19 = _null; else { t19 = t18.get$last(t17); t19 = t19.get$id(t19); } t19 = "__" + H.S(t19) + "_"; t4 = t19 + H.S(t18.get$isEmpty(t17) ? _null : t18.get$last(t17).get$entityType()) + "_" + ((t4 ^ t5 ^ t6 ^ t7 ^ t8 ^ t9 ^ t10 ^ t11 ^ t13 ^ t15) >>> 0) + "__"; t5 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataColumn_2); if (!_this.isInMultiselect) t5.push(new L.DataColumn0(T.SizedBox$(_null, _null, _null), _null)); C.JSArray_methods.addAll$1(t5, J.map$1$1$ax(t1._widget.tableColumns, new S._EntityListState_build__closure5(t1, _this.context, _this.entityType, t2), type$.legacy_DataColumn)); t2 = t1.dataTableSource; t6 = J.contains$1$asx(t1._widget.tableColumns, t14) ? J.indexOf$1$asx(t1._widget.tableColumns, t14) : 0; t16.push(T.Expanded$(E.SingleChildScrollView$(new T.Padding(C.EdgeInsets_0_16_0_16, new N.AppPaginatedDataTable(t5, t6, t12, new S._EntityListState_build__closure6(t1, _this.entityList, rowsPerPage, _this.entityMap, t3), t1._entity_list$_firstRowIndex, new S._EntityListState_build__closure7(t1), rowsPerPage, t2, new D.ValueKey(t4, type$.ValueKey_legacy_String)), _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), 1)); return T.Column$(t16, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }, $signature: 2101 }; S._EntityListState_build__closure.prototype = { call$1: function(_) { var t3, t1 = this.state.uiState.filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t3 = null; else { t3 = t2.get$last(t1); t3 = t3.get$id(t3); } return M.viewEntityById(false, t3, t2.get$isEmpty(t1) ? null : t2.get$last(t1).get$entityType(), null, false, true); }, $signature: 29 }; S._EntityListState_build__closure0.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ClearEntityFilter()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; S._EntityListState_build__closure2.prototype = { call$2: function(context, index) { var _null = null; return index === 0 || index === J.get$length$asx(this.entityList) ? T.SizedBox$(_null, _null, _null) : new G.ListDivider(_null); }, $signature: 155 }; S._EntityListState_build__closure1.prototype = { call$2: function(context, index) { var t1, _null = null; if (index === 0 || index === J.get$length$asx(this.entityList) + 1) return M.Container$(_null, _null, C.Clip_0, K.Theme_of(context).cardColor, _null, _null, _null, 25, _null, _null, _null, _null, _null, _null); else { t1 = this.$this._widget; t1.toString; return t1.itemBuilder$2(context, index - 1); } }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S._EntityListState_build__closure3.prototype = { call$1: function(_) { var t3, t1 = this.state.uiState.filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t3 = null; else { t3 = t2.get$last(t1); t3 = t3.get$id(t3); } M.viewEntityById(false, t3, t2.get$isEmpty(t1) ? null : t2.get$last(t1).get$entityType(), null, false, true); }, $signature: 14 }; S._EntityListState_build__closure4.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ClearEntityFilter()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._EntityListState_build__closure6.prototype = { call$1: function(value) { var _this = this, t1 = _this.$this, t2 = t1._entity_list$_firstRowIndex, t3 = _this.entityList, t4 = J.getInterceptor$asx(t3), t5 = t4.get$length(t3); t3 = J.map$1$1$ax(t4.sublist$2(t3, Math.min(H.checkNum(t2), t5 - 1), Math.min(t1._entity_list$_firstRowIndex + _this.rowsPerPage, H.checkNum(t4.get$length(t3)))), new S._EntityListState_build___closure(_this.entityMap), type$.legacy_BaseEntity).super$Iterable$where(0, new S._EntityListState_build___closure0(value, _this.listUIState)); M.handleEntitiesActions(P.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")), C.EntityAction_toggleMultiselect, false); }, $signature: 20 }; S._EntityListState_build___closure.prototype = { call$1: function(entityId) { return J.$index$asx(this.entityMap._map$_map, entityId); }, $signature: 381 }; S._EntityListState_build___closure0.prototype = { call$1: function(invoice) { var t1 = invoice.get$id(invoice), t2 = this.listUIState.selectedIds; t1 = t2 != null && J.contains$1$asx(t2._list, t1); return this.value !== t1; }, $signature: 194 }; S._EntityListState_build__closure5.prototype = { call$1: function(field) { var key, t1, t2, maxWidth, minWidth, _this = this, _null = null, label = L.Localizations_of(_this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(field); if (J.startsWith$1$s(field, "custom")) { key = C.JSString_methods.replaceFirst$2(field, "custom", A.toSnakeCase(_this.entityType.name)); t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; label = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.getCustomFieldLabel$1(key); } if (field === "description") { maxWidth = 600; minWidth = 200; } else { maxWidth = 120; minWidth = 40; } return new L.DataColumn0(M.Container$(_null, L.Text$(label, _null, _null, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), C.Clip_0, _null, new S.BoxConstraints(minWidth, maxWidth, 0, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null), new S._EntityListState_build___closure1(_this.$this, field)); }, $signature: 2104 }; S._EntityListState_build___closure1.prototype = { call$2: function(columnIndex, ascending) { this.$this._widget.onSortColumn$1(this.field); }, "call*": "call$2", $requiredArgCount: 2, $signature: 377 }; S._EntityListState_build__closure7.prototype = { call$1: function(row) { return this.$this._entity_list$_firstRowIndex = row; }, $signature: 2105 }; S._EntityListState_build_closure0.prototype = { call$1: function(entityId) { return J.$index$asx(this.entityMap._map$_map, entityId); }, $signature: 381 }; S._EntityListState_build_closure1.prototype = { call$1: function(action) { return action != null; }, $signature: 2106 }; S._EntityListState_build_closure8.prototype = { call$0: function() { return this.$this._widget.onRefreshed$1(this.context); }, $signature: 26 }; S._EntityListState_build_closure2.prototype = { call$1: function(value) { var t1 = this.entityList, t2 = J.getInterceptor$asx(t1), t3 = t2.get$length(t1), t4 = this.state.prefState.rowsPerPage; t4 = J.map$1$1$ax(t2.sublist$2(t1, 0, Math.min(H.checkNum(t3), t4)), new S._EntityListState_build__closure12(this.entityMap), type$.legacy_BaseEntity); M.handleEntitiesActions(P.List_List$of(t4, true, t4.$ti._eval$1("ListIterable.E")), C.EntityAction_toggleMultiselect, false); }, $signature: 20 }; S._EntityListState_build__closure12.prototype = { call$1: function(entityId) { return J.$index$asx(this.entityMap._map$_map, entityId); }, $signature: 381 }; S._EntityListState_build_closure4.prototype = { call$1: function(action) { var t1 = Q.getEntityActionIcon(action); return B.OutlinedButton$(new U.IconText(this.localization.lookup$1(H.S(action)), t1, null, null, null), new S._EntityListState_build__closure9(this.$this, this.entities, action)); }, $signature: 2108 }; S._EntityListState_build__closure9.prototype = { call$0: function() { M.handleEntitiesActions(this.entities, this.action, false); this.$this._widget.onClearMultiselect$0(); }, $signature: 1 }; S._EntityListState_build_closure3.prototype = { call$2: function(context, remaining) { var t3, _this = this, _null = null, t1 = _this.localization.get$more(), t2 = _this.state.prefState.enableDarkMode; t1 = L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2 ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t3 = T.SizedBox$(_null, _null, 4); return Z.PopupMenuButton$(new T.Padding(C.EdgeInsets_8_0_8_0, T.Row$(H.setRuntimeTypeInfo([t1, t3, L.Icon$(C.IconData_57496_MaterialIcons_null_false, t2 ? C.Color_4294967295 : C.Color_4278190080, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, new S._EntityListState_build__closure10(_this.actions, remaining), new S._EntityListState_build__closure11(_this.$this, _this.entities), C.EdgeInsets_8_8_8_8, _null, type$.legacy_EntityAction); }, $signature: 2109 }; S._EntityListState_build__closure11.prototype = { call$1: function(action) { M.handleEntitiesActions(this.entities, action, false); this.$this._widget.onClearMultiselect$0(); }, $signature: 344 }; S._EntityListState_build__closure10.prototype = { call$1: function(context) { var t2, t1 = this.actions; t1 = C.JSArray_methods.sublist$1(P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")), t1.get$length(t1) - this.remaining); t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem*>"); return P.List_List$of(new H.MappedListIterable(t1, new S._EntityListState_build___closure2(context), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 581 }; S._EntityListState_build___closure2.prototype = { call$1: function(action) { var _null = null, t1 = this.context, t2 = L.Icon$(Q.getEntityActionIcon(action), K.Theme_of(t1).accentColor, _null), t3 = T.SizedBox$(_null, _null, 16); t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(J.toString$0$(action)); return Z.PopupMenuItem$(T.Row$(H.setRuntimeTypeInfo([t2, t3, L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), action, type$.legacy_EntityAction); }, $signature: 580 }; S._EntityListState_build_closure6.prototype = { call$1: function(context) { return this.$call$body$_EntityListState_build_closure(context); }, $call$body$_EntityListState_build_closure: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = new P._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new S._EntityListState_build__closure8($async$self.$this), type$.dynamic); $async$goto = 2; return P._asyncAwait(L.showEntityActionsDialog(new P._AsyncCompleter(t1, type$._AsyncCompleter_Null), $async$self.entities, true), $async$call$1); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; S._EntityListState_build__closure8.prototype = { call$1: function(_) { return this.$this._widget.onClearMultiselect$0(); }, $signature: 558 }; S._EntityListState_build_closure5.prototype = { call$1: function(_) { return this.$this._widget.onClearMultiselect$0(); }, $signature: 48 }; K.VariablesHelp.prototype = { createState$0: function() { return new K._VariablesHelpState(null, C._StateLifecycle_0); } }; K._VariablesHelpState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._widget.toString; _this._variables$_controller = U.TabController$(0, 4, _this); }, dispose$0: function(_) { this._variables$_controller.dispose$0(0); this.super$__VariablesHelpState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, _s7_ = "custom1", _s7_0 = "custom2", _s7_1 = "custom3", _s7_2 = "custom4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, company = J.$index$asx(t2._list, t3).userCompany.company; t3 = _this._variables$_controller; t2 = type$.JSArray_legacy_Widget; t1 = H.setRuntimeTypeInfo([E.Tab$(L.Text$(_this._widget.showInvoiceAsQuote ? t1.get$quote() : t1.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), E.Tab$(L.Text$(t1.get$client(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), E.Tab$(L.Text$(t1.get$contact(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), E.Tab$(L.Text$(t1.get$company(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t2); _this._widget.toString; t4 = _this._variables$_controller; t5 = type$.JSArray_legacy_String; t6 = H.setRuntimeTypeInfo(["view_button", "view_url", "payment_button", "payment_url", "created_by_user", "assigned_to_user"], t5); if (_this._widget.showInvoiceAsQuote) C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["amount", "discount", "date", "valid_until", "po_number", "public_notes", "exchange_rate", "number", "terms", "footer"], t5)); else C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["amount", "discount", "balance", "date", "due_date", "po_number", "public_notes", "exchange_rate", "number", "terms", "footer"], t5)); if (company.getCustomFieldLabel$1("invoice1").length !== 0) t6.push(_s7_); if (company.getCustomFieldLabel$1("invoice2").length !== 0) t6.push(_s7_0); if (company.getCustomFieldLabel$1("invoice3").length !== 0) t6.push(_s7_1); if (company.getCustomFieldLabel$1("invoice4").length !== 0) t6.push(_s7_2); if (company.getCustomFieldLabel$1("surcharge1").length !== 0) t6.push("custom_surcharge1"); if (company.getCustomFieldLabel$1("surcharge2").length !== 0) t6.push("custom_surcharge2"); if (company.getCustomFieldLabel$1("surcharge3").length !== 0) t6.push("custom_surcharge3"); if (company.getCustomFieldLabel$1("surcharge4").length !== 0) t6.push("custom_surcharge4"); t7 = H.setRuntimeTypeInfo(["name", "public_notes", "vat_number", "address1", "address2", "city", "state", "postal_code", "country", "shipping_address1", "shipping_address2", "shipping_city", "shipping_state", "shipping_postal_code", "shipping_country", "phone", "credit_balance", "id_number"], t5); if (company.getCustomFieldLabel$1("client1").length !== 0) t7.push(_s7_); if (company.getCustomFieldLabel$1("client2").length !== 0) t7.push(_s7_0); if (company.getCustomFieldLabel$1("client3").length !== 0) t7.push(_s7_1); if (company.getCustomFieldLabel$1("client4").length !== 0) t7.push(_s7_2); t8 = type$.MappedListIterable_of_legacy_String_and_legacy_String; t9 = t8._eval$1("ListIterable.E"); t7 = P.List_List$of(new H.MappedListIterable(t7, new K._VariablesHelpState_build_closure(), t8), true, t9); t10 = H.setRuntimeTypeInfo(["first_name", "last_name", "email", "phone"], t5); if (company.getCustomFieldLabel$1("contact1").length !== 0) t10.push(_s7_); if (company.getCustomFieldLabel$1("contact2").length !== 0) t10.push(_s7_0); if (company.getCustomFieldLabel$1("contact3").length !== 0) t10.push(_s7_1); if (company.getCustomFieldLabel$1("contact4").length !== 0) t10.push(_s7_2); t10 = P.List_List$of(new H.MappedListIterable(t10, new K._VariablesHelpState_build_closure0(), t8), true, t9); t5 = H.setRuntimeTypeInfo(["name", "country", "address1", "address2", "id_number", "email", "phone", "state", "vat_number", "website"], t5); if (company.getCustomFieldLabel$1("company1").length !== 0) t5.push(_s7_); if (company.getCustomFieldLabel$1("company2").length !== 0) t5.push(_s7_0); if (company.getCustomFieldLabel$1("company3").length !== 0) t5.push(_s7_1); if (company.getCustomFieldLabel$1("company4").length !== 0) t5.push(_s7_2); t5 = H.setRuntimeTypeInfo([new K._VariableGrid(t6, _null), new K._VariableGrid(t7, _null), new K._VariableGrid(t10, _null), new K._VariableGrid(P.List_List$of(new H.MappedListIterable(t5, new K._VariablesHelpState_build_closure1(), t8), true, t9), _null)], t2); _this._widget.toString; return Y.FormCard$(_null, H.setRuntimeTypeInfo([new R.AppTabBar(t1, t3, true, _null, _null), T.SizedBox$(E.TabBarView$(t5, t4, _null), 400, _null)], t2), _null, 4, false, _null, false, _null); } }; K._VariablesHelpState_build_closure.prototype = { call$1: function(field) { return "client." + H.S(field); }, $signature: 15 }; K._VariablesHelpState_build_closure0.prototype = { call$1: function(field) { return "contact." + H.S(field); }, $signature: 15 }; K._VariablesHelpState_build_closure1.prototype = { call$1: function(field) { return "company." + H.S(field); }, $signature: 15 }; K._VariableGrid.prototype = { build$1: function(_, context) { C.JSArray_methods.sort$1(this.fields, new K._VariableGrid_build_closure()); return new T.Padding(C.EdgeInsets_0_16_0_0, new A.LayoutBuilder(new K._VariableGrid_build_closure0(this), null), null); } }; K._VariableGrid_build_closure.prototype = { call$2: function(a, b) { return J.compareTo$1$ns(a, b); }, $signature: 18 }; K._VariableGrid_build_closure0.prototype = { call$2: function(context, constraints) { var t1 = this.$this.fields, t2 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TextButton*>"); return B.GridView$count((constraints.maxWidth / 2 - 8) / 50, P.List_List$of(new H.MappedListIterable(t1, new K._VariableGrid_build__closure(context), t2), true, t2._eval$1("ListIterable.E")), 2, 0, 0, new V.EdgeInsets(6, 6, 6, 6), null, true, true); }, $signature: 343 }; K._VariableGrid_build__closure.prototype = { call$1: function(field) { var _null = null; return U.TextButton$(false, new T.Align(C.Alignment_m1_0, _null, _null, L.Text$("$" + H.S(field), _null, 1, C.TextOverflow_2, _null, _null, _null, C.TextAlign_4, _null, _null), _null), _null, new K._VariableGrid_build___closure(field, this.context), _null); }, $signature: 2113 }; K._VariableGrid_build___closure.prototype = { call$0: function() { var t1 = this.field; T.Clipboard_setData(new T.ClipboardData("$" + H.S(t1))); M.showToast(C.JSString_methods.replaceFirst$2(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$copiedToClipboard(), ":value", "$" + H.S(t1))); }, $signature: 1 }; K.__VariablesHelpState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; G.ViewScaffold.prototype = { build$1: function(_, context) { var t5, userCompany, t6, isSettings, title, t7, presenter, t8, t9, leading, t10, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); userCompany = t5.$index(t2, t4).userCompany; t6 = _this.entity; isSettings = t6.get$entityType().get$isSetting(); if (t6.get$isNew()) title = ""; else { t7 = t6.get$listDisplayName(); title = (t7 == null ? "" : t7).length === 0 ? t1.get$pending(t1) : t6.get$listDisplayName(); if (!_this.isFilter) { presenter = new Q.EntityPresenter(); presenter.entity = t6; presenter.context = context; title = presenter.title$1$isShort(0, true); } } if (D.getLayout(context) === C.AppLayout_desktop) { if (_this.isFilter) { t7 = t6.get$entityType(); t8 = t3.filterStack._list; t9 = J.getInterceptor$asx(t8); t7 = t7 == (t9.get$isEmpty(t8) ? _null : t9.get$last(t8).get$entityType()); } else t7 = false; if (t7) leading = J.get$length$asx(t3.filterStack._list) > 1 ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57490_MaterialIcons_null_true, _null, _null), 24, new G.ViewScaffold_build_closure(store), C.EdgeInsets_8_8_8_8, _null, _null) : B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new G.ViewScaffold_build_closure0(store), C.EdgeInsets_8_8_8_8, _null, _null); else if (J.get$isNotEmpty$asx(t3.previewStack._list)) { t3 = t1.get$back(t1); leading = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57490_MaterialIcons_null_true, _null, _null), 24, new G.ViewScaffold_build_closure1(store), C.EdgeInsets_8_8_8_8, t3, _null); } else leading = D.getLayout(context) === C.AppLayout_desktop && !t6.get$entityType().get$isSetting() ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new G.ViewScaffold_build_closure2(store), C.EdgeInsets_8_8_8_8, _null, _null) : _null; } else leading = _null; t3 = K.Theme_of(context).cardColor; t7 = D.getLayout(context); t8 = L.Text$(title, _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = type$.JSArray_legacy_Widget; if (t6.get$isNew()) t2 = H.setRuntimeTypeInfo([], t9); else { t9 = H.setRuntimeTypeInfo([], t9); if (isSettings && D.getLayout(context) === C.AppLayout_desktop && !_this.isFilter) t9.push(U.TextButton$(false, L.Text$(t1.get$back(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _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, new G.ViewScaffold_build_closure3(_this, store, state), _null)); if (userCompany.canEditEntity$1(t6)) t9.push(new T.Builder(new G.ViewScaffold_build_closure4(_this, state, t1), _null)); t10 = state.isSaving && !_this.isFilter; if (type$.legacy_BelongsToClient._is(t6)) { t2 = t5.$index(t2, t4).clientState.map; t4 = t6.get$clientId(t6); t4 = J.$index$asx(t2._map$_map, t4); t2 = t4; } else t2 = _null; t9.push(new D.ViewActionMenuButton(t6, t6.getActions$2$client$userCompany(t2, userCompany), new G.ViewScaffold_build_closure5(_this), t10, _null)); t2 = t9; } t8 = E.AppBar$(t2, _null, t7 === C.AppLayout_mobile, _null, _null, _this.appBarBottom, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, t8, _null, _null, _null, 1, _null); if (t6.get$isNew()) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "no_record_selected"); t1 = new Q.BlankScreen(t1 == null ? "" : t1, _null); } else t1 = _this.body; return new F.WillPopScope(U.FocusTraversalGroup$(M.Scaffold$(t8, t3, t1, _null, _null, _null, _null, _null), _null), new G.ViewScaffold_build_closure6(), _null); }, get$body: function(receiver) { return this.body; } }; G.ViewScaffold_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.PopFilterStack()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; G.ViewScaffold_build_closure0.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.ViewScaffold_build_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.PopPreviewStack()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; G.ViewScaffold_build_closure2.prototype = { call$0: function() { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.ViewScaffold_build_closure6.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; G.ViewScaffold_build_closure3.prototype = { call$0: function() { var t1 = this.$this.onBackPressed; if (t1 != null) t1.call$0(); else { t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 1 }; G.ViewScaffold_build_closure4.prototype = { call$1: function(context) { var t2, t3, isDisabled, _null = null, t1 = this.state.uiState; if (t1.get$isEditing()) { t2 = t1.get$mainRoute(); t1 = t1.filterStack._list; t3 = J.getInterceptor$asx(t1); isDisabled = t2 === J.toString$0$(t3.get$isEmpty(t1) ? _null : t3.get$last(t1).get$entityType()); } else isDisabled = false; t1 = this.localization.get$edit(); return new X.AppTextButton(t1, isDisabled ? _null : new G.ViewScaffold_build__closure(this.$this, context), true, _null, _null); }, $signature: 273 }; G.ViewScaffold_build__closure.prototype = { call$0: function() { M.editEntity(null, this.context, this.$this.entity, null); }, $signature: 1 }; G.ViewScaffold_build_closure5.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.entity], type$.JSArray_legacy_BaseEntity), action, true); return null; }, $signature: 57 }; A.WebSessionTimeout.prototype = { createState$0: function() { return new A._WebSessionTimeoutState(C._StateLifecycle_0); } }; A._WebSessionTimeoutState.prototype = { initState$0: function() { this.super$State$initState(); this._web_session_timeout$_timer = P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 0, 1, 0), new A._WebSessionTimeoutState_initState_closure(this)); }, dispose$0: function(_) { var t1 = this._web_session_timeout$_timer; if (t1 != null) t1.cancel$0(0); this._web_session_timeout$_timer = null; this.super$State$dispose(0); }, build$1: function(_, context) { return this._widget.child; } }; A._WebSessionTimeoutState_initState_closure.prototype = { call$1: function(timer) { var store, state, t2, t3, sessionTimeout, t1 = this.$this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); state = store.get$_store$_state(); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); sessionTimeout = t3.$index(t1, t2).userCompany.company.sessionTimeout; if (sessionTimeout === 0) return; if (Date.now() - t3.$index(t1, t2).lastUpdated > sessionTimeout) J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.UserLogout()); }, $signature: 308 }; B.WebSocketRefresh.prototype = { createState$0: function() { return new B._WebSocketRefreshState(C._StateLifecycle_0); } }; B._WebSocketRefreshState.prototype = { didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); return; }, build$1: function(_, context) { return this._widget.child; } }; B.InitScreen.prototype = { build$1: function(_, context) { return O.StoreBuilder$(new B.InitScreen_build_closure(), new B.InitScreen_build_closure0(context), type$.legacy_AppState); } }; B.InitScreen_build_closure0.prototype = { call$1: function(store) { return J.$index$asx(store.get$_dispatchers(), 0).call$1(new B.LoadStateRequest(this.context)); }, $signature: 2114 }; B.InitScreen_build_closure.prototype = { call$2: function(context, store) { var _null = null; return M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([T.Expanded$(T.Center$(U.Image$asset("assets/images/icon.png", _null, _null), _null, _null), 1), T.SizedBox$(U.LinearProgressIndicator$(), 4, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2115 }; Z.LockScreen.prototype = { build$1: function(_, context) { var t4, t5, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = L.Icon$(C._MdiIconData_wMy, C.Map_HFpTk.$index(0, 400), 24), t3 = T.SizedBox$(_null, _null, 12); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "locked"); if (t4 == null) t4 = ""; t5 = type$.JSArray_legacy_Widget; t4 = T.Row$(H.setRuntimeTypeInfo([t2, t3, L.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Map_HFpTk.$index(0, 400), _null, _null, _null, _null, _null, _null, _null, _null, 32, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "authenticate"); return M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([t4, D.ElevatedButton$(L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), this.onAuthenticatePressed, _null)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_4, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, C.MaterialColor_Map_HFpTk_4288585374, 0, _null, _null, _null, _null, C.MaterialType_0); } }; Y.LoginView.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new Y._LoginState(new N.LabeledGlobalKey("_login", type$.LabeledGlobalKey_legacy_FormState), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new N.RoundedLoadingButtonController(), C._StateLifecycle_0); } }; Y._LoginState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget; t1 = !t1.viewModel.authState.get$isHosted(); _this._isSelfHosted = t1; if (t1) { _this._emailLogin = true; _this._createAccount = false; } }, didChangeDependencies$0: function() { var _this = this, t1 = _this._urlController; t1.set$text(0, "https://demo.invoiceninja.com"); _this._secretController.set$text(0, ""); _this._login_view$_emailController.set$text(0, "demo@invoiceninja.com"); _this._login_view$_passwordController.set$text(0, "Password0"); _this._login_view$_firstNameController.set$text(0, "TEST"); _this._login_view$_lastNameController.set$text(0, "TEST"); _this._emailLogin = _this._termsChecked = _this._privacyChecked = true; _this._createAccount = false; if (t1._change_notifier$_value.text.length === 0) t1.set$text(0, _this._widget.viewModel.authState.url); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._login_view$_firstNameController.ChangeNotifier__listeners = null; _this._login_view$_lastNameController.ChangeNotifier__listeners = null; _this._login_view$_emailController.ChangeNotifier__listeners = null; _this._login_view$_passwordController.ChangeNotifier__listeners = null; _this._urlController.ChangeNotifier__listeners = null; _this._secretController.ChangeNotifier__listeners = null; _this._oneTimePasswordController.ChangeNotifier__listeners = null; _this._tokenController.ChangeNotifier__listeners = null; _this.super$State$dispose(0); }, _submitForm$0: function() { var _this = this; _this._buttonController._startListener$0(); if (_this._createAccount) _this._submitSignUpForm$0(); else _this._submitLoginForm$0(); }, _submitSignUpForm$0: function() { var viewModel, t2, completer, t3, _this = this, isValid = _this._login_view$_formKey.get$currentState().validate$0(), t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); viewModel = _this._widget.viewModel; _this.setState$1(new Y._LoginState__submitSignUpForm_closure(_this, isValid)); if (!isValid) { _this._buttonController._resetListener$0(); return; } if (_this._createAccount) t2 = !_this._termsChecked || !_this._privacyChecked; else t2 = false; if (t2) { _this._buttonController._resetListener$0(); t2 = _this._framework$_element; t2.toString; E.showDialog(true, new Y._LoginState__submitSignUpForm_closure0(_this, t1), t2, null, true, type$.legacy_AlertDialog); return; } t1 = new P._Future($.Zone__current, type$._Future_Null); completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_Null); t1.then$1$1(0, new Y._LoginState__submitSignUpForm_closure1(_this), type$.Null).catchError$1(new Y._LoginState__submitSignUpForm_closure2(_this)); t1 = _this._emailLogin; t2 = _this._framework$_element; if (t1) { t2.toString; t1 = _this._login_view$_emailController._change_notifier$_value.text; t3 = _this._login_view$_passwordController._change_notifier$_value.text; viewModel.onSignUpPressed.call$4$email$password(t2, completer, t1, t3); } else { t2.toString; viewModel.onGoogleSignUpPressed.call$2(t2, completer); } }, _submitLoginForm$0: function() { var t1, completer, authState, url, t2, t3, t4, t5, _this = this, _s28_ = "https://staging.invoicing.co", isValid = _this._login_view$_formKey.get$currentState().validate$0(), viewModel = _this._widget.viewModel; _this.setState$1(new Y._LoginState__submitLoginForm_closure(_this, isValid)); if (!isValid) { _this._buttonController._resetListener$0(); return; } t1 = new P._Future($.Zone__current, type$._Future_Null); completer = new P._AsyncCompleter(t1, type$._AsyncCompleter_Null); t1.then$1$1(0, new Y._LoginState__submitLoginForm_closure0(_this), type$.Null).catchError$1(new Y._LoginState__submitLoginForm_closure1(_this)); authState = _this._widget.viewModel.authState; if (_this._isSelfHosted) url = _this._urlController._change_notifier$_value.text; else url = Y.cleanApiUrl(authState.url) === _s28_ ? _s28_ : "https://invoicing.co"; if (_this._emailLogin) { t1 = _this._recoverPassword; t2 = _this._framework$_element; t3 = _this._login_view$_emailController._change_notifier$_value; if (t1) { t2.toString; t1 = t3.text; t3 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; viewModel.onRecoverPressed.call$5$email$secret$url(t2, completer, t1, t3, url); } else { t2.toString; t1 = t3.text; t3 = _this._login_view$_passwordController._change_notifier$_value.text; t4 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t5 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onLoginPressed.call$7$email$oneTimePassword$password$secret$url(t2, completer, t1, t5, t3, t4, url); } } else { t1 = _this._framework$_element; t1.toString; t2 = _this._isSelfHosted ? _this._secretController._change_notifier$_value.text : ""; t3 = _this._oneTimePasswordController._change_notifier$_value.text; viewModel.onGoogleLoginPressed.call$5$oneTimePassword$secret$url(t1, completer, t3, t2, url); } }, build$1: function(_, context) { var t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, _s7_ = "#2F7DC3", _s15_ = "select_platform", _s2_ = "en", _s13_ = "select_method", _s12_ = "check_status", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), platform = D.getNativePlatform(), viewModel = _this._widget.viewModel, state = viewModel.state, aboutTextStyle = K.Theme_of(context).textTheme.bodyText2, linkStyle = aboutTextStyle.copyWith$1$color(E.convertHexStringToColor(_s7_)), horizontalPadding = D.calculateLayout(context) === C.AppLayout_desktop ? 40 : 16, t2 = M.Container$(_null, _null, C.Clip_0, state.get$accentColor(), _null, _null, _null, 24, _null, _null, _null, _null, _null, 1 / 0), t3 = U.Image$asset(state.prefState.enableDarkMode ? "assets/images/logo_dark.png" : "assets/images/logo_light.png", 50, _null), t4 = D.isApple() ? _null : new Y._LoginState_build_closure(), t5 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([t2, new T.Padding(new V.EdgeInsets(0, 25, 0, 25), T.Center$(R.InkWell$(false, _null, true, t3, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure0(_this), t4, _null, _null, _null, _null, _null), _null, _null), _null)], t5); if (_this._tokenLogin) { t2 = D.calculateLayout(context); t4.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, false, _this._tokenController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$token(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), new D.AppButton(_null, _null, t1.get$submit(t1).toUpperCase(), new Y._LoginState_build_closure1(_this, viewModel, context), _null, _null)], t5), _null, 4, t2 !== C.AppLayout_mobile, _null, false, _null)); } t2 = P.Duration$(0, 0, 0, 500, 0, 0); t3 = viewModel.authState.isAuthenticated ? 0 : 1; t6 = D.calculateLayout(context); t7 = H.setRuntimeTypeInfo([], t5); if (!D.isApple()) t8 = state.authState.get$isHosted(); else t8 = false; if (t8) { t8 = _this._createAccount ? state.get$accentColor() : C.Color_0; t9 = t1.localeCode; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t9), "sign_up"); if (t10 == null) t10 = ""; t11 = K.Theme_of(context).textTheme; t12 = _this._createAccount ? C.Color_4294967295 : _null; t8 = T.Expanded$(M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, T.Center$(new T.Padding(C.EdgeInsets_16_16_16_16, L.Text$(t10, _null, _null, _null, _null, _null, t11.headline6.copyWith$3$color$fontSize$fontWeight(t12, 18, C.FontWeight_5), _null, _null, _null), _null), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure2(_this), _null, _null, _null, _null, _null), C.Clip_0, t8, 0, _null, _null, _null, _null, C.MaterialType_0), 1); t10 = _this._createAccount ? C.Color_0 : state.get$accentColor(); t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t9), "login"); if (t9 == null) t9 = ""; t11 = K.Theme_of(context).textTheme; t12 = _this._createAccount ? _null : C.Color_4294967295; t7.push(T.Row$(H.setRuntimeTypeInfo([t8, T.Expanded$(M.Material$(C.Duration_200000, true, _null, R.InkWell$(false, _null, true, T.Center$(new T.Padding(C.EdgeInsets_16_16_16_16, L.Text$(t9, _null, _null, _null, _null, _null, t11.headline6.copyWith$3$color$fontSize$fontWeight(t12, 18, C.FontWeight_5), _null, _null, _null), _null), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure3(_this), _null, _null, _null, _null, _null), C.Clip_0, t10, 0, _null, _null, _null, _null, C.MaterialType_0), 1)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); } t7.push(T.SizedBox$(_null, 20, _null)); if (!_this._recoverPassword) { t8 = H.setRuntimeTypeInfo([], t5); if (!_this._createAccount && true) { t9 = t1.localeCode; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t9), _s15_); if (t10 == null) t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s15_); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t9), "hosted"); if (t11 == null) t11 = ""; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t9), "selfhosted"); t9 = H.setRuntimeTypeInfo([t11, t9 == null ? "" : t9], type$.JSArray_legacy_String); t11 = _this._isSelfHosted ? 1 : 0; C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([new Y.RuledText(t10, _null), new Z.AppToggleButtons(t9, t11, new Y._LoginState_build_closure4(_this), _null)], t5)); } if (!_this._isSelfHosted && !_this._hideGoogle) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s13_); if (t9 == null) t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s13_); if (D.calculateLayout(context) === C.AppLayout_mobile) t10 = H.setRuntimeTypeInfo(["Google", t1.get$email()], type$.JSArray_legacy_String); else { t10 = _this._createAccount ? t1.get$googleSignUp() : t1.get$googleSignIn(); t10 = H.setRuntimeTypeInfo([t10, _this._createAccount ? t1.get$emailSignUp() : t1.get$emailSignIn()], type$.JSArray_legacy_String); } t11 = _this._emailLogin ? 1 : 0; C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([new Y.RuledText(t9, _null), new Z.AppToggleButtons(t10, t11, new Y._LoginState_build_closure5(_this), _null)], t5)); } C.JSArray_methods.addAll$1(t7, t8); } t8 = H.setRuntimeTypeInfo([], t5); if (_this._emailLogin) { t9 = t1.get$email(); t10 = _this._login_view$_autoValidate; t8.push(S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["email"], type$.JSArray_legacy_String), true, t10, _this._login_view$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_5_null_null, t9, _null, _null, false, _null, _null, new Y._LoginState_build_closure6(_this), true, _null, _null, C.TextAlign_4, new Y._LoginState_build_closure7(t1))); } if (_this._emailLogin && !_this._recoverPassword) t8.push(new S.PasswordFormField(_this._login_view$_passwordController, new Y._LoginState_build_closure8(_this), false, _this._createAccount, _null, _null)); if (!_this._createAccount && !_this._recoverPassword) { t9 = t1.get$oneTimePassword() + " (" + t1.get$optional() + ")"; t8.push(S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["oneTimeCode"], type$.JSArray_legacy_String), false, false, _this._oneTimePasswordController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t9, _null, _null, false, _null, _null, new Y._LoginState_build_closure9(_this), true, _null, _null, C.TextAlign_4, _null)); } if (_this._isSelfHosted && !_this._recoverPassword) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "secret"); t9 = (t9 == null ? "" : t9) + " (" + t1.get$optional() + ")"; t8.push(new S.PasswordFormField(_this._secretController, new Y._LoginState_build_closure10(_this), _this._login_view$_autoValidate, true, t9, _null)); } if (_this._createAccount) { t9 = E.convertHexStringToColor(_s7_); t10 = _this._termsChecked; t11 = type$.JSArray_legacy_TextSpan; t10 = D.CheckboxListTile$(t9, _null, C.ListTileControlAffinity_0, _null, _null, new Y._LoginState_build_closure11(_this), T.RichText$(_null, _null, C.TextOverflow_0, true, _null, Q.TextSpan$(H.setRuntimeTypeInfo([Q.TextSpan$(_null, _null, aboutTextStyle, t1.get$iAgreeToThe() + " "), Z.LinkTextSpan$(linkStyle, t1.get$termsOfService(), "https://www.invoiceninja.com/terms")], t11), _null, _null, _null), C.TextAlign_4, _null, _null, 1, C.TextWidthBasis_0), t10); t9 = E.convertHexStringToColor(_s7_); t12 = _this._privacyChecked; t8.push(new T.Padding(new V.EdgeInsets(0, 10, 0, 0), T.Column$(H.setRuntimeTypeInfo([t10, D.CheckboxListTile$(t9, _null, C.ListTileControlAffinity_0, _null, _null, new Y._LoginState_build_closure12(_this), T.RichText$(_null, _null, C.TextOverflow_0, true, _null, Q.TextSpan$(H.setRuntimeTypeInfo([Q.TextSpan$(_null, _null, aboutTextStyle, t1.get$iAgreeToThe() + " "), Z.LinkTextSpan$(linkStyle, t1.get$privacyPolicy(), "https://www.invoiceninja.com/privacy-policy")], t11), _null, _null, _null), C.TextAlign_4, _null, _null, 1, C.TextWidthBasis_0), t12)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null)); } t7.push(new T.Padding(new V.EdgeInsets(horizontalPadding, 0, horizontalPadding, 0), T.Column$(t8, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null)); t7 = H.setRuntimeTypeInfo([T.Column$(t7, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], t5); t8 = _this._loginError; if (t8.length !== 0 && !C.JSString_methods.contains$1(t8, "OTP_REQUIRED")) { t8 = T.Expanded$(O.SelectableText$(t8, A.TextStyle$(_null, _null, C.MaterialColor_Map_JNc9P_4294198070, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null)), 1); t9 = L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null); t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "copy_error"); if (t10 == null) t10 = ""; t7.push(M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([t8, B.IconButton$(C.Alignment_0_0, _null, _null, true, t9, 24, new Y._LoginState_build_closure13(_this), C.EdgeInsets_8_8_8_8, t10, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(horizontalPadding, 20, horizontalPadding, 0), _null, _null, _null)); } t8 = state.get$accentColor(); t9 = H.setRuntimeTypeInfo([], t5); if (_this._emailLogin) t9.push(L.Icon$(C.IconData_58307_MaterialIcons_null_false, C.Color_4294967295, _null)); else t9.push(new T.ClipOval(U.Image$asset("assets/images/google_logo.png", 30, 30), _null)); t9.push(T.SizedBox$(_null, _null, 10)); if (_this._recoverPassword) t10 = t1.get$recoverPassword(); else if (_this._createAccount) t10 = _this._emailLogin ? t1.get$emailSignUp() : t1.get$googleSignUp(); else t10 = _this._emailLogin ? t1.get$emailSignIn() : t1.get$googleSignIn(); t9.push(L.Text$(t10, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, 18, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)); t7.push(new T.Padding(new V.EdgeInsets(16, 20, 16, 10), new N.RoundedLoadingButton(_this._buttonController, new Y._LoginState_build_closure14(_this), T.Row$(t9, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null), t8, 50, 430, 4, _null), _null)); t7.push(T.SizedBox$(_null, 4, _null)); t8 = D.calculateLayout(context) === C.AppLayout_desktop ? C.Axis_0 : C.Axis_1; t9 = H.setRuntimeTypeInfo([], t5); if (!_this._createAccount && _this._emailLogin) { t10 = H.setRuntimeTypeInfo([], t5); if (!_this._recoverPassword) t10.push(L.Icon$(C._MdiIconData_wMy, _null, 16)); t10.push(T.SizedBox$(_null, _null, 8)); t10.push(L.Text$(_this._recoverPassword ? t1.get$cancel(t1) : t1.get$recoverPassword(), _null, _null, _null, _null, _null, _null, _null, _null, _null)); t9.push(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_14_14_14_14, T.Row$(t10, C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure15(_this), _null, _null, _null, _null, _null)); } if (!_this._recoverPassword && !_this._isSelfHosted) { t10 = L.Icon$(C.IconData_58729_MaterialIcons_null_false, _null, 16); t11 = T.SizedBox$(_null, _null, 8); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s12_); t9.push(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_14_14_14_14, T.Row$(H.setRuntimeTypeInfo([t10, t11, L.Text$(t12 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s12_) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure16(), _null, _null, _null, _null, _null)); } if (!_this._recoverPassword && true) { t10 = L.Icon$(D.getNativeAppIcon(platform), _null, 16); t11 = T.SizedBox$(_null, _null, 8); t12 = platform + " "; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "app"); t9.push(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_14_14_14_14, T.Row$(H.setRuntimeTypeInfo([t10, t11, L.Text$(t12 + H.S(t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), "app") : t1), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Y._LoginState_build_closure17(platform), _null, _null, _null, _null, _null)); } t7.push(T.Flex$(t9, C.CrossAxisAlignment_2, t8, _null, C.MainAxisAlignment_2, C.MainAxisSize_1, _null, _null, C.VerticalDirection_1)); t7.push(T.SizedBox$(_null, 16, _null)); t4.push(G.AnimatedOpacity$(false, A.Form$(false, new F.AutofillGroup(Y.FormCard$(_null, t7, _null, 20, t6 !== C.AppLayout_mobile, C.EdgeInsets_0_0_0_0, false, _null), _null), _this._login_view$_formKey), C.C__Linear, t2, t3)); return new X.ScrollableListView(t4, _null, _null, false, _null); } }; Y._LoginState__submitSignUpForm_closure.prototype = { call$0: function() { var t1 = this.$this; t1._login_view$_autoValidate = !this.isValid; t1._loginError = ""; }, $signature: 1 }; Y._LoginState__submitSignUpForm_closure0.prototype = { call$1: function(context) { var t3, _null = null, t1 = this.localization, t2 = L.Text$(!this.$this._termsChecked ? t1.get$termsOfService() : t1.get$privacyPolicy(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "please_agree_to_terms_and_privacy"); t1 = L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return E.AlertDialog$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_8_0, U.TextButton$(false, L.Text$(t3.get$close(t3), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new Y._LoginState__submitSignUpForm__closure1(context), _null), _null)], type$.JSArray_legacy_Widget), C.EdgeInsets_0_0_0_0, _null, t1, C.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 172 }; Y._LoginState__submitSignUpForm__closure1.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; Y._LoginState__submitSignUpForm_closure1.prototype = { call$1: function(_) { var t1 = this.$this; t1.setState$1(new Y._LoginState__submitSignUpForm__closure0(t1)); }, $signature: 3 }; Y._LoginState__submitSignUpForm__closure0.prototype = { call$0: function() { this.$this._loginError = ""; }, $signature: 1 }; Y._LoginState__submitSignUpForm_closure2.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new Y._LoginState__submitSignUpForm__closure(t1, error)); }, $signature: 3 }; Y._LoginState__submitSignUpForm__closure.prototype = { call$0: function() { var t1 = this.$this; t1._buttonController._resetListener$0(); t1._loginError = J.toString$0$(this.error); }, $signature: 1 }; Y._LoginState__submitLoginForm_closure.prototype = { call$0: function() { var t1 = this.$this; t1._login_view$_autoValidate = !this.isValid; t1._loginError = ""; }, $signature: 1 }; Y._LoginState__submitLoginForm_closure0.prototype = { call$1: function(_) { var t1 = this.$this; t1.setState$1(new Y._LoginState__submitLoginForm__closure0(t1)); }, $signature: 3 }; Y._LoginState__submitLoginForm__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._loginError = ""; if (t1._recoverPassword) { t1._recoverPassword = false; t1._buttonController._resetListener$0(); t1 = t1._framework$_element; t1.toString; E.showDialog(true, new Y._LoginState__submitLoginForm___closure(), t1, null, true, type$.legacy_MessageDialog); } }, $signature: 1 }; Y._LoginState__submitLoginForm___closure.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "recover_password_email_sent"); return E.MessageDialog$(t1 == null ? "" : t1, null, null, null); }, $signature: 314 }; Y._LoginState__submitLoginForm_closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new Y._LoginState__submitLoginForm__closure(t1, error)); }, $signature: 3 }; Y._LoginState__submitLoginForm__closure.prototype = { call$0: function() { var t1 = this.$this; t1._buttonController._resetListener$0(); t1._loginError = J.toString$0$(this.error); }, $signature: 1 }; Y._LoginState_build_closure.prototype = { call$0: function() { T.launch("https://invoiceninja.com", false, false); }, $signature: 1 }; Y._LoginState_build_closure0.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure6(t1)); }, $signature: 1 }; Y._LoginState_build__closure6.prototype = { call$0: function() { var t1 = this.$this; return t1._tokenLogin = !t1._tokenLogin; }, $signature: 19 }; Y._LoginState_build_closure1.prototype = { call$0: function() { this.viewModel.onTokenLoginPressed.call$3$token(this.context, new P._AsyncCompleter(new P._Future($.Zone__current, type$._Future_Null), type$._AsyncCompleter_Null), this.$this._tokenController._change_notifier$_value.text); }, $signature: 1 }; Y._LoginState_build_closure2.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure5(t1)); }, $signature: 1 }; Y._LoginState_build__closure5.prototype = { call$0: function() { var t1 = this.$this; t1._createAccount = true; t1._isSelfHosted = false; t1._loginError = ""; }, $signature: 1 }; Y._LoginState_build_closure3.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure4(t1)); }, $signature: 1 }; Y._LoginState_build__closure4.prototype = { call$0: function() { var t1 = this.$this; t1._createAccount = false; t1._loginError = ""; }, $signature: 1 }; Y._LoginState_build_closure4.prototype = { call$1: function(index) { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure3(t1, index)); }, $signature: 103 }; Y._LoginState_build__closure3.prototype = { call$0: function() { var t1 = this.$this, t2 = this.index === 1; t1._isSelfHosted = t2; t1._loginError = ""; if (t2) t1._emailLogin = true; }, $signature: 1 }; Y._LoginState_build_closure5.prototype = { call$1: function(index) { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure2(t1, index)); }, $signature: 103 }; Y._LoginState_build__closure2.prototype = { call$0: function() { var t1 = this.$this; t1._emailLogin = this.index === 1; t1._loginError = ""; }, $signature: 1 }; Y._LoginState_build_closure7.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; Y._LoginState_build_closure6.prototype = { call$1: function(_) { return this.$this._submitForm$0(); }, $signature: 29 }; Y._LoginState_build_closure8.prototype = { call$1: function(_) { return this.$this._submitForm$0(); }, $signature: 29 }; Y._LoginState_build_closure9.prototype = { call$1: function(_) { return this.$this._submitForm$0(); }, $signature: 29 }; Y._LoginState_build_closure10.prototype = { call$1: function(_) { return this.$this._submitForm$0(); }, $signature: 29 }; Y._LoginState_build_closure11.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new Y._LoginState_build__closure1(t1, value)); }, $signature: 34 }; Y._LoginState_build__closure1.prototype = { call$0: function() { return this.$this._termsChecked = this.value; }, $signature: 19 }; Y._LoginState_build_closure12.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new Y._LoginState_build__closure0(t1, value)); }, $signature: 34 }; Y._LoginState_build__closure0.prototype = { call$0: function() { return this.$this._privacyChecked = this.value; }, $signature: 19 }; Y._LoginState_build_closure13.prototype = { call$0: function() { T.Clipboard_setData(new T.ClipboardData(this.$this._loginError)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y._LoginState_build_closure14.prototype = { call$0: function() { return this.$this._submitForm$0(); }, $signature: 0 }; Y._LoginState_build_closure15.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new Y._LoginState_build__closure(t1)); }, $signature: 1 }; Y._LoginState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._recoverPassword = !t1._recoverPassword; }, $signature: 1 }; Y._LoginState_build_closure16.prototype = { call$0: function() { T.launch("https://status.invoiceninja.com", null, false); }, $signature: 1 }; Y._LoginState_build_closure17.prototype = { call$0: function() { return T.launch(D.getNativeAppUrl(this.platform), null, false); }, $signature: 30 }; Y.RuledText.prototype = { build$1: function(_, context) { var _null = null, horizontalPadding = D.calculateLayout(context) === C.AppLayout_desktop ? 40 : 16, t1 = C.JSNumber_methods.round$0(127.5); return new T.Padding(new V.EdgeInsets(horizontalPadding, 4, horizontalPadding, 14), T.Row$(H.setRuntimeTypeInfo([T.Expanded$(M.Container$(_null, _null, C.Clip_0, P.Color$fromARGB(t1, 158, 158, 158), _null, _null, _null, 1, _null, _null, _null, _null, _null, _null), 1), new T.Padding(C.EdgeInsets_16_0_16_0, L.Text$(this.text, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), T.Expanded$(M.Container$(_null, _null, C.Clip_0, P.Color$fromARGB(t1, 158, 158, 158), _null, _null, _null, 1, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null); }, text$0: function($receiver) { return this.text.call$0(); } }; G.LoginScreen.prototype = { build$1: function(_, context) { var _null = null; return M.Scaffold$(_null, _null, O.StoreConnector$(new G.LoginScreen_build_closure(), G.login_vm_LoginVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_LoginVM), _null, _null, _null, _null, _null); } }; G.LoginScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Y.LoginView(viewModel, null); }, $signature: 2116 }; G.LoginVM.prototype = {}; G.LoginVM_fromStore__handleLogin.prototype = { call$2$context$isSignUp: function(context, isSignUp) { var _null = null, layout = D.calculateLayout(context), moduleLayout = layout === C.AppLayout_desktop ? C.ModuleLayout_table : C.ModuleLayout_list, t1 = this.store, t2 = M.UpdateUserPreferences$(layout, _null, _null, _null, _null, _null, _null, _null, _null, isSignUp ? moduleLayout : _null, _null, _null, _null, _null, _null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new G.LoginVM_fromStore__handleLogin_closure(layout, isSignUp, t1)); }, call$0: function() { return this.call$2$context$isSignUp(null, false); }, call$1$context: function(context) { return this.call$2$context$isSignUp(context, false); }, $signature: 2117 }; G.LoginVM_fromStore__handleLogin_closure.prototype = { call$1: function(duration) { var t1, _this = this, _null = null; if (_this.layout === C.AppLayout_mobile) { if (_this.isSignUp) { t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, C.ModuleLayout_list, _null, _null, _null, _null, _null); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(t1); } J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, _null)); } else J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.ViewMainScreen()); }, $signature: 45 }; G.LoginVM_fromStore__formatApiUrl.prototype = { call$1: function(url) { url = J.trim$0$s(url); if (url.length === 0) url = "https://invoicing.co"; else if (!C.JSString_methods.startsWith$1(url, "http")) url = "https://" + url; return Y.formatApiUrl(url); }, $signature: 15 }; G.LoginVM_fromStore_closure3.prototype = { call$5$oneTimePassword$secret$url: function(context, completer, oneTimePassword, secret, url) { return this.$call$body$LoginVM_fromStore_closure0(context, completer, oneTimePassword, secret, url); }, call$2: function(context, completer) { return this.call$5$oneTimePassword$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure0: function(context, completer, oneTimePassword, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, exception, $async$exception; var $async$call$5$oneTimePassword$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; $async$goto = 6; return P._asyncAwait(B.GoogleOAuth_signOut(), $async$call$5$oneTimePassword$secret$url); case 6: // returning from await. $async$goto = 7; return P._asyncAwait(B.GoogleOAuth_signIn(new G.LoginVM_fromStore__closure0(completer, context, $async$self.store, $async$self._formatApiUrl, url, secret, oneTimePassword, $async$self._handleLogin), false), $async$call$5$oneTimePassword$secret$url); case 7: // returning from await. signedIn = $async$result; if (!signedIn) completer.completeError$1(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = H.unwrapException($async$exception); completer.completeError$1(error); P.print("## onGoogleLoginPressed: " + H.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, $signature: 2118 }; G.LoginVM_fromStore__closure0.prototype = { call$2: function(idToken, accessToken) { var t4, t5, _this = this, t1 = idToken.length === 0 || accessToken.length === 0, t2 = _this.completer, t3 = _this.context; if (t1) { B.GoogleOAuth_signOut(); t2.completeError$1(L.Localizations_of(t3, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else { t1 = _this._formatApiUrl.call$1(_this.url); t4 = J.trim$0$s(_this.secret); t5 = K.Theme_of(t3).platform === C.TargetPlatform_2 ? "ios" : "android"; J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new B.OAuthLoginRequest(t2, idToken, accessToken, t1, t4, t5)); t2.future.then$1$1(0, new G.LoginVM_fromStore___closure0(_this._handleLogin, t3), type$.void); } }, $signature: 51 }; G.LoginVM_fromStore___closure0.prototype = { call$1: function(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 219 }; G.LoginVM_fromStore_closure4.prototype = { call$2: function(context, completer) { return this.$call$body$LoginVM_fromStore_closure(context, completer); }, $call$body$LoginVM_fromStore_closure: function(context, completer) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, exception, $async$exception; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; $async$goto = 6; return P._asyncAwait(B.GoogleOAuth_signOut(), $async$call$2); case 6: // returning from await. $async$goto = 7; return P._asyncAwait(B.GoogleOAuth_signUp(new G.LoginVM_fromStore__closure(completer, context, $async$self.store, $async$self._handleLogin)), $async$call$2); case 7: // returning from await. signedIn = $async$result; if (!signedIn) completer.completeError$1(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = H.unwrapException($async$exception); completer.completeError$1(error); P.print("## onGoogleSignUpPressed: " + H.S(error)); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 2120 }; G.LoginVM_fromStore__closure.prototype = { call$2: function(idToken, accessToken) { var _this = this, t1 = idToken.length === 0 || accessToken.length === 0, t2 = _this.completer, t3 = _this.context; if (t1) { B.GoogleOAuth_signOut(); t2.completeError$1(L.Localizations_of(t3, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new B.OAuthSignUpRequest(t2, idToken, accessToken)); t2.future.then$1$1(0, new G.LoginVM_fromStore___closure(_this._handleLogin, t3), type$.void); } }, $signature: 51 }; G.LoginVM_fromStore___closure.prototype = { call$1: function(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 219 }; G.LoginVM_fromStore_closure1.prototype = { call$4$email$password: function(context, completer, email, password) { return this.$call$body$LoginVM_fromStore_closure2(context, completer, email, password); }, call$2: function(context, completer) { return this.call$4$email$password(context, completer, null, null); }, $call$body$LoginVM_fromStore_closure2: function(context, completer, email, password) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t1; var $async$call$4$email$password = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = J.trim$0$s(password); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserSignUpRequest(completer, t2, t3)); completer.future.then$1$1(0, new G.LoginVM_fromStore__closure1($async$self._handleLogin, context), type$.void); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$4$email$password, $async$completer); }, $signature: 2121 }; G.LoginVM_fromStore__closure1.prototype = { call$1: function(_) { return this._handleLogin.call$2$context$isSignUp(this.context, true); }, $signature: 219 }; G.LoginVM_fromStore_closure0.prototype = { call$5$email$secret$url: function(context, completer, email, secret, url) { return this.$call$body$LoginVM_fromStore_closure3(context, completer, email, secret, url); }, call$2: function(context, completer) { return this.call$5$email$secret$url(context, completer, null, null, null); }, $call$body$LoginVM_fromStore_closure3: function(context, completer, email, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t4, t1; var $async$call$5$email$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = $async$self._formatApiUrl.call$1(url); t4 = J.trim$0$s(secret); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.RecoverPasswordRequest(completer, t2, t3, t4)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$5$email$secret$url, $async$completer); }, $signature: 2122 }; G.LoginVM_fromStore_closure.prototype = { call$7$email$oneTimePassword$password$secret$url: function(context, completer, email, oneTimePassword, password, secret, url) { return this.$call$body$LoginVM_fromStore_closure4(context, completer, email, oneTimePassword, password, secret, url); }, call$2: function(context, completer) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, null, null, null, null, null); }, call$5$email$secret$url: function(context, completer, email, secret, url) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, email, null, null, secret, url); }, call$5$oneTimePassword$secret$url: function(context, completer, oneTimePassword, secret, url) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, null, oneTimePassword, null, secret, url); }, call$4$email$password: function(context, completer, email, password) { return this.call$7$email$oneTimePassword$password$secret$url(context, completer, email, null, password, null, null); }, $call$body$LoginVM_fromStore_closure4: function(context, completer, email, oneTimePassword, password, secret, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t3, t4, t5, t6, t7, t1; var $async$call$7$email$oneTimePassword$password$secret$url = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().isLoading) { // goto return $async$goto = 1; break; } t2 = J.trim$0$s(email); t3 = J.trim$0$s(password); t4 = $async$self._formatApiUrl.call$1(url); t5 = J.trim$0$s(secret); t6 = K.Theme_of(context).platform === C.TargetPlatform_2 ? "ios" : "android"; t7 = J.trim$0$s(oneTimePassword); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLoginRequest(completer, t2, t3, t4, t5, t6, t7)); completer.future.then$1$1(0, new G.LoginVM_fromStore__closure2($async$self._handleLogin, context), type$.void); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$7$email$oneTimePassword$password$secret$url, $async$completer); }, $signature: 2123 }; G.LoginVM_fromStore__closure2.prototype = { call$1: function(_) { return this._handleLogin.call$1$context(this.context); }, $signature: 219 }; G.LoginVM_fromStore_closure2.prototype = { call$3$token: function(context, completer, token) { return this.$call$body$LoginVM_fromStore_closure1(context, completer, token); }, call$2: function(context, completer) { return this.call$3$token(context, completer, null); }, $call$body$LoginVM_fromStore_closure1: function(context, completer, token) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), prefs, t1; var $async$call$3$token = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(V.SharedPreferences_getInstance(), $async$call$3$token); case 2: // returning from await. prefs = $async$result; t1 = C.C_Utf8Codec.get$encoder().convert$1(token); prefs._setValue$3("String", "checksum", C.C_Base64Codec.get$encoder().convert$1(t1)); prefs._setValue$3("String", "url", "https://invoicing.co"); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$3$token, $async$completer); }, $signature: 2124 }; V.ClientListItem.prototype = { build$1: function(_, context) { var textStyle, t2, t3, t4, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, clientUIState = uiState.clientUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.client.matchesFilterValue$1(t1) : _null, listUIState = clientUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); if (D.getLayout(context) === C.AppLayout_desktop) { t2 = _this.client.id; t2 = t2 === (uiState.get$isEditing() ? clientUIState.editing.id : clientUIState.selectedId); } else t2 = false; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t4._list, t3).userCompany, _this.client, new A.LayoutBuilder(new V.ClientListItem_build_closure(_this, t1 != null, listUIState, state, textStyle, filterMatch), _null), t2, true, true, _null); }, get$user: function() { return this.user; } }; V.ClientListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new V.ClientListItem_build__closure(t1), false, t1.isChecked), _null), _null); else { t2 = t1.client; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new V.ClientListItem_build__closure0(t1)); t2 = t4; } t3 = t1.client; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t3.displayName; t8 = H.setRuntimeTypeInfo([L.Text$(t8 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t4, _null, _null, _null)], t5); t9 = _this.filterMatch; if (t9 != null) t8.push(L.Text$(t9, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2, _null, _null, _null)); t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, T.Expanded$(T.Column$(t8, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.balance, context, t3.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, C.TextAlign_5, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new V.ClientListItem_build__closure1(t1, context), new V.ClientListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new V.ClientListItem_build__closure3(t1), false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.client; t5 = t4.displayName; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(t4.balance, context, t4.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t5 = t5 != null ? L.Text$(t5, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : L.Text$(t4.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new V.ClientListItem_build__closure4(t1, context), new V.ClientListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t5, new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); t1 = t3; } return t1; }, $signature: 97 }; V.ClientListItem_build__closure2.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.client, false, false); return t1; }, $signature: 0 }; V.ClientListItem_build__closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.client, false, true); return t1; }, $signature: 0 }; V.ClientListItem_build__closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; V.ClientListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.client], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; V.ClientListItem_build__closure5.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.client, false, false); return t1; }, $signature: 0 }; V.ClientListItem_build__closure4.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.client, false, true); return t1; }, $signature: 0 }; V.ClientListItem_build__closure3.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; Y.ClientListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.ClientListBuilder_build_closure(), Y.client_list_vm_ClientListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientListVM); } }; Y.ClientListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.clientList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_client, new Y.ClientListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new V.ClientPresenter(), t1, t3); }, $signature: 2126 }; Y.ClientListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, clientId = J.$index$asx(t1.clientList, index), client = J.$index$asx(t1.clientMap._map$_map, clientId), t2 = state.getUIState$1(C.EntityType_client).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = client.get$id(client); t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new V.ClientListItem(t4, client, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2127 }; Y.ClientListVM.prototype = {}; Y.ClientListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; Y.ClientListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Y.ClientListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortClients(field)); }, $signature: 5 }; Y.ClientListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ClearClientMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; S.ClientPdfView.prototype = { createState$0: function() { return new S._ClientPdfViewState(C.DateRange_thisQuarter, C._StateLifecycle_0); } }; S._ClientPdfViewState.prototype = { initState$0: function() { this.super$State$initState(); }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, loadPdf$0: function() { var _this = this; _this.setState$1(new S._ClientPdfViewState_loadPdf_closure(_this)); _this._loadPDF$0().then$1$1(0, new S._ClientPdfViewState_loadPdf_closure0(_this), type$.Null).catchError$1(new S._ClientPdfViewState_loadPdf_closure1(_this)); }, _loadPDF$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_Response), $async$returnValue, $async$next = [], $async$self = this, errorMessage, state, url, t3, t4, exception, t1, response, t2; var $async$_loadPDF$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.viewModel; response = null; t2 = $async$self._framework$_element; t2.toString; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); url = state.get$credentials(state).url + "/client_statement"; if ($async$self._client_pdf$_dateRange != null) { t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); V.calculateStartDate(t4.$index(t2, t3).userCompany.company, null, null, $async$self._client_pdf$_dateRange, 0); V.calculateEndDate(t4.$index(t2, t3).userCompany.company, null, null, $async$self._client_pdf$_dateRange, 0); } t2 = state.get$credentials(state); t1 = t1.client.id; $async$goto = 3; return P._asyncAwait(new F.WebClient().post$4$data$rawResponse(url, t2.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["client_id", t1, "start_date", "2019-01-01", "end_date", "2022-01-01", "show_payments", $async$self._showPayments, "show_aging_table", $async$self._showAging], type$.legacy_String, type$.legacy_Object)), true), $async$_loadPDF$0); case 3: // returning from await. response = $async$result; if (response.statusCode >= 400) { errorMessage = H.S(response.statusCode) + ": " + H.S(response.reasonPhrase) + "\n\n"; try { t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, J.$index$asx(C.C_JsonCodec.decode$2$reviver(0, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes), null), "message")); } catch (exception) { H.unwrapException(exception); t1 = errorMessage; t2 = response; errorMessage = J.$add$ansx(t1, B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t2.headers).parameters._collection$_map, "charset")).decode$1(0, t2.bodyBytes)); } t1 = $async$self._framework$_element; t1.toString; O.showErrorDialog(false, t1, errorMessage); throw H.wrapException(errorMessage); } $async$returnValue = response; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_loadPDF$0, $async$completer); }, dispose$0: function(_) { var t1 = this._pdfController; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var pageSelector, t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), client = _this._widget.viewModel.client; if (_this._pageCount === 1) pageSelector = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); else { t2 = L.Icon$(C.IconData_58396_MaterialIcons_null_true, _null, _null); t2 = B.IconButton$(C.Alignment_0_0, _null, _null, true, t2, 24, _this._pageNumber > 1 ? new S._ClientPdfViewState_build_closure(_this) : _null, C.EdgeInsets_8_8_8_8, _null, _null); t3 = L.Text$(C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(t1.get$pdfPageInfo(), ":current", "" + _this._pageNumber), ":total", "" + _this._pageCount), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null); pageSelector = H.setRuntimeTypeInfo([t2, new T.Padding(C.EdgeInsets_8_0_8_0, t3, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, t4, 24, _this._pageNumber < _this._pageCount ? new S._ClientPdfViewState_build_closure0(_this) : _null, C.EdgeInsets_8_8_8_8, _null, _null)], type$.JSArray_legacy_Widget); } client.get$hasEmailAddress(); t2 = X.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t3 = L.Text$(t1.get$payments(), _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t4 = _this._showPayments; t4 = D.CheckboxListTile$(state.get$accentColor(), _null, C.ListTileControlAffinity_0, _null, _null, new S._ClientPdfViewState_build_closure1(_this), t3, t4); t3 = X.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "aging"); if (t5 == null) t5 = ""; t5 = L.Text$(t5, _null, _null, C.TextOverflow_2, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t6 = _this._showAging; t6 = D.CheckboxListTile$(state.get$accentColor(), _null, C.ListTileControlAffinity_0, _null, _null, new S._ClientPdfViewState_build_closure2(_this), t5, t6); _this._widget.toString; t5 = D.getLayout(context); t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([], t7); if (D.getLayout(context) === C.AppLayout_desktop) { t2 = H.setRuntimeTypeInfo([new K.Theme(t2, new T.Flexible(1, C.FlexFit_1, t4, _null), _null), new K.Theme(t3, new T.Flexible(1, C.FlexFit_1, t6, _null), _null)], t7); C.JSArray_methods.addAll$1(t2, pageSelector); C.JSArray_methods.addAll$1(t8, t2); } t2 = T.Row$(t8, C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null); t7 = H.setRuntimeTypeInfo([], t7); t3 = t1.get$download(t1); t7.push(new X.AppTextButton(t3, _this._client_pdf$_response == null ? _null : new S._ClientPdfViewState_build_closure3(_this, t1, client), true, _null, _null)); if (D.getLayout(context) === C.AppLayout_desktop) t7.push(U.TextButton$(false, L.Text$(t1.get$close(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _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, new S._ClientPdfViewState_build_closure4(client), _null)); t1 = E.AppBar$(t7, _null, t5 === C.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t2, _null, _null, _null, 1, _null); if (_this._client_pdf$_isLoading) t2 = new V.LoadingIndicator(_null, false, _null); else t2 = new G.HtmlElementView(_this._client_pdf$_pdfString, _null); return M.Scaffold$(t1, C.MaterialColor_Map_HFpTk_4288585374, t2, _null, _null, _null, _null, _null); } }; S._ClientPdfViewState_loadPdf_closure.prototype = { call$0: function() { this.$this._client_pdf$_isLoading = true; }, $signature: 1 }; S._ClientPdfViewState_loadPdf_closure0.prototype = { call$1: function(response) { var t2, t1 = this.$this; t1.setState$1(new S._ClientPdfViewState_loadPdf__closure(t1, response)); t2 = response.bodyBytes; t2 = "data:application/pdf;base64," + C.C_Base64Codec.get$encoder().convert$1(t2); t1._client_pdf$_pdfString = t2; L.WebUtils_registerWebView(t2); }, $signature: 557 }; S._ClientPdfViewState_loadPdf__closure.prototype = { call$0: function() { var t1 = this.$this; t1._client_pdf$_response = this.response; t1._client_pdf$_isLoading = false; }, $signature: 1 }; S._ClientPdfViewState_loadPdf_closure1.prototype = { call$1: function(error) { this.$this._client_pdf$_isLoading = false; }, $signature: 3 }; S._ClientPdfViewState_build_closure.prototype = { call$0: function() { return this.$this._pdfController.previousPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 26 }; S._ClientPdfViewState_build_closure0.prototype = { call$0: function() { return this.$this._pdfController.nextPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 26 }; S._ClientPdfViewState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new S._ClientPdfViewState_build__closure0(t1)); }, $signature: 20 }; S._ClientPdfViewState_build__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._showPayments = !t1._showPayments; t1.loadPdf$0(); }, $signature: 1 }; S._ClientPdfViewState_build_closure2.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new S._ClientPdfViewState_build__closure(t1)); }, $signature: 20 }; S._ClientPdfViewState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._showAging = !t1._showAging; t1.loadPdf$0(); }, $signature: 1 }; S._ClientPdfViewState_build_closure3.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, fileName; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, $async$self.localization.localeCode), "statement"); fileName = (t1 == null ? "" : t1) + "_" + $async$self.client.number + ".pdf"; t1 = $async$self.$this._client_pdf$_response; L.WebUtils_downloadBinaryFile(fileName, t1.bodyBytes); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; S._ClientPdfViewState_build_closure4.prototype = { call$0: function() { M.viewEntity(false, this.client, null, false); }, $signature: 1 }; V.ClientPdfScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new V.ClientPdfScreen_build_closure(this), new V.ClientPdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientPdfVM); } }; V.ClientPdfScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, clientId = t1.clientUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new V.ClientPdfVM(state, J.$index$asx(t2._list, t1).clientState.$get$1(0, clientId)); }, $signature: 2129 }; V.ClientPdfScreen_build_closure.prototype = { call$2: function(context, vm) { return new S.ClientPdfView(vm, true, new D.ValueKey("__client_pdf_" + vm.client.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2130 }; V.ClientPdfVM.prototype = {}; V.ClientPresenter.prototype = { getField$2$context$field: function(context, field) { var t1, t2, _this = this, _null = null, client = type$.legacy_ClientEntity._as(_this.entity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); switch (field) { case "name": return L.Text$(client.displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_name": return L.Text$(client.get$primaryContact().get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_email": return L.Text$(client.get$primaryContact().email, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "contact_phone": return L.Text$(client.get$primaryContact().phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address1": return L.Text$(client.address1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address2": return L.Text$(client.address2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return L.Text$(client.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "id_number": return L.Text$(client.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_login_at": t1 = client.lastLogin; if (t1 === 0) t1 = ""; else t1 = Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t1 * 1000, false).toIso8601String$0(), context, true, true, false); return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "balance": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(client.balance, context, client.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "credit_balance": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(client.creditBalance, context, client.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "paid_to_date": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(client.paidToDate, context, client.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "country": t1 = state.staticState.countryMap; t2 = client.countryId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "language": t1 = state.staticState.languageMap; t2 = client.settings.languageId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency": t1 = state.staticState.currencyMap; t2 = client.settings.currencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vat_number": return L.Text$(client.vatNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "state": return L.Text$(client.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "phone": return L.Text$(client.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, client.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, client.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, client.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, client.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(client.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(client.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "task_rate": return L.Text$(Y.formatNumber(client.settings.defaultTaskRate, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(client.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "group": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return L.Text$(J.$index$asx(t1._list, t2).groupState.$get$1(0, client.groupId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; B.ClientScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.clientUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.clientList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("address1"); t6.push("address2"); t6.push("country"); t6.push("id_number"); t6.push("vat_number"); t6.push("state"); t6.push("phone"); t6.push("website"); t6.push("language"); t6.push("currency"); t6.push("task_rate"); t6.push("public_notes"); t6.push("private_notes"); t6.push("credit_balance"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t6.push("group"); t6.push("contact_phone"); t7 = H.setRuntimeTypeInfo(["number", "name", "balance", "paid_to_date", "contact_name", "contact_email", "last_login_at"], t5); t5 = H.setRuntimeTypeInfo(["name", "id_number", "balance", "updated_at"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("client1", true), company.getCustomFieldValues$2$excludeBlank("client2", true), company.getCustomFieldValues$2$excludeBlank("client3", true), company.getCustomFieldValues$2$excludeBlank("client4", true), t7, C.EntityType_client, false, C.List_empty14, new B.ClientScreen_build_closure(store), new B.ClientScreen_build_closure0(store), new B.ClientScreen_build_closure1(store), new B.ClientScreen_build_closure2(store), new B.ClientScreen_build_closure3(store), new B.ClientScreen_build_closure4(store), new B.ClientScreen_build_closure5(store), _null, t5, C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_client) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "client_fab", false, new B.ClientScreen_build_closure6(context), t3.get$newClient()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_client, t2, new B.ClientScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new Y.ClientListBuilder(_null), t6, C.EntityType_client, t3, 0, _null, new B.ClientScreen_build_closure8(store), new B.ClientScreen_build_closure9(store)); } }; B.ClientScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.StartClientMultiselect()); }, $signature: 9 }; B.ClientScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClients(value)); }, $signature: 7 }; B.ClientScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.clientUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearClientMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartClientMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.ClientScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortClients(value)); }, $signature: 7 }; B.ClientScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClientsByState(state)); }, $signature: 53 }; B.ClientScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.clientUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearClientMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartClientMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.ClientScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClientsByCustom1(value)); }, $signature: 5 }; B.ClientScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClientsByCustom2(value)); }, $signature: 5 }; B.ClientScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClientsByCustom3(value)); }, $signature: 5 }; B.ClientScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterClientsByCustom4(value)); }, $signature: 5 }; B.ClientScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_client); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.ClientScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new D.ClientScreenBuilder_build_closure(), D.client_screen_vm_ClientScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientScreenVM); } }; D.ClientScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new B.ClientScreen(vm, null); }, $signature: 2132 }; D.ClientScreenVM.prototype = {}; M.ClientEdit.prototype = { createState$0: function() { return new M._ClientEditState(null, C._StateLifecycle_0); } }; M._ClientEditState.prototype = { initState$0: function() { this.super$State$initState(); this._client_edit$_controller = U.TabController$(0, 6, this); }, dispose$0: function(_) { this._client_edit$_controller.dispose$0(0); this.super$__ClientEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_client), t2 = client.get$isNew() ? t1.get$newClient() : t1.get$editClient(), t3 = type$.JSArray_legacy_Widget; t1 = E.TabBar$(_this._client_edit$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$settings()), E.Tab$(_null, t1.get$billingAddress()), E.Tab$(_null, t1.get$shippingAddress(t1))], t3)); t4 = $.$get$_ClientEditState__formKey(); t5 = client.id; t6 = client.updatedAt; t7 = type$.ValueKey_legacy_String; if (isFullscreen) t3 = new X.ClientEditDesktop(viewModel, new D.ValueKey("__client_" + t5 + "_" + t6 + "__", t7)); else { t5 = "__client_" + t5 + "_" + t6 + "__"; t6 = _this._client_edit$_controller; t7 = E.TabBarView$(H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([new Q.ClientEditDetails(viewModel, _null)], t3), _null, _null, false, _null), new F.ClientEditContactsScreen(viewModel, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new L.ClientEditNotes(viewModel, _null)], t3), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new M.ClientEditSettings(viewModel, _null)], t3), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new R.ClientEditBillingAddress(viewModel, _null)], t3), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new R.ClientEditShippingAddress(viewModel, _null)], t3), _null, _null, false, _null)], t3), t6, new D.ValueKey(t5, t7)); t3 = t7; } return K.EditScaffold$(_null, t1, A.Form$(false, t3, t4), new U.ClientEditFooter(client, _null), client, _null, isFullscreen, _null, new M._ClientEditState_build_closure(viewModel), new M._ClientEditState_build_closure0(_this, viewModel), _null, t2); } }; M._ClientEditState_build_closure.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; M._ClientEditState_build_closure0.prototype = { call$1: function(context) { var isValid = $.$get$_ClientEditState__formKey().get$currentState().validate$0(); this.$this.setState$1(new M._ClientEditState_build__closure()); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; M._ClientEditState_build__closure.prototype = { call$0: function() { }, $signature: 1 }; M.__ClientEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; R.ClientEditBillingAddress.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new R.ClientEditBillingAddressState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; R.ClientEditBillingAddressState.prototype = { didChangeDependencies$0: function() { var client, _this = this, t1 = _this._client_edit_billing_address$_address1Controller, t2 = _this._client_edit_billing_address$_address2Controller, t3 = _this._client_edit_billing_address$_cityController, t4 = _this._client_edit_billing_address$_stateController, t5 = _this._client_edit_billing_address$_postalCodeController, t6 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._client_edit_billing_address$_controllers = t6; C.JSArray_methods.forEach$1(t6, new R.ClientEditBillingAddressState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.address1); t2.set$text(0, client.address2); t3.set$text(0, client.city); t4.set$text(0, client.state); t5.set$text(0, client.postalCode); C.JSArray_methods.forEach$1(_this._client_edit_billing_address$_controllers, new R.ClientEditBillingAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._client_edit_billing_address$_controllers, new R.ClientEditBillingAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_billing_address$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new R.ClientEditBillingAddressState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_billing_address$_debouncer.run$1(new R.ClientEditBillingAddressState__onChanged_closure0(viewModel, client)); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_client), t2 = isFullscreen ? C.EdgeInsets_6_12_12_0 : _null; if (isFullscreen) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "billing_address1"); if (t3 == null) t3 = ""; } else t3 = t1.get$address1(); t4 = viewModel.onSavePressed; t3 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t5 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$address2(), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t6 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_cityController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$city(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t7 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_stateController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$state(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t4 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_billing_address$_postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t8 = client.countryId; t9 = "__country_" + t8 + "__"; t9 = H.setRuntimeTypeInfo([t3, t5, t6, t7, t4, F.EntityDropdown$(true, false, false, t8, $.$get$memoizedCountryList().call$1(viewModel.staticState.countryMap), _null, C.EntityType_country, new D.ValueKey(t9, type$.ValueKey_legacy_String), t1.get$country(t1), _null, new R.ClientEditBillingAddressState_build_closure(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget); if (client.shippingAddress1.length === 0) if (client.shippingAddress2.length === 0) if (client.shippingCity.length === 0) if (client.shippingState.length === 0) if (client.shippingPostalCode.length === 0) { t3 = client.shippingCountryId; t3 = t3.length !== 0; } else t3 = true; else t3 = true; else t3 = true; else t3 = true; else t3 = true; if (t3 && client.get$areAddressesDifferent()) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "copy_shipping"); if (t1 == null) t1 = ""; t9.push(new D.AppButton(_null, _null, t1.toUpperCase(), new R.ClientEditBillingAddressState_build_closure0(_this, viewModel), _null, _null)); } return Y.FormCard$(_null, t9, C.CrossAxisAlignment_3, 4, false, _null, true, t2); } }; R.ClientEditBillingAddressState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_billing_address$_onChanged()); }, $signature: 10 }; R.ClientEditBillingAddressState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_billing_address$_onChanged()); }, $signature: 10 }; R.ClientEditBillingAddressState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_billing_address$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; R.ClientEditBillingAddressState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_billing_address$_address1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._address1 = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_address2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._address2 = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_cityController._change_notifier$_value.text); b.get$_client_model$_$this()._city = t2; t2 = J.trim$0$s(t1._client_edit_billing_address$_stateController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_state = t2; t1 = J.trim$0$s(t1._client_edit_billing_address$_postalCodeController._change_notifier$_value.text); b.get$_client_model$_$this()._postalCode = t1; return b; }, $signature: 40 }; R.ClientEditBillingAddressState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; R.ClientEditBillingAddressState_build_closure.prototype = { call$1: function(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new R.ClientEditBillingAddressState_build__closure0(country))); }, $signature: 56 }; R.ClientEditBillingAddressState_build__closure0.prototype = { call$1: function(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._countryId = t1; return b; }, $signature: 40 }; R.ClientEditBillingAddressState_build_closure0.prototype = { call$0: function() { this.viewModel.copyShippingAddress.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new R.ClientEditBillingAddressState_build__closure(this.$this)); }, $signature: 1 }; R.ClientEditBillingAddressState_build__closure.prototype = { call$1: function(duration) { this.$this.didChangeDependencies$0(); }, $signature: 45 }; R.ClientEditContacts.prototype = { createState$0: function() { return new R._ClientEditContactsState(C._StateLifecycle_0); } }; R._ClientEditContactsState.prototype = { _client_edit_contacts$_showContactEditor$2: function(contact, context) { E.showDialog(true, new R._ClientEditContactsState__showContactEditor_closure(this, contact), context, null, true, type$.legacy_ResponsivePadding); }, build$1: function(_, context) { var t3, contacts, contact, t4, t5, t6, children, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, client = viewModel.client, isFullscreen = t2.clientViewModel.state.prefState.isEditorFullScreen$1(C.EntityType_client); t2 = client.contacts._list; t3 = J.getInterceptor$asx(t2); if (t3.get$length(t2) > 1) contacts = t3.map$1$1(t2, new R._ClientEditContactsState_build_closure(_this, context), type$.legacy_ContactListTile).toList$0(0); else { contact = t3.$index(t2, 0); t4 = _this._widget.clientViewModel; t5 = "__" + contact.get$entityType().toString$0(0) + "__" + contact.id + "__"; t6 = t3.get$length(t2); contacts = H.setRuntimeTypeInfo([new R.ContactEditDetails(t3.indexOf$2(t2, contact, 0), contact, viewModel, t4, t6 > 1, new D.ValueKey(t5, type$.ValueKey_String))], type$.JSArray_legacy_Widget); } contact = viewModel.contact; contact = t3.contains$1(t2, contact) ? contact : _null; if (contact != null && !contact.$eq(0, _this.selectedContact)) { _this.selectedContact = contact; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new R._ClientEditContactsState_build_closure0(_this, contact, context)); } children = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); C.JSArray_methods.addAll$1(children, contacts); t1 = t3.get$length(t2) === 1 ? t1.get$addSecondContact() : t1.get$addContact(); children.push(new T.Padding(C.EdgeInsets_25_0_25_6, new D.AppButton(_null, _null, t1.toUpperCase(), new R._ClientEditContactsState_build_closure1(viewModel), _null, _null), _null)); return isFullscreen ? T.Column$(children, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1) : new X.ScrollableListView(children, _null, _null, false, _null); } }; R._ClientEditContactsState__showContactEditor_closure.prototype = { call$1: function(context) { var t2, t3, t4, t5, t6, t1 = this.$this._widget, viewModel = t1.viewModel, client = viewModel.client; t1 = t1.clientViewModel; t2 = this.contact; t3 = "__" + t2.get$entityType().toString$0(0) + "__" + t2.id + "__"; t4 = client.contacts._list; t5 = J.getInterceptor$asx(t4); t6 = t5.get$length(t4); return new R.ContactEditDetails(t5.indexOf$2(t4, t5.firstWhere$2$orElse(t4, new R._ClientEditContactsState__showContactEditor__closure(t2), null), 0), t2, viewModel, t1, t6 > 1, new D.ValueKey(t3, type$.ValueKey_String)); }, $signature: 2133 }; R._ClientEditContactsState__showContactEditor__closure.prototype = { call$1: function(c) { return c.id === this.contact.id; }, $signature: 156 }; R._ClientEditContactsState_build_closure.prototype = { call$1: function(contact) { return new R.ContactListTile0(new R._ClientEditContactsState_build__closure(this.$this, contact, this.context), contact, null); }, $signature: 2134 }; R._ClientEditContactsState_build__closure.prototype = { call$0: function() { return this.$this._client_edit_contacts$_showContactEditor$2(this.contact, this.context); }, $signature: 0 }; R._ClientEditContactsState_build_closure0.prototype = { call$1: function(duration) { this.$this._client_edit_contacts$_showContactEditor$2(this.contact, this.context); }, $signature: 45 }; R._ClientEditContactsState_build_closure1.prototype = { call$0: function() { return this.viewModel.onAddContactPressed.call$0(); }, $signature: 9 }; R.ContactListTile0.prototype = { build$1: function(_, context) { var _null = null, t1 = K.Theme_of(context).canvasColor, t2 = this.contact, t3 = t2.get$fullName().length !== 0 ? L.Text$(t2.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null) : L.Text$(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$blankContact(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontStyle_1, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t4 = t2.email; return M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_0_4_0_4, T.Column$(H.setRuntimeTypeInfo([Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, this.onTap, false, _null, _null, L.Text$(t4.length !== 0 ? t4 : t2.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null)), Z.Divider$(_null, 1, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0); }, get$contact: function() { return this.contact; } }; R.ContactEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new R.ContactEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); }, get$contact: function() { return this.contact; } }; R.ContactEditDetailsState.prototype = { _client_edit_contacts$_onDoneContactPressed$0: function() { var t1 = this._widget, t2 = t1.isDialog, t3 = this._framework$_element; if (t2) { t1 = t1.viewModel; t3.toString; t1.onDoneContactPressed.call$1(t3); t3 = this._framework$_element; t3.toString; K.Navigator_of(t3, false).pop$0(0); } else { t1 = t1.clientViewModel; t3.toString; t1.onSavePressed.call$1(t3); } }, didChangeDependencies$0: function() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, contact, _this = this; if (_this._client_edit_contacts$_controllers.length !== 0) return; t1 = _this._client_edit_contacts$_firstNameController; t2 = _this._client_edit_contacts$_lastNameController; t3 = _this._client_edit_contacts$_emailController; t4 = _this._client_edit_contacts$_passwordController; t5 = _this._client_edit_contacts$_phoneController; t6 = _this._client_edit_contacts$_custom1Controller; t7 = _this._client_edit_contacts$_custom2Controller; t8 = _this._client_edit_contacts$_custom3Controller; t9 = _this._client_edit_contacts$_custom4Controller; t10 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9], type$.JSArray_legacy_TextEditingController); _this._client_edit_contacts$_controllers = t10; C.JSArray_methods.forEach$1(t10, new R.ContactEditDetailsState_didChangeDependencies_closure(_this)); contact = _this._widget.contact; t1.set$text(0, contact.firstName); t2.set$text(0, contact.lastName); t3.set$text(0, contact.email); t5.set$text(0, contact.phone); t4.set$text(0, contact.password); t6.set$text(0, contact.customValue1); t7.set$text(0, contact.customValue2); t8.set$text(0, contact.customValue3); t9.set$text(0, contact.customValue4); C.JSArray_methods.forEach$1(_this._client_edit_contacts$_controllers, new R.ContactEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._client_edit_contacts$_controllers, new R.ContactEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_contacts$_onChanged$0: function() { var _this = this, t1 = _this._widget, viewModel = t1.viewModel, contact = t1.contact.rebuild$1(new R.ContactEditDetailsState__onChanged_closure(_this)); if (!contact.$eq(0, _this._widget.contact)) _this._client_edit_contacts$_debouncer.run$1(new R.ContactEditDetailsState__onChanged_closure0(_this, viewModel, contact)); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, column, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, isFullscreen = t2.clientViewModel.state.prefState.isEditorFullScreen$1(C.EntityType_client); t2 = _this._widget.isDialog; t3 = t1.get$firstName(); t2 = S.DecoratedFormField$(false, _null, t2, false, _this._client_edit_contacts$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, new R.ContactEditDetailsState_build_closure(_this), true, _null, _null, C.TextAlign_4, new R.ContactEditDetailsState_build_closure0(viewModel, context)); t3 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$lastName(), _null, _null, false, _null, _null, new R.ContactEditDetailsState_build_closure1(_this), true, _null, _null, C.TextAlign_4, new R.ContactEditDetailsState_build_closure2(viewModel, context)); t4 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_5_null_null, t1.get$email(), _null, _null, false, _null, _null, new R.ContactEditDetailsState_build_closure3(_this), true, _null, _null, C.TextAlign_4, new R.ContactEditDetailsState_build_closure4(t1)); t5 = viewModel.company.settings.enablePortalPassword; t5 = t5 === true ? S.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_passwordController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_7_null_null, t1.get$password(t1), _null, _null, true, _null, _null, new R.ContactEditDetailsState_build_closure5(_this), true, _null, _null, C.TextAlign_4, new R.ContactEditDetailsState_build_closure6(t1)) : T.SizedBox$(_null, _null, _null); t6 = S.DecoratedFormField$(false, _null, false, false, _this._client_edit_contacts$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, new R.ContactEditDetailsState_build_closure7(_this), true, _null, _null, C.TextAlign_4, _null); t7 = _this._widget.contact; t8 = type$.JSArray_legacy_Widget; column = T.Column$(H.setRuntimeTypeInfo([t2, t3, t4, t5, t6, new B.CustomField(_this._client_edit_contacts$_custom1Controller, _null, new R.ContactEditDetailsState_build_closure8(_this), "contact1", t7.customValue1, false, _null), new B.CustomField(_this._client_edit_contacts$_custom2Controller, _null, new R.ContactEditDetailsState_build_closure9(_this), "contact2", t7.customValue2, false, _null), new B.CustomField(_this._client_edit_contacts$_custom3Controller, _null, new R.ContactEditDetailsState_build_closure10(_this), "contact3", t7.customValue3, false, _null), new B.CustomField(_this._client_edit_contacts$_custom4Controller, _null, new R.ContactEditDetailsState_build_closure11(_this), "contact4", t7.customValue4, false, _null)], t8), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); if (_this._widget.isDialog) { t2 = E.SingleChildScrollView$(column, _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t2 = E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new R.ContactEditDetailsState_build_closure12(_this, context), _null), U.TextButton$(false, L.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new R.ContactEditDetailsState_build_closure13(_this), _null)], t8), C.EdgeInsets_0_0_0_0, _null, t2, C.EdgeInsets_24_20_24_24, _null, _null, _null); t1 = t2; } else t1 = Y.FormCard$(column, _null, _null, 4, false, _null, false, isFullscreen ? C.EdgeInsets_6_12_6_0 : _null); return t1; } }; R.ContactEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_contacts$_onChanged()); }, $signature: 10 }; R.ContactEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_contacts$_onChanged()); }, $signature: 10 }; R.ContactEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_contacts$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; R.ContactEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_contacts$_firstNameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_firstName = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_lastNameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_lastName = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_emailController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_email = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_passwordController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_password = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_phoneController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_phone = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue1 = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue2 = t2; t2 = J.trim$0$s(t1._client_edit_contacts$_custom3Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue3 = t2; t1 = J.trim$0$s(t1._client_edit_contacts$_custom4Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue4 = t1; return b; }, $signature: 490 }; R.ContactEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChangedContact.call$2(this.contact, this.$this._widget.index); }, $signature: 1 }; R.ContactEditDetailsState_build_closure0.prototype = { call$1: function(val) { return !this.viewModel.client.get$hasNameSet() ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; R.ContactEditDetailsState_build_closure.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure2.prototype = { call$1: function(val) { return !this.viewModel.client.get$hasNameSet() ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; R.ContactEditDetailsState_build_closure1.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure4.prototype = { call$1: function(value) { return value.length !== 0 && !C.JSString_methods.contains$1(value, "@") ? this.localization.get$emailIsInvalid() : null; }, $signature: 15 }; R.ContactEditDetailsState_build_closure3.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure6.prototype = { call$1: function(value) { var t1 = value.length; return t1 !== 0 && t1 < 8 ? this.localization.get$passwordIsTooShort() : null; }, $signature: 15 }; R.ContactEditDetailsState_build_closure5.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure7.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure8.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure9.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure10.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure11.prototype = { call$1: function(_) { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 29 }; R.ContactEditDetailsState_build_closure12.prototype = { call$0: function() { var t1 = this.context; return O.confirmCallback(false, new R.ContactEditDetailsState_build__closure(this.$this, t1), t1, null, false, null); }, $signature: 0 }; R.ContactEditDetailsState_build__closure.prototype = { call$1: function(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveContactPressed.call$1(t1.index); K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 7 }; R.ContactEditDetailsState_build_closure13.prototype = { call$0: function() { return this.$this._client_edit_contacts$_onDoneContactPressed$0(); }, $signature: 0 }; F.ClientEditContactsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.ClientEditContactsScreen_build_closure(this), new F.ClientEditContactsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientEditContactsVM); } }; F.ClientEditContactsScreen_build_closure0.prototype = { call$1: function(store) { return F.ClientEditContactsVM_ClientEditContactsVM$fromStore(store); }, $signature: 2135 }; F.ClientEditContactsScreen_build_closure.prototype = { call$2: function(context, vm) { return new R.ClientEditContacts(vm, this.$this.viewModel, null); }, $signature: 2136 }; F.ClientEditContactsVM.prototype = { get$company: function() { return this.company; }, get$contact: function() { return this.contact; } }; F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure.prototype = { call$0: function() { var contact = T.ContactEntity_ContactEntity(), t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.AddContact(contact)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.EditContact(contact)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0.prototype = { call$1: function(index) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteContact(index)); }, $signature: 173 }; F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EditContact(null)); }, $signature: 14 }; F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2.prototype = { call$2: function(contact, index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateContact(index, contact)); }, $signature: 2137 }; X.ClientEditDesktop.prototype = { build$1: function(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new Q.ClientEditDetails(t1, _null), new L.ClientEditNotes(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new F.ClientEditContactsScreen(t1, _null), new M.ClientEditSettings(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new R.ClientEditBillingAddress(t1, _null), new R.ClientEditShippingAddress(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1)], t2), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.SizedBox$(_null, 12, _null)], t2), _null, _null, false, _null); } }; Q.ClientEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new Q.ClientEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; Q.ClientEditDetailsState.prototype = { didChangeDependencies$0: function() { var client, _this = this, t1 = _this._client_edit_details$_numberController, t2 = _this._client_edit_details$_nameController, t3 = _this._client_edit_details$_idNumberController, t4 = _this._client_edit_details$_vatNumberController, t5 = _this._client_edit_details$_websiteController, t6 = _this._client_edit_details$_phoneController, t7 = _this._client_edit_details$_custom1Controller, t8 = _this._client_edit_details$_custom2Controller, t9 = _this._client_edit_details$_custom3Controller, t10 = _this._client_edit_details$_custom4Controller, t11 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10], type$.JSArray_legacy_TextEditingController); _this._client_edit_details$_controllers = t11; C.JSArray_methods.forEach$1(t11, new Q.ClientEditDetailsState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.number); t2.set$text(0, client.name); t3.set$text(0, client.idNumber); t4.set$text(0, client.vatNumber); t5.set$text(0, client.website); t6.set$text(0, client.phone); t7.set$text(0, client.customValue1); t8.set$text(0, client.customValue2); t9.set$text(0, client.customValue3); t10.set$text(0, client.customValue4); t10 = _this._client_edit_details$_controllers; (t10 && C.JSArray_methods).forEach$1(t10, new Q.ClientEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._client_edit_details$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new Q.ClientEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_details$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new Q.ClientEditDetailsState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_details$_debouncer.run$1(new Q.ClientEditDetailsState__onChanged_closure0(viewModel, client)); }, build$1: function(_, context) { var t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, client = viewModel.client, t2 = state.prefState.isEditorFullScreen$1(C.EntityType_client) ? C.EdgeInsets_12_12_6_0 : _null, t3 = viewModel.onSavePressed, t4 = t1.get$name(t1); t4 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, false, _this._client_edit_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, new Q.ClientEditDetailsState_build_closure(viewModel, context))], type$.JSArray_legacy_Widget); if (!client.get$isNew()) t4.push(S.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$number(t1), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t5 = $.$get$memoizedGroupList(); t6 = state.uiState.selectedCompanyIndex; t7 = state.userCompanyStates._list; t8 = J.getInterceptor$asx(t7); if (J.get$isNotEmpty$asx(t5.call$1(t8.$index(t7, t6).groupState.map))) { t5 = $.$get$memoizedGroupList().call$1(t8.$index(t7, t6).groupState.map); t4.push(Y.DynamicSelector$(true, client.groupId, t5, C.EntityType_group, _null, _null, _null, new Q.ClientEditDetailsState_build_closure0(viewModel, client), _null)); } t4.push(new V.UserPicker(client.assignedUserId, new Q.ClientEditDetailsState_build_closure1(viewModel, client), _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$idNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$vatNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_websiteController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_6_null_null, t1.get$website(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._client_edit_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(new B.CustomField(_this._client_edit_details$_custom1Controller, _null, t3, "client1", client.customValue1, false, _null)); t4.push(new B.CustomField(_this._client_edit_details$_custom2Controller, _null, t3, "client2", client.customValue2, false, _null)); t4.push(new B.CustomField(_this._client_edit_details$_custom3Controller, _null, t3, "client3", client.customValue3, false, _null)); t4.push(new B.CustomField(_this._client_edit_details$_custom4Controller, _null, t3, "client4", client.customValue4, false, _null)); return Y.FormCard$(_null, t4, _null, 4, false, _null, true, t2); } }; Q.ClientEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_details$_onChanged()); }, $signature: 10 }; Q.ClientEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_details$_onChanged()); }, $signature: 10 }; Q.ClientEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; Q.ClientEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_edit_details$_numberController._change_notifier$_value.text); b.get$_client_model$_$this()._number = t2; t2 = J.trim$0$s(t1._client_edit_details$_nameController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_name = t2; t2 = J.trim$0$s(t1._client_edit_details$_idNumberController._change_notifier$_value.text); b.get$_client_model$_$this()._idNumber = t2; t2 = J.trim$0$s(t1._client_edit_details$_vatNumberController._change_notifier$_value.text); b.get$_client_model$_$this()._vatNumber = t2; t2 = J.trim$0$s(t1._client_edit_details$_websiteController._change_notifier$_value.text); b.get$_client_model$_$this()._website = t2; t2 = J.trim$0$s(t1._client_edit_details$_phoneController._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_phone = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue1 = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue2 = t2; t2 = J.trim$0$s(t1._client_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue3 = t2; t1 = J.trim$0$s(t1._client_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_client_model$_$this()._client_model$_customValue4 = t1; return b; }, $signature: 40 }; Q.ClientEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; Q.ClientEditDetailsState_build_closure.prototype = { call$1: function(val) { return !this.viewModel.client.get$hasNameSet() ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName() : null; }, $signature: 15 }; Q.ClientEditDetailsState_build_closure0.prototype = { call$1: function(groupId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new Q.ClientEditDetailsState_build__closure0(groupId))); }, $signature: 5 }; Q.ClientEditDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$_client_model$_$this()._groupId = this.groupId; return b; }, $signature: 40 }; Q.ClientEditDetailsState_build_closure1.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new Q.ClientEditDetailsState_build__closure(userId))); }, $signature: 5 }; Q.ClientEditDetailsState_build__closure.prototype = { call$1: function(b) { b.get$_client_model$_$this()._client_model$_assignedUserId = this.userId; return b; }, $signature: 40 }; U.ClientEditFooter.prototype = { build$1: function(_, context) { var showLayoutToggle, t3, t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), t2 = store.get$_store$_state().prefState, useSidebarEditor = J.$index$asx(t2.useSidebarEditor._map$_map, C.EntityType_client); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = D.getLayout(context) === C.AppLayout_desktop; t3 = K.Theme_of(context).cardColor; t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t1 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t4.push(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(useSidebarEditor ? C.IconData_57694_MaterialIcons_null_true : C.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new U.ClientEditFooter_build_closure(store), _null, _null, _null, _null, _null), t1)); } t1 = this.client.get$calculateDisplayName(); t4.push(new T.AppBorder(new T.Padding(C.EdgeInsets_16_8_0_0, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.enableDarkMode ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, showLayoutToggle, false, _null)); return B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t4, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), t3, 0, new V.CircularNotchedRectangle()); } }; U.ClientEditFooter_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(C.EntityType_client)); }, $signature: 9 }; L.ClientEditNotes.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new L.ClientEditNotesState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; L.ClientEditNotesState.prototype = { didChangeDependencies$0: function() { var client, _this = this, t1 = _this._client_edit_notes$_publicNotesController, t2 = _this._client_edit_notes$_privateNotesController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._client_edit_notes$_controllers = t3; C.JSArray_methods.forEach$1(t3, new L.ClientEditNotesState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.publicNotes); t2.set$text(0, client.privateNotes); t2 = _this._client_edit_notes$_controllers; (t2 && C.JSArray_methods).forEach$1(t2, new L.ClientEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._client_edit_notes$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new L.ClientEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_notes$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new L.ClientEditNotesState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_notes$_debouncer.run$1(new L.ClientEditNotesState__onChanged_closure0(viewModel, client)); }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, state = viewModel.state, client = viewModel.client, t2 = state.prefState.isEditorFullScreen$1(C.EntityType_client) ? C.EdgeInsets_12_12_6_0 : _null, t3 = S.DecoratedFormField$(false, _null, false, false, this._client_edit_notes$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), t4 = S.DecoratedFormField$(false, _null, false, false, this._client_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), t5 = client.sizeId, t6 = t1.get$size(t1), t7 = J.map$1$1$ax($.$get$memoizedSizeList().call$1(state.staticState.sizeMap), new L.ClientEditNotesState_build_closure(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), t8 = client.industryId, t9 = "__industry_" + t8 + "__"; return Y.FormCard$(_null, H.setRuntimeTypeInfo([t3, t4, new Q.AppDropdownButton(t6, t5, new L.ClientEditNotesState_build_closure0(viewModel, client), t7, true, true, "", _null, type$.AppDropdownButton_legacy_String), F.EntityDropdown$(true, false, false, t8, $.$get$memoizedIndustryList().call$1(viewModel.staticState.industryMap), _null, C.EntityType_industry, new D.ValueKey(t9, type$.ValueKey_legacy_String), t1.get$industry(), _null, new L.ClientEditNotesState_build_closure1(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget), _null, 4, false, _null, true, t2); } }; L.ClientEditNotesState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_notes$_onChanged()); }, $signature: 10 }; L.ClientEditNotesState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_notes$_onChanged()); }, $signature: 10 }; L.ClientEditNotesState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; L.ClientEditNotesState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._client_edit_notes$_publicNotesController._change_notifier$_value.text; b.get$_client_model$_$this()._publicNotes = t2; t1 = t1._client_edit_notes$_privateNotesController._change_notifier$_value.text; b.get$_client_model$_$this()._privateNotes = t1; return b; }, $signature: 40 }; L.ClientEditNotesState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; L.ClientEditNotesState_build_closure.prototype = { call$1: function(sizeId) { var _null = null; return K.DropdownMenuItem$(L.Text$(J.$index$asx(this.state.staticState.sizeMap._map$_map, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), sizeId, type$.legacy_String); }, $signature: 36 }; L.ClientEditNotesState_build_closure0.prototype = { call$1: function(sizeId) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new L.ClientEditNotesState_build__closure0(sizeId))); }, $signature: 10 }; L.ClientEditNotesState_build__closure0.prototype = { call$1: function(b) { b.get$_client_model$_$this()._sizeId = this.sizeId; return b; }, $signature: 40 }; L.ClientEditNotesState_build_closure1.prototype = { call$1: function(industry) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new L.ClientEditNotesState_build__closure(industry))); }, $signature: 56 }; L.ClientEditNotesState_build__closure.prototype = { call$1: function(b) { var t1 = this.industry; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._industryId = t1; return b; }, $signature: 40 }; M.ClientEditSettings.prototype = { createState$0: function() { return new M.ClientEditSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; M.ClientEditSettingsState.prototype = { didChangeDependencies$0: function() { var t3, _this = this, t1 = _this._client_edit_settings$_taskRateController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._client_edit_settings$_controllers = t2; C.JSArray_methods.forEach$1(t2, new M.ClientEditSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.client.settings.defaultTaskRate; t3 = _this._framework$_element; t3.toString; t1.set$text(0, Y.formatNumber(t2, t3, null, null, C.FormatNumberType_4, true, null, false)); t3 = _this._client_edit_settings$_controllers; (t3 && C.JSArray_methods).forEach$1(t3, new M.ClientEditSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._client_edit_settings$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new M.ClientEditSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_settings$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new M.ClientEditSettingsState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_settings$_debouncer.run$1(new M.ClientEditSettingsState__onChanged_closure0(viewModel, client)); }, build$1: function(_, context) { var t11, t12, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), company = t4.$index(t3, t2).userCompany.company, client = viewModel.client, t5 = state.prefState.isEditorFullScreen$1(C.EntityType_client) ? C.EdgeInsets_6_12_6_0 : _null, t6 = client.settings, t7 = t6.currencyId, t8 = "__currency_" + H.S(t7) + "__", t9 = type$.ValueKey_legacy_String, t10 = viewModel.staticState; t8 = F.EntityDropdown$(true, false, false, t7, $.$get$memoizedCurrencyList().call$1(t10.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t8, t9), t1.get$currency(), _null, new M.ClientEditSettingsState_build_closure(viewModel, client), _null, _null, _null); t7 = t6.languageId; t11 = "__language_" + H.S(t7) + "__"; t12 = type$.JSArray_legacy_Widget; t9 = H.setRuntimeTypeInfo([t8, F.EntityDropdown$(true, false, false, t7, $.$get$memoizedLanguageList().call$1(t10.languageMap), _null, C.EntityType_language, new D.ValueKey(t11, t9), t1.get$language(t1), _null, new M.ClientEditSettingsState_build_closure0(viewModel, client), _null, _null, _null)], t12); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t7 = t1.get$invoicePaymentTerms(); t8 = J.map$1$1$ax($.$get$memoizedDropdownPaymentTermList().call$2(t4.$index(t3, t2).paymentTermState.map, t4.$index(t3, t2).paymentTermState.list), new M.ClientEditSettingsState_build_closure1(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t9.push(new Q.AppDropdownButton(t7, H.S(t6.defaultPaymentTerms), new M.ClientEditSettingsState_build_closure2(viewModel, client), t8, true, true, "", _null, type$.AppDropdownButton_legacy_String)); } if (company.isModuleEnabled$1(C.EntityType_quote)) { t7 = t1.get$quoteValidUntil(); t2 = J.map$1$1$ax($.$get$memoizedDropdownPaymentTermList().call$2(t4.$index(t3, t2).paymentTermState.map, t4.$index(t3, t2).paymentTermState.list), new M.ClientEditSettingsState_build_closure3(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t9.push(new Q.AppDropdownButton(t7, H.S(t6.defaultValidUntil), new M.ClientEditSettingsState_build_closure4(viewModel, client), t2, true, true, "", _null, type$.AppDropdownButton_legacy_String)); } if (company.isModuleEnabled$1(C.EntityType_task)) t9.push(S.DecoratedFormField$(false, _null, false, false, this._client_edit_settings$_taskRateController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t1.get$taskRate(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t2 = T.SizedBox$(_null, 20, _null); t3 = K.Theme_of(context).accentColor; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "email_reminders"); t4 = L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = L.Text$(t1.get$enabled(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = t6.sendReminders; C.JSArray_methods.addAll$1(t9, H.setRuntimeTypeInfo([t2, O.SwitchListTile$(t3, _null, new M.ClientEditSettingsState_build_closure5(viewModel, client), _null, t1, t4, t6 !== false)], t12)); } return Y.FormCard$(_null, t9, _null, 4, false, _null, true, t5); } }; M.ClientEditSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_settings$_onChanged()); }, $signature: 10 }; M.ClientEditSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_settings$_onChanged()); }, $signature: 10 }; M.ClientEditSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; M.ClientEditSettingsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = Y.parseDouble(this.$this._client_edit_settings$_taskRateController._change_notifier$_value.text, true); t1.get$_settings_model$_$this()._defaultTaskRate = t2; return b; }, $signature: 40 }; M.ClientEditSettingsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; M.ClientEditSettingsState_build_closure.prototype = { call$1: function(currency) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new M.ClientEditSettingsState_build__closure3(currency))); }, $signature: 56 }; M.ClientEditSettingsState_build__closure3.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.currency; t2 = t2 == null ? null : t2.get$id(t2); if (t2 == null) t2 = ""; t1.get$_settings_model$_$this()._currencyId = t2; return b; }, $signature: 40 }; M.ClientEditSettingsState_build_closure0.prototype = { call$1: function(language) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new M.ClientEditSettingsState_build__closure2(language))); }, $signature: 56 }; M.ClientEditSettingsState_build__closure2.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.language; t2 = t2 == null ? null : t2.get$id(t2); if (t2 == null) t2 = ""; t1.get$_settings_model$_$this()._languageId = t2; return b; }, $signature: 40 }; M.ClientEditSettingsState_build_closure1.prototype = { call$1: function(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).paymentTermState.map._map$_map, paymentTermId); return K.DropdownMenuItem$(L.Text$(paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.JSInt_methods.toString$0(paymentTerm.numDays), type$.legacy_String); }, $signature: 36 }; M.ClientEditSettingsState_build_closure2.prototype = { call$1: function(numDays) { this.viewModel.onChanged.call$1(this.client.rebuild$1(new M.ClientEditSettingsState_build__closure1(numDays))); }, $signature: 8 }; M.ClientEditSettingsState_build__closure1.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.numDays; t2 = t2 == null ? null : H.S(t2); t1.get$_settings_model$_$this()._defaultPaymentTerms = t2; return b; }, $signature: 40 }; M.ClientEditSettingsState_build_closure3.prototype = { call$1: function(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).paymentTermState.map._map$_map, paymentTermId); return K.DropdownMenuItem$(L.Text$(paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.JSInt_methods.toString$0(paymentTerm.numDays), type$.legacy_String); }, $signature: 36 }; M.ClientEditSettingsState_build_closure4.prototype = { call$1: function(numDays) { this.viewModel.onChanged.call$1(this.client.rebuild$1(new M.ClientEditSettingsState_build__closure0(numDays))); }, $signature: 8 }; M.ClientEditSettingsState_build__closure0.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.numDays; t2 = t2 == null ? null : H.S(t2); t1.get$_settings_model$_$this()._defaultValidUntil = t2; return b; }, $signature: 40 }; M.ClientEditSettingsState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new M.ClientEditSettingsState_build__closure(value))); }, $signature: 12 }; M.ClientEditSettingsState_build__closure.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.value === true && null; t1.get$_settings_model$_$this()._sendReminders = t2; return b; }, $signature: 40 }; R.ClientEditShippingAddress.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new R.ClientEditShippingAddressState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; R.ClientEditShippingAddressState.prototype = { didChangeDependencies$0: function() { var client, _this = this, t1 = _this._shippingAddress1Controller, t2 = _this._shippingAddress2Controller, t3 = _this._shippingCityController, t4 = _this._shippingStateController, t5 = _this._shippingPostalCodeController, t6 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._client_edit_shipping_address$_controllers = t6; C.JSArray_methods.forEach$1(t6, new R.ClientEditShippingAddressState_didChangeDependencies_closure(_this)); client = _this._widget.viewModel.client; t1.set$text(0, client.shippingAddress1); t2.set$text(0, client.shippingAddress2); t3.set$text(0, client.shippingCity); t4.set$text(0, client.shippingState); t5.set$text(0, client.shippingPostalCode); C.JSArray_methods.forEach$1(_this._client_edit_shipping_address$_controllers, new R.ClientEditShippingAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._client_edit_shipping_address$_controllers, new R.ClientEditShippingAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _client_edit_shipping_address$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.client, client = t1.rebuild$1(new R.ClientEditShippingAddressState__onChanged_closure(this)); if (!J.$eq$(client, t1)) this._client_edit_shipping_address$_debouncer.run$1(new R.ClientEditShippingAddressState__onChanged_closure0(viewModel, client)); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, client = viewModel.client, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_client), t2 = isFullscreen ? C.EdgeInsets_6_12_12_0 : _null; if (isFullscreen) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "shipping_address1"); if (t3 == null) t3 = ""; } else t3 = t1.get$address1(); t4 = viewModel.onSavePressed; t3 = S.DecoratedFormField$(false, _null, false, false, _this._shippingAddress1Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t5 = S.DecoratedFormField$(false, _null, false, false, _this._shippingAddress2Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$address2(), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t6 = S.DecoratedFormField$(false, _null, false, false, _this._shippingCityController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$city(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t7 = S.DecoratedFormField$(false, _null, false, false, _this._shippingStateController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$state(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t4 = S.DecoratedFormField$(false, _null, false, false, _this._shippingPostalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null); t8 = client.shippingCountryId; t9 = "__country_" + t8 + "__"; t9 = H.setRuntimeTypeInfo([t3, t5, t6, t7, t4, F.EntityDropdown$(true, false, false, t8, $.$get$memoizedCountryList().call$1(viewModel.staticState.countryMap), _null, C.EntityType_country, new D.ValueKey(t9, type$.ValueKey_legacy_String), t1.get$country(t1), _null, new R.ClientEditShippingAddressState_build_closure(viewModel, client), _null, _null, _null)], type$.JSArray_legacy_Widget); if (client.address1.length === 0) if (client.address2.length === 0) if (client.city.length === 0) if (client.state.length === 0) if (client.postalCode.length === 0) { t3 = client.countryId; t3 = t3.length !== 0; } else t3 = true; else t3 = true; else t3 = true; else t3 = true; else t3 = true; if (t3 && client.get$areAddressesDifferent()) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "copy_billing"); if (t1 == null) t1 = ""; t9.push(new D.AppButton(_null, _null, t1.toUpperCase(), new R.ClientEditShippingAddressState_build_closure0(_this, viewModel), _null, _null)); } return Y.FormCard$(_null, t9, C.CrossAxisAlignment_3, 4, false, _null, true, t2); } }; R.ClientEditShippingAddressState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); }, $signature: 10 }; R.ClientEditShippingAddressState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); }, $signature: 10 }; R.ClientEditShippingAddressState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_edit_shipping_address$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; R.ClientEditShippingAddressState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._shippingAddress1Controller._change_notifier$_value.text); b.get$_client_model$_$this()._shippingAddress1 = t2; t2 = J.trim$0$s(t1._shippingAddress2Controller._change_notifier$_value.text); b.get$_client_model$_$this()._shippingAddress2 = t2; t2 = J.trim$0$s(t1._shippingCityController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingCity = t2; t2 = J.trim$0$s(t1._shippingStateController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingState = t2; t1 = J.trim$0$s(t1._shippingPostalCodeController._change_notifier$_value.text); b.get$_client_model$_$this()._shippingPostalCode = t1; return b; }, $signature: 40 }; R.ClientEditShippingAddressState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.client); }, $signature: 1 }; R.ClientEditShippingAddressState_build_closure.prototype = { call$1: function(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new R.ClientEditShippingAddressState_build__closure0(country))); }, $signature: 56 }; R.ClientEditShippingAddressState_build__closure0.prototype = { call$1: function(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_client_model$_$this()._shippingCountryId = t1; return b; }, $signature: 40 }; R.ClientEditShippingAddressState_build_closure0.prototype = { call$0: function() { this.viewModel.copyBillingAddress.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new R.ClientEditShippingAddressState_build__closure(this.$this)); }, $signature: 1 }; R.ClientEditShippingAddressState_build__closure.prototype = { call$1: function(duration) { this.$this.didChangeDependencies$0(); }, $signature: 45 }; M.ClientEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.ClientEditScreen_build_closure(), new M.ClientEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientEditVM); } }; M.ClientEditScreen_build_closure0.prototype = { call$1: function(store) { return M.ClientEditVM_ClientEditVM$fromStore(store); }, $signature: 2138 }; M.ClientEditScreen_build_closure.prototype = { call$2: function(context, vm) { return new M.ClientEdit(vm, null); }, $signature: 2139 }; M.ClientEditVM.prototype = { get$company: function() { return this.company; } }; M.ClientEditVM_ClientEditVM$fromStore_closure.prototype = { call$1: function(client) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateClient(client)); }, $signature: 2140 }; M.ClientEditVM_ClientEditVM$fromStore_closure3.prototype = { call$0: function() { var t1 = this.client; t1 = t1.rebuild$1(new M.ClientEditVM_ClientEditVM$fromStore__closure(t1)); return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateClient(t1)); }, $signature: 9 }; M.ClientEditVM_ClientEditVM$fromStore__closure.prototype = { call$1: function(b) { var t1 = this.client; b.get$_client_model$_$this()._shippingAddress1 = t1.address1; b.get$_client_model$_$this()._shippingAddress2 = t1.address2; b.get$_client_model$_$this()._shippingCity = t1.city; b.get$_client_model$_$this()._shippingState = t1.state; b.get$_client_model$_$this()._shippingPostalCode = t1.postalCode; b.get$_client_model$_$this()._shippingCountryId = t1.countryId; return b; }, $signature: 40 }; M.ClientEditVM_ClientEditVM$fromStore_closure2.prototype = { call$0: function() { var t1 = this.client; t1 = t1.rebuild$1(new M.ClientEditVM_ClientEditVM$fromStore__closure0(t1)); return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateClient(t1)); }, $signature: 9 }; M.ClientEditVM_ClientEditVM$fromStore__closure0.prototype = { call$1: function(b) { var t1 = this.client; b.get$_client_model$_$this()._address1 = t1.shippingAddress1; b.get$_client_model$_$this()._address2 = t1.shippingAddress2; b.get$_client_model$_$this()._city = t1.shippingCity; b.get$_client_model$_$this()._client_model$_state = t1.shippingState; b.get$_client_model$_$this()._postalCode = t1.shippingPostalCode; b.get$_client_model$_$this()._countryId = t1.shippingCountryId; return b; }, $signature: 40 }; M.ClientEditVM_ClientEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, t2, _null = null; M.createEntity(_null, _null, context, T.ClientEntity_ClientEntity(_null, _null, _null), _null, true); t1 = this.state.uiState; t2 = t1.clientUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; M.ClientEditVM_ClientEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new M.ClientEditVM_ClientEditVM$fromStore__closure1(this.store, context, this.state).call$0(); }, $signature: 14 }; M.ClientEditVM_ClientEditVM$fromStore__closure1.prototype = { call$0: function() { var t2, t3, t4, $navigator, t1 = this.store, client = t1.get$_store$_state().uiState.clientUIState.editing; if (!client.get$hasNameSet()) { E.showDialog(true, new M.ClientEditVM_ClientEditVM$fromStore___closure(), this.context, null, true, type$.legacy_ErrorDialog); return null; } t2 = new P._Future($.Zone__current, type$._Future_legacy_ClientEntity); t3 = $.$get$navigatorKey(); t3.toString; t4 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t3.get$currentState(); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ClientEntity), client)); return t2.then$1$1(0, new M.ClientEditVM_ClientEditVM$fromStore___closure0(client, t4, this.state, t1, $navigator), type$.Null).catchError$1(new M.ClientEditVM_ClientEditVM$fromStore___closure1()); }, $signature: 31 }; M.ClientEditVM_ClientEditVM$fromStore___closure.prototype = { call$1: function(context) { var t1 = $.$get$navigatorKey(); t1.toString; return new M.ErrorDialog(L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAClientOrContactName(), false, null); }, $signature: 21 }; M.ClientEditVM_ClientEditVM$fromStore___closure0.prototype = { call$1: function(savedClient) { var t3, _this = this, _s12_ = "/client/view", t1 = _this.client, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_client"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_client"); if (t2 == null) t2 = ""; } M.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); t1 = t1.get$isNew() && t2.uiState.clientUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedClient); } else { if (!t3.isPreviewVisible) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); M.viewEntity(false, savedClient, null, true); } }, $signature: 279 }; M.ClientEditVM_ClientEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new M.ClientEditVM_ClientEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; M.ClientEditVM_ClientEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; G.ClientView.prototype = { createState$0: function() { return new G._ClientViewState(null, C._StateLifecycle_0); } }; G._ClientViewState.prototype = { initState$0: function() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = U.TabController$(t1.isFilter ? 0 : state.uiState.clientUIState.tabIndex, 6, _this); _this._client_view$_controller = t2; t2 = t2.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_client_view$_onTabChanged()), false); }, _client_view$_onTabChanged$0: function() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._client_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.UpdateClientTab(t1)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._client_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._client_view$_controller.removeListener$1(0, _this.get$_client_view$_onTabChanged()); _this._client_view$_controller.dispose$0(0); _this.super$__ClientViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), viewModel = _this._widget.viewModel, client = viewModel.client, t2 = viewModel.state, t3 = t2.uiState.selectedCompanyIndex, userCompany = J.$index$asx(t2.userCompanyStates._list, t3).userCompany; t3 = _this._widget.isFilter; t2 = _this._client_view$_controller; t4 = E.Tab$(_null, t1.get$overview()); t5 = E.Tab$(_null, t1.get$details(t1)); t6 = client.documents._list; t7 = J.getInterceptor$asx(t6); t6 = E.Tab$(_null, t7.get$isEmpty(t6) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t7.get$length(t6)) + ")"); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "ledger"); t2 = E.TabBar$(t2, _null, true, _null, _null, H.setRuntimeTypeInfo([t4, t5, t6, E.Tab$(_null, t7 == null ? "" : t7), E.Tab$(_null, t1.get$activity()), E.Tab$(_null, t1.get$systemLogs())], type$.JSArray_legacy_Widget)); E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "client_view_fab", false, new G._ClientViewState_build_closure(context, userCompany, t1, client, store), t1.get$create(t1)); return new G.ViewScaffold(t3, client, new T.Builder(new G._ClientViewState_build_closure0(_this, viewModel, client), _null), _null, t2, _null); } }; G._ClientViewState_build_closure0.prototype = { call$1: function(context) { var _null = null, t1 = this.$this, t2 = t1._client_view$_controller, t3 = this.viewModel, t4 = t3.client, t5 = t4.id, t6 = type$.ValueKey_legacy_String, t7 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new Z.ClientOverview(t3, t1._widget.isFilter, _null), new G._ClientViewState_build__closure(t3, context)), N.RefreshIndicator$(new Q.ClientViewDetails(t4, _null), new G._ClientViewState_build__closure0(t3, context)), N.RefreshIndicator$(new T.ClientViewDocuments(t3, new D.ValueKey(t5, t6)), new G._ClientViewState_build__closure1(t3, context)), N.RefreshIndicator$(new U.ClientViewLedger(t3, new D.ValueKey(t5, t6)), new G._ClientViewState_build__closure2(t3, context)), N.RefreshIndicator$(new R.ClientViewActivity(t3, new D.ValueKey(t5, t6)), new G._ClientViewState_build__closure3(t3, context)), N.RefreshIndicator$(new K.ClientViewSystemLogs(t3, new D.ValueKey(t5, t6)), new G._ClientViewState_build__closure4(t3, context))], t7), t2, _null), 1), new Z.BottomButtons(this.client, C.EntityAction_viewStatement, C.EntityAction_clientPortal, true, true, _null)], t7), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; G._ClientViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build__closure1.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build__closure2.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build__closure3.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build__closure4.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._ClientViewState_build_closure.prototype = { call$0: function() { var _this = this; E.showDialog(true, new G._ClientViewState_build__closure5(_this.userCompany, _this.localization, _this.client, _this.store), _this.context, null, true, type$.legacy_SimpleDialog); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G._ClientViewState_build__closure5.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.userCompany, t2 = t1.can$2(C.UserPermission_view, C.EntityType_client) || t1.can$2(C.UserPermission_create, C.EntityType_client) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure(context, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = t1.can$2(C.UserPermission_view, C.EntityType_payment) || t1.can$2(C.UserPermission_create, C.EntityType_payment) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure0(context, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$payment(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = t1.can$2(C.UserPermission_view, C.EntityType_quote) || t1.can$2(C.UserPermission_create, C.EntityType_quote) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure1(context, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$quote(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t5 = t1.can$2(C.UserPermission_view, C.EntityType_project) || t1.can$2(C.UserPermission_create, C.EntityType_project) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure2(context, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$project(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), t6 = t1.can$2(C.UserPermission_view, C.EntityType_task) || t1.can$2(C.UserPermission_create, C.EntityType_task) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure3(context, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$task(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return E.SimpleDialog$(H.setRuntimeTypeInfo([t2, t3, t4, t5, t6, t1.can$2(C.UserPermission_view, C.EntityType_expense) || t1.can$2(C.UserPermission_create, C.EntityType_expense) ? Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), _null, new G._ClientViewState_build___closure4(context, _this.store, _this.client), false, _null, _null, _null, _null, L.Text$(_this.localization.get$expense(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; G._ClientViewState_build___closure.prototype = { call$0: function() { var t1 = this.context; K.Navigator_of(t1, false).pop$0(0); E.handleClientAction(t1, H.setRuntimeTypeInfo([this.client], type$.JSArray_legacy_BaseEntity), C.EntityAction_newInvoice); }, $signature: 1 }; G._ClientViewState_build___closure0.prototype = { call$0: function() { var t1 = this.context; K.Navigator_of(t1, false).pop$0(0); E.handleClientAction(t1, H.setRuntimeTypeInfo([this.client], type$.JSArray_legacy_BaseEntity), C.EntityAction_newPayment); }, $signature: 1 }; G._ClientViewState_build___closure1.prototype = { call$0: function() { var t1 = this.context; K.Navigator_of(t1, false).pop$0(0); E.handleClientAction(t1, H.setRuntimeTypeInfo([this.client], type$.JSArray_legacy_BaseEntity), C.EntityAction_newQuote); }, $signature: 1 }; G._ClientViewState_build___closure2.prototype = { call$0: function() { var t1 = this.context; K.Navigator_of(t1, false).pop$0(0); E.handleClientAction(t1, H.setRuntimeTypeInfo([this.client], type$.JSArray_legacy_BaseEntity), C.EntityAction_newProject); }, $signature: 1 }; G._ClientViewState_build___closure3.prototype = { call$0: function() { var t1 = this.context; K.Navigator_of(t1, false).pop$0(0); E.handleClientAction(t1, H.setRuntimeTypeInfo([this.client], type$.JSArray_legacy_BaseEntity), C.EntityAction_newTask); }, $signature: 1 }; G._ClientViewState_build___closure4.prototype = { call$0: function() { var _null = null, t1 = this.context; K.Navigator_of(t1, false).pop$0(0); M.createEntity(_null, _null, t1, M.ExpenseEntity_ExpenseEntity(this.client, _null, _null, _null, this.store.get$_store$_state(), _null, _null), _null, false); }, $signature: 1 }; G.__ClientViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; R.ClientViewActivity.prototype = { createState$0: function() { return new R._ClientViewActivityState(C._StateLifecycle_0); } }; R._ClientViewActivityState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var client = this._widget.viewModel.client, activities = client.activities, t1 = client.loadedAt; if (!(t1 != null && t1 > 0)) return new V.LoadingIndicator(null, false, null); return X.ScrollableListViewBuilder$(new R._ClientViewActivityState_build_closure(activities), J.get$length$asx(activities._list), C.EdgeInsets_0_16_0_16, new R._ClientViewActivityState_build_closure0()); } }; R._ClientViewActivityState_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; R._ClientViewActivityState_build_closure.prototype = { call$2: function(context, index) { return new N.ActivityListTile(J.$index$asx(this.activities._list, index), true, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 267 }; Q.ClientViewDetails.prototype = { createState$0: function() { return new Q._ClientViewDetailsState(C._StateLifecycle_0); } }; Q._ClientViewDetailsState.prototype = { _client_view_details$_launchURL$2: function(context, url) { return this._launchURL$body$_ClientViewDetailsState(context, url); }, _launchURL$body$_ClientViewDetailsState: function(context, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), t1; var $async$_client_view_details$_launchURL$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $async$goto = 5; return P._asyncAwait(T.canLaunch(url), $async$_client_view_details$_launchURL$2); case 5: // returning from await. $async$goto = $async$result ? 2 : 4; break; case 2: // then $async$goto = 6; return P._asyncAwait(T.launch(url, false, false), $async$_client_view_details$_launchURL$2); case 6: // returning from await. // goto join $async$goto = 3; break; case 4: // else throw H.wrapException(t1.get$couldNotLaunch()); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_client_view_details$_launchURL$2, $async$completer); }, _client_view_details$_launchStatus$2: function(context, snapshot) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = snapshot.error; if (t2 != null) return L.Text$(t1.get$error(t1) + ": " + H.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); else return C.Text_W3F; }, build$1: function(_, context) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new X.ScrollableListView(new Q._ClientViewDetailsState_build__buildDetailsList(this, this._widget.client, t1, context).call$0(), null, null, false, null); } }; Q._ClientViewDetailsState_build__buildDetailsList.prototype = { call$0: function() { var t5, billingAddress, shippingAddress, _this = this, _null = null, listTiles = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget), t1 = _this.client, t2 = _this.$this, t3 = _this.localization, t4 = _this.context; J.forEach$1$ax(t1.contacts._list, new Q._ClientViewDetailsState_build__buildDetailsList_closure(t2, listTiles, t3, t1, t4)); t5 = t1.website; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58240_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList_closure0(t2, t4, t1), t3.get$website(), t5)); t5 = t1.phone; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58530_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList_closure1(t2, t4, t1), t3.get$phone(t3), t5)); t5 = t1.vatNumber; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58280_MaterialIcons_null_false, _null, t3.get$vatNumber(), t5)); t5 = t1.idNumber; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_57627_MaterialIcons_null_false, _null, t3.get$idNumber(), t5)); billingAddress = Y.formatAddress("\n", false, t1); shippingAddress = Y.formatAddress("\n", true, t1); if (billingAddress.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58567_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList_closure2(t2, t4, t1), t3.get$billingAddress(), billingAddress)); if (shippingAddress.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58567_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList_closure3(t2, t4, t1), t3.get$shippingAddress(t3), shippingAddress)); listTiles.push(new T.Padding(C.EdgeInsets_16_16_16_16, B.FutureBuilder$(t2.get$_client_view_details$_launchStatus(), t2._client_view_details$_launched, type$.Null), _null)); return listTiles; }, $signature: 198 }; Q._ClientViewDetailsState_build__buildDetailsList_closure.prototype = { call$1: function(contact) { var _this = this, _null = null, t1 = _this.listTiles, t2 = _this.localization, t3 = H.setRuntimeTypeInfo([T.Expanded$(B.OutlinedButton$(L.Text$(t2.get$viewPortal().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new Q._ClientViewDetailsState_build__buildDetailsList__closure1(contact, _this.client)), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(B.OutlinedButton$(L.Text$(t2.get$copyLink().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new Q._ClientViewDetailsState_build__buildDetailsList__closure2(contact, t2)), 1)], type$.JSArray_legacy_Widget), t4 = contact.get$fullName().length === 0 ? t2.get$blankContact() : contact.get$fullName(), t5 = contact.email, t6 = _this.$this, t7 = _this.context; t1.push(G.AppListTile$(t3, t5, C.IconData_57898_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList__closure3(t6, contact, t7), t5, t4)); t3 = contact.phone; if (t3.length !== 0) { t4 = (contact.get$fullName().length === 0 ? t2.get$blankContact() : contact.get$fullName()) + "\n" + t3; t1.push(G.AppListTile$(_null, t3, C.IconData_58530_MaterialIcons_null_false, new Q._ClientViewDetailsState_build__buildDetailsList__closure4(t6, t7, contact), t2.get$phone(t2), t4)); } }, $signature: 554 }; Q._ClientViewDetailsState_build__buildDetailsList__closure1.prototype = { call$0: function() { T.launch(this.contact.link + "?silent=true&client_hash=" + this.client.clientHash, false, false); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList__closure2.prototype = { call$0: function() { T.Clipboard_setData(new T.ClipboardData(this.contact.link)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", "")); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList__closure3.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Q._ClientViewDetailsState_build__buildDetailsList___closure0(t1, this.contact, this.context)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q._ClientViewDetailsState_build__buildDetailsList___closure0.prototype = { call$0: function() { var t2, t1 = this.contact.email; if (t1.length === 0) return; t2 = this.$this; t2._client_view_details$_launched = t2._client_view_details$_launchURL$2(this.context, "mailto:" + t1); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList__closure4.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Q._ClientViewDetailsState_build__buildDetailsList___closure(t1, this.context, this.contact)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q._ClientViewDetailsState_build__buildDetailsList___closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.contact.phone, t3 = P.RegExp_RegExp("\\D", true, false); t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, "sms:" + H.stringReplaceAllUnchecked(t2, t3, "")); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList_closure0.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Q._ClientViewDetailsState_build__buildDetailsList__closure0(t1, this.context, this.client)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q._ClientViewDetailsState_build__buildDetailsList__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, Y.formatURL(this.client.website)); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList_closure1.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Q._ClientViewDetailsState_build__buildDetailsList__closure(t1, this.context, this.client)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Q._ClientViewDetailsState_build__buildDetailsList__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = P.RegExp_RegExp("\\D", true, false); t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, "sms:" + H.stringReplaceAllUnchecked(this.client.phone, t2, "")); }, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList_closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = D.isAndroid() ? "https://maps.google.com/?q=" : "http://maps.apple.com/?address="; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, C.JSString_methods.$add(t2, P._Uri__uriEncode(C.List_gnE, Y.formatAddress(",", false, this.client), C.C_Utf8Codec, false))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Q._ClientViewDetailsState_build__buildDetailsList_closure3.prototype = { call$0: function() { var t1 = this.$this, t2 = D.isAndroid() ? "https://maps.google.com/?q=" : "http://maps.apple.com/?address="; t1._client_view_details$_launched = t1._client_view_details$_launchURL$2(this.context, C.JSString_methods.$add(t2, P._Uri__uriEncode(C.List_gnE, Y.formatAddress(",", true, this.client), C.C_Utf8Codec, false))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.ClientViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.viewModel.client.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new T.ClientViewDocuments_build_closure(this, context), new T.ClientViewDocuments_build_closure0(this, context), null, null); } }; T.ClientViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; T.ClientViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; U.ClientViewLedger.prototype = { createState$0: function() { return new U._ClientViewLedgerState(C._StateLifecycle_0); } }; U._ClientViewLedgerState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var client = this._widget.viewModel.client, t1 = J.where$1$ax(client.ledger._list, new U._ClientViewLedgerState_build_closure()), ledgers = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); if (client.get$isStale()) return new V.LoadingIndicator(null, false, null); return X.ScrollableListViewBuilder$(new U._ClientViewLedgerState_build_closure0(ledgers, client), ledgers.length + 1, C.EdgeInsets_0_16_0_16, new U._ClientViewLedgerState_build_closure1()); } }; U._ClientViewLedgerState_build_closure.prototype = { call$1: function(ledger) { return ledger.adjustment !== 0; }, $signature: 2147 }; U._ClientViewLedgerState_build_closure1.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; U._ClientViewLedgerState_build_closure0.prototype = { call$2: function(context, index) { var t3, ledger, entity, t4, t5, t6, t7, t8, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = store.get$_store$_state(), t2 = this.ledgers; if (index === t2.length) { t2 = L.Icon$(Q.getEntityIcon(C.EntityType_client), _null, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "client_created"); t3 = this.client; t1 = T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Padding(C.EdgeInsets_0_0_2_0, L.Text$(Y.formatNumber(0, context, t3.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, C.TextAlign_5, _null, _null), _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null); return Q.ListTile$(false, _null, _null, true, false, _null, t2, _null, _null, false, _null, _null, L.Text$(Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t3.createdAt * 1000, false).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, _null); } ledger = t2[index]; t2 = state.getEntityMap$1(ledger.get$entityType()); t3 = ledger.get$entityId(); entity = J.$index$asx(t2._map$_map, t3); if (entity == null) { P.print("Error: unable to find entity " + ledger.toString$0(0)); return T.SizedBox$(_null, _null, _null); } t2 = this.client.id; t3 = type$.JSArray_legacy_Widget; t1 = T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(H.S(t1.lookup$1(ledger.get$entityType().toString$0(0))) + " \u203a " + H.S(entity.get$listDisplayName()), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Padding(C.EdgeInsets_0_0_2_0, L.Text$(Y.formatNumber(ledger.balance, context, t2, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, C.TextAlign_5, _null, _null), _null)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null); t4 = ledger.createdAt; t4 = L.Text$(Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t4 * 1000, false).toIso8601String$0(), context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = ledger.adjustment; t6 = state.prefState; t6 = t5 <= 0 ? t6.get$colorThemeModel().colorSuccess : t6.get$colorThemeModel().colorDanger; t7 = K.BorderRadius$all(new P.Radius(2, 2)); t8 = t5 > 0 ? "+" : ""; t3 = T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, t4, _null), new T.Padding(C.EdgeInsets_0_4_0_0, M.DecoratedBox$(new T.Padding(C.EdgeInsets_4_4_4_4, L.Text$(C.JSString_methods.$add(t8, Y.formatNumber(t5, context, t2, _null, C.FormatNumberType_0, true, _null, false)), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_5, _null, _null), _null), new S.BoxDecoration(t6, _null, _null, t7, _null, _null, C.BoxShape_0), C.DecorationPosition_0), _null)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null); return Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityIcon(ledger.get$entityType()), _null, _null), new U._ClientViewLedgerState_build__closure(entity), new U._ClientViewLedgerState_build__closure0(entity), false, _null, _null, t3, _null, t1, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; U._ClientViewLedgerState_build__closure0.prototype = { call$0: function() { return M.viewEntity(false, this.entity, null, false); }, $signature: 0 }; U._ClientViewLedgerState_build__closure.prototype = { call$0: function() { return L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([this.entity], type$.JSArray_legacy_BaseEntity), false); }, $signature: 26 }; Z.ClientOverview.prototype = { build$1: function(_, context) { var statics, t3, fields, t4, t5, t6, t7, group, t8, user, tokenMap, gatewayMap, linkMap, t9, t10, t11, t12, t13, t14, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, client = t2.client, company = t2.company; t2 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); statics = t2.staticState; t3 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_empty(t3, t3); t4 = client.groupId; t5 = t4.length !== 0; if (t5) { t6 = t2.userCompanyStates; t7 = t2.uiState.selectedCompanyIndex; group = J.$index$asx(J.$index$asx(t6._list, t7).groupState.map._map$_map, t4); } else group = _null; t4 = client.assignedUserId; t6 = t4 != null; if (t6 && t4.length !== 0) { t7 = t2.userCompanyStates; t8 = t2.uiState.selectedCompanyIndex; user = J.$index$asx(t7._list, t8).userState.$get$1(0, t4); } else user = _null; tokenMap = P.LinkedHashMap_LinkedHashMap$_empty(t3, type$.legacy_List_legacy_GatewayTokenEntity); gatewayMap = P.LinkedHashMap_LinkedHashMap$_empty(t3, type$.legacy_CompanyGatewayEntity); linkMap = P.LinkedHashMap_LinkedHashMap$_empty(t3, t3); J.forEach$1$ax(client.gatewayTokens._list, new Z.ClientOverview_build_closure(t2, gatewayMap, linkMap, tokenMap)); t3 = client.settings; t7 = t3.languageId; if (t7 != null && t7.length !== 0 && t7 != company.settings.languageId) { t7 = J.$index$asx(statics.languageMap._map$_map, t7); fields.$indexSet(0, "language", t7 == null ? _null : t7.name); } if (client.get$hasCurrency()) { t7 = t3.currencyId; t8 = company.settings.currencyId; t7 = t7 !== (t8 == null ? "1" : t8); } else t7 = false; if (t7) { t7 = statics.currencyMap; t3 = t3.currencyId; t3 = J.$index$asx(t7._map$_map, t3); fields.$indexSet(0, "currency", t3 == null ? _null : t3.name); } t3 = client.customValue1; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client1"), Y.formatCustomValue(context, "client1", t3)); t3 = client.customValue2; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client2"), Y.formatCustomValue(context, "client2", t3)); t3 = client.customValue3; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client3"), Y.formatCustomValue(context, "client3", t3)); t3 = client.customValue4; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("client4"), Y.formatCustomValue(context, "client4", t3)); t3 = t1.get$paidToDate(); t7 = client.id; t8 = Y.formatNumber(client.paidToDate, context, t7, _null, C.FormatNumberType_0, true, _null, false); t9 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([D.EntityHeader$(client, t3, t1.get$balanceDue(), Y.formatNumber(client.balance, context, t7, _null, C.FormatNumberType_0, true, _null, false), _null, _null, t8), new G.ListDivider(_null)], t9); t3 = client.privateNotes; if (t3.length !== 0) C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([new S.IconMessage(t3, C.IconData_58286_MaterialIcons_null_false, _null, _null), new G.ListDivider(_null)], t9)); if (t5) t8.push(O.EntityListTile$(group, _this.isFilter, _null)); for (t3 = tokenMap.get$keys(tokenMap), t3 = t3.get$iterator(t3), t5 = t1.localeCode; t3.moveNext$0();) { t10 = t3.get$current(t3); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "gateway"); t11 = (t11 == null ? "" : t11) + " \u203a " + gatewayMap.$index(0, t10).label; t12 = tokenMap.$index(0, t10); t12.toString; t13 = H._arrayInstanceType(t12)._eval$1("MappedListIterable<1,TokenMeta*>"); t13 = T.Column$(P.List_List$of(new H.MappedListIterable(t12, new Z.ClientOverview_build_closure0(), t13), true, t13._eval$1("ListIterable.E")), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); t12 = linkMap.containsKey$1(0, t10) ? new Z.ClientOverview_build_closure1(linkMap, t10) : _null; t14 = B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_58497_MaterialIcons_null_false, _null, _null, _null), 24, new Z.ClientOverview_build_closure2(), C.EdgeInsets_8_8_8_8, _null, _null); t10 = linkMap.containsKey$1(0, t10) ? new T.IgnorePointer(true, _null, B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_58460_MaterialIcons_null_true, _null, _null, _null), 24, new Z.ClientOverview_build_closure3(), C.EdgeInsets_8_8_8_8, _null, _null), _null) : _null; C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([Q.ListTile$(false, _null, _null, true, false, _null, new T.IgnorePointer(true, _null, t14, _null), _null, t12, false, _null, _null, t13, _null, new L.Text(t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10), new G.ListDivider(_null)], t9)); } if (t6 && t4.length !== 0) t8.push(O.EntityListTile$(user, _this.isFilter, _null)); t8.push(new T.FieldGrid(fields, _null)); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t3 = t1.get$invoices(); t4 = $.$get$memoizedInvoiceStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_invoice, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_task)) { t3 = t1.get$tasks(); t4 = $.$get$memoizedTaskStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_task, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).taskState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_expense)) { t3 = t1.get$expenses(); t4 = $.$get$memoizedExpenseStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_expense, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_payment)) { t3 = t1.get$payments(); t4 = $.$get$memoizedPaymentStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t5 = t5._list; t10 = J.getInterceptor$asx(t5); t8.push(new O.EntitiesListTile(client, C.EntityType_payment, t3, t4.call$3(t7, t10.$index(t5, t6).paymentState.map, t10.$index(t5, t6).invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_quote)) { t3 = t1.get$quotes(t1); t4 = $.$get$memoizedQuoteStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_quote, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).quoteState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_credit)) { t3 = t1.get$credits(); t4 = $.$get$memoizedCreditStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_credit, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).creditState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_project)) { t3 = t1.get$projects(); t4 = $.$get$memoizedProjectStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_project, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).projectState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) { t3 = t1.get$recurringInvoices(); t4 = $.$get$memoizedRecurringInvoiceStatsForClient(); t5 = t2.userCompanyStates; t6 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_recurringInvoice, t3, t4.call$2(t7, J.$index$asx(t5._list, t6).recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_recurringExpense)) { t3 = t1.get$recurringExpenses(); t4 = $.$get$memoizedRecurringExpenseStatsForClient(); t5 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t8.push(new O.EntitiesListTile(client, C.EntityType_recurringExpense, t3, t4.call$2(t7, J.$index$asx(t5._list, t2).recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); } t1 = client.publicNotes; if (t1.length !== 0) C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([new S.IconMessage(t1, _null, _null, _null), new G.ListDivider(_null)], t9)); return new X.ScrollableListView(t8, _null, _null, false, _null); } }; Z.ClientOverview_build_closure.prototype = { call$1: function(gatewayToken) { var customerReference, _this = this, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex, companyGateway = J.$index$asx(t1.userCompanyStates._list, t2).companyGatewayState.$get$1(0, gatewayToken.companyGatewayId); if (!companyGateway.get$isNew() && !companyGateway.isDeleted) { customerReference = gatewayToken.customerReference; _this.gatewayMap.$indexSet(0, customerReference, companyGateway); _this.linkMap.$indexSet(0, customerReference, A.GatewayEntity_getClientUrl(customerReference, companyGateway.gatewayId)); t1 = _this.tokenMap; if (t1.containsKey$1(0, customerReference)) t1.$index(0, customerReference).push(gatewayToken); else t1.$indexSet(0, customerReference, H.setRuntimeTypeInfo([gatewayToken], type$.JSArray_legacy_GatewayTokenEntity)); } }, $signature: 2148 }; Z.ClientOverview_build_closure0.prototype = { call$1: function(token) { return new K.TokenMeta(token.meta, null); }, $signature: 2149 }; Z.ClientOverview_build_closure1.prototype = { call$0: function() { return T.launch(this.linkMap.$index(0, this.customerReference), null, false); }, $signature: 30 }; Z.ClientOverview_build_closure2.prototype = { call$0: function() { return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z.ClientOverview_build_closure3.prototype = { call$0: function() { return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.ClientViewSystemLogs.prototype = { createState$0: function() { return new K._ClientViewSystemLogsState(C._StateLifecycle_0); } }; K._ClientViewSystemLogsState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.client.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var client = this._widget.viewModel.client; if (client.get$isStale()) return new V.LoadingIndicator(null, false, null); return new V.SystemLogViewer(client.systemLogs, null); } }; X.ClientViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.ClientViewScreen_build_closure(this), new X.ClientViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientViewVM); } }; X.ClientViewScreen_build_closure0.prototype = { call$1: function(store) { return X.ClientViewVM_ClientViewVM$fromStore(store); }, $signature: 2150 }; X.ClientViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new G.ClientView(vm, this.$this.isFilter, vm.state.uiState.clientUIState.tabIndex, null); }, $signature: 2151 }; X.ClientViewVM.prototype = { get$company: function() { return this.company; } }; X.ClientViewVM_ClientViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClient(completer, this.client.id)); return completer.future; }, $signature: 17 }; X.ClientViewVM_ClientViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; X.ClientViewVM_ClientViewVM$fromStore_closure0.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveClientDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.client)); t1.then$1$1(0, new X.ClientViewVM_ClientViewVM$fromStore__closure0(context), type$.Null).catchError$1(new X.ClientViewVM_ClientViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; X.ClientViewVM_ClientViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; X.ClientViewVM_ClientViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new X.ClientViewVM_ClientViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; X.ClientViewVM_ClientViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; X.ClientViewVM_ClientViewVM$fromStore_closure1.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new X.ClientViewVM_ClientViewVM$fromStore__closure(t2, this.client), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; X.ClientViewVM_ClientViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, this.client.id)); }, $signature: 95 }; G.CompanyGatewayList.prototype = { createState$0: function() { return new G._CompanyGatewayListState(C._StateLifecycle_0); } }; G._CompanyGatewayListState.prototype = { initState$0: function() { this.super$State$initState(); this._company_gateway_list$_controller = F.ScrollController$(null, 0); }, dispose$0: function(_) { this._company_gateway_list$_controller.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var _this = this, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), listUIState = state.uiState.companyGatewayUIState.listUIState, t1 = listUIState.selectedIds, t2 = _this._widget.viewModel.state, t3 = t2.uiState.selectedCompanyIndex; t2 = J.$index$asx(t2.userCompanyStates._list, t3).lastUpdated; if (t2 <= 0 && J.get$isEmpty$asx(_this._widget.viewModel.companyGatewayList)) t1 = new V.LoadingIndicator(null, false, null); else { t2 = _this._company_gateway_list$_controller; t2 = N.RefreshIndicator$(Z.ReorderableListView$(J.map$1$1$ax(_this._widget.viewModel.companyGatewayList, new G._CompanyGatewayListState_build_closure(_this, state, t1 != null, listUIState), type$.legacy_CompanyGatewayListItem).toList$0(0), new G._CompanyGatewayListState_build_closure0(_this), t2), new G._CompanyGatewayListState_build_closure1(_this, context)); t1 = t2; } return t1; } }; G._CompanyGatewayListState_build_closure1.prototype = { call$0: function() { return this.$this._widget.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._CompanyGatewayListState_build_closure0.prototype = { call$2: function(oldIndex, newIndex) { var t1 = this.$this; if (newIndex > J.get$length$asx(t1._widget.viewModel.companyGatewayList)) newIndex = J.get$length$asx(t1._widget.viewModel.companyGatewayList); if (oldIndex < newIndex) --newIndex; t1._widget.viewModel.onSortChanged.call$2(oldIndex, newIndex); }, $signature: 141 }; G._CompanyGatewayListState_build_closure.prototype = { call$1: function(companyGatewayId) { var t5, t6, _this = this, t1 = _this.$this, companyGateway = J.$index$asx(t1._widget.viewModel.companyGatewayMap._map$_map, companyGatewayId), t2 = "__company_gateway_" + H.S(companyGatewayId), t3 = _this.state, t4 = t3.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3.userCompanyStates._list, t4).userCompany.user; t3 = t1._widget.viewModel; t5 = t3.filter; t1 = t3.state.uiState.settingsUIState.entityType !== C.EntityType_company ? new G._CompanyGatewayListState_build__closure(t1, companyGatewayId) : null; if (_this.isInMultiselect) { t3 = companyGateway.id; t6 = _this.listUIState.selectedIds; t3 = t6 != null && J.contains$1$asx(t6._list, t3); } else t3 = false; return new Z.CompanyGatewayListItem(t4, companyGateway, t5, t1, t3, new D.ValueKey(t2, type$.ValueKey_legacy_String)); }, $signature: 2155 }; G._CompanyGatewayListState_build__closure.prototype = { call$0: function() { return this.$this._widget.viewModel.onRemovePressed.call$1(this.companyGatewayId); }, $signature: 9 }; Z.CompanyGatewayListItem.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = type$.legacy_AppLocalization, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1), t3 = _this.filter, filterMatch = t3 != null && t3.length !== 0 ? _this.companyGateway.matchesFilterValue$1(t3) : _null; t3 = state.uiState; t4 = t3.companyGatewayUIState.listUIState.selectedIds; t5 = state.userCompanyStates; t3 = t3.selectedCompanyIndex; t3 = J.$index$asx(t5._list, t3).userCompany; t5 = _this.companyGateway; t6 = _this.onRemovePressed; if (t6 == null) t1 = _null; else { t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); t6 = new T.Padding(C.EdgeInsets_0_0_16_0, new X.AppTextButton(t1.get$remove(t1), t6, false, _null, _null), _null); t1 = t6; } t4 = t4 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new Z.CompanyGatewayListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5.get$listDisplayName(), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t7 = H.setRuntimeTypeInfo([], t7); if (t5.isTestMode) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "test_mode"); t7.push(L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null)); } t7.push(filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t7.push(new L.EntityStateLabel(t5, _null)); return new L.DismissibleEntity(t3, t5, Q.ListTile$(false, _null, _null, true, false, _null, t4, _null, new Z.CompanyGatewayListItem_build_closure0(_this, context), false, _null, _null, T.Column$(t7, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, t6, t1), false, true, true, _null); }, get$user: function() { return this.user; }, get$companyGateway: function() { return this.companyGateway; } }; Z.CompanyGatewayListItem_build_closure0.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.companyGateway, false, false); }, $signature: 0 }; Z.CompanyGatewayListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; S.CompanyGatewayListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.CompanyGatewayListBuilder_build_closure(), S.company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayListVM); } }; S.CompanyGatewayListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { return new G.CompanyGatewayList(viewModel, null); }, $signature: 2156 }; S.CompanyGatewayListVM.prototype = {}; S.CompanyGatewayListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; S.CompanyGatewayListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; S.CompanyGatewayListVM_fromStore_closure1.prototype = { call$1: function(gatewayId) { var settings, t1 = this.gatewayIds; J.remove$1$ax(t1, gatewayId); settings = this.uiState.get$settings().rebuild$1(new S.CompanyGatewayListVM_fromStore__closure(t1)); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 7 }; S.CompanyGatewayListVM_fromStore__closure.prototype = { call$1: function(b) { var t1 = this.gatewayIds, t2 = J.getInterceptor$asx(t1); t1 = t2.get$isEmpty(t1) ? "0" : t2.join$1(t1, ","); b.get$_settings_model$_$this()._companyGatewayIds = t1; return b; }, $signature: 13 }; S.CompanyGatewayListVM_fromStore_closure0.prototype = { call$2: function(oldIndex, newIndex) { var settings, t1 = this.gatewayIds, t2 = J.getInterceptor$asx(t1), gatewayId = t2.$index(t1, oldIndex); t2.remove$1(t1, gatewayId); t2.insert$2(t1, newIndex, gatewayId); settings = this.uiState.get$settings().rebuild$1(new S.CompanyGatewayListVM_fromStore__closure0(t1)); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 141 }; S.CompanyGatewayListVM_fromStore__closure0.prototype = { call$1: function(b) { var t1 = J.join$1$ax(this.gatewayIds, ","); b.get$_settings_model$_$this()._companyGatewayIds = t1; return b; }, $signature: 13 }; D.CompanyGatewayScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, listUIState = t2.companyGatewayUIState.listUIState, settingsUIState = t2.settingsUIState, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "company_gateways"); t3 = L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); t6 = this.viewModel; if (t6.isInMultiselect) { t4 = t1.get$actions(t1); t6 = J.get$isEmpty$asx(listUIState.selectedIds._list) ? _null : new D.CompanyGatewayScreen_build_closure(this, listUIState, store); t5.push(V.SaveCancelButtons$(false, true, true, new D.CompanyGatewayScreen_build_closure0(store), t6, t4)); } else { t4 = H.setRuntimeTypeInfo([], t4); if (settingsUIState.entityType !== C.EntityType_company && !state.isSaving) t4.push(U.TextButton$(false, L.Text$(t1.get$reset(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, store.get$_store$_state().get$headerTextColor(), _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, new D.CompanyGatewayScreen_build_closure1(settingsUIState, store), _null)); t7 = settingsUIState.isChanged; t6 = t6.onSavePressed; t4.push(V.SaveCancelButtons$(true, t7, true, D.getLayout(context) === C.AppLayout_mobile || !t7 ? _null : new D.CompanyGatewayScreen_build_closure2(settingsUIState, store), t6, _null)); C.JSArray_methods.addAll$1(t5, t4); } t4 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_companyGateway, false, C.List_empty14, new D.CompanyGatewayScreen_build_closure3(store), new D.CompanyGatewayScreen_build_closure4(store), new D.CompanyGatewayScreen_build_closure5(store), new D.CompanyGatewayScreen_build_closure6(store), new D.CompanyGatewayScreen_build_closure7(store), _null, new D.CompanyGatewayScreen_build_closure8(store), _null, H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), C.List_empty15, _null); if (state.prefState.appLayout === C.AppLayout_mobile) { t6 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t6._list, t2).userCompany.isAdmin; } else t2 = false; t1 = t2 ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "company_gateway_fab", false, new D.CompanyGatewayScreen_build_closure9(settingsUIState, context), t1.get$newCompanyGateway()) : _null; return Y.ListScaffold$(t5, C.List_empty8, t3, new S.CompanyGatewayListBuilder(_null), t4, C.EntityType_companyGateway, t1, 0, _null, new D.CompanyGatewayScreen_build_closure10(store), new D.CompanyGatewayScreen_build_closure11(store)); } }; D.CompanyGatewayScreen_build_closure11.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.StartCompanyGatewayMultiselect()); }, $signature: 9 }; D.CompanyGatewayScreen_build_closure10.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.companyGatewayUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearCompanyGatewayMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartCompanyGatewayMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.CompanyGatewayScreen_build_closure.prototype = { call$1: function(context) { return this.$call$body$CompanyGatewayScreen_build_closure(context); }, $call$body$CompanyGatewayScreen_build_closure: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, companyGateways, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start companyGateways = J.map$1$1$ax($async$self.listUIState.selectedIds._list, new D.CompanyGatewayScreen_build__closure0($async$self.$this), type$.legacy_CompanyGatewayEntity).toList$0(0); t1 = new P._Future($.Zone__current, type$._Future_Null); t1.then$1$1(0, new D.CompanyGatewayScreen_build__closure1($async$self.store), type$.dynamic); $async$goto = 2; return P._asyncAwait(L.showEntityActionsDialog(new P._AsyncCompleter(t1, type$._AsyncCompleter_Null), companyGateways, true), $async$call$1); case 2: // returning from await. // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; D.CompanyGatewayScreen_build__closure0.prototype = { call$1: function(companyGatewayId) { return J.$index$asx(this.$this.viewModel.companyGatewayMap._map$_map, companyGatewayId); }, $signature: 286 }; D.CompanyGatewayScreen_build__closure1.prototype = { call$1: function(_) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearCompanyGatewayMultiselect()); }, $signature: 558 }; D.CompanyGatewayScreen_build_closure0.prototype = { call$1: function(context) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearCompanyGatewayMultiselect()); }, $signature: 48 }; D.CompanyGatewayScreen_build_closure1.prototype = { call$0: function() { var settings = this.settingsUIState.get$settings().rebuild$1(new D.CompanyGatewayScreen_build__closure()); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 1 }; D.CompanyGatewayScreen_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._companyGatewayIds = ""; return b; }, $signature: 13 }; D.CompanyGatewayScreen_build_closure2.prototype = { call$1: function(_) { var _null = null, t1 = this.store; if (this.settingsUIState.isChanged) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ResetSettings()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "online_payments", false, _null)); }, $signature: 14 }; D.CompanyGatewayScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterCompanyGatewaysByCustom1(value)); }, $signature: 5 }; D.CompanyGatewayScreen_build_closure5.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterCompanyGatewaysByCustom2(value)); }, $signature: 5 }; D.CompanyGatewayScreen_build_closure6.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterCompanyGatewaysByCustom3(value)); }, $signature: 5 }; D.CompanyGatewayScreen_build_closure7.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterCompanyGatewaysByCustom4(value)); }, $signature: 5 }; D.CompanyGatewayScreen_build_closure8.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterCompanyGatewaysByState(state)); }, $signature: 53 }; D.CompanyGatewayScreen_build_closure3.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.companyGatewayUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearCompanyGatewayMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartCompanyGatewayMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.CompanyGatewayScreen_build_closure9.prototype = { call$0: function() { if (this.settingsUIState.entityType === C.EntityType_company) M.createEntityByType(true, this.context, C.EntityType_companyGateway); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.CompanyGatewayScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.CompanyGatewayScreenBuilder_build_closure(), Y.company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayScreenVM); } }; Y.CompanyGatewayScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new D.CompanyGatewayScreen(vm, null); }, $signature: 2157 }; Y.CompanyGatewayScreenVM.prototype = {}; Y.CompanyGatewayScreenVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Y.CompanyGatewayScreenVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; Y.CompanyGatewayScreenVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; V.CompanyGatewayEdit.prototype = { createState$0: function() { return new V._CompanyGatewayEditState(O.FocusScopeNode$(true, null, false), null, C._StateLifecycle_0); } }; V._CompanyGatewayEditState.prototype = { initState$0: function() { this.super$State$initState(); this._company_gateway_edit$_controller = U.TabController$(0, 3, this); }, didChangeDependencies$0: function() { var t2, enabledGatewayIds, _this = this, t1 = _this._widget.viewModel, companyGateway = t1.companyGateway, gateway = J.$index$asx(t1.state.staticState.gatewayMap._map$_map, companyGateway.gatewayId); t1 = gateway == null; t2 = t1 ? null : gateway.options; t2 = t2 == null ? null : t2.get$keys(t2); if (t2 == null) t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); enabledGatewayIds = J.where$1$ax(t2, new V._CompanyGatewayEditState_didChangeDependencies_closure(companyGateway)); if (enabledGatewayIds.get$isNotEmpty(enabledGatewayIds)) _this._company_gateway_edit$_gatewayTypeId = enabledGatewayIds.get$first(enabledGatewayIds); else { t1 = t1 ? null : gateway.defaultGatewayTypeId; _this._company_gateway_edit$_gatewayTypeId = t1 == null ? "1" : t1; } _this.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { this._company_gateway_edit$_controller.dispose$0(0); this.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t5, t6, gateway, t7, accountId, connectGateways, disableSave, t8, t9, enabledGatewayIds, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, _this = this, _null = null, _s10_ = "account_id", _s32_ = "d14dd26a47cecc30fdd65700bfb67b34", _s13_ = "gateway_setup", _s24_ = "no_payment_types_enabled", viewModel = _this._widget.viewModel, state = viewModel.state, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), companyGateway = viewModel.companyGateway, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, origCompanyGateway = J.$index$asx(t2._list, t4).companyGatewayState.$get$1(0, companyGateway.id); t4 = state.staticState.gatewayMap; t2 = companyGateway.gatewayId; t5 = t4._map$_map; t6 = J.getInterceptor$asx(t5); gateway = t6.$index(t5, t2); t7 = J.$index$asx(companyGateway.get$parsedConfig(), _s10_); accountId = J.toString$0$(t7 == null ? "" : t7); t7 = type$.JSArray_legacy_String; connectGateways = H.setRuntimeTypeInfo([_s32_, "8fdeed552015b3c7b44ed6c8ebd9e992"], t7); disableSave = C.JSArray_methods.contains$1(connectGateways, t2) && companyGateway.get$isNew() || Y.cleanApiUrl(state.authState.url) === "https://demo.invoiceninja.com"; t8 = gateway == null; t9 = t8 ? _null : gateway.options; t9 = t9 == null ? _null : t9.get$keys(t9); if (t9 == null) t9 = H.setRuntimeTypeInfo([], t7); enabledGatewayIds = J.where$1$ax(t9, new V._CompanyGatewayEditState_build_closure(companyGateway)); t9 = companyGateway.get$isNew() ? t1.get$newCompanyGateway() : origCompanyGateway.get$listDisplayName(); t10 = disableSave ? _null : viewModel.onSavePressed; t11 = viewModel.onCancelPressed; t3 = t3.settingsUIState.updatedAt; t12 = _this._company_gateway_edit$_controller; t13 = D.getLayout(context); t14 = t1.localeCode; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "credentials"); t15 = E.Tab$(_null, t15 == null ? "" : t15); t16 = E.Tab$(_null, t1.get$settings()); t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "limits_and_fees"); t18 = type$.JSArray_legacy_Widget; t17 = E.TabBar$(t12, _null, t13 === C.AppLayout_mobile, new D.ValueKey(t3, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([t15, t16, E.Tab$(_null, t17 == null ? "" : t17)], t18)); t16 = $.$get$_CompanyGatewayEditState__formKey(); t15 = _this._company_gateway_edit$_controller; t3 = H.setRuntimeTypeInfo([], t18); if (companyGateway.get$isNew()) { t12 = "__gateway_" + t2 + "__"; t4 = $.$get$memoizedGatewayList().call$1(t4); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "provider"); if (t13 == null) t13 = ""; t3.push(F.EntityDropdown$(true, false, false, t2, t4, _null, C.EntityType_gateway, new D.ValueKey(t12, type$.ValueKey_legacy_String), t13, _null, new V._CompanyGatewayEditState_build_closure0(viewModel, companyGateway), _null, _null, _null)); } if (C.JSArray_methods.contains$1(connectGateways, t2)) if (companyGateway.get$isNew() || accountId.length === 0) { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), _s13_); if (t4 == null) t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_); t4 = t4.toUpperCase(); t4 = H.setRuntimeTypeInfo([new D.AppButton(_null, _null, t4, state.isSaving ? _null : new V._CompanyGatewayEditState_build_closure1(viewModel, context, companyGateway), _null, _null)], t18); if (t2 === _s32_) t4.push(new T.Padding(C.EdgeInsets_0_20_0_0, B.OutlinedButton$(new T.Padding(C.EdgeInsets_8_8_8_8, new U.IconText(t1.get$learnMore().toUpperCase(), C._MdiIconData_ujl, _null, _null, _null), _null), new V._CompanyGatewayEditState_build_closure2()), _null)); C.JSArray_methods.addAll$1(t3, t4); } else { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), _s10_); t3.push(S.DecoratedFormField$(false, _null, false, false, _null, _null, false, _null, _null, accountId, _null, false, false, _null, _null, t4 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s10_) : t4, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); } else t3.push(new V.GatewayConfigSettings(companyGateway, viewModel, new D.ValueKey("__" + t2 + "__", type$.ValueKey_legacy_String))); t3 = H.setRuntimeTypeInfo([Y.FormCard$(_null, t3, C.CrossAxisAlignment_3, 4, false, _null, false, _null)], t18); t4 = H.setRuntimeTypeInfo([], t18); if (t2 !== "54faab2ab6e3223dbe848b1686490baa") t4.push(S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, companyGateway.label, _null, false, false, _null, _null, t1.get$label(t1), _null, _null, false, new V._CompanyGatewayEditState_build_closure3(viewModel, companyGateway), _null, _null, true, _null, _null, C.TextAlign_4, _null)); t2 = t6.$index(t5, t2); if ((t2 == null ? _null : t2.get$supportsTokenBilling()) === true) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "capture_card"); if (t2 == null) t2 = ""; t5 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t4.push(new Q.AppDropdownButton(t2, companyGateway.tokenBilling, new V._CompanyGatewayEditState_build_closure4(viewModel, companyGateway), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["always", "optout", "optin", "disabled"], t7), new V._CompanyGatewayEditState_build_closure5(t1), t5), true, t5._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)); } t4.push(T.SizedBox$(_null, 16, _null)); t2 = t8 ? _null : gateway.options; t2 = t2 == null ? _null : t2.get$keys(t2); t2 = J.get$iterator$ax(t2 == null ? H.setRuntimeTypeInfo([], t7) : t2); t5 = companyGateway.feesAndLimitsMap; for (; t2.moveNext$0();) { t6 = t2.get$current(t2); t7 = C.Map_s86xu.$index(0, t6); t7 = t1.lookup$1(t7 == null ? "" : t7); t12 = K.Theme_of(context).accentColor; t13 = J.$index$asx(t5._map$_map, t6); if (t13 == null) t13 = O.FeesAndLimitsSettings_FeesAndLimitsSettings(_null); t4.push(O.SwitchListTile$(t12, _null, new V._CompanyGatewayEditState_build_closure6(companyGateway, t6, viewModel), _null, _null, new L.Text(t7, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13.isEnabled)); } t2 = Y.FormCard$(_null, t4, _null, 4, false, _null, false, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "required_fields"); if (t4 == null) t4 = ""; t4 = L.Text$(t4, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null); t5 = K.Theme_of(context).accentColor; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "client_name"); t5 = D.CheckboxListTile$(t5, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure7(viewModel, companyGateway), L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireClientName); t6 = K.Theme_of(context).accentColor; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "client_phone"); t6 = D.CheckboxListTile$(t6, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure8(viewModel, companyGateway), L.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireClientPhone); t7 = K.Theme_of(context).accentColor; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "contact_name"); t7 = D.CheckboxListTile$(t7, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure9(viewModel, companyGateway), L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireContactName); t12 = K.Theme_of(context).accentColor; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "contact_email"); t12 = D.CheckboxListTile$(t12, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure10(viewModel, companyGateway), L.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireContactEmail); t13 = D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure11(viewModel, companyGateway), L.Text$(t1.get$postalCode(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requirePostalCode); t19 = K.Theme_of(context).accentColor; t20 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "cvv"); t19 = D.CheckboxListTile$(t19, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure12(viewModel, companyGateway), L.Text$(t20 == null ? "" : t20, _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireCvv); t20 = D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure13(viewModel, companyGateway), L.Text$(t1.get$billingAddress(), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireBillingAddress); t21 = D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_0, _null, _null, new V._CompanyGatewayEditState_build_closure14(viewModel, companyGateway), L.Text$(t1.get$shippingAddress(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), companyGateway.requireShippingAddress); t22 = T.SizedBox$(_null, 16, _null); t23 = K.Theme_of(context).accentColor; t24 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "update_address"); t24 = L.Text$(t24 == null ? "" : t24, _null, _null, _null, _null, _null, _null, _null, _null, _null); t25 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "update_address_help"); t2 = H.setRuntimeTypeInfo([t2, Y.FormCard$(_null, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_16_0_16, t4, _null), t5, t6, t7, t12, t13, t19, t20, t21, t22, O.SwitchListTile$(t23, _null, new V._CompanyGatewayEditState_build_closure15(viewModel, companyGateway), _null, L.Text$(t25 == null ? "" : t25, _null, _null, _null, _null, _null, _null, _null, _null, _null), t24, companyGateway.updateDetails)], t18), C.CrossAxisAlignment_0, 4, false, _null, false, _null)], t18); if ((t8 ? _null : gateway.isOffsite) !== true) { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "accepted_card_logos"); if (t4 == null) t4 = ""; t2.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_16_0_16, L.Text$(t4, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), _null), new V.CardListTile(viewModel, "5", 1, _null), new V.CardListTile(viewModel, "6", 2, _null), new V.CardListTile(viewModel, "7", 4, _null), new V.CardListTile(viewModel, "8", 16, _null), new V.CardListTile(viewModel, "9", 8, _null)], t18), C.CrossAxisAlignment_0, 4, false, _null, false, _null)); } t2 = H.setRuntimeTypeInfo([new X.ScrollableListView(t3, _null, _null, false, _null), new X.ScrollableListView(t2, _null, _null, false, _null)], t18); if (enabledGatewayIds.get$isEmpty(enabledGatewayIds)) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), _s24_); t2.push(T.Center$(new U.HelpText(t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s24_) : t1, _null), _null, _null)); } else { t1 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t1.get$paymentType(), _this._company_gateway_edit$_gatewayTypeId, new V._CompanyGatewayEditState_build_closure16(_this), enabledGatewayIds.map$1$1(0, new V._CompanyGatewayEditState_build_closure17(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t18), _null, 4, false, _null, false, _null)], t18); if (enabledGatewayIds.contains$1(0, _this._company_gateway_edit$_gatewayTypeId)) { t3 = "__limits_" + H.S(_this._company_gateway_edit$_gatewayTypeId) + "__"; t4 = type$.ValueKey_legacy_String; t5 = _this._company_gateway_edit$_gatewayTypeId; t6 = "__fees_" + H.S(t5) + "__"; C.JSArray_methods.addAll$1(t1, H.setRuntimeTypeInfo([new V.LimitEditor(companyGateway, viewModel, t5, new D.ValueKey(t3, t4)), new V.FeesEditor(companyGateway, viewModel, _this._company_gateway_edit$_gatewayTypeId, new D.ValueKey(t6, t4))], t18)); } t2.push(new X.ScrollableListView(t1, _null, _null, false, _null)); } return K.EditScaffold$(_null, t17, new X.AppTabForm(_this._company_gateway_edit$_focusNode, t16, t2, t15, _null, _null), _null, companyGateway, _null, false, _null, t11, t10, _null, t9); } }; V._CompanyGatewayEditState_didChangeDependencies_closure.prototype = { call$1: function(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, $signature: 16 }; V._CompanyGatewayEditState_build_closure.prototype = { call$1: function(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, $signature: 16 }; V._CompanyGatewayEditState_build_closure0.prototype = { call$1: function(gateway) { var t1 = {}; t1.gateway = gateway; if (gateway == null) t1.gateway = A.GatewayEntity_GatewayEntity(); this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure12(t1))); }, $signature: 44 }; V._CompanyGatewayEditState_build__closure12.prototype = { call$1: function(b) { var t1 = b.get$feesAndLimitsMap(), t2 = this._box_0, t3 = type$.legacy_GatewayEntity._as(t2.gateway).defaultGatewayTypeId; t1.$indexSet(0, t3, O.FeesAndLimitsSettings_FeesAndLimitsSettings(true)); t1 = t2.gateway; t1 = t1.get$id(t1); b.get$_company_gateway_model$_$this()._gatewayId = t1; b.get$_company_gateway_model$_$this()._config = "{}"; t2 = t2.gateway.get$listDisplayName(); b.get$_company_gateway_model$_$this()._label = t2; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure1.prototype = { call$0: function() { var t1 = this.viewModel; t1.onCancelPressed.call$1(this.context); t1.onGatewaySignUpPressed.call$1(this.companyGateway.gatewayId); }, $signature: 1 }; V._CompanyGatewayEditState_build_closure2.prototype = { call$0: function() { return T.launch("https://invoiceninja.github.io/docs/hosted-stripe", null, false); }, $signature: 30 }; V._CompanyGatewayEditState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure11(value))); }, $signature: 5 }; V._CompanyGatewayEditState_build__closure11.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.value); b.get$_company_gateway_model$_$this()._label = t1; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure4.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure10(value))); }, $signature: 10 }; V._CompanyGatewayEditState_build__closure10.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._tokenBilling = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure5.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; V._CompanyGatewayEditState_build_closure6.prototype = { call$1: function(value) { var t1 = this.companyGateway, t2 = this.gatewayTypeId; this.viewModel.onChanged.call$1(t1.rebuild$1(new V._CompanyGatewayEditState_build__closure9(t2, t1.getSettingsForGatewayTypeId$1(t2), value))); }, $signature: 20 }; V._CompanyGatewayEditState_build__closure9.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.gatewayTypeId, this.settings.rebuild$1(new V._CompanyGatewayEditState_build___closure(this.value))); return b; }, $signature: 43 }; V._CompanyGatewayEditState_build___closure.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = this.value; return b; }, $signature: 181 }; V._CompanyGatewayEditState_build_closure7.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure8(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure8.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireClientName = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure8.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure7(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure7.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireClientPhone = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure6(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure6.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireContactName = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure10.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure5(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure5.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireContactEmail = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure11.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure4(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure4.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requirePostalCode = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure12.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure3(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure3.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireCvv = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure2(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure2.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireBillingAddress = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure14.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure1(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure1.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._requireShippingAddress = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure15.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new V._CompanyGatewayEditState_build__closure0(value))); }, $signature: 12 }; V._CompanyGatewayEditState_build__closure0.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._updateDetails = this.value; return b; }, $signature: 43 }; V._CompanyGatewayEditState_build_closure17.prototype = { call$1: function(gatewayTypeId) { var _null = null, t1 = C.Map_s86xu.$index(0, gatewayTypeId); if (t1 == null) t1 = ""; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), gatewayTypeId, type$.legacy_String); }, $signature: 36 }; V._CompanyGatewayEditState_build_closure16.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new V._CompanyGatewayEditState_build__closure(t1, value)); }, $signature: 8 }; V._CompanyGatewayEditState_build__closure.prototype = { call$0: function() { this.$this._company_gateway_edit$_gatewayTypeId = this.value; }, $signature: 1 }; V.CardListTile.prototype = { build$1: function(_, context) { var t2, _this = this, _null = null, t1 = _this.viewModel, staticState = t1.state.staticState, companyGateway = t1.companyGateway; t1 = K.Theme_of(context).accentColor; t2 = J.$index$asx(staticState.paymentTypeMap._map$_map, _this.paymentType); t2 = t2 == null ? _null : t2.name; return D.CheckboxListTile$(t1, _null, C.ListTileControlAffinity_0, _null, _null, new V.CardListTile_build_closure(_this, companyGateway), L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), (companyGateway.acceptedCreditCards & _this.cardType) > 0); } }; V.CardListTile_build_closure.prototype = { call$1: function(value) { var t1 = this.$this, t2 = this.companyGateway, t3 = t1.cardType; t2 = value ? t2.addCard$1(t3) : t2.removeCard$1(t3); return t1.viewModel.onChanged.call$1(t2); }, $signature: 12 }; V.GatewayConfigSettings.prototype = { build$1: function(_, context) { var t2, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), gateway = J.$index$asx(this.viewModel.state.staticState.gatewayMap._map$_map, this.companyGateway.gatewayId); if (gateway == null) return T.SizedBox$(_null, _null, _null); t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (gateway.siteUrl.length !== 0) t2.push(new T.Padding(C.EdgeInsets_0_16_0_0, B.OutlinedButton$(new T.Padding(C.EdgeInsets_0_8_0_8, new U.IconText(t1.get$learnMore().toUpperCase(), C._MdiIconData_ujl, _null, _null, _null), _null), new V.GatewayConfigSettings_build_closure(gateway)), _null)); C.JSArray_methods.addAll$1(t2, J.map$1$1$ax(J.get$keys$x(gateway.get$parsedFields()), new V.GatewayConfigSettings_build_closure0(this, gateway), type$.legacy_GatewayConfigField).toList$0(0)); return T.Column$(t2, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, get$companyGateway: function() { return this.companyGateway; } }; V.GatewayConfigSettings_build_closure.prototype = { call$0: function() { return T.launch(this.gateway.siteUrl, null, false); }, $signature: 30 }; V.GatewayConfigSettings_build_closure0.prototype = { call$1: function(field) { var t1 = this.$this, t2 = this.gateway; return new V.GatewayConfigField(t2, field, J.$index$asx(t1.companyGateway.get$parsedConfig(), field), J.$index$asx(t2.get$parsedFields(), field), new V.GatewayConfigSettings_build__closure(t1, field), null); }, $signature: 2159 }; V.GatewayConfigSettings_build__closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.viewModel.onChanged.call$1(t1.companyGateway.updateConfig$2(this.field, value)); }, $signature: 8 }; V.GatewayConfigField.prototype = { createState$0: function() { return new V._GatewayConfigFieldState(new O.Debouncer(500, false), C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); }, get$value: function(receiver) { return this.value; } }; V._GatewayConfigFieldState.prototype = { initState$0: function() { this.super$State$initState(); this._company_gateway_edit$_textController = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)); }, dispose$0: function(_) { this._company_gateway_edit$_textController.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t3, t4, _this = this, t1 = _this.get$_company_gateway_edit$_onChanged(); _this._company_gateway_edit$_textController.removeListener$1(0, t1); t2 = _this._company_gateway_edit$_textController; t3 = _this._widget; t4 = t3.value; t2.set$text(0, J.toString$0$(t4 == null ? t3.defaultValue : t4)); t2 = _this._company_gateway_edit$_textController.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t1), false); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0: function() { this._company_gateway_edit$_debouncer.run$1(new V._GatewayConfigFieldState__onChanged_closure(this)); }, _company_gateway_edit$_obscureText$1: function(field) { var t1 = {}; t1.obscure = false; C.JSArray_methods.forEach$1(H.setRuntimeTypeInfo(["password", "secret", "key"], type$.JSArray_legacy_String), new V._GatewayConfigFieldState__obscureText_closure(t1, field)); return t1.obscure; }, build$1: function(_, context) { var options, t2, value, t3, t4, _this = this, _null = null, t1 = _this._widget, label = t1.gateway.id === "d14dd26a37cecc30fdd65700bfb55b23" && t1.field === "apiKey" ? "Secret Key" : A.toTitleCase(t1.field); if (C.JSString_methods.startsWith$1(H.S(_this._widget.defaultValue), "[") && C.JSString_methods.endsWith$1(H.S(_this._widget.defaultValue), "]")) { options = H.setRuntimeTypeInfo(C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(H.S(_this._widget.defaultValue), "[", ""), "]", "").split(","), type$.JSArray_String); t1 = _this._widget; t2 = t1.value; value = t2 == null || J.$eq$(t2, t1.defaultValue) ? "" : _this._widget.value; t1 = type$.MappedListIterable_of_String_and_legacy_DropdownMenuItem_legacy_String; return new Q.AppDropdownButton(A.toTitleCase(_this._widget.field), value, new V._GatewayConfigFieldState_build_closure(_this), P.List_List$of(new H.MappedListIterable(options, new V._GatewayConfigFieldState_build_closure0(), t1), true, t1._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String); } else { t1 = _this._widget; t2 = t1.field; if (C.JSString_methods.contains$1(t2.toLowerCase(), "color")) return A.FormColorPicker$(t1.value, A.toTitleCase(t2), new V._GatewayConfigFieldState_build_closure1(_this)); else if (J.get$runtimeType$(t1.defaultValue) === C.Type_bool_lhE) { t1 = K.Theme_of(context).accentColor; t2 = L.Text$(A.toTitleCase(_this._widget.field), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this._widget.value; if (t3 == null) t3 = false; return D.CheckboxListTile$(t1, _null, C.ListTileControlAffinity_0, _null, _null, new V._GatewayConfigFieldState_build_closure2(_this), t2, t3); } else { t1 = _this._company_gateway_edit$_textController; t2 = _this._widget.field; t3 = t2 === "text" ? 6 : 1; t2 = _this._company_gateway_edit$_obscureText$1(t2); t4 = _this._widget.field === "text" ? C.TextInputType_1_null_null : C.TextInputType_7_null_null; return S.DecoratedFormField$(false, _null, false, false, t1, _null, true, _null, _null, _null, _null, false, false, _null, t4, label, t3, _null, t2, new V._GatewayConfigFieldState_build_closure3(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null); } } } }; V._GatewayConfigFieldState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget; t2.toString; t2.onChanged$1(J.trim$0$s(t1._company_gateway_edit$_textController._change_notifier$_value.text)); }, $signature: 1 }; V._GatewayConfigFieldState__obscureText_closure.prototype = { call$1: function(word) { if (C.JSString_methods.contains$1(this.field.toLowerCase(), word)) this._box_0.obscure = true; }, $signature: 7 }; V._GatewayConfigFieldState_build_closure.prototype = { call$1: function(value) { return this.$this._widget.onChanged$1(value); }, $signature: 10 }; V._GatewayConfigFieldState_build_closure0.prototype = { call$1: function(value) { var _null = null, t1 = J.trim$0$s(value); return K.DropdownMenuItem$(L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, type$.legacy_String); }, $signature: 36 }; V._GatewayConfigFieldState_build_closure1.prototype = { call$1: function(value) { return this.$this._widget.onChanged$1(value); }, $signature: 5 }; V._GatewayConfigFieldState_build_closure2.prototype = { call$1: function(value) { return this.$this._widget.onChanged$1(value); }, $signature: 12 }; V._GatewayConfigFieldState_build_closure3.prototype = { call$1: function(value) { return this.$this._company_gateway_edit$_onChanged$0(); }, $signature: 59 }; V.LimitEditor.prototype = { createState$0: function() { return new V._LimitEditorState(new O.Debouncer(500, false), C._StateLifecycle_0); }, get$companyGateway: function() { return this.companyGateway; } }; V._LimitEditorState.prototype = { initState$0: function() { this.super$State$initState(); var t1 = type$.LinkedList__ListenerEntry; this._minController = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)); this._maxController = new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)); }, dispose$0: function(_) { this._minController.ChangeNotifier__listeners = null; this._maxController.ChangeNotifier__listeners = null; this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, settings, t3, t4, t5, t6, _this = this, _null = null, t1 = _this.get$_onTextChange(); _this._minController.removeListener$1(0, t1); _this._maxController.removeListener$1(0, t1); t2 = _this._widget; settings = t2.companyGateway.getSettingsForGatewayTypeId$1(t2.gatewayTypeId); t2 = settings.minLimit; t3 = t2 === -1; if (!t3) _this._enableMin = true; t4 = settings.maxLimit; t5 = t4 === -1; if (!t5) _this._enableMax = true; t6 = _this._minController; if (t3) t2 = ""; else { t3 = _this._framework$_element; t3.toString; t3 = Y.formatNumber(t2, t3, _null, _null, C.FormatNumberType_4, true, _null, false); t2 = t3; } t6.set$text(0, t2); t2 = _this._maxController; if (t5) t3 = ""; else { t3 = _this._framework$_element; t3.toString; t3 = Y.formatNumber(t4, t3, _null, _null, C.FormatNumberType_4, true, _null, false); } t2.set$text(0, t3); t3 = _this._minController.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t1), false); t3 = _this._maxController.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t1), false); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0: function() { var t1 = this._widget, viewModel = t1.viewModel, companyGateway = viewModel.companyGateway, settings = companyGateway.getSettingsForGatewayTypeId$1(t1.gatewayTypeId), updatedSettings = settings.rebuild$1(new V._LimitEditorState__onChanged_closure(this)); if (!settings.$eq(0, updatedSettings)) viewModel.onChanged.call$1(companyGateway.rebuild$1(new V._LimitEditorState__onChanged_closure0(this, updatedSettings))); }, _onTextChange$0: function() { this._company_gateway_edit$_debouncer.run$1(new V._LimitEditorState__onTextChange_closure(this)); }, build$1: function(_, context) { var t4, t5, t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$minLimit(), t3 = _this._enableMin; t2 = S.DecoratedFormField$(false, _null, false, false, _this._minController, _null, t3, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, true, true), t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = T.SizedBox$(_null, 10, _null); t4 = K.Theme_of(context).accentColor; if (D.getLayout(context) === C.AppLayout_desktop) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "enable_min"); if (t5 == null) t5 = ""; } else t5 = t1.get$enable(t1); t6 = type$.JSArray_legacy_Widget; t5 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t2, t3, D.CheckboxListTile$(t4, C.EdgeInsets_0_0_0_0, C.ListTileControlAffinity_0, _null, _null, new V._LimitEditorState_build_closure(_this), L.Text$(t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._enableMin)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); t4 = T.SizedBox$(_null, _null, 40); t3 = t1.get$maxLimit(); t2 = _this._enableMax; t3 = S.DecoratedFormField$(false, _null, false, false, _this._maxController, _null, t2, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, true, true), t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t2 = T.SizedBox$(_null, 10, _null); t7 = K.Theme_of(context).accentColor; if (D.getLayout(context) === C.AppLayout_desktop) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "enable_max"); if (t1 == null) t1 = ""; } else t1 = t1.get$enable(t1); return Y.FormCard$(_null, H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t5, t4, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t3, t2, D.CheckboxListTile$(t7, C.EdgeInsets_0_0_0_0, C.ListTileControlAffinity_0, _null, _null, new V._LimitEditorState_build_closure0(_this), L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._enableMax)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t6), _null, 4, false, _null, false, _null); } }; V._LimitEditorState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._enableMin ? Y.parseDouble(J.trim$0$s(t1._minController._change_notifier$_value.text), false) : -1; b.get$_company_gateway_model$_$this()._minLimit = t2; t1 = t1._enableMax ? Y.parseDouble(J.trim$0$s(t1._maxController._change_notifier$_value.text), false) : -1; b.get$_company_gateway_model$_$this()._maxLimit = t1; return b; }, $signature: 181 }; V._LimitEditorState__onChanged_closure0.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, $signature: 43 }; V._LimitEditorState__onTextChange_closure.prototype = { call$0: function() { this.$this._company_gateway_edit$_onChanged$0(); }, $signature: 1 }; V._LimitEditorState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new V._LimitEditorState_build__closure0(t1, value)); }, $signature: 20 }; V._LimitEditorState_build__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = this.value; t1._enableMin = t2; t1._company_gateway_edit$_onChanged$0(); if (!t2) t1._minController.set$text(0, ""); }, $signature: 1 }; V._LimitEditorState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new V._LimitEditorState_build__closure(t1, value)); }, $signature: 20 }; V._LimitEditorState_build__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.value; t1._enableMax = t2; t1._company_gateway_edit$_onChanged$0(); if (!t2) t1._maxController.set$text(0, ""); }, $signature: 1 }; V.FeesEditor.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new V._FeesEditorState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); }, get$companyGateway: function() { return this.companyGateway; } }; V._FeesEditorState.prototype = { dispose$0: function(_) { var t1 = this._company_gateway_edit$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new V._FeesEditorState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t4, settings, _this = this, _null = null, t1 = _this._amountController, t2 = _this._percentController, t3 = _this._capController; _this._company_gateway_edit$_controllers = H.setRuntimeTypeInfo([t1, t2, t3], type$.JSArray_legacy_TextEditingController); t4 = _this._widget; settings = t4.companyGateway.getSettingsForGatewayTypeId$1(t4.gatewayTypeId); t4 = _this._company_gateway_edit$_controllers; (t4 && C.JSArray_methods).forEach$1(t4, new V._FeesEditorState_didChangeDependencies_closure(_this)); t4 = _this._framework$_element; t4.toString; t1.set$text(0, Y.formatNumber(settings.feeAmount, t4, _null, _null, C.FormatNumberType_4, true, _null, false)); t4 = _this._framework$_element; t4.toString; t2.set$text(0, Y.formatNumber(settings.feePercent, t4, _null, _null, C.FormatNumberType_4, true, _null, false)); t4 = _this._framework$_element; t4.toString; t3.set$text(0, Y.formatNumber(settings.feeCap, t4, _null, _null, C.FormatNumberType_4, true, _null, false)); t4 = _this._company_gateway_edit$_controllers; (t4 && C.JSArray_methods).forEach$1(t4, new V._FeesEditorState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _company_gateway_edit$_onChanged$0: function() { var _this = this, t1 = _this._widget, viewModel = t1.viewModel, companyGateway = viewModel.companyGateway, settings = companyGateway.getSettingsForGatewayTypeId$1(t1.gatewayTypeId), updatedSettings = settings.rebuild$1(new V._FeesEditorState__onChanged_closure(Y.parseDouble(J.trim$0$s(_this._amountController._change_notifier$_value.text), false), Y.parseDouble(J.trim$0$s(_this._percentController._change_notifier$_value.text), false), Y.parseDouble(J.trim$0$s(_this._capController._change_notifier$_value.text), false))); if (!settings.$eq(0, updatedSettings)) _this._company_gateway_edit$_debouncer.run$1(new V._FeesEditorState__onChanged_closure0(_this, viewModel, companyGateway, updatedSettings)); }, build$1: function(_, context) { var company, settings, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, companyGateway = viewModel.companyGateway, t2 = viewModel.state, t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = J.$index$asx(t3._list, t2).userCompany.company; settings = companyGateway.getSettingsForGatewayTypeId$1(_this._widget.gatewayTypeId); t2 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._percentController, _null, true, _null, _null, _null, _null, false, true, _null, _null, t1.get$feePercent(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._amountController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t1.get$feeAmount(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._capController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t1.get$feeCap(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], type$.JSArray_legacy_Widget); if (company.get$enableFirstItemTaxRate()) t2.push(new D.TaxRateDropdown(t1.get$tax(), new V._FeesEditorState_build_closure(_this, viewModel, companyGateway, settings), settings.taxName1, settings.taxRate1, _null)); if (company.get$enableSecondItemTaxRate()) t2.push(new D.TaxRateDropdown(t1.get$tax(), new V._FeesEditorState_build_closure0(_this, viewModel, companyGateway, settings), settings.taxName2, settings.taxRate2, _null)); if (company.get$enableThirdItemTaxRate()) t2.push(new D.TaxRateDropdown(t1.get$tax(), new V._FeesEditorState_build_closure1(_this, viewModel, companyGateway, settings), settings.taxName3, settings.taxRate3, _null)); t2.push(T.SizedBox$(_null, 16, _null)); t1 = t1.localeCode; t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "adjust_fee_percent"); t3 = L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = K.Theme_of(context).accentColor; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "adjust_fee_percent_help"); t2.push(new B.LearnMoreUrl(O.SwitchListTile$(t4, _null, new V._FeesEditorState_build_closure2(_this, viewModel, companyGateway, settings), _null, L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), t3, settings.adjustFeePercent), "https://support.stripe.com/questions/passing-the-stripe-fee-on-to-customers", _null, _null)); return Y.FormCard$(_null, t2, _null, 4, false, _null, false, _null); } }; V._FeesEditorState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_company_gateway_edit$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; V._FeesEditorState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_company_gateway_edit$_onChanged()); }, $signature: 10 }; V._FeesEditorState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_company_gateway_edit$_onChanged()); }, $signature: 10 }; V._FeesEditorState__onChanged_closure.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._feeAmount = this.amount; b.get$_company_gateway_model$_$this()._feePercent = this.percent; b.get$_company_gateway_model$_$this()._feeCap = this.cap; return b; }, $signature: 181 }; V._FeesEditorState__onChanged_closure0.prototype = { call$0: function() { var _this = this; _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new V._FeesEditorState__onChanged__closure(_this.$this, _this.updatedSettings))); }, $signature: 1 }; V._FeesEditorState__onChanged__closure.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, $signature: 43 }; V._FeesEditorState_build_closure.prototype = { call$1: function(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new V._FeesEditorState_build__closure2(_this.$this, _this.settings, taxRate))); }, $signature: 80 }; V._FeesEditorState_build__closure2.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new V._FeesEditorState_build___closure2(this.taxRate))); return b; }, $signature: 43 }; V._FeesEditorState_build___closure2.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate1 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1 = t1; return b; }, $signature: 181 }; V._FeesEditorState_build_closure0.prototype = { call$1: function(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new V._FeesEditorState_build__closure1(_this.$this, _this.settings, taxRate))); }, $signature: 80 }; V._FeesEditorState_build__closure1.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new V._FeesEditorState_build___closure1(this.taxRate))); return b; }, $signature: 43 }; V._FeesEditorState_build___closure1.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate2 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2 = t1; return b; }, $signature: 181 }; V._FeesEditorState_build_closure1.prototype = { call$1: function(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new V._FeesEditorState_build__closure0(_this.$this, _this.settings, taxRate))); }, $signature: 80 }; V._FeesEditorState_build__closure0.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new V._FeesEditorState_build___closure0(this.taxRate))); return b; }, $signature: 43 }; V._FeesEditorState_build___closure0.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxRate3 = t2; t1 = t1.name; b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3 = t1; return b; }, $signature: 181 }; V._FeesEditorState_build_closure2.prototype = { call$1: function(value) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new V._FeesEditorState_build__closure(_this.$this, _this.settings, value))); }, $signature: 12 }; V._FeesEditorState_build__closure.prototype = { call$1: function(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new V._FeesEditorState_build___closure(this.value))); return b; }, $signature: 43 }; V._FeesEditorState_build___closure.prototype = { call$1: function(b) { b.get$_company_gateway_model$_$this()._adjustFeePercent = this.value; return b; }, $signature: 181 }; V.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; L.CompanyGatewayEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.CompanyGatewayEditScreen_build_closure(), new L.CompanyGatewayEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayEditVM); } }; L.CompanyGatewayEditScreen_build_closure0.prototype = { call$1: function(store) { return L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore(store); }, $signature: 2161 }; L.CompanyGatewayEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new V.CompanyGatewayEdit(viewModel, new D.ValueKey(viewModel.companyGateway.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2162 }; L.CompanyGatewayEditVM.prototype = { get$companyGateway: function() { return this.companyGateway; }, get$company: function() { return this.company; } }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure.prototype = { call$1: function(companyGateway) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCompanyGateway(companyGateway)); }, $signature: 297 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, O.CompanyGatewayEntity_CompanyGatewayEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1(this.store, this.state).call$0(); }, $signature: 14 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1.prototype = { call$0: function() { var t2, $navigator, companyGateway, t3, t1 = $.$get$navigatorKey(); t1.toString; t2 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t1.get$currentState(); t1 = this.store; companyGateway = t1.get$_store$_state().uiState.companyGatewayUIState.editing; t3 = new P._Future($.Zone__current, type$._Future_legacy_CompanyGatewayEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveCompanyGatewayRequest(new P._AsyncCompleter(t3, type$._AsyncCompleter_legacy_CompanyGatewayEntity), companyGateway)); return t3.then$1$1(0, new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure(companyGateway, t2, this.state, t1, $navigator), type$.Null).catchError$1(new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0()); }, $signature: 31 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure.prototype = { call$1: function(savedCompanyGateway) { var _this = this, _s31_ = "/settings/company_gateways_view", t1 = _this.companyGateway, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_company_gateway"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_company_gateway"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s31_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s31_, t1, t1); } else t2.pop$1(0, savedCompanyGateway); } else M.viewEntityById(false, savedCompanyGateway.id, C.EntityType_companyGateway, null, true, true); }, $signature: 297 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2.prototype = { call$1: function(gatewayId) { return this.$call$body$CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure(gatewayId); }, $call$body$CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure: function(gatewayId) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1, credentials, url; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; credentials = t1.get$credentials(t1); url = credentials.url + "/one_time_token"; t1 = $async$self.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.StartSaving()); t2 = type$.legacy_String; new F.WebClient().post$3$data(url, credentials.token, C.C_JsonCodec.encode$2$toEncodable(P.LinkedHashMap_LinkedHashMap$_literal(["context", P.LinkedHashMap_LinkedHashMap$_literal(["return_url", ""], t2, t2)], t2, type$.legacy_Map_of_legacy_String_and_legacy_String), null)).then$1$1(0, new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure(t1, gatewayId, credentials), type$.Null).catchError$1(new L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0(t1)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 296 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure.prototype = { call$1: function(response) { var _this = this; J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); switch (_this.gatewayId) { case "d14dd26a47cecc30fdd65700bfb67b34": T.launch(Y.cleanApiUrl(_this.credentials.url) + "/stripe/signup/" + H.S(J.$index$asx(response, "hash")), null, false); break; case "8fdeed552015b3c7b44ed6c8ebd9e992": T.launch(Y.cleanApiUrl(_this.credentials.url) + "/wepay/signup/" + H.S(J.$index$asx(response, "hash")), null, false); break; } }, $signature: 8 }; L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0.prototype = { call$1: function(error) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); t1 = $.$get$navigatorKey(); t1.toString; O.showErrorDialog(false, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), H.S(error)); }, $signature: 8 }; G.CompanyGatewayView.prototype = { createState$0: function() { return new G._CompanyGatewayViewState(null, C._StateLifecycle_0); } }; G._CompanyGatewayViewState.prototype = { initState$0: function() { this.super$State$initState(); this._company_gateway_view$_controller = U.TabController$(0, 2, this); }, dispose$0: function(_) { this._company_gateway_view$_controller.dispose$0(0); this.super$__CompanyGatewayViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, companyGateway = viewModel.companyGateway; t2 = t2.isFilter; t3 = type$.JSArray_legacy_Widget; t1 = E.TabBar$(_this._company_gateway_view$_controller, _null, false, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$overview()), E.Tab$(_null, t1.get$systemLogs())], t3)); t4 = _this._company_gateway_view$_controller; t5 = _this._widget; t6 = t5.viewModel; return new G.ViewScaffold(t2, companyGateway, E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new G._CompanyGatewayOverview(t5.isFilter, t6, _null), new G._CompanyGatewayViewState_build_closure(viewModel, context)), N.RefreshIndicator$(new G._CompanyGatewaySystemLog(t6, _null), new G._CompanyGatewayViewState_build_closure0(viewModel, context))], t3), t4, _null), new G._CompanyGatewayViewState_build_closure1(_this), t1, _null); } }; G._CompanyGatewayViewState_build_closure1.prototype = { call$0: function() { return this.$this._widget.viewModel.onBackPressed.call$0(); }, $signature: 9 }; G._CompanyGatewayViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._CompanyGatewayViewState_build_closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; G._CompanyGatewayOverview.prototype = { build$1: function(_, context) { var t2, t3, t4, t5, t6, processed, webhookUrl, allFields, t7, t8, t9, fields, t10, t11, t12, _this = this, _null = null, _s16_ = "import_customers", _s16_0 = "verify_customers", t1 = _this.viewModel, state = t1.state, companyGateway = t1.companyGateway, gateway = J.$index$asx(state.staticState.gatewayMap._map$_map, companyGateway.gatewayId); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = $.$get$memoizedCalculateCompanyGatewayProcessed(); t3 = companyGateway.id; t4 = state.uiState.selectedCompanyIndex; t5 = state.userCompanyStates._list; t6 = J.getInterceptor$asx(t5); processed = t2.call$2(t3, t6.$index(t5, t4).paymentState.map); webhookUrl = t6.$index(t5, t4).userCompany.account.defaultUrl + "/payment_webhook/" + t6.$index(t5, t4).userCompany.company.companyKey + "/" + t3; t2 = type$.legacy_String; allFields = P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.legacy_Map_of_legacy_String_and_legacy_String); for (t7 = J.get$iterator$ax(C.Map_s86xu.get$keys(C.Map_s86xu)), t8 = companyGateway.feesAndLimitsMap; t7.moveNext$0();) { t9 = t7.get$current(t7); fields = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t10 = t8._map$_map; t11 = J.getInterceptor$x(t10); if (t11.containsKey$1(t10, t9)) { t10 = t11.$index(t10, t9); if (t10 == null) t10 = O.FeesAndLimitsSettings_FeesAndLimitsSettings(_null); t11 = t10.feeAmount; if (t11 !== 0) { t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "fee_amount"); if (t12 == null) t12 = ""; fields.$indexSet(0, t12, Y.formatNumber(t11, context, _null, _null, C.FormatNumberType_0, true, _null, false)); } t11 = t10.feePercent; if (t11 !== 0) { t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "fee_percent"); if (t12 == null) t12 = ""; fields.$indexSet(0, t12, Y.formatNumber(t11, context, _null, _null, C.FormatNumberType_1, true, _null, false)); } t11 = t10.feeCap; if (t11 !== 0) { t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "fee_cap"); if (t12 == null) t12 = ""; fields.$indexSet(0, t12, Y.formatNumber(t11, context, _null, _null, C.FormatNumberType_0, true, _null, false)); } t11 = t10.minLimit; if (t11 !== -1) { t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "min_limit"); if (t12 == null) t12 = ""; fields.$indexSet(0, t12, Y.formatNumber(t11, context, _null, _null, C.FormatNumberType_0, true, _null, false)); } t10 = t10.maxLimit; if (t10 !== -1) { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "max_limit"); if (t11 == null) t11 = ""; fields.$indexSet(0, t11, Y.formatNumber(t10, context, _null, _null, C.FormatNumberType_0, true, _null, false)); } if (fields.get$isNotEmpty(fields)) allFields.$indexSet(0, t9, fields); } } t2 = t1.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "processed"); if (t7 == null) t7 = ""; t8 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([D.EntityHeader$(companyGateway, t7, _null, _null, _null, _null, Y.formatNumber(processed, context, _null, _null, C.FormatNumberType_0, true, _null, false)), new G.ListDivider(_null)], t8); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["d14dd26a37cecc30fdd65700bfb55b23", "d14dd26a47cecc30fdd65700bfb67b34"], type$.JSArray_legacy_String), gateway.id)) { t9 = D.getLayout(context) === C.AppLayout_desktop ? C._MdiIconData_7vC0 : _null; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s16_); if (t10 == null) t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s16_); t10 = T.Expanded$(new D.AppButton(_null, t9, t10.toUpperCase(), new G._CompanyGatewayOverview_build_closure(_this, context), _null, _null), 1); t9 = T.SizedBox$(_null, _null, 16); t11 = D.getLayout(context) === C.AppLayout_desktop ? C._MdiIconData_90Y1 : _null; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s16_0); if (t12 == null) t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s16_0); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_0_16_20, T.Row$(H.setRuntimeTypeInfo([t10, t9, T.Expanded$(new D.AppButton(_null, t11, t12.toUpperCase(), new G._CompanyGatewayOverview_build_closure0(_this, context), _null, _null), 1)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), new G.ListDivider(_null)], t8)); } if (gateway.supportedEvents$0().length !== 0) { t9 = L.Text$(t1.get$webhookUrl(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = L.Text$(webhookUrl, _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "supported_events"); t2 = "\n" + (t2 == null ? "" : t2) + ":\n"; t11 = gateway.supportedEvents$0(); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([Q.ListTile$(false, C.EdgeInsets_22_22_22_22, _null, true, false, _null, _null, _null, new G._CompanyGatewayOverview_build_closure1(webhookUrl, t1), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t10, L.Text$(t2 + new H.MappedListIterable(t11, new G._CompanyGatewayOverview_build_closure2(), H._arrayInstanceType(t11)._eval$1("MappedListIterable<1,String*>")).join$1(0, "\n"), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, t9, L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null)), new G.ListDivider(_null)], t8)); } if (gateway.get$supportsTokenBilling()) C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new O.EntitiesListTile(companyGateway, C.EntityType_client, t1.get$clients(t1), $.$get$memoizedClientStatsForCompanyGateway().call$2(t3, t6.$index(t5, t4).clientState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, true, _null)], t8)); t7.push(new O.EntitiesListTile(companyGateway, C.EntityType_payment, t1.get$payments(), $.$get$memoizedPaymentStatsForCompanyGateway().call$2(t3, t6.$index(t5, t4).paymentState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, true, _null)); for (t2 = allFields.get$entries(allFields), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_20_20_0_0, new L.Text(t1.lookup$1(C.Map_s86xu.$index(0, t3.get$key(t3))), K.Theme_of(context).textTheme.headline6, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.FieldGrid(t3.get$value(t3), _null)], t8)); } return new X.ScrollableListView(t7, _null, _null, false, _null); } }; G._CompanyGatewayOverview_build_closure.prototype = { call$0: function() { return this.$this.viewModel.onStripeImportPressed.call$1(this.context); }, $signature: 9 }; G._CompanyGatewayOverview_build_closure0.prototype = { call$0: function() { return this.$this.viewModel.onStripeVerifyPressed.call$1(this.context); }, $signature: 9 }; G._CompanyGatewayOverview_build_closure2.prototype = { call$1: function(e) { return " - " + H.S(e); }, $signature: 15 }; G._CompanyGatewayOverview_build_closure1.prototype = { call$0: function() { var t1 = this.webhookUrl; T.Clipboard_setData(new T.ClipboardData(t1)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; G._CompanyGatewaySystemLog.prototype = { createState$0: function() { return new G.__CompanyGatewaySystemLogState(C._StateLifecycle_0); } }; G.__CompanyGatewaySystemLogState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.companyGateway.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var companyGateway = this._widget.viewModel.companyGateway; if (companyGateway.get$isStale()) return new V.LoadingIndicator(null, false, null); return new V.SystemLogViewer(companyGateway.systemLogs, null); } }; G.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.CompanyGatewayViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.CompanyGatewayViewScreen_build_closure(this), new A.CompanyGatewayViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyGatewayViewVM); } }; A.CompanyGatewayViewScreen_build_closure0.prototype = { call$1: function(store) { return A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore(store); }, $signature: 2163 }; A.CompanyGatewayViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new G.CompanyGatewayView(vm, this.$this.isFilter, null); }, $signature: 2164 }; A.CompanyGatewayViewVM.prototype = { get$companyGateway: function() { return this.companyGateway; }, get$company: function() { return this.company; } }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadCompanyGateway(completer, this.companyGateway.id)); return completer.future; }, $signature: 17 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/company_gateways")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2.prototype = { call$1: function(context) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, credentials = t2.get$credentials(t2); O.passwordCallback(false, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure(this.store, new F.WebClient(), credentials.url + "/stripe/verify", credentials, t1, context), context); }, $signature: 14 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure.prototype = { call$2: function(password, idToken) { var _this = this, t1 = _this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.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, _this.context)); }, $signature: 51 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure.prototype = { call$1: function(response) { var t1; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure(this.localization, response), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.void); }, $signature: 8 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure.prototype = { call$1: function(context) { var t3, t4, t5, _null = null, _s14_ = "customer_count", t1 = this.localization, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s14_); t2 = L.Text$(t2 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s14_) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = type$.JSArray_legacy_Widget; t4 = this.response; t5 = J.getInterceptor$asx(t4); return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure(context), _null)], t3), C.EdgeInsets_0_0_0_0, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(L.Text$("Stripe", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 120), T.SizedBox$(L.Text$(H.S(t5.$index(t4, "stripe_customer_count")), _null, _null, _null, _null, _null, _null, C.TextAlign_5, _null, _null), _null, 100)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.SizedBox$(_null, 8, _null), T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(L.Text$("Invoice Ninja", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 120), T.SizedBox$(L.Text$(H.S(J.get$length$asx(type$.legacy_Iterable_dynamic._as(t5.$index(t4, "stripe_customers")))), _null, _null, _null, _null, _null, _null, C.TextAlign_5, _null, _null), _null, 100)], t3), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t3), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 172 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); O.showErrorDialog(false, this.context, error); }, $signature: 8 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1.prototype = { call$1: function(context) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, credentials = t2.get$credentials(t2); O.passwordCallback(false, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0(this.store, new F.WebClient(), credentials.url + "/stripe/import_customers", credentials, context, t1), context); }, $signature: 14 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0.prototype = { call$2: function(password, idToken) { var t2, _this = this, t1 = _this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.StartSaving()); t2 = _this.context; _this.webClient.post$4$idToken$password(_this.url, _this.credentials.token, idToken, password).then$1$1(0, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1(t1, t2, _this.localization), type$.Null).catchError$1(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2(t1, t2)); }, $signature: 51 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1.prototype = { call$1: function(response) { var t1, _s18_ = "imported_customers"; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), _s18_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s18_); O.showMessageDialog(this.context, t1, null); }, $signature: 8 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2.prototype = { call$1: function(error) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StopSaving()); O.showErrorDialog(false, this.context, error); }, $signature: 8 }; S.CreditEmailScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.CreditEmailScreen_build_closure(), new S.CreditEmailScreen_build_closure0(), _null, _null, new S.CreditEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailCreditVM); } }; S.CreditEmailScreen_build_closure1.prototype = { call$1: function(store) { var t3, credit, client, state = store.get$_store$_state(), t1 = state.uiState, creditId = t1.creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); credit = J.$index$asx(t3.$index(t2, t1).creditState.map._map$_map, creditId); t1 = t3.$index(t2, t1).clientState.map; t2 = credit.clientId; client = J.$index$asx(t1._map$_map, t2); if (client.get$isStale()) { t1 = client.id; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t1)); } }, $signature: 397 }; S.CreditEmailScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, creditId = t1.creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return S.EmailCreditVM_EmailCreditVM$fromStore(store, J.$index$asx(J.$index$asx(t2._list, t1).creditState.map._map$_map, creditId)); }, $signature: 2166 }; S.CreditEmailScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new E.InvoiceEmailView(viewModel, null); }, $signature: 2167 }; S.EmailCreditVM.prototype = {}; S.EmailCreditVM_EmailCreditVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, this.credit.clientId)); }, $signature: 1 }; S.EmailCreditVM_EmailCreditVM$fromStore_closure0.prototype = { call$4: function(context, template, subject, body) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedCredit(), D.getLayout(context) === C.AppLayout_mobile, t1); if (D.getLayout(context) !== C.AppLayout_mobile) completer.future.then$1$1(0, new S.EmailCreditVM_EmailCreditVM$fromStore__closure(this.credit), t1); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailCreditRequest(completer, this.credit.id, template, subject, body)); }, $signature: 398 }; S.EmailCreditVM_EmailCreditVM$fromStore__closure.prototype = { call$1: function(value) { M.viewEntity(false, this.credit, null, false); }, $signature: 3 }; K.CreditListItem.prototype = { build$1: function(_, context) { var t6, filterMatch, textColor, t7, t8, _this = this, _null = null, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, creditUIState = uiState.creditUIState, t2 = _this.credit, listUIState = state.getUIState$1(t2.entityType).get$listUIState(), t3 = listUIState.selectedIds, textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), t4 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t5 = _this.filter; if (t5 != null && t5.length !== 0) { t6 = t2.matchesFilterValue$1(t5); filterMatch = t6 == null ? _this.client.matchesFilterValue$1(t5) : t6; } else filterMatch = _null; textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.subtitle = ""; t5 = t2.date; if (t5.length !== 0) t1.subtitle = Y.formatDate(t5, context, true, true, false); t5 = t2.id; t6 = uiState.get$isEditing() ? creditUIState.editing.id : creditUIState.selectedId; t7 = state.userCompanyStates; t8 = uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t7._list, t8).userCompany, t2, new A.LayoutBuilder(new K.CreditListItem_build_closure(t1, _this, t3 != null, listUIState, state, t4, textStyle, filterMatch, textColor), _null), t5 === t6, true, true, _null); }, get$user: function() { return this.user; }, get$credit: function() { return this.credit; } }; K.CreditListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new K.CreditListItem_build__closure(t1), false, t1.isChecked), _null); else { t2 = t1.credit; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(t1.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new K.CreditListItem_build__closure0(t1)); t2 = t4; } t3 = t1.credit; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t1.client; t9 = J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""; t9 = L.Text$(t8.displayName + t9, _null, _null, _null, _null, _null, t5, _null, _null, _null); t10 = _this.filterMatch; if (t10 == null) t10 = _this._box_0.subtitle; t11 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t9, L.Text$(t10, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t11.get$value(t11) >>> 16 & 255, t11.get$value(t11) >>> 8 & 255, t11.get$value(t11) & 255)), _null, _null, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.amount, context, t8.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 25), new V.EntityStatusChip(t3, 105, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new K.CreditListItem_build__closure1(t1, context), new K.CreditListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new K.CreditListItem_build__closure3(t1), false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = T.Expanded$(L.Text$(t1.client.displayName, _null, _null, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1); t5 = T.SizedBox$(_null, _null, 4); t6 = t1.credit; t7 = t6.balance; t7 = t7 > 0 ? t7 : t6.amount; t8 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([t4, t5, L.Text$(Y.formatNumber(t7, context, t6.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t4 = _this.filterMatch; if (t4 == null) { t4 = t6.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t4 += Y.formatDate(t6.date, context, true, true, false); t4 = L.Text$(C.JSString_methods.trim$0(t4 + (J.get$isNotEmpty$asx(t6.documents._list) ? " \ud83d\udcce" : "")), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t4 = L.Text$(t4, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t4 = T.Expanded$(t4, 1); t5 = t6.statusId; t7 = _this.localization.lookup$1(C.Map_qBa3g.$index(0, t5)); t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new K.CreditListItem_build__closure4(t1, context), new K.CreditListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t4, L.Text$(t7, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t5 === "1" ? _this.textColor : new E.CreditStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t5), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new L.EntityStateLabel(t6, _null)], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; K.CreditListItem_build__closure2.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.credit, false, false); return t1; }, $signature: 0 }; K.CreditListItem_build__closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.credit, false, true); return t1; }, $signature: 0 }; K.CreditListItem_build__closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; K.CreditListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.credit], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; K.CreditListItem_build__closure5.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.credit, false, false); return t1; }, $signature: 0 }; K.CreditListItem_build__closure4.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.credit, false, true); return t1; }, $signature: 0 }; K.CreditListItem_build__closure3.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; U.CreditListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.CreditListBuilder_build_closure(), U.credit_list_vm_CreditListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditListVM); } }; U.CreditListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_credit, new U.CreditListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new K.CreditPresenter(), t2, t4); }, $signature: 2169 }; U.CreditListBuilder_build__closure.prototype = { call$2: function(context, index) { var t5, _null = null, t1 = this.viewModel, state = t1.state, invoiceId = J.$index$asx(t1.invoiceList, index), invoice = J.$index$asx(t1.invoiceMap._map$_map, invoiceId), t2 = state.getUIState$1(C.EntityType_credit).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; t3 = invoice.clientId; t3 = J.$index$asx(t1.clientMap._map$_map, t3); if (t3 == null) t3 = T.ClientEntity_ClientEntity(_null, _null, _null); if (t2 != null) { t5 = invoice.id; t2 = J.contains$1$asx(t2._list, t5); } else t2 = false; return new K.CreditListItem(t4, invoice, t3, t1.filter, t2, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2170 }; U.CreditListVM.prototype = {}; U.CreditListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; U.CreditListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.CreditListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortCredits(field)); }, $signature: 5 }; U.CreditListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ClearCreditMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; U.CreditPdfScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.CreditPdfScreen_build_closure(this), new U.CreditPdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditPdfVM); } }; U.CreditPdfScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, creditUIState = t1.creditUIState, invoiceId = creditUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new U.CreditPdfVM(state, J.$index$asx(t2._list, t1).creditState.$get$1(0, invoiceId), creditUIState.historyActivityId); }, $signature: 2171 }; U.CreditPdfScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoicePdfView(vm, this.$this.showAppBar, new D.ValueKey("__credit_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2172 }; U.CreditPdfVM.prototype = {}; K.CreditPresenter.prototype = { getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), credit = type$.legacy_InvoiceEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(credit, 105, _null); case "number": t2 = credit.number; return L.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = credit.clientId; t2 = J.$index$asx(t2._map$_map, t1); return L.Text$((t2 == null ? T.ClientEntity_ClientEntity(t1, _null, _null) : t2).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(credit.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return L.Text$(Y.formatDate(credit.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "valid_until": return L.Text$(Y.formatDate(credit.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(credit.amount, context, credit.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "balance": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(credit.balance, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, credit.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, credit.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, credit.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, credit.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(credit.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(credit.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "discount": t1 = credit.isAmountDiscount; t2 = credit.discount; return L.Text$(t1 ? Y.formatNumber(t2, context, credit.clientId, _null, C.FormatNumberType_0, true, _null, false) : Y.formatNumber(t2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return L.Text$(credit.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(credit.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(credit.taxAmount, context, credit.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(credit.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return L.Text$(credit.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; A.CreditScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.creditUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.creditList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "balance"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("valid_until"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("exchange_rate"); t6.push("is_viewed"); t6.push("last_sent_date"); t7 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "balance"], t5); t5 = H.setRuntimeTypeInfo(["number", "amount", "updated_at"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, C.EntityType_credit, false, C.List_empty14, new A.CreditScreen_build_closure(store), new A.CreditScreen_build_closure0(store), new A.CreditScreen_build_closure1(store), new A.CreditScreen_build_closure2(store), new A.CreditScreen_build_closure3(store), new A.CreditScreen_build_closure4(store), new A.CreditScreen_build_closure5(store), _null, t5, C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_credit) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "credit_fab", false, new A.CreditScreen_build_closure6(context), t3.get$newCredit()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_credit, t2, new A.CreditScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new U.CreditListBuilder(_null), t6, C.EntityType_credit, t3, 0, _null, new A.CreditScreen_build_closure8(store), new A.CreditScreen_build_closure9(store)); } }; A.CreditScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.StartCreditMultiselect()); }, $signature: 9 }; A.CreditScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCredits(value)); }, $signature: 7 }; A.CreditScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.creditUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearCreditMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartCreditMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.CreditScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortCredits(value)); }, $signature: 7 }; A.CreditScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCreditsByState(state)); }, $signature: 53 }; A.CreditScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.creditUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearCreditMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartCreditMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.CreditScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCreditsByCustom1(value)); }, $signature: 5 }; A.CreditScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCreditsByCustom2(value)); }, $signature: 5 }; A.CreditScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCreditsByCustom3(value)); }, $signature: 5 }; A.CreditScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterCreditsByCustom4(value)); }, $signature: 5 }; A.CreditScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_credit); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; R.CreditScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.CreditScreenBuilder_build_closure(), R.credit_screen_vm_CreditScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditScreenVM); } }; R.CreditScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new A.CreditScreen(vm, null); }, $signature: 2173 }; R.CreditScreenVM.prototype = {}; M.CreditEdit.prototype = { createState$0: function() { return new M._CreditEditState(null, C._StateLifecycle_0); } }; M._CreditEditState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._credit_edit$_controller = U.TabController$(_this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._credit_edit$_controller.animateTo$1(2); }, dispose$0: function(_) { this._credit_edit$_controller.dispose$0(0); this.super$__CreditEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _credit_edit$_onSavePressed$2: function(context, action) { if (!$.$get$_CreditEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _credit_edit$_onSavePressed$1: function(context) { return this._credit_edit$_onSavePressed$2(context, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice); if (invoice.get$isNew()) t2 = t1.get$newCredit(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_credit"); if (t2 == null) t2 = ""; } t3 = H.setRuntimeTypeInfo([C.EntityAction_viewPdf, C.EntityAction_emailCredit], type$.JSArray_legacy_EntityAction); t4 = type$.JSArray_legacy_Widget; t5 = E.TabBar$(_this._credit_edit$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$items(t1)), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$pdf())], t4)); t6 = $.$get$_CreditEditState__formKey(); if (isFullscreen) t4 = new T.CreditEditDetailsScreen(_this._widget.viewModel, _null); else { t7 = "__invoice_" + invoice.id + "_" + invoice.updatedAt + "__"; t8 = _this._credit_edit$_controller; t9 = _this._widget.viewModel; t7 = E.TabBarView$(H.setRuntimeTypeInfo([new T.CreditEditDetailsScreen(t9, _null), new X.InvoiceEditContactsScreen(invoice.entityType, _null), new R.CreditEditItemsScreen(t9, false, _null), new G.CreditEditNotesScreen(_null), new U.CreditEditPDFScreen(_null)], t4), t8, new D.ValueKey(t7, type$.ValueKey_legacy_String)); t4 = t7; } return K.EditScaffold$(t3, t5, A.Form$(false, t4, t6), new K.InvoiceEditFooter(invoice, _null), invoice, E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, C.Icon_yXb, "credit_edit_fab", false, new M._CreditEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new M._CreditEditState_build_closure0(_this), new M._CreditEditState_build_closure1(viewModel), new M._CreditEditState_build_closure2(_this), _null, t2); } }; M._CreditEditState_build_closure1.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; M._CreditEditState_build_closure2.prototype = { call$1: function(context) { return this.$this._credit_edit$_onSavePressed$1(context); }, $signature: 29 }; M._CreditEditState_build_closure0.prototype = { call$2: function(context, action) { return this.$this._credit_edit$_onSavePressed$2(context, action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 57 }; M._CreditEditState_build_closure.prototype = { call$0: function() { var _this = this; E.showDialog(true, new M._CreditEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; M._CreditEditState_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.invoice, t2 = J.where$1$ax(t1.lineItems._list, new M._CreditEditState_build___closure()), t3 = _this.viewModel, t4 = t2.$ti._eval$1("MappedIterable<1,BaseEntity*>"); return new D.InvoiceItemSelector(new M._CreditEditState_build___closure0(_this.$this, t3, _this.isFullscreen), t1.clientId, P.List_List$of(new H.MappedIterable(t2, new M._CreditEditState_build___closure1(t3), t4), true, t4._eval$1("Iterable.E")), false, null); }, $signature: 311 }; M._CreditEditState_build___closure.prototype = { call$1: function(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 58 }; M._CreditEditState_build___closure1.prototype = { call$1: function(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskState.map; t1 = item.taskId; t1 = J.$index$asx(t2._map$_map, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map; t1 = item.expenseId; t1 = J.$index$asx(t2._map$_map, t1); } return t1; }, $signature: 288 }; M._CreditEditState_build___closure0.prototype = { call$2: function(items, clientId) { this.viewModel.onItemsAdded.call$2(items, clientId); if (!this.isFullscreen) this.$this._credit_edit$_controller.animateTo$1(2); }, call$1: function(items) { return this.call$2(items, null); }, $signature: 249 }; M.__CreditEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; T.CreditEditDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.CreditEditDetailsScreen_build_closure(this), new T.CreditEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditDetailsVM); } }; T.CreditEditDetailsScreen_build_closure0.prototype = { call$1: function(store) { return T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore(store); }, $signature: 2177 }; T.CreditEditDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new S.InvoiceEditDesktop(viewModel, this.$this.viewModel, new D.ValueKey("__credit_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new N.InvoiceEditDetails(viewModel, C.EntityType_credit, null); }, $signature: 2178 }; T.CreditEditDetailsVM.prototype = {}; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure.prototype = { call$1: function(credit) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCredit(credit)); }, $signature: 138 }; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0.prototype = { call$3: function(context, credit, client) { var t1, t2, _this = this; if (client != null) { t1 = _this.state.staticState.currencyMap; t2 = _this.company.settings.currencyId; if (t2 == null) t2 = "1"; t2 = credit.rebuild$1(new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure1(R.getExchangeRate(t1, t2, client.settings.currencyId))); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.UpdateCredit(t2)); } J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.UpdateCreditClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 274 }; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure1.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._exchangeRate = this.exchangeRate; return b; }, $signature: 11 }; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0(t3), t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 135 }; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit/edit")); }, $signature: 3 }; T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/credit/edit")); }, $signature: 44 }; R.CreditEditItemsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.CreditEditItemsScreen_build_closure(this), new R.CreditEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditItemsVM); } }; R.CreditEditItemsScreen_build_closure0.prototype = { call$1: function(store) { return R.CreditEditItemsVM_CreditEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2182 }; R.CreditEditItemsScreen_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new E.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new G.InvoiceEditItems(viewModel, t2, null); }, $signature: 2183 }; R.CreditEditItemsVM.prototype = {}; R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure.prototype = { call$1: function(index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteCreditItem(index)); }, $signature: 103 }; R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EditCreditItem(null)); }, $signature: 1 }; R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1.prototype = { call$2: function(creditItem, index) { var t2, t1 = this.store; if (index == J.get$length$asx(t1.get$_store$_state().uiState.creditUIState.editing.lineItems._list)) { t2 = creditItem.rebuild$1(new R.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure(this.isTasks)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.AddCreditItem(t2)); } else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.UpdateCreditItem(index, creditItem)); }, $signature: 241 }; R.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure.prototype = { call$1: function(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 54 }; R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2.prototype = { call$2: function(oldIndex, newIndex) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MoveCreditItem(oldIndex, newIndex)); }, $signature: 141 }; G.CreditEditNotesScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.CreditEditNotesScreen_build_closure(), new G.CreditEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditNotesVM); } }; G.CreditEditNotesScreen_build_closure0.prototype = { call$1: function(store) { return G.CreditEditNotesVM_CreditEditNotesVM$fromStore(store); }, $signature: 2185 }; G.CreditEditNotesScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.InvoiceEditNotes(viewModel, null); }, $signature: 2186 }; G.CreditEditNotesVM.prototype = {}; G.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure.prototype = { call$1: function(credit) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCredit(credit)); }, $signature: 138 }; U.CreditEditPDFScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.CreditEditPDFScreen_build_closure(), new U.CreditEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditPDFVM); } }; U.CreditEditPDFScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.creditUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new U.CreditEditPDFVM(state, J.$index$asx(t2._list, t1).userCompany.company, invoice); }, $signature: 2187 }; U.CreditEditPDFScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2188 }; U.CreditEditPDFVM.prototype = {}; X.CreditEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.CreditEditScreen_build_closure(), new X.CreditEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditEditVM); } }; X.CreditEditScreen_build_closure0.prototype = { call$1: function(store) { return X.CreditEditVM_CreditEditVM$fromStore(store); }, $signature: 2189 }; X.CreditEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new M.CreditEdit(viewModel, new D.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2190 }; X.CreditEditVM.prototype = {}; X.CreditEditVM_CreditEditVM$fromStore_closure.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new X.CreditEditVM_CreditEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; X.CreditEditVM_CreditEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t4, _this = this, t1 = _this.store, credit = t1.get$_store$_state().uiState.creditUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (credit.clientId.length === 0) { E.showDialog(true, new X.CreditEditVM_CreditEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!credit.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; t2 = !B.hasCreditChanges(credit, J.$index$asx(t2.userCompanyStates._list, t4).creditState.map) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailCredit, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), _this.action); } else t2 = false; t4 = _this.action; if (t2) M.handleEntitiesActions(H.setRuntimeTypeInfo([credit], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new P._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCreditRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), credit)); return t2.then$1$1(0, new X.CreditEditVM_CreditEditVM$fromStore___closure0(credit, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new X.CreditEditVM_CreditEditVM$fromStore___closure1()); } }, $signature: 31 }; X.CreditEditVM_CreditEditVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 21 }; X.CreditEditVM_CreditEditVM$fromStore___closure0.prototype = { call$1: function(savedCredit) { var _this = this, _s12_ = "/credit/view", t1 = _this.credit, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_credit"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedCredit(); M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedCredit); } else { M.viewEntity(false, savedCredit, null, false); if (t2.isEditorFullScreen$1(C.EntityType_credit)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedCredit, null); } } t1 = _this.action; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailCredit, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), t1)) M.handleEntitiesActions(H.setRuntimeTypeInfo([savedCredit], type$.JSArray_legacy_BaseEntity), t1, false); }, $signature: 68 }; X.CreditEditVM_CreditEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new X.CreditEditVM_CreditEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; X.CreditEditVM_CreditEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; X.CreditEditVM_CreditEditVM$fromStore_closure0.prototype = { call$2: function(items, clientId) { var t1; if (items.length === 1) { t1 = J.get$length$asx(this.credit.lineItems._list); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EditCreditItem(t1)); } J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.AddCreditItems(items)); }, $signature: 244 }; X.CreditEditVM_CreditEditVM$fromStore_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.state.uiState; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) M.viewEntitiesByType(C.EntityType_credit, _null); else { M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, true); t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; M.CreditViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.CreditViewScreen_build_closure(this), new M.CreditViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditViewVM); } }; M.CreditViewScreen_build_closure0.prototype = { call$1: function(store) { return M.CreditViewVM_CreditViewVM$fromStore(store); }, $signature: 2193 }; M.CreditViewScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new E.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.creditUIState.tabIndex, null); }, $signature: 2194 }; M.CreditViewVM.prototype = {}; M.CreditViewVM_CreditViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadCredit(completer, this.credit.id)); return completer.future; }, $signature: 17 }; M.CreditViewVM_CreditViewVM$fromStore_closure.prototype = { call$2: function(context, index) { M.editEntity(O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedCredit(), false, type$.legacy_ClientEntity), context, this.credit, index); }, call$1: function(context) { return this.call$2(context, null); }, "call*": "call$2", $defaultValues: function() { return [null]; }, $signature: 306 }; M.CreditViewVM_CreditViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; M.CreditViewVM_CreditViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCreditDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.credit)); t1.then$1$1(0, new M.CreditViewVM_CreditViewVM$fromStore__closure0(context), type$.Null).catchError$1(new M.CreditViewVM_CreditViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; M.CreditViewVM_CreditViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; M.CreditViewVM_CreditViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new M.CreditViewVM_CreditViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; M.CreditViewVM_CreditViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; M.CreditViewVM_CreditViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new M.CreditViewVM_CreditViewVM$fromStore__closure(t2, this.credit), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; M.CreditViewVM_CreditViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadCredit(null, this.credit.id)); }, $signature: 95 }; M.CreditViewVM_CreditViewVM$fromStore_closure3.prototype = { call$3: function(context, credit, activityId) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ShowPdfCredit(credit, context, activityId)); }, call$2: function(context, credit) { return this.call$3(context, credit, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues: function() { return [null]; }, $signature: 292 }; A.DashboardActivity.prototype = { build$1: function(_, context) { var t1 = this.viewModel.state, t2 = t1.uiState.selectedCompanyIndex, activities = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.activities; return X.ScrollableListViewBuilder$(new A.DashboardActivity_build_closure(activities), J.get$length$asx(activities._list), null, null); } }; A.DashboardActivity_build_closure.prototype = { call$2: function(context, index) { return new N.ActivityListTile(J.$index$asx(this.activities._list, index), true, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 267 }; U.DashboardChart.prototype = { createState$0: function() { return new U._DashboardChartState(C._StateLifecycle_0); }, onDateSelected$2: function(arg0, arg1) { return this.onDateSelected.call$2(arg0, arg1); } }; U._DashboardChartState.prototype = { _onSelectionChanged$1: function(model) { var t2, _this = this, t1 = {}, selectedDatum = P.List_List$unmodifiable(model._selectedDatum, H._instanceType(model)._eval$1("SeriesDatum<1>")); t1.date = null; t1.total = 0; if (selectedDatum.length !== 0) { t1.date = C.JSArray_methods.get$first(selectedDatum).datum.get$date(); new H.WhereIterable(selectedDatum, new U._DashboardChartState__onSelectionChanged_closure(), H._arrayInstanceType(selectedDatum)._eval$1("WhereIterable<1>")).forEach$1(0, new U._DashboardChartState__onSelectionChanged_closure0(t1, P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_num))); } _this.setState$1(new U._DashboardChartState__onSelectionChanged_closure1(t1, _this)); t2 = _this._widget; t2.toString; t2.onDateSelected$2(_this._dashboard_chart$_selectedIndex, Y.convertDateTimeToSqlDate(t1.date)); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, theme = K.Theme_of(context), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), color = state.prefState.enableDarkMode ? C.Color_toQ : C.Color_ww80, series = J.$index$asx(_this._widget.data, _this._dashboard_chart$_selectedIndex), settings = state.uiState.dashboardUIState.settings, t2 = series.chartSeries, t3 = H.setRuntimeTypeInfo([new F.SelectionModelConfig(C.SelectionModelType_0, _this.get$_onSelectionChanged(), type$.SelectionModelConfig_legacy_DateTime)], type$.JSArray_legacy_SelectionModelConfig_legacy_DateTime), layoutBuilder = L.TabularLegendLayout_TabularLegendLayout$horizontalFirst(C.EdgeInsets_8_8_8_8, _null), chart = M.TimeSeriesChart$(t2, true, H.setRuntimeTypeInfo([new Z.SeriesLegend(P.LinkedHashSet_LinkedHashSet(type$.GestureType), C.SelectionModelType_0, new Y.TabularLegendContentBuilder(C.C_SimpleLegendEntryLayout, layoutBuilder), C.BehaviorPosition_0, C.OutsideJustification_4, C.InsideJustification_0, false, C.LegendDefaultMeasure_0, _null, _null, _null, _null, type$.SeriesLegend_legacy_DateTime)], type$.JSArray_legacy_ChartBehavior_legacy_DateTime), L.DateTimeAxisSpec$(S.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, new T.TextStyleSpec(_null, color), new T.LineStyleSpec(color), _null, _null, type$.legacy_DateTime)), T.NumericAxisSpec$(L.GridlineRendererSpec$(_null, new T.TextStyleSpec(_null, color), new T.LineStyleSpec(color), type$.legacy_num)), t3); t2 = _this._widget; t3 = t2.title; t4 = theme.textTheme; t3 = L.Text$(t3, _null, _null, _null, _null, _null, t4.headline5, _null, _null, _null); t5 = Z.Divider$(_null, 1, _null); t6 = settings.enableComparison ? 122 : 102; t6 = T.LimitedBox$(B.ListView$(J.map$1$1$ax(t2.data, new U._DashboardChartState_build_closure(_this, context, settings, state, theme, t1), type$.legacy_InkWell).toList$0(0), _null, _null, _null, false, C.Axis_0, true), t6, 1 / 0); t2 = Z.Divider$(_null, 1, _null); t7 = T.SizedBox$(new T.Padding(C.EdgeInsets_16_16_16_16, T.ClipRect$(chart), _null), 240, _null); t8 = Z.Divider$(_null, 1, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "average"); t4 = t4.headline6; t1 = T.Expanded$(L.Text$(C.JSString_methods.$add((t1 == null ? "" : t1) + ": ", Y.formatNumber(series.average, context, _null, _this._widget.currencyId, C.FormatNumberType_0, true, _null, false)), _null, _null, _null, _null, _null, t4, _null, _null, _null), 1); t9 = _this._dashboard_chart$_selected; t4 = t9 != null ? L.Text$(t9, _null, _null, _null, _null, _null, t4, _null, _null, _null) : T.SizedBox$(_null, _null, _null); t9 = type$.JSArray_legacy_Widget; return Y.FormCard$(_null, H.setRuntimeTypeInfo([new T.Padding(new V.EdgeInsets(0, 8, 0, 24), t3, _null), t5, t6, t2, t7, t8, M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([t1, t4], t9), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(0, 16, 0, 16), _null, _null, _null)], t9), C.CrossAxisAlignment_0, 4, false, _null, false, _null); } }; U._DashboardChartState__onSelectionChanged_closure.prototype = { call$1: function(datumPair) { return datumPair.series.id === "current"; }, $signature: 2198 }; U._DashboardChartState__onSelectionChanged_closure0.prototype = { call$1: function(datumPair) { var t1 = this._box_0, t2 = t1.total, t3 = datumPair.datum; t1.total = t2 + t3.get$amount(); this.measures.$indexSet(0, datumPair.series.displayName, t3.get$amount()); }, $signature: 2199 }; U._DashboardChartState__onSelectionChanged_closure1.prototype = { call$0: function() { var t4, t1 = this._box_0, t2 = t1.date, t3 = this.$this; if (t2 != null) { t2 = t2.toIso8601String$0(); t4 = t3._framework$_element; t4.toString; t4 = Y.formatDate(t2, t4, true, true, false) + " \u2022 "; t1 = t1.total; t2 = t3._framework$_element; t2.toString; t3._dashboard_chart$_selected = C.JSString_methods.$add(t4, Y.formatNumber(t1, t2, null, t3._widget.currencyId, C.FormatNumberType_0, true, null, false)); } else t3._dashboard_chart$_selected = null; }, $signature: 1 }; U._DashboardChartState_build_closure.prototype = { call$1: function(dataGroup) { var changePercent, changeString, t6, t7, _this = this, _null = null, t1 = _this.$this, index = J.indexOf$1$asx(t1._widget.data, dataGroup), isSelected = index === t1._dashboard_chart$_selectedIndex, t2 = dataGroup.total, t3 = dataGroup.previousTotal, isIncrease = t2 > t3, t4 = isIncrease ? "+" : "", t5 = _this.context, changeAmount = C.JSString_methods.$add(t4, Y.formatNumber(t2 - t3, t5, _null, t1._widget.currencyId, C.FormatNumberType_0, true, _null, false)); t2 = isIncrease ? "+" : ""; t3 = dataGroup.total; if (t3 !== 0 && dataGroup.previousTotal !== 0) { t4 = dataGroup.previousTotal; t4 = Y.round((t3 - t4) / t4 * 100, 2); t3 = t4; } else t3 = 0; changePercent = C.JSString_methods.$add(t2, Y.formatNumber(t3, t5, _null, t1._widget.currencyId, C.FormatNumberType_1, true, _null, false)); t2 = dataGroup.total; if (t2 !== 0) { t3 = dataGroup.previousTotal; t2 = t3 === 0 || t2 === t3; } else t2 = true; if (t2) changeString = _this.settings.enableComparison ? " " : ""; else changeString = changeAmount + " (" + changePercent + ")"; t2 = isSelected ? _this.state.get$accentColor() : _this.theme.cardColor; t3 = _this.localization.lookup$1(dataGroup.name); t4 = _this.theme.textTheme; t6 = isSelected ? C.Color_4294967295 : _null; t6 = L.Text$(t3, _null, _null, _null, _null, _null, t4.headline6.copyWith$1$color(t6), _null, _null, _null); t3 = T.SizedBox$(_null, 4, _null); t5 = Y.formatNumber(dataGroup.total, t5, _null, t1._widget.currencyId, C.FormatNumberType_0, true, _null, false); t7 = isSelected ? C.Color_4294967295 : _null; t7 = L.Text$(t5, _null, _null, _null, _null, _null, t4.headline5.copyWith$1$color(t7), _null, _null, _null); t4 = T.SizedBox$(_null, 4, _null); if (changeString.length !== 0) { if (isSelected) t5 = C.Color_4294967295; else t5 = isIncrease ? C.MaterialColor_Map_JNEaM_4283215696 : C.MaterialColor_Map_JNc9P_4294198070; t5 = L.Text$(changeString, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t5, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); } else t5 = T.SizedBox$(_null, _null, _null); return R.InkWell$(false, _null, true, M.Container$(_null, T.Column$(H.setRuntimeTypeInfo([t6, t3, t7, t4, t5], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, t2, _null, _null, _null, _null, _null, _null, new V.EdgeInsets(16, 16, 32, 16), _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new U._DashboardChartState_build__closure(t1, index), _null, _null, _null, _null, _null); }, $signature: 2200 }; U._DashboardChartState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new U._DashboardChartState_build___closure(t1, this.index)); }, $signature: 1 }; U._DashboardChartState_build___closure.prototype = { call$0: function() { var t1 = this.$this; t1._dashboard_chart$_selectedIndex = this.index; t1._dashboard_chart$_selected = null; }, $signature: 1 }; E.DashboardDateRangePicker.prototype = { createState$0: function() { return new E._DashboardDateRangePickerState(C._StateLifecycle_0); }, onSettingsChanged$1: function(arg0) { return this.onSettingsChanged.call$1(arg0); } }; E._DashboardDateRangePickerState.prototype = { didChangeDependencies$0: function() { var t1, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._dashboard_date_range_picker$_settings = F.DashboardSettings_fromState(_this._widget.state); if (t1.dateRange !== C.DateRange_custom) { t1.startDate = ""; t1.endDate = Y.convertDateTimeToSqlDate(null); } t1 = _this._dashboard_date_range_picker$_settings; if (t1.compareDateRange !== C.DateRangeComparison_customRange) { t1.compareStartDate = ""; t1.compareEndDate = Y.convertDateTimeToSqlDate(null); } }, build$1: function(_, context) { var t5, t6, t7, t8, t9, t10, t11, t0, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = L.Text$(t1.get$dateRange(), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), t3 = T.SizedBox$(_null, 16, _null), t4 = $.$get$_$values()._set$_set.map$1$1(0, new E._DashboardDateRangePickerState_build_closure(t1), type$.legacy_DropdownMenuItem_legacy_DateRange); t4 = K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, P.List_List$of(t4, true, H._instanceType(t4)._eval$1("Iterable.E")), _null, new E._DashboardDateRangePickerState_build_closure0(_this), _null, _null, _null, _this._dashboard_date_range_picker$_settings.dateRange, type$.legacy_DateRange); t5 = T.Expanded$(M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "compare"); t6 = L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = _this._dashboard_date_range_picker$_settings.enableComparison; t8 = type$.JSArray_legacy_Widget; t7 = T.Row$(H.setRuntimeTypeInfo([new K.DropdownButtonHideUnderline(t4, _null), t5, new T.Wrap(C.WrapCrossAlignment_2, H.setRuntimeTypeInfo([t6, N.Switch$(K.Theme_of(context).accentColor, _null, _null, false, _null, _null, _null, _null, new E._DashboardDateRangePickerState_build_closure1(_this), t7)], t8), _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t4 = _this._dashboard_date_range_picker$_settings; if (t4.dateRange !== C.DateRange_custom) t4 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t4 = t4.startDate; t4 = K.DatePicker$(false, _null, _null, t1.get$startDate(), _null, new E._DashboardDateRangePickerState_build_closure2(_this), t4, _null); } t5 = _this._dashboard_date_range_picker$_settings; if (t5.dateRange !== C.DateRange_custom) t5 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); else { t5 = t5.endDate; t5 = K.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new E._DashboardDateRangePickerState_build_closure3(_this), t5, _null); } t6 = T.SizedBox$(_null, 6, _null); if (_this._dashboard_date_range_picker$_settings.enableComparison) { t9 = $.$get$_$comparisonValues()._set$_set.map$1$1(0, new E._DashboardDateRangePickerState_build_closure4(t1), type$.legacy_DropdownMenuItem_legacy_DateRangeComparison); t9 = P.List_List$of(t9, true, H._instanceType(t9)._eval$1("Iterable.E")); t10 = _this._dashboard_date_range_picker$_settings; t11 = t10.compareDateRange; t9 = K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, t9, _null, new E._DashboardDateRangePickerState_build_closure5(_this), _null, _null, _null, t11, type$.legacy_DateRangeComparison); if (t11 !== C.DateRangeComparison_customRange) { t11 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t0 = t11; t11 = t10; t10 = t0; } else { t10 = t1.get$startDate(); t11 = _this._dashboard_date_range_picker$_settings; t10 = K.DatePicker$(false, _null, _null, t10, _null, new E._DashboardDateRangePickerState_build_closure6(_this), t11.compareStartDate, _null); } t11 = t11.compareDateRange !== C.DateRangeComparison_customRange ? M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null) : K.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new E._DashboardDateRangePickerState_build_closure7(_this), _this._dashboard_date_range_picker$_settings.compareEndDate, _null); t11 = T.Column$(H.setRuntimeTypeInfo([new K.DropdownButtonHideUnderline(t9, _null), t10, t11], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); t9 = t11; } else t9 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new E.ResponsivePadding(T.Column$(H.setRuntimeTypeInfo([M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_24_24_24_24, new X.ScrollableListView(H.setRuntimeTypeInfo([t2, t3, t7, t4, t5, t6, t9, new T.Padding(C.EdgeInsets_0_10_10_0, T.Row$(H.setRuntimeTypeInfo([new D.AppButton(_null, _null, t1.get$done(), new E._DashboardDateRangePickerState_build_closure8(_this, context), _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null), _null)], t8), _null, _null, false, _null), _null)], t8), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, _null, 0, _null, _null, _null, _null, C.MaterialType_0)], t8), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null); } }; E._DashboardDateRangePickerState_build_closure.prototype = { call$1: function(dateRange) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), dateRange, type$.legacy_DateRange); }, $signature: 459 }; E._DashboardDateRangePickerState_build_closure0.prototype = { call$1: function(dateRange) { var t1 = this.$this; t1.setState$1(new E._DashboardDateRangePickerState_build__closure2(t1, dateRange)); }, $signature: 550 }; E._DashboardDateRangePickerState_build__closure2.prototype = { call$0: function() { return this.$this._dashboard_date_range_picker$_settings.dateRange = this.dateRange; }, $signature: 2203 }; E._DashboardDateRangePickerState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new E._DashboardDateRangePickerState_build__closure1(t1, value)); }, $signature: 20 }; E._DashboardDateRangePickerState_build__closure1.prototype = { call$0: function() { return this.$this._dashboard_date_range_picker$_settings.enableComparison = this.value; }, $signature: 19 }; E._DashboardDateRangePickerState_build_closure2.prototype = { call$1: function(date) { return this.$this._dashboard_date_range_picker$_settings.startDate = date; }, $signature: 15 }; E._DashboardDateRangePickerState_build_closure3.prototype = { call$1: function(date) { return this.$this._dashboard_date_range_picker$_settings.endDate = date; }, $signature: 15 }; E._DashboardDateRangePickerState_build_closure4.prototype = { call$1: function(dateRange) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), dateRange, type$.legacy_DateRangeComparison); }, $signature: 2204 }; E._DashboardDateRangePickerState_build_closure5.prototype = { call$1: function(dateRange) { var t1 = this.$this; t1.setState$1(new E._DashboardDateRangePickerState_build__closure0(t1, dateRange)); }, $signature: 2205 }; E._DashboardDateRangePickerState_build__closure0.prototype = { call$0: function() { return this.$this._dashboard_date_range_picker$_settings.compareDateRange = this.dateRange; }, $signature: 2206 }; E._DashboardDateRangePickerState_build_closure6.prototype = { call$1: function(date) { return this.$this._dashboard_date_range_picker$_settings.compareStartDate = date; }, $signature: 15 }; E._DashboardDateRangePickerState_build_closure7.prototype = { call$1: function(date) { return this.$this._dashboard_date_range_picker$_settings.compareEndDate = date; }, $signature: 15 }; E._DashboardDateRangePickerState_build_closure8.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._dashboard_date_range_picker$_settings; if (t2.dateRange === C.DateRange_custom && J.compareTo$1$ns(t2.startDate, t2.endDate) === 1) { E.showDialog(true, new E._DashboardDateRangePickerState_build__closure(), this.context, null, true, type$.legacy_ErrorDialog); return; } t1._widget.onSettingsChanged$1(t2); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; E._DashboardDateRangePickerState_build__closure.prototype = { call$1: function(context) { return new M.ErrorDialog("Date range is not valid", false, null); }, $signature: 21 }; Y.DashboardPanels.prototype = { _showDateOptions$1: function(context) { E.showDialog(true, new Y.DashboardPanels__showDateOptions_closure(this), context, null, true, type$.legacy_DashboardDateRangePicker); }, _dashboard_panels$_header$1: function(context) { var state = this.viewModel.state, t1 = state.uiState, t2 = t1.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), company = t4.$index(t3, t2).userCompany.company, clientMap = t4.$index(t3, t2).clientState.map, groupMap = t4.$index(t3, t2).groupState.map, settings = t1.dashboardUIState.settings, currencies = $.$get$memoizedGetCurrencyIds().call$3(company, clientMap, groupMap); t1 = J.getInterceptor$asx(currencies); if (t1.get$length(currencies) > 1 && !t1.contains$1(currencies, "-1")) t1.insert$2(currencies, 0, "-1"); return new A.LayoutBuilder(new Y.DashboardPanels__header_closure(this, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), settings, $.$get$memoizedHasMultipleCurrencies().call$3(company, clientMap, groupMap), company, clientMap, groupMap, state), null); }, _paymentChart$2$context$onDateSelected: function(context, onDateSelected) { var t6, currentData, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).lastUpdated, isLoaded = t5 > 0 || J.get$isNotEmpty$asx(t4.$index(t3, t2).paymentState.list._list); t5 = $.$get$memoizedChartPayments(); t6 = state.staticState.currencyMap; currentData = t5.call$6(t6, t4.$index(t3, t2).userCompany.company, settings, t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).paymentState.map); previousData = settings.enableComparison ? $.$get$memoizedPreviousChartPayments().call$6(t6, t4.$index(t3, t2).userCompany.company, settings.rebuild$1(new Y.DashboardPanels__paymentChart_closure()), t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).paymentState.map) : null; return Y._DashboardPanel$(context, currentData, isLoaded, new Y.DashboardPanels__paymentChart_closure0(onDateSelected, currentData), previousData, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$payments(), t1); }, _quoteChart$2$context$onDateSelected: function(context, onDateSelected) { var t6, currentData, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).lastUpdated, isLoaded = t5 > 0 || J.get$isNotEmpty$asx(t4.$index(t3, t2).quoteState.list._list); t5 = $.$get$memoizedChartQuotes(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.$index(t3, t2).userCompany.company, settings, t4.$index(t3, t2).quoteState.map, t4.$index(t3, t2).clientState.map); previousData = settings.enableComparison ? $.$get$memoizedPreviousChartQuotes().call$5(t6, t4.$index(t3, t2).userCompany.company, settings.rebuild$1(new Y.DashboardPanels__quoteChart_closure()), t4.$index(t3, t2).quoteState.map, t4.$index(t3, t2).clientState.map) : null; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return Y._DashboardPanel$(context, currentData, isLoaded, new Y.DashboardPanels__quoteChart_closure0(onDateSelected, currentData), previousData, t2.get$quotes(t2), t1); }, _taskChart$2$context$onDateSelected: function(context, onDateSelected) { var t6, currentData, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).lastUpdated, isLoaded = t5 > 0 || J.get$isNotEmpty$asx(t4.$index(t3, t2).taskState.list._list); t5 = $.$get$memoizedChartTasks(); t6 = state.staticState.currencyMap; currentData = t5.call$8(t6, t4.$index(t3, t2).userCompany.company, settings, t4.$index(t3, t2).taskState.map, t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).projectState.map, t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).groupState.map); previousData = settings.enableComparison ? $.$get$memoizedPreviousChartTasks().call$8(t6, t4.$index(t3, t2).userCompany.company, settings.rebuild$1(new Y.DashboardPanels__taskChart_closure()), t4.$index(t3, t2).taskState.map, t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).projectState.map, t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).groupState.map) : null; return Y._DashboardPanel$(context, currentData, isLoaded, new Y.DashboardPanels__taskChart_closure0(onDateSelected, currentData), previousData, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$tasks(), t1); }, _expenseChart$2$context$onDateSelected: function(context, onDateSelected) { var t6, currentData, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).lastUpdated, isLoaded = t5 > 0 || J.get$isNotEmpty$asx(t4.$index(t3, t2).expenseState.list._list); t5 = $.$get$memoizedChartExpenses(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.$index(t3, t2).userCompany.company, settings, t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).expenseState.map); previousData = settings.enableComparison ? $.$get$memoizedPreviousChartExpenses().call$5(t6, t4.$index(t3, t2).userCompany.company, settings.rebuild$1(new Y.DashboardPanels__expenseChart_closure()), t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).expenseState.map) : null; return Y._DashboardPanel$(context, currentData, isLoaded, new Y.DashboardPanels__expenseChart_closure0(onDateSelected, currentData), previousData, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$expenses(), t1); }, build$1: function(_, context) { var t3, _this = this, _null = null, t1 = _this.viewModel, state = t1.state, t2 = state.uiState.selectedCompanyIndex, company = J.$index$asx(state.userCompanyStates._list, t2).userCompany.company; t2 = state.staticState.updatedAt; if (!(t2 != null && t2 > 0)) return new V.LoadingIndicator(_null, false, _null); t2 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([], t2); if (company.isModuleEnabled$1(C.EntityType_invoice)) t3.push(new Y._InvoiceChart(t1, context, new Y.DashboardPanels_build_closure(_this), _null)); if (company.isModuleEnabled$1(C.EntityType_invoice)) t3.push(_this._paymentChart$2$context$onDateSelected(context, new Y.DashboardPanels_build_closure0(_this))); if (company.isModuleEnabled$1(C.EntityType_quote)) t3.push(_this._quoteChart$2$context$onDateSelected(context, new Y.DashboardPanels_build_closure1(_this))); if (company.isModuleEnabled$1(C.EntityType_task)) t3.push(_this._taskChart$2$context$onDateSelected(context, new Y.DashboardPanels_build_closure2(_this))); if (company.isModuleEnabled$1(C.EntityType_expense)) t3.push(_this._expenseChart$2$context$onDateSelected(context, new Y.DashboardPanels_build_closure3(_this))); t3.push(T.SizedBox$(_null, 500, _null)); t1 = H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_50_0_0, new X.ScrollableListView(t3, _this.scrollController, _null, false, _null), _null), _this._dashboard_panels$_header$1(context)], t2); if (state.isLoading) t1.push(U.LinearProgressIndicator$()); return T.Stack$(C.AlignmentDirectional_m1_m1, t1, C.Clip_1, C.StackFit_0, _null, _null); } }; Y.DashboardPanels__showDateOptions_closure.prototype = { call$1: function(context) { var t1 = this.$this.viewModel; return new E.DashboardDateRangePicker(t1.dashboardUIState, t1.onSettingsChanged, null); }, $signature: 2207 }; Y.DashboardPanels__header_closure.prototype = { call$2: function(context, constraints) { var t8, t9, t10, t11, t12, t13, t14, today, startDateTime, startDateTimeString, endDateTime, endDateTimeString, _this = this, _null = null, _s10_ = "MMM d, yyy", t1 = {}, isWide = constraints.maxWidth > 500, t2 = _this.localization, t3 = t2.localeCode, t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "gross"), t5 = type$.legacy_bool, t6 = _this.$this, t7 = _this.settings, taxSettings = new T.Padding(C.EdgeInsets_16_0_0_0, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, t5), K.DropdownMenuItem$(L.Text$(t2.get$net(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_bool), _null, new Y.DashboardPanels__header__closure(t6, isWide, context), _null, _null, _null, t7.includeTaxes, t5), _null), _null); t5 = t1.currencySettings = T.SizedBox$(_null, _null, _null); t4 = _this.hasMultipleCurrencies; if (t4) t5 = t1.currencySettings = new T.Padding(C.EdgeInsets_16_0_0_0, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, false, false, 48, J.map$1$1$ax($.$get$memoizedGetCurrencyIds().call$3(_this.company, _this.clientMap, _this.groupMap), new Y.DashboardPanels__header__closure0(t6, t2), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), _null, new Y.DashboardPanels__header__closure1(t6, isWide, context), _null, _null, _null, t7.currencyId, type$.legacy_String), _null), _null); t8 = K.Theme_of(context).cardColor; t9 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58396_MaterialIcons_null_true, _null, _null), 24, new Y.DashboardPanels__header__closure2(t6), C.EdgeInsets_8_8_8_8, _null, C.VisualDensity_m2_m2); t10 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null), 24, new Y.DashboardPanels__header__closure3(t6), C.EdgeInsets_8_8_8_8, _null, C.VisualDensity_m2_m2); t11 = T.SizedBox$(_null, _null, 4); t12 = _this.company; t13 = t7.startDate$1(t12); t14 = t7.endDate$1(t12); today = new P.DateTime(Date.now(), false); startDateTime = P.DateTime_tryParse(t13).toLocal$0(); startDateTimeString = A.DateFormat$(H.Primitives_getYear(today) === H.Primitives_getYear(startDateTime) ? "MMM d" : _s10_, _null).format$1(startDateTime); endDateTime = P.DateTime_tryParse(t14).toLocal$0(); endDateTimeString = A.DateFormat$(H.Primitives_getYear(today) === H.Primitives_getYear(endDateTime) ? "MMM d" : _s10_, _null).format$1(endDateTime); t13 = type$.JSArray_legacy_Widget; t14 = _this.state; t11 = H.setRuntimeTypeInfo([t9, t10, t11, T.Expanded$(Z.PopupMenuButton$(new T.Padding(C.EdgeInsets_4_6_0_6, T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(startDateTimeString + " - " + endDateTimeString, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6.copyWith$1$fontSize(16), _null, _null, _null), _null), T.SizedBox$(_null, _null, 6), L.Icon$(C.IconData_57496_MaterialIcons_null_false, _null, _null)], t13), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null), _null), _null, true, _null, _null, new Y.DashboardPanels__header__closure4(t2), new Y.DashboardPanels__header__closure5(t6, t14, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_DateRange), 1), T.SizedBox$(_null, _null, 8)], t13); if (!isWide) t9 = t12.numberOfInvoiceTaxRates > 0 || t12.numberOfItemTaxRates > 0 || t4; else t9 = false; if (t9) t11.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C._MdiIconData_dDd, _null, _null), 24, new Y.DashboardPanels__header__closure6(t1, context, t2, t7, t4, t12, taxSettings), C.EdgeInsets_8_8_8_8, _null, C.VisualDensity_m2_m2)); else { t1 = H.setRuntimeTypeInfo([], t13); if (t12.numberOfInvoiceTaxRates > 0 || t12.numberOfItemTaxRates > 0) t1.push(taxSettings); if (t4) t1.push(t5); C.JSArray_methods.addAll$1(t11, t1); } if (D.getLayout(context) === C.AppLayout_desktop && !t14.uiState.dashboardUIState.showSidebar) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "show_sidebar"); if (t1 == null) t1 = ""; t11.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_59064_MaterialIcons_null_false, _null, _null), 24, new Y.DashboardPanels__header__closure7(t6), C.EdgeInsets_8_8_8_8, t1, _null)); } return M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_16_8_16_2, T.Row$(t11, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), C.Clip_0, t8, 6, _null, _null, _null, _null, C.MaterialType_0); }, $signature: 2208 }; Y.DashboardPanels__header__closure.prototype = { call$1: function(value) { var $navigator, t1, _this = this; _this.$this.viewModel.onTaxesChanged.call$1(value); if (!_this.isWide) { $navigator = K.Navigator_maybeOf(_this.context); t1 = $navigator != null && $navigator.canPop$0(); } else t1 = false; if (t1) K.Navigator_of(_this.context, false).pop$1(0, null); }, $signature: 20 }; Y.DashboardPanels__header__closure0.prototype = { call$1: function(currencyId) { var t1, _null = null; if (currencyId === "-1") t1 = this.localization.get$all(); else { t1 = J.$index$asx(this.$this.viewModel.currencyMap._map$_map, currencyId); t1 = t1 == null ? _null : t1.code; } return K.DropdownMenuItem$(L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), currencyId, type$.legacy_String); }, $signature: 36 }; Y.DashboardPanels__header__closure1.prototype = { call$1: function(currencyId) { var $navigator, t1, _this = this; _this.$this.viewModel.onCurrencyChanged.call$1(currencyId); if (!_this.isWide) { $navigator = K.Navigator_maybeOf(_this.context); t1 = $navigator != null && $navigator.canPop$0(); } else t1 = false; if (t1) K.Navigator_of(_this.context, false).pop$1(0, null); }, $signature: 7 }; Y.DashboardPanels__header__closure2.prototype = { call$0: function() { return this.$this.viewModel.onOffsetChanged.call$1(1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Y.DashboardPanels__header__closure3.prototype = { call$0: function() { return this.$this.viewModel.onOffsetChanged.call$1(-1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Y.DashboardPanels__header__closure4.prototype = { call$1: function(context) { var t1 = $.$get$_$values()._set$_set.map$1$1(0, new Y.DashboardPanels__header___closure1(this.localization), type$.legacy_PopupMenuItem_legacy_DateRange); return P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")); }, $signature: 2209 }; Y.DashboardPanels__header___closure1.prototype = { call$1: function(dateRange) { var _null = null, t1 = this.localization; return Z.PopupMenuItem$(L.Text$(dateRange === C.DateRange_custom ? t1.get$more() + "..." : t1.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), dateRange, type$.legacy_DateRange); }, $signature: 2210 }; Y.DashboardPanels__header__closure5.prototype = { call$1: function(dateRange) { var settings = F.DashboardSettings_fromState(this.state.uiState.dashboardUIState), t1 = this.$this; if (dateRange === C.DateRange_custom) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new Y.DashboardPanels__header___closure0(t1, this.context)); else { settings.dateRange = dateRange; t1.viewModel.onSettingsChanged.call$1(settings); } }, $signature: 550 }; Y.DashboardPanels__header___closure0.prototype = { call$1: function(duration) { this.$this._showDateOptions$1(this.context); }, $signature: 45 }; Y.DashboardPanels__header__closure6.prototype = { call$0: function() { var _this = this; E.showDialog(true, new Y.DashboardPanels__header___closure(_this._box_0, _this.localization, _this.settings, _this.hasMultipleCurrencies, _this.company, _this.taxSettings), _this.context, null, true, type$.legacy_AlertDialog); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.DashboardPanels__header___closure.prototype = { call$1: function(context) { var t4, t5, t6, t7, _this = this, _null = null, t1 = _this.localization, t2 = L.Text$(t1.get$settings(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t3 = _this.settings; t3 = "__" + t3.includeTaxes + "_" + t3.currencyId + "__"; t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new Y.DashboardPanels__header____closure(context), _null)], t4); t6 = H.setRuntimeTypeInfo([], t4); if (_this.hasMultipleCurrencies) t6.push(T.Row$(H.setRuntimeTypeInfo([L.Text$(t1.get$currency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new R.Spacer(_null), _this._box_0.currencySettings], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); t7 = _this.company; if (t7.numberOfInvoiceTaxRates > 0 || t7.numberOfItemTaxRates > 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "taxes"); t6.push(T.Row$(H.setRuntimeTypeInfo([L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), new R.Spacer(_null), _this.taxSettings], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); } return E.AlertDialog$(t5, C.EdgeInsets_0_0_0_0, _null, T.Column$(t6, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.EdgeInsets_24_20_24_24, new D.ValueKey(t3, type$.ValueKey_legacy_String), _null, t2); }, $signature: 172 }; Y.DashboardPanels__header____closure.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; Y.DashboardPanels__header__closure7.prototype = { call$0: function() { return this.$this.viewModel.onShowSidebar.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Y.DashboardPanels__paymentChart_closure.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + 1; return b; }, $signature: 123 }; Y.DashboardPanels__paymentChart_closure0.prototype = { call$2: function(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 74 }; Y.DashboardPanels__quoteChart_closure.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + 1; return b; }, $signature: 123 }; Y.DashboardPanels__quoteChart_closure0.prototype = { call$2: function(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 74 }; Y.DashboardPanels__taskChart_closure.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + 1; return b; }, $signature: 123 }; Y.DashboardPanels__taskChart_closure0.prototype = { call$2: function(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 74 }; Y.DashboardPanels__expenseChart_closure.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + 1; return b; }, $signature: 123 }; Y.DashboardPanels__expenseChart_closure0.prototype = { call$2: function(index, date) { return this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 74 }; Y.DashboardPanels_build_closure.prototype = { call$1: function(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(C.EntityType_invoice, entityIds); }, $signature: 206 }; Y.DashboardPanels_build_closure0.prototype = { call$1: function(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(C.EntityType_payment, entityIds); }, $signature: 206 }; Y.DashboardPanels_build_closure1.prototype = { call$1: function(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(C.EntityType_quote, entityIds); }, $signature: 206 }; Y.DashboardPanels_build_closure2.prototype = { call$1: function(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(C.EntityType_task, entityIds); }, $signature: 206 }; Y.DashboardPanels_build_closure3.prototype = { call$1: function(entityIds) { return this.$this.viewModel.onSelectionChanged.call$2(C.EntityType_expense, entityIds); }, $signature: 206 }; Y._DashboardPanel.prototype = { createState$0: function() { return new Y.__DashboardPanelState(C._StateLifecycle_0); } }; Y.__DashboardPanelState.prototype = { build$1: function(_, context) { var t4, _this = this, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, t3 = t2.viewModel, settings = t3.dashboardUIState.settings, state = t3.state; if (!t2.isLoaded) return new V.LoadingIndicator(null, true, null); if (_this._dashboard_panels$_chart != null && J.$eq$(_this._currentData, t2.currentData) && J.$eq$(_this._previousData, _this._widget.previousData)) return _this._dashboard_panels$_chart; t2 = _this._widget; t3 = t2.currentData; _this._currentData = t3; _this._previousData = t2.previousData; J.forEach$1$ax(t3, new Y.__DashboardPanelState_build_closure(_this, state, settings, t1)); t1 = _this._widget; t3 = t1.currentData; t2 = t1.title; t1 = t1.onDateSelected; t4 = settings.currencyId; if (!(t4.length !== 0)) { t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(state.userCompanyStates._list, t4).userCompany.company.settings.currencyId; if (t4 == null) t4 = "1"; } return _this._dashboard_panels$_chart = new U.DashboardChart(t3, t2, t4, t1, null); } }; Y.__DashboardPanelState_build_closure.prototype = { call$1: function(dataGroup) { var t3, t4, t5, t6, previous, previousSeries, i, _this = this, _s8_ = "previous", t1 = _this.$this, index = J.indexOf$1$asx(t1._widget.currentData, dataGroup), t2 = _this.settings.enableComparison; if (t2) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "current"); if (t3 == null) t3 = ""; } else t3 = t1._widget.title; t4 = dataGroup.rawSeries; t5 = type$.legacy_ChartMoneyData; t6 = type$.legacy_DateTime; dataGroup.chartSeries = H.setRuntimeTypeInfo([F.Series_Series(new Y.__DashboardPanelState_build__closure(_this.state), t4, t3, new Y.__DashboardPanelState_build__closure0(), "current", new Y.__DashboardPanelState_build__closure1(), t5, t6)], type$.JSArray_legacy_Series_of_dynamic_and_legacy_DateTime); if (t2) { previous = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ChartMoneyData); previousSeries = J.$index$asx(t1._widget.previousData, index).rawSeries; dataGroup.previousTotal = J.$index$asx(t1._widget.previousData, index).total; for (i = 0; i < Math.min(t4.length, previousSeries.length); ++i) previous.push(new O.ChartMoneyData(t4[i].date, previousSeries[i].amount)); t1 = dataGroup.chartSeries; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), _s8_); if (t2 == null) t2 = ""; t1.push(F.Series_Series(new Y.__DashboardPanelState_build__closure2(), previous, t2, new Y.__DashboardPanelState_build__closure3(), _s8_, new Y.__DashboardPanelState_build__closure4(), t5, t6)); } }, $signature: 2212 }; Y.__DashboardPanelState_build__closure0.prototype = { call$2: function(chartData, _) { return chartData.date; }, $signature: 549 }; Y.__DashboardPanelState_build__closure1.prototype = { call$2: function(chartData, _) { return chartData.amount; }, $signature: 548 }; Y.__DashboardPanelState_build__closure.prototype = { call$2: function(chartData, _) { return K.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 547 }; Y.__DashboardPanelState_build__closure3.prototype = { call$2: function(chartData, _) { return chartData.date; }, $signature: 549 }; Y.__DashboardPanelState_build__closure4.prototype = { call$2: function(chartData, _) { return chartData.amount; }, $signature: 548 }; Y.__DashboardPanelState_build__closure2.prototype = { call$2: function(chartData, _) { return C.Color_ePM; }, $signature: 547 }; Y._InvoiceChart.prototype = { build$1: function(_, context) { var t6, currentData, previousData, t1 = this.viewModel, settings = t1.dashboardUIState.settings, state = t1.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).lastUpdated, isLoaded = t5 > 0 || J.get$isNotEmpty$asx(t4.$index(t3, t2).invoiceState.list._list); t5 = $.$get$memoizedChartInvoices(); t6 = state.staticState.currencyMap; currentData = t5.call$5(t6, t4.$index(t3, t2).userCompany.company, settings, t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).clientState.map); previousData = settings.enableComparison ? $.$get$memoizedPreviousChartInvoices().call$5(t6, t4.$index(t3, t2).userCompany.company, settings.rebuild$1(new Y._InvoiceChart_build_closure()), t4.$index(t3, t2).invoiceState.map, t4.$index(t3, t2).clientState.map) : null; return Y._DashboardPanel$(context, currentData, isLoaded, new Y._InvoiceChart_build_closure0(this, currentData), previousData, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$invoices(), t1); } }; Y._InvoiceChart_build_closure.prototype = { call$1: function(b) { var t1 = b.get$_dashboard_state$_$this()._offset; b.get$_dashboard_state$_$this()._offset = t1 + 1; return b; }, $signature: 123 }; Y._InvoiceChart_build_closure0.prototype = { call$2: function(index, date) { return this.$this.onDateSelected.call$1(J.$index$asx(this.currentData, index).entityMap.$index(0, date)); }, $signature: 74 }; F.DashboardScreen.prototype = { createState$0: function() { return new F._DashboardScreenState(H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityType), null, C._StateLifecycle_0); } }; F._DashboardScreenState.prototype = { initState$0: function() { var state, t1, t2, t3, t4, company, entityType, index, t5, _this = this; _this.super$State$initState(); state = _this._widget.viewModel.state; t1 = state.uiState; t2 = t1.selectedCompanyIndex; t3 = state.userCompanyStates._list; t4 = J.getInterceptor$asx(t3); company = t4.$index(t3, t2).userCompany.company; entityType = t1.dashboardUIState.selectedEntityType; C.JSArray_methods.forEach$1(H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_payment, C.EntityType_quote, C.EntityType_task, C.EntityType_expense], type$.JSArray_legacy_EntityType), new F._DashboardScreenState_initState_closure(_this, company)); t1 = _this._tabs; index = C.JSArray_methods.contains$1(t1, entityType) ? C.JSArray_methods.indexOf$1(t1, entityType) : 0; _this._mainTabController = U.TabController$(0, state.prefState.appLayout === C.AppLayout_mobile ? 3 + t1.length : 3, _this); t1 = U.TabController$(index, t1.length, _this); t5 = t1.ChangeNotifier__listeners; t5._insertBefore$3$updateFirst(t5._collection$_first, new B._ListenerEntry(_this.get$onTabListener()), false); _this._sideTabController = t1; t1 = F.ScrollController$(null, index * 541); t5 = t1.ChangeNotifier__listeners; t5._insertBefore$3$updateFirst(t5._collection$_first, new B._ListenerEntry(_this.get$onScrollListener()), false); _this._dashboard_screen$_scrollController = t1; if (Y.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com") { t1 = t4.$index(t3, t2).userCompany.company.settings.name; t1 = (t1 == null ? "" : t1).length === 0; } else t1 = false; if (t1) $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new F._DashboardScreenState_initState_closure0(_this, state)); }, onScrollListener$0: function() { var offsetIndex, t2, _this = this, t1 = _this._framework$_element; t1.toString; if (D.getLayout(t1) === C.AppLayout_mobile) return; t1 = C.JSArray_methods.get$single(_this._dashboard_screen$_scrollController._positions)._pixels; t1.toString; offsetIndex = C.JSNumber_methods.floor$0((t1 + 120) / 541); t1 = _this._sideTabController; if (t1._tab_controller$_index !== offsetIndex && offsetIndex < _this._tabs.length) { t2 = _this.get$onTabListener(); t1.removeListener$1(0, t2); _this._sideTabController._changeIndex$1(offsetIndex); t1 = _this._sideTabController.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); _this._widget.viewModel.onEntityTypeChanged.call$1(_this._tabs[offsetIndex]); } }, onTabListener$0: function() { var index, _this = this, t1 = _this._framework$_element; t1.toString; if (D.getLayout(t1) === C.AppLayout_mobile || _this._mainTabController._tab_controller$_index !== 0) return; index = _this._sideTabController._tab_controller$_index; t1 = C.JSArray_methods.get$single(_this._dashboard_screen$_scrollController._positions)._pixels; t1.toString; if (index !== C.JSNumber_methods.floor$0((t1 + 120) / 541)) { _this._dashboard_screen$_scrollController.jumpTo$1(index * 541 + 1); _this._widget.viewModel.onEntityTypeChanged.call$1(_this._tabs[index]); } }, dispose$0: function(_) { var t1, _this = this; _this._mainTabController.dispose$0(0); t1 = _this._sideTabController; t1.removeListener$1(0, _this.get$onTabListener()); t1.dispose$0(0); t1 = _this._dashboard_screen$_scrollController; t1.removeListener$1(0, _this.get$onScrollListener()); t1.dispose$0(0); _this.super$__DashboardScreenState_State_TickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var leading, t5, t6, t7, t8, t9, t10, mainScaffold, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = J.$index$asx(t2._list, t4).userCompany.company; if (D.getLayout(context) !== C.AppLayout_mobile) { t2 = state.prefState; t2 = t2.appLayout === C.AppLayout_mobile || t2.menuSidebarMode === C.AppSidebarMode_float; } else t2 = true; leading = t2 ? new T.Builder(new F._DashboardScreenState_build_closure(t1), _null) : _null; if (D.getLayout(context) !== C.AppLayout_mobile) { t2 = state.prefState; t2 = t2.appLayout === C.AppLayout_mobile || t2.menuSidebarMode === C.AppSidebarMode_float; } else t2 = true; t2 = t2 ? new A.MenuDrawerBuilder(_null) : _null; if (D.getLayout(context) !== C.AppLayout_mobile) { t4 = state.prefState; t4 = t4.appLayout === C.AppLayout_mobile || t4.historySidebarMode === C.AppSidebarMode_float; } else t4 = true; t4 = t4 ? new A.HistoryDrawerBuilder(_null) : _null; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([], t5); if (D.getLayout(context) === C.AppLayout_desktop) t6.push(T.Expanded$(new T.Padding(C.EdgeInsets_0_0_16_0, E.TabBar$(_this._mainTabController, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$overview()), E.Tab$(_null, t1.get$activity()), E.Tab$(_null, t1.get$systemLogs())], t5)), _null), 3)); t7 = "__cleared_at_" + t3.filterClearedAt + "__"; t8 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t6.push(T.Expanded$(new N.ListFilter(C.EntityType_dashboard, t3.filter, new F._DashboardScreenState_build_closure0(store), t8, new D.ValueKey(t7, type$.ValueKey_legacy_String)), 2)); t6 = T.Row$(t6, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t7 = H.setRuntimeTypeInfo([], t5); if (D.getLayout(context) === C.AppLayout_mobile || !state.prefState.isHistoryVisible) t7.push(new T.Builder(new F._DashboardScreenState_build_closure1(t1, state, store), _null)); if (D.getLayout(context) === C.AppLayout_mobile) { t8 = _this._mainTabController; t9 = D.getLayout(context); t10 = H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$overview()), E.Tab$(_null, t1.get$activity()), E.Tab$(_null, t1.get$systemLogs())], t5); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_invoice)) t10.push(E.Tab$(_null, t1.get$invoices())); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_payment)) t10.push(E.Tab$(_null, t1.get$payments())); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_quote)) t10.push(E.Tab$(_null, t1.get$quotes(t1))); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_task)) t10.push(E.Tab$(_null, t1.get$tasks())); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_expense)) t10.push(E.Tab$(_null, t1.get$expense())); t1 = E.TabBar$(t8, _null, t9 === C.AppLayout_mobile, _null, _null, t10); } else t1 = _null; mainScaffold = M.Scaffold$(E.AppBar$(t7, _null, false, _null, _null, t1, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, t6, _null, _null, _null, 1, _null), _null, new F._CustomTabBarView(_this._widget.viewModel, _this._mainTabController, _this._dashboard_screen$_scrollController, _null), _null, t2, t4, _null, _null); if (D.getLayout(context) === C.AppLayout_desktop) { t1 = H.setRuntimeTypeInfo([new T.Flexible(3, C.FlexFit_1, mainScaffold, _null)], t5); if (t3.dashboardUIState.showSidebar) t1.push(new T.Flexible(2, C.FlexFit_1, new T.AppBorder(new S.SidebarScaffold(_this._sideTabController, _null), _null, true, false, _null), _null)); t1 = T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } else t1 = mainScaffold; return new F.WillPopScope(t1, new F._DashboardScreenState_build_closure2(), _null); } }; F._DashboardScreenState_initState_closure.prototype = { call$1: function(entityType) { if (this.company.isModuleEnabled$1(entityType)) this.$this._tabs.push(entityType); }, $signature: 201 }; F._DashboardScreenState_initState_closure0.prototype = { call$1: function(duration) { var t1 = this.$this._framework$_element; t1.toString; E.showDialog(false, new F._DashboardScreenState_initState__closure(this.state), t1, null, true, type$.void); }, $signature: 45 }; F._DashboardScreenState_initState__closure.prototype = { call$1: function(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return new X.SettingsWizard(J.$index$asx(t1.userCompanyStates._list, t2).userCompany.user, null); }, $signature: 2216 }; F._DashboardScreenState_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return R.InkWell$(false, _null, true, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58332_MaterialIcons_null_false, _null, _null), 24, new F._DashboardScreenState_build__closure0(context), C.EdgeInsets_8_8_8_8, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 375 }; F._DashboardScreenState_build__closure0.prototype = { call$0: function() { M.Scaffold_of(this.context).openDrawer$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._DashboardScreenState_build_closure0.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterCompany(value)); }, $signature: 7 }; F._DashboardScreenState_build_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.localization; t1 = t1.get$history(t1); return B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58132_MaterialIcons_null_false, _null, _null), 24, new F._DashboardScreenState_build__closure(context, this.state, this.store), C.EdgeInsets_4_0_20_0, t1, _null); }, $signature: 271 }; F._DashboardScreenState_build__closure.prototype = { call$0: function() { var t2, _null = null, t1 = this.context; if (D.getLayout(t1) !== C.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === C.AppLayout_mobile || t2.historySidebarMode === C.AppSidebarMode_float; } else t2 = true; if (t2) M.Scaffold_of(t1).openEndDrawer$0(); else { t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_history); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._DashboardScreenState_build_closure2.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; F._CustomTabBarView.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = _this.viewModel, t2 = t1.state, t3 = t2.uiState.selectedCompanyIndex, company = J.$index$asx(t2.userCompanyStates._list, t3).userCompany.company; t2 = t1.filter; if ((t2 == null ? "" : t2).length !== 0) return X.ScrollableListViewBuilder$(new F._CustomTabBarView_build_closure(_this), J.get$length$asx(t1.filteredList), _null, _null); t1 = H.setRuntimeTypeInfo([N.RefreshIndicator$(new Y.DashboardPanels(t1, _this.scrollController, _null), new F._CustomTabBarView_build_closure0(_this, context)), N.RefreshIndicator$(new A.DashboardActivity(t1, _null), new F._CustomTabBarView_build_closure1(_this, context)), N.RefreshIndicator$(new A.DashboardSystemLogs(t1, _null), new F._CustomTabBarView_build_closure2(_this, context))], type$.JSArray_legacy_Widget); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_invoice)) t1.push(new S.InvoiceSidebar(_null)); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_payment)) t1.push(new S.PaymentSidebar(_null)); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_quote)) t1.push(new S.QuoteSidebar(_null)); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_task)) t1.push(new S.TaskSidebar(_null)); if (D.getLayout(context) === C.AppLayout_mobile && company.isModuleEnabled$1(C.EntityType_expense)) t1.push(new S.ExpenseSidbar(_null)); return E.TabBarView$(t1, _this.tabController, _null); } }; F._CustomTabBarView_build_closure.prototype = { call$2: function(context, index) { var t3, t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.$this.viewModel, entity = J.$index$asx(t2.filteredList, index), subtitle = entity.matchesFilterValue$1(t2.filter); t2 = L.Text$(entity.get$listDisplayName(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = L.Icon$(Q.getEntityIcon(entity.get$entityType()), _null, _null); t4 = L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null); return Q.ListTile$(false, _null, _null, true, false, _null, t3, _null, new F._CustomTabBarView_build__closure(entity), false, _null, _null, L.Text$(subtitle != null ? subtitle : t1.lookup$1(H.S(entity.get$entityType())), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 541 }; F._CustomTabBarView_build__closure.prototype = { call$0: function() { return M.viewEntity(false, this.entity, null, false); }, $signature: 0 }; F._CustomTabBarView_build_closure0.prototype = { call$0: function() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; F._CustomTabBarView_build_closure1.prototype = { call$0: function() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; F._CustomTabBarView_build_closure2.prototype = { call$0: function() { return this.$this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; F.__DashboardScreenState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; Q.DashboardScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Q.DashboardScreenBuilder_build_closure(), Q.dashboard_screen_vm_DashboardVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DashboardVM); } }; Q.DashboardScreenBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var state = viewModel.state, t1 = state.uiState.selectedCompanyIndex, company = J.$index$asx(state.userCompanyStates._list, t1).userCompany.company; if (!state.get$isUserConfirmed()) return new B.ConfirmEmailBuilder(null); return new F.DashboardScreen(viewModel, new D.ValueKey("__" + company.id + "_" + company.enabledModules + "_" + (state.prefState.appLayout === C.AppLayout_desktop) + "__", type$.ValueKey_legacy_String)); }, $signature: 2218 }; Q.DashboardVM.prototype = {}; Q.DashboardVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; Q.DashboardVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Q.DashboardVM_fromStore_closure2.prototype = { call$1: function(entityType) { if (entityType == null) return; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardEntityType(entityType)); }, $signature: 201 }; Q.DashboardVM_fromStore_closure0.prototype = { call$1: function(settings) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSettings(settings, null, null, null)); }, $signature: 2219 }; Q.DashboardVM_fromStore_closure5.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSettings(null, null, null, value)); }, $signature: 12 }; Q.DashboardVM_fromStore_closure1.prototype = { call$2: function(entityType, entityIds) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSelection(entityType, entityIds)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2220 }; Q.DashboardVM_fromStore_closure3.prototype = { call$1: function(offset) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSettings(null, offset, null, null)); }, $signature: 173 }; Q.DashboardVM_fromStore_closure4.prototype = { call$1: function(currencyId) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSettings(null, null, currencyId, null)); }, $signature: 5 }; Q.DashboardVM_fromStore_closure6.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSidebar(true)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; S.SidebarScaffold.prototype = { build$1: function(_, context) { var t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, company = J.$index$asx(t2._list, t3).userCompany.company; t3 = this.tabController; t2 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([], t2); if (company.isModuleEnabled$1(C.EntityType_invoice)) t4.push(E.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(C.EntityType_payment)) t4.push(E.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(C.EntityType_quote)) t4.push(E.Tab$(_null, t1.get$quotes(t1))); if (company.isModuleEnabled$1(C.EntityType_task)) t4.push(E.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(C.EntityType_expense)) t4.push(E.Tab$(_null, t1.get$expenses())); t1 = E.AppBar$(_null, _null, false, _null, _null, _null, 1, _null, _null, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBar$(t3, _null, true, _null, _null, t4), 1), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S.SidebarScaffold_build_closure(store), C.EdgeInsets_8_8_8_8, _null, _null)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, _null, _null, 1, _null); t2 = H.setRuntimeTypeInfo([], t2); if (company.isModuleEnabled$1(C.EntityType_invoice)) t2.push(new S.InvoiceSidebar(_null)); if (company.isModuleEnabled$1(C.EntityType_payment)) t2.push(new S.PaymentSidebar(_null)); if (company.isModuleEnabled$1(C.EntityType_quote)) t2.push(new S.QuoteSidebar(_null)); if (company.isModuleEnabled$1(C.EntityType_task)) t2.push(new S.TaskSidebar(_null)); if (company.isModuleEnabled$1(C.EntityType_expense)) t2.push(new S.ExpenseSidbar(_null)); return M.Scaffold$(t1, _null, E.TabBarView$(t2, t3, _null), _null, _null, _null, _null, _null); } }; S.SidebarScaffold_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSidebar(false)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; S.InvoiceSidebar.prototype = { build$1: function(_, context) { var t6, upcomingInvoices, pastDueInvoices, selectedIds, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = $.$get$memoizedUpcomingInvoices(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); upcomingInvoices = t2.call$2(t6.$index(t3, t5).invoiceState.map, t6.$index(t3, t5).clientState.map); pastDueInvoices = $.$get$memoizedPastDueInvoices().call$2(t6.$index(t3, t5).invoiceState.map, t6.$index(t3, t5).clientState.map); selectedIds = J.$index$asx(t4.dashboardUIState.selectedEntities._map$_map, C.EntityType_invoice); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "upcoming_invoices"); t2 = t4 == null ? "" : t4; t3 = J.getInterceptor$asx(upcomingInvoices); t2 += t3.get$isNotEmpty(upcomingInvoices) ? " (" + H.S(t3.get$length(upcomingInvoices)) + ")" : ""; t3 = t3.get$isEmpty(upcomingInvoices) ? _null : X.ScrollableListViewBuilder$(new S.InvoiceSidebar_build_closure(upcomingInvoices), t3.get$length(upcomingInvoices), _null, new S.InvoiceSidebar_build_closure0()); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "past_due_invoices"); if (t4 == null) t4 = ""; t5 = J.getInterceptor$asx(pastDueInvoices); t4 += t5.get$isNotEmpty(pastDueInvoices) ? " (" + H.S(t5.get$length(pastDueInvoices)) + ")" : ""; t5 = t5.get$isEmpty(pastDueInvoices) ? _null : X.ScrollableListViewBuilder$(new S.InvoiceSidebar_build_closure1(pastDueInvoices), t5.get$length(pastDueInvoices), _null, new S.InvoiceSidebar_build_closure2()); t6 = selectedIds == null; if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "selected_invoices"); if (t1 == null) t1 = ""; t1 += " (" + H.S(J.get$length$asx(selectedIds._list)) + ")"; } if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t6 = _null; else { t6 = t6 ? _null : J.get$length$asx(selectedIds._list); t6 = X.ScrollableListViewBuilder$(new S.InvoiceSidebar_build_closure3(state, selectedIds), t6, _null, new S.InvoiceSidebar_build_closure4()); } return S._DashboardSidebar$(C.EntityType_invoice, t2, t4, t1, t3, t5, t6); } }; S.InvoiceSidebar_build_closure.prototype = { call$2: function(context, index) { return new M.InvoiceListItem(J.$index$asx(this.upcomingInvoices, index), null, false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 411 }; S.InvoiceSidebar_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.InvoiceSidebar_build_closure1.prototype = { call$2: function(context, index) { return new M.InvoiceListItem(J.$index$asx(this.pastDueInvoices, index), null, false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 411 }; S.InvoiceSidebar_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.InvoiceSidebar_build_closure3.prototype = { call$2: function(context, index) { var invoice, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).invoiceState.map; t1 = J.$index$asx(this.selectedIds._list, index); invoice = J.$index$asx(t2._map$_map, t1); return invoice == null ? T.SizedBox$(_null, _null, _null) : new M.InvoiceListItem(invoice, _null, false, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S.InvoiceSidebar_build_closure4.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.PaymentSidebar.prototype = { build$1: function(_, context) { var t6, recentPayments, selectedIds, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = $.$get$memoizedRecentPayments(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); recentPayments = t2.call$2(t6.$index(t3, t5).paymentState.map, t6.$index(t3, t5).clientState.map); selectedIds = J.$index$asx(t4.dashboardUIState.selectedEntities._map$_map, C.EntityType_payment); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "recent_payments"); t2 = t4 == null ? "" : t4; t3 = J.getInterceptor$asx(recentPayments); t2 += t3.get$isNotEmpty(recentPayments) ? " (" + H.S(t3.get$length(recentPayments)) + ")" : ""; t3 = t3.get$isEmpty(recentPayments) ? _null : X.ScrollableListViewBuilder$(new S.PaymentSidebar_build_closure(recentPayments), t3.get$length(recentPayments), _null, new S.PaymentSidebar_build_closure0()); t4 = selectedIds == null; if (J.get$isEmpty$asx(t4 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "selected_payments"); if (t1 == null) t1 = ""; t1 += " (" + H.S(J.get$length$asx(selectedIds._list)) + ")"; } if (J.get$isEmpty$asx(t4 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t4 ? _null : J.get$length$asx(selectedIds._list); t4 = X.ScrollableListViewBuilder$(new S.PaymentSidebar_build_closure1(state, selectedIds), t4, _null, new S.PaymentSidebar_build_closure2()); } return S._DashboardSidebar$(C.EntityType_payment, t2, _null, t1, t3, _null, t4); } }; S.PaymentSidebar_build_closure.prototype = { call$2: function(context, index) { return new O.PaymentListItem(J.$index$asx(this.recentPayments, index), null, false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 540 }; S.PaymentSidebar_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.PaymentSidebar_build_closure1.prototype = { call$2: function(context, index) { var payment, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).paymentState.map; t1 = J.$index$asx(this.selectedIds._list, index); payment = J.$index$asx(t2._map$_map, t1); return payment == null ? T.SizedBox$(_null, _null, _null) : new O.PaymentListItem(payment, _null, false, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S.PaymentSidebar_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.QuoteSidebar.prototype = { build$1: function(_, context) { var t6, upcomingQuotes, expriedQuotes, selectedIds, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = $.$get$memoizedUpcomingQuotes(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); upcomingQuotes = t2.call$2(t6.$index(t3, t5).quoteState.map, t6.$index(t3, t5).clientState.map); expriedQuotes = $.$get$memoizedExpiredQuotes().call$2(t6.$index(t3, t5).quoteState.map, t6.$index(t3, t5).clientState.map); selectedIds = J.$index$asx(t4.dashboardUIState.selectedEntities._map$_map, C.EntityType_quote); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "upcoming_quotes"); t2 = t4 == null ? "" : t4; t3 = J.getInterceptor$asx(upcomingQuotes); t2 += t3.get$isNotEmpty(upcomingQuotes) ? " (" + H.S(t3.get$length(upcomingQuotes)) + ")" : ""; t3 = t3.get$isEmpty(upcomingQuotes) ? _null : X.ScrollableListViewBuilder$(new S.QuoteSidebar_build_closure(upcomingQuotes), t3.get$length(upcomingQuotes), _null, new S.QuoteSidebar_build_closure0()); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "expired_quotes"); if (t4 == null) t4 = ""; t5 = J.getInterceptor$asx(expriedQuotes); t4 += t5.get$isNotEmpty(expriedQuotes) ? " (" + H.S(t5.get$length(expriedQuotes)) + ")" : ""; t5 = t5.get$isEmpty(expriedQuotes) ? _null : X.ScrollableListViewBuilder$(new S.QuoteSidebar_build_closure1(expriedQuotes), t5.get$length(expriedQuotes), _null, new S.QuoteSidebar_build_closure2()); t6 = selectedIds == null; if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "selected_quotes"); if (t1 == null) t1 = ""; t1 += " (" + H.S(J.get$length$asx(selectedIds._list)) + ")"; } if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t6 = _null; else { t6 = t6 ? _null : J.get$length$asx(selectedIds._list); t6 = X.ScrollableListViewBuilder$(new S.QuoteSidebar_build_closure3(state, selectedIds), t6, _null, new S.QuoteSidebar_build_closure4()); } return S._DashboardSidebar$(C.EntityType_quote, t2, t4, t1, t3, t5, t6); } }; S.QuoteSidebar_build_closure.prototype = { call$2: function(context, index) { return new N.QuoteListItem(J.$index$asx(this.upcomingQuotes, index), null, false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 412 }; S.QuoteSidebar_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.QuoteSidebar_build_closure1.prototype = { call$2: function(context, index) { return new N.QuoteListItem(J.$index$asx(this.expriedQuotes, index), null, false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 412 }; S.QuoteSidebar_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.QuoteSidebar_build_closure3.prototype = { call$2: function(context, index) { var quote, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).quoteState.map; t1 = J.$index$asx(this.selectedIds._list, index); quote = J.$index$asx(t2._map$_map, t1); return quote == null ? T.SizedBox$(_null, _null, _null) : new N.QuoteListItem(quote, _null, false, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S.QuoteSidebar_build_closure4.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.TaskSidebar.prototype = { build$1: function(_, context) { var t6, runningTasks, recentTasks, selectedIds, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = $.$get$memoizedRunningTasks(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); runningTasks = t2.call$2(t6.$index(t3, t5).taskState.map, t6.$index(t3, t5).clientState.map); recentTasks = $.$get$memoizedRecentTasks().call$2(t6.$index(t3, t5).taskState.map, t6.$index(t3, t5).clientState.map); selectedIds = J.$index$asx(t4.dashboardUIState.selectedEntities._map$_map, C.EntityType_task); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "running_tasks"); t2 = t4 == null ? "" : t4; t3 = J.getInterceptor$asx(runningTasks); t2 += t3.get$isNotEmpty(runningTasks) ? " (" + H.S(t3.get$length(runningTasks)) + ")" : ""; t3 = t3.get$isEmpty(runningTasks) ? _null : X.ScrollableListViewBuilder$(new S.TaskSidebar_build_closure(runningTasks), t3.get$length(runningTasks), _null, new S.TaskSidebar_build_closure0()); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "recent_tasks"); if (t4 == null) t4 = ""; t5 = J.getInterceptor$asx(recentTasks); t4 += t5.get$isNotEmpty(recentTasks) ? " (" + H.S(t5.get$length(recentTasks)) + ")" : ""; t5 = t5.get$isEmpty(recentTasks) ? _null : X.ScrollableListViewBuilder$(new S.TaskSidebar_build_closure1(recentTasks), t5.get$length(recentTasks), _null, new S.TaskSidebar_build_closure2()); t6 = selectedIds == null; if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "selected_tasks"); if (t1 == null) t1 = ""; t1 += " (" + H.S(J.get$length$asx(selectedIds._list)) + ")"; } if (J.get$isEmpty$asx(t6 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t6 = _null; else { t6 = t6 ? _null : J.get$length$asx(selectedIds._list); t6 = X.ScrollableListViewBuilder$(new S.TaskSidebar_build_closure3(state, selectedIds), t6, _null, new S.TaskSidebar_build_closure4()); } return S._DashboardSidebar$(C.EntityType_quote, t2, t4, t1, t3, t5, t6); } }; S.TaskSidebar_build_closure.prototype = { call$2: function(context, index) { return U.TaskListItem$(null, false, true, null, null, false, J.$index$asx(this.runningTasks, index)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 277 }; S.TaskSidebar_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.TaskSidebar_build_closure1.prototype = { call$2: function(context, index) { return U.TaskListItem$(null, false, true, null, null, false, J.$index$asx(this.recentTasks, index)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 277 }; S.TaskSidebar_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.TaskSidebar_build_closure3.prototype = { call$2: function(context, index) { var task, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskState.map; t1 = J.$index$asx(this.selectedIds._list, index); task = J.$index$asx(t2._map$_map, t1); return task == null ? T.SizedBox$(_null, _null, _null) : U.TaskListItem$(_null, false, true, _null, _null, false, task); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S.TaskSidebar_build_closure4.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.ExpenseSidbar.prototype = { build$1: function(_, context) { var t6, recentExpenses, selectedIds, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = $.$get$memoizedRecentExpenses(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex; t3 = t3._list; t6 = J.getInterceptor$asx(t3); recentExpenses = t2.call$2(t6.$index(t3, t5).expenseState.map, t6.$index(t3, t5).clientState.map); selectedIds = J.$index$asx(t4.dashboardUIState.selectedEntities._map$_map, C.EntityType_expense); t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "recent_expenses"); t2 = t4 == null ? "" : t4; t3 = J.getInterceptor$asx(recentExpenses); t2 += t3.get$isNotEmpty(recentExpenses) ? " (" + H.S(t3.get$length(recentExpenses)) + ")" : ""; t3 = t3.get$isEmpty(recentExpenses) ? _null : X.ScrollableListViewBuilder$(new S.ExpenseSidbar_build_closure(recentExpenses), t3.get$length(recentExpenses), _null, new S.ExpenseSidbar_build_closure0()); t4 = selectedIds == null; if (J.get$isEmpty$asx(t4 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t1 = _null; else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "selected_expenses"); if (t1 == null) t1 = ""; t1 += " (" + H.S(J.get$length$asx(selectedIds._list)) + ")"; } if (J.get$isEmpty$asx(t4 ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : selectedIds)) t4 = _null; else { t4 = t4 ? _null : J.get$length$asx(selectedIds._list); t4 = X.ScrollableListViewBuilder$(new S.ExpenseSidbar_build_closure1(state, selectedIds), t4, _null, new S.ExpenseSidbar_build_closure2()); } return S._DashboardSidebar$(C.EntityType_expense, t2, _null, t1, t3, _null, t4); } }; S.ExpenseSidbar_build_closure.prototype = { call$2: function(context, index) { return V.ExpenseListItem$(J.$index$asx(this.recentExpenses, index), null, false, true, null, null, false); }, "call*": "call$2", $requiredArgCount: 2, $signature: 457 }; S.ExpenseSidbar_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S.ExpenseSidbar_build_closure1.prototype = { call$2: function(context, index) { var expense, _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map; t1 = J.$index$asx(this.selectedIds._list, index); expense = J.$index$asx(t2._map$_map, t1); return expense == null ? T.SizedBox$(_null, _null, _null) : V.ExpenseListItem$(expense, _null, false, true, _null, _null, false); }, "call*": "call$2", $requiredArgCount: 2, $signature: 155 }; S.ExpenseSidbar_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; S._DashboardSidebar.prototype = { build$1: function(_, context) { var t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), textTheme = K.Theme_of(context).textTheme, store = O.StoreProvider_of(context, type$.legacy_AppState), t2 = K.Theme_of(context).cardColor, t3 = K.Theme_of(context).scaffoldBackgroundColor, t4 = textTheme.bodyText2; t3 = M.Material$(C.Duration_200000, true, _null, M.Container$(_null, L.Text$(_this.label1, _null, _null, _null, _null, _null, t4, _null, _null, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, C.EdgeInsets_16_16_16_16, _null, _null, 1 / 0), C.Clip_0, t3, 4, _null, _null, _null, _null, C.MaterialType_0); t5 = _this.list1; t6 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([t3, T.Expanded$(t5 == null ? new U.HelpText(t1.get$noRecordsFound(), _null) : T.ClipRRect$(C.BorderRadius_tLn, t5), 1)], t6); t3 = _this.label2; if (t3 != null) { t7 = K.Theme_of(context).scaffoldBackgroundColor; t7 = M.Material$(C.Duration_200000, true, _null, M.Container$(_null, L.Text$(t3, _null, _null, _null, _null, _null, t4, _null, _null, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, C.EdgeInsets_16_16_16_16, _null, _null, 1 / 0), C.Clip_0, t7, 4, _null, _null, _null, _null, C.MaterialType_0); t3 = _this.list2; C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([t7, T.Expanded$(t3 == null ? new U.HelpText(t1.get$noRecordsFound(), _null) : T.ClipRRect$(C.BorderRadius_tLn, t3), 1)], t6)); } t1 = _this.label3; t3 = t1 == null; t7 = t3 ? 0 : (context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data.size._dy - 100) / 2; t8 = P.Duration$(0, 0, 0, 500, 0, 0); t9 = K.Theme_of(context).scaffoldBackgroundColor; t1 = M.Material$(C.Duration_200000, true, _null, M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t3 ? "" : t1, _null, _null, _null, _null, _null, t4, _null, _null, _null), 1), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S._DashboardSidebar_build_closure(_this, store), C.EdgeInsets_8_8_8_8, _null, C.VisualDensity_m2_m2)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, C.EdgeInsets_16_8_16_8, _null, _null, 1 / 0), C.Clip_0, t9, 4, _null, _null, _null, _null, C.MaterialType_0); t4 = _this.list3; t5.push(G.AnimatedContainer$(T.Column$(H.setRuntimeTypeInfo([t1, T.Expanded$(T.ClipRRect$(C.BorderRadius_tLn, t4 == null ? T.SizedBox$(_null, _null, _null) : t4), 1)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, C.Cubic_oKc, _null, t8, t7, _null, _null, _null, _null)); return M.Container$(_null, T.Column$(t5, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), C.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; S._DashboardSidebar_build_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new G.UpdateDashboardSelection(this.$this.entityType, null)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.DashboardSystemLogs.prototype = { build$1: function(_, context) { var t1 = this.viewModel.state, t2 = t1.uiState.selectedCompanyIndex; return new V.SystemLogViewer(J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.systemLogs, null); } }; G.DesignListItem.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, t1 = uiState.designUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([_this.design.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.design; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new G.DesignListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new G.DesignListItem_build_closure0(_this, context), new G.DesignListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t6, new L.EntityStateLabel(t2, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t4, _null), false, true, true, _null); }, get$design: function() { return this.design; } }; G.DesignListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.design, false, false); return t1; }, $signature: 0 }; G.DesignListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.design, false, true); return t1; }, $signature: 0 }; G.DesignListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; F.DesignListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.DesignListBuilder_build_closure(), F.design_list_vm_DesignListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignListVM); } }; F.DesignListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.designList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_design, new F.DesignListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, t4); }, $signature: 2226 }; F.DesignListBuilder_build__closure.prototype = { call$2: function(context, index) { var t3, t1 = this.viewModel, designId = J.$index$asx(t1.designList, index), design = J.$index$asx(t1.designMap._map$_map, designId), t2 = t1.state.getUIState$1(C.EntityType_design).get$listUIState().selectedIds; if (t2 != null) { t3 = design.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new G.DesignListItem(design, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2227 }; F.DesignListVM.prototype = {}; F.DesignListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; F.DesignListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; F.DesignListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SortDesigns(field)); }, $signature: 5 }; F.DesignListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ClearDesignMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; L.DesignScreen.prototype = { build$1: function(_, context) { var t4, t5, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.designUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.designList; t2 = t2.filter; t5 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_design, false, C.List_empty14, new L.DesignScreen_build_closure(store), new L.DesignScreen_build_closure0(store), new L.DesignScreen_build_closure1(store), new L.DesignScreen_build_closure2(store), new L.DesignScreen_build_closure3(store), new L.DesignScreen_build_closure4(store), new L.DesignScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name", "updated_at"], type$.JSArray_legacy_String), C.List_empty15, _null); t3 = state.prefState.appLayout === C.AppLayout_mobile && userCompany.isAdmin ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "design_fab", false, new L.DesignScreen_build_closure6(context, state), t3.get$newDesign()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_design, t2, new L.DesignScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new F.DesignListBuilder(_null), t5, C.EntityType_design, t3, 0, "invoice_design", new L.DesignScreen_build_closure8(store), new L.DesignScreen_build_closure9(store)); } }; L.DesignScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StartDesignMultiselect()); }, $signature: 9 }; L.DesignScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesigns(value)); }, $signature: 7 }; L.DesignScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.designUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.ClearDesignMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.StartDesignMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.DesignScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SortDesigns(value)); }, $signature: 7 }; L.DesignScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesignsByState(state)); }, $signature: 53 }; L.DesignScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.designUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.ClearDesignMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.StartDesignMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.DesignScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesignsByCustom1(value)); }, $signature: 5 }; L.DesignScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesignsByCustom2(value)); }, $signature: 5 }; L.DesignScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesignsByCustom3(value)); }, $signature: 5 }; L.DesignScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterDesignsByCustom4(value)); }, $signature: 5 }; L.DesignScreen_build_closure6.prototype = { call$0: function() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; M.createEntity(_null, _null, this.context, D.DesignEntity_DesignEntity(J.$index$asx(t1.userCompanyStates._list, t2).designState.get$cleanDesign().design, _null, _null), _null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.DesignScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.DesignScreenBuilder_build_closure(), G.design_screen_vm_DesignScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignScreenVM); } }; G.DesignScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new L.DesignScreen(vm, null); }, $signature: 2228 }; G.DesignScreenVM.prototype = {}; N.DesignEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new N._DesignEditState(new O.Debouncer(1500, false), new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), null, C._StateLifecycle_0); } }; N._DesignEditState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._htmlController.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onHtmlChanged()), false); _this._design_edit$_focusNode = O.FocusScopeNode$(true, null, false); _this._tabController = U.TabController$(0, _this._widget.viewModel.state.prefState.appLayout === C.AppLayout_mobile ? 7 : 6, _this); }, didChangeDependencies$0: function() { var design, _this = this, t1 = _this._design_edit$_nameController, t2 = _this._headerController, t3 = _this._footerController, t4 = _this._bodyController, t5 = _this._productsController, t6 = _this._tasksController, t7 = _this._includesController, t8 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._design_edit$_controllers = t8; C.JSArray_methods.forEach$1(t8, new N._DesignEditState_didChangeDependencies_closure(_this)); design = _this._widget.viewModel.design; t1.set$text(0, design.name); t1 = design.design._map$_map; t8 = J.getInterceptor$asx(t1); t2.set$text(0, t8.$index(t1, "header")); t3.set$text(0, t8.$index(t1, "footer")); t4.set$text(0, t8.$index(t1, "body")); t5.set$text(0, t8.$index(t1, "product")); t6.set$text(0, t8.$index(t1, "task")); t7.set$text(0, t8.$index(t1, "includes")); t1 = _this._design_edit$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new N._DesignEditState_didChangeDependencies_closure0(_this)); _this._loadDesign$1(design); t1 = _this._framework$_element; t1.toString; _this._loadPreview$2(t1, design); _this.super$__DesignEditState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var t1, _this = this; _this._design_edit$_focusNode.dispose$0(0); _this._tabController.dispose$0(0); t1 = _this._htmlController; t1.removeListener$1(0, _this.get$_onHtmlChanged()); t1.ChangeNotifier__listeners = null; t1 = _this._design_edit$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new N._DesignEditState_dispose_closure(_this)); _this.super$__DesignEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _design_edit$_onChanged$0: function() { var _this = this, design = _this._widget.viewModel.design.rebuild$1(new N._DesignEditState__onChanged_closure(_this)); if (!J.$eq$(design, _this._widget.viewModel.design)) _this._widget.viewModel.onChanged.call$1(design); _this._design_edit$_debouncer.run$1(new N._DesignEditState__onChanged_closure0(_this)); }, _onHtmlChanged$0: function() { this._htmlDebouncer.run$1(new N._DesignEditState__onHtmlChanged_closure(this)); }, _loadDesign$1: function(design) { var t2, _this = this, t1 = _this._design_edit$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new N._DesignEditState__loadDesign_closure(_this)); t1 = design.design._map$_map; t2 = J.getInterceptor$asx(t1); _this._headerController.set$text(0, t2.$index(t1, "header")); _this._bodyController.set$text(0, t2.$index(t1, "body")); _this._footerController.set$text(0, t2.$index(t1, "footer")); _this._productsController.set$text(0, t2.$index(t1, "product")); _this._tasksController.set$text(0, t2.$index(t1, "task")); _this._includesController.set$text(0, t2.$index(t1, "includes")); t1 = _this._design_edit$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new N._DesignEditState__loadDesign_closure0(_this)); _this._design_edit$_onChanged$0(); }, _loadPreview$2: function(context, design) { return this._loadPreview$body$_DesignEditState(context, design); }, _loadPreview$body$_DesignEditState: function(context, design) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this; var $async$_loadPreview$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._design_edit$_isLoading) { // goto return $async$goto = 1; break; } $async$self.setState$1(new N._DesignEditState__loadPreview_closure($async$self)); N.loadDesign(context, design, $async$self._isDraftMode, new N._DesignEditState__loadPreview_closure0($async$self)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_loadPreview$2, $async$completer); }, _setDraftMode$1: function(isDraftMode) { var t1, _this = this; _this.setState$1(new N._DesignEditState__setDraftMode_closure(_this, isDraftMode)); t1 = _this._framework$_element; t1.toString; _this._loadPreview$2(t1, _this._widget.viewModel.design); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), design = viewModel.design; if (design.get$isNew()) t2 = t1.get$newDesign(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_design"); if (t2 == null) t2 = ""; } t3 = D.getLayout(context) === C.AppLayout_mobile ? E.TabBar$(_this._tabController, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$settings()), E.Tab$(_null, t1.get$preview()), E.Tab$(_null, t1.get$body(t1)), E.Tab$(_null, t1.get$header()), E.Tab$(_null, t1.get$footer()), E.Tab$(_null, t1.get$products()), E.Tab$(_null, t1.get$includes(t1))], type$.JSArray_legacy_Widget)) : _null; t4 = _this._design_edit$_isLoading ? _null : new N._DesignEditState_build_closure(viewModel); t5 = _this.get$_loadDesign(); t6 = _this._design_edit$_nameController; t7 = _this._htmlController; if (D.getLayout(context) === C.AppLayout_mobile) { t1 = _this._tabController; t8 = $.$get$_DesignEditState__formKey(); t9 = _this._design_edit$_focusNode; t10 = _this._design_edit$_isLoading; t11 = _this._isDraftMode; t5 = N.DesignSettings$(t11, t7, t10, t6, new N._DesignEditState_build_closure0(_this), t5, viewModel); t6 = t11 ? new N.HtmlDesignPreview(_this._html, t10, _null) : new N.PdfDesignPreview(_this._pdfBytes, t10, _null); t1 = new X.AppTabForm(t9, t8, H.setRuntimeTypeInfo([t5, t6, new N.DesignSection(_this._bodyController, _null), new N.DesignSection(_this._headerController, _null), new N.DesignSection(_this._footerController, _null), new N.DesignSection(_this._productsController, _null), new N.DesignSection(_this._includesController, _null)], type$.JSArray_legacy_Widget), t1, _null, _null); } else { t8 = _this._design_edit$_focusNode; t9 = $.$get$_DesignEditState__formKey(); t10 = _this._tabController; t11 = type$.JSArray_legacy_Widget; t1 = H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$settings()), E.Tab$(_null, t1.get$body(t1)), E.Tab$(_null, t1.get$header()), E.Tab$(_null, t1.get$footer()), E.Tab$(_null, t1.get$products()), E.Tab$(_null, t1.get$includes(t1))], t11); t12 = _this._tabController; t13 = _this._design_edit$_isLoading; t12 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([new R.AppTabBar(t1, t10, true, _null, _null), T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.DesignSettings$(_this._isDraftMode, t7, t13, t6, new N._DesignEditState_build_closure1(_this), t5, viewModel), new N.DesignSection(_this._bodyController, _null), new N.DesignSection(_this._headerController, _null), new N.DesignSection(_this._footerController, _null), new N.DesignSection(_this._productsController, _null), new N.DesignSection(_this._includesController, _null)], t11), t12, _null), 1)], t11), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); t1 = _this._isDraftMode; t5 = _this._design_edit$_isLoading; t5 = new X.AppForm(t9, _null, T.Row$(H.setRuntimeTypeInfo([t12, T.Expanded$(t1 ? new N.HtmlDesignPreview(_this._html, t5, _null) : new N.PdfDesignPreview(_this._pdfBytes, t5, _null), 1)], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), t8, _null); t1 = t5; } return K.EditScaffold$(_null, t3, t1, _null, design, _null, true, _null, new N._DesignEditState_build_closure2(viewModel), t4, _null, t2); } }; N._DesignEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 27 }; N._DesignEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_design_edit$_onChanged()), false); return null; }, $signature: 27 }; N._DesignEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; N._DesignEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._design_edit$_nameController._change_notifier$_value.text); b.get$_design_model$_$this()._design_model$_name = t1; return b; }, $signature: 282 }; N._DesignEditState__onChanged_closure0.prototype = { call$0: function() { var t2, t1 = this.$this, design = t1._widget.viewModel.design.rebuild$1(new N._DesignEditState__onChanged__closure(t1)); if (!J.$eq$(design, t1._widget.viewModel.design)) { t1._widget.viewModel.onChanged.call$1(design); t2 = t1._framework$_element; t2.toString; t1._loadPreview$2(t2, design); } }, $signature: 1 }; N._DesignEditState__onChanged__closure.prototype = { call$1: function(b) { var t1 = b.get$design(), t2 = this.$this, t3 = J.trim$0$s(t2._headerController._change_notifier$_value.text), t4 = J.trim$0$s(t2._bodyController._change_notifier$_value.text), t5 = J.trim$0$s(t2._footerController._change_notifier$_value.text), t6 = J.trim$0$s(t2._productsController._change_notifier$_value.text), t7 = J.trim$0$s(t2._tasksController._change_notifier$_value.text), t8 = type$.legacy_String; t1.replace$1(0, A.BuiltMap_BuiltMap(P.LinkedHashMap_LinkedHashMap$_literal(["header", t3, "body", t4, "footer", t5, "product", t6, "task", t7, "includes", J.trim$0$s(t2._includesController._change_notifier$_value.text)], t8, t8), t8, t8)); return b; }, $signature: 282 }; N._DesignEditState__onHtmlChanged_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new N._DesignEditState__onHtmlChanged__closure(t1)); }, $signature: 1 }; N._DesignEditState__onHtmlChanged__closure.prototype = { call$0: function() { var t1 = this.$this; t1._html = t1._htmlController._change_notifier$_value.text; }, $signature: 1 }; N._DesignEditState__loadDesign_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_design_edit$_onChanged()); }, $signature: 27 }; N._DesignEditState__loadDesign_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_design_edit$_onChanged()), false); return null; }, $signature: 27 }; N._DesignEditState__loadPreview_closure.prototype = { call$0: function() { this.$this._design_edit$_isLoading = true; }, $signature: 1 }; N._DesignEditState__loadPreview_closure0.prototype = { call$1: function(response) { return this.$call$body$_DesignEditState__loadPreview_closure(response); }, $call$body$_DesignEditState__loadPreview_closure: function(response) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t1.setState$1(new N._DesignEditState__loadPreview__closure(t1, response)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2232 }; N._DesignEditState__loadPreview__closure.prototype = { call$0: function() { var t2, t3, t4, t1 = this.$this; t1._design_edit$_isLoading = false; t2 = this.response; if (t2 != null) if (t1._isDraftMode) { t3 = t2.headers; t4 = B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t3).parameters._collection$_map, "charset")); t2 = t2.bodyBytes; t1._htmlController.set$text(0, t4.decode$1(0, t2)); t1._html = B.encodingForCharset(J.$index$asx(U._contentTypeForHeaders(t3).parameters._collection$_map, "charset")).decode$1(0, t2); t1._pdfBytes = null; } else { t1._pdfBytes = t2.bodyBytes; t1._html = ""; } }, $signature: 1 }; N._DesignEditState__setDraftMode_closure.prototype = { call$0: function() { this.$this._isDraftMode = this.isDraftMode; }, $signature: 1 }; N._DesignEditState_build_closure2.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; N._DesignEditState_build_closure.prototype = { call$1: function(context) { if (!$.$get$_DesignEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; N._DesignEditState_build_closure0.prototype = { call$1: function(value) { return this.$this._setDraftMode$1(value); }, $signature: 34 }; N._DesignEditState_build_closure1.prototype = { call$1: function(value) { return this.$this._setDraftMode$1(value); }, $signature: 34 }; N.DesignSection.prototype = { build$1: function(_, context) { var _null = null, t1 = this.textController; return E.SingleChildScrollView$(V.Card$(new T.Padding(C.EdgeInsets_10_0_10_0, new U.Actions(P.LinkedHashMap_LinkedHashMap$_literal([C.Type_InsertTabIntent_EKj, new N.InsertTabAction(new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.legacy_Type, type$.legacy_Action_legacy_Intent), new X.Shortcuts(P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_4295426091, _null, _null), new N.InsertTabIntent(4, t1)], type$.legacy_LogicalKeySet, type$.legacy_Intent), Z.TextField$(false, _null, true, _null, t1, _null, _null, _null, 2, L.InputDecoration$(_null, C._NoInputBorder_EYU, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, true, _null, false, _null, _null, _null, C.TextInputType_1_null_null, _null, true, _null, _null, 16, false, "\u2022", _null, _null, _null, _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, H.setRuntimeTypeInfo([new P.FontFeature()], type$.JSArray_legacy_FontFeature), _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_4, _null, C.TextCapitalization_3, _null, C.TextInputAction_12, _null), _null, _null), _null), _null), _null, _null, _null, _null, true, _null), _null, C.DragStartBehavior_1, C.EdgeInsets_14_14_14_14, _null, false, C.Axis_1); } }; N.DesignSettings.prototype = { createState$0: function() { return new N._DesignSettingsState(C._StateLifecycle_0); }, onLoadDesign$1: function(arg0) { return this.onLoadDesign.call$1(arg0); } }; N._DesignSettingsState.prototype = { initState$0: function() { var viewModel, design, state, t1, t2, t3, designMap, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; design = viewModel.design; if (!design.get$isNew()) _this._selectedDesign = design; else { state = viewModel.state; t1 = state.uiState.selectedCompanyIndex; t2 = state.userCompanyStates._list; t3 = J.getInterceptor$asx(t2); designMap = t3.$index(t2, t1).designState.map; t1 = t3.$index(t2, t1).userCompany.company.settings.defaultInvoiceDesignId; _this._selectedDesign = J.$index$asx(designMap._map$_map, t1); } }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, _s9_ = "html_mode", _s14_ = "html_mode_help", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.get$name(t1); t2 = S.DecoratedFormField$(false, _null, false, false, _this._widget.nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = t1.get$design(); t4 = _this._selectedDesign; t4 = t4 == null ? _null : t4.id; t5 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([t2, new A.DesignPicker(new N._DesignSettingsState_build_closure(_this), t3, t4, _null)], t5); t2 = T.SizedBox$(_null, 16, _null); t3 = K.Theme_of(context); t3 = t3.accentColor; t6 = t1.localeCode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), _s9_); t7 = L.Text$(t7 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s9_) : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t6), _s14_); t6 = L.Text$(t6 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s14_) : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = _this._widget; t9 = t8.draftMode; C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([t2, O.SwitchListTile$(t3, _null, t8.isLoading ? _null : t8.onDraftModeChanged, _null, t6, t7, t9)], t5)); t1 = H.setRuntimeTypeInfo([Y.FormCard$(_null, t4, _null, 4, false, _null, false, _null), new T.Padding(C.EdgeInsets_16_16_16_0, B.OutlinedButton$(new T.Padding(C.EdgeInsets_8_8_8_8, new U.IconText(t1.get$viewDocs().toUpperCase(), C._MdiIconData_ujl, _null, _null, _null), _null), new N._DesignSettingsState_build_closure0()), _null)], t5); if (_this._widget.draftMode) t1.push(Y.FormCard$(new U.Actions(P.LinkedHashMap_LinkedHashMap$_literal([C.Type_InsertTabIntent_EKj, new N.InsertTabAction(new R.ObserverList(H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function_Action_Intent), type$.ObserverList_of_void_Function_Action_Intent))], type$.legacy_Type, type$.legacy_Action_legacy_Intent), new X.Shortcuts(P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_4295426091, _null, _null), new N.InsertTabIntent(4, _this._widget.htmlController)], type$.legacy_LogicalKeySet, type$.legacy_Intent), Z.TextField$(true, _null, false, _null, _this._widget.htmlController, _null, _null, _null, 2, L.InputDecoration$(_null, C._NoInputBorder_EYU, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, true, _null, false, _null, _null, _null, C.TextInputType_1_null_null, _null, true, _null, _null, 16, false, "\u2022", _null, _null, _null, _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, H.setRuntimeTypeInfo([new P.FontFeature()], type$.JSArray_legacy_FontFeature), _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_4, _null, C.TextCapitalization_3, _null, C.TextInputAction_12, _null), _null, _null), _null), _null, _null, 4, false, _null, false, _null)); else t1.push(new K.VariablesHelp(false, _null)); return new X.ScrollableListView(t1, _null, _null, false, _null); } }; N._DesignSettingsState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1._widget.onLoadDesign$1(value); t1._selectedDesign = value; }, $signature: 151 }; N._DesignSettingsState_build_closure0.prototype = { call$0: function() { return T.launch("https://invoiceninja.github.io/docs/custom-fields", null, false); }, $signature: 30 }; N.PdfDesignPreview.prototype = { createState$0: function() { return new N._PdfDesignPreviewState(C._StateLifecycle_0); } }; N._PdfDesignPreviewState.prototype = { get$_pdfString: function() { var t1 = this._widget.pdfBytes; if (t1 == null) return ""; return "data:application/pdf;base64," + C.C_Base64Codec.get$encoder().convert$1(t1); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.pdfBytes; t2 = this._widget.pdfBytes; if (t1 == null ? t2 == null : t1 === t2) return; L.WebUtils_registerWebView(this.get$_pdfString()); }, dispose$0: function(_) { var t1 = this._design_edit$_pdfController; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget, t2 = H.setRuntimeTypeInfo([], t1); if (this._widget.pdfBytes == null) t2.push(T.SizedBox$(_null, _null, _null)); else t2.push(new G.HtmlElementView(this.get$_pdfString(), _null)); if (this._widget.isLoading) t2.push(T.Column$(H.setRuntimeTypeInfo([U.LinearProgressIndicator$(), T.Expanded$(T.SizedBox$(_null, _null, _null), 1)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)); return M.Container$(C.Alignment_0_0, T.Stack$(C.Alignment_0_0, t2, C.Clip_1, C.StackFit_0, _null, _null), C.Clip_0, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; N.HtmlDesignPreview.prototype = { build$1: function(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget, t2 = H.setRuntimeTypeInfo([new S.AppWebView(this.html, _null)], t1); if (this.isLoading) t2.push(T.Column$(H.setRuntimeTypeInfo([U.LinearProgressIndicator$(), T.Expanded$(T.SizedBox$(_null, _null, _null), 1)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)); return M.Container$(C.Alignment_0_0, T.Stack$(C.Alignment_0_0, t2, C.Clip_1, C.StackFit_0, _null, _null), C.Clip_0, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; N.InsertTabIntent.prototype = {}; N.InsertTabAction.prototype = { invoke$1: function(intent) { var t1, oldValue, t2, t3, t4, t5, newSelection, t6, t7, i; if (intent instanceof N.InsertTabIntent) { t1 = intent.textController; oldValue = t1._change_notifier$_value; t2 = oldValue.composing.start; t3 = oldValue.selection; t4 = t3.start; t5 = intent.numSpaces; newSelection = X.TextSelection$collapsed(C.TextAffinity_1, t4 + t5); t6 = t3.get$isValid(); t7 = oldValue.text; t4 = H.S(t6 ? J.substring$2$s(t7, 0, t4) : t7); for (i = 0; i < t5; ++i) t4 += " "; t3 = t4 + (t3.get$isValid() ? J.substring$1$s(t7, t3.end) : ""); t1.super$ValueNotifier$value(0, t1._change_notifier$_value.copyWith$3$composing$selection$text(new P.TextRange(t2, t2), newSelection, t3.charCodeAt(0) == 0 ? t3 : t3)); } return ""; } }; N.__DesignEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; G.DesignEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.DesignEditScreen_build_closure(), new G.DesignEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignEditVM); } }; G.DesignEditScreen_build_closure0.prototype = { call$1: function(store) { return G.DesignEditVM_DesignEditVM$fromStore(store); }, $signature: 2233 }; G.DesignEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new N.DesignEdit(viewModel, new D.ValueKey(viewModel.design.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2234 }; G.DesignEditVM.prototype = { get$design: function() { return this.design; }, get$company: function() { return this.company; } }; G.DesignEditVM_DesignEditVM$fromStore_closure.prototype = { call$1: function(design) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.UpdateDesign(design)); }, $signature: 151 }; G.DesignEditVM_DesignEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, D.DesignEntity_DesignEntity(_null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; G.DesignEditVM_DesignEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new G.DesignEditVM_DesignEditVM$fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; G.DesignEditVM_DesignEditVM$fromStore__closure.prototype = { call$0: function() { var completer, t1 = this.store, design = t1.get$_store$_state().uiState.designUIState.editing, t2 = this.context, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "saved_design"); if (t3 == null) t3 = ""; completer = O.snackBarCompleter(t2, t3, false, type$.legacy_DesignEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.SaveDesignRequest(completer, design)); }, $signature: 1 }; K.DesignView.prototype = { createState$0: function() { return new K._DesignViewState(C._StateLifecycle_0); } }; K._DesignViewState.prototype = { build$1: function(_, context) { var t7, t8, _this = this, _null = null, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = state.uiState.selectedCompanyIndex, t2 = state.userCompanyStates._list, t3 = J.getInterceptor$asx(t2), company = t3.$index(t2, t1).userCompany.company, design = viewModel.design, t4 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t5 = type$.legacy_InvoiceEntity, t6 = J.map$1$1$ax(t3.$index(t2, t1).invoiceState.list._list, new K._DesignViewState_build_closure(state), t5).where$1(0, new K._DesignViewState_build_closure0(design)), count = t6.get$length(t6); t6 = J.map$1$1$ax(t3.$index(t2, t1).quoteState.list._list, new K._DesignViewState_build_closure1(state), t5).where$1(0, new K._DesignViewState_build_closure2(design)); t6 = t6.get$length(t6); t7 = J.map$1$1$ax(t3.$index(t2, t1).creditState.list._list, new K._DesignViewState_build_closure3(state), t5).where$1(0, new K._DesignViewState_build_closure4(design)); t7 = t7.get$length(t7); t5 = J.map$1$1$ax(t3.$index(t2, t1).recurringInvoiceState.list._list, new K._DesignViewState_build_closure5(state), t5).where$1(0, new K._DesignViewState_build_closure6(design)); t5 = t5.get$length(t5); t8 = _this._widget.isFilter; t5 = "" + (count + t6 + t7 + t5); t7 = t4.get$count(t4); t6 = t4.get$lastUpdated(); t5 = H.setRuntimeTypeInfo([D.EntityHeader$(design, t7, t6, E.format(P.DateTime$fromMillisecondsSinceEpoch(design.updatedAt * 1000, false), _null), _null, _null, t5), new G.ListDivider(_null)], type$.JSArray_legacy_Widget); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t6 = _this._widget.isFilter; t5.push(new O.EntitiesListTile(design, C.EntityType_invoice, t4.get$invoices(), $.$get$memoizedInvoiceStatsForDesign().call$2(design.id, t3.$index(t2, t1).invoiceState.map).present$2(t4.get$active(t4), t4.get$archived()), t6, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_quote)) { t6 = _this._widget.isFilter; t5.push(new O.EntitiesListTile(design, C.EntityType_quote, t4.get$quotes(t4), $.$get$memoizedQuoteStatsForDesign().call$2(design.id, t3.$index(t2, t1).quoteState.map).present$2(t4.get$active(t4), t4.get$archived()), t6, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_credit)) { t6 = _this._widget.isFilter; t5.push(new O.EntitiesListTile(design, C.EntityType_credit, t4.get$credits(), $.$get$memoizedCreditStatsForDesign().call$2(design.id, t3.$index(t2, t1).creditState.map).present$2(t4.get$active(t4), t4.get$archived()), t6, false, _null)); } if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) { t6 = _this._widget.isFilter; t5.push(new O.EntitiesListTile(design, C.EntityType_recurringInvoice, t4.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForDesign().call$2(design.id, t3.$index(t2, t1).recurringInvoiceState.map).present$2(t4.get$active(t4), t4.get$archived()), t6, false, _null)); } return new G.ViewScaffold(t8, design, new X.ScrollableListView(t5, _null, _null, false, _null), new K._DesignViewState_build_closure7(viewModel), _null, _null); } }; K._DesignViewState_build_closure.prototype = { call$1: function(invoiceId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).invoiceState.map._map$_map, invoiceId); }, $signature: 64 }; K._DesignViewState_build_closure0.prototype = { call$1: function(invoice) { return !invoice.isDeleted && invoice.designId === this.design.id; }, $signature: 189 }; K._DesignViewState_build_closure1.prototype = { call$1: function(quoteId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).quoteState.map._map$_map, quoteId); }, $signature: 64 }; K._DesignViewState_build_closure2.prototype = { call$1: function(quote) { return !quote.isDeleted && quote.designId === this.design.id; }, $signature: 189 }; K._DesignViewState_build_closure3.prototype = { call$1: function(creditId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).creditState.map._map$_map, creditId); }, $signature: 64 }; K._DesignViewState_build_closure4.prototype = { call$1: function(credit) { return !credit.isDeleted && credit.designId === this.design.id; }, $signature: 189 }; K._DesignViewState_build_closure5.prototype = { call$1: function(invoiceId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).recurringInvoiceState.map._map$_map, invoiceId); }, $signature: 64 }; K._DesignViewState_build_closure6.prototype = { call$1: function(invoice) { return !invoice.isDeleted && invoice.designId === this.design.id; }, $signature: 189 }; K._DesignViewState_build_closure7.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; B.DesignViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.DesignViewScreen_build_closure(this), new B.DesignViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DesignViewVM); } }; B.DesignViewScreen_build_closure0.prototype = { call$1: function(store) { return B.DesignViewVM_DesignViewVM$fromStore(store); }, $signature: 2235 }; B.DesignViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new K.DesignView(vm, this.$this.isFilter, null); }, $signature: 2236 }; B.DesignViewVM.prototype = { get$design: function() { return this.design; }, get$company: function() { return this.company; } }; B.DesignViewVM_DesignViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/custom_designs")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S.DocumentListItem.prototype = { build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, _this = this, _null = null, uiState = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().uiState, documentUIState = uiState.documentUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.document.matchesFilterValue$1(t1) : _null; t1 = documentUIState.listUIState.selectedIds; t2 = _this.document; t3 = t2.id; t4 = uiState.get$isEditing() ? documentUIState.editing.id : documentUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new S.DocumentListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t5 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t6 = type$.JSArray_legacy_Widget; t5 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t5.size._dx); t7 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(_this.userCompany, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new S.DocumentListItem_build_closure0(_this, context), new S.DocumentListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t7, new L.EntityStateLabel(t2, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t5, _null), t3 === t4, true, true, _null); }, get$document: function(receiver) { return this.document; } }; S.DocumentListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.document, false, false); return t1; }, $signature: 0 }; S.DocumentListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.document, false, true); return t1; }, $signature: 0 }; S.DocumentListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; A.DocumentListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.DocumentListBuilder_build_closure(), A.document_list_vm_DocumentListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentListVM); } }; A.DocumentListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return S.EntityList$(viewModel.documentList, C.EntityType_document, new A.DocumentListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2237 }; A.DocumentListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, documentId = J.$index$asx(t1.documentList, index), $document = J.$index$asx(t1.documentMap._map$_map, documentId), t2 = state.getUIState$1(C.EntityType_document).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany; if (t2 != null) { t3 = $document.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new S.DocumentListItem(t4, t2, $document, t1.filter, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2238 }; A.DocumentListVM.prototype = {}; A.DocumentListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.DocumentListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.DocumentListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortDocuments(field)); }, $signature: 5 }; A.DocumentListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ClearDocumentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; G.DocumentScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.documentUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.documentList; t2 = t2.filter; t5 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_document, false, C.List_empty14, new G.DocumentScreen_build_closure(store), new G.DocumentScreen_build_closure0(store), new G.DocumentScreen_build_closure1(store), new G.DocumentScreen_build_closure2(store), new G.DocumentScreen_build_closure3(store), new G.DocumentScreen_build_closure4(store), new G.DocumentScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["updated_at"], type$.JSArray_legacy_String), C.List_empty15, _null); t6 = state.prefState; t3 = (t6.appLayout === C.AppLayout_mobile || t6.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_document) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "document_fab", false, new G.DocumentScreen_build_closure6(context), t3.get$newDocument()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_document, t2, new G.DocumentScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new A.DocumentListBuilder(_null), t5, C.EntityType_document, t3, 0, _null, new G.DocumentScreen_build_closure8(store), new G.DocumentScreen_build_closure9(store)); } }; G.DocumentScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.StartDocumentMultiselect()); }, $signature: 9 }; G.DocumentScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocuments(value)); }, $signature: 7 }; G.DocumentScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.documentUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearDocumentMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartDocumentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.DocumentScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortDocuments(value)); }, $signature: 5 }; G.DocumentScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocumentsByCustom1(value)); }, $signature: 5 }; G.DocumentScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocumentsByCustom2(value)); }, $signature: 5 }; G.DocumentScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocumentsByCustom3(value)); }, $signature: 5 }; G.DocumentScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocumentsByCustom4(value)); }, $signature: 5 }; G.DocumentScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterDocumentsByState(state)); }, $signature: 53 }; G.DocumentScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.documentUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearDocumentMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartDocumentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.DocumentScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_document); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; U.DocumentScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.DocumentScreenBuilder_build_closure(), U.document_screen_vm_DocumentScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentScreenVM); } }; U.DocumentScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new G.DocumentScreen(vm, null); }, $signature: 2239 }; U.DocumentScreenVM.prototype = {}; Z.DocumentEdit.prototype = { createState$0: function() { return new Z._DocumentEditState(new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; Z._DocumentEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController); _this._document_edit$_controllers = t1; C.JSArray_methods.forEach$1(t1, new Z._DocumentEditState_didChangeDependencies_closure(_this)); C.JSArray_methods.forEach$1(_this._document_edit$_controllers, new Z._DocumentEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._document_edit$_controllers, new Z._DocumentEditState_dispose_closure(this)); this.super$State$dispose(0); }, _document_edit$_onChanged$0: function() { var _this = this, $document = _this._widget.viewModel.document.rebuild$1(new Z._DocumentEditState__onChanged_closure()); if (!$document.$eq(0, _this._widget.viewModel.document)) _this._document_edit$_debouncer.run$1(new Z._DocumentEditState__onChanged_closure0(_this, $document)); }, build$1: function(_, context) { var _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), $document = viewModel.document; if ($document.get$isNew()) t1 = t1.get$newDocument(); else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_document"); if (t1 == null) t1 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new Z._DocumentEditState_build_closure(), _null), $.$get$_DocumentEditState__formKey()), _null, $document, _null, false, _null, _null, new Z._DocumentEditState_build_closure0(viewModel), _null, t1); } }; Z._DocumentEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_document_edit$_onChanged()); }, $signature: 27 }; Z._DocumentEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_document_edit$_onChanged()), false); return null; }, $signature: 27 }; Z._DocumentEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_document_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; Z._DocumentEditState__onChanged_closure.prototype = { call$1: function(b) { return b; }, $signature: 641 }; Z._DocumentEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.document); }, $signature: 1 }; Z._DocumentEditState_build_closure0.prototype = { call$1: function(context) { if (!$.$get$_DocumentEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; Z._DocumentEditState_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([], t1), _null, 4, false, _null, false, _null)], t1), _null, _null, false, _null); }, $signature: 140 }; E.DocumentEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.DocumentEditScreen_build_closure(), new E.DocumentEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentEditVM); } }; E.DocumentEditScreen_build_closure0.prototype = { call$1: function(store) { return E.DocumentEditVM_DocumentEditVM$fromStore(store); }, $signature: 2241 }; E.DocumentEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.DocumentEdit(viewModel, new D.ValueKey(viewModel.document.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2242 }; E.DocumentEditVM.prototype = { get$document: function(receiver) { return this.document; }, get$company: function() { return this.company; } }; E.DocumentEditVM_DocumentEditVM$fromStore_closure.prototype = { call$1: function($document) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.UpdateDocument($document)); }, $signature: 63 }; E.DocumentEditVM_DocumentEditVM$fromStore_closure0.prototype = { call$1: function(context) { }, $signature: 14 }; T.DocumentView.prototype = { createState$0: function() { return new T._DocumentViewState(C._StateLifecycle_0); } }; T._DocumentViewState.prototype = { build$1: function(_, context) { var _null = null; return new G.ViewScaffold(false, this._widget.viewModel.document, Y.FormCard$(_null, H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget), _null, 4, false, _null, false, _null), _null, _null, _null); } }; A.DocumentViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.DocumentViewScreen_build_closure(this), new A.DocumentViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DocumentViewVM); } }; A.DocumentViewScreen_build_closure0.prototype = { call$1: function(store) { return A.DocumentViewVM_DocumentViewVM$fromStore(store); }, $signature: 2243 }; A.DocumentViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new T.DocumentView(vm, false, null); }, $signature: 2244 }; A.DocumentViewVM.prototype = { get$document: function(receiver) { return this.document; }, get$company: function() { return this.company; } }; D.ExpenseEdit.prototype = { createState$0: function() { return new D._ExpenseEditState(null, C._StateLifecycle_0); } }; D._ExpenseEditState.prototype = { initState$0: function() { this.super$State$initState(); this._expense_edit$_controller = U.TabController$(0, 3, this); }, dispose$0: function(_) { this._expense_edit$_controller.dispose$0(0); this.super$__ExpenseEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _expense_edit$_onSavePressed$2: function(context, action) { if (!$.$get$_ExpenseEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _expense_edit$_onSavePressed$1: function(context) { return this._expense_edit$_onSavePressed$2(context, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, expense = viewModel.expense, state = viewModel.state, store = O.StoreProvider_of(context, type$.legacy_AppState), prefState = state.prefState, isFullscreen = prefState.isEditorFullScreen$1(C.EntityType_expense); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) if (expense.get$isNew()) t2 = t1.get$newRecurringExpense(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_recurring_expense"); if (t2 == null) t2 = ""; } else if (expense.get$isNew()) t2 = t1.get$newExpense(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_expense"); if (t2 == null) t2 = ""; } t3 = type$.JSArray_legacy_Widget; t4 = E.TabBar$(_this._expense_edit$_controller, _null, false, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$settings())], t3)); t5 = $.$get$_ExpenseEditState__formKey(); t6 = expense.id; t7 = expense.updatedAt; t8 = type$.ValueKey_legacy_String; if (isFullscreen) t6 = new S.ExpenseEditDesktop(viewModel, new D.ValueKey("__expense_" + t6 + "_" + t7 + "__", t8)); else { t6 = "__expense_" + t6 + "_" + t7 + "__"; t7 = _this._expense_edit$_controller; t9 = _this._widget.viewModel; t8 = E.TabBarView$(H.setRuntimeTypeInfo([new M.ExpenseEditDetails(t9, _null), new E.ExpenseEditNotes(t9, _null), new T.ExpenseEditSettings(t9, _null)], t3), t7, new D.ValueKey(t6, t8)); t6 = t8; } t5 = A.Form$(false, t6, t5); t6 = K.Theme_of(context).cardColor; t3 = H.setRuntimeTypeInfo([], t3); if (D.getLayout(context) === C.AppLayout_desktop) { t7 = isFullscreen ? t1.get$sidebarEditor() : t1.get$fullscreenEditor(); t3.push(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(isFullscreen ? C.IconData_57695_MaterialIcons_null_true : C.IconData_57694_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new D._ExpenseEditState_build_closure(store), _null, _null, _null, _null, _null), t7)); } t7 = D.getLayout(context); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "expense_total"); t1 = C.JSString_methods.$add((t1 == null ? "" : t1) + ": ", Y.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false)); t3.push(new T.AppBorder(new T.Padding(C.EdgeInsets_16_0_0_0, new T.Align(C.Alignment_m1_0, _null, _null, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, prefState.enableDarkMode ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null), _null, t7 === C.AppLayout_desktop, false, _null)); return K.EditScaffold$(_null, t4, t5, B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t3, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), t6, 0, new V.CircularNotchedRectangle()), expense, _null, isFullscreen, new D._ExpenseEditState_build_closure0(_this), new D._ExpenseEditState_build_closure1(viewModel), new D._ExpenseEditState_build_closure2(_this), _null, t2); } }; D._ExpenseEditState_build_closure1.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; D._ExpenseEditState_build_closure2.prototype = { call$1: function(context) { return this.$this._expense_edit$_onSavePressed$1(context); }, $signature: 29 }; D._ExpenseEditState_build_closure0.prototype = { call$2: function(context, action) { return this.$this._expense_edit$_onSavePressed$2(context, action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 57 }; D._ExpenseEditState_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(C.EntityType_expense)); }, $signature: 9 }; D.__ExpenseEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; S.ExpenseEditDesktop.prototype = { build$1: function(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new M.ExpenseEditDetails(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new E.ExpenseEditNotes(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new T.ExpenseEditSettings(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1)], t2), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t2), _null, _null, false, _null); } }; M.ExpenseEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new M.ExpenseEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; M.ExpenseEditDetailsState.prototype = { didChangeDependencies$0: function() { var expense, _this = this, t1 = _this._expense_edit_details$_numberController, t2 = _this._expense_edit_details$_amountController, t3 = _this._expense_edit_details$_custom1Controller, t4 = _this._expense_edit_details$_custom2Controller, t5 = _this._expense_edit_details$_custom3Controller, t6 = _this._expense_edit_details$_custom4Controller, t7 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6], type$.JSArray_legacy_TextEditingController); _this._expense_edit_details$_controllers = t7; C.JSArray_methods.forEach$1(t7, new M.ExpenseEditDetailsState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, Y.formatNumber(expense.amount, t1, null, null, C.FormatNumberType_4, true, null, false)); t3.set$text(0, expense.customValue1); t4.set$text(0, expense.customValue2); t5.set$text(0, expense.customValue3); t6.set$text(0, expense.customValue4); t6 = _this._expense_edit_details$_controllers; (t6 && C.JSArray_methods).forEach$1(t6, new M.ExpenseEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._expense_edit_details$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new M.ExpenseEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_details$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new M.ExpenseEditDetailsState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_details$_debouncer.run$1(new M.ExpenseEditDetailsState__onChanged_closure0(viewModel, expense)); }, build$1: function(_, context) { var t4, company, t5, staticState, t6, t7, vendorState, clientState, isFullscreen, amountField, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _list, i, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), viewModel = _this._widget.viewModel, expense = viewModel.expense, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); company = t4.$index(t2, t3).userCompany.company; t5 = viewModel.state; staticState = t5.staticState; t6 = t5.userCompanyStates; t5 = t5.uiState.selectedCompanyIndex; t6 = t6._list; t7 = J.getInterceptor$asx(t6); vendorState = t7.$index(t6, t5).vendorState; clientState = t7.$index(t6, t5).clientState; isFullscreen = state.prefState.isEditorFullScreen$1(C.EntityType_expense); t5 = t1.get$amount(); t6 = viewModel.onSavePressed; amountField = S.DecoratedFormField$(false, _null, false, false, _this._expense_edit_details$_amountController, _null, true, _null, _null, _null, _null, true, false, _null, new N.TextInputType(2, false, true), t5, _null, _null, false, _null, _null, t6, true, _null, _null, C.TextAlign_4, _null); t5 = isFullscreen ? C.EdgeInsets_12_12_6_0 : _null; t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([], t7); if (!expense.get$isNew()) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "expense_number"); if (t9 == null) t9 = ""; t8.push(S.DecoratedFormField$(false, _null, false, false, _this._expense_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t9, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); } t9 = expense.vendorId; t10 = "__vendor_" + H.S(t9) + "__"; t11 = type$.ValueKey_legacy_String; t12 = t1.get$vendor(t1); t13 = $.$get$memoizedDropdownVendorList(); t14 = vendorState.map; t15 = vendorState.list; t16 = t4.$index(t2, t3).userState.map; t17 = state.staticState; t8.push(F.EntityDropdown$(true, false, false, t9, t13.call$4(t14, t15, t16, t17), _null, C.EntityType_vendor, new D.ValueKey(t10, t11), t12, new M.ExpenseEditDetailsState_build_closure(viewModel, context), new M.ExpenseEditDetailsState_build_closure0(viewModel, expense), _null, _null, _null)); t9 = expense.invoiceId; if (!(t9 != null && t9.length !== 0)) { t9 = expense.clientId; t10 = "__client_" + H.S(t9) + "__"; t12 = t1.get$client(t1); C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([F.EntityDropdown$(true, false, false, t9, $.$get$memoizedDropdownClientList().call$4(clientState.map, clientState.list, t4.$index(t2, t3).userState.map, t17), _null, C.EntityType_client, new D.ValueKey(t10, t11), t12, new M.ExpenseEditDetailsState_build_closure1(viewModel, context), new M.ExpenseEditDetailsState_build_closure2(company, viewModel, expense), _null, _null, _null), new N.ProjectPicker(expense.projectId, t9, new M.ExpenseEditDetailsState_build_closure3(state, viewModel, expense), _null, new D.ValueKey("__project_" + H.S(t9) + "__", type$.ValueKey_String))], t7)); } t9 = expense.categoryId; t10 = "__category_" + t9 + "__"; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "category"); if (t12 == null) t12 = ""; t8.push(Y.DynamicSelector$(true, t9, $.$get$memoizedDropdownExpenseCategoriesList().call$2(t4.$index(t2, t3).expenseCategoryState.map, t4.$index(t2, t3).expenseCategoryState.list), C.EntityType_expenseCategory, new D.ValueKey(t10, t11), t12, _null, new M.ExpenseEditDetailsState_build_closure4(state, viewModel, expense), _null)); t8.push(new V.UserPicker(expense.assignedUserId, new M.ExpenseEditDetailsState_build_closure5(viewModel, expense), _null)); t2 = expense.usesInclusiveTaxes; if (!t2) t8.push(amountField); if (company.get$enableFirstItemTaxRate() || expense.taxName1.length !== 0) { t3 = expense.taxName1; if (expense.calculateTaxByAmount === true) t8.push(new R.TaxRateField(new M.ExpenseEditDetailsState_build_closure6(viewModel, expense), new M.ExpenseEditDetailsState_build_closure7(viewModel, expense), t3, expense.taxAmount1, _null)); else t8.push(new D.TaxRateDropdown(t1.get$tax(), new M.ExpenseEditDetailsState_build_closure8(viewModel, expense), t3, expense.taxRate1, _null)); } if (company.get$enableSecondItemTaxRate() || expense.taxName2.length !== 0) { t3 = expense.taxName2; if (expense.calculateTaxByAmount === true) t8.push(new R.TaxRateField(new M.ExpenseEditDetailsState_build_closure9(viewModel, expense), new M.ExpenseEditDetailsState_build_closure10(viewModel, expense), t3, expense.taxAmount2, _null)); else t8.push(new D.TaxRateDropdown(t1.get$tax(), new M.ExpenseEditDetailsState_build_closure11(viewModel, expense), t3, expense.taxRate2, _null)); } if (company.get$enableThirdItemTaxRate() || expense.taxName3.length !== 0) { t3 = expense.taxName3; if (expense.calculateTaxByAmount === true) t8.push(new R.TaxRateField(new M.ExpenseEditDetailsState_build_closure12(viewModel, expense), new M.ExpenseEditDetailsState_build_closure13(viewModel, expense), t3, expense.taxAmount3, _null)); else t8.push(new D.TaxRateDropdown(t1.get$tax(), new M.ExpenseEditDetailsState_build_closure14(viewModel, expense), t3, expense.taxRate3, _null)); } if (t2) t8.push(amountField); t2 = expense.currencyId; t3 = "__currency_" + t2 + "__"; t8.push(F.EntityDropdown$(true, false, false, t2, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t3, t11), t1.get$currency(), _null, new M.ExpenseEditDetailsState_build_closure15(viewModel), _null, _null, _null)); t8.push(K.DatePicker$(false, _null, _null, t1.get$date(), _null, new M.ExpenseEditDetailsState_build_closure16(viewModel, expense), expense.date, _null)); t8.push(new B.CustomField(_this._expense_edit_details$_custom1Controller, _null, t6, "expense1", expense.customValue1, false, _null)); t8.push(new B.CustomField(_this._expense_edit_details$_custom2Controller, _null, t6, "expense2", expense.customValue2, false, _null)); t8.push(new B.CustomField(_this._expense_edit_details$_custom3Controller, _null, t6, "expense3", expense.customValue3, false, _null)); t8.push(new B.CustomField(_this._expense_edit_details$_custom4Controller, _null, t6, "expense4", expense.customValue4, false, _null)); t5 = H.setRuntimeTypeInfo([Y.FormCard$(_null, t8, _null, 4, false, _null, false, t5)], t7); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) { t2 = isFullscreen ? C.EdgeInsets_12_12_6_0 : _null; t3 = t1.get$frequency(t1); t4 = C.Map_tOn4d.get$entries(C.Map_tOn4d); t4 = t4.map$1$1(t4, new M.ExpenseEditDetailsState_build_closure17(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t6 = expense.lastSentDate.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t6 = K.DatePicker$(false, new P.DateTime(Date.now(), false), _null, t6, _null, new M.ExpenseEditDetailsState_build_closure18(viewModel, expense), expense.nextSendDate, _null); t8 = t1.get$remainingCycles(); t9 = type$.legacy_int; t1 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), -1, t9)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(37, t9); for (i = 0; i < 37; ++i) _list[i] = i; t9 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t1, P.List_List$of(new H.MappedListIterable(_list, new M.ExpenseEditDetailsState_build_closure19(), t9), true, t9._eval$1("ListIterable.E"))); t5.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t3, expense.frequencyId, new M.ExpenseEditDetailsState_build_closure20(viewModel, expense), t4, _null, true, "", _null, type$.AppDropdownButton_legacy_String), t6, new Q.AppDropdownButton(t8, expense.remainingCycles, new M.ExpenseEditDetailsState_build_closure21(viewModel, expense), t1, _null, true, _null, _null, type$.AppDropdownButton_legacy_int)], t7), _null, 4, false, _null, false, t2)); } return new X.ScrollableListView(t5, _null, _null, false, _null); } }; M.ExpenseEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_details$_onChanged()); }, $signature: 10 }; M.ExpenseEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_details$_onChanged()); }, $signature: 10 }; M.ExpenseEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; M.ExpenseEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._expense_edit_details$_numberController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_number = t2; t2 = Y.parseDouble(t1._expense_edit_details$_amountController._change_notifier$_value.text, false); b.get$_expense_model$_$this()._expense_model$_amount = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue1 = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue2 = t2; t2 = J.trim$0$s(t1._expense_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue3 = t2; t1 = J.trim$0$s(t1._expense_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_customValue4 = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; M.ExpenseEditDetailsState_build_closure0.prototype = { call$1: function(vendor) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure17(vendor))); }, $signature: 44 }; M.ExpenseEditDetailsState_build__closure17.prototype = { call$1: function(b) { var t1 = this.vendor; t1 = t1 == null ? null : t1.get$id(t1); b.get$_expense_model$_$this()._expense_model$_vendorId = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure.prototype = { call$1: function(completer) { this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, $signature: 164 }; M.ExpenseEditDetailsState_build_closure2.prototype = { call$1: function(client) { var t1, currencyId; type$.legacy_ClientEntity._as(client); t1 = client == null ? null : client.settings; currencyId = t1 == null ? null : t1.currencyId; if (currencyId == null) { t1 = this.company.settings.currencyId; currencyId = t1 == null ? "1" : t1; } this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure16(client, currencyId))); }, $signature: 44 }; M.ExpenseEditDetailsState_build__closure16.prototype = { call$1: function(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._expense_model$_clientId = t1; b.get$_expense_model$_$this()._invoiceCurrencyId = this.currencyId; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure1.prototype = { call$1: function(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 164 }; M.ExpenseEditDetailsState_build_closure3.prototype = { call$1: function(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = this.expense; this.viewModel.onChanged.call$1(t3.rebuild$1(new M.ExpenseEditDetailsState_build__closure15(J.$index$asx(t1.userCompanyStates._list, t2).projectState.$get$1(0, selectedId), t3))); }, $signature: 7 }; M.ExpenseEditDetailsState_build__closure15.prototype = { call$1: function(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_expense_model$_$this()._expense_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.expense.clientId; b.get$_expense_model$_$this()._expense_model$_clientId = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure4.prototype = { call$1: function(categoryId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure14(J.$index$asx(t1.userCompanyStates._list, t2).expenseCategoryState.$get$1(0, categoryId)))); }, $signature: 7 }; M.ExpenseEditDetailsState_build__closure14.prototype = { call$1: function(b) { var t1 = this.category; t1 = t1 == null ? null : t1.id; if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._categoryId = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure5.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure13(userId))); }, $signature: 5 }; M.ExpenseEditDetailsState_build__closure13.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_assignedUserId = this.userId; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure6.prototype = { call$1: function($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure12($name))); }, $signature: 5 }; M.ExpenseEditDetailsState_build__closure12.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_taxName1 = this.name; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure7.prototype = { call$1: function(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure11(amount))); }, $signature: 419 }; M.ExpenseEditDetailsState_build__closure11.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._taxAmount1 = this.amount; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure8.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure10(taxRate))); }, $signature: 80 }; M.ExpenseEditDetailsState_build__closure10.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate1 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName1 = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure9.prototype = { call$1: function($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure9($name))); }, $signature: 5 }; M.ExpenseEditDetailsState_build__closure9.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_taxName2 = this.name; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure10.prototype = { call$1: function(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure8(amount))); }, $signature: 419 }; M.ExpenseEditDetailsState_build__closure8.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._taxAmount2 = this.amount; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure11.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure7(taxRate))); }, $signature: 80 }; M.ExpenseEditDetailsState_build__closure7.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate2 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName2 = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure12.prototype = { call$1: function($name) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure6($name))); }, $signature: 5 }; M.ExpenseEditDetailsState_build__closure6.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_taxName3 = this.name; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure13.prototype = { call$1: function(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure5(amount))); }, $signature: 419 }; M.ExpenseEditDetailsState_build__closure5.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._taxAmount3 = this.amount; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure14.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure4(taxRate))); }, $signature: 80 }; M.ExpenseEditDetailsState_build__closure4.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_expense_model$_$this()._expense_model$_taxRate3 = t2; t1 = t1.name; b.get$_expense_model$_$this()._expense_model$_taxName3 = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure15.prototype = { call$1: function(currency) { var t1 = this.viewModel; return t1.onChanged.call$1(t1.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure3(currency))); }, $signature: 56 }; M.ExpenseEditDetailsState_build__closure3.prototype = { call$1: function(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._expense_model$_currencyId = t1; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure16.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure2(date))); }, $signature: 7 }; M.ExpenseEditDetailsState_build__closure2.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_date = this.date; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure20.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure0(value))); }, $signature: 8 }; M.ExpenseEditDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_frequencyId = this.value; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure17.prototype = { call$1: function(entry) { var _null = null, t1 = entry.get$key(entry); return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, type$.legacy_String); }, $signature: 262 }; M.ExpenseEditDetailsState_build_closure18.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure1(date))); }, $signature: 7 }; M.ExpenseEditDetailsState_build__closure1.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_nextSendDate = this.date; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure21.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new M.ExpenseEditDetailsState_build__closure(value))); }, $signature: 10 }; M.ExpenseEditDetailsState_build__closure.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_remainingCycles = this.value; return b; }, $signature: 23 }; M.ExpenseEditDetailsState_build_closure19.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; E.ExpenseEditNotes.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new E.ExpenseEditNotesState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; E.ExpenseEditNotesState.prototype = { didChangeDependencies$0: function() { var expense, _this = this, t1 = _this._publicNotesController, t2 = _this._expense_edit_notes$_privateNotesController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._expense_edit_notes$_controllers = t3; C.JSArray_methods.forEach$1(t3, new E.ExpenseEditNotesState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.publicNotes); t2.set$text(0, expense.privateNotes); t2 = _this._expense_edit_notes$_controllers; (t2 && C.JSArray_methods).forEach$1(t2, new E.ExpenseEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._expense_edit_notes$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new E.ExpenseEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_notes$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new E.ExpenseEditNotesState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_notes$_debouncer.run$1(new E.ExpenseEditNotesState__onChanged_closure0(viewModel, expense)); }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget.viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_expense) ? C.EdgeInsets_6_12_6_0 : _null, t3 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, this._publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$publicNotes(), 10, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, this._expense_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$privateNotes(), 10, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t3), _null, 4, false, _null, false, t2)], t3), _null, _null, false, _null); } }; E.ExpenseEditNotesState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_notes$_onChanged()); }, $signature: 10 }; E.ExpenseEditNotesState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_notes$_onChanged()); }, $signature: 10 }; E.ExpenseEditNotesState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; E.ExpenseEditNotesState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._publicNotesController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_publicNotes = t2; t1 = J.trim$0$s(t1._expense_edit_notes$_privateNotesController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_privateNotes = t1; return b; }, $signature: 23 }; E.ExpenseEditNotesState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; T.ExpenseEditSettings.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new T.ExpenseEditSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; T.ExpenseEditSettingsState.prototype = { didChangeDependencies$0: function() { var expense, _this = this, t1 = _this._expense_edit_settings$_transactionReferenceController, t2 = _this._expense_edit_settings$_exchangeRateController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._expense_edit_settings$_controllers = t3; C.JSArray_methods.forEach$1(t3, new T.ExpenseEditSettingsState_didChangeDependencies_closure(_this)); expense = _this._widget.viewModel.expense; t1.set$text(0, expense.transactionReference); t1 = expense.exchangeRate; t3 = _this._framework$_element; t3.toString; t2.set$text(0, Y.formatNumber(t1, t3, null, null, C.FormatNumberType_5, true, null, false)); t3 = _this._expense_edit_settings$_controllers; (t3 && C.JSArray_methods).forEach$1(t3, new T.ExpenseEditSettingsState_didChangeDependencies_closure0(_this)); _this._showPaymentFields = expense.paymentDate.length !== 0; _this._showConvertCurrencyFields = t1 !== 0 && t1 !== 1; _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._expense_edit_settings$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new T.ExpenseEditSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_edit_settings$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.expense, expense = t1.rebuild$1(new T.ExpenseEditSettingsState__onChanged_closure(this)); if (!J.$eq$(expense, t1)) this._expense_edit_settings$_debouncer.run$1(new T.ExpenseEditSettingsState__onChanged_closure0(viewModel, expense)); }, _setCurrency$1: function(currency) { var viewModel = this._widget.viewModel, expense = viewModel.expense, exchangeRate = currency == null ? 1 : R.getExchangeRate(viewModel.state.staticState.currencyMap, expense.currencyId, currency.id), t1 = expense.rebuild$1(new T.ExpenseEditSettingsState__setCurrency_closure(currency, expense, exchangeRate)); viewModel.onChanged.call$1(t1); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new T.ExpenseEditSettingsState__setCurrency_closure0(this, exchangeRate)); }, build$1: function(_, context) { var company, expense, isFullscreen, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, _s16_ = "expense_tax_help", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, t2 = viewModel.state, staticState = t2.staticState, t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = J.$index$asx(t3._list, t2).userCompany.company; expense = viewModel.expense; isFullscreen = _this._widget.viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_expense); t2 = isFullscreen ? C.EdgeInsets_6_12_12_0 : _null; t3 = expense.invoiceId; if (t3 != null && t3.length !== 0) t3 = T.SizedBox$(_null, _null, _null); else { t3 = K.Theme_of(context).accentColor; t4 = L.Text$(t1.get$shouldBeInvoiced(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = O.SwitchListTile$(t3, _null, new T.ExpenseEditSettingsState_build_closure(viewModel, expense), _null, L.Text$(t1.get$shouldBeInvoicedHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t4, expense.shouldBeInvoiced); t3 = t4; } t4 = K.Theme_of(context).accentColor; t5 = L.Text$(t1.get$markPaid(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = _this._showPaymentFields; t6 = O.SwitchListTile$(t4, _null, new T.ExpenseEditSettingsState_build_closure0(_this, expense, viewModel), _null, L.Text$(t1.get$markPaidHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t5, t6); if (_this._showPaymentFields) { t4 = T.SizedBox$(_null, 8, _null); t5 = expense.paymentTypeId; t7 = "__payment_type_" + t5 + "__"; t7 = T.Column$(H.setRuntimeTypeInfo([t4, F.EntityDropdown$(true, false, false, t5, $.$get$memoizedPaymentTypeList().call$1(staticState.paymentTypeMap), _null, C.EntityType_paymentType, new D.ValueKey(t7, type$.ValueKey_legacy_String), t1.get$paymentType(), _null, new T.ExpenseEditSettingsState_build_closure1(viewModel, expense), _null, _null, _null), K.DatePicker$(false, _null, _null, t1.get$date(), _null, new T.ExpenseEditSettingsState_build_closure2(viewModel, expense), expense.paymentDate, _null), S.DecoratedFormField$(false, _null, false, false, _this._expense_edit_settings$_transactionReferenceController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_0_null_null, t1.get$transactionReference(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null), T.SizedBox$(_null, 16, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); t4 = t7; } else t4 = T.SizedBox$(_null, _null, _null); t5 = K.Theme_of(context).accentColor; t7 = L.Text$(t1.get$convertCurrency(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = t1.localeCode; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t8), "convert_currency_help"); t9 = L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = _this._showConvertCurrencyFields; t7 = O.SwitchListTile$(t5, _null, new T.ExpenseEditSettingsState_build_closure3(_this, staticState, expense, viewModel), _null, t9, t7, t10); if (t10) { t5 = T.SizedBox$(_null, 8, _null); t9 = expense.invoiceCurrencyId; t10 = "__invoice_currency_" + H.S(t9) + "__"; t11 = type$.ValueKey_legacy_String; t10 = F.EntityDropdown$(true, false, false, t9, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t10, t11), t1.get$currency(), _null, new T.ExpenseEditSettingsState_build_closure4(_this), _null, _null, _null); t9 = S.DecoratedFormField$(false, _null, false, false, _this._expense_edit_settings$_exchangeRateController, _null, true, _null, _null, _null, _null, false, true, new D.ValueKey("__" + H.S(t9) + "__", t11), new N.TextInputType(2, false, true), t1.get$exchangeRate(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t12 = expense.exchangeRate; t13 = "__expense_amount_" + H.S(expense.get$grossAmount()) + "_" + H.S(t12) + "__"; t12 = t12 !== 1 && t12 !== 0 ? Y.formatNumber(expense.get$grossAmount() * t12, context, _null, _null, C.FormatNumberType_4, true, _null, false) : ""; t11 = T.Column$(H.setRuntimeTypeInfo([t5, t10, t9, L.Focus$(false, _null, S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, t12, _null, true, false, new D.ValueKey(t13, t11), _null, t1.get$convertedAmount(), _null, _null, false, new T.ExpenseEditSettingsState_build_closure5(_this), _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null), _null, true, _null, true, _null, new T.ExpenseEditSettingsState_build_closure6(_this, expense, context, viewModel), _null, _null), T.SizedBox$(_null, 16, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); t5 = t11; } else t5 = T.SizedBox$(_null, _null, _null); t9 = K.Theme_of(context).accentColor; t10 = L.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = type$.JSArray_legacy_Widget; t2 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t3, t6, t4, t7, t5, O.SwitchListTile$(t9, _null, new T.ExpenseEditSettingsState_build_closure7(viewModel, expense), _null, L.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, expense.invoiceDocuments)], t11), _null, 4, false, _null, false, t2); t3 = isFullscreen ? C.EdgeInsets_6_12_12_0 : _null; if (company.numberOfItemTaxRates === 0) { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t8), _s16_); t1 = H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, L.Text$(t4 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s16_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), B.OutlinedButton$(L.Text$(t1.get$settings(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new T.ExpenseEditSettingsState_build_closure8(context))], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null)], t11); } else { t4 = t1.get$enterTaxes(); t5 = t1.get$byAmount(); t6 = t1.get$byRate(); t4 = K.BoolDropdownButton$(t6, t5, _null, _null, t4, 80, new T.ExpenseEditSettingsState_build_closure9(viewModel, expense), _null, expense.calculateTaxByAmount === true); t5 = T.SizedBox$(_null, 16, _null); t6 = K.Theme_of(context).accentColor; t7 = L.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = H.setRuntimeTypeInfo([t4, t5, O.SwitchListTile$(t6, _null, new T.ExpenseEditSettingsState_build_closure10(viewModel, expense), _null, L.Text$("\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", _null, _null, _null, _null, _null, _null, _null, _null, _null), t7, expense.usesInclusiveTaxes)], t11); t1 = t7; } return new X.ScrollableListView(H.setRuntimeTypeInfo([t2, Y.FormCard$(_null, t1, _null, 4, false, _null, false, t3)], t11), _null, _null, false, _null); } }; T.ExpenseEditSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_expense_edit_settings$_onChanged()); }, $signature: 10 }; T.ExpenseEditSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_expense_edit_settings$_onChanged()); }, $signature: 10 }; T.ExpenseEditSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_expense_edit_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; T.ExpenseEditSettingsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._expense_edit_settings$_transactionReferenceController._change_notifier$_value.text); b.get$_expense_model$_$this()._expense_model$_transactionReference = t2; t1 = Y.parseDouble(t1._expense_edit_settings$_exchangeRateController._change_notifier$_value.text, false); b.get$_expense_model$_$this()._expense_model$_exchangeRate = t1; return b; }, $signature: 23 }; T.ExpenseEditSettingsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.expense); }, $signature: 1 }; T.ExpenseEditSettingsState__setCurrency_closure.prototype = { call$1: function(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.id; if (t1 == null) t1 = this.expense.invoiceCurrencyId; b.get$_expense_model$_$this()._invoiceCurrencyId = t1; b.get$_expense_model$_$this()._expense_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 23 }; T.ExpenseEditSettingsState__setCurrency_closure0.prototype = { call$1: function(duration) { var t1 = this.$this, t2 = t1._framework$_element; t2.toString; t1._expense_edit_settings$_exchangeRateController.set$text(0, Y.formatNumber(this.exchangeRate, t2, null, null, C.FormatNumberType_5, true, null, false)); }, $signature: 45 }; T.ExpenseEditSettingsState_build_closure.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure12(value))); }, $signature: 20 }; T.ExpenseEditSettingsState_build__closure12.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._shouldBeInvoiced = this.value; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure0.prototype = { call$1: function(value) { var t1, _this = this; if (value) { t1 = _this.expense; if (t1.paymentDate.length === 0) _this.viewModel.onChanged.call$1(t1.rebuild$1(new T.ExpenseEditSettingsState_build__closure8())); } else { _this.viewModel.onChanged.call$1(_this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure9())); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new T.ExpenseEditSettingsState_build__closure10(_this.$this)); } t1 = _this.$this; t1.setState$1(new T.ExpenseEditSettingsState_build__closure11(t1, value)); }, $signature: 20 }; T.ExpenseEditSettingsState_build__closure8.prototype = { call$1: function(b) { var t1 = Y.convertDateTimeToSqlDate(null); b.get$_expense_model$_$this()._paymentDate = t1; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build__closure9.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._paymentDate = ""; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build__closure10.prototype = { call$1: function(duration) { this.$this._expense_edit_settings$_transactionReferenceController.set$text(0, ""); }, $signature: 45 }; T.ExpenseEditSettingsState_build__closure11.prototype = { call$0: function() { return this.$this._showPaymentFields = this.value; }, $signature: 19 }; T.ExpenseEditSettingsState_build_closure1.prototype = { call$1: function(paymentType) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure7(paymentType))); }, $signature: 56 }; T.ExpenseEditSettingsState_build__closure7.prototype = { call$1: function(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_expense_model$_$this()._paymentTypeId = t1; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure2.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure6(date))); }, $signature: 7 }; T.ExpenseEditSettingsState_build__closure6.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._paymentDate = this.date; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure3.prototype = { call$1: function(value) { var t2, _this = this, t1 = _this.$this; t1.setState$1(new T.ExpenseEditSettingsState_build__closure3(t1, value)); t2 = _this.expense; if (value) t1._setCurrency$1(J.$index$asx(_this.staticState.currencyMap._map$_map, t2.invoiceCurrencyId)); else { _this.viewModel.onChanged.call$1(t2.rebuild$1(new T.ExpenseEditSettingsState_build__closure4())); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new T.ExpenseEditSettingsState_build__closure5(t1)); } }, $signature: 20 }; T.ExpenseEditSettingsState_build__closure3.prototype = { call$0: function() { return this.$this._showConvertCurrencyFields = this.value; }, $signature: 19 }; T.ExpenseEditSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_exchangeRate = 1; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build__closure5.prototype = { call$1: function(duration) { this.$this._expense_edit_settings$_exchangeRateController.set$text(0, ""); }, $signature: 45 }; T.ExpenseEditSettingsState_build_closure4.prototype = { call$1: function(currency) { return this.$this._setCurrency$1(currency); }, $signature: 202 }; T.ExpenseEditSettingsState_build_closure6.prototype = { call$1: function(hasFocus) { var t2, amount, exchangeRate, t3, t4, _this = this, t1 = _this.$this; if (t1._expense_edit_settings$_convertedAmount === 0) return; t2 = _this.expense; amount = t2.get$grossAmount(); exchangeRate = t1._expense_edit_settings$_convertedAmount / amount; t3 = t1._expense_edit_settings$_exchangeRateController; t4 = t1.get$_expense_edit_settings$_onChanged(); t3.removeListener$1(0, t4); t3.set$text(0, Y.formatNumber(exchangeRate, _this.context, null, null, C.FormatNumberType_4, true, null, false)); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t4), false); _this.viewModel.onChanged.call$1(t2.rebuild$1(new T.ExpenseEditSettingsState_build__closure2(exchangeRate))); t1._expense_edit_settings$_convertedAmount = 0; }, $signature: 20 }; T.ExpenseEditSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure5.prototype = { call$1: function(value) { this.$this._expense_edit_settings$_convertedAmount = Y.parseDouble(value, false); }, $signature: 7 }; T.ExpenseEditSettingsState_build_closure7.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure1(value))); }, $signature: 20 }; T.ExpenseEditSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._invoiceDocuments = this.value; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure8.prototype = { call$0: function() { var _null = null; J.$index$asx(O.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "tax_settings", false, _null)); }, $signature: 1 }; T.ExpenseEditSettingsState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure0(value))); }, $signature: 12 }; T.ExpenseEditSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._calculateTaxByAmount = this.value; return b; }, $signature: 23 }; T.ExpenseEditSettingsState_build_closure10.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new T.ExpenseEditSettingsState_build__closure(value))); }, $signature: 12 }; T.ExpenseEditSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_expense_model$_$this()._expense_model$_usesInclusiveTaxes = this.value; return b; }, $signature: 23 }; O.ExpenseEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.ExpenseEditScreen_build_closure(), new O.ExpenseEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseEditVM); } }; O.ExpenseEditScreen_build_closure0.prototype = { call$1: function(store) { return O.ExpenseEditVM_ExpenseEditVM$fromStore(store); }, $signature: 2249 }; O.ExpenseEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new D.ExpenseEdit(viewModel, new D.ValueKey(viewModel.expense.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2250 }; O.AbstractExpenseEditVM.prototype = { get$expense: function() { return this.expense; } }; O.ExpenseEditVM.prototype = {}; O.ExpenseEditVM_ExpenseEditVM$fromStore_closure.prototype = { call$1: function(expense) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.UpdateExpense(expense)); }, $signature: 115 }; O.ExpenseEditVM_ExpenseEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; O.ExpenseEditVM_ExpenseEditVM$fromStore_closure2.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new O.ExpenseEditVM_ExpenseEditVM$fromStore__closure1(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new O.ExpenseEditVM_ExpenseEditVM$fromStore__closure2(t3), t4); }, $signature: 135 }; O.ExpenseEditVM_ExpenseEditVM$fromStore__closure1.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/expense/edit")); }, $signature: 3 }; O.ExpenseEditVM_ExpenseEditVM$fromStore__closure2.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/expense/edit")); }, $signature: 44 }; O.ExpenseEditVM_ExpenseEditVM$fromStore_closure3.prototype = { call$2: function(context, completer) { var _null = null, t1 = B.VendorEntity_VendorEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new O.ExpenseEditVM_ExpenseEditVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new O.ExpenseEditVM_ExpenseEditVM$fromStore__closure0(t3), t4); }, $signature: 135 }; O.ExpenseEditVM_ExpenseEditVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/expense/edit")); }, $signature: 3 }; O.ExpenseEditVM_ExpenseEditVM$fromStore__closure0.prototype = { call$1: function(expense) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/expense/edit")); }, $signature: 44 }; O.ExpenseEditVM_ExpenseEditVM$fromStore_closure0.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new O.ExpenseEditVM_ExpenseEditVM$fromStore__closure3(this.store, this.state).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; O.ExpenseEditVM_ExpenseEditVM$fromStore__closure3.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, expense = t1.get$_store$_state().uiState.expenseUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_ExpenseEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.SaveExpenseRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ExpenseEntity), expense)); return t2.then$1$1(0, new O.ExpenseEditVM_ExpenseEditVM$fromStore___closure(expense, t3, this.state, t1, $navigator), type$.Null).catchError$1(new O.ExpenseEditVM_ExpenseEditVM$fromStore___closure0()); }, $signature: 31 }; O.ExpenseEditVM_ExpenseEditVM$fromStore___closure.prototype = { call$1: function(savedExpense) { var _this = this, _s13_ = "/expense/view", t1 = _this.expense, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_expense"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_expense"); if (t2 == null) t2 = ""; } M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedExpense); } else { M.viewEntity(false, savedExpense, null, false); if (t2.isEditorFullScreen$1(C.EntityType_expense)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedExpense, null); } } }, $signature: 115 }; O.ExpenseEditVM_ExpenseEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new O.ExpenseEditVM_ExpenseEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; O.ExpenseEditVM_ExpenseEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; V.ExpenseListItem.prototype = { build$1: function(_, context) { var t4, t5, client, vendor, category, filterMatch, listUIState, isInMultiselect, showCheckbox, isChecked, textStyle, textColor, parts, t6, _this = this, _null = null, t1 = {}, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, expenseUIState = uiState.expenseUIState, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = _this.expense; client = t4.$index(t2, t3).clientState.$get$1(0, t5.clientId); vendor = t4.$index(t2, t3).vendorState.$get$1(0, t5.vendorId); category = t4.$index(t2, t3).expenseCategoryState.$get$1(0, t5.categoryId); t2 = _this.filter; if (t2 != null && t2.length !== 0) { t3 = t5.matchesFilterValue$1(t2); filterMatch = t3 == null ? client.matchesFilterValue$1(t2) : t3; } else filterMatch = _null; listUIState = expenseUIState.listUIState; t2 = listUIState.selectedIds; isInMultiselect = t2 != null; showCheckbox = _this.onCheckboxChanged != null || isInMultiselect; t3 = _this.isDismissible; if (t3) if (isInMultiselect) { t4 = t5.id; t2 = J.contains$1$asx(t2._list, t4); isChecked = t2; } else isChecked = false; else isChecked = _this.isChecked; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.subtitle = ""; if (filterMatch != null) t1.subtitle = filterMatch; else { t2 = client == null; if (!t2 || vendor != null || category != null) { parts = H.setRuntimeTypeInfo([Y.formatDate(t5.date, context, true, true, false)], type$.JSArray_legacy_String); if (category != null && !category.get$isNew()) parts.push(category.name); if (vendor != null && !vendor.get$isNew()) parts.push(vendor.name); if (!t2 && !client.get$isNew()) parts.push(client.displayName); t1.subtitle = C.JSArray_methods.join$1(parts, " \u2022 "); } } if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t5.id; t2 = t2 === (uiState.get$isEditing() ? expenseUIState.editing.id : expenseUIState.selectedId); } else t2 = false; t4 = store.get$_store$_state(); t6 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t6._list, t4).userCompany, t5, new A.LayoutBuilder(new V.ExpenseListItem_build_closure(t1, _this, showCheckbox, listUIState, isChecked, state, textStyle, filterMatch, textColor), _null), t2, _this.showCheckbox, t3, _null); }, get$expense: function() { return this.expense; } }; V.ExpenseListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new V.ExpenseListItem_build__closure(t1), false, _this.isChecked), _null), _null); else { t2 = t1.expense; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new V.ExpenseListItem_build__closure0(t1)); t2 = t4; } t3 = t1.expense; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t3.publicNotes; t8 = L.Text$(t8 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, t4, _null, _null, _null); t9 = _this._box_0.subtitle; t10 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t8, L.Text$(t9, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 8), L.Text$(Y.formatNumber(t3.get$grossAmount(), context, _null, t3.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 16), new V.EntityStatusChip(t3, 105, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new V.ExpenseListItem_build__closure1(t1, context), new V.ExpenseListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new V.ExpenseListItem_build__closure3(t1), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.expense; t5 = t4.publicNotes; if (t5.length === 0) t5 = t4.number; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(t4.amount, context, _null, t4.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 == null) t5 = _this._box_0.subtitle; t7 = _this.textColor; t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new V.ExpenseListItem_build__closure4(t1, context), new V.ExpenseListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([L.Text$(t5, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t7.get$value(t7) >>> 16 & 255, t7.get$value(t7) >>> 8 & 255, t7.get$value(t7) & 255)), _null, _null, _null), new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); t1 = t3; } return t1; }, $signature: 97 }; V.ExpenseListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.expense, false, false); }, $signature: 0 }; V.ExpenseListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.expense, false, true); }, $signature: 0 }; V.ExpenseListItem_build__closure.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; V.ExpenseListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.expense], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; V.ExpenseListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.expense, false, false); }, $signature: 0 }; V.ExpenseListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.expense, false, true); }, $signature: 0 }; V.ExpenseListItem_build__closure3.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; F.ExpenseListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.ExpenseListBuilder_build_closure(), F.expense_list_vm_ExpenseListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseListVM); } }; F.ExpenseListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.expenseList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_expense, new F.ExpenseListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new S.ExpensePresenter(), t2, t4); }, $signature: 2251 }; F.ExpenseListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, expenseId = J.$index$asx(t1.expenseList, index); return V.ExpenseListItem$(J.$index$asx(t1.expenseMap._map$_map, expenseId), t1.filter, false, true, null, null, true); }, "call*": "call$2", $requiredArgCount: 2, $signature: 457 }; F.ExpenseListVM.prototype = { get$user: function() { return this.user; } }; F.ExpenseListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; F.ExpenseListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; F.ExpenseListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SortExpenses(field)); }, $signature: 5 }; F.ExpenseListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.ClearExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; S.ExpensePresenter.prototype = { getField$2$context$field: function(context, field) { var t1, t2, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), expense = type$.legacy_ExpenseEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(expense, 105, _null); case "vendor": case "vendor_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).vendorState.map; t1 = expense.vendorId; t1 = J.$index$asx(t2._map$_map, t1); return L.Text$((t1 == null ? B.VendorEntity_VendorEntity(_null, _null, _null) : t1).name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_id": case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = expense.clientId; t1 = J.$index$asx(t2._map$_map, t1); return L.Text$((t1 == null ? T.ClientEntity_ClientEntity(_null, _null, _null) : t1).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(expense.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "net_amount": return L.Text$(Y.formatNumber(expense.get$netAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return L.Text$(Y.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "converted_amount": t1 = expense.get$grossAmount(); t2 = expense.exchangeRate; if (t2 === 0) t2 = 1; return L.Text$(Y.formatNumber(t1 * t2, context, _null, expense.invoiceCurrencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(expense.get$taxAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(expense.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return L.Text$(expense.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(expense.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "should_be_invoiced": return L.Text$(C.JSBool_methods.toString$0(expense.shouldBeInvoiced), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "transaction_id": return L.Text$(expense.transactionId, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "transaction_reference": return L.Text$(expense.transactionReference, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "bank_id": return L.Text$(expense.bankId, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency_id": t1 = state.staticState.currencyMap; t2 = expense.currencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "category": case "category_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).expenseCategoryState.map; t1 = expense.categoryId; t1 = J.$index$asx(t2._map$_map, t1); t1 = t1 == null ? _null : t1.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "payment_date": return L.Text$(Y.formatDate(expense.paymentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(expense.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_currency_id": t1 = state.staticState.currencyMap; t2 = expense.invoiceCurrencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return L.Text$(expense.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return L.Text$(expense.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return L.Text$(expense.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return L.Text$(Y.formatNumber(expense.taxRate1, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return L.Text$(Y.formatNumber(expense.taxRate2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return L.Text$(Y.formatNumber(expense.taxRate3, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).invoiceState.map; t1 = expense.invoiceId; t1 = J.$index$asx(t2._map$_map, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, expense.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, expense.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, expense.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, expense.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(expense.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; X.ExpenseScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.expenseUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.expenseList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "vendor", "client", "date", "amount", "public_notes", "entity_state"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("number"); t6.push("net_amount"); t6.push("tax_amount"); t6.push("private_notes"); t6.push("should_be_invoiced"); t6.push("transaction_id"); t6.push("transaction_reference"); t6.push("bank_id"); t6.push("currency_id"); t6.push("category_id"); t6.push("category"); t6.push("payment_date"); t6.push("exchange_rate"); t6.push("invoice_currency_id"); t6.push("tax_name1"); t6.push("tax_name2"); t6.push("tax_name3"); t6.push("tax_rate1"); t6.push("tax_rate2"); t6.push("tax_rate3"); t6.push("client_id"); t6.push("invoice_id"); t6.push("vendor_id"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t7 = H.setRuntimeTypeInfo(["status", "vendor", "client", "date", "amount", "public_notes", "entity_state"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("expense1", true), company.getCustomFieldValues$2$excludeBlank("expense2", true), company.getCustomFieldValues$2$excludeBlank("expense3", true), company.getCustomFieldValues$2$excludeBlank("expense4", true), t7, C.EntityType_expense, false, C.List_empty14, new X.ExpenseScreen_build_closure(store), new X.ExpenseScreen_build_closure0(store), new X.ExpenseScreen_build_closure1(store), new X.ExpenseScreen_build_closure2(store), new X.ExpenseScreen_build_closure3(store), new X.ExpenseScreen_build_closure4(store), new X.ExpenseScreen_build_closure5(store), new X.ExpenseScreen_build_closure6(store), H.setRuntimeTypeInfo(["number", "date", "updated_at"], t5), H.setRuntimeTypeInfo([M._$ExpenseStatusEntity$_("", "").rebuild$1(new X.ExpenseScreen_build_closure7(t3)), M._$ExpenseStatusEntity$_("", "").rebuild$1(new X.ExpenseScreen_build_closure8(t3)), M._$ExpenseStatusEntity$_("", "").rebuild$1(new X.ExpenseScreen_build_closure9(t3))], type$.JSArray_legacy_EntityStatus), t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_expense) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "expense_fab", false, new X.ExpenseScreen_build_closure10(context), t3.get$newExpense()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_expense, t2, new X.ExpenseScreen_build_closure11(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new F.ExpenseListBuilder(_null), t6, C.EntityType_expense, t3, 0, _null, new X.ExpenseScreen_build_closure12(store), new X.ExpenseScreen_build_closure13(store)); } }; X.ExpenseScreen_build_closure13.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.StartExpenseMultiselect()); }, $signature: 9 }; X.ExpenseScreen_build_closure11.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpenses(value)); }, $signature: 7 }; X.ExpenseScreen_build_closure12.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.expenseUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.ClearExpenseMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.StartExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; X.ExpenseScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SortExpenses(value)); }, $signature: 5 }; X.ExpenseScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByCustom1(value)); }, $signature: 5 }; X.ExpenseScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByCustom2(value)); }, $signature: 5 }; X.ExpenseScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByCustom3(value)); }, $signature: 5 }; X.ExpenseScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByCustom4(value)); }, $signature: 5 }; X.ExpenseScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByState(state)); }, $signature: 53 }; X.ExpenseScreen_build_closure7.prototype = { call$1: function(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "1"; t1 = this.localization.get$logged(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 422 }; X.ExpenseScreen_build_closure8.prototype = { call$1: function(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "2"; t1 = this.localization; t1 = t1.get$pending(t1); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 422 }; X.ExpenseScreen_build_closure9.prototype = { call$1: function(b) { var t1; b.get$_expense_model$_$this()._expense_model$_id = "3"; t1 = this.localization.get$invoiced(); b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, $signature: 422 }; X.ExpenseScreen_build_closure6.prototype = { call$2: function($status, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.FilterExpensesByStatus($status)); }, $signature: 220 }; X.ExpenseScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.expenseUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.ClearExpenseMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new T.StartExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; X.ExpenseScreen_build_closure10.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_expense); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; U.ExpenseScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.ExpenseScreenBuilder_build_closure(), U.expense_screen_vm_ExpenseScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseScreenVM); } }; U.ExpenseScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new X.ExpenseScreen(vm, null); }, $signature: 2254 }; U.ExpenseScreenVM.prototype = {}; U.ExpenseView.prototype = { createState$0: function() { return new U._ExpenseViewState(null, C._StateLifecycle_0); } }; U._ExpenseViewState.prototype = { initState$0: function() { var viewModel, state, t1, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; state = viewModel.state; t1 = viewModel.expense; t1 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), t1.entityType) ? 3 : 2; _this._widget.toString; t1 = U.TabController$(state.uiState.expenseUIState.tabIndex, t1, _this); _this._expense_view$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_expense_view$_onTabChanged()), false); }, _expense_view$_onTabChanged$0: function() { var t1, store, expense, t2, _this = this; _this._widget.toString; t1 = _this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); expense = _this._widget.viewModel.expense; t1 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType); t2 = _this._expense_view$_controller; if (t1) { t1 = t2._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.UpdateRecurringExpenseTab(t1)); } else { t1 = t2._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new T.UpdateExpenseTab(t1)); } }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._expense_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._expense_view$_controller.removeListener$1(0, _this.get$_expense_view$_onTabChanged()); _this._expense_view$_controller.dispose$0(0); _this.super$__ExpenseViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, expense = viewModel.expense, t2 = this._expense_view$_controller, t3 = D.getLayout(context), t4 = E.Tab$(_null, t1.get$overview()), t5 = expense.documents._list, t6 = J.getInterceptor$asx(t5); t4 = H.setRuntimeTypeInfo([t4, E.Tab$(_null, t6.get$isEmpty(t5) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t6.get$length(t5)) + ")")], type$.JSArray_legacy_Widget); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) t4.push(E.Tab$(_null, t1.get$schedule())); t1 = E.TabBar$(t2, _null, t3 === C.AppLayout_mobile, _null, _null, t4); t2 = viewModel.state; if (Y.cleanApiUrl(t2.authState.url) === "https://invoicing.co") { t3 = t2.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2.userCompanyStates._list, t3).userCompany.account.plan === "enterprise"; } return new G.ViewScaffold(false, expense, new T.Builder(new U._ExpenseViewState_build_closure(this, viewModel, expense), _null), _null, t1, _null); } }; U._ExpenseViewState_build_closure.prototype = { call$1: function(context) { var t4, t5, t6, t7, _null = null, t1 = this.$this, t2 = t1._expense_view$_controller, t3 = this.viewModel; t1._widget.toString; t1 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([N.RefreshIndicator$(new F.ExpenseOverview(t3, false, _null), new U._ExpenseViewState_build__closure(t3, context)), N.RefreshIndicator$(new Y.ExpenseViewDocuments(t3, t3.expense, _null), new U._ExpenseViewState_build__closure0(t3, context))], t1); t5 = this.expense; t6 = type$.JSArray_legacy_EntityType; t7 = t5.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7)) t4.push(N.RefreshIndicator$(new N.ExpenseViewSchedule(t3, _null), new U._ExpenseViewState_build__closure1(t3, context))); t2 = T.Expanded$(E.TabBarView$(t4, t2, _null), 1); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7)) t3 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["-1", "2"], type$.JSArray_legacy_String), t5.get$calculatedStatusId()) ? C.EntityAction_stop : C.EntityAction_start; else t3 = C.EntityAction_invoiceExpense; t4 = t5.invoiceId; if (t4 != null && t4.length !== 0) if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7)) if (!(C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["1", "3"], type$.JSArray_legacy_String), t5.get$calculatedStatusId()))) t4 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["-1", "2"], type$.JSArray_legacy_String), t5.get$calculatedStatusId()); else t4 = true; else t4 = false; else t4 = true; return T.Column$(H.setRuntimeTypeInfo([t2, new Z.BottomButtons(t5, t3, C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t6), t7) ? C.EntityAction_cloneToRecurring : C.EntityAction_cloneToExpense, t4, true, _null)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; U._ExpenseViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; U._ExpenseViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; U._ExpenseViewState_build__closure1.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; U.__ExpenseViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; Y.ExpenseViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.expense.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new Y.ExpenseViewDocuments_build_closure(this, context), new Y.ExpenseViewDocuments_build_closure0(this, context), null, null); }, get$expense: function() { return this.expense; } }; Y.ExpenseViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; Y.ExpenseViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; F.ExpenseOverview.prototype = { build$1: function(_, context) { var t3, t4, vendor, client, invoice, project, category, user, t5, recurringExpense, t6, fields, t7, t8, t9, t10, t11, t12, _null = null, _s8_ = "expense1", _s8_0 = "expense2", _s8_1 = "expense3", _s8_2 = "expense4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, expense = t2.expense, company = t2.company, state = t2.state; t2 = state.uiState.selectedCompanyIndex; t3 = state.userCompanyStates._list; t4 = J.getInterceptor$asx(t3); vendor = t4.$index(t3, t2).vendorState.$get$1(0, expense.vendorId); client = t4.$index(t3, t2).clientState.$get$1(0, expense.clientId); invoice = t4.$index(t3, t2).invoiceState.$get$1(0, expense.invoiceId); project = t4.$index(t3, t2).projectState.$get$1(0, expense.projectId); category = t4.$index(t3, t2).expenseCategoryState.$get$1(0, expense.categoryId); user = t4.$index(t3, t2).userState.$get$1(0, expense.assignedUserId); t5 = expense.recurringId; recurringExpense = t4.$index(t3, t2).recurringExpenseState.$get$1(0, t5); t6 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_empty(t6, t6); t6 = expense.customValue1; if (t6.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), Y.formatCustomValue(context, _s8_, t6)); t6 = expense.customValue2; if (t6.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), Y.formatCustomValue(context, _s8_0, t6)); t6 = expense.customValue3; if (t6.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), Y.formatCustomValue(context, _s8_1, t6)); t6 = expense.customValue4; if (t6.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), Y.formatCustomValue(context, _s8_2, t6)); t6 = expense.exchangeRate; t7 = t6 !== 1 && t6 !== 0; t8 = state.prefState; t9 = expense.currencyId; if (t7) { t7 = new E.ExpenseStatusColors(t8.get$colorThemeModel()).get$colors().$index(0, expense.get$calculatedStatusId()); t8 = t1.lookup$1("expense_status_" + H.S(expense.get$calculatedStatusId())); t10 = t1.get$amount(); t9 = Y.formatNumber(expense.get$grossAmount(), context, _null, t9, C.FormatNumberType_0, true, _null, false); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "converted"); if (t11 == null) t11 = ""; t12 = expense.get$grossAmount(); t6 = D.EntityHeader$(expense, t10, t11, Y.formatNumber(Y.round(t12 * (t6 === 0 ? 1 : t6), 2), context, _null, expense.invoiceCurrencyId, C.FormatNumberType_0, true, _null, false), t7, t8, t9); } else { t6 = new E.ExpenseStatusColors(t8.get$colorThemeModel()).get$colors().$index(0, expense.get$calculatedStatusId()); t7 = t1.lookup$1("expense_status_" + H.S(expense.get$calculatedStatusId())); t9 = D.EntityHeader$(expense, t1.get$amount(), _null, _null, t6, t7, Y.formatNumber(expense.get$grossAmount(), context, _null, t9, C.FormatNumberType_0, true, _null, false)); t6 = t9; } t7 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([t6, new G.ListDivider(_null)], t7); t8 = expense.privateNotes; if (t8.length !== 0) C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo([new S.IconMessage(t8, C.IconData_58286_MaterialIcons_null_false, _null, _null), new G.ListDivider(_null)], t7)); t6.push(new T.FieldGrid(fields, _null)); t6.push(O.EntityListTile$(vendor, false, _null)); t6.push(O.EntityListTile$(client, false, _null)); t6.push(O.EntityListTile$(project, false, _null)); t6.push(O.EntityListTile$(category, false, _null)); t6.push(O.EntityListTile$(user, false, _null)); t6.push(O.EntityListTile$(invoice, false, _null)); if ((t5 == null ? "" : t5).length !== 0) t6.push(O.EntityListTile$(recurringExpense, false, _null)); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), expense.entityType)) t6.push(new O.EntitiesListTile(expense, C.EntityType_expense, t1.get$expenses(), $.$get$memoizedRecurringExpenseStatsForExpense().call$2(expense.id, t4.$index(t3, t2).expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), false, true, _null)); C.JSArray_methods.addAll$1(t6, new F.ExpenseOverview_build__buildDetailsList(expense, context, t1, state).call$0()); t1 = expense.publicNotes; if (t1.length !== 0) C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo([new S.IconMessage(t1, _null, _null, _null), new G.ListDivider(_null)], t7)); return new X.ScrollableListView(t6, _null, _null, false, _null); } }; F.ExpenseOverview_build__buildDetailsList.prototype = { call$0: function() { var t2, tax, t3, t4, t5, t6, t7, _this = this, _null = null, _s1_ = " ", t1 = _this.expense; if (t1.calculateTaxByAmount) { t2 = t1.taxName1; tax = t2.length !== 0 ? J.$add$ansx(Y.formatNumber(t1.taxAmount1, _this.context, _null, _null, C.FormatNumberType_0, true, _null, false), _s1_) + t2 : ""; t2 = t1.taxName2; if (t2.length !== 0) tax += C.JSString_methods.$add(_s1_, Y.formatNumber(t1.taxAmount2, _this.context, _null, _null, C.FormatNumberType_0, true, _null, false)) + " " + t2; t2 = t1.taxName3; if (t2.length !== 0) tax += C.JSString_methods.$add(_s1_, Y.formatNumber(t1.taxAmount3, _this.context, _null, _null, C.FormatNumberType_0, true, _null, false)) + " " + t2; } else { t2 = t1.taxName1; tax = t2.length !== 0 ? J.$add$ansx(Y.formatNumber(t1.taxRate1, _this.context, _null, _null, C.FormatNumberType_1, true, _null, false), _s1_) + t2 : ""; t2 = t1.taxName2; if (t2.length !== 0) tax += C.JSString_methods.$add(_s1_, Y.formatNumber(t1.taxRate2, _this.context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t2; t2 = t1.taxName3; if (t2.length !== 0) tax += C.JSString_methods.$add(_s1_, Y.formatNumber(t1.taxRate3, _this.context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t2; } t2 = type$.legacy_String; t2 = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t3 = type$.JSArray_legacy_EntityType; t4 = t1.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t3), t4)) { t5 = _this.localization; t2.$indexSet(0, t5.get$frequency(t5), t5.lookup$1(C.Map_tOn4d.$index(0, t1.frequencyId))); } if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t3), t4)) { t5 = _this.localization; t6 = t5.get$remainingCycles(); t7 = t1.remainingCycles; t2.$indexSet(0, t6, t7 === -1 ? t5.get$endless() : "" + t7); } if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t3), t4)) t2.$indexSet(0, _this.localization.get$sendDate(), Y.formatDate(t1.nextSendDate, _this.context, true, true, false)); if (!C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringExpense], t3), t4)) t2.$indexSet(0, _this.localization.get$date(), Y.formatDate(t1.date, _this.context, true, true, false)); t3 = _this.localization; t2.$indexSet(0, t3.get$transactionReference(), t1.transactionReference); t2.$indexSet(0, t3.get$tax(), tax); t4 = _this.context; t2.$indexSet(0, t3.get$paymentDate(), Y.formatDate(t1.paymentDate, t4, true, true, false)); t5 = t3.get$paymentType(); t6 = J.$index$asx(_this.state.staticState.paymentTypeMap._map$_map, t1.paymentTypeId); t2.$indexSet(0, t5, t6 == null ? _null : t6.name); t3 = t3.get$exchangeRate(); t1 = t1.exchangeRate; t2.$indexSet(0, t3, t1 !== 1 && t1 !== 0 ? Y.formatNumber(t1, t4, _null, _null, C.FormatNumberType_3, true, _null, false) : _null); return H.setRuntimeTypeInfo([new T.FieldGrid(t2, _null)], type$.JSArray_legacy_Widget); }, $signature: 198 }; N.ExpenseViewSchedule.prototype = { createState$0: function() { return new N._ExpenseViewScheduleState(C._StateLifecycle_0); } }; N._ExpenseViewScheduleState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.expense.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var _null = null, expense = this._widget.viewModel.expense, t1 = type$.JSArray_legacy_Widget; t1 = H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$sendDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1)], t1), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t1); if (expense.get$isStale() && J.get$isEmpty$asx(expense.recurringDates._list)) t1.push(new V.LoadingIndicator(300, false, _null)); C.JSArray_methods.addAll$1(t1, J.map$1$1$ax(expense.recurringDates._list, new N._ExpenseViewScheduleState_build_closure(context), type$.legacy_Padding).toList$0(0)); return new X.ScrollableListView(t1, _null, C.EdgeInsets_16_16_16_16, false, _null); } }; N._ExpenseViewScheduleState_build_closure.prototype = { call$1: function(schedule) { var _null = null; return new T.Padding(C.EdgeInsets_0_16_0_0, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(Y.formatDate(schedule.sendDate, this.context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null); }, $signature: 2255 }; U.ExpenseViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.ExpenseViewScreen_build_closure(this), new U.ExpenseViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseViewVM); } }; U.ExpenseViewScreen_build_closure0.prototype = { call$1: function(store) { return U.ExpenseViewVM_ExpenseViewVM$fromStore(store); }, $signature: 2256 }; U.ExpenseViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new U.ExpenseView(vm, false, vm.state.uiState.expenseUIState.tabIndex, null); }, $signature: 2257 }; U.AbstractExpenseViewVM.prototype = { get$expense: function() { return this.expense; }, get$company: function() { return this.company; } }; U.ExpenseViewVM.prototype = {}; U.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.LoadExpense(completer, this.expense.id)); return completer.future; }, $signature: 17 }; U.ExpenseViewVM_ExpenseViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.ExpenseViewVM_ExpenseViewVM$fromStore_closure0.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.SaveExpenseDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.expense)); t1.then$1$1(0, new U.ExpenseViewVM_ExpenseViewVM$fromStore__closure0(context), type$.Null).catchError$1(new U.ExpenseViewVM_ExpenseViewVM$fromStore__closure1()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; U.ExpenseViewVM_ExpenseViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; U.ExpenseViewVM_ExpenseViewVM$fromStore__closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new U.ExpenseViewVM_ExpenseViewVM$fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; U.ExpenseViewVM_ExpenseViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; U.ExpenseViewVM_ExpenseViewVM$fromStore_closure1.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new U.ExpenseViewVM_ExpenseViewVM$fromStore__closure(t2, this.expense), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; U.ExpenseViewVM_ExpenseViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new T.LoadExpense(null, this.expense.id)); }, $signature: 95 }; A.ExpenseCategoryEdit.prototype = { createState$0: function() { return new A._ExpenseCategoryEditState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; A._ExpenseCategoryEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = _this._nameController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._expense_category_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new A._ExpenseCategoryEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.expenseCategory.name); C.JSArray_methods.forEach$1(_this._expense_category_edit$_controllers, new A._ExpenseCategoryEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._expense_category_edit$_controllers, new A._ExpenseCategoryEditState_dispose_closure(this)); this.super$State$dispose(0); }, _expense_category_edit$_onChanged$0: function() { var _this = this, expenseCategory = _this._widget.viewModel.expenseCategory.rebuild$1(new A._ExpenseCategoryEditState__onChanged_closure(_this)); if (!expenseCategory.$eq(0, _this._widget.viewModel.expenseCategory)) _this._expense_category_edit$_debouncer.run$1(new A._ExpenseCategoryEditState__onChanged_closure0(_this, expenseCategory)); }, build$1: function(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), expenseCategory = viewModel.expenseCategory; if (expenseCategory.get$isNew()) t2 = t1.get$newExpenseCategory(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_expense_category"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new A._ExpenseCategoryEditState_build_closure(this, t1, viewModel, expenseCategory), _null), $.$get$_ExpenseCategoryEditState__formKey()), _null, expenseCategory, _null, false, _null, new A._ExpenseCategoryEditState_build_closure0(viewModel), new A._ExpenseCategoryEditState_build_closure1(this, viewModel), _null, t2); } }; A._ExpenseCategoryEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_expense_category_edit$_onChanged()); }, $signature: 27 }; A._ExpenseCategoryEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_expense_category_edit$_onChanged()), false); return null; }, $signature: 27 }; A._ExpenseCategoryEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_expense_category_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; A._ExpenseCategoryEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._nameController._change_notifier$_value.text); b.get$_expense_category_model$_$this()._expense_category_model$_name = t1; return b; }, $signature: 385 }; A._ExpenseCategoryEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.expenseCategory); }, $signature: 1 }; A._ExpenseCategoryEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; A._ExpenseCategoryEditState_build_closure1.prototype = { call$1: function(context) { var isValid = $.$get$_ExpenseCategoryEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new A._ExpenseCategoryEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; A._ExpenseCategoryEditState_build__closure.prototype = { call$0: function() { this.$this._expense_category_edit$_autoValidate = !this.isValid; }, $signature: 1 }; A._ExpenseCategoryEditState_build_closure.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = _this.viewModel, t4 = _this.expenseCategory, t5 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, t1._expense_category_edit$_autoValidate, t1._nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2.get$name(t2), _null, _null, false, _null, _null, t3.onSavePressed, true, _null, _null, C.TextAlign_4, _null), A.FormColorPicker$(t4.color, _null, new A._ExpenseCategoryEditState_build__closure0(t3, t4))], t5), _null, 4, false, _null, false, _null)], t5), _null, _null, false, _null); }, $signature: 140 }; A._ExpenseCategoryEditState_build__closure0.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.expenseCategory.rebuild$1(new A._ExpenseCategoryEditState_build___closure(value))); }, $signature: 5 }; A._ExpenseCategoryEditState_build___closure.prototype = { call$1: function(b) { b.get$_expense_category_model$_$this()._expense_category_model$_color = this.value; return b; }, $signature: 385 }; F.ExpenseCategoryEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.ExpenseCategoryEditScreen_build_closure(), new F.ExpenseCategoryEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryEditVM); } }; F.ExpenseCategoryEditScreen_build_closure0.prototype = { call$1: function(store) { return F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore(store); }, $signature: 2258 }; F.ExpenseCategoryEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.ExpenseCategoryEdit(viewModel, new D.ValueKey(viewModel.expenseCategory.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2259 }; F.ExpenseCategoryEditVM.prototype = { get$expenseCategory: function() { return this.expenseCategory; }, get$company: function() { return this.company; } }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure.prototype = { call$1: function(expenseCategory) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.UpdateExpenseCategory(expenseCategory)); }, $signature: 252 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, R.ExpenseCategoryEntity_ExpenseCategoryEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, expenseCategory = t1.get$_store$_state().uiState.expenseCategoryUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_ExpenseCategoryEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.SaveExpenseCategoryRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ExpenseCategoryEntity), expenseCategory)); return t2.then$1$1(0, new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure(expenseCategory, t3, this.state, t1, $navigator), type$.Null).catchError$1(new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0()); }, $signature: 31 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure.prototype = { call$1: function(savedExpenseCategory) { var _this = this, _s31_ = "/settings/expense_category_view", t1 = _this.expenseCategory, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_expense_category"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_expense_category"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s31_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s31_, t1, t1); } else t2.pop$1(0, savedExpenseCategory); } else M.viewEntity(false, savedExpenseCategory, null, true); }, $signature: 252 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; F.ExpenseCategoryListItem.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, expenseCategoryUIState = uiState.expenseCategoryUIState, t1 = expenseCategoryUIState.listUIState.selectedIds, t2 = _this.filter; t2 != null && t2.length !== 0 ? _this.expenseCategory.matchesFilterValue$1(t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.expenseCategory; t4 = t2.id; t5 = uiState.get$isEditing() ? expenseCategoryUIState.editing.id : expenseCategoryUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new F.ExpenseCategoryListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new F.ExpenseCategoryListItem_build_closure0(_this, context), new F.ExpenseCategoryListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t8, new L.EntityStateLabel(t2, _null)], t7), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t6, _null), t4 === t5, true, true, _null); }, get$user: function() { return this.user; }, get$expenseCategory: function() { return this.expenseCategory; } }; F.ExpenseCategoryListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.expenseCategory, false, false); return t1; }, $signature: 0 }; F.ExpenseCategoryListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.expenseCategory, false, true); return t1; }, $signature: 0 }; F.ExpenseCategoryListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; A.ExpenseCategoryListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.ExpenseCategoryListBuilder_build_closure(), A.expense_category_list_vm_ExpenseCategoryListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryListVM); } }; A.ExpenseCategoryListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.expenseCategoryList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_expenseCategory, new A.ExpenseCategoryListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new F.ExpenseCategoryPresenter(), t1, t3); }, $signature: 2260 }; A.ExpenseCategoryListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, expenseCategoryId = J.$index$asx(t1.expenseCategoryList, index), expenseCategory = J.$index$asx(t1.expenseCategoryMap._map$_map, expenseCategoryId), t2 = state.getUIState$1(C.EntityType_expenseCategory).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = expenseCategory.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new F.ExpenseCategoryListItem(t4, expenseCategory, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2261 }; A.ExpenseCategoryListVM.prototype = {}; A.ExpenseCategoryListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; A.ExpenseCategoryListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; A.ExpenseCategoryListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortExpenseCategories(field)); }, $signature: 5 }; A.ExpenseCategoryListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ClearExpenseCategoryMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; F.ExpenseCategoryPresenter.prototype = { getField$2$context$field: function(context, field) { return this.super$EntityPresenter$getField(context, field); } }; Y.ExpenseCategoryScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.expenseCategoryUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.expenseCategoryList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo([], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, H.setRuntimeTypeInfo([], t5), C.EntityType_expenseCategory, false, C.List_empty14, new Y.ExpenseCategoryScreen_build_closure(store), new Y.ExpenseCategoryScreen_build_closure0(store), new Y.ExpenseCategoryScreen_build_closure1(store), new Y.ExpenseCategoryScreen_build_closure2(store), new Y.ExpenseCategoryScreen_build_closure3(store), new Y.ExpenseCategoryScreen_build_closure4(store), new Y.ExpenseCategoryScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_expenseCategory) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "expense_category_fab", false, new Y.ExpenseCategoryScreen_build_closure6(context), t3.get$newExpenseCategory()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_expenseCategory, t2, new Y.ExpenseCategoryScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new A.ExpenseCategoryListBuilder(_null), t6, C.EntityType_expenseCategory, t3, 0, "expense_settings", new Y.ExpenseCategoryScreen_build_closure8(store), new Y.ExpenseCategoryScreen_build_closure9(store)); } }; Y.ExpenseCategoryScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.StartExpenseCategoryMultiselect()); }, $signature: 9 }; Y.ExpenseCategoryScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.expenseCategoryUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearExpenseCategoryMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartExpenseCategoryMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.ExpenseCategoryScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategories(value)); }, $signature: 7 }; Y.ExpenseCategoryScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortExpenseCategories(value)); }, $signature: 7 }; Y.ExpenseCategoryScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategoriesByState(state)); }, $signature: 53 }; Y.ExpenseCategoryScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.expenseCategoryUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearExpenseCategoryMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartExpenseCategoryMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.ExpenseCategoryScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategoriesByCustom1(value)); }, $signature: 5 }; Y.ExpenseCategoryScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategoriesByCustom2(value)); }, $signature: 5 }; Y.ExpenseCategoryScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategoriesByCustom3(value)); }, $signature: 5 }; Y.ExpenseCategoryScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterExpenseCategoriesByCustom4(value)); }, $signature: 5 }; Y.ExpenseCategoryScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_expenseCategory); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.ExpenseCategoryScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.ExpenseCategoryScreenBuilder_build_closure(), O.expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryScreenVM); } }; O.ExpenseCategoryScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new Y.ExpenseCategoryScreen(vm, null); }, $signature: 2262 }; O.ExpenseCategoryScreenVM.prototype = {}; D.ExpenseCategoryView.prototype = { createState$0: function() { return new D._ExpenseCategoryViewState(C._StateLifecycle_0); } }; D._ExpenseCategoryViewState.prototype = { build$1: function(_, context) { var t7, t8, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, expenseCategory = viewModel.expenseCategory, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = $.$get$memoizedCalculateExpenseCategoryAmount(), t3 = expenseCategory.id, t4 = state.uiState.selectedCompanyIndex, t5 = state.userCompanyStates._list, t6 = J.getInterceptor$asx(t5), amount = t2.call$2(t3, t6.$index(t5, t4).expenseState.map); t2 = this._widget.isFilter; t7 = D.EntityHeader$(expenseCategory, t1.get$total(t1), _null, _null, _null, _null, Y.formatNumber(amount, context, _null, _null, C.FormatNumberType_0, true, _null, false)); t8 = this._widget.isFilter; return new G.ViewScaffold(t2, expenseCategory, new X.ScrollableListView(H.setRuntimeTypeInfo([t7, new G.ListDivider(_null), new O.EntitiesListTile(expenseCategory, C.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForExpenseCategory().call$2(t3, t6.$index(t5, t4).expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t8, false, _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new D._ExpenseCategoryViewState_build_closure(viewModel), _null, _null); } }; D._ExpenseCategoryViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; L.ExpenseCategoryViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.ExpenseCategoryViewScreen_build_closure(this), new L.ExpenseCategoryViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseCategoryViewVM); } }; L.ExpenseCategoryViewScreen_build_closure0.prototype = { call$1: function(store) { return L.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore(store); }, $signature: 2263 }; L.ExpenseCategoryViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new D.ExpenseCategoryView(vm, this.$this.isFilter, null); }, $signature: 2264 }; L.ExpenseCategoryViewVM.prototype = { get$expenseCategory: function() { return this.expenseCategory; }, get$company: function() { return this.company; } }; L.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/expense_category")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Q.GroupEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new Q._GroupEditState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; Q._GroupEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = _this._group_edit$_nameController, t2 = H.setRuntimeTypeInfo([t1, _this._group_edit$_custom1Controller, _this._group_edit$_custom2Controller], type$.JSArray_legacy_TextEditingController); _this._group_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new Q._GroupEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.group.name); C.JSArray_methods.forEach$1(_this._group_edit$_controllers, new Q._GroupEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._group_edit$_controllers, new Q._GroupEditState_dispose_closure(this)); this.super$State$dispose(0); }, _group_edit$_onChanged$0: function() { var _this = this, group = _this._widget.viewModel.group.rebuild$1(new Q._GroupEditState__onChanged_closure(_this)); if (!J.$eq$(group, _this._widget.viewModel.group)) _this._group_edit$_debouncer.run$1(new Q._GroupEditState__onChanged_closure0(_this, group)); }, build$1: function(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), group = viewModel.group; if (group.get$isNew()) t2 = t1.get$newGroup(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_group"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new Q._GroupEditState_build_closure(this, t1, viewModel), _null), $.$get$_GroupEditState__formKey()), _null, group, _null, false, _null, new Q._GroupEditState_build_closure0(viewModel), new Q._GroupEditState_build_closure1(this, viewModel), _null, t2); } }; Q._GroupEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_group_edit$_onChanged()); }, $signature: 27 }; Q._GroupEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_group_edit$_onChanged()), false); return null; }, $signature: 27 }; Q._GroupEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_group_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; Q._GroupEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._group_edit$_nameController._change_notifier$_value.text); b.get$_group_model$_$this()._group_model$_name = t1; return b; }, $signature: 376 }; Q._GroupEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.group); }, $signature: 1 }; Q._GroupEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; Q._GroupEditState_build_closure1.prototype = { call$1: function(context) { var isValid = $.$get$_GroupEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new Q._GroupEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; Q._GroupEditState_build__closure.prototype = { call$0: function() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; Q._GroupEditState_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = this.localization, t2 = t1.get$name(t1), t3 = this.$this, t4 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, t3.autoValidate, t3._group_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, this.viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new Q._GroupEditState_build__closure0(t1))], t4), _null, 4, false, _null, false, _null)], t4), _null, _null, false, _null); }, $signature: 140 }; Q._GroupEditState_build__closure0.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; A.GroupEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.GroupEditScreen_build_closure(), new A.GroupEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupEditVM); } }; A.GroupEditScreen_build_closure0.prototype = { call$1: function(store) { return A.GroupEditVM_GroupEditVM$fromStore(store); }, $signature: 2265 }; A.GroupEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Q.GroupEdit(viewModel, new D.ValueKey(viewModel.group.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2266 }; A.GroupEditVM.prototype = { get$group: function() { return this.group; }, get$company: function() { return this.company; } }; A.GroupEditVM_GroupEditVM$fromStore_closure.prototype = { call$1: function(group) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateGroup(group)); }, $signature: 222 }; A.GroupEditVM_GroupEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, Q.GroupEntity_GroupEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; A.GroupEditVM_GroupEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.GroupEditVM_GroupEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.GroupEditVM_GroupEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, group = t1.get$_store$_state().uiState.groupUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_GroupEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_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: 31 }; A.GroupEditVM_GroupEditVM$fromStore___closure.prototype = { call$1: function(savedGroup) { var _this = this, _s29_ = "/settings/group_settings_view", t1 = _this.group, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_group"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_group"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s29_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s29_, t1, t1); } else t2.pop$1(0, savedGroup); } else M.viewEntity(false, savedGroup, null, true); }, $signature: 222 }; A.GroupEditVM_GroupEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new A.GroupEditVM_GroupEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.GroupEditVM_GroupEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; T.GroupListItem.prototype = { build$1: function(_, context) { var filterMatch, t2, t3, t4, t5, t6, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = _this.filter; if (t1 != null && t1.length !== 0) { _this.group.toString; filterMatch = A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), t1); } else filterMatch = _null; t1 = store.get$_store$_state().uiState.groupUIState.listUIState.selectedIds; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.group; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new T.GroupListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new T.GroupListItem_build_closure0(_this, context), new T.GroupListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t6, new L.EntityStateLabel(t2, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t4, _null), false, true, true, _null); }, get$user: function() { return this.user; }, get$group: function() { return this.group; } }; T.GroupListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.group, false, false); return t1; }, $signature: 0 }; T.GroupListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.group, false, true); return t1; }, $signature: 0 }; T.GroupListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; Y.GroupListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.GroupListBuilder_build_closure(), Y.group_list_vm_GroupListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupListVM); } }; Y.GroupListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return S.EntityList$(viewModel.groupList, C.EntityType_group, new Y.GroupListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2267 }; Y.GroupListBuilder_build__closure.prototype = { call$2: function(context, index) { var t4, t1 = this.viewModel, groupId = J.$index$asx(t1.groupList, index), group = J.$index$asx(t1.groupMap._map$_map, groupId), t2 = t1.state.getUIState$1(C.EntityType_group).get$listUIState().selectedIds, t3 = t1.userCompany.user; if (t2 != null) { t4 = group.id; t2 = J.contains$1$asx(t2._list, t4); } else t2 = false; return new T.GroupListItem(t3, group, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2268 }; Y.GroupListVM.prototype = {}; Y.GroupListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; Y.GroupListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Y.GroupListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortGroups(field)); }, $signature: 5 }; Y.GroupListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearGroupMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; K.GroupSettingsScreen.prototype = { build$1: function(_, context) { var t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, t3 = t2.groupUIState.listUIState, t4 = "__filter_" + t3.filterClearedAt + "__", t5 = this.viewModel.groupList; t3 = t3.filter; t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_group, false, C.List_empty14, new K.GroupSettingsScreen_build_closure(store), _null, _null, _null, _null, new K.GroupSettingsScreen_build_closure0(store), new K.GroupSettingsScreen_build_closure1(store), _null, H.setRuntimeTypeInfo(["name"], type$.JSArray_legacy_String), C.List_empty15, _null); if (state.prefState.appLayout === C.AppLayout_mobile) { t7 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t7._list, t2).userCompany.can$2(C.UserPermission_create, C.EntityType_group); } else t2 = false; t1 = t2 ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "group_fab", false, new K.GroupSettingsScreen_build_closure2(context), t1.get$newGroup()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_group, t3, new K.GroupSettingsScreen_build_closure3(store), t5, new D.ValueKey(t4, type$.ValueKey_legacy_String)), new Y.GroupListBuilder(_null), t6, C.EntityType_group, t1, 0, _null, new K.GroupSettingsScreen_build_closure4(store), new K.GroupSettingsScreen_build_closure5(store)); } }; K.GroupSettingsScreen_build_closure5.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.StartGroupMultiselect()); }, $signature: 9 }; K.GroupSettingsScreen_build_closure3.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterGroups(value)); }, $signature: 7 }; K.GroupSettingsScreen_build_closure4.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.groupUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearGroupMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartGroupMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.GroupSettingsScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortGroups(value)); }, $signature: 5 }; K.GroupSettingsScreen_build_closure1.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterGroupsByState(state)); }, $signature: 53 }; K.GroupSettingsScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.groupUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearGroupMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartGroupMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.GroupSettingsScreen_build_closure2.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_group); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S.GroupScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.GroupScreenBuilder_build_closure(), S.group_screen_vm_GroupScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupScreenVM); } }; S.GroupScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new K.GroupSettingsScreen(vm, null); }, $signature: 2269 }; S.GroupScreenVM.prototype = {}; E.GroupView.prototype = { createState$0: function() { return new E._GroupViewState(null, C._StateLifecycle_0); } }; E._GroupViewState.prototype = { initState$0: function() { this.super$State$initState(); this._group_view$_controller = U.TabController$(0, 2, this); }, dispose$0: function(_) { this._group_view$_controller.dispose$0(0); this.super$__GroupViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, state = viewModel.state, group = viewModel.group, documents = group.documents; t2 = t2.isFilter; t3 = _this._group_view$_controller; t4 = E.Tab$(_null, t1.get$overview()); t5 = documents._list; t6 = J.getInterceptor$asx(t5); t7 = type$.JSArray_legacy_Widget; t6 = E.TabBar$(t3, _null, false, _null, _null, H.setRuntimeTypeInfo([t4, E.Tab$(_null, t6.get$isEmpty(t5) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t6.get$length(t5)) + ")")], t7)); t4 = _this._group_view$_controller; t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "configure_settings"); if (t3 == null) t3 = ""; t8 = _this._widget.isFilter; t9 = t1.get$clients(t1); t10 = $.$get$memoizedClientStatsForGroup(); t11 = state.uiState.selectedCompanyIndex; return new G.ViewScaffold(t2, group, E.TabBarView$(H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_0_16_16, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t3.toUpperCase(), new E._GroupViewState_build_closure(context, group), _null, _null), _null), new G.ListDivider(_null), new O.EntitiesListTile(group, C.EntityType_client, t9, t10.call$2(J.$index$asx(state.userCompanyStates._list, t11).clientState.map, group.id).present$2(t1.get$active(t1), t1.get$archived()), t8, false, _null), new G.ListDivider(_null), new E.SettingsViewer(group.settings, state, _null)], t7), _null, _null, false, _null), new V.DocumentGrid(new Q.CopyOnWriteList(true, t5, H._instanceType(documents)._eval$1("CopyOnWriteList<1>")), new E._GroupViewState_build_closure0(viewModel, context), new E._GroupViewState_build_closure1(viewModel, context), _null, _null)], t7), t4, _null), new E._GroupViewState_build_closure2(viewModel), t6, _null); } }; E._GroupViewState_build_closure2.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; E._GroupViewState_build_closure.prototype = { call$0: function() { return Q.handleGroupAction(this.context, H.setRuntimeTypeInfo([this.group], type$.JSArray_legacy_BaseEntity), C.EntityAction_settings); }, $signature: 0 }; E._GroupViewState_build_closure0.prototype = { call$1: function(path) { return this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; E._GroupViewState_build_closure1.prototype = { call$3: function($document, password, idToken) { return this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; E.SettingsViewer.prototype = { build$1: function(_, context) { var t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t44, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t62, t63, t64, t65, t66, t67, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t86, t87, t88, t89, t90, t91, t92, t93, t94, t95, t96, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t213, t214, t215, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.state, staticState = t2.staticState, t3 = t1.get$name(t1), t4 = this.settings, t5 = t4.name, t6 = t1.get$address(), t7 = t4.address1, t8 = t7 != null && t7.length !== 0 ? Y.formatAddress("\n", false, t4) : _null, t9 = t1.get$phone(t1), t10 = t4.phone, t11 = t1.get$email(), t12 = t4.email, t13 = t1.get$logo(), t14 = t4.companyLogo; t14 = t14 != null && t14.length !== 0 ? t1.get$enabled(t1) : _null; t15 = t1.get$idNumber(); t16 = t4.idNumber; t17 = t1.get$vatNumber(); t18 = t4.vatNumber; t19 = t1.get$website(); t20 = t4.website; t21 = t1.get$address1(); t22 = t1.get$address2(); t23 = t4.address2; t24 = t1.get$city(t1); t25 = t4.city; t26 = t1.get$state(t1); t27 = t4.state; t28 = t1.get$country(t1); t29 = t4.countryId; if (t29 != null) { t29 = J.$index$asx(staticState.countryMap._map$_map, t29); t29 = t29 == null ? _null : t29.name; } else t29 = _null; t30 = t1.get$postalCode(t1); t31 = t4.postalCode; t32 = t1.get$pageSize(); t33 = t4.pageSize; t34 = t1.get$fontSize(t1); t35 = t4.fontSize; t35 = t35 == null ? _null : C.JSInt_methods.toString$0(t35); t36 = t1.get$primaryColor(); t37 = t4.primaryColor; t38 = t1.get$secondaryColor(); t39 = t4.secondaryColor; t40 = t1.get$primaryFont(); t41 = t4.primaryFont; t42 = t1.get$secondaryFont(); t43 = t4.secondaryFont; t44 = t1.localeCode; t45 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "hide_paid_to_date"); if (t45 == null) t45 = ""; t46 = t4.hidePaidToDate; t46 = t46 == null ? _null : C.JSBool_methods.toString$0(t46); t47 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "invoice_embed_documents"); if (t47 == null) t47 = ""; t48 = t4.embedDocuments; t48 = t48 == null ? _null : C.JSBool_methods.toString$0(t48); t49 = t1.get$timezone(); t50 = t4.timezoneId; if (t50 != null && t50.length !== 0) { t50 = J.$index$asx(staticState.timezoneMap._map$_map, t50); t50 = t50 == null ? _null : t50.name; } else t50 = _null; t51 = t1.get$dateFormat(); t52 = t4.dateFormatId; if (t52 != null && t52.length !== 0) { t52 = J.$index$asx(staticState.dateFormatMap._map$_map, t52); t52 = t52 == null ? _null : t52.format; } else t52 = _null; t53 = t1.get$militaryTime(); t54 = t4.enableMilitaryTime; if (t54 === true) t54 = t1.get$enabled(t1); else t54 = t54 === false ? t1.get$disabled(t1) : _null; t55 = t1.get$language(t1); t56 = t4.languageId; if (t56 != null && t56.length !== 0) { t56 = J.$index$asx(staticState.languageMap._map$_map, t56); t56 = t56 == null ? _null : t56.name; } else t56 = _null; t57 = t1.get$currency(); t58 = t4.currencyId; if (t58 != null && t58.length !== 0) { t58 = J.$index$asx(staticState.currencyMap._map$_map, t58); t58 = t58 == null ? _null : t58.name; } else t58 = _null; t59 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "send_reminders"); if (t59 == null) t59 = ""; t60 = t4.sendReminders; if (t60 === true) t60 = t1.get$enabled(t1); else t60 = t60 === false ? t1.get$disabled(t1) : _null; t61 = t1.get$clientPortal(); t62 = t4.enablePortal; t63 = t62 === true; if (t63) t64 = t1.get$enabled(t1); else t64 = t62 === false ? t1.get$disabled(t1) : _null; t65 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "client_portal_tasks"); if (t65 == null) t65 = ""; if (t63) t66 = t1.get$enabled(t1); else t66 = t62 === false ? t1.get$disabled(t1) : _null; t67 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "client_portal_dashboard"); if (t67 == null) t67 = ""; if (t63) t62 = t1.get$enabled(t1); else t62 = t62 === false ? t1.get$disabled(t1) : _null; t63 = t1.get$paymentType(); t68 = t4.defaultPaymentTypeId; if (t68 != null && t68.length !== 0) { t68 = J.$index$asx(staticState.paymentTypeMap._map$_map, t68); t68 = t68 == null ? _null : t68.name; } else t68 = _null; t69 = t1.get$emailSignature(); t70 = t4.emailSignature; t71 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_style"); if (t71 == null) t71 = ""; t72 = t4.emailStyle; t73 = t1.get$replyToEmail(); t74 = t4.replyToEmail; t75 = t1.get$bccEmail(); t76 = t4.bccEmail; t77 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_value1"); if (t77 == null) t77 = ""; t78 = t4.customValue1; t79 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_value2"); if (t79 == null) t79 = ""; t80 = t4.customValue2; t81 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_value3"); if (t81 == null) t81 = ""; t82 = t4.customValue3; t83 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_value4"); if (t83 == null) t83 = ""; t84 = t4.customValue4; t85 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "payment_terms"); if (t85 == null) t85 = ""; t86 = t4.companyGatewayIds; if (t86 != null) { t87 = t2.uiState.selectedCompanyIndex; t86 = J.$index$asx(J.$index$asx(t2.userCompanyStates._list, t87).companyGatewayState.map._map$_map, t86); t2 = t86 == null ? _null : t86.get$listDisplayName(); } else t2 = _null; t86 = t1.get$taskRate(); t87 = t4.defaultTaskRate; t87 = t87 == null ? _null : C.JSNumber_methods.toString$0(t87); t88 = t1.get$attachPdf(); t89 = t4.pdfEmailAttachment; t89 = t89 == null ? _null : C.JSBool_methods.toString$0(t89); t90 = t1.get$attachUbl(); t91 = t4.ublEmailAttachment; t91 = t91 == null ? _null : C.JSBool_methods.toString$0(t91); t92 = t1.get$attachDocuments(); t93 = t4.documentEmailAttachment; t94 = t93 == null; t95 = t94 ? _null : C.JSBool_methods.toString$0(t93); t96 = t1.get$attachDocuments(); t93 = t94 ? _null : C.JSBool_methods.toString$0(t93); t94 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_style_custom"); if (t94 == null) t94 = ""; t97 = t4.emailStyleCustom; if (t97 == null) t97 = _null; t98 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_subject_invoice"); if (t98 == null) t98 = ""; t99 = t4.emailSubjectInvoice; if (t99 == null) t99 = _null; t100 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_subject_quote"); if (t100 == null) t100 = ""; t101 = t4.emailSubjectQuote; if (t101 == null) t101 = _null; t102 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_subject_payment"); if (t102 == null) t102 = ""; t103 = t4.emailSubjectPayment; t104 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "email_subject_payment_partial"); if (t104 == null) t104 = ""; t105 = t4.emailSubjectPaymentPartial; t106 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_message_dashboard"); if (t106 == null) t106 = ""; t107 = t4.customMessageDashboard; if (t107 == null) t107 = _null; t108 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_message_unpaid_invoice"); if (t108 == null) t108 = ""; t109 = t4.customMessageUnpaidInvoice; if (t109 == null) t109 = _null; t110 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_message_paid_invoice"); if (t110 == null) t110 = ""; t111 = t4.customMessagePaidInvoice; if (t111 == null) t111 = _null; t112 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "custom_message_unapproved_quote"); if (t112 == null) t112 = ""; t113 = t4.customMessageUnapprovedQuote; if (t113 == null) t113 = _null; t114 = t1.get$autoArchiveInvoice(); t115 = t4.autoArchiveInvoice; t115 = t115 == null ? _null : C.JSBool_methods.toString$0(t115); t116 = t1.get$autoArchiveQuote(); t117 = t4.autoArchiveQuote; t117 = t117 == null ? _null : C.JSBool_methods.toString$0(t117); t118 = t1.get$autoEmailInvoice(); t119 = t4.autoEmailInvoice; t119 = t119 == null ? _null : C.JSBool_methods.toString$0(t119); t120 = t1.get$autoConvertQuote(); t121 = t4.autoConvertQuote; t121 = t121 == null ? _null : C.JSBool_methods.toString$0(t121); t122 = t1.get$inclusiveTaxes(); t123 = t4.enableInclusiveTaxes; t123 = t123 == null ? _null : C.JSBool_methods.toString$0(t123); t124 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "translations"); if (t124 == null) t124 = ""; t125 = t4.translations; t125 = t125 == null ? _null : t125.get$keys(t125); t125 = t125 == null ? _null : J.join$1$ax(t125, ", "); t126 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "task_number_pattern"); if (t126 == null) t126 = ""; t127 = t4.taskNumberPattern; t128 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "task_number_counter"); if (t128 == null) t128 = ""; t129 = t4.taskNumberCounter; t129 = t129 == null ? _null : C.JSInt_methods.toString$0(t129); t130 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "expense_number_pattern"); if (t130 == null) t130 = ""; t131 = t4.expenseNumberPattern; t132 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "expense_number_counter"); if (t132 == null) t132 = ""; t133 = t4.expenseNumberCounter; t133 = t133 == null ? _null : C.JSInt_methods.toString$0(t133); t134 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "vendor_number_pattern"); if (t134 == null) t134 = ""; t135 = t4.vendorNumberPattern; t136 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "vendor_number_counter"); if (t136 == null) t136 = ""; t137 = t4.vendorNumberCounter; t137 = t137 == null ? _null : C.JSInt_methods.toString$0(t137); t138 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "ticket_number_pattern"); if (t138 == null) t138 = ""; t139 = t4.ticketNumberPattern; t140 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "ticket_number_counter"); if (t140 == null) t140 = ""; t141 = t4.ticketNumberCounter; t141 = t141 == null ? _null : C.JSInt_methods.toString$0(t141); t142 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "payment_number_pattern"); if (t142 == null) t142 = ""; t143 = t4.paymentNumberPattern; t144 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "payment_number_counter"); if (t144 == null) t144 = ""; t145 = t4.paymentNumberCounter; t145 = t145 == null ? _null : C.JSInt_methods.toString$0(t145); t146 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "invoice_number_pattern"); if (t146 == null) t146 = ""; t147 = t4.invoiceNumberPattern; t148 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "invoice_number_counter"); if (t148 == null) t148 = ""; t149 = t4.invoiceNumberCounter; t149 = t149 == null ? _null : C.JSInt_methods.toString$0(t149); t150 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "quote_number_pattern"); if (t150 == null) t150 = ""; t151 = t4.quoteNumberPattern; t152 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "quote_number_counter"); if (t152 == null) t152 = ""; t153 = t4.quoteNumberCounter; t153 = t153 == null ? _null : C.JSInt_methods.toString$0(t153); t154 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "client_number_pattern"); if (t154 == null) t154 = ""; t155 = t4.clientNumberPattern; t156 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "client_number_counter"); if (t156 == null) t156 = ""; t157 = t4.clientNumberCounter; t157 = t157 == null ? _null : C.JSInt_methods.toString$0(t157); t158 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "credit_number_pattern"); if (t158 == null) t158 = ""; t159 = t4.creditNumberPattern; t160 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "credit_number_counter"); if (t160 == null) t160 = ""; t161 = t4.creditNumberCounter; t161 = t161 == null ? _null : C.JSInt_methods.toString$0(t161); t162 = t1.get$recurringPrefix(); t163 = t4.recurringNumberPrefix; if (t163 == null) t163 = _null; t164 = t1.get$resetCounter(); t165 = t4.resetCounterFrequencyId; if (t165 == null) t165 = _null; t166 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "reset_counter_date"); if (t166 == null) t166 = ""; t167 = t4.resetCounterDate; if (t167 == null) t167 = _null; t168 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "counter_padding"); if (t168 == null) t168 = ""; t169 = t4.counterPadding; t169 = t169 == null ? _null : C.JSInt_methods.toString$0(t169); t170 = t1.get$sharedInvoiceQuoteCounter(); t171 = t4.sharedInvoiceQuoteCounter; t171 = t171 == null ? _null : C.JSBool_methods.toString$0(t171); t172 = t1.get$sharedInvoiceCreditCounter(); t173 = t4.sharedInvoiceCreditCounter; t173 = t173 == null ? _null : C.JSBool_methods.toString$0(t173); t174 = t1.get$invoiceTerms(); t175 = t4.defaultInvoiceTerms; t176 = t1.get$quoteTerms(); t177 = t4.defaultQuoteTerms; t178 = t1.get$quoteFooter(); t179 = t4.defaultQuoteFooter; t180 = t1.get$creditTerms(); t181 = t4.defaultCreditTerms; t182 = t1.get$creditFooter(); t183 = t4.defaultCreditFooter; t184 = t1.get$invoiceFooter(); t185 = t4.defaultInvoiceFooter; if (t185 == null) t185 = _null; t186 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_name_1"); if (t186 == null) t186 = ""; t187 = t4.defaultTaxName1; if (t187 == null) t187 = _null; t188 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_rate_1"); if (t188 == null) t188 = ""; t189 = t4.defaultTaxRate1; t189 = t189 == null ? _null : C.JSNumber_methods.toString$0(t189); t190 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_name_2"); if (t190 == null) t190 = ""; t191 = t4.defaultTaxName2; if (t191 == null) t191 = _null; t192 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_rate_2"); if (t192 == null) t192 = ""; t193 = t4.defaultTaxRate2; t193 = t193 == null ? _null : C.JSNumber_methods.toString$0(t193); t194 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_name_3"); if (t194 == null) t194 = ""; t195 = t4.defaultTaxName3; if (t195 == null) t195 = _null; t196 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "default_tax_rate_3"); if (t196 == null) t196 = ""; t197 = t4.defaultTaxRate3; t197 = t197 == null ? _null : C.JSNumber_methods.toString$0(t197); t198 = t1.get$enablePortalPassword(); t199 = t4.enablePortalPassword; t199 = t199 == null ? _null : C.JSBool_methods.toString$0(t199); t200 = t1.get$signatureOnPdf(); t201 = t4.signatureOnPdf; t201 = t201 == null ? _null : C.JSBool_methods.toString$0(t201); t202 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "enable_email_markup"); if (t202 == null) t202 = ""; t203 = t4.enableEmailMarkup; t203 = t203 == null ? _null : C.JSBool_methods.toString$0(t203); t204 = t1.get$showAcceptInvoiceTerms(); t205 = t4.showAcceptInvoiceTerms; t205 = t205 == null ? _null : C.JSBool_methods.toString$0(t205); t206 = t1.get$showAcceptQuoteTerms(); t207 = t4.showAcceptQuoteTerms; t207 = t207 == null ? _null : C.JSBool_methods.toString$0(t207); t208 = t1.get$requireInvoiceSignature(); t209 = t4.requireInvoiceSignature; t209 = t209 == null ? _null : C.JSBool_methods.toString$0(t209); t210 = t1.get$requireQuoteSignature(); t211 = t4.requireQuoteSignature; t211 = t211 == null ? _null : C.JSBool_methods.toString$0(t211); t212 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "all_pages_header"); if (t212 == null) t212 = ""; t213 = t4.allPagesHeader; t213 = t213 == null ? _null : C.JSBool_methods.toString$0(t213); t44 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t44), "all_pages_footer"); if (t44 == null) t44 = ""; t214 = t4.allPagesFooter; t214 = t214 == null ? _null : C.JSBool_methods.toString$0(t214); t215 = type$.legacy_String; return new T.FieldGrid(P.LinkedHashMap_LinkedHashMap$_literal([t3, t5, t6, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t7, t22, t23, t24, t25, t26, t27, t28, t29, t30, t31, t32, t33, t34, t35, t36, t37, t38, t39, t40, t41, t42, t43, t45, t46, t47, t48, t49, t50, t51, t52, t53, t54, t55, t56, t57, t58, t59, t60, t61, t64, t65, t66, t67, t62, t63, t68, t69, t70, t71, t72, t73, t74, t75, t76, t77, t78, t79, t80, t81, t82, t83, t84, t85, t2, t86, t87, t88, t89, t90, t91, t92, t95, t96, t93, t94, t97, t98, t99, t100, t101, t102, t103, t104, t105, t106, t107, t108, t109, t110, t111, t112, t113, t114, t115, t116, t117, t118, t119, t120, t121, t122, t123, t124, t125, t126, t127, t128, t129, t130, t131, t132, t133, t134, t135, t136, t137, t138, t139, t140, t141, t142, t143, t144, t145, t146, t147, t148, t149, t150, t151, t152, t153, t154, t155, t156, t157, t158, t159, t160, t161, t162, t163, t164, t165, t166, t167, t168, t169, t170, t171, t172, t173, t174, t175, t176, t177, t178, t179, t180, t181, t182, t183, t184, t185, t186, t187, t188, t189, t190, t191, t192, t193, t194, t195, t196, t197, t198, t199, t200, t201, t202, t203, t204, t205, t206, t207, t208, t209, t210, t211, t212, t213, t44, t214, t1.get$lockInvoices(), t1.lookup$1(t4.lockInvoices)], t215, t215), _null); } }; E.__GroupViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.GroupViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.GroupViewScreen_build_closure(this), new A.GroupViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GroupViewVM); } }; A.GroupViewScreen_build_closure0.prototype = { call$1: function(store) { return A.GroupViewVM_GroupViewVM$fromStore(store); }, $signature: 2270 }; A.GroupViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.GroupView(vm, this.$this.isFilter, null); }, $signature: 2271 }; A.GroupViewVM.prototype = { get$group: function() { return this.group; }, get$company: function() { return this.company; } }; A.GroupViewVM_GroupViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/group_settings")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.GroupViewVM_GroupViewVM$fromStore_closure0.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveGroupDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.group)); t1.then$1$1(0, new A.GroupViewVM_GroupViewVM$fromStore__closure0(context), type$.Null).catchError$1(new A.GroupViewVM_GroupViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; A.GroupViewVM_GroupViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; A.GroupViewVM_GroupViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new A.GroupViewVM_GroupViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.GroupViewVM_GroupViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; A.GroupViewVM_GroupViewVM$fromStore_closure1.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.GroupViewVM_GroupViewVM$fromStore__closure(t2, this.group), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; A.GroupViewVM_GroupViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadGroup(null, this.group.id)); }, $signature: 95 }; F.InvoiceEdit.prototype = { createState$0: function() { return new F._InvoiceEditState(null, C._StateLifecycle_0); } }; F._InvoiceEditState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._invoice_edit$_controller = U.TabController$(_this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._invoice_edit$_controller.animateTo$1(2); }, dispose$0: function(_) { this._invoice_edit$_controller.dispose$0(0); this.super$__InvoiceEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _invoice_edit$_onSavePressed$2: function(context, action) { if (!$.$get$_InvoiceEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _invoice_edit$_onSavePressed$1: function(context) { return this._invoice_edit$_onSavePressed$2(context, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice); if (invoice.get$isNew()) t2 = t1.get$newInvoice(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_invoice"); if (t2 == null) t2 = ""; } t3 = H.setRuntimeTypeInfo([C.EntityAction_viewPdf, C.EntityAction_emailInvoice], type$.JSArray_legacy_EntityAction); t4 = invoice.statusId; if (t4 === "1") t3.push(C.EntityAction_markSent); if (t4 !== "4") t3.push(C.EntityAction_markPaid); t4 = type$.JSArray_legacy_Widget; t5 = E.TabBar$(_this._invoice_edit$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$items(t1)), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$pdf())], t4)); t6 = $.$get$_InvoiceEditState__formKey(); if (isFullscreen) t4 = new L.InvoiceEditDetailsScreen(_this._widget.viewModel, _null); else { t7 = "__invoice_" + invoice.id + "_" + invoice.updatedAt + "__"; t8 = _this._invoice_edit$_controller; t9 = _this._widget.viewModel; t7 = E.TabBarView$(H.setRuntimeTypeInfo([new L.InvoiceEditDetailsScreen(t9, _null), new X.InvoiceEditContactsScreen(invoice.entityType, _null), new O.InvoiceEditItemsScreen(t9, false, _null), new E.InvoiceEditNotesScreen(_null), new B.InvoiceEditPDFScreen(_null)], t4), t8, new D.ValueKey(t7, type$.ValueKey_legacy_String)); t4 = t7; } return K.EditScaffold$(t3, t5, A.Form$(false, t4, t6), new K.InvoiceEditFooter(invoice, _null), invoice, E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, C.Icon_yXb, "invoice_edit_fab", false, new F._InvoiceEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new F._InvoiceEditState_build_closure0(_this), new F._InvoiceEditState_build_closure1(viewModel), new F._InvoiceEditState_build_closure2(_this), _null, t2); } }; F._InvoiceEditState_build_closure1.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; F._InvoiceEditState_build_closure2.prototype = { call$1: function(context) { return this.$this._invoice_edit$_onSavePressed$1(context); }, $signature: 29 }; F._InvoiceEditState_build_closure0.prototype = { call$2: function(context, action) { return this.$this._invoice_edit$_onSavePressed$2(context, action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 57 }; F._InvoiceEditState_build_closure.prototype = { call$0: function() { var _this = this; E.showDialog(true, new F._InvoiceEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F._InvoiceEditState_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.invoice, t2 = J.where$1$ax(t1.lineItems._list, new F._InvoiceEditState_build___closure()), t3 = _this.viewModel, t4 = t2.$ti._eval$1("MappedIterable<1,BaseEntity*>"); return new D.InvoiceItemSelector(new F._InvoiceEditState_build___closure0(_this.$this, t3, _this.isFullscreen), t1.clientId, P.List_List$of(new H.MappedIterable(t2, new F._InvoiceEditState_build___closure1(t3), t4), true, t4._eval$1("Iterable.E")), true, null); }, $signature: 311 }; F._InvoiceEditState_build___closure.prototype = { call$1: function(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 58 }; F._InvoiceEditState_build___closure1.prototype = { call$1: function(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskState.map; t1 = item.taskId; t1 = J.$index$asx(t2._map$_map, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map; t1 = item.expenseId; t1 = J.$index$asx(t2._map$_map, t1); } return t1; }, $signature: 288 }; F._InvoiceEditState_build___closure0.prototype = { call$2: function(items, clientId) { this.viewModel.onItemsAdded.call$2(items, clientId); if (!this.isFullscreen) this.$this._invoice_edit$_controller.animateTo$1(2); }, call$1: function(items) { return this.call$2(items, null); }, $signature: 249 }; F.__InvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; L.InvoiceEditContacts.prototype = { build$1: function(_, context) { var contacts, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.viewModel, invoice = t2.invoice, client = t2.client; if (client == null) if (t2.state.prefState.appLayout === C.AppLayout_desktop) contacts = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ContactEntity); else return new U.HelpText(t1.get$noClientSelected(), _null); else { t1 = client.contacts; contacts = new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")); contacts.sort$1(0, new L.InvoiceEditContacts_build_closure()); } return new X.ScrollableListView(J.map$1$1$ax(contacts, new L.InvoiceEditContacts_build_closure0(this, invoice), type$.legacy__ContactListTile).toList$0(0), _null, _null, false, _null); } }; L.InvoiceEditContacts_build_closure.prototype = { call$2: function(contactA, contactB) { var t1 = contactA.sendEmail; if (t1 !== contactB.sendEmail) return t1 ? 1 : -1; else return C.JSString_methods.compareTo$1(contactA.get$fullName().toLowerCase(), contactB.get$fullName().toLowerCase()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2272 }; L.InvoiceEditContacts_build_closure0.prototype = { call$1: function(contact) { var t1 = this.invoice, invitation = t1.getInvitationForContact$1(contact); return new L._ContactListTile(t1, contact, invitation, new L.InvoiceEditContacts_build__closure(this.$this, invitation, contact), null); }, $signature: 2273 }; L.InvoiceEditContacts_build__closure.prototype = { call$0: function() { var t1 = this.invitation, t2 = this.$this.viewModel; return t1 == null ? t2.onAddContact.call$1(this.contact) : t2.onRemoveContact.call$1(t1); }, $signature: 9 }; L._ContactListTile.prototype = { build$1: function(_, context) { var _null = null, t1 = this.contact, t2 = L.Text$(t1.get$fullName().length !== 0 ? t1.get$fullName() : L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$blankContact(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = L.Text$(t1.email, _null, _null, _null, _null, _null, _null, _null, _null, _null); return Q.ListTile$(false, _null, _null, true, false, _null, new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, _null, new L._ContactListTile_build_closure(), false, this.invitation != null), _null), _null, this.onTap, false, _null, _null, t1, _null, t2, _null); }, get$invoice: function() { return this.invoice; }, get$contact: function() { return this.contact; } }; L._ContactListTile_build_closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; X.InvoiceEditContactsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.InvoiceEditContactsScreen_build_closure(), new X.InvoiceEditContactsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditContactsVM); } }; X.InvoiceEditContactsScreen_build_closure0.prototype = { call$1: function(store) { return X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore(store, this.$this.entityType); }, $signature: 2274 }; X.InvoiceEditContactsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new L.InvoiceEditContacts(viewModel, null); }, $signature: 2275 }; X.EntityEditContactsVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; X.InvoiceEditContactsVM.prototype = {}; X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure.prototype = { call$1: function(contact) { var t2, t3, invitation, _this = this, t1 = _this._box_0; if (!t1.entity.get$isNew()) { t2 = _this.state.getEntityMap$1(_this.entityType); t3 = t1.entity.id; invitation = type$.legacy_InvoiceEntity._as(J.$index$asx(t2._map$_map, t3)).getInvitationForContact$1(contact); } else invitation = null; t1 = t1.entity.entityType; if (t1 === C.EntityType_quote) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.AddQuoteContact(contact, invitation)); else if (t1 === C.EntityType_credit) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.AddCreditContact(contact, invitation)); else if (t1 === C.EntityType_recurringInvoice) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.AddRecurringInvoiceContact(contact, invitation)); else if (t1 === C.EntityType_invoice) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.AddInvoiceContact(contact, invitation)); else P.print("ERROR: entityType " + H.S(_this.entityType) + " not handled in invoice_edit_contacts_vm"); }, $signature: 554 }; X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0.prototype = { call$1: function(invitation) { var _this = this, t1 = _this._box_0.entity.entityType; if (t1 === C.EntityType_quote) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.RemoveQuoteContact(invitation)); else if (t1 === C.EntityType_credit) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.RemoveCreditContact(invitation)); else if (t1 === C.EntityType_recurringInvoice) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.RemoveRecurringInvoiceContact(invitation)); else if (t1 === C.EntityType_invoice) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.RemoveInvoiceContact(invitation)); else P.print("ERROR: entityType " + H.S(_this.entityType) + " not handled in invoice_edit_contacts_vm"); }, $signature: 2276 }; S.InvoiceEditDesktop.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new S.InvoiceEditDesktopState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), null, C._StateLifecycle_0); } }; S.InvoiceEditDesktopState.prototype = { initState$0: function() { var invoice, _this = this; _this.super$State$initState(); invoice = _this._widget.viewModel.invoice; _this._invoice_edit_desktop$_showTasksTable = invoice.get$hasTasks() && !invoice.get$hasProducts(); _this._invoice_edit_desktop$_focusNode = O.FocusScopeNode$(true, null, false); _this._optionTabController = U.TabController$(0, 5, _this); _this._tableTabController = U.TabController$(_this._invoice_edit_desktop$_showTasksTable ? 1 : 0, 2, _this); _this._invoice_edit_desktop$_scrollController = F.ScrollController$(null, 0); }, didChangeDependencies$0: function() { var invoice, _this = this, _null = null, t1 = _this._invoice_edit_desktop$_invoiceNumberController, t2 = _this._invoice_edit_desktop$_poNumberController, t3 = _this._invoice_edit_desktop$_discountController, t4 = _this._invoice_edit_desktop$_partialController, t5 = _this._invoice_edit_desktop$_custom1Controller, t6 = _this._invoice_edit_desktop$_custom2Controller, t7 = _this._invoice_edit_desktop$_custom3Controller, t8 = _this._invoice_edit_desktop$_custom4Controller, t9 = _this._invoice_edit_desktop$_surcharge1Controller, t10 = _this._invoice_edit_desktop$_surcharge2Controller, t11 = _this._invoice_edit_desktop$_surcharge3Controller, t12 = _this._invoice_edit_desktop$_surcharge4Controller, t13 = _this._invoice_edit_desktop$_publicNotesController, t14 = _this._invoice_edit_desktop$_privateNotesController, t15 = _this._invoice_edit_desktop$_termsController, t16 = _this._invoice_edit_desktop$_footerController, t17 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_desktop$_controllers = t17; C.JSArray_methods.forEach$1(t17, new S.InvoiceEditDesktopState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.number); t2.set$text(0, invoice.poNumber); t2 = invoice.discount; t1 = _this._framework$_element; t1.toString; t3.set$text(0, Y.formatNumber(t2, t1, _null, _null, C.FormatNumberType_4, true, _null, false)); t1 = invoice.partial; t2 = _this._framework$_element; t2.toString; t4.set$text(0, Y.formatNumber(t1, t2, _null, _null, C.FormatNumberType_4, true, _null, false)); t5.set$text(0, invoice.customValue1); t6.set$text(0, invoice.customValue2); t7.set$text(0, invoice.customValue3); t8.set$text(0, invoice.customValue4); t8 = invoice.customSurcharge1; t7 = _this._framework$_element; t7.toString; t9.set$text(0, Y.formatNumber(t8, t7, _null, _null, C.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge2; t8 = _this._framework$_element; t8.toString; t10.set$text(0, Y.formatNumber(t7, t8, _null, _null, C.FormatNumberType_4, true, _null, false)); t8 = invoice.customSurcharge3; t7 = _this._framework$_element; t7.toString; t11.set$text(0, Y.formatNumber(t8, t7, _null, _null, C.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge4; t8 = _this._framework$_element; t8.toString; t12.set$text(0, Y.formatNumber(t7, t8, _null, _null, C.FormatNumberType_4, true, _null, false)); t13.set$text(0, invoice.publicNotes); t14.set$text(0, invoice.privateNotes); t15.set$text(0, invoice.terms); t16.set$text(0, invoice.footer); C.JSArray_methods.forEach$1(_this._invoice_edit_desktop$_controllers, new S.InvoiceEditDesktopState_didChangeDependencies_closure0(_this)); _this.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._invoice_edit_desktop$_focusNode.dispose$0(0); _this._optionTabController.dispose$0(0); _this._tableTabController.dispose$0(0); C.JSArray_methods.forEach$1(_this._invoice_edit_desktop$_controllers, new S.InvoiceEditDesktopState_dispose_closure(_this)); _this._invoice_edit_desktop$_scrollController.dispose$0(0); _this.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$dispose(0); }, _invoice_edit_desktop$_onChanged$0: function() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new S.InvoiceEditDesktopState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_desktop$_debouncer.run$1(new S.InvoiceEditDesktopState__onChanged_closure0(_this, invoice)); }, build$1: function(_, context) { var originalInvoice, t7, t8, t9, countProducts, countTasks, t10, settings, terms, termsString, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _list, i, t22, t23, t24, i0, _this = this, _null = null, _s16_ = "__invoice_total_", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, company = viewModel.company, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), t5 = t4.$index(t3, t2).clientState, t6 = invoice.clientId, client = t5.$get$1(0, t6), entityType = invoice.entityType; t5 = invoice.id; originalInvoice = type$.legacy_InvoiceEntity._as(state.getEntity$2(entityType, t5)); t7 = invoice.lineItems._list; t8 = J.getInterceptor$ax(t7); t9 = t8.where$1(t7, new S.InvoiceEditDesktopState_build_closure()); countProducts = t9.get$length(t9); t9 = t8.where$1(t7, new S.InvoiceEditDesktopState_build_closure0()); countTasks = t9.get$length(t9); t9 = client.settings; t10 = t4.$index(t3, t2).groupState.$get$1(0, client.groupId).settings; settings = G.SettingsEntity_SettingsEntity(t9, t4.$index(t3, t2).userCompany.company.settings, t10); t9 = entityType === C.EntityType_quote; terms = t9 ? settings.defaultValidUntil : settings.defaultPaymentTerms; termsString = (terms == null ? "" : terms).length !== 0 ? t1.get$net() + " " + H.S(terms) : _null; t10 = _this._invoice_edit_desktop$_scrollController; t5 = "__invoice_" + t5 + "__"; t11 = type$.ValueKey_legacy_String; t12 = type$.JSArray_legacy_Widget; t13 = H.setRuntimeTypeInfo([], t12); if (invoice.get$isNew()) t13.push(R.ClientPicker$(t6, t4.$index(t3, t2).clientState, new S.InvoiceEditDesktopState_build_closure1(viewModel, context), new S.InvoiceEditDesktopState_build_closure2(viewModel, context, invoice))); else { t2 = new Q.EntityPresenter(); t2.entity = client; t2.context = context; t13.push(R.InkWell$(false, _null, true, new T.ConstrainedBox(new S.BoxConstraints(1 / 0, 1 / 0, 40, 1 / 0), new T.Padding(C.EdgeInsets_6_6_6_6, L.Text$(t2.title$0(0), _null, 2, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new S.InvoiceEditDesktopState_build_closure3(context, client), _null, _null, _null, _null, _null)); } t13.push(T.SizedBox$(_null, 8, _null)); t13.push(new T.ConstrainedBox(new S.BoxConstraints(0, 1 / 0, 0, 186), new X.InvoiceEditContactsScreen(entityType, _null), _null)); t2 = T.Expanded$(Y.FormCard$(_null, t13, C.CrossAxisAlignment_0, 4, false, _null, false, C.EdgeInsets_12_12_6_12), 1); t3 = H.setRuntimeTypeInfo([], t12); t4 = entityType === C.EntityType_recurringInvoice; if (t4) { t13 = t1.get$frequency(t1); t14 = invoice.frequencyId; t15 = C.Map_tOn4d.get$entries(C.Map_tOn4d); t15 = t15.map$1$1(t15, new S.InvoiceEditDesktopState_build_closure4(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t16 = type$.AppDropdownButton_legacy_String; t17 = invoice.lastSentDate; t17 = t17.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t18 = invoice.nextSendDate; t18 = K.DatePicker$(false, new P.DateTime(Date.now(), false), _null, t17, _null, new S.InvoiceEditDesktopState_build_closure5(viewModel, invoice), t18, _null); t17 = t1.get$remainingCycles(); t19 = invoice.remainingCycles; t20 = type$.legacy_int; t21 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), -1, t20)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(37, t20); for (i = 0; i < 37; ++i) _list[i] = i; t22 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t21, P.List_List$of(new H.MappedListIterable(_list, new S.InvoiceEditDesktopState_build_closure6(), t22), true, t22._eval$1("ListIterable.E"))); t22 = t1.get$dueDate(); t23 = invoice.dueDateDays; if (t23 == null) t23 = ""; t24 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$usePaymentTerms(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "terms", type$.legacy_String)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); _list = J.JSArray_JSArray$allocateGrowable(31, t20); for (i = 0; i < 31; i = i0) { i0 = i + 1; _list[i] = i0; } t20 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t24, P.List_List$of(new H.MappedListIterable(_list, new S.InvoiceEditDesktopState_build_closure7(t1), t20), true, t20._eval$1("ListIterable.E"))); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t13, t14, new S.InvoiceEditDesktopState_build_closure8(viewModel, invoice), t15, _null, true, "", _null, t16), t18, new Q.AppDropdownButton(t17, t19, new S.InvoiceEditDesktopState_build_closure9(viewModel, invoice), t21, _null, true, _null, _null, type$.AppDropdownButton_legacy_int), new Q.AppDropdownButton(t22, t23, new S.InvoiceEditDesktopState_build_closure10(viewModel, invoice), t24, _null, true, "", _null, t16)], t12)); } else { if (entityType === C.EntityType_credit) t13 = t1.get$creditDate(); else t13 = t9 ? t1.get$quoteDate() : t1.get$invoiceDate(); t13 = K.DatePicker$(false, _null, _null, t13, _null, new S.InvoiceEditDesktopState_build_closure11(viewModel, invoice), invoice.date, new S.InvoiceEditDesktopState_build_closure12(context)); t14 = "__terms_" + client.id + "__"; t15 = entityType === C.EntityType_invoice ? t1.get$dueDate() : t1.get$validUntil(); t15 = H.setRuntimeTypeInfo([t13, K.DatePicker$(false, _null, new D.ValueKey(t14, t11), t15, termsString, new S.InvoiceEditDesktopState_build_closure13(viewModel, invoice), invoice.dueDate, _null), S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_partialController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$partialDeposit(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new S.InvoiceEditDesktopState_build_closure14(_this, invoice, state, t1))], t12); t13 = invoice.partial; if (t13 > 0) t15.push(K.DatePicker$(false, _null, _null, t1.get$partialDueDate(), _null, new S.InvoiceEditDesktopState_build_closure15(viewModel, invoice), invoice.partialDueDate, _null)); C.JSArray_methods.addAll$1(t3, t15); } t13 = invoice.customValue1; t3.push(new B.CustomField(_this._invoice_edit_desktop$_custom1Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice1", t13, false, _null)); t13 = invoice.customValue3; t3.push(new B.CustomField(_this._invoice_edit_desktop$_custom3Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice3", t13, false, _null)); t3 = T.Expanded$(Y.FormCard$(_null, t3, _null, 4, false, _null, false, C.EdgeInsets_6_12_6_12), 1); t13 = entityType === C.EntityType_credit; if (t13) t14 = t1.get$creditNumber(); else t14 = t9 ? t1.get$quoteNumber() : t1.get$invoiceNumber(); t14 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_invoiceNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t14, _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new S.InvoiceEditDesktopState_build_closure16(invoice, originalInvoice, context)), S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_poNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$poNumber(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null), new L.DiscountField(_this._invoice_edit_desktop$_discountController, invoice.discount, invoice.isAmountDiscount, new S.InvoiceEditDesktopState_build_closure17(viewModel, invoice), _null, _null)], t12); if (t4) { t15 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t14.push(new Q.AppDropdownButton(t1.get$autoBill(), invoice.autoBill, new S.InvoiceEditDesktopState_build_closure18(viewModel, invoice), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new S.InvoiceEditDesktopState_build_closure19(t1), t15), true, t15._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)); } t15 = invoice.customValue2; t14.push(new B.CustomField(_this._invoice_edit_desktop$_custom2Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice2", t15, false, _null)); t15 = invoice.customValue4; t14.push(new B.CustomField(_this._invoice_edit_desktop$_custom4Controller, _null, _this._widget.entityViewModel.onSavePressed, "invoice4", t15, false, _null)); t14 = H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t2, t3, T.Expanded$(Y.FormCard$(_null, t14, _null, 4, false, _null, false, C.EdgeInsets_6_12_12_12), 1)], t12), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t12); t2 = entityType === C.EntityType_invoice; if (t2) if (!invoice.get$hasTasks()) if (!t8.any$1(t7, new S.InvoiceEditDesktopState_build_closure20())) t3 = company.showTasksTable; else t3 = true; else t3 = true; else t3 = false; if (t3) { t3 = _this._tableTabController; t7 = L.Icon$(Q.getEntityIcon(C.EntityType_product), _null, _null); t8 = T.SizedBox$(_null, _null, 8); t15 = t1.get$products(); t7 = E.Tab$(T.Row$(H.setRuntimeTypeInfo([t7, t8, L.Text$(t15 + (countProducts > 0 ? " (" + countProducts + ")" : ""), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t12), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null); t8 = L.Icon$(Q.getEntityIcon(C.EntityType_task), _null, _null); t15 = T.SizedBox$(_null, _null, 8); t16 = t1.get$tasks(); t14.push(new T.Padding(C.EdgeInsets_18_0_18_0, new R.AppTabBar(H.setRuntimeTypeInfo([t7, E.Tab$(T.Row$(H.setRuntimeTypeInfo([t8, t15, L.Text$(t16 + (countTasks > 0 ? " (" + countTasks + ")" : ""), _null, _null, _null, _null, _null, _null, _null, _null, _null)], t12), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null)], t12), t3, false, new S.InvoiceEditDesktopState_build_closure21(_this), _null), _null)); } if (t13) t14.push(new R.CreditEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else if (t9) t14.push(new T.QuoteEditItemsScreen(_this._widget.entityViewModel, _null)); else if (t2) t14.push(new O.InvoiceEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else if (t4) t14.push(new R.RecurringInvoiceEditItemsScreen(_this._widget.entityViewModel, _this._invoice_edit_desktop$_showTasksTable, _null)); else t14.push(T.SizedBox$(_null, _null, _null)); t3 = _this._optionTabController; if (t13) t7 = t1.get$creditTerms(); else t7 = t9 ? t1.get$quoteTerms() : t1.get$invoiceTerms(); t7 = E.Tab$(_null, t7); if (t13) t8 = t1.get$creditFooter(); else t8 = t9 ? t1.get$quoteFooter() : t1.get$invoiceFooter(); t8 = H.setRuntimeTypeInfo([t7, E.Tab$(_null, t8), E.Tab$(_null, t1.get$publicNotes()), E.Tab$(_null, t1.get$privateNotes()), E.Tab$(_null, t1.get$settings())], t12); t7 = _this._optionTabController; t13 = !invoice.get$isNew() && !t4 ? "" : settings.getDefaultTerms$1(entityType); t13 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_termsController, _null, true, _null, t13, _null, _null, false, false, _null, C.TextInputType_1_null_null, "", 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t4 = !invoice.get$isNew() && !t4 ? "" : settings.getDefaultFooter$1(entityType); t4 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_footerController, _null, true, _null, t4, _null, _null, false, false, _null, C.TextInputType_1_null_null, "", 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t15 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_publicNotesController, _null, true, _null, client.publicNotes, _null, _null, false, false, _null, C.TextInputType_1_null_null, "", 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t16 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_desktop$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, "", 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t17 = T.Row$(H.setRuntimeTypeInfo([T.Expanded$(new A.DesignPicker(new S.InvoiceEditDesktopState_build_closure22(viewModel, invoice), _null, invoice.designId, _null), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(new V.UserPicker(invoice.assignedUserId, new S.InvoiceEditDesktopState_build_closure23(viewModel, invoice), _null), 1)], t12), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t18 = "__exchange_rate_" + t6 + "__"; t19 = t1.get$exchangeRate(); t19 = H.setRuntimeTypeInfo([T.Expanded$(S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, Y.formatNumber(invoice.exchangeRate, context, _null, _null, C.FormatNumberType_4, true, _null, false), _null, false, false, new D.ValueKey(t18, t11), new N.TextInputType(2, false, true), t19, _null, _null, false, new S.InvoiceEditDesktopState_build_closure24(viewModel, invoice), _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null), 1)], t12); if (company.numberOfInvoiceTaxRates > 0 || company.numberOfItemTaxRates > 0) C.JSArray_methods.addAll$1(t19, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 16), T.Expanded$(new T.Padding(C.EdgeInsets_0_8_0_0, O.SwitchListTile$(K.Theme_of(context).accentColor, true, new S.InvoiceEditDesktopState_build_closure25(viewModel, invoice), _null, _null, L.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.usesInclusiveTaxes), _null), 1)], t12)); else if (!t2) C.JSArray_methods.addAll$1(t19, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 16), T.Expanded$(T.SizedBox$(_null, _null, _null), 1)], t12)); if (t2) C.JSArray_methods.addAll$1(t19, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 16), T.Expanded$(new T.Padding(C.EdgeInsets_0_8_0_0, O.SwitchListTile$(K.Theme_of(context).accentColor, true, new S.InvoiceEditDesktopState_build_closure26(viewModel, invoice), _null, _null, L.Text$(t1.get$autoBillEnabled(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.autoBillEnabled), _null), 1)], t12)); t3 = T.Expanded$(Y.FormCard$(_null, H.setRuntimeTypeInfo([new R.AppTabBar(t8, t3, true, _null, _null), T.SizedBox$(E.TabBarView$(H.setRuntimeTypeInfo([t13, t4, t15, t16, T.Column$(H.setRuntimeTypeInfo([t17, T.Row$(t19, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t12), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], t12), t7, _null), 125, _null)], t12), _null, 4, false, _null, false, C.EdgeInsets_12_12_6_12), 2); t4 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1.get$subtotal(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = "__invoice_subtotal_" + H.S(invoice.calculateSubtotal$1$precision(Z.precisionForInvoice(state, invoice))) + "_" + t6 + "__"; t7 = H.setRuntimeTypeInfo([E.TextFormField$(true, _null, false, _null, _null, t4, false, false, _null, Y.formatNumber(invoice.calculateSubtotal$1$precision(Z.precisionForInvoice(state, invoice)), context, t6, _null, C.FormatNumberType_0, true, _null, false), _null, new D.ValueKey(t7, t11), _null, 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_5, _null, _null)], t12); if (!invoice.get$isNew()) t2 = t2 || t9; else t2 = false; if (t2) { t2 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1.get$paidToDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = invoice.paidToDate; t8 = "__invoice_paid_to_date_" + H.S(t4) + "_" + t6 + "__"; t7.push(E.TextFormField$(true, _null, false, _null, _null, t2, false, false, _null, Y.formatNumber(t4, context, t6, _null, C.FormatNumberType_0, true, _null, false), _null, new D.ValueKey(t8, t11), _null, 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_5, _null, _null)); } if (company.get$hasCustomSurcharge()) t7.push(new V.CustomSurcharges(_this._invoice_edit_desktop$_surcharge1Controller, _this._invoice_edit_desktop$_surcharge2Controller, _this._invoice_edit_desktop$_surcharge3Controller, _this._invoice_edit_desktop$_surcharge4Controller, _null, false, _null)); if (company.get$enableFirstInvoiceTaxRate() || invoice.taxName1.length !== 0) { t2 = t1.get$tax(); t7.push(new D.TaxRateDropdown(t2 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new S.InvoiceEditDesktopState_build_closure27(viewModel, invoice), invoice.taxName1, invoice.taxRate1, _null)); } if (company.get$enableSecondInvoiceTaxRate() || invoice.taxName2.length !== 0) { t2 = t1.get$tax(); t7.push(new D.TaxRateDropdown(t2 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new S.InvoiceEditDesktopState_build_closure28(viewModel, invoice), invoice.taxName2, invoice.taxRate2, _null)); } if (company.get$enableThirdInvoiceTaxRate() || invoice.taxName3.length !== 0) { t2 = t1.get$tax(); t7.push(new D.TaxRateDropdown(t2 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new S.InvoiceEditDesktopState_build_closure29(viewModel, invoice), invoice.taxName3, invoice.taxRate3, _null)); } if (company.get$hasCustomSurcharge()) t7.push(new V.CustomSurcharges(_this._invoice_edit_desktop$_surcharge1Controller, _this._invoice_edit_desktop$_surcharge2Controller, _this._invoice_edit_desktop$_surcharge3Controller, _this._invoice_edit_desktop$_surcharge4Controller, _this._widget.entityViewModel.onSavePressed, true, _null)); t2 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t9 ? t1.get$total(t1) : t1.get$balanceDue(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _s16_ + H.S(invoice.calculateTotal$1$precision(Z.precisionForInvoice(state, invoice))) + "_" + t6 + "__"; t7.push(E.TextFormField$(true, _null, false, _null, _null, t2, false, false, _null, Y.formatNumber(invoice.calculateTotal$1$precision(Z.precisionForInvoice(state, invoice)) - invoice.paidToDate, context, t6, _null, C.FormatNumberType_0, true, _null, false), _null, new D.ValueKey(t4, t11), _null, 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_5, _null, _null)); t2 = invoice.partial; if (t2 !== 0) { t1 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t1.get$partialDue(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _s16_ + H.S(t2) + "_" + t6 + "__"; t7.push(E.TextFormField$(true, _null, false, _null, _null, t1, false, false, _null, Y.formatNumber(t2, context, t6, _null, C.FormatNumberType_0, true, _null, false), _null, new D.ValueKey(t4, t11), _null, 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_5, _null, _null)); } t14.push(T.Row$(H.setRuntimeTypeInfo([t3, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([Y.FormCard$(_null, t7, _null, 4, false, _null, false, C.EdgeInsets_6_12_12_0)], t12), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1)], t12), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); t14.push(new T.Padding(C.EdgeInsets_16_16_16_16, new S._PdfPreview(invoice, _null), _null)); return new O.AppScrollbar(E.SingleChildScrollView$(T.Column$(t14, C.CrossAxisAlignment_2, new D.ValueKey(t5, t11), C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), t10, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), t10, false, _null); } }; S.InvoiceEditDesktopState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_desktop$_onChanged()); }, $signature: 10 }; S.InvoiceEditDesktopState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_desktop$_onChanged()); }, $signature: 10 }; S.InvoiceEditDesktopState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_invoice_edit_desktop$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; S.InvoiceEditDesktopState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_desktop$_invoiceNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_number = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_poNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._poNumber = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_partialController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._partial = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_surcharge1Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge1 = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_surcharge2Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge2 = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_surcharge3Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge3 = t2; t2 = Y.parseDouble(t1._invoice_edit_desktop$_surcharge4Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge4 = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_publicNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_publicNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_privateNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_privateNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_desktop$_termsController._change_notifier$_value.text); b.get$_invoice_model$_$this()._terms = t2; t1 = J.trim$0$s(t1._invoice_edit_desktop$_footerController._change_notifier$_value.text); b.get$_invoice_model$_$this()._footer = t1; return b; }, $signature: 11 }; S.InvoiceEditDesktopState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; S.InvoiceEditDesktopState_build_closure.prototype = { call$1: function(item) { return !item.get$isEmpty(item) && item.typeId !== "2"; }, $signature: 58 }; S.InvoiceEditDesktopState_build_closure0.prototype = { call$1: function(item) { return !item.get$isEmpty(item) && item.typeId === "2"; }, $signature: 58 }; S.InvoiceEditDesktopState_build_closure2.prototype = { call$1: function(client) { this.viewModel.onClientChanged.call$3(this.context, this.invoice, client); }, $signature: 44 }; S.InvoiceEditDesktopState_build_closure1.prototype = { call$1: function(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 538 }; S.InvoiceEditDesktopState_build_closure3.prototype = { call$0: function() { M.filterByEntity(this.context, this.client); }, $signature: 1 }; S.InvoiceEditDesktopState_build_closure8.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure12(value))); }, $signature: 8 }; S.InvoiceEditDesktopState_build__closure12.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._frequencyId = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure4.prototype = { call$1: function(entry) { var _null = null, t1 = entry.get$key(entry); return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, type$.legacy_String); }, $signature: 262 }; S.InvoiceEditDesktopState_build_closure5.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure13(date))); }, $signature: 7 }; S.InvoiceEditDesktopState_build__closure13.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._nextSendDate = this.date; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure11(value))); }, $signature: 10 }; S.InvoiceEditDesktopState_build__closure11.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._remainingCycles = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure6.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; S.InvoiceEditDesktopState_build_closure10.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure10(value))); }, $signature: 8 }; S.InvoiceEditDesktopState_build__closure10.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._dueDateDays = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure7.prototype = { call$1: function(value) { var t1, _null = null; if (value === 1) t1 = this.localization.get$firstDayOfTheMonth(); else { t1 = this.localization; t1 = value === 31 ? t1.get$lastDayOfTheMonth() : C.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", H.S(value)); } return K.DropdownMenuItem$(L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), H.S(value), type$.legacy_String); }, $signature: 424 }; S.InvoiceEditDesktopState_build_closure12.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; S.InvoiceEditDesktopState_build_closure11.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure9(date))); }, $signature: 7 }; S.InvoiceEditDesktopState_build__closure9.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._date = this.date; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure13.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure8(date))); }, $signature: 7 }; S.InvoiceEditDesktopState_build__closure8.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._dueDate = this.date; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure14.prototype = { call$1: function(value) { var _this = this, amount = Y.parseDouble(_this.$this._invoice_edit_desktop$_partialController._change_notifier$_value.text, false), t1 = _this.invoice, total = t1.calculateTotal$1$precision(Z.precisionForInvoice(_this.state, t1)); if (!(amount < 0)) t1 = amount !== 0 && amount > total; else t1 = true; if (t1) return _this.localization.get$partialValue(); else return null; }, $signature: 15 }; S.InvoiceEditDesktopState_build_closure15.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure7(date))); }, $signature: 7 }; S.InvoiceEditDesktopState_build__closure7.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._partialDueDate = this.date; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure16.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 && !this.invoice.get$isNew() && this.originalInvoice.number.length !== 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAnInvoiceNumber() : null; }, $signature: 15 }; S.InvoiceEditDesktopState_build_closure17.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure6(value))); }, $signature: 12 }; S.InvoiceEditDesktopState_build__closure6.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._isAmountDiscount = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure18.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure5(value))); }, $signature: 10 }; S.InvoiceEditDesktopState_build__closure5.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_autoBill = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure19.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; S.InvoiceEditDesktopState_build_closure20.prototype = { call$1: function(item) { return item.typeId === "2"; }, $signature: 58 }; S.InvoiceEditDesktopState_build_closure21.prototype = { call$1: function(index) { var t1 = this.$this; t1.setState$1(new S.InvoiceEditDesktopState_build__closure4(t1, index)); }, $signature: 103 }; S.InvoiceEditDesktopState_build__closure4.prototype = { call$0: function() { return this.$this._invoice_edit_desktop$_showTasksTable = this.index === 1; }, $signature: 19 }; S.InvoiceEditDesktopState_build_closure22.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure3(value))); }, $signature: 151 }; S.InvoiceEditDesktopState_build__closure3.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_invoice_model$_$this()._designId = t1; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure23.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure2(userId))); }, $signature: 5 }; S.InvoiceEditDesktopState_build__closure2.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.userId; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure24.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure1(value))); }, $signature: 5 }; S.InvoiceEditDesktopState_build__closure1.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.value, false); b.get$_invoice_model$_$this()._exchangeRate = t1; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure25.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure0(value))); }, $signature: 20 }; S.InvoiceEditDesktopState_build__closure0.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._usesInclusiveTaxes = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure26.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new S.InvoiceEditDesktopState_build__closure(value))); }, $signature: 20 }; S.InvoiceEditDesktopState_build__closure.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._autoBillEnabled = this.value; return b; }, $signature: 11 }; S.InvoiceEditDesktopState_build_closure27.prototype = { call$1: function(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, $signature: 121 }; S.InvoiceEditDesktopState_build_closure28.prototype = { call$1: function(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, $signature: 121 }; S.InvoiceEditDesktopState_build_closure29.prototype = { call$1: function(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isThird(taxRate, true)); }, $signature: 121 }; S._PdfPreview.prototype = { createState$0: function() { return new S.__PdfPreviewState(new O.Debouncer(1500, false), C._StateLifecycle_0); }, get$invoice: function() { return this.invoice; } }; S.__PdfPreviewState.prototype = { didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (!this._widget.invoice.$eq(0, oldWidget.invoice)) this.loadPdf$0(); }, dispose$0: function(_) { var t1 = this._invoice_edit_desktop$_pdfController; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, loadPdf$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this; var $async$loadPdf$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if ($async$self._invoice_edit_desktop$_pdfController == null) $async$self._loadPdf$0(); else $async$self._pdfDebouncer.run$1(new S.__PdfPreviewState_loadPdf_closure($async$self)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$loadPdf$0, $async$completer); }, _loadPdf$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, state, credentials, url, t1; var $async$_loadPdf$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._widget.invoice; if (t1.clientId.length === 0 || $async$self._invoice_edit_desktop$_isLoading) { // goto return $async$goto = 1; break; } $async$self.setState$1(new S.__PdfPreviewState__loadPdf_closure($async$self)); t1 = $async$self._framework$_element; t1.toString; state = O.StoreProvider_of(t1, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/live_preview?entity=" + A.toSnakeCase($async$self._widget.invoice.entityType.name); if (!$async$self._widget.invoice.get$isNew()) url += "&entity_id=" + $async$self._widget.invoice.id; if (Y.cleanApiUrl(state.authState.url) === "https://invoicing.co") url = C.JSString_methods.replaceFirst$2(url, "//", "//preview."); new F.WebClient().post$4$data$rawResponse(url, credentials.token, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$invoiceEntitySerializer(), $async$self._widget.invoice)), true).then$1$1(0, new S.__PdfPreviewState__loadPdf_closure0($async$self), type$.Null).catchError$1(new S.__PdfPreviewState__loadPdf_closure1($async$self)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_loadPdf$0, $async$completer); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, _this = this, _null = null, _s13_ = "previous_page", _s9_ = "next_page", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (_this._invoice_edit_desktop$_pdfController == null) return T.SizedBox$(_null, _null, _null); t2 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([], t2); if (_this._invoice_edit_desktop$_pageCount > 1) { t1 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), _s13_); if (t4 == null) t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_); t5 = _this._currentPage === 1 ? _null : new S.__PdfPreviewState_build_closure(_this); t6 = T.SizedBox$(_null, _null, 16); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), _s9_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s9_); t7 = _this._currentPage === _this._invoice_edit_desktop$_pageCount ? _null : new S.__PdfPreviewState_build_closure0(_this); t3.push(new T.Padding(C.EdgeInsets_0_0_0_16, T.Row$(H.setRuntimeTypeInfo([new D.AppButton(_null, C._MdiIconData_Gjc1, t4, t5, 180, _null), t6, new D.AppButton(_null, C._MdiIconData_Up30, t1, t7, 180, _null)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_2, C.MainAxisSize_1, _null), _null)); } t3.push(T.Expanded$(new T.IgnorePointer(true, _null, M.Material$(C.Duration_200000, true, _null, M.Container$(_null, new T.Padding(C.EdgeInsets_16_16_16_16, X.PdfView$(_this._invoice_edit_desktop$_pdfController, new S.__PdfPreviewState_build_closure1(_this), new S.__PdfPreviewState_build_closure2(_this)), _null), C.Clip_0, C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.Clip_0, _null, 8, _null, _null, _null, _null, C.MaterialType_0), _null), 1)); t1 = H.setRuntimeTypeInfo([T.Column$(t3, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], t2); if (_this._invoice_edit_desktop$_isLoading) t1.push(T.Column$(H.setRuntimeTypeInfo([U.LinearProgressIndicator$(), T.Expanded$(T.Center$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null), 1)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)); return M.Container$(_null, T.Stack$(C.Alignment_0_m1, t1, C.Clip_1, C.StackFit_0, _null, _null), C.Clip_0, _null, _null, _null, _null, 1200, _null, _null, _null, _null, _null, _null); } }; S.__PdfPreviewState_loadPdf_closure.prototype = { call$0: function() { this.$this._loadPdf$0(); }, $signature: 1 }; S.__PdfPreviewState__loadPdf_closure.prototype = { call$0: function() { this.$this._invoice_edit_desktop$_isLoading = true; }, $signature: 1 }; S.__PdfPreviewState__loadPdf_closure0.prototype = { call$1: function(response) { var t1 = this.$this; t1.setState$1(new S.__PdfPreviewState__loadPdf__closure0(t1, response)); }, $signature: 8 }; S.__PdfPreviewState__loadPdf__closure0.prototype = { call$0: function() { var $document, t2, t1 = this.$this; t1._invoice_edit_desktop$_isLoading = false; $document = S.PdfDocument_openData(this.response.get$bodyBytes()); t2 = t1._invoice_edit_desktop$_pdfController; if (t2 == null) t1._invoice_edit_desktop$_pdfController = new X.PdfController($document); else t2.loadDocument$1($document); }, $signature: 1 }; S.__PdfPreviewState__loadPdf_closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new S.__PdfPreviewState__loadPdf__closure(t1)); }, $signature: 8 }; S.__PdfPreviewState__loadPdf__closure.prototype = { call$0: function() { this.$this._invoice_edit_desktop$_isLoading = false; }, $signature: 1 }; S.__PdfPreviewState_build_closure.prototype = { call$0: function() { this.$this._invoice_edit_desktop$_pdfController.previousPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, $signature: 1 }; S.__PdfPreviewState_build_closure0.prototype = { call$0: function() { this.$this._invoice_edit_desktop$_pdfController.nextPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, $signature: 1 }; S.__PdfPreviewState_build_closure1.prototype = { call$1: function($document) { var t1 = this.$this; t1.setState$1(new S.__PdfPreviewState_build__closure0(t1, $document)); }, $signature: 2279 }; S.__PdfPreviewState_build__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = this.document; t2 = t2 == null ? null : t2.pagesCount; t1._invoice_edit_desktop$_pageCount = t2 == null ? 0 : t2; t1._currentPage = 1; }, $signature: 1 }; S.__PdfPreviewState_build_closure2.prototype = { call$1: function(page) { var t1 = this.$this; t1.setState$1(new S.__PdfPreviewState_build__closure(t1, page)); }, $signature: 103 }; S.__PdfPreviewState_build__closure.prototype = { call$0: function() { this.$this._currentPage = this.page; }, $signature: 1 }; S._InvoiceEditDesktopState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; N.InvoiceEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new N.InvoiceEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; N.InvoiceEditDetailsState.prototype = { didChangeDependencies$0: function() { var invoice, _this = this, _null = null, t1 = _this._invoiceNumberController, t2 = _this._poNumberController, t3 = _this._invoice_edit_details$_discountController, t4 = _this._partialController, t5 = _this._invoice_edit_details$_custom1Controller, t6 = _this._invoice_edit_details$_custom2Controller, t7 = _this._invoice_edit_details$_custom3Controller, t8 = _this._invoice_edit_details$_custom4Controller, t9 = _this._surcharge1Controller, t10 = _this._surcharge2Controller, t11 = _this._surcharge3Controller, t12 = _this._surcharge4Controller, t13 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_details$_controllers = t13; C.JSArray_methods.forEach$1(t13, new N.InvoiceEditDetailsState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.number); t2.set$text(0, invoice.poNumber); t2 = invoice.discount; t1 = _this._framework$_element; t1.toString; t3.set$text(0, Y.formatNumber(t2, t1, _null, _null, C.FormatNumberType_4, true, _null, false)); t1 = invoice.partial; t2 = _this._framework$_element; t2.toString; t4.set$text(0, Y.formatNumber(t1, t2, _null, _null, C.FormatNumberType_4, true, _null, false)); t5.set$text(0, invoice.customValue1); t6.set$text(0, invoice.customValue2); t7.set$text(0, invoice.customValue3); t8.set$text(0, invoice.customValue4); t8 = invoice.customSurcharge1; t7 = _this._framework$_element; t7.toString; t9.set$text(0, Y.formatNumber(t8, t7, _null, _null, C.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge2; t8 = _this._framework$_element; t8.toString; t10.set$text(0, Y.formatNumber(t7, t8, _null, _null, C.FormatNumberType_4, true, _null, false)); t8 = invoice.customSurcharge3; t7 = _this._framework$_element; t7.toString; t11.set$text(0, Y.formatNumber(t8, t7, _null, _null, C.FormatNumberType_4, true, _null, false)); t7 = invoice.customSurcharge4; t8 = _this._framework$_element; t8.toString; t12.set$text(0, Y.formatNumber(t7, t8, _null, _null, C.FormatNumberType_4, true, _null, false)); C.JSArray_methods.forEach$1(_this._invoice_edit_details$_controllers, new N.InvoiceEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._invoice_edit_details$_controllers, new N.InvoiceEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_details$_onChanged$0: function() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new N.InvoiceEditDetailsState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_details$_debouncer.run$1(new N.InvoiceEditDetailsState__onChanged_closure0(_this, invoice)); }, build$1: function(_, context) { var t8, settings, terms, termsString, t9, t10, t11, t12, t13, t14, t15, _list, i, t16, t17, t18, i0, _this = this, _null = null, _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, company = viewModel.company, t2 = invoice.entityType, originalInvoice = type$.legacy_InvoiceEntity._as(state.getEntity$2(t2, invoice.id)), t3 = state.uiState.selectedCompanyIndex, t4 = state.userCompanyStates._list, t5 = J.getInterceptor$asx(t4), t6 = t5.$index(t4, t3).clientState, t7 = invoice.clientId, client = t6.$get$1(0, t7); t6 = client.settings; t8 = t5.$index(t4, t3).groupState.$get$1(0, client.groupId).settings; settings = G.SettingsEntity_SettingsEntity(t6, t5.$index(t4, t3).userCompany.company.settings, t8); terms = _this._widget.entityType === C.EntityType_quote ? settings.defaultValidUntil : settings.defaultPaymentTerms; termsString = (terms == null ? "" : terms).length !== 0 ? t1.get$net() + " " + H.S(terms) : _null; if (invoice.get$isNew()) t3 = R.ClientPicker$(t7, t5.$index(t4, t3).clientState, new N.InvoiceEditDetailsState_build_closure(viewModel, context), new N.InvoiceEditDetailsState_build_closure0(viewModel, context, invoice)); else { t3 = _this._widget.entityType; if (t3 === C.EntityType_credit) t3 = t1.get$creditNumber(); else t3 = t3 === C.EntityType_quote ? t1.get$quoteNumber() : t1.get$invoiceNumber(); t3 = S.DecoratedFormField$(false, _null, false, false, _this._invoiceNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new N.InvoiceEditDetailsState_build_closure1(invoice, originalInvoice, context)); } t4 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([t3, new V.UserPicker(invoice.assignedUserId, new N.InvoiceEditDetailsState_build_closure2(viewModel, invoice), _null)], t4); t5 = t2 === C.EntityType_recurringInvoice; if (t5) { t6 = t1.get$frequency(t1); t8 = invoice.frequencyId; t9 = C.Map_tOn4d.get$entries(C.Map_tOn4d); t9 = t9.map$1$1(t9, new N.InvoiceEditDetailsState_build_closure3(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t10 = type$.AppDropdownButton_legacy_String; t11 = invoice.lastSentDate; t11 = t11.length !== 0 ? t1.get$nextSendDate() : t1.get$startDate(); t12 = invoice.nextSendDate; t12 = K.DatePicker$(false, new P.DateTime(Date.now(), false), _null, t11, _null, new N.InvoiceEditDetailsState_build_closure4(viewModel, invoice), t12, _null); t11 = t1.get$remainingCycles(); t13 = invoice.remainingCycles; t14 = type$.legacy_int; t15 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$endless(), _null, _null, _null, _null, _null, _null, _null, _null, _null), -1, t14)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(37, t14); for (i = 0; i < 37; ++i) _list[i] = i; t16 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t15, P.List_List$of(new H.MappedListIterable(_list, new N.InvoiceEditDetailsState_build_closure5(), t16), true, t16._eval$1("ListIterable.E"))); t16 = t1.get$dueDate(); t17 = invoice.dueDateDays; if (t17 == null) t17 = ""; t18 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$usePaymentTerms(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "terms", type$.legacy_String)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); _list = J.JSArray_JSArray$allocateGrowable(31, t14); for (i = 0; i < 31; i = i0) { i0 = i + 1; _list[i] = i0; } t14 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t18, P.List_List$of(new H.MappedListIterable(_list, new N.InvoiceEditDetailsState_build_closure6(t1), t14), true, t14._eval$1("ListIterable.E"))); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t6, t8, new N.InvoiceEditDetailsState_build_closure7(viewModel, invoice), t9, _null, true, "", _null, t10), t12, new Q.AppDropdownButton(t11, t13, new N.InvoiceEditDetailsState_build_closure8(viewModel, invoice), t15, _null, true, _null, _null, type$.AppDropdownButton_legacy_int), new Q.AppDropdownButton(t16, t17, new N.InvoiceEditDetailsState_build_closure9(viewModel, invoice), t18, _null, true, "", _null, t10)], t4)); } else { t6 = _this._widget.entityType; if (t6 === C.EntityType_credit) t6 = t1.get$creditDate(); else t6 = t6 === C.EntityType_quote ? t1.get$quoteDate() : t1.get$invoiceDate(); t6 = K.DatePicker$(false, _null, _null, t6, _null, new N.InvoiceEditDetailsState_build_closure10(viewModel, invoice), invoice.date, new N.InvoiceEditDetailsState_build_closure11(context)); t8 = _this._widget.entityType === C.EntityType_invoice ? t1.get$dueDate() : t1.get$validUntil(); t8 = H.setRuntimeTypeInfo([t6, K.DatePicker$(false, _null, _null, t8, termsString, new N.InvoiceEditDetailsState_build_closure12(viewModel, invoice), invoice.dueDate, _null), S.DecoratedFormField$(false, _null, false, false, _this._partialController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$partialDeposit(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new N.InvoiceEditDetailsState_build_closure13(_this, invoice, state, t1))], t4); t6 = invoice.partial; if (t6 > 0) t8.push(K.DatePicker$(false, _null, _null, t1.get$partialDueDate(), _null, new N.InvoiceEditDetailsState_build_closure14(viewModel, invoice), invoice.partialDueDate, _null)); C.JSArray_methods.addAll$1(t3, t8); } t3.push(S.DecoratedFormField$(false, _null, false, false, _this._poNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$poNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); t3.push(new L.DiscountField(_this._invoice_edit_details$_discountController, invoice.discount, invoice.isAmountDiscount, new N.InvoiceEditDetailsState_build_closure15(viewModel, invoice), _null, _null)); if (t5) { t5 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t3.push(new Q.AppDropdownButton(t1.get$autoBill(), invoice.autoBill, new N.InvoiceEditDetailsState_build_closure16(viewModel, invoice), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new N.InvoiceEditDetailsState_build_closure17(t1), t5), true, t5._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)); } t3.push(new B.CustomField(_this._invoice_edit_details$_custom1Controller, _null, _null, "invoice1", invoice.customValue1, false, _null)); t3.push(new B.CustomField(_this._invoice_edit_details$_custom2Controller, _null, _null, "invoice2", invoice.customValue2, false, _null)); t3.push(new B.CustomField(_this._invoice_edit_details$_custom3Controller, _null, _null, "invoice3", invoice.customValue3, false, _null)); t3.push(new B.CustomField(_this._invoice_edit_details$_custom4Controller, _null, _null, "invoice4", invoice.customValue4, false, _null)); if (company.getCustomFieldLabel$1(_s10_).length !== 0) t3.push(S.DecoratedFormField$(false, _null, false, false, _this._surcharge1Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_0).length !== 0) t3.push(S.DecoratedFormField$(false, _null, false, false, _this._surcharge2Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_0), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_1).length !== 0) t3.push(S.DecoratedFormField$(false, _null, false, false, _this._surcharge3Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_1), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.getCustomFieldLabel$1(_s10_2).length !== 0) t3.push(S.DecoratedFormField$(false, _null, false, false, _this._surcharge4Controller, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), company.getCustomFieldLabel$1(_s10_2), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.get$enableFirstInvoiceTaxRate() || invoice.taxName1.length !== 0) { t5 = t1.get$tax(); t3.push(new D.TaxRateDropdown(t5 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new N.InvoiceEditDetailsState_build_closure18(viewModel, invoice), invoice.taxName1, invoice.taxRate1, _null)); } if (company.get$enableSecondInvoiceTaxRate() || invoice.taxName2.length !== 0) { t5 = t1.get$tax(); t3.push(new D.TaxRateDropdown(t5 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new N.InvoiceEditDetailsState_build_closure19(viewModel, invoice), invoice.taxName2, invoice.taxRate2, _null)); } if (company.get$enableThirdInvoiceTaxRate() || invoice.taxName3.length !== 0) { t5 = t1.get$tax(); t3.push(new D.TaxRateDropdown(t5 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), new N.InvoiceEditDetailsState_build_closure20(viewModel, invoice), invoice.taxName3, invoice.taxRate3, _null)); } t3.push(new A.DesignPicker(new N.InvoiceEditDetailsState_build_closure21(viewModel, invoice), _null, invoice.designId, _null)); t5 = "__exchange_rate_" + t7 + "__"; t6 = t1.get$exchangeRate(); t3.push(S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, Y.formatNumber(invoice.exchangeRate, context, _null, _null, C.FormatNumberType_5, true, _null, false), _null, false, false, new D.ValueKey(t5, type$.ValueKey_legacy_String), new N.TextInputType(2, false, true), t6, _null, _null, false, new N.InvoiceEditDetailsState_build_closure22(viewModel, invoice), _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.numberOfInvoiceTaxRates > 0 || company.numberOfItemTaxRates > 0) t3.push(new T.Padding(C.EdgeInsets_0_8_0_0, O.SwitchListTile$(K.Theme_of(context).accentColor, true, new N.InvoiceEditDetailsState_build_closure23(viewModel, invoice), _null, _null, L.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.usesInclusiveTaxes), _null)); if (t2 === C.EntityType_invoice) t3.push(new T.Padding(C.EdgeInsets_0_8_0_0, O.SwitchListTile$(K.Theme_of(context).accentColor, true, new N.InvoiceEditDetailsState_build_closure24(viewModel, invoice), _null, _null, L.Text$(t1.get$autoBillEnabled(), _null, _null, _null, _null, _null, _null, _null, _null, _null), invoice.autoBillEnabled), _null)); return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t3, _null, 4, false, _null, true, _null)], t4), _null, _null, false, _null); } }; N.InvoiceEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_details$_onChanged()); }, $signature: 10 }; N.InvoiceEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_details$_onChanged()); }, $signature: 10 }; N.InvoiceEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_invoice_edit_details$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; N.InvoiceEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoiceNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_number = t2; t2 = J.trim$0$s(t1._poNumberController._change_notifier$_value.text); b.get$_invoice_model$_$this()._poNumber = t2; t2 = Y.parseDouble(t1._invoice_edit_details$_discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = Y.parseDouble(t1._partialController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._partial = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t2 = J.trim$0$s(t1._invoice_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t2; t2 = Y.parseDouble(t1._surcharge1Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge1 = t2; t2 = Y.parseDouble(t1._surcharge2Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge2 = t2; t2 = Y.parseDouble(t1._surcharge3Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge3 = t2; t1 = Y.parseDouble(t1._surcharge4Controller._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._customSurcharge4 = t1; return b; }, $signature: 11 }; N.InvoiceEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; N.InvoiceEditDetailsState_build_closure0.prototype = { call$1: function(client) { return this.viewModel.onClientChanged.call$3(this.context, this.invoice, client); }, $signature: 56 }; N.InvoiceEditDetailsState_build_closure.prototype = { call$1: function(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 538 }; N.InvoiceEditDetailsState_build_closure1.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 && !this.invoice.get$isNew() && this.originalInvoice.number.length !== 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAnInvoiceNumber() : null; }, $signature: 15 }; N.InvoiceEditDetailsState_build_closure2.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure12(userId))); }, $signature: 5 }; N.InvoiceEditDetailsState_build__closure12.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.userId; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure7.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure10(value))); }, $signature: 8 }; N.InvoiceEditDetailsState_build__closure10.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._frequencyId = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure3.prototype = { call$1: function(entry) { var _null = null, t1 = entry.get$key(entry); return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, type$.legacy_String); }, $signature: 262 }; N.InvoiceEditDetailsState_build_closure4.prototype = { call$1: function(date) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure11(date))); }, $signature: 5 }; N.InvoiceEditDetailsState_build__closure11.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._nextSendDate = this.date; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure8.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure9(value))); }, $signature: 10 }; N.InvoiceEditDetailsState_build__closure9.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._remainingCycles = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure5.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; N.InvoiceEditDetailsState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure8(value))); }, $signature: 10 }; N.InvoiceEditDetailsState_build__closure8.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._dueDateDays = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure6.prototype = { call$1: function(value) { var t1, _null = null; if (value === 1) t1 = this.localization.get$firstDayOfTheMonth(); else { t1 = this.localization; t1 = value === 31 ? t1.get$lastDayOfTheMonth() : C.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", H.S(value)); } return K.DropdownMenuItem$(L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), H.S(value), type$.legacy_String); }, $signature: 424 }; N.InvoiceEditDetailsState_build_closure11.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; N.InvoiceEditDetailsState_build_closure10.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure7(date))); }, $signature: 7 }; N.InvoiceEditDetailsState_build__closure7.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._date = this.date; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure12.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure6(date))); }, $signature: 7 }; N.InvoiceEditDetailsState_build__closure6.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._dueDate = this.date; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure13.prototype = { call$1: function(value) { var _this = this, amount = Y.parseDouble(_this.$this._partialController._change_notifier$_value.text, false), t1 = _this.invoice, total = t1.calculateTotal$1$precision(Z.precisionForInvoice(_this.state, t1)); if (!(amount < 0)) t1 = amount !== 0 && amount > total; else t1 = true; if (t1) return _this.localization.get$partialValue(); else return null; }, $signature: 15 }; N.InvoiceEditDetailsState_build_closure14.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure5(date))); }, $signature: 7 }; N.InvoiceEditDetailsState_build__closure5.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._partialDueDate = this.date; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure15.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure4(value))); }, $signature: 12 }; N.InvoiceEditDetailsState_build__closure4.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._isAmountDiscount = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure16.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure3(value))); }, $signature: 10 }; N.InvoiceEditDetailsState_build__closure3.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_autoBill = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure17.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; N.InvoiceEditDetailsState_build_closure18.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, $signature: 80 }; N.InvoiceEditDetailsState_build_closure19.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, $signature: 80 }; N.InvoiceEditDetailsState_build_closure20.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isThird(taxRate, true)); }, $signature: 80 }; N.InvoiceEditDetailsState_build_closure21.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure2(value))); }, $signature: 276 }; N.InvoiceEditDetailsState_build__closure2.prototype = { call$1: function(b) { var t1 = this.value; t1 = t1 == null ? null : t1.id; b.get$_invoice_model$_$this()._designId = t1; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure22.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure1(value))); }, $signature: 5 }; N.InvoiceEditDetailsState_build__closure1.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.value, false); b.get$_invoice_model$_$this()._exchangeRate = t1; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure23.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure0(value))); }, $signature: 20 }; N.InvoiceEditDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._usesInclusiveTaxes = this.value; return b; }, $signature: 11 }; N.InvoiceEditDetailsState_build_closure24.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new N.InvoiceEditDetailsState_build__closure(value))); }, $signature: 20 }; N.InvoiceEditDetailsState_build__closure.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._autoBillEnabled = this.value; return b; }, $signature: 11 }; L.InvoiceEditDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.InvoiceEditDetailsScreen_build_closure(this), new L.InvoiceEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditDetailsVM); } }; L.InvoiceEditDetailsScreen_build_closure0.prototype = { call$1: function(store) { return L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore(store); }, $signature: 2281 }; L.InvoiceEditDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new S.InvoiceEditDesktop(viewModel, this.$this.viewModel, new D.ValueKey("__invoice_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new N.InvoiceEditDetails(viewModel, C.EntityType_invoice, null); }, $signature: 2282 }; L.EntityEditDetailsVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; L.InvoiceEditDetailsVM.prototype = {}; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure.prototype = { call$1: function(invoice) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoice(invoice)); }, $signature: 138 }; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3: function(context, invoice, client) { var t1, t2, _this = this; if (client != null) { t1 = _this.state.staticState.currencyMap; t2 = _this.company.settings.currencyId; if (t2 == null) t2 = "1"; t2 = invoice.rebuild$1(new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure1(R.getExchangeRate(t1, t2, client.settings.currencyId))); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoice(t2)); } J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoiceClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 274 }; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure1.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._exchangeRate = this.exchangeRate; return b; }, $signature: 11 }; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 135 }; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/invoice/edit")); }, $signature: 3 }; L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/invoice/edit")); }, $signature: 44 }; K.InvoiceEditFooter.prototype = { build$1: function(_, context) { var showLayoutToggle, t4, t5, t6, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = this.invoice, total = Y.formatNumber(t2.calculateTotal$1$precision(Z.precisionForInvoice(state, t2)), context, t2.clientId, _null, C.FormatNumberType_0, true, _null, false), t3 = state.prefState, useSidebarEditor = J.$index$asx(t3.useSidebarEditor._map$_map, C.EntityType_invoice); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = D.getLayout(context) === C.AppLayout_desktop; t4 = K.Theme_of(context).cardColor; t5 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t6 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t5.push(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(useSidebarEditor ? C.IconData_57694_MaterialIcons_null_true : C.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new K.InvoiceEditFooter_build_closure(store), _null, _null, _null, _null, _null), t6)); } t1 = H.S(t1.lookup$1(H.S(t2.entityType) + "_total")) + ": " + H.S(total); t5.push(new T.AppBorder(new T.Padding(C.EdgeInsets_16_8_0_0, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t3.enableDarkMode ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, showLayoutToggle, false, _null)); return B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t5, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), t4, 0, new V.CircularNotchedRectangle()); }, get$invoice: function() { return this.invoice; } }; K.InvoiceEditFooter_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(C.EntityType_invoice)); }, $signature: 9 }; G.InvoiceEditItems.prototype = { createState$0: function() { return new G._InvoiceEditItemsState(C._StateLifecycle_0); } }; G._InvoiceEditItemsState.prototype = { _showInvoiceItemEditor$2: function(lineItemIndex, context) { E.showDialog(true, new G._InvoiceEditItemsState__showInvoiceItemEditor_closure(this, lineItemIndex), context, null, true, type$.legacy_ItemEditDetails); }, build$1: function(_, context) { var t3, i, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, invoice = viewModel.invoice, itemIndex = viewModel.invoiceItemIndex, t2 = itemIndex != null; if ((t2 && J.get$length$asx(invoice.lineItems._list) > itemIndex ? J.$index$asx(invoice.lineItems._list, itemIndex) : _null) != null && t2) { viewModel.clearSelectedInvoiceItem.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new G._InvoiceEditItemsState_build_closure(this, itemIndex, context)); } t2 = invoice.lineItems._list; t3 = J.getInterceptor$asx(t2); if (t3.get$isEmpty(t2)) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "click_plus_to_add_item"); return new U.HelpText(t1 == null ? "" : t1, _null); } t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); for (i = 0; i < t3.get$length(t2); ++i) t1.push(new T.InvoiceItemListTile(new G._InvoiceEditItemsState_build_closure0(this, i, context), invoice, t3.$index(t2, i), _null)); return new X.ScrollableListView(t1, _null, _null, false, _null); } }; G._InvoiceEditItemsState__showInvoiceItemEditor_closure.prototype = { call$1: function(context) { var t2, t3, t1 = this.$this._widget, viewModel = t1.viewModel; t1 = t1.entityViewModel; t2 = this.lineItemIndex; t3 = "__" + H.S(t2) + "__"; return new G.ItemEditDetails(t2, J.$index$asx(viewModel.invoice.lineItems._list, t2), viewModel, t1, new D.ValueKey(t3, type$.ValueKey_legacy_String)); }, $signature: 2283 }; G._InvoiceEditItemsState_build_closure.prototype = { call$1: function(duration) { return this.$call$body$_InvoiceEditItemsState_build_closure(duration); }, $call$body$_InvoiceEditItemsState_build_closure: function(duration) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self.$this._showInvoiceItemEditor$2($async$self.itemIndex, $async$self.context); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2284 }; G._InvoiceEditItemsState_build_closure0.prototype = { call$0: function() { return this.$this._showInvoiceItemEditor$2(this.i, this.context); }, $signature: 0 }; G.ItemEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new G.ItemEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; G.ItemEditDetailsState.prototype = { didChangeDependencies$0: function() { var invoiceItem, t1, t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null; if (_this._invoice_edit_items$_controllers.length !== 0) return; invoiceItem = _this._widget.invoiceItem; t1 = _this._invoice_edit_items$_productKeyController; t1.set$text(0, invoiceItem.productKey); t2 = _this._invoice_edit_items$_notesController; t2.set$text(0, invoiceItem.notes); t3 = _this._invoice_edit_items$_costController; t4 = invoiceItem.cost; t5 = _this._framework$_element; t5.toString; t3.set$text(0, Y.formatNumber(t4, t5, _null, _null, C.FormatNumberType_4, true, _null, false)); t5 = _this._qtyController; t4 = invoiceItem.quantity; t6 = _this._framework$_element; t6.toString; t5.set$text(0, Y.formatNumber(t4, t6, _null, _null, C.FormatNumberType_5, true, _null, false)); t6 = _this._discountController; t4 = invoiceItem.discount; t7 = _this._framework$_element; t7.toString; t6.set$text(0, Y.formatNumber(t4, t7, _null, _null, C.FormatNumberType_4, true, _null, false)); t7 = _this._invoice_edit_items$_custom1Controller; t7.set$text(0, invoiceItem.customValue1); t4 = _this._invoice_edit_items$_custom2Controller; t4.set$text(0, invoiceItem.customValue2); t8 = _this._invoice_edit_items$_custom3Controller; t8.set$text(0, invoiceItem.customValue3); t9 = _this._invoice_edit_items$_custom4Controller; t9.set$text(0, invoiceItem.customValue4); t9 = H.setRuntimeTypeInfo([t1, t2, t3, t5, t6, t7, t4, t8, t9], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_items$_controllers = t9; C.JSArray_methods.forEach$1(t9, new G.ItemEditDetailsState_didChangeDependencies_closure(_this)); _this._invoice_edit_items$_taxRate1 = T.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName1, invoiceItem.taxRate1, _null); _this._invoice_edit_items$_taxRate2 = T.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName2, invoiceItem.taxRate2, _null); _this._invoice_edit_items$_taxRate3 = T.TaxRateEntity_TaxRateEntity(_null, invoiceItem.taxName3, invoiceItem.taxRate3, _null); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._invoice_edit_items$_controllers, new G.ItemEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_items$_onTextChanged$0: function() { this._invoice_edit_items$_debouncer.run$1(new G.ItemEditDetailsState__onTextChanged_closure(this)); }, _invoice_edit_items$_onChanged$0: function() { var _this = this, invoiceItem = _this._widget.invoiceItem.rebuild$1(new G.ItemEditDetailsState__onChanged_closure(_this)), t1 = _this._invoice_edit_items$_taxRate1; if (t1 != null) invoiceItem = invoiceItem.applyTax$1(t1); t1 = _this._invoice_edit_items$_taxRate2; if (t1 != null) invoiceItem = invoiceItem.applyTax$2$isSecond(t1, true); t1 = _this._invoice_edit_items$_taxRate3; if (t1 != null) invoiceItem = invoiceItem.applyTax$2$isThird(t1, true); if (!invoiceItem.$eq(0, _this._widget.invoiceItem)) { t1 = _this._widget; t1.viewModel.onChangedInvoiceItem.call$2(invoiceItem, t1.index); } }, build$1: function(_, context) { var t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, company = viewModel.company, t2 = type$.JSArray_legacy_Widget, t3 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new G.ItemEditDetailsState_build_closure(_this, context), _null), U.TextButton$(false, L.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new G.ItemEditDetailsState_build_closure0(viewModel, context), _null)], t2), t4 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_productKeyController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$product(t1), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null), t5 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_notesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$description(t1), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), t6 = _this._invoice_edit_items$_custom1Controller, t7 = _this._widget, t8 = t7.invoiceItem.typeId === "2", t9 = t8 ? "task1" : "product1"; t7 = t7.entityViewModel.onSavePressed; t10 = t6._change_notifier$_value.text; t11 = _this._invoice_edit_items$_custom2Controller; t12 = t8 ? "task2" : "product2"; t13 = t11._change_notifier$_value.text; t14 = _this._invoice_edit_items$_custom3Controller; t15 = t8 ? "task3" : "product3"; t16 = t14._change_notifier$_value.text; t17 = _this._invoice_edit_items$_custom4Controller; t8 = t8 ? "task4" : "product4"; t18 = t17._change_notifier$_value.text; t19 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_items$_costController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$unitCost(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null); t20 = company.enableProductQuantity ? S.DecoratedFormField$(false, _null, false, false, _this._qtyController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$quantity(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t21 = company.enableProductDiscount ? S.DecoratedFormField$(false, _null, false, false, _this._discountController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$discount(), _null, _null, false, _null, _null, _this._widget.entityViewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = H.setRuntimeTypeInfo([t4, t5, new B.CustomField(t6, _null, t7, t9, t10, false, _null), new B.CustomField(t11, _null, t7, t12, t13, false, _null), new B.CustomField(t14, _null, t7, t15, t16, false, _null), new B.CustomField(t17, _null, t7, t8, t18, false, _null), t19, t20, t21], t2); if (company.get$enableFirstItemTaxRate() || _this._invoice_edit_items$_taxRate1.name.length !== 0) { t4 = t1.get$tax(); t4 += company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5 = _this._invoice_edit_items$_taxRate1; t2.push(new D.TaxRateDropdown(t4, new G.ItemEditDetailsState_build_closure1(_this), t5.name, t5.rate, _null)); } if (company.get$enableSecondItemTaxRate() || _this._invoice_edit_items$_taxRate2.name.length !== 0) { t4 = t1.get$tax(); t4 += company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""; t5 = _this._invoice_edit_items$_taxRate2; t2.push(new D.TaxRateDropdown(t4, new G.ItemEditDetailsState_build_closure2(_this), t5.name, t5.rate, _null)); } if (company.get$enableThirdItemTaxRate() || _this._invoice_edit_items$_taxRate3.name.length !== 0) { t4 = t1.get$tax(); t1 = t4 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""); t4 = _this._invoice_edit_items$_taxRate3; t2.push(new D.TaxRateDropdown(t1, new G.ItemEditDetailsState_build_closure3(_this), t4.name, t4.rate, _null)); } return E.AlertDialog$(t3, C.EdgeInsets_0_0_0_0, _null, E.SingleChildScrollView$(T.Column$(t2, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1), C.EdgeInsets_24_20_24_24, _null, _null, _null); } }; G.ItemEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_items$_onTextChanged()); }, $signature: 10 }; G.ItemEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_invoice_edit_items$_onTextChanged()); t1.dispose$0(controller); }, $signature: 8 }; G.ItemEditDetailsState__onTextChanged_closure.prototype = { call$0: function() { this.$this._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; G.ItemEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_items$_productKeyController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_productKey = t2; t2 = t1._invoice_edit_items$_notesController._change_notifier$_value.text; b.get$_invoice_model$_$this()._invoice_model$_notes = t2; t2 = Y.parseDouble(t1._invoice_edit_items$_costController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._invoice_model$_cost = t2; t2 = Y.parseDouble(t1._qtyController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._invoice_model$_quantity = t2; t2 = Y.parseDouble(t1._discountController._change_notifier$_value.text, false); b.get$_invoice_model$_$this()._discount = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom1Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom2Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t2; t2 = J.trim$0$s(t1._invoice_edit_items$_custom3Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t2; t1 = J.trim$0$s(t1._invoice_edit_items$_custom4Controller._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1; return b; }, $signature: 54 }; G.ItemEditDetailsState_build_closure.prototype = { call$0: function() { var t1 = this.context; return O.confirmCallback(false, new G.ItemEditDetailsState_build__closure2(this.$this, t1), t1, null, false, null); }, $signature: 0 }; G.ItemEditDetailsState_build__closure2.prototype = { call$1: function(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveInvoiceItemPressed.call$1(t1.index); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 7 }; G.ItemEditDetailsState_build_closure0.prototype = { call$0: function() { this.viewModel.clearSelectedInvoiceItem.call$0(); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; G.ItemEditDetailsState_build_closure1.prototype = { call$1: function(taxRate) { var t1 = this.$this; t1.setState$1(new G.ItemEditDetailsState_build__closure1(t1, taxRate)); }, $signature: 121 }; G.ItemEditDetailsState_build__closure1.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_edit_items$_taxRate1 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; G.ItemEditDetailsState_build_closure2.prototype = { call$1: function(taxRate) { var t1 = this.$this; t1.setState$1(new G.ItemEditDetailsState_build__closure0(t1, taxRate)); }, $signature: 121 }; G.ItemEditDetailsState_build__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_edit_items$_taxRate2 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; G.ItemEditDetailsState_build_closure3.prototype = { call$1: function(taxRate) { var t1 = this.$this; t1.setState$1(new G.ItemEditDetailsState_build__closure(t1, taxRate)); }, $signature: 121 }; G.ItemEditDetailsState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_edit_items$_taxRate3 = this.taxRate; t1._invoice_edit_items$_onChanged$0(); }, $signature: 1 }; E.InvoiceEditItemsDesktop.prototype = { createState$0: function() { return new E._InvoiceEditItemsDesktopState(new O.Debouncer(500, false), C._StateLifecycle_0); } }; E._InvoiceEditItemsDesktopState.prototype = { _updateTable$0: function() { this.setState$1(new E._InvoiceEditItemsDesktopState__updateTable_closure(this)); }, _invoice_edit_items_desktop$_onChanged$3$debounce: function(lineItem, index, debounce) { var viewModel = this._widget.viewModel, t1 = viewModel.invoice.lineItems._list, t2 = J.getInterceptor$asx(t1); if (index === t2.get$length(t1)) viewModel.onChangedInvoiceItem.call$2(lineItem, index); else if (!lineItem.$eq(0, t2.$index(t1, index))) if (debounce) this._invoice_edit_items_desktop$_debouncer.run$1(new E._InvoiceEditItemsDesktopState__onChanged_closure(viewModel, lineItem, index)); else viewModel.onChangedInvoiceItem.call$2(lineItem, index); }, _invoice_edit_items_desktop$_onChanged$2: function(lineItem, index) { return this._invoice_edit_items_desktop$_onChanged$3$debounce(lineItem, index, true); }, _onFocusChange$0: function() { $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new E._InvoiceEditItemsDesktopState__onFocusChange_closure()); }, build$1: function(_, context) { var t4, company, invoice, t5, t6, client, t7, precision, lineItems, t8, includedLineItems, productState, productIds, hasTax1, hasTax2, hasTax3, customField1, customField2, customField3, customField4, lastIndex, tableHeaderColor, t9, t10, t11, index, t12, t13, t14, t15, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); company = t4.$index(t2, t3).userCompany.company; invoice = viewModel.invoice; t5 = t4.$index(t2, t3).clientState; t6 = invoice.clientId; client = t5.$get$1(0, t6); t5 = state.staticState.currencyMap; t7 = client.settings.currencyId; t7 = J.$index$asx(t5._map$_map, t7); precision = t7 == null ? _null : t7.precision; if (precision == null) precision = 2; t5 = invoice.lineItems; t7 = t5._list; lineItems = new Q.CopyOnWriteList(true, t7, H._instanceType(t5)._eval$1("CopyOnWriteList<1>")); t5 = J.getInterceptor$ax(t7); t8 = t5.where$1(t7, new E._InvoiceEditItemsDesktopState_build_closure(_this)); includedLineItems = P.List_List$of(t8, true, t8.$ti._eval$1("Iterable.E")); productState = t4.$index(t2, t3).productState; productIds = $.$get$memoizedDropdownProductList().call$3(productState.map, productState.list, t4.$index(t2, t3).userState.map); hasTax1 = company.get$enableFirstItemTaxRate() || C.JSArray_methods.any$1(includedLineItems, new E._InvoiceEditItemsDesktopState_build_closure0()); hasTax2 = company.get$enableSecondItemTaxRate() || C.JSArray_methods.any$1(includedLineItems, new E._InvoiceEditItemsDesktopState_build_closure1()); hasTax3 = company.get$enableThirdItemTaxRate() || C.JSArray_methods.any$1(includedLineItems, new E._InvoiceEditItemsDesktopState_build_closure2()); t2 = _this._widget.isTasks; customField1 = t2 ? "task1" : "product1"; customField2 = t2 ? "task2" : "product2"; customField3 = t2 ? "task3" : "product3"; customField4 = t2 ? "task4" : "product4"; t2 = t5.where$1(t7, new E._InvoiceEditItemsDesktopState_build_closure3()); if (!t2.get$iterator(t2).moveNext$0()) { t2 = Q.InvoiceItemEntity_InvoiceItemEntity(_null, company.defaultQuantity ? 1 : 0); lineItems._maybeCopyBeforeWrite$0(); J.add$1$ax(lineItems._copy_on_write_list$_list, t2); } lastIndex = hasTax1 ? 5 : 4; if (hasTax2) ++lastIndex; if (hasTax3) ++lastIndex; t2 = !company.enableProductQuantity; if (!t2 || _this._widget.isTasks) ++lastIndex; t3 = company.enableProductDiscount; if (t3) ++lastIndex; if (company.getCustomFieldLabel$1(customField1).length !== 0) ++lastIndex; if (company.getCustomFieldLabel$1(customField2).length !== 0) ++lastIndex; if (company.getCustomFieldLabel$1(customField3).length !== 0) ++lastIndex; if (company.getCustomFieldLabel$1(customField4).length !== 0) ++lastIndex; tableHeaderColor = J.$index$asx(state.prefState.customColors._map$_map, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; t4 = P.LinkedHashMap_LinkedHashMap$_literal([0, new S.FlexColumnWidth(1.3), 1, new S.FlexColumnWidth(2.2), lastIndex, new S.FixedColumnWidth(40)], type$.legacy_int, type$.legacy_TableColumnWidth); t5 = "__datatable_" + H.S(_this._invoice_edit_items_desktop$_updatedAt) + "__"; t7 = type$.ValueKey_legacy_String; t8 = t1.localeCode; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t8), "item"); if (t9 == null) t9 = ""; t10 = type$.JSArray_legacy_Widget; t9 = H.setRuntimeTypeInfo([new E.TableHeader(t9, true, _null), new E.TableHeader(t1.get$description(t1), false, _null)], t10); if (company.getCustomFieldLabel$1(customField1).length !== 0) t9.push(new E.TableHeader(company.getCustomFieldLabel$1(customField1), false, _null)); if (company.getCustomFieldLabel$1(customField2).length !== 0) t9.push(new E.TableHeader(company.getCustomFieldLabel$1(customField2), false, _null)); if (company.getCustomFieldLabel$1(customField3).length !== 0) t9.push(new E.TableHeader(company.getCustomFieldLabel$1(customField3), false, _null)); if (company.getCustomFieldLabel$1(customField4).length !== 0) t9.push(new E.TableHeader(company.getCustomFieldLabel$1(customField4), false, _null)); if (hasTax1) { t11 = t1.get$tax(); t9.push(new E.TableHeader(t11 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), false, _null)); } if (hasTax2) { t11 = t1.get$tax(); t9.push(new E.TableHeader(t11 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), false, _null)); } if (hasTax3) { t11 = t1.get$tax(); t9.push(new E.TableHeader(t11 + (company.settings.enableInclusiveTaxes ? " - " + t1.get$inclusive() : ""), false, _null)); } t9.push(new E.TableHeader(_this._widget.isTasks ? t1.get$rate(t1) : t1.get$unitCost(), false, _null)); if (!t2 || _this._widget.isTasks) { if (_this._widget.isTasks) { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t8), "hours"); if (t11 == null) t11 = ""; } else t11 = t1.get$quantity(); t9.push(new E.TableHeader(t11, false, _null)); } if (t3) t9.push(new E.TableHeader(t1.get$discount(), false, _null)); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t8), "line_total"); t9.push(new E.TableHeader(t8 == null ? "" : t8, false, _null)); t9.push(new E.TableHeader("", false, _null)); t8 = H.setRuntimeTypeInfo([new S.TableRow(_null, tableHeaderColor.length !== 0 ? new S.BoxDecoration(E.convertHexStringToColor(tableHeaderColor), _null, _null, _null, _null, _null, C.BoxShape_0) : _null, t9)], type$.JSArray_legacy_TableRow); for (t9 = type$.PopupMenuButton_legacy_String, t11 = type$.legacy_String, index = 0; index < J.get$length$asx(lineItems._copy_on_write_list$_list); ++index) { if (!(J.$index$asx(lineItems._copy_on_write_list$_list, index).typeId === "2" && _this._widget.isTasks)) t12 = J.$index$asx(lineItems._copy_on_write_list$_list, index).typeId !== "2" && !_this._widget.isTasks || J.get$isEmpty$asx(J.$index$asx(lineItems._copy_on_write_list$_list, index)); else t12 = true; if (t12) { t12 = "__line_item_" + index + "_" + H.S(J.$index$asx(lineItems._copy_on_write_list$_list, index).createdAt) + "__"; t13 = "__line_item_" + index + "_name__"; t13 = L.TypeAheadFormField$(1, true, new P.Duration(0), J.$index$asx(lineItems._copy_on_write_list$_list, index).productKey, new E._InvoiceEditItemsDesktopState_build_closure4(_this, productState, lineItems, index, state, invoice, company), new D.ValueKey(t13, t7), new E._InvoiceEditItemsDesktopState_build_closure5(), new E._InvoiceEditItemsDesktopState_build_closure6(_this, lineItems, index, productState, state, invoice, company), C.SuggestionsBoxDecoration_null, new E._InvoiceEditItemsDesktopState_build_closure7(productIds, productState), new L.TextFieldConfiguration(C.InputDecoration_so3, _null, _null, _null, C.TextAlign_4, _null, true, C.TextInputType_0_null_null, false, _null, true, 1, _null, _null, true, false, new E._InvoiceEditItemsDesktopState_build_closure8(_this, lineItems, index), _null, _null, _null, 2, _null, _null, _null, C.EdgeInsets_20_20_20_20, C.TextCapitalization_3, _null, true), t11); t14 = "__line_item_" + index + "_description__"; t15 = _this._autocompleteFocusIndex; t14 = H.setRuntimeTypeInfo([new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, t13, _null), _null, new E._InvoiceEditItemsDesktopState_build_closure9(_this, index), false, _null, true, true, _null, true, _null), new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new A.GrowableFormField(J.$index$asx(lineItems._copy_on_write_list$_list, index).notes, new E._InvoiceEditItemsDesktopState_build_closure10(_this, lineItems, index), t15 === index, new D.ValueKey(t14, t7)), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure11(_this), false, _null, true, true, _null, true, _null)], t10); if (company.getCustomFieldLabel$1(customField1).length !== 0) { t13 = J.$index$asx(lineItems._copy_on_write_list$_list, index).customValue1; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new B.CustomField(_null, new E._InvoiceEditItemsDesktopState_build_closure12(_this, lineItems, index), _this._widget.entityViewModel.onSavePressed, customField1, t13, true, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure13(_this), false, _null, true, true, _null, true, _null)); } if (company.getCustomFieldLabel$1(customField2).length !== 0) { t13 = J.$index$asx(lineItems._copy_on_write_list$_list, index).customValue2; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new B.CustomField(_null, new E._InvoiceEditItemsDesktopState_build_closure14(_this, lineItems, index), _this._widget.entityViewModel.onSavePressed, customField2, t13, true, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure15(_this), false, _null, true, true, _null, true, _null)); } if (company.getCustomFieldLabel$1(customField3).length !== 0) { t13 = J.$index$asx(lineItems._copy_on_write_list$_list, index).customValue3; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new B.CustomField(_null, new E._InvoiceEditItemsDesktopState_build_closure16(_this, lineItems, index), _this._widget.entityViewModel.onSavePressed, customField3, t13, true, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure17(_this), false, _null, true, true, _null, true, _null)); } if (company.getCustomFieldLabel$1(customField4).length !== 0) { t13 = J.$index$asx(lineItems._copy_on_write_list$_list, index).customValue4; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new B.CustomField(_null, new E._InvoiceEditItemsDesktopState_build_closure18(_this, lineItems, index), _this._widget.entityViewModel.onSavePressed, customField4, t13, true, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure19(_this), false, _null, true, true, _null, true, _null)); } if (hasTax1) t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new D.TaxRateDropdown(_null, new E._InvoiceEditItemsDesktopState_build_closure20(_this, lineItems, index), J.$index$asx(lineItems._copy_on_write_list$_list, index).taxName1, J.$index$asx(lineItems._copy_on_write_list$_list, index).taxRate1, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure21(_this), false, _null, true, true, _null, true, _null)); if (hasTax2) t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new D.TaxRateDropdown(_null, new E._InvoiceEditItemsDesktopState_build_closure22(_this, lineItems, index), J.$index$asx(lineItems._copy_on_write_list$_list, index).taxName2, J.$index$asx(lineItems._copy_on_write_list$_list, index).taxRate2, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure23(_this), false, _null, true, true, _null, true, _null)); if (hasTax3) t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new D.TaxRateDropdown(_null, new E._InvoiceEditItemsDesktopState_build_closure24(_this, lineItems, index), J.$index$asx(lineItems._copy_on_write_list$_list, index).taxName3, J.$index$asx(lineItems._copy_on_write_list$_list, index).taxRate3, _null), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure25(_this), false, _null, true, true, _null, true, _null)); t13 = "__line_item_" + index + "_cost__"; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new S.DecoratedFormField(_null, _null, _null, Y.formatNumber(J.$index$asx(lineItems._copy_on_write_list$_list, index).cost, context, t6, _null, C.FormatNumberType_4, true, _null, false), _null, new N.TextInputType(2, true, true), _null, _null, false, true, false, false, false, _null, new E._InvoiceEditItemsDesktopState_build_closure26(_this, lineItems, index), _null, _null, _null, _this._widget.entityViewModel.onSavePressed, C.TextAlign_1, _null, _null, false, false, true, _null, new D.ValueKey(t13, t7)), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure27(_this), false, _null, true, true, _null, true, _null)); if (!t2 || _this._widget.isTasks) { t13 = "__line_item_" + index + "_quantity__"; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new S.DecoratedFormField(_null, _null, _null, Y.formatNumber(J.$index$asx(lineItems._copy_on_write_list$_list, index).quantity, context, t6, _null, C.FormatNumberType_5, true, _null, false), _null, new N.TextInputType(2, true, true), _null, _null, false, true, false, false, false, _null, new E._InvoiceEditItemsDesktopState_build_closure28(_this, lineItems, index), _null, _null, _null, _this._widget.entityViewModel.onSavePressed, C.TextAlign_1, _null, _null, false, false, true, _null, new D.ValueKey(t13, t7)), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure29(_this), false, _null, true, true, _null, true, _null)); } if (t3) { t13 = "__line_item_" + index + "_discount__"; t14.push(new L.Focus(_null, new T.Padding(C.EdgeInsets_0_0_16_0, new S.DecoratedFormField(_null, _null, _null, Y.formatNumber(J.$index$asx(lineItems._copy_on_write_list$_list, index).discount, context, t6, _null, C.FormatNumberType_5, true, _null, false), _null, new N.TextInputType(2, true, true), _null, _null, false, true, false, false, false, _null, new E._InvoiceEditItemsDesktopState_build_closure30(_this, lineItems, index), _null, _null, _null, _this._widget.entityViewModel.onSavePressed, C.TextAlign_1, _null, _null, false, false, true, _null, new D.ValueKey(t13, t7)), _null), _null, new E._InvoiceEditItemsDesktopState_build_closure31(_this), false, _null, true, true, _null, true, _null)); } t13 = "__total_" + index + "_" + H.S(J.total$2$x(J.$index$asx(lineItems._copy_on_write_list$_list, index), invoice, precision)) + "_" + t6 + "__"; t14.push(new T.Padding(C.EdgeInsets_0_0_16_0, E.TextFormField$(true, _null, false, _null, _null, C.InputDecoration_so3, false, false, _null, Y.formatNumber(J.total$2$x(J.$index$asx(lineItems._copy_on_write_list$_list, index), invoice, precision), context, t6, _null, C.FormatNumberType_0, true, _null, false), _null, new D.ValueKey(t13, t7), _null, 1, _null, false, _null, _null, _null, _null, true, _null, C.TextAlign_1, _null, _null), _null)); t14.push(new Z.PopupMenuButton(new E._InvoiceEditItemsDesktopState_build_closure32(includedLineItems, lineItems, index, t1), _null, new E._InvoiceEditItemsDesktopState_build_closure33(_this, t1, viewModel, index, lineItems), _null, C.EdgeInsets_8_8_8_8, _null, new L.Icon(C.IconData_58372_MaterialIcons_null_false, _null, _null, _null), !J.get$isEmpty$asx(J.$index$asx(lineItems._copy_on_write_list$_list, index)), _null, _null, t9)); t8.push(new S.TableRow(new D.ValueKey(t12, t7), _null, t14)); } } return Y.FormCard$(S.Table$(t8, t4, C.FlexColumnWidth_1, C.TableCellVerticalAlignment_2, new D.ValueKey(t5, t7)), _null, _null, 4, false, _null, false, C.EdgeInsets_12_0_12_0); } }; E._InvoiceEditItemsDesktopState__updateTable_closure.prototype = { call$0: function() { this.$this._invoice_edit_items_desktop$_updatedAt = Date.now(); }, $signature: 1 }; E._InvoiceEditItemsDesktopState__onChanged_closure.prototype = { call$0: function() { this.viewModel.onChangedInvoiceItem.call$2(this.lineItem, this.index); }, $signature: 1 }; E._InvoiceEditItemsDesktopState__onFocusChange_closure.prototype = { call$1: function(duration) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } }, $signature: 45 }; E._InvoiceEditItemsDesktopState_build_closure.prototype = { call$1: function(lineItem) { var t1 = lineItem.typeId === "2"; if (!(t1 && this.$this._widget.isTasks)) t1 = !t1 && !this.$this._widget.isTasks || lineItem.get$isEmpty(lineItem); else t1 = true; return t1; }, $signature: 58 }; E._InvoiceEditItemsDesktopState_build_closure0.prototype = { call$1: function(item) { return item.taxName1.length !== 0; }, $signature: 58 }; E._InvoiceEditItemsDesktopState_build_closure1.prototype = { call$1: function(item) { return item.taxName2.length !== 0; }, $signature: 58 }; E._InvoiceEditItemsDesktopState_build_closure2.prototype = { call$1: function(item) { return item.taxName3.length !== 0; }, $signature: 58 }; E._InvoiceEditItemsDesktopState_build_closure3.prototype = { call$1: function(item) { return item.get$isEmpty(item); }, $signature: 58 }; E._InvoiceEditItemsDesktopState_build_closure9.prototype = { call$1: function(hasFocus) { var t1 = this.$this; t1._autocompleteFocusIndex = this.index; t1._onFocusChange$0(); }, $signature: 20 }; E._InvoiceEditItemsDesktopState_build_closure5.prototype = { call$1: function(context) { return T.SizedBox$(null, null, null); }, $signature: 536 }; E._InvoiceEditItemsDesktopState_build_closure7.prototype = { call$1: function(pattern) { var t1 = J.where$1$ax(this.productIds, new E._InvoiceEditItemsDesktopState_build__closure12(this.productState, pattern)); return P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); }, $signature: 535 }; E._InvoiceEditItemsDesktopState_build__closure12.prototype = { call$1: function(productId) { return C.JSString_methods.contains$1(J.$index$asx(this.productState.map._map$_map, productId).productKey.toLowerCase(), this.pattern.toLowerCase()); }, $signature: 16 }; E._InvoiceEditItemsDesktopState_build_closure4.prototype = { call$2: function(context, productId) { var _this = this, _null = null, t1 = K.Theme_of(context).cardColor, t2 = _this.productState; return T.Listener$(C.HitTestBehavior_0, M.Container$(_null, Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, _null, false, _null, _null, _null, _null, L.Text$(J.$index$asx(t2.map._map$_map, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new E._InvoiceEditItemsDesktopState_build__closure13(_this.$this, _this.lineItems, _this.index, t2, productId, _this.state, _this.invoice, _this.company), _null, _null, _null); }, $signature: 534 }; E._InvoiceEditItemsDesktopState_build__closure13.prototype = { call$1: function(_) { var currency, cost, t6, _this = this, t1 = {}, t2 = _this.index, item = J.$index$asx(_this.lineItems._copy_on_write_list$_list, t2), product = J.$index$asx(_this.productState.map._map$_map, _this.productId), t3 = _this.state, t4 = t3.uiState.selectedCompanyIndex, t5 = _this.invoice, client = J.$index$asx(t3.userCompanyStates._list, t4).clientState.$get$1(0, t5.clientId); t3 = t3.staticState.currencyMap; t4 = client.settings.currencyId; currency = J.$index$asx(t3._map$_map, t4); cost = product.price; t1.cost = cost; t3 = _this.company; if (t3.convertProductExchangeRate) { t6 = t3.settings.currencyId; t4 = t4 !== (t6 == null ? "1" : t6); } else t4 = false; if (t4) t1.cost = Y.round(cost * t5.exchangeRate, currency.precision); t4 = _this.$this; t4._invoice_edit_items_desktop$_onChanged$3$debounce(item.rebuild$1(new E._InvoiceEditItemsDesktopState_build___closure(t1, product, item, t3)), t2, false); t4._updateTable$0(); }, $signature: 533 }; E._InvoiceEditItemsDesktopState_build___closure.prototype = { call$1: function(b) { var t2, t3, t4, t5, _this = this, t1 = _this.product; b.get$_invoice_model$_$this()._invoice_model$_productKey = t1.productKey; t2 = _this.item; t3 = t2.typeId === "2"; t4 = !t3; t5 = !t4 || !_this.company.fillProducts ? t2.notes : t1.notes; b.get$_invoice_model$_$this()._invoice_model$_notes = t5; t3 = t3 && t2.cost !== 0 || !_this.company.fillProducts ? t2.cost : _this._box_0.cost; b.get$_invoice_model$_$this()._invoice_model$_cost = t3; b.get$_invoice_model$_$this()._productCost = t1.cost; if (!t4 || t2.quantity !== 0) t2 = t2.quantity; else { t2 = t1.quantity; if (t2 === 0) t2 = 1; } b.get$_invoice_model$_$this()._invoice_model$_quantity = t2; b.get$_invoice_model$_$this()._invoice_model$_customValue1 = t1.customValue1; b.get$_invoice_model$_$this()._invoice_model$_customValue2 = t1.customValue2; b.get$_invoice_model$_$this()._invoice_model$_customValue3 = t1.customValue3; b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1.customValue4; t2 = _this.company.numberOfItemTaxRates; t3 = t2 >= 1; t4 = t3 ? t1.taxName1 : ""; b.get$_invoice_model$_$this()._taxName1 = t4; t3 = t3 ? t1.taxRate1 : 0; b.get$_invoice_model$_$this()._taxRate1 = t3; t3 = t2 >= 2; t4 = t3 ? t1.taxName2 : ""; b.get$_invoice_model$_$this()._taxName2 = t4; t3 = t3 ? t1.taxRate2 : 0; b.get$_invoice_model$_$this()._taxRate2 = t3; t2 = t2 >= 3; t3 = t2 ? t1.taxName3 : ""; b.get$_invoice_model$_$this()._taxName3 = t3; t1 = t2 ? t1.taxRate3 : 0; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure6.prototype = { call$1: function(suggestion) { return; }, $signature: 7 }; E._InvoiceEditItemsDesktopState_build_closure8.prototype = { call$1: function(value) { var t1 = this.index; this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure11(value)), t1); }, $signature: 7 }; E._InvoiceEditItemsDesktopState_build__closure11.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_productKey = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure11.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure10.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure10(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure10.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_notes = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure13.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure12.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure9(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure9.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue1 = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure15.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure14.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure8(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure8.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue2 = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure17.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure16.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure7(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure7.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue3 = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure19.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure18.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure6(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure6.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._invoice_model$_customValue4 = this.value; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure21.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure20.prototype = { call$1: function(taxRate) { 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 E._InvoiceEditItemsDesktopState_build__closure5(taxRate)), t1, false); }, $signature: 426 }; E._InvoiceEditItemsDesktopState_build__closure5.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName1 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate1 = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure23.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure22.prototype = { call$1: function(taxRate) { 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 E._InvoiceEditItemsDesktopState_build__closure4(taxRate)), t1, false); }, $signature: 426 }; E._InvoiceEditItemsDesktopState_build__closure4.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName2 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate2 = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure25.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure24.prototype = { call$1: function(taxRate) { 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 E._InvoiceEditItemsDesktopState_build__closure3(taxRate)), t1, false); }, $signature: 426 }; E._InvoiceEditItemsDesktopState_build__closure3.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_invoice_model$_$this()._taxName3 = t2; t1 = t1.rate; b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure27.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure26.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure2(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure2.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.value, false); b.get$_invoice_model$_$this()._invoice_model$_cost = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure29.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure28.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure1(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure1.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.value, false); b.get$_invoice_model$_$this()._invoice_model$_quantity = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure31.prototype = { call$1: function(hasFocus) { return this.$this._onFocusChange$0(); }, $signature: 34 }; E._InvoiceEditItemsDesktopState_build_closure30.prototype = { call$1: function(value) { var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$2(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new E._InvoiceEditItemsDesktopState_build__closure0(value)), t1); }, $signature: 59 }; E._InvoiceEditItemsDesktopState_build__closure0.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.value, false); b.get$_invoice_model$_$this()._discount = t1; return b; }, $signature: 54 }; E._InvoiceEditItemsDesktopState_build_closure32.prototype = { call$1: function(context) { var _this = this, t1 = _this.includedLineItems, sectionIndex = C.JSArray_methods.indexOf$1(t1, J.$index$asx(_this.lineItems._copy_on_write_list$_list, _this.index)), t2 = P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_IconData); if (sectionIndex > 0) t2.$indexSet(0, _this.localization.get$moveTop(), C._MdiIconData_AmO0); if (sectionIndex > 1) t2.$indexSet(0, _this.localization.get$moveUp(), C._MdiIconData_Qa61); if (sectionIndex < t1.length - 2) t2.$indexSet(0, _this.localization.get$moveDown(), C._MdiIconData_Gjc0); if (sectionIndex < t1.length - 1) t2.$indexSet(0, _this.localization.get$moveBottom(), C._MdiIconData_2C70); t1 = _this.localization; t2.$indexSet(0, t1.get$remove(t1), C.IconData_57704_MaterialIcons_null_false); t1 = t2.get$keys(t2); t1 = H.MappedIterable_MappedIterable(t1, new E._InvoiceEditItemsDesktopState_build__closure(t2), H._instanceType(t1)._eval$1("Iterable.E"), type$.legacy_PopupMenuItem_legacy_String); return P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")); }, $signature: 532 }; E._InvoiceEditItemsDesktopState_build__closure.prototype = { call$1: function(option) { return Z.PopupMenuItem$(new U.IconText(option, this.options.$index(0, option), null, null, null), option, type$.legacy_String); }, $signature: 598 }; E._InvoiceEditItemsDesktopState_build_closure33.prototype = { call$1: function(action) { var _this = this, t1 = _this.localization; if (action === t1.get$moveTop()) _this.viewModel.onMovedInvoiceItem.call$2(_this.index, 0); else if (action === t1.get$moveUp()) { t1 = _this.index; _this.viewModel.onMovedInvoiceItem.call$2(t1, t1 - 1); } else if (action === t1.get$moveDown()) { t1 = _this.index; _this.viewModel.onMovedInvoiceItem.call$2(t1, t1 + 1); } else if (action === t1.get$moveBottom()) _this.viewModel.onMovedInvoiceItem.call$2(_this.index, J.get$length$asx(_this.lineItems._copy_on_write_list$_list) - 2); else if (action === t1.get$remove(t1)) _this.viewModel.onRemoveInvoiceItemPressed.call$1(_this.index); _this.$this._updateTable$0(); }, $signature: 7 }; E.TableHeader.prototype = { build$1: function(_, context) { var tableFontColor, t3, _null = null, t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().prefState.customColors._map$_map, t2 = J.getInterceptor$asx(t1), tableHeaderColor = t2.$index(t1, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; tableFontColor = t2.$index(t1, "invoice_header_font_color"); if (tableFontColor == null) tableFontColor = ""; t1 = tableHeaderColor.length === 0; t2 = t1 ? 0 : 8; t3 = t1 ? 8 : 16; t1 = !t1 && this.isFirst ? 4 : 0; return new T.Padding(new V.EdgeInsets(t1, t2, 0, t3), L.Text$(this.label, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, tableFontColor.length !== 0 ? E.convertHexStringToColor(tableFontColor) : C.MaterialColor_Map_HFpTk_4288585374, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), C.TextAlign_0, _null, _null), _null); } }; O.InvoiceEditItemsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.InvoiceEditItemsScreen_build_closure(this), new O.InvoiceEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditItemsVM); } }; O.InvoiceEditItemsScreen_build_closure0.prototype = { call$1: function(store) { return O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2292 }; O.InvoiceEditItemsScreen_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new E.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new G.InvoiceEditItems(viewModel, t2, null); }, $signature: 2293 }; O.EntityEditItemsVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; O.InvoiceEditItemsVM.prototype = {}; O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure.prototype = { call$1: function(index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.DeleteInvoiceItem(index)); }, $signature: 103 }; O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.EditInvoiceItem(null)); }, $signature: 9 }; O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1.prototype = { call$2: function(invoiceItem, index) { var t2, t1 = this.store; if (index == J.get$length$asx(t1.get$_store$_state().uiState.invoiceUIState.editing.lineItems._list)) { t2 = invoiceItem.rebuild$1(new O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure(this.isTasks)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.AddInvoiceItem(t2)); } else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.UpdateInvoiceItem(index, invoiceItem)); }, $signature: 241 }; O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure.prototype = { call$1: function(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 54 }; O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2.prototype = { call$2: function(oldIndex, newIndex) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.MoveInvoiceItem(oldIndex, newIndex)); }, $signature: 141 }; Z.InvoiceEditNotes.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new Z.InvoiceEditNotesState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; Z.InvoiceEditNotesState.prototype = { didChangeDependencies$0: function() { var invoice, _this = this, t1 = _this._invoice_edit_notes$_publicNotesController, t2 = _this._invoice_edit_notes$_privateNotesController, t3 = _this._invoice_edit_notes$_termsController, t4 = _this._invoice_edit_notes$_footerController, t5 = H.setRuntimeTypeInfo([t1, t2, t3, t4], type$.JSArray_legacy_TextEditingController); _this._invoice_edit_notes$_controllers = t5; C.JSArray_methods.forEach$1(t5, new Z.InvoiceEditNotesState_didChangeDependencies_closure(_this)); invoice = _this._widget.viewModel.invoice; t1.set$text(0, invoice.publicNotes); t2.set$text(0, invoice.privateNotes); t3.set$text(0, invoice.terms); t4.set$text(0, invoice.footer); C.JSArray_methods.forEach$1(_this._invoice_edit_notes$_controllers, new Z.InvoiceEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._invoice_edit_notes$_controllers, new Z.InvoiceEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _invoice_edit_notes$_onChanged$0: function() { var _this = this, invoice = _this._widget.viewModel.invoice.rebuild$1(new Z.InvoiceEditNotesState__onChanged_closure(_this)); if (!J.$eq$(invoice, _this._widget.viewModel.invoice)) _this._invoice_edit_notes$_debouncer.run$1(new Z.InvoiceEditNotesState__onChanged_closure0(_this, invoice)); }, build$1: function(_, context) { var _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, invoice = viewModel.invoice, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), client = t4.$index(t3, t2).clientState.$get$1(0, invoice.clientId), t5 = client.settings, t6 = t4.$index(t3, t2).groupState.$get$1(0, client.groupId).settings, settings = G.SettingsEntity_SettingsEntity(t5, t4.$index(t3, t2).userCompany.company.settings, t6); t2 = invoice.entityType; t3 = t2 === C.EntityType_credit; if (t3) t4 = t1.get$creditTerms(); else t4 = t2 === C.EntityType_quote ? t1.get$quoteTerms() : t1.get$invoiceTerms(); t5 = !invoice.get$isNew() ? "" : settings.getDefaultTerms$1(t2); t4 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_termsController, _null, true, _null, t5, _null, _null, false, false, _null, C.TextInputType_1_null_null, t4, 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); if (t3) t3 = t1.get$creditFooter(); else t3 = t2 === C.EntityType_quote ? t1.get$quoteFooter() : t1.get$invoiceFooter(); t2 = !invoice.get$isNew() ? "" : settings.getDefaultFooter$1(t2); t3 = S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_footerController, _null, true, _null, t2, _null, _null, false, false, _null, C.TextInputType_1_null_null, t3, 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t2 = t1.get$publicNotes(); t5 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t4, t3, S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_publicNotesController, _null, true, _null, client.publicNotes, _null, _null, false, false, _null, C.TextInputType_1_null_null, t2, 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._invoice_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t5), _null, 4, false, _null, true, _null)], t5), _null, _null, false, _null); } }; Z.InvoiceEditNotesState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_invoice_edit_notes$_onChanged()); }, $signature: 10 }; Z.InvoiceEditNotesState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_invoice_edit_notes$_onChanged()); }, $signature: 10 }; Z.InvoiceEditNotesState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_invoice_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; Z.InvoiceEditNotesState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._invoice_edit_notes$_publicNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_publicNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_notes$_privateNotesController._change_notifier$_value.text); b.get$_invoice_model$_$this()._invoice_model$_privateNotes = t2; t2 = J.trim$0$s(t1._invoice_edit_notes$_termsController._change_notifier$_value.text); b.get$_invoice_model$_$this()._terms = t2; t1 = J.trim$0$s(t1._invoice_edit_notes$_footerController._change_notifier$_value.text); b.get$_invoice_model$_$this()._footer = t1; return b; }, $signature: 11 }; Z.InvoiceEditNotesState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.invoice); }, $signature: 1 }; E.InvoiceEditNotesScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.InvoiceEditNotesScreen_build_closure(), new E.InvoiceEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditNotesVM); } }; E.InvoiceEditNotesScreen_build_closure0.prototype = { call$1: function(store) { return E.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore(store); }, $signature: 2294 }; E.InvoiceEditNotesScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.InvoiceEditNotes(viewModel, null); }, $signature: 2295 }; E.EntityEditNotesVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; E.InvoiceEditNotesVM.prototype = {}; E.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure.prototype = { call$1: function(invoice) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoice(invoice)); }, $signature: 138 }; A.InvoiceEditPDF.prototype = { createState$0: function() { return new A.InvoiceEditPDFState(C._StateLifecycle_0); } }; A.InvoiceEditPDFState.prototype = { didChangeDependencies$0: function() { var viewModel, t1, t2, credentials, url, _this = this; _this.super$State$didChangeDependencies(); viewModel = _this._widget.viewModel; t1 = viewModel.invoice; t2 = t1.clientId; if (t2.length === 0 || _this._invoice_edit_pdf$_isLoading) return; _this.setState$1(new A.InvoiceEditPDFState_didChangeDependencies_closure(_this)); t2 = viewModel.state; credentials = t2.get$credentials(t2); url = credentials.url + "/live_preview?entity=" + A.toSnakeCase(t1.entityType.name); if (!t1.get$isNew()) url += "&entity_id=" + t1.id; if (Y.cleanApiUrl(t2.authState.url) === "https://invoicing.co") url = C.JSString_methods.replaceFirst$2(url, "//", "//preview."); new F.WebClient().post$4$data$rawResponse(url, credentials.token, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$invoiceEntitySerializer(), t1)), true).then$1$1(0, new A.InvoiceEditPDFState_didChangeDependencies_closure0(_this), type$.Null).catchError$1(new A.InvoiceEditPDFState_didChangeDependencies_closure1(_this)); }, build$1: function(_, context) { var _null = null, t1 = this._widget.viewModel.invoice.clientId; if (t1.length === 0) return new U.HelpText(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$noClientSelected(), _null); t1 = this._invoice_edit_pdf$_pdfString; if (t1 == null && this._invoice_edit_pdf$_pdfController == null) return T.Center$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), _null, _null); return T.Center$(new G.HtmlElementView(t1, _null), _null, _null); } }; A.InvoiceEditPDFState_didChangeDependencies_closure.prototype = { call$0: function() { this.$this._invoice_edit_pdf$_isLoading = true; }, $signature: 1 }; A.InvoiceEditPDFState_didChangeDependencies_closure0.prototype = { call$1: function(response) { var t1 = this.$this; t1.setState$1(new A.InvoiceEditPDFState_didChangeDependencies__closure0(t1, response)); }, $signature: 8 }; A.InvoiceEditPDFState_didChangeDependencies__closure0.prototype = { call$0: function() { var t2, t1 = this.$this; t1._invoice_edit_pdf$_isLoading = false; t2 = this.response.get$bodyBytes(); t2 = "data:application/pdf;base64," + C.C_Base64Codec.get$encoder().convert$1(t2); t1._invoice_edit_pdf$_pdfString = t2; L.WebUtils_registerWebView(t2); }, $signature: 1 }; A.InvoiceEditPDFState_didChangeDependencies_closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new A.InvoiceEditPDFState_didChangeDependencies__closure(t1)); }, $signature: 8 }; A.InvoiceEditPDFState_didChangeDependencies__closure.prototype = { call$0: function() { this.$this._invoice_edit_pdf$_isLoading = false; }, $signature: 1 }; B.InvoiceEditPDFScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.InvoiceEditPDFScreen_build_closure(), new B.InvoiceEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditPDFVM); } }; B.InvoiceEditPDFScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.invoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new B.InvoiceEditPDFVM(state, J.$index$asx(t2._list, t1).userCompany.company, invoice); }, $signature: 2296 }; B.InvoiceEditPDFScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2297 }; B.EntityEditPDFVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; B.InvoiceEditPDFVM.prototype = {}; M.InvoiceEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.InvoiceEditScreen_build_closure(), new M.InvoiceEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceEditVM); } }; M.InvoiceEditScreen_build_closure0.prototype = { call$1: function(store) { return M.InvoiceEditVM_InvoiceEditVM$fromStore(store); }, $signature: 2298 }; M.InvoiceEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new F.InvoiceEdit(viewModel, new D.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2299 }; M.AbstractInvoiceEditVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; M.InvoiceEditVM.prototype = {}; M.InvoiceEditVM_InvoiceEditVM$fromStore_closure.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new M.InvoiceEditVM_InvoiceEditVM$fromStore__closure0(this.store, action).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; M.InvoiceEditVM_InvoiceEditVM$fromStore__closure0.prototype = { call$0: function() { var t3, $navigator, t4, state, t5, i, lineItem, t6, t7, t8, t9, _null = null, t1 = this.store, invoice = t1.get$_store$_state().uiState.invoiceUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t4 = invoice.clientId; if (t4.length === 0) { E.showDialog(true, new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure0(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), _null, true, type$.legacy_ErrorDialog); return _null; } state = t1.get$_store$_state(); for (t2 = invoice.lineItems._list, t5 = J.getInterceptor$asx(t2), i = 0; i < t5.get$length(t2); ++i) { lineItem = t5.$index(t2, i); t6 = state.userCompanyStates; t7 = state.uiState.selectedCompanyIndex; t6 = t6._list; t8 = J.getInterceptor$asx(t6); t9 = t8.$index(t6, t7).taskState.$get$1(0, lineItem.taskId).clientId; if (t9.length !== 0 && t9 !== t4) { t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure1(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), _null, true, type$.legacy_ErrorDialog); return _null; } t6 = t8.$index(t6, t7).expenseState.$get$1(0, lineItem.expenseId).clientId; if ((t6 == null ? "" : t6).length !== 0 && t6 !== t4) { t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure2(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), _null, true, type$.legacy_ErrorDialog); return _null; } } if (!invoice.get$isNew()) { t2 = state.userCompanyStates; t4 = state.uiState.selectedCompanyIndex; t2 = !Z.hasInvoiceChanges(invoice, J.$index$asx(t2._list, t4).invoiceState.map) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailInvoice, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), this.action); } else t2 = false; t4 = this.action; if (t2) M.handleEntitiesActions(H.setRuntimeTypeInfo([invoice], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new P._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), invoice, t4)); return t2.then$1$1(0, new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure3(invoice, t3, state, t1, $navigator, t4), type$.Null).catchError$1(new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure4()); } }, $signature: 31 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure0.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 21 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure1.prototype = { call$1: function(context) { var _s24_ = "error_cross_client_tasks", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), _s24_); return new M.ErrorDialog(t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s24_) : t1, false, null); }, $signature: 21 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure2.prototype = { call$1: function(context) { var _s27_ = "error_cross_client_expenses", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), _s27_); return new M.ErrorDialog(t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s27_) : t1, false, null); }, $signature: 21 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure3.prototype = { call$1: function(savedInvoice) { var _this = this, _s13_ = "/invoice/view", t1 = _this.invoice, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_invoice"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedInvoice(); M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedInvoice); } else { M.viewEntity(false, savedInvoice, null, false); if (t2.isEditorFullScreen$1(C.EntityType_invoice)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedInvoice, null); } } t1 = _this.action; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailInvoice, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), t1)) M.handleEntitiesActions(H.setRuntimeTypeInfo([savedInvoice], type$.JSArray_legacy_BaseEntity), t1, false); }, $signature: 68 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure4.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new M.InvoiceEditVM_InvoiceEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; M.InvoiceEditVM_InvoiceEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; M.InvoiceEditVM_InvoiceEditVM$fromStore_closure0.prototype = { call$2: function(items, clientId) { var t1, t2, _this = this; if (clientId != null && clientId.length !== 0) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = _this.invoice.rebuild$1(new M.InvoiceEditVM_InvoiceEditVM$fromStore__closure(clientId, J.$index$asx(t1.userCompanyStates._list, t2).clientState.$get$1(0, clientId))); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoice(t2)); } t1 = _this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.AddInvoiceItems(items)); if (items.length === 1) { t2 = J.get$length$asx(_this.invoice.lineItems._list); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.EditInvoiceItem(t2)); } }, $signature: 244 }; M.InvoiceEditVM_InvoiceEditVM$fromStore__closure.prototype = { call$1: function(b) { var t1, t2, t3; b.get$_invoice_model$_$this()._clientId = this.clientId; t1 = b.get$invitations(); t2 = this.client.get$emailContacts(); t3 = H._arrayInstanceType(t2)._eval$1("MappedListIterable<1,InvitationEntity*>"); t1.replace$1(0, D.BuiltList_BuiltList$from(P.List_List$of(new H.MappedListIterable(t2, new M.InvoiceEditVM_InvoiceEditVM$fromStore___closure(), t3), true, t3._eval$1("ListIterable.E")), type$.legacy_InvitationEntity)); return b; }, $signature: 11 }; M.InvoiceEditVM_InvoiceEditVM$fromStore___closure.prototype = { call$1: function(contact) { return Q.InvitationEntity_InvitationEntity(contact.id); }, $signature: 192 }; M.InvoiceEditVM_InvoiceEditVM$fromStore_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.state.uiState; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) M.viewEntitiesByType(C.EntityType_invoice, _null); else { M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, true); t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; D.InvoiceItemSelector.prototype = { createState$0: function() { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_BaseEntity); return new D._InvoiceItemSelectorState(t1, new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), null, C._StateLifecycle_0); }, onItemsSelected$1: function(arg0) { return this.onItemsSelected.call$1(arg0); }, onItemsSelected$2: function(arg0, arg1) { return this.onItemsSelected.call$2(arg0, arg1); } }; D._InvoiceItemSelectorState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._filterClientId = _this._widget.clientId; _this._invoice_item_selector$_tabController = U.TabController$(0, 3, _this); }, dispose$0: function(_) { this._invoice_item_selector$_textController.ChangeNotifier__listeners = null; this._invoice_item_selector$_tabController.dispose$0(0); this.super$__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin$dispose(0); }, _onItemsSelected$1: function(context) { var _this = this, items = H.setRuntimeTypeInfo([], type$.JSArray_legacy_InvoiceItemEntity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; C.JSArray_methods.forEach$1(_this._invoice_item_selector$_selected, new D._InvoiceItemSelectorState__onItemsSelected_closure(_this, items, J.$index$asx(t1._list, t2).userCompany.company, state, context)); _this._updateClientId$0(); _this._widget.onItemsSelected$2(items, _this._filterClientId); K.Navigator_of(context, false).pop$1(0, null); }, _toggleEntity$1: function(entity) { this.setState$1(new D._InvoiceItemSelectorState__toggleEntity_closure(this, entity)); }, _updateClientId$0: function() { var t1, _this = this, selected = C.JSArray_methods.firstWhere$2$orElse(_this._invoice_item_selector$_selected, new D._InvoiceItemSelectorState__updateClientId_closure(), new D._InvoiceItemSelectorState__updateClientId_closure0()); if (selected != null) { type$.legacy_BelongsToClient._as(selected); _this._filterClientId = selected.get$clientId(selected); } else { t1 = _this._widget.clientId; if (t1.length === 0) _this._filterClientId = null; } }, build$1: function(_, context) { var t4, company, showTabBar, t5, products, tasks, expenses, tabs, tabViews, t6, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); company = t4.$index(t2, t3).userCompany.company; if (_this._widget.showTasksAndExpenses) showTabBar = company.isModuleEnabled$1(C.EntityType_task) || company.isModuleEnabled$1(C.EntityType_expense); else showTabBar = false; t5 = J.where$1$ax($.$get$memoizedProductList().call$1(t4.$index(t2, t3).productState.map), new D._InvoiceItemSelectorState_build_closure(_this, state)); products = P.List_List$of(t5, true, t5.$ti._eval$1("Iterable.E")); t5 = J.where$1$ax($.$get$memoizedTaskList().call$5(t4.$index(t2, t3).taskState.map, _this._filterClientId, t4.$index(t2, t3).userState.map, t4.$index(t2, t3).clientState.map, t4.$index(t2, t3).projectState.map), new D._InvoiceItemSelectorState_build_closure0(_this, state)); tasks = P.List_List$of(t5, true, t5.$ti._eval$1("Iterable.E")); t3 = J.where$1$ax($.$get$memoizedClientExpenseList().call$2(t4.$index(t2, t3).expenseState.map, _this._filterClientId), new D._InvoiceItemSelectorState_build_closure1(_this, state)); expenses = P.List_List$of(t3, true, t3.$ti._eval$1("Iterable.E")); t3 = t1.get$products(); t2 = products.length; t4 = type$.JSArray_legacy_Widget; tabs = H.setRuntimeTypeInfo([E.Tab$(_null, t3 + (t2 !== 0 ? " (" + t2 + ")" : ""))], t4); tabViews = H.setRuntimeTypeInfo([new D._InvoiceItemSelectorState_build__productList(_this, products, state).call$0()], t4); if (company.isModuleEnabled$1(C.EntityType_task)) { t2 = t1.get$tasks(); t3 = tasks.length; tabs.push(E.Tab$(_null, t2 + (t3 !== 0 ? " (" + t3 + ")" : ""))); tabViews.push(new D._InvoiceItemSelectorState_build__taskList(_this, tasks, state).call$0()); } if (company.isModuleEnabled$1(C.EntityType_expense)) { t2 = t1.get$expenses(); t3 = expenses.length; tabs.push(E.Tab$(_null, t2 + (t3 !== 0 ? " (" + t3 + ")" : ""))); tabViews.push(new D._InvoiceItemSelectorState_build__expenseList(_this, expenses, state).call$0()); } t2 = L.Icon$(C.IconData_58727_MaterialIcons_null_false, _null, _null); t3 = _this._invoice_item_selector$_selected; t5 = T.Expanded$(Z.TextField$(true, _null, true, _null, _this._invoice_item_selector$_textController, _null, _null, _null, 2, L.InputDecoration$(_null, C._NoInputBorder_EYU, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, t3.length === 0 ? t1.get$filter(t1) : C.JSString_methods.replaceFirst$2(t1.get$countSelected(), ":count", "" + t3.length), _null, _null, _null, false, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, true, _null, false, _null, _null, _null, _null, _null, true, _null, 1, _null, false, "\u2022", new D._InvoiceItemSelectorState_build_closure2(_this), _null, _null, _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, C.TextAlign_4, _null, C.TextCapitalization_3, _null, _null, _null), 1); t6 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57706_MaterialIcons_null_false, _null, _null), 24, new D._InvoiceItemSelectorState_build_closure3(_this, context), C.EdgeInsets_8_8_8_8, _null, _null); if (t3.length !== 0) t1 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57686_MaterialIcons_null_false, _null, _null), 24, new D._InvoiceItemSelectorState_build_closure4(_this, context), C.EdgeInsets_8_8_8_8, _null, _null); else t1 = !state.prefState.isEditorFullScreen$1(C.EntityType_invoice) ? B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null), 24, new D._InvoiceItemSelectorState_build_closure5(_this, company), C.EdgeInsets_8_8_8_8, t1.get$createNew(), _null) : T.SizedBox$(_null, _null, _null); t1 = T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_10_0_10_0, t2, _null), t5, T.Row$(H.setRuntimeTypeInfo([t6, t1], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null)], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t2 = showTabBar ? new R.AppTabBar(tabs, _this._invoice_item_selector$_tabController, false, _null, _null) : T.SizedBox$(_null, _null, _null); return new E.ResponsivePadding(M.Material$(C.Duration_200000, true, _null, T.Column$(H.setRuntimeTypeInfo([t1, t2, T.Expanded$(showTabBar ? E.TabBarView$(tabViews, _this._invoice_item_selector$_tabController, _null) : C.JSArray_methods.get$first(tabViews), 1)], t4), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), C.Clip_0, _null, 4, _null, _null, _null, _null, C.MaterialType_0), _null); } }; D._InvoiceItemSelectorState__onItemsSelected_closure.prototype = { call$1: function(entity) { var t1, t2, t3, t4, _this = this; if (entity.get$entityType() === C.EntityType_product) { type$.legacy_ProductEntity._as(entity); t1 = _this.state; t2 = t1.uiState; t3 = t2.invoiceUIState.editing; t4 = t1.staticState.currencyMap; t2 = t2.selectedCompanyIndex; _this.items.push(O.convertProductToInvoiceItem(J.$index$asx(t1.userCompanyStates._list, t2).clientState.$get$1(0, _this.$this._widget.clientId), _this.company, t4, t3, entity)); } else if (entity.get$entityType() === C.EntityType_task) _this.items.push(U.convertTaskToInvoiceItem(_this.context, type$.legacy_TaskEntity._as(entity))); else if (entity.get$entityType() === C.EntityType_expense) _this.items.push(L.convertExpenseToInvoiceItem(_this.context, type$.legacy_ExpenseEntity._as(entity))); }, $signature: 365 }; D._InvoiceItemSelectorState__toggleEntity_closure.prototype = { call$0: function() { var t2, t3, t1 = this.$this; t1._invoice_item_selector$_filter = ""; t1._invoice_item_selector$_textController.set$text(0, ""); t2 = t1._invoice_item_selector$_selected; t3 = this.entity; if (C.JSArray_methods.contains$1(t2, t3)) C.JSArray_methods.remove$1(t2, t3); else t2.push(t3); t1._updateClientId$0(); }, $signature: 1 }; D._InvoiceItemSelectorState__updateClientId_closure.prototype = { call$1: function(entity) { var t1; if (type$.legacy_BelongsToClient._is(entity)) { t1 = entity.get$clientId(entity); t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = false; return t1; }, $signature: 194 }; D._InvoiceItemSelectorState__updateClientId_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; D._InvoiceItemSelectorState_build_closure.prototype = { call$1: function(entityId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, entity = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).productState.map._map$_map, entityId); return !entity.get$isArchived() && !entity.isDeleted && entity.matchesFilter$1(this.$this._invoice_item_selector$_filter); }, $signature: 16 }; D._InvoiceItemSelectorState_build_closure0.prototype = { call$1: function(entityId) { var t3, task, client, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); task = t3.$index(t1, t2).taskState.$get$1(0, entityId); client = t3.$index(t1, t2).clientState.$get$1(0, task.clientId); t1 = this.$this; t2 = C.JSArray_methods.contains$1(t1._widget.excluded, task); if (t2) return false; if (!task.matchesFilter$1(t1._invoice_item_selector$_filter)) { t1 = t1._invoice_item_selector$_filter; t1 = C.JSString_methods.contains$1(client.displayName.toLowerCase(), t1.toLowerCase()); } else t1 = true; return t1; }, $signature: 16 }; D._InvoiceItemSelectorState_build_closure1.prototype = { call$1: function(entityId) { var t3, expense, client, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); expense = t3.$index(t1, t2).expenseState.$get$1(0, entityId); client = t3.$index(t1, t2).clientState.$get$1(0, expense.clientId); t1 = this.$this; t2 = C.JSArray_methods.contains$1(t1._widget.excluded, expense); if (t2) return false; if (!expense.matchesFilter$1(t1._invoice_item_selector$_filter)) { t1 = t1._invoice_item_selector$_filter; t1 = C.JSString_methods.contains$1(client.displayName.toLowerCase(), t1.toLowerCase()); } else t1 = true; return t1; }, $signature: 16 }; D._InvoiceItemSelectorState_build__productList.prototype = { call$0: function() { var t1 = this.products; return X.ScrollableListViewBuilder$(new D._InvoiceItemSelectorState_build__productList_closure(this.$this, t1, this.state), t1.length, null, null); }, $signature: 133 }; D._InvoiceItemSelectorState_build__productList_closure.prototype = { call$2: function(context, index) { var entityId = this.products[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, product = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).productState.map._map$_map, entityId); t2 = this.$this; return T.ProductListItem$(t2._invoice_item_selector$_filter, C.JSArray_methods.contains$1(t2._invoice_item_selector$_selected, product), false, new D._InvoiceItemSelectorState_build__productList__closure(t2, product), new D._InvoiceItemSelectorState_build__productList__closure0(t2, product, context), product); }, "call*": "call$2", $requiredArgCount: 2, $signature: 723 }; D._InvoiceItemSelectorState_build__productList__closure.prototype = { call$1: function(checked) { return this.$this._toggleEntity$1(this.product); }, $signature: 34 }; D._InvoiceItemSelectorState_build__productList__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.product; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D._InvoiceItemSelectorState_build__taskList.prototype = { call$0: function() { var t1 = this.tasks; return X.ScrollableListViewBuilder$(new D._InvoiceItemSelectorState_build__taskList_closure(this.$this, t1, this.state), t1.length, null, null); }, $signature: 133 }; D._InvoiceItemSelectorState_build__taskList_closure.prototype = { call$2: function(context, index) { var entityId = this.tasks[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, task = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).taskState.map._map$_map, entityId); t2 = this.$this; return U.TaskListItem$(t2._invoice_item_selector$_filter, C.JSArray_methods.contains$1(t2._invoice_item_selector$_selected, task), false, new D._InvoiceItemSelectorState_build__taskList__closure(t2, task), new D._InvoiceItemSelectorState_build__taskList__closure0(t2, task, context), true, task); }, "call*": "call$2", $requiredArgCount: 2, $signature: 277 }; D._InvoiceItemSelectorState_build__taskList__closure.prototype = { call$1: function(checked) { return this.$this._toggleEntity$1(this.task); }, $signature: 34 }; D._InvoiceItemSelectorState_build__taskList__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.task; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D._InvoiceItemSelectorState_build__expenseList.prototype = { call$0: function() { var t1 = this.expenses; return X.ScrollableListViewBuilder$(new D._InvoiceItemSelectorState_build__expenseList_closure(this.$this, t1, this.state), t1.length, null, null); }, $signature: 133 }; D._InvoiceItemSelectorState_build__expenseList_closure.prototype = { call$2: function(context, index) { var _null = null, entityId = this.expenses[index], t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, expense = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map._map$_map, entityId); if (expense == null) expense = M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, _null, _null, _null); t1 = this.$this; t2 = C.JSArray_methods.contains$1(t1._invoice_item_selector$_selected, expense); return V.ExpenseListItem$(expense, t1._invoice_item_selector$_filter, t2, false, new D._InvoiceItemSelectorState_build__expenseList__closure(t1, expense), new D._InvoiceItemSelectorState_build__expenseList__closure0(t1, expense, context), true); }, "call*": "call$2", $requiredArgCount: 2, $signature: 457 }; D._InvoiceItemSelectorState_build__expenseList__closure.prototype = { call$1: function(checked) { return this.$this._toggleEntity$1(this.expense); }, $signature: 34 }; D._InvoiceItemSelectorState_build__expenseList__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._invoice_item_selector$_selected, t3 = this.expense; if (t2.length !== 0) t1._toggleEntity$1(t3); else { t2.push(t3); t1._onItemsSelected$1(this.context); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D._InvoiceItemSelectorState_build_closure2.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new D._InvoiceItemSelectorState_build__closure0(t1, value)); }, $signature: 7 }; D._InvoiceItemSelectorState_build__closure0.prototype = { call$0: function() { this.$this._invoice_item_selector$_filter = this.value; }, $signature: 1 }; D._InvoiceItemSelectorState_build_closure3.prototype = { call$0: function() { var t1 = this.$this; if (t1._invoice_item_selector$_textController._change_notifier$_value.text.length !== 0) t1.setState$1(new D._InvoiceItemSelectorState_build__closure(t1)); else K.Navigator_of(this.context, false).pop$1(0, null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D._InvoiceItemSelectorState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_item_selector$_textController.set$text(0, ""); t1._invoice_item_selector$_filter = ""; }, $signature: 1 }; D._InvoiceItemSelectorState_build_closure4.prototype = { call$0: function() { return this.$this._onItemsSelected$1(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D._InvoiceItemSelectorState_build_closure5.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget; t2.toString; t2.onItemsSelected$1(H.setRuntimeTypeInfo([Q.InvoiceItemEntity_InvoiceItemEntity(null, this.company.defaultQuantity ? 1 : 0)], type$.JSArray_legacy_InvoiceItemEntity)); t1 = t1._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; M.InvoiceEmailScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.InvoiceEmailScreen_build_closure(), new M.InvoiceEmailScreen_build_closure0(), _null, _null, new M.InvoiceEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailInvoiceVM); } }; M.InvoiceEmailScreen_build_closure1.prototype = { call$1: function(store) { var t3, invoice, client, state = store.get$_store$_state(), t1 = state.uiState, invoiceId = t1.invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); invoice = t3.$index(t2, t1).invoiceState.$get$1(0, invoiceId); client = t3.$index(t2, t1).clientState.$get$1(0, invoice.clientId); if (client.get$isStale()) { t1 = client.id; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t1)); } }, $signature: 397 }; M.InvoiceEmailScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoiceId = t1.invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return M.EmailInvoiceVM_EmailInvoiceVM$fromStore(store, J.$index$asx(t2._list, t1).invoiceState.$get$1(0, invoiceId)); }, $signature: 2301 }; M.InvoiceEmailScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoiceEmailView(vm, new D.ValueKey("__invoice_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2302 }; M.EmailEntityVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; M.EmailInvoiceVM.prototype = {}; M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, this.invoice.clientId)); }, $signature: 1 }; M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure0.prototype = { call$4: function(context, template, subject, body) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedInvoice(), D.getLayout(context) === C.AppLayout_mobile, t1); if (D.getLayout(context) !== C.AppLayout_mobile) completer.future.then$1$1(0, new M.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure(this.invoice), t1); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.EmailInvoiceRequest(completer, this.invoice.id, template, subject, body)); }, $signature: 398 }; M.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure.prototype = { call$1: function(value) { M.viewEntity(false, this.invoice, null, false); }, $signature: 3 }; M.InvoiceListItem.prototype = { build$1: function(_, context) { var t5, t6, client, invoiceUIState, listUIState, t7, isInMultiselect, t8, t9, isChecked, textStyle, t10, filterMatch, statusLabel, statusColor, textColor, subtitle, _this = this, _null = null, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); t6 = _this.invoice; client = t5.$index(t2, t4).clientState.$get$1(0, t6.clientId); invoiceUIState = t3.invoiceUIState; listUIState = state.getUIState$1(t6.entityType).get$listUIState(); t7 = _this.showCheckbox; isInMultiselect = t7 && listUIState.selectedIds != null; if (isInMultiselect) { t8 = t6.id; t9 = listUIState.selectedIds; isChecked = t9 != null && J.contains$1$asx(t9._list, t8); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t8 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t9 = _this.filter; if (t9 != null && t9.length !== 0) { t10 = t6.matchesFilterValue$1(t9); filterMatch = t10 == null ? client.matchesFilterValue$1(t9) : t10; } else filterMatch = _null; statusLabel = t8.lookup$1(C.Map_j34mP.$index(0, t6.get$calculatedStatusId())); statusColor = new E.InvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t6.get$calculatedStatusId()); textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.subtitle = ""; t9 = t6.date; if (t9.length !== 0) { subtitle = Y.formatDate(t9, context, true, true, false); t1.subtitle = subtitle; t9 = subtitle; } else t9 = ""; t10 = t6.dueDate; if (t10.length !== 0) { if (t9.length !== 0) t9 = t1.subtitle = t9 + " \u2022 "; t1.subtitle = t9 + Y.formatDate(t10, context, true, true, false); } if (D.getLayout(context) === C.AppLayout_desktop) { t9 = t6.id; t9 = t9 === (t3.get$isEditing() ? invoiceUIState.editing.id : invoiceUIState.selectedId); t3 = t9; } else t3 = false; return new L.DismissibleEntity(t5.$index(t2, t4).userCompany, t6, new A.LayoutBuilder(new M.InvoiceListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, t8, textStyle, filterMatch, textColor, statusLabel, statusColor), _null), t3, t7, true, _null); }, get$invoice: function() { return this.invoice; } }; M.InvoiceListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new M.InvoiceListItem_build__closure(), false, _this.isChecked), _null); else { t2 = t1.invoice; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new M.InvoiceListItem_build__closure0(t1)); t2 = t4; } t3 = t1.invoice; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = _this.client; t9 = t8.displayName; t9 = L.Text$(t9 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t10 = _this.filterMatch; if (t10 == null) t10 = _this._box_0.subtitle; t11 = _this.textColor; t11 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t9, L.Text$(t10, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t11.get$value(t11) >>> 16 & 255, t11.get$value(t11) >>> 8 & 255, t11.get$value(t11) & 255)), _null, _null, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); t10 = T.SizedBox$(_null, _null, 10); t9 = t3.balance; t9 = t9 > 0 ? t9 : t3.amount; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, t11, t10, L.Text$(Y.formatNumber(t9, context, t8.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 25), new V.EntityStatusChip(t3, 105, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new M.InvoiceListItem_build__closure1(t1, context), new M.InvoiceListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new M.InvoiceListItem_build__closure3(), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = T.Expanded$(L.Text$(_this.client.displayName, _null, _null, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1); t5 = T.SizedBox$(_null, _null, 4); t6 = t1.invoice; t7 = t6.balance; t7 = t7 > 0 ? t7 : t6.amount; t8 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([t4, t5, L.Text$(Y.formatNumber(t7, context, t6.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t4 = _this.filterMatch; if (t4 == null) { t4 = t6.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t4 += " \u2022 "; t5 = t6.dueDate; t4 += Y.formatDate(t5.length !== 0 ? t5 : t6.date, context, true, true, false); t4 = L.Text$(C.JSString_methods.trim$0(t4 + (J.get$isNotEmpty$asx(t6.documents._list) ? " \ud83d\udcce" : "")), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t4 = L.Text$(t4, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t4 = T.Expanded$(t4, 1); t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new M.InvoiceListItem_build__closure4(t1, context), new M.InvoiceListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t4, L.Text$(_this.statusLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t6.statusId === "1" ? _this.textColor : _this.statusColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new L.EntityStateLabel(t6, _null)], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; M.InvoiceListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.invoice, !t1.showCheckbox, false); }, $signature: 0 }; M.InvoiceListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, true); }, $signature: 0 }; M.InvoiceListItem_build__closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; M.InvoiceListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.invoice], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; M.InvoiceListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.invoice, !t1.showCheckbox, false); }, $signature: 0 }; M.InvoiceListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, true); }, $signature: 0 }; M.InvoiceListItem_build__closure3.prototype = { call$1: function(value) { return null; }, $signature: 20 }; T.InvoiceListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.InvoiceListBuilder_build_closure(), T.invoice_list_vm_InvoiceListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceListVM); } }; T.InvoiceListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_invoice, new T.InvoiceListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new Q.InvoicePresenter(), t2, t4); }, $signature: 2303 }; T.InvoiceListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, invoiceId = J.$index$asx(t1.invoiceList, index); return new M.InvoiceListItem(J.$index$asx(t1.invoiceMap._map$_map, invoiceId), t1.filter, true, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 411 }; T.EntityListVM.prototype = {}; T.InvoiceListVM.prototype = {}; T.InvoiceListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; T.InvoiceListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; T.InvoiceListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortInvoices(field)); }, $signature: 5 }; T.InvoiceListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; E.InvoicePdfView.prototype = { createState$0: function() { return new E._InvoicePdfViewState(C._StateLifecycle_0); } }; E._InvoicePdfViewState.prototype = { initState$0: function() { this.super$State$initState(); this._invoice_pdf$_activityId = this._widget.viewModel.activityId; }, didChangeDependencies$0: function() { this.super$State$didChangeDependencies(); this.loadPdf$0(); }, loadPdf$0: function() { var t1, _this = this; _this.setState$1(new E._InvoicePdfViewState_loadPdf_closure(_this)); t1 = _this._framework$_element; t1.toString; E._loadPDF(t1, _this._widget.viewModel.invoice, _this._isDeliveryNote, _this._invoice_pdf$_activityId).then$1$1(0, new E._InvoicePdfViewState_loadPdf_closure0(_this), type$.Null).catchError$1(new E._InvoicePdfViewState_loadPdf_closure1(_this)); }, dispose$0: function(_) { var t1 = this._invoice_pdf$_pdfController; if (t1 != null) t1.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var pageSelector, t4, activitySelector, t5, showEmail, t6, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), invoice = _this._widget.viewModel.invoice, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, client = J.$index$asx(t2._list, t3).clientState.$get$1(0, invoice.clientId); if (_this._invoice_pdf$_pageCount === 1) pageSelector = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); else { t2 = L.Icon$(C.IconData_58396_MaterialIcons_null_true, _null, _null); t2 = B.IconButton$(C.Alignment_0_0, _null, _null, true, t2, 24, _this._invoice_pdf$_pageNumber > 1 ? new E._InvoicePdfViewState_build_closure(_this) : _null, C.EdgeInsets_8_8_8_8, _null, _null); t3 = L.Text$(C.JSString_methods.replaceFirst$2(C.JSString_methods.replaceFirst$2(t1.get$pdfPageInfo(), ":current", "" + _this._invoice_pdf$_pageNumber), ":total", "" + _this._invoice_pdf$_pageCount), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null); pageSelector = H.setRuntimeTypeInfo([t2, new T.Padding(C.EdgeInsets_8_0_8_0, t3, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, t4, 24, _this._invoice_pdf$_pageNumber < _this._invoice_pdf$_pageCount ? new E._InvoicePdfViewState_build_closure0(_this) : _null, C.EdgeInsets_8_8_8_8, _null, _null)], type$.JSArray_legacy_Widget); } t2 = type$.JSArray_legacy_Widget; activitySelector = H.setRuntimeTypeInfo([], t2); t3 = X.ThemeData_ThemeData(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, state.get$headerTextColor()); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "delivery_note"); if (t4 == null) t4 = ""; t4 = L.Text$(t4, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); t5 = _this._isDeliveryNote; t5 = M.Container$(_null, D.CheckboxListTile$(state.get$accentColor(), _null, C.ListTileControlAffinity_0, _null, _null, new E._InvoicePdfViewState_build_closure1(_this), t4, t5), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 200); showEmail = D.getLayout(context) === C.AppLayout_desktop && _this._invoice_pdf$_activityId == null && !C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), invoice.entityType); t4 = client.get$hasEmailAddress(); if (!t4) showEmail = false; if (_this._widget.showAppBar) { t4 = D.getLayout(context); t6 = new Q.EntityPresenter(); t6.entity = invoice; t6.context = context; t6 = H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t6.title$0(0), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t2); if (D.getLayout(context) === C.AppLayout_desktop) C.JSArray_methods.addAll$1(t6, activitySelector); if (D.getLayout(context) === C.AppLayout_desktop) C.JSArray_methods.addAll$1(t6, pageSelector); if (D.getLayout(context) === C.AppLayout_desktop && invoice.entityType === C.EntityType_invoice && _this._invoice_pdf$_activityId == null) t6.push(new K.Theme(t3, t5, _null)); t3 = T.Row$(t6, C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null); t2 = H.setRuntimeTypeInfo([], t2); if (showEmail) t2.push(U.TextButton$(false, L.Text$(t1.get$email(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _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, new E._InvoicePdfViewState_build_closure2(invoice), _null)); t5 = t1.get$download(t1); t2.push(new X.AppTextButton(t5, _this._invoice_pdf$_response == null ? _null : new E._InvoicePdfViewState_build_closure3(_this, t1, invoice), true, _null, _null)); if (D.getLayout(context) === C.AppLayout_desktop) t2.push(U.TextButton$(false, L.Text$(t1.get$close(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, state.get$headerTextColor(), _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, new E._InvoicePdfViewState_build_closure4(invoice), _null)); t1 = E.AppBar$(t2, _null, t4 === C.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); } else t1 = _null; if (_this._invoice_pdf$_isLoading) t2 = new V.LoadingIndicator(_null, false, _null); else t2 = new G.HtmlElementView(_this._invoice_pdf$_pdfString, _null); return M.Scaffold$(t1, C.MaterialColor_Map_HFpTk_4288585374, t2, _null, _null, _null, _null, _null); } }; E._InvoicePdfViewState_loadPdf_closure.prototype = { call$0: function() { this.$this._invoice_pdf$_isLoading = true; }, $signature: 1 }; E._InvoicePdfViewState_loadPdf_closure0.prototype = { call$1: function(response) { var t2, t1 = this.$this; t1.setState$1(new E._InvoicePdfViewState_loadPdf__closure(t1, response)); t2 = response.bodyBytes; t2 = "data:application/pdf;base64," + C.C_Base64Codec.get$encoder().convert$1(t2); t1._invoice_pdf$_pdfString = t2; L.WebUtils_registerWebView(t2); }, $signature: 557 }; E._InvoicePdfViewState_loadPdf__closure.prototype = { call$0: function() { var t1 = this.$this; t1._invoice_pdf$_response = this.response; t1._invoice_pdf$_isLoading = false; }, $signature: 1 }; E._InvoicePdfViewState_loadPdf_closure1.prototype = { call$1: function(error) { this.$this._invoice_pdf$_isLoading = false; }, $signature: 3 }; E._InvoicePdfViewState_build_closure.prototype = { call$0: function() { return this.$this._invoice_pdf$_pdfController.previousPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 26 }; E._InvoicePdfViewState_build_closure0.prototype = { call$0: function() { return this.$this._invoice_pdf$_pdfController.nextPage$2$curve$duration(C.Cubic_oKc, P.Duration$(0, 0, 0, 500, 0, 0)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 26 }; E._InvoicePdfViewState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new E._InvoicePdfViewState_build__closure(t1)); }, $signature: 20 }; E._InvoicePdfViewState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._isDeliveryNote = !t1._isDeliveryNote; t1.loadPdf$0(); }, $signature: 1 }; E._InvoicePdfViewState_build_closure2.prototype = { call$0: function() { var t1 = this.invoice, t2 = D.EntityAction_emailEntityType(t1.entityType); M.handleEntitiesActions(H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_BaseEntity), t2, false); }, $signature: 1 }; E._InvoicePdfViewState_build_closure3.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, fileName, t1, t2, t3; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.localization; t2 = $async$self.invoice; t3 = J.$add$ansx(t1.lookup$1(H.S(t2.entityType)), "_"); t2 = t2.number; fileName = t3 + (t2.length === 0 ? t1.get$pending(t1) : t2) + ".pdf"; t1 = $async$self.$this._invoice_pdf$_response; L.WebUtils_downloadBinaryFile(fileName, t1.bodyBytes); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; E._InvoicePdfViewState_build_closure4.prototype = { call$0: function() { M.viewEntity(false, this.invoice, null, false); }, $signature: 1 }; O.InvoicePdfScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.InvoicePdfScreen_build_closure(this), new O.InvoicePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoicePdfVM); } }; O.InvoicePdfScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoiceUIState = t1.invoiceUIState, invoiceId = invoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new O.InvoicePdfVM(state, J.$index$asx(t2._list, t1).invoiceState.$get$1(0, invoiceId), invoiceUIState.historyActivityId); }, $signature: 2304 }; O.InvoicePdfScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoicePdfView(vm, this.$this.showAppBar, new D.ValueKey("__invoice_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2305 }; O.EntityPdfVM.prototype = { get$invoice: function() { return this.invoice; } }; O.InvoicePdfVM.prototype = {}; Q.InvoicePresenter.prototype = { getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), invoice = type$.legacy_InvoiceEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(invoice, 105, _null); case "number": t2 = invoice.number; return L.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = invoice.clientId; t2 = J.$index$asx(t2._map$_map, t1); return L.Text$((t2 == null ? T.ClientEntity_ClientEntity(t1, _null, _null) : t2).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(invoice.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return L.Text$(Y.formatDate(invoice.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "next_send_date": return L.Text$(Y.formatDate(invoice.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder1_sent": return L.Text$(Y.formatDate(invoice.reminder1Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder2_sent": return L.Text$(Y.formatDate(invoice.reminder2Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder3_sent": return L.Text$(Y.formatDate(invoice.reminder3Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder_last_sent": return L.Text$(Y.formatDate(invoice.reminderLastSent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(invoice.amount, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "balance": t1 = invoice.statusId !== "1" ? invoice.balance : invoice.amount; return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(t1, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "due_date": return L.Text$(Y.formatDate(invoice.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, invoice.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, invoice.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, invoice.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, invoice.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(invoice.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(invoice.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "discount": t1 = invoice.isAmountDiscount; t2 = invoice.discount; return L.Text$(t1 ? Y.formatNumber(t2, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false) : Y.formatNumber(t2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return L.Text$(invoice.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(invoice.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(invoice.taxAmount, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(invoice.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return L.Text$(invoice.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "auto_bill_enabled": return L.Text$(t1.lookup$1(invoice.autoBillEnabled ? t1.get$yes() : t1.get$no()), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; Y.InvoiceScreen.prototype = { build$1: function(_, context) { var userCompany, t4, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, company = J.$index$asx(t1._list, t3).userCompany.company; t3 = store.get$_store$_state(); t1 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.invoiceUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.invoiceList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "number", "client", "amount", "balance", "date", "due_date"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("reminder1_sent"); t6.push("reminder2_sent"); t6.push("reminder3_sent"); t6.push("reminder_last_sent"); t6.push("exchange_rate"); t6.push("is_viewed"); t6.push("auto_bill_enabled"); t6.push("last_sent_date"); t6.push("next_send_date"); t7 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "balance", "date", "due_date"], t5); t5 = H.setRuntimeTypeInfo(["number", "date", "due_date", "updated_at"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, C.EntityType_invoice, false, C.List_empty14, new Y.InvoiceScreen_build_closure(store), new Y.InvoiceScreen_build_closure0(store), new Y.InvoiceScreen_build_closure1(store), new Y.InvoiceScreen_build_closure2(store), new Y.InvoiceScreen_build_closure3(store), new Y.InvoiceScreen_build_closure4(store), new Y.InvoiceScreen_build_closure5(store), new Y.InvoiceScreen_build_closure6(store), t5, H.setRuntimeTypeInfo([F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure7(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure8(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure9(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure10(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure11(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure12(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new Y.InvoiceScreen_build_closure13(t3))], type$.JSArray_legacy_EntityStatus), t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_invoice) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "invoice_fab", false, new Y.InvoiceScreen_build_closure14(context), t3.get$newInvoice()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_invoice, t2, new Y.InvoiceScreen_build_closure15(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new T.InvoiceListBuilder(_null), t6, C.EntityType_invoice, t3, 0, _null, new Y.InvoiceScreen_build_closure16(store), new Y.InvoiceScreen_build_closure17(store)); } }; Y.InvoiceScreen_build_closure17.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.StartInvoiceMultiselect()); }, $signature: 9 }; Y.InvoiceScreen_build_closure15.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoices(value)); }, $signature: 7 }; Y.InvoiceScreen_build_closure16.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.invoiceUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearInvoiceMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.InvoiceScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortInvoices(value)); }, $signature: 7 }; Y.InvoiceScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByState(state)); }, $signature: 53 }; Y.InvoiceScreen_build_closure6.prototype = { call$2: function($status, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByStatus($status)); }, $signature: 220 }; Y.InvoiceScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByCustom1(value)); }, $signature: 5 }; Y.InvoiceScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByCustom2(value)); }, $signature: 5 }; Y.InvoiceScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByCustom3(value)); }, $signature: 5 }; Y.InvoiceScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterInvoicesByCustom4(value)); }, $signature: 5 }; Y.InvoiceScreen_build_closure7.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure8.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization.get$sent(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure9.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-3"; t1 = this.localization.get$viewed(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure10.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "partial"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure11.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "4"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "paid"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure12.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-2"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "unpaid"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure13.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "past_due"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; Y.InvoiceScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.invoiceUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearInvoiceMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.InvoiceScreen_build_closure14.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_invoice); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; E.InvoiceScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.InvoiceScreenBuilder_build_closure(), E.invoice_screen_vm_InvoiceScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceScreenVM); } }; E.InvoiceScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new Y.InvoiceScreen(vm, null); }, $signature: 2307 }; E.InvoiceScreenVM.prototype = {}; E.InvoiceView.prototype = { createState$0: function() { return new E._InvoiceViewState(null, C._StateLifecycle_0); } }; E._InvoiceViewState.prototype = { initState$0: function() { var t1, invoice, state, t2, tabIndex, t3, _this = this; _this.super$State$initState(); t1 = _this._widget.viewModel; invoice = t1.invoice; state = t1.state; t1 = type$.JSArray_legacy_EntityType; t2 = invoice.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], t1), t2)) tabIndex = state.uiState.recurringInvoiceUIState.tabIndex; else if (t2 === C.EntityType_quote) tabIndex = state.uiState.quoteUIState.tabIndex; else { t3 = state.uiState; tabIndex = t2 === C.EntityType_credit ? t3.creditUIState.tabIndex : t3.invoiceUIState.tabIndex; } t1 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], t1), t2) ? 6 : 5; t1 = U.TabController$(_this._widget.isFilter ? 0 : tabIndex, t1, _this); _this._invoice_view$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_invoice_view$_onTabChanged()), false); }, _invoice_view$_onTabChanged$0: function() { var t1, store, t2, _this = this; if (_this._widget.isFilter) return; t1 = _this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._widget.viewModel.invoice.entityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t1)) { t1 = _this._invoice_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoiceTab(t1)); } else if (t1 === C.EntityType_quote) { t1 = _this._invoice_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.UpdateQuoteTab(t1)); } else { t2 = _this._invoice_view$_controller; if (t1 === C.EntityType_credit) { t1 = t2._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.UpdateCreditTab(t1)); } else { t1 = t2._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new Q.UpdateInvoiceTab(t1)); } } }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._invoice_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._invoice_view$_controller.removeListener$1(0, _this.get$_invoice_view$_onTabChanged()); _this._invoice_view$_controller.dispose$0(0); _this.super$__InvoiceViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = {}, viewModel = _this._widget.viewModel, invoice = viewModel.invoice, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t1.secondAction = null; t3 = invoice.entityType; if (t3 === C.EntityType_recurringInvoice) t1.secondAction = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3) && invoice.statusId === "2" ? C.EntityAction_stop : C.EntityAction_start; else if (t3 === C.EntityType_credit) t1.secondAction = C.EntityAction_emailCredit; else if (t3 === C.EntityType_quote) t1.secondAction = C.EntityAction_emailQuote; else t1.secondAction = C.EntityAction_emailInvoice; t4 = _this._widget.isFilter; t5 = _this._invoice_view$_controller; t6 = E.Tab$(_null, t2.get$overview()); t7 = E.Tab$(_null, t2.get$contacts()); t8 = invoice.documents._list; t9 = J.getInterceptor$asx(t8); t6 = H.setRuntimeTypeInfo([t6, t7, E.Tab$(_null, t9.get$isEmpty(t8) ? t2.get$documents() : t2.get$documents() + " (" + H.S(t9.get$length(t8)) + ")")], type$.JSArray_legacy_Widget); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t3)) t6.push(E.Tab$(_null, t2.get$schedule())); t6.push(E.Tab$(_null, t2.get$history(t2))); t6.push(E.Tab$(_null, t2.get$activity())); return new G.ViewScaffold(t4, invoice, new T.Builder(new E._InvoiceViewState_build_closure(t1, _this, viewModel, invoice), _null), _null, E.TabBar$(t5, _null, true, _null, _null, t6), _null); } }; E._InvoiceViewState_build_closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.viewModel, t2 = _this.$this, t3 = t2._invoice_view$_controller, t4 = t1.invoice, t5 = t4.id, t6 = type$.ValueKey_legacy_String, t7 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([N.RefreshIndicator$(new A.InvoiceOverview(t1, t2._widget.isFilter, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure(t1, context)), N.RefreshIndicator$(new B.InvoiceViewContacts(t1, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure0(t1, context)), N.RefreshIndicator$(new X.InvoiceViewDocuments(t1, t4, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure1(t1, context))], t7); t2 = _this.invoice; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType), t2.entityType)) t4.push(N.RefreshIndicator$(new N.InvoiceViewSchedule(t1, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure2(t1, context))); t4.push(N.RefreshIndicator$(new S.InvoiceViewHistory(t1, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure3(t1, context))); t4.push(N.RefreshIndicator$(new A.InvoiceViewActivity(t1, new D.ValueKey(t5, t6)), new E._InvoiceViewState_build__closure4(t1, context))); return N.RefreshIndicator$(T.Column$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBarView$(t4, t3, null), 1), new Z.BottomButtons(t2, C.EntityAction_viewPdf, _this._box_0.secondAction, true, true, null)], t7), C.CrossAxisAlignment_2, null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), new E._InvoiceViewState_build__closure5(t1, context)); }, $signature: 712 }; E._InvoiceViewState_build__closure5.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure1.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure2.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure3.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E._InvoiceViewState_build__closure4.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; E.__InvoiceViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.InvoiceViewActivity.prototype = { createState$0: function() { return new A._InvoiceViewActivityState(C._StateLifecycle_0); } }; A._InvoiceViewActivityState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var invoice = this._widget.viewModel.invoice, activities = invoice.activities, t1 = invoice.loadedAt; if (!(t1 != null && t1 > 0)) return new V.LoadingIndicator(null, false, null); return X.ScrollableListViewBuilder$(new A._InvoiceViewActivityState_build_closure(activities), J.get$length$asx(activities._list), C.EdgeInsets_0_16_0_16, new A._InvoiceViewActivityState_build_closure0()); } }; A._InvoiceViewActivityState_build_closure0.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; A._InvoiceViewActivityState_build_closure.prototype = { call$2: function(context, index) { return new N.ActivityListTile(J.$index$asx(this.activities._list, index), false, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 267 }; B.InvoiceViewContacts.prototype = { build$1: function(_, context) { return new X.ScrollableListView(J.map$1$1$ax(this.viewModel.invoice.invitations._list, new B.InvoiceViewContacts_build_closure(this), type$.legacy__InvitationListTile).toList$0(0), null, C.EdgeInsets_8_8_8_8, false, null); } }; B.InvoiceViewContacts_build_closure.prototype = { call$1: function(invitation) { return new B._InvitationListTile(invitation, this.$this.viewModel, null); }, $signature: 2309 }; B._InvitationListTile.prototype = { build$1: function(_, context) { var icon, t4, t5, t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, state = t2.state, t3 = state.uiState.selectedCompanyIndex, client = J.$index$asx(state.userCompanyStates._list, t3).clientState.$get$1(0, t2.invoice.clientId), contact = J.firstWhere$2$orElse$ax(client.contacts._list, new B._InvitationListTile_build_closure(_this), new B._InvitationListTile_build_closure0()); if (contact.get$isNew()) return T.SizedBox$(_null, _null, _null); icon = L.Icon$(C.IconData_57743_MaterialIcons_null_false, _null, _null); t2 = _this.invitation; switch (t2.emailStatus) { case "delivered": t3 = L.Icon$(C.IconData_57689_MaterialIcons_null_false, _null, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "delivered"); icon = S.Tooltip$(t3, t4 == null ? "" : t4); break; case "bounced": t3 = L.Icon$(C.IconData_57911_MaterialIcons_null_false, _null, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "bounced"); icon = S.Tooltip$(t3, t4 == null ? "" : t4); break; case "spam": t3 = L.Icon$(C.IconData_57911_MaterialIcons_null_false, _null, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "spam"); icon = S.Tooltip$(t3, t4 == null ? "" : t4); break; } t3 = L.Text$(contact.get$fullNameOrEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([T.SizedBox$(_null, 4, _null)], t4); t6 = t2.sentDate; if (t6.length !== 0) t5.push(new T.Padding(C.EdgeInsets_0_0_0_4, L.Text$(t1.get$sent() + ": " + Y.formatDate(t6, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t6 = t2.openedDate; if (t6.length !== 0) { t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "opened"); t5.push(new T.Padding(C.EdgeInsets_0_0_0_4, L.Text$((t7 == null ? "" : t7) + ": " + Y.formatDate(t6, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } t2 = t2.viewedDate; if (t2.length !== 0) t5.push(new T.Padding(C.EdgeInsets_0_0_0_4, L.Text$(t1.get$viewed() + ": " + Y.formatDate(t2, context, true, true, true), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t5.push(T.SizedBox$(_null, 8, _null)); t5.push(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(B.OutlinedButton$(L.Text$(t1.get$viewPortal().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new B._InvitationListTile_build_closure1(_this, client)), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(B.OutlinedButton$(L.Text$(t1.get$copyLink().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new B._InvitationListTile_build_closure2(_this, t1)), 1)], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); return Q.ListTile$(false, new V.EdgeInsets(16, 16, 16, 16), _null, true, true, _null, icon, _null, _null, false, _null, _null, T.Column$(t5, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } }; B._InvitationListTile_build_closure.prototype = { call$1: function(contact) { return contact.id === this.$this.invitation.contactId; }, $signature: 156 }; B._InvitationListTile_build_closure0.prototype = { call$0: function() { return T.ContactEntity_ContactEntity(); }, $signature: 491 }; B._InvitationListTile_build_closure1.prototype = { call$0: function() { T.launch(this.$this.invitation.link + "?silent=true&client_hash=" + this.client.clientHash, false, false); }, $signature: 1 }; B._InvitationListTile_build_closure2.prototype = { call$0: function() { T.Clipboard_setData(new T.ClipboardData(this.$this.invitation.link)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", "")); }, $signature: 1 }; X.InvoiceViewDocuments.prototype = { build$1: function(_, context) { var _this = this, t1 = _this.invoice.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new X.InvoiceViewDocuments_build_closure(_this, context), new X.InvoiceViewDocuments_build_closure0(_this, context), new X.InvoiceViewDocuments_build_closure1(_this, context), null); }, get$invoice: function() { return this.invoice; } }; X.InvoiceViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; X.InvoiceViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; X.InvoiceViewDocuments_build_closure1.prototype = { call$1: function($document) { return this.$this.viewModel.onViewExpense.call$2(this.context, $document); }, $signature: 2310 }; S.InvoiceViewHistory.prototype = { createState$0: function() { return new S._InvoiceViewHistoryState(C._StateLifecycle_0); } }; S._InvoiceViewHistoryState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var t1, activityList, viewModel = this._widget.viewModel, invoice = viewModel.invoice; if (!invoice.get$isStale()) { invoice.get$history(invoice); t1 = false; } else t1 = true; if (t1) return new V.LoadingIndicator(null, false, null); t1 = J.where$1$ax(invoice.activities._list, new S._InvoiceViewHistoryState_build_closure()); activityList = P.List_List$of(t1, true, t1.$ti._eval$1("Iterable.E")); C.JSArray_methods.sort$1(activityList, new S._InvoiceViewHistoryState_build_closure0()); if (activityList.length === 0) return new U.HelpText(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$noHistory(), null); return X.ScrollableListViewBuilder$(new S._InvoiceViewHistoryState_build_closure1(activityList, viewModel, invoice), invoice.get$history(invoice).length, C.EdgeInsets_0_16_0_16, new S._InvoiceViewHistoryState_build_closure2()); } }; S._InvoiceViewHistoryState_build_closure.prototype = { call$1: function(activity) { return activity.history != null; }, $signature: 436 }; S._InvoiceViewHistoryState_build_closure0.prototype = { call$2: function(a, b) { return C.JSInt_methods.compareTo$1(b.updatedAt, a.updatedAt); }, $signature: 2311 }; S._InvoiceViewHistoryState_build_closure1.prototype = { call$2: function(context, index) { var t4, t5, _null = null, activity = this.activityList[index], $history = activity.history, t1 = this.viewModel, t2 = t1.state, t3 = t2.uiState.selectedCompanyIndex, user = J.$index$asx(t2.userCompanyStates._list, t3).userState.$get$1(0, activity.userId); t3 = this.invoice; t2 = J.$add$ansx(Y.formatNumber($history.amount, context, t3.clientId, _null, C.FormatNumberType_0, true, _null, false), " \u2022 "); t2 = L.Text$(t2 + (user.get$fullName().length !== 0 ? user.get$fullName() : user.email), _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = $history.createdAt; t4 *= 1000; t5 = Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(t4, false).toIso8601String$0(), context, true, true, true) + " \u2022 "; return Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new S._InvoiceViewHistoryState_build__closure(t1, context, t3, $history), false, _null, _null, L.Text$(t5 + E.format(P.DateTime$fromMillisecondsSinceEpoch(t4, false), _null), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, L.Icon$(C.IconData_57695_MaterialIcons_null_true, _null, _null)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 541 }; S._InvoiceViewHistoryState_build__closure.prototype = { call$0: function() { var _this = this; return _this.viewModel.onViewPdf.call$3(_this.context, _this.invoice, _this.history.activityId); }, $signature: 9 }; S._InvoiceViewHistoryState_build_closure2.prototype = { call$2: function(context, index) { return new G.ListDivider(null); }, $signature: 65 }; A.InvoiceOverview.prototype = { build$1: function(_, context) { var t3, creditMap, paymentMap, t4, t5, t6, t7, payments, colors, statuses, userCompany, color, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, widgets, dueDateField, t18, t19, relatedInvoice, _this = this, _null = null, _s4_ = "date", _s8_ = "invoice1", _s8_0 = "invoice2", _s8_1 = "invoice3", _s8_2 = "invoice4", _s10_ = "surcharge1", _s10_0 = "surcharge2", _s10_1 = "surcharge3", _s10_2 = "surcharge4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, invoice = t2.invoice, client = t2.client, company = t2.company, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); t2 = type$.legacy_PaymentableEntity; t3 = type$.legacy_PaymentEntity; creditMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t3); paymentMap = P.LinkedHashMap_LinkedHashMap$_empty(t2, t3); t2 = invoice.entityType; t3 = t2 === C.EntityType_invoice; if (t3) { t4 = $.$get$memoizedPaymentsByInvoice(); t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; t5 = t5._list; t7 = J.getInterceptor$asx(t5); payments = t4.call$3(invoice.id, t7.$index(t5, t6).paymentState.map, t7.$index(t5, t6).paymentState.list); } else if (t2 === C.EntityType_credit) { t4 = $.$get$memoizedPaymentsByCredit(); t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; t5 = t5._list; t7 = J.getInterceptor$asx(t5); t6 = t4.call$3(invoice.id, t7.$index(t5, t6).paymentState.map, t7.$index(t5, t6).paymentState.list); payments = t6; } else { t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_PaymentEntity); payments = t4; } J.forEach$1$ax(payments, new A.InvoiceOverview_build_closure(invoice, paymentMap, creditMap)); t4 = t2 === C.EntityType_quote; if (t4) { colors = new E.QuoteStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = C.Map_IF4bq; } else if (t2 === C.EntityType_credit) { colors = new E.CreditStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = C.Map_qBa3g; } else if (t2 === C.EntityType_recurringInvoice) { colors = new E.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = C.Map_BzEVk; } else { colors = new E.InvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors(); statuses = C.Map_j34mP; } t5 = state.userCompanyStates; t6 = state.uiState.selectedCompanyIndex; t5 = t5._list; t7 = J.getInterceptor$asx(t5); userCompany = t7.$index(t5, t6).userCompany; color = colors.$index(0, invoice.get$calculatedStatusId()); t8 = t1.lookup$1(statuses.$index(0, invoice.get$calculatedStatusId())); t9 = t2 === C.EntityType_credit; if (t9) { t10 = t1.localeCode; t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "credit_amount"); if (t11 == null) t11 = ""; t12 = t10; t10 = t11; t11 = $.LocalizationsProvider__localizedValues; } else { t10 = t1.localeCode; if (t4) { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "quote_amount"); if (t11 == null) t11 = ""; } else { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "invoice_amount"); if (t11 == null) t11 = ""; } t12 = t10; t10 = t11; t11 = $.LocalizationsProvider__localizedValues; } t13 = invoice.amount; t14 = invoice.clientId; t15 = Y.formatNumber(t13, context, t14, _null, C.FormatNumberType_0, true, _null, false); if (t9) { t11 = J.$index$asx(t11.$index(0, t12), "credit_remaining"); if (t11 == null) t11 = ""; } else t11 = t4 || t2 === C.EntityType_recurringInvoice ? _null : t1.get$balanceDue(); t12 = type$.JSArray_legacy_EntityType; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_credit], t12), t2)) t16 = Y.formatNumber(invoice.statusId !== "1" ? invoice.balance : t13, context, t14, _null, C.FormatNumberType_0, true, _null, false); else t16 = _null; t17 = type$.JSArray_legacy_Widget; widgets = H.setRuntimeTypeInfo([D.EntityHeader$(invoice, t10, t11, t16, color, t8, t15), new G.ListDivider(_null)], t17); t8 = invoice.privateNotes; if (t8.length !== 0) C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new S.IconMessage(t8, C.IconData_58286_MaterialIcons_null_false, _null, _null), new G.ListDivider(_null)], t17)); dueDateField = t4 ? "valid_until" : "due_date"; t8 = type$.legacy_String; t10 = P.LinkedHashMap_LinkedHashMap$_empty(t8, t8); if (t4) t10.$indexSet(0, _s4_, Y.formatDate(invoice.date, context, true, true, false)); else if (t9) t10.$indexSet(0, _s4_, Y.formatDate(invoice.date, context, true, true, false)); else if (t3) t10.$indexSet(0, _s4_, Y.formatDate(invoice.date, context, true, true, false)); t10.$indexSet(0, dueDateField, Y.formatDate(invoice.dueDate, context, true, true, false)); if (t3) t10.$indexSet(0, "next_send_date", Y.formatDate(invoice.nextSendDate, context, true, true, false)); t3 = invoice.partial; t10.$indexSet(0, "partial_due", Y.formatNumber(t3, context, t14, _null, C.FormatNumberType_0, true, _null, true)); t10.$indexSet(0, "partial_due_date", Y.formatDate(invoice.partialDueDate, context, true, true, false)); t10.$indexSet(0, "po_number", invoice.poNumber); t11 = invoice.isAmountDiscount ? C.FormatNumberType_0 : C.FormatNumberType_1; t10.$indexSet(0, "discount", Y.formatNumber(invoice.discount, context, t14, _null, t11, true, _null, true)); if (t2 === C.EntityType_recurringInvoice) { t11 = t1.lookup$1(C.Map_tOn4d.$index(0, invoice.frequencyId)); t14 = Y.formatDate(invoice.lastSentDate, context, true, true, false); t15 = Y.formatDate(invoice.nextSendDate, context, true, true, false); t16 = invoice.remainingCycles; t16 = t16 === -1 ? t1.get$endless() : H.S(t16); t18 = invoice.autoBill; t19 = t1.lookup$1(t18); if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["optin", "optout"], type$.JSArray_legacy_String), t18)) t18 = " - " + (invoice.autoBillEnabled ? t1.get$yes() : t1.get$no()); else t18 = ""; t18 = J.$add$ansx(t19, t18); t19 = invoice.dueDateDays; if (t19 === "terms") t19 = t1.get$paymentTerm(); else if (t19 === "1") t19 = t1.get$firstDayOfTheMonth(); else t19 = t19 === "31" ? t1.get$lastDayOfTheMonth() : C.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", H.S(t19)); t8 = P.LinkedHashMap_LinkedHashMap$_literal(["frequency", t11, "last_sent_date", t14, "next_send_date", t15, "remaining_cycles", t16, "auto_bill", t18, "due_date", t19], t8, t8); t8 = t8.get$entries(t8); t8 = t8.get$iterator(t8); for (; t8.moveNext$0();) { t11 = t8.get$current(t8); t10.$indexSet(0, t11.get$key(t11), t11.get$value(t11)); } } t8 = invoice.customValue1; if (t8.length !== 0) t10.$indexSet(0, company.getCustomFieldLabel$1(_s8_), Y.formatCustomValue(context, _s8_, t8)); t8 = invoice.customValue2; if (t8.length !== 0) t10.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), Y.formatCustomValue(context, _s8_0, t8)); t8 = invoice.customValue3; if (t8.length !== 0) t10.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), Y.formatCustomValue(context, _s8_1, t8)); t8 = invoice.customValue4; if (t8.length !== 0) t10.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), Y.formatCustomValue(context, _s8_2, t8)); t8 = _this.isFilter; widgets.push(O.EntityListTile$(client, t8, _null)); t11 = invoice.assignedUserId; if ((t11 == null ? "" : t11).length !== 0) widgets.push(O.EntityListTile$(t7.$index(t5, t6).userState.$get$1(0, t11), t8, _null)); t11 = invoice.recurringId; if ((t11 == null ? "" : t11).length !== 0) widgets.push(O.EntityListTile$(t7.$index(t5, t6).recurringInvoiceState.$get$1(0, t11), t8, _null)); else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], t12), t2)) widgets.push(new O.EntitiesListTile(invoice, C.EntityType_invoice, t1.get$invoices(), $.$get$memoizedRecurringInvoiceStatsForInvoice().call$2(invoice.id, t7.$index(t5, t6).invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t8, true, _null)); t2 = !t4; if (!t2 || t9) { t4 = invoice.invoiceId; relatedInvoice = J.$index$asx(t7.$index(t5, t6).invoiceState.map._map$_map, t4); if (relatedInvoice == null) relatedInvoice = Q.InvoiceEntity_InvoiceEntity(_null, _null, t4, _null, _null); if ((t4 == null ? "" : t4).length !== 0) widgets.push(O.EntityListTile$(relatedInvoice, t8, _null)); } if (paymentMap.get$isNotEmpty(paymentMap)) paymentMap.get$entries(paymentMap).forEach$1(0, new A.InvoiceOverview_build_closure0(_this, context, client, widgets)); if (creditMap.get$isNotEmpty(creditMap)) { creditMap.get$entries(creditMap).forEach$1(0, new A.InvoiceOverview_build_closure1(_this, context, client, widgets)); C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new G.ListDivider(_null)], t17)); } C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new T.FieldGrid(t10, _null)], t17)); t4 = invoice.lineItems._list; t5 = J.getInterceptor$asx(t4); if (t5.get$isNotEmpty(t4)) t5.forEach$1(t4, new A.InvoiceOverview_build_closure2(_this, widgets, invoice, userCompany)); t4 = new A.InvoiceOverview_build_surchargeRow(context, invoice); C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([T.SizedBox$(_null, 8, _null), t4.call$2(t1.get$subtotal(), invoice.calculateSubtotal$1$precision(Z.precisionForInvoice(state, invoice)))], t17)); t5 = invoice.customSurcharge1; t6 = t5 !== 0; if (t6 && company.enableCustomSurchargeTaxes1) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_), t5)); t7 = invoice.customSurcharge2; t8 = t7 !== 0; if (t8 && company.enableCustomSurchargeTaxes2) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_0), t7)); t9 = invoice.customSurcharge3; t10 = t9 !== 0; if (t10 && company.enableCustomSurchargeTaxes3) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_1), t9)); t11 = invoice.customSurcharge4; t12 = t11 !== 0; if (t12 && company.enableCustomSurchargeTaxes4) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_2), t11)); invoice.calculateTaxes$2$precision$useInclusiveTaxes(Z.precisionForInvoice(state, invoice), invoice.usesInclusiveTaxes).forEach$1(0, new A.InvoiceOverview_build_closure3(widgets, t4)); if (t6 && !company.enableCustomSurchargeTaxes1) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_), t5)); if (t8 && !company.enableCustomSurchargeTaxes2) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_0), t7)); if (t10 && !company.enableCustomSurchargeTaxes3) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_1), t9)); if (t12 && !company.enableCustomSurchargeTaxes4) widgets.push(t4.call$2(company.getCustomFieldLabel$1(_s10_2), t11)); if (t2) widgets.push(t4.call$2(t1.get$paidToDate(), invoice.paidToDate)); if (!t2 || invoice.statusId === "1") widgets.push(t4.call$2(t1.get$amount(), t13)); else widgets.push(t4.call$2(t1.get$balanceDue(), invoice.balance)); if (t3 !== 0) widgets.push(t4.call$2(t1.get$partialDue(), t3)); t1 = invoice.publicNotes; if (t1.length !== 0) C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new G.ListDivider(_null), new S.IconMessage(t1, _null, _null, _null)], t17)); return new X.ScrollableListView(widgets, _null, _null, false, _null); } }; A.InvoiceOverview_build_closure.prototype = { call$1: function(payment) { var t1 = this.invoice; C.JSArray_methods.forEach$1(payment.get$invoicePaymentables(), new A.InvoiceOverview_build__closure0(t1, this.paymentMap, payment)); C.JSArray_methods.forEach$1(payment.get$creditPaymentables(), new A.InvoiceOverview_build__closure1(t1, this.creditMap, payment)); }, $signature: 129 }; A.InvoiceOverview_build__closure0.prototype = { call$1: function(paymentable) { if (paymentable.invoiceId === this.invoice.id) this.paymentMap.$indexSet(0, paymentable, this.payment); }, $signature: 224 }; A.InvoiceOverview_build__closure1.prototype = { call$1: function(paymentable) { if (paymentable.creditId === this.invoice.id) this.creditMap.$indexSet(0, paymentable, this.payment); }, $signature: 224 }; A.InvoiceOverview_build_closure0.prototype = { call$1: function(entry) { var _this = this, _null = null, payment = entry.get$value(entry), t1 = entry.get$key(entry).amount, t2 = _this.context, t3 = _this.client.id, amount = Y.formatNumber(t1, t2, t3, _null, C.FormatNumberType_0, true, _null, false), t4 = payment.amount; _this.widgets.push(O.EntityListTile$(payment, _this.$this.isFilter, J.$add$ansx(t1 !== t4 ? J.$add$ansx(amount, C.JSString_methods.$add("/", Y.formatNumber(t4, t2, t3, _null, C.FormatNumberType_0, true, _null, false))) : amount, " \u2022 ") + Y.formatDate(payment.date, t2, true, true, false))); }, $signature: 711 }; A.InvoiceOverview_build_closure1.prototype = { call$1: function(entry) { var _this = this, _null = null, credit = entry.get$value(entry), t1 = entry.get$key(entry).amount, t2 = _this.context, t3 = _this.client.id, amount = Y.formatNumber(t1, t2, t3, _null, C.FormatNumberType_0, true, _null, false), t4 = credit.amount; _this.widgets.push(O.EntityListTile$(credit, _this.$this.isFilter, J.$add$ansx(t1 !== t4 ? J.$add$ansx(amount, C.JSString_methods.$add("/", Y.formatNumber(t4, t2, t3, _null, C.FormatNumberType_0, true, _null, false))) : amount, " \u2022 ") + Y.formatDate(credit.date, t2, true, true, false))); }, $signature: 711 }; A.InvoiceOverview_build_closure2.prototype = { call$1: function(invoiceItem) { var _this = this; C.JSArray_methods.addAll$1(_this.widgets, H.setRuntimeTypeInfo([new T.Builder(new A.InvoiceOverview_build__closure(_this.$this, _this.invoice, invoiceItem, _this.userCompany), null)], type$.JSArray_legacy_Widget)); }, $signature: 216 }; A.InvoiceOverview_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.invoice, t2 = _this.invoiceItem; return new T.InvoiceItemListTile(new A.InvoiceOverview_build___closure(_this.$this, _this.userCompany, t1, context, t2), t1, t2, null); }, $signature: 2313 }; A.InvoiceOverview_build___closure.prototype = { call$0: function() { var _this = this, t1 = _this.invoice; return _this.userCompany.canEditEntity$1(t1) ? _this.$this.viewModel.onEditPressed.call$2(_this.context, J.indexOf$2$asx(t1.lineItems._list, _this.invoiceItem, 0)) : null; }, $signature: 9 }; A.InvoiceOverview_build_surchargeRow.prototype = { call$2: function(label, amount) { var _null = null, t1 = this.context, t2 = K.Theme_of(t1).cardColor; return M.Container$(_null, new T.Padding(C.EdgeInsets_20_10_56_8, T.Row$(H.setRuntimeTypeInfo([L.Text$(label, _null, _null, _null, _null, _null, K.Theme_of(t1).textTheme.subtitle1, _null, _null, _null), T.SizedBox$(new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(amount, t1, this.invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(t1).textTheme.subtitle1, _null, _null, _null), _null), _null, 100)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null), _null), C.Clip_0, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2314 }; A.InvoiceOverview_build_closure3.prototype = { call$2: function(taxName, taxAmount) { this.widgets.push(this.surchargeRow.call$2(taxName, taxAmount)); }, $signature: 2315 }; N.InvoiceViewSchedule.prototype = { createState$0: function() { return new N._InvoiceViewScheduleState(C._StateLifecycle_0); } }; N._InvoiceViewScheduleState.prototype = { didChangeDependencies$0: function() { var t1, t2, _this = this; if (_this._widget.viewModel.invoice.get$isStale()) { t1 = _this._widget.viewModel; t2 = _this._framework$_element; t2.toString; t1.onRefreshed.call$1(t2); } _this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var _null = null, invoice = this._widget.viewModel.invoice, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.JSArray_legacy_Widget; t2 = H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t1.get$sendDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1), T.Expanded$(L.Text$(t1.get$dueDate(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), 1)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t2); if (invoice.get$isStale() && J.get$isEmpty$asx(invoice.recurringDates._list)) t2.push(new V.LoadingIndicator(300, false, _null)); C.JSArray_methods.addAll$1(t2, J.map$1$1$ax(invoice.recurringDates._list, new N._InvoiceViewScheduleState_build_closure(context), type$.legacy_Padding).toList$0(0)); return new X.ScrollableListView(t2, _null, C.EdgeInsets_16_16_16_16, false, _null); } }; N._InvoiceViewScheduleState_build_closure.prototype = { call$1: function(schedule) { var _null = null, t1 = this.context; return new T.Padding(C.EdgeInsets_0_16_0_0, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(Y.formatDate(schedule.sendDate, t1, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), T.Expanded$(L.Text$(Y.formatDate(schedule.dueDate, t1, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null); }, $signature: 2316 }; F.InvoiceViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.InvoiceViewScreen_build_closure(this), new F.InvoiceViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceViewVM); } }; F.InvoiceViewScreen_build_closure0.prototype = { call$1: function(store) { return F.InvoiceViewVM_InvoiceViewVM$fromStore(store); }, $signature: 2317 }; F.InvoiceViewScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new E.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.invoiceUIState.tabIndex, null); }, $signature: 2318 }; F.AbstractInvoiceViewVM.prototype = { get$company: function() { return this.company; }, get$invoice: function() { return this.invoice; } }; F.InvoiceViewVM.prototype = {}; F.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadInvoice(completer, this.invoice.id)); return completer.future; }, $signature: 17 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure.prototype = { call$2: function(context, index) { M.editEntity(O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedInvoice(), false, type$.legacy_ClientEntity), context, this.invoice, index); }, call$1: function(context) { return this.call$2(context, null); }, "call*": "call$2", $defaultValues: function() { return [null]; }, $signature: 306 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SaveInvoiceDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.invoice)); t1.then$1$1(0, new F.InvoiceViewVM_InvoiceViewVM$fromStore__closure0(context), type$.Null).catchError$1(new F.InvoiceViewVM_InvoiceViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; F.InvoiceViewVM_InvoiceViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; F.InvoiceViewVM_InvoiceViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new F.InvoiceViewVM_InvoiceViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; F.InvoiceViewVM_InvoiceViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new F.InvoiceViewVM_InvoiceViewVM$fromStore__closure(t2, this.invoice), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; F.InvoiceViewVM_InvoiceViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadInvoice(null, this.invoice.id)); }, $signature: 95 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure3.prototype = { call$2: function(context, $document) { }, "call*": "call$2", $requiredArgCount: 2, $signature: 2319 }; F.InvoiceViewVM_InvoiceViewVM$fromStore_closure4.prototype = { call$3: function(context, invoice, activityId) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ShowPdfInvoice(invoice, context, activityId)); }, call$2: function(context, invoice) { return this.call$3(context, invoice, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues: function() { return [null]; }, $signature: 292 }; M.PaymentEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new M._PaymentEditState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; M._PaymentEditState.prototype = { didChangeDependencies$0: function() { var payment, t11, _this = this, _null = null, t1 = _this._payment_edit$_amountController, t2 = _this._numberController, t3 = _this._transactionReferenceController, t4 = _this._privateNotesController, t5 = _this._payment_edit$_custom1Controller, t6 = _this._payment_edit$_custom2Controller, t7 = _this._payment_edit$_custom3Controller, t8 = _this._payment_edit$_custom4Controller, t9 = _this._exchangeRateController, t10 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9], type$.JSArray_legacy_TextEditingController); _this._payment_edit$_controllers = t10; C.JSArray_methods.forEach$1(t10, new M._PaymentEditState_didChangeDependencies_closure(_this)); payment = _this._widget.viewModel.payment; t10 = payment.exchangeRate; _this._showConvertCurrency = t10 !== 1 && t10 !== 0; t11 = _this._framework$_element; t11.toString; t1.set$text(0, Y.formatNumber(payment.amount, t11, _null, _null, C.FormatNumberType_4, true, _null, false)); t2.set$text(0, payment.number); t3.set$text(0, payment.transactionReference); t4.set$text(0, payment.privateNotes); t5.set$text(0, payment.customValue1); t6.set$text(0, payment.customValue2); t7.set$text(0, payment.customValue3); t8.set$text(0, payment.customValue4); t8 = _this._framework$_element; t8.toString; t9.set$text(0, Y.formatNumber(t10, t8, _null, _null, C.FormatNumberType_4, true, _null, false)); C.JSArray_methods.forEach$1(_this._payment_edit$_controllers, new M._PaymentEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._payment_edit$_controllers, new M._PaymentEditState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_edit$_onChanged$0: function() { var _this = this, payment = _this._widget.viewModel.payment.rebuild$1(new M._PaymentEditState__onChanged_closure(_this)); if (!J.$eq$(payment, _this._widget.viewModel.payment)) _this._payment_edit$_debouncer.run$1(new M._PaymentEditState__onChanged_closure0(_this, payment)); }, convertCurrency$1: function(currency) { var client, t3, t4, t5, _this = this, t1 = {}, viewModel = _this._widget.viewModel, payment = viewModel.payment, state = viewModel.state, t2 = t1.exchangeRate = 1; if (currency != null) { t2 = state.uiState.selectedCompanyIndex; client = J.$index$asx(state.userCompanyStates._list, t2).clientState.$get$1(0, payment.clientId); t2 = t1.exchangeRate = R.getExchangeRate(state.staticState.currencyMap, currency.get$id(currency), client.settings.currencyId); } t3 = _this._exchangeRateController; t4 = _this.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t5 = _this._framework$_element; t5.toString; t3.set$text(0, Y.formatNumber(t2, t5, null, null, C.FormatNumberType_4, true, null, false)); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t4), false); t1 = payment.rebuild$1(new M._PaymentEditState_convertCurrency_closure(t1, currency)); viewModel.onChanged.call$1(t1); }, build$1: function(_, context) { var t5, creditPaymentables, amountPlaceholder, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, index, body, _this = this, _null = null, _s17_ = "__payment_amount_", _box_0 = {}, viewModel = _this._widget.viewModel, payment = viewModel.payment, state = viewModel.state, t1 = type$.legacy_AppLocalization, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1), t3 = payment.invoices, t4 = t3._list, invoicePaymentables = new Q.CopyOnWriteList(true, t4, H._instanceType(t3)._eval$1("CopyOnWriteList<1>")); t3 = payment.isForInvoice === true; if (!t3 || J.get$isEmpty$asx(t4)) { t4 = J.where$1$ax(t4, new M._PaymentEditState_build_closure()); t4 = !t4.get$iterator(t4).moveNext$0(); } else t4 = false; if (t4) { t4 = F.PaymentableEntity_PaymentableEntity(_null, _null, _null); invoicePaymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(invoicePaymentables._copy_on_write_list$_list, t4); } t4 = payment.credits; t5 = t4._list; creditPaymentables = new Q.CopyOnWriteList(true, t5, H._instanceType(t4)._eval$1("CopyOnWriteList<1>")); t4 = J.where$1$ax(t5, new M._PaymentEditState_build_closure0()); if (!t4.get$iterator(t4).moveNext$0()) { t4 = F.PaymentableEntity_PaymentableEntity(_null, _null, _null); creditPaymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(creditPaymentables._copy_on_write_list$_list, t4); } _box_0.creditTotal = _box_0.paymentTotal = 0; J.forEach$1$ax(invoicePaymentables._copy_on_write_list$_list, new M._PaymentEditState_build_closure1(_box_0)); J.forEach$1$ax(creditPaymentables._copy_on_write_list$_list, new M._PaymentEditState_build_closure2(_box_0)); if (_box_0.paymentTotal !== 0) { amountPlaceholder = t2.get$amount() + " "; t4 = _box_0.creditTotal; t5 = _box_0.paymentTotal; t6 = payment.clientId; amountPlaceholder = t4 === 0 ? C.JSString_methods.$add(amountPlaceholder, Y.formatNumber(t5, context, t6, _null, C.FormatNumberType_0, true, _null, false)) : amountPlaceholder + C.JSString_methods.$add(J.$add$ansx(Y.formatNumber(t5 - t4, context, t6, _null, C.FormatNumberType_0, true, _null, false), " + " + t2.get$credit() + " "), Y.formatNumber(_box_0.creditTotal, context, t6, _null, C.FormatNumberType_0, true, _null, false)); } else amountPlaceholder = _null; t4 = $.$get$_PaymentEditState__formKey(); t5 = "__payment_" + payment.id + "_" + payment.updatedAt + "__"; t6 = type$.ValueKey_legacy_String; t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([], t7); if (payment.get$isNew()) { t9 = payment.clientId; t10 = "__client_" + t9 + "__"; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); t1 = t1.get$client(t1); t11 = _this.autoValidate; t12 = $.$get$memoizedDropdownClientList(); t13 = state.uiState.selectedCompanyIndex; t14 = state.userCompanyStates._list; t15 = J.getInterceptor$asx(t14); t1 = H.setRuntimeTypeInfo([F.EntityDropdown$(true, t11, false, t9, t12.call$4(t15.$index(t14, t13).clientState.map, t15.$index(t14, t13).clientState.list, t15.$index(t14, t13).userState.map, state.staticState), _null, C.EntityType_client, new D.ValueKey(t10, t6), t1, _null, new M._PaymentEditState_build_closure3(viewModel, payment), _null, _null, new M._PaymentEditState_build_closure4(context))], t7); if (!t3) { t9 = _box_0.paymentTotal === 0 ? t2.get$amount() : amountPlaceholder; t1.push(S.DecoratedFormField$(false, _null, false, false, _this._payment_edit$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t9, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); } C.JSArray_methods.addAll$1(t8, t1); } else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "payment_number"); if (t1 == null) t1 = ""; t8.push(S.DecoratedFormField$(false, _null, false, false, _this._numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new M._PaymentEditState_build_closure5(t2))); } if (payment.get$isNew() || payment.isApplying === true) for (t1 = payment.amount, t9 = t1 === 0, index = 0; index < J.get$length$asx(invoicePaymentables._copy_on_write_list$_list); ++index) { t10 = "__invoice_paymentable_" + index + "_" + H.S(J.$index$asx(invoicePaymentables._copy_on_write_list$_list, index).invoiceId) + "__"; t11 = J.$index$asx(invoicePaymentables._copy_on_write_list$_list, index); t12 = t9 ? _null : t1 - _box_0.paymentTotal; t8.push(new M.PaymentableEditor(viewModel, t11, index, C.EntityType_invoice, t12, new D.ValueKey(t10, t6))); } t1 = payment.isApplying === true; t9 = !t1; if (t9) t8.push(K.DatePicker$(_this.autoValidate, _null, _null, t2.get$paymentDate(), _null, new M._PaymentEditState_build_closure6(viewModel, payment), payment.date, new M._PaymentEditState_build_closure7(context))); if (t9) { t10 = payment.typeId; t11 = "__type_" + H.S(t10) + "__"; t8.push(F.EntityDropdown$(true, false, false, t10, $.$get$memoizedPaymentTypeList().call$1(viewModel.staticState.paymentTypeMap), _null, C.EntityType_paymentType, new D.ValueKey(t11, t6), t2.get$paymentType(), _null, new M._PaymentEditState_build_closure8(viewModel, payment), _null, _null, _null)); } if (payment.get$isNew() || t1) { if (!t3) { t3 = state.uiState.selectedCompanyIndex; t3 = J.$index$asx(state.userCompanyStates._list, t3).userCompany.company.isModuleEnabled$1(C.EntityType_credit); } else t3 = false; if (t3) for (index = 0; index < J.get$length$asx(creditPaymentables._copy_on_write_list$_list); ++index) { t3 = "__credit_paymentable_" + index + "_" + H.S(J.$index$asx(creditPaymentables._copy_on_write_list$_list, index).creditId) + "__"; t8.push(new M.PaymentableEditor(viewModel, J.$index$asx(creditPaymentables._copy_on_write_list$_list, index), index, C.EntityType_credit, 0, new D.ValueKey(t3, t6))); } } if (t9) t8.push(S.DecoratedFormField$(false, _null, false, false, _this._transactionReferenceController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2.get$transactionReference(), _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, _null)); t3 = viewModel.onSavePressed; t8.push(new B.CustomField(_this._payment_edit$_custom1Controller, _null, t3, "payment1", payment.customValue1, false, _null)); t8.push(new B.CustomField(_this._payment_edit$_custom2Controller, _null, t3, "payment2", payment.customValue2, false, _null)); t8.push(new B.CustomField(_this._payment_edit$_custom3Controller, _null, t3, "payment3", payment.customValue3, false, _null)); t8.push(new B.CustomField(_this._payment_edit$_custom4Controller, _null, t3, "payment4", payment.customValue4, false, _null)); if (t9) t8.push(S.DecoratedFormField$(false, _null, false, false, _this._privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t2.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); t8 = Y.FormCard$(_null, t8, _null, 4, false, _null, false, _null); t9 = H.setRuntimeTypeInfo([], t7); if (payment.get$isNew()) { t10 = K.Theme_of(context).accentColor; t11 = L.Text$(t2.get$sendEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t9.push(O.SwitchListTile$(t10, _null, new M._PaymentEditState_build_closure9(viewModel, payment), _null, L.Text$(t2.get$emailReceipt(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t11, payment.sendEmail === true)); } t9.push(O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new M._PaymentEditState_build_closure10(_this, viewModel, payment, state), _null, _null, L.Text$(t2.get$convertCurrency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._showConvertCurrency)); if (_this._showConvertCurrency) { t10 = payment.exchangeCurrencyId; t11 = "__currency_" + t10 + "_true__"; t11 = F.EntityDropdown$(true, false, false, t10, $.$get$memoizedCurrencyList().call$1(viewModel.staticState.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t11, t6), t2.get$currency(), _null, new M._PaymentEditState_build_closure11(_this), _null, _null, _null); t10 = S.DecoratedFormField$(false, _null, false, false, _this._exchangeRateController, _null, true, _null, _null, _null, _null, false, false, new D.ValueKey(_s17_ + t10 + "__", t6), _null, t2.get$exchangeRate(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null); t12 = payment.exchangeRate; t13 = _s17_ + H.S(_box_0.paymentTotal) + "_" + H.S(_box_0.creditTotal) + "_" + H.S(t12) + "__"; if (t12 !== 1 && t12 !== 0) t12 = Y.formatNumber((payment.get$isNew() ? _box_0.paymentTotal - _box_0.creditTotal : payment.amount) * t12, context, _null, _null, C.FormatNumberType_4, true, _null, false); else t12 = ""; C.JSArray_methods.addAll$1(t9, H.setRuntimeTypeInfo([t11, t10, L.Focus$(false, _null, S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, t12, _null, false, false, new D.ValueKey(t13, t6), _null, t2.get$convertedAmount(), _null, _null, false, new M._PaymentEditState_build_closure12(_this), _null, t3, true, _null, _null, C.TextAlign_4, _null), _null, true, _null, true, _null, new M._PaymentEditState_build_closure13(_box_0, _this, payment, context, viewModel), _null, _null)], t7)); } body = A.Form$(false, T.Column$(H.setRuntimeTypeInfo([t8, Y.FormCard$(_null, t9, _null, 4, false, _null, true, _null)], t7), C.CrossAxisAlignment_2, new D.ValueKey(t5, t6), C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), t4); t3 = new M._PaymentEditState_build_onSavePressed(_this, viewModel); if (t1 && D.getLayout(context) === C.AppLayout_desktop) { t1 = K.Theme_of(context).canvasColor; t4 = L.Text$(t2.get$applyPayment(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = E.SingleChildScrollView$(T.SizedBox$(body, _null, 400), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t6 = H.setRuntimeTypeInfo([], t7); if (state.isSaving) t6.push(new T.Padding(C.EdgeInsets_0_0_16_0, T.SizedBox$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), 30, 30), _null)); else { t8 = U.TextButton$(false, L.Text$(t2.get$cancel(t2).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new M._PaymentEditState_build_closure14(context), _null); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "apply"); if (t2 == null) t2 = ""; C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo([t8, U.TextButton$(false, L.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new M._PaymentEditState_build_closure15(t3, context), _null)], t7)); } return E.AlertDialog$(t6, C.EdgeInsets_0_0_4_0, t1, t5, C.EdgeInsets_0_0_0_0, _null, _null, t4); } else { if (payment.get$isNew()) t1 = t2.get$enterPayment(); else if (t1) t1 = t2.get$applyPayment(); else { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "edit_payment"); if (t1 == null) t1 = ""; } return K.EditScaffold$(_null, _null, new X.ScrollableListView(H.setRuntimeTypeInfo([body], t7), _null, _null, false, _null), _null, payment, _null, false, _null, new M._PaymentEditState_build_closure16(viewModel), t3, _null, t1); } } }; M._PaymentEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 27 }; M._PaymentEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_payment_edit$_onChanged()), false); return null; }, $signature: 27 }; M._PaymentEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; M._PaymentEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = Y.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t2; t2 = J.trim$0$s(t1._numberController._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_number = t2; t2 = J.trim$0$s(t1._transactionReferenceController._change_notifier$_value.text); b.get$_payment_model$_$this()._transactionReference = t2; t2 = J.trim$0$s(t1._privateNotesController._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_privateNotes = t2; t2 = J.trim$0$s(t1._payment_edit$_custom1Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue1 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom2Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue2 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom3Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue3 = t2; t2 = J.trim$0$s(t1._payment_edit$_custom4Controller._change_notifier$_value.text); b.get$_payment_model$_$this()._payment_model$_customValue4 = t2; t1 = Y.parseDouble(t1._exchangeRateController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_exchangeRate = t1; return b; }, $signature: 37 }; M._PaymentEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.payment); }, $signature: 1 }; M._PaymentEditState_convertCurrency_closure.prototype = { call$1: function(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._exchangeCurrencyId = t1; t1 = this._box_0.exchangeRate; b.get$_payment_model$_$this()._payment_model$_exchangeRate = t1; return b; }, $signature: 37 }; M._PaymentEditState_build_closure.prototype = { call$1: function(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 196 }; M._PaymentEditState_build_closure0.prototype = { call$1: function(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 196 }; M._PaymentEditState_build_closure1.prototype = { call$1: function(invoice) { var t1 = this._box_0; t1.paymentTotal = t1.paymentTotal + invoice.amount; }, $signature: 224 }; M._PaymentEditState_build_closure2.prototype = { call$1: function(credit) { var t1 = this._box_0; t1.creditTotal = t1.creditTotal + credit.amount; }, $signature: 224 }; M._PaymentEditState_build_closure4.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectAClient() : null; }, $signature: 15 }; M._PaymentEditState_build_closure3.prototype = { call$1: function(client) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new M._PaymentEditState_build__closure5(client))); }, $signature: 44 }; M._PaymentEditState_build__closure5.prototype = { call$1: function(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._payment_model$_clientId = t1; J.clear$0$ax(b.get$credits().get$_safeList()); J.clear$0$ax(b.get$invoices().get$_safeList()); return b; }, $signature: 37 }; M._PaymentEditState_build_closure5.prototype = { call$1: function(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; M._PaymentEditState_build_closure7.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; M._PaymentEditState_build_closure6.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new M._PaymentEditState_build__closure4(date))); }, $signature: 7 }; M._PaymentEditState_build__closure4.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_date = this.date; return b; }, $signature: 37 }; M._PaymentEditState_build_closure8.prototype = { call$1: function(paymentType) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new M._PaymentEditState_build__closure3(paymentType))); }, $signature: 56 }; M._PaymentEditState_build__closure3.prototype = { call$1: function(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_payment_model$_$this()._typeId = t1; return b; }, $signature: 37 }; M._PaymentEditState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new M._PaymentEditState_build__closure2(value))); }, $signature: 12 }; M._PaymentEditState_build__closure2.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._sendEmail = this.value; return b; }, $signature: 37 }; M._PaymentEditState_build_closure10.prototype = { call$1: function(value) { var t3, t4, _this = this, t1 = _this.$this, t2 = _this.payment; if (!value) { t3 = t1._exchangeRateController; t4 = t1.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t3.set$text(0, ""); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t4), false); _this.viewModel.onChanged.call$1(t2.rebuild$1(new M._PaymentEditState_build__closure0())); } else t1.convertCurrency$1(J.$index$asx(_this.state.staticState.currencyMap._map$_map, t2.exchangeCurrencyId)); t1.setState$1(new M._PaymentEditState_build__closure1(t1, value)); }, $signature: 20 }; M._PaymentEditState_build__closure0.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._exchangeCurrencyId = ""; b.get$_payment_model$_$this()._payment_model$_exchangeRate = 1; return b; }, $signature: 37 }; M._PaymentEditState_build__closure1.prototype = { call$0: function() { this.$this._showConvertCurrency = this.value; }, $signature: 1 }; M._PaymentEditState_build_closure11.prototype = { call$1: function(currency) { return this.$this.convertCurrency$1(currency); }, $signature: 202 }; M._PaymentEditState_build_closure13.prototype = { call$1: function(hasFocus) { var t2, t3, amount, exchangeRate, t4, _this = this, t1 = _this.$this; if (t1._convertedAmount === 0) return; t2 = _this.payment; if (t2.get$isNew()) { t3 = _this._box_0; amount = t3.paymentTotal - t3.creditTotal; } else amount = t2.amount; exchangeRate = t1._convertedAmount / amount; t3 = t1._exchangeRateController; t4 = t1.get$_payment_edit$_onChanged(); t3.removeListener$1(0, t4); t3.set$text(0, Y.formatNumber(exchangeRate, _this.context, null, null, C.FormatNumberType_4, true, null, false)); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t4), false); _this.viewModel.onChanged.call$1(t2.rebuild$1(new M._PaymentEditState_build__closure(exchangeRate))); t1._convertedAmount = 0; }, $signature: 20 }; M._PaymentEditState_build__closure.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_exchangeRate = this.exchangeRate; return b; }, $signature: 37 }; M._PaymentEditState_build_closure12.prototype = { call$1: function(value) { this.$this._convertedAmount = Y.parseDouble(value, false); }, $signature: 7 }; M._PaymentEditState_build_onSavePressed.prototype = { call$1: function(context) { var isValid = $.$get$_PaymentEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new M._PaymentEditState_build_onSavePressed_closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 29 }; M._PaymentEditState_build_onSavePressed_closure.prototype = { call$0: function() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; M._PaymentEditState_build_closure14.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; M._PaymentEditState_build_closure15.prototype = { call$0: function() { return this.onSavePressed.call$1(this.context); }, $signature: 0 }; M._PaymentEditState_build_closure16.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; M.PaymentableEditor.prototype = { createState$0: function() { return new M._PaymentableEditorState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; M._PaymentableEditorState.prototype = { didChangeDependencies$0: function() { var paymentable, t3, _this = this, t1 = _this._payment_edit$_amountController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._payment_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new M._PaymentableEditorState_didChangeDependencies_closure(_this)); paymentable = _this._widget.paymentable; t2 = paymentable.amount; t3 = _this._framework$_element; t3.toString; t3 = Y.formatNumber(t2, t3, null, null, C.FormatNumberType_4, true, null, false); t1.set$text(0, t3 == null ? "0" : t3); if (paymentable.get$entityType() === C.EntityType_invoice) _this._payment_edit$_invoiceId = paymentable.invoiceId; else _this._payment_edit$_creditId = paymentable.creditId; C.JSArray_methods.forEach$1(_this._payment_edit$_controllers, new M._PaymentableEditorState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._payment_edit$_controllers, new M._PaymentableEditorState_dispose_closure0(this)); this.super$State$dispose(0); }, _payment_edit$_onChanged$1: function(clientId) { var t2, t3, t4, payment, _this = this, t1 = {}; t1.paymentable = null; t2 = _this._widget; t3 = t2.entityType; t2 = t2.paymentable; t2 = t3 === C.EntityType_invoice ? t1.paymentable = t2.rebuild$1(new M._PaymentableEditorState__onChanged_closure(_this)) : t1.paymentable = t2.rebuild$1(new M._PaymentableEditorState__onChanged_closure0(_this)); if (t2.$eq(0, _this._widget.paymentable) || t2.get$isEmpty(t2)) return; t2 = _this._widget; if (t2.entityType === C.EntityType_invoice) { t3 = t2.index; t2 = J.get$length$asx(t2.viewModel.payment.invoices._list); t4 = _this._widget; payment = t3 === t2 ? t4.viewModel.payment.rebuild$1(new M._PaymentableEditorState__onChanged_closure1(t1)) : t4.viewModel.payment.rebuild$1(new M._PaymentableEditorState__onChanged_closure2(t1, _this)); } else { t3 = t2.index; t2 = J.get$length$asx(t2.viewModel.payment.credits._list); t4 = _this._widget; payment = t3 === t2 ? t4.viewModel.payment.rebuild$1(new M._PaymentableEditorState__onChanged_closure3(t1)) : t4.viewModel.payment.rebuild$1(new M._PaymentableEditorState__onChanged_closure4(t1, _this)); } if (clientId != null) payment = payment.rebuild$1(new M._PaymentableEditorState__onChanged_closure5(clientId)); _this._widget.viewModel.onChanged.call$1(payment); }, _payment_edit$_onChanged$0: function() { return this._payment_edit$_onChanged$1(null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, paymentList, creditList, _this = this, _null = null, t1 = _this._widget, viewModel = t1.viewModel, state = viewModel.state, payment = viewModel.payment, paymentable = t1.paymentable; t1 = type$.legacy_AppLocalization; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); t3 = $.$get$memoizedDropdownInvoiceList(); t4 = state.uiState.selectedCompanyIndex; t5 = state.userCompanyStates._list; t6 = J.getInterceptor$asx(t5); t7 = t6.$index(t5, t4).invoiceState.map; t8 = t6.$index(t5, t4).clientState.map; t9 = t6.$index(t5, t4).invoiceState.list; t10 = payment.clientId; t11 = t6.$index(t5, t4).userState.map; t12 = type$.legacy_String; t13 = payment.invoices._list; t14 = J.getInterceptor$ax(t13); paymentList = t3.call$7(t7, t8, t9, t10, t11, t14.map$1$1(t13, new M._PaymentableEditorState_build_closure(), t12).toList$0(0), t6.$index(t5, t4).userCompany.company.settings.recurringNumberPrefix); t11 = $.$get$memoizedDropdownCreditList(); t9 = t6.$index(t5, t4).creditState.map; t8 = t6.$index(t5, t4).clientState.map; t7 = t6.$index(t5, t4).creditState.list; t4 = t6.$index(t5, t4).userState.map; t5 = payment.credits._list; t6 = J.getInterceptor$ax(t5); creditList = t11.call$6(t9, t8, t7, t10, t4, t6.map$1$1(t5, new M._PaymentableEditorState_build_closure0(), t12).toList$0(0)); if (_this._widget.entityType === C.EntityType_credit) if (t10.length !== 0) if (J.get$isEmpty$asx(creditList)) { t3 = paymentable.creditId; t3 = (t3 == null ? "" : t3).length === 0; } else t3 = false; else t3 = true; else t3 = false; if (t3) return T.SizedBox$(_null, _null, _null); else { if (_this._widget.entityType === C.EntityType_invoice) if (J.get$isEmpty$asx(paymentList)) { t3 = paymentable.invoiceId; t3 = (t3 == null ? "" : t3).length === 0; } else t3 = false; else t3 = false; if (t3) return T.SizedBox$(_null, _null, _null); } t3 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([], t3); if (_this._widget.entityType === C.EntityType_invoice) { t7 = paymentable.invoiceId; t4.push(T.Expanded$(F.EntityDropdown$(false, false, false, t7, paymentList, _null, C.EntityType_invoice, new D.ValueKey("__invoice_" + H.S(t7) + "__", type$.ValueKey_legacy_String), L.Localizations_of(context, C.Type_AppLocalization_KyD, t1).get$invoice(), _null, new M._PaymentableEditorState_build_closure1(_this, context), _null, new M._PaymentableEditorState_build_closure2(t2), _null), 1)); } if (_this._widget.entityType === C.EntityType_credit) { t7 = paymentable.creditId; t4.push(T.Expanded$(F.EntityDropdown$(false, false, false, t7, creditList, _null, C.EntityType_credit, new D.ValueKey("__credit_" + H.S(t7) + "__", type$.ValueKey_legacy_String), L.Localizations_of(context, C.Type_AppLocalization_KyD, t1).get$credit(), _null, new M._PaymentableEditorState_build_closure3(_this, context), _null, _null, _null), 1)); } t1 = _this._payment_edit$_creditId; if ((t1 == null ? "" : t1).length === 0) { t1 = _this._payment_edit$_invoiceId; t1 = (t1 == null ? "" : t1).length !== 0; } else t1 = true; if (t1) { t1 = T.SizedBox$(_null, _null, 16); t7 = payment.isForInvoice === true ? t2.get$amount() : t2.get$applied(); C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([t1, T.Expanded$(S.DecoratedFormField$(false, _null, false, false, _this._payment_edit$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t7, _null, _null, false, _null, _null, _null, false, _null, _null, C.TextAlign_4, _null), 1)], t3)); } if (!(_this._widget.entityType === C.EntityType_invoice && t14.get$isNotEmpty(t13) && payment.isForInvoice !== true && _this._payment_edit$_invoiceId != null)) t1 = _this._widget.entityType === C.EntityType_credit && t6.get$isNotEmpty(t5) && _this._payment_edit$_creditId != null; else t1 = true; if (t1) { t1 = T.SizedBox$(_null, _null, 16); t5 = L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null); t2 = t2.get$remove(t2); C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([t1, B.IconButton$(C.Alignment_0_0, _null, _null, true, t5, 24, paymentable.get$isEmpty(paymentable) ? _null : new M._PaymentableEditorState_build_closure4(_this, viewModel, payment), C.EdgeInsets_8_8_8_8, t2, _null)], t3)); } return T.Row$(t4, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; M._PaymentableEditorState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); }, $signature: 27 }; M._PaymentableEditorState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_payment_edit$_onChanged()), false); return null; }, $signature: 27 }; M._PaymentableEditorState_dispose_closure0.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_payment_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; M._PaymentableEditorState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._payment_edit$_invoiceId; if (t2 == null) t2 = t1._widget.paymentable.invoiceId; b.get$_payment_model$_$this()._payment_model$_invoiceId = t2; t1 = Y.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 428 }; M._PaymentableEditorState__onChanged_closure0.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._payment_edit$_creditId; if (t2 == null) t2 = t1._widget.paymentable.creditId; b.get$_payment_model$_$this()._creditId = t2; t1 = Y.parseDouble(t1._payment_edit$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 428 }; M._PaymentableEditorState__onChanged_closure1.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 37 }; M._PaymentableEditorState__onChanged_closure2.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index, t3 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t3 == null) H.throwExpression(P.ArgumentError$("null element")); J.$indexSet$ax(t1.get$_safeList(), t2, t3); return b; }, $signature: 37 }; M._PaymentableEditorState__onChanged_closure3.prototype = { call$1: function(b) { var t1 = b.get$credits(), t2 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t2 == null) H.throwExpression(P.ArgumentError$("null element")); J.add$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 37 }; M._PaymentableEditorState__onChanged_closure4.prototype = { call$1: function(b) { var t1 = b.get$credits(), t2 = this.$this._widget.index, t3 = this._box_0.paymentable; if (!$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null)) if (t3 == null) H.throwExpression(P.ArgumentError$("null element")); J.$indexSet$ax(t1.get$_safeList(), t2, t3); return b; }, $signature: 37 }; M._PaymentableEditorState__onChanged_closure5.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_clientId = this.clientId; return b; }, $signature: 37 }; M._PaymentableEditorState_build_closure.prototype = { call$1: function(p) { return p.invoiceId; }, $signature: 169 }; M._PaymentableEditorState_build_closure0.prototype = { call$1: function(p) { return p.creditId; }, $signature: 169 }; M._PaymentableEditorState_build_closure2.prototype = { call$1: function(entity) { var t1; if (entity == null) return ""; else { if (entity.get$listDisplayName().length === 0) { t1 = this.localization; t1 = t1.get$pending(t1); } else t1 = entity.get$listDisplayName(); return t1; } }, $signature: 41 }; M._PaymentableEditorState_build_closure1.prototype = { call$1: function(selected) { var t1, t2, t3, amount; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t2 = t1._widget.limit; if (t2 != null) { t3 = selected.statusId !== "1" ? selected.balance : selected.amount; amount = Math.min(t2, t3); } else amount = selected.statusId !== "1" ? selected.balance : selected.amount; t2 = Y.formatNumber(amount, this.context, null, null, C.FormatNumberType_4, true, null, false); if (t2 == null) t2 = "0"; t1._payment_edit$_amountController.set$text(0, t2); t1._payment_edit$_invoiceId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, $signature: 44 }; M._PaymentableEditorState_build_closure3.prototype = { call$1: function(selected) { var t1, t2; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t2 = Y.formatNumber(selected.balance, this.context, null, null, C.FormatNumberType_4, true, null, false); if (t2 == null) t2 = "0"; t1._payment_edit$_amountController.set$text(0, t2); t1._payment_edit$_creditId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, $signature: 44 }; M._PaymentableEditorState_build_closure4.prototype = { call$0: function() { var t1 = this.$this, t2 = this.payment, t3 = this.viewModel.onChanged; if (t1._widget.entityType === C.EntityType_invoice) t3.call$1(t2.rebuild$1(new M._PaymentableEditorState_build__closure(t1))); else t3.call$1(t2.rebuild$1(new M._PaymentableEditorState_build__closure0(t1))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; M._PaymentableEditorState_build__closure.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; J.removeAt$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 37 }; M._PaymentableEditorState_build__closure0.prototype = { call$1: function(b) { var t1 = b.get$credits(), t2 = this.$this._widget.index; J.removeAt$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 37 }; B.PaymentEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.PaymentEditScreen_build_closure(), new B.PaymentEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentEditVM); } }; B.PaymentEditScreen_build_closure0.prototype = { call$1: function(store) { return B.PaymentEditVM_PaymentEditVM$fromStore(store); }, $signature: 2322 }; B.PaymentEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new M.PaymentEdit(viewModel, new D.ValueKey(viewModel.payment.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2323 }; B.PaymentEditVM.prototype = { get$payment: function() { return this.payment; } }; B.PaymentEditVM_PaymentEditVM$fromStore_closure.prototype = { call$1: function(payment) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdatePayment(payment)); }, $signature: 129 }; B.PaymentEditVM_PaymentEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, F.PaymentEntity_PaymentEntity(_null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; B.PaymentEditVM_PaymentEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.PaymentEditVM_PaymentEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; B.PaymentEditVM_PaymentEditVM$fromStore__closure.prototype = { call$0: function() { var t4, $navigator, t1 = {}, t2 = this.store, payment = t2.get$_store$_state().uiState.paymentUIState.editing, t3 = $.$get$navigatorKey(); t3.toString; t4 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t3.get$currentState(); t1.amount = 0; J.forEach$1$ax(payment.invoices._list, new B.PaymentEditVM_PaymentEditVM$fromStore___closure(t1)); J.forEach$1$ax(payment.credits._list, new B.PaymentEditVM_PaymentEditVM$fromStore___closure0(t1)); if (t1.amount < 0) { E.showDialog(true, new B.PaymentEditVM_PaymentEditVM$fromStore___closure1(t4), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t3), null, true, type$.legacy_ErrorDialog); return null; } t1 = new P._Future($.Zone__current, type$._Future_legacy_PaymentEntity); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new Q.SavePaymentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_PaymentEntity), payment)); return t1.then$1$1(0, new B.PaymentEditVM_PaymentEditVM$fromStore___closure2(payment, t4, this.state, t2, $navigator), type$.Null).catchError$1(new B.PaymentEditVM_PaymentEditVM$fromStore___closure3()); }, $signature: 31 }; B.PaymentEditVM_PaymentEditVM$fromStore___closure.prototype = { call$1: function(invoice) { var t1 = this._box_0; return t1.amount = t1.amount + invoice.amount; }, $signature: 709 }; B.PaymentEditVM_PaymentEditVM$fromStore___closure0.prototype = { call$1: function(credit) { var t1 = this._box_0; return t1.amount = t1.amount - credit.amount; }, $signature: 709 }; B.PaymentEditVM_PaymentEditVM$fromStore___closure1.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "negative_payment_error"); return new M.ErrorDialog(t1 == null ? "" : t1, false, null); }, $signature: 21 }; B.PaymentEditVM_PaymentEditVM$fromStore___closure2.prototype = { call$1: function(savedPayment) { var _this = this, _s13_ = "/payment/view", t1 = _this.payment, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_payment"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_payment"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedPayment); } else if (t1.isApplying === true) _this.navigator.pop$0(0); else M.viewEntity(false, savedPayment, null, false); }, $signature: 129 }; B.PaymentEditVM_PaymentEditVM$fromStore___closure3.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new B.PaymentEditVM_PaymentEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; B.PaymentEditVM_PaymentEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.PaymentListItem.prototype = { build$1: function(_, context) { var t3, t4, isChecked, textStyle, t5, t6, client, t7, t8, t9, filterMatch, mobileSubtitle, textColor, desktopSubtitle, _this = this, _null = null, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, paymentUIState = uiState.paymentUIState, listUIState = paymentUIState.listUIState, t2 = _this.showCheckbox, isInMultiselect = t2 && listUIState.selectedIds != null; if (isInMultiselect) { t3 = _this.payment.id; t4 = listUIState.selectedIds; isChecked = t4 != null && J.contains$1$asx(t4._list, t3); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t3 = state.userCompanyStates; t4 = uiState.selectedCompanyIndex; t3 = t3._list; t5 = J.getInterceptor$asx(t3); t6 = _this.payment; client = t5.$index(t3, t4).clientState.$get$1(0, t6.clientId); t7 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t8 = _this.filter; if (t8 != null && t8.length !== 0) { t9 = t6.matchesFilterValue$1(t8); filterMatch = t9 == null ? client.matchesFilterValue$1(t8) : t9; } else filterMatch = _null; if (filterMatch == null) { t8 = t6.number; mobileSubtitle = t8 + " \u2022 " + Y.formatDate(t6.date, context, true, true, false); } else mobileSubtitle = filterMatch; textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.desktopSubtitle = ""; t8 = t6.date; if (t8.length !== 0) { desktopSubtitle = Y.formatDate(t8, context, true, true, false); t1.desktopSubtitle = desktopSubtitle; t8 = desktopSubtitle; } else t8 = ""; t9 = t6.transactionReference; if (t9.length !== 0) t1.desktopSubtitle = (t8.length !== 0 ? t1.desktopSubtitle = t8 + " \u2022 " : t8) + t9; if (D.getLayout(context) === C.AppLayout_desktop) { t8 = t6.id; t8 = t8 === (uiState.get$isEditing() ? paymentUIState.editing.id : paymentUIState.selectedId); } else t8 = false; return new L.DismissibleEntity(t5.$index(t3, t4).userCompany, t6, new A.LayoutBuilder(new O.PaymentListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, textStyle, filterMatch, textColor, mobileSubtitle, t7), _null), t8, t2, true, _null); }, get$payment: function() { return this.payment; } }; O.PaymentListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new O.PaymentListItem_build__closure(), false, _this.isChecked), _null); else { t2 = t1.payment; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new O.PaymentListItem_build__closure0(t1)); t2 = t4; } t3 = t1.payment; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = _this.client; t9 = L.Text$(t8.displayName, _null, _null, _null, _null, _null, t4, _null, _null, _null); t10 = _this.filterMatch; if (t10 == null) t10 = _this._box_0.desktopSubtitle; t11 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t9, L.Text$(t10, _null, 2, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t11.get$value(t11) >>> 16 & 255, t11.get$value(t11) >>> 8 & 255, t11.get$value(t11) & 255)), _null, _null, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.amount, context, t8.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 25), new V.EntityStatusChip(t3, 105, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new O.PaymentListItem_build__closure1(t1, context), new O.PaymentListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new O.PaymentListItem_build__closure3(), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.payment; t5 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(_this.client.displayName, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(t4.amount, context, t4.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.mobileSubtitle; t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new O.PaymentListItem_build__closure4(t1, context), new O.PaymentListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(t6.length !== 0 ? L.Text$(t6, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), L.Text$(_this.localization.lookup$1("payment_status_" + t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, new E.PaymentStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new L.EntityStateLabel(t4, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; O.PaymentListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.payment, !t1.showCheckbox, false); }, $signature: 0 }; O.PaymentListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.payment, false, true); }, $signature: 0 }; O.PaymentListItem_build__closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; O.PaymentListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.payment], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; O.PaymentListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.payment, !t1.showCheckbox, false); }, $signature: 0 }; O.PaymentListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.payment, false, true); }, $signature: 0 }; O.PaymentListItem_build__closure3.prototype = { call$1: function(value) { return null; }, $signature: 20 }; R.PaymentListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.PaymentListBuilder_build_closure(), R.payment_list_vm_PaymentListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentListVM); } }; R.PaymentListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.paymentList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_payment, new R.PaymentListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new Q.PaymentPresenter(), t2, t4); }, $signature: 2325 }; R.PaymentListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, paymentId = J.$index$asx(t1.paymentList, index), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; return new O.PaymentListItem(J.$index$asx(J.$index$asx(t2._list, t3).paymentState.map._map$_map, paymentId), t1.filter, true, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 540 }; R.PaymentListVM.prototype = { get$user: function() { return this.user; } }; R.PaymentListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; R.PaymentListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; R.PaymentListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortPayments(field)); }, $signature: 5 }; R.PaymentListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearPaymentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; Q.PaymentPresenter.prototype = { getField$2$context$field: function(context, field) { var t1, t2, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), payment = type$.legacy_PaymentEntity._as(_this.entity); switch (field) { case "number": return L.Text$(payment.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "type": t1 = state.staticState.paymentTypeMap; t2 = payment.typeId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_number": return L.Text$(C.JSArray_methods.join$1(J.map$1$1$ax(payment.paymentables._list, new Q.PaymentPresenter_getField_closure(state), type$.legacy_String).toList$0(0), ", "), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = payment.clientId; t1 = J.$index$asx(t2._map$_map, t1); t1 = t1 == null ? _null : t1.displayName; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "transaction_reference": return L.Text$(payment.transactionReference, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(payment.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(payment.amount, context, payment.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "converted_amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(payment.amount * payment.exchangeRate, context, payment.exchangeCurrencyId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "status": return new V.EntityStatusChip(payment, 105, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, payment.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, payment.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, payment.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, payment.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "refunded": return L.Text$(Y.formatNumber(payment.refunded, context, payment.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(payment.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(payment.exchangeRate, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "gateway": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; return L.Text$(J.$index$asx(t1._list, t2).companyGatewayState.$get$1(0, payment.companyGatewayId).label, _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; Q.PaymentPresenter_getField_closure.prototype = { call$1: function(paymentable) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t1).invoiceState.map; t2 = paymentable.invoiceId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? null : t2.number; return t1 == null ? "" : t1; }, $signature: 169 }; K.PaymentScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, _s21_ = "transaction_reference", store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.paymentUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.paymentList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "number", "client", "amount", "invoice_number", "date", "type", _s21_], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("refunded"); t6.push("private_notes"); t6.push("exchange_rate"); t6.push("converted_amount"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("gateway"); t7 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "invoice_number", "date", "type", _s21_], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("payment1", true), company.getCustomFieldValues$2$excludeBlank("payment2", true), company.getCustomFieldValues$2$excludeBlank("payment3", true), company.getCustomFieldValues$2$excludeBlank("payment4", true), t7, C.EntityType_payment, false, C.List_empty14, new K.PaymentScreen_build_closure(store), new K.PaymentScreen_build_closure0(store), new K.PaymentScreen_build_closure1(store), new K.PaymentScreen_build_closure2(store), new K.PaymentScreen_build_closure3(store), new K.PaymentScreen_build_closure4(store), new K.PaymentScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["number", "date", "amount", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_payment) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "payment_fab", false, new K.PaymentScreen_build_closure6(context), t3.get$enterPayment()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_payment, t2, new K.PaymentScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new R.PaymentListBuilder(_null), t6, C.EntityType_payment, t3, 0, _null, new K.PaymentScreen_build_closure8(store), new K.PaymentScreen_build_closure9(store)); } }; K.PaymentScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.StartPaymentMultiselect()); }, $signature: 9 }; K.PaymentScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPayments(value)); }, $signature: 7 }; K.PaymentScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.paymentUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearPaymentMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartPaymentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.PaymentScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortPayments(value)); }, $signature: 5 }; K.PaymentScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPaymentsByCustom1(value)); }, $signature: 5 }; K.PaymentScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPaymentsByCustom2(value)); }, $signature: 5 }; K.PaymentScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPaymentsByCustom3(value)); }, $signature: 5 }; K.PaymentScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPaymentsByCustom4(value)); }, $signature: 5 }; K.PaymentScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterPaymentsByState(state)); }, $signature: 53 }; K.PaymentScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.paymentUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearPaymentMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartPaymentMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.PaymentScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_payment); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.PaymentScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.PaymentScreenBuilder_build_closure(), G.payment_screen_vm_PaymentScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentScreenVM); } }; G.PaymentScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new K.PaymentScreen(vm, null); }, $signature: 2326 }; G.PaymentScreenVM.prototype = {}; Y.PaymentRefund.prototype = { createState$0: function() { return new Y._PaymentRefundState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; Y._PaymentRefundState.prototype = { didChangeDependencies$0: function() { var payment, _this = this, t1 = _this._payment_refund$_amountController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._payment_refund$_controllers = t2; C.JSArray_methods.forEach$1(t2, new Y._PaymentRefundState_didChangeDependencies_closure(_this)); payment = _this._widget.viewModel.payment; t2 = _this._framework$_element; t2.toString; t1.set$text(0, Y.formatNumber(payment.amount, t2, null, null, C.FormatNumberType_4, true, null, false)); C.JSArray_methods.forEach$1(_this._payment_refund$_controllers, new Y._PaymentRefundState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._payment_refund$_controllers, new Y._PaymentRefundState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_refund$_onChanged$0: function() { this._payment_refund$_debouncer.run$1(new Y._PaymentRefundState__onChanged_closure(this)); }, build$1: function(_, context) { var hasMultipleInvoices, state, companyGateway, gateway, t4, t5, t6, t7, index, t8, t9, body, _this = this, _null = null, viewModel = _this._widget.viewModel, payment = viewModel.payment, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = payment.invoices, t3 = t2._list, paymentables = new Q.CopyOnWriteList(true, t3, H._instanceType(t2)._eval$1("CopyOnWriteList<1>")); t3 = J.where$1$ax(t3, new Y._PaymentRefundState_build_closure()); t3 = t3.get$iterator(t3).moveNext$0(); hasMultipleInvoices = payment.get$invoicePaymentables().length > 1; if (!t3 && hasMultipleInvoices) { t2 = F.PaymentableEntity_PaymentableEntity(_null, _null, _null); paymentables._maybeCopyBeforeWrite$0(); J.add$1$ax(paymentables._copy_on_write_list$_list, t2); } state = viewModel.state; t2 = state.uiState.selectedCompanyIndex; companyGateway = J.$index$asx(state.userCompanyStates._list, t2).companyGatewayState.$get$1(0, payment.companyGatewayId); t2 = state.staticState.gatewayMap; t3 = companyGateway.gatewayId; gateway = J.$index$asx(t2._map$_map, t3); if (gateway == null) gateway = A.GatewayEntity_GatewayEntity(); t2 = $.$get$_PaymentRefundState__formKey(); t3 = type$.ValueKey_legacy_String; t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); t6 = payment.paymentables._list; t7 = J.getInterceptor$asx(t6); if (t7.get$isEmpty(t6)) t5.push(S.DecoratedFormField$(false, _null, false, false, _this._payment_refund$_amountController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$amount(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (t7.get$isNotEmpty(t6)) for (index = 0; index < J.get$length$asx(paymentables._copy_on_write_list$_list); ++index) { t6 = "__paymentable_" + index + "_" + J.$index$asx(paymentables._copy_on_write_list$_list, index).id + "__"; t5.push(new Y.PaymentableEditor0(viewModel, J.$index$asx(paymentables._copy_on_write_list$_list, index), index, new D.ValueKey(t6, t3))); } t6 = _this.autoValidate; t7 = t1.localeCode; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "refund_date"); if (t8 == null) t8 = ""; t5.push(K.DatePicker$(t6, _null, _null, t8, _null, new Y._PaymentRefundState_build_closure0(viewModel, payment), payment.date, new Y._PaymentRefundState_build_closure1(context))); t5 = Y.FormCard$(_null, t5, _null, 4, false, _null, false, _null); t8 = K.Theme_of(context).accentColor; t6 = L.Text$(t1.get$sendEmail(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = H.setRuntimeTypeInfo([O.SwitchListTile$(t8, _null, new Y._PaymentRefundState_build_closure2(viewModel, payment), _null, L.Text$(t1.get$emailReceipt(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t6, payment.sendEmail === true)], t4); if (gateway.get$supportsRefunds()) { t8 = K.Theme_of(context).accentColor; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "gateway_refund"); t9 = L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "gateway_refund_help"); t6.push(O.SwitchListTile$(t8, _null, new Y._PaymentRefundState_build_closure3(viewModel, payment), _null, L.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, payment.gatewayRefund === true)); } body = A.Form$(false, T.Column$(H.setRuntimeTypeInfo([t5, Y.FormCard$(_null, t6, _null, 4, false, _null, false, _null)], t4), C.CrossAxisAlignment_2, new D.ValueKey(payment.id, t3), C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), t2); t2 = new Y._PaymentRefundState_build_onSavePressed(_this, viewModel); if (D.getLayout(context) === C.AppLayout_mobile) { t3 = t1.get$refundPayment(); return K.EditScaffold$(_null, _null, body, _null, payment, _null, false, _null, new Y._PaymentRefundState_build_closure4(viewModel), new Y._PaymentRefundState_build_closure5(t2), t1.get$refund(), t3); } else { t3 = K.Theme_of(context).canvasColor; t5 = L.Text$(t1.get$refundPayment(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t6 = E.SingleChildScrollView$(T.SizedBox$(body, _null, 400), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t7 = H.setRuntimeTypeInfo([], t4); if (state.isSaving) t7.push(new T.Padding(C.EdgeInsets_0_0_16_0, T.SizedBox$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), 30, 30), _null)); else C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new Y._PaymentRefundState_build_closure6(context), _null), U.TextButton$(false, L.Text$(t1.get$refund().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new Y._PaymentRefundState_build_closure7(t2, context), _null)], t4)); return E.AlertDialog$(t7, C.EdgeInsets_0_0_4_0, t3, t6, C.EdgeInsets_0_0_0_0, _null, _null, t5); } } }; Y._PaymentRefundState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 27 }; Y._PaymentRefundState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_payment_refund$_onChanged()), false); return null; }, $signature: 27 }; Y._PaymentRefundState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; Y._PaymentRefundState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this, payment = t1._widget.viewModel.payment.rebuild$1(new Y._PaymentRefundState__onChanged__closure(t1)); if (!J.$eq$(payment, t1._widget.viewModel.payment)) t1._widget.viewModel.onChanged.call$1(payment); }, $signature: 1 }; Y._PaymentRefundState__onChanged__closure.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.$this._payment_refund$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 37 }; Y._PaymentRefundState_build_closure.prototype = { call$1: function(paymentable) { return paymentable.get$isEmpty(paymentable); }, $signature: 196 }; Y._PaymentRefundState_build_closure1.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseSelectADate() : null; }, $signature: 15 }; Y._PaymentRefundState_build_closure0.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new Y._PaymentRefundState_build__closure1(date))); }, $signature: 7 }; Y._PaymentRefundState_build__closure1.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_date = this.date; return b; }, $signature: 37 }; Y._PaymentRefundState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new Y._PaymentRefundState_build__closure0(value))); }, $signature: 12 }; Y._PaymentRefundState_build__closure0.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._sendEmail = this.value; return b; }, $signature: 37 }; Y._PaymentRefundState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new Y._PaymentRefundState_build__closure(value))); }, $signature: 12 }; Y._PaymentRefundState_build__closure.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._gatewayRefund = this.value; return b; }, $signature: 37 }; Y._PaymentRefundState_build_onSavePressed.prototype = { call$1: function(context) { var isValid = $.$get$_PaymentRefundState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new Y._PaymentRefundState_build_onSavePressed_closure(t1, isValid)); if (!isValid) return; t1 = new P._Future($.Zone__current, type$._Future_legacy_PaymentEntity); t1.then$1$1(0, new Y._PaymentRefundState_build_onSavePressed_closure0(context), type$.Null); this.viewModel.onRefundPressed.call$2(context, new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_PaymentEntity)); }, $signature: 29 }; Y._PaymentRefundState_build_onSavePressed_closure.prototype = { call$0: function() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; Y._PaymentRefundState_build_onSavePressed_closure0.prototype = { call$1: function(value) { K.Navigator_of(this.context, false).pop$0(0); }, $signature: 129 }; Y._PaymentRefundState_build_closure4.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; Y._PaymentRefundState_build_closure5.prototype = { call$1: function(context) { return this.onSavePressed.call$1(context); }, $signature: 29 }; Y._PaymentRefundState_build_closure6.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; Y._PaymentRefundState_build_closure7.prototype = { call$0: function() { return this.onSavePressed.call$1(this.context); }, $signature: 0 }; Y.PaymentableEditor0.prototype = { createState$0: function() { return new Y._PaymentableEditorState0(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; Y._PaymentableEditorState0.prototype = { didChangeDependencies$0: function() { var t3, _this = this, t1 = _this._payment_refund$_amountController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._payment_refund$_controllers = t2; C.JSArray_methods.forEach$1(t2, new Y._PaymentableEditorState_didChangeDependencies_closure1(_this)); t2 = _this._widget.paymentable; _this._payment_refund$_invoiceId = t2.invoiceId; t2 = t2.amount; t3 = _this._framework$_element; t3.toString; t1.set$text(0, Y.formatNumber(t2, t3, null, null, C.FormatNumberType_4, true, null, false)); C.JSArray_methods.forEach$1(_this._payment_refund$_controllers, new Y._PaymentableEditorState_didChangeDependencies_closure2(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._payment_refund$_controllers, new Y._PaymentableEditorState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_refund$_onChanged$1: function(clientId) { var t1, t2, t3, payment, _this = this, paymentable = _this._widget.paymentable.rebuild$1(new Y._PaymentableEditorState__onChanged_closure6(_this)); if (paymentable.$eq(0, _this._widget.paymentable) || paymentable.get$isEmpty(paymentable)) return; t1 = _this._widget; t2 = t1.index; t1 = J.get$length$asx(t1.viewModel.payment.invoices._list); t3 = _this._widget; payment = t2 === t1 ? t3.viewModel.payment.rebuild$1(new Y._PaymentableEditorState__onChanged_closure7(paymentable)) : t3.viewModel.payment.rebuild$1(new Y._PaymentableEditorState__onChanged_closure8(_this, paymentable)); if (clientId != null) payment = payment.rebuild$1(new Y._PaymentableEditorState__onChanged_closure9(clientId)); _this._widget.viewModel.onChanged.call$1(payment); }, _payment_refund$_onChanged$0: function() { return this._payment_refund$_onChanged$1(null); }, build$1: function(_, context) { var t2, hasMultipleInvoices, t3, t4, t5, t6, _this = this, _null = null, t1 = _this._widget, viewModel = t1.viewModel, payment = viewModel.payment, paymentable = t1.paymentable; t1 = type$.legacy_AppLocalization; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1); hasMultipleInvoices = payment.get$invoicePaymentables().length > 1; t3 = paymentable.invoiceId; t4 = "__invoice_" + H.S(t3) + "__"; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1).get$invoice(); t5 = type$.JSArray_legacy_Widget; t1 = H.setRuntimeTypeInfo([T.Expanded$(F.EntityDropdown$(false, false, false, t3, J.map$1$1$ax(payment.paymentables._list, new Y._PaymentableEditorState_build_closure5(), type$.legacy_String).toList$0(0), _null, C.EntityType_invoice, new D.ValueKey(t4, type$.ValueKey_legacy_String), t1, _null, new Y._PaymentableEditorState_build_closure6(_this), new Y._PaymentableEditorState_build_closure7(context), _null, _null), 1)], t5); t3 = _this._payment_refund$_invoiceId; t4 = t3 == null; if ((t4 ? "" : t3).length !== 0) { t6 = T.SizedBox$(_null, _null, 16); if (t4) t3 = ""; C.JSArray_methods.addAll$1(t1, H.setRuntimeTypeInfo([t6, T.Expanded$(S.DecoratedFormField$(false, _null, !hasMultipleInvoices, false, _this._payment_refund$_amountController, _null, t3.length !== 0, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t2.get$amount(), _null, _null, false, _null, _null, _null, false, _null, _null, C.TextAlign_4, new Y._PaymentableEditorState_build_closure8(hasMultipleInvoices, t2)), 1)], t5)); } if (hasMultipleInvoices && _this._payment_refund$_invoiceId != null) { t3 = T.SizedBox$(_null, _null, 16); t4 = L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null); t2 = t2.get$remove(t2); C.JSArray_methods.addAll$1(t1, H.setRuntimeTypeInfo([t3, B.IconButton$(C.Alignment_0_0, _null, _null, true, t4, 24, paymentable.get$isEmpty(paymentable) ? _null : new Y._PaymentableEditorState_build_closure9(_this, viewModel, payment), C.EdgeInsets_8_8_8_8, t2, _null)], t5)); } return T.Row$(t1, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; Y._PaymentableEditorState_didChangeDependencies_closure1.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); }, $signature: 27 }; Y._PaymentableEditorState_didChangeDependencies_closure2.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_payment_refund$_onChanged()), false); return null; }, $signature: 27 }; Y._PaymentableEditorState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_payment_refund$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; Y._PaymentableEditorState__onChanged_closure6.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._payment_refund$_invoiceId; b.get$_payment_model$_$this()._payment_model$_invoiceId = t2; t1 = Y.parseDouble(t1._payment_refund$_amountController._change_notifier$_value.text, false); b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, $signature: 428 }; Y._PaymentableEditorState__onChanged_closure7.prototype = { call$1: function(b) { var t1 = b.get$invoices(); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.add$1$ax(t1.get$_safeList(), this.paymentable); return b; }, $signature: 37 }; Y._PaymentableEditorState__onChanged_closure8.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), t2, this.paymentable); return b; }, $signature: 37 }; Y._PaymentableEditorState__onChanged_closure9.prototype = { call$1: function(b) { b.get$_payment_model$_$this()._payment_model$_clientId = this.clientId; return b; }, $signature: 37 }; Y._PaymentableEditorState_build_closure5.prototype = { call$1: function(payment) { return payment.invoiceId; }, $signature: 169 }; Y._PaymentableEditorState_build_closure7.prototype = { call$1: function(entity) { type$.legacy_InvoiceEntity._as(entity); return Y.formatNumber(entity.amount, this.context, entity.clientId, null, C.FormatNumberType_0, true, null, false); }, $signature: 41 }; Y._PaymentableEditorState_build_closure6.prototype = { call$1: function(selected) { var t1; type$.legacy_InvoiceEntity._as(selected); t1 = this.$this; t1._payment_refund$_onChanged$1(selected.clientId); t1.setState$1(new Y._PaymentableEditorState_build__closure2(t1, selected)); }, $signature: 44 }; Y._PaymentableEditorState_build__closure2.prototype = { call$0: function() { this.$this._payment_refund$_invoiceId = this.invoice.id; }, $signature: 1 }; Y._PaymentableEditorState_build_closure8.prototype = { call$1: function(value) { var t1; if (!this.hasMultipleInvoices) t1 = J.trim$0$s(value).length === 0 || Y.parseDouble(value, false) === 0; else t1 = false; return t1 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; Y._PaymentableEditorState_build_closure9.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new Y._PaymentableEditorState_build__closure1(this.$this))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y._PaymentableEditorState_build__closure1.prototype = { call$1: function(b) { var t1 = b.get$invoices(), t2 = this.$this._widget.index; J.removeAt$1$ax(t1.get$_safeList(), t2); return b; }, $signature: 37 }; Y.PaymentRefundScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.PaymentRefundScreen_build_closure(), new Y.PaymentRefundScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentRefundVM); } }; Y.PaymentRefundScreen_build_closure0.prototype = { call$1: function(store) { return Y.PaymentRefundVM_PaymentRefundVM$fromStore(store); }, $signature: 2327 }; Y.PaymentRefundScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Y.PaymentRefund(viewModel, new D.ValueKey(viewModel.payment.id, type$.ValueKey_legacy_String)); }, $signature: 2328 }; Y.PaymentRefundVM.prototype = { get$payment: function() { return this.payment; } }; Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure.prototype = { call$1: function(payment) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdatePayment(payment)); }, $signature: 129 }; Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, F.PaymentEntity_PaymentEntity(_null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure0.prototype = { call$2: function(context, completer) { var t1 = this.store, t2 = this.payment; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.RefundPaymentRequest(completer, t2)); return completer.future.then$1$1(0, new Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure(context, t1, t2), type$.Null).catchError$1(new Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure0(context)); }, $signature: 2329 }; Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure.prototype = { call$1: function(savedPayment) { var _s13_ = "/payment/view", t1 = this.context, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "refunded_payment"); M.showToast(t2 == null ? "" : t2); if (D.getLayout(t1) === C.AppLayout_mobile) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); if (this.payment.get$isNew()) { t2 = type$.legacy_Object; K.Navigator_of(t1, false).pushReplacementNamed$2$1(_s13_, t2, t2); } else K.Navigator_of(t1, false).pop$1(0, savedPayment); } else M.viewEntity(false, savedPayment, null, true); }, $signature: 129 }; Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure0.prototype = { call$1: function(error) { E.showDialog(true, new Y.PaymentRefundVM_PaymentRefundVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Y.PaymentRefundVM_PaymentRefundVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; L.PaymentView.prototype = { createState$0: function() { return new L._PaymentViewState(C._StateLifecycle_0); } }; L._PaymentViewState.prototype = { build$1: function(_, context) { var t3, t4, client, companyGateway, companyGatewayLink, fields, paymentType, _null = null, viewModel = this._widget.viewModel, payment = viewModel.payment, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = payment.clientId; client = J.$index$asx(t3.$index(t1, t2).clientState.map._map$_map, t4); if (client == null) client = T.ClientEntity_ClientEntity(t4, _null, _null); t4 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); companyGateway = t3.$index(t1, t2).companyGatewayState.$get$1(0, payment.companyGatewayId); t2 = payment.transactionReference; companyGatewayLink = A.GatewayEntity_getPaymentUrl(companyGateway.gatewayId, t2); t1 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_empty(t1, t1); t1 = payment.date; if (t1.length !== 0) fields.$indexSet(0, "date", Y.formatDate(t1, context, true, true, false)); t1 = payment.typeId; if ((t1 == null ? "" : t1).length !== 0) { paymentType = J.$index$asx(state.staticState.paymentTypeMap._map$_map, t1); if (paymentType != null) fields.$indexSet(0, "type_id", paymentType.name); } if (t2.length !== 0) fields.$indexSet(0, "transaction_reference", t2); t1 = payment.refunded; if (t1 !== 0) fields.$indexSet(0, "refunded", Y.formatNumber(t1, context, client.id, _null, C.FormatNumberType_0, true, _null, false)); return new G.ViewScaffold(this._widget.isFilter, payment, new T.Builder(new L._PaymentViewState_build_closure(this, viewModel, payment, state, t4, client, companyGateway, companyGatewayLink, fields), _null), _null, _null, _null); } }; L._PaymentViewState_build_closure.prototype = { call$1: function(context) { var t6, t7, t8, t9, t10, t11, t12, t13, _i, paymentable, t14, t15, t16, _this = this, _null = null, t1 = _this.payment, t2 = _this.state, t3 = t1.statusId, t4 = new E.PaymentStatusColors(t2.prefState.get$colorThemeModel()).get$colors().$index(0, t3), t5 = _this.localization; t3 = t5.lookup$1("payment_status_" + t3); t6 = t5.get$amount(); t7 = t1.amount; t8 = _this.client; t9 = t8.id; t10 = Y.formatNumber(t7, context, t9, _null, C.FormatNumberType_0, true, _null, false); t11 = t1.applied; t12 = _this.$this; t13 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([D.EntityHeader$(t1, t6, t5.get$applied(), Y.formatNumber(t11, context, t9, _null, C.FormatNumberType_0, true, _null, false), t4, t3, t10), new G.ListDivider(_null), O.EntityListTile$(t8, t12._widget.isFilter, _null)], t13); for (t3 = t1.get$invoicePaymentables(), t4 = t3.length, t6 = t2.userCompanyStates, t2 = t2.uiState, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { paymentable = t3[_i]; t9 = t12._widget.isFilter; t10 = t2.selectedCompanyIndex; t10 = J.$index$asx(t6._list, t10).invoiceState.map; t14 = paymentable.invoiceId; t14 = J.$index$asx(t10._map$_map, t14); t10 = J.$add$ansx(Y.formatNumber(paymentable.amount, context, _null, _null, C.FormatNumberType_0, true, _null, false), " \u2022 "); t15 = paymentable.createdAt; t15 = (t15 == null ? 0 : t15) * 1000; t16 = new P.DateTime(t15, false); t16.DateTime$_withValue$2$isUtc(t15, false); t8.push(new O.EntityListTile(t10 + Y.formatDate(t16.toIso8601String$0(), context, true, true, false), t14, t9, _null)); } for (t3 = t1.get$creditPaymentables(), t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { paymentable = t3[_i]; t9 = t12._widget.isFilter; t10 = t2.selectedCompanyIndex; t10 = J.$index$asx(t6._list, t10).creditState.map; t14 = paymentable.creditId; t14 = J.$index$asx(t10._map$_map, t14); t10 = J.$add$ansx(Y.formatNumber(paymentable.amount, context, _null, _null, C.FormatNumberType_0, true, _null, false), " \u2022 "); t15 = paymentable.createdAt; t15 = (t15 == null ? 0 : t15) * 1000; t16 = new P.DateTime(t15, false); t16.DateTime$_withValue$2$isUtc(t15, false); t8.push(new O.EntityListTile(t10 + Y.formatDate(t16.toIso8601String$0(), context, true, true, false), t14, t9, _null)); } if (t1.companyGatewayId.length !== 0) { t2 = L.Text$(t5.get$gateway() + " \u203a " + _this.companyGateway.label, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.companyGatewayLink; t4 = t3 != null; t3 = t4 ? new L._PaymentViewState_build__closure(t3) : _null; t5 = B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58497_MaterialIcons_null_false, _null, _null), 24, new L._PaymentViewState_build__closure0(), C.EdgeInsets_8_8_8_8, _null, _null); t4 = t4 ? new T.IgnorePointer(true, _null, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58460_MaterialIcons_null_true, _null, _null), 24, new L._PaymentViewState_build__closure1(), C.EdgeInsets_8_8_8_8, _null, _null), _null) : _null; C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([Q.ListTile$(false, _null, _null, true, false, _null, new T.IgnorePointer(true, _null, t5, _null), _null, t3, false, _null, _null, _null, _null, t2, t4), new G.ListDivider(_null)], t13)); } t2 = t1.privateNotes; t8.push(t2.length !== 0 ? T.Column$(H.setRuntimeTypeInfo([new S.IconMessage(t2, _null, _null, _null), M.Container$(_null, _null, C.Clip_0, K.Theme_of(context).cardColor, _null, _null, _null, 12, _null, _null, _null, _null, _null, _null)], t13), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); t8.push(new T.FieldGrid(_this.fields, _null)); return N.RefreshIndicator$(T.Column$(H.setRuntimeTypeInfo([T.Expanded$(new X.ScrollableListView(t8, _null, _null, false, _null), 1), new Z.BottomButtons(t1, C.EntityAction_apply, C.EntityAction_refund, t11 < t7, t1.refunded < t7, _null)], t13), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), new L._PaymentViewState_build__closure2(_this.viewModel, context)); }, $signature: 712 }; L._PaymentViewState_build__closure2.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; L._PaymentViewState_build__closure.prototype = { call$0: function() { return T.launch(this.companyGatewayLink, null, false); }, $signature: 30 }; L._PaymentViewState_build__closure0.prototype = { call$0: function() { return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L._PaymentViewState_build__closure1.prototype = { call$0: function() { return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.PaymentViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.PaymentViewScreen_build_closure(this), new F.PaymentViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentViewVM); } }; F.PaymentViewScreen_build_closure0.prototype = { call$1: function(store) { return F.PaymentViewVM_PaymentViewVM$fromStore(store); }, $signature: 2330 }; F.PaymentViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new L.PaymentView(vm, this.$this.isFilter, null); }, $signature: 2331 }; F.PaymentViewVM.prototype = { get$payment: function() { return this.payment; }, get$company: function() { return this.company; } }; F.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.LoadPayment(completer, this.payment.id)); return completer.future; }, $signature: 17 }; F.PaymentViewVM_PaymentViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.PaymentTermEdit.prototype = { createState$0: function() { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController); return new U._PaymentTermEditState(new O.Debouncer(500, false), t1, new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), C._StateLifecycle_0); } }; U._PaymentTermEditState.prototype = { didChangeDependencies$0: function() { var paymentTerm, _this = this, t1 = _this._numDaysController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._payment_term_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new U._PaymentTermEditState_didChangeDependencies_closure(_this)); paymentTerm = _this._widget.viewModel.paymentTerm; t2 = _this._framework$_element; t2.toString; t1.set$text(0, Y.formatNumber(paymentTerm.numDays, t2, null, null, C.FormatNumberType_5, true, null, false)); C.JSArray_methods.forEach$1(_this._payment_term_edit$_controllers, new U._PaymentTermEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._payment_term_edit$_controllers, new U._PaymentTermEditState_dispose_closure(this)); this.super$State$dispose(0); }, _payment_term_edit$_onChanged$0: function() { var _this = this, paymentTerm = _this._widget.viewModel.paymentTerm.rebuild$1(new U._PaymentTermEditState__onChanged_closure(_this)); if (!paymentTerm.$eq(0, _this._widget.viewModel.paymentTerm)) _this._payment_term_edit$_debouncer.run$1(new U._PaymentTermEditState__onChanged_closure0(_this, paymentTerm)); }, build$1: function(_, context) { var t3, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = viewModel.paymentTerm; if (t2.get$isNew()) t3 = t1.get$newPaymentTerm(); else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_payment_term"); if (t3 == null) t3 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new U._PaymentTermEditState_build_closure(this, t1), _null), $.$get$_PaymentTermEditState__formKey()), _null, t2, _null, false, _null, new U._PaymentTermEditState_build_closure0(viewModel), new U._PaymentTermEditState_build_closure1(viewModel), _null, t3); } }; U._PaymentTermEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_payment_term_edit$_onChanged()); }, $signature: 27 }; U._PaymentTermEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_payment_term_edit$_onChanged()), false); return null; }, $signature: 27 }; U._PaymentTermEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_payment_term_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; U._PaymentTermEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = Y.parseInt(this.$this._numDaysController._change_notifier$_value.text, false); b.get$_payment_term_model$_$this()._numDays = t1; return b; }, $signature: 624 }; U._PaymentTermEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.paymentTerm); }, $signature: 1 }; U._PaymentTermEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; U._PaymentTermEditState_build_closure1.prototype = { call$1: function(context) { if (!$.$get$_PaymentTermEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; U._PaymentTermEditState_build_closure.prototype = { call$1: function(context) { var t3, _null = null, t1 = this.localization, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "number_of_days"); if (t2 == null) t2 = ""; t3 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, false, this.$this._numDaysController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_2_false_false, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new U._PaymentTermEditState_build__closure(t1))], t3), _null, 4, false, _null, false, _null)], t3), _null, _null, false, _null); }, $signature: 140 }; U._PaymentTermEditState_build__closure.prototype = { call$1: function(value) { return value == null || value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; Y.PaymentTermEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.PaymentTermEditScreen_build_closure(), new Y.PaymentTermEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermEditVM); } }; Y.PaymentTermEditScreen_build_closure0.prototype = { call$1: function(store) { return Y.PaymentTermEditVM_PaymentTermEditVM$fromStore(store); }, $signature: 2332 }; Y.PaymentTermEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new U.PaymentTermEdit(viewModel, new D.ValueKey(viewModel.paymentTerm.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2333 }; Y.PaymentTermEditVM.prototype = { get$paymentTerm: function() { return this.paymentTerm; }, get$company: function() { return this.company; } }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure.prototype = { call$1: function(paymentTerm) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.UpdatePaymentTerm(paymentTerm)); }, $signature: 272 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, X.PaymentTermEntity_PaymentTermEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure.prototype = { call$0: function() { var t1 = this.store, paymentTerm = t1.get$_store$_state().uiState.paymentTermUIState.editing, t2 = this.context, t3 = L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t4 = new P._Future($.Zone__current, type$._Future_legacy_PaymentTermEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new D.SavePaymentTermRequest(new P._AsyncCompleter(t4, type$._AsyncCompleter_legacy_PaymentTermEntity), paymentTerm)); return t4.then$1$1(0, new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure(paymentTerm, t3, this.state, t1, t2), type$.Null).catchError$1(new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0()); }, $signature: 31 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure.prototype = { call$1: function(savedPaymentTerm) { var _this = this, _s23_ = "/settings/payment_terms", t1 = _this.paymentTerm, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_payment_term"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_payment_term"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); t2 = _this.context; if (t1.get$isNew()) { t1 = type$.legacy_Object; K.Navigator_of(t2, false).pushReplacementNamed$2$1(_s23_, t1, t1); } else K.Navigator_of(t2, false).pop$1(0, savedPaymentTerm); } else M.viewEntity(false, savedPaymentTerm, null, true); }, $signature: 272 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new Y.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Y.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; K.PaymentTermListItem.prototype = { build$1: function(_, context) { var filterMatch, t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, paymentTermUIState = uiState.paymentTermUIState, t1 = paymentTermUIState.listUIState.selectedIds, t2 = _this.filter; if (t2 != null && t2.length !== 0) { _this.paymentTerm.toString; filterMatch = A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), t2); } else filterMatch = _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.paymentTerm; t4 = t2.id; t5 = uiState.get$isEditing() ? paymentTermUIState.editing.id : paymentTermUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new K.PaymentTermListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new K.PaymentTermListItem_build_closure0(_this, context), new K.PaymentTermListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t8, new L.EntityStateLabel(t2, _null)], t7), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t6, _null), t4 === t5, true, true, _null); }, get$user: function() { return this.user; }, get$paymentTerm: function() { return this.paymentTerm; } }; K.PaymentTermListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.paymentTerm, false, false); return t1; }, $signature: 0 }; K.PaymentTermListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.paymentTerm, false, true); return t1; }, $signature: 0 }; K.PaymentTermListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; U.PaymentTermListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.PaymentTermListBuilder_build_closure(), U.payment_term_list_vm_PaymentTermListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermListVM); } }; U.PaymentTermListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return S.EntityList$(viewModel.paymentTermList, C.EntityType_paymentTerm, new U.PaymentTermListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2334 }; U.PaymentTermListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, paymentTermId = J.$index$asx(t1.paymentTermList, index), paymentTerm = J.$index$asx(t1.paymentTermMap._map$_map, paymentTermId), t2 = state.getUIState$1(C.EntityType_paymentTerm).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = paymentTerm.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new K.PaymentTermListItem(t4, paymentTerm, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2335 }; U.PaymentTermListVM.prototype = {}; U.PaymentTermListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; U.PaymentTermListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.PaymentTermListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.SortPaymentTerms(field)); }, $signature: 5 }; U.PaymentTermListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.ClearPaymentTermMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; F.PaymentTermScreen.prototype = { build$1: function(_, context) { var t4, t5, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.paymentTermUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.paymentTermList; t2 = t2.filter; t5 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_paymentTerm, false, C.List_empty14, new F.PaymentTermScreen_build_closure(store), new F.PaymentTermScreen_build_closure0(store), new F.PaymentTermScreen_build_closure1(store), new F.PaymentTermScreen_build_closure2(store), new F.PaymentTermScreen_build_closure3(store), new F.PaymentTermScreen_build_closure4(store), new F.PaymentTermScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name"], type$.JSArray_legacy_String), C.List_empty15, _null); t3 = state.prefState.appLayout === C.AppLayout_mobile && userCompany.can$2(C.UserPermission_create, C.EntityType_paymentTerm) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "payment_term_fab", false, new F.PaymentTermScreen_build_closure6(context), t3.get$newPaymentTerm()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_paymentTerm, t2, new F.PaymentTermScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new U.PaymentTermListBuilder(_null), t5, C.EntityType_paymentTerm, t3, 3, "company_details", new F.PaymentTermScreen_build_closure8(store), new F.PaymentTermScreen_build_closure9(store)); } }; F.PaymentTermScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.StartPaymentTermMultiselect()); }, $signature: 9 }; F.PaymentTermScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTerms(value)); }, $signature: 7 }; F.PaymentTermScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.paymentTermUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new D.ClearPaymentTermMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new D.StartPaymentTermMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.PaymentTermScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.SortPaymentTerms(value)); }, $signature: 7 }; F.PaymentTermScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTermsByState(state)); }, $signature: 53 }; F.PaymentTermScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.paymentTermUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new D.ClearPaymentTermMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new D.StartPaymentTermMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.PaymentTermScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTermsByCustom1(value)); }, $signature: 5 }; F.PaymentTermScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTermsByCustom2(value)); }, $signature: 5 }; F.PaymentTermScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTermsByCustom3(value)); }, $signature: 5 }; F.PaymentTermScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new D.FilterPaymentTermsByCustom4(value)); }, $signature: 5 }; F.PaymentTermScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_paymentTerm); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z.PaymentTermScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Z.PaymentTermScreenBuilder_build_closure(), Z.payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermScreenVM); } }; Z.PaymentTermScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new F.PaymentTermScreen(vm, null); }, $signature: 2336 }; Z.PaymentTermScreenVM.prototype = {}; K.PaymentTermView.prototype = { createState$0: function() { return new K._PaymentTermViewState(C._StateLifecycle_0); } }; K._PaymentTermViewState.prototype = { build$1: function(_, context) { var _null = null, viewModel = this._widget.viewModel, paymentTerm = viewModel.paymentTerm, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new G.ViewScaffold(false, paymentTerm, new X.ScrollableListView(H.setRuntimeTypeInfo([D.EntityHeader$(paymentTerm, t1.get$name(t1), _null, _null, _null, _null, paymentTerm.name)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new K._PaymentTermViewState_build_closure(viewModel), _null, _null); } }; K._PaymentTermViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; U.PaymentTermViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.PaymentTermViewScreen_build_closure(), new U.PaymentTermViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_PaymentTermViewVM); } }; U.PaymentTermViewScreen_build_closure0.prototype = { call$1: function(store) { return U.PaymentTermViewVM_PaymentTermViewVM$fromStore(store); }, $signature: 2337 }; U.PaymentTermViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new K.PaymentTermView(vm, null); }, $signature: 2338 }; U.PaymentTermViewVM.prototype = { get$paymentTerm: function() { return this.paymentTerm; }, get$company: function() { return this.company; } }; U.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/payment_terms")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; F.ProductEdit.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new F._ProductEditState(t1, new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; F._ProductEditState.prototype = { didChangeDependencies$0: function() { var product, _this = this, _null = null, t1 = _this._productKeyController, t2 = _this._notesController, t3 = _this._priceController, t4 = _this._quantityController, t5 = _this._costController, t6 = _this._product_edit$_custom1Controller, t7 = _this._product_edit$_custom2Controller, t8 = _this._product_edit$_custom3Controller, t9 = _this._product_edit$_custom4Controller, t10 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9], type$.JSArray_legacy_TextEditingController); _this._product_edit$_controllers = t10; C.JSArray_methods.forEach$1(t10, new F._ProductEditState_didChangeDependencies_closure(_this)); product = _this._widget.viewModel.product; t1.set$text(0, product.productKey); t2.set$text(0, product.notes); t2 = _this._framework$_element; t2.toString; t3.set$text(0, Y.formatNumber(product.price, t2, _null, _null, C.FormatNumberType_4, true, _null, false)); t2 = _this._framework$_element; t2.toString; t4.set$text(0, Y.formatNumber(product.quantity, t2, _null, _null, C.FormatNumberType_5, true, _null, false)); t2 = _this._framework$_element; t2.toString; t5.set$text(0, Y.formatNumber(product.cost, t2, _null, _null, C.FormatNumberType_4, true, _null, false)); t6.set$text(0, product.customValue1); t7.set$text(0, product.customValue2); t8.set$text(0, product.customValue3); t9.set$text(0, product.customValue4); C.JSArray_methods.forEach$1(_this._product_edit$_controllers, new F._ProductEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; C.JSArray_methods.forEach$1(_this._product_edit$_controllers, new F._ProductEditState_dispose_closure(_this)); _this._product_edit$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, _product_edit$_onChanged$0: function() { var _this = this, product = _this._widget.viewModel.product.rebuild$1(new F._ProductEditState__onChanged_closure(_this)); if (!J.$eq$(product, _this._widget.viewModel.product)) _this._product_edit$_debouncer.run$1(new F._ProductEditState__onChanged_closure0(_this, product)); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, product = viewModel.product, company = viewModel.company; if (product.get$isNew()) t2 = t1.get$newProduct(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_product"); if (t2 == null) t2 = ""; } t3 = $.$get$_ProductEditState__formKey(); t4 = "__product_" + product.id + "_" + product.updatedAt + "__"; t5 = t1.get$product(t1); t6 = _this._product_edit$_autoValidate; t7 = viewModel.onSavePressed; t8 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, t6, _this._productKeyController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t5, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, new F._ProductEditState_build_closure(t1)), S.DecoratedFormField$(false, _null, false, false, _this._notesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$description(t1), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._priceController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$price(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null)], t8); if (company.enableProductQuantity) t5.push(S.DecoratedFormField$(false, _null, false, false, _this._quantityController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$defaultQuantity(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null)); if (company.enableProductCost) t5.push(S.DecoratedFormField$(false, _null, false, false, _this._costController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t1.get$cost(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null)); if (company.get$enableFirstItemTaxRate() || product.taxName1.length !== 0) t5.push(new D.TaxRateDropdown(t1.get$tax(), new F._ProductEditState_build_closure0(viewModel, product), product.taxName1, product.taxRate1, _null)); if (company.get$enableSecondItemTaxRate() || product.taxName2.length !== 0) t5.push(new D.TaxRateDropdown(t1.get$tax(), new F._ProductEditState_build_closure1(viewModel, product), product.taxName2, product.taxRate2, _null)); if (company.get$enableThirdItemTaxRate() || product.taxName3.length !== 0) t5.push(new D.TaxRateDropdown(t1.get$tax(), new F._ProductEditState_build_closure2(viewModel, product), product.taxName3, product.taxRate3, _null)); t5.push(new B.CustomField(_this._product_edit$_custom1Controller, _null, t7, "product1", product.customValue1, false, _null)); t5.push(new B.CustomField(_this._product_edit$_custom2Controller, _null, t7, "product2", product.customValue2, false, _null)); t5.push(new B.CustomField(_this._product_edit$_custom3Controller, _null, t7, "product3", product.customValue3, false, _null)); t5.push(new B.CustomField(_this._product_edit$_custom4Controller, _null, t7, "product4", product.customValue4, false, _null)); return K.EditScaffold$(_null, _null, new X.AppForm(t3, _null, new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t5, _null, 4, false, _null, true, _null)], t8), _null, _null, false, new D.ValueKey(t4, type$.ValueKey_legacy_String)), _this._product_edit$_focusNode, _null), _null, product, _null, false, _null, new F._ProductEditState_build_closure3(viewModel), new F._ProductEditState_build_closure4(_this, viewModel), _null, t2); } }; F._ProductEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_product_edit$_onChanged()); }, $signature: 10 }; F._ProductEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_product_edit$_onChanged()); }, $signature: 10 }; F._ProductEditState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_product_edit$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; F._ProductEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._productKeyController._change_notifier$_value.text); b.get$_product_model$_$this()._productKey = t2; t2 = J.trim$0$s(t1._notesController._change_notifier$_value.text); b.get$_product_model$_$this()._notes = t2; t2 = Y.parseDouble(t1._priceController._change_notifier$_value.text, false); b.get$_product_model$_$this()._product_model$_price = t2; t2 = Y.parseDouble(t1._quantityController._change_notifier$_value.text, false); b.get$_product_model$_$this()._quantity = t2; t2 = Y.parseDouble(t1._costController._change_notifier$_value.text, false); b.get$_product_model$_$this()._cost = t2; t2 = J.trim$0$s(t1._product_edit$_custom1Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue1 = t2; t2 = J.trim$0$s(t1._product_edit$_custom2Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue2 = t2; t2 = J.trim$0$s(t1._product_edit$_custom3Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue3 = t2; t1 = J.trim$0$s(t1._product_edit$_custom4Controller._change_notifier$_value.text); b.get$_product_model$_$this()._product_model$_customValue4 = t1; return b; }, $signature: 170 }; F._ProductEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.product); }, $signature: 1 }; F._ProductEditState_build_closure3.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; F._ProductEditState_build_closure4.prototype = { call$1: function(context) { var isValid = $.$get$_ProductEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new F._ProductEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; F._ProductEditState_build__closure.prototype = { call$0: function() { this.$this._product_edit$_autoValidate = !this.isValid; }, $signature: 1 }; F._ProductEditState_build_closure.prototype = { call$1: function(val) { var t1; if (val.length === 0 || C.JSString_methods.trim$0(val).length === 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "please_enter_a_product_key"); if (t1 == null) t1 = ""; } else t1 = null; return t1; }, $signature: 15 }; F._ProductEditState_build_closure0.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new F._ProductEditState_build__closure2(taxRate))); }, $signature: 80 }; F._ProductEditState_build__closure2.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate1 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName1 = t1; return b; }, $signature: 170 }; F._ProductEditState_build_closure1.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new F._ProductEditState_build__closure1(taxRate))); }, $signature: 80 }; F._ProductEditState_build__closure1.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate2 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName2 = t1; return b; }, $signature: 170 }; F._ProductEditState_build_closure2.prototype = { call$1: function(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new F._ProductEditState_build__closure0(taxRate))); }, $signature: 80 }; F._ProductEditState_build__closure0.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.rate; b.get$_product_model$_$this()._product_model$_taxRate3 = t2; t1 = t1.name; b.get$_product_model$_$this()._product_model$_taxName3 = t1; return b; }, $signature: 170 }; S.ProductEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.ProductEditScreen_build_closure(), new S.ProductEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductEditVM); } }; S.ProductEditScreen_build_closure0.prototype = { call$1: function(store) { return S.ProductEditVM_ProductEditVM$fromStore(store); }, $signature: 2339 }; S.ProductEditScreen_build_closure.prototype = { call$2: function(context, vm) { return new F.ProductEdit(vm, new D.ValueKey(vm.product.id, type$.ValueKey_legacy_String)); }, $signature: 2340 }; S.ProductEditVM.prototype = { get$company: function() { return this.company; }, get$product: function(receiver) { return this.product; } }; S.ProductEditVM_ProductEditVM$fromStore_closure.prototype = { call$1: function(product) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.UpdateProduct(product)); }, $signature: 226 }; S.ProductEditVM_ProductEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, A.ProductEntity_ProductEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; S.ProductEditVM_ProductEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new S.ProductEditVM_ProductEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; S.ProductEditVM_ProductEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, product = t1.get$_store$_state().uiState.productUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_ProductEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.SaveProductRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ProductEntity), product)); return t2.then$1$1(0, new S.ProductEditVM_ProductEditVM$fromStore___closure(product, t3, this.state, t1, $navigator), type$.Null).catchError$1(new S.ProductEditVM_ProductEditVM$fromStore___closure0()); }, $signature: 31 }; S.ProductEditVM_ProductEditVM$fromStore___closure.prototype = { call$1: function(savedProduct) { var _this = this, _s13_ = "/product/view", t1 = _this.product, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_product"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_product"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedProduct); } else M.viewEntity(false, savedProduct, null, false); }, $signature: 226 }; S.ProductEditVM_ProductEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new S.ProductEditVM_ProductEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; S.ProductEditVM_ProductEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; T.ProductListItem.prototype = { build$1: function(_, context) { var t2, t3, _this = this, _null = null, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.product.matchesFilterValue$1(t1) : _null, subtitle = filterMatch == null ? _this.product.notes : filterMatch, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = store.get$_store$_state().uiState, productUIState = uiState.productUIState, listUIState = productUIState.listUIState, isInMultiselect = listUIState.selectedIds != null, showCheckbox = _this.onCheckboxChanged != null || isInMultiselect, textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); if (D.getLayout(context) === C.AppLayout_desktop) { t1 = _this.product.id; t1 = t1 === (uiState.get$isEditing() ? productUIState.editing.id : productUIState.selectedId); } else t1 = false; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t2._list, t3).userCompany, _this.product, new A.LayoutBuilder(new T.ProductListItem_build_closure(_this, showCheckbox, listUIState, state, textStyle, filterMatch, subtitle), _null), t1, true, _this.isDismissible, _null); }, get$product: function(receiver) { return this.product; } }; T.ProductListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new T.ProductListItem_build__closure(t1), false, t1.isChecked), _null); else { t2 = t1.product; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new T.ProductListItem_build__closure0(t1)); t2 = t4; } t3 = t1.product; t4 = t3.productKey; t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = H.setRuntimeTypeInfo([L.Text$(t3.notes, _null, 6, _null, _null, _null, t5, _null, _null, _null)], t6); t9 = _this.filterMatch; if (t9 != null) t8.push(L.Text$(t9, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2, _null, _null, _null)); t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, T.Expanded$(T.Column$(t8, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.price, context, _null, _null, C.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new T.ProductListItem_build__closure1(t1, context), new T.ProductListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new T.ProductListItem_build__closure3(t1), false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.product; t5 = t4.productKey; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(t4.price, context, _null, _null, C.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.subtitle; t5 = t5.length !== 0 ? L.Text$(t5, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new T.ProductListItem_build__closure4(t1, context), new T.ProductListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t5, new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); t1 = t3; } return t1; }, $signature: 97 }; T.ProductListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.product, false, false); }, $signature: 0 }; T.ProductListItem_build__closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.product, false, true); return t1; }, $signature: 0 }; T.ProductListItem_build__closure.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; T.ProductListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.product], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; T.ProductListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.product, false, false); }, $signature: 0 }; T.ProductListItem_build__closure4.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.product, false, true); return t1; }, $signature: 0 }; T.ProductListItem_build__closure3.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; Q.ProductListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Q.ProductListBuilder_build_closure(), Q.product_list_vm_ProductListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductListVM); } }; Q.ProductListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.productList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_product, new Q.ProductListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new F.ProductPresenter(), t2, t4); }, $signature: 2341 }; Q.ProductListBuilder_build__closure.prototype = { call$2: function(context, index) { var t3, t1 = this.viewModel, productId = J.$index$asx(t1.productList, index), product = J.$index$asx(t1.productMap._map$_map, productId), t2 = t1.state.getUIState$1(C.EntityType_product).get$listUIState().selectedIds; if (t2 != null) { t3 = product.get$id(product); t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return T.ProductListItem$(t1.filter, t2, true, null, null, product); }, "call*": "call$2", $requiredArgCount: 2, $signature: 723 }; Q.ProductListVM.prototype = {}; Q.ProductListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; Q.ProductListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Q.ProductListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SortProducts(field)); }, $signature: 5 }; Q.ProductListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.ClearProductMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; F.ProductPresenter.prototype = { getField$2$context$field: function(context, field) { var _this = this, _null = null, product = type$.legacy_ProductEntity._as(_this.entity); switch (field) { case "product_key": return L.Text$(product.productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "description": return L.Text$(product.notes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "cost": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(product.cost, context, _null, _null, C.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "price": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(product.price, context, _null, _null, C.FormatNumberType_0, false, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "quantity": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(product.quantity, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, product.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, product.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, product.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, product.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(product.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return L.Text$(product.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return L.Text$(product.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return L.Text$(product.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return L.Text$(Y.formatNumber(product.taxRate1, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return L.Text$(Y.formatNumber(product.taxRate2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return L.Text$(Y.formatNumber(product.taxRate3, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; K.ProductScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.productUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.productList; t2 = t2.filter; t5 = P.List_List$of(F.ProductPresenter_getDefaultTableFields(userCompany), true, type$.legacy_String); t6 = type$.JSArray_legacy_String; C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t6)); t5.push("custom1"); t5.push("custom2"); t5.push("custom3"); t5.push("custom4"); t5.push("documents"); t5.push("tax_rate1"); t5.push("tax_rate2"); t5.push("tax_rate3"); t5.push("tax_name1"); t5.push("tax_name2"); t5.push("tax_name3"); t7 = F.ProductPresenter_getDefaultTableFields(userCompany); t5 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("product1", true), company.getCustomFieldValues$2$excludeBlank("product2", true), company.getCustomFieldValues$2$excludeBlank("product3", true), company.getCustomFieldValues$2$excludeBlank("product4", true), t7, C.EntityType_product, false, C.List_empty14, new K.ProductScreen_build_closure(store), new K.ProductScreen_build_closure0(store), new K.ProductScreen_build_closure1(store), new K.ProductScreen_build_closure2(store), new K.ProductScreen_build_closure3(store), new K.ProductScreen_build_closure4(store), new K.ProductScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["product_key", "cost", "updated_at"], t6), C.List_empty15, t5); t6 = state.prefState; t3 = (t6.appLayout === C.AppLayout_mobile || t6.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_product) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "product_fab", false, new K.ProductScreen_build_closure6(context), t3.get$newProduct()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_product, t2, new K.ProductScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new Q.ProductListBuilder(_null), t5, C.EntityType_product, t3, 0, _null, new K.ProductScreen_build_closure8(store), new K.ProductScreen_build_closure9(store)); } }; K.ProductScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.StartProductMultiselect()); }, $signature: 9 }; K.ProductScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProducts(value)); }, $signature: 7 }; K.ProductScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.productUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.ClearProductMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.StartProductMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.ProductScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SortProducts(value)); }, $signature: 5 }; K.ProductScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProductsByCustom1(value)); }, $signature: 5 }; K.ProductScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProductsByCustom2(value)); }, $signature: 5 }; K.ProductScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProductsByCustom3(value)); }, $signature: 5 }; K.ProductScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProductsByCustom4(value)); }, $signature: 5 }; K.ProductScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.FilterProductsByState(state)); }, $signature: 53 }; K.ProductScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.productUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.ClearProductMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Z.StartProductMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.ProductScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_product); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; E.ProductScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.ProductScreenBuilder_build_closure(), E.product_screen_vm_ProductScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductScreenVM); } }; E.ProductScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new K.ProductScreen(vm, null); }, $signature: 2342 }; E.ProductScreenVM.prototype = {}; Z.ProductView.prototype = { createState$0: function() { return new Z._ProductViewState(null, C._StateLifecycle_0); } }; Z._ProductViewState.prototype = { initState$0: function() { var state, t1, _this = this; _this.super$State$initState(); state = _this._widget.viewModel.state; t1 = U.TabController$(state.uiState.productUIState.tabIndex, 2, _this); _this._product_view$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_product_view$_onTabChanged()), false); }, _product_view$_onTabChanged$0: function() { var t1, store; this._widget.toString; t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._product_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new Z.UpdateProductTab(t1)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._product_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._product_view$_controller.removeListener$1(0, _this.get$_product_view$_onTabChanged()); _this._product_view$_controller.dispose$0(0); _this.super$__ProductViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, product = viewModel.product, t2 = this._product_view$_controller, t3 = E.Tab$(_null, t1.get$overview()), t4 = product.documents._list, t5 = J.getInterceptor$asx(t4); return new G.ViewScaffold(false, product, new T.Builder(new Z._ProductViewState_build_closure(this, viewModel, product), _null), _null, E.TabBar$(t2, _null, false, _null, _null, H.setRuntimeTypeInfo([t3, E.Tab$(_null, t5.get$isEmpty(t4) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t5.get$length(t4)) + ")")], type$.JSArray_legacy_Widget)), _null); } }; Z._ProductViewState_build_closure.prototype = { call$1: function(context) { var t1 = this.$this._product_view$_controller, t2 = this.viewModel, t3 = t2.product.id, t4 = type$.ValueKey_legacy_String, t5 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new B.ProductOverview(t2, new D.ValueKey(t3, t4)), new Z._ProductViewState_build__closure(t2, context)), N.RefreshIndicator$(new F.ProductViewDocuments(t2, new D.ValueKey(t3, t4)), new Z._ProductViewState_build__closure0(t2, context))], t5), t1, null), 1), new Z.BottomButtons(this.product, C.EntityAction_newInvoice, C.EntityAction_clone, true, true, null)], t5), C.CrossAxisAlignment_2, null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; Z._ProductViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; Z._ProductViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; Z.__ProductViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; F.ProductViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.viewModel.product.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new F.ProductViewDocuments_build_closure(this, context), new F.ProductViewDocuments_build_closure0(this, context), null, null); } }; F.ProductViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; F.ProductViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; B.ProductOverview.prototype = { createState$0: function() { return new B._ProductOverviewState(C._StateLifecycle_0); } }; B._ProductOverviewState.prototype = { build$1: function(_, context) { var fields, t3, _null = null, _s8_ = "product1", _s8_0 = "product2", _s8_1 = "product3", _s8_2 = "product4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, product = viewModel.product, company = viewModel.company, t2 = product.taxName1, tax = t2.length !== 0 ? J.$add$ansx(Y.formatNumber(product.taxRate1, context, _null, _null, C.FormatNumberType_1, true, _null, false), " ") + t2 : ""; t2 = product.taxName2; if (t2.length !== 0) tax += C.JSString_methods.$add(" ", Y.formatNumber(product.taxRate2, context, _null, _null, C.FormatNumberType_1, true, _null, false)) + " " + t2; t2 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal([t1.get$tax(), tax], t2, t2); t2 = product.customValue1; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), Y.formatCustomValue(context, _s8_, t2)); t2 = product.customValue2; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), Y.formatCustomValue(context, _s8_0, t2)); t2 = product.customValue3; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), Y.formatCustomValue(context, _s8_1, t2)); t2 = product.customValue4; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), Y.formatCustomValue(context, _s8_2, t2)); t2 = t1.get$price(); t3 = Y.formatNumber(product.price, context, _null, _null, C.FormatNumberType_0, false, _null, false); t1 = t1.get$cost(); return new X.ScrollableListView(H.setRuntimeTypeInfo([D.EntityHeader$(product, t2, t1, company.enableProductCost ? Y.formatNumber(product.cost, context, _null, _null, C.FormatNumberType_0, false, _null, false) : _null, _null, _null, t3), new G.ListDivider(_null), new T.FieldGrid(fields, _null), new T.Padding(new V.EdgeInsets(20, 20, 20, 20), L.Text$(product.notes, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null); } }; F.ProductViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.ProductViewScreen_build_closure(this), new F.ProductViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductViewVM); } }; F.ProductViewScreen_build_closure0.prototype = { call$1: function(store) { return F.ProductViewVM_ProductViewVM$fromStore(store); }, $signature: 2343 }; F.ProductViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new Z.ProductView(vm, false, vm.state.uiState.productUIState.tabIndex, null); }, $signature: 2344 }; F.ProductViewVM.prototype = { $eq: function(_, other) { if (other == null) return false; return this.product.$eq(0, J.get$product$x(other)) && J.$eq$(this.company, other.get$company()); }, get$hashCode: function(_) { var t1 = this.product; return t1.get$hashCode(t1) ^ J.get$hashCode$(this.company); }, get$product: function(receiver) { return this.product; }, get$company: function() { return this.company; } }; F.ProductViewVM_ProductViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.LoadProduct(completer, this.product.id)); return completer.future; }, $signature: 17 }; F.ProductViewVM_ProductViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; F.ProductViewVM_ProductViewVM$fromStore_closure0.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.SaveProductDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.product)); t1.then$1$1(0, new F.ProductViewVM_ProductViewVM$fromStore__closure0(context), type$.Null).catchError$1(new F.ProductViewVM_ProductViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; F.ProductViewVM_ProductViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; F.ProductViewVM_ProductViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new F.ProductViewVM_ProductViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; F.ProductViewVM_ProductViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; F.ProductViewVM_ProductViewVM$fromStore_closure1.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new F.ProductViewVM_ProductViewVM$fromStore__closure(t2, this.product), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; F.ProductViewVM_ProductViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Z.LoadProduct(null, this.product.id)); }, $signature: 95 }; K.ProjectEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new K._ProjectEditState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; K._ProjectEditState.prototype = { didChangeDependencies$0: function() { var project, _this = this, _null = null, t1 = _this._project_edit$_numberController, t2 = _this._project_edit$_nameController, t3 = _this._dueDateController, t4 = _this._hoursController, t5 = _this._project_edit$_taskRateController, t6 = _this._project_edit$_privateNotesController, t7 = _this._project_edit$_publicNotesController, t8 = _this._project_edit$_custom1Controller, t9 = _this._project_edit$_custom2Controller, t10 = _this._project_edit$_custom3Controller, t11 = _this._project_edit$_custom4Controller, t12 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11], type$.JSArray_legacy_TextEditingController); _this._project_edit$_controllers = t12; C.JSArray_methods.forEach$1(t12, new K._ProjectEditState_didChangeDependencies_closure(_this)); project = _this._widget.viewModel.project; t1.set$text(0, project.number); t2.set$text(0, project.name); t3.set$text(0, project.dueDate); t3 = project.budgetedHours; t2 = _this._framework$_element; t2.toString; t4.set$text(0, Y.formatNumber(t3, t2, _null, _null, C.FormatNumberType_5, true, _null, false)); t2 = project.taskRate; t3 = _this._framework$_element; t3.toString; t5.set$text(0, Y.formatNumber(t2, t3, _null, _null, C.FormatNumberType_4, true, _null, false)); t6.set$text(0, project.privateNotes); t7.set$text(0, project.publicNotes); t8.set$text(0, project.customValue1); t9.set$text(0, project.customValue2); t10.set$text(0, project.customValue3); t11.set$text(0, project.customValue4); C.JSArray_methods.forEach$1(_this._project_edit$_controllers, new K._ProjectEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._project_edit$_controllers, new K._ProjectEditState_dispose_closure(this)); this.super$State$dispose(0); }, _project_edit$_onChanged$0: function() { var _this = this, project = _this._widget.viewModel.project.rebuild$1(new K._ProjectEditState__onChanged_closure(_this)); if (!J.$eq$(project, _this._widget.viewModel.project)) _this._project_edit$_debouncer.run$1(new K._ProjectEditState__onChanged_closure0(_this, project)); }, build$1: function(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = viewModel.state, project = viewModel.project; if (project.get$isNew()) t2 = t1.get$newProject(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_project"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new K._ProjectEditState_build_closure(this, project, t1, viewModel, state), _null), $.$get$_ProjectEditState__formKey()), _null, project, _null, false, _null, new K._ProjectEditState_build_closure0(viewModel), new K._ProjectEditState_build_closure1(this, viewModel), _null, t2); } }; K._ProjectEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_project_edit$_onChanged()); }, $signature: 27 }; K._ProjectEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_project_edit$_onChanged()), false); return null; }, $signature: 27 }; K._ProjectEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_project_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; K._ProjectEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._project_edit$_numberController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_number = t2; t2 = J.trim$0$s(t1._project_edit$_nameController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_name = t2; t2 = Y.parseDouble(t1._hoursController._change_notifier$_value.text, false); b.get$_project_model$_$this()._budgetedHours = t2; t2 = Y.parseDouble(t1._project_edit$_taskRateController._change_notifier$_value.text, false); b.get$_project_model$_$this()._taskRate = t2; t2 = J.trim$0$s(t1._project_edit$_publicNotesController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_publicNotes = t2; t2 = J.trim$0$s(t1._project_edit$_privateNotesController._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_privateNotes = t2; t2 = J.trim$0$s(t1._project_edit$_custom1Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue1 = t2; t2 = J.trim$0$s(t1._project_edit$_custom2Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue2 = t2; t2 = J.trim$0$s(t1._project_edit$_custom3Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue3 = t2; t1 = J.trim$0$s(t1._project_edit$_custom4Controller._change_notifier$_value.text); b.get$_project_model$_$this()._project_model$_customValue4 = t1; return b; }, $signature: 168 }; K._ProjectEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.project); }, $signature: 1 }; K._ProjectEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; K._ProjectEditState_build_closure1.prototype = { call$1: function(context) { var isValid = $.$get$_ProjectEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new K._ProjectEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; K._ProjectEditState_build__closure.prototype = { call$0: function() { this.$this._project_edit$_autoValidate = !this.isValid; }, $signature: 1 }; K._ProjectEditState_build_closure.prototype = { call$1: function(context) { var t9, t10, t11, t12, t13, t14, t15, t16, t17, _this = this, _null = null, t1 = _this.project, t2 = "__project_" + t1.id + "_" + t1.updatedAt + "__", t3 = type$.ValueKey_legacy_String, t4 = _this.$this, t5 = _this.localization, t6 = t4._project_edit$_autoValidate, t7 = t5.localeCode, t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "project_name"); if (t8 == null) t8 = ""; t9 = _this.viewModel; t10 = t9.onSavePressed; t8 = S.DecoratedFormField$(false, _null, true, t6, t4._project_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t8, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, new K._ProjectEditState_build__closure0(t5)); if (t1.get$isNew()) { t6 = t1.clientId; t11 = "__client_" + t6 + "__"; t12 = t5.get$client(t5); t13 = $.$get$memoizedDropdownClientList(); t14 = _this.state; t15 = t14.uiState.selectedCompanyIndex; t16 = t14.userCompanyStates._list; t17 = J.getInterceptor$asx(t16); t14 = t13.call$4(t17.$index(t16, t15).clientState.map, t17.$index(t16, t15).clientState.list, t17.$index(t16, t15).userState.map, t14.staticState); t12 = F.EntityDropdown$(true, t4._project_edit$_autoValidate, false, t6, t14, _null, C.EntityType_client, new D.ValueKey(t11, t3), t12, new K._ProjectEditState_build__closure1(t9, context), new K._ProjectEditState_build__closure2(t9, t1), _null, _null, new K._ProjectEditState_build__closure3(t5)); t6 = t12; } else { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "project_number"); if (t6 == null) t6 = ""; t6 = S.DecoratedFormField$(false, _null, false, false, t4._project_edit$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t6, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, _null); } t11 = K.DatePicker$(false, _null, _null, t5.get$dueDate(), _null, new K._ProjectEditState_build__closure4(t9, t1), t1.dueDate, _null); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "budgeted_hours"); if (t7 == null) t7 = ""; t12 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t8, t6, new V.UserPicker(t1.assignedUserId, new K._ProjectEditState_build__closure5(t9, t1), _null), t11, S.DecoratedFormField$(false, _null, false, false, t4._hoursController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t7, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, t4._project_edit$_taskRateController, _null, true, _null, _null, _null, _null, false, false, _null, new N.TextInputType(2, false, true), t5.get$taskRate(), _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, _null), new B.CustomField(t4._project_edit$_custom1Controller, _null, t10, "project1", t1.customValue1, false, _null), new B.CustomField(t4._project_edit$_custom2Controller, _null, t10, "project2", t1.customValue2, false, _null), new B.CustomField(t4._project_edit$_custom3Controller, _null, t10, "project3", t1.customValue3, false, _null), new B.CustomField(t4._project_edit$_custom4Controller, _null, t10, "project4", t1.customValue4, false, _null), S.DecoratedFormField$(false, _null, false, false, t4._project_edit$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t5.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, t4._project_edit$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t5.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t12), _null, 4, false, _null, true, _null)], t12), _null, _null, false, new D.ValueKey(t2, t3)); }, $signature: 140 }; K._ProjectEditState_build__closure0.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; K._ProjectEditState_build__closure3.prototype = { call$1: function(val) { return J.trim$0$s(val).length === 0 ? this.localization.get$pleaseSelectAClient() : null; }, $signature: 15 }; K._ProjectEditState_build__closure2.prototype = { call$1: function(client) { this.viewModel.onChanged.call$1(this.project.rebuild$1(new K._ProjectEditState_build___closure1(client))); }, $signature: 44 }; K._ProjectEditState_build___closure1.prototype = { call$1: function(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_project_model$_$this()._project_model$_clientId = t1; return b; }, $signature: 168 }; K._ProjectEditState_build__closure1.prototype = { call$1: function(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 164 }; K._ProjectEditState_build__closure5.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.project.rebuild$1(new K._ProjectEditState_build___closure(userId))); }, $signature: 5 }; K._ProjectEditState_build___closure.prototype = { call$1: function(b) { b.get$_project_model$_$this()._project_model$_assignedUserId = this.userId; return b; }, $signature: 168 }; K._ProjectEditState_build__closure4.prototype = { call$1: function(date) { this.viewModel.onChanged.call$1(this.project.rebuild$1(new K._ProjectEditState_build___closure0(date))); }, $signature: 7 }; K._ProjectEditState_build___closure0.prototype = { call$1: function(b) { b.get$_project_model$_$this()._project_model$_dueDate = this.date; return b; }, $signature: 168 }; G.ProjectEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.ProjectEditScreen_build_closure(), new G.ProjectEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectEditVM); } }; G.ProjectEditScreen_build_closure0.prototype = { call$1: function(store) { return G.ProjectEditVM_ProjectEditVM$fromStore(store); }, $signature: 2345 }; G.ProjectEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new K.ProjectEdit(viewModel, new D.ValueKey(viewModel.project.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2346 }; G.ProjectEditVM.prototype = { get$project: function() { return this.project; }, get$company: function() { return this.company; } }; G.ProjectEditVM_ProjectEditVM$fromStore_closure.prototype = { call$1: function(project) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.UpdateProject(project)); }, $signature: 228 }; G.ProjectEditVM_ProjectEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, t2, _null = null; M.createEntity(_null, _null, context, A.ProjectEntity_ProjectEntity(_null, _null, _null, _null), _null, true); t1 = this.state.uiState; t2 = t1.projectUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; G.ProjectEditVM_ProjectEditVM$fromStore_closure2.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new G.ProjectEditVM_ProjectEditVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new G.ProjectEditVM_ProjectEditVM$fromStore__closure0(t3), t4); }, $signature: 135 }; G.ProjectEditVM_ProjectEditVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/project/edit")); }, $signature: 3 }; G.ProjectEditVM_ProjectEditVM$fromStore__closure0.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/project/edit")); }, $signature: 44 }; G.ProjectEditVM_ProjectEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new G.ProjectEditVM_ProjectEditVM$fromStore__closure1(this.store, this.state).call$0(); }, $signature: 14 }; G.ProjectEditVM_ProjectEditVM$fromStore__closure1.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, project = t1.get$_store$_state().uiState.projectUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_ProjectEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.SaveProjectRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_ProjectEntity), project)); return t2.then$1$1(0, new G.ProjectEditVM_ProjectEditVM$fromStore___closure(project, t3, this.state, t1, $navigator), type$.Null).catchError$1(new G.ProjectEditVM_ProjectEditVM$fromStore___closure0()); }, $signature: 31 }; G.ProjectEditVM_ProjectEditVM$fromStore___closure.prototype = { call$1: function(savedProject) { var t3, _this = this, _s13_ = "/project/view", t1 = _this.project, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_project"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_project"); if (t2 == null) t2 = ""; } M.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s13_)); t1 = t1.get$isNew() && t2.uiState.projectUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s13_, t1, t1); } else t2.pop$1(0, savedProject); } else { if (!t3.isPreviewVisible) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); M.viewEntity(false, savedProject, null, true); } }, $signature: 228 }; G.ProjectEditVM_ProjectEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new G.ProjectEditVM_ProjectEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; G.ProjectEditVM_ProjectEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; E.ProjectListItem.prototype = { build$1: function(_, context) { var filterMatch, listUIState, textStyle, subtitle, textColor, t4, t5, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, projectUIState = uiState.projectUIState, t1 = state.userCompanyStates, t2 = uiState.selectedCompanyIndex, t3 = this.project, client = J.$index$asx(t1._list, t2).clientState.$get$1(0, t3.clientId); t1 = this.filter; if (t1 != null && t1.length !== 0) { t2 = t3.matchesFilterValue$1(t1); filterMatch = t2 == null ? client.matchesFilterValue$1(t1) : t2; } else filterMatch = _null; listUIState = projectUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); subtitle = client.displayName; textColor = K.Theme_of(context).textTheme.bodyText1.color; if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t3.id; t2 = t2 === (uiState.get$isEditing() ? projectUIState.editing.id : projectUIState.selectedId); } else t2 = false; t4 = store.get$_store$_state(); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t5._list, t4).userCompany, t3, new A.LayoutBuilder(new E.ProjectListItem_build_closure(this, t1 != null, listUIState, state, client, textStyle, subtitle, filterMatch, textColor), _null), t2, true, true, _null); }, get$user: function() { return this.user; }, get$project: function() { return this.project; } }; E.ProjectListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new E.ProjectListItem_build__closure(t1), false, t1.isChecked), _null), _null); else { t2 = t1.project; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new E.ProjectListItem_build__closure0(t1)); t2 = t4; } t3 = t1.project; t4 = t3.number; t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t3.name; t8 = L.Text$(t8 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t9 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t8, L.Text$(_this.subtitle, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t9.get$value(t9) >>> 16 & 255, t9.get$value(t9) >>> 8 & 255, t9.get$value(t9) & 255)), _null, _null, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatDuration(P.Duration$(0, C.JSNumber_methods.toInt$0(t3.budgetedHours), 0, 0, 0, 0), false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new E.ProjectListItem_build__closure1(t1, context), new E.ProjectListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new E.ProjectListItem_build__closure3(t1), false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.project; t5 = t4.name; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatDuration(P.Duration$(0, C.JSNumber_methods.toInt$0(t4.budgetedHours), 0, 0, 0, 0), false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new E.ProjectListItem_build__closure4(t1, context), new E.ProjectListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([L.Text$(t5 == null ? t4.number + " \u2022 " + _this.client.displayName : t5, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; E.ProjectListItem_build__closure2.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.project, false, false); return t1; }, $signature: 0 }; E.ProjectListItem_build__closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.project, false, true); return t1; }, $signature: 0 }; E.ProjectListItem_build__closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; E.ProjectListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.project], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; E.ProjectListItem_build__closure5.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.project, false, false); return t1; }, $signature: 0 }; E.ProjectListItem_build__closure4.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.project, false, true); return t1; }, $signature: 0 }; E.ProjectListItem_build__closure3.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; X.ProjectListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.ProjectListBuilder_build_closure(), X.project_list_vm_ProjectListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectListVM); } }; X.ProjectListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.projectList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_project, new X.ProjectListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new N.ProjectPresenter(), t2, t4); }, $signature: 2347 }; X.ProjectListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, projectId = J.$index$asx(t1.projectList, index), project = J.$index$asx(t1.projectMap._map$_map, projectId), t2 = state.getUIState$1(C.EntityType_project).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = project.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new E.ProjectListItem(t4, project, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2348 }; X.ProjectListVM.prototype = {}; X.ProjectListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; X.ProjectListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; X.ProjectListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SortProjects(field)); }, $signature: 5 }; X.ProjectListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ClearProjectMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; N.ProjectPresenter.prototype = { getField$2$context$field: function(context, field) { var client, _this = this, _null = null, project = type$.legacy_ProjectEntity._as(_this.entity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState; t1 = project.clientId; client = t2.$get$1(0, t1); switch (field) { case "name": return L.Text$(project.name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": return L.Text$(client.displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_id_number": return L.Text$(client.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_number": return L.Text$(client.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "task_rate": return L.Text$(Y.formatNumber(project.taskRate, context, t1, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "due_date": return L.Text$(Y.formatDate(project.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": t1 = project.publicNotes; return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": t1 = project.privateNotes; return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "budgeted_hours": return L.Text$(Y.formatNumber(project.budgetedHours, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": t1 = project.number; return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, project.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, project.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, project.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, project.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(project.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; Z.ProjectScreen.prototype = { build$1: function(_, context) { var company, userCompany, t3, t4, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = J.$index$asx(t2._list, t1).userCompany; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = state.uiState.projectUIState.listUIState; t3 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.projectList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("number"); t6.push("client_number"); t6.push("client_id_number"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t7 = H.setRuntimeTypeInfo(["name", "client", "task_rate", "due_date", "public_notes", "private_notes", "budgeted_hours", "entity_state"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("project1", true), company.getCustomFieldValues$2$excludeBlank("project2", true), company.getCustomFieldValues$2$excludeBlank("project3", true), company.getCustomFieldValues$2$excludeBlank("project4", true), t7, C.EntityType_project, false, C.List_empty14, new Z.ProjectScreen_build_closure(store), new Z.ProjectScreen_build_closure0(store), new Z.ProjectScreen_build_closure1(store), new Z.ProjectScreen_build_closure2(store), new Z.ProjectScreen_build_closure3(store), new Z.ProjectScreen_build_closure4(store), new Z.ProjectScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name", "number", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t1 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_project) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "project_fab", false, new Z.ProjectScreen_build_closure6(context), t1.get$newProject()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_project, t2, new Z.ProjectScreen_build_closure7(store), t4, new D.ValueKey(t3, type$.ValueKey_legacy_String)), new X.ProjectListBuilder(_null), t6, C.EntityType_project, t1, 0, _null, new Z.ProjectScreen_build_closure8(store), new Z.ProjectScreen_build_closure9(store)); } }; Z.ProjectScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.StartProjectMultiselect()); }, $signature: 9 }; Z.ProjectScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjects(value)); }, $signature: 7 }; Z.ProjectScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.projectUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ClearProjectMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.StartProjectMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z.ProjectScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SortProjects(value)); }, $signature: 5 }; Z.ProjectScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjectsByCustom1(value)); }, $signature: 5 }; Z.ProjectScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjectsByCustom2(value)); }, $signature: 5 }; Z.ProjectScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjectsByCustom3(value)); }, $signature: 5 }; Z.ProjectScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjectsByCustom4(value)); }, $signature: 5 }; Z.ProjectScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.FilterProjectsByState(state)); }, $signature: 53 }; Z.ProjectScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.projectUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ClearProjectMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.StartProjectMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Z.ProjectScreen_build_closure6.prototype = { call$0: function() { return M.createEntityByType(true, this.context, C.EntityType_project); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; S.ProjectScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.ProjectScreenBuilder_build_closure(), S.project_screen_vm_ProjectScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectScreenVM); } }; S.ProjectScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new Z.ProjectScreen(vm, null); }, $signature: 2349 }; S.ProjectScreenVM.prototype = {}; M.ProjectView.prototype = { createState$0: function() { return new M._ProjectViewState(null, C._StateLifecycle_0); } }; M._ProjectViewState.prototype = { initState$0: function() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = U.TabController$(t1.isFilter ? 0 : state.uiState.projectUIState.tabIndex, 2, _this); _this._project_view$_controller = t2; t2 = t2.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_project_view$_onTabChanged()), false); }, _project_view$_onTabChanged$0: function() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._project_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.UpdateProjectTab(t1)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._project_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._project_view$_controller.removeListener$1(0, _this.get$_project_view$_onTabChanged()); _this._project_view$_controller.dispose$0(0); _this.super$__ProjectViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var _this = this, _null = null, viewModel = _this._widget.viewModel, project = viewModel.project, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget.isFilter, t3 = _this._project_view$_controller, t4 = E.Tab$(_null, t1.get$overview()), t5 = project.documents._list, t6 = J.getInterceptor$asx(t5); t3 = E.TabBar$(t3, _null, false, _null, _null, H.setRuntimeTypeInfo([t4, E.Tab$(_null, t6.get$isEmpty(t5) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t6.get$length(t5)) + ")")], type$.JSArray_legacy_Widget)); E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "project_view_fab", false, new M._ProjectViewState_build_closure(viewModel, context), t1.get$newTask()); return new G.ViewScaffold(t2, project, new T.Builder(new M._ProjectViewState_build_closure0(_this, viewModel, project), _null), _null, t3, _null); } }; M._ProjectViewState_build_closure0.prototype = { call$1: function(context) { var _null = null, t1 = this.$this, t2 = t1._project_view$_controller, t3 = this.viewModel, t4 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new Y.ProjectOverview(t3, t1._widget.isFilter, _null), new M._ProjectViewState_build__closure(t3, context)), N.RefreshIndicator$(new D.ProjectViewDocuments(t3, new D.ValueKey(t3.project.id, type$.ValueKey_legacy_String)), new M._ProjectViewState_build__closure0(t3, context))], t4), t2, _null), 1), new Z.BottomButtons(this.project, C.EntityAction_newTask, C.EntityAction_invoiceProject, true, true, _null)], t4), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; M._ProjectViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; M._ProjectViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; M._ProjectViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onAddTaskPressed.call$1(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; M.__ProjectViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; D.ProjectViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.viewModel.project.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new D.ProjectViewDocuments_build_closure(this, context), new D.ProjectViewDocuments_build_closure0(this, context), null, null); } }; D.ProjectViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; D.ProjectViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; Y.ProjectOverview.prototype = { createState$0: function() { return new Y._ProjectOverviewState(C._StateLifecycle_0); } }; Y._ProjectOverviewState.prototype = { initState$0: function() { this.super$State$initState(); this._project_view_overview$_timer = P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 0, 0, 1), new Y._ProjectOverviewState_initState_closure(this)); }, dispose$0: function(_) { this._project_view_overview$_timer.cancel$0(0); this._project_view_overview$_timer = null; this.super$State$dispose(0); }, build$1: function(_, context) { var t4, _null = null, _s8_ = "project1", _s8_0 = "project2", _s8_1 = "project3", _s8_2 = "project4", t1 = this._widget.viewModel, project = t1.project, company = t1.company, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = type$.legacy_String, fields = P.LinkedHashMap_LinkedHashMap$_literal(["due_date", Y.formatDate(project.dueDate, context, true, true, false), "task_rate", Y.formatNumber(project.taskRate, context, project.clientId, _null, C.FormatNumberType_0, true, _null, false)], t3, t3); t3 = project.customValue1; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_), Y.formatCustomValue(context, _s8_, t3)); t3 = project.customValue2; t4 = t3.length !== 0; if (t4) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_0), Y.formatCustomValue(context, _s8_0, t3)); t3 = project.customValue3; if (t3.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_1), Y.formatCustomValue(context, _s8_1, t3)); if (t4) fields.$indexSet(0, company.getCustomFieldLabel$1(_s8_2), Y.formatCustomValue(context, _s8_2, project.customValue4)); return N.RefreshIndicator$(new X.ScrollableListView(new Y._ProjectOverviewState_build__buildView(this, project, t2, t1.state, t1.client, company, fields).call$0(), _null, _null, false, _null), new Y._ProjectOverviewState_build_closure(this, context)); } }; Y._ProjectOverviewState_initState_closure.prototype = { call$1: function(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new Y._ProjectOverviewState_initState__closure()); }, $signature: 259 }; Y._ProjectOverviewState_initState__closure.prototype = { call$0: function() { return false; }, $signature: 19 }; Y._ProjectOverviewState_build__buildView.prototype = { call$0: function() { var t6, t7, t8, t9, t10, _this = this, _null = null, t1 = _this.project, t2 = _this.localization, t3 = t2.get$total(t2), t4 = _this.state, t5 = t4.uiState.selectedCompanyIndex; t4 = t4.userCompanyStates._list; t6 = J.getInterceptor$asx(t4); t7 = Y.formatDuration(Q.taskDurationForProject(t1, t6.$index(t4, t5).taskState.map), true); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "budgeted"); if (t8 == null) t8 = ""; t9 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([D.EntityHeader$(t1, t3, t8, Y.formatDuration(P.Duration$(0, C.JSNumber_methods.toInt$0(t1.budgetedHours), 0, 0, 0, 0), true), _null, _null, t7), new G.ListDivider(_null)], t9); t3 = t1.privateNotes; if (t3.length !== 0) C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new S.IconMessage(t3, C.IconData_58286_MaterialIcons_null_false, _null, _null), new G.ListDivider(_null)], t9)); t3 = _this.$this; t7.push(O.EntityListTile$(_this.client, t3._widget.isFilter, _null)); t7.push(O.EntityListTile$(t6.$index(t4, t5).userState.$get$1(0, t1.assignedUserId), t3._widget.isFilter, _null)); t8 = _this.company; if (t8.isModuleEnabled$1(C.EntityType_task)) { t10 = t3._widget.isFilter; t7.push(new O.EntitiesListTile(t1, C.EntityType_task, t2.get$tasks(), $.$get$memoizedTaskStatsForProject().call$2(t1.id, t6.$index(t4, t5).taskState.map).present$2(t2.get$active(t2), t2.get$archived()), t10, false, _null)); } if (t8.isModuleEnabled$1(C.EntityType_expense)) { t3 = t3._widget.isFilter; t7.push(new O.EntitiesListTile(t1, C.EntityType_expense, t2.get$expenses(), $.$get$memoizedExpenseStatsForProject().call$2(t1.id, t6.$index(t4, t5).expenseState.map).present$2(t2.get$active(t2), t2.get$archived()), t3, false, _null)); } C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new T.FieldGrid(_this.fields, _null)], t9)); t1 = t1.publicNotes; if (t1.length !== 0) C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([new S.IconMessage(t1, _null, _null, _null), new G.ListDivider(_null)], t9)); return t7; }, $signature: 198 }; Y._ProjectOverviewState_build_closure.prototype = { call$0: function() { return this.$this._widget.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; D.ProjectViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new D.ProjectViewScreen_build_closure(this), new D.ProjectViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProjectViewVM); } }; D.ProjectViewScreen_build_closure0.prototype = { call$1: function(store) { return D.ProjectViewVM_ProjectViewVM$fromStore(store); }, $signature: 2350 }; D.ProjectViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new M.ProjectView(vm, this.$this.isFilter, vm.state.uiState.projectUIState.tabIndex, null); }, $signature: 2351 }; D.ProjectViewVM.prototype = { get$project: function() { return this.project; }, get$company: function() { return this.company; } }; D.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.LoadProject(completer, this.project.id)); return completer.future; }, $signature: 17 }; D.ProjectViewVM_ProjectViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; D.ProjectViewVM_ProjectViewVM$fromStore_closure.prototype = { call$1: function(context) { var _null = null; M.createEntity(_null, _null, context, D.TaskEntity_TaskEntity(_null, _null, _null, this.state, _null).rebuild$1(new D.ProjectViewVM_ProjectViewVM$fromStore__closure2(this.project)), _null, true); }, $signature: 14 }; D.ProjectViewVM_ProjectViewVM$fromStore__closure2.prototype = { call$1: function(b) { var t1 = this.project; b.get$_task_model$_$this()._task_model$_projectId = t1.id; b.get$_task_model$_$this()._task_model$_clientId = t1.clientId; return b; }, $signature: 46 }; D.ProjectViewVM_ProjectViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.SaveProjectDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.project)); t1.then$1$1(0, new D.ProjectViewVM_ProjectViewVM$fromStore__closure0(context), type$.Null).catchError$1(new D.ProjectViewVM_ProjectViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; D.ProjectViewVM_ProjectViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; D.ProjectViewVM_ProjectViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new D.ProjectViewVM_ProjectViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; D.ProjectViewVM_ProjectViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; D.ProjectViewVM_ProjectViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new D.ProjectViewVM_ProjectViewVM$fromStore__closure(t2, this.project), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; D.ProjectViewVM_ProjectViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.LoadProject(null, this.project.id)); }, $signature: 95 }; E.QuoteEditDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.QuoteEditDetailsScreen_build_closure(this), new E.QuoteEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditDetailsVM); } }; E.QuoteEditDetailsScreen_build_closure0.prototype = { call$1: function(store) { return E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore(store); }, $signature: 2352 }; E.QuoteEditDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new S.InvoiceEditDesktop(viewModel, this.$this.viewModel, new D.ValueKey("__quote_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new N.InvoiceEditDetails(viewModel, C.EntityType_quote, null); }, $signature: 2353 }; E.QuoteEditDetailsVM.prototype = {}; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure.prototype = { call$1: function(quote) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateQuote(quote)); }, $signature: 138 }; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0.prototype = { call$3: function(context, quote, client) { var t1, t2, _this = this; if (client != null) { t1 = _this.state.staticState.currencyMap; t2 = _this.company.settings.currencyId; if (t2 == null) t2 = "1"; t2 = quote.rebuild$1(new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure1(R.getExchangeRate(t1, t2, client.settings.currencyId))); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.UpdateQuote(t2)); } J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.UpdateQuoteClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 274 }; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure1.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._exchangeRate = this.exchangeRate; return b; }, $signature: 11 }; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0(t3), t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 135 }; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote/edit")); }, $signature: 3 }; E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/quote/edit")); }, $signature: 44 }; T.QuoteEditItemsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.QuoteEditItemsScreen_build_closure(this), new T.QuoteEditItemsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditItemsVM); } }; T.QuoteEditItemsScreen_build_closure0.prototype = { call$1: function(store) { return T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore(store); }, $signature: 2354 }; T.QuoteEditItemsScreen_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = this.$this.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new E.InvoiceEditItemsDesktop(viewModel, t1, false, null); else return new G.InvoiceEditItems(viewModel, t1, null); }, $signature: 2355 }; T.QuoteEditItemsVM.prototype = {}; T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure.prototype = { call$1: function(index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.DeleteQuoteItem(index)); }, $signature: 103 }; T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EditQuoteItem(null)); }, $signature: 1 }; T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1.prototype = { call$2: function(quoteItem, index) { var t1 = this.store; if (index == J.get$length$asx(t1.get$_store$_state().uiState.quoteUIState.editing.lineItems._list)) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.AddQuoteItem(quoteItem)); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.UpdateQuoteItem(index, quoteItem)); }, $signature: 241 }; T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2.prototype = { call$2: function(oldIndex, newIndex) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.MoveQuoteItem(oldIndex, newIndex)); }, $signature: 141 }; V.QuoteEditNotesScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new V.QuoteEditNotesScreen_build_closure(), new V.QuoteEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditNotesVM); } }; V.QuoteEditNotesScreen_build_closure0.prototype = { call$1: function(store) { return V.QuoteEditNotesVM_QuoteEditNotesVM$fromStore(store); }, $signature: 2356 }; V.QuoteEditNotesScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.InvoiceEditNotes(viewModel, null); }, $signature: 2357 }; V.QuoteEditNotesVM.prototype = {}; V.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure.prototype = { call$1: function(quote) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateQuote(quote)); }, $signature: 138 }; D.QuoteEditPDFScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new D.QuoteEditPDFScreen_build_closure(), new D.QuoteEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditPDFVM); } }; D.QuoteEditPDFScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.quoteUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new D.QuoteEditPDFVM(state, J.$index$asx(t2._list, t1).userCompany.company, invoice); }, $signature: 2358 }; D.QuoteEditPDFScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2359 }; D.QuoteEditPDFVM.prototype = {}; B.QuoteEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.QuoteEditScreen_build_closure(), new B.QuoteEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteEditVM); } }; B.QuoteEditScreen_build_closure0.prototype = { call$1: function(store) { return B.QuoteEditVM_QuoteEditVM$fromStore(store); }, $signature: 2360 }; B.QuoteEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new B.QuoteEdit(viewModel, new D.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2361 }; B.QuoteEditVM.prototype = {}; B.QuoteEditVM_QuoteEditVM$fromStore_closure.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.QuoteEditVM_QuoteEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; B.QuoteEditVM_QuoteEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t4, _this = this, t1 = _this.store, quote = t1.get$_store$_state().uiState.quoteUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (quote.clientId.length === 0) { E.showDialog(true, new B.QuoteEditVM_QuoteEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!quote.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; t2 = !Y.hasQuoteChanges(quote, J.$index$asx(t2.userCompanyStates._list, t4).quoteState.map) && C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailQuote, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), _this.action); } else t2 = false; t4 = _this.action; if (t2) M.handleEntitiesActions(H.setRuntimeTypeInfo([quote], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new P._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveQuoteRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), quote, t4)); return t2.then$1$1(0, new B.QuoteEditVM_QuoteEditVM$fromStore___closure0(quote, t3, _this.state, t1, $navigator, t4), type$.Null).catchError$1(new B.QuoteEditVM_QuoteEditVM$fromStore___closure1()); } }, $signature: 31 }; B.QuoteEditVM_QuoteEditVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 21 }; B.QuoteEditVM_QuoteEditVM$fromStore___closure0.prototype = { call$1: function(savedQuote) { var _this = this, _s11_ = "/quote/view", t1 = _this.quote, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_quote"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedQuote(); M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s11_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s11_, t1, t1); } else t2.pop$1(0, savedQuote); } else { M.viewEntity(false, savedQuote, null, false); if (t2.isEditorFullScreen$1(C.EntityType_invoice)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedQuote, null); } } t1 = _this.action; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EntityAction_emailQuote, C.EntityAction_viewPdf], type$.JSArray_legacy_EntityAction), t1)) M.handleEntitiesActions(H.setRuntimeTypeInfo([savedQuote], type$.JSArray_legacy_BaseEntity), t1, false); }, $signature: 68 }; B.QuoteEditVM_QuoteEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new B.QuoteEditVM_QuoteEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; B.QuoteEditVM_QuoteEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; B.QuoteEditVM_QuoteEditVM$fromStore_closure0.prototype = { call$2: function(items, clientId) { var t1; if (items.length === 1) { t1 = J.get$length$asx(this.quote.lineItems._list); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EditQuoteItem(t1)); } J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.AddQuoteItems(items)); }, $signature: 244 }; B.QuoteEditVM_QuoteEditVM$fromStore_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.state.uiState; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) M.viewEntitiesByType(C.EntityType_quote, _null); else { M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, true); t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; B.QuoteEdit.prototype = { createState$0: function() { return new B._QuoteEditState(null, C._StateLifecycle_0); } }; B._QuoteEditState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._quote_edit$_controller = U.TabController$(_this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._quote_edit$_controller.animateTo$1(2); }, dispose$0: function(_) { this._quote_edit$_controller.dispose$0(0); this.super$__QuoteEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _quote_edit$_onSavePressed$2: function(context, action) { if (!$.$get$_QuoteEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _quote_edit$_onSavePressed$1: function(context) { return this._quote_edit$_onSavePressed$2(context, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, invoice = viewModel.invoice, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice); if (invoice.get$isNew()) t2 = t1.get$newQuote(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_quote"); if (t2 == null) t2 = ""; } t3 = H.setRuntimeTypeInfo([C.EntityAction_viewPdf, C.EntityAction_emailQuote], type$.JSArray_legacy_EntityAction); t4 = invoice.statusId; if (t4 === "1") t3.push(C.EntityAction_markSent); if (!C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["3", "4"], type$.JSArray_legacy_String), t4)) t3.push(C.EntityAction_convertToInvoice); t4 = type$.JSArray_legacy_Widget; t5 = E.TabBar$(_this._quote_edit$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$items(t1)), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$pdf())], t4)); t6 = $.$get$_QuoteEditState__formKey(); if (isFullscreen) t4 = new E.QuoteEditDetailsScreen(_this._widget.viewModel, _null); else { t7 = "__quote_" + invoice.id + "_" + invoice.updatedAt + "__"; t8 = _this._quote_edit$_controller; t9 = _this._widget.viewModel; t7 = E.TabBarView$(H.setRuntimeTypeInfo([new E.QuoteEditDetailsScreen(t9, _null), new X.InvoiceEditContactsScreen(invoice.entityType, _null), new T.QuoteEditItemsScreen(t9, _null), new V.QuoteEditNotesScreen(_null), new D.QuoteEditPDFScreen(_null)], t4), t8, new D.ValueKey(t7, type$.ValueKey_legacy_String)); t4 = t7; } return K.EditScaffold$(t3, t5, A.Form$(false, t4, t6), new K.InvoiceEditFooter(invoice, _null), invoice, E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, C.Icon_yXb, "quote_edit_fab", false, new B._QuoteEditState_build_closure(_this, context, invoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new B._QuoteEditState_build_closure0(_this), new B._QuoteEditState_build_closure1(viewModel), new B._QuoteEditState_build_closure2(_this), _null, t2); } }; B._QuoteEditState_build_closure1.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; B._QuoteEditState_build_closure2.prototype = { call$1: function(context) { return this.$this._quote_edit$_onSavePressed$1(context); }, $signature: 29 }; B._QuoteEditState_build_closure0.prototype = { call$2: function(context, action) { return this.$this._quote_edit$_onSavePressed$2(context, action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 57 }; B._QuoteEditState_build_closure.prototype = { call$0: function() { var _this = this; E.showDialog(true, new B._QuoteEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B._QuoteEditState_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.invoice, t2 = J.where$1$ax(t1.lineItems._list, new B._QuoteEditState_build___closure()), t3 = _this.viewModel, t4 = t2.$ti._eval$1("MappedIterable<1,BaseEntity*>"); return new D.InvoiceItemSelector(new B._QuoteEditState_build___closure0(_this.$this, t3, _this.isFullscreen), t1.clientId, P.List_List$of(new H.MappedIterable(t2, new B._QuoteEditState_build___closure1(t3), t4), true, t4._eval$1("Iterable.E")), false, null); }, $signature: 311 }; B._QuoteEditState_build___closure.prototype = { call$1: function(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 58 }; B._QuoteEditState_build___closure1.prototype = { call$1: function(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskState.map; t1 = item.taskId; t1 = J.$index$asx(t2._map$_map, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map; t1 = item.expenseId; t1 = J.$index$asx(t2._map$_map, t1); } return t1; }, $signature: 288 }; B._QuoteEditState_build___closure0.prototype = { call$2: function(items, clientId) { this.viewModel.onItemsAdded.call$2(items, clientId); if (!this.isFullscreen) this.$this._quote_edit$_controller.animateTo$1(2); }, call$1: function(items) { return this.call$2(items, null); }, $signature: 249 }; B.__QuoteEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; B.QuoteEmailScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.QuoteEmailScreen_build_closure(), new B.QuoteEmailScreen_build_closure0(), _null, _null, new B.QuoteEmailScreen_build_closure1(), _null, _null, true, type$.legacy_AppState, type$.legacy_EmailQuoteVM); } }; B.QuoteEmailScreen_build_closure1.prototype = { call$1: function(store) { var t3, quote, client, state = store.get$_store$_state(), t1 = state.uiState, quoteId = t1.quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; t2 = t2._list; t3 = J.getInterceptor$asx(t2); quote = J.$index$asx(t3.$index(t2, t1).quoteState.map._map$_map, quoteId); t1 = t3.$index(t2, t1).clientState.map; t2 = quote.clientId; client = J.$index$asx(t1._map$_map, t2); if (client.get$isStale()) { t1 = client.id; J.$index$asx(store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, t1)); } }, $signature: 397 }; B.QuoteEmailScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, quoteId = t1.quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return B.EmailQuoteVM_EmailQuoteVM$fromStore(store, J.$index$asx(J.$index$asx(t2._list, t1).quoteState.map._map$_map, quoteId)); }, $signature: 2362 }; B.QuoteEmailScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new E.InvoiceEmailView(viewModel, null); }, $signature: 2363 }; B.EmailQuoteVM.prototype = {}; B.EmailQuoteVM_EmailQuoteVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadClient(null, this.quote.clientId)); }, $signature: 1 }; B.EmailQuoteVM_EmailQuoteVM$fromStore_closure0.prototype = { call$4: function(context, template, subject, body) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$emailedQuote(), D.getLayout(context) === C.AppLayout_mobile, t1); if (D.getLayout(context) !== C.AppLayout_mobile) completer.future.then$1$1(0, new B.EmailQuoteVM_EmailQuoteVM$fromStore__closure(this.quote), t1); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.EmailQuoteRequest(completer, this.quote.id, template, subject, body)); }, $signature: 398 }; B.EmailQuoteVM_EmailQuoteVM$fromStore__closure.prototype = { call$1: function(value) { M.viewEntity(false, this.quote, null, false); }, $signature: 3 }; N.QuoteListItem.prototype = { build$1: function(_, context) { var t5, t6, client, quoteUIState, listUIState, t7, isInMultiselect, t8, t9, isChecked, textStyle, textColor, t10, filterMatch, subtitle, _this = this, _null = null, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); t6 = _this.quote; client = t5.$index(t2, t4).clientState.$get$1(0, t6.clientId); quoteUIState = t3.quoteUIState; listUIState = state.getUIState$1(t6.entityType).get$listUIState(); t7 = _this.showCheckbox; isInMultiselect = t7 && listUIState.selectedIds != null; if (isInMultiselect) { t8 = t6.id; t9 = listUIState.selectedIds; isChecked = t9 != null && J.contains$1$asx(t9._list, t8); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t8 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); textColor = K.Theme_of(context).textTheme.bodyText1.color; t9 = _this.filter; if (t9 != null && t9.length !== 0) { t10 = t6.matchesFilterValue$1(t9); filterMatch = t10 == null ? client.matchesFilterValue$1(t9) : t10; } else filterMatch = _null; t1.subtitle = ""; t9 = t6.date; if (t9.length !== 0) { subtitle = Y.formatDate(t9, context, true, true, false); t1.subtitle = subtitle; t9 = subtitle; } else t9 = ""; t10 = t6.dueDate; if (t10.length !== 0) { if (t9.length !== 0) t9 = t1.subtitle = t9 + " \u2022 "; t1.subtitle = t9 + Y.formatDate(t10, context, true, true, false); } t9 = t6.id; t3 = t3.get$isEditing() ? quoteUIState.editing.id : quoteUIState.selectedId; return new L.DismissibleEntity(t5.$index(t2, t4).userCompany, t6, new A.LayoutBuilder(new N.QuoteListItem_build_closure(t1, _this, isInMultiselect, listUIState, isChecked, state, client, t8, textStyle, filterMatch, textColor), _null), t9 === t3, t7, true, _null); }, get$quote: function() { return this.quote; } }; N.QuoteListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new N.QuoteListItem_build__closure(), false, _this.isChecked), _null); else { t2 = t1.quote; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new N.QuoteListItem_build__closure0(t1)); t2 = t4; } t3 = t1.quote; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = _this.client; t9 = t8.displayName; t9 = L.Text$(t9 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t10 = _this.filterMatch; if (t10 == null) t10 = _this._box_0.subtitle; t11 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t9, L.Text$(t10, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t11.get$value(t11) >>> 16 & 255, t11.get$value(t11) >>> 8 & 255, t11.get$value(t11) & 255)), _null, _null, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.amount, context, t8.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 25), new V.EntityStatusChip(t3, 105, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new N.QuoteListItem_build__closure1(t1, context), new N.QuoteListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new N.QuoteListItem_build__closure3(), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.quote; t5 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(_this.client.displayName, _null, _null, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), T.SizedBox$(_null, _null, 4), L.Text$(Y.formatNumber(t4.amount, context, t4.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.filterMatch; if (t6 == null) { t6 = t4.number; if (t6.length === 0) { t6 = _this.localization; t6 = t6.get$pending(t6); } t6 += " \u2022 "; t7 = t4.dueDate; t6 += Y.formatDate(t7.length !== 0 ? t7 : t4.date, context, true, true, false); t6 = L.Text$(C.JSString_methods.trim$0(t6 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : "")), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t6 = L.Text$(t6, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t6 = T.Expanded$(t6, 1); t7 = _this.localization.lookup$1(C.Map_IF4bq.$index(0, t4.get$calculatedStatusId())); t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new N.QuoteListItem_build__closure4(t1, context), new N.QuoteListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t6, L.Text$(t7, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4.statusId === "1" ? _this.textColor : new E.QuoteStatusColors(_this.state.prefState.get$colorThemeModel()).get$colors().$index(0, t4.get$calculatedStatusId()), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new L.EntityStateLabel(t4, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; N.QuoteListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.quote, !t1.showCheckbox, false); }, $signature: 0 }; N.QuoteListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.quote, false, true); }, $signature: 0 }; N.QuoteListItem_build__closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; N.QuoteListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.quote], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; N.QuoteListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this; return M.selectEntity(this.context, t1.quote, !t1.showCheckbox, false); }, $signature: 0 }; N.QuoteListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.quote, false, true); }, $signature: 0 }; N.QuoteListItem_build__closure3.prototype = { call$1: function(value) { return null; }, $signature: 20 }; U.QuoteListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.QuoteListBuilder_build_closure(), U.quote_list_vm_QuoteListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteListVM); } }; U.QuoteListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultiselect, t2 = viewModel.state, t3 = viewModel.invoiceList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_quote, new U.QuoteListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new B.QuotePresenter(), t2, t4); }, $signature: 2364 }; U.QuoteListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, invoiceId = J.$index$asx(t1.invoiceList, index); return new N.QuoteListItem(J.$index$asx(t1.invoiceMap._map$_map, invoiceId), t1.filter, true, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 412 }; U.QuoteListVM.prototype = {}; U.QuoteListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; U.QuoteListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.QuoteListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortQuotes(field)); }, $signature: 5 }; U.QuoteListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ClearQuoteMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; V.QuotePdfScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new V.QuotePdfScreen_build_closure(this), new V.QuotePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuotePdfVM); } }; V.QuotePdfScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, quoteUIState = t1.quoteUIState, invoiceId = quoteUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new V.QuotePdfVM(state, J.$index$asx(t2._list, t1).quoteState.$get$1(0, invoiceId), quoteUIState.historyActivityId); }, $signature: 2365 }; V.QuotePdfScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoicePdfView(vm, this.$this.showAppBar, new D.ValueKey("__quote_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2366 }; V.QuotePdfVM.prototype = {}; B.QuotePresenter.prototype = { getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), quote = type$.legacy_InvoiceEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(quote, 105, _null); case "number": t2 = quote.number; return L.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = quote.clientId; t2 = J.$index$asx(t2._map$_map, t1); return L.Text$((t2 == null ? T.ClientEntity_ClientEntity(t1, _null, _null) : t2).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(quote.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "last_sent_date": return L.Text$(Y.formatDate(quote.lastSentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(quote.amount, context, quote.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "valid_until": return L.Text$(Y.formatDate(quote.dueDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, quote.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, quote.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, quote.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, quote.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(quote.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(quote.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "discount": t1 = quote.isAmountDiscount; t2 = quote.discount; return L.Text$(t1 ? Y.formatNumber(t2, context, quote.clientId, _null, C.FormatNumberType_0, true, _null, false) : Y.formatNumber(t2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return L.Text$(quote.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(quote.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(quote.taxAmount, context, quote.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(quote.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_viewed": return L.Text$(quote.get$isViewed() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; T.QuoteScreen.prototype = { build$1: function(_, context) { var company, userCompany, t3, t4, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = J.$index$asx(t2._list, t1).userCompany; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = state.uiState.quoteUIState.listUIState; t3 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.quoteList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "valid_until"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("exchange_rate"); t6.push("is_viewed"); t6.push("last_sent_date"); t7 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", "date", "valid_until"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, C.EntityType_quote, false, C.List_empty14, new T.QuoteScreen_build_closure(store), new T.QuoteScreen_build_closure0(store), new T.QuoteScreen_build_closure1(store), new T.QuoteScreen_build_closure2(store), new T.QuoteScreen_build_closure3(store), new T.QuoteScreen_build_closure4(store), new T.QuoteScreen_build_closure5(store), new T.QuoteScreen_build_closure6(store), H.setRuntimeTypeInfo(["number", "date", "valid_until", "updated_at"], t5), H.setRuntimeTypeInfo([F._$InvoiceStatusEntity$_("", "").rebuild$1(new T.QuoteScreen_build_closure7(t1)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new T.QuoteScreen_build_closure8(t1)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new T.QuoteScreen_build_closure9(t1)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new T.QuoteScreen_build_closure10(t1)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new T.QuoteScreen_build_closure11(t1))], type$.JSArray_legacy_EntityStatus), t6); t5 = state.prefState; t1 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_quote) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "quote_fab", false, new T.QuoteScreen_build_closure12(context), t1.get$newQuote()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_quote, t2, new T.QuoteScreen_build_closure13(store), t4, new D.ValueKey(t3, type$.ValueKey_legacy_String)), new U.QuoteListBuilder(_null), t6, C.EntityType_quote, t1, 0, _null, new T.QuoteScreen_build_closure14(store), new T.QuoteScreen_build_closure15(store)); } }; T.QuoteScreen_build_closure15.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.StartQuoteMultiselect()); }, $signature: 9 }; T.QuoteScreen_build_closure13.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotes(value)); }, $signature: 7 }; T.QuoteScreen_build_closure14.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.quoteUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearQuoteMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartQuoteMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.QuoteScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SortQuotes(value)); }, $signature: 5 }; T.QuoteScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByCustom1(value)); }, $signature: 5 }; T.QuoteScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByCustom2(value)); }, $signature: 5 }; T.QuoteScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByCustom3(value)); }, $signature: 5 }; T.QuoteScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByCustom4(value)); }, $signature: 5 }; T.QuoteScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByState(state)); }, $signature: 53 }; T.QuoteScreen_build_closure6.prototype = { call$2: function($status, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.FilterQuotesByStatus($status)); }, $signature: 220 }; T.QuoteScreen_build_closure7.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; T.QuoteScreen_build_closure8.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization.get$sent(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; T.QuoteScreen_build_closure9.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-2"; t1 = this.localization.get$viewed(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; T.QuoteScreen_build_closure10.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "approved"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; T.QuoteScreen_build_closure11.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "expired"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; T.QuoteScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.quoteUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.ClearQuoteMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.StartQuoteMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.QuoteScreen_build_closure12.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_quote); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.QuoteScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.QuoteScreenBuilder_build_closure(), B.quote_screen_vm_QuoteScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteScreenVM); } }; B.QuoteScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new T.QuoteScreen(vm, null); }, $signature: 2367 }; B.QuoteScreenVM.prototype = {}; O.QuoteViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.QuoteViewScreen_build_closure(this), new O.QuoteViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_QuoteViewVM); } }; O.QuoteViewScreen_build_closure0.prototype = { call$1: function(store) { return O.QuoteViewVM_QuoteViewVM$fromStore(store); }, $signature: 2368 }; O.QuoteViewScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new E.InvoiceView(viewModel, this.$this.isFilter, viewModel.state.uiState.quoteUIState.tabIndex, null); }, $signature: 2369 }; O.QuoteViewVM.prototype = {}; O.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadQuote(completer, this.quote.id)); return completer.future; }, $signature: 17 }; O.QuoteViewVM_QuoteViewVM$fromStore_closure.prototype = { call$2: function(context, index) { M.editEntity(O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedQuote(), false, type$.legacy_ClientEntity), context, this.quote, index); }, call$1: function(context) { return this.call$2(context, null); }, "call*": "call$2", $defaultValues: function() { return [null]; }, $signature: 306 }; O.QuoteViewVM_QuoteViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; O.QuoteViewVM_QuoteViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveQuoteDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.quote)); t1.then$1$1(0, new O.QuoteViewVM_QuoteViewVM$fromStore__closure0(context), type$.Null).catchError$1(new O.QuoteViewVM_QuoteViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; O.QuoteViewVM_QuoteViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; O.QuoteViewVM_QuoteViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new O.QuoteViewVM_QuoteViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; O.QuoteViewVM_QuoteViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.QuoteViewVM_QuoteViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new O.QuoteViewVM_QuoteViewVM$fromStore__closure(t2, this.quote), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; O.QuoteViewVM_QuoteViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.LoadQuote(null, this.quote.id)); }, $signature: 95 }; O.QuoteViewVM_QuoteViewVM$fromStore_closure3.prototype = { call$3: function(context, quote, activityId) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.ShowPdfQuote(quote, context, activityId)); }, call$2: function(context, quote) { return this.call$3(context, quote, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues: function() { return [null]; }, $signature: 292 }; M.RecurringExpenseEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.RecurringExpenseEditScreen_build_closure(), new M.RecurringExpenseEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseEditVM); } }; M.RecurringExpenseEditScreen_build_closure0.prototype = { call$1: function(store) { return M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore(store); }, $signature: 2370 }; M.RecurringExpenseEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new D.ExpenseEdit(viewModel, new D.ValueKey(viewModel.expense.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2371 }; M.RecurringExpenseEditVM.prototype = {}; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure.prototype = { call$1: function(recurringExpense) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.UpdateRecurringExpense(recurringExpense)); }, $signature: 115 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, C.EntityType_recurringExpense, _null, _null, _null, _null, _null), _null, true); t1 = this.state.uiState; t1.recurringExpenseUIState.toString; t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure(this.store, context, this.state, action).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure.prototype = { call$0: function() { var t4, t5, _this = this, t1 = _this.store, recurringExpense = t1.get$_store$_state().uiState.recurringExpenseUIState.editing, t2 = _this.context, t3 = L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (!recurringExpense.get$isNew()) { t4 = _this.state; t5 = t4.uiState.selectedCompanyIndex; t4 = !A.hasRecurringExpenseChanges(recurringExpense, J.$index$asx(t4.userCompanyStates._list, t5).recurringExpenseState.map) && _this.action != null; } else t4 = false; if (t4) M.handleEntitiesActions(H.setRuntimeTypeInfo([recurringExpense], type$.JSArray_legacy_BaseEntity), _this.action, false); else { t4 = new P._Future($.Zone__current, type$._Future_legacy_ExpenseEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseRequest(new P._AsyncCompleter(t4, type$._AsyncCompleter_legacy_ExpenseEntity), recurringExpense)); return t4.then$1$1(0, new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure(recurringExpense, t3, _this.state, t1, t2), type$.Null).catchError$1(new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0(t2)); } }, $signature: 31 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure.prototype = { call$1: function(savedRecurringExpense) { var _this = this, _s25_ = "created_recurring_expense", _s25_0 = "updated_recurring_expense", _s23_ = "/recurring_expense/view", t1 = _this.recurringExpense, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), _s25_); if (t2 == null) t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s25_); } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), _s25_0); if (t2 == null) t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s25_0); } M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); t2 = _this.context; if (t1.get$isNew()) { t1 = type$.legacy_Object; K.Navigator_of(t2, false).pushReplacementNamed$2$1(_s23_, t1, t1); } else K.Navigator_of(t2, false).pop$1(0, savedRecurringExpense); } else { M.viewEntity(false, savedRecurringExpense, null, false); if (t2.isEditorFullScreen$1(C.EntityType_expense)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedRecurringExpense, null); } } }, $signature: 115 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0.prototype = { call$1: function(error) { E.showDialog(true, new M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; S.RecurringExpenseListItem.prototype = { build$1: function(_, context) { var t4, t5, client, vendor, category, filterMatch, listUIState, isInMultiselect, isChecked, textStyle, textColor, parts, _null = null, t1 = {}, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, expenseUIState = uiState.recurringExpenseUIState, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = this.expense; client = t4.$index(t2, t3).clientState.$get$1(0, t5.clientId); vendor = t4.$index(t2, t3).vendorState.$get$1(0, t5.vendorId); category = t4.$index(t2, t3).expenseCategoryState.$get$1(0, t5.categoryId); t2 = this.filter; if (t2 != null && t2.length !== 0) { t3 = t5.matchesFilterValue$1(t2); filterMatch = t3 == null ? client.matchesFilterValue$1(t2) : t3; } else filterMatch = _null; listUIState = expenseUIState.listUIState; t2 = listUIState.selectedIds; isInMultiselect = t2 != null; if (isInMultiselect) { t3 = t5.id; t2 = J.contains$1$asx(t2._list, t3); isChecked = t2; } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.subtitle = ""; if (filterMatch != null) t1.subtitle = filterMatch; else { t2 = client == null; if (!t2 || vendor != null || category != null) { parts = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t3 = t5.nextSendDate; if (t3.length !== 0) parts.push(Y.formatDate(t3, context, true, true, false)); if (category != null && !category.get$isNew()) parts.push(category.name); if (vendor != null && !vendor.get$isNew()) parts.push(vendor.name); if (!t2 && !client.get$isNew()) parts.push(client.displayName); t1.subtitle = C.JSArray_methods.join$1(parts, " \u2022 "); } } if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t5.id; t2 = t2 === (uiState.get$isEditing() ? expenseUIState.editing.id : expenseUIState.selectedId); } else t2 = false; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t4._list, t3).userCompany, t5, new A.LayoutBuilder(new S.RecurringExpenseListItem_build_closure(t1, this, isInMultiselect, listUIState, isChecked, state, textStyle, filterMatch, textColor), _null), t2, true, true, _null); }, get$expense: function() { return this.expense; } }; S.RecurringExpenseListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new S.RecurringExpenseListItem_build__closure(t1), false, _this.isChecked), _null), _null); else { t2 = t1.expense; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new S.RecurringExpenseListItem_build__closure0(t1)); t2 = t4; } t3 = t1.expense; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t3.publicNotes; t8 = L.Text$(t8 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, t4, _null, _null, _null); t9 = _this._box_0.subtitle; t10 = _this.textColor; t10 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t8, L.Text$(t9, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t10.get$value(t10) >>> 16 & 255, t10.get$value(t10) >>> 8 & 255, t10.get$value(t10) & 255)), _null, _null, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); t9 = T.SizedBox$(_null, _null, 8); t8 = t3.get$grossAmount(); t11 = t3.exchangeRate; if (t11 === 0) t11 = 1; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, t10, t9, L.Text$(Y.formatNumber(t8 * t11, context, _null, t3.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t4, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 16), new V.EntityStatusChip(t3, 105, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new S.RecurringExpenseListItem_build__closure1(t1, context), new S.RecurringExpenseListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new S.RecurringExpenseListItem_build__closure3(t1), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.expense; t5 = t4.publicNotes; if (t5.length === 0) t5 = t4.number; t5 = T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, 1, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1); t6 = t4.get$grossAmount(); t7 = t4.exchangeRate; if (t7 === 0) t7 = 1; t8 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([t5, L.Text$(Y.formatNumber(t6 * t7, context, _null, t4.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 == null) t5 = _this._box_0.subtitle; t6 = _this.textColor; t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new S.RecurringExpenseListItem_build__closure4(t1, context), new S.RecurringExpenseListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([L.Text$(t5, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t6.get$value(t6) >>> 16 & 255, t6.get$value(t6) >>> 8 & 255, t6.get$value(t6) & 255)), _null, _null, _null), new L.EntityStateLabel(t4, _null)], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); t1 = t3; } return t1; }, $signature: 97 }; S.RecurringExpenseListItem_build__closure2.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.expense, false, false); return t1; }, $signature: 0 }; S.RecurringExpenseListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.expense, false, true); }, $signature: 0 }; S.RecurringExpenseListItem_build__closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; S.RecurringExpenseListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.expense], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; S.RecurringExpenseListItem_build__closure5.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.expense, false, false); return t1; }, $signature: 0 }; S.RecurringExpenseListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.expense, false, true); }, $signature: 0 }; S.RecurringExpenseListItem_build__closure3.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; U.RecurringExpenseListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.RecurringExpenseListBuilder_build_closure(), U.recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseListVM); } }; U.RecurringExpenseListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.recurringExpenseList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_recurringExpense, new U.RecurringExpenseListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new D.RecurringExpensePresenter(), t1, t3); }, $signature: 2372 }; U.RecurringExpenseListBuilder_build__closure.prototype = { call$2: function(context, index) { var t3, t1 = this.viewModel, recurringExpenseId = J.$index$asx(t1.recurringExpenseList, index), recurringExpense = J.$index$asx(t1.recurringExpenseMap._map$_map, recurringExpenseId), t2 = t1.state.getUIState$1(C.EntityType_recurringExpense).get$listUIState().selectedIds; if (t2 != null) { t3 = recurringExpense.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new S.RecurringExpenseListItem(recurringExpense, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2373 }; U.RecurringExpenseListVM.prototype = {}; U.RecurringExpenseListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; U.RecurringExpenseListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.RecurringExpenseListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortRecurringExpenses(field)); }, $signature: 5 }; U.RecurringExpenseListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ClearRecurringExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; D.RecurringExpensePresenter.prototype = { getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), expense = type$.legacy_ExpenseEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(expense, 105, _null); case "vendor": case "vendor_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).vendorState.map; t1 = expense.vendorId; t1 = J.$index$asx(t2._map$_map, t1); return L.Text$((t1 == null ? B.VendorEntity_VendorEntity(_null, _null, _null) : t1).name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client_id": case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = expense.clientId; t1 = J.$index$asx(t2._map$_map, t1); return L.Text$((t1 == null ? T.ClientEntity_ClientEntity(_null, _null, _null) : t1).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "next_send_date": return L.Text$(Y.formatDate(expense.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "net_amount": return L.Text$(Y.formatNumber(expense.get$netAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return L.Text$(Y.formatNumber(expense.get$grossAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "converted_amount": t1 = expense.get$grossAmount(); t2 = expense.exchangeRate; if (t2 === 0) t2 = 1; return L.Text$(Y.formatNumber(t1 * t2, context, _null, expense.invoiceCurrencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(expense.get$taxAmount(), context, _null, expense.currencyId, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(expense.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return L.Text$(expense.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(expense.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "should_be_invoiced": return L.Text$(C.JSBool_methods.toString$0(expense.shouldBeInvoiced), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency_id": t1 = state.staticState.currencyMap; t2 = expense.currencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "category": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).expenseCategoryState.map; t1 = expense.categoryId; t1 = J.$index$asx(t2._map$_map, t1); t1 = t1 == null ? _null : t1.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "payment_date": return L.Text$(Y.formatDate(expense.paymentDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(expense.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_currency_id": t1 = state.staticState.currencyMap; t2 = expense.invoiceCurrencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name1": return L.Text$(expense.taxName1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name2": return L.Text$(expense.taxName2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_name3": return L.Text$(expense.taxName3, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate1": return L.Text$(Y.formatNumber(expense.taxRate1, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate2": return L.Text$(Y.formatNumber(expense.taxRate2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_rate3": return L.Text$(Y.formatNumber(expense.taxRate3, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice_id": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).invoiceState.map; t1 = expense.invoiceId; t1 = J.$index$asx(t2._map$_map, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, expense.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, expense.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, expense.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, expense.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(expense.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "remaining_cycles": return L.Text$("" + expense.remainingCycles, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "frequency": return L.Text$(t1.lookup$1(C.Map_tOn4d.$index(0, expense.frequencyId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; O.RecurringExpenseScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.recurringExpenseUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.recurringExpenseList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("number"); t6.push("net_amount"); t6.push("tax_amount"); t6.push("private_notes"); t6.push("should_be_invoiced"); t6.push("currency_id"); t6.push("category"); t6.push("exchange_rate"); t6.push("invoice_currency_id"); t6.push("tax_name1"); t6.push("tax_name2"); t6.push("tax_name3"); t6.push("tax_rate1"); t6.push("tax_rate2"); t6.push("tax_rate3"); t6.push("client_id"); t6.push("invoice_id"); t6.push("vendor_id"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("documents"); t6.push("remaining_cycles"); t7 = H.setRuntimeTypeInfo(["status", "vendor", "client", "frequency", "next_send_date", "amount", "public_notes", "entity_state"], t5); t5 = H.setRuntimeTypeInfo(["number", "next_send_date", "updated_at"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("expense1", true), company.getCustomFieldValues$2$excludeBlank("expense2", true), company.getCustomFieldValues$2$excludeBlank("expense3", true), company.getCustomFieldValues$2$excludeBlank("expense4", true), t7, C.EntityType_recurringExpense, false, C.List_empty14, new O.RecurringExpenseScreen_build_closure(store), new O.RecurringExpenseScreen_build_closure0(store), new O.RecurringExpenseScreen_build_closure1(store), new O.RecurringExpenseScreen_build_closure2(store), new O.RecurringExpenseScreen_build_closure3(store), new O.RecurringExpenseScreen_build_closure4(store), new O.RecurringExpenseScreen_build_closure5(store), _null, t5, C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_recurringExpense) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "recurring_expense_fab", false, new O.RecurringExpenseScreen_build_closure6(context), t3.get$newRecurringExpense()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_recurringExpense, t2, new O.RecurringExpenseScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new U.RecurringExpenseListBuilder(_null), t6, C.EntityType_recurringExpense, t3, 0, _null, new O.RecurringExpenseScreen_build_closure8(store), new O.RecurringExpenseScreen_build_closure9(store)); } }; O.RecurringExpenseScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StartRecurringExpenseMultiselect()); }, $signature: 9 }; O.RecurringExpenseScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpenses(value)); }, $signature: 7 }; O.RecurringExpenseScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.recurringExpenseUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.ClearRecurringExpenseMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.StartRecurringExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.RecurringExpenseScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortRecurringExpenses(value)); }, $signature: 7 }; O.RecurringExpenseScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpensesByState(state)); }, $signature: 53 }; O.RecurringExpenseScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.recurringExpenseUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.ClearRecurringExpenseMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.StartRecurringExpenseMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.RecurringExpenseScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpensesByCustom1(value)); }, $signature: 5 }; O.RecurringExpenseScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpensesByCustom2(value)); }, $signature: 5 }; O.RecurringExpenseScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpensesByCustom3(value)); }, $signature: 5 }; O.RecurringExpenseScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterRecurringExpensesByCustom4(value)); }, $signature: 5 }; O.RecurringExpenseScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_recurringExpense); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.RecurringExpenseScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.RecurringExpenseScreenBuilder_build_closure(), B.recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseScreenVM); } }; B.RecurringExpenseScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new O.RecurringExpenseScreen(vm, null); }, $signature: 2374 }; B.RecurringExpenseScreenVM.prototype = {}; Z.RecurringExpenseViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Z.RecurringExpenseViewScreen_build_closure(this), new Z.RecurringExpenseViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringExpenseViewVM); } }; Z.RecurringExpenseViewScreen_build_closure0.prototype = { call$1: function(store) { return Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore(store); }, $signature: 2375 }; Z.RecurringExpenseViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new U.ExpenseView(vm, false, vm.state.uiState.recurringExpenseUIState.tabIndex, null); }, $signature: 2376 }; Z.RecurringExpenseViewVM.prototype = {}; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpense(completer, this.recurringExpense.id)); return completer.future; }, $signature: 17 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveRecurringExpenseDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.recurringExpense)); t1.then$1$1(0, new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0(context), type$.Null).catchError$1(new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure(t2, this.recurringExpense), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadRecurringExpense(null, this.recurringExpense.id)); }, $signature: 95 }; O.RecurringInvoiceEdit.prototype = { createState$0: function() { return new O._RecurringInvoiceEditState(null, C._StateLifecycle_0); } }; O._RecurringInvoiceEditState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._recurring_invoice_edit$_controller = U.TabController$(_this._widget.viewModel.invoiceItemIndex != null ? 2 : 0, 5, _this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.invoiceItemIndex != null) this._recurring_invoice_edit$_controller.animateTo$1(2); }, dispose$0: function(_) { this._recurring_invoice_edit$_controller.dispose$0(0); this.super$__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _recurring_invoice_edit$_onSavePressed$2: function(context, action) { if (!$.$get$_RecurringInvoiceEditState__formKey().get$currentState().validate$0()) return; this._widget.viewModel.onSavePressed.call$2(context, action); }, _recurring_invoice_edit$_onSavePressed$1: function(context) { return this._recurring_invoice_edit$_onSavePressed$2(context, null); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), recurringInvoice = viewModel.invoice, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice); if (recurringInvoice.get$isNew()) t2 = t1.get$newRecurringInvoice(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_recurring_invoice"); if (t2 == null) t2 = ""; } t3 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityAction); t4 = H.setRuntimeTypeInfo([C.EntityType_recurringInvoice], type$.JSArray_legacy_EntityType); t5 = recurringInvoice.entityType; if (!(C.JSArray_methods.contains$1(t4, t5) && recurringInvoice.statusId === "2")) t3.push(C.EntityAction_start); else t3.push(C.EntityAction_stop); t3.push(C.EntityAction_viewPdf); t4 = type$.JSArray_legacy_Widget; t6 = E.TabBar$(_this._recurring_invoice_edit$_controller, _null, true, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$items(t1)), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$pdf())], t4)); t7 = $.$get$_RecurringInvoiceEditState__formKey(); if (isFullscreen) t4 = new F.RecurringInvoiceEditDetailsScreen(_this._widget.viewModel, _null); else { t8 = "__recurring_invoice_" + recurringInvoice.id + "_" + recurringInvoice.updatedAt + "__"; t9 = _this._recurring_invoice_edit$_controller; t10 = _this._widget.viewModel; t8 = E.TabBarView$(H.setRuntimeTypeInfo([new F.RecurringInvoiceEditDetailsScreen(t10, _null), new X.InvoiceEditContactsScreen(t5, _null), new R.RecurringInvoiceEditItemsScreen(t10, false, _null), new Q.RecurringInvoiceEditNotesScreen(_null), new U.RecurringInvoiceEditPDFScreen(_null)], t4), t9, new D.ValueKey(t8, type$.ValueKey_legacy_String)); t4 = t8; } return K.EditScaffold$(t3, t6, A.Form$(false, t4, t7), new K.InvoiceEditFooter(recurringInvoice, _null), recurringInvoice, E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, C.Icon_yXb, "recurring_invoice_edit_fab", false, new O._RecurringInvoiceEditState_build_closure(_this, context, recurringInvoice, viewModel, isFullscreen), t1.get$addItem()), isFullscreen, new O._RecurringInvoiceEditState_build_closure0(_this), new O._RecurringInvoiceEditState_build_closure1(viewModel), new O._RecurringInvoiceEditState_build_closure2(_this), _null, t2); } }; O._RecurringInvoiceEditState_build_closure1.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; O._RecurringInvoiceEditState_build_closure2.prototype = { call$1: function(context) { return this.$this._recurring_invoice_edit$_onSavePressed$1(context); }, $signature: 29 }; O._RecurringInvoiceEditState_build_closure0.prototype = { call$2: function(context, action) { return this.$this._recurring_invoice_edit$_onSavePressed$2(context, action); }, "call*": "call$2", $requiredArgCount: 2, $signature: 57 }; O._RecurringInvoiceEditState_build_closure.prototype = { call$0: function() { var _this = this; E.showDialog(true, new O._RecurringInvoiceEditState_build__closure(_this.$this, _this.invoice, _this.viewModel, _this.isFullscreen), _this.context, null, true, type$.legacy_InvoiceItemSelector); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O._RecurringInvoiceEditState_build__closure.prototype = { call$1: function(context) { var _this = this, t1 = _this.invoice, t2 = J.where$1$ax(t1.lineItems._list, new O._RecurringInvoiceEditState_build___closure()), t3 = _this.viewModel, t4 = t2.$ti._eval$1("MappedIterable<1,BaseEntity*>"); t4 = P.List_List$of(new H.MappedIterable(t2, new O._RecurringInvoiceEditState_build___closure0(t3), t4), true, t4._eval$1("Iterable.E")); return new D.InvoiceItemSelector(new O._RecurringInvoiceEditState_build___closure1(_this.$this, t3, _this.isFullscreen), t1.clientId, t4, false, null); }, $signature: 311 }; O._RecurringInvoiceEditState_build___closure.prototype = { call$1: function(item) { var t1 = item.typeId; return t1 === "2" || t1 === "6"; }, $signature: 58 }; O._RecurringInvoiceEditState_build___closure0.prototype = { call$1: function(item) { var t2, t1 = this.viewModel.state; if (item.typeId === "2") { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskState.map; t1 = item.taskId; t1 = J.$index$asx(t2._map$_map, t1); } else { t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).expenseState.map; t1 = item.expenseId; t1 = J.$index$asx(t2._map$_map, t1); } return t1; }, $signature: 288 }; O._RecurringInvoiceEditState_build___closure1.prototype = { call$2: function(items, clientId) { this.viewModel.onItemsAdded.call$2(items, clientId); if (!this.isFullscreen) this.$this._recurring_invoice_edit$_controller.animateTo$1(2); }, call$1: function(items) { return this.call$2(items, null); }, $signature: 249 }; O.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; F.RecurringInvoiceEditDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.RecurringInvoiceEditDetailsScreen_build_closure(this), new F.RecurringInvoiceEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditDetailsVM); } }; F.RecurringInvoiceEditDetailsScreen_build_closure0.prototype = { call$1: function(store) { return F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore(store); }, $signature: 2377 }; F.RecurringInvoiceEditDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new S.InvoiceEditDesktop(viewModel, this.$this.viewModel, new D.ValueKey("__recurring_invoice_" + viewModel.invoice.id + "__", type$.ValueKey_legacy_String)); else return new N.InvoiceEditDetails(viewModel, C.EntityType_recurringInvoice, null); }, $signature: 2378 }; F.RecurringInvoiceEditDetailsVM.prototype = {}; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure.prototype = { call$1: function(invoice) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoice(invoice)); }, $signature: 138 }; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3: function(context, invoice, client) { var t1, t2, _this = this; if (client != null) { t1 = _this.state.staticState.currencyMap; t2 = _this.company.settings.currencyId; if (t2 == null) t2 = "1"; t2 = invoice.rebuild$1(new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure1(R.getExchangeRate(t1, t2, client.settings.currencyId))); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoice(t2)); } J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoiceClient(client)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 274 }; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure1.prototype = { call$1: function(b) { b.get$_invoice_model$_$this()._exchangeRate = this.exchangeRate; return b; }, $signature: 11 }; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, "call*": "call$2", $requiredArgCount: 2, $signature: 135 }; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/recurring_invoice/edit")); }, $signature: 3 }; F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/recurring_invoice/edit")); }, $signature: 44 }; R.RecurringInvoiceEditItemsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.RecurringInvoiceEditItemsScreen_build_closure(this), new R.RecurringInvoiceEditItemsScreen_build_closure0(this), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditItemsVM); } }; R.RecurringInvoiceEditItemsScreen_build_closure0.prototype = { call$1: function(store) { return R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore(store, this.$this.isTasks); }, $signature: 2379 }; R.RecurringInvoiceEditItemsScreen_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = this.$this, t2 = t1.viewModel; if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_invoice)) return new E.InvoiceEditItemsDesktop(viewModel, t2, t1.isTasks, null); else return new G.InvoiceEditItems(viewModel, t2, null); }, $signature: 2380 }; R.RecurringInvoiceEditItemsVM.prototype = {}; R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure.prototype = { call$1: function(index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.DeleteRecurringInvoiceItem(index)); }, $signature: 103 }; R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.EditRecurringInvoiceItem(null)); }, $signature: 1 }; R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1.prototype = { call$2: function(item, index) { var t2, t1 = this.store; if (index == J.get$length$asx(t1.get$_store$_state().uiState.recurringInvoiceUIState.editing.lineItems._list)) { t2 = item.rebuild$1(new R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure(this.isTasks)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.AddRecurringInvoiceItem(t2)); } else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoiceItem(index, item)); }, $signature: 241 }; R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure.prototype = { call$1: function(b) { var t1 = this.isTasks ? "2" : "1"; b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, $signature: 54 }; R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2.prototype = { call$2: function(oldIndex, newIndex) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.MoveRecurringInvoiceItem(oldIndex, newIndex)); }, $signature: 141 }; Q.RecurringInvoiceEditNotesScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Q.RecurringInvoiceEditNotesScreen_build_closure(), new Q.RecurringInvoiceEditNotesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditNotesVM); } }; Q.RecurringInvoiceEditNotesScreen_build_closure0.prototype = { call$1: function(store) { return Q.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore(store); }, $signature: 2381 }; Q.RecurringInvoiceEditNotesScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.InvoiceEditNotes(viewModel, null); }, $signature: 2382 }; Q.RecurringInvoiceEditNotesVM.prototype = {}; Q.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure.prototype = { call$1: function(recurringInvoice) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.UpdateRecurringInvoice(recurringInvoice)); }, $signature: 138 }; U.RecurringInvoiceEditPDFScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.RecurringInvoiceEditPDFScreen_build_closure(), new U.RecurringInvoiceEditPDFScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditPDFVM); } }; U.RecurringInvoiceEditPDFScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, invoice = t1.recurringInvoiceUIState.editing, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new U.RecurringInvoiceEditPDFVM(state, J.$index$asx(t2._list, t1).userCompany.company, invoice); }, $signature: 2383 }; U.RecurringInvoiceEditPDFScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.InvoiceEditPDF(viewModel, null); }, $signature: 2384 }; U.RecurringInvoiceEditPDFVM.prototype = {}; Q.RecurringInvoiceEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Q.RecurringInvoiceEditScreen_build_closure(), new Q.RecurringInvoiceEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceEditVM); } }; Q.RecurringInvoiceEditScreen_build_closure0.prototype = { call$1: function(store) { return Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore(store); }, $signature: 2385 }; Q.RecurringInvoiceEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new O.RecurringInvoiceEdit(viewModel, new D.ValueKey(viewModel.invoice.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2386 }; Q.RecurringInvoiceEditVM.prototype = {}; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure.prototype = { call$2: function(context, action) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure(this.store, this.state, action).call$0(); }, call$1: function(context) { return this.call$2(context, null); }, $signature: 185 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t4, _this = this, t1 = _this.store, recurringInvoice = t1.get$_store$_state().uiState.recurringInvoiceUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (recurringInvoice.clientId.length === 0) { E.showDialog(true, new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } if (!recurringInvoice.get$isNew()) { t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; t2 = !L.hasRecurringInvoiceChanges(recurringInvoice, J.$index$asx(t2.userCompanyStates._list, t4).recurringInvoiceState.map) && _this.action != null; } else t2 = false; t4 = _this.action; if (t2) M.handleEntitiesActions(H.setRuntimeTypeInfo([recurringInvoice], type$.JSArray_legacy_BaseEntity), t4, false); else { t2 = new P._Future($.Zone__current, type$._Future_legacy_InvoiceEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_InvoiceEntity), recurringInvoice, t4)); return t2.then$1$1(0, new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0(recurringInvoice, t3, _this.state, t1, $navigator), type$.Null).catchError$1(new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1()); } }, $signature: 31 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseSelectAClient(), false, null); }, $signature: 21 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0.prototype = { call$1: function(savedRecurringInvoice) { var _this = this, _s23_ = "/recurring_invoice/view", t1 = _this.recurringInvoice, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_recurring_invoice"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedRecurringInvoice(); M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s23_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s23_, t1, t1); } else t2.pop$1(0, savedRecurringInvoice); } else { M.viewEntity(false, savedRecurringInvoice, null, false); if (t2.isEditorFullScreen$1(C.EntityType_invoice)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedRecurringInvoice, null); } } }, $signature: 68 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0.prototype = { call$2: function(items, clientId) { var t1; if (items.length === 1) { t1 = J.get$length$asx(this.recurringInvoice.lineItems._list); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.EditRecurringInvoiceItem(t1)); } J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.AddRecurringInvoiceItems(items)); }, $signature: 244 }; Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1.prototype = { call$1: function(context) { var _null = null, t1 = this.state.uiState; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["pdf", "email"], type$.JSArray_legacy_String), t1.get$previousSubRoute())) M.viewEntitiesByType(C.EntityType_recurringInvoice, _null); else { M.createEntity(_null, _null, context, Q.InvoiceEntity_InvoiceEntity(_null, _null, _null, _null, _null), _null, true); t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; U.RecurringInvoiceListItem.prototype = { build$1: function(_, context) { var t5, t6, client, invoiceUIState, listUIState, isInMultiselect, t7, t8, isChecked, textStyle, t9, filterMatch, statusLabel, statusColor, textColor, subtitle, _null = null, t1 = {}, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); t6 = this.invoice; client = t5.$index(t2, t4).clientState.$get$1(0, t6.clientId); invoiceUIState = t3.recurringInvoiceUIState; listUIState = state.getUIState$1(t6.entityType).get$listUIState(); isInMultiselect = listUIState.selectedIds != null; if (isInMultiselect) { t7 = t6.id; t8 = listUIState.selectedIds; isChecked = t8 != null && J.contains$1$asx(t8._list, t7); } else isChecked = false; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); t7 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t8 = this.filter; if (t8 != null && t8.length !== 0) { t9 = t6.matchesFilterValue$1(t8); filterMatch = t9 == null ? client.matchesFilterValue$1(t8) : t9; } else filterMatch = _null; statusLabel = t7.lookup$1(C.Map_BzEVk.$index(0, t6.get$calculatedStatusId())); statusColor = new E.RecurringInvoiceStatusColors(state.prefState.get$colorThemeModel()).get$colors().$index(0, t6.get$calculatedStatusId()); textColor = K.Theme_of(context).textTheme.bodyText1.color; t1.subtitle = ""; t8 = t6.nextSendDate; if (t8.length !== 0) { subtitle = Y.formatDate(t8, context, true, true, false); t1.subtitle = subtitle; t8 = subtitle; } else t8 = ""; if (t8.length !== 0) t8 = t1.subtitle = t8 + " \u2022 "; t1.subtitle = C.JSString_methods.$add(t8, t7.lookup$1(C.Map_tOn4d.$index(0, t6.frequencyId))); if (D.getLayout(context) === C.AppLayout_desktop) { t8 = t6.id; t8 = t8 === (t3.get$isEditing() ? invoiceUIState.editing.id : invoiceUIState.selectedId); t3 = t8; } else t3 = false; return new L.DismissibleEntity(t5.$index(t2, t4).userCompany, t6, new A.LayoutBuilder(new U.RecurringInvoiceListItem_build_closure(t1, this, isInMultiselect, listUIState, isChecked, state, client, t7, textStyle, filterMatch, textColor, statusLabel, statusColor), _null), t3, true, true, _null); }, get$invoice: function() { return this.invoice; } }; U.RecurringInvoiceListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.isInMultiselect) t2 = new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new U.RecurringInvoiceListItem_build__closure(), false, _this.isChecked), _null); else { t2 = t1.invoice; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$2$client$userCompany(_this.client, J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new U.RecurringInvoiceListItem_build__closure0(t1)); t2 = t4; } t3 = t1.invoice; t4 = t3.number; if (t4.length === 0) { t4 = _this.localization; t4 = t4.get$pending(t4); } t5 = _this.textStyle; t6 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([L.Text$(t4, _null, _null, C.TextOverflow_2, _null, _null, t5, _null, _null, _null)], t6); if (!(!t3.get$isArchived() && !t3.isDeleted)) t4.push(new L.EntityStateLabel(t3, _null)); t4 = T.SizedBox$(T.Column$(t4, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = _this.client; t9 = t8.displayName; t9 = L.Text$(t9 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t5, _null, _null, _null); t10 = _this.filterMatch; if (t10 == null) t10 = _this._box_0.subtitle; t11 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t4, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t9, L.Text$(t10, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t11.get$value(t11) >>> 16 & 255, t11.get$value(t11) >>> 8 & 255, t11.get$value(t11) & 255)), _null, _null, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10), L.Text$(Y.formatNumber(t3.amount, context, t8.id, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, t5, C.TextAlign_5, _null, _null), T.SizedBox$(_null, _null, 25), new V.EntityStatusChip(t3, 105, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new U.RecurringInvoiceListItem_build__closure1(t1, context), new U.RecurringInvoiceListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.isInMultiselect ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new U.RecurringInvoiceListItem_build__closure3(), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.invoice; t5 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(_this.client.displayName, _null, _null, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), T.SizedBox$(_null, _null, 4), L.Text$(Y.formatNumber(t4.amount, context, t4.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t6 = _this.filterMatch; if (t6 == null) { t6 = t4.number; if (t6.length === 0) { t6 = _this.localization; t6 = t6.get$pending(t6); } t7 = t4.nextSendDate; t6 = t6 + (t7.length !== 0 ? " \u2022 " : "") + Y.formatDate(t7, context, true, true, false); t6 = L.Text$(C.JSString_methods.trim$0(t6 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : "")), _null, _null, _null, _null, _null, _null, _null, _null, _null); } else t6 = L.Text$(t6, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null); t6 = T.Expanded$(t6, 1); t1 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new U.RecurringInvoiceListItem_build__closure4(t1, context), new U.RecurringInvoiceListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([t6, L.Text$(_this.statusLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4.statusId === "1" ? _this.textColor : _this.statusColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new L.EntityStateLabel(t4, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); } return t1; }, $signature: 97 }; U.RecurringInvoiceListItem_build__closure2.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, false); }, $signature: 0 }; U.RecurringInvoiceListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, true); }, $signature: 0 }; U.RecurringInvoiceListItem_build__closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; U.RecurringInvoiceListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.invoice], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; U.RecurringInvoiceListItem_build__closure5.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, false); }, $signature: 0 }; U.RecurringInvoiceListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.invoice, false, true); }, $signature: 0 }; U.RecurringInvoiceListItem_build__closure3.prototype = { call$1: function(value) { return null; }, $signature: 20 }; Y.RecurringInvoiceListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.RecurringInvoiceListBuilder_build_closure(), Y.recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceListVM); } }; Y.RecurringInvoiceListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.recurringInvoiceList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_recurringInvoice, new Y.RecurringInvoiceListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new G.RecurringInvoicePresenter(), t1, t3); }, $signature: 2387 }; Y.RecurringInvoiceListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, recurringInvoiceId = J.$index$asx(t1.recurringInvoiceList, index); return new U.RecurringInvoiceListItem(J.$index$asx(t1.recurringInvoiceMap._map$_map, recurringInvoiceId), t1.filter, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2388 }; Y.RecurringInvoiceListVM.prototype = {}; Y.RecurringInvoiceListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; Y.RecurringInvoiceListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; Y.RecurringInvoiceListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SortRecurringInvoices(field)); }, $signature: 5 }; Y.RecurringInvoiceListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ClearRecurringInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; X.RecurringInvoicePdfScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.RecurringInvoicePdfScreen_build_closure(this), new X.RecurringInvoicePdfScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoicePdfVM); } }; X.RecurringInvoicePdfScreen_build_closure0.prototype = { call$1: function(store) { var state = store.get$_store$_state(), t1 = state.uiState, recurringInvoiceUIState = t1.recurringInvoiceUIState, invoiceId = recurringInvoiceUIState.selectedId, t2 = state.userCompanyStates; t1 = t1.selectedCompanyIndex; return new X.RecurringInvoicePdfVM(state, J.$index$asx(t2._list, t1).recurringInvoiceState.$get$1(0, invoiceId), recurringInvoiceUIState.historyActivityId); }, $signature: 2389 }; X.RecurringInvoicePdfScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoicePdfView(vm, true, new D.ValueKey("__recurring_invoice_pdf_" + vm.invoice.id + "__", type$.ValueKey_legacy_String)); }, $signature: 2390 }; X.RecurringInvoicePdfVM.prototype = {}; G.RecurringInvoicePresenter.prototype = { getField$2$context$field: function(context, field) { var t2, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), invoice = type$.legacy_InvoiceEntity._as(_this.entity); switch (field) { case "status": return new V.EntityStatusChip(invoice, 105, _null); case "number": t2 = invoice.number; return L.Text$(t2.length === 0 ? t1.get$pending(t1) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = invoice.clientId; t2 = J.$index$asx(t2._map$_map, t1); return L.Text$((t2 == null ? T.ClientEntity_ClientEntity(t1, _null, _null) : t2).displayName, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "date": return L.Text$(Y.formatDate(invoice.date, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder1_sent": return L.Text$(Y.formatDate(invoice.reminder1Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder2_sent": return L.Text$(Y.formatDate(invoice.reminder2Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder3_sent": return L.Text$(Y.formatDate(invoice.reminder3Sent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "reminder_last_sent": return L.Text$(Y.formatDate(invoice.reminderLastSent, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "amount": return new T.Align(C.Alignment_1_0, _null, _null, L.Text$(Y.formatNumber(invoice.amount, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, invoice.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, invoice.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, invoice.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, invoice.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "public_notes": return L.Text$(invoice.publicNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(invoice.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "discount": t1 = invoice.isAmountDiscount; t2 = invoice.discount; return L.Text$(t1 ? Y.formatNumber(t2, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false) : Y.formatNumber(t2, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "po_number": return L.Text$(invoice.poNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(invoice.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "tax_amount": return L.Text$(Y.formatNumber(invoice.taxAmount, context, invoice.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "exchange_rate": return L.Text$(Y.formatNumber(invoice.exchangeRate, context, _null, _null, C.FormatNumberType_3, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "remaining_cycles": t2 = invoice.remainingCycles; return L.Text$(t2 === -1 ? t1.get$endless() : H.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "next_send_date": return L.Text$(Y.formatDate(invoice.nextSendDate, context, true, true, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "frequency": return L.Text$(t1.lookup$1(C.Map_tOn4d.$index(0, invoice.frequencyId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "due_date_days": t2 = invoice.dueDateDays; if (t2 === "terms") t1 = t1.get$paymentTerm(); else if (t2 === "1") t1 = t1.get$firstDayOfTheMonth(); else t1 = t2 === "31" ? t1.get$lastDayOfTheMonth() : C.JSString_methods.replaceFirst$2(t1.get$dayCount(), ":count", H.S(t2)); return L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "auto_bill": return L.Text$(t1.lookup$1(invoice.autoBill), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; V.RecurringInvoiceScreen.prototype = { build$1: function(_, context) { var t4, company, userCompany, t5, t6, t7, t8, _null = null, _s16_ = "remaining_cycles", store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t1 = t1._list; t4 = J.getInterceptor$asx(t1); company = t4.$index(t1, t3).userCompany.company; userCompany = t4.$index(t1, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.recurringInvoiceUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.recurringInvoiceList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["status", "number", "client", "amount", _s16_, "next_send_date", "frequency", "due_date_days", "auto_bill"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("discount"); t6.push("po_number"); t6.push("public_notes"); t6.push("private_notes"); t6.push("documents"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("tax_amount"); t6.push("exchange_rate"); t7 = H.setRuntimeTypeInfo(["status", "number", "client", "amount", _s16_, "next_send_date", "frequency", "due_date_days", "auto_bill"], t5); t5 = H.setRuntimeTypeInfo(["number", "next_send_date", "updated_at"], t5); t8 = H.setRuntimeTypeInfo([F._$InvoiceStatusEntity$_("", "").rebuild$1(new V.RecurringInvoiceScreen_build_closure(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new V.RecurringInvoiceScreen_build_closure0(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new V.RecurringInvoiceScreen_build_closure1(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new V.RecurringInvoiceScreen_build_closure2(t3)), F._$InvoiceStatusEntity$_("", "").rebuild$1(new V.RecurringInvoiceScreen_build_closure3(t3))], type$.JSArray_legacy_EntityStatus); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("invoice1", true), company.getCustomFieldValues$2$excludeBlank("invoice2", true), company.getCustomFieldValues$2$excludeBlank("invoice3", true), company.getCustomFieldValues$2$excludeBlank("invoice4", true), t7, C.EntityType_recurringInvoice, false, C.List_empty14, new V.RecurringInvoiceScreen_build_closure4(store), new V.RecurringInvoiceScreen_build_closure5(store), new V.RecurringInvoiceScreen_build_closure6(store), new V.RecurringInvoiceScreen_build_closure7(store), new V.RecurringInvoiceScreen_build_closure8(store), new V.RecurringInvoiceScreen_build_closure9(store), new V.RecurringInvoiceScreen_build_closure10(store), new V.RecurringInvoiceScreen_build_closure11(store), t5, t8, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_recurringInvoice) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "recurring_invoice_fab", false, new V.RecurringInvoiceScreen_build_closure12(context), t3.get$newRecurringInvoice()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_recurringInvoice, t2, new V.RecurringInvoiceScreen_build_closure13(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new Y.RecurringInvoiceListBuilder(_null), t6, C.EntityType_recurringInvoice, t3, 0, _null, new V.RecurringInvoiceScreen_build_closure14(store), new V.RecurringInvoiceScreen_build_closure15(store)); } }; V.RecurringInvoiceScreen_build_closure15.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoiceMultiselect()); }, $signature: 9 }; V.RecurringInvoiceScreen_build_closure13.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoices(value)); }, $signature: 7 }; V.RecurringInvoiceScreen_build_closure14.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.recurringInvoiceUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.ClearRecurringInvoiceMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V.RecurringInvoiceScreen_build_closure9.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SortRecurringInvoices(value)); }, $signature: 7 }; V.RecurringInvoiceScreen_build_closure11.prototype = { call$2: function($status, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByStatus($status)); }, $signature: 220 }; V.RecurringInvoiceScreen_build_closure10.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByState(state)); }, $signature: 53 }; V.RecurringInvoiceScreen_build_closure4.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.recurringInvoiceUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.ClearRecurringInvoiceMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new N.StartRecurringInvoiceMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; V.RecurringInvoiceScreen_build_closure.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "1"; t1 = this.localization.get$draft(); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; V.RecurringInvoiceScreen_build_closure0.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "-1"; t1 = this.localization; t1 = t1.get$pending(t1); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; V.RecurringInvoiceScreen_build_closure1.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "2"; t1 = this.localization; t1 = t1.get$active(t1); b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; V.RecurringInvoiceScreen_build_closure2.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "3"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "paused"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; V.RecurringInvoiceScreen_build_closure3.prototype = { call$1: function(b) { var t1; b.get$_invoice_status_model$_$this()._invoice_status_model$_id = "4"; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "completed"); if (t1 == null) t1 = ""; b.get$_invoice_status_model$_$this()._invoice_status_model$_name = t1; return b; }, $signature: 69 }; V.RecurringInvoiceScreen_build_closure5.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByCustom1(value)); }, $signature: 5 }; V.RecurringInvoiceScreen_build_closure6.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByCustom2(value)); }, $signature: 5 }; V.RecurringInvoiceScreen_build_closure7.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByCustom3(value)); }, $signature: 5 }; V.RecurringInvoiceScreen_build_closure8.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.FilterRecurringInvoicesByCustom4(value)); }, $signature: 5 }; V.RecurringInvoiceScreen_build_closure12.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_recurringInvoice); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.RecurringInvoiceScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.RecurringInvoiceScreenBuilder_build_closure(), A.recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceScreenVM); } }; A.RecurringInvoiceScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new V.RecurringInvoiceScreen(vm, null); }, $signature: 2391 }; A.RecurringInvoiceScreenVM.prototype = {}; O.RecurringInvoiceViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.RecurringInvoiceViewScreen_build_closure(this), new O.RecurringInvoiceViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_RecurringInvoiceViewVM); } }; O.RecurringInvoiceViewScreen_build_closure0.prototype = { call$1: function(store) { return O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore(store); }, $signature: 2392 }; O.RecurringInvoiceViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new E.InvoiceView(vm, this.$this.isFilter, vm.state.uiState.recurringInvoiceUIState.tabIndex, null); }, $signature: 2393 }; O.RecurringInvoiceViewVM.prototype = {}; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoice(completer, this.invoice.id)); return completer.future; }, $signature: 17 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure.prototype = { call$2: function(context, index) { M.editEntity(O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedRecurringInvoice(), false, type$.legacy_ClientEntity), context, this.invoice, index); }, call$1: function(context) { return this.call$2(context, null); }, "call*": "call$2", $defaultValues: function() { return [null]; }, $signature: 306 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.SaveRecurringInvoiceDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.invoice)); t1.then$1$1(0, new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0(context), type$.Null).catchError$1(new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure(t2, this.invoice), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.LoadRecurringInvoice(null, this.invoice.id)); }, $signature: 95 }; O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3.prototype = { call$3: function(context, invoice, activityId) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new N.ShowPdfRecurringInvoice(invoice, context, activityId)); }, call$2: function(context, invoice) { return this.call$3(context, invoice, null); }, "call*": "call$3", $requiredArgCount: 2, $defaultValues: function() { return [null]; }, $signature: 292 }; A.ClientReportFields.prototype = { toString$0: function(_) { return this._client_report$_name; } }; A.memoizedClientReport_closure.prototype = { call$5: function(userCompany, reportsUIState, clientMap, userMap, staticState) { return A.clientReport(userCompany, reportsUIState, clientMap, userMap, staticState); }, $signature: 2394 }; A.clientReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_00, e, type$.legacy_ClientReportFields); }, $signature: 2395 }; A.clientReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2396 }; A.clientReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 429 }; A.clientReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.clientReportSettings, this.selectedColumns); }, $signature: 84 }; A.clientReport_closure3.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 429 }; A.clientReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 429 }; L.CreditReportFields.prototype = { toString$0: function(_) { return this._credit_report$_name; } }; L.memoizedCreditReport_closure.prototype = { call$6: function(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState) { return L.creditReport(userCompany, reportsUIState, creditMap, clientMap, userMap, staticState); }, $signature: 708 }; L.creditReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_8Gl, e, type$.legacy_CreditReportFields); }, $signature: 2400 }; L.creditReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2401 }; L.creditReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 431 }; L.creditReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.creditReportSettings, this.selectedColumns); }, $signature: 84 }; L.creditReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 431 }; L.creditReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 431 }; R.DocumentReportFields.prototype = { toString$0: function(_) { return this._document_report$_name; } }; R.memoizedDocumentReport_closure.prototype = { call$10: function(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap) { return R.documentReport(userCompany, reportsUIState, clientMap, productMap, invoiceMap, quoteMap, expenseMap, projectMap, vendorMap, userMap); }, $signature: 2403 }; R.documentReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_usR, e, type$.legacy_DocumentReportFields); }, $signature: 2404 }; R.documentReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2405 }; R.documentReport__getRow.prototype = { call$2: function(entity, $document) { var t1, t2, t3, t4, t5, skip, t6, value, t7, t8, t9, t10, _this = this, _null = null, row = H.setRuntimeTypeInfo([], type$.JSArray_legacy_ReportElement); for (t1 = J.get$iterator$ax(_this._box_0.columns._list), t2 = _this.userCompany, t3 = _this.reportsUIState, t4 = _this.localization, t5 = _this.userMap, skip = false; t1.moveNext$0();) { t6 = t1.get$current(t1); switch (t6) { case C.DocumentReportFields_0: value = $document.name; break; case C.DocumentReportFields_4: value = $document.type; break; case C.DocumentReportFields_7: t7 = $document.createdAt; t7 *= 1000; t8 = new P.DateTime(t7, false); t8.DateTime$_withValue$2$isUtc(t7, false); value = t8.toIso8601String$0(); break; case C.DocumentReportFields_8: t7 = $document.createdUserId; t7 = J.$index$asx(t5._map$_map, t7); if (t7 == null) value = _null; else { t8 = t7.firstName; t9 = t8 + " "; t10 = t7.lastName; t7 = C.JSString_methods.trim$0(t9 + t10).length !== 0 ? C.JSString_methods.trim$0(t8 + " " + t10) : t7.email; value = t7; } if (value == null) value = ""; break; case C.DocumentReportFields_6: value = entity.get$listDisplayName(); break; case C.DocumentReportFields_5: value = entity.get$entityType(); break; case C.DocumentReportFields_9: t7 = $document.updatedAt; t7 *= 1000; t8 = new P.DateTime(t7, false); t8.DateTime$_withValue$2$isUtc(t7, false); value = t8.toIso8601String$0(); break; case C.DocumentReportFields_1: value = $document.size; break; case C.DocumentReportFields_2: value = $document.width; break; case C.DocumentReportFields_3: value = $document.height; break; default: value = ""; } if (!A.ReportResult_matchField(N.EnumUtils_parse(t6), t4, t3, t2, value)) skip = true; t6 = J.getInterceptor$(value); if (t6.get$runtimeType(value) === C.Type_bool_lhE) { t6 = entity.get$id(entity); row.push(new A.ReportBoolValue(value, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === C.Type_int_tHn) { t6 = entity.get$id(entity); row.push(new A.ReportIntValue(value, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === C.Type_double_K1J) { t6 = entity.get$id(entity); row.push(new A.ReportNumberValue(value, _null, _null, _null, entity.get$entityType(), t6)); } else if (t6.get$runtimeType(value) === C.Type_EntityType_6qb) { t6 = entity.get$id(entity); t7 = entity.get$entityType(); row.push(new A.ReportEntityTypeValue(entity.get$entityType(), t7, t6)); } else { t6 = entity.get$id(entity); row.push(new A.ReportStringValue(value, entity.get$entityType(), t6)); } } return skip ? _null : row; }, $signature: 2406 }; R.documentReport_closure1.prototype = { call$2: function(clientId, client) { J.forEach$1$ax(client.documents._list, new R.documentReport__closure2(this._getRow, client, this.data)); }, $signature: 234 }; R.documentReport__closure2.prototype = { call$1: function($document) { var row = this._getRow.call$2(this.client, $document); if (row != null) this.data.push(row); }, $signature: 63 }; R.documentReport_closure2.prototype = { call$2: function(productId, product) { J.forEach$1$ax(product.documents._list, new R.documentReport__closure1(this._getRow, product, this.data)); }, $signature: 2407 }; R.documentReport__closure1.prototype = { call$1: function($document) { var row = this._getRow.call$2(this.product, $document); if (row != null) this.data.push(row); }, $signature: 63 }; R.documentReport_closure3.prototype = { call$2: function(invoiceId, invoice) { J.forEach$1$ax(invoice.documents._list, new R.documentReport__closure0(this._getRow, invoice, this.data)); }, $signature: 55 }; R.documentReport__closure0.prototype = { call$1: function($document) { var row = this._getRow.call$2(this.invoice, $document); if (row != null) this.data.push(row); }, $signature: 63 }; R.documentReport_closure4.prototype = { call$2: function(quoteId, quote) { J.forEach$1$ax(quote.documents._list, new R.documentReport__closure(this._getRow, quote, this.data)); }, $signature: 55 }; R.documentReport__closure.prototype = { call$1: function($document) { var row = this._getRow.call$2(this.quote, $document); if (row != null) this.data.push(row); }, $signature: 63 }; R.documentReport_closure5.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 432 }; R.documentReport_closure6.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.documentReportSettings, this.selectedColumns); }, $signature: 84 }; R.documentReport_closure7.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 432 }; R.documentReport_closure8.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 432 }; M.ExpenseReportFields.prototype = { toString$0: function(_) { return this._expense_report$_name; } }; M.memoizedExpenseReport_closure.prototype = { call$9: function(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState) { return M.expenseReport(userCompany, reportsUIState, expenseMap, expenseCategoryMap, invoiceMap, clientMap, vendorMap, userMap, staticState); }, $signature: 2409 }; M.expenseReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_KYr, e, type$.legacy_ExpenseReportFields); }, $signature: 2410 }; M.expenseReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2411 }; M.expenseReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 433 }; M.expenseReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.expenseReportSettings, this.selectedColumns); }, $signature: 84 }; M.expenseReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 433 }; M.expenseReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 433 }; D.InvoiceItemReportFields.prototype = { toString$0: function(_) { return this._invoice_item_report$_name; } }; D.memoizedInvoiceItemReport_closure.prototype = { call$6: function(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return D.lineItemReport0(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, $signature: 698 }; D.lineItemReport_closure5.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_E34, e, type$.legacy_InvoiceItemReportFields); }, $signature: 2414 }; D.lineItemReport_closure6.prototype = { call$1: function(element) { return element != null; }, $signature: 2415 }; D.lineItemReport_closure7.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 434 }; D.lineItemReport_closure8.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.lineItemReportSettings, this.selectedColumns); }, $signature: 84 }; D.lineItemReport_closure9.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 434 }; D.lineItemReport_closure10.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 434 }; X.InvoiceReportFields.prototype = { toString$0: function(_) { return this._invoice_report$_name; } }; X.memoizedInvoiceReport_closure.prototype = { call$6: function(userCompany, reportsUIState, invoiceMap, clientMap, userMap, staticState) { return X.invoiceReport(userCompany, reportsUIState, invoiceMap, clientMap, userMap, staticState); }, $signature: 708 }; X.invoiceReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_PEP, e, type$.legacy_InvoiceReportFields); }, $signature: 2417 }; X.invoiceReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2418 }; X.invoiceReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 435 }; X.invoiceReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.invoiceReportSettings, this.selectedColumns); }, $signature: 84 }; X.invoiceReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 435 }; X.invoiceReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 435 }; O.TaxRateReportFields.prototype = { toString$0: function(_) { return this._invoice_tax_report$_name; } }; O.memoizedInvoiceTaxReport_closure.prototype = { call$9: function(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { return O.taxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState); }, $signature: 695 }; O.taxReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_dyC, e, type$.legacy_TaxRateReportFields); }, $signature: 2421 }; O.taxReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2422 }; O.taxReport_closure2.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 243 }; O.taxReport_closure1.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taxRateReportSettings, this.selectedColumns); }, $signature: 84 }; O.taxReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 243 }; O.taxReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 243 }; O.taxReport_closure5.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 243 }; K.PaymentReportFields.prototype = { toString$0: function(_) { return this._payment_report$_name; } }; K.memoizedPaymentReport_closure.prototype = { call$6: function(userCompany, reportsUIState, paymentMap, clientMap, userMap, staticState) { return K.paymentReport(userCompany, reportsUIState, paymentMap, clientMap, userMap, staticState); }, $signature: 2424 }; K.paymentReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_Fb0, e, type$.legacy_PaymentReportFields); }, $signature: 2425 }; K.paymentReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2426 }; K.paymentReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 437 }; K.paymentReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.paymentReportSettings, this.selectedColumns); }, $signature: 84 }; K.paymentReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 437 }; K.paymentReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 437 }; X.TaxRateReportFields0.prototype = { toString$0: function(_) { return this._payment_tax_report$_name; } }; X.memoizedPaymentTaxReport_closure.prototype = { call$9: function(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState) { return X.paymentTaxReport(userCompany, reportsUIState, taxRateMap, invoiceMap, creditMap, clientMap, paymentMap, userMap, staticState); }, $signature: 695 }; X.paymentTaxReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_QsP, e, type$.legacy_TaxRateReportFields_2); }, $signature: 2428 }; X.paymentTaxReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2429 }; X.paymentTaxReport_closure2.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 299 }; X.paymentTaxReport_closure1.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taxRateReportSettings, this.selectedColumns); }, $signature: 84 }; X.paymentTaxReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 299 }; X.paymentTaxReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 299 }; X.paymentTaxReport_closure5.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 299 }; N.ProductReportFields.prototype = { toString$0: function(_) { return this._product_report$_name; } }; N.memoizedProductReport_closure.prototype = { call$6: function(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState) { return N.productReport(userCompany, reportsUIState, productMap, vendorMap, userMap, staticState); }, $signature: 2431 }; N.productReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_IwX, e, type$.legacy_ProductReportFields); }, $signature: 2432 }; N.productReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2433 }; N.productReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 439 }; N.productReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.productReportSettings, this.selectedColumns); }, $signature: 84 }; N.productReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 439 }; N.productReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 439 }; K.ProfitAndLossReportFields.prototype = { toString$0: function(_) { return this._profit_loss_report$_name; } }; K.memoizedProfitAndLossReport_closure.prototype = { call$9: function(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState) { return K.profitAndLossReport(userCompany, reportsUIState, clientMap, paymentMap, expenseMap, expenseCategoryMap, vendorMap, userMap, staticState); }, $signature: 2435 }; K.profitAndLossReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_EKR, e, type$.legacy_ProfitAndLossReportFields); }, $signature: 2436 }; K.profitAndLossReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2437 }; K.profitAndLossReport_closure2.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 261 }; K.profitAndLossReport_closure1.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.profitAndLossReportSettings, this.selectedColumns); }, $signature: 84 }; K.profitAndLossReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 261 }; K.profitAndLossReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 261 }; K.profitAndLossReport_closure5.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 261 }; T.QuoteItemReportFields.prototype = { toString$0: function(_) { return this._quote_item_report$_name; } }; T.memoizedQuoteItemReport_closure.prototype = { call$6: function(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return T.lineItemReport(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, $signature: 698 }; T.lineItemReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_ujV, e, type$.legacy_QuoteItemReportFields); }, $signature: 2439 }; T.lineItemReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2440 }; T.lineItemReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 441 }; T.lineItemReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.lineItemReportSettings, this.selectedColumns); }, $signature: 84 }; T.lineItemReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 441 }; T.lineItemReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 441 }; Y.QuoteReportFields.prototype = { toString$0: function(_) { return this._quote_report$_name; } }; Y.memoizedQuoteReport_closure.prototype = { call$7: function(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState) { return Y.quoteReport(userCompany, reportsUIState, quoteMap, clientMap, vendorMap, userMap, staticState); }, $signature: 2442 }; Y.quoteReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_H6l, e, type$.legacy_QuoteReportFields); }, $signature: 2443 }; Y.quoteReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2444 }; Y.quoteReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 442 }; Y.quoteReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.quoteReportSettings, this.selectedColumns); }, $signature: 84 }; Y.quoteReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 442 }; Y.quoteReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 442 }; M.ReportCharts.prototype = { build$1: function(_, context) { var color, numericAxis, t3, t4, t5, dateTimeAxis, columnType, child, keys, _null = null, t1 = this.viewModel, state = t1.state, reportState = t1.reportState, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); if (reportState.chart.length === 0 || reportState.group.length === 0) return T.SizedBox$(_null, _null, _null); color = state.prefState.enableDarkMode ? C.Color_toQ : C.Color_ww8; numericAxis = T.NumericAxisSpec$(L.GridlineRendererSpec$(_null, new T.TextStyleSpec(_null, color), new T.LineStyleSpec(color), type$.legacy_num)); t3 = type$.legacy_String; t4 = L.GridlineRendererSpec$(45, new T.TextStyleSpec(10, color), new T.LineStyleSpec(C.Color_WL1), t3); t5 = type$.legacy_DateTime; dateTimeAxis = L.DateTimeAxisSpec$(S.SmallTickRendererSpec$(_null, _null, _null, _null, _null, _null, _null, _null, _null, new T.TextStyleSpec(_null, color), new T.LineStyleSpec(color), _null, _null, t5)); columnType = A.getReportColumnType(reportState.group, context); switch (columnType) { case C.ReportColumnType_0: case C.ReportColumnType_4: case C.ReportColumnType_3: case C.ReportColumnType_5: case C.ReportColumnType_6: t1 = t1.groupTotals.rows; t1.toString; t5 = H._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Map*>"); t3 = H.setRuntimeTypeInfo([F.Series_Series(new M.ReportCharts_build_closure(state), P.List_List$of(new H.MappedListIterable(t1, new M.ReportCharts_build_closure0(this, reportState), t5), true, t5._eval$1("ListIterable.E")), _null, new M.ReportCharts_build_closure1(columnType, t2), "chart", new M.ReportCharts_build_closure2(), type$.dynamic, t3)], type$.JSArray_legacy_Series_of_dynamic_and_legacy_String); t1 = T.BarRendererConfig$(_null, _null, type$.String); child = new X.BarChart(new Z.OrdinalAxisSpec(_null, t4, _null, _null, _null), numericAxis, _null, _null, _null, t3, true, C.Duration_300000, _null, t1, true, _null, _null, _null, _null, _null, _null); break; case C.ReportColumnType_2: case C.ReportColumnType_1: t1 = t1.groupTotals.rows; t1.toString; t2 = H._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); keys = P.List_List$of(new H.WhereIterable(t1, new M.ReportCharts_build_closure3(), t2), true, t2._eval$1("Iterable.E")); C.JSArray_methods.sort$1(keys, new M.ReportCharts_build_closure4()); t2 = H._arrayInstanceType(keys)._eval$1("MappedListIterable<1,Map*>"); child = M.TimeSeriesChart$(H.setRuntimeTypeInfo([F.Series_Series(new M.ReportCharts_build_closure5(state), P.List_List$of(new H.MappedListIterable(keys, new M.ReportCharts_build_closure6(this, reportState), t2), true, t2._eval$1("ListIterable.E")), _null, new M.ReportCharts_build_closure7(), "chart", new M.ReportCharts_build_closure8(), type$.dynamic, t5)], type$.JSArray_legacy_Series_of_dynamic_and_legacy_DateTime), true, _null, dateTimeAxis, numericAxis, _null); break; default: child = _null; } return child == null ? T.SizedBox$(_null, _null, _null) : Y.FormCard$(T.ClipRect$(T.SizedBox$(child, 200, _null)), _null, _null, 4, false, _null, false, _null); } }; M.ReportCharts_build_closure.prototype = { call$2: function(_, __) { return K.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 693 }; M.ReportCharts_build_closure1.prototype = { call$2: function(item, _) { var t1 = J.getInterceptor$asx(item); return this.columnType === C.ReportColumnType_5 ? this.localization.lookup$1(t1.$index(item, "name")) : t1.$index(item, "name"); }, $signature: 2447 }; M.ReportCharts_build_closure2.prototype = { call$2: function(item, _) { return J.$index$asx(item, "value"); }, $signature: 692 }; M.ReportCharts_build_closure0.prototype = { call$1: function(key) { return P.LinkedHashMap_LinkedHashMap$_literal(["name", key, "value", this.$this.viewModel.groupTotals.totals.$index(0, key).$index(0, this.reportState.chart)], type$.legacy_String, type$.legacy_Object); }, $signature: 690 }; M.ReportCharts_build_closure3.prototype = { call$1: function(element) { return element.length !== 0; }, $signature: 16 }; M.ReportCharts_build_closure4.prototype = { call$2: function(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 18 }; M.ReportCharts_build_closure5.prototype = { call$2: function(_, __) { return K.ColorUtil_fromDartColor(this.state.get$accentColor()); }, $signature: 693 }; M.ReportCharts_build_closure7.prototype = { call$2: function(item, _) { return P.DateTime_tryParse(J.$index$asx(item, "name")); }, $signature: 2450 }; M.ReportCharts_build_closure8.prototype = { call$2: function(item, _) { return J.$index$asx(item, "value"); }, $signature: 692 }; M.ReportCharts_build_closure6.prototype = { call$1: function(key) { return P.LinkedHashMap_LinkedHashMap$_literal(["name", key, "value", this.$this.viewModel.groupTotals.totals.$index(0, key).$index(0, this.reportState.chart)], type$.legacy_String, type$.legacy_Object); }, $signature: 690 }; A.ReportsScreen.prototype = { build$1: function(_, context) { var t3, hasCustomDate, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, chartChildren, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), t2 = _this.viewModel, state = t2.state, reportsState = t2.reportState, reportResult = t2.reportResult, leading = T.SizedBox$(_null, _null, _null); if (D.getLayout(context) !== C.AppLayout_mobile) { t3 = state.prefState; t3 = t3.appLayout === C.AppLayout_mobile || t3.menuSidebarMode === C.AppSidebarMode_float; } else t3 = true; if (t3) leading = new T.Builder(new A.ReportsScreen_build_closure(t1), _null); t3 = reportsState.filters; t3 = J.where$1$ax(t3.get$keys(t3), new A.ReportsScreen_build_closure0(reportsState, context)); hasCustomDate = t3.get$isNotEmpty(t3); t3 = type$.JSArray_legacy_String; t4 = H.setRuntimeTypeInfo(["client"], t3); t5 = state.uiState.selectedCompanyIndex; t6 = state.userCompanyStates._list; t7 = J.getInterceptor$asx(t6); if (t7.$index(t6, t5).userCompany.company.isModuleEnabled$1(C.EntityType_invoice)) { t8 = H.setRuntimeTypeInfo(["invoice", "invoice_item", "payment"], t3); t9 = t7.$index(t6, t5).userCompany.company; if (t9.numberOfInvoiceTaxRates > 0 || t9.numberOfItemTaxRates > 0) C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo(["invoice_tax", "payment_tax"], t3)); C.JSArray_methods.addAll$1(t4, t8); } if (t7.$index(t6, t5).userCompany.company.isModuleEnabled$1(C.EntityType_quote)) C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo(["quote", "quote_item"], t3)); if (t7.$index(t6, t5).userCompany.company.isModuleEnabled$1(C.EntityType_credit)) t4.push("credit"); t4.push("document"); t4.push("expense"); t4.push("product"); t4.push("profit_and_loss"); t4.push("task"); C.JSArray_methods.sort$1(t4, new A.ReportsScreen_build_closure1()); t3 = t1.localeCode; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "report"); if (t8 == null) t8 = ""; t9 = reportsState.report; t10 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t11 = type$.AppDropdownButton_legacy_String; t12 = type$.JSArray_legacy_Widget; t10 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t8, t9, new A.ReportsScreen_build_closure2(_this), P.List_List$of(new H.MappedListIterable(t4, new A.ReportsScreen_build_closure3(t1), t10), true, t10._eval$1("ListIterable.E")), _null, true, "", _null, t11)], t12); if (hasCustomDate) C.JSArray_methods.addAll$1(t10, H.setRuntimeTypeInfo([K.DatePicker$(false, _null, _null, t1.get$startDate(), _null, new A.ReportsScreen_build_closure4(_this), reportsState.customStartDate, _null), K.DatePicker$(false, _null, _null, t1.get$endDate(), _null, new A.ReportsScreen_build_closure5(_this), reportsState.customEndDate, _null)], type$.JSArray_legacy_DatePicker)); t4 = t1.get$group(); t8 = reportsState.group; t13 = reportResult.columns; t14 = H._arrayInstanceType(t13); t15 = t14._eval$1("WhereIterable<1>"); t14 = t14._eval$1("MappedIterable<1,DropdownMenuItem*>"); t16 = t14._eval$1("Iterable.E"); t17 = type$.JSArray_legacy_AppDropdownButton_legacy_String; t4 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t4, t8, new A.ReportsScreen_build_closure6(_this), P.List_List$of(new H.MappedIterable(new H.WhereIterable(t13, new A.ReportsScreen_build_closure7(context), t15), new A.ReportsScreen_build_closure8(state, t1), t14), true, t16), true, true, "", _null, t11)], t17); if (A.getReportColumnType(t8, context) === C.ReportColumnType_1 || A.getReportColumnType(t8, context) === C.ReportColumnType_2) { t18 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "subgroup"); if (t18 == null) t18 = ""; t19 = reportsState.subgroup; t20 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "day"); t21 = type$.legacy_String; t20 = K.DropdownMenuItem$(L.Text$(t20 == null ? "" : t20, _null, _null, _null, _null, _null, _null, _null, _null, _null), "day", t21); t22 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "month"); t22 = K.DropdownMenuItem$(L.Text$(t22 == null ? "" : t22, _null, _null, _null, _null, _null, _null, _null, _null, _null), "month", t21); t23 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "year"); t4.push(new Q.AppDropdownButton(t18, t19, new A.ReportsScreen_build_closure9(_this), H.setRuntimeTypeInfo([t20, t22, K.DropdownMenuItem$(L.Text$(t23 == null ? "" : t23, _null, _null, _null, _null, _null, _null, _null, _null, _null), "year", t21)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, t11)); } t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "chart"); if (t3 == null) t3 = ""; chartChildren = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t3, reportsState.chart, new A.ReportsScreen_build_closure10(_this), P.List_List$of(new H.MappedIterable(new H.WhereIterable(t13, new A.ReportsScreen_build_closure11(context), t15), new A.ReportsScreen_build_closure12(t1), t14), true, t16), true, t8.length !== 0, "", _null, t11)], t17); if (D.getLayout(context) !== C.AppLayout_mobile) { t3 = state.prefState; t3 = t3.appLayout === C.AppLayout_mobile || t3.menuSidebarMode === C.AppSidebarMode_float; } else t3 = true; t3 = t3 ? new A.MenuDrawerBuilder(_null) : _null; if (D.getLayout(context) !== C.AppLayout_mobile) { t11 = state.prefState; t11 = t11.appLayout === C.AppLayout_mobile || t11.historySidebarMode === C.AppSidebarMode_float; } else t11 = true; t11 = t11 ? new A.HistoryDrawerBuilder(_null) : _null; t13 = H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t1.get$reports(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], t12); t14 = state.isSaving; if (t14) t13.push(T.SizedBox$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, _null, _null), 28, 28)); t13 = T.Row$(t13, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_0, _null); t15 = H.setRuntimeTypeInfo([], t12); if (D.getLayout(context) === C.AppLayout_desktop) C.JSArray_methods.addAll$1(t15, H.setRuntimeTypeInfo([new T.Builder(new A.ReportsScreen_build_closure13(_this, t1, reportResult), _null), new X.AppTextButton(t1.get$$export(), new A.ReportsScreen_build_closure14(_this, context), true, _null, _null)], t12)); if (D.getLayout(context) === C.AppLayout_mobile || !state.prefState.isHistoryVisible) t15.push(new T.Builder(new A.ReportsScreen_build_closure15(t1, state, store), _null)); t13 = E.AppBar$(t15, _null, false, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, leading, _null, true, _null, _null, _null, _null, t13, _null, _null, _null, 1, _null); t9 = t7.$index(t6, t5).userCompany.company.id + "_" + t14 + "_" + t9 + "_" + t8; t5 = type$.ValueKey_legacy_String; if (D.getLayout(context) === C.AppLayout_mobile) { t6 = P.List_List$of(t10, true, type$.legacy_Widget); C.JSArray_methods.addAll$1(t6, t4); C.JSArray_methods.addAll$1(t6, chartChildren); t6 = Y.FormCard$(_null, t6, _null, 4, false, _null, false, _null); t4 = t6; } else t4 = T.Row$(H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, Y.FormCard$(_null, t10, _null, 4, false, _null, false, _null), _null), new T.Flexible(1, C.FlexFit_1, Y.FormCard$(_null, t4, _null, 4, false, _null, false, _null), _null), new T.Flexible(1, C.FlexFit_1, Y.FormCard$(_null, chartChildren, _null, 4, false, _null, false, _null), _null)], t12), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t4 = H.setRuntimeTypeInfo([t4], t12); if (D.getLayout(context) === C.AppLayout_mobile) t4.push(new T.Padding(C.EdgeInsets_16_0_16_0, T.Row$(H.setRuntimeTypeInfo([new T.Builder(new A.ReportsScreen_build_closure16(_this, t1, reportResult), _null), T.SizedBox$(_null, _null, 16), T.Expanded$(new D.AppButton(_null, _null, t1.get$$export(), new A.ReportsScreen_build_closure17(_this, context), _null, _null), 1)], t12), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); t4.push(new A.ReportDataTable(t2, new D.ValueKey("" + t14 + "_" + t8 + "_" + reportsState.selectedGroup, t5))); return new F.WillPopScope(M.Scaffold$(t13, _null, new X.ScrollableListView(t4, _null, _null, false, new D.ValueKey(t9, t5)), _null, t3, t11, _null, _null), new A.ReportsScreen_build_closure18(store), _null); } }; A.ReportsScreen_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = this.localization.get$menuSidebar(); return R.InkWell$(false, _null, true, B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58332_MaterialIcons_null_false, _null, _null), 24, new A.ReportsScreen_build__closure2(context), C.EdgeInsets_8_8_8_8, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 375 }; A.ReportsScreen_build__closure2.prototype = { call$0: function() { M.Scaffold_of(this.context).openDrawer$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.ReportsScreen_build_closure0.prototype = { call$1: function(column) { var filter = J.$index$asx(this.reportsState.filters._map$_map, column), t1 = this.context; return (A.getReportColumnType(column, t1) === C.ReportColumnType_1 || A.getReportColumnType(column, t1) === C.ReportColumnType_2) && filter === "custom"; }, $signature: 16 }; A.ReportsScreen_build_closure1.prototype = { call$2: function(a, b) { return J.compareTo$1$ns(a, b); }, $signature: 18 }; A.ReportsScreen_build_closure2.prototype = { call$1: function(value) { return this.$this.viewModel.onSettingsChanged.call$1$report(value); }, $signature: 10 }; A.ReportsScreen_build_closure3.prototype = { call$1: function(report) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(report), _null, _null, _null, _null, _null, _null, _null, _null, _null), report, type$.legacy_String); }, $signature: 36 }; A.ReportsScreen_build_closure4.prototype = { call$1: function(date) { return this.$this.viewModel.onSettingsChanged.call$1$customStartDate(date); }, $signature: 5 }; A.ReportsScreen_build_closure5.prototype = { call$1: function(date) { return this.$this.viewModel.onSettingsChanged.call$1$customEndDate(date); }, $signature: 5 }; A.ReportsScreen_build_closure6.prototype = { call$1: function(value) { this.$this.viewModel.onSettingsChanged.call$2$group$selectedGroup(value, ""); }, $signature: 8 }; A.ReportsScreen_build_closure7.prototype = { call$1: function(column) { return A.getReportColumnType(column, this.context) !== C.ReportColumnType_3; }, $signature: 16 }; A.ReportsScreen_build_closure8.prototype = { call$1: function(column) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, columnTitle = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.getCustomFieldLabel$1(column); return K.DropdownMenuItem$(L.Text$(columnTitle.length === 0 ? this.localization.lookup$1(column) : columnTitle, _null, _null, _null, _null, _null, _null, _null, _null, _null), column, type$.legacy_String); }, $signature: 36 }; A.ReportsScreen_build_closure9.prototype = { call$1: function(value) { this.$this.viewModel.onSettingsChanged.call$1$subgroup(value); }, $signature: 8 }; A.ReportsScreen_build_closure10.prototype = { call$1: function(value) { this.$this.viewModel.onSettingsChanged.call$1$chart(value); }, $signature: 8 }; A.ReportsScreen_build_closure11.prototype = { call$1: function(column) { return C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.ReportColumnType_3, C.ReportColumnType_5, C.ReportColumnType_6], type$.JSArray_legacy_ReportColumnType), A.getReportColumnType(column, this.context)); }, $signature: 16 }; A.ReportsScreen_build_closure12.prototype = { call$1: function(column) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(column), _null, _null, _null, _null, _null, _null, _null, _null, _null), column, type$.legacy_String); }, $signature: 36 }; A.ReportsScreen_build_closure18.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$self = this; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start J.$index$asx($async$self.store.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); $async$returnValue = false; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; A.ReportsScreen_build_closure13.prototype = { call$1: function(context) { var t1 = this.localization; return new X.AppTextButton(t1.get$columns(t1), new A.ReportsScreen_build__closure1(this.$this, context, this.reportResult), true, null, null); }, $signature: 273 }; A.ReportsScreen_build__closure1.prototype = { call$0: function() { var t2, t3, t1 = $.$get$navigatorKey(); t1.toString; t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t2 = this.reportResult; t3 = t2.columns; t3 = H.setRuntimeTypeInfo(t3.slice(0), H._arrayInstanceType(t3)); E.multiselectDialog(t1, t2.defaultColumns, new A.ReportsScreen_build___closure0(this.$this, this.context), t2.allColumns, t3); }, $signature: 1 }; A.ReportsScreen_build___closure0.prototype = { call$1: function(selected) { this.$this.viewModel.onReportColumnsChanged.call$2(this.context, selected); }, $signature: 99 }; A.ReportsScreen_build_closure14.prototype = { call$0: function() { this.$this.viewModel.onExportPressed.call$1(this.context); }, $signature: 1 }; A.ReportsScreen_build_closure15.prototype = { call$1: function(context) { var _null = null, t1 = this.localization; return B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_58132_MaterialIcons_null_false, _null, _null), 24, new A.ReportsScreen_build__closure0(context, this.state, this.store), C.EdgeInsets_4_0_20_0, t1.get$history(t1), _null); }, $signature: 271 }; A.ReportsScreen_build__closure0.prototype = { call$0: function() { var t2, _null = null, t1 = this.context; if (D.getLayout(t1) !== C.AppLayout_mobile) { t2 = this.state.prefState; t2 = t2.appLayout === C.AppLayout_mobile || t2.historySidebarMode === C.AppSidebarMode_float; } else t2 = true; if (t2) M.Scaffold_of(t1).openEndDrawer$0(); else { t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.AppSidebar_history); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.ReportsScreen_build_closure16.prototype = { call$1: function(context) { var _null = null, t1 = this.localization; return T.Expanded$(new D.AppButton(_null, _null, t1.get$columns(t1), new A.ReportsScreen_build__closure(this.$this, context, this.reportResult), _null, _null), 1); }, $signature: 2451 }; A.ReportsScreen_build__closure.prototype = { call$0: function() { var t1 = this.context, t2 = this.reportResult, t3 = t2.columns; t3 = H.setRuntimeTypeInfo(t3.slice(0), H._arrayInstanceType(t3)); E.multiselectDialog(t1, t2.defaultColumns, new A.ReportsScreen_build___closure(this.$this, t1), t2.allColumns, t3); }, $signature: 1 }; A.ReportsScreen_build___closure.prototype = { call$1: function(selected) { this.$this.viewModel.onReportColumnsChanged.call$2(this.context, selected); }, $signature: 99 }; A.ReportsScreen_build_closure17.prototype = { call$0: function() { this.$this.viewModel.onExportPressed.call$1(this.context); }, $signature: 1 }; A.ReportDataTable.prototype = { createState$0: function() { return new A._ReportDataTableState(P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_Map_of_legacy_String_and_legacy_TextEditingController), C._StateLifecycle_0); } }; A._ReportDataTableState.prototype = { initState$0: function() { var viewModel, t1, _this = this; _this.super$State$initState(); viewModel = _this._widget.viewModel; t1 = _this._framework$_element; t1.toString; _this.dataTableSource = new A.ReportDataTableSource(viewModel, t1, _this._textEditingControllers, new A._ReportDataTableState_initState_closure(_this, viewModel), new P.LinkedList(type$.LinkedList__ListenerEntry)); }, didUpdateWidget$1: function(oldWidget) { var viewModel, t1; this.super$State$didUpdateWidget(oldWidget); viewModel = this._widget.viewModel; t1 = this.dataTableSource; t1.viewModel = viewModel; t1.notifyListeners$0(); }, didChangeDependencies$0: function() { var t1, t2, t3, t4, t5, t6, _i, column, t7, t8, textEditingController, t9, _this = this, viewModel = _this._widget.viewModel, reportState = viewModel.reportState; for (t1 = viewModel.reportResult.columns, t2 = t1.length, t3 = _this._textEditingControllers, t4 = type$.legacy_String, t5 = type$.legacy_TextEditingController, t6 = type$.LinkedList__ListenerEntry, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { column = t1[_i]; t7 = reportState.report; if (t3.$index(0, t7) == null) t3.$indexSet(0, t7, P.LinkedHashMap_LinkedHashMap$_empty(t4, t5)); if (!t3.$index(0, t7).containsKey$1(0, column)) { t8 = new P.LinkedList(t6); textEditingController = new D.TextEditingController(C.TextEditingValue_QOg, t8); t8._insertBefore$3$updateFirst(null, new B._ListenerEntry(new A._ReportDataTableState_didChangeDependencies_closure(_this, column, textEditingController)), false); t8 = reportState.filters._map$_map; t9 = J.getInterceptor$x(t8); if (t9.containsKey$1(t8, column)) { t8 = t9.$index(t8, column); textEditingController.super$ValueNotifier$value(0, textEditingController._change_notifier$_value.copyWith$3$composing$selection$text(C.TextRange_m1_m1, C.TextSelection_TbC, t8)); } t3.$index(0, t7).$indexSet(0, column, textEditingController); } } _this.super$State$didChangeDependencies(); }, _reports_screen$_onChanged$2: function(column, value) { var t3, t1 = this._widget.viewModel, t2 = this._framework$_element; t2.toString; t3 = t1.reportState.filters.rebuild$1(new A._ReportDataTableState__onChanged_closure(column, value)); t1.onReportFiltersChanged.call$2(t2, t3); }, dispose$0: function(_) { var t1 = this._textEditingControllers; t1.get$keys(t1).forEach$1(0, new A._ReportDataTableState_dispose_closure(this)); this.super$State$dispose(0); }, build$1: function(_, context) { var t3, reportSettings, sortedColumns, t4, _this = this, _null = null, t1 = _this._widget.viewModel, state = t1.state, reportResult = t1.reportResult, reportState = t1.reportState, t2 = state.uiState.selectedCompanyIndex, settings = J.$index$asx(state.userCompanyStates._list, t2).userCompany.settings; if (settings != null) { t2 = settings.reportSettings; t3 = reportState.report; t3 = J.containsKey$1$x(t2._map$_map, t3); t2 = t3; } else t2 = false; if (t2) { t2 = settings.reportSettings; t3 = reportState.report; reportSettings = J.$index$asx(t2._map$_map, t3); } else reportSettings = A.ReportSettingsEntity_ReportSettingsEntity(_null, _null); sortedColumns = reportResult.sortedColumns$1(reportState); t2 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([], t2); if (reportState.chart.length !== 0) t3.push(T.ClipRect$(new M.ReportCharts(_this._widget.viewModel, _null))); if (reportResult.showTotals) t3.push(Y.FormCard$(D.getLayout(context) === C.AppLayout_mobile ? E.SingleChildScrollView$(new A.TotalsDataTable(t1, reportSettings, reportResult, _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_0) : T.Column$(H.setRuntimeTypeInfo([new A.TotalsDataTable(t1, reportSettings, reportResult, _null)], t2), C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, _null, 4, false, _null, false, _null)); t1 = T.SizedBox$(_null, _null, _null); t2 = reportSettings.sortColumn; t2 = C.JSArray_methods.contains$1(sortedColumns, t2) ? C.JSArray_methods.indexOf$1(sortedColumns, t2) : _null; t4 = reportSettings.sortAscending; t3.push(E.SingleChildScrollView$(new R.PaginatedDataTable(t1, reportResult.tableColumns$2(context, new A._ReportDataTableState_build_closure(_this, sortedColumns)), t2, t4, _this.dataTableSource, _null), _null, C.DragStartBehavior_1, C.EdgeInsets_12_12_12_12, _null, false, C.Axis_1)); return T.Column$(t3, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }; A._ReportDataTableState_initState_closure.prototype = { call$2: function(column, value) { var t2, t1 = this.$this, reportState = t1._widget.viewModel.reportState; t1 = t1._framework$_element; t1.toString; t2 = reportState.filters.rebuild$1(new A._ReportDataTableState_initState__closure(column, value)); this.viewModel.onReportFiltersChanged.call$2(t1, t2); }, "call*": "call$2", $requiredArgCount: 2, $signature: 51 }; A._ReportDataTableState_initState__closure.prototype = { call$1: function(b) { var t1 = type$.legacy_String; b.addAll$1(0, P.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, $signature: 300 }; A._ReportDataTableState_didChangeDependencies_closure.prototype = { call$0: function() { this.$this._reports_screen$_onChanged$2(this.column, this.textEditingController._change_notifier$_value.text); }, $signature: 1 }; A._ReportDataTableState__onChanged_closure.prototype = { call$1: function(b) { var t1 = type$.legacy_String; b.addAll$1(0, P.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, $signature: 300 }; A._ReportDataTableState_dispose_closure.prototype = { call$1: function(i) { var t1 = this.$this, t2 = t1._textEditingControllers.$index(0, i); t2.get$keys(t2).forEach$1(0, new A._ReportDataTableState_dispose__closure(t1, i)); }, $signature: 7 }; A._ReportDataTableState_dispose__closure.prototype = { call$1: function(j) { this.$this._textEditingControllers.$index(0, this.i).$index(0, j).ChangeNotifier__listeners = null; }, $signature: 7 }; A._ReportDataTableState_build_closure.prototype = { call$2: function(index, ascending) { var t1 = this.$this._widget.viewModel, t2 = this.sortedColumns[index]; return t1.onReportSorted.call$2(t2, ascending); }, $signature: 689 }; A.TotalsDataTable.prototype = { build$1: function(_, context) { var _null = null, t1 = this.reportSettings, t2 = this.reportResult, t3 = t2.columns.length, t4 = t1.sortTotalsIndex; t3 = t3 > t4 ? t4 : _null; t1 = t1.sortTotalsAscending; return S.DataTable$(_null, _null, t2.totalColumns$2(context, new A.TotalsDataTable_build_closure(this)), _null, _null, _null, _null, _null, _null, t2.totalRows$1(context), false, true, t1, t3); } }; A.TotalsDataTable_build_closure.prototype = { call$2: function(index, ascending) { return this.$this.viewModel.onReportTotalsSorted.call$2(index, ascending); }, $signature: 689 }; A.ReportColumnType.prototype = { toString$0: function(_) { return this._reports_screen$_name; } }; A.getReportColumnType_convertCustomFieldType.prototype = { call$1: function(type) { if (type === "date") return C.ReportColumnType_2; else if (type === "switch") return C.ReportColumnType_4; else return C.ReportColumnType_0; }, $signature: 2454 }; A.ReportDataTableSource.prototype = { get$rowCount: function(_) { var t1, reportState = this.viewModel.reportState; if (reportState.group.length === 0 || reportState.get$isGroupByFiltered()) return this.viewModel.reportResult.data.length + 1; else { t1 = this.viewModel.groupTotals.totals; return t1 == null ? 1 : t1.get$length(t1) + 1; } }, getRow$1: function(index) { var _this = this, t1 = _this.viewModel, reportResult = t1.reportResult, t2 = _this.context; if (index === 0) return reportResult.tableFilters$3(t2, _this.textEditingControllers.$index(0, t1.reportState.report), new A.ReportDataTableSource_getRow_closure(_this)); else return reportResult.tableRow$3(t2, t1, index); } }; A.ReportDataTableSource_getRow_closure.prototype = { call$2: function(column, value) { return this.$this.onFilterChanged.call$2(column, value); }, $signature: 2455 }; A.ReportResult.prototype = { sortedColumns$1: function(reportState) { var t1 = this.columns, data = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)), group = reportState.group; if (group.length !== 0) { C.JSArray_methods.remove$1(data, group); C.JSArray_methods.insert$2(data, 0, group); } return data; }, tableColumns$2: function(context, onSortCallback) { var company, reportState, t4, _i, column, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), t2 = store.get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = J.$index$asx(t3._list, t2).userCompany.company; reportState = store.get$_store$_state().uiState.reportsUIState; t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataColumn); for (t3 = this.sortedColumns$1(reportState), t4 = t3.length, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { column = t3[_i]; t2.push(new S.DataColumn(M.Container$(_null, new L.Text(J.$add$ansx(company.getCustomFieldLabel$1(column).length !== 0 ? company.getCustomFieldLabel$1(column) : t1.lookup$1(column), " "), _null, _null, _null, _null, C.TextOverflow_2, _null, _null, _null, _null), C.Clip_0, _null, new S.BoxConstraints(80, 1 / 0, 0, 1 / 0), _null, _null, _null, _null, _null, _null, _null, _null, _null), A.getReportColumnType(column, context) === C.ReportColumnType_3, onSortCallback)); } return t2; }, tableFilters$3: function(context, textEditingControllers, onFilterChanged) { var t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _i, column, t18, scope, t19, t20, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), reportState = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().uiState.reportsUIState, t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataCell); for (t3 = this.sortedColumns$1(reportState), t4 = t3.length, t5 = type$.legacy_String, t6 = textEditingControllers == null, t7 = !t6, t8 = type$.JSArray_legacy_ReportColumnType, t9 = type$.legacy_DropdownMenuItem_legacy_DateRange, t10 = type$.AppDropdownButton_legacy_DateRange, t11 = type$.legacy_DropdownMenuItem_legacy_String, t12 = type$.AppDropdownButton_legacy_String, t13 = type$.DropdownMenuItem_legacy_bool, t14 = type$.JSArray_legacy_DropdownMenuItem_legacy_bool, t15 = type$.AppDropdownButton_legacy_bool, t16 = type$.nullable_AppLocalization, t17 = type$._LocalizationsScope, _i = 0; _i < t3.length; t3.length === t4 || (0, H.throwConcurrentModificationError)(t3), ++_i) { column = t3[_i]; if (!t7 || !textEditingControllers.containsKey$1(0, column)) t2.push(new S.DataCell(new L.Text("", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); else if (A.getReportColumnType(column, context) === C.ReportColumnType_4) { if (textEditingControllers.$index(0, column)._change_notifier$_value.text === "true") t18 = true; else t18 = textEditingControllers.$index(0, column)._change_notifier$_value.text === "false" ? false : _null; scope = context.dependOnInheritedWidgetOfExactType$1$0(t17); t19 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, (scope == null ? _null : t16._as(J.$index$asx(scope.localizationsState._typeToResources, C.Type_AppLocalization_KyD))).localeCode), "yes"); if (t19 == null) t19 = ""; scope = context.dependOnInheritedWidgetOfExactType$1$0(t17); t20 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, (scope == null ? _null : t16._as(J.$index$asx(scope.localizationsState._typeToResources, C.Type_AppLocalization_KyD))).localeCode), "no"); if (t20 == null) t20 = ""; t2.push(new S.DataCell(new Q.AppDropdownButton(_null, t18, new A.ReportResult_tableFilters_closure(textEditingControllers, column, onFilterChanged), H.setRuntimeTypeInfo([new K.DropdownMenuItem(true, new L.Text(t19, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t13), new K.DropdownMenuItem(false, new L.Text(t20, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t13)], t14), true, true, _null, _null, t15), _null)); } else if (A.getReportColumnType(column, context) === C.ReportColumnType_5) { t18 = textEditingControllers.$index(0, column)._change_notifier$_value.text; t18 = (t18 == null ? "" : t18).length !== 0 && textEditingControllers.$index(0, column)._change_notifier$_value.text !== "null" ? textEditingControllers.$index(0, column)._change_notifier$_value.text : _null; t2.push(new S.DataCell(new Q.AppDropdownButton(_null, t18, new A.ReportResult_tableFilters_closure0(textEditingControllers, column, onFilterChanged), J.map$1$1$ax(C.Map_A2Rmq.get$keys(C.Map_A2Rmq), new A.ReportResult_tableFilters_closure1(t1), t11).toList$0(0), true, true, "", _null, t12), _null)); } else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.ReportColumnType_3, C.ReportColumnType_6], t8), A.getReportColumnType(column, context))) { t18 = textEditingControllers.$index(0, column); t19 = textEditingControllers.$index(0, column); t19 = t19 == null ? _null : t19._change_notifier$_value.text; t19 = (t19 == null ? "" : t19).length === 0 ? _null : B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_57704_MaterialIcons_null_false, _null, C.MaterialColor_Map_HFpTk_4288585374, _null), 24, new A.ReportResult_tableFilters_closure2(textEditingControllers, column, onFilterChanged), C.EdgeInsets_8_8_8_8, _null, _null); t2.push(new S.DataCell(E.TextFormField$(true, _null, false, _null, t18, new L.InputDecoration(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, false, _null, _null, _null, _null, _null, t19, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null), _null, false, _null, _null, _null, _null, new N.TextInputType(2, false, true), 1, _null, false, _null, _null, _null, _null, false, _null, C.TextAlign_4, _null, _null), _null)); } else if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.ReportColumnType_2, C.ReportColumnType_1], t8), A.getReportColumnType(column, context))) { t18 = textEditingControllers.$index(0, column)._change_notifier$_value.text; t18 = (t18 == null ? "" : t18).length !== 0 && textEditingControllers.$index(0, column)._change_notifier$_value.text !== "null" ? F._$valueOf0(textEditingControllers.$index(0, column)._change_notifier$_value.text) : _null; t19 = $.$get$_$values()._set$_set.map$1$1(0, new A.ReportResult_tableFilters_closure3(t1), t9); t2.push(new S.DataCell(new Q.AppDropdownButton(_null, t18, new A.ReportResult_tableFilters_closure4(textEditingControllers, column, onFilterChanged), P.List_List$of(t19, true, H._instanceType(t19)._eval$1("Iterable.E")), true, true, _null, _null, t10), _null)); } else { t18 = t7 ? textEditingControllers.$index(0, column) : _null; if (t6) t19 = _null; else { t19 = textEditingControllers.$index(0, column); t19 = t19 == null ? _null : t19._change_notifier$_value.text; t19 = (t19 == null ? "" : t19).length === 0 ? _null : B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_57704_MaterialIcons_null_false, _null, C.MaterialColor_Map_HFpTk_4288585374, _null), 24, new A.ReportResult_tableFilters_closure5(textEditingControllers, column, onFilterChanged), C.EdgeInsets_8_8_8_8, _null, _null); } t2.push(new S.DataCell(L.TypeAheadFormField$(1, true, new P.Duration(0), _null, new A.ReportResult_tableFilters_closure6(textEditingControllers, column, onFilterChanged), _null, new A.ReportResult_tableFilters_closure7(), new A.ReportResult_tableFilters_closure8(textEditingControllers, column, onFilterChanged), new L.SuggestionsBoxDecoration(new S.BoxConstraints(300, 1 / 0, 0, 1 / 0)), new A.ReportResult_tableFilters_closure9(this, column, context), new L.TextFieldConfiguration(new L.InputDecoration(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, false, _null, _null, _null, _null, _null, t19, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null), t18, _null, _null, C.TextAlign_4, _null, true, C.TextInputType_0_null_null, false, _null, true, 1, _null, _null, true, false, _null, _null, _null, _null, 2, _null, _null, _null, C.EdgeInsets_20_20_20_20, C.TextCapitalization_3, _null, true), t5), _null)); } } return S.DataRow$(t2); }, tableRow$3: function(context, viewModel, index) { var row, cells, j, cell, groupTotals, group, values, t4, _i, column, columnType, t5, value, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), reportState = store.get$_store$_state().uiState.reportsUIState, groupBy = reportState.group, sorted = _this.sortedColumns$1(reportState), t1 = groupBy.length === 0 || reportState.get$isGroupByFiltered(), t2 = type$.JSArray_legacy_DataCell, t3 = index - 1; if (t1) { row = _this.data[t3]; cells = H.setRuntimeTypeInfo([], t2); for (t1 = _this.columns, j = 0; j < row.length; ++j) { cell = row[C.JSArray_methods.indexOf$1(t1, sorted[j])]; cells.push(new S.DataCell(cell.renderWidget$2(context, sorted[j]), new A.ReportResult_tableRow_closure(cell))); } return S.DataRow$(cells); } else { groupTotals = viewModel.groupTotals; group = groupTotals.rows[t3]; values = groupTotals.totals.$index(0, group); cells = H.setRuntimeTypeInfo([], t2); t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (t2 = _this.sortedColumns$1(reportState), t3 = t2.length, t4 = type$.JSArray_legacy_String, _i = 0; _i < t2.length; t2.length === t3 || (0, H.throwConcurrentModificationError)(t2), ++_i) { column = t2[_i]; columnType = A.getReportColumnType(column, context); if (J.$eq$(column, groupBy)) { if (group.length === 0) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "blank"); value = t5 == null ? "" : t5; } else if (columnType === C.ReportColumnType_1 || columnType === C.ReportColumnType_2) value = Y.formatDate(group, context, true, true, false); else if (columnType === C.ReportColumnType_5 || C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["status"], t4), column)) value = t1.lookup$1(group); else if (group === "null") { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "blank"); value = t5 == null ? "" : t5; } else value = group; value = J.$add$ansx(value, " (") + C.JSInt_methods.toString$0(J.floor$0$n(values.$index(0, "count"))) + ")"; } else if (columnType === C.ReportColumnType_3) value = Y.formatNumber(values.$index(0, column), context, _null, _null, C.FormatNumberType_0, true, _null, false); else if (columnType === C.ReportColumnType_5) value = Y.formatNumber(values.$index(0, column), context, _null, _null, C.FormatNumberType_2, true, _null, false); else value = columnType === C.ReportColumnType_6 ? Y.formatDuration(new P.Duration(1000000 * J.toInt$0$n(values.$index(0, column))), true) : ""; cells.push(new S.DataCell(new L.Text(value, _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.ReportResult_tableRow_closure0(group, column, groupBy, context, reportState, t1, store))); } return S.DataRow$(cells); } }, totalColumns$2: function(context, onSortCallback) { var company, sortedColumns, t3, t4, _i, column, _null = null, t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = this.columns; sortedColumns = H.setRuntimeTypeInfo(t2.slice(0), H._arrayInstanceType(t2)); C.JSArray_methods.sort$1(sortedColumns, new A.ReportResult_totalColumns_closure()); t2 = H.setRuntimeTypeInfo([new S.DataColumn(L.Text$(t1.get$currency(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, onSortCallback), new S.DataColumn(L.Text$(t1.get$count(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, onSortCallback)], type$.JSArray_legacy_DataColumn); for (t3 = sortedColumns.length, t4 = type$.JSArray_legacy_ReportColumnType, _i = 0; _i < sortedColumns.length; sortedColumns.length === t3 || (0, H.throwConcurrentModificationError)(sortedColumns), ++_i) { column = sortedColumns[_i]; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.ReportColumnType_3, C.ReportColumnType_5, C.ReportColumnType_6], t4), A.getReportColumnType(column, context))) t2.push(new S.DataColumn(new L.Text(company.getCustomFieldLabel$1(column).length === 0 ? t1.lookup$1(column) : company.getCustomFieldLabel$1(column), _null, _null, _null, _null, C.TextOverflow_2, _null, _null, _null, _null), true, onSortCallback)); } return t2; }, totalRows$1: function(context) { var reportSettings, totals, allColumns, t4, t5, i, row, countedRow, j, cell, column, t6, currencyId, _i, keys, allFields, _box_0 = {}, rows = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DataRow), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex; t3 = J.$index$asx(t1._list, t3).userCompany.settings; t1 = t3 == null ? null : t3.reportSettings; t2 = t2.reportsUIState.report; reportSettings = J.$index$asx(t1._map$_map, t2); if (reportSettings == null) reportSettings = A.ReportSettingsEntity_ReportSettingsEntity(null, null); t1 = type$.legacy_String; totals = P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.legacy_Map_of_legacy_String_and_legacy_double); t2 = type$.JSArray_legacy_String; allColumns = H.setRuntimeTypeInfo([], t2); for (t3 = this.data, t4 = this.columns, t5 = type$.legacy_double, i = 0; i < t3.length; ++i) { row = t3[i]; for (countedRow = false, j = 0; j < row.length; ++j) { cell = row[j]; column = t4[j]; t6 = cell instanceof A.ReportNumberValue; if (t6 || cell instanceof A.ReportAgeValue || cell instanceof A.ReportDurationValue) { if (!C.JSArray_methods.contains$1(allColumns, column)) allColumns.push(column); if (t6) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else if (cell instanceof A.ReportAgeValue) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else if (cell instanceof A.ReportDurationValue) { currencyId = cell.currencyId; if (currencyId == null) currencyId = ""; } else currencyId = ""; if (!totals.containsKey$1(0, currencyId)) totals.$indexSet(0, currencyId, P.LinkedHashMap_LinkedHashMap$_literal(["count", 0], t1, t5)); if (!countedRow) { t6 = totals.$index(0, currencyId); t6.$indexSet(0, "count", t6.$index(0, "count") + 1); countedRow = true; } if (!totals.$index(0, currencyId).containsKey$1(0, column)) totals.$index(0, currencyId).$indexSet(0, column, 0); t6 = totals.$index(0, currencyId); t6.$indexSet(0, column, t6.$index(0, column) + cell.get$doubleValue()); } } } for (t1 = totals.get$keys(totals), t1 = t1.get$iterator(t1); t1.moveNext$0();) { t3 = t1.get$current(t1); for (t4 = allColumns.length, _i = 0; _i < allColumns.length; allColumns.length === t4 || (0, H.throwConcurrentModificationError)(allColumns), ++_i) { column = allColumns[_i]; if (!totals.$index(0, t3).containsKey$1(0, column)) totals.$index(0, t3).$indexSet(0, column, 0); } } t1 = totals.get$keys(totals); t3 = H._instanceType(t1)._eval$1("WhereIterable"); keys = P.List_List$of(new H.WhereIterable(t1, new A.ReportResult_totalRows_closure(), t3), true, t3._eval$1("Iterable.E")); C.JSArray_methods.sort$1(keys, new A.ReportResult_totalRows_closure0(reportSettings, state, totals)); _box_0.allFields = H.setRuntimeTypeInfo([], t2); C.JSArray_methods.forEach$1(keys, new A.ReportResult_totalRows_closure1(_box_0, totals)); t1 = _box_0.allFields; t1 = P.LinkedHashSet_LinkedHashSet$from(t1, H._arrayInstanceType(t1)._precomputed1); allFields = P.List_List$of(t1, true, H._instanceType(t1)._eval$1("SetMixin.E")); C.JSArray_methods.sort$1(allFields, new A.ReportResult_totalRows_closure2()); _box_0.allFields = allFields; C.JSArray_methods.forEach$1(keys, new A.ReportResult_totalRows_closure3(_box_0, totals, store, context, rows)); return rows; } }; A.ReportResult_tableFilters_closure.prototype = { call$1: function(value) { var t4, t1 = this.textEditingControllers, t2 = this.column, t3 = this.onFilterChanged; if (value == null) { J.set$text$x(t1.$index(0, t2), ""); t3.call$2(t2, ""); } else { t4 = J.getInterceptor$(value); J.set$text$x(t1.$index(0, t2), t4.toString$0(value)); t3.call$2(t2, t4.toString$0(value)); } }, $signature: 8 }; A.ReportResult_tableFilters_closure0.prototype = { call$1: function(value) { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), value); this.onFilterChanged.call$2(t1, value); }, $signature: 8 }; A.ReportResult_tableFilters_closure1.prototype = { call$1: function(ageGroup) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(ageGroup), _null, _null, _null, _null, _null, _null, _null, _null, _null), ageGroup, type$.legacy_String); }, $signature: 36 }; A.ReportResult_tableFilters_closure2.prototype = { call$0: function() { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), ""); this.onFilterChanged.call$2(t1, ""); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.ReportResult_tableFilters_closure4.prototype = { call$1: function(value) { var t4, t1 = this.textEditingControllers, t2 = this.column, t3 = this.onFilterChanged; if (value == null) { J.set$text$x(t1.$index(0, t2), ""); t3.call$2(t2, ""); } else { t4 = J.getInterceptor$(value); J.set$text$x(t1.$index(0, t2), t4.toString$0(value)); t3.call$2(t2, t4.toString$0(value)); } }, $signature: 8 }; A.ReportResult_tableFilters_closure3.prototype = { call$1: function(dateRange) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(J.toString$0$(dateRange)), _null, _null, _null, _null, _null, _null, _null, _null, _null), dateRange, type$.legacy_DateRange); }, $signature: 459 }; A.ReportResult_tableFilters_closure7.prototype = { call$1: function(context) { return T.SizedBox$(null, null, null); }, $signature: 536 }; A.ReportResult_tableFilters_closure9.prototype = { call$1: function(filter) { var t2, t3, index, t4, t5, t6, t1 = {}; t1.filter = filter; t1.filter = filter.toLowerCase(); t2 = this.$this; t3 = this.column; index = C.JSArray_methods.indexOf$1(t2.columns, t3); t2 = t2.data; t4 = this.context; t5 = H._arrayInstanceType(t2); t6 = t5._eval$1("MappedIterable<1,String*>"); t6 = P.LinkedHashSet_LinkedHashSet$of(new H.MappedIterable(new H.WhereIterable(t2, new A.ReportResult_tableFilters__closure(t1, index, t4, t3), t5._eval$1("WhereIterable<1>")), new A.ReportResult_tableFilters__closure0(index, t4, t3), t6), t6._eval$1("Iterable.E")); return P.List_List$of(t6, true, H._instanceType(t6)._eval$1("SetMixin.E")); }, $signature: 535 }; A.ReportResult_tableFilters__closure.prototype = { call$1: function(row) { var _this = this, t1 = _this.index, t2 = J.getInterceptor$asx(row), t3 = _this.context, t4 = _this.column; return C.JSString_methods.contains$1(t2.$index(row, t1).renderText$2(t3, t4).toLowerCase(), _this._box_0.filter) && J.trim$0$s(t2.$index(row, t1).renderText$2(t3, t4)).length !== 0; }, $signature: 2456 }; A.ReportResult_tableFilters__closure0.prototype = { call$1: function(row) { return J.$index$asx(row, this.index).renderText$2(this.context, this.column); }, $signature: 2457 }; A.ReportResult_tableFilters_closure6.prototype = { call$2: function(context, value) { var _null = null, t1 = K.Theme_of(context).cardColor; return T.Listener$(C.HitTestBehavior_0, M.Container$(_null, new T.Padding(C.EdgeInsets_12_12_12_12, L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), C.Clip_0, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A.ReportResult_tableFilters__closure1(this.textEditingControllers, this.column, value, this.onFilterChanged), _null, _null, _null); }, $signature: 534 }; A.ReportResult_tableFilters__closure1.prototype = { call$1: function(_) { var _this = this, t1 = _this.column, t2 = _this.value; J.set$text$x(_this.textEditingControllers.$index(0, t1), t2); _this.onFilterChanged.call$2(t1, t2); }, $signature: 533 }; A.ReportResult_tableFilters_closure8.prototype = { call$1: function(value) { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), value); this.onFilterChanged.call$2(t1, value); }, $signature: 7 }; A.ReportResult_tableFilters_closure5.prototype = { call$0: function() { var t1 = this.column; J.set$text$x(this.textEditingControllers.$index(0, t1), ""); this.onFilterChanged.call$2(t1, ""); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.ReportResult_tableRow_closure.prototype = { call$0: function() { var t1 = this.cell; M.viewEntityById(false, t1.entityId, t1.entityType, null, false, true); }, $signature: 1 }; A.ReportResult_tableRow_closure0.prototype = { call$0: function() { var t2, t3, date, t4, customEndDate, filter, _this = this, _null = null, t1 = {}, customStartDate = _this.group; if (customStartDate.length === 0) return; t2 = _this.column; if (t2 === _this.groupBy) { t1.filter = customStartDate; t3 = _this.context; if (A.getReportColumnType(t2, t3) === C.ReportColumnType_1 || A.getReportColumnType(t2, t3) === C.ReportColumnType_2) { t3 = t1.filter = "custom"; date = P.DateTime_tryParse(customStartDate); t4 = _this.reportState.subgroup; if (t4 === "day") customEndDate = Y.convertDateTimeToSqlDate(date); else if (t4 === "month") customEndDate = Y.convertDateTimeToSqlDate(V.addMonths(date, 1).add$1(0, P.Duration$(-1, 0, 0, 0, 0, 0))); else { date.toString; t4 = H.Primitives_valueFromDecomposedDate(H.Primitives_getYear(date) + 1, H.Primitives_getMonth(date), H.Primitives_getDay(date), 0, 0, 0, 0, true); if (!H._isInt(t4)) H.throwExpression(H.argumentErrorValue(t4)); customEndDate = Y.convertDateTimeToSqlDate(new P.DateTime(t4, true).add$1(0, P.Duration$(-1, 0, 0, 0, 0, 0))); } } else { if (A.getReportColumnType(t2, t3) === C.ReportColumnType_4) { t3 = _this.localization; if (customStartDate === t3.get$yes()) filter = "true"; else filter = customStartDate === t3.get$no() ? "false" : ""; t1.filter = filter; t3 = filter; } else t3 = customStartDate; customStartDate = ""; customEndDate = ""; } t4 = _this.reportState; t2 = t4.filters.rebuild$1(new A.ReportResult_tableRow__closure(t1, t2)); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(t4.report, t2, _null, t3, _null, _null, _null, _null, customStartDate, customEndDate)); } }, $signature: 1 }; A.ReportResult_tableRow__closure.prototype = { call$1: function(b) { var t1 = type$.legacy_String; b.addAll$1(0, P.LinkedHashMap_LinkedHashMap$_literal([this.column, this._box_0.filter], t1, t1)); return b; }, $signature: 300 }; A.ReportResult_totalColumns_closure.prototype = { call$2: function(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 18 }; A.ReportResult_totalRows_closure.prototype = { call$1: function(element) { return element != null; }, $signature: 16 }; A.ReportResult_totalRows_closure0.prototype = { call$2: function(rowA, rowB) { var t3, t4, valueA, valueB, fields, sortColumn, _s5_ = "count", t1 = this.reportSettings, t2 = t1.sortTotalsIndex; if (t2 === 0) { t2 = this.state.staticState.currencyMap._map$_map; t3 = J.getInterceptor$asx(t2); t4 = t3.$index(t2, rowA); valueA = t4 == null ? null : t4.name; t2 = t3.$index(t2, rowB); valueB = t2 == null ? null : t2.name; } else { t3 = this.totals; if (t2 === 1) { valueA = t3.$index(0, rowA).$index(0, _s5_); valueB = t3.$index(0, rowB).$index(0, _s5_); } else { t4 = t3.$index(0, rowA); t4 = t4.get$keys(t4); fields = P.List_List$of(t4, true, H._instanceType(t4)._eval$1("Iterable.E")); C.JSArray_methods.remove$1(fields, _s5_); C.JSArray_methods.sort$1(fields, new A.ReportResult_totalRows__closure0()); sortColumn = fields[t2 - 2]; valueA = t3.$index(0, rowA).$index(0, sortColumn); valueB = t3.$index(0, rowB).$index(0, sortColumn); } } if (valueA == null || valueB == null) return 0; return t1.sortTotalsAscending ? J.compareTo$1$ns(valueA, valueB) : J.compareTo$1$ns(valueB, valueA); }, $signature: 18 }; A.ReportResult_totalRows__closure0.prototype = { call$2: function(str1, str2) { return J.compareTo$1$ns(str1, str2); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; A.ReportResult_totalRows_closure1.prototype = { call$1: function(currencyId) { var values = this.totals.$index(0, currencyId); C.JSArray_methods.addAll$1(this._box_0.allFields, values.get$keys(values)); }, $signature: 7 }; A.ReportResult_totalRows_closure2.prototype = { call$2: function(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 18 }; A.ReportResult_totalRows_closure3.prototype = { call$1: function(currencyId) { var cells, _this = this, _null = null, values = _this.totals.$index(0, currencyId), t1 = J.$index$asx(_this.store.get$_store$_state().staticState.currencyMap._map$_map, currencyId); t1 = t1 == null ? _null : t1.name; cells = H.setRuntimeTypeInfo([S.DataCell$(L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), S.DataCell$(L.Text$(C.JSInt_methods.toString$0(J.toInt$0$n(values.$index(0, "count"))), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], type$.JSArray_legacy_DataCell); C.JSArray_methods.forEach$1(_this._box_0.allFields, new A.ReportResult_totalRows__closure(values, _this.context, currencyId, cells)); _this.rows.push(S.DataRow$(cells)); }, $signature: 7 }; A.ReportResult_totalRows__closure.prototype = { call$1: function(field) { var value, _this = this, _null = null, t1 = _this.values, amount = t1.$index(0, field); if (field !== "count") { if (field === "age") value = Y.formatNumber(amount / t1.$index(0, "count"), _this.context, _null, _null, C.FormatNumberType_3, true, _null, false); else if (field === "duration") value = Y.formatDuration(P.Duration$(0, 0, 0, 0, 0, J.toInt$0$n(amount)), true); else { t1 = C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["quantity"], type$.JSArray_legacy_String), field) ? C.FormatNumberType_3 : C.FormatNumberType_0; value = Y.formatNumber(amount, _this.context, _null, _this.currencyId, t1, true, _null, false); } _this.cells.push(S.DataCell$(L.Text$(value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } }, $signature: 7 }; A.ReportElement.prototype = { get$stringValue: function(_) { return ""; }, renderWidget$2: function(context, column) { throw H.wrapException("Error: need to override renderWidget()"); }, renderText$2: function(context, column) { throw H.wrapException("Error: need to override sortString()"); } }; A.ReportStringValue.prototype = { get$stringValue: function(_) { return this.value; }, renderWidget$2: function(context, column) { var _null = null; return L.Text$(this.renderText$2(context, column), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { var t1; if (A.getReportColumnType(column, context) === C.ReportColumnType_1 || A.getReportColumnType(column, context) === C.ReportColumnType_2) return Y.formatDate(this.value, context, true, true, A.getReportColumnType(column, context) === C.ReportColumnType_1); else { t1 = this.value; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["status"], type$.JSArray_legacy_String), column)) return L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(t1); else return t1 == null ? "" : t1; } }, get$value: function(receiver) { return this.value; } }; A.ReportEntityTypeValue.prototype = { get$stringValue: function(_) { return H.S(this.value); }, renderWidget$2: function(context, column) { var _null = null; return L.Text$(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(H.S(this.value)), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { return L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).lookup$1(H.S(this.value)); }, get$value: function(receiver) { return this.value; } }; A.ReportAgeValue.prototype = { get$stringValue: function(_) { return H.S(this.value); }, get$doubleValue: function() { var t1 = this.value; t1.toString; return t1; }, renderWidget$2: function(context, column) { var _null = null; return L.Text$(H.S(this.value), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { return H.S(this.value); }, get$value: function(receiver) { return this.value; } }; A.ReportDurationValue.prototype = { get$stringValue: function(_) { return H.S(this.value); }, get$doubleValue: function() { var t1 = this.value; t1.toString; return t1; }, renderWidget$2: function(context, column) { var _null = null; return L.Text$(Y.formatDuration(P.Duration$(0, 0, 0, 0, 0, this.value), true), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { return Y.formatDuration(P.Duration$(0, 0, 0, 0, 0, this.value), true); }, get$value: function(receiver) { return this.value; } }; A.ReportIntValue.prototype = { get$stringValue: function(_) { return H.S(this.value); }, renderWidget$2: function(context, column) { var _null = null, t1 = this.value; t1.toString; return L.Text$(Y.formatNumber(t1, context, _null, _null, C.FormatNumberType_2, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { var t1 = this.value; t1.toString; return Y.formatNumber(t1, context, null, null, C.FormatNumberType_2, true, null, false); }, get$value: function(receiver) { return this.value; } }; A.ReportNumberValue.prototype = { get$doubleValue: function() { return this.value; }, get$stringValue: function(_) { return H.S(this.value); }, renderWidget$2: function(context, column) { var _null = null; return L.Text$(this.renderText$2(context, column), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, renderText$2: function(context, column) { var _this = this, _null = null, t1 = _this.currencyId; if (t1 == null) return Y.formatNumber(_this.value, context, _null, _null, C.FormatNumberType_3, true, _null, false); return Y.formatNumber(_this.value, context, _null, t1, _this.formatNumberType, true, _null, false); }, get$value: function(receiver) { return this.value; } }; A.ReportBoolValue.prototype = { get$stringValue: function(_) { return H.S(this.value); }, renderWidget$2: function(context, column) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return T.SizedBox$(L.Text$(this.value === true ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, C.TextAlign_2, _null, _null), _null, 80); }, renderText$2: function(context, column) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return this.value === true ? t1.get$yes() : t1.get$no(); }, get$value: function(receiver) { return this.value; } }; L.ReportsScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.ReportsScreenBuilder_build_closure(), L.reports_screen_vm_ReportsScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ReportsScreenVM); } }; L.ReportsScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new A.ReportsScreen(vm, null); }, $signature: 2458 }; L.ReportsScreenVM.prototype = {}; L.ReportsScreenVM_fromStore_closure2.prototype = { call$2: function(column, ascending) { var _null = null, t1 = this.state.uiState.reportsUIState.report; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(t1, _null, _null, _null, _null, _null, column, _null, _null, _null)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2459 }; L.ReportsScreenVM_fromStore_closure3.prototype = { call$2: function(index, ascending) { var _null = null, t1 = this.state.uiState.reportsUIState.report; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(t1, _null, _null, _null, _null, _null, _null, index, _null, _null)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 377 }; L.ReportsScreenVM_fromStore_closure1.prototype = { call$2: function(context, filterMap) { P.Timer_Timer(P.Duration$(0, 0, 0, 100, 0, 0), new L.ReportsScreenVM_fromStore__closure0(this.store, this.report, filterMap)); }, $signature: 688 }; L.ReportsScreenVM_fromStore__closure0.prototype = { call$0: function() { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(this.report, this.filterMap, _null, "", _null, _null, _null, _null, _null, _null)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.ReportsScreenVM_fromStore_closure.prototype = { call$2: function(context, columns) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = t1.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), settings = t4.$index(t3, t2).userCompany.settings.rebuild$1(new L.ReportsScreenVM_fromStore__closure7(t1, this.reportSettings, columns)), userCompany = t4.$index(t3, t2).userCompany.rebuild$1(new L.ReportsScreenVM_fromStore__closure8(settings)), user = t4.$index(t3, t2).userCompany.user.rebuild$1(new L.ReportsScreenVM_fromStore__closure9(userCompany)), completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveUserSettingsRequest(completer, user)); }, $signature: 2461 }; L.ReportsScreenVM_fromStore__closure7.prototype = { call$1: function(b) { b.get$reportSettings().$indexSet(0, this.state.uiState.reportsUIState.report, this.reportSettings.rebuild$1(new L.ReportsScreenVM_fromStore___closure0(this.columns))); return b; }, $signature: 587 }; L.ReportsScreenVM_fromStore___closure0.prototype = { call$1: function(b) { b.get$columns(b).replace$1(0, D.BuiltList_BuiltList$from(this.columns, type$.legacy_String)); return b; }, $signature: 675 }; L.ReportsScreenVM_fromStore__closure8.prototype = { call$1: function(b) { var t1 = b.get$settings(), t2 = this.settings; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 90 }; L.ReportsScreenVM_fromStore__closure9.prototype = { call$1: function(b) { var t1 = b.get$userCompany(), t2 = this.userCompany; if (t2 == null) H.throwExpression(P.ArgumentError$notNull("other")); t1._company_model$_$v = t2; return b; }, $signature: 78 }; L.ReportsScreenVM_fromStore_closure4.prototype = { call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup: function(chart, customEndDate, customStartDate, group, report, selectedGroup, subgroup) { P.Timer_Timer(P.Duration$(0, 0, 0, 100, 0, 0), new L.ReportsScreenVM_fromStore__closure(this.state, group, this.store, report, chart, subgroup, selectedGroup, customStartDate, customEndDate)); }, call$0: function() { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, null, null, null); }, call$1$chart: function(chart) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(chart, null, null, null, null, null, null); }, call$1$subgroup: function(subgroup) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, null, null, subgroup); }, call$2$group$selectedGroup: function(group, selectedGroup) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, group, null, selectedGroup, null); }, call$1$customEndDate: function(customEndDate) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, customEndDate, null, null, null, null, null); }, call$1$customStartDate: function(customStartDate) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, customStartDate, null, null, null, null); }, call$1$report: function(report) { return this.call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(null, null, null, null, report, null, null); }, "call*": "call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup", $requiredArgCount: 0, $defaultValues: function() { return {chart: null, customEndDate: null, customStartDate: null, group: null, report: null, selectedGroup: null, subgroup: null}; }, $signature: 2462 }; L.ReportsScreenVM_fromStore__closure.prototype = { call$0: function() { var _this = this, _null = null, reportState = _this.state.uiState.reportsUIState, t1 = _this.group, t2 = t1 != null && reportState.group !== t1, t3 = _this.store, t4 = _this.report; if (t2) { t2 = t4 == null ? reportState.report : t4; t4 = type$.legacy_String; t4 = A.BuiltMap_BuiltMap(C.Map_empty0, t4, t4); J.$index$asx(t3.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(t2, t4, t1, "", _this.chart, _this.subgroup, _null, _null, "", "")); } else { t2 = t4 == null ? reportState.report : t4; J.$index$asx(t3.get$_dispatchers(), 0).call$1(new K.UpdateReportSettings(t2, _null, t1, _this.selectedGroup, _this.chart, _this.subgroup, _null, _null, _this.customStartDate, _this.customEndDate)); } }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.ReportsScreenVM_fromStore_closure0.prototype = { call$1: function(context) { return this.$call$body$ReportsScreenVM_fromStore_closure(context); }, $call$body$ReportsScreenVM_fromStore_closure: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t3, t4, t5, t6, columns, t1, t2, reportState; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = {}; t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); reportState = $async$self.state.uiState.reportsUIState; t1.csvData = ""; t3 = reportState.group; t4 = t3.length === 0 || reportState.get$isGroupByFiltered(); t5 = $async$self._box_1; t6 = t5.reportResult; if (t4) { C.JSArray_methods.forEach$1(t6.columns, new L.ReportsScreenVM_fromStore__closure1(t1, t2)); t2 = t1.csvData; t1.csvData = C.JSString_methods.substring$2(t2, 0, t2.length - 1); C.JSArray_methods.forEach$1(t5.reportResult.data, new L.ReportsScreenVM_fromStore__closure2(t1, t5, context)); } else { t4 = t6.columns; t5 = H._arrayInstanceType(t4)._eval$1("WhereIterable<1>"); columns = P.List_List$of(new H.WhereIterable(t4, new L.ReportsScreenVM_fromStore__closure3(context), t5), true, t5._eval$1("Iterable.E")); C.JSArray_methods.sort$1(columns, new L.ReportsScreenVM_fromStore__closure4()); t1.csvData = J.$add$ansx(t2.lookup$1(t3), ",") + t2.get$count(t2); C.JSArray_methods.forEach$1(columns, new L.ReportsScreenVM_fromStore__closure5(t1, t2)); t1.csvData += "\n"; t2 = $async$self.groupTotals; t3 = t2.rows; (t3 && C.JSArray_methods).forEach$1(t3, new L.ReportsScreenVM_fromStore__closure6(t1, t2, columns)); } H.S(Y.convertDateTimeToSqlDate(null)); P.print("## DATA: " + t1.csvData); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 17 }; L.ReportsScreenVM_fromStore__closure1.prototype = { call$1: function(column) { var value = this.localization.lookup$1(column), t1 = this._box_0; t1.csvData = t1.csvData + ('"' + H.S(value) + '",'); }, $signature: 7 }; L.ReportsScreenVM_fromStore__closure2.prototype = { call$1: function(row) { var t2, t3, t4, i, column, value, t1 = this._box_0; t1.csvData += "\n"; for (t2 = J.getInterceptor$asx(row), t3 = this._box_1, t4 = this.context, i = 0; i < t2.get$length(row); ++i) { column = t3.reportResult.columns[i]; value = J.trim$0$s(t2.$index(row, i).renderText$2(t4, column)); t1.csvData = t1.csvData + ('"' + value + '",'); } t2 = t1.csvData; t1.csvData = C.JSString_methods.substring$2(t2, 0, t2.length - 1); }, $signature: 2463 }; L.ReportsScreenVM_fromStore__closure3.prototype = { call$1: function(column) { return A.getReportColumnType(column, this.context) === C.ReportColumnType_3; }, $signature: 16 }; L.ReportsScreenVM_fromStore__closure4.prototype = { call$2: function(str1, str2) { return J.compareTo$1$ns(str1, str2); }, $signature: 18 }; L.ReportsScreenVM_fromStore__closure5.prototype = { call$1: function(column) { var t1 = this._box_0; t1.csvData = t1.csvData + C.JSString_methods.$add(",", this.localization.lookup$1(column)); }, $signature: 7 }; L.ReportsScreenVM_fromStore__closure6.prototype = { call$1: function(group) { var row = this.groupTotals.totals.$index(0, group), t1 = this._box_0; t1.csvData = t1.csvData + (H.S(group) + "," + J.toInt$0$n(row.$index(0, "count"))); C.JSArray_methods.forEach$1(this.columns, new L.ReportsScreenVM_fromStore___closure(t1, row)); t1.csvData += "\n"; }, $signature: 7 }; L.ReportsScreenVM_fromStore___closure.prototype = { call$1: function(column) { var value = J.toString$0$(this.row.$index(0, column)), t1 = this._box_0, t2 = t1.csvData; t1.csvData = t2 + (C.JSString_methods.contains$1(value, " ") ? ',"' + value + '"' : "," + value); }, $signature: 7 }; L.GroupTotals.prototype = {}; L.memoizeedGroupTotals_closure.prototype = { call$5: function(reportResult, reportUIState, reportSettings, currencyMap, company) { return L.calculateReportTotals(company, currencyMap, reportResult, reportSettings, reportUIState); }, $signature: 2464 }; L.calculateReportTotals_closure.prototype = { call$2: function(rowA, rowB) { var t2, sort, _this = this, t1 = _this.totals, valuesA = t1.$index(0, rowA), valuesB = t1.$index(0, rowB); t1 = _this.index; t2 = _this.columns.length; if (t1 < t2) { sort = _this.sortedColumns[t1]; if (t1 === 0) return _this.reportSettings.sortAscending ? J.compareTo$1$ns(rowA, rowB) : J.compareTo$1$ns(rowB, rowA); else if (valuesA.containsKey$1(0, sort) && valuesB.containsKey$1(0, sort)) return _this.reportSettings.sortAscending ? J.compareTo$1$ns(valuesA.$index(0, sort), valuesB.$index(0, sort)) : J.compareTo$1$ns(valuesB.$index(0, sort), valuesA.$index(0, sort)); } return 0; }, $signature: 18 }; E.TaskReportFields.prototype = { toString$0: function(_) { return this._task_report$_name; } }; E.memoizedTaskReport_closure.prototype = { call$10: function(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState) { return E.taskReport(userCompany, reportsUIState, taskMap, invoiceMap, groupMap, clientMap, taskStatusMap, userMap, projectMap, staticState); }, $signature: 2465 }; E.taskReport_closure.prototype = { call$1: function(e) { return N.EnumUtils_fromString(C.List_7BT, e, type$.legacy_TaskReportFields); }, $signature: 2466 }; E.taskReport_closure0.prototype = { call$1: function(element) { return element != null; }, $signature: 2467 }; E.taskReport_closure1.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 444 }; E.taskReport_closure2.prototype = { call$2: function(rowA, rowB) { return A.sortReportTableRows(rowA, rowB, this.taskReportSettings, this.selectedColumns); }, $signature: 84 }; E.taskReport_closure3.prototype = { call$1: function(e) { return N.EnumUtils_parse(e); }, $signature: 444 }; E.taskReport_closure4.prototype = { call$1: function(item) { return N.EnumUtils_parse(item); }, $signature: 444 }; O.AccountManagement.prototype = { createState$0: function() { return new O._AccountManagementState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; O._AccountManagementState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this._account_management$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(_this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 4, _this); _this._account_management$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_onTabChanged()), false); }, _onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._account_management$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, didChangeDependencies$0: function() { var _this = this, t1 = _this._trackingIdController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._account_management$_controllers = t2; C.JSArray_methods.forEach$1(t2, new O._AccountManagementState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.company.googleAnalyticsKey); C.JSArray_methods.forEach$1(_this._account_management$_controllers, new O._AccountManagementState_didChangeDependencies_closure0(_this)); _this.super$__AccountManagementState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _account_management$_onChanged$0: function() { var _this = this, company = _this._widget.viewModel.company.rebuild$1(new O._AccountManagementState__onChanged_closure(_this)); if (!J.$eq$(company, _this._widget.viewModel.company)) _this._account_management$_debouncer.run$1(new O._AccountManagementState__onChanged_closure0(_this, company)); }, dispose$0: function(_) { var _this = this; C.JSArray_methods.forEach$1(_this._account_management$_controllers, new O._AccountManagementState_dispose_closure(_this)); _this._account_management$_focusNode.dispose$0(0); _this._account_management$_controller.removeListener$1(0, _this.get$_onTabChanged()); _this._account_management$_controller.dispose$0(0); _this.super$__AccountManagementState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _this = this, _null = null, _s6_ = ":count", _s28_ = "google_analytics_tracking_id", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DropdownMenuItem_legacy_int), t3 = type$.legacy_int; t2.push(K.DropdownMenuItem$(L.Text$("2 minutes", _null, _null, _null, _null, _null, _null, _null, _null, _null), 120000, t3)); t4 = t1.localeCode; t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "count_minutes"); t2.push(K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t5 == null ? "" : t5, _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1800000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countHours(), _s6_, "2"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 7200000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countHours(), _s6_, "8"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 28800000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(t1.get$countDay(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 86400000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "7"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 604800000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 2592000000, t3)); t2.push(K.DropdownMenuItem$(L.Text$(t1.get$never(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 0, t3)); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "account_management"); if (t3 == null) t3 = ""; t5 = viewModel.onSavePressed; t6 = state.uiState.settingsUIState.updatedAt; t7 = _this._account_management$_controller; t8 = E.Tab$(_null, t1.get$overview()); t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "enabled_modules"); t9 = E.Tab$(_null, t9 == null ? "" : t9); t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "integrations"); t10 = E.Tab$(_null, t10 == null ? "" : t10); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "security_settings"); t12 = type$.JSArray_legacy_Widget; t11 = E.TabBar$(t7, _null, true, new D.ValueKey(t6, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([t8, t9, t10, E.Tab$(_null, t11 == null ? "" : t11)], t12)); t10 = $.$get$_AccountManagementState__formKey(); t9 = _this._account_management$_focusNode; t8 = _this._account_management$_controller; t1 = H.setRuntimeTypeInfo([Y.FormCard$(_null, J.map$1$1$ax(C.Map_yXX0S.get$keys(C.Map_yXX0S), new O._AccountManagementState_build_closure(t1, company, context, viewModel), type$.legacy_CheckboxListTile).toList$0(0), _null, 4, false, _null, false, _null)], t12); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), _s28_); if (t6 == null) t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s28_); t6 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([new B.LearnMoreUrl(S.DecoratedFormField$(false, _null, false, false, _this._trackingIdController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t6, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), "https://support.google.com/analytics/answer/1037249?hl=en", _null, _null)], t12), _null, 4, false, _null, false, _null)], t12); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "password_timeout"); if (t7 == null) t7 = ""; t13 = company.passwordTimeout; t14 = type$.AppDropdownButton_legacy_int; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "web_session_timeout"); if (t15 == null) t15 = ""; t16 = company.sessionTimeout; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "require_password_with_social_login"); if (t4 == null) t4 = ""; return K.EditScaffold$(_null, t11, new X.AppTabForm(t9, t10, H.setRuntimeTypeInfo([new O._AccountOverview(viewModel, _null), new X.ScrollableListView(t1, _null, _null, false, _null), new X.ScrollableListView(t6, _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t7, t13, new O._AccountManagementState_build_closure0(viewModel, company), t2, _null, true, "", _null, t14), new Q.AppDropdownButton(t15, t16, new O._AccountManagementState_build_closure1(viewModel, company), t2, _null, true, "", _null, t14), K.BoolDropdownButton$(_null, _null, _null, _null, t4, _null, new O._AccountManagementState_build_closure2(viewModel, company), _null, company.oauthPasswordRequired)], t12), _null, 4, false, _null, false, _null)], t12), _null, _null, false, _null)], t12), t8, _null, _null), _null, _null, _null, false, _null, _null, t5, _null, t3); } }; O._AccountManagementState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_account_management$_onChanged()); }, $signature: 10 }; O._AccountManagementState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_account_management$_onChanged()); }, $signature: 10 }; O._AccountManagementState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._trackingIdController._change_notifier$_value.text); b.get$_company_model$_$this()._googleAnalyticsKey = t1; return b; }, $signature: 22 }; O._AccountManagementState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onCompanyChanged.call$1(this.company); }, $signature: 1 }; O._AccountManagementState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_account_management$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; O._AccountManagementState_build_closure.prototype = { call$1: function(module) { var _this = this, _null = null, t1 = L.Text$(_this.localization.lookup$1(C.Map_yXX0S.$index(0, module)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t2 = _this.company, t3 = t2.enabledModules; return D.CheckboxListTile$(K.Theme_of(_this.context).accentColor, _null, C.ListTileControlAffinity_0, _null, _null, new O._AccountManagementState_build__closure2(t2, module, _this.viewModel), t1, (t3 & module) >>> 0 !== 0); }, $signature: 2469 }; O._AccountManagementState_build__closure2.prototype = { call$1: function(value) { var t1 = {}, t2 = this.company, enabledModules = t1.enabledModules = t2.enabledModules, t3 = this.module; if (value) t1.enabledModules = (enabledModules | t3) >>> 0; else t1.enabledModules = (enabledModules ^ t3) >>> 0; this.viewModel.onCompanyChanged.call$1(t2.rebuild$1(new O._AccountManagementState_build___closure(t1))); }, $signature: 20 }; O._AccountManagementState_build___closure.prototype = { call$1: function(b) { var t1 = this._box_0.enabledModules; b.get$_company_model$_$this()._enabledModules = t1; return b; }, $signature: 22 }; O._AccountManagementState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountManagementState_build__closure1(value))); }, $signature: 10 }; O._AccountManagementState_build__closure1.prototype = { call$1: function(b) { b.get$_company_model$_$this()._passwordTimeout = this.value; return b; }, $signature: 22 }; O._AccountManagementState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountManagementState_build__closure0(value))); }, $signature: 10 }; O._AccountManagementState_build__closure0.prototype = { call$1: function(b) { b.get$_company_model$_$this()._sessionTimeout = this.value; return b; }, $signature: 22 }; O._AccountManagementState_build_closure2.prototype = { call$1: function(value) { this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountManagementState_build__closure(value))); }, $signature: 20 }; O._AccountManagementState_build__closure.prototype = { call$1: function(b) { return b.get$_company_model$_$this()._oauthPasswordRequired = this.value; }, $signature: 2470 }; O._AccountOverview.prototype = { build$1: function(_, context) { var t5, account, company, companies, t6, t7, clientLimit, secondLabel, secondValue, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, _s2_ = "en", _s10_ = "free_trial", _s15_ = "free_trial_help", _s19_ = "set_default_company", _s11_ = "change_plan", _s15_0 = "enable_markdown", _s20_ = "enable_markdown_help", _s14_ = "include_drafts", _s19_0 = "include_drafts_help", store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, state = t2.state, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t3 = t3._list; t5 = J.getInterceptor$asx(t3); account = t5.$index(t3, t4).userCompany.account; company = t2.company; companies = state.get$companies(); t2 = new O._AccountOverview_build__getDataStats(_this, context); t6 = state.authState; t7 = t6.get$isHosted(); if (t7) t7 = account.plan.length === 0 || account.trialPlan.length !== 0; else t7 = false; if (t7) { clientLimit = company.companyKey.length === 32 ? 100 : 50; secondLabel = t1.get$clients(t1); secondValue = H.S(J.get$length$asx(t5.$index(t3, t4).clientState.list._list)) + " / " + clientLimit; } else { t7 = account.planExpires; if (t7.length !== 0) { t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "expires_on"); secondLabel = t8 == null ? "" : t8; secondValue = Y.formatDate(t7, context, true, true, false); } else { secondLabel = _null; secondValue = secondLabel; } } t7 = t1.localeCode; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "plan"); if (t8 == null) t8 = ""; t9 = account.plan; if (t9.length === 0) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "free"); if (t9 == null) t9 = ""; } else if (account.trialPlan.length !== 0) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "pro"); t9 = H.S(t9 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), "pro") : t9) + " \u2022 "; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s10_); t9 += H.S(t10 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s10_) : t10); } else t9 = t1.lookup$1(t9); if (account.trialPlan.length !== 0) { t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s15_); if (t10 == null) t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s15_); } else t10 = _null; t11 = type$.JSArray_legacy_Widget; t10 = H.setRuntimeTypeInfo([new R.AppHeader(t8, t9, secondLabel, secondValue, t10, _null)], t11); if (t5.$index(t3, t4).userCompany.company.id !== t5.$index(t3, t4).userCompany.account.defaultCompanyId) { t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s19_); if (t8 == null) t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s19_); t10.push(new T.Padding(C.EdgeInsets_16_0_16_8, new D.AppButton(_null, C.IconData_57627_MaterialIcons_null_false, t8.toUpperCase(), new O._AccountOverview_build_closure(_this, context), _null, _null), _null)); } if (t5.$index(t3, t4).userCompany.ninjaPortalUrl.length !== 0) if (!D.isApple()) t8 = t6.get$isHosted(); else t8 = false; else t8 = false; if (t8) { t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s11_); if (t8 == null) t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s11_); t10.push(new T.Padding(C.EdgeInsets_16_16_16_0, B.OutlinedButton$(new T.Padding(C.EdgeInsets_8_8_8_8, new U.IconText(t8.toUpperCase(), C._MdiIconData_ujl, _null, _null, _null), _null), new O._AccountOverview_build_closure0(state)), _null)); } t8 = company.isDisabled; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "activate_company"); t9 = L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "activate_company_help"); t12 = L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new O._AccountOverview_build_closure1(_this, company), _null, t12, t9, !t8); t9 = company.markdownEnabled; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s15_0); t12 = L.Text$(t12 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s15_0) : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s20_); t13 = L.Text$(t13 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s20_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new O._AccountOverview_build_closure2(_this, company), _null, t13, t12, t9); t12 = company.reportIncludeDrafts; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s14_); t13 = L.Text$(t13 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s14_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s19_0); t14 = L.Text$(t14 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s19_0) : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([t8, t9, O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new O._AccountOverview_build_closure3(_this, company), _null, t14, t13, t12)], t11), _null, 4, false, _null, false, _null)); t8 = t6.get$isHosted(); if (!t8) { t8 = t1.get$purchaseLicense(); t9 = D.getLayout(context) === C.AppLayout_mobile ? _null : C.IconData_57714_MaterialIcons_null_false; t8 = T.Expanded$(new D.AppButton(_null, t9, t8.toUpperCase(), new O._AccountOverview_build_closure4(), _null, _null), 1); t9 = T.SizedBox$(_null, _null, 16); t12 = t1.get$applyLicense(); t13 = D.getLayout(context) === C.AppLayout_mobile ? _null : C.IconData_57713_MaterialIcons_null_false; C.JSArray_methods.addAll$1(t10, H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_16_16_16, T.Row$(H.setRuntimeTypeInfo([t8, t9, T.Expanded$(new D.AppButton(_null, t13, t12.toUpperCase(), new O._AccountOverview_build_closure5(_this, context, t1), _null, _null), 1)], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), new T.Padding(C.EdgeInsets_16_16_16_0, new G.ListDivider(_null), _null)], t11)); } if (Y.cleanApiUrl(t6.url) !== "https://invoicing.co" || t5.$index(t3, t4).userCompany.account.plan === "enterprise" || t5.$index(t3, t4).userCompany.account.plan === "pro" || t5.$index(t3, t4).userCompany.account.trialPlan.length !== 0) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "api_tokens"); if (t3 == null) t3 = ""; t4 = D.getLayout(context) === C.AppLayout_mobile ? _null : Q.getEntityIcon(C.EntityType_token); t3 = T.Expanded$(new D.AppButton(_null, t4, t3.toUpperCase(), new O._AccountOverview_build_closure6(store), _null, _null), 1); t4 = T.SizedBox$(_null, _null, 16); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "api_webhooks"); if (t5 == null) t5 = ""; t6 = D.getLayout(context) === C.AppLayout_mobile ? _null : Q.getEntityIcon(C.EntityType_webhook); t10.push(new T.Padding(C.EdgeInsets_16_16_16_16, T.Row$(H.setRuntimeTypeInfo([t3, t4, T.Expanded$(new D.AppButton(_null, t6, t5.toUpperCase(), new O._AccountOverview_build_closure7(store), _null, _null), 1)], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); } t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "api_docs"); if (t3 == null) t3 = ""; t4 = D.getLayout(context) === C.AppLayout_mobile ? _null : C._MdiIconData_uXI; t3 = T.Expanded$(new D.AppButton(_null, t4, t3.toUpperCase(), new O._AccountOverview_build_closure8(), _null, _null), 1); t4 = T.SizedBox$(_null, _null, 16); t5 = D.getLayout(context) === C.AppLayout_mobile ? _null : C._MdiIconData_Qa6; t10.push(new T.Padding(C.EdgeInsets_16_16_16_16, T.Row$(H.setRuntimeTypeInfo([t3, t4, T.Expanded$(new D.AppButton(_null, t5, "Zapier", new O._AccountOverview_build_closure9(), _null, _null), 1)], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); t10.push(new T.Padding(C.EdgeInsets_16_16_16_0, new G.ListDivider(_null), _null)); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "purge_data"); t3 = t5 == null ? "" : t5; t4 = D.getLayout(context) === C.AppLayout_mobile ? _null : C.IconData_57785_MaterialIcons_null_false; t3 = T.Expanded$(new D.AppButton(C.MaterialColor_Map_JNc9P_4294198070, t4, t3.toUpperCase(), new O._AccountOverview_build_closure10(_this, context, t1, t2), _null, _null), 1); t4 = T.SizedBox$(_null, _null, 16); if (companies.length === 1) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "cancel_account"); if (t5 == null) t5 = ""; t5 = t5.toUpperCase(); } else { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "delete_company"); if (t5 == null) t5 = ""; t5 = t5.toUpperCase(); } t6 = D.getLayout(context) === C.AppLayout_mobile ? _null : C.IconData_57785_MaterialIcons_null_false; t10.push(new T.Padding(C.EdgeInsets_16_16_16_16, T.Row$(H.setRuntimeTypeInfo([t3, t4, T.Expanded$(new D.AppButton(C.MaterialColor_Map_JNc9P_4294198070, t6, t5, new O._AccountOverview_build_closure11(_this, companies, t1, company, t2, context), _null, _null), 1)], t11), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); return new X.ScrollableListView(t10, _null, _null, false, _null); } }; O._AccountOverview_build__getDataStats.prototype = { call$0: function() { var t4, count, t5, stats, t1 = L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = this.$this.viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); if (J.get$isNotEmpty$asx(t4.$index(t2, t3).clientState.list._list)) { count = J.get$length$asx(t4.$index(t2, t3).clientState.list._list); t5 = "\n- " + H.S(count) + " "; stats = "\n" + (t5 + (count === 1 ? t1.get$client(t1) : t1.get$clients(t1))); } else stats = "\n"; if (J.get$isNotEmpty$asx(t4.$index(t2, t3).productState.list._list)) { count = J.get$length$asx(t4.$index(t2, t3).productState.list._list); t5 = "\n- " + H.S(count) + " "; stats += t5 + (count === 1 ? t1.get$product(t1) : t1.get$products()); } if (J.get$isNotEmpty$asx(t4.$index(t2, t3).invoiceState.list._list) && !t4.$index(t2, t3).userCompany.company.isLarge) { count = J.get$length$asx(t4.$index(t2, t3).invoiceState.list._list); t2 = "\n- " + H.S(count) + " "; stats += t2 + (count === 1 ? t1.get$invoice() : t1.get$invoices()); } return stats; }, $signature: 150 }; O._AccountOverview_build_closure.prototype = { call$0: function() { return this.$this.viewModel.onSetPrimaryCompany.call$1(this.context); }, $signature: 9 }; O._AccountOverview_build_closure0.prototype = { call$0: function() { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return T.launch(J.$index$asx(t1.userCompanyStates._list, t2).userCompany.ninjaPortalUrl, null, false); }, $signature: 30 }; O._AccountOverview_build_closure1.prototype = { call$1: function(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountOverview_build__closure4(value))); }, $signature: 20 }; O._AccountOverview_build__closure4.prototype = { call$1: function(b) { b.get$_company_model$_$this()._isDisabled = !this.value; return b; }, $signature: 22 }; O._AccountOverview_build_closure2.prototype = { call$1: function(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountOverview_build__closure3(value))); }, $signature: 20 }; O._AccountOverview_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._markdownEnabled = this.value; return b; }, $signature: 22 }; O._AccountOverview_build_closure3.prototype = { call$1: function(value) { this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new O._AccountOverview_build__closure2(value))); }, $signature: 20 }; O._AccountOverview_build__closure2.prototype = { call$1: function(b) { b.get$_company_model$_$this()._reportIncludeDrafts = this.value; return b; }, $signature: 22 }; O._AccountOverview_build_closure4.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null); var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(T.canLaunch(string$.https_a_), $async$call$0); case 2: // returning from await. if ($async$result) T.launch(string$.https_a_, null, false); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; O._AccountOverview_build_closure5.prototype = { call$0: function() { var t1 = this.context, t2 = this.localization, t3 = t2.get$applyLicense(); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "license"); if (t2 == null) t2 = ""; O.fieldCallback(new O._AccountOverview_build__closure1(this.$this, t1), t1, t2, 24, null, t3); }, $signature: 1 }; O._AccountOverview_build__closure1.prototype = { call$1: function(value) { var t1 = this.$this, state = t1.viewModel.state, credentials = state.get$credentials(state), url = credentials.url + "/claim_license?license_key=" + H.S(value), t2 = this.context; E.showDialog(false, new O._AccountOverview_build___closure1(), t2, null, true, type$.legacy_AlertDialog); new F.WebClient().post$2(url, credentials.token).then$1$1(0, new O._AccountOverview_build___closure2(t1, t2), type$.Null).catchError$1(new O._AccountOverview_build___closure3(t2)); }, $signature: 7 }; O._AccountOverview_build___closure1.prototype = { call$1: function(context) { return E.SimpleDialog$(H.setRuntimeTypeInfo([new F.LoadingDialog(null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; O._AccountOverview_build___closure2.prototype = { call$1: function(response) { var t1 = this.context; if (K.Navigator_of(t1, false).canPop$0()) K.Navigator_of(t1, false).pop$0(0); this.$this.viewModel.onAppliedLicense.call$0(); }, $signature: 8 }; O._AccountOverview_build___closure3.prototype = { call$1: function(error) { var t1 = this.context; if (K.Navigator_of(t1, false).canPop$0()) K.Navigator_of(t1, false).pop$0(0); O.showErrorDialog(false, t1, H.S(error)); }, $signature: 8 }; O._AccountOverview_build_closure6.prototype = { call$0: function() { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "tokens", false, _null)); }, $signature: 1 }; O._AccountOverview_build_closure7.prototype = { call$0: function() { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "webhook", false, _null)); }, $signature: 1 }; O._AccountOverview_build_closure8.prototype = { call$0: function() { return T.launch("https://app.swaggerhub.com/apis/invoiceninja/invoiceninja", null, false); }, $signature: 30 }; O._AccountOverview_build_closure9.prototype = { call$0: function() { return T.launch("https://zapier.com/developer/public-invite/95884/5e4368b9efb9d377dc0a0b0465b7c1a7/", null, false); }, $signature: 30 }; O._AccountOverview_build_closure10.prototype = { call$0: function() { var _this = this, t1 = _this.context, t2 = _this.localization.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "purge_data_message"); if (t3 == null) t3 = ""; t3 = C.JSString_methods.$add(t3, _this._getDataStats.call$0()); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "purge"); if (t2 == null) t2 = ""; O.confirmCallback(false, new O._AccountOverview_build__closure0(_this.$this, t1), t1, t3, false, t2.toLowerCase()); }, $signature: 1 }; O._AccountOverview_build__closure0.prototype = { call$1: function(_) { var t1 = this.context; O.passwordCallback(true, new O._AccountOverview_build___closure0(this.$this, t1), t1); }, $signature: 7 }; O._AccountOverview_build___closure0.prototype = { call$2: function(password, idToken) { this.$this.viewModel.onPurgeData.call$3(this.context, password, idToken); }, $signature: 51 }; O._AccountOverview_build_closure11.prototype = { call$0: function() { var message, t3, _this = this, t1 = _this.localization, t2 = t1.localeCode; if (_this.companies.length === 1) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "cancel_account_message"); message = t2 == null ? "" : t2; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "delete_company_message"); message = t2 == null ? "" : t2; } t2 = _this.company.settings.name; t3 = t2 == null; if ((t3 ? "" : t2).length === 0) t2 = t1.get$newCompany(); else if (t3) t2 = ""; t3 = _this.context; O.confirmCallback(true, new O._AccountOverview_build__closure(_this.$this, t3), t3, C.JSString_methods.$add(C.JSString_methods.replaceFirst$2(message, ":company", t2), _this._getDataStats.call$0()), false, t1.get$$delete(t1).toLowerCase()); }, $signature: 1 }; O._AccountOverview_build__closure.prototype = { call$1: function(reason) { var t1 = this.context; O.passwordCallback(true, new O._AccountOverview_build___closure(this.$this, t1, reason), t1); }, $signature: 7 }; O._AccountOverview_build___closure.prototype = { call$2: function(password, idToken) { this.$this.viewModel.onCompanyDelete.call$4(this.context, password, idToken, this.reason); }, $signature: 51 }; O.__AccountManagementState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.AccountManagementScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.AccountManagementScreen_build_closure(), A.account_management_vm_AccountManagementVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_AccountManagementVM); } }; A.AccountManagementScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new O.AccountManagement(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2471 }; A.AccountManagementVM.prototype = { get$company: function() { return this.company; } }; A.AccountManagementVM_fromStore_closure1.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; A.AccountManagementVM_fromStore_closure2.prototype = { call$4: function(context, password, idToken, reason) { var companyLength, t1, t2; E.showDialog(false, new A.AccountManagementVM_fromStore__closure(), context, null, true, type$.legacy_AlertDialog); companyLength = this.state.get$companies().length; t1 = new P._Future($.Zone__current, type$._Future_Null); t2 = this.store; t1.then$1$1(0, new A.AccountManagementVM_fromStore__closure0(t2, companyLength), type$.Null).catchError$1(new A.AccountManagementVM_fromStore__closure1()); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new E.DeleteCompanyRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_Null), password, reason)); }, $signature: 585 }; A.AccountManagementVM_fromStore__closure.prototype = { call$1: function(context) { return E.SimpleDialog$(H.setRuntimeTypeInfo([new F.LoadingDialog(null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; A.AccountManagementVM_fromStore__closure0.prototype = { call$1: function(value) { var context, state, t2, index, t1 = $.$get$navigatorKey(); t1.toString; context = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1); t1 = this.store; state = t1.get$_store$_state(); if (this.companyLength === 1) { J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLogout()); t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; if (J.$index$asx(t1._list, t2).userCompany.user.oauthProvider === "google") B.GoogleOAuth_disconnect(); } else { index = state.uiState.selectedCompanyIndex === 0 ? 1 : 0; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SelectCompany(index, true)); t2 = new P._Future($.Zone__current, type$._Future_Null); t2.then$1$1(0, new A.AccountManagementVM_fromStore___closure0(t1, context), type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), true, false, false)); } }, $signature: 3 }; A.AccountManagementVM_fromStore___closure0.prototype = { call$1: function(value) { var t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SelectCompany(0, true)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); t1 = $.$get$navigatorKey(); t1.toString; $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); t1 = this.context; if (K.Navigator_of(t1, false).canPop$0()) K.Navigator_of(t1, false).pop$0(0); }, $signature: 3 }; A.AccountManagementVM_fromStore__closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; if (K.Navigator_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false).canPop$0()) K.Navigator_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false).pop$0(0); E.showDialog(true, new A.AccountManagementVM_fromStore___closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.AccountManagementVM_fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; A.AccountManagementVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.AccountManagementVM_fromStore__closure2(this.store, context).call$0(); }, $signature: 14 }; A.AccountManagementVM_fromStore__closure2.prototype = { call$0: function() { var t1 = this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, t2 = this.context, completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; A.AccountManagementVM_fromStore_closure3.prototype = { call$3: function(context, password, idToken) { var completer, t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "purge_successful"); if (t1 == null) t1 = ""; completer = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.PurgeDataRequest(completer, password, idToken)); }, $signature: 2473 }; A.AccountManagementVM_fromStore_closure4.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 1 }; A.AccountManagementVM_fromStore_closure0.prototype = { call$1: function(context) { var completer, _s15_ = "updated_company", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), _s15_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s15_); completer = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SetDefaultCompanyRequest(completer)); }, $signature: 14 }; V.BuyNowButtons.prototype = { createState$0: function() { return new V._BuyNowButtonsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; V._BuyNowButtonsState.prototype = { dispose$0: function(_) { C.JSArray_methods.forEach$1(this._buy_now_buttons$_controllers, new V._BuyNowButtonsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = H.setRuntimeTypeInfo([_this._buy_now_buttons$_firstNameController], type$.JSArray_legacy_TextEditingController); _this._buy_now_buttons$_controllers = t1; C.JSArray_methods.forEach$1(t1, new V._BuyNowButtonsState_didChangeDependencies_closure(_this)); C.JSArray_methods.forEach$1(_this._buy_now_buttons$_controllers, new V._BuyNowButtonsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _buy_now_buttons$_onChanged$0: function() { }, build$1: function(_, context) { var t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = D.getLayout(context), t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "buy_now_buttons"); t3 = L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; t3 = E.AppBar$(H.setRuntimeTypeInfo([], t4), _null, t2 === C.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); t2 = $.$get$_BuyNowButtonsState__formKey(); return new F.WillPopScope(M.Scaffold$(t3, _null, A.Form$(false, new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, this._buy_now_buttons$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$firstName(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new V._BuyNowButtonsState_build_closure(t1))], t4), _null, 4, false, _null, false, _null)], t4), _null, _null, false, _null), t2), _null, _null, _null, _null, _null), new V._BuyNowButtonsState_build_closure0(), _null); } }; V._BuyNowButtonsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_buy_now_buttons$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; V._BuyNowButtonsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_buy_now_buttons$_onChanged()); }, $signature: 10 }; V._BuyNowButtonsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_buy_now_buttons$_onChanged()); }, $signature: 10 }; V._BuyNowButtonsState_build_closure0.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, "call*": "call$0", $requiredArgCount: 0, $signature: 30 }; V._BuyNowButtonsState_build_closure.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAFirstName() : null; }, $signature: 15 }; B.BuyNowButtonsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.BuyNowButtonsScreen_build_closure(), B.buy_now_buttons_vm_BuyNowButtonsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_BuyNowButtonsVM); } }; B.BuyNowButtonsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new V.BuyNowButtons(null); }, $signature: 2474 }; B.BuyNowButtonsVM.prototype = {}; S.ClientPortal.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new S._ClientPortalState(t1, new F.WebClient(), new O.Debouncer(1500, true), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; S._ClientPortalState.prototype = { initState$0: function() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = settingsUIState.entityType !== C.EntityType_company ? 4 : 5; t1 = U.TabController$(settingsUIState.tabIndex, t1, _this); _this._client_portal$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_client_portal$_onTabChanged()), false); }, _client_portal$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._client_portal$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, _validateSubdomain$0: function() { var _this = this; _this.setState$1(new S._ClientPortalState__validateSubdomain_closure(_this)); _this._client_portal$_debouncer.run$1(new S._ClientPortalState__validateSubdomain_closure0(_this)); }, dispose$0: function(_) { var _this = this; _this._client_portal$_controller.removeListener$1(0, _this.get$_client_portal$_onTabChanged()); _this._client_portal$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._client_portal$_controllers, new S._ClientPortalState_dispose_closure(_this)); _this.super$__ClientPortalState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var company, settings, _this = this, t1 = _this._subdomainController, t2 = _this._portalDomainController, t3 = _this._customCssController, t4 = _this._customJavaScriptController, t5 = _this._client_portal$_customMessageDashboard, t6 = _this._client_portal$_customMessageUnpaidInvoice, t7 = _this._client_portal$_customMessagePaidInvoice, t8 = _this._client_portal$_customMessageUnapprovedQuote, t9 = _this._termsController, t10 = _this._privacyController, t11 = _this._customHeaderController, t12 = _this._customFooterController, t13 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12], type$.JSArray_legacy_TextEditingController); _this._client_portal$_controllers = t13; C.JSArray_methods.forEach$1(t13, new S._ClientPortalState_didChangeDependencies_closure(_this)); t13 = _this._widget.viewModel; company = t13.company; settings = t13.settings; t2.set$text(0, company.portalDomain); t1.set$text(0, company.subdomain); t5.set$text(0, settings.customMessageDashboard); t7.set$text(0, settings.customMessagePaidInvoice); t6.set$text(0, settings.customMessageUnpaidInvoice); t8.set$text(0, settings.customMessageUnapprovedQuote); t10.set$text(0, settings.clientPortalPrivacy); t9.set$text(0, settings.clientPortalTerms); t11.set$text(0, settings.clientPortalCustomHeader); t12.set$text(0, settings.clientPortalCustomFooter); t3.set$text(0, settings.clientPortalCustomCss); t4.set$text(0, settings.clientPortalCustomJs); C.JSArray_methods.forEach$1(_this._client_portal$_controllers, new S._ClientPortalState_didChangeDependencies_closure0(_this)); _this.super$__ClientPortalState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _client_portal$_onChanged$0: function() { this._client_portal$_debouncer.run$1(new S._ClientPortalState__onChanged_closure(this)); }, _client_portal$_onSavePressed$1: function(context) { var _this = this, isValid = $.$get$_ClientPortalState__formKey().get$currentState().validate$0(); _this.setState$1(new S._ClientPortalState__onSavePressed_closure(_this, isValid)); if (!isValid || _this._isCheckingSubdomain) return; _this._widget.viewModel.onSavePressed.call$1(context); }, build$1: function(_, context) { var t5, url, t6, t7, portalUrl, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, _this = this, _null = null, _s20_ = "https://invoicing.co", _s12_ = "registration", _s25_ = "client_portal_domain_hint", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, settings = viewModel.settings, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); url = t5.$index(t2, t4).userCompany.account.defaultUrl + "/client/register"; if (state.get$companies().length > 1 && t5.$index(t2, t4).userCompany.company.id !== t5.$index(t2, t4).userCompany.account.defaultCompanyId) url += "/" + t5.$index(t2, t4).userCompany.company.companyKey; t6 = state.authState; t7 = t6.get$isHosted(); if (t7) url = C.JSString_methods.replaceFirst$2(url, "//", "//" + t5.$index(t2, t4).userCompany.company.subdomain + "."); portalUrl = C.JSString_methods.replaceFirst$2(_s20_, "//", "//" + t5.$index(t2, t4).userCompany.company.subdomain + "."); t7 = t1.get$clientPortal(); t3 = t3.settingsUIState; t8 = t3.updatedAt; t9 = _this._client_portal$_controller; t10 = type$.JSArray_legacy_Widget; t11 = H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$settings())], t10); t3 = t3.entityType === C.EntityType_company; if (t3) { t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s12_); t11.push(E.Tab$(_null, t12 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s12_) : t12)); } t12 = t1.localeCode; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "authorization"); t11.push(E.Tab$(_null, t13 == null ? "" : t13)); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "messages"); t11.push(E.Tab$(_null, t13 == null ? "" : t13)); t11.push(E.Tab$(_null, t1.get$customize())); t8 = E.TabBar$(t9, _null, true, new D.ValueKey(t8, type$.ValueKey_legacy_int), _null, t11); t9 = _this._client_portal$_controller; t11 = $.$get$_ClientPortalState__formKey(); t13 = H.setRuntimeTypeInfo([], t10); if (t3) { t14 = H.setRuntimeTypeInfo([], t10); t15 = t6.get$isHosted(); if (t15) { t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "portal_mode"); if (t15 == null) t15 = ""; t16 = company.portalMode; t17 = type$.legacy_String; t18 = K.DropdownMenuItem$(L.Text$(t1.get$subdomain(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "subdomain", t17); t19 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "domain"); t14.push(new Q.AppDropdownButton(t15, t16, new S._ClientPortalState_build_closure(viewModel), H.setRuntimeTypeInfo([t18, K.DropdownMenuItem$(L.Text$(t19 == null ? "" : t19, _null, _null, _null, _null, _null, _null, _null, _null, _null), "domain", t17)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, type$.AppDropdownButton_legacy_String)); } t15 = t6.get$isHosted(); if (t15 && company.portalMode === "subdomain") { t15 = t1.get$subdomain(); t16 = _this._client_portal$_autoValidate; t17 = t1.get$subdomainHelp(); if (_this._isCheckingSubdomain) t18 = C.IconData_62057_MaterialIcons_null_false; else t18 = _this._isSubdomainUnique ? C.IconData_57690_MaterialIcons_null_false : C.IconData_57912_MaterialIcons_null_false; t18 = L.Icon$(t18, _null, _null); C.JSArray_methods.addAll$1(t14, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, t16, _this._subdomainController, _null, true, _null, t17, _null, H.setRuntimeTypeInfo([new B.FilteringTextInputFormatter(P.RegExp_RegExp("[a-z0-9\\-]", true, false), true)], type$.JSArray_legacy_TextInputFormatter), false, false, _null, _null, t15, _null, _null, false, new S._ClientPortalState_build_closure0(_this), _null, _null, true, t18, _null, C.TextAlign_4, new S._ClientPortalState_build_closure1(_this, t1)), new T.Padding(C.EdgeInsets_0_16_0_0, L.Text$(portalUrl, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t10)); } else { t15 = t6.url; t16 = Y.cleanApiUrl(t15) !== _s20_ || t5.$index(t2, t4).userCompany.account.plan === "enterprise"; t17 = company.portalMode === "domain"; if (!t17) t18 = !t6.get$isHosted(); else t18 = true; if (t18) { t18 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "domain_url"); if (t18 == null) t18 = ""; } else { t18 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "iframe_url"); if (t18 == null) t18 = ""; } t19 = t6.get$isHosted(); if (!t19) { t19 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), _s25_); if (t19 == null) t19 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s25_); } else t19 = ""; t18 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._portalDomainController, _null, t16, _null, t19, _null, _null, false, false, _null, C.TextInputType_6_null_null, t18, _null, _null, false, _null, _null, viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new S._ClientPortalState_build_closure2(state, t1)), T.SizedBox$(_null, 16, _null)], t10); if (Y.cleanApiUrl(t15) !== _s20_ || t5.$index(t2, t4).userCompany.account.plan === "enterprise") { if (t17) t15 = t6.get$isHosted(); else t15 = false; if (t15) t18.push(B.OutlinedButton$(new T.Padding(C.EdgeInsets_8_8_8_8, new U.IconText(t1.get$viewDocs().toUpperCase(), C._MdiIconData_ujl, _null, _null, _null), _null), new S._ClientPortalState_build_closure3())); else t18.push(T.SizedBox$(_null, _null, _null)); } else t18.push(L.Text$(t1.get$requiresAnEnterprisePlan(), _null, _null, _null, _null, _null, _null, _null, _null, _null)); C.JSArray_methods.addAll$1(t14, t18); } t13.push(Y.FormCard$(_null, t14, C.CrossAxisAlignment_3, 4, false, _null, false, _null)); } t14 = K.BoolDropdownButton$(_null, _null, _null, C._MdiIconData_Qa6, t1.get$clientPortal(), _null, new S._ClientPortalState_build_closure4(viewModel, settings), _null, settings.enablePortal); t15 = t1.get$tasks(); t16 = settings.enablePortalTasks; t16 = K.BoolDropdownButton$(_null, _null, _null, Q.getEntityIcon(C.EntityType_task), t15, _null, new S._ClientPortalState_build_closure5(viewModel, settings), _null, t16); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "document_upload"); if (t15 == null) t15 = ""; t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "document_upload_help"); if (t17 == null) t17 = ""; t15 = H.setRuntimeTypeInfo([t14, t16, K.BoolDropdownButton$(_null, _null, t17, C._MdiIconData_EuK1, t15, _null, new S._ClientPortalState_build_closure6(viewModel, settings), _null, settings.enablePortalUploads)], t10); if (t3) { t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "storefront"); if (t14 == null) t14 = ""; t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "storefront_help"); if (t16 == null) t16 = ""; t15.push(K.BoolDropdownButton$(_null, _null, t16, C._MdiIconData_egL2, t14, _null, new S._ClientPortalState_build_closure7(viewModel, company), _null, company.enableShopApi)); } if (Y.cleanApiUrl(t6.url) !== "https://demo.invoiceninja.com") t6 = t5.$index(t2, t4).userCompany.company.enableShopApi; else t6 = false; if (t6) { t6 = T.SizedBox$(_null, 16, _null); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "company_key"); t14 = L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); C.JSArray_methods.addAll$1(t15, H.setRuntimeTypeInfo([t6, new G.ListDivider(_null), Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new S._ClientPortalState_build_closure8(company, t1), false, _null, _null, L.Text$(company.companyKey, _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t14, L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null))], t10)); } t13.push(Y.FormCard$(_null, t15, _null, 4, false, _null, false, _null)); t13.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._termsController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$termsOfService(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._privacyController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$privacyPolicy(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t10), C.CrossAxisAlignment_0, 4, false, _null, true, _null)); t6 = H.setRuntimeTypeInfo([new X.ScrollableListView(t13, _null, _null, false, _null)], t10); if (t3) { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "client_registration"); if (t3 == null) t3 = ""; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "client_registration_help"); if (t13 == null) t13 = ""; t3 = H.setRuntimeTypeInfo([K.BoolDropdownButton$(_null, _null, t13, C._MdiIconData_MO91, t3, _null, new S._ClientPortalState_build_closure9(viewModel, company), _null, company.clientCanRegister)], t10); t2 = t5.$index(t2, t4).userCompany.company.clientCanRegister; if (t2) { t2 = T.SizedBox$(_null, 16, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "registration_url"); t4 = L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([t2, new G.ListDivider(_null), Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new S._ClientPortalState_build_closure10(url, t1), false, _null, _null, L.Text$(url, _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t4, L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null)), new G.ListDivider(_null)], t10)); } t6.push(new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t3, _null, 4, false, _null, false, _null), Y.FormCard$(_null, J.map$1$1$ax(company.clientRegistrationFields._list, new S._ClientPortalState_build_closure11(context, t1, company, viewModel), type$.legacy_SwitchListTile).toList$0(0), _null, 4, false, _null, true, _null)], t10), _null, _null, false, _null)); } t2 = t1.get$enablePortalPassword(); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "enable_portal_password_help"); if (t3 == null) t3 = ""; t2 = Y.FormCard$(_null, H.setRuntimeTypeInfo([K.BoolDropdownButton$(_null, _null, t3, C._MdiIconData_Gjc, t2, _null, new S._ClientPortalState_build_closure12(viewModel, settings), _null, settings.enablePortalPassword)], t10), _null, 4, false, _null, false, _null); t3 = t1.get$showAcceptInvoiceTerms(); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "show_accept_invoice_terms_help"); if (t4 == null) t4 = ""; t3 = K.BoolDropdownButton$(_null, _null, t4, C._MdiIconData_EuK2, t3, _null, new S._ClientPortalState_build_closure13(viewModel, settings), _null, settings.showAcceptInvoiceTerms); t4 = t1.get$showAcceptQuoteTerms(); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "show_accept_quote_terms_help"); if (t5 == null) t5 = ""; t4 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t3, K.BoolDropdownButton$(_null, _null, t5, C._MdiIconData_EuK2, t4, _null, new S._ClientPortalState_build_closure14(viewModel, settings), _null, settings.showAcceptQuoteTerms)], t10), _null, 4, false, _null, false, _null); t5 = t1.get$requireInvoiceSignature(); t5 = K.BoolDropdownButton$(_null, _null, t1.get$requireInvoiceSignatureHelp(), C._MdiIconData_I2F0, t5, _null, new S._ClientPortalState_build_closure15(viewModel, settings), _null, settings.requireInvoiceSignature); t3 = t1.get$requireQuoteSignature(); t3 = K.BoolDropdownButton$(_null, _null, t1.get$requireInvoiceSignatureHelp(), C._MdiIconData_I2F0, t3, _null, new S._ClientPortalState_build_closure16(viewModel, settings), _null, settings.requireQuoteSignature); t13 = t1.get$signatureOnPdf(); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "signature_on_pdf_help"); if (t14 == null) t14 = ""; t15 = settings.signatureOnPdf; t6.push(new X.ScrollableListView(H.setRuntimeTypeInfo([t2, t4, Y.FormCard$(_null, H.setRuntimeTypeInfo([t5, t3, K.BoolDropdownButton$(_null, _null, t14, Q.getEntityIcon(C.EntityType_invoice), t13, _null, new S._ClientPortalState_build_closure17(viewModel, settings), _null, t15)], t10), _null, 4, false, _null, true, _null)], t10), _null, _null, false, _null)); t15 = S.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageDashboard, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$dashboard(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "unpaid_invoice"); t2 = t13 == null ? "" : t13; t2 = S.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageUnpaidInvoice, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "paid_invoice"); if (t3 == null) t3 = ""; t3 = S.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessagePaidInvoice, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "unapproved_quote"); if (t4 == null) t4 = ""; t6.push(new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t15, t2, t3, S.DecoratedFormField$(false, _null, false, false, _this._client_portal$_customMessageUnapprovedQuote, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t10), _null, 4, false, _null, true, _null)], t10), _null, _null, false, _null)); t4 = S.DecoratedFormField$(false, _null, false, false, _this._customHeaderController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$header(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t1 = S.DecoratedFormField$(false, _null, false, false, _this._customFooterController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$footer(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "custom_css"); t2 = t3 == null ? "" : t3; t2 = H.setRuntimeTypeInfo([t4, t1, S.DecoratedFormField$(false, _null, false, false, _this._customCssController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t10); t1 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state().authState.get$isHosted(); if (!t1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t12), "custom_javascript"); if (t1 == null) t1 = ""; t2.push(S.DecoratedFormField$(false, _null, false, false, _this._customJavaScriptController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); } t6.push(new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t2, _null, 4, false, _null, true, _null)], t10), _null, _null, false, _null)); return K.EditScaffold$(_null, t8, new X.AppTabForm(_this._client_portal$_focusNode, t11, t6, t9, _null, _null), _null, _null, _null, false, _null, _null, new S._ClientPortalState_build_closure18(_this), _null, t7); } }; S._ClientPortalState__validateSubdomain_closure.prototype = { call$0: function() { return this.$this._isSubdomainUnique = false; }, $signature: 19 }; S._ClientPortalState__validateSubdomain_closure0.prototype = { call$0: function() { var state, credentials, url, t3, t1 = this.$this, subdomain = J.trim$0$s(t1._subdomainController._change_notifier$_value.text), t2 = t1._framework$_element; t2.toString; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/check_subdomain"; if (subdomain.length === 0) return; t2 = state.userCompanyStates; t3 = state.uiState.selectedCompanyIndex; if (subdomain === J.$index$asx(t2._list, t3).userCompany.company.subdomain) { t1.setState$1(new S._ClientPortalState__validateSubdomain__closure(t1)); return; } t1.setState$1(new S._ClientPortalState__validateSubdomain__closure0(t1)); t2 = type$.legacy_String; t1._webClient.post$3$data(url, credentials.token, C.C_JsonCodec.encode$2$toEncodable(P.LinkedHashMap_LinkedHashMap$_literal(["subdomain", subdomain], t2, t2), null)).then$1$1(0, new S._ClientPortalState__validateSubdomain__closure1(t1), type$.Null).catchError$1(new S._ClientPortalState__validateSubdomain__closure2(t1)); }, $signature: 1 }; S._ClientPortalState__validateSubdomain__closure.prototype = { call$0: function() { return this.$this._isSubdomainUnique = true; }, $signature: 19 }; S._ClientPortalState__validateSubdomain__closure0.prototype = { call$0: function() { return this.$this._isCheckingSubdomain = true; }, $signature: 19 }; S._ClientPortalState__validateSubdomain__closure1.prototype = { call$1: function(data) { var t1 = this.$this; t1.setState$1(new S._ClientPortalState__validateSubdomain___closure0(t1)); }, $signature: 8 }; S._ClientPortalState__validateSubdomain___closure0.prototype = { call$0: function() { var t1 = this.$this; t1._isSubdomainUnique = true; t1._isCheckingSubdomain = false; t1._client_portal$_onChanged$0(); }, $signature: 1 }; S._ClientPortalState__validateSubdomain__closure2.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new S._ClientPortalState__validateSubdomain___closure(t1)); }, $signature: 3 }; S._ClientPortalState__validateSubdomain___closure.prototype = { call$0: function() { var t1 = this.$this; t1._isCheckingSubdomain = t1._isSubdomainUnique = false; }, $signature: 1 }; S._ClientPortalState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_client_portal$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; S._ClientPortalState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_client_portal$_onChanged()); }, $signature: 10 }; S._ClientPortalState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_client_portal$_onChanged()); }, $signature: 10 }; S._ClientPortalState__onChanged_closure.prototype = { call$0: function() { var settings, t1 = this.$this, company = t1._widget.viewModel.company.rebuild$1(new S._ClientPortalState__onChanged__closure(t1)); if (!J.$eq$(company, t1._widget.viewModel.company)) t1._widget.viewModel.onCompanyChanged.call$1(company); settings = t1._widget.viewModel.settings.rebuild$1(new S._ClientPortalState__onChanged__closure0(t1)); if (!J.$eq$(settings, t1._widget.viewModel.settings)) t1._widget.viewModel.onSettingsChanged.call$1(settings); }, $signature: 1 }; S._ClientPortalState__onChanged__closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._portalDomainController._change_notifier$_value.text); b.get$_company_model$_$this()._portalDomain = t2; t1 = J.trim$0$s(t1._subdomainController._change_notifier$_value.text); b.get$_company_model$_$this()._subdomain = t1; return b; }, $signature: 22 }; S._ClientPortalState__onChanged__closure0.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._client_portal$_customMessageDashboard._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageDashboard = t2; t2 = J.trim$0$s(t1._client_portal$_customMessageUnpaidInvoice._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageUnpaidInvoice = t2; t2 = J.trim$0$s(t1._client_portal$_customMessagePaidInvoice._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessagePaidInvoice = t2; t2 = J.trim$0$s(t1._client_portal$_customMessageUnapprovedQuote._change_notifier$_value.text); b.get$_settings_model$_$this()._customMessageUnapprovedQuote = t2; t2 = J.trim$0$s(t1._termsController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalTerms = t2; t2 = J.trim$0$s(t1._privacyController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalPrivacy = t2; t2 = J.trim$0$s(t1._customJavaScriptController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomJs = t2; t2 = J.trim$0$s(t1._customCssController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomCss = t2; t2 = J.trim$0$s(t1._customHeaderController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomHeader = t2; t1 = J.trim$0$s(t1._customFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._clientPortalCustomFooter = t1; return b; }, $signature: 13 }; S._ClientPortalState__onSavePressed_closure.prototype = { call$0: function() { this.$this._client_portal$_autoValidate = !this.isValid; }, $signature: 1 }; S._ClientPortalState_build_closure18.prototype = { call$1: function(context) { return this.$this._client_portal$_onSavePressed$1(context); }, $signature: 29 }; S._ClientPortalState_build_closure.prototype = { call$1: function(value) { var t1 = this.viewModel; return t1.onCompanyChanged.call$1(t1.company.rebuild$1(new S._ClientPortalState_build__closure11(value))); }, $signature: 10 }; S._ClientPortalState_build__closure11.prototype = { call$1: function(b) { b.get$_company_model$_$this()._portalMode = this.value; return b; }, $signature: 22 }; S._ClientPortalState_build_closure1.prototype = { call$1: function(value) { var t1; if (value.length === 0) return this.localization.get$pleaseEnterAValue(); else { t1 = this.$this; if (!t1._isCheckingSubdomain && !t1._isSubdomainUnique) return this.localization.get$subdomainIsNotAvailable(); } return null; }, $signature: 15 }; S._ClientPortalState_build_closure0.prototype = { call$1: function(value) { return this.$this._validateSubdomain$0(); }, $signature: 59 }; S._ClientPortalState_build_closure2.prototype = { call$1: function(val) { var t1; if (val.length === 0 || C.JSString_methods.trim$0(val).length === 0) t1 = this.state.authState.get$isHosted(); else t1 = false; return t1 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; S._ClientPortalState_build_closure3.prototype = { call$0: function() { return T.launch("https://invoiceninja.github.io/docs/hosted-custom-domain", null, false); }, $signature: 30 }; S._ClientPortalState_build_closure4.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure10(value))); }, $signature: 12 }; S._ClientPortalState_build__closure10.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enablePortal = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure9(value))); }, $signature: 12 }; S._ClientPortalState_build__closure9.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enablePortalTasks = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure8(value))); }, $signature: 12 }; S._ClientPortalState_build__closure8.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enablePortalUploads = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure7.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S._ClientPortalState_build__closure7(value))); }, $signature: 12 }; S._ClientPortalState_build__closure7.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableShopApi = this.value; return b; }, $signature: 22 }; S._ClientPortalState_build_closure8.prototype = { call$0: function() { var t1 = this.company.companyKey; T.Clipboard_setData(new T.ClipboardData(t1)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; S._ClientPortalState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S._ClientPortalState_build__closure6(value))); }, $signature: 12 }; S._ClientPortalState_build__closure6.prototype = { call$1: function(b) { b.get$_company_model$_$this()._clientCanRegister = this.value; return b; }, $signature: 22 }; S._ClientPortalState_build_closure10.prototype = { call$0: function() { var t1 = this.registrationUrl; T.Clipboard_setData(new T.ClipboardData(t1)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", t1)); }, $signature: 1 }; S._ClientPortalState_build_closure11.prototype = { call$1: function(field) { var _this = this, _null = null; return O.SwitchListTile$(K.Theme_of(_this.context).accentColor, _null, new S._ClientPortalState_build__closure5(_this.company, field, _this.viewModel), _null, _null, L.Text$(_this.localization.lookup$1(field.key), _null, _null, _null, _null, _null, _null, _null, _null, _null), field.required); }, $signature: 2475 }; S._ClientPortalState_build__closure5.prototype = { call$1: function(value) { var t1 = this.company, t2 = this.field; this.viewModel.onCompanyChanged.call$1(t1.rebuild$1(new S._ClientPortalState_build___closure(J.indexOf$2$asx(t1.clientRegistrationFields._list, t2, 0), t2))); }, $signature: 20 }; S._ClientPortalState_build___closure.prototype = { call$1: function(b) { var t1 = b.get$clientRegistrationFields(), t2 = this.field, t3 = new A.RegistrationFieldEntityBuilder(); t3._company_model$_$v = t2; new S._ClientPortalState_build____closure(t2).call$1(t3); t2 = t3.build$0(0); !$.$get$isSoundMode() && !t1.$ti._precomputed1._is(null); J.$indexSet$ax(t1.get$_safeList(), this.index, t2); return b; }, $signature: 22 }; S._ClientPortalState_build____closure.prototype = { call$1: function(b) { b.get$_company_model$_$this()._required = !this.field.required; return b; }, $signature: 2476 }; S._ClientPortalState_build_closure12.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure4(value))); }, $signature: 12 }; S._ClientPortalState_build__closure4.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enablePortalPassword = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure3(value))); }, $signature: 12 }; S._ClientPortalState_build__closure3.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._showAcceptInvoiceTerms = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure14.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure2(value))); }, $signature: 12 }; S._ClientPortalState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._showAcceptQuoteTerms = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure15.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure1(value))); }, $signature: 12 }; S._ClientPortalState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._requireInvoiceSignature = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure16.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure0(value))); }, $signature: 12 }; S._ClientPortalState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._requireQuoteSignature = this.value; return b; }, $signature: 13 }; S._ClientPortalState_build_closure17.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new S._ClientPortalState_build__closure(value))); }, $signature: 12 }; S._ClientPortalState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._signatureOnPdf = this.value; return b; }, $signature: 13 }; S.__ClientPortalState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.ClientPortalScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.ClientPortalScreen_build_closure(), A.client_portal_vm_ClientPortalVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ClientPortalVM); } }; A.ClientPortalScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new S.ClientPortal(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2477 }; A.ClientPortalVM.prototype = { get$company: function() { return this.company; } }; A.ClientPortalVM_fromStore_closure1.prototype = { call$1: function(settings) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 446 }; A.ClientPortalVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; A.ClientPortalVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.ClientPortalVM_fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; A.ClientPortalVM_fromStore__closure.prototype = { call$0: function() { var t2, t3, completer, t4, oldSubdomain, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; t3 = type$.Null; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, t3); t2 = _this.state; t4 = t2.uiState.selectedCompanyIndex; oldSubdomain = J.$index$asx(t2.userCompanyStates._list, t4).userCompany.company.subdomain; t4 = settingsUIState.company; if (oldSubdomain !== t4.subdomain) completer.future.then$1$1(0, new A.ClientPortalVM_fromStore___closure(), t3); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t4)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.ClientPortalVM_fromStore___closure.prototype = { call$1: function(value) { var t1 = $.$get$navigatorKey(); t1.toString; O.showRefreshDataDialog($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), false); }, $signature: 3 }; A.CompanyDetails.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new A._CompanyDetailsState(t1, new O.Debouncer(500, true), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; A._CompanyDetailsState.prototype = { initState$0: function() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = settingsUIState.entityType !== C.EntityType_company ? 4 : 5; t1 = U.TabController$(settingsUIState.tabIndex, t1, _this); _this._company_details$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_company_details$_onTabChanged()), false); }, _company_details$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._company_details$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._company_details$_controller.removeListener$1(0, _this.get$_company_details$_onTabChanged()); _this._company_details$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._company_details$_controllers, new A._CompanyDetailsState_dispose_closure(_this)); _this.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var settings, _this = this, t1 = _this._company_details$_nameController, t2 = _this._idNumberController, t3 = _this._vatNumberController, t4 = _this._company_details$_emailController, t5 = _this._websiteController, t6 = _this._company_details$_phoneController, t7 = _this._address1Controller, t8 = _this._address2Controller, t9 = _this._cityController, t10 = _this._stateController, t11 = _this._postalCodeController, t12 = _this._company_details$_custom1Controller, t13 = _this._company_details$_custom2Controller, t14 = _this._company_details$_custom3Controller, t15 = _this._company_details$_custom4Controller, t16 = _this._invoiceFooterController, t17 = _this._invoiceTermsController, t18 = _this._quoteFooterController, t19 = _this._quoteTermsController, t20 = _this._creditFooterController, t21 = _this._creditTermsController, t22 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21], type$.JSArray_legacy_TextEditingController); _this._company_details$_controllers = t22; C.JSArray_methods.forEach$1(t22, new A._CompanyDetailsState_didChangeDependencies_closure(_this)); settings = _this._widget.viewModel.settings; t1.set$text(0, settings.name); t2.set$text(0, settings.idNumber); t3.set$text(0, settings.vatNumber); t4.set$text(0, settings.email); t5.set$text(0, settings.website); t6.set$text(0, settings.phone); t7.set$text(0, settings.address1); t8.set$text(0, settings.address2); t9.set$text(0, settings.city); t10.set$text(0, settings.state); t11.set$text(0, settings.postalCode); t12.set$text(0, settings.customValue1); t13.set$text(0, settings.customValue2); t14.set$text(0, settings.customValue3); t15.set$text(0, settings.customValue4); t17.set$text(0, settings.defaultInvoiceTerms); t16.set$text(0, settings.defaultInvoiceFooter); t19.set$text(0, settings.defaultQuoteTerms); t18.set$text(0, settings.defaultQuoteFooter); t20.set$text(0, settings.defaultCreditFooter); t21.set$text(0, settings.defaultCreditTerms); C.JSArray_methods.forEach$1(_this._company_details$_controllers, new A._CompanyDetailsState_didChangeDependencies_closure0(_this)); _this.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _onSettingsChanged$0: function() { var _this = this, settings = _this._widget.viewModel.settings.rebuild$1(new A._CompanyDetailsState__onSettingsChanged_closure(_this)); if (!J.$eq$(settings, _this._widget.viewModel.settings)) _this._company_details$_debouncer.run$1(new A._CompanyDetailsState__onSettingsChanged_closure0(_this, settings)); }, build$1: function(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, t24, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, company = viewModel.company, settings = viewModel.settings, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex; t2 = t2._list; t5 = J.getInterceptor$asx(t2); if (!t5.$index(t2, t4).userCompany.isAdmin) return new Q.BlankScreen(_null, _null); t6 = t1.get$companyDetails(); t7 = viewModel.onSavePressed; t3 = t3.settingsUIState; t8 = t3.updatedAt; t9 = _this._company_details$_controller; t10 = E.Tab$(_null, t1.get$details(t1)); t11 = E.Tab$(_null, t1.get$address()); t12 = E.Tab$(_null, t1.get$logo()); t13 = t1.localeCode; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t13), "defaults"); t15 = type$.JSArray_legacy_Widget; t14 = H.setRuntimeTypeInfo([t10, t11, t12, E.Tab$(_null, t14 == null ? "" : t14)], t15); t3 = t3.entityType === C.EntityType_company; if (t3) { t10 = company.documents._list; t11 = J.getInterceptor$asx(t10); t14.push(E.Tab$(_null, t11.get$isEmpty(t10) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t11.get$length(t10)) + ")")); } t8 = E.TabBar$(t9, _null, true, new D.ValueKey(t8, type$.ValueKey_legacy_int), _null, t14); t9 = $.$get$_CompanyDetailsState__formKey(); t10 = _this._company_details$_controller; t11 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._company_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$name(t1), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, new A._CompanyDetailsState_build_closure(t1)), S.DecoratedFormField$(false, _null, false, false, _this._idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$idNumber(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$vatNumber(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._websiteController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$website(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._company_details$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_5_null_null, t1.get$email(), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._company_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null), new B.CustomField(_this._company_details$_custom1Controller, _null, t7, "company1", settings.customValue1, false, _null), new B.CustomField(_this._company_details$_custom2Controller, _null, t7, "company2", settings.customValue2, false, _null), new B.CustomField(_this._company_details$_custom3Controller, _null, t7, "company3", settings.customValue3, false, _null), new B.CustomField(_this._company_details$_custom4Controller, _null, t7, "company4", settings.customValue4, false, _null)], t15), _null, 4, false, _null, false, _null)], t15); if (t3) { t12 = company.sizeId; t14 = t1.get$size(t1); t16 = $.$get$memoizedSizeList(); t17 = state.staticState; t16 = J.map$1$1$ax(t16.call$1(t17.sizeMap), new A._CompanyDetailsState_build_closure0(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t18 = company.industryId; t19 = "__industry_" + t18 + "__"; t11.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t14, t12, new A._CompanyDetailsState_build_closure1(viewModel, company), t16, true, true, "", _null, type$.AppDropdownButton_legacy_String), F.EntityDropdown$(true, false, false, t18, $.$get$memoizedIndustryList().call$1(t17.industryMap), _null, C.EntityType_industry, new D.ValueKey(t19, type$.ValueKey_legacy_String), t1.get$industry(), _null, new A._CompanyDetailsState_build_closure2(viewModel, company), _null, _null, _null)], t15), _null, 4, false, _null, true, _null)); } t12 = t1.get$address1(); t14 = type$.JSArray_legacy_String; t12 = S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["streetAddressLine1"], t14), false, false, _this._address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t12, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null); t16 = t1.get$address2(); t16 = S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["streetAddressLine2"], t14), false, false, _this._address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t16, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null); t17 = t1.get$city(t1); t17 = S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["addressCity"], t14), false, false, _this._cityController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t17, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null); t18 = t1.get$state(t1); t18 = S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["addressState"], t14), false, false, _this._stateController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t18, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null); t19 = t1.get$postalCode(t1); t19 = S.DecoratedFormField$(false, H.setRuntimeTypeInfo(["postalCode"], t14), false, false, _this._postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t19, _null, _null, false, _null, _null, t7, true, _null, _null, C.TextAlign_4, _null); t20 = settings.countryId; t21 = "__country_" + H.S(t20) + "__"; t22 = type$.ValueKey_legacy_String; t23 = $.$get$memoizedCountryList(); t24 = state.staticState; t21 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t12, t16, t17, t18, t19, F.EntityDropdown$(true, false, false, t20, t23.call$1(t24.countryMap), _null, C.EntityType_country, new D.ValueKey(t21, t22), t1.get$country(t1), _null, new A._CompanyDetailsState_build_closure3(viewModel, settings), _null, _null, _null)], t15), _null, 4, false, _null, true, _null)], t15); t23 = H.setRuntimeTypeInfo([new T.Builder(new A._CompanyDetailsState_build_closure4(settings, t1, viewModel), _null)], t15); t12 = settings.companyLogo; if ((t12 == null ? "" : t12).length !== 0) t23.push(new T.Padding(C.EdgeInsets_0_20_0_20, D.CachedImage$(t12, 1 / 0), _null)); t12 = t1.get$autoBill(); t16 = settings.autoBill; t17 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t17 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["always", "optout", "optin", "disabled"], t14), new A._CompanyDetailsState_build_closure5(t1), t17), true, t17._eval$1("ListIterable.E")); t14 = type$.AppDropdownButton_legacy_String; t18 = settings.defaultPaymentTypeId; t19 = "__default_payment_type_" + H.S(t18) + "__"; t22 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t12, t16, new A._CompanyDetailsState_build_closure6(viewModel, settings), t17, _null, true, "", _null, t14), F.EntityDropdown$(true, false, false, t18, $.$get$memoizedPaymentTypeList().call$1(t24.paymentTypeMap), _null, C.EntityType_paymentType, new D.ValueKey(t19, t22), t1.get$paymentType(), _null, new A._CompanyDetailsState_build_closure7(viewModel, settings), _null, _null, _null)], t15); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t12 = t1.get$invoicePaymentTerms(); t16 = J.map$1$1$ax($.$get$memoizedDropdownPaymentTermList().call$2(t5.$index(t2, t4).paymentTermState.map, t5.$index(t2, t4).paymentTermState.list), new A._CompanyDetailsState_build_closure8(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t22.push(new Q.AppDropdownButton(t12, H.S(settings.defaultPaymentTerms), new A._CompanyDetailsState_build_closure9(viewModel, settings), t16, true, true, "", _null, t14)); } if (company.isModuleEnabled$1(C.EntityType_quote)) { t12 = t1.get$quoteValidUntil(); t16 = J.map$1$1$ax($.$get$memoizedDropdownPaymentTermList().call$2(t5.$index(t2, t4).paymentTermState.map, t5.$index(t2, t4).paymentTermState.list), new A._CompanyDetailsState_build_closure10(state), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0); t22.push(new Q.AppDropdownButton(t12, H.S(settings.defaultValidUntil), new A._CompanyDetailsState_build_closure11(viewModel, settings), t16, true, true, "", _null, t14)); } t12 = H.setRuntimeTypeInfo([Y.FormCard$(_null, t22, C.CrossAxisAlignment_3, 4, false, _null, false, _null)], t15); if (t3) { t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t13), "configure_payment_terms"); if (t14 == null) t14 = ""; t12.push(new T.Padding(C.EdgeInsets_16_0_16_10, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t14.toUpperCase(), new A._CompanyDetailsState_build_closure12(viewModel, context), _null, _null), _null)); } if (!(Y.cleanApiUrl(state.authState.url) !== "https://invoicing.co" || t5.$index(t2, t4).userCompany.account.plan === "enterprise" || t5.$index(t2, t4).userCompany.account.plan === "pro")) { t2 = H.setRuntimeTypeInfo([], t15); if (company.isModuleEnabled$1(C.EntityType_invoice)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure13(viewModel, settings), t1.get$invoiceDesign(), settings.defaultInvoiceDesignId, _null)); if (company.isModuleEnabled$1(C.EntityType_quote)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure14(viewModel, settings), t1.get$quoteDesign(), settings.defaultQuoteDesignId, _null)); if (company.isModuleEnabled$1(C.EntityType_credit)) t2.push(new A.DesignPicker(new A._CompanyDetailsState_build_closure15(viewModel, settings), t1.get$creditDesign(), settings.defaultCreditDesignId, _null)); t12.push(Y.FormCard$(_null, t2, _null, 4, false, _null, false, _null)); } t2 = H.setRuntimeTypeInfo([], t15); if (t3) { t4 = settings.clientManualPaymentNotification; t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t13), "manual_payment_email"); if (t5 == null) t5 = ""; t2.push(K.BoolDropdownButton$(_null, _null, t1.get$emailReceipt(), C.IconData_57898_MaterialIcons_null_false, t5, _null, new A._CompanyDetailsState_build_closure16(viewModel, settings), _null, t4)); } t4 = settings.clientOnlinePaymentNotification; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t13), "online_payment_email"); t5 = t13 == null ? "" : t13; t2.push(K.BoolDropdownButton$(_null, _null, t1.get$emailReceipt(), C.IconData_57898_MaterialIcons_null_false, t5, _null, new A._CompanyDetailsState_build_closure17(viewModel, settings), _null, t4)); t12.push(Y.FormCard$(_null, t2, C.CrossAxisAlignment_3, 4, false, _null, false, _null)); t2 = H.setRuntimeTypeInfo([], t15); if (company.isModuleEnabled$1(C.EntityType_invoice)) C.JSArray_methods.addAll$1(t2, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._invoiceTermsController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$invoiceTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._invoiceFooterController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$invoiceFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t15)); if (company.isModuleEnabled$1(C.EntityType_quote)) C.JSArray_methods.addAll$1(t2, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._quoteTermsController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$quoteTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._quoteFooterController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$quoteFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t15)); if (company.isModuleEnabled$1(C.EntityType_credit)) C.JSArray_methods.addAll$1(t2, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._creditTermsController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$creditTerms(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._creditFooterController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$creditFooter(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t15)); t12.push(Y.FormCard$(_null, t2, _null, 4, false, _null, true, _null)); t1 = H.setRuntimeTypeInfo([new X.ScrollableListView(t11, _null, _null, false, _null), new F.AutofillGroup(new X.ScrollableListView(t21, _null, _null, false, _null), _null), new T.Padding(C.EdgeInsets_20_0_20_0, new X.ScrollableListView(t23, _null, _null, false, _null), _null), new X.ScrollableListView(t12, _null, _null, false, _null)], t15); if (t3) { t2 = company.documents; t1.push(new V.DocumentGrid(new Q.CopyOnWriteList(true, t2._list, H._instanceType(t2)._eval$1("CopyOnWriteList<1>")), new A._CompanyDetailsState_build_closure18(viewModel, context), new A._CompanyDetailsState_build_closure19(viewModel, context), _null, _null)); } return K.EditScaffold$(_null, t8, new X.AppTabForm(_this._company_details$_focusNode, t9, t1, t10, _null, _null), _null, _null, _null, false, _null, _null, t7, _null, t6); } }; A._CompanyDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_onSettingsChanged()); t1.dispose$0(controller); }, $signature: 8 }; A._CompanyDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_onSettingsChanged()); }, $signature: 10 }; A._CompanyDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_onSettingsChanged()); }, $signature: 10 }; A._CompanyDetailsState__onSettingsChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._company_details$_nameController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_name = t2; t2 = J.trim$0$s(t1._idNumberController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_idNumber = t2; t2 = J.trim$0$s(t1._vatNumberController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_vatNumber = t2; t2 = J.trim$0$s(t1._company_details$_phoneController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_phone = t2; t2 = J.trim$0$s(t1._company_details$_emailController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_email = t2; t2 = J.trim$0$s(t1._websiteController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_website = t2; t2 = J.trim$0$s(t1._address1Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_address1 = t2; t2 = J.trim$0$s(t1._address2Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_address2 = t2; t2 = J.trim$0$s(t1._cityController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_city = t2; t2 = J.trim$0$s(t1._stateController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_state = t2; t2 = J.trim$0$s(t1._postalCodeController._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_postalCode = t2; t2 = J.trim$0$s(t1._company_details$_custom1Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_customValue1 = t2; t2 = J.trim$0$s(t1._company_details$_custom2Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_customValue2 = t2; t2 = J.trim$0$s(t1._company_details$_custom3Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_customValue3 = t2; t2 = J.trim$0$s(t1._company_details$_custom4Controller._change_notifier$_value.text); b.get$_settings_model$_$this()._settings_model$_customValue4 = t2; t2 = J.trim$0$s(t1._invoiceFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultInvoiceFooter = t2; t2 = J.trim$0$s(t1._invoiceTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultInvoiceTerms = t2; t2 = J.trim$0$s(t1._quoteFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultQuoteFooter = t2; t2 = J.trim$0$s(t1._quoteTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultQuoteTerms = t2; t2 = J.trim$0$s(t1._creditFooterController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultCreditFooter = t2; t1 = J.trim$0$s(t1._creditTermsController._change_notifier$_value.text); b.get$_settings_model$_$this()._defaultCreditTerms = t1; return b; }, $signature: 13 }; A._CompanyDetailsState__onSettingsChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onSettingsChanged.call$1(this.settings); }, $signature: 1 }; A._CompanyDetailsState_build_closure.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; A._CompanyDetailsState_build_closure0.prototype = { call$1: function(sizeId) { var _null = null; return K.DropdownMenuItem$(L.Text$(J.$index$asx(this.state.staticState.sizeMap._map$_map, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), sizeId, type$.legacy_String); }, $signature: 36 }; A._CompanyDetailsState_build_closure1.prototype = { call$1: function(sizeId) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure12(sizeId))); }, $signature: 10 }; A._CompanyDetailsState_build__closure12.prototype = { call$1: function(b) { b.get$_company_model$_$this()._company_model$_sizeId = this.sizeId; return b; }, $signature: 22 }; A._CompanyDetailsState_build_closure2.prototype = { call$1: function(industry) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure11(industry))); }, $signature: 56 }; A._CompanyDetailsState_build__closure11.prototype = { call$1: function(b) { var t1 = this.industry; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_company_model$_$this()._company_model$_industryId = t1; return b; }, $signature: 22 }; A._CompanyDetailsState_build_closure3.prototype = { call$1: function(country) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure10(country))); }, $signature: 56 }; A._CompanyDetailsState_build__closure10.prototype = { call$1: function(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._settings_model$_countryId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure4.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = type$.JSArray_legacy_Widget, t2 = H.setRuntimeTypeInfo([], t1), t3 = _this.settings.companyLogo; if ((t3 == null ? "" : t3).length !== 0) { t3 = _this.localization; C.JSArray_methods.addAll$1(t2, H.setRuntimeTypeInfo([T.Expanded$(new D.AppButton(C.MaterialAccentColor_Map_iTECn_4294922834, C.IconData_57785_MaterialIcons_null_false, t3.get$$delete(t3), new A._CompanyDetailsState_build__closure8(context, _this.viewModel), 1 / 0, _null), 1), T.SizedBox$(_null, _null, 20)], t1)); } t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "upload_logo"); if (t1 == null) t1 = ""; t2.push(T.Expanded$(new D.AppButton(_null, C.IconData_57717_MaterialIcons_null_false, t1, new A._CompanyDetailsState_build__closure9(_this.viewModel, context), 1 / 0, _null), 1)); return T.Row$(t2, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); }, $signature: 2479 }; A._CompanyDetailsState_build__closure8.prototype = { call$0: function() { var t1 = this.context; O.confirmCallback(false, new A._CompanyDetailsState_build___closure(this.viewModel, t1), t1, null, false, null); }, $signature: 1 }; A._CompanyDetailsState_build___closure.prototype = { call$1: function(_) { return this.viewModel.onDeleteLogo.call$1(this.context); }, $signature: 5 }; A._CompanyDetailsState_build__closure9.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, multipartFile; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 2; return P._asyncAwait(Q.pickFile(null, "company_logo", C.FileType_2), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) $async$self.viewModel.onUploadLogo.call$2($async$self.context, multipartFile); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; A._CompanyDetailsState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure7(value))); }, $signature: 10 }; A._CompanyDetailsState_build__closure7.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoBill = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure5.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; A._CompanyDetailsState_build_closure7.prototype = { call$1: function(paymentType) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure6(paymentType))); }, $signature: 56 }; A._CompanyDetailsState_build__closure6.prototype = { call$1: function(b) { var t1 = this.paymentType; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._defaultPaymentTypeId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure8.prototype = { call$1: function(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).paymentTermState.map._map$_map, paymentTermId); return K.DropdownMenuItem$(L.Text$(paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.JSInt_methods.toString$0(paymentTerm.numDays), type$.legacy_String); }, $signature: 36 }; A._CompanyDetailsState_build_closure9.prototype = { call$1: function(numDays) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure5(numDays))); }, $signature: 8 }; A._CompanyDetailsState_build__closure5.prototype = { call$1: function(b) { var t1 = this.numDays; t1 = t1 == null ? null : H.S(t1); b.get$_settings_model$_$this()._defaultPaymentTerms = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure10.prototype = { call$1: function(paymentTermId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, paymentTerm = J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).paymentTermState.map._map$_map, paymentTermId); return K.DropdownMenuItem$(L.Text$(paymentTerm.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), C.JSInt_methods.toString$0(paymentTerm.numDays), type$.legacy_String); }, $signature: 36 }; A._CompanyDetailsState_build_closure11.prototype = { call$1: function(numDays) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure4(numDays))); }, $signature: 8 }; A._CompanyDetailsState_build__closure4.prototype = { call$1: function(b) { var t1 = this.numDays; t1 = t1 == null ? null : H.S(t1); b.get$_settings_model$_$this()._defaultValidUntil = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure12.prototype = { call$0: function() { return this.viewModel.onConfigurePaymentTermsPressed.call$1(this.context); }, $signature: 9 }; A._CompanyDetailsState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure3(value))); }, $signature: 276 }; A._CompanyDetailsState_build__closure3.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultInvoiceDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure14.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure2(value))); }, $signature: 276 }; A._CompanyDetailsState_build__closure2.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultQuoteDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure15.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure1(value))); }, $signature: 276 }; A._CompanyDetailsState_build__closure1.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultCreditDesignId = t1; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure16.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure0(value))); }, $signature: 12 }; A._CompanyDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientManualPaymentNotification = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure17.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure(value))); }, $signature: 12 }; A._CompanyDetailsState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientOnlinePaymentNotification = this.value; return b; }, $signature: 13 }; A._CompanyDetailsState_build_closure18.prototype = { call$1: function(path) { return this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; A._CompanyDetailsState_build_closure19.prototype = { call$3: function($document, password, idToken) { return this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; A.__CompanyDetailsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; A.CompanyDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.CompanyDetailsScreen_build_closure(), A.company_details_vm_CompanyDetailsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CompanyDetailsVM); } }; A.CompanyDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.CompanyDetails(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2480 }; A.CompanyDetailsVM.prototype = { get$company: function() { return this.company; } }; A.CompanyDetailsVM_fromStore_closure.prototype = { call$1: function(settings) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 446 }; A.CompanyDetailsVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; A.CompanyDetailsVM_fromStore_closure3.prototype = { call$1: function(context) { var completer, t1, _this = this, settingsUIState = _this.state.uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.Null); t1 = settingsUIState.company.rebuild$1(new A.CompanyDetailsVM_fromStore__closure2()); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t1)); break; case C.EntityType_group: completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.legacy_GroupEntity); t1 = settingsUIState.group.rebuild$1(new A.CompanyDetailsVM_fromStore__closure3()); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t1)); break; case C.EntityType_client: completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedLogo(), false, type$.legacy_ClientEntity); t1 = settingsUIState.client.rebuild$1(new A.CompanyDetailsVM_fromStore__closure4()); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t1)); break; } }, $signature: 14 }; A.CompanyDetailsVM_fromStore__closure2.prototype = { call$1: function(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 22 }; A.CompanyDetailsVM_fromStore__closure3.prototype = { call$1: function(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 376 }; A.CompanyDetailsVM_fromStore__closure4.prototype = { call$1: function(b) { b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, $signature: 40 }; A.CompanyDetailsVM_fromStore_closure1.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.CompanyDetailsVM_fromStore__closure5(this.store, context).call$0(); }, $signature: 14 }; A.CompanyDetailsVM_fromStore__closure5.prototype = { call$0: function() { var completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, t2 = settingsUIState.entityType; if (t2 === C.EntityType_company && settingsUIState.company.settings.countryId == null) { t1 = _this.context; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "please_select_a_country"); O.showErrorDialog(false, t1, t2 == null ? "" : t2); return; } switch (t2) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; A.CompanyDetailsVM_fromStore_closure2.prototype = { call$2: function(context, multipartFile) { var completer, type = this.state.uiState.settingsUIState.entityType, t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "uploaded_logo"); if (t1 == null) t1 = ""; completer = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UploadLogoRequest(completer, multipartFile, type)); }, $signature: 86 }; A.CompanyDetailsVM_fromStore_closure4.prototype = { call$1: function(context) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = this.store; if (J.get$isEmpty$asx(J.$index$asx(t1.userCompanyStates._list, t2).paymentTermState.list._list)) J.$index$asx(t3.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "payment_term_edit", false, _null)); else J.$index$asx(t3.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "payment_terms", false, _null)); }, $signature: 14 }; A.CompanyDetailsVM_fromStore_closure5.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanyDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile)); t1.then$1$1(0, new A.CompanyDetailsVM_fromStore__closure0(context), type$.Null).catchError$1(new A.CompanyDetailsVM_fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; A.CompanyDetailsVM_fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; A.CompanyDetailsVM_fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new A.CompanyDetailsVM_fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.CompanyDetailsVM_fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; A.CompanyDetailsVM_fromStore_closure6.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new A.CompanyDetailsVM_fromStore__closure(t2), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; A.CompanyDetailsVM_fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 95 }; X.CreditCardsAndBanks.prototype = { createState$0: function() { return new X._CreditCardsAndBanksState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; X._CreditCardsAndBanksState.prototype = { initState$0: function() { this.super$State$initState(); this._credit_cards_and_banks$_controller = U.TabController$(0, 3, this); }, dispose$0: function(_) { var _this = this; _this._credit_cards_and_banks$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._credit_cards_and_banks$_controllers, new X._CreditCardsAndBanksState_dispose_closure(_this)); _this.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = H.setRuntimeTypeInfo([_this._credit_cards_and_banks$_nameController], type$.JSArray_legacy_TextEditingController); _this._credit_cards_and_banks$_controllers = t1; C.JSArray_methods.forEach$1(t1, new X._CreditCardsAndBanksState_didChangeDependencies_closure(_this)); C.JSArray_methods.forEach$1(_this._credit_cards_and_banks$_controllers, new X._CreditCardsAndBanksState_didChangeDependencies_closure0(_this)); _this.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _credit_cards_and_banks$_onChanged$0: function() { }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = T.SizedBox$(_null, _null, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "credit_cards_and_banks"); return K.EditScaffold$(_null, _null, t2, _null, _null, _null, false, _null, _null, _null, _null, t1 == null ? "" : t1); } }; X._CreditCardsAndBanksState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; X._CreditCardsAndBanksState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); }, $signature: 10 }; X._CreditCardsAndBanksState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_credit_cards_and_banks$_onChanged()); }, $signature: 10 }; X.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; F.CreditCardsAndBanksScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.CreditCardsAndBanksScreen_build_closure(), F.credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CreditCardsAndBanksVM); } }; F.CreditCardsAndBanksScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new X.CreditCardsAndBanks(null); }, $signature: 2481 }; F.CreditCardsAndBanksVM.prototype = {}; S.CustomFields.prototype = { createState$0: function() { return new S._CustomFieldsState(null, C._StateLifecycle_0); } }; S._CustomFieldsState.prototype = { initState$0: function() { var state, settingsUIState, _this = this, t1 = {}; _this.super$State$initState(); _this._custom_fields$_focusNode = O.FocusScopeNode$(true, null, false); state = _this._widget.viewModel.state; t1.tabs = 4; C.JSArray_methods.forEach$1(H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_payment, C.EntityType_task, C.EntityType_vendor, C.EntityType_expense, C.EntityType_project], type$.JSArray_legacy_EntityType), new S._CustomFieldsState_initState_closure(t1, state)); settingsUIState = state.uiState.settingsUIState; t1 = t1.tabs; t1 = U.TabController$(settingsUIState.tabIndex, t1, _this); _this._custom_fields$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_custom_fields$_onTabChanged()), false); }, _custom_fields$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._custom_fields$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._custom_fields$_focusNode.dispose$0(0); _this._custom_fields$_controller.removeListener$1(0, _this.get$_custom_fields$_onTabChanged()); _this._custom_fields$_controller.dispose$0(0); _this.super$__CustomFieldsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = J.$index$asx(t2._list, t4).userCompany.company; t4 = t1.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "custom_fields"); if (t2 == null) t2 = ""; t5 = viewModel.onSavePressed; t3 = t3.settingsUIState.updatedAt; t6 = _this._custom_fields$_controller; t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$company()), E.Tab$(_null, t1.get$clients(t1)), E.Tab$(_null, t1.get$products())], t7); if (company.isModuleEnabled$1(C.EntityType_invoice)) t8.push(E.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(C.EntityType_payment)) t8.push(E.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(C.EntityType_project)) t8.push(E.Tab$(_null, t1.get$projects())); if (company.isModuleEnabled$1(C.EntityType_task)) t8.push(E.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(C.EntityType_vendor)) t8.push(E.Tab$(_null, t1.get$vendors())); if (company.isModuleEnabled$1(C.EntityType_expense)) t8.push(E.Tab$(_null, t1.get$expenses())); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "users"); t8.push(E.Tab$(_null, t1 == null ? "" : t1)); t1 = E.TabBar$(t6, _null, true, new D.ValueKey(t3, type$.ValueKey_legacy_int), _null, t8); t3 = _this._custom_fields$_controller; t4 = $.$get$_CustomFieldsState__formKey(); t6 = _this._custom_fields$_focusNode; t8 = H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "company", _null)], t7), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "client", _null), new S.CustomFieldsSettings(viewModel, false, "contact", _null)], t7), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "product", _null)], t7), _null, _null, false, _null)], t7); if (company.isModuleEnabled$1(C.EntityType_invoice)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "invoice", _null), new S.CustomFieldsSettings(viewModel, true, "surcharge", _null)], t7), _null, _null, false, _null)); if (company.isModuleEnabled$1(C.EntityType_payment)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "payment", _null)], t7), _null, _null, false, _null)); if (company.isModuleEnabled$1(C.EntityType_project)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "project", _null)], t7), _null, _null, false, _null)); if (company.isModuleEnabled$1(C.EntityType_task)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "task", _null)], t7), _null, _null, false, _null)); if (company.isModuleEnabled$1(C.EntityType_vendor)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "vendor", _null)], t7), _null, _null, false, _null)); if (company.isModuleEnabled$1(C.EntityType_expense)) t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "expense", _null)], t7), _null, _null, false, _null)); t8.push(new X.ScrollableListView(H.setRuntimeTypeInfo([new S.CustomFieldsSettings(viewModel, false, "user", _null)], t7), _null, _null, false, _null)); return K.EditScaffold$(_null, t1, new X.AppTabForm(t6, t4, t8, t3, _null, _null), _null, _null, _null, false, _null, _null, t5, _null, t2); } }; S._CustomFieldsState_initState_closure.prototype = { call$1: function(entityType) { var t1 = this.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, $signature: 201 }; S.CustomFieldsSettings.prototype = { build$1: function(_, context) { var t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), company = _this.viewModel.company, t2 = _this.fieldType, t3 = t1.lookup$1(t2 + "_field"), t4 = company.customFields, t5 = t2 + "1"; t4 = t4._map$_map; t6 = J.getInterceptor$asx(t4); t7 = _this.showChargeTaxes; return Y.FormCard$(_null, H.setRuntimeTypeInfo([new S.CustomFormField(t3, t6.$index(t4, t5), t7, company.enableCustomSurchargeTaxes1, new S.CustomFieldsSettings_build_closure(_this, company), new S.CustomFieldsSettings_build_closure0(_this, company), _null), new S.CustomFormField(t1.lookup$1(t2 + "_field"), t6.$index(t4, t2 + "2"), t7, company.enableCustomSurchargeTaxes2, new S.CustomFieldsSettings_build_closure1(_this, company), new S.CustomFieldsSettings_build_closure2(_this, company), _null), new S.CustomFormField(t1.lookup$1(t2 + "_field"), t6.$index(t4, t2 + "3"), t7, company.enableCustomSurchargeTaxes3, new S.CustomFieldsSettings_build_closure3(_this, company), new S.CustomFieldsSettings_build_closure4(_this, company), _null), new S.CustomFormField(t1.lookup$1(t2 + "_field"), t6.$index(t4, t2 + "4"), t7, company.enableCustomSurchargeTaxes4, new S.CustomFieldsSettings_build_closure5(_this, company), new S.CustomFieldsSettings_build_closure6(_this, company), _null)], type$.JSArray_legacy_Widget), _null, 4, false, _null, false, _null); } }; S.CustomFieldsSettings_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure6(t1, value))); }, $signature: 5 }; S.CustomFieldsSettings_build__closure6.prototype = { call$1: function(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "1", this.value); return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure0.prototype = { call$1: function(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure5(value))); }, $signature: 12 }; S.CustomFieldsSettings_build__closure5.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes1 = this.value; return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure4(t1, value))); }, $signature: 5 }; S.CustomFieldsSettings_build__closure4.prototype = { call$1: function(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "2", this.value); return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure2.prototype = { call$1: function(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure3(value))); }, $signature: 12 }; S.CustomFieldsSettings_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes2 = this.value; return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure3.prototype = { call$1: function(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure2(t1, value))); }, $signature: 5 }; S.CustomFieldsSettings_build__closure2.prototype = { call$1: function(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "3", this.value); return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure4.prototype = { call$1: function(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure1(value))); }, $signature: 12 }; S.CustomFieldsSettings_build__closure1.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes3 = this.value; return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure5.prototype = { call$1: function(value) { var t1 = this.$this; return t1.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure0(t1, value))); }, $signature: 5 }; S.CustomFieldsSettings_build__closure0.prototype = { call$1: function(b) { b.get$customFields().$indexSet(0, this.$this.fieldType + "4", this.value); return b; }, $signature: 22 }; S.CustomFieldsSettings_build_closure6.prototype = { call$1: function(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new S.CustomFieldsSettings_build__closure(value))); }, $signature: 12 }; S.CustomFieldsSettings_build__closure.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableCustomSurchargeTaxes4 = this.value; return b; }, $signature: 22 }; S.CustomFormField.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new S._CustomFormFieldState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); }, onChanged$1: function(arg0) { return this.onChanged.call$1(arg0); }, onTaxesChanged$1: function(arg0) { return this.onTaxesChanged.call$1(arg0); }, get$value: function(receiver) { return this.value; } }; S._CustomFormFieldState.prototype = { dispose$0: function(_) { C.JSArray_methods.forEach$1(this._custom_fields$_controllers, new S._CustomFormFieldState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var parts, _this = this, _s16_ = "single_line_text", t1 = _this._customFieldController, t2 = _this._optionsController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._custom_fields$_controllers = t3; C.JSArray_methods.forEach$1(t3, new S._CustomFormFieldState_didChangeDependencies_closure(_this)); t3 = _this._widget.value; if ((t3 == null ? "" : t3).length !== 0) if (J.contains$1$asx(t3, "|")) { parts = t3.split("|"); t1.set$text(0, parts[0]); t1 = parts[1]; switch (t1) { case "single_line_text": _this._fieldType = _s16_; break; case "date": _this._fieldType = "date"; break; case "switch": _this._fieldType = "switch"; break; default: _this._fieldType = "dropdown"; t2.set$text(0, t1); break; } } else { _this._fieldType = "multi_line_text"; t1.set$text(0, t3); } else t1.set$text(0, t3); C.JSArray_methods.forEach$1(_this._custom_fields$_controllers, new S._CustomFormFieldState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _custom_fields$_onChanged$0: function() { var t1, t2, _this = this, value = J.trim$0$s(_this._customFieldController._change_notifier$_value.text); if (value.length === 0) { t1 = _this._widget; t2 = t1.value; if ((t2 == null ? "" : t2).length !== 0) t1.onChanged$1(""); return; } if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo(["single_line_text", "date", "switch"], type$.JSArray_legacy_String), _this._fieldType)) value = value + "|" + H.S(_this._fieldType); else if (_this._fieldType === "dropdown") value = value + "|" + new H.MappedListIterable(H.setRuntimeTypeInfo(_this._optionsController._change_notifier$_value.text.split(","), type$.JSArray_String), new S._CustomFormFieldState__onChanged_closure(), type$.MappedListIterable_of_String_and_legacy_String).join$1(0, ","); _this._widget.onChanged$1(value); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, _s16_ = "single_line_text", _s15_ = "multi_line_text", _s8_ = "dropdown", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = type$.JSArray_legacy_Widget, t3 = H.setRuntimeTypeInfo([new T.Flexible(1, C.FlexFit_1, S.DecoratedFormField$(false, _null, false, false, _this._customFieldController, _null, true, _null, _null, _null, _null, false, false, _null, _null, _this._widget.label, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), _null)], t2); if (_this._widget.showTaxes) { t4 = T.SizedBox$(_null, _null, 16); t5 = K.Theme_of(context).accentColor; t6 = _this._widget.taxesEnabled; t5 = K.Checkbox$(t5, false, _null, _null, new S._CustomFormFieldState_build_closure(), false, t6); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "charge_taxes"); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([t4, R.InkWell$(false, _null, true, T.Row$(H.setRuntimeTypeInfo([new T.IgnorePointer(true, _null, t5, _null), L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), T.SizedBox$(_null, _null, 16)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new S._CustomFormFieldState_build_closure0(_this), _null, _null, _null, _null, _null)], t2)); } else { t4 = T.SizedBox$(_null, _null, 16); t5 = t1.localeCode; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "field_type"); if (t6 == null) t6 = ""; t7 = _this._fieldType; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s16_); t9 = type$.legacy_String; t8 = K.DropdownMenuItem$(L.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s16_, t9); t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s15_); t10 = K.DropdownMenuItem$(L.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s15_, t9); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "switch"); t11 = K.DropdownMenuItem$(L.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), "switch", t9); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s8_); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([t4, new T.Flexible(1, C.FlexFit_1, new Q.AppDropdownButton(t6, t7, new S._CustomFormFieldState_build_closure1(_this), H.setRuntimeTypeInfo([t8, t10, t11, K.DropdownMenuItem$(L.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s8_, t9), K.DropdownMenuItem$(L.Text$(t1.get$date(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "date", t9)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, type$.AppDropdownButton_legacy_String), _null)], t2)); } t2 = H.setRuntimeTypeInfo([T.Row$(t3, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t2); if (_this._fieldType === "dropdown") { t3 = t1.get$options(t1); t2.push(new T.Flexible(1, C.FlexFit_1, S.DecoratedFormField$(false, _null, false, false, _this._optionsController, _null, true, _null, t1.get$commaSeparatedList(), _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), _null)); } t2.push(T.SizedBox$(_null, 16, _null)); return T.Column$(t2, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } }; S._CustomFormFieldState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_custom_fields$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; S._CustomFormFieldState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_custom_fields$_onChanged()); }, $signature: 10 }; S._CustomFormFieldState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_custom_fields$_onChanged()); }, $signature: 10 }; S._CustomFormFieldState__onChanged_closure.prototype = { call$1: function(part) { return J.trim$0$s(part); }, $signature: 15 }; S._CustomFormFieldState_build_closure.prototype = { call$1: function(value) { return null; }, $signature: 20 }; S._CustomFormFieldState_build_closure0.prototype = { call$0: function() { var t1 = this.$this._widget; return t1.onTaxesChanged$1(!t1.taxesEnabled); }, $signature: 9 }; S._CustomFormFieldState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new S._CustomFormFieldState_build__closure(t1, value)); }, $signature: 8 }; S._CustomFormFieldState_build__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.value; t1._fieldType = t2; if (!J.$eq$(t2, "dropdown")) t1._optionsController.set$text(0, ""); t1._custom_fields$_onChanged$0(); }, $signature: 1 }; S.__CustomFieldsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; M.CustomFieldsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.CustomFieldsScreen_build_closure(), M.custom_fields_vm_CustomFieldsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_CustomFieldsVM); } }; M.CustomFieldsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new S.CustomFields(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2482 }; M.CustomFieldsVM.prototype = { get$company: function() { return this.company; } }; M.CustomFieldsVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; M.CustomFieldsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new M.CustomFieldsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; M.CustomFieldsVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; V.DataVisualizations.prototype = { createState$0: function() { return new V._DataVisualizationsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; V._DataVisualizationsState.prototype = { dispose$0: function(_) { C.JSArray_methods.forEach$1(this._data_visualizations$_controllers, new V._DataVisualizationsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = H.setRuntimeTypeInfo([_this._data_visualizations$_firstNameController], type$.JSArray_legacy_TextEditingController); _this._data_visualizations$_controllers = t1; C.JSArray_methods.forEach$1(t1, new V._DataVisualizationsState_didChangeDependencies_closure(_this)); C.JSArray_methods.forEach$1(_this._data_visualizations$_controllers, new V._DataVisualizationsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _data_visualizations$_onChanged$0: function() { }, build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = T.SizedBox$(_null, _null, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "data_visualizations"); return K.EditScaffold$(_null, _null, t2, _null, _null, _null, false, _null, _null, _null, _null, t1 == null ? "" : t1); } }; V._DataVisualizationsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_data_visualizations$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; V._DataVisualizationsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_data_visualizations$_onChanged()); }, $signature: 10 }; V._DataVisualizationsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_data_visualizations$_onChanged()); }, $signature: 10 }; M.DataVisualizationsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.DataVisualizationsScreen_build_closure(), M.data_visualizations_vm_DataVisualizationsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DataVisualizationsVM); } }; M.DataVisualizationsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new V.DataVisualizations(null); }, $signature: 2483 }; M.DataVisualizationsVM.prototype = {}; R.DeviceSettings.prototype = { createState$0: function() { return new R._DeviceSettingsState(new N.LabeledGlobalKey("_deviceSettings", type$.LabeledGlobalKey_legacy_FormState), null, C._StateLifecycle_0); } }; R._DeviceSettingsState.prototype = { initState$0: function() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; _this._device_settings$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(settingsUIState.tabIndex, 2, _this); _this._device_settings$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_device_settings$_onTabChanged()), false); }, _device_settings$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._device_settings$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._device_settings$_controller.removeListener$1(0, _this.get$_device_settings$_onTabChanged()); _this._device_settings$_controller.dispose$0(0); _this._device_settings$_focusNode.dispose$0(0); _this.super$__DeviceSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _this = this, _null = null, _s12_ = "persist_data", _s2_ = "en", _s33_ = "disabling_may_improve_performance", _s32_ = "enabling_may_degrade_performance", _s16_ = "end_all_sessions", _s18_ = "status_color_theme", _s16_0 = "load_color_theme", _s9_ = "clear_all", _s8_ = "contrast", _s13_ = "export_colors", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, prefState = state.prefState, t2 = D.getLayout(context), t3 = t1.localeCode, t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "device_settings"); t4 = L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = state.uiState.settingsUIState.updatedAt; t6 = type$.JSArray_legacy_Widget; t4 = E.AppBar$(_null, _null, t2 === C.AppLayout_mobile, _null, _null, E.TabBar$(_this._device_settings$_controller, _null, false, new D.ValueKey(t5, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$options(t1)), E.Tab$(_null, t1.get$colors())], t6)), 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t4, _null, _null, _null, 1, _null); t5 = _this._device_settings$_controller; t2 = _this._device_settings$_focusNode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "layout"); if (t7 == null) t7 = ""; t8 = prefState.appLayout; t9 = t1.get$mobile(); t7 = H.setRuntimeTypeInfo([K.BoolDropdownButton$(t1.get$desktop(), t9, _null, _null, t7, _null, new R._DeviceSettingsState_build_closure(viewModel, context), _null, t8 === C.AppLayout_mobile)], t6); if (t8 === C.AppLayout_desktop) { t8 = t1.get$menuSidebar(); t9 = prefState.menuSidebarMode; t10 = t1.get$float(t1); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "collapse"); if (t11 == null) t11 = ""; t9 = K.BoolDropdownButton$(t11, t10, _null, _null, t8, _null, new R._DeviceSettingsState_build_closure0(viewModel, context), _null, t9 === C.AppSidebarMode_float); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "history_sidebar"); if (t8 == null) t8 = ""; t10 = prefState.historySidebarMode; t11 = t1.get$float(t1); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "show_or_hide"); if (t12 == null) t12 = ""; C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([t9, K.BoolDropdownButton$(t12, t11, _null, _null, t8, _null, new R._DeviceSettingsState_build_closure1(viewModel, context), _null, t10 === C.AppSidebarMode_float)], t6)); } t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "list_long_press"); if (t8 == null) t8 = ""; t9 = prefState.longPressSelectionIsDefault; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "show_actions"); if (t10 == null) t10 = ""; t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "start_multiselect"); if (t11 == null) t11 = ""; t7.push(K.BoolDropdownButton$(t11, t10, _null, _null, t8, _null, new R._DeviceSettingsState_build_closure2(viewModel, context), _null, !t9)); t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "rows_per_page"); t8 = t9 == null ? "" : t9; t9 = type$.MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_int; t7.push(new Q.AppDropdownButton(t8, prefState.rowsPerPage, new R._DeviceSettingsState_build_closure3(viewModel, context), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo([10, 25, 50], type$.JSArray_legacy_int), new R._DeviceSettingsState_build_closure4(), t9), true, t9._eval$1("ListIterable.E")), _null, true, _null, _null, type$.AppDropdownButton_legacy_int)); t7 = Y.FormCard$(_null, t7, _null, 4, false, _null, false, _null); t9 = B.FutureBuilder$(new R._DeviceSettingsState_build_closure5(t1, prefState, viewModel), viewModel.authenticationSupported, type$.legacy_bool); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s12_); t8 = L.Text$(t8 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s12_) : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = prefState.persistData; if (t10) { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s33_); if (t11 == null) t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s33_); } else { t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s32_); if (t11 == null) t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s32_); } t11 = L.Text$(t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new R._DeviceSettingsState_build_closure6(viewModel, context), L.Icon$(C.IconData_58705_MaterialIcons_null_false, _null, _null), t11, t8, t10); t8 = L.Icon$(C.IconData_58291_MaterialIcons_null_false, _null, _null); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s16_); t7 = H.setRuntimeTypeInfo([t7, Y.FormCard$(_null, H.setRuntimeTypeInfo([t9, t10, new T.Builder(new R._DeviceSettingsState_build_closure7(t1, state, viewModel), _null), Q.ListTile$(false, _null, _null, true, false, _null, t8, _null, new R._DeviceSettingsState_build_closure8(context, viewModel), false, _null, _null, _null, _null, L.Text$(t11 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s16_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t6), _null, 4, false, _null, true, _null)], t6); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "dark_mode"); t8 = L.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = prefState.enableDarkMode; t10 = L.Icon$(C.IconData_58236_MaterialIcons_null_false, _null, _null); t9 = O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new R._DeviceSettingsState_build_closure9(viewModel, context), t10, _null, t8, t9); t8 = T.SizedBox$(_null, 16, _null); t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s18_); if (t10 == null) t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s18_); t11 = prefState.colorTheme; t12 = $.$get$colorThemesMap(); t12 = t12.get$keys(t12); t13 = type$.legacy_DropdownMenuItem_legacy_String; t12 = H.MappedIterable_MappedIterable(t12, new R._DeviceSettingsState_build_closure10(), H._instanceType(t12)._eval$1("Iterable.E"), t13); t14 = type$.AppDropdownButton_legacy_String; t13 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t9, t8, new Q.AppDropdownButton(t10, t11, new R._DeviceSettingsState_build_closure11(viewModel, context), P.List_List$of(P.List_List$of(t12, true, H._instanceType(t12)._eval$1("Iterable.E")), true, t13), _null, true, "", _null, t14)], t6), _null, 4, false, _null, false, _null); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s16_0); t8 = t12 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s16_0) : t12; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s9_); t10 = type$.legacy_String; t9 = K.DropdownMenuItem$(L.Text$(t9 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s9_) : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s9_, t10); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s8_); t8 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t8, "", new R._DeviceSettingsState_build_closure12(viewModel, context, prefState, state), H.setRuntimeTypeInfo([t9, K.DropdownMenuItem$(L.Text$(t11 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s8_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s8_, t10)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, t14)], t6); t9 = type$.MappedListIterable_of_legacy_String_and_legacy_FormColorPicker; C.JSArray_methods.addAll$1(t8, P.List_List$of(new H.MappedListIterable(C.List_soA, new R._DeviceSettingsState_build_closure13(t1, prefState, viewModel, context), t9), true, t9._eval$1("ListIterable.E"))); t8.push(T.SizedBox$(_null, 20, _null)); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s13_); if (t3 == null) t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _s2_), _s13_); t8.push(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(B.OutlinedButton$(L.Text$(t3.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new R._DeviceSettingsState_build_closure14(prefState, t1)), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(B.OutlinedButton$(L.Text$(t1.get$importColors().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new R._DeviceSettingsState_build_closure15(context, t1, prefState, viewModel)), 1)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); return M.Scaffold$(t4, _null, new X.AppTabForm(t2, _this._device_settings$_formKey, H.setRuntimeTypeInfo([new X.ScrollableListView(t7, _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([t13, Y.FormCard$(_null, t8, _null, 4, false, _null, true, _null)], t6), _null, _null, false, _null)], t6), t5, _null, _null), _null, _null, _null, _null, _null); } }; R._DeviceSettingsState_build_closure.prototype = { call$1: function(value) { var t1 = value ? C.AppLayout_mobile : C.AppLayout_desktop; this.viewModel.onLayoutChanged.call$2(this.context, t1); }, $signature: 20 }; R._DeviceSettingsState_build_closure0.prototype = { call$1: function(value) { var t1 = value ? C.AppSidebarMode_float : C.AppSidebarMode_collapse; this.viewModel.onMenuModeChanged.call$2(this.context, t1); }, $signature: 20 }; R._DeviceSettingsState_build_closure1.prototype = { call$1: function(value) { var t1 = value ? C.AppSidebarMode_float : C.AppSidebarMode_visible; this.viewModel.onHistoryModeChanged.call$2(this.context, t1); }, $signature: 20 }; R._DeviceSettingsState_build_closure2.prototype = { call$1: function(value) { this.viewModel.onLongPressSelectionIsDefault.call$2(this.context, !value); }, $signature: 20 }; R._DeviceSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onRowsPerPageChanged.call$2(this.context, value); }, $signature: 10 }; R._DeviceSettingsState_build_closure4.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; R._DeviceSettingsState_build_closure5.prototype = { call$2: function(context, snapshot) { var t2, t3, _null = null, t1 = snapshot.data; if (t1 != null && J.$eq$(t1, true)) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "biometric_authentication"); t1 = L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t2 = this.prefState.requireAuthentication; t3 = L.Icon$(t2 ? C._MdiIconData_wMy : C._MdiIconData_ouN, _null, _null); return O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new R._DeviceSettingsState_build__closure7(this.viewModel, context), t3, _null, t1, t2); } else return T.SizedBox$(_null, _null, _null); }, $signature: 2484 }; R._DeviceSettingsState_build__closure7.prototype = { call$1: function(value) { return this.viewModel.onRequireAuthenticationChanged.call$2(this.context, value); }, $signature: 12 }; R._DeviceSettingsState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onPersistDataChanged.call$2(this.context, value); }, $signature: 12 }; R._DeviceSettingsState_build_closure7.prototype = { call$1: function(context) { var _null = null, t1 = this.localization; return Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(C.IconData_58644_MaterialIcons_null_false, _null, _null), _null, new R._DeviceSettingsState_build__closure5(this.viewModel, context), false, _null, _null, new E.LiveText(_null, new R._DeviceSettingsState_build__closure6(t1, this.state), _null, _null), _null, L.Text$(t1.get$refreshData(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null); }, $signature: 2485 }; R._DeviceSettingsState_build__closure6.prototype = { call$0: function() { var t1 = J.$add$ansx(this.localization.get$lastUpdated(), ": "), t2 = this.state, t3 = t2.uiState.selectedCompanyIndex; t3 = C.JSNumber_methods.round$0(J.$index$asx(t2.userCompanyStates._list, t3).lastUpdated / 1000); return t1 + E.format(P.DateTime$fromMillisecondsSinceEpoch(t3 * 1000, false), null); }, "call*": "call$0", $requiredArgCount: 0, $signature: 150 }; R._DeviceSettingsState_build__closure5.prototype = { call$0: function() { this.viewModel.onRefreshTap.call$1(this.context); }, $signature: 1 }; R._DeviceSettingsState_build_closure8.prototype = { call$0: function() { var t1 = this.context; O.confirmCallback(false, new R._DeviceSettingsState_build__closure4(this.viewModel, t1), t1, null, false, null); }, $signature: 1 }; R._DeviceSettingsState_build__closure4.prototype = { call$1: function(_) { this.viewModel.onLogoutTap.call$1(this.context); }, $signature: 7 }; R._DeviceSettingsState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onDarkModeChanged.call$2(this.context, value); }, $signature: 12 }; R._DeviceSettingsState_build_closure10.prototype = { call$1: function(key) { var _null = null; return K.DropdownMenuItem$(T.Row$(H.setRuntimeTypeInfo([T.SizedBox$(L.Text$(A.toTitleCase(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, 120), T.Expanded$(M.Container$(_null, _null, C.Clip_0, $.$get$colorThemesMap().$index(0, key).colorInfo, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), T.Expanded$(M.Container$(_null, _null, C.Clip_0, $.$get$colorThemesMap().$index(0, key).colorPrimary, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), T.Expanded$(M.Container$(_null, _null, C.Clip_0, $.$get$colorThemesMap().$index(0, key).colorSuccess, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), T.Expanded$(M.Container$(_null, _null, C.Clip_0, $.$get$colorThemesMap().$index(0, key).colorWarning, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), T.Expanded$(M.Container$(_null, _null, C.Clip_0, $.$get$colorThemesMap().$index(0, key).colorDanger, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), key, type$.legacy_String); }, $signature: 36 }; R._DeviceSettingsState_build_closure11.prototype = { call$1: function(value) { return this.viewModel.onColorThemeChanged.call$2(this.context, value); }, $signature: 10 }; R._DeviceSettingsState_build_closure12.prototype = { call$1: function(value) { var _this = this, t1 = J.getInterceptor$(value); if (t1.$eq(value, "clear_all")) _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new R._DeviceSettingsState_build__closure2())); else if (t1.$eq(value, "contrast")) _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new R._DeviceSettingsState_build__closure3(_this.state.prefState.enableDarkMode))); }, $signature: 8 }; R._DeviceSettingsState_build__closure2.prototype = { call$1: function(b) { J.clear$0$ax(b.get$_safeMap()); return b; }, $signature: 300 }; R._DeviceSettingsState_build__closure3.prototype = { call$1: function(b) { var t1 = this.enableDarkMode ? "#090909" : "#F9F9F9", t2 = type$.legacy_String; return b.addAll$1(0, P.LinkedHashMap_LinkedHashMap$_literal(["sidebar_active_background_color", "#444444", "sidebar_active_font_color", "#FFFFFF", "sidebar_inactive_background_color", "#2F2F2F", "sidebar_inactive_font_color", "#FFFFFF", "invoice_header_background_color", "#777777", "invoice_header_font_color", "#FFFFFF", "table_alternate_row_background_color", t1], t2, t2)); }, $signature: 2486 }; R._DeviceSettingsState_build_closure13.prototype = { call$1: function(selector) { var _this = this, t1 = _this.localization.lookup$1(selector), t2 = _this.prefState; return A.FormColorPicker$(J.$index$asx(t2.customColors._map$_map, selector), t1, new R._DeviceSettingsState_build__closure1(_this.viewModel, _this.context, t2, selector)); }, $signature: 2487 }; R._DeviceSettingsState_build__closure1.prototype = { call$1: function(value) { var _this = this; _this.viewModel.onCustomColorsChanged.call$2(_this.context, _this.prefState.customColors.rebuild$1(new R._DeviceSettingsState_build___closure0(_this.selector, value))); }, $signature: 7 }; R._DeviceSettingsState_build___closure0.prototype = { call$1: function(b) { var t1 = this.value; if (t1 == null) t1 = ""; b.$indexSet(0, this.selector, t1); return t1; }, $signature: 685 }; R._DeviceSettingsState_build_closure14.prototype = { call$0: function() { var t1 = type$.MappedListIterable_of_legacy_String_and_legacy_String, colors = P.List_List$of(new H.MappedListIterable(C.List_soA, new R._DeviceSettingsState_build__closure0(this.prefState), t1), true, t1._eval$1("ListIterable.E")); T.Clipboard_setData(new T.ClipboardData(C.JSArray_methods.join$1(colors, ","))); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", C.JSArray_methods.join$1(colors, ","))); }, $signature: 1 }; R._DeviceSettingsState_build__closure0.prototype = { call$1: function(selector) { var t1 = J.$index$asx(this.prefState.customColors._map$_map, selector); return t1 == null ? "" : t1; }, $signature: 15 }; R._DeviceSettingsState_build_closure15.prototype = { call$0: function() { var _this = this, t1 = _this.context, t2 = _this.localization; O.fieldCallback(new R._DeviceSettingsState_build__closure(_this.prefState, _this.viewModel, t1), t1, t2.get$colors(), null, null, t2.get$importColors()); }, $signature: 1 }; R._DeviceSettingsState_build__closure.prototype = { call$1: function(value) { var i, t1, t2, t3, t4, colors = H.setRuntimeTypeInfo(value.split(","), type$.JSArray_String), customColors = this.prefState.customColors; for (i = 0; i < colors.length; ++i) { customColors.toString; t1 = customColors.$ti; t1._eval$1("_BuiltMap<1,2>")._as(customColors); t2 = customColors._mapFactory; t1 = t1._eval$1("@<1>")._bind$1(t1._rest[1]); t3 = new A.MapBuilder(t2, customColors._map$_map, customColors, t1._eval$1("MapBuilder<1,2>")); new R._DeviceSettingsState_build___closure(i, colors).call$1(t3); customColors = t3._mapOwner; if (customColors == null) { t4 = t3.__MapBuilder__map; if (t4 === $) t4 = H.throwExpression(H.LateError$fieldNI("_map")); customColors = new A._BuiltMap(t2, t4, t1._eval$1("@<1>")._bind$1(t1._rest[1])._eval$1("_BuiltMap<1,2>")); t3._mapOwner = customColors; } } this.viewModel.onCustomColorsChanged.call$2(this.context, customColors); }, $signature: 7 }; R._DeviceSettingsState_build___closure.prototype = { call$1: function(b) { var t1 = this.i, t2 = C.List_soA[t1]; t1 = this.colors[t1]; b.$indexSet(0, t2, t1); return t1; }, $signature: 685 }; R.__DeviceSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; L.DeviceSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.DeviceSettingsScreen_build_closure(), L.device_settings_vm_DeviceSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_DeviceSettingsVM); } }; L.DeviceSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new R.DeviceSettings(viewModel, null); }, $signature: 2489 }; L.DeviceSettingsVM.prototype = {}; L.DeviceSettingsVM_fromStore_closure.prototype = { call$1: function(context) { return O.showRefreshDataDialog(context, true); }, $signature: 29 }; L.DeviceSettingsVM_fromStore_closure0.prototype = { call$1: function(context) { var completer, _s18_ = "ended_all_sessions", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), _s18_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s18_); completer = O.snackBarCompleter(context, t1, false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new B.UserLogoutAll(completer)); }, $signature: 14 }; L.DeviceSettingsVM_fromStore_closure1.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure5(context, value); }, "call*": "call$2", $requiredArgCount: 2, $call$body$DeviceSettingsVM_fromStore_closure5: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1, t2, t3; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t2 = value ? "dark" : "light"; t3 = type$.legacy_String; t2 = M.UpdateUserPreferences$(null, t2, value ? A.BuiltMap_BuiltMap(C.Map_empty0, t3, t3) : A.BuiltMap_BuiltMap(C.Map_so4CA, t3, t3), value, null, null, null, null, null, null, null, null, null, null, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.UpdatedSetting()); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 447 }; L.DeviceSettingsVM_fromStore_closure7.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure0(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure0: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = M.UpdateUserPreferences$(null, null, null, null, null, null, null, value, null, null, null, null, null, null, null); J.$index$asx($async$self.store.get$_dispatchers(), 0).call$1(t1); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 447 }; L.DeviceSettingsVM_fromStore_closure4.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure3(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure3: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().prefState.menuSidebarMode === value) { // goto return $async$goto = 1; break; } t2 = M.UpdateUserPreferences$(null, null, null, null, null, null, null, null, value, null, null, null, null, null, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 683 }; L.DeviceSettingsVM_fromStore_closure5.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure2(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure2: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().prefState.historySidebarMode === value) { // goto return $async$goto = 1; break; } t2 = M.UpdateUserPreferences$(null, null, null, null, value, null, null, null, null, null, null, null, null, null, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 683 }; L.DeviceSettingsVM_fromStore_closure6.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure1(context, value); }, "call*": "call$2", $requiredArgCount: 2, $call$body$DeviceSettingsVM_fromStore_closure1: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().prefState.colorTheme !== value) { t2 = M.UpdateUserPreferences$(null, value, null, null, null, null, null, null, null, null, null, null, null, null, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); } // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 2492 }; L.DeviceSettingsVM_fromStore_closure10.prototype = { call$2: function(context, value) { var _null = null, t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2493 }; L.DeviceSettingsVM_fromStore_closure3.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure4(context, value); }, $call$body$DeviceSettingsVM_fromStore_closure4: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t2, t1; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; if (t1.get$_store$_state().prefState.appLayout === value) { // goto return $async$goto = 1; break; } t2 = M.UpdateUserPreferences$(value, null, null, null, null, null, null, null, null, null, null, null, null, null, null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new L.DeviceSettingsVM_fromStore__closure(value, t1)); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 2494 }; L.DeviceSettingsVM_fromStore__closure.prototype = { call$1: function(duration) { var t1 = this.store; if (this.value === C.AppLayout_mobile) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new G.ViewDashboard(false, null)); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.ViewMainScreen()); }, $signature: 45 }; L.DeviceSettingsVM_fromStore_closure8.prototype = { call$2: function(context, value) { return this.$call$body$DeviceSettingsVM_fromStore_closure(context, value); }, "call*": "call$2", $requiredArgCount: 2, $call$body$DeviceSettingsVM_fromStore_closure: function(context, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, e, t1, exception, authenticated, $async$exception; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start authenticated = false; $async$handler = 3; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "authenticate_to_change_setting"); if (t1 == null) t1 = ""; $async$goto = 6; return P._asyncAwait(new L.LocalAuthentication().authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs(true, t1, false, true), $async$call$2); case 6: // returning from await. authenticated = $async$result; $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; e = H.unwrapException($async$exception); P.print(e); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally if (authenticated) { t1 = M.UpdateUserPreferences$(null, null, null, null, null, null, null, null, null, null, null, value, null, null, null); J.$index$asx($async$self.store.get$_dispatchers(), 0).call$1(t1); } // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 447 }; L.DeviceSettingsVM_fromStore_closure11.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.legacy_bool), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], exception, enable, $async$exception; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start enable = false; $async$handler = 4; $async$goto = 7; return P._asyncAwait(new L.LocalAuthentication().get$canCheckBiometrics(), $async$call$0); case 7: // returning from await. enable = $async$result; $async$handler = 2; // goto after finally $async$goto = 6; break; case 4: // catch $async$handler = 3; $async$exception = $async$currentError; H.unwrapException($async$exception); // goto after finally $async$goto = 6; break; case 3: // uncaught // goto rethrow $async$goto = 2; break; case 6: // after finally $async$returnValue = enable; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 30 }; L.DeviceSettingsVM_fromStore_closure2.prototype = { call$2: function(context, customColors) { var _null = null, t1 = this.store, t2 = M.UpdateUserPreferences$(_null, _null, customColors, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.UpdatedSetting()); }, $signature: 688 }; L.DeviceSettingsVM_fromStore_closure9.prototype = { call$2: function(context, value) { var _null = null, t1 = this.store, t2 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, value, _null, _null, _null, _null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(t2); if (value) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new B.UserLoginSuccess()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2495 }; N.EmailSettings.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new N._EmailSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; N._EmailSettingsState.prototype = { initState$0: function() { this.super$State$initState(); this._email_settings$_focusNode = O.FocusScopeNode$(true, null, false); }, dispose$0: function(_) { var _this = this; _this._email_settings$_focusNode.dispose$0(0); C.JSArray_methods.forEach$1(_this._email_settings$_controllers, new N._EmailSettingsState_dispose_closure(_this)); _this.super$State$dispose(0); }, didChangeDependencies$0: function() { var settings, _this = this, t1 = _this._fromNameController, t2 = _this._replyToEmailController, t3 = _this._replyToNameController, t4 = _this._bccEmailController, t5 = _this._emailStyleCustomController, t6 = _this._emailSignatureController, t7 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6], type$.JSArray_legacy_TextEditingController); _this._email_settings$_controllers = t7; C.JSArray_methods.forEach$1(t7, new N._EmailSettingsState_didChangeDependencies_closure(_this)); settings = _this._widget.viewModel.settings; t1.set$text(0, settings.emailFromName); t2.set$text(0, settings.replyToEmail); t3.set$text(0, settings.replyToName); t4.set$text(0, settings.bccEmail); t5.set$text(0, settings.emailStyleCustom); t6.set$text(0, settings.emailSignature); C.JSArray_methods.forEach$1(_this._email_settings$_controllers, new N._EmailSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _email_settings$_onChanged$0: function() { var _this = this, settings = _this._widget.viewModel.settings.rebuild$1(new N._EmailSettingsState__onChanged_closure(_this)); if (!J.$eq$(settings, _this._widget.viewModel.settings)) _this._widget.viewModel.onSettingsChanged.call$1(settings); }, _onSavePressed$1: function(context) { var t1, viewModel = this._widget.viewModel, settings = viewModel.settings, sendingUserId = settings.gmailSendingUserId; if (sendingUserId == null) sendingUserId = ""; if (settings.emailSendingMethod === "gmail" && sendingUserId.length === 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "select_a_gmail_user"); O.showErrorDialog(false, context, t1 == null ? "" : t1); return; } viewModel.onSavePressed.call$1(context); }, build$1: function(_, context) { var disableSave, t6, t7, t8, t9, t10, t11, t12, t13, t14, _list, i, t15, _this = this, _null = null, _s28_ = "use_web_app_to_connect_gmail", _s9_ = "from_name", _s9_0 = "send_time", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, t2 = $.$get$memoizedGmailUserList(), t3 = state.userCompanyStates, t4 = state.uiState, t5 = t4.selectedCompanyIndex, gmailUserIds = t2.call$1(J.$index$asx(t3._list, t5).userState.map), gmailSendingUserId = settings.gmailSendingUserId, gmailSendingUserId0 = gmailSendingUserId == null ? "" : gmailSendingUserId; t2 = settings.emailSendingMethod; t3 = t2 === "gmail"; if (t3) disableSave = gmailSendingUserId0.length === 0 || gmailSendingUserId0 === "0"; else disableSave = false; t5 = t1.localeCode; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "email_settings"); if (t6 == null) t6 = ""; t7 = disableSave ? _null : _this.get$_onSavePressed(); t8 = $.$get$_EmailSettingsState__formKey(); t9 = _this._email_settings$_focusNode; t10 = type$.JSArray_legacy_Widget; t11 = H.setRuntimeTypeInfo([], t10); if (state.authState.get$isHosted()) { t4 = t4.settingsUIState.entityType; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "send_from_gmail"); if (t12 == null) t12 = ""; t2 = t2 == null ? _null : t3; t2 = H.setRuntimeTypeInfo([K.BoolDropdownButton$(_null, _null, _null, C._MdiIconData_Pmk, t12, _null, new N._EmailSettingsState_build_closure(viewModel, settings), t4 !== C.EntityType_company, t2)], t10); if (t3) if (J.get$isEmpty$asx(gmailUserIds)) { t3 = H.setRuntimeTypeInfo([T.SizedBox$(_null, 16, _null)], t10); if (D.isApple()) { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s28_); t3.push(L.Text$(t4 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s28_) : t4, _null, _null, _null, _null, _null, _null, C.TextAlign_2, _null, _null)); } else t3.push(B.OutlinedButton$(L.Text$(t1.get$connectGmail().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new N._EmailSettingsState_build_closure0(context))); C.JSArray_methods.addAll$1(t2, t3); } else t2.push(new T.Padding(C.EdgeInsets_0_10_0_0, Y.DynamicSelector$(true, gmailSendingUserId, gmailUserIds, C.EntityType_user, _null, _null, _null, new N._EmailSettingsState_build_closure1(viewModel, settings), new N._EmailSettingsState_build_closure2()), _null)); C.JSArray_methods.addAll$1(t11, H.setRuntimeTypeInfo([Y.FormCard$(_null, t2, C.CrossAxisAlignment_3, 4, false, _null, false, _null)], t10)); } t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s9_); if (t2 == null) t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s9_); t3 = viewModel.onSavePressed; t2 = S.DecoratedFormField$(false, _null, false, false, _this._fromNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "reply_to_name"); if (t4 == null) t4 = ""; t4 = S.DecoratedFormField$(false, _null, false, false, _this._replyToNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null); t12 = S.DecoratedFormField$(false, _null, false, false, _this._replyToEmailController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_5_null_null, t1.get$replyToEmail(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null); t13 = t1.get$bccEmail(); t3 = S.DecoratedFormField$(false, _null, false, false, _this._bccEmailController, _null, true, _null, t1.get$commaSeparatedList(), _null, _null, false, false, _null, C.TextInputType_5_null_null, t13, _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), _s9_0); if (t13 == null) t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s9_0); t14 = settings.entitySendTime; _list = J.JSArray_JSArray$allocateGrowable(24, type$.legacy_int); for (i = 0; i < 24; ++i) _list[i] = i; t15 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t11.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([t2, t4, t12, t3, new Q.AppDropdownButton(t13, t14, new N._EmailSettingsState_build_closure3(viewModel, settings), P.List_List$of(new H.MappedListIterable(_list, new N._EmailSettingsState_build_closure4(viewModel), t15), true, t15._eval$1("ListIterable.E")), true, true, _null, _null, type$.AppDropdownButton_legacy_int)], t10), _null, 4, false, _null, false, _null)); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "email_design"); t2 = t15 == null ? "" : t15; t3 = settings.emailStyle; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "plain"); t12 = type$.legacy_String; t12 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t2, t3, new N._EmailSettingsState_build_closure5(viewModel, settings), H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), "plain", t12), K.DropdownMenuItem$(L.Text$(t1.get$light(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "light", t12), K.DropdownMenuItem$(L.Text$(t1.get$dark(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "dark", t12), K.DropdownMenuItem$(L.Text$(t1.get$custom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "custom", t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t10); if (t3 === "custom") { t2 = T.SizedBox$(_null, 10, _null); t3 = t1.get$custom(); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t5), "add_body_variable_message"); C.JSArray_methods.addAll$1(t12, H.setRuntimeTypeInfo([t2, S.DecoratedFormField$(false, _null, false, false, _this._emailStyleCustomController, _null, true, _null, C.JSString_methods.replaceFirst$2(t5 == null ? "" : t5, ":body", "$body"), _null, _null, false, false, _null, C.TextInputType_1_null_null, t3, 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t10)); } t12.push(S.DecoratedFormField$(false, _null, false, false, _this._emailSignatureController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$emailSignature(), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); t11.push(Y.FormCard$(_null, t12, _null, 4, false, _null, false, _null)); t11.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([K.BoolDropdownButton$(_null, _null, _null, C._MdiIconData_agj, t1.get$attachPdf(), _null, new N._EmailSettingsState_build_closure6(viewModel, settings), _null, settings.pdfEmailAttachment), K.BoolDropdownButton$(_null, _null, _null, C._MdiIconData_jVE, t1.get$attachDocuments(), _null, new N._EmailSettingsState_build_closure7(viewModel, settings), _null, settings.documentEmailAttachment), K.BoolDropdownButton$(_null, _null, _null, C._MdiIconData_aAu, t1.get$attachUbl(), _null, new N._EmailSettingsState_build_closure8(viewModel, settings), _null, settings.ublEmailAttachment)], t10), _null, 4, false, _null, true, _null)); return K.EditScaffold$(_null, _null, new X.AppForm(t8, t11, _null, t9, _null), _null, _null, _null, false, _null, _null, t7, _null, t6); } }; N._EmailSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_email_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; N._EmailSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_email_settings$_onChanged()); }, $signature: 10 }; N._EmailSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_email_settings$_onChanged()); }, $signature: 10 }; N._EmailSettingsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._fromNameController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailFromName = t2; t2 = J.trim$0$s(t1._replyToEmailController._change_notifier$_value.text); b.get$_settings_model$_$this()._replyToEmail = t2; t2 = J.trim$0$s(t1._replyToNameController._change_notifier$_value.text); b.get$_settings_model$_$this()._replyToName = t2; t2 = J.trim$0$s(t1._bccEmailController._change_notifier$_value.text); b.get$_settings_model$_$this()._bccEmail = t2; t2 = J.trim$0$s(t1._emailStyleCustomController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailStyleCustom = t2; t1 = J.trim$0$s(t1._emailSignatureController._change_notifier$_value.text); b.get$_settings_model$_$this()._emailSignature = t1; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure5(value))); }, $signature: 12 }; N._EmailSettingsState_build__closure5.prototype = { call$1: function(b) { var t1 = this.value; if (t1 == null) t1 = null; else t1 = t1 ? "gmail" : "default"; b.get$_settings_model$_$this()._emailSendingMethod = t1; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure0.prototype = { call$0: function() { var _null = null; J.$index$asx(O.StoreProvider_of(this.context, type$.legacy_AppState).get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, true, "user_details", false, _null)); }, $signature: 1 }; N._EmailSettingsState_build_closure1.prototype = { call$1: function(userId) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure4(userId))); }, $signature: 5 }; N._EmailSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._gmailSendingUserId = this.userId; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure2.prototype = { call$1: function(entity) { type$.legacy_UserEntity._as(entity); return entity.get$fullName() + " \u2022 " + entity.email; }, $signature: 41 }; N._EmailSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure3(value))); }, $signature: 10 }; N._EmailSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._entitySendTime = this.value; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure4.prototype = { call$1: function(value) { var timeLabel, _null = null, hour = value + 1, t1 = this.viewModel.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; if (J.$index$asx(t2._list, t1).userCompany.company.settings.enableMilitaryTime) timeLabel = "" + hour + ":00"; else { timeLabel = hour > 12 ? "" + (hour - 12) + ":00 " : "" + hour + ":00 "; timeLabel = hour < 12 || hour === 24 ? timeLabel + "AM" : timeLabel + "PM"; } return K.DropdownMenuItem$(L.Text$(timeLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), hour, type$.legacy_int); }, $signature: 165 }; N._EmailSettingsState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure2(value))); }, $signature: 10 }; N._EmailSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailStyle = this.value; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure1(value))); }, $signature: 12 }; N._EmailSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._pdfEmailAttachment = this.value; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure7.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure0(value))); }, $signature: 12 }; N._EmailSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._documentEmailAttachment = this.value; return b; }, $signature: 13 }; N._EmailSettingsState_build_closure8.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._EmailSettingsState_build__closure(value))); }, $signature: 12 }; N._EmailSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._ublEmailAttachment = this.value; return b; }, $signature: 13 }; D.EmailSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new D.EmailSettingsScreen_build_closure(), D.email_settings_vm_EmailSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_EmailSettingsVM); } }; D.EmailSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new N.EmailSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2496 }; D.EmailSettingsVM.prototype = {}; D.EmailSettingsVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; D.EmailSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new D.EmailSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; D.EmailSettingsVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, settings = settingsUIState.get$settings(); if (settings.emailStyle === "custom" && !J.contains$1$asx(settings.emailStyleCustom, "$body")) { t1 = _this.context; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "body_variable_missing"); O.showErrorDialog(false, t1, C.JSString_methods.replaceFirst$2(t2 == null ? "" : t2, ":body", "$body")); return; } switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; F.ExpenseSettings.prototype = { createState$0: function() { return new F._ExpenseSettingsState(C._StateLifecycle_0); } }; F._ExpenseSettingsState.prototype = { initState$0: function() { this.super$State$initState(); this._expense_settings$_focusNode = O.FocusScopeNode$(true, null, false); }, dispose$0: function(_) { this._expense_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "expense_settings"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = $.$get$_ExpenseSettingsState__formKey(); t6 = this._expense_settings$_focusNode; t7 = K.Theme_of(context).accentColor; t8 = L.Text$(t1.get$shouldBeInvoiced(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = company.markExpensesInvoiceable; t7 = O.SwitchListTile$(t7, _null, new F._ExpenseSettingsState_build_closure(viewModel, company), _null, L.Text$(t1.get$shouldBeInvoicedHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t8, t9); t8 = K.Theme_of(context).accentColor; t9 = L.Text$(t1.get$markPaid(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = company.markExpensesPaid; t8 = O.SwitchListTile$(t8, _null, new F._ExpenseSettingsState_build_closure0(viewModel, company), _null, L.Text$(t1.get$markPaidHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, t10); t9 = K.Theme_of(context).accentColor; t10 = L.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.invoiceExpenseDocuments; t12 = type$.JSArray_legacy_Widget; t11 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t7, t8, O.SwitchListTile$(t9, _null, new F._ExpenseSettingsState_build_closure1(viewModel, company), _null, L.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11)], t12), _null, 4, false, _null, false, _null)], t12); if (company.numberOfItemTaxRates > 0) { t7 = t1.get$enterTaxes(); t8 = t1.get$byAmount(); t9 = t1.get$byRate(); t10 = company.calculateExpenseTaxByAmount; t7 = K.BoolDropdownButton$(t9, t8, _null, _null, t7, _null, new F._ExpenseSettingsState_build_closure2(viewModel, company), _null, t10); t8 = T.SizedBox$(_null, 16, _null); t9 = K.Theme_of(context).accentColor; t10 = L.Text$(t1.get$inclusiveTaxes(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.expenseInclusiveTaxes; t11.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([t7, t8, O.SwitchListTile$(t9, _null, new F._ExpenseSettingsState_build_closure3(viewModel, company), _null, L.Text$("\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t13)], t12), _null, 4, false, _null, false, _null)); } t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "configure_categories"); if (t1 == null) t1 = ""; t11.push(new T.Padding(C.EdgeInsets_16_0_16_0, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new F._ExpenseSettingsState_build_closure4(viewModel, context), _null, _null), _null)); return K.EditScaffold$(_null, _null, new X.AppForm(t5, t11, _null, t6, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; F._ExpenseSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new F._ExpenseSettingsState_build__closure3(value))); }, $signature: 12 }; F._ExpenseSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._markExpensesInvoiceable = this.value; return b; }, $signature: 22 }; F._ExpenseSettingsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new F._ExpenseSettingsState_build__closure2(value))); }, $signature: 12 }; F._ExpenseSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_company_model$_$this()._markExpensesPaid = this.value; return b; }, $signature: 22 }; F._ExpenseSettingsState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new F._ExpenseSettingsState_build__closure1(value))); }, $signature: 12 }; F._ExpenseSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_company_model$_$this()._invoiceExpenseDocuments = this.value; return b; }, $signature: 22 }; F._ExpenseSettingsState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new F._ExpenseSettingsState_build__closure0(value))); }, $signature: 12 }; F._ExpenseSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_company_model$_$this()._calculateExpenseTaxByAmount = this.value; return b; }, $signature: 22 }; F._ExpenseSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new F._ExpenseSettingsState_build__closure(value))); }, $signature: 12 }; F._ExpenseSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_company_model$_$this()._expenseInclusiveTaxes = this.value; return b; }, $signature: 22 }; F._ExpenseSettingsState_build_closure4.prototype = { call$0: function() { return this.viewModel.onConfigureCategoriesPressed.call$1(this.context); }, $signature: 9 }; N.ExpenseSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new N.ExpenseSettingsScreen_build_closure(), N.expense_settings_vm_ExpenseSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ExpenseSettingsVM); } }; N.ExpenseSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new F.ExpenseSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2498 }; N.ExpenseSettingsVM.prototype = { get$company: function() { return this.company; } }; N.ExpenseSettingsVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; N.ExpenseSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new N.ExpenseSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; N.ExpenseSettingsVM_fromStore__closure.prototype = { call$0: function() { var t1 = this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, t2 = this.context, completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; N.ExpenseSettingsVM_fromStore_closure1.prototype = { call$1: function(context) { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "expense_category", false, _null)); }, $signature: 14 }; F.GeneratedNumbers.prototype = { createState$0: function() { return new F._GeneratedNumbersState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, true), null, C._StateLifecycle_0); } }; F._GeneratedNumbersState.prototype = { initState$0: function() { var t2, t3, company, settingsUIState, _this = this, t1 = {}; _this.super$State$initState(); t2 = _this._widget.viewModel.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = J.$index$asx(t3._list, t2).userCompany.company; t1.tabs = 2; C.JSArray_methods.forEach$1(H.setRuntimeTypeInfo([C.EntityType_invoice, C.EntityType_payment, C.EntityType_quote, C.EntityType_credit, C.EntityType_recurringInvoice, C.EntityType_project, C.EntityType_task, C.EntityType_vendor, C.EntityType_expense, C.EntityType_recurringExpense], type$.JSArray_legacy_EntityType), new F._GeneratedNumbersState_initState_closure(t1, company)); _this._generated_numbers$_focusNode = O.FocusScopeNode$(true, null, false); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = t1.tabs; t1 = U.TabController$(settingsUIState.tabIndex, t1, _this); _this._generated_numbers$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_generated_numbers$_onTabChanged()), false); }, _generated_numbers$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._generated_numbers$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._generated_numbers$_focusNode.dispose$0(0); _this._generated_numbers$_controller.removeListener$1(0, _this.get$_generated_numbers$_onTabChanged()); _this._generated_numbers$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new F._GeneratedNumbersState_dispose_closure(_this)); _this.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = _this._recurringPrefixController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._generated_numbers$_controllers = t2; C.JSArray_methods.forEach$1(t2, new F._GeneratedNumbersState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.settings.recurringNumberPrefix); C.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new F._GeneratedNumbersState_didChangeDependencies_closure0(_this)); _this.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _generated_numbers$_onChanged$0: function() { this._generated_numbers$_debouncer.run$1(new F._GeneratedNumbersState__onChanged_closure(this)); }, _generated_numbers$_onSavePressed$1: function(context) { var t1 = {}, viewModel = this._widget.viewModel, settings = viewModel.settings, values = H.setRuntimeTypeInfo([settings.clientNumberPattern, settings.invoiceNumberPattern, settings.paymentNumberPattern, settings.quoteNumberPattern, settings.creditNumberPattern, settings.recurringInvoiceNumberPattern, settings.projectNumberPattern, settings.taskNumberPattern, settings.vendorNumberPattern, settings.expenseNumberPattern, settings.recurringExpenseNumberPattern], type$.JSArray_legacy_String); t1.isValid = true; C.JSArray_methods.forEach$1(values, new F._GeneratedNumbersState__onSavePressed_closure(t1)); if (!t1.isValid) { E.showDialog(true, new F._GeneratedNumbersState__onSavePressed_closure0(), context, null, true, type$.legacy_ErrorDialog); return; } viewModel.onSavePressed.call$1(context); }, build$1: function(_, context) { var t5, t6, t7, t8, t9, t10, _list, i, i0, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, _s10_ = "when_saved", _s9_ = "when_sent", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, settings = viewModel.settings, state = viewModel.state, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = J.$index$asx(t2._list, t4).userCompany.company; t4 = t1.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "generated_numbers"); if (t2 == null) t2 = ""; t3 = t3.settingsUIState.updatedAt; t5 = _this._generated_numbers$_controller; t6 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$settings()), E.Tab$(_null, t1.get$clients(t1))], t6); if (company.isModuleEnabled$1(C.EntityType_invoice)) t7.push(E.Tab$(_null, t1.get$invoices())); if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) t7.push(E.Tab$(_null, t1.get$recurringInvoices())); if (company.isModuleEnabled$1(C.EntityType_payment)) t7.push(E.Tab$(_null, t1.get$payments())); if (company.isModuleEnabled$1(C.EntityType_quote)) t7.push(E.Tab$(_null, t1.get$quotes(t1))); if (company.isModuleEnabled$1(C.EntityType_credit)) t7.push(E.Tab$(_null, t1.get$credits())); if (company.isModuleEnabled$1(C.EntityType_project)) t7.push(E.Tab$(_null, t1.get$projects())); if (company.isModuleEnabled$1(C.EntityType_task)) t7.push(E.Tab$(_null, t1.get$tasks())); if (company.isModuleEnabled$1(C.EntityType_vendor)) t7.push(E.Tab$(_null, t1.get$vendors())); if (company.isModuleEnabled$1(C.EntityType_expense)) t7.push(E.Tab$(_null, t1.get$expenses())); if (company.isModuleEnabled$1(C.EntityType_recurringExpense)) t7.push(E.Tab$(_null, t1.get$recurringExpenses())); t3 = E.TabBar$(t5, _null, true, new D.ValueKey(t3, type$.ValueKey_legacy_int), _null, t7); t5 = _this._generated_numbers$_controller; t7 = $.$get$_GeneratedNumbersState__formKey(); t8 = _this._generated_numbers$_focusNode; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "number_padding"); if (t9 == null) t9 = ""; t10 = settings.counterPadding; _list = J.JSArray_JSArray$allocateGrowable(10, type$.legacy_int); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t11 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t11 = P.List_List$of(new H.MappedListIterable(_list, new F._GeneratedNumbersState_build_closure(), t11), true, t11._eval$1("ListIterable.E")); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "generate_number"); if (t12 == null) t12 = ""; t13 = settings.counterNumberApplied; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), _s10_); t15 = type$.legacy_String; t14 = K.DropdownMenuItem$(L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s10_, t15); t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), _s9_); t17 = type$.JSArray_legacy_DropdownMenuItem_legacy_String; t18 = type$.AppDropdownButton_legacy_String; t16 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t9, t10, new F._GeneratedNumbersState_build_closure0(viewModel, settings), t11, _null, true, _null, _null, type$.AppDropdownButton_legacy_int), new Q.AppDropdownButton(t12, t13, new F._GeneratedNumbersState_build_closure1(viewModel, settings), H.setRuntimeTypeInfo([t14, K.DropdownMenuItem$(L.Text$(t16 == null ? "" : t16, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s9_, t15)], t17), _null, true, "", _null, t18)], t6); if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) t16.push(S.DecoratedFormField$(false, _null, false, false, _this._recurringPrefixController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$recurringPrefix(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); if (company.isModuleEnabled$1(C.EntityType_quote)) t16.push(K.BoolDropdownButton$(_null, _null, _null, C.IconData_57744_MaterialIcons_null_false, t1.get$sharedInvoiceQuoteCounter(), _null, new F._GeneratedNumbersState_build_closure2(viewModel, settings), _null, settings.sharedInvoiceQuoteCounter)); if (company.isModuleEnabled$1(C.EntityType_credit)) t16.push(K.BoolDropdownButton$(_null, _null, _null, C.IconData_57744_MaterialIcons_null_false, t1.get$sharedInvoiceCreditCounter(), _null, new F._GeneratedNumbersState_build_closure3(viewModel, settings), _null, settings.sharedInvoiceCreditCounter)); t9 = t1.get$resetCounter(); t10 = settings.resetCounterFrequencyId; t17 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$never(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "0", t15)], t17); t15 = C.Map_tOn4d.map$2$1(0, new F._GeneratedNumbersState_build_closure4(t1), t15, type$.legacy_DropdownMenuItem_legacy_String); t15 = t15.get$values(t15); C.JSArray_methods.addAll$1(t17, P.List_List$of(t15, true, H._instanceType(t15)._eval$1("Iterable.E"))); t16.push(new Q.AppDropdownButton(t9, t10, new F._GeneratedNumbersState_build_closure5(viewModel, settings), t17, _null, true, "", _null, t18)); t1 = H.Primitives_parseInt(t10 == null ? "0" : t10, _null); if ((t1 == null ? 0 : t1) > 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "next_reset"); if (t1 == null) t1 = ""; t16.push(K.DatePicker$(false, _null, _null, t1, _null, new F._GeneratedNumbersState_build_closure6(viewModel, settings), settings.resetCounterDate, _null)); } t1 = H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t16, _null, 4, false, _null, true, _null)], t6), _null, _null, false, _null), new F.EntityNumberSettings(settings.clientNumberCounter, settings.clientNumberPattern, new F._GeneratedNumbersState_build_closure7(viewModel, settings), false, false, _null)], t6); if (company.isModuleEnabled$1(C.EntityType_invoice)) t1.push(new F.EntityNumberSettings(settings.invoiceNumberCounter, settings.invoiceNumberPattern, new F._GeneratedNumbersState_build_closure8(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) t1.push(new F.EntityNumberSettings(settings.recurringInvoiceNumberCounter, settings.recurringInvoiceNumberPattern, new F._GeneratedNumbersState_build_closure9(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_payment)) t1.push(new F.EntityNumberSettings(settings.paymentNumberCounter, settings.paymentNumberPattern, new F._GeneratedNumbersState_build_closure10(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_quote)) t1.push(new F.EntityNumberSettings(settings.quoteNumberCounter, settings.quoteNumberPattern, new F._GeneratedNumbersState_build_closure11(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_credit)) t1.push(new F.EntityNumberSettings(settings.creditNumberCounter, settings.creditNumberPattern, new F._GeneratedNumbersState_build_closure12(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_project)) t1.push(new F.EntityNumberSettings(settings.projectNumberCounter, settings.projectNumberPattern, new F._GeneratedNumbersState_build_closure13(viewModel, settings), false, true, _null)); if (company.isModuleEnabled$1(C.EntityType_task)) t1.push(new F.EntityNumberSettings(settings.taskNumberCounter, settings.taskNumberPattern, new F._GeneratedNumbersState_build_closure14(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(C.EntityType_vendor)) t1.push(new F.EntityNumberSettings(settings.vendorNumberCounter, settings.vendorNumberPattern, new F._GeneratedNumbersState_build_closure15(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(C.EntityType_expense)) t1.push(new F.EntityNumberSettings(settings.expenseNumberCounter, settings.expenseNumberPattern, new F._GeneratedNumbersState_build_closure16(viewModel, settings), false, false, _null)); if (company.isModuleEnabled$1(C.EntityType_recurringExpense)) t1.push(new F.EntityNumberSettings(settings.recurringExpenseNumberCounter, settings.recurringExpenseNumberPattern, new F._GeneratedNumbersState_build_closure17(viewModel, settings), false, false, _null)); return K.EditScaffold$(_null, t3, new X.AppTabForm(t8, t7, t1, t5, _null, _null), _null, _null, _null, false, _null, _null, _this.get$_generated_numbers$_onSavePressed(), _null, t2); } }; F._GeneratedNumbersState_initState_closure.prototype = { call$1: function(entityType) { if (this.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, $signature: 201 }; F._GeneratedNumbersState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_generated_numbers$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; F._GeneratedNumbersState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 10 }; F._GeneratedNumbersState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 10 }; F._GeneratedNumbersState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this, settings = t1._widget.viewModel.settings.rebuild$1(new F._GeneratedNumbersState__onChanged__closure(t1)); if (!J.$eq$(settings, t1._widget.viewModel.settings)) t1._widget.viewModel.onSettingsChanged.call$1(settings); }, $signature: 1 }; F._GeneratedNumbersState__onChanged__closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._recurringPrefixController._change_notifier$_value.text); b.get$_settings_model$_$this()._recurringNumberPrefix = t1; return b; }, $signature: 13 }; F._GeneratedNumbersState__onSavePressed_closure.prototype = { call$1: function(value) { var containsCounter, containsId; if (value == null) value = ""; containsCounter = C.JSString_methods.contains$1(value, "{$client_counter}") || C.JSString_methods.contains$1(value, "{$group_counter}"); containsId = C.JSString_methods.contains$1(value, "{$client_id_number}") || C.JSString_methods.contains$1(value, "{$client_number}"); if (containsCounter && !containsId) this._box_0.isValid = false; }, $signature: 7 }; F._GeneratedNumbersState__onSavePressed_closure0.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "counter_pattern_error"); if (t1 == null) t1 = ""; return new M.ErrorDialog(H.stringReplaceAllUnchecked(t1, ":", "$"), false, null); }, $signature: 21 }; F._GeneratedNumbersState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure15(value))); }, $signature: 10 }; F._GeneratedNumbersState_build__closure15.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._counterPadding = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(C.JSString_methods.$mul("0", value - 1) + "1", _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; F._GeneratedNumbersState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure14(value))); }, $signature: 10 }; F._GeneratedNumbersState_build__closure14.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._counterNumberApplied = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure13(value))); }, $signature: 12 }; F._GeneratedNumbersState_build__closure13.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._sharedInvoiceQuoteCounter = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure12(value))); }, $signature: 12 }; F._GeneratedNumbersState_build__closure12.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._sharedInvoiceCreditCounter = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure11(value))); }, $signature: 10 }; F._GeneratedNumbersState_build__closure11.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._resetCounterFrequencyId = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure4.prototype = { call$2: function(id, frequency) { var _null = null; return new P.MapEntry(id, K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 449 }; F._GeneratedNumbersState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure10(value))); }, $signature: 5 }; F._GeneratedNumbersState_build__closure10.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._resetCounterDate = this.value; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure7.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure9(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure9.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientNumberCounter = this.counter; b.get$_settings_model$_$this()._clientNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure8.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure8(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure8.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._invoiceNumberCounter = this.counter; b.get$_settings_model$_$this()._invoiceNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure9.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure7(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure7.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._recurringInvoiceNumberCounter = this.counter; b.get$_settings_model$_$this()._recurringInvoiceNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure10.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure6(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure6.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._paymentNumberCounter = this.counter; b.get$_settings_model$_$this()._paymentNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure11.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure5(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure5.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._quoteNumberCounter = this.counter; b.get$_settings_model$_$this()._quoteNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure12.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure4(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure4.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._creditNumberCounter = this.counter; b.get$_settings_model$_$this()._creditNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure13.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure3(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure3.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._projectNumberCounter = this.counter; b.get$_settings_model$_$this()._projectNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure14.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure2(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._taskNumberCounter = this.counter; b.get$_settings_model$_$this()._taskNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure15.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure1(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._vendorNumberCounter = this.counter; b.get$_settings_model$_$this()._vendorNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure16.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure0(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._expenseNumberCounter = this.counter; b.get$_settings_model$_$this()._expenseNumberPattern = this.pattern; return b; }, $signature: 13 }; F._GeneratedNumbersState_build_closure17.prototype = { call$2: function(counter, pattern) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new F._GeneratedNumbersState_build__closure(counter, pattern))); }, $signature: 74 }; F._GeneratedNumbersState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._recurringExpenseNumberCounter = this.counter; b.get$_settings_model$_$this()._recurringExpenseNumberPattern = this.pattern; return b; }, $signature: 13 }; F.EntityNumberSettings.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new F._EntityNumberSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, true), C._StateLifecycle_0); }, onChanged$2: function(arg0, arg1) { return this.onChanged.call$2(arg0, arg1); } }; F._EntityNumberSettingsState.prototype = { dispose$0: function(_) { C.JSArray_methods.forEach$1(this._generated_numbers$_controllers, new F._EntityNumberSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = _this._counterController, t2 = _this._patternController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._generated_numbers$_controllers = t3; C.JSArray_methods.forEach$1(t3, new F._EntityNumberSettingsState_didChangeDependencies_closure(_this)); t3 = _this._widget.counterValue; t1.set$text(0, H.S(t3 == null ? "" : t3)); t2.set$text(0, _this._widget.patternValue); C.JSArray_methods.forEach$1(_this._generated_numbers$_controllers, new F._EntityNumberSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _generated_numbers$_onChanged$0: function() { this._generated_numbers$_debouncer.run$1(new F._EntityNumberSettingsState__onChanged_closure(this)); }, build$1: function(_, context) { var t3, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "number_pattern"); if (t2 == null) t2 = ""; t2 = S.DecoratedFormField$(false, _null, false, false, _this._patternController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "number_counter"); if (t3 == null) t3 = ""; t4 = type$.JSArray_legacy_Widget; t3 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t2, S.DecoratedFormField$(false, _null, false, false, _this._counterController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t4), _null, 4, false, _null, false, _null); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "view_date_formats"); if (t1 == null) t1 = ""; return new X.ScrollableListView(H.setRuntimeTypeInfo([t3, new T.Padding(C.EdgeInsets_16_20_16_8, B.OutlinedButton$(L.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new F._EntityNumberSettingsState_build_closure()), _null), new F.HelpPanel(false, _this._widget.showClientFields, new F._EntityNumberSettingsState_build_closure0(_this), _null)], t4), _null, _null, false, _null); } }; F._EntityNumberSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_generated_numbers$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; F._EntityNumberSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 10 }; F._EntityNumberSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_generated_numbers$_onChanged()); }, $signature: 10 }; F._EntityNumberSettingsState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this, counter = Y.parseInt(J.trim$0$s(t1._counterController._change_notifier$_value.text), true), pattern = J.trim$0$s(t1._patternController._change_notifier$_value.text); t1 = t1._widget; if (counter != t1.counterValue || pattern !== t1.patternValue) t1.onChanged$2(counter, pattern); }, $signature: 1 }; F._EntityNumberSettingsState_build_closure.prototype = { call$0: function() { return T.launch("https://www.php.net/manual/en/datetime.format.php", null, false); }, $signature: 30 }; F._EntityNumberSettingsState_build_closure0.prototype = { call$1: function(field) { var newValue, t1 = this.$this._patternController, t2 = t1._change_notifier$_value, t3 = t2.selection.extentOffset, newOffset = field.length, t4 = t3 >= 0; t2 = t2.text; if (t4) { newValue = C.JSString_methods.$add(J.substring$2$s(t2, 0, t3), field) + C.JSString_methods.substring$1(t2, t3); newOffset = t3 + newOffset; } else newValue = J.$add$ansx(t2, field); t1.set$text(0, newValue); if (t4) t1.set$selection(X.TextSelection$fromPosition(new P.TextPosition(newOffset, C.TextAffinity_1))); }, $signature: 7 }; F.HelpPanel.prototype = { build$1: function(_, context) { var t1 = type$.WhereIterable_legacy_String, t2 = t1._eval$1("MappedIterable"); t2 = H.MappedIterable_MappedIterable(new H.MappedIterable(new H.WhereIterable(new H.WhereIterable(H.setRuntimeTypeInfo(["counter", "client_counter", "group_counter", "year", "date:format", "client_number", "client_id_number", "client_custom1", "client_custom2", "client_custom3", "client_custom4", "vendor_number", "vendor_id_number", "vendor_custom1", "vendor_custom2", "vendor_custom3", "vendor_custom4", "user_id", "user_custom1", "user_custom2", "user_custom3", "user_custom4"], type$.JSArray_legacy_String), new F.HelpPanel_build_closure(this), t1), new F.HelpPanel_build_closure0(this), t1._eval$1("WhereIterable")), new F.HelpPanel_build_closure1(), t2), new F.HelpPanel_build_closure2(this), t2._eval$1("Iterable.E"), type$.legacy_InkWell); return Y.FormCard$(null, P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")), C.CrossAxisAlignment_3, 4, false, null, true, null); } }; F.HelpPanel_build_closure.prototype = { call$1: function(field) { var t1 = J.startsWith$1$s(field, "vendor"); return !t1; }, $signature: 16 }; F.HelpPanel_build_closure0.prototype = { call$1: function(field) { var t1; if (!this.$this.showClientFields) t1 = !J.startsWith$1$s(field, "client") && !C.JSString_methods.startsWith$1(field, "group"); else t1 = true; return t1; }, $signature: 16 }; F.HelpPanel_build_closure1.prototype = { call$1: function(field) { return "{$" + H.S(field) + "}"; }, $signature: 15 }; F.HelpPanel_build_closure2.prototype = { call$1: function(field) { var _null = null; return R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_0_6_0_6, L.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 F.HelpPanel_build__closure(this.$this, field), _null, _null, _null, _null, _null); }, $signature: 589 }; F.HelpPanel_build__closure.prototype = { call$0: function() { return this.$this.onFieldPressed.call$1(this.field); }, $signature: 9 }; F.__GeneratedNumbersState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; F.GeneratedNumbersScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.GeneratedNumbersScreen_build_closure(), F.generated_numbers_vm_GeneratedNumbersVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_GeneratedNumbersVM); } }; F.GeneratedNumbersScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new F.GeneratedNumbers(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2500 }; F.GeneratedNumbersVM.prototype = { get$company: function() { return this.company; } }; F.GeneratedNumbersVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; F.GeneratedNumbersVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new F.GeneratedNumbersVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; F.GeneratedNumbersVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; D.ImportExport.prototype = { createState$0: function() { return new D._ImportExportState(C.ImportType_csv, C._StateLifecycle_0); } }; D._ImportExportState.prototype = { initState$0: function() { this.super$State$initState(); this._import_export$_focusNode = O.FocusScopeNode$(true, null, false); }, dispose$0: function(_) { this._import_export$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = D.getLayout(context), t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "import_export"); t3 = L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = type$.JSArray_legacy_Widget; t3 = E.AppBar$(H.setRuntimeTypeInfo([], t4), _null, t2 === C.AppLayout_mobile, _null, _null, _null, 1, _null, false, _null, false, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, t3, _null, _null, _null, 1, _null); t2 = $.$get$_ImportExportState__formKey(); t5 = _this._import_export$_focusNode; t6 = H.setRuntimeTypeInfo([], t4); t7 = _this._import_export$_response; t8 = _this._import_export$_importType; if (t7 == null) t6.push(new D._FileImport(t8, new D._ImportExportState_build_closure(_this), new D._ImportExportState_build_closure0(_this, t1), _null)); else t6.push(new D._FileMapper(t8, t7, new D._ImportExportState_build_closure1(_this), t2, new D.ValueKey(t7.hash, type$.ValueKey_legacy_String))); t4 = H.setRuntimeTypeInfo([], t4); if (_this._isExporting) t4.push(U.LinearProgressIndicator$()); else t4.push(new D.AppButton(_null, C._MdiIconData_wMy1, t1.get$$export().toUpperCase(), new D._ImportExportState_build_closure2(_this, context, t1), _null, _null)); t6.push(Y.FormCard$(_null, t4, C.CrossAxisAlignment_3, 4, false, _null, true, _null)); return M.Scaffold$(t3, _null, new X.AppForm(t2, _null, new X.ScrollableListView(t6, _null, _null, false, _null), t5, _null), _null, _null, _null, _null, _null); } }; D._ImportExportState_build_closure0.prototype = { call$1: function(response) { var t1 = P.LinkedHashSet_LinkedHashSet$_empty(type$.legacy_Set_void), t2 = this.$this; if (t2._import_export$_importType === C.ImportType_csv) t1.add$1(0, P.LinkedHashSet_LinkedHashSet$_literal([t2.setState$1(new D._ImportExportState_build__closure3(t2, response))], type$.void)); else t1.add$1(0, P.LinkedHashSet_LinkedHashSet$_literal([M.showToast(this.localization.get$startedImport())], type$.legacy_ToastFuture)); return t1; }, $signature: 2501 }; D._ImportExportState_build__closure3.prototype = { call$0: function() { return this.$this._import_export$_response = this.response; }, $signature: 2502 }; D._ImportExportState_build_closure.prototype = { call$1: function(importType) { var t1 = this.$this; return t1.setState$1(new D._ImportExportState_build__closure4(t1, importType)); }, $signature: 2503 }; D._ImportExportState_build__closure4.prototype = { call$0: function() { return this.$this._import_export$_importType = this.importType; }, $signature: 2504 }; D._ImportExportState_build_closure1.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new D._ImportExportState_build__closure2(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; D._ImportExportState_build__closure2.prototype = { call$0: function() { return this.$this._import_export$_response = null; }, $signature: 1 }; D._ImportExportState_build_closure2.prototype = { call$0: function() { var t1 = this.context, state = O.StoreProvider_of(t1, type$.legacy_AppState).get$_store$_state(), credentials = state.get$credentials(state), url = credentials.url + "/export", t2 = this.$this; t2.setState$1(new D._ImportExportState_build__closure(t2)); new F.WebClient().post$2(url, credentials.token).then$1$1(0, new D._ImportExportState_build__closure0(t2, t1, this.localization), type$.Null).catchError$1(new D._ImportExportState_build__closure1(t2, t1)); }, $signature: 1 }; D._ImportExportState_build__closure.prototype = { call$0: function() { return this.$this._isExporting = true; }, $signature: 19 }; D._ImportExportState_build__closure0.prototype = { call$1: function(result) { var t1 = this.$this; t1.setState$1(new D._ImportExportState_build___closure0(t1)); O.showMessageDialog(this.context, this.localization.get$exportedData(), null); }, $signature: 8 }; D._ImportExportState_build___closure0.prototype = { call$0: function() { return this.$this._isExporting = false; }, $signature: 19 }; D._ImportExportState_build__closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new D._ImportExportState_build___closure(t1)); O.showErrorDialog(false, this.context, H.S(error)); }, $signature: 8 }; D._ImportExportState_build___closure.prototype = { call$0: function() { return this.$this._isExporting = false; }, $signature: 19 }; D._FileImport.prototype = { createState$0: function() { return new D._FileImportState(P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_MultipartFile), C._StateLifecycle_0); }, onImportTypeChanged$1: function(arg0) { return this.onImportTypeChanged.call$1(arg0); }, onUploaded$1: function(arg0) { return this.onUploaded.call$1(arg0); } }; D._FileImportState.prototype = { uploadJsonFile$0: function() { var t2, t3, state, credentials, url, _this = this, _s17_ = "json_file_missing", _s19_ = "json_option_missing", t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._multipartFiles; if (!t2.containsKey$1(0, "json")) { t2 = _this._framework$_element; t2.toString; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s17_); O.showErrorDialog(false, t2, t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s17_) : t1); return; } else if (!_this._importJsonData && !_this._importJsonSettings) { t2 = _this._framework$_element; t2.toString; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s19_); O.showErrorDialog(false, t2, t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s19_) : t1); return; } t3 = _this._framework$_element; t3.toString; state = O.StoreProvider_of(t3, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/import_json?"; if (_this._importJsonSettings) url += "&import_settings=true"; if (_this._importJsonData) url += "&import_data=true"; _this.setState$1(new D._FileImportState_uploadJsonFile_closure(_this)); t2 = t2.get$values(t2); new F.WebClient().post$3$multipartFiles(url, credentials.token, P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E"))).then$1$1(0, new D._FileImportState_uploadJsonFile_closure0(_this, t1), type$.Null).catchError$1(new D._FileImportState_uploadJsonFile_closure1(_this)); }, uploadFile$0: function() { var t2, t3, t4, state, credentials, url, _this = this, t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._widget.importType; if (t2 !== C.ImportType_csv) for (t2 = t2.get$uploadParts(), t2 = t2.get$entries(t2), t2 = t2.get$iterator(t2), t3 = _this._multipartFiles; t2.moveNext$0();) { t4 = t2.get$current(t2); if (!t3.containsKey$1(0, t4.get$key(t4))) { t2 = _this._framework$_element; t2.toString; t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "required_files_missing"); O.showErrorDialog(false, t2, t3 == null ? "" : t3); return; } } t2 = _this._framework$_element; t2.toString; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); t2 = credentials.url; url = _this._widget.importType === C.ImportType_csv ? t2 + "/preimport" : t2 + "/import"; _this.setState$1(new D._FileImportState_uploadFile_closure(_this)); t2 = _this._multipartFiles; t2 = t2.get$values(t2); t2 = P.List_List$of(t2, true, H._instanceType(t2)._eval$1("Iterable.E")); t3 = type$.legacy_String; new F.WebClient().post$4$data$multipartFiles(url, credentials.token, P.LinkedHashMap_LinkedHashMap$_literal(["import_type", J.toString$0$(_this._widget.importType)], t3, t3), t2).then$1$1(0, new D._FileImportState_uploadFile_closure0(_this, t1), type$.Null).catchError$1(new D._FileImportState_uploadFile_closure1(_this)); }, build$1: function(_, context) { var t4, t5, t6, children, t7, multipartFile, t8, t9, t10, t11, _this = this, _null = null, _s15_ = "import_settings", _s11_ = "import_data", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "import_type"); t3 = L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = _this._widget.importType; t5 = type$.MappedListIterable_of_legacy_ImportType_and_legacy_DropdownMenuItem_legacy_ImportType; t6 = type$.JSArray_legacy_Widget; children = H.setRuntimeTypeInfo([L.InputDecorator$(_null, new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, _null, _null, _null, _null, 24, true, false, 48, P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo([C.ImportType_csv, C.ImportType_json, C.ImportType_freshbooks, C.ImportType_invoice2go, C.ImportType_invoicely, C.ImportType_waveaccounting, C.ImportType_zoho], type$.JSArray_legacy_ImportType), new D._FileImportState_build_closure(t1), t5), true, t5._eval$1("ListIterable.E")), _null, new D._FileImportState_build_closure0(_this), _null, _null, _null, t4, type$.legacy_ImportType), _null), t3, false, false, false, false, _null, _null)], t6); for (t3 = _this._widget.importType.get$uploadParts(), t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3), t4 = _this._multipartFiles, t5 = type$.ValueKey_legacy_String; t3.moveNext$0();) { t7 = t3.get$current(t3); multipartFile = t4.containsKey$1(0, t7.get$key(t7)) ? t4.$index(0, t7.get$key(t7)) : _null; t8 = t7.get$key(t7); t8 = J.$add$ansx(t8, multipartFile != null ? multipartFile.filename : ""); t9 = t1.lookup$1(t7.get$value(t7)); if (!t4.containsKey$1(0, t7.get$key(t7))) { t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "no_file_selected"); if (t10 == null) t10 = ""; } else { t10 = H.S(t4.$index(0, t7.get$key(t7)).filename) + " \u2022 "; t11 = t4.$index(0, t7.get$key(t7)).length; t10 += t11 > 1000000 ? "" + C.JSNumber_methods.toInt$0(Y.round(t11 / 1000000, 1)) + " MB" : "" + C.JSNumber_methods.toInt$0(Y.round(t11 / 1000, 0)) + " KB"; } t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "select_file"); children.push(T.Row$(H.setRuntimeTypeInfo([new T.Expanded(1, C.FlexFit_0, new S.DecoratedFormField(_null, t9, _null, t10, _null, _null, _null, _null, false, false, false, false, false, _null, _null, _null, _null, _null, _null, C.TextAlign_4, _null, _null, false, false, true, _null, new D.ValueKey(t8, t5)), _null), new T.SizedBox(16, _null, _null, _null), B.OutlinedButton$(new L.Text(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), new D._FileImportState_build_closure1(_this, t7))], t6), C.CrossAxisAlignment_1, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); } children.push(T.SizedBox$(_null, 20, _null)); if (_this._widget.importType === C.ImportType_json) { t3 = K.Theme_of(context).accentColor; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s15_); t3 = O.SwitchListTile$(t3, _null, new D._FileImportState_build_closure2(_this), _null, _null, L.Text$(t4 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s15_) : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._importJsonSettings); t4 = K.Theme_of(context).accentColor; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s11_); C.JSArray_methods.addAll$1(children, H.setRuntimeTypeInfo([t3, O.SwitchListTile$(t4, _null, new D._FileImportState_build_closure3(_this), _null, _null, L.Text$(t2 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s11_) : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._importJsonData)], t6)); } if (_this._import_export$_isLoading) children.push(U.LinearProgressIndicator$()); else { t1 = t1.get$$import(t1); children.push(new D.AppButton(_null, C._MdiIconData_7vC0, t1.toUpperCase(), new D._FileImportState_build_closure4(_this), _null, _null)); } return Y.FormCard$(_null, children, C.CrossAxisAlignment_3, 4, false, _null, false, _null); } }; D._FileImportState_uploadJsonFile_closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = true; }, $signature: 19 }; D._FileImportState_uploadJsonFile_closure0.prototype = { call$1: function(result) { var t1 = this.$this; t1.setState$1(new D._FileImportState_uploadJsonFile__closure0(t1)); M.showToast(this.localization.get$startedImport()); }, $signature: 8 }; D._FileImportState_uploadJsonFile__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._import_export$_isLoading = false; return P.LinkedHashSet_LinkedHashSet$_literal([false, t1._multipartFiles.clear$0(0)], type$.void); }, $signature: 681 }; D._FileImportState_uploadJsonFile_closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new D._FileImportState_uploadJsonFile__closure(t1)); t1 = t1._framework$_element; t1.toString; O.showErrorDialog(false, t1, H.S(error)); }, $signature: 8 }; D._FileImportState_uploadJsonFile__closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = false; }, $signature: 19 }; D._FileImportState_uploadFile_closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = true; }, $signature: 19 }; D._FileImportState_uploadFile_closure0.prototype = { call$1: function(result) { var response, t1 = this.$this; t1.setState$1(new D._FileImportState_uploadFile__closure0(t1)); if (t1._widget.importType !== C.ImportType_csv) M.showToast(this.localization.get$startedImport()); else { response = $.$get$serializers().deserializeWith$1$2($.$get$_$preImportResponseSerializer(), result, type$.legacy_PreImportResponse); t1._widget.onUploaded$1(response); } }, $signature: 8 }; D._FileImportState_uploadFile__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._import_export$_isLoading = false; return P.LinkedHashSet_LinkedHashSet$_literal([false, t1._multipartFiles.clear$0(0)], type$.void); }, $signature: 681 }; D._FileImportState_uploadFile_closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new D._FileImportState_uploadFile__closure(t1)); t1 = t1._framework$_element; t1.toString; O.showErrorDialog(false, t1, H.S(error)); }, $signature: 8 }; D._FileImportState_uploadFile__closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = false; }, $signature: 19 }; D._FileImportState_build_closure0.prototype = { call$1: function(value) { return this.$this._widget.onImportTypeChanged$1(value); }, $signature: 10 }; D._FileImportState_build_closure.prototype = { call$1: function(importType) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(H.S(importType)), _null, _null, _null, _null, _null, _null, _null, _null, _null), importType, type$.legacy_ImportType); }, $signature: 2506 }; D._FileImportState_build_closure1.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, t2, t3, multipartFile, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1._widget.importType === C.ImportType_json) t2 = "files"; else { t2 = $async$self.uploadPart; t2 = C.JSString_methods.$add("files[", t2.get$key(t2)) + "]"; } t3 = type$.JSArray_legacy_String; $async$goto = 2; return P._asyncAwait(Q.pickFile(t1._widget.importType === C.ImportType_json ? H.setRuntimeTypeInfo(["json", "zip"], t3) : H.setRuntimeTypeInfo(["csv"], t3), t2, C.FileType_5), $async$call$0); case 2: // returning from await. multipartFile = $async$result; if (multipartFile != null) t1.setState$1(new D._FileImportState_build__closure1(t1, $async$self.uploadPart, multipartFile)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; D._FileImportState_build__closure1.prototype = { call$0: function() { var t1 = this.uploadPart; this.$this._multipartFiles.$indexSet(0, t1.get$key(t1), this.multipartFile); }, $signature: 1 }; D._FileImportState_build_closure2.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new D._FileImportState_build__closure0(t1, value)); }, $signature: 34 }; D._FileImportState_build__closure0.prototype = { call$0: function() { return this.$this._importJsonSettings = this.value; }, $signature: 19 }; D._FileImportState_build_closure3.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new D._FileImportState_build__closure(t1, value)); }, $signature: 34 }; D._FileImportState_build__closure.prototype = { call$0: function() { return this.$this._importJsonData = this.value; }, $signature: 19 }; D._FileImportState_build_closure4.prototype = { call$0: function() { var t1 = this.$this; if (t1._widget.importType === C.ImportType_json) t1.uploadJsonFile$0(); else t1.uploadFile$0(); }, $signature: 1 }; D._FileMapper.prototype = { createState$0: function() { return new D.__FileMapperState(P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_Map_of_legacy_int_and_legacy_String), C._StateLifecycle_0); }, onCancelPressed$0: function() { return this.onCancelPressed.call$0(); } }; D.__FileMapperState.prototype = { didChangeDependencies$0: function() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, i, field, t10, t11, possible, _this = this; _this.super$State$didChangeDependencies(); t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); for (t2 = J.get$entries$x(_this._widget.response.mappings._map$_map), t2 = t2.get$iterator(t2), t3 = type$.JSArray_legacy_String, t4 = _this._import_export$_mapping, t5 = type$.legacy_String, t6 = type$.legacy_int; t2.moveNext$0();) { t7 = t2.get$current(t2); t8 = t7.get$value(t7).headers._list; t9 = J.getInterceptor$asx(t8); t8 = t9.get$isEmpty(t8) ? D.BuiltList_BuiltList$from(C.List_empty, t5) : t9.$index(t8, 0); if (!t4.containsKey$1(0, t7.get$key(t7))) t4.$indexSet(0, t7.get$key(t7), P.LinkedHashMap_LinkedHashMap$_empty(t6, t5)); for (t8 = t8._list, t9 = J.getInterceptor$asx(t8), i = 0; i < t9.get$length(t8); ++i) { field = t9.$index(t8, i); for (t10 = J.get$iterator$ax(t7.get$value(t7).available._list); t10.moveNext$0();) { t11 = t10.get$current(t10); possible = C.JSArray_methods.get$last(t11.split(".")); possible.toString; if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([possible, H.stringReplaceAllUnchecked(possible, "_", " "), t1.lookup$1(possible)], t3), field.toLowerCase())) J.$indexSet$ax(t4.$index(0, t7.get$key(t7)), i, t11); } } } }, build$1: function(_, context) { var t4, children, t5, t6, t7, t8, t9, t10, t11, i, _this = this, _null = null, t1 = type$.legacy_AppLocalization, t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, t1), response = _this._widget.response, t3 = K.Theme_of(context).accentColor; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, t1).localeCode), "first_row_as_column_names"); t4 = type$.JSArray_legacy_Widget; children = H.setRuntimeTypeInfo([O.SwitchListTile$(t3, _null, new D.__FileMapperState_build_closure(_this), _null, _null, L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._useFirstRowAsHeaders)], t4); for (t1 = J.get$entries$x(response.mappings._map$_map), t1 = t1.get$iterator(t1), t3 = _this._import_export$_mapping, t5 = type$.legacy_String; t1.moveNext$0();) { t6 = t1.get$current(t1); t7 = t2.lookup$1(t6.get$key(t6)); t8 = K.Theme_of(context).textTheme; t9 = _this._useFirstRowAsHeaders; t10 = t2.localeCode; if (t9) { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "column"); if (t9 == null) t9 = ""; } else { t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "sample"); if (t9 == null) t9 = ""; } t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "sample"); if (t11 == null) t11 = ""; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t10), "map_to"); if (t10 == null) t10 = ""; t10 = H.setRuntimeTypeInfo([new T.SizedBox(_null, 25, _null, _null), new L.Text(t7, t8.subtitle1, _null, _null, _null, C.TextOverflow_0, _null, 1, _null, _null), new T.SizedBox(_null, 12, _null, _null), T.Row$(H.setRuntimeTypeInfo([new T.Expanded(1, C.FlexFit_0, new L.Text(t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Expanded(1, C.FlexFit_0, new L.Text(t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Expanded(1, C.FlexFit_0, new L.Text(t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), new T.SizedBox(_null, 12, _null, _null)], t4); i = 0; while (true) { t7 = t6.get$value(t6).headers._list; t8 = J.getInterceptor$asx(t7); if (!(i < J.get$length$asx((t8.get$isEmpty(t7) ? D.BuiltList_BuiltList$from(C.List_empty, t5) : t8.$index(t7, 0))._list))) break; t7 = t6.get$value(t6).headers._list; t8 = J.getInterceptor$asx(t7); t7 = J.$index$asx((t8.get$isEmpty(t7) ? D.BuiltList_BuiltList$from(C.List_empty, t5) : t8.$index(t7, 0))._list, i); t8 = t6.get$value(t6).headers._list; t9 = J.getInterceptor$asx(t8); if (J.get$length$asx((t9.get$length(t8) < 2 ? D.BuiltList_BuiltList$from(C.List_empty, t5) : t9.$index(t8, 1))._list) > i) { t8 = t6.get$value(t6).headers._list; t9 = J.getInterceptor$asx(t8); t8 = J.$index$asx((t9.get$length(t8) < 2 ? D.BuiltList_BuiltList$from(C.List_empty, t5) : t9.$index(t8, 1))._list, i); } else t8 = _null; t9 = t6.get$value(t6).available; t11 = J.$index$asx(t3.$index(0, t6.get$key(t6)), i); if (t11 == null) t11 = ""; t10.push(new D._FieldMapper(t7, t8, t9, t11, new D.__FileMapperState_build_closure0(_this, t6, i), t3.$index(0, t6.get$key(t6)), _null)); ++i; } C.JSArray_methods.addAll$1(children, t10); } t1 = H.setRuntimeTypeInfo([T.SizedBox$(_null, 25, _null)], t4); if (_this._import_export$_isLoading) t1.push(U.LinearProgressIndicator$()); else t1.push(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(B.OutlinedButton$(L.Text$(t2.get$cancel(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null), new D.__FileMapperState_build_closure1(_this)), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(B.OutlinedButton$(L.Text$(t2.get$$import(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null), new D.__FileMapperState_build_closure2(_this, context, t2)), 1)], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); C.JSArray_methods.addAll$1(children, t1); return E.SingleChildScrollView$(new T.Padding(C.EdgeInsets_0_0_0_20, Y.FormCard$(_null, children, C.CrossAxisAlignment_0, 4, false, _null, false, _null), _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); } }; D.__FileMapperState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new D.__FileMapperState_build__closure3(t1, value)); }, $signature: 34 }; D.__FileMapperState_build__closure3.prototype = { call$0: function() { return this.$this._useFirstRowAsHeaders = this.value; }, $signature: 19 }; D.__FileMapperState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new D.__FileMapperState_build__closure2(t1, this.entry, this.i, value)); }, $signature: 7 }; D.__FileMapperState_build__closure2.prototype = { call$0: function() { var _this = this, t1 = _this.$this, t2 = t1._import_export$_mapping, t3 = _this.entry; if (!t2.containsKey$1(0, t3.get$key(t3))) t2.$indexSet(0, t3.get$key(t3), P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_int, type$.legacy_String)); J.$indexSet$ax(t2.$index(0, t3.get$key(t3)), _this.i, _this.value); t1._widget.formKey.get$currentState().validate$0(); }, $signature: 1 }; D.__FileMapperState_build_closure1.prototype = { call$0: function() { return this.$this._widget.onCancelPressed$0(); }, $signature: 9 }; D.__FileMapperState_build_closure2.prototype = { call$0: function() { var t2, state, credentials, url, t3, t4, convertedMapping, t5, t6, t7, t8, importRequest, t1 = this.$this; if (!t1._widget.formKey.get$currentState().validate$0()) return; t2 = this.context; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/import"; t3 = type$.legacy_String; t4 = type$.legacy_ImportRequestMapping; convertedMapping = P.LinkedHashMap_LinkedHashMap$_empty(t3, t4); for (t5 = t1._import_export$_mapping, t5 = t5.get$entries(t5), t5 = t5.get$iterator(t5), t6 = type$.legacy_int; t5.moveNext$0();) { t7 = t5.get$current(t5); t8 = t7.get$key(t7); t7 = A.BuiltMap_BuiltMap(t7.get$value(t7), t6, t3); convertedMapping.$indexSet(0, t8, new B._$ImportRequestMapping(t7)); } t1.setState$1(new D.__FileMapperState_build__closure(t1)); t5 = t1._widget.response.hash; t6 = t1._useFirstRowAsHeaders; importRequest = B._$ImportRequest$_(A.BuiltMap_BuiltMap(convertedMapping, t3, t4), t5, t1._widget.importType.name, t6); new F.WebClient().post$3$data(url, credentials.token, C.C_JsonCodec.encode$1($.$get$serializers().serializeWith$2($.$get$_$importRequestSerializer(), importRequest))).then$1$1(0, new D.__FileMapperState_build__closure0(t1, this.localization), type$.Null).catchError$1(new D.__FileMapperState_build__closure1(t1, t2)); }, $signature: 1 }; D.__FileMapperState_build__closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = true; }, $signature: 19 }; D.__FileMapperState_build__closure0.prototype = { call$1: function(result) { var t1 = this.$this; t1.setState$1(new D.__FileMapperState_build___closure0(t1)); t1._widget.onCancelPressed$0(); M.showToast(this.localization.get$startedImport()); }, $signature: 8 }; D.__FileMapperState_build___closure0.prototype = { call$0: function() { return this.$this._import_export$_isLoading = false; }, $signature: 19 }; D.__FileMapperState_build__closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new D.__FileMapperState_build___closure(t1)); O.showErrorDialog(false, this.context, H.S(error)); }, $signature: 8 }; D.__FileMapperState_build___closure.prototype = { call$0: function() { return this.$this._import_export$_isLoading = false; }, $signature: 19 }; D._FieldMapper.prototype = { build$1: function(_, context) { var t4, t5, t6, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.available, t3 = t2._list, sorted = new Q.CopyOnWriteList(true, t3, H._instanceType(t2)._eval$1("CopyOnWriteList<1>")); sorted.sort$1(0, new D._FieldMapper_build_closure(t1)); t2 = T.Expanded$(L.Text$(_this.field1, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t4 = _this.field2; t4 = T.Expanded$(L.Text$(t4 == null ? "" : t4, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1); t5 = _this.mappedTo; t3 = J.contains$1$asx(t3, t5) ? t5 : _null; t5 = type$.legacy_String; t6 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(T.SizedBox$(_null, _null, _null), "", t5)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); C.JSArray_methods.addAll$1(t6, J.map$1$1$ax(sorted._copy_on_write_list$_list, new D._FieldMapper_build_closure0(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0)); return T.Row$(H.setRuntimeTypeInfo([t2, t4, T.Expanded$(K.DropdownButtonFormField$(true, t6, _this.onMappedToChanged, new D._FieldMapper_build_closure1(sorted, t1), new D._FieldMapper_build_closure2(_this, t1), t3, t5), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); } }; D._FieldMapper_build_closure.prototype = { call$2: function(fieldA, fieldB) { var partsA = fieldA.split("."), partsB = fieldB.split("."), t1 = this.localization; return J.compareTo$1$ns(t1.lookup$1(partsA[1]), t1.lookup$1(partsB[1])); }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; D._FieldMapper_build_closure1.prototype = { call$1: function(context) { var _null = null, t1 = H.setRuntimeTypeInfo([L.Text$("", _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget); C.JSArray_methods.addAll$1(t1, J.map$1$1$ax(this.sorted._copy_on_write_list$_list, new D._FieldMapper_build__closure0(this.localization), type$.legacy_Text).toList$0(0)); return t1; }, $signature: 2507 }; D._FieldMapper_build__closure0.prototype = { call$1: function(field) { var _null = null, t1 = C.JSArray_methods.get$last(field.split(".")); t1.toString; return L.Text$(this.localization.lookup$1(H.stringReplaceAllUnchecked(t1, "_id", "")), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, $signature: 2508 }; D._FieldMapper_build_closure2.prototype = { call$1: function(value) { var t1; if ((value == null ? "" : value).length !== 0) { t1 = J.where$1$ax(J.get$values$x(this.$this.mapping), new D._FieldMapper_build__closure(value)); t1 = t1.get$length(t1) > 1; } else t1 = false; if (t1) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "duplicate_column_mapping"); if (t1 == null) t1 = ""; } else t1 = null; return t1; }, $signature: 15 }; D._FieldMapper_build__closure.prototype = { call$1: function(element) { return element == this.value; }, $signature: 16 }; D._FieldMapper_build_closure0.prototype = { call$1: function(field) { var fieldLabel, fieldType, _null = null, t1 = this.localization, t2 = C.JSArray_methods.get$last(field.split(".")); t2.toString; fieldLabel = t1.lookup$1(H.stringReplaceAllUnchecked(t2, "_id", "")); fieldType = t1.lookup$1(C.JSArray_methods.get$first(field.split("."))); return K.DropdownMenuItem$(L.Text$(H.S(fieldLabel) + " - " + H.S(fieldType), _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), field, type$.legacy_String); }, $signature: 36 }; N.ImportExportScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new N.ImportExportScreen_build_closure(), N.import_export_vm_ImportExportVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ImportExportVM); } }; N.ImportExportScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new D.ImportExport(null); }, $signature: 2509 }; N.ImportExportVM.prototype = {}; Z.InvoiceDesign.prototype = { createState$0: function() { return new Z._InvoiceDesignState(null, C._StateLifecycle_0); } }; Z._InvoiceDesignState.prototype = { initState$0: function() { var settingsUIState, t1, _this = this; _this.super$State$initState(); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; _this._invoice_design$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(settingsUIState.tabIndex, 10, _this); _this._invoice_design$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_invoice_design$_onTabChanged()), false); }, _invoice_design$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._invoice_design$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._invoice_design$_controller.removeListener$1(0, _this.get$_invoice_design$_onTabChanged()); _this._invoice_design$_controller.dispose$0(0); _this._invoice_design$_focusNode.dispose$0(0); _this.super$__InvoiceDesignState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, _this = this, _null = null, _s14_ = "client_details", _s15_ = "company_address", _s15_0 = "invoice_details", _s13_ = "quote_details", _s14_0 = "credit_details", _s15_1 = "product_columns", _s12_ = "task_columns", _s17_ = "city_state_postal", _s17_0 = "postal_city_state", _s16_ = "gross_line_total", _s17_1 = "custom_surcharge1", _s17_2 = "custom_surcharge2", _s17_3 = "custom_surcharge3", _s17_4 = "custom_surcharge4", store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company, t2 = state.uiState, t3 = t2.settingsUIState, t4 = t3.entityType === C.EntityType_company, t5 = t1.get$invoiceDesign(); t3 = t3.updatedAt; t6 = _this._invoice_design$_controller; t7 = t1.localeCode; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "general_settings"); t8 = E.Tab$(_null, t8 == null ? "" : t8); t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s14_); t9 = E.Tab$(_null, t9 == null ? "" : t9); t10 = E.Tab$(_null, t1.get$companyDetails()); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s15_); t11 = E.Tab$(_null, t11 == null ? "" : t11); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s15_0); t12 = E.Tab$(_null, t12 == null ? "" : t12); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s13_); t13 = E.Tab$(_null, t13 == null ? "" : t13); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s14_0); t14 = E.Tab$(_null, t14 == null ? "" : t14); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s15_1); t15 = E.Tab$(_null, t15 == null ? "" : t15); t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), _s12_); t16 = E.Tab$(_null, t16 == null ? "" : t16); t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "total_fields"); t18 = type$.JSArray_legacy_Widget; t17 = E.TabBar$(t6, _null, true, new D.ValueKey(t3, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([t8, t9, t10, t11, t12, t13, t14, t15, t16, E.Tab$(_null, t17 == null ? "" : t17)], t18)); t16 = _this._invoice_design$_controller; t15 = $.$get$_InvoiceDesignState__formKey(); t14 = _this._invoice_design$_focusNode; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "customize_and_preview"); t3 = t13 == null ? "" : t13; t6 = H.setRuntimeTypeInfo([], t18); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t8 = H.setRuntimeTypeInfo([new A.DesignPicker(new Z._InvoiceDesignState_build_closure(_this, viewModel, settings), t1.get$invoiceDesign(), settings.defaultInvoiceDesignId, _null)], t18); if (t4) if (_this._wasInvoiceDesignChanged) { t9 = state.userCompanyStates; t10 = t2.selectedCompanyIndex; t10 = J.$index$asx(t9._list, t10).userCompany.isAdmin; t9 = t10; } else t9 = false; else t9 = false; if (t9) t8.push(new T.Padding(C.EdgeInsets_0_0_0_8, D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_2, _null, _null, new Z._InvoiceDesignState_build_closure0(_this), L.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllInvoiceDesigns), _null)); C.JSArray_methods.addAll$1(t6, t8); } if (company.isModuleEnabled$1(C.EntityType_quote)) { t8 = H.setRuntimeTypeInfo([new A.DesignPicker(new Z._InvoiceDesignState_build_closure1(_this, viewModel, settings), t1.get$quoteDesign(), settings.defaultQuoteDesignId, _null)], t18); if (t4) if (_this._wasQuoteDesignChanged) { t9 = state.userCompanyStates; t10 = t2.selectedCompanyIndex; t10 = J.$index$asx(t9._list, t10).userCompany.isAdmin; t9 = t10; } else t9 = false; else t9 = false; if (t9) t8.push(new T.Padding(C.EdgeInsets_0_0_0_8, D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_2, _null, _null, new Z._InvoiceDesignState_build_closure2(_this), L.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllQuoteDesigns), _null)); C.JSArray_methods.addAll$1(t6, t8); } if (company.isModuleEnabled$1(C.EntityType_credit)) { t8 = H.setRuntimeTypeInfo([new A.DesignPicker(new Z._InvoiceDesignState_build_closure3(_this, viewModel, settings), t1.get$creditDesign(), settings.defaultCreditDesignId, _null)], t18); if (t4) if (_this._wasCreditDesignChanged) { t4 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t4._list, t2).userCompany.isAdmin; } else t2 = false; else t2 = false; if (t2) t8.push(new T.Padding(C.EdgeInsets_0_0_0_8, D.CheckboxListTile$(K.Theme_of(context).accentColor, _null, C.ListTileControlAffinity_2, _null, _null, new Z._InvoiceDesignState_build_closure4(_this), L.Text$(t1.get$updateAllRecords(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _this._updateAllCreditDesigns), _null)); C.JSArray_methods.addAll$1(t6, t8); } t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "page_layout"); if (t2 == null) t2 = ""; t4 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t8 = t4._eval$1("ListIterable.E"); t9 = type$.AppDropdownButton_legacy_String; t6.push(new Q.AppDropdownButton(t2, settings.pageLayout, new Z._InvoiceDesignState_build_closure5(viewModel, settings), P.List_List$of(new H.MappedListIterable(C.List_portrait_landscape, new Z._InvoiceDesignState_build_closure6(t1), t4), true, t8), _null, true, "", _null, t9)); t6.push(new Q.AppDropdownButton(t1.get$pageSize(), settings.pageSize, new Z._InvoiceDesignState_build_closure7(viewModel, settings), P.List_List$of(new H.MappedListIterable(C.List_mRX, new Z._InvoiceDesignState_build_closure8(t1), t4), true, t8), _null, true, "", _null, t9)); t8 = t1.get$fontSize(t1); t2 = settings.fontSize; t2 = t2 == null ? "" : H.S(t2); t4 = type$.MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_String; t6.push(new Q.AppDropdownButton(t8, t2, new Z._InvoiceDesignState_build_closure9(viewModel, settings), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo([5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], type$.JSArray_legacy_int), new Z._InvoiceDesignState_build_closure10(), t4), true, t4._eval$1("ListIterable.E")), _null, true, "", _null, t9)); t6 = Y.FormCard$(_null, t6, _null, 4, false, _null, false, _null); t9 = settings.primaryFont; t4 = "__primary_font_" + H.S(t9) + "__"; t2 = type$.ValueKey_legacy_String; t8 = t1.get$primaryFont(); t8 = F.EntityDropdown$(true, false, false, t9, _null, $.$get$memoizedFontMap().call$1($.kGoogleFonts), C.EntityType_font, new D.ValueKey(t4, t2), t8, _null, new Z._InvoiceDesignState_build_closure11(viewModel, settings), _null, _null, _null); t4 = settings.secondaryFont; t9 = "__secondary_fond_" + H.S(t4) + "__"; t10 = t1.get$secondaryFont(); t10 = F.EntityDropdown$(true, false, false, t4, _null, $.$get$memoizedFontMap().call$1($.kGoogleFonts), C.EntityType_font, new D.ValueKey(t9, t2), t10, _null, new Z._InvoiceDesignState_build_closure12(viewModel, settings), _null, _null, _null); t2 = t1.get$primaryColor(); t2 = A.FormColorPicker$(settings.primaryColor, t2, new Z._InvoiceDesignState_build_closure13(viewModel, settings)); t9 = t1.get$secondaryColor(); t9 = A.FormColorPicker$(settings.secondaryColor, t9, new Z._InvoiceDesignState_build_closure14(viewModel, settings)); t4 = T.SizedBox$(_null, 16, _null); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "empty_columns"); if (t11 == null) t11 = ""; t12 = settings.hideEmptyColumnsOnPdf; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "hide"); if (t13 == null) t13 = ""; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "show"); if (t7 == null) t7 = ""; t12 = H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_16_0_16_10, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t3.toUpperCase(), new Z._InvoiceDesignState_build_closure15(state, context, store), _null, _null), _null), t6, Y.FormCard$(_null, H.setRuntimeTypeInfo([new B.LearnMoreUrl(t8, "https://fonts.google.com", _null, _null), t10, t2, t9, t4, K.BoolDropdownButton$(t7, t13, _null, C._MdiIconData_Qa60, t11, _null, new Z._InvoiceDesignState_build_closure16(viewModel, settings), _null, t12 === true)], t18), C.CrossAxisAlignment_0, 4, false, _null, true, _null)], t18); t11 = type$.JSArray_legacy_String; t13 = type$.MappedListIterable_of_legacy_String_and_legacy_String; t7 = type$.legacy_String; t4 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["name", "number", "id_number", "vat_number", "website", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure17(), t13), true, t7); C.JSArray_methods.addAll$1(t4, new H.MappedListIterable(H.setRuntimeTypeInfo(["full_name", "email", "phone", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure18(), t13)); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["name", "number", "vat_number", "address1", "address2", _s17_, "country", "phone"], t11), new Z._InvoiceDesignState_build_closure19(), t13), true, t7); C.JSArray_methods.addAll$1(t9, new H.MappedListIterable(H.setRuntimeTypeInfo(["email"], t11), new Z._InvoiceDesignState_build_closure20(), t13)); t2 = settings.getFieldsForSection$1(_s14_); t2 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t9, false, true, new Z._InvoiceDesignState_build_closure21(viewModel, settings), t4, "client", t2), _null, _null, 4, false, _null, true, _null); t4 = t13._eval$1("ListIterable.E"); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["name", "id_number", "vat_number", "website", "email", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure22(), t13), true, t4); t10 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["name", "id_number", "vat_number", "website", "email", "phone"], t11), new Z._InvoiceDesignState_build_closure23(), t13), true, t4); t8 = settings.getFieldsForSection$1("company_details"); t8 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t10, false, true, new Z._InvoiceDesignState_build_closure24(viewModel, settings), t9, "company", t8), _null, _null, 4, false, _null, true, _null); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["name", "id_number", "vat_number", "website", "email", "phone", "address1", "address2", _s17_, _s17_0, "country", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure25(), t13), true, t4); t10 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["address1", "address2", _s17_, "country"], t11), new Z._InvoiceDesignState_build_closure26(), t13), true, t4); t6 = settings.getFieldsForSection$1(_s15_); t6 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t10, false, true, new Z._InvoiceDesignState_build_closure27(viewModel, settings), t9, "company", t6), _null, _null, 4, false, _null, true, _null); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "due_date", "amount", "balance", "balance_due", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure28(), t13), true, t7); C.JSArray_methods.addAll$1(t9, new H.MappedListIterable(H.setRuntimeTypeInfo(["balance"], t11), new Z._InvoiceDesignState_build_closure29(), t13)); t10 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "due_date", "total", "balance_due"], t11), new Z._InvoiceDesignState_build_closure30(), t13), true, t4); t3 = settings.getFieldsForSection$1(_s15_0); t3 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t10, false, true, new Z._InvoiceDesignState_build_closure31(viewModel, settings), t9, "invoice", t3), _null, _null, 4, false, _null, true, _null); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "valid_until", "total", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure32(), t13), true, t7); C.JSArray_methods.addAll$1(t9, new H.MappedListIterable(H.setRuntimeTypeInfo(["balance"], t11), new Z._InvoiceDesignState_build_closure33(), t13)); t10 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "valid_until", "total"], t11), new Z._InvoiceDesignState_build_closure34(), t13), true, t4); t19 = settings.getFieldsForSection$1(_s13_); t19 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t10, false, true, new Z._InvoiceDesignState_build_closure35(viewModel, settings), t9, "quote", t19), _null, _null, 4, false, _null, true, _null); t7 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "total", "balance", "custom1", "custom2", "custom3", "custom4"], t11), new Z._InvoiceDesignState_build_closure36(), t13), true, t7); C.JSArray_methods.addAll$1(t7, new H.MappedListIterable(H.setRuntimeTypeInfo(["balance"], t11), new Z._InvoiceDesignState_build_closure37(), t13)); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["number", "po_number", "date", "balance", "total"], t11), new Z._InvoiceDesignState_build_closure38(), t13), true, t4); t10 = settings.getFieldsForSection$1(_s14_0); t10 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t9, false, true, new Z._InvoiceDesignState_build_closure39(viewModel, settings), t7, "credit", t10), _null, _null, 4, false, _null, true, _null); t7 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["item", "description", "quantity", "unit_cost", "tax", "discount", "line_total", "product1", "product2", "product3", "product4", _s16_], t11), new Z._InvoiceDesignState_build_closure40(), t13), true, t4); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["item", "description", "unit_cost", "quantity", "discount", "tax", "line_total"], t11), new Z._InvoiceDesignState_build_closure41(), t13), true, t4); t20 = settings.getFieldsForSection$1(_s15_1); t20 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t9, false, true, new Z._InvoiceDesignState_build_closure42(viewModel, settings), t7, "product", t20), _null, _null, 4, false, _null, true, _null); t7 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["service", "description", "hours", "rate", "tax", "discount", "line_total", "task1", "task2", "task3", "task4", _s16_], t11), new Z._InvoiceDesignState_build_closure43(), t13), true, t4); t9 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["service", "description", "rate", "hours", "discount", "tax", "line_total"], t11), new Z._InvoiceDesignState_build_closure44(), t13), true, t4); t21 = settings.getFieldsForSection$1(_s12_); t21 = Y.FormCard$(E.MultiSelectList$(t1.get$addField(), C.List_empty1, t9, false, true, new Z._InvoiceDesignState_build_closure45(viewModel, settings), t7, "task", t21), _null, _null, 4, false, _null, true, _null); t7 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["subtotal", "net_subtotal", "discount", "line_taxes", "total_taxes", _s17_1, _s17_2, _s17_3, _s17_4, "paid_to_date", "total", "outstanding"], t11), new Z._InvoiceDesignState_build_closure46(), t13), true, t4); t4 = P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["subtotal", "discount", _s17_1, _s17_2, _s17_3, _s17_4, "total_taxes", "line_taxes", "total", "paid_to_date", "outstanding"], t11), new Z._InvoiceDesignState_build_closure47(), t13), true, t4); t13 = settings.getFieldsForSection$1("total_columns"); return K.EditScaffold$(_null, t17, new X.AppTabForm(t14, t15, H.setRuntimeTypeInfo([new X.ScrollableListView(t12, _null, _null, false, _null), t2, t8, t6, t3, t19, t10, t20, t21, Y.FormCard$(E.MultiSelectList$(t1.get$addField(), H.setRuntimeTypeInfo(["$subtotal"], t11), t4, false, true, new Z._InvoiceDesignState_build_closure48(viewModel, settings), t7, "total", t13), _null, _null, 4, false, _null, true, _null)], t18), t16, _null, _null), _null, _null, _null, false, _null, _null, new Z._InvoiceDesignState_build_closure49(_this, viewModel), _null, t5); } }; Z._InvoiceDesignState_build_closure49.prototype = { call$1: function(context) { var t1 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityType), t2 = this.$this; if (t2._updateAllInvoiceDesigns) t1.push(C.EntityType_invoice); if (t2._updateAllQuoteDesigns) t1.push(C.EntityType_quote); if (t2._updateAllCreditDesigns) t1.push(C.EntityType_credit); this.viewModel.onSavePressed.call$2(context, t1); }, $signature: 14 }; Z._InvoiceDesignState_build_closure15.prototype = { call$0: function() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(t1.userCompanyStates._list, t2).designState.get$customDesigns().length === 0 ? M.createEntity(_null, _null, this.context, D.DesignEntity_DesignEntity(_null, _null, t1), _null, false) : J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "custom_designs", false, _null)); }, $signature: 0 }; Z._InvoiceDesignState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new Z._InvoiceDesignState_build__closure14(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure15(value))); }, $signature: 151 }; Z._InvoiceDesignState_build__closure14.prototype = { call$0: function() { this.$this._wasInvoiceDesignChanged = true; }, $signature: 1 }; Z._InvoiceDesignState_build__closure15.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultInvoiceDesignId = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new Z._InvoiceDesignState_build__closure13(t1, value)); }, $signature: 34 }; Z._InvoiceDesignState_build__closure13.prototype = { call$0: function() { return this.$this._updateAllInvoiceDesigns = this.value; }, $signature: 19 }; Z._InvoiceDesignState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new Z._InvoiceDesignState_build__closure11(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure12(value))); }, $signature: 151 }; Z._InvoiceDesignState_build__closure11.prototype = { call$0: function() { this.$this._wasQuoteDesignChanged = true; }, $signature: 1 }; Z._InvoiceDesignState_build__closure12.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultQuoteDesignId = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure2.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new Z._InvoiceDesignState_build__closure10(t1, value)); }, $signature: 34 }; Z._InvoiceDesignState_build__closure10.prototype = { call$0: function() { return this.$this._updateAllQuoteDesigns = this.value; }, $signature: 19 }; Z._InvoiceDesignState_build_closure3.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new Z._InvoiceDesignState_build__closure8(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure9(value))); }, $signature: 151 }; Z._InvoiceDesignState_build__closure8.prototype = { call$0: function() { this.$this._wasCreditDesignChanged = true; }, $signature: 1 }; Z._InvoiceDesignState_build__closure9.prototype = { call$1: function(b) { var t1 = this.value.id; b.get$_settings_model$_$this()._defaultCreditDesignId = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure4.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new Z._InvoiceDesignState_build__closure7(t1, value)); }, $signature: 34 }; Z._InvoiceDesignState_build__closure7.prototype = { call$0: function() { return this.$this._updateAllCreditDesigns = this.value; }, $signature: 19 }; Z._InvoiceDesignState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure6(value))); }, $signature: 10 }; Z._InvoiceDesignState_build__closure6.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._pageLayout = this.value; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure6.prototype = { call$1: function(pageLayout) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(pageLayout), _null, _null, _null, _null, _null, _null, _null, _null, _null), pageLayout, type$.legacy_String); }, $signature: 36 }; Z._InvoiceDesignState_build_closure7.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure5(value))); }, $signature: 10 }; Z._InvoiceDesignState_build__closure5.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._pageSize = this.value; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure8.prototype = { call$1: function(pageSize) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(pageSize), _null, _null, _null, _null, _null, _null, _null, _null, _null), pageSize, type$.legacy_String); }, $signature: 36 }; Z._InvoiceDesignState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure4(value))); }, $signature: 10 }; Z._InvoiceDesignState_build__closure4.prototype = { call$1: function(b) { var t1 = P.int_parse(this.value, null); b.get$_settings_model$_$this()._fontSize = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure10.prototype = { call$1: function(fontSize) { var _null = null, t1 = H.S(fontSize), t2 = fontSize === 0 ? T.SizedBox$(_null, _null, _null) : L.Text$(H.S(fontSize), _null, _null, _null, _null, _null, _null, _null, _null, _null); return K.DropdownMenuItem$(t2, t1, type$.legacy_String); }, $signature: 424 }; Z._InvoiceDesignState_build_closure11.prototype = { call$1: function(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure3(font))); }, $signature: 56 }; Z._InvoiceDesignState_build__closure3.prototype = { call$1: function(b) { var t1 = this.font; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._primaryFont = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure12.prototype = { call$1: function(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure2(font))); }, $signature: 56 }; Z._InvoiceDesignState_build__closure2.prototype = { call$1: function(b) { var t1 = this.font; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._secondaryFont = t1; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure1(value))); }, $signature: 5 }; Z._InvoiceDesignState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._primaryColor = this.value; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure14.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure0(value))); }, $signature: 5 }; Z._InvoiceDesignState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._secondaryColor = this.value; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure16.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new Z._InvoiceDesignState_build__closure(value))); }, $signature: 12 }; Z._InvoiceDesignState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._hideEmptyColumnsOnPdf = this.value; return b; }, $signature: 13 }; Z._InvoiceDesignState_build_closure17.prototype = { call$1: function(field) { return "$client." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure18.prototype = { call$1: function(field) { return "$contact." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure19.prototype = { call$1: function(field) { return "$client." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure20.prototype = { call$1: function(field) { return "$contact." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure21.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("client_details", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure22.prototype = { call$1: function(field) { return "$company." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure23.prototype = { call$1: function(field) { return "$company." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure24.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("company_details", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure25.prototype = { call$1: function(field) { return "$company." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure26.prototype = { call$1: function(field) { return "$company." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure27.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("company_address", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure28.prototype = { call$1: function(field) { return "$invoice." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure29.prototype = { call$1: function(field) { return "$client." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure30.prototype = { call$1: function(field) { return "$invoice." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure31.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("invoice_details", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure32.prototype = { call$1: function(field) { return "$quote." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure33.prototype = { call$1: function(field) { return "$client." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure34.prototype = { call$1: function(field) { return "$quote." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure35.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("quote_details", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure36.prototype = { call$1: function(field) { return "$credit." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure37.prototype = { call$1: function(field) { return "$client." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure38.prototype = { call$1: function(field) { return "$credit." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure39.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("credit_details", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure40.prototype = { call$1: function(field) { return "$product." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure41.prototype = { call$1: function(field) { return "$product." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure42.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("product_columns", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure43.prototype = { call$1: function(field) { return "$task." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure44.prototype = { call$1: function(field) { return "$task." + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure45.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("task_columns", values)); }, $signature: 99 }; Z._InvoiceDesignState_build_closure46.prototype = { call$1: function(field) { return "$" + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure47.prototype = { call$1: function(field) { return "$" + H.S(field); }, $signature: 15 }; Z._InvoiceDesignState_build_closure48.prototype = { call$1: function(values) { this.viewModel.onSettingsChanged.call$1(this.settings.setFieldsForSection$2("total_columns", values)); }, $signature: 99 }; Z.__InvoiceDesignState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; B.InvoiceDesignScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.InvoiceDesignScreen_build_closure(), B.invoice_design_vm_InvoiceDesignVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_InvoiceDesignVM); } }; B.InvoiceDesignScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Z.InvoiceDesign(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2510 }; B.InvoiceDesignVM.prototype = { get$company: function() { return this.company; } }; B.InvoiceDesignVM_fromStore_closure.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; B.InvoiceDesignVM_fromStore_closure0.prototype = { call$2: function(context, entityTypes) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.InvoiceDesignVM_fromStore__closure(this.store, context, this.state, entityTypes).call$0(); }, $signature: 2511 }; B.InvoiceDesignVM_fromStore__closure.prototype = { call$0: function() { var t2, t3, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; t3 = type$.Null; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, t3); completer.future.then$1$1(0, new B.InvoiceDesignVM_fromStore___closure(_this.state, t1, _this.entityTypes), t3); t3 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t3)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; B.InvoiceDesignVM_fromStore___closure.prototype = { call$1: function(value) { var t2, t1 = this.state, credentials = t1.get$credentials(t1), url = credentials.url + "/designs/set/default"; t1 = this.store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; C.JSArray_methods.forEach$1(this.entityTypes, new B.InvoiceDesignVM_fromStore____closure(new F.WebClient(), url, credentials, J.$index$asx(t2._list, t1).userCompany.company.settings)); }, $signature: 3 }; B.InvoiceDesignVM_fromStore____closure.prototype = { call$1: function(entityType) { var _this = this, t1 = type$.legacy_String; _this.webClient.post$3$data(_this.url, _this.credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["entity", A.toSnakeCase(entityType.name), "design_id", _this.settings.getDesignId$1(entityType)], t1, t1))).then$1$1(0, new B.InvoiceDesignVM_fromStore_____closure(), type$.Null).catchError$1(new B.InvoiceDesignVM_fromStore_____closure0()); }, $signature: 201 }; B.InvoiceDesignVM_fromStore_____closure.prototype = { call$1: function(response) { var t1 = $.$get$navigatorKey(); t1.toString; M.showToast(L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings()); }, $signature: 8 }; B.InvoiceDesignVM_fromStore_____closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; O.showErrorDialog(false, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), H.S(error)); }, $signature: 8 }; G.LocalizationSettings.prototype = { createState$0: function() { return new G._LocalizationSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; G._LocalizationSettingsState.prototype = { initState$0: function() { var settingsUIState, t1, _this = this; _this.super$State$initState(); _this._localization_settings$_focusNode = O.FocusScopeNode$(true, null, false); settingsUIState = _this._widget.viewModel.state.uiState.settingsUIState; t1 = U.TabController$(settingsUIState.entityType !== C.EntityType_company ? 0 : settingsUIState.tabIndex, 2, _this); _this._localization_settings$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_localization_settings$_onTabChanged()), false); }, _localization_settings$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._localization_settings$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._localization_settings$_controller.removeListener$1(0, _this.get$_localization_settings$_onTabChanged()); _this._localization_settings$_controller.dispose$0(0); _this._localization_settings$_focusNode.dispose$0(0); C.JSArray_methods.forEach$1(_this._localization_settings$_controllers, new G._LocalizationSettingsState_dispose_closure(_this)); _this.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var _this = this, t1 = H.setRuntimeTypeInfo([_this._localization_settings$_firstNameController], type$.JSArray_legacy_TextEditingController); _this._localization_settings$_controllers = t1; C.JSArray_methods.forEach$1(t1, new G._LocalizationSettingsState_didChangeDependencies_closure(_this)); C.JSArray_methods.forEach$1(_this._localization_settings$_controllers, new G._LocalizationSettingsState_didChangeDependencies_closure0(_this)); _this.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _localization_settings$_onChanged$0: function() { }, build$1: function(_, context) { var t2, t3, customLabels, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, _s13_ = "decimal_comma", _s26_ = "use_comma_as_decimal_place", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, company = viewModel.company, translations = settings.translations; if (translations == null) { t2 = type$.legacy_String; translations = A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2); } t2 = $.kCustomLabels; t3 = H._arrayInstanceType(t2)._eval$1("WhereIterable<1>"); customLabels = P.List_List$of(new H.WhereIterable(t2, new G._LocalizationSettingsState_build_closure(translations), t3), true, t3._eval$1("Iterable.E")); C.JSArray_methods.sort$1(customLabels, new G._LocalizationSettingsState_build_closure0(t1)); t3 = t1.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "localization"); if (t2 == null) t2 = ""; t4 = viewModel.onSavePressed; t5 = state.uiState.settingsUIState.entityType === C.EntityType_company; if (!t5) t6 = _null; else { t6 = _this._localization_settings$_controller; t7 = E.Tab$(_null, t1.get$settings()); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "custom_labels"); t6 = E.TabBar$(t6, _null, false, _null, _null, H.setRuntimeTypeInfo([t7, E.Tab$(_null, t8 == null ? "" : t8)], type$.JSArray_legacy_Widget)); } t7 = $.$get$_LocalizationSettingsState__formKey(); t8 = _this._localization_settings$_focusNode; t9 = _this._localization_settings$_controller; t10 = settings.currencyId; t11 = "__currency_" + H.S(t10) + "__"; t12 = type$.ValueKey_legacy_String; t13 = $.$get$memoizedCurrencyList(); t14 = state.staticState; t11 = F.EntityDropdown$(true, false, false, t10, t13.call$1(t14.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t11, t12), t1.get$currency(), _null, new G._LocalizationSettingsState_build_closure1(viewModel, settings), _null, _null, _null); t13 = settings.showCurrencyCode; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "currency_format"); if (t15 == null) t15 = ""; t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "ocde"); t16 = C.JSString_methods.$add((t16 == null ? "" : t16) + ": ", Y.formatNumber(1000, context, _null, t10, C.FormatNumberType_0, true, true, false)); t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "symbol"); t18 = type$.JSArray_legacy_Widget; t13 = H.setRuntimeTypeInfo([t11, K.BoolDropdownButton$(C.JSString_methods.$add((t17 == null ? "" : t17) + ": ", Y.formatNumber(1000, context, _null, t10, C.FormatNumberType_0, true, false, false)), t16, _null, _null, t15, _null, new G._LocalizationSettingsState_build_closure2(viewModel, settings), _null, t13)], t18); if (Y.cleanApiUrl(state.authState.url) !== "https://demo.invoiceninja.com") { t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "help_translate"); if (t10 == null) t10 = ""; t11 = settings.languageId; t15 = "__language_" + H.S(t11) + "__"; t13.push(new B.LearnMoreUrl(F.EntityDropdown$(true, false, false, t11, $.$get$memoizedLanguageList().call$1(t14.languageMap), _null, C.EntityType_language, new D.ValueKey(t15, t12), t1.get$language(t1), _null, new G._LocalizationSettingsState_build_closure3(viewModel, settings), _null, _null, _null), "https://www.transifex.com/invoice-ninja/invoice-ninja", t10, _null)); } t10 = settings.timezoneId; t11 = "__timezone_" + H.S(t10) + "__"; t13.push(F.EntityDropdown$(true, false, false, t10, $.$get$memoizedTimezoneList().call$1(t14.timezoneMap), _null, C.EntityType_timezone, new D.ValueKey(t11, t12), t1.get$timezone(), _null, new G._LocalizationSettingsState_build_closure4(viewModel, settings), _null, _null, _null)); t11 = settings.dateFormatId; t10 = "__date_format_" + H.S(t11) + "__"; t13.push(F.EntityDropdown$(true, false, false, t11, $.$get$memoizedDateFormatList().call$1(t14.dateFormatMap), _null, C.EntityType_dateFormat, new D.ValueKey(t10, t12), t1.get$dateFormat(), _null, new G._LocalizationSettingsState_build_closure5(viewModel, settings), _null, _null, _null)); t10 = t1.get$militaryTime(); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "military_time_help"); t11 = t14 == null ? "" : t14; t13.push(K.BoolDropdownButton$(_null, _null, t11, C._MdiIconData_90Y0, t10, _null, new G._LocalizationSettingsState_build_closure6(viewModel, settings), _null, settings.enableMilitaryTime)); if (t5) { t10 = company.useCommaAsDecimalPlace; t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s13_); t11 = L.Text$(t11 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), _s26_); t14 = L.Text$(t14 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s26_) : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t15 = K.Theme_of(context).accentColor; t16 = D.getLayout(context) === C.AppLayout_desktop ? L.Icon$(C._MdiIconData_omH, _null, _null) : _null; t13.push(O.SwitchListTile$(t15, _null, new G._LocalizationSettingsState_build_closure7(viewModel, company), t16, t14, t11, t10)); } t10 = H.setRuntimeTypeInfo([Y.FormCard$(_null, t13, _null, 4, false, _null, false, _null)], t18); if (t5) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "first_month_of_the_year"); if (t5 == null) t5 = ""; t11 = company.firstMonthOfYear; t13 = C.Map_tOd65.map$2$1(0, new G._LocalizationSettingsState_build_closure8(t1), type$.legacy_String, type$.legacy_DropdownMenuItem_legacy_String); t13 = t13.get$values(t13); t10.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t5, t11, new G._LocalizationSettingsState_build_closure9(viewModel, company), P.List_List$of(t13, true, H._instanceType(t13)._eval$1("Iterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t18), _null, 4, false, _null, true, _null)); } t5 = H._arrayInstanceType(customLabels)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); t5 = P.List_List$of(new H.MappedListIterable(customLabels, new G._LocalizationSettingsState_build_closure10(t1), t5), true, t5._eval$1("ListIterable.E")); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "select_label"); t3 = H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([new K.DropdownButtonHideUnderline(K.DropdownButton$(false, _null, _null, 8, _null, _null, L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null, 24, false, false, 48, t5, _null, new G._LocalizationSettingsState_build_closure11(viewModel, settings), _null, _null, _null, _null, type$.legacy_String), _null), T.SizedBox$(_null, _null, 8), U.TextButton$(false, L.Text$(t1.get$addCustom(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new G._LocalizationSettingsState_build_closure12(context, viewModel, settings, t1), _null)], t18), C.CrossAxisAlignment_2, C.MainAxisAlignment_3, C.MainAxisSize_1, _null), T.SizedBox$(_null, 16, _null)], t18); for (t5 = J.get$iterator$ax(translations.get$keys(translations)), t11 = translations._map$_map, t13 = J.getInterceptor$asx(t11); t5.moveNext$0();) { t14 = t5.get$current(t5); t15 = t1.lookup$1(t14); t16 = "__" + H.S(t14) + "__"; t17 = t13.$index(t11, t14); if (t17 == null) t17 = ""; t3.push(T.Row$(H.setRuntimeTypeInfo([new T.Expanded(1, C.FlexFit_0, new L.Text(t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new T.Expanded(1, C.FlexFit_0, E.TextFormField$(true, _null, false, _null, _null, C.InputDecoration_so3, _null, false, _null, t17, _null, new D.ValueKey(t16, t12), _null, 1, _null, false, new G._LocalizationSettingsState_build_closure13(viewModel, settings, t14), _null, _null, _null, false, _null, C.TextAlign_4, _null, _null), _null), new T.SizedBox(16, _null, _null, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_57704_MaterialIcons_null_false, _null, _null, _null), 24, new G._LocalizationSettingsState_build_closure14(viewModel, settings, t14), C.EdgeInsets_8_8_8_8, _null, _null)], t18), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); } return K.EditScaffold$(_null, t6, new X.AppTabForm(t8, t7, H.setRuntimeTypeInfo([new X.ScrollableListView(t10, _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t3, C.CrossAxisAlignment_0, 4, false, _null, true, _null)], t18), _null, _null, false, _null)], t18), t9, _null, _null), _null, _null, _null, false, _null, _null, t4, _null, t2); } }; G._LocalizationSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_localization_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; G._LocalizationSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_localization_settings$_onChanged()); }, $signature: 10 }; G._LocalizationSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_localization_settings$_onChanged()); }, $signature: 10 }; G._LocalizationSettingsState_build_closure.prototype = { call$1: function(key) { var t1 = this.translations; return !J.contains$1$asx(t1.get$keys(t1), key); }, $signature: 16 }; G._LocalizationSettingsState_build_closure0.prototype = { call$2: function(a, b) { var t1 = this.localization; return J.compareTo$1$ns(t1.lookup$1(a), t1.lookup$1(b)); }, $signature: 18 }; G._LocalizationSettingsState_build_closure1.prototype = { call$1: function(currency) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure11(currency))); }, $signature: 56 }; G._LocalizationSettingsState_build__closure11.prototype = { call$1: function(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._currencyId = t1; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure10(value))); }, $signature: 12 }; G._LocalizationSettingsState_build__closure10.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._showCurrencyCode = this.value; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure3.prototype = { call$1: function(language) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure9(language))); }, $signature: 56 }; G._LocalizationSettingsState_build__closure9.prototype = { call$1: function(b) { var t1 = this.language; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._languageId = t1; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure4.prototype = { call$1: function(timezone) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure8(timezone))); }, $signature: 56 }; G._LocalizationSettingsState_build__closure8.prototype = { call$1: function(b) { var t1 = this.timezone; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._timezoneId = t1; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure5.prototype = { call$1: function(dateFormat) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure7(dateFormat))); }, $signature: 56 }; G._LocalizationSettingsState_build__closure7.prototype = { call$1: function(b) { var t1 = this.dateFormat; t1 = t1 == null ? null : t1.get$id(t1); b.get$_settings_model$_$this()._dateFormatId = t1; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure6.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure6(value))); }, $signature: 12 }; G._LocalizationSettingsState_build__closure6.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enableMilitaryTime = this.value; return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure7.prototype = { call$1: function(value) { this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new G._LocalizationSettingsState_build__closure5(value))); }, $signature: 20 }; G._LocalizationSettingsState_build__closure5.prototype = { call$1: function(b) { b.get$_company_model$_$this()._useCommaAsDecimalPlace = this.value; return b; }, $signature: 22 }; G._LocalizationSettingsState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new G._LocalizationSettingsState_build__closure4(value))); }, $signature: 10 }; G._LocalizationSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_company_model$_$this()._firstMonthOfYear = this.value; return b; }, $signature: 22 }; G._LocalizationSettingsState_build_closure8.prototype = { call$2: function(id, month) { var _null = null; return new P.MapEntry(id, K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(month), _null, _null, _null, _null, _null, _null, _null, _null, _null), id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 449 }; G._LocalizationSettingsState_build_closure10.prototype = { call$1: function(key) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), key, type$.legacy_String); }, $signature: 36 }; G._LocalizationSettingsState_build_closure11.prototype = { call$1: function(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure3(value))); }, $signature: 7 }; G._LocalizationSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$translations().$indexSet(0, this.value, ""); return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure12.prototype = { call$0: function() { var _this = this, _null = null, t1 = _this.localization, t2 = t1.get$label(t1), t3 = t1.get$addCustom(); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "labels"); if (t1 == null) t1 = ""; O.fieldCallback(new G._LocalizationSettingsState_build__closure1(_this.viewModel, _this.settings), _this.context, t2, _null, H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new G._LocalizationSettingsState_build__closure2(), _null)], type$.JSArray_legacy_TextButton), t3); }, $signature: 1 }; G._LocalizationSettingsState_build__closure1.prototype = { call$1: function(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build___closure(value))); }, $signature: 7 }; G._LocalizationSettingsState_build___closure.prototype = { call$1: function(b) { b.get$translations().$indexSet(0, this.value, ""); return b; }, $signature: 13 }; G._LocalizationSettingsState_build__closure2.prototype = { call$0: function() { return T.launch("https://github.com/invoiceninja/invoiceninja/blob/master/resources/lang/en/texts.php", null, false); }, $signature: 30 }; G._LocalizationSettingsState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure0(this.key, value))); }, $signature: 5 }; G._LocalizationSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$translations().$indexSet(0, this.key, J.trim$0$s(this.value)); return b; }, $signature: 13 }; G._LocalizationSettingsState_build_closure14.prototype = { call$0: function() { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new G._LocalizationSettingsState_build__closure(this.key))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G._LocalizationSettingsState_build__closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$translations().get$_safeMap(), this.key); return b; }, $signature: 13 }; G.__LocalizationSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; B.LocalizationScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.LocalizationScreen_build_closure(), B.localization_vm_LocalizationSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_LocalizationSettingsVM); } }; B.LocalizationScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new G.LocalizationSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2512 }; B.LocalizationSettingsVM.prototype = { get$company: function() { return this.company; } }; B.LocalizationSettingsVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; B.LocalizationSettingsVM_fromStore_closure.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; B.LocalizationSettingsVM_fromStore_closure1.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.LocalizationSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; B.LocalizationSettingsVM_fromStore__closure.prototype = { call$0: function() { var t2, t3, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; t3 = t2.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState); completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); completer.future.then$1$1(0, new B.LocalizationSettingsVM_fromStore___closure(t3, t1), type$.dynamic); t3 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t3)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; B.LocalizationSettingsVM_fromStore___closure.prototype = { call$1: function(value) { var t2, t1 = this.appBuilder; t1.rebuild$0(); t2 = new P._Future($.Zone__current, type$._Future_dynamic); t2.then$1$1(0, new B.LocalizationSettingsVM_fromStore____closure(t1), type$.void); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(new P._AsyncCompleter(t2, type$._AsyncCompleter_dynamic), false, true, false)); }, $signature: 3 }; B.LocalizationSettingsVM_fromStore____closure.prototype = { call$1: function(value) { return this.appBuilder.rebuild$0(); }, $signature: 81 }; V.OnlinePayments.prototype = { createState$0: function() { return new V._OnlinePaymentsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; V._OnlinePaymentsState.prototype = { initState$0: function() { this.super$State$initState(); this._online_payments$_focusNode = O.FocusScopeNode$(true, null, false); }, didChangeDependencies$0: function() { var t3, _this = this, t1 = _this._minimumAmountController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._online_payments$_controllers = t2; C.JSArray_methods.forEach$1(t2, new V._OnlinePaymentsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.settings.clientPortalUnderPaymentMinimum; t3 = _this._framework$_element; t3.toString; t1.set$text(0, Y.formatNumber(t2, t3, null, null, C.FormatNumberType_4, true, null, false)); C.JSArray_methods.forEach$1(_this._online_payments$_controllers, new V._OnlinePaymentsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { this._online_payments$_focusNode.dispose$0(0); this.super$State$dispose(0); }, _online_payments$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.settings, settings = t1.rebuild$1(new V._OnlinePaymentsState__onChanged_closure(this)); if (!J.$eq$(settings, t1)) viewModel.onSettingsChanged.call$1(settings); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, settings = viewModel.settings, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "online_payments"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = $.$get$_OnlinePaymentsState__formKey(); t6 = this._online_payments$_focusNode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_bill_on"); if (t7 == null) t7 = ""; t8 = settings.autoBillDate; t9 = type$.legacy_String; t10 = type$.JSArray_legacy_DropdownMenuItem_legacy_String; t1 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$sendDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "on_send_date", t9), K.DropdownMenuItem$(L.Text$(t1.get$dueDate(), _null, _null, _null, _null, _null, _null, _null, _null, _null), "on_due_date", t9)], t10); t11 = type$.AppDropdownButton_legacy_String; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "use_available_credits"); if (t12 == null) t12 = ""; t13 = settings.useCreditsPayment; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "always"); t14 = K.DropdownMenuItem$(L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), "always", t9); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_option"); t15 = K.DropdownMenuItem$(L.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), "option", t9); t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "off"); t9 = H.setRuntimeTypeInfo([t14, t15, K.DropdownMenuItem$(L.Text$(t16 == null ? "" : t16, _null, _null, _null, _null, _null, _null, _null, _null, _null), "off", t9)], t10); t10 = T.SizedBox$(_null, 16, _null); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "allow_over_payment"); if (t14 == null) t14 = ""; t15 = settings.clientPortalAllowOverPayment; t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "allow_over_payment_help"); if (t16 == null) t16 = ""; t15 = K.BoolDropdownButton$(_null, _null, t16, _null, t14, _null, new V._OnlinePaymentsState_build_closure(viewModel, settings), _null, t15); t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "allow_under_payment"); if (t14 == null) t14 = ""; t16 = settings.clientPortalAllowUnderPayment; t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "allow_under_payment_help"); if (t17 == null) t17 = ""; t18 = type$.JSArray_legacy_Widget; t14 = H.setRuntimeTypeInfo([new Q.AppDropdownButton(t7, t8, new V._OnlinePaymentsState_build_closure0(viewModel, settings), t1, _null, true, "", _null, t11), new Q.AppDropdownButton(t12, t13, new V._OnlinePaymentsState_build_closure1(viewModel, settings), t9, _null, true, "", _null, t11), t10, t15, K.BoolDropdownButton$(_null, _null, t17, _null, t14, _null, new V._OnlinePaymentsState_build_closure2(viewModel, settings), _null, t16)], t18); if (t16 === true) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "minimum_under_payment_amount"); if (t1 == null) t1 = ""; t14.push(new T.Padding(C.EdgeInsets_0_16_0_0, S.DecoratedFormField$(false, _null, false, false, this._minimumAmountController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t1, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), _null)); } t1 = Y.FormCard$(_null, t14, _null, 4, false, _null, false, _null); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "configure_gateways"); if (t2 == null) t2 = ""; return K.EditScaffold$(_null, _null, new X.AppForm(t5, H.setRuntimeTypeInfo([t1, new T.Padding(C.EdgeInsets_16_0_16_0, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t2.toUpperCase(), new V._OnlinePaymentsState_build_closure3(viewModel, context), _null, _null), _null)], t18), _null, t6, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; V._OnlinePaymentsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_online_payments$_onChanged()); }, $signature: 10 }; V._OnlinePaymentsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_online_payments$_onChanged()); }, $signature: 10 }; V._OnlinePaymentsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.$this._minimumAmountController._change_notifier$_value.text, false); b.get$_settings_model$_$this()._clientPortalUnderPaymentMinimum = t1; return b; }, $signature: 13 }; V._OnlinePaymentsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new V._OnlinePaymentsState_build__closure1(value))); }, $signature: 10 }; V._OnlinePaymentsState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoBillDate = this.value; return b; }, $signature: 13 }; V._OnlinePaymentsState_build_closure1.prototype = { call$1: function(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new V._OnlinePaymentsState_build__closure0(value))); }, $signature: 8 }; V._OnlinePaymentsState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._useCreditsPayment = this.value; return b; }, $signature: 13 }; V._OnlinePaymentsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new V._OnlinePaymentsState_build__closure2(value))); }, $signature: 12 }; V._OnlinePaymentsState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientPortalAllowOverPayment = this.value; return b; }, $signature: 13 }; V._OnlinePaymentsState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new V._OnlinePaymentsState_build__closure(value))); }, $signature: 12 }; V._OnlinePaymentsState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientPortalAllowUnderPayment = this.value; return b; }, $signature: 13 }; V._OnlinePaymentsState_build_closure3.prototype = { call$0: function() { return this.viewModel.onConfigureGatewaysPressed.call$1(this.context); }, $signature: 9 }; B.OnlinePaymentsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.OnlinePaymentsScreen_build_closure(), B.online_payments_vm_OnlinePaymentsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_OnlinePaymentsVM); } }; B.OnlinePaymentsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new V.OnlinePayments(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2513 }; B.OnlinePaymentsVM.prototype = { get$company: function() { return this.company; } }; B.OnlinePaymentsVM_fromStore_closure0.prototype = { call$1: function(settings) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 446 }; B.OnlinePaymentsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.OnlinePaymentsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; B.OnlinePaymentsVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; B.OnlinePaymentsVM_fromStore_closure1.prototype = { call$1: function(context) { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "company_gateways", false, _null)); }, $signature: 14 }; L.ProductSettings.prototype = { createState$0: function() { return new L._ProductSettingsState(C._StateLifecycle_0); } }; L._ProductSettingsState.prototype = { initState$0: function() { this.super$State$initState(); this._product_settings$_focusNode = O.FocusScopeNode$(true, null, false); }, dispose$0: function(_) { this._product_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "product_settings"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = $.$get$_ProductSettingsState__formKey(); t6 = this._product_settings$_focusNode; t7 = K.Theme_of(context).accentColor; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_product_discount"); t8 = L.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = company.enableProductDiscount; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_product_discount_help"); t7 = O.SwitchListTile$(t7, _null, new L._ProductSettingsState_build_closure(viewModel, company), _null, L.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), t8, t9); t8 = K.Theme_of(context).accentColor; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_product_cost"); t9 = L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = company.enableProductCost; t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_cost_help"); t8 = O.SwitchListTile$(t8, _null, new L._ProductSettingsState_build_closure0(viewModel, company), _null, L.Text$(t11 == null ? "" : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, t10); t9 = K.Theme_of(context).accentColor; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_product_quantity"); t10 = L.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.enableProductQuantity; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_product_quantity_help"); t9 = O.SwitchListTile$(t9, _null, new L._ProductSettingsState_build_closure1(viewModel, company), _null, L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), t10, t11); t10 = K.Theme_of(context).accentColor; t1 = L.Text$(t1.get$defaultQuantity(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t11 = company.defaultQuantity; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "default_quantity_help"); t13 = type$.JSArray_legacy_Widget; t11 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t7, t8, t9, O.SwitchListTile$(t10, _null, new L._ProductSettingsState_build_closure2(viewModel, company), _null, L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, t11)], t13), _null, 4, false, _null, false, _null); t1 = K.Theme_of(context).accentColor; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "fill_products"); t7 = L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = company.fillProducts; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "fill_products_help"); t1 = O.SwitchListTile$(t1, _null, new L._ProductSettingsState_build_closure3(viewModel, company), _null, L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), t7, t8); t7 = K.Theme_of(context).accentColor; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "update_products"); t8 = L.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = company.updateProducts; t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "update_products_help"); t7 = O.SwitchListTile$(t7, _null, new L._ProductSettingsState_build_closure4(viewModel, company), _null, L.Text$(t10 == null ? "" : t10, _null, _null, _null, _null, _null, _null, _null, _null, _null), t8, t9); t8 = K.Theme_of(context).accentColor; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "convert_products"); t9 = L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null); t10 = company.convertProductExchangeRate; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "convert_products_help"); return K.EditScaffold$(_null, _null, new X.AppForm(t5, H.setRuntimeTypeInfo([t11, Y.FormCard$(_null, H.setRuntimeTypeInfo([t1, t7, O.SwitchListTile$(t8, _null, new L._ProductSettingsState_build_closure5(viewModel, company), _null, L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), t9, t10)], t13), _null, 4, false, _null, true, _null)], t13), _null, t6, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; L._ProductSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure5(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure5.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableProductDiscount = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure4(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableProductCost = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure3(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._enableProductQuantity = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure2(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_company_model$_$this()._defaultQuantity = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure1(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_company_model$_$this()._fillProducts = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure4.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure0(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_company_model$_$this()._updateProducts = this.value; return b; }, $signature: 22 }; L._ProductSettingsState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._ProductSettingsState_build__closure(value))); }, $signature: 12 }; L._ProductSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_company_model$_$this()._convertProductExchangeRate = this.value; return b; }, $signature: 22 }; G.ProductSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new G.ProductSettingsScreen_build_closure(), G.product_settings_vm_ProductSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_ProductSettingsVM); } }; G.ProductSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new L.ProductSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2514 }; G.ProductSettingsVM.prototype = { get$company: function() { return this.company; } }; G.ProductSettingsVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; G.ProductSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new G.ProductSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; G.ProductSettingsVM_fromStore__closure.prototype = { call$0: function() { var t1 = this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, t2 = this.context, completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; U.SettingsList.prototype = { createState$0: function() { return new U._SettingsListState(C._StateLifecycle_0); } }; U._SettingsListState.prototype = { initState$0: function() { this.super$State$initState(); this._settings_list$_scrollController = F.ScrollController$(null, 0); }, dispose$0: function(_) { this._settings_list$_scrollController.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t0, _this = this, _null = null, _s12_ = "user_details", _s15_ = "device_settings", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = _this._widget.viewModel.state, t2 = state.uiState, settingsUIState = t2.settingsUIState, t3 = settingsUIState.entityType, showAll = t3 === C.EntityType_company; if (state.get$credentials(state).token.length === 0) return T.SizedBox$(_null, _null, _null); t2 = t2.selectedCompanyIndex; t4 = state.userCompanyStates._list; t5 = J.getInterceptor$asx(t4); if (!t5.$index(t4, t2).userCompany.isAdmin) { t1 = _this._widget.viewModel; t2 = type$.JSArray_legacy_Widget; t2 = H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([new U.SettingsListTile(_s12_, t1, _null), new U.SettingsListTile(_s15_, t1, _null)], t2), _null, _null, false, _null)], t2); if (state.isLoading) t2.push(U.LinearProgressIndicator$()); return T.Stack$(C.AlignmentDirectional_m1_m1, t2, C.Clip_1, C.StackFit_0, _null, _null); } else { t6 = settingsUIState.filter; if (t6 != null) return new U.SettingsSearch(_this._widget.viewModel, t6, _null); } t6 = _this._settings_list$_scrollController; t7 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([], t7); if (!showAll) { t9 = t3 === C.EntityType_group ? settingsUIState.group.id : settingsUIState.client.id; t10 = _this._widget; if (t3 === C.EntityType_client) { t11 = t10.viewModel; t12 = t11.onViewClientPressed; t0 = t12; t12 = t11; t11 = t0; } else { t11 = t10.viewModel; t12 = t11.onViewGroupPressed; t0 = t12; t12 = t11; t11 = t0; } t10.toString; t8.push(M.Container$(_null, new N.ListFilterMessage(t9, t3, t11, t12.onClearSettingsFilterPressed, true, _null), C.Clip_0, C.MaterialAccentColor_Map_iTsEs_4294945600, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)); } t3 = K.Theme_of(context).backgroundColor; t1 = t1.localeCode; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "basic_settings"); if (t9 == null) t9 = ""; t8.push(M.Container$(_null, L.Text$(t9, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText2, _null, _null, _null), C.Clip_0, t3, _null, _null, _null, _null, _null, _null, C.EdgeInsets_19_16_0_16, _null, _null, _null)); t8.push(new U.SettingsListTile("company_details", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile(_s12_, _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("localization", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("online_payments", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("tax_settings", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("product_settings", _this._widget.viewModel, _null)); if (t5.$index(t4, t2).userCompany.company.isModuleEnabled$1(C.EntityType_task)) t8.push(new U.SettingsListTile("task_settings", _this._widget.viewModel, _null)); if (showAll && t5.$index(t4, t2).userCompany.company.isModuleEnabled$1(C.EntityType_expense)) t8.push(new U.SettingsListTile("expense_settings", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("workflow_settings", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("import_export", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile(_s15_, _this._widget.viewModel, _null)); if (showAll && t5.$index(t4, t2).userCompany.isOwner) t8.push(new U.SettingsListTile("account_management", _this._widget.viewModel, _null)); t2 = K.Theme_of(context).backgroundColor; t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "advanced_settings"); if (t1 == null) t1 = ""; t8.push(M.Container$(_null, L.Text$(t1, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText2, _null, _null, _null), C.Clip_0, t2, _null, _null, _null, _null, _null, _null, C.EdgeInsets_19_16_0_16, _null, _null, _null)); t8.push(new U.SettingsListTile("invoice_design", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("custom_fields", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("generated_numbers", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("email_settings", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("client_portal", _this._widget.viewModel, _null)); t8.push(new U.SettingsListTile("templates_and_reminders", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("group_settings", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("subscriptions", _this._widget.viewModel, _null)); if (showAll) t8.push(new U.SettingsListTile("user_management", _this._widget.viewModel, _null)); t1 = H.setRuntimeTypeInfo([new X.ScrollableListView(t8, t6, _null, false, _null)], t7); if (state.isLoading) t1.push(U.LinearProgressIndicator$()); return T.Stack$(C.AlignmentDirectional_m1_m1, t1, C.Clip_1, C.StackFit_0, _null, _null); } }; U.SettingsListTile.prototype = { build$1: function(_, context) { var icon, t3, t4, t5, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this.section; if (t2 === "device_settings") icon = D.getLayout(context) === C.AppLayout_mobile ? C.IconData_58531_MaterialIcons_null_false : C._MdiIconData_7T11; else icon = Q.getSettingIcon(t2); t3 = K.Theme_of(context).cardColor; t4 = this.viewModel.state.uiState.containsRoute$1("/" + t2) && D.getLayout(context) === C.AppLayout_desktop; t5 = D.getLayout(context); return M.Container$(_null, new N.SelectedIndicator(Q.ListTile$(false, _null, t5 === C.AppLayout_desktop, true, false, _null, new T.Padding(C.EdgeInsets_6_2_0_0, L.Icon$(icon, _null, 22), _null), _null, new U.SettingsListTile_build_closure(this, context), false, _null, _null, _null, _null, L.Text$(t1.lookup$1(t2), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText1.copyWith$1$fontSize(14), _null, _null, _null), _null), t4, false, _null), C.Clip_0, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); } }; U.SettingsListTile_build_closure.prototype = { call$0: function() { var t1 = this.$this; return t1.viewModel.loadSection.call$3(this.context, t1.section, 0); }, $signature: 9 }; U.SettingsSearch.prototype = { build$1: function(_, context) { var company, t4, map, t5, i, t6, t7, _i, field, t8, t9, _null = null, _s8_ = "company1", _s8_0 = "company2", _s8_1 = "company3", _s8_2 = "company4", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; company = J.$index$asx(t3._list, t2).userCompany.company; t2 = type$.JSArray_legacy_String; t3 = H.setRuntimeTypeInfo(["name", "id_number", "vat_number", "website", "email", "phone", "size", "industry"], t2); if (company.getCustomFieldLabel$1(_s8_).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_)); if (company.getCustomFieldLabel$1(_s8_0).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_0)); if (company.getCustomFieldLabel$1(_s8_1).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_1)); if (company.getCustomFieldLabel$1(_s8_2).length !== 0) t3.push(company.getCustomFieldLabel$1(_s8_2)); t4 = type$.JSArray_legacy_List_legacy_String; map = P.LinkedHashMap_LinkedHashMap$_literal(["company_details", H.setRuntimeTypeInfo([t3, H.setRuntimeTypeInfo(["address", "postal_code", "country"], t2), H.setRuntimeTypeInfo(["logo"], t2), H.setRuntimeTypeInfo(["defaults", "auto_bill", "payment_type", "payment_terms", "online_payment_email", "manual_payment_email", "invoice_terms", "invoice_footer", "quote_terms", "quote_footer", "credit_terms", "credit_footer"], t2), H.setRuntimeTypeInfo(["default_documents"], t2)], t4), "user_details", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["first_name", "last_name", "email", "phone", "password", "accent_color", "connect_google", "connect_gmail", "enable_two_factor"], t2), H.setRuntimeTypeInfo(["notifications"], t2)], t4), "localization", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["currency", "language", "timezone", "date_format", "military_time", "first_month_of_the_year"], t2), H.setRuntimeTypeInfo(["custom_labels"], t2)], t4), "online_payments", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["company_gateways", "auto_bill_on", "use_available_credits", "allow_over_payment", "allow_under_payment"], t2)], t4), "tax_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["tax_settings"], t2)], t4), "tax_settings_rates", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["tax_rates"], t2)], t4), "product_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["fill_products", "update_products", "convert_products"], t2)], t4), "task_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["task_settings", "auto_start_tasks", "show_tasks_table"], t2)], t4), "task_status", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["task_statuses"], t2)], t4), "expense_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["should_be_invoiced", "mark_paid"], t2)], t4), "expense_category", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["expense_categories"], t2)], t4), "workflow_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["auto_email_invoice", "auto_archive_invoice", "lock_invoices"], t2), H.setRuntimeTypeInfo(["auto_convert"], t2)], t4), "import_export", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["import", "export"], t2)], t4), "device_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["rows_per_page", "long_press_multiselect", "biometric_authentication", "refresh_data"], t2), H.setRuntimeTypeInfo(["dark_mode", "custom_colors"], t2)], t4), "account_management", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["activate_company", "enable_markdown", "decimal_comma", "api_tokens", "api_webhooks", "purge_data", "delete_company"], t2), H.setRuntimeTypeInfo(["enabled_modules"], t2), H.setRuntimeTypeInfo(["google_analytics"], t2), H.setRuntimeTypeInfo(["password_timeout", "web_session_timeout"], t2)], t4), "invoice_design", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["invoice_design", "quote_design", "page_size", "font_size", "primary_font", "secondary_font", "primary_color", "secondary_color", "empty_columns"], t2)], t4), "custom_designs", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["custom_designs"], t2)], t4), "custom_fields", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["custom_fields"], t2)], t4), "generated_numbers", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["number_padding", "number_counter", "recurring_prefix", "reset_counter", "invoice_number", "client_number", "credit_number", "payment_number"], t2)], t4), "client_portal", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["client_portal", "dashboard", "tasks", "portal_mode", "subdomain", "domain", "client_registration", "document_upload"], t2), H.setRuntimeTypeInfo(["enable_portal_password", "show_accept_invoice_terms", "show_accept_quote_terms", "require_invoice_signature", "require_quote_signature"], t2), H.setRuntimeTypeInfo(["messages"], t2), H.setRuntimeTypeInfo(["custom_css"], t2)], t4), "email_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["send_from_gmail", "email_design", "from_name", "reply_to_email", "reply_to_name", "bcc_email", "attach_pdf", "attach_documents", "attach_ubl", "email_signature"], t2)], t4), "templates_and_reminders", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["template", "send_reminders", "late_fees"], t2)], t4), "group_settings", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["groups"], t2)], t4), "subscriptions", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["subscriptions"], t2)], t4), "user_management", H.setRuntimeTypeInfo([H.setRuntimeTypeInfo(["users"], t2)], t4)], type$.legacy_String, type$.legacy_List_legacy_List_legacy_String); t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); for (t2 = map.get$keys(map), t2 = t2.get$iterator(t2), t3 = this.filter; t2.moveNext$0();) { t5 = t2.get$current(t2); for (i = 0; i < map.$index(0, t5).length; ++i) for (t6 = map.$index(0, t5)[i], t7 = t6.length, _i = 0; _i < t6.length; t6.length === t7 || (0, H.throwConcurrentModificationError)(t6), ++_i) { field = t6[_i]; t8 = t1.lookup$1(field).toLowerCase(); t9 = t3.toLowerCase(); if (H.stringContainsUnchecked(t8, t9, 0)) { t8 = t1.lookup$1(field); t4.push(Q.ListTile$(false, _null, _null, true, false, _null, new T.Padding(C.EdgeInsets_6_10_0_0, new L.Icon(Q.getSettingIcon(t5), 22, _null, _null), _null), _null, new U.SettingsSearch_build_closure(this, context, t5, i), false, _null, _null, new L.Text(t1.lookup$1(t5), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new L.Text(t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } } } return new X.ScrollableListView(t4, _null, _null, false, _null); } }; U.SettingsSearch_build_closure.prototype = { call$0: function() { var _this = this; return _this.$this.viewModel.loadSection.call$3(_this.context, _this.section, _this.i); }, $signature: 9 }; D.SettingsListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new D.SettingsListBuilder_build_closure(), D.settings_list_vm_SettingsListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SettingsListVM); } }; D.SettingsListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { return new U.SettingsList(viewModel, null); }, $signature: 2515 }; D.SettingsListVM.prototype = {}; D.SettingsListVM_fromStore_closure.prototype = { call$3: function(context, section, tabIndex) { var t3, t4, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).userCompany.company; t2 = t3.$index(t1, t2).userCompany.user; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(t4, null, null, t2, false, section, false, tabIndex)); }, "call*": "call$3", $requiredArgCount: 3, $signature: 2516 }; D.SettingsListVM_fromStore_closure2.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ClearSettingsFilter()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; D.SettingsListVM_fromStore_closure1.prototype = { call$1: function(context) { M.viewEntity(false, this.settingsUIState.client, null, false); }, $signature: 14 }; D.SettingsListVM_fromStore_closure0.prototype = { call$1: function(context) { M.viewEntity(false, this.settingsUIState.group, null, false); }, $signature: 14 }; A.SettingsScreen.prototype = { build$1: function(_, context) { var _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), t1 = store.get$_store$_state().uiState.settingsUIState, t2 = "__cleared_at_" + t1.filterClearedAt + "__", t3 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t1 = t1.filter; return Y.ListScaffold$(H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget), C.List_empty8, new N.ListFilter(C.EntityType_settings, t1, new A.SettingsScreen_build_closure(store), t3, new D.ValueKey(t2, type$.ValueKey_legacy_String)), new D.SettingsListBuilder(_null), _null, C.EntityType_settings, _null, 0, _null, _null, _null); } }; A.SettingsScreen_build_closure.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterSettings(value)); }, $signature: 7 }; L.SettingsScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.SettingsScreenBuilder_build_closure(), L.settings_screen_vm_SettingsScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SettingsScreenVM); } }; L.SettingsScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new A.SettingsScreen(null); }, $signature: 2517 }; L.SettingsScreenVM.prototype = {}; X.SettingsWizard.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new X._SettingsWizardState(t1, new O.Debouncer(1500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new F.WebClient(), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); }, get$user: function() { return this.user; } }; X._SettingsWizardState.prototype = { initState$0: function() { var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._settings_wizard$_firstNameController; t1.set$text(0, _this._widget.user.firstName); t2 = _this._settings_wizard$_lastNameController; t2.set$text(0, _this._widget.user.lastName); _this._settings_wizard$_controllers = H.setRuntimeTypeInfo([_this._settings_wizard$_nameController, t1, t2, _this._settings_wizard$_subdomainController], type$.JSArray_legacy_TextEditingController); }, dispose$0: function(_) { this._settings_wizard$_focusNode.dispose$0(0); C.JSArray_methods.forEach$1(this._settings_wizard$_controllers, new X._SettingsWizardState_dispose_closure()); this.super$State$dispose(0); }, _settings_wizard$_validateSubdomain$0: function() { this._settings_wizard$_debouncer.run$1(new X._SettingsWizardState__validateSubdomain_closure(this)); }, _onRefreshPressed$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, t2, store, t3, completer, t1; var $async$_onRefreshPressed$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = $async$self._framework$_element; t2.toString; store = O.StoreProvider_of(t2, type$.legacy_AppState); t2 = $async$self._framework$_element; t2.toString; t3 = type$.Null; completer = O.snackBarCompleter(t2, t1.get$refreshComplete(), false, t3); completer.future.then$1$1(0, new X._SettingsWizardState__onRefreshPressed_closure($async$self, store, t1), t3).catchError$1(new X._SettingsWizardState__onRefreshPressed_closure0($async$self)); J.$index$asx(store.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, true, true, true)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_onRefreshPressed$0, $async$completer); }, _settings_wizard$_onSavePressed$0: function() { var t1, store, $navigator, state, _this = this, isValid = $.$get$_SettingsWizardState__formKey().get$currentState().validate$0(); _this.setState$1(new X._SettingsWizardState__onSavePressed_closure(_this, isValid)); if (!isValid || _this._settings_wizard$_isCheckingSubdomain) return; t1 = _this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = _this._framework$_element; t1.toString; $navigator = K.Navigator_of(t1, false); state = store.get$_store$_state(); t1 = _this._framework$_element; t1.toString; O.passwordCallback(false, new X._SettingsWizardState__onSavePressed_closure0(_this, $navigator, store, state), t1); }, build$1: function(_, context) { var companyName, firstName, lastName, t3, t4, t5, t6, currency, language, darkMode, subdomain, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), countCompanies = state.get$companies().length, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "company_name"); if (t2 == null) t2 = ""; companyName = S.DecoratedFormField$(false, _null, true, _this._settings_wizard$_autoValidate, _this._settings_wizard$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new X._SettingsWizardState_build_closure(t1)); t2 = t1.get$firstName(); firstName = S.DecoratedFormField$(false, _null, false, _this._settings_wizard$_autoValidate, _this._settings_wizard$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new X._SettingsWizardState_build_closure0(t1)); t2 = t1.get$lastName(); lastName = S.DecoratedFormField$(false, _null, false, _this._settings_wizard$_autoValidate, _this._settings_wizard$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new X._SettingsWizardState_build_closure1(t1)); t2 = "__currency_" + H.S(_this._settings_wizard$_currencyId) + "__"; t3 = type$.ValueKey_legacy_String; t4 = $.$get$memoizedCurrencyList(); t5 = state.staticState; t4 = t4.call$1(t5.currencyMap); t6 = t1.get$currency(); currency = F.EntityDropdown$(true, false, false, _this._settings_wizard$_currencyId, t4, _null, C.EntityType_currency, new D.ValueKey(t2, t3), t6, _null, new X._SettingsWizardState_build_closure2(_this), _null, _null, new X._SettingsWizardState_build_closure3(t1)); t6 = "__language_" + H.S(_this._settings_wizard$_languageId) + "__"; t5 = $.$get$memoizedLanguageList().call$1(t5.languageMap); t2 = t1.get$language(t1); language = F.EntityDropdown$(true, false, false, _this._settings_wizard$_languageId, t5, _null, C.EntityType_language, new D.ValueKey(t6, t3), t2, _null, new X._SettingsWizardState_build_closure4(_this, store, context), _null, _null, new X._SettingsWizardState_build_closure5(t1)); darkMode = new A.LayoutBuilder(new X._SettingsWizardState_build_closure6(t1, state, store), _null); t2 = t1.get$subdomain(); t3 = _this._settings_wizard$_autoValidate; if (_this._settings_wizard$_isCheckingSubdomain) t4 = C.IconData_62057_MaterialIcons_null_false; else t4 = _this._settings_wizard$_isSubdomainUnique ? C.IconData_57690_MaterialIcons_null_false : C.IconData_57912_MaterialIcons_null_false; t4 = L.Icon$(t4, _null, _null); subdomain = S.DecoratedFormField$(false, _null, false, t3, _this._settings_wizard$_subdomainController, _null, true, _null, t1.get$subdomainHelp(), _null, H.setRuntimeTypeInfo([new B.FilteringTextInputFormatter(P.RegExp_RegExp("[a-z0-9\\-]", true, false), true)], type$.JSArray_legacy_TextInputFormatter), false, false, _null, _null, t2, _null, _null, false, new X._SettingsWizardState_build_closure7(_this), _null, _null, true, t4, _null, C.TextAlign_4, new X._SettingsWizardState_build_closure8(_this, t1)); t4 = $.$get$_SettingsWizardState__formKey(); if (_this._settings_wizard$_isSaving) t2 = new V.LoadingIndicator(200, false, _null); else { t2 = type$.JSArray_legacy_Widget; if (D.getLayout(context) === C.AppLayout_mobile) { t2 = H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_0_8, L.Text$(t1.get$welcomeToInvoiceNinja(), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), _null), companyName], t2); t3 = state.authState; t5 = t3.get$isHosted(); if (t5) t2.push(subdomain); t2.push(firstName); t2.push(lastName); t2.push(language); t2.push(currency); t2.push(T.SizedBox$(_null, 16, _null)); t2.push(darkMode); t3 = t3.get$isHosted(); if (t3) t2.push(new T.Padding(C.EdgeInsets_0_32_0_0, L.Text$(t1.get$subdomainGuide(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } else { t3 = H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t1.get$welcomeToInvoiceNinja(), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1)], t2); t5 = state.authState; t6 = t5.get$isHosted(); if (t6) C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([T.SizedBox$(_null, _null, 16), new T.Flexible(1, C.FlexFit_1, darkMode, _null)], t2)); t3 = T.Row$(t3, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t6 = T.SizedBox$(_null, 16, _null); t7 = T.Expanded$(companyName, 1); t8 = T.SizedBox$(_null, _null, 16); t9 = t5.get$isHosted(); t2 = H.setRuntimeTypeInfo([t3, t6, T.Row$(H.setRuntimeTypeInfo([t7, t8, T.Expanded$(t9 ? subdomain : darkMode, 1)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.Row$(H.setRuntimeTypeInfo([T.Expanded$(firstName, 1), T.SizedBox$(_null, _null, 16), T.Expanded$(lastName, 1)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.Row$(H.setRuntimeTypeInfo([T.Expanded$(language, 1), T.SizedBox$(_null, _null, 16), T.Expanded$(currency, 1)], t2), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)], t2); t3 = t5.get$isHosted(); if (t3) t2.push(new T.Padding(C.EdgeInsets_0_32_0_0, L.Text$(t1.get$subdomainGuide(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); } t2 = T.Column$(t2, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } t2 = E.SingleChildScrollView$(M.Container$(_null, t2, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 500), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t3 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t3); if (!_this._settings_wizard$_isSaving) { t3 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new X._SettingsWizardState_build_closure9(context), _null)], t3); if (countCompanies === 1) t3.push(U.TextButton$(false, L.Text$(t1.get$refresh(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_onRefreshPressed(), _null)); t3.push(U.TextButton$(false, L.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _this.get$_settings_wizard$_onSavePressed(), _null)); C.JSArray_methods.addAll$1(t5, t3); } return E.AlertDialog$(t5, C.EdgeInsets_0_0_0_0, _null, new X.AppForm(t4, _null, t2, _this._settings_wizard$_focusNode, _null), C.EdgeInsets_24_20_24_24, _null, _null, _null); } }; X._SettingsWizardState_dispose_closure.prototype = { call$1: function(controller) { J.dispose$0$x(controller); }, $signature: 8 }; X._SettingsWizardState__validateSubdomain_closure.prototype = { call$0: function() { var subdomain, t2, state, credentials, url, t1 = this.$this; if (t1._settings_wizard$_isCheckingSubdomain) return; subdomain = J.trim$0$s(t1._settings_wizard$_subdomainController._change_notifier$_value.text); t2 = t1._framework$_element; t2.toString; state = O.StoreProvider_of(t2, type$.legacy_AppState).get$_store$_state(); credentials = state.get$credentials(state); url = credentials.url + "/check_subdomain"; if (subdomain.length === 0) { t1.setState$1(new X._SettingsWizardState__validateSubdomain__closure(t1)); return; } t1.setState$1(new X._SettingsWizardState__validateSubdomain__closure0(t1)); t2 = type$.legacy_String; t1._settings_wizard$_webClient.post$3$data(url, credentials.token, C.C_JsonCodec.encode$2$toEncodable(P.LinkedHashMap_LinkedHashMap$_literal(["subdomain", subdomain], t2, t2), null)).then$1$1(0, new X._SettingsWizardState__validateSubdomain__closure1(t1), type$.Null).catchError$1(new X._SettingsWizardState__validateSubdomain__closure2(t1)); }, $signature: 1 }; X._SettingsWizardState__validateSubdomain__closure.prototype = { call$0: function() { return this.$this._settings_wizard$_isSubdomainUnique = false; }, $signature: 19 }; X._SettingsWizardState__validateSubdomain__closure0.prototype = { call$0: function() { return this.$this._settings_wizard$_isCheckingSubdomain = true; }, $signature: 19 }; X._SettingsWizardState__validateSubdomain__closure1.prototype = { call$1: function(data) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState__validateSubdomain___closure0(t1)); }, $signature: 8 }; X._SettingsWizardState__validateSubdomain___closure0.prototype = { call$0: function() { var t1 = this.$this; t1._settings_wizard$_isSubdomainUnique = true; t1._settings_wizard$_isCheckingSubdomain = false; }, $signature: 1 }; X._SettingsWizardState__validateSubdomain__closure2.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState__validateSubdomain___closure(t1)); }, $signature: 3 }; X._SettingsWizardState__validateSubdomain___closure.prototype = { call$0: function() { var t1 = this.$this; t1._settings_wizard$_isCheckingSubdomain = t1._settings_wizard$_isSubdomainUnique = false; }, $signature: 1 }; X._SettingsWizardState__onRefreshPressed_closure.prototype = { call$1: function(value) { var t2, _s27_ = "migration_not_yet_completed", t1 = this.$this; t1.setState$1(new X._SettingsWizardState__onRefreshPressed__closure0(t1)); if (this.store.get$_store$_state().get$companies().length === 2) $.$get$navigatorKey().get$currentState().pop$0(0); else { t1 = t1._framework$_element; t1.toString; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), _s27_); O.showMessageDialog(t1, t2 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s27_) : t2, null); } }, $signature: 3 }; X._SettingsWizardState__onRefreshPressed__closure0.prototype = { call$0: function() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 19 }; X._SettingsWizardState__onRefreshPressed_closure0.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState__onRefreshPressed__closure(t1)); }, $signature: 3 }; X._SettingsWizardState__onRefreshPressed__closure.prototype = { call$0: function() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 19 }; X._SettingsWizardState__onSavePressed_closure.prototype = { call$0: function() { this.$this._settings_wizard$_autoValidate = !this.isValid; }, $signature: 1 }; X._SettingsWizardState__onSavePressed_closure0.prototype = { call$2: function(password, idToken) { var t3, t4, t5, _this = this, t1 = _this.$this, t2 = t1._framework$_element; t2.toString; t2 = L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t3 = new P._Future($.Zone__current, type$._Future_Null); t4 = _this.store; t5 = _this.state; t3.then$1$1(0, new X._SettingsWizardState__onSavePressed__closure(t1, t2, _this.navigator, t4, t5), type$.Null).catchError$1(new X._SettingsWizardState__onSavePressed__closure0(t1)); t1.setState$1(new X._SettingsWizardState__onSavePressed__closure1(t1)); t2 = t5.userCompanyStates; t5 = t5.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2._list, t5).userCompany.user.rebuild$1(new X._SettingsWizardState__onSavePressed__closure2(t1)); J.$index$asx(t4.get$_dispatchers(), 0).call$1(new L.SaveAuthUserRequest(new P._AsyncCompleter(t3, type$._AsyncCompleter_Null), t1, password, idToken)); }, $signature: 51 }; X._SettingsWizardState__onSavePressed__closure.prototype = { call$1: function(value) { var toastCompleter, t3, _this = this, t1 = _this.$this, t2 = t1._framework$_element; t2.toString; toastCompleter = O.snackBarCompleter(t2, _this.localization.get$savedSettings(), false, type$.Null); toastCompleter.future.then$1$1(0, new X._SettingsWizardState__onSavePressed___closure0(_this.navigator), type$.void).catchError$1(new X._SettingsWizardState__onSavePressed___closure1(t1)); t2 = _this.state; t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; t1 = J.$index$asx(t3._list, t2).userCompany.company.rebuild$1(new X._SettingsWizardState__onSavePressed___closure2(t1)); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(toastCompleter, t1)); }, $signature: 3 }; X._SettingsWizardState__onSavePressed___closure0.prototype = { call$1: function(value) { return this.navigator.pop$0(0); }, $signature: 219 }; X._SettingsWizardState__onSavePressed___closure1.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState__onSavePressed____closure(t1)); }, $signature: 3 }; X._SettingsWizardState__onSavePressed____closure.prototype = { call$0: function() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 19 }; X._SettingsWizardState__onSavePressed___closure2.prototype = { call$1: function(b) { var t3, t1 = this.$this, t2 = J.trim$0$s(t1._settings_wizard$_subdomainController._change_notifier$_value.text); b.get$_company_model$_$this()._subdomain = t2; t2 = b.get$settings(); t3 = J.trim$0$s(t1._settings_wizard$_nameController._change_notifier$_value.text); t2.get$_settings_model$_$this()._settings_model$_name = t3; t3 = b.get$settings(); t2 = t1._settings_wizard$_currencyId; t3.get$_settings_model$_$this()._currencyId = t2; t2 = b.get$settings(); t1 = t1._settings_wizard$_languageId; t2.get$_settings_model$_$this()._languageId = t1; return b; }, $signature: 22 }; X._SettingsWizardState__onSavePressed__closure0.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState__onSavePressed___closure(t1)); }, $signature: 3 }; X._SettingsWizardState__onSavePressed___closure.prototype = { call$0: function() { return this.$this._settings_wizard$_isSaving = false; }, $signature: 19 }; X._SettingsWizardState__onSavePressed__closure1.prototype = { call$0: function() { return this.$this._settings_wizard$_isSaving = true; }, $signature: 19 }; X._SettingsWizardState__onSavePressed__closure2.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._settings_wizard$_firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t1 = J.trim$0$s(t1._settings_wizard$_lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t1; return b; }, $signature: 78 }; X._SettingsWizardState_build_closure.prototype = { call$1: function(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; X._SettingsWizardState_build_closure0.prototype = { call$1: function(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; X._SettingsWizardState_build_closure1.prototype = { call$1: function(value) { return value.length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; X._SettingsWizardState_build_closure2.prototype = { call$1: function(currency) { var t1 = this.$this; return t1.setState$1(new X._SettingsWizardState_build__closure1(t1, currency)); }, $signature: 202 }; X._SettingsWizardState_build__closure1.prototype = { call$0: function() { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); return this.$this._settings_wizard$_currencyId = t1; }, $signature: 150 }; X._SettingsWizardState_build_closure3.prototype = { call$1: function(value) { return J.get$isEmpty$asx(value) ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 24 }; X._SettingsWizardState_build_closure4.prototype = { call$1: function(language) { var t1 = this.$this; t1.setState$1(new X._SettingsWizardState_build__closure0(t1, language)); t1 = language == null ? null : language.get$id(language); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompanyLanguage(t1)); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 44 }; X._SettingsWizardState_build__closure0.prototype = { call$0: function() { var t1 = this.language; t1 = t1 == null ? null : t1.get$id(t1); return this.$this._settings_wizard$_languageId = t1; }, $signature: 150 }; X._SettingsWizardState_build_closure5.prototype = { call$1: function(value) { return J.get$isEmpty$asx(value) ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 24 }; X._SettingsWizardState_build_closure6.prototype = { call$2: function(context, constraints) { var t2, t3, _null = null, t1 = this.localization; t1 = H.setRuntimeTypeInfo([L.Text$(t1.get$light(), _null, _null, _null, _null, _null, _null, _null, _null, _null), L.Text$(t1.get$dark(), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_legacy_Widget); t2 = constraints.maxWidth / 2 - 2; t3 = this.state.prefState.enableDarkMode; return E.ToggleButtons$(t1, new S.BoxConstraints(t2, t2, 40, 40), H.setRuntimeTypeInfo([!t3, t3], type$.JSArray_legacy_bool), new X._SettingsWizardState_build__closure(this.store, context)); }, $signature: 2518 }; X._SettingsWizardState_build__closure.prototype = { call$1: function(index) { var _null = null, isDark = index === 1, t1 = isDark ? "dark" : "light", t2 = type$.legacy_String; t1 = M.UpdateUserPreferences$(_null, t1, isDark ? A.BuiltMap_BuiltMap(C.Map_empty0, t2, t2) : A.BuiltMap_BuiltMap(C.Map_so4CA, t2, t2), isDark, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(t1); this.context.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState).rebuild$0(); }, $signature: 103 }; X._SettingsWizardState_build_closure8.prototype = { call$1: function(value) { var t1; if (value.length === 0) return this.localization.get$pleaseEnterAValue(); else { t1 = this.$this; if (!t1._settings_wizard$_isCheckingSubdomain && !t1._settings_wizard$_isSubdomainUnique) return this.localization.get$subdomainIsNotAvailable(); } return null; }, $signature: 15 }; X._SettingsWizardState_build_closure7.prototype = { call$1: function(value) { return this.$this._settings_wizard$_validateSubdomain$0(); }, $signature: 59 }; X._SettingsWizardState_build_closure9.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; L.TaskSettings.prototype = { createState$0: function() { return new L._TaskSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), C._StateLifecycle_0); } }; L._TaskSettingsState.prototype = { initState$0: function() { this.super$State$initState(); this._task_settings$_focusNode = O.FocusScopeNode$(true, null, false); }, didChangeDependencies$0: function() { var t3, _this = this, t1 = _this._taskRateController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._task_settings$_controllers = t2; C.JSArray_methods.forEach$1(t2, new L._TaskSettingsState_didChangeDependencies_closure(_this)); t2 = _this._widget.viewModel.settings.defaultTaskRate; t3 = _this._framework$_element; t3.toString; t1.set$text(0, Y.formatNumber(t2, t3, null, null, C.FormatNumberType_4, true, null, false)); t3 = _this._task_settings$_controllers; (t3 && C.JSArray_methods).forEach$1(t3, new L._TaskSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var _this = this, t1 = _this._task_settings$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new L._TaskSettingsState_dispose_closure(_this)); _this._task_settings$_focusNode.dispose$0(0); _this.super$State$dispose(0); }, _task_settings$_onChanged$0: function() { var viewModel = this._widget.viewModel, state = viewModel.state, t1 = viewModel.settings, settings = t1.rebuild$1(new L._TaskSettingsState__onChanged_closure(this, state)); if (!J.$eq$(settings, t1)) viewModel.onSettingsChanged.call$1(settings); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _null = null, _s18_ = "show_task_end_date", _s23_ = "show_task_end_date_help", _s21_ = "tasks_shown_in_portal", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, company = viewModel.company, settings = viewModel.settings, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "task_settings"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = $.$get$_TaskSettingsState__formKey(); t6 = this._task_settings$_focusNode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "default_task_rate"); if (t7 == null) t7 = ""; t8 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, this._taskRateController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t7, _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null)], t8); t9 = viewModel.state.uiState.settingsUIState.entityType === C.EntityType_company; if (t9) { t10 = T.SizedBox$(_null, 32, _null); t11 = K.Theme_of(context).accentColor; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_start_tasks"); t12 = L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.autoStartTasks; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_start_tasks_help"); t11 = O.SwitchListTile$(t11, _null, new L._TaskSettingsState_build_closure(viewModel, company), _null, L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12, t13); t12 = K.Theme_of(context).accentColor; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s18_); t13 = L.Text$(t13 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s18_) : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = company.showTaskEndDate; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s23_); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([t10, t11, O.SwitchListTile$(t12, _null, new L._TaskSettingsState_build_closure0(viewModel, company), _null, L.Text$(t15 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s23_) : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13, t14)], t8)); } t7 = Y.FormCard$(_null, t7, _null, 4, false, _null, false, _null); t10 = H.setRuntimeTypeInfo([], t8); if (t9) { t11 = K.Theme_of(context).accentColor; t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_tasks_table"); t12 = L.Text$(t12 == null ? "" : t12, _null, _null, _null, _null, _null, _null, _null, _null, _null); t13 = company.showTasksTable; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "show_tasks_table_help"); t11 = O.SwitchListTile$(t11, _null, new L._TaskSettingsState_build_closure1(viewModel, company), _null, L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null), t12, t13); t12 = K.Theme_of(context).accentColor; t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "invoice_task_datelog"); t13 = L.Text$(t13 == null ? "" : t13, _null, _null, _null, _null, _null, _null, _null, _null, _null); t14 = company.invoiceTaskDatelog; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "invoice_task_datelog_help"); t12 = O.SwitchListTile$(t12, _null, new L._TaskSettingsState_build_closure2(viewModel, company), _null, L.Text$(t15 == null ? "" : t15, _null, _null, _null, _null, _null, _null, _null, _null, _null), t13, t14); t13 = K.Theme_of(context).accentColor; t14 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "invoice_task_timelog"); t14 = L.Text$(t14 == null ? "" : t14, _null, _null, _null, _null, _null, _null, _null, _null, _null); t15 = company.invoiceTaskTimelog; t16 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "invoice_task_timelog_help"); t13 = O.SwitchListTile$(t13, _null, new L._TaskSettingsState_build_closure3(viewModel, company), _null, L.Text$(t16 == null ? "" : t16, _null, _null, _null, _null, _null, _null, _null, _null, _null), t14, t15); t14 = K.Theme_of(context).accentColor; t15 = L.Text$(t1.get$addDocumentsToInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t16 = company.invoiceTaskDocuments; C.JSArray_methods.addAll$1(t10, H.setRuntimeTypeInfo([t11, t12, t13, O.SwitchListTile$(t14, _null, new L._TaskSettingsState_build_closure4(viewModel, company), _null, L.Text$(t1.get$addDocumentsToInvoiceHelp(), _null, _null, _null, _null, _null, _null, _null, _null, _null), t15, t16)], t8)); } t7 = H.setRuntimeTypeInfo([t7, Y.FormCard$(_null, t10, _null, 4, false, _null, false, _null)], t8); if (settings.enablePortalTasks !== false) { t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s21_); if (t10 == null) t10 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s21_); t11 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t7.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t10, settings.clientPortalTasks, new L._TaskSettingsState_build_closure5(viewModel, settings), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["invoiced", "uninvoiced", "all"], type$.JSArray_legacy_String), new L._TaskSettingsState_build_closure6(t1), t11), true, t11._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t8), _null, 4, false, _null, false, _null)); } if (t9) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "configure_statuses"); if (t1 == null) t1 = ""; t7.push(new T.Padding(C.EdgeInsets_16_0_16_0, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new L._TaskSettingsState_build_closure7(viewModel, context), _null, _null), _null)); } t7.push(T.SizedBox$(_null, 20, _null)); return K.EditScaffold$(_null, _null, new X.AppForm(t5, t7, _null, t6, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; L._TaskSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_task_settings$_onChanged()); }, $signature: 10 }; L._TaskSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_task_settings$_onChanged()); }, $signature: 10 }; L._TaskSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_task_settings$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; L._TaskSettingsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = Y.parseDouble(this.$this._taskRateController._change_notifier$_value.text, this.state.uiState.settingsUIState.entityType !== C.EntityType_company); b.get$_settings_model$_$this()._defaultTaskRate = t1; return b; }, $signature: 13 }; L._TaskSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure5(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure5.prototype = { call$1: function(b) { b.get$_company_model$_$this()._autoStartTasks = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure4(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_company_model$_$this()._showTaskEndDate = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure3(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._showTasksTable = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure2.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure2(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_company_model$_$this()._invoiceTaskDatelog = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure1(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_company_model$_$this()._invoiceTaskTimelog = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure4.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new L._TaskSettingsState_build__closure0(value))); }, $signature: 12 }; L._TaskSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_company_model$_$this()._invoiceTaskDocuments = this.value; return b; }, $signature: 22 }; L._TaskSettingsState_build_closure5.prototype = { call$1: function(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TaskSettingsState_build__closure(value))); }, $signature: 8 }; L._TaskSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._clientPortalTasks = this.value; return b; }, $signature: 13 }; L._TaskSettingsState_build_closure6.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; L._TaskSettingsState_build_closure7.prototype = { call$0: function() { return this.viewModel.onConfigureStatusesPressed.call$1(this.context); }, $signature: 9 }; F.TaskSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.TaskSettingsScreen_build_closure(), F.task_settings_vm_TaskSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskSettingsVM); } }; F.TaskSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new L.TaskSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2519 }; F.TaskSettingsVM.prototype = { get$company: function() { return this.company; } }; F.TaskSettingsVM_fromStore_closure0.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; F.TaskSettingsVM_fromStore_closure1.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; F.TaskSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new F.TaskSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; F.TaskSettingsVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; F.TaskSettingsVM_fromStore_closure2.prototype = { call$1: function(context) { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "task_status", false, _null)); }, $signature: 14 }; N.TaxSettings.prototype = { createState$0: function() { return new N._TaxSettingsState(C._StateLifecycle_0); } }; N._TaxSettingsState.prototype = { initState$0: function() { this.super$State$initState(); this._tax_settings$_focusNode = O.FocusScopeNode$(true, null, false); }, dispose$0: function(_) { this._tax_settings$_focusNode.dispose$0(0); this.super$State$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, settings = viewModel.settings, company = viewModel.company, state = viewModel.state, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "tax_settings"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = $.$get$_TaxSettingsState__formKey(); t6 = this._tax_settings$_focusNode; t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "invoice_tax_rates"); if (t7 == null) t7 = ""; t8 = company.numberOfInvoiceTaxRates; t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "item_tax_rates"); if (t9 == null) t9 = ""; t10 = company.numberOfItemTaxRates; t11 = T.SizedBox$(_null, 16, _null); t12 = t1.get$inclusiveTaxes(); t13 = settings.enableInclusiveTaxes; t14 = type$.JSArray_legacy_Widget; t13 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([new N.NumberOfRatesSelector(t7, t8, new N._TaxSettingsState_build_closure(viewModel, company), _null), new N.NumberOfRatesSelector(t9, t10, new N._TaxSettingsState_build_closure0(viewModel, company), _null), t11, K.BoolDropdownButton$(_null, _null, "\n" + t1.get$exclusive(t1) + ": 100 + 10% = 100 + 10\n" + t1.get$inclusive() + ": 100 + 10% = 90.91 + 9.09", C._MdiIconData_egL, t12, _null, new N._TaxSettingsState_build_closure1(viewModel, settings), _null, t13)], t14), _null, 4, false, _null, false, _null)], t14); if (company.get$enableFirstInvoiceTaxRate()) { t7 = state.userCompanyStates; t8 = state.uiState.selectedCompanyIndex; t8 = J.get$isNotEmpty$asx(J.$index$asx(t7._list, t8).taxRateState.list._list); t7 = t8; } else t7 = false; if (t7) { t7 = H.setRuntimeTypeInfo([new D.TaxRateDropdown(t1.get$defaultTaxRate(), new N._TaxSettingsState_build_closure2(viewModel, settings), settings.defaultTaxName1, settings.defaultTaxRate1, _null)], t14); if (company.get$enableSecondInvoiceTaxRate()) t7.push(new D.TaxRateDropdown(t1.get$defaultTaxRate(), new N._TaxSettingsState_build_closure3(viewModel, settings), settings.defaultTaxName2, settings.defaultTaxRate2, _null)); if (company.get$enableThirdInvoiceTaxRate()) t7.push(new D.TaxRateDropdown(t1.get$defaultTaxRate(), new N._TaxSettingsState_build_closure4(viewModel, settings), settings.defaultTaxName3, settings.defaultTaxRate3, _null)); t13.push(Y.FormCard$(_null, t7, _null, 4, false, _null, false, _null)); } if (state.uiState.settingsUIState.entityType === C.EntityType_company) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "configure_rates"); if (t1 == null) t1 = ""; t13.push(new T.Padding(C.EdgeInsets_16_0_16_0, new D.AppButton(_null, C.IconData_58751_MaterialIcons_null_false, t1.toUpperCase(), new N._TaxSettingsState_build_closure5(viewModel, context), _null, _null), _null)); } return K.EditScaffold$(_null, _null, new X.AppForm(t5, t13, _null, t6, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; N._TaxSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new N._TaxSettingsState_build__closure4(value))); }, $signature: 173 }; N._TaxSettingsState_build__closure4.prototype = { call$1: function(b) { b.get$_company_model$_$this()._numberOfInvoiceTaxRates = this.value; return b; }, $signature: 22 }; N._TaxSettingsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new N._TaxSettingsState_build__closure3(value))); }, $signature: 173 }; N._TaxSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_company_model$_$this()._numberOfItemTaxRates = this.value; return b; }, $signature: 22 }; N._TaxSettingsState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._TaxSettingsState_build__closure2(value))); }, $signature: 12 }; N._TaxSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enableInclusiveTaxes = this.value; return b; }, $signature: 13 }; N._TaxSettingsState_build_closure2.prototype = { call$1: function(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._TaxSettingsState_build__closure1(taxRate))); }, $signature: 80 }; N._TaxSettingsState_build__closure1.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName1 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate1 = t1; return b; }, $signature: 13 }; N._TaxSettingsState_build_closure3.prototype = { call$1: function(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._TaxSettingsState_build__closure0(taxRate))); }, $signature: 80 }; N._TaxSettingsState_build__closure0.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName2 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate2 = t1; return b; }, $signature: 13 }; N._TaxSettingsState_build_closure4.prototype = { call$1: function(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new N._TaxSettingsState_build__closure(taxRate))); }, $signature: 80 }; N._TaxSettingsState_build__closure.prototype = { call$1: function(b) { var t1 = this.taxRate, t2 = t1.name; b.get$_settings_model$_$this()._defaultTaxName3 = t2; t1 = t1.rate; b.get$_settings_model$_$this()._defaultTaxRate3 = t1; return b; }, $signature: 13 }; N._TaxSettingsState_build_closure5.prototype = { call$0: function() { return this.viewModel.onConfigureRatesPressed.call$1(this.context); }, $signature: 9 }; N.NumberOfRatesSelector.prototype = { build$1: function(_, context) { var t5, t6, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = "" + this.numberOfRates, t3 = type$.legacy_String, t4 = K.DropdownMenuItem$(L.Text$(t1.get$disabled(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), "0", t3); t1 = t1.localeCode; t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "one_tax_rate"); t5 = K.DropdownMenuItem$(L.Text$(t5 == null ? "" : t5, _null, _null, _null, _null, _null, _null, _null, _null, _null), "1", t3); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "two_tax_rates"); t6 = K.DropdownMenuItem$(L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), "2", t3); t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "three_tax_rates"); return new Q.AppDropdownButton(this.label, t2, new N.NumberOfRatesSelector_build_closure(this), H.setRuntimeTypeInfo([t4, t5, t6, K.DropdownMenuItem$(L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), "3", t3)], type$.JSArray_legacy_DropdownMenuItem_legacy_String), _null, true, "", _null, type$.AppDropdownButton_legacy_String); } }; N.NumberOfRatesSelector_build_closure.prototype = { call$1: function(value) { var t1 = value == null || J.get$isEmpty$asx(value) ? null : P.int_parse(value, null); return this.$this.onChanged.call$1(t1); }, $signature: 10 }; A.TaxSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.TaxSettingsScreen_build_closure(), A.tax_settings_vm_TaxSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxSettingsVM); } }; A.TaxSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new N.TaxSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2520 }; A.TaxSettingsVM.prototype = { get$company: function() { return this.company; } }; A.TaxSettingsVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; A.TaxSettingsVM_fromStore_closure1.prototype = { call$1: function(company) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new E.UpdateCompany(company)); }, $signature: 126 }; A.TaxSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.TaxSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; A.TaxSettingsVM_fromStore__closure.prototype = { call$0: function() { var t1 = this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState, t2 = this.context, completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); }, $signature: 1 }; A.TaxSettingsVM_fromStore_closure2.prototype = { call$1: function(context) { var _null = null; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(_null, _null, _null, _null, false, "tax_settings_rates", false, _null)); }, $signature: 14 }; L.TemplatesAndReminders.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new L._TemplatesAndRemindersState(new O.Debouncer(500, true), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; L._TemplatesAndRemindersState.prototype = { initState$0: function() { var t1, t2, t3, _this = this; _this.super$State$initState(); _this._templates_and_reminders$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(0, 2, _this); _this._templates_and_reminders$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_handleTabSelection()), false); t1 = _this._subjectController; t2 = _this._templates_and_reminders$_bodyController; _this._templates_and_reminders$_controllers = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); t3 = _this.get$_templates_and_reminders$_onChanged(); t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t3), false); t2 = t2.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(t3), false); }, didChangeDependencies$0: function() { this._loadTemplate$1(this._widget.viewModel.selectedTemplate); this.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._templates_and_reminders$_focusNode.dispose$0(0); _this._templates_and_reminders$_controller.removeListener$1(0, _this.get$_handleTabSelection()); _this._templates_and_reminders$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._templates_and_reminders$_controllers, new L._TemplatesAndRemindersState_dispose_closure(_this)); _this.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$dispose(0); }, _loadTemplate$1: function(emailTemplate) { var t3, _this = this, viewModel = _this._widget.viewModel, settings = viewModel.settings, templateMap = viewModel.state.staticState.templateMap, t1 = _this._templates_and_reminders$_bodyController, t2 = _this.get$_templates_and_reminders$_onChanged(); t1.removeListener$1(0, t2); t3 = _this._subjectController; t3.removeListener$1(0, t2); t1.set$text(0, settings.getEmailBody$1(emailTemplate)); t3.set$text(0, settings.getEmailSubject$1(emailTemplate)); t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(t2), false); t3 = t3.ChangeNotifier__listeners; t3._insertBefore$3$updateFirst(t3._collection$_first, new B._ListenerEntry(t2), false); _this.setState$1(new L._TemplatesAndRemindersState__loadTemplate_closure(_this, templateMap, emailTemplate)); }, _templates_and_reminders$_onChanged$0: function() { this._templates_and_reminders$_debouncer.run$1(new L._TemplatesAndRemindersState__onChanged_closure(this)); }, _handleTabSelection$0: function() { var subject, body, t1, _this = this; if (_this._templates_and_reminders$_isLoading || _this._templates_and_reminders$_controller._tab_controller$_index === 0) return; subject = J.trim$0$s(_this._subjectController._change_notifier$_value.text); body = J.trim$0$s(_this._templates_and_reminders$_bodyController._change_notifier$_value.text); if (subject === _this._lastSubject && body === _this._lastBody) return; else { _this._lastSubject = subject; _this._lastBody = body; } _this.setState$1(new L._TemplatesAndRemindersState__handleTabSelection_closure(_this)); t1 = _this._framework$_element; t1.toString; L.loadEmailTemplate(body, t1, null, new L._TemplatesAndRemindersState__handleTabSelection_closure0(_this), subject, _this._widget.viewModel.selectedTemplate.toString$0(0)); }, build$1: function(_, context) { var t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, template = viewModel.selectedTemplate, t2 = state.userCompanyStates, t3 = state.uiState, t4 = t3.selectedCompanyIndex, company = J.$index$asx(t2._list, t4).userCompany.company; t4 = t1.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "templates_and_reminders"); if (t2 == null) t2 = ""; t5 = viewModel.onSavePressed; t3 = t3.settingsUIState.updatedAt; t6 = type$.JSArray_legacy_Widget; t7 = E.TabBar$(_this._templates_and_reminders$_controller, _null, false, new D.ValueKey(t3, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$edit()), E.Tab$(_null, t1.get$preview())], t6)); t3 = "__" + t3 + "_" + _this._subjectPreview + "_" + _this._bodyPreview + "_"; t8 = type$.ValueKey_legacy_String; t9 = _this._templates_and_reminders$_controller; t10 = $.$get$_TemplatesAndRemindersState__formKey(); t11 = _this._templates_and_reminders$_focusNode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "template"); if (t4 == null) t4 = ""; t12 = $.$get$_$templateValues()._set$_set.where$1(0, new L._TemplatesAndRemindersState_build_closure(company)); t13 = t12.$ti._eval$1("MappedIterable<1,DropdownMenuItem*>"); t13 = P.List_List$of(new H.MappedIterable(t12, new L._TemplatesAndRemindersState_build_closure0(t1), t13), true, t13._eval$1("Iterable.E")); t12 = t1.get$subject(); t12 = S.DecoratedFormField$(false, _null, false, false, _this._subjectController, _null, true, _null, _this._defaultSubject, _null, _null, false, false, _null, _null, t12, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t14 = t1.get$body(t1); t14 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t4, template, new L._TemplatesAndRemindersState_build_closure1(_this, viewModel), t13, false, true, "", _null, type$.AppDropdownButton_legacy_EmailTemplate), t12, S.DecoratedFormField$(false, _null, false, false, _this._templates_and_reminders$_bodyController, _null, true, _null, _this._defaultBody, _null, _null, false, false, _null, C.TextInputType_1_null_null, t14, 8, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t6), _null, 4, false, _null, false, _null)], t6); if (template === C.EmailTemplate_reminder1) { t4 = "__reminder1_" + template.toString$0(0) + "__"; t12 = settings.enableReminder1; t13 = settings.numDaysReminder1; t15 = settings.scheduleReminder1; t14.push(new L.ReminderSettings(t12, t13, settings.lateFeeAmount1, settings.lateFeePercent1, t15, new L._TemplatesAndRemindersState_build_closure2(viewModel, settings), new D.ValueKey(t4, t8))); } if (template === C.EmailTemplate_reminder2) { t4 = "__reminder2_" + template.toString$0(0) + "__"; t12 = settings.enableReminder2; t13 = settings.numDaysReminder2; t15 = settings.scheduleReminder2; t14.push(new L.ReminderSettings(t12, t13, settings.lateFeeAmount2, settings.lateFeePercent2, t15, new L._TemplatesAndRemindersState_build_closure3(viewModel, settings), new D.ValueKey(t4, t8))); } if (template === C.EmailTemplate_reminder3) { t4 = "__reminder3_" + template.toString$0(0) + "__"; t12 = settings.enableReminder3; t13 = settings.numDaysReminder3; t15 = settings.scheduleReminder3; t14.push(new L.ReminderSettings(t12, t13, settings.lateFeeAmount3, settings.lateFeePercent3, t15, new L._TemplatesAndRemindersState_build_closure4(viewModel, settings), new D.ValueKey(t4, t8))); } if (template === C.EmailTemplate_reminder_endless) { t4 = K.BoolDropdownButton$(_null, _null, _null, C.IconData_57898_MaterialIcons_null_false, t1.get$sendEmail(), _null, new L._TemplatesAndRemindersState_build_closure5(viewModel, settings), _null, settings.enableReminderEndless); t12 = t1.get$frequency(t1); t13 = settings.endlessReminderFrequencyId; if (t13 === "0") t13 = _null; t1 = C.Map_tOn4d.map$2$1(0, new L._TemplatesAndRemindersState_build_closure6(t1), type$.legacy_String, type$.legacy_DropdownMenuItem_legacy_String); t1 = t1.get$values(t1); t14.push(Y.FormCard$(_null, H.setRuntimeTypeInfo([t4, new Q.AppDropdownButton(t12, t13, new L._TemplatesAndRemindersState_build_closure7(viewModel, settings), P.List_List$of(t1, true, H._instanceType(t1)._eval$1("Iterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t6), _null, 4, false, _null, false, _null)); } t14.push(new K.VariablesHelp(template === C.EmailTemplate_quote, _null)); t1 = _this._templates_and_reminders$_isLoading; return K.EditScaffold$(_null, t7, new X.AppTabForm(t11, t10, H.setRuntimeTypeInfo([new X.ScrollableListView(t14, _null, _null, false, _null), new L.EmailPreview(_this._subjectPreview, _this._bodyPreview, t1, _null)], t6), t9, new D.ValueKey(t3, t8), _null), _null, _null, _null, false, _null, _null, t5, _null, t2); } }; L._TemplatesAndRemindersState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_templates_and_reminders$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; L._TemplatesAndRemindersState__loadTemplate_closure.prototype = { call$0: function() { var t1 = H.S(this.emailTemplate), template = J.$index$asx(this.templateMap._map$_map, t1); if (template == null) template = S._$TemplateEntity$_("", ""); t1 = this.$this; t1._defaultSubject = template.subject; t1._defaultBody = template.body; }, $signature: 1 }; L._TemplatesAndRemindersState__onChanged_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._widget.viewModel, template = t2.selectedTemplate, body = J.trim$0$s(t1._templates_and_reminders$_bodyController._change_notifier$_value.text), subject = J.trim$0$s(t1._subjectController._change_notifier$_value.text), settings = t2.settings; if (template === C.EmailTemplate_invoice) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure(body, subject)); else if (template === C.EmailTemplate_quote) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure0(body, subject)); else if (template === C.EmailTemplate_credit) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure1(body, subject)); else if (template === C.EmailTemplate_payment) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure2(body, subject)); else if (template === C.EmailTemplate_payment_partial) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure3(body, subject)); else if (template === C.EmailTemplate_reminder1) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure4(body, subject)); else if (template === C.EmailTemplate_reminder2) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure5(body, subject)); else if (template === C.EmailTemplate_reminder3) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure6(body, subject)); else if (template === C.EmailTemplate_reminder_endless) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure7(body, subject)); else if (template === C.EmailTemplate_custom1) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure8(body, subject)); else if (template === C.EmailTemplate_custom2) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure9(body, subject)); else if (template === C.EmailTemplate_custom3) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure10(body, subject)); else if (template === C.EmailTemplate_statement) settings = settings.rebuild$1(new L._TemplatesAndRemindersState__onChanged__closure11(body, subject)); if (!J.$eq$(settings, t1._widget.viewModel.settings)) t1._widget.viewModel.onSettingsChanged.call$1(settings); }, $signature: 1 }; L._TemplatesAndRemindersState__onChanged__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyInvoice = this.body; b.get$_settings_model$_$this()._emailSubjectInvoice = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyQuote = this.body; b.get$_settings_model$_$this()._emailSubjectQuote = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyCredit = this.body; b.get$_settings_model$_$this()._emailSubjectCredit = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyPayment = this.body; b.get$_settings_model$_$this()._emailSubjectPayment = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure3.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyPaymentPartial = this.body; b.get$_settings_model$_$this()._emailSubjectPaymentPartial = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure4.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyReminder1 = this.body; b.get$_settings_model$_$this()._emailSubjectReminder1 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure5.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyReminder2 = this.body; b.get$_settings_model$_$this()._emailSubjectReminder2 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure6.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyReminder3 = this.body; b.get$_settings_model$_$this()._emailSubjectReminder3 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure7.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyReminderEndless = this.body; b.get$_settings_model$_$this()._emailSubjectReminderEndless = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure8.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyCustom1 = this.body; b.get$_settings_model$_$this()._emailSubjectCustom1 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure9.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyCustom2 = this.body; b.get$_settings_model$_$this()._emailSubjectCustom2 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure10.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyCustom3 = this.body; b.get$_settings_model$_$this()._emailSubjectCustom3 = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__onChanged__closure11.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._emailBodyStatement = this.body; b.get$_settings_model$_$this()._emailSubjectStatement = this.subject; return b; }, $signature: 13 }; L._TemplatesAndRemindersState__handleTabSelection_closure.prototype = { call$0: function() { this.$this._templates_and_reminders$_isLoading = true; }, $signature: 1 }; L._TemplatesAndRemindersState__handleTabSelection_closure0.prototype = { call$4: function(subject, body, rawSubject, rawBody) { var t1 = this.$this; if (t1._framework$_element == null) return; t1.setState$1(new L._TemplatesAndRemindersState__handleTabSelection__closure(t1, subject, body)); }, $signature: 573 }; L._TemplatesAndRemindersState__handleTabSelection__closure.prototype = { call$0: function() { var t1 = this.$this; t1._templates_and_reminders$_isLoading = false; t1._subjectPreview = J.trim$0$s(this.subject); t1._bodyPreview = J.trim$0$s(this.body); }, $signature: 1 }; L._TemplatesAndRemindersState_build_closure1.prototype = { call$1: function(value) { var t1 = this.$this; return t1.setState$1(new L._TemplatesAndRemindersState_build__closure4(t1, this.viewModel, value)); }, $signature: 81 }; L._TemplatesAndRemindersState_build__closure4.prototype = { call$0: function() { var t1 = this.value; this.viewModel.onTemplateChanged.call$1(t1); this.$this._loadTemplate$1(t1); }, $signature: 1 }; L._TemplatesAndRemindersState_build_closure.prototype = { call$1: function(value) { if (C.JSArray_methods.contains$1(H.setRuntimeTypeInfo([C.EmailTemplate_invoice, C.EmailTemplate_payment, C.EmailTemplate_payment_partial], type$.JSArray_legacy_EmailTemplate), value) && !this.company.isModuleEnabled$1(C.EntityType_invoice)) return false; else if (value === C.EmailTemplate_quote && !this.company.isModuleEnabled$1(C.EntityType_quote)) return false; else if (value === C.EmailTemplate_credit && !this.company.isModuleEnabled$1(C.EntityType_credit)) return false; if (value === C.EmailTemplate_statement) return false; return true; }, $signature: 2521 }; L._TemplatesAndRemindersState_build_closure0.prototype = { call$1: function(item) { var _null = null, t1 = this.localization, $name = t1.lookup$1(item.name); if (item === C.EmailTemplate_reminder1) $name = t1.get$firstReminder(); else if (item === C.EmailTemplate_reminder2) $name = t1.get$secondReminder(); else if (item === C.EmailTemplate_reminder3) $name = t1.get$thirdReminder(); else if (item === C.EmailTemplate_custom1) $name = t1.get$firstCustom(); else if (item === C.EmailTemplate_custom2) $name = t1.get$secondCustom(); else if (item === C.EmailTemplate_custom3) $name = t1.get$thirdCustom(); return K.DropdownMenuItem$(L.Text$($name, _null, _null, _null, _null, _null, _null, _null, _null, _null), item, type$.legacy_EmailTemplate); }, $signature: 2522 }; L._TemplatesAndRemindersState_build_closure2.prototype = { call$5: function(enabled, days, schedule, feeAmount, feePercent) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TemplatesAndRemindersState_build__closure3(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 450 }; L._TemplatesAndRemindersState_build__closure3.prototype = { call$1: function(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder1 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder1 = _this.days; b.get$_settings_model$_$this()._scheduleReminder1 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount1 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent1 = _this.feePercent; return b; }, $signature: 13 }; L._TemplatesAndRemindersState_build_closure3.prototype = { call$5: function(enabled, days, schedule, feeAmount, feePercent) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TemplatesAndRemindersState_build__closure2(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 450 }; L._TemplatesAndRemindersState_build__closure2.prototype = { call$1: function(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder2 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder2 = _this.days; b.get$_settings_model$_$this()._scheduleReminder2 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount2 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent2 = _this.feePercent; return b; }, $signature: 13 }; L._TemplatesAndRemindersState_build_closure4.prototype = { call$5: function(enabled, days, schedule, feeAmount, feePercent) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TemplatesAndRemindersState_build__closure1(enabled, days, schedule, feeAmount, feePercent))); }, $signature: 450 }; L._TemplatesAndRemindersState_build__closure1.prototype = { call$1: function(b) { var _this = this; b.get$_settings_model$_$this()._enableReminder3 = _this.enabled; b.get$_settings_model$_$this()._numDaysReminder3 = _this.days; b.get$_settings_model$_$this()._scheduleReminder3 = _this.schedule; b.get$_settings_model$_$this()._lateFeeAmount3 = _this.feeAmount; b.get$_settings_model$_$this()._lateFeePercent3 = _this.feePercent; return b; }, $signature: 13 }; L._TemplatesAndRemindersState_build_closure5.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TemplatesAndRemindersState_build__closure0(value))); }, $signature: 12 }; L._TemplatesAndRemindersState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._enableReminderEndless = this.value; return b; }, $signature: 13 }; L._TemplatesAndRemindersState_build_closure7.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new L._TemplatesAndRemindersState_build__closure(value))); }, $signature: 10 }; L._TemplatesAndRemindersState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._endlessReminderFrequencyId = this.value; return b; }, $signature: 13 }; L._TemplatesAndRemindersState_build_closure6.prototype = { call$2: function(id, frequency) { var _null = null; return new P.MapEntry(id, K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), id, type$.legacy_String), type$.MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String); }, $signature: 449 }; L.ReminderSettings.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new L._ReminderSettingsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, true), C._StateLifecycle_0); }, onChanged$5: function(arg0, arg1, arg2, arg3, arg4) { return this.onChanged.call$5(arg0, arg1, arg2, arg3, arg4); } }; L._ReminderSettingsState.prototype = { dispose$0: function(_) { C.JSArray_methods.forEach$1(this._templates_and_reminders$_controllers, new L._ReminderSettingsState_dispose_closure(this)); this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t3, t4, _this = this, _null = null, t1 = _this._widget; _this._templates_and_reminders$_enabled = t1.enabled; _this._templates_and_reminders$_schedule = t1.schedule; t1 = _this._daysController; t2 = _this._feeAmountController; t3 = _this._feePercentController; t4 = H.setRuntimeTypeInfo([t1, t2, t3], type$.JSArray_legacy_TextEditingController); _this._templates_and_reminders$_controllers = t4; C.JSArray_methods.forEach$1(t4, new L._ReminderSettingsState_didChangeDependencies_closure(_this)); t4 = _this._widget.numDays; t1.set$text(0, H.S(t4 == null ? "" : t4)); t1 = _this._widget.feeAmount; t4 = _this._framework$_element; t4.toString; t2.set$text(0, Y.formatNumber(t1, t4, _null, _null, C.FormatNumberType_4, true, _null, false)); t4 = _this._widget.feePercent; t1 = _this._framework$_element; t1.toString; t3.set$text(0, Y.formatNumber(t4, t1, _null, _null, C.FormatNumberType_4, true, _null, false)); C.JSArray_methods.forEach$1(_this._templates_and_reminders$_controllers, new L._ReminderSettingsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, _onTextChanged$0: function() { this._templates_and_reminders$_debouncer.run$1(new L._ReminderSettingsState__onTextChanged_closure(this)); }, _templates_and_reminders$_onChanged$0: function() { var _this = this, days = Y.parseInt(J.trim$0$s(_this._daysController._change_notifier$_value.text), true), feeAmount = Y.parseDouble(J.trim$0$s(_this._feeAmountController._change_notifier$_value.text), true), feePercent = Y.parseDouble(J.trim$0$s(_this._feePercentController._change_notifier$_value.text), true); _this._widget.onChanged$5(_this._templates_and_reminders$_enabled, days, _this._templates_and_reminders$_schedule, feeAmount, feePercent); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, _s18_ = "after_invoice_date", _s15_ = "before_due_date", _s14_ = "after_due_date", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "days"); if (t3 == null) t3 = ""; t3 = S.DecoratedFormField$(false, _null, false, false, _this._daysController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_2_false_false, t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t4 = _this._widget.schedule; t5 = t1.get$schedule(); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s18_); t7 = type$.legacy_String; t6 = K.DropdownMenuItem$(L.Text$(t6 == null ? "" : t6, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s18_, t7); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s15_); t8 = K.DropdownMenuItem$(L.Text$(t8 == null ? "" : t8, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s15_, t7); t9 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s14_); t6 = H.setRuntimeTypeInfo([t6, t8, K.DropdownMenuItem$(L.Text$(t9 == null ? "" : t9, _null, _null, _null, _null, _null, _null, _null, _null, _null), _s14_, t7)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); t1 = K.BoolDropdownButton$(_null, _null, _null, C.IconData_57898_MaterialIcons_null_false, t1.get$sendEmail(), _null, new L._ReminderSettingsState_build_closure(_this), _null, _this._widget.enabled); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "late_fee_amount"); if (t7 == null) t7 = ""; t7 = S.DecoratedFormField$(false, _null, false, false, _this._feeAmountController, _null, true, _null, _null, _null, _null, true, false, _null, _null, t7, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "late_fee_percent"); if (t2 == null) t2 = ""; t8 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t3, new Q.AppDropdownButton(t5, t4, new L._ReminderSettingsState_build_closure0(_this), t6, _null, true, "", _null, type$.AppDropdownButton_legacy_String), new T.Padding(C.EdgeInsets_0_10_0_10, t1, _null), t7, S.DecoratedFormField$(false, _null, false, false, _this._feePercentController, _null, true, _null, _null, _null, _null, false, true, _null, _null, t2, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], t8), _null, 4, false, _null, false, _null)], t8), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); } }; L._ReminderSettingsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_onTextChanged()); t1.dispose$0(controller); }, $signature: 8 }; L._ReminderSettingsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_onTextChanged()); }, $signature: 10 }; L._ReminderSettingsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_onTextChanged()); }, $signature: 10 }; L._ReminderSettingsState__onTextChanged_closure.prototype = { call$0: function() { this.$this._templates_and_reminders$_onChanged$0(); }, $signature: 1 }; L._ReminderSettingsState_build_closure0.prototype = { call$1: function(value) { var t1 = this.$this; t1._templates_and_reminders$_schedule = value; t1._templates_and_reminders$_onChanged$0(); }, $signature: 8 }; L._ReminderSettingsState_build_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1._templates_and_reminders$_enabled = value; t1._templates_and_reminders$_onChanged$0(); }, $signature: 20 }; L.EmailPreview.prototype = { build$1: function(_, context) { var _null = null, t1 = type$.JSArray_legacy_Widget; t1 = H.setRuntimeTypeInfo([T.Column$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_14_14_14_14, L.Text$(this.subject, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.bodyText1.copyWith$1$color(C.Color_4278190080), _null, _null, _null), _null), T.Expanded$(new S.AppWebView(this.body, _null), 1)], t1), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1)], t1); if (this.isLoading) t1.push(T.SizedBox$(U.LinearProgressIndicator$(), _null, _null)); return M.Container$(_null, T.Stack$(C.Alignment_0_m1, t1, C.Clip_1, C.StackFit_0, _null, _null), C.Clip_0, C.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, get$body: function(receiver) { return this.body; } }; L.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; F.TemplatesAndRemindersScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.TemplatesAndRemindersScreen_build_closure(), F.templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TemplatesAndRemindersVM); } }; F.TemplatesAndRemindersScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new L.TemplatesAndReminders(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2524 }; F.TemplatesAndRemindersVM.prototype = {}; F.TemplatesAndRemindersVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; F.TemplatesAndRemindersVM_fromStore_closure.prototype = { call$1: function(template) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTemplate(template)); }, $signature: 572 }; F.TemplatesAndRemindersVM_fromStore_closure1.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new F.TemplatesAndRemindersVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; F.TemplatesAndRemindersVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; K.UserDetails.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new K._UserDetailsState(t1, new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, true), null, C._StateLifecycle_0); } }; K._UserDetailsState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = U.TabController$(_this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 2, _this); _this._user_details$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_user_details$_onTabChanged()), false); }, _user_details$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._user_details$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._user_details$_focusNode.dispose$0(0); _this._user_details$_controller.removeListener$1(0, _this.get$_user_details$_onTabChanged()); _this._user_details$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._user_details$_controllers, new K._UserDetailsState_dispose_closure(_this)); _this.super$__UserDetailsState_State_SingleTickerProviderStateMixin$dispose(0); }, didChangeDependencies$0: function() { var t7, user, _this = this, t1 = _this._user_details$_firstNameController, t2 = _this._user_details$_lastNameController, t3 = _this._user_details$_emailController, t4 = _this._user_details$_phoneController, t5 = _this._passwordController, t6 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._user_details$_controllers = t6; C.JSArray_methods.forEach$1(t6, new K._UserDetailsState_didChangeDependencies_closure(_this)); t6 = _this._widget.viewModel.state; t7 = t6.userCompanyStates; t6 = t6.uiState.selectedCompanyIndex; user = J.$index$asx(t7._list, t6).userCompany.user; t1.set$text(0, user.firstName); t2.set$text(0, user.lastName); t3.set$text(0, user.email); t4.set$text(0, user.phone); t5.set$text(0, user.password); C.JSArray_methods.forEach$1(_this._user_details$_controllers, new K._UserDetailsState_didChangeDependencies_closure0(_this)); _this.super$__UserDetailsState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, _user_details$_onChanged$0: function() { var _this = this, user = _this._widget.viewModel.user.rebuild$1(new K._UserDetailsState__onChanged_closure(_this)); if (!J.$eq$(user, _this._widget.viewModel.user)) _this._user_details$_debouncer.run$1(new K._UserDetailsState__onChanged_closure0(_this, user)); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, _list, i, i0, _this = this, _null = null, _s16_ = "years_data_shown", _s23_ = "include_deleted_clients", _s28_ = "include_deleted_clients_help", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, user = viewModel.user, state = viewModel.state, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "user_details"); if (t3 == null) t3 = ""; t4 = type$.JSArray_legacy_Widget; t5 = E.TabBar$(_this._user_details$_controller, _null, false, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$notifications())], t4)); t6 = $.$get$_UserDetailsState__formKey(); t7 = _this._user_details$_controller; t8 = t1.get$firstName(); t9 = viewModel.onSavePressed; t8 = S.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t8, _null, _null, false, _null, _null, t9, true, _null, _null, C.TextAlign_4, new K._UserDetailsState_build_closure(t1)); t10 = t1.get$lastName(); t10 = S.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t10, _null, _null, false, _null, _null, t9, true, _null, _null, C.TextAlign_4, new K._UserDetailsState_build_closure0(t1)); t11 = t1.get$email(); t9 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t8, t10, S.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._user_details$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t11, _null, _null, false, _null, _null, t9, true, _null, _null, C.TextAlign_4, new K._UserDetailsState_build_closure1(t1)), S.DecoratedFormField$(false, _null, false, false, _this._user_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$phone(t1), _null, _null, false, _null, _null, t9, true, _null, _null, C.TextAlign_4, _null), new S.PasswordFormField(_this._passwordController, t9, _this.autoValidate, true, _null, _null)], t4), _null, 4, false, _null, false, _null); t11 = H.setRuntimeTypeInfo([], t4); t8 = state.authState.get$isHosted(); if (t8 && !D.isApple()) { t8 = state.userCompanyStates; t10 = state.uiState.selectedCompanyIndex; t8 = t8._list; t12 = J.getInterceptor$asx(t8); if (t12.$index(t8, t10).userCompany.user.oauthProvider === "google") { t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "disconnect_google"); if (t13 == null) t13 = ""; } else { t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "connect_google"); if (t13 == null) t13 = ""; } t13 = T.Expanded$(B.OutlinedButton$(L.Text$(t13.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new K._UserDetailsState_build_closure2(state, context, t1, viewModel)), 1); t14 = T.SizedBox$(_null, _null, 16); if (user.oauthProvider === "google" && user.oauthUserToken.length !== 0) { t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "disconnect_gmail"); if (t15 == null) t15 = ""; } else t15 = t1.get$connectGmail(); t15 = L.Text$(t15.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null); C.JSArray_methods.addAll$1(t11, H.setRuntimeTypeInfo([t13, t14, T.Expanded$(B.OutlinedButton$(t15, t12.$index(t8, t10).userCompany.user.oauthProvider !== "google" ? _null : new K._UserDetailsState_build_closure3(state, context, t1, viewModel)), 1), T.SizedBox$(_null, _null, 16)], t4)); } t8 = state.userCompanyStates; t10 = state.uiState.selectedCompanyIndex; t8 = t8._list; t12 = J.getInterceptor$asx(t8); if (t12.$index(t8, t10).userCompany.user.isTwoFactorEnabled) { t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "disable_two_factor"); if (t13 == null) t13 = ""; } else t13 = t1.get$enableTwoFactor(); t11.push(T.Expanded$(B.OutlinedButton$(L.Text$(t13.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new K._UserDetailsState_build_closure4(state, context, t1, viewModel, user)), 1)); t11 = T.Row$(t11, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "accent_color"); if (t13 == null) t13 = ""; t14 = user.userCompany.settings; t13 = H.setRuntimeTypeInfo([A.FormColorPicker$(t14.accentColor, t13, new K._UserDetailsState_build_closure5(_this, user))], t4); t12.$index(t8, t10).userCompany.company.toString; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s16_); if (t8 == null) t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s16_); t10 = t14.numberYearsActive; t12 = type$.legacy_int; t1 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$all(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 0, t12)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); _list = J.JSArray_JSArray$allocateGrowable(10, t12); for (i = 0; i < 10; i = i0) { i0 = i + 1; _list[i] = i0; } t12 = H._arrayInstanceType(_list)._eval$1("MappedListIterable<1,DropdownMenuItem*>"); C.JSArray_methods.addAll$1(t1, P.List_List$of(new H.MappedListIterable(_list, new K._UserDetailsState_build_closure6(), t12), true, t12._eval$1("ListIterable.E"))); t12 = T.SizedBox$(_null, 8, _null); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s23_); if (t15 == null) t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s23_); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), _s28_); if (t2 == null) t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s28_); C.JSArray_methods.addAll$1(t13, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t8, t10, new K._UserDetailsState_build_closure7(_this, user), t1, _null, true, _null, _null, type$.AppDropdownButton_legacy_int), t12, K.BoolDropdownButton$(_null, _null, t2, _null, t15, _null, new K._UserDetailsState_build_closure8(_this, user), _null, t14.includeDeletedClients)], t4)); return K.EditScaffold$(_null, t5, new X.AppTabForm(_this._user_details$_focusNode, t6, H.setRuntimeTypeInfo([new X.ScrollableListView(H.setRuntimeTypeInfo([t9, new T.Padding(C.EdgeInsets_18_20_18_10, t11, _null), Y.FormCard$(_null, t13, _null, 4, false, _null, true, _null)], t4), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new B.NotificationSettings(user, new K._UserDetailsState_build_closure9(viewModel, user), _null)], t4), _null, _null, false, _null)], t4), t7, _null, _null), _null, _null, _null, false, _null, _null, new K._UserDetailsState_build_closure10(_this, viewModel), _null, t3); } }; K._UserDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_user_details$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; K._UserDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_user_details$_onChanged()); }, $signature: 10 }; K._UserDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_user_details$_onChanged()); }, $signature: 10 }; K._UserDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._user_details$_firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t2 = J.trim$0$s(t1._user_details$_lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t2; t2 = J.trim$0$s(t1._user_details$_emailController._change_notifier$_value.text); b.get$_user_model$_$this()._email = t2; t2 = J.trim$0$s(t1._user_details$_phoneController._change_notifier$_value.text); b.get$_user_model$_$this()._phone = t2; t1 = J.trim$0$s(t1._passwordController._change_notifier$_value.text); b.get$_user_model$_$this()._password = t1; return b; }, $signature: 78 }; K._UserDetailsState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.user); }, $signature: 1 }; K._UserDetailsState_build_closure10.prototype = { call$1: function(context) { var isValid = $.$get$_UserDetailsState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new K._UserDetailsState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; K._UserDetailsState_build__closure.prototype = { call$0: function() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; K._UserDetailsState_build_closure.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAFirstName() : null; }, $signature: 15 }; K._UserDetailsState_build_closure0.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterALastName() : null; }, $signature: 15 }; K._UserDetailsState_build_closure1.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; K._UserDetailsState_build_closure2.prototype = { call$0: function() { var t3, t4, _this = this, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { O.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), null); return; } t2 = t2.selectedCompanyIndex; t3 = _this.viewModel; t4 = _this.context; if (J.$index$asx(t1.userCompanyStates._list, t2).userCompany.user.oauthProvider === "google") t3.onDisconnectGooglePressed.call$1(t4); else t3.onConnectGooglePressed.call$1(t4); }, $signature: 1 }; K._UserDetailsState_build_closure3.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$returnValue, $async$self = this, t1, t2; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.state; t2 = t1.uiState; if (t2.settingsUIState.isChanged) { O.showMessageDialog($async$self.context, $async$self.localization.get$errorUnsavedChanges(), null); // goto return $async$goto = 1; break; } t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.user; if (t2.oauthProvider === "google" && t2.oauthUserToken.length !== 0) $async$self.viewModel.onDisconnectGmailPressed.call$1($async$self.context); else T.launch("https://invoicing.co/auth/google", null, false); case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 31 }; K._UserDetailsState_build_closure4.prototype = { call$0: function() { var t3, _this = this, t1 = _this.state, t2 = t1.uiState; if (t2.settingsUIState.isChanged) { O.showMessageDialog(_this.context, _this.localization.get$errorUnsavedChanges(), null); return; } t2 = t2.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); if (t3.$index(t1, t2).userCompany.user.isTwoFactorEnabled) _this.viewModel.onDisableTwoFactorPressed.call$1(_this.context); else { if (t3.$index(t1, t2).userCompany.user.phone.length === 0 || _this.user.phone.length === 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, _this.localization.localeCode), "enter_phone_to_enable_two_factor"); if (t1 == null) t1 = ""; O.showMessageDialog(_this.context, t1, null); return; } E.showDialog(true, new K._UserDetailsState_build__closure4(_this.viewModel), _this.context, null, true, type$.void); } }, $signature: 1 }; K._UserDetailsState_build__closure4.prototype = { call$1: function(context) { return new K._EnableTwoFactor(this.viewModel.state, null); }, $signature: 2525 }; K._UserDetailsState_build_closure5.prototype = { call$1: function(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new K._UserDetailsState_build__closure3(value))); }, $signature: 7 }; K._UserDetailsState_build__closure3.prototype = { call$1: function(b) { var t1 = b.get$userCompany().get$settings(), t2 = this.value; if (t2 == null) t2 = "#ffffff"; t1.get$_company_model$_$this()._accentColor = t2; return b; }, $signature: 78 }; K._UserDetailsState_build_closure7.prototype = { call$1: function(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new K._UserDetailsState_build__closure2(value))); }, $signature: 8 }; K._UserDetailsState_build__closure2.prototype = { call$1: function(b) { b.get$userCompany().get$settings().get$_company_model$_$this()._numberYearsActive = this.value; return b; }, $signature: 78 }; K._UserDetailsState_build_closure6.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(H.S(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_int); }, $signature: 165 }; K._UserDetailsState_build_closure8.prototype = { call$1: function(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new K._UserDetailsState_build__closure1(value))); }, $signature: 20 }; K._UserDetailsState_build__closure1.prototype = { call$1: function(b) { b.get$userCompany().get$settings().get$_company_model$_$this()._includeDeletedClients = this.value; return b; }, $signature: 78 }; K._UserDetailsState_build_closure9.prototype = { call$2: function(channel, options) { this.viewModel.onChanged.call$1(this.user.rebuild$1(new K._UserDetailsState_build__closure0(channel, options))); }, $signature: 451 }; K._UserDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$userCompany().get$notifications().$indexSet(0, this.channel, D.BuiltList_BuiltList$from(this.options, type$.legacy_String)); return b; }, $signature: 78 }; K._EnableTwoFactor.prototype = { createState$0: function() { return new K._EnableTwoFactorState(new F.WebClient(), O.FocusScopeNode$(true, null, false), C._StateLifecycle_0); } }; K._EnableTwoFactorState.prototype = { initState$0: function() { var t1, credentials, _this = this; _this.super$State$initState(); t1 = _this._widget.state; credentials = t1.get$credentials(t1); _this._user_details$_webClient.$get$2(0, credentials.url + "/settings/enable_two_factor", credentials.token).then$1$1(0, new K._EnableTwoFactorState_initState_closure(_this), type$.Null).catchError$1(new K._EnableTwoFactorState_initState_closure0(_this)); }, dispose$0: function(_) { this._user_details$_focusNode.dispose$0(0); this.super$State$dispose(0); }, _user_details$_onSavePressed$0: function() { var t1, credentials, url, _this = this, isValid = $.$get$_EnableTwoFactorState__formKey().get$currentState().validate$0(); _this.setState$1(new K._EnableTwoFactorState__onSavePressed_closure(_this, isValid)); if (!isValid) return; t1 = _this._widget.state; credentials = t1.get$credentials(t1); url = credentials.url + "/settings/enable_two_factor"; _this.setState$1(new K._EnableTwoFactorState__onSavePressed_closure0(_this)); t1 = type$.legacy_String; _this._user_details$_webClient.post$3$data(url, credentials.token, C.C_JsonCodec.encode$1(P.LinkedHashMap_LinkedHashMap$_literal(["secret", _this._user_details$_secret, "one_time_password", _this._oneTimePassword], t1, t1))).then$1$1(0, new K._EnableTwoFactorState__onSavePressed_closure1(_this), type$.Null).catchError$1(new K._EnableTwoFactorState__onSavePressed_closure2(_this)); }, build$1: function(_, context) { var t3, t4, t5, t6, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = L.Text$(t1.get$enableTwoFactor(), _null, _null, _null, _null, _null, _null, _null, _null, _null); if (_this._user_details$_isLoading) t3 = new V.LoadingIndicator(100, false, _null); else { t3 = $.$get$_EnableTwoFactorState__formKey(); t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); t6 = _this._user_details$_secret; if (t6 == null) t5.push(new V.LoadingIndicator(_null, false, _null)); else C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([new E.QrImage(_this._user_details$_qrCode, C.Color_4294967295, -1, 180, _null), new T.Padding(C.EdgeInsets_0_16_0_16, O.SelectableText$(t6, _null), _null)], t4)); t5.push(T.Row$(H.setRuntimeTypeInfo([T.Expanded$(S.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$oneTimePassword(), _null, _null, false, new K._EnableTwoFactorState_build_closure(_this), _null, new K._EnableTwoFactorState_build_closure0(_this), true, _null, _null, C.TextAlign_4, new K._EnableTwoFactorState_build_closure1(context)), 1), T.SizedBox$(_null, _null, 16), T.SizedBox$(U.TextButton$(false, L.Text$(t1.get$learnMore(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new K._EnableTwoFactorState_build_closure2(), _null), _null, 100)], t4), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null)); t3 = new X.AppForm(t3, _null, T.SizedBox$(T.Column$(t5, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, 280), _this._user_details$_focusNode, _null); } t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); if (_this._user_details$_secret != null) C.JSArray_methods.addAll$1(t5, H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new K._EnableTwoFactorState_build_closure3(context), _null), U.TextButton$(false, L.Text$(t1.get$save(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new K._EnableTwoFactorState_build_closure4(_this), _null)], t4)); return E.AlertDialog$(t5, C.EdgeInsets_0_0_0_0, _null, t3, C.EdgeInsets_24_20_24_24, _null, _null, t2); } }; K._EnableTwoFactorState_initState_closure.prototype = { call$1: function(data) { var t1 = this.$this; t1.setState$1(new K._EnableTwoFactorState_initState__closure(t1, $.$get$serializers().deserializeWith$1$2($.$get$_$userTwoFactorResponseSerializer(), data, type$.legacy_UserTwoFactorResponse))); }, $signature: 8 }; K._EnableTwoFactorState_initState__closure.prototype = { call$0: function() { var t2, t1 = this.$this; t1._user_details$_isLoading = false; t2 = this.response.data; t1._user_details$_qrCode = t2.qrCode; t1._user_details$_secret = t2.secret; }, $signature: 1 }; K._EnableTwoFactorState_initState_closure0.prototype = { call$1: function(error) { var t1 = this.$this, t2 = t1._framework$_element; t2.toString; K.Navigator_of(t2, false).pop$0(0); t1 = t1._framework$_element; t1.toString; O.showErrorDialog(false, t1, error); }, $signature: 8 }; K._EnableTwoFactorState__onSavePressed_closure.prototype = { call$0: function() { }, $signature: 1 }; K._EnableTwoFactorState__onSavePressed_closure0.prototype = { call$0: function() { return this.$this._user_details$_isLoading = true; }, $signature: 19 }; K._EnableTwoFactorState__onSavePressed_closure1.prototype = { call$1: function(data) { var t2, t1 = this.$this; t1.setState$1(new K._EnableTwoFactorState__onSavePressed__closure0(t1)); t2 = t1._framework$_element; t2.toString; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "enabled_two_factor"); M.showToast(t2 == null ? "" : t2); t2 = t1._framework$_element; t2.toString; J.$index$asx(O.StoreProvider_of(t2, type$.legacy_AppState).get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); t1 = t1._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$0(0); }, $signature: 8 }; K._EnableTwoFactorState__onSavePressed__closure0.prototype = { call$0: function() { return this.$this._user_details$_isLoading = false; }, $signature: 19 }; K._EnableTwoFactorState__onSavePressed_closure2.prototype = { call$1: function(error) { var t1 = this.$this; t1.setState$1(new K._EnableTwoFactorState__onSavePressed__closure(t1)); t1 = t1._framework$_element; t1.toString; O.showErrorDialog(false, t1, H.S(error)); }, $signature: 3 }; K._EnableTwoFactorState__onSavePressed__closure.prototype = { call$0: function() { return this.$this._user_details$_isLoading = false; }, $signature: 19 }; K._EnableTwoFactorState_build_closure.prototype = { call$1: function(value) { this.$this._oneTimePassword = value; }, $signature: 7 }; K._EnableTwoFactorState_build_closure1.prototype = { call$1: function(value) { return value.length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAValue() : null; }, $signature: 15 }; K._EnableTwoFactorState_build_closure0.prototype = { call$1: function(context) { return this.$this._user_details$_onSavePressed$0(); }, $signature: 29 }; K._EnableTwoFactorState_build_closure2.prototype = { call$0: function() { T.launch("https://github.com/antonioribeiro/google2fa#google-authenticator-apps", null, false); }, $signature: 1 }; K._EnableTwoFactorState_build_closure3.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; K._EnableTwoFactorState_build_closure4.prototype = { call$0: function() { return this.$this._user_details$_onSavePressed$0(); }, $signature: 0 }; K.__UserDetailsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; M.UserDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.UserDetailsScreen_build_closure(), M.user_details_vm_UserDetailsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserDetailsVM); } }; M.UserDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new K.UserDetails(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2527 }; M.UserDetailsVM.prototype = { get$user: function() { return this.user; } }; M.UserDetailsVM_fromStore_closure.prototype = { call$1: function(user) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateUserSettings(user)); }, $signature: 2528 }; M.UserDetailsVM_fromStore_closure3.prototype = { call$1: function(context) { O.confirmCallback(false, new M.UserDetailsVM_fromStore__closure0(context, this.store, this.state), context, null, false, null); }, $signature: 14 }; M.UserDetailsVM_fromStore__closure0.prototype = { call$1: function(_) { var t1 = this.context; O.passwordCallback(false, new M.UserDetailsVM_fromStore___closure0(t1, this.store, this.state), t1); }, $signature: 7 }; M.UserDetailsVM_fromStore___closure0.prototype = { call$2: function(password, idToken) { var t2, completer, t1 = this.context; L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).toString; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), "disconnected_gmail"); if (t2 == null) t2 = ""; completer = O.snackBarCompleter(t1, t2, false, type$.Null); t2 = this.state; t1 = t2.uiState.selectedCompanyIndex; t1 = J.$index$asx(t2.userCompanyStates._list, t1).userCompany.user.rebuild$1(new M.UserDetailsVM_fromStore____closure()); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveAuthUserRequest(completer, t1, password, idToken)); }, $signature: 51 }; M.UserDetailsVM_fromStore____closure.prototype = { call$1: function(b) { b.get$_user_model$_$this()._oauthUserToken = ""; return b; }, $signature: 78 }; M.UserDetailsVM_fromStore_closure4.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "disabled_two_factor"); if (t1 == null) t1 = ""; O.confirmCallback(false, new M.UserDetailsVM_fromStore__closure(context, this.store, O.snackBarCompleter(context, t1, false, type$.Null)), context, null, false, null); }, $signature: 14 }; M.UserDetailsVM_fromStore__closure.prototype = { call$1: function(_) { O.passwordCallback(false, new M.UserDetailsVM_fromStore___closure(this.store, this.completer), this.context); }, $signature: 7 }; M.UserDetailsVM_fromStore___closure.prototype = { call$2: function(password, idToken) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.DisableTwoFactorRequest(this.completer, password, idToken)); }, $signature: 51 }; M.UserDetailsVM_fromStore_closure2.prototype = { call$1: function(context) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; if (!J.$index$asx(t1.userCompanyStates._list, t2).userCompany.user.hasPassword) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "please_first_set_a_password"); O.showErrorDialog(false, context, t1 == null ? "" : t1); return; } O.confirmCallback(false, new M.UserDetailsVM_fromStore__closure1(context, this.store, t1), context, null, false, null); }, $signature: 14 }; M.UserDetailsVM_fromStore__closure1.prototype = { call$1: function(_) { var t1 = this.context; O.passwordCallback(false, new M.UserDetailsVM_fromStore___closure1(t1, this.store, this.state), t1); }, $signature: 7 }; M.UserDetailsVM_fromStore___closure1.prototype = { call$2: function(password, idToken) { var t3, completer, t1 = this.context, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "disconnected_google"); if (t2 == null) t2 = ""; t3 = type$.Null; completer = O.snackBarCompleter(t1, t2, false, t3); completer.future.then$1$1(0, new M.UserDetailsVM_fromStore____closure0(), t3); t3 = this.state; t2 = t3.uiState.selectedCompanyIndex; t2 = J.$index$asx(t3.userCompanyStates._list, t2).userCompany.user.rebuild$1(new M.UserDetailsVM_fromStore____closure1()); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveAuthUserRequest(completer, t2, password, idToken)); }, $signature: 51 }; M.UserDetailsVM_fromStore____closure0.prototype = { call$1: function(value) { B.GoogleOAuth_disconnect(); }, $signature: 3 }; M.UserDetailsVM_fromStore____closure1.prototype = { call$1: function(b) { b.get$_user_model$_$this()._oauthProvider = ""; return b; }, $signature: 78 }; M.UserDetailsVM_fromStore_closure1.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "connected_google"); if (t1 == null) t1 = ""; O.passwordCallback(false, new M.UserDetailsVM_fromStore__closure2(context, this.store, O.snackBarCompleter(context, t1, false, type$.Null)), context); }, $signature: 14 }; M.UserDetailsVM_fromStore__closure2.prototype = { call$2: function(password, idToken) { return this.$call$body$UserDetailsVM_fromStore__closure(password, idToken); }, $call$body$UserDetailsVM_fromStore__closure: function(password, idToken) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, signedIn, error, t1, exception, $async$exception; var $async$call$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$handler = 3; t1 = $async$self.context; $async$goto = 6; return P._asyncAwait(B.GoogleOAuth_signUp(new M.UserDetailsVM_fromStore___closure2(t1, $async$self.store, password, $async$self.completer)), $async$call$2); case 6: // returning from await. signedIn = $async$result; if (!signedIn) O.showErrorDialog(false, t1, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); $async$handler = 1; // goto after finally $async$goto = 5; break; case 3: // catch $async$handler = 2; $async$exception = $async$currentError; error = H.unwrapException($async$exception); O.showErrorDialog(false, $async$self.context, error); // goto after finally $async$goto = 5; break; case 2: // uncaught // goto rethrow $async$goto = 1; break; case 5: // after finally // implicit return return P._asyncReturn(null, $async$completer); case 1: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$2, $async$completer); }, $signature: 678 }; M.UserDetailsVM_fromStore___closure2.prototype = { call$2: function(idToken, accessToken) { var t1, _this = this; if (idToken.length === 0 || accessToken.length === 0) { B.GoogleOAuth_signOut(); t1 = _this.context; O.showErrorDialog(false, t1, L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$anErrorOccurredTryAgain()); } else J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new L.ConnecOAuthUserRequest(_this.completer, _this.password, idToken)); }, $signature: 51 }; M.UserDetailsVM_fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new M.UserDetailsVM_fromStore__closure3(context, this.state, this.store).call$0(); }, $signature: 14 }; M.UserDetailsVM_fromStore__closure3.prototype = { call$0: function() { var t8, t9, t1 = this.context, t2 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = type$.Null, completer = O.snackBarCompleter(t1, t2.get$updatedUser(), false, t3), t4 = t1.findAncestorStateOfType$1$0(type$.legacy_AppBuilderState), t5 = this.state, t6 = t5.uiState, t7 = t6.selectedCompanyIndex; t5 = t5.userCompanyStates._list; t8 = J.getInterceptor$asx(t5); t9 = this.store; completer.future.then$1$1(0, new M.UserDetailsVM_fromStore___closure3(t9, t8.$index(t5, t7).userCompany.settings, t2, t4), t3); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "changing_phone_disables_two_factor"); if (t2 == null) t2 = ""; t3 = t8.$index(t5, t7).userCompany.user.phone === t6.settingsUIState.user.phone || !t8.$index(t5, t7).userCompany.user.isTwoFactorEnabled; O.confirmCallback(false, new M.UserDetailsVM_fromStore___closure4(t1, t9, completer), t1, t2, t3, null); }, $signature: 1 }; M.UserDetailsVM_fromStore___closure3.prototype = { call$1: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), $async$self = this, newUserSettings, t1, t2, t3; var $async$call$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.store; t2 = t1.get$_store$_state(); t3 = t2.userCompanyStates; t2 = t2.uiState.selectedCompanyIndex; newUserSettings = J.$index$asx(t3._list, t2).userCompany.settings; t2 = $async$self.origUserSettings; $async$goto = t2.includeDeletedClients !== newUserSettings.includeDeletedClients || t2.numberYearsActive !== newUserSettings.numberYearsActive ? 2 : 3; break; case 2: // then t2 = $.$get$navigatorKey(); t2.toString; t3 = O.snackBarCompleter($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), $async$self.localization.get$refreshComplete(), true, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(t3, true, true, false)); $async$goto = 4; return P._asyncAwait(E.showDialog(false, new M.UserDetailsVM_fromStore____closure3(), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_AlertDialog), $async$call$1); case 4: // returning from await. case 3: // join $async$self.appBuilder.rebuild$0(); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$call$1, $async$completer); }, $signature: 2530 }; M.UserDetailsVM_fromStore____closure3.prototype = { call$1: function(context) { return E.SimpleDialog$(H.setRuntimeTypeInfo([new F.LoadingDialog(null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; M.UserDetailsVM_fromStore___closure4.prototype = { call$1: function(_) { O.passwordCallback(false, new M.UserDetailsVM_fromStore____closure2(this.store, this.completer), this.context); }, $signature: 7 }; M.UserDetailsVM_fromStore____closure2.prototype = { call$2: function(password, idToken) { var t1 = this.store, t2 = t1.get$_store$_state().uiState.settingsUIState.user; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.SaveAuthUserRequest(this.completer, t2, password, idToken)); }, $signature: 51 }; D.WorkflowSettings.prototype = { createState$0: function() { return new D._WorkflowSettingsState(null, C._StateLifecycle_0); } }; D._WorkflowSettingsState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this._workflow_settings$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(_this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 2, _this); _this._workflow_settings$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_workflow_settings$_onTabChanged()), false); }, _workflow_settings$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._workflow_settings$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, dispose$0: function(_) { var _this = this; _this._workflow_settings$_focusNode.dispose$0(0); _this._workflow_settings$_controller.removeListener$1(0, _this.get$_workflow_settings$_onTabChanged()); _this._workflow_settings$_controller.dispose$0(0); _this.super$__WorkflowSettingsState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, state = viewModel.state, settings = viewModel.settings, t2 = t1.localeCode, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "workflow_settings"); if (t3 == null) t3 = ""; t4 = viewModel.onSavePressed; t5 = state.uiState.settingsUIState.updatedAt; t6 = type$.JSArray_legacy_Widget; t5 = E.TabBar$(_this._workflow_settings$_controller, _null, false, new D.ValueKey(t5, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$invoices()), E.Tab$(_null, t1.get$quotes(t1))], t6)); t7 = _this._workflow_settings$_controller; t8 = $.$get$_WorkflowSettingsState__formKey(); t9 = _this._workflow_settings$_focusNode; t10 = t1.get$autoEmailInvoice(); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_email_invoice_help"); if (t11 == null) t11 = ""; t10 = K.BoolDropdownButton$(_null, _null, t11, C.IconData_57898_MaterialIcons_null_false, t10, _null, new D._WorkflowSettingsState_build_closure(viewModel, settings), _null, settings.autoEmailInvoice); t11 = t1.get$autoArchiveInvoice(); t12 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_archive_invoice_help"); if (t12 == null) t12 = ""; t11 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t10, K.BoolDropdownButton$(_null, _null, t12, C.IconData_57489_MaterialIcons_null_false, t11, _null, new D._WorkflowSettingsState_build_closure0(viewModel, settings), _null, settings.autoArchiveInvoice)], t6), _null, 4, false, _null, false, _null); t12 = settings.lockInvoices; t10 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t10 = H.setRuntimeTypeInfo([t11, Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t1.get$lockInvoices(), t12, new D._WorkflowSettingsState_build_closure1(viewModel, settings), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["off", "when_sent", "when_paid"], type$.JSArray_legacy_String), new D._WorkflowSettingsState_build_closure2(t1), t10), true, t10._eval$1("ListIterable.E")), _null, true, "", _null, type$.AppDropdownButton_legacy_String)], t6), _null, 4, false, _null, true, _null)], t6); t12 = t1.get$autoConvertQuote(); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_convert_quote_help"); if (t11 == null) t11 = ""; t13 = settings.autoConvertQuote; t13 = K.BoolDropdownButton$(_null, _null, t11, Q.getEntityIcon(C.EntityType_quote), t12, _null, new D._WorkflowSettingsState_build_closure3(viewModel, settings), _null, t13); t1 = t1.get$autoArchiveQuote(); t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2), "auto_archive_quote_help"); if (t2 == null) t2 = ""; return K.EditScaffold$(_null, t5, new X.AppTabForm(t9, t8, H.setRuntimeTypeInfo([new X.ScrollableListView(t10, _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t13, K.BoolDropdownButton$(_null, _null, t2, C.IconData_57489_MaterialIcons_null_false, t1, _null, new D._WorkflowSettingsState_build_closure4(viewModel, settings), _null, settings.autoArchiveQuote)], t6), _null, 4, false, _null, true, _null)], t6), _null, _null, false, _null)], t6), t7, _null, _null), _null, _null, _null, false, _null, _null, t4, _null, t3); } }; D._WorkflowSettingsState_build_closure.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new D._WorkflowSettingsState_build__closure3(value))); }, $signature: 12 }; D._WorkflowSettingsState_build__closure3.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoEmailInvoice = this.value; return b; }, $signature: 13 }; D._WorkflowSettingsState_build_closure0.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new D._WorkflowSettingsState_build__closure2(value))); }, $signature: 12 }; D._WorkflowSettingsState_build__closure2.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoArchiveInvoice = this.value; return b; }, $signature: 13 }; D._WorkflowSettingsState_build_closure1.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new D._WorkflowSettingsState_build__closure1(value))); }, $signature: 10 }; D._WorkflowSettingsState_build__closure1.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._lockInvoices = this.value; return b; }, $signature: 13 }; D._WorkflowSettingsState_build_closure2.prototype = { call$1: function(option) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(option), _null, _null, _null, _null, _null, _null, _null, _null, _null), option, type$.legacy_String); }, $signature: 36 }; D._WorkflowSettingsState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new D._WorkflowSettingsState_build__closure0(value))); }, $signature: 12 }; D._WorkflowSettingsState_build__closure0.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoConvertQuote = this.value; return b; }, $signature: 13 }; D._WorkflowSettingsState_build_closure4.prototype = { call$1: function(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new D._WorkflowSettingsState_build__closure(value))); }, $signature: 12 }; D._WorkflowSettingsState_build__closure.prototype = { call$1: function(b) { b.get$_settings_model$_$this()._autoArchiveQuote = this.value; return b; }, $signature: 13 }; D.__WorkflowSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; Y.WorkflowSettingsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.WorkflowSettingsScreen_build_closure(), Y.workflow_vm_WorkflowSettingsVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WorkflowSettingsVM); } }; Y.WorkflowSettingsScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new D.WorkflowSettings(viewModel, new D.ValueKey(viewModel.state.uiState.settingsUIState.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2531 }; Y.WorkflowSettingsVM.prototype = {}; Y.WorkflowSettingsVM_fromStore_closure0.prototype = { call$1: function(settings) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateSettings(settings)); }, $signature: 144 }; Y.WorkflowSettingsVM_fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Y.WorkflowSettingsVM_fromStore__closure(this.store, context).call$0(); }, $signature: 14 }; Y.WorkflowSettingsVM_fromStore__closure.prototype = { call$0: function() { var t2, completer, _this = this, t1 = _this.store, settingsUIState = t1.get$_store$_state().uiState.settingsUIState; switch (settingsUIState.entityType) { case C.EntityType_company: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.Null); t2 = settingsUIState.company; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveCompanyRequest(completer, t2)); break; case C.EntityType_group: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_GroupEntity); t2 = settingsUIState.group; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.SaveGroupRequest(completer, t2)); break; case C.EntityType_client: t2 = _this.context; completer = O.snackBarCompleter(t2, L.Localizations_of(t2, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$savedSettings(), false, type$.legacy_ClientEntity); t2 = settingsUIState.client; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new E.SaveClientRequest(completer, t2)); break; } }, $signature: 1 }; S.SubscriptionEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new S._SubscriptionEditState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; S._SubscriptionEditState.prototype = { initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this._subscription_edit$_focusNode = O.FocusScopeNode$(true, null, false); t1 = U.TabController$(_this._widget.viewModel.state.uiState.settingsUIState.tabIndex, 3, _this); _this._subscription_edit$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_subscription_edit$_onTabChanged()), false); }, _subscription_edit$_onTabChanged$0: function() { var store, t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._subscription_edit$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateSettingsTab(t1)); }, didChangeDependencies$0: function() { var subscription, webhookConfiguration, _this = this, _null = null, t1 = _this._subscription_edit$_nameController, t2 = _this._promoCodeController, t3 = _this._promoDiscountController, t4 = _this._maxSeatsLimitController, t5 = _this._returnUrlController, t6 = _this._postPurchaseUrlController, t7 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, _this._postPurchaseHeaderKeyController, _this._postPurchaseHeaderValueController], type$.JSArray_legacy_TextEditingController); _this._subscription_edit$_controllers = t7; C.JSArray_methods.forEach$1(t7, new S._SubscriptionEditState_didChangeDependencies_closure(_this)); subscription = _this._widget.viewModel.subscription; webhookConfiguration = subscription.webhookConfiguration; t1.set$text(0, subscription.name); t2.set$text(0, subscription.promoCode); t2 = _this._framework$_element; t2.toString; t3.set$text(0, Y.formatNumber(subscription.promoDiscount, t2, _null, _null, C.FormatNumberType_4, true, _null, false)); t2 = _this._framework$_element; t2.toString; t4.set$text(0, Y.formatNumber(subscription.maxSeatsLimit, t2, _null, _null, C.FormatNumberType_5, true, _null, false)); t5.set$text(0, webhookConfiguration.returnUrl); t6.set$text(0, webhookConfiguration.postPurchaseUrl); C.JSArray_methods.forEach$1(_this._subscription_edit$_controllers, new S._SubscriptionEditState_didChangeDependencies_closure0(_this)); _this.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._subscription_edit$_focusNode.dispose$0(0); _this._subscription_edit$_controller.removeListener$1(0, _this.get$_subscription_edit$_onTabChanged()); _this._subscription_edit$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._subscription_edit$_controllers, new S._SubscriptionEditState_dispose_closure(_this)); _this.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _subscription_edit$_onChanged$0: function() { var _this = this, subscription = _this._widget.viewModel.subscription.rebuild$1(new S._SubscriptionEditState__onChanged_closure(_this)); if (!J.$eq$(subscription, _this._widget.viewModel.subscription)) _this._subscription_edit$_debouncer.run$1(new S._SubscriptionEditState__onChanged_closure0(_this, subscription)); }, build$1: function(_, context) { var key, t3, value, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, t19, t20, t21, t22, t23, _this = this, _null = null, _s6_ = ":count", viewModel = _this._widget.viewModel, state = viewModel.state, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), subscription = viewModel.subscription, webhookConfiguration = subscription.webhookConfiguration, t2 = type$.legacy_int, durations = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$(t1.get$countDay(), _null, _null, _null, _null, _null, _null, _null, _null, _null), 86400, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "2"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 172800, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "3"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 259200, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "7"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 604800, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "14"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1209600, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "30"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 2592000, t2), K.DropdownMenuItem$(L.Text$(C.JSString_methods.replaceFirst$2(t1.get$countDays(), _s6_, "60"), _null, _null, _null, _null, _null, _null, _null, _null, _null), 5184000, t2)], type$.JSArray_legacy_DropdownMenuItem_legacy_int); t2 = _this._postPurchaseHeaderKeyController; key = J.trim$0$s(t2._change_notifier$_value.text); t3 = _this._postPurchaseHeaderValueController; value = J.trim$0$s(t3._change_notifier$_value.text); if (subscription.get$isNew()) t4 = t1.get$newSubscription(); else { t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_subscription"); if (t4 == null) t4 = ""; } t5 = state.uiState; t6 = t5.settingsUIState.updatedAt; t7 = type$.JSArray_legacy_Widget; t6 = E.TabBar$(_this._subscription_edit$_controller, _null, D.getLayout(context) === C.AppLayout_mobile, new D.ValueKey(t6, type$.ValueKey_legacy_int), _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$overview()), E.Tab$(_null, t1.get$settings()), E.Tab$(_null, t1.get$webhook())], t7)); t8 = $.$get$_SubscriptionEditState__formKey(); t9 = _this._subscription_edit$_focusNode; t10 = _this._subscription_edit$_controller; t11 = t1.get$name(t1); t12 = viewModel.onSavePressed; t11 = S.DecoratedFormField$(false, _null, false, false, _this._subscription_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t11, _null, _null, false, _null, _null, t12, true, _null, _null, C.TextAlign_4, _null); t13 = $.$get$memoizedGroupList(); t5 = t5.selectedCompanyIndex; t14 = state.userCompanyStates._list; t15 = J.getInterceptor$asx(t14); t13 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t11, Y.DynamicSelector$(true, subscription.groupId, t13.call$1(t15.$index(t14, t5).groupState.map), C.EntityType_group, _null, _null, _null, new S._SubscriptionEditState_build_closure(viewModel, subscription), _null), new V.UserPicker(subscription.assignedUserId, new S._SubscriptionEditState_build_closure0(viewModel, subscription), _null)], t7), _null, 4, false, _null, false, _null); t11 = subscription.productIds; t16 = "__products_" + t11 + "__"; t17 = type$.ValueKey_legacy_String; t16 = H.setRuntimeTypeInfo([F.EntityDropdown$(true, false, false, _null, O.dropdownProductsSelector(t15.$index(t14, t5).productState.map, t15.$index(t14, t5).productState.list, t15.$index(t14, t5).userState.map), t15.$index(t14, t5).productState.map, C.EntityType_product, new D.ValueKey(t16, t17), t1.get$products(), _null, new S._SubscriptionEditState_build_closure1(subscription, viewModel), _null, _null, _null), T.SizedBox$(_null, 8, _null)], t7); t18 = type$.JSArray_String; t19 = type$.WhereIterable_String; t20 = type$.MappedIterable_of_String_and_legacy_ListTile; t21 = t20._eval$1("Iterable.E"); C.JSArray_methods.addAll$1(t16, P.List_List$of(new H.MappedIterable(new H.WhereIterable(H.setRuntimeTypeInfo(t11.split(","), t18), new S._SubscriptionEditState_build_closure2(), t19), new S._SubscriptionEditState_build_closure3(state, subscription, viewModel), t20), true, t21)); t16.push(T.SizedBox$(_null, 16, _null)); t11 = subscription.recurringProductIds; t22 = "__recuring_products_" + t11 + "__"; t23 = O.dropdownProductsSelector(t15.$index(t14, t5).productState.map, t15.$index(t14, t5).productState.list, t15.$index(t14, t5).userState.map); t5 = t15.$index(t14, t5).productState.map; t14 = t1.localeCode; t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "recurring_products"); if (t15 == null) t15 = ""; t16.push(F.EntityDropdown$(true, false, false, _null, t23, t5, C.EntityType_product, new D.ValueKey(t22, t17), t15, _null, new S._SubscriptionEditState_build_closure4(subscription, viewModel), _null, _null, _null)); t16.push(T.SizedBox$(_null, 8, _null)); C.JSArray_methods.addAll$1(t16, P.List_List$of(new H.MappedIterable(new H.WhereIterable(H.setRuntimeTypeInfo(t11.split(","), t18), new S._SubscriptionEditState_build_closure5(), t19), new S._SubscriptionEditState_build_closure6(state, subscription, viewModel), t20), true, t21)); t16 = H.setRuntimeTypeInfo([t13, Y.FormCard$(_null, t16, _null, 4, false, _null, true, _null)], t7); t13 = t1.get$frequency(t1); t21 = C.Map_tOn4d.get$entries(C.Map_tOn4d); t20 = type$.AppDropdownButton_legacy_String; t19 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t19 = Y.FormCard$(_null, H.setRuntimeTypeInfo([new Q.AppDropdownButton(t13, subscription.frequencyId, new S._SubscriptionEditState_build_closure7(viewModel, subscription), t21.map$1$1(t21, new S._SubscriptionEditState_build_closure8(t1), type$.legacy_DropdownMenuItem_legacy_String).toList$0(0), true, true, "", _null, t20), new Q.AppDropdownButton(t1.get$autoBill(), subscription.autoBill, new S._SubscriptionEditState_build_closure9(viewModel, subscription), P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo(["always", "optout", "optin", "off"], type$.JSArray_legacy_String), new S._SubscriptionEditState_build_closure10(t1), t19), true, t19._eval$1("ListIterable.E")), true, true, "", _null, t20)], t7), _null, 4, false, _null, false, _null); t21 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "promo_code"); t5 = t21 == null ? "" : t21; t5 = S.DecoratedFormField$(false, _null, false, false, _this._promoCodeController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t5, _null, _null, false, _null, _null, t12, true, _null, _null, C.TextAlign_4, _null); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "promo_discount"); if (t11 == null) t11 = ""; t11 = Y.FormCard$(_null, H.setRuntimeTypeInfo([t5, new L.DiscountField(_this._promoDiscountController, subscription.promoDiscount, subscription.isAmountDiscount, new S._SubscriptionEditState_build_closure11(viewModel, subscription), t11, _null)], t7), _null, 4, false, _null, false, _null); t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "return_url"); if (t5 == null) t5 = ""; t5 = S.DecoratedFormField$(false, _null, false, false, _this._returnUrlController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_6_null_null, t5, _null, _null, false, _null, _null, t12, true, _null, _null, C.TextAlign_4, _null); t13 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "allow_query_overrides"); if (t13 == null) t13 = ""; t13 = K.BoolDropdownButton$(_null, _null, _null, _null, t13, _null, new S._SubscriptionEditState_build_closure12(viewModel, subscription), _null, subscription.allowQueryOverrides); t15 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "allow_plan_changes"); if (t15 == null) t15 = ""; t15 = K.BoolDropdownButton$(_null, _null, _null, _null, t15, _null, new S._SubscriptionEditState_build_closure13(viewModel, subscription), _null, subscription.allowPlanChanges); t17 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "allow_cancellation"); if (t17 == null) t17 = ""; t18 = subscription.allowCancellation; t17 = H.setRuntimeTypeInfo([t5, t13, t15, K.BoolDropdownButton$(_null, _null, _null, _null, t17, _null, new S._SubscriptionEditState_build_closure14(viewModel, subscription), _null, t18)], t7); if (t18) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "refund_period"); if (t5 == null) t5 = ""; t17.push(new Q.AppDropdownButton(t5, subscription.refundPeriod, new S._SubscriptionEditState_build_closure15(viewModel, subscription), durations, true, true, 0, _null, type$.AppDropdownButton_legacy_int)); } t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "trial_enabled"); if (t5 == null) t5 = ""; t13 = subscription.trialEnabled; t17.push(K.BoolDropdownButton$(_null, _null, _null, _null, t5, _null, new S._SubscriptionEditState_build_closure16(viewModel, subscription), _null, t13)); if (t13) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "trial_duration"); if (t5 == null) t5 = ""; t17.push(new Q.AppDropdownButton(t5, subscription.trialDuration, new S._SubscriptionEditState_build_closure17(viewModel, subscription), durations, true, true, 0, _null, type$.AppDropdownButton_legacy_int)); } t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "per_seat_enabled"); if (t5 == null) t5 = ""; t13 = subscription.perSeatEnabled; t17.push(K.BoolDropdownButton$(_null, _null, _null, _null, t5, _null, new S._SubscriptionEditState_build_closure18(viewModel, subscription), _null, t13)); if (t13) { t5 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t14), "max_seats_limit"); if (t5 == null) t5 = ""; t17.push(S.DecoratedFormField$(false, _null, false, false, _this._maxSeatsLimitController, _null, true, _null, _null, _null, H.setRuntimeTypeInfo([new B.FilteringTextInputFormatter(P.RegExp_RegExp("[0-9]", true, false), true)], type$.JSArray_legacy_TextInputFormatter), false, false, _null, C.TextInputType_2_false_false, t5, _null, _null, false, _null, _null, t12, true, _null, _null, C.TextAlign_4, _null)); } t5 = H.setRuntimeTypeInfo([t19, t11, Y.FormCard$(_null, t17, _null, 4, false, _null, true, _null)], t7); t11 = S.DecoratedFormField$(false, _null, false, false, _this._postPurchaseUrlController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_6_null_null, t1.get$webhookUrl(), _null, _null, false, _null, _null, t12, true, _null, _null, C.TextAlign_4, _null); t13 = t1.get$restMethod(); t14 = webhookConfiguration.postPurchaseRestMethod; t15 = type$.legacy_String; t15 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$("POST", _null, _null, _null, _null, _null, _null, _null, _null, _null), "post", t15), K.DropdownMenuItem$(L.Text$("PUT", _null, _null, _null, _null, _null, _null, _null, _null, _null), "put", t15)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); t2 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, t2, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$headerKey(), _null, _null, false, new S._SubscriptionEditState_build_closure19(_this), _null, t12, true, _null, _null, C.TextAlign_4, _null), 1); t17 = T.SizedBox$(_null, _null, 16); t12 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, t3, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$headerValue(), _null, _null, false, new S._SubscriptionEditState_build_closure20(_this), _null, t12, true, _null, _null, C.TextAlign_4, _null), 1); t3 = T.SizedBox$(_null, _null, 16); t18 = t1.get$addHeader(); t19 = L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null); t2 = H.setRuntimeTypeInfo([t11, new Q.AppDropdownButton(t13, t14, new S._SubscriptionEditState_build_closure21(viewModel, subscription), t15, true, true, "", _null, t20), T.Row$(H.setRuntimeTypeInfo([t2, t17, t12, t3, B.IconButton$(C.Alignment_0_0, _null, _null, true, t19, 24, key.length === 0 || value.length === 0 ? _null : new S._SubscriptionEditState_build_closure22(_this, webhookConfiguration, key, viewModel, subscription, value), C.EdgeInsets_8_8_8_8, t18, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.SizedBox$(_null, 8, _null)], t7); t3 = webhookConfiguration.postPurchaseHeaders; if (J.get$isEmpty$asx(t3._map$_map)) t2.push(new T.Padding(C.EdgeInsets_0_16_0_8, T.Center$(new U.HelpText(t1.get$noHeaders(), _null), _null, _null), _null)); else C.JSArray_methods.addAll$1(t2, J.map$1$1$ax(t3.get$keys(t3), new S._SubscriptionEditState_build_closure23(webhookConfiguration, t1, viewModel, subscription), type$.legacy_Widget)); return K.EditScaffold$(_null, t6, new X.AppTabForm(t9, t8, H.setRuntimeTypeInfo([new X.ScrollableListView(t16, _null, _null, false, _null), new X.ScrollableListView(t5, _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t2, _null, 4, false, _null, true, _null)], t7), _null, _null, false, _null)], t7), t10, _null, _null), _null, subscription, _null, false, _null, new S._SubscriptionEditState_build_closure24(viewModel), new S._SubscriptionEditState_build_closure25(viewModel), _null, t4); } }; S._SubscriptionEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_subscription_edit$_onChanged()); }, $signature: 27 }; S._SubscriptionEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_subscription_edit$_onChanged()), false); return null; }, $signature: 27 }; S._SubscriptionEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_subscription_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; S._SubscriptionEditState__onChanged_closure.prototype = { call$1: function(b) { var t3, t1 = this.$this, t2 = J.trim$0$s(t1._subscription_edit$_nameController._change_notifier$_value.text); b.get$_subscription_model$_$this()._subscription_model$_name = t2; t2 = J.trim$0$s(t1._promoCodeController._change_notifier$_value.text); b.get$_subscription_model$_$this()._promoCode = t2; t2 = Y.parseDouble(t1._promoDiscountController._change_notifier$_value.text, false); b.get$_subscription_model$_$this()._promoDiscount = t2; t2 = Y.parseInt(t1._maxSeatsLimitController._change_notifier$_value.text, false); b.get$_subscription_model$_$this()._maxSeatsLimit = t2; t2 = b.get$webhookConfiguration(); t3 = J.trim$0$s(t1._returnUrlController._change_notifier$_value.text); t2.get$_subscription_model$_$this()._returnUrl = t3; t3 = b.get$webhookConfiguration(); t1 = J.trim$0$s(t1._postPurchaseUrlController._change_notifier$_value.text); t3.get$_subscription_model$_$this()._postPurchaseUrl = t1; return b; }, $signature: 62 }; S._SubscriptionEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.subscription); }, $signature: 1 }; S._SubscriptionEditState_build_closure24.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; S._SubscriptionEditState_build_closure25.prototype = { call$1: function(context) { if (!$.$get$_SubscriptionEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; S._SubscriptionEditState_build_closure.prototype = { call$1: function(groupId) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure19(groupId))); }, $signature: 5 }; S._SubscriptionEditState_build__closure19.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_groupId = this.groupId; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure0.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure18(userId))); }, $signature: 5 }; S._SubscriptionEditState_build__closure18.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_assignedUserId = this.userId; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure1.prototype = { call$1: function(value) { var t1 = this.subscription; this.viewModel.onChanged.call$1(t1.rebuild$1(new S._SubscriptionEditState_build__closure17(H.setRuntimeTypeInfo(t1.productIds.split(","), type$.JSArray_String), value))); }, $signature: 44 }; S._SubscriptionEditState_build__closure17.prototype = { call$1: function(b) { var t1 = P.List_List$of(this.parts, true, type$.legacy_String), t2 = this.value; t1.push(t2.get$id(t2)); t1 = new H.WhereIterable(t1, new S._SubscriptionEditState_build___closure3(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).join$1(0, ","); b.get$_subscription_model$_$this()._productIds = t1; return b; }, $signature: 62 }; S._SubscriptionEditState_build___closure3.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; S._SubscriptionEditState_build_closure2.prototype = { call$1: function(element) { return element.length !== 0; }, $signature: 16 }; S._SubscriptionEditState_build_closure3.prototype = { call$1: function(productId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, _null, false, _null, _null, _null, _null, L.Text$(J.$index$asx(t1.userCompanyStates._list, t2).productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S._SubscriptionEditState_build__closure16(this.subscription, productId, this.viewModel), C.EdgeInsets_8_8_8_8, _null, _null)); }, $signature: 315 }; S._SubscriptionEditState_build__closure16.prototype = { call$0: function() { var t1 = this.subscription, parts = H.setRuntimeTypeInfo(t1.productIds.split(","), type$.JSArray_String); C.JSArray_methods.remove$1(parts, this.productId); this.viewModel.onChanged.call$1(t1.rebuild$1(new S._SubscriptionEditState_build___closure2(parts))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._SubscriptionEditState_build___closure2.prototype = { call$1: function(b) { var t1 = C.JSArray_methods.join$1(this.parts, ","); b.get$_subscription_model$_$this()._productIds = t1; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure4.prototype = { call$1: function(value) { var t1 = this.subscription; this.viewModel.onChanged.call$1(t1.rebuild$1(new S._SubscriptionEditState_build__closure15(H.setRuntimeTypeInfo(t1.recurringProductIds.split(","), type$.JSArray_String), value))); }, $signature: 44 }; S._SubscriptionEditState_build__closure15.prototype = { call$1: function(b) { var t1 = P.List_List$of(this.parts, true, type$.legacy_String), t2 = this.value; t1.push(t2.get$id(t2)); t1 = new H.WhereIterable(t1, new S._SubscriptionEditState_build___closure1(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).join$1(0, ","); b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, $signature: 62 }; S._SubscriptionEditState_build___closure1.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 16 }; S._SubscriptionEditState_build_closure5.prototype = { call$1: function(element) { return element.length !== 0; }, $signature: 16 }; S._SubscriptionEditState_build_closure6.prototype = { call$1: function(productId) { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, _null, false, _null, _null, _null, _null, L.Text$(J.$index$asx(t1.userCompanyStates._list, t2).productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S._SubscriptionEditState_build__closure14(this.subscription, productId, this.viewModel), C.EdgeInsets_8_8_8_8, _null, _null)); }, $signature: 315 }; S._SubscriptionEditState_build__closure14.prototype = { call$0: function() { var t1 = this.subscription, parts = H.setRuntimeTypeInfo(t1.recurringProductIds.split(","), type$.JSArray_String); C.JSArray_methods.remove$1(parts, this.productId); this.viewModel.onChanged.call$1(t1.rebuild$1(new S._SubscriptionEditState_build___closure0(parts))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._SubscriptionEditState_build___closure0.prototype = { call$1: function(b) { var t1 = C.JSArray_methods.join$1(this.parts, ","); b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure7.prototype = { call$1: function(value) { this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure13(value))); }, $signature: 8 }; S._SubscriptionEditState_build__closure13.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_frequencyId = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure8.prototype = { call$1: function(entry) { var _null = null, t1 = entry.get$key(entry); return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(entry.get$value(entry)), _null, _null, _null, _null, _null, _null, _null, _null, _null), t1, type$.legacy_String); }, $signature: 262 }; S._SubscriptionEditState_build_closure9.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure12(value))); }, $signature: 10 }; S._SubscriptionEditState_build__closure12.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_autoBill = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure10.prototype = { call$1: function(value) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 36 }; S._SubscriptionEditState_build_closure11.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure11(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure11.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure12.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure10(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure10.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._allowQueryOverrides = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure13.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure9(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure9.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._allowPlanChanges = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure14.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure8(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure8.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._allowCancellation = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure15.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure7(value))); }, $signature: 10 }; S._SubscriptionEditState_build__closure7.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._refundPeriod = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure16.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure6(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure6.prototype = { call$1: function(b) { return b.get$_subscription_model$_$this()._trialEnabled = this.value; }, $signature: 668 }; S._SubscriptionEditState_build_closure17.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure5(value))); }, $signature: 10 }; S._SubscriptionEditState_build__closure5.prototype = { call$1: function(b) { b.get$_subscription_model$_$this()._trialDuration = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure18.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure4(value))); }, $signature: 12 }; S._SubscriptionEditState_build__closure4.prototype = { call$1: function(b) { return b.get$_subscription_model$_$this()._perSeatEnabled = this.value; }, $signature: 668 }; S._SubscriptionEditState_build_closure21.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure1(value))); }, $signature: 10 }; S._SubscriptionEditState_build__closure1.prototype = { call$1: function(b) { b.get$webhookConfiguration().get$_subscription_model$_$this()._postPurchaseRestMethod = this.value; return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure19.prototype = { call$1: function(value) { return this.$this.setState$1(new S._SubscriptionEditState_build__closure3()); }, $signature: 59 }; S._SubscriptionEditState_build__closure3.prototype = { call$0: function() { }, $signature: 1 }; S._SubscriptionEditState_build_closure20.prototype = { call$1: function(value) { return this.$this.setState$1(new S._SubscriptionEditState_build__closure2()); }, $signature: 59 }; S._SubscriptionEditState_build__closure2.prototype = { call$0: function() { }, $signature: 1 }; S._SubscriptionEditState_build_closure22.prototype = { call$0: function() { var _this = this, t1 = _this.$this; t1._postPurchaseHeaderKeyController.set$text(0, ""); t1._postPurchaseHeaderValueController.set$text(0, ""); t1 = _this.key; if (J.containsKey$1$x(_this.webhookConfiguration.postPurchaseHeaders._map$_map, t1)) return; _this.viewModel.onChanged.call$1(_this.subscription.rebuild$1(new S._SubscriptionEditState_build__closure0(t1, _this.value))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._SubscriptionEditState_build__closure0.prototype = { call$1: function(b) { b.get$webhookConfiguration().get$postPurchaseHeaders().$indexSet(0, this.key, this.value); return b; }, $signature: 62 }; S._SubscriptionEditState_build_closure23.prototype = { call$1: function(key) { var _this = this, _null = null; return Q.ListTile$(false, C.EdgeInsets_0_0_0_0, _null, true, false, _null, _null, _null, _null, false, _null, _null, _null, _null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(key, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(L.Text$(J.$index$asx(_this.webhookConfiguration.postPurchaseHeaders._map$_map, key), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new S._SubscriptionEditState_build__closure(_this.viewModel, _this.subscription, key), C.EdgeInsets_8_8_8_8, _this.localization.get$removeHeader(), _null)); }, $signature: 315 }; S._SubscriptionEditState_build__closure.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new S._SubscriptionEditState_build___closure(this.key))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S._SubscriptionEditState_build___closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$webhookConfiguration().get$postPurchaseHeaders().get$_safeMap(), this.key); return b; }, $signature: 62 }; S.__SubscriptionEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; R.SubscriptionEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.SubscriptionEditScreen_build_closure(), new R.SubscriptionEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionEditVM); } }; R.SubscriptionEditScreen_build_closure0.prototype = { call$1: function(store) { return R.SubscriptionEditVM_SubscriptionEditVM$fromStore(store); }, $signature: 2534 }; R.SubscriptionEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new S.SubscriptionEdit(viewModel, new D.ValueKey(viewModel.subscription.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2535 }; R.SubscriptionEditVM.prototype = { get$subscription: function() { return this.subscription; }, get$company: function() { return this.company; } }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure.prototype = { call$1: function(subscription) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.UpdateSubscription(subscription)); }, $signature: 295 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, X.SubscriptionEntity_SubscriptionEntity(_null, _null), _null, true); t1 = this.state.uiState; t1.subscriptionUIState.toString; t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new R.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, subscription = t1.get$_store$_state().uiState.subscriptionUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (subscription.name.length === 0) { E.showDialog(true, new R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } t2 = new P._Future($.Zone__current, type$._Future_legacy_SubscriptionEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.SaveSubscriptionRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_SubscriptionEntity), subscription)); return t2.then$1$1(0, new R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0(subscription, t3, this.state, t1, $navigator), type$.Null).catchError$1(new R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1()); }, $signature: 31 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseEnterAName(), false, null); }, $signature: 21 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0.prototype = { call$1: function(savedSubscription) { var _this = this, _s28_ = "/settings/subscriptions_view", t1 = _this.subscription, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_subscription"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_subscription"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s28_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s28_, t1, t1); } else t2.pop$1(0, savedSubscription); } else M.viewEntity(false, savedSubscription, null, true); }, $signature: 295 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new R.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; R.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; Y.SubscriptionListItem.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, subscriptionUIState = uiState.subscriptionUIState, t1 = subscriptionUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([_this.subscription.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.subscription; t4 = t2.id; t5 = uiState.get$isEditing() ? subscriptionUIState.editing.id : subscriptionUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new Y.SubscriptionListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(t2.price, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new Y.SubscriptionListItem_build_closure0(_this, context), new Y.SubscriptionListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t8, new L.EntityStateLabel(t2, _null)], t7), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t6, _null), t4 === t5, true, true, _null); }, get$user: function() { return this.user; }, get$subscription: function() { return this.subscription; } }; Y.SubscriptionListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.subscription, false, false); return t1; }, $signature: 0 }; Y.SubscriptionListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.subscription, false, true); return t1; }, $signature: 0 }; Y.SubscriptionListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; S.SubscriptionListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.SubscriptionListBuilder_build_closure(), S.subscription_list_vm_SubscriptionListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionListVM); } }; S.SubscriptionListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.subscriptionList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_subscription, new S.SubscriptionListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new R.SubscriptionPresenter(), t1, t3); }, $signature: 2536 }; S.SubscriptionListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, subscriptionId = J.$index$asx(t1.subscriptionList, index), subscription = J.$index$asx(t1.subscriptionMap._map$_map, subscriptionId), t2 = state.getUIState$1(C.EntityType_subscription).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = subscription.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new Y.SubscriptionListItem(t4, subscription, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2537 }; S.SubscriptionListVM.prototype = {}; S.SubscriptionListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; S.SubscriptionListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; S.SubscriptionListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SortSubscriptions(field)); }, $signature: 5 }; S.SubscriptionListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ClearSubscriptionMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; R.SubscriptionPresenter.prototype = { getField$2$context$field: function(context, field) { return this.super$EntityPresenter$getField(context, field); } }; O.SubscriptionScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.subscriptionUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.subscriptionList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo([], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, H.setRuntimeTypeInfo([], t5), C.EntityType_subscription, false, C.List_empty14, new O.SubscriptionScreen_build_closure(store), new O.SubscriptionScreen_build_closure0(store), new O.SubscriptionScreen_build_closure1(store), new O.SubscriptionScreen_build_closure2(store), new O.SubscriptionScreen_build_closure3(store), new O.SubscriptionScreen_build_closure4(store), new O.SubscriptionScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["created_at", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_subscription) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "subscription_fab", false, new O.SubscriptionScreen_build_closure6(context), t3.get$newSubscription()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_subscription, t2, new O.SubscriptionScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new S.SubscriptionListBuilder(_null), t6, C.EntityType_subscription, t3, 0, _null, new O.SubscriptionScreen_build_closure8(store), new O.SubscriptionScreen_build_closure9(store)); } }; O.SubscriptionScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.StartSubscriptionMultiselect()); }, $signature: 9 }; O.SubscriptionScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptions(value)); }, $signature: 7 }; O.SubscriptionScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.subscriptionUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.ClearSubscriptionMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.StartSubscriptionMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.SubscriptionScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SortSubscriptions(value)); }, $signature: 7 }; O.SubscriptionScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptionsByState(state)); }, $signature: 53 }; O.SubscriptionScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.subscriptionUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.ClearSubscriptionMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.StartSubscriptionMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.SubscriptionScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptionsByCustom1(value)); }, $signature: 5 }; O.SubscriptionScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptionsByCustom2(value)); }, $signature: 5 }; O.SubscriptionScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptionsByCustom3(value)); }, $signature: 5 }; O.SubscriptionScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterSubscriptionsByCustom4(value)); }, $signature: 5 }; O.SubscriptionScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_subscription); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; L.SubscriptionScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.SubscriptionScreenBuilder_build_closure(), L.subscription_screen_vm_SubscriptionScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionScreenVM); } }; L.SubscriptionScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new O.SubscriptionScreen(vm, null); }, $signature: 2538 }; L.SubscriptionScreenVM.prototype = {}; M.SubscriptionView.prototype = { createState$0: function() { return new M._SubscriptionViewState(C._StateLifecycle_0); } }; M._SubscriptionViewState.prototype = { build$1: function(_, context) { var _this = this, _null = null, viewModel = _this._widget.viewModel, subscription = viewModel.subscription, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), company = t4.$index(t3, t2).userCompany.company, t5 = _this._widget.isFilter, t6 = D.EntityHeader$(subscription, t1.get$price(), _null, _null, _null, _null, Y.formatNumber(subscription.price, context, _null, _null, C.FormatNumberType_0, true, _null, false)), t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "purchase_page"); t7 = L.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = H.setRuntimeTypeInfo([t6, new G.ListDivider(_null), Q.ListTile$(false, _null, _null, true, false, _null, _null, new M._SubscriptionViewState_build_closure(subscription), new M._SubscriptionViewState_build_closure0(subscription, t1), false, _null, _null, L.Text$(subscription.purchasePage, _null, 1, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, t7, L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null)), new G.ListDivider(_null)], type$.JSArray_legacy_Widget); if (company.isModuleEnabled$1(C.EntityType_invoice)) { t6 = _this._widget.isFilter; t7.push(new O.EntitiesListTile(subscription, C.EntityType_invoice, t1.get$invoices(), $.$get$memoizedInvoiceStatsForSubscription().call$2(subscription.id, t4.$index(t3, t2).invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t6, true, _null)); } if (company.isModuleEnabled$1(C.EntityType_recurringInvoice)) { t6 = _this._widget.isFilter; t7.push(new O.EntitiesListTile(subscription, C.EntityType_recurringInvoice, t1.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForSubscription().call$2(subscription.id, t4.$index(t3, t2).recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t6, true, _null)); } return new G.ViewScaffold(t5, subscription, new X.ScrollableListView(t7, _null, _null, false, _null), new M._SubscriptionViewState_build_closure1(viewModel), _null, _null); } }; M._SubscriptionViewState_build_closure1.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; M._SubscriptionViewState_build_closure0.prototype = { call$0: function() { var t1 = this.subscription.purchasePage; T.Clipboard_setData(new T.ClipboardData(t1)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value", t1)); }, $signature: 1 }; M._SubscriptionViewState_build_closure.prototype = { call$0: function() { return T.launch(this.subscription.purchasePage, null, false); }, $signature: 30 }; E.SubscriptionViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.SubscriptionViewScreen_build_closure(this), new E.SubscriptionViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_SubscriptionViewVM); } }; E.SubscriptionViewScreen_build_closure0.prototype = { call$1: function(store) { return E.SubscriptionViewVM_SubscriptionViewVM$fromStore(store); }, $signature: 2539 }; E.SubscriptionViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new M.SubscriptionView(vm, this.$this.isFilter, null); }, $signature: 2540 }; E.SubscriptionViewVM.prototype = { get$subscription: function() { return this.subscription; }, get$company: function() { return this.company; } }; E.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/subscriptions")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.UpdateDialog.prototype = { createState$0: function() { return new B._UpdateDialogState(C.UpdateState_0, C._StateLifecycle_0); } }; B.UpdateState.prototype = { toString$0: function(_) { return this._update_dialog$_name; } }; B._UpdateDialogState.prototype = { build$1: function(_, context) { var message, t4, t0, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex, account = J.$index$asx(t2._list, t3).userCompany.account; if (_this.updateState === C.UpdateState_2) { message = _this.updateResponse; if (message.length === 0) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "app_updated"); message = t2 == null ? "" : t2; } else if (C.JSString_methods.contains$1(message, "failed")) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "update_fail_help"); message += "\n\n" + (t2 == null ? "" : t2) + "\n\ngit checkout ."; } } else message = ""; t2 = L.Text$(account.get$isUpdateAvailable() ? t1.get$updateAvailable() : t1.get$forceUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this.updateState; if (t3 === C.UpdateState_2) t3 = O.SelectableText$(message, _null); else if (t3 === C.UpdateState_1) t3 = new T.Padding(C.EdgeInsets_0_10_0_0, new V.LoadingIndicator(50, false, _null), _null); else { if (account.get$isUpdateAvailable()) { t3 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "a_new_version_is_available"); if (t4 == null) t4 = ""; t0 = t4; t4 = t3; t3 = t0; } else { t3 = t1.localeCode; t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t3), "force_update_help"); if (t4 == null) t4 = ""; t0 = t4; t4 = t3; t3 = t0; } t3 = T.SizedBox$(L.Text$(t3, _null, 2, _null, _null, _null, _null, _null, _null, _null), _null, 400); t5 = T.SizedBox$(_null, 20, _null); t1.toString; t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "current_version"); t6 = L.Text$("\u2022 " + (t6 == null ? "" : t6) + ": v" + account.currentVersion, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = T.SizedBox$(_null, 6, _null); t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "latest_version"); t9 = type$.JSArray_legacy_Widget; t8 = H.setRuntimeTypeInfo([t3, t5, t6, t7, L.Text$("\u2022 " + (t8 == null ? "" : t8) + ": v" + account.latestVersion, _null, _null, _null, _null, _null, _null, _null, _null, _null)], t9); if (account.isDocker) { t3 = T.SizedBox$(_null, 20, _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4), "to_update_run"); C.JSArray_methods.addAll$1(t8, H.setRuntimeTypeInfo([t3, L.Text$((t4 == null ? "" : t4) + ":", _null, _null, _null, _null, _null, _null, _null, _null, _null), T.SizedBox$(_null, 20, _null), Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new B._UpdateDialogState_build_closure(t1), false, _null, _null, L.Text$(string$.docker, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null))], t9)); } t3 = T.Column$(t8, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } t4 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([], t4); t6 = _this.updateState; if (t6 === C.UpdateState_0) { t4 = H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new B._UpdateDialogState_build_closure0(context), _null)], t4); if (!account.get$isUpdateAvailable()) { t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "view_changes"); if (t6 == null) t6 = ""; t4.push(U.TextButton$(false, L.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new B._UpdateDialogState_build_closure1(account), _null)); } if (!account.isDocker) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "update_now"); if (t1 == null) t1 = ""; t4.push(U.TextButton$(false, L.Text$(t1.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new B._UpdateDialogState_build_closure2(_this, context), _null)); } C.JSArray_methods.addAll$1(t5, t4); } else if (t6 === C.UpdateState_2) t5.push(U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new B._UpdateDialogState_build_closure3(context, store), _null)); return E.AlertDialog$(t5, C.EdgeInsets_0_0_0_0, _null, t3, C.EdgeInsets_24_20_24_24, _null, _null, t2); }, updateApp$1: function(context) { return this.updateApp$body$_UpdateDialogState(context); }, updateApp$body$_UpdateDialogState: function(context) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this, store; var $async$updateApp$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start store = O.StoreProvider_of(context, type$.legacy_AppState); O.passwordCallback(true, new B._UpdateDialogState_updateApp_closure($async$self, store.get$_store$_state(), store, context), context); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$updateApp$1, $async$completer); } }; B._UpdateDialogState_build_closure.prototype = { call$0: function() { T.Clipboard_setData(new T.ClipboardData(string$.docker)); M.showToast(C.JSString_methods.replaceFirst$2(this.localization.get$copiedToClipboard(), ":value ", "")); }, $signature: 1 }; B._UpdateDialogState_build_closure0.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; B._UpdateDialogState_build_closure1.prototype = { call$0: function() { return T.launch(C.JSString_methods.replaceFirst$2("https://github.com/invoiceninja/invoiceninja/compare/vVERSION...v5-stable", "VERSION", this.account.currentVersion), null, false); }, $signature: 30 }; B._UpdateDialogState_build_closure2.prototype = { call$0: function() { this.$this.updateApp$1(this.context); }, $signature: 1 }; B._UpdateDialogState_build_closure3.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$0(0); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.RefreshData(null, false, false, false)); }, $signature: 1 }; B._UpdateDialogState_updateApp_closure.prototype = { call$2: function(password, idToken) { var t2, credentials, _this = this, t1 = _this.$this; t1.setState$1(new B._UpdateDialogState_updateApp__closure(t1)); t2 = _this.state; credentials = t2.get$credentials(t2); new F.WebClient().post$5$idToken$password$rawResponse(credentials.url + "/self-update", credentials.token, idToken, password, true).then$1$1(0, new B._UpdateDialogState_updateApp__closure0(t1, _this.store), type$.Null).catchError$1(new B._UpdateDialogState_updateApp__closure1(t1, _this.context)); }, $signature: 51 }; B._UpdateDialogState_updateApp__closure.prototype = { call$0: function() { return this.$this.updateState = C.UpdateState_1; }, $signature: 665 }; B._UpdateDialogState_updateApp__closure0.prototype = { call$1: function(response) { var t1 = this.$this; t1.setState$1(new B._UpdateDialogState_updateApp___closure0(t1, response)); if (!J.contains$1$asx(t1.updateResponse, "failed")) { t1 = window.location; t1.reload(); } }, $signature: 8 }; B._UpdateDialogState_updateApp___closure0.prototype = { call$0: function() { var t1 = this.$this; t1.updateState = C.UpdateState_2; t1.updateResponse = J.$index$asx(C.C_JsonCodec.decode$2$reviver(0, J.get$body$x(this.response), null), "message"); }, $signature: 1 }; B._UpdateDialogState_updateApp__closure1.prototype = { call$1: function(error) { var t1; O.showErrorDialog(false, this.context, H.S(error)); t1 = this.$this; t1.setState$1(new B._UpdateDialogState_updateApp___closure(t1)); }, $signature: 8 }; B._UpdateDialogState_updateApp___closure.prototype = { call$0: function() { return this.$this.updateState = C.UpdateState_0; }, $signature: 665 }; X.TaskEdit.prototype = { createState$0: function() { return new X._TaskEditState(null, C._StateLifecycle_0); } }; X._TaskEditState.prototype = { initState$0: function() { var _this = this; _this.super$State$initState(); _this._task_edit$_timer = P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 0, 0, 1), new X._TaskEditState_initState_closure(_this)); _this._task_edit$_controller = U.TabController$(_this._widget.viewModel.taskTimeIndex != null ? 1 : 0, 2, _this); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (this._widget.viewModel.taskTimeIndex != null) this._task_edit$_controller.animateTo$1(1); }, dispose$0: function(_) { var _this = this; _this._task_edit$_timer.cancel$0(0); _this._task_edit$_timer = null; _this._task_edit$_controller.dispose$0(0); _this.super$__TaskEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var store, isFullscreen, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, task = viewModel.task, t2 = viewModel.state.prefState, useSidebarEditor = J.$index$asx(t2.useSidebarEditor._map$_map, C.EntityType_task); if (useSidebarEditor == null) useSidebarEditor = false; store = O.StoreProvider_of(context, type$.legacy_AppState); isFullscreen = t2.isEditorFullScreen$1(C.EntityType_task); if (task.get$isNew()) t3 = t1.get$newTask(); else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_task"); if (t3 == null) t3 = ""; } t4 = _this._task_edit$_controller; t5 = E.Tab$(_null, t1.get$details(t1)); t6 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "times"); t7 = type$.JSArray_legacy_Widget; t6 = E.TabBar$(t4, _null, false, _null, _null, H.setRuntimeTypeInfo([t5, E.Tab$(_null, t6 == null ? "" : t6)], t7)); t5 = $.$get$_TaskEditState__formKey(); t4 = task.id; t8 = _this._task_edit$_updatedAt; t9 = type$.ValueKey_legacy_String; if (isFullscreen) t4 = new A.TaskEditDetailsScreen(new D.ValueKey("__task_" + t4 + "_" + t8 + "__", t9)); else { t4 = "__task_" + t4 + "_" + t8 + "__"; t8 = _this._task_edit$_controller; t9 = E.TabBarView$(H.setRuntimeTypeInfo([new A.TaskEditDetailsScreen(_null), new M.TaskEditTimesScreen(_null)], t7), t8, new D.ValueKey(t4, t9)); t4 = t9; } t5 = A.Form$(false, t4, t5); t4 = K.Theme_of(context).cardColor; t7 = H.setRuntimeTypeInfo([], t7); if (D.getLayout(context) === C.AppLayout_desktop) { t8 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t7.push(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(useSidebarEditor ? C.IconData_57694_MaterialIcons_null_true : C.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new X._TaskEditState_build_closure(store), _null, _null, _null, _null, _null), t8)); } t8 = D.getLayout(context); t7.push(new T.AppBorder(new T.Padding(C.EdgeInsets_16_0_0_0, new T.Align(C.Alignment_m1_0, _null, _null, new E.LiveText(_null, new X._TaskEditState_build_closure0(t1, task, context), A.TextStyle$(_null, _null, t2.enableDarkMode ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null), _null), _null), _null, t8 === C.AppLayout_desktop, false, _null)); t4 = B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t7, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), t4, 0, new V.CircularNotchedRectangle()); if (task.invoiceId.length !== 0 || task.isDeleted) t1 = T.SizedBox$(_null, _null, _null); else { t2 = K.Theme_of(context).primaryColorDark; t7 = L.Icon$(task.get$isRunning() ? C.IconData_58886_MaterialIcons_null_false : C.IconData_58571_MaterialIcons_null_false, C.Color_4294967295, _null); t1 = task.get$isRunning() ? t1.get$stop(t1) : t1.get$start(t1); t1 = E.FloatingActionButton$(t2, t7, "task_edit_fab", false, new X._TaskEditState_build_closure1(_this, viewModel), t1); } return K.EditScaffold$(_null, t6, t5, t4, task, t1, isFullscreen, _null, new X._TaskEditState_build_closure2(viewModel), new X._TaskEditState_build_closure3(viewModel), _null, t3); } }; X._TaskEditState_initState_closure.prototype = { call$1: function(t) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new X._TaskEditState_initState__closure()); }, $signature: 259 }; X._TaskEditState_initState__closure.prototype = { call$0: function() { return false; }, $signature: 19 }; X._TaskEditState_build_closure2.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; X._TaskEditState_build_closure3.prototype = { call$1: function(context) { if (!$.$get$_TaskEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; X._TaskEditState_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(C.EntityType_task)); }, $signature: 9 }; X._TaskEditState_build_closure0.prototype = { call$0: function() { var t1 = this.localization, t2 = this.task; return C.JSString_methods.$add(t1.get$duration(t1) + " ", Y.formatNumber(C.JSInt_methods._tdivFast$1(t2.calculateDuration$1$includeRunning(t2.showAsRunning)._duration, 1000000), this.context, null, null, C.FormatNumberType_6, true, null, false)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 150 }; X._TaskEditState_build_closure1.prototype = { call$0: function() { this.viewModel.onFabPressed.call$0(); var t1 = this.$this; t1.setState$1(new X._TaskEditState_build__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; X._TaskEditState_build__closure.prototype = { call$0: function() { this.$this._task_edit$_updatedAt = Date.now(); }, $signature: 1 }; X.__TaskEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; R.TaskEditDesktop.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new R._TaskEditDesktopState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; R._TaskEditDesktopState.prototype = { didChangeDependencies$0: function() { var task, _this = this, t1 = _this._task_edit_desktop$_numberController, t2 = _this._task_edit_desktop$_rateController, t3 = _this._task_edit_desktop$_descriptionController, t4 = _this._task_edit_desktop$_custom1Controller, t5 = _this._task_edit_desktop$_custom2Controller, t6 = _this._task_edit_desktop$_custom3Controller, t7 = _this._task_edit_desktop$_custom4Controller, t8 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._task_edit_desktop$_controllers = t8; C.JSArray_methods.forEach$1(t8, new R._TaskEditDesktopState_didChangeDependencies_closure(_this)); task = _this._widget.viewModel.task; t1.set$text(0, task.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, Y.formatNumber(task.rate, t1, null, null, C.FormatNumberType_4, true, null, false)); t3.set$text(0, task.description); t4.set$text(0, task.customValue1); t5.set$text(0, task.customValue2); t6.set$text(0, task.customValue3); t7.set$text(0, task.customValue4); C.JSArray_methods.forEach$1(_this._task_edit_desktop$_controllers, new R._TaskEditDesktopState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._task_edit_desktop$_controllers, new R._TaskEditDesktopState_dispose_closure(this)); this.super$State$dispose(0); }, _task_edit_desktop$_onChanged$0: function() { var _this = this, task = _this._widget.viewModel.task.rebuild$1(new R._TaskEditDesktopState__onChanged_closure(_this)); if (!J.$eq$(task, _this._widget.viewModel.task)) _this._task_edit_desktop$_debouncer.run$1(new R._TaskEditDesktopState__onChanged_closure0(_this, task)); }, build$1: function(_, context) { var t6, t7, t8, t9, rateLabel, tableHeaderColor, t10, t11, t12, index, date, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), task = viewModel.task, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), company = t4.$index(t3, t2).userCompany.company, t5 = task.clientId, client = t4.$index(t3, t2).clientState.$get$1(0, t5), showEndDate = company.showTaskEndDate, taskTimes = task.getTaskTimes$1$sort(false); if (!C.JSArray_methods.any$1(taskTimes, new R._TaskEditDesktopState_build_closure())) taskTimes.push(D.TaskTime_TaskTime(_null, _null).rebuild$1(new R._TaskEditDesktopState_build_closure0())); t6 = t1.get$rate(t1) + " \u2022 "; t7 = D.TaskEntity_TaskEntity(_null, _null, _null, _null, _null); t8 = task.projectId; t7 = U.taskRateSelector(client, company, t4.$index(t3, t2).groupState.$get$1(0, client.groupId), t4.$index(t3, t2).projectState.$get$1(0, t8), t7); t9 = client.settings.currencyId; if (!((t9 == null ? "" : t9).length !== 0)) { t9 = company.settings.currencyId; if (t9 == null) t9 = "1"; } rateLabel = C.JSString_methods.$add(t6, Y.formatNumber(t7, context, _null, t9, C.FormatNumberType_0, true, _null, false)); tableHeaderColor = J.$index$asx(state.prefState.customColors._map$_map, "invoice_header_background_color"); if (tableHeaderColor == null) tableHeaderColor = ""; t6 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([], t6); if (task.invoiceId.length === 0) { t9 = "__client_" + t5 + "__"; t10 = t1.get$client(t1); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([F.EntityDropdown$(true, false, false, t5, $.$get$memoizedDropdownClientList().call$4(t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).clientState.list, t4.$index(t3, t2).userState.map, state.staticState), _null, C.EntityType_client, new D.ValueKey(t9, type$.ValueKey_legacy_String), t10, new R._TaskEditDesktopState_build_closure1(viewModel, context), new R._TaskEditDesktopState_build_closure2(viewModel, task), _null, _null, _null), new N.ProjectPicker(t8, t5, new R._TaskEditDesktopState_build_closure3(state, viewModel, task), new R._TaskEditDesktopState_build_closure4(viewModel, context), new D.ValueKey("__project_" + t5 + "__", type$.ValueKey_String))], t6)); } t7.push(new V.UserPicker(task.assignedUserId, new R._TaskEditDesktopState_build_closure5(viewModel, task), _null)); t7.push(new B.CustomField(_this._task_edit_desktop$_custom1Controller, _null, _null, "task1", task.customValue1, false, _null)); t7.push(new B.CustomField(_this._task_edit_desktop$_custom3Controller, _null, _null, "task3", task.customValue3, false, _null)); t5 = T.Expanded$(Y.FormCard$(_null, t7, C.CrossAxisAlignment_0, 4, false, _null, false, C.EdgeInsets_12_12_6_12), 1); t7 = S.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$taskNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t8 = type$.ValueKey_legacy_String; t9 = S.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_rateController, _null, true, _null, _null, _null, _null, false, false, new D.ValueKey("__rate__", t8), new N.TextInputType(2, true, true), rateLabel, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null); t10 = task.statusId; t11 = "__task_status_" + H.S(t10) + "__"; t12 = t1.get$status(t1); t12 = T.Row$(H.setRuntimeTypeInfo([t5, T.Expanded$(Y.FormCard$(_null, H.setRuntimeTypeInfo([t7, t9, Y.DynamicSelector$(false, t10, $.$get$memoizedDropdownTaskStatusList().call$4(t4.$index(t3, t2).taskStatusState.map, t4.$index(t3, t2).taskStatusState.list, state.staticState, t4.$index(t3, t2).userState.map), C.EntityType_taskStatus, new D.ValueKey(t11, t8), t12, _null, new R._TaskEditDesktopState_build_closure6(state, viewModel, task), _null), new B.CustomField(_this._task_edit_desktop$_custom2Controller, _null, _null, "task2", task.customValue2, false, _null), new B.CustomField(_this._task_edit_desktop$_custom4Controller, _null, _null, "task4", task.customValue4, false, _null)], t6), C.CrossAxisAlignment_0, 4, false, _null, false, C.EdgeInsets_6_12_6_12), 1), T.Expanded$(Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._task_edit_desktop$_descriptionController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$description(t1), 6, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), T.SizedBox$(_null, 4, _null)], t6), C.CrossAxisAlignment_0, 4, false, _null, false, C.EdgeInsets_6_12_12_12), 1)], t6), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t11 = "__table_" + _this._task_edit_desktop$_updatedAt + "__"; t2 = showEndDate ? 5 : 4; t2 = P.LinkedHashMap_LinkedHashMap$_literal([t2, new S.FixedColumnWidth(48)], type$.legacy_int, type$.legacy_TableColumnWidth); t3 = H.setRuntimeTypeInfo([new E.TableHeader(t1.get$startDate(), true, _null), new E.TableHeader(t1.get$startTime(t1), false, _null)], t6); if (showEndDate) t3.push(new E.TableHeader(t1.get$endDate(), false, _null)); t3.push(new E.TableHeader(t1.get$endTime(t1), false, _null)); t3.push(new E.TableHeader(t1.get$duration(t1), false, _null)); t3.push(new E.TableHeader("", false, _null)); t3 = H.setRuntimeTypeInfo([new S.TableRow(_null, tableHeaderColor.length !== 0 ? new S.BoxDecoration(E.convertHexStringToColor(tableHeaderColor), _null, _null, _null, _null, _null, C.BoxShape_0) : _null, t3)], type$.JSArray_legacy_TableRow); for (t1 = t1.localeCode, index = 0; index < taskTimes.length; ++index) { t4 = "__" + _this._task_edit_desktop$_startTimeUpdatedAt + "_" + _this._task_edit_desktop$_durationUpdateAt + "_" + index + "__"; t5 = taskTimes[index].startDate; if (t5 == null) t5 = _null; else { date = t5.toLocal$0(); t5 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); } t7 = "__" + _this._task_edit_desktop$_durationUpdateAt + "_" + index + "__"; t7 = H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, new K.DatePicker(_null, t5, new R._TaskEditDesktopState_build_closure7(_this, taskTimes, index, showEndDate, viewModel), _null, _null, _null, new D.ValueKey(t4, t8)), _null), new T.Padding(C.EdgeInsets_0_0_16_0, new M.TimePicker(_null, taskTimes[index].startDate, new R._TaskEditDesktopState_build_closure8(_this, taskTimes, index, viewModel), new D.ValueKey(t7, t8)), _null)], t6); if (showEndDate) { t4 = "__" + _this._task_edit_desktop$_startDateUpdatedAt + "_" + _this._task_edit_desktop$_durationUpdateAt + "_" + _this._task_edit_desktop$_endTimeUpdatedAt + "_" + index + "__"; t5 = taskTimes[index].endDate; if (t5 == null) t5 = _null; else { date = t5.toLocal$0(); t5 = C.JSArray_methods.get$first(date.toIso8601String$0().split("T")); } t7.push(new T.Padding(C.EdgeInsets_0_0_16_0, new K.DatePicker(_null, t5, new R._TaskEditDesktopState_build_closure9(_this, taskTimes, index, viewModel), _null, _null, _null, new D.ValueKey(t4, t8)), _null)); } t4 = "__" + _this._task_edit_desktop$_endDateUpdatedAt + "_" + _this._task_edit_desktop$_durationUpdateAt + "_" + index + "__"; t7.push(new T.Padding(C.EdgeInsets_0_0_16_0, new M.TimePicker(_null, taskTimes[index].endDate, new R._TaskEditDesktopState_build_closure10(_this, taskTimes, index, viewModel), new D.ValueKey(t4, t8)), _null)); t4 = "__" + _this._task_edit_desktop$_startTimeUpdatedAt + "_" + _this._task_edit_desktop$_endTimeUpdatedAt + "_" + _this._task_edit_desktop$_startDateUpdatedAt + "_" + _this._task_edit_desktop$_endDateUpdatedAt + "_" + index + "__"; t5 = taskTimes[index]; t9 = t5.startDate; if (t9 == null || t5.endDate == null) t5 = _null; else { t5 = t5.endDate; if (t5 == null) t5 = new P.DateTime(Date.now(), false); t9 = new P.Duration(1000 * (t5._value - t9._value)); t5 = t9; } t7.push(new T.Padding(C.EdgeInsets_0_0_16_0, new U.DurationPicker(t5, new R._TaskEditDesktopState_build_closure11(_this, taskTimes, index, viewModel), _null, new D.ValueKey(t4, t8)), _null)); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), "remove"); if (t4 == null) t4 = ""; t5 = taskTimes[index]; t5 = t5.startDate == null && t5.endDate == null ? _null : new R._TaskEditDesktopState_build_closure12(_this, viewModel, index); t7.push(new T.Padding(C.EdgeInsets_0_4_0_0, B.IconButton$(C.Alignment_0_0, _null, _null, true, new L.Icon(C.IconData_57704_MaterialIcons_null_false, _null, _null, _null), 24, t5, C.EdgeInsets_8_8_8_8, t4, _null), _null)); t3.push(new S.TableRow(_null, _null, t7)); } return new X.ScrollableListView(H.setRuntimeTypeInfo([t12, Y.FormCard$(S.Table$(t3, t2, C.FlexColumnWidth_1, C.TableCellVerticalAlignment_0, new D.ValueKey(t11, t8)), _null, _null, 4, false, _null, false, C.EdgeInsets_12_0_12_0), T.SizedBox$(_null, 12, _null)], t6), _null, _null, false, _null); } }; R._TaskEditDesktopState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_task_edit_desktop$_onChanged()); }, $signature: 27 }; R._TaskEditDesktopState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_task_edit_desktop$_onChanged()), false); return null; }, $signature: 27 }; R._TaskEditDesktopState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_task_edit_desktop$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; R._TaskEditDesktopState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._task_edit_desktop$_numberController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_number = t2; t2 = Y.parseDouble(J.trim$0$s(t1._task_edit_desktop$_rateController._change_notifier$_value.text), false); b.get$_task_model$_$this()._rate = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_descriptionController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_description = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom1Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue1 = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom2Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue2 = t2; t2 = J.trim$0$s(t1._task_edit_desktop$_custom3Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue3 = t2; t1 = J.trim$0$s(t1._task_edit_desktop$_custom4Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, $signature: 46 }; R._TaskEditDesktopState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.task); }, $signature: 1 }; R._TaskEditDesktopState_build_closure.prototype = { call$1: function(taskTime) { return taskTime.startDate == null && taskTime.endDate == null; }, $signature: 182 }; R._TaskEditDesktopState_build_closure0.prototype = { call$1: function(b) { b.get$_task_model$_$this()._startDate = null; return b; }, $signature: 732 }; R._TaskEditDesktopState_build_closure2.prototype = { call$1: function(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new R._TaskEditDesktopState_build__closure8(client))); }, $signature: 44 }; R._TaskEditDesktopState_build__closure8.prototype = { call$1: function(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_clientId = t1; b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, $signature: 46 }; R._TaskEditDesktopState_build_closure1.prototype = { call$1: function(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 164 }; R._TaskEditDesktopState_build_closure3.prototype = { call$1: function(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = this.task; this.viewModel.onChanged.call$1(t3.rebuild$1(new R._TaskEditDesktopState_build__closure7(J.$index$asx(t1.userCompanyStates._list, t2).projectState.$get$1(0, selectedId), t3))); }, $signature: 7 }; R._TaskEditDesktopState_build__closure7.prototype = { call$1: function(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_task_model$_$this()._task_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.task.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 46 }; R._TaskEditDesktopState_build_closure4.prototype = { call$1: function(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, $signature: 164 }; R._TaskEditDesktopState_build_closure5.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.task.rebuild$1(new R._TaskEditDesktopState_build__closure6(userId))); }, $signature: 5 }; R._TaskEditDesktopState_build__closure6.prototype = { call$1: function(b) { b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, $signature: 46 }; R._TaskEditDesktopState_build_closure6.prototype = { call$1: function(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; this.viewModel.onChanged.call$1(this.task.rebuild$1(new R._TaskEditDesktopState_build__closure5(J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).taskStatusState.map._map$_map, selectedId)))); }, $signature: 7 }; R._TaskEditDesktopState_build__closure5.prototype = { call$1: function(b) { var t1 = this.taskStatus; t1 = t1 == null ? null : t1.id; if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_statusId = t1; b.get$_task_model$_$this()._statusOrder = null; return b; }, $signature: 46 }; R._TaskEditDesktopState_build_closure7.prototype = { call$1: function(date) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithStartDate$2$syncDates(date, !_this.showEndDate), t1); t1 = _this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure4(t1)); }, $signature: 7 }; R._TaskEditDesktopState_build__closure4.prototype = { call$0: function() { this.$this._task_edit_desktop$_startDateUpdatedAt = Date.now(); }, $signature: 1 }; R._TaskEditDesktopState_build_closure8.prototype = { call$1: function(timeOfDay) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithStartTime$1(timeOfDay), t1); t1 = _this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure3(t1)); }, $signature: 294 }; R._TaskEditDesktopState_build__closure3.prototype = { call$0: function() { this.$this._task_edit_desktop$_startTimeUpdatedAt = Date.now(); }, $signature: 1 }; R._TaskEditDesktopState_build_closure9.prototype = { call$1: function(date) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithEndDate$1(date), t1); t1 = _this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure2(t1)); }, $signature: 7 }; R._TaskEditDesktopState_build__closure2.prototype = { call$0: function() { this.$this._task_edit_desktop$_endDateUpdatedAt = Date.now(); }, $signature: 1 }; R._TaskEditDesktopState_build_closure10.prototype = { call$1: function(timeOfDay) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithEndTime$1(timeOfDay), t1); t1 = _this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure1(t1)); }, $signature: 294 }; R._TaskEditDesktopState_build__closure1.prototype = { call$0: function() { this.$this._task_edit_desktop$_endTimeUpdatedAt = Date.now(); }, $signature: 1 }; R._TaskEditDesktopState_build_closure11.prototype = { call$1: function(duration) { var _this = this, t1 = _this.index; _this.viewModel.onUpdatedTaskTime.call$2(_this.taskTimes[t1].copyWithDuration$1(duration), t1); t1 = _this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure0(t1)); }, $signature: 45 }; R._TaskEditDesktopState_build__closure0.prototype = { call$0: function() { this.$this._task_edit_desktop$_durationUpdateAt = Date.now(); }, $signature: 1 }; R._TaskEditDesktopState_build_closure12.prototype = { call$0: function() { this.viewModel.onRemoveTaskTime.call$1(this.index); var t1 = this.$this; t1.setState$1(new R._TaskEditDesktopState_build__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; R._TaskEditDesktopState_build__closure.prototype = { call$0: function() { this.$this._task_edit_desktop$_updatedAt = Date.now(); }, $signature: 1 }; B.TaskEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new B._TaskEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; B._TaskEditDetailsState.prototype = { didChangeDependencies$0: function() { var task, _this = this, t1 = _this._task_edit_details$_numberController, t2 = _this._task_edit_details$_rateController, t3 = _this._descriptionController, t4 = _this._task_edit_details$_custom1Controller, t5 = _this._task_edit_details$_custom2Controller, t6 = _this._task_edit_details$_custom3Controller, t7 = _this._task_edit_details$_custom4Controller, t8 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7], type$.JSArray_legacy_TextEditingController); _this._task_edit_details$_controllers = t8; C.JSArray_methods.forEach$1(t8, new B._TaskEditDetailsState_didChangeDependencies_closure(_this)); task = _this._widget.viewModel.task; t1.set$text(0, task.number); t1 = _this._framework$_element; t1.toString; t2.set$text(0, Y.formatNumber(task.rate, t1, null, null, C.FormatNumberType_4, true, null, false)); t3.set$text(0, task.description); t4.set$text(0, task.customValue1); t5.set$text(0, task.customValue2); t6.set$text(0, task.customValue3); t7.set$text(0, task.customValue4); C.JSArray_methods.forEach$1(_this._task_edit_details$_controllers, new B._TaskEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._task_edit_details$_controllers, new B._TaskEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _task_edit_details$_onChanged$0: function() { var _this = this, task = _this._widget.viewModel.task.rebuild$1(new B._TaskEditDetailsState__onChanged_closure(_this)); if (!J.$eq$(task, _this._widget.viewModel.task)) _this._task_edit_details$_debouncer.run$1(new B._TaskEditDetailsState__onChanged_closure0(_this, task)); }, build$1: function(_, context) { var t9, rateLabel, t10, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), task = viewModel.task, state = viewModel.state, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), company = t4.$index(t3, t2).userCompany.company, t5 = task.clientId, client = t4.$index(t3, t2).clientState.$get$1(0, t5), t6 = t1.get$rate(t1) + " \u2022 ", t7 = D.TaskEntity_TaskEntity(_null, _null, _null, _null, _null), t8 = task.projectId; t7 = U.taskRateSelector(client, company, t4.$index(t3, t2).groupState.$get$1(0, client.groupId), t4.$index(t3, t2).projectState.$get$1(0, t8), t7); t9 = client.settings.currencyId; if (!((t9 == null ? "" : t9).length !== 0)) { t9 = company.settings.currencyId; if (t9 == null) t9 = "1"; } rateLabel = C.JSString_methods.$add(t6, Y.formatNumber(t7, context, _null, t9, C.FormatNumberType_0, true, _null, false)); t9 = type$.JSArray_legacy_Widget; t7 = H.setRuntimeTypeInfo([], t9); if (task.invoiceId.length === 0) { t6 = "__client_" + t5 + "__"; t10 = t1.get$client(t1); C.JSArray_methods.addAll$1(t7, H.setRuntimeTypeInfo([F.EntityDropdown$(true, false, false, t5, $.$get$memoizedDropdownClientList().call$4(t4.$index(t3, t2).clientState.map, t4.$index(t3, t2).clientState.list, t4.$index(t3, t2).userState.map, state.staticState), _null, C.EntityType_client, new D.ValueKey(t6, type$.ValueKey_legacy_String), t10, new B._TaskEditDetailsState_build_closure(viewModel, context), new B._TaskEditDetailsState_build_closure0(viewModel, task), _null, _null, _null), new N.ProjectPicker(t8, t5, new B._TaskEditDetailsState_build_closure1(state, viewModel, task), new B._TaskEditDetailsState_build_closure2(viewModel, context), new D.ValueKey("__project_" + t5 + "__", type$.ValueKey_String))], t9)); } t7.push(new V.UserPicker(task.assignedUserId, new B._TaskEditDetailsState_build_closure3(viewModel, task), _null)); t7.push(S.DecoratedFormField$(false, _null, false, false, _this._task_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$taskNumber(), _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); t5 = type$.ValueKey_legacy_String; t7.push(S.DecoratedFormField$(false, _null, false, false, _this._task_edit_details$_rateController, _null, true, _null, _null, _null, _null, false, false, new D.ValueKey("__rate__", t5), new N.TextInputType(2, true, true), rateLabel, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); t6 = task.statusId; t8 = "__task_status_" + H.S(t6) + "__"; t10 = t1.get$status(t1); t7.push(Y.DynamicSelector$(false, t6, $.$get$memoizedDropdownTaskStatusList().call$4(t4.$index(t3, t2).taskStatusState.map, t4.$index(t3, t2).taskStatusState.list, state.staticState, t4.$index(t3, t2).userState.map), C.EntityType_taskStatus, new D.ValueKey(t8, t5), t10, _null, new B._TaskEditDetailsState_build_closure4(state, viewModel, task), _null)); t7.push(new B.CustomField(_this._task_edit_details$_custom1Controller, _null, _null, "task1", task.customValue1, false, _null)); t7.push(new B.CustomField(_this._task_edit_details$_custom2Controller, _null, _null, "task2", task.customValue2, false, _null)); t7.push(new B.CustomField(_this._task_edit_details$_custom3Controller, _null, _null, "task3", task.customValue3, false, _null)); t7.push(new B.CustomField(_this._task_edit_details$_custom4Controller, _null, _null, "task4", task.customValue4, false, _null)); t7.push(S.DecoratedFormField$(false, _null, false, false, _this._descriptionController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$description(t1), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)); return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t7, _null, 4, false, _null, true, _null)], t9), _null, _null, false, _null); } }; B._TaskEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_task_edit_details$_onChanged()); }, $signature: 27 }; B._TaskEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_task_edit_details$_onChanged()), false); return null; }, $signature: 27 }; B._TaskEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_task_edit_details$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; B._TaskEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._task_edit_details$_numberController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_number = t2; t2 = Y.parseDouble(J.trim$0$s(t1._task_edit_details$_rateController._change_notifier$_value.text), false); b.get$_task_model$_$this()._rate = t2; t2 = J.trim$0$s(t1._descriptionController._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_description = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue1 = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue2 = t2; t2 = J.trim$0$s(t1._task_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue3 = t2; t1 = J.trim$0$s(t1._task_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, $signature: 46 }; B._TaskEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.task); }, $signature: 1 }; B._TaskEditDetailsState_build_closure0.prototype = { call$1: function(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new B._TaskEditDetailsState_build__closure2(client))); }, $signature: 44 }; B._TaskEditDetailsState_build__closure2.prototype = { call$1: function(b) { var t1 = this.client; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_task_model$_$this()._task_model$_clientId = t1; b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, $signature: 46 }; B._TaskEditDetailsState_build_closure.prototype = { call$1: function(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, $signature: 164 }; B._TaskEditDetailsState_build_closure1.prototype = { call$1: function(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex, t3 = this.task; this.viewModel.onChanged.call$1(t3.rebuild$1(new B._TaskEditDetailsState_build__closure1(J.$index$asx(t1.userCompanyStates._list, t2).projectState.$get$1(0, selectedId), t3))); }, $signature: 7 }; B._TaskEditDetailsState_build__closure1.prototype = { call$1: function(b) { var t1 = this.project, t2 = t1 == null, t3 = t2 ? null : t1.id; b.get$_task_model$_$this()._task_model$_projectId = t3; t2 = t2 ? null : t1.clientId; t1 = (t2 == null ? "" : t2).length !== 0 ? t1.clientId : this.task.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 46 }; B._TaskEditDetailsState_build_closure2.prototype = { call$1: function(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, $signature: 164 }; B._TaskEditDetailsState_build_closure3.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.task.rebuild$1(new B._TaskEditDetailsState_build__closure0(userId))); }, $signature: 5 }; B._TaskEditDetailsState_build__closure0.prototype = { call$1: function(b) { b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, $signature: 46 }; B._TaskEditDetailsState_build_closure4.prototype = { call$1: function(selectedId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; this.viewModel.onChanged.call$1(this.task.rebuild$1(new B._TaskEditDetailsState_build__closure(J.$index$asx(J.$index$asx(t1.userCompanyStates._list, t2).taskStatusState.map._map$_map, selectedId)))); }, $signature: 7 }; B._TaskEditDetailsState_build__closure.prototype = { call$1: function(b) { var t1 = this.taskStatus; t1 = t1 == null ? null : t1.id; b.get$_task_model$_$this()._task_model$_statusId = t1; b.get$_task_model$_$this()._statusOrder = null; return b; }, $signature: 46 }; A.TaskEditDetailsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.TaskEditDetailsScreen_build_closure(), new A.TaskEditDetailsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditDetailsVM); } }; A.TaskEditDetailsScreen_build_closure0.prototype = { call$1: function(store) { return A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore(store); }, $signature: 2543 }; A.TaskEditDetailsScreen_build_closure.prototype = { call$2: function(context, viewModel) { if (viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_task)) return new R.TaskEditDesktop(viewModel, null); else return new B.TaskEditDetails(viewModel, null); }, $signature: 2544 }; A.TaskEditDetailsVM.prototype = { get$task: function() { return this.task; }, get$company: function() { return this.company; } }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure.prototype = { call$1: function(task) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.UpdateTask(task)); }, $signature: 139 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0.prototype = { call$2: function(context, completer) { var _null = null, t1 = T.ClientEntity_ClientEntity(_null, _null, _null), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3(t3), t4); }, $signature: 135 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task/edit")); }, $signature: 3 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task/edit")); }, $signature: 44 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2.prototype = { call$2: function(taskTime, index) { var t1 = this.store; if (index === this.task.getTaskTimes$0().length) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.AddTaskTime(taskTime, false)); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.UpdateTaskTime(index, taskTime)); }, $signature: 661 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3.prototype = { call$1: function(index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteTaskTime(index)); }, $signature: 103 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1.prototype = { call$2: function(context, completer) { var _null = null, t1 = A.ProjectEntity_ProjectEntity(_null, _null, _null, _null).rebuild$1(new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure(this.task)), t2 = new P._Future($.Zone__current, type$._Future_Null), t3 = this.store, t4 = type$.Null; t2.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0(t3), t4); M.createEntity(new P._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, context, t1, _null, true); completer.get$future().then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1(t3), t4); }, $signature: 135 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure.prototype = { call$1: function(b) { b.get$_project_model$_$this()._project_model$_clientId = this.task.clientId; return b; }, $signature: 168 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0.prototype = { call$1: function(_) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task/edit")); }, $signature: 3 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1.prototype = { call$1: function(client) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/task/edit")); }, $signature: 44 }; U.TaskEditTimes.prototype = { createState$0: function() { return new U._TaskEditTimesState(C._StateLifecycle_0); } }; U._TaskEditTimesState.prototype = { _showTaskTimeEditor$2: function(taskTime, context) { E.showDialog(false, new U._TaskEditTimesState__showTaskTimeEditor_closure(this, taskTime), context, null, true, type$.legacy_ResponsivePadding); }, build$1: function(_, context) { var t3, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, task = viewModel.task, taskTimes = task.getTaskTimes$0(), t2 = viewModel.taskTimeIndex, taskTime = t2 != null && taskTimes.length > t2 ? taskTimes[t2] : _null; if (taskTime != null && true) { viewModel.clearSelectedTaskTime.call$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._TaskEditTimesState_build_closure(this, taskTime, context)); } if (task.getTaskTimes$0().length === 0) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "click_plus_to_add_time"); return new U.HelpText(t1 == null ? "" : t1, _null); } t1 = task.getTaskTimes$0(); t1 = H.setRuntimeTypeInfo(t1.slice(0), H._arrayInstanceType(t1)); t2 = H._arrayInstanceType(t1)._eval$1("ReversedListIterable<1>"); t3 = t2._eval$1("MappedListIterable"); return new X.ScrollableListView(P.List_List$of(new H.MappedListIterable(new H.ReversedListIterable(t1, t2), new U._TaskEditTimesState_build_closure0(this, task), t3), true, t3._eval$1("ListIterable.E")), _null, _null, false, _null); } }; U._TaskEditTimesState__showTaskTimeEditor_closure.prototype = { call$1: function(context) { var viewModel = this.$this._widget.viewModel, taskTimes = viewModel.task.getTaskTimes$0(), t1 = this.taskTime; return new U.TimeEditDetails(C.JSArray_methods.indexOf$1(taskTimes, C.JSArray_methods.firstWhere$1(taskTimes, new U._TaskEditTimesState__showTaskTimeEditor__closure(t1))), t1, viewModel, null); }, $signature: 2546 }; U._TaskEditTimesState__showTaskTimeEditor__closure.prototype = { call$1: function(time) { var t1 = this.taskTime; return J.$eq$(time.startDate, t1.startDate) && J.$eq$(time.endDate, t1.endDate); }, $signature: 182 }; U._TaskEditTimesState_build_closure.prototype = { call$1: function(duration) { this.$this._showTaskTimeEditor$2(this.taskTime, this.context); }, $signature: 45 }; U._TaskEditTimesState_build_closure0.prototype = { call$1: function(taskTime) { return new M.TaskTimeListTile(new U._TaskEditTimesState_build__closure(this.$this, taskTime), this.task, taskTime, null); }, $signature: 2547 }; U._TaskEditTimesState_build__closure.prototype = { call$1: function(context) { return this.$this._showTaskTimeEditor$2(this.taskTime, context); }, $signature: 29 }; U.TimeEditDetails.prototype = { createState$0: function() { return new U.TimeEditDetailsState(D.TaskTime_TaskTime(null, null), C._StateLifecycle_0); } }; U.TimeEditDetailsState.prototype = { didChangeDependencies$0: function() { this._taskTime = this._widget.taskTime; this.super$State$didChangeDependencies(); }, build$1: function(_, context) { var t6, t7, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, showEndDate = viewModel.company.showTaskEndDate, t2 = "__date_" + _this._startTimeUpdatedAt + "__", t3 = type$.ValueKey_legacy_String, t4 = t1.get$date(), t5 = _this._taskTime.startDate; t5 = t5 == null ? _null : Y.convertDateTimeToSqlDate(t5.toLocal$0()); t6 = type$.JSArray_legacy_Widget; t5 = H.setRuntimeTypeInfo([K.DatePicker$(false, _null, new D.ValueKey(t2, t3), t4, _null, new U.TimeEditDetailsState_build_closure(_this, showEndDate, viewModel), t5, _null), M.TimePicker$(false, new D.ValueKey("__start_time_" + _this._durationUpdateAt + "__", t3), t1.get$startTime(t1), new U.TimeEditDetailsState_build_closure0(_this, viewModel), _this._taskTime.startDate), M.TimePicker$(true, new D.ValueKey("__end_time_" + _this._endDateUpdatedAt + "_" + _this._durationUpdateAt + "__", t3), t1.get$endTime(t1), new U.TimeEditDetailsState_build_closure1(_this, viewModel), _this._taskTime.endDate)], t6); if (showEndDate) { t2 = "__" + _this._startDateUpdatedAt + "_" + _this._durationUpdateAt + "_" + _this._endTimeUpdatedAt + "__"; t4 = _this._taskTime; t4 = t4.startDate == null ? _null : Y.convertDateTimeToSqlDate(t4.endDate.toLocal$0()); t5.push(K.DatePicker$(false, _null, new D.ValueKey(t2, t3), _null, _null, new U.TimeEditDetailsState_build_closure2(_this, viewModel), t4, _null)); } t2 = "__duration_" + _this._startTimeUpdatedAt + "_" + _this._endTimeUpdatedAt + "_" + _this._startDateUpdatedAt + "_" + _this._endDateUpdatedAt + "_"; t4 = t1.get$duration(t1); t7 = _this._taskTime; t7 = t7.startDate == null || t7.endDate == null ? _null : t7.get$duration(t7); t5.push(new U.DurationPicker(t7, new U.TimeEditDetailsState_build_closure3(_this, viewModel), t4, new D.ValueKey(t2, t3))); t5 = E.SingleChildScrollView$(T.Column$(t5, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new U.TimeEditDetailsState_build_closure4(_this, context), _null), U.TextButton$(false, L.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new U.TimeEditDetailsState_build_closure5(_this, context), _null)], t6), C.EdgeInsets_0_0_0_0, _null, t5, C.EdgeInsets_24_20_24_24, _null, _null, _null); } }; U.TimeEditDetailsState_build_closure.prototype = { call$1: function(date) { var t1 = this.$this; t1.setState$1(new U.TimeEditDetailsState_build__closure3(t1, date, this.showEndDate, this.viewModel)); }, $signature: 7 }; U.TimeEditDetailsState_build__closure3.prototype = { call$0: function() { var _this = this, t1 = _this.$this, t2 = t1._taskTime.copyWithStartDate$2$syncDates(_this.date, !_this.showEndDate); t1._taskTime = t2; _this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._startDateUpdatedAt = Date.now(); }, $signature: 1 }; U.TimeEditDetailsState_build_closure0.prototype = { call$1: function(timeOfDay) { var t1 = this.$this; t1.setState$1(new U.TimeEditDetailsState_build__closure2(t1, timeOfDay, this.viewModel)); }, $signature: 294 }; U.TimeEditDetailsState_build__closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._taskTime.copyWithStartTime$1(this.timeOfDay); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._startTimeUpdatedAt = Date.now(); }, $signature: 1 }; U.TimeEditDetailsState_build_closure1.prototype = { call$1: function(timeOfDay) { var t1 = this.$this; t1.setState$1(new U.TimeEditDetailsState_build__closure1(t1, timeOfDay, this.viewModel)); }, $signature: 294 }; U.TimeEditDetailsState_build__closure1.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._taskTime.copyWithEndTime$1(this.timeOfDay); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._endTimeUpdatedAt = Date.now(); }, $signature: 1 }; U.TimeEditDetailsState_build_closure2.prototype = { call$1: function(date) { var t1 = this.$this; t1.setState$1(new U.TimeEditDetailsState_build__closure0(t1, date, this.viewModel)); }, $signature: 7 }; U.TimeEditDetailsState_build__closure0.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._taskTime.copyWithEndDate$1(this.date); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._endDateUpdatedAt = Date.now(); }, $signature: 1 }; U.TimeEditDetailsState_build_closure3.prototype = { call$1: function(duration) { var t1 = this.$this; t1.setState$1(new U.TimeEditDetailsState_build__closure(t1, duration, this.viewModel)); }, $signature: 45 }; U.TimeEditDetailsState_build__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._taskTime.copyWithDuration$1(this.duration); t1._taskTime = t2; this.viewModel.onUpdatedTaskTime.call$2(t2, t1._widget.index); t1._durationUpdateAt = Date.now(); }, $signature: 1 }; U.TimeEditDetailsState_build_closure4.prototype = { call$0: function() { var t1 = this.$this._widget; t1.viewModel.onRemoveTaskTimePressed.call$1(t1.index); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; U.TimeEditDetailsState_build_closure5.prototype = { call$0: function() { this.$this._widget.viewModel.onDoneTaskTimePressed.call$0(); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; M.TaskEditTimesScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.TaskEditTimesScreen_build_closure(), new M.TaskEditTimesScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditTimesVM); } }; M.TaskEditTimesScreen_build_closure0.prototype = { call$1: function(store) { return M.TaskEditTimesVM_TaskEditTimesVM$fromStore(store); }, $signature: 2548 }; M.TaskEditTimesScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new U.TaskEditTimes(viewModel, null); }, $signature: 2549 }; M.TaskEditTimesVM.prototype = { get$company: function() { return this.company; }, get$task: function() { return this.task; } }; M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure.prototype = { call$1: function(index) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.DeleteTaskTime(index)); }, $signature: 173 }; M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.EditTaskTime()); }, $signature: 1 }; M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1.prototype = { call$2: function(taskTime, index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.UpdateTaskTime(index, taskTime)); }, $signature: 661 }; M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.EditTaskTime()); }, $signature: 9 }; B.TaskEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.TaskEditScreen_build_closure(), new B.TaskEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskEditVM); } }; B.TaskEditScreen_build_closure0.prototype = { call$1: function(store) { return B.TaskEditVM_TaskEditVM$fromStore(store); }, $signature: 2550 }; B.TaskEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new X.TaskEdit(viewModel, new D.ValueKey(viewModel.task.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2551 }; B.TaskEditVM.prototype = { get$task: function() { return this.task; }, get$company: function() { return this.company; } }; B.TaskEditVM_TaskEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, D.TaskEntity_TaskEntity(_null, _null, _null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; B.TaskEditVM_TaskEditVM$fromStore_closure1.prototype = { call$0: function() { var taskTimes, t3, t1 = this.task, t2 = this.store; if (t1.get$isRunning()) { taskTimes = t1.getTaskTimes$0(); t1 = taskTimes.length; t3 = J.get$stop$z(C.JSArray_methods.firstWhere$1(taskTimes, new B.TaskEditVM_TaskEditVM$fromStore__closure())); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.UpdateTaskTime(t1 - 1, t3)); } else { t1 = D.TaskTime_TaskTime(null, null); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new U.AddTaskTime(t1, true)); } }, $signature: 1 }; B.TaskEditVM_TaskEditVM$fromStore__closure.prototype = { call$1: function(time) { return time.endDate == null; }, $signature: 182 }; B.TaskEditVM_TaskEditVM$fromStore_closure.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new B.TaskEditVM_TaskEditVM$fromStore__closure0(this.store, this.state).call$0(); }, $signature: 14 }; B.TaskEditVM_TaskEditVM$fromStore__closure0.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, task = t1.get$_store$_state().uiState.taskUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); if (!task.get$areTimesValid()) { E.showDialog(true, new B.TaskEditVM_TaskEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } t2 = new P._Future($.Zone__current, type$._Future_legacy_TaskEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.SaveTaskRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaskEntity), task, true)); return t2.then$1$1(0, new B.TaskEditVM_TaskEditVM$fromStore___closure0(task, t3, this.state, t1, $navigator), type$.Null).catchError$1(new B.TaskEditVM_TaskEditVM$fromStore___closure1()); }, $signature: 31 }; B.TaskEditVM_TaskEditVM$fromStore___closure.prototype = { call$1: function(context) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localization.localeCode), "task_errors"); return new M.ErrorDialog(t1 == null ? "" : t1, false, null); }, $signature: 21 }; B.TaskEditVM_TaskEditVM$fromStore___closure0.prototype = { call$1: function(savedTask) { var _this = this, _s10_ = "/task/view", t1 = _this.task, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_task"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedTask(); M.showToast(t2); t2 = _this.state.prefState; if (t2.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s10_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s10_, t1, t1); } else t2.pop$1(0, savedTask); } else { M.viewEntity(false, savedTask, null, false); if (t2.isEditorFullScreen$1(C.EntityType_task)) { t1 = $.$get$navigatorKey(); t1.toString; M.editEntity(null, $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), savedTask, null); } } }, $signature: 139 }; B.TaskEditVM_TaskEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new B.TaskEditVM_TaskEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; B.TaskEditVM_TaskEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.KanbanTaskCard.prototype = { createState$0: function() { return new O._KanbanTaskCardState(C._StateLifecycle_0); }, onSavePressed$2: function(arg0, arg1) { return this.onSavePressed.call$2(arg0, arg1); }, onCancelPressed$0: function() { return this.onCancelPressed.call$0(); }, get$task: function() { return this.task; } }; O._KanbanTaskCardState.prototype = { initState$0: function() { var task, _this = this; _this.super$State$initState(); task = _this._widget.task; _this._kanban_card$_description = task.description; _this._isEditing = task.get$isNew(); }, build$1: function(_, context) { var t4, t5, t6, project, client, textColor, color, isDragging, startLabel, t7, t8, t9, t10, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), task = _this._widget.task, t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = t4.$index(t2, t3).projectState; t6 = task.projectId; project = t5.$get$1(0, t6); client = t4.$index(t2, t3).clientState.$get$1(0, task.clientId); textColor = K.Theme_of(context).textTheme.bodyText1.color; t5 = t6.length !== 0; color = t5 ? C.List_YVI[C.JSInt_methods.$mod(J.indexOf$2$asx(t4.$index(t2, t3).projectState.list._list, t6, 0), 18)] : C.MaterialColor_Map_HFpTk_4288585374; isDragging = context.findAncestorStateOfType$1$0(type$.legacy_KanbanViewState).isDragging; if (_this._isEditing && !isDragging) { t2 = S.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _this._kanban_card$_description, _null, false, false, _null, _null, _null, 10, 2, false, new O._KanbanTaskCardState_build_closure(_this), _null, _null, true, _null, _null, C.TextAlign_4, _null); t3 = T.SizedBox$(_null, 12, _null); t4 = t1.get$cancel(t1); t5 = _this._widget.isSaving ? _null : new O._KanbanTaskCardState_build_closure0(_this, context, t1); t6 = type$.JSArray_legacy_Widget; return V.Card$(new T.Padding(C.EdgeInsets_8_0_8_8, T.Column$(H.setRuntimeTypeInfo([t2, t3, T.Row$(H.setRuntimeTypeInfo([new X.AppTextButton(t4, new O._KanbanTaskCardState_build_closure1(_this, task), false, _null, _null), new T.Padding(C.EdgeInsets_8_0_0_0, D.ElevatedButton$(L.Text$(t1.get$save(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), t5, _null), _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null)], t6), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), _null, _null, _null, _null, true, _null); } if (task.get$isRunning()) startLabel = t1.get$stop(t1); else startLabel = task.getTaskTimes$0().length === 0 ? t1.get$start(t1) : t1.get$resume(t1); t2 = K.BorderRadius$circular(2); t3 = _this._widget; t4 = t3.isCorrectOrder ? 1 : 0.7; t3 = t3.isSelected && state.prefState.appLayout === C.AppLayout_desktop ? state.get$accentColor() : C.Color_0; t6 = K.BorderRadius$circular(2); t7 = K.Theme_of(context).backgroundColor; t8 = type$.JSArray_legacy_Widget; t9 = H.setRuntimeTypeInfo([T.Expanded$(L.Text$(task.description, _null, 3, _null, _null, _null, _null, _null, _null, _null), 1)], t8); if (task.get$isRunning()) { t10 = state.prefState.appLayout === C.AppLayout_desktop ? new V.EdgeInsets(4, 0, 1, 0) : new V.EdgeInsets(8, 4, 10, 0); t9.push(new T.Padding(t10, L.Icon$(C.IconData_58571_MaterialIcons_null_false, state.get$accentColor(), 16), _null)); } t9 = H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_8_8_8_4, T.Row$(t9, C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)], t8); if (_this._kanban_card$_isHovered && !isDragging) { t5 = M.Container$(_null, T.Center$(L.Text$(t1.get$view(t1), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, 24, _null, _null, _null, _null, _null, _null); t5 = T.Expanded$(R.InkWell$(false, _null, true, t5, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, task.get$isNew() ? _null : new O._KanbanTaskCardState_build_closure2(state, task), _null, _null, _null, _null, _null), 1); t1 = M.Container$(_null, T.Center$(L.Text$(t1.get$edit(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, 28, _null, _null, _null, _null, _null, _null); t9.push(T.Row$(H.setRuntimeTypeInfo([t5, T.Expanded$(R.InkWell$(false, _null, true, t1, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, task.get$isNew() ? _null : new O._KanbanTaskCardState_build_closure3(context, task), _null, _null, _null, _null, _null), 1), T.Expanded$(R.InkWell$(false, _null, true, M.Container$(_null, T.Center$(L.Text$(startLabel, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null), C.Clip_0, _null, _null, _null, _null, 24, _null, _null, _null, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new O._KanbanTaskCardState_build_closure4(task), _null, _null, _null, _null, _null), 1)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_5, C.MainAxisSize_1, _null)); } else { t8 = H.setRuntimeTypeInfo([T.Expanded$(new E.LiveText(_null, new O._KanbanTaskCardState_build_closure5(task, client, project), A.TextStyle$(_null, _null, P.Color$fromARGB(153, textColor.get$value(textColor) >>> 16 & 255, textColor.get$value(textColor) >>> 8 & 255, textColor.get$value(textColor) & 255), _null, _null, _null, _null, _null, _null, _null, _null, 12, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null), 1)], t8); if (J.get$isNotEmpty$asx(task.documents._list)) t8.push(new T.Padding(C.EdgeInsets_8_0_0_0, L.Icon$(C._MdiIconData_EuK3, _null, 16), _null)); if (state.prefState.appLayout === C.AppLayout_mobile) t8.push(Z.PopupMenuButton$(_null, _null, true, _null, _null, new O._KanbanTaskCardState_build_closure6(t1, startLabel), new O._KanbanTaskCardState_build_closure7(startLabel, task, t1, context), C.EdgeInsets_8_8_8_8, _null, type$.legacy_String)); else if (t5) t8.push(new T.Padding(C.EdgeInsets_8_0_0_0, L.Icon$(C._MdiIconData_4ax, color, 16), _null)); t9.push(new T.Padding(C.EdgeInsets_8_0_8_12, T.Row$(t8, C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null)); } return new T.MouseRegion(_null, new O._KanbanTaskCardState_build_closure8(_this, state), new O._KanbanTaskCardState_build_closure9(_this), C.C__DeferringMouseCursor, true, R.InkWell$(false, t2, true, T.Opacity$(false, V.Card$(T.Column$(t9, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t7, _null, _null, true, new X.RoundedRectangleBorder(t6, new Y.BorderSide(t3, 1, C.BorderStyle_1))), t4), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new O._KanbanTaskCardState_build_closure10(_this), _null, _null, _null, _null, _null), _null); } }; O._KanbanTaskCardState_build_closure.prototype = { call$1: function(value) { return this.$this._kanban_card$_description = value; }, $signature: 15 }; O._KanbanTaskCardState_build_closure1.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O._KanbanTaskCardState_build__closure3(t1, this.task)); }, $signature: 1 }; O._KanbanTaskCardState_build__closure3.prototype = { call$0: function() { var t1 = this.$this; t1._isEditing = false; if (this.task.get$isNew()) t1._widget.onCancelPressed$0(); }, $signature: 1 }; O._KanbanTaskCardState_build_closure0.prototype = { call$0: function() { var t2, completer = O.snackBarCompleter(this.context, this.localization.get$updatedTask(), false, type$.legacy_TaskEntity), t1 = this.$this; completer.future.then$1$1(0, new O._KanbanTaskCardState_build__closure4(t1), type$.Null); t2 = t1._widget; t2.toString; t2.onSavePressed$2(completer, J.trim$0$s(t1._kanban_card$_description)); }, $signature: 1 }; O._KanbanTaskCardState_build__closure4.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new O._KanbanTaskCardState_build___closure(t1)); }, $signature: 139 }; O._KanbanTaskCardState_build___closure.prototype = { call$0: function() { this.$this._isEditing = false; }, $signature: 1 }; O._KanbanTaskCardState_build_closure8.prototype = { call$1: function($event) { var t1; if (this.state.prefState.appLayout === C.AppLayout_desktop) { t1 = this.$this; t1.setState$1(new O._KanbanTaskCardState_build__closure1(t1)); } }, $signature: 2552 }; O._KanbanTaskCardState_build__closure1.prototype = { call$0: function() { return this.$this._kanban_card$_isHovered = true; }, $signature: 19 }; O._KanbanTaskCardState_build_closure9.prototype = { call$1: function($event) { var t1 = this.$this; return t1.setState$1(new O._KanbanTaskCardState_build__closure0(t1)); }, $signature: 312 }; O._KanbanTaskCardState_build__closure0.prototype = { call$0: function() { return this.$this._kanban_card$_isHovered = false; }, $signature: 19 }; O._KanbanTaskCardState_build_closure2.prototype = { call$0: function() { var t1 = this.task; if (this.state.uiState.taskUIState.selectedId === t1.id) M.viewEntityById(false, "", C.EntityType_task, null, false, false); else M.viewEntity(false, t1, null, false); }, $signature: 1 }; O._KanbanTaskCardState_build_closure3.prototype = { call$0: function() { M.editEntity(null, this.context, this.task, null); }, $signature: 1 }; O._KanbanTaskCardState_build_closure4.prototype = { call$0: function() { var t1 = this.task, t2 = t1.get$isRunning() ? C.EntityAction_stop : C.EntityAction_start; M.handleEntitiesActions(H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_BaseEntity), t2, false); }, $signature: 1 }; O._KanbanTaskCardState_build_closure5.prototype = { call$0: function() { var t1 = Y.formatDuration(this.task.calculateDuration$0(), true), t2 = this.client; t1 = J.$add$ansx(t1, !t2.get$isNew() ? " \u2022 " + t2.displayName : ""); t2 = this.project; return t1 + (!t2.get$isNew() ? " \u2022 " + t2.name : ""); }, "call*": "call$0", $requiredArgCount: 0, $signature: 150 }; O._KanbanTaskCardState_build_closure6.prototype = { call$1: function(context) { var t1 = this.localization, t2 = type$.MappedListIterable_of_legacy_String_and_legacy_PopupMenuItem_legacy_String; return P.List_List$of(new H.MappedListIterable(H.setRuntimeTypeInfo([t1.get$view(t1), t1.get$edit(), this.startLabel], type$.JSArray_legacy_String), new O._KanbanTaskCardState_build__closure2(t1), t2), true, t2._eval$1("ListIterable.E")); }, $signature: 532 }; O._KanbanTaskCardState_build__closure2.prototype = { call$1: function(value) { var _null = null; return Z.PopupMenuItem$(L.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), value, type$.legacy_String); }, $signature: 598 }; O._KanbanTaskCardState_build_closure7.prototype = { call$1: function(value) { var t1, t2, _this = this; if (value === _this.startLabel) { t1 = _this.task; t2 = t1.get$isRunning() ? C.EntityAction_stop : C.EntityAction_start; M.handleEntitiesActions(H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_BaseEntity), t2, false); } else { t1 = _this.localization; if (value === t1.get$view(t1)) M.viewEntity(false, _this.task, null, false); else if (value === t1.get$edit()) M.editEntity(null, _this.context, _this.task, null); } }, $signature: 7 }; O._KanbanTaskCardState_build_closure10.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O._KanbanTaskCardState_build__closure(t1)); }, $signature: 1 }; O._KanbanTaskCardState_build__closure.prototype = { call$0: function() { this.$this._isEditing = true; }, $signature: 1 }; D.KanbanStatusCard.prototype = { createState$0: function() { return new D._KanbanStatusCardState(C._StateLifecycle_0); }, onSavePressed$2: function(arg0, arg1) { return this.onSavePressed.call$2(arg0, arg1); } }; D._KanbanStatusCardState.prototype = { initState$0: function() { this.super$State$initState(); this._kanban_status$_name = this._widget.status.name; }, _kanban_status$_onSavePressed$0: function() { var t2, completer, _this = this, t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; completer = O.snackBarCompleter(t2, t1.get$updatedTaskStatus(), false, type$.legacy_TaskStatusEntity); completer.future.then$1$1(0, new D._KanbanStatusCardState__onSavePressed_closure(_this), type$.Null); t1 = _this._widget; t1.toString; t1.onSavePressed$2(completer, J.trim$0$s(_this._kanban_status$_name)); }, build$1: function(_, context) { var t3, t4, t5, _this = this, _null = null, _s10_ = "unassigned", t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, $status = t2.status; if (_this._kanban_status$_isEditing) { t2 = S.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, _null, _this._kanban_status$_name, _null, false, false, _null, _null, _null, 1, 1, false, new D._KanbanStatusCardState_build_closure(_this), _null, new D._KanbanStatusCardState_build_closure0(_this), true, _null, _null, C.TextAlign_4, _null); t3 = T.SizedBox$(_null, 8, _null); t4 = t1.get$cancel(t1); t1 = L.Text$(t1.get$save(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null); t5 = type$.JSArray_legacy_Widget; return new T.Padding(C.EdgeInsets_8_8_8_8, T.Column$(H.setRuntimeTypeInfo([t2, t3, T.Row$(H.setRuntimeTypeInfo([new X.AppTextButton(t4, new D._KanbanStatusCardState_build_closure1(_this), false, _null, _null), new T.Padding(C.EdgeInsets_8_0_0_0, D.ElevatedButton$(t1, _this._widget.isSaving ? _null : _this.get$_kanban_status$_onSavePressed(), _null), _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_1, C.MainAxisSize_1, _null)], t5), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null); } t2 = t2.isCorrectOrder ? 1 : 0.7; if ($status.get$isNew()) { t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), _s10_); if (t1 == null) t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s10_); } else t1 = $status.name; t2 = T.Opacity$(false, L.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t2); t1 = $status.get$isNew() ? _null : new D._KanbanStatusCardState_build_closure2(_this); return R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_8_8_8, t2, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null); } }; D._KanbanStatusCardState__onSavePressed_closure.prototype = { call$1: function(value) { var t1 = this.$this; t1.setState$1(new D._KanbanStatusCardState__onSavePressed__closure(t1)); }, $signature: 238 }; D._KanbanStatusCardState__onSavePressed__closure.prototype = { call$0: function() { this.$this._kanban_status$_isEditing = false; }, $signature: 1 }; D._KanbanStatusCardState_build_closure.prototype = { call$1: function(value) { return this.$this._kanban_status$_name = value; }, $signature: 15 }; D._KanbanStatusCardState_build_closure0.prototype = { call$1: function(context) { return this.$this._kanban_status$_onSavePressed$0(); }, $signature: 29 }; D._KanbanStatusCardState_build_closure1.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new D._KanbanStatusCardState_build__closure0(t1)); }, $signature: 1 }; D._KanbanStatusCardState_build__closure0.prototype = { call$0: function() { this.$this._kanban_status$_isEditing = false; }, $signature: 1 }; D._KanbanStatusCardState_build_closure2.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new D._KanbanStatusCardState_build__closure(t1)); }, $signature: 1 }; D._KanbanStatusCardState_build__closure.prototype = { call$0: function() { this.$this._kanban_status$_isEditing = true; }, $signature: 1 }; O.KanbanView.prototype = { createState$0: function() { return new O.KanbanViewState(new Q.BoardViewController(), C._StateLifecycle_0); } }; O.KanbanViewState.prototype = { initState$0: function() { this.super$State$initState(); this._initBoard$0(); }, _initBoard$0: function() { var _this = this, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t2 = J.where$1$ax(J.$index$asx(t1._list, t2).taskStatusState.list._list, new O.KanbanViewState__initBoard_closure(state)); t2 = P.List_List$of(t2, true, t2.$ti._eval$1("Iterable.E")); _this._statuses = t2; C.JSArray_methods.sort$1(t2, new O.KanbanViewState__initBoard_closure0(state)); _this._kanban_view$_tasks = P.LinkedHashMap_LinkedHashMap$_empty(type$.legacy_String, type$.legacy_List_legacy_String); J.forEach$1$ax(viewModel.taskList, new O.KanbanViewState__initBoard_closure1(_this, state)); _this._kanban_view$_tasks.forEach$1(0, new O.KanbanViewState__initBoard_closure2(_this, state)); }, _onBoardChanged$0: function() { var t2, completer, _this = this, t1 = _this._framework$_element; t1.toString; t1 = L.Localizations_of(t1, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = _this._framework$_element; t2.toString; completer = O.snackBarCompleter(t2, t1.get$updatedTaskStatus(), false, type$.Null); completer.future.catchError$1(new O.KanbanViewState__onBoardChanged_closure(_this)); _this._widget.viewModel.onBoardChanged.call$3(completer, _this._statuses, _this._kanban_view$_tasks); }, build$1: function(_, context) { var color, t1, t2, filteredStatusIds, _this = this, _null = null, state = _this._widget.viewModel.state; if (state.prefState.enableDarkMode) color = K.Theme_of(context).cardColor; else { t1 = C.Map_HFpTk.$index(0, 300); t1.toString; color = t1; } t1 = _this._statuses; t1.toString; t2 = H._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); filteredStatusIds = P.List_List$of(new H.WhereIterable(t1, new O.KanbanViewState_build_closure(_this), t2), true, t2._eval$1("Iterable.E")); t2 = H._arrayInstanceType(filteredStatusIds)._eval$1("MappedListIterable<1,BoardList*>"); t2 = H.setRuntimeTypeInfo([new N.BoardView(P.List_List$of(new H.MappedListIterable(filteredStatusIds, new O.KanbanViewState_build_closure0(_this, state, filteredStatusIds, color, context), t2), true, t2._eval$1("ListIterable.E")), _this._boardViewController, 0, _null)], type$.JSArray_legacy_Widget); if (state.isLoading || state.isSaving) t2.push(U.LinearProgressIndicator$()); return new T.Padding(C.EdgeInsets_0_8_0_8, T.Stack$(C.Alignment_0_m1, t2, C.Clip_1, C.StackFit_0, _null, _null), _null); } }; O.KanbanViewState__initBoard_closure.prototype = { call$1: function(statusId) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).taskStatusState.$get$1(0, statusId); return !t2.get$isArchived() && !t2.isDeleted; }, $signature: 16 }; O.KanbanViewState__initBoard_closure0.prototype = { call$2: function(statusIdA, statusIdB) { var t3, statusA, statusB, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); statusA = t3.$index(t1, t2).taskStatusState.$get$1(0, statusIdA); statusB = t3.$index(t1, t2).taskStatusState.$get$1(0, statusIdB); t1 = statusA.statusOrder; t2 = statusB.statusOrder; if (t1 == t2) return C.JSInt_methods.compareTo$1(statusB.updatedAt, statusA.updatedAt); else { if (t1 == null) t1 = 99999; return C.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); } }, $signature: 18 }; O.KanbanViewState__initBoard_closure1.prototype = { call$1: function(taskId) { var t3, task, $status, statusId, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); task = J.$index$asx(t3.$index(t1, t2).taskState.map._map$_map, taskId); $status = t3.$index(t1, t2).taskStatusState.$get$1(0, task.statusId); statusId = $status.get$isNew() ? "" : $status.id; t1 = this.$this; if (!t1._kanban_view$_tasks.containsKey$1(0, statusId)) t1._kanban_view$_tasks.$indexSet(0, statusId, H.setRuntimeTypeInfo([], type$.JSArray_legacy_String)); J.add$1$ax(t1._kanban_view$_tasks.$index(0, statusId), task.id); }, $signature: 7 }; O.KanbanViewState__initBoard_closure2.prototype = { call$2: function(key, value) { J.sort$1$ax(this.$this._kanban_view$_tasks.$index(0, key), new O.KanbanViewState__initBoard__closure(this.state)); }, $signature: 451 }; O.KanbanViewState__initBoard__closure.prototype = { call$2: function(taskIdA, taskIdB) { var t3, taskA, taskB, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t1 = t1.userCompanyStates._list; t3 = J.getInterceptor$asx(t1); taskA = t3.$index(t1, t2).taskState.$get$1(0, taskIdA); taskB = t3.$index(t1, t2).taskState.$get$1(0, taskIdB); t1 = taskA.statusOrder; t2 = taskB.statusOrder; if (t1 == t2) return C.JSInt_methods.compareTo$1(taskB.updatedAt, taskA.updatedAt); else { if (t1 == null) t1 = 99999; return C.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); } }, "call*": "call$2", $requiredArgCount: 2, $signature: 18 }; O.KanbanViewState__onBoardChanged_closure.prototype = { call$1: function(error) { this.$this._initBoard$0(); }, $signature: 3 }; O.KanbanViewState_build_closure.prototype = { call$1: function(statusId) { return statusId.length !== 0 || this.$this._kanban_view$_tasks.containsKey$1(0, statusId); }, $signature: 16 }; O.KanbanViewState_build_closure0.prototype = { call$1: function(statusId) { var t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.state, t2 = t1.uiState.selectedCompanyIndex, $status = J.$index$asx(t1.userCompanyStates._list, t2).taskStatusState.$get$1(0, statusId), hasCorectOrder = statusId.length === 0 || $status.statusOrder === C.JSArray_methods.indexOf$1(_this.filteredStatusIds, $status.id); t2 = $status.get$isNew(); t3 = _this.color; t4 = _this.$this; t5 = t1.isSaving; t6 = H.setRuntimeTypeInfo([T.Expanded$(new D.KanbanStatusCard($status, new O.KanbanViewState_build__closure(t4, statusId), hasCorectOrder, t5, _null), 1)], type$.JSArray_legacy_Widget); t7 = t4._newTask; t8 = t7 == null ? _null : t7.statusId; t9 = $status.id; t5 = t8 === t9 ? O.KanbanTaskCard$(true, t4.isDragging, t5, false, new O.KanbanViewState_build__closure0(t4), new O.KanbanViewState_build__closure1(t4, $status), t7) : new T.Padding(C.EdgeInsets_8_2_0_4, U.TextButton$(false, L.Text$(L.Localizations_of(_this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$newTask(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O.KanbanViewState_build__closure2(t4, $status), _null), _null); t9 = t4._kanban_view$_tasks.$index(0, t9); t7 = t9 == null ? H.setRuntimeTypeInfo([], type$.JSArray_legacy_String) : t9; return O.BoardList$(t3, _null, !t2, new T.Align(C.Alignment_m1_0, _null, _null, t5, _null), t6, t3, _null, J.map$1$1$ax(t7, new O.KanbanViewState_build__closure3(t4), type$.legacy_TaskEntity).map$1$1(0, new O.KanbanViewState_build__closure4(t4, t1, $status, statusId), type$.legacy_BoardItem).toList$0(0), new O.KanbanViewState_build__closure5(t4), _null, _null); }, $signature: 2553 }; O.KanbanViewState_build__closure5.prototype = { call$2: function(endIndex, startIndex) { var t1; if (endIndex == startIndex) return; t1 = this.$this; t1.setState$1(new O.KanbanViewState_build___closure(t1, startIndex, endIndex)); t1._onBoardChanged$0(); }, $signature: 141 }; O.KanbanViewState_build___closure.prototype = { call$0: function() { var t4, t1 = this.$this, t2 = t1._statuses, t3 = this.startIndex, $status = t2[t3]; (t2 && C.JSArray_methods).removeAt$1(t2, t3); t3 = t1._statuses; t2 = this.endIndex; t3 = P.List_List$of((t3 && C.JSArray_methods).sublist$2(t3, 0, t2), true, type$.legacy_String); t3.push($status); t4 = t1._statuses; C.JSArray_methods.addAll$1(t3, (t4 && C.JSArray_methods).sublist$1(t4, t2)); t1._statuses = t3; }, $signature: 1 }; O.KanbanViewState_build__closure.prototype = { call$2: function(completer, $name) { var t1 = this.$this, t2 = t1._statuses, t3 = this.statusId, statusOrder = (t2 && C.JSArray_methods).indexOf$1(t2, t3); t1._widget.viewModel.onSaveStatusPressed.call$4(completer, t3, $name, statusOrder); }, $signature: 2554 }; O.KanbanViewState_build__closure1.prototype = { call$2: function(completer, description) { var t1 = this.$this, t2 = this.status.id, t3 = t1._kanban_view$_tasks.$index(0, t2), statusOrder = t3 == null ? null : J.get$length$asx(t3); if (statusOrder == null) statusOrder = 0; t1._widget.viewModel.onSaveTaskPressed.call$5(completer, t1._newTask.id, t2, description, statusOrder); }, $signature: 660 }; O.KanbanViewState_build__closure0.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O.KanbanViewState_build___closure5(t1)); }, $signature: 1 }; O.KanbanViewState_build___closure5.prototype = { call$0: function() { this.$this._newTask = null; }, $signature: 1 }; O.KanbanViewState_build__closure2.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O.KanbanViewState_build___closure4(t1, this.status)); }, $signature: 1 }; O.KanbanViewState_build___closure4.prototype = { call$0: function() { var _null = null, t1 = this.$this; t1._newTask = D.TaskEntity_TaskEntity(_null, _null, _null, t1._widget.viewModel.state, _null).rebuild$1(new O.KanbanViewState_build____closure3(this.status)); }, $signature: 1 }; O.KanbanViewState_build____closure3.prototype = { call$1: function(b) { b.get$_task_model$_$this()._task_model$_statusId = this.status.id; return b; }, $signature: 46 }; O.KanbanViewState_build__closure3.prototype = { call$1: function(taskId) { var t1 = this.$this._widget.viewModel.state, t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; return J.$index$asx(t2._list, t1).taskState.$get$1(0, taskId); }, $signature: 211 }; O.KanbanViewState_build__closure4.prototype = { call$1: function(task) { var t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this, t2 = t1._widget.viewModel, t3 = task.id, isVisible = J.contains$1$asx(t2.filteredTaskList, t3) || task.get$isNew(); t2 = task.get$isNew(); if (!isVisible) t3 = T.SizedBox$(_null, _null, _null); else { t4 = _this.state; t5 = t1.isDragging; t6 = t4.uiState; t6 = t6.get$isEditing() ? t6.taskUIState.editing.id : t6.taskUIState.selectedId; t7 = _this.status; t8 = task.statusOrder === J.indexOf$1$asx(t1._kanban_view$_tasks.$index(0, t7.id), t3) && task.statusId === _this.statusId; t7 = O.KanbanTaskCard$(t8, t5, t4.isSaving, t6 === t3, new O.KanbanViewState_build___closure0(t1, task), new O.KanbanViewState_build___closure1(t1, t7, task), task); t3 = t7; } return D.BoardItem$(_null, !t2, _null, t3, _null, new O.KanbanViewState_build___closure2(t1, _this.status), new O.KanbanViewState_build___closure3(t1), _null); }, $signature: 2556 }; O.KanbanViewState_build___closure1.prototype = { call$2: function(completer, description) { var t1 = this.$this, t2 = this.status.id, t3 = this.task.id, statusOrder = J.indexOf$1$asx(t1._kanban_view$_tasks.$index(0, t2), t3); t1._widget.viewModel.onSaveTaskPressed.call$5(completer, t3, t2, description, statusOrder); }, $signature: 660 }; O.KanbanViewState_build___closure0.prototype = { call$0: function() { if (this.task.get$isNew()) { var t1 = this.$this; t1.setState$1(new O.KanbanViewState_build____closure2(t1)); } }, $signature: 1 }; O.KanbanViewState_build____closure2.prototype = { call$0: function() { this.$this._newTask = null; }, $signature: 1 }; O.KanbanViewState_build___closure3.prototype = { call$3: function(listIndex, itemIndex, state) { var t1 = this.$this; t1.setState$1(new O.KanbanViewState_build____closure(t1)); }, $signature: 2557 }; O.KanbanViewState_build____closure.prototype = { call$0: function() { return this.$this.isDragging = true; }, $signature: 19 }; O.KanbanViewState_build___closure2.prototype = { call$5: function(listIndex, itemIndex, oldListIndex, oldItemIndex, state) { var t2, oldStatusId, newStatusId, t1 = this.$this; t1.setState$1(new O.KanbanViewState_build____closure0(t1)); if (listIndex == oldListIndex && itemIndex == oldItemIndex) return; t2 = t1._statuses; oldStatusId = t2[oldListIndex]; newStatusId = t2[listIndex]; t1.setState$1(new O.KanbanViewState_build____closure1(t1, oldStatusId, J.$index$asx(t1._kanban_view$_tasks.$index(0, this.status.id), oldItemIndex), newStatusId, itemIndex)); t1._onBoardChanged$0(); }, $signature: 2558 }; O.KanbanViewState_build____closure0.prototype = { call$0: function() { return this.$this.isDragging = false; }, $signature: 19 }; O.KanbanViewState_build____closure1.prototype = { call$0: function() { var t3, t4, t5, _this = this, t1 = _this.$this, t2 = _this.oldStatusId; if (t1._kanban_view$_tasks.containsKey$1(0, t2) && J.contains$1$asx(t1._kanban_view$_tasks.$index(0, t2), _this.taskId)) J.remove$1$ax(t1._kanban_view$_tasks.$index(0, t2), _this.taskId); t2 = _this.newStatusId; if (!t1._kanban_view$_tasks.containsKey$1(0, t2)) t1._kanban_view$_tasks.$indexSet(0, t2, H.setRuntimeTypeInfo([], type$.JSArray_legacy_String)); t3 = t1._kanban_view$_tasks; t4 = _this.itemIndex; t5 = P.List_List$of(J.sublist$2$ax(t3.$index(0, t2), 0, t4), true, type$.legacy_String); t5.push(_this.taskId); C.JSArray_methods.addAll$1(t5, J.sublist$1$ax(t1._kanban_view$_tasks.$index(0, t2), t4)); t3.$indexSet(0, t2, t5); }, $signature: 1 }; T.KanbanViewBuilder.prototype = { createState$0: function() { return new T._KanbanViewBuilderState(C._StateLifecycle_0); } }; T._KanbanViewBuilderState.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T._KanbanViewBuilderState_build_closure(), T.kanban_view_vm_KanbanVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_KanbanVM); } }; T._KanbanViewBuilderState_build_closure.prototype = { call$2: function(context, viewModel) { var t3, state = viewModel.state, t1 = state.userCompanyStates, t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); return new O.KanbanView(viewModel, new D.ValueKey("__" + t3.$index(t1, t2).userCompany.company.id + "_" + t3.$index(t1, t2).lastUpdated + "_" + H.S(J.get$length$asx(viewModel.filteredTaskList)) + "__", type$.ValueKey_legacy_String)); }, $signature: 2559 }; T.KanbanVM.prototype = {}; T.KanbanVM_fromStore_closure.prototype = { call$3: function(completer, statusIds, taskIds) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortTasksRequest(completer, statusIds, taskIds)); }, $signature: 2560 }; T.KanbanVM_fromStore_closure1.prototype = { call$4: function(completer, statusId, $name, statusOrder) { var t1 = {}, t2 = this.state, t3 = t2.uiState.selectedCompanyIndex, $status = J.$index$asx(t2.userCompanyStates._list, t3).taskStatusState.$get$1(0, statusId); t1.status = $status; $status = $status.rebuild$1(new T.KanbanVM_fromStore__closure(t1, $name, statusOrder)); t1.status = $status; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.SaveTaskStatusRequest(completer, $status)); }, $signature: 2561 }; T.KanbanVM_fromStore__closure.prototype = { call$1: function(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_name = this.name; t1 = this._box_0; t1 = t1.status.get$isNew() ? this.statusOrder : t1.status.statusOrder; b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, $signature: 145 }; T.KanbanVM_fromStore_closure0.prototype = { call$5: function(completer, taskId, statusId, description, statusOrder) { var t5, task, t6, t7, project, _null = null, t1 = {}, t2 = this.state, t3 = t2.uiState, t4 = t3.selectedCompanyIndex; t2 = t2.userCompanyStates._list; t5 = J.getInterceptor$asx(t2); task = t5.$index(t2, t4).taskState.$get$1(0, taskId); t1.task = task; task = task.rebuild$1(new T.KanbanVM_fromStore__closure0(t1, description, statusOrder, statusId)); t1.task = task; if (task.get$isNew()) { t6 = t3.filterStack._list; t7 = J.getInterceptor$asx(t6); if ((t7.get$isEmpty(t6) ? _null : t7.get$last(t6).get$entityType()) === C.EntityType_client) t1.task = t1.task.rebuild$1(new T.KanbanVM_fromStore__closure1(t3)); else if ((t7.get$isEmpty(t6) ? _null : t7.get$last(t6).get$entityType()) === C.EntityType_project) { t2 = t5.$index(t2, t4).projectState; if (t7.get$isEmpty(t6)) t4 = _null; else { t4 = t7.get$last(t6); t4 = t4.get$id(t4); } project = t2.$get$1(0, t4); t1.task = t1.task.rebuild$1(new T.KanbanVM_fromStore__closure2(t3, project)); } else if ((t7.get$isEmpty(t6) ? _null : t7.get$last(t6).get$entityType()) === C.EntityType_user) t1.task = t1.task.rebuild$1(new T.KanbanVM_fromStore__closure3(t3)); } t1 = t1.task; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskRequest(completer, t1, false)); }, $signature: 2562 }; T.KanbanVM_fromStore__closure0.prototype = { call$1: function(b) { var t1, _this = this; b.get$_task_model$_$this()._task_model$_description = _this.description; t1 = _this._box_1; t1 = t1.task.get$isNew() ? _this.statusOrder : t1.task.statusOrder; b.get$_task_model$_$this()._statusOrder = t1; b.get$_task_model$_$this()._task_model$_statusId = _this.statusId; return b; }, $signature: 46 }; T.KanbanVM_fromStore__closure1.prototype = { call$1: function(b) { var t1 = this.uiState.filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t1 = null; else { t1 = t2.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 46 }; T.KanbanVM_fromStore__closure2.prototype = { call$1: function(b) { var t1 = this.uiState.filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t1 = null; else { t1 = t2.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_projectId = t1; t1 = this.project.clientId; b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, $signature: 46 }; T.KanbanVM_fromStore__closure3.prototype = { call$1: function(b) { var t1 = this.uiState.filterStack._list, t2 = J.getInterceptor$asx(t1); if (t2.get$isEmpty(t1)) t1 = null; else { t1 = t2.get$last(t1); t1 = t1.get$id(t1); } b.get$_task_model$_$this()._task_model$_assignedUserId = t1; return b; }, $signature: 46 }; U.TaskListItem.prototype = { build$1: function(_, context) { var t4, t5, client, t6, t7, filterMatch, listUIState, isInMultiselect, showCheckbox, t8, isChecked, textStyle, textColor, subtitle, startStopButton, _this = this, _null = null, t1 = {}, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, taskUIState = uiState.taskUIState, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = _this.task; client = t4.$index(t2, t3).clientState.$get$1(0, t5.clientId); t6 = _this.filter; if (t6 != null && t6.length !== 0) { t7 = t5.matchesFilterValue$1(t6); filterMatch = t7 == null ? client.matchesFilterValue$1(t6) : t7; } else filterMatch = _null; listUIState = taskUIState.listUIState; t6 = listUIState.selectedIds; isInMultiselect = t6 != null; showCheckbox = _this.onCheckboxChanged != null || isInMultiselect; t7 = _this.isDismissible; if (t7) if (isInMultiselect) { t8 = t5.id; t6 = J.contains$1$asx(t6._list, t8); isChecked = t6; } else isChecked = false; else isChecked = _this.isChecked; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); textColor = K.Theme_of(context).textTheme.bodyText1.color; t6 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); subtitle = client.displayName; t1.subtitle = subtitle; t8 = t5.projectId; if (t8.length !== 0) t1.subtitle = subtitle + (" \u2022 " + t4.$index(t2, t3).projectState.$get$1(0, t8).name); if (!t7) startStopButton = T.SizedBox$(_null, _null, _null); else { t2 = t5.invoiceId.length !== 0; if (t2) t3 = T.SizedBox$(_null, _null, _null); else t3 = L.Icon$(Q.getEntityActionIcon(t5.get$isRunning() ? C.EntityAction_stop : C.EntityAction_start), _null, _null); startStopButton = B.IconButton$(C.Alignment_0_0, _null, _null, true, t3, 24, t2 ? _null : new U.TaskListItem_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, C.VisualDensity_m2_m2); } if (D.getLayout(context) === C.AppLayout_desktop) { t2 = t5.id; t2 = t2 === (uiState.get$isEditing() ? taskUIState.editing.id : taskUIState.selectedId); } else t2 = false; t3 = store.get$_store$_state(); t4 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t4._list, t3).userCompany, t5, new A.LayoutBuilder(new U.TaskListItem_build_closure0(t1, _this, showCheckbox, listUIState, isChecked, state, textStyle, filterMatch, textColor, new E.LiveText(_null, new U.TaskListItem_build_closure1(_this, context), textStyle, _null), startStopButton, t6), _null), t2, _this.showCheckbox, t7, _null); }, get$task: function() { return this.task; } }; U.TaskListItem_build_closure1.prototype = { call$0: function() { return Y.formatNumber(C.JSInt_methods._tdivFast$1(this.$this.task.calculateDuration$0()._duration, 1000000), this.context, null, null, C.FormatNumberType_6, true, null, false); }, "call*": "call$0", $requiredArgCount: 0, $signature: 150 }; U.TaskListItem_build_closure.prototype = { call$0: function() { var t1 = this.$this.task, t2 = t1.get$isRunning() ? C.EntityAction_stop : C.EntityAction_start; M.handleEntitiesActions(H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_BaseEntity), t2, false); return null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; U.TaskListItem_build_closure0.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new U.TaskListItem_build__closure(t1), false, _this.isChecked), _null), _null); else { t2 = t1.task; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new U.TaskListItem_build__closure0(t1)); t2 = t4; } t3 = t1.task; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t8 = t3.description; t4 = L.Text$(t8 + (J.get$isNotEmpty$asx(t3.documents._list) ? " \ud83d\udcce" : ""), _null, 1, C.TextOverflow_2, _null, _null, t4, _null, _null, _null); t8 = _this._box_0.subtitle; t9 = _this.textColor; t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_16_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, T.Expanded$(T.Column$(H.setRuntimeTypeInfo([t4, L.Text$(t8, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t9.get$value(t9) >>> 16 & 255, t9.get$value(t9) >>> 8 & 255, t9.get$value(t9) & 255)), _null, _null, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 8), _this.duration, T.SizedBox$(_null, _null, 24), new V.EntityStatusChip(t3, 105, _null), T.SizedBox$(_null, _null, 8), _this.startStopButton], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new U.TaskListItem_build__closure1(t1, context), new U.TaskListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new U.TaskListItem_build__closure3(t1), false, _this.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.task; t5 = t4.description; if (t5.length === 0) t5 = t4.number; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(t4.documents._list) ? " \ud83d\udcce" : ""), _null, 1, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), _this.duration], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; t5 = T.Expanded$(T.Column$(H.setRuntimeTypeInfo([L.Text$(t5 == null ? _this._box_0.subtitle : t5, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null), new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1); if (t4.get$isRunning()) t7 = _this.localization.get$running(); else { t7 = t4.invoiceId; if (t7.length !== 0) t7 = _this.localization.get$invoiced(); else { t7 = t4.statusId; if (t7.length !== 0) { t8 = _this.state; t9 = t8.uiState.selectedCompanyIndex; t7 = J.$index$asx(t8.userCompanyStates._list, t9).taskStatusState.$get$1(0, t7).name; } else t7 = _this.localization.get$logged(); } } t8 = t4.invoiceId; t9 = _this.state; if (t8.length !== 0) t4 = t9.prefState.get$colorThemeModel().colorSuccess; else { t8 = t9.uiState.selectedCompanyIndex; t4 = E.convertHexStringToColor(J.$index$asx(t9.userCompanyStates._list, t8).taskStatusState.$get$1(0, t4.statusId).color); } t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new U.TaskListItem_build__closure4(t1, context), new U.TaskListItem_build__closure5(t1, context), false, _null, _null, T.Row$(H.setRuntimeTypeInfo([t5, L.Text$(t7, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null, t3, _this.startStopButton); t1 = t3; } return t1; }, $signature: 97 }; U.TaskListItem_build__closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.task, false, false); }, $signature: 0 }; U.TaskListItem_build__closure1.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.task, false, true); }, $signature: 0 }; U.TaskListItem_build__closure.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; U.TaskListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.task], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; U.TaskListItem_build__closure5.prototype = { call$0: function() { var t1 = this.$this, t2 = t1.onTap; return t2 != null ? t2.call$0() : M.selectEntity(this.context, t1.task, false, false); }, $signature: 0 }; U.TaskListItem_build__closure4.prototype = { call$0: function() { return M.selectEntity(this.context, this.$this.task, false, true); }, $signature: 0 }; U.TaskListItem_build__closure3.prototype = { call$1: function(value) { return this.$this.onCheckboxChanged.call$1(value); }, $signature: 12 }; K.TaskListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new K.TaskListBuilder_build_closure(), K.task_list_vm_TaskListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskListVM); } }; K.TaskListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.taskList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_task, new K.TaskListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new T.TaskPresenter(), t2, t4); }, $signature: 2563 }; K.TaskListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, taskId = J.$index$asx(t1.taskList, index); return U.TaskListItem$(t1.filter, false, true, null, null, true, J.$index$asx(t1.taskMap._map$_map, taskId)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 277 }; K.TaskListVM.prototype = { get$user: function() { return this.user; } }; K.TaskListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; K.TaskListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortTasks(field)); }, $signature: 5 }; K.TaskListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; K.TaskListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.ClearTaskMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; T.TaskPresenter.prototype = { getField$2$context$field: function(context, field) { var t2, t3, t4, t5, client, t6, notes, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), task = type$.legacy_TaskEntity._as(_this.entity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); switch (field) { case "status": return new V.EntityStatusChip(task, 105, _null); case "client": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).clientState.map; t1 = task.clientId; t1 = J.$index$asx(t2._map$_map, t1); t1 = t1 == null ? _null : t1.displayName; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "rate": return L.Text$(Y.formatNumber(task.rate, context, task.clientId, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "calculated_rate": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t1 = t1._list; t3 = J.getInterceptor$asx(t1); t4 = t3.$index(t1, t2).clientState; t5 = task.clientId; client = t4.$get$1(0, t5); t4 = t3.$index(t1, t2).userCompany.company; t6 = t3.$index(t1, t2).projectState.$get$1(0, task.projectId); return L.Text$(Y.formatNumber(U.taskRateSelector(client, t4, t3.$index(t1, t2).groupState.$get$1(0, client.groupId), t6, task), context, t5, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "project": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).projectState.map; t1 = task.projectId; t1 = J.$index$asx(t2._map$_map, t1); t1 = t1 == null ? _null : t1.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "description": return L.Text$(task.description, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "duration": return L.Text$(Y.formatDuration(task.calculateDuration$0(), true), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return L.Text$(task.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "invoice": t1 = state.userCompanyStates; t2 = state.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1._list, t2).invoiceState.map; t1 = task.invoiceId; t1 = J.$index$asx(t2._map$_map, t1); if (t1 == null) t1 = _null; else t1 = t1.number; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "time_log": notes = H.setRuntimeTypeInfo([], type$.JSArray_legacy_String); t1 = task.getTaskTimes$0(); new H.WhereIterable(t1, new T.TaskPresenter_getField_closure(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")).forEach$1(0, new T.TaskPresenter_getField_closure0(context, notes)); return L.Text$(C.JSArray_methods.join$1(notes, "\n"), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_running": return L.Text$(task.get$isRunning() ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "is_invoiced": t2 = task.invoiceId; return L.Text$(t2.length !== 0 ? t1.get$yes() : t1.get$no(), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, task.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, task.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, task.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, task.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(task.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; T.TaskPresenter_getField_closure.prototype = { call$1: function(time) { return time.startDate != null && time.endDate != null; }, $signature: 182 }; T.TaskPresenter_getField_closure0.prototype = { call$1: function(time) { var t1 = this.context, start = Y.formatDate(time.startDate.toIso8601String$0(), t1, true, true, true), end = Y.formatDate(time.endDate.toIso8601String$0(), t1, false, true, true); this.notes.push(start + " - " + end); }, $signature: 204 }; D.TaskScreen.prototype = { build$1: function(_, context) { var company, userCompany, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = store.get$_store$_state(), t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; company = J.$index$asx(t2._list, t1).userCompany.company; t1 = store.get$_store$_state(); t2 = t1.userCompanyStates; t1 = t1.uiState.selectedCompanyIndex; userCompany = J.$index$asx(t2._list, t1).userCompany; t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = state.uiState.taskUIState.listUIState; t3 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.taskList; t2 = t2.filter; t5 = state.prefState; t6 = t5.showKanban; t7 = H.setRuntimeTypeInfo([T.Expanded$(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(t6 ? C.IconData_59061_MaterialIcons_null_true : C._MdiIconData_7T13, _null, _null), 24, new D.TaskScreen_build_closure(context, state, store), C.EdgeInsets_8_8_8_8, _null, _null), 1)], type$.JSArray_legacy_Widget); t8 = t6 ? new T.KanbanViewBuilder(_null) : new K.TaskListBuilder(_null); t9 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_IconButton); if (t6) t9.push(B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(Q.getEntityIcon(C.EntityType_settings), _null, _null), 24, new D.TaskScreen_build_closure0(store, state), C.EdgeInsets_8_8_8_8, _null, _null)); t10 = type$.JSArray_legacy_String; t11 = P.List_List$of(H.setRuntimeTypeInfo(["status", "client", "project", "description", "duration", "entity_state"], t10), true, type$.legacy_String); C.JSArray_methods.addAll$1(t11, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t10)); t11.push("number"); t11.push("is_invoiced"); t11.push("rate"); t11.push("calculated_rate"); t11.push("invoice"); t11.push("client"); t11.push("project"); t11.push("time_log"); t11.push("is_running"); t11.push("custom1"); t11.push("custom2"); t11.push("custom3"); t11.push("custom4"); t11.push("documents"); t12 = H.setRuntimeTypeInfo(["status", "client", "project", "description", "duration", "entity_state"], t10); t13 = company.getCustomFieldValues$2$excludeBlank("task1", true); t14 = company.getCustomFieldValues$2$excludeBlank("task2", true); t15 = company.getCustomFieldValues$2$excludeBlank("task3", true); t16 = company.getCustomFieldValues$2$excludeBlank("task4", true); t10 = H.setRuntimeTypeInfo(["number", "duration", "updated_at"], t10); t17 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_EntityStatus); if (!t6) t17.push(S.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new D.TaskScreen_build_closure1(t1))); t17.push(S.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new D.TaskScreen_build_closure2(t1))); t17.push(S.TaskStatusEntity_TaskStatusEntity(_null, _null).rebuild$1(new D.TaskScreen_build_closure3(t1))); t6 = Z.AppBottomBar$(t13, t14, t15, t16, t12, C.EntityType_task, t6, t9, new D.TaskScreen_build_closure4(store), new D.TaskScreen_build_closure5(store), new D.TaskScreen_build_closure6(store), new D.TaskScreen_build_closure7(store), new D.TaskScreen_build_closure8(store), new D.TaskScreen_build_closure9(store), new D.TaskScreen_build_closure10(store), new D.TaskScreen_build_closure11(store), t10, t17, t11); t1 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_task) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "task_fab", false, new D.TaskScreen_build_closure12(context), t1.get$newTask()) : _null; return Y.ListScaffold$(_null, t7, new N.ListFilter(C.EntityType_task, t2, new D.TaskScreen_build_closure13(store), t4, new D.ValueKey(t3, type$.ValueKey_legacy_String)), t8, t6, C.EntityType_task, t1, 0, _null, new D.TaskScreen_build_closure14(store), new D.TaskScreen_build_closure15(store)); } }; D.TaskScreen_build_closure15.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.StartTaskMultiselect()); }, $signature: 9 }; D.TaskScreen_build_closure13.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasks(value)); }, $signature: 7 }; D.TaskScreen_build_closure14.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taskUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.ClearTaskMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.StartTaskMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaskScreen_build_closure.prototype = { call$0: function() { var t1, _this = this, _null = null; if (D.getLayout(_this.context) === C.AppLayout_desktop && !_this.state.prefState.showKanban) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new U.ViewTask("")); t1 = M.UpdateUserPreferences$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, !_this.state.prefState.showKanban, _null); J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(t1); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaskScreen_build_closure0.prototype = { call$0: function() { var _null = null, t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; t2 = J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ViewSettings(t2, _null, _null, _null, false, "task_status", false, _null)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaskScreen_build_closure9.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SortTasks(value)); }, $signature: 5 }; D.TaskScreen_build_closure11.prototype = { call$2: function($status, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByStatus($status)); }, $signature: 220 }; D.TaskScreen_build_closure5.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByCustom1(value)); }, $signature: 5 }; D.TaskScreen_build_closure6.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByCustom2(value)); }, $signature: 5 }; D.TaskScreen_build_closure7.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByCustom3(value)); }, $signature: 5 }; D.TaskScreen_build_closure8.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByCustom4(value)); }, $signature: 5 }; D.TaskScreen_build_closure1.prototype = { call$1: function(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-3"; t1 = this.localization.get$invoiced(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 145 }; D.TaskScreen_build_closure2.prototype = { call$1: function(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-1"; t1 = this.localization.get$logged(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 145 }; D.TaskScreen_build_closure3.prototype = { call$1: function(b) { var t1; b.get$_task_status_model$_$this()._task_status_model$_id = "-2"; t1 = this.localization.get$running(); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 145 }; D.TaskScreen_build_closure10.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.FilterTasksByState(state)); }, $signature: 53 }; D.TaskScreen_build_closure4.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taskUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.ClearTaskMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new U.StartTaskMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaskScreen_build_closure12.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_task); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.TaskScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.TaskScreenBuilder_build_closure(), Y.task_screen_vm_TaskScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskScreenVM); } }; Y.TaskScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new D.TaskScreen(vm, null); }, $signature: 2564 }; Y.TaskScreenVM.prototype = {}; M.TaskTimeListTile.prototype = { build$1: function(_, context) { var endDateString, title, subtitle, duration, t4, _null = null, t1 = this.taskTime, t2 = t1.startDate, startDateString = Y.formatDate(t2.toIso8601String$0(), context, false, true, true), t3 = t1.endDate; if (t3 != null) endDateString = Y.formatDate(t3.toIso8601String$0(), context, false, true, true); else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).localeCode), "now"); endDateString = t3 == null ? "" : t3; } title = A.DateFormat$("EEE MMM d, yyy", U.localeSelector(O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state())).format$1(t2); subtitle = startDateString + " - " + endDateString; duration = Y.formatDuration(t1.get$duration(t1), true); t1 = type$.JSArray_legacy_Widget; t2 = T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(title, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), L.Text$(duration, _null, _null, _null, _null, _null, _null, _null, _null, _null)], t1), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null); t3 = L.Text$(subtitle, _null, _null, _null, _null, _null, _null, _null, _null, _null); t4 = L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null); return T.Column$(H.setRuntimeTypeInfo([Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, new M.TaskTimeListTile_build_closure(this, context), false, _null, _null, t3, _null, t2, t4), Z.Divider$(_null, 1, _null)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, get$task: function() { return this.task; } }; M.TaskTimeListTile_build_closure.prototype = { call$0: function() { return this.$this.onTap.call$1(this.context); }, $signature: 9 }; Q.TaskView.prototype = { createState$0: function() { return new Q._TaskViewState(null, C._StateLifecycle_0); } }; Q._TaskViewState.prototype = { initState$0: function() { var state, t1, _this = this; _this.super$State$initState(); state = _this._widget.viewModel.state; t1 = U.TabController$(state.uiState.taskUIState.tabIndex, 2, _this); _this._task_view$_controller = t1; t1 = t1.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(_this.get$_task_view$_onTabChanged()), false); }, _task_view$_onTabChanged$0: function() { var t1, store; this._widget.toString; t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._task_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new U.UpdateTaskTab(t1)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._task_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._task_view$_controller.removeListener$1(0, _this.get$_task_view$_onTabChanged()); _this._task_view$_controller.dispose$0(0); _this.super$__TaskViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t2, t3, t4, t5, _this = this, _null = null, viewModel = _this._widget.viewModel, task = viewModel.task, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); _this._widget.toString; t2 = _this._task_view$_controller; t3 = E.Tab$(_null, t1.get$overview()); t4 = task.documents._list; t5 = J.getInterceptor$asx(t4); return new G.ViewScaffold(false, task, new T.Builder(new Q._TaskViewState_build_closure(_this, viewModel, task), _null), _null, E.TabBar$(t2, _null, false, _null, _null, H.setRuntimeTypeInfo([t3, E.Tab$(_null, t5.get$isEmpty(t4) ? t1.get$documents() : t1.get$documents() + " (" + H.S(t5.get$length(t4)) + ")")], type$.JSArray_legacy_Widget)), _null); } }; Q._TaskViewState_build_closure.prototype = { call$1: function(context) { var t4, t5, t6, _null = null, t1 = this.$this, t2 = t1._task_view$_controller, t3 = this.viewModel; t1._widget.toString; t1 = type$.JSArray_legacy_Widget; t2 = T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new S.TaskOverview(t3, false, _null), new Q._TaskViewState_build__closure(t3, context)), N.RefreshIndicator$(new B.TaskViewDocuments(t3, new D.ValueKey(t3.task.id, type$.ValueKey_legacy_String)), new Q._TaskViewState_build__closure0(t3, context))], t1), t2, _null), 1); t3 = this.task; if (t3.get$isRunning()) t4 = C.EntityAction_stop; else t4 = t3.getTaskTimes$0().length === 0 ? C.EntityAction_start : C.EntityAction_resume; t5 = t3.invoiceId.length === 0; t6 = !t5 ? C.EntityAction_archive : C.EntityAction_invoiceTask; return T.Column$(H.setRuntimeTypeInfo([t2, new Z.BottomButtons(t3, t4, t6, t5, true, _null)], t1), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; Q._TaskViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; Q._TaskViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; Q.__TaskViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; B.TaskViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.viewModel.task.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new B.TaskViewDocuments_build_closure(this, context), new B.TaskViewDocuments_build_closure0(this, context), null, null); } }; B.TaskViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; B.TaskViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; S.TaskOverview.prototype = { createState$0: function() { return new S._TaskOverviewState(C._StateLifecycle_0); } }; S._TaskOverviewState.prototype = { initState$0: function() { this.super$State$initState(); this._task_view_overview$_timer = P.Timer_Timer$periodic(P.Duration$(0, 0, 0, 0, 0, 1), new S._TaskOverviewState_initState_closure(this)); }, dispose$0: function(_) { this._task_view_overview$_timer.cancel$0(0); this._task_view_overview$_timer = null; this.super$State$dispose(0); }, build$1: function(_, context) { var $status, fields, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, task = viewModel.task, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), client = viewModel.client, company = viewModel.company, t2 = state.uiState.selectedCompanyIndex, t3 = state.userCompanyStates._list, t4 = J.getInterceptor$asx(t3), invoice = J.$index$asx(t4.$index(t3, t2).invoiceState.map._map$_map, task.invoiceId), user = J.$index$asx(t4.$index(t3, t2).userState.map._map$_map, task.assignedUserId), t5 = t4.$index(t3, t2).groupState, t6 = client == null, group = t5.$get$1(0, t6 ? _null : client.groupId); t5 = task.statusId; $status = t4.$index(t3, t2).taskStatusState.$get$1(0, t5); t2 = t6 ? _null : client.id; t3 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_literal(["rate", Y.formatNumber(task.rate, context, t2, _null, C.FormatNumberType_0, true, _null, true)], t3, t3); if ((t5 == null ? "" : t5).length !== 0) { t2 = t1.get$status(t1); t5 = J.$index$asx(company.taskStatusMap._map$_map, t5); t3 = t5 == null ? _null : t5.name; fields.$indexSet(0, t2, t3 == null ? "" : t3); } t2 = task.customValue1; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task1"), Y.formatCustomValue(context, "task1", t2)); t2 = task.customValue2; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task2"), Y.formatCustomValue(context, "task2", t2)); t2 = task.customValue3; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task3"), Y.formatCustomValue(context, "task3", t2)); t2 = task.customValue4; if (t2.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("task4"), Y.formatCustomValue(context, "task4", t2)); return N.RefreshIndicator$(new X.ScrollableListView(new S._TaskOverviewState_build__buildView(this, task, state, t1, company, viewModel.project, client, group, context, $status, user, invoice, fields, viewModel).call$0(), _null, _null, false, _null), new S._TaskOverviewState_build_closure(viewModel, context)); } }; S._TaskOverviewState_initState_closure.prototype = { call$1: function(timer) { var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new S._TaskOverviewState_initState__closure()); }, $signature: 259 }; S._TaskOverviewState_initState__closure.prototype = { call$0: function() { return false; }, $signature: 19 }; S._TaskOverviewState_build__buildView.prototype = { call$0: function() { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, widgets, items, _this = this, _null = null, t1 = _this.task, t2 = _this.state, t3 = t2.uiState.selectedCompanyIndex; t3 = J.$index$asx(t2.userCompanyStates._list, t3).taskStatusState.$get$1(0, t1.statusId).name; if (t1.invoiceId.length !== 0) t2 = C.MaterialColor_Map_JNEaM_4283215696; else t2 = t1.get$isRunning() ? C.MaterialColor_Map_JNwaj_4280391411 : _null; t4 = _this.localization; t5 = t4.get$duration(t4); t6 = Y.formatDuration(t1.calculateDuration$0(), true); t4 = t4.get$amount(); t7 = _this.project; t8 = _this.client; t9 = U.taskRateSelector(t8, _this.company, _this.group, t7, t1); t10 = Y.round(C.JSInt_methods._tdivFast$1(t1.calculateDuration$0()._duration, 1000000) / 3600, 3); t11 = t8 == null; t12 = t11 ? _null : t8.id; t13 = type$.JSArray_legacy_Widget; widgets = H.setRuntimeTypeInfo([D.EntityHeader$(t1, t5, t4, Y.formatNumber(t9 * t10, _this.context, t12, _null, C.FormatNumberType_0, true, _null, false), t2, t3, t6), new G.ListDivider(_null)], t13); if (!t11) { _this.$this._widget.toString; C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([O.EntityListTile$(t8, false, _null)], t13)); } if (t7 != null) { _this.$this._widget.toString; C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([O.EntityListTile$(t7, false, _null)], t13)); } t2 = _this.status; if (t2 != null) { _this.$this._widget.toString; C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([O.EntityListTile$(t2, false, _null)], t13)); } t2 = _this.user; if (t2 != null) { _this.$this._widget.toString; C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([O.EntityListTile$(t2, false, _null)], t13)); } t2 = _this.invoice; if (t2 != null) { _this.$this._widget.toString; C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([O.EntityListTile$(t2, false, _null)], t13)); } t2 = t1.description; if (t2.length !== 0) C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new S.IconMessage(t2, _null, _null, _null), new G.ListDivider(_null)], t13)); t2 = _this.fields; if (t2.get$isNotEmpty(t2)) C.JSArray_methods.addAll$1(widgets, H.setRuntimeTypeInfo([new T.FieldGrid(t2, _null)], t13)); items = t1.getTaskTimes$0(); if (items.length !== 0) new H.ReversedListIterable(items, H._arrayInstanceType(items)._eval$1("ReversedListIterable<1>")).forEach$1(0, new S._TaskOverviewState_build__buildView_closure(widgets, t1, _this.viewModel)); return widgets; }, $signature: 198 }; S._TaskOverviewState_build__buildView_closure.prototype = { call$1: function(taskTime) { var t1 = this.task; C.JSArray_methods.addAll$1(this.widgets, H.setRuntimeTypeInfo([new M.TaskTimeListTile(new S._TaskOverviewState_build__buildView__closure(this.viewModel, t1, taskTime), t1, taskTime, null)], type$.JSArray_legacy_Widget)); }, $signature: 204 }; S._TaskOverviewState_build__buildView__closure.prototype = { call$1: function(context) { var t1 = this.viewModel, t2 = t1.state, t3 = t2.uiState.selectedCompanyIndex; return J.$index$asx(t2.userCompanyStates._list, t3).userCompany.canEditEntity$1(this.task) ? t1.onEditPressed.call$2(context, this.taskTime) : null; }, $signature: 48 }; S._TaskOverviewState_build_closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; L.TaskViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new L.TaskViewScreen_build_closure(this), new L.TaskViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskViewVM); } }; L.TaskViewScreen_build_closure0.prototype = { call$1: function(store) { return L.TaskViewVM_TaskViewVM$fromStore(store); }, $signature: 2565 }; L.TaskViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new Q.TaskView(vm, false, vm.state.uiState.taskUIState.tabIndex, null); }, $signature: 2566 }; L.TaskViewVM.prototype = { get$task: function() { return this.task; }, get$project: function() { return this.project; }, get$company: function() { return this.company; } }; L.TaskViewVM_TaskViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadTask(completer, this.task.id)); return completer.future; }, $signature: 17 }; L.TaskViewVM_TaskViewVM$fromStore__toggleTask.prototype = { call$1: function(context) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_TaskEntity), t2 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t3 = this.task; t3 = t3.get$isRunning() ? t3.stop$0(0) : t3.addTaskTime$1(D.TaskTime_TaskTime(null, null)); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_TaskEntity), t3, true)); t1.then$1$1(0, new L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure(t2), type$.Null).catchError$1(new L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0(context)); }, $signature: 29 }; L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure.prototype = { call$1: function(savedTask) { var t1; if (savedTask.get$isRunning()) { t1 = this.localization; t1 = savedTask.duration > 0 ? t1.get$resumedTask() : t1.get$startedTask(); } else t1 = this.localization.get$stoppedTask(); M.showToast(t1); }, $signature: 139 }; L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0.prototype = { call$1: function(error) { E.showDialog(true, new L.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; L.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; L.TaskViewVM_TaskViewVM$fromStore_closure0.prototype = { call$1: function(context) { return this._toggleTask.call$1(context); }, $signature: 29 }; L.TaskViewVM_TaskViewVM$fromStore_closure.prototype = { call$2: function(context, taskTime) { var t1 = this.task, t2 = C.JSArray_methods.indexOf$1(t1.getTaskTimes$0(), taskTime); M.editEntity(O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$updatedTask(), false, type$.legacy_ClientEntity), context, t1, t2); }, call$1: function(context) { return this.call$2(context, null); }, "call*": "call$2", $defaultValues: function() { return [null]; }, $signature: 2567 }; L.TaskViewVM_TaskViewVM$fromStore_closure1.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; L.TaskViewVM_TaskViewVM$fromStore_closure2.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.SaveTaskDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.task)); t1.then$1$1(0, new L.TaskViewVM_TaskViewVM$fromStore__closure0(context), type$.Null).catchError$1(new L.TaskViewVM_TaskViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; L.TaskViewVM_TaskViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; L.TaskViewVM_TaskViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new L.TaskViewVM_TaskViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; L.TaskViewVM_TaskViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; L.TaskViewVM_TaskViewVM$fromStore_closure3.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new L.TaskViewVM_TaskViewVM$fromStore__closure(t2, this.task), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; L.TaskViewVM_TaskViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new U.LoadTask(null, this.task.id)); }, $signature: 95 }; L.TaskStatusEdit.prototype = { createState$0: function() { return new L._TaskStatusEditState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; L._TaskStatusEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = _this._task_status_edit$_nameController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._task_status_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new L._TaskStatusEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.taskStatus.name); C.JSArray_methods.forEach$1(_this._task_status_edit$_controllers, new L._TaskStatusEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._task_status_edit$_controllers, new L._TaskStatusEditState_dispose_closure(this)); this.super$State$dispose(0); }, _task_status_edit$_onChanged$0: function() { var _this = this, taskStatus = _this._widget.viewModel.taskStatus.rebuild$1(new L._TaskStatusEditState__onChanged_closure(_this)); if (!taskStatus.$eq(0, _this._widget.viewModel.taskStatus)) _this._task_status_edit$_debouncer.run$1(new L._TaskStatusEditState__onChanged_closure0(_this, taskStatus)); }, build$1: function(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), taskStatus = viewModel.taskStatus; if (taskStatus.get$isNew()) t2 = t1.get$newTaskStatus(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_task_status"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new L._TaskStatusEditState_build_closure(this, t1, viewModel, taskStatus), _null), $.$get$_TaskStatusEditState__formKey()), _null, taskStatus, _null, false, _null, new L._TaskStatusEditState_build_closure0(viewModel), new L._TaskStatusEditState_build_closure1(this, viewModel), _null, t2); } }; L._TaskStatusEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_task_status_edit$_onChanged()); }, $signature: 27 }; L._TaskStatusEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_task_status_edit$_onChanged()), false); return null; }, $signature: 27 }; L._TaskStatusEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_task_status_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; L._TaskStatusEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._task_status_edit$_nameController._change_notifier$_value.text); b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, $signature: 145 }; L._TaskStatusEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.taskStatus); }, $signature: 1 }; L._TaskStatusEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; L._TaskStatusEditState_build_closure1.prototype = { call$1: function(context) { var isValid = $.$get$_TaskStatusEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new L._TaskStatusEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; L._TaskStatusEditState_build__closure.prototype = { call$0: function() { this.$this._task_status_edit$_autoValidate = !this.isValid; }, $signature: 1 }; L._TaskStatusEditState_build_closure.prototype = { call$1: function(context) { var _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = _this.viewModel, t4 = _this.taskStatus, t5 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, t1._task_status_edit$_autoValidate, t1._task_status_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2.get$name(t2), _null, _null, false, _null, _null, t3.onSavePressed, true, _null, _null, C.TextAlign_4, new L._TaskStatusEditState_build__closure0(t2)), A.FormColorPicker$(t4.color, _null, new L._TaskStatusEditState_build__closure1(t3, t4))], t5), _null, 4, false, _null, false, _null)], t5), _null, _null, false, _null); }, $signature: 140 }; L._TaskStatusEditState_build__closure0.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; L._TaskStatusEditState_build__closure1.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.taskStatus.rebuild$1(new L._TaskStatusEditState_build___closure(value))); }, $signature: 5 }; L._TaskStatusEditState_build___closure.prototype = { call$1: function(b) { b.get$_task_status_model$_$this()._task_status_model$_color = this.value; return b; }, $signature: 145 }; Q.TaskStatusEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Q.TaskStatusEditScreen_build_closure(), new Q.TaskStatusEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusEditVM); } }; Q.TaskStatusEditScreen_build_closure0.prototype = { call$1: function(store) { return Q.TaskStatusEditVM_TaskStatusEditVM$fromStore(store); }, $signature: 2568 }; Q.TaskStatusEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new L.TaskStatusEdit(viewModel, new D.ValueKey(viewModel.taskStatus.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2569 }; Q.TaskStatusEditVM.prototype = { get$taskStatus: function() { return this.taskStatus; }, get$company: function() { return this.company; } }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure.prototype = { call$1: function(taskStatus) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.UpdateTaskStatus(taskStatus)); }, $signature: 238 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, S.TaskStatusEntity_TaskStatusEntity(_null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, taskStatus = t1.get$_store$_state().uiState.taskStatusUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_TaskStatusEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new V.SaveTaskStatusRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaskStatusEntity), taskStatus)); return t2.then$1$1(0, new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure(taskStatus, t3, this.state, t1, $navigator), type$.Null).catchError$1(new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0()); }, $signature: 31 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure.prototype = { call$1: function(savedTaskStatus) { var _this = this, _s26_ = "/settings/task_status_view", t1 = _this.taskStatus, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_task_status"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedTaskStatus(); M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s26_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s26_, t1, t1); } else t2.pop$1(0, savedTaskStatus); } else M.viewEntity(false, savedTaskStatus, null, true); }, $signature: 238 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new Q.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Q.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.TaskStatusListItem.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, taskStatusUIState = uiState.taskStatusUIState, t1 = taskStatusUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([_this.taskStatus.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.taskStatus; t4 = t2.id; t5 = uiState.get$isEditing() ? taskStatusUIState.editing.id : taskStatusUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new O.TaskStatusListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t7 = type$.JSArray_legacy_Widget; t6 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t7), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t6.size._dx); t8 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new O.TaskStatusListItem_build_closure0(_this, context), new O.TaskStatusListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t8, new L.EntityStateLabel(t2, _null)], t7), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t6, _null), t4 === t5, true, true, _null); }, get$user: function() { return this.user; }, get$taskStatus: function() { return this.taskStatus; } }; O.TaskStatusListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.taskStatus, false, false); return t1; }, $signature: 0 }; O.TaskStatusListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.taskStatus, false, true); return t1; }, $signature: 0 }; O.TaskStatusListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; U.TaskStatusListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.TaskStatusListBuilder_build_closure(), U.task_status_list_vm_TaskStatusListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusListVM); } }; U.TaskStatusListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.state, t2 = viewModel.taskStatusList, t3 = viewModel.tableColumns, t4 = viewModel.onRefreshed, t5 = viewModel.onSortColumn; return S.EntityList$(t2, C.EntityType_taskStatus, new U.TaskStatusListBuilder_build__closure(viewModel), viewModel.onClearMultielsect, t4, t5, new N.TaskStatusPresenter(), t1, t3); }, $signature: 2570 }; U.TaskStatusListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, taskStatusId = J.$index$asx(t1.taskStatusList, index), taskStatus = J.$index$asx(t1.taskStatusMap._map$_map, taskStatusId), t2 = state.getUIState$1(C.EntityType_taskStatus).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = taskStatus.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new O.TaskStatusListItem(t4, taskStatus, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2571 }; U.TaskStatusListVM.prototype = {}; U.TaskStatusListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; U.TaskStatusListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; U.TaskStatusListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.SortTaskStatuses(field)); }, $signature: 5 }; U.TaskStatusListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.ClearTaskStatusMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; N.TaskStatusPresenter.prototype = { getField$2$context$field: function(context, field) { return this.super$EntityPresenter$getField(context, field); } }; Y.TaskStatusScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.taskStatusUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.taskStatusList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo([], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, H.setRuntimeTypeInfo([], t5), C.EntityType_taskStatus, false, C.List_empty14, new Y.TaskStatusScreen_build_closure(store), new Y.TaskStatusScreen_build_closure0(store), new Y.TaskStatusScreen_build_closure1(store), new Y.TaskStatusScreen_build_closure2(store), new Y.TaskStatusScreen_build_closure3(store), new Y.TaskStatusScreen_build_closure4(store), new Y.TaskStatusScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name", "order", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_taskStatus) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "task_status_fab", false, new Y.TaskStatusScreen_build_closure6(context), t3.get$newTaskStatus()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_taskStatus, t2, new Y.TaskStatusScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new U.TaskStatusListBuilder(_null), t6, C.EntityType_taskStatus, t3, 0, "task_settings", new Y.TaskStatusScreen_build_closure8(store), new Y.TaskStatusScreen_build_closure9(store)); } }; Y.TaskStatusScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.StartTaskStatusMultiselect()); }, $signature: 9 }; Y.TaskStatusScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatuses(value)); }, $signature: 7 }; Y.TaskStatusScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taskStatusUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new V.ClearTaskStatusMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new V.StartTaskStatusMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.TaskStatusScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.SortTaskStatuses(value)); }, $signature: 7 }; Y.TaskStatusScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatusesByState(state)); }, $signature: 53 }; Y.TaskStatusScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taskStatusUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new V.ClearTaskStatusMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new V.StartTaskStatusMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.TaskStatusScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatusesByCustom1(value)); }, $signature: 5 }; Y.TaskStatusScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatusesByCustom2(value)); }, $signature: 5 }; Y.TaskStatusScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatusesByCustom3(value)); }, $signature: 5 }; Y.TaskStatusScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new V.FilterTaskStatusesByCustom4(value)); }, $signature: 5 }; Y.TaskStatusScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_taskStatus); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; U.TaskStatusScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.TaskStatusScreenBuilder_build_closure(), U.task_status_screen_vm_TaskStatusScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusScreenVM); } }; U.TaskStatusScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new Y.TaskStatusScreen(vm, null); }, $signature: 2572 }; U.TaskStatusScreenVM.prototype = {}; L.TaskStatusView.prototype = { createState$0: function() { return new L._TaskStatusViewState(C._StateLifecycle_0); } }; L._TaskStatusViewState.prototype = { build$1: function(_, context) { var t7, t8, _null = null, viewModel = this._widget.viewModel, state = viewModel.state, taskStatus = viewModel.taskStatus, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = $.$get$memoizedCalculateTaskStatusAmount(), t3 = taskStatus.id, t4 = state.uiState.selectedCompanyIndex, t5 = state.userCompanyStates._list, t6 = J.getInterceptor$asx(t5), amount = t2.call$2(t3, t6.$index(t5, t4).taskState.map); t2 = this._widget.isFilter; t7 = D.EntityHeader$(taskStatus, t1.get$total(t1), _null, _null, _null, _null, Y.formatDuration(P.Duration$(0, 0, 0, 0, 0, amount), true)); t8 = this._widget.isFilter; return new G.ViewScaffold(t2, taskStatus, new X.ScrollableListView(H.setRuntimeTypeInfo([t7, new G.ListDivider(_null), new O.EntitiesListTile(taskStatus, C.EntityType_task, t1.get$tasks(), $.$get$memoizedTaskStatsForTaskStatus().call$2(t3, t6.$index(t5, t4).taskState.map).present$2(t1.get$active(t1), t1.get$archived()), t8, false, _null)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new L._TaskStatusViewState_build_closure(viewModel), _null, _null); } }; L._TaskStatusViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; T.TaskStatusViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.TaskStatusViewScreen_build_closure(this), new T.TaskStatusViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaskStatusViewVM); } }; T.TaskStatusViewScreen_build_closure0.prototype = { call$1: function(store) { return T.TaskStatusViewVM_TaskStatusViewVM$fromStore(store); }, $signature: 2573 }; T.TaskStatusViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new L.TaskStatusView(vm, this.$this.isFilter, null); }, $signature: 2574 }; T.TaskStatusViewVM.prototype = { get$taskStatus: function() { return this.taskStatus; }, get$company: function() { return this.company; } }; T.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/task_status")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; A.TaxRateEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new A._TaxRateEditState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; A._TaxRateEditState.prototype = { didChangeDependencies$0: function() { var taxRate, _this = this, t1 = _this._tax_rate_edit$_nameController, t2 = _this._rateController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._tax_rate_edit$_controllers = t3; C.JSArray_methods.forEach$1(t3, new A._TaxRateEditState_didChangeDependencies_closure(_this)); taxRate = _this._widget.viewModel.taxRate; t1.set$text(0, taxRate.name); t1 = _this._framework$_element; t1.toString; t2.set$text(0, Y.formatNumber(taxRate.rate, t1, null, null, C.FormatNumberType_4, true, null, false)); C.JSArray_methods.forEach$1(_this._tax_rate_edit$_controllers, new A._TaxRateEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._tax_rate_edit$_controllers, new A._TaxRateEditState_dispose_closure(this)); this.super$State$dispose(0); }, _tax_rate_edit$_onChanged$0: function() { var _this = this, taxRate = _this._widget.viewModel.taxRate.rebuild$1(new A._TaxRateEditState__onChanged_closure(_this)); if (!taxRate.$eq(0, _this._widget.viewModel.taxRate)) _this._tax_rate_edit$_debouncer.run$1(new A._TaxRateEditState__onChanged_closure0(_this, taxRate)); }, build$1: function(_, context) { var t3, t4, t5, t6, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = viewModel.taxRate; if (t2.get$isNew()) t3 = t1.get$newTaxRate(); else { t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_tax_rate"); if (t3 == null) t3 = ""; } t4 = viewModel.onSavePressed; t5 = viewModel.onCancelPressed; t6 = type$.JSArray_legacy_Widget; return K.EditScaffold$(_null, _null, new X.AppForm($.$get$_TaxRateEditState__formKey(), H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, false, this._tax_rate_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$name(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, new A._TaxRateEditState_build_closure(t1)), S.DecoratedFormField$(false, _null, false, false, this._rateController, _null, true, _null, _null, _null, _null, false, true, _null, _null, t1.get$rate(t1), _null, _null, false, _null, _null, t4, true, _null, _null, C.TextAlign_4, _null)], t6), _null, 4, false, _null, false, _null)], t6), _null, _null, _null), _null, t2, _null, false, _null, t5, t4, _null, t3); } }; A._TaxRateEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_tax_rate_edit$_onChanged()); }, $signature: 27 }; A._TaxRateEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_tax_rate_edit$_onChanged()), false); return null; }, $signature: 27 }; A._TaxRateEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_tax_rate_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; A._TaxRateEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._tax_rate_edit$_nameController._change_notifier$_value.text); b.get$_tax_rate_model$_$this()._tax_rate_model$_name = t2; t1 = Y.parseDouble(t1._rateController._change_notifier$_value.text, false); b.get$_tax_rate_model$_$this()._tax_rate_model$_rate = t1; return b; }, $signature: 602 }; A._TaxRateEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.taxRate); }, $signature: 1 }; A._TaxRateEditState_build_closure.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; S.TaxRateEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new S.TaxRateEditScreen_build_closure(), new S.TaxRateEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateEditVM); } }; S.TaxRateEditScreen_build_closure0.prototype = { call$1: function(store) { return S.TaxRateEditVM_TaxRateEditVM$fromStore(store); }, $signature: 2575 }; S.TaxRateEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new A.TaxRateEdit(viewModel, new D.ValueKey(viewModel.taxRate.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2576 }; S.TaxRateEditVM.prototype = { get$taxRate: function() { return this.taxRate; }, get$company: function() { return this.company; } }; S.TaxRateEditVM_TaxRateEditVM$fromStore_closure.prototype = { call$1: function(taxRate) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.UpdateTaxRate(taxRate)); }, $signature: 121 }; S.TaxRateEditVM_TaxRateEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, T.TaxRateEntity_TaxRateEntity(_null, _null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; S.TaxRateEditVM_TaxRateEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new S.TaxRateEditVM_TaxRateEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; S.TaxRateEditVM_TaxRateEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, taxRate = t1.get$_store$_state().uiState.taxRateUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_TaxRateEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.SaveTaxRateRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_TaxRateEntity), taxRate)); return t2.then$1$1(0, new S.TaxRateEditVM_TaxRateEditVM$fromStore___closure(taxRate, t3, this.state, t1, $navigator), type$.Null).catchError$1(new S.TaxRateEditVM_TaxRateEditVM$fromStore___closure0()); }, $signature: 31 }; S.TaxRateEditVM_TaxRateEditVM$fromStore___closure.prototype = { call$1: function(savedTaxRate) { var _this = this, _s33_ = "/settings/tax_settings_rates_view", t1 = _this.taxRate, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_tax_rate"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_tax_rate"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s33_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s33_, t1, t1); } else t2.pop$1(0, savedTaxRate); } else M.viewEntity(false, savedTaxRate, null, true); }, $signature: 121 }; S.TaxRateEditVM_TaxRateEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new S.TaxRateEditVM_TaxRateEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; S.TaxRateEditVM_TaxRateEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; Z.TaxRateListItem.prototype = { build$1: function(_, context) { var t3, t4, t5, t6, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, t1 = uiState.taxRateUIState.listUIState.selectedIds, t2 = _this.filter, filterMatch = t2 != null && t2.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([_this.taxRate.name], type$.JSArray_legacy_String), t2) : _null; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t2 = _this.taxRate; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new Z.TaxRateListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t4 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = type$.JSArray_legacy_Widget; t4 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t2.name + " \u2022 " + H.S(Y.formatNumber(t2.rate, context, _null, _null, C.FormatNumberType_1, true, _null, false)), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t4.size._dx); t6 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t2, Q.ListTile$(false, _null, _null, true, false, _null, t1, new Z.TaxRateListItem_build_closure0(_this, context), new Z.TaxRateListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t6, new L.EntityStateLabel(t2, _null)], t5), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t4, _null), false, true, true, _null); }, get$user: function() { return this.user; }, get$taxRate: function() { return this.taxRate; } }; Z.TaxRateListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.taxRate, false, false); return t1; }, $signature: 0 }; Z.TaxRateListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.taxRate, false, true); return t1; }, $signature: 0 }; Z.TaxRateListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; X.TaxRateListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.TaxRateListBuilder_build_closure(), X.tax_rate_list_vm_TaxRateListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateListVM); } }; X.TaxRateListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return S.EntityList$(viewModel.taxRateList, C.EntityType_taxRate, new X.TaxRateListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2577 }; X.TaxRateListBuilder_build__closure.prototype = { call$2: function(context, index) { var t4, t1 = this.viewModel, taxRateId = J.$index$asx(t1.taxRateList, index), taxRate = J.$index$asx(t1.taxRateMap._map$_map, taxRateId), t2 = t1.state.getUIState$1(C.EntityType_taxRate).get$listUIState().selectedIds, t3 = t1.userCompany.user; if (t2 != null) { t4 = taxRate.id; t2 = J.contains$1$asx(t2._list, t4); } else t2 = false; return new Z.TaxRateListItem(t3, taxRate, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2578 }; X.TaxRateListVM.prototype = {}; X.TaxRateListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; X.TaxRateListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; X.TaxRateListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SortTaxRates(field)); }, $signature: 5 }; X.TaxRateListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.ClearTaxRateMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; D.TaxRateSettingsScreen.prototype = { build$1: function(_, context) { var t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = state.uiState, t3 = t2.taxRateUIState.listUIState, t4 = "__filter_" + t3.filterClearedAt + "__", t5 = this.viewModel.taxRateList; t3 = t3.filter; t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_taxRate, false, C.List_empty14, new D.TaxRateSettingsScreen_build_closure(store), _null, _null, _null, _null, new D.TaxRateSettingsScreen_build_closure0(store), new D.TaxRateSettingsScreen_build_closure1(store), _null, H.setRuntimeTypeInfo(["updated_at"], type$.JSArray_legacy_String), C.List_empty15, _null); if (state.prefState.appLayout === C.AppLayout_mobile) { t7 = state.userCompanyStates; t2 = t2.selectedCompanyIndex; t2 = J.$index$asx(t7._list, t2).userCompany.can$2(C.UserPermission_create, C.EntityType_taxRate); } else t2 = false; t1 = t2 ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "tax_rate_fab", false, new D.TaxRateSettingsScreen_build_closure2(context), t1.get$newTaxRate()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_taxRate, t3, new D.TaxRateSettingsScreen_build_closure3(store), t5, new D.ValueKey(t4, type$.ValueKey_legacy_String)), new X.TaxRateListBuilder(_null), t6, C.EntityType_taxRate, t1, 0, "tax_settings", new D.TaxRateSettingsScreen_build_closure4(store), new D.TaxRateSettingsScreen_build_closure5(store)); } }; D.TaxRateSettingsScreen_build_closure5.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.StartTaxRateMultiselect()); }, $signature: 9 }; D.TaxRateSettingsScreen_build_closure3.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterTaxRates(value)); }, $signature: 7 }; D.TaxRateSettingsScreen_build_closure4.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taxRateUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.ClearTaxRateMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.StartTaxRateMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaxRateSettingsScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.SortTaxRates(value)); }, $signature: 5 }; D.TaxRateSettingsScreen_build_closure1.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new A.FilterTaxRatesByState(state)); }, $signature: 53 }; D.TaxRateSettingsScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.taxRateUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.ClearTaxRateMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new A.StartTaxRateMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; D.TaxRateSettingsScreen_build_closure2.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_taxRate); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O.TaxRateScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new O.TaxRateScreenBuilder_build_closure(), O.tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateScreenVM); } }; O.TaxRateScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new D.TaxRateSettingsScreen(vm, null); }, $signature: 2579 }; O.TaxRateScreenVM.prototype = {}; K.TaxRateView.prototype = { createState$0: function() { return new K._TaxRateViewState(C._StateLifecycle_0); } }; K._TaxRateViewState.prototype = { build$1: function(_, context) { var _null = null, viewModel = this._widget.viewModel, taxRate = viewModel.taxRate, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); this._widget.toString; return new G.ViewScaffold(false, taxRate, new X.ScrollableListView(H.setRuntimeTypeInfo([D.EntityHeader$(taxRate, t1.get$name(t1), t1.get$rate(t1), Y.formatNumber(taxRate.rate, context, _null, _null, C.FormatNumberType_1, true, _null, false), _null, _null, taxRate.name)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new K._TaxRateViewState_build_closure(viewModel), _null, _null); } }; K._TaxRateViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; R.TaxRateViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.TaxRateViewScreen_build_closure(this), new R.TaxRateViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TaxRateViewVM); } }; R.TaxRateViewScreen_build_closure0.prototype = { call$1: function(store) { return R.TaxRateViewVM_TaxRateViewVM$fromStore(store); }, $signature: 2580 }; R.TaxRateViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new K.TaxRateView(vm, false, null); }, $signature: 2581 }; R.TaxRateViewVM.prototype = { get$taxRate: function() { return this.taxRate; }, get$company: function() { return this.company; } }; R.TaxRateViewVM_TaxRateViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/tax_settings_rates")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; Y.TokenEdit.prototype = { createState$0: function() { return new Y._TokenEditState(new O.Debouncer(500, false), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(type$.LinkedList__ListenerEntry)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; Y._TokenEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = _this._token_edit$_nameController, t2 = H.setRuntimeTypeInfo([t1], type$.JSArray_legacy_TextEditingController); _this._token_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new Y._TokenEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.token.name); C.JSArray_methods.forEach$1(_this._token_edit$_controllers, new Y._TokenEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._token_edit$_controllers, new Y._TokenEditState_dispose_closure(this)); this.super$State$dispose(0); }, _token_edit$_onChanged$0: function() { var _this = this, token = _this._widget.viewModel.token.rebuild$1(new Y._TokenEditState__onChanged_closure(_this)); if (!token.$eq(0, _this._widget.viewModel.token)) _this._token_edit$_debouncer.run$1(new Y._TokenEditState__onChanged_closure0(_this, token)); }, build$1: function(_, context) { var t2, _null = null, viewModel = this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), token = viewModel.token; if (token.get$isNew()) t2 = t1.get$newToken(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_token"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new Y._TokenEditState_build_closure(this, t1, viewModel), _null), $.$get$_TokenEditState__formKey()), _null, token, _null, false, _null, new Y._TokenEditState_build_closure0(viewModel), new Y._TokenEditState_build_closure1(this, viewModel), _null, t2); } }; Y._TokenEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_token_edit$_onChanged()); }, $signature: 27 }; Y._TokenEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_token_edit$_onChanged()), false); return null; }, $signature: 27 }; Y._TokenEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_token_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; Y._TokenEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._token_edit$_nameController._change_notifier$_value.text); b.get$_token_model$_$this()._token_model$_name = t1; return b; }, $signature: 600 }; Y._TokenEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.token); }, $signature: 1 }; Y._TokenEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; Y._TokenEditState_build_closure1.prototype = { call$1: function(context) { var isValid = $.$get$_TokenEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new Y._TokenEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; Y._TokenEditState_build__closure.prototype = { call$0: function() { this.$this._token_edit$_autoValidate = !this.isValid; }, $signature: 1 }; Y._TokenEditState_build_closure.prototype = { call$1: function(context) { var _null = null, t1 = this.$this, t2 = this.localization, t3 = t2.get$name(t2), t4 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, t1._token_edit$_autoValidate, t1._token_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, this.viewModel.onSavePressed, true, _null, _null, C.TextAlign_4, new Y._TokenEditState_build__closure0(t2))], t4), _null, 4, false, _null, false, _null)], t4), _null, _null, false, _null); }, $signature: 140 }; Y._TokenEditState_build__closure0.prototype = { call$1: function(value) { return value.length === 0 || C.JSString_methods.trim$0(value).length === 0 ? this.localization.get$pleaseEnterAName() : null; }, $signature: 15 }; R.TokenEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new R.TokenEditScreen_build_closure(), new R.TokenEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenEditVM); } }; R.TokenEditScreen_build_closure0.prototype = { call$1: function(store) { return R.TokenEditVM_TokenEditVM$fromStore(store); }, $signature: 2582 }; R.TokenEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new Y.TokenEdit(viewModel, new D.ValueKey(viewModel.token.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2583 }; R.TokenEditVM.prototype = { get$token: function() { return this.token; }, get$company: function() { return this.company; } }; R.TokenEditVM_TokenEditVM$fromStore_closure.prototype = { call$1: function(token) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateToken(token)); }, $signature: 318 }; R.TokenEditVM_TokenEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, D.TokenEntity_TokenEntity(_null, _null), _null, true); t1 = this.state.uiState; t1.tokenUIState.toString; t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; R.TokenEditVM_TokenEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new R.TokenEditVM_TokenEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; R.TokenEditVM_TokenEditVM$fromStore__closure.prototype = { call$0: function() { var t1 = this.store; O.passwordCallback(false, new R.TokenEditVM_TokenEditVM$fromStore___closure(t1, t1.get$_store$_state().uiState.tokenUIState.editing, this.state), this.context); }, $signature: 1 }; R.TokenEditVM_TokenEditVM$fromStore___closure.prototype = { call$2: function(password, idToken) { var t2, $navigator, t3, t4, t1 = $.$get$navigatorKey(); t1.toString; t2 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t1.get$currentState(); t1 = new P._Future($.Zone__current, type$._Future_legacy_TokenEntity); t3 = this.store; t4 = this.token; J.$index$asx(t3.get$_dispatchers(), 0).call$1(new Q.SaveTokenRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_TokenEntity), t4, password, idToken)); return t1.then$1$1(0, new R.TokenEditVM_TokenEditVM$fromStore____closure(t4, t2, this.state, t3, $navigator), type$.Null).catchError$1(new R.TokenEditVM_TokenEditVM$fromStore____closure0()); }, $signature: 678 }; R.TokenEditVM_TokenEditVM$fromStore____closure.prototype = { call$1: function(savedToken) { var _this = this, _s20_ = "/settings/token_view", t1 = _this.token, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_token"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_token"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s20_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s20_, t1, t1); } else t2.pop$1(0, savedToken); } else M.viewEntity(false, savedToken, null, true); }, $signature: 318 }; R.TokenEditVM_TokenEditVM$fromStore____closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new R.TokenEditVM_TokenEditVM$fromStore_____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; R.TokenEditVM_TokenEditVM$fromStore_____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; K.TokenListItem.prototype = { build$1: function(_, context) { var t4, t5, user, t6, filterMatch, t7, t8, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, tokenUIState = uiState.tokenUIState, t1 = tokenUIState.listUIState.selectedIds, t2 = state.userCompanyStates, t3 = uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); t5 = _this.token; user = t4.$index(t2, t3).userState.$get$1(0, t5.createdUserId); t6 = _this.filter; filterMatch = t6 != null && t6.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([], type$.JSArray_legacy_String), t6) : _null; t2 = t4.$index(t2, t3).userCompany; t3 = t5.id; t4 = uiState.get$isEditing() ? tokenUIState.editing.id : tokenUIState.selectedId; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new K.TokenListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t6 = L.Text$(t5.name, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null); t7 = L.Text$(user.get$fullName().length !== 0 ? user.get$fullName() : user.email, _null, _null, _null, _null, _null, _null, _null, _null, _null); t8 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t2, t5, Q.ListTile$(false, _null, _null, true, false, _null, t1, new K.TokenListItem_build_closure0(_this, context), new K.TokenListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t7, t8, new L.EntityStateLabel(t5, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t6, _null), t3 === t4, true, true, _null); }, get$user: function() { return this.user; }, get$token: function() { return this.token; } }; K.TokenListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.token, false, false); return t1; }, $signature: 0 }; K.TokenListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.token, false, true); return t1; }, $signature: 0 }; K.TokenListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; M.TokenListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.TokenListBuilder_build_closure(), M.token_list_vm_TokenListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenListVM); } }; M.TokenListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.tokenList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_token, new M.TokenListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new F.TokenPresenter(), t2, t4); }, $signature: 2584 }; M.TokenListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, tokenId = J.$index$asx(t1.tokenList, index), token = J.$index$asx(t1.tokenMap._map$_map, tokenId), t2 = state.getUIState$1(C.EntityType_token).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = token.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new K.TokenListItem(t4, token, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2585 }; M.TokenListVM.prototype = {}; M.TokenListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; M.TokenListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; M.TokenListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortTokens(field)); }, $signature: 5 }; M.TokenListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.ClearTokenMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; F.TokenPresenter.prototype = { getField$2$context$field: function(context, field) { return this.super$EntityPresenter$getField(context, field); } }; S.TokenScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.tokenUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.tokenList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo([], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, H.setRuntimeTypeInfo([], t5), C.EntityType_token, false, C.List_empty14, new S.TokenScreen_build_closure(store), new S.TokenScreen_build_closure0(store), new S.TokenScreen_build_closure1(store), new S.TokenScreen_build_closure2(store), new S.TokenScreen_build_closure3(store), new S.TokenScreen_build_closure4(store), new S.TokenScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_token) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "token_fab", false, new S.TokenScreen_build_closure6(context), t3.get$newToken()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_token, t2, new S.TokenScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new M.TokenListBuilder(_null), t6, C.EntityType_token, t3, 0, "account_management", new S.TokenScreen_build_closure8(store), new S.TokenScreen_build_closure9(store)); } }; S.TokenScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.StartTokenMultiselect()); }, $signature: 9 }; S.TokenScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokens(value)); }, $signature: 7 }; S.TokenScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.tokenUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearTokenMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartTokenMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S.TokenScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.SortTokens(value)); }, $signature: 7 }; S.TokenScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokensByState(state)); }, $signature: 53 }; S.TokenScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.tokenUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.ClearTokenMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new Q.StartTokenMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; S.TokenScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokensByCustom1(value)); }, $signature: 5 }; S.TokenScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokensByCustom2(value)); }, $signature: 5 }; S.TokenScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokensByCustom3(value)); }, $signature: 5 }; S.TokenScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.FilterTokensByCustom4(value)); }, $signature: 5 }; S.TokenScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_token); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.TokenScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new K.TokenScreenBuilder_build_closure(), K.token_screen_vm_TokenScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenScreenVM); } }; K.TokenScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new S.TokenScreen(vm, null); }, $signature: 2586 }; K.TokenScreenVM.prototype = {}; Y.TokenView.prototype = { createState$0: function() { return new Y._TokenViewState(C._StateLifecycle_0); } }; Y._TokenViewState.prototype = { build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, token = viewModel.token, t2 = viewModel.state, t3 = t2.uiState.selectedCompanyIndex, user = J.$index$asx(t2.userCompanyStates._list, t3).userState.$get$1(0, token.createdUserId); this._widget.toString; t3 = t1.get$user(); t2 = user.get$fullName().length !== 0 ? user.get$fullName() : user.email; t1 = t1.get$createdOn(); return new G.ViewScaffold(false, token, new X.ScrollableListView(H.setRuntimeTypeInfo([D.EntityHeader$(token, t3, t1, Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(token.createdAt * 1000, false).toIso8601String$0(), context, true, true, false), _null, _null, t2), new G.ListDivider(_null), new Y._TokenListTile(token, _null), new G.ListDivider(_null)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new Y._TokenViewState_build_closure(viewModel), _null, _null); } }; Y._TokenViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; Y._TokenListTile.prototype = { build$1: function(_, context) { var t3, _null = null, t1 = this.token.token, t2 = L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); t1 = C.JSString_methods.substring$1(t1, 10) === "xxxxxxxxxxx"; t3 = t1 ? _null : L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null); t1 = t1 ? _null : new Y._TokenListTile_build_closure(this, context); return Q.ListTile$(false, C.EdgeInsets_22_22_22_22, _null, true, false, _null, _null, _null, t1, false, _null, _null, _null, _null, new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t3); }, get$token: function() { return this.token; } }; Y._TokenListTile_build_closure.prototype = { call$0: function() { Q.handleTokenAction(this.context, H.setRuntimeTypeInfo([this.$this.token], type$.JSArray_legacy_BaseEntity), C.EntityAction_copy); }, $signature: 1 }; U.TokenViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new U.TokenViewScreen_build_closure(this), new U.TokenViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_TokenViewVM); } }; U.TokenViewScreen_build_closure0.prototype = { call$1: function(store) { return U.TokenViewVM_TokenViewVM$fromStore(store); }, $signature: 2587 }; U.TokenViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new Y.TokenView(vm, false, null); }, $signature: 2588 }; U.TokenViewVM.prototype = { get$token: function() { return this.token; }, get$company: function() { return this.company; } }; U.TokenViewVM_TokenViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/tokens")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; U.UserEdit.prototype = { createState$0: function() { var t1 = O.FocusScopeNode$(true, null, false), t2 = type$.LinkedList__ListenerEntry; return new U._UserEditState(new O.Debouncer(500, false), t1, new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t2)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), null, C._StateLifecycle_0); } }; U._UserEditState.prototype = { initState$0: function() { this.super$State$initState(); this._user_edit$_controller = U.TabController$(0, 3, this); }, didChangeDependencies$0: function() { var user, _this = this, t1 = _this._firstNameController, t2 = _this._lastNameController, t3 = _this._emailController, t4 = _this._phoneController, t5 = _this._custom1Controller, t6 = _this._custom2Controller, t7 = _this._custom3Controller, t8 = _this._custom4Controller, t9 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8], type$.JSArray_legacy_TextEditingController); _this._user_edit$_controllers = t9; C.JSArray_methods.forEach$1(t9, new U._UserEditState_didChangeDependencies_closure(_this)); user = _this._widget.viewModel.user; t1.set$text(0, user.firstName); t2.set$text(0, user.lastName); t3.set$text(0, user.email); t4.set$text(0, user.phone); t5.set$text(0, user.customValue1); t6.set$text(0, user.customValue2); t7.set$text(0, user.customValue3); t8.set$text(0, user.customValue4); C.JSArray_methods.forEach$1(_this._user_edit$_controllers, new U._UserEditState_didChangeDependencies_closure0(_this)); _this.super$__UserEditState_State_SingleTickerProviderStateMixin$didChangeDependencies(); }, dispose$0: function(_) { var _this = this; _this._user_edit$_controller.dispose$0(0); C.JSArray_methods.forEach$1(_this._user_edit$_controllers, new U._UserEditState_dispose_closure(_this)); _this.super$__UserEditState_State_SingleTickerProviderStateMixin$dispose(0); }, _user_edit$_onChanged$0: function() { var _this = this, user = _this._widget.viewModel.user.rebuild$1(new U._UserEditState__onChanged_closure(_this)); if (!J.$eq$(user, _this._widget.viewModel.user)) _this._user_edit$_debouncer.run$1(new U._UserEditState__onChanged_closure0(_this, user)); }, _togglePermission$1: function(permission) { var permissionsString, t2, user = this._widget.viewModel.user, t1 = user.userCompany.permissions, permissions = H.setRuntimeTypeInfo(t1.split(","), type$.JSArray_String); if (C.JSArray_methods.contains$1(permissions, permission)) C.JSArray_methods.remove$1(permissions, permission); else permissions.push(permission); permissionsString = new H.WhereIterable(permissions, new U._UserEditState__togglePermission_closure(), type$.WhereIterable_String).join$1(0, ","); t1 = this._widget.viewModel; t2 = user.rebuild$1(new U._UserEditState__togglePermission_closure0(permissionsString)); t1.onUserChanged.call$1(t2); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null, viewModel = _this._widget.viewModel, state = viewModel.state, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), user = viewModel.user, userCompany = user.userCompany; if (user.get$isNew()) t2 = t1.get$newUser(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_user"); if (t2 == null) t2 = ""; } t3 = _this._user_edit$_controller; t4 = D.getLayout(context); t5 = E.Tab$(_null, t1.get$details(t1)); t6 = E.Tab$(_null, t1.get$notifications()); t7 = t1.localeCode; t8 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "permissions"); t9 = type$.JSArray_legacy_Widget; t8 = E.TabBar$(t3, _null, t4 === C.AppLayout_mobile, _null, _null, H.setRuntimeTypeInfo([t5, t6, E.Tab$(_null, t8 == null ? "" : t8)], t9)); t6 = $.$get$_UserEditState__formKey(); t5 = _this._user_edit$_controller; t4 = t1.get$firstName(); t3 = _this.autoValidate; t10 = viewModel.onSavePressed; t4 = S.DecoratedFormField$(false, _null, true, t3, _this._firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, new U._UserEditState_build_closure(t1)); t3 = t1.get$lastName(); t3 = S.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t3, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, new U._UserEditState_build_closure0(t1)); t11 = t1.get$email(); t10 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([t4, t3, S.DecoratedFormField$(false, _null, false, _this.autoValidate, _this._emailController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t11, _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, new U._UserEditState_build_closure1(t1)), S.DecoratedFormField$(false, _null, false, false, _this._phoneController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$phone(t1), _null, _null, false, _null, _null, t10, true, _null, _null, C.TextAlign_4, _null), new B.CustomField(_this._custom1Controller, _null, t10, "user1", user.customValue1, false, _null), new B.CustomField(_this._custom2Controller, _null, t10, "user2", user.customValue2, false, _null), new B.CustomField(_this._custom3Controller, _null, t10, "user3", user.customValue3, false, _null), new B.CustomField(_this._custom4Controller, _null, t10, "user4", user.customValue4, false, _null)], t9), _null, 4, false, _null, false, _null)], t9); t11 = H.setRuntimeTypeInfo([new B.NotificationSettings(user, new U._UserEditState_build_closure2(viewModel, user), _null)], t9); t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "administrator"); t3 = L.Text$(t3 == null ? "" : t3, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t7), "administrator_help"); t4 = L.Text$(t7 == null ? "" : t7, _null, _null, _null, _null, _null, _null, _null, _null, _null); t7 = userCompany.isAdmin; t3 = H.setRuntimeTypeInfo([Y.FormCard$(_null, H.setRuntimeTypeInfo([O.SwitchListTile$(K.Theme_of(context).accentColor, _null, new U._UserEditState_build_closure3(viewModel, user), _null, t4, t3, t7)], t9), _null, 4, false, _null, false, _null)], t9); if (!t7) { t4 = H.setRuntimeTypeInfo([new S.DataColumn(T.SizedBox$(_null, _null, _null), false, _null), new S.DataColumn(L.Text$(t1.get$create(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null), new S.DataColumn(L.Text$(t1.get$view(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null), new S.DataColumn(L.Text$(t1.get$edit(), _null, _null, _null, _null, _null, _null, _null, _null, _null), false, _null)], type$.JSArray_legacy_DataColumn); t7 = H.setRuntimeTypeInfo([S.DataRow$(H.setRuntimeTypeInfo([S.DataCell$(L.Text$(t1.get$all(), _null, _null, _null, _null, _null, _null, _null, _null, _null), new U._UserEditState_build_closure4(_this)), S.DataCell$(new U._PermissionCheckbox(userCompany, "create_all", new U._UserEditState_build_closure5(_this), false, _null), new U._UserEditState_build_closure6(_this)), S.DataCell$(new U._PermissionCheckbox(userCompany, "view_all", new U._UserEditState_build_closure7(_this), false, _null), new U._UserEditState_build_closure8(_this)), S.DataCell$(new U._PermissionCheckbox(userCompany, "edit_all", new U._UserEditState_build_closure9(_this), false, _null), new U._UserEditState_build_closure10(_this))], type$.JSArray_legacy_DataCell))], type$.JSArray_legacy_DataRow); t12 = type$.MappedIterable_of_legacy_EntityType_and_legacy_DataRow; C.JSArray_methods.addAll$1(t7, P.List_List$of(new H.MappedIterable(new H.WhereIterable(H.setRuntimeTypeInfo([C.EntityType_client, C.EntityType_product, C.EntityType_invoice, C.EntityType_payment, C.EntityType_recurringInvoice, C.EntityType_quote, C.EntityType_credit, C.EntityType_project, C.EntityType_task, C.EntityType_vendor, C.EntityType_expense], type$.JSArray_legacy_EntityType), new U._UserEditState_build_closure11(state), type$.WhereIterable_legacy_EntityType), new U._UserEditState_build_closure12(_this, t1, userCompany), t12), true, t12._eval$1("Iterable.E"))); t3.push(Y.FormCard$(E.SingleChildScrollView$(S.DataTable$(_null, _null, t4, _null, _null, _null, _null, _null, _null, t7, false, true, true, _null), _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_0), _null, _null, 4, false, _null, false, _null)); } return K.EditScaffold$(_null, t8, new X.AppTabForm(_this._user_edit$_focusNode, t6, H.setRuntimeTypeInfo([new X.ScrollableListView(t10, _null, _null, false, _null), new X.ScrollableListView(t11, _null, _null, false, _null), new X.ScrollableListView(t3, _null, _null, false, _null)], t9), t5, _null, _null), _null, user, _null, false, _null, new U._UserEditState_build_closure13(viewModel), new U._UserEditState_build_closure14(_this, viewModel), _null, t2); } }; U._UserEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_user_edit$_onChanged()); }, $signature: 27 }; U._UserEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_user_edit$_onChanged()), false); return null; }, $signature: 27 }; U._UserEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_user_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; U._UserEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._firstNameController._change_notifier$_value.text); b.get$_user_model$_$this()._firstName = t2; t2 = J.trim$0$s(t1._lastNameController._change_notifier$_value.text); b.get$_user_model$_$this()._lastName = t2; t2 = J.trim$0$s(t1._emailController._change_notifier$_value.text); b.get$_user_model$_$this()._email = t2; t2 = J.trim$0$s(t1._phoneController._change_notifier$_value.text); b.get$_user_model$_$this()._phone = t2; t2 = J.trim$0$s(t1._custom1Controller._change_notifier$_value.text); b.get$_user_model$_$this()._customValue1 = t2; t2 = J.trim$0$s(t1._custom2Controller._change_notifier$_value.text); b.get$_user_model$_$this()._customValue2 = t2; t2 = J.trim$0$s(t1._custom3Controller._change_notifier$_value.text); b.get$_user_model$_$this()._customValue3 = t2; t1 = J.trim$0$s(t1._custom4Controller._change_notifier$_value.text); b.get$_user_model$_$this()._customValue4 = t1; return b; }, $signature: 78 }; U._UserEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onUserChanged.call$1(this.user); }, $signature: 1 }; U._UserEditState__togglePermission_closure.prototype = { call$1: function(value) { return value.length !== 0; }, $signature: 16 }; U._UserEditState__togglePermission_closure0.prototype = { call$1: function(b) { b.get$userCompany().get$_company_model$_$this()._permissions = this.permissionsString; return b; }, $signature: 78 }; U._UserEditState_build_closure13.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; U._UserEditState_build_closure14.prototype = { call$1: function(context) { var isValid = $.$get$_UserEditState__formKey().get$currentState().validate$0(), t1 = this.$this; t1.setState$1(new U._UserEditState_build__closure(t1, isValid)); if (!isValid) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; U._UserEditState_build__closure.prototype = { call$0: function() { this.$this.autoValidate = !this.isValid; }, $signature: 1 }; U._UserEditState_build_closure.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterAFirstName() : null; }, $signature: 15 }; U._UserEditState_build_closure0.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterALastName() : null; }, $signature: 15 }; U._UserEditState_build_closure1.prototype = { call$1: function(val) { return val.length === 0 || C.JSString_methods.trim$0(val).length === 0 ? this.localization.get$pleaseEnterYourEmail() : null; }, $signature: 15 }; U._UserEditState_build_closure2.prototype = { call$2: function(channel, options) { this.viewModel.onUserChanged.call$1(this.user.rebuild$1(new U._UserEditState_build__closure9(channel, options))); }, $signature: 451 }; U._UserEditState_build__closure9.prototype = { call$1: function(b) { b.get$userCompany().get$notifications().$indexSet(0, this.channel, D.BuiltList_BuiltList$from(this.options, type$.legacy_String)); return b; }, $signature: 78 }; U._UserEditState_build_closure3.prototype = { call$1: function(value) { return this.viewModel.onUserChanged.call$1(this.user.rebuild$1(new U._UserEditState_build__closure8(value))); }, $signature: 12 }; U._UserEditState_build__closure8.prototype = { call$1: function(b) { b.get$userCompany().get$_company_model$_$this()._isAdmin = this.value; return b; }, $signature: 78 }; U._UserEditState_build_closure4.prototype = { call$0: function() { var t1 = this.$this; t1._togglePermission$1("create_all"); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._UserEditState_build__closure7(t1)); }, $signature: 1 }; U._UserEditState_build__closure7.prototype = { call$1: function(duration) { var t1 = this.$this; t1._togglePermission$1("view_all"); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._UserEditState_build___closure0(t1)); }, $signature: 45 }; U._UserEditState_build___closure0.prototype = { call$1: function(duration) { this.$this._togglePermission$1("edit_all"); }, $signature: 45 }; U._UserEditState_build_closure5.prototype = { call$1: function(value) { return this.$this._togglePermission$1("create_all"); }, $signature: 34 }; U._UserEditState_build_closure6.prototype = { call$0: function() { return this.$this._togglePermission$1("create_all"); }, $signature: 0 }; U._UserEditState_build_closure7.prototype = { call$1: function(value) { return this.$this._togglePermission$1("view_all"); }, $signature: 34 }; U._UserEditState_build_closure8.prototype = { call$0: function() { return this.$this._togglePermission$1("view_all"); }, $signature: 0 }; U._UserEditState_build_closure9.prototype = { call$1: function(value) { return this.$this._togglePermission$1("edit_all"); }, $signature: 34 }; U._UserEditState_build_closure10.prototype = { call$0: function() { return this.$this._togglePermission$1("edit_all"); }, $signature: 0 }; U._UserEditState_build_closure11.prototype = { call$1: function(entityType) { var t1 = this.state, t2 = t1.uiState.selectedCompanyIndex; return J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.isModuleEnabled$1(entityType); }, $signature: 323 }; U._UserEditState_build_closure12.prototype = { call$1: function(type) { var t7, _null = null, createPermission = "create_" + A.toSnakeCase(H.S(type)), editPermission = "edit_" + A.toSnakeCase(H.S(type)), viewPermission = "view_" + A.toSnakeCase(H.S(type)), t1 = this.$this, t2 = S.DataCell$(L.Text$(this.localization.lookup$1(H.S(type)), _null, _null, _null, _null, _null, _null, _null, _null, _null), new U._UserEditState_build__closure0(t1, createPermission, viewPermission, editPermission)), t3 = this.userCompany, t4 = t3.permissions, t5 = C.JSString_methods.contains$1(t4, "create_all"), t6 = t5 ? _null : new U._UserEditState_build__closure1(t1, createPermission); t6 = S.DataCell$(new U._PermissionCheckbox(t3, createPermission, new U._UserEditState_build__closure2(t1, createPermission), t5, _null), t6); t5 = C.JSString_methods.contains$1(t4, "view_all"); t7 = t5 ? _null : new U._UserEditState_build__closure3(t1, viewPermission); t7 = S.DataCell$(new U._PermissionCheckbox(t3, viewPermission, new U._UserEditState_build__closure4(t1, viewPermission), t5, _null), t7); t4 = C.JSString_methods.contains$1(t4, "edit_all"); t5 = t4 ? _null : new U._UserEditState_build__closure5(t1, editPermission); return S.DataRow$(H.setRuntimeTypeInfo([t2, t6, t7, S.DataCell$(new U._PermissionCheckbox(t3, editPermission, new U._UserEditState_build__closure6(t1, editPermission), t4, _null), t5)], type$.JSArray_legacy_DataCell)); }, $signature: 2589 }; U._UserEditState_build__closure0.prototype = { call$0: function() { var _this = this, t1 = _this.$this; t1._togglePermission$1(_this.createPermission); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._UserEditState_build___closure(t1, _this.viewPermission, _this.editPermission)); }, $signature: 1 }; U._UserEditState_build___closure.prototype = { call$1: function(duration) { var t1 = this.$this; t1._togglePermission$1(this.viewPermission); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new U._UserEditState_build____closure(t1, this.editPermission)); }, $signature: 45 }; U._UserEditState_build____closure.prototype = { call$1: function(duration) { this.$this._togglePermission$1(this.editPermission); }, $signature: 45 }; U._UserEditState_build__closure2.prototype = { call$1: function(value) { return this.$this._togglePermission$1(this.createPermission); }, $signature: 34 }; U._UserEditState_build__closure1.prototype = { call$0: function() { return this.$this._togglePermission$1(this.createPermission); }, $signature: 0 }; U._UserEditState_build__closure4.prototype = { call$1: function(value) { return this.$this._togglePermission$1(this.viewPermission); }, $signature: 34 }; U._UserEditState_build__closure3.prototype = { call$0: function() { return this.$this._togglePermission$1(this.viewPermission); }, $signature: 0 }; U._UserEditState_build__closure6.prototype = { call$1: function(value) { return this.$this._togglePermission$1(this.editPermission); }, $signature: 34 }; U._UserEditState_build__closure5.prototype = { call$0: function() { return this.$this._togglePermission$1(this.editPermission); }, $signature: 0 }; U._PermissionCheckbox.prototype = { build$1: function(_, context) { var t2, _this = this, t1 = _this.checkAll; if (t1) t2 = true; else t2 = C.JSString_methods.contains$1(_this.userCompany.permissions, _this.permission); t1 = t1 ? null : _this.onChanged; return K.Checkbox$(K.Theme_of(context).accentColor, false, null, null, t1, false, t2); } }; U.__UserEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; Y.UserEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.UserEditScreen_build_closure(), new Y.UserEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserEditVM); } }; Y.UserEditScreen_build_closure0.prototype = { call$1: function(store) { return Y.UserEditVM_UserEditVM$fromStore(store); }, $signature: 2590 }; Y.UserEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new U.UserEdit(viewModel, new D.ValueKey(viewModel.user.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2591 }; Y.UserEditVM.prototype = { get$user: function() { return this.user; }, get$company: function() { return this.company; } }; Y.UserEditVM_UserEditVM$fromStore_closure.prototype = { call$1: function(user) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.UpdateUser(user)); }, $signature: 174 }; Y.UserEditVM_UserEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, B.UserEntity_UserEntity(_null, _null, _null), _null, true); t1 = this.state.uiState.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; Y.UserEditVM_UserEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new Y.UserEditVM_UserEditVM$fromStore__closure(this.store, context, this.state).call$0(); }, $signature: 14 }; Y.UserEditVM_UserEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, user = t1.get$_store$_state().uiState.userUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_UserEntity); O.passwordCallback(false, new Y.UserEditVM_UserEditVM$fromStore___closure(t1, new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_UserEntity), user), this.context); return t2.then$1$1(0, new Y.UserEditVM_UserEditVM$fromStore___closure0(user, t3, this.state, t1, $navigator), type$.Null).catchError$1(new Y.UserEditVM_UserEditVM$fromStore___closure1()); }, $signature: 31 }; Y.UserEditVM_UserEditVM$fromStore___closure.prototype = { call$2: function(password, idToken) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SaveUserRequest(this.completer, this.user, password, idToken)); }, $signature: 51 }; Y.UserEditVM_UserEditVM$fromStore___closure0.prototype = { call$1: function(savedUser) { var _this = this, _s30_ = "/settings/user_management_view", t1 = _this.user, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_user"); if (t2 == null) t2 = ""; } else t2 = t2.get$updatedUser(); M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s30_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s30_, t1, t1); } else t2.pop$1(0, savedUser); } else M.viewEntity(false, savedUser, null, true); }, $signature: 174 }; Y.UserEditVM_UserEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new Y.UserEditVM_UserEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; Y.UserEditVM_UserEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; E.UserListItem.prototype = { build$1: function(_, context) { var t5, t6, _this = this, _null = null, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, t1 = uiState.userUIState.listUIState.selectedIds, t2 = _this.filter, t3 = t2 != null && t2.length !== 0, t4 = _this.user, filterMatch = t3 ? t4.matchesFilterValue$1(t2) : t4.email; t2 = state.userCompanyStates; t3 = uiState.selectedCompanyIndex; t3 = J.$index$asx(t2._list, t3).userCompany; t1 = t1 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new E.UserListItem_build_closure(_this), false, false), _null) : _null; t2 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t5 = t4.get$fullName().length !== 0 ? t4.get$fullName() : t4.email; t6 = type$.JSArray_legacy_Widget; t2 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2.size._dx); t5 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t3, t4, Q.ListTile$(false, _null, _null, true, false, _null, t1, new E.UserListItem_build_closure0(_this, context), new E.UserListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t5, new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t2, _null), false, true, true, _null); }, get$user: function() { return this.user; } }; E.UserListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.user, false, false); return t1; }, $signature: 0 }; E.UserListItem_build_closure0.prototype = { call$0: function() { var t1 = this.$this.onLongPress.call$0(); return t1; }, $signature: 0 }; E.UserListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; M.UserListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new M.UserListBuilder_build_closure(), M.user_list_vm_UserListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserListVM); } }; M.UserListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state; return S.EntityList$(viewModel.userList, C.EntityType_user, new M.UserListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, null, t2, null); }, $signature: 2592 }; M.UserListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, userId = J.$index$asx(t1.userList, index), user = J.$index$asx(t1.userMap._map$_map, userId); return new E.UserListItem(user, new M.UserListBuilder_build___closure(new M.UserListBuilder_build__closure_showDialog(user)), t1.filter, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2593 }; M.UserListBuilder_build__closure_showDialog.prototype = { call$0: function() { return L.showEntityActionsDialog(null, H.setRuntimeTypeInfo([this.user], type$.JSArray_legacy_BaseEntity), false); }, $signature: 0 }; M.UserListBuilder_build___closure.prototype = { call$0: function() { return this.showDialog.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; M.UserListVM.prototype = {}; M.UserListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; M.UserListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; M.UserListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortUsers(field)); }, $signature: 5 }; M.UserListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.ClearUserMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; G.UserScreen.prototype = { build$1: function(_, context) { var t4, t5, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.userUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.userList; t2 = t2.filter; t5 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, _null, C.EntityType_user, false, C.List_empty14, new G.UserScreen_build_closure(store), new G.UserScreen_build_closure0(store), new G.UserScreen_build_closure1(store), new G.UserScreen_build_closure2(store), new G.UserScreen_build_closure3(store), new G.UserScreen_build_closure4(store), new G.UserScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["first_name", "last_name", "email"], type$.JSArray_legacy_String), C.List_empty15, _null); t3 = state.prefState.appLayout === C.AppLayout_mobile && userCompany.can$2(C.UserPermission_create, C.EntityType_user) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "user_fab", false, new G.UserScreen_build_closure6(context), t3.get$newUser()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_user, t2, new G.UserScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new M.UserListBuilder(_null), t5, C.EntityType_user, t3, 0, _null, new G.UserScreen_build_closure8(store), new G.UserScreen_build_closure9(store)); } }; G.UserScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.StartUserMultiselect()); }, $signature: 9 }; G.UserScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsers(value)); }, $signature: 7 }; G.UserScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.userUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearUserMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartUserMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.UserScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.SortUsers(value)); }, $signature: 5 }; G.UserScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsersByCustom1(value)); }, $signature: 5 }; G.UserScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsersByCustom2(value)); }, $signature: 5 }; G.UserScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsersByCustom3(value)); }, $signature: 5 }; G.UserScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsersByCustom4(value)); }, $signature: 5 }; G.UserScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new X.FilterUsersByState(state)); }, $signature: 53 }; G.UserScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.userUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.ClearUserMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new X.StartUserMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.UserScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_user); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; A.UserScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.UserScreenBuilder_build_closure(), A.user_screen_vm_UserScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserScreenVM); } }; A.UserScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new G.UserScreen(vm, null); }, $signature: 2594 }; A.UserScreenVM.prototype = {}; B.UserView.prototype = { build$1: function(_, context) { var t4, userCompany, t5, t6, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), user = this.viewModel.user, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), t2 = state.userCompanyStates, t3 = state.uiState.selectedCompanyIndex; t2 = t2._list; t4 = J.getInterceptor$asx(t2); userCompany = t4.$index(t2, t3).userCompany; t5 = this.isFilter; t6 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (user.emailVerifiedAt == null) t6.push(new S.IconMessage(t1.get$emailSentToConfirmEmail(), _null, C.MaterialColor_Map_JNZaB_4294940672, _null)); t6.push(D.EntityHeader$(user, t1.get$email(), t1.get$phone(t1), _null, _null, _null, user.email)); t6.push(new G.ListDivider(_null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_client) || userCompany.can$2(C.UserPermission_create, C.EntityType_client)) t6.push(new O.EntitiesListTile(user, C.EntityType_client, t1.get$clients(t1), $.$get$memoizedClientStatsForUser().call$2(user.id, t4.$index(t2, t3).clientState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_invoice) || userCompany.can$2(C.UserPermission_create, C.EntityType_invoice)) t6.push(new O.EntitiesListTile(user, C.EntityType_invoice, t1.get$invoices(), $.$get$memoizedInvoiceStatsForUser().call$2(user.id, t4.$index(t2, t3).invoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_recurringInvoice) || userCompany.can$2(C.UserPermission_create, C.EntityType_recurringInvoice)) t6.push(new O.EntitiesListTile(user, C.EntityType_recurringInvoice, t1.get$recurringInvoices(), $.$get$memoizedRecurringInvoiceStatsForUser().call$2(user.id, t4.$index(t2, t3).recurringInvoiceState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_quote) || userCompany.can$2(C.UserPermission_create, C.EntityType_quote)) t6.push(new O.EntitiesListTile(user, C.EntityType_quote, t1.get$quotes(t1), $.$get$memoizedQuoteStatsForUser().call$2(user.id, t4.$index(t2, t3).quoteState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_credit) || userCompany.can$2(C.UserPermission_create, C.EntityType_credit)) t6.push(new O.EntitiesListTile(user, C.EntityType_credit, t1.get$credits(), $.$get$memoizedCreditStatsForUser().call$2(user.id, t4.$index(t2, t3).creditState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_project) || userCompany.can$2(C.UserPermission_create, C.EntityType_project)) t6.push(new O.EntitiesListTile(user, C.EntityType_project, t1.get$projects(), $.$get$memoizedProjectStatsForUser().call$2(user.id, t4.$index(t2, t3).projectState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_task) || userCompany.can$2(C.UserPermission_create, C.EntityType_task)) t6.push(new O.EntitiesListTile(user, C.EntityType_task, t1.get$tasks(), $.$get$memoizedTaskStatsForUser().call$2(user.id, t4.$index(t2, t3).taskState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_vendor) || userCompany.can$2(C.UserPermission_create, C.EntityType_vendor)) t6.push(new O.EntitiesListTile(user, C.EntityType_vendor, t1.get$vendors(), $.$get$memoizedVendorStatsForUser().call$2(user.id, t4.$index(t2, t3).vendorState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_expense) || userCompany.can$2(C.UserPermission_create, C.EntityType_expense)) t6.push(new O.EntitiesListTile(user, C.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForUser().call$2(user.id, t4.$index(t2, t3).expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); if (userCompany.can$2(C.UserPermission_view, C.EntityType_recurringExpense) || userCompany.can$2(C.UserPermission_create, C.EntityType_recurringExpense)) t6.push(new O.EntitiesListTile(user, C.EntityType_recurringExpense, t1.get$recurringExpenses(), $.$get$memoizedRecurringExpenseStatsForUser().call$2(user.id, t4.$index(t2, t3).recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), t5, false, _null)); return new G.ViewScaffold(t5, user, new X.ScrollableListView(t6, _null, _null, false, _null), new B.UserView_build_closure(this), _null, _null); } }; B.UserView_build_closure.prototype = { call$0: function() { return this.$this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; X.UserViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.UserViewScreen_build_closure(this), new X.UserViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_UserViewVM); } }; X.UserViewScreen_build_closure0.prototype = { call$1: function(store) { return X.UserViewVM_UserViewVM$fromStore(store); }, $signature: 2595 }; X.UserViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new B.UserView(vm, this.$this.isFilter, null); }, $signature: 2596 }; X.UserViewVM.prototype = { get$user: function() { return this.user; }, get$company: function() { return this.company; } }; X.UserViewVM_UserViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/user_management")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.VendorEdit.prototype = { createState$0: function() { return new K._VendorEditState(null, C._StateLifecycle_0); } }; K._VendorEditState.prototype = { initState$0: function() { this.super$State$initState(); this._vendor_edit$_controller = U.TabController$(0, 4, this); }, dispose$0: function(_) { this._vendor_edit$_controller.dispose$0(0); this.super$__VendorEditState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t2, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, isFullscreen = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_vendor); if (vendor.get$isNew()) t2 = t1.get$newVendor(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_vendor"); if (t2 == null) t2 = ""; } t3 = type$.JSArray_legacy_Widget; t1 = E.TabBar$(_this._vendor_edit$_controller, _null, D.getLayout(context) === C.AppLayout_mobile, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$contacts()), E.Tab$(_null, t1.get$notes()), E.Tab$(_null, t1.get$address())], t3)); t4 = $.$get$_VendorEditState__formKey(); t5 = vendor.id; t6 = vendor.updatedAt; t7 = type$.ValueKey_legacy_String; if (isFullscreen) t3 = new G.VendorEditDesktop(viewModel, new D.ValueKey("__vendor_" + t5 + "_" + t6 + "__", t7)); else { t5 = "__vendor_" + t5 + "_" + t6 + "__"; t6 = _this._vendor_edit$_controller; t8 = H.setRuntimeTypeInfo([new Q.VendorEditDetails(_this._widget.viewModel, _null)], t3); t9 = _this._widget.viewModel; t7 = E.TabBarView$(H.setRuntimeTypeInfo([new X.ScrollableListView(t8, _null, _null, false, _null), new T.VendorEditContactsScreen(t9, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new N.VendorEditNotes(t9, _null)], t3), _null, _null, false, _null), new X.ScrollableListView(H.setRuntimeTypeInfo([new G.VendorEditAddress(_this._widget.viewModel, _null)], t3), _null, _null, false, _null)], t3), t6, new D.ValueKey(t5, t7)); t3 = t7; } return K.EditScaffold$(_null, t1, A.Form$(false, t3, t4), new Q.VendorEditFooter(vendor, _null), vendor, _null, isFullscreen, _null, new K._VendorEditState_build_closure(viewModel), new K._VendorEditState_build_closure0(viewModel), _null, t2); } }; K._VendorEditState_build_closure.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; K._VendorEditState_build_closure0.prototype = { call$1: function(context) { if (!$.$get$_VendorEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; K.__VendorEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; G.VendorEditAddress.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new G.VendorEditAddressState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), new O.Debouncer(500, false), C._StateLifecycle_0); } }; G.VendorEditAddressState.prototype = { didChangeDependencies$0: function() { var vendor, _this = this, t1 = _this._vendor_edit_address$_address1Controller, t2 = _this._vendor_edit_address$_address2Controller, t3 = _this._vendor_edit_address$_cityController, t4 = _this._vendor_edit_address$_stateController, t5 = _this._vendor_edit_address$_postalCodeController, t6 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_address$_controllers = t6; C.JSArray_methods.forEach$1(t6, new G.VendorEditAddressState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.address1); t2.set$text(0, vendor.address2); t3.set$text(0, vendor.city); t4.set$text(0, vendor.state); t5.set$text(0, vendor.postalCode); C.JSArray_methods.forEach$1(_this._vendor_edit_address$_controllers, new G.VendorEditAddressState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._vendor_edit_address$_controllers, new G.VendorEditAddressState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_address$_onChanged$0: function() { var _this = this, vendor = _this._widget.viewModel.vendor.rebuild$1(new G.VendorEditAddressState__onChanged_closure(_this)); if (!J.$eq$(vendor, _this._widget.viewModel.vendor)) _this._vendor_edit_address$_debouncer.run$1(new G.VendorEditAddressState__onChanged_closure0(_this, vendor)); }, build$1: function(_, context) { var t6, t7, t8, t9, t10, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, t2 = viewModel.state, t3 = t2.prefState.isEditorFullScreen$1(C.EntityType_vendor) ? C.EdgeInsets_6_12_12_0 : _null, t4 = t1.get$address1(), t5 = viewModel.onSavePressed; t4 = S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_address1Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, _null, _null, false, _null, _null, t5, true, _null, _null, C.TextAlign_4, _null); t6 = S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_address2Controller, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$address2(), _null, _null, false, _null, _null, t5, true, _null, _null, C.TextAlign_4, _null); t7 = S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_cityController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$city(t1), _null, _null, false, _null, _null, t5, true, _null, _null, C.TextAlign_4, _null); t8 = S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_stateController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$state(t1), _null, _null, false, _null, _null, t5, true, _null, _null, C.TextAlign_4, _null); t5 = S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_address$_postalCodeController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$postalCode(t1), _null, _null, false, _null, _null, t5, true, _null, _null, C.TextAlign_4, _null); t9 = vendor.countryId; t10 = "__country_" + t9 + "__"; return Y.FormCard$(_null, H.setRuntimeTypeInfo([t4, t6, t7, t8, t5, F.EntityDropdown$(true, false, false, t9, $.$get$memoizedCountryList().call$1(t2.staticState.countryMap), _null, C.EntityType_country, new D.ValueKey(t10, type$.ValueKey_legacy_String), t1.get$country(t1), _null, new G.VendorEditAddressState_build_closure(viewModel, vendor), _null, _null, _null)], type$.JSArray_legacy_Widget), _null, 4, false, _null, true, t3); } }; G.VendorEditAddressState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_address$_onChanged()); }, $signature: 10 }; G.VendorEditAddressState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_address$_onChanged()); }, $signature: 10 }; G.VendorEditAddressState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_address$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; G.VendorEditAddressState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_address$_address1Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_address1 = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_address2Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_address2 = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_cityController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_city = t2; t2 = J.trim$0$s(t1._vendor_edit_address$_stateController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_state = t2; t1 = J.trim$0$s(t1._vendor_edit_address$_postalCodeController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_postalCode = t1; return b; }, $signature: 120 }; G.VendorEditAddressState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; G.VendorEditAddressState_build_closure.prototype = { call$1: function(country) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new G.VendorEditAddressState_build__closure(country))); }, $signature: 56 }; G.VendorEditAddressState_build__closure.prototype = { call$1: function(b) { var t1 = this.country; t1 = t1 == null ? null : t1.get$id(t1); b.get$_vendor_model$_$this()._vendor_model$_countryId = t1; return b; }, $signature: 120 }; D.VendorEditContacts.prototype = { createState$0: function() { return new D._VendorEditContactsState(C._StateLifecycle_0); } }; D._VendorEditContactsState.prototype = { _showContactEditor$2: function(contact, context) { E.showDialog(true, new D._VendorEditContactsState__showContactEditor_closure(this, contact), context, null, true, type$.legacy_VendorContactEditDetails); }, build$1: function(_, context) { var t3, contacts, contact, t4, t5, t6, children, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, vendor = viewModel.vendor, isFullscreen = t2.vendorViewModel.state.prefState.isEditorFullScreen$1(C.EntityType_vendor); t2 = vendor.contacts._list; t3 = J.getInterceptor$asx(t2); if (t3.get$length(t2) > 1) contacts = t3.map$1$1(t2, new D._VendorEditContactsState_build_closure(_this, context), type$.legacy_ContactListTile_2).toList$0(0); else { contact = t3.$index(t2, 0); t4 = _this._widget.vendorViewModel; t5 = "__" + contact.get$entityType().toString$0(0) + "__" + contact.id + "__"; t6 = t3.get$length(t2); contacts = H.setRuntimeTypeInfo([new D.VendorContactEditDetails(t3.indexOf$2(t2, contact, 0), contact, viewModel, t4, t6 > 1, new D.ValueKey(t5, type$.ValueKey_String))], type$.JSArray_legacy_Widget); } contact = viewModel.contact; contact = t3.contains$1(t2, contact) ? contact : _null; if (contact != null && !contact.$eq(0, _this.selectedContact)) { _this.selectedContact = contact; $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new D._VendorEditContactsState_build_closure0(_this, contact, context)); } children = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); C.JSArray_methods.addAll$1(children, contacts); t1 = t3.get$length(t2) === 1 ? t1.get$addSecondContact() : t1.get$addContact(); children.push(new T.Padding(C.EdgeInsets_25_0_25_6, new D.AppButton(_null, _null, t1.toUpperCase(), new D._VendorEditContactsState_build_closure1(viewModel), _null, _null), _null)); return isFullscreen ? T.Column$(children, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1) : new X.ScrollableListView(children, _null, _null, false, _null); } }; D._VendorEditContactsState__showContactEditor_closure.prototype = { call$1: function(context) { var t2, t3, t4, t5, t6, t1 = this.$this._widget, viewModel = t1.viewModel, vendor = viewModel.vendor; t1 = t1.vendorViewModel; t2 = this.contact; t3 = "__" + t2.get$entityType().toString$0(0) + "__" + t2.id + "__"; t4 = vendor.contacts._list; t5 = J.getInterceptor$asx(t4); t6 = t5.get$length(t4); return new D.VendorContactEditDetails(t5.indexOf$2(t4, t5.firstWhere$2$orElse(t4, new D._VendorEditContactsState__showContactEditor__closure(t2), null), 0), t2, viewModel, t1, t6 > 1, new D.ValueKey(t3, type$.ValueKey_String)); }, $signature: 2597 }; D._VendorEditContactsState__showContactEditor__closure.prototype = { call$1: function(c) { return c.id === this.contact.id; }, $signature: 2598 }; D._VendorEditContactsState_build_closure.prototype = { call$1: function(contact) { return new D.ContactListTile(new D._VendorEditContactsState_build__closure(this.$this, contact, this.context), contact, null); }, $signature: 2599 }; D._VendorEditContactsState_build__closure.prototype = { call$0: function() { return this.$this._showContactEditor$2(this.contact, this.context); }, $signature: 0 }; D._VendorEditContactsState_build_closure0.prototype = { call$1: function(duration) { this.$this._showContactEditor$2(this.contact, this.context); }, $signature: 45 }; D._VendorEditContactsState_build_closure1.prototype = { call$0: function() { return this.viewModel.onAddContactPressed.call$0(); }, $signature: 9 }; D.ContactListTile.prototype = { build$1: function(_, context) { var _null = null, t1 = K.Theme_of(context).canvasColor, t2 = this.contact, t3 = t2.get$fullName().length !== 0 ? L.Text$(t2.get$fullName(), _null, _null, _null, _null, _null, _null, _null, _null, _null) : L.Text$(L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$blankContact(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontStyle_1, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), t4 = t2.email; return M.Material$(C.Duration_200000, true, _null, new T.Padding(C.EdgeInsets_0_4_0_4, T.Column$(H.setRuntimeTypeInfo([Q.ListTile$(false, _null, _null, true, false, _null, _null, _null, this.onTap, false, _null, _null, L.Text$(t4.length !== 0 ? t4 : t2.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t3, L.Icon$(C.IconData_58397_MaterialIcons_null_true, _null, _null)), Z.Divider$(_null, 1, _null)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), C.Clip_0, t1, 0, _null, _null, _null, _null, C.MaterialType_0); }, get$contact: function() { return this.contact; } }; D.VendorContactEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new D.VendorContactEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); }, get$contact: function() { return this.contact; } }; D.VendorContactEditDetailsState.prototype = { _onDoneContactPressed$0: function() { var t1 = this._widget, t2 = t1.isDialog, t3 = this._framework$_element; if (t2) { t1 = t1.viewModel; t3.toString; t1.onDoneContactPressed.call$1(t3); t3 = this._framework$_element; t3.toString; K.Navigator_of(t3, false).pop$0(0); } else { t1 = t1.vendorViewModel; t3.toString; t1.onSavePressed.call$1(t3); } }, didChangeDependencies$0: function() { var t1, t2, t3, t4, t5, contact, _this = this; if (_this._vendor_edit_contacts$_controllers.length !== 0) return; t1 = _this._vendor_edit_contacts$_firstNameController; t2 = _this._vendor_edit_contacts$_lastNameController; t3 = _this._vendor_edit_contacts$_emailController; t4 = _this._vendor_edit_contacts$_phoneController; t5 = H.setRuntimeTypeInfo([t1, t2, t3, t4], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_contacts$_controllers = t5; C.JSArray_methods.forEach$1(t5, new D.VendorContactEditDetailsState_didChangeDependencies_closure(_this)); contact = _this._widget.contact; t1.set$text(0, contact.firstName); t2.set$text(0, contact.lastName); t3.set$text(0, contact.email); t4.set$text(0, contact.phone); C.JSArray_methods.forEach$1(_this._vendor_edit_contacts$_controllers, new D.VendorContactEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._vendor_edit_contacts$_controllers, new D.VendorContactEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_contacts$_onChanged$0: function() { var _this = this, contact = _this._widget.contact.rebuild$1(new D.VendorContactEditDetailsState__onChanged_closure(_this)); if (!contact.$eq(0, _this._widget.contact)) _this._vendor_edit_contacts$_debouncer.run$1(new D.VendorContactEditDetailsState__onChanged_closure0(_this, contact)); }, build$1: function(_, context) { var t3, column, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, viewModel = t2.viewModel, isFullscreen = t2.vendorViewModel.state.prefState.isEditorFullScreen$1(C.EntityType_vendor); t2 = t1.get$firstName(); t3 = type$.JSArray_legacy_Widget; column = T.Column$(H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_firstNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2, _null, _null, false, _null, _null, new D.VendorContactEditDetailsState_build_closure(_this), true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_lastNameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$lastName(), _null, _null, false, _null, _null, new D.VendorContactEditDetailsState_build_closure0(_this), true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_emailController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_5_null_null, t1.get$email(), _null, _null, false, _null, _null, new D.VendorContactEditDetailsState_build_closure1(_this), true, _null, _null, C.TextAlign_4, new D.VendorContactEditDetailsState_build_closure2(t1)), S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_contacts$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, new D.VendorContactEditDetailsState_build_closure3(_this), true, _null, _null, C.TextAlign_4, _null)], t3), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); if (_this._widget.isDialog) { t2 = E.SingleChildScrollView$(column, _null, C.DragStartBehavior_1, _null, _null, false, C.Axis_1); t2 = E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$remove(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new D.VendorContactEditDetailsState_build_closure4(_this, context), _null), U.TextButton$(false, L.Text$(t1.get$done().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new D.VendorContactEditDetailsState_build_closure5(viewModel, context), _null)], t3), C.EdgeInsets_0_0_0_0, _null, t2, C.EdgeInsets_24_20_24_24, _null, _null, _null); t1 = t2; } else t1 = Y.FormCard$(column, _null, _null, 4, false, _null, false, isFullscreen ? C.EdgeInsets_6_12_6_0 : _null); return t1; } }; D.VendorContactEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); }, $signature: 10 }; D.VendorContactEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); }, $signature: 10 }; D.VendorContactEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_contacts$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; D.VendorContactEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_contacts$_firstNameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_firstName = t2; t2 = J.trim$0$s(t1._vendor_edit_contacts$_lastNameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_lastName = t2; t2 = J.trim$0$s(t1._vendor_edit_contacts$_emailController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_email = t2; t1 = J.trim$0$s(t1._vendor_edit_contacts$_phoneController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_phone = t1; return b; }, $signature: 731 }; D.VendorContactEditDetailsState__onChanged_closure0.prototype = { call$0: function() { var t1 = this.$this._widget; t1.viewModel.onChangedContact.call$2(this.contact, t1.index); }, $signature: 1 }; D.VendorContactEditDetailsState_build_closure.prototype = { call$1: function(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 29 }; D.VendorContactEditDetailsState_build_closure0.prototype = { call$1: function(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 29 }; D.VendorContactEditDetailsState_build_closure1.prototype = { call$1: function(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 29 }; D.VendorContactEditDetailsState_build_closure2.prototype = { call$1: function(value) { return value.length !== 0 && !C.JSString_methods.contains$1(value, "@") ? this.localization.get$emailIsInvalid() : null; }, $signature: 15 }; D.VendorContactEditDetailsState_build_closure3.prototype = { call$1: function(_) { return this.$this._onDoneContactPressed$0(); }, $signature: 29 }; D.VendorContactEditDetailsState_build_closure4.prototype = { call$0: function() { var t1 = this.context; return O.confirmCallback(false, new D.VendorContactEditDetailsState_build__closure(this.$this, t1), t1, null, false, null); }, $signature: 0 }; D.VendorContactEditDetailsState_build__closure.prototype = { call$1: function(_) { var t1 = this.$this._widget; t1.viewModel.onRemoveContactPressed.call$1(t1.index); K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 7 }; D.VendorContactEditDetailsState_build_closure5.prototype = { call$0: function() { this.viewModel.onDoneContactPressed.call$0(); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; T.VendorEditContactsScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.VendorEditContactsScreen_build_closure(this), new T.VendorEditContactsScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorEditContactsVM); } }; T.VendorEditContactsScreen_build_closure0.prototype = { call$1: function(store) { return T.VendorEditContactsVM_VendorEditContactsVM$fromStore(store); }, $signature: 2600 }; T.VendorEditContactsScreen_build_closure.prototype = { call$2: function(context, vm) { return new D.VendorEditContacts(vm, this.$this.viewModel, null); }, $signature: 2601 }; T.VendorEditContactsVM.prototype = { get$company: function() { return this.company; }, get$vendor: function(receiver) { return this.vendor; }, get$contact: function() { return this.contact; } }; T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure.prototype = { call$0: function() { var contact = B.VendorContactEntity_VendorContactEntity(), t1 = this.store; J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.AddVendorContact(contact)); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.EditVendorContact(contact)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0.prototype = { call$1: function(index) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.DeleteVendorContact(index)); }, $signature: 173 }; T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.EditVendorContact(null)); }, $signature: 9 }; T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2.prototype = { call$2: function(contact, index) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateVendorContact(index, contact)); }, $signature: 2602 }; G.VendorEditDesktop.prototype = { build$1: function(_, context) { var _null = null, t1 = this.viewModel, t2 = type$.JSArray_legacy_Widget; return new X.ScrollableListView(H.setRuntimeTypeInfo([T.Row$(H.setRuntimeTypeInfo([T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new Q.VendorEditDetails(t1, _null), new N.VendorEditNotes(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new T.VendorEditContactsScreen(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1), T.Expanded$(U.FocusTraversalGroup$(T.Column$(H.setRuntimeTypeInfo([new G.VendorEditAddress(t1, _null)], t2), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null), 1)], t2), C.CrossAxisAlignment_0, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.SizedBox$(_null, 12, _null)], t2), _null, _null, false, _null); } }; Q.VendorEditDetails.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new Q.VendorEditDetailsState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; Q.VendorEditDetailsState.prototype = { didChangeDependencies$0: function() { var vendor, _this = this, t1 = _this._vendor_edit_details$_numberController, t2 = _this._vendor_edit_details$_nameController, t3 = _this._vendor_edit_details$_idNumberController, t4 = _this._vendor_edit_details$_vatNumberController, t5 = _this._vendor_edit_details$_websiteController, t6 = _this._vendor_edit_details$_phoneController, t7 = _this._vendor_edit_details$_custom1Controller, t8 = _this._vendor_edit_details$_custom2Controller, t9 = _this._vendor_edit_details$_custom3Controller, t10 = _this._vendor_edit_details$_custom4Controller, t11 = H.setRuntimeTypeInfo([t1, t2, t3, t4, t5, t6, t7, t8, t9, t10], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_details$_controllers = t11; C.JSArray_methods.forEach$1(t11, new Q.VendorEditDetailsState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.number); t2.set$text(0, vendor.name); t3.set$text(0, vendor.idNumber); t4.set$text(0, vendor.vatNumber); t5.set$text(0, vendor.website); t6.set$text(0, vendor.phone); t7.set$text(0, vendor.customValue1); t8.set$text(0, vendor.customValue2); t9.set$text(0, vendor.customValue3); t10.set$text(0, vendor.customValue4); t10 = _this._vendor_edit_details$_controllers; (t10 && C.JSArray_methods).forEach$1(t10, new Q.VendorEditDetailsState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._vendor_edit_details$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new Q.VendorEditDetailsState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_details$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.vendor, vendor = t1.rebuild$1(new Q.VendorEditDetailsState__onChanged_closure(this)); if (!J.$eq$(vendor, t1)) this._vendor_edit_details$_debouncer.run$1(new Q.VendorEditDetailsState__onChanged_closure0(viewModel, vendor)); }, build$1: function(_, context) { var _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = _this._widget.viewModel, vendor = viewModel.vendor, t2 = viewModel.state.prefState.isEditorFullScreen$1(C.EntityType_vendor) ? C.EdgeInsets_12_12_6_0 : _null, t3 = viewModel.onSavePressed, t4 = t1.get$name(t1); t4 = H.setRuntimeTypeInfo([S.DecoratedFormField$(false, _null, true, false, _this._vendor_edit_details$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t4, _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, new Q.VendorEditDetailsState_build_closure(context))], type$.JSArray_legacy_Widget); if (!vendor.get$isNew()) t4.push(S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_numberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$number(t1), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(new V.UserPicker(vendor.assignedUserId, new Q.VendorEditDetailsState_build_closure0(viewModel, vendor), _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_idNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$idNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_vatNumberController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t1.get$vatNumber(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_websiteController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_6_null_null, t1.get$website(), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(S.DecoratedFormField$(false, _null, false, false, _this._vendor_edit_details$_phoneController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_3_null_null, t1.get$phone(t1), _null, _null, false, _null, _null, t3, true, _null, _null, C.TextAlign_4, _null)); t4.push(new B.CustomField(_this._vendor_edit_details$_custom1Controller, _null, t3, "vendor1", vendor.customValue1, false, _null)); t4.push(new B.CustomField(_this._vendor_edit_details$_custom2Controller, _null, t3, "vendor2", vendor.customValue2, false, _null)); t4.push(new B.CustomField(_this._vendor_edit_details$_custom3Controller, _null, t3, "vendor3", vendor.customValue3, false, _null)); t4.push(new B.CustomField(_this._vendor_edit_details$_custom4Controller, _null, t3, "vendor4", vendor.customValue4, false, _null)); return Y.FormCard$(_null, t4, _null, 4, false, _null, true, t2); } }; Q.VendorEditDetailsState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_details$_onChanged()); }, $signature: 10 }; Q.VendorEditDetailsState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_details$_onChanged()); }, $signature: 10 }; Q.VendorEditDetailsState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_details$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; Q.VendorEditDetailsState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = J.trim$0$s(t1._vendor_edit_details$_numberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_number = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_nameController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_name = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_idNumberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_idNumber = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_vatNumberController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_vatNumber = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_websiteController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_website = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_phoneController._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_phone = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom1Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue1 = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom2Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue2 = t2; t2 = J.trim$0$s(t1._vendor_edit_details$_custom3Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue3 = t2; t1 = J.trim$0$s(t1._vendor_edit_details$_custom4Controller._change_notifier$_value.text); b.get$_vendor_model$_$this()._vendor_model$_customValue4 = t1; return b; }, $signature: 120 }; Q.VendorEditDetailsState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; Q.VendorEditDetailsState_build_closure.prototype = { call$1: function(val) { return val == null || val.length === 0 ? L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$pleaseEnterAName() : null; }, $signature: 15 }; Q.VendorEditDetailsState_build_closure0.prototype = { call$1: function(userId) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new Q.VendorEditDetailsState_build__closure(userId))); }, $signature: 5 }; Q.VendorEditDetailsState_build__closure.prototype = { call$1: function(b) { b.get$_vendor_model$_$this()._vendor_model$_assignedUserId = this.userId; return b; }, $signature: 120 }; Q.VendorEditFooter.prototype = { build$1: function(_, context) { var showLayoutToggle, t3, t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), store = O.StoreProvider_of(context, type$.legacy_AppState), t2 = store.get$_store$_state().prefState, useSidebarEditor = J.$index$asx(t2.useSidebarEditor._map$_map, C.EntityType_vendor); if (useSidebarEditor == null) useSidebarEditor = false; showLayoutToggle = D.getLayout(context) === C.AppLayout_desktop; t3 = K.Theme_of(context).cardColor; t4 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); if (showLayoutToggle) { t1 = useSidebarEditor ? t1.get$fullscreenEditor() : t1.get$sidebarEditor(); t4.push(S.Tooltip$(R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_8_0_8_0, L.Icon$(useSidebarEditor ? C.IconData_57694_MaterialIcons_null_true : C.IconData_57695_MaterialIcons_null_true, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Q.VendorEditFooter_build_closure(store), _null, _null, _null, _null, _null), t1)); } t4.push(new T.AppBorder(new T.Padding(C.EdgeInsets_16_8_0_0, L.Text$(this.vendor.name, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, t2.enableDarkMode ? C.Color_4294967295 : C.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, 20, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null, showLayoutToggle, false, _null)); return B.BottomAppBar$(T.SizedBox$(new T.AppBorder(T.Row$(t4, C.CrossAxisAlignment_3, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), true, _null, false, _null), 50, _null), t3, 0, new V.CircularNotchedRectangle()); }, get$vendor: function(receiver) { return this.vendor; } }; Q.VendorEditFooter_build_closure.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new M.ToggleEditorLayout(C.EntityType_vendor)); }, $signature: 9 }; N.VendorEditNotes.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new N.VendorEditNotesState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), C._StateLifecycle_0); } }; N.VendorEditNotesState.prototype = { didChangeDependencies$0: function() { var vendor, _this = this, t1 = _this._vendor_edit_notes$_publicNotesController, t2 = _this._vendor_edit_notes$_privateNotesController, t3 = H.setRuntimeTypeInfo([t1, t2], type$.JSArray_legacy_TextEditingController); _this._vendor_edit_notes$_controllers = t3; C.JSArray_methods.forEach$1(t3, new N.VendorEditNotesState_didChangeDependencies_closure(_this)); vendor = _this._widget.viewModel.vendor; t1.set$text(0, vendor.publicNotes); t2.set$text(0, vendor.privateNotes); t2 = _this._vendor_edit_notes$_controllers; (t2 && C.JSArray_methods).forEach$1(t2, new N.VendorEditNotesState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1 = this._vendor_edit_notes$_controllers; (t1 && C.JSArray_methods).forEach$1(t1, new N.VendorEditNotesState_dispose_closure(this)); this.super$State$dispose(0); }, _vendor_edit_notes$_onChanged$0: function() { var viewModel = this._widget.viewModel, t1 = viewModel.vendor, vendor = t1.rebuild$1(new N.VendorEditNotesState__onChanged_closure(this)); if (!J.$eq$(vendor, t1)) this._vendor_edit_notes$_debouncer.run$1(new N.VendorEditNotesState__onChanged_closure0(viewModel, vendor)); }, build$1: function(_, context) { var t3, t4, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, t2 = viewModel.state, staticState = t2.staticState, vendor = viewModel.vendor; t2 = t2.prefState.isEditorFullScreen$1(C.EntityType_vendor) ? C.EdgeInsets_12_12_6_0 : _null; t3 = vendor.currencyId; t4 = "__currency_" + t3 + "__"; return Y.FormCard$(_null, H.setRuntimeTypeInfo([F.EntityDropdown$(true, false, false, t3, $.$get$memoizedCurrencyList().call$1(staticState.currencyMap), _null, C.EntityType_currency, new D.ValueKey(t4, type$.ValueKey_legacy_String), t1.get$currency(), _null, new N.VendorEditNotesState_build_closure(viewModel, vendor), _null, _null, _null), S.DecoratedFormField$(false, _null, false, false, this._vendor_edit_notes$_publicNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$publicNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null), S.DecoratedFormField$(false, _null, false, false, this._vendor_edit_notes$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_1_null_null, t1.get$privateNotes(), 4, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, _null)], type$.JSArray_legacy_Widget), _null, 4, false, _null, true, t2); } }; N.VendorEditNotesState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return J.removeListener$1$x(controller, this.$this.get$_vendor_edit_notes$_onChanged()); }, $signature: 10 }; N.VendorEditNotesState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { return J.addListener$1$x(controller, this.$this.get$_vendor_edit_notes$_onChanged()); }, $signature: 10 }; N.VendorEditNotesState_dispose_closure.prototype = { call$1: function(controller) { var t1 = J.getInterceptor$x(controller); t1.removeListener$1(controller, this.$this.get$_vendor_edit_notes$_onChanged()); t1.dispose$0(controller); }, $signature: 8 }; N.VendorEditNotesState__onChanged_closure.prototype = { call$1: function(b) { var t1 = this.$this, t2 = t1._vendor_edit_notes$_publicNotesController._change_notifier$_value.text; b.get$_vendor_model$_$this()._vendor_model$_publicNotes = t2; t1 = t1._vendor_edit_notes$_privateNotesController._change_notifier$_value.text; b.get$_vendor_model$_$this()._vendor_model$_privateNotes = t1; return b; }, $signature: 120 }; N.VendorEditNotesState__onChanged_closure0.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.vendor); }, $signature: 1 }; N.VendorEditNotesState_build_closure.prototype = { call$1: function(currency) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new N.VendorEditNotesState_build__closure(currency))); }, $signature: 56 }; N.VendorEditNotesState_build__closure.prototype = { call$1: function(b) { var t1 = this.currency; t1 = t1 == null ? null : t1.get$id(t1); if (t1 == null) t1 = ""; b.get$_vendor_model$_$this()._vendor_model$_currencyId = t1; return b; }, $signature: 120 }; A.VendorEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new A.VendorEditScreen_build_closure(), new A.VendorEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorEditVM); } }; A.VendorEditScreen_build_closure0.prototype = { call$1: function(store) { return A.VendorEditVM_VendorEditVM$fromStore(store); }, $signature: 2603 }; A.VendorEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new K.VendorEdit(viewModel, new D.ValueKey(viewModel.vendor.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2604 }; A.VendorEditVM.prototype = { get$vendor: function(receiver) { return this.vendor; }, get$company: function() { return this.company; } }; A.VendorEditVM_VendorEditVM$fromStore_closure.prototype = { call$1: function(vendor) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.UpdateVendor(vendor)); }, $signature: 227 }; A.VendorEditVM_VendorEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, t2, _null = null; M.createEntity(_null, _null, context, B.VendorEntity_VendorEntity(_null, _null, _null), _null, true); t1 = this.state.uiState; t2 = t1.vendorUIState.cancelCompleter; if (t2 != null) t2.complete$0(0); else { t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); } }, $signature: 14 }; A.VendorEditVM_VendorEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new A.VendorEditVM_VendorEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; A.VendorEditVM_VendorEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, contact, t1 = this.store, vendor = t1.get$_store$_state().uiState.vendorUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); contact = J.get$first$ax(vendor.contacts._list); if (!(vendor.name.length !== 0 || contact.get$fullName().length !== 0 || contact.email.length !== 0)) { E.showDialog(true, new A.VendorEditVM_VendorEditVM$fromStore___closure(t3), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), null, true, type$.legacy_ErrorDialog); return null; } t2 = new P._Future($.Zone__current, type$._Future_legacy_VendorEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.SaveVendorRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_VendorEntity), vendor)); return t2.then$1$1(0, new A.VendorEditVM_VendorEditVM$fromStore___closure0(vendor, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.VendorEditVM_VendorEditVM$fromStore___closure1()); }, $signature: 31 }; A.VendorEditVM_VendorEditVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.localization.get$pleaseEnterAName(), false, null); }, $signature: 21 }; A.VendorEditVM_VendorEditVM$fromStore___closure0.prototype = { call$1: function(savedVendor) { var t3, _this = this, _s12_ = "/vendor/view", t1 = _this.vendor, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_vendor"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_vendor"); if (t2 == null) t2 = ""; } M.showToast(t2); t2 = _this.state; t3 = t2.prefState; if (t3.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s12_)); t1 = t1.get$isNew() && t2.uiState.vendorUIState.saveCompleter == null; t2 = _this.navigator; if (t1) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s12_, t1, t1); } else t2.pop$1(0, savedVendor); } else { if (!t3.isPreviewVisible) J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new M.TogglePreviewSidebar()); M.viewEntity(false, savedVendor, null, true); } }, $signature: 227 }; A.VendorEditVM_VendorEditVM$fromStore___closure1.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new A.VendorEditVM_VendorEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; A.VendorEditVM_VendorEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; Z.VendorListItem.prototype = { build$1: function(_, context) { var textStyle, textColor, t2, documents, t3, t4, t5, _this = this, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), uiState = state.uiState, vendorUIState = uiState.vendorUIState, t1 = _this.filter, filterMatch = t1 != null && t1.length !== 0 ? _this.vendor.matchesFilterValue$1(t1) : _null, listUIState = vendorUIState.listUIState; t1 = listUIState.selectedIds; textStyle = A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 16, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null); textColor = K.Theme_of(context).textTheme.bodyText1.color; t2 = _this.vendor; documents = t2.documents; if (documents == null) documents = H.setRuntimeTypeInfo([], type$.JSArray_legacy_DocumentEntity); if (D.getLayout(context) === C.AppLayout_desktop) { t3 = t2.id; t3 = t3 === (uiState.get$isEditing() ? vendorUIState.editing.id : vendorUIState.selectedId); } else t3 = false; t4 = store.get$_store$_state(); t5 = t4.userCompanyStates; t4 = t4.uiState.selectedCompanyIndex; return new L.DismissibleEntity(J.$index$asx(t5._list, t4).userCompany, t2, new A.LayoutBuilder(new Z.VendorListItem_build_closure(_this, t1 != null, listUIState, state, textStyle, documents, filterMatch, textColor), _null), t3, true, true, _null); }, get$user: function() { return this.user; }, get$vendor: function(receiver) { return this.vendor; } }; Z.VendorListItem_build_closure.prototype = { call$2: function(context, constraints) { var t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null, t1 = _this.$this; if (constraints.maxWidth > 550) { if (_this.showCheckbox) t2 = new T.Padding(C.EdgeInsets_0_0_20_0, new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new Z.VendorListItem_build__closure(t1), false, t1.isChecked), _null), _null); else { t2 = t1.vendor; t3 = _this.state; t4 = t3.uiState.selectedCompanyIndex; t4 = D.ActionMenuButton$(t2, t2.getActions$1$userCompany(J.$index$asx(t3.userCompanyStates._list, t4).userCompany), _null, _null, false, new Z.VendorListItem_build__closure0(t1)); t2 = t4; } t3 = t1.vendor; t4 = _this.textStyle; t5 = type$.JSArray_legacy_Widget; t6 = H.setRuntimeTypeInfo([L.Text$(t3.number, _null, _null, C.TextOverflow_2, _null, _null, t4, _null, _null, _null)], t5); if (!(!t3.get$isArchived() && !t3.isDeleted)) t6.push(new L.EntityStateLabel(t3, _null)); t6 = T.SizedBox$(T.Column$(t6, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, 100); t7 = T.SizedBox$(_null, _null, 10); t3 = t3.name; t3 = H.setRuntimeTypeInfo([L.Text$(t3 + (J.get$isNotEmpty$asx(_this.documents) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, t4, _null, _null, _null)], t5); t4 = _this.filterMatch; if (t4 != null) { t8 = _this.textColor; t3.push(L.Text$(t4, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t8.get$value(t8) >>> 16 & 255, t8.get$value(t8) >>> 8 & 255, t8.get$value(t8) & 255)), _null, _null, _null)); } t1 = R.InkWell$(false, _null, true, new T.Padding(C.EdgeInsets_10_4_28_4, T.Row$(H.setRuntimeTypeInfo([new T.Padding(C.EdgeInsets_0_0_16_0, t2, _null), t6, t7, T.Expanded$(T.Column$(t3, C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), 1), T.SizedBox$(_null, _null, 10)], t5), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new Z.VendorListItem_build__closure1(t1, context), new Z.VendorListItem_build__closure2(t1, context), _null, _null, _null, _null, _null); } else { t2 = _this.showCheckbox ? new T.IgnorePointer(_this.listUIState.selectedIds != null, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new Z.VendorListItem_build__closure3(t1), false, t1.isChecked), _null) : _null; t3 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t4 = t1.vendor; t5 = t4.name; t6 = type$.JSArray_legacy_Widget; t3 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t5 + (J.get$isNotEmpty$asx(_this.documents) ? " \ud83d\udcce" : ""), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1)], t6), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3.size._dx); t5 = _this.filterMatch; if (t5 != null) { t7 = _this.textColor; t7 = L.Text$(t5, _null, 3, C.TextOverflow_2, _null, _null, K.Theme_of(context).textTheme.subtitle2.copyWith$1$color(P.Color$fromARGB(153, t7.get$value(t7) >>> 16 & 255, t7.get$value(t7) >>> 8 & 255, t7.get$value(t7) & 255)), _null, _null, _null); t5 = t7; } else t5 = L.Text$(t4.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = Q.ListTile$(false, _null, _null, true, false, _null, t2, new Z.VendorListItem_build__closure4(t1, context), new Z.VendorListItem_build__closure5(t1, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t5, new L.EntityStateLabel(t4, _null)], t6), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t3, _null); t1 = t3; } return t1; }, $signature: 97 }; Z.VendorListItem_build__closure2.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.vendor, false, false); return t1; }, $signature: 0 }; Z.VendorListItem_build__closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.vendor, false, true); return t1; }, $signature: 0 }; Z.VendorListItem_build__closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; Z.VendorListItem_build__closure0.prototype = { call$2: function(context, action) { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.$this.vendor], type$.JSArray_legacy_BaseEntity), action, false); return null; }, $signature: 57 }; Z.VendorListItem_build__closure5.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.vendor, false, false); return t1; }, $signature: 0 }; Z.VendorListItem_build__closure4.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.vendor, false, true); return t1; }, $signature: 0 }; Z.VendorListItem_build__closure3.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; E.VendorListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new E.VendorListBuilder_build_closure(), E.vendor_list_vm_VendorListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorListVM); } }; E.VendorListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.vendorList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_vendor, new E.VendorListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new N.VendorPresenter(), t2, t4); }, $signature: 2605 }; E.VendorListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, vendorId = J.$index$asx(t1.vendorList, index), vendor = J.$index$asx(t1.vendorMap._map$_map, vendorId), state = t1.state, t2 = state.getUIState$1(C.EntityType_vendor).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = vendor.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new Z.VendorListItem(t4, vendor, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2606 }; E.VendorListVM.prototype = {}; E.VendorListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; E.VendorListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; E.VendorListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SortVendors(field)); }, $signature: 5 }; E.VendorListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.ClearVendorMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; N.VendorPresenter.prototype = { getField$2$context$field: function(context, field) { var t1, t2, _this = this, _null = null, vendor = type$.legacy_VendorEntity._as(_this.entity), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(); switch (field) { case "name": return L.Text$(vendor.name, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "city": return L.Text$(vendor.city, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "phone": return L.Text$(vendor.phone, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "state": return L.Text$(vendor.state, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address1": return L.Text$(vendor.address1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "address2": return L.Text$(vendor.address2, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "id_number": return L.Text$(vendor.idNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "number": return L.Text$(vendor.number, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "postal_code": return L.Text$(vendor.postalCode, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "country_id": t1 = state.staticState.countryMap; t2 = vendor.countryId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "private_notes": return L.Text$(vendor.privateNotes, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "website": return L.Text$(vendor.website, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "vat_number": return L.Text$(vendor.vatNumber, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "currency_id": t1 = state.staticState.currencyMap; t2 = vendor.currencyId; t2 = J.$index$asx(t1._map$_map, t2); t1 = t2 == null ? _null : t2.name; return L.Text$(t1 == null ? "" : t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom1": return L.Text$(_this.presentCustomField$2(context, vendor.customValue1), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom2": return L.Text$(_this.presentCustomField$2(context, vendor.customValue2), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom3": return L.Text$(_this.presentCustomField$2(context, vendor.customValue3), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "custom4": return L.Text$(_this.presentCustomField$2(context, vendor.customValue4), _null, _null, _null, _null, _null, _null, _null, _null, _null); case "documents": return L.Text$(H.S(J.get$length$asx(vendor.documents._list)), _null, _null, _null, _null, _null, _null, _null, _null, _null); } return _this.super$EntityPresenter$getField(context, field); } }; K.VendorScreen.prototype = { build$1: function(_, context) { var userCompany, t4, t5, t6, t7, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, company = J.$index$asx(t1._list, t3).userCompany.company; t3 = store.get$_store$_state(); t1 = t3.userCompanyStates; t3 = t3.uiState.selectedCompanyIndex; userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.vendorUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.vendorList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo(["number", "name", "city", "phone", "entity_state", "created_at"], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6.push("address1"); t6.push("address2"); t6.push("postal_code"); t6.push("country_id"); t6.push("private_notes"); t6.push("website"); t6.push("vat_number"); t6.push("id_number"); t6.push("currency_id"); t6.push("custom1"); t6.push("custom2"); t6.push("custom3"); t6.push("custom4"); t6.push("updated_at"); t6.push("archived_at"); t6.push("documents"); t7 = H.setRuntimeTypeInfo(["number", "name", "city", "phone", "entity_state", "created_at"], t5); t6 = Z.AppBottomBar$(company.getCustomFieldValues$2$excludeBlank("vendor1", true), company.getCustomFieldValues$2$excludeBlank("vendor2", true), company.getCustomFieldValues$2$excludeBlank("vendor3", true), company.getCustomFieldValues$2$excludeBlank("vendor4", true), t7, C.EntityType_vendor, false, C.List_empty14, new K.VendorScreen_build_closure(store), new K.VendorScreen_build_closure0(store), new K.VendorScreen_build_closure1(store), new K.VendorScreen_build_closure2(store), new K.VendorScreen_build_closure3(store), new K.VendorScreen_build_closure4(store), new K.VendorScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["name", "number", "updated_at"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_vendor) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "vendor_fab", false, new K.VendorScreen_build_closure6(context), t3.get$newVendor()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_vendor, t2, new K.VendorScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new E.VendorListBuilder(_null), t6, C.EntityType_vendor, t3, 0, _null, new K.VendorScreen_build_closure8(store), new K.VendorScreen_build_closure9(store)); } }; K.VendorScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.StartVendorMultiselect()); }, $signature: 9 }; K.VendorScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendors(value)); }, $signature: 7 }; K.VendorScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.vendorUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ClearVendorMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.StartVendorMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.VendorScreen_build_closure4.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SortVendors(value)); }, $signature: 5 }; K.VendorScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendorsByCustom1(value)); }, $signature: 5 }; K.VendorScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendorsByCustom2(value)); }, $signature: 5 }; K.VendorScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendorsByCustom3(value)); }, $signature: 5 }; K.VendorScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendorsByCustom4(value)); }, $signature: 5 }; K.VendorScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.FilterVendorsByState(state)); }, $signature: 53 }; K.VendorScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.vendorUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.ClearVendorMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new L.StartVendorMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; K.VendorScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_vendor); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; B.VendorScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new B.VendorScreenBuilder_build_closure(), B.vendor_screen_vm_VendorScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorScreenVM); } }; B.VendorScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new K.VendorScreen(vm, null); }, $signature: 2607 }; B.VendorScreenVM.prototype = {}; N.VendorView.prototype = { createState$0: function() { return new N._VendorViewState(null, C._StateLifecycle_0); } }; N._VendorViewState.prototype = { initState$0: function() { var t1, state, t2, _this = this; _this.super$State$initState(); t1 = _this._widget; state = t1.viewModel.state; t2 = U.TabController$(t1.isFilter ? 0 : state.uiState.vendorUIState.tabIndex, 3, _this); _this._vendor_view$_controller = t2; t2 = t2.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_vendor_view$_onTabChanged()), false); }, _vendor_view$_onTabChanged$0: function() { var t1, store; if (this._widget.isFilter) return; t1 = this._framework$_element; t1.toString; store = O.StoreProvider_of(t1, type$.legacy_AppState); t1 = this._vendor_view$_controller._tab_controller$_index; J.$index$asx(store.get$_dispatchers(), 0).call$1(new L.UpdateVendorTab(t1)); }, didUpdateWidget$1: function(oldWidget) { var t1, t2; this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.tabIndex; t2 = this._widget.tabIndex; if (t1 !== t2) this._vendor_view$_controller._changeIndex$1(t2); }, dispose$0: function(_) { var _this = this; _this._vendor_view$_controller.removeListener$1(0, _this.get$_vendor_view$_onTabChanged()); _this._vendor_view$_controller.dispose$0(0); _this.super$__VendorViewState_State_SingleTickerProviderStateMixin$dispose(0); }, build$1: function(_, context) { var t3, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = this._widget, viewModel = t2.viewModel, vendor = viewModel.vendor; t2 = t2.isFilter; t3 = E.TabBar$(this._vendor_view$_controller, _null, false, _null, _null, H.setRuntimeTypeInfo([E.Tab$(_null, t1.get$overview()), E.Tab$(_null, t1.get$details(t1)), E.Tab$(_null, t1.get$documents())], type$.JSArray_legacy_Widget)); E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "vendor_view_fab", false, new N._VendorViewState_build_closure(viewModel, context), t1.get$create(t1)); return new G.ViewScaffold(t2, vendor, new T.Builder(new N._VendorViewState_build_closure0(this, viewModel, vendor), _null), _null, t3, _null); } }; N._VendorViewState_build_closure0.prototype = { call$1: function(context) { var _null = null, t1 = this.$this, t2 = t1._vendor_view$_controller, t3 = this.viewModel, t4 = type$.JSArray_legacy_Widget; return T.Column$(H.setRuntimeTypeInfo([T.Expanded$(E.TabBarView$(H.setRuntimeTypeInfo([N.RefreshIndicator$(new E.VendorOverview(t3, t1._widget.isFilter, _null), new N._VendorViewState_build__closure(t3, context)), N.RefreshIndicator$(new Y.VendorViewDetails(t3.vendor, _null), new N._VendorViewState_build__closure0(t3, context)), N.RefreshIndicator$(new G.VendorViewDocuments(t3, _null), new N._VendorViewState_build__closure1(t3, context))], t4), t2, _null), 1), new Z.BottomButtons(this.vendor, C.EntityAction_newExpense, C.EntityAction_archive, true, true, _null)], t4), C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1); }, $signature: 197 }; N._VendorViewState_build__closure.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; N._VendorViewState_build__closure0.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; N._VendorViewState_build__closure1.prototype = { call$0: function() { return this.viewModel.onRefreshed.call$1(this.context); }, $signature: 26 }; N._VendorViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onAddExpensePressed.call$1(this.context); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; N.__VendorViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; Y.VendorViewDetails.prototype = { createState$0: function() { return new Y._VendorViewDetailsState(C._StateLifecycle_0); }, get$vendor: function(receiver) { return this.vendor; } }; Y._VendorViewDetailsState.prototype = { _launchURL$2: function(context, url) { return this._launchURL$body$_VendorViewDetailsState(context, url); }, _launchURL$body$_VendorViewDetailsState: function(context, url) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Null), t1; var $async$_launchURL$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $async$goto = 5; return P._asyncAwait(T.canLaunch(url), $async$_launchURL$2); case 5: // returning from await. $async$goto = $async$result ? 2 : 4; break; case 2: // then $async$goto = 6; return P._asyncAwait(T.launch(url, false, false), $async$_launchURL$2); case 6: // returning from await. // goto join $async$goto = 3; break; case 4: // else throw H.wrapException(t1.get$couldNotLaunch()); case 3: // join // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_launchURL$2, $async$completer); }, _launchStatus$2: function(context, snapshot) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = snapshot.error; if (t2 != null) return L.Text$(t1.get$error(t1) + ": " + H.S(t2), _null, _null, _null, _null, _null, _null, _null, _null, _null); else return C.Text_W3F; }, build$1: function(_, context) { var t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); return new X.ScrollableListView(new Y._VendorViewDetailsState_build__buildDetailsList(this, this._widget.vendor, t1, context).call$0(), null, null, false, null); } }; Y._VendorViewDetailsState_build__buildDetailsList.prototype = { call$0: function() { var t5, address, _this = this, _null = null, listTiles = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget), t1 = _this.vendor, t2 = _this.$this, t3 = _this.localization, t4 = _this.context; J.forEach$1$ax(t1.contacts._list, new Y._VendorViewDetailsState_build__buildDetailsList_closure(t2, listTiles, t3, t4)); t5 = t1.website; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58240_MaterialIcons_null_false, new Y._VendorViewDetailsState_build__buildDetailsList_closure0(t2, t4, t1), t3.get$website(), t5)); t5 = t1.phone; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58530_MaterialIcons_null_false, new Y._VendorViewDetailsState_build__buildDetailsList_closure1(t2, t4, t1), t3.get$phone(t3), t5)); t5 = t1.vatNumber; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58280_MaterialIcons_null_false, _null, t3.get$vatNumber(), t5)); t5 = t1.idNumber; if (t5.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_57627_MaterialIcons_null_false, _null, t3.get$idNumber(), t5)); address = Y.formatAddress("\n", false, t1); if (address.length !== 0) listTiles.push(G.AppListTile$(_null, _null, C.IconData_58567_MaterialIcons_null_false, new Y._VendorViewDetailsState_build__buildDetailsList_closure2(t2, t4, t1), t3.get$billingAddress(), address)); listTiles.push(new T.Padding(C.EdgeInsets_16_16_16_16, B.FutureBuilder$(t2.get$_launchStatus(), t2._launched, type$.Null), _null)); return listTiles; }, $signature: 198 }; Y._VendorViewDetailsState_build__buildDetailsList_closure.prototype = { call$1: function(contact) { var t2, t3, _this = this, t1 = contact.email; if (t1.length !== 0) { t2 = contact.get$fullName() + "\n" + t1; _this.listTiles.push(G.AppListTile$(null, t1, C.IconData_57898_MaterialIcons_null_false, new Y._VendorViewDetailsState_build__buildDetailsList__closure1(_this.$this, _this.context, contact), _this.localization.get$email(), t2)); } t1 = contact.phone; if (t1.length !== 0) { t2 = contact.get$fullName() + "\n" + t1; t3 = _this.localization; _this.listTiles.push(G.AppListTile$(null, t1, C.IconData_58530_MaterialIcons_null_false, new Y._VendorViewDetailsState_build__buildDetailsList__closure2(_this.$this, _this.context, contact), t3.get$phone(t3), t2)); } }, $signature: 2608 }; Y._VendorViewDetailsState_build__buildDetailsList__closure1.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Y._VendorViewDetailsState_build__buildDetailsList___closure0(t1, this.context, this.contact)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Y._VendorViewDetailsState_build__buildDetailsList___closure0.prototype = { call$0: function() { var t1 = this.$this; t1._launched = t1._launchURL$2(this.context, "mailto:" + this.contact.email); }, $signature: 1 }; Y._VendorViewDetailsState_build__buildDetailsList__closure2.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Y._VendorViewDetailsState_build__buildDetailsList___closure(t1, this.context, this.contact)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Y._VendorViewDetailsState_build__buildDetailsList___closure.prototype = { call$0: function() { var t1 = this.$this, t2 = P.RegExp_RegExp("\\D", true, false); t1._launched = t1._launchURL$2(this.context, "sms:" + H.stringReplaceAllUnchecked(this.contact.phone, t2, "")); }, $signature: 1 }; Y._VendorViewDetailsState_build__buildDetailsList_closure0.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Y._VendorViewDetailsState_build__buildDetailsList__closure0(t1, this.context, this.vendor)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Y._VendorViewDetailsState_build__buildDetailsList__closure0.prototype = { call$0: function() { var t1 = this.$this; t1._launched = t1._launchURL$2(this.context, Y.formatURL(this.vendor.website)); }, $signature: 1 }; Y._VendorViewDetailsState_build__buildDetailsList_closure1.prototype = { call$0: function() { var t1 = this.$this; return t1.setState$1(new Y._VendorViewDetailsState_build__buildDetailsList__closure(t1, this.context, this.vendor)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; Y._VendorViewDetailsState_build__buildDetailsList__closure.prototype = { call$0: function() { var t1 = this.$this, t2 = P.RegExp_RegExp("\\D", true, false); t1._launched = t1._launchURL$2(this.context, "sms:" + H.stringReplaceAllUnchecked(this.vendor.phone, t2, "")); }, $signature: 1 }; Y._VendorViewDetailsState_build__buildDetailsList_closure2.prototype = { call$0: function() { var t1 = this.$this, t2 = D.isAndroid() ? "https://maps.google.com/?q=" : "http://maps.apple.com/?address="; t1._launched = t1._launchURL$2(this.context, C.JSString_methods.$add(t2, P._Uri__uriEncode(C.List_gnE, Y.formatAddress(",", false, this.vendor), C.C_Utf8Codec, false))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; G.VendorViewDocuments.prototype = { build$1: function(_, context) { var t1 = this.viewModel.vendor.documents; return new V.DocumentGrid(new Q.CopyOnWriteList(true, t1._list, H._instanceType(t1)._eval$1("CopyOnWriteList<1>")), new G.VendorViewDocuments_build_closure(this, context), new G.VendorViewDocuments_build_closure0(this, context), null, null); } }; G.VendorViewDocuments_build_closure.prototype = { call$1: function(path) { return this.$this.viewModel.onUploadDocument.call$2(this.context, path); }, $signature: 136 }; G.VendorViewDocuments_build_closure0.prototype = { call$3: function($document, password, idToken) { return this.$this.viewModel.onDeleteDocument.call$4(this.context, $document, password, idToken); }, $signature: 137 }; E.VendorOverview.prototype = { build$1: function(_, context) { var fields, t3, t4, t5, user, t6, t7, t8, t9, t10, t11, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this.viewModel, vendor = t2.vendor, company = t2.company, state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), statics = state.staticState; t2 = type$.legacy_String; fields = P.LinkedHashMap_LinkedHashMap$_empty(t2, t2); t2 = vendor.assignedUserId; t3 = t2 != null; if (t3 && t2.length !== 0) { t4 = state.userCompanyStates; t5 = state.uiState.selectedCompanyIndex; user = J.$index$asx(t4._list, t5).userState.$get$1(0, t2); } else user = _null; t4 = vendor.currencyId; if (t4.length !== 0) { t5 = company.settings.currencyId; t5 = t4 !== (t5 == null ? "1" : t5); } else t5 = false; if (t5) fields.$indexSet(0, "currency_id", J.$index$asx(statics.currencyMap._map$_map, t4).name); t5 = vendor.customValue1; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor1"), Y.formatCustomValue(context, "vendor1", t5)); t5 = vendor.customValue2; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor2"), Y.formatCustomValue(context, "vendor2", t5)); t5 = vendor.customValue3; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor3"), Y.formatCustomValue(context, "vendor3", t5)); t5 = vendor.customValue4; if (t5.length !== 0) fields.$indexSet(0, company.getCustomFieldLabel$1("vendor4"), Y.formatCustomValue(context, "vendor4", t5)); t5 = t1.get$total(t1); t6 = $.$get$memoizedCalculateVendorBalance(); t7 = vendor.id; t8 = state.userCompanyStates; t9 = state.uiState.selectedCompanyIndex; t8 = t8._list; t10 = J.getInterceptor$asx(t8); t6 = t6.call$4(t7, t4, t10.$index(t8, t9).expenseState.map, t10.$index(t8, t9).expenseState.list); t11 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([D.EntityHeader$(vendor, t5, _null, _null, _null, _null, Y.formatNumber(t6, context, _null, t4, C.FormatNumberType_0, true, _null, false)), new G.ListDivider(_null)], t11); t5 = vendor.privateNotes; if (t5.length !== 0) C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([new S.IconMessage(t5, C.IconData_58286_MaterialIcons_null_false, _null, _null), new G.ListDivider(_null)], t11)); if (t3 && t2.length !== 0) t4.push(O.EntityListTile$(user, _this.isFilter, _null)); t4.push(new T.FieldGrid(fields, _null)); if (company.isModuleEnabled$1(C.EntityType_expense)) t4.push(new O.EntitiesListTile(vendor, C.EntityType_expense, t1.get$expenses(), $.$get$memoizedExpenseStatsForVendor().call$2(t7, t10.$index(t8, t9).expenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); if (company.isModuleEnabled$1(C.EntityType_recurringExpense)) t4.push(new O.EntitiesListTile(vendor, C.EntityType_recurringExpense, t1.get$recurringExpenses(), $.$get$memoizedRecurringExpenseStatsForVendor().call$2(t7, t10.$index(t8, t9).recurringExpenseState.map).present$2(t1.get$active(t1), t1.get$archived()), _this.isFilter, false, _null)); t1 = vendor.publicNotes; if (t1.length !== 0) C.JSArray_methods.addAll$1(t4, H.setRuntimeTypeInfo([new S.IconMessage(t1, _null, _null, _null), new G.ListDivider(_null)], t11)); return new X.ScrollableListView(t4, _null, _null, false, _null); } }; F.VendorViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.VendorViewScreen_build_closure(this), new F.VendorViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_VendorViewVM); } }; F.VendorViewScreen_build_closure0.prototype = { call$1: function(store) { return F.VendorViewVM_VendorViewVM$fromStore(store); }, $signature: 2609 }; F.VendorViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new N.VendorView(vm, this.$this.isFilter, vm.state.uiState.vendorUIState.tabIndex, null); }, $signature: 2610 }; F.VendorViewVM.prototype = { get$vendor: function(receiver) { return this.vendor; }, get$company: function() { return this.company; } }; F.VendorViewVM_VendorViewVM$fromStore__handleRefresh.prototype = { call$1: function(context) { var completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.LoadVendor(completer, this.vendor.id)); return completer.future; }, $signature: 17 }; F.VendorViewVM_VendorViewVM$fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; F.VendorViewVM_VendorViewVM$fromStore_closure0.prototype = { call$1: function(context) { var _null = null; M.createEntity(_null, _null, context, M.ExpenseEntity_ExpenseEntity(_null, _null, _null, _null, this.state, _null, this.vendor), _null, false); }, $signature: 14 }; F.VendorViewVM_VendorViewVM$fromStore_closure1.prototype = { call$2: function(context, multipartFile) { var t1 = new P._Future($.Zone__current, type$._Future_legacy_DocumentEntity); J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.SaveVendorDocumentRequest(new P._AsyncCompleter(t1, type$._AsyncCompleter_legacy_DocumentEntity), multipartFile, this.vendor)); t1.then$1$1(0, new F.VendorViewVM_VendorViewVM$fromStore__closure0(context), type$.Null).catchError$1(new F.VendorViewVM_VendorViewVM$fromStore__closure1(context)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 86 }; F.VendorViewVM_VendorViewVM$fromStore__closure0.prototype = { call$1: function(client) { M.showToast(L.Localizations_of(this.context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$uploadedDocument()); }, $signature: 63 }; F.VendorViewVM_VendorViewVM$fromStore__closure1.prototype = { call$1: function(error) { E.showDialog(true, new F.VendorViewVM_VendorViewVM$fromStore___closure(error), this.context, null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; F.VendorViewVM_VendorViewVM$fromStore___closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; F.VendorViewVM_VendorViewVM$fromStore_closure2.prototype = { call$4: function(context, $document, password, idToken) { var t1 = type$.Null, completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$deletedDocument(), false, t1), t2 = this.store; completer.future.then$1$1(0, new F.VendorViewVM_VendorViewVM$fromStore__closure(t2, this.vendor), t1); t1 = H.setRuntimeTypeInfo([$document.id], type$.JSArray_legacy_String); J.$index$asx(t2.get$_dispatchers(), 0).call$1(new X.DeleteDocumentRequest(completer, t1, password, idToken)); }, "call*": "call$4", $requiredArgCount: 4, $signature: 94 }; F.VendorViewVM_VendorViewVM$fromStore__closure.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new L.LoadVendor(null, this.vendor.id)); }, $signature: 95 }; N.WebhookEdit.prototype = { createState$0: function() { var t1 = type$.LinkedList__ListenerEntry; return new N._WebhookEditState(new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new D.TextEditingController(C.TextEditingValue_QOg, new P.LinkedList(t1)), new O.Debouncer(500, false), H.setRuntimeTypeInfo([], type$.JSArray_legacy_TextEditingController), C._StateLifecycle_0); } }; N._WebhookEditState.prototype = { didChangeDependencies$0: function() { var _this = this, t1 = _this._targetUrlController, t2 = H.setRuntimeTypeInfo([t1, _this._headerKeyController, _this._headerValueController], type$.JSArray_legacy_TextEditingController); _this._webhook_edit$_controllers = t2; C.JSArray_methods.forEach$1(t2, new N._WebhookEditState_didChangeDependencies_closure(_this)); t1.set$text(0, _this._widget.viewModel.webhook.targetUrl); C.JSArray_methods.forEach$1(_this._webhook_edit$_controllers, new N._WebhookEditState_didChangeDependencies_closure0(_this)); _this.super$State$didChangeDependencies(); }, dispose$0: function(_) { C.JSArray_methods.forEach$1(this._webhook_edit$_controllers, new N._WebhookEditState_dispose_closure(this)); this.super$State$dispose(0); }, _webhook_edit$_onChanged$0: function() { var _this = this, webhook = _this._widget.viewModel.webhook.rebuild$1(new N._WebhookEditState__onChanged_closure(_this)); if (!J.$eq$(webhook, _this._widget.viewModel.webhook)) _this._webhook_edit$_debouncer.run$1(new N._WebhookEditState__onChanged_closure0(_this, webhook)); }, build$1: function(_, context) { var t2, _this = this, _null = null, viewModel = _this._widget.viewModel, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), webhook = viewModel.webhook, key = J.trim$0$s(_this._headerKeyController._change_notifier$_value.text), value = J.trim$0$s(_this._headerValueController._change_notifier$_value.text); if (webhook.get$isNew()) t2 = t1.get$newWebhook(); else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "edit_webhook"); if (t2 == null) t2 = ""; } return K.EditScaffold$(_null, _null, A.Form$(false, new T.Builder(new N._WebhookEditState_build_closure(_this, t1, webhook, viewModel, key, value), _null), $.$get$_WebhookEditState__formKey()), _null, webhook, _null, false, _null, new N._WebhookEditState_build_closure0(viewModel), new N._WebhookEditState_build_closure1(viewModel), _null, t2); } }; N._WebhookEditState_didChangeDependencies_closure.prototype = { call$1: function(controller) { return controller.removeListener$1(0, this.$this.get$_webhook_edit$_onChanged()); }, $signature: 27 }; N._WebhookEditState_didChangeDependencies_closure0.prototype = { call$1: function(controller) { var t1 = controller.ChangeNotifier__listeners; t1._insertBefore$3$updateFirst(t1._collection$_first, new B._ListenerEntry(this.$this.get$_webhook_edit$_onChanged()), false); return null; }, $signature: 27 }; N._WebhookEditState_dispose_closure.prototype = { call$1: function(controller) { controller.removeListener$1(0, this.$this.get$_webhook_edit$_onChanged()); controller.ChangeNotifier__listeners = null; }, $signature: 60 }; N._WebhookEditState__onChanged_closure.prototype = { call$1: function(b) { var t1 = J.trim$0$s(this.$this._targetUrlController._change_notifier$_value.text); b.get$_webhook_model$_$this()._targetUrl = t1; return b; }, $signature: 183 }; N._WebhookEditState__onChanged_closure0.prototype = { call$0: function() { this.$this._widget.viewModel.onChanged.call$1(this.webhook); }, $signature: 1 }; N._WebhookEditState_build_closure0.prototype = { call$1: function(context) { return this.viewModel.onCancelPressed.call$1(context); }, $signature: 48 }; N._WebhookEditState_build_closure1.prototype = { call$1: function(context) { if (!$.$get$_WebhookEditState__formKey().get$currentState().validate$0()) return; this.viewModel.onSavePressed.call$1(context); }, $signature: 14 }; N._WebhookEditState_build_closure.prototype = { call$1: function(context) { var t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t18, _this = this, _null = null, t1 = _this.$this, t2 = _this.localization, t3 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "target_url"); if (t3 == null) t3 = ""; t3 = S.DecoratedFormField$(false, _null, true, false, t1._targetUrlController, _null, true, _null, _null, _null, _null, false, false, _null, C.TextInputType_6_null_null, t3, _null, _null, false, _null, _null, _null, true, _null, _null, C.TextAlign_4, new N._WebhookEditState_build__closure(t2)); t4 = t2.get$eventType(); t5 = _this.webhook; t6 = _this.viewModel; t7 = type$.MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String; t7 = P.List_List$of(new H.MappedListIterable(C.List_MnH, new N._WebhookEditState_build__closure0(t2), t7), true, t7._eval$1("ListIterable.E")); t8 = type$.AppDropdownButton_legacy_String; t9 = t2.get$restMethod(); t10 = type$.legacy_String; t10 = H.setRuntimeTypeInfo([K.DropdownMenuItem$(L.Text$("POST", _null, _null, _null, _null, _null, _null, _null, _null, _null), "post", t10), K.DropdownMenuItem$(L.Text$("PUT", _null, _null, _null, _null, _null, _null, _null, _null, _null), "put", t10)], type$.JSArray_legacy_DropdownMenuItem_legacy_String); t11 = t6.onSavePressed; t12 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, t1._headerKeyController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2.get$headerKey(), _null, _null, false, new N._WebhookEditState_build__closure1(t1), _null, t11, true, _null, _null, C.TextAlign_4, _null), 1); t13 = T.SizedBox$(_null, _null, 16); t11 = T.Expanded$(S.DecoratedFormField$(false, _null, false, false, t1._headerValueController, _null, true, _null, _null, _null, _null, false, false, _null, _null, t2.get$headerValue(), _null, _null, false, new N._WebhookEditState_build__closure2(t1), _null, t11, true, _null, _null, C.TextAlign_4, _null), 1); t14 = T.SizedBox$(_null, _null, 16); t15 = t2.get$addHeader(); t16 = L.Icon$(C.IconData_57424_MaterialIcons_null_false, _null, _null); t17 = _this.key; t18 = type$.JSArray_legacy_Widget; t15 = H.setRuntimeTypeInfo([t3, new Q.AppDropdownButton(t4, t5.eventId, new N._WebhookEditState_build__closure3(t6, t5), t7, _null, true, "", _null, t8), new Q.AppDropdownButton(t9, t5.restMethod, new N._WebhookEditState_build__closure4(t6, t5), t10, true, true, "", _null, t8), T.Row$(H.setRuntimeTypeInfo([t12, t13, t11, t14, B.IconButton$(C.Alignment_0_0, _null, _null, true, t16, 24, t17.length === 0 || _this.value.length === 0 ? _null : new N._WebhookEditState_build__closure5(t1, t5, t17, t6, _this.value), C.EdgeInsets_8_8_8_8, t15, _null)], t18), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), T.SizedBox$(_null, 8, _null)], t18); t1 = t5.headers; if (J.get$isEmpty$asx(t1._map$_map)) t15.push(new T.Padding(C.EdgeInsets_0_16_0_8, T.Center$(new U.HelpText(t2.get$noHeaders(), _null), _null, _null), _null)); else C.JSArray_methods.addAll$1(t15, J.map$1$1$ax(t1.get$keys(t1), new N._WebhookEditState_build__closure6(t5, t2, t6), type$.legacy_Widget)); return new X.ScrollableListView(H.setRuntimeTypeInfo([Y.FormCard$(_null, t15, _null, 4, false, _null, false, _null)], t18), _null, _null, false, _null); }, $signature: 140 }; N._WebhookEditState_build__closure.prototype = { call$1: function(value) { return value.length === 0 || C.JSString_methods.trim$0(value).length === 0 ? this.localization.get$pleaseEnterAValue() : null; }, $signature: 15 }; N._WebhookEditState_build__closure3.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new N._WebhookEditState_build___closure2(value))); }, $signature: 10 }; N._WebhookEditState_build___closure2.prototype = { call$1: function(b) { b.get$_webhook_model$_$this()._eventId = this.value; return b; }, $signature: 183 }; N._WebhookEditState_build__closure0.prototype = { call$1: function(eventId) { var _null = null; return K.DropdownMenuItem$(L.Text$(this.localization.lookup$1(C.Map_IicEm.$index(0, eventId)), _null, _null, _null, _null, _null, _null, _null, _null, _null), eventId, type$.legacy_String); }, $signature: 36 }; N._WebhookEditState_build__closure4.prototype = { call$1: function(value) { return this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new N._WebhookEditState_build___closure1(value))); }, $signature: 10 }; N._WebhookEditState_build___closure1.prototype = { call$1: function(b) { b.get$_webhook_model$_$this()._restMethod = this.value; return b; }, $signature: 183 }; N._WebhookEditState_build__closure1.prototype = { call$1: function(value) { return this.$this.setState$1(new N._WebhookEditState_build___closure4()); }, $signature: 59 }; N._WebhookEditState_build___closure4.prototype = { call$0: function() { }, $signature: 1 }; N._WebhookEditState_build__closure2.prototype = { call$1: function(value) { return this.$this.setState$1(new N._WebhookEditState_build___closure3()); }, $signature: 59 }; N._WebhookEditState_build___closure3.prototype = { call$0: function() { }, $signature: 1 }; N._WebhookEditState_build__closure5.prototype = { call$0: function() { var t2, _this = this, t1 = _this.$this; t1._headerKeyController.set$text(0, ""); t1._headerValueController.set$text(0, ""); t1 = _this.webhook; t2 = _this.key; if (J.containsKey$1$x(t1.headers._map$_map, t2)) return; _this.viewModel.onChanged.call$1(t1.rebuild$1(new N._WebhookEditState_build___closure0(t2, _this.value))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N._WebhookEditState_build___closure0.prototype = { call$1: function(b) { b.get$headers(b).$indexSet(0, this.key, this.value); return b; }, $signature: 183 }; N._WebhookEditState_build__closure6.prototype = { call$1: function(key) { var _null = null, t1 = this.webhook; return Q.ListTile$(false, C.EdgeInsets_0_0_0_0, _null, true, false, _null, _null, _null, _null, false, _null, _null, _null, _null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(key, _null, _null, _null, _null, _null, _null, _null, _null, _null), 1), T.SizedBox$(_null, _null, 16), T.Expanded$(L.Text$(J.$index$asx(t1.headers._map$_map, key), _null, _null, _null, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_legacy_Widget), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), B.IconButton$(C.Alignment_0_0, _null, _null, true, L.Icon$(C.IconData_57704_MaterialIcons_null_false, _null, _null), 24, new N._WebhookEditState_build___closure(this.viewModel, t1, key), C.EdgeInsets_8_8_8_8, this.localization.get$removeHeader(), _null)); }, $signature: 315 }; N._WebhookEditState_build___closure.prototype = { call$0: function() { this.viewModel.onChanged.call$1(this.webhook.rebuild$1(new N._WebhookEditState_build____closure(this.key))); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N._WebhookEditState_build____closure.prototype = { call$1: function(b) { J.remove$1$ax(b.get$headers(b).get$_safeMap(), this.key); return b; }, $signature: 183 }; F.WebhookEditScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new F.WebhookEditScreen_build_closure(), new F.WebhookEditScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookEditVM); } }; F.WebhookEditScreen_build_closure0.prototype = { call$1: function(store) { return F.WebhookEditVM_WebhookEditVM$fromStore(store); }, $signature: 2611 }; F.WebhookEditScreen_build_closure.prototype = { call$2: function(context, viewModel) { return new N.WebhookEdit(viewModel, new D.ValueKey(viewModel.webhook.updatedAt, type$.ValueKey_legacy_int)); }, $signature: 2612 }; F.WebhookEditVM.prototype = { get$webhook: function() { return this.webhook; }, get$company: function() { return this.company; } }; F.WebhookEditVM_WebhookEditVM$fromStore_closure.prototype = { call$1: function(webhook) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.UpdateWebhook(webhook)); }, $signature: 322 }; F.WebhookEditVM_WebhookEditVM$fromStore_closure1.prototype = { call$1: function(context) { var t1, _null = null; M.createEntity(_null, _null, context, E.WebhookEntity_WebhookEntity(_null, _null), _null, true); t1 = this.state.uiState; t1.webhookUIState.toString; t1 = t1.previousRoute; J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(t1)); }, $signature: 14 }; F.WebhookEditVM_WebhookEditVM$fromStore_closure0.prototype = { call$1: function(context) { var t1 = $.Debouncer_action; if (t1 != null) { t1.call$0(); $.Debouncer_action = null; } new F.WebhookEditVM_WebhookEditVM$fromStore__closure(this.store, this.state).call$0(); }, $signature: 14 }; F.WebhookEditVM_WebhookEditVM$fromStore__closure.prototype = { call$0: function() { var t3, $navigator, t1 = this.store, webhook = t1.get$_store$_state().uiState.webhookUIState.editing, t2 = $.$get$navigatorKey(); t2.toString; t3 = L.Localizations_of($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2), C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); $navigator = t2.get$currentState(); t2 = new P._Future($.Zone__current, type$._Future_legacy_WebhookEntity); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new S.SaveWebhookRequest(new P._AsyncCompleter(t2, type$._AsyncCompleter_legacy_WebhookEntity), webhook)); return t2.then$1$1(0, new F.WebhookEditVM_WebhookEditVM$fromStore___closure(webhook, t3, this.state, t1, $navigator), type$.Null).catchError$1(new F.WebhookEditVM_WebhookEditVM$fromStore___closure0()); }, $signature: 31 }; F.WebhookEditVM_WebhookEditVM$fromStore___closure.prototype = { call$1: function(savedWebhook) { var _this = this, _s22_ = "/settings/webhook_view", t1 = _this.webhook, t2 = _this.localization; if (t1.get$isNew()) { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "created_webhook"); if (t2 == null) t2 = ""; } else { t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t2.localeCode), "updated_webhook"); if (t2 == null) t2 = ""; } M.showToast(t2); if (_this.state.prefState.appLayout === C.AppLayout_mobile) { J.$index$asx(_this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute(_s22_)); t2 = _this.navigator; if (t1.get$isNew()) { t1 = type$.legacy_Object; t2.pushReplacementNamed$2$1(_s22_, t1, t1); } else t2.pop$1(0, savedWebhook); } else M.viewEntity(false, savedWebhook, null, true); }, $signature: 322 }; F.WebhookEditVM_WebhookEditVM$fromStore___closure0.prototype = { call$1: function(error) { var t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new F.WebhookEditVM_WebhookEditVM$fromStore____closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; F.WebhookEditVM_WebhookEditVM$fromStore____closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; L.WebhookView.prototype = { createState$0: function() { return new L._WebhookViewState(C._StateLifecycle_0); } }; L._WebhookViewState.prototype = { build$1: function(_, context) { var _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), viewModel = this._widget.viewModel, webhook = viewModel.webhook, t2 = t1.get$eventType(), t3 = t1.lookup$1(C.Map_IicEm.$index(0, webhook.eventId)); t1 = t1.get$createdOn(); return new G.ViewScaffold(false, webhook, new X.ScrollableListView(H.setRuntimeTypeInfo([D.EntityHeader$(webhook, t2, t1, Y.formatDate(P.DateTime$fromMillisecondsSinceEpoch(webhook.createdAt * 1000, false).toIso8601String$0(), context, true, true, false), _null, _null, t3), new G.ListDivider(_null), new L.TargetListTile(webhook, _null), new G.ListDivider(_null)], type$.JSArray_legacy_Widget), _null, _null, false, _null), new L._WebhookViewState_build_closure(viewModel), _null, _null); } }; L._WebhookViewState_build_closure.prototype = { call$0: function() { return this.viewModel.onBackPressed.call$0(); }, $signature: 9 }; L.TargetListTile.prototype = { build$1: function(_, context) { var _null = null; return Q.ListTile$(false, C.EdgeInsets_22_22_22_22, _null, true, false, _null, _null, _null, new L.TargetListTile_build_closure(this, context), false, _null, _null, _null, _null, new T.Padding(C.EdgeInsets_0_0_16_0, L.Text$(this.webhook.targetUrl, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), L.Icon$(C.IconData_57744_MaterialIcons_null_false, _null, _null)); }, get$webhook: function() { return this.webhook; } }; L.TargetListTile_build_closure.prototype = { call$0: function() { S.handleWebhookAction(this.context, H.setRuntimeTypeInfo([this.$this.webhook], type$.JSArray_legacy_BaseEntity), C.EntityAction_copy); }, $signature: 1 }; Y.WebhookViewScreen.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new Y.WebhookViewScreen_build_closure(this), new Y.WebhookViewScreen_build_closure0(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookViewVM); } }; Y.WebhookViewScreen_build_closure0.prototype = { call$1: function(store) { return Y.WebhookViewVM_WebhookViewVM$fromStore(store); }, $signature: 2613 }; Y.WebhookViewScreen_build_closure.prototype = { call$2: function(context, vm) { return new L.WebhookView(vm, false, null); }, $signature: 2614 }; Y.WebhookViewVM.prototype = { get$webhook: function() { return this.webhook; }, get$company: function() { return this.company; } }; Y.WebhookViewVM_WebhookViewVM$fromStore_closure.prototype = { call$0: function() { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new Q.UpdateCurrentRoute("/settings/webhook")); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; X.WebhookListItem.prototype = { build$1: function(_, context) { var t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), state = O.StoreProvider_of(context, type$.legacy_AppState).get$_store$_state(), uiState = state.uiState, webhookUIState = uiState.webhookUIState, t2 = webhookUIState.listUIState.selectedIds, t3 = _this.filter, filterMatch = t3 != null && t3.length !== 0 ? A.matchesStringsValue(H.setRuntimeTypeInfo([_this.webhook.targetUrl], type$.JSArray_legacy_String), t3) : _null; t3 = state.userCompanyStates; t4 = uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany; t3 = _this.webhook; t5 = t3.id; t6 = uiState.get$isEditing() ? webhookUIState.editing.id : webhookUIState.selectedId; t2 = t2 != null ? new T.IgnorePointer(true, _null, K.Checkbox$(K.Theme_of(context).accentColor, false, _null, C.MaterialTapTargetSize_1, new X.WebhookListItem_build_closure(_this), false, _this.isChecked), _null) : _null; t7 = context.dependOnInheritedWidgetOfExactType$1$0(type$.MediaQuery).data; t8 = type$.JSArray_legacy_Widget; t7 = M.Container$(_null, T.Row$(H.setRuntimeTypeInfo([T.Expanded$(L.Text$(t3.targetUrl, _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null), 1), L.Text$(Y.formatNumber(_null, context, _null, _null, C.FormatNumberType_0, true, _null, false), _null, _null, _null, _null, _null, K.Theme_of(context).textTheme.headline6, _null, _null, _null)], t8), C.CrossAxisAlignment_2, C.MainAxisAlignment_0, C.MainAxisSize_1, _null), C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t7.size._dx); t1 = L.Text$(t1.lookup$1(C.Map_IicEm.$index(0, t3.eventId)), _null, _null, _null, _null, _null, _null, _null, _null, _null); t9 = filterMatch != null && filterMatch.length !== 0 ? L.Text$(filterMatch, _null, 3, C.TextOverflow_2, _null, _null, _null, _null, _null, _null) : M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new L.DismissibleEntity(t4, t3, Q.ListTile$(false, _null, _null, true, false, _null, t2, new X.WebhookListItem_build_closure0(_this, context), new X.WebhookListItem_build_closure1(_this, context), false, _null, _null, T.Column$(H.setRuntimeTypeInfo([t1, t9, new L.EntityStateLabel(t3, _null)], t8), C.CrossAxisAlignment_0, _null, C.MainAxisAlignment_0, C.MainAxisSize_1, C.VerticalDirection_1), _null, t7, _null), t5 === t6, true, true, _null); }, get$user: function() { return this.user; }, get$webhook: function() { return this.webhook; } }; X.WebhookListItem_build_closure1.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.webhook, false, false); return t1; }, $signature: 0 }; X.WebhookListItem_build_closure0.prototype = { call$0: function() { var t1 = M.selectEntity(this.context, this.$this.webhook, false, true); return t1; }, $signature: 0 }; X.WebhookListItem_build_closure.prototype = { call$1: function(value) { return null.call$1(value); }, $signature: 12 }; X.WebhookListBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new X.WebhookListBuilder_build_closure(), X.webhook_list_vm_WebhookListVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookListVM); } }; X.WebhookListBuilder_build_closure.prototype = { call$2: function(context, viewModel) { var t1 = viewModel.onClearMultielsect, t2 = viewModel.state, t3 = viewModel.webhookList, t4 = viewModel.tableColumns; return S.EntityList$(t3, C.EntityType_webhook, new X.WebhookListBuilder_build__closure(viewModel), t1, viewModel.onRefreshed, viewModel.onSortColumn, new B.WebhookPresenter(), t2, t4); }, $signature: 2615 }; X.WebhookListBuilder_build__closure.prototype = { call$2: function(context, index) { var t1 = this.viewModel, state = t1.state, webhookId = J.$index$asx(t1.webhookList, index), webhook = J.$index$asx(t1.webhookMap._map$_map, webhookId), t2 = state.getUIState$1(C.EntityType_webhook).get$listUIState().selectedIds, t3 = state.userCompanyStates, t4 = state.uiState.selectedCompanyIndex; t4 = J.$index$asx(t3._list, t4).userCompany.user; if (t2 != null) { t3 = webhook.id; t2 = J.contains$1$asx(t2._list, t3); } else t2 = false; return new X.WebhookListItem(t4, webhook, t1.filter, t2, null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2616 }; X.WebhookListVM.prototype = {}; X.WebhookListVM_fromStore__handleRefresh.prototype = { call$1: function(context) { var completer, t1 = this.store; if (t1.get$_store$_state().isLoading) return P.Future_Future(null, type$.Null); completer = O.snackBarCompleter(context, L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization).get$refreshComplete(), false, type$.Null); J.$index$asx(t1.get$_dispatchers(), 0).call$1(new M.RefreshData(completer, false, false, false)); return completer.future; }, $signature: 17 }; X.WebhookListVM_fromStore_closure.prototype = { call$1: function(context) { return this._handleRefresh.call$1(context); }, $signature: 17 }; X.WebhookListVM_fromStore_closure0.prototype = { call$1: function(field) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.SortWebhooks(field)); }, $signature: 5 }; X.WebhookListVM_fromStore_closure1.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.ClearWebhookMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 9 }; B.WebhookPresenter.prototype = { getField$2$context$field: function(context, field) { return this.super$EntityPresenter$getField(context, field); } }; T.WebhookScreen.prototype = { build$1: function(_, context) { var t4, t5, t6, _null = null, store = O.StoreProvider_of(context, type$.legacy_AppState), state = store.get$_store$_state(), t1 = state.userCompanyStates, t2 = state.uiState, t3 = t2.selectedCompanyIndex, userCompany = J.$index$asx(t1._list, t3).userCompany; t3 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization); t2 = t2.webhookUIState.listUIState; t1 = "__filter_" + t2.filterClearedAt + "__"; t4 = this.viewModel.webhookList; t2 = t2.filter; t5 = type$.JSArray_legacy_String; t6 = P.List_List$of(H.setRuntimeTypeInfo([], t5), true, type$.legacy_String); C.JSArray_methods.addAll$1(t6, H.setRuntimeTypeInfo(["created_at", "updated_at", "archived_at", "assigned_to", "created_by", "entity_state", "is_deleted"], t5)); t6 = Z.AppBottomBar$(C.List_empty1, C.List_empty1, C.List_empty1, C.List_empty1, H.setRuntimeTypeInfo([], t5), C.EntityType_webhook, false, C.List_empty14, new T.WebhookScreen_build_closure(store), new T.WebhookScreen_build_closure0(store), new T.WebhookScreen_build_closure1(store), new T.WebhookScreen_build_closure2(store), new T.WebhookScreen_build_closure3(store), new T.WebhookScreen_build_closure4(store), new T.WebhookScreen_build_closure5(store), _null, H.setRuntimeTypeInfo(["target_url"], t5), C.List_empty15, t6); t5 = state.prefState; t3 = (t5.appLayout === C.AppLayout_mobile || t5.menuSidebarMode === C.AppSidebarMode_float) && userCompany.can$2(C.UserPermission_create, C.EntityType_webhook) ? E.FloatingActionButton$(K.Theme_of(context).primaryColorDark, L.Icon$(C.IconData_57415_MaterialIcons_null_false, C.Color_4294967295, _null), "webhook_fab", false, new T.WebhookScreen_build_closure6(context), t3.get$newWebhook()) : _null; return Y.ListScaffold$(_null, C.List_empty8, new N.ListFilter(C.EntityType_webhook, t2, new T.WebhookScreen_build_closure7(store), t4, new D.ValueKey(t1, type$.ValueKey_legacy_String)), new X.WebhookListBuilder(_null), t6, C.EntityType_webhook, t3, 0, "account_management", new T.WebhookScreen_build_closure8(store), new T.WebhookScreen_build_closure9(store)); } }; T.WebhookScreen_build_closure9.prototype = { call$0: function() { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.StartWebhookMultiselect()); }, $signature: 9 }; T.WebhookScreen_build_closure7.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooks(value)); }, $signature: 7 }; T.WebhookScreen_build_closure8.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.webhookUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new S.ClearWebhookMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new S.StartWebhookMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.WebhookScreen_build_closure4.prototype = { call$1: function(value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.SortWebhooks(value)); }, $signature: 7 }; T.WebhookScreen_build_closure5.prototype = { call$2: function(state, value) { J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooksByState(state)); }, $signature: 53 }; T.WebhookScreen_build_closure.prototype = { call$0: function() { var t1 = this.store; if (t1.get$_store$_state().uiState.webhookUIState.listUIState.selectedIds != null) J.$index$asx(t1.get$_dispatchers(), 0).call$1(new S.ClearWebhookMultiselect()); else J.$index$asx(t1.get$_dispatchers(), 0).call$1(new S.StartWebhookMultiselect()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.WebhookScreen_build_closure0.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooksByCustom1(value)); }, $signature: 5 }; T.WebhookScreen_build_closure1.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooksByCustom2(value)); }, $signature: 5 }; T.WebhookScreen_build_closure2.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooksByCustom3(value)); }, $signature: 5 }; T.WebhookScreen_build_closure3.prototype = { call$1: function(value) { return J.$index$asx(this.store.get$_dispatchers(), 0).call$1(new S.FilterWebhooksByCustom4(value)); }, $signature: 5 }; T.WebhookScreen_build_closure6.prototype = { call$0: function() { M.createEntityByType(true, this.context, C.EntityType_webhook); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; T.WebhookScreenBuilder.prototype = { build$1: function(_, context) { var _null = null; return O.StoreConnector$(new T.WebhookScreenBuilder_build_closure(), T.webhook_screen_vm_WebhookScreenVM_fromStore$closure(), _null, _null, _null, _null, _null, true, type$.legacy_AppState, type$.legacy_WebhookScreenVM); } }; T.WebhookScreenBuilder_build_closure.prototype = { call$2: function(context, vm) { return new T.WebhookScreen(vm, null); }, $signature: 2617 }; T.WebhookScreenVM.prototype = {}; O.snackBarCompleter_closure.prototype = { call$1: function(_) { var _this = this; if (_this.shouldPop && _this.navigator.canPop$0()) _this.navigator.pop$0(0); M.showToast(_this.message); }, $signature: function() { return this.T._eval$1("Null(0*)"); } }; O.snackBarCompleter_closure0.prototype = { call$1: function(error) { var t1; if (this.shouldPop && this.navigator.canPop$0()) this.navigator.pop$0(0); t1 = $.$get$navigatorKey(); t1.toString; E.showDialog(true, new O.snackBarCompleter__closure(error), $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1), null, true, type$.legacy_ErrorDialog); }, $signature: 3 }; O.snackBarCompleter__closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.error, false, null); }, $signature: 21 }; O.Debouncer.prototype = { run$1: function(action) { var t1 = $.Debouncer_timer; if (t1 == null) if (this.sendFirstAction) action.call$0(); else $.Debouncer_action = action; else { t1.cancel$0(0); $.Debouncer_action = action; } $.Debouncer_timer = P.Timer_Timer(P.Duration$(0, 0, 0, this.milliseconds, 0, 0), new O.Debouncer_run_closure(action)); } }; O.Debouncer_run_closure.prototype = { call$0: function() { this.action.call$0(); $.Debouncer_timer = $.Debouncer_action = null; }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; N.loadDesign_closure.prototype = { call$1: function(response) { var t1, t2; type$.legacy_Response._as(response); t1 = response.statusCode; t2 = this.onComplete; if (t1 >= 400) { O.showErrorDialog(false, this.context, H.S(t1) + ": " + H.S(response.reasonPhrase)); t2.call$1(null); } else t2.call$1(response); }, $signature: 8 }; N.loadDesign_closure0.prototype = { call$1: function(error) { O.showErrorDialog(false, this.context, H.S(error)); this.onComplete.call$1(null); }, $signature: 8 }; O.showRefreshDataDialog_closure.prototype = { call$1: function(context) { return E.SimpleDialog$(H.setRuntimeTypeInfo([new F.LoadingDialog(null)], type$.JSArray_legacy_Widget)); }, $signature: 176 }; O.showErrorDialog_closure.prototype = { call$1: function(context) { return new M.ErrorDialog(this.message, this.clearErrorOnDismiss, null); }, $signature: 21 }; O.showMessageDialog_closure.prototype = { call$1: function(context) { return E.MessageDialog$(this.message, null, null, this.secondaryActions); }, $signature: 314 }; O.confirmCallback_closure.prototype = { call$1: function(context) { var t10, t11, _this = this, _null = null, _s19_ = "why_are_you_leaving", t1 = {}, t2 = t1._reason = t1._typed = "", t3 = _this.typeToConfirm, t4 = _this.localization, t5 = new O.confirmCallback_closure__onPressed(t1, t3, context, _this.callback, t4), t6 = t4.get$areYouSure(), t7 = t3 == null, t8 = !t7, t9 = t8 ? _null : L.Text$(_this.title, _null, _null, _null, _null, _null, _null, _null, _null, _null); if (t8) { t8 = type$.JSArray_legacy_Widget; t3 = H.setRuntimeTypeInfo([T.SizedBox$(_null, 8, _null), new T.Flexible(1, C.FlexFit_1, L.Text$(C.JSString_methods.replaceFirst$2(t4.get$pleaseTypeToConfirm(), ":value", t3) + ":", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), S.DecoratedFormField$(false, _null, true, false, _null, _null, true, _null, t3, _null, _null, false, false, _null, _null, _null, _null, _null, false, new O.confirmCallback__closure(t1), _null, new O.confirmCallback__closure0(t5), true, _null, _null, C.TextAlign_4, _null)], t8); if (_this.askForReason) { t10 = T.SizedBox$(_null, 30, _null); t11 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4.localeCode), _s19_); C.JSArray_methods.addAll$1(t3, H.setRuntimeTypeInfo([t10, new T.Flexible(1, C.FlexFit_1, L.Text$(t11 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s19_) : t11, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), S.DecoratedFormField$(false, _null, false, false, _null, _null, true, _null, _null, _null, _null, false, false, _null, _null, _null, 4, 4, false, new O.confirmCallback__closure1(t1), _null, _null, true, _null, _null, C.TextAlign_4, _null)], t8)); } t3.push(T.SizedBox$(_null, 30, _null)); t3.push(new T.Flexible(1, C.FlexFit_1, L.Text$(_this.title, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, C.FontWeight_5, _null, _null, true, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null)); t1 = T.Column$(t3, C.CrossAxisAlignment_3, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); } else { t1 = _this.content; t1 = t1 == null ? _null : L.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); } t3 = U.TextButton$(false, L.Text$(t4.get$cancel(t4).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O.confirmCallback__closure2(context), _null); t4 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t4.localeCode), "ok"); t2 = t4 == null ? t2 : t4; return L.PointerInterceptor$(E.AlertDialog$(H.setRuntimeTypeInfo([t3, U.TextButton$(t7, L.Text$(t2.toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O.confirmCallback__closure3(t5), _null)], type$.JSArray_legacy_Widget), C.EdgeInsets_0_0_0_0, _null, t1, C.EdgeInsets_24_20_24_24, _null, t6, t9)); }, $signature: 566 }; O.confirmCallback_closure__onPressed.prototype = { call$0: function() { var _this = this, t1 = _this.typeToConfirm, t2 = t1 == null || t1.toLowerCase() === _this._box_0._typed.toLowerCase(), t3 = _this.context; if (t2) { K.Navigator_of(t3, false).pop$1(0, null); _this.callback.call$1(_this._box_0._reason); } else O.showMessageDialog(t3, C.JSString_methods.replaceFirst$2(_this.localization.get$pleaseTypeToConfirm(), ":value", t1), null); }, $signature: 0 }; O.confirmCallback__closure.prototype = { call$1: function(value) { return this._box_0._typed = value; }, $signature: 15 }; O.confirmCallback__closure0.prototype = { call$1: function(context) { return this._onPressed.call$0(); }, $signature: 29 }; O.confirmCallback__closure1.prototype = { call$1: function(value) { return this._box_0._reason = value; }, $signature: 15 }; O.confirmCallback__closure2.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); }, $signature: 1 }; O.confirmCallback__closure3.prototype = { call$0: function() { return this._onPressed.call$0(); }, $signature: 0 }; O.passwordCallback_closure.prototype = { call$1: function(context) { return new O.PasswordConfirmation(this.callback, null, null); }, $signature: 657 }; O.passwordCallback_closure0.prototype = { call$2: function(idToken, accessToken) { var t1, t2, _this = this; if (!_this.alwaysRequire) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !J.$index$asx(t1.userCompanyStates._list, t2).userCompany.company.oauthPasswordRequired; t1 = t2; } else t1 = false; if (!t1) { t1 = _this.state; t2 = t1.uiState.selectedCompanyIndex; t2 = !J.$index$asx(t1.userCompanyStates._list, t2).userCompany.user.hasPassword; t1 = t2; } else t1 = true; t2 = _this.callback; if (t1) t2.call$2(null, idToken); else E.showDialog(false, new O.passwordCallback__closure(t2, idToken), _this.context, null, true, type$.legacy_AlertDialog); }, $signature: 51 }; O.passwordCallback__closure.prototype = { call$1: function(context) { return new O.PasswordConfirmation(this.callback, this.idToken, null); }, $signature: 657 }; O.PasswordConfirmation.prototype = { createState$0: function() { return new O._PasswordConfirmationState(C._StateLifecycle_0); }, callback$2: function($receiver, arg0, arg1) { return this.callback.call$2(arg0, arg1); } }; O._PasswordConfirmationState.prototype = { _submit$0: function() { var _this = this, t1 = _this._dialogs$_password; if ((t1 == null ? "" : t1).length === 0) return; t1 = _this._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); t1 = _this._widget; t1.callback$2(0, _this._dialogs$_password, t1.idToken); }, build$1: function(_, context) { var t3, t4, _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "verify_password"); t2 = L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = _this._isPasswordObscured; t4 = t1.get$password(t1); t3 = Z.TextField$(true, _null, true, _null, _null, _null, _null, _null, 2, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, B.IconButton$(C.Alignment_0_1, _null, _null, true, L.Icon$(_this._isPasswordObscured ? C.IconData_59069_MaterialIcons_null_false : C.IconData_59070_MaterialIcons_null_false, C.MaterialColor_Map_HFpTk_4288585374, _null), 24, new O._PasswordConfirmationState_build_closure(_this), C.EdgeInsets_8_8_8_8, _null, _null), _null, _null, _null), true, true, _null, false, _null, _null, _null, C.TextInputType_7_null_null, _null, true, _null, 1, _null, t3, "\u2022", new O._PasswordConfirmationState_build_closure0(_this), _null, new O._PasswordConfirmationState_build_closure1(_this), _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, C.TextAlign_4, _null, C.TextCapitalization_3, _null, _null, _null); return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O._PasswordConfirmationState_build_closure2(context), _null), U.TextButton$(false, L.Text$(t1.get$submit(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O._PasswordConfirmationState_build_closure3(_this), _null)], type$.JSArray_legacy_Widget), C.EdgeInsets_0_0_0_0, _null, t3, C.EdgeInsets_24_20_24_24, _null, _null, t2); } }; O._PasswordConfirmationState_build_closure0.prototype = { call$1: function(value) { return this.$this._dialogs$_password = value; }, $signature: 15 }; O._PasswordConfirmationState_build_closure.prototype = { call$0: function() { var t1 = this.$this; t1.setState$1(new O._PasswordConfirmationState_build__closure(t1)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 1 }; O._PasswordConfirmationState_build__closure.prototype = { call$0: function() { var t1 = this.$this; t1._isPasswordObscured = !t1._isPasswordObscured; }, $signature: 1 }; O._PasswordConfirmationState_build_closure1.prototype = { call$1: function(value) { return this.$this._submit$0(); }, $signature: 59 }; O._PasswordConfirmationState_build_closure2.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; O._PasswordConfirmationState_build_closure3.prototype = { call$0: function() { return this.$this._submit$0(); }, $signature: 0 }; O.fieldCallback_closure.prototype = { call$1: function(context) { var _this = this; return new O.FieldConfirmation(_this.callback, _this.title, _this.field, _this.maxLength, _this.secondaryActions, null); }, $signature: 2619 }; O.FieldConfirmation.prototype = { createState$0: function() { return new O._FieldConfirmationState(C._StateLifecycle_0); }, callback$1: function($receiver, arg0) { return this.callback.call$1(arg0); } }; O._FieldConfirmationState.prototype = { _submit$0: function() { var _this = this, t1 = _this._dialogs$_field; if ((t1 == null ? "" : t1).length === 0) return; t1 = _this._framework$_element; t1.toString; K.Navigator_of(t1, false).pop$1(0, null); _this._widget.callback$1(0, _this._dialogs$_field); }, build$1: function(_, context) { var _this = this, _null = null, t1 = L.Localizations_of(context, C.Type_AppLocalization_KyD, type$.legacy_AppLocalization), t2 = _this._widget, t3 = L.Text$(t2.title, _null, _null, _null, _null, _null, _null, _null, _null, _null), t4 = t2.maxLength, t5 = t4 != null ? C.MaxLengthEnforcement_1 : C.MaxLengthEnforcement_0; t5 = Z.TextField$(true, _null, true, new O._FieldConfirmationState_build_closure(), _null, _null, _null, _null, 2, L.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, _null, _null, t2.field, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, true, _null, false, _null, _null, _null, _null, t4, true, t5, 1, _null, false, "\u2022", new O._FieldConfirmationState_build_closure0(_this), _null, new O._FieldConfirmationState_build_closure1(_this), _null, false, _null, C.EdgeInsets_20_20_20_20, _null, _null, _null, _null, _null, _null, _null, C.TextAlign_4, _null, C.TextCapitalization_3, _null, _null, _null); t2 = t2.secondaryActions; if (t2 == null) t2 = H.setRuntimeTypeInfo([], type$.JSArray_legacy_Widget); t2 = P.List_List$of(t2, true, type$.legacy_Widget); t2.push(T.SizedBox$(_null, _null, 6)); t2.push(U.TextButton$(false, L.Text$(t1.get$cancel(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O._FieldConfirmationState_build_closure2(context), _null)); t2.push(U.TextButton$(false, L.Text$(t1.get$submit(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O._FieldConfirmationState_build_closure3(_this), _null)); return E.AlertDialog$(t2, C.EdgeInsets_0_0_0_0, _null, t5, C.EdgeInsets_24_20_24_24, _null, _null, t3); } }; O._FieldConfirmationState_build_closure0.prototype = { call$1: function(value) { return this.$this._dialogs$_field = value; }, $signature: 15 }; O._FieldConfirmationState_build_closure.prototype = { call$4$currentLength$isFocused$maxLength: function(_, currentLength, isFocused, maxLength) { return null; }, call$1: function(_) { return this.call$4$currentLength$isFocused$maxLength(_, null, null, null); }, $signature: 2620 }; O._FieldConfirmationState_build_closure1.prototype = { call$1: function(value) { return this.$this._submit$0(); }, $signature: 59 }; O._FieldConfirmationState_build_closure2.prototype = { call$0: function() { K.Navigator_of(this.context, false).pop$1(0, null); return null; }, $signature: 0 }; O._FieldConfirmationState_build_closure3.prototype = { call$0: function() { return this.$this._submit$0(); }, $signature: 0 }; O.cloneToDialog_closure.prototype = { call$1: function(context) { var t3, t4, t5, _this = this, _null = null, t1 = _this.localization, t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1.localeCode), "clone_to"); t2 = L.Text$(t2 == null ? "" : t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); t3 = type$.JSArray_legacy_Widget; t4 = H.setRuntimeTypeInfo([], t3); t5 = _this.userCompany; if (t5.can$2(C.UserPermission_create, C.EntityType_invoice)) t4.push(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityIcon(C.EntityType_invoice), _null, _null), _null, new O.cloneToDialog__closure(_this.invoice, context), false, _null, _null, _null, _null, L.Text$(t1.get$invoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); if (t5.can$2(C.UserPermission_create, C.EntityType_quote)) t4.push(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityIcon(C.EntityType_quote), _null, _null), _null, new O.cloneToDialog__closure0(_this.invoice, context), false, _null, _null, _null, _null, L.Text$(t1.get$quote(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); if (t5.can$2(C.UserPermission_create, C.EntityType_credit)) t4.push(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityIcon(C.EntityType_credit), _null, _null), _null, new O.cloneToDialog__closure1(_this.invoice, context), false, _null, _null, _null, _null, L.Text$(t1.get$credit(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); if (t5.can$2(C.UserPermission_create, C.EntityType_recurringInvoice)) t4.push(Q.ListTile$(false, _null, _null, true, false, _null, L.Icon$(Q.getEntityIcon(C.EntityType_recurringInvoice), _null, _null), _null, new O.cloneToDialog__closure2(_this.invoice, context), false, _null, _null, _null, _null, L.Text$(t1.get$recurringInvoice(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null)); t4 = T.Column$(t4, C.CrossAxisAlignment_2, _null, C.MainAxisAlignment_0, C.MainAxisSize_0, C.VerticalDirection_1); return E.AlertDialog$(H.setRuntimeTypeInfo([U.TextButton$(false, L.Text$(t1.get$close(t1).toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new O.cloneToDialog__closure3(context), _null)], t3), C.EdgeInsets_0_0_0_0, _null, t4, C.EdgeInsets_24_20_24_24, _null, _null, t2); }, $signature: 172 }; O.cloneToDialog__closure.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.invoice], type$.JSArray_legacy_BaseEntity), C.EntityAction_cloneToInvoice, false); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; O.cloneToDialog__closure0.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.invoice], type$.JSArray_legacy_BaseEntity), C.EntityAction_cloneToQuote, false); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; O.cloneToDialog__closure1.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.invoice], type$.JSArray_legacy_BaseEntity), C.EntityAction_cloneToCredit, false); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; O.cloneToDialog__closure2.prototype = { call$0: function() { M.handleEntitiesActions(H.setRuntimeTypeInfo([this.invoice], type$.JSArray_legacy_BaseEntity), C.EntityAction_cloneToRecurring, false); K.Navigator_of(this.context, false).pop$0(0); }, $signature: 1 }; O.cloneToDialog__closure3.prototype = { call$0: function() { return K.Navigator_of(this.context, false).pop$0(0); }, $signature: 0 }; N.EnumUtils_fromString_closure.prototype = { call$1: function(enumItem) { var t1 = N.EnumUtils_parse(enumItem); t1 = t1 == null ? null : t1.toLowerCase(); return t1 === this.value.toLowerCase(); }, $signature: function() { return this.T._eval$1("bool*(0*)"); } }; N.EnumUtils_fromString_closure0.prototype = { call$0: function() { return null; }, $signature: 1 }; Y.FormatNumberType.prototype = { toString$0: function(_) { return this._formatting$_name; } }; B.LocaleCodeAware.prototype = {}; B.LocalizationsProvider.prototype = { get$newProject: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_project"); return t1 == null ? "" : t1; }, get$footer: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "footer"); return t1 == null ? "" : t1; }, get$googleSignIn: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "google_sign_in"); return t1 == null ? "" : t1; }, get$dateRange: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "date_range"); return t1 == null ? "" : t1; }, get$compareTo: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "compare_to"); return t1 == null ? "" : t1; }, get$custom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "custom"); return t1 == null ? "" : t1; }, get$more: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "more"); return t1 == null ? "" : t1; }, get$editClient: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "edit_client"); return t1 == null ? "" : t1; }, get$billingAddress: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "billing_address"); return t1 == null ? "" : t1; }, get$shippingAddress: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "shipping_address"); return t1 == null ? "" : t1; }, get$close: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "close"); return t1 == null ? "" : t1; }, get$email: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email"); return t1 == null ? "" : t1; }, get$password: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "password"); return t1 == null ? "" : t1; }, get$name: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "name"); return t1 == null ? "" : t1; }, get$logout: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "logout"); return t1 == null ? "" : t1; }, get$filter: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "filter"); return t1 == null ? "" : t1; }, get$active: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "active"); return t1 == null ? "" : t1; }, get$archived: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "archived"); return t1 == null ? "" : t1; }, get$deleted: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "deleted"); return t1 == null ? "" : t1; }, get$dashboard: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "dashboard"); return t1 == null ? "" : t1; }, get$$delete: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "delete"); return t1 == null ? "" : t1; }, get$restore: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "restore"); return t1 == null ? "" : t1; }, get$refreshComplete: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "refresh_complete"); return t1 == null ? "" : t1; }, get$pleaseEnterYourEmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_your_email"); return t1 == null ? "" : t1; }, get$pleaseEnterAFirstName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_a_first_name"); return t1 == null ? "" : t1; }, get$pleaseEnterALastName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_a_last_name"); return t1 == null ? "" : t1; }, get$save: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "save"); return t1 == null ? "" : t1; }, get$paidToDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "paid_to_date"); return t1 == null ? "" : t1; }, get$balanceDue: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "balance_due"); return t1 == null ? "" : t1; }, get$overview: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "overview"); return t1 == null ? "" : t1; }, get$details: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "details"); return t1 == null ? "" : t1; }, get$phone: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "phone"); return t1 == null ? "" : t1; }, get$website: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "website"); return t1 == null ? "" : t1; }, get$vatNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "vat_number"); return t1 == null ? "" : t1; }, get$idNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "id_number"); return t1 == null ? "" : t1; }, get$create: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "create"); return t1 == null ? "" : t1; }, get$copiedToClipboard: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "copied_to_clipboard"); return t1 == null ? "" : t1; }, get$error: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "error"); return t1 == null ? "" : t1; }, get$couldNotLaunch: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "could_not_launch"); return t1 == null ? "" : t1; }, get$contacts: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "contacts"); return t1 == null ? "" : t1; }, get$firstName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "first_name"); return t1 == null ? "" : t1; }, get$lastName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "last_name"); return t1 == null ? "" : t1; }, get$addContact: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_contact"); return t1 == null ? "" : t1; }, get$areYouSure: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "are_you_sure"); return t1 == null ? "" : t1; }, get$cancel: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "cancel"); return t1 == null ? "" : t1; }, get$remove: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "remove"); return t1 == null ? "" : t1; }, get$emailIsInvalid: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_is_invalid"); return t1 == null ? "" : t1; }, get$product: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "product"); return t1 == null ? "" : t1; }, get$products: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "products"); return t1 == null ? "" : t1; }, get$newProduct: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_product"); return t1 == null ? "" : t1; }, get$newVendor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_vendor"); return t1 == null ? "" : t1; }, get$document: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "document"); return t1 == null ? "" : t1; }, get$documents: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "documents"); return t1 == null ? "" : t1; }, get$newDocument: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_document"); return t1 == null ? "" : t1; }, get$uploadedDocument: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "uploaded_document"); return t1 == null ? "" : t1; }, get$deletedDocument: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "deleted_document"); return t1 == null ? "" : t1; }, get$newExpense: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_expense"); return t1 == null ? "" : t1; }, get$notes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "notes"); return t1 == null ? "" : t1; }, get$cost: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "cost"); return t1 == null ? "" : t1; }, get$client: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "client"); return t1 == null ? "" : t1; }, get$clients: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "clients"); return t1 == null ? "" : t1; }, get$newClient: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_client"); return t1 == null ? "" : t1; }, get$address1: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "address1"); return t1 == null ? "" : t1; }, get$address2: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "address2"); return t1 == null ? "" : t1; }, get$city: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "city"); return t1 == null ? "" : t1; }, get$state: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "state"); return t1 == null ? "" : t1; }, get$postalCode: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "postal_code"); return t1 == null ? "" : t1; }, get$country: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "country"); return t1 == null ? "" : t1; }, get$invoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice"); return t1 == null ? "" : t1; }, get$invoices: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoices"); return t1 == null ? "" : t1; }, get$newInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_invoice"); return t1 == null ? "" : t1; }, get$updatedInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_invoice"); return t1 == null ? "" : t1; }, get$emailedInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "emailed_invoice"); return t1 == null ? "" : t1; }, get$amount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "amount"); return t1 == null ? "" : t1; }, get$invoiceNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_number"); return t1 == null ? "" : t1; }, get$invoiceDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_date"); return t1 == null ? "" : t1; }, get$discount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "discount"); return t1 == null ? "" : t1; }, get$poNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "po_number"); return t1 == null ? "" : t1; }, get$publicNotes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "public_notes"); return t1 == null ? "" : t1; }, get$privateNotes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "private_notes"); return t1 == null ? "" : t1; }, get$frequency: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "frequency"); return t1 == null ? "" : t1; }, get$startDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "start_date"); return t1 == null ? "" : t1; }, get$endDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "end_date"); return t1 == null ? "" : t1; }, get$quoteNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_number"); return t1 == null ? "" : t1; }, get$quoteDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_date"); return t1 == null ? "" : t1; }, get$validUntil: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "valid_until"); return t1 == null ? "" : t1; }, get$items: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "items"); return t1 == null ? "" : t1; }, get$partialDeposit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "partial_deposit"); return t1 == null ? "" : t1; }, get$description: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "description"); return t1 == null ? "" : t1; }, get$unitCost: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "unit_cost"); return t1 == null ? "" : t1; }, get$quantity: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quantity"); return t1 == null ? "" : t1; }, get$addItem: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_item"); return t1 == null ? "" : t1; }, get$contact: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "contact"); return t1 == null ? "" : t1; }, get$pdf: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "pdf"); return t1 == null ? "" : t1; }, get$dueDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "due_date"); return t1 == null ? "" : t1; }, get$partialDueDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "partial_due_date"); return t1 == null ? "" : t1; }, get$status: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "status"); return t1 == null ? "" : t1; }, get$countSelected: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "count_selected"); return t1 == null ? "" : t1; }, get$total: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "total"); return t1 == null ? "" : t1; }, get$edit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "edit"); return t1 == null ? "" : t1; }, get$dismiss: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "dismiss"); return t1 == null ? "" : t1; }, get$pleaseSelectADate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_select_a_date"); return t1 == null ? "" : t1; }, get$pleaseSelectAClient: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_select_a_client"); return t1 == null ? "" : t1; }, get$taskRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "task_rate"); return t1 == null ? "" : t1; }, get$settings: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "settings"); return t1 == null ? "" : t1; }, get$language: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "language"); return t1 == null ? "" : t1; }, get$currency: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "currency"); return t1 == null ? "" : t1; }, get$createdOn: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "created_on"); return t1 == null ? "" : t1; }, get$tax: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "tax"); return t1 == null ? "" : t1; }, get$pleaseEnterAnInvoiceNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_an_invoice_number"); return t1 == null ? "" : t1; }, get$draft: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "draft"); return t1 == null ? "" : t1; }, get$sent: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "sent"); return t1 == null ? "" : t1; }, get$viewed: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "viewed"); return t1 == null ? "" : t1; }, get$done: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "done"); return t1 == null ? "" : t1; }, get$pleaseEnterAClientOrContactName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_a_client_or_contact_name"); return t1 == null ? "" : t1; }, get$refreshData: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "refresh_data"); return t1 == null ? "" : t1; }, get$blankContact: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "blank_contact"); return t1 == null ? "" : t1; }, get$activity: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "activity"); return t1 == null ? "" : t1; }, get$noRecordsFound: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "no_records_found"); return t1 == null ? "" : t1; }, get$loading: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "loading"); return t1 == null ? "" : t1; }, get$industry: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "industry"); return t1 == null ? "" : t1; }, get$size: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "size"); return t1 == null ? "" : t1; }, get$paymentDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "payment_date"); return t1 == null ? "" : t1; }, get$net: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "net"); return t1 == null ? "" : t1; }, get$clientPortal: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "client_portal"); return t1 == null ? "" : t1; }, get$enabled: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enabled"); return t1 == null ? "" : t1; }, get$firstReminder: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "first_reminder"); return t1 == null ? "" : t1; }, get$secondReminder: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "second_reminder"); return t1 == null ? "" : t1; }, get$thirdReminder: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "third_reminder"); return t1 == null ? "" : t1; }, get$send: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "send"); return t1 == null ? "" : t1; }, get$subject: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subject"); return t1 == null ? "" : t1; }, get$body: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "body"); return t1 == null ? "" : t1; }, get$sendEmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "send_email"); return t1 == null ? "" : t1; }, get$emailReceipt: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_receipt"); return t1 == null ? "" : t1; }, get$preview: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "preview"); return t1 == null ? "" : t1; }, get$customize: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "customize"); return t1 == null ? "" : t1; }, get$history: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "history"); return t1 == null ? "" : t1; }, get$payment: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "payment"); return t1 == null ? "" : t1; }, get$payments: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "payments"); return t1 == null ? "" : t1; }, get$paymentType: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "payment_type"); return t1 == null ? "" : t1; }, get$transactionReference: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "transaction_reference"); return t1 == null ? "" : t1; }, get$enterPayment: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enter_payment"); return t1 == null ? "" : t1; }, get$quote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote"); return t1 == null ? "" : t1; }, get$quotes: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quotes"); return t1 == null ? "" : t1; }, get$newQuote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_quote"); return t1 == null ? "" : t1; }, get$updatedQuote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_quote"); return t1 == null ? "" : t1; }, get$expense: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "expense"); return t1 == null ? "" : t1; }, get$expenses: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "expenses"); return t1 == null ? "" : t1; }, get$vendor: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "vendor"); return t1 == null ? "" : t1; }, get$vendors: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "vendors"); return t1 == null ? "" : t1; }, get$task: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "task"); return t1 == null ? "" : t1; }, get$tasks: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "tasks"); return t1 == null ? "" : t1; }, get$project: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "project"); return t1 == null ? "" : t1; }, get$projects: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "projects"); return t1 == null ? "" : t1; }, get$oneTimePassword: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "one_time_password"); return t1 == null ? "" : t1; }, get$emailedQuote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "emailed_quote"); return t1 == null ? "" : t1; }, get$emailedCredit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "emailed_credit"); return t1 == null ? "" : t1; }, get$pleaseEnterAName: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_a_name"); return t1 == null ? "" : t1; }, get$updatedTask: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_task"); return t1 == null ? "" : t1; }, get$newTask: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_task"); return t1 == null ? "" : t1; }, get$duration: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "duration"); return t1 == null ? "" : t1; }, get$date: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "date"); return t1 == null ? "" : t1; }, get$startTime: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "start_time"); return t1 == null ? "" : t1; }, get$endTime: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "end_time"); return t1 == null ? "" : t1; }, get$startedTask: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "started_task"); return t1 == null ? "" : t1; }, get$stoppedTask: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "stopped_task"); return t1 == null ? "" : t1; }, get$resumedTask: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "resumed_task"); return t1 == null ? "" : t1; }, get$start: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "start"); return t1 == null ? "" : t1; }, get$stop: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "stop"); return t1 == null ? "" : t1; }, get$resume: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "resume"); return t1 == null ? "" : t1; }, get$running: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "running"); return t1 == null ? "" : t1; }, get$invoiced: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoiced"); return t1 == null ? "" : t1; }, get$logged: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "logged"); return t1 == null ? "" : t1; }, get$passwordIsTooShort: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "password_is_too_short"); return t1 == null ? "" : t1; }, get$design: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "design"); return t1 == null ? "" : t1; }, get$address: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "address"); return t1 == null ? "" : t1; }, get$markPaid: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "mark_paid"); return t1 == null ? "" : t1; }, get$convertCurrency: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "convert_currency"); return t1 == null ? "" : t1; }, get$exchangeRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "exchange_rate"); return t1 == null ? "" : t1; }, get$addDocumentsToInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_documents_to_invoice"); return t1 == null ? "" : t1; }, get$pending: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "pending"); return t1 == null ? "" : t1; }, get$noHistory: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "no_history"); return t1 == null ? "" : t1; }, get$download: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "download"); return t1 == null ? "" : t1; }, get$requiresAnEnterprisePlan: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "requires_an_enterprise_plan"); return t1 == null ? "" : t1; }, get$errorUnsavedChanges: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "error_unsaved_changes"); return t1 == null ? "" : t1; }, get$createNew: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "create_new"); return t1 == null ? "" : t1; }, get$googleSignUp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "google_sign_up"); return t1 == null ? "" : t1; }, get$iAgreeToThe: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "i_agree_to_the"); return t1 == null ? "" : t1; }, get$termsOfService: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "terms_of_service"); return t1 == null ? "" : t1; }, get$privacyPolicy: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "privacy_policy"); return t1 == null ? "" : t1; }, get$back: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "back"); return t1 == null ? "" : t1; }, get$all: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "all"); return t1 == null ? "" : t1; }, get$emailSignUp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_sign_up"); return t1 == null ? "" : t1; }, get$price: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "price"); return t1 == null ? "" : t1; }, get$companyDetails: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "company_details"); return t1 == null ? "" : t1; }, get$notifications: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "notifications"); return t1 == null ? "" : t1; }, get$invoiceDesign: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_design"); return t1 == null ? "" : t1; }, get$savedSettings: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "saved_settings"); return t1 == null ? "" : t1; }, get$logo: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "logo"); return t1 == null ? "" : t1; }, get$newGroup: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_group"); return t1 == null ? "" : t1; }, get$group: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "group"); return t1 == null ? "" : t1; }, get$timezone: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "timezone"); return t1 == null ? "" : t1; }, get$dateFormat: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "date_format"); return t1 == null ? "" : t1; }, get$militaryTime: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "military_time"); return t1 == null ? "" : t1; }, get$disabled: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "disabled"); return t1 == null ? "" : t1; }, get$newCompanyGateway: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_company_gateway"); return t1 == null ? "" : t1; }, get$companyGateway: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "company_gateway"); return t1 == null ? "" : t1; }, get$newTaxRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_tax_rate"); return t1 == null ? "" : t1; }, get$taxRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "tax_rate"); return t1 == null ? "" : t1; }, get$rate: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "rate"); return t1 == null ? "" : t1; }, get$minLimit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "min_limit"); return t1 == null ? "" : t1; }, get$maxLimit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "max_limit"); return t1 == null ? "" : t1; }, get$feeAmount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "fee_amount"); return t1 == null ? "" : t1; }, get$feePercent: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "fee_percent"); return t1 == null ? "" : t1; }, get$feeCap: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "fee_cap"); return t1 == null ? "" : t1; }, get$replyToEmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "reply_to_email"); return t1 == null ? "" : t1; }, get$bccEmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "bcc_email"); return t1 == null ? "" : t1; }, get$attachPdf: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "attach_pdf"); return t1 == null ? "" : t1; }, get$attachDocuments: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "attach_documents"); return t1 == null ? "" : t1; }, get$attachUbl: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "attach_ubl"); return t1 == null ? "" : t1; }, get$light: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "light"); return t1 == null ? "" : t1; }, get$dark: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "dark"); return t1 == null ? "" : t1; }, get$emailSignature: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_signature"); return t1 == null ? "" : t1; }, get$subdomain: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subdomain"); return t1 == null ? "" : t1; }, get$enablePortalPassword: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enable_portal_password"); return t1 == null ? "" : t1; }, get$showAcceptInvoiceTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "show_accept_invoice_terms"); return t1 == null ? "" : t1; }, get$showAcceptQuoteTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "show_accept_quote_terms"); return t1 == null ? "" : t1; }, get$requireInvoiceSignature: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "require_invoice_signature"); return t1 == null ? "" : t1; }, get$requireInvoiceSignatureHelp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "require_invoice_signature_help"); return t1 == null ? "" : t1; }, get$requireQuoteSignature: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "require_quote_signature"); return t1 == null ? "" : t1; }, get$signatureOnPdf: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "signature_on_pdf"); return t1 == null ? "" : t1; }, get$recurringPrefix: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "recurring_prefix"); return t1 == null ? "" : t1; }, get$resetCounter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "reset_counter"); return t1 == null ? "" : t1; }, get$credit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit"); return t1 == null ? "" : t1; }, get$credits: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credits"); return t1 == null ? "" : t1; }, get$company: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "company"); return t1 == null ? "" : t1; }, get$never: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "never"); return t1 == null ? "" : t1; }, get$autoEmailInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_email_invoice"); return t1 == null ? "" : t1; }, get$autoArchiveInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_archive_invoice"); return t1 == null ? "" : t1; }, get$autoArchiveQuote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_archive_quote"); return t1 == null ? "" : t1; }, get$autoConvertQuote: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_convert_quote"); return t1 == null ? "" : t1; }, get$invoiceTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_terms"); return t1 == null ? "" : t1; }, get$invoiceFooter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_footer"); return t1 == null ? "" : t1; }, get$quoteTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_terms"); return t1 == null ? "" : t1; }, get$quoteFooter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_footer"); return t1 == null ? "" : t1; }, get$quoteDesign: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_design"); return t1 == null ? "" : t1; }, get$pageSize: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "page_size"); return t1 == null ? "" : t1; }, get$fontSize: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "font_size"); return t1 == null ? "" : t1; }, get$primaryColor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "primary_color"); return t1 == null ? "" : t1; }, get$secondaryColor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "secondary_color"); return t1 == null ? "" : t1; }, get$primaryFont: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "primary_font"); return t1 == null ? "" : t1; }, get$secondaryFont: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "secondary_font"); return t1 == null ? "" : t1; }, get$newUser: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_user"); return t1 == null ? "" : t1; }, get$updatedUser: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_user"); return t1 == null ? "" : t1; }, get$schedule: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "schedule"); return t1 == null ? "" : t1; }, get$creditNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit_number"); return t1 == null ? "" : t1; }, get$recoverPassword: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "recover_password"); return t1 == null ? "" : t1; }, get$submit: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "submit"); return t1 == null ? "" : t1; }, get$options: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "options"); return t1 == null ? "" : t1; }, get$commaSeparatedList: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "comma_sparated_list"); return t1 == null ? "" : t1; }, get$noClientSelected: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "no_client_selected"); return t1 == null ? "" : t1; }, get$inclusiveTaxes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "inclusive_taxes"); return t1 == null ? "" : t1; }, get$user: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "user"); return t1 == null ? "" : t1; }, get$defaultTaxRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "default_tax_rate"); return t1 == null ? "" : t1; }, get$lockInvoices: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "lock_invoices"); return t1 == null ? "" : t1; }, get$sharedInvoiceQuoteCounter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "shared_invoice_quote_counter"); return t1 == null ? "" : t1; }, get$defaultQuantity: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "default_quantity"); return t1 == null ? "" : t1; }, get$firstCustom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "first_custom"); return t1 == null ? "" : t1; }, get$secondCustom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "second_custom"); return t1 == null ? "" : t1; }, get$thirdCustom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "third_custom"); return t1 == null ? "" : t1; }, get$view: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "view"); return t1 == null ? "" : t1; }, get$mobile: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "mobile"); return t1 == null ? "" : t1; }, get$desktop: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "desktop"); return t1 == null ? "" : t1; }, get$float: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "float"); return t1 == null ? "" : t1; }, get$menuSidebar: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "menu_sidebar"); return t1 == null ? "" : t1; }, get$yes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "yes"); return t1 == null ? "" : t1; }, get$no: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "no"); return t1 == null ? "" : t1; }, get$deletedLogo: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "deleted_logo"); return t1 == null ? "" : t1; }, get$pleaseEnterAValue: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_enter_a_value"); return t1 == null ? "" : t1; }, get$contactUs: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "contact_us"); return t1 == null ? "" : t1; }, get$documentation: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "documentation"); return t1 == null ? "" : t1; }, get$about: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "about"); return t1 == null ? "" : t1; }, get$supportForum: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "support_forum"); return t1 == null ? "" : t1; }, get$applied: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "applied"); return t1 == null ? "" : t1; }, get$filteredBy: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "filtered_by"); return t1 == null ? "" : t1; }, get$refund: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "refund"); return t1 == null ? "" : t1; }, get$addCompany: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_company"); return t1 == null ? "" : t1; }, get$reports: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "reports"); return t1 == null ? "" : t1; }, get$columns: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "columns"); return t1 == null ? "" : t1; }, get$editColumns: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "edit_columns"); return t1 == null ? "" : t1; }, get$count: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "count"); return t1 == null ? "" : t1; }, get$$export: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "export"); return t1 == null ? "" : t1; }, get$number: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "number"); return t1 == null ? "" : t1; }, get$reset: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "reset"); return t1 == null ? "" : t1; }, get$newCompany: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_company"); return t1 == null ? "" : t1; }, get$creditFooter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit_footer"); return t1 == null ? "" : t1; }, get$creditTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit_terms"); return t1 == null ? "" : t1; }, get$learnMore: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "learn_more"); return t1 == null ? "" : t1; }, get$updateAvailable: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "update_available"); return t1 == null ? "" : t1; }, get$taskStatus: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "task_status"); return t1 == null ? "" : t1; }, get$newTaskStatus: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_task_status"); return t1 == null ? "" : t1; }, get$updatedTaskStatus: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_task_status"); return t1 == null ? "" : t1; }, get$expenseCategory: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "expense_category"); return t1 == null ? "" : t1; }, get$newExpenseCategory: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_expense_category"); return t1 == null ? "" : t1; }, get$recurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "recurring_invoice"); return t1 == null ? "" : t1; }, get$recurringInvoices: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "recurring_invoices"); return t1 == null ? "" : t1; }, get$newRecurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_recurring_invoice"); return t1 == null ? "" : t1; }, get$updatedRecurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_recurring_invoice"); return t1 == null ? "" : t1; }, get$stoppedRecurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "stopped_recurring_invoice"); return t1 == null ? "" : t1; }, get$startedRecurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "started_recurring_invoice"); return t1 == null ? "" : t1; }, get$resumedRecurringInvoice: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "resumed_recurring_invoice"); return t1 == null ? "" : t1; }, get$webhook: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "webhook"); return t1 == null ? "" : t1; }, get$newWebhook: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_webhook"); return t1 == null ? "" : t1; }, get$token: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "token"); return t1 == null ? "" : t1; }, get$newToken: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_token"); return t1 == null ? "" : t1; }, get$paymentTerm: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "payment_term"); return t1 == null ? "" : t1; }, get$newPaymentTerm: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_payment_term"); return t1 == null ? "" : t1; }, get$newDesign: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_design"); return t1 == null ? "" : t1; }, get$newCredit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_credit"); return t1 == null ? "" : t1; }, get$updatedCredit: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "updated_credit"); return t1 == null ? "" : t1; }, get$creditDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit_date"); return t1 == null ? "" : t1; }, get$recurringExpenses: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "recurring_expenses"); return t1 == null ? "" : t1; }, get$header: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "header"); return t1 == null ? "" : t1; }, get$includes: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "includes"); return t1 == null ? "" : t1; }, get$creditDesign: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "credit_design"); return t1 == null ? "" : t1; }, get$purchaseLicense: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "purchase_license"); return t1 == null ? "" : t1; }, get$applyLicense: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "apply_license"); return t1 == null ? "" : t1; }, get$none: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "none"); return t1 == null ? "" : t1; }, get$addField: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_field"); return t1 == null ? "" : t1; }, get$refresh: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "refresh"); return t1 == null ? "" : t1; }, get$$import: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "import"); return t1 == null ? "" : t1; }, get$autoBill: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_bill"); return t1 == null ? "" : t1; }, get$optional: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "optional"); return t1 == null ? "" : t1; }, get$refundPayment: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "refund_payment"); return t1 == null ? "" : t1; }, get$exclusive: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "exclusive"); return t1 == null ? "" : t1; }, get$inclusive: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "inclusive"); return t1 == null ? "" : t1; }, get$emailSignIn: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_sign_in"); return t1 == null ? "" : t1; }, get$allRecords: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "all_records"); return t1 == null ? "" : t1; }, get$ownedByUser: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "owned_by_user"); return t1 == null ? "" : t1; }, get$clientEmailNotSet: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "client_email_not_set"); return t1 == null ? "" : t1; }, get$subtotal: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subtotal"); return t1 == null ? "" : t1; }, get$eventType: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "event_type"); return t1 == null ? "" : t1; }, get$applyPayment: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "apply_payment"); return t1 == null ? "" : t1; }, get$gateway: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "gateway"); return t1 == null ? "" : t1; }, get$pdfPageInfo: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "pdf_page_info"); return t1 == null ? "" : t1; }, get$label: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "label"); return t1 == null ? "" : t1; }, get$welcomeToInvoiceNinja: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "welcome_to_invoice_ninja"); return t1 == null ? "" : t1; }, get$copyLink: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "copy_link"); return t1 == null ? "" : t1; }, get$viewPortal: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "view_portal"); return t1 == null ? "" : t1; }, get$systemLogs: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "system_logs"); return t1 == null ? "" : t1; }, get$sendDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "send_date"); return t1 == null ? "" : t1; }, get$nextSendDate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "next_send_date"); return t1 == null ? "" : t1; }, get$remainingCycles: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "remaining_cycles"); return t1 == null ? "" : t1; }, get$endless: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "endless"); return t1 == null ? "" : t1; }, get$usePaymentTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "use_payment_terms"); return t1 == null ? "" : t1; }, get$firstDayOfTheMonth: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "first_day_of_the_month"); return t1 == null ? "" : t1; }, get$lastDayOfTheMonth: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "last_day_of_the_month"); return t1 == null ? "" : t1; }, get$dayCount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "day_count"); return t1 == null ? "" : t1; }, get$autoBillEnabled: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "auto_bill_enabled"); return t1 == null ? "" : t1; }, get$markPaidHelp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "mark_paid_help"); return t1 == null ? "" : t1; }, get$addDocumentsToInvoiceHelp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_documents_to_invoice_help"); return t1 == null ? "" : t1; }, get$forceUpdate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "force_update"); return t1 == null ? "" : t1; }, get$shouldBeInvoiced: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "should_be_invoiced"); return t1 == null ? "" : t1; }, get$shouldBeInvoicedHelp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "should_be_invoiced_help"); return t1 == null ? "" : t1; }, get$expenseCategoryId: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "expense_category_id"); return t1 == null ? "" : t1; }, get$companyDisabledWarning: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "company_disabled_warning"); return t1 == null ? "" : t1; }, get$taskNumber: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "task_number"); return t1 == null ? "" : t1; }, get$actions: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "actions"); return t1 == null ? "" : t1; }, get$partialDue: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "partial_due"); return t1 == null ? "" : t1; }, get$addCustom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_custom"); return t1 == null ? "" : t1; }, get$pleaseTypeToConfirm: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "please_type_to_confirm"); return t1 == null ? "" : t1; }, get$fullscreenEditor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "fullscreen_editor"); return t1 == null ? "" : t1; }, get$sidebarEditor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "sidebar_editor"); return t1 == null ? "" : t1; }, get$webhookUrl: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "webhook_url"); return t1 == null ? "" : t1; }, get$startedImport: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "started_import"); return t1 == null ? "" : t1; }, get$enterTaxes: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enter_taxes"); return t1 == null ? "" : t1; }, get$byRate: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "by_rate"); return t1 == null ? "" : t1; }, get$byAmount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "by_amount"); return t1 == null ? "" : t1; }, get$convertedAmount: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "converted_amount"); return t1 == null ? "" : t1; }, get$emailSentToConfirmEmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "email_sent_to_confirm_email"); return t1 == null ? "" : t1; }, get$countHours: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "count_hours"); return t1 == null ? "" : t1; }, get$countDays: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "count_days"); return t1 == null ? "" : t1; }, get$countDay: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "count_day"); return t1 == null ? "" : t1; }, get$enableTwoFactor: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enable_two_factor"); return t1 == null ? "" : t1; }, get$viewDocs: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "view_docs"); return t1 == null ? "" : t1; }, get$anErrorOccurredTryAgain: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "an_error_occurred_try_again"); return t1 == null ? "" : t1; }, get$sharedInvoiceCreditCounter: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "shared_invoice_credit_counter"); return t1 == null ? "" : t1; }, get$connectGmail: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "connect_gmail"); return t1 == null ? "" : t1; }, get$subdomainIsNotAvailable: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subdomain_is_not_available"); return t1 == null ? "" : t1; }, get$subscription: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subscription"); return t1 == null ? "" : t1; }, get$newSubscription: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "new_subscription"); return t1 == null ? "" : t1; }, get$restMethod: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "rest_method"); return t1 == null ? "" : t1; }, get$headerKey: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "header_key"); return t1 == null ? "" : t1; }, get$invoicePaymentTerms: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "invoice_payment_terms"); return t1 == null ? "" : t1; }, get$quoteValidUntil: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "quote_valid_until"); return t1 == null ? "" : t1; }, get$headerValue: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "header_value"); return t1 == null ? "" : t1; }, get$addHeader: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "add_header"); return t1 == null ? "" : t1; }, get$removeHeader: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "remove_header"); return t1 == null ? "" : t1; }, get$noHeaders: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "no_headers"); return t1 == null ? "" : t1; }, get$subdomainHelp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "subdomain_help"); return t1 == null ? "" : t1; }, get$moveTop: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "move_top"); return t1 == null ? "" : t1; }, get$moveUp: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "move_up"); return t1 == null ? "" : t1; }, get$moveDown: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "move_down"); return t1 == null ? "" : t1; }, get$moveBottom: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "move_bottom"); return t1 == null ? "" : t1; }, get$enable: function(_) { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "enable"); return t1 == null ? "" : t1; }, get$partialValue: function() { var _s13_ = "partial_value", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s13_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_) : t1; }, get$lastUpdated: function() { var _s12_ = "last_updated", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s12_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s12_) : t1; }, get$exportedData: function() { var _s13_ = "exported_data", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s13_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_) : t1; }, get$waitForData: function() { var _s13_ = "wait_for_data", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s13_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_) : t1; }, get$subdomainGuide: function() { var _s15_ = "subdomain_guide", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s15_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s15_) : t1; }, get$changeEmail: function() { var _s12_ = "change_email", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s12_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s12_) : t1; }, get$colors: function() { var t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), "colors"); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), "colors") : t1; }, get$importColors: function() { var _s13_ = "import_colors", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s13_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s13_) : t1; }, get$addSecondContact: function() { var _s18_ = "add_second_contact", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s18_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s18_) : t1; }, get$recurringExpense: function() { var _s17_ = "recurring_expense", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s17_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s17_) : t1; }, get$newRecurringExpense: function() { var _s21_ = "new_recurring_expense", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s21_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s21_) : t1; }, get$updateAllRecords: function() { var _s18_ = "update_all_records", t1 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, this.localeCode), _s18_); return t1 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), _s18_) : t1; }, lookup$1: function(key) { var t1, t2, value, englishValue, lookupKey = A.toSnakeCase(key); if ((key == null ? "" : key).length === 0) return ""; if (C.JSString_methods.startsWith$1(lookupKey, "_")) return key; t1 = this.localeCode; t2 = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), lookupKey); value = t2 == null ? J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, t1), C.JSString_methods.replaceFirst$2(lookupKey, "_id", "")) : t2; if (value == null) value = ""; if (value.length === 0) { P.print("## ERROR: localization key not found - " + H.S(key)); englishValue = J.$index$asx($.LocalizationsProvider__localizedValues.$index(0, "en"), lookupKey); if (englishValue == null) englishValue = ""; return englishValue.length === 0 ? key : englishValue; } return value; }, compareTo$1: function($receiver, arg0) { return this.get$compareTo(this).call$1(arg0); }, remove$0: function($receiver) { return this.get$remove(this).call$0(); } }; X.AppLocalization.prototype = {}; X.AppLocalizationsDelegate.prototype = { isSupported$1: function(locale) { return C.JSArray_methods.contains$1(C.List_Hn1, J.toString$0$(locale)); }, load$1: function(_, locale) { return new O.SynchronousFuture(new X.AppLocalization(J.toString$0$(locale)), type$.SynchronousFuture_legacy_AppLocalization); }, shouldReload$1: function(old) { return false; } }; X._AppLocalization_LocaleCodeAware_LocalizationsProvider.prototype = {}; B.GoogleOAuth_signIn_closure.prototype = { call$1: function(value) { var t1 = value._google_sign_in$_data, t2 = t1.idToken; if (t2 == null) t2 = ""; t1 = t1.accessToken; if (t1 == null) t1 = ""; this.callback.call$2(t2, t1); }, $signature: 655 }; B.GoogleOAuth_signUp_closure.prototype = { call$1: function(value) { var t1 = value._google_sign_in$_data, t2 = t1.idToken; if (t2 == null) t2 = ""; t1 = t1.accessToken; if (t1 == null) t1 = ""; this.callback.call$2(t2, t1); }, $signature: 655 }; A.toSnakeCase_closure.prototype = { call$1: function(match) { return "_" + match.$index(0, 0).toLowerCase(); }, $signature: 652 }; A.toCamelCase_closure.prototype = { call$1: function(word) { return A.toTitleCase(word); }, $signature: 15 }; A.toSpaceCase_closure.prototype = { call$1: function(match) { return " " + match.$index(0, 0).toLowerCase(); }, $signature: 652 }; A.toTitleCase_closure.prototype = { call$1: function(word) { if (word === "url") return "URL"; return J.substring$2$s(word, 0, 1).toUpperCase() + C.JSString_methods.substring$1(word, 1); }, $signature: 15 }; A.matchesStrings_closure.prototype = { call$1: function(haystack) { if (A.matchesString(haystack, this.needle)) this._box_0.isMatch = true; }, $signature: 7 }; A.matchesStringsValue_closure.prototype = { call$1: function(haystack) { var value = A.matchesStringValue(haystack, this.needle); if (value != null) this._box_0.match = value; }, $signature: 7 }; L.loadEmailTemplate_closure.prototype = { call$1: function(response) { var t1 = J.getInterceptor$asx(response); this.onComplete.call$4(t1.$index(response, "subject"), J.replaceFirst$2$s(t1.$index(response, "wrapper"), "$body", t1.$index(response, "body")), t1.$index(response, "raw_subject"), t1.$index(response, "raw_body")); }, $signature: 8 }; L.loadEmailTemplate_closure0.prototype = { call$1: function(error) { var t1, t2; O.showErrorDialog(false, this.context, H.S(error)); t1 = this._box_0; t2 = t1.subject; t1 = t1.body; this.onComplete.call$4(t2, t1, t2, t1); }, $signature: 8 }; L.WebUtils_registerWebView_closure.prototype = { call$1: function(viewId) { var t2, t1 = document.createElement("iframe"); t1.src = this.html; t2 = t1.style; t2.border = "none"; return t1; }, $signature: 2623 }; L.WebUtils_warnChanges_closure.prototype = { call$1: function(e) { if (this.store.get$_store$_state().hasChanges$0()) J.set$returnValue$x(type$.legacy_BeforeUnloadEvent._as(e), "Changes you made may not be saved."); }, $signature: 2624 }; V.AndroidAuthMessages.prototype = {}; V.IOSAuthMessages.prototype = {}; L.LocalAuthentication.prototype = { authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs: function(biometricOnly, localizedReason, stickyAuth, useErrorDialogs) { return this.authenticate$body$LocalAuthentication(true, localizedReason, false, true); }, authenticate$body$LocalAuthentication: function(biometricOnly, localizedReason, stickyAuth, useErrorDialogs) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), t1; var $async$authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start P.LinkedHashMap_LinkedHashMap$_literal(["localizedReason", localizedReason, "useErrorDialogs", true, "stickyAuth", false, "sensitiveTransaction", true, "biometricOnly", true], type$.String, type$.Object); t1 = $.$get$Platform__operatingSystem(); t1 = F.PlatformException$("OtherOperatingSystem", "Your operating system is " + H.S(t1), "Local authentication does not support non-Android/iOS operating systems.", null); throw H.wrapException(t1); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$authenticate$4$biometricOnly$localizedReason$stickyAuth$useErrorDialogs, $async$completer); }, get$canCheckBiometrics: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$get$canCheckBiometrics = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.MethodChannel_jZA.invokeListMethod$1$1("getAvailableBiometrics", type$.String), $async$get$canCheckBiometrics); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = J.get$isNotEmpty$asx(t1); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$get$canCheckBiometrics, $async$completer); } }; Y.Level.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof Y.Level && this.value === other.value; }, $lt: function(_, other) { return C.JSInt_methods.$lt(this.value, other.get$value(other)); }, $gt: function(_, other) { return C.JSInt_methods.$gt(this.value, other.get$value(other)); }, $ge: function(_, other) { return this.value >= other.value; }, compareTo$1: function(_, other) { return this.value - other.value; }, get$hashCode: function(_) { return this.value; }, toString$0: function(_) { return this.name; }, $isComparable: 1, get$name: function(receiver) { return this.name; }, get$value: function(receiver) { return this.value; } }; L.LogRecord.prototype = { toString$0: function(_) { return "[" + this.level.name + "] " + this.loggerName + ": " + H.S(this.message); } }; F.Logger.prototype = { get$fullName: function() { var t1 = this.parent, t2 = t1 == null ? null : t1.name.length !== 0, t3 = this.name; return t2 === true ? t1.get$fullName() + "." + t3 : t3; }, get$level: function(_) { var t1, effectiveLevel; if (this.parent == null) { t1 = this._level; t1.toString; effectiveLevel = t1; } else { t1 = $.$get$Logger_root(); t1 = t1._level; t1.toString; effectiveLevel = t1; } return effectiveLevel; }, log$4: function(logLevel, message, error, stackTrace) { var msg, record, _this = this, t1 = logLevel.value; if (t1 >= _this.get$level(_this).value) { if (type$.Function._is(message)) message = message.call$0(); msg = typeof message == "string" ? message : J.toString$0$(message); if (t1 >= 2000) { P.StackTrace_current(); logLevel.toString$0(0); H.S(msg); } t1 = _this.get$fullName(); Date.now(); $.LogRecord__nextNumber = $.LogRecord__nextNumber + 1; record = new L.LogRecord(logLevel, msg, t1); if (_this.parent == null) _this._publish$1(record); else $.$get$Logger_root()._publish$1(record); } }, log$2: function(logLevel, message) { return this.log$4(logLevel, message, null, null); }, _publish$1: function(record) { var t1 = this._logger$_controller; return t1 == null ? null : t1.add$1(0, record); }, get$name: function(receiver) { return this.name; } }; F.Logger_Logger_closure.prototype = { call$0: function() { var dot, $parent, t1, thisName = this.name; if (C.JSString_methods.startsWith$1(thisName, ".")) H.throwExpression(P.ArgumentError$("name shouldn't start with a '.'")); dot = C.JSString_methods.lastIndexOf$1(thisName, "."); if (dot === -1) $parent = thisName !== "" ? F.Logger_Logger("") : null; else { $parent = F.Logger_Logger(C.JSString_methods.substring$2(thisName, 0, dot)); thisName = C.JSString_methods.substring$1(thisName, dot + 1); } t1 = new F.Logger(thisName, $parent, P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Logger)); if ($parent == null) t1._level = C.Level_INFO_800; else $parent._logger$_children.$indexSet(0, thisName, t1); return t1; }, $signature: 2625 }; Z._MdiIconData.prototype = {}; O.memo1__prevArg_set.prototype = { call$1: function(t1) { return this._box_0._prevArg = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo1__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo1__prevArg_get.prototype = { call$0: function() { var t1 = this._box_0._prevArg; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArg")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo1__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo1_closure.prototype = { call$1: function(arg) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(arg, _this._prevArg_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArg_set.call$1(arg); _this._prevResult_set.call$1(_this.func.call$1(arg)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { return this.R._eval$1("@<0>")._bind$1(this.A)._eval$1("1(2)"); } }; O.memo2__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo2__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo2__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo2__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo2__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo2__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo2_closure.prototype = { call$2: function(argA, argB) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevResult_set.call$1(_this.func.call$2(argA, argB)); t1.isInitial = false; return t3.call$0(); } }, "call*": "call$2", $requiredArgCount: 2, $signature: function() { return this.R._eval$1("@<0>")._bind$1(this.A)._bind$1(this.B)._eval$1("1(2,3)"); } }; O.memo3__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo3__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo3__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo3__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo3__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo3__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo3__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo3__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo3_closure.prototype = { call$3: function(argA, argB, argC) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevResult_set.call$1(_this.func.call$3(argA, argB, argC)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._eval$1("1(2,3,4)"); } }; O.memo4__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo4__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo4__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo4__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo4__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo4__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo4__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo4__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo4__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo4__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo4_closure.prototype = { call$4: function(argA, argB, argC, argD) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevResult_set.call$1(_this.func.call$4(argA, argB, argC, argD)); t1.isInitial = false; return t3.call$0(); } }, "call*": "call$4", $requiredArgCount: 4, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._eval$1("1(2,3,4,5)"); } }; O.memo5__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo5__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo5__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo5__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo5__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo5__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo5__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo5__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo5__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo5__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo5__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo5__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo5_closure.prototype = { call$5: function(argA, argB, argC, argD, argE) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevResult_set.call$1(_this.func.call$5(argA, argB, argC, argD, argE)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._eval$1("1(2,3,4,5,6)"); } }; O.memo6__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo6__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo6__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo6__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo6__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo6__prevArgF_set.prototype = { call$1: function(t1) { return this._box_0._prevArgF = t1; }, $signature: function() { return this.F._eval$1("@(0)"); } }; O.memo6__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo6__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo6__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo6__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo6__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo6__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo6__prevArgF_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgF; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgF")) : t1; }, $signature: function() { return this.F._eval$1("0()"); } }; O.memo6__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo6_closure.prototype = { call$6: function(argA, argB, argC, argD, argE, argF) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()) && J.$eq$(argF, _this._prevArgF_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevArgF_set.call$1(argF); _this._prevResult_set.call$1(_this.func.call$6(argA, argB, argC, argD, argE, argF)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._eval$1("1(2,3,4,5,6,7)"); } }; O.memo7__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo7__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo7__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo7__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo7__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo7__prevArgF_set.prototype = { call$1: function(t1) { return this._box_0._prevArgF = t1; }, $signature: function() { return this.F._eval$1("@(0)"); } }; O.memo7__prevArgG_set.prototype = { call$1: function(t1) { return this._box_0._prevArgG = t1; }, $signature: function() { return this.G._eval$1("@(0)"); } }; O.memo7__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo7__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo7__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo7__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo7__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo7__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo7__prevArgF_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgF; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgF")) : t1; }, $signature: function() { return this.F._eval$1("0()"); } }; O.memo7__prevArgG_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgG; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgG")) : t1; }, $signature: function() { return this.G._eval$1("0()"); } }; O.memo7__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo7_closure.prototype = { call$7: function(argA, argB, argC, argD, argE, argF, argG) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()) && J.$eq$(argF, _this._prevArgF_get.call$0()) && J.$eq$(argG, _this._prevArgG_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevArgF_set.call$1(argF); _this._prevArgG_set.call$1(argG); _this._prevResult_set.call$1(_this.func.call$7(argA, argB, argC, argD, argE, argF, argG)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._eval$1("1(2,3,4,5,6,7,8)"); } }; O.memo8__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo8__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo8__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo8__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo8__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo8__prevArgF_set.prototype = { call$1: function(t1) { return this._box_0._prevArgF = t1; }, $signature: function() { return this.F._eval$1("@(0)"); } }; O.memo8__prevArgG_set.prototype = { call$1: function(t1) { return this._box_0._prevArgG = t1; }, $signature: function() { return this.G._eval$1("@(0)"); } }; O.memo8__prevArgH_set.prototype = { call$1: function(t1) { return this._box_0._prevArgH = t1; }, $signature: function() { return this.H._eval$1("@(0)"); } }; O.memo8__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo8__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo8__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo8__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo8__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo8__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo8__prevArgF_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgF; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgF")) : t1; }, $signature: function() { return this.F._eval$1("0()"); } }; O.memo8__prevArgG_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgG; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgG")) : t1; }, $signature: function() { return this.G._eval$1("0()"); } }; O.memo8__prevArgH_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgH; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgH")) : t1; }, $signature: function() { return this.H._eval$1("0()"); } }; O.memo8__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo8_closure.prototype = { call$8: function(argA, argB, argC, argD, argE, argF, argG, argH) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()) && J.$eq$(argF, _this._prevArgF_get.call$0()) && J.$eq$(argG, _this._prevArgG_get.call$0()) && J.$eq$(argH, _this._prevArgH_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevArgF_set.call$1(argF); _this._prevArgG_set.call$1(argG); _this._prevArgH_set.call$1(argH); _this._prevResult_set.call$1(_this.func.call$8(argA, argB, argC, argD, argE, argF, argG, argH)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._eval$1("1(2,3,4,5,6,7,8,9)"); } }; O.memo9__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo9__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo9__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo9__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo9__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo9__prevArgF_set.prototype = { call$1: function(t1) { return this._box_0._prevArgF = t1; }, $signature: function() { return this.F._eval$1("@(0)"); } }; O.memo9__prevArgG_set.prototype = { call$1: function(t1) { return this._box_0._prevArgG = t1; }, $signature: function() { return this.G._eval$1("@(0)"); } }; O.memo9__prevArgH_set.prototype = { call$1: function(t1) { return this._box_0._prevArgH = t1; }, $signature: function() { return this.H._eval$1("@(0)"); } }; O.memo9__prevArgI_set.prototype = { call$1: function(t1) { return this._box_0._prevArgI = t1; }, $signature: function() { return this.I._eval$1("@(0)"); } }; O.memo9__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo9__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo9__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo9__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo9__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo9__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo9__prevArgF_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgF; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgF")) : t1; }, $signature: function() { return this.F._eval$1("0()"); } }; O.memo9__prevArgG_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgG; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgG")) : t1; }, $signature: function() { return this.G._eval$1("0()"); } }; O.memo9__prevArgH_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgH; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgH")) : t1; }, $signature: function() { return this.H._eval$1("0()"); } }; O.memo9__prevArgI_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgI; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgI")) : t1; }, $signature: function() { return this.I._eval$1("0()"); } }; O.memo9__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo9_closure.prototype = { call$9: function(argA, argB, argC, argD, argE, argF, argG, argH, argI) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()) && J.$eq$(argF, _this._prevArgF_get.call$0()) && J.$eq$(argG, _this._prevArgG_get.call$0()) && J.$eq$(argH, _this._prevArgH_get.call$0()) && J.$eq$(argI, _this._prevArgI_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevArgF_set.call$1(argF); _this._prevArgG_set.call$1(argG); _this._prevArgH_set.call$1(argH); _this._prevArgI_set.call$1(argI); _this._prevResult_set.call$1(_this.func.call$9(argA, argB, argC, argD, argE, argF, argG, argH, argI)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._bind$1(_this.I)._eval$1("1(2,3,4,5,6,7,8,9,10)"); } }; O.memo10__prevArgA_set.prototype = { call$1: function(t1) { return this._box_0._prevArgA = t1; }, $signature: function() { return this.A._eval$1("@(0)"); } }; O.memo10__prevArgB_set.prototype = { call$1: function(t1) { return this._box_0._prevArgB = t1; }, $signature: function() { return this.B._eval$1("@(0)"); } }; O.memo10__prevArgC_set.prototype = { call$1: function(t1) { return this._box_0._prevArgC = t1; }, $signature: function() { return this.C._eval$1("@(0)"); } }; O.memo10__prevArgD_set.prototype = { call$1: function(t1) { return this._box_0._prevArgD = t1; }, $signature: function() { return this.D._eval$1("@(0)"); } }; O.memo10__prevArgE_set.prototype = { call$1: function(t1) { return this._box_0._prevArgE = t1; }, $signature: function() { return this.E._eval$1("@(0)"); } }; O.memo10__prevArgF_set.prototype = { call$1: function(t1) { return this._box_0._prevArgF = t1; }, $signature: function() { return this.F._eval$1("@(0)"); } }; O.memo10__prevArgG_set.prototype = { call$1: function(t1) { return this._box_0._prevArgG = t1; }, $signature: function() { return this.G._eval$1("@(0)"); } }; O.memo10__prevArgH_set.prototype = { call$1: function(t1) { return this._box_0._prevArgH = t1; }, $signature: function() { return this.H._eval$1("@(0)"); } }; O.memo10__prevArgI_set.prototype = { call$1: function(t1) { return this._box_0._prevArgI = t1; }, $signature: function() { return this.I._eval$1("@(0)"); } }; O.memo10__prevArgJ_set.prototype = { call$1: function(t1) { return this._box_0._prevArgJ = t1; }, $signature: function() { return this.J._eval$1("@(0)"); } }; O.memo10__prevResult_set.prototype = { call$1: function(t1) { return this._box_0._prevResult = t1; }, $signature: function() { return this.R._eval$1("@(0)"); } }; O.memo10__prevArgA_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgA; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgA")) : t1; }, $signature: function() { return this.A._eval$1("0()"); } }; O.memo10__prevArgB_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgB; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgB")) : t1; }, $signature: function() { return this.B._eval$1("0()"); } }; O.memo10__prevArgC_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgC; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgC")) : t1; }, $signature: function() { return this.C._eval$1("0()"); } }; O.memo10__prevArgD_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgD; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgD")) : t1; }, $signature: function() { return this.D._eval$1("0()"); } }; O.memo10__prevArgE_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgE; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgE")) : t1; }, $signature: function() { return this.E._eval$1("0()"); } }; O.memo10__prevArgF_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgF; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgF")) : t1; }, $signature: function() { return this.F._eval$1("0()"); } }; O.memo10__prevArgG_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgG; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgG")) : t1; }, $signature: function() { return this.G._eval$1("0()"); } }; O.memo10__prevArgH_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgH; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgH")) : t1; }, $signature: function() { return this.H._eval$1("0()"); } }; O.memo10__prevArgI_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgI; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgI")) : t1; }, $signature: function() { return this.I._eval$1("0()"); } }; O.memo10__prevArgJ_get.prototype = { call$0: function() { var t1 = this._box_0._prevArgJ; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevArgJ")) : t1; }, $signature: function() { return this.J._eval$1("0()"); } }; O.memo10__prevResult_get.prototype = { call$0: function() { var t1 = this._box_0._prevResult; return t1 === $ ? H.throwExpression(H.LateError$localNI("prevResult")) : t1; }, $signature: function() { return this.R._eval$1("0()"); } }; O.memo10_closure.prototype = { call$10: function(argA, argB, argC, argD, argE, argF, argG, argH, argI, argJ) { var _this = this, t1 = _this._box_0, t2 = !t1.isInitial && J.$eq$(argA, _this._prevArgA_get.call$0()) && J.$eq$(argB, _this._prevArgB_get.call$0()) && J.$eq$(argC, _this._prevArgC_get.call$0()) && J.$eq$(argD, _this._prevArgD_get.call$0()) && J.$eq$(argE, _this._prevArgE_get.call$0()) && J.$eq$(argF, _this._prevArgF_get.call$0()) && J.$eq$(argG, _this._prevArgG_get.call$0()) && J.$eq$(argH, _this._prevArgH_get.call$0()) && J.$eq$(argI, _this._prevArgI_get.call$0()) && J.$eq$(argJ, _this._prevArgJ_get.call$0()), t3 = _this._prevResult_get; if (t2) return t3.call$0(); else { _this._prevArgA_set.call$1(argA); _this._prevArgB_set.call$1(argB); _this._prevArgC_set.call$1(argC); _this._prevArgD_set.call$1(argD); _this._prevArgE_set.call$1(argE); _this._prevArgF_set.call$1(argF); _this._prevArgG_set.call$1(argG); _this._prevArgH_set.call$1(argH); _this._prevArgI_set.call$1(argI); _this._prevArgJ_set.call$1(argJ); _this._prevResult_set.call$1(_this.func.call$10(argA, argB, argC, argD, argE, argF, argG, argH, argI, argJ)); t1.isInitial = false; return t3.call$0(); } }, $signature: function() { var _this = this; return _this.R._eval$1("@<0>")._bind$1(_this.A)._bind$1(_this.B)._bind$1(_this.C)._bind$1(_this.D)._bind$1(_this.E)._bind$1(_this.F)._bind$1(_this.G)._bind$1(_this.H)._bind$1(_this.I)._bind$1(_this.J)._eval$1("1(2,3,4,5,6,7,8,9,10,11)"); } }; S.PdfDocument.prototype = { getPage$1: function(_, pageNumber) { return this.getPage$body$PdfDocument(_, pageNumber); }, getPage$body$PdfDocument: function(_, pageNumber) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.PdfPage), $async$returnValue, $async$self = this; var $async$getPage$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (pageNumber < 1 || pageNumber > $async$self.pagesCount) throw H.wrapException(new S.PdfPageNotFoundException()); $async$returnValue = $async$self._lock.synchronized$1$1(new S.PdfDocument_getPage_closure($async$self, pageNumber), type$.PdfPage); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getPage$1, $async$completer); }, $eq: function(_, other) { if (other == null) return false; return other instanceof S.PdfDocument && other.id == this.id; }, get$hashCode: function(_) { return H.objectHashCode(this.id); }, toString$0: function(_) { var _this = this; return H.getRuntimeType(_this).toString$0(0) + "{document: " + _this.sourceName + ", id: " + H.S(_this.id) + ", pagesCount: " + H.S(_this.pagesCount) + "}"; }, get$id: function(receiver) { return this.id; } }; S.PdfDocument_getPage_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.PdfPage), $async$returnValue, $async$self = this, t4, t1, t2, t3; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = $async$self.pageNumber; $async$goto = 3; return P._asyncAwait(C.MethodChannel_EKW._invokeMethod$1$3$arguments$missingOk("open.page", P.LinkedHashMap_LinkedHashMap$_literal(["documentId", t1.id, "page", t2], type$.String, type$.Object), false, type$.Map_dynamic_dynamic), $async$call$0); case 3: // returning from await. t3 = $async$result; t3.toString; t4 = J.getInterceptor$asx(t3); $async$returnValue = new V.PdfPage(t1._lock, t1, H._asStringS(t4.$index(t3, "id")), t2, H._asIntS(t4.$index(t3, "width")), H._asIntS(t4.$index(t3, "height"))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 2626 }; S.PdfPageNotFoundException.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + ": Page is not in the document"; }, $isException: 1 }; V.PdfPageFormat.prototype = {}; V.PdfPage.prototype = { render$4$backgroundColor$format$height$width: function(_, backgroundColor, format, height, width) { return this._page$_lock.synchronized$1$1(new V.PdfPage_render_closure(this, width, height, format, backgroundColor, null), type$.nullable_PdfPageImage); }, close$0: function(_) { return this._page$_lock.synchronized$1$1(new V.PdfPage_close_closure(this), type$.void); }, $eq: function(_, other) { if (other == null) return false; return other instanceof V.PdfPage && H.objectHashCode(other.document.id) == H.objectHashCode(this.document.id) && other.pageNumber === this.pageNumber; }, get$hashCode: function(_) { return (H.objectHashCode(this.document.id) ^ this.pageNumber) >>> 0; }, toString$0: function(_) { var _this = this; return H.getRuntimeType(_this).toString$0(0) + "{document: " + _this.document.toString$0(0) + ", page: " + _this.pageNumber + ", width: " + H.S(_this.width) + ", height: " + H.S(_this.height) + "}"; }, get$document: function(receiver) { return this.document; }, get$id: function(receiver) { return this.id; } }; V.PdfPage_render_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.nullable_PdfPageImage), $async$returnValue, $async$self = this, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1.isClosed) throw H.wrapException(new V.PdfPageAlreadyClosedException()); $async$returnValue = V.PdfPageImage__render($async$self.backgroundColor, $async$self.cropRect, $async$self.format, $async$self.height, t1.id, t1.pageNumber, $async$self.width); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 2627 }; V.PdfPage_close_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$self = this, t1; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; if (t1.isClosed) throw H.wrapException(new V.PdfPageAlreadyClosedException()); else t1.isClosed = true; $async$returnValue = C.MethodChannel_EKW._invokeMethod$1$3$arguments$missingOk("close.page", t1.id, false, type$.void); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 93 }; V.PdfPageAlreadyClosedException.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + ": Page already closed"; }, $isException: 1 }; V.PdfPageImage.prototype = { $eq: function(_, other) { if (other == null) return false; return other instanceof V.PdfPageImage && other.bytes.byteLength == this.bytes.byteLength; }, get$hashCode: function(_) { return (H.objectHashCode(this.id) ^ this.pageNumber) >>> 0; }, toString$0: function(_) { var _this = this; return H.getRuntimeType(_this).toString$0(0) + "{id: " + H.S(_this.id) + ", page: " + _this.pageNumber + ", width: " + H.S(_this.width) + ", height: " + H.S(_this.height) + ", bytesLength: " + H.S(_this.bytes.byteLength) + "}"; }, get$id: function(receiver) { return this.id; } }; V.PdfNotSupportException.prototype = { toString$0: function(_) { return H.getRuntimeType(this).toString$0(0) + ": " + this.message; }, $isException: 1 }; S.Document.prototype = { get$id: function(receiver) { return this.id; }, get$document: function(receiver) { return this.document; } }; V.Page.prototype = { render$2$height$width: function(_, height, width) { return this.render$body$Page(_, height, width); }, render$body$Page: function(_, height, width) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Data), $async$returnValue, $async$self = this, t3, viewport, renderContext, blob, data, reader, canvas, context, t1, t2; var $async$render$2$height$width = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start canvas = J.createElement$1$x($.$get$_context().$index(0, "document"), "canvas"); context = type$.nullable_CanvasRenderingContext2D._as((canvas && C.CanvasElement_methods).getContext$1(canvas, "2d")); t1 = $async$self.page; t2 = N.Settings$(null); t2.scale = width / J.get$width$x($async$self._viewport); t3 = J.getInterceptor$x(t1); viewport = t3.getViewport$1(t1, t2); t2 = J.getInterceptor$x(viewport); canvas.height = J.toInt$0$n(t2.get$height(viewport)); canvas.width = J.toInt$0$n(t2.get$width(viewport)); renderContext = N.Settings$(null); renderContext.canvasContext = context; renderContext.viewport = viewport; $async$goto = 3; return P._asyncAwait(P.promiseToFuture(J.get$promise$x(t3.render$1(t1, renderContext)), type$.void), $async$render$2$height$width); case 3: // returning from await. t1 = new P._Future($.Zone__current, type$._Future_void); $async$goto = 4; return P._asyncAwait(C.CanvasElement_methods.toBlob$0(canvas), $async$render$2$height$width); case 4: // returning from await. blob = $async$result; data = new H._CopyingBytesBuilder($.$get$_CopyingBytesBuilder__emptyList()); reader = new FileReader(); reader.readAsArrayBuffer(blob); W._EventStreamSubscription$(reader, "loadend", new V.Page_render_closure(data, reader, new P._AsyncCompleter(t1, type$._AsyncCompleter_void)), false, type$.legacy_ProgressEvent); $async$goto = 5; return P._asyncAwait(t1, $async$render$2$height$width); case 5: // returning from await. $async$returnValue = new V.Data(width, height, data.toBytes$0()); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$render$2$height$width, $async$completer); }, get$id: function(receiver) { return this.id; } }; V.Page_render_closure.prototype = { call$1: function(e) { this.data.add$1(0, type$.List_int._as(C.FileReader_methods.get$result(this.reader))); this.completer.complete$0(0); }, $signature: 175 }; V.Data.prototype = {}; M.NativePdfRendererPlugin.prototype = { onMethodCall$1: function($call) { return this.onMethodCall$body$NativePdfRendererPlugin($call); }, onMethodCall$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue, $async$self = this, t1; var $async$onMethodCall$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) $async$outer: switch ($async$goto) { case 0: // Function start t1 = $call.method; switch (t1) { case "open.document.data": $async$returnValue = $async$self.openDocumentDataHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "open.document.file": $async$returnValue = $async$self.openDocumentFileHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "open.document.asset": $async$returnValue = $async$self.openDocumentAssetHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "open.page": $async$returnValue = $async$self.openPageHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "close.document": $async$returnValue = $async$self.closeDocumentHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "close.page": $async$returnValue = $async$self.closePageHandler$1($call); // goto return $async$goto = 1; break $async$outer; case "render": $async$returnValue = $async$self.renderHandler$1($call); // goto return $async$goto = 1; break $async$outer; default: throw H.wrapException(F.PlatformException$("Unimplemented", string$.The_pl + t1 + "'", null, null)); } case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$onMethodCall$1, $async$completer); }, openDocumentDataHandler$1: function($call) { return this.openDocumentDataHandler$body$NativePdfRendererPlugin($call); }, openDocumentDataHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, $document, documentData, t1; var $async$openDocumentDataHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start documentData = new Uint8Array(H._ensureNativeList($call.$arguments)); t1 = N.Settings$(null); t1.data = documentData; $async$goto = 3; return P._asyncAwait(P.promiseToFuture(J.get$promise$x(self.pdfjsLib.getDocument(t1)), type$.PdfJsDoc), $async$openDocumentDataHandler$1); case 3: // returning from await. $document = $async$result; t1 = $.$get$uuid0().v1$0(); $async$self._documents._items.$indexSet(0, t1, new S.Document(t1, $document)); $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["id", t1, "pagesCount", J.get$numPages$x($document)], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$openDocumentDataHandler$1, $async$completer); }, openDocumentFileHandler$1: function($call) { return this.openDocumentFileHandler$body$NativePdfRendererPlugin($call); }, openDocumentFileHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void); var $async$openDocumentFileHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start throw H.wrapException(F.PlatformException$("Unimplemented", string$.The_pl + $call.method + "'", null, null)); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$openDocumentFileHandler$1, $async$completer); }, openDocumentAssetHandler$1: function($call) { return this.openDocumentAssetHandler$body$NativePdfRendererPlugin($call); }, openDocumentAssetHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, $async$temp1, $async$temp2, $async$temp3, $async$temp4; var $async$openDocumentAssetHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = F; $async$temp2 = "open.document.data"; $async$temp3 = J; $async$temp4 = J; $async$goto = 3; return P._asyncAwait($.$get$rootBundle().load$1(0, $call.$arguments), $async$openDocumentAssetHandler$1); case 3: // returning from await. $async$returnValue = $async$self.openDocumentDataHandler$1(new $async$temp1.MethodCall($async$temp2, $async$temp3.asUint8List$0$x($async$temp4.get$buffer$x($async$result)))); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$openDocumentAssetHandler$1, $async$completer); }, openPageHandler$1: function($call) { return this.openPageHandler$body$NativePdfRendererPlugin($call); }, openPageHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, t3, t1, t2, documentId, pageNumber, page; var $async$openPageHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); documentId = t2.$index(t1, "documentId"); pageNumber = t2.$index(t1, "page"); $async$goto = 3; return P._asyncAwait(P.promiseToFuture(J.getPage$1$x($async$self._documents.$get$1(0, documentId).document, pageNumber), type$.PdfJsPage), $async$openPageHandler$1); case 3: // returning from await. page = $async$result; t1 = $.$get$uuid().v1$0(); t2 = N.Settings$(null); t2.scale = 1; t2 = J.getViewport$1$x(page, t2); $async$self._pages._items.$indexSet(0, t1, new V.Page(t1, documentId, page, t2)); t3 = J.getInterceptor$x(t2); $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["documentId", documentId, "id", t1, "pageNumber", J.get$pageNumber$x(page), "width", J.toInt$0$n(t3.get$width(t2)), "height", J.toInt$0$n(t3.get$height(t2))], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$openPageHandler$1, $async$completer); }, closeDocumentHandler$1: function($call) { return this.closeDocumentHandler$body$NativePdfRendererPlugin($call); }, closeDocumentHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, id, t1; var $async$closeDocumentHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start id = $call.$arguments; t1 = $async$self._documents; t1.$get$1(0, id).toString; t1.super$Repository$close(0, id); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$closeDocumentHandler$1, $async$completer); }, closePageHandler$1: function($call) { return this.closePageHandler$body$NativePdfRendererPlugin($call); }, closePageHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, $async$self = this, id, t1; var $async$closePageHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start id = $call.$arguments; t1 = $async$self._pages; t1.$get$1(0, id).toString; t1.super$Repository$close(0, id); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$closePageHandler$1, $async$completer); }, renderHandler$1: function($call) { return this.renderHandler$body$NativePdfRendererPlugin($call); }, renderHandler$body$NativePdfRendererPlugin: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_dynamic), $async$returnValue, $async$self = this, result, t1, t2, pageId, width, height; var $async$renderHandler$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = $call.$arguments; t2 = J.getInterceptor$asx(t1); pageId = t2.$index(t1, "pageId"); width = t2.$index(t1, "width"); height = t2.$index(t1, "height"); t1 = $async$self._pages.$get$1(0, pageId); t1.toString; $async$goto = 3; return P._asyncAwait(t1.render$2$height$width(0, height, width), $async$renderHandler$1); case 3: // returning from await. result = $async$result; $async$returnValue = P.LinkedHashMap_LinkedHashMap$_literal(["width", result.width, "height", result.height, "data", result.data], type$.String, type$.dynamic); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$renderHandler$1, $async$completer); } }; N.PdfJs.prototype = {}; N.Settings.prototype = {}; N.PdfJsDocLoader.prototype = {}; N.PdfJsDoc.prototype = {}; N.PdfJsPage.prototype = {}; N.PdfJsViewport.prototype = {}; N.PdfJsRender.prototype = {}; S.DocumentRepository.prototype = {}; S.PageRepository.prototype = {}; T.Repository.prototype = { $get$1: function(_, id) { var t1 = this._items; if (!t1.containsKey$1(0, id)) throw H.wrapException(new T.RepositoryItemNotFoundException()); return t1.$index(0, id); }, close$1: function(_, id) { this._items.remove$1(0, id); } }; T.RepositoryItemNotFoundException.prototype = {$isException: 1}; X.PdfController.prototype = { nextPage$2$curve$duration: function(curve, duration) { var t1 = this._native_pdf_view$_pageController, position = type$._PagePosition._as(C.JSArray_methods.get$single(t1._positions)), t2 = position.get$page(position); t2.toString; return t1.animateToPage$3$curve$duration(C.JSNumber_methods.round$0(t2) + 1, curve, duration); }, previousPage$2$curve$duration: function(curve, duration) { var t1 = this._native_pdf_view$_pageController, position = type$._PagePosition._as(C.JSArray_methods.get$single(t1._positions)), t2 = position.get$page(position); t2.toString; return t1.animateToPage$3$curve$duration(C.JSNumber_methods.round$0(t2) - 1, curve, duration); }, loadDocument$1: function(documentFuture) { this._pdfViewState._changeLoadingState$1(C._PdfViewLoadingState_0); return this._loadDocument$2$initialPage(documentFuture, 1); }, _loadDocument$2$initialPage: function(documentFuture, initialPage) { return this._loadDocument$body$PdfController(documentFuture, initialPage); }, _loadDocument$body$PdfController: function(documentFuture, initialPage) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.void), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, t1, exception, $async$exception; var $async$_loadDocument$2$initialPage = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(P.Future_Future$value(true, type$.bool), $async$_loadDocument$2$initialPage); case 3: // returning from await. if (!$async$result) { t1 = $async$self._pdfViewState; t1._loadingError = new P._Exception("This device does not support the display of PDF documents"); t1._changeLoadingState$1(C._PdfViewLoadingState_1); // goto return $async$goto = 1; break; } $async$handler = 5; $async$self._reInitPageController$1(initialPage); $async$goto = 8; return P._asyncAwait(documentFuture, $async$_loadDocument$2$initialPage); case 8: // returning from await. $async$self._document = $async$result; $async$self._pdfViewState._changeLoadingState$1(C._PdfViewLoadingState_2); $async$handler = 2; // goto after finally $async$goto = 7; break; case 5: // catch $async$handler = 4; $async$exception = $async$currentError; error = H.unwrapException($async$exception); t1 = $async$self._pdfViewState; t1.toString; t1._loadingError = type$.Exception._is(error) ? error : new P._Exception("Unknown error"); t1._changeLoadingState$1(C._PdfViewLoadingState_1); // goto after finally $async$goto = 7; break; case 4: // uncaught // goto rethrow $async$goto = 2; break; case 7: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$_loadDocument$2$initialPage, $async$completer); }, _reInitPageController$1: function(initialPage) { var t1 = this._native_pdf_view$_pageController; if (t1 != null) t1.dispose$0(0); this._native_pdf_view$_pageController = D.PageController$(initialPage - 1, 1); }, _native_pdf_view$_attach$1: function(pdfViewState) { var _this = this; if (_this._pdfViewState != null) return; _this._reInitPageController$1(1); _this._pdfViewState = pdfViewState; if (_this._document == null) _this._loadDocument$2$initialPage(_this.document, 1); }, dispose$0: function(_) { var t1 = this._native_pdf_view$_pageController; if (t1 != null) t1.dispose$0(0); }, get$document: function(receiver) { return this.document; } }; X.PdfView.prototype = { createState$0: function() { return new X._PdfViewState(P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.nullable_PdfPageImage), null, C._StateLifecycle_0); }, pageBuilder$3: function(arg0, arg1, arg2) { return X.native_pdf_view_PdfView__pageBuilder$closure().call$3(arg0, arg1, arg2); }, renderer$1: function(arg0) { return X.native_pdf_view_PdfView__render$closure().call$1(arg0); } }; X._PdfViewState.prototype = { initState$0: function() { var _this = this; _this.___PdfViewState__loadingState = C._PdfViewLoadingState_0; _this._widget.controller._native_pdf_view$_attach$1(_this); _this._widget.controller._native_pdf_view$_pageController.toString; _this.super$State$initState(); }, dispose$0: function(_) { this._widget.controller._pdfViewState = null; this.super$__PdfViewState_State_SingleTickerProviderStateMixin$dispose(0); }, _getPageImage$1: function(pageIndex) { return $.$get$_lock().synchronized$1$1(new X._PdfViewState__getPageImage_closure(this, pageIndex), type$.PdfPageImage); }, _changeLoadingState$1: function(state) { var t1, t2, _this = this; if (state === C._PdfViewLoadingState_0) _this._native_pdf_view$_pages.clear$0(0); else if (state === C._PdfViewLoadingState_2) { t1 = _this._widget; t2 = t1.onDocumentLoaded; if (t2 != null) { t1 = t1.controller._document; t1.toString; t2.call$1(t1); } } else if (state === C._PdfViewLoadingState_1) _this._widget.toString; _this.setState$1(new X._PdfViewState__changeLoadingState_closure(_this, state)); }, _buildLoaded$0: function() { var _this = this, t1 = _this._widget.controller; return new M.PhotoViewGallery(t1._document.pagesCount, new X._PdfViewState__buildLoaded_closure(_this), null, new X._PdfViewState__buildLoaded_closure0(_this), C.BoxDecoration_PTL, t1._native_pdf_view$_pageController, new X._PdfViewState__buildLoaded_closure1(_this), C.Axis_0, null); }, build$1: function(_, context) { var t2, $content, _this = this, _null = null, t1 = _this.___PdfViewState__loadingState; switch (t1 === $ ? H.throwExpression(H.LateError$fieldNI("_loadingState")) : t1) { case C._PdfViewLoadingState_0: t1 = H.getRuntimeType(_this).toString$0(0) + ".root.loading"; _this._widget.toString; t2 = T.SizedBox$(_null, _null, _null); $content = new T.KeyedSubtree(t2, new D.ValueKey(t1, type$.ValueKey_String)); break; case C._PdfViewLoadingState_1: t1 = H.getRuntimeType(_this).toString$0(0) + ".root.error"; _this._widget.toString; t2 = T.Center$(L.Text$(J.toString$0$(_this._loadingError), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null); $content = new T.KeyedSubtree(t2, new D.ValueKey(t1, type$.ValueKey_String)); break; case C._PdfViewLoadingState_2: t1 = H.getRuntimeType(_this).toString$0(0) + ".root.success"; $content = new T.KeyedSubtree(_this._buildLoaded$0(), new D.ValueKey(t1, type$.ValueKey_String)); break; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } _this._widget.toString; return G.AnimatedSwitcher$($content, C.Duration_1000000, new X._PdfViewState_build_closure()); } }; X._PdfViewState__getPageImage_closure.prototype = { call$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.PdfPageImage), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, page, t4, t1, t2, t3, $async$temp1, $async$temp2; var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; t2 = t1._native_pdf_view$_pages; t3 = $async$self.pageIndex; if (t2.$index(0, t3) != null) { t1 = t2.$index(0, t3); t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; } t4 = t1._widget.controller._document; t4.toString; $async$goto = 3; return P._asyncAwait(t4.getPage$1(0, t3 + 1), $async$call$0); case 3: // returning from await. page = $async$result; $async$handler = 4; $async$temp1 = t2; $async$temp2 = t3; $async$goto = 7; return P._asyncAwait(t1._widget.renderer$1(page), $async$call$0); case 7: // returning from await. $async$temp1.$indexSet(0, $async$temp2, $async$result); $async$next.push(6); // goto finally $async$goto = 5; break; case 4: // uncaught $async$next = [2]; case 5: // finally $async$handler = 2; $async$goto = 8; return P._asyncAwait(J.close$0$x(page), $async$call$0); case 8: // returning from await. // goto the next finally handler $async$goto = $async$next.pop(); break; case 6: // after finally t1 = t2.$index(0, t3); t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$call$0, $async$completer); }, $signature: 2628 }; X._PdfViewState__changeLoadingState_closure.prototype = { call$0: function() { this.$this.___PdfViewState__loadingState = this.state; }, $signature: 0 }; X._PdfViewState__buildLoaded_closure.prototype = { call$2: function(context, index) { var t3, t1 = this.$this, t2 = t1._widget; t2.toString; t3 = t1._getPageImage$1(index); t1 = t1._widget.controller._document; t1.toString; return t2.pageBuilder$3(t3, index, t1); }, $signature: 2629 }; X._PdfViewState__buildLoaded_closure0.prototype = { call$2: function(_, __) { var t1; this.$this._widget.toString; t1 = T.SizedBox$(null, null, null); return t1; }, $signature: 2630 }; X._PdfViewState__buildLoaded_closure1.prototype = { call$1: function(index) { var t1 = this.$this._widget.onPageChanged; if (t1 != null) t1.call$1(index + 1); }, $signature: 67 }; X._PdfViewState_build_closure.prototype = { call$2: function(child, animation) { return K.FadeTransition$(false, child, animation); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2631 }; X._PdfViewLoadingState.prototype = { toString$0: function(_) { return this._native_pdf_view$_name; } }; X.__PdfViewState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; V.PdfPageImageProvider.prototype = { load$2: function(_, key, decode) { var t1 = this._pdf_page_image_provider$_loadAsync$2(key, decode); key.toString; return L.MultiFrameImageStreamCompleter$(null, t1, null, new V.PdfPageImageProvider_load_closure(this), 1); }, obtainKey$1: function(configuration) { return new O.SynchronousFuture(this, type$.SynchronousFuture_PdfPageImageProvider); }, _pdf_page_image_provider$_loadAsync$2: function(key, decode) { return this._loadAsync$body$PdfPageImageProvider(key, decode); }, _loadAsync$body$PdfPageImageProvider: function(key, decode) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Codec), $async$returnValue, $async$self = this, loadedPdfPageImage, bytes; var $async$_pdf_page_image_provider$_loadAsync$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait($async$self.pdfPageImage, $async$_pdf_page_image_provider$_loadAsync$2); case 3: // returning from await. loadedPdfPageImage = $async$result; bytes = loadedPdfPageImage.bytes; if (bytes.byteLength === 0) throw H.wrapException(P.StateError$("" + loadedPdfPageImage.pageNumber + " page cannot be loaded as an image.")); $async$returnValue = decode.call$1(bytes); // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$_pdf_page_image_provider$_loadAsync$2, $async$completer); }, $eq: function(_, other) { if (other == null) return false; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; if (other instanceof V.PdfPageImageProvider && this.pageNumber == other.pageNumber && this.documentId == other.documentId && true) return true; return false; }, get$hashCode: function(_) { return P.hashValues(this.pageNumber, this.documentId, 1, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); } }; V.PdfPageImageProvider_load_closure.prototype = { call$0: function() { var $async$self = this; return P._makeSyncStarIterable(function() { var $async$goto = 0, $async$handler = 1, $async$currentError, t1; return function $async$call$0($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start t1 = $async$self.$this; $async$goto = 2; return U.ErrorDescription$("Page: " + H.S(t1.pageNumber) + ", DocumentId: " + H.S(t1.documentId)); case 2: // after yield // implicit return return P._IterationMarker_endOfIteration(); case 1: // rethrow return P._IterationMarker_uncaughtError($async$currentError); } }; }, type$.DiagnosticsNode); }, $signature: 113 }; F.AnimationDirection.prototype = { toString$0: function(_) { return this._fade_widget$_name; } }; F.FadeWidget.prototype = { createState$0: function() { return new F._FadeWidgetState(null, C._StateLifecycle_0); } }; F._FadeWidgetState.prototype = { get$opacity: function(_) { var t1 = this.___FadeWidgetState_opacity; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("opacity")) : t1; }, get$controller: function(_) { var t1 = this.___FadeWidgetState_controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("controller")) : t1; }, build$1: function(_, context) { var _this = this, t1 = _this.___FadeWidgetState_hideWidget; if (t1 === $ ? H.throwExpression(H.LateError$fieldNI("hideWidget")) : t1) return C.SizedBox_0_0_null_null; t1 = _this.get$opacity(_this); return K.FadeTransition$(false, _this._widget.child, t1); }, initState$0: function() { var t1, curved, begin, end, _this = this, _null = null; _this.super$State$initState(); _this.___FadeWidgetState_controller = G.AnimationController$(_null, _this._widget.duration, 0, _null, 1, _null, _this); t1 = _this.get$controller(_this); curved = S.CurvedAnimation$(_this._widget.curve, t1, _null); t1 = _this._widget.direction === C.AnimationDirection_0; begin = t1 ? 0 : 1; end = t1 ? 1 : 0; t1 = type$.Tween_double; _this.___FadeWidgetState_opacity = new R._AnimatedEvaluation(curved, new R.Tween(begin, end, t1), t1._eval$1("_AnimatedEvaluation")); _this.get$controller(_this).forward$0(0); _this.___FadeWidgetState_hideWidget = false; if (_this._widget.direction === C.AnimationDirection_1) _this.get$opacity(_this).addStatusListener$1(_this.get$animationStatusChange()); }, dispose$0: function(_) { var _this = this; _this.get$opacity(_this).removeStatusListener$1(_this.get$animationStatusChange()); _this.get$controller(_this).dispose$0(0); _this.super$__FadeWidgetState_State_SingleTickerProviderStateMixin$dispose(0); }, animationStatusChange$1: function($status) { this.setState$1(new F._FadeWidgetState_animationStatusChange_closure(this, $status)); } }; F._FadeWidgetState_animationStatusChange_closure.prototype = { call$0: function() { var t1 = this.$this; t1.___FadeWidgetState_hideWidget = t1._widget.direction === C.AnimationDirection_1 && this.status === C.AnimationStatus_3; }, $signature: 0 }; F.__FadeWidgetState_State_SingleTickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var t2, t1 = this.SingleTickerProviderStateMixin__ticker; if (t1 != null) { t2 = this._framework$_element; t2.toString; t1.set$muted(0, !U.TickerMode_of(t2)); } this.super$State$didChangeDependencies(); } }; U.OctoImage.prototype = { createState$0: function() { return new U._OctoImageState(C._StateLifecycle_0); } }; U._OctoImageState.prototype = { get$_imageHandler: function() { var t1 = this.___OctoImageState__imageHandler; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_imageHandler")) : t1; }, initState$0: function() { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16; this.super$State$initState(); t1 = this._widget; t2 = t1.image; t3 = t1.imageBuilder; t4 = t1.placeholderBuilder; t5 = t1.progressIndicatorBuilder; t6 = t1.errorBuilder; t7 = t1.placeholderFadeInDuration; t8 = t1.fadeOutDuration; t9 = t1.fadeOutCurve; t10 = t1.fadeInDuration; t11 = t1.fadeInCurve; t12 = t1.fit; t13 = t1.width; t14 = t1.height; t15 = t1.alignment; t16 = t1.repeat; this.___OctoImageState__imageHandler = Y.ImageHandler$(t15, t1.color, t1.colorBlendMode, t6, t11, t10, t9, t8, t1.filterQuality, t12, t14, t2, t3, false, t4, t7, t5, t16, t13); }, didUpdateWidget$1: function(oldWidget) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, _this = this; _this.super$State$didUpdateWidget(oldWidget); if (!oldWidget.image.$eq(0, _this._widget.image)) _this._widget.toString; t1 = _this._widget; t2 = t1.image; t3 = t1.imageBuilder; t4 = _this._previousHandler; t5 = t4 != null; t4 = t5 ? t4.get$build(t4) : t1.placeholderBuilder; t5 = t5 ? null : t1.progressIndicatorBuilder; t6 = t1.errorBuilder; t7 = t1.placeholderFadeInDuration; t8 = t1.fadeOutDuration; t9 = t1.fadeOutCurve; t10 = t1.fadeInDuration; t11 = t1.fadeInCurve; t12 = t1.fit; t13 = t1.width; t14 = t1.height; t15 = t1.alignment; t16 = t1.repeat; _this.___OctoImageState__imageHandler = Y.ImageHandler$(t15, t1.color, t1.colorBlendMode, t6, t11, t10, t9, t8, t1.filterQuality, t12, t14, t2, t3, false, t4, t7, t5, t16, t13); }, build$1: function(_, context) { var t1 = this._widget, t2 = t1.width; t1 = t1.height; return T.SizedBox$(this.get$_imageHandler().build$1(0, context), t1, t2); } }; Y._PlaceholderType.prototype = { toString$0: function(_) { return this._image_handler$_name; } }; Y.ImageHandler.prototype = { get$_placeholderType: function() { var t1 = this.__ImageHandler__placeholderType; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_placeholderType")) : t1; }, imageFrameBuilder$0: function() { var _this = this; switch (_this.get$_placeholderType()) { case C._PlaceholderType_0: return _this.get$_imageBuilder(); case C._PlaceholderType_1: return _this.get$_placeholderBuilder(); case C._PlaceholderType_2: return _this.get$_preLoadingBuilder(); default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, build$1: function(_, context) { var _this = this, t1 = _this.get$_placeholderType() === C._PlaceholderType_2 ? _this.get$_loadingBuilder() : null, t2 = _this.imageFrameBuilder$0(), t3 = _this.errorBuilder != null ? _this.get$_errorBuilder() : null; return U.Image$(_this.alignment, _this.color, _this.colorBlendMode, t3, _this.filterQuality, _this.fit, t2, false, _this.height, _this.image, t1, false, _this.repeat, _this.width); }, _image_handler$_stack$2: function(revealing, disappearing) { var _this = this, _null = null; return T.Stack$(C.Alignment_0_0, H.setRuntimeTypeInfo([new F.FadeWidget(revealing, _this.fadeInDuration, C.AnimationDirection_0, _this.fadeInCurve, _null), new F.FadeWidget(disappearing, _this.fadeOutDuration, C.AnimationDirection_1, _this.fadeOutCurve, _null)], type$.JSArray_Widget), C.Clip_1, C.StackFit_2, _null, _null); }, _imageBuilder$4: function(context, child, frame, wasSynchronouslyLoaded) { if (frame == null) return child; return this._image_handler$_image$2(context, child); }, _placeholderBuilder$4: function(context, child, frame, wasSynchronouslyLoaded) { var t1, _this = this; if (frame == null) { t1 = _this.placeholderFadeInDuration; if (t1._duration !== 0) return new F.FadeWidget(_this._placeholder$1(context), t1, C.AnimationDirection_0, _this.fadeInCurve, null); else return _this._placeholder$1(context); } if (wasSynchronouslyLoaded) return _this._image_handler$_image$2(context, child); return _this._image_handler$_stack$2(_this._image_handler$_image$2(context, child), _this._placeholder$1(context)); }, _preLoadingBuilder$4: function(context, child, frame, wasSynchronouslyLoaded) { this._image_handler$_wasSynchronouslyLoaded = wasSynchronouslyLoaded; this._isLoaded = frame != null; return child; }, _loadingBuilder$3: function(context, child, loadingProgress) { var t1, _this = this; if (_this._isLoaded) { if (_this._image_handler$_wasSynchronouslyLoaded) return _this._image_handler$_image$2(context, child); return _this._image_handler$_stack$2(_this._image_handler$_image$2(context, child), _this._progressIndicator$2(context, null)); } t1 = _this.placeholderFadeInDuration; if (t1._duration !== 0) return new F.FadeWidget(_this._progressIndicator$2(context, loadingProgress), t1, C.AnimationDirection_0, _this.fadeInCurve, null); else return _this._progressIndicator$2(context, loadingProgress); }, _image_handler$_image$2: function(context, child) { var t1 = this.imageBuilder; if (t1 != null) return t1.call$2(context, child); else return child; }, _errorBuilder$3: function(context, error, stacktrace) { var t1 = this.errorBuilder; if (t1 == null) throw H.wrapException(P.StateError$("Try to build errorBuilder with errorBuilder null")); return t1.call$3(context, error, stacktrace); }, _progressIndicator$2: function(context, loadingProgress) { var t1 = this.progressIndicatorBuilder; if (t1 == null) throw H.wrapException(P.StateError$("Try to build progressIndicatorBuilder with progressIndicatorBuilder null")); return t1.call$2(context, loadingProgress); }, _placeholder$1: function(context) { var _null = null, t1 = this.placeholderBuilder; if (t1 != null) return t1.call$1(context); return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, _definePlaceholderType$0: function() { if (this.placeholderBuilder != null) return C._PlaceholderType_1; if (this.progressIndicatorBuilder != null) return C._PlaceholderType_2; return C._PlaceholderType_0; } }; K.OverflowViewParentData.prototype = {}; K.OverflowViewLayoutBehavior.prototype = { toString$0: function(_) { return this._overflow_view$_name; } }; K.RenderOverflowView.prototype = { setupParentData$1: function(child) { if (!(child.parentData instanceof K.OverflowViewParentData)) child.parentData = new K.OverflowViewParentData(null, null, C.Offset_0_0); }, _overflow_view$_getCrossSize$1: function(child) { switch (this._overflow_view$_direction) { case C.Axis_0: return child._box$_size._dy; case C.Axis_1: return child._box$_size._dx; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, _overflow_view$_getMainSize$1: function(child) { switch (this._overflow_view$_direction) { case C.Axis_0: return child._box$_size._dx; case C.Axis_1: return child._box$_size._dy; default: throw H.wrapException(H.ReachabilityError$(string$.x60null_c)); } }, performLayout$0: function() { var _this = this; _this._hasOverflow = false; _this.resetOffstage$0(); if (_this._overflow_view$_layoutBehavior === C.OverflowViewLayoutBehavior_0) _this.performFixedLayout$0(); else _this.performFlexibleLayout$0(); }, resetOffstage$0: function() { this.visitChildren$1(new K.RenderOverflowView_resetOffstage_closure()); }, performFixedLayout$0: function() { var t2, childConstraints, maxExtent, t3, childParentData, t4, t5, childExtent, crossExtent, otherChildConstraints, childStride, getChildOffset, count, renderedChildCount, unRenderedChildCount, onstageCount, child, i, overflowIndicatorParentData, mainAxisExtent, requestedSize, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; t2 = type$.BoxConstraints; childConstraints = t2._as(K.RenderObject.prototype.get$constraints.call(_this)).loosen$0(); maxExtent = _this._isHorizontal ? t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth : t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight; t3 = type$.OverflowViewParentData; childParentData = t3._as(t1.parentData); t1.layout$2$parentUsesSize(0, childConstraints, true); t4 = t1._box$_size; t4.toString; t5 = _this._overflow_view$_direction === C.Axis_0; childExtent = t5 ? t4._dx : t4._dy; crossExtent = t5 ? t4._dy : t4._dx; otherChildConstraints = _this._isHorizontal ? childConstraints.tighten$2$height$width(crossExtent, childExtent) : childConstraints.tighten$2$height$width(childExtent, crossExtent); t4 = _this._overflow_view$_spacing; childStride = childExtent + t4; getChildOffset = new K.RenderOverflowView_performFixedLayout_getChildOffset(_this, childStride); t5 = _this.ContainerRenderObjectMixin__childCount; count = t5 - 1; renderedChildCount = childExtent * count + t4 * (t5 - 2) <= maxExtent ? count : C.JSNumber_methods.$tdiv(maxExtent + t4, childStride) - 1; unRenderedChildCount = count - renderedChildCount; if (renderedChildCount > 0) { childParentData.offstage = false; onstageCount = 1; } else onstageCount = 0; for (child = t1, i = 1; i < renderedChildCount; ++i, child = t1) { t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; childParentData = t3._as(t1.parentData); t1.layout$1(0, otherChildConstraints); childParentData.offset = getChildOffset.call$1(i); childParentData.offstage = false; ++onstageCount; } for (; t1 = _this.ContainerRenderObjectMixin__lastChild, child !== t1; child = t1) { t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; childParentData = t3._as(t1.parentData); childParentData.offstage = true; } if (unRenderedChildCount > 0) { t1.toString; t1.layout$1(0, Y.BoxValueConstraints$(otherChildConstraints, unRenderedChildCount, type$.int)); overflowIndicatorParentData = t3._as(t1.parentData); overflowIndicatorParentData.offset = getChildOffset.call$1(renderedChildCount); overflowIndicatorParentData.offstage = false; ++onstageCount; } mainAxisExtent = onstageCount * childStride - _this._overflow_view$_spacing; requestedSize = _this._isHorizontal ? new P.Size(mainAxisExtent, crossExtent) : new P.Size(crossExtent, mainAxisExtent); _this._box$_size = t2._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(requestedSize); }, performFlexibleLayout$0: function() { var renderBoxes, unRenderedChildCount, t2, availableExtent, maxCrossExtent, childConstraints, showOverflowIndicator, t3, child, offset, childParentData, childMainSize, childStride, t4, overflowIndicatorConstraints, t5, overflowIndicatorParentData, crossSize, _i, childCrossPosition, idealSize, _this = this, t1 = _this.ContainerRenderObjectMixin__firstChild; t1.toString; renderBoxes = H.setRuntimeTypeInfo([], type$.JSArray_RenderBox); unRenderedChildCount = _this.ContainerRenderObjectMixin__childCount - 1; t2 = type$.BoxConstraints; availableExtent = _this._isHorizontal ? t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth : t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight; maxCrossExtent = _this._isHorizontal ? t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxHeight : t2._as(K.RenderObject.prototype.get$constraints.call(_this)).maxWidth; childConstraints = _this._isHorizontal ? S.BoxConstraints$loose(new P.Size(1 / 0, maxCrossExtent)) : S.BoxConstraints$loose(new P.Size(maxCrossExtent, 1 / 0)); t3 = type$.OverflowViewParentData; child = t1; offset = 0; while (true) { if (!(child !== _this.ContainerRenderObjectMixin__lastChild)) { showOverflowIndicator = false; break; } childParentData = t3._as(child.parentData); child.layout$2$parentUsesSize(0, childConstraints, true); childMainSize = _this._overflow_view$_getMainSize$1(child); if (childMainSize <= availableExtent) { renderBoxes.push(child); childParentData.offstage = false; childParentData.offset = _this._isHorizontal ? new P.Offset(offset, 0) : new P.Offset(0, offset); childStride = _this._overflow_view$_spacing + childMainSize; offset += childStride; availableExtent -= childStride; --unRenderedChildCount; t1 = childParentData.ContainerParentDataMixin_nextSibling; t1.toString; } else { showOverflowIndicator = true; break; } child = t1; } t1 = _this.ContainerRenderObjectMixin__lastChild; if (showOverflowIndicator) { t1.toString; t4 = type$.int; overflowIndicatorConstraints = Y.BoxValueConstraints$(childConstraints, unRenderedChildCount, t4); t1.layout$2$parentUsesSize(0, overflowIndicatorConstraints, true); childMainSize = _this._overflow_view$_getMainSize$1(t1); while (true) { t5 = childMainSize > availableExtent; if (!(t5 && renderBoxes.length !== 0)) break; child = renderBoxes.pop(); t3._as(child.parentData).offstage = true; childStride = _this._overflow_view$_getMainSize$1(child) + _this._overflow_view$_spacing; availableExtent += childStride; ++unRenderedChildCount; offset -= childStride; } if (t5) _this._hasOverflow = true; if (overflowIndicatorConstraints.value !== unRenderedChildCount) t1.layout$2$parentUsesSize(0, Y.BoxValueConstraints$(childConstraints, unRenderedChildCount, t4), true); renderBoxes.push(t1); overflowIndicatorParentData = t3._as(t1.parentData); overflowIndicatorParentData.offset = _this._isHorizontal ? new P.Offset(offset, 0) : new P.Offset(0, offset); overflowIndicatorParentData.offstage = false; offset += childMainSize; } else { offset -= _this._overflow_view$_spacing; if (t1 != null) t1.layout$1(0, Y.BoxValueConstraints$(childConstraints, unRenderedChildCount, type$.int)); _this._hasOverflow = true; } crossSize = C.JSArray_methods.fold$1$2(renderBoxes, 0, new K.RenderOverflowView_performFlexibleLayout_closure(_this), type$.double); for (t1 = renderBoxes.length, _i = 0; _i < renderBoxes.length; renderBoxes.length === t1 || (0, H.throwConcurrentModificationError)(renderBoxes), ++_i) { child = renderBoxes[_i]; childCrossPosition = crossSize / 2 - _this._overflow_view$_getCrossSize$1(child) / 2; childParentData = t3._as(child.parentData); childParentData.offset = _this._isHorizontal ? new P.Offset(childParentData.offset._dx, childCrossPosition) : new P.Offset(childCrossPosition, childParentData.offset._dy); } idealSize = _this._isHorizontal ? new P.Size(offset, crossSize) : new P.Size(crossSize, offset); _this._box$_size = t2._as(K.RenderObject.prototype.get$constraints.call(_this)).constrain$1(idealSize); }, visitOnlyOnStageChildren$1: function(visitor) { this.visitChildren$1(new K.RenderOverflowView_visitOnlyOnStageChildren_closure(visitor)); }, visitChildrenForSemantics$1: function(visitor) { this.visitOnlyOnStageChildren$1(visitor); }, paint$2: function(context, offset) { var t2, t3, _this = this, t1 = new K.RenderOverflowView_paint_defaultPaint(_this, new K.RenderOverflowView_paint_paintChild(_this, context, offset)); if (_this._hasOverflow) { t2 = _this.get$_needsCompositing(); t3 = _this._box$_size; context.pushClipRect$5$clipBehavior(t2, offset, new P.Rect(0, 0, 0 + t3._dx, 0 + t3._dy), t1, C.Clip_1); } else t1.call$2(context, offset); }, hitTestChildren$2$position: function(result, position) { this.visitOnlyOnStageChildren$1(new K.RenderOverflowView_hitTestChildren_closure(result, position)); return false; } }; K.RenderOverflowView_resetOffstage_closure.prototype = { call$1: function(child) { type$.OverflowViewParentData._as(child.parentData).offstage = null; }, $signature: 142 }; K.RenderOverflowView_performFixedLayout_getChildOffset.prototype = { call$1: function(index) { var mainAxisOffset = index * this.childStride; if (this.$this._isHorizontal) return new P.Offset(mainAxisOffset, 0); else return new P.Offset(0, mainAxisOffset); }, $signature: 2634 }; K.RenderOverflowView_performFlexibleLayout_closure.prototype = { call$2: function(previousValue, element) { var t1 = this.$this._overflow_view$_getCrossSize$1(element); return Math.max(H.checkNum(previousValue), H.checkNum(t1)); }, $signature: 2635 }; K.RenderOverflowView_visitOnlyOnStageChildren_closure.prototype = { call$1: function(child) { if (type$.OverflowViewParentData._as(child.parentData).offstage === false) this.visitor.call$1(child); }, $signature: 142 }; K.RenderOverflowView_paint_paintChild.prototype = { call$1: function(child) { var childParentData = type$.OverflowViewParentData._as(child.parentData), t1 = this.context; if (childParentData.offstage === false) t1.paintChild$2(child, childParentData.offset.$add(0, this.offset)); else t1.paintChild$2(child, this.$this._box$_size.bottomRight$1(0, C.Offset_0_0)); }, $signature: 142 }; K.RenderOverflowView_paint_defaultPaint.prototype = { call$2: function(context, offset) { this.$this.visitOnlyOnStageChildren$1(this.paintChild); }, $signature: 85 }; K.RenderOverflowView_hitTestChildren_closure.prototype = { call$1: function(renderObject) { var childParentData, t1; type$.RenderBox._as(renderObject); childParentData = type$.OverflowViewParentData._as(renderObject.parentData); t1 = this.position; this.result.addWithPaintOffset$3$hitTest$offset$position(new K.RenderOverflowView_hitTestChildren__closure(t1, childParentData, renderObject), childParentData.offset, t1); }, $signature: 142 }; K.RenderOverflowView_hitTestChildren__closure.prototype = { call$2: function(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, $signature: 285 }; K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1: function(owner) { var child, t1, t2; this.super$RenderObject$attach(owner); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.OverflowViewParentData; child != null;) { child.attach$1(owner); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } }, detach$0: function(_) { var child, t1, t2; this.super$AbstractNode$detach(0); child = this.ContainerRenderObjectMixin__firstChild; for (t1 = type$.OverflowViewParentData; child != null;) { child.detach$0(0); t2 = child.parentData; t2.toString; child = t1._as(t2).ContainerParentDataMixin_nextSibling; } } }; K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin.prototype = {}; K.OverflowView.prototype = { createElement$0: function(_) { var t1 = type$.Element_2, t2 = P.HashSet_HashSet(t1), t3 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t3; return new K._OverflowViewElement(t2, t3, this, C._ElementLifecycle_0, P.HashSet_HashSet(t1)); }, createRenderObject$1: function(context) { var t1 = this.direction; t1 = new K.RenderOverflowView(t1, this.spacing, this._layoutBehavior, t1 === C.Axis_0, 0, null, null); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; t1.addAll$1(0, null); return t1; }, updateRenderObject$2: function(context, renderObject) { var t1 = this.direction; if (renderObject._overflow_view$_direction !== t1) { renderObject._overflow_view$_direction = t1; renderObject._isHorizontal = t1 === C.Axis_0; renderObject.markNeedsLayout$0(); } t1 = this.spacing; if (renderObject._overflow_view$_spacing !== t1) { renderObject._overflow_view$_spacing = t1; renderObject.markNeedsLayout$0(); } t1 = this._layoutBehavior; if (renderObject._overflow_view$_layoutBehavior !== t1) { renderObject._overflow_view$_layoutBehavior = t1; renderObject.markNeedsLayout$0(); } } }; K.OverflowView$_all_closure.prototype = { call$2: function(context, constraints) { return this.builder.call$2(context, constraints.value); }, $signature: 2636 }; K._OverflowViewElement.prototype = {}; D.MethodChannelPackageInfo.prototype = {}; O.PackageInfoPlatform.prototype = {}; M.PackageInfoPlugin.prototype = {}; M.Context.prototype = { absolute$7: function(_, part1, part2, part3, part4, part5, part6, part7) { var t1; M._validateArgList("absolute", H.setRuntimeTypeInfo([part1, part2, part3, part4, part5, part6, part7], type$.JSArray_nullable_String)); t1 = this.style; t1 = t1.rootLength$1(part1) > 0 && !t1.isRootRelative$1(part1); if (t1) return part1; t1 = this._context$_current; return this.join$8(0, t1 == null ? D.current() : t1, part1, part2, part3, part4, part5, part6, part7); }, absolute$1: function($receiver, part1) { return this.absolute$7($receiver, part1, null, null, null, null, null, null); }, dirname$1: function(path) { var t1, t2, parsed = X.ParsedPath_ParsedPath$parse(path, this.style); parsed.removeTrailingSeparators$0(); t1 = parsed.parts; t2 = t1.length; if (t2 === 0) { t1 = parsed.root; return t1 == null ? "." : t1; } if (t2 === 1) { t1 = parsed.root; return t1 == null ? "." : t1; } C.JSArray_methods.removeLast$0(t1); parsed.separators.pop(); parsed.removeTrailingSeparators$0(); return parsed.toString$0(0); }, join$8: function(_, part1, part2, part3, part4, part5, part6, part7, part8) { var parts = H.setRuntimeTypeInfo([part1, part2, part3, part4, part5, part6, part7, part8], type$.JSArray_nullable_String); M._validateArgList("join", parts); return this.joinAll$1(new H.WhereTypeIterable(parts, type$.WhereTypeIterable_String)); }, join$2: function($receiver, part1, part2) { return this.join$8($receiver, part1, part2, null, null, null, null, null, null); }, joinAll$1: function(parts) { var t1, t2, t3, needsSeparator, isAbsoluteAndNotRootRelative, t4, t5, parsed, path; for (t1 = J.where$1$ax(parts, new M.Context_joinAll_closure()), t2 = J.get$iterator$ax(t1._iterable), t1 = new H.WhereIterator(t2, t1._f, t1.$ti._eval$1("WhereIterator<1>")), t3 = this.style, needsSeparator = false, isAbsoluteAndNotRootRelative = false, t4 = ""; t1.moveNext$0();) { t5 = t2.get$current(t2); if (t3.isRootRelative$1(t5) && isAbsoluteAndNotRootRelative) { parsed = X.ParsedPath_ParsedPath$parse(t5, t3); path = t4.charCodeAt(0) == 0 ? t4 : t4; t4 = C.JSString_methods.substring$2(path, 0, t3.rootLength$2$withDrive(path, true)); parsed.root = t4; if (t3.needsSeparator$1(t4)) parsed.separators[0] = t3.get$separator(); t4 = parsed.toString$0(0); } else if (t3.rootLength$1(t5) > 0) { isAbsoluteAndNotRootRelative = !t3.isRootRelative$1(t5); t4 = H.S(t5); } else { if (!(t5.length !== 0 && t3.containsSeparator$1(t5[0]))) if (needsSeparator) t4 += t3.get$separator(); t4 += t5; } needsSeparator = t3.needsSeparator$1(t5); } return t4.charCodeAt(0) == 0 ? t4 : t4; }, split$1: function(_, path) { var parsed = X.ParsedPath_ParsedPath$parse(path, this.style), t1 = parsed.parts, t2 = H._arrayInstanceType(t1)._eval$1("WhereIterable<1>"); t2 = P.List_List$of(new H.WhereIterable(t1, new M.Context_split_closure(), t2), true, t2._eval$1("Iterable.E")); parsed.parts = t2; t1 = parsed.root; if (t1 != null) C.JSArray_methods.insert$2(t2, 0, t1); return parsed.parts; }, normalize$1: function(_, path) { var parsed; if (!this._needsNormalization$1(path)) return path; parsed = X.ParsedPath_ParsedPath$parse(path, this.style); parsed.normalize$0(0); return parsed.toString$0(0); }, _needsNormalization$1: function(path) { var t1, root, i, start, previous, t2, t3, previousPrevious, codeUnit, t4; path.toString; t1 = this.style; root = t1.rootLength$1(path); if (root !== 0) { if (t1 === $.$get$Style_windows()) for (i = 0; i < root; ++i) if (C.JSString_methods._codeUnitAt$1(path, i) === 47) return true; start = root; previous = 47; } else { start = 0; previous = null; } for (t2 = new H.CodeUnits(path).__internal$_string, t3 = t2.length, i = start, previousPrevious = null; i < t3; ++i, previousPrevious = previous, previous = codeUnit) { codeUnit = C.JSString_methods.codeUnitAt$1(t2, i); if (t1.isSeparator$1(codeUnit)) { if (t1 === $.$get$Style_windows() && codeUnit === 47) return true; if (previous != null && t1.isSeparator$1(previous)) return true; if (previous === 46) t4 = previousPrevious == null || previousPrevious === 46 || t1.isSeparator$1(previousPrevious); else t4 = false; if (t4) return true; } } if (previous == null) return true; if (t1.isSeparator$1(previous)) return true; if (previous === 46) t1 = previousPrevious == null || t1.isSeparator$1(previousPrevious) || previousPrevious === 46; else t1 = false; if (t1) return true; return false; }, relative$1: function(path) { var from, fromParsed, pathParsed, t3, _this = this, _s26_ = 'Unable to find a path to "', t1 = _this.style, t2 = t1.rootLength$1(path); if (t2 <= 0) return _this.normalize$1(0, path); t2 = _this._context$_current; from = t2 == null ? D.current() : t2; if (t1.rootLength$1(from) <= 0 && t1.rootLength$1(path) > 0) return _this.normalize$1(0, path); if (t1.rootLength$1(path) <= 0 || t1.isRootRelative$1(path)) path = _this.absolute$1(0, path); if (t1.rootLength$1(path) <= 0 && t1.rootLength$1(from) > 0) throw H.wrapException(X.PathException$(_s26_ + H.S(path) + '" from "' + H.S(from) + '".')); fromParsed = X.ParsedPath_ParsedPath$parse(from, t1); fromParsed.normalize$0(0); pathParsed = X.ParsedPath_ParsedPath$parse(path, t1); pathParsed.normalize$0(0); t2 = fromParsed.parts; if (t2.length !== 0 && J.$eq$(t2[0], ".")) return pathParsed.toString$0(0); t2 = fromParsed.root; t3 = pathParsed.root; if (t2 != t3) t2 = t2 == null || t3 == null || !t1.pathsEqual$2(t2, t3); else t2 = false; if (t2) return pathParsed.toString$0(0); while (true) { t2 = fromParsed.parts; if (t2.length !== 0) { t3 = pathParsed.parts; t2 = t3.length !== 0 && t1.pathsEqual$2(t2[0], t3[0]); } else t2 = false; if (!t2) break; C.JSArray_methods.removeAt$1(fromParsed.parts, 0); C.JSArray_methods.removeAt$1(fromParsed.separators, 1); C.JSArray_methods.removeAt$1(pathParsed.parts, 0); C.JSArray_methods.removeAt$1(pathParsed.separators, 1); } t2 = fromParsed.parts; if (t2.length !== 0 && J.$eq$(t2[0], "..")) throw H.wrapException(X.PathException$(_s26_ + H.S(path) + '" from "' + H.S(from) + '".')); t2 = type$.String; C.JSArray_methods.insertAll$2(pathParsed.parts, 0, P.List_List$filled(fromParsed.parts.length, "..", false, t2)); t3 = pathParsed.separators; t3[0] = ""; C.JSArray_methods.insertAll$2(t3, 1, P.List_List$filled(fromParsed.parts.length, t1.get$separator(), false, t2)); t1 = pathParsed.parts; t2 = t1.length; if (t2 === 0) return "."; if (t2 > 1 && J.$eq$(C.JSArray_methods.get$last(t1), ".")) { C.JSArray_methods.removeLast$0(pathParsed.parts); t1 = pathParsed.separators; t1.pop(); t1.pop(); t1.push(""); } pathParsed.root = ""; pathParsed.removeTrailingSeparators$0(); return pathParsed.toString$0(0); }, prettyUri$1: function(uri) { var path, rel, _this = this, typedUri = M._parseUri(uri); if (typedUri.get$scheme() === "file" && _this.style == $.$get$Style_url()) return typedUri.toString$0(0); else if (typedUri.get$scheme() !== "file" && typedUri.get$scheme() !== "" && _this.style != $.$get$Style_url()) return typedUri.toString$0(0); path = _this.normalize$1(0, _this.style.pathFromUri$1(M._parseUri(typedUri))); rel = _this.relative$1(path); return _this.split$1(0, rel).length > _this.split$1(0, path).length ? path : rel; } }; M.Context_joinAll_closure.prototype = { call$1: function(part) { return part !== ""; }, $signature: 73 }; M.Context_split_closure.prototype = { call$1: function(part) { return part.length !== 0; }, $signature: 73 }; M._validateArgList_closure.prototype = { call$1: function(arg) { return arg == null ? "null" : '"' + arg + '"'; }, $signature: 2637 }; B.InternalStyle.prototype = { getRoot$1: function(path) { var $length = this.rootLength$1(path); if ($length > 0) return J.substring$2$s(path, 0, $length); return this.isRootRelative$1(path) ? path[0] : null; }, pathsEqual$2: function(path1, path2) { return path1 == path2; } }; X.ParsedPath.prototype = { get$basename: function() { var _this = this, t1 = type$.String, copy = new X.ParsedPath(_this.style, _this.root, _this.isRootRelative, P.List_List$from(_this.parts, true, t1), P.List_List$from(_this.separators, true, t1)); copy.removeTrailingSeparators$0(); t1 = copy.parts; if (t1.length === 0) { t1 = _this.root; return t1 == null ? "" : t1; } return C.JSArray_methods.get$last(t1); }, removeTrailingSeparators$0: function() { var t1, t2, _this = this; while (true) { t1 = _this.parts; if (!(t1.length !== 0 && J.$eq$(C.JSArray_methods.get$last(t1), ""))) break; C.JSArray_methods.removeLast$0(_this.parts); _this.separators.pop(); } t1 = _this.separators; t2 = t1.length; if (t2 !== 0) t1[t2 - 1] = ""; }, normalize$0: function(_) { var t1, t2, leadingDoubles, _i, part, t3, _this = this, newParts = H.setRuntimeTypeInfo([], type$.JSArray_String); for (t1 = _this.parts, t2 = t1.length, leadingDoubles = 0, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) { part = t1[_i]; t3 = J.getInterceptor$(part); if (!(t3.$eq(part, ".") || t3.$eq(part, ""))) if (t3.$eq(part, "..")) if (newParts.length !== 0) newParts.pop(); else ++leadingDoubles; else newParts.push(part); } if (_this.root == null) C.JSArray_methods.insertAll$2(newParts, 0, P.List_List$filled(leadingDoubles, "..", false, type$.String)); if (newParts.length === 0 && _this.root == null) newParts.push("."); _this.parts = newParts; t1 = _this.style; _this.separators = P.List_List$filled(newParts.length + 1, t1.get$separator(), true, type$.String); t2 = _this.root; if (t2 == null || newParts.length === 0 || !t1.needsSeparator$1(t2)) _this.separators[0] = ""; t2 = _this.root; if (t2 != null && t1 === $.$get$Style_windows()) { t2.toString; _this.root = H.stringReplaceAllUnchecked(t2, "/", "\\"); } _this.removeTrailingSeparators$0(); }, toString$0: function(_) { var i, _this = this, t1 = _this.root; t1 = t1 != null ? t1 : ""; for (i = 0; i < _this.parts.length; ++i) t1 = t1 + H.S(_this.separators[i]) + H.S(_this.parts[i]); t1 += H.S(C.JSArray_methods.get$last(_this.separators)); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; X.PathException.prototype = { toString$0: function(_) { return "PathException: " + this.message; }, $isException: 1 }; O.Style.prototype = { toString$0: function(_) { return this.get$name(this); } }; E.PosixStyle.prototype = { containsSeparator$1: function(path) { return C.JSString_methods.contains$1(path, "/"); }, isSeparator$1: function(codeUnit) { return codeUnit === 47; }, needsSeparator$1: function(path) { var t1 = path.length; return t1 !== 0 && C.JSString_methods.codeUnitAt$1(path, t1 - 1) !== 47; }, rootLength$2$withDrive: function(path, withDrive) { if (path.length !== 0 && C.JSString_methods._codeUnitAt$1(path, 0) === 47) return 1; return 0; }, rootLength$1: function(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1: function(path) { return false; }, pathFromUri$1: function(uri) { var t1; if (uri.get$scheme() === "" || uri.get$scheme() === "file") { t1 = uri.get$path(uri); return P._Uri__uriDecode(t1, 0, t1.length, C.C_Utf8Codec, false); } throw H.wrapException(P.ArgumentError$("Uri " + uri.toString$0(0) + " must have scheme 'file:'.")); }, get$name: function() { return "posix"; }, get$separator: function() { return "/"; } }; F.UrlStyle.prototype = { containsSeparator$1: function(path) { return C.JSString_methods.contains$1(path, "/"); }, isSeparator$1: function(codeUnit) { return codeUnit === 47; }, needsSeparator$1: function(path) { var t1 = path.length; if (t1 === 0) return false; if (C.JSString_methods.codeUnitAt$1(path, t1 - 1) !== 47) return true; return C.JSString_methods.endsWith$1(path, "://") && this.rootLength$1(path) === t1; }, rootLength$2$withDrive: function(path, withDrive) { var i, codeUnit, index, t2, t1 = path.length; if (t1 === 0) return 0; if (C.JSString_methods._codeUnitAt$1(path, 0) === 47) return 1; for (i = 0; i < t1; ++i) { codeUnit = C.JSString_methods._codeUnitAt$1(path, i); if (codeUnit === 47) return 0; if (codeUnit === 58) { if (i === 0) return 0; index = C.JSString_methods.indexOf$2(path, "/", C.JSString_methods.startsWith$2(path, "//", i + 1) ? i + 3 : i); if (index <= 0) return t1; if (!withDrive || t1 < index + 3) return index; if (!C.JSString_methods.startsWith$1(path, "file://")) return index; if (!B.isDriveLetter(path, index + 1)) return index; t2 = index + 3; return t1 === t2 ? t2 : index + 4; } } return 0; }, rootLength$1: function(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1: function(path) { return path.length !== 0 && C.JSString_methods._codeUnitAt$1(path, 0) === 47; }, pathFromUri$1: function(uri) { return uri.toString$0(0); }, get$name: function() { return "url"; }, get$separator: function() { return "/"; } }; L.WindowsStyle.prototype = { containsSeparator$1: function(path) { return C.JSString_methods.contains$1(path, "/"); }, isSeparator$1: function(codeUnit) { return codeUnit === 47 || codeUnit === 92; }, needsSeparator$1: function(path) { var t1 = path.length; if (t1 === 0) return false; t1 = C.JSString_methods.codeUnitAt$1(path, t1 - 1); return !(t1 === 47 || t1 === 92); }, rootLength$2$withDrive: function(path, withDrive) { var t2, index, t1 = path.length; if (t1 === 0) return 0; t2 = C.JSString_methods._codeUnitAt$1(path, 0); if (t2 === 47) return 1; if (t2 === 92) { if (t1 < 2 || C.JSString_methods._codeUnitAt$1(path, 1) !== 92) return 1; index = C.JSString_methods.indexOf$2(path, "\\", 2); if (index > 0) { index = C.JSString_methods.indexOf$2(path, "\\", index + 1); if (index > 0) return index; } return t1; } if (t1 < 3) return 0; if (!B.isAlphabetic(t2)) return 0; if (C.JSString_methods._codeUnitAt$1(path, 1) !== 58) return 0; t1 = C.JSString_methods._codeUnitAt$1(path, 2); if (!(t1 === 47 || t1 === 92)) return 0; return 3; }, rootLength$1: function(path) { return this.rootLength$2$withDrive(path, false); }, isRootRelative$1: function(path) { return this.rootLength$1(path) === 1; }, pathFromUri$1: function(uri) { var path, t1; if (uri.get$scheme() !== "" && uri.get$scheme() !== "file") throw H.wrapException(P.ArgumentError$("Uri " + uri.toString$0(0) + " must have scheme 'file:'.")); path = uri.get$path(uri); if (uri.get$host(uri) === "") { if (path.length >= 3 && C.JSString_methods.startsWith$1(path, "/") && B.isDriveLetter(path, 1)) path = C.JSString_methods.replaceFirst$2(path, "/", ""); } else path = "\\\\" + uri.get$host(uri) + path; t1 = H.stringReplaceAllUnchecked(path, "/", "\\"); return P._Uri__uriDecode(t1, 0, t1.length, C.C_Utf8Codec, false); }, codeUnitsEqual$2: function(codeUnit1, codeUnit2) { var upperCase1; if (codeUnit1 === codeUnit2) return true; if (codeUnit1 === 47) return codeUnit2 === 92; if (codeUnit1 === 92) return codeUnit2 === 47; if ((codeUnit1 ^ codeUnit2) !== 32) return false; upperCase1 = codeUnit1 | 32; return upperCase1 >= 97 && upperCase1 <= 122; }, pathsEqual$2: function(path1, path2) { var t1, t2, i; if (path1 == path2) return true; t1 = path1.length; if (t1 !== path2.length) return false; for (t2 = J.getInterceptor$s(path2), i = 0; i < t1; ++i) if (!this.codeUnitsEqual$2(C.JSString_methods._codeUnitAt$1(path1, i), t2._codeUnitAt$1(path2, i))) return false; return true; }, get$name: function() { return "windows"; }, get$separator: function() { return "\\"; } }; Q.MissingPlatformDirectoryException.prototype = { toString$0: function(_) { return "MissingPlatformDirectoryException(" + this.message + ")"; }, $isException: 1 }; T.PathProviderPlatform.prototype = { getApplicationDocumentsPath$0: function() { throw H.wrapException(P.UnimplementedError$("getApplicationDocumentsPath() has not been implemented.")); } }; Z.MethodChannelPathProvider.prototype = { getApplicationDocumentsPath$0: function() { return this.methodChannel._invokeMethod$1$3$arguments$missingOk("getApplicationDocumentsDirectory", null, false, type$.String); } }; M.PermissionHandlerPlatform.prototype = {}; M.PermissionStatus0.prototype = { toString$0: function(_) { return this._permission_handler_platform_interface$_name; } }; M.Permission.prototype = { toString$0: function(_) { return "Permission." + C.List_Q1S[this.value]; }, $eq: function(_, other) { if (other == null) return false; if (this === other) return true; if (J.get$runtimeType$(other) !== H.getRuntimeType(this)) return false; return other instanceof M.Permission && other.value === this.value; }, get$hashCode: function(_) { return C.JSInt_methods.get$hashCode(this.value); }, get$value: function(receiver) { return this.value; } }; E.MethodChannelPermissionHandler.prototype = { checkPermissionStatus$1: function(permission) { return this.checkPermissionStatus$body$MethodChannelPermissionHandler(permission); }, checkPermissionStatus$body$MethodChannelPermissionHandler: function(permission) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.PermissionStatus), $async$returnValue, $async$temp1; var $async$checkPermissionStatus$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$temp1 = [C.PermissionStatus_0, C.PermissionStatus_1, C.PermissionStatus_2, C.PermissionStatus_3, C.PermissionStatus_4]; $async$goto = 3; return P._asyncAwait(C.MethodChannel_KDg._invokeMethod$1$3$arguments$missingOk("checkPermissionStatus", permission.value, false, type$.dynamic), $async$checkPermissionStatus$1); case 3: // returning from await. $async$returnValue = $async$temp1[$async$result]; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$checkPermissionStatus$1, $async$completer); }, openAppSettings$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, wasOpened; var $async$openAppSettings$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.MethodChannel_KDg._invokeMethod$1$3$arguments$missingOk("openAppSettings", null, false, type$.dynamic), $async$openAppSettings$0); case 3: // returning from await. wasOpened = $async$result; $async$returnValue = wasOpened == null ? false : wasOpened; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$openAppSettings$0, $async$completer); } }; E.PhotoView.prototype = { createState$0: function() { return new E._PhotoViewState(C._StateLifecycle_0); } }; E._PhotoViewState.prototype = { get$_controlledController: function() { var t1 = this.___PhotoViewState__controlledController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controlledController")) : t1; }, get$_photo_view$_controller: function() { var t1 = this.___PhotoViewState__controller; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controller")) : t1; }, get$_controlledScaleStateController: function() { var t1 = this.___PhotoViewState__controlledScaleStateController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_controlledScaleStateController")) : t1; }, get$_scaleStateController: function() { var t1 = this.___PhotoViewState__scaleStateController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_scaleStateController")) : t1; }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); _this._widget.toString; _this.___PhotoViewState__controlledController = true; _this.___PhotoViewState__controller = E.PhotoViewController$(); _this._widget.toString; _this.___PhotoViewState__controlledScaleStateController = true; _this.___PhotoViewState__scaleStateController = M.PhotoViewScaleStateController$(); t1 = _this.get$_scaleStateController()._outputScaleStateCtrl; new P._BroadcastStream(t1, H._instanceType(t1)._eval$1("_BroadcastStream<1>")).listen$1(0, _this.get$scaleStateListener()); }, didUpdateWidget$1: function(oldWidget) { var _this = this; _this._widget.toString; if (!_this.get$_controlledController()) { _this.___PhotoViewState__controlledController = true; _this.___PhotoViewState__controller = E.PhotoViewController$(); } _this._widget.toString; if (!_this.get$_controlledScaleStateController()) { _this.___PhotoViewState__controlledScaleStateController = true; _this.___PhotoViewState__scaleStateController = M.PhotoViewScaleStateController$(); } _this.super$State$didUpdateWidget(oldWidget); }, dispose$0: function(_) { var t1, _this = this; if (_this.get$_controlledController()) { t1 = _this.get$_photo_view$_controller(); t1.get$_outputCtrl().close$0(0); t1 = t1._valueNotifier; t1._ignorableListeners = null; t1.super$ChangeNotifier$dispose(0); } if (_this.get$_controlledScaleStateController()) { t1 = _this.get$_scaleStateController(); t1._outputScaleStateCtrl.close$0(0); t1 = t1.get$_scaleStateNotifier(); t1._ignorableListeners = null; t1.super$ChangeNotifier$dispose(0); } _this.super$State$dispose(0); }, scaleStateListener$1: function(scaleState) { var t1 = this._widget.scaleStateChangedCallback, t2 = this.get$_scaleStateController(); t1.call$1(t2.get$_scaleStateNotifier()._ignorable_change_notifier$_value); }, build$1: function(_, context) { return new A.LayoutBuilder(new E._PhotoViewState_build_closure(this), null); } }; E._PhotoViewState_build_closure.prototype = { call$2: function(context, constraints) { var computedOuterSize, t2, backgroundDecoration, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t1 = this.$this; t1._widget.toString; computedOuterSize = new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); t2 = t1._widget; backgroundDecoration = t2.backgroundDecoration; t3 = t2.imageProvider; t3.toString; t4 = t2.loadingBuilder; t2 = t2.heroAttributes; t5 = t1.get$_photo_view$_controller(); t6 = t1.get$_scaleStateController(); t1 = t1._widget; t7 = t1.maxScale; t8 = t1.minScale; t9 = t1.initialScale; t10 = t1.basePosition; t11 = t1.scaleStateCycle; t12 = t1.onTapUp; t13 = t1.onTapDown; t14 = t1.gestureDetectorBehavior; t15 = t1.tightMode; t16 = t1.filterQuality; t17 = t1.disableGestures; t17 = new L.ImageWrapper(t3, t4, t1.errorBuilder, backgroundDecoration, false, t2, false, t7, t8, t9, t5, t6, t10, t11, t12, t13, computedOuterSize, t14, t15, t16, t17, null); t1 = t17; return t1; }, $signature: 307 }; M.PhotoViewGallery.prototype = { createState$0: function() { return new M._PhotoViewGalleryState(C._StateLifecycle_0); } }; M._PhotoViewGalleryState.prototype = { scaleStateChangedCallback$1: function(scaleState) { this._widget.toString; }, get$itemCount: function() { var t1 = this._widget.itemCount; t1.toString; return t1; }, build$1: function(_, context) { var t4, t5, t6, _this = this, t1 = _this._widget, t2 = t1.scrollDirection, t3 = _this.___PhotoViewGalleryState__controller; if (t3 === $) { t3 = t1.pageController; t3 = _this.___PhotoViewGalleryState__controller = t3 == null ? D.PageController$(0, 1) : t3; } t1 = t1.onPageChanged; t4 = _this.get$itemCount(); t5 = _this._widget; t6 = t5.scrollDirection; return new O.PhotoViewGestureDetectorScope(t2, D.PageView$builder(t3, _this.get$_buildItem(), t4, null, t1, t5.scrollPhysics, false, t6), null); }, _buildItem$2: function(context, index) { var t4, t5, t6, photoView, _null = null, pageOption = this._buildPageOption$2(context, index), t1 = pageOption.imageProvider, t2 = this._widget, t3 = t2.loadingBuilder; t2 = t2.backgroundDecoration; t4 = pageOption.heroAttributes; t5 = pageOption.initialScale; t6 = pageOption.minScale; photoView = new E.PhotoView(t1, t3, _null, t2, false, t4, _null, this.get$scaleStateChangedCallback(), false, _null, _null, pageOption.maxScale, t6, t5, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new N.ObjectKey(index)); return T.ClipRect$(photoView); }, _buildPageOption$2: function(context, index) { var t1 = this._widget.builder.call$2(context, index); return t1; } }; M.PhotoViewGalleryPageOptions.prototype = {}; E.PhotoViewControllerValue.prototype = { $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof E.PhotoViewControllerValue && H.getRuntimeType(_this) === H.getRuntimeType(other) && J.$eq$(_this.position, other.position) && _this.scale == other.scale && _this.rotation == other.rotation && J.$eq$(_this.rotationFocusPoint, other.rotationFocusPoint); else t1 = true; return t1; }, get$hashCode: function(_) { var _this = this; return J.get$hashCode$(_this.position) ^ J.get$hashCode$(_this.scale) ^ J.get$hashCode$(_this.rotation) ^ J.get$hashCode$(_this.rotationFocusPoint); }, toString$0: function(_) { var _this = this; return "PhotoViewControllerValue{position: " + H.S(_this.position) + ", scale: " + H.S(_this.scale) + ", rotation: " + H.S(_this.rotation) + ", rotationFocusPoint: " + H.S(_this.rotationFocusPoint) + "}"; } }; E.PhotoViewController.prototype = { get$initial: function() { var t1 = this.__PhotoViewController_initial; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("initial")) : t1; }, get$_outputCtrl: function() { var t1 = this.__PhotoViewController__outputCtrl; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_outputCtrl")) : t1; }, get$prevValue: function(_) { var t1 = this.__PhotoViewController_prevValue; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("prevValue")) : t1; }, _changeListener$0: function() { this.get$_outputCtrl().get$sink().add$1(0, this._valueNotifier._ignorable_change_notifier$_value); }, dispose$0: function(_) { var t1; this.get$_outputCtrl().close$0(0); t1 = this._valueNotifier; t1._ignorableListeners = null; t1.super$ChangeNotifier$dispose(0); }, set$position: function(_, position) { var t1 = this._valueNotifier; if (J.$eq$(t1._ignorable_change_notifier$_value.position, position)) return; t1 = this.__PhotoViewController_prevValue = t1._ignorable_change_notifier$_value; this.set$value(0, new E.PhotoViewControllerValue(position, t1.scale, t1.rotation, t1.rotationFocusPoint)); }, setScaleInvisibly$1: function(scale) { var t1 = this._valueNotifier, t2 = t1._ignorable_change_notifier$_value; if (t2.scale == scale) return; this.__PhotoViewController_prevValue = t2; t1.updateIgnoring$1(new E.PhotoViewControllerValue(t2.position, scale, t2.rotation, t2.rotationFocusPoint)); }, set$rotation: function(rotation) { var t1 = this._valueNotifier._ignorable_change_notifier$_value; if (t1.rotation == rotation) return; this.__PhotoViewController_prevValue = t1; this.set$value(0, new E.PhotoViewControllerValue(t1.position, t1.scale, rotation, t1.rotationFocusPoint)); }, get$value: function(_) { return this._valueNotifier._ignorable_change_notifier$_value; }, set$value: function(_, newValue) { var t1 = this._valueNotifier; if (J.$eq$(t1._ignorable_change_notifier$_value, newValue)) return; t1.set$value(0, newValue); } }; E.PhotoViewControllerDelegate.prototype = { get$scaleStateCycle: function() { return this._widget.scaleStateCycle; }, _blindScaleStateListener$0: function() { var prevScale, nextScale, _this = this, t1 = _this._widget.scaleStateController; if (t1.prevScaleState == t1.get$_scaleStateNotifier()._ignorable_change_notifier$_value) return; if (_this.PhotoViewControllerDelegate__animateScale != null) { t1 = _this._widget.scaleStateController; t1 = t1.get$_scaleStateNotifier()._ignorable_change_notifier$_value === C.PhotoViewScaleState_3 || t1.get$_scaleStateNotifier()._ignorable_change_notifier$_value === C.PhotoViewScaleState_4; } else t1 = true; if (t1) { _this._widget.controller.setScaleInvisibly$1(_this.get$scale(_this)); return; } t1 = _this._widget; prevScale = t1.controller._valueNotifier._ignorable_change_notifier$_value.scale; if (prevScale == null) prevScale = M.getScaleForScaleState(t1.scaleStateController.prevScaleState, t1.scaleBoundaries); nextScale = M.getScaleForScaleState(_this._widget.scaleStateController.get$_scaleStateNotifier()._ignorable_change_notifier$_value, _this._widget.scaleBoundaries); _this.PhotoViewControllerDelegate__animateScale.call$2(prevScale, nextScale); }, _blindScaleListener$0: function() { var t1, newScaleState, _this = this; _this._widget.controller.set$position(0, _this.clampPosition$0()); t1 = _this._widget.controller; if (t1._valueNotifier._ignorable_change_notifier$_value.scale == t1.get$prevValue(t1).scale) return; newScaleState = _this.get$scale(_this) > _this._widget.scaleBoundaries.get$initialScale() ? C.PhotoViewScaleState_3 : C.PhotoViewScaleState_4; _this._widget.scaleStateController.setInvisibly$1(newScaleState); }, get$scale: function(_) { var t1, needsRecalc, t2, t3, newScale, _this = this; if (_this.PhotoViewControllerDelegate_markNeedsScaleRecalc) { t1 = _this._widget.scaleStateController.get$_scaleStateNotifier()._ignorable_change_notifier$_value; needsRecalc = !(t1 === C.PhotoViewScaleState_3 || t1 === C.PhotoViewScaleState_4); } else needsRecalc = false; t1 = _this._widget; t2 = t1.controller._valueNotifier._ignorable_change_notifier$_value.scale; t3 = t2 == null; if (needsRecalc || t3) { newScale = M.getScaleForScaleState(t1.scaleStateController.get$_scaleStateNotifier()._ignorable_change_notifier$_value, _this._widget.scaleBoundaries); _this.PhotoViewControllerDelegate_markNeedsScaleRecalc = false; _this._widget.controller.setScaleInvisibly$1(newScale); return newScale; } return t2; }, nextScaleState$0: function() { var originalScale, nextScaleState0, nextScale, nextScale0, _this = this, nextScaleState = _this._widget.scaleStateController.get$_scaleStateNotifier()._ignorable_change_notifier$_value; if (nextScaleState === C.PhotoViewScaleState_3 || nextScaleState === C.PhotoViewScaleState_4) { _this._widget.scaleStateController.set$scaleState(_this.scaleStateCycle$1(nextScaleState)); return; } originalScale = M.getScaleForScaleState(nextScaleState, _this._widget.scaleBoundaries); nextScaleState0 = nextScaleState; nextScale = originalScale; do { nextScaleState0 = _this.scaleStateCycle$1(nextScaleState0); nextScale0 = M.getScaleForScaleState(nextScaleState0, _this._widget.scaleBoundaries); if (nextScale === nextScale0 && nextScaleState != nextScaleState0) { nextScale = nextScale0; continue; } else break; } while (true); if (originalScale === nextScale0) return; _this._widget.scaleStateController.set$scaleState(nextScaleState0); }, cornersX$1$scale: function(scale) { var _scale = scale == null ? this.get$scale(this) : scale, t1 = this._widget, t2 = t1.scaleBoundaries, t3 = t2.childSize._dx, positionX = t1.basePosition.x, widthDiff = t3 * _scale - t2.outerSize._dx; return new M.CornersRange(Math.abs(positionX - 1) / 2 * widthDiff * -1, Math.abs(positionX + 1) / 2 * widthDiff); }, cornersX$0: function() { return this.cornersX$1$scale(null); }, cornersY$1$scale: function(scale) { var _scale = scale == null ? this.get$scale(this) : scale, t1 = this._widget, t2 = t1.scaleBoundaries, t3 = t2.childSize._dy, positionY = t1.basePosition.y, heightDiff = t3 * _scale - t2.outerSize._dy; return new M.CornersRange(Math.abs(positionY - 1) / 2 * heightDiff * -1, Math.abs(positionY + 1) / 2 * heightDiff); }, cornersY$0: function() { return this.cornersY$1$scale(null); }, clampPosition$2$position$scale: function(position, scale) { var cornersX, finalX, cornersY, finalY, _this = this, _scale = scale == null ? _this.get$scale(_this) : scale, _position = position == null ? _this._widget.controller._valueNotifier._ignorable_change_notifier$_value.position : position, t1 = _this._widget.scaleBoundaries, t2 = t1.childSize, t3 = t2._dx; t2 = t2._dy; t1 = t1.outerSize; if (t1._dx < t3 * _scale) { cornersX = _this.cornersX$1$scale(_scale); finalX = J.clamp$2$n(_position._dx, cornersX.min, cornersX.max); } else finalX = 0; if (t1._dy < t2 * _scale) { cornersY = _this.cornersY$1$scale(_scale); finalY = J.clamp$2$n(_position._dy, cornersY.min, cornersY.max); } else finalY = 0; return new P.Offset(finalX, finalY); }, clampPosition$1$position: function(position) { return this.clampPosition$2$position$scale(position, null); }, clampPosition$0: function() { return this.clampPosition$2$position$scale(null, null); }, scaleStateCycle$1: function(arg0) { return this.get$scaleStateCycle().call$1(arg0); } }; M.PhotoViewScaleStateController.prototype = { get$_scaleStateNotifier: function() { var t2, _this = this, t1 = _this.__PhotoViewScaleStateController__scaleStateNotifier; if (t1 === $) { t1 = Z.IgnorableValueNotifier$(C.PhotoViewScaleState_0, type$.PhotoViewScaleState); t2 = t1.ChangeNotifier__listeners; t2._insertBefore$3$updateFirst(t2._collection$_first, new B._ListenerEntry(_this.get$_scaleStateChangeListener()), false); if (_this.__PhotoViewScaleStateController__scaleStateNotifier === $) _this.__PhotoViewScaleStateController__scaleStateNotifier = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_scaleStateNotifier")); } return t1; }, set$scaleState: function(newValue) { var _this = this; if (J.$eq$(_this.get$_scaleStateNotifier()._ignorable_change_notifier$_value, newValue)) return; _this.prevScaleState = _this.get$_scaleStateNotifier()._ignorable_change_notifier$_value; _this.get$_scaleStateNotifier().set$value(0, newValue); }, dispose$0: function(_) { var t1; this._outputScaleStateCtrl.close$0(0); t1 = this.get$_scaleStateNotifier(); t1._ignorableListeners = null; t1.super$ChangeNotifier$dispose(0); }, setInvisibly$1: function(newValue) { var _this = this; if (J.$eq$(_this.get$_scaleStateNotifier()._ignorable_change_notifier$_value, newValue)) return; _this.prevScaleState = _this.get$_scaleStateNotifier()._ignorable_change_notifier$_value; _this.get$_scaleStateNotifier().updateIgnoring$1(newValue); }, _scaleStateChangeListener$0: function() { this._outputScaleStateCtrl.add$1(0, this.get$_scaleStateNotifier()._ignorable_change_notifier$_value); } }; M.PhotoViewCore.prototype = { createState$0: function() { return new M.PhotoViewCoreState(null, true, null, C._StateLifecycle_0); } }; M.PhotoViewCoreState.prototype = { get$_scaleAnimationController: function() { var t2, _this = this, _null = null, t1 = _this.__PhotoViewCoreState__scaleAnimationController; if (t1 === $) { t1 = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$handleScaleAnimation()); t1.addStatusListener$1(_this.get$onAnimationStatus()); if (_this.__PhotoViewCoreState__scaleAnimationController === $) _this.__PhotoViewCoreState__scaleAnimationController = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_scaleAnimationController")); } return t1; }, get$_positionAnimationController: function() { var t2, _this = this, _null = null, t1 = _this.__PhotoViewCoreState__positionAnimationController; if (t1 === $) { t1 = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$handlePositionAnimate()); if (_this.__PhotoViewCoreState__positionAnimationController === $) _this.__PhotoViewCoreState__positionAnimationController = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_positionAnimationController")); } return t1; }, get$_rotationAnimationController: function() { var t2, _this = this, _null = null, t1 = _this.__PhotoViewCoreState__rotationAnimationController; if (t1 === $) { t1 = G.AnimationController$(_null, _null, 0, _null, 1, _null, _this); t1.didRegisterListener$0(); t2 = t1.AnimationLocalListenersMixin__listeners; t2._isDirty = true; t2._observer_list$_list.push(_this.get$handleRotationAnimation()); if (_this.__PhotoViewCoreState__rotationAnimationController === $) _this.__PhotoViewCoreState__rotationAnimationController = t1; else t1 = H.throwExpression(H.LateError$fieldADI("_rotationAnimationController")); } return t1; }, handleScaleAnimation$0: function() { var t1 = this._scaleAnimation, t2 = t1._evaluatable; t1 = t1.parent; t1 = t2.transform$1(0, t1.get$value(t1)); this._widget.controller.setScaleInvisibly$1(t1); }, handlePositionAnimate$0: function() { var t1 = this._widget.controller, t2 = this._photo_view_core$_positionAnimation, t3 = t2._evaluatable; t2 = t2.parent; t1.set$position(0, t3.transform$1(0, t2.get$value(t2))); }, handleRotationAnimation$0: function() { var t1 = this._widget.controller, t2 = this._rotationAnimation, t3 = t2._evaluatable; t2 = t2.parent; t1.set$rotation(t3.transform$1(0, t2.get$value(t2))); }, onScaleStart$1: function(details) { var _this = this; _this._rotationBefore = _this._widget.controller._valueNotifier._ignorable_change_notifier$_value.rotation; _this._scaleBefore = _this.get$scale(_this); _this._normalizedPosition = details.focalPoint.$sub(0, _this._widget.controller._valueNotifier._ignorable_change_notifier$_value.position); _this.get$_scaleAnimationController().stop$0(0); _this.get$_positionAnimationController().stop$0(0); _this.get$_rotationAnimationController().stop$0(0); }, onScaleUpdate$1: function(details) { var t2, newScale, delta, newScaleState, t3, t4, _this = this, t1 = _this._scaleBefore; t1.toString; t2 = details.scale; newScale = t1 * t2; t1 = _this._normalizedPosition; t1.toString; delta = details.focalPoint.$sub(0, t1); if (_this.get$scale(_this) !== _this._widget.scaleBoundaries.get$initialScale()) newScaleState = newScale > _this._widget.scaleBoundaries.get$initialScale() ? C.PhotoViewScaleState_3 : C.PhotoViewScaleState_4; else newScaleState = C.PhotoViewScaleState_0; _this._widget.scaleStateController.setInvisibly$1(newScaleState); t1 = _this.clampPosition$1$position(delta.$mul(0, t2)); t2 = _this._widget; t2 = t2.controller; t3 = t2.__PhotoViewController_prevValue = t2._valueNotifier._ignorable_change_notifier$_value; t4 = t3.rotation; t2.set$value(0, new E.PhotoViewControllerValue(t1, newScale, t4, t3.rotationFocusPoint)); }, onScaleEnd$1: function(details) { var magnitude, t2, _this = this, _scale = _this.get$scale(_this), t1 = _this._widget, _position = t1.controller._valueNotifier._ignorable_change_notifier$_value.position, maxScale = t1.scaleBoundaries.get$maxScale(), minScale = _this._widget.scaleBoundaries.get$minScale(); if (_scale > maxScale) { _this.animateScale$2(_scale, maxScale); _this.animatePosition$2(_position, _this.clampPosition$2$position$scale(_position.$mul(0, maxScale / _scale), maxScale)); return; } if (_scale < minScale) { _this.animateScale$2(_scale, minScale); _this.animatePosition$2(_position, _this.clampPosition$2$position$scale(_position.$mul(0, minScale / _scale), minScale)); return; } t1 = details.velocity.pixelsPerSecond; magnitude = t1.get$distance(); t2 = _this._scaleBefore; t2.toString; if (t2 / _scale === 1 && magnitude >= 400) _this.animatePosition$2(_position, _this.clampPosition$1$position(_position.$add(0, t1.$div(0, magnitude).$mul(0, 100)))); }, animateScale$2: function(from, to) { var t1 = type$.Tween_double; this._scaleAnimation = new R._AnimatedEvaluation(this.get$_scaleAnimationController(), new R.Tween(from, to, t1), t1._eval$1("_AnimatedEvaluation")); t1 = this.get$_scaleAnimationController(); t1.set$value(0, 0); t1.fling$1$velocity(0.4); }, animatePosition$2: function(from, to) { var t1 = type$.Tween_Offset; this._photo_view_core$_positionAnimation = new R._AnimatedEvaluation(this.get$_positionAnimationController(), new R.Tween(from, to, t1), t1._eval$1("_AnimatedEvaluation")); t1 = this.get$_positionAnimationController(); t1.set$value(0, 0); t1.fling$1$velocity(0.4); }, onAnimationStatus$1: function($status) { var _this = this; if ($status === C.AnimationStatus_3) if (_this._widget.scaleStateController.get$_scaleStateNotifier()._ignorable_change_notifier$_value !== C.PhotoViewScaleState_0 && _this.get$scale(_this) === _this._widget.scaleBoundaries.get$initialScale()) _this._widget.scaleStateController.setInvisibly$1(C.PhotoViewScaleState_0); }, initState$0: function() { var t1, _this = this; _this.super$State$initState(); t1 = _this._widget.controller._valueNotifier._ignorableListeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_blindScaleListener()); t1 = _this._widget.scaleStateController.get$_scaleStateNotifier()._ignorableListeners; t1._isDirty = true; t1._observer_list$_list.push(_this.get$_blindScaleStateListener()); _this.PhotoViewControllerDelegate__animateScale = _this.get$animateOnScaleStateUpdate(); _this.__PhotoViewCoreState_cachedScaleBoundaries = _this._widget.scaleBoundaries; }, animateOnScaleStateUpdate$2: function(prevScale, nextScale) { var t1, t2, _this = this; _this.animateScale$2(prevScale, nextScale); _this.animatePosition$2(_this._widget.controller._valueNotifier._ignorable_change_notifier$_value.position, C.Offset_0_0); t1 = _this._widget.controller._valueNotifier._ignorable_change_notifier$_value.rotation; t2 = type$.Tween_double; _this._rotationAnimation = new R._AnimatedEvaluation(_this.get$_rotationAnimationController(), new R.Tween(t1, 0, t2), t2._eval$1("_AnimatedEvaluation")); t2 = _this.get$_rotationAnimationController(); t2.set$value(0, 0); t2.fling$1$velocity(0.4); }, dispose$0: function(_) { var _this = this; _this.get$_scaleAnimationController().removeStatusListener$1(_this.get$onAnimationStatus()); _this.get$_scaleAnimationController().dispose$0(0); _this.get$_positionAnimationController().dispose$0(0); _this.get$_rotationAnimationController().dispose$0(0); _this.super$_PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate$dispose(0); }, build$1: function(_, context) { var _this = this, t1 = _this._widget.scaleBoundaries, t2 = _this.__PhotoViewCoreState_cachedScaleBoundaries; if (t2 === $) { _this.__PhotoViewCoreState_cachedScaleBoundaries = t1; t2 = t1; } if (!t1.$eq(0, t2)) { _this.PhotoViewControllerDelegate_markNeedsScaleRecalc = true; _this.__PhotoViewCoreState_cachedScaleBoundaries = _this._widget.scaleBoundaries; } t1 = _this._widget.controller.get$_outputCtrl(); t1 = t1.get$stream(t1); t2 = _this._widget.controller; return B.StreamBuilder$(new M.PhotoViewCoreState_build_closure(_this), t2.get$prevValue(t2), t1, type$.PhotoViewControllerValue); }, _buildChild$0: function() { var _null = null, t1 = this._widget, t2 = t1.imageProvider; t2.toString; t1 = U.Image$(C.Alignment_0_0, _null, _null, _null, t1.filterQuality, C.BoxFit_1, _null, false, _null, t2, _null, false, C.ImageRepeat_3, t1.scaleBoundaries.childSize._dx * this.get$scale(this)); return t1; } }; M.PhotoViewCoreState_build_closure.prototype = { call$2: function(context, snapshot) { var t2, useImageScale, computedScale, matrix, t3, t4, t5, child, _null = null, t1 = snapshot.data; if (t1 != null) { t2 = this.$this; useImageScale = t2._widget.filterQuality !== C.FilterQuality_0; computedScale = useImageScale ? 1 : t2.get$scale(t2); matrix = new E.Matrix4(new Float64Array(16)); matrix.setIdentity$0(); t3 = t1.position; matrix.translate$2(0, t3._dx, t3._dy); matrix.scale$1(0, computedScale); matrix.rotateZ$1(t1.rotation); t1 = t2._widget; t3 = t1.scaleBoundaries; t4 = t1.basePosition; t1 = t1.heroAttributes; t1 = T.Hero$(t2._buildChild$0(), _null, _null, _null, t1.tag, false); t5 = t2._widget; t1 = T.Center$(T.Transform$(t5.basePosition, new T.CustomSingleChildLayout(new M._CenterWithOriginalSizeDelegate(t3.childSize, t4, useImageScale), t1, _null), matrix, true), _null, _null); t5 = t5.backgroundDecoration; child = M.Container$(_null, t1, C.Clip_0, _null, _null, t5, _null, _null, _null, _null, _null, _null, _null, _null); return new O.PhotoViewGestureDetector(t2.get$nextScaleState(), t2, t2.get$onScaleStart(), t2.get$onScaleUpdate(), t2.get$onScaleEnd(), _null, _null, child, _null); } else return M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2639 }; M._CenterWithOriginalSizeDelegate.prototype = { getPositionForChild$2: function(size, childSize) { var _this = this, t1 = _this.useImageScale, childWidth = t1 ? childSize._dx : _this.subjectSize._dx, childHeight = t1 ? childSize._dy : _this.subjectSize._dy; t1 = _this.basePosition; return new P.Offset((size._dx - childWidth) / 2 * (t1.x + 1), (size._dy - childHeight) / 2 * (t1.y + 1)); }, getConstraintsForChild$1: function(constraints) { return this.useImageScale ? C.BoxConstraints_mlX4 : S.BoxConstraints$tight(this.subjectSize); }, shouldRelayout$1: function(oldDelegate) { return !oldDelegate.$eq(0, this); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof M._CenterWithOriginalSizeDelegate && H.getRuntimeType(_this) === H.getRuntimeType(other) && J.$eq$(_this.subjectSize, other.subjectSize) && _this.basePosition.$eq(0, other.basePosition) && _this.useImageScale === other.useImageScale; else t1 = true; return t1; }, get$hashCode: function(_) { var t3, t1 = J.get$hashCode$(this.subjectSize), t2 = this.basePosition; t2 = P.hashValues(t2.get$_x(), t2.get$_alignment$_start(t2), t2.get$_y(), C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); t3 = this.useImageScale ? 519018 : 218159; return t1 ^ t2 ^ t3; } }; M._PhotoViewCoreState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate.prototype = { dispose$0: function(_) { var _this = this; _this.PhotoViewControllerDelegate__animateScale = null; _this._widget.controller._valueNotifier._ignorableListeners.remove$1(0, _this.get$_blindScaleListener()); _this._widget.scaleStateController.get$_scaleStateNotifier()._ignorableListeners.remove$1(0, _this.get$_blindScaleStateListener()); _this.super$_PhotoViewCoreState_State_TickerProviderStateMixin$dispose(0); } }; M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector.prototype = {}; O.PhotoViewGestureDetector.prototype = { build$1: function(_, context) { var _this = this, _null = null, scope = context.dependOnInheritedWidgetOfExactType$1$0(type$.PhotoViewGestureDetectorScope), axis = scope == null ? _null : scope.axis, gestures = P.LinkedHashMap_LinkedHashMap$_empty(type$.Type, type$.GestureRecognizerFactory_GestureRecognizer); if (_this.onTapDown != null || _this.onTapUp != null) gestures.$indexSet(0, C.Type_TapGestureRecognizer_62h, new D.GestureRecognizerFactoryWithHandlers(new O.PhotoViewGestureDetector_build_closure(_this), new O.PhotoViewGestureDetector_build_closure0(_this), type$.GestureRecognizerFactoryWithHandlers_TapGestureRecognizer)); gestures.$indexSet(0, C.Type_DoubleTapGestureRecognizer_oyU, new D.GestureRecognizerFactoryWithHandlers(new O.PhotoViewGestureDetector_build_closure1(_this), new O.PhotoViewGestureDetector_build_closure2(_this), type$.GestureRecognizerFactoryWithHandlers_DoubleTapGestureRecognizer)); gestures.$indexSet(0, C.Type_PhotoViewGestureRecognizer_Cbk, new D.GestureRecognizerFactoryWithHandlers(new O.PhotoViewGestureDetector_build_closure3(_this, axis), new O.PhotoViewGestureDetector_build_closure4(_this), type$.GestureRecognizerFactoryWithHandlers_PhotoViewGestureRecognizer)); return new D.RawGestureDetector(_this.child, gestures, _null, false, _null, _null); } }; O.PhotoViewGestureDetector_build_closure.prototype = { call$0: function() { return N.TapGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 469 }; O.PhotoViewGestureDetector_build_closure0.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onTapDown = t1.onTapDown; instance.onTapUp = t1.onTapUp; }, $signature: 470 }; O.PhotoViewGestureDetector_build_closure1.prototype = { call$0: function() { return F.DoubleTapGestureRecognizer$(this.$this); }, "call*": "call$0", $requiredArgCount: 0, $signature: 471 }; O.PhotoViewGestureDetector_build_closure2.prototype = { call$1: function(instance) { instance.onDoubleTap = this.$this.onDoubleTap; }, $signature: 472 }; O.PhotoViewGestureDetector_build_closure3.prototype = { call$0: function() { var t1 = this.$this, t2 = type$.int; return new O.PhotoViewGestureRecognizer(t1.hitDetector, this.axis, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Offset), C.DragStartBehavior_0, C._ScaleState_0, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.VelocityTracker), P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), P.HashSet_HashSet(t2), t1, null, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2640 }; O.PhotoViewGestureDetector_build_closure4.prototype = { call$1: function(instance) { var t1 = this.$this; instance.onStart = t1.onScaleStart; instance.onUpdate = t1.onScaleUpdate; instance.onEnd = t1.onScaleEnd; }, $signature: 2641 }; O.PhotoViewGestureRecognizer.prototype = { addAllowedPointer$1: function($event) { var _this = this; if (_this.ready) { _this.ready = false; _this._photo_view_gesture_detector$_pointerLocations = P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.Offset); } _this.super$ScaleGestureRecognizer$addAllowedPointer($event); }, didStopTrackingLastPointer$1: function(pointer) { this.ready = true; this.super$ScaleGestureRecognizer$didStopTrackingLastPointer(pointer); }, handleEvent$1: function($event) { var _this = this; if (_this.validateAxis != null) { if (type$.PointerMoveEvent._is($event)) { if (!$event.get$synthesized()) _this._photo_view_gesture_detector$_pointerLocations.$indexSet(0, $event.get$pointer(), $event.get$position($event)); } else if (type$.PointerDownEvent._is($event)) _this._photo_view_gesture_detector$_pointerLocations.$indexSet(0, $event.get$pointer(), $event.get$position($event)); else if (type$.PointerUpEvent._is($event) || type$.PointerCancelEvent._is($event)) _this._photo_view_gesture_detector$_pointerLocations.remove$1(0, $event.get$pointer()); _this._initialFocalPoint = _this._photo_view_gesture_detector$_currentFocalPoint; _this._updateDistances$0(); _this._decideIfWeAcceptEvent$1($event); } _this.super$ScaleGestureRecognizer$handleEvent($event); }, _updateDistances$0: function() { var count, focalPoint, t2, _this = this, t1 = _this._photo_view_gesture_detector$_pointerLocations; t1 = t1.get$keys(t1); count = t1.get$length(t1); for (t1 = _this._photo_view_gesture_detector$_pointerLocations, t1 = t1.get$keys(t1), t1 = t1.get$iterator(t1), focalPoint = C.Offset_0_0; t1.moveNext$0();) { t2 = t1.get$current(t1); t2 = _this._photo_view_gesture_detector$_pointerLocations.$index(0, t2); focalPoint = new P.Offset(focalPoint._dx + t2._dx, focalPoint._dy + t2._dy); } _this._photo_view_gesture_detector$_currentFocalPoint = count > 0 ? focalPoint.$div(0, count) : C.Offset_0_0; }, _decideIfWeAcceptEvent$1: function($event) { var t1, t2, move, _this = this; if (!type$.PointerMoveEvent._is($event)) return; t1 = _this._initialFocalPoint; t1.toString; t2 = _this._photo_view_gesture_detector$_currentFocalPoint; t2.toString; move = t1.$sub(0, t2); t2 = _this.validateAxis; t2.toString; if (!_this.hitDetector.shouldMove$2(move, t2)) { t1 = _this._photo_view_gesture_detector$_pointerLocations; t1 = t1.get$keys(t1); t1 = t1.get$length(t1) > 1; } else t1 = true; if (t1) _this.acceptGesture$1($event.get$pointer()); } }; O.PhotoViewGestureDetectorScope.prototype = { updateShouldNotify$1: function(oldWidget) { return this.axis !== oldWidget.axis; } }; G.HitCornersDetector.prototype = { _hitCornersX$0: function() { var x, cornersX, _this = this, t1 = _this._widget.scaleBoundaries.childSize._dx, t2 = _this.get$scale(_this), t3 = _this._widget; if (t3.scaleBoundaries.outerSize._dx >= t1 * t2) return C.HitCorners_true_true; x = -t3.controller._valueNotifier._ignorable_change_notifier$_value.position._dx; cornersX = _this.cornersX$0(); return new G.HitCorners(x <= cornersX.min, x >= cornersX.max); }, _hitCornersY$0: function() { var y, cornersY, _this = this, t1 = _this._widget.scaleBoundaries.childSize._dy, t2 = _this.get$scale(_this), t3 = _this._widget; if (t3.scaleBoundaries.outerSize._dy >= t1 * t2) return C.HitCorners_true_true; y = -t3.controller._valueNotifier._ignorable_change_notifier$_value.position._dy; cornersY = _this.cornersY$0(); return new G.HitCorners(y <= cornersY.min, y >= cornersY.max); }, _shouldMoveAxis$3: function(hitCorners, mainAxisMove, crossAxisMove) { var t1, axisBlocked; if (mainAxisMove === 0) return false; t1 = hitCorners.hasHitMin; if (!(t1 || hitCorners.hasHitMax)) return true; if (!(t1 && hitCorners.hasHitMax)) axisBlocked = hitCorners.hasHitMax ? mainAxisMove > 0 : mainAxisMove < 0; else axisBlocked = true; if (axisBlocked) return false; return true; }, shouldMove$2: function(move, mainAxis) { var _this = this; if (mainAxis === C.Axis_1) return _this._shouldMoveAxis$3(_this._hitCornersY$0(), move._dy, move._dx); return _this._shouldMoveAxis$3(_this._hitCornersX$0(), move._dx, move._dy); } }; G.HitCorners.prototype = {}; M.PhotoViewComputedScale.prototype = { toString$0: function(_) { return "Enum." + this._photo_view_computed_scale$_value; }, $mul: function(_, multiplier) { return new M.PhotoViewComputedScale(this._photo_view_computed_scale$_value, multiplier); }, $div: function(_, divider) { return new M.PhotoViewComputedScale(this._photo_view_computed_scale$_value, 1 / divider); }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof M.PhotoViewComputedScale && H.getRuntimeType(this) === H.getRuntimeType(other) && this._photo_view_computed_scale$_value === other._photo_view_computed_scale$_value; else t1 = true; return t1; }, get$hashCode: function(_) { return C.JSString_methods.get$hashCode(this._photo_view_computed_scale$_value); } }; Y.PhotoViewDefaultError.prototype = { build$1: function(_, context) { return M.DecoratedBox$(T.Center$(L.Icon$(C.IconData_57616_MaterialIcons_null_false, C.Map_HFpTk.$index(0, 400), 40), null, null), this.decoration, C.DecorationPosition_0); } }; Y.PhotoViewDefaultLoading.prototype = { build$1: function(_, context) { var t2, value, _null = null, t1 = this.event; if (t1 != null) t2 = t1.expectedTotalBytes != null; else t2 = true; if (t2) value = 0; else { t2 = t1.cumulativeBytesLoaded; t1 = t1.expectedTotalBytes; t1.toString; value = t2 / t1; } return T.Center$(M.Container$(_null, U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 4, value, _null), C.Clip_0, _null, _null, _null, _null, 20, _null, _null, _null, _null, _null, 20), _null, _null); } }; G.PhotoViewScaleState.prototype = { toString$0: function(_) { return this._photo_view_scale_state$_name; } }; L.ImageWrapper.prototype = { createState$0: function() { return new L._ImageWrapperState(C._StateLifecycle_0); } }; L._ImageWrapperState.prototype = { _getImage$0: function() { this._photo_view_wrappers$_updateSourceStream$1(this._widget.imageProvider.resolve$1(C.ImageConfiguration_Eba)); }, _getOrCreateListener$0: function() { var _this = this; return _this._photo_view_wrappers$_imageStreamListener = new L.ImageStreamListener(new L._ImageWrapperState__getOrCreateListener_handleImageFrame(_this), new L._ImageWrapperState__getOrCreateListener_handleImageChunk(_this), new L._ImageWrapperState__getOrCreateListener_handleError(_this)); }, _photo_view_wrappers$_updateSourceStream$1: function(newStream) { var t3, t4, _this = this, t1 = _this._photo_view_wrappers$_imageStream, t2 = t1 == null; if (t2) t3 = null; else { t3 = t1._image_stream$_completer; if (t3 == null) t3 = t1; } t4 = newStream._image_stream$_completer; if (t3 === (t4 == null ? newStream : t4)) return; if (!t2) { t2 = _this._photo_view_wrappers$_imageStreamListener; t2.toString; t1.removeListener$1(0, t2); } _this._photo_view_wrappers$_imageStream = newStream; newStream.addListener$1(0, _this._getOrCreateListener$0()); }, didUpdateWidget$1: function(oldWidget) { this.super$State$didUpdateWidget(oldWidget); if (!J.$eq$(this._widget.imageProvider, oldWidget.imageProvider)) this._getImage$0(); }, didChangeDependencies$0: function() { this._getImage$0(); this.super$State$didChangeDependencies(); }, dispose$0: function(_) { var t1, t2; this.super$State$dispose(0); t1 = this._photo_view_wrappers$_imageStream; if (t1 != null) { t2 = this._photo_view_wrappers$_imageStreamListener; t2.toString; t1.removeListener$1(0, t2); } }, build$1: function(_, context) { var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this; if (_this._loading) return _this._buildLoading$1(context); if (_this._photo_view_wrappers$_lastException != null) return _this._photo_view_wrappers$_buildError$1(context); t1 = _this._widget; t2 = t1.minScale; t3 = t1.maxScale; t4 = t1.initialScale; t5 = t1.outerSize; t6 = _this._imageSize; t6.toString; t7 = t1.imageProvider; t8 = t1.backgroundDecoration; t9 = t1.heroAttributes; t10 = t1.controller; t11 = t1.scaleStateController; t12 = t1.onTapUp; t1 = t1.onTapDown; return new M.PhotoViewCore(t8, t7, false, t9, false, null, t10, t11, new M.ScaleBoundaries(t2, t3, t4, t5, t6), E.photo_view__defaultScaleStateCycle$closure(), C.Alignment_0_0, t12, t1, false, false, C.FilterQuality_0, null); }, _buildLoading$1: function(context) { var t1 = this._widget.loadingBuilder; if (t1 != null) return t1.call$2(context, this._imageChunkEvent); return new Y.PhotoViewDefaultLoading(this._imageChunkEvent, null); }, _photo_view_wrappers$_buildError$1: function(context) { var t1 = this._widget; return new Y.PhotoViewDefaultError(t1.backgroundDecoration, null); } }; L._ImageWrapperState__getOrCreateListener_handleImageChunk.prototype = { call$1: function($event) { var t1 = this.$this; t1.setState$1(new L._ImageWrapperState__getOrCreateListener_handleImageChunk_closure(t1, $event)); }, $signature: 384 }; L._ImageWrapperState__getOrCreateListener_handleImageChunk_closure.prototype = { call$0: function() { return this.$this._imageChunkEvent = this.event; }, $signature: 0 }; L._ImageWrapperState__getOrCreateListener_handleImageFrame.prototype = { call$2: function(info, synchronousCall) { var t1 = this.$this, setupCB = new L._ImageWrapperState__getOrCreateListener_handleImageFrame_closure(t1, info); if (synchronousCall) setupCB.call$0(); else t1.setState$1(setupCB); }, "call*": "call$2", $requiredArgCount: 2, $signature: 383 }; L._ImageWrapperState__getOrCreateListener_handleImageFrame_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = this.info.image, t3 = t2.get$width(t2); t3.toString; t2 = t2.get$height(t2); t2.toString; t1._imageSize = new P.Size(t3, t2); t1._loading = false; t1._photo_view_wrappers$_stackTrace = t1._photo_view_wrappers$_lastException = t1._imageChunkEvent = null; }, $signature: 1 }; L._ImageWrapperState__getOrCreateListener_handleError.prototype = { call$2: function(error, stackTrace) { var t1 = this.$this; t1.setState$1(new L._ImageWrapperState__getOrCreateListener_handleError_closure(t1, error, stackTrace)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2642 }; L._ImageWrapperState__getOrCreateListener_handleError_closure.prototype = { call$0: function() { var t1 = this.$this; t1._loading = false; t1._photo_view_wrappers$_lastException = this.error; t1._photo_view_wrappers$_stackTrace = this.stackTrace; }, $signature: 0 }; Z.IgnorableChangeNotifier.prototype = { dispose$0: function(_) { this._ignorableListeners = null; this.super$ChangeNotifier$dispose(0); }, notifyListeners$0: function() { var listener, exception, stack, t1, localListeners, _i, exception0, t2; this.super$ChangeNotifier$notifyListeners(); t1 = this._ignorableListeners; if (t1 != null) { localListeners = P.List_List$from(t1, true, type$.void_Function); for (t1 = localListeners.length, _i = 0; _i < t1; ++_i) { listener = localListeners[_i]; try { if (this._ignorableListeners.contains$1(0, listener)) listener.call$0(); } catch (exception0) { exception = H.unwrapException(exception0); stack = H.getTraceFromException(exception0); t2 = $.FlutterError_onError; if (t2 != null) t2.call$1(new U.FlutterErrorDetails(exception, stack, "Photoview library", null, null, false)); } } } } }; Z.IgnorableValueNotifier.prototype = { get$value: function(_) { return this._ignorable_change_notifier$_value; }, set$value: function(_, newValue) { if (J.$eq$(this._ignorable_change_notifier$_value, newValue)) return; this._ignorable_change_notifier$_value = newValue; this.notifyListeners$0(); }, updateIgnoring$1: function(newValue) { if (J.$eq$(this._ignorable_change_notifier$_value, newValue)) return; this._ignorable_change_notifier$_value = newValue; this.super$ChangeNotifier$notifyListeners(); }, toString$0: function(_) { return "#" + Y.shortHash(this) + "(" + H.S(this._ignorable_change_notifier$_value) + ")"; } }; F.PhotoViewHeroAttributes.prototype = {}; M.ScaleBoundaries.prototype = { get$minScale: function() { var _this = this, t1 = _this._minScale, t2 = J.getInterceptor$(t1); if (t2.$eq(t1, C.PhotoViewComputedScale_contained_1)) return M._scaleForContained(_this.outerSize, _this.childSize) * type$.PhotoViewComputedScale._as(t1).multiplier; if (t2.$eq(t1, C.PhotoViewComputedScale_covered_1)) return M._scaleForCovering(_this.outerSize, _this.childSize) * type$.PhotoViewComputedScale._as(t1).multiplier; return t1; }, get$maxScale: function() { var _this = this, t1 = _this._maxScale, t2 = J.getInterceptor$(t1); if (t2.$eq(t1, C.PhotoViewComputedScale_contained_1)) return C.JSNumber_methods.clamp$2(M._scaleForContained(_this.outerSize, _this.childSize) * type$.PhotoViewComputedScale._as(t1).multiplier, _this.get$minScale(), 1 / 0); if (t2.$eq(t1, C.PhotoViewComputedScale_covered_1)) return C.JSNumber_methods.clamp$2(M._scaleForCovering(_this.outerSize, _this.childSize) * type$.PhotoViewComputedScale._as(t1).multiplier, _this.get$minScale(), 1 / 0); return t2.clamp$2(t1, _this.get$minScale(), 1 / 0); }, get$initialScale: function() { var _this = this, t1 = _this._initialScale; if (t1.$eq(0, C.PhotoViewComputedScale_contained_1)) return M._scaleForContained(_this.outerSize, _this.childSize) * t1.multiplier; if (t1.$eq(0, C.PhotoViewComputedScale_covered_1)) return M._scaleForCovering(_this.outerSize, _this.childSize) * t1.multiplier; return t1.clamp$2(0, _this.get$minScale(), _this.get$maxScale()); }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof M.ScaleBoundaries && H.getRuntimeType(_this) === H.getRuntimeType(other) && J.$eq$(_this._minScale, other._minScale) && J.$eq$(_this._maxScale, other._maxScale) && _this._initialScale.$eq(0, other._initialScale) && _this.outerSize.$eq(0, other.outerSize) && J.$eq$(_this.childSize, other.childSize); else t1 = true; return t1; }, get$hashCode: function(_) { var _this = this, t1 = _this.outerSize; return J.get$hashCode$(_this._minScale) ^ J.get$hashCode$(_this._maxScale) ^ C.JSString_methods.get$hashCode(_this._initialScale._photo_view_computed_scale$_value) ^ P.hashValues(t1._dx, t1._dy, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd) ^ J.get$hashCode$(_this.childSize); } }; M.CornersRange.prototype = {}; E.LocalPlatform.prototype = { get$executable: function() { return P.Platform_executable(); }, get$resolvedExecutable: function() { return P.Platform_resolvedExecutable(); }, get$script: function() { return P.Platform_script(); }, get$executableArguments: function() { return P.Platform_executableArguments(); }, get$stdinSupportsAnsi: function() { return P.stdin().get$supportsAnsiEscapes(); }, get$stdoutSupportsAnsi: function() { return P.stdout().get$supportsAnsiEscapes(); }, get$localeName: function() { return P.Platform_localeName(); } }; T.Platform.prototype = { toJson$0: function() { var _this = this; P.LinkedHashMap_LinkedHashMap$_literal(["numberOfProcessors", $.$get$Platform__numberOfProcessors(), "pathSeparator", $.$get$Platform__pathSeparator(), "operatingSystem", $.$get$Platform__operatingSystem(), "operatingSystemVersion", $.$get$Platform__operatingSystemVersion(), "localHostname", $.$get$Platform__localHostname(), "environment", P._Platform_environment(), "executable", _this.get$executable(), "resolvedExecutable", _this.get$resolvedExecutable(), "script", _this.get$script().toString$0(0), "executableArguments", _this.get$executableArguments(), "packageRoot", void 1, "packageConfig", void 1, "version", void 1, "stdinSupportsAnsi", _this.get$stdinSupportsAnsi(), "stdoutSupportsAnsi", _this.get$stdoutSupportsAnsi(), "localeName", _this.get$localeName()], type$.String, type$.dynamic); return void 1; } }; E.PlatformInterface.prototype = {}; L._registerFactory_closure.prototype = { call$1: function(viewId) { var htmlElement = document.createElement("div"), t1 = htmlElement.style; t1.width = "100%"; t1 = htmlElement.style; t1.height = "100%"; if (this.debug) { t1 = htmlElement.style; t1.backgroundColor = "rgba(255, 0, 0, .5)"; } return htmlElement; }, $signature: 614 }; L.PointerInterceptor.prototype = { build$1: function(_, context) { return T.Stack$(C.Alignment_0_0, H.setRuntimeTypeInfo([T.Positioned$fill(new G.HtmlElementView("__webPointerInterceptorViewType__", null)), this.child], type$.JSArray_Widget), C.Clip_1, C.StackFit_0, null, null); } }; Q.QrBitBuffer.prototype = { $indexSet: function(_, index, value) { return H.throwExpression(P.UnsupportedError$("cannot change")); }, $index: function(_, index) { return (C.JSInt_methods._shrReceiverPositive$1(this._bit_buffer$_buffer[C.JSInt_methods._tdivFast$1(index, 8)], 7 - C.JSInt_methods.$mod(index, 8)) & 1) === 1; }, get$length: function(_) { return this._bit_buffer$_length; }, set$length: function(_, value) { H.throwExpression(P.UnsupportedError$("Cannot change")); }, put$2: function(_, number, $length) { var i; for (i = 0; i < $length; ++i) this.putBit$1((C.JSInt_methods.$shr(number, $length - i - 1) & 1) === 1); }, putBit$1: function(bit) { var _this = this, bufIndex = C.JSInt_methods._tdivFast$1(_this._bit_buffer$_length, 8), t1 = _this._bit_buffer$_buffer; if (t1.length <= bufIndex) t1.push(0); if (bit) t1[bufIndex] = (t1[bufIndex] | C.JSInt_methods._shrBothPositive$1(128, C.JSInt_methods.$mod(_this._bit_buffer$_length, 8))) >>> 0; ++_this._bit_buffer$_length; }, $isEfficientLengthIterable: 1, $isIterable: 1, $isList: 1 }; Q._QrBitBuffer_Object_ListMixin.prototype = {}; V.QrByte.prototype = { get$length: function(_) { return this._byte$_data.length; }, write$1: function(_, buffer) { var t1, t2, _i; for (t1 = this._byte$_data, t2 = t1.length, _i = 0; _i < t2; ++_i) buffer.put$2(0, t1[_i], 8); } }; V.InputTooLongException.prototype = { toString$0: function(_) { return "QrInputTooLongException: " + this.message; }, $isException: 1 }; D.QrPolynomial.prototype = { $index: function(_, index) { return this._polynomial$_values[index]; }, get$length: function(_) { return this._polynomial$_values.length; }, multiply$1: function(_, e) { var i, j, t5, t6, t7, t8, t9, t1 = this._polynomial$_values, t2 = t1.length, t3 = e._polynomial$_values, t4 = t3.length, foo = new Uint8Array(t2 + t4 - 1); for (i = 0; i < t2; ++i) for (j = 0; j < t4; ++j) { t5 = i + j; t6 = foo[t5]; t7 = t1[i]; if (t7 < 1) H.throwExpression(P.ArgumentError$("glog(" + t7 + ")")); t8 = $.$get$_logTable(); t7 = t8[t7]; t9 = t3[j]; if (t9 < 1) H.throwExpression(P.ArgumentError$("glog(" + t9 + ")")); foo[t5] = (t6 ^ K.gexp(t7 + t8[t9])) >>> 0; } return D.QrPolynomial_QrPolynomial(foo, 0); }, mod$1: function(e) { var ratio, value, i, t1 = this._polynomial$_values, t2 = t1.length, t3 = e._polynomial$_values, t4 = t3.length; if (t2 - t4 < 0) return this; ratio = K.glog(t1[0]) - K.glog(t3[0]); value = new Uint8Array(t2); for (i = 0; i < t2; ++i) value[i] = t1[i]; for (i = 0; i < t4; ++i) { t1 = value[i]; t2 = t3[i]; if (t2 < 1) H.throwExpression(P.ArgumentError$("glog(" + t2 + ")")); value[i] = (t1 ^ K.gexp($.$get$_logTable()[t2] + ratio)) >>> 0; } return D.QrPolynomial_QrPolynomial(value, 0).mod$1(e); } }; D.QrCode.prototype = { QrCode$2: function(typeNumber, errorCorrectLevel) { var t1, t2, t3, row, _this = this; P.RangeError_checkValueInInterval(_this.typeNumber, 1, 40, "typeNumber"); P.RangeError_checkValidIndex(_this.errorCorrectLevel, C.List_1_0_3_2, "errorCorrectLevel", null); for (t1 = _this.moduleCount, t2 = _this._modules, t3 = type$.nullable_bool, row = 0; row < t1; ++row) t2.push(P.List_List$filled(t1, null, false, t3)); }, isDark$2: function(row, col) { var t1; if (row >= 0) { t1 = this.moduleCount; t1 = t1 <= row || col < 0 || t1 <= col; } else t1 = true; if (t1) throw H.wrapException(P.ArgumentError$("" + row + " , " + col)); t1 = this._modules[row][col]; t1.toString; return t1; }, _setupPositionProbePattern$2: function(row, col) { var t1, t2, r, t3, t4, t5, t6, t7, t8, t9, c, t10, t11; for (t1 = this._modules, t2 = this.moduleCount, r = -1; r <= 7; ++r) { t3 = row + r; if (t3 <= -1 || t2 <= t3) continue; for (t4 = 0 <= r, t5 = r <= 6, t6 = r !== 0, t7 = r === 6, t8 = 2 <= r, t9 = r <= 4, c = -1; c <= 7; ++c) { t10 = col + c; if (t10 <= -1 || t2 <= t10) continue; if (t4) if (t5) t11 = c === 0 || c === 6; else t11 = false; else t11 = false; if (!t11) { if (0 <= c) if (c <= 6) t11 = !t6 || t7; else t11 = false; else t11 = false; if (!t11) t11 = t8 && t9 && 2 <= c && c <= 4; else t11 = true; } else t11 = true; if (t11) t1[t3][t10] = true; else t1[t3][t10] = false; } } }, _getBestMaskPattern$0: function() { var minLostPoint, pattern, i, lostPoint; for (minLostPoint = 0, pattern = 0, i = 0; i < 8; ++i) { this._makeImpl$2(true, i); lostPoint = D._lostPoint(this); if (i === 0 || minLostPoint > lostPoint) { pattern = i; minLostPoint = lostPoint; } } return pattern; }, _setupTimingPattern$0: function() { var t1, t2, r, t3, c; for (t1 = this.moduleCount - 8, t2 = this._modules, r = 8; r < t1; ++r) { t3 = t2[r]; if (t3[6] != null) continue; t3[6] = (r & 1) === 0; } for (c = 8; c < t1; ++c) { t3 = t2[6]; if (t3[c] != null) continue; t3[c] = (c & 1) === 0; } }, _setupPositionAdjustPattern$0: function() { var t1, t2, i, j, row, col, r, t3, t4, t5, t6, c, t7, t8, pos = C.List_CI3[this.typeNumber - 1]; for (t1 = pos.length, t2 = this._modules, i = 0; i < t1; ++i) for (j = 0; j < t1; ++j) { row = pos[i]; col = pos[j]; if (t2[row][col] != null) continue; for (r = -2; r <= 2; ++r) for (t3 = row + r, t4 = r !== -2, t5 = r !== 2, t6 = r === 0, c = -2; c <= 2; ++c) { if (t4) if (t5) if (c !== -2) if (c !== 2) t7 = t6 && c === 0; else t7 = true; else t7 = true; else t7 = true; else t7 = true; t8 = col + c; if (t7) t2[t3][t8] = true; else t2[t3][t8] = false; } } }, _setupTypeNumber$1: function(test) { var t1, t2, t3, i, mod, bits = M.bchTypeNumber(this.typeNumber); for (t1 = this._modules, t2 = this.moduleCount, t3 = !test, i = 0; i < 18; ++i) { mod = t3 && (C.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; t1[C.JSInt_methods._tdivFast$1(i, 3)][C.JSInt_methods.$mod(i, 3) + t2 - 8 - 3] = mod; } for (i = 0; i < 18; ++i) { mod = t3 && (C.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; t1[C.JSInt_methods.$mod(i, 3) + t2 - 8 - 3][C.JSInt_methods._tdivFast$1(i, 3)] = mod; } }, _setupTypeInfo$2: function(test, maskPattern) { var t1, t2, t3, t4, i, mod, bits = M.bchTypeInfo((this.errorCorrectLevel << 3 | maskPattern) >>> 0); for (t1 = this._modules, t2 = this.moduleCount, t3 = t2 - 15, t4 = !test, i = 0; i < 15; ++i) { mod = t4 && (C.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; if (i < 6) t1[i][8] = mod; else if (i < 8) t1[i + 1][8] = mod; else t1[t3 + i][8] = mod; } for (i = 0; i < 15; ++i) { mod = t4 && (C.JSInt_methods._shrBothPositive$1(bits, i) & 1) === 1; if (i < 8) t1[8][t2 - i - 1] = mod; else { t3 = 15 - i - 1; if (i < 9) t1[8][t3 + 1] = mod; else t1[8][t3] = mod; } } t1[t2 - 8][8] = t4; }, _mapData$2: function(data, maskPattern) { var t2, col, inc, bitIndex, byteIndex, c, t3, dark, inc0, t1 = this.moduleCount, row = t1 - 1; for (t2 = this._modules, col = row, inc = -1, bitIndex = 7, byteIndex = 0; col > 0; col -= 2) { if (col === 6) --col; for (; true;) { for (c = 0; c < 2; ++c) { t3 = col - c; if (t2[row][t3] == null) { dark = byteIndex < data.length && (C.JSInt_methods._shrReceiverPositive$1(data[byteIndex], bitIndex) & 1) === 1; if (D._mask(maskPattern, row, t3)) dark = !dark; t2[row][t3] = dark; --bitIndex; if (bitIndex === -1) { ++byteIndex; bitIndex = 7; } } } row += inc; if (row < 0 || t1 <= row) { row -= inc; inc0 = -inc; inc = inc0; break; } } } }, _makeImpl$2: function(test, maskPattern) { var t1, t2, _this = this; _this._setupPositionProbePattern$2(0, 0); t1 = _this.moduleCount - 7; _this._setupPositionProbePattern$2(t1, 0); _this._setupPositionProbePattern$2(0, t1); _this._setupPositionAdjustPattern$0(); _this._setupTimingPattern$0(); _this._setupTypeInfo$2(test, maskPattern); t1 = _this.typeNumber; if (t1 >= 7) _this._setupTypeNumber$1(test); t2 = _this._dataCache; _this._mapData$2(t2 == null ? _this._dataCache = D._createData(t1, _this.errorCorrectLevel, _this._dataList) : t2, maskPattern); } }; Y.QrRsBlock.prototype = {}; F.PaintCache.prototype = { _cacheKey$2$position: function(element, position) { var posKey = position != null ? position._types$_name : "any"; return element._types$_name + ":" + posKey; }, cache$3$position: function(_, paint, element, position) { if (element === C.QrCodeElement_3) this._pixelPaints.push(paint); else this._keyedPaints.$indexSet(0, this._cacheKey$2$position(element, position), paint); }, cache$2: function($receiver, paint, element) { return this.cache$3$position($receiver, paint, element, null); }, firstPaint$2$position: function(element, position) { if (element === C.QrCodeElement_3) return C.JSArray_methods.get$first(this._pixelPaints); else return this._keyedPaints.$index(0, this._cacheKey$2$position(element, position)); }, firstPaint$1: function(element) { return this.firstPaint$2$position(element, null); } }; E.QrImage.prototype = { createState$0: function() { return new E._QrImageState(C._StateLifecycle_0); } }; E._QrImageState.prototype = { get$_validationResult: function() { var t1 = this.___QrImageState__validationResult; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_validationResult")) : t1; }, build$1: function(_, context) { var _this = this, t1 = _this._widget, t2 = t1._qr_image$_data; if (t2 != null) { _this.___QrImageState__validationResult = S.QrValidator_validate(t2, 1, t1.version); if (_this.get$_validationResult().status === C.QrValidationStatus_0) _this._qr = _this.get$_validationResult().qrCode; else _this._qr = null; } return new A.LayoutBuilder(new E._QrImageState_build_closure(_this), null); }, _qrWidget$3: function(context, image, edgeLength) { var t2, painter, _null = null, t1 = this._qr; t1.toString; this._widget.toString; t2 = t1.typeNumber; painter = new R.QrPainter(t2, t1.errorCorrectLevel, _null, true, image, _null, C.C_QrEyeStyle, C.C_QrDataModuleStyle, t1, new F.PaintCache(H.setRuntimeTypeInfo([], type$.JSArray_Paint), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Paint)), _null); painter.__QrPainter__calcVersion = t2; painter._initPaints$0(); return new E._QrContentView(edgeLength, this._widget.backgroundColor, C.EdgeInsets_10_10_10_10, T.CustomPaint$(_null, _null, _null, painter, C.Size_0_0), "qr code", _null); }, _errorWidget$3: function(context, constraints, error) { var errorWidget, _null = null, t1 = this._widget; t1.toString; errorWidget = M.Container$(_null, _null, C.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return new E._QrContentView(t1.size, t1.backgroundColor, C.EdgeInsets_10_10_10_10, errorWidget, "qr code", _null); } }; E._QrImageState_build_closure.prototype = { call$2: function(context, constraints) { var widgetSize, t1 = this.$this; if (t1.get$_validationResult().status !== C.QrValidationStatus_0) return t1._errorWidget$3(context, constraints, t1.get$_validationResult().error); widgetSize = t1._widget.size; t1 = t1._qrWidget$3(context, null, widgetSize); return t1; }, $signature: 307 }; E._QrContentView.prototype = { build$1: function(_, context) { var _this = this, _null = null, t1 = _this.edgeLength; t1 = M.Container$(_null, new T.Padding(_this.padding, _this.child, _null), C.Clip_0, _this.backgroundColor, _null, _null, _null, t1, _null, _null, _null, _null, _null, t1); return new T.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _this.semanticsLabel, _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), false, false, false, t1, _null); } }; R.QrPainter.prototype = { get$_calcVersion: function() { var t1 = this.__QrPainter__calcVersion; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_calcVersion")) : t1; }, _initPaints$0: function() { var _i, position, t3, t1 = this._paintCache, t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$style(0, C.PaintingStyle_0); t1.cache$2(0, t2, C.QrCodeElement_3); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$style(0, C.PaintingStyle_0); t1.cache$2(0, t2, C.QrCodeElement_4); for (_i = 0; _i < 3; ++_i) { position = C.List_xWp[_i]; t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$style(0, C.PaintingStyle_1); t3 = t1._keyedPaints; t3.$indexSet(0, "QrCodeElement.finderPatternOuter:" + position._types$_name, t2); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$style(0, C.PaintingStyle_1); t3.$indexSet(0, "QrCodeElement.finderPatternInner:" + position._types$_name, t2); t2 = H._detectRenderer(); t2 = t2 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); t2.set$style(0, C.PaintingStyle_0); t3.$indexSet(0, "QrCodeElement.finderPatternDot:" + position._types$_name, t2); } }, paint$2: function(canvas, size) { var t1, t2, t3, paintMetrics, gapTotal, t4, pixelPaint, $top, left, x, isTopLeft, isBottomLeft, y, isTopLeft0, isBottomLeft0, isTopRight, paint, t5, t6, pixelHTweak, pixelVTweak, imageSize, t7, _this = this, _null = null, _s10_ = "_pixelSize"; if (size.get$shortestSide() === 0) { P.print("[QR] WARN: width or height is zero. You should set a 'size' value or nest this painter in a Widget that defines a non-zero size"); return; } t1 = size.get$shortestSide(); t2 = _this._qr_painter$_qr; t3 = t2.moduleCount; paintMetrics = new R._PaintMetrics(t3, t1, 0); gapTotal = (t3 - 1) * 0; paintMetrics.___PaintMetrics__pixelSize = C.JSNumber_methods.roundToDouble$0((t1 - gapTotal) / t3 * 2) / 2; t4 = paintMetrics.get$_pixelSize(); if (paintMetrics.___PaintMetrics__innerContentSize === $) paintMetrics.___PaintMetrics__innerContentSize = t4 * t3 + gapTotal; else H.throwExpression(H.LateError$fieldAI("_innerContentSize")); t4 = paintMetrics.get$_innerContentSize(); if (paintMetrics.___PaintMetrics__inset === $) paintMetrics.___PaintMetrics__inset = (t1 - t4) / 2; else H.throwExpression(H.LateError$fieldAI("_inset")); _this._drawFinderPatternItem$3(C.FinderPatternPosition_0, canvas, paintMetrics); _this._drawFinderPatternItem$3(C.FinderPatternPosition_2, canvas, paintMetrics); _this._drawFinderPatternItem$3(C.FinderPatternPosition_1, canvas, paintMetrics); pixelPaint = _this._paintCache.firstPaint$1(C.QrCodeElement_3); pixelPaint.set$color(0, C.Color_4278190080); for (t1 = t3 - 7, $top = _null, left = $top, x = 0; x < t3; ++x) for (isTopLeft = x < 7, isBottomLeft = x >= t1, y = 0; y < t3; ++y) { t4 = y < 7; isTopLeft0 = t4 && isTopLeft; isBottomLeft0 = t4 && isBottomLeft; isTopRight = y >= t1 && isTopLeft; if (isTopLeft0 || isBottomLeft0 || isTopRight) continue; paint = t2.isDark$2(y, x) ? pixelPaint : _null; if (paint == null) continue; t4 = paintMetrics.___PaintMetrics__inset; t5 = t4 === $ ? H.throwExpression(H.LateError$fieldNI("_inset")) : t4; t6 = paintMetrics.___PaintMetrics__pixelSize; left = t5 + x * ((t6 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t6) + 0); $top = t4 + y * (t6 + 0); t4 = _this._hasAdjacentHorizontalPixel$3(x, y, t3); pixelHTweak = t4 ? 0.5 : 0; t4 = _this._hasAdjacentVerticalPixel$3(x, y, t3); pixelVTweak = t4 ? 0.5 : 0; t4 = paintMetrics.___PaintMetrics__pixelSize; t5 = t4 === $ ? H.throwExpression(H.LateError$fieldNI(_s10_)) : t4; canvas.drawRect$2(0, new P.Rect(left, $top, left + (t5 + pixelHTweak), $top + (t4 + pixelVTweak)), paint); } t1 = _this.embeddedImage; if (t1 != null) { t2 = t1.get$width(t1); t2.toString; t3 = t1.get$height(t1); t3.toString; imageSize = _this._scaledAspectSize$3(size, new P.Size(t2, t3), _null); t2 = imageSize._dx; t3 = (size._dx - t2) / 2; t4 = imageSize._dy; t5 = (size._dy - t4) / 2; t6 = H._detectRenderer(); paint = t6 ? H.CkPaint$() : new H.SurfacePaint(new H.SurfacePaintData()); paint.set$isAntiAlias(true); paint.set$filterQuality(C.FilterQuality_3); t6 = t1.get$width(t1); t6.toString; t7 = t1.get$height(t1); t7.toString; canvas.drawImageRect$4(t1, C.Alignment_0_0.inscribe$2(new P.Size(t6, t7), new P.Rect(0, 0, t6, t7)), C.Alignment_0_0.inscribe$2(imageSize, new P.Rect(t3, t5, t3 + t2, t5 + t4)), paint); } }, _hasAdjacentVerticalPixel$3: function(x, y, moduleCount) { var t1 = y + 1; if (t1 >= moduleCount) return false; return this._qr_painter$_qr.isDark$2(t1, x); }, _hasAdjacentHorizontalPixel$3: function(x, y, moduleCount) { var t1 = x + 1; if (t1 >= moduleCount) return false; return this._qr_painter$_qr.isDark$2(y, t1); }, _drawFinderPatternItem$3: function(position, canvas, metrics) { var offset, t1, t2, t3, dotPaint, t4, innerRadius, t5, t6, dotSize, t7, t8, radius = 7 * metrics.get$_pixelSize() + 6 * metrics.gapSize - metrics.get$_pixelSize(), strokeAdjust = metrics.get$_pixelSize() / 2, edgePos = metrics.get$_inset() + metrics.get$_innerContentSize() - (radius + strokeAdjust); if (position === C.FinderPatternPosition_0) offset = new P.Offset(metrics.get$_inset() + strokeAdjust, metrics.get$_inset() + strokeAdjust); else offset = position === C.FinderPatternPosition_2 ? new P.Offset(metrics.get$_inset() + strokeAdjust, edgePos) : new P.Offset(edgePos, metrics.get$_inset() + strokeAdjust); t1 = this._paintCache; t2 = t1.firstPaint$2$position(C.QrCodeElement_0, position); t2.toString; t2.set$strokeWidth(metrics.get$_pixelSize()); t2.set$color(0, C.Color_4278190080); t3 = t1.firstPaint$2$position(C.QrCodeElement_1, position); t3.toString; t3.set$strokeWidth(metrics.get$_pixelSize()); t3.set$color(0, new P.Color(16777215)); dotPaint = t1.firstPaint$2$position(C.QrCodeElement_2, position); dotPaint.set$color(0, C.Color_4278190080); t1 = offset._dx; t4 = offset._dy; innerRadius = radius - 2 * metrics.get$_pixelSize(); t5 = t1 + metrics.get$_pixelSize(); t6 = t4 + metrics.get$_pixelSize(); dotSize = radius - metrics.get$_pixelSize() * 2 - 2 * strokeAdjust; t7 = t1 + metrics.get$_pixelSize() + strokeAdjust; t8 = t4 + metrics.get$_pixelSize() + strokeAdjust; canvas.drawRect$2(0, new P.Rect(t1, t4, t1 + radius, t4 + radius), t2); canvas.drawRect$2(0, new P.Rect(t5, t6, t5 + innerRadius, t6 + innerRadius), t3); canvas.drawRect$2(0, new P.Rect(t7, t8, t7 + dotSize, t8 + dotSize), dotPaint); }, _scaledAspectSize$3: function(widgetSize, originalSize, requestedSize) { var ratio = 0.25 * widgetSize.get$shortestSide() / originalSize.get$longestSide(); return new P.Size(ratio * originalSize._dx, ratio * originalSize._dy); }, shouldRepaint$1: function(oldPainter) { var t1, _this = this; if (oldPainter instanceof R.QrPainter) { if (_this.errorCorrectionLevel === oldPainter.errorCorrectionLevel) if (_this.get$_calcVersion() == oldPainter.get$_calcVersion()) if (_this._qr_painter$_qr == oldPainter._qr_painter$_qr) if (_this.embeddedImage == oldPainter.embeddedImage) t1 = !_this.eyeStyle.$eq(0, oldPainter.eyeStyle) || !_this.dataModuleStyle.$eq(0, oldPainter.dataModuleStyle); else t1 = true; else t1 = true; else t1 = true; else t1 = true; return t1; } return true; } }; R._PaintMetrics.prototype = { get$_pixelSize: function() { var t1 = this.___PaintMetrics__pixelSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_pixelSize")) : t1; }, get$_innerContentSize: function() { var t1 = this.___PaintMetrics__innerContentSize; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_innerContentSize")) : t1; }, get$_inset: function() { var t1 = this.___PaintMetrics__inset; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_inset")) : t1; } }; G.QrCodeElement.prototype = { toString$0: function(_) { return this._types$_name; } }; G.FinderPatternPosition.prototype = { toString$0: function(_) { return this._types$_name; } }; G.QrEyeShape.prototype = { toString$0: function(_) { return "QrEyeShape.square"; } }; G.QrDataModuleShape.prototype = { toString$0: function(_) { return "QrDataModuleShape.square"; } }; G.QrEyeStyle.prototype = { get$hashCode: function(_) { return (H.Primitives_objectHashCode(C.QrEyeShape_0) ^ C.JSInt_methods.get$hashCode(4278190080)) >>> 0; }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof G.QrEyeStyle) { t1 = C.Color_4278190080.$eq(0, C.Color_4278190080); return t1; } return false; } }; G.QrDataModuleStyle.prototype = { get$hashCode: function(_) { return (H.Primitives_objectHashCode(C.QrDataModuleShape_0) ^ C.JSInt_methods.get$hashCode(4278190080)) >>> 0; }, $eq: function(_, other) { var t1; if (other == null) return false; if (other instanceof G.QrDataModuleStyle) { t1 = C.Color_4278190080.$eq(0, C.Color_4278190080); return t1; } return false; } }; S.QrValidator_validate__qrCode_set.prototype = { call$1: function(t1) { var t2 = this._box_0; if (t2._qrCode0 === $) return t2._qrCode0 = t1; else throw H.wrapException(H.LateError$localAI("qrCode")); }, $signature: 2644 }; S.QrValidator_validate__qrCode_get.prototype = { call$0: function() { var t1 = this._box_0._qrCode0; return t1 === $ ? H.throwExpression(H.LateError$localNI("qrCode")) : t1; }, $signature: 2645 }; S.QrValidationResult.prototype = {}; S.QrValidationStatus.prototype = { toString$0: function(_) { return this._validator$_name; } }; A.hashObjects_closure1.prototype = { call$2: function(h, i) { return A._combine0(h, J.get$hashCode$(i)); }, $signature: 496 }; X.MiddlewareClass.prototype = {}; X.Store.prototype = { get$_store$_state: function() { var t1 = this.__Store__state; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_state")) : t1; }, get$_dispatchers: function() { var t1 = this.__Store__dispatchers; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_dispatchers")) : t1; }, _createReduceAndNotify$1: function(distinct) { return new X.Store__createReduceAndNotify_closure(this, false); }, _createDispatchers$2: function(middleware, reduceAndNotify) { var t1, t2, dispatchers = H.setRuntimeTypeInfo([], type$.JSArray_of_dynamic_Function_dynamic); dispatchers.push(reduceAndNotify); for (t1 = H._arrayInstanceType(middleware)._eval$1("ReversedListIterable<1>"), t2 = new H.ReversedListIterable(middleware, t1), t1 = new H.ListIterator(t2, t2.get$length(t2), t1._eval$1("ListIterator")); t1.moveNext$0();) dispatchers.push(new X.Store__createDispatchers_closure(this, t1.__internal$_current, C.JSArray_methods.get$last(dispatchers))); t1 = type$.ReversedListIterable_of_dynamic_Function_dynamic; return P.List_List$of(new H.ReversedListIterable(dispatchers, t1), true, t1._eval$1("ListIterable.E")); } }; X.Store__createReduceAndNotify_closure.prototype = { call$1: function(action) { var t1 = this.$this, t2 = t1.get$_store$_state(), state = t1.reducer.call$2(t2, action); t1.__Store__state = state; t1._changeController.add$1(0, state); }, $signature: 8 }; X.Store__createDispatchers_closure.prototype = { call$1: function(action) { return this.nextMiddleware.call$3(this.$this, action, this.next); }, $signature: 10 }; B.TypedReducer.prototype = { call$2: function(state, action) { if (this.$ti._rest[1]._is(action)) return this.reducer.call$2(state, action); return state; } }; B.TypedMiddleware.prototype = { call$3: function(store, action, next) { if (this.$ti._rest[1]._is(action)) return this.middleware.call$3(store, action, next); else return next.call$1(action); } }; B.combineReducers_closure.prototype = { call$2: function(state, action) { var t1, t2, _i; for (t1 = this.reducers, t2 = t1.length, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) state = t1[_i].call$2(state, action); return state; }, "call*": "call$2", $requiredArgCount: 2, $signature: function() { return this.State._eval$1("0(0,@)"); } }; O.LoggingMiddleware.prototype = { call$3: function(store, action, next) { next.call$1(action); this.logger.log$2(this.level, new O.LoggingMiddleware_call_closure(this, store, action)); } }; O.LoggingMiddleware_call_closure.prototype = { call$0: function() { return this.$this.formatter.call$3(this.store.get$_store$_state(), this.action, new P.DateTime(Date.now(), false)); }, $signature: 71 }; N.LoadingState.prototype = { toString$0: function(_) { return this._rounded_loading_button$_name; } }; N.RoundedLoadingButton.prototype = { createState$0: function() { var t1 = type$.LoadingState, controller = new P._AsyncBroadcastStreamController(null, null, type$._AsyncBroadcastStreamController_LoadingState), wrapper = new U._Wrapper(new Q.ValueWrapper(C.LoadingState_0, type$.ValueWrapper_LoadingState), type$._Wrapper_LoadingState); t1 = D.DeferStream$(U.BehaviorSubject__deferStream(wrapper, controller, false, t1), true, t1); return new N.RoundedLoadingButtonState(new U.BehaviorSubject(wrapper, t1, controller, t1, type$.BehaviorSubject_LoadingState), null, C._StateLifecycle_0); } }; N.RoundedLoadingButtonState.prototype = { get$_rounded_loading_button$_buttonController: function() { var t1 = this.__RoundedLoadingButtonState__buttonController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_buttonController")) : t1; }, get$_borderController: function() { var t1 = this.__RoundedLoadingButtonState__borderController; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_borderController")) : t1; }, get$_checkButtonControler: function() { var t1 = this.__RoundedLoadingButtonState__checkButtonControler; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_checkButtonControler")) : t1; }, get$_squeezeAnimation: function() { var t1 = this.__RoundedLoadingButtonState__squeezeAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_squeezeAnimation")) : t1; }, get$_bounceAnimation: function() { var t1 = this.__RoundedLoadingButtonState__bounceAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_bounceAnimation")) : t1; }, get$_rounded_loading_button$_borderAnimation: function() { var t1 = this.__RoundedLoadingButtonState__borderAnimation; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_borderAnimation")) : t1; }, build$1: function(_, context) { var t1, t2, t3, t4, t5, _check, _cross, childStream, t6, _btn, _this = this, _null = null, theme = K.Theme_of(context); _this._widget.toString; t1 = theme.primaryColor; t2 = _this.get$_bounceAnimation(); t2 = J.$div$n(t2.get$value(t2), 2); t2 = K.BorderRadius$all(new P.Radius(t2, t2)); t3 = _this.get$_bounceAnimation(); t3 = t3.get$value(t3); t4 = _this.get$_bounceAnimation(); t4 = t4.get$value(t4); t5 = _this.get$_bounceAnimation(); if (J.$gt$n(t5.get$value(t5), 20)) { _this._widget.toString; t5 = L.Icon$(C.IconData_57686_MaterialIcons_null_false, C.Color_4294967295, _null); } else t5 = _null; _check = M.Container$(C.FractionalOffset_0_0, t5, C.Clip_0, _null, _null, new S.BoxDecoration(t1, _null, _null, t2, _null, _null, C.BoxShape_0), _null, t4, _null, _null, _null, _null, _null, t3); _this._widget.toString; t3 = _this.get$_bounceAnimation(); t3 = J.$div$n(t3.get$value(t3), 2); t3 = K.BorderRadius$all(new P.Radius(t3, t3)); t4 = _this.get$_bounceAnimation(); t4 = t4.get$value(t4); t2 = _this.get$_bounceAnimation(); t2 = t2.get$value(t2); t1 = _this.get$_bounceAnimation(); if (J.$gt$n(t1.get$value(t1), 20)) { _this._widget.toString; t1 = L.Icon$(C.IconData_57706_MaterialIcons_null_false, C.Color_4294967295, _null); } else t1 = _null; _cross = M.Container$(C.FractionalOffset_0_0, t1, C.Clip_0, _null, _null, new S.BoxDecoration(C.MaterialColor_Map_JNc9P_4294198070, _null, _null, t3, _null, _null, C.BoxShape_0), _null, t2, _null, _null, _null, _null, _null, t4); _this._widget.toString; t4 = _this._rounded_loading_button$_state; childStream = B.StreamBuilder$(new N.RoundedLoadingButtonState_build_closure(_this, T.SizedBox$(U.CircularProgressIndicator$(_null, _null, _null, _null, _null, 2, _null, new S.AlwaysStoppedAnimation(C.Color_4294967295, type$.AlwaysStoppedAnimation_Color)), 24, 24)), _null, t4, type$.LoadingState); t2 = _this.get$_rounded_loading_button$_borderAnimation(); t2 = t2.get$value(t2); _this._widget.toString; t3 = _this.get$_squeezeAnimation(); t3 = t3.get$value(t3); t1 = _this._widget; t5 = t1.height; t6 = K.BorderRadius$circular(t1.borderRadius); t6 = D.ElevatedButton_styleFrom(_null, _null, _null, 2, _null, _null, new P.Size(t3, t5), _null, _null, new V.EdgeInsets(0, 0, 0, 0), t1.color, _null, new X.RoundedRectangleBorder(t6, C.BorderSide_m7u), _null, _null, _null, _null, _null); t1 = D.ElevatedButton$(childStream, _this.get$_btnPressed(), t6); _btn = new M.ButtonTheme(M.ButtonThemeData$(false, _null, _null, _null, _null, 36, _null, _null, C.ButtonBarLayoutBehavior_1, _null, 88, _null, new X.RoundedRectangleBorder(t2, C.BorderSide_m7u), _null, C.ButtonTextTheme_0), t1, _null); if (J.$eq$(F.ValueStreamExtensions_get_value(t4), C.LoadingState_3)) t1 = _cross; else t1 = J.$eq$(F.ValueStreamExtensions_get_value(t4), C.LoadingState_2) ? _check : _btn; return M.Container$(_null, T.Center$(t1, _null, _null), C.Clip_0, _null, _null, _null, _null, t5, _null, _null, _null, _null, _null, _null); }, initState$0: function() { var t1, t2, t3, t4, t5, _this = this, _null = null; _this.super$State$initState(); _this._widget.toString; _this.__RoundedLoadingButtonState__buttonController = G.AnimationController$(_null, C.Duration_500000, 0, _null, 1, _null, _this); _this.__RoundedLoadingButtonState__checkButtonControler = G.AnimationController$(_null, P.Duration$(0, 0, 0, 1000, 0, 0), 0, _null, 1, _null, _this); _this._widget.toString; _this.__RoundedLoadingButtonState__borderController = G.AnimationController$(_null, P.Duration$(0, 0, 0, 250, 0, 0), 0, _null, 1, _null, _this); t1 = _this._widget.height; t2 = type$.Tween_double; t3 = t2._eval$1("_AnimatedEvaluation"); _this.__RoundedLoadingButtonState__bounceAnimation = new R._AnimatedEvaluation(S.CurvedAnimation$(C.C_ElasticOutCurve, _this.get$_checkButtonControler(), _null), new R.Tween(0, t1, t2), t3); _this.get$_bounceAnimation().addListener$1(0, new N.RoundedLoadingButtonState_initState_closure(_this)); t1 = _this._widget; t4 = t1.width; t1 = t1.height; t5 = _this.get$_rounded_loading_button$_buttonController(); _this._widget.toString; _this.__RoundedLoadingButtonState__squeezeAnimation = new R._AnimatedEvaluation(S.CurvedAnimation$(C.Cubic_QB2, t5, _null), new R.Tween(t4, t1, t2), t3); _this.get$_squeezeAnimation().addListener$1(0, new N.RoundedLoadingButtonState_initState_closure0(_this)); _this.get$_squeezeAnimation().addStatusListener$1(new N.RoundedLoadingButtonState_initState_closure1(_this)); t3 = _this._widget; t2 = K.BorderRadius$circular(t3.borderRadius); t3 = K.BorderRadius$circular(t3.height); _this.__RoundedLoadingButtonState__borderAnimation = new R._AnimatedEvaluation(_this.get$_borderController(), new G.BorderRadiusTween(t2, t3), type$.BorderRadiusTween._eval$1("_AnimatedEvaluation")); _this.get$_rounded_loading_button$_borderAnimation().addListener$1(0, new N.RoundedLoadingButtonState_initState_closure2(_this)); t3 = _this._widget.controller; t3.__RoundedLoadingButtonController__startListener = _this.get$_rounded_loading_button$_start(_this); t3.__RoundedLoadingButtonController__resetListener = _this.get$_rounded_loading_button$_reset(); }, dispose$0: function(_) { var _this = this; _this.get$_rounded_loading_button$_buttonController().dispose$0(0); _this.get$_checkButtonControler().dispose$0(0); _this.get$_borderController().dispose$0(0); _this._rounded_loading_button$_state.close$0(0); _this.super$_RoundedLoadingButtonState_State_TickerProviderStateMixin$dispose(0); }, _btnPressed$0: function() { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$self = this; var $async$_btnPressed$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$self._widget.toString; $async$self._rounded_loading_button$_start$0(0); // implicit return return P._asyncReturn(null, $async$completer); } }); return P._asyncStartSync($async$_btnPressed$0, $async$completer); }, _rounded_loading_button$_start$0: function(_) { this._rounded_loading_button$_state.add$1(0, C.LoadingState_1); this.get$_borderController().forward$0(0); this.get$_rounded_loading_button$_buttonController().forward$0(0); }, _rounded_loading_button$_reset$0: function() { var t1, _this = this; _this._rounded_loading_button$_state.add$1(0, C.LoadingState_0); _this.get$_rounded_loading_button$_buttonController().reverse$0(0); _this.get$_borderController().reverse$0(0); t1 = _this.get$_checkButtonControler(); t1.set$value(0, t1.lowerBound); } }; N.RoundedLoadingButtonState_build_closure.prototype = { call$2: function(context, snapshot) { var t1 = P.Duration$(0, 0, 0, 200, 0, 0); return G.AnimatedSwitcher$(J.$eq$(snapshot.data, C.LoadingState_1) ? this._loader : this.$this._widget.child, t1, G.animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure()); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2647 }; N.RoundedLoadingButtonState_initState_closure.prototype = { call$0: function() { this.$this.setState$1(new N.RoundedLoadingButtonState_initState__closure1()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.RoundedLoadingButtonState_initState__closure1.prototype = { call$0: function() { }, $signature: 0 }; N.RoundedLoadingButtonState_initState_closure0.prototype = { call$0: function() { this.$this.setState$1(new N.RoundedLoadingButtonState_initState__closure0()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.RoundedLoadingButtonState_initState__closure0.prototype = { call$0: function() { }, $signature: 0 }; N.RoundedLoadingButtonState_initState_closure1.prototype = { call$1: function(state) { var t1; if (state === C.AnimationStatus_3) { this.$this._widget.toString; t1 = true; } else t1 = false; if (t1) this.$this._widget.onPressed.call$0(); }, $signature: 35 }; N.RoundedLoadingButtonState_initState_closure2.prototype = { call$0: function() { this.$this.setState$1(new N.RoundedLoadingButtonState_initState__closure()); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; N.RoundedLoadingButtonState_initState__closure.prototype = { call$0: function() { }, $signature: 0 }; N.RoundedLoadingButtonController.prototype = { get$_startListener: function() { var t1 = this.__RoundedLoadingButtonController__startListener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_startListener")) : t1; }, get$_resetListener: function() { var t1 = this.__RoundedLoadingButtonController__resetListener; return t1 === $ ? H.throwExpression(H.LateError$fieldNI("_resetListener")) : t1; }, _startListener$0: function() { return this.get$_startListener().call$0(); }, _resetListener$0: function() { return this.get$_resetListener().call$0(); } }; N._RoundedLoadingButtonState_State_TickerProviderStateMixin.prototype = { dispose$0: function(_) { this.super$State$dispose(0); }, didChangeDependencies$0: function() { var muted, t1 = this._framework$_element; t1.toString; muted = !U.TickerMode_of(t1); t1 = this.TickerProviderStateMixin__tickers; if (t1 != null) for (t1 = P._LinkedHashSetIterator$(t1, t1._collection$_modifications, H._instanceType(t1)._precomputed1); t1.moveNext$0();) t1._collection$_current.set$muted(0, muted); this.super$State$didChangeDependencies(); } }; D.DeferStream.prototype = { get$isBroadcast: function() { return true; }, listen$4$cancelOnError$onDone$onError: function(_, onData, cancelOnError, onDone, onError) { var e, s, exception, t1, t2, t3, t4, _null = null, stream = null; try { stream = this._factory.call$0(); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); t1 = e; t2 = s; H.checkNotNullable(t1, "error", type$.Object); t3 = this.$ti._eval$1("_AsyncStreamController<1>"); t4 = new P._AsyncStreamController(_null, _null, _null, _null, t3); t4._addError$2(t1, t2 == null ? P.AsyncError_defaultStackTrace(t1) : t2); t4._closeUnchecked$0(); return new P._ControllerStream(t4, t3._eval$1("_ControllerStream<1>")).listen$4$cancelOnError$onDone$onError(0, onData, cancelOnError, onDone, onError); } return J.listen$4$cancelOnError$onDone$onError$z(stream, onData, cancelOnError, onDone, onError); }, listen$3$onDone$onError: function($receiver, onData, onDone, onError) { return this.listen$4$cancelOnError$onDone$onError($receiver, onData, null, onDone, onError); } }; U.BehaviorSubject.prototype = { get$stream: function(_) { return this; }, createForwardingSubject$1$3$onCancel$onListen$sync: function(onCancel, onListen, sync, $R) { return U.BehaviorSubject_BehaviorSubject(onCancel, onListen, true, $R); }, map$1$1: function(_, convert, $S) { return this._forwardBehaviorSubject$1$1(new U.BehaviorSubject_map_closure(this, convert, $S), $S); }, map$1: function($receiver, convert) { return this.map$1$1($receiver, convert, type$.dynamic); }, _forwardBehaviorSubject$1$1: function(transformerStream, $R) { var t1 = {}; t1._subject0 = $; t1._subscription0 = $; return new U.BehaviorSubject__forwardBehaviorSubject__subject_set(t1, $R).call$1(this.createForwardingSubject$1$3$onCancel$onListen$sync(new U.BehaviorSubject__forwardBehaviorSubject_closure(new U.BehaviorSubject__forwardBehaviorSubject__subscription_get(t1, $R)), new U.BehaviorSubject__forwardBehaviorSubject_closure0(this, new U.BehaviorSubject__forwardBehaviorSubject__subscription_set(t1, $R), transformerStream, new U.BehaviorSubject__forwardBehaviorSubject__subject_get(t1, $R), $R), true, $R)); } }; U.BehaviorSubject__deferStream_closure.prototype = { call$0: function() { var _this = this, t1 = _this.wrapper, t2 = t1.latestErrorAndStackTrace; if (t2 != null) { t1 = _this.controller; return new O.StartWithErrorStreamTransformer(t2.error, t2.stackTrace, _this.T._eval$1("StartWithErrorStreamTransformer<0>")).bind$1(new P._BroadcastStream(t1, H._instanceType(t1)._eval$1("_BroadcastStream<1>"))); } t1 = t1.latestValue; if (t1 != null) { t2 = _this.controller; return new G.StartWithStreamTransformer(t1.value, _this.T._eval$1("StartWithStreamTransformer<0>")).bind$1(new P._BroadcastStream(t2, H._instanceType(t2)._eval$1("_BroadcastStream<1>"))); } t1 = _this.controller; return new P._BroadcastStream(t1, H._instanceType(t1)._eval$1("_BroadcastStream<1>")); }, $signature: function() { return this.T._eval$1("Stream<0>()"); } }; U.BehaviorSubject_map_closure.prototype = { call$1: function(s) { return new P._MapStream(this.convert, s, s.$ti._eval$1("@")._bind$1(this.S)._eval$1("_MapStream<1,2>")); }, $signature: function() { return this.$this.$ti._bind$1(this.S)._eval$1("Stream<1>(Stream<2>)"); } }; U.BehaviorSubject__forwardBehaviorSubject__subject_set.prototype = { call$1: function(t1) { return this._box_0._subject0 = t1; }, $signature: function() { return this.R._eval$1("@(BehaviorSubject<0>)"); } }; U.BehaviorSubject__forwardBehaviorSubject__subscription_set.prototype = { call$1: function(t1) { return this._box_0._subscription0 = t1; }, $signature: function() { return this.R._eval$1("@(StreamSubscription<0>)"); } }; U.BehaviorSubject__forwardBehaviorSubject__subject_get.prototype = { call$0: function() { var t1 = this._box_0._subject0; return t1 === $ ? H.throwExpression(H.LateError$localNI("subject")) : t1; }, $signature: function() { return this.R._eval$1("BehaviorSubject<0>()"); } }; U.BehaviorSubject__forwardBehaviorSubject__subscription_get.prototype = { call$0: function() { var t1 = this._box_0._subscription0; return t1 === $ ? H.throwExpression(H.LateError$localNI("subscription")) : t1; }, $signature: function() { return this.R._eval$1("StreamSubscription<0>()"); } }; U.BehaviorSubject__forwardBehaviorSubject_closure0.prototype = { call$0: function() { var _this = this, t1 = _this.transformerStream.call$1(_this.$this._behavior_subject$_stream), t2 = _this._subject_get, t3 = J.get$add$ax(t2.call$0()), t4 = t2.call$0().get$addError(); return _this._subscription_set.call$1(J.listen$3$onDone$onError$z(t1, t3, J.get$close$x(t2.call$0()), t4)); }, $signature: function() { return this.R._eval$1("StreamSubscription<0>()"); } }; U.BehaviorSubject__forwardBehaviorSubject_closure.prototype = { call$0: function() { return J.cancel$0$z(this._subscription_get.call$0()); }, $signature: 93 }; U._Wrapper.prototype = {}; F.Subject.prototype = { get$sink: function() { return new F._StreamSinkWrapper(this, this.$ti._eval$1("_StreamSinkWrapper<1>")); }, get$stream: function(_) { return this; }, get$isClosed: function(_) { return (this._subject$_controller._state & 4) !== 0; }, get$isPaused: function() { return false; }, addError$2: function(error, stackTrace) { if (this._isAddingStreamItems) throw H.wrapException(P.StateError$("You cannot add an error while items are being added from addStream")); this._subject$_addError$2(error, stackTrace); }, addError$1: function(error) { return this.addError$2(error, null); }, _subject$_addError$2: function(error, stackTrace) { var t1 = this._wrapper; t1.latestValue = null; t1.latestErrorAndStackTrace = new G.ErrorAndStackTrace(error, stackTrace); this._subject$_controller.addError$2(error, stackTrace); }, addStream$2$cancelOnError: function(_, source, cancelOnError) { var t2, complete, _this = this, t1 = {}; if (_this._isAddingStreamItems) throw H.wrapException(P.StateError$(string$.You_ca)); t2 = new P._Future($.Zone__current, type$._Future_void); t1.isOnDoneCalled = false; complete = new F.Subject_addStream_closure(t1, _this, new P._AsyncCompleter(t2, type$._AsyncCompleter_void)); _this._isAddingStreamItems = true; source.listen$4$cancelOnError$onDone$onError(0, new F.Subject_addStream_closure0(_this), cancelOnError, new F.Subject_addStream_closure1(complete), new F.Subject_addStream_closure2(_this, cancelOnError, complete)); return t2; }, add$1: function(_, $event) { var t1; if (this._isAddingStreamItems) throw H.wrapException(P.StateError$(string$.You_ca)); t1 = this._wrapper; t1.latestValue = new Q.ValueWrapper($event, t1.$ti._eval$1("ValueWrapper<1>")); t1.latestErrorAndStackTrace = null; this._subject$_controller.add$1(0, $event); }, close$0: function(_) { if (this._isAddingStreamItems) throw H.wrapException(P.StateError$("You cannot close the subject while items are being added from addStream")); return this._subject$_controller.close$0(0); }, $isEventSink: 1, $isStreamController: 1 }; F.Subject_addStream_closure.prototype = { call$0: function() { var t1 = this._box_0; if (!t1.isOnDoneCalled) { t1.isOnDoneCalled = true; this.$this._isAddingStreamItems = false; this.completer.complete$0(0); } }, $signature: 1 }; F.Subject_addStream_closure0.prototype = { call$1: function($event) { var t1 = this.$this, t2 = t1._wrapper; t2.latestValue = new Q.ValueWrapper($event, t2.$ti._eval$1("ValueWrapper<1>")); t2.latestErrorAndStackTrace = null; t1._subject$_controller.add$1(0, $event); }, $signature: function() { return this.$this.$ti._eval$1("~(1)"); } }; F.Subject_addStream_closure2.prototype = { call$2: function(e, s) { this.$this._subject$_addError$2(e, s); if (this.cancelOnError === true) this.complete.call$0(); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2648 }; F.Subject_addStream_closure1.prototype = { call$0: function() { this.complete.call$0(); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; F._StreamSinkWrapper.prototype = { add$1: function(_, data) { this._subject$_target.add$1(0, data); }, addError$2: function(error, stackTrace) { this._subject$_target.addError$2(error, stackTrace); }, close$0: function(_) { return this._subject$_target.close$0(0); }, $isEventSink: 1 }; G._StartWithStreamSink.prototype = { add$2: function(_, sink, data) { this._safeAddFirstEvent$1(sink); sink.add$1(0, data); }, addError$3: function(sink, e, st) { this._safeAddFirstEvent$1(sink); sink.addError$2(e, st); }, close$1: function(_, sink) { this._safeAddFirstEvent$1(sink); sink.close$0(0); }, onCancel$1: function(_, sink) { }, onListen$1: function(sink) { P.scheduleMicrotask(new G._StartWithStreamSink_onListen_closure(this, sink)); }, onPause$1: function(_, sink) { }, onResume$1: function(_, sink) { }, _safeAddFirstEvent$1: function(sink) { if (!this._isFirstEventAdded) { sink.add$1(0, this._startValue); this._isFirstEventAdded = true; } } }; G._StartWithStreamSink_onListen_closure.prototype = { call$0: function() { return this.$this._safeAddFirstEvent$1(this.sink); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; G.StartWithStreamTransformer.prototype = { bind$1: function(stream) { var t1 = this.$ti, t2 = t1._precomputed1; return F.forwardStream(stream, new G._StartWithStreamSink(this.startValue, t1._eval$1("_StartWithStreamSink<1>")), t2, t2); } }; O._StartWithErrorStreamSink.prototype = { add$2: function(_, sink, data) { this._start_with_error$_safeAddFirstEvent$1(sink); sink.add$1(0, data); }, addError$3: function(sink, e, st) { this._start_with_error$_safeAddFirstEvent$1(sink); sink.addError$2(e, st); }, close$1: function(_, sink) { this._start_with_error$_safeAddFirstEvent$1(sink); sink.close$0(0); }, onCancel$1: function(_, sink) { }, onListen$1: function(sink) { P.scheduleMicrotask(new O._StartWithErrorStreamSink_onListen_closure(this, sink)); }, onPause$1: function(_, sink) { }, onResume$1: function(_, sink) { }, _start_with_error$_safeAddFirstEvent$1: function(sink) { var _this = this; if (_this._start_with_error$_isFirstEventAdded) return; sink.addError$2(_this._e, _this._st); _this._start_with_error$_isFirstEventAdded = true; } }; O._StartWithErrorStreamSink_onListen_closure.prototype = { call$0: function() { return this.$this._start_with_error$_safeAddFirstEvent$1(this.sink); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; O.StartWithErrorStreamTransformer.prototype = { bind$1: function(stream) { var t1 = this.$ti, t2 = t1._precomputed1; return F.forwardStream(stream, new O._StartWithErrorStreamSink(this.error, this.stackTrace, t1._eval$1("_StartWithErrorStreamSink<1>")), t2, t2); } }; G.ErrorAndStackTrace.prototype = { toString$0: function(_) { return "ErrorAndStackTrace{error: " + H.S(this.error) + ", stacktrace: " + H.S(this.stackTrace) + "}"; }, $eq: function(_, other) { var t1, _this = this; if (other == null) return false; if (_this !== other) t1 = other instanceof G.ErrorAndStackTrace && H.getRuntimeType(_this) === H.getRuntimeType(other) && J.$eq$(_this.error, other.error) && _this.stackTrace == other.stackTrace; else t1 = true; return t1; }, get$hashCode: function(_) { return (J.get$hashCode$(this.error) ^ J.get$hashCode$(this.stackTrace)) >>> 0; } }; F.forwardStream__controller_set.prototype = { call$1: function(t1) { return this._box_0._controller0 = t1; }, $signature: function() { return this.R._eval$1("@(StreamController<0>)"); } }; F.forwardStream__subscription_set.prototype = { call$1: function(t1) { return this._box_0._subscription0 = t1; }, $signature: function() { return this.T._eval$1("@(StreamSubscription<0>)"); } }; F.forwardStream__controller_get.prototype = { call$0: function() { var t1 = this._box_0._controller0; return t1 === $ ? H.throwExpression(H.LateError$localNI("controller")) : t1; }, $signature: function() { return this.R._eval$1("StreamController<0>()"); } }; F.forwardStream__subscription_get.prototype = { call$0: function() { var t1 = this._box_0._subscription0; return t1 === $ ? H.throwExpression(H.LateError$localNI("subscription")) : t1; }, $signature: function() { return this.T._eval$1("StreamSubscription<0>()"); } }; F.forwardStream_runCatching.prototype = { call$1: function(block) { var e, s, exception; try { block.call$0(); } catch (exception) { e = H.unwrapException(exception); s = H.getTraceFromException(exception); this.connectedSink.addError$3(this._controller_get.call$0(), e, s); } }, $signature: 247 }; F.forwardStream_closure.prototype = { call$0: function() { var _this = this, t1 = _this.runCatching, t2 = _this.connectedSink, t3 = _this._controller_get; t1.call$1(new F.forwardStream__closure1(t2, t3)); _this._subscription_set.call$1(_this.stream.listen$3$onDone$onError(0, new F.forwardStream__closure2(t1, t2, t3, _this.T), new F.forwardStream__closure3(t1, t2, t3), new F.forwardStream__closure4(t1, t2, t3))); }, $signature: 1 }; F.forwardStream__closure1.prototype = { call$0: function() { return this.connectedSink.onListen$1(this._controller_get.call$0()); }, $signature: 0 }; F.forwardStream__closure2.prototype = { call$1: function(data) { return this.runCatching.call$1(new F.forwardStream___closure1(this.connectedSink, this._controller_get, data)); }, $signature: function() { return this.T._eval$1("~(0)"); } }; F.forwardStream___closure1.prototype = { call$0: function() { return this.connectedSink.add$2(0, this._controller_get.call$0(), this.data); }, $signature: 0 }; F.forwardStream__closure4.prototype = { call$2: function(e, st) { return this.runCatching.call$1(new F.forwardStream___closure(this.connectedSink, this._controller_get, e, st)); }, "call*": "call$2", $requiredArgCount: 2, $signature: 479 }; F.forwardStream___closure.prototype = { call$0: function() { var _this = this; return _this.connectedSink.addError$3(_this._controller_get.call$0(), _this.e, _this.st); }, $signature: 0 }; F.forwardStream__closure3.prototype = { call$0: function() { return this.runCatching.call$1(new F.forwardStream___closure0(this.connectedSink, this._controller_get)); }, "call*": "call$0", $requiredArgCount: 0, $signature: 0 }; F.forwardStream___closure0.prototype = { call$0: function() { return this.connectedSink.close$1(0, this._controller_get.call$0()); }, $signature: 0 }; F.forwardStream_closure0.prototype = { call$0: function() { var t1, onCancelSelfFuture = J.cancel$0$z(this._subscription_get.call$0()); this.connectedSink.onCancel$1(0, this._controller_get.call$0()); t1 = H.setRuntimeTypeInfo([], type$.JSArray_Future_dynamic); if (type$.Future_dynamic._is(onCancelSelfFuture)) t1.push(onCancelSelfFuture); return P.Future_wait(t1, type$.dynamic); }, "call*": "call$0", $requiredArgCount: 0, $signature: 2650 }; F.forwardStream_closure1.prototype = { call$0: function() { var _this = this; J.pause$0$z(_this._subscription_get.call$0()); _this.runCatching.call$1(new F.forwardStream__closure0(_this.connectedSink, _this._controller_get)); }, $signature: 1 }; F.forwardStream__closure0.prototype = { call$0: function() { return this.connectedSink.onPause$1(0, this._controller_get.call$0()); }, $signature: 0 }; F.forwardStream_closure2.prototype = { call$0: function() { var _this = this; J.resume$0$z(_this._subscription_get.call$0()); _this.runCatching.call$1(new F.forwardStream__closure(_this.connectedSink, _this._controller_get)); }, $signature: 1 }; F.forwardStream__closure.prototype = { call$0: function() { return this.connectedSink.onResume$1(0, this._controller_get.call$0()); }, $signature: 0 }; Q.ValueWrapper.prototype = { toString$0: function(_) { return "ValueWrapper{value: " + H.S(this.value) + "}"; }, $eq: function(_, other) { var t1; if (other == null) return false; if (this !== other) t1 = other instanceof Q.ValueWrapper && H.getRuntimeType(this) === H.getRuntimeType(other) && J.$eq$(this.value, other.value); else t1 = true; return t1; }, get$hashCode: function(_) { return J.get$hashCode$(this.value); }, get$value: function(receiver) { return this.value; } }; O.HubAdapter.prototype = { addBreadcrumb$2$hint: function(crumb, hint) { return $.$get$Sentry__hub().addBreadcrumb$2$hint(crumb, hint); } }; U.NoOpHub.prototype = { addBreadcrumb$2$hint: function(crumb, hint) { } }; B.Breadcrumb.prototype = { toJson$0: function() { var t2, _this = this, json = P.LinkedHashMap_LinkedHashMap$_literal(["timestamp", B.formatDateAsIso8601WithMillisPrecision(_this.timestamp)], type$.String, type$.dynamic), t1 = _this.message; if (t1 != null) json.$indexSet(0, "message", t1); json.$indexSet(0, "category", _this.category); t1 = _this.data; t2 = t1 == null ? null : t1.get$isNotEmpty(t1); if (t2 === true) json.$indexSet(0, "data", t1); json.$indexSet(0, "level", _this.level.name); json.$indexSet(0, "type", _this.type); return json; } }; K.SentryLevel.prototype = { get$name: function(receiver) { return this.name; } }; Z.SentryFlutterWeb.prototype = { handleMethodCall$1: function($call) { return this.handleMethodCall$body$SentryFlutterWeb($call); }, handleMethodCall$body$SentryFlutterWeb: function($call) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.dynamic), $async$returnValue; var $async$handleMethodCall$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$returnValue = ""; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$handleMethodCall$1, $async$completer); } }; M.SentryNavigatorObserver.prototype = { didPush$2: function(route, previousRoute) { var t1; this.super$RouteObserver$didPush(route, previousRoute); t1 = previousRoute == null ? null : previousRoute._navigator$_settings; this._addBreadcrumb$3$from$to$type(t1, route._navigator$_settings, "didPush"); }, didReplace$2$newRoute$oldRoute: function(newRoute, oldRoute) { var t1; this.super$NavigatorObserver$didReplace(newRoute, oldRoute); t1 = oldRoute == null ? null : oldRoute._navigator$_settings; this._addBreadcrumb$3$from$to$type(t1, newRoute == null ? null : newRoute._navigator$_settings, "didReplace"); }, didPop$2: function(route, previousRoute) { var t1; this.super$RouteObserver$didPop(route, previousRoute); t1 = route._navigator$_settings; this._addBreadcrumb$3$from$to$type(t1, previousRoute == null ? null : previousRoute._navigator$_settings, "didPop"); }, _addBreadcrumb$3$from$to$type: function(from, to, type) { var t3, _null = null, _s10_ = "navigation", t1 = from == null, fromArgs = M.RouteObserverBreadcrumb__formatArgs(t1 ? _null : from.$arguments), t2 = to == null, toArgs = M.RouteObserverBreadcrumb__formatArgs(t2 ? _null : to.$arguments); t1 = t1 ? _null : from.name; t2 = t2 ? _null : to.name; t3 = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); t3.$indexSet(0, "state", type); if (t1 != null) t3.$indexSet(0, "from", t1); if (fromArgs != null) t3.$indexSet(0, "from_arguments", fromArgs); if (t2 != null) t3.$indexSet(0, "to", t2); if (toArgs != null) t3.$indexSet(0, "to_arguments", toArgs); t1 = new P.DateTime(Date.now(), false).toUtc$0(); this.hub.toString; $.$get$Sentry__hub().addBreadcrumb$2$hint(new M.RouteObserverBreadcrumb(_null, _s10_, t3, C.SentryLevel_info, _s10_, t1), _null); } }; M.RouteObserverBreadcrumb.prototype = {}; M.RouteObserverBreadcrumb__formatArgs_closure.prototype = { call$2: function(key, value) { return new P.MapEntry(key, J.toString$0$(value), type$.MapEntry_String_String); }, $signature: 2651 }; V.SharedPreferences.prototype = { containsKey$1: function(_, key) { return J.containsKey$1$x(this._preferenceCache, key); }, remove$1: function(_, key) { var prefixedKey = "flutter." + key; J.remove$1$ax(this._preferenceCache, key); return V.SharedPreferences__store().remove$1(0, prefixedKey); }, _setValue$3: function(valueType, key, value) { var prefixedKey; if (value == null) H.throwExpression(P.ArgumentError$notNull("value")); prefixedKey = "flutter." + key; J.$indexSet$ax(this._preferenceCache, key, value); return V.SharedPreferences__store().setValue$3(valueType, prefixedKey, value); } }; F.MethodChannelSharedPreferencesStore.prototype = { remove$1: function(_, key) { return this.remove$body$MethodChannelSharedPreferencesStore(_, key); }, remove$body$MethodChannelSharedPreferencesStore: function(_, key) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$remove$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.MethodChannel_YQ9._invokeMethod$1$3$arguments$missingOk("remove", P.LinkedHashMap_LinkedHashMap$_literal(["key", key], type$.String, type$.dynamic), false, type$.bool), $async$remove$1); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$remove$1, $async$completer); }, setValue$3: function(valueType, key, value) { return this.setValue$body$MethodChannelSharedPreferencesStore(valueType, key, value); }, setValue$body$MethodChannelSharedPreferencesStore: function(valueType, key, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$setValue$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start $async$goto = 3; return P._asyncAwait(C.MethodChannel_YQ9._invokeMethod$1$3$arguments$missingOk("set" + valueType, P.LinkedHashMap_LinkedHashMap$_literal(["key", key, "value", value], type$.String, type$.dynamic), false, type$.bool), $async$setValue$3); case 3: // returning from await. t1 = $async$result; t1.toString; $async$returnValue = t1; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$setValue$3, $async$completer); }, getAll$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, t1, t2, preferences; var $async$getAll$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start t1 = type$.String; t2 = type$.Object; $async$goto = 3; return P._asyncAwait(C.MethodChannel_YQ9.invokeMapMethod$2$1("getAll", t1, t2), $async$getAll$0); case 3: // returning from await. preferences = $async$result; if (preferences == null) { $async$returnValue = P.LinkedHashMap_LinkedHashMap$_empty(t1, t2); // goto return $async$goto = 1; break; } $async$returnValue = preferences; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getAll$0, $async$completer); } }; E.SharedPreferencesStorePlatform.prototype = {}; V.SharedPreferencesPlugin.prototype = { getAll$0: function(_) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.Map_String_Object), $async$returnValue, $async$self = this, t1, t2, t3, t4, allData; var $async$getAll$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start allData = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Object); for (t1 = $async$self.get$_storedFlutterKeys(), t2 = J.get$iterator$ax(t1._iterable), t1 = new H.WhereIterator(t2, t1._f, t1.$ti._eval$1("WhereIterator<1>")); t1.moveNext$0();) { t3 = t2.get$current(t2); t4 = window.localStorage.getItem(t3); t4.toString; allData.$indexSet(0, t3, $async$self._decodeValue$1(t4)); } $async$returnValue = allData; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$getAll$0, $async$completer); }, remove$1: function(_, key) { return this.remove$body$SharedPreferencesPlugin(_, key); }, remove$body$SharedPreferencesPlugin: function(_, key) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue, t1; var $async$remove$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.startsWith$1(key, "flutter.")) H.throwExpression(P.FormatException$(string$.Shared, key, 0)); t1 = window.localStorage; (t1 && C.Storage_methods).remove$1(t1, key); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$remove$1, $async$completer); }, setValue$3: function(valueType, key, value) { return this.setValue$body$SharedPreferencesPlugin(valueType, key, value); }, setValue$body$SharedPreferencesPlugin: function(valueType, key, value) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter(type$.bool), $async$returnValue; var $async$setValue$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return P._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start if (!C.JSString_methods.startsWith$1(key, "flutter.")) H.throwExpression(P.FormatException$(string$.Shared, key, 0)); window.localStorage.setItem(key, C.C_JsonCodec.encode$1(value)); $async$returnValue = true; // goto return $async$goto = 1; break; case 1: // return return P._asyncReturn($async$returnValue, $async$completer); } }); return P._asyncStartSync($async$setValue$3, $async$completer); }, get$_storedFlutterKeys: function() { var t1 = window.localStorage; t1 = (t1 && C.Storage_methods).get$keys(t1); return new H.WhereIterable(t1, new V.SharedPreferencesPlugin__storedFlutterKeys_closure(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); }, _decodeValue$1: function(encodedValue) { var decodedValue = C.C_JsonCodec.decode$1(0, encodedValue); if (type$.List_dynamic._is(decodedValue)) return J.cast$1$0$ax(decodedValue, type$.String); return decodedValue; } }; V.SharedPreferencesPlugin__storedFlutterKeys_closure.prototype = { call$1: function(key) { return J.startsWith$1$s(key, "flutter."); }, $signature: 73 }; Y.SourceFile.prototype = { get$length: function(_) { return this._decodedChars.length; }, get$lines: function(_) { return this._lineStarts.length; }, SourceFile$decoded$2$url: function(decodedChars, url) { var t1, t2, t3, i, c, j; for (t1 = this._decodedChars, t2 = t1.length, t3 = this._lineStarts, i = 0; i < t2; ++i) { c = t1[i]; if (c === 13) { j = i + 1; if (j >= t2 || t1[j] !== 10) c = 10; } if (c === 10) t3.push(i + 1); } }, getLine$1: function(offset) { var t1, _this = this; if (offset < 0) throw H.wrapException(P.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > _this._decodedChars.length) throw H.wrapException(P.RangeError$("Offset " + offset + string$.x20must_ + _this.get$length(_this) + ".")); t1 = _this._lineStarts; if (offset < C.JSArray_methods.get$first(t1)) return -1; if (offset >= C.JSArray_methods.get$last(t1)) return t1.length - 1; if (_this._isNearCachedLine$1(offset)) { t1 = _this._cachedLine; t1.toString; return t1; } return _this._cachedLine = _this._file$_binarySearch$1(offset) - 1; }, _isNearCachedLine$1: function(offset) { var t2, t3, t1 = this._cachedLine; if (t1 == null) return false; t2 = this._lineStarts; if (offset < t2[t1]) return false; t3 = t2.length; if (t1 >= t3 - 1 || offset < t2[t1 + 1]) return true; if (t1 >= t3 - 2 || offset < t2[t1 + 2]) { this._cachedLine = t1 + 1; return true; } return false; }, _file$_binarySearch$1: function(offset) { var min, half, t1 = this._lineStarts, max = t1.length - 1; for (min = 0; min < max;) { half = min + C.JSInt_methods._tdivFast$1(max - min, 2); if (t1[half] > offset) max = half; else min = half + 1; } return max; }, getColumn$1: function(offset) { var line, lineStart, _this = this; if (offset < 0) throw H.wrapException(P.RangeError$("Offset may not be negative, was " + offset + ".")); else if (offset > _this._decodedChars.length) throw H.wrapException(P.RangeError$("Offset " + offset + " must be not be greater than the number of characters in the file, " + _this.get$length(_this) + ".")); line = _this.getLine$1(offset); lineStart = _this._lineStarts[line]; if (lineStart > offset) throw H.wrapException(P.RangeError$("Line " + H.S(line) + " comes after offset " + offset + ".")); return offset - lineStart; }, getOffset$1: function(line) { var t1, t2, result, t3, _this = this; if (line < 0) throw H.wrapException(P.RangeError$("Line may not be negative, was " + H.S(line) + ".")); else { t1 = _this._lineStarts; t2 = t1.length; if (line >= t2) throw H.wrapException(P.RangeError$("Line " + H.S(line) + " must be less than the number of lines in the file, " + _this.get$lines(_this) + ".")); } result = t1[line]; if (result <= _this._decodedChars.length) { t3 = line + 1; t1 = t3 < t2 && result >= t1[t3]; } else t1 = true; if (t1) throw H.wrapException(P.RangeError$("Line " + H.S(line) + " doesn't have 0 columns.")); return result; } }; Y.FileLocation.prototype = { get$sourceUrl: function() { return this.file.url; }, get$line: function(_) { return this.file.getLine$1(this.offset); }, get$column: function() { return this.file.getColumn$1(this.offset); }, get$offset: function(receiver) { return this.offset; } }; Y._FileSpan.prototype = { get$sourceUrl: function() { return this.file.url; }, get$length: function(_) { return this._file$_end - this._file$_start; }, get$start: function(_) { return Y.FileLocation$_(this.file, this._file$_start); }, get$end: function(_) { return Y.FileLocation$_(this.file, this._file$_end); }, get$text: function(_) { return P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(this.file._decodedChars, this._file$_start, this._file$_end), 0, null); }, get$context: function(_) { var _this = this, t1 = _this.file, endOffset = _this._file$_end, endLine = t1.getLine$1(endOffset); if (t1.getColumn$1(endOffset) === 0 && endLine !== 0) { if (endOffset - _this._file$_start === 0) return endLine === t1._lineStarts.length - 1 ? "" : P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1._decodedChars, t1.getOffset$1(endLine), t1.getOffset$1(endLine + 1)), 0, null); } else endOffset = endLine === t1._lineStarts.length - 1 ? t1._decodedChars.length : t1.getOffset$1(endLine + 1); return P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1._decodedChars, t1.getOffset$1(t1.getLine$1(_this._file$_start)), endOffset), 0, null); }, compareTo$1: function(_, other) { var result; if (!(other instanceof Y._FileSpan)) return this.super$SourceSpanMixin$compareTo(0, other); result = C.JSInt_methods.compareTo$1(this._file$_start, other._file$_start); return result === 0 ? C.JSInt_methods.compareTo$1(this._file$_end, other._file$_end) : result; }, $eq: function(_, other) { var _this = this; if (other == null) return false; if (!type$.FileSpan._is(other)) return _this.super$SourceSpanMixin$$eq(0, other); return _this._file$_start === other._file$_start && _this._file$_end === other._file$_end && J.$eq$(_this.file.url, other.file.url); }, get$hashCode: function(_) { return Y.SourceSpanMixin.prototype.get$hashCode.call(this, this); }, $isFileSpan: 1, $isSourceSpanWithContext: 1, text$0: function($receiver) { return this.get$text(this).call$0(); } }; U.Highlighter.prototype = { highlight$0: function(_) { var highlightsByColumn, t2, t3, t4, i, line, lastLine, t5, t6, t7, t8, t9, t10, t11, t12, t13, index, primaryIdx, primary, _i, _this = this, t1 = _this._lines; _this._writeFileStart$1(C.JSArray_methods.get$first(t1).url); highlightsByColumn = P.List_List$filled(_this._maxMultilineSpans, null, false, type$.nullable__Highlight); for (t2 = _this._highlighter$_buffer, t3 = highlightsByColumn.length !== 0, t4 = _this._highlighter$_primaryColor, i = 0; i < t1.length; ++i) { line = t1[i]; if (i > 0) { lastLine = t1[i - 1]; t5 = lastLine.url; t6 = line.url; if (!J.$eq$(t5, t6)) { _this._writeSidebar$1$end("\u2575"); t2._contents += "\n"; _this._writeFileStart$1(t6); } else if (lastLine.number + 1 !== line.number) { _this._writeSidebar$1$text("..."); t2._contents += "\n"; } } for (t5 = line.highlights, t6 = H._arrayInstanceType(t5)._eval$1("ReversedListIterable<1>"), t7 = new H.ReversedListIterable(t5, t6), t6 = new H.ListIterator(t7, t7.get$length(t7), t6._eval$1("ListIterator")), t7 = line.number, t8 = line.text, t9 = J.getInterceptor$s(t8); t6.moveNext$0();) { t10 = t6.__internal$_current; t11 = t10.span; t12 = t11.get$start(t11); t12 = t12.get$line(t12); t13 = t11.get$end(t11); if (t12 != t13.get$line(t13)) { t12 = t11.get$start(t11); t11 = t12.get$line(t12) === t7 && _this._isOnlyWhitespace$1(t9.substring$2(t8, 0, t11.get$start(t11).get$column())); } else t11 = false; if (t11) { index = C.JSArray_methods.indexOf$1(highlightsByColumn, null); if (index < 0) H.throwExpression(P.ArgumentError$(H.S(highlightsByColumn) + " contains no null elements.")); highlightsByColumn[index] = t10; } } _this._writeSidebar$1$line(t7); t2._contents += " "; _this._writeMultilineHighlights$2(line, highlightsByColumn); if (t3) t2._contents += " "; primaryIdx = C.JSArray_methods.indexWhere$1(t5, new U.Highlighter_highlight_closure()); primary = primaryIdx === -1 ? null : t5[primaryIdx]; t6 = primary != null; if (t6) { t9 = primary.span; t10 = t9.get$start(t9); t10 = t10.get$line(t10) === t7 ? t9.get$start(t9).get$column() : 0; t11 = t9.get$end(t9); _this._writeHighlightedText$4$color(t8, t10, t11.get$line(t11) === t7 ? t9.get$end(t9).get$column() : t8.length, t4); } else _this._writeText$1(t8); t2._contents += "\n"; if (t6) _this._writeIndicator$3(line, primary, highlightsByColumn); for (t6 = t5.length, _i = 0; _i < t6; ++_i) { t5[_i].toString; continue; } } _this._writeSidebar$1$end("\u2575"); t1 = t2._contents; return t1.charCodeAt(0) == 0 ? t1 : t1; }, _writeFileStart$1: function(url) { var _this = this; if (!_this._multipleFiles || url == null) _this._writeSidebar$1$end("\u2577"); else { _this._writeSidebar$1$end("\u250c"); _this._colorize$2$color(new U.Highlighter__writeFileStart_closure(_this), "\x1b[34m"); _this._highlighter$_buffer._contents += " " + H.S($.$get$context().prettyUri$1(url)); } _this._highlighter$_buffer._contents += "\n"; }, _writeMultilineHighlights$3$current: function(line, highlightsByColumn, current) { var t1, currentColor, t2, t3, t4, foundCurrent, _i, highlight, t5, startLine, t6, endLine, _this = this, _box_0 = {}; _box_0.openedOnThisLine = false; _box_0.openedOnThisLineColor = null; t1 = current == null; if (t1) currentColor = null; else currentColor = _this._highlighter$_primaryColor; for (t2 = highlightsByColumn.length, t3 = _this._highlighter$_primaryColor, t1 = !t1, t4 = _this._highlighter$_buffer, foundCurrent = false, _i = 0; _i < t2; ++_i) { highlight = highlightsByColumn[_i]; t5 = highlight == null; if (t5) startLine = null; else { t6 = highlight.span; t6 = t6.get$start(t6); startLine = t6.get$line(t6); } if (t5) endLine = null; else { t6 = highlight.span; t6 = t6.get$end(t6); endLine = t6.get$line(t6); } if (t1 && highlight === current) { _this._colorize$2$color(new U.Highlighter__writeMultilineHighlights_closure(_this, startLine, line), currentColor); foundCurrent = true; } else if (foundCurrent) _this._colorize$2$color(new U.Highlighter__writeMultilineHighlights_closure0(_this, highlight), currentColor); else if (t5) if (_box_0.openedOnThisLine) _this._colorize$2$color(new U.Highlighter__writeMultilineHighlights_closure1(_this), _box_0.openedOnThisLineColor); else t4._contents += " "; else _this._colorize$2$color(new U.Highlighter__writeMultilineHighlights_closure2(_box_0, _this, current, startLine, line, highlight, endLine), t3); } }, _writeMultilineHighlights$2: function(line, highlightsByColumn) { return this._writeMultilineHighlights$3$current(line, highlightsByColumn, null); }, _writeHighlightedText$4$color: function(text, startColumn, endColumn, color) { var _this = this; _this._writeText$1(J.substring$2$s(text, 0, startColumn)); _this._colorize$2$color(new U.Highlighter__writeHighlightedText_closure(_this, text, startColumn, endColumn), color); _this._writeText$1(C.JSString_methods.substring$2(text, endColumn, text.length)); }, _writeIndicator$3: function(line, highlight, highlightsByColumn) { var t3, coversWholeLine, _this = this, color = _this._highlighter$_primaryColor, t1 = highlight.span, t2 = t1.get$start(t1); t2 = t2.get$line(t2); t3 = t1.get$end(t1); if (t2 == t3.get$line(t3)) { _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); if (highlightsByColumn.length !== 0) t1._contents += " "; _this._colorize$2$color(new U.Highlighter__writeIndicator_closure(_this, line, highlight), color); t1._contents += "\n"; } else { t2 = t1.get$start(t1); t3 = line.number; if (t2.get$line(t2) === t3) { if (C.JSArray_methods.contains$1(highlightsByColumn, highlight)) return; B.replaceFirstNull(highlightsByColumn, highlight); _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); _this._colorize$2$color(new U.Highlighter__writeIndicator_closure0(_this, line, highlight), color); t1._contents += "\n"; } else { t2 = t1.get$end(t1); if (t2.get$line(t2) === t3) { coversWholeLine = t1.get$end(t1).get$column() === line.text.length; if (coversWholeLine && true) { B.replaceWithNull(highlightsByColumn, highlight); return; } _this._writeSidebar$0(); t1 = _this._highlighter$_buffer; t1._contents += " "; _this._writeMultilineHighlights$3$current(line, highlightsByColumn, highlight); _this._colorize$2$color(new U.Highlighter__writeIndicator_closure1(_this, coversWholeLine, line, highlight), color); t1._contents += "\n"; B.replaceWithNull(highlightsByColumn, highlight); } } } }, _writeArrow$3$beginning: function(line, column, beginning) { var t1 = beginning ? 0 : 1, t2 = this._highlighter$_buffer; t1 = t2._contents += C.JSString_methods.$mul("\u2500", 1 + column + this._countTabs$1(J.substring$2$s(line.text, 0, column + t1)) * 3); t2._contents = t1 + "^"; }, _writeArrow$2: function(line, column) { return this._writeArrow$3$beginning(line, column, true); }, _writeText$1: function(text) { var t1, t2, t3; text.toString; t1 = new H.CodeUnits(text); t1 = new H.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t2 = this._highlighter$_buffer; for (; t1.moveNext$0();) { t3 = t1.__internal$_current; if (t3 === 9) t2._contents += C.JSString_methods.$mul(" ", 4); else t2._contents += H.Primitives_stringFromCharCode(t3); } }, _writeSidebar$3$end$line$text: function(end, line, text) { var t1 = {}; t1.text = text; if (line != null) t1.text = C.JSInt_methods.toString$0(line + 1); this._colorize$2$color(new U.Highlighter__writeSidebar_closure(t1, this, end), "\x1b[34m"); }, _writeSidebar$1$end: function(end) { return this._writeSidebar$3$end$line$text(end, null, null); }, _writeSidebar$1$text: function(text) { return this._writeSidebar$3$end$line$text(null, null, text); }, _writeSidebar$1$line: function(line) { return this._writeSidebar$3$end$line$text(null, line, null); }, _writeSidebar$0: function() { return this._writeSidebar$3$end$line$text(null, null, null); }, _countTabs$1: function(text) { var t1, count; for (t1 = new H.CodeUnits(text), t1 = new H.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")), count = 0; t1.moveNext$0();) if (t1.__internal$_current === 9) ++count; return count; }, _isOnlyWhitespace$1: function(text) { var t1, t2; for (t1 = new H.CodeUnits(text), t1 = new H.ListIterator(t1, t1.get$length(t1), type$.CodeUnits._eval$1("ListIterator")); t1.moveNext$0();) { t2 = t1.__internal$_current; if (t2 !== 32 && t2 !== 9) return false; } return true; }, _colorize$2$color: function(callback, color) { var t1 = this._highlighter$_primaryColor != null; if (t1 && color != null) this._highlighter$_buffer._contents += color; callback.call$0(); if (t1 && color != null) this._highlighter$_buffer._contents += "\x1b[0m"; } }; U.Highlighter_closure.prototype = { call$0: function() { return this.color; }, $signature: 2652 }; U.Highlighter$__closure.prototype = { call$1: function(line) { var t1 = line.highlights; t1 = new H.WhereIterable(t1, new U.Highlighter$___closure(), H._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); return t1.get$length(t1); }, $signature: 2653 }; U.Highlighter$___closure.prototype = { call$1: function(highlight) { var t1 = highlight.span, t2 = t1.get$start(t1); t2 = t2.get$line(t2); t1 = t1.get$end(t1); return t2 != t1.get$line(t1); }, $signature: 456 }; U.Highlighter$__closure0.prototype = { call$1: function(line) { return line.url; }, $signature: 2655 }; U.Highlighter__collateLines_closure.prototype = { call$1: function(highlight) { return highlight.span.get$sourceUrl(); }, $signature: 2656 }; U.Highlighter__collateLines_closure0.prototype = { call$2: function(highlight1, highlight2) { return highlight1.span.compareTo$1(0, highlight2.span); }, "call*": "call$2", $requiredArgCount: 2, $signature: 2657 }; U.Highlighter__collateLines_closure1.prototype = { call$1: function(highlightsForFile) { var t1, t2, t3, t4, context, t5, linesBeforeSpan, url, lineNumber, _i, line, activeHighlights, highlightIndex, oldHighlightLength, t6, lines = H.setRuntimeTypeInfo([], type$.JSArray__Line); for (t1 = J.getInterceptor$ax(highlightsForFile), t2 = t1.get$iterator(highlightsForFile), t3 = type$.JSArray__Highlight; t2.moveNext$0();) { t4 = t2.get$current(t2).span; context = t4.get$context(t4); t5 = B.findLineStart(context, t4.get$text(t4), t4.get$start(t4).get$column()); t5.toString; t5 = C.JSString_methods.allMatches$1("\n", C.JSString_methods.substring$2(context, 0, t5)); linesBeforeSpan = t5.get$length(t5); url = t4.get$sourceUrl(); t4 = t4.get$start(t4); lineNumber = t4.get$line(t4) - linesBeforeSpan; for (t4 = context.split("\n"), t5 = t4.length, _i = 0; _i < t5; ++_i) { line = t4[_i]; if (lines.length === 0 || lineNumber > C.JSArray_methods.get$last(lines).number) lines.push(new U._Line(line, lineNumber, url, H.setRuntimeTypeInfo([], t3))); ++lineNumber; } } activeHighlights = H.setRuntimeTypeInfo([], t3); for (t2 = lines.length, highlightIndex = 0, _i = 0; _i < lines.length; lines.length === t2 || (0, H.throwConcurrentModificationError)(lines), ++_i) { line = lines[_i]; if (!!activeHighlights.fixed$length) H.throwExpression(P.UnsupportedError$("removeWhere")); C.JSArray_methods._removeWhere$2(activeHighlights, new U.Highlighter__collateLines__closure(line), true); oldHighlightLength = activeHighlights.length; for (t3 = t1.skip$1(highlightsForFile, highlightIndex), t3 = t3.get$iterator(t3); t3.moveNext$0();) { t4 = t3.get$current(t3); t5 = t4.span; t6 = t5.get$start(t5); if (t6.get$line(t6) > line.number) break; if (!J.$eq$(t5.get$sourceUrl(), line.url)) break; activeHighlights.push(t4); } highlightIndex += activeHighlights.length - oldHighlightLength; C.JSArray_methods.addAll$1(line.highlights, activeHighlights); } return lines; }, $signature: 2658 }; U.Highlighter__collateLines__closure.prototype = { call$1: function(highlight) { var t1 = highlight.span, t2 = this.line; if (J.$eq$(t1.get$sourceUrl(), t2.url)) { t1 = t1.get$end(t1); t2 = t1.get$line(t1) < t2.number; t1 = t2; } else t1 = true; return t1; }, $signature: 456 }; U.Highlighter_highlight_closure.prototype = { call$1: function(highlight) { highlight.toString; return true; }, $signature: 456 }; U.Highlighter__writeFileStart_closure.prototype = { call$0: function() { this.$this._highlighter$_buffer._contents += C.JSString_methods.$mul("\u2500", 2) + ">"; return null; }, $signature: 0 }; U.Highlighter__writeMultilineHighlights_closure.prototype = { call$0: function() { var t1 = this.startLine === this.line.number ? "\u250c" : "\u2514"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; U.Highlighter__writeMultilineHighlights_closure0.prototype = { call$0: function() { var t1 = this.highlight == null ? "\u2500" : "\u253c"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; U.Highlighter__writeMultilineHighlights_closure1.prototype = { call$0: function() { this.$this._highlighter$_buffer._contents += "\u2500"; return null; }, $signature: 0 }; U.Highlighter__writeMultilineHighlights_closure2.prototype = { call$0: function() { var t2, t3, _this = this, t1 = _this._box_0, vertical = t1.openedOnThisLine ? "\u253c" : "\u2502"; if (_this.current != null) _this.$this._highlighter$_buffer._contents += vertical; else { t2 = _this.line; t3 = t2.number; if (_this.startLine === t3) { t2 = _this.$this; t2._colorize$2$color(new U.Highlighter__writeMultilineHighlights__closure(t1, t2), t1.openedOnThisLineColor); t1.openedOnThisLine = true; if (t1.openedOnThisLineColor == null) t1.openedOnThisLineColor = t2._highlighter$_primaryColor; } else { if (_this.endLine === t3) { t3 = _this.highlight.span; t2 = t3.get$end(t3).get$column() === t2.text.length; } else t2 = false; t3 = _this.$this; if (t2) t3._highlighter$_buffer._contents += "\u2514"; else t3._colorize$2$color(new U.Highlighter__writeMultilineHighlights__closure0(t3, vertical), t1.openedOnThisLineColor); } } }, $signature: 0 }; U.Highlighter__writeMultilineHighlights__closure.prototype = { call$0: function() { var t1 = this._box_0.openedOnThisLine ? "\u252c" : "\u250c"; this.$this._highlighter$_buffer._contents += t1; }, $signature: 0 }; U.Highlighter__writeMultilineHighlights__closure0.prototype = { call$0: function() { this.$this._highlighter$_buffer._contents += this.vertical; }, $signature: 0 }; U.Highlighter__writeHighlightedText_closure.prototype = { call$0: function() { var _this = this; return _this.$this._writeText$1(C.JSString_methods.substring$2(_this.text, _this.startColumn, _this.endColumn)); }, $signature: 0 }; U.Highlighter__writeIndicator_closure.prototype = { call$0: function() { var tabsBefore, tabsInside, t1 = this.$this, t2 = this.highlight.span, startColumn = t2.get$start(t2).get$column(), endColumn = t2.get$end(t2).get$column(); t2 = this.line.text; tabsBefore = t1._countTabs$1(J.substring$2$s(t2, 0, startColumn)); tabsInside = t1._countTabs$1(C.JSString_methods.substring$2(t2, startColumn, endColumn)); startColumn += tabsBefore * 3; t1 = t1._highlighter$_buffer; t1._contents += C.JSString_methods.$mul(" ", startColumn); t1._contents += C.JSString_methods.$mul("^", Math.max(endColumn + (tabsBefore + tabsInside) * 3 - startColumn, 1)); }, $signature: 0 }; U.Highlighter__writeIndicator_closure0.prototype = { call$0: function() { var t1 = this.highlight.span; return this.$this._writeArrow$2(this.line, t1.get$start(t1).get$column()); }, $signature: 0 }; U.Highlighter__writeIndicator_closure1.prototype = { call$0: function() { var t2, _this = this, t1 = _this.$this; if (_this.coversWholeLine) t1._highlighter$_buffer._contents += C.JSString_methods.$mul("\u2500", 3); else { t2 = _this.highlight.span; t1._writeArrow$3$beginning(_this.line, Math.max(t2.get$end(t2).get$column() - 1, 0), false); } }, $signature: 0 }; U.Highlighter__writeSidebar_closure.prototype = { call$0: function() { var t1 = this.$this, t2 = t1._highlighter$_buffer, t3 = this._box_0.text; if (t3 == null) t3 = ""; t1 = t2._contents += C.JSString_methods.padRight$1(t3, t1._paddingBeforeSidebar); t3 = this.end; t2._contents = t1 + (t3 == null ? "\u2502" : t3); }, $signature: 0 }; U._Highlight.prototype = { toString$0: function(_) { var t3, t1 = this.span, t2 = t1.get$start(t1); t2 = H.S(t2.get$line(t2)) + ":" + t1.get$start(t1).get$column() + "-"; t3 = t1.get$end(t1); t1 = "primary " + (t2 + H.S(t3.get$line(t3)) + ":" + t1.get$end(t1).get$column()); return t1.charCodeAt(0) == 0 ? t1 : t1; } }; U._Highlight_closure.prototype = { call$0: function() { var t2, t3, t4, t5, t1 = this.span; if (!(type$.SourceSpanWithContext._is(t1) && B.findLineStart(t1.get$context(t1), t1.get$text(t1), t1.get$start(t1).get$column()) != null)) { t2 = t1.get$start(t1); t2 = V.SourceLocation$(t2.get$offset(t2), 0, 0, t1.get$sourceUrl()); t3 = t1.get$end(t1); t3 = t3.get$offset(t3); t4 = t1.get$sourceUrl(); t5 = B.countCodeUnits(t1.get$text(t1), 10); t1 = X.SourceSpanWithContext$(t2, V.SourceLocation$(t3, U._Highlight__lastLineLength(t1.get$text(t1)), t5, t4), t1.get$text(t1), t1.get$text(t1)); } return U._Highlight__normalizeEndOfLine(U._Highlight__normalizeTrailingNewline(U._Highlight__normalizeNewlines(t1))); }, $signature: 2659 }; U._Line.prototype = { toString$0: function(_) { return "" + this.number + ': "' + H.S(this.text) + '" (' + C.JSArray_methods.join$1(this.highlights, ", ") + ")"; }, text$0: function($receiver) { return this.text.call$0(); } }; V.SourceLocation.prototype = { distance$1: function(other) { var t1 = this.sourceUrl; if (!J.$eq$(t1, other.get$sourceUrl())) throw H.wrapException(P.ArgumentError$('Source URLs "' + H.S(t1) + '" and "' + H.S(other.get$sourceUrl()) + "\" don't match.")); return Math.abs(this.offset - other.get$offset(other)); }, compareTo$1: function(_, other) { var t1 = this.sourceUrl; if (!J.$eq$(t1, other.get$sourceUrl())) throw H.wrapException(P.ArgumentError$('Source URLs "' + H.S(t1) + '" and "' + H.S(other.get$sourceUrl()) + "\" don't match.")); return this.offset - other.get$offset(other); }, $eq: function(_, other) { if (other == null) return false; return type$.SourceLocation._is(other) && J.$eq$(this.sourceUrl, other.get$sourceUrl()) && this.offset === other.get$offset(other); }, get$hashCode: function(_) { var t1 = this.sourceUrl; t1 = t1 == null ? null : t1.get$hashCode(t1); if (t1 == null) t1 = 0; return t1 + this.offset; }, toString$0: function(_) { var _this = this, t1 = "<" + H.getRuntimeType(_this).toString$0(0) + ": " + _this.offset + " ", source = _this.sourceUrl; return t1 + (H.S(source == null ? "unknown source" : source) + ":" + (_this.line + 1) + ":" + (_this.column + 1)) + ">"; }, $isComparable: 1, get$sourceUrl: function() { return this.sourceUrl; }, get$offset: function(receiver) { return this.offset; }, get$line: function(receiver) { return this.line; }, get$column: function() { return this.column; } }; D.SourceLocationMixin.prototype = { distance$1: function(other) { if (!J.$eq$(this.file.url, other.get$sourceUrl())) throw H.wrapException(P.ArgumentError$('Source URLs "' + H.S(this.get$sourceUrl()) + '" and "' + H.S(other.get$sourceUrl()) + "\" don't match.")); return Math.abs(this.offset - other.get$offset(other)); }, compareTo$1: function(_, other) { if (!J.$eq$(this.file.url, other.get$sourceUrl())) throw H.wrapException(P.ArgumentError$('Source URLs "' + H.S(this.get$sourceUrl()) + '" and "' + H.S(other.get$sourceUrl()) + "\" don't match.")); return this.offset - other.get$offset(other); }, $eq: function(_, other) { if (other == null) return false; return type$.SourceLocation._is(other) && J.$eq$(this.file.url, other.get$sourceUrl()) && this.offset === other.get$offset(other); }, get$hashCode: function(_) { var t1 = this.file.url; t1 = t1 == null ? null : t1.get$hashCode(t1); if (t1 == null) t1 = 0; return t1 + this.offset; }, toString$0: function(_) { var t1 = this.offset, t2 = "<" + H.getRuntimeType(this).toString$0(0) + ": " + t1 + " ", t3 = this.file, source = t3.url; return t2 + (H.S(source == null ? "unknown source" : source) + ":" + (t3.getLine$1(t1) + 1) + ":" + (t3.getColumn$1(t1) + 1)) + ">"; }, $isComparable: 1, $isSourceLocation: 1 }; V.SourceSpanBase.prototype = { SourceSpanBase$3: function(start, end, text) { var t3, t1 = this.end, t2 = this.start; if (!J.$eq$(t1.get$sourceUrl(), t2.get$sourceUrl())) throw H.wrapException(P.ArgumentError$('Source URLs "' + H.S(t2.get$sourceUrl()) + '" and "' + H.S(t1.get$sourceUrl()) + "\" don't match.")); else if (t1.get$offset(t1) < t2.get$offset(t2)) throw H.wrapException(P.ArgumentError$("End " + t1.toString$0(0) + " must come after start " + t2.toString$0(0) + ".")); else { t3 = this.text; if (t3.length !== t2.distance$1(t1)) throw H.wrapException(P.ArgumentError$('Text "' + t3 + '" must be ' + t2.distance$1(t1) + " characters long.")); } }, text$0: function($receiver) { return this.text.call$0(); }, get$start: function(receiver) { return this.start; }, get$end: function(receiver) { return this.end; }, get$text: function(receiver) { return this.text; } }; G.SourceSpanException.prototype = { get$message: function(_) { return this._span_exception$_message; }, toString$0: function(_) { var t3, highlight, t1 = this._span, t2 = t1.get$start(t1); t2 = "line " + (t2.get$line(t2) + 1) + ", column " + (t1.get$start(t1).get$column() + 1); if (t1.get$sourceUrl() != null) { t3 = t1.get$sourceUrl(); t3 = t2 + (" of " + H.S($.$get$context().prettyUri$1(t3))); t2 = t3; } t2 += ": " + this._span_exception$_message; highlight = t1.highlight$1$color(0, null); t1 = highlight.length !== 0 ? t2 + "\n" + highlight : t2; return "Error on " + (t1.charCodeAt(0) == 0 ? t1 : t1); }, $isException: 1 }; G.SourceSpanFormatException.prototype = { get$offset: function(_) { var t1 = this._span; t1 = Y.FileLocation$_(t1.file, t1._file$_start); return t1.offset; }, $isFormatException: 1, get$source: function(receiver) { return this.source; } }; Y.SourceSpanMixin.prototype = { get$sourceUrl: function() { return this.get$start(this).get$sourceUrl(); }, get$length: function(_) { var t2, _this = this, t1 = _this.get$end(_this); t1 = t1.get$offset(t1); t2 = _this.get$start(_this); return t1 - t2.get$offset(t2); }, compareTo$1: function(_, other) { var _this = this, result = _this.get$start(_this).compareTo$1(0, other.get$start(other)); return result === 0 ? _this.get$end(_this).compareTo$1(0, other.get$end(other)) : result; }, highlight$1$color: function(_, color) { var _this = this; if (!type$.SourceSpanWithContext._is(_this) && _this.get$length(_this) === 0) return ""; return U.Highlighter$(_this, color).highlight$0(0); }, $eq: function(_, other) { var _this = this; if (other == null) return false; return type$.SourceSpan._is(other) && _this.get$start(_this).$eq(0, other.get$start(other)) && _this.get$end(_this).$eq(0, other.get$end(other)); }, get$hashCode: function(_) { var t2, _this = this, t1 = _this.get$start(_this); t1 = t1.get$hashCode(t1); t2 = _this.get$end(_this); return t1 + 31 * t2.get$hashCode(t2); }, toString$0: function(_) { var _this = this; return "<" + H.getRuntimeType(_this).toString$0(0) + ": from " + _this.get$start(_this).toString$0(0) + " to " + _this.get$end(_this).toString$0(0) + ' "' + _this.get$text(_this) + '">'; }, $isComparable: 1, $isSourceSpan: 1 }; X.SourceSpanWithContext.prototype = { get$context: function(_) { return this._span_with_context$_context; } }; E.StringScannerException.prototype = { get$source: function(_) { return H._asStringS(this.source); } }; X.StringScanner.prototype = { get$lastMatch: function() { var _this = this; if (_this._string_scanner$_position !== _this._lastMatchPosition) _this._lastMatch = null; return _this._lastMatch; }, scan$1: function(pattern) { var success, _this = this, t1 = _this._lastMatch = J.matchAsPrefix$2$s(pattern, _this.string, _this._string_scanner$_position); _this._lastMatchPosition = _this._string_scanner$_position; success = t1 != null; if (success) _this._lastMatchPosition = _this._string_scanner$_position = t1.get$end(t1); return success; }, expect$2$name: function(pattern, $name) { var t1; if (this.scan$1(pattern)) return; if ($name == null) if (type$.RegExp._is(pattern)) $name = "/" + pattern.pattern + "/"; else { t1 = J.toString$0$(pattern); t1 = H.stringReplaceAllUnchecked(t1, "\\", "\\\\"); $name = '"' + H.stringReplaceAllUnchecked(t1, '"', '\\"') + '"'; } this._fail$1($name); H.ReachabilityError$(string$.x60null_t); }, expect$1: function(pattern) { return this.expect$2$name(pattern, null); }, expectDone$0: function() { if (this._string_scanner$_position === this.string.length) return; this._fail$1("no more input"); H.ReachabilityError$(string$.x60null_t); }, error$3$length$position: function(_, message, $length, position) { var t2, t3, t4, t5, sourceFile, end, t1 = this.string; if (position < 0) H.throwExpression(P.RangeError$("position must be greater than or equal to 0.")); else if (position > t1.length) H.throwExpression(P.RangeError$("position must be less than or equal to the string length.")); t2 = position + $length > t1.length; if (t2) H.throwExpression(P.RangeError$("position plus length must not go beyond the end of the string.")); t2 = this.sourceUrl; t3 = new H.CodeUnits(t1); t4 = H.setRuntimeTypeInfo([0], type$.JSArray_int); t5 = new Uint32Array(H._ensureNativeList(t3.toList$0(t3))); sourceFile = new Y.SourceFile(t2, t4, t5); sourceFile.SourceFile$decoded$2$url(t3, t2); end = position + $length; if (end > t5.length) H.throwExpression(P.RangeError$("End " + end + string$.x20must_ + sourceFile.get$length(sourceFile) + ".")); else if (position < 0) H.throwExpression(P.RangeError$("Start may not be negative, was " + position + ".")); throw H.wrapException(new E.StringScannerException(t1, message, new Y._FileSpan(sourceFile, position, end))); }, _fail$1: function($name) { this.error$3$length$position(0, "expected " + $name + ".", 0, this._string_scanner$_position); H.ReachabilityError$(string$.x60null_t); } }; S.BasicLock.prototype = { synchronized$1$2$timeout: function(func, timeout, $T) { return this.synchronized$body$BasicLock(func, timeout, $T, $T); }, synchronized$1$1: function(func, $T) { return this.synchronized$1$2$timeout(func, null, $T); }, synchronized$body$BasicLock: function(func, timeout, $T, $async$type) { var $async$goto = 0, $async$completer = P._makeAsyncAwaitCompleter($async$type), $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, result, _complete, t1, prev, completer; var $async$synchronized$1$2$timeout = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) { $async$currentError = $async$result; $async$goto = $async$handler; } while (true) switch ($async$goto) { case 0: // Function start prev = $async$self.last; completer = new P._SyncCompleter(new P._Future($.Zone__current, type$._Future_dynamic), type$._SyncCompleter_dynamic); $async$self.last = completer.future; $async$handler = 3; $async$goto = prev != null ? 6 : 7; break; case 6: // then $async$goto = 8; return P._asyncAwait(prev, $async$synchronized$1$2$timeout); case 8: // returning from await. case 7: // join result = func.call$0(); $async$goto = type$.Future_dynamic._is(result) ? 9 : 11; break; case 9: // then $async$goto = 12; return P._asyncAwait(result, $async$synchronized$1$2$timeout); case 12: // returning from await. t1 = $async$result; $async$returnValue = t1; $async$next = [1]; // goto finally $async$goto = 4; break; // goto join $async$goto = 10; break; case 11: // else $async$returnValue = result; $async$next = [1]; // goto finally $async$goto = 4; break; case 10: // join $async$next.push(5); // goto finally $async$goto = 4; break; case 3: // uncaught $async$next = [2]; case 4: // finally $async$handler = 2; _complete = new S.BasicLock_synchronized__complete($async$self, completer); _complete.call$0(); // goto the next finally handler $async$goto = $async$next.pop(); break; case 5: // after finally case 1: // return return P._asyncReturn($async$returnValue, $async$completer); case 2: // rethrow return P._asyncRethrow($async$currentError, $async$completer); } }); return P._asyncStartSync($async$synchronized$1$2$timeout, $async$completer); }, toString$0: function(_) { return "Lock[" + H.S(H.objectHashCode(this)) + "]"; } }; S.BasicLock_synchronized__complete.prototype = { call$0: function() { var t1 = this.$this, t2 = this.completer; if (t1.last === t2.future) t1.last = null; t2.complete$0(0); }, $signature: 0 }; X.EnMessages.prototype = { prefixAgo$0: function() { return ""; }, suffixAgo$0: function() { return "ago"; }, lessThanOneMinute$1: function(seconds) { return "a moment"; }, aboutAMinute$1: function(minutes) { return "a minute"; }, minutes$1: function(minutes) { return "" + minutes + " minutes"; }, aboutAnHour$1: function(minutes) { return "about an hour"; }, hours$1: function(hours) { return "" + hours + " hours"; }, aDay$1: function(hours) { return "a day"; }, days$1: function(days) { return "" + days + " days"; }, aboutAMonth$1: function(days) { return "about a month"; }, months$1: function(months) { return "" + months + " months"; }, aboutAYear$1: function(year) { return "about a year"; }, years$1: function(years) { return "" + years + " years"; }, wordSeparator$0: function() { return " "; }, $isLookupMessages: 1 }; X.EnShortMessages.prototype = { prefixAgo$0: function() { return ""; }, suffixAgo$0: function() { return ""; }, lessThanOneMinute$1: function(seconds) { return "now"; }, aboutAMinute$1: function(minutes) { return "1m"; }, minutes$1: function(minutes) { return "" + minutes + "m"; }, aboutAnHour$1: function(minutes) { return "~1h"; }, hours$1: function(hours) { return "" + hours + "h"; }, aDay$1: function(hours) { return "~1d"; }, days$1: function(days) { return "" + days + "d"; }, aboutAMonth$1: function(days) { return "~1mo"; }, months$1: function(months) { return "" + months + "mo"; }, aboutAYear$1: function(year) { return "~1y"; }, years$1: function(years) { return "" + years + "y"; }, wordSeparator$0: function() { return " "; }, $isLookupMessages: 1 }; O.EsMessages.prototype = { prefixAgo$0: function() { return "hace"; }, suffixAgo$0: function() { return ""; }, lessThanOneMinute$1: function(seconds) { return "un momento"; }, aboutAMinute$1: function(minutes) { return "un minuto"; }, minutes$1: function(minutes) { return "" + minutes + " minutos"; }, aboutAnHour$1: function(minutes) { return "una hora"; }, hours$1: function(hours) { return "" + hours + " horas"; }, aDay$1: function(hours) { return "un d\xeda"; }, days$1: function(days) { return "" + days + " d\xedas"; }, aboutAMonth$1: function(days) { return "un mes"; }, months$1: function(months) { return "" + months + " meses"; }, aboutAYear$1: function(year) { return "un a\xf1o"; }, years$1: function(years) { return "" + years + " a\xf1os"; }, wordSeparator$0: function() { return " "; }, $isLookupMessages: 1 }; O.EsShortMessages.prototype = { prefixAgo$0: function() { return ""; }, suffixAgo$0: function() { return ""; }, lessThanOneMinute$1: function(seconds) { return "ahora"; }, aboutAMinute$1: function(minutes) { return "1 min"; }, minutes$1: function(minutes) { return "" + minutes + " min"; }, aboutAnHour$1: function(minutes) { return "~1 hr"; }, hours$1: function(hours) { return "" + hours + " hr"; }, aDay$1: function(hours) { return "~1 d\xeda"; }, days$1: function(days) { return "" + days + " d\xedas"; }, aboutAMonth$1: function(days) { return "~1 mes"; }, months$1: function(months) { return "" + months + " meses"; }, aboutAYear$1: function(year) { return "~1 a\xf1o"; }, years$1: function(years) { return "" + years + " a\xf1os"; }, wordSeparator$0: function() { return " "; }, $isLookupMessages: 1 }; E.format_closure.prototype = { call$1: function(str) { return str.length !== 0; }, $signature: 73 }; E.TypedDataBuffer.prototype = { get$length: function(_) { return this._typed_buffer$_length; }, $index: function(_, index) { if (index >= this._typed_buffer$_length) throw H.wrapException(P.IndexError$(index, this, null, null, null)); return this._typed_buffer$_buffer[index]; }, $indexSet: function(_, index, value) { if (index >= this._typed_buffer$_length) throw H.wrapException(P.IndexError$(index, this, null, null, null)); this._typed_buffer$_buffer[index] = value; }, set$length: function(_, newLength) { var t2, i, newBuffer, _this = this, t1 = _this._typed_buffer$_length; if (newLength < t1) for (t2 = _this._typed_buffer$_buffer, i = newLength; i < t1; ++i) t2[i] = 0; else { t1 = _this._typed_buffer$_buffer.length; if (newLength > t1) { if (t1 === 0) newBuffer = new Uint8Array(newLength); else newBuffer = _this._createBiggerBuffer$1(newLength); C.NativeUint8List_methods.setRange$3(newBuffer, 0, _this._typed_buffer$_length, _this._typed_buffer$_buffer); _this._typed_buffer$_buffer = newBuffer; } } _this._typed_buffer$_length = newLength; }, _typed_buffer$_add$1: function(_, value) { var _this = this, t1 = _this._typed_buffer$_length; if (t1 === _this._typed_buffer$_buffer.length) _this._grow$1(t1); _this._typed_buffer$_buffer[_this._typed_buffer$_length++] = value; }, add$1: function(_, value) { var _this = this, t1 = _this._typed_buffer$_length; if (t1 === _this._typed_buffer$_buffer.length) _this._grow$1(t1); _this._typed_buffer$_buffer[_this._typed_buffer$_length++] = value; }, addAll$3: function(_, values, start, end) { P.RangeError_checkNotNegative(start, "start"); if (end != null && start > end) throw H.wrapException(P.RangeError$range(end, start, null, "end", null)); this._addAll$3(values, start, end); }, addAll$1: function($receiver, values) { return this.addAll$3($receiver, values, 0, null); }, _addAll$3: function(values, start, end) { var t1, i, value; if (type$.List_dynamic._is(values)) end = end == null ? J.get$length$asx(values) : end; if (end != null) { this._insertKnownLength$4(this._typed_buffer$_length, values, start, end); return; } for (t1 = J.get$iterator$ax(values), i = 0; t1.moveNext$0();) { value = t1.get$current(t1); if (i >= start) this._typed_buffer$_add$1(0, value); ++i; } if (i < start) throw H.wrapException(P.StateError$("Too few elements")); }, _insertKnownLength$4: function(index, values, start, end) { var t1, valuesLength, newLength, t2, _this = this; if (type$.List_dynamic._is(values)) { t1 = J.getInterceptor$asx(values); if (start > t1.get$length(values) || end > t1.get$length(values)) throw H.wrapException(P.StateError$("Too few elements")); } valuesLength = end - start; newLength = _this._typed_buffer$_length + valuesLength; _this._ensureCapacity$1(newLength); t1 = _this._typed_buffer$_buffer; t2 = index + valuesLength; C.NativeUint8List_methods.setRange$4(t1, t2, _this._typed_buffer$_length + valuesLength, t1, index); C.NativeUint8List_methods.setRange$4(_this._typed_buffer$_buffer, index, t2, values, start); _this._typed_buffer$_length = newLength; }, insert$2: function(_, index, element) { var t1, t2, newBuffer, _this = this; if (index < 0 || index > _this._typed_buffer$_length) throw H.wrapException(P.RangeError$range(index, 0, _this._typed_buffer$_length, null, null)); t1 = _this._typed_buffer$_length; t2 = _this._typed_buffer$_buffer; if (t1 < t2.length) { C.NativeUint8List_methods.setRange$4(t2, index + 1, t1 + 1, t2, index); _this._typed_buffer$_buffer[index] = element; ++_this._typed_buffer$_length; return; } newBuffer = _this._createBiggerBuffer$1(null); C.NativeUint8List_methods.setRange$3(newBuffer, 0, index, _this._typed_buffer$_buffer); C.NativeUint8List_methods.setRange$4(newBuffer, index + 1, _this._typed_buffer$_length + 1, _this._typed_buffer$_buffer, index); newBuffer[index] = element; ++_this._typed_buffer$_length; _this._typed_buffer$_buffer = newBuffer; }, _ensureCapacity$1: function(requiredCapacity) { var newBuffer, _this = this; if (requiredCapacity <= _this._typed_buffer$_buffer.length) return; newBuffer = _this._createBiggerBuffer$1(requiredCapacity); C.NativeUint8List_methods.setRange$3(newBuffer, 0, _this._typed_buffer$_length, _this._typed_buffer$_buffer); _this._typed_buffer$_buffer = newBuffer; }, _createBiggerBuffer$1: function(requiredCapacity) { var newLength = this._typed_buffer$_buffer.length * 2; if (requiredCapacity != null && newLength < requiredCapacity) newLength = requiredCapacity; else if (newLength < 8) newLength = 8; if (!H._isInt(newLength)) H.throwExpression(P.ArgumentError$("Invalid length " + H.S(newLength))); return new Uint8Array(newLength); }, _grow$1: function($length) { var t1 = this._createBiggerBuffer$1(null); C.NativeUint8List_methods.setRange$3(t1, 0, $length, this._typed_buffer$_buffer); this._typed_buffer$_buffer = t1; }, setRange$4: function(_, start, end, source, skipCount) { var t1 = this._typed_buffer$_length; if (end > t1) throw H.wrapException(P.RangeError$range(end, 0, t1, null, null)); t1 = this._typed_buffer$_buffer; if (H._instanceType(this)._eval$1("TypedDataBuffer")._is(source)) C.NativeUint8List_methods.setRange$4(t1, start, end, source._typed_buffer$_buffer, skipCount); else C.NativeUint8List_methods.setRange$4(t1, start, end, source, skipCount); }, setRange$3: function($receiver, start, end, source) { return this.setRange$4($receiver, start, end, source, 0); } }; E._IntBuffer0.prototype = {}; E.Uint8Buffer.prototype = {}; F.MethodChannelUrlLauncher.prototype = { canLaunch$1: function(url) { var t1 = type$.bool; return C.MethodChannel_EYo._invokeMethod$1$3$arguments$missingOk("canLaunch", P.LinkedHashMap_LinkedHashMap$_literal(["url", url], type$.String, type$.Object), false, t1).then$1$1(0, new F.MethodChannelUrlLauncher_canLaunch_closure(), t1); }, launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName: function(url, enableDomStorage, enableJavaScript, headers, universalLinksOnly, useSafariVC, useWebView, webOnlyWindowName) { var t1 = type$.bool; return C.MethodChannel_EYo._invokeMethod$1$3$arguments$missingOk("launch", P.LinkedHashMap_LinkedHashMap$_literal(["url", url, "useSafariVC", useSafariVC, "useWebView", false, "enableJavaScript", false, "enableDomStorage", false, "universalLinksOnly", false, "headers", headers], type$.String, type$.Object), false, t1).then$1$1(0, new F.MethodChannelUrlLauncher_launch_closure(), t1); } }; F.MethodChannelUrlLauncher_canLaunch_closure.prototype = { call$1: function(value) { return value === true; }, $signature: 569 }; F.MethodChannelUrlLauncher_launch_closure.prototype = { call$1: function(value) { return value === true; }, $signature: 569 }; D.UrlLauncherPlatform.prototype = {}; Y.UrlLauncherPlugin.prototype = { canLaunch$1: function(url) { var t1 = $.$get$UrlLauncherPlugin__supportedSchemes(), t2 = P.Uri_tryParse(url); return P.Future_Future$value(t1.contains$1(0, t2 == null ? null : t2.get$scheme()), type$.bool); }, launch$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName: function(url, enableDomStorage, enableJavaScript, headers, universalLinksOnly, useSafariVC, useWebView, webOnlyWindowName) { var t1, target; if (this._isSafari) { t1 = P.Uri_tryParse(url); t1 = t1 == null ? null : t1.get$scheme(); t1 = J.containsKey$1$x(C.Set_4e8j2._collection$_map, t1); } else t1 = false; target = t1 ? "_top" : ""; return P.Future_Future$value(C.Window_methods.open$2(this._window, url, target) != null, type$.bool); } }; K.Uuid.prototype = { v1$0: function() { var seedBytes, nodeId, t2, clockSeq, mSecs, nSecs, tl, tmh, node, n, _s9_ = "hasInitV1", _s9_0 = "seedBytes", _s4_ = "node", _s8_ = "clockSeq", _s5_ = "mSecs", _s5_0 = "nSecs", buf = new Uint8Array(16), options = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic), t1 = $.Uuid__state.$index(0, _s9_); t1.toString; if (!H._asBoolS(t1)) { options.$index(0, "v1rngPositionalArgs"); options.$index(0, "v1rngNamedArgs"); options.$index(0, "v1rng"); seedBytes = T.UuidUtil_mathRNG(-1); if ($.Uuid__state.$index(0, _s9_0) != null) $.Uuid__state.$index(0, _s9_0); else $.Uuid__state.$indexSet(0, _s9_0, seedBytes); nodeId = H.setRuntimeTypeInfo([seedBytes[0] | 1, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]], type$.JSArray_int); if ($.Uuid__state.$index(0, _s4_) != null) $.Uuid__state.$index(0, _s4_); else $.Uuid__state.$indexSet(0, _s4_, nodeId); t1 = seedBytes[6]; t2 = seedBytes[7]; if ($.Uuid__state.$index(0, _s8_) == null) $.Uuid__state.$indexSet(0, _s8_, (t1 << 8 | t2) & 262143); $.Uuid__state.$indexSet(0, _s5_, 0); $.Uuid__state.$indexSet(0, _s5_0, 0); $.Uuid__state.$indexSet(0, _s9_, true); } options.$index(0, _s8_); clockSeq = H._asIntS($.Uuid__state.$index(0, _s8_)); options.$index(0, _s5_); mSecs = Date.now(); options.$index(0, _s5_0); t1 = $.Uuid__state.$index(0, _s5_0); t1.toString; nSecs = H._asIntS(t1) + 1; t1 = mSecs - $.Uuid__state.$index(0, _s5_) + (nSecs - $.Uuid__state.$index(0, _s5_0)) / 10000 < 0; if (t1) { options.$index(0, _s8_); t2 = true; } else t2 = false; if (t2) clockSeq = clockSeq + 1 & 16383; if (t1 || mSecs > $.Uuid__state.$index(0, _s5_)) { options.$index(0, _s5_0); t1 = true; } else t1 = false; if (t1) nSecs = 0; if (nSecs >= 10000) throw H.wrapException(P.Exception_Exception("uuid.v1(): Can't create more than 10M uuids/sec")); $.Uuid__state.$indexSet(0, _s5_, mSecs); $.Uuid__state.$indexSet(0, _s5_0, nSecs); $.Uuid__state.$indexSet(0, _s8_, clockSeq); mSecs += 122192928e5; tl = C.JSInt_methods.$mod((mSecs & 268435455) * 10000 + nSecs, 4294967296); buf[0] = C.JSInt_methods._shrOtherPositive$1(tl, 24) & 255; buf[1] = C.JSInt_methods._shrOtherPositive$1(tl, 16) & 255; buf[2] = C.JSInt_methods._shrOtherPositive$1(tl, 8) & 255; buf[3] = tl & 255; tmh = C.JSNumber_methods.floor$0(mSecs / 4294967296 * 10000) & 268435455; buf[4] = tmh >>> 8 & 255; buf[5] = tmh & 255; buf[6] = tmh >>> 24 & 15 | 16; buf[7] = tmh >>> 16 & 255; buf[8] = clockSeq >>> 8 & 63 | 128; buf[9] = clockSeq & 255; options.$index(0, _s4_); node = $.Uuid__state.$index(0, _s4_); for (t1 = J.getInterceptor$asx(node), n = 0; n < 6; ++n) buf[10 + n] = t1.$index(node, n); return K.Uuid_unparse(buf); } }; Y.BoxValueConstraints.prototype = { $eq: function(_, other) { var _this = this; if (other == null) return false; if (_this === other) return true; if (!_this.$ti._is(other)) return false; return _this.value === other.value && _this.minWidth == other.minWidth && _this.maxWidth == other.maxWidth && _this.minHeight == other.minHeight && _this.maxHeight == other.maxHeight; }, get$hashCode: function(_) { var _this = this; return P.hashValues(_this.minWidth, _this.maxWidth, _this.minHeight, _this.maxHeight, _this.value, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd, C.C__HashEnd); }, get$value: function(receiver) { return this.value; } }; Y.ValueLayoutBuilder.prototype = { get$builder: function() { return this.builder; }, createRenderObject$1: function(context) { var t1 = new Y._RenderValueLayoutBuilder(null, true, null, null, this.$ti._eval$1("_RenderValueLayoutBuilder<1>")); t1.get$isRepaintBoundary(); t1.get$alwaysNeedsCompositing(); t1.__RenderObject__needsCompositing = false; return t1; } }; Y._RenderValueLayoutBuilder.prototype = { computeMinIntrinsicWidth$1: function(height) { return 0; }, computeMaxIntrinsicWidth$1: function(height) { return 0; }, computeMinIntrinsicHeight$1: function(width) { return 0; }, computeMaxIntrinsicHeight$1: function(width) { return 0; }, performLayout$0: function() { var t1, _this = this, constraints = type$.BoxConstraints._as(K.RenderObject.prototype.get$constraints.call(_this)); _this.rebuildIfNecessary$0(); t1 = _this.RenderObjectWithChildMixin__child; if (t1 != null) { t1.layout$2$parentUsesSize(0, constraints, true); t1 = _this.RenderObjectWithChildMixin__child._box$_size; t1.toString; _this._box$_size = constraints.constrain$1(t1); } else _this._box$_size = new P.Size(C.JSInt_methods.clamp$2(1 / 0, constraints.minWidth, constraints.maxWidth), C.JSInt_methods.clamp$2(1 / 0, constraints.minHeight, constraints.maxHeight)); }, hitTestChildren$2$position: function(result, position) { var t1 = this.RenderObjectWithChildMixin__child; t1 = t1 == null ? null : t1.hitTest$2$position(result, position); return t1 === true; }, paint$2: function(context, offset) { var t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) context.paintChild$2(t1, offset); } }; Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1: function(owner) { var t1; this.super$RenderObject$attach(owner); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.attach$1(owner); }, detach$0: function(_) { var t1; this.super$AbstractNode$detach(0); t1 = this.RenderObjectWithChildMixin__child; if (t1 != null) t1.detach$0(0); } }; Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder.prototype = {}; A.hashObjects_closure0.prototype = { call$2: function(h, i) { var hash = h + J.get$hashCode$(i) & 536870911; hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, $signature: 2661 }; E.Matrix3.prototype = { setFrom$1: function(arg) { var argStorage = arg._m3storage, t1 = this._m3storage; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, toString$0: function(_) { return "[0] " + this.getRow$1(0).toString$0(0) + "\n[1] " + this.getRow$1(1).toString$0(0) + "\n[2] " + this.getRow$1(2).toString$0(0) + "\n"; }, $index: function(_, i) { return this._m3storage[i]; }, $indexSet: function(_, i, v) { this._m3storage[i] = v; }, $eq: function(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof E.Matrix3) { t1 = this._m3storage; t2 = t1[0]; t3 = other._m3storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8]; } else t1 = false; return t1; }, get$hashCode: function(_) { return A.hashObjects0(this._m3storage); }, getRow$1: function(row) { var t1 = new Float64Array(3), t2 = this._m3storage; t1[0] = t2[row]; t1[1] = t2[3 + row]; t1[2] = t2[6 + row]; return new E.Vector3(t1); }, $mul: function(_, arg) { var t1, t2; if (typeof arg == "number") { t1 = new Float64Array(9); t2 = new E.Matrix3(t1); t2.setFrom$1(this); t1[0] = t1[0] * arg; t1[1] = t1[1] * arg; t1[2] = t1[2] * arg; t1[3] = t1[3] * arg; t1[4] = t1[4] * arg; t1[5] = t1[5] * arg; t1[6] = t1[6] * arg; t1[7] = t1[7] * arg; t1[8] = t1[8] * arg; return t2; } throw H.wrapException(P.ArgumentError$(arg)); }, $add: function(_, arg) { var t1 = new E.Matrix3(new Float64Array(9)); t1.setFrom$1(this); t1.add$1(0, arg); return t1; }, $sub: function(_, arg) { var oStorage, t1 = new Float64Array(9), t2 = new E.Matrix3(t1); t2.setFrom$1(this); oStorage = arg._m3storage; t1[0] = t1[0] - oStorage[0]; t1[1] = t1[1] - oStorage[1]; t1[2] = t1[2] - oStorage[2]; t1[3] = t1[3] - oStorage[3]; t1[4] = t1[4] - oStorage[4]; t1[5] = t1[5] - oStorage[5]; t1[6] = t1[6] - oStorage[6]; t1[7] = t1[7] - oStorage[7]; t1[8] = t1[8] - oStorage[8]; return t2; }, add$1: function(_, o) { var oStorage = o._m3storage, t1 = this._m3storage; t1[0] = t1[0] + oStorage[0]; t1[1] = t1[1] + oStorage[1]; t1[2] = t1[2] + oStorage[2]; t1[3] = t1[3] + oStorage[3]; t1[4] = t1[4] + oStorage[4]; t1[5] = t1[5] + oStorage[5]; t1[6] = t1[6] + oStorage[6]; t1[7] = t1[7] + oStorage[7]; t1[8] = t1[8] + oStorage[8]; } }; E.Matrix4.prototype = { setFrom$1: function(arg) { var argStorage = arg._m4storage, t1 = this._m4storage; t1[15] = argStorage[15]; t1[14] = argStorage[14]; t1[13] = argStorage[13]; t1[12] = argStorage[12]; t1[11] = argStorage[11]; t1[10] = argStorage[10]; t1[9] = argStorage[9]; t1[8] = argStorage[8]; t1[7] = argStorage[7]; t1[6] = argStorage[6]; t1[5] = argStorage[5]; t1[4] = argStorage[4]; t1[3] = argStorage[3]; t1[2] = argStorage[2]; t1[1] = argStorage[1]; t1[0] = argStorage[0]; }, toString$0: function(_) { var _this = this; return "[0] " + _this.getRow$1(0).toString$0(0) + "\n[1] " + _this.getRow$1(1).toString$0(0) + "\n[2] " + _this.getRow$1(2).toString$0(0) + "\n[3] " + _this.getRow$1(3).toString$0(0) + "\n"; }, $index: function(_, i) { return this._m4storage[i]; }, $indexSet: function(_, i, v) { this._m4storage[i] = v; }, $eq: function(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof E.Matrix4) { t1 = this._m4storage; t2 = t1[0]; t3 = other._m4storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3] && t1[4] === t3[4] && t1[5] === t3[5] && t1[6] === t3[6] && t1[7] === t3[7] && t1[8] === t3[8] && t1[9] === t3[9] && t1[10] === t3[10] && t1[11] === t3[11] && t1[12] === t3[12] && t1[13] === t3[13] && t1[14] === t3[14] && t1[15] === t3[15]; } else t1 = false; return t1; }, get$hashCode: function(_) { return A.hashObjects0(this._m4storage); }, setRow$2: function(row, arg) { var argStorage = arg._v4storage, t1 = this._m4storage; t1[row] = argStorage[0]; t1[4 + row] = argStorage[1]; t1[8 + row] = argStorage[2]; t1[12 + row] = argStorage[3]; }, getRow$1: function(row) { var t1 = new Float64Array(4), t2 = this._m4storage; t1[0] = t2[row]; t1[1] = t2[4 + row]; t1[2] = t2[8 + row]; t1[3] = t2[12 + row]; return new E.Vector4(t1); }, $mul: function(_, arg) { var t1; if (typeof arg == "number") { t1 = new E.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.scale$3(0, arg, null, null); return t1; } if (arg instanceof E.Matrix4) { t1 = new E.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.multiply$1(0, arg); return t1; } throw H.wrapException(P.ArgumentError$(arg)); }, $add: function(_, arg) { var t1 = new E.Matrix4(new Float64Array(16)); t1.setFrom$1(this); t1.add$1(0, arg); return t1; }, $sub: function(_, arg) { var oStorage, t1 = new Float64Array(16), t2 = new E.Matrix4(t1); t2.setFrom$1(this); oStorage = arg._m4storage; t1[0] = t1[0] - oStorage[0]; t1[1] = t1[1] - oStorage[1]; t1[2] = t1[2] - oStorage[2]; t1[3] = t1[3] - oStorage[3]; t1[4] = t1[4] - oStorage[4]; t1[5] = t1[5] - oStorage[5]; t1[6] = t1[6] - oStorage[6]; t1[7] = t1[7] - oStorage[7]; t1[8] = t1[8] - oStorage[8]; t1[9] = t1[9] - oStorage[9]; t1[10] = t1[10] - oStorage[10]; t1[11] = t1[11] - oStorage[11]; t1[12] = t1[12] - oStorage[12]; t1[13] = t1[13] - oStorage[13]; t1[14] = t1[14] - oStorage[14]; t1[15] = t1[15] - oStorage[15]; return t2; }, translate$2: function(_, x, y) { var tx, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17; if (typeof x != "number") throw H.wrapException(P.UnimplementedError$(null)); tx = x; t1 = this._m4storage; t2 = t1[0]; t3 = t1[4]; t4 = t1[8]; t5 = t1[12]; t6 = t1[1]; t7 = t1[5]; t8 = t1[9]; t9 = t1[13]; t10 = t1[2]; t11 = t1[6]; t12 = t1[10]; t13 = t1[14]; t14 = t1[3]; t15 = t1[7]; t16 = t1[11]; t17 = t1[15]; t1[12] = t2 * tx + t3 * y + t4 * 0 + t5; t1[13] = t6 * tx + t7 * y + t8 * 0 + t9; t1[14] = t10 * tx + t11 * y + t12 * 0 + t13; t1[15] = t14 * tx + t15 * y + t16 * 0 + t17; }, rotateZ$1: function(angle) { var cosAngle = Math.cos(H.checkNum(angle)), sinAngle = Math.sin(H.checkNum(angle)), t1 = this._m4storage, t2 = t1[0], t3 = t1[4], t4 = t1[1], t5 = t1[5], t6 = t1[2], t7 = t1[6], t8 = t1[3], t9 = t1[7], t10 = -sinAngle; t1[0] = t2 * cosAngle + t3 * sinAngle; t1[1] = t4 * cosAngle + t5 * sinAngle; t1[2] = t6 * cosAngle + t7 * sinAngle; t1[3] = t8 * cosAngle + t9 * sinAngle; t1[4] = t2 * t10 + t3 * cosAngle; t1[5] = t4 * t10 + t5 * cosAngle; t1[6] = t6 * t10 + t7 * cosAngle; t1[7] = t8 * t10 + t9 * cosAngle; }, scale$3: function(_, x, y, z) { var t1, sx, sy, sz; if (x instanceof E.Vector3) { t1 = x._v3storage; sx = t1[0]; sy = t1[1]; sz = t1[2]; } else { if (typeof x == "number") { sy = y == null ? x : y; sz = z == null ? x : z; } else throw H.wrapException(P.UnimplementedError$(null)); sx = x; } t1 = this._m4storage; t1[0] = t1[0] * sx; t1[1] = t1[1] * sx; t1[2] = t1[2] * sx; t1[3] = t1[3] * sx; t1[4] = t1[4] * sy; t1[5] = t1[5] * sy; t1[6] = t1[6] * sy; t1[7] = t1[7] * sy; t1[8] = t1[8] * sz; t1[9] = t1[9] * sz; t1[10] = t1[10] * sz; t1[11] = t1[11] * sz; t1[12] = t1[12]; t1[13] = t1[13]; t1[14] = t1[14]; t1[15] = t1[15]; }, scale$1: function($receiver, x) { return this.scale$3($receiver, x, null, null); }, setZero$0: function() { var t1 = this._m4storage; t1[0] = 0; t1[1] = 0; t1[2] = 0; t1[3] = 0; t1[4] = 0; t1[5] = 0; t1[6] = 0; t1[7] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 0; t1[11] = 0; t1[12] = 0; t1[13] = 0; t1[14] = 0; t1[15] = 0; }, setIdentity$0: function() { var t1 = this._m4storage; t1[0] = 1; t1[1] = 0; t1[2] = 0; t1[3] = 0; t1[4] = 0; t1[5] = 1; t1[6] = 0; t1[7] = 0; t1[8] = 0; t1[9] = 0; t1[10] = 1; t1[11] = 0; t1[12] = 0; t1[13] = 0; t1[14] = 0; t1[15] = 1; }, setTranslationRaw$3: function(x, y, z) { var t1 = this._m4storage; t1[14] = z; t1[13] = y; t1[12] = x; }, copyInverse$1: function(arg) { var invDet, t1, t2, t3, argStorage = arg._m4storage, a00 = argStorage[0], a01 = argStorage[1], a02 = argStorage[2], a03 = argStorage[3], a10 = argStorage[4], a11 = argStorage[5], a12 = argStorage[6], a13 = argStorage[7], a20 = argStorage[8], a21 = argStorage[9], a22 = argStorage[10], a23 = argStorage[11], a30 = argStorage[12], a31 = argStorage[13], a32 = argStorage[14], a33 = argStorage[15], b00 = a00 * a11 - a01 * a10, b01 = a00 * a12 - a02 * a10, b02 = a00 * a13 - a03 * a10, b03 = a01 * a12 - a02 * a11, b04 = a01 * a13 - a03 * a11, b05 = a02 * a13 - a03 * a12, b06 = a20 * a31 - a21 * a30, b07 = a20 * a32 - a22 * a30, b08 = a20 * a33 - a23 * a30, b09 = a21 * a32 - a22 * a31, b10 = a21 * a33 - a23 * a31, b11 = a22 * a33 - a23 * a32, det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; if (det === 0) { this.setFrom$1(arg); return 0; } invDet = 1 / det; t1 = this._m4storage; t1[0] = (a11 * b11 - a12 * b10 + a13 * b09) * invDet; t1[1] = (-a01 * b11 + a02 * b10 - a03 * b09) * invDet; t1[2] = (a31 * b05 - a32 * b04 + a33 * b03) * invDet; t1[3] = (-a21 * b05 + a22 * b04 - a23 * b03) * invDet; t2 = -a10; t1[4] = (t2 * b11 + a12 * b08 - a13 * b07) * invDet; t1[5] = (a00 * b11 - a02 * b08 + a03 * b07) * invDet; t3 = -a30; t1[6] = (t3 * b05 + a32 * b02 - a33 * b01) * invDet; t1[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet; t1[8] = (a10 * b10 - a11 * b08 + a13 * b06) * invDet; t1[9] = (-a00 * b10 + a01 * b08 - a03 * b06) * invDet; t1[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet; t1[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet; t1[12] = (t2 * b09 + a11 * b07 - a12 * b06) * invDet; t1[13] = (a00 * b09 - a01 * b07 + a02 * b06) * invDet; t1[14] = (t3 * b03 + a31 * b01 - a32 * b00) * invDet; t1[15] = (a20 * b03 - a21 * b01 + a22 * b00) * invDet; return det; }, add$1: function(_, o) { var oStorage = o._m4storage, t1 = this._m4storage; t1[0] = t1[0] + oStorage[0]; t1[1] = t1[1] + oStorage[1]; t1[2] = t1[2] + oStorage[2]; t1[3] = t1[3] + oStorage[3]; t1[4] = t1[4] + oStorage[4]; t1[5] = t1[5] + oStorage[5]; t1[6] = t1[6] + oStorage[6]; t1[7] = t1[7] + oStorage[7]; t1[8] = t1[8] + oStorage[8]; t1[9] = t1[9] + oStorage[9]; t1[10] = t1[10] + oStorage[10]; t1[11] = t1[11] + oStorage[11]; t1[12] = t1[12] + oStorage[12]; t1[13] = t1[13] + oStorage[13]; t1[14] = t1[14] + oStorage[14]; t1[15] = t1[15] + oStorage[15]; }, multiply$1: function(_, arg) { var t1 = this._m4storage, m00 = t1[0], m01 = t1[4], m02 = t1[8], m03 = t1[12], m10 = t1[1], m11 = t1[5], m12 = t1[9], m13 = t1[13], m20 = t1[2], m21 = t1[6], m22 = t1[10], m23 = t1[14], m30 = t1[3], m31 = t1[7], m32 = t1[11], m33 = t1[15], argStorage = arg._m4storage, n00 = argStorage[0], n01 = argStorage[4], n02 = argStorage[8], n03 = argStorage[12], n10 = argStorage[1], n11 = argStorage[5], n12 = argStorage[9], n13 = argStorage[13], n20 = argStorage[2], n21 = argStorage[6], n22 = argStorage[10], n23 = argStorage[14], n30 = argStorage[3], n31 = argStorage[7], n32 = argStorage[11], n33 = argStorage[15]; t1[0] = m00 * n00 + m01 * n10 + m02 * n20 + m03 * n30; t1[4] = m00 * n01 + m01 * n11 + m02 * n21 + m03 * n31; t1[8] = m00 * n02 + m01 * n12 + m02 * n22 + m03 * n32; t1[12] = m00 * n03 + m01 * n13 + m02 * n23 + m03 * n33; t1[1] = m10 * n00 + m11 * n10 + m12 * n20 + m13 * n30; t1[5] = m10 * n01 + m11 * n11 + m12 * n21 + m13 * n31; t1[9] = m10 * n02 + m11 * n12 + m12 * n22 + m13 * n32; t1[13] = m10 * n03 + m11 * n13 + m12 * n23 + m13 * n33; t1[2] = m20 * n00 + m21 * n10 + m22 * n20 + m23 * n30; t1[6] = m20 * n01 + m21 * n11 + m22 * n21 + m23 * n31; t1[10] = m20 * n02 + m21 * n12 + m22 * n22 + m23 * n32; t1[14] = m20 * n03 + m21 * n13 + m22 * n23 + m23 * n33; t1[3] = m30 * n00 + m31 * n10 + m32 * n20 + m33 * n30; t1[7] = m30 * n01 + m31 * n11 + m32 * n21 + m33 * n31; t1[11] = m30 * n02 + m31 * n12 + m32 * n22 + m33 * n32; t1[15] = m30 * n03 + m31 * n13 + m32 * n23 + m33 * n33; }, decompose$3: function(translation, rotation, scale) { var t1, sx, sy, sz, t2, t3, t4, t5, det2_01_01, t6, t7, det2_01_02, t8, t9, det2_01_03, det2_01_12, det2_01_13, det2_01_23, invSX, invSY, invSZ, m, r, rStorage, t, s, i, j, k, v = $.Matrix4__decomposeV; if (v == null) v = $.Matrix4__decomposeV = new E.Vector3(new Float64Array(3)); t1 = this._m4storage; v.setValues$3(t1[0], t1[1], t1[2]); sx = Math.sqrt(v.get$length2()); v.setValues$3(t1[4], t1[5], t1[6]); sy = Math.sqrt(v.get$length2()); v.setValues$3(t1[8], t1[9], t1[10]); sz = Math.sqrt(v.get$length2()); t2 = t1[0]; t3 = t1[5]; t4 = t1[1]; t5 = t1[4]; det2_01_01 = t2 * t3 - t4 * t5; t6 = t1[6]; t7 = t1[2]; det2_01_02 = t2 * t6 - t7 * t5; t8 = t1[7]; t9 = t1[3]; det2_01_03 = t2 * t8 - t9 * t5; det2_01_12 = t4 * t6 - t7 * t3; det2_01_13 = t4 * t8 - t9 * t3; det2_01_23 = t7 * t8 - t9 * t6; t6 = t1[8]; t9 = t1[9]; t8 = t1[10]; t7 = t1[11]; t3 = t1[12]; if (-(t9 * det2_01_23 - t8 * det2_01_13 + t7 * det2_01_12) * t3 + (t6 * det2_01_23 - t8 * det2_01_03 + t7 * det2_01_02) * t1[13] - (t6 * det2_01_13 - t9 * det2_01_03 + t7 * det2_01_01) * t1[14] + (t6 * det2_01_12 - t9 * det2_01_02 + t8 * det2_01_01) * t1[15] < 0) sx = -sx; t2 = translation._v3storage; t2[0] = t3; t2[1] = t1[13]; t2[2] = t1[14]; invSX = 1 / sx; invSY = 1 / sy; invSZ = 1 / sz; m = $.Matrix4__decomposeM; if (m == null) m = $.Matrix4__decomposeM = new E.Matrix4(new Float64Array(16)); m.setFrom$1(this); t1 = m._m4storage; t1[0] = t1[0] * invSX; t1[1] = t1[1] * invSX; t1[2] = t1[2] * invSX; t1[4] = t1[4] * invSY; t1[5] = t1[5] * invSY; t1[6] = t1[6] * invSY; t1[8] = t1[8] * invSZ; t1[9] = t1[9] * invSZ; t1[10] = t1[10] * invSZ; r = $.Matrix4__decomposeR; if (r == null) r = $.Matrix4__decomposeR = new E.Matrix3(new Float64Array(9)); rStorage = r._m3storage; rStorage[0] = t1[0]; rStorage[1] = t1[1]; rStorage[2] = t1[2]; rStorage[3] = t1[4]; rStorage[4] = t1[5]; rStorage[5] = t1[6]; rStorage[6] = t1[8]; rStorage[7] = t1[9]; rStorage[8] = t1[10]; t1 = rStorage[0]; t2 = rStorage[4]; t3 = rStorage[8]; t = 0 + t1 + t2 + t3; if (t > 0) { s = Math.sqrt(t + 1); t1 = rotation._qStorage; t1[3] = s * 0.5; s = 0.5 / s; t1[0] = (rStorage[5] - rStorage[7]) * s; t1[1] = (rStorage[6] - rStorage[2]) * s; t1[2] = (rStorage[1] - rStorage[3]) * s; } else { if (t1 < t2) i = t2 < t3 ? 2 : 1; else i = t1 < t3 ? 2 : 0; j = (i + 1) % 3; k = (i + 2) % 3; t1 = i * 3; t2 = j * 3; t3 = k * 3; s = Math.sqrt(rStorage[t1 + i] - rStorage[t2 + j] - rStorage[t3 + k] + 1); t4 = rotation._qStorage; t4[i] = s * 0.5; s = 0.5 / s; t4[3] = (rStorage[t2 + k] - rStorage[t3 + j]) * s; t4[j] = (rStorage[t1 + j] + rStorage[t2 + i]) * s; t4[k] = (rStorage[t1 + k] + rStorage[t3 + i]) * s; } t1 = scale._v3storage; t1[0] = sx; t1[1] = sy; t1[2] = sz; }, transform3$1: function(arg) { var argStorage = arg._v3storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = t1[1], t10 = t1[5], t11 = t1[9], t12 = t1[13], t13 = t1[2], t14 = t1[6], t15 = t1[10]; t1 = t1[14]; argStorage[0] = t2 * t3 + t4 * t5 + t6 * t7 + t8; argStorage[1] = t9 * t3 + t10 * t5 + t11 * t7 + t12; argStorage[2] = t13 * t3 + t14 * t5 + t15 * t7 + t1; return arg; }, transform$1: function(_, arg) { var argStorage = arg._v4storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = argStorage[3], t10 = t1[1], t11 = t1[5], t12 = t1[9], t13 = t1[13], t14 = t1[2], t15 = t1[6], t16 = t1[10], t17 = t1[14], t18 = t1[3], t19 = t1[7], t20 = t1[11]; t1 = t1[15]; argStorage[0] = t2 * t3 + t4 * t5 + t6 * t7 + t8 * t9; argStorage[1] = t10 * t3 + t11 * t5 + t12 * t7 + t13 * t9; argStorage[2] = t14 * t3 + t15 * t5 + t16 * t7 + t17 * t9; argStorage[3] = t18 * t3 + t19 * t5 + t20 * t7 + t1 * t9; return arg; }, perspectiveTransform$1: function(arg) { var argStorage = arg._v3storage, t1 = this._m4storage, t2 = t1[0], t3 = argStorage[0], t4 = t1[4], t5 = argStorage[1], t6 = t1[8], t7 = argStorage[2], t8 = t1[12], t9 = t1[1], t10 = t1[5], t11 = t1[9], t12 = t1[13], t13 = t1[2], t14 = t1[6], t15 = t1[10], t16 = t1[14], w_ = 1 / (t1[3] * t3 + t1[7] * t5 + t1[11] * t7 + t1[15]); argStorage[0] = (t2 * t3 + t4 * t5 + t6 * t7 + t8) * w_; argStorage[1] = (t9 * t3 + t10 * t5 + t11 * t7 + t12) * w_; argStorage[2] = (t13 * t3 + t14 * t5 + t15 * t7 + t16) * w_; return arg; } }; E.Quaternion.prototype = { setFrom$1: function(source) { var sourceStorage = source._qStorage, t1 = this._qStorage; t1[0] = sourceStorage[0]; t1[1] = sourceStorage[1]; t1[2] = sourceStorage[2]; t1[3] = sourceStorage[3]; }, normalize$0: function(_) { var d, t1, l = Math.sqrt(this.get$length2()); if (l === 0) return 0; d = 1 / l; t1 = this._qStorage; t1[0] = t1[0] * d; t1[1] = t1[1] * d; t1[2] = t1[2] * d; t1[3] = t1[3] * d; return l; }, get$length2: function() { var t1 = this._qStorage, x = t1[0], y = t1[1], z = t1[2], w = t1[3]; return x * x + y * y + z * z + w * w; }, get$length: function(_) { var t1 = this._qStorage, x = t1[0], y = t1[1], z = t1[2], w = t1[3]; return Math.sqrt(x * x + y * y + z * z + w * w); }, add$1: function(_, arg) { var argStorage = arg._qStorage, t1 = this._qStorage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; t1[3] = t1[3] + argStorage[3]; }, scaled$1: function(scale) { var t1 = new Float64Array(4), t2 = new E.Quaternion(t1); t2.setFrom$1(this); t1[3] = t1[3] * scale; t1[2] = t1[2] * scale; t1[1] = t1[1] * scale; t1[0] = t1[0] * scale; return t2; }, $mul: function(_, other) { var t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, t16, t17, t1 = this._qStorage, _w = t1[3], _z = t1[2], _y = t1[1], _x = t1[0], otherStorage = other.get$_qStorage(), ow = otherStorage.$index(0, 3), oz = otherStorage.$index(0, 2), oy = otherStorage.$index(0, 1), ox = otherStorage.$index(0, 0); t1 = C.JSNumber_methods.$mul(_w, ox); t2 = C.JSNumber_methods.$mul(_x, ow); t3 = C.JSNumber_methods.$mul(_y, oz); t4 = C.JSNumber_methods.$mul(_z, oy); t5 = C.JSNumber_methods.$mul(_w, oy); t6 = C.JSNumber_methods.$mul(_y, ow); t7 = C.JSNumber_methods.$mul(_z, ox); t8 = C.JSNumber_methods.$mul(_x, oz); t9 = C.JSNumber_methods.$mul(_w, oz); t10 = C.JSNumber_methods.$mul(_z, ow); t11 = C.JSNumber_methods.$mul(_x, oy); t12 = C.JSNumber_methods.$mul(_y, ox); t13 = C.JSNumber_methods.$mul(_w, ow); t14 = C.JSNumber_methods.$mul(_x, ox); t15 = C.JSNumber_methods.$mul(_y, oy); t16 = C.JSNumber_methods.$mul(_z, oz); t17 = new Float64Array(4); t17[0] = t1 + t2 + t3 - t4; t17[1] = t5 + t6 + t7 - t8; t17[2] = t9 + t10 + t11 - t12; t17[3] = t13 - t14 - t15 - t16; return new E.Quaternion(t17); }, $add: function(_, other) { var t1 = new E.Quaternion(new Float64Array(4)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $sub: function(_, other) { var argStorage, t1 = new Float64Array(4), t2 = new E.Quaternion(t1); t2.setFrom$1(this); argStorage = other._qStorage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; t1[3] = t1[3] - argStorage[3]; return t2; }, $index: function(_, i) { return this._qStorage[i]; }, $indexSet: function(_, i, arg) { this._qStorage[i] = arg; }, toString$0: function(_) { var t1 = this._qStorage; return H.S(t1[0]) + ", " + H.S(t1[1]) + ", " + H.S(t1[2]) + " @ " + H.S(t1[3]); } }; E.Vector3.prototype = { setValues$3: function(x, y, z) { var t1 = this._v3storage; t1[0] = x; t1[1] = y; t1[2] = z; }, setFrom$1: function(other) { var otherStorage = other._v3storage, t1 = this._v3storage; t1[0] = otherStorage[0]; t1[1] = otherStorage[1]; t1[2] = otherStorage[2]; }, toString$0: function(_) { var t1 = this._v3storage; return "[" + H.S(t1[0]) + "," + H.S(t1[1]) + "," + H.S(t1[2]) + "]"; }, $eq: function(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof E.Vector3) { t1 = this._v3storage; t2 = t1[0]; t3 = other._v3storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2]; } else t1 = false; return t1; }, get$hashCode: function(_) { return A.hashObjects0(this._v3storage); }, $sub: function(_, other) { var argStorage, t1 = new Float64Array(3), t2 = new E.Vector3(t1); t2.setFrom$1(this); argStorage = other._v3storage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; return t2; }, $add: function(_, other) { var t1 = new E.Vector3(new Float64Array(3)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $div: function(_, scale) { return this.scaled$1(1 / scale); }, $mul: function(_, scale) { return this.scaled$1(scale); }, $index: function(_, i) { return this._v3storage[i]; }, $indexSet: function(_, i, v) { this._v3storage[i] = v; }, get$length: function(_) { var t1 = this._v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return Math.sqrt(t2 * t2 + t3 * t3 + t1 * t1); }, get$length2: function() { var t1 = this._v3storage, t2 = t1[0], t3 = t1[1]; t1 = t1[2]; return t2 * t2 + t3 * t3 + t1 * t1; }, dot$1: function(other) { var otherStorage = other._v3storage, t1 = this._v3storage; return t1[0] * otherStorage[0] + t1[1] * otherStorage[1] + t1[2] * otherStorage[2]; }, add$1: function(_, arg) { var argStorage = arg._v3storage, t1 = this._v3storage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; }, scaled$1: function(arg) { var t1 = new Float64Array(3), t2 = new E.Vector3(t1); t2.setFrom$1(this); t1[2] = t1[2] * arg; t1[1] = t1[1] * arg; t1[0] = t1[0] * arg; return t2; }, round$0: function(_) { var t1 = this._v3storage; t1[0] = C.JSNumber_methods.roundToDouble$0(t1[0]); t1[1] = C.JSNumber_methods.roundToDouble$0(t1[1]); t1[2] = C.JSNumber_methods.roundToDouble$0(t1[2]); } }; E.Vector4.prototype = { setValues$4: function(x_, y_, z_, w_) { var t1 = this._v4storage; t1[3] = w_; t1[2] = z_; t1[1] = y_; t1[0] = x_; }, setFrom$1: function(other) { var otherStorage = other._v4storage, t1 = this._v4storage; t1[3] = otherStorage[3]; t1[2] = otherStorage[2]; t1[1] = otherStorage[1]; t1[0] = otherStorage[0]; }, toString$0: function(_) { var t1 = this._v4storage; return H.S(t1[0]) + "," + H.S(t1[1]) + "," + H.S(t1[2]) + "," + H.S(t1[3]); }, $eq: function(_, other) { var t1, t2, t3; if (other == null) return false; if (other instanceof E.Vector4) { t1 = this._v4storage; t2 = t1[0]; t3 = other._v4storage; t1 = t2 === t3[0] && t1[1] === t3[1] && t1[2] === t3[2] && t1[3] === t3[3]; } else t1 = false; return t1; }, get$hashCode: function(_) { return A.hashObjects0(this._v4storage); }, $sub: function(_, other) { var argStorage, t1 = new Float64Array(4), t2 = new E.Vector4(t1); t2.setFrom$1(this); argStorage = other._v4storage; t1[0] = t1[0] - argStorage[0]; t1[1] = t1[1] - argStorage[1]; t1[2] = t1[2] - argStorage[2]; t1[3] = t1[3] - argStorage[3]; return t2; }, $add: function(_, other) { var t1 = new E.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.add$1(0, other); return t1; }, $div: function(_, scale) { var t1 = new E.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.scale$1(0, 1 / scale); return t1; }, $mul: function(_, scale) { var t1 = new E.Vector4(new Float64Array(4)); t1.setFrom$1(this); t1.scale$1(0, scale); return t1; }, $index: function(_, i) { return this._v4storage[i]; }, $indexSet: function(_, i, v) { this._v4storage[i] = v; }, get$length: function(_) { var t1 = this._v4storage, t2 = t1[0], t3 = t1[1], t4 = t1[2]; t1 = t1[3]; return Math.sqrt(t2 * t2 + t3 * t3 + t4 * t4 + t1 * t1); }, add$1: function(_, arg) { var argStorage = arg._v4storage, t1 = this._v4storage; t1[0] = t1[0] + argStorage[0]; t1[1] = t1[1] + argStorage[1]; t1[2] = t1[2] + argStorage[2]; t1[3] = t1[3] + argStorage[3]; }, scale$1: function(_, arg) { var t1 = this._v4storage; t1[0] = t1[0] * arg; t1[1] = t1[1] * arg; t1[2] = t1[2] * arg; t1[3] = t1[3] * arg; }, round$0: function(_) { var t1 = this._v4storage; t1[0] = C.JSNumber_methods.roundToDouble$0(t1[0]); t1[1] = C.JSNumber_methods.roundToDouble$0(t1[1]); t1[2] = C.JSNumber_methods.roundToDouble$0(t1[2]); t1[3] = C.JSNumber_methods.roundToDouble$0(t1[3]); } }; Q.Version.prototype = { Version$5$build$preRelease: function(major, minor, patch, build, preRelease) { var t1, i, t2, t3, _this = this, _null = null; for (t1 = _this._preRelease, i = 0; i < t1.length; ++i) { if (C.JSString_methods.trim$0(J.toString$0$(t1[i])).length === 0) throw H.wrapException(P.ArgumentError$("preRelease segments must not be empty")); t2 = J.toString$0$(t1[i]); t1[i] = t2; t3 = $.$get$Version__preReleaseRegex()._nativeRegExp; if (!t3.test(t2)) throw H.wrapException(P.FormatException$("preRelease segments must only contain [0-9A-Za-z-]", _null, _null)); } t1 = _this.build; if (t1.length !== 0) { t2 = $.$get$Version__buildRegex()._nativeRegExp; t1 = !t2.test(t1); } else t1 = false; if (t1) throw H.wrapException(P.FormatException$("build must only contain [0-9A-Za-z-.]", _null, _null)); if (_this.major < 0 || _this.minor < 0 || _this.patch < 0) throw H.wrapException(P.ArgumentError$("Version numbers must be greater than 0")); }, get$hashCode: function(_) { return C.JSString_methods.get$hashCode(this.toString$0(0)); }, $lt: function(_, o) { return o instanceof Q.Version && Q.Version__compare(this, o) < 0; }, $eq: function(_, o) { if (o == null) return false; return o instanceof Q.Version && Q.Version__compare(this, o) === 0; }, $gt: function(_, o) { return false; }, $ge: function(_, o) { return false; }, compareTo$1: function(_, other) { if (other == null) throw H.wrapException(P.ArgumentError$notNull("other")); return Q.Version__compare(this, other); }, toString$0: function(_) { var _this = this, t1 = "" + _this.major + "." + _this.minor + "." + _this.patch, t2 = _this._preRelease; if (t2.length !== 0) t1 += "-" + C.JSArray_methods.join$1(t2, "."); t2 = C.JSString_methods.trim$0(_this.build); if (t2.length !== 0) t1 += "+" + t2; return t1.charCodeAt(0) == 0 ? t1 : t1; }, $isComparable: 1 }; (function aliases() { var _ = H._SaveStackTracking.prototype; _.super$_SaveStackTracking$clear = _.clear$0; _.super$_SaveStackTracking$save = _.save$0; _.super$_SaveStackTracking$restore = _.restore$0; _.super$_SaveStackTracking$translate = _.translate$2; _.super$_SaveStackTracking$scale = _.scale$2; _.super$_SaveStackTracking$rotate = _.rotate$1; _.super$_SaveStackTracking$transform = _.transform$1; _.super$_SaveStackTracking$clipRect = _.clipRect$1; _.super$_SaveStackTracking$clipRRect = _.clipRRect$1; _.super$_SaveStackTracking$clipPath = _.clipPath$1; _ = H.CkCanvas.prototype; _.super$CkCanvas$clear = _.clear$1; _.super$CkCanvas$clipPath = _.clipPath$2; _.super$CkCanvas$clipRRect = _.clipRRect$2; _.super$CkCanvas$clipRect = _.clipRect$3; _.super$CkCanvas$drawArc = _.drawArc$5; _.super$CkCanvas$drawCircle = _.drawCircle$3; _.super$CkCanvas$drawDRRect = _.drawDRRect$3; _.super$CkCanvas$drawImageRect = _.drawImageRect$4; _.super$CkCanvas$drawLine = _.drawLine$3; _.super$CkCanvas$drawPaint = _.drawPaint$1; _.super$CkCanvas$drawParagraph = _.drawParagraph$2; _.super$CkCanvas$drawPath = _.drawPath$2; _.super$CkCanvas$drawPicture = _.drawPicture$1; _.super$CkCanvas$drawRRect = _.drawRRect$2; _.super$CkCanvas$drawRect = _.drawRect$2; _.super$CkCanvas$drawShadow = _.drawShadow$4; _.super$CkCanvas$restore = _.restore$0; _.super$CkCanvas$restoreToCount = _.restoreToCount$1; _.super$CkCanvas$rotate = _.rotate$1; _.super$CkCanvas$save = _.save$0; _.super$CkCanvas$saveLayer = _.saveLayer$2; _.super$CkCanvas$scale = _.scale$2; _.super$CkCanvas$transform = _.transform$1; _.super$CkCanvas$translate = _.translate$2; _ = H.ContainerLayer.prototype; _.super$ContainerLayer$preroll = _.preroll$2; _ = H.SaveElementStackTracking.prototype; _.super$SaveElementStackTracking$clear = _.clear$0; _ = H._DomClip.prototype; _.super$_DomClip$createElement = _.createElement$0; _ = H.PersistedSurface.prototype; _.super$PersistedSurface$revive = _.revive$0; _.super$PersistedSurface$canUpdateAsMatch = _.canUpdateAsMatch$1; _.super$PersistedSurface$build = _.build$0; _.super$PersistedSurface$adoptElements = _.adoptElements$1; _.super$PersistedSurface$update = _.update$1; _.super$PersistedSurface$retain = _.retain$0; _.super$PersistedSurface$discard = _.discard$0; _.super$PersistedSurface$preroll = _.preroll$0; _ = H.PersistedContainerSurface.prototype; _.super$PersistedContainerSurface$recomputeTransformAndClip = _.recomputeTransformAndClip$0; _.super$PersistedContainerSurface$update = _.update$1; _.super$PersistedContainerSurface$discard = _.discard$0; _ = H.DefaultTextEditingStrategy.prototype; _.super$DefaultTextEditingStrategy$initializeTextEditing = _.initializeTextEditing$3$onAction$onChange; _.super$DefaultTextEditingStrategy$updateElementStyle = _.updateElementStyle$1; _.super$DefaultTextEditingStrategy$disable = _.disable$0; _.super$DefaultTextEditingStrategy$enable = _.enable$3$onAction$onChange; _ = J.Interceptor.prototype; _.super$Interceptor$toString = _.toString$0; _.super$Interceptor$noSuchMethod = _.noSuchMethod$1; _ = J.JavaScriptObject.prototype; _.super$JavaScriptObject$toString = _.toString$0; _ = H.JsLinkedHashMap.prototype; _.super$JsLinkedHashMap$internalContainsKey = _.internalContainsKey$1; _.super$JsLinkedHashMap$internalGet = _.internalGet$1; _.super$JsLinkedHashMap$internalSet = _.internalSet$2; _.super$JsLinkedHashMap$internalRemove = _.internalRemove$1; _ = P._BroadcastStreamController.prototype; _.super$_BroadcastStreamController$_addEventError = _._addEventError$0; _.super$_BroadcastStreamController$add = _.add$1; _.super$_BroadcastStreamController$close = _.close$0; _.super$_BroadcastStreamController$_callOnCancel = _._callOnCancel$0; _ = P._BufferingStreamSubscription.prototype; _.super$_BufferingStreamSubscription$_add = _._async$_add$1; _.super$_BufferingStreamSubscription$_addError = _._addError$2; _.super$_BufferingStreamSubscription$_close = _._async$_close$0; _ = P._StreamSinkTransformer.prototype; _.super$_StreamSinkTransformer$bind = _.bind$1; _ = P._HashMap.prototype; _.super$_HashMap$_containsKey = _._containsKey$1; _.super$_HashMap$_get = _._get$1; _.super$_HashMap$_set = _._set$2; _.super$_HashMap$_remove = _._collection$_remove$1; _ = P.ListMixin.prototype; _.super$ListMixin$setRange = _.setRange$4; _ = P.Iterable.prototype; _.super$Iterable$where = _.where$1; _ = P.Object.prototype; _.super$Object$$eq = _.$eq; _.super$Object$toString = _.toString$0; _ = W.Element.prototype; _.super$Element$createFragment = _.createFragment$3$treeSanitizer$validator; _ = W.EventTarget.prototype; _.super$EventTarget$addEventListener = _.addEventListener$3; _ = W._SimpleNodeValidator.prototype; _.super$_SimpleNodeValidator$allowsAttribute = _.allowsAttribute$3; _ = P.JsObject.prototype; _.super$JsObject$$index = _.$index; _.super$JsObject$$indexSet = _.$indexSet; _ = P._JsArray_JsObject_ListMixin.prototype; _.super$_JsArray_JsObject_ListMixin$$indexSet = _.$indexSet; _ = P.Color.prototype; _.super$Color$$eq = _.$eq; _.super$Color$toString = _.toString$0; _ = N._BoardViewState_State_AutomaticKeepAliveClientMixin.prototype; _.super$_BoardViewState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = Y.EnumClass.prototype; _.super$EnumClass$toString = _.toString$0; _ = A.BaseBarRendererConfig.prototype; _.super$BaseBarRendererConfig$$eq = _.$eq; _ = B.BaseBarRendererElement.prototype; _.super$BaseBarRendererElement$updateAnimationPercent = _.updateAnimationPercent$3; _ = B.BaseAnimatedBar.prototype; _.super$BaseAnimatedBar$getCurrentBar = _.getCurrentBar$1; _ = M.Axis.prototype; _.super$Axis$layout = _.layout$2; _ = R.BaseRenderSpec.prototype; _.super$BaseRenderSpec$$eq = _.$eq; _ = S.SmallTickRendererSpec.prototype; _.super$SmallTickRendererSpec$$eq = _.$eq; _ = T.AxisSpec.prototype; _.super$AxisSpec$configure = _.configure$3; _.super$AxisSpec$$eq = _.$eq; _ = R.TimeTickFormatterImpl.prototype; _.super$TimeTickFormatterImpl$formatSimpleTick = _.formatSimpleTick$1; _ = F.BaseCartesianRenderer.prototype; _.super$BaseCartesianRenderer$onAttach = _.onAttach$1; _.super$BaseCartesianRenderer$configureDomainAxes = _.configureDomainAxes$1; _ = X.BaseChart0.prototype; _.super$BaseChart$init = _.init$2; _.super$BaseChart$makeSeries = _.makeSeries$1; _.super$BaseChart$preprocessSeries = _.preprocessSeries$1; _.super$BaseChart$onSkipLayout = _.onSkipLayout$0; _.super$BaseChart$onPostLayout = _.onPostLayout$1; _ = D.Legend.prototype; _.super$Legend$entryTextStyle = _.set$entryTextStyle; _ = Z.SeriesLegend0.prototype; _.super$SeriesLegend$defaultHiddenSeries = _.set$defaultHiddenSeries; _ = B.BaseSeriesRenderer.prototype; _.super$BaseSeriesRenderer$onAttach = _.onAttach$1; _.super$BaseSeriesRenderer$layout = _.layout$2; _ = B.SymbolRenderer.prototype; _.super$SymbolRenderer$$eq = _.$eq; _ = X.BaseChart.prototype; _.super$BaseChart$updateCommonChart = _.updateCommonChart$3; _.super$BaseChart$addDefaultInteractions = _.addDefaultInteractions$1; _ = U._BaseChartState_State_TickerProviderStateMixin.prototype; _.super$_BaseChartState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = M.__DraggableScrollbarState_State_TickerProviderStateMixin.prototype; _.super$__DraggableScrollbarState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = X.Animation0.prototype; _.super$Animation$toStringDetails = _.toStringDetails$0; _ = S.AnimationWithParentMixin.prototype; _.super$AnimationWithParentMixin$removeListener = _.removeListener$1; _.super$AnimationWithParentMixin$removeStatusListener = _.removeStatusListener$1; _ = Z.ParametricCurve.prototype; _.super$ParametricCurve$transform = _.transform$1; _ = S.AnimationEagerListenerMixin.prototype; _.super$AnimationEagerListenerMixin$dispose = _.dispose$0; _ = F.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin.prototype; _.super$__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = N.__CupertinoSwitchState_State_TickerProviderStateMixin.prototype; _.super$__CupertinoSwitchState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = N.BindingBase.prototype; _.super$BindingBase$initInstances = _.initInstances$0; _.super$BindingBase$initServiceExtensions = _.initServiceExtensions$0; _.super$BindingBase$unlocked = _.unlocked$0; _ = B.ChangeNotifier.prototype; _.super$ChangeNotifier$dispose = _.dispose$0; _.super$ChangeNotifier$notifyListeners = _.notifyListeners$0; _ = B.ValueNotifier.prototype; _.super$ValueNotifier$value = _.set$value; _ = Y.Diagnosticable.prototype; _.super$Diagnosticable$toStringShort = _.toStringShort$0; _.super$Diagnosticable$debugFillProperties = _.debugFillProperties$1; _ = Y.DiagnosticableTreeMixin.prototype; _.super$DiagnosticableTreeMixin$toStringDeep = _.toStringDeep$3$minLevel$prefixLineOne$prefixOtherLines; _.super$DiagnosticableTreeMixin$toStringShort = _.toStringShort$0; _ = B.AbstractNode.prototype; _.super$AbstractNode$attach = _.attach$1; _.super$AbstractNode$detach = _.detach$0; _.super$AbstractNode$adoptChild = _.adoptChild$1; _.super$AbstractNode$dropChild = _.dropChild$1; _ = N.GestureBinding.prototype; _.super$GestureBinding$hitTest = _.hitTest$2; _.super$GestureBinding$dispatchEvent = _.dispatchEvent$2; _ = T.LongPressGestureRecognizer.prototype; _.super$LongPressGestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _ = V.MultiDragPointerState.prototype; _.super$MultiDragPointerState$dispose = _.dispose$0; _ = S.GestureRecognizer.prototype; _.super$GestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _.super$GestureRecognizer$dispose = _.dispose$0; _ = S.OneSequenceGestureRecognizer.prototype; _.super$OneSequenceGestureRecognizer$resolve = _.resolve$1; _.super$OneSequenceGestureRecognizer$dispose = _.dispose$0; _.super$OneSequenceGestureRecognizer$startTrackingPointer = _.startTrackingPointer$2; _.super$OneSequenceGestureRecognizer$stopTrackingPointer = _.stopTrackingPointer$1; _ = S.PrimaryPointerGestureRecognizer.prototype; _.super$PrimaryPointerGestureRecognizer$addAllowedPointer = _.addAllowedPointer$1; _.super$PrimaryPointerGestureRecognizer$acceptGesture = _.acceptGesture$1; _.super$PrimaryPointerGestureRecognizer$rejectGesture = _.rejectGesture$1; _ = B.ScaleGestureRecognizer.prototype; _.super$ScaleGestureRecognizer$addAllowedPointer = _.addAllowedPointer$1; _.super$ScaleGestureRecognizer$handleEvent = _.handleEvent$1; _.super$ScaleGestureRecognizer$didStopTrackingLastPointer = _.didStopTrackingLastPointer$1; _ = N.BaseTapGestureRecognizer.prototype; _.super$BaseTapGestureRecognizer$rejectGesture = _.rejectGesture$1; _ = N.TapGestureRecognizer.prototype; _.super$TapGestureRecognizer$isPointerAllowed = _.isPointerAllowed$1; _ = K.__ButtonStyleState_State_TickerProviderStateMixin.prototype; _.super$__ButtonStyleState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = Q.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin.prototype; _.super$__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = K.__CheckboxState_State_TickerProviderStateMixin.prototype; _.super$__CheckboxState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = K.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$initState = _.initState$0; _.super$__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = S.__SortArrowState_State_TickerProviderStateMixin.prototype; _.super$__SortArrowState_State_TickerProviderStateMixin$dispose0 = _.dispose$0; _ = Z._DrawerControllerState_State_SingleTickerProviderStateMixin.prototype; _.super$_DrawerControllerState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = N.__ExpandIconState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpandIconState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = R.InkResponse.prototype; _.super$InkResponse$debugCheckContext = _.debugCheckContext$1; _ = R.__InkResponseState_State_AutomaticKeepAliveClientMixin.prototype; _.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _.super$__InkResponseState_State_AutomaticKeepAliveClientMixin$deactivate = _.deactivate$0; _ = L.__BorderContainerState_State_TickerProviderStateMixin.prototype; _.super$__BorderContainerState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = L.__HelperErrorState_State_SingleTickerProviderStateMixin.prototype; _.super$__HelperErrorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = L.__InputDecoratorState_State_TickerProviderStateMixin.prototype; _.super$__InputDecoratorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$__InputDecoratorState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = M.InkFeature.prototype; _.super$InkFeature$dispose = _.dispose$0; _ = B.__MergeableMaterialState_State_TickerProviderStateMixin.prototype; _.super$__MergeableMaterialState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = U._CircularProgressIndicatorPainter.prototype; _.super$_CircularProgressIndicatorPainter$paint = _.paint$2; _ = U.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype; _.super$__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = U.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin.prototype; _.super$__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = Y.__RadioState_State_TickerProviderStateMixin.prototype; _.super$__RadioState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = Y.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = N._RefreshIndicatorState_State_TickerProviderStateMixin.prototype; _.super$_RefreshIndicatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_RefreshIndicatorState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = M._ScaffoldMessengerState_State_TickerProviderStateMixin.prototype; _.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_ScaffoldMessengerState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = M._ScaffoldState_State_TickerProviderStateMixin.prototype; _.super$_ScaffoldState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_ScaffoldState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_ScaffoldState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = M.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin.prototype; _.super$__FloatingActionButtonTransitionState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = O.__SelectableTextState_State_AutomaticKeepAliveClientMixin.prototype; _.super$__SelectableTextState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = N.__MaterialSwitchState_State_TickerProviderStateMixin.prototype; _.super$__MaterialSwitchState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = N.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin.prototype; _.super$__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin$dispose = _.dispose$0; _ = U.__DefaultTabControllerState_State_SingleTickerProviderStateMixin.prototype; _.super$__DefaultTabControllerState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = Z.__TextFieldState_State_RestorationMixin.prototype; _.super$__TextFieldState_State_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$__TextFieldState_State_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$__TextFieldState_State_RestorationMixin$dispose = _.dispose$0; _ = M.__DialState_State_SingleTickerProviderStateMixin.prototype; _.super$__DialState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__DialState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = S.__TooltipState_State_SingleTickerProviderStateMixin.prototype; _.super$__TooltipState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = K.AlignmentGeometry.prototype; _.super$AlignmentGeometry$add = _.add$1; _ = K.Alignment.prototype; _.super$Alignment$$sub = _.$sub; _.super$Alignment$$add = _.$add; _ = K.BorderRadiusGeometry.prototype; _.super$BorderRadiusGeometry$subtract = _.subtract$1; _.super$BorderRadiusGeometry$add = _.add$1; _ = Y.ShapeBorder.prototype; _.super$ShapeBorder$lerpFrom = _.lerpFrom$2; _.super$ShapeBorder$lerpTo = _.lerpTo$2; _ = Z.Decoration.prototype; _.super$Decoration$lerpFrom = _.lerpFrom$2; _.super$Decoration$lerpTo = _.lerpTo$2; _ = Z.BoxPainter.prototype; _.super$BoxPainter$dispose = _.dispose$0; _ = V.EdgeInsetsGeometry.prototype; _.super$EdgeInsetsGeometry$add = _.add$1; _ = E._CachedImageBase.prototype; _.super$_CachedImageBase$dispose = _.dispose$0; _ = L.ImageStreamCompleter.prototype; _.super$ImageStreamCompleter$addListener = _.addListener$1; _.super$ImageStreamCompleter$removeListener = _.removeListener$1; _ = G.InlineSpan.prototype; _.super$InlineSpan$$eq = _.$eq; _ = M.SpringSimulation.prototype; _.super$SpringSimulation$x = _.x$1; _ = N.RendererBinding.prototype; _.super$RendererBinding$handleMetricsChanged = _.handleMetricsChanged$0; _.super$RendererBinding$handlePlatformBrightnessChanged = _.handlePlatformBrightnessChanged$0; _.super$RendererBinding$drawFrame = _.drawFrame$0; _ = S.BoxConstraints.prototype; _.super$BoxConstraints$$eq = _.$eq; _ = S.BoxParentData.prototype; _.super$BoxParentData$toString = _.toString$0; _ = S.RenderBox.prototype; _.super$RenderBox$computeDistanceToActualBaseline = _.computeDistanceToActualBaseline$1; _.super$RenderBox$markNeedsLayout = _.markNeedsLayout$0; _.super$RenderBox$performResize = _.performResize$0; _.super$RenderBox$hitTest = _.hitTest$2$position; _.super$RenderBox$applyPaintTransform = _.applyPaintTransform$2; _ = B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = D._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin.prototype; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$attach = _.attach$1; _.super$_RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin$detach = _.detach$0; _ = F.RenderFlex.prototype; _.super$RenderFlex$performLayout = _.performLayout$0; _ = T.Layer0.prototype; _.super$Layer$updateSubtreeNeedsAddToScene = _.updateSubtreeNeedsAddToScene$0; _ = T.ContainerLayer0.prototype; _.super$ContainerLayer$findAnnotations = _.findAnnotations$1$3$onlyFirst; _.super$ContainerLayer$attach = _.attach$1; _.super$ContainerLayer$detach = _.detach$0; _ = T.OffsetLayer.prototype; _.super$OffsetLayer$findAnnotations = _.findAnnotations$1$3$onlyFirst; _ = K.ParentData.prototype; _.super$ParentData$detach = _.detach$0; _ = K.RenderObject.prototype; _.super$RenderObject$adoptChild = _.adoptChild$1; _.super$RenderObject$attach = _.attach$1; _.super$RenderObject$markNeedsLayout = _.markNeedsLayout$0; _.super$RenderObject$markNeedsPaint = _.markNeedsPaint$0; _.super$RenderObject$applyPaintTransform = _.applyPaintTransform$2; _.super$RenderObject$describeSemanticsConfiguration = _.describeSemanticsConfiguration$1; _.super$RenderObject$clearSemantics = _.clearSemantics$0; _.super$RenderObject$visitChildrenForSemantics = _.visitChildrenForSemantics$1; _.super$RenderObject$assembleSemanticsNode = _.assembleSemanticsNode$3; _.super$RenderObject$handleEvent = _.handleEvent$2; _.super$RenderObject$toStringShort = _.toStringShort$0; _.super$RenderObject$showOnScreen = _.showOnScreen$4$curve$descendant$duration$rect; _ = K.ContainerRenderObjectMixin.prototype; _.super$ContainerRenderObjectMixin$insert = _.insert$2$after; _.super$ContainerRenderObjectMixin$remove = _.remove$1; _.super$ContainerRenderObjectMixin$move = _.move$2$after; _.super$ContainerRenderObjectMixin$redepthChildren = _.redepthChildren$0; _.super$ContainerRenderObjectMixin$visitChildren = _.visitChildren$1; _ = K.RelayoutWhenSystemFontsChangeMixin.prototype; _.super$RelayoutWhenSystemFontsChangeMixin$systemFontsDidChange = _.systemFontsDidChange$0; _ = Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = E.RenderProxyBoxMixin.prototype; _.super$RenderProxyBoxMixin$computeMinIntrinsicWidth = _.computeMinIntrinsicWidth$1; _.super$RenderProxyBoxMixin$computeMaxIntrinsicWidth = _.computeMaxIntrinsicWidth$1; _.super$RenderProxyBoxMixin$computeMinIntrinsicHeight = _.computeMinIntrinsicHeight$1; _.super$RenderProxyBoxMixin$computeMaxIntrinsicHeight = _.computeMaxIntrinsicHeight$1; _.super$RenderProxyBoxMixin$computeDryLayout = _.computeDryLayout$1; _.super$RenderProxyBoxMixin$performLayout = _.performLayout$0; _.super$RenderProxyBoxMixin$hitTestChildren = _.hitTestChildren$2$position; _.super$RenderProxyBoxMixin$paint = _.paint$2; _ = E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin.prototype; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin.prototype; _.super$_RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin$computeDistanceToActualBaseline = _.computeDistanceToActualBaseline$1; _ = T.RenderShiftedBox.prototype; _.super$RenderShiftedBox$computeMinIntrinsicWidth = _.computeMinIntrinsicWidth$1; _.super$RenderShiftedBox$computeMaxIntrinsicWidth = _.computeMaxIntrinsicWidth$1; _.super$RenderShiftedBox$computeMinIntrinsicHeight = _.computeMinIntrinsicHeight$1; _.super$RenderShiftedBox$computeMaxIntrinsicHeight = _.computeMaxIntrinsicHeight$1; _.super$RenderShiftedBox$paint = _.paint$2; _ = T._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin.prototype; _.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$_RenderShiftedBox_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = G.SliverLogicalParentData.prototype; _.super$SliverLogicalParentData$toString = _.toString$0; _ = G.RenderSliver.prototype; _.super$RenderSliver$childMainAxisPosition = _.childMainAxisPosition$1; _ = F.SliverMultiBoxAdaptorParentData.prototype; _.super$SliverMultiBoxAdaptorParentData$toString = _.toString$0; _ = F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin.prototype; _.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin$detach = _.detach$0; _ = T.RenderSliverEdgeInsetsPadding.prototype; _.super$RenderSliverEdgeInsetsPadding$performLayout = _.performLayout$0; _ = Q._RenderViewportBase_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; _.super$_RenderViewportBase_RenderBox_ContainerRenderObjectMixin$detach = _.detach$0; _ = N.ViewportOffset.prototype; _.super$ViewportOffset$moveTo = _.moveTo$3$curve$duration; _.super$ViewportOffset$debugFillDescription = _.debugFillDescription$1; _ = N.SchedulerBinding.prototype; _.super$SchedulerBinding$handleAppLifecycleStateChanged = _.handleAppLifecycleStateChanged$1; _ = M.Ticker.prototype; _.super$Ticker$dispose = _.dispose$0; _ = Q.AssetBundle.prototype; _.super$AssetBundle$loadString = _.loadString$2$cache; _ = N.ServicesBinding.prototype; _.super$ServicesBinding$handleMemoryPressure = _.handleMemoryPressure$0; _.super$ServicesBinding$handleSystemMessage = _.handleSystemMessage$1; _ = A.MethodChannel.prototype; _.super$MethodChannel$_invokeMethod = _._invokeMethod$1$3$arguments$missingOk; _ = N.TextInputConfiguration.prototype; _.super$TextInputConfiguration$toJson = _.toJson$0; _ = U.__AnimatedCrossFadeState_State_TickerProviderStateMixin.prototype; _.super$__AnimatedCrossFadeState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = G.__AnimatedSwitcherState_State_TickerProviderStateMixin.prototype; _.super$__AnimatedSwitcherState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = L.AutomaticKeepAliveClientMixin.prototype; _.super$AutomaticKeepAliveClientMixin$build = _.build$1; _ = T.Flex.prototype; _.super$Flex$updateRenderObject = _.updateRenderObject$2; _ = N.WidgetsBindingObserver.prototype; _.super$WidgetsBindingObserver$didChangeMetrics = _.didChangeMetrics$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding$unlocked = _.unlocked$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding$initServiceExtensions = _.initServiceExtensions$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding$initServiceExtensions = _.initServiceExtensions$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding$handleMemoryPressure = _.handleMemoryPressure$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding$initInstances = _.initInstances$0; _ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding.prototype; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initInstances = _.initInstances$0; _.super$_WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding$initServiceExtensions = _.initServiceExtensions$0; _ = S._DraggableScrollableNotification_Notification_ViewportNotificationMixin.prototype; _.super$_DraggableScrollableNotification_Notification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = D._EditableTextState_State_AutomaticKeepAliveClientMixin.prototype; _.super$_EditableTextState_State_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin.prototype; _.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = U.FocusTraversalPolicy.prototype; _.super$FocusTraversalPolicy$invalidateScopeData = _.invalidateScopeData$1; _.super$FocusTraversalPolicy$changedScope = _.changedScope$2$node$oldScope; _ = A.FormFieldState.prototype; _.super$FormFieldState$didChange = _.didChange$1; _.super$FormFieldState$initState = _.initState$0; _ = N.State.prototype; _.super$State$initState = _.initState$0; _.super$State$didUpdateWidget = _.didUpdateWidget$1; _.super$State$setState = _.setState$1; _.super$State$deactivate = _.deactivate$0; _.super$State$dispose = _.dispose$0; _.super$State$didChangeDependencies = _.didChangeDependencies$0; _ = N.Element0.prototype; _.super$Element$updateChild = _.updateChild$3; _.super$Element$mount = _.mount$2; _.super$Element$update = _.update$1; _.super$Element$_updateSlot = _._updateSlot$1; _.super$Element$inflateWidget = _.inflateWidget$2; _.super$Element$forgetChild = _.forgetChild$1; _.super$Element$activate = _.activate$0; _.super$Element$deactivate = _.deactivate$0; _.super$Element$unmount = _.unmount$0; _.super$Element$dependOnInheritedElement = _.dependOnInheritedElement$2$aspect; _.super$Element$didChangeDependencies = _.didChangeDependencies$0; _ = N.ComponentElement.prototype; _.super$ComponentElement$_firstBuild = _._firstBuild$0; _.super$ComponentElement$performRebuild = _.performRebuild$0; _ = N.ProxyElement.prototype; _.super$ProxyElement$build = _.build$0; _.super$ProxyElement$update = _.update$1; _.super$ProxyElement$updated = _.updated$1; _ = N.InheritedElement.prototype; _.super$InheritedElement$notifyClients = _.notifyClients$1; _ = N.RenderObjectElement.prototype; _.super$RenderObjectElement$mount = _.mount$2; _.super$RenderObjectElement$update = _.update$1; _.super$RenderObjectElement$performRebuild = _.performRebuild$0; _.super$RenderObjectElement$unmount = _.unmount$0; _ = N.RootRenderObjectElement.prototype; _.super$RootRenderObjectElement$mount = _.mount$2; _ = N.MultiChildRenderObjectElement.prototype; _.super$MultiChildRenderObjectElement$mount = _.mount$2; _.super$MultiChildRenderObjectElement$update = _.update$1; _ = G.ImplicitlyAnimatedWidgetState.prototype; _.super$ImplicitlyAnimatedWidgetState$initState = _.initState$0; _ = G._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin.prototype; _.super$_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = K.Route.prototype; _.super$Route$install = _.install$0; _.super$Route$didPush = _.didPush$0; _.super$Route$didAdd = _.didAdd$0; _.super$Route$didReplace = _.didReplace$1; _.super$Route$willPop = _.willPop$0; _.super$Route$didPop = _.didPop$1; _.super$Route$didPopNext = _.didPopNext$1; _.super$Route$didChangeNext = _.didChangeNext$1; _.super$Route$didChangePrevious = _.didChangePrevious$1; _.super$Route$changedInternalState = _.changedInternalState$0; _.super$Route$changedExternalState = _.changedExternalState$0; _.super$Route$dispose = _.dispose$0; _ = K.NavigatorObserver.prototype; _.super$NavigatorObserver$didReplace = _.didReplace$2$newRoute$oldRoute; _ = K._RestorationInformation.prototype; _.super$_RestorationInformation$computeSerializableData = _.computeSerializableData$0; _ = K._NavigatorState_State_TickerProviderStateMixin.prototype; _.super$_NavigatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_NavigatorState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_NavigatorState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = U.Notification0.prototype; _.super$Notification$visitAncestor = _.visitAncestor$1; _.super$Notification$debugFillDescription = _.debugFillDescription$1; _ = L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin.prototype; _.super$_OverscrollIndicatorNotification_Notification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = L.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin.prototype; _.super$__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = Z._SliverReorderableListState_State_TickerProviderStateMixin.prototype; _.super$_SliverReorderableListState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_SliverReorderableListState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = K.RestorableProperty.prototype; _.super$RestorableProperty$dispose = _.dispose$0; _ = K.RestorationMixin.prototype; _.super$RestorationMixin$didToggleBucket = _.didToggleBucket$1; _ = U.RestorableValue.prototype; _.super$RestorableValue$value = _.set$value; _ = U._RestorablePrimitiveValueN.prototype; _.super$_RestorablePrimitiveValueN$fromPrimitives = _.fromPrimitives$1; _.super$_RestorablePrimitiveValueN$toPrimitives = _.toPrimitives$0; _ = U.RestorableListenable.prototype; _.super$RestorableListenable$initWithValue = _.initWithValue$1; _.super$RestorableListenable$dispose = _.dispose$0; _ = T.OverlayRoute.prototype; _.super$OverlayRoute$install = _.install$0; _.super$OverlayRoute$didPop = _.didPop$1; _.super$OverlayRoute$dispose = _.dispose$0; _ = T.TransitionRoute.prototype; _.super$TransitionRoute$createAnimation = _.createAnimation$0; _.super$TransitionRoute$install = _.install$0; _.super$TransitionRoute$didPush = _.didPush$0; _.super$TransitionRoute$didAdd = _.didAdd$0; _.super$TransitionRoute$didPop = _.didPop$1; _ = T.RouteObserver.prototype; _.super$RouteObserver$didPop = _.didPop$2; _.super$RouteObserver$didPush = _.didPush$2; _ = T._ModalRoute_TransitionRoute_LocalHistoryRoute.prototype; _.super$_ModalRoute_TransitionRoute_LocalHistoryRoute$willPop = _.willPop$0; _ = M.ScrollActivity.prototype; _.super$ScrollActivity$dispose = _.dispose$0; _ = F.ScrollController.prototype; _.super$ScrollController$attach = _.attach$1; _.super$ScrollController$debugFillDescription = _.debugFillDescription$1; _ = G.ScrollNotification.prototype; _.super$ScrollNotification$debugFillDescription = _.debugFillDescription$1; _ = G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin.prototype; _.super$_ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin$debugFillDescription = _.debugFillDescription$1; _ = L.ScrollPhysics.prototype; _.super$ScrollPhysics$adjustPositionForNewDimensions = _.adjustPositionForNewDimensions$4$isScrolling$newPosition$oldPosition$velocity; _.super$ScrollPhysics$createBallisticSimulation = _.createBallisticSimulation$2; _ = A.ScrollPosition.prototype; _.super$ScrollPosition$absorb = _.absorb$1; _.super$ScrollPosition$setPixels = _.setPixels$1; _.super$ScrollPosition$applyViewportDimension = _.applyViewportDimension$1; _.super$ScrollPosition$applyContentDimensions = _.applyContentDimensions$2; _.super$ScrollPosition$applyNewDimensions = _.applyNewDimensions$0; _.super$ScrollPosition$ensureVisible = _.ensureVisible$6$alignment$alignmentPolicy$curve$duration$targetRenderObject; _.super$ScrollPosition$beginActivity = _.beginActivity$1; _.super$ScrollPosition$dispose = _.dispose$0; _.super$ScrollPosition$debugFillDescription = _.debugFillDescription$1; _ = R.ScrollPositionWithSingleContext.prototype; _.super$ScrollPositionWithSingleContext$applyUserOffset = _.applyUserOffset$1; _.super$ScrollPositionWithSingleContext$goBallistic = _.goBallistic$1; _.super$ScrollPositionWithSingleContext$drag = _.drag$2; _ = F._ScrollableState_State_TickerProviderStateMixin.prototype; _.super$_ScrollableState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_ScrollableState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin.prototype; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didUpdateWidget = _.didUpdateWidget$1; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$didChangeDependencies = _.didChangeDependencies$0; _.super$_ScrollableState_State_TickerProviderStateMixin_RestorationMixin$dispose = _.dispose$0; _ = E.RawScrollbarState.prototype; _.super$RawScrollbarState$initState = _.initState$0; _.super$RawScrollbarState$didChangeDependencies = _.didChangeDependencies$0; _.super$RawScrollbarState$handleThumbPress = _.handleThumbPress$0; _.super$RawScrollbarState$handleThumbPressStart = _.handleThumbPressStart$1; _.super$RawScrollbarState$handleThumbPressEnd = _.handleThumbPressEnd$2; _.super$RawScrollbarState$handleHover = _.handleHover$1; _.super$RawScrollbarState$handleHoverExit = _.handleHoverExit$1; _.super$RawScrollbarState$dispose = _.dispose$0; _ = E._RawScrollbarState_State_TickerProviderStateMixin.prototype; _.super$_RawScrollbarState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_RawScrollbarState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = E.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin.prototype; _.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$attach = _.attach$1; _.super$__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin$detach = _.detach$0; _ = G.SliverMultiBoxAdaptorWidget.prototype; _.super$SliverMultiBoxAdaptorWidget$estimateMaxScrollOffset = _.estimateMaxScrollOffset$5; _ = F.TextSelectionGestureDetectorBuilder.prototype; _.super$TextSelectionGestureDetectorBuilder$onForcePressStart = _.onForcePressStart$1; _ = F.__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin.prototype; _.super$__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A._SlidableState_State_TickerProviderStateMixin.prototype; _.super$_SlidableState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_SlidableState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = A._SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin.prototype; _.super$_SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin$initState = _.initState$0; _ = M._StyledToastWidgetState_State_TickerProviderStateMixin.prototype; _.super$_StyledToastWidgetState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = L.__SuggestionsListState_State_SingleTickerProviderStateMixin.prototype; _.super$__SuggestionsListState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__SuggestionsListState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = G.BaseRequest.prototype; _.super$BaseRequest$finalize = _.finalize$0; _ = T.BaseEntity.prototype; _.super$BaseEntity$getActions = _.getActions$4$client$includeEdit$multiselect$userCompany; _ = E.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__InvoiceEmailViewState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = Q.EntityPresenter.prototype; _.super$EntityPresenter$getField = _.getField$2$context$field; _ = L.__SortArrowState_State_TickerProviderStateMixin0.prototype; _.super$__SortArrowState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = K.__VariablesHelpState_State_SingleTickerProviderStateMixin.prototype; _.super$__VariablesHelpState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = M.__ClientEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = G.__ClientViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = V.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__CompanyGatewayEditState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = G.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyGatewayViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = M.__CreditEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__CreditEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = F.__DashboardScreenState_State_TickerProviderStateMixin.prototype; _.super$__DashboardScreenState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = N.__DesignEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__DesignEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__DesignEditState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = D.__ExpenseEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpenseEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = U.__ExpenseViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ExpenseViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = E.__GroupViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__GroupViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = F.__InvoiceEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = S._InvoiceEditDesktopState_State_TickerProviderStateMixin.prototype; _.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$dispose = _.dispose$0; _.super$_InvoiceEditDesktopState_State_TickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = D.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = E.__InvoiceViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = Z.__ProductViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ProductViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = M.__ProjectViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__ProjectViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = B.__QuoteEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__QuoteEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = O.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = O.__AccountManagementState_State_SingleTickerProviderStateMixin.prototype; _.super$__AccountManagementState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__AccountManagementState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = S.__ClientPortalState_State_SingleTickerProviderStateMixin.prototype; _.super$__ClientPortalState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__ClientPortalState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = A.__CompanyDetailsState_State_SingleTickerProviderStateMixin.prototype; _.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__CompanyDetailsState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = X.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin.prototype; _.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = S.__CustomFieldsState_State_SingleTickerProviderStateMixin.prototype; _.super$__CustomFieldsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = R.__DeviceSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__DeviceSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = F.__GeneratedNumbersState_State_SingleTickerProviderStateMixin.prototype; _.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__GeneratedNumbersState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = Z.__InvoiceDesignState_State_SingleTickerProviderStateMixin.prototype; _.super$__InvoiceDesignState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = G.__LocalizationSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__LocalizationSettingsState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = L.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin.prototype; _.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = K.__UserDetailsState_State_SingleTickerProviderStateMixin.prototype; _.super$__UserDetailsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__UserDetailsState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = D.__WorkflowSettingsState_State_SingleTickerProviderStateMixin.prototype; _.super$__WorkflowSettingsState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = S.__SubscriptionEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__SubscriptionEditState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = X.__TaskEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__TaskEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = Q.__TaskViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__TaskViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = U.__UserEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__UserEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _.super$__UserEditState_State_SingleTickerProviderStateMixin$didChangeDependencies = _.didChangeDependencies$0; _ = K.__VendorEditState_State_SingleTickerProviderStateMixin.prototype; _.super$__VendorEditState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = N.__VendorViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__VendorViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = T.Repository.prototype; _.super$Repository$close = _.close$1; _ = X.__PdfViewState_State_SingleTickerProviderStateMixin.prototype; _.super$__PdfViewState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = F.__FadeWidgetState_State_SingleTickerProviderStateMixin.prototype; _.super$__FadeWidgetState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = M._PhotoViewCoreState_State_TickerProviderStateMixin.prototype; _.super$_PhotoViewCoreState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate.prototype; _.super$_PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate$dispose = _.dispose$0; _ = N._RoundedLoadingButtonState_State_TickerProviderStateMixin.prototype; _.super$_RoundedLoadingButtonState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = Y.SourceSpanMixin.prototype; _.super$SourceSpanMixin$compareTo = _.compareTo$1; _.super$SourceSpanMixin$$eq = _.$eq; })(); (function installTearOffs() { var _static_1 = hunkHelpers._static_1, _static_0 = hunkHelpers._static_0, _instance_0_u = hunkHelpers._instance_0u, _instance_1_u = hunkHelpers._instance_1u, _instance_1_i = hunkHelpers._instance_1i, _instance_0_i = hunkHelpers._instance_0i, _instance_2_u = hunkHelpers._instance_2u, _static_2 = hunkHelpers._static_2, _static = hunkHelpers.installStaticTearOff, _instance = hunkHelpers.installInstanceTearOff, _instance_2_i = hunkHelpers._instance_2i; _static_1(H, "_engine_BitmapCanvas__onEvictElement$closure", "BitmapCanvas__onEvictElement", 2662); _static_0(H, "_engine_SkiaObjects_postFrameCleanUp$closure", "SkiaObjects_postFrameCleanUp", 0); _static_1(H, "_engine___noopCallback$closure", "_noopCallback", 117); _static_1(H, "_engine___newlinePredicate$closure", "_newlinePredicate", 186); _static_1(H, "_engine___emptyCallback$closure", "_emptyCallback", 81); _instance_0_u(H.AlarmClock.prototype, "get$_timerDidFire", "_timerDidFire$0", 0); _instance_0_u(H.FallbackFontDownloadQueue.prototype, "get$startDownloads", "startDownloads$0", 93); _instance_1_u(H.SkiaFontCollection.prototype, "get$_getArrayBuffer", "_getArrayBuffer$1", 2632); var _; _instance_1_u(_ = H.DomRenderer.prototype, "get$_metricsDidChange", "_metricsDidChange$1", 2009); _instance_1_u(_, "get$_languageDidChange", "_languageDidChange$1", 66); _instance_1_u(H.KeyboardBinding.prototype, "get$_onKeyData", "_onKeyData$1", 2468); _instance_1_i(H.MultiEntriesBrowserHistory.prototype, "get$onPopState", "onPopState$1", 33); _instance_1_i(H.SingleEntryBrowserHistory.prototype, "get$onPopState", "onPopState$1", 33); _instance_1_u(H.PointerBinding.prototype, "get$_onPointerData", "_onPointerData$1", 966); _instance_0_i(H.RulerHost.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = H.DefaultTextEditingStrategy.prototype, "get$__engine$_handleChange", "__engine$_handleChange$1", 66); _instance_1_u(_, "get$_maybeSendAction", "_maybeSendAction$1", 66); _instance_2_u(H.WebExperiments.prototype, "get$updateExperiment", "updateExperiment$2", 1904); _static_2(J, "_interceptors_JSArray__compareAny$closure", "JSArray__compareAny", 317); _instance_1_i(H._CastIterableBase.prototype, "get$contains", "contains$1", 109); _static_0(H, "_js_helper_Primitives_dateNow$closure", "Primitives_dateNow", 218); _static_1(H, "_js_helper___matchString$closure", "_matchString", 2663); _static_1(H, "_js_helper___stringIdentity$closure", "_stringIdentity", 101); _instance_1_i(H.JsLinkedHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); _instance_1_u(H._MatchImplementation.prototype, "get$group", "group$1", 2018); _instance_1_u(H.StringMatch.prototype, "get$group", "group$1", 246); _static_1(P, "async__AsyncRun__scheduleImmediateJsOverride$closure", "_AsyncRun__scheduleImmediateJsOverride", 247); _static_1(P, "async__AsyncRun__scheduleImmediateWithSetImmediate$closure", "_AsyncRun__scheduleImmediateWithSetImmediate", 247); _static_1(P, "async__AsyncRun__scheduleImmediateWithTimer$closure", "_AsyncRun__scheduleImmediateWithTimer", 247); _static_0(P, "async___startMicrotaskLoop$closure", "_startMicrotaskLoop", 0); _static_1(P, "async___nullDataHandler$closure", "_nullDataHandler", 81); _static_2(P, "async___nullErrorHandler$closure", "_nullErrorHandler", 124); _static_0(P, "async___nullDoneHandler$closure", "_nullDoneHandler", 0); _static(P, "async___rootHandleUncaughtError$closure", 5, null, ["call$5"], ["_rootHandleUncaughtError"], 2664, 0); _static(P, "async___rootRun$closure", 4, null, ["call$1$4", "call$4"], ["_rootRun", function($self, $parent, zone, f) { return P._rootRun($self, $parent, zone, f, type$.dynamic); }], 2665, 1); _static(P, "async___rootRunUnary$closure", 5, null, ["call$2$5", "call$5"], ["_rootRunUnary", function($self, $parent, zone, f, arg) { return P._rootRunUnary($self, $parent, zone, f, arg, type$.dynamic, type$.dynamic); }], 2666, 1); _static(P, "async___rootRunBinary$closure", 6, null, ["call$3$6", "call$6"], ["_rootRunBinary", function($self, $parent, zone, f, arg1, arg2) { return P._rootRunBinary($self, $parent, zone, f, arg1, arg2, type$.dynamic, type$.dynamic, type$.dynamic); }], 2667, 1); _static(P, "async___rootRegisterCallback$closure", 4, null, ["call$1$4", "call$4"], ["_rootRegisterCallback", function($self, $parent, zone, f) { return P._rootRegisterCallback($self, $parent, zone, f, type$.dynamic); }], 2668, 0); _static(P, "async___rootRegisterUnaryCallback$closure", 4, null, ["call$2$4", "call$4"], ["_rootRegisterUnaryCallback", function($self, $parent, zone, f) { return P._rootRegisterUnaryCallback($self, $parent, zone, f, type$.dynamic, type$.dynamic); }], 2669, 0); _static(P, "async___rootRegisterBinaryCallback$closure", 4, null, ["call$3$4", "call$4"], ["_rootRegisterBinaryCallback", function($self, $parent, zone, f) { return P._rootRegisterBinaryCallback($self, $parent, zone, f, type$.dynamic, type$.dynamic, type$.dynamic); }], 2670, 0); _static(P, "async___rootErrorCallback$closure", 5, null, ["call$5"], ["_rootErrorCallback"], 2671, 0); _static(P, "async___rootScheduleMicrotask$closure", 4, null, ["call$4"], ["_rootScheduleMicrotask"], 2672, 0); _static(P, "async___rootCreateTimer$closure", 5, null, ["call$5"], ["_rootCreateTimer"], 2673, 0); _static(P, "async___rootCreatePeriodicTimer$closure", 5, null, ["call$5"], ["_rootCreatePeriodicTimer"], 2674, 0); _static(P, "async___rootPrint$closure", 4, null, ["call$4"], ["_rootPrint"], 2675, 0); _static_1(P, "async___printToZone$closure", "_printToZone", 88); _static(P, "async___rootFork$closure", 5, null, ["call$5"], ["_rootFork"], 2676, 0); _instance_0_u(_ = P._BroadcastSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance(_ = P._BroadcastStreamController.prototype, "get$addError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["addError$2", "addError$1"], 214, 0); _instance_1_i(_, "get$_async$_add", "_async$_add$1", 33); _instance_2_u(_, "get$_addError", "_addError$2", 124); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance_1_i(_ = P._AsBroadcastStreamController.prototype, "get$add", "add$1", 33); _instance(_, "get$addError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["addError$2", "addError$1"], 214, 0); _instance_0_i(_, "get$close", "close$0", 453); _instance(P._Completer.prototype, "get$completeError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["completeError$2", "completeError$1"], 214, 0); _instance(P._AsyncCompleter.prototype, "get$complete", 1, 0, function() { return [null]; }, ["call$1", "call$0"], ["complete$1", "complete$0"], 2430, 0); _instance_2_u(P._Future.prototype, "get$_completeError", "_completeError$2", 124); _instance(_ = P._StreamController.prototype, "get$addError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["addError$2", "addError$1"], 214, 0); _instance_1_i(_, "get$_async$_add", "_async$_add$1", 33); _instance_2_u(_, "get$_addError", "_addError$2", 124); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance_0_u(_ = P._ControllerSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_0_u(_ = P._BufferingStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_0_u(P._DoneStreamSubscription.prototype, "get$_sendDone", "_sendDone$0", 0); _instance_0_u(_ = P._AsBroadcastStream.prototype, "get$_onCancel", "_onCancel$0", 0); _instance_0_u(_, "get$_onListen", "_onListen$0", 0); _instance_1_u(_ = P._StreamIterator.prototype, "get$_async$_onData", "_async$_onData$1", 33); _instance_2_u(_, "get$_onError", "_onError$2", 124); _instance_0_u(_, "get$_onDone", "_onDone$0", 0); _instance_0_u(_ = P._ForwardingStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_1_u(_, "get$_handleData", "_handleData$1", 33); _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 2526); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); _instance_0_u(_ = P._SinkTransformerStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); _instance_1_u(_, "get$_handleData", "_handleData$1", 33); _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 124); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); _static_2(P, "collection___defaultEquals$closure", "_defaultEquals", 405); _static_1(P, "collection___defaultHashCode$closure", "_defaultHashCode", 404); _static_2(P, "collection_ListMixin__compareAny$closure", "ListMixin__compareAny", 317); _static_2(P, "collection___dynamicCompare$closure", "_dynamicCompare", 317); _instance_1_i(P._LinkedCustomHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); _instance_1_i(P._HashSet.prototype, "get$contains", "contains$1", 109); _instance_1_i(P._LinkedHashSet.prototype, "get$contains", "contains$1", 109); _instance_1_i(P.IterableMixin.prototype, "get$contains", "contains$1", 109); _instance_1_i(P._UnmodifiableSet.prototype, "get$contains", "contains$1", 109); _instance_1_i(P.SplayTreeSet.prototype, "get$contains", "contains$1", 109); _static_1(P, "convert___defaultToEncodable$closure", "_defaultToEncodable", 10); _instance_1_i(_ = P._ByteCallbackSink.prototype, "get$add", "add$1", 33); _instance_0_i(_, "get$close", "close$0", 0); _static_1(P, "core__identityHashCode$closure", "identityHashCode", 404); _static_2(P, "core__identical$closure", "identical", 405); _static_2(P, "core_Comparable_compare$closure", "Comparable_compare", 2677); _static_1(P, "core__GeneratorIterable__id$closure", "_GeneratorIterable__id", 177); _static_1(P, "core_Uri_decodeComponent$closure", "Uri_decodeComponent", 101); _instance_1_i(_ = P.Iterable.prototype, "get$contains", "contains$1", 109); _instance(_, "get$toList", 1, 0, function() { return {growable: true}; }, ["call$1$growable", "call$0"], ["toList$1$growable", "toList$0"], "List({growable:bool})", 0); _static(W, "html__Html5NodeValidator__standardAttributeValidator$closure", 4, null, ["call$4"], ["_Html5NodeValidator__standardAttributeValidator"], 563, 0); _static(W, "html__Html5NodeValidator__uriAttributeValidator$closure", 4, null, ["call$4"], ["_Html5NodeValidator__uriAttributeValidator"], 563, 0); _instance_2_i(W.HttpRequest.prototype, "get$setRequestHeader", "setRequestHeader$2", 105); _instance_1_u(_ = W.Console.prototype, "get$group", "group$1", 33); _instance_1_u(_, "get$warn", "warn$1", 33); _instance_0_u(_ = P._FileStream.prototype, "get$_readBlock", "_readBlock$0", 0); _instance_0_i(_, "get$_io$_start", "_io$_start$0", 0); _instance_0_i(P._File.prototype, "get$length", "length$0", 242); _static_1(P, "js___convertToJS$closure", "_convertToJS", 500); _static_1(P, "js___convertToDart$closure", "_convertToDart", 148); _static(P, "math__max$closure", 2, null, ["call$1$2", "call$2"], ["max", function(a, b) { return P.max(a, b, type$.num); }], 2679, 1); _static(P, "ui_Size_lerp$closure", 3, null, ["call$3"], ["Size_lerp"], 2680, 0); _static(P, "ui__lerpDouble$closure", 3, null, ["call$3"], ["lerpDouble"], 2681, 0); _static(P, "ui_Color_lerp$closure", 3, null, ["call$3"], ["Color_lerp"], 2682, 0); _instance_1_u(P._StoredMessage.prototype, "get$invoke", "invoke$1", 117); _instance_2_u(D.BoardItemState.prototype, "get$onDropItem", "onDropItem$2", 1108); _instance_1_u(O.BoardListState.prototype, "get$onDropList", "onDropList$1", 1101); _instance_1_i(A.CopyOnWriteSet.prototype, "get$contains", "contains$1", 109); _instance_1_u(_ = A.CachedNetworkImage.prototype, "get$_octoPlaceholderBuilder", "_octoPlaceholderBuilder$1", 79); _instance(_, "get$_octoErrorBuilder", 0, 3, null, ["call$3"], ["_octoErrorBuilder$3"], 502, 0); _instance_1_u(_ = B.MultiImageStreamCompleter.prototype, "get$_multi_image_stream_completer$_handleAppFrame", "_multi_image_stream_completer$_handleAppFrame$1", 28); _instance_0_u(_, "get$_multi_image_stream_completer$_scheduleAppFrame", "_multi_image_stream_completer$_scheduleAppFrame$0", 0); _instance_1_i(_, "get$addListener", "addListener$1", 409); _instance_1_u(L.CartesianChart.prototype, "get$makeSeries", "makeSeries$1", "MutableSeries(Object?)"); _instance_1_u(_ = O.DomainHighlighter0.prototype, "get$_selectionChanged", "_selectionChanged$1", 33); _instance_1_u(_, "get$_updateColorFunctions", "_updateColorFunctions$1", 33); _instance_1_u(_ = D.Legend.prototype, "get$defaultLegendMeasureFormatter", "defaultLegendMeasureFormatter$1", 729); _instance_1_u(_, "get$_preProcess", "_preProcess$1", 33); _instance_1_u(_, "get$_postProcess", "_postProcess$1", 33); _instance_1_u(_, "get$_legend$_selectionChanged", "_legend$_selectionChanged$1", 33); _instance_1_u(Z.SeriesLegend0.prototype, "get$onData", "onData$1", 33); _instance_1_u(_ = E.LinePointHighlighter0.prototype, "get$_line_point_highlighter$_selectionChanged", "_line_point_highlighter$_selectionChanged$1", 33); _instance_0_u(_, "get$_updateViewData", "_updateViewData$0", 0); _instance_1_u(_ = Z.SelectNearest0.prototype, "get$_onTapTest", "_onTapTest$1", 408); _instance_1_u(_, "get$_onLongPressSelect", "_onLongPressSelect$1", 408); _instance(_, "get$_onSelect", 0, 1, null, ["call$2", "call$1"], ["_onSelect$2", "_onSelect$1"], 926, 0); _instance(_, "get$_onDeselectAll", 0, 3, null, ["call$3"], ["_onDeselectAll$3"], 929, 0); _instance_1_u(X.BaseChart.prototype, "get$_notACustomBehavior", "_notACustomBehavior$1", 682); _instance_0_u(U.BaseChartState.prototype, "get$_animationTick", "_animationTick$0", 0); _instance_1_u(X.ChartContainerCustomPaint.prototype, "get$_buildSemantics", "_buildSemantics$1", 1015); _instance_1_u(_ = K.ChartGestureDetector.prototype, "get$onTapDown", "onTapDown$1", 98); _instance_1_u(_, "get$onTapUp", "onTapUp$1", 147); _instance_1_u(_, "get$onScaleStart", "onScaleStart$1", 674); _instance_1_u(_, "get$onScaleUpdate", "onScaleUpdate$1", 673); _instance_1_u(_, "get$onScaleEnd", "onScaleEnd$1", 671); _instance_2_u(_ = U.DeepCollectionEquality.prototype, "get$equals", "equals$2", 405); _instance_1_i(_, "get$hash", "hash$1", 404); _instance_1_u(_, "get$isValidKey", "isValidKey$1", 109); _instance_0_i(R.XFileBase.prototype, "get$length", "length$0", 242); _instance_0_i(A.XFile.prototype, "get$length", "length$0", 242); _instance_1_u(_ = M._DraggableScrollbarState.prototype, "get$_onVerticalDragStart", "_onVerticalDragStart$1", 100); _instance_1_u(_, "get$_draggable_scrollbar$_onVerticalDragUpdate", "_draggable_scrollbar$_onVerticalDragUpdate$1", 70); _instance_1_u(_, "get$_onVerticalDragEnd", "_onVerticalDragEnd$1", 104); _instance_0_i(T.MemoryFile.prototype, "get$length", "length$0", 242); _static_2(X, "memory_file_system___defaultOpHandle$closure", "_defaultOpHandle", 2683); _instance_1_u(U.MemoryFileSystemEntity.prototype, "get$defaultCheckType", "defaultCheckType$1", 1129); _static_1(B, "utils0__isEmpty$closure", "isEmpty", 73); _instance(_ = G.AnimationController.prototype, "get$reverse", 1, 0, function() { return {from: null}; }, ["call$1$from", "call$0"], ["reverse$1$from", "reverse$0"], 1157, 0); _instance_1_u(_, "get$_directionSetter", "_directionSetter$1", 1162); _instance_0_i(_, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_animation_controller$_tick", "_animation_controller$_tick$1", 28); _instance_1_u(S.ReverseAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 35); _instance_1_u(S.CurvedAnimation.prototype, "get$_updateCurveDirection", "_updateCurveDirection$1", 35); _instance_1_u(_ = S.TrainHoppingAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 35); _instance_0_u(_, "get$_valueChangeHandler", "_valueChangeHandler$0", 0); _instance_1_u(_ = S.CompoundAnimation.prototype, "get$_maybeNotifyStatusListeners", "_maybeNotifyStatusListeners$1", 35); _instance_0_u(_, "get$_maybeNotifyListeners", "_maybeNotifyListeners$0", 0); _instance_0_u(S.AnimationLocalListenersMixin.prototype, "get$notifyListeners", "notifyListeners$0", 0); _instance_1_u(S.AnimationLocalStatusListenersMixin.prototype, "get$notifyStatusListeners", "notifyStatusListeners$1", 35); _instance_1_i(Y._Interval.prototype, "get$value", "value$1", 6); _instance_1_u(_ = D._CupertinoBackGestureDetectorState.prototype, "get$_route$_handleDragStart", "_route$_handleDragStart$1", 100); _instance_1_u(_, "get$_route$_handleDragUpdate", "_route$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_route$_handleDragEnd", "_route$_handleDragEnd$1", 104); _instance_0_u(_, "get$_route$_handleDragCancel", "_route$_handleDragCancel$0", 0); _instance_1_u(_, "get$_route$_handlePointerDown", "_route$_handlePointerDown$1", 215); _instance_0_u(E._CupertinoScrollbarState.prototype, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_ = N._CupertinoSwitchState.prototype, "get$_switch0$_handleTapDown", "_switch0$_handleTapDown$1", 98); _instance_0_u(_, "get$_switch0$_handleTap", "_switch0$_handleTap$0", 0); _instance_1_u(_, "get$_switch0$_handleTapUp", "_switch0$_handleTapUp$1", 147); _instance_0_u(_, "get$_switch0$_handleTapCancel", "_switch0$_handleTapCancel$0", 0); _instance_1_u(_, "get$_switch0$_handleDragStart", "_switch0$_handleDragStart$1", 100); _instance_1_u(_, "get$_switch0$_handleDragUpdate", "_switch0$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch0$_handleDragEnd", "_switch0$_handleDragEnd$1", 104); _static_1(U, "assertions_FlutterError__defaultErrorHandler$closure", "FlutterError__defaultErrorHandler", 2684); _static(U, "assertions_FlutterError_dumpErrorToConsole$closure", 1, null, ["call$2$forceReport", "call$1"], ["FlutterError_dumpErrorToConsole", function(details) { return U.FlutterError_dumpErrorToConsole(details, false); }], 2685, 0); _static_1(U, "assertions_DiagnosticsStackTrace__createStackFrame$closure", "DiagnosticsStackTrace__createStackFrame", 2686); _instance_0_i(_ = B.ChangeNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$notifyListeners", "notifyListeners$0", 0); _instance_1_i(Y.DiagnosticPropertiesBuilder.prototype, "get$add", "add$1", 627); _instance_1_u(B.AbstractNode.prototype, "get$redepthChild", "redepthChild$1", 1327); _static_1(R, "stack_frame_StackFrame_fromStackTraceLine$closure", "StackFrame_fromStackTraceLine", 2687); _instance_1_u(_ = N.GestureBinding.prototype, "get$_handlePointerDataPacket", "_handlePointerDataPacket$1", 1356); _instance_1_u(_, "get$cancelPointer", "cancelPointer$1", 67); _instance_0_u(_, "get$_flushPointerEventQueue", "_flushPointerEventQueue$0", 0); _instance_1_u(_, "get$_handlePointerEventImmediately", "_handlePointerEventImmediately$1", 92); _instance_0_u(_, "get$_handleSampleTimeChanged", "_handleSampleTimeChanged$0", 0); _static(K, "force_press_ForcePressGestureRecognizer__inverseLerp$closure", 3, null, ["call$3"], ["ForcePressGestureRecognizer__inverseLerp"], 2688, 0); _instance_1_u(K.ForcePressGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _static_1(O, "monodrag_DragGestureRecognizer__defaultBuilder$closure", "DragGestureRecognizer__defaultBuilder", 487); _instance_1_u(O.DragGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _instance_1_u(_ = V.MultiDragGestureRecognizer.prototype, "get$_multidrag$_handleEvent", "_multidrag$_handleEvent$1", 92); _instance_1_u(_, "get$_removeState", "_removeState$1", 67); _instance_0_u(V._DelayedPointerState.prototype, "get$_delayPassed", "_delayPassed$0", 0); _instance_0_u(F._CountdownZoned.prototype, "get$_onTimeout", "_onTimeout$0", 0); _instance_1_u(_ = F.DoubleTapGestureRecognizer.prototype, "get$_handleEvent", "_handleEvent$1", 92); _instance_1_u(_, "get$_reject", "_reject$1", 1389); _instance_0_u(_, "get$_multitap$_reset", "_multitap$_reset$0", 0); _instance_1_u(S.OneSequenceGestureRecognizer.prototype, "get$stopTrackingPointer", "stopTrackingPointer$1", 67); _instance_1_u(S.PrimaryPointerGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _instance_1_u(B.ScaleGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _instance(_ = A._LicensePageState.prototype, "get$_packageLicensePage", 0, 3, null, ["call$3"], ["_packageLicensePage$3"], 622, 0); _instance_2_u(_, "get$_packagesView", "_packagesView$2", 621); _instance_2_u(_ = S._MaterialAppState.prototype, "get$_inspectorSelectButtonBuilder", "_inspectorSelectButtonBuilder$2", 1644); _instance_2_u(_, "get$_materialBuilder", "_materialBuilder$2", 229); _instance_0_u(_ = E._AppBarState.prototype, "get$_handleDrawerButton", "_handleDrawerButton$0", 0); _instance_0_u(_, "get$_handleDrawerButtonEnd", "_handleDrawerButtonEnd$0", 0); _instance_1_u(_ = E._BottomSheetState.prototype, "get$_bottom_sheet$_handleDragStart", "_bottom_sheet$_handleDragStart$1", 100); _instance_1_u(_, "get$_bottom_sheet$_handleDragUpdate", "_bottom_sheet$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_bottom_sheet$_handleDragEnd", "_bottom_sheet$_handleDragEnd$1", 104); _instance_1_u(_, "get$extentChanged", "extentChanged$1", 604); _instance_1_u(_ = Z._RawMaterialButtonState.prototype, "get$_handleHighlightChanged", "_handleHighlightChanged$1", 52); _instance_1_u(_, "get$_handleHoveredChanged", "_handleHoveredChanged$1", 52); _instance_1_u(_, "get$_handleFocusedChanged", "_handleFocusedChanged$1", 52); _instance_1_u(_ = Z._RenderInputPadding.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(_ = K._ButtonStyleState.prototype, "get$_button_style_button$_handleHighlightChanged", "_button_style_button$_handleHighlightChanged$1", 52); _instance_1_u(_, "get$_button_style_button$_handleHoveredChanged", "_button_style_button$_handleHoveredChanged$1", 52); _instance_1_u(_, "get$_button_style_button$_handleFocusedChanged", "_button_style_button$_handleFocusedChanged$1", 52); _instance_1_u(_ = K._RenderInputPadding0.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(_ = Q._CalendarDatePickerState.prototype, "get$_handleMonthChanged", "_handleMonthChanged$1", 210); _instance_1_u(_, "get$_handleYearChanged", "_handleYearChanged$1", 210); _instance_1_u(_, "get$_handleDayChanged", "_handleDayChanged$1", 210); _instance_1_u(_ = Q._MonthPickerState.prototype, "get$_handleDateSelected", "_handleDateSelected$1", 210); _instance_1_u(_, "get$_handleMonthPageChanged", "_handleMonthPageChanged$1", 67); _instance_0_u(_, "get$_handleNextMonth", "_handleNextMonth$0", 0); _instance_0_u(_, "get$_handlePreviousMonth", "_handlePreviousMonth$0", 0); _instance_1_u(_, "get$_handleGridFocusChange", "_handleGridFocusChange$1", 52); _instance_1_u(_, "get$_handleGridNextFocus", "_handleGridNextFocus$1", 1876); _instance_1_u(_, "get$_handleGridPreviousFocus", "_handleGridPreviousFocus$1", 1877); _instance_1_u(_, "get$_handleDirectionFocus", "_handleDirectionFocus$1", 1903); _instance_2_u(_, "get$_buildItems", "_buildItems$2", 128); _instance_2_u(Q._YearPickerState.prototype, "get$_buildYearItem", "_buildYearItem$2", 128); _instance_0_u(D.CheckboxListTile.prototype, "get$_handleValueChange", "_handleValueChange$0", 0); _instance_1_u(_ = S.TableRowInkWell.prototype, "get$getRectCallback", "getRectCallback$1", 1939); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 593); _instance_0_u(_ = S._SortArrowState.prototype, "get$_data_table$_rebuild", "_data_table$_rebuild$0", 0); _instance_1_u(_, "get$_resetOrientationAnimation", "_resetOrientationAnimation$1", 35); _instance_0_u(_ = K._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", 210); _static(E, "dialog___buildMaterialDialogTransitions$closure", 4, null, ["call$4"], ["_buildMaterialDialogTransitions"], 2689, 0); _instance_0_u(_ = Z.DrawerControllerState.prototype, "get$_animationChanged", "_animationChanged$0", 0); _instance_1_u(_, "get$_animationStatusChanged", "_animationStatusChanged$1", 35); _instance_0_u(_, "get$_handleHistoryEntryRemoved", "_handleHistoryEntryRemoved$0", 0); _instance_1_u(_, "get$_handleDragDown", "_handleDragDown$1", 591); _instance_0_u(_, "get$_handleDragCancel", "_handleDragCancel$0", 0); _instance_1_u(_, "get$_move", "_move$1", 70); _instance_1_u(_, "get$_settle", "_settle$1", 104); _instance_0_i(_, "get$close", "close$0", 0); _instance_1_u(_ = K._DropdownMenuItemButtonState.prototype, "get$_dropdown$_handleFocusChange", "_dropdown$_handleFocusChange$1", 52); _instance_0_u(_, "get$_handleOnTap", "_handleOnTap$0", 0); _instance_0_u(_ = K._DropdownButtonState.prototype, "get$_dropdown$_handleFocusChanged", "_dropdown$_handleFocusChanged$0", 0); _instance_1_u(_, "get$_dropdown$_handleFocusHighlightModeChange", "_dropdown$_handleFocusHighlightModeChange$1", 347); _instance_0_u(_, "get$_dropdown$_handleTap", "_dropdown$_handleTap$0", 0); _instance_1_u(K._DropdownButtonFormFieldState.prototype, "get$didChange", "didChange$1", 33); _instance_0_u(N._ExpandIconState.prototype, "get$_handlePressed", "_handlePressed$0", 0); _instance_0_u(_ = D._InkState.prototype, "get$_handleRemoved", "_handleRemoved$0", 0); _instance_1_u(_, "get$_build", "_build$1", 79); _instance_0_u(D.InkDecoration.prototype, "get$_handleChanged", "_handleChanged$0", 0); _instance_1_u(Y.InkHighlight.prototype, "get$_handleAlphaStatusChanged", "_handleAlphaStatusChanged$1", 35); _instance_1_u(O.InkRipple.prototype, "get$_ink_ripple$_handleAlphaStatusChanged", "_ink_ripple$_handleAlphaStatusChanged$1", 35); _instance_1_u(U.InkSplash.prototype, "get$_ink_splash$_handleAlphaStatusChanged", "_ink_splash$_handleAlphaStatusChanged$1", 35); _instance_1_u(_ = R.InkResponse.prototype, "get$getRectCallback", "getRectCallback$1", 2004); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 593); _instance(_ = R._InkResponseState.prototype, "get$_simulateTap", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_simulateTap$1", "_simulateTap$0"], 586, 0); _instance_0_u(_, "get$_simulateLongPress", "_simulateLongPress$0", 0); _instance_1_u(_, "get$_handleFocusHighlightModeChange", "_handleFocusHighlightModeChange$1", 347); _instance_1_u(_, "get$_handleFocusUpdate", "_handleFocusUpdate$1", 52); _instance_1_u(_, "get$_handleTapDown", "_handleTapDown$1", 98); _instance_0_u(_, "get$_ink_well$_handleTap", "_ink_well$_handleTap$0", 0); _instance_0_u(_, "get$_handleTapCancel", "_handleTapCancel$0", 0); _instance_0_u(_, "get$_handleDoubleTap", "_handleDoubleTap$0", 0); _instance_0_u(_, "get$_ink_well$_handleLongPress", "_ink_well$_handleLongPress$0", 0); _instance_1_u(_, "get$_handleMouseEnter", "_handleMouseEnter$1", 316); _instance_1_u(_, "get$_handleMouseExit", "_handleMouseExit$1", 207); _instance_1_u(_ = U._InputDatePickerFormFieldState.prototype, "get$_validateDate", "_validateDate$1", 354); _instance_1_u(_, "get$_handleSaved", "_handleSaved$1", 236); _instance_1_u(_, "get$_handleSubmitted", "_handleSubmitted$1", 88); _instance_0_u(L._HelperErrorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = L._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_2_u(_, "get$_paintLabel", "_paintLabel$2", 85); _instance_0_u(L._InputDecoratorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = Q._RenderListTile.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(B._MergeableMaterialState.prototype, "get$_handleTick", "_handleTick$0", 0); _instance_0_u(_ = R.PaginatedDataTableState.prototype, "get$_handleDataSourceChanged", "_handleDataSourceChanged$0", 0); _instance_0_u(_, "get$_handlePrevious", "_handlePrevious$0", 0); _instance_0_u(_, "get$_handleNext", "_handleNext$0", 0); _instance_0_u(Z.PopupMenuItemState.prototype, "get$handleTap", "handleTap$0", 0); _instance_0_u(Z.PopupMenuButtonState.prototype, "get$showButtonMenu", "showButtonMenu$0", 0); _instance_1_u(Y._RadioState.prototype, "get$_radio$_handleChanged", "_radio$_handleChanged$1", 372); _instance_1_u(_ = N.RefreshIndicatorState.prototype, "get$_refresh_indicator$_handleScrollNotification", "_refresh_indicator$_handleScrollNotification$1", 160); _instance_1_u(_, "get$_handleGlowNotification", "_handleGlowNotification$1", 2069); _instance_2_u(_ = Z._ReorderableListViewState.prototype, "get$_itemBuilder", "_itemBuilder$2", 128); _instance(_, "get$_proxyDecorator", 0, 3, null, ["call$3"], ["_proxyDecorator$3"], 2086, 0); _instance_1_u(_ = M._FloatingActionButtonTransitionState.prototype, "get$_handlePreviousAnimationStatusChanged", "_handlePreviousAnimationStatusChanged$1", 35); _instance_0_u(_, "get$_onProgressChanged", "_onProgressChanged$0", 0); _instance_1_u(_ = M.ScaffoldState.prototype, "get$_drawerOpenedCallback", "_drawerOpenedCallback$1", 52); _instance_1_u(_, "get$_endDrawerOpenedCallback", "_endDrawerOpenedCallback$1", 52); _instance_0_u(_, "get$_handleStatusBarTap", "_handleStatusBarTap$0", 0); _instance_0_i(_ = M._StandardBottomSheetState.prototype, "get$close", "close$0", 0); _instance_1_u(_, "get$_scaffold$_handleDragStart", "_scaffold$_handleDragStart$1", 100); _instance(_, "get$_scaffold$_handleDragEnd", 0, 1, null, ["call$2$isClosing", "call$1"], ["_scaffold$_handleDragEnd$2$isClosing", "_scaffold$_handleDragEnd$1"], 2119, 0); _instance_1_u(_, "get$_handleStatusChange", "_handleStatusChange$1", 35); _instance_1_u(_, "get$extentChanged", "extentChanged$1", 604); _instance_1_u(_ = O._SelectableTextSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 146); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 146); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 223); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 147); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 221); _instance_0_u(_ = O._SelectableTextState.prototype, "get$_onControllerChanged", "_onControllerChanged$0", 0); _instance_2_u(_, "get$_selectable_text$_handleSelectionChanged", "_selectable_text$_handleSelectionChanged$2", 553); _instance_0_u(_, "get$_selectable_text$_handleSelectionHandleTapped", "_selectable_text$_handleSelectionHandleTapped$0", 0); _instance_1_u(_ = N._MaterialSwitchState.prototype, "get$_switch$_handleDragStart", "_switch$_handleDragStart$1", 100); _instance_1_u(_, "get$_switch$_handleDragUpdate", "_switch$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch$_handleDragEnd", "_switch$_handleDragEnd$1", 104); _instance_1_u(_, "get$_switch$_handleChanged", "_switch$_handleChanged$1", 372); _instance_0_u(N._SwitchPainter.prototype, "get$_handleDecorationChanged", "_handleDecorationChanged$0", 0); _instance_0_i(U.TabController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(E._IndicatorPainter.prototype, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_ = E._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"], 2154, 0); _instance_0_u(_ = E._TabBarViewState.prototype, "get$_handleTabControllerAnimationTick", "_handleTabControllerAnimationTick$0", 0); _instance_1_u(_, "get$_tabs$_handleScrollNotification", "_tabs$_handleScrollNotification$1", 160); _instance_1_u(_ = Z._TextFieldSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 146); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 146); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 223); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 147); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 221); _instance_2_u(_ = Z._TextFieldState.prototype, "get$_text_field$_handleSelectionChanged", "_text_field$_handleSelectionChanged$2", 553); _instance_0_u(_, "get$_handleSelectionHandleTapped", "_handleSelectionHandleTapped$0", 0); _instance_0_u(E._TextFormFieldState.prototype, "get$_handleControllerChanged", "_handleControllerChanged$0", 0); _instance_1_u(M._TimePickerHeader.prototype, "get$_handleChangeMode", "_handleChangeMode$1", 552); _instance_1_u(_ = M._RenderInputPadding1.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(_ = M._DialState.prototype, "get$_handlePanStart", "_handlePanStart$1", 100); _instance_1_u(_, "get$_handlePanUpdate", "_handlePanUpdate$1", 70); _instance_1_u(_, "get$_handlePanEnd", "_handlePanEnd$1", 104); _instance_1_u(_, "get$_time_picker0$_handleTapUp", "_time_picker0$_handleTapUp$1", 147); _instance_1_u(_ = M._TimePickerInputState.prototype, "get$_handleHourSavedSubmitted", "_handleHourSavedSubmitted$1", 236); _instance_1_u(_, "get$_handleHourChanged", "_handleHourChanged$1", 88); _instance_1_u(_, "get$_handleMinuteSavedSubmitted", "_handleMinuteSavedSubmitted$1", 236); _instance_1_u(_, "get$_handleDayPeriodChanged", "_handleDayPeriodChanged$1", 551); _instance_1_u(_, "get$_validateHour", "_validateHour$1", 354); _instance_1_u(_, "get$_validateMinute", "_validateMinute$1", 354); _instance_1_u(_ = M._TimePickerDialogState.prototype, "get$_time_picker0$_handleModeChanged", "_time_picker0$_handleModeChanged$1", 552); _instance_0_u(_, "get$_time_picker0$_handleEntryModeToggle", "_time_picker0$_handleEntryModeToggle$0", 0); _instance_1_u(_, "get$_handleTimeChanged", "_handleTimeChanged$1", 551); _instance_0_u(_, "get$_handleHourDoubleTapped", "_handleHourDoubleTapped$0", 0); _instance_0_u(_, "get$_handleMinuteDoubleTapped", "_handleMinuteDoubleTapped$0", 0); _instance_0_u(_, "get$_handleHourSelected", "_handleHourSelected$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(_ = E._SelectToggleButtonRenderObject.prototype, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_ = F.ToggleableStateMixin.prototype, "get$_toggleable$_handleTapDown", "_toggleable$_handleTapDown$1", 98); _instance(_, "get$_toggleable$_handleTap", 0, 0, null, ["call$1", "call$0"], ["_toggleable$_handleTap$1", "_toggleable$_handleTap$0"], 586, 0); _instance(_, "get$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_handleTapEnd$1", "_handleTapEnd$0"], 2192, 0); _instance_1_u(_, "get$_handleFocusHighlightChanged", "_handleFocusHighlightChanged$1", 52); _instance_1_u(_, "get$_handleHoverChanged", "_handleHoverChanged$1", 52); _instance_0_i(F.ToggleablePainter.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = S._TooltipState.prototype, "get$_handleMouseTrackerChange", "_handleMouseTrackerChange$0", 0); _instance_1_u(_, "get$_tooltip$_handleStatusChanged", "_tooltip$_handleStatusChanged$1", 35); _instance_0_u(_, "get$ensureTooltipVisible", "ensureTooltipVisible$0", 188); _instance_1_u(_, "get$_tooltip$_handlePointerEvent", "_tooltip$_handlePointerEvent$1", 92); _instance_0_u(_, "get$_handleLongPress", "_handleLongPress$0", 0); _instance(N.PaintingBinding.prototype, "get$instantiateImageCodec", 0, 1, null, ["call$4$allowUpscaling$cacheHeight$cacheWidth", "call$1"], ["instantiateImageCodec$4$allowUpscaling$cacheHeight$cacheWidth", "instantiateImageCodec$1"], 2195, 0); _instance_2_u(X.DecorationImagePainter.prototype, "get$_handleImage", "_handleImage$2", 383); _static(V, "edge_insets_EdgeInsetsGeometry_lerp$closure", 3, null, ["call$3"], ["EdgeInsetsGeometry_lerp"], 2690, 0); _static_1(L, "image_resolution_AssetImage__manifestParser$closure", "AssetImage__manifestParser", 2691); _instance_1_i(_ = L.ImageStreamCompleter.prototype, "get$addListener", "addListener$1", 409); _instance_1_u(_, "get$reportImageChunkEvent", "reportImageChunkEvent$1", 384); _instance_1_u(_ = L.MultiFrameImageStreamCompleter.prototype, "get$_handleCodecReady", "_handleCodecReady$1", 521); _instance_1_u(_, "get$_handleAppFrame", "_handleAppFrame$1", 28); _instance_1_i(_, "get$addListener", "addListener$1", 409); _static(A, "text_style_TextStyle_lerp$closure", 3, null, ["call$3"], ["TextStyle_lerp"], 2692, 0); _instance_0_u(_ = N.RendererBinding.prototype, "get$_handleSemanticsEnabledChanged", "_handleSemanticsEnabledChanged$0", 0); _instance_1_u(_, "get$_handleWebFirstFrame", "_handleWebFirstFrame$1", 28); _instance(_, "get$_handleSemanticsAction", 0, 3, null, ["call$3"], ["_handleSemanticsAction$3"], 2289, 0); _instance_0_u(_, "get$_handleSemanticsOwnerCreated", "_handleSemanticsOwnerCreated$0", 0); _instance_0_u(_, "get$_handleSemanticsOwnerDisposed", "_handleSemanticsOwnerDisposed$0", 0); _instance_1_u(_, "get$_handlePersistentFrameCallback", "_handlePersistentFrameCallback$1", 28); _instance_1_u(_ = S.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(S.RenderBoxContainerDefaultsMixin.prototype, "get$defaultPaint", "defaultPaint$2", 85); _instance_1_u(_ = B.RenderCustomMultiChildLayoutBox.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(_ = V.RenderCustomPaint.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(_ = D.RenderEditable.prototype, "get$_onCaretChanged", "_onCaretChanged$1", 707); _instance_1_u(_, "get$_editable$_handleKeyEvent", "_editable$_handleKeyEvent$1", 2408); _instance_0_u(_, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_, "get$systemFontsDidChange", "systemFontsDidChange$0", 0); _instance_0_u(_, "get$_showHideCursor", "_showHideCursor$0", 0); _instance_1_u(_, "get$_handleSetText", "_handleSetText$1", 88); _instance_1_u(_, "get$_handleSetSelection", "_handleSetSelection$1", 705); _instance_1_u(_, "get$_handleMoveCursorForwardByCharacter", "_handleMoveCursorForwardByCharacter$1", 52); _instance_1_u(_, "get$_handleMoveCursorBackwardByCharacter", "_handleMoveCursorBackwardByCharacter$1", 52); _instance_1_u(_, "get$_handleMoveCursorForwardByWord", "_handleMoveCursorForwardByWord$1", 52); _instance_1_u(_, "get$_handleMoveCursorBackwardByWord", "_handleMoveCursorBackwardByWord$1", 52); _instance_1_u(_, "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$_editable$_handleTapDown", "_editable$_handleTapDown$1", 98); _instance_0_u(_, "get$_editable$_handleTap", "_editable$_handleTap$0", 0); _instance_0_u(_, "get$_editable$_handleLongPress", "_editable$_handleLongPress$0", 0); _instance_2_u(_, "get$_editable$_paintContents", "_editable$_paintContents$2", 85); _instance_1_u(_ = V.RenderErrorBox.prototype, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_1_u(_ = F.RenderFlex.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(_ = U.RenderImage.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(_ = R.RenderListBody.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_1(K, "object_RenderObject__cleanChildRelayoutBoundary$closure", "RenderObject__cleanChildRelayoutBoundary", 142); _instance_1_u(_ = K.RenderObject.prototype, "get$dropChild", "dropChild$1", 33); _instance_0_u(_, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_2_u(_, "get$paint", "paint$2", 85); _instance_0_u(_, "get$markNeedsSemanticsUpdate", "markNeedsSemanticsUpdate$0", 0); _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect"], 269, 0); _instance_1_u(_ = K.ContainerRenderObjectMixin.prototype, "get$childBefore", "childBefore$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_1_u(_, "get$childAfter", "childAfter$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_1_u(_ = Q.RenderParagraph.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$systemFontsDidChange", "systemFontsDidChange$0", 0); _instance_1_u(_ = L.RenderPerformanceOverlay.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(G._PlatformViewGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _instance_1_u(_ = E.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_2_u(_, "get$paint", "paint$2", 85); _instance_1_u(_ = E.RenderConstrainedBox.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(_ = E.RenderAspectRatio.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(_ = E.RenderIntrinsicWidth.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(_ = E.RenderIntrinsicHeight.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_0_u(E.RenderAnimatedOpacityMixin.prototype, "get$_updateOpacity", "_updateOpacity$0", 0); _instance_0_u(E._RenderCustomClip.prototype, "get$_markNeedsClip", "_markNeedsClip$0", 0); _instance_2_u(E.RenderFittedBox.prototype, "get$_paintChildWithTransform", "_paintChildWithTransform$2", 2497); _instance_1_u(_ = E.RenderOffstage.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(_ = E.RenderSemanticsGestureHandler.prototype, "get$_performSemanticScrollLeft", "_performSemanticScrollLeft$0", 0); _instance_0_u(_, "get$_performSemanticScrollRight", "_performSemanticScrollRight$0", 0); _instance_0_u(_, "get$_performSemanticScrollUp", "_performSemanticScrollUp$0", 0); _instance_0_u(_, "get$_performSemanticScrollDown", "_performSemanticScrollDown$0", 0); _instance_0_u(_ = E.RenderSemanticsAnnotations.prototype, "get$_performTap", "_performTap$0", 0); _instance_0_u(_, "get$_performLongPress", "_performLongPress$0", 0); _instance_0_u(_, "get$_performDismiss", "_performDismiss$0", 0); _instance_0_u(_, "get$_performIncrease", "_performIncrease$0", 0); _instance_0_u(_, "get$_performDecrease", "_performDecrease$0", 0); _instance_0_u(_, "get$_performCopy", "_performCopy$0", 0); _instance_0_u(_, "get$_performCut", "_performCut$0", 0); _instance_0_u(_, "get$_performPaste", "_performPaste$0", 0); _instance_0_u(_, "get$_performDidGainAccessibilityFocus", "_performDidGainAccessibilityFocus$0", 0); _instance_1_u(_ = T.RenderShiftedBox.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$paint", "paint$2", 85); _instance_1_u(_ = T.RenderPadding.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(_ = T.RenderFractionallySizedOverflowBox.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(_ = T.RenderCustomSingleChildLayoutBox.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(G.RenderSliver.prototype, "get$hitTest", 0, 1, null, ["call$3$crossAxisPosition$mainAxisPosition", "call$1"], ["hitTest$3$crossAxisPosition$mainAxisPosition", "hitTest$1"], 2499, 0); _instance(U.RenderSliverPinnedPersistentHeader.prototype, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect"], 269, 0); _instance_1_u(_ = K.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", 85); _instance_2_u(K.RenderIndexedStack.prototype, "get$paintStack", "paintStack$2", 85); _instance_1_u(_ = S.RenderTable.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.RenderView.prototype, "get$hitTestMouseTrackers", "hitTestMouseTrackers$1", 2532); _instance_1_u(_ = Q.RenderViewportBase.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$_paintContents", "_paintContents$2", 85); _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect"], 269, 0); _instance_1_u(_ = N.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(N, "binding_SchedulerBinding__taskSorter$closure", "SchedulerBinding__taskSorter", 2693); _static(N, "binding__defaultSchedulingStrategy$closure", 0, null, ["call$2$priority$scheduler", "call$0"], ["defaultSchedulingStrategy", function() { return N.defaultSchedulingStrategy(null, null); }], 2694, 0); _instance_1_u(_ = N.SchedulerBinding.prototype, "get$_executeTimingsCallbacks", "_executeTimingsCallbacks$1", 416); _instance_0_u(_, "get$_runTasks", "_runTasks$0", 0); _instance_0_u(_, "get$ensureVisualUpdate", "ensureVisualUpdate$0", 0); _instance_1_u(_, "get$_handleBeginFrame", "_handleBeginFrame$1", 28); _instance_0_u(_, "get$_handleDrawFrame", "_handleDrawFrame$0", 0); _instance_1_u(M.Ticker.prototype, "get$_ticker$_tick", "_ticker$_tick$1", 28); _instance_0_i(A.SemanticsOwner.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A.SemanticsConfiguration.prototype, "get$_onCustomSemanticsAction", "_onCustomSemanticsAction$1", 33); _static_1(Q, "asset_bundle_AssetBundle__utf8decode$closure", "AssetBundle__utf8decode", 2695); _static_1(N, "binding0_ServicesBinding__parseLicenses$closure", "ServicesBinding__parseLicenses", 2696); _instance_0_u(_ = N.ServicesBinding.prototype, "get$_addLicenses", "_addLicenses$0", 3126); _instance_1_u(_, "get$_handleLifecycleMessage", "_handleLifecycleMessage$1", 3109); _instance(N._DefaultBinaryMessenger.prototype, "get$handlePlatformMessage", 0, 3, null, ["call$3"], ["handlePlatformMessage$3"], 345, 0); _instance_1_u(B.RawKeyboard.prototype, "get$_handleKeyEvent", "_handleKeyEvent$1", 687); _instance_1_u(K.RestorationManager.prototype, "get$_methodHandler", "_methodHandler$1", 2938); _instance_1_u(_ = K.RestorationBucket.prototype, "get$_dropChild", "_dropChild$1", 463); _instance_1_u(_, "get$_recursivelyUpdateManager", "_recursivelyUpdateManager$1", 463); _instance_1_u(N.TextInput.prototype, "get$_handleTextInputInvocation", "_handleTextInputInvocation$1", 266); _instance_1_u(U._ActionsState.prototype, "get$_handleActionChanged", "_handleActionChanged$1", 2738); _instance_1_u(_ = U._FocusableActionDetectorState.prototype, "get$_actions$_handleFocusHighlightModeChange", "_actions$_handleFocusHighlightModeChange$1", 347); _instance_1_u(_, "get$_actions$_handleMouseEnter", "_actions$_handleMouseEnter$1", 316); _instance_1_u(_, "get$_actions$_handleMouseExit", "_actions$_handleMouseExit$1", 207); _instance_1_u(_, "get$_handleFocusChange", "_handleFocusChange$1", 52); _static(U, "animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure", 4, null, ["call$4"], ["AnimatedCrossFade_defaultLayoutBuilder"], 2697, 0); _static_2(G, "animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure", "AnimatedSwitcher_defaultTransitionBuilder", 606); _static_2(G, "animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure", "AnimatedSwitcher_defaultLayoutBuilder", 2698); _instance_1_u(G._AnimatedSwitcherState.prototype, "get$_updateTransitionForEntry", "_updateTransitionForEntry$1", 2660); _instance_1_u(_ = S._WidgetsAppState.prototype, "get$_onGenerateRoute", "_onGenerateRoute$1", 2643); _instance_1_u(_, "get$_onUnknownRoute", "_onUnknownRoute$1", 2638); _instance_0_u(_ = S._RawAutocompleteState.prototype, "get$_onChangedField", "_onChangedField$0", 0); _instance_0_u(_, "get$_onChangedFocus", "_onChangedFocus$0", 0); _instance_0_u(_, "get$_onFieldSubmitted", "_onFieldSubmitted$0", 0); _instance_1_u(_, "get$_select", "_select$1", 33); _instance_1_u(L._AutomaticKeepAliveState.prototype, "get$_addClient", "_addClient$1", 2555); _instance_1_u(T._MouseRegionState.prototype, "get$handleExit", "handleExit$1", 207); _instance_0_u(_ = N.WidgetsBinding.prototype, "get$handleLocaleChanged", "handleLocaleChanged$0", 0); _instance_1_u(_, "get$_handleNavigationInvocation", "_handleNavigationInvocation$1", 266); _instance_0_u(_, "get$_handleBuildScheduled", "_handleBuildScheduled$0", 0); _instance_0_u(_ = N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding.prototype, "get$handleMetricsChanged", "handleMetricsChanged$0", 0); _instance_0_u(_, "get$handlePlatformBrightnessChanged", "handlePlatformBrightnessChanged$0", 0); _instance_0_u(S._DraggableScrollableSheetState.prototype, "get$_setExtent", "_setExtent$0", 0); _instance_1_u(S._DraggableScrollableNotification_Notification_ViewportNotificationMixin.prototype, "get$visitAncestor", "visitAncestor$1", 119); _instance_1_u(N._DualTransitionBuilderState.prototype, "get$_animationListener", "_animationListener$1", 35); _instance_0_u(_ = D.EditableTextState.prototype, "get$_onFloatingCursorResetTick", "_onFloatingCursorResetTick$0", 0); _instance_1_u(_, "get$_handleCaretChanged", "_handleCaretChanged$1", 707); _instance_0_u(_, "get$_onCursorColorTick", "_onCursorColorTick$0", 0); _instance_1_u(_, "get$_cursorTick", "_cursorTick$1", 407); _instance_1_u(_, "get$_cursorWaitForStart", "_cursorWaitForStart$1", 407); _instance_0_u(_, "get$_didChangeTextEditingValue", "_didChangeTextEditingValue$0", 0); _instance_0_u(_, "get$_editable_text$_handleFocusChanged", "_editable_text$_handleFocusChanged$0", 0); _instance_0_i(O.FocusNode.prototype, "get$dispose", "dispose$0", 0); _instance_0_i(_ = O.FocusManager.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_focus_manager$_handlePointerEvent", "_focus_manager$_handlePointerEvent$1", 92); _instance_1_u(_, "get$_handleRawKeyEvent", "_handleRawKeyEvent$1", 2453); _instance_0_u(_, "get$_applyFocusChange", "_applyFocusChange$0", 0); _instance_0_u(L._FocusState.prototype, "get$_handleFocusChanged", "_handleFocusChanged$0", 0); _static_1(N, "framework__InactiveElements__deactivateRecursively$closure", "_InactiveElements__deactivateRecursively", 87); _static_2(N, "framework_Element__sort$closure", "Element__sort", 2699); _static_1(N, "framework_Element__activateRecursively$closure", "Element__activateRecursively", 87); _instance_1_u(N._InactiveElements.prototype, "get$_unmount", "_unmount$1", 87); _instance_1_u(_ = D.RawGestureDetectorState.prototype, "get$_gesture_detector$_handlePointerDown", "_gesture_detector$_handlePointerDown$1", 215); _instance_1_u(_, "get$_updateSemanticsForRenderObject", "_updateSemanticsForRenderObject$1", 2286); _instance_1_u(_ = T._HeroFlight.prototype, "get$_buildOverlay", "_buildOverlay$1", 79); _instance_1_u(_, "get$_handleAnimationUpdate", "_handleAnimationUpdate$1", 35); _instance_0_u(_, "get$onTick", "onTick$0", 0); _instance_1_u(_ = T.HeroController.prototype, "get$_handleFlightEnded", "_handleFlightEnded$1", 2277); _instance(_, "get$_defaultHeroFlightShuttleBuilder", 0, 5, null, ["call$5"], ["_defaultHeroFlightShuttleBuilder$5"], 2240, 0); _instance_2_u(_ = U._ImageState.prototype, "get$_handleImageFrame", "_handleImageFrame$2", 383); _instance_1_u(_, "get$_handleImageChunk", "_handleImageChunk$1", 384); _instance_0_u(G.AnimatedWidgetBaseState.prototype, "get$_handleAnimationChanged", "_handleAnimationChanged$0", 0); _instance_0_u(S._InheritedNotifierElement.prototype, "get$_handleUpdate", "_handleUpdate$0", 0); _instance_1_u(A._LayoutBuilderElement.prototype, "get$_layout", "_layout$1", 33); _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(K, "navigator_Navigator_defaultGenerateInitialRoutes$closure", "Navigator_defaultGenerateInitialRoutes", 2700); _static_1(K, "navigator__RouteEntry_isPresentPredicate$closure", "_RouteEntry_isPresentPredicate", 240); _static_1(K, "navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure", "_RouteEntry_suitableForTransitionAnimationPredicate", 240); _static_1(K, "navigator__RouteEntry_willBePresentPredicate$closure", "_RouteEntry_willBePresentPredicate", 240); _instance_1_u(K._NavigatorPushObservation.prototype, "get$notify", "notify$1", 250); _instance_1_u(K._NavigatorPopObservation.prototype, "get$notify", "notify$1", 250); _instance_1_u(K._NavigatorRemoveObservation.prototype, "get$notify", "notify$1", 250); _instance_1_u(K._NavigatorReplaceObservation.prototype, "get$notify", "notify$1", 250); _instance_1_u(_ = K.NavigatorState.prototype, "get$_handlePointerDown", "_handlePointerDown$1", 215); _instance_1_u(_, "get$_handlePointerUpOrCancel", "_handlePointerUpOrCancel$1", 92); _instance_1_u(U.Notification0.prototype, "get$visitAncestor", "visitAncestor$1", 119); _instance_1_u(_ = E._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); _instance_1_u(_ = X._RenderTheatre.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", 85); _instance_1_u(L._GlowingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 160); _instance_0_i(_ = L._GlowController.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_changePhase", "_changePhase$1", 35); _instance_1_u(_, "get$_tickDisplacement", "_tickDisplacement$1", 28); _instance_1_u(L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin.prototype, "get$visitAncestor", "visitAncestor$1", 119); _instance_1_u(G.HtmlElementView.prototype, "get$_createHtmlElementView", "_createHtmlElementView$1", 2085); _instance_1_u(G._HtmlElementViewController.prototype, "get$dispatchPointerEvent", "dispatchPointerEvent$1", 2073); _instance_1_u(_ = G._PlatformViewLinkState.prototype, "get$_onPlatformViewCreated", "_onPlatformViewCreated$1", 67); _instance_1_u(_, "get$_handleFrameworkFocusChanged", "_handleFrameworkFocusChanged$1", 52); _instance_1_u(_ = Z.SliverReorderableListState.prototype, "get$_dragStart", "_dragStart$1", 625); _instance(_, "get$_dragUpdate", 0, 3, null, ["call$3"], ["_dragUpdate$3"], 2067, 0); _instance_1_u(_, "get$_dragCancel", "_dragCancel$1", 486); _instance_1_u(_, "get$_dragEnd", "_dragEnd$1", 486); _instance_0_u(_, "get$_dropCompleted", "_dropCompleted$0", 0); _instance_2_u(_, "get$_reorderable_list$_itemBuilder", "_reorderable_list$_itemBuilder$2", 128); _instance_0_u(Z._ReorderableItemState.prototype, "get$rebuild", "rebuild$0", 0); _instance_1_u(Z._DragInfo.prototype, "get$createProxy", "createProxy$1", 79); _instance_0_u(K._RootRestorationScopeState.prototype, "get$_replaceRootBucket", "_replaceRootBucket$0", 0); _instance_0_i(K.RestorableProperty.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(K.RestorationMixin.prototype, "get$_updateProperty", "_updateProperty$1", 2065); _instance_0_i(U.RestorableListenable.prototype, "get$dispose", "dispose$0", 0); _instance_0_i(U.RestorableChangeNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(T.TransitionRoute.prototype, "get$_handleStatusChanged", "_handleStatusChanged$1", 35); _instance_0_i(T.LocalHistoryEntry.prototype, "get$remove", "remove$0", 0); _instance_1_u(_ = T.ModalRoute.prototype, "get$_buildModalBarrier", "_buildModalBarrier$1", 79); _instance_1_u(_, "get$_buildModalScope", "_buildModalScope$1", 79); _instance_0_u(_ = M.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(_ = M.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_i(F.ScrollController.prototype, "get$dispose", "dispose$0", 0); _static_1(G, "scroll_notification__defaultScrollNotificationPredicate$closure", "defaultScrollNotificationPredicate", 160); _instance_1_u(G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin.prototype, "get$visitAncestor", "visitAncestor$1", 119); _instance_0_i(A.ScrollPosition.prototype, "get$dispose", "dispose$0", 0); _instance_0_i(R.ScrollPositionWithSingleContext.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = F.ScrollableState.prototype, "get$_scrollable$_handleDragDown", "_scrollable$_handleDragDown$1", 591); _instance_1_u(_, "get$_scrollable$_handleDragStart", "_scrollable$_handleDragStart$1", 100); _instance_1_u(_, "get$_scrollable$_handleDragUpdate", "_scrollable$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_scrollable$_handleDragEnd", "_scrollable$_handleDragEnd$1", 104); _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", 2023); _instance_1_u(_, "get$_handlePointerScroll", "_handlePointerScroll$1", 92); _instance_0_i(E.ScrollbarPainter.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = E.RawScrollbarState.prototype, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_, "get$_handleTrackTapDown", "_handleTrackTapDown$1", 98); _instance_1_u(_, "get$_handleScrollNotification", "_handleScrollNotification$1", 160); _instance_2_u(X._ShortcutsState.prototype, "get$_handleOnKey", "_handleOnKey$2", 1998); _instance_0_u(_ = E._RenderSingleChildViewport.prototype, "get$_hasScrolled", "_hasScrolled$0", 0); _instance_1_u(_, "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$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect"], 269, 0); _static_2(G, "sliver___kDefaultSemanticIndexCallback$closure", "_kDefaultSemanticIndexCallback", 2701); _instance_1_u(G.SliverMultiBoxAdaptorElement.prototype, "get$removeChild", "removeChild$1", 1993); _instance(F.TextSelectionOverlay.prototype, "get$_markNeedsBuild", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_markNeedsBuild$1", "_markNeedsBuild$0"], 1766, 0); _instance_0_u(_ = F._TextSelectionHandleOverlayState.prototype, "get$_handleVisibilityChanged", "_handleVisibilityChanged$0", 0); _instance_1_u(_, "get$_handleDragStart", "_handleDragStart$1", 100); _instance_1_u(_, "get$_handleDragUpdate", "_handleDragUpdate$1", 70); _instance_0_u(_, "get$_handleTap", "_handleTap$0", 0); _instance_1_u(_ = F.TextSelectionGestureDetectorBuilder.prototype, "get$onTapDown", "onTapDown$1", 98); _instance_1_u(_, "get$onForcePressStart", "onForcePressStart$1", 146); _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 146); _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 147); _instance_0_u(_, "get$onSingleTapCancel", "onSingleTapCancel$0", 0); _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 221); _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 223); _instance_1_u(_, "get$onSingleLongTapEnd", "onSingleLongTapEnd$1", 440); _instance_0_u(_, "get$onSecondaryTap", "onSecondaryTap$0", 0); _instance_1_u(_, "get$onSecondaryTapDown", "onSecondaryTapDown$1", 98); _instance_1_u(_, "get$onDoubleTapDown", "onDoubleTapDown$1", 98); _instance_1_u(_, "get$onDragSelectionStart", "onDragSelectionStart$1", 100); _instance_2_u(_, "get$onDragSelectionUpdate", "onDragSelectionUpdate$2", 1738); _instance_1_u(_, "get$onDragSelectionEnd", "onDragSelectionEnd$1", 104); _instance_1_u(_ = F._TextSelectionGestureDetectorState.prototype, "get$_text_selection$_handleTapDown", "_text_selection$_handleTapDown$1", 98); _instance_1_u(_, "get$_handleTapUp", "_handleTapUp$1", 147); _instance_0_u(_, "get$_text_selection$_handleTapCancel", "_text_selection$_handleTapCancel$0", 0); _instance_1_u(_, "get$_handleDragStart", "_handleDragStart$1", 100); _instance_1_u(_, "get$_handleDragUpdate", "_handleDragUpdate$1", 70); _instance_0_u(_, "get$_handleDragUpdateThrottled", "_handleDragUpdateThrottled$0", 0); _instance_1_u(_, "get$_handleDragEnd", "_handleDragEnd$1", 104); _instance_1_u(_, "get$_forcePressStarted", "_forcePressStarted$1", 146); _instance_1_u(_, "get$_forcePressEnded", "_forcePressEnded$1", 146); _instance_1_u(_, "get$_handleLongPressStart", "_handleLongPressStart$1", 221); _instance_1_u(_, "get$_handleLongPressMoveUpdate", "_handleLongPressMoveUpdate$1", 223); _instance_1_u(_, "get$_handleLongPressEnd", "_handleLongPressEnd$1", 440); _instance_0_u(_, "get$_doubleTapTimeout", "_doubleTapTimeout$0", 0); _instance_0_u(K._AnimatedState.prototype, "get$_handleChange", "_handleChange$0", 0); _instance_0_u(N._ValueListenableBuilderState.prototype, "get$_valueChanged", "_valueChanged$0", 0); _static_1(N, "widget_inspector__transformDebugCreator$closure", "transformDebugCreator", 2702); _static(B, "block_picker_BlockPicker_defaultLayoutBuilder$closure", 3, null, ["call$3"], ["BlockPicker_defaultLayoutBuilder"], 2703, 0); _static(B, "block_picker_BlockPicker_defaultItemBuilder$closure", 3, null, ["call$3"], ["BlockPicker_defaultItemBuilder"], 2704, 0); _static(O, "flutter_redux_StoreBuilder__identity$closure", 1, null, ["call$1$1", "call$1"], ["StoreBuilder__identity", function(store) { return O.StoreBuilder__identity(store, type$.dynamic); }], 2705, 0); _instance_1_u(_ = O._StoreStreamListenerState.prototype, "get$_mapConverter", "_mapConverter$1", "2(Object?)"); _instance_1_u(_, "get$_whereDistinct", "_whereDistinct$1", 109); _instance_1_u(_, "get$_ignoreChange", "_ignoreChange$1", 109); _instance_2_u(_, "get$_flutter_redux$_handleChange", "_flutter_redux$_handleChange$2", 209); _instance(_, "get$_handleError", 0, 3, null, ["call$3"], ["_handleError$3"], 1464, 0); _instance_0_u(_ = A.SlidableState.prototype, "get$_isScrollingListener", "_isScrollingListener$0", 0); _instance_1_u(_, "get$_slidable$_handleDragStart", "_slidable$_handleDragStart$1", 100); _instance_1_u(_, "get$_slidable$_handleDragUpdate", "_slidable$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_slidable$_handleDragEnd", "_slidable$_handleDragEnd$1", 104); _instance_1_u(_, "get$_handleShowAllActionsStatusChanged", "_handleShowAllActionsStatusChanged$1", 35); _instance_0_u(_, "get$_handleOverallPositionChanged", "_handleOverallPositionChanged$0", 0); _instance_1_u(_, "get$_handleDismissStatusChanged", "_handleDismissStatusChanged$1", 1461); _instance_0_u(_, "get$_handleResizeProgressChanged", "_handleResizeProgressChanged$0", 0); _instance_0_u(L._TypeAheadFormFieldState.prototype, "get$_flutter_typeahead$_handleControllerChanged", "_flutter_typeahead$_handleControllerChanged$0", 0); _instance_0_u(L._TypeAheadFieldState.prototype, "get$_scrollResizeListener", "_scrollResizeListener$0", 0); _instance(_ = D.Registrar.prototype, "get$handlePlatformMessage", 0, 3, null, ["call$3"], ["handlePlatformMessage$3"], 345, 0); _instance(_, "get$handleFrameworkMessage", 0, 3, null, ["call$3"], ["handleFrameworkMessage$3"], 345, 0); _instance_0_u(_ = O.MethodChannelGoogleSignIn.prototype, "get$signInSilently", "signInSilently$0", 245); _instance_0_i(_, "get$signIn", "signIn$0", 245); _instance_0_i(_, "get$signOut", "signOut$0", 93); _instance_0_i(_, "get$disconnect", "disconnect$0", 93); _instance_0_u(_ = M.GoogleSignInPlugin.prototype, "get$signInSilently", "signInSilently$0", 245); _instance_0_i(_, "get$signIn", "signIn$0", 245); _instance_0_i(_, "get$signOut", "signOut$0", 93); _instance_0_i(_, "get$disconnect", "disconnect$0", 93); _instance_0_i(O.BrowserClient.prototype, "get$close", "close$0", 0); _instance_1_u(_ = S.DateBuilder.prototype, "get$setYear", "setYear$1", 67); _instance_1_u(_, "get$setMonth", "setMonth$1", 67); _instance_1_u(_, "get$setDay", "setDay$1", 67); _instance_1_u(_, "get$setDayOfYear", "setDayOfYear$1", 67); _instance_1_u(_, "get$setHour", "setHour$1", 67); _instance_1_u(_, "get$setMinute", "setMinute$1", 67); _instance_1_u(_, "get$setSecond", "setSecond$1", 67); _instance_1_u(_, "get$setFractionalSecond", "setFractionalSecond$1", 67); _static_1(A, "date_format_DateFormat_localeExists$closure", "DateFormat_localeExists", 110); _instance_0_u(A.DateFormat.prototype, "get$_initDigitMatcher", "_initDigitMatcher$0", 1160); _static_1(S, "number_format_NumberFormat_localeExists$closure", "NumberFormat_localeExists", 110); _static_1(X, "intl_helpers___throwLocaleError$closure", "_throwLocaleError", 101); _static_0(E, "plural_rules___default_rule$closure", "_default_rule", 39); _static_0(E, "plural_rules___fil_rule$closure", "_fil_rule", 39); _static_0(E, "plural_rules___pt_PT_rule$closure", "_pt_PT_rule", 39); _static_0(E, "plural_rules___br_rule$closure", "_br_rule", 39); _static_0(E, "plural_rules___sr_rule$closure", "_sr_rule", 39); _static_0(E, "plural_rules___ro_rule$closure", "_ro_rule", 39); _static_0(E, "plural_rules___hi_rule$closure", "_hi_rule", 39); _static_0(E, "plural_rules___fr_rule$closure", "_fr_rule", 39); _static_0(E, "plural_rules___cs_rule$closure", "_cs_rule", 39); _static_0(E, "plural_rules___pl_rule$closure", "_pl_rule", 39); _static_0(E, "plural_rules___lv_rule$closure", "_lv_rule", 39); _static_0(E, "plural_rules___he_rule$closure", "_he_rule", 39); _static_0(E, "plural_rules___mt_rule$closure", "_mt_rule", 39); _static_0(E, "plural_rules___si_rule$closure", "_si_rule", 39); _static_0(E, "plural_rules___cy_rule$closure", "_cy_rule", 39); _static_0(E, "plural_rules___da_rule$closure", "_da_rule", 39); _static_0(E, "plural_rules___ru_rule$closure", "_ru_rule", 39); _static_0(E, "plural_rules___be_rule$closure", "_be_rule", 39); _static_0(E, "plural_rules___mk_rule$closure", "_mk_rule", 39); _static_0(E, "plural_rules___ga_rule$closure", "_ga_rule", 39); _static_0(E, "plural_rules___pt_rule$closure", "_pt_rule", 39); _static_0(E, "plural_rules___es_rule$closure", "_es_rule", 39); _static_0(E, "plural_rules___is_rule$closure", "_is_rule", 39); _static_0(E, "plural_rules___ar_rule$closure", "_ar_rule", 39); _static_0(E, "plural_rules___sl_rule$closure", "_sl_rule", 39); _static_0(E, "plural_rules___lt_rule$closure", "_lt_rule", 39); _static_0(E, "plural_rules___en_rule$closure", "_en_rule", 39); _static_0(E, "plural_rules___ak_rule$closure", "_ak_rule", 39); _static_1(E, "plural_rules__localeHasPluralRules$closure", "localeHasPluralRules", 73); _instance_0_u(_ = K.InvoiceNinjaAppState.prototype, "get$_authenticate", "_authenticate$0", 31); _instance_1_u(_, "get$generateRoute", "generateRoute$1", 782); _static_2(G, "app_reducer__appReducer$closure", "appReducer", 2707); _static_2(S, "auth_reducer__userLoadUrlReducer$closure", "userLoadUrlReducer", 2708); _static_2(S, "auth_reducer__userSignUpRequestReducer$closure", "userSignUpRequestReducer", 2709); _static_2(S, "auth_reducer__userLoginRequestReducer$closure", "userLoginRequestReducer", 2710); _static_2(S, "auth_reducer__oauthLoginRequestReducer$closure", "oauthLoginRequestReducer", 2711); _static_2(S, "auth_reducer__oauthSignUpRequestReducer$closure", "oauthSignUpRequestReducer", 2712); _static_2(S, "auth_reducer__userLoginSuccessReducer$closure", "userLoginSuccessReducer", 2713); _static_2(S, "auth_reducer__userVerifiedPasswordReducer$closure", "userVerifiedPasswordReducer", 2714); _static_2(S, "auth_reducer__userUnverifiedPasswordReducer$closure", "userUnverifiedPasswordReducer", 2715); _static_2(S, "client_reducer___viewClientList$closure", "_viewClientList0", 2716); _static_2(S, "client_reducer___filterClientsByCustom1$closure", "_filterClientsByCustom1", 2717); _static_2(S, "client_reducer___filterClientsByCustom2$closure", "_filterClientsByCustom2", 2718); _static_2(S, "client_reducer___filterClientsByCustom3$closure", "_filterClientsByCustom3", 2719); _static_2(S, "client_reducer___filterClientsByCustom4$closure", "_filterClientsByCustom4", 2720); _static_2(S, "client_reducer___filterClientsByState$closure", "_filterClientsByState", 2721); _static_2(S, "client_reducer___filterClients$closure", "_filterClients", 2722); _static_2(S, "client_reducer___sortClients$closure", "_sortClients", 2723); _static_2(S, "client_reducer___startListMultiselect$closure", "_startListMultiselect", 2724); _static_2(S, "client_reducer___addToListMultiselect$closure", "_addToListMultiselect", 2725); _static_2(S, "client_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect", 2726); _static_2(S, "client_reducer___clearListMultiselect$closure", "_clearListMultiselect", 2727); _static_2(S, "client_reducer___archiveClientSuccess$closure", "_archiveClientSuccess", 2728); _static_2(S, "client_reducer___deleteClientSuccess$closure", "_deleteClientSuccess", 2729); _static_2(S, "client_reducer___restoreClientSuccess$closure", "_restoreClientSuccess", 2730); _static_2(S, "client_reducer___addClient$closure", "_addClient", 2731); _static_2(S, "client_reducer___updateClient$closure", "_updateClient", 2732); _static_2(S, "client_reducer___setLoadedClient$closure", "_setLoadedClient", 2733); _static_2(S, "client_reducer___setLoadedClients$closure", "_setLoadedClients", 2734); _static_2(S, "client_reducer___setLoadedCompany$closure", "_setLoadedCompany", 2735); _static_2(T, "company_reducer__loadCompanySuccessReducer$closure", "loadCompanySuccessReducer", 2736); _static_2(T, "company_reducer__saveCompanySuccessReducer$closure", "saveCompanySuccessReducer", 2737); _static_2(N, "company_gateway_reducer___clearEditing$closure", "_clearEditing", 555); _static_2(N, "company_gateway_reducer___updateEditing$closure", "_updateEditing", 555); _static_2(N, "company_gateway_reducer___filterCompanyGatewaysByCustom1$closure", "_filterCompanyGatewaysByCustom1", 2739); _static_2(N, "company_gateway_reducer___filterCompanyGatewaysByCustom2$closure", "_filterCompanyGatewaysByCustom2", 2740); _static_2(N, "company_gateway_reducer___filterCompanyGatewaysByState$closure", "_filterCompanyGatewaysByState", 2741); _static_2(N, "company_gateway_reducer___filterCompanyGateways$closure", "_filterCompanyGateways", 2742); _static_2(N, "company_gateway_reducer___sortCompanyGateways$closure", "_sortCompanyGateways", 2743); _static_2(N, "company_gateway_reducer___startListMultiselect$closure", "_startListMultiselect0", 2744); _static_2(N, "company_gateway_reducer___addToListMultiselect$closure", "_addToListMultiselect0", 2745); _static_2(N, "company_gateway_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect0", 2746); _static_2(N, "company_gateway_reducer___clearListMultiselect$closure", "_clearListMultiselect0", 2747); _static_2(N, "company_gateway_reducer___archiveCompanyGatewaySuccess$closure", "_archiveCompanyGatewaySuccess", 2748); _static_2(N, "company_gateway_reducer___deleteCompanyGatewaySuccess$closure", "_deleteCompanyGatewaySuccess", 2749); _static_2(N, "company_gateway_reducer___restoreCompanyGatewaySuccess$closure", "_restoreCompanyGatewaySuccess", 2750); _static_2(N, "company_gateway_reducer___addCompanyGateway$closure", "_addCompanyGateway", 2751); _static_2(N, "company_gateway_reducer___updateCompanyGateway$closure", "_updateCompanyGateway", 2752); _static_2(N, "company_gateway_reducer___setLoadedCompanyGateway$closure", "_setLoadedCompanyGateway", 2753); _static_2(N, "company_gateway_reducer___setLoadedCompany$closure", "_setLoadedCompany0", 2754); _static_2(N, "company_gateway_reducer___setLoadedCompanyGateways$closure", "_setLoadedCompanyGateways", 2755); _static_2(Q, "credit_reducer___clearEditing$closure", "_clearEditing0", 153); _static_2(Q, "credit_reducer___updateEditing$closure", "_updateEditing0", 153); _static_2(Q, "credit_reducer___addCreditItem$closure", "_addCreditItem", 664); _static_2(Q, "credit_reducer___addCreditItems$closure", "_addCreditItems", 2757); _static_2(Q, "credit_reducer___removeCreditItem$closure", "_removeCreditItem", 662); _static_2(Q, "credit_reducer___updateCreditItem$closure", "_updateCreditItem", 659); _static_2(Q, "credit_reducer___viewCreditList$closure", "_viewCreditList0", 2758); _static_2(Q, "credit_reducer___filterCreditsByCustom1$closure", "_filterCreditsByCustom1", 2759); _static_2(Q, "credit_reducer___filterCreditsByCustom2$closure", "_filterCreditsByCustom2", 2760); _static_2(Q, "credit_reducer___filterCreditsByCustom3$closure", "_filterCreditsByCustom3", 2761); _static_2(Q, "credit_reducer___filterCreditsByCustom4$closure", "_filterCreditsByCustom4", 2762); _static_2(Q, "credit_reducer___filterCreditsByState$closure", "_filterCreditsByState", 2763); _static_2(Q, "credit_reducer___filterCreditsByStatus$closure", "_filterCreditsByStatus", 2764); _static_2(Q, "credit_reducer___filterCredits$closure", "_filterCredits", 2765); _static_2(Q, "credit_reducer___sortCredits$closure", "_sortCredits", 2766); _static_2(Q, "credit_reducer___startListMultiselect$closure", "_startListMultiselect1", 2767); _static_2(Q, "credit_reducer___addToListMultiselect$closure", "_addToListMultiselect1", 2768); _static_2(Q, "credit_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect1", 2769); _static_2(Q, "credit_reducer___clearListMultiselect$closure", "_clearListMultiselect1", 2770); _static_2(Q, "credit_reducer___markSentCreditSuccess$closure", "_markSentCreditSuccess", 2771); _static_2(Q, "credit_reducer___archiveCreditSuccess$closure", "_archiveCreditSuccess", 2772); _static_2(Q, "credit_reducer___deleteCreditSuccess$closure", "_deleteCreditSuccess", 2773); _static_2(Q, "credit_reducer___restoreCreditSuccess$closure", "_restoreCreditSuccess", 2774); _static_2(Q, "credit_reducer___addCredit$closure", "_addCredit", 2775); _static_2(Q, "credit_reducer___updateCredit$closure", "_updateCredit", 2776); _static_2(Q, "credit_reducer___setLoadedCredits$closure", "_setLoadedCredits", 2777); _static_2(Q, "credit_reducer___setLoadedCompany$closure", "_setLoadedCompany1", 2778); _static_2(U, "design_reducer___clearEditing$closure", "_clearEditing1", 545); _static_2(U, "design_reducer___updateEditing$closure", "_updateEditing1", 545); _static_2(U, "design_reducer___viewDesignList$closure", "_viewDesignList0", 2780); _static_2(U, "design_reducer___filterDesignsByCustom1$closure", "_filterDesignsByCustom1", 2781); _static_2(U, "design_reducer___filterDesignsByCustom2$closure", "_filterDesignsByCustom2", 2782); _static_2(U, "design_reducer___filterDesignsByState$closure", "_filterDesignsByState", 2783); _static_2(U, "design_reducer___filterDesigns$closure", "_filterDesigns", 2784); _static_2(U, "design_reducer___sortDesigns$closure", "_sortDesigns", 2785); _static_2(U, "design_reducer___startListMultiselect$closure", "_startListMultiselect2", 2786); _static_2(U, "design_reducer___addToListMultiselect$closure", "_addToListMultiselect2", 2787); _static_2(U, "design_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect2", 2788); _static_2(U, "design_reducer___clearListMultiselect$closure", "_clearListMultiselect2", 2789); _static_2(U, "design_reducer___archiveDesignSuccess$closure", "_archiveDesignSuccess", 2790); _static_2(U, "design_reducer___deleteDesignSuccess$closure", "_deleteDesignSuccess", 2791); _static_2(U, "design_reducer___restoreDesignSuccess$closure", "_restoreDesignSuccess", 2792); _static_2(U, "design_reducer___addDesign$closure", "_addDesign", 2793); _static_2(U, "design_reducer___updateDesign$closure", "_updateDesign", 2794); _static_2(U, "design_reducer___setLoadedDesign$closure", "_setLoadedDesign", 2795); _static_2(U, "design_reducer___setLoadedDesigns$closure", "_setLoadedDesigns", 2796); _static_2(U, "design_reducer___setLoadedCompany$closure", "_setLoadedCompany2", 2797); _static_2(M, "document_reducer___updateEditing$closure", "_updateEditing2", 2798); _static_2(M, "document_reducer___viewDocumentList$closure", "_viewDocumentList0", 2799); _static_2(M, "document_reducer___filterDocumentsByCustom1$closure", "_filterDocumentsByCustom1", 2800); _static_2(M, "document_reducer___filterDocumentsByCustom2$closure", "_filterDocumentsByCustom2", 2801); _static_2(M, "document_reducer___filterDocumentsByState$closure", "_filterDocumentsByState", 2802); _static_2(M, "document_reducer___filterDocuments$closure", "_filterDocuments", 2803); _static_2(M, "document_reducer___sortDocuments$closure", "_sortDocuments", 2804); _static_2(M, "document_reducer___startListMultiselect$closure", "_startListMultiselect3", 2805); _static_2(M, "document_reducer___addToListMultiselect$closure", "_addToListMultiselect3", 2806); _static_2(M, "document_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect3", 2807); _static_2(M, "document_reducer___clearListMultiselect$closure", "_clearListMultiselect3", 2808); _static_2(M, "document_reducer___archiveDocumentSuccess$closure", "_archiveDocumentSuccess", 2809); _static_2(M, "document_reducer___deleteDocumentSuccess$closure", "_deleteDocumentSuccess", 2810); _static_2(M, "document_reducer___restoreDocumentSuccess$closure", "_restoreDocumentSuccess", 2811); _static_2(M, "document_reducer___updateDocument$closure", "_updateDocument", 2812); _static_2(M, "document_reducer___setLoadedDocument$closure", "_setLoadedDocument", 2813); _static_2(M, "document_reducer___setLoadedDocuments$closure", "_setLoadedDocuments", 2814); _static_2(K, "expense_reducer___clearEditing$closure", "_clearEditing2", 260); _static_2(K, "expense_reducer___updateEditing$closure", "_updateEditing3", 260); _static_2(K, "expense_reducer___viewExpenseList$closure", "_viewExpenseList0", 2816); _static_2(K, "expense_reducer___filterExpensesByCustom1$closure", "_filterExpensesByCustom1", 2817); _static_2(K, "expense_reducer___filterExpensesByCustom2$closure", "_filterExpensesByCustom2", 2818); _static_2(K, "expense_reducer___filterExpensesByCustom3$closure", "_filterExpensesByCustom3", 2819); _static_2(K, "expense_reducer___filterExpensesByCustom4$closure", "_filterExpensesByCustom4", 2820); _static_2(K, "expense_reducer___filterExpensesByState$closure", "_filterExpensesByState", 2821); _static_2(K, "expense_reducer___filterExpensesByStatus$closure", "_filterExpensesByStatus", 2822); _static_2(K, "expense_reducer___filterExpenses$closure", "_filterExpenses", 2823); _static_2(K, "expense_reducer___sortExpenses$closure", "_sortExpenses", 2824); _static_2(K, "expense_reducer___startListMultiselect$closure", "_startListMultiselect4", 2825); _static_2(K, "expense_reducer___addToListMultiselect$closure", "_addToListMultiselect4", 2826); _static_2(K, "expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect4", 2827); _static_2(K, "expense_reducer___clearListMultiselect$closure", "_clearListMultiselect4", 2828); _static_2(K, "expense_reducer___archiveExpenseSuccess$closure", "_archiveExpenseSuccess", 2829); _static_2(K, "expense_reducer___deleteExpenseSuccess$closure", "_deleteExpenseSuccess", 2830); _static_2(K, "expense_reducer___restoreExpenseSuccess$closure", "_restoreExpenseSuccess", 2831); _static_2(K, "expense_reducer___addExpense$closure", "_addExpense", 2832); _static_2(K, "expense_reducer___updateExpense$closure", "_updateExpense", 2833); _static_2(K, "expense_reducer___setLoadedExpense$closure", "_setLoadedExpense", 2834); _static_2(K, "expense_reducer___setLoadedExpenses$closure", "_setLoadedExpenses", 2835); _static_2(K, "expense_reducer___setLoadedCompany$closure", "_setLoadedCompany3", 2836); _static_2(F, "expense_category_reducer___clearEditing$closure", "_clearEditing3", 543); _static_2(F, "expense_category_reducer___updateEditing$closure", "_updateEditing4", 543); _static_2(F, "expense_category_reducer___filterExpenseCategoriesByCustom1$closure", "_filterExpenseCategoriesByCustom1", 2838); _static_2(F, "expense_category_reducer___filterExpenseCategoriesByCustom2$closure", "_filterExpenseCategoriesByCustom2", 2839); _static_2(F, "expense_category_reducer___filterExpenseCategoriesByState$closure", "_filterExpenseCategoriesByState", 2840); _static_2(F, "expense_category_reducer___filterExpenseCategories$closure", "_filterExpenseCategories", 2841); _static_2(F, "expense_category_reducer___sortExpenseCategories$closure", "_sortExpenseCategories", 2842); _static_2(F, "expense_category_reducer___startListMultiselect$closure", "_startListMultiselect5", 2843); _static_2(F, "expense_category_reducer___addToListMultiselect$closure", "_addToListMultiselect5", 2844); _static_2(F, "expense_category_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect5", 2845); _static_2(F, "expense_category_reducer___clearListMultiselect$closure", "_clearListMultiselect5", 2846); _static_2(F, "expense_category_reducer___archiveExpenseCategorySuccess$closure", "_archiveExpenseCategorySuccess", 2847); _static_2(F, "expense_category_reducer___deleteExpenseCategorySuccess$closure", "_deleteExpenseCategorySuccess", 2848); _static_2(F, "expense_category_reducer___restoreExpenseCategorySuccess$closure", "_restoreExpenseCategorySuccess", 2849); _static_2(F, "expense_category_reducer___addExpenseCategory$closure", "_addExpenseCategory", 2850); _static_2(F, "expense_category_reducer___updateExpenseCategory$closure", "_updateExpenseCategory", 2851); _static_2(F, "expense_category_reducer___setLoadedExpenseCategory$closure", "_setLoadedExpenseCategory", 2852); _static_2(F, "expense_category_reducer___setLoadedExpenseCategories$closure", "_setLoadedExpenseCategories", 2853); _static_2(F, "expense_category_reducer___setLoadedCompany$closure", "_setLoadedCompany4", 2854); _static_2(K, "group_reducer___clearEditing$closure", "_clearEditing4", 537); _static_2(K, "group_reducer___updateEditing$closure", "_updateEditing5", 537); _static_2(K, "group_reducer___viewGroupList$closure", "_viewGroupList0", 2856); _static_2(K, "group_reducer___filterGroupsByState$closure", "_filterGroupsByState", 2857); _static_2(K, "group_reducer___filterGroups$closure", "_filterGroups", 2858); _static_2(K, "group_reducer___sortGroups$closure", "_sortGroups", 2859); _static_2(K, "group_reducer___startListMultiselect$closure", "_startListMultiselect6", 2860); _static_2(K, "group_reducer___addToListMultiselect$closure", "_addToListMultiselect6", 2861); _static_2(K, "group_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect6", 2862); _static_2(K, "group_reducer___clearListMultiselect$closure", "_clearListMultiselect6", 2863); _static_2(K, "group_reducer___archiveGroupSuccess$closure", "_archiveGroupSuccess", 2864); _static_2(K, "group_reducer___deleteGroupSuccess$closure", "_deleteGroupSuccess", 2865); _static_2(K, "group_reducer___restoreGroupSuccess$closure", "_restoreGroupSuccess", 2866); _static_2(K, "group_reducer___addGroup$closure", "_addGroup", 2867); _static_2(K, "group_reducer___updateGroup$closure", "_updateGroup", 2868); _static_2(K, "group_reducer___setLoadedGroup$closure", "_setLoadedGroup", 2869); _static_2(K, "group_reducer___setLoadedGroups$closure", "_setLoadedGroups", 2870); _static_2(K, "group_reducer___setLoadedCompany$closure", "_setLoadedCompany5", 2871); _static_2(D, "invoice_reducer___clearEditing$closure", "_clearEditing5", 153); _static_2(D, "invoice_reducer___updateEditing$closure", "_updateEditing6", 153); _static_2(D, "invoice_reducer___addInvoiceItem$closure", "_addInvoiceItem", 630); _static_2(D, "invoice_reducer___addInvoiceItems$closure", "_addInvoiceItems", 2872); _static_2(D, "invoice_reducer___removeInvoiceItem$closure", "_removeInvoiceItem", 629); _static_2(D, "invoice_reducer___updateInvoiceItem$closure", "_updateInvoiceItem", 628); _static_2(D, "invoice_reducer___viewInvoiceList$closure", "_viewInvoiceList0", 2873); _static_2(D, "invoice_reducer___filterInvoicesByCustom1$closure", "_filterInvoicesByCustom1", 2874); _static_2(D, "invoice_reducer___filterInvoicesByCustom2$closure", "_filterInvoicesByCustom2", 2875); _static_2(D, "invoice_reducer___filterInvoicesByCustom3$closure", "_filterInvoicesByCustom3", 2876); _static_2(D, "invoice_reducer___filterInvoicesByCustom4$closure", "_filterInvoicesByCustom4", 2877); _static_2(D, "invoice_reducer___filterInvoicesByState$closure", "_filterInvoicesByState", 2878); _static_2(D, "invoice_reducer___filterInvoicesByStatus$closure", "_filterInvoicesByStatus", 2879); _static_2(D, "invoice_reducer___filterInvoices$closure", "_filterInvoices", 2880); _static_2(D, "invoice_reducer___sortInvoices$closure", "_sortInvoices", 2881); _static_2(D, "invoice_reducer___startListMultiselect$closure", "_startListMultiselect7", 2882); _static_2(D, "invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect7", 2883); _static_2(D, "invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect7", 2884); _static_2(D, "invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect7", 2885); _static_2(D, "invoice_reducer___markInvoicesSentSuccess$closure", "_markInvoicesSentSuccess", 2886); _static_2(D, "invoice_reducer___markInvoicesPaidSuccess$closure", "_markInvoicesPaidSuccess", 2887); _static_2(D, "invoice_reducer___reverseInvoicesSuccess$closure", "_reverseInvoicesSuccess", 2888); _static_2(D, "invoice_reducer___cancelInvoicesSuccess$closure", "_cancelInvoicesSuccess", 2889); _static_2(D, "invoice_reducer___archiveInvoiceSuccess$closure", "_archiveInvoiceSuccess", 2890); _static_2(D, "invoice_reducer___deleteInvoiceSuccess$closure", "_deleteInvoiceSuccess", 2891); _static_2(D, "invoice_reducer___emailInvoiceSuccess$closure", "_emailInvoiceSuccess", 2892); _static_2(D, "invoice_reducer___restoreInvoiceSuccess$closure", "_restoreInvoiceSuccess", 2893); _static_2(D, "invoice_reducer___addInvoice$closure", "_addInvoice", 2894); _static_2(D, "invoice_reducer___updateInvoice$closure", "_updateInvoice", 2895); _static_2(D, "invoice_reducer___setLoadedInvoices$closure", "_setLoadedInvoices", 2896); _static_2(D, "invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany6", 2897); _static_2(R, "payment_reducer___clearEditing$closure", "_clearEditing6", 721); _static_2(R, "payment_reducer___updateEditing$closure", "_updateEditing7", 721); _static_2(R, "payment_reducer___viewPaymentList$closure", "_viewPaymentList0", 2899); _static_2(R, "payment_reducer___filterPaymentsByCustom1$closure", "_filterPaymentsByCustom1", 2900); _static_2(R, "payment_reducer___filterPaymentsByCustom2$closure", "_filterPaymentsByCustom2", 2901); _static_2(R, "payment_reducer___filterPaymentsByCustom3$closure", "_filterPaymentsByCustom3", 2902); _static_2(R, "payment_reducer___filterPaymentsByCustom4$closure", "_filterPaymentsByCustom4", 2903); _static_2(R, "payment_reducer___filterPaymentsByState$closure", "_filterPaymentsByState", 2904); _static_2(R, "payment_reducer___filterPayments$closure", "_filterPayments", 2905); _static_2(R, "payment_reducer___sortPayments$closure", "_sortPayments", 2906); _static_2(R, "payment_reducer___startListMultiselect$closure", "_startListMultiselect8", 2907); _static_2(R, "payment_reducer___addToListMultiselect$closure", "_addToListMultiselect8", 2908); _static_2(R, "payment_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect8", 2909); _static_2(R, "payment_reducer___clearListMultiselect$closure", "_clearListMultiselect8", 2910); _static_2(R, "payment_reducer___archivePaymentSuccess$closure", "_archivePaymentSuccess", 2911); _static_2(R, "payment_reducer___deletePaymentSuccess$closure", "_deletePaymentSuccess", 2912); _static_2(R, "payment_reducer___restorePaymentSuccess$closure", "_restorePaymentSuccess", 2913); _static_2(R, "payment_reducer___addPayment$closure", "_addPayment", 2914); _static_2(R, "payment_reducer___updatePayment$closure", "_updatePayment", 2915); _static_2(R, "payment_reducer___setLoadedPayment$closure", "_setLoadedPayment", 2916); _static_2(R, "payment_reducer___setLoadedPayments$closure", "_setLoadedPayments", 2917); _static_2(R, "payment_reducer___setLoadedCompany$closure", "_setLoadedCompany7", 2918); _static_2(L, "payment_term_reducer___clearEditing$closure", "_clearEditing7", 720); _static_2(L, "payment_term_reducer___updateEditing$closure", "_updateEditing8", 720); _static_2(L, "payment_term_reducer___viewPaymentTermList$closure", "_viewPaymentTermList0", 2920); _static_2(L, "payment_term_reducer___filterPaymentTermsByCustom1$closure", "_filterPaymentTermsByCustom1", 2921); _static_2(L, "payment_term_reducer___filterPaymentTermsByCustom2$closure", "_filterPaymentTermsByCustom2", 2922); _static_2(L, "payment_term_reducer___filterPaymentTermsByState$closure", "_filterPaymentTermsByState", 2923); _static_2(L, "payment_term_reducer___filterPaymentTerms$closure", "_filterPaymentTerms", 2924); _static_2(L, "payment_term_reducer___sortPaymentTerms$closure", "_sortPaymentTerms", 2925); _static_2(L, "payment_term_reducer___startListMultiselect$closure", "_startListMultiselect9", 2926); _static_2(L, "payment_term_reducer___addToListMultiselect$closure", "_addToListMultiselect9", 2927); _static_2(L, "payment_term_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect9", 2928); _static_2(L, "payment_term_reducer___clearListMultiselect$closure", "_clearListMultiselect9", 2929); _static_2(L, "payment_term_reducer___archivePaymentTermSuccess$closure", "_archivePaymentTermSuccess", 2930); _static_2(L, "payment_term_reducer___deletePaymentTermSuccess$closure", "_deletePaymentTermSuccess", 2931); _static_2(L, "payment_term_reducer___restorePaymentTermSuccess$closure", "_restorePaymentTermSuccess", 2932); _static_2(L, "payment_term_reducer___addPaymentTerm$closure", "_addPaymentTerm", 2933); _static_2(L, "payment_term_reducer___updatePaymentTerm$closure", "_updatePaymentTerm", 2934); _static_2(L, "payment_term_reducer___setLoadedPaymentTerm$closure", "_setLoadedPaymentTerm", 2935); _static_2(L, "payment_term_reducer___setLoadedPaymentTerms$closure", "_setLoadedPaymentTerms", 2936); _static_2(L, "payment_term_reducer___setLoadedCompany$closure", "_setLoadedCompany8", 2937); _static_2(B, "product_reducer___clearEditing$closure", "_clearEditing8", 717); _static_2(B, "product_reducer___updateEditing$closure", "_updateEditing9", 717); _static_2(B, "product_reducer___viewClientList$closure", "_viewClientList1", 2939); _static_2(B, "product_reducer___filterProductsByState$closure", "_filterProductsByState", 2940); _static_2(B, "product_reducer___filterProductsByCustom1$closure", "_filterProductsByCustom1", 2941); _static_2(B, "product_reducer___filterProductsByCustom2$closure", "_filterProductsByCustom2", 2942); _static_2(B, "product_reducer___filterProductsByCustom3$closure", "_filterProductsByCustom3", 2943); _static_2(B, "product_reducer___filterProductsByCustom4$closure", "_filterProductsByCustom4", 2944); _static_2(B, "product_reducer___filterProducts$closure", "_filterProducts", 2945); _static_2(B, "product_reducer___sortProducts$closure", "_sortProducts", 2946); _static_2(B, "product_reducer___startListMultiselect$closure", "_startListMultiselect10", 2947); _static_2(B, "product_reducer___addToListMultiselect$closure", "_addToListMultiselect10", 2948); _static_2(B, "product_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect10", 2949); _static_2(B, "product_reducer___clearListMultiselect$closure", "_clearListMultiselect10", 2950); _static_2(B, "product_reducer___archiveProductSuccess$closure", "_archiveProductSuccess", 2951); _static_2(B, "product_reducer___deleteProductSuccess$closure", "_deleteProductSuccess", 2952); _static_2(B, "product_reducer___restoreProductSuccess$closure", "_restoreProductSuccess", 2953); _static_2(B, "product_reducer___addProduct$closure", "_addProduct", 2954); _static_2(B, "product_reducer___updateProduct$closure", "_updateProduct", 2955); _static_2(B, "product_reducer___setLoadedProduct$closure", "_setLoadedProduct", 2956); _static_2(B, "product_reducer___setLoadedProducts$closure", "_setLoadedProducts", 2957); _static_2(B, "product_reducer___setLoadedCompany$closure", "_setLoadedCompany9", 2958); _static_2(G, "project_reducer___clearEditing$closure", "_clearEditing9", 716); _static_2(G, "project_reducer___updateEditing$closure", "_updateEditing10", 716); _static_2(G, "project_reducer___viewProjectList$closure", "_viewProjectList0", 2960); _static_2(G, "project_reducer___filterProjectsByCustom1$closure", "_filterProjectsByCustom1", 2961); _static_2(G, "project_reducer___filterProjectsByCustom2$closure", "_filterProjectsByCustom2", 2962); _static_2(G, "project_reducer___filterProjectsByCustom3$closure", "_filterProjectsByCustom3", 2963); _static_2(G, "project_reducer___filterProjectsByCustom4$closure", "_filterProjectsByCustom4", 2964); _static_2(G, "project_reducer___filterProjectsByState$closure", "_filterProjectsByState", 2965); _static_2(G, "project_reducer___filterProjects$closure", "_filterProjects", 2966); _static_2(G, "project_reducer___sortProjects$closure", "_sortProjects", 2967); _static_2(G, "project_reducer___startListMultiselect$closure", "_startListMultiselect11", 2968); _static_2(G, "project_reducer___addToListMultiselect$closure", "_addToListMultiselect11", 2969); _static_2(G, "project_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect11", 2970); _static_2(G, "project_reducer___clearListMultiselect$closure", "_clearListMultiselect11", 2971); _static_2(G, "project_reducer___archiveProjectSuccess$closure", "_archiveProjectSuccess", 2972); _static_2(G, "project_reducer___deleteProjectSuccess$closure", "_deleteProjectSuccess", 2973); _static_2(G, "project_reducer___restoreProjectSuccess$closure", "_restoreProjectSuccess", 2974); _static_2(G, "project_reducer___addProject$closure", "_addProject", 2975); _static_2(G, "project_reducer___updateProject$closure", "_updateProject", 2976); _static_2(G, "project_reducer___setLoadedProject$closure", "_setLoadedProject", 2977); _static_2(G, "project_reducer___setLoadedProjects$closure", "_setLoadedProjects", 2978); _static_2(G, "project_reducer___setLoadedCompany$closure", "_setLoadedCompany10", 2979); _static_2(L, "quote_reducer___clearEditing$closure", "_clearEditing10", 153); _static_2(L, "quote_reducer___updateEditing$closure", "_updateEditing11", 153); _static_2(L, "quote_reducer___addQuoteItem$closure", "_addQuoteItem", 616); _static_2(L, "quote_reducer___addQuoteItems$closure", "_addQuoteItems", 2980); _static_2(L, "quote_reducer___removeQuoteItem$closure", "_removeQuoteItem", 615); _static_2(L, "quote_reducer___updateQuoteItem$closure", "_updateQuoteItem", 613); _static_2(L, "quote_reducer___viewQuoteList$closure", "_viewQuoteList0", 2981); _static_2(L, "quote_reducer___filterQuotesByCustom1$closure", "_filterQuotesByCustom1", 2982); _static_2(L, "quote_reducer___filterQuotesByCustom2$closure", "_filterQuotesByCustom2", 2983); _static_2(L, "quote_reducer___filterQuotesByCustom3$closure", "_filterQuotesByCustom3", 2984); _static_2(L, "quote_reducer___filterQuotesByCustom4$closure", "_filterQuotesByCustom4", 2985); _static_2(L, "quote_reducer___filterQuotesByState$closure", "_filterQuotesByState", 2986); _static_2(L, "quote_reducer___filterQuotesByStatus$closure", "_filterQuotesByStatus", 2987); _static_2(L, "quote_reducer___filterQuotes$closure", "_filterQuotes", 2988); _static_2(L, "quote_reducer___sortQuotes$closure", "_sortQuotes", 2989); _static_2(L, "quote_reducer___startListMultiselect$closure", "_startListMultiselect12", 2990); _static_2(L, "quote_reducer___addToListMultiselect$closure", "_addToListMultiselect12", 2991); _static_2(L, "quote_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect12", 2992); _static_2(L, "quote_reducer___clearListMultiselect$closure", "_clearListMultiselect12", 2993); _static_2(L, "quote_reducer___markSentQuoteSuccess$closure", "_markSentQuoteSuccess", 2994); _static_2(L, "quote_reducer___archiveQuoteSuccess$closure", "_archiveQuoteSuccess", 2995); _static_2(L, "quote_reducer___deleteQuoteSuccess$closure", "_deleteQuoteSuccess", 2996); _static_2(L, "quote_reducer___restoreQuoteSuccess$closure", "_restoreQuoteSuccess", 2997); _static_2(L, "quote_reducer___convertQuoteSuccess$closure", "_convertQuoteSuccess", 2998); _static_2(L, "quote_reducer___addQuote$closure", "_addQuote", 2999); _static_2(L, "quote_reducer___updateQuote$closure", "_updateQuote", 3000); _static_2(L, "quote_reducer___setLoadedQuotes$closure", "_setLoadedQuotes", 3001); _static_2(L, "quote_reducer___setLoadedCompany$closure", "_setLoadedCompany11", 3002); _static_2(E, "recurring_expense_reducer___clearEditing$closure", "_clearEditing11", 260); _static_2(E, "recurring_expense_reducer___updateEditing$closure", "_updateEditing12", 260); _static_2(E, "recurring_expense_reducer___viewRecurringExpenseList$closure", "_viewRecurringExpenseList0", 3003); _static_2(E, "recurring_expense_reducer___filterRecurringExpensesByCustom1$closure", "_filterRecurringExpensesByCustom1", 3004); _static_2(E, "recurring_expense_reducer___filterRecurringExpensesByCustom2$closure", "_filterRecurringExpensesByCustom2", 3005); _static_2(E, "recurring_expense_reducer___filterRecurringExpensesByState$closure", "_filterRecurringExpensesByState", 3006); _static_2(E, "recurring_expense_reducer___filterRecurringExpenses$closure", "_filterRecurringExpenses", 3007); _static_2(E, "recurring_expense_reducer___sortRecurringExpenses$closure", "_sortRecurringExpenses", 3008); _static_2(E, "recurring_expense_reducer___startListMultiselect$closure", "_startListMultiselect13", 3009); _static_2(E, "recurring_expense_reducer___addToListMultiselect$closure", "_addToListMultiselect13", 3010); _static_2(E, "recurring_expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect13", 3011); _static_2(E, "recurring_expense_reducer___clearListMultiselect$closure", "_clearListMultiselect13", 3012); _static_2(E, "recurring_expense_reducer___archiveRecurringExpenseSuccess$closure", "_archiveRecurringExpenseSuccess", 3013); _static_2(E, "recurring_expense_reducer___deleteRecurringExpenseSuccess$closure", "_deleteRecurringExpenseSuccess", 3014); _static_2(E, "recurring_expense_reducer___restoreRecurringExpenseSuccess$closure", "_restoreRecurringExpenseSuccess", 3015); _static_2(E, "recurring_expense_reducer___addRecurringExpense$closure", "_addRecurringExpense", 3016); _static_2(E, "recurring_expense_reducer___updateRecurringExpense$closure", "_updateRecurringExpense", 3017); _static_2(E, "recurring_expense_reducer___startRecurringExpensesSuccess$closure", "_startRecurringExpensesSuccess", 3018); _static_2(E, "recurring_expense_reducer___stopRecurringExpensesSuccess$closure", "_stopRecurringExpensesSuccess", 3019); _static_2(E, "recurring_expense_reducer___setLoadedRecurringExpense$closure", "_setLoadedRecurringExpense", 3020); _static_2(E, "recurring_expense_reducer___setLoadedRecurringExpenses$closure", "_setLoadedRecurringExpenses", 3021); _static_2(E, "recurring_expense_reducer___setLoadedCompany$closure", "_setLoadedCompany12", 3022); _static_2(A, "recurring_invoice_reducer___clearEditing$closure", "_clearEditing12", 153); _static_2(A, "recurring_invoice_reducer___updateEditing$closure", "_updateEditing13", 153); _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItem$closure", "_addRecurringInvoiceItem", 610); _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItems$closure", "_addRecurringInvoiceItems", 3023); _static_2(A, "recurring_invoice_reducer___removeRecurringInvoiceItem$closure", "_removeRecurringInvoiceItem", 609); _static_2(A, "recurring_invoice_reducer___updateRecurringInvoiceItem$closure", "_updateRecurringInvoiceItem", 608); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure", "_filterRecurringInvoicesByCustom1", 3024); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure", "_filterRecurringInvoicesByCustom2", 3025); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure", "_filterRecurringInvoicesByCustom3", 3026); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure", "_filterRecurringInvoicesByCustom4", 3027); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByState$closure", "_filterRecurringInvoicesByState", 3028); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure", "_filterRecurringInvoicesByStatus", 3029); _static_2(A, "recurring_invoice_reducer___filterRecurringInvoices$closure", "_filterRecurringInvoices", 3030); _static_2(A, "recurring_invoice_reducer___sortRecurringInvoices$closure", "_sortRecurringInvoices", 3031); _static_2(A, "recurring_invoice_reducer___startListMultiselect$closure", "_startListMultiselect14", 3032); _static_2(A, "recurring_invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect14", 3033); _static_2(A, "recurring_invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect14", 3034); _static_2(A, "recurring_invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect14", 3035); _static_2(A, "recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure", "_archiveRecurringInvoiceSuccess", 3036); _static_2(A, "recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure", "_deleteRecurringInvoiceSuccess", 3037); _static_2(A, "recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure", "_emailRecurringInvoiceSuccess", 3038); _static_2(A, "recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure", "_restoreRecurringInvoiceSuccess", 3039); _static_2(A, "recurring_invoice_reducer___startRecurringInvoicesSuccess$closure", "_startRecurringInvoicesSuccess", 3040); _static_2(A, "recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure", "_stopRecurringInvoicesSuccess", 3041); _static_2(A, "recurring_invoice_reducer___addRecurringInvoice$closure", "_addRecurringInvoice", 3042); _static_2(A, "recurring_invoice_reducer___updateRecurringInvoice$closure", "_updateRecurringInvoice", 3043); _static_2(A, "recurring_invoice_reducer___setLoadedRecurringInvoices$closure", "_setLoadedRecurringInvoices", 3044); _static_2(A, "recurring_invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany13", 3045); _static_2(Q, "static_reducer__staticLoadedReducer$closure", "staticLoadedReducer", 3046); _static_2(X, "subscription_reducer___clearEditing$closure", "_clearEditing13", 715); _static_2(X, "subscription_reducer___updateEditing$closure", "_updateEditing14", 715); _static_2(X, "subscription_reducer___filterSubscriptionsByCustom1$closure", "_filterSubscriptionsByCustom1", 3048); _static_2(X, "subscription_reducer___filterSubscriptionsByCustom2$closure", "_filterSubscriptionsByCustom2", 3049); _static_2(X, "subscription_reducer___filterSubscriptionsByState$closure", "_filterSubscriptionsByState", 3050); _static_2(X, "subscription_reducer___filterSubscriptions$closure", "_filterSubscriptions", 3051); _static_2(X, "subscription_reducer___sortSubscriptions$closure", "_sortSubscriptions", 3052); _static_2(X, "subscription_reducer___startListMultiselect$closure", "_startListMultiselect15", 3053); _static_2(X, "subscription_reducer___addToListMultiselect$closure", "_addToListMultiselect15", 3054); _static_2(X, "subscription_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect15", 3055); _static_2(X, "subscription_reducer___clearListMultiselect$closure", "_clearListMultiselect15", 3056); _static_2(X, "subscription_reducer___archiveSubscriptionSuccess$closure", "_archiveSubscriptionSuccess", 3057); _static_2(X, "subscription_reducer___deleteSubscriptionSuccess$closure", "_deleteSubscriptionSuccess", 3058); _static_2(X, "subscription_reducer___restoreSubscriptionSuccess$closure", "_restoreSubscriptionSuccess", 3059); _static_2(X, "subscription_reducer___addSubscription$closure", "_addSubscription", 3060); _static_2(X, "subscription_reducer___updateSubscription$closure", "_updateSubscription", 3061); _static_2(X, "subscription_reducer___setLoadedSubscription$closure", "_setLoadedSubscription", 3062); _static_2(X, "subscription_reducer___setLoadedSubscriptions$closure", "_setLoadedSubscriptions", 3063); _static_2(X, "subscription_reducer___setLoadedCompany$closure", "_setLoadedCompany14", 3064); _static_2(N, "task_reducer___clearEditing$closure", "_clearEditing14", 714); _static_2(N, "task_reducer___updateEditing$closure", "_updateEditing15", 714); _static_2(N, "task_reducer___viewTaskList$closure", "_viewTaskList0", 3066); _static_2(N, "task_reducer___filterTasksByCustom1$closure", "_filterTasksByCustom1", 3067); _static_2(N, "task_reducer___filterTasksByCustom2$closure", "_filterTasksByCustom2", 3068); _static_2(N, "task_reducer___filterTasksByState$closure", "_filterTasksByState", 3069); _static_2(N, "task_reducer___filterTasksByStatus$closure", "_filterTasksByStatus", 3070); _static_2(N, "task_reducer___filterTasks$closure", "_filterTasks", 3071); _static_2(N, "task_reducer___sortTasks$closure", "_sortTasks0", 3072); _static_2(N, "task_reducer___addTaskTime$closure", "_addTaskTime", 3073); _static_2(N, "task_reducer___removeTaskTime$closure", "_removeTaskTime", 3074); _static_2(N, "task_reducer___updateTaskTime$closure", "_updateTaskTime", 3075); _static_2(N, "task_reducer___startListMultiselect$closure", "_startListMultiselect16", 3076); _static_2(N, "task_reducer___addToListMultiselect$closure", "_addToListMultiselect16", 3077); _static_2(N, "task_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect16", 3078); _static_2(N, "task_reducer___clearListMultiselect$closure", "_clearListMultiselect16", 3079); _static_2(N, "task_reducer___sortTasksSuccess$closure", "_sortTasksSuccess", 3080); _static_2(N, "task_reducer___archiveTaskSuccess$closure", "_archiveTaskSuccess", 3081); _static_2(N, "task_reducer___deleteTaskSuccess$closure", "_deleteTaskSuccess", 3082); _static_2(N, "task_reducer___restoreTaskSuccess$closure", "_restoreTaskSuccess", 3083); _static_2(N, "task_reducer___addTask$closure", "_addTask", 3084); _static_2(N, "task_reducer___updateTask$closure", "_updateTask", 3085); _static_2(N, "task_reducer___setLoadedTask$closure", "_setLoadedTask", 3086); _static_2(N, "task_reducer___setLoadedTasks$closure", "_setLoadedTasks", 3087); _static_2(N, "task_reducer___setLoadedCompany$closure", "_setLoadedCompany15", 3088); _static_2(A, "task_status_reducer___clearEditing$closure", "_clearEditing15", 697); _static_2(A, "task_status_reducer___updateEditing$closure", "_updateEditing16", 697); _static_2(A, "task_status_reducer___viewTaskStatusList$closure", "_viewTaskStatusList0", 3090); _static_2(A, "task_status_reducer___filterTaskStatusesByCustom1$closure", "_filterTaskStatusesByCustom1", 3091); _static_2(A, "task_status_reducer___filterTaskStatusesByCustom2$closure", "_filterTaskStatusesByCustom2", 3092); _static_2(A, "task_status_reducer___filterTaskStatusesByState$closure", "_filterTaskStatusesByState", 3093); _static_2(A, "task_status_reducer___filterTaskStatuses$closure", "_filterTaskStatuses", 3094); _static_2(A, "task_status_reducer___sortTaskStatuses$closure", "_sortTaskStatuses", 3095); _static_2(A, "task_status_reducer___startListMultiselect$closure", "_startListMultiselect17", 3096); _static_2(A, "task_status_reducer___addToListMultiselect$closure", "_addToListMultiselect17", 3097); _static_2(A, "task_status_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect17", 3098); _static_2(A, "task_status_reducer___clearListMultiselect$closure", "_clearListMultiselect17", 3099); _static_2(A, "task_status_reducer___sortTaskStatusSuccess$closure", "_sortTaskStatusSuccess", 3100); _static_2(A, "task_status_reducer___archiveTaskStatusSuccess$closure", "_archiveTaskStatusSuccess", 3101); _static_2(A, "task_status_reducer___deleteTaskStatusSuccess$closure", "_deleteTaskStatusSuccess", 3102); _static_2(A, "task_status_reducer___restoreTaskStatusSuccess$closure", "_restoreTaskStatusSuccess", 3103); _static_2(A, "task_status_reducer___addTaskStatus$closure", "_addTaskStatus", 3104); _static_2(A, "task_status_reducer___updateTaskStatus$closure", "_updateTaskStatus", 3105); _static_2(A, "task_status_reducer___setLoadedTaskStatus$closure", "_setLoadedTaskStatus", 3106); _static_2(A, "task_status_reducer___setLoadedTaskStatuses$closure", "_setLoadedTaskStatuses", 3107); _static_2(A, "task_status_reducer___setLoadedCompany$closure", "_setLoadedCompany16", 3108); _static_2(Z, "tax_rate_reducer___clearEditing$closure", "_clearEditing16", 546); _static_2(Z, "tax_rate_reducer___updateEditing$closure", "_updateEditing17", 546); _static_2(Z, "tax_rate_reducer___viewTaxRateList$closure", "_viewTaxRateList0", 3110); _static_2(Z, "tax_rate_reducer___filterTaxRatesByState$closure", "_filterTaxRatesByState", 3111); _static_2(Z, "tax_rate_reducer___filterTaxRates$closure", "_filterTaxRates", 3112); _static_2(Z, "tax_rate_reducer___sortTaxRates$closure", "_sortTaxRates", 3113); _static_2(Z, "tax_rate_reducer___startListMultiselect$closure", "_startListMultiselect18", 3114); _static_2(Z, "tax_rate_reducer___addToListMultiselect$closure", "_addToListMultiselect18", 3115); _static_2(Z, "tax_rate_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect18", 3116); _static_2(Z, "tax_rate_reducer___clearListMultiselect$closure", "_clearListMultiselect18", 3117); _static_2(Z, "tax_rate_reducer___archiveTaxRateSuccess$closure", "_archiveTaxRateSuccess", 3118); _static_2(Z, "tax_rate_reducer___deleteTaxRateSuccess$closure", "_deleteTaxRateSuccess", 3119); _static_2(Z, "tax_rate_reducer___restoreTaxRateSuccess$closure", "_restoreTaxRateSuccess", 3120); _static_2(Z, "tax_rate_reducer___addTaxRate$closure", "_addTaxRate", 3121); _static_2(Z, "tax_rate_reducer___updateTaxRate$closure", "_updateTaxRate", 3122); _static_2(Z, "tax_rate_reducer___setLoadedTaxRate$closure", "_setLoadedTaxRate", 3123); _static_2(Z, "tax_rate_reducer___setLoadedTaxRates$closure", "_setLoadedTaxRates", 3124); _static_2(Z, "tax_rate_reducer___setLoadedCompany$closure", "_setLoadedCompany17", 3125); _static_2(S, "token_reducer___clearEditing$closure", "_clearEditing17", 542); _static_2(S, "token_reducer___updateEditing$closure", "_updateEditing18", 542); _static_2(S, "token_reducer___viewTokenList$closure", "_viewTokenList0", 3127); _static_2(S, "token_reducer___filterTokensByCustom1$closure", "_filterTokensByCustom1", 3128); _static_2(S, "token_reducer___filterTokensByCustom2$closure", "_filterTokensByCustom2", 3129); _static_2(S, "token_reducer___filterTokensByState$closure", "_filterTokensByState", 3130); _static_2(S, "token_reducer___filterTokens$closure", "_filterTokens", 3131); _static_2(S, "token_reducer___sortTokens$closure", "_sortTokens", 3132); _static_2(S, "token_reducer___startListMultiselect$closure", "_startListMultiselect19", 3133); _static_2(S, "token_reducer___addToListMultiselect$closure", "_addToListMultiselect19", 3134); _static_2(S, "token_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect19", 3135); _static_2(S, "token_reducer___clearListMultiselect$closure", "_clearListMultiselect19", 3136); _static_2(S, "token_reducer___archiveTokenSuccess$closure", "_archiveTokenSuccess", 3137); _static_2(S, "token_reducer___deleteTokenSuccess$closure", "_deleteTokenSuccess", 3138); _static_2(S, "token_reducer___restoreTokenSuccess$closure", "_restoreTokenSuccess", 3139); _static_2(S, "token_reducer___addToken$closure", "_addToken", 3140); _static_2(S, "token_reducer___updateToken$closure", "_updateToken", 3141); _static_2(S, "token_reducer___setLoadedToken$closure", "_setLoadedToken", 3142); _static_2(S, "token_reducer___setLoadedTokens$closure", "_setLoadedTokens", 3143); _static_2(S, "token_reducer___setLoadedCompany$closure", "_setLoadedCompany18", 3144); _static_2(E, "user_reducer___clearEditing$closure", "_clearEditing18", 719); _static_2(E, "user_reducer___updateEditing$closure", "_updateEditing19", 719); _static_2(E, "user_reducer___viewUserList$closure", "_viewUserList0", 3146); _static_2(E, "user_reducer___filterUsersByCustom1$closure", "_filterUsersByCustom1", 3147); _static_2(E, "user_reducer___filterUsersByCustom2$closure", "_filterUsersByCustom2", 3148); _static_2(E, "user_reducer___filterUsersByCustom3$closure", "_filterUsersByCustom3", 3149); _static_2(E, "user_reducer___filterUsersByCustom4$closure", "_filterUsersByCustom4", 3150); _static_2(E, "user_reducer___filterUsersByState$closure", "_filterUsersByState", 3151); _static_2(E, "user_reducer___filterUsers$closure", "_filterUsers", 3152); _static_2(E, "user_reducer___sortUsers$closure", "_sortUsers", 3153); _static_2(E, "user_reducer___startListMultiselect$closure", "_startListMultiselect20", 3154); _static_2(E, "user_reducer___addToListMultiselect$closure", "_addToListMultiselect20", 3155); _static_2(E, "user_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect20", 3156); _static_2(E, "user_reducer___clearListMultiselect$closure", "_clearListMultiselect20", 3157); _static_2(E, "user_reducer___archiveUserSuccess$closure", "_archiveUserSuccess", 3158); _static_2(E, "user_reducer___deleteUserSuccess$closure", "_deleteUserSuccess", 3159); _static_2(E, "user_reducer___restoreUserSuccess$closure", "_restoreUserSuccess", 3160); _static_2(E, "user_reducer___removeUserSuccess$closure", "_removeUserSuccess", 3161); _static_2(E, "user_reducer___addUser$closure", "_addUser", 3162); _static_2(E, "user_reducer___updateUser$closure", "_updateUser", 3163); _static_2(E, "user_reducer___updateAuthUser$closure", "_updateAuthUser", 3164); _static_2(E, "user_reducer___connectOAuthUser$closure", "_connectOAuthUser0", 3165); _static_2(E, "user_reducer___connectGmailUser$closure", "_connectGmailUser0", 3166); _static_2(E, "user_reducer___setLoadedUser$closure", "_setLoadedUser", 3167); _static_2(E, "user_reducer___setLoadedUsers$closure", "_setLoadedUsers", 3168); _static_2(E, "user_reducer___setLoadedCompany$closure", "_setLoadedCompany19", 3169); _static_2(K, "vendor_reducer__editVendorContact$closure", "editVendorContact", 3170); _static_2(K, "vendor_reducer___clearEditing$closure", "_clearEditing19", 718); _static_2(K, "vendor_reducer___updateEditing$closure", "_updateEditing20", 718); _static_2(K, "vendor_reducer___addContact$closure", "_addContact", 3172); _static_2(K, "vendor_reducer___removeContact$closure", "_removeContact", 3173); _static_2(K, "vendor_reducer___updateContact$closure", "_updateContact", 3174); _static_2(K, "vendor_reducer___viewVendorList$closure", "_viewVendorList0", 3175); _static_2(K, "vendor_reducer___filterVendorsByCustom1$closure", "_filterVendorsByCustom1", 3176); _static_2(K, "vendor_reducer___filterVendorsByCustom2$closure", "_filterVendorsByCustom2", 3177); _static_2(K, "vendor_reducer___filterVendorsByCustom3$closure", "_filterVendorsByCustom3", 3178); _static_2(K, "vendor_reducer___filterVendorsByCustom4$closure", "_filterVendorsByCustom4", 3179); _static_2(K, "vendor_reducer___filterVendorsByState$closure", "_filterVendorsByState", 3180); _static_2(K, "vendor_reducer___filterVendors$closure", "_filterVendors", 3181); _static_2(K, "vendor_reducer___sortVendors$closure", "_sortVendors", 3182); _static_2(K, "vendor_reducer___startListMultiselect$closure", "_startListMultiselect21", 3183); _static_2(K, "vendor_reducer___addToListMultiselect$closure", "_addToListMultiselect21", 3184); _static_2(K, "vendor_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect21", 3185); _static_2(K, "vendor_reducer___clearListMultiselect$closure", "_clearListMultiselect21", 3186); _static_2(K, "vendor_reducer___archiveVendorSuccess$closure", "_archiveVendorSuccess", 3187); _static_2(K, "vendor_reducer___deleteVendorSuccess$closure", "_deleteVendorSuccess", 3188); _static_2(K, "vendor_reducer___restoreVendorSuccess$closure", "_restoreVendorSuccess", 3189); _static_2(K, "vendor_reducer___addVendor$closure", "_addVendor", 3190); _static_2(K, "vendor_reducer___updateVendor$closure", "_updateVendor", 3191); _static_2(K, "vendor_reducer___setLoadedVendor$closure", "_setLoadedVendor", 3192); _static_2(K, "vendor_reducer___setLoadedVendors$closure", "_setLoadedVendors", 3193); _static_2(K, "vendor_reducer___setLoadedCompany$closure", "_setLoadedCompany20", 3194); _static_2(L, "webhook_reducer___clearEditing$closure", "_clearEditing20", 713); _static_2(L, "webhook_reducer___updateEditing$closure", "_updateEditing21", 713); _static_2(L, "webhook_reducer___viewWebhookList$closure", "_viewWebhookList0", 3196); _static_2(L, "webhook_reducer___filterWebhooksByCustom1$closure", "_filterWebhooksByCustom1", 3197); _static_2(L, "webhook_reducer___filterWebhooksByCustom2$closure", "_filterWebhooksByCustom2", 3198); _static_2(L, "webhook_reducer___filterWebhooksByState$closure", "_filterWebhooksByState", 3199); _static_2(L, "webhook_reducer___filterWebhooks$closure", "_filterWebhooks", 3200); _static_2(L, "webhook_reducer___sortWebhooks$closure", "_sortWebhooks", 3201); _static_2(L, "webhook_reducer___startListMultiselect$closure", "_startListMultiselect22", 3202); _static_2(L, "webhook_reducer___addToListMultiselect$closure", "_addToListMultiselect22", 3203); _static_2(L, "webhook_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect22", 3204); _static_2(L, "webhook_reducer___clearListMultiselect$closure", "_clearListMultiselect22", 3205); _static_2(L, "webhook_reducer___archiveWebhookSuccess$closure", "_archiveWebhookSuccess", 3206); _static_2(L, "webhook_reducer___deleteWebhookSuccess$closure", "_deleteWebhookSuccess", 3207); _static_2(L, "webhook_reducer___restoreWebhookSuccess$closure", "_restoreWebhookSuccess", 3208); _static_2(L, "webhook_reducer___addWebhook$closure", "_addWebhook", 3209); _static_2(L, "webhook_reducer___updateWebhook$closure", "_updateWebhook", 3210); _static_2(L, "webhook_reducer___setLoadedWebhook$closure", "_setLoadedWebhook", 3211); _static_2(L, "webhook_reducer___setLoadedWebhooks$closure", "_setLoadedWebhooks", 3212); _static_2(L, "webhook_reducer___setLoadedCompany$closure", "_setLoadedCompany21", 3213); _static_1(B, "confirm_email_vm_ConfirmEmailVM_fromStore$closure", "ConfirmEmailVM_fromStore", 3214); _instance_0_u(O._EntitiesListTileState.prototype, "get$_entity_list_tile$_onLongPress", "_entity_list_tile$_onLongPress$0", 0); _instance_0_u(F._EntityDropdownState.prototype, "get$_onFocusChanged", "_onFocusChanged$0", 0); _instance_0_u(_ = A._FormColorPickerState.prototype, "get$_color_picker$_onChanged", "_color_picker$_onChanged$0", 0); _instance_0_u(_, "get$_showPicker", "_showPicker$0", 0); _instance_0_u(K._DatePickerState.prototype, "get$_onFoucsChanged", "_onFoucsChanged$0", 0); _instance_0_u(U._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(M._TimePickerState.prototype, "get$_time_picker$_onFoucsChanged", "_time_picker$_onFoucsChanged$0", 0); _static_1(A, "history_drawer_vm_AppDrawerVM_fromStore$closure", "AppDrawerVM_fromStore", 3215); _instance_0_u(E._InvoiceEmailViewState.prototype, "get$_invoice_email_view$_loadTemplate", "_invoice_email_view$_loadTemplate$0", 0); _instance_0_u(N._ListFilterState.prototype, "get$onFocusChanged", "onFocusChanged$0", 0); _static_1(A, "menu_drawer_vm_MenuDrawerVM_fromStore$closure", "MenuDrawerVM_fromStore", 3216); _instance_1_u(L.AppDataTable.prototype, "get$_app_data_table$_handleSelectAll", "_app_data_table$_handleSelectAll$1", 34); _instance_1_u(_ = L.TableRowInkWell0.prototype, "get$getRectCallback", "getRectCallback$1", 2092); _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 2093); _instance_0_u(_ = L._SortArrowState0.prototype, "get$_app_data_table$_rebuild", "_app_data_table$_rebuild$0", 0); _instance_1_u(_, "get$_app_data_table$_resetOrientationAnimation", "_app_data_table$_resetOrientationAnimation$1", 2095); _instance_0_u(_ = N.AppPaginatedDataTableState.prototype, "get$_app_paginated_data_table$_handleDataSourceChanged", "_app_paginated_data_table$_handleDataSourceChanged$0", 0); _instance_0_u(_, "get$_app_paginated_data_table$_handlePrevious", "_app_paginated_data_table$_handlePrevious$0", 0); _instance_0_u(_, "get$_app_paginated_data_table$_handleNext", "_app_paginated_data_table$_handleNext$0", 0); _static_1(G, "login_vm_LoginVM_fromStore$closure", "LoginVM_fromStore", 3217); _static_1(Y, "client_list_vm_ClientListVM_fromStore$closure", "ClientListVM_fromStore", 3218); _static_1(D, "client_screen_vm_ClientScreenVM_fromStore$closure", "ClientScreenVM_fromStore", 3219); _instance_0_u(R.ClientEditBillingAddressState.prototype, "get$_client_edit_billing_address$_onChanged", "_client_edit_billing_address$_onChanged$0", 0); _instance_0_u(R.ContactEditDetailsState.prototype, "get$_client_edit_contacts$_onChanged", "_client_edit_contacts$_onChanged$0", 0); _instance_0_u(Q.ClientEditDetailsState.prototype, "get$_client_edit_details$_onChanged", "_client_edit_details$_onChanged$0", 0); _instance_0_u(L.ClientEditNotesState.prototype, "get$_client_edit_notes$_onChanged", "_client_edit_notes$_onChanged$0", 0); _instance_0_u(M.ClientEditSettingsState.prototype, "get$_client_edit_settings$_onChanged", "_client_edit_settings$_onChanged$0", 0); _instance_0_u(R.ClientEditShippingAddressState.prototype, "get$_client_edit_shipping_address$_onChanged", "_client_edit_shipping_address$_onChanged$0", 0); _instance_0_u(G._ClientViewState.prototype, "get$_client_view$_onTabChanged", "_client_view$_onTabChanged$0", 0); _instance_2_u(Q._ClientViewDetailsState.prototype, "get$_client_view_details$_launchStatus", "_client_view_details$_launchStatus$2", 556); _static_1(S, "company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure", "CompanyGatewayListVM_fromStore", 3220); _static_1(Y, "company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure", "CompanyGatewayScreenVM_fromStore", 3221); _instance_0_u(V._GatewayConfigFieldState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); _instance_0_u(V._LimitEditorState.prototype, "get$_onTextChange", "_onTextChange$0", 0); _instance_0_u(V._FeesEditorState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); _static_1(U, "credit_list_vm_CreditListVM_fromStore$closure", "CreditListVM_fromStore", 3222); _static_1(R, "credit_screen_vm_CreditScreenVM_fromStore$closure", "CreditScreenVM_fromStore", 3223); _instance_1_u(U._DashboardChartState.prototype, "get$_onSelectionChanged", "_onSelectionChanged$1", 2197); _instance_0_u(_ = F._DashboardScreenState.prototype, "get$onScrollListener", "onScrollListener$0", 0); _instance_0_u(_, "get$onTabListener", "onTabListener$0", 0); _static_1(Q, "dashboard_screen_vm_DashboardVM_fromStore$closure", "DashboardVM_fromStore", 3224); _static_1(F, "design_list_vm_DesignListVM_fromStore$closure", "DesignListVM_fromStore", 3225); _static_1(G, "design_screen_vm_DesignScreenVM_fromStore$closure", "DesignScreenVM_fromStore", 3226); _instance_0_u(_ = N._DesignEditState.prototype, "get$_design_edit$_onChanged", "_design_edit$_onChanged$0", 0); _instance_0_u(_, "get$_onHtmlChanged", "_onHtmlChanged$0", 0); _instance_1_u(_, "get$_loadDesign", "_loadDesign$1", 2229); _static_1(A, "document_list_vm_DocumentListVM_fromStore$closure", "DocumentListVM_fromStore", 3227); _static_1(U, "document_screen_vm_DocumentScreenVM_fromStore$closure", "DocumentScreenVM_fromStore", 3228); _instance_0_u(Z._DocumentEditState.prototype, "get$_document_edit$_onChanged", "_document_edit$_onChanged$0", 0); _instance_0_u(M.ExpenseEditDetailsState.prototype, "get$_expense_edit_details$_onChanged", "_expense_edit_details$_onChanged$0", 0); _instance_0_u(E.ExpenseEditNotesState.prototype, "get$_expense_edit_notes$_onChanged", "_expense_edit_notes$_onChanged$0", 0); _instance_0_u(T.ExpenseEditSettingsState.prototype, "get$_expense_edit_settings$_onChanged", "_expense_edit_settings$_onChanged$0", 0); _static_1(F, "expense_list_vm_ExpenseListVM_fromStore$closure", "ExpenseListVM_fromStore", 3229); _static_1(U, "expense_screen_vm_ExpenseScreenVM_fromStore$closure", "ExpenseScreenVM_fromStore", 3230); _instance_0_u(U._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", 3231); _static_1(O, "expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure", "ExpenseCategoryScreenVM_fromStore", 3232); _instance_0_u(Q._GroupEditState.prototype, "get$_group_edit$_onChanged", "_group_edit$_onChanged$0", 0); _static_1(Y, "group_list_vm_GroupListVM_fromStore$closure", "GroupListVM_fromStore", 3233); _static_1(S, "group_screen_vm_GroupScreenVM_fromStore$closure", "GroupScreenVM_fromStore", 3234); _instance_0_u(S.InvoiceEditDesktopState.prototype, "get$_invoice_edit_desktop$_onChanged", "_invoice_edit_desktop$_onChanged$0", 0); _instance_0_u(N.InvoiceEditDetailsState.prototype, "get$_invoice_edit_details$_onChanged", "_invoice_edit_details$_onChanged$0", 0); _instance_0_u(G.ItemEditDetailsState.prototype, "get$_invoice_edit_items$_onTextChanged", "_invoice_edit_items$_onTextChanged$0", 0); _instance_0_u(Z.InvoiceEditNotesState.prototype, "get$_invoice_edit_notes$_onChanged", "_invoice_edit_notes$_onChanged$0", 0); _static_1(T, "invoice_list_vm_InvoiceListVM_fromStore$closure", "InvoiceListVM_fromStore", 3235); _static_1(E, "invoice_screen_vm_InvoiceScreenVM_fromStore$closure", "InvoiceScreenVM_fromStore", 3236); _instance_0_u(E._InvoiceViewState.prototype, "get$_invoice_view$_onTabChanged", "_invoice_view$_onTabChanged$0", 0); _instance_0_u(M._PaymentEditState.prototype, "get$_payment_edit$_onChanged", "_payment_edit$_onChanged$0", 0); _instance(M._PaymentableEditorState.prototype, "get$_payment_edit$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_edit$_onChanged$1", "_payment_edit$_onChanged$0"], 710, 0); _static_1(R, "payment_list_vm_PaymentListVM_fromStore$closure", "PaymentListVM_fromStore", 3237); _static_1(G, "payment_screen_vm_PaymentScreenVM_fromStore$closure", "PaymentScreenVM_fromStore", 3238); _instance_0_u(Y._PaymentRefundState.prototype, "get$_payment_refund$_onChanged", "_payment_refund$_onChanged$0", 0); _instance(Y._PaymentableEditorState0.prototype, "get$_payment_refund$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_refund$_onChanged$1", "_payment_refund$_onChanged$0"], 710, 0); _instance_0_u(U._PaymentTermEditState.prototype, "get$_payment_term_edit$_onChanged", "_payment_term_edit$_onChanged$0", 0); _static_1(U, "payment_term_list_vm_PaymentTermListVM_fromStore$closure", "PaymentTermListVM_fromStore", 3239); _static_1(Z, "payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure", "PaymentTermScreenVM_fromStore", 3240); _instance_0_u(F._ProductEditState.prototype, "get$_product_edit$_onChanged", "_product_edit$_onChanged$0", 0); _static_1(Q, "product_list_vm_ProductListVM_fromStore$closure", "ProductListVM_fromStore", 3241); _static_1(E, "product_screen_vm_ProductScreenVM_fromStore$closure", "ProductScreenVM_fromStore", 3242); _instance_0_u(Z._ProductViewState.prototype, "get$_product_view$_onTabChanged", "_product_view$_onTabChanged$0", 0); _instance_0_u(K._ProjectEditState.prototype, "get$_project_edit$_onChanged", "_project_edit$_onChanged$0", 0); _static_1(X, "project_list_vm_ProjectListVM_fromStore$closure", "ProjectListVM_fromStore", 3243); _static_1(S, "project_screen_vm_ProjectScreenVM_fromStore$closure", "ProjectScreenVM_fromStore", 3244); _instance_0_u(M._ProjectViewState.prototype, "get$_project_view$_onTabChanged", "_project_view$_onTabChanged$0", 0); _static_1(U, "quote_list_vm_QuoteListVM_fromStore$closure", "QuoteListVM_fromStore", 3245); _static_1(B, "quote_screen_vm_QuoteScreenVM_fromStore$closure", "QuoteScreenVM_fromStore", 3246); _static_1(U, "recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure", "RecurringExpenseListVM_fromStore", 3247); _static_1(B, "recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure", "RecurringExpenseScreenVM_fromStore", 3248); _static_1(Y, "recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure", "RecurringInvoiceListVM_fromStore", 3249); _static_1(A, "recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure", "RecurringInvoiceScreenVM_fromStore", 3250); _static_1(L, "reports_screen_vm_ReportsScreenVM_fromStore$closure", "ReportsScreenVM_fromStore", 3251); _instance_0_u(_ = O._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", 3252); _instance_0_u(V._BuyNowButtonsState.prototype, "get$_buy_now_buttons$_onChanged", "_buy_now_buttons$_onChanged$0", 0); _static_1(B, "buy_now_buttons_vm_BuyNowButtonsVM_fromStore$closure", "BuyNowButtonsVM_fromStore", 3253); _instance_0_u(_ = S._ClientPortalState.prototype, "get$_client_portal$_onTabChanged", "_client_portal$_onTabChanged$0", 0); _instance_0_u(_, "get$_client_portal$_onChanged", "_client_portal$_onChanged$0", 0); _static_1(A, "client_portal_vm_ClientPortalVM_fromStore$closure", "ClientPortalVM_fromStore", 3254); _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", 3255); _instance_0_u(X._CreditCardsAndBanksState.prototype, "get$_credit_cards_and_banks$_onChanged", "_credit_cards_and_banks$_onChanged$0", 0); _static_1(F, "credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure", "CreditCardsAndBanksVM_fromStore", 3256); _instance_0_u(S._CustomFieldsState.prototype, "get$_custom_fields$_onTabChanged", "_custom_fields$_onTabChanged$0", 0); _instance_0_u(S._CustomFormFieldState.prototype, "get$_custom_fields$_onChanged", "_custom_fields$_onChanged$0", 0); _static_1(M, "custom_fields_vm_CustomFieldsVM_fromStore$closure", "CustomFieldsVM_fromStore", 3257); _instance_0_u(V._DataVisualizationsState.prototype, "get$_data_visualizations$_onChanged", "_data_visualizations$_onChanged$0", 0); _static_1(M, "data_visualizations_vm_DataVisualizationsVM_fromStore$closure", "DataVisualizationsVM_fromStore", 3258); _instance_0_u(R._DeviceSettingsState.prototype, "get$_device_settings$_onTabChanged", "_device_settings$_onTabChanged$0", 0); _static_1(L, "device_settings_vm_DeviceSettingsVM_fromStore$closure", "DeviceSettingsVM_fromStore", 3259); _instance_0_u(_ = N._EmailSettingsState.prototype, "get$_email_settings$_onChanged", "_email_settings$_onChanged$0", 0); _instance_1_u(_, "get$_onSavePressed", "_onSavePressed$1", 29); _static_1(D, "email_settings_vm_EmailSettingsVM_fromStore$closure", "EmailSettingsVM_fromStore", 3260); _static_1(N, "expense_settings_vm_ExpenseSettingsVM_fromStore$closure", "ExpenseSettingsVM_fromStore", 3261); _instance_0_u(_ = F._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", 29); _instance_0_u(F._EntityNumberSettingsState.prototype, "get$_generated_numbers$_onChanged", "_generated_numbers$_onChanged$0", 0); _static_1(F, "generated_numbers_vm_GeneratedNumbersVM_fromStore$closure", "GeneratedNumbersVM_fromStore", 3262); _static_1(N, "import_export_vm_ImportExportVM_fromStore$closure", "ImportExportVM_fromStore", 3263); _instance_0_u(Z._InvoiceDesignState.prototype, "get$_invoice_design$_onTabChanged", "_invoice_design$_onTabChanged$0", 0); _static_1(B, "invoice_design_vm_InvoiceDesignVM_fromStore$closure", "InvoiceDesignVM_fromStore", 3264); _instance_0_u(_ = G._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(B, "localization_vm_LocalizationSettingsVM_fromStore$closure", "LocalizationSettingsVM_fromStore", 3265); _instance_0_u(V._OnlinePaymentsState.prototype, "get$_online_payments$_onChanged", "_online_payments$_onChanged$0", 0); _static_1(B, "online_payments_vm_OnlinePaymentsVM_fromStore$closure", "OnlinePaymentsVM_fromStore", 3266); _static_1(G, "product_settings_vm_ProductSettingsVM_fromStore$closure", "ProductSettingsVM_fromStore", 3267); _static_1(D, "settings_list_vm_SettingsListVM_fromStore$closure", "SettingsListVM_fromStore", 3268); _static_1(L, "settings_screen_vm_SettingsScreenVM_fromStore$closure", "SettingsScreenVM_fromStore", 3269); _instance_0_u(_ = X._SettingsWizardState.prototype, "get$_onRefreshPressed", "_onRefreshPressed$0", 0); _instance_0_u(_, "get$_settings_wizard$_onSavePressed", "_settings_wizard$_onSavePressed$0", 0); _instance_0_u(L._TaskSettingsState.prototype, "get$_task_settings$_onChanged", "_task_settings$_onChanged$0", 0); _static_1(F, "task_settings_vm_TaskSettingsVM_fromStore$closure", "TaskSettingsVM_fromStore", 3270); _static_1(A, "tax_settings_vm_TaxSettingsVM_fromStore$closure", "TaxSettingsVM_fromStore", 3271); _instance_0_u(_ = L._TemplatesAndRemindersState.prototype, "get$_templates_and_reminders$_onChanged", "_templates_and_reminders$_onChanged$0", 0); _instance_0_u(_, "get$_handleTabSelection", "_handleTabSelection$0", 0); _instance_0_u(L._ReminderSettingsState.prototype, "get$_onTextChanged", "_onTextChanged$0", 0); _static_1(F, "templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure", "TemplatesAndRemindersVM_fromStore", 3272); _instance_0_u(_ = K._UserDetailsState.prototype, "get$_user_details$_onTabChanged", "_user_details$_onTabChanged$0", 0); _instance_0_u(_, "get$_user_details$_onChanged", "_user_details$_onChanged$0", 0); _static_1(M, "user_details_vm_UserDetailsVM_fromStore$closure", "UserDetailsVM_fromStore", 3273); _instance_0_u(D._WorkflowSettingsState.prototype, "get$_workflow_settings$_onTabChanged", "_workflow_settings$_onTabChanged$0", 0); _static_1(Y, "workflow_vm_WorkflowSettingsVM_fromStore$closure", "WorkflowSettingsVM_fromStore", 3274); _instance_0_u(_ = S._SubscriptionEditState.prototype, "get$_subscription_edit$_onTabChanged", "_subscription_edit$_onTabChanged$0", 0); _instance_0_u(_, "get$_subscription_edit$_onChanged", "_subscription_edit$_onChanged$0", 0); _static_1(S, "subscription_list_vm_SubscriptionListVM_fromStore$closure", "SubscriptionListVM_fromStore", 3275); _static_1(L, "subscription_screen_vm_SubscriptionScreenVM_fromStore$closure", "SubscriptionScreenVM_fromStore", 3276); _instance_0_u(R._TaskEditDesktopState.prototype, "get$_task_edit_desktop$_onChanged", "_task_edit_desktop$_onChanged$0", 0); _instance_0_u(B._TaskEditDetailsState.prototype, "get$_task_edit_details$_onChanged", "_task_edit_details$_onChanged$0", 0); _instance_0_u(D._KanbanStatusCardState.prototype, "get$_kanban_status$_onSavePressed", "_kanban_status$_onSavePressed$0", 0); _static_1(T, "kanban_view_vm_KanbanVM_fromStore$closure", "KanbanVM_fromStore", 3277); _static_1(K, "task_list_vm_TaskListVM_fromStore$closure", "TaskListVM_fromStore", 3278); _static_1(Y, "task_screen_vm_TaskScreenVM_fromStore$closure", "TaskScreenVM_fromStore", 3279); _instance_0_u(Q._TaskViewState.prototype, "get$_task_view$_onTabChanged", "_task_view$_onTabChanged$0", 0); _instance_0_u(L._TaskStatusEditState.prototype, "get$_task_status_edit$_onChanged", "_task_status_edit$_onChanged$0", 0); _static_1(U, "task_status_list_vm_TaskStatusListVM_fromStore$closure", "TaskStatusListVM_fromStore", 3280); _static_1(U, "task_status_screen_vm_TaskStatusScreenVM_fromStore$closure", "TaskStatusScreenVM_fromStore", 3281); _instance_0_u(A._TaxRateEditState.prototype, "get$_tax_rate_edit$_onChanged", "_tax_rate_edit$_onChanged$0", 0); _static_1(X, "tax_rate_list_vm_TaxRateListVM_fromStore$closure", "TaxRateListVM_fromStore", 3282); _static_1(O, "tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure", "TaxRateScreenVM_fromStore", 3283); _instance_0_u(Y._TokenEditState.prototype, "get$_token_edit$_onChanged", "_token_edit$_onChanged$0", 0); _static_1(M, "token_list_vm_TokenListVM_fromStore$closure", "TokenListVM_fromStore", 3284); _static_1(K, "token_screen_vm_TokenScreenVM_fromStore$closure", "TokenScreenVM_fromStore", 3285); _instance_0_u(U._UserEditState.prototype, "get$_user_edit$_onChanged", "_user_edit$_onChanged$0", 0); _static_1(M, "user_list_vm_UserListVM_fromStore$closure", "UserListVM_fromStore", 3286); _static_1(A, "user_screen_vm_UserScreenVM_fromStore$closure", "UserScreenVM_fromStore", 3287); _instance_0_u(G.VendorEditAddressState.prototype, "get$_vendor_edit_address$_onChanged", "_vendor_edit_address$_onChanged$0", 0); _instance_0_u(D.VendorContactEditDetailsState.prototype, "get$_vendor_edit_contacts$_onChanged", "_vendor_edit_contacts$_onChanged$0", 0); _instance_0_u(Q.VendorEditDetailsState.prototype, "get$_vendor_edit_details$_onChanged", "_vendor_edit_details$_onChanged$0", 0); _instance_0_u(N.VendorEditNotesState.prototype, "get$_vendor_edit_notes$_onChanged", "_vendor_edit_notes$_onChanged$0", 0); _static_1(E, "vendor_list_vm_VendorListVM_fromStore$closure", "VendorListVM_fromStore", 3288); _static_1(B, "vendor_screen_vm_VendorScreenVM_fromStore$closure", "VendorScreenVM_fromStore", 3289); _instance_0_u(N._VendorViewState.prototype, "get$_vendor_view$_onTabChanged", "_vendor_view$_onTabChanged$0", 0); _instance_2_u(Y._VendorViewDetailsState.prototype, "get$_launchStatus", "_launchStatus$2", 556); _instance_0_u(N._WebhookEditState.prototype, "get$_webhook_edit$_onChanged", "_webhook_edit$_onChanged$0", 0); _static_1(X, "webhook_list_vm_WebhookListVM_fromStore$closure", "WebhookListVM_fromStore", 3290); _static_1(T, "webhook_screen_vm_WebhookScreenVM_fromStore$closure", "WebhookScreenVM_fromStore", 3291); _instance_1_u(M.NativePdfRendererPlugin.prototype, "get$onMethodCall", "onMethodCall$1", 266); _static_1(X, "native_pdf_view_PdfView__render$closure", "PdfView__render", 3292); _static(X, "native_pdf_view_PdfView__pageBuilder$closure", 3, null, ["call$3"], ["PdfView__pageBuilder"], 3293, 0); _instance_1_u(F._FadeWidgetState.prototype, "get$animationStatusChange", "animationStatusChange$1", 35); _instance_1_i(_ = Y.ImageHandler.prototype, "get$build", "build$1", 79); _instance(_, "get$_imageBuilder", 0, 4, null, ["call$4"], ["_imageBuilder$4"], 454, 0); _instance(_, "get$_placeholderBuilder", 0, 4, null, ["call$4"], ["_placeholderBuilder$4"], 454, 0); _instance(_, "get$_preLoadingBuilder", 0, 4, null, ["call$4"], ["_preLoadingBuilder$4"], 454, 0); _instance(_, "get$_loadingBuilder", 0, 3, null, ["call$3"], ["_loadingBuilder$3"], 2633, 0); _instance(_, "get$_errorBuilder", 0, 3, null, ["call$3"], ["_errorBuilder$3"], 502, 0); _static_0(Q, "path_provider__getApplicationDocumentsDirectory$closure", "getApplicationDocumentsDirectory", 3294); _static_1(E, "photo_view__defaultScaleStateCycle$closure", "defaultScaleStateCycle", 3295); _instance_1_u(E._PhotoViewState.prototype, "get$scaleStateListener", "scaleStateListener$1", 638); _instance_1_u(_ = M._PhotoViewGalleryState.prototype, "get$scaleStateChangedCallback", "scaleStateChangedCallback$1", 638); _instance_2_u(_, "get$_buildItem", "_buildItem$2", 128); _instance_0_u(E.PhotoViewController.prototype, "get$_changeListener", "_changeListener$0", 0); _instance_0_u(_ = E.PhotoViewControllerDelegate.prototype, "get$_blindScaleStateListener", "_blindScaleStateListener$0", 0); _instance_0_u(_, "get$_blindScaleListener", "_blindScaleListener$0", 0); _instance_0_u(_, "get$nextScaleState", "nextScaleState$0", 0); _instance_0_u(M.PhotoViewScaleStateController.prototype, "get$_scaleStateChangeListener", "_scaleStateChangeListener$0", 0); _instance_0_u(_ = M.PhotoViewCoreState.prototype, "get$handleScaleAnimation", "handleScaleAnimation$0", 0); _instance_0_u(_, "get$handlePositionAnimate", "handlePositionAnimate$0", 0); _instance_0_u(_, "get$handleRotationAnimation", "handleRotationAnimation$0", 0); _instance_1_u(_, "get$onScaleStart", "onScaleStart$1", 674); _instance_1_u(_, "get$onScaleUpdate", "onScaleUpdate$1", 673); _instance_1_u(_, "get$onScaleEnd", "onScaleEnd$1", 671); _instance_1_u(_, "get$onAnimationStatus", "onAnimationStatus$1", 35); _instance_2_u(_, "get$animateOnScaleStateUpdate", "animateOnScaleStateUpdate$2", 571); _instance_1_u(O.PhotoViewGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 92); _instance_0_i(Z.IgnorableChangeNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_2_u(B.TypedReducer.prototype, "get$$call", "call$2", "1(Object?,@)"); _instance(B.TypedMiddleware.prototype, "get$$call", 0, 3, null, ["call$3"], ["call$3"], 2646, 0); _instance_0_u(_ = N.RoundedLoadingButtonState.prototype, "get$_btnPressed", "_btnPressed$0", 9); _instance_0_i(_, "get$_rounded_loading_button$_start", "_rounded_loading_button$_start$0", 9); _instance_0_u(_, "get$_rounded_loading_button$_reset", "_rounded_loading_button$_reset$0", 9); _instance(_ = F.Subject.prototype, "get$addError", 0, 1, function() { return [null]; }, ["call$2", "call$1"], ["addError$2", "addError$1"], 214, 0); _instance_1_i(_, "get$add", "add$1", 33); _instance_0_i(_, "get$close", "close$0", 453); _instance_1_u(Z.SentryFlutterWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 266); _instance_1_u(_ = Y._RenderValueLayoutBuilder.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_1(D, "link_LinkViewController__viewFactory$closure", "LinkViewController__viewFactory", 614); _static_0(E, "clock__systemTime$closure", "systemTime", 421); _static(U, "_isolates_web__compute$closure", 2, null, ["call$2$3$debugLabel", "call$2", "call$2$2"], ["compute", function(callback, message) { return U.compute(callback, message, null, type$.dynamic, type$.dynamic); }, function(callback, message, $Q, $R) { return U.compute(callback, message, null, $Q, $R); }], 3296, 0); _static(D, "print__debugPrintThrottled$closure", 1, null, ["call$2$wrapWidth", "call$1"], ["debugPrintThrottled", function(message) { return D.debugPrintThrottled(message, null); }], 3297, 0); _static_0(D, "print___debugPrintTask$closure", "_debugPrintTask", 0); _static_2(N, "layout_helper_ChildLayoutHelper_dryLayoutChild$closure", "ChildLayoutHelper_dryLayoutChild", 663); _static_2(N, "layout_helper_ChildLayoutHelper_layoutChild$closure", "ChildLayoutHelper_layoutChild", 663); _static_1(X, "flutter_keyboard_visibility_KeyboardVisibility__onKeyboardEvent$closure", "KeyboardVisibility__onKeyboardEvent", 81); _static_1(B, "utils__getUserDataFromMap$closure", "getUserDataFromMap", 3299); _static_2(F, "loading_reducer___setLoading$closure", "_setLoading", 3300); _static_2(F, "loading_reducer___setLoaded$closure", "_setLoaded", 3301); _static_2(F, "loading_reducer___setSaving$closure", "_setSaving", 3302); _static_2(F, "loading_reducer___setSaved$closure", "_setSaved", 2201); _static_1(G, "serialization0_SerializationUtils_computeDecode$closure", "SerializationUtils_computeDecode", 10); })(); (function inheritance() { var _mixin = hunkHelpers.mixin, _inheritMany = hunkHelpers.inheritMany, _inherit = hunkHelpers.inherit; _inheritMany(null, [P.Object, H._CkBlendModeColorFilter]); _inheritMany(P.Object, [H.Closure, H._NullTreeSanitizer, H.AlarmClock, H.AssetManager, H.AssetManagerException, H.EngineCanvas, H.BrowserEngine, H.OperatingSystem, H._SaveStackTracking, H.ContextStateHandle, H.CkCanvas, H.CkPictureSnapshot, H.CkPaintCommand, J.Interceptor, H.ProductionCollector, H.SkiaObjectCollectionError, H.CanvasKitCanvas, H.SkiaObject, H.HtmlViewEmbedder, H.OverlayCache, H.EmbeddedViewParams, H.MutatorType, H.Mutator, P.Iterable, H.FontFallbackData, H.NotoFont, H.CodeunitRange, H._ResolvedNotoFont, H._ResolvedNotoSubset, H.FallbackFontDownloadQueue, H.NotoDownloader, H.SkiaFontCollection, H._RegisteredFont, H.ImageCodecException, H.CkImage, H.AnimatedImageFrameInfo, H.IntervalTree, H.IntervalTreeNode, H.Layer, H.PrerollContext, H.PaintContext, H.LayerScene, H.LayerSceneBuilder, H.LayerTree, H.Frame, H.CompositorContext, H.CkNWayCanvas, H.CkPictureRecorder, H.Rasterizer, H.SkiaObjectCache, H.SurfaceFrame, H.Surface, H.CkSurface, H.CkParagraphStyle, H.CkTextStyle, H.CkParagraphBuilder, H._ParagraphCommand, H._ParagraphCommandType, P.Error, H.ClipboardMessageHandler, H.ClipboardAPICopyStrategy, H.ClipboardAPIPasteStrategy, H.ExecCommandCopyStrategy, H.ExecCommandPasteStrategy, H.DomRenderer, H._SaveStackEntry, H._SaveClipEntry, H._SaveElementStackEntry, H.SaveElementStackTracking, H.FrameReference, H.CrossFrameCache, H._CrossFrameCacheItem, H.SurfaceCanvas, H._DomClip, H.PersistedSurface, H.SurfacePaint, H.SurfacePaintData, H.Conic, H._QuadBounds, H._ConicBounds, H._ConicPair, H._CubicBounds, H.SurfacePath, H._SkQuadCoefficients, H.PathRef, H.PathRefIterator, H._QuadRoots, H.PathWinding, H.PathIterator, H._PaintRequest, H.RecordingCanvas, H.PaintCommand, H._PaintBounds, H.RenderStrategy, H._WebGlRenderer, H._GlProgram, H._GlContext, H._OffScreenCanvas, H.SurfaceScene, H.SurfaceSceneBuilder, H.NormalizedGradient, H.EngineGradient, H.ShaderBuilder, H.ShaderMethod, H.ShaderDeclaration, H.PersistedSurfaceState, H._PersistedSurfaceMatch, H.HtmlCodec, H.SingleFrameInfo, H.HtmlImage, H.Keyboard, H.KeyboardBinding, H.FlutterHtmlKeyboardEvent, H.KeyboardConverter, H.MouseCursor, H.BrowserHistory, H.UrlStrategy, H.PlatformLocation, H.EnginePictureRecorder, H.EnginePicture, P.PlatformDispatcher, H.PointerBinding, H.PointerSupportDetector, H._BaseAdapter, H._WheelEventListenerMixin, H._SanitizedDetails, H._ButtonSanitizer, H._PointerState, H.PointerDataConverter, H.Profiler, H.Instrumentation, H.AccessibilityAnnouncements, H._CheckableKind, H.RoleManager, H.SemanticsUpdate, H.SemanticsNodeUpdate, H.Role, H.SemanticsObject, H.AccessibilityMode, H.GestureMode, H.EngineSemanticsOwner, H.EnabledState, H.SemanticsHelper, H.SemanticsEnabler, H.DefaultTextEditingStrategy, P._ListBase_Object_ListMixin, H.MethodCall0, H.JSONMessageCodec, H.JSONMethodCodec, H.StandardMessageCodec, H.StandardMethodCodec, H.WriteBuffer0, H.ReadBuffer0, H.SurfaceShadowData, H.CanvasParagraph, H.FlatTextSpan, H.StyleNode, H.CanvasParagraphBuilder, H.FontCollection, H.FontManager, H.TextLayoutService, H.RangeBox, H.LineSegment, H.LineBuilder, H.Spanometer, H.LineCharProperty, H.LineBreakType, H.LineBreakResult, H.RulerHost, H.TextMeasurementService, H.LinesCalculator, H.MaxIntrinsicCalculator, H.TextPaintService, H.EngineLineMetrics, H.DomParagraph, H.EngineParagraphStyle, H.EngineTextStyle, H.EngineStrutStyle, H.DomParagraphBuilder, H.ParagraphGeometricStyle, H.TextHeightStyle, H.TextDimensions, H.TextHeightRuler, H.ParagraphRuler, H.MeasurementResult, H._ComparisonResult, H.UnicodeRange, H.UnicodePropertyLookup, H.WordCharProperty, H._FindBreakDirection, H.BrowserAutofillHints, H.EngineInputType, H.TextCapitalization, H.TextCapitalizationConfig, H.EngineAutofillForm, H.AutofillInfo, H.EditingState, H.InputConfiguration, H.TextInputCommand, H.TextEditingChannel, H.HybridTextEditing, H.EditableTextStyle, H.EditableTextGeometry, H.TransformKind, H.Matrix40, H.Vector30, H.WebExperiments, P.FlutterView, H.WindowPadding, H.JS_CONST, H.HttpException, H._HeaderValue, J.ArrayIterator, H._CopyingBytesBuilder, H.CastIterator, P.MapMixin, H.ListIterator, P.Iterator, H.ExpandIterator, H.EmptyIterator, H.FollowedByIterator, H.WhereTypeIterator, H.FixedLengthListMixin, H.UnmodifiableListMixin, H.Symbol, P.MapView, H.ConstantMap, H.JSInvocationMirror, H.TypeErrorDecoder, H.NullThrownFromJavaScriptException, H.ExceptionAndStackTrace, H._StackTrace, H._Required, H.LinkedHashMapCell, H.LinkedHashMapKeyIterator, H.JSSyntaxRegExp, H._MatchImplementation, H._AllMatchesIterator, H.StringMatch, H._StringAllMatchesIterator, H.Rti, H._FunctionParameters, H._Type, P._TimerImpl, P._AsyncAwaitCompleter, P._AsyncStarStreamController, P._IterationMarker, P._SyncStarIterator, P.AsyncError, P.Stream, P._BufferingStreamSubscription, P._BroadcastStreamController, P.TimeoutException, P._Completer, P._FutureListener, P._Future, P._AsyncCallbackEntry, P.StreamSubscription, P.StreamTransformerBase, P._StreamController, P._SyncStreamControllerDispatch, P._AsyncStreamControllerDispatch, P._StreamSinkWrapper0, P._AddStreamState, P._PendingEvents, P._DelayedEvent, P._DelayedDone, P._DoneStreamSubscription, P._BroadcastSubscriptionWrapper, P._StreamIterator, P._EventSinkWrapper, P._HandlerEventSink, P._ZoneFunction, P._RunNullaryZoneFunction, P._RunUnaryZoneFunction, P._RunBinaryZoneFunction, P._RegisterNullaryZoneFunction, P._RegisterUnaryZoneFunction, P._RegisterBinaryZoneFunction, P._ZoneSpecification, P._ZoneDelegate, P._Zone, P._HashMapKeyIterator, P.__SetBase_Object_SetMixin, P._HashSetIterator, P._LinkedHashSetCell, P._LinkedHashSetIterator, P.IterableMixin, P._LinkedListIterator, P.LinkedListEntry, P.ListMixin, P._MapBaseValueIterator, P._UnmodifiableMapMixin, P._DoubleLink, P._DoubleLinkedQueueIterator, P._ListQueueIterator, P.SetMixin, P._UnmodifiableSetMixin, P._SplayTreeNode, P._SplayTree, P._SplayTreeIterator, P.Codec0, P._Base64Encoder, P._Base64Decoder, P.ChunkedConversionSink, P._JsonStringifier, P._JsonPrettyPrintMixin, P._Utf8Encoder, P._Utf8Decoder, P._BigIntImpl, P.Comparable, P.DateTime, P.Duration, P.OutOfMemoryError, P.StackOverflowError, P._Exception, P.FormatException, P.IntegerDivisionByZeroException, P.Expando, P.MapEntry, P.Null, P._StringStackTrace, P.Stopwatch, P.RuneIterator, P.StringBuffer, P._Uri, P.UriData, P._SimpleUri, P.ServiceExtensionResponse, P.TimelineTask, P._AsyncBlock, W.CssStyleDeclarationBase, W._WrappedEvent, W._BeforeUnloadEventStreamProvider, W.EventStreamProvider, W._Html5NodeValidator, W.ImmutableListMixin, W.NodeValidatorBuilder, W._SimpleNodeValidator, W._SvgNodeValidator, W.FixedSizeListIterator, W.Console, W._DOMWindowCrossFrame, W._SameOriginUriPolicy, W._ValidatingTreeSanitizer, P._StructuredClone, P._AcceptStructuredClone, P.OSError, P.FileSystemEntity, P.FileMode, P.FileSystemException, P.FileSystemEntityType, P.JsObject, P.NullRejectionException, P._JSRandom, P._Random, P.Point, P._RectangleBase, P.Endian, P.ClipOp, P.PathFillType, P._StoredMessage, P._Channel, P.ChannelBuffers, P.OffsetBase, P.Rect, P.Radius, P.RRect, P._HashEnd, P.KeyEventType, P.KeyData, P.Color, P.StrokeCap, P.StrokeJoin, P.PaintingStyle, P.BlendMode, P.Clip, P.BlurStyle, P.MaskFilter, P.FilterQuality, P.ImageByteFormat, P.Shadow, P.PlatformConfiguration, P.ViewConfiguration, P.FrameTiming, P.AppLifecycleState, P.Locale, P.PointerChange, P.PointerDeviceKind, P.PointerSignalKind, P.PointerData, P.PointerDataPacket, P.SemanticsAction, P.SemanticsFlag, P.SemanticsUpdateBuilder, P.FontStyle, P.PlaceholderAlignment, P.FontWeight, P.FontFeature, P.TextAlign, P.TextBaseline, P.TextDecoration, P.TextDecorationStyle, P.TextDirection, P.TextBox, P.TextAffinity, P.TextPosition, P.TextRange, P.ParagraphConstraints, P.BoxHeightStyle, P.BoxWidthStyle, P.TileMode, P.AccessibilityFeatures, P.Brightness, P.CallbackHandle, P.PlatformViewRegistry, D.GZipEncoder, T.InputStreamBase, Q.OutputStreamBase, T.Deflate, T._DeflaterConfig, T._HuffmanTree, T._StaticTree, Y.HuffmanTable, S.Inflate, Y._DiagnosticableTree_Object_Diagnosticable, N._State_Object_Diagnosticable, Q.BoardViewController, Q.CopyOnWriteList, A.CopyOnWriteSet, D.BuiltList, D.ListBuilder, R.BuiltListMultimap, R.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, X.BuiltSet, X.SetBuilder, M.BuiltSetMultimap, M.SetMultimapBuilder, Y.EnumClass, Y.IndentingBuiltValueToStringHelper, A.JsonObject, U.FullType, O.BigIntSerializer, R.BoolSerializer, Y.BuiltJsonSerializers, Y.BuiltJsonSerializersBuilder, R.BuiltListMultimapSerializer, K.BuiltListSerializer, K.BuiltMapSerializer, R.BuiltSetMultimapSerializer, O.BuiltSetSerializer, Z.DateTimeSerializer, D.DoubleSerializer, K.DurationSerializer, Q.Int64Serializer, B.IntSerializer, O.JsonObjectSerializer, S.NullSerializer, K.NumSerializer, K.RegExpSerializer, M.StringSerializer, O.UriSerializer, T.StandardJsonPlugin, M.ImageProvider, Z.ImageRenderMethodForWeb, L._ImageStreamCompleter_Object_Diagnosticable, T.StringCharacterRange, A.Breaks, A.BackBreaks, X.BaseChart0, B.BaseSeriesRenderer, B.BaseBarRendererElement, B.BaseAnimatedBar, X.LayoutViewConfig, T.ConstCornerStrategy, A.BarGroupingType, M.AxisOrientation, M.ImmutableAxis, S.Tick, V.CollisionReport, R.BaseRenderSpec, R.BaseTickDrawStrategy, R._PixelVerticalDirection, Y.NoneDrawStrategy, K.LinearScale, U.LinearScaleDomainInfo, A.LinearScaleFunction, O.LinearScaleViewportSettings, L.NumericExtents, K.BaseTickProvider, A._TickStepInfo, A.OrdinalScaleDomainInfo, B.Scale, B.ScaleOutputExtent, B.RangeBandType, B.RangeBandConfig, B.StepSizeType, B.StepSizeConfig, B.Extents, E.SimpleOrdinalScale, T.AxisSpec, T.TextStyleSpec, T.LineStyleSpec, T.TickLabelAnchor, T.TickLabelJustification, B.SimpleTickFormatterBase, O.AutoAdjustingDateTimeTickProvider, D.BaseTimeStepper, D._TimeStepIteratorImpl, F.DateTimeTickFormatter, R.TimeTickFormatterImpl, R.CalendarField, X.LifecycleListener, O.BehaviorPosition, O.OutsideJustification, O.InsideJustification, O.DomainHighlighter0, D.Legend, D.LegendState, D.LegendTapHandling, K.LegendEntryBase, O.LegendDefaultMeasure, V.PerSeriesLegendEntryGenerator, E.LinePointHighlighter0, X.LayoutView, K.NullablePoint, E._PointRendererElement, E._AnimatedPoint, E.LinePointHighlighterFollowLineType, Z.SelectNearest0, Z.SelectionMode, S.SelectionTrigger, G.CanvasRect, G.CanvasBarStack, S.FillPatternType, L.DatumDetails, N.ImmutableSeries, D.SelectionModel, D.SelectionModelType, R.SeriesDatum, O.TypedRegistry, N.IdentityConverter, M.LayoutConfig, M.MarginSpec, D.LayoutManagerImpl, D._MeasuredSizes, B.SizeList, B._DesiredViewSizes, B.VerticalMarginStrategy, B.HorizontalMarginStrategy, X.LayoutPosition, X.ViewMargin, X.ViewMeasuredSizes, T._LineRendererElement, T._AnimatedLine, T._AreaRendererElement, T._AnimatedArea, T._AnimatedElements, T._Range, K.Color0, Z.LocalDateTimeFactory, N.GestureListener, A.Palette, G.ProxyGestureListener, D.MaterialStyle, M.StyleFactory, B.BaseSymbolRenderer, Q.TextDirection0, Q.MaxWidthStrategy, X.TextMeasurement, O.TypedKey, F.Series, O.ChartBehavior, O.GestureType, Y.BaseLegendContentBuilder, M.SimpleLegendEntryLayout, L.TabularLegendLayout, S.ChartCanvas, B.AbstractNode, B.Listenable, K.ChartGestureDetector, A.GraphicsFactory, X.LineStyle, F.SelectionModelConfig, B.SymbolRendererCanvas, Q.TextElement, A.TextStyle0, B.MultiChildLayoutDelegate, E._HorizontalJustification, E.Clock, M.CanonicalizedMap, U.DefaultEquality, U.IterableEquality, U.ListEquality, U._UnorderedEquality, U._MapEntry, U.MapEquality, U.DeepCollectionEquality, Y.HeapPriorityQueue, R.XFileBase, D.Enum, E.Clock0, U.MemoryFileSystemEntity, T._FileSink, M.MemoryFileStat, E.FileSystem0, B.Node0, Z.FileSystemOp, O.FileSystemStyle, R.DirectoryAddOnsMixin, S._LinuxCodes, S._MacOSCodes, S._WindowsCodes, E.PlatformInterface, G.FileType, K.FilePickerResult, T.PlatformFile, V.Int64, X.AnimationStatus, G._AnimationDirection, G.AnimationBehavior, T.Simulation, S.AnimationWithParentMixin, S._TrainHoppingMode, Z.ParametricCurve, S.AnimationLazyListenerMixin, S.AnimationEagerListenerMixin, S.AnimationLocalListenersMixin, S.AnimationLocalStatusListenersMixin, R.Animatable, Y.TweenSequenceItem, Y._Interval, F.TextSelectionControls, T._IconThemeData_Object_Diagnosticable, K.CupertinoUserInterfaceLevelData, L.LocalizationsDelegate, L.DefaultCupertinoLocalizations, D._CupertinoBackGestureController, Z._Decoration_Object_Diagnosticable, Z.BoxPainter, R._CupertinoTextThemeData_Object_Diagnosticable, R._TextThemeDefaultsBuilder, K.NoDefaultCupertinoThemeData, K._CupertinoThemeDefaults, K._CupertinoTextThemeDefaults, A.CupertinoThumbPainter, Y.DiagnosticsNode, U._FlutterErrorDetails_Object_Diagnosticable, N.BindingBase, B.ChangeNotifier, Y.DiagnosticLevel, Y.DiagnosticsTreeStyle, Y.TextTreeConfiguration, Y._WordWrapParseMode, Y._PrefixedStringBuilder, Y._NoDefaultValue, Y.TextTreeRenderer, Y.DiagnosticPropertiesBuilder, Y.Diagnosticable, Y.DiagnosticableTreeMixin, D.Key, D._TypeLiteral, F.LicenseParagraph, F.LicenseEntry, F._LicenseEntryWithLineBreaksParserState, T.TargetPlatform, G.WriteBuffer, G.ReadBuffer, R.StackFrame, O.SynchronousFuture, D.GestureDisposition, D.GestureArenaMember, D.GestureArenaEntry, D._GestureArena, D.GestureArenaManager, N._Resampler, N.GestureBinding, V.Drag, O.DragDownDetails, O.DragStartDetails, O.DragUpdateDetails, O.DragEndDetails, F._PointerEvent_Object_Diagnosticable, F._PointerEventDescription, F._AbstractPointerEvent, F._CopyPointerAddedEvent, F._CopyPointerRemovedEvent, F._CopyPointerHoverEvent, F._CopyPointerEnterEvent, F._CopyPointerExitEvent, F._CopyPointerDownEvent, F._CopyPointerMoveEvent, F._CopyPointerUpEvent, F._CopyPointerScrollEvent, F._CopyPointerCancelEvent, K._ForceState, K.ForcePressDetails, O.HitTestEntry, O._TransformPart, O.HitTestResult, T.LongPressStartDetails, T.LongPressMoveUpdateDetails, T.LongPressEndDetails, B._Vector, B._Matrix, B.PolynomialFit, B.LeastSquaresSolver, O._DragState, V.MultiDragPointerState, F._CountdownZoned, F._TapTracker, O.PointerRouter, G.PointerSignalResolver, S.DragStartBehavior, S.GestureRecognizerState, S.OffsetPair, B._ScaleState, B.ScaleStartDetails, B.ScaleUpdateDetails, B.ScaleEndDetails, B._LineBetweenPointers, N.TapDownDetails, N.TapUpDetails, V._CombiningGestureArenaEntry, V.GestureArenaTeam, R.Velocity, R.VelocityEstimate, R._PointAtTime, R.VelocityTracker, A._LicenseData, A._DetailArguments, A._ActionLevel, A._LayoutMode, A._Focus, A._MasterDetailFlowProxy, S.ThemeMode, K.ScrollBehavior, T.SingleChildLayoutDelegate, U.SliverPersistentHeaderDelegate, V._AppBarTheme_Object_Diagnosticable, D._CornerId, D._Diagonal, Q._MaterialBannerThemeData_Object_Diagnosticable, D._BottomAppBarTheme_Object_Diagnosticable, M._BottomNavigationBarThemeData_Object_Diagnosticable, X._BottomSheetThemeData_Object_Diagnosticable, M._ButtonBarThemeData_Object_Diagnosticable, A._ButtonStyle_Object_Diagnosticable, A._LerpProperties3, A._LerpSides, A._LerpShapes, A._MouseCursor_Object_Diagnosticable, M.ButtonTextTheme, M.ButtonBarLayoutBehavior, M._ButtonThemeData_Object_Diagnosticable, B.SliverGridDelegate, A._CardTheme_Object_Diagnosticable, F._CheckboxThemeData_Object_Diagnosticable, F._LerpProperties1, K._ChipThemeData_Object_Diagnosticable, A._ColorScheme_Object_Diagnosticable, S.DataColumn, S.DataRow, S.DataCell, S.TableColumnWidth, Z._DataTableThemeData_Object_Diagnosticable, Z._LerpProperties2, Q.DatePickerEntryMode, Q.DatePickerMode, K.Route, Y._DialogTheme_Object_Diagnosticable, G._DividerThemeData_Object_Diagnosticable, Z.DrawerAlignment, K._DropdownRouteResult, K._MenuLimits, V.MaterialStateProperty, T._ElevatedButtonThemeData_Object_Diagnosticable, D.ExpansionPanel, E._DefaultHeroTag, A.FloatingActionButtonLocation, A.FabTopOffsetY, A.FabFloatOffsetY, A.FabDockedOffsetY, A.FabEndOffsetX, A.FloatingActionButtonAnimator, S._FloatingActionButtonThemeData_Object_Diagnosticable, M.InkFeature, R.InteractiveInkFeatureFactory, R._HighlightType, Y.ShapeBorder, L.FloatingLabelBehavior, L._DecorationSlot, L._Decoration, L._RenderDecorationLayout, L.InputDecoration, L._InputDecorationTheme_Object_Diagnosticable, Q.ListTileStyle, Q.ListTileControlAffinity, Q._ListTileSlot, M.MaterialType, U.DefaultMaterialLocalizations, V.MaterialState, V._MaterialStatePropertyWith, V._MaterialStatePropertyAll, B.MergeableMaterialItem, B._AnimationTuple, E._NavigationRailThemeData_Object_Diagnosticable, U._OutlinedButtonThemeData_Object_Diagnosticable, V.MaterialRouteTransitionMixin, K.PageTransitionsBuilder, K._PageTransitionsTheme_Object_Diagnosticable, R._PopupMenuThemeData_Object_Diagnosticable, U._ActivityIndicatorType, T._RadioThemeData_Object_Diagnosticable, T._LerpProperties0, N._RefreshIndicatorMode, N.RefreshIndicatorTriggerMode, M._ScaffoldSlot, M.ScaffoldPrelayoutGeometry, M.ScaffoldGeometry, K.Constraints, M.ScaffoldFeatureController, X._ScrollbarThemeData_Object_Diagnosticable, X._LerpProperties4, F.TextSelectionGestureDetectorBuilder, Q._SliderThemeData_Object_Diagnosticable, N.SnackBarClosedReason, K._SnackBarThemeData_Object_Diagnosticable, N._SwitchType, O._SwitchListTileType, R._SwitchThemeData_Object_Diagnosticable, R._LerpProperties, U._TabBarTheme_Object_Diagnosticable, T._TextButtonThemeData_Object_Diagnosticable, R._TextSelectionThemeData_Object_Diagnosticable, R._TextTheme_Object_Diagnosticable, X.MaterialTapTargetSize, X._ThemeData_Object_Diagnosticable, X._IdentityThemeDataCacheKey, X._FifoCache, X._VisualDensity_Object_Diagnosticable, Z.DayPeriod, Z.TimeOfDay, Z.TimeOfDayFormat, Z.HourFormat, M._TimePickerMode, M.TimePickerEntryMode, M._TimePickerFragmentContext, M._TappableLabel, A._TimePickerThemeData_Object_Diagnosticable, S._ToggleButtonsThemeData_Object_Diagnosticable, F.ToggleableStateMixin, T._TooltipThemeData_Object_Diagnosticable, U.ScriptCategory, U._Typography_Object_Diagnosticable, K.AlignmentGeometry, K.TextAlignVertical, G.RenderComparison, G.Axis0, G.VerticalDirection, G.AxisDirection, N.PaintingBinding, K.BorderRadiusGeometry, Y.BorderStyle, Y.BorderSide, F.BoxShape, U.BoxFit, U.FittedSizes, Z.ClipContext, E.ImageSizeInfo, X.ImageRepeat, X.DecorationImage, X.DecorationImagePainter, V.EdgeInsetsGeometry, E.ImageCache, E._CachedImageBase, E._PendingImage, M.ImageConfiguration, M.AssetBundleImageKey, L.ImageInfo, L.ImageStreamListener, L._ImageChunkEvent_Object_Diagnosticable, L._ImageStream_Object_Diagnosticable, L.ImageStreamCompleterHandle, G.Accumulator, G.InlineSpanSemanticsInformation, V.NotchedShape, D.ShaderWarmUp, M._StrutStyle_Object_Diagnosticable, U.PlaceholderDimensions, U.TextWidthBasis, U._CaretMetrics, U.TextPainter, A._TextStyle_Object_Diagnosticable, M.SpringDescription, M.SpringType, M._CriticalSolution, M._OverdampedSolution, M._UnderdampedSolution, N.Tolerance, F.RenderAnimatedSizeState, N.RendererBinding, K.ParentData, S._IntrinsicDimension, S._IntrinsicDimensionsCacheEntry, S.RenderBoxContainerDefaultsMixin, V.CustomPainterSemantics, T.DebugOverflowIndicatorMixin, D.TextSelectionPoint, F.FlexFit, F.MainAxisSize, F.MainAxisAlignment, F.CrossAxisAlignment, F._LayoutSizes, T.AnnotationEntry, T.AnnotationResult, T.LayerLink, A._MouseState, A.__MouseTrackerUpdateDetails_Object_Diagnosticable, K.SemanticsHandle, K.PipelineOwner, K.RenderObjectWithChildMixin, K.ContainerParentDataMixin, K.ContainerRenderObjectMixin, K.RelayoutWhenSystemFontsChangeMixin, K._SemanticsFragment, K._SemanticsGeometry, Q.TextOverflow, G.PlatformViewHitTestBehavior, G._PlatformViewGestureMixin, E.RenderProxyBoxMixin, E.HitTestBehavior, E.RenderAnimatedOpacityMixin, E.DecorationPosition, G.GrowthDirection, G._SliverGeometry_Object_Diagnosticable, G.RenderSliverHelpers, B.SliverGridGeometry, B.SliverGridLayout, F.KeepAliveParentDataMixin, F.RenderSliverWithKeepAliveMixin, U.PersistentHeaderShowOnScreenConfiguration, K.RelativeRect, K.StackFit, K.Overflow, S.TableCellVerticalAlignment, A.ViewConfiguration0, Q.CacheExtentStyle, Q.RevealedOffset, N.ScrollDirection, N.WrapAlignment, N.WrapCrossAlignment, N._RunMetrics, N._TaskEntry, N._FrameCallbackEntry, N.SchedulerPhase, N.SchedulerBinding, V.Priority, M.Ticker, M.TickerFuture, M.TickerCanceled, N.SemanticsBinding, A.SemanticsTag, A.CustomSemanticsAction, A._SemanticsData_Object_Diagnosticable, A._BoxEdge, A._TraversalSortNode, A.SemanticsConfiguration, A.DebugSemanticsDumpOrder, A._SemanticsSortKey_Object_Diagnosticable, E.SemanticsEvent, Q.AssetBundle, F.AutofillConfiguration, N.TextInputConfiguration, F.AutofillScopeMixin, Q.BinaryMessenger, N.ServicesBinding, T.ClipboardData, G._KeyboardKey_Object_Diagnosticable, F.MethodCall, F.PlatformException, F.MissingPluginException, U.StringCodec, U.JSONMessageCodec0, U.JSONMethodCodec0, U.StandardMessageCodec0, U.StandardMethodCodec0, A.MouseCursorManager, A.MouseCursorSession, A.BasicMessageChannel, A.MethodChannel, A.EventChannel, R.PlatformViewsRegistry, R.PlatformViewController, B.KeyboardSide, B.ModifierKey, B.RawKeyEventData, B._RawKeyEvent_Object_Diagnosticable, B.RawKeyboard, B._ModifierSidePair, K.RestorationBucket, X.ApplicationSwitcherDescription, X.SystemUiOverlayStyle, V.SystemSoundType, B.MaxLengthEnforcement, B.TextInputFormatter, N.SmartDashesType, N.SmartQuotesType, N.TextInputType, N.TextInputAction, N.TextCapitalization0, N.FloatingCursorDragState, N.TextEditingValue, N.SelectionChangedCause, N.TextSelectionDelegate, N.TextInputConnection, N.TextInput, U._Intent_Object_Diagnosticable, U._Action_Object_Diagnosticable, U._ActionDispatcher_Object_Diagnosticable, U.CrossFadeState, G._ChildEntry, B.ConnectionState, B.AsyncSnapshot, F.AutofillContextAction, U.Notification0, L.AutomaticKeepAliveClientMixin, N.WidgetsBindingObserver, N.WidgetsBinding, K.DisposableBuildContext, S._DraggableSheetExtent, D.ToolbarOptions, O.KeyEventResult, O.FocusAttachment, O.UnfocusDisposition, O._FocusNode_Object_DiagnosticableTreeMixin, O.FocusHighlightMode, O.FocusHighlightStrategy, O._FocusManager_Object_DiagnosticableTreeMixin, U._FocusTraversalGroupInfo, U.TraversalDirection, U._FocusTraversalPolicy_Object_Diagnosticable, U._DirectionalPolicyDataEntry, U._DirectionalPolicyData, U.DirectionalFocusTraversalPolicyMixin, U.__ReadingOrderSortData_Object_Diagnosticable, U.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, A.AutovalidateMode, N._StateLifecycle, N._ElementLifecycle, N._InactiveElements, N.BuildOwner, N.DebugCreator, N.IndexedSlot, D.GestureRecognizerFactory, D.SemanticsGestureDelegate, T.HeroFlightDirection, T._HeroFlightManifest, T._HeroFlight, K.NavigatorObserver, X.IconData, M.CapturedThemes, A.RenderConstrainedLayoutBuilder, L._Pending, L.DefaultWidgetsLocalizations, F.Orientation, F.MediaQueryData, F.NavigationMode, E._ToolbarSlot, K.RoutePopDisposition, K.RouteSettings, K.RouteTransitionRecord, K.TransitionDelegate, K._RouteLifecycle, K._NavigatorObservation, K._RouteRestorationType, K._RestorationInformation, E.OverflowBarAlignment, L._GlowState, S._StorageEntryIdentifier, S.PageStorageBucket, M._FixedScrollMetrics_Object_ScrollMetrics, L.ScrollPhysics, G.PlatformViewCreationParams, K.RestorationMixin, Z.RouteInformation, T.LocalHistoryEntry, T.LocalHistoryRoute, M.ScrollActivity, M.ScrollDragController, K._WrappedScrollBehavior, M.ScrollMetrics, G.ViewportNotificationMixin, A.ScrollPositionAlignmentPolicy, Y._NBSample, B.ScrollViewKeyboardDismissBehavior, F.ScrollableDetails, F.ScrollIncrementType, X.KeySet, G.SliverChildDelegate, U._RenderSliverPersistentHeaderForWidgetsMixin, S.TableRow, S._TableElementRow, S.__TableSlot_Object_Diagnosticable, F.TextSelectionHandleType, F._TextSelectionHandlePosition, F.TextSelectionOverlay, U.SingleTickerProviderStateMixin, U.TickerProviderStateMixin, N._WidgetInspectorService, N.WidgetInspectorService, N._ElementLocationStatsTracker, N.InspectorSelection, Y.CacheManager, V.ImageCacheManager, D.CacheStore, R.Config, V.FileResponse, A.NonStoringObjectProvider, T.CacheObject, M.MemoryCacheSystem, E.FileService, E.HttpGetResponse, B.QueueItem, Q.WebHelper, Y.GlobalCupertinoLocalizations, U.GlobalMaterialLocalizations, B.GlobalWidgetsLocalizations, A.SlidableRenderingMode, A.SlideActionType, A.SlideActionDelegate, Z.StyledToastPosition, Z.StyledToastAnimation, Q.ToastFuture, Q.ToastManager, L.SuggestionsBoxDecoration, L.TextFieldConfiguration, L._SuggestionsBox, K.GoogleSignInAuthentication, K.GoogleSignInAccount, K.GoogleSignIn, X.GoogleSignInPlatform, G.SignInOption, G.GoogleSignInUserData, G.GoogleSignInTokenData, E.BaseClient, G.BaseRequest, T.BaseResponse, E.ClientException, K.MultipartFile, R.MediaType, L.ImagePicker, Q.CameraDevice, E.ImageSource, B.DateSymbols, B.NumberSymbols, S.DateBuilder, A.DateFormat, A._DateFormatField, U.IntlStream, S.NumberFormat, Q.NumberFormatParseResult, Q.NumberFormatParser, K.StringIterator, X.UninitializedLocaleData, X.LocaleDataException, E.PluralCase, E.InvoiceStatusColors, E.RecurringInvoiceStatusColors, E.CreditStatusColors, E.QuoteStatusColors, E.PaymentStatusColors, E.ExpenseStatusColors, S.FileStorage, O.AccountEntity, O._$AccountEntitySerializer, O.AccountEntityBuilder, T.ClientListResponse, T.ClientItemResponse, T._ClientEntity_Object_BaseEntity, T._ContactEntity_Object_BaseEntity, T._$ClientListResponseSerializer, T._$ClientItemResponseSerializer, T._$ClientEntitySerializer, T._$ContactEntitySerializer, T.ClientListResponseBuilder, T.ClientItemResponseBuilder, T.ClientEntityBuilder, T.ContactEntityBuilder, O.CompanyGatewayListResponse, O.CompanyGatewayItemResponse, O._CompanyGatewayEntity_Object_BaseEntity, O.FeesAndLimitsSettings, O._$CompanyGatewayListResponseSerializer, O._$CompanyGatewayItemResponseSerializer, O._$CompanyGatewayEntitySerializer, O._$FeesAndLimitsSettingsSerializer, O.CompanyGatewayListResponseBuilder, O.CompanyGatewayItemResponseBuilder, O.CompanyGatewayEntityBuilder, O.FeesAndLimitsSettingsBuilder, A._CompanyEntity_Object_BaseEntity, A._GatewayEntity_Object_SelectableEntity, A.GatewayOptionsEntity, A.UserCompanyEntity, A.UserSettingsEntity, A.ReportSettingsEntity, A.CompanyItemResponse, A.RegistrationFieldEntity, A._$CompanyEntitySerializer, A._$GatewayEntitySerializer, A._$GatewayOptionsEntitySerializer, A._$UserCompanyEntitySerializer, A._$UserSettingsEntitySerializer, A._$ReportSettingsEntitySerializer, A._$CompanyItemResponseSerializer, A._$RegistrationFieldEntitySerializer, A.CompanyEntityBuilder, A.GatewayEntityBuilder, A.GatewayOptionsEntityBuilder, A.UserCompanyEntityBuilder, A.UserSettingsEntityBuilder, A.ReportSettingsEntityBuilder, A.CompanyItemResponseBuilder, A.RegistrationFieldEntityBuilder, D.CreditListResponse, D.CreditItemResponse, D._$CreditListResponseSerializer, D._$CreditItemResponseSerializer, D.CreditListResponseBuilder, D.CreditItemResponseBuilder, F.DashboardSettings, F._$DateRangeSerializer, F._$DateRangeComparisonSerializer, D.DesignListResponse, D.DesignItemResponse, D.DesignPreviewRequest, D._DesignEntity_Object_BaseEntity, D._$DesignListResponseSerializer, D._$DesignItemResponseSerializer, D._$DesignPreviewRequestSerializer, D._$DesignEntitySerializer, D.DesignListResponseBuilder, D.DesignItemResponseBuilder, D.DesignPreviewRequestBuilder, D.DesignEntityBuilder, D.DocumentListResponse, D.DocumentItemResponse, D._DocumentEntity_Object_BaseEntity, D._$DocumentListResponseSerializer, D._$DocumentItemResponseSerializer, D._$DocumentEntitySerializer, D.DocumentListResponseBuilder, D.DocumentItemResponseBuilder, D.DocumentEntityBuilder, T.EntityStatus, T.EntityStats, T.SelectableEntity, T.BaseEntity, T.BelongsToClient, T.LoginResponse, T.ActivityEntity, T.LedgerEntity, T._$EntityTypeSerializer, T._$EntityStateSerializer, T._$EmailTemplateSerializer, T._$LoginResponseSerializer, T._$ActivityEntitySerializer, T._$LedgerEntitySerializer, T.LoginResponseBuilder, T.ActivityEntityBuilder, T.LedgerEntityBuilder, R.ExpenseCategoryListResponse, R.ExpenseCategoryItemResponse, R._ExpenseCategoryEntity_Object_BaseEntity, R._$ExpenseCategoryListResponseSerializer, R._$ExpenseCategoryItemResponseSerializer, R._$ExpenseCategoryEntitySerializer, R.ExpenseCategoryListResponseBuilder, R.ExpenseCategoryItemResponseBuilder, R.ExpenseCategoryEntityBuilder, M.ExpenseListResponse, M.ExpenseItemResponse, M._ExpenseEntity_Object_BaseEntity, M.ExpenseScheduleEntity, M._ExpenseStatusEntity_Object_EntityStatus, M._$ExpenseListResponseSerializer, M._$ExpenseItemResponseSerializer, M._$ExpenseEntitySerializer, M._$ExpenseScheduleEntitySerializer, M._$ExpenseStatusEntitySerializer, M.ExpenseListResponseBuilder, M.ExpenseItemResponseBuilder, M.ExpenseEntityBuilder, M.ExpenseScheduleEntityBuilder, M.ExpenseStatusEntityBuilder, N.GatewayTokenListResponse, N.GatewayTokenItemResponse, N._GatewayTokenEntity_Object_BaseEntity, N.GatewayTokenMetaEntity, N._$GatewayTokenListResponseSerializer, N._$GatewayTokenItemResponseSerializer, N._$GatewayTokenEntitySerializer, N._$GatewayTokenMetaEntitySerializer, N.GatewayTokenListResponseBuilder, N.GatewayTokenItemResponseBuilder, N.GatewayTokenEntityBuilder, N.GatewayTokenMetaEntityBuilder, Q.GroupListResponse, Q.GroupItemResponse, Q._GroupEntity_Object_BaseEntity, Q._$GroupListResponseSerializer, Q._$GroupItemResponseSerializer, Q._$GroupEntitySerializer, Q.GroupListResponseBuilder, Q.GroupItemResponseBuilder, Q.GroupEntityBuilder, U.HealthCheckResponse, U.HealthCheckPHPResponse, U._$HealthCheckResponseSerializer, U._$HealthCheckPHPResponseSerializer, U.HealthCheckResponseBuilder, U.HealthCheckPHPResponseBuilder, B.PreImportResponse, B.PreImportResponseEntityDetails, B.ImportRequest, B.ImportRequestMapping, B._$PreImportResponseSerializer, B._$PreImportResponseEntityDetailsSerializer, B._$ImportRequestSerializer, B._$ImportRequestMappingSerializer, B.PreImportResponseBuilder, B.PreImportResponseEntityDetailsBuilder, B.ImportRequestBuilder, B.ImportRequestMappingBuilder, Q.InvoiceListResponse, Q.InvoiceItemResponse, Q._InvoiceEntity_Object_BaseEntity, Q.InvoiceItemEntity, Q._InvitationEntity_Object_BaseEntity, Q.InvoiceScheduleEntity, Q.InvoiceHistoryEntity, Q._$InvoiceListResponseSerializer, Q._$InvoiceItemResponseSerializer, Q._$InvoiceEntitySerializer, Q._$InvoiceItemEntitySerializer, Q._$InvitationEntitySerializer, Q._$InvoiceScheduleEntitySerializer, Q._$InvoiceHistoryEntitySerializer, Q.InvoiceListResponseBuilder, Q.InvoiceItemResponseBuilder, Q.InvoiceEntityBuilder, Q.InvoiceItemEntityBuilder, Q.InvitationEntityBuilder, Q.InvoiceScheduleEntityBuilder, Q.InvoiceHistoryEntityBuilder, X.CalculateInvoiceTotal, F.PaymentListResponse, F.PaymentItemResponse, F._PaymentEntity_Object_BaseEntity, F._PaymentableEntity_Object_SelectableEntity, F._$PaymentListResponseSerializer, F._$PaymentItemResponseSerializer, F._$PaymentEntitySerializer, F._$PaymentableEntitySerializer, F.PaymentListResponseBuilder, F.PaymentItemResponseBuilder, F.PaymentEntityBuilder, F.PaymentableEntityBuilder, X.PaymentTermListResponse, X.PaymentTermItemResponse, X._PaymentTermEntity_Object_BaseEntity, X._$PaymentTermListResponseSerializer, X._$PaymentTermItemResponseSerializer, X._$PaymentTermEntitySerializer, X.PaymentTermListResponseBuilder, X.PaymentTermItemResponseBuilder, X.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, G.SettingsEntity, G._$SettingsEntitySerializer, G.SettingsEntityBuilder, A.ColorTheme, L.CountryListResponse, L.CountryItemResponse, L._CountryEntity_Object_SelectableEntity, L._$CountryListResponseSerializer, L._$CountryItemResponseSerializer, L._$CountryEntitySerializer, L.CountryListResponseBuilder, L.CountryItemResponseBuilder, L.CountryEntityBuilder, O.CurrencyListResponse, O.CurrencyItemResponse, O._CurrencyEntity_Object_SelectableEntity, O._$CurrencyListResponseSerializer, O._$CurrencyItemResponseSerializer, O._$CurrencyEntitySerializer, O.CurrencyListResponseBuilder, O.CurrencyItemResponseBuilder, O.CurrencyEntityBuilder, M.DateFormatListResponse, M.DateFormatItemResponse, M._DateFormatEntity_Object_SelectableEntity, M._$DateFormatListResponseSerializer, M._$DateFormatItemResponseSerializer, M._$DateFormatEntitySerializer, M.DateFormatListResponseBuilder, M.DateFormatItemResponseBuilder, M.DateFormatEntityBuilder, F.DatetimeFormatListResponse, F.DatetimeFormatItemResponse, F.DatetimeFormatEntity, F._$DatetimeFormatListResponseSerializer, F._$DatetimeFormatItemResponseSerializer, F._$DatetimeFormatEntitySerializer, F.DatetimeFormatListResponseBuilder, F.DatetimeFormatItemResponseBuilder, F.DatetimeFormatEntityBuilder, K._FontEntity_Object_SelectableEntity, O.IndustryListResponse, O.IndustryItemResponse, O._IndustryEntity_Object_SelectableEntity, O._$IndustryListResponseSerializer, O._$IndustryItemResponseSerializer, O._$IndustryEntitySerializer, O.IndustryListResponseBuilder, O.IndustryItemResponseBuilder, O.IndustryEntityBuilder, F._InvoiceStatusEntity_Object_EntityStatus, F._$InvoiceStatusEntitySerializer, F.InvoiceStatusEntityBuilder, A.LanguageListResponse, A.LanguageItemResponse, A._LanguageEntity_Object_SelectableEntity, A._$LanguageListResponseSerializer, A._$LanguageItemResponseSerializer, A._$LanguageEntitySerializer, A.LanguageListResponseBuilder, A.LanguageItemResponseBuilder, A.LanguageEntityBuilder, S.PaymentTypeListResponse, S.PaymentTypeItemResponse, S._PaymentTypeEntity_Object_SelectableEntity, S._$PaymentTypeListResponseSerializer, S._$PaymentTypeItemResponseSerializer, S._$PaymentTypeEntitySerializer, S.PaymentTypeListResponseBuilder, S.PaymentTypeItemResponseBuilder, S.PaymentTypeEntityBuilder, D.SizeListResponse, D.SizeItemResponse, D._SizeEntity_Object_SelectableEntity, D._$SizeListResponseSerializer, D._$SizeItemResponseSerializer, D._$SizeEntitySerializer, D.SizeListResponseBuilder, D.SizeItemResponseBuilder, D.SizeEntityBuilder, S.StaticDataItemResponse, S.StaticDataEntity, S.TemplateEntity, S._$StaticDataItemResponseSerializer, S._$StaticDataEntitySerializer, S._$TemplateEntitySerializer, S.StaticDataItemResponseBuilder, S.StaticDataEntityBuilder, S.TemplateEntityBuilder, U.TimezoneListResponse, U.TimezoneItemResponse, U._TimezoneEntity_Object_SelectableEntity, U._$TimezoneListResponseSerializer, U._$TimezoneItemResponseSerializer, U._$TimezoneEntitySerializer, U.TimezoneListResponseBuilder, U.TimezoneItemResponseBuilder, U.TimezoneEntityBuilder, X.SubscriptionListResponse, X.SubscriptionItemResponse, X._SubscriptionEntity_Object_BaseEntity, X.WebhookConfigurationEntity, X._$SubscriptionListResponseSerializer, X._$SubscriptionItemResponseSerializer, X._$SubscriptionEntitySerializer, X._$WebhookConfigurationEntitySerializer, X.SubscriptionListResponseBuilder, X.SubscriptionItemResponseBuilder, X.SubscriptionEntityBuilder, X.WebhookConfigurationEntityBuilder, F.SystemLogEntity, F._$SystemLogEntitySerializer, F.SystemLogEntityBuilder, D.TaskListResponse, D.TaskItemResponse, D.TaskTime, D._TaskEntity_Object_BaseEntity, D._$TaskListResponseSerializer, D._$TaskItemResponseSerializer, D._$TaskEntitySerializer, D.TaskListResponseBuilder, D.TaskItemResponseBuilder, D.TaskTimeBuilder, D.TaskEntityBuilder, S.TaskStatusListResponse, S.TaskStatusItemResponse, S._TaskStatusEntity_Object_BaseEntity, S._$TaskStatusListResponseSerializer, S._$TaskStatusItemResponseSerializer, S._$TaskStatusEntitySerializer, S.TaskStatusListResponseBuilder, S.TaskStatusItemResponseBuilder, S.TaskStatusEntityBuilder, T.TaxRateListResponse, T.TaxRateItemResponse, T._TaxRateEntity_Object_BaseEntity, T._$TaxRateListResponseSerializer, T._$TaxRateItemResponseSerializer, T._$TaxRateEntitySerializer, T.TaxRateListResponseBuilder, T.TaxRateItemResponseBuilder, T.TaxRateEntityBuilder, D.TokenListResponse, D.TokenItemResponse, D._TokenEntity_Object_BaseEntity, D._$TokenListResponseSerializer, D._$TokenItemResponseSerializer, D._$TokenEntitySerializer, D.TokenListResponseBuilder, D.TokenItemResponseBuilder, D.TokenEntityBuilder, B.UserListResponse, B.UserItemResponse, B.UserTwoFactorResponse, B.UserTwoFactorData, B.UserCompanyItemResponse, B._UserEntity_Object_BaseEntity, B._$UserListResponseSerializer, B._$UserItemResponseSerializer, B._$UserTwoFactorResponseSerializer, B._$UserTwoFactorDataSerializer, B._$UserCompanyItemResponseSerializer, B._$UserEntitySerializer, B.UserListResponseBuilder, B.UserItemResponseBuilder, B.UserTwoFactorResponseBuilder, B.UserTwoFactorDataBuilder, B.UserCompanyItemResponseBuilder, B.UserEntityBuilder, B.VendorListResponse, B.VendorItemResponse, B._VendorEntity_Object_BaseEntity, B._VendorContactEntity_Object_BaseEntity, B._$VendorListResponseSerializer, B._$VendorItemResponseSerializer, B._$VendorEntitySerializer, B._$VendorContactEntitySerializer, B.VendorListResponseBuilder, B.VendorItemResponseBuilder, B.VendorEntityBuilder, B.VendorContactEntityBuilder, E.WebhookListResponse, E.WebhookItemResponse, E._WebhookEntity_Object_BaseEntity, E._$WebhookListResponseSerializer, E._$WebhookItemResponseSerializer, E._$WebhookEntitySerializer, E.WebhookListResponseBuilder, E.WebhookItemResponseBuilder, E.WebhookEntityBuilder, Z.AuthRepository, G.ClientRepository, Z.CompanyGatewayRepository, T.CreditRepository, L.DesignRepository, S.DocumentRepository0, U.ExpenseCategoryRepository, B.ExpenseRepository, E.GroupRepository, T.InvoiceRepository, L.PaymentRepository, V.PaymentTermRepository, X.PersistenceRepository, U.ProductRepository, X.ProjectRepository, U.QuoteRepository, A.RecurringExpenseRepository, N.RecurringInvoiceRepository, Y.SettingsRepository, L.SubscriptionRepository, Y.TaskRepository, X.TaskStatusRepository, B.TaxRateRepository, A.TokenRepository, Q.UserRepository, V.VendorRepository, G.WebhookRepository, F.WebClient, M.PersistData, M.SwitchListTableLayout, M.PopLastHistory, M.ViewMainScreen, M.StartSaving, M.StopSaving, M.LoadStaticSuccess, M.ToggleEditorLayout, M.TogglePreviewSidebar, M.UpdateUserPreferences, M.LoadAccountSuccess, M.ResendConfirmation, M.ResendConfirmationFailure, M.ResendConfirmationSuccess, M.RefreshData, M.RefreshDataSuccess, M.RefreshDataFailure, M.PreviewEntity, M.ClearPreviewStack, M.PopPreviewStack, M.PopFilterStack, M.ClearData, M.ClearLastError, M.DiscardChanges, M.ClearEntityFilter, M.ClearEntitySelection, M.FilterByEntity, M.FilterCompany, T.AppState, T.Credentials, T.SelectionState, T._$AppStateSerializer, T.AppStateBuilder, B.LoadStateRequest, B.LoadStateSuccess, B.OAuthLoginRequest, B.UserLoadUrl, B.UserLoginRequest, B.UserLoginSuccess, B.UserLoginFailure, B.RecoverPasswordRequest, B.RecoverPasswordSuccess, B.RecoverPasswordFailure, B.UserLogout, B.UserLogoutAll, B.UserLogoutAllSuccess, B.UserLogoutAllFailure, B.UserSignUpRequest, B.OAuthSignUpRequest, B.UserVerifiedPassword, B.UserUnverifiedPassword, Z.AuthState, Z._$AuthStateSerializer, Z.AuthStateBuilder, E.ViewClientList, E.ViewClient, E.EditClient, E.EditContact, E.ShowPdfClient, E.UpdateClient, E.LoadClient, E.LoadClients, E.LoadClientRequest, E.LoadClientFailure, E.LoadClientSuccess, E.LoadClientsRequest, E.LoadClientsFailure, E.LoadClientsSuccess, E.AddContact, E.UpdateContact, E.DeleteContact, E.SaveClientRequest, E.SaveClientSuccess, E.AddClientSuccess, E.SaveClientFailure, E.ArchiveClientsRequest, E.ArchiveClientsSuccess, E.ArchiveClientsFailure, E.DeleteClientsRequest, E.DeleteClientsSuccess, E.DeleteClientsFailure, E.RestoreClientsRequest, E.RestoreClientSuccess, E.RestoreClientFailure, E.FilterClients, E.SortClients, E.FilterClientsByState, E.FilterClientsByCustom1, E.FilterClientsByCustom2, E.FilterClientsByCustom3, E.FilterClientsByCustom4, E.StartClientMultiselect, E.AddToClientMultiselect, E.RemoveFromClientMultiselect, E.ClearClientMultiselect, E.SaveClientDocumentRequest, E.SaveClientDocumentFailure, E.UpdateClientTab, F.ClientState, F._ClientUIState_Object_EntityUIState, F._$ClientStateSerializer, F._$ClientUIStateSerializer, F.ClientStateBuilder, F.ClientUIStateBuilder, E.SelectCompany, E.LoadCompanySuccess, E.UpdateCompany, E.SaveCompanyRequest, E.SaveCompanySuccess, E.SaveCompanyFailure, E.AddCompany, E.AddCompanySuccess, E.DeleteCompanyRequest, E.DeleteCompanySuccess, E.DeleteCompanyFailure, E.PurgeDataRequest, E.PurgeDataSuccess, E.PurgeDataFailure, E.UpdateCompanyLanguage, E.SaveCompanyDocumentRequest, E.SaveCompanyDocumentFailure, E.SetDefaultCompanyRequest, E.SetDefaultCompanySuccess, E.SetDefaultCompanyFailure, B.UserCompanyState, B.SettingsUIState, B._$UserCompanyStateSerializer, B._$SettingsUIStateSerializer, B.UserCompanyStateBuilder, B.SettingsUIStateBuilder, Q.ViewCompanyGatewayList, Q.ViewCompanyGateway, Q.EditCompanyGateway, Q.UpdateCompanyGateway, Q.LoadCompanyGateway, Q.LoadCompanyGatewayRequest, Q.LoadCompanyGatewayFailure, Q.LoadCompanyGatewaySuccess, Q.LoadCompanyGatewaysRequest, Q.LoadCompanyGatewaysFailure, Q.LoadCompanyGatewaysSuccess, Q.SaveCompanyGatewayRequest, Q.SaveCompanyGatewaySuccess, Q.AddCompanyGatewaySuccess, Q.SaveCompanyGatewayFailure, Q.ArchiveCompanyGatewayRequest, Q.ArchiveCompanyGatewaySuccess, Q.ArchiveCompanyGatewayFailure, Q.DeleteCompanyGatewayRequest, Q.DeleteCompanyGatewaySuccess, Q.DeleteCompanyGatewayFailure, Q.RestoreCompanyGatewayRequest, Q.RestoreCompanyGatewaySuccess, Q.RestoreCompanyGatewayFailure, Q.FilterCompanyGatewaysByState, Q.FilterCompanyGatewaysByCustom1, Q.FilterCompanyGatewaysByCustom2, Q.FilterCompanyGatewaysByCustom3, Q.FilterCompanyGatewaysByCustom4, Q.StartCompanyGatewayMultiselect, Q.AddToCompanyGatewayMultiselect, Q.RemoveFromCompanyGatewayMultiselect, Q.ClearCompanyGatewayMultiselect, U.CompanyGatewayState, U._CompanyGatewayUIState_Object_EntityUIState, U._$CompanyGatewayStateSerializer, U._$CompanyGatewayUIStateSerializer, U.CompanyGatewayStateBuilder, U.CompanyGatewayUIStateBuilder, E.ViewCreditList, E.ViewCredit, E.EditCredit, E.ShowEmailCredit, E.ShowPdfCredit, E.EditCreditItem, E.UpdateCredit, E.UpdateCreditClient, E.LoadCredit, E.LoadCredits, E.LoadCreditRequest, E.LoadCreditFailure, E.LoadCreditSuccess, E.LoadCreditsRequest, E.LoadCreditsFailure, E.LoadCreditsSuccess, E.AddCreditContact, E.RemoveCreditContact, E.AddCreditItem, E.MoveCreditItem, E.AddCreditItems, E.UpdateCreditItem, E.DeleteCreditItem, E.SaveCreditRequest, E.SaveCreditSuccess, E.AddCreditSuccess, E.SaveCreditFailure, E.EmailCreditRequest, E.EmailCreditSuccess, E.EmailCreditFailure, E.MarkSentCreditRequest, E.MarkSentCreditSuccess, E.MarkSentCreditFailure, E.BulkEmailCreditsRequest, E.BulkEmailCreditsSuccess, E.BulkEmailCreditsFailure, E.ArchiveCreditsRequest, E.ArchiveCreditsSuccess, E.ArchiveCreditsFailure, E.DeleteCreditsRequest, E.DeleteCreditsSuccess, E.DeleteCreditsFailure, E.DownloadCreditsRequest, E.DownloadCreditsSuccess, E.DownloadCreditsFailure, E.RestoreCreditsRequest, E.RestoreCreditsSuccess, E.RestoreCreditsFailure, E.FilterCredits, E.SortCredits, E.FilterCreditsByState, E.FilterCreditsByCustom1, E.FilterCreditsByCustom2, E.FilterCreditsByCustom3, E.FilterCreditsByCustom4, E.SaveCreditDocumentRequest, E.SaveCreditDocumentFailure, E.StartCreditMultiselect, E.AddToCreditMultiselect, E.RemoveFromCreditMultiselect, E.ClearCreditMultiselect, E.UpdateCreditTab, G.CreditState, G._CreditUIState_Object_EntityUIState, G._$CreditStateSerializer, G._$CreditUIStateSerializer, G.CreditStateBuilder, G.CreditUIStateBuilder, G.ViewDashboard, G.UpdateDashboardSettings, G.UpdateDashboardSelection, G.UpdateDashboardEntityType, G.UpdateDashboardSidebar, O.ChartDataGroup, O.ChartMoneyData, Y.DashboardUIState, Y.DashboardUISettings, Y._$DashboardUIStateSerializer, Y._$DashboardUISettingsSerializer, Y.DashboardUIStateBuilder, Y.DashboardUISettingsBuilder, N.ViewDesignList, N.ViewDesign, N.EditDesign, N.UpdateDesign, N.LoadDesignRequest, N.LoadDesignFailure, N.LoadDesignSuccess, N.LoadDesignsRequest, N.LoadDesignsFailure, N.LoadDesignsSuccess, N.SaveDesignRequest, N.SaveDesignSuccess, N.AddDesignSuccess, N.SaveDesignFailure, N.ArchiveDesignsRequest, N.ArchiveDesignsSuccess, N.ArchiveDesignsFailure, N.DeleteDesignsRequest, N.DeleteDesignsSuccess, N.DeleteDesignsFailure, N.RestoreDesignsRequest, N.RestoreDesignsSuccess, N.RestoreDesignsFailure, N.FilterDesigns, N.SortDesigns, N.FilterDesignsByState, N.FilterDesignsByCustom1, N.FilterDesignsByCustom2, N.FilterDesignsByCustom3, N.FilterDesignsByCustom4, N.StartDesignMultiselect, N.AddToDesignMultiselect, N.RemoveFromDesignMultiselect, N.ClearDesignMultiselect, Y.DesignState, Y._DesignUIState_Object_EntityUIState, Y._$DesignStateSerializer, Y._$DesignUIStateSerializer, Y.DesignStateBuilder, Y.DesignUIStateBuilder, X.UpdateDocument, X.LoadDocumentRequest, X.LoadDocumentFailure, X.LoadDocumentSuccess, X.LoadDocumentsRequest, X.LoadDocumentsFailure, X.LoadDocumentsSuccess, X.ArchiveDocumentRequest, X.ArchiveDocumentSuccess, X.ArchiveDocumentFailure, X.DeleteDocumentRequest, X.DeleteDocumentSuccess, X.DeleteDocumentFailure, X.RestoreDocumentRequest, X.RestoreDocumentSuccess, X.RestoreDocumentFailure, X.FilterDocuments, X.SortDocuments, X.FilterDocumentsByState, X.FilterDocumentsByCustom1, X.FilterDocumentsByCustom2, X.FilterDocumentsByCustom3, X.FilterDocumentsByCustom4, X.StartDocumentMultiselect, X.AddToDocumentMultiselect, X.RemoveFromDocumentMultiselect, X.ClearDocumentMultiselect, Q.DocumentState, Q._DocumentUIState_Object_EntityUIState, Q._$DocumentStateSerializer, Q._$DocumentUIStateSerializer, Q.DocumentStateBuilder, Q.DocumentUIStateBuilder, T.ViewExpenseList, T.ViewExpense, T.EditExpense, T.UpdateExpense, T.LoadExpense, T.LoadExpenses, T.LoadExpenseRequest, T.LoadExpenseFailure, T.LoadExpenseSuccess, T.LoadExpensesRequest, T.LoadExpensesFailure, T.LoadExpensesSuccess, T.SaveExpenseRequest, T.SaveExpenseSuccess, T.AddExpenseSuccess, T.SaveExpenseFailure, T.ArchiveExpenseRequest, T.ArchiveExpenseSuccess, T.ArchiveExpenseFailure, T.DeleteExpenseRequest, T.DeleteExpenseSuccess, T.DeleteExpenseFailure, T.RestoreExpenseRequest, T.RestoreExpenseSuccess, T.RestoreExpenseFailure, T.FilterExpenses, T.SortExpenses, T.FilterExpensesByState, T.FilterExpensesByStatus, T.FilterExpensesByCustom1, T.FilterExpensesByCustom2, T.FilterExpensesByCustom3, T.FilterExpensesByCustom4, T.StartExpenseMultiselect, T.AddToExpenseMultiselect, T.RemoveFromExpenseMultiselect, T.ClearExpenseMultiselect, T.SaveExpenseDocumentRequest, T.SaveExpenseDocumentFailure, T.UpdateExpenseTab, R.ExpenseState, R._ExpenseUIState_Object_EntityUIState, R._$ExpenseStateSerializer, R._$ExpenseUIStateSerializer, R.ExpenseStateBuilder, R.ExpenseUIStateBuilder, X.ViewExpenseCategoryList, X.ViewExpenseCategory, X.EditExpenseCategory, X.UpdateExpenseCategory, X.LoadExpenseCategoryRequest, X.LoadExpenseCategoryFailure, X.LoadExpenseCategorySuccess, X.LoadExpenseCategoriesRequest, X.LoadExpenseCategoriesFailure, X.LoadExpenseCategoriesSuccess, X.SaveExpenseCategoryRequest, X.SaveExpenseCategorySuccess, X.AddExpenseCategorySuccess, X.SaveExpenseCategoryFailure, X.ArchiveExpenseCategoriesRequest, X.ArchiveExpenseCategoriesSuccess, X.ArchiveExpenseCategoriesFailure, X.DeleteExpenseCategoriesRequest, X.DeleteExpenseCategoriesSuccess, X.DeleteExpenseCategoriesFailure, X.RestoreExpenseCategoriesRequest, X.RestoreExpenseCategoriesSuccess, X.RestoreExpenseCategoriesFailure, X.FilterExpenseCategories, X.SortExpenseCategories, X.FilterExpenseCategoriesByState, X.FilterExpenseCategoriesByCustom1, X.FilterExpenseCategoriesByCustom2, X.FilterExpenseCategoriesByCustom3, X.FilterExpenseCategoriesByCustom4, X.StartExpenseCategoryMultiselect, X.AddToExpenseCategoryMultiselect, X.RemoveFromExpenseCategoryMultiselect, X.ClearExpenseCategoryMultiselect, Q.ExpenseCategoryState, Q._ExpenseCategoryUIState_Object_EntityUIState, Q._$ExpenseCategoryStateSerializer, Q._$ExpenseCategoryUIStateSerializer, Q.ExpenseCategoryStateBuilder, Q.ExpenseCategoryUIStateBuilder, Q.ViewGroupList, Q.ViewGroup, Q.EditGroup, Q.UpdateGroup, Q.LoadGroup, Q.LoadGroupRequest, Q.LoadGroupFailure, Q.LoadGroupSuccess, Q.LoadGroupsRequest, Q.LoadGroupsFailure, Q.LoadGroupsSuccess, Q.SaveGroupRequest, Q.SaveGroupSuccess, Q.AddGroupSuccess, Q.SaveGroupFailure, Q.ArchiveGroupRequest, Q.ArchiveGroupSuccess, Q.ArchiveGroupFailure, Q.DeleteGroupRequest, Q.DeleteGroupSuccess, Q.DeleteGroupFailure, Q.RestoreGroupRequest, Q.RestoreGroupSuccess, Q.RestoreGroupFailure, Q.FilterGroups, Q.SortGroups, Q.FilterGroupsByState, Q.StartGroupMultiselect, Q.AddToGroupMultiselect, Q.RemoveFromGroupMultiselect, Q.ClearGroupMultiselect, Q.SaveGroupDocumentRequest, Q.SaveGroupDocumentFailure, E.GroupState, E._GroupUIState_Object_EntityUIState, E._$GroupStateSerializer, E._$GroupUIStateSerializer, E.GroupStateBuilder, E.GroupUIStateBuilder, Q.ViewInvoiceList, Q.ViewInvoice, Q.EditInvoice, Q.ShowEmailInvoice, Q.ShowPdfInvoice, Q.EditInvoiceItem, Q.UpdateInvoice, Q.UpdateInvoiceClient, Q.LoadInvoice, Q.LoadInvoices, Q.LoadInvoiceRequest, Q.LoadInvoiceFailure, Q.LoadInvoiceSuccess, Q.LoadInvoicesRequest, Q.LoadInvoicesFailure, Q.LoadInvoicesSuccess, Q.AddInvoiceContact, Q.RemoveInvoiceContact, Q.AddInvoiceItem, Q.MoveInvoiceItem, Q.AddInvoiceItems, Q.UpdateInvoiceItem, Q.DeleteInvoiceItem, Q.SaveInvoiceRequest, Q.SaveInvoiceSuccess, Q.AddInvoiceSuccess, Q.SaveInvoiceFailure, Q.EmailInvoiceRequest, Q.EmailInvoiceSuccess, Q.EmailInvoiceFailure, Q.MarkInvoicesSentRequest, Q.MarkInvoicesSentSuccess, Q.MarkInvoicesSentFailure, Q.BulkEmailInvoicesRequest, Q.BulkEmailInvoicesSuccess, Q.BulkEmailInvoicesFailure, Q.MarkInvoicesPaidRequest, Q.MarkInvoicesPaidSuccess, Q.MarkInvoicesPaidFailure, Q.ReverseInvoicesRequest, Q.ReverseInvoicesSuccess, Q.ReverseInvoicesFailure, Q.CancelInvoicesRequest, Q.CancelInvoicesSuccess, Q.CancelInvoicesFailure, Q.ArchiveInvoicesRequest, Q.ArchiveInvoicesSuccess, Q.ArchiveInvoicesFailure, Q.DeleteInvoicesRequest, Q.DeleteInvoicesSuccess, Q.DeleteInvoicesFailure, Q.DownloadInvoicesRequest, Q.DownloadInvoicesSuccess, Q.DownloadInvoicesFailure, Q.RestoreInvoicesRequest, Q.RestoreInvoicesSuccess, Q.RestoreInvoicesFailure, Q.FilterInvoices, Q.SortInvoices, Q.FilterInvoicesByState, Q.FilterInvoicesByStatus, Q.FilterInvoicesByCustom1, Q.FilterInvoicesByCustom2, Q.FilterInvoicesByCustom3, Q.FilterInvoicesByCustom4, Q.StartInvoiceMultiselect, Q.AddToInvoiceMultiselect, Q.RemoveFromInvoiceMultiselect, Q.ClearInvoiceMultiselect, Q.SaveInvoiceDocumentRequest, Q.SaveInvoiceDocumentFailure, Q.UpdateInvoiceTab, B.InvoiceState, B._InvoiceUIState_Object_EntityUIState, B._$InvoiceStateSerializer, B._$InvoiceUIStateSerializer, B.InvoiceStateBuilder, B.InvoiceUIStateBuilder, Q.ViewPaymentList, Q.ViewPayment, Q.EditPayment, Q.ViewRefundPayment, Q.UpdatePayment, Q.LoadPayment, Q.LoadPayments, Q.LoadPaymentRequest, Q.LoadPaymentFailure, Q.LoadPaymentSuccess, Q.LoadPaymentsRequest, Q.LoadPaymentsFailure, Q.LoadPaymentsSuccess, Q.SavePaymentRequest, Q.SavePaymentSuccess, Q.AddPaymentSuccess, Q.SavePaymentFailure, Q.RefundPaymentRequest, Q.RefundPaymentSuccess, Q.RefundPaymentFailure, Q.ArchivePaymentsRequest, Q.ArchivePaymentsSuccess, Q.ArchivePaymentsFailure, Q.DeletePaymentsRequest, Q.DeletePaymentsSuccess, Q.DeletePaymentsFailure, Q.RestorePaymentsRequest, Q.RestorePaymentsSuccess, Q.RestorePaymentsFailure, Q.EmailPaymentRequest, Q.EmailPaymentSuccess, Q.FilterPayments, Q.SortPayments, Q.FilterPaymentsByState, Q.FilterPaymentsByCustom1, Q.FilterPaymentsByCustom2, Q.FilterPaymentsByCustom3, Q.FilterPaymentsByCustom4, Q.StartPaymentMultiselect, Q.AddToPaymentMultiselect, Q.RemoveFromPaymentMultiselect, Q.ClearPaymentMultiselect, L.PaymentState, L._PaymentUIState_Object_EntityUIState, L._$PaymentStateSerializer, L._$PaymentUIStateSerializer, L.PaymentStateBuilder, L.PaymentUIStateBuilder, D.ViewPaymentTermList, D.ViewPaymentTerm, D.EditPaymentTerm, D.UpdatePaymentTerm, D.LoadPaymentTermRequest, D.LoadPaymentTermFailure, D.LoadPaymentTermSuccess, D.LoadPaymentTermsRequest, D.LoadPaymentTermsFailure, D.LoadPaymentTermsSuccess, D.SavePaymentTermRequest, D.SavePaymentTermSuccess, D.AddPaymentTermSuccess, D.SavePaymentTermFailure, D.ArchivePaymentTermsRequest, D.ArchivePaymentTermsSuccess, D.ArchivePaymentTermsFailure, D.DeletePaymentTermsRequest, D.DeletePaymentTermsSuccess, D.DeletePaymentTermsFailure, D.RestorePaymentTermsRequest, D.RestorePaymentTermsSuccess, D.RestorePaymentTermsFailure, D.FilterPaymentTerms, D.SortPaymentTerms, D.FilterPaymentTermsByState, D.FilterPaymentTermsByCustom1, D.FilterPaymentTermsByCustom2, D.FilterPaymentTermsByCustom3, D.FilterPaymentTermsByCustom4, D.StartPaymentTermMultiselect, D.AddToPaymentTermMultiselect, D.RemoveFromPaymentTermMultiselect, D.ClearPaymentTermMultiselect, N.PaymentTermState, N._PaymentTermUIState_Object_EntityUIState, N._$PaymentTermStateSerializer, N._$PaymentTermUIStateSerializer, N.PaymentTermStateBuilder, N.PaymentTermUIStateBuilder, Z.ViewProductList, Z.ViewProduct, Z.EditProduct, Z.UpdateProduct, Z.LoadProductRequest, Z.LoadProduct, Z.LoadProductSuccess, Z.LoadProductFailure, Z.LoadProducts, Z.LoadProductsRequest, Z.LoadProductsFailure, Z.LoadProductsSuccess, Z.SaveProductRequest, Z.SaveProductSuccess, Z.AddProductSuccess, Z.SaveProductFailure, Z.ArchiveProductsRequest, Z.ArchiveProductsSuccess, Z.ArchiveProductsFailure, Z.DeleteProductsRequest, Z.DeleteProductsSuccess, Z.DeleteProductsFailure, Z.RestoreProductsRequest, Z.RestoreProductsSuccess, Z.RestoreProductsFailure, Z.FilterProducts, Z.SortProducts, Z.FilterProductsByState, Z.FilterProductsByCustom1, Z.FilterProductsByCustom2, Z.FilterProductsByCustom3, Z.FilterProductsByCustom4, Z.StartProductMultiselect, Z.AddToProductMultiselect, Z.RemoveFromProductMultiselect, Z.ClearProductMultiselect, Z.SaveProductDocumentRequest, Z.SaveProductDocumentFailure, Z.UpdateProductTab, Y.ProductState, Y._ProductUIState_Object_EntityUIState, Y._$ProductStateSerializer, Y._$ProductUIStateSerializer, Y.ProductStateBuilder, Y.ProductUIStateBuilder, M.ViewProjectList, M.ViewProject, M.EditProject, M.UpdateProject, M.LoadProject, M.LoadProjects, M.LoadProjectRequest, M.LoadProjectFailure, M.LoadProjectSuccess, M.LoadProjectsRequest, M.LoadProjectsFailure, M.LoadProjectsSuccess, M.SaveProjectRequest, M.SaveProjectSuccess, M.AddProjectSuccess, M.SaveProjectFailure, M.ArchiveProjectRequest, M.ArchiveProjectSuccess, M.ArchiveProjectFailure, M.DeleteProjectRequest, M.DeleteProjectSuccess, M.DeleteProjectFailure, M.RestoreProjectRequest, M.RestoreProjectSuccess, M.RestoreProjectFailure, M.FilterProjects, M.SortProjects, M.FilterProjectsByState, M.FilterProjectsByCustom1, M.FilterProjectsByCustom2, M.FilterProjectsByCustom3, M.FilterProjectsByCustom4, M.StartProjectMultiselect, M.AddToProjectMultiselect, M.RemoveFromProjectMultiselect, M.ClearProjectMultiselect, M.SaveProjectDocumentRequest, M.SaveProjectDocumentFailure, M.UpdateProjectTab, D.ProjectState, D._ProjectUIState_Object_EntityUIState, D._$ProjectStateSerializer, D._$ProjectUIStateSerializer, D.ProjectStateBuilder, D.ProjectUIStateBuilder, E.ViewQuoteList, E.ViewQuote, E.EditQuote, E.ShowEmailQuote, E.ShowPdfQuote, E.EditQuoteItem, E.UpdateQuote, E.UpdateQuoteClient, E.LoadQuote, E.LoadQuotes, E.LoadQuoteRequest, E.LoadQuoteFailure, E.LoadQuoteSuccess, E.LoadQuotesRequest, E.LoadQuotesFailure, E.LoadQuotesSuccess, E.AddQuoteContact, E.RemoveQuoteContact, E.AddQuoteItem, E.MoveQuoteItem, E.AddQuoteItems, E.UpdateQuoteItem, E.DeleteQuoteItem, E.SaveQuoteRequest, E.SaveQuoteSuccess, E.AddQuoteSuccess, E.SaveQuoteFailure, E.EmailQuoteRequest, E.EmailQuoteSuccess, E.EmailQuoteFailure, E.MarkSentQuotesRequest, E.MarkSentQuoteSuccess, E.MarkSentQuoteFailure, E.BulkEmailQuotesRequest, E.BulkEmailQuotesSuccess, E.BulkEmailQuotesFailure, E.ArchiveQuotesRequest, E.ArchiveQuotesSuccess, E.ArchiveQuotesFailure, E.DeleteQuotesRequest, E.DeleteQuotesSuccess, E.DeleteQuotesFailure, E.DownloadQuotesRequest, E.DownloadQuotesSuccess, E.DownloadQuotesFailure, E.RestoreQuotesRequest, E.RestoreQuotesSuccess, E.RestoreQuotesFailure, E.FilterQuotes, E.SortQuotes, E.FilterQuotesByState, E.FilterQuotesByStatus, E.FilterQuotesByCustom1, E.FilterQuotesByCustom2, E.FilterQuotesByCustom3, E.FilterQuotesByCustom4, E.ConvertQuotes, E.ConvertQuoteSuccess, E.ConvertQuoteFailure, E.SaveQuoteDocumentRequest, E.SaveQuoteDocumentFailure, E.StartQuoteMultiselect, E.AddToQuoteMultiselect, E.RemoveFromQuoteMultiselect, E.ClearQuoteMultiselect, E.UpdateQuoteTab, G.QuoteState, G._QuoteUIState_Object_EntityUIState, G._$QuoteStateSerializer, G._$QuoteUIStateSerializer, G.QuoteStateBuilder, G.QuoteUIStateBuilder, U.ViewRecurringExpenseList, U.ViewRecurringExpense, U.EditRecurringExpense, U.UpdateRecurringExpense, U.LoadRecurringExpense, U.LoadRecurringExpenses, U.LoadRecurringExpenseRequest, U.LoadRecurringExpenseFailure, U.LoadRecurringExpenseSuccess, U.LoadRecurringExpensesRequest, U.LoadRecurringExpensesFailure, U.LoadRecurringExpensesSuccess, U.SaveRecurringExpenseRequest, U.SaveRecurringExpenseSuccess, U.AddRecurringExpenseSuccess, U.SaveRecurringExpenseFailure, U.ArchiveRecurringExpensesRequest, U.ArchiveRecurringExpensesSuccess, U.ArchiveRecurringExpensesFailure, U.DeleteRecurringExpensesRequest, U.DeleteRecurringExpensesSuccess, U.DeleteRecurringExpensesFailure, U.RestoreRecurringExpensesRequest, U.RestoreRecurringExpensesSuccess, U.RestoreRecurringExpensesFailure, U.FilterRecurringExpenses, U.SortRecurringExpenses, U.FilterRecurringExpensesByState, U.FilterRecurringExpensesByCustom1, U.FilterRecurringExpensesByCustom2, U.FilterRecurringExpensesByCustom3, U.FilterRecurringExpensesByCustom4, U.StartRecurringExpenseMultiselect, U.AddToRecurringExpenseMultiselect, U.RemoveFromRecurringExpenseMultiselect, U.ClearRecurringExpenseMultiselect, U.UpdateRecurringExpenseTab, U.StartRecurringExpensesRequest, U.StartRecurringExpensesSuccess, U.StartRecurringExpensesFailure, U.StopRecurringExpensesRequest, U.StopRecurringExpensesSuccess, U.StopRecurringExpensesFailure, U.SaveRecurringExpenseDocumentRequest, U.SaveRecurringExpenseDocumentFailure, K.RecurringExpenseState, K._RecurringExpenseUIState_Object_EntityUIState, K._$RecurringExpenseStateSerializer, K._$RecurringExpenseUIStateSerializer, K.RecurringExpenseStateBuilder, K.RecurringExpenseUIStateBuilder, N.ViewRecurringInvoiceList, N.ViewRecurringInvoice, N.EditRecurringInvoice, N.ShowPdfRecurringInvoice, N.EditRecurringInvoiceItem, N.UpdateRecurringInvoice, N.UpdateRecurringInvoiceClient, N.LoadRecurringInvoice, N.LoadRecurringInvoices, N.LoadRecurringInvoiceRequest, N.LoadRecurringInvoiceFailure, N.LoadRecurringInvoiceSuccess, N.LoadRecurringInvoicesRequest, N.LoadRecurringInvoicesFailure, N.LoadRecurringInvoicesSuccess, N.AddRecurringInvoiceContact, N.RemoveRecurringInvoiceContact, N.SaveRecurringInvoiceRequest, N.SaveRecurringInvoiceSuccess, N.AddRecurringInvoiceSuccess, N.AddRecurringInvoiceItem, N.MoveRecurringInvoiceItem, N.AddRecurringInvoiceItems, N.UpdateRecurringInvoiceItem, N.DeleteRecurringInvoiceItem, N.SaveRecurringInvoiceFailure, N.ArchiveRecurringInvoicesRequest, N.ArchiveRecurringInvoicesSuccess, N.ArchiveRecurringInvoicesFailure, N.DeleteRecurringInvoicesRequest, N.DeleteRecurringInvoicesSuccess, N.DeleteRecurringInvoicesFailure, N.RestoreRecurringInvoicesRequest, N.RestoreRecurringInvoicesSuccess, N.RestoreRecurringInvoicesFailure, N.FilterRecurringInvoices, N.SortRecurringInvoices, N.FilterRecurringInvoicesByState, N.FilterRecurringInvoicesByStatus, N.FilterRecurringInvoicesByCustom1, N.FilterRecurringInvoicesByCustom2, N.FilterRecurringInvoicesByCustom3, N.FilterRecurringInvoicesByCustom4, N.SaveRecurringInvoiceDocumentRequest, N.SaveRecurringInvoiceDocumentFailure, N.StartRecurringInvoicesRequest, N.StartRecurringInvoicesSuccess, N.StartRecurringInvoicesFailure, N.StopRecurringInvoicesRequest, N.StopRecurringInvoicesSuccess, N.StopRecurringInvoicesFailure, N.StartRecurringInvoiceMultiselect, N.AddToRecurringInvoiceMultiselect, N.RemoveFromRecurringInvoiceMultiselect, N.ClearRecurringInvoiceMultiselect, N.UpdateRecurringInvoiceTab, Q.RecurringInvoiceState, Q._RecurringInvoiceUIState_Object_EntityUIState, Q._$RecurringInvoiceStateSerializer, Q._$RecurringInvoiceUIStateSerializer, Q.RecurringInvoiceStateBuilder, Q.RecurringInvoiceUIStateBuilder, K.ViewReports, K.UpdateReportSettings, G.ReportsUIState, G._$ReportsUIStateSerializer, G.ReportsUIStateBuilder, L.ViewSettings, L.ClearSettingsFilter, L.ResetSettings, L.UpdateSettings, L.UpdateSettingsTab, L.UpdatedSetting, L.UpdateSettingsTemplate, L.UpdateUserSettings, L.UploadLogoRequest, L.UploadLogoFailure, L.SaveUserSettingsRequest, L.SaveUserSettingsSuccess, L.SaveUserSettingsFailure, L.SaveAuthUserRequest, L.SaveAuthUserSuccess, L.SaveAuthUserFailure, L.ConnecOAuthUserRequest, L.ConnecOAuthUserSuccess, L.ConnecOAuthUserFailure, L.DisableTwoFactorRequest, L.DisableTwoFactorSuccess, L.DisableTwoFactorFailure, L.ConnecGmailUserSuccess, L.ConnecGmailUserFailure, L.FilterSettings, B.StaticState, B._$StaticStateSerializer, B.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, M.SubscriptionState, M._SubscriptionUIState_Object_EntityUIState, M._$SubscriptionStateSerializer, M._$SubscriptionUIStateSerializer, M.SubscriptionStateBuilder, M.SubscriptionUIStateBuilder, U.ViewTaskList, U.ViewTask, U.EditTask, U.UpdateTask, U.LoadTask, U.LoadTasks, U.LoadTaskRequest, U.LoadTaskFailure, U.LoadTaskSuccess, U.EditTaskTime, U.AddTaskTime, U.UpdateTaskTime, U.DeleteTaskTime, U.LoadTasksRequest, U.LoadTasksFailure, U.LoadTasksSuccess, U.SaveTaskRequest, U.SaveTaskSuccess, U.AddTaskSuccess, U.SaveTaskFailure, U.ArchiveTaskRequest, U.ArchiveTaskSuccess, U.ArchiveTaskFailure, U.DeleteTaskRequest, U.DeleteTaskSuccess, U.DeleteTaskFailure, U.RestoreTaskRequest, U.RestoreTaskSuccess, U.RestoreTaskFailure, U.SortTasksRequest, U.SortTasksSuccess, U.SortTasksFailure, U.FilterTasks, U.SortTasks, U.FilterTasksByState, U.FilterTasksByStatus, U.FilterTasksByCustom1, U.FilterTasksByCustom2, U.FilterTasksByCustom3, U.FilterTasksByCustom4, U.StartTaskMultiselect, U.AddToTaskMultiselect, U.RemoveFromTaskMultiselect, U.ClearTaskMultiselect, U.SaveTaskDocumentRequest, U.SaveTaskDocumentFailure, U.UpdateTaskTab, M.TaskState, M._TaskUIState_Object_EntityUIState, M._$TaskStateSerializer, M._$TaskUIStateSerializer, M.TaskStateBuilder, M.TaskUIStateBuilder, V.ViewTaskStatusList, V.ViewTaskStatus, V.EditTaskStatus, V.UpdateTaskStatus, V.LoadTaskStatusRequest, V.LoadTaskStatusFailure, V.LoadTaskStatusSuccess, V.LoadTaskStatusesRequest, V.LoadTaskStatusesFailure, V.LoadTaskStatusesSuccess, V.SaveTaskStatusRequest, V.SaveTaskStatusSuccess, V.AddTaskStatusSuccess, V.SaveTaskStatusFailure, V.ArchiveTaskStatusesRequest, V.ArchiveTaskStatusesSuccess, V.ArchiveTaskStatusesFailure, V.DeleteTaskStatusesRequest, V.DeleteTaskStatusesSuccess, V.DeleteTaskStatusesFailure, V.RestoreTaskStatusesRequest, V.RestoreTaskStatusesSuccess, V.RestoreTaskStatusesFailure, V.FilterTaskStatuses, V.SortTaskStatuses, V.FilterTaskStatusesByState, V.FilterTaskStatusesByCustom1, V.FilterTaskStatusesByCustom2, V.FilterTaskStatusesByCustom3, V.FilterTaskStatusesByCustom4, V.StartTaskStatusMultiselect, V.AddToTaskStatusMultiselect, V.RemoveFromTaskStatusMultiselect, V.ClearTaskStatusMultiselect, L.TaskStatusState, L._TaskStatusUIState_Object_EntityUIState, L._$TaskStatusStateSerializer, L._$TaskStatusUIStateSerializer, L.TaskStatusStateBuilder, L.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, Q.TaxRateState, Q._TaxRateUIState_Object_EntityUIState, Q._$TaxRateStateSerializer, Q._$TaxRateUIStateSerializer, Q.TaxRateStateBuilder, Q.TaxRateUIStateBuilder, Q.ViewTokenList, Q.ViewToken, Q.EditToken, Q.UpdateToken, Q.LoadTokenRequest, Q.LoadTokenFailure, Q.LoadTokenSuccess, Q.LoadTokensRequest, Q.LoadTokensFailure, Q.LoadTokensSuccess, Q.SaveTokenRequest, Q.SaveTokenSuccess, Q.AddTokenSuccess, Q.SaveTokenFailure, Q.ArchiveTokensRequest, Q.ArchiveTokensSuccess, Q.ArchiveTokensFailure, Q.DeleteTokensRequest, Q.DeleteTokensSuccess, Q.DeleteTokensFailure, Q.RestoreTokensRequest, Q.RestoreTokensSuccess, Q.RestoreTokensFailure, Q.FilterTokens, Q.SortTokens, Q.FilterTokensByState, Q.FilterTokensByCustom1, Q.FilterTokensByCustom2, Q.FilterTokensByCustom3, Q.FilterTokensByCustom4, Q.StartTokenMultiselect, Q.AddToTokenMultiselect, Q.RemoveFromTokenMultiselect, Q.ClearTokenMultiselect, N.TokenState, N._TokenUIState_Object_EntityUIState, N._$TokenStateSerializer, N._$TokenUIStateSerializer, N.TokenStateBuilder, N.TokenUIStateBuilder, U.EntityUIState, Q.ListUIState, Q._$ListUIStateSerializer, Q.ListUIStateBuilder, X.PrefState, X.PrefStateSortField, X.CompanyPrefState, X.HistoryRecord, X._$PrefStateSerializer, X._$PrefStateSortFieldSerializer, X._$CompanyPrefStateSerializer, X._$AppLayoutSerializer, X._$ModuleLayoutSerializer, X._$AppSidebarModeSerializer, X._$HistoryRecordSerializer, X.PrefStateBuilder, X.PrefStateSortFieldBuilder, X.CompanyPrefStateBuilder, X.HistoryRecordBuilder, Q.UpdateCurrentRoute, U.UIState, U._$UIStateSerializer, U.UIStateBuilder, X.ViewUserList, X.ViewUser, X.EditUser, X.UpdateUser, X.LoadUserRequest, X.LoadUserFailure, X.LoadUserSuccess, X.LoadUsersRequest, X.LoadUsersFailure, X.LoadUsersSuccess, X.SaveUserRequest, X.SaveUserSuccess, X.AddUserSuccess, X.SaveUserFailure, X.ArchiveUserRequest, X.ArchiveUserSuccess, X.ArchiveUserFailure, X.DeleteUserRequest, X.DeleteUserSuccess, X.DeleteUserFailure, X.RestoreUserRequest, X.RestoreUserSuccess, X.RestoreUserFailure, X.RemoveUserRequest, X.RemoveUserSuccess, X.RemoveUserFailure, X.ResendInviteRequest, X.ResendInviteSuccess, X.ResendInviteFailure, X.FilterUsers, X.SortUsers, X.FilterUsersByState, X.FilterUsersByCustom1, X.FilterUsersByCustom2, X.FilterUsersByCustom3, X.FilterUsersByCustom4, X.StartUserMultiselect, X.AddToUserMultiselect, X.RemoveFromUserMultiselect, X.ClearUserMultiselect, Q.UserState, Q._UserUIState_Object_EntityUIState, Q._$UserStateSerializer, Q._$UserUIStateSerializer, Q.UserStateBuilder, Q.UserUIStateBuilder, L.ViewVendorList, L.ViewVendor, L.EditVendor, L.UpdateVendor, L.LoadVendor, L.LoadVendors, L.LoadVendorRequest, L.LoadVendorFailure, L.LoadVendorSuccess, L.LoadVendorsRequest, L.LoadVendorsFailure, L.LoadVendorsSuccess, L.SaveVendorRequest, L.SaveVendorSuccess, L.AddVendorSuccess, L.SaveVendorFailure, L.ArchiveVendorRequest, L.ArchiveVendorSuccess, L.ArchiveVendorFailure, L.DeleteVendorRequest, L.DeleteVendorSuccess, L.DeleteVendorFailure, L.RestoreVendorRequest, L.RestoreVendorSuccess, L.RestoreVendorFailure, L.EditVendorContact, L.AddVendorContact, L.UpdateVendorContact, L.DeleteVendorContact, L.FilterVendors, L.SortVendors, L.FilterVendorsByState, L.FilterVendorsByCustom1, L.FilterVendorsByCustom2, L.FilterVendorsByCustom3, L.FilterVendorsByCustom4, L.StartVendorMultiselect, L.AddToVendorMultiselect, L.RemoveFromVendorMultiselect, L.ClearVendorMultiselect, L.SaveVendorDocumentRequest, L.SaveVendorDocumentFailure, L.UpdateVendorTab, Y.VendorState, Y._VendorUIState_Object_EntityUIState, Y._$VendorStateSerializer, Y._$VendorUIStateSerializer, Y.VendorStateBuilder, Y.VendorUIStateBuilder, S.ViewWebhookList, S.ViewWebhook, S.EditWebhook, S.UpdateWebhook, S.LoadWebhookRequest, S.LoadWebhookFailure, S.LoadWebhookSuccess, S.LoadWebhooksRequest, S.LoadWebhooksFailure, S.LoadWebhooksSuccess, S.SaveWebhookRequest, S.SaveWebhookSuccess, S.AddWebhookSuccess, S.SaveWebhookFailure, S.ArchiveWebhooksRequest, S.ArchiveWebhooksSuccess, S.ArchiveWebhooksFailure, S.DeleteWebhooksRequest, S.DeleteWebhooksSuccess, S.DeleteWebhooksFailure, S.RestoreWebhooksRequest, S.RestoreWebhooksSuccess, S.RestoreWebhooksFailure, S.FilterWebhooks, S.SortWebhooks, S.FilterWebhooksByState, S.FilterWebhooksByCustom1, S.FilterWebhooksByCustom2, S.FilterWebhooksByCustom3, S.FilterWebhooksByCustom4, S.StartWebhookMultiselect, S.AddToWebhookMultiselect, S.RemoveFromWebhookMultiselect, S.ClearWebhookMultiselect, V.WebhookState, V._WebhookUIState_Object_EntityUIState, V._$WebhookStateSerializer, V._$WebhookUIStateSerializer, V.WebhookStateBuilder, V.WebhookUIStateBuilder, B.ConfirmEmailVM, A.AppDrawerVM, A.MenuDrawerVM, Q.EntityPresenter, L.DataColumn0, L.DataRow0, L.DataCell0, G.LoginVM, Y.ClientListVM, V.ClientPdfVM, D.ClientScreenVM, F.ClientEditContactsVM, M.ClientEditVM, X.ClientViewVM, S.CompanyGatewayListVM, Y.CompanyGatewayScreenVM, L.CompanyGatewayEditVM, A.CompanyGatewayViewVM, M.EmailEntityVM, T.EntityListVM, O.EntityPdfVM, R.CreditScreenVM, L.EntityEditDetailsVM, O.EntityEditItemsVM, E.EntityEditNotesVM, B.EntityEditPDFVM, M.AbstractInvoiceEditVM, F.AbstractInvoiceViewVM, Q.DashboardVM, F.DesignListVM, G.DesignScreenVM, G.DesignEditVM, B.DesignViewVM, A.DocumentListVM, U.DocumentScreenVM, E.DocumentEditVM, A.DocumentViewVM, O.AbstractExpenseEditVM, F.ExpenseListVM, U.ExpenseScreenVM, U.AbstractExpenseViewVM, F.ExpenseCategoryEditVM, A.ExpenseCategoryListVM, O.ExpenseCategoryScreenVM, L.ExpenseCategoryViewVM, A.GroupEditVM, Y.GroupListVM, S.GroupScreenVM, A.GroupViewVM, X.EntityEditContactsVM, E.InvoiceScreenVM, B.PaymentEditVM, R.PaymentListVM, G.PaymentScreenVM, Y.PaymentRefundVM, F.PaymentViewVM, Y.PaymentTermEditVM, U.PaymentTermListVM, Z.PaymentTermScreenVM, U.PaymentTermViewVM, S.ProductEditVM, Q.ProductListVM, E.ProductScreenVM, F.ProductViewVM, G.ProjectEditVM, X.ProjectListVM, S.ProjectScreenVM, D.ProjectViewVM, B.QuoteScreenVM, U.RecurringExpenseListVM, B.RecurringExpenseScreenVM, Y.RecurringInvoiceListVM, A.RecurringInvoiceScreenVM, A.ClientReportFields, L.CreditReportFields, R.DocumentReportFields, M.ExpenseReportFields, D.InvoiceItemReportFields, X.InvoiceReportFields, O.TaxRateReportFields, K.PaymentReportFields, X.TaxRateReportFields0, N.ProductReportFields, K.ProfitAndLossReportFields, T.QuoteItemReportFields, Y.QuoteReportFields, A.ReportColumnType, A.ReportResult, A.ReportElement, L.ReportsScreenVM, L.GroupTotals, E.TaskReportFields, A.AccountManagementVM, B.BuyNowButtonsVM, A.ClientPortalVM, A.CompanyDetailsVM, F.CreditCardsAndBanksVM, M.CustomFieldsVM, M.DataVisualizationsVM, L.DeviceSettingsVM, D.EmailSettingsVM, N.ExpenseSettingsVM, F.GeneratedNumbersVM, N.ImportExportVM, B.InvoiceDesignVM, B.LocalizationSettingsVM, B.OnlinePaymentsVM, G.ProductSettingsVM, D.SettingsListVM, L.SettingsScreenVM, F.TaskSettingsVM, A.TaxSettingsVM, F.TemplatesAndRemindersVM, M.UserDetailsVM, Y.WorkflowSettingsVM, R.SubscriptionEditVM, S.SubscriptionListVM, L.SubscriptionScreenVM, E.SubscriptionViewVM, B.UpdateState, A.TaskEditDetailsVM, M.TaskEditTimesVM, B.TaskEditVM, T.KanbanVM, K.TaskListVM, Y.TaskScreenVM, L.TaskViewVM, Q.TaskStatusEditVM, U.TaskStatusListVM, U.TaskStatusScreenVM, T.TaskStatusViewVM, S.TaxRateEditVM, X.TaxRateListVM, O.TaxRateScreenVM, R.TaxRateViewVM, R.TokenEditVM, M.TokenListVM, K.TokenScreenVM, U.TokenViewVM, Y.UserEditVM, M.UserListVM, A.UserScreenVM, X.UserViewVM, T.VendorEditContactsVM, A.VendorEditVM, E.VendorListVM, B.VendorScreenVM, F.VendorViewVM, F.WebhookEditVM, Y.WebhookViewVM, X.WebhookListVM, T.WebhookScreenVM, O.Debouncer, Y.FormatNumberType, B.LocaleCodeAware, B.LocalizationsProvider, V.AndroidAuthMessages, V.IOSAuthMessages, L.LocalAuthentication, Y.Level, L.LogRecord, F.Logger, S.PdfDocument, S.PdfPageNotFoundException, V.PdfPage, V.PdfPageAlreadyClosedException, V.PdfPageImage, V.PdfNotSupportException, S.Document, V.Page, V.Data, M.NativePdfRendererPlugin, T.Repository, T.RepositoryItemNotFoundException, X.PdfController, X._PdfViewLoadingState, F.AnimationDirection, Y._PlaceholderType, Y.ImageHandler, K.OverflowViewLayoutBehavior, M.Context, O.Style, X.ParsedPath, X.PathException, Q.MissingPlatformDirectoryException, M.PermissionStatus0, M.Permission, M.PhotoViewGalleryPageOptions, E.PhotoViewControllerValue, E.PhotoViewController, E.PhotoViewControllerDelegate, M.PhotoViewScaleStateController, G.HitCornersDetector, G.HitCorners, M.PhotoViewComputedScale, G.PhotoViewScaleState, F.PhotoViewHeroAttributes, M.ScaleBoundaries, M.CornersRange, T.Platform, Q._QrBitBuffer_Object_ListMixin, V.QrByte, V.InputTooLongException, D.QrPolynomial, D.QrCode, Y.QrRsBlock, F.PaintCache, R._PaintMetrics, G.QrCodeElement, G.FinderPatternPosition, G.QrEyeShape, G.QrDataModuleShape, G.QrEyeStyle, G.QrDataModuleStyle, S.QrValidationResult, S.QrValidationStatus, X.MiddlewareClass, X.Store, B.TypedReducer, B.TypedMiddleware, N.LoadingState, N.RoundedLoadingButtonController, U._Wrapper, F._StreamSinkWrapper, G._StartWithStreamSink, O._StartWithErrorStreamSink, G.ErrorAndStackTrace, Q.ValueWrapper, O.HubAdapter, U.NoOpHub, B.Breadcrumb, K.SentryLevel, Z.SentryFlutterWeb, V.SharedPreferences, E.SharedPreferencesStorePlatform, Y.SourceFile, D.SourceLocationMixin, Y.SourceSpanMixin, U.Highlighter, U._Highlight, U._Line, V.SourceLocation, G.SourceSpanException, X.StringScanner, S.BasicLock, X.EnMessages, X.EnShortMessages, O.EsMessages, O.EsShortMessages, K.Uuid, E.Matrix3, E.Matrix4, E.Quaternion, E.Vector3, E.Vector4, Q.Version]); _inheritMany(H.Closure, [H.initializeEngine_closure, H.initializeEngine_closure0, H.initializeEngine__closure, H._addUrlStrategyListener_closure, H._addUrlStrategyListener_closure0, H.AssetManager__baseUrl_closure, H.AssetManager__baseUrl_closure0, H.ProductionCollector_closure, H.ProductionCollector_collect_closure, H.HtmlViewEmbedder__applyMutators_closure, H.HtmlViewEmbedder__applyMutators_closure0, H.FontFallbackData_createNotoFontTree_closure, H.FontFallbackData_registerFallbackFont_closure, H.findFontsForMissingCodeunits_closure, H._makeResolvedNotoFontFromCss_closure, H._registerSymbolsAndEmoji_extractUrlFromCss, H.findMinimumFontsForCodeUnits_closure, H.findMinimumFontsForCodeUnits_closure0, H.FallbackFontDownloadQueue_startDownloads_closure, H.NotoDownloader_downloadAsBytes_closure, H.NotoDownloader_downloadAsBytes__closure, H.NotoDownloader_downloadAsString_closure, H.NotoDownloader_downloadAsString__closure, H.SkiaFontCollection_ensureFontsLoaded_closure, H.SkiaFontCollection_ensureFontsLoaded_closure0, H.SkiaFontCollection__getArrayBuffer_closure, H.httpRequestFactory_closure, H.skiaInstantiateWebImageCodec_closure, H.skiaInstantiateWebImageCodec_closure0, H.skiaInstantiateWebImageCodec_closure1, H.CkImage_closure, H.initializeCanvasKit__loadSubscription_set, H.initializeCanvasKit__loadSubscription_get, H.initializeCanvasKit_closure, H.initializeCanvasKit__closure, H.initializeCanvasKit__closure0, H.IntervalTree_IntervalTree$createFromRanges_closure, H.IntervalTree_IntervalTree$createFromRanges_closure0, H.IntervalTree_IntervalTree$createFromRanges__makeBalancedTree, H.IntervalTree_IntervalTree$createFromRanges__computeHigh, H.Frame_raster_closure, H.Frame_raster_closure0, H.Surface_acquireFrame_closure, H.Surface__createNewSurface_closure, H.CkTextStyle_skTextStyle_closure, H.CkParagraphBuilder__ensureFontsSupportText_closure, H.CkParagraphBuilder__checkIfGlobalFallbacksSupport_closure, H.CkParagraphBuilder__checkIfNoFallbackFontSupports_closure, H._getEffectiveFontFamilies_closure, H.ClipboardMessageHandler_setDataMethodCall_closure, H.ClipboardMessageHandler_setDataMethodCall_closure0, H.ClipboardMessageHandler_getDataMethodCall_closure, H.ClipboardMessageHandler_getDataMethodCall_closure0, H.DomRenderer_reset_closure, H.DomRenderer_reset_closure0, H.DomRenderer_reset_closure1, H.DomRenderer_reset_closure2, H.DomRenderer_reset_closure3, H.DomRenderer_setPreferredOrientation_closure, H.DomRenderer_setPreferredOrientation_closure0, H.PersistedPicture__applyBitmapPaint_closure, H.SurfaceSceneBuilder_build_closure, H.SurfaceSceneBuilder_build_closure0, H.commitScene_closure, H.PersistedContainerSurface__matchChildren_closure, H.HtmlCodec_getNextFrame_closure, H.HtmlCodec_getNextFrame_closure0, H.HtmlCodec__decodeUsingOnLoad__errorSubscription_set, H.HtmlCodec__decodeUsingOnLoad__errorSubscription_get, H.HtmlCodec__decodeUsingOnLoad_closure, H.HtmlCodec__decodeUsingOnLoad_closure0, H.Keyboard$__closure, H.Keyboard$__closure0, H.Keyboard$__closure1, H.Keyboard__handleHtmlEvent_closure, H.Keyboard__handleHtmlEvent_closure0, H._kLogicalKeyToModifierGetter_closure, H._kLogicalKeyToModifierGetter_closure0, H._kLogicalKeyToModifierGetter_closure1, H._kLogicalKeyToModifierGetter_closure2, H._kLogicalKeyToModifierGetter_closure3, H._kLogicalKeyToModifierGetter_closure4, H._kLogicalKeyToModifierGetter_closure5, H._kLogicalKeyToModifierGetter_closure6, H.KeyboardBinding__addEventListener_closure, H.KeyboardBinding__onKeyData_closure, H.KeyboardBinding__setup_closure, H.KeyboardBinding__setup_closure0, H.KeyboardConverter__scheduleAsyncEvent_closure, H.KeyboardConverter__scheduleAsyncEvent_closure0, H.KeyboardConverter__startGuardingKey_closure, H.KeyboardConverter__startGuardingKey_closure0, H.KeyboardConverter_handleEvent_closure, H.KeyboardConverter_handleEvent_closure0, H.KeyboardConverter_handleEvent_closure1, H.KeyboardConverter_handleEvent_closure2, H.KeyboardConverter_handleEvent__closure, H.MultiEntriesBrowserHistory_onPopState_closure, H.SingleEntryBrowserHistory_onPopState_closure, H.SingleEntryBrowserHistory_onPopState_closure0, H.HashUrlStrategy_addPopStateListener_closure, H.HashUrlStrategy__waitForPopState__unsubscribe_set, H.HashUrlStrategy__waitForPopState__unsubscribe_get, H.HashUrlStrategy__waitForPopState_closure, H.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure, H.EnginePlatformDispatcher__sendPlatformMessage_closure, H.EnginePlatformDispatcher__sendPlatformMessage_closure0, H.EnginePlatformDispatcher__sendPlatformMessage_closure1, H.EnginePlatformDispatcher__sendPlatformMessage_closure2, H.EnginePlatformDispatcher__sendPlatformMessage_closure3, H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure, H.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure0, H.EnginePlatformDispatcher__replyToPlatformMessage_closure, H.invoke3_closure, H._BaseAdapter_addEventListener_closure, H._WheelEventListenerMixin__addWheelEventListener_closure, H._PointerAdapter__ensureSanitizer_closure, H._PointerAdapter__addPointerEventListener_closure, H._PointerAdapter_setup_closure, H._PointerAdapter_setup_closure0, H._PointerAdapter_setup_closure1, H._PointerAdapter_setup_closure2, H._PointerAdapter_setup_closure3, H._TouchAdapter__addTouchEventListener_closure, H._TouchAdapter_setup_closure, H._TouchAdapter_setup_closure0, H._TouchAdapter_setup_closure1, H._TouchAdapter_setup_closure2, H._MouseAdapter__addMouseEventListener_closure, H._MouseAdapter_setup_closure, H._MouseAdapter_setup_closure0, H._MouseAdapter_setup_closure1, H._MouseAdapter_setup_closure2, H.PointerDataConverter__ensureStateForPointer_closure, H.AccessibilityAnnouncements$__closure, H.AccessibilityAnnouncements_handleMessage_closure, H.Incrementable_closure, H.Incrementable_closure0, H.Scrollable_update_closure, H.Scrollable_update_closure0, H.Scrollable_update_closure1, H._roleFactories_closure, H._roleFactories_closure0, H._roleFactories_closure1, H._roleFactories_closure2, H._roleFactories_closure3, H._roleFactories_closure4, H._roleFactories_closure5, H._roleFactories_closure6, H.SemanticsObject_recomputePositionAndSize__effectiveTransform_set, H.SemanticsObject_recomputePositionAndSize__effectiveTransform_get, H.EngineSemanticsOwner$__closure, H.EngineSemanticsOwner__now_closure, H.EngineSemanticsOwner__getGestureModeClock_closure, H.DesktopSemanticsEnabler_tryEnableSemantics_closure, H.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure, H.MobileSemanticsEnabler_tryEnableSemantics_closure, H.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure, H.Tappable_update_closure, H.TextField__initializeForBlink_closure, H.TextField__initializeForWebkit_closure, H.TextField__initializeForWebkit_closure0, H.TextField_update_closure, H.StandardMessageCodec_writeValue_closure0, H.CanvasParagraph__createDomElement__element_set, H.CanvasParagraph__createDomElement__element_get, H.FontManager__loadFontFace_closure, H.FontManager__loadFontFace_closure0, H._PolyfillFontManager_registerAsset___fontLoadStart_set, H._PolyfillFontManager_registerAsset___fontLoadStart_get, H._PolyfillFontManager_registerAsset__watchWidth, H._PolyfillFontManager_registerAsset_closure, H.RulerManager__scheduleRulerCacheCleanup_closure, H.RulerManager__evictAllRulers_closure, H.RulerManager_cleanUpRulerCache_closure, H.DomParagraphBuilder__buildRichText_currentElement, H.EngineAutofillForm_fromFrameworkMessage_closure, H.EngineAutofillForm_addInputEventListeners_closure, H.EngineAutofillForm_addInputEventListeners__closure, H.DefaultTextEditingStrategy_addEventHandlers_closure, H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure, H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0, H.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1, H.IOSTextEditingStrategy_addEventHandlers_closure, H.IOSTextEditingStrategy_addEventHandlers_closure0, H.IOSTextEditingStrategy__addTapListener_closure, H.IOSTextEditingStrategy__schedulePlacement_closure, H.AndroidTextEditingStrategy_addEventHandlers_closure, H.FirefoxTextEditingStrategy_addEventHandlers_closure, H.FirefoxTextEditingStrategy_addEventHandlers_closure0, H.FirefoxTextEditingStrategy__postponeFocus_closure, H.saveForms_closure, H.TextEditingChannel_handleTextInput__command_set, H.TextEditingChannel_handleTextInput__command_get, H.TextEditingChannel_handleTextInput_closure, H.HybridTextEditing__startEditing_closure0, H.HybridTextEditing__startEditing_closure, H.sendFontChangeMessage_closure, H.sendFontChangeMessage__closure, H.WebExperiments$__closure, H.EngineFlutterWindow_closure, H._HeaderValue_toString_closure, H._HeaderValue__parse_done, H._HeaderValue__parse_skipWS, H._HeaderValue__parse_parseValue, H._HeaderValue__parse_expect, H._HeaderValue__parse_maybeExpect, H._HeaderValue__parse_parseParameters, H._HeaderValue__parse_parseParameters_parseParameterName, H._HeaderValue__parse_parseParameters_parseParameterValue, H._CastListBase_sort_closure, H._CastListBase_removeWhere_closure, H._CastListBase_retainWhere_closure, H.CastMap_putIfAbsent_closure, H.CastMap_forEach_closure, H.CastMap_entries_closure, H.nullFuture_closure, H.ConstantMap_map_closure, H.ConstantStringMap_values_closure, H.Instantiation, H.Primitives_initTicker_closure, H.Primitives_functionNoSuchMethod_closure, H.TearOffClosure, H.JsLinkedHashMap_values_closure, H.JsLinkedHashMap_containsValue_closure, H.JsLinkedHashMap_addAll_closure, H.initHooks_closure, H.initHooks_closure0, H.initHooks_closure1, P._AsyncRun__initializeScheduleImmediate_internalCallback, P._AsyncRun__initializeScheduleImmediate_closure, P._AsyncRun__scheduleImmediateJsOverride_internalCallback, P._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback, P._TimerImpl_internalCallback, P._TimerImpl$periodic_closure, P._awaitOnObject_closure, P._awaitOnObject_closure0, P._wrapJsFunctionForAsync_closure, P._asyncStarHelper_closure, P._asyncStarHelper_closure0, P._AsyncStarStreamController__resumeBody, P._AsyncStarStreamController__resumeBody_closure, P._AsyncStarStreamController_closure0, P._AsyncStarStreamController_closure1, P._AsyncStarStreamController_closure, P._AsyncStarStreamController__closure, P._SyncBroadcastStreamController__sendData_closure, P._SyncBroadcastStreamController__sendError_closure, P._SyncBroadcastStreamController__sendDone_closure, P.Future_Future_closure, P.Future_Future$microtask_closure, P.Future_Future$delayed_closure, P.Future_wait__error_set, P.Future_wait__stackTrace_set, P.Future_wait__error_get, P.Future_wait__stackTrace_get, P.Future_wait_handleError, P.Future_wait_closure, P._Future__addListener_closure, P._Future__prependListeners_closure, P._Future__chainForeignFuture_closure, P._Future__chainForeignFuture_closure0, P._Future__chainForeignFuture_closure1, P._Future__asyncCompleteWithValue_closure, P._Future__chainFuture_closure, P._Future__asyncCompleteError_closure, P._Future__propagateToListeners_handleWhenCompleteCallback, P._Future__propagateToListeners_handleWhenCompleteCallback_closure, P._Future__propagateToListeners_handleValueCallback, P._Future__propagateToListeners_handleError, P._Future_timeout_closure, P._Future_timeout_closure0, P._Future_timeout_closure1, P.Stream_Stream$fromFuture_closure, P.Stream_Stream$fromFuture_closure0, P.Stream_Stream$fromIterable_closure, P.Stream_pipe_closure, P.Stream_fold_closure, P.Stream_fold_closure0, P.Stream_fold__closure, P.Stream_fold__closure0, P.Stream_forEach_closure, P.Stream_forEach_closure0, P.Stream_forEach__closure, P.Stream_forEach__closure0, P.Stream_length_closure, P.Stream_length_closure0, P.Stream_isEmpty_closure, P.Stream_isEmpty_closure0, P.Stream_first_closure, P.Stream_first_closure0, P._StreamController__subscribe_closure, P._StreamController__recordCancel_complete, P._AddStreamState_makeErrorHandler_closure, P._AddStreamState_cancel_closure, P._BufferingStreamSubscription__sendError_sendError, P._BufferingStreamSubscription__sendDone_sendDone, P._PendingEvents_schedule_closure, P._cancelAndError_closure, P._cancelAndErrorClosure_closure, P._cancelAndValue_closure, P._StreamHandlerTransformer_closure, P._CustomZone_bindCallback_closure, P._CustomZone_bindUnaryCallback_closure, P._CustomZone_bindCallbackGuarded_closure, P._CustomZone_bindUnaryCallbackGuarded_closure, P._rootHandleUncaughtError_closure, P._RootZone_bindCallback_closure, P._RootZone_bindCallbackGuarded_closure, P._RootZone_bindUnaryCallbackGuarded_closure, P._HashMap_values_closure, P._HashMap_addAll_closure, P._CustomHashMap_closure, P._LinkedCustomHashMap_closure, P.HashMap_HashMap$from_closure, P.LinkedHashMap_LinkedHashMap$from_closure, P.MapBase_mapToString_closure, P.MapMixin_entries_closure, P.SplayTreeMap_closure, P.SplayTreeMap_addAll_closure, P.SplayTreeSet_closure, P.SplayTreeSet__copyNode_copyChildren, P._JsonMap_values_closure, P._JsonMap_addAll_closure, P.Utf8Decoder__decoder_closure, P.Utf8Decoder__decoderNonfatal_closure, P._JsonStringifier_writeMap_closure, P._JsonPrettyPrintMixin_writeMap_closure, P._symbolMapToStringMap_closure, P.NoSuchMethodError_toString_closure, P._BigIntImpl_hashCode_combine, P._BigIntImpl_hashCode_finish, P._BigIntImpl_toDouble_readBits, P._BigIntImpl_toDouble_roundUp, P.DateTime_parse_parseIntOrZero, P.DateTime_parse_parseMilliAndMicroseconds, P.Duration_toString_sixDigits, P.Duration_toString_twoDigits, P.Uri__parseIPv4Address_error, P.Uri_parseIPv6Address_error, P.Uri_parseIPv6Address_parseHex, P._Uri__makePath_closure, P._Uri__makeQuery_writeParameter, P._Uri__makeQuery_closure, P._createTables_build, P._createTables_setChars, P._createTables_setRange, W.CanvasElement_toBlob_closure, W._ChildrenElementList__filter_closure, W.Element_Element$html_closure, W.Entry_remove_closure, W.Entry_remove_closure0, W.HttpRequest_request_closure, W.MidiInputMap_keys_closure, W.MidiInputMap_values_closure, W.MidiOutputMap_keys_closure, W.MidiOutputMap_values_closure, W.RtcStatsReport_keys_closure, W.RtcStatsReport_values_closure, W.Storage_addAll_closure, W.Storage_keys_closure, W.Storage_values_closure, W._BeforeUnloadEventStreamProvider_forTarget_closure, W._AttributeMap_addAll_closure, W._DataAttributeMap_addAll_closure, W._DataAttributeMap_forEach_closure, W._DataAttributeMap_keys_closure, W._DataAttributeMap_values_closure, W._EventStreamSubscription_closure, W._EventStreamSubscription_onData_closure, W.NodeValidatorBuilder_allowsElement_closure, W.NodeValidatorBuilder_allowsAttribute_closure, W._SimpleNodeValidator_closure, W._SimpleNodeValidator_closure0, W._TemplatingNodeValidator_closure, W._ValidatingTreeSanitizer_sanitizeTree_walk, P._StructuredClone_walk_closure, P._StructuredClone_walk_closure0, P._AcceptStructuredClone_walk_closure, P._convertDartToNative_Value_closure, P.convertDartToNative_Dictionary_closure, P.FilteredElementList__iterable_closure, P.FilteredElementList__iterable_closure0, P.FilteredElementList_removeRange_closure, P._completeRequest_closure, P._FileStream_listen_closure, P._FileStream__closeFile_done, P._FileStream__readBlock_closure, P._FileStream__readBlock_closure0, P._FileStream__start_onReady, P._FileStream__start_onOpenFile, P._FileStream__start_onOpenFile_closure, P._FileStream__start_openFailed, P._File_open_closure, P._File_length_closure, P.JsObject__convertDataTree__convert, P._convertToJS_closure, P._convertToJS_closure0, P._wrapToDart_closure, P._wrapToDart_closure0, P._wrapToDart_closure1, P.promiseToFuture_closure, P.promiseToFuture_closure0, P.ChannelBuffers_push_closure, P.webOnlyInitializePlatform_closure, P.webOnlyInstantiateImageCodecFromUrl_closure, P._futurize_closure, P.AudioParamMap_keys_closure, P.AudioParamMap_values_closure, D.BoardItemState_onDropItem_closure, D.BoardItemState__startDrag_closure, D.BoardItemState__startDrag_closure0, D.BoardItemState_build_closure, D.BoardItemState_build_closure3, D.BoardItemState_build_closure2, D.BoardItemState_build_closure1, D.BoardItemState_build_closure0, O.BoardListState_onDropList_closure, O.BoardListState__startDrag_closure, O.BoardListState_build_closure0, O.BoardListState_build_closure2, O.BoardListState_build_closure1, O.BoardListState_build_closure, O.BoardListState_build_closure3, N.BoardViewState_moveDown_closure, N.BoardViewState_moveUp_closure, N.BoardViewState_moveListRight_closure, N.BoardViewState_moveListRight__closure, N.BoardViewState_moveListRight_closure0, N.BoardViewState_moveRight_closure, N.BoardViewState_moveRight_closure0, N.BoardViewState_moveRight_closure1, N.BoardViewState_moveRight__closure, N.BoardViewState_moveRight_closure2, N.BoardViewState_moveListLeft_closure, N.BoardViewState_moveListLeft__closure, N.BoardViewState_moveListLeft_closure0, N.BoardViewState_moveLeft_closure, N.BoardViewState_moveLeft_closure0, N.BoardViewState_moveLeft_closure1, N.BoardViewState_moveLeft__closure, N.BoardViewState_moveLeft_closure2, N.BoardViewState_build_closure, N.BoardViewState_build__closure5, N.BoardViewState_build_closure0, N.BoardViewState_build_closure1, N.BoardViewState_build__closure4, N.BoardViewState_build_closure2, N.BoardViewState_build__closure3, N.BoardViewState_build_closure3, N.BoardViewState_build__closure2, N.BoardViewState_build_closure5, N.BoardViewState_build__closure0, N.BoardViewState_build_closure4, N.BoardViewState_build__closure1, N.BoardViewState_build_closure6, N.BoardViewState_build__closure, N.BoardViewState_run_closure, A.hashObjects_closure, R.BuiltListMultimap_BuiltListMultimap_closure, R.BuiltListMultimap_hashCode_closure, R.BuiltListMultimap_forEach_closure, R.BuiltListMultimap_forEach__closure, R.ListMultimapBuilder_replace_closure, A.BuiltMap_BuiltMap_closure, A.BuiltMap_BuiltMap$from_closure, A.BuiltMap_hashCode_closure, A.MapBuilder_replace_closure, A.MapBuilder_replace_closure0, X.BuiltSet_hashCode_closure, M.BuiltSetMultimap_hashCode_closure, M.BuiltSetMultimap_forEach_closure, M.BuiltSetMultimap_forEach__closure, M.SetMultimapBuilder_replace_closure, Y.newBuiltValueToStringHelper_closure, U.Serializers_Serializers_closure, U.Serializers_Serializers_closure0, U.Serializers_Serializers_closure1, U.Serializers_Serializers_closure2, U.Serializers_Serializers_closure3, R.BuiltListMultimapSerializer_serialize_closure, R.BuiltListMultimapSerializer_deserialize_closure, K.BuiltListSerializer_serialize_closure, K.BuiltListSerializer_deserialize_closure, R.BuiltSetMultimapSerializer_serialize_closure, R.BuiltSetMultimapSerializer_deserialize_closure, O.BuiltSetSerializer_serialize_closure, O.BuiltSetSerializer_deserialize_closure, T.StandardJsonPlugin__toList_closure, T.StandardJsonPlugin__toList_closure0, T.StandardJsonPlugin__toListUsingDiscriminator_closure, T.StandardJsonPlugin__toListUsingDiscriminator_closure0, X.CachedNetworkImageProvider__loadAsyncHttpGet_closure, G.loadAsyncHtmlImage_closure, B.MultiImageStreamCompleter_closure, B.MultiImageStreamCompleter_closure0, B.MultiImageStreamCompleter_closure1, T.BaseBarRenderer_preprocessSeries_closure, T.BaseBarRenderer_preprocessSeries__closure0, T.BaseBarRenderer_preprocessSeries__closure1, T.BaseBarRenderer_preprocessSeries__closure2, T.BaseBarRenderer_preprocessSeries_closure0, T.BaseBarRenderer_preprocessSeries__closure, T.BaseBarRenderer_update_closure, T.BaseBarRenderer_update__closure, T.BaseBarRenderer_update__closure0, T.BaseBarRenderer_update__closure1, T.BaseBarRenderer_update_closure0, T.BaseBarRenderer_paint_closure, T.BaseBarRenderer_paint__closure0, T.BaseBarRenderer_paint_closure0, T.BaseBarRenderer_paint_closure1, T.BaseBarRenderer_paint__closure, T.BaseBarRenderer_getNearestDatumDetailPerSeries_closure, T.BaseBarRenderer__getSegmentsForDomainValue_closure, T.BaseBarRenderer__getSegmentsForDomainValue_closure0, T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure, T.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0, T._ReversedSeriesIterator_closure, T._ReversedSeriesIterator_closure0, M.Axis__updateAxisTicks_closure, M.Axis__updateAxisTicks_closure0, M.Axis_paint_closure, R.BaseTickDrawStrategy_collides_closure, R.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure, R.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure, R.BaseTickDrawStrategy_splitLabel_closure, R.BaseTickDrawStrategy_getLabelWidth_closure, Y.NoneDrawStrategy_decorateTicks_closure, B.SimpleTickFormatterBase_format_closure, B.NumericTickFormatter__getFormatter_closure, L.TimeRangeTickProviderImpl_getTicks__currentTicks_set, L.TimeRangeTickProviderImpl_getTicks__currentTicks_get, L.CartesianChart_init_closure, L.CartesianChart_makeSeries_closure, L.CartesianChart_preprocessSeries_closure, L.CartesianChart_preprocessSeries_closure0, L.CartesianChart_preprocessSeries_closure1, L.CartesianChart_preprocessSeries_closure2, L.CartesianChart_onSkipLayout_closure, F.BaseCartesianRenderer_configureDomainAxes_closure, F.BaseCartesianRenderer_configureMeasureAxes_closure, X.BaseChart_init_closure, X.BaseChart_getSelectionModel_closure, X.BaseChart_pointWithinRenderer_closure, X.BaseChart_getNearestDatumDetailPerSeries_closure, X.BaseChart_getNearestDatumDetailPerSeries_closure0, X.BaseChart_draw_closure, X.BaseChart_drawInternal_closure, X.BaseChart_configureSeries_closure, X.BaseChart_configureSeries__closure, X.BaseChart_configureSeries_closure0, X.BaseChart_preprocessSeries_closure, X.BaseChart_preprocessSeries__closure, X.BaseChart_preprocessSeries_closure0, X.BaseChart_preprocessSeries_closure1, X.BaseChart_onPostLayout_closure, X.BaseChart_paint_closure, X.BaseChart_fireOnDraw_closure, X.BaseChart_fireOnPreprocess_closure, X.BaseChart_fireOnPostprocess_closure, X.BaseChart_fireOnAxisConfigured_closure, X.BaseChart_fireOnPostrender_closure, X.BaseChart_fireOnAnimationComplete_closure, O.DomainHighlighter__updateColorFunctions_closure, O.DomainHighlighter__updateColorFunctions__closure, V.PerSeriesLegendEntryGenerator_getLegendEntries_closure, V.PerSeriesLegendEntryGenerator_getLegendEntries_closure0, V.PerSeriesLegendEntryGenerator__updateFromSelection_closure, V.PerSeriesLegendEntryGenerator__updateFromSelection_closure0, V.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal, Z.SeriesLegend_onData_closure0, Z.SeriesLegend_onData_closure, Z.SeriesLegend_preProcessSeriesList_closure, Z.SeriesLegend_showSeries_closure, E.LinePointHighlighter__updateViewData_closure, E._LinePointLayoutView_paint_closure, E._LinePointLayoutView_paint_closure0, Z.SelectNearest__onSelect_closure, Z.SelectNearest__onSelect_closure0, Z.SelectNearest__extractSeriesFromNearestSelection_closure, N.MutableSeries_closure, D.MutableSelectionModel_updateSelection_closure, D.MutableSelectionModel_updateSelection_closure0, B.BaseSeriesRenderer_assignMissingColors_closure, B.BaseSeriesRenderer_assignMissingColors__closure3, B.BaseSeriesRenderer_assignMissingColors_closure0, B.BaseSeriesRenderer_assignMissingColors__closure2, B.BaseSeriesRenderer_assignMissingColors_closure1, B.BaseSeriesRenderer_assignMissingColors_closure2, B.BaseSeriesRenderer_assignMissingColors__closure0, B.BaseSeriesRenderer_assignMissingColors__closure1, B.BaseSeriesRenderer_assignMissingColors_closure3, B.BaseSeriesRenderer_assignMissingColors__closure, B.BaseSeriesRenderer_assignMissingColors_closure4, D.LayoutManagerImpl_paintOrderedViews_closure, D.LayoutManagerImpl_positionOrderedViews_closure, D.LayoutManagerImpl_drawableLayoutAreaBounds_closure, D.LayoutManagerImpl_layout_closure, D.LayoutManagerImpl__viewsForPositions_closure, B.VerticalMarginStrategy_measure_closure, B.LeftMarginLayoutStrategy_layout_closure, B.RightMarginLayoutStrategy_layout_closure, B.HorizontalMarginStrategy_measure_closure, B.TopMarginLayoutStrategy_layout_closure, B.BottomMarginLayoutStrategy_layout_closure, T.LineRenderer_configureSeries_closure, T.LineRenderer_configureSeries__closure, T.LineRenderer_preprocessSeries_closure, T.LineRenderer_preprocessSeries_closure0, T.LineRenderer_preprocessSeries__closure, T.LineRenderer__mergeIntoSeriesMap_closure, T.LineRenderer__mergeIntoSeriesMap__closure, T.LineRenderer_update_closure, T.LineRenderer_update__closure, T.LineRenderer_update___closure, T.LineRenderer_update_closure0, T.LineRenderer__createBoundsSegment_closure, T.LineRenderer__createBoundsSegment_closure0, T.LineRenderer_paint_closure, T.LineRenderer_paint__closure7, T.LineRenderer_paint_closure0, T.LineRenderer_paint__closure, T.LineRenderer_paint__closure0, T.LineRenderer_paint__closure1, T.LineRenderer_paint__closure2, T.LineRenderer_paint__closure3, T.LineRenderer_paint__closure4, T.LineRenderer_paint__closure5, T.LineRenderer_paint__closure6, T._LineRendererElement_updateAnimationPercent__lastPoint_set, T._LineRendererElement_updateAnimationPercent__lastPoint_get, T._AreaRendererElement_updateAnimationPercent__lastPoint_set, T._AreaRendererElement_updateAnimationPercent__lastPoint_get, U.PointRenderer_paint_closure, U.PointRenderer_paint__closure1, U.PointRenderer_paint_closure0, U.PointRenderer_paint__closure, U.PointRenderer_paint__closure0, U.PointRenderer_paint___closure, U.PointRenderer_paint___closure0, U.PointRenderer_paint___closure1, U.PointRenderer_paint___closure2, N.GestureListener_defaultTapCancel_closure, N.GestureListener_defaultTapTest_closure, M.MaterialPalette__orderedPalettes_closure, M.MaterialPalette__orderedPalettes_closure0, M.MaterialPalette__orderedPalettes_closure1, M.MaterialPalette__orderedPalettes_closure2, M.MaterialPalette__orderedPalettes_closure3, M.MaterialPalette__orderedPalettes_closure4, M.MaterialPalette__orderedPalettes_closure5, M.MaterialPalette__orderedPalettes_closure6, M.MaterialPalette__orderedPalettes_closure7, M.MaterialPalette__orderedPalettes_closure8, M.MaterialPalette__orderedPalettes_closure9, M.MaterialPalette__orderedPalettes_closure10, V.Performance_time_closure, V.Performance_timeEnd_closure, G.ProxyGestureListener_onLongPress_closure, G.ProxyGestureListener_onTap_closure, G.ProxyGestureListener_onDragStart_closure, G.ProxyGestureListener_onDragUpdate_closure, G.ProxyGestureListener_onDragEnd_closure, G.ProxyGestureListener__cancel_closure, G.ProxyGestureListener__populateActiveListeners_closure, F.Series_Series_closure, F.Series_Series_closure0, F.Series_Series_closure1, X.BaseChart__updateBehaviors_closure, X.BaseChart__updateBehaviors_closure0, X.BaseChart__notACustomBehavior_closure, X.BaseChart__updateSelectionModel_closure, X.BaseChart__updateSelectionModel_closure0, X.BaseChart_getDesiredGestures_closure, X.BaseChart_getDesiredGestures_closure0, U.BaseChartState_requestRebuild_closure, U.BaseChartState_build_closure, U.BaseChartState_dispose_closure, U.BaseChartState__animationTick_closure, Y.BaseLegendContentBuilder_build_closure, M.SimpleLegendEntryLayout_makeTapUpCallback_closure, L.TabularLegendLayout_build_closure, L.TabularLegendLayout__buildTableFromRows_closure, L.TabularLegendLayout__buildTableFromRows_closure0, L.TabularLegendLayout__buildTableFromRows_closure1, Z._FlutterSeriesLegend_build_closure, V.LinePainter__drawDashedLine_closure, X.ChartContainerRenderObject_requestAnimation_startAnimationController, X.ChartContainerRenderObject_requestRebuild_doRebuild, K.ChartGestureDetector_makeWidget_closure, K.ChartGestureDetector_onTapDown_closure, M.getChartContainerRenderObject_closure, E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_set, E.WidgetLayoutDelegate__getBehaviorOffset__behaviorOffset_get, M.CanonicalizedMap_addAll_closure, M.CanonicalizedMap_entries_closure, M.CanonicalizedMap_forEach_closure, M.CanonicalizedMap_keys_closure, M.CanonicalizedMap_map_closure, M.CanonicalizedMap_putIfAbsent_closure, M.CanonicalizedMap_values_closure, M.DraggableScrollbar__thumbSemicircleBuilder_closure, M._DraggableScrollbarState_build_closure, M._DraggableScrollbarState_build__closure, M._DraggableScrollbarState_changePosition_closure, M._DraggableScrollbarState_changePosition__closure, M._DraggableScrollbarState__onVerticalDragStart_closure, M._DraggableScrollbarState__onVerticalDragUpdate_closure, M._DraggableScrollbarState__onVerticalDragEnd_closure, M._DraggableScrollbarState__onVerticalDragEnd_closure0, M.SlideFadeTransition_build_closure, Q.MemoryDirectory_createSync_closure, Q.MemoryDirectory_createTempSync_closure, Q.MemoryDirectory_createTempSync_closure0, Q.MemoryDirectory_createTempSync_name, T.MemoryFile__resolvedBackingOrCreate_closure, T.MemoryFile__resolvedBackingOrCreate_closure0, T.MemoryFile__doCreate_closure, T._FileSink__FileSink$fromFile__node_set, T._FileSink__FileSink$fromFile__node_get, T._FileSink__FileSink$fromFile_closure, T._FileSink_addStream_finish, T._FileSink_addStream_closure, T._FileSink_addStream_closure0, T._FileSink_close_closure, T._FileSink_close_closure0, T._FileSink__addData_closure, X._MemoryFileSystem_findNode_subpath, X._MemoryFileSystem_findNode_closure, U.MemoryFileSystemEntity_backing_closure, U.MemoryFileSystemEntity_resolvedBacking_closure, U.MemoryFileSystemEntity_resolvedBacking_closure0, U.MemoryFileSystemEntity_defaultCheckType_closure, U.MemoryFileSystemEntity_internalCreateSync_closure, B.resolveLinks_closure, S.ErrorCodes_EINVAL_closure, S.ErrorCodes_EISDIR_closure, S.ErrorCodes_ELOOP_closure, S.ErrorCodes_ENOENT_closure, S.ErrorCodes_ENOTDIR_closure, S.ErrorCodes_ENOTEMPTY_closure, G.FilePickerWeb_pickFiles_changeEventListener, G.FilePickerWeb_pickFiles_changeEventListener_addPickedFile, G.FilePickerWeb_pickFiles_changeEventListener_closure, G.FilePickerWeb_pickFiles_changeEventListener__closure, G.FilePickerWeb_pickFiles_changeEventListener__closure0, G.FilePickerWeb_pickFiles_cancelledEventListener, G.FilePickerWeb_pickFiles_cancelledEventListener_closure, G.FilePickerWeb__fileType_closure, E.CupertinoDynamicColor_toString_toString, D.CupertinoRouteTransitionMixin_buildPageTransitions_closure, D.CupertinoRouteTransitionMixin_buildPageTransitions_closure0, D._CupertinoBackGestureController_dragEnd__animationStatusCallback_set, D._CupertinoBackGestureController_dragEnd__animationStatusCallback_get, D._CupertinoBackGestureController_dragEnd_closure, D._CupertinoEdgeShadowDecoration_lerp_closure, D._CupertinoEdgeShadowDecoration_lerp_closure0, E._CupertinoScrollbarState_initState_closure, E._CupertinoScrollbarState_handleThumbPress_closure, N._CupertinoSwitchState__handleDragEnd_closure, N._RenderCupertinoSwitch_paint_closure, K.CupertinoThemeData_resolveFrom_convertColor, K.NoDefaultCupertinoThemeData_resolveFrom_convertColor, K._CupertinoThemeDefaults_resolveFrom_convertColor, U._testPlatform_closure, U._browserPlatform_closure, U.FlutterErrorDetails_summary_formatException, U.FlutterErrorDetails_summary_closure, U.FlutterErrorDetails_summary_closure0, U.FlutterErrorDetails_debugFillProperties_closure, U.FlutterError_FlutterError_closure, U.FlutterError_defaultStackFilter_closure, U.FlutterError_defaultStackFilter_closure0, U.FlutterError_toString_closure, U.debugPrintStack_closure, N.BindingBase_lockEvents_closure, N.BindingBase_registerBoolServiceExtension_closure, N.BindingBase_registerNumericServiceExtension_closure, N.BindingBase_registerServiceExtension_closure, N.BindingBase_registerServiceExtension_closure__result_set, N.BindingBase_registerServiceExtension__closure, N.BindingBase_registerServiceExtension_closure__result_get, B.ChangeNotifier_notifyListeners_closure, Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_set, Y._PrefixedStringBuilder__wordWrapLine__lastWordStart_get, Y._PrefixedStringBuilder__wordWrapLine_noWrap, Y.TextTreeRenderer__debugRender_visitor, Y.TextTreeRenderer__debugRender_closure, F.LicenseEntryWithLineBreaks_paragraphs_addLine, F.LicenseEntryWithLineBreaks_paragraphs_getParagraph, R.StackFrame_fromStackString_closure, O.SynchronousFuture_whenComplete_closure, D._GestureArena_toString_closure, D.GestureArenaManager_add_closure, D.GestureArenaManager__tryToResolveArena_closure, N.GestureBinding_dispatchEvent_closure, N.GestureBinding_dispatchEvent_closure0, K.ForcePressGestureRecognizer_handleEvent_closure, K.ForcePressGestureRecognizer_acceptGesture_closure, K.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure, T.LongPressGestureRecognizer__checkLongPressStart_closure, T.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure, T.LongPressGestureRecognizer__checkLongPressEnd_closure, O.DragGestureRecognizer__checkDown_closure, O.DragGestureRecognizer__checkStart_closure, O.DragGestureRecognizer__checkUpdate_closure, O.DragGestureRecognizer__checkEnd_closure, O.DragGestureRecognizer__checkEnd_closure0, O.DragGestureRecognizer__checkEnd_closure1, V.MultiDragGestureRecognizer_acceptGesture_closure, V.MultiDragGestureRecognizer__startDrag_closure, O.PointerRouter_addRoute_closure, O.PointerRouter__dispatchEventToRoutes_closure, S.PrimaryPointerGestureRecognizer_addAllowedPointer_closure, B.ScaleGestureRecognizer__reconfigure_closure, B.ScaleGestureRecognizer__reconfigure_closure0, B.ScaleGestureRecognizer__advanceStateMachine_closure, B.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure, N.TapGestureRecognizer_handleTapDown_closure, N.TapGestureRecognizer_handleTapDown_closure0, N.TapGestureRecognizer_handleTapUp_closure, N.TapGestureRecognizer_handleTapUp_closure0, V.GestureArenaTeam_add_closure, A.showLicensePage_closure, A._PackagesViewState_licenses_closure, A._PackagesViewState_licenses_closure0, A._PackagesViewState_build_closure, A._PackagesViewState_build__closure, A._PackagesViewState_build___closure, A._PackagesViewState__initDefaultDetailPage_closure, A._PackagesViewState__packagesList_closure, A._PackagesViewState__packagesList__closure, A._PackagesViewState__packagesList___closure, A._LicenseData_sortPackages_closure, A._PackageLicensePageState__initLicenses_closure, A._PackageLicensePageState__initLicenses_closure0, A._PackageLicensePageState_build_closure, A._MasterDetailFlowState_build_closure, A._MasterDetailFlowState__nestedUI_closure1, A._MasterDetailFlowState__nestedUI_closure, A._MasterDetailFlowState__nestedUI_closure0, A._MasterDetailFlowState__masterPageRoute_closure, A._MasterDetailFlowState__masterPageRoute__closure, A._MasterDetailFlowState__detailPageRoute_closure, A._MasterDetailFlowState__detailPageRoute__closure, A._MasterDetailFlowState__lateralUI_closure1, A._MasterDetailFlowState__lateralUI_closure0, A._MasterDetailFlowState__lateralUI_closure, A._MasterDetailScaffoldState_openDetailPage_closure, A._MasterDetailScaffoldState_setInitialDetailPage_closure, A._MasterDetailScaffoldState_build_closure, A._MasterDetailScaffoldState_build__closure, A._DetailView_build_closure, S.MaterialApp_createMaterialHeroController_closure, S._MaterialAppState__buildWidgetApp_closure, D.MaterialPointArcTween__initialize_sweepAngle, D._maxBy__maxValue_set, D._maxBy__maxValue_get, D.MaterialRectArcTween__initialize_closure, R.BackButton_build_closure, Z._RawMaterialButtonState__handleHighlightChanged_closure, Z._RawMaterialButtonState__handleHoveredChanged_closure, Z._RawMaterialButtonState__handleFocusedChanged_closure, Z._RenderInputPadding_hitTest_closure, K._ButtonStyleState__handleHighlightChanged_closure, K._ButtonStyleState__handleHoveredChanged_closure, K._ButtonStyleState__handleFocusedChanged_closure, K._ButtonStyleState_build_effectiveValue, K._ButtonStyleState_build_resolve, K._ButtonStyleState_build_resolve_closure, K._ButtonStyleState_build_closure, K._ButtonStyleState_build_closure0, K._ButtonStyleState_build_closure1, K._ButtonStyleState_build_closure2, K._ButtonStyleState_build_closure3, K._ButtonStyleState_build_closure4, K._ButtonStyleState_build_closure5, K._ButtonStyleState_build_closure6, K._ButtonStyleState_build_closure7, K._ButtonStyleState_build_closure8, K._ButtonStyleState_build_closure16, K._ButtonStyleState_build__closure0, K._ButtonStyleState_build_closure17, K._ButtonStyleState_build__closure, K._ButtonStyleState_build_closure9, K._ButtonStyleState_build_closure10, K._ButtonStyleState_build_closure11, K._ButtonStyleState_build_closure12, K._ButtonStyleState_build_closure13, K._ButtonStyleState_build_closure14, K._ButtonStyleState_build_closure15, K._ButtonStyleState_build__closure1, K._RenderInputPadding_hitTest_closure0, Q._CalendarDatePickerState__handleModeChanged_closure, Q._CalendarDatePickerState__handleMonthChanged_closure, Q._CalendarDatePickerState__handleYearChanged_closure, Q._CalendarDatePickerState__handleDayChanged_closure, Q._CalendarDatePickerState_build_closure, Q._MonthPickerState_didUpdateWidget_closure, Q._MonthPickerState__handleMonthPageChanged_closure, Q._MonthPickerState__handleGridFocusChange_closure, Q._MonthPickerState__handleDirectionFocus_closure, Q._DayPickerState_build_closure, Q._YearPickerState__buildYearItem_closure, K._CheckboxState__widgetFillColor_closure, K._CheckboxState__defaultFillColor_closure, K._CheckboxState_build_closure, S.DataTable_build_closure3, S.DataTable_build_closure, S.DataTable_build_closure0, S.DataTable_build_closure1, S.DataTable_build_closure2, S.DataTable_build_closure4, S.DataTable_build_closure5, S.DataTable_build_closure6, S.DataTable_build_closure7, S.TableRowInkWell_getRectCallback_closure, S._SortArrowState__rebuild_closure, K.showDatePicker_closure, K._DatePickerDialogState__handleOk_closure, K._DatePickerDialogState__handleEntryModeToggle_closure, K._DatePickerDialogState__handleDateChanged_closure, K._DatePickerDialogState_build_calendarDatePicker, K._DatePickerDialogState_build_inputDatePicker, K._DatePickerDialogState_build_closure, K.__DatePickerDialogState_State_RestorationMixin_dispose_closure, E.DialogRoute_closure, Z.DrawerControllerState__animationChanged_closure, K._DropdownMenuState_build_closure, K._DropdownRoute_buildPage_closure, K._DropdownRoute_getItemOffset_closure, K._DropdownRoute_getMenuLimits_closure, K._DropdownRoutePage_build_closure, K._DropdownButtonState_initState_closure, K._DropdownButtonState_initState_closure0, K._DropdownButtonState__handleFocusChanged_closure, K._DropdownButtonState__handleFocusHighlightModeChange_closure, K._DropdownButtonState__updateSelectedIndex_closure, K._DropdownButtonState__handleTap_closure, K._DropdownButtonState__handleTap_closure0, K._DropdownButtonState_build_closure, K.DropdownButtonFormField_closure, K.DropdownButtonFormField__closure, D._ExpansionPanelListState_build_closure, M.Feedback_wrapForTap_closure, O._getClipCallback_closure, U._getClipCallback_closure0, R._InkResponseState_highlightsExist_closure, R._InkResponseState_updateHighlight_handleInkRemoval, R._InkResponseState__createInkFeature_onRemoved, R._InkResponseState__handleFocusHighlightModeChange_closure, U._InputDatePickerFormFieldState_didUpdateWidget_closure, U._InputDatePickerFormFieldState_didUpdateWidget__closure, L._HelperErrorState__handleChange_closure, L._RenderDecoration_debugDescribeChildren_add, L._RenderDecoration_performLayout_centerLayout, L._RenderDecoration_performLayout_baselineLayout, L._RenderDecoration_paint_doPaint, L._RenderDecoration_hitTestChildren_closure, L._InputDecoratorState__handleChange_closure, Q.ListTileTheme_merge_closure, Q._RenderListTile_debugDescribeChildren_add, Q._RenderListTile_paint_doPaint, Q._RenderListTile_hitTestChildren_closure, M._MaterialState_build_closure, M._MaterialInteriorState_forEachTween_closure, M._MaterialInteriorState_forEachTween_closure0, M._MaterialInteriorState_forEachTween_closure1, B._MergeableMaterialState__handleTick_closure, B._MergeableMaterialState_didUpdateWidget_closure, B._MergeableMaterialState_didUpdateWidget_closure0, K._ZoomPageTransition_build_closure, K._ZoomPageTransition_build_closure0, K._ZoomPageTransition_build_closure1, K._ZoomPageTransition_build_closure2, K._ZoomEnterTransition_build_closure, K.PageTransitionsTheme__all_closure, R.PaginatedDataTableState__handleDataSourceChanged_closure, R.PaginatedDataTableState_pageTo_closure, R.PaginatedDataTableState__getBlankRowFor_closure, R.PaginatedDataTableState__getProgressIndicatorRowFor_closure, R.PaginatedDataTableState__getRows_closure, R.PaginatedDataTableState_build_closure, Z._PopupMenu_build_closure, Z._PopupMenu_build_closure0, Z._PopupMenuRoute_buildPage_closure, Z.PopupMenuButtonState_showButtonMenu_closure, U._LinearProgressIndicatorPainter_paint_drawBar, U._LinearProgressIndicatorState_build_closure, U._CircularProgressIndicatorState__buildAnimation_closure, Y._RadioState__widgetFillColor_closure, Y._RadioState__defaultFillColor_closure, Y._RadioState_build_closure, G.RadioListTile_build_closure, N.RefreshIndicatorState__handleScrollNotification_closure, N.RefreshIndicatorState__dismiss_closure, N.RefreshIndicatorState__dismiss_closure0, N.RefreshIndicatorState__show_closure, N.RefreshIndicatorState__show__closure, N.RefreshIndicatorState__show__closure0, N.RefreshIndicatorState_build_closure, Z.ReorderableListView_closure, Z._ReorderableListViewState__wrapWithSemantics_reorder, Z._ReorderableListViewState__wrapWithSemantics_moveToStart, Z._ReorderableListViewState__wrapWithSemantics_moveToEnd, Z._ReorderableListViewState__wrapWithSemantics_moveBefore, Z._ReorderableListViewState__wrapWithSemantics_moveAfter, Z._ReorderableListViewState__proxyDecorator_closure, Z._ReorderableListViewState_build__listPadding_set, Z._ReorderableListViewState_build__outerPadding_set, Z._ReorderableListViewState_build__outerPadding_get, Z._ReorderableListViewState_build__listPadding_get, M.ScaffoldMessengerState_hideCurrentSnackBar_closure, M._ScaffoldLayout_performLayout__floatingActionButtonRect_set, M._ScaffoldLayout_performLayout__floatingActionButtonRect_get, M._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure, M.ScaffoldState__drawerOpenedCallback_closure, M.ScaffoldState__endDrawerOpenedCallback_closure, M.ScaffoldState_hideCurrentSnackBar_closure, M.ScaffoldState__updateSnackBar_closure, M.ScaffoldState__buildBottomSheet__bottomSheet_set, M.ScaffoldState__buildBottomSheet__bottomSheet_get, M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet, M.ScaffoldState__buildBottomSheet__removeCurrentBottomSheet_closure, M.ScaffoldState__buildBottomSheet_closure, M.ScaffoldState__buildBottomSheet_closure0, M.ScaffoldState__buildBottomSheet_closure1, M.ScaffoldState__buildBottomSheet__closure, M.ScaffoldState_showBottomSheet_closure, M.ScaffoldState__moveFloatingActionButton_closure, M.ScaffoldState_showBodyScrim_closure, M.ScaffoldState_build_closure, M._StandardBottomSheetState_build_closure, M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, E._MaterialScrollbarState__thumbColor__dragColor_set, E._MaterialScrollbarState__thumbColor__hoverColor_set, E._MaterialScrollbarState__thumbColor__idleColor_set, E._MaterialScrollbarState__thumbColor__dragColor_get, E._MaterialScrollbarState__thumbColor__hoverColor_get, E._MaterialScrollbarState__thumbColor__idleColor_get, E._MaterialScrollbarState__thumbColor_closure, E._MaterialScrollbarState__trackColor_closure, E._MaterialScrollbarState__trackBorderColor_closure, E._MaterialScrollbarState__thickness_closure, E._MaterialScrollbarState_initState_closure, E._MaterialScrollbarState_handleThumbPressStart_closure, E._MaterialScrollbarState_handleThumbPressEnd_closure, E._MaterialScrollbarState_handleHover_closure, E._MaterialScrollbarState_handleHover_closure0, E._MaterialScrollbarState_handleHoverExit_closure, O._SelectableTextState__onControllerChanged_closure, O._SelectableTextState__handleSelectionChanged_closure, O._SelectableTextState_build_closure, N._MaterialSwitchState__widgetThumbColor_closure, N._MaterialSwitchState__defaultThumbColor_closure, N._MaterialSwitchState__widgetTrackColor_closure, N._MaterialSwitchState__defaultTrackColor_closure, N._MaterialSwitchState__handleDragEnd_closure, N._MaterialSwitchState_build_closure, O.SwitchListTile_build_closure, U.TabController__changeIndex_closure, E._TabBarState_initState_closure, E._TabBarState__handleTabControllerTick_closure, E._TabBarState_build_closure, E._TabBarViewState__warpToCurrentIndex_closure, E._TabBarViewState__warpToCurrentIndex_closure0, Z._TextFieldState__handleSelectionChanged_closure, Z._TextFieldState__handleHover_closure, Z._TextFieldState_build_closure, Z._TextFieldState_build_closure0, Z._TextFieldState_build_closure1, Z._TextFieldState_build_closure2, Z._TextFieldState_build_closure3, Z._TextFieldState_build__closure, Z.__TextFieldState_State_RestorationMixin_dispose_closure, E.TextFormField_closure, E.TextFormField_closure_onChangedHandler, K._AnimatedThemeState_forEachTween_closure, X.ThemeData_localize_closure, Z.TimeOfDay_toString__addLeadingZeroIfNeeded, M._HourMinuteControl_build_closure, M._HourMinuteControl_build_closure0, M._HourControl_build_hoursFromSelected, M._HourControl_build_closure1, M._HourControl_build_closure0, M._HourControl_build_closure, M._MinuteControl_build_closure1, M._MinuteControl_build_closure0, M._MinuteControl_build_closure, M._DayPeriodControl_build_closure, M._DayPeriodControl_build_closure0, M._DayPeriodControl_build_closure1, M._DayPeriodControl_build_closure2, M._RenderInputPadding_hitTest_closure1, M._DialPainter_paint_getOffsetForTheta, M._DialPainter_paint_paintLabels, M._DialState_initState_closure, M._DialState_initState__closure, M._DialState__updateThetaForPan_closure, M._DialState__build24HourRing_closure, M._DialState__build12HourRing_closure, M._DialState__buildMinutes_closure, M._TimePickerInputState__validateHour_closure, M._TimePickerInputState__validateMinute_closure, M._HourMinuteTextFieldState_initState_closure, M._HourMinuteTextFieldState_initState__closure, M._HourMinuteTextFieldState_build_closure, M._TimePickerDialogState__vibrate_closure, M._TimePickerDialogState__handleModeChanged_closure, M._TimePickerDialogState__handleEntryModeToggle_closure, M._TimePickerDialogState__handleTimeChanged_closure, M._TimePickerDialogState__handleHourSelected_closure, M._TimePickerDialogState__handleOk_closure, M.showTimePicker_closure, E.ToggleButtons_build_closure, E.ToggleButtons_build__closure, F.ToggleableStateMixin__handleTapDown_closure, F.ToggleableStateMixin__handleTapEnd_closure, F.ToggleableStateMixin__handleFocusHighlightChanged_closure, F.ToggleableStateMixin__handleHoverChanged_closure, S._TooltipState__handleMouseTrackerChange_closure, S._TooltipState__createNewEntry_closure, S._TooltipState_build_closure, S._TooltipState_build_closure0, D.NetworkImage__loadAsync_closure, Y._CompoundBorder_dimensions_closure, Y._CompoundBorder_scale_closure, Y._CompoundBorder_toString_closure, Z.ClipContext_clipPathAndPaint_closure, Z.ClipContext_clipRRectAndPaint_closure, Z.ClipContext_clipRectAndPaint_closure, X.paintImage_closure, E.ImageCache__trackLiveImage_closure, E.ImageCache__trackLiveImage__closure, E.ImageCache_putIfAbsent_listener, E._CachedImageBase_dispose_closure, E._LiveImage_closure, M.ImageProvider_resolve_closure, M.ImageProvider_resolve_closure0, M.ImageProvider__createErrorHandlerAndKey_handleError, M.ImageProvider__createErrorHandlerAndKey_closure, M.ImageProvider__createErrorHandlerAndKey_closure0, M.ImageProvider__createErrorHandlerAndKey__closure, M.ImageProvider_resolveStreamForKey_closure, M.ImageProvider_resolveStreamForKey_closure0, L.AssetImage_obtainKey_closure, L.AssetImage_obtainKey_closure0, L.ImageStreamCompleter_reportError_closure, L.ImageStreamCompleter_reportImageChunkEvent_closure, L.MultiFrameImageStreamCompleter_closure, L.MultiFrameImageStreamCompleter_closure0, L.MultiFrameImageStreamCompleter__handleAppFrame_closure, G.InlineSpan_getSpanForPosition_closure, G.InlineSpan_codeUnitAt_closure, V._ShapeDecorationPainter__precache_closure, V._ShapeDecorationPainter__precache_closure0, Q.TextSpan_debugDescribeChildren_closure, A.TextStyle_fontFamilyFallback_closure, F.RenderAnimatedSize_closure, N.RendererBinding__scheduleMouseTrackerUpdate_closure, S.BoxConstraints_toString_describe, S.RenderBox__computeIntrinsicDimension_closure, S.RenderBox_getDryLayout_closure, S.RenderBox_getDistanceToActualBaseline_closure, S.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure, V.RenderCustomPaint__updateSemanticsChildren__oldKeyedChildren_set, D.RenderEditable_nextCharacter_closure, D.RenderEditable_extendSelectionDown__nextSelection_set, D.RenderEditable_extendSelectionDown__nextSelection_get, D.RenderEditable_extendSelectionLeftByLine__nextSelection_set, D.RenderEditable_extendSelectionLeftByLine__nextSelection_get, D.RenderEditable_extendSelectionRightByLine__nextSelection_set, D.RenderEditable_extendSelectionRightByLine__nextSelection_get, D.RenderEditable_extendSelectionUp__nextSelection_set, D.RenderEditable_extendSelectionUp__nextSelection_get, D.RenderEditable_expandSelectionLeftByLine__nextSelection_set, D.RenderEditable_expandSelectionLeftByLine__nextSelection_get, D.RenderEditable_expandSelectionRightByLine__nextSelection_set, D.RenderEditable_expandSelectionRightByLine__nextSelection_get, D.RenderEditable_moveSelectionDown__nextSelection_set, D.RenderEditable_moveSelectionDown__nextSelection_get, D.RenderEditable_moveSelectionUp__nextSelection_set, D.RenderEditable_moveSelectionUp__nextSelection_get, D.RenderEditable_describeSemanticsConfiguration_closure, D.RenderEditable_getRectForComposingRange_closure, D.RenderEditable_selectWordEdge__newSelection_set, D.RenderEditable_selectWordEdge__newSelection_get, F.RenderFlex__getIntrinsicSize__crossSize_set, F.RenderFlex__getIntrinsicSize__mainSize_set, F.RenderFlex__getIntrinsicSize__mainSize_get, F.RenderFlex__getIntrinsicSize__crossSize_get, F.RenderFlex_computeMinIntrinsicWidth_closure, F.RenderFlex_computeMaxIntrinsicWidth_closure, F.RenderFlex_computeMinIntrinsicHeight_closure, F.RenderFlex_computeMaxIntrinsicHeight_closure, F.RenderFlex__computeSizes__minChildExtent_set, F.RenderFlex__computeSizes__minChildExtent_get, F.RenderFlex_performLayout__betweenSpace_set, F.RenderFlex_performLayout__leadingSpace_set, F.RenderFlex_performLayout__leadingSpace_get, F.RenderFlex_performLayout__betweenSpace_get, R.RenderListBody_computeMinIntrinsicWidth_closure, R.RenderListBody_computeMinIntrinsicWidth_closure0, R.RenderListBody_computeMaxIntrinsicWidth_closure, R.RenderListBody_computeMaxIntrinsicWidth_closure0, R.RenderListBody_computeMinIntrinsicHeight_closure, R.RenderListBody_computeMinIntrinsicHeight_closure0, R.RenderListBody_computeMaxIntrinsicHeight_closure, R.RenderListBody_computeMaxIntrinsicHeight_closure0, A.MouseTracker__handleDeviceUpdate_closure, A.MouseTracker_updateWithEvent_closure, A.MouseTracker_updateWithEvent__closure, A.MouseTracker_updateAllDevices_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure0, K.PaintingContext_pushClipRect_closure, K.PaintingContext_pushClipRRect_closure, K.PaintingContext_pushClipPath_closure, K.PipelineOwner_flushLayout_closure, K.PipelineOwner_flushCompositingBits_closure, K.PipelineOwner_flushPaint_closure, K.PipelineOwner_flushSemantics_closure, K.RenderObject__debugReportException_closure, K.RenderObject_invokeLayoutCallback_closure, K.RenderObject__updateCompositingBits_closure, K.RenderObject_clearSemantics_closure, K.RenderObject__getSemanticsForParent_closure, Q.RenderParagraph__extractPlaceholderSpans_closure, Q.RenderParagraph_hitTestChildren__hitText_set, Q.RenderParagraph_hitTestChildren__hitText_get, Q.RenderParagraph_hitTestChildren_closure, Q.RenderParagraph_paint_closure, Q.RenderParagraph_describeSemanticsConfiguration_closure, G._factoriesTypeSet_closure, G._PlatformViewGestureRecognizer_closure, E.RenderTransform_hitTestChildren_closure, E.RenderFittedBox_hitTestChildren_closure, E.RenderFractionalTranslation_hitTestChildren_closure, E.RenderFollowerLayer_hitTestChildren_closure, T.RenderShiftedBox_hitTestChildren_closure, G.RenderSliverHelpers_hitTestBoxChild_closure, U.RenderSliverList_performLayout_advance, F.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure, F.RenderSliverMultiBoxAdaptor_collectGarbage_closure, F.RenderSliverMultiBoxAdaptor_collectGarbage__closure, U.RenderSliverPersistentHeader_layoutChild_closure, K.RenderStack_computeMinIntrinsicWidth_closure, K.RenderStack_computeMaxIntrinsicWidth_closure, K.RenderStack_computeMinIntrinsicHeight_closure, K.RenderStack_computeMaxIntrinsicHeight_closure, K.RenderStack_layoutPositionedChild__x_set, K.RenderStack_layoutPositionedChild__y_set, K.RenderStack_layoutPositionedChild__x_get, K.RenderStack_layoutPositionedChild__y_get, K.RenderIndexedStack_hitTestChildren_closure, S.RenderTable_computeDryLayout_closure, S.RenderTable_hitTestChildren_closure, Q.RenderViewportBase_visitChildrenForSemantics_closure, Q.RenderViewportBase_hitTestChildren_closure, N._TaskEntry_run_closure, N.SchedulerBinding_endOfFrame_closure, N.SchedulerBinding_scheduleWarmUpFrame_closure, N.SchedulerBinding_scheduleWarmUpFrame_closure0, N.SchedulerBinding_scheduleWarmUpFrame_closure1, N.SchedulerBinding__handleDrawFrame_closure, N.SchedulerBinding_handleBeginFrame_closure, M.TickerFuture_whenCompleteOrCancel_thunk, A.SemanticsNode_getSemanticsData_closure, A.SemanticsNode__childrenInTraversalOrder_closure, A.SemanticsNode_debugDescribeChildren_closure, A._SemanticsSortGroup_sortedWithinVerticalGroup_closure, A._SemanticsSortGroup_sortedWithinKnot_closure, A._SemanticsSortGroup_sortedWithinKnot_search, A._SemanticsSortGroup_sortedWithinKnot_closure0, A._SemanticsSortGroup_sortedWithinKnot_closure1, A._childrenInDefaultOrder_closure, A.SemanticsOwner_sendSemanticsUpdate_closure, A.SemanticsOwner_sendSemanticsUpdate_closure0, A.SemanticsOwner_sendSemanticsUpdate_closure1, 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, Q.CachingAssetBundle_loadStructuredData_closure, F._AutofillScopeTextInputConfiguration_toJson_closure, F.AutofillScopeMixin_attach_closure, N.ServicesBinding__addLicenses_closure, N.ServicesBinding__addLicenses_closure0, N._DefaultBinaryMessenger__sendPlatformMessage_closure, N._DefaultBinaryMessenger_setMessageHandler_closure, U.StandardMessageCodec_writeValue_closure, A.BasicMessageChannel_setMessageHandler_closure, A.MethodChannel_setMethodCallHandler_closure, A.EventChannel_receiveBroadcastStream__controller_set, A.EventChannel_receiveBroadcastStream__controller_get, A.EventChannel_receiveBroadcastStream_closure, A.EventChannel_receiveBroadcastStream__closure, A.EventChannel_receiveBroadcastStream_closure0, K.RestorationManager_handleRestorationUpdateFromEngine_closure, K.RestorationManager_scheduleSerializationFor_closure, K.RestorationBucket__rawChildren_closure, K.RestorationBucket__rawValues_closure, K.RestorationBucket__addChildData_closure, K.RestorationBucket__visitChildren_closure, X.SystemChrome_setSystemUIOverlayStyle_closure, B.FilteringTextInputFormatter_formatEditUpdate_closure, B.FilteringTextInputFormatter_formatEditUpdate__closure, B.FilteringTextInputFormatter_formatEditUpdate__closure0, N.TextInput__scheduleHide_closure, U._getParent__parent_set, U._getParent__parent_get, U._getParent_closure, U.Actions__findDispatcher_closure, U.Actions_maybeFind_closure, U._ActionsState__handleActionChanged_closure, U._FocusableActionDetectorState_initState_closure, U._FocusableActionDetectorState__updateHighlightMode_closure, U._FocusableActionDetectorState__handleMouseEnter_closure, U._FocusableActionDetectorState__handleMouseExit_closure, U._FocusableActionDetectorState__handleFocusChange_closure, U._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight, U._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus, U._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight, U._FocusableActionDetectorState_didUpdateWidget_closure, U._AnimatedCrossFadeState_initState_closure, U._AnimatedCrossFadeState_initState__closure, G._AnimatedSwitcherState__newEntry_closure, G._AnimatedSwitcherState__newEntry__closure, G._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure, S._WidgetsAppState__onGenerateRoute_closure, S._WidgetsAppState_didChangeLocales_closure, S._WidgetsAppState_build_closure, S._MediaQueryFromWindowsState_didChangeMetrics_closure, S._MediaQueryFromWindowsState_didChangePlatformBrightness_closure, B._StreamBuilderBaseState__subscribe_closure, B._StreamBuilderBaseState__subscribe__closure1, B._StreamBuilderBaseState__subscribe_closure1, B._StreamBuilderBaseState__subscribe__closure, B._StreamBuilderBaseState__subscribe_closure0, B._StreamBuilderBaseState__subscribe__closure0, B._FutureBuilderState__subscribe_closure, B._FutureBuilderState__subscribe__closure0, B._FutureBuilderState__subscribe_closure0, B._FutureBuilderState__subscribe__closure, S._RawAutocompleteState__updateOverlay_closure, S._RawAutocompleteState_initState_closure, S._RawAutocompleteState_didUpdateWidget_closure, F.AutofillGroupState_autofillClients_closure, F.AutofillGroupState_register_closure, L._AutomaticKeepAliveState__addClient_closure, L._AutomaticKeepAliveState__getChildElement_closure, L._AutomaticKeepAliveState__createCallback_closure, L._AutomaticKeepAliveState__createCallback__closure, L._AutomaticKeepAliveState__createCallback__closure0, L._AutomaticKeepAliveState__createCallback___closure, T.RichText__extractChildren_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_dispatchEvent_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure_markElementsDirty, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure, N.WidgetsBinding_scheduleAttachRootWidget_closure, N.RenderObjectToWidgetAdapter_attachToRenderTree_closure, N.RenderObjectToWidgetAdapter_attachToRenderTree_closure0, S._DraggableScrollableSheetState__setExtent_closure, S._DraggableScrollableSheetState_build_closure, S._DraggableScrollableSheetScrollPosition_goBallistic__tick, D.EditableTextState_initState_closure, D.EditableTextState_didChangeDependencies_closure, D.EditableTextState__scheduleShowCaretOnScreen_closure, D.EditableTextState__formatAndSetValue_closure, D.EditableTextState__cursorTick_closure, D.EditableTextState__didChangeTextEditingValue_closure, D.EditableTextState__updateSizeAndTransform_closure, D.EditableTextState__updateComposingRectIfNeeded_closure, D.EditableTextState__updateCaretRectIfNeeded_closure, D.EditableTextState_showAutocorrectionPromptRect_closure, D.EditableTextState__semanticsOnCopy_closure, D.EditableTextState__semanticsOnCut_closure, D.EditableTextState__semanticsOnPaste_closure, D.EditableTextState_build_closure, O.FocusNode_traversalDescendants_closure, O.FocusNode_debugDescribeChildren_closure, L._FocusState__handleFocusChanged_closure, L._FocusState__handleFocusChanged_closure0, L._FocusState__handleFocusChanged_closure1, U._getAncestor_closure, U.FocusTraversalPolicy__sortAllDescendants_visitGroups, U.FocusTraversalPolicy__sortAllDescendants_closure, U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure, U.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0, U.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1, U.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure0, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure1, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure2, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure3, U.DirectionalFocusTraversalPolicyMixin_inDirection_closure4, U._ReadingOrderSortData_commonDirectionalityOf_closure, U._ReadingOrderSortData_sortWithDirectionality_closure, U._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors, U._ReadingOrderDirectionalGroupData_rect_closure, U._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure, U.ReadingOrderTraversalPolicy__pickNext_closure, U.ReadingOrderTraversalPolicy__pickNext_inBand, U.ReadingOrderTraversalPolicy__pickNext_inBand_closure, A.FormState__fieldDidChange_closure, A.FormState__forceRebuild_closure, A.FormFieldState_validate_closure, A.FormFieldState_didChange_closure, N._InactiveElements__unmount_closure, N.BuildOwner_buildScope_closure, N.BuildOwner_finalizeTree_closure, N.Element_renderObject_visit, N.Element_updateSlotForChild_visit, N.Element__updateDepth_closure, N.Element_detachRenderObject_closure, N.Element_attachRenderObject_closure, N.Element_debugDescribeChildren_closure, N.ComponentElement_performRebuild_closure, N.ComponentElement_performRebuild_closure0, N.ParentDataElement__applyParentData_applyParentDataToChild, N.RenderObjectElement_updateChildren_replaceWithNullIfForgotten, N.RenderObjectElement_updateChildren_slotFor, N.MultiChildRenderObjectElement_children_closure, D.GestureDetector_build_closure, D.GestureDetector_build_closure0, D.GestureDetector_build_closure1, D.GestureDetector_build_closure2, D.GestureDetector_build_closure3, D.GestureDetector_build_closure4, D.GestureDetector_build_closure5, D.GestureDetector_build_closure6, D.GestureDetector_build_closure7, D.GestureDetector_build_closure8, D.GestureDetector_build_closure9, D.GestureDetector_build_closure10, D.GestureDetector_build_closure11, D.GestureDetector_build_closure12, D._DefaultSemanticsGestureDelegate__getTapHandler_closure, D._DefaultSemanticsGestureDelegate__getLongPressHandler_closure, D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure, D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0, D._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1, D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure, D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0, D._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1, T.Hero__allHeroesFor_inviteHero, T.Hero__allHeroesFor_visitor, T._HeroState_startFlight_closure, T._HeroState_endFlight_closure, T._HeroFlight__buildOverlay_closure, T._HeroFlight__handleAnimationUpdate_delayedPerformAnimtationUpdate, T.HeroController_didStopUserGesture_isInvalidFlight, T.HeroController__maybeStartHeroTransition_closure, Y.IconTheme_merge_closure, U._ImageState__getListener_closure, U._ImageState__getListener__closure, U._ImageState__handleImageFrame_closure, U._ImageState__handleImageChunk_closure, U._ImageState__updateSourceStream_closure, U._ImageState__updateSourceStream_closure0, G.ImplicitlyAnimatedWidgetState_initState_closure, G.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure, G.ImplicitlyAnimatedWidgetState__constructTweens_closure, G.AnimatedWidgetBaseState__handleAnimationChanged_closure, G._AnimatedContainerState_forEachTween_closure, G._AnimatedContainerState_forEachTween_closure0, G._AnimatedContainerState_forEachTween_closure1, G._AnimatedContainerState_forEachTween_closure2, G._AnimatedContainerState_forEachTween_closure3, G._AnimatedContainerState_forEachTween_closure4, G._AnimatedContainerState_forEachTween_closure5, G._AnimatedContainerState_forEachTween_closure6, G._AnimatedPaddingState_forEachTween_closure, G._AnimatedOpacityState_forEachTween_closure, G._AnimatedDefaultTextStyleState_forEachTween_closure, G._AnimatedPhysicalModelState_forEachTween_closure, G._AnimatedPhysicalModelState_forEachTween_closure0, G._AnimatedPhysicalModelState_forEachTween_closure1, G._AnimatedPhysicalModelState_forEachTween_closure2, M.InheritedTheme_capture__debugDidFindAncestor_set, M.InheritedTheme_capture_closure, A._LayoutBuilderElement__layout_closure, A._LayoutBuilderElement__layout__closure, A._LayoutBuilderElement__layout__closure0, L._loadAll_closure, L._loadAll_closure0, L._loadAll_closure1, L._LocalizationsState_load_closure, L._LocalizationsState_load_closure0, L._LocalizationsState_load__closure, X.ModalBarrier_build_handleDismiss, X.ModalBarrier_build_closure, K.Route_didPush_closure, K.Route_didAdd_closure, K.Route_isCurrent_closure, K.Route_isCurrent_closure0, K.Route_isFirst_closure, K.Route_isFirst_closure0, K.Route_isActive_closure, K.Route_isActive_closure0, K.Navigator_defaultGenerateInitialRoutes_closure, K._RouteEntry_handlePush_closure, K._RouteEntry_dispose_closure, K._RouteEntry_dispose__listener_set, K._RouteEntry_dispose__listener_get, K._RouteEntry_dispose_closure0, K._RouteEntry_isRoutePredicate_closure, K.NavigatorState_restoreState_closure, K.NavigatorState__flushHistoryUpdates_closure, K.NavigatorState__flushHistoryUpdates_closure0, K.NavigatorState__afterNavigation_closure, K.NavigatorState_maybePop_closure, K.NavigatorState_maybePop_closure0, K.NavigatorState_maybePop_closure1, K.NavigatorState_maybePop_closure2, K.NavigatorState_removeRoute_closure, K.NavigatorState_removeRoute_closure0, K.NavigatorState__cancelActivePointers_closure, K._HistoryProperty_fromPrimitives_closure, K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, E._RenderOverflowBar_performLayout_nextChild, E._RenderOverflowBar_performLayout_nextChild0, X.OverlayEntry_remove_closure, X._OverlayEntryWidgetState__markNeedsBuild_closure, X.OverlayState_insert_closure, X.OverlayState_insertAll_closure, X.OverlayState_rearrange_closure, X.OverlayState__markDirty_closure, X.OverlayState__didChangeEntryOpacity_closure, X._RenderTheatre_computeMinIntrinsicWidth_closure, X._RenderTheatre_computeMaxIntrinsicWidth_closure, X._RenderTheatre_computeMinIntrinsicHeight_closure, X._RenderTheatre_computeMaxIntrinsicHeight_closure, X._RenderTheatre_hitTestChildren_closure, L._GlowController_pull_closure, S.PageStorageBucket__allKeys_closure, D._PageViewState_build_closure0, D._PageViewState_build_closure, G.HtmlElementView_build_closure, G.HtmlElementView__createHtmlElementView_closure, G._PlatformViewLinkState__onPlatformViewCreated_closure, Z.SliverReorderableListState_startItemDragReorder_closure, Z.SliverReorderableListState__dragUpdate_closure, Z.SliverReorderableListState__dragEnd_closure, Z.SliverReorderableListState__dragReset_closure, Z._ReorderableItemState_dragging_closure, Z._ReorderableItemState_updateForGap_closure, Z._ReorderableItemState_rebuild_closure, Z.ReorderableDragStartListener_build_closure, Z._DragInfo_startDrag_closure, Z._DragItemProxy_build_closure, K._RootRestorationScopeState__loadRootBucketIfNecessary_closure, K._RootRestorationScopeState__loadRootBucketIfNecessary__closure, K.RestorationMixin_registerForRestoration_listener, K.__RestorationScopeState_State_RestorationMixin_dispose_closure, T.TransitionRoute__updateSecondaryAnimation__jumpOnAnimationEnd, T.TransitionRoute__updateSecondaryAnimation_closure, T.TransitionRoute__updateSecondaryAnimation_closure0, T.TransitionRoute__setSecondaryAnimation_closure, T.LocalHistoryRoute_removeLocalHistoryEntry_closure, T._ModalScopeState__forceRebuildPage_closure, T._ModalScopeState_build_closure, T._ModalScopeState_build_closure0, T._ModalScopeState_build__closure0, T._ModalScopeState_build___closure, T._ModalScopeState_build__closure, T.ModalRoute_offstage_closure, T.ModalRoute_changedInternalState_closure, Y.ScrollAwareImageProvider_resolveStreamForKey_closure, Y.ScrollAwareImageProvider_resolveStreamForKey__closure, K.ScrollBehavior_velocityTrackerBuilder_closure, K.ScrollBehavior_velocityTrackerBuilder_closure0, A.ScrollPosition_forcePixels_closure, B.ScrollView_build_closure, B.ScrollView_build_closure0, B.ListView$separated_closure, B.ListView$separated_closure0, F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, F.ScrollableState_setCanDrag_closure, F.ScrollableState_setCanDrag_closure0, F.ScrollableState_setCanDrag_closure1, F.ScrollableState_setCanDrag_closure2, E.RawScrollbarState__maybeTriggerScrollbar_closure, E.RawScrollbarState__maybeStartFadeoutTimer_closure, E.RawScrollbarState__gestures_closure, E.RawScrollbarState__gestures_closure0, E.RawScrollbarState__gestures__closure, E.RawScrollbarState__gestures__closure0, E.RawScrollbarState__gestures__closure1, E.RawScrollbarState__gestures_closure1, E.RawScrollbarState__gestures_closure2, E.RawScrollbarState_build_closure0, E.RawScrollbarState_build_closure, E.SingleChildScrollView_build_closure, E._RenderSingleChildViewport_paint_paintContents, E._RenderSingleChildViewport_hitTestChildren_closure, G.SliverMultiBoxAdaptorElement_performRebuild_processElement, G.SliverMultiBoxAdaptorElement_performRebuild_closure, G.SliverMultiBoxAdaptorElement_performRebuild_closure0, G.SliverMultiBoxAdaptorElement_createChild_closure, G.SliverMultiBoxAdaptorElement_removeChild_closure, U._SliverPersistentHeaderElement__build_closure, S.Table_closure, S.Table_closure0, S._TableElement_mount_closure, S._TableElement_mount__closure, S._TableElement_update_closure, S._TableElement_update_closure0, S._TableElement__updateRenderObjectChildren_closure, S._TableElement__updateRenderObjectChildren__closure, S._TableElement_visitChildren_closure, F.TextSelectionOverlay_showHandles_closure, F.TextSelectionOverlay_showHandles_closure0, F.TextSelectionOverlay__buildHandle_closure, F._TextSelectionGestureDetectorState_build_closure, F._TextSelectionGestureDetectorState_build_closure0, F._TextSelectionGestureDetectorState_build_closure1, F._TextSelectionGestureDetectorState_build_closure2, F._TextSelectionGestureDetectorState_build_closure3, F._TextSelectionGestureDetectorState_build_closure4, F._TextSelectionGestureDetectorState_build_closure5, F._TextSelectionGestureDetectorState_build_closure6, K._AnimatedState__handleChange_closure, N._ValueListenableBuilderState__valueChanged_closure, N._describeRelevantUserCode_isOverflowError, N._describeRelevantUserCode_processElement, D.CacheStore_closure, D.CacheStore_retrieveCacheData_closure, D.CacheStore__scheduleCleanup_closure, Q.WebHelper__manageResponse_closure, Q.WebHelper__saveFileAndPostUpdates_closure, B.BlockPicker_defaultLayoutBuilder_closure, B._BlockPickerState_changeColor_closure, B._BlockPickerState_build_closure, B._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, Y._GlobalCupertinoLocalizationsDelegate_load_closure, Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_set, Y._GlobalCupertinoLocalizationsDelegate_load_closure__fullYearFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__dayFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__mediumDateFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitHourFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitMinuteFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__doubleDigitMinuteFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__singleDigitSecondFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure__decimalFormat_get, Y._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats, U._MaterialLocalizationsDelegate_load_closure, L.loadDateIntlDataIfNotLoaded_closure, O._StoreStreamListenerState_build_closure, A.SlidableState_dismiss_closure, A.SlidableState__handleDragUpdate_closure, A.SlidableState__handleShowAllActionsStatusChanged_closure, A.SlidableState__handleOverallPositionChanged_closure, A.SlidableState__startResizeAnimation_closure, A.SlidableState__startResizeAnimation_closure0, V.SlidableDrawerActionPane_build_closure, V.SlidableDrawerActionPane_build_closure0, R.ClosableSlideAction_build_closure, M.showToastWidget_closure, M._StyledToastState_build_closure, M.StyledToastWidgetState_initState_closure, M.StyledToastWidgetState_dismissToast_closure, M.StyledToastWidgetState_didChangeMetrics_closure, Q.ToastFuture$create_closure, Q.ToastManager_dismissAll_closure, L.TypeAheadFormField_closure, L.TypeAheadFormField__closure, L._TypeAheadFieldState_initState_closure, L._TypeAheadFieldState_initState_closure0, L._TypeAheadFieldState_initState_closure1, L._TypeAheadFieldState__scrollResizeListener_closure, L._TypeAheadFieldState__initOverlayEntry_closure, L._TypeAheadFieldState__initOverlayEntry__closure, L._SuggestionsListState_initState_closure, L._SuggestionsListState_initState__closure, L._SuggestionsListState__getSuggestions_closure, L._SuggestionsListState__getSuggestions_closure0, L._SuggestionsListState_createSuggestionsWidget_closure, L._SuggestionsListState_createSuggestionsWidget__closure, L._SuggestionsBox__findRootMediaQuery_closure, D.Registrar_send_closure, K.GoogleSignIn__ensureInitialized_closure, K.GoogleSignIn__waitFor_closure, K.GoogleSignIn__addMethodCall_closure, K.GoogleSignIn_signIn_isCanceled, K.GoogleSignIn_signIn_closure, O.MethodChannelGoogleSignIn_getTokens_closure, M.GoogleSignInPlugin_closure, M.GoogleSignInPlugin_init_closure, M.GoogleSignInPlugin_init_closure0, L.inject_closure, L.init_closure, B.injectJSLibraries_closure, G.BaseRequest_closure, G.BaseRequest_closure0, O.BrowserClient_send_closure, O.BrowserClient_send_closure0, Z.ByteStream_toBytes_closure, B.mapToQuery_closure, B.mapToQuery_closure0, B.onDone_closure, Z.CaseInsensitiveMap$from_closure, R.MediaType_MediaType$parse_closure, R.MediaType_toString_closure, R.MediaType_toString__closure, N.expectQuotedString_closure, V.ImagePickerPlugin__getSelectedXFiles_closure, V.ImagePickerPlugin__getSelectedXFiles__closure, V.ImagePickerPlugin__getSelectedXFiles_closure0, B.DateSymbols_DateSymbols$deserializeFromMap__getStringList, T.Intl__pluralRule_closure, A.DateFormat_dateTimeConstructor_closure, A.DateFormat__checkDateOnly_closure, A.DateFormat__initDigitMatcher_closure, A.DateFormat__initDigitMatcher_closure0, A.DateFormat__fieldConstructors_closure, A.DateFormat__fieldConstructors_closure0, A.DateFormat__fieldConstructors_closure1, A._DateFormatPatternField_parseEnumeratedString_closure, A._DateFormatPatternField_parseEnumeratedString_closure0, A._DateFormatPatternField_parseStandaloneDay_closure, S.NumberFormat_NumberFormat_closure, S.NumberFormat_NumberFormat$decimalPattern_closure, T.ClientEntity_ClientEntity_closure, T.ClientEntity_getActivities_closure, T.ClientEntity_primaryContact_closure, T.ClientEntity_primaryContact_closure0, T.ClientEntity_emailContacts_closure, T.ClientEntity_hasEmailAddress_closure, O.CompanyGatewayEntity_addCard_closure, O.CompanyGatewayEntity_removeCard_closure, O.CompanyGatewayEntity_updateConfig_closure, A.CompanyEntity_getCustomFieldValues_closure, A.CompanyEntity_coreCompany_closure, A.GatewayEntity_supportsTokenBilling_closure, A.GatewayEntity_supportsRefunds_closure, A.GatewayEntity_supportedEvents_closure, A.UserCompanyEntity_UserCompanyEntity_closure, A.UserCompanyEntity__initializeBuilder_closure, D.DesignEntity_clone_closure, T.ActivityEntity_getDescription_closure, T.ActivityEntity_getDescription_closure0, M.ExpenseEntity_clone_closure, Q.InvoiceEntity_InvoiceEntity_closure, Q.InvoiceEntity_moveLineItem_closure, Q.InvoiceEntity_moveLineItem_closure0, Q.InvoiceEntity_clone_closure, Q.InvoiceEntity_clone__closure, Q.InvoiceEntity_clone__closure0, Q.InvoiceEntity_history_closure, Q.InvoiceEntity_history_closure0, Q.InvoiceEntity_hasTasks_closure, Q.InvoiceEntity_hasProducts_closure, Q.InvoiceEntity_hasExpenses_closure, Q.InvoiceEntity_applyTax_closure, Q.InvoiceEntity_applyTax_closure0, Q.InvoiceEntity_applyTax_closure1, Q.InvoiceEntity_isViewed_closure, Q.InvoiceEntity_getInvitationForContact_closure, Q.InvoiceEntity_getInvitationForContact_closure0, Q.InvoiceEntity_getTaxes_calculateAmount, Q.InvoiceEntity__calculateTax_closure, Q.InvoiceItemEntity_taxAmount_calculateTaxAmount, Q.InvoiceItemEntity_applyTax_closure, Q.InvoiceItemEntity_applyTax_closure0, Q.InvoiceItemEntity_applyTax_closure1, X.CalculateInvoiceTotal_calculateTaxes_closure, X.CalculateInvoiceTotal_calculateTaxes__closure, X.CalculateInvoiceTotal_calculateTaxes__closure0, X.CalculateInvoiceTotal_calculateTaxes__closure1, X.CalculateInvoiceTotal_calculateTaxes__closure2, X.CalculateInvoiceTotal_calculateTaxes__closure3, X.CalculateInvoiceTotal_calculateTaxes__closure4, X.CalculateInvoiceTotal_calculateTaxes_closure0, X.CalculateInvoiceTotal_calculateTaxes_closure1, X.CalculateInvoiceTotal_calculateTaxes_closure2, X.CalculateInvoiceTotal_calculateTaxes_closure3, X.CalculateInvoiceTotal_calculateTaxes_closure4, X.CalculateInvoiceTotal_calculateTaxes_closure5, X.CalculateInvoiceTotal_getTaxable_closure, X.CalculateInvoiceTotal_calculateTotal_closure, X.CalculateInvoiceTotal_calculateSubtotal_closure, F.PaymentEntity_invoicePaymentables_closure, F.PaymentEntity_creditPaymentables_closure, F.PaymentEntity_invoiceId_closure, A.ProductEntity_clone_closure, A.ProjectEntity_clone_closure, K._$serializers_closure, K._$serializers_closure0, K._$serializers_closure1, K._$serializers_closure2, K._$serializers_closure3, K._$serializers_closure4, K._$serializers_closure5, K._$serializers_closure6, K._$serializers_closure7, K._$serializers_closure8, K._$serializers_closure9, K._$serializers_closure10, K._$serializers_closure11, K._$serializers_closure12, K._$serializers_closure13, K._$serializers_closure14, K._$serializers_closure15, K._$serializers_closure16, K._$serializers_closure17, K._$serializers_closure18, K._$serializers_closure19, K._$serializers_closure20, K._$serializers_closure21, K._$serializers_closure22, K._$serializers_closure23, K._$serializers_closure24, K._$serializers_closure25, K._$serializers_closure26, K._$serializers_closure27, K._$serializers_closure28, K._$serializers_closure29, K._$serializers_closure30, K._$serializers_closure31, K._$serializers_closure32, K._$serializers_closure33, K._$serializers_closure34, K._$serializers_closure35, K._$serializers_closure36, K._$serializers_closure37, K._$serializers_closure38, K._$serializers_closure39, K._$serializers_closure40, K._$serializers_closure41, K._$serializers_closure42, K._$serializers_closure43, K._$serializers_closure44, K._$serializers_closure45, K._$serializers_closure46, K._$serializers_closure47, K._$serializers_closure48, K._$serializers_closure49, K._$serializers_closure50, K._$serializers_closure51, K._$serializers_closure52, K._$serializers_closure53, K._$serializers_closure54, K._$serializers_closure55, K._$serializers_closure56, K._$serializers_closure57, K._$serializers_closure58, K._$serializers_closure59, K._$serializers_closure60, K._$serializers_closure61, K._$serializers_closure62, K._$serializers_closure63, K._$serializers_closure64, K._$serializers_closure65, K._$serializers_closure66, K._$serializers_closure67, K._$serializers_closure68, K._$serializers_closure69, K._$serializers_closure70, K._$serializers_closure71, K._$serializers_closure72, K._$serializers_closure73, K._$serializers_closure74, K._$serializers_closure75, K._$serializers_closure76, K._$serializers_closure77, K._$serializers_closure78, K._$serializers_closure79, K._$serializers_closure80, K._$serializers_closure81, K._$serializers_closure82, K._$serializers_closure83, K._$serializers_closure84, K._$serializers_closure85, K._$serializers_closure86, K._$serializers_closure87, K._$serializers_closure88, K._$serializers_closure89, K._$serializers_closure90, K._$serializers_closure91, K._$serializers_closure92, K._$serializers_closure93, K._$serializers_closure94, K._$serializers_closure95, K._$serializers_closure96, K._$serializers_closure97, K._$serializers_closure98, K._$serializers_closure99, K._$serializers_closure100, K._$serializers_closure101, K._$serializers_closure102, K._$serializers_closure103, K._$serializers_closure104, K._$serializers_closure105, K._$serializers_closure106, K._$serializers_closure107, K._$serializers_closure108, K._$serializers_closure109, K._$serializers_closure110, K._$serializers_closure111, K._$serializers_closure112, K._$serializers_closure113, K._$serializers_closure114, K._$serializers_closure115, K._$serializers_closure116, K._$serializers_closure117, K._$serializers_closure118, K._$serializers_closure119, K._$serializers_closure120, K._$serializers_closure121, K._$serializers_closure122, K._$serializers_closure123, K._$serializers_closure124, K._$serializers_closure125, K._$serializers_closure126, K._$serializers_closure127, K._$serializers_closure128, K._$serializers_closure129, K._$serializers_closure130, K._$serializers_closure131, K._$serializers_closure132, K._$serializers_closure133, K._$serializers_closure134, K._$serializers_closure135, K._$serializers_closure136, K._$serializers_closure137, K._$serializers_closure138, K._$serializers_closure139, K._$serializers_closure140, K._$serializers_closure141, K._$serializers_closure142, K._$serializers_closure143, K._$serializers_closure144, K._$serializers_closure145, K._$serializers_closure146, K._$serializers_closure147, K._$serializers_closure148, K._$serializers_closure149, K._$serializers_closure150, K._$serializers_closure151, K._$serializers_closure152, K._$serializers_closure153, K._$serializers_closure154, K._$serializers_closure155, K._$serializers_closure156, K._$serializers_closure157, K._$serializers_closure158, K._$serializers_closure159, K._$serializers_closure160, K._$serializers_closure161, K._$serializers_closure162, K._$serializers_closure163, K._$serializers_closure164, K._$serializers_closure165, K._$serializers_closure166, K._$serializers_closure167, K._$serializers_closure168, K._$serializers_closure169, K._$serializers_closure170, K._$serializers_closure171, K._$serializers_closure172, K._$serializers_closure173, K._$serializers_closure174, K._$serializers_closure175, K._$serializers_closure176, K._$serializers_closure177, K._$serializers_closure178, K._$serializers_closure179, K._$serializers_closure180, K._$serializers_closure181, K._$serializers_closure182, K._$serializers_closure183, K._$serializers_closure184, K._$serializers_closure185, K._$serializers_closure186, G.SettingsEntity_setFieldsForSection_closure, G.SettingsEntity_setFieldsForSection_closure0, D.TaskTime_stop_closure, D.TaskEntity_clone_closure, D.TaskEntity_areTimesValid_closure, D.TaskEntity_isRunning_closure, D.TaskEntity_getTaskTimes_closure, D.TaskEntity_getTaskTimes_closure0, D.TaskEntity_addTaskTime_closure, D.TaskEntity_updateTaskTime_closure, D.TaskEntity_deleteTaskTime_closure, D.TaskEntity_calculateDuration_closure, B.VendorEntity_VendorEntity_closure, G.ClientRepository_saveData_closure, T.CreditRepository_saveData_closure, T.InvoiceRepository_saveData_closure, U.ProductRepository_saveData_closure, U.QuoteRepository_saveData_closure, F._parseError_closure, F._parseError__closure, F._initialState_closure, K.InvoiceNinjaAppState__authenticate_closure, K.InvoiceNinjaAppState_initState_closure, K.InvoiceNinjaAppState_generateRoute_closure, K.InvoiceNinjaAppState_generateRoute_closure0, K.InvoiceNinjaAppState_build_closure, K.InvoiceNinjaAppState_build__closure, K.InvoiceNinjaAppState_build__closure0, K.InvoiceNinjaAppState_build__closure1, K.InvoiceNinjaAppState_build__closure2, K.InvoiceNinjaAppState_build__closure3, K.InvoiceNinjaAppState_build__closure4, K.InvoiceNinjaAppState_build__closure5, K.InvoiceNinjaAppState_build__closure6, K.InvoiceNinjaAppState_build__closure7, K.InvoiceNinjaAppState_build__closure8, K.InvoiceNinjaAppState_build__closure9, K.InvoiceNinjaAppState_build__closure10, K.InvoiceNinjaAppState_build__closure11, K.InvoiceNinjaAppState_build__closure12, K.InvoiceNinjaAppState_build__closure13, K.InvoiceNinjaAppState_build__closure14, K.InvoiceNinjaAppState_build__closure15, K.InvoiceNinjaAppState_build__closure16, K.InvoiceNinjaAppState_build__closure17, K.InvoiceNinjaAppState_build__closure18, K.InvoiceNinjaAppState_build__closure19, K.InvoiceNinjaAppState_build__closure20, K.InvoiceNinjaAppState_build__closure21, K.InvoiceNinjaAppState_build__closure22, K.InvoiceNinjaAppState_build__closure23, K.InvoiceNinjaAppState_build__closure24, K.InvoiceNinjaAppState_build__closure25, K.InvoiceNinjaAppState_build__closure26, K.InvoiceNinjaAppState_build__closure27, K.InvoiceNinjaAppState_build__closure28, K.InvoiceNinjaAppState_build__closure29, K.InvoiceNinjaAppState_build__closure30, K.InvoiceNinjaAppState_build__closure31, K.InvoiceNinjaAppState_build__closure32, K.InvoiceNinjaAppState_build__closure33, K.InvoiceNinjaAppState_build__closure34, K.InvoiceNinjaAppState_build__closure35, K.InvoiceNinjaAppState_build__closure36, K.InvoiceNinjaAppState_build__closure37, K.InvoiceNinjaAppState_build__closure38, K.InvoiceNinjaAppState_build__closure39, K.InvoiceNinjaAppState_build__closure40, K.InvoiceNinjaAppState_build__closure41, K.InvoiceNinjaAppState_build__closure42, K.InvoiceNinjaAppState_build__closure43, K.InvoiceNinjaAppState_build__closure44, K.InvoiceNinjaAppState_build__closure45, K.InvoiceNinjaAppState_build__closure46, K.InvoiceNinjaAppState_build__closure47, K.InvoiceNinjaAppState_build__closure48, K.InvoiceNinjaAppState_build__closure49, K.InvoiceNinjaAppState_build__closure50, K.InvoiceNinjaAppState_build__closure51, K.InvoiceNinjaAppState_build__closure52, K.InvoiceNinjaAppState_build__closure53, K.InvoiceNinjaAppState_build__closure54, K.InvoiceNinjaAppState_build__closure55, K.InvoiceNinjaAppState_build__closure56, K.InvoiceNinjaAppState_build__closure57, K.InvoiceNinjaAppState_build__closure58, K.InvoiceNinjaAppState_build__closure59, K.InvoiceNinjaAppState_build__closure60, K.InvoiceNinjaAppState_build__closure61, K.InvoiceNinjaAppState_build__closure62, K.InvoiceNinjaAppState_build__closure63, K.InvoiceNinjaAppState_build__closure64, K.InvoiceNinjaAppState_build__closure65, K.InvoiceNinjaAppState_build__closure66, K.InvoiceNinjaAppState_build__closure67, K.InvoiceNinjaAppState_build__closure68, K.InvoiceNinjaAppState_build__closure69, K.InvoiceNinjaAppState_build__closure70, K.InvoiceNinjaAppState_build__closure71, K.InvoiceNinjaAppState_build__closure72, K.InvoiceNinjaAppState_build__closure73, K.InvoiceNinjaAppState_build__closure74, K.InvoiceNinjaAppState_build__closure75, K.InvoiceNinjaAppState_build__closure76, K.InvoiceNinjaAppState_build__closure77, K.InvoiceNinjaAppState_build__closure78, K.InvoiceNinjaAppState_build__closure79, K.InvoiceNinjaAppState_build__closure80, K.InvoiceNinjaAppState_build__closure81, K.InvoiceNinjaAppState_build__closure82, K.InvoiceNinjaAppState_build__closure83, K.InvoiceNinjaAppState_build__closure84, K.InvoiceNinjaAppState_build__closure85, K.InvoiceNinjaAppState_build__closure86, K.InvoiceNinjaAppState_build__closure87, K.InvoiceNinjaAppState_build__closure88, K.InvoiceNinjaAppState_build__closure89, K.InvoiceNinjaAppState_build__closure90, K.InvoiceNinjaAppState_build__closure91, K.InvoiceNinjaAppState_build__closure92, K.InvoiceNinjaAppState_build__closure93, K.InvoiceNinjaAppState_build__closure94, K.InvoiceNinjaAppState_build__closure95, K.InvoiceNinjaAppState_build__closure96, K.InvoiceNinjaAppState_build__closure97, K.InvoiceNinjaAppState_build__closure98, K.InvoiceNinjaAppState_build__closure99, K.InvoiceNinjaAppState_build__closure100, K.InvoiceNinjaAppState_build__closure101, K.InvoiceNinjaAppState_build__closure102, K.InvoiceNinjaAppState_build__closure103, K.InvoiceNinjaAppState_build__closure104, K.InvoiceNinjaAppState_build__closure105, K.InvoiceNinjaAppState_build__closure106, M.viewEntitiesByType_closure, M.viewEntityById_closure, M.createEntityByType_closure, M.createEntity_closure, M.editEntity_closure, M.editEntity__closure, M.checkForChanges_closure, M.checkForChanges__closure, K._createLoadState_closure, K._createLoadState__closure, K._createLoadState__closure0, K._createLoadState__closure1, K._createLoadState__closure2, K._createLoadState__closure3, K._createLoadState__closure4, K._createLoadState__closure5, K._createLoadState___closure, K._createLoadState__closure6, K._getRoutes_closure, K._getRoutes_closure0, K._createUserLoggedIn_closure, K._createPersistData_closure, K._createPersistUI_closure, K._createPersistPrefs_closure, K._createPersistPrefs__closure, K._createAccountLoaded_closure, K._createDataRefreshed_closure, K._createPersistStatic_closure, K._createDeleteState_closure, K._createDeleteState__closure, K._createViewMainScreen_closure, K._createViewMainScreen__closure, G.appReducer_closure, G.appReducer__closure, G.appReducer_closure0, G.appReducer_closure1, G.appReducer_closure2, G.lastErrorReducer_closure, G.lastErrorReducer_closure0, G.lastErrorReducer_closure1, G.lastErrorReducer_closure2, G.lastErrorReducer_closure3, G.lastErrorReducer_closure4, G.lastErrorReducer_closure5, G.lastErrorReducer_closure6, G.lastErrorReducer_closure7, G.lastErrorReducer_closure8, G.lastErrorReducer_closure9, G.lastErrorReducer_closure10, G.lastErrorReducer_closure11, G.lastErrorReducer_closure12, G.lastErrorReducer_closure13, G.lastErrorReducer_closure14, G.lastErrorReducer_closure15, G.lastErrorReducer_closure16, G.lastErrorReducer_closure17, G.lastErrorReducer_closure18, T.AppState_AppState_closure, T.AppState_companies_closure, T.AppState_historyList_closure, V._createUserLogout_closure, V._createUserLogout__closure, V._createUserLogoutAll_closure, V._createUserLogoutAll__closure, V._createUserLogoutAll__closure0, V._createLoginRequest_closure, V._createLoginRequest__closure, V._createLoginRequest__closure0, V._createSignUpRequest_closure, V._createSignUpRequest__closure, V._createSignUpRequest__closure0, V._createOAuthLoginRequest_closure, V._createOAuthLoginRequest__closure, V._createOAuthLoginRequest__closure0, V._createOAuthSignUpRequest_closure, V._createOAuthSignUpRequest__closure, V._createOAuthSignUpRequest__closure0, V._createRefreshRequest_closure, V._createRefreshRequest__closure, V._createRefreshRequest___closure, V._createRefreshRequest____closure, V._createRefreshRequest__closure0, V._createRecoverRequest_closure, V._createRecoverRequest__closure, V._createRecoverRequest__closure0, V._createCompany_closure, V._createCompany__closure, V._createCompany___closure, V._setDefaultCompany_closure, V._setDefaultCompany__closure, V._setDefaultCompany__closure0, V._deleteCompany_closure, V._deleteCompany__closure, V._deleteCompany__closure0, V._purgeData_closure, V._purgeData__closure, V._purgeData___closure, V._purgeData__closure0, V._resendConfirmation_closure, V._resendConfirmation__closure, V._resendConfirmation__closure0, S.userLoadUrlReducer_closure, S.userSignUpRequestReducer_closure, S.userLoginRequestReducer_closure, S.oauthLoginRequestReducer_closure, S.oauthSignUpRequestReducer_closure, S.userLoginSuccessReducer_closure, S.userVerifiedPasswordReducer_closure, S.userUnverifiedPasswordReducer_closure, E.handleClientAction_closure, E.handleClientAction_closure0, E.handleClientAction_closure1, E.handleClientAction_closure2, Q._editClient_closure, Q._viewClient_closure, Q._viewClientList_closure1, Q._viewClientList__closure, Q._archiveClient_closure, Q._archiveClient__closure, Q._archiveClient__closure0, Q._archiveClient__closure1, Q._deleteClient_closure, Q._deleteClient__closure, Q._deleteClient__closure0, Q._deleteClient__closure1, Q._restoreClient_closure, Q._restoreClient__closure, Q._restoreClient__closure0, Q._restoreClient__closure1, Q._saveClient_closure, Q._saveClient__closure, Q._saveClient__closure0, Q._loadClient_closure, Q._loadClient__closure, Q._loadClient__closure0, Q._loadClients_closure, Q._loadClients__closure, Q._loadClients__closure0, Q._saveDocument_closure10, Q._saveDocument__closure21, Q._saveDocument__closure22, Q._showPdfClient_closure, S.clientUIReducer_closure, S.forceSelectedReducer_closure167, S.forceSelectedReducer_closure168, S.forceSelectedReducer_closure169, S.forceSelectedReducer_closure170, S.forceSelectedReducer_closure171, S.forceSelectedReducer_closure172, S.forceSelectedReducer_closure173, S.forceSelectedReducer_closure174, S.tabIndexReducer_closure21, S.tabIndexReducer_closure22, S.saveCompleterReducer_closure1, S.cancelCompleterReducer_closure1, S.editingContactReducer_closure, S.editingContactReducer_closure0, S.selectedIdReducer_closure335, S.selectedIdReducer_closure336, S.selectedIdReducer_closure337, S.selectedIdReducer_closure338, S.selectedIdReducer_closure339, S.selectedIdReducer_closure340, S.selectedIdReducer_closure341, S.selectedIdReducer_closure342, S.selectedIdReducer_closure343, S.selectedIdReducer_closure344, S.selectedIdReducer_closure345, S.selectedIdReducer_closure346, S.selectedIdReducer_closure347, S.selectedIdReducer_closure348, S.selectedIdReducer_closure349, S.selectedIdReducer_closure350, S.selectedIdReducer_closure351, S.editingReducer_closure112, S.editingReducer_closure113, S.editingReducer_closure114, S.editingReducer_closure115, S.editingReducer_closure116, S.editingReducer_closure117, S.editingReducer_closure118, S.editingReducer__closure48, S.editingReducer_closure119, S.editingReducer__closure47, S.editingReducer_closure120, S.editingReducer__closure46, S.editingReducer_closure121, S.editingReducer__closure45, S.editingReducer_closure122, S.editingReducer_closure123, S.editingReducer_closure124, S.editingReducer_closure125, S._viewClientList_closure, S._filterClientsByCustom1_closure, S._filterClientsByCustom1_closure0, S._filterClientsByCustom2_closure, S._filterClientsByCustom2_closure0, S._filterClientsByCustom3_closure, S._filterClientsByCustom3_closure0, S._filterClientsByCustom4_closure, S._filterClientsByCustom4_closure0, S._filterClientsByState_closure, S._filterClientsByState_closure0, S._filterClients_closure, S._sortClients_closure, S._startListMultiselect_closure21, S._addToListMultiselect_closure21, S._removeFromListMultiselect_closure21, S._clearListMultiselect_closure21, S._archiveClientSuccess_closure, S._deleteClientSuccess_closure, S._restoreClientSuccess_closure, S._addClient_closure, S._addClient__closure, S._updateClient_closure, S._updateClient__closure, S._setLoadedClient_closure, S._setLoadedClient__closure, G.memoizedDropdownClientList_closure, G.dropdownClientsSelector_closure, G.dropdownClientsSelector_closure0, G.memoizedClientStatsForUser_closure, G.clientStatsForUser_closure, G.memoizedFilteredClientList_closure, G.filteredClientsSelector_closure, G.filteredClientsSelector__closure, G.filteredClientsSelector_closure0, F.ClientState_loadClients_closure0, F.ClientState_loadClients_closure1, F.ClientState_loadClients_closure, T.companyReducer_closure, T.userCompanyEntityReducer_closure, T.userCompanyEntityReducer__closure5, T.userCompanyEntityReducer___closure, T.userCompanyEntityReducer__closure6, T.userCompanyEntityReducer_closure0, T.userCompanyEntityReducer__closure4, T.userCompanyEntityReducer_closure1, T.userCompanyEntityReducer__closure3, T.userCompanyEntityReducer_closure2, T.userCompanyEntityReducer__closure2, T.userCompanyEntityReducer_closure3, T.userCompanyEntityReducer__closure1, T.userCompanyEntityReducer_closure4, T.userCompanyEntityReducer__closure0, T.userCompanyEntityReducer_closure5, T.userCompanyEntityReducer__closure, T.loadCompanySuccessReducer_closure, T.loadCompanySuccessReducer_closure0, T.loadCompanySuccessReducer_closure1, T.saveCompanySuccessReducer_closure, T.saveCompanySuccessReducer_closure0, T.lastUpdatedReducer_closure, T.lastUpdatedReducer_closure0, U.memoizedDropdownExpenseCategoriesList_closure, U.dropdownExpenseCategoriesSelector_closure, U.dropdownExpenseCategoriesSelector_closure0, U.memoizedHasMultipleCurrencies_closure, U.memoizedGetCurrencyIds_closure, U.getCurrencyIds_closure, U.memoizedFilteredSelector_closure, U.filteredSelector_closure, U.filteredSelector_closure0, U.filteredSelector_closure1, U.filteredSelector_closure2, U.filteredSelector_closure3, U.filteredSelector_closure4, U.filteredSelector_closure5, U.filteredSelector_closure6, U.filteredSelector_closure7, U.filteredSelector_closure8, U.filteredSelector_closure9, U.filteredSelector_closure10, U.filteredSelector_closure11, U.filteredSelector_closure12, U.filteredSelector_closure13, Q.handleCompanyGatewayAction_closure, L._editCompanyGateway_closure, L._viewCompanyGateway_closure, L._viewCompanyGatewayList_closure, L._viewCompanyGatewayList__closure, L._archiveCompanyGateway_closure, L._archiveCompanyGateway__closure, L._archiveCompanyGateway__closure0, L._archiveCompanyGateway__closure1, L._deleteCompanyGateway_closure, L._deleteCompanyGateway__closure, L._deleteCompanyGateway__closure0, L._deleteCompanyGateway__closure1, L._restoreCompanyGateway_closure, L._restoreCompanyGateway__closure, L._restoreCompanyGateway__closure0, L._restoreCompanyGateway__closure1, L._saveCompanyGateway_closure, L._saveCompanyGateway__closure, L._saveCompanyGateway__closure0, L._loadCompanyGateway_closure, L._loadCompanyGateway__closure, L._loadCompanyGateway__closure0, L._loadCompanyGateways_closure, L._loadCompanyGateways__closure, L._loadCompanyGateways__closure0, N.companyGatewayUIReducer_closure, N.forceSelectedReducer_closure59, N.forceSelectedReducer_closure60, N.forceSelectedReducer_closure61, N.forceSelectedReducer_closure62, N.forceSelectedReducer_closure63, N.forceSelectedReducer_closure64, N.forceSelectedReducer_closure65, N.forceSelectedReducer_closure66, N.selectedIdReducer_closure119, N.selectedIdReducer_closure120, N.selectedIdReducer_closure121, N.selectedIdReducer_closure122, N.selectedIdReducer_closure123, N.selectedIdReducer_closure124, N.selectedIdReducer_closure125, N.selectedIdReducer_closure126, N.selectedIdReducer_closure127, N.selectedIdReducer_closure128, N.selectedIdReducer_closure129, N.selectedIdReducer_closure130, N.selectedIdReducer_closure131, N.selectedIdReducer_closure132, N.selectedIdReducer_closure133, N.editingReducer_closure35, N.editingReducer_closure36, N.editingReducer_closure37, N.editingReducer_closure38, N.editingReducer__closure13, N._filterCompanyGatewaysByCustom1_closure, N._filterCompanyGatewaysByCustom1_closure0, N._filterCompanyGatewaysByCustom2_closure, N._filterCompanyGatewaysByCustom2_closure0, N._filterCompanyGatewaysByState_closure, N._filterCompanyGatewaysByState_closure0, N._filterCompanyGateways_closure, N._sortCompanyGateways_closure, N._startListMultiselect_closure7, N._addToListMultiselect_closure7, N._removeFromListMultiselect_closure7, N._clearListMultiselect_closure7, N._archiveCompanyGatewaySuccess_closure, N._deleteCompanyGatewaySuccess_closure, N._restoreCompanyGatewaySuccess_closure, N._addCompanyGateway_closure, N._addCompanyGateway__closure, N._updateCompanyGateway_closure, N._updateCompanyGateway__closure, N._setLoadedCompanyGateway_closure, N._setLoadedCompanyGateway__closure, N._setLoadedCompany_closure1, N._setLoadedCompany__closure1, N._setLoadedCompany__closure2, N._setLoadedCompany_closure2, N._setLoadedCompanyGateways_closure, N._setLoadedCompanyGateways__closure, N._setLoadedCompanyGateways__closure0, N._setLoadedCompanyGateways_closure0, T.memoizedFilteredCompanyGatewayList_closure, T.filteredCompanyGatewaysSelector_closure, T.filteredCompanyGatewaysSelector_closure0, T.filteredCompanyGatewaysSelector_closure1, T.memoizedCalculateCompanyGatewayProcessed_closure, T.calculateCompanyGatewayProcessed_closure, T.memoizedClientStatsForCompanyGateway_closure, T.clientStatsForCompanyGateway_closure, T.clientStatsForCompanyGateway__closure, T.memoizedPaymentStatsForCompanyGateway_closure, T.paymentStatsForCompanyGateway_closure, T.getUnconnectedStripeAccount_closure, E.handleCreditAction_closure, E.handleCreditAction_closure0, E.handleCreditAction_closure1, E.handleCreditAction_closure2, E.handleCreditAction_closure3, E.handleCreditAction_closure4, E.handleCreditAction_closure5, E.handleCreditAction__closure, X._viewCredit_closure, X._viewCreditList_closure0, X._viewCreditList__closure, X._editCredit_closure, X._showEmailCredit_closure, X._showPdfCredit_closure, X._archiveCredit_closure, X._archiveCredit__closure, X._archiveCredit__closure0, X._archiveCredit__closure1, X._deleteCredit_closure, X._deleteCredit__closure, X._deleteCredit__closure0, X._deleteCredit__closure1, X._restoreCredit_closure, X._restoreCredit__closure, X._restoreCredit__closure0, X._restoreCredit__closure1, X._markSentCredit_closure, X._markSentCredit__closure, X._markSentCredit__closure0, X._emailCredit_closure, X._emailCredit__closure, X._emailCredit__closure0, X._saveCredit_closure, X._saveCredit__closure, X._saveCredit___closure, X._saveCredit__closure0, X._saveCredit__closure1, X._loadCredit_closure, X._loadCredit__closure, X._loadCredit__closure0, X._loadCredits_closure, X._loadCredits__closure, X._loadCredits__closure0, X._downloadCredits_closure, X._downloadCredits__closure, X._downloadCredits__closure0, X._bulkEmailCredits_closure, X._bulkEmailCredits__closure, X._bulkEmailCredits__closure0, X._saveDocument_closure0, X._saveDocument__closure1, X._saveDocument__closure2, Q.creditUIReducer_closure, Q.forceSelectedReducer_closure79, Q.forceSelectedReducer_closure80, Q.forceSelectedReducer_closure81, Q.forceSelectedReducer_closure82, Q.forceSelectedReducer_closure83, Q.forceSelectedReducer_closure84, Q.forceSelectedReducer_closure85, Q.forceSelectedReducer_closure86, Q.tabIndexReducer_closure11, Q.tabIndexReducer_closure12, Q.historyActivityIdReducer_closure0, Q.editingItemReducer_closure1, Q.editingItemReducer_closure2, Q.selectedIdReducer_closure160, Q.selectedIdReducer_closure161, Q.selectedIdReducer_closure162, Q.selectedIdReducer_closure163, Q.selectedIdReducer_closure164, Q.selectedIdReducer_closure165, Q.selectedIdReducer_closure166, Q.selectedIdReducer_closure167, Q.selectedIdReducer_closure168, Q.selectedIdReducer_closure169, Q.selectedIdReducer_closure170, Q.selectedIdReducer_closure171, Q.selectedIdReducer_closure172, Q.selectedIdReducer_closure173, Q.selectedIdReducer_closure174, Q.selectedIdReducer_closure175, Q.selectedIdReducer_closure176, Q.selectedIdReducer_closure177, Q.selectedIdReducer_closure178, Q.editingReducer_closure47, Q.editingReducer__closure22, Q.editingReducer_closure48, Q.editingReducer__closure21, Q.editingReducer_closure49, Q.editingReducer_closure50, Q.editingReducer__closure20, Q.editingReducer_closure51, Q.editingReducer__closure19, Q.editingReducer_closure52, Q.editingReducer__closure18, Q.editingReducer___closure0, Q.editingReducer_closure53, Q.editingReducer_closure54, Q.editingReducer_closure55, Q.editingReducer_closure56, Q.editingReducer__closure17, Q.editingReducer_closure57, Q.editingReducer__closure16, Q._addCreditItem_closure, Q._addCreditItems_closure, Q._removeCreditItem_closure, Q._updateCreditItem_closure, Q._viewCreditList_closure, Q._filterCreditsByCustom1_closure, Q._filterCreditsByCustom1_closure0, Q._filterCreditsByCustom2_closure, Q._filterCreditsByCustom2_closure0, Q._filterCreditsByCustom3_closure, Q._filterCreditsByCustom3_closure0, Q._filterCreditsByCustom4_closure, Q._filterCreditsByCustom4_closure0, Q._filterCreditsByState_closure, Q._filterCreditsByState_closure0, Q._filterCreditsByStatus_closure, Q._filterCreditsByStatus_closure0, Q._filterCredits_closure, Q._sortCredits_closure, Q._startListMultiselect_closure10, Q._addToListMultiselect_closure10, Q._removeFromListMultiselect_closure10, Q._clearListMultiselect_closure10, Q._markSentCreditSuccess_closure0, Q._markSentCreditSuccess_closure1, Q._markSentCreditSuccess_closure, Q._archiveCreditSuccess_closure, Q._deleteCreditSuccess_closure, Q._restoreCreditSuccess_closure, Q._addCredit_closure, Q._addCredit__closure, Q._updateCredit_closure, Q._updateCredit__closure, B.memoizedDropdownCreditList_closure, B.dropdownCreditSelector_closure, B.dropdownCreditSelector_closure0, B.memoizedFilteredCreditList_closure, B.filteredCreditsSelector_closure, B.filteredCreditsSelector_closure0, B.memoizedCreditStatsForDesign_closure, B.creditStatsForDesign_closure, B.memoizedCreditStatsForClient_closure, B.creditStatsForClient_closure, B.memoizedCreditStatsForUser_closure, B.creditStatsForUser_closure, G.CreditState_loadCredits_closure0, G.CreditState_loadCredits_closure1, G.CreditState_loadCredits_closure, R._createViewDashboard_closure, R._createViewDashboard__closure, R._createViewDashboard___closure, D.dashboardUIReducer_closure, D.selectedEntitiesReducer_closure, D.selectedEntitiesReducer__closure0, D.selectedEntitiesReducer_closure0, D.selectedEntitiesReducer__closure, D.selectedEntityTypeReducer_closure, D.showSidebarReducer_closure, D.dashboardSettingsReducer_closure, D.dashboardSettingsReducer_closure0, D.dashboardSettingsReducer_closure1, D.dashboardSettingsReducer_closure2, O.memoizedChartInvoices_closure, O.memoizedPreviousChartInvoices_closure, O._chartInvoices_closure, O.memoizedChartQuotes_closure, O.memoizedPreviousChartQuotes_closure, O.chartQuotes_closure, O.memoizedChartPayments_closure, O.memoizedPreviousChartPayments_closure, O.chartPayments_closure, O.memoizedChartTasks_closure, O.memoizedPreviousChartTasks_closure, O.chartTasks_closure, O.chartTasks__closure, O.chartTasks___closure, O.chartExpenses_closure, O.memoizedChartExpenses_closure, O.memoizedPreviousChartExpenses_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, N.handleDesignAction_closure, N.handleDesignAction_closure0, N.handleDesignAction_closure1, N.handleDesignAction_closure2, N.handleDesignAction_closure3, V._editDesign_closure, V._viewDesign_closure, V._viewDesignList_closure0, V._viewDesignList__closure, V._archiveDesign_closure, V._archiveDesign__closure, V._archiveDesign__closure0, V._archiveDesign__closure1, V._deleteDesign_closure, V._deleteDesign__closure, V._deleteDesign__closure0, V._deleteDesign__closure1, V._restoreDesign_closure, V._restoreDesign__closure, V._restoreDesign__closure0, V._restoreDesign__closure1, V._saveDesign_closure, V._saveDesign__closure, V._saveDesign__closure0, V._loadDesign_closure, V._loadDesign__closure, V._loadDesign__closure0, V._loadDesigns_closure, V._loadDesigns__closure, V._loadDesigns__closure0, U.designUIReducer_closure, U.forceSelectedReducer_closure87, U.forceSelectedReducer_closure88, U.forceSelectedReducer_closure89, U.forceSelectedReducer_closure90, U.forceSelectedReducer_closure91, U.forceSelectedReducer_closure92, U.forceSelectedReducer_closure93, U.forceSelectedReducer_closure94, U.selectedIdReducer_closure179, U.selectedIdReducer_closure180, U.selectedIdReducer_closure181, U.selectedIdReducer_closure182, U.selectedIdReducer_closure183, U.selectedIdReducer_closure184, U.selectedIdReducer_closure185, U.selectedIdReducer_closure186, U.selectedIdReducer_closure187, U.selectedIdReducer_closure188, U.selectedIdReducer_closure189, U.selectedIdReducer_closure190, U.selectedIdReducer_closure191, U.selectedIdReducer_closure192, U.editingReducer_closure58, U.editingReducer_closure59, U.editingReducer_closure60, U.editingReducer_closure61, U.editingReducer__closure23, U._viewDesignList_closure, U._filterDesignsByCustom1_closure, U._filterDesignsByCustom1_closure0, U._filterDesignsByCustom2_closure, U._filterDesignsByCustom2_closure0, U._filterDesignsByState_closure, U._filterDesignsByState_closure0, U._filterDesigns_closure, U._sortDesigns_closure, U._startListMultiselect_closure11, U._addToListMultiselect_closure11, U._removeFromListMultiselect_closure11, U._clearListMultiselect_closure11, U._archiveDesignSuccess_closure, U._deleteDesignSuccess_closure, U._restoreDesignSuccess_closure, U._addDesign_closure, U._updateDesign_closure, U._setLoadedDesign_closure, A.memoizedFilteredDesignList_closure, A.filteredDesignsSelector_closure, A.filteredDesignsSelector_closure0, Y.DesignState_cleanDesign_closure, Y.DesignState_cleanDesign_closure0, Y.DesignState_customDesigns_closure, Y.DesignState_customDesigns_closure0, Y.DesignState_loadDesigns_closure0, Y.DesignState_loadDesigns_closure1, Y.DesignState_loadDesigns_closure, X.handleDocumentAction_closure, Y._editDocument_closure, Y._viewDocument_closure, Y._viewDocumentList_closure0, Y._viewDocumentList__closure, Y._archiveDocument_closure, Y._archiveDocument__closure, Y._archiveDocument__closure0, Y._archiveDocument__closure1, Y._deleteDocument_closure, Y._deleteDocument__closure, Y._deleteDocument__closure0, Y._restoreDocument_closure, Y._restoreDocument__closure, Y._restoreDocument__closure0, Y._restoreDocument__closure1, Y._loadDocument_closure, Y._loadDocument__closure, Y._loadDocument__closure0, Y._loadDocuments_closure, Y._loadDocuments__closure, Y._loadDocuments__closure0, M.documentUIReducer_closure, M.forceSelectedReducer_closure47, M.forceSelectedReducer_closure48, M.forceSelectedReducer_closure49, M.forceSelectedReducer_closure50, M.forceSelectedReducer_closure51, M.forceSelectedReducer_closure52, M.forceSelectedReducer_closure53, M.forceSelectedReducer_closure54, M.selectedIdReducer_closure94, M.selectedIdReducer_closure95, M.selectedIdReducer_closure96, M.selectedIdReducer_closure97, M.selectedIdReducer_closure98, M.selectedIdReducer_closure99, M.selectedIdReducer_closure100, M.selectedIdReducer_closure101, M.selectedIdReducer_closure102, M.selectedIdReducer_closure103, M.selectedIdReducer_closure104, M.selectedIdReducer_closure105, M.selectedIdReducer_closure106, M.editingReducer_closure30, M.editingReducer__closure11, M._viewDocumentList_closure, M._filterDocumentsByCustom1_closure, M._filterDocumentsByCustom1_closure0, M._filterDocumentsByCustom2_closure, M._filterDocumentsByCustom2_closure0, M._filterDocumentsByState_closure, M._filterDocumentsByState_closure0, M._filterDocuments_closure, M._sortDocuments_closure, M._startListMultiselect_closure5, M._addToListMultiselect_closure5, M._removeFromListMultiselect_closure5, M._clearListMultiselect_closure5, M._archiveDocumentSuccess_closure, M._deleteDocumentSuccess_closure, M._restoreDocumentSuccess_closure, M._updateDocument_closure, M._setLoadedDocument_closure, M._setLoadedDocuments_closure, M._setLoadedDocuments__closure, M._setLoadedDocuments__closure0, M._setLoadedDocuments_closure0, A.memoizedFilteredDocumentList_closure, A.filteredDocumentsSelector_closure, A.filteredDocumentsSelector_closure0, T.handleExpenseAction_closure, T.handleExpenseAction_closure0, T.handleExpenseAction_closure1, T.handleExpenseAction_closure2, T.handleExpenseAction_closure3, T.handleExpenseAction_closure4, R._editExpense_closure, R._viewExpense_closure, R._viewExpenseList_closure0, R._viewExpenseList__closure, R._archiveExpense_closure, R._archiveExpense__closure, R._archiveExpense__closure0, R._archiveExpense__closure1, R._deleteExpense_closure, R._deleteExpense__closure, R._deleteExpense__closure0, R._deleteExpense__closure1, R._restoreExpense_closure, R._restoreExpense__closure, R._restoreExpense__closure0, R._restoreExpense__closure1, R._saveExpense_closure, R._saveExpense__closure, R._saveExpense__closure0, R._loadExpense_closure, R._loadExpense__closure, R._loadExpense__closure0, R._loadExpenses_closure, R._loadExpenses__closure, R._loadExpenses__closure0, R._saveDocument_closure8, R._saveDocument__closure17, R._saveDocument__closure18, K.expenseUIReducer_closure, K.forceSelectedReducer_closure39, K.forceSelectedReducer_closure40, K.forceSelectedReducer_closure41, K.forceSelectedReducer_closure42, K.forceSelectedReducer_closure43, K.forceSelectedReducer_closure44, K.forceSelectedReducer_closure45, K.forceSelectedReducer_closure46, K.tabIndexReducer_closure9, K.tabIndexReducer_closure10, K.selectedIdReducer_closure79, K.selectedIdReducer_closure80, K.selectedIdReducer_closure81, K.selectedIdReducer_closure82, K.selectedIdReducer_closure83, K.selectedIdReducer_closure84, K.selectedIdReducer_closure85, K.selectedIdReducer_closure86, K.selectedIdReducer_closure87, K.selectedIdReducer_closure88, K.selectedIdReducer_closure89, K.selectedIdReducer_closure90, K.selectedIdReducer_closure91, K.selectedIdReducer_closure92, K.selectedIdReducer_closure93, K.editingReducer_closure26, K.editingReducer_closure27, K.editingReducer_closure28, K.editingReducer_closure29, K.editingReducer__closure10, K._viewExpenseList_closure, K._filterExpensesByCustom1_closure, K._filterExpensesByCustom1_closure0, K._filterExpensesByCustom2_closure, K._filterExpensesByCustom2_closure0, K._filterExpensesByCustom3_closure, K._filterExpensesByCustom3_closure0, K._filterExpensesByCustom4_closure, K._filterExpensesByCustom4_closure0, K._filterExpensesByState_closure, K._filterExpensesByState_closure0, K._filterExpensesByStatus_closure, K._filterExpensesByStatus_closure0, K._filterExpenses_closure, K._sortExpenses_closure, K._startListMultiselect_closure4, K._addToListMultiselect_closure4, K._removeFromListMultiselect_closure4, K._clearListMultiselect_closure4, K._archiveExpenseSuccess_closure, K._deleteExpenseSuccess_closure, K._restoreExpenseSuccess_closure, K._addExpense_closure, K._updateExpense_closure, K._setLoadedExpense_closure, L.convertExpenseToInvoiceItem_closure, L.memoizedFilteredExpenseList_closure, L.filteredExpensesSelector_closure, L.filteredExpensesSelector_closure0, L.memoizedExpenseStatsForVendor_closure, L.expenseStatsForVendor_closure, L.memoizedExpenseStatsForClient_closure, L.expenseStatsForClient_closure, L.memoizedClientExpenseList_closure, L.clientExpenseList_closure, L.clientExpenseList_closure0, L.memoizedExpenseStatsForProject_closure, L.expenseStatsForProject_closure, L.memoizedExpenseStatsForUser_closure, L.expenseStatsForUser_closure, R.ExpenseState_loadExpenses_closure0, R.ExpenseState_loadExpenses_closure1, R.ExpenseState_loadExpenses_closure, X.handleExpenseCategoryAction_closure, X.handleExpenseCategoryAction_closure0, M._editExpenseCategory_closure, M._viewExpenseCategory_closure, M._viewExpenseCategoryList_closure, M._viewExpenseCategoryList__closure, M._archiveExpenseCategory_closure, M._archiveExpenseCategory__closure, M._archiveExpenseCategory__closure0, M._archiveExpenseCategory__closure1, M._deleteExpenseCategory_closure, M._deleteExpenseCategory__closure, M._deleteExpenseCategory__closure0, M._deleteExpenseCategory__closure1, M._restoreExpenseCategory_closure, M._restoreExpenseCategory__closure, M._restoreExpenseCategory__closure0, M._restoreExpenseCategory__closure1, M._saveExpenseCategory_closure, M._saveExpenseCategory__closure, M._saveExpenseCategory__closure0, M._loadExpenseCategory_closure, M._loadExpenseCategory__closure, M._loadExpenseCategory__closure0, M._loadExpenseCategories_closure, M._loadExpenseCategories__closure, M._loadExpenseCategories__closure0, F.expenseCategoryUIReducer_closure, F.forceSelectedReducer_closure127, F.forceSelectedReducer_closure128, F.forceSelectedReducer_closure129, F.forceSelectedReducer_closure130, F.forceSelectedReducer_closure131, F.forceSelectedReducer_closure132, F.forceSelectedReducer_closure133, F.forceSelectedReducer_closure134, F.selectedIdReducer_closure256, F.selectedIdReducer_closure257, F.selectedIdReducer_closure258, F.selectedIdReducer_closure259, F.selectedIdReducer_closure260, F.selectedIdReducer_closure261, F.selectedIdReducer_closure262, F.selectedIdReducer_closure263, F.selectedIdReducer_closure264, F.selectedIdReducer_closure265, F.selectedIdReducer_closure266, F.selectedIdReducer_closure267, F.selectedIdReducer_closure268, F.selectedIdReducer_closure269, F.selectedIdReducer_closure270, F.editingReducer_closure85, F.editingReducer_closure86, F.editingReducer_closure87, F.editingReducer_closure88, F.editingReducer__closure34, F._filterExpenseCategoriesByCustom1_closure, F._filterExpenseCategoriesByCustom1_closure0, F._filterExpenseCategoriesByCustom2_closure, F._filterExpenseCategoriesByCustom2_closure0, F._filterExpenseCategoriesByState_closure, F._filterExpenseCategoriesByState_closure0, F._filterExpenseCategories_closure, F._sortExpenseCategories_closure, F._startListMultiselect_closure16, F._addToListMultiselect_closure16, F._removeFromListMultiselect_closure16, F._clearListMultiselect_closure16, F._archiveExpenseCategorySuccess_closure, F._deleteExpenseCategorySuccess_closure, F._restoreExpenseCategorySuccess_closure, F._addExpenseCategory_closure, F._updateExpenseCategory_closure, F._setLoadedExpenseCategory_closure, O.memoizedFilteredExpenseCategoryList_closure, O.filteredExpenseCategoriesSelector_closure, O.filteredExpenseCategoriesSelector_closure0, O.memoizedCalculateExpenseCategoryAmount_closure, O.calculateExpenseCategoryAmount_closure, O.memoizedExpenseStatsForExpenseCategory_closure, O.expenseStatsForExpenseCategory_closure, Q.ExpenseCategoryState_loadExpenseCategories_closure0, Q.ExpenseCategoryState_loadExpenseCategories_closure1, Q.ExpenseCategoryState_loadExpenseCategories_closure, Q.handleGroupAction_closure, Q.handleGroupAction_closure0, X._editGroup_closure, X._viewGroup_closure, X._viewGroupList_closure0, X._viewGroupList__closure, X._archiveGroup_closure, X._archiveGroup__closure, X._archiveGroup__closure0, X._archiveGroup__closure1, X._deleteGroup_closure, X._deleteGroup__closure, X._deleteGroup__closure0, X._deleteGroup__closure1, X._restoreGroup_closure, X._restoreGroup__closure, X._restoreGroup__closure0, X._restoreGroup__closure1, X._saveGroup_closure, X._saveGroup__closure, X._saveGroup__closure0, X._loadGroup_closure, X._loadGroup__closure, X._loadGroup__closure0, X._loadGroups_closure, X._loadGroups__closure, X._loadGroups__closure0, X._saveDocument_closure, X._saveDocument__closure, X._saveDocument__closure0, K.groupUIReducer_closure, K.forceSelectedReducer_closure55, K.forceSelectedReducer_closure56, K.forceSelectedReducer_closure57, K.forceSelectedReducer_closure58, K.selectedIdReducer_closure107, K.selectedIdReducer_closure108, K.selectedIdReducer_closure109, K.selectedIdReducer_closure110, K.selectedIdReducer_closure111, K.selectedIdReducer_closure112, K.selectedIdReducer_closure113, K.selectedIdReducer_closure114, K.selectedIdReducer_closure115, K.selectedIdReducer_closure116, K.selectedIdReducer_closure117, K.selectedIdReducer_closure118, K.editingReducer_closure31, K.editingReducer_closure32, K.editingReducer_closure33, K.editingReducer_closure34, K.editingReducer__closure12, K._viewGroupList_closure, K._filterGroupsByState_closure, K._filterGroupsByState_closure0, K._filterGroups_closure, K._sortGroups_closure, K._startListMultiselect_closure6, K._addToListMultiselect_closure6, K._removeFromListMultiselect_closure6, K._clearListMultiselect_closure6, K._archiveGroupSuccess_closure, K._deleteGroupSuccess_closure, K._restoreGroupSuccess_closure, K._addGroup_closure, K._updateGroup_closure, K._setLoadedGroup_closure, K._setLoadedGroups_closure, K._setLoadedGroups__closure, K._setLoadedGroups__closure0, K._setLoadedGroups_closure0, K._setLoadedCompany_closure, K._setLoadedCompany__closure, K._setLoadedCompany__closure0, K._setLoadedCompany_closure0, S.memoizedFilteredGroupList_closure, S.filteredGroupsSelector_closure, S.filteredGroupsSelector_closure0, S.memoizedClientStatsForGroup_closure, S.clientStatsForGroup_closure, Q.handleInvoiceAction_closure, Q.handleInvoiceAction_closure0, Q.handleInvoiceAction_closure1, Q.handleInvoiceAction_closure2, Q.handleInvoiceAction_closure3, Q.handleInvoiceAction_closure4, Q.handleInvoiceAction_closure5, Q.handleInvoiceAction__closure, Q.handleInvoiceAction__closure0, G._viewInvoiceList_closure0, G._viewInvoiceList__closure, G._viewInvoice_closure, G._editInvoice_closure, G._showEmailInvoice_closure, G._showPdfInvoice_closure, G._cancelInvoices_closure, G._cancelInvoices__closure, G._cancelInvoices__closure0, G._reverseInvoices_closure, G._reverseInvoices__closure, G._reverseInvoices__closure0, G._archiveInvoice_closure, G._archiveInvoice__closure, G._archiveInvoice__closure0, G._archiveInvoice__closure1, G._deleteInvoice_closure, G._deleteInvoice__closure, G._deleteInvoice__closure0, G._deleteInvoice__closure1, G._restoreInvoice_closure, G._restoreInvoice__closure, G._restoreInvoice__closure0, G._restoreInvoice__closure1, G._markInvoiceSent_closure, G._markInvoiceSent__closure, G._markInvoiceSent__closure0, G._markInvoicePaid_closure, G._markInvoicePaid__closure, G._markInvoicePaid__closure0, G._downloadInvoices_closure, G._downloadInvoices__closure, G._downloadInvoices__closure0, G._emailInvoice_closure, G._emailInvoice__closure, G._emailInvoice__closure0, G._bulkEmailInvoices_closure, G._bulkEmailInvoices__closure, G._bulkEmailInvoices__closure0, G._saveInvoice_closure, G._saveInvoice__closure, G._saveInvoice___closure, G._saveInvoice__closure0, G._saveInvoice__closure1, G._loadInvoice_closure, G._loadInvoice__closure, G._loadInvoice__closure0, G._loadInvoices_closure, G._loadInvoices__closure, G._loadInvoices__closure0, G._saveDocument_closure9, G._saveDocument__closure19, G._saveDocument__closure20, D.invoiceUIReducer_closure, D.forceSelectedReducer_closure159, D.forceSelectedReducer_closure160, D.forceSelectedReducer_closure161, D.forceSelectedReducer_closure162, D.forceSelectedReducer_closure163, D.forceSelectedReducer_closure164, D.forceSelectedReducer_closure165, D.forceSelectedReducer_closure166, D.tabIndexReducer_closure19, D.tabIndexReducer_closure20, D.historyActivityIdReducer_closure2, D.editingItemIndexReducer_closure1, D.editingItemIndexReducer_closure2, D.selectedIdReducer_closure316, D.selectedIdReducer_closure317, D.selectedIdReducer_closure318, D.selectedIdReducer_closure319, D.selectedIdReducer_closure320, D.selectedIdReducer_closure321, D.selectedIdReducer_closure322, D.selectedIdReducer_closure323, D.selectedIdReducer_closure324, D.selectedIdReducer_closure325, D.selectedIdReducer_closure326, D.selectedIdReducer_closure327, D.selectedIdReducer_closure328, D.selectedIdReducer_closure329, D.selectedIdReducer_closure330, D.selectedIdReducer_closure331, D.selectedIdReducer_closure332, D.selectedIdReducer_closure333, D.selectedIdReducer_closure334, D.editingReducer_closure101, D.editingReducer__closure44, D.editingReducer_closure102, D.editingReducer__closure43, D.editingReducer_closure103, D.editingReducer_closure104, D.editingReducer__closure42, D.editingReducer_closure105, D.editingReducer__closure41, D.editingReducer_closure106, D.editingReducer__closure40, D.editingReducer___closure2, D.editingReducer_closure107, D.editingReducer_closure108, D.editingReducer_closure109, D.editingReducer_closure110, D.editingReducer__closure39, D.editingReducer_closure111, D.editingReducer__closure38, D._addInvoiceItem_closure, D._addInvoiceItems_closure, D._removeInvoiceItem_closure, D._updateInvoiceItem_closure, D._viewInvoiceList_closure, D._filterInvoicesByCustom1_closure, D._filterInvoicesByCustom1_closure0, D._filterInvoicesByCustom2_closure, D._filterInvoicesByCustom2_closure0, D._filterInvoicesByCustom3_closure, D._filterInvoicesByCustom3_closure0, D._filterInvoicesByCustom4_closure, D._filterInvoicesByCustom4_closure0, D._filterInvoicesByState_closure, D._filterInvoicesByState_closure0, D._filterInvoicesByStatus_closure, D._filterInvoicesByStatus_closure0, D._filterInvoices_closure, D._sortInvoices_closure, D._startListMultiselect_closure20, D._addToListMultiselect_closure20, D._removeFromListMultiselect_closure20, D._clearListMultiselect_closure20, D._markInvoicesSentSuccess_closure, D._markInvoicesPaidSuccess_closure, D._reverseInvoicesSuccess_closure, D._cancelInvoicesSuccess_closure, D._archiveInvoiceSuccess_closure, D._deleteInvoiceSuccess_closure, D._emailInvoiceSuccess_closure, D._restoreInvoiceSuccess_closure, D._addInvoice_closure, D._addInvoice__closure, D._updateInvoice_closure, D._updateInvoice__closure, Z.memoizedDropdownInvoiceList_closure, Z.dropdownInvoiceSelector_closure, Z.dropdownInvoiceSelector_closure0, Z.memoizedFilteredInvoiceList_closure, Z.filteredInvoicesSelector_closure, Z.filteredInvoicesSelector__closure0, Z.filteredInvoicesSelector_closure0, Z.filteredInvoicesSelector__closure, Z.filteredInvoicesSelector_closure1, Z.memoizedInvoiceStatsForClient_closure, Z.invoiceStatsForClient_closure, Z.memoizedInvoiceStatsForDesign_closure, Z.invoiceStatsForDesign_closure, Z.memoizedInvoiceStatsForSubscription_closure, Z.invoiceStatsForSubscription_closure, Z.memoizedInvoiceStatsForUser_closure, Z.invoiceStatsForUser_closure, B.InvoiceState_loadInvoices_closure0, B.InvoiceState_loadInvoices_closure1, B.InvoiceState_loadInvoices_closure, Q.handlePaymentAction_closure, Q.handlePaymentAction_closure0, Q.handlePaymentAction__closure1, Q.handlePaymentAction_closure1, Q.handlePaymentAction__closure, Q.handlePaymentAction__closure0, D._editPayment_closure, D._editPayment__closure, D._viewRefundPayment_closure, D._viewRefundPayment__closure, D._viewPayment_closure, D._viewPaymentList_closure0, D._viewPaymentList__closure, D._archivePayment_closure, D._archivePayment__closure, D._archivePayment__closure0, D._archivePayment__closure1, D._deletePayment_closure, D._deletePayment__closure, D._deletePayment__closure0, D._deletePayment__closure1, D._restorePayment_closure, D._restorePayment__closure, D._restorePayment__closure0, D._restorePayment__closure1, D._savePayment_closure, D._savePayment__closure, D._savePayment__closure0, D._refundPayment_closure, D._refundPayment__closure, D._refundPayment__closure0, D._emailPayment_closure, D._emailPayment__closure, D._emailPayment__closure0, D._loadPayment_closure, D._loadPayment__closure, D._loadPayment__closure0, D._loadPayments_closure, D._loadPayments__closure, D._loadPayments__closure0, R.paymentUIReducer_closure, R.forceSelectedReducer_closure7, R.forceSelectedReducer_closure8, R.forceSelectedReducer_closure9, R.forceSelectedReducer_closure10, R.forceSelectedReducer_closure11, R.forceSelectedReducer_closure12, R.forceSelectedReducer_closure13, R.forceSelectedReducer_closure14, R.tabIndexReducer_closure1, R.tabIndexReducer_closure2, R.selectedIdReducer_closure18, R.selectedIdReducer_closure19, R.selectedIdReducer_closure20, R.selectedIdReducer_closure21, R.selectedIdReducer_closure22, R.selectedIdReducer_closure23, R.selectedIdReducer_closure24, R.selectedIdReducer_closure25, R.selectedIdReducer_closure26, R.selectedIdReducer_closure27, R.selectedIdReducer_closure28, R.selectedIdReducer_closure29, R.selectedIdReducer_closure30, R.selectedIdReducer_closure31, R.selectedIdReducer_closure32, R.selectedIdReducer_closure33, R.editingReducer_closure10, R.editingReducer_closure11, R.editingReducer_closure12, R.editingReducer_closure13, R.editingReducer__closure6, R._viewPaymentList_closure, R._filterPaymentsByCustom1_closure, R._filterPaymentsByCustom1_closure0, R._filterPaymentsByCustom2_closure, R._filterPaymentsByCustom2_closure0, R._filterPaymentsByCustom3_closure, R._filterPaymentsByCustom3_closure0, R._filterPaymentsByCustom4_closure, R._filterPaymentsByCustom4_closure0, R._filterPaymentsByState_closure, R._filterPaymentsByState_closure0, R._filterPayments_closure, R._sortPayments_closure, R._startListMultiselect_closure0, R._addToListMultiselect_closure0, R._removeFromListMultiselect_closure0, R._clearListMultiselect_closure0, R._archivePaymentSuccess_closure, R._deletePaymentSuccess_closure, R._restorePaymentSuccess_closure, R._addPayment_closure, R._updatePayment_closure, R._setLoadedPayment_closure, Q.memoizedPaymentsByInvoice_closure, Q.paymentsByInvoiceSelector_closure, Q.paymentsByInvoiceSelector_closure0, Q.paymentsByInvoiceSelector__closure, Q.memoizedPaymentsByCredit_closure, Q.paymentsByCreditSelector_closure, Q.paymentsByCreditSelector_closure0, Q.paymentsByCreditSelector__closure, Q.memoizedFilteredPaymentList_closure, Q.filteredPaymentsSelector_closure, Q.filteredPaymentsSelector__closure, Q.filteredPaymentsSelector_closure0, Q.memoizedPaymentStatsForClient_closure, Q.paymentStatsForClient_closure, L.PaymentState_loadPayments_closure0, L.PaymentState_loadPayments_closure1, L.PaymentState_loadPayments_closure, D.handlePaymentTermAction_closure, E._editPaymentTerm_closure, E._viewPaymentTerm_closure, E._viewPaymentTermList_closure0, E._viewPaymentTermList__closure, E._archivePaymentTerm_closure, E._archivePaymentTerm__closure, E._archivePaymentTerm__closure0, E._archivePaymentTerm__closure1, E._deletePaymentTerm_closure, E._deletePaymentTerm__closure, E._deletePaymentTerm__closure0, E._deletePaymentTerm__closure1, E._restorePaymentTerm_closure, E._restorePaymentTerm__closure, E._restorePaymentTerm__closure0, E._restorePaymentTerm__closure1, E._savePaymentTerm_closure, E._savePaymentTerm__closure, E._savePaymentTerm__closure0, E._loadPaymentTerm_closure, E._loadPaymentTerm__closure, E._loadPaymentTerm__closure0, E._loadPaymentTerms_closure, E._loadPaymentTerms__closure, E._loadPaymentTerms__closure0, L.paymentTermUIReducer_closure, L.forceSelectedReducer_closure95, L.forceSelectedReducer_closure96, L.forceSelectedReducer_closure97, L.forceSelectedReducer_closure98, L.forceSelectedReducer_closure99, L.forceSelectedReducer_closure100, L.forceSelectedReducer_closure101, L.forceSelectedReducer_closure102, L.selectedIdReducer_closure193, L.selectedIdReducer_closure194, L.selectedIdReducer_closure195, L.selectedIdReducer_closure196, L.selectedIdReducer_closure197, L.selectedIdReducer_closure198, L.selectedIdReducer_closure199, L.selectedIdReducer_closure200, L.selectedIdReducer_closure201, L.selectedIdReducer_closure202, L.selectedIdReducer_closure203, L.selectedIdReducer_closure204, L.selectedIdReducer_closure205, L.selectedIdReducer_closure206, L.editingReducer_closure62, L.editingReducer_closure63, L.editingReducer_closure64, L.editingReducer_closure65, L.editingReducer__closure24, L._viewPaymentTermList_closure, L._filterPaymentTermsByCustom1_closure, L._filterPaymentTermsByCustom1_closure0, L._filterPaymentTermsByCustom2_closure, L._filterPaymentTermsByCustom2_closure0, L._filterPaymentTermsByState_closure, L._filterPaymentTermsByState_closure0, L._filterPaymentTerms_closure, L._sortPaymentTerms_closure, L._startListMultiselect_closure12, L._addToListMultiselect_closure12, L._removeFromListMultiselect_closure12, L._clearListMultiselect_closure12, L._archivePaymentTermSuccess_closure, L._deletePaymentTermSuccess_closure, L._restorePaymentTermSuccess_closure, L._addPaymentTerm_closure, L._updatePaymentTerm_closure, L._setLoadedPaymentTerm_closure, L._setLoadedCompany_closure7, L._setLoadedCompany__closure7, L._setLoadedCompany__closure8, L._setLoadedCompany_closure8, V.memoizedDropdownPaymentTermList_closure, V.dropdownPaymentTermsSelector_closure, V.dropdownPaymentTermsSelector_closure0, V.memoizedFilteredPaymentTermList_closure, V.filteredPaymentTermsSelector_closure, V.filteredPaymentTermsSelector_closure0, N.PaymentTermState_loadPaymentTerms_closure0, N.PaymentTermState_loadPaymentTerms_closure1, N.PaymentTermState_loadPaymentTerms_closure, Z.handleProductAction_closure, Z.handleProductAction_closure0, Z.handleProductAction__closure, E._editProduct_closure, E._viewProduct_closure, E._viewProductList_closure, E._viewProductList__closure, E._archiveProduct_closure, E._archiveProduct__closure, E._archiveProduct__closure0, E._archiveProduct__closure1, E._deleteProduct_closure, E._deleteProduct__closure, E._deleteProduct__closure0, E._deleteProduct__closure1, E._restoreProduct_closure, E._restoreProduct__closure, E._restoreProduct__closure0, E._restoreProduct__closure1, E._saveProduct_closure, E._saveProduct__closure, E._saveProduct__closure0, E._loadProduct_closure, E._loadProduct__closure, E._loadProduct__closure0, E._loadProducts_closure, E._loadProducts__closure, E._loadProducts__closure0, E._saveDocument_closure11, E._saveDocument__closure23, E._saveDocument__closure24, B.productUIReducer_closure, B.forceSelectedReducer_closure175, B.forceSelectedReducer_closure176, B.forceSelectedReducer_closure177, B.forceSelectedReducer_closure178, B.forceSelectedReducer_closure179, B.forceSelectedReducer_closure180, B.forceSelectedReducer_closure181, B.forceSelectedReducer_closure182, B.tabIndexReducer_closure23, B.tabIndexReducer_closure24, B.editingReducer_closure126, B.editingReducer__closure49, B.editingReducer_closure127, B.editingReducer_closure128, B.editingReducer_closure129, B.selectedIdReducer_closure352, B.selectedIdReducer_closure353, B.selectedIdReducer_closure354, B.selectedIdReducer_closure355, B.selectedIdReducer_closure356, B.selectedIdReducer_closure357, B.selectedIdReducer_closure358, B.selectedIdReducer_closure359, B.selectedIdReducer_closure360, B.selectedIdReducer_closure361, B.selectedIdReducer_closure362, B.selectedIdReducer_closure363, B.selectedIdReducer_closure364, B.selectedIdReducer_closure365, B._viewClientList_closure0, B._filterProductsByState_closure, B._filterProductsByState_closure0, B._filterProductsByCustom1_closure, B._filterProductsByCustom1_closure0, B._filterProductsByCustom2_closure, B._filterProductsByCustom2_closure0, B._filterProductsByCustom3_closure, B._filterProductsByCustom3_closure0, B._filterProductsByCustom4_closure, B._filterProductsByCustom4_closure0, B._filterProducts_closure, B._sortProducts_closure, B._startListMultiselect_closure22, B._addToListMultiselect_closure22, B._removeFromListMultiselect_closure22, B._clearListMultiselect_closure22, B._archiveProductSuccess_closure, B._deleteProductSuccess_closure, B._restoreProductSuccess_closure, B._addProduct_closure, B._updateProduct_closure, B._setLoadedProduct_closure, O.convertProductToInvoiceItem_closure, O.memoizedDropdownProductList_closure, O.dropdownProductsSelector_closure, O.dropdownProductsSelector_closure0, O.memoizedProductList_closure, O.productList_closure, O.productList_closure0, O.memoizedFilteredProductList_closure, O.filteredProductsSelector_closure, O.filteredProductsSelector_closure0, Y.ProductState_loadProducts_closure0, Y.ProductState_loadProducts_closure1, Y.ProductState_loadProducts_closure, M.handleProjectAction_closure, M.handleProjectAction_closure0, M.handleProjectAction_closure1, M.handleProjectAction_closure2, M.handleProjectAction_closure3, Q._editProject_closure, Q._viewProject_closure, Q._viewProjectList_closure0, Q._viewProjectList__closure, Q._archiveProject_closure, Q._archiveProject__closure, Q._archiveProject__closure0, Q._archiveProject__closure1, Q._deleteProject_closure, Q._deleteProject__closure, Q._deleteProject__closure0, Q._deleteProject__closure1, Q._restoreProject_closure, Q._restoreProject__closure, Q._restoreProject__closure0, Q._restoreProject__closure1, Q._saveProject_closure, Q._saveProject__closure, Q._saveProject__closure0, Q._loadProject_closure, Q._loadProject__closure, Q._loadProject__closure0, Q._loadProjects_closure, Q._loadProjects__closure, Q._loadProjects__closure0, Q._saveDocument_closure5, Q._saveDocument__closure11, Q._saveDocument__closure12, G.projectUIReducer_closure, G.forceSelectedReducer_closure15, G.forceSelectedReducer_closure16, G.forceSelectedReducer_closure17, G.forceSelectedReducer_closure18, G.forceSelectedReducer_closure19, G.forceSelectedReducer_closure20, G.forceSelectedReducer_closure21, G.forceSelectedReducer_closure22, G.tabIndexReducer_closure3, G.tabIndexReducer_closure4, G.saveCompleterReducer_closure, G.cancelCompleterReducer_closure, G.selectedIdReducer_closure34, G.selectedIdReducer_closure35, G.selectedIdReducer_closure36, G.selectedIdReducer_closure37, G.selectedIdReducer_closure38, G.selectedIdReducer_closure39, G.selectedIdReducer_closure40, G.selectedIdReducer_closure41, G.selectedIdReducer_closure42, G.selectedIdReducer_closure43, G.selectedIdReducer_closure44, G.selectedIdReducer_closure45, G.selectedIdReducer_closure46, G.selectedIdReducer_closure47, G.selectedIdReducer_closure48, G.editingReducer_closure14, G.editingReducer_closure15, G.editingReducer_closure16, G.editingReducer_closure17, G.editingReducer__closure7, G._viewProjectList_closure, G._filterProjectsByCustom1_closure, G._filterProjectsByCustom1_closure0, G._filterProjectsByCustom2_closure, G._filterProjectsByCustom2_closure0, G._filterProjectsByCustom3_closure, G._filterProjectsByCustom3_closure0, G._filterProjectsByCustom4_closure, G._filterProjectsByCustom4_closure0, G._filterProjectsByState_closure, G._filterProjectsByState_closure0, G._filterProjects_closure, G._sortProjects_closure, G._startListMultiselect_closure1, G._addToListMultiselect_closure1, G._removeFromListMultiselect_closure1, G._clearListMultiselect_closure1, G._archiveProjectSuccess_closure, G._deleteProjectSuccess_closure, G._restoreProjectSuccess_closure, G._addProject_closure, G._updateProject_closure, G._setLoadedProject_closure, Q.convertProjectToInvoiceItem_closure, Q.convertProjectToInvoiceItem_closure0, Q.convertProjectToInvoiceItem_closure1, Q.convertProjectToInvoiceItem_closure2, Q.convertProjectToInvoiceItem_closure3, Q.convertProjectToInvoiceItem_closure4, Q.memoizedDropdownProjectList_closure, Q.dropdownProjectsSelector_closure, Q.dropdownProjectsSelector_closure0, Q.memoizedFilteredProjectList_closure, Q.filteredProjectsSelector_closure, Q.filteredProjectsSelector_closure0, Q.taskDurationForProject_closure, Q.memoizedProjectStatsForClient_closure, Q.projectStatsForClient_closure, Q.memoizedProjectStatsForUser_closure, D.ProjectState_loadProjects_closure0, D.ProjectState_loadProjects_closure1, D.ProjectState_loadProjects_closure, E.handleQuoteAction_closure, E.handleQuoteAction_closure0, E.handleQuoteAction_closure1, E.handleQuoteAction_closure2, E.handleQuoteAction_closure3, E.handleQuoteAction_closure4, S._viewQuote_closure, S._viewQuoteList_closure0, S._viewQuoteList__closure, S._editQuote_closure, S._showEmailQuote_closure, S._showPdfQuote_closure, S._archiveQuote_closure, S._archiveQuote__closure, S._archiveQuote__closure0, S._archiveQuote__closure1, S._deleteQuote_closure, S._deleteQuote__closure, S._deleteQuote__closure0, S._deleteQuote__closure1, S._restoreQuote_closure, S._restoreQuote__closure, S._restoreQuote__closure0, S._restoreQuote__closure1, S._convertQuote_closure, S._convertQuote__closure, S._convertQuote__closure0, S._markSentQuote_closure, S._markSentQuote__closure, S._markSentQuote__closure0, S._emailQuote_closure, S._emailQuote__closure, S._emailQuote__closure0, S._saveQuote_closure, S._saveQuote__closure, S._saveQuote___closure, S._saveQuote__closure0, S._saveQuote__closure1, S._loadQuote_closure, S._loadQuote__closure, S._loadQuote__closure0, S._downloadQuotes_closure, S._downloadQuotes__closure, S._downloadQuotes__closure0, S._bulkEmailQuotes_closure, S._bulkEmailQuotes__closure, S._bulkEmailQuotes__closure0, S._loadQuotes_closure, S._loadQuotes__closure, S._loadQuotes__closure0, S._saveDocument_closure4, S._saveDocument__closure9, S._saveDocument__closure10, L.quoteUIReducer_closure, L.forceSelectedReducer_closure, L.forceSelectedReducer_closure0, L.forceSelectedReducer_closure1, L.forceSelectedReducer_closure2, L.forceSelectedReducer_closure3, L.forceSelectedReducer_closure4, L.forceSelectedReducer_closure5, L.forceSelectedReducer_closure6, L.tabIndexReducer_closure, L.tabIndexReducer_closure0, L.historyActivityIdReducer_closure, L.editingItemReducer_closure, L.editingItemReducer_closure0, L.selectedIdReducer_closure, L.selectedIdReducer_closure0, L.selectedIdReducer_closure1, L.selectedIdReducer_closure2, L.selectedIdReducer_closure3, L.selectedIdReducer_closure4, L.selectedIdReducer_closure5, L.selectedIdReducer_closure6, L.selectedIdReducer_closure7, L.selectedIdReducer_closure8, L.selectedIdReducer_closure9, L.selectedIdReducer_closure10, L.selectedIdReducer_closure11, L.selectedIdReducer_closure12, L.selectedIdReducer_closure13, L.selectedIdReducer_closure14, L.selectedIdReducer_closure15, L.selectedIdReducer_closure16, L.selectedIdReducer_closure17, L.editingReducer_closure, L.editingReducer__closure5, L.editingReducer_closure0, L.editingReducer__closure4, L.editingReducer_closure1, L.editingReducer_closure2, L.editingReducer__closure3, L.editingReducer_closure3, L.editingReducer__closure2, L.editingReducer_closure4, L.editingReducer__closure1, L.editingReducer___closure, L.editingReducer_closure5, L.editingReducer_closure6, L.editingReducer_closure7, L.editingReducer_closure8, L.editingReducer__closure0, L.editingReducer_closure9, L.editingReducer__closure, L._addQuoteItem_closure, L._addQuoteItems_closure, L._removeQuoteItem_closure, L._updateQuoteItem_closure, L._viewQuoteList_closure, L._filterQuotesByCustom1_closure, L._filterQuotesByCustom1_closure0, L._filterQuotesByCustom2_closure, L._filterQuotesByCustom2_closure0, L._filterQuotesByCustom3_closure, L._filterQuotesByCustom3_closure0, L._filterQuotesByCustom4_closure, L._filterQuotesByCustom4_closure0, L._filterQuotesByState_closure, L._filterQuotesByState_closure0, L._filterQuotesByStatus_closure, L._filterQuotesByStatus_closure0, L._filterQuotes_closure, L._sortQuotes_closure, L._startListMultiselect_closure, L._addToListMultiselect_closure, L._removeFromListMultiselect_closure, L._clearListMultiselect_closure, L._markSentQuoteSuccess_closure0, L._markSentQuoteSuccess_closure1, L._markSentQuoteSuccess_closure, L._archiveQuoteSuccess_closure, L._deleteQuoteSuccess_closure, L._restoreQuoteSuccess_closure, L._convertQuoteSuccess_closure0, L._convertQuoteSuccess_closure1, L._convertQuoteSuccess_closure, L._addQuote_closure, L._addQuote__closure, L._updateQuote_closure, L._updateQuote__closure, Y.memoizedFilteredQuoteList_closure, Y.filteredQuotesSelector_closure, Y.filteredQuotesSelector_closure0, Y.memoizedQuoteStatsForClient_closure, Y.quoteStatsForClient_closure, Y.memoizedQuoteStatsForDesign_closure, Y.quoteStatsForDesign_closure, Y.memoizedQuoteStatsForUser_closure, Y.quoteStatsForUser_closure, G.QuoteState_loadQuotes_closure0, G.QuoteState_loadQuotes_closure1, G.QuoteState_loadQuotes_closure, U.handleRecurringExpenseAction_closure, U.handleRecurringExpenseAction_closure0, U.handleRecurringExpenseAction_closure1, R._editRecurringExpense_closure, R._viewRecurringExpense_closure, R._viewRecurringExpenseList_closure0, R._viewRecurringExpenseList__closure, R._archiveRecurringExpense_closure, R._archiveRecurringExpense__closure, R._archiveRecurringExpense__closure0, R._archiveRecurringExpense__closure1, R._deleteRecurringExpense_closure, R._deleteRecurringExpense__closure, R._deleteRecurringExpense__closure0, R._deleteRecurringExpense__closure1, R._restoreRecurringExpense_closure, R._restoreRecurringExpense__closure, R._restoreRecurringExpense__closure0, R._restoreRecurringExpense__closure1, R._saveRecurringExpense_closure, R._saveRecurringExpense__closure, R._saveRecurringExpense__closure0, R._loadRecurringExpense_closure, R._loadRecurringExpense__closure, R._loadRecurringExpense__closure0, R._loadRecurringExpenses_closure, R._loadRecurringExpenses__closure, R._loadRecurringExpenses__closure0, R._startRecurringExpense_closure, R._startRecurringExpense__closure, R._startRecurringExpense__closure0, R._stopRecurringExpense_closure, R._stopRecurringExpense__closure, R._stopRecurringExpense__closure0, R._saveDocument_closure2, R._saveDocument__closure5, R._saveDocument__closure6, E.recurringExpenseUIReducer_closure, E.forceSelectedReducer_closure151, E.forceSelectedReducer_closure152, E.forceSelectedReducer_closure153, E.forceSelectedReducer_closure154, E.forceSelectedReducer_closure155, E.forceSelectedReducer_closure156, E.forceSelectedReducer_closure157, E.forceSelectedReducer_closure158, E.tabIndexReducer_closure17, E.tabIndexReducer_closure18, E.selectedIdReducer_closure301, E.selectedIdReducer_closure302, E.selectedIdReducer_closure303, E.selectedIdReducer_closure304, E.selectedIdReducer_closure305, E.selectedIdReducer_closure306, E.selectedIdReducer_closure307, E.selectedIdReducer_closure308, E.selectedIdReducer_closure309, E.selectedIdReducer_closure310, E.selectedIdReducer_closure311, E.selectedIdReducer_closure312, E.selectedIdReducer_closure313, E.selectedIdReducer_closure314, E.selectedIdReducer_closure315, E.editingReducer_closure97, E.editingReducer_closure98, E.editingReducer_closure99, E.editingReducer_closure100, E.editingReducer__closure37, E._viewRecurringExpenseList_closure, E._filterRecurringExpensesByCustom1_closure, E._filterRecurringExpensesByCustom1_closure0, E._filterRecurringExpensesByCustom2_closure, E._filterRecurringExpensesByCustom2_closure0, E._filterRecurringExpensesByState_closure, E._filterRecurringExpensesByState_closure0, E._filterRecurringExpenses_closure, E._sortRecurringExpenses_closure, E._startListMultiselect_closure19, E._addToListMultiselect_closure19, E._removeFromListMultiselect_closure19, E._clearListMultiselect_closure19, E._archiveRecurringExpenseSuccess_closure, E._deleteRecurringExpenseSuccess_closure, E._restoreRecurringExpenseSuccess_closure, E._addRecurringExpense_closure, E._addRecurringExpense__closure, E._updateRecurringExpense_closure, E._updateRecurringExpense__closure, E._startRecurringExpensesSuccess_closure, E._stopRecurringExpensesSuccess_closure, E._setLoadedRecurringExpense_closure, E._setLoadedRecurringExpense__closure, A.memoizedFilteredRecurringExpenseList_closure, A.filteredRecurringExpensesSelector_closure, A.filteredRecurringExpensesSelector_closure0, A.memoizedRecurringExpenseStatsForClient_closure, A.recurringExpenseStatsForClient_closure, A.memoizedRecurringExpenseStatsForVendor_closure, A.recurringExpenseStatsForVendor_closure, A.memoizedRecurringExpenseStatsForUser_closure, A.recurringExpenseStatsForUser_closure, A.memoizedRecurringExpenseStatsForExpense_closure, A.recurringExpenseStatsForExpense_closure, K.RecurringExpenseState_loadRecurringExpenses_closure0, K.RecurringExpenseState_loadRecurringExpenses_closure1, K.RecurringExpenseState_loadRecurringExpenses_closure, N.handleRecurringInvoiceAction_closure, N.handleRecurringInvoiceAction_closure0, N.handleRecurringInvoiceAction_closure1, N.handleRecurringInvoiceAction_closure2, Q._editRecurringInvoice_closure, Q._viewRecurringInvoice_closure, Q._viewRecurringInvoiceList_closure, Q._viewRecurringInvoiceList__closure, Q._showPdfRecurringInvoice_closure, Q._startRecurringInvoice_closure, Q._startRecurringInvoice__closure, Q._startRecurringInvoice__closure0, Q._stopRecurringInvoice_closure, Q._stopRecurringInvoice__closure, Q._stopRecurringInvoice__closure0, Q._archiveRecurringInvoice_closure, Q._archiveRecurringInvoice__closure, Q._archiveRecurringInvoice__closure0, Q._archiveRecurringInvoice__closure1, Q._deleteRecurringInvoice_closure, Q._deleteRecurringInvoice__closure, Q._deleteRecurringInvoice__closure0, Q._deleteRecurringInvoice__closure1, Q._restoreRecurringInvoice_closure, Q._restoreRecurringInvoice__closure, Q._restoreRecurringInvoice__closure0, Q._restoreRecurringInvoice__closure1, Q._saveRecurringInvoice_closure, Q._saveRecurringInvoice__closure, Q._saveRecurringInvoice___closure, Q._saveRecurringInvoice__closure0, Q._saveRecurringInvoice__closure1, Q._loadRecurringInvoice_closure, Q._loadRecurringInvoice__closure, Q._loadRecurringInvoice__closure0, Q._loadRecurringInvoices_closure, Q._loadRecurringInvoices__closure, Q._loadRecurringInvoices__closure0, Q._saveDocument_closure1, Q._saveDocument__closure3, Q._saveDocument__closure4, A.recurringInvoiceUIReducer_closure, A.forceSelectedReducer_closure119, A.forceSelectedReducer_closure120, A.forceSelectedReducer_closure121, A.forceSelectedReducer_closure122, A.forceSelectedReducer_closure123, A.forceSelectedReducer_closure124, A.forceSelectedReducer_closure125, A.forceSelectedReducer_closure126, A.tabIndexReducer_closure13, A.tabIndexReducer_closure14, A.historyActivityIdReducer_closure1, A.editingItemIndexReducer_closure, A.editingItemIndexReducer_closure0, A.selectedIdReducer_closure237, A.selectedIdReducer_closure238, 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.editingReducer_closure74, A.editingReducer__closure33, A.editingReducer_closure75, A.editingReducer__closure32, A.editingReducer_closure76, A.editingReducer_closure77, A.editingReducer__closure31, A.editingReducer_closure78, A.editingReducer__closure30, A.editingReducer_closure79, A.editingReducer__closure29, A.editingReducer___closure1, A.editingReducer_closure80, A.editingReducer_closure81, A.editingReducer_closure82, A.editingReducer_closure83, A.editingReducer__closure28, A.editingReducer_closure84, A.editingReducer__closure27, A._addRecurringInvoiceItem_closure, A._addRecurringInvoiceItems_closure, A._removeRecurringInvoiceItem_closure, A._updateRecurringInvoiceItem_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._archiveRecurringInvoiceSuccess_closure, A._deleteRecurringInvoiceSuccess_closure, A._emailRecurringInvoiceSuccess_closure, A._restoreRecurringInvoiceSuccess_closure, A._startRecurringInvoicesSuccess_closure, A._stopRecurringInvoicesSuccess_closure, A._addRecurringInvoice_closure, A._addRecurringInvoice__closure, A._updateRecurringInvoice_closure, A._updateRecurringInvoice__closure, L.memoizedFilteredRecurringInvoiceList_closure, L.filteredRecurringInvoicesSelector_closure, L.filteredRecurringInvoicesSelector_closure0, L.memoizedRecurringInvoiceStatsForClient_closure, L.recurringInvoiceStatsForClient_closure, L.memoizedRecurringInvoiceStatsForUser_closure, L.recurringInvoiceStatsForUser_closure, L.memoizedRecurringInvoiceStatsForInvoice_closure, L.recurringInvoiceStatsForInvoice_closure, L.memoizedRecurringInvoiceStatsForDesign_closure, L.recurringInvoiceStatsForDesign_closure, L.memoizedRecurringInvoiceStatsForSubscription_closure, L.recurringInvoiceStatsForSubscription_closure, Q.RecurringInvoiceState_loadRecurringInvoices_closure0, Q.RecurringInvoiceState_loadRecurringInvoices_closure1, Q.RecurringInvoiceState_loadRecurringInvoices_closure, R._viewReports_closure, R._viewReports__closure, R._viewReports___closure, X.reportsUIReducer_closure, X.reportsUIReducer_closure0, X.reportsUIReducer_closure1, D._viewSettings_closure, D._viewSettings__closure, D._viewSettings___closure, D._saveCompany_closure, D._saveCompany__closure, D._saveCompany__closure0, D._saveAuthUser_closure, D._saveAuthUser__closure, D._saveAuthUser__closure0, D._connectOAuthUser_closure0, D._connectOAuthUser__closure, D._connectOAuthUser__closure0, D._connectGmailUser_closure0, D._connectGmailUser__closure, D._connectGmailUser__closure0, D._disableTwoFactor_closure, D._disableTwoFactor__closure, D._disableTwoFactor__closure0, D._saveSettings_closure, D._saveSettings__closure, D._saveSettings__closure0, D._uploadLogo_closure, D._uploadLogo__closure, D._uploadLogo__closure0, D._saveDocument_closure3, D._saveDocument__closure7, D._saveDocument__closure8, Q.settingsUIReducer_closure, Q.settingsUIReducer__closure14, Q.settingsUIReducer_closure0, Q.settingsUIReducer__closure13, Q.settingsUIReducer_closure1, Q.settingsUIReducer__closure10, Q.settingsUIReducer__closure11, Q.settingsUIReducer__closure12, Q.settingsUIReducer_closure2, Q.settingsUIReducer__closure9, Q.settingsUIReducer_closure3, Q.settingsUIReducer__closure8, Q.settingsUIReducer_closure4, Q.settingsUIReducer__closure7, Q.settingsUIReducer_closure5, Q.settingsUIReducer__closure6, Q.settingsUIReducer_closure6, Q.settingsUIReducer__closure5, Q.settingsUIReducer_closure7, Q.settingsUIReducer__closure4, Q.settingsUIReducer_closure8, Q.settingsUIReducer__closure3, Q.settingsUIReducer_closure9, Q.settingsUIReducer__closure2, Q.settingsUIReducer_closure10, Q.settingsUIReducer__closure1, Q.settingsUIReducer_closure11, Q.settingsUIReducer__closure0, Q.settingsUIReducer_closure12, Q.settingsUIReducer__closure, Q.staticLoadedReducer_closure, Q.staticLoadedReducer__closure, Q.staticLoadedReducer__closure0, Q.staticLoadedReducer__closure1, Q.staticLoadedReducer__closure2, Q.staticLoadedReducer__closure3, Q.staticLoadedReducer__closure4, Q.staticLoadedReducer__closure5, Q.staticLoadedReducer__closure6, Q.staticLoadedReducer__closure7, Q.staticLoadedReducer__closure8, Q.staticLoadedReducer__closure9, Q.staticLoadedReducer__closure10, Q.staticLoadedReducer__closure11, Q.staticLoadedReducer__closure12, Q.staticLoadedReducer__closure13, Q.staticLoadedReducer__closure14, Q.staticLoadedReducer__closure15, Q.staticLoadedReducer__closure16, V.memoizedCountryList_closure, V.countryList_closure, V.memoizedGroupList_closure, V.groupList_closure, V.memoizedLanguageList_closure, V.languageList_closure, V.memoizedCurrencyList_closure, V.currencyList_closure, V.memoizedTimezoneList_closure, V.timezoneList_closure, V.memoizedDateFormatList_closure, V.dateFormatList_closure, V.memoizedIndustryList_closure, V.industryList_closure, V.memoizedSizeList_closure, V.sizeList_closure, V.memoizedGatewayList_closure, V.gatewayList_closure, V.gatewayList_closure0, V.memoizedPaymentTypeList_closure, V.paymentTypeList_closure, V.memoizedFontMap_closure, V.fontMap_closure, V.fontMap_closure0, A.handleSubscriptionAction_closure, T._editSubscription_closure, T._viewSubscription_closure, T._viewSubscriptionList_closure, T._viewSubscriptionList__closure, T._archiveSubscription_closure, T._archiveSubscription__closure, T._archiveSubscription__closure0, T._archiveSubscription__closure1, T._deleteSubscription_closure, T._deleteSubscription__closure, T._deleteSubscription__closure0, T._deleteSubscription__closure1, T._restoreSubscription_closure, T._restoreSubscription__closure, T._restoreSubscription__closure0, T._restoreSubscription__closure1, T._saveSubscription_closure, T._saveSubscription__closure, T._saveSubscription__closure0, T._loadSubscription_closure, T._loadSubscription__closure, T._loadSubscription__closure0, T._loadSubscriptions_closure, T._loadSubscriptions__closure, T._loadSubscriptions__closure0, X.subscriptionUIReducer_closure, X.forceSelectedReducer_closure143, X.forceSelectedReducer_closure144, X.forceSelectedReducer_closure145, X.forceSelectedReducer_closure146, X.forceSelectedReducer_closure147, X.forceSelectedReducer_closure148, X.forceSelectedReducer_closure149, X.forceSelectedReducer_closure150, X.tabIndexReducer_closure15, X.tabIndexReducer_closure16, X.selectedIdReducer_closure286, X.selectedIdReducer_closure287, X.selectedIdReducer_closure288, X.selectedIdReducer_closure289, X.selectedIdReducer_closure290, X.selectedIdReducer_closure291, X.selectedIdReducer_closure292, X.selectedIdReducer_closure293, X.selectedIdReducer_closure294, X.selectedIdReducer_closure295, X.selectedIdReducer_closure296, X.selectedIdReducer_closure297, X.selectedIdReducer_closure298, X.selectedIdReducer_closure299, X.selectedIdReducer_closure300, X.editingReducer_closure93, X.editingReducer_closure94, X.editingReducer_closure95, X.editingReducer_closure96, X.editingReducer__closure36, X._filterSubscriptionsByCustom1_closure, X._filterSubscriptionsByCustom1_closure0, X._filterSubscriptionsByCustom2_closure, X._filterSubscriptionsByCustom2_closure0, X._filterSubscriptionsByState_closure, X._filterSubscriptionsByState_closure0, X._filterSubscriptions_closure, X._sortSubscriptions_closure, X._startListMultiselect_closure18, X._addToListMultiselect_closure18, X._removeFromListMultiselect_closure18, X._clearListMultiselect_closure18, X._archiveSubscriptionSuccess_closure, X._deleteSubscriptionSuccess_closure, X._restoreSubscriptionSuccess_closure, X._addSubscription_closure, X._updateSubscription_closure, X._setLoadedSubscription_closure, F.memoizedFilteredSubscriptionList_closure, F.filteredSubscriptionsSelector_closure, F.filteredSubscriptionsSelector_closure0, M.SubscriptionState_loadSubscriptions_closure0, M.SubscriptionState_loadSubscriptions_closure1, M.SubscriptionState_loadSubscriptions_closure, U.handleTaskAction_closure, U.handleTaskAction_closure0, U.handleTaskAction_closure1, U.handleTaskAction__closure, U.handleTaskAction_closure2, U.handleTaskAction_closure3, U.handleTaskAction_closure4, U.handleTaskAction_closure5, U._editTask_closure, U._viewTask_closure, U._viewTaskList_closure0, U._viewTaskList__closure, U._archiveTask_closure, U._archiveTask__closure, U._archiveTask__closure0, U._archiveTask__closure1, U._deleteTask_closure, U._deleteTask__closure, U._deleteTask__closure0, U._deleteTask__closure1, U._restoreTask_closure, U._restoreTask__closure, U._restoreTask__closure0, U._restoreTask__closure1, U._saveTask_closure, U._saveTask__closure, U._saveTask__closure0, U._loadTask_closure, U._loadTask__closure, U._loadTask__closure0, U._loadTasks_closure, U._loadTasks__closure, U._loadTasks__closure0, U._saveDocument_closure6, U._saveDocument__closure13, U._saveDocument__closure14, U._sortTasks_closure0, U._sortTasks__closure, U._sortTasks__closure0, N.taskUIReducer_closure, N.forceSelectedReducer_closure23, N.forceSelectedReducer_closure24, N.forceSelectedReducer_closure25, N.forceSelectedReducer_closure26, N.forceSelectedReducer_closure27, N.forceSelectedReducer_closure28, N.forceSelectedReducer_closure29, N.forceSelectedReducer_closure30, N.tabIndexReducer_closure5, N.tabIndexReducer_closure6, N.editingTimeReducer_closure, N.editingTimeReducer_closure0, N.selectedIdReducer_closure49, N.selectedIdReducer_closure50, N.selectedIdReducer_closure51, N.selectedIdReducer_closure52, N.selectedIdReducer_closure53, N.selectedIdReducer_closure54, N.selectedIdReducer_closure55, N.selectedIdReducer_closure56, N.selectedIdReducer_closure57, N.selectedIdReducer_closure58, N.selectedIdReducer_closure59, N.selectedIdReducer_closure60, N.selectedIdReducer_closure61, N.selectedIdReducer_closure62, N.selectedIdReducer_closure63, N.editingReducer_closure18, N.editingReducer_closure19, N.editingReducer_closure20, N.editingReducer_closure21, N.editingReducer__closure8, N._viewTaskList_closure, N._filterTasksByCustom1_closure, N._filterTasksByCustom1_closure0, N._filterTasksByCustom2_closure, N._filterTasksByCustom2_closure0, N._filterTasksByState_closure, N._filterTasksByState_closure0, N._filterTasksByStatus_closure, N._filterTasksByStatus_closure0, N._filterTasks_closure, N._sortTasks_closure, N._addTaskTime_closure, N._startListMultiselect_closure2, N._addToListMultiselect_closure2, N._removeFromListMultiselect_closure2, N._clearListMultiselect_closure2, N._sortTasksSuccess_closure, N._sortTasksSuccess__closure, N._archiveTaskSuccess_closure, N._deleteTaskSuccess_closure, N._restoreTaskSuccess_closure, N._addTask_closure, N._updateTask_closure, N._setLoadedTask_closure, U.convertTaskToInvoiceItem_closure, U.convertTaskToInvoiceItem_closure0, U.convertTaskToInvoiceItem_closure1, U.memoizedTaskList_closure, U.taskList_closure, U.taskList_closure0, U.memoizedKanbanTaskList_closure, U.kanbanTasksSelector_closure, U.kanbanTasksSelector_closure0, U.memoizedFilteredTaskList_closure, U.filteredTasksSelector_closure, U.filteredTasksSelector_closure0, U.memoizedTaskStatsForClient_closure, U.taskStatsForClient_closure, U.memoizedTaskStatsForProject_closure, U.taskStatsForProject_closure, U.memoizedTaskStatsForUser_closure, M.TaskState_loadTasks_closure0, M.TaskState_loadTasks_closure1, M.TaskState_loadTasks_closure, V.handleTaskStatusAction_closure, V.handleTaskStatusAction_closure0, B._editTaskStatus_closure, B._viewTaskStatus_closure, B._viewTaskStatusList_closure0, B._viewTaskStatusList__closure, B._archiveTaskStatus_closure, B._archiveTaskStatus__closure, B._archiveTaskStatus__closure0, B._archiveTaskStatus__closure1, B._deleteTaskStatus_closure, B._deleteTaskStatus__closure, B._deleteTaskStatus__closure0, B._deleteTaskStatus__closure1, B._restoreTaskStatus_closure, B._restoreTaskStatus__closure, B._restoreTaskStatus__closure0, B._restoreTaskStatus__closure1, B._saveTaskStatus_closure, B._saveTaskStatus__closure, B._saveTaskStatus__closure0, B._loadTaskStatus_closure, B._loadTaskStatus__closure, B._loadTaskStatus__closure0, B._loadTaskStatuses_closure, B._loadTaskStatuses__closure, B._loadTaskStatuses__closure0, A.taskStatusUIReducer_closure, A.forceSelectedReducer_closure135, A.forceSelectedReducer_closure136, A.forceSelectedReducer_closure137, A.forceSelectedReducer_closure138, A.forceSelectedReducer_closure139, A.forceSelectedReducer_closure140, A.forceSelectedReducer_closure141, A.forceSelectedReducer_closure142, A.selectedIdReducer_closure271, A.selectedIdReducer_closure272, 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.editingReducer_closure89, A.editingReducer_closure90, A.editingReducer_closure91, A.editingReducer_closure92, A.editingReducer__closure35, 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, U.memoizedDropdownTaskStatusList_closure, U.dropdownTaskStatusesSelector_closure, U.dropdownTaskStatusesSelector_closure0, U.memoizedFilteredTaskStatusList_closure, U.filteredTaskStatusesSelector_closure, U.filteredTaskStatusesSelector_closure0, U.memoizedCalculateTaskStatusAmount_closure, U.calculateTaskStatusAmount_closure, U.memoizedTaskStatsForTaskStatus_closure, U.taskStatsForTaskStatus_closure, U.defaultTaskStatusId_closure, U.defaultTaskStatusId_closure0, L.TaskStatusState_loadTaskStatuses_closure0, L.TaskStatusState_loadTaskStatuses_closure1, L.TaskStatusState_loadTaskStatuses_closure, A.handleTaxRateAction_closure, T._editTaxRate_closure, T._viewTaxRate_closure, T._viewTaxRateList_closure0, T._viewTaxRateList__closure, T._archiveTaxRate_closure, T._archiveTaxRate__closure, T._archiveTaxRate__closure0, T._archiveTaxRate__closure1, T._deleteTaxRate_closure, T._deleteTaxRate__closure, T._deleteTaxRate__closure0, T._deleteTaxRate__closure1, T._restoreTaxRate_closure, T._restoreTaxRate__closure, T._restoreTaxRate__closure0, T._restoreTaxRate__closure1, T._saveTaxRate_closure, T._saveTaxRate__closure, T._saveTaxRate__closure0, T._loadTaxRate_closure, T._loadTaxRate__closure, T._loadTaxRate__closure0, T._loadTaxRates_closure, T._loadTaxRates__closure, T._loadTaxRates__closure0, Z.taxRateUIReducer_closure, Z.forceSelectedReducer_closure67, Z.forceSelectedReducer_closure68, Z.forceSelectedReducer_closure69, Z.forceSelectedReducer_closure70, Z.selectedIdReducer_closure134, Z.selectedIdReducer_closure135, Z.selectedIdReducer_closure136, Z.selectedIdReducer_closure137, Z.selectedIdReducer_closure138, Z.selectedIdReducer_closure139, Z.selectedIdReducer_closure140, Z.selectedIdReducer_closure141, Z.selectedIdReducer_closure142, Z.selectedIdReducer_closure143, Z.editingReducer_closure39, Z.editingReducer_closure40, Z.editingReducer_closure41, Z.editingReducer_closure42, Z.editingReducer__closure14, Z._viewTaxRateList_closure, Z._filterTaxRatesByState_closure, Z._filterTaxRatesByState_closure0, Z._filterTaxRates_closure, Z._sortTaxRates_closure, Z._startListMultiselect_closure8, Z._addToListMultiselect_closure8, Z._removeFromListMultiselect_closure8, Z._clearListMultiselect_closure8, Z._archiveTaxRateSuccess_closure, Z._deleteTaxRateSuccess_closure, Z._restoreTaxRateSuccess_closure, Z._addTaxRate_closure, Z._updateTaxRate_closure, Z._setLoadedTaxRate_closure, Z._setLoadedTaxRates_closure, Z._setLoadedTaxRates__closure, Z._setLoadedTaxRates__closure0, Z._setLoadedTaxRates_closure0, Z._setLoadedCompany_closure3, Z._setLoadedCompany__closure3, Z._setLoadedCompany__closure4, Z._setLoadedCompany_closure4, G.memoizedFilteredTaxRateList_closure, G.filteredTaxRatesSelector_closure, G.filteredTaxRatesSelector_closure0, Q.handleTokenAction_closure, D._editToken_closure, D._viewToken_closure, D._viewTokenList_closure0, D._viewTokenList__closure, D._archiveToken_closure, D._archiveToken__closure, D._archiveToken__closure0, D._archiveToken__closure1, D._deleteToken_closure, D._deleteToken__closure, D._deleteToken__closure0, D._deleteToken__closure1, D._restoreToken_closure, D._restoreToken__closure, D._restoreToken__closure0, D._restoreToken__closure1, D._saveToken_closure, D._saveToken__closure, D._saveToken__closure0, D._loadToken_closure, D._loadToken__closure, D._loadToken__closure0, D._loadTokens_closure, D._loadTokens__closure, D._loadTokens__closure0, S.tokenUIReducer_closure, S.forceSelectedReducer_closure103, S.forceSelectedReducer_closure104, S.forceSelectedReducer_closure105, S.forceSelectedReducer_closure106, S.forceSelectedReducer_closure107, S.forceSelectedReducer_closure108, S.forceSelectedReducer_closure109, S.forceSelectedReducer_closure110, S.selectedIdReducer_closure207, S.selectedIdReducer_closure208, S.selectedIdReducer_closure209, S.selectedIdReducer_closure210, S.selectedIdReducer_closure211, S.selectedIdReducer_closure212, S.selectedIdReducer_closure213, S.selectedIdReducer_closure214, S.selectedIdReducer_closure215, S.selectedIdReducer_closure216, S.selectedIdReducer_closure217, S.selectedIdReducer_closure218, S.selectedIdReducer_closure219, S.selectedIdReducer_closure220, S.selectedIdReducer_closure221, S.editingReducer_closure66, S.editingReducer_closure67, S.editingReducer_closure68, S.editingReducer_closure69, S.editingReducer__closure25, S._viewTokenList_closure, S._filterTokensByCustom1_closure, S._filterTokensByCustom1_closure0, S._filterTokensByCustom2_closure, S._filterTokensByCustom2_closure0, S._filterTokensByState_closure, S._filterTokensByState_closure0, S._filterTokens_closure, S._sortTokens_closure, S._startListMultiselect_closure13, S._addToListMultiselect_closure13, S._removeFromListMultiselect_closure13, S._clearListMultiselect_closure13, S._archiveTokenSuccess_closure, S._deleteTokenSuccess_closure, S._restoreTokenSuccess_closure, S._addToken_closure, S._updateToken_closure, S._setLoadedToken_closure, O.memoizedFilteredTokenList_closure, O.filteredTokensSelector_closure, O.filteredTokensSelector_closure0, N.TokenState_loadTokens_closure0, N.TokenState_loadTokens_closure1, N.TokenState_loadTokens_closure, Y.prefReducer_closure, Y._resortFields_closure, Y._resortFields_closure0, Y.sortFieldsReducer_closure, Y.sortFieldsReducer_closure0, Y.sortFieldsReducer_closure1, Y.sortFieldsReducer_closure2, Y.sortFieldsReducer_closure3, Y.sortFieldsReducer_closure4, Y.sortFieldsReducer_closure5, Y.sortFieldsReducer_closure6, Y.sortFieldsReducer_closure7, Y.sortFieldsReducer_closure8, Y.sortFieldsReducer_closure9, Y.sortFieldsReducer_closure10, Y.sortFieldsReducer_closure11, Y.sortFieldsReducer_closure12, Y.sortFieldsReducer_closure13, Y.sortFieldsReducer_closure14, Y.sortFieldsReducer_closure15, Y.sortFieldsReducer_closure16, Y.sortFieldsReducer_closure17, Y.sortFieldsReducer_closure18, Y.sortFieldsReducer_closure19, Y.sortFieldsReducer_closure20, Y.sidebarEditorReducer_closure, Y.sidebarEditorReducer__closure, Y.sidebarEditorReducer__closure0, Y.menuVisibleReducer_closure, Y.menuVisibleReducer_closure0, Y.historyVisibleReducer_closure, Y.historyVisibleReducer_closure0, Y.layoutReducer_closure, Y.moduleLayoutReducer_closure, Y.moduleLayoutReducer_closure0, Y.rowsPerPageReducer_closure, Y.manuSidebarReducer_closure, Y.historySidebarReducer_closure, Y.darkModeReducer_closure, Y.persistDataReducer_closure, Y.showKanbanReducer_closure, Y.isFilterVisibleReducer_closure, Y.longPressReducer_closure, Y.isPreviewVisibleReducer_closure, Y.isPreviewVisibleReducer_closure0, Y.requireAuthenticationReducer_closure, Y.colorThemeReducer_closure, Y.customColorsReducer_closure, Y.companyPrefReducer_closure, Y.historyReducer_closure, Y.historyReducer__closure, Y.historyReducer_closure0, Y.historyReducer_closure1, Y.historyReducer_closure2, Y.historyReducer_closure3, Y.historyReducer_closure4, Y.historyReducer_closure5, Y.historyReducer_closure6, Y.historyReducer_closure7, Y.historyReducer_closure8, Y.historyReducer_closure9, Y.historyReducer_closure10, Y.historyReducer_closure11, Y.historyReducer_closure12, Y.historyReducer_closure13, Y.historyReducer_closure14, Y.historyReducer_closure15, Y.historyReducer_closure16, Y.historyReducer_closure17, Y.historyReducer_closure18, Y.historyReducer_closure19, Y.historyReducer_closure20, Y.historyReducer_closure21, Y.historyReducer_closure22, Y.historyReducer_closure23, Y.historyReducer_closure24, Y.historyReducer_closure25, Y.historyReducer_closure26, Y.historyReducer_closure27, Y.historyReducer_closure28, Y.historyReducer_closure29, Y.historyReducer_closure30, Y.historyReducer_closure31, Y.historyReducer_closure32, Y.historyReducer_closure33, Y.historyReducer_closure34, Y.historyReducer_closure35, Y.historyReducer_closure36, Y.historyReducer_closure37, Y.historyReducer_closure38, Y.historyReducer_closure39, Y.historyReducer_closure40, Y.historyReducer_closure41, Y.historyReducer_closure42, Y.historyReducer_closure43, Y.historyReducer_closure44, Y.historyReducer_closure45, Y.historyReducer_closure46, Y._addToHistory_closure, Y._addToHistory_closure0, Y._addToHistory_closure1, Y._addToHistory_closure2, D.uiReducer_closure, D.lastActivityReducer_closure, D.filterReducer_closure, D.filterReducer_closure0, D.filterClearedAtReducer_closure, D.filterClearedAtReducer_closure0, D.currentRouteReducer_closure, D.selectedCompanyIndexReducer_closure, D.previewStackReducer_closure, D.previewStackReducer__closure, D.previewStackReducer_closure0, D.previewStackReducer_closure1, D.filterStackReducer_closure, D.filterStackReducer_closure0, D.filterStackReducer__closure, D.filterStackReducer_closure1, U.UIState_mainRoute_closure, U.UIState_subRoute_closure, U.UIState_previousMainRoute_closure, U.UIState_previousSubRoute_closure, X.handleUserAction_closure, X.handleUserAction_closure0, X.handleUserAction_closure1, X.handleUserAction_closure2, X.handleUserAction_closure3, X.handleUserAction_closure4, X.handleUserAction_closure5, X.handleUserAction_closure6, X.handleUserAction_closure7, X.handleUserAction_closure8, X.handleUserAction_closure9, X.handleUserAction_closure11, X.handleUserAction_closure10, X.handleUserAction_closure13, X.handleUserAction_closure12, X.handleUserAction_closure15, X.handleUserAction_closure14, X.handleUserAction_closure17, X.handleUserAction_closure16, X.handleUserAction__closure, X.handleUserAction_closure18, M._editUser_closure, M._viewUser_closure, M._viewUserList_closure0, M._viewUserList__closure, M._archiveUser_closure, M._archiveUser__closure, M._archiveUser__closure0, M._archiveUser__closure1, M._deleteUser_closure, M._deleteUser__closure, M._deleteUser__closure0, M._deleteUser__closure1, M._restoreUser_closure, M._restoreUser__closure, M._restoreUser__closure0, M._restoreUser__closure1, M._removeUser_closure, M._removeUser__closure, M._removeUser__closure0, M._resendInvite_closure, M._resendInvite__closure, M._resendInvite__closure0, M._saveUser_closure, M._saveUser__closure, M._saveUser__closure0, M._loadUser_closure, M._loadUser__closure, M._loadUser__closure0, M._loadUsers_closure, M._loadUsers__closure, M._loadUsers__closure0, E.userUIReducer_closure, E.forceSelectedReducer_closure71, E.forceSelectedReducer_closure72, E.forceSelectedReducer_closure73, E.forceSelectedReducer_closure74, E.forceSelectedReducer_closure75, E.forceSelectedReducer_closure76, E.forceSelectedReducer_closure77, E.forceSelectedReducer_closure78, E.selectedIdReducer_closure144, E.selectedIdReducer_closure145, E.selectedIdReducer_closure146, E.selectedIdReducer_closure147, E.selectedIdReducer_closure148, E.selectedIdReducer_closure149, E.selectedIdReducer_closure150, E.selectedIdReducer_closure151, E.selectedIdReducer_closure152, E.selectedIdReducer_closure153, E.selectedIdReducer_closure154, E.selectedIdReducer_closure155, E.selectedIdReducer_closure156, E.selectedIdReducer_closure157, E.selectedIdReducer_closure158, E.selectedIdReducer_closure159, E.editingReducer_closure43, E.editingReducer_closure44, E.editingReducer_closure45, E.editingReducer_closure46, E.editingReducer__closure15, E._viewUserList_closure, E._filterUsersByCustom1_closure, E._filterUsersByCustom1_closure0, E._filterUsersByCustom2_closure, E._filterUsersByCustom2_closure0, E._filterUsersByCustom3_closure, E._filterUsersByCustom3_closure0, E._filterUsersByCustom4_closure, E._filterUsersByCustom4_closure0, E._filterUsersByState_closure, E._filterUsersByState_closure0, E._filterUsers_closure, E._sortUsers_closure, E._startListMultiselect_closure9, E._addToListMultiselect_closure9, E._removeFromListMultiselect_closure9, E._clearListMultiselect_closure9, E._archiveUserSuccess_closure, E._deleteUserSuccess_closure, E._restoreUserSuccess_closure, E._removeUserSuccess_closure, E._addUser_closure, E._updateUser_closure, E._updateAuthUser_closure, E._connectOAuthUser_closure, E._connectGmailUser_closure, E._setLoadedUser_closure, E._setLoadedUsers_closure, E._setLoadedUsers__closure, E._setLoadedUsers__closure0, E._setLoadedUsers_closure0, E._setLoadedCompany_closure5, E._setLoadedCompany__closure5, E._setLoadedCompany__closure6, E._setLoadedCompany_closure6, L.memoizedFilteredUserList_closure, L.filteredUsersSelector_closure, L.filteredUsersSelector_closure0, L.memoizedUserList_closure, L.userList_closure, L.userList_closure0, L.memoizedGmailUserList_closure, L.gmailUserList_closure, L.handleVendorAction_closure, F._editVendor_closure, F._viewVendor_closure, F._viewVendorList_closure0, F._viewVendorList__closure, F._archiveVendor_closure, F._archiveVendor__closure, F._archiveVendor__closure0, F._archiveVendor__closure1, F._deleteVendor_closure, F._deleteVendor__closure, F._deleteVendor__closure0, F._deleteVendor__closure1, F._restoreVendor_closure, F._restoreVendor__closure, F._restoreVendor__closure0, F._restoreVendor__closure1, F._saveVendor_closure, F._saveVendor__closure, F._saveVendor__closure0, F._loadVendor_closure, F._loadVendor__closure, F._loadVendor__closure0, F._loadVendors_closure, F._loadVendors__closure, F._loadVendors__closure0, F._saveDocument_closure7, F._saveDocument__closure15, F._saveDocument__closure16, K.vendorUIReducer_closure, K.forceSelectedReducer_closure31, K.forceSelectedReducer_closure32, K.forceSelectedReducer_closure33, K.forceSelectedReducer_closure34, K.forceSelectedReducer_closure35, K.forceSelectedReducer_closure36, K.forceSelectedReducer_closure37, K.forceSelectedReducer_closure38, K.tabIndexReducer_closure7, K.tabIndexReducer_closure8, K.saveCompleterReducer_closure0, K.cancelCompleterReducer_closure0, K.selectedIdReducer_closure64, K.selectedIdReducer_closure65, K.selectedIdReducer_closure66, K.selectedIdReducer_closure67, K.selectedIdReducer_closure68, K.selectedIdReducer_closure69, K.selectedIdReducer_closure70, K.selectedIdReducer_closure71, K.selectedIdReducer_closure72, K.selectedIdReducer_closure73, K.selectedIdReducer_closure74, K.selectedIdReducer_closure75, K.selectedIdReducer_closure76, K.selectedIdReducer_closure77, K.selectedIdReducer_closure78, K.editingReducer_closure22, K.editingReducer_closure23, K.editingReducer_closure24, K.editingReducer_closure25, K.editingReducer__closure9, K._addContact_closure, K._removeContact_closure, K._updateContact_closure, K._viewVendorList_closure, K._filterVendorsByCustom1_closure, K._filterVendorsByCustom1_closure0, K._filterVendorsByCustom2_closure, K._filterVendorsByCustom2_closure0, K._filterVendorsByCustom3_closure, K._filterVendorsByCustom3_closure0, K._filterVendorsByCustom4_closure, K._filterVendorsByCustom4_closure0, K._filterVendorsByState_closure, K._filterVendorsByState_closure0, K._filterVendors_closure, K._sortVendors_closure, K._startListMultiselect_closure3, K._addToListMultiselect_closure3, K._removeFromListMultiselect_closure3, K._clearListMultiselect_closure3, K._archiveVendorSuccess_closure, K._deleteVendorSuccess_closure, K._restoreVendorSuccess_closure, K._addVendor_closure, K._updateVendor_closure, K._setLoadedVendor_closure, G.memoizedDropdownVendorList_closure, G.dropdownVendorsSelector_closure, G.dropdownVendorsSelector_closure0, G.memoizedFilteredVendorList_closure, G.filteredVendorsSelector_closure, G.filteredVendorsSelector_closure0, G.memoizedVendorStatsForUser_closure, G.vendorStatsForUser_closure, G.memoizedCalculateVendorBalance_closure, G.calculateVendorBalance_closure, Y.VendorState_loadVendors_closure0, Y.VendorState_loadVendors_closure1, Y.VendorState_loadVendors_closure, S.handleWebhookAction_closure, T._editWebhook_closure, T._viewWebhook_closure, T._viewWebhookList_closure0, T._viewWebhookList__closure, T._archiveWebhook_closure, T._archiveWebhook__closure, T._archiveWebhook__closure0, T._archiveWebhook__closure1, T._deleteWebhook_closure, T._deleteWebhook__closure, T._deleteWebhook__closure0, T._deleteWebhook__closure1, T._restoreWebhook_closure, T._restoreWebhook__closure, T._restoreWebhook__closure0, T._restoreWebhook__closure1, T._saveWebhook_closure, T._saveWebhook__closure, T._saveWebhook__closure0, T._loadWebhook_closure, T._loadWebhook__closure, T._loadWebhook__closure0, T._loadWebhooks_closure, T._loadWebhooks__closure, T._loadWebhooks__closure0, L.webhookUIReducer_closure, L.forceSelectedReducer_closure111, L.forceSelectedReducer_closure112, L.forceSelectedReducer_closure113, L.forceSelectedReducer_closure114, L.forceSelectedReducer_closure115, L.forceSelectedReducer_closure116, L.forceSelectedReducer_closure117, L.forceSelectedReducer_closure118, L.selectedIdReducer_closure222, L.selectedIdReducer_closure223, L.selectedIdReducer_closure224, L.selectedIdReducer_closure225, L.selectedIdReducer_closure226, L.selectedIdReducer_closure227, L.selectedIdReducer_closure228, L.selectedIdReducer_closure229, L.selectedIdReducer_closure230, L.selectedIdReducer_closure231, L.selectedIdReducer_closure232, L.selectedIdReducer_closure233, L.selectedIdReducer_closure234, L.selectedIdReducer_closure235, L.selectedIdReducer_closure236, L.editingReducer_closure70, L.editingReducer_closure71, L.editingReducer_closure72, L.editingReducer_closure73, L.editingReducer__closure26, L._viewWebhookList_closure, L._filterWebhooksByCustom1_closure, L._filterWebhooksByCustom1_closure0, L._filterWebhooksByCustom2_closure, L._filterWebhooksByCustom2_closure0, L._filterWebhooksByState_closure, L._filterWebhooksByState_closure0, L._filterWebhooks_closure, L._sortWebhooks_closure, L._startListMultiselect_closure14, L._addToListMultiselect_closure14, L._removeFromListMultiselect_closure14, L._clearListMultiselect_closure14, L._archiveWebhookSuccess_closure, L._deleteWebhookSuccess_closure, L._restoreWebhookSuccess_closure, L._addWebhook_closure, L._updateWebhook_closure, L._setLoadedWebhook_closure, E.memoizedFilteredWebhookList_closure, E.filteredWebhooksSelector_closure, E.filteredWebhooksSelector_closure0, V.WebhookState_loadWebhooks_closure0, V.WebhookState_loadWebhooks_closure1, V.WebhookState_loadWebhooks_closure, T.FieldGrid_build_closure, T.FieldGrid_build__closure, T.FieldGrid_build_closure0, D.ActionMenuButton_build_closure, D.ActionMenuButton_build_closure0, D.ActionMenuButton_build_closure1, Z._AppBottomBarState_build_closure0, Z._AppBottomBarState_build__closure14, Z._AppBottomBarState_build___closure8, Z._AppBottomBarState_build___closure7, Z._AppBottomBarState_build____closure1, Z._AppBottomBarState_build_____closure2, Z._AppBottomBarState_build__closure15, Z._AppBottomBarState_build_closure1, Z._AppBottomBarState_build__closure12, Z._AppBottomBarState_build___closure6, Z._AppBottomBarState_build___closure5, Z._AppBottomBarState_build____closure0, Z._AppBottomBarState_build_____closure1, Z._AppBottomBarState_build__closure13, Z._AppBottomBarState_build_closure6, Z._AppBottomBarState_build__closure2, Z._AppBottomBarState_build___closure0, Z._AppBottomBarState_build___closure, Z._AppBottomBarState_build____closure, Z._AppBottomBarState_build_____closure0, Z._AppBottomBarState_build_____closure, Z._AppBottomBarState_build__closure3, Z._AppBottomBarState_build_closure2, Z._AppBottomBarState_build__closure10, Z._AppBottomBarState_build___closure4, Z._AppBottomBarState_build__closure11, Z._AppBottomBarState_build_closure3, Z._AppBottomBarState_build__closure8, Z._AppBottomBarState_build___closure3, Z._AppBottomBarState_build__closure9, Z._AppBottomBarState_build_closure4, Z._AppBottomBarState_build__closure6, Z._AppBottomBarState_build___closure2, Z._AppBottomBarState_build__closure7, Z._AppBottomBarState_build_closure5, Z._AppBottomBarState_build__closure4, Z._AppBottomBarState_build___closure1, Z._AppBottomBarState_build__closure5, Z._AppBottomBarState_build_closure, Z._AppBottomBarState_build_closure__onColumnsPressed, Z._AppBottomBarState_build___onColumnsPressed_closure, Z._AppBottomBarState_build___onColumnsPressed__closure, Z._AppBottomBarState_build___onColumnsPressed__closure0, Z._AppBottomBarState_build___onColumnsPressed__closure1, Z._AppBottomBarState_build__closure, Z._AppBottomBarState_build__closure0, Z._AppBottomBarState_build__closure1, Z.CustomFieldSelector_build_closure0, Z.CustomFieldSelector_build_closure, Z.CustomFieldSelector_build__closure, Z.CustomFieldSelector_build___closure, G.AppBuilderState_rebuild_closure, R.AppHeader_build__value1, R.AppHeader_build__value2, O._AppScrollbarState_build_closure, O._AppScrollbarState_build__closure0, O._AppScrollbarState_build_closure0, O._AppScrollbarState_build__closure, Z.BottomButtons_build_closure, Z.BottomButtons_build_closure0, O._ChangeLayoutBannerState_build_closure, O._ChangeLayoutBannerState_build__closure0, O._ChangeLayoutBannerState_build_closure0, O._ChangeLayoutBannerState_build__closure, T.ConfirmEmail_build_closure, T.ConfirmEmail_build__closure, T.ConfirmEmail_build___closure, B.ConfirmEmailBuilder_build_closure, B.ConfirmEmailVM_fromStore_closure0, B.ConfirmEmailVM_fromStore_closure, B.ConfirmEmailVM_fromStore_closure1, B.ConfirmEmailVM_fromStore__closure, K._DesktopSessionTimeoutState_initState_closure, K._DesktopSessionTimeoutState_initState__closure, K._DesktopSessionTimeoutState_build_closure, K._DesktopSessionTimeoutState_build__closure, K._DesktopSessionTimeoutState_build___closure, E.MessageDialog_build_closure, E.MessageDialog_build_closure0, E.MessageDialog_build_closure1, M.ErrorDialog_build_closure, M.ErrorDialog_build__closure, M.ErrorDialog_build_closure0, M.ErrorDialog_build_closure1, E._HealthCheckDialogState_runCheck_closure, E._HealthCheckDialogState_runCheck_closure0, E._HealthCheckDialogState_runCheck__closure, E._HealthCheckDialogState_runCheck_closure1, E._HealthCheckDialogState_clearCache_closure, E._HealthCheckDialogState_clearCache_closure0, E._HealthCheckDialogState_clearCache__closure, E._HealthCheckDialogState_clearCache_closure1, E._HealthCheckDialogState_build_closure, E._HealthCheckDialogState_build_closure0, E._HealthCheckDialogState_build_closure1, E._HealthListTile_build_closure, E.multiselectDialog_closure, E.multiselectDialog__closure, E.MultiSelectListState_build_closure, E.MultiSelectListState_build_closure0, E.MultiSelectListState_build_closure1, E.MultiSelectListState_build_closure2, E.MultiSelectListState_build_closure3, E.MultiSelectListState_build__closure3, E.MultiSelectListState_build_closure4, E.MultiSelectListState_build__closure2, E.MultiSelectListState_build___closure, E.MultiSelectListState_build_closure5, E.MultiSelectListState_build__closure1, E.MultiSelectListState_build_closure6, E.MultiSelectListState_build__closure0, E.MultiSelectListState_build_closure7, E.MultiSelectListState_build__closure, E.MultiSelectListState_build_closure8, E.MultiSelectListState_build_closure9, L.DismissibleEntity_build_closure, L.DismissibleEntity_build_closure0, L.DismissibleEntity_build_closure1, L.DismissibleEntity_build_closure2, L.DismissibleEntity_build_closure3, L.DismissibleEntity_build_closure4, V.DocumentGrid_build_closure, V.DocumentGrid_build_closure0, V.DocumentGrid_build_closure1, V.DocumentGrid_build__closure, V.DocumentTile_build_closure0, V.DocumentTile_build__closure, V.DocumentTile_build___closure, V.DocumentTile_build_closure, V.DocumentPreview_build_closure0, V.DocumentPreview_build_closure, K.EditScaffold_build_closure4, K.EditScaffold_build_closure, K.EditScaffold_build_closure1, K.EditScaffold_build_closure0, K.EditScaffold_build_closure2, K.EditScaffold_build__closure, K.EditScaffold_build_closure3, L.showEntityActionsDialog_closure, L.showEntityActionsDialog_closure0, L.EntityActionListTile_build_closure, O._EntityListTileState_build_closure, O._EntityListTileState_build_closure0, O._EntityListTileState_build_closure1, O._EntityListTileState_build__closure0, O._EntityListTileState_build_closure2, O._EntityListTileState_build__closure, O._EntityListTileState_build_closure4, O._EntityListTileState_build_closure3, O._EntitiesListTileState_build_closure0, O._EntitiesListTileState_build__closure0, O._EntitiesListTileState_build_closure1, O._EntitiesListTileState_build__closure, O._EntitiesListTileState_build_closure, O._EntitiesListTileState_build_closure3, O._EntitiesListTileState_build_closure2, F._EntityDropdownState__showOptions_closure, F._EntityDropdownState__showOptions__closure0, F._EntityDropdownState__showOptions__closure, F._EntityDropdownState_build_closure, F._EntityDropdownState_build_closure0, F._EntityDropdownState_build__closure4, F._EntityDropdownState_build_closure5, F._EntityDropdownState_build__closure, F._EntityDropdownState_build__closure0, F._EntityDropdownState_build_closure3, F._EntityDropdownState_build_closure4, F._EntityDropdownState_build_closure1, F._EntityDropdownState_build__closure3, F._EntityDropdownState_build__closure2, F._EntityDropdownState_build_closure2, F._EntityDropdownState_build__closure1, F._EntityDropdownState_build___closure, F._EntityDropdownState_build_closure6, F._EntityDropdownState_build_closure7, F._EntityDropdownDialogState_build__selectEntity, F._EntityDropdownDialogState_build__headerRow, F._EntityDropdownDialogState_build__headerRow_closure, F._EntityDropdownDialogState_build__headerRow__closure0, F._EntityDropdownDialogState_build__headerRow_closure0, F._EntityDropdownDialogState_build__headerRow_closure1, F._EntityDropdownDialogState_build__headerRow__closure, F._EntityDropdownDialogState_build__createList, F._EntityDropdownDialogState_build__createList_closure, F._EntityDropdownDialogState_build__createList_closure0, F._EntityDropdownDialogState_build__createList__closure, F._EntityListTile_build_closure, D.EntityHeader_build__value1, D.EntityHeader_build__value2, E.EntityTopFilter_build_closure, E.EntityTopFilter_build_closure1, E.EntityTopFilter_build_closure0, E.EntityTopFilter_build_closure2, E.EntityTopFilter_build_closure3, E.EntityTopFilter_build_closure4, E.EntityTopFilter_build__closure0, E.EntityTopFilter_build__closure, E.EntityTopFilter_build___closure, E.EntityTopFilter_build___closure0, E.EntityTopFilter_build_closure5, Q.AppDropdownButton_build_closure, Z.AppToggleButtons_build_closure, K.BoolDropdownButton_build_closure, K.BoolDropdownButton_build_closure0, K.BoolDropdownButton_build_closure2, K.BoolDropdownButton_build_closure1, K.BoolDropdownButton_build_closure4, K.BoolDropdownButton_build_closure3, R.ClientPicker_build_closure, A._FormColorPickerState_didChangeDependencies_closure, A._FormColorPickerState_didChangeDependencies_closure0, A._FormColorPickerState__onChanged_closure, A._FormColorPickerState__selectColor_closure, A._FormColorPickerState__showPicker_closure, A._FormColorPickerState__showPicker__closure, A._FormColorPickerState__showPicker__closure0, A._FormColorPickerState__showPicker__closure1, A._FormColorPickerState_build_closure, B._CustomFieldState_build_closure, B._CustomFieldState_build_closure0, B._CustomFieldState_build_closure1, B._CustomFieldState_build_closure2, B._CustomFieldState_build__closure, K._DatePickerState__onFoucsChanged_closure, K._DatePickerState_build_closure, K._DatePickerState_build_closure0, K._DatePickerState_build__closure, S._DecoratedFormFieldState_build_closure, S._DecoratedFormFieldState_build__closure, S._DecoratedFormFieldState_build_closure0, S._DecoratedFormFieldState_build_closure1, A.DesignPicker_build_closure1, A.DesignPicker_build_closure, A.DesignPicker_build_closure0, U._DurationPickerState__onFoucsChanged_closure, U._DurationPickerState_build_closure1, U._DurationPickerState_build__closure, U._DurationPickerState_build_closure, U._DurationPickerState_build__closure0, U._DurationPickerState_build_closure0, Y.DynamicSelector_build_closure, Y.DynamicSelector_build_closure0, Y.DynamicSelector_build_closure1, A._GrowableFormFieldState__onFoucsChanged_closure, B.LearnMoreUrl_build_closure, B.NotificationSettings_build_closure, B.NotificationSettings_build_closure0, B.NotificationSettings_build_closure1, B.NotificationSettings_build__closure, B._NotificationSelector_build_closure, S._PasswordFormFieldState_build_closure, S._PasswordFormFieldState_build__closure, S._PasswordFormFieldState_build_closure0, V.SaveCancelButtons_build_closure, V.SaveCancelButtons_build__closure0, V.SaveCancelButtons_build_closure0, V.SaveCancelButtons_build__closure, M._TimePickerState__onFoucsChanged_closure, M._TimePickerState__showTimePicker_closure, M._TimePickerState_build_closure, M._TimePickerState_build_closure0, M._TimePickerState_build__closure, M._TimePickerState_build__closure0, M._TimePickerState_build__closure1, V.HistoryDrawer_build_closure, V.HistoryDrawer_build__closure, V.HistoryDrawer_build_closure0, V._HistoryListTileState_build_closure1, V._HistoryListTileState_build_closure0, V._HistoryListTileState_build_closure, V._HistoryListTileState_build__closure, A.HistoryDrawerBuilder_build_closure, E._InvoiceEmailViewState_dispose_closure, E._InvoiceEmailViewState__onChanged_closure, E._InvoiceEmailViewState__loadTemplate_closure, E._InvoiceEmailViewState__loadTemplate_closure0, E._InvoiceEmailViewState__loadTemplate__closure, E._InvoiceEmailViewState__buildTemplateDropdown_closure, E._InvoiceEmailViewState__buildTemplateDropdown__closure0, E._InvoiceEmailViewState__buildTemplateDropdown__closure1, E._InvoiceEmailViewState__buildTemplateDropdown_closure0, E._InvoiceEmailViewState__buildTemplateDropdown_closure1, E._InvoiceEmailViewState__buildTemplateDropdown_closure2, E._InvoiceEmailViewState__buildTemplateDropdown__closure, E._InvoiceEmailViewState__buildEdit_closure, E._InvoiceEmailViewState__buildEdit_closure0, E._InvoiceEmailViewState__buildHistory_closure, E._InvoiceEmailViewState_build_closure, E._InvoiceEmailViewState_build_closure0, E._InvoiceEmailViewState_build_closure1, E._InvoiceEmailViewState_build_closure2, D._TaxRateDropdownState_didChangeDependencies_closure, D._TaxRateDropdownState_didChangeDependencies_closure0, D._TaxRateDropdownState_didChangeDependencies_closure1, D._TaxRateDropdownState_build_closure, D._TaxRateDropdownState_build_closure0, D._TaxRateDropdownState_build_closure1, D._TaxRateDropdownState_build_closure2, D._TaxRateDropdownState_build_closure3, R.TaxRateField_build_closure, R.TaxRateField_build_closure0, Z.LinkTextSpan_closure, N._ListFilterState_onFocusChanged_closure, N._ListFilterState_build_closure, N._ListFilterState_build_closure0, N._ListFilterState_build__closure, Y.ListScaffold_build_closure, Y.ListScaffold_build_closure0, Y.ListScaffold_build_closure1, Y.ListScaffold_build__closure0, Y.ListScaffold_build_closure2, Y.ListScaffold_build_closure3, Y.ListScaffold_build_closure6, Y.ListScaffold_build_closure4, Y.ListScaffold_build_closure5, Y.ListScaffold_build__closure, N.ActivityListTile_build_closure, G.AppListTile_build_closure0, G.AppListTile_build_closure, N.FilterListTile_build_closure, N.FilterListTile_build__closure, E._LiveTextState_initState_closure, E._LiveTextState_initState__closure, X.MainScreen_build_closure, X.MainScreen_build__closure, V.MenuDrawer_build__companyLogo, V.MenuDrawer_build__companyListItem, V.MenuDrawer_build__companyListItem_closure, V.MenuDrawer_build_closure, V.MenuDrawer_build__closure0, V.MenuDrawer_build_closure0, V.MenuDrawer_build__closure, V.MenuDrawer_build_closure1, V.MenuDrawer_build_closure2, V.MenuDrawer_build_closure3, V.MenuDrawer_build_closure4, V.MenuDrawer_build_closure6, V.MenuDrawer_build_closure5, V.MenuDrawer_build_closure7, V.MenuDrawer_build_closure8, V._DrawerTileState_build_closure, V._DrawerTileState_build_closure0, V._DrawerTileState_build_closure2, V._DrawerTileState_build_closure1, V.SidebarFooter_build_closure, V.SidebarFooter_build__closure0, V.SidebarFooter_build__closure1, V.SidebarFooter_build_closure0, V.SidebarFooter_build_closure1, V.SidebarFooter_build_closure2, V.SidebarFooter_build_closure3, V.SidebarFooter_build_closure4, V.SidebarFooter_build_closure5, V.SidebarFooter_build_closure6, V.SidebarFooter_build_closure7, V.SidebarFooter_build_closure8, V.SidebarFooter_build__closure, V.SidebarFooter_build_closure9, V.SidebarFooterCollapsed_build_closure0, V.SidebarFooterCollapsed_build_closure, V.SidebarFooterCollapsed_build_closure1, V._showContactUs_closure, V._showUpdate_closure, V._showConnectStripe_closure, V._showAbout_closure, V._showAbout__closure, V._showAbout__closure0, V._showAbout__closure2, V._showAbout__closure1, V._showAbout__closure3, V._showAbout___closure0, V._showAbout____closure, V._showAbout_____closure, V._showAbout______closure, V._showAbout______closure0, V._showAbout______closure1, V._showAbout______closure2, V._showAbout____closure0, V._showAbout____closure1, V._showAbout____closure2, V._showAbout____closure3, V._showAbout____closure4, V._showAbout____closure5, V._showAbout____closure6, V._showAbout__closure4, V._showAbout___closure, V._showAbout__closure5, V._showAbout__closure6, V._showAbout__closure7, V._showAbout__closure8, V._showAbout__closure9, V._ContactUsDialogState__sendMessage_closure, V._ContactUsDialogState__sendMessage_closure0, V._ContactUsDialogState__sendMessage__closure0, V._ContactUsDialogState__sendMessage__closure1, V._ContactUsDialogState__sendMessage_closure1, V._ContactUsDialogState__sendMessage__closure, V._ContactUsDialogState_build_closure, V._ContactUsDialogState_build_closure0, V._ContactUsDialogState_build_closure1, V._ContactUsDialogState_build_closure2, V._ContactUsDialogState_build__closure, A.MenuDrawerBuilder_build_closure, A.MenuDrawerVM_fromStore_closure1, A.MenuDrawerVM_fromStore__closure, A.MenuDrawerVM_fromStore_closure, A.MenuDrawerVM_fromStore__closure1, A.MenuDrawerVM_fromStore_closure0, A.MenuDrawerVM_fromStore__closure0, A.MenuDrawerVM_fromStore___closure, A.MenuDrawerVM_fromStore___closure0, V._SystemLogViewerState_build_closure, V._SystemLogViewerState_build_closure2, V._SystemLogViewerState_build__closure, V._SystemLogViewerState_build_closure0, V._SystemLogViewerState_build_closure1, V._SystemLogViewerState_build__closure0, V._SystemLogViewerState_build___closure, V._SystemLogViewerState_build____closure, L.AppDataTable__buildHeadingCell_arrowWithPadding, L.AppDataTable_build_closure, L.AppDataTable_build_closure0, L.AppDataTable_build_closure1, L.AppDataTable_build_closure2, L.AppDataTable_build_closure3, L.TableRowInkWell_getRectCallback_closure0, L._SortArrowState__rebuild_closure0, N.AppPaginatedDataTableState__handleDataSourceChanged_closure, N.AppPaginatedDataTableState_pageTo_closure, N.AppPaginatedDataTableState__getBlankRowFor_closure, N.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure, N.AppPaginatedDataTableState__getRows_closure, N.AppPaginatedDataTableState_build_closure, D.EntityDataTableSource_getRow_closure, D.EntityDataTableSource_getRow_closure0, D.EntityDataTableSource_getRow_closure1, D.EntityDataTableSource_getRow_closure2, D.EntityDataTableSource_getRow_closure3, D.EntityDataTableSource_getRow__closure, S._EntityListState_initState_closure, S._EntityListState_build_closure, S._EntityListState_build_closure7, S._EntityListState_build__closure, S._EntityListState_build__closure0, S._EntityListState_build__closure2, S._EntityListState_build__closure1, S._EntityListState_build__closure3, S._EntityListState_build__closure4, S._EntityListState_build__closure6, S._EntityListState_build___closure, S._EntityListState_build___closure0, S._EntityListState_build__closure5, S._EntityListState_build___closure1, S._EntityListState_build__closure7, S._EntityListState_build_closure0, S._EntityListState_build_closure1, S._EntityListState_build_closure8, S._EntityListState_build_closure2, S._EntityListState_build__closure12, S._EntityListState_build_closure4, S._EntityListState_build__closure9, S._EntityListState_build_closure3, S._EntityListState_build__closure11, S._EntityListState_build__closure10, S._EntityListState_build___closure2, S._EntityListState_build_closure6, S._EntityListState_build__closure8, S._EntityListState_build_closure5, K._VariablesHelpState_build_closure, K._VariablesHelpState_build_closure0, K._VariablesHelpState_build_closure1, K._VariableGrid_build_closure, K._VariableGrid_build_closure0, K._VariableGrid_build__closure, K._VariableGrid_build___closure, G.ViewScaffold_build_closure, G.ViewScaffold_build_closure0, G.ViewScaffold_build_closure1, G.ViewScaffold_build_closure2, G.ViewScaffold_build_closure6, G.ViewScaffold_build_closure3, G.ViewScaffold_build_closure4, G.ViewScaffold_build__closure, G.ViewScaffold_build_closure5, A._WebSessionTimeoutState_initState_closure, B.InitScreen_build_closure0, B.InitScreen_build_closure, Y._LoginState__submitSignUpForm_closure, Y._LoginState__submitSignUpForm_closure0, Y._LoginState__submitSignUpForm__closure1, Y._LoginState__submitSignUpForm_closure1, Y._LoginState__submitSignUpForm__closure0, Y._LoginState__submitSignUpForm_closure2, Y._LoginState__submitSignUpForm__closure, Y._LoginState__submitLoginForm_closure, Y._LoginState__submitLoginForm_closure0, Y._LoginState__submitLoginForm__closure0, Y._LoginState__submitLoginForm___closure, Y._LoginState__submitLoginForm_closure1, Y._LoginState__submitLoginForm__closure, Y._LoginState_build_closure, Y._LoginState_build_closure0, Y._LoginState_build__closure6, Y._LoginState_build_closure1, Y._LoginState_build_closure2, Y._LoginState_build__closure5, Y._LoginState_build_closure3, Y._LoginState_build__closure4, Y._LoginState_build_closure4, Y._LoginState_build__closure3, Y._LoginState_build_closure5, Y._LoginState_build__closure2, Y._LoginState_build_closure7, Y._LoginState_build_closure6, Y._LoginState_build_closure8, Y._LoginState_build_closure9, Y._LoginState_build_closure10, Y._LoginState_build_closure11, Y._LoginState_build__closure1, Y._LoginState_build_closure12, Y._LoginState_build__closure0, Y._LoginState_build_closure13, Y._LoginState_build_closure14, Y._LoginState_build_closure15, Y._LoginState_build__closure, Y._LoginState_build_closure16, Y._LoginState_build_closure17, G.LoginScreen_build_closure, G.LoginVM_fromStore__handleLogin, G.LoginVM_fromStore__handleLogin_closure, G.LoginVM_fromStore__formatApiUrl, G.LoginVM_fromStore_closure3, G.LoginVM_fromStore__closure0, G.LoginVM_fromStore___closure0, G.LoginVM_fromStore_closure4, G.LoginVM_fromStore__closure, G.LoginVM_fromStore___closure, G.LoginVM_fromStore_closure1, G.LoginVM_fromStore__closure1, G.LoginVM_fromStore_closure0, G.LoginVM_fromStore_closure, G.LoginVM_fromStore__closure2, G.LoginVM_fromStore_closure2, V.ClientListItem_build_closure, V.ClientListItem_build__closure2, V.ClientListItem_build__closure1, V.ClientListItem_build__closure, V.ClientListItem_build__closure0, V.ClientListItem_build__closure5, V.ClientListItem_build__closure4, V.ClientListItem_build__closure3, Y.ClientListBuilder_build_closure, Y.ClientListBuilder_build__closure, Y.ClientListVM_fromStore__handleRefresh, Y.ClientListVM_fromStore_closure, Y.ClientListVM_fromStore_closure0, Y.ClientListVM_fromStore_closure1, S._ClientPdfViewState_loadPdf_closure, S._ClientPdfViewState_loadPdf_closure0, S._ClientPdfViewState_loadPdf__closure, S._ClientPdfViewState_loadPdf_closure1, S._ClientPdfViewState_build_closure, S._ClientPdfViewState_build_closure0, S._ClientPdfViewState_build_closure1, S._ClientPdfViewState_build__closure0, S._ClientPdfViewState_build_closure2, S._ClientPdfViewState_build__closure, S._ClientPdfViewState_build_closure3, S._ClientPdfViewState_build_closure4, V.ClientPdfScreen_build_closure0, V.ClientPdfScreen_build_closure, B.ClientScreen_build_closure9, B.ClientScreen_build_closure7, B.ClientScreen_build_closure8, B.ClientScreen_build_closure4, B.ClientScreen_build_closure5, B.ClientScreen_build_closure, B.ClientScreen_build_closure0, B.ClientScreen_build_closure1, B.ClientScreen_build_closure2, B.ClientScreen_build_closure3, B.ClientScreen_build_closure6, D.ClientScreenBuilder_build_closure, M._ClientEditState_build_closure, M._ClientEditState_build_closure0, M._ClientEditState_build__closure, R.ClientEditBillingAddressState_didChangeDependencies_closure, R.ClientEditBillingAddressState_didChangeDependencies_closure0, R.ClientEditBillingAddressState_dispose_closure, R.ClientEditBillingAddressState__onChanged_closure, R.ClientEditBillingAddressState__onChanged_closure0, R.ClientEditBillingAddressState_build_closure, R.ClientEditBillingAddressState_build__closure0, R.ClientEditBillingAddressState_build_closure0, R.ClientEditBillingAddressState_build__closure, R._ClientEditContactsState__showContactEditor_closure, R._ClientEditContactsState__showContactEditor__closure, R._ClientEditContactsState_build_closure, R._ClientEditContactsState_build__closure, R._ClientEditContactsState_build_closure0, R._ClientEditContactsState_build_closure1, R.ContactEditDetailsState_didChangeDependencies_closure, R.ContactEditDetailsState_didChangeDependencies_closure0, R.ContactEditDetailsState_dispose_closure, R.ContactEditDetailsState__onChanged_closure, R.ContactEditDetailsState__onChanged_closure0, R.ContactEditDetailsState_build_closure0, R.ContactEditDetailsState_build_closure, R.ContactEditDetailsState_build_closure2, R.ContactEditDetailsState_build_closure1, R.ContactEditDetailsState_build_closure4, R.ContactEditDetailsState_build_closure3, R.ContactEditDetailsState_build_closure6, R.ContactEditDetailsState_build_closure5, R.ContactEditDetailsState_build_closure7, R.ContactEditDetailsState_build_closure8, R.ContactEditDetailsState_build_closure9, R.ContactEditDetailsState_build_closure10, R.ContactEditDetailsState_build_closure11, R.ContactEditDetailsState_build_closure12, R.ContactEditDetailsState_build__closure, R.ContactEditDetailsState_build_closure13, F.ClientEditContactsScreen_build_closure0, F.ClientEditContactsScreen_build_closure, F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure, F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0, F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1, F.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2, Q.ClientEditDetailsState_didChangeDependencies_closure, Q.ClientEditDetailsState_didChangeDependencies_closure0, Q.ClientEditDetailsState_dispose_closure, Q.ClientEditDetailsState__onChanged_closure, Q.ClientEditDetailsState__onChanged_closure0, Q.ClientEditDetailsState_build_closure, Q.ClientEditDetailsState_build_closure0, Q.ClientEditDetailsState_build__closure0, Q.ClientEditDetailsState_build_closure1, Q.ClientEditDetailsState_build__closure, U.ClientEditFooter_build_closure, L.ClientEditNotesState_didChangeDependencies_closure, L.ClientEditNotesState_didChangeDependencies_closure0, L.ClientEditNotesState_dispose_closure, L.ClientEditNotesState__onChanged_closure, L.ClientEditNotesState__onChanged_closure0, L.ClientEditNotesState_build_closure, L.ClientEditNotesState_build_closure0, L.ClientEditNotesState_build__closure0, L.ClientEditNotesState_build_closure1, L.ClientEditNotesState_build__closure, M.ClientEditSettingsState_didChangeDependencies_closure, M.ClientEditSettingsState_didChangeDependencies_closure0, M.ClientEditSettingsState_dispose_closure, M.ClientEditSettingsState__onChanged_closure, M.ClientEditSettingsState__onChanged_closure0, M.ClientEditSettingsState_build_closure, M.ClientEditSettingsState_build__closure3, M.ClientEditSettingsState_build_closure0, M.ClientEditSettingsState_build__closure2, M.ClientEditSettingsState_build_closure1, M.ClientEditSettingsState_build_closure2, M.ClientEditSettingsState_build__closure1, M.ClientEditSettingsState_build_closure3, M.ClientEditSettingsState_build_closure4, M.ClientEditSettingsState_build__closure0, M.ClientEditSettingsState_build_closure5, M.ClientEditSettingsState_build__closure, R.ClientEditShippingAddressState_didChangeDependencies_closure, R.ClientEditShippingAddressState_didChangeDependencies_closure0, R.ClientEditShippingAddressState_dispose_closure, R.ClientEditShippingAddressState__onChanged_closure, R.ClientEditShippingAddressState__onChanged_closure0, R.ClientEditShippingAddressState_build_closure, R.ClientEditShippingAddressState_build__closure0, R.ClientEditShippingAddressState_build_closure0, R.ClientEditShippingAddressState_build__closure, M.ClientEditScreen_build_closure0, M.ClientEditScreen_build_closure, M.ClientEditVM_ClientEditVM$fromStore_closure, M.ClientEditVM_ClientEditVM$fromStore_closure3, M.ClientEditVM_ClientEditVM$fromStore__closure, M.ClientEditVM_ClientEditVM$fromStore_closure2, M.ClientEditVM_ClientEditVM$fromStore__closure0, M.ClientEditVM_ClientEditVM$fromStore_closure1, M.ClientEditVM_ClientEditVM$fromStore_closure0, M.ClientEditVM_ClientEditVM$fromStore__closure1, M.ClientEditVM_ClientEditVM$fromStore___closure, M.ClientEditVM_ClientEditVM$fromStore___closure0, M.ClientEditVM_ClientEditVM$fromStore___closure1, M.ClientEditVM_ClientEditVM$fromStore____closure, G._ClientViewState_build_closure0, G._ClientViewState_build__closure, G._ClientViewState_build__closure0, G._ClientViewState_build__closure1, G._ClientViewState_build__closure2, G._ClientViewState_build__closure3, G._ClientViewState_build__closure4, G._ClientViewState_build_closure, G._ClientViewState_build__closure5, G._ClientViewState_build___closure, G._ClientViewState_build___closure0, G._ClientViewState_build___closure1, G._ClientViewState_build___closure2, G._ClientViewState_build___closure3, G._ClientViewState_build___closure4, R._ClientViewActivityState_build_closure0, R._ClientViewActivityState_build_closure, Q._ClientViewDetailsState_build__buildDetailsList, Q._ClientViewDetailsState_build__buildDetailsList_closure, Q._ClientViewDetailsState_build__buildDetailsList__closure1, Q._ClientViewDetailsState_build__buildDetailsList__closure2, Q._ClientViewDetailsState_build__buildDetailsList__closure3, Q._ClientViewDetailsState_build__buildDetailsList___closure0, Q._ClientViewDetailsState_build__buildDetailsList__closure4, Q._ClientViewDetailsState_build__buildDetailsList___closure, Q._ClientViewDetailsState_build__buildDetailsList_closure0, Q._ClientViewDetailsState_build__buildDetailsList__closure0, Q._ClientViewDetailsState_build__buildDetailsList_closure1, Q._ClientViewDetailsState_build__buildDetailsList__closure, Q._ClientViewDetailsState_build__buildDetailsList_closure2, Q._ClientViewDetailsState_build__buildDetailsList_closure3, T.ClientViewDocuments_build_closure, T.ClientViewDocuments_build_closure0, U._ClientViewLedgerState_build_closure, U._ClientViewLedgerState_build_closure1, U._ClientViewLedgerState_build_closure0, U._ClientViewLedgerState_build__closure0, U._ClientViewLedgerState_build__closure, Z.ClientOverview_build_closure, Z.ClientOverview_build_closure0, Z.ClientOverview_build_closure1, Z.ClientOverview_build_closure2, Z.ClientOverview_build_closure3, X.ClientViewScreen_build_closure0, X.ClientViewScreen_build_closure, X.ClientViewVM_ClientViewVM$fromStore__handleRefresh, X.ClientViewVM_ClientViewVM$fromStore_closure, X.ClientViewVM_ClientViewVM$fromStore_closure0, X.ClientViewVM_ClientViewVM$fromStore__closure0, X.ClientViewVM_ClientViewVM$fromStore__closure1, X.ClientViewVM_ClientViewVM$fromStore___closure, X.ClientViewVM_ClientViewVM$fromStore_closure1, X.ClientViewVM_ClientViewVM$fromStore__closure, G._CompanyGatewayListState_build_closure1, G._CompanyGatewayListState_build_closure0, G._CompanyGatewayListState_build_closure, G._CompanyGatewayListState_build__closure, Z.CompanyGatewayListItem_build_closure0, Z.CompanyGatewayListItem_build_closure, S.CompanyGatewayListBuilder_build_closure, S.CompanyGatewayListVM_fromStore__handleRefresh, S.CompanyGatewayListVM_fromStore_closure, S.CompanyGatewayListVM_fromStore_closure1, S.CompanyGatewayListVM_fromStore__closure, S.CompanyGatewayListVM_fromStore_closure0, S.CompanyGatewayListVM_fromStore__closure0, D.CompanyGatewayScreen_build_closure11, D.CompanyGatewayScreen_build_closure10, D.CompanyGatewayScreen_build_closure, D.CompanyGatewayScreen_build__closure0, D.CompanyGatewayScreen_build__closure1, D.CompanyGatewayScreen_build_closure0, D.CompanyGatewayScreen_build_closure1, D.CompanyGatewayScreen_build__closure, D.CompanyGatewayScreen_build_closure2, D.CompanyGatewayScreen_build_closure4, D.CompanyGatewayScreen_build_closure5, D.CompanyGatewayScreen_build_closure6, D.CompanyGatewayScreen_build_closure7, D.CompanyGatewayScreen_build_closure8, D.CompanyGatewayScreen_build_closure3, D.CompanyGatewayScreen_build_closure9, Y.CompanyGatewayScreenBuilder_build_closure, Y.CompanyGatewayScreenVM_fromStore_closure, Y.CompanyGatewayScreenVM_fromStore__closure, V._CompanyGatewayEditState_didChangeDependencies_closure, V._CompanyGatewayEditState_build_closure, V._CompanyGatewayEditState_build_closure0, V._CompanyGatewayEditState_build__closure12, V._CompanyGatewayEditState_build_closure1, V._CompanyGatewayEditState_build_closure2, V._CompanyGatewayEditState_build_closure3, V._CompanyGatewayEditState_build__closure11, V._CompanyGatewayEditState_build_closure4, V._CompanyGatewayEditState_build__closure10, V._CompanyGatewayEditState_build_closure5, V._CompanyGatewayEditState_build_closure6, V._CompanyGatewayEditState_build__closure9, V._CompanyGatewayEditState_build___closure, V._CompanyGatewayEditState_build_closure7, V._CompanyGatewayEditState_build__closure8, V._CompanyGatewayEditState_build_closure8, V._CompanyGatewayEditState_build__closure7, V._CompanyGatewayEditState_build_closure9, V._CompanyGatewayEditState_build__closure6, V._CompanyGatewayEditState_build_closure10, V._CompanyGatewayEditState_build__closure5, V._CompanyGatewayEditState_build_closure11, V._CompanyGatewayEditState_build__closure4, V._CompanyGatewayEditState_build_closure12, V._CompanyGatewayEditState_build__closure3, V._CompanyGatewayEditState_build_closure13, V._CompanyGatewayEditState_build__closure2, V._CompanyGatewayEditState_build_closure14, V._CompanyGatewayEditState_build__closure1, V._CompanyGatewayEditState_build_closure15, V._CompanyGatewayEditState_build__closure0, V._CompanyGatewayEditState_build_closure17, V._CompanyGatewayEditState_build_closure16, V._CompanyGatewayEditState_build__closure, V.CardListTile_build_closure, V.GatewayConfigSettings_build_closure, V.GatewayConfigSettings_build_closure0, V.GatewayConfigSettings_build__closure, V._GatewayConfigFieldState__onChanged_closure, V._GatewayConfigFieldState__obscureText_closure, V._GatewayConfigFieldState_build_closure, V._GatewayConfigFieldState_build_closure0, V._GatewayConfigFieldState_build_closure1, V._GatewayConfigFieldState_build_closure2, V._GatewayConfigFieldState_build_closure3, V._LimitEditorState__onChanged_closure, V._LimitEditorState__onChanged_closure0, V._LimitEditorState__onTextChange_closure, V._LimitEditorState_build_closure, V._LimitEditorState_build__closure0, V._LimitEditorState_build_closure0, V._LimitEditorState_build__closure, V._FeesEditorState_dispose_closure, V._FeesEditorState_didChangeDependencies_closure, V._FeesEditorState_didChangeDependencies_closure0, V._FeesEditorState__onChanged_closure, V._FeesEditorState__onChanged_closure0, V._FeesEditorState__onChanged__closure, V._FeesEditorState_build_closure, V._FeesEditorState_build__closure2, V._FeesEditorState_build___closure2, V._FeesEditorState_build_closure0, V._FeesEditorState_build__closure1, V._FeesEditorState_build___closure1, V._FeesEditorState_build_closure1, V._FeesEditorState_build__closure0, V._FeesEditorState_build___closure0, V._FeesEditorState_build_closure2, V._FeesEditorState_build__closure, V._FeesEditorState_build___closure, L.CompanyGatewayEditScreen_build_closure0, L.CompanyGatewayEditScreen_build_closure, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure, L.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0, G._CompanyGatewayViewState_build_closure1, G._CompanyGatewayViewState_build_closure, G._CompanyGatewayViewState_build_closure0, G._CompanyGatewayOverview_build_closure, G._CompanyGatewayOverview_build_closure0, G._CompanyGatewayOverview_build_closure2, G._CompanyGatewayOverview_build_closure1, A.CompanyGatewayViewScreen_build_closure0, A.CompanyGatewayViewScreen_build_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2, S.CreditEmailScreen_build_closure1, S.CreditEmailScreen_build_closure0, S.CreditEmailScreen_build_closure, S.EmailCreditVM_EmailCreditVM$fromStore_closure, S.EmailCreditVM_EmailCreditVM$fromStore_closure0, S.EmailCreditVM_EmailCreditVM$fromStore__closure, K.CreditListItem_build_closure, K.CreditListItem_build__closure2, K.CreditListItem_build__closure1, K.CreditListItem_build__closure, K.CreditListItem_build__closure0, K.CreditListItem_build__closure5, K.CreditListItem_build__closure4, K.CreditListItem_build__closure3, U.CreditListBuilder_build_closure, U.CreditListBuilder_build__closure, U.CreditListVM_fromStore__handleRefresh, U.CreditListVM_fromStore_closure, U.CreditListVM_fromStore_closure0, U.CreditListVM_fromStore_closure1, U.CreditPdfScreen_build_closure0, U.CreditPdfScreen_build_closure, A.CreditScreen_build_closure9, A.CreditScreen_build_closure7, A.CreditScreen_build_closure8, A.CreditScreen_build_closure4, A.CreditScreen_build_closure5, A.CreditScreen_build_closure, A.CreditScreen_build_closure0, A.CreditScreen_build_closure1, A.CreditScreen_build_closure2, A.CreditScreen_build_closure3, A.CreditScreen_build_closure6, R.CreditScreenBuilder_build_closure, M._CreditEditState_build_closure1, M._CreditEditState_build_closure2, M._CreditEditState_build_closure0, M._CreditEditState_build_closure, M._CreditEditState_build__closure, M._CreditEditState_build___closure, M._CreditEditState_build___closure1, M._CreditEditState_build___closure0, T.CreditEditDetailsScreen_build_closure0, T.CreditEditDetailsScreen_build_closure, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure1, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure, T.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0, R.CreditEditItemsScreen_build_closure0, R.CreditEditItemsScreen_build_closure, R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure, R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0, R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1, R.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure, R.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2, G.CreditEditNotesScreen_build_closure0, G.CreditEditNotesScreen_build_closure, G.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure, U.CreditEditPDFScreen_build_closure0, U.CreditEditPDFScreen_build_closure, X.CreditEditScreen_build_closure0, X.CreditEditScreen_build_closure, X.CreditEditVM_CreditEditVM$fromStore_closure, X.CreditEditVM_CreditEditVM$fromStore__closure, X.CreditEditVM_CreditEditVM$fromStore___closure, X.CreditEditVM_CreditEditVM$fromStore___closure0, X.CreditEditVM_CreditEditVM$fromStore___closure1, X.CreditEditVM_CreditEditVM$fromStore____closure, X.CreditEditVM_CreditEditVM$fromStore_closure0, X.CreditEditVM_CreditEditVM$fromStore_closure1, M.CreditViewScreen_build_closure0, M.CreditViewScreen_build_closure, M.CreditViewVM_CreditViewVM$fromStore__handleRefresh, M.CreditViewVM_CreditViewVM$fromStore_closure, M.CreditViewVM_CreditViewVM$fromStore_closure0, M.CreditViewVM_CreditViewVM$fromStore_closure1, M.CreditViewVM_CreditViewVM$fromStore__closure0, M.CreditViewVM_CreditViewVM$fromStore__closure1, M.CreditViewVM_CreditViewVM$fromStore___closure, M.CreditViewVM_CreditViewVM$fromStore_closure2, M.CreditViewVM_CreditViewVM$fromStore__closure, M.CreditViewVM_CreditViewVM$fromStore_closure3, A.DashboardActivity_build_closure, U._DashboardChartState__onSelectionChanged_closure, U._DashboardChartState__onSelectionChanged_closure0, U._DashboardChartState__onSelectionChanged_closure1, U._DashboardChartState_build_closure, U._DashboardChartState_build__closure, U._DashboardChartState_build___closure, E._DashboardDateRangePickerState_build_closure, E._DashboardDateRangePickerState_build_closure0, E._DashboardDateRangePickerState_build__closure2, E._DashboardDateRangePickerState_build_closure1, E._DashboardDateRangePickerState_build__closure1, E._DashboardDateRangePickerState_build_closure2, E._DashboardDateRangePickerState_build_closure3, E._DashboardDateRangePickerState_build_closure4, E._DashboardDateRangePickerState_build_closure5, E._DashboardDateRangePickerState_build__closure0, E._DashboardDateRangePickerState_build_closure6, E._DashboardDateRangePickerState_build_closure7, E._DashboardDateRangePickerState_build_closure8, E._DashboardDateRangePickerState_build__closure, Y.DashboardPanels__showDateOptions_closure, Y.DashboardPanels__header_closure, Y.DashboardPanels__header__closure, Y.DashboardPanels__header__closure0, Y.DashboardPanels__header__closure1, Y.DashboardPanels__header__closure2, Y.DashboardPanels__header__closure3, Y.DashboardPanels__header__closure4, Y.DashboardPanels__header___closure1, Y.DashboardPanels__header__closure5, Y.DashboardPanels__header___closure0, Y.DashboardPanels__header__closure6, Y.DashboardPanels__header___closure, Y.DashboardPanels__header____closure, Y.DashboardPanels__header__closure7, Y.DashboardPanels__paymentChart_closure, Y.DashboardPanels__paymentChart_closure0, Y.DashboardPanels__quoteChart_closure, Y.DashboardPanels__quoteChart_closure0, Y.DashboardPanels__taskChart_closure, Y.DashboardPanels__taskChart_closure0, Y.DashboardPanels__expenseChart_closure, Y.DashboardPanels__expenseChart_closure0, Y.DashboardPanels_build_closure, Y.DashboardPanels_build_closure0, Y.DashboardPanels_build_closure1, Y.DashboardPanels_build_closure2, Y.DashboardPanels_build_closure3, Y.__DashboardPanelState_build_closure, Y.__DashboardPanelState_build__closure0, Y.__DashboardPanelState_build__closure1, Y.__DashboardPanelState_build__closure, Y.__DashboardPanelState_build__closure3, Y.__DashboardPanelState_build__closure4, Y.__DashboardPanelState_build__closure2, Y._InvoiceChart_build_closure, Y._InvoiceChart_build_closure0, F._DashboardScreenState_initState_closure, F._DashboardScreenState_initState_closure0, F._DashboardScreenState_initState__closure, F._DashboardScreenState_build_closure, F._DashboardScreenState_build__closure0, F._DashboardScreenState_build_closure0, F._DashboardScreenState_build_closure1, F._DashboardScreenState_build__closure, F._DashboardScreenState_build_closure2, F._CustomTabBarView_build_closure, F._CustomTabBarView_build__closure, F._CustomTabBarView_build_closure0, F._CustomTabBarView_build_closure1, F._CustomTabBarView_build_closure2, Q.DashboardScreenBuilder_build_closure, Q.DashboardVM_fromStore__handleRefresh, Q.DashboardVM_fromStore_closure, Q.DashboardVM_fromStore_closure2, Q.DashboardVM_fromStore_closure0, Q.DashboardVM_fromStore_closure5, Q.DashboardVM_fromStore_closure1, Q.DashboardVM_fromStore_closure3, Q.DashboardVM_fromStore_closure4, Q.DashboardVM_fromStore_closure6, S.SidebarScaffold_build_closure, S.InvoiceSidebar_build_closure, S.InvoiceSidebar_build_closure0, S.InvoiceSidebar_build_closure1, S.InvoiceSidebar_build_closure2, S.InvoiceSidebar_build_closure3, S.InvoiceSidebar_build_closure4, S.PaymentSidebar_build_closure, S.PaymentSidebar_build_closure0, S.PaymentSidebar_build_closure1, S.PaymentSidebar_build_closure2, S.QuoteSidebar_build_closure, S.QuoteSidebar_build_closure0, S.QuoteSidebar_build_closure1, S.QuoteSidebar_build_closure2, S.QuoteSidebar_build_closure3, S.QuoteSidebar_build_closure4, S.TaskSidebar_build_closure, S.TaskSidebar_build_closure0, S.TaskSidebar_build_closure1, S.TaskSidebar_build_closure2, S.TaskSidebar_build_closure3, S.TaskSidebar_build_closure4, S.ExpenseSidbar_build_closure, S.ExpenseSidbar_build_closure0, S.ExpenseSidbar_build_closure1, S.ExpenseSidbar_build_closure2, S._DashboardSidebar_build_closure, G.DesignListItem_build_closure1, G.DesignListItem_build_closure0, G.DesignListItem_build_closure, F.DesignListBuilder_build_closure, F.DesignListBuilder_build__closure, F.DesignListVM_fromStore__handleRefresh, F.DesignListVM_fromStore_closure, F.DesignListVM_fromStore_closure0, F.DesignListVM_fromStore_closure1, L.DesignScreen_build_closure9, L.DesignScreen_build_closure7, L.DesignScreen_build_closure8, L.DesignScreen_build_closure4, L.DesignScreen_build_closure5, L.DesignScreen_build_closure, L.DesignScreen_build_closure0, L.DesignScreen_build_closure1, L.DesignScreen_build_closure2, L.DesignScreen_build_closure3, L.DesignScreen_build_closure6, G.DesignScreenBuilder_build_closure, N._DesignEditState_didChangeDependencies_closure, N._DesignEditState_didChangeDependencies_closure0, N._DesignEditState_dispose_closure, N._DesignEditState__onChanged_closure, N._DesignEditState__onChanged_closure0, N._DesignEditState__onChanged__closure, N._DesignEditState__onHtmlChanged_closure, N._DesignEditState__onHtmlChanged__closure, N._DesignEditState__loadDesign_closure, N._DesignEditState__loadDesign_closure0, N._DesignEditState__loadPreview_closure, N._DesignEditState__loadPreview_closure0, N._DesignEditState__loadPreview__closure, N._DesignEditState__setDraftMode_closure, N._DesignEditState_build_closure2, N._DesignEditState_build_closure, N._DesignEditState_build_closure0, N._DesignEditState_build_closure1, N._DesignSettingsState_build_closure, N._DesignSettingsState_build_closure0, G.DesignEditScreen_build_closure0, G.DesignEditScreen_build_closure, G.DesignEditVM_DesignEditVM$fromStore_closure, G.DesignEditVM_DesignEditVM$fromStore_closure1, G.DesignEditVM_DesignEditVM$fromStore_closure0, G.DesignEditVM_DesignEditVM$fromStore__closure, K._DesignViewState_build_closure, K._DesignViewState_build_closure0, K._DesignViewState_build_closure1, K._DesignViewState_build_closure2, K._DesignViewState_build_closure3, K._DesignViewState_build_closure4, K._DesignViewState_build_closure5, K._DesignViewState_build_closure6, K._DesignViewState_build_closure7, B.DesignViewScreen_build_closure0, B.DesignViewScreen_build_closure, B.DesignViewVM_DesignViewVM$fromStore_closure, S.DocumentListItem_build_closure1, S.DocumentListItem_build_closure0, S.DocumentListItem_build_closure, A.DocumentListBuilder_build_closure, A.DocumentListBuilder_build__closure, A.DocumentListVM_fromStore__handleRefresh, A.DocumentListVM_fromStore_closure, A.DocumentListVM_fromStore_closure0, A.DocumentListVM_fromStore_closure1, G.DocumentScreen_build_closure9, G.DocumentScreen_build_closure7, G.DocumentScreen_build_closure8, G.DocumentScreen_build_closure4, G.DocumentScreen_build_closure0, G.DocumentScreen_build_closure1, G.DocumentScreen_build_closure2, G.DocumentScreen_build_closure3, G.DocumentScreen_build_closure5, G.DocumentScreen_build_closure, G.DocumentScreen_build_closure6, U.DocumentScreenBuilder_build_closure, Z._DocumentEditState_didChangeDependencies_closure, Z._DocumentEditState_didChangeDependencies_closure0, Z._DocumentEditState_dispose_closure, Z._DocumentEditState__onChanged_closure, Z._DocumentEditState__onChanged_closure0, Z._DocumentEditState_build_closure0, Z._DocumentEditState_build_closure, E.DocumentEditScreen_build_closure0, E.DocumentEditScreen_build_closure, E.DocumentEditVM_DocumentEditVM$fromStore_closure, E.DocumentEditVM_DocumentEditVM$fromStore_closure0, A.DocumentViewScreen_build_closure0, A.DocumentViewScreen_build_closure, D._ExpenseEditState_build_closure1, D._ExpenseEditState_build_closure2, D._ExpenseEditState_build_closure0, D._ExpenseEditState_build_closure, M.ExpenseEditDetailsState_didChangeDependencies_closure, M.ExpenseEditDetailsState_didChangeDependencies_closure0, M.ExpenseEditDetailsState_dispose_closure, M.ExpenseEditDetailsState__onChanged_closure, M.ExpenseEditDetailsState__onChanged_closure0, M.ExpenseEditDetailsState_build_closure0, M.ExpenseEditDetailsState_build__closure17, M.ExpenseEditDetailsState_build_closure, M.ExpenseEditDetailsState_build_closure2, M.ExpenseEditDetailsState_build__closure16, M.ExpenseEditDetailsState_build_closure1, M.ExpenseEditDetailsState_build_closure3, M.ExpenseEditDetailsState_build__closure15, M.ExpenseEditDetailsState_build_closure4, M.ExpenseEditDetailsState_build__closure14, M.ExpenseEditDetailsState_build_closure5, M.ExpenseEditDetailsState_build__closure13, M.ExpenseEditDetailsState_build_closure6, M.ExpenseEditDetailsState_build__closure12, M.ExpenseEditDetailsState_build_closure7, M.ExpenseEditDetailsState_build__closure11, M.ExpenseEditDetailsState_build_closure8, M.ExpenseEditDetailsState_build__closure10, M.ExpenseEditDetailsState_build_closure9, M.ExpenseEditDetailsState_build__closure9, M.ExpenseEditDetailsState_build_closure10, M.ExpenseEditDetailsState_build__closure8, M.ExpenseEditDetailsState_build_closure11, M.ExpenseEditDetailsState_build__closure7, M.ExpenseEditDetailsState_build_closure12, M.ExpenseEditDetailsState_build__closure6, M.ExpenseEditDetailsState_build_closure13, M.ExpenseEditDetailsState_build__closure5, M.ExpenseEditDetailsState_build_closure14, M.ExpenseEditDetailsState_build__closure4, M.ExpenseEditDetailsState_build_closure15, M.ExpenseEditDetailsState_build__closure3, M.ExpenseEditDetailsState_build_closure16, M.ExpenseEditDetailsState_build__closure2, M.ExpenseEditDetailsState_build_closure20, M.ExpenseEditDetailsState_build__closure0, M.ExpenseEditDetailsState_build_closure17, M.ExpenseEditDetailsState_build_closure18, M.ExpenseEditDetailsState_build__closure1, M.ExpenseEditDetailsState_build_closure21, M.ExpenseEditDetailsState_build__closure, M.ExpenseEditDetailsState_build_closure19, E.ExpenseEditNotesState_didChangeDependencies_closure, E.ExpenseEditNotesState_didChangeDependencies_closure0, E.ExpenseEditNotesState_dispose_closure, E.ExpenseEditNotesState__onChanged_closure, E.ExpenseEditNotesState__onChanged_closure0, T.ExpenseEditSettingsState_didChangeDependencies_closure, T.ExpenseEditSettingsState_didChangeDependencies_closure0, T.ExpenseEditSettingsState_dispose_closure, T.ExpenseEditSettingsState__onChanged_closure, T.ExpenseEditSettingsState__onChanged_closure0, T.ExpenseEditSettingsState__setCurrency_closure, T.ExpenseEditSettingsState__setCurrency_closure0, T.ExpenseEditSettingsState_build_closure, T.ExpenseEditSettingsState_build__closure12, T.ExpenseEditSettingsState_build_closure0, T.ExpenseEditSettingsState_build__closure8, T.ExpenseEditSettingsState_build__closure9, T.ExpenseEditSettingsState_build__closure10, T.ExpenseEditSettingsState_build__closure11, T.ExpenseEditSettingsState_build_closure1, T.ExpenseEditSettingsState_build__closure7, T.ExpenseEditSettingsState_build_closure2, T.ExpenseEditSettingsState_build__closure6, T.ExpenseEditSettingsState_build_closure3, T.ExpenseEditSettingsState_build__closure3, T.ExpenseEditSettingsState_build__closure4, T.ExpenseEditSettingsState_build__closure5, T.ExpenseEditSettingsState_build_closure4, T.ExpenseEditSettingsState_build_closure6, T.ExpenseEditSettingsState_build__closure2, T.ExpenseEditSettingsState_build_closure5, T.ExpenseEditSettingsState_build_closure7, T.ExpenseEditSettingsState_build__closure1, T.ExpenseEditSettingsState_build_closure8, T.ExpenseEditSettingsState_build_closure9, T.ExpenseEditSettingsState_build__closure0, T.ExpenseEditSettingsState_build_closure10, T.ExpenseEditSettingsState_build__closure, O.ExpenseEditScreen_build_closure0, O.ExpenseEditScreen_build_closure, O.ExpenseEditVM_ExpenseEditVM$fromStore_closure, O.ExpenseEditVM_ExpenseEditVM$fromStore_closure1, O.ExpenseEditVM_ExpenseEditVM$fromStore_closure2, O.ExpenseEditVM_ExpenseEditVM$fromStore__closure1, O.ExpenseEditVM_ExpenseEditVM$fromStore__closure2, O.ExpenseEditVM_ExpenseEditVM$fromStore_closure3, O.ExpenseEditVM_ExpenseEditVM$fromStore__closure, O.ExpenseEditVM_ExpenseEditVM$fromStore__closure0, O.ExpenseEditVM_ExpenseEditVM$fromStore_closure0, O.ExpenseEditVM_ExpenseEditVM$fromStore__closure3, O.ExpenseEditVM_ExpenseEditVM$fromStore___closure, O.ExpenseEditVM_ExpenseEditVM$fromStore___closure0, O.ExpenseEditVM_ExpenseEditVM$fromStore____closure, V.ExpenseListItem_build_closure, V.ExpenseListItem_build__closure2, V.ExpenseListItem_build__closure1, V.ExpenseListItem_build__closure, V.ExpenseListItem_build__closure0, V.ExpenseListItem_build__closure5, V.ExpenseListItem_build__closure4, V.ExpenseListItem_build__closure3, F.ExpenseListBuilder_build_closure, F.ExpenseListBuilder_build__closure, F.ExpenseListVM_fromStore__handleRefresh, F.ExpenseListVM_fromStore_closure, F.ExpenseListVM_fromStore_closure0, F.ExpenseListVM_fromStore_closure1, X.ExpenseScreen_build_closure13, X.ExpenseScreen_build_closure11, X.ExpenseScreen_build_closure12, X.ExpenseScreen_build_closure4, X.ExpenseScreen_build_closure0, X.ExpenseScreen_build_closure1, X.ExpenseScreen_build_closure2, X.ExpenseScreen_build_closure3, X.ExpenseScreen_build_closure5, X.ExpenseScreen_build_closure7, X.ExpenseScreen_build_closure8, X.ExpenseScreen_build_closure9, X.ExpenseScreen_build_closure6, X.ExpenseScreen_build_closure, X.ExpenseScreen_build_closure10, U.ExpenseScreenBuilder_build_closure, U._ExpenseViewState_build_closure, U._ExpenseViewState_build__closure, U._ExpenseViewState_build__closure0, U._ExpenseViewState_build__closure1, Y.ExpenseViewDocuments_build_closure, Y.ExpenseViewDocuments_build_closure0, F.ExpenseOverview_build__buildDetailsList, N._ExpenseViewScheduleState_build_closure, U.ExpenseViewScreen_build_closure0, U.ExpenseViewScreen_build_closure, U.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh, U.ExpenseViewVM_ExpenseViewVM$fromStore_closure, U.ExpenseViewVM_ExpenseViewVM$fromStore_closure0, U.ExpenseViewVM_ExpenseViewVM$fromStore__closure0, U.ExpenseViewVM_ExpenseViewVM$fromStore__closure1, U.ExpenseViewVM_ExpenseViewVM$fromStore___closure, U.ExpenseViewVM_ExpenseViewVM$fromStore_closure1, U.ExpenseViewVM_ExpenseViewVM$fromStore__closure, A._ExpenseCategoryEditState_didChangeDependencies_closure, A._ExpenseCategoryEditState_didChangeDependencies_closure0, A._ExpenseCategoryEditState_dispose_closure, A._ExpenseCategoryEditState__onChanged_closure, A._ExpenseCategoryEditState__onChanged_closure0, A._ExpenseCategoryEditState_build_closure0, A._ExpenseCategoryEditState_build_closure1, A._ExpenseCategoryEditState_build__closure, A._ExpenseCategoryEditState_build_closure, A._ExpenseCategoryEditState_build__closure0, A._ExpenseCategoryEditState_build___closure, F.ExpenseCategoryEditScreen_build_closure0, F.ExpenseCategoryEditScreen_build_closure, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0, F.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure, F.ExpenseCategoryListItem_build_closure1, F.ExpenseCategoryListItem_build_closure0, F.ExpenseCategoryListItem_build_closure, A.ExpenseCategoryListBuilder_build_closure, A.ExpenseCategoryListBuilder_build__closure, A.ExpenseCategoryListVM_fromStore__handleRefresh, A.ExpenseCategoryListVM_fromStore_closure, A.ExpenseCategoryListVM_fromStore_closure0, A.ExpenseCategoryListVM_fromStore_closure1, Y.ExpenseCategoryScreen_build_closure9, Y.ExpenseCategoryScreen_build_closure8, Y.ExpenseCategoryScreen_build_closure7, Y.ExpenseCategoryScreen_build_closure4, Y.ExpenseCategoryScreen_build_closure5, Y.ExpenseCategoryScreen_build_closure, Y.ExpenseCategoryScreen_build_closure0, Y.ExpenseCategoryScreen_build_closure1, Y.ExpenseCategoryScreen_build_closure2, Y.ExpenseCategoryScreen_build_closure3, Y.ExpenseCategoryScreen_build_closure6, O.ExpenseCategoryScreenBuilder_build_closure, D._ExpenseCategoryViewState_build_closure, L.ExpenseCategoryViewScreen_build_closure0, L.ExpenseCategoryViewScreen_build_closure, L.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure, Q._GroupEditState_didChangeDependencies_closure, Q._GroupEditState_didChangeDependencies_closure0, Q._GroupEditState_dispose_closure, Q._GroupEditState__onChanged_closure, Q._GroupEditState__onChanged_closure0, Q._GroupEditState_build_closure0, Q._GroupEditState_build_closure1, Q._GroupEditState_build__closure, Q._GroupEditState_build_closure, Q._GroupEditState_build__closure0, A.GroupEditScreen_build_closure0, A.GroupEditScreen_build_closure, A.GroupEditVM_GroupEditVM$fromStore_closure, A.GroupEditVM_GroupEditVM$fromStore_closure1, A.GroupEditVM_GroupEditVM$fromStore_closure0, A.GroupEditVM_GroupEditVM$fromStore__closure, A.GroupEditVM_GroupEditVM$fromStore___closure, A.GroupEditVM_GroupEditVM$fromStore___closure0, A.GroupEditVM_GroupEditVM$fromStore____closure, T.GroupListItem_build_closure1, T.GroupListItem_build_closure0, T.GroupListItem_build_closure, Y.GroupListBuilder_build_closure, Y.GroupListBuilder_build__closure, Y.GroupListVM_fromStore__handleRefresh, Y.GroupListVM_fromStore_closure, Y.GroupListVM_fromStore_closure0, Y.GroupListVM_fromStore_closure1, K.GroupSettingsScreen_build_closure5, K.GroupSettingsScreen_build_closure3, K.GroupSettingsScreen_build_closure4, K.GroupSettingsScreen_build_closure0, K.GroupSettingsScreen_build_closure1, K.GroupSettingsScreen_build_closure, K.GroupSettingsScreen_build_closure2, S.GroupScreenBuilder_build_closure, E._GroupViewState_build_closure2, E._GroupViewState_build_closure, E._GroupViewState_build_closure0, E._GroupViewState_build_closure1, A.GroupViewScreen_build_closure0, A.GroupViewScreen_build_closure, A.GroupViewVM_GroupViewVM$fromStore_closure, A.GroupViewVM_GroupViewVM$fromStore_closure0, A.GroupViewVM_GroupViewVM$fromStore__closure0, A.GroupViewVM_GroupViewVM$fromStore__closure1, A.GroupViewVM_GroupViewVM$fromStore___closure, A.GroupViewVM_GroupViewVM$fromStore_closure1, A.GroupViewVM_GroupViewVM$fromStore__closure, F._InvoiceEditState_build_closure1, F._InvoiceEditState_build_closure2, F._InvoiceEditState_build_closure0, F._InvoiceEditState_build_closure, F._InvoiceEditState_build__closure, F._InvoiceEditState_build___closure, F._InvoiceEditState_build___closure1, F._InvoiceEditState_build___closure0, L.InvoiceEditContacts_build_closure, L.InvoiceEditContacts_build_closure0, L.InvoiceEditContacts_build__closure, L._ContactListTile_build_closure, X.InvoiceEditContactsScreen_build_closure0, X.InvoiceEditContactsScreen_build_closure, X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure, X.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0, S.InvoiceEditDesktopState_didChangeDependencies_closure, S.InvoiceEditDesktopState_didChangeDependencies_closure0, S.InvoiceEditDesktopState_dispose_closure, S.InvoiceEditDesktopState__onChanged_closure, S.InvoiceEditDesktopState__onChanged_closure0, S.InvoiceEditDesktopState_build_closure, S.InvoiceEditDesktopState_build_closure0, S.InvoiceEditDesktopState_build_closure2, S.InvoiceEditDesktopState_build_closure1, S.InvoiceEditDesktopState_build_closure3, S.InvoiceEditDesktopState_build_closure8, S.InvoiceEditDesktopState_build__closure12, S.InvoiceEditDesktopState_build_closure4, S.InvoiceEditDesktopState_build_closure5, S.InvoiceEditDesktopState_build__closure13, S.InvoiceEditDesktopState_build_closure9, S.InvoiceEditDesktopState_build__closure11, S.InvoiceEditDesktopState_build_closure6, S.InvoiceEditDesktopState_build_closure10, S.InvoiceEditDesktopState_build__closure10, S.InvoiceEditDesktopState_build_closure7, S.InvoiceEditDesktopState_build_closure12, S.InvoiceEditDesktopState_build_closure11, S.InvoiceEditDesktopState_build__closure9, S.InvoiceEditDesktopState_build_closure13, S.InvoiceEditDesktopState_build__closure8, S.InvoiceEditDesktopState_build_closure14, S.InvoiceEditDesktopState_build_closure15, S.InvoiceEditDesktopState_build__closure7, S.InvoiceEditDesktopState_build_closure16, S.InvoiceEditDesktopState_build_closure17, S.InvoiceEditDesktopState_build__closure6, S.InvoiceEditDesktopState_build_closure18, S.InvoiceEditDesktopState_build__closure5, S.InvoiceEditDesktopState_build_closure19, S.InvoiceEditDesktopState_build_closure20, S.InvoiceEditDesktopState_build_closure21, S.InvoiceEditDesktopState_build__closure4, S.InvoiceEditDesktopState_build_closure22, S.InvoiceEditDesktopState_build__closure3, S.InvoiceEditDesktopState_build_closure23, S.InvoiceEditDesktopState_build__closure2, S.InvoiceEditDesktopState_build_closure24, S.InvoiceEditDesktopState_build__closure1, S.InvoiceEditDesktopState_build_closure25, S.InvoiceEditDesktopState_build__closure0, S.InvoiceEditDesktopState_build_closure26, S.InvoiceEditDesktopState_build__closure, S.InvoiceEditDesktopState_build_closure27, S.InvoiceEditDesktopState_build_closure28, S.InvoiceEditDesktopState_build_closure29, S.__PdfPreviewState_loadPdf_closure, S.__PdfPreviewState__loadPdf_closure, S.__PdfPreviewState__loadPdf_closure0, S.__PdfPreviewState__loadPdf__closure0, S.__PdfPreviewState__loadPdf_closure1, S.__PdfPreviewState__loadPdf__closure, S.__PdfPreviewState_build_closure, S.__PdfPreviewState_build_closure0, S.__PdfPreviewState_build_closure1, S.__PdfPreviewState_build__closure0, S.__PdfPreviewState_build_closure2, S.__PdfPreviewState_build__closure, N.InvoiceEditDetailsState_didChangeDependencies_closure, N.InvoiceEditDetailsState_didChangeDependencies_closure0, N.InvoiceEditDetailsState_dispose_closure, N.InvoiceEditDetailsState__onChanged_closure, N.InvoiceEditDetailsState__onChanged_closure0, N.InvoiceEditDetailsState_build_closure0, N.InvoiceEditDetailsState_build_closure, N.InvoiceEditDetailsState_build_closure1, N.InvoiceEditDetailsState_build_closure2, N.InvoiceEditDetailsState_build__closure12, N.InvoiceEditDetailsState_build_closure7, N.InvoiceEditDetailsState_build__closure10, N.InvoiceEditDetailsState_build_closure3, N.InvoiceEditDetailsState_build_closure4, N.InvoiceEditDetailsState_build__closure11, N.InvoiceEditDetailsState_build_closure8, N.InvoiceEditDetailsState_build__closure9, N.InvoiceEditDetailsState_build_closure5, N.InvoiceEditDetailsState_build_closure9, N.InvoiceEditDetailsState_build__closure8, N.InvoiceEditDetailsState_build_closure6, N.InvoiceEditDetailsState_build_closure11, N.InvoiceEditDetailsState_build_closure10, N.InvoiceEditDetailsState_build__closure7, N.InvoiceEditDetailsState_build_closure12, N.InvoiceEditDetailsState_build__closure6, N.InvoiceEditDetailsState_build_closure13, N.InvoiceEditDetailsState_build_closure14, N.InvoiceEditDetailsState_build__closure5, N.InvoiceEditDetailsState_build_closure15, N.InvoiceEditDetailsState_build__closure4, N.InvoiceEditDetailsState_build_closure16, N.InvoiceEditDetailsState_build__closure3, N.InvoiceEditDetailsState_build_closure17, N.InvoiceEditDetailsState_build_closure18, N.InvoiceEditDetailsState_build_closure19, N.InvoiceEditDetailsState_build_closure20, N.InvoiceEditDetailsState_build_closure21, N.InvoiceEditDetailsState_build__closure2, N.InvoiceEditDetailsState_build_closure22, N.InvoiceEditDetailsState_build__closure1, N.InvoiceEditDetailsState_build_closure23, N.InvoiceEditDetailsState_build__closure0, N.InvoiceEditDetailsState_build_closure24, N.InvoiceEditDetailsState_build__closure, L.InvoiceEditDetailsScreen_build_closure0, L.InvoiceEditDetailsScreen_build_closure, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure1, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure, L.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0, K.InvoiceEditFooter_build_closure, G._InvoiceEditItemsState__showInvoiceItemEditor_closure, G._InvoiceEditItemsState_build_closure, G._InvoiceEditItemsState_build_closure0, G.ItemEditDetailsState_didChangeDependencies_closure, G.ItemEditDetailsState_dispose_closure, G.ItemEditDetailsState__onTextChanged_closure, G.ItemEditDetailsState__onChanged_closure, G.ItemEditDetailsState_build_closure, G.ItemEditDetailsState_build__closure2, G.ItemEditDetailsState_build_closure0, G.ItemEditDetailsState_build_closure1, G.ItemEditDetailsState_build__closure1, G.ItemEditDetailsState_build_closure2, G.ItemEditDetailsState_build__closure0, G.ItemEditDetailsState_build_closure3, G.ItemEditDetailsState_build__closure, E._InvoiceEditItemsDesktopState__updateTable_closure, E._InvoiceEditItemsDesktopState__onChanged_closure, E._InvoiceEditItemsDesktopState__onFocusChange_closure, E._InvoiceEditItemsDesktopState_build_closure, E._InvoiceEditItemsDesktopState_build_closure0, E._InvoiceEditItemsDesktopState_build_closure1, E._InvoiceEditItemsDesktopState_build_closure2, E._InvoiceEditItemsDesktopState_build_closure3, E._InvoiceEditItemsDesktopState_build_closure9, E._InvoiceEditItemsDesktopState_build_closure5, E._InvoiceEditItemsDesktopState_build_closure7, E._InvoiceEditItemsDesktopState_build__closure12, E._InvoiceEditItemsDesktopState_build_closure4, E._InvoiceEditItemsDesktopState_build__closure13, E._InvoiceEditItemsDesktopState_build___closure, E._InvoiceEditItemsDesktopState_build_closure6, E._InvoiceEditItemsDesktopState_build_closure8, E._InvoiceEditItemsDesktopState_build__closure11, E._InvoiceEditItemsDesktopState_build_closure11, E._InvoiceEditItemsDesktopState_build_closure10, E._InvoiceEditItemsDesktopState_build__closure10, E._InvoiceEditItemsDesktopState_build_closure13, E._InvoiceEditItemsDesktopState_build_closure12, E._InvoiceEditItemsDesktopState_build__closure9, E._InvoiceEditItemsDesktopState_build_closure15, E._InvoiceEditItemsDesktopState_build_closure14, E._InvoiceEditItemsDesktopState_build__closure8, E._InvoiceEditItemsDesktopState_build_closure17, E._InvoiceEditItemsDesktopState_build_closure16, E._InvoiceEditItemsDesktopState_build__closure7, E._InvoiceEditItemsDesktopState_build_closure19, E._InvoiceEditItemsDesktopState_build_closure18, E._InvoiceEditItemsDesktopState_build__closure6, E._InvoiceEditItemsDesktopState_build_closure21, E._InvoiceEditItemsDesktopState_build_closure20, E._InvoiceEditItemsDesktopState_build__closure5, E._InvoiceEditItemsDesktopState_build_closure23, E._InvoiceEditItemsDesktopState_build_closure22, E._InvoiceEditItemsDesktopState_build__closure4, E._InvoiceEditItemsDesktopState_build_closure25, E._InvoiceEditItemsDesktopState_build_closure24, E._InvoiceEditItemsDesktopState_build__closure3, E._InvoiceEditItemsDesktopState_build_closure27, E._InvoiceEditItemsDesktopState_build_closure26, E._InvoiceEditItemsDesktopState_build__closure2, E._InvoiceEditItemsDesktopState_build_closure29, E._InvoiceEditItemsDesktopState_build_closure28, E._InvoiceEditItemsDesktopState_build__closure1, E._InvoiceEditItemsDesktopState_build_closure31, E._InvoiceEditItemsDesktopState_build_closure30, E._InvoiceEditItemsDesktopState_build__closure0, E._InvoiceEditItemsDesktopState_build_closure32, E._InvoiceEditItemsDesktopState_build__closure, E._InvoiceEditItemsDesktopState_build_closure33, O.InvoiceEditItemsScreen_build_closure0, O.InvoiceEditItemsScreen_build_closure, O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure, O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0, O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1, O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure, O.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2, Z.InvoiceEditNotesState_didChangeDependencies_closure, Z.InvoiceEditNotesState_didChangeDependencies_closure0, Z.InvoiceEditNotesState_dispose_closure, Z.InvoiceEditNotesState__onChanged_closure, Z.InvoiceEditNotesState__onChanged_closure0, E.InvoiceEditNotesScreen_build_closure0, E.InvoiceEditNotesScreen_build_closure, E.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure, A.InvoiceEditPDFState_didChangeDependencies_closure, A.InvoiceEditPDFState_didChangeDependencies_closure0, A.InvoiceEditPDFState_didChangeDependencies__closure0, A.InvoiceEditPDFState_didChangeDependencies_closure1, A.InvoiceEditPDFState_didChangeDependencies__closure, B.InvoiceEditPDFScreen_build_closure0, B.InvoiceEditPDFScreen_build_closure, M.InvoiceEditScreen_build_closure0, M.InvoiceEditScreen_build_closure, M.InvoiceEditVM_InvoiceEditVM$fromStore_closure, M.InvoiceEditVM_InvoiceEditVM$fromStore__closure0, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure0, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure1, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure2, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure3, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure4, M.InvoiceEditVM_InvoiceEditVM$fromStore____closure, M.InvoiceEditVM_InvoiceEditVM$fromStore_closure0, M.InvoiceEditVM_InvoiceEditVM$fromStore__closure, M.InvoiceEditVM_InvoiceEditVM$fromStore___closure, M.InvoiceEditVM_InvoiceEditVM$fromStore_closure1, D._InvoiceItemSelectorState__onItemsSelected_closure, D._InvoiceItemSelectorState__toggleEntity_closure, D._InvoiceItemSelectorState__updateClientId_closure, D._InvoiceItemSelectorState__updateClientId_closure0, D._InvoiceItemSelectorState_build_closure, D._InvoiceItemSelectorState_build_closure0, D._InvoiceItemSelectorState_build_closure1, D._InvoiceItemSelectorState_build__productList, D._InvoiceItemSelectorState_build__productList_closure, D._InvoiceItemSelectorState_build__productList__closure, D._InvoiceItemSelectorState_build__productList__closure0, D._InvoiceItemSelectorState_build__taskList, D._InvoiceItemSelectorState_build__taskList_closure, D._InvoiceItemSelectorState_build__taskList__closure, D._InvoiceItemSelectorState_build__taskList__closure0, D._InvoiceItemSelectorState_build__expenseList, D._InvoiceItemSelectorState_build__expenseList_closure, D._InvoiceItemSelectorState_build__expenseList__closure, D._InvoiceItemSelectorState_build__expenseList__closure0, D._InvoiceItemSelectorState_build_closure2, D._InvoiceItemSelectorState_build__closure0, D._InvoiceItemSelectorState_build_closure3, D._InvoiceItemSelectorState_build__closure, D._InvoiceItemSelectorState_build_closure4, D._InvoiceItemSelectorState_build_closure5, M.InvoiceEmailScreen_build_closure1, M.InvoiceEmailScreen_build_closure0, M.InvoiceEmailScreen_build_closure, M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure, M.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure0, M.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure, M.InvoiceListItem_build_closure, M.InvoiceListItem_build__closure2, M.InvoiceListItem_build__closure1, M.InvoiceListItem_build__closure, M.InvoiceListItem_build__closure0, M.InvoiceListItem_build__closure5, M.InvoiceListItem_build__closure4, M.InvoiceListItem_build__closure3, T.InvoiceListBuilder_build_closure, T.InvoiceListBuilder_build__closure, T.InvoiceListVM_fromStore__handleRefresh, T.InvoiceListVM_fromStore_closure, T.InvoiceListVM_fromStore_closure0, T.InvoiceListVM_fromStore_closure1, E._InvoicePdfViewState_loadPdf_closure, E._InvoicePdfViewState_loadPdf_closure0, E._InvoicePdfViewState_loadPdf__closure, E._InvoicePdfViewState_loadPdf_closure1, E._InvoicePdfViewState_build_closure, E._InvoicePdfViewState_build_closure0, E._InvoicePdfViewState_build_closure1, E._InvoicePdfViewState_build__closure, E._InvoicePdfViewState_build_closure2, E._InvoicePdfViewState_build_closure3, E._InvoicePdfViewState_build_closure4, O.InvoicePdfScreen_build_closure0, O.InvoicePdfScreen_build_closure, Y.InvoiceScreen_build_closure17, Y.InvoiceScreen_build_closure15, Y.InvoiceScreen_build_closure16, Y.InvoiceScreen_build_closure4, Y.InvoiceScreen_build_closure5, Y.InvoiceScreen_build_closure6, Y.InvoiceScreen_build_closure0, Y.InvoiceScreen_build_closure1, Y.InvoiceScreen_build_closure2, Y.InvoiceScreen_build_closure3, Y.InvoiceScreen_build_closure7, Y.InvoiceScreen_build_closure8, Y.InvoiceScreen_build_closure9, Y.InvoiceScreen_build_closure10, Y.InvoiceScreen_build_closure11, Y.InvoiceScreen_build_closure12, Y.InvoiceScreen_build_closure13, Y.InvoiceScreen_build_closure, Y.InvoiceScreen_build_closure14, E.InvoiceScreenBuilder_build_closure, E._InvoiceViewState_build_closure, E._InvoiceViewState_build__closure5, E._InvoiceViewState_build__closure, E._InvoiceViewState_build__closure0, E._InvoiceViewState_build__closure1, E._InvoiceViewState_build__closure2, E._InvoiceViewState_build__closure3, E._InvoiceViewState_build__closure4, A._InvoiceViewActivityState_build_closure0, A._InvoiceViewActivityState_build_closure, B.InvoiceViewContacts_build_closure, B._InvitationListTile_build_closure, B._InvitationListTile_build_closure0, B._InvitationListTile_build_closure1, B._InvitationListTile_build_closure2, X.InvoiceViewDocuments_build_closure, X.InvoiceViewDocuments_build_closure0, X.InvoiceViewDocuments_build_closure1, S._InvoiceViewHistoryState_build_closure, S._InvoiceViewHistoryState_build_closure0, S._InvoiceViewHistoryState_build_closure1, S._InvoiceViewHistoryState_build__closure, S._InvoiceViewHistoryState_build_closure2, 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.InvoiceOverview_build___closure, A.InvoiceOverview_build_surchargeRow, A.InvoiceOverview_build_closure3, N._InvoiceViewScheduleState_build_closure, F.InvoiceViewScreen_build_closure0, F.InvoiceViewScreen_build_closure, F.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure0, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure1, F.InvoiceViewVM_InvoiceViewVM$fromStore__closure0, F.InvoiceViewVM_InvoiceViewVM$fromStore__closure1, F.InvoiceViewVM_InvoiceViewVM$fromStore___closure, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure2, F.InvoiceViewVM_InvoiceViewVM$fromStore__closure, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure3, F.InvoiceViewVM_InvoiceViewVM$fromStore_closure4, M._PaymentEditState_didChangeDependencies_closure, M._PaymentEditState_didChangeDependencies_closure0, M._PaymentEditState_dispose_closure, M._PaymentEditState__onChanged_closure, M._PaymentEditState__onChanged_closure0, M._PaymentEditState_convertCurrency_closure, M._PaymentEditState_build_closure, M._PaymentEditState_build_closure0, M._PaymentEditState_build_closure1, M._PaymentEditState_build_closure2, M._PaymentEditState_build_closure4, M._PaymentEditState_build_closure3, M._PaymentEditState_build__closure5, M._PaymentEditState_build_closure5, M._PaymentEditState_build_closure7, M._PaymentEditState_build_closure6, M._PaymentEditState_build__closure4, M._PaymentEditState_build_closure8, M._PaymentEditState_build__closure3, M._PaymentEditState_build_closure9, M._PaymentEditState_build__closure2, M._PaymentEditState_build_closure10, M._PaymentEditState_build__closure0, M._PaymentEditState_build__closure1, M._PaymentEditState_build_closure11, M._PaymentEditState_build_closure13, M._PaymentEditState_build__closure, M._PaymentEditState_build_closure12, M._PaymentEditState_build_onSavePressed, M._PaymentEditState_build_onSavePressed_closure, M._PaymentEditState_build_closure14, M._PaymentEditState_build_closure15, M._PaymentEditState_build_closure16, M._PaymentableEditorState_didChangeDependencies_closure, M._PaymentableEditorState_didChangeDependencies_closure0, M._PaymentableEditorState_dispose_closure0, M._PaymentableEditorState__onChanged_closure, M._PaymentableEditorState__onChanged_closure0, M._PaymentableEditorState__onChanged_closure1, M._PaymentableEditorState__onChanged_closure2, M._PaymentableEditorState__onChanged_closure3, M._PaymentableEditorState__onChanged_closure4, M._PaymentableEditorState__onChanged_closure5, M._PaymentableEditorState_build_closure, M._PaymentableEditorState_build_closure0, M._PaymentableEditorState_build_closure2, M._PaymentableEditorState_build_closure1, M._PaymentableEditorState_build_closure3, M._PaymentableEditorState_build_closure4, M._PaymentableEditorState_build__closure, M._PaymentableEditorState_build__closure0, B.PaymentEditScreen_build_closure0, B.PaymentEditScreen_build_closure, B.PaymentEditVM_PaymentEditVM$fromStore_closure, B.PaymentEditVM_PaymentEditVM$fromStore_closure1, B.PaymentEditVM_PaymentEditVM$fromStore_closure0, B.PaymentEditVM_PaymentEditVM$fromStore__closure, B.PaymentEditVM_PaymentEditVM$fromStore___closure, B.PaymentEditVM_PaymentEditVM$fromStore___closure0, B.PaymentEditVM_PaymentEditVM$fromStore___closure1, B.PaymentEditVM_PaymentEditVM$fromStore___closure2, B.PaymentEditVM_PaymentEditVM$fromStore___closure3, B.PaymentEditVM_PaymentEditVM$fromStore____closure, O.PaymentListItem_build_closure, O.PaymentListItem_build__closure2, O.PaymentListItem_build__closure1, O.PaymentListItem_build__closure, O.PaymentListItem_build__closure0, O.PaymentListItem_build__closure5, O.PaymentListItem_build__closure4, O.PaymentListItem_build__closure3, R.PaymentListBuilder_build_closure, R.PaymentListBuilder_build__closure, R.PaymentListVM_fromStore__handleRefresh, R.PaymentListVM_fromStore_closure, R.PaymentListVM_fromStore_closure0, R.PaymentListVM_fromStore_closure1, Q.PaymentPresenter_getField_closure, K.PaymentScreen_build_closure9, K.PaymentScreen_build_closure7, K.PaymentScreen_build_closure8, K.PaymentScreen_build_closure4, K.PaymentScreen_build_closure0, K.PaymentScreen_build_closure1, K.PaymentScreen_build_closure2, K.PaymentScreen_build_closure3, K.PaymentScreen_build_closure5, K.PaymentScreen_build_closure, K.PaymentScreen_build_closure6, G.PaymentScreenBuilder_build_closure, Y._PaymentRefundState_didChangeDependencies_closure, Y._PaymentRefundState_didChangeDependencies_closure0, Y._PaymentRefundState_dispose_closure, Y._PaymentRefundState__onChanged_closure, Y._PaymentRefundState__onChanged__closure, Y._PaymentRefundState_build_closure, Y._PaymentRefundState_build_closure1, Y._PaymentRefundState_build_closure0, Y._PaymentRefundState_build__closure1, Y._PaymentRefundState_build_closure2, Y._PaymentRefundState_build__closure0, Y._PaymentRefundState_build_closure3, Y._PaymentRefundState_build__closure, Y._PaymentRefundState_build_onSavePressed, Y._PaymentRefundState_build_onSavePressed_closure, Y._PaymentRefundState_build_onSavePressed_closure0, Y._PaymentRefundState_build_closure4, Y._PaymentRefundState_build_closure5, Y._PaymentRefundState_build_closure6, Y._PaymentRefundState_build_closure7, Y._PaymentableEditorState_didChangeDependencies_closure1, Y._PaymentableEditorState_didChangeDependencies_closure2, Y._PaymentableEditorState_dispose_closure, Y._PaymentableEditorState__onChanged_closure6, Y._PaymentableEditorState__onChanged_closure7, Y._PaymentableEditorState__onChanged_closure8, Y._PaymentableEditorState__onChanged_closure9, Y._PaymentableEditorState_build_closure5, Y._PaymentableEditorState_build_closure7, Y._PaymentableEditorState_build_closure6, Y._PaymentableEditorState_build__closure2, Y._PaymentableEditorState_build_closure8, Y._PaymentableEditorState_build_closure9, Y._PaymentableEditorState_build__closure1, Y.PaymentRefundScreen_build_closure0, Y.PaymentRefundScreen_build_closure, Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure, Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure1, Y.PaymentRefundVM_PaymentRefundVM$fromStore_closure0, Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure, Y.PaymentRefundVM_PaymentRefundVM$fromStore__closure0, Y.PaymentRefundVM_PaymentRefundVM$fromStore___closure, L._PaymentViewState_build_closure, L._PaymentViewState_build__closure2, L._PaymentViewState_build__closure, L._PaymentViewState_build__closure0, L._PaymentViewState_build__closure1, F.PaymentViewScreen_build_closure0, F.PaymentViewScreen_build_closure, F.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh, F.PaymentViewVM_PaymentViewVM$fromStore_closure, U._PaymentTermEditState_didChangeDependencies_closure, U._PaymentTermEditState_didChangeDependencies_closure0, U._PaymentTermEditState_dispose_closure, U._PaymentTermEditState__onChanged_closure, U._PaymentTermEditState__onChanged_closure0, U._PaymentTermEditState_build_closure0, U._PaymentTermEditState_build_closure1, U._PaymentTermEditState_build_closure, U._PaymentTermEditState_build__closure, Y.PaymentTermEditScreen_build_closure0, Y.PaymentTermEditScreen_build_closure, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0, Y.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure, K.PaymentTermListItem_build_closure1, K.PaymentTermListItem_build_closure0, K.PaymentTermListItem_build_closure, U.PaymentTermListBuilder_build_closure, U.PaymentTermListBuilder_build__closure, U.PaymentTermListVM_fromStore__handleRefresh, U.PaymentTermListVM_fromStore_closure, U.PaymentTermListVM_fromStore_closure0, U.PaymentTermListVM_fromStore_closure1, F.PaymentTermScreen_build_closure9, F.PaymentTermScreen_build_closure7, F.PaymentTermScreen_build_closure8, F.PaymentTermScreen_build_closure4, F.PaymentTermScreen_build_closure5, F.PaymentTermScreen_build_closure, F.PaymentTermScreen_build_closure0, F.PaymentTermScreen_build_closure1, F.PaymentTermScreen_build_closure2, F.PaymentTermScreen_build_closure3, F.PaymentTermScreen_build_closure6, Z.PaymentTermScreenBuilder_build_closure, K._PaymentTermViewState_build_closure, U.PaymentTermViewScreen_build_closure0, U.PaymentTermViewScreen_build_closure, U.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure, F._ProductEditState_didChangeDependencies_closure, F._ProductEditState_didChangeDependencies_closure0, F._ProductEditState_dispose_closure, F._ProductEditState__onChanged_closure, F._ProductEditState__onChanged_closure0, F._ProductEditState_build_closure3, F._ProductEditState_build_closure4, F._ProductEditState_build__closure, F._ProductEditState_build_closure, F._ProductEditState_build_closure0, F._ProductEditState_build__closure2, F._ProductEditState_build_closure1, F._ProductEditState_build__closure1, F._ProductEditState_build_closure2, F._ProductEditState_build__closure0, S.ProductEditScreen_build_closure0, S.ProductEditScreen_build_closure, S.ProductEditVM_ProductEditVM$fromStore_closure, S.ProductEditVM_ProductEditVM$fromStore_closure1, S.ProductEditVM_ProductEditVM$fromStore_closure0, S.ProductEditVM_ProductEditVM$fromStore__closure, S.ProductEditVM_ProductEditVM$fromStore___closure, S.ProductEditVM_ProductEditVM$fromStore___closure0, S.ProductEditVM_ProductEditVM$fromStore____closure, T.ProductListItem_build_closure, T.ProductListItem_build__closure2, T.ProductListItem_build__closure1, T.ProductListItem_build__closure, T.ProductListItem_build__closure0, T.ProductListItem_build__closure5, T.ProductListItem_build__closure4, T.ProductListItem_build__closure3, Q.ProductListBuilder_build_closure, Q.ProductListBuilder_build__closure, Q.ProductListVM_fromStore__handleRefresh, Q.ProductListVM_fromStore_closure, Q.ProductListVM_fromStore_closure0, Q.ProductListVM_fromStore_closure1, K.ProductScreen_build_closure9, K.ProductScreen_build_closure7, K.ProductScreen_build_closure8, K.ProductScreen_build_closure4, K.ProductScreen_build_closure0, K.ProductScreen_build_closure1, K.ProductScreen_build_closure2, K.ProductScreen_build_closure3, K.ProductScreen_build_closure5, K.ProductScreen_build_closure, K.ProductScreen_build_closure6, E.ProductScreenBuilder_build_closure, Z._ProductViewState_build_closure, Z._ProductViewState_build__closure, Z._ProductViewState_build__closure0, F.ProductViewDocuments_build_closure, F.ProductViewDocuments_build_closure0, F.ProductViewScreen_build_closure0, F.ProductViewScreen_build_closure, F.ProductViewVM_ProductViewVM$fromStore__handleRefresh, F.ProductViewVM_ProductViewVM$fromStore_closure, F.ProductViewVM_ProductViewVM$fromStore_closure0, F.ProductViewVM_ProductViewVM$fromStore__closure0, F.ProductViewVM_ProductViewVM$fromStore__closure1, F.ProductViewVM_ProductViewVM$fromStore___closure, F.ProductViewVM_ProductViewVM$fromStore_closure1, F.ProductViewVM_ProductViewVM$fromStore__closure, K._ProjectEditState_didChangeDependencies_closure, K._ProjectEditState_didChangeDependencies_closure0, K._ProjectEditState_dispose_closure, K._ProjectEditState__onChanged_closure, K._ProjectEditState__onChanged_closure0, K._ProjectEditState_build_closure0, K._ProjectEditState_build_closure1, K._ProjectEditState_build__closure, K._ProjectEditState_build_closure, K._ProjectEditState_build__closure0, K._ProjectEditState_build__closure3, K._ProjectEditState_build__closure2, K._ProjectEditState_build___closure1, K._ProjectEditState_build__closure1, K._ProjectEditState_build__closure5, K._ProjectEditState_build___closure, K._ProjectEditState_build__closure4, K._ProjectEditState_build___closure0, G.ProjectEditScreen_build_closure0, G.ProjectEditScreen_build_closure, G.ProjectEditVM_ProjectEditVM$fromStore_closure, G.ProjectEditVM_ProjectEditVM$fromStore_closure1, G.ProjectEditVM_ProjectEditVM$fromStore_closure2, G.ProjectEditVM_ProjectEditVM$fromStore__closure, G.ProjectEditVM_ProjectEditVM$fromStore__closure0, G.ProjectEditVM_ProjectEditVM$fromStore_closure0, G.ProjectEditVM_ProjectEditVM$fromStore__closure1, G.ProjectEditVM_ProjectEditVM$fromStore___closure, G.ProjectEditVM_ProjectEditVM$fromStore___closure0, G.ProjectEditVM_ProjectEditVM$fromStore____closure, E.ProjectListItem_build_closure, E.ProjectListItem_build__closure2, E.ProjectListItem_build__closure1, E.ProjectListItem_build__closure, E.ProjectListItem_build__closure0, E.ProjectListItem_build__closure5, E.ProjectListItem_build__closure4, E.ProjectListItem_build__closure3, X.ProjectListBuilder_build_closure, X.ProjectListBuilder_build__closure, X.ProjectListVM_fromStore__handleRefresh, X.ProjectListVM_fromStore_closure, X.ProjectListVM_fromStore_closure0, X.ProjectListVM_fromStore_closure1, Z.ProjectScreen_build_closure9, Z.ProjectScreen_build_closure7, Z.ProjectScreen_build_closure8, Z.ProjectScreen_build_closure4, Z.ProjectScreen_build_closure0, Z.ProjectScreen_build_closure1, Z.ProjectScreen_build_closure2, Z.ProjectScreen_build_closure3, Z.ProjectScreen_build_closure5, Z.ProjectScreen_build_closure, Z.ProjectScreen_build_closure6, S.ProjectScreenBuilder_build_closure, M._ProjectViewState_build_closure0, M._ProjectViewState_build__closure, M._ProjectViewState_build__closure0, M._ProjectViewState_build_closure, D.ProjectViewDocuments_build_closure, D.ProjectViewDocuments_build_closure0, Y._ProjectOverviewState_initState_closure, Y._ProjectOverviewState_initState__closure, Y._ProjectOverviewState_build__buildView, Y._ProjectOverviewState_build_closure, D.ProjectViewScreen_build_closure0, D.ProjectViewScreen_build_closure, D.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh, D.ProjectViewVM_ProjectViewVM$fromStore_closure0, D.ProjectViewVM_ProjectViewVM$fromStore_closure, D.ProjectViewVM_ProjectViewVM$fromStore__closure2, D.ProjectViewVM_ProjectViewVM$fromStore_closure1, D.ProjectViewVM_ProjectViewVM$fromStore__closure0, D.ProjectViewVM_ProjectViewVM$fromStore__closure1, D.ProjectViewVM_ProjectViewVM$fromStore___closure, D.ProjectViewVM_ProjectViewVM$fromStore_closure2, D.ProjectViewVM_ProjectViewVM$fromStore__closure, E.QuoteEditDetailsScreen_build_closure0, E.QuoteEditDetailsScreen_build_closure, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure1, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure, E.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0, T.QuoteEditItemsScreen_build_closure0, T.QuoteEditItemsScreen_build_closure, T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure, T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0, T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1, T.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2, V.QuoteEditNotesScreen_build_closure0, V.QuoteEditNotesScreen_build_closure, V.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure, D.QuoteEditPDFScreen_build_closure0, D.QuoteEditPDFScreen_build_closure, B.QuoteEditScreen_build_closure0, B.QuoteEditScreen_build_closure, B.QuoteEditVM_QuoteEditVM$fromStore_closure, B.QuoteEditVM_QuoteEditVM$fromStore__closure, B.QuoteEditVM_QuoteEditVM$fromStore___closure, B.QuoteEditVM_QuoteEditVM$fromStore___closure0, B.QuoteEditVM_QuoteEditVM$fromStore___closure1, B.QuoteEditVM_QuoteEditVM$fromStore____closure, B.QuoteEditVM_QuoteEditVM$fromStore_closure0, B.QuoteEditVM_QuoteEditVM$fromStore_closure1, B._QuoteEditState_build_closure1, B._QuoteEditState_build_closure2, B._QuoteEditState_build_closure0, B._QuoteEditState_build_closure, B._QuoteEditState_build__closure, B._QuoteEditState_build___closure, B._QuoteEditState_build___closure1, B._QuoteEditState_build___closure0, B.QuoteEmailScreen_build_closure1, B.QuoteEmailScreen_build_closure0, B.QuoteEmailScreen_build_closure, B.EmailQuoteVM_EmailQuoteVM$fromStore_closure, B.EmailQuoteVM_EmailQuoteVM$fromStore_closure0, B.EmailQuoteVM_EmailQuoteVM$fromStore__closure, N.QuoteListItem_build_closure, N.QuoteListItem_build__closure2, N.QuoteListItem_build__closure1, N.QuoteListItem_build__closure, N.QuoteListItem_build__closure0, N.QuoteListItem_build__closure5, N.QuoteListItem_build__closure4, N.QuoteListItem_build__closure3, U.QuoteListBuilder_build_closure, U.QuoteListBuilder_build__closure, U.QuoteListVM_fromStore__handleRefresh, U.QuoteListVM_fromStore_closure, U.QuoteListVM_fromStore_closure0, U.QuoteListVM_fromStore_closure1, V.QuotePdfScreen_build_closure0, V.QuotePdfScreen_build_closure, T.QuoteScreen_build_closure15, T.QuoteScreen_build_closure13, T.QuoteScreen_build_closure14, T.QuoteScreen_build_closure4, T.QuoteScreen_build_closure0, T.QuoteScreen_build_closure1, T.QuoteScreen_build_closure2, T.QuoteScreen_build_closure3, T.QuoteScreen_build_closure5, T.QuoteScreen_build_closure6, T.QuoteScreen_build_closure7, T.QuoteScreen_build_closure8, T.QuoteScreen_build_closure9, T.QuoteScreen_build_closure10, T.QuoteScreen_build_closure11, T.QuoteScreen_build_closure, T.QuoteScreen_build_closure12, B.QuoteScreenBuilder_build_closure, O.QuoteViewScreen_build_closure0, O.QuoteViewScreen_build_closure, O.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh, O.QuoteViewVM_QuoteViewVM$fromStore_closure, O.QuoteViewVM_QuoteViewVM$fromStore_closure0, O.QuoteViewVM_QuoteViewVM$fromStore_closure1, O.QuoteViewVM_QuoteViewVM$fromStore__closure0, O.QuoteViewVM_QuoteViewVM$fromStore__closure1, O.QuoteViewVM_QuoteViewVM$fromStore___closure, O.QuoteViewVM_QuoteViewVM$fromStore_closure2, O.QuoteViewVM_QuoteViewVM$fromStore__closure, O.QuoteViewVM_QuoteViewVM$fromStore_closure3, M.RecurringExpenseEditScreen_build_closure0, M.RecurringExpenseEditScreen_build_closure, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0, M.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure, S.RecurringExpenseListItem_build_closure, S.RecurringExpenseListItem_build__closure2, S.RecurringExpenseListItem_build__closure1, S.RecurringExpenseListItem_build__closure, S.RecurringExpenseListItem_build__closure0, S.RecurringExpenseListItem_build__closure5, S.RecurringExpenseListItem_build__closure4, S.RecurringExpenseListItem_build__closure3, U.RecurringExpenseListBuilder_build_closure, U.RecurringExpenseListBuilder_build__closure, U.RecurringExpenseListVM_fromStore__handleRefresh, U.RecurringExpenseListVM_fromStore_closure, U.RecurringExpenseListVM_fromStore_closure0, U.RecurringExpenseListVM_fromStore_closure1, O.RecurringExpenseScreen_build_closure9, O.RecurringExpenseScreen_build_closure7, O.RecurringExpenseScreen_build_closure8, O.RecurringExpenseScreen_build_closure4, O.RecurringExpenseScreen_build_closure5, O.RecurringExpenseScreen_build_closure, O.RecurringExpenseScreen_build_closure0, O.RecurringExpenseScreen_build_closure1, O.RecurringExpenseScreen_build_closure2, O.RecurringExpenseScreen_build_closure3, O.RecurringExpenseScreen_build_closure6, B.RecurringExpenseScreenBuilder_build_closure, Z.RecurringExpenseViewScreen_build_closure0, Z.RecurringExpenseViewScreen_build_closure, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure1, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure1, Z.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure, O._RecurringInvoiceEditState_build_closure1, O._RecurringInvoiceEditState_build_closure2, O._RecurringInvoiceEditState_build_closure0, O._RecurringInvoiceEditState_build_closure, O._RecurringInvoiceEditState_build__closure, O._RecurringInvoiceEditState_build___closure, O._RecurringInvoiceEditState_build___closure0, O._RecurringInvoiceEditState_build___closure1, F.RecurringInvoiceEditDetailsScreen_build_closure0, F.RecurringInvoiceEditDetailsScreen_build_closure, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure1, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure, F.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0, R.RecurringInvoiceEditItemsScreen_build_closure0, R.RecurringInvoiceEditItemsScreen_build_closure, R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure, R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0, R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1, R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure, R.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2, Q.RecurringInvoiceEditNotesScreen_build_closure0, Q.RecurringInvoiceEditNotesScreen_build_closure, Q.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure, U.RecurringInvoiceEditPDFScreen_build_closure0, U.RecurringInvoiceEditPDFScreen_build_closure, Q.RecurringInvoiceEditScreen_build_closure0, Q.RecurringInvoiceEditScreen_build_closure, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0, Q.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1, U.RecurringInvoiceListItem_build_closure, U.RecurringInvoiceListItem_build__closure2, U.RecurringInvoiceListItem_build__closure1, U.RecurringInvoiceListItem_build__closure, U.RecurringInvoiceListItem_build__closure0, U.RecurringInvoiceListItem_build__closure5, U.RecurringInvoiceListItem_build__closure4, U.RecurringInvoiceListItem_build__closure3, Y.RecurringInvoiceListBuilder_build_closure, Y.RecurringInvoiceListBuilder_build__closure, Y.RecurringInvoiceListVM_fromStore__handleRefresh, Y.RecurringInvoiceListVM_fromStore_closure, Y.RecurringInvoiceListVM_fromStore_closure0, Y.RecurringInvoiceListVM_fromStore_closure1, X.RecurringInvoicePdfScreen_build_closure0, X.RecurringInvoicePdfScreen_build_closure, V.RecurringInvoiceScreen_build_closure15, V.RecurringInvoiceScreen_build_closure13, V.RecurringInvoiceScreen_build_closure14, V.RecurringInvoiceScreen_build_closure9, V.RecurringInvoiceScreen_build_closure11, V.RecurringInvoiceScreen_build_closure10, V.RecurringInvoiceScreen_build_closure4, V.RecurringInvoiceScreen_build_closure, V.RecurringInvoiceScreen_build_closure0, V.RecurringInvoiceScreen_build_closure1, V.RecurringInvoiceScreen_build_closure2, V.RecurringInvoiceScreen_build_closure3, V.RecurringInvoiceScreen_build_closure5, V.RecurringInvoiceScreen_build_closure6, V.RecurringInvoiceScreen_build_closure7, V.RecurringInvoiceScreen_build_closure8, V.RecurringInvoiceScreen_build_closure12, A.RecurringInvoiceScreenBuilder_build_closure, O.RecurringInvoiceViewScreen_build_closure0, O.RecurringInvoiceViewScreen_build_closure, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure1, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure, O.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure3, A.memoizedClientReport_closure, A.clientReport_closure, A.clientReport_closure0, A.clientReport_closure1, A.clientReport_closure2, A.clientReport_closure3, A.clientReport_closure4, L.memoizedCreditReport_closure, L.creditReport_closure, L.creditReport_closure0, L.creditReport_closure1, L.creditReport_closure2, L.creditReport_closure3, L.creditReport_closure4, R.memoizedDocumentReport_closure, R.documentReport_closure, R.documentReport_closure0, R.documentReport__getRow, R.documentReport_closure1, R.documentReport__closure2, R.documentReport_closure2, R.documentReport__closure1, R.documentReport_closure3, R.documentReport__closure0, R.documentReport_closure4, R.documentReport__closure, R.documentReport_closure5, R.documentReport_closure6, R.documentReport_closure7, R.documentReport_closure8, M.memoizedExpenseReport_closure, M.expenseReport_closure, M.expenseReport_closure0, M.expenseReport_closure1, M.expenseReport_closure2, M.expenseReport_closure3, M.expenseReport_closure4, D.memoizedInvoiceItemReport_closure, D.lineItemReport_closure5, D.lineItemReport_closure6, D.lineItemReport_closure7, D.lineItemReport_closure8, D.lineItemReport_closure9, D.lineItemReport_closure10, X.memoizedInvoiceReport_closure, X.invoiceReport_closure, X.invoiceReport_closure0, X.invoiceReport_closure1, X.invoiceReport_closure2, X.invoiceReport_closure3, X.invoiceReport_closure4, O.memoizedInvoiceTaxReport_closure, O.taxReport_closure, O.taxReport_closure0, O.taxReport_closure2, O.taxReport_closure1, O.taxReport_closure3, O.taxReport_closure4, O.taxReport_closure5, K.memoizedPaymentReport_closure, K.paymentReport_closure, K.paymentReport_closure0, K.paymentReport_closure1, K.paymentReport_closure2, K.paymentReport_closure3, K.paymentReport_closure4, X.memoizedPaymentTaxReport_closure, X.paymentTaxReport_closure, X.paymentTaxReport_closure0, X.paymentTaxReport_closure2, X.paymentTaxReport_closure1, X.paymentTaxReport_closure3, X.paymentTaxReport_closure4, X.paymentTaxReport_closure5, N.memoizedProductReport_closure, N.productReport_closure, N.productReport_closure0, N.productReport_closure1, N.productReport_closure2, N.productReport_closure3, N.productReport_closure4, K.memoizedProfitAndLossReport_closure, K.profitAndLossReport_closure, K.profitAndLossReport_closure0, K.profitAndLossReport_closure2, K.profitAndLossReport_closure1, K.profitAndLossReport_closure3, K.profitAndLossReport_closure4, K.profitAndLossReport_closure5, T.memoizedQuoteItemReport_closure, T.lineItemReport_closure, T.lineItemReport_closure0, T.lineItemReport_closure1, T.lineItemReport_closure2, T.lineItemReport_closure3, T.lineItemReport_closure4, Y.memoizedQuoteReport_closure, Y.quoteReport_closure, Y.quoteReport_closure0, Y.quoteReport_closure1, Y.quoteReport_closure2, Y.quoteReport_closure3, Y.quoteReport_closure4, M.ReportCharts_build_closure, M.ReportCharts_build_closure1, M.ReportCharts_build_closure2, M.ReportCharts_build_closure0, M.ReportCharts_build_closure3, M.ReportCharts_build_closure4, M.ReportCharts_build_closure5, M.ReportCharts_build_closure7, M.ReportCharts_build_closure8, M.ReportCharts_build_closure6, A.ReportsScreen_build_closure, A.ReportsScreen_build__closure2, A.ReportsScreen_build_closure0, A.ReportsScreen_build_closure1, A.ReportsScreen_build_closure2, A.ReportsScreen_build_closure3, A.ReportsScreen_build_closure4, A.ReportsScreen_build_closure5, A.ReportsScreen_build_closure6, A.ReportsScreen_build_closure7, A.ReportsScreen_build_closure8, A.ReportsScreen_build_closure9, A.ReportsScreen_build_closure10, A.ReportsScreen_build_closure11, A.ReportsScreen_build_closure12, A.ReportsScreen_build_closure18, A.ReportsScreen_build_closure13, A.ReportsScreen_build__closure1, A.ReportsScreen_build___closure0, A.ReportsScreen_build_closure14, A.ReportsScreen_build_closure15, A.ReportsScreen_build__closure0, A.ReportsScreen_build_closure16, A.ReportsScreen_build__closure, A.ReportsScreen_build___closure, A.ReportsScreen_build_closure17, A._ReportDataTableState_initState_closure, A._ReportDataTableState_initState__closure, A._ReportDataTableState_didChangeDependencies_closure, A._ReportDataTableState__onChanged_closure, A._ReportDataTableState_dispose_closure, A._ReportDataTableState_dispose__closure, A._ReportDataTableState_build_closure, A.TotalsDataTable_build_closure, A.getReportColumnType_convertCustomFieldType, A.ReportDataTableSource_getRow_closure, A.ReportResult_tableFilters_closure, A.ReportResult_tableFilters_closure0, A.ReportResult_tableFilters_closure1, A.ReportResult_tableFilters_closure2, A.ReportResult_tableFilters_closure4, A.ReportResult_tableFilters_closure3, A.ReportResult_tableFilters_closure7, A.ReportResult_tableFilters_closure9, A.ReportResult_tableFilters__closure, A.ReportResult_tableFilters__closure0, A.ReportResult_tableFilters_closure6, A.ReportResult_tableFilters__closure1, A.ReportResult_tableFilters_closure8, A.ReportResult_tableFilters_closure5, A.ReportResult_tableRow_closure, A.ReportResult_tableRow_closure0, A.ReportResult_tableRow__closure, A.ReportResult_totalColumns_closure, A.ReportResult_totalRows_closure, A.ReportResult_totalRows_closure0, A.ReportResult_totalRows__closure0, A.ReportResult_totalRows_closure1, A.ReportResult_totalRows_closure2, A.ReportResult_totalRows_closure3, A.ReportResult_totalRows__closure, L.ReportsScreenBuilder_build_closure, L.ReportsScreenVM_fromStore_closure2, L.ReportsScreenVM_fromStore_closure3, L.ReportsScreenVM_fromStore_closure1, L.ReportsScreenVM_fromStore__closure0, L.ReportsScreenVM_fromStore_closure, L.ReportsScreenVM_fromStore__closure7, L.ReportsScreenVM_fromStore___closure0, L.ReportsScreenVM_fromStore__closure8, L.ReportsScreenVM_fromStore__closure9, L.ReportsScreenVM_fromStore_closure4, L.ReportsScreenVM_fromStore__closure, L.ReportsScreenVM_fromStore_closure0, L.ReportsScreenVM_fromStore__closure1, L.ReportsScreenVM_fromStore__closure2, L.ReportsScreenVM_fromStore__closure3, L.ReportsScreenVM_fromStore__closure4, L.ReportsScreenVM_fromStore__closure5, L.ReportsScreenVM_fromStore__closure6, L.ReportsScreenVM_fromStore___closure, L.memoizeedGroupTotals_closure, L.calculateReportTotals_closure, E.memoizedTaskReport_closure, E.taskReport_closure, E.taskReport_closure0, E.taskReport_closure1, E.taskReport_closure2, E.taskReport_closure3, E.taskReport_closure4, O._AccountManagementState_didChangeDependencies_closure, O._AccountManagementState_didChangeDependencies_closure0, O._AccountManagementState__onChanged_closure, O._AccountManagementState__onChanged_closure0, O._AccountManagementState_dispose_closure, O._AccountManagementState_build_closure, O._AccountManagementState_build__closure2, O._AccountManagementState_build___closure, O._AccountManagementState_build_closure0, O._AccountManagementState_build__closure1, O._AccountManagementState_build_closure1, O._AccountManagementState_build__closure0, O._AccountManagementState_build_closure2, O._AccountManagementState_build__closure, O._AccountOverview_build__getDataStats, O._AccountOverview_build_closure, O._AccountOverview_build_closure0, O._AccountOverview_build_closure1, O._AccountOverview_build__closure4, O._AccountOverview_build_closure2, O._AccountOverview_build__closure3, O._AccountOverview_build_closure3, O._AccountOverview_build__closure2, O._AccountOverview_build_closure4, O._AccountOverview_build_closure5, O._AccountOverview_build__closure1, O._AccountOverview_build___closure1, O._AccountOverview_build___closure2, O._AccountOverview_build___closure3, O._AccountOverview_build_closure6, O._AccountOverview_build_closure7, O._AccountOverview_build_closure8, O._AccountOverview_build_closure9, O._AccountOverview_build_closure10, O._AccountOverview_build__closure0, O._AccountOverview_build___closure0, O._AccountOverview_build_closure11, O._AccountOverview_build__closure, O._AccountOverview_build___closure, A.AccountManagementScreen_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__closure2, A.AccountManagementVM_fromStore_closure3, A.AccountManagementVM_fromStore_closure4, A.AccountManagementVM_fromStore_closure0, V._BuyNowButtonsState_dispose_closure, V._BuyNowButtonsState_didChangeDependencies_closure, V._BuyNowButtonsState_didChangeDependencies_closure0, V._BuyNowButtonsState_build_closure0, V._BuyNowButtonsState_build_closure, B.BuyNowButtonsScreen_build_closure, S._ClientPortalState__validateSubdomain_closure, S._ClientPortalState__validateSubdomain_closure0, S._ClientPortalState__validateSubdomain__closure, S._ClientPortalState__validateSubdomain__closure0, S._ClientPortalState__validateSubdomain__closure1, S._ClientPortalState__validateSubdomain___closure0, S._ClientPortalState__validateSubdomain__closure2, S._ClientPortalState__validateSubdomain___closure, S._ClientPortalState_dispose_closure, S._ClientPortalState_didChangeDependencies_closure, S._ClientPortalState_didChangeDependencies_closure0, S._ClientPortalState__onChanged_closure, S._ClientPortalState__onChanged__closure, S._ClientPortalState__onChanged__closure0, S._ClientPortalState__onSavePressed_closure, S._ClientPortalState_build_closure18, S._ClientPortalState_build_closure, S._ClientPortalState_build__closure11, S._ClientPortalState_build_closure1, S._ClientPortalState_build_closure0, S._ClientPortalState_build_closure2, S._ClientPortalState_build_closure3, S._ClientPortalState_build_closure4, S._ClientPortalState_build__closure10, S._ClientPortalState_build_closure5, S._ClientPortalState_build__closure9, S._ClientPortalState_build_closure6, S._ClientPortalState_build__closure8, S._ClientPortalState_build_closure7, S._ClientPortalState_build__closure7, S._ClientPortalState_build_closure8, S._ClientPortalState_build_closure9, S._ClientPortalState_build__closure6, S._ClientPortalState_build_closure10, S._ClientPortalState_build_closure11, S._ClientPortalState_build__closure5, S._ClientPortalState_build___closure, S._ClientPortalState_build____closure, S._ClientPortalState_build_closure12, S._ClientPortalState_build__closure4, S._ClientPortalState_build_closure13, S._ClientPortalState_build__closure3, S._ClientPortalState_build_closure14, S._ClientPortalState_build__closure2, S._ClientPortalState_build_closure15, S._ClientPortalState_build__closure1, S._ClientPortalState_build_closure16, S._ClientPortalState_build__closure0, S._ClientPortalState_build_closure17, S._ClientPortalState_build__closure, A.ClientPortalScreen_build_closure, A.ClientPortalVM_fromStore_closure1, A.ClientPortalVM_fromStore_closure0, A.ClientPortalVM_fromStore_closure, A.ClientPortalVM_fromStore__closure, A.ClientPortalVM_fromStore___closure, A._CompanyDetailsState_dispose_closure, A._CompanyDetailsState_didChangeDependencies_closure, A._CompanyDetailsState_didChangeDependencies_closure0, A._CompanyDetailsState__onSettingsChanged_closure, A._CompanyDetailsState__onSettingsChanged_closure0, A._CompanyDetailsState_build_closure, A._CompanyDetailsState_build_closure0, A._CompanyDetailsState_build_closure1, A._CompanyDetailsState_build__closure12, A._CompanyDetailsState_build_closure2, A._CompanyDetailsState_build__closure11, A._CompanyDetailsState_build_closure3, A._CompanyDetailsState_build__closure10, A._CompanyDetailsState_build_closure4, A._CompanyDetailsState_build__closure8, A._CompanyDetailsState_build___closure, A._CompanyDetailsState_build__closure9, A._CompanyDetailsState_build_closure6, A._CompanyDetailsState_build__closure7, A._CompanyDetailsState_build_closure5, A._CompanyDetailsState_build_closure7, A._CompanyDetailsState_build__closure6, A._CompanyDetailsState_build_closure8, A._CompanyDetailsState_build_closure9, A._CompanyDetailsState_build__closure5, A._CompanyDetailsState_build_closure10, A._CompanyDetailsState_build_closure11, A._CompanyDetailsState_build__closure4, A._CompanyDetailsState_build_closure12, A._CompanyDetailsState_build_closure13, A._CompanyDetailsState_build__closure3, A._CompanyDetailsState_build_closure14, A._CompanyDetailsState_build__closure2, A._CompanyDetailsState_build_closure15, A._CompanyDetailsState_build__closure1, A._CompanyDetailsState_build_closure16, A._CompanyDetailsState_build__closure0, A._CompanyDetailsState_build_closure17, A._CompanyDetailsState_build__closure, A._CompanyDetailsState_build_closure18, A._CompanyDetailsState_build_closure19, A.CompanyDetailsScreen_build_closure, A.CompanyDetailsVM_fromStore_closure, A.CompanyDetailsVM_fromStore_closure0, A.CompanyDetailsVM_fromStore_closure3, A.CompanyDetailsVM_fromStore__closure2, A.CompanyDetailsVM_fromStore__closure3, A.CompanyDetailsVM_fromStore__closure4, A.CompanyDetailsVM_fromStore_closure1, A.CompanyDetailsVM_fromStore__closure5, A.CompanyDetailsVM_fromStore_closure2, A.CompanyDetailsVM_fromStore_closure4, A.CompanyDetailsVM_fromStore_closure5, A.CompanyDetailsVM_fromStore__closure0, A.CompanyDetailsVM_fromStore__closure1, A.CompanyDetailsVM_fromStore___closure, A.CompanyDetailsVM_fromStore_closure6, A.CompanyDetailsVM_fromStore__closure, X._CreditCardsAndBanksState_dispose_closure, X._CreditCardsAndBanksState_didChangeDependencies_closure, X._CreditCardsAndBanksState_didChangeDependencies_closure0, F.CreditCardsAndBanksScreen_build_closure, S._CustomFieldsState_initState_closure, S.CustomFieldsSettings_build_closure, S.CustomFieldsSettings_build__closure6, S.CustomFieldsSettings_build_closure0, S.CustomFieldsSettings_build__closure5, S.CustomFieldsSettings_build_closure1, S.CustomFieldsSettings_build__closure4, S.CustomFieldsSettings_build_closure2, S.CustomFieldsSettings_build__closure3, S.CustomFieldsSettings_build_closure3, S.CustomFieldsSettings_build__closure2, S.CustomFieldsSettings_build_closure4, S.CustomFieldsSettings_build__closure1, S.CustomFieldsSettings_build_closure5, S.CustomFieldsSettings_build__closure0, S.CustomFieldsSettings_build_closure6, S.CustomFieldsSettings_build__closure, S._CustomFormFieldState_dispose_closure, S._CustomFormFieldState_didChangeDependencies_closure, S._CustomFormFieldState_didChangeDependencies_closure0, S._CustomFormFieldState__onChanged_closure, S._CustomFormFieldState_build_closure, S._CustomFormFieldState_build_closure0, S._CustomFormFieldState_build_closure1, S._CustomFormFieldState_build__closure, M.CustomFieldsScreen_build_closure, M.CustomFieldsVM_fromStore_closure0, M.CustomFieldsVM_fromStore_closure, M.CustomFieldsVM_fromStore__closure, V._DataVisualizationsState_dispose_closure, V._DataVisualizationsState_didChangeDependencies_closure, V._DataVisualizationsState_didChangeDependencies_closure0, M.DataVisualizationsScreen_build_closure, R._DeviceSettingsState_build_closure, R._DeviceSettingsState_build_closure0, R._DeviceSettingsState_build_closure1, R._DeviceSettingsState_build_closure2, R._DeviceSettingsState_build_closure3, R._DeviceSettingsState_build_closure4, R._DeviceSettingsState_build_closure5, R._DeviceSettingsState_build__closure7, R._DeviceSettingsState_build_closure6, R._DeviceSettingsState_build_closure7, R._DeviceSettingsState_build__closure6, R._DeviceSettingsState_build__closure5, R._DeviceSettingsState_build_closure8, R._DeviceSettingsState_build__closure4, R._DeviceSettingsState_build_closure9, R._DeviceSettingsState_build_closure10, R._DeviceSettingsState_build_closure11, R._DeviceSettingsState_build_closure12, R._DeviceSettingsState_build__closure2, R._DeviceSettingsState_build__closure3, R._DeviceSettingsState_build_closure13, R._DeviceSettingsState_build__closure1, R._DeviceSettingsState_build___closure0, R._DeviceSettingsState_build_closure14, R._DeviceSettingsState_build__closure0, R._DeviceSettingsState_build_closure15, R._DeviceSettingsState_build__closure, R._DeviceSettingsState_build___closure, L.DeviceSettingsScreen_build_closure, L.DeviceSettingsVM_fromStore_closure, L.DeviceSettingsVM_fromStore_closure0, L.DeviceSettingsVM_fromStore_closure1, L.DeviceSettingsVM_fromStore_closure7, L.DeviceSettingsVM_fromStore_closure4, L.DeviceSettingsVM_fromStore_closure5, L.DeviceSettingsVM_fromStore_closure6, L.DeviceSettingsVM_fromStore_closure10, L.DeviceSettingsVM_fromStore_closure3, L.DeviceSettingsVM_fromStore__closure, L.DeviceSettingsVM_fromStore_closure8, L.DeviceSettingsVM_fromStore_closure11, L.DeviceSettingsVM_fromStore_closure2, L.DeviceSettingsVM_fromStore_closure9, N._EmailSettingsState_dispose_closure, N._EmailSettingsState_didChangeDependencies_closure, N._EmailSettingsState_didChangeDependencies_closure0, N._EmailSettingsState__onChanged_closure, N._EmailSettingsState_build_closure, N._EmailSettingsState_build__closure5, N._EmailSettingsState_build_closure0, N._EmailSettingsState_build_closure1, N._EmailSettingsState_build__closure4, N._EmailSettingsState_build_closure2, N._EmailSettingsState_build_closure3, N._EmailSettingsState_build__closure3, N._EmailSettingsState_build_closure4, N._EmailSettingsState_build_closure5, N._EmailSettingsState_build__closure2, N._EmailSettingsState_build_closure6, N._EmailSettingsState_build__closure1, N._EmailSettingsState_build_closure7, N._EmailSettingsState_build__closure0, N._EmailSettingsState_build_closure8, N._EmailSettingsState_build__closure, D.EmailSettingsScreen_build_closure, D.EmailSettingsVM_fromStore_closure0, D.EmailSettingsVM_fromStore_closure, D.EmailSettingsVM_fromStore__closure, F._ExpenseSettingsState_build_closure, F._ExpenseSettingsState_build__closure3, F._ExpenseSettingsState_build_closure0, F._ExpenseSettingsState_build__closure2, F._ExpenseSettingsState_build_closure1, F._ExpenseSettingsState_build__closure1, F._ExpenseSettingsState_build_closure2, F._ExpenseSettingsState_build__closure0, F._ExpenseSettingsState_build_closure3, F._ExpenseSettingsState_build__closure, F._ExpenseSettingsState_build_closure4, N.ExpenseSettingsScreen_build_closure, N.ExpenseSettingsVM_fromStore_closure0, N.ExpenseSettingsVM_fromStore_closure, N.ExpenseSettingsVM_fromStore__closure, N.ExpenseSettingsVM_fromStore_closure1, F._GeneratedNumbersState_initState_closure, F._GeneratedNumbersState_dispose_closure, F._GeneratedNumbersState_didChangeDependencies_closure, F._GeneratedNumbersState_didChangeDependencies_closure0, F._GeneratedNumbersState__onChanged_closure, F._GeneratedNumbersState__onChanged__closure, F._GeneratedNumbersState__onSavePressed_closure, F._GeneratedNumbersState__onSavePressed_closure0, F._GeneratedNumbersState_build_closure0, F._GeneratedNumbersState_build__closure15, F._GeneratedNumbersState_build_closure, F._GeneratedNumbersState_build_closure1, F._GeneratedNumbersState_build__closure14, F._GeneratedNumbersState_build_closure2, F._GeneratedNumbersState_build__closure13, F._GeneratedNumbersState_build_closure3, F._GeneratedNumbersState_build__closure12, F._GeneratedNumbersState_build_closure5, F._GeneratedNumbersState_build__closure11, F._GeneratedNumbersState_build_closure4, F._GeneratedNumbersState_build_closure6, F._GeneratedNumbersState_build__closure10, F._GeneratedNumbersState_build_closure7, F._GeneratedNumbersState_build__closure9, F._GeneratedNumbersState_build_closure8, F._GeneratedNumbersState_build__closure8, F._GeneratedNumbersState_build_closure9, F._GeneratedNumbersState_build__closure7, F._GeneratedNumbersState_build_closure10, F._GeneratedNumbersState_build__closure6, F._GeneratedNumbersState_build_closure11, F._GeneratedNumbersState_build__closure5, F._GeneratedNumbersState_build_closure12, F._GeneratedNumbersState_build__closure4, F._GeneratedNumbersState_build_closure13, F._GeneratedNumbersState_build__closure3, F._GeneratedNumbersState_build_closure14, F._GeneratedNumbersState_build__closure2, F._GeneratedNumbersState_build_closure15, F._GeneratedNumbersState_build__closure1, F._GeneratedNumbersState_build_closure16, F._GeneratedNumbersState_build__closure0, F._GeneratedNumbersState_build_closure17, F._GeneratedNumbersState_build__closure, F._EntityNumberSettingsState_dispose_closure, F._EntityNumberSettingsState_didChangeDependencies_closure, F._EntityNumberSettingsState_didChangeDependencies_closure0, F._EntityNumberSettingsState__onChanged_closure, F._EntityNumberSettingsState_build_closure, F._EntityNumberSettingsState_build_closure0, F.HelpPanel_build_closure, F.HelpPanel_build_closure0, F.HelpPanel_build_closure1, F.HelpPanel_build_closure2, F.HelpPanel_build__closure, F.GeneratedNumbersScreen_build_closure, F.GeneratedNumbersVM_fromStore_closure0, F.GeneratedNumbersVM_fromStore_closure, F.GeneratedNumbersVM_fromStore__closure, D._ImportExportState_build_closure0, D._ImportExportState_build__closure3, D._ImportExportState_build_closure, D._ImportExportState_build__closure4, D._ImportExportState_build_closure1, D._ImportExportState_build__closure2, D._ImportExportState_build_closure2, D._ImportExportState_build__closure, D._ImportExportState_build__closure0, D._ImportExportState_build___closure0, D._ImportExportState_build__closure1, D._ImportExportState_build___closure, D._FileImportState_uploadJsonFile_closure, D._FileImportState_uploadJsonFile_closure0, D._FileImportState_uploadJsonFile__closure0, D._FileImportState_uploadJsonFile_closure1, D._FileImportState_uploadJsonFile__closure, D._FileImportState_uploadFile_closure, D._FileImportState_uploadFile_closure0, D._FileImportState_uploadFile__closure0, D._FileImportState_uploadFile_closure1, D._FileImportState_uploadFile__closure, D._FileImportState_build_closure0, D._FileImportState_build_closure, D._FileImportState_build_closure1, D._FileImportState_build__closure1, D._FileImportState_build_closure2, D._FileImportState_build__closure0, D._FileImportState_build_closure3, D._FileImportState_build__closure, D._FileImportState_build_closure4, D.__FileMapperState_build_closure, D.__FileMapperState_build__closure3, D.__FileMapperState_build_closure0, D.__FileMapperState_build__closure2, D.__FileMapperState_build_closure1, D.__FileMapperState_build_closure2, D.__FileMapperState_build__closure, D.__FileMapperState_build__closure0, D.__FileMapperState_build___closure0, D.__FileMapperState_build__closure1, D.__FileMapperState_build___closure, D._FieldMapper_build_closure, D._FieldMapper_build_closure1, D._FieldMapper_build__closure0, D._FieldMapper_build_closure2, D._FieldMapper_build__closure, D._FieldMapper_build_closure0, N.ImportExportScreen_build_closure, Z._InvoiceDesignState_build_closure49, Z._InvoiceDesignState_build_closure15, Z._InvoiceDesignState_build_closure, Z._InvoiceDesignState_build__closure14, Z._InvoiceDesignState_build__closure15, Z._InvoiceDesignState_build_closure0, Z._InvoiceDesignState_build__closure13, Z._InvoiceDesignState_build_closure1, Z._InvoiceDesignState_build__closure11, Z._InvoiceDesignState_build__closure12, Z._InvoiceDesignState_build_closure2, Z._InvoiceDesignState_build__closure10, Z._InvoiceDesignState_build_closure3, Z._InvoiceDesignState_build__closure8, Z._InvoiceDesignState_build__closure9, Z._InvoiceDesignState_build_closure4, Z._InvoiceDesignState_build__closure7, Z._InvoiceDesignState_build_closure5, Z._InvoiceDesignState_build__closure6, Z._InvoiceDesignState_build_closure6, Z._InvoiceDesignState_build_closure7, Z._InvoiceDesignState_build__closure5, Z._InvoiceDesignState_build_closure8, Z._InvoiceDesignState_build_closure9, Z._InvoiceDesignState_build__closure4, Z._InvoiceDesignState_build_closure10, Z._InvoiceDesignState_build_closure11, Z._InvoiceDesignState_build__closure3, Z._InvoiceDesignState_build_closure12, Z._InvoiceDesignState_build__closure2, Z._InvoiceDesignState_build_closure13, Z._InvoiceDesignState_build__closure1, Z._InvoiceDesignState_build_closure14, Z._InvoiceDesignState_build__closure0, Z._InvoiceDesignState_build_closure16, Z._InvoiceDesignState_build__closure, Z._InvoiceDesignState_build_closure17, Z._InvoiceDesignState_build_closure18, Z._InvoiceDesignState_build_closure19, Z._InvoiceDesignState_build_closure20, Z._InvoiceDesignState_build_closure21, Z._InvoiceDesignState_build_closure22, Z._InvoiceDesignState_build_closure23, Z._InvoiceDesignState_build_closure24, Z._InvoiceDesignState_build_closure25, Z._InvoiceDesignState_build_closure26, Z._InvoiceDesignState_build_closure27, Z._InvoiceDesignState_build_closure28, Z._InvoiceDesignState_build_closure29, Z._InvoiceDesignState_build_closure30, Z._InvoiceDesignState_build_closure31, Z._InvoiceDesignState_build_closure32, Z._InvoiceDesignState_build_closure33, Z._InvoiceDesignState_build_closure34, Z._InvoiceDesignState_build_closure35, Z._InvoiceDesignState_build_closure36, Z._InvoiceDesignState_build_closure37, Z._InvoiceDesignState_build_closure38, Z._InvoiceDesignState_build_closure39, Z._InvoiceDesignState_build_closure40, Z._InvoiceDesignState_build_closure41, Z._InvoiceDesignState_build_closure42, Z._InvoiceDesignState_build_closure43, Z._InvoiceDesignState_build_closure44, Z._InvoiceDesignState_build_closure45, Z._InvoiceDesignState_build_closure46, Z._InvoiceDesignState_build_closure47, Z._InvoiceDesignState_build_closure48, B.InvoiceDesignScreen_build_closure, B.InvoiceDesignVM_fromStore_closure, B.InvoiceDesignVM_fromStore_closure0, B.InvoiceDesignVM_fromStore__closure, B.InvoiceDesignVM_fromStore___closure, B.InvoiceDesignVM_fromStore____closure, B.InvoiceDesignVM_fromStore_____closure, B.InvoiceDesignVM_fromStore_____closure0, G._LocalizationSettingsState_dispose_closure, G._LocalizationSettingsState_didChangeDependencies_closure, G._LocalizationSettingsState_didChangeDependencies_closure0, G._LocalizationSettingsState_build_closure, G._LocalizationSettingsState_build_closure0, G._LocalizationSettingsState_build_closure1, G._LocalizationSettingsState_build__closure11, G._LocalizationSettingsState_build_closure2, G._LocalizationSettingsState_build__closure10, G._LocalizationSettingsState_build_closure3, G._LocalizationSettingsState_build__closure9, G._LocalizationSettingsState_build_closure4, G._LocalizationSettingsState_build__closure8, G._LocalizationSettingsState_build_closure5, G._LocalizationSettingsState_build__closure7, G._LocalizationSettingsState_build_closure6, G._LocalizationSettingsState_build__closure6, G._LocalizationSettingsState_build_closure7, G._LocalizationSettingsState_build__closure5, G._LocalizationSettingsState_build_closure9, G._LocalizationSettingsState_build__closure4, G._LocalizationSettingsState_build_closure8, G._LocalizationSettingsState_build_closure10, G._LocalizationSettingsState_build_closure11, G._LocalizationSettingsState_build__closure3, G._LocalizationSettingsState_build_closure12, G._LocalizationSettingsState_build__closure1, G._LocalizationSettingsState_build___closure, G._LocalizationSettingsState_build__closure2, G._LocalizationSettingsState_build_closure13, G._LocalizationSettingsState_build__closure0, G._LocalizationSettingsState_build_closure14, G._LocalizationSettingsState_build__closure, B.LocalizationScreen_build_closure, B.LocalizationSettingsVM_fromStore_closure0, B.LocalizationSettingsVM_fromStore_closure, B.LocalizationSettingsVM_fromStore_closure1, B.LocalizationSettingsVM_fromStore__closure, B.LocalizationSettingsVM_fromStore___closure, B.LocalizationSettingsVM_fromStore____closure, V._OnlinePaymentsState_didChangeDependencies_closure, V._OnlinePaymentsState_didChangeDependencies_closure0, V._OnlinePaymentsState__onChanged_closure, V._OnlinePaymentsState_build_closure0, V._OnlinePaymentsState_build__closure1, V._OnlinePaymentsState_build_closure1, V._OnlinePaymentsState_build__closure0, V._OnlinePaymentsState_build_closure, V._OnlinePaymentsState_build__closure2, V._OnlinePaymentsState_build_closure2, V._OnlinePaymentsState_build__closure, V._OnlinePaymentsState_build_closure3, B.OnlinePaymentsScreen_build_closure, B.OnlinePaymentsVM_fromStore_closure0, B.OnlinePaymentsVM_fromStore_closure, B.OnlinePaymentsVM_fromStore__closure, B.OnlinePaymentsVM_fromStore_closure1, L._ProductSettingsState_build_closure, L._ProductSettingsState_build__closure5, L._ProductSettingsState_build_closure0, L._ProductSettingsState_build__closure4, L._ProductSettingsState_build_closure1, L._ProductSettingsState_build__closure3, L._ProductSettingsState_build_closure2, L._ProductSettingsState_build__closure2, L._ProductSettingsState_build_closure3, L._ProductSettingsState_build__closure1, L._ProductSettingsState_build_closure4, L._ProductSettingsState_build__closure0, L._ProductSettingsState_build_closure5, L._ProductSettingsState_build__closure, G.ProductSettingsScreen_build_closure, G.ProductSettingsVM_fromStore_closure0, G.ProductSettingsVM_fromStore_closure, G.ProductSettingsVM_fromStore__closure, U.SettingsListTile_build_closure, U.SettingsSearch_build_closure, D.SettingsListBuilder_build_closure, D.SettingsListVM_fromStore_closure, D.SettingsListVM_fromStore_closure2, D.SettingsListVM_fromStore_closure1, D.SettingsListVM_fromStore_closure0, A.SettingsScreen_build_closure, L.SettingsScreenBuilder_build_closure, X._SettingsWizardState_dispose_closure, X._SettingsWizardState__validateSubdomain_closure, X._SettingsWizardState__validateSubdomain__closure, X._SettingsWizardState__validateSubdomain__closure0, X._SettingsWizardState__validateSubdomain__closure1, X._SettingsWizardState__validateSubdomain___closure0, X._SettingsWizardState__validateSubdomain__closure2, X._SettingsWizardState__validateSubdomain___closure, X._SettingsWizardState__onRefreshPressed_closure, X._SettingsWizardState__onRefreshPressed__closure0, X._SettingsWizardState__onRefreshPressed_closure0, X._SettingsWizardState__onRefreshPressed__closure, X._SettingsWizardState__onSavePressed_closure, X._SettingsWizardState__onSavePressed_closure0, X._SettingsWizardState__onSavePressed__closure, X._SettingsWizardState__onSavePressed___closure0, X._SettingsWizardState__onSavePressed___closure1, X._SettingsWizardState__onSavePressed____closure, X._SettingsWizardState__onSavePressed___closure2, X._SettingsWizardState__onSavePressed__closure0, X._SettingsWizardState__onSavePressed___closure, X._SettingsWizardState__onSavePressed__closure1, X._SettingsWizardState__onSavePressed__closure2, X._SettingsWizardState_build_closure, X._SettingsWizardState_build_closure0, X._SettingsWizardState_build_closure1, X._SettingsWizardState_build_closure2, X._SettingsWizardState_build__closure1, X._SettingsWizardState_build_closure3, X._SettingsWizardState_build_closure4, X._SettingsWizardState_build__closure0, X._SettingsWizardState_build_closure5, X._SettingsWizardState_build_closure6, X._SettingsWizardState_build__closure, X._SettingsWizardState_build_closure8, X._SettingsWizardState_build_closure7, X._SettingsWizardState_build_closure9, L._TaskSettingsState_didChangeDependencies_closure, L._TaskSettingsState_didChangeDependencies_closure0, L._TaskSettingsState_dispose_closure, L._TaskSettingsState__onChanged_closure, L._TaskSettingsState_build_closure, L._TaskSettingsState_build__closure5, L._TaskSettingsState_build_closure0, L._TaskSettingsState_build__closure4, L._TaskSettingsState_build_closure1, L._TaskSettingsState_build__closure3, L._TaskSettingsState_build_closure2, L._TaskSettingsState_build__closure2, L._TaskSettingsState_build_closure3, L._TaskSettingsState_build__closure1, L._TaskSettingsState_build_closure4, L._TaskSettingsState_build__closure0, L._TaskSettingsState_build_closure5, L._TaskSettingsState_build__closure, L._TaskSettingsState_build_closure6, L._TaskSettingsState_build_closure7, F.TaskSettingsScreen_build_closure, F.TaskSettingsVM_fromStore_closure0, F.TaskSettingsVM_fromStore_closure1, F.TaskSettingsVM_fromStore_closure, F.TaskSettingsVM_fromStore__closure, F.TaskSettingsVM_fromStore_closure2, N._TaxSettingsState_build_closure, N._TaxSettingsState_build__closure4, N._TaxSettingsState_build_closure0, N._TaxSettingsState_build__closure3, N._TaxSettingsState_build_closure1, N._TaxSettingsState_build__closure2, N._TaxSettingsState_build_closure2, N._TaxSettingsState_build__closure1, N._TaxSettingsState_build_closure3, N._TaxSettingsState_build__closure0, N._TaxSettingsState_build_closure4, N._TaxSettingsState_build__closure, N._TaxSettingsState_build_closure5, N.NumberOfRatesSelector_build_closure, A.TaxSettingsScreen_build_closure, A.TaxSettingsVM_fromStore_closure0, A.TaxSettingsVM_fromStore_closure1, A.TaxSettingsVM_fromStore_closure, A.TaxSettingsVM_fromStore__closure, A.TaxSettingsVM_fromStore_closure2, L._TemplatesAndRemindersState_dispose_closure, L._TemplatesAndRemindersState__loadTemplate_closure, L._TemplatesAndRemindersState__onChanged_closure, L._TemplatesAndRemindersState__onChanged__closure, L._TemplatesAndRemindersState__onChanged__closure0, L._TemplatesAndRemindersState__onChanged__closure1, L._TemplatesAndRemindersState__onChanged__closure2, L._TemplatesAndRemindersState__onChanged__closure3, L._TemplatesAndRemindersState__onChanged__closure4, L._TemplatesAndRemindersState__onChanged__closure5, L._TemplatesAndRemindersState__onChanged__closure6, L._TemplatesAndRemindersState__onChanged__closure7, L._TemplatesAndRemindersState__onChanged__closure8, L._TemplatesAndRemindersState__onChanged__closure9, L._TemplatesAndRemindersState__onChanged__closure10, L._TemplatesAndRemindersState__onChanged__closure11, L._TemplatesAndRemindersState__handleTabSelection_closure, L._TemplatesAndRemindersState__handleTabSelection_closure0, L._TemplatesAndRemindersState__handleTabSelection__closure, L._TemplatesAndRemindersState_build_closure1, L._TemplatesAndRemindersState_build__closure4, L._TemplatesAndRemindersState_build_closure, L._TemplatesAndRemindersState_build_closure0, L._TemplatesAndRemindersState_build_closure2, L._TemplatesAndRemindersState_build__closure3, L._TemplatesAndRemindersState_build_closure3, L._TemplatesAndRemindersState_build__closure2, L._TemplatesAndRemindersState_build_closure4, L._TemplatesAndRemindersState_build__closure1, L._TemplatesAndRemindersState_build_closure5, L._TemplatesAndRemindersState_build__closure0, L._TemplatesAndRemindersState_build_closure7, L._TemplatesAndRemindersState_build__closure, L._TemplatesAndRemindersState_build_closure6, L._ReminderSettingsState_dispose_closure, L._ReminderSettingsState_didChangeDependencies_closure, L._ReminderSettingsState_didChangeDependencies_closure0, L._ReminderSettingsState__onTextChanged_closure, L._ReminderSettingsState_build_closure0, L._ReminderSettingsState_build_closure, F.TemplatesAndRemindersScreen_build_closure, F.TemplatesAndRemindersVM_fromStore_closure0, F.TemplatesAndRemindersVM_fromStore_closure, F.TemplatesAndRemindersVM_fromStore_closure1, F.TemplatesAndRemindersVM_fromStore__closure, K._UserDetailsState_dispose_closure, K._UserDetailsState_didChangeDependencies_closure, K._UserDetailsState_didChangeDependencies_closure0, K._UserDetailsState__onChanged_closure, K._UserDetailsState__onChanged_closure0, K._UserDetailsState_build_closure10, K._UserDetailsState_build__closure, K._UserDetailsState_build_closure, K._UserDetailsState_build_closure0, K._UserDetailsState_build_closure1, K._UserDetailsState_build_closure2, K._UserDetailsState_build_closure3, K._UserDetailsState_build_closure4, K._UserDetailsState_build__closure4, K._UserDetailsState_build_closure5, K._UserDetailsState_build__closure3, K._UserDetailsState_build_closure7, K._UserDetailsState_build__closure2, K._UserDetailsState_build_closure6, K._UserDetailsState_build_closure8, K._UserDetailsState_build__closure1, K._UserDetailsState_build_closure9, K._UserDetailsState_build__closure0, K._EnableTwoFactorState_initState_closure, K._EnableTwoFactorState_initState__closure, K._EnableTwoFactorState_initState_closure0, K._EnableTwoFactorState__onSavePressed_closure, K._EnableTwoFactorState__onSavePressed_closure0, K._EnableTwoFactorState__onSavePressed_closure1, K._EnableTwoFactorState__onSavePressed__closure0, K._EnableTwoFactorState__onSavePressed_closure2, K._EnableTwoFactorState__onSavePressed__closure, K._EnableTwoFactorState_build_closure, K._EnableTwoFactorState_build_closure1, K._EnableTwoFactorState_build_closure0, K._EnableTwoFactorState_build_closure2, K._EnableTwoFactorState_build_closure3, K._EnableTwoFactorState_build_closure4, M.UserDetailsScreen_build_closure, M.UserDetailsVM_fromStore_closure, M.UserDetailsVM_fromStore_closure3, M.UserDetailsVM_fromStore__closure0, M.UserDetailsVM_fromStore___closure0, M.UserDetailsVM_fromStore____closure, M.UserDetailsVM_fromStore_closure4, M.UserDetailsVM_fromStore__closure, M.UserDetailsVM_fromStore___closure, M.UserDetailsVM_fromStore_closure2, M.UserDetailsVM_fromStore__closure1, M.UserDetailsVM_fromStore___closure1, M.UserDetailsVM_fromStore____closure0, M.UserDetailsVM_fromStore____closure1, M.UserDetailsVM_fromStore_closure1, M.UserDetailsVM_fromStore__closure2, M.UserDetailsVM_fromStore___closure2, M.UserDetailsVM_fromStore_closure0, M.UserDetailsVM_fromStore__closure3, M.UserDetailsVM_fromStore___closure3, M.UserDetailsVM_fromStore____closure3, M.UserDetailsVM_fromStore___closure4, M.UserDetailsVM_fromStore____closure2, D._WorkflowSettingsState_build_closure, D._WorkflowSettingsState_build__closure3, D._WorkflowSettingsState_build_closure0, D._WorkflowSettingsState_build__closure2, D._WorkflowSettingsState_build_closure1, D._WorkflowSettingsState_build__closure1, D._WorkflowSettingsState_build_closure2, D._WorkflowSettingsState_build_closure3, D._WorkflowSettingsState_build__closure0, D._WorkflowSettingsState_build_closure4, D._WorkflowSettingsState_build__closure, Y.WorkflowSettingsScreen_build_closure, Y.WorkflowSettingsVM_fromStore_closure0, Y.WorkflowSettingsVM_fromStore_closure, Y.WorkflowSettingsVM_fromStore__closure, S._SubscriptionEditState_didChangeDependencies_closure, S._SubscriptionEditState_didChangeDependencies_closure0, S._SubscriptionEditState_dispose_closure, S._SubscriptionEditState__onChanged_closure, S._SubscriptionEditState__onChanged_closure0, S._SubscriptionEditState_build_closure24, S._SubscriptionEditState_build_closure25, S._SubscriptionEditState_build_closure, S._SubscriptionEditState_build__closure19, S._SubscriptionEditState_build_closure0, S._SubscriptionEditState_build__closure18, S._SubscriptionEditState_build_closure1, S._SubscriptionEditState_build__closure17, S._SubscriptionEditState_build___closure3, S._SubscriptionEditState_build_closure2, S._SubscriptionEditState_build_closure3, S._SubscriptionEditState_build__closure16, S._SubscriptionEditState_build___closure2, S._SubscriptionEditState_build_closure4, S._SubscriptionEditState_build__closure15, S._SubscriptionEditState_build___closure1, S._SubscriptionEditState_build_closure5, S._SubscriptionEditState_build_closure6, S._SubscriptionEditState_build__closure14, S._SubscriptionEditState_build___closure0, S._SubscriptionEditState_build_closure7, S._SubscriptionEditState_build__closure13, S._SubscriptionEditState_build_closure8, S._SubscriptionEditState_build_closure9, S._SubscriptionEditState_build__closure12, S._SubscriptionEditState_build_closure10, S._SubscriptionEditState_build_closure11, S._SubscriptionEditState_build__closure11, S._SubscriptionEditState_build_closure12, S._SubscriptionEditState_build__closure10, S._SubscriptionEditState_build_closure13, S._SubscriptionEditState_build__closure9, S._SubscriptionEditState_build_closure14, S._SubscriptionEditState_build__closure8, S._SubscriptionEditState_build_closure15, S._SubscriptionEditState_build__closure7, S._SubscriptionEditState_build_closure16, S._SubscriptionEditState_build__closure6, S._SubscriptionEditState_build_closure17, S._SubscriptionEditState_build__closure5, S._SubscriptionEditState_build_closure18, S._SubscriptionEditState_build__closure4, S._SubscriptionEditState_build_closure21, S._SubscriptionEditState_build__closure1, S._SubscriptionEditState_build_closure19, S._SubscriptionEditState_build__closure3, S._SubscriptionEditState_build_closure20, S._SubscriptionEditState_build__closure2, S._SubscriptionEditState_build_closure22, S._SubscriptionEditState_build__closure0, S._SubscriptionEditState_build_closure23, S._SubscriptionEditState_build__closure, S._SubscriptionEditState_build___closure, R.SubscriptionEditScreen_build_closure0, R.SubscriptionEditScreen_build_closure, R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure, R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1, R.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0, R.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure, R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure, R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0, R.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1, R.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure, Y.SubscriptionListItem_build_closure1, Y.SubscriptionListItem_build_closure0, Y.SubscriptionListItem_build_closure, S.SubscriptionListBuilder_build_closure, S.SubscriptionListBuilder_build__closure, S.SubscriptionListVM_fromStore__handleRefresh, S.SubscriptionListVM_fromStore_closure, S.SubscriptionListVM_fromStore_closure0, S.SubscriptionListVM_fromStore_closure1, O.SubscriptionScreen_build_closure9, O.SubscriptionScreen_build_closure7, O.SubscriptionScreen_build_closure8, O.SubscriptionScreen_build_closure4, O.SubscriptionScreen_build_closure5, O.SubscriptionScreen_build_closure, O.SubscriptionScreen_build_closure0, O.SubscriptionScreen_build_closure1, O.SubscriptionScreen_build_closure2, O.SubscriptionScreen_build_closure3, O.SubscriptionScreen_build_closure6, L.SubscriptionScreenBuilder_build_closure, M._SubscriptionViewState_build_closure1, M._SubscriptionViewState_build_closure0, M._SubscriptionViewState_build_closure, E.SubscriptionViewScreen_build_closure0, E.SubscriptionViewScreen_build_closure, E.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure, B._UpdateDialogState_build_closure, B._UpdateDialogState_build_closure0, B._UpdateDialogState_build_closure1, B._UpdateDialogState_build_closure2, B._UpdateDialogState_build_closure3, B._UpdateDialogState_updateApp_closure, B._UpdateDialogState_updateApp__closure, B._UpdateDialogState_updateApp__closure0, B._UpdateDialogState_updateApp___closure0, B._UpdateDialogState_updateApp__closure1, B._UpdateDialogState_updateApp___closure, X._TaskEditState_initState_closure, X._TaskEditState_initState__closure, X._TaskEditState_build_closure2, X._TaskEditState_build_closure3, X._TaskEditState_build_closure, X._TaskEditState_build_closure0, X._TaskEditState_build_closure1, X._TaskEditState_build__closure, R._TaskEditDesktopState_didChangeDependencies_closure, R._TaskEditDesktopState_didChangeDependencies_closure0, R._TaskEditDesktopState_dispose_closure, R._TaskEditDesktopState__onChanged_closure, R._TaskEditDesktopState__onChanged_closure0, R._TaskEditDesktopState_build_closure, R._TaskEditDesktopState_build_closure0, R._TaskEditDesktopState_build_closure2, R._TaskEditDesktopState_build__closure8, R._TaskEditDesktopState_build_closure1, R._TaskEditDesktopState_build_closure3, R._TaskEditDesktopState_build__closure7, R._TaskEditDesktopState_build_closure4, R._TaskEditDesktopState_build_closure5, R._TaskEditDesktopState_build__closure6, R._TaskEditDesktopState_build_closure6, R._TaskEditDesktopState_build__closure5, R._TaskEditDesktopState_build_closure7, R._TaskEditDesktopState_build__closure4, R._TaskEditDesktopState_build_closure8, R._TaskEditDesktopState_build__closure3, R._TaskEditDesktopState_build_closure9, R._TaskEditDesktopState_build__closure2, R._TaskEditDesktopState_build_closure10, R._TaskEditDesktopState_build__closure1, R._TaskEditDesktopState_build_closure11, R._TaskEditDesktopState_build__closure0, R._TaskEditDesktopState_build_closure12, R._TaskEditDesktopState_build__closure, B._TaskEditDetailsState_didChangeDependencies_closure, B._TaskEditDetailsState_didChangeDependencies_closure0, B._TaskEditDetailsState_dispose_closure, B._TaskEditDetailsState__onChanged_closure, B._TaskEditDetailsState__onChanged_closure0, B._TaskEditDetailsState_build_closure0, B._TaskEditDetailsState_build__closure2, B._TaskEditDetailsState_build_closure, B._TaskEditDetailsState_build_closure1, B._TaskEditDetailsState_build__closure1, B._TaskEditDetailsState_build_closure2, B._TaskEditDetailsState_build_closure3, B._TaskEditDetailsState_build__closure0, B._TaskEditDetailsState_build_closure4, B._TaskEditDetailsState_build__closure, A.TaskEditDetailsScreen_build_closure0, A.TaskEditDetailsScreen_build_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1, U._TaskEditTimesState__showTaskTimeEditor_closure, U._TaskEditTimesState__showTaskTimeEditor__closure, U._TaskEditTimesState_build_closure, U._TaskEditTimesState_build_closure0, U._TaskEditTimesState_build__closure, U.TimeEditDetailsState_build_closure, U.TimeEditDetailsState_build__closure3, U.TimeEditDetailsState_build_closure0, U.TimeEditDetailsState_build__closure2, U.TimeEditDetailsState_build_closure1, U.TimeEditDetailsState_build__closure1, U.TimeEditDetailsState_build_closure2, U.TimeEditDetailsState_build__closure0, U.TimeEditDetailsState_build_closure3, U.TimeEditDetailsState_build__closure, U.TimeEditDetailsState_build_closure4, U.TimeEditDetailsState_build_closure5, M.TaskEditTimesScreen_build_closure0, M.TaskEditTimesScreen_build_closure, M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure, M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0, M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1, M.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2, B.TaskEditScreen_build_closure0, B.TaskEditScreen_build_closure, B.TaskEditVM_TaskEditVM$fromStore_closure0, B.TaskEditVM_TaskEditVM$fromStore_closure1, B.TaskEditVM_TaskEditVM$fromStore__closure, B.TaskEditVM_TaskEditVM$fromStore_closure, B.TaskEditVM_TaskEditVM$fromStore__closure0, B.TaskEditVM_TaskEditVM$fromStore___closure, B.TaskEditVM_TaskEditVM$fromStore___closure0, B.TaskEditVM_TaskEditVM$fromStore___closure1, B.TaskEditVM_TaskEditVM$fromStore____closure, O._KanbanTaskCardState_build_closure, O._KanbanTaskCardState_build_closure1, O._KanbanTaskCardState_build__closure3, O._KanbanTaskCardState_build_closure0, O._KanbanTaskCardState_build__closure4, O._KanbanTaskCardState_build___closure, O._KanbanTaskCardState_build_closure8, O._KanbanTaskCardState_build__closure1, O._KanbanTaskCardState_build_closure9, O._KanbanTaskCardState_build__closure0, O._KanbanTaskCardState_build_closure2, O._KanbanTaskCardState_build_closure3, O._KanbanTaskCardState_build_closure4, O._KanbanTaskCardState_build_closure5, O._KanbanTaskCardState_build_closure6, O._KanbanTaskCardState_build__closure2, O._KanbanTaskCardState_build_closure7, O._KanbanTaskCardState_build_closure10, O._KanbanTaskCardState_build__closure, D._KanbanStatusCardState__onSavePressed_closure, D._KanbanStatusCardState__onSavePressed__closure, D._KanbanStatusCardState_build_closure, D._KanbanStatusCardState_build_closure0, D._KanbanStatusCardState_build_closure1, D._KanbanStatusCardState_build__closure0, D._KanbanStatusCardState_build_closure2, D._KanbanStatusCardState_build__closure, O.KanbanViewState__initBoard_closure, O.KanbanViewState__initBoard_closure0, O.KanbanViewState__initBoard_closure1, O.KanbanViewState__initBoard_closure2, O.KanbanViewState__initBoard__closure, O.KanbanViewState__onBoardChanged_closure, O.KanbanViewState_build_closure, O.KanbanViewState_build_closure0, O.KanbanViewState_build__closure5, O.KanbanViewState_build___closure, O.KanbanViewState_build__closure, O.KanbanViewState_build__closure1, O.KanbanViewState_build__closure0, O.KanbanViewState_build___closure5, O.KanbanViewState_build__closure2, O.KanbanViewState_build___closure4, O.KanbanViewState_build____closure3, O.KanbanViewState_build__closure3, O.KanbanViewState_build__closure4, O.KanbanViewState_build___closure1, O.KanbanViewState_build___closure0, O.KanbanViewState_build____closure2, O.KanbanViewState_build___closure3, O.KanbanViewState_build____closure, O.KanbanViewState_build___closure2, O.KanbanViewState_build____closure0, O.KanbanViewState_build____closure1, T._KanbanViewBuilderState_build_closure, T.KanbanVM_fromStore_closure, T.KanbanVM_fromStore_closure1, T.KanbanVM_fromStore__closure, T.KanbanVM_fromStore_closure0, T.KanbanVM_fromStore__closure0, T.KanbanVM_fromStore__closure1, T.KanbanVM_fromStore__closure2, T.KanbanVM_fromStore__closure3, U.TaskListItem_build_closure1, U.TaskListItem_build_closure, U.TaskListItem_build_closure0, U.TaskListItem_build__closure2, U.TaskListItem_build__closure1, U.TaskListItem_build__closure, U.TaskListItem_build__closure0, U.TaskListItem_build__closure5, U.TaskListItem_build__closure4, U.TaskListItem_build__closure3, K.TaskListBuilder_build_closure, K.TaskListBuilder_build__closure, K.TaskListVM_fromStore__handleRefresh, K.TaskListVM_fromStore_closure0, K.TaskListVM_fromStore_closure, K.TaskListVM_fromStore_closure1, T.TaskPresenter_getField_closure, T.TaskPresenter_getField_closure0, D.TaskScreen_build_closure15, D.TaskScreen_build_closure13, D.TaskScreen_build_closure14, D.TaskScreen_build_closure, D.TaskScreen_build_closure0, D.TaskScreen_build_closure9, D.TaskScreen_build_closure11, D.TaskScreen_build_closure5, D.TaskScreen_build_closure6, D.TaskScreen_build_closure7, D.TaskScreen_build_closure8, D.TaskScreen_build_closure1, D.TaskScreen_build_closure2, D.TaskScreen_build_closure3, D.TaskScreen_build_closure10, D.TaskScreen_build_closure4, D.TaskScreen_build_closure12, Y.TaskScreenBuilder_build_closure, M.TaskTimeListTile_build_closure, Q._TaskViewState_build_closure, Q._TaskViewState_build__closure, Q._TaskViewState_build__closure0, B.TaskViewDocuments_build_closure, B.TaskViewDocuments_build_closure0, S._TaskOverviewState_initState_closure, S._TaskOverviewState_initState__closure, S._TaskOverviewState_build__buildView, S._TaskOverviewState_build__buildView_closure, S._TaskOverviewState_build__buildView__closure, S._TaskOverviewState_build_closure, L.TaskViewScreen_build_closure0, L.TaskViewScreen_build_closure, L.TaskViewVM_TaskViewVM$fromStore__handleRefresh, L.TaskViewVM_TaskViewVM$fromStore__toggleTask, L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure, L.TaskViewVM_TaskViewVM$fromStore__toggleTask_closure0, L.TaskViewVM_TaskViewVM$fromStore__toggleTask__closure, L.TaskViewVM_TaskViewVM$fromStore_closure0, L.TaskViewVM_TaskViewVM$fromStore_closure, L.TaskViewVM_TaskViewVM$fromStore_closure1, L.TaskViewVM_TaskViewVM$fromStore_closure2, L.TaskViewVM_TaskViewVM$fromStore__closure0, L.TaskViewVM_TaskViewVM$fromStore__closure1, L.TaskViewVM_TaskViewVM$fromStore___closure, L.TaskViewVM_TaskViewVM$fromStore_closure3, L.TaskViewVM_TaskViewVM$fromStore__closure, L._TaskStatusEditState_didChangeDependencies_closure, L._TaskStatusEditState_didChangeDependencies_closure0, L._TaskStatusEditState_dispose_closure, L._TaskStatusEditState__onChanged_closure, L._TaskStatusEditState__onChanged_closure0, L._TaskStatusEditState_build_closure0, L._TaskStatusEditState_build_closure1, L._TaskStatusEditState_build__closure, L._TaskStatusEditState_build_closure, L._TaskStatusEditState_build__closure0, L._TaskStatusEditState_build__closure1, L._TaskStatusEditState_build___closure, Q.TaskStatusEditScreen_build_closure0, Q.TaskStatusEditScreen_build_closure, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0, Q.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure, O.TaskStatusListItem_build_closure1, O.TaskStatusListItem_build_closure0, O.TaskStatusListItem_build_closure, U.TaskStatusListBuilder_build_closure, U.TaskStatusListBuilder_build__closure, U.TaskStatusListVM_fromStore__handleRefresh, U.TaskStatusListVM_fromStore_closure, U.TaskStatusListVM_fromStore_closure0, U.TaskStatusListVM_fromStore_closure1, Y.TaskStatusScreen_build_closure9, Y.TaskStatusScreen_build_closure7, Y.TaskStatusScreen_build_closure8, Y.TaskStatusScreen_build_closure4, Y.TaskStatusScreen_build_closure5, Y.TaskStatusScreen_build_closure, Y.TaskStatusScreen_build_closure0, Y.TaskStatusScreen_build_closure1, Y.TaskStatusScreen_build_closure2, Y.TaskStatusScreen_build_closure3, Y.TaskStatusScreen_build_closure6, U.TaskStatusScreenBuilder_build_closure, L._TaskStatusViewState_build_closure, T.TaskStatusViewScreen_build_closure0, T.TaskStatusViewScreen_build_closure, T.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure, A._TaxRateEditState_didChangeDependencies_closure, A._TaxRateEditState_didChangeDependencies_closure0, A._TaxRateEditState_dispose_closure, A._TaxRateEditState__onChanged_closure, A._TaxRateEditState__onChanged_closure0, A._TaxRateEditState_build_closure, S.TaxRateEditScreen_build_closure0, S.TaxRateEditScreen_build_closure, S.TaxRateEditVM_TaxRateEditVM$fromStore_closure, S.TaxRateEditVM_TaxRateEditVM$fromStore_closure1, S.TaxRateEditVM_TaxRateEditVM$fromStore_closure0, S.TaxRateEditVM_TaxRateEditVM$fromStore__closure, S.TaxRateEditVM_TaxRateEditVM$fromStore___closure, S.TaxRateEditVM_TaxRateEditVM$fromStore___closure0, S.TaxRateEditVM_TaxRateEditVM$fromStore____closure, Z.TaxRateListItem_build_closure1, Z.TaxRateListItem_build_closure0, Z.TaxRateListItem_build_closure, X.TaxRateListBuilder_build_closure, X.TaxRateListBuilder_build__closure, X.TaxRateListVM_fromStore__handleRefresh, X.TaxRateListVM_fromStore_closure, X.TaxRateListVM_fromStore_closure0, X.TaxRateListVM_fromStore_closure1, D.TaxRateSettingsScreen_build_closure5, D.TaxRateSettingsScreen_build_closure3, D.TaxRateSettingsScreen_build_closure4, D.TaxRateSettingsScreen_build_closure0, D.TaxRateSettingsScreen_build_closure1, D.TaxRateSettingsScreen_build_closure, D.TaxRateSettingsScreen_build_closure2, O.TaxRateScreenBuilder_build_closure, K._TaxRateViewState_build_closure, R.TaxRateViewScreen_build_closure0, R.TaxRateViewScreen_build_closure, R.TaxRateViewVM_TaxRateViewVM$fromStore_closure, Y._TokenEditState_didChangeDependencies_closure, Y._TokenEditState_didChangeDependencies_closure0, Y._TokenEditState_dispose_closure, Y._TokenEditState__onChanged_closure, Y._TokenEditState__onChanged_closure0, Y._TokenEditState_build_closure0, Y._TokenEditState_build_closure1, Y._TokenEditState_build__closure, Y._TokenEditState_build_closure, Y._TokenEditState_build__closure0, R.TokenEditScreen_build_closure0, R.TokenEditScreen_build_closure, R.TokenEditVM_TokenEditVM$fromStore_closure, R.TokenEditVM_TokenEditVM$fromStore_closure1, R.TokenEditVM_TokenEditVM$fromStore_closure0, R.TokenEditVM_TokenEditVM$fromStore__closure, R.TokenEditVM_TokenEditVM$fromStore___closure, R.TokenEditVM_TokenEditVM$fromStore____closure, R.TokenEditVM_TokenEditVM$fromStore____closure0, R.TokenEditVM_TokenEditVM$fromStore_____closure, K.TokenListItem_build_closure1, K.TokenListItem_build_closure0, K.TokenListItem_build_closure, M.TokenListBuilder_build_closure, M.TokenListBuilder_build__closure, M.TokenListVM_fromStore__handleRefresh, M.TokenListVM_fromStore_closure, M.TokenListVM_fromStore_closure0, M.TokenListVM_fromStore_closure1, S.TokenScreen_build_closure9, S.TokenScreen_build_closure7, S.TokenScreen_build_closure8, S.TokenScreen_build_closure4, S.TokenScreen_build_closure5, S.TokenScreen_build_closure, S.TokenScreen_build_closure0, S.TokenScreen_build_closure1, S.TokenScreen_build_closure2, S.TokenScreen_build_closure3, S.TokenScreen_build_closure6, K.TokenScreenBuilder_build_closure, Y._TokenViewState_build_closure, Y._TokenListTile_build_closure, U.TokenViewScreen_build_closure0, U.TokenViewScreen_build_closure, U.TokenViewVM_TokenViewVM$fromStore_closure, U._UserEditState_didChangeDependencies_closure, U._UserEditState_didChangeDependencies_closure0, U._UserEditState_dispose_closure, U._UserEditState__onChanged_closure, U._UserEditState__onChanged_closure0, U._UserEditState__togglePermission_closure, U._UserEditState__togglePermission_closure0, U._UserEditState_build_closure13, U._UserEditState_build_closure14, U._UserEditState_build__closure, U._UserEditState_build_closure, U._UserEditState_build_closure0, U._UserEditState_build_closure1, U._UserEditState_build_closure2, U._UserEditState_build__closure9, U._UserEditState_build_closure3, U._UserEditState_build__closure8, U._UserEditState_build_closure4, U._UserEditState_build__closure7, U._UserEditState_build___closure0, U._UserEditState_build_closure5, U._UserEditState_build_closure6, U._UserEditState_build_closure7, U._UserEditState_build_closure8, U._UserEditState_build_closure9, U._UserEditState_build_closure10, U._UserEditState_build_closure11, U._UserEditState_build_closure12, U._UserEditState_build__closure0, U._UserEditState_build___closure, U._UserEditState_build____closure, U._UserEditState_build__closure2, U._UserEditState_build__closure1, U._UserEditState_build__closure4, U._UserEditState_build__closure3, U._UserEditState_build__closure6, U._UserEditState_build__closure5, Y.UserEditScreen_build_closure0, Y.UserEditScreen_build_closure, Y.UserEditVM_UserEditVM$fromStore_closure, Y.UserEditVM_UserEditVM$fromStore_closure1, Y.UserEditVM_UserEditVM$fromStore_closure0, Y.UserEditVM_UserEditVM$fromStore__closure, Y.UserEditVM_UserEditVM$fromStore___closure, Y.UserEditVM_UserEditVM$fromStore___closure0, Y.UserEditVM_UserEditVM$fromStore___closure1, Y.UserEditVM_UserEditVM$fromStore____closure, E.UserListItem_build_closure1, E.UserListItem_build_closure0, E.UserListItem_build_closure, M.UserListBuilder_build_closure, M.UserListBuilder_build__closure, M.UserListBuilder_build__closure_showDialog, M.UserListBuilder_build___closure, M.UserListVM_fromStore__handleRefresh, M.UserListVM_fromStore_closure, M.UserListVM_fromStore_closure0, M.UserListVM_fromStore_closure1, G.UserScreen_build_closure9, G.UserScreen_build_closure7, G.UserScreen_build_closure8, G.UserScreen_build_closure4, G.UserScreen_build_closure0, G.UserScreen_build_closure1, G.UserScreen_build_closure2, G.UserScreen_build_closure3, G.UserScreen_build_closure5, G.UserScreen_build_closure, G.UserScreen_build_closure6, A.UserScreenBuilder_build_closure, B.UserView_build_closure, X.UserViewScreen_build_closure0, X.UserViewScreen_build_closure, X.UserViewVM_UserViewVM$fromStore_closure, K._VendorEditState_build_closure, K._VendorEditState_build_closure0, G.VendorEditAddressState_didChangeDependencies_closure, G.VendorEditAddressState_didChangeDependencies_closure0, G.VendorEditAddressState_dispose_closure, G.VendorEditAddressState__onChanged_closure, G.VendorEditAddressState__onChanged_closure0, G.VendorEditAddressState_build_closure, G.VendorEditAddressState_build__closure, D._VendorEditContactsState__showContactEditor_closure, D._VendorEditContactsState__showContactEditor__closure, D._VendorEditContactsState_build_closure, D._VendorEditContactsState_build__closure, D._VendorEditContactsState_build_closure0, D._VendorEditContactsState_build_closure1, D.VendorContactEditDetailsState_didChangeDependencies_closure, D.VendorContactEditDetailsState_didChangeDependencies_closure0, D.VendorContactEditDetailsState_dispose_closure, D.VendorContactEditDetailsState__onChanged_closure, D.VendorContactEditDetailsState__onChanged_closure0, D.VendorContactEditDetailsState_build_closure, D.VendorContactEditDetailsState_build_closure0, D.VendorContactEditDetailsState_build_closure1, D.VendorContactEditDetailsState_build_closure2, D.VendorContactEditDetailsState_build_closure3, D.VendorContactEditDetailsState_build_closure4, D.VendorContactEditDetailsState_build__closure, D.VendorContactEditDetailsState_build_closure5, T.VendorEditContactsScreen_build_closure0, T.VendorEditContactsScreen_build_closure, T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure, T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0, T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1, T.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2, Q.VendorEditDetailsState_didChangeDependencies_closure, Q.VendorEditDetailsState_didChangeDependencies_closure0, Q.VendorEditDetailsState_dispose_closure, Q.VendorEditDetailsState__onChanged_closure, Q.VendorEditDetailsState__onChanged_closure0, Q.VendorEditDetailsState_build_closure, Q.VendorEditDetailsState_build_closure0, Q.VendorEditDetailsState_build__closure, Q.VendorEditFooter_build_closure, N.VendorEditNotesState_didChangeDependencies_closure, N.VendorEditNotesState_didChangeDependencies_closure0, N.VendorEditNotesState_dispose_closure, N.VendorEditNotesState__onChanged_closure, N.VendorEditNotesState__onChanged_closure0, N.VendorEditNotesState_build_closure, N.VendorEditNotesState_build__closure, A.VendorEditScreen_build_closure0, A.VendorEditScreen_build_closure, A.VendorEditVM_VendorEditVM$fromStore_closure, A.VendorEditVM_VendorEditVM$fromStore_closure1, A.VendorEditVM_VendorEditVM$fromStore_closure0, A.VendorEditVM_VendorEditVM$fromStore__closure, A.VendorEditVM_VendorEditVM$fromStore___closure, A.VendorEditVM_VendorEditVM$fromStore___closure0, A.VendorEditVM_VendorEditVM$fromStore___closure1, A.VendorEditVM_VendorEditVM$fromStore____closure, Z.VendorListItem_build_closure, Z.VendorListItem_build__closure2, Z.VendorListItem_build__closure1, Z.VendorListItem_build__closure, Z.VendorListItem_build__closure0, Z.VendorListItem_build__closure5, Z.VendorListItem_build__closure4, Z.VendorListItem_build__closure3, E.VendorListBuilder_build_closure, E.VendorListBuilder_build__closure, E.VendorListVM_fromStore__handleRefresh, E.VendorListVM_fromStore_closure, E.VendorListVM_fromStore_closure0, E.VendorListVM_fromStore_closure1, K.VendorScreen_build_closure9, K.VendorScreen_build_closure7, K.VendorScreen_build_closure8, K.VendorScreen_build_closure4, K.VendorScreen_build_closure0, K.VendorScreen_build_closure1, K.VendorScreen_build_closure2, K.VendorScreen_build_closure3, K.VendorScreen_build_closure5, K.VendorScreen_build_closure, K.VendorScreen_build_closure6, B.VendorScreenBuilder_build_closure, N._VendorViewState_build_closure0, N._VendorViewState_build__closure, N._VendorViewState_build__closure0, N._VendorViewState_build__closure1, N._VendorViewState_build_closure, Y._VendorViewDetailsState_build__buildDetailsList, Y._VendorViewDetailsState_build__buildDetailsList_closure, Y._VendorViewDetailsState_build__buildDetailsList__closure1, Y._VendorViewDetailsState_build__buildDetailsList___closure0, Y._VendorViewDetailsState_build__buildDetailsList__closure2, Y._VendorViewDetailsState_build__buildDetailsList___closure, Y._VendorViewDetailsState_build__buildDetailsList_closure0, Y._VendorViewDetailsState_build__buildDetailsList__closure0, Y._VendorViewDetailsState_build__buildDetailsList_closure1, Y._VendorViewDetailsState_build__buildDetailsList__closure, Y._VendorViewDetailsState_build__buildDetailsList_closure2, G.VendorViewDocuments_build_closure, G.VendorViewDocuments_build_closure0, F.VendorViewScreen_build_closure0, F.VendorViewScreen_build_closure, F.VendorViewVM_VendorViewVM$fromStore__handleRefresh, F.VendorViewVM_VendorViewVM$fromStore_closure, F.VendorViewVM_VendorViewVM$fromStore_closure0, F.VendorViewVM_VendorViewVM$fromStore_closure1, F.VendorViewVM_VendorViewVM$fromStore__closure0, F.VendorViewVM_VendorViewVM$fromStore__closure1, F.VendorViewVM_VendorViewVM$fromStore___closure, F.VendorViewVM_VendorViewVM$fromStore_closure2, F.VendorViewVM_VendorViewVM$fromStore__closure, N._WebhookEditState_didChangeDependencies_closure, N._WebhookEditState_didChangeDependencies_closure0, N._WebhookEditState_dispose_closure, N._WebhookEditState__onChanged_closure, N._WebhookEditState__onChanged_closure0, N._WebhookEditState_build_closure0, N._WebhookEditState_build_closure1, N._WebhookEditState_build_closure, N._WebhookEditState_build__closure, N._WebhookEditState_build__closure3, N._WebhookEditState_build___closure2, N._WebhookEditState_build__closure0, N._WebhookEditState_build__closure4, N._WebhookEditState_build___closure1, N._WebhookEditState_build__closure1, N._WebhookEditState_build___closure4, N._WebhookEditState_build__closure2, N._WebhookEditState_build___closure3, N._WebhookEditState_build__closure5, N._WebhookEditState_build___closure0, N._WebhookEditState_build__closure6, N._WebhookEditState_build___closure, N._WebhookEditState_build____closure, F.WebhookEditScreen_build_closure0, F.WebhookEditScreen_build_closure, F.WebhookEditVM_WebhookEditVM$fromStore_closure, F.WebhookEditVM_WebhookEditVM$fromStore_closure1, F.WebhookEditVM_WebhookEditVM$fromStore_closure0, F.WebhookEditVM_WebhookEditVM$fromStore__closure, F.WebhookEditVM_WebhookEditVM$fromStore___closure, F.WebhookEditVM_WebhookEditVM$fromStore___closure0, F.WebhookEditVM_WebhookEditVM$fromStore____closure, L._WebhookViewState_build_closure, L.TargetListTile_build_closure, Y.WebhookViewScreen_build_closure0, Y.WebhookViewScreen_build_closure, Y.WebhookViewVM_WebhookViewVM$fromStore_closure, X.WebhookListItem_build_closure1, X.WebhookListItem_build_closure0, X.WebhookListItem_build_closure, X.WebhookListBuilder_build_closure, X.WebhookListBuilder_build__closure, X.WebhookListVM_fromStore__handleRefresh, X.WebhookListVM_fromStore_closure, X.WebhookListVM_fromStore_closure0, X.WebhookListVM_fromStore_closure1, T.WebhookScreen_build_closure9, T.WebhookScreen_build_closure7, T.WebhookScreen_build_closure8, T.WebhookScreen_build_closure4, T.WebhookScreen_build_closure5, T.WebhookScreen_build_closure, T.WebhookScreen_build_closure0, T.WebhookScreen_build_closure1, T.WebhookScreen_build_closure2, T.WebhookScreen_build_closure3, T.WebhookScreen_build_closure6, T.WebhookScreenBuilder_build_closure, O.snackBarCompleter_closure, O.snackBarCompleter_closure0, O.snackBarCompleter__closure, O.Debouncer_run_closure, N.loadDesign_closure, N.loadDesign_closure0, O.showRefreshDataDialog_closure, O.showErrorDialog_closure, O.showMessageDialog_closure, O.confirmCallback_closure, O.confirmCallback_closure__onPressed, O.confirmCallback__closure, O.confirmCallback__closure0, O.confirmCallback__closure1, O.confirmCallback__closure2, O.confirmCallback__closure3, O.passwordCallback_closure, O.passwordCallback_closure0, O.passwordCallback__closure, O._PasswordConfirmationState_build_closure0, O._PasswordConfirmationState_build_closure, O._PasswordConfirmationState_build__closure, O._PasswordConfirmationState_build_closure1, O._PasswordConfirmationState_build_closure2, O._PasswordConfirmationState_build_closure3, O.fieldCallback_closure, O._FieldConfirmationState_build_closure0, O._FieldConfirmationState_build_closure, O._FieldConfirmationState_build_closure1, O._FieldConfirmationState_build_closure2, O._FieldConfirmationState_build_closure3, O.cloneToDialog_closure, O.cloneToDialog__closure, O.cloneToDialog__closure0, O.cloneToDialog__closure1, O.cloneToDialog__closure2, O.cloneToDialog__closure3, N.EnumUtils_fromString_closure, N.EnumUtils_fromString_closure0, B.GoogleOAuth_signIn_closure, B.GoogleOAuth_signUp_closure, A.toSnakeCase_closure, A.toCamelCase_closure, A.toSpaceCase_closure, A.toTitleCase_closure, A.matchesStrings_closure, A.matchesStringsValue_closure, L.loadEmailTemplate_closure, L.loadEmailTemplate_closure0, L.WebUtils_registerWebView_closure, L.WebUtils_warnChanges_closure, F.Logger_Logger_closure, O.memo1__prevArg_set, O.memo1__prevResult_set, O.memo1__prevArg_get, O.memo1__prevResult_get, O.memo1_closure, O.memo2__prevArgA_set, O.memo2__prevArgB_set, O.memo2__prevResult_set, O.memo2__prevArgA_get, O.memo2__prevArgB_get, O.memo2__prevResult_get, O.memo2_closure, O.memo3__prevArgA_set, O.memo3__prevArgB_set, O.memo3__prevArgC_set, O.memo3__prevResult_set, O.memo3__prevArgA_get, O.memo3__prevArgB_get, O.memo3__prevArgC_get, O.memo3__prevResult_get, O.memo3_closure, O.memo4__prevArgA_set, O.memo4__prevArgB_set, O.memo4__prevArgC_set, O.memo4__prevArgD_set, O.memo4__prevResult_set, O.memo4__prevArgA_get, O.memo4__prevArgB_get, O.memo4__prevArgC_get, O.memo4__prevArgD_get, O.memo4__prevResult_get, O.memo4_closure, O.memo5__prevArgA_set, O.memo5__prevArgB_set, O.memo5__prevArgC_set, O.memo5__prevArgD_set, O.memo5__prevArgE_set, O.memo5__prevResult_set, O.memo5__prevArgA_get, O.memo5__prevArgB_get, O.memo5__prevArgC_get, O.memo5__prevArgD_get, O.memo5__prevArgE_get, O.memo5__prevResult_get, O.memo5_closure, O.memo6__prevArgA_set, O.memo6__prevArgB_set, O.memo6__prevArgC_set, O.memo6__prevArgD_set, O.memo6__prevArgE_set, O.memo6__prevArgF_set, O.memo6__prevResult_set, O.memo6__prevArgA_get, O.memo6__prevArgB_get, O.memo6__prevArgC_get, O.memo6__prevArgD_get, O.memo6__prevArgE_get, O.memo6__prevArgF_get, O.memo6__prevResult_get, O.memo6_closure, O.memo7__prevArgA_set, O.memo7__prevArgB_set, O.memo7__prevArgC_set, O.memo7__prevArgD_set, O.memo7__prevArgE_set, O.memo7__prevArgF_set, O.memo7__prevArgG_set, O.memo7__prevResult_set, O.memo7__prevArgA_get, O.memo7__prevArgB_get, O.memo7__prevArgC_get, O.memo7__prevArgD_get, O.memo7__prevArgE_get, O.memo7__prevArgF_get, O.memo7__prevArgG_get, O.memo7__prevResult_get, O.memo7_closure, O.memo8__prevArgA_set, O.memo8__prevArgB_set, O.memo8__prevArgC_set, O.memo8__prevArgD_set, O.memo8__prevArgE_set, O.memo8__prevArgF_set, O.memo8__prevArgG_set, O.memo8__prevArgH_set, O.memo8__prevResult_set, O.memo8__prevArgA_get, O.memo8__prevArgB_get, O.memo8__prevArgC_get, O.memo8__prevArgD_get, O.memo8__prevArgE_get, O.memo8__prevArgF_get, O.memo8__prevArgG_get, O.memo8__prevArgH_get, O.memo8__prevResult_get, O.memo8_closure, O.memo9__prevArgA_set, O.memo9__prevArgB_set, O.memo9__prevArgC_set, O.memo9__prevArgD_set, O.memo9__prevArgE_set, O.memo9__prevArgF_set, O.memo9__prevArgG_set, O.memo9__prevArgH_set, O.memo9__prevArgI_set, O.memo9__prevResult_set, O.memo9__prevArgA_get, O.memo9__prevArgB_get, O.memo9__prevArgC_get, O.memo9__prevArgD_get, O.memo9__prevArgE_get, O.memo9__prevArgF_get, O.memo9__prevArgG_get, O.memo9__prevArgH_get, O.memo9__prevArgI_get, O.memo9__prevResult_get, O.memo9_closure, O.memo10__prevArgA_set, O.memo10__prevArgB_set, O.memo10__prevArgC_set, O.memo10__prevArgD_set, O.memo10__prevArgE_set, O.memo10__prevArgF_set, O.memo10__prevArgG_set, O.memo10__prevArgH_set, O.memo10__prevArgI_set, O.memo10__prevArgJ_set, O.memo10__prevResult_set, O.memo10__prevArgA_get, O.memo10__prevArgB_get, O.memo10__prevArgC_get, O.memo10__prevArgD_get, O.memo10__prevArgE_get, O.memo10__prevArgF_get, O.memo10__prevArgG_get, O.memo10__prevArgH_get, O.memo10__prevArgI_get, O.memo10__prevArgJ_get, O.memo10__prevResult_get, O.memo10_closure, S.PdfDocument_getPage_closure, V.PdfPage_render_closure, V.PdfPage_close_closure, V.Page_render_closure, X._PdfViewState__getPageImage_closure, X._PdfViewState__changeLoadingState_closure, X._PdfViewState__buildLoaded_closure, X._PdfViewState__buildLoaded_closure0, X._PdfViewState__buildLoaded_closure1, X._PdfViewState_build_closure, V.PdfPageImageProvider_load_closure, F._FadeWidgetState_animationStatusChange_closure, K.RenderOverflowView_resetOffstage_closure, K.RenderOverflowView_performFixedLayout_getChildOffset, K.RenderOverflowView_performFlexibleLayout_closure, K.RenderOverflowView_visitOnlyOnStageChildren_closure, K.RenderOverflowView_paint_paintChild, K.RenderOverflowView_paint_defaultPaint, K.RenderOverflowView_hitTestChildren_closure, K.RenderOverflowView_hitTestChildren__closure, K.OverflowView$_all_closure, M.Context_joinAll_closure, M.Context_split_closure, M._validateArgList_closure, E._PhotoViewState_build_closure, M.PhotoViewCoreState_build_closure, O.PhotoViewGestureDetector_build_closure, O.PhotoViewGestureDetector_build_closure0, O.PhotoViewGestureDetector_build_closure1, O.PhotoViewGestureDetector_build_closure2, O.PhotoViewGestureDetector_build_closure3, O.PhotoViewGestureDetector_build_closure4, L._ImageWrapperState__getOrCreateListener_handleImageChunk, L._ImageWrapperState__getOrCreateListener_handleImageChunk_closure, L._ImageWrapperState__getOrCreateListener_handleImageFrame, L._ImageWrapperState__getOrCreateListener_handleImageFrame_closure, L._ImageWrapperState__getOrCreateListener_handleError, L._ImageWrapperState__getOrCreateListener_handleError_closure, L._registerFactory_closure, E._QrImageState_build_closure, S.QrValidator_validate__qrCode_set, S.QrValidator_validate__qrCode_get, A.hashObjects_closure1, X.Store__createReduceAndNotify_closure, X.Store__createDispatchers_closure, B.combineReducers_closure, O.LoggingMiddleware_call_closure, N.RoundedLoadingButtonState_build_closure, N.RoundedLoadingButtonState_initState_closure, N.RoundedLoadingButtonState_initState__closure1, N.RoundedLoadingButtonState_initState_closure0, N.RoundedLoadingButtonState_initState__closure0, N.RoundedLoadingButtonState_initState_closure1, N.RoundedLoadingButtonState_initState_closure2, N.RoundedLoadingButtonState_initState__closure, U.BehaviorSubject__deferStream_closure, U.BehaviorSubject_map_closure, U.BehaviorSubject__forwardBehaviorSubject__subject_set, U.BehaviorSubject__forwardBehaviorSubject__subscription_set, U.BehaviorSubject__forwardBehaviorSubject__subject_get, U.BehaviorSubject__forwardBehaviorSubject__subscription_get, U.BehaviorSubject__forwardBehaviorSubject_closure0, U.BehaviorSubject__forwardBehaviorSubject_closure, F.Subject_addStream_closure, F.Subject_addStream_closure0, F.Subject_addStream_closure2, F.Subject_addStream_closure1, G._StartWithStreamSink_onListen_closure, O._StartWithErrorStreamSink_onListen_closure, F.forwardStream__controller_set, F.forwardStream__subscription_set, F.forwardStream__controller_get, F.forwardStream__subscription_get, F.forwardStream_runCatching, F.forwardStream_closure, F.forwardStream__closure1, F.forwardStream__closure2, F.forwardStream___closure1, F.forwardStream__closure4, F.forwardStream___closure, F.forwardStream__closure3, F.forwardStream___closure0, F.forwardStream_closure0, F.forwardStream_closure1, F.forwardStream__closure0, F.forwardStream_closure2, F.forwardStream__closure, M.RouteObserverBreadcrumb__formatArgs_closure, V.SharedPreferencesPlugin__storedFlutterKeys_closure, U.Highlighter_closure, U.Highlighter$__closure, U.Highlighter$___closure, U.Highlighter$__closure0, U.Highlighter__collateLines_closure, U.Highlighter__collateLines_closure0, U.Highlighter__collateLines_closure1, U.Highlighter__collateLines__closure, U.Highlighter_highlight_closure, U.Highlighter__writeFileStart_closure, U.Highlighter__writeMultilineHighlights_closure, U.Highlighter__writeMultilineHighlights_closure0, U.Highlighter__writeMultilineHighlights_closure1, U.Highlighter__writeMultilineHighlights_closure2, U.Highlighter__writeMultilineHighlights__closure, U.Highlighter__writeMultilineHighlights__closure0, U.Highlighter__writeHighlightedText_closure, U.Highlighter__writeIndicator_closure, U.Highlighter__writeIndicator_closure0, U.Highlighter__writeIndicator_closure1, U.Highlighter__writeSidebar_closure, U._Highlight_closure, S.BasicLock_synchronized__complete, E.format_closure, F.MethodChannelUrlLauncher_canLaunch_closure, F.MethodChannelUrlLauncher_launch_closure, A.hashObjects_closure0]); _inheritMany(H.EngineCanvas, [H.BitmapCanvas, H._DomCanvas_EngineCanvas_SaveElementStackTracking]); _inherit(H._CanvasPool, H._SaveStackTracking); _inherit(H.RecordingCkCanvas, H.CkCanvas); _inheritMany(H.CkPaintCommand, [H.CkClearCommand, H.CkSaveCommand, H.CkRestoreCommand, H.CkRestoreToCountCommand, H.CkTranslateCommand, H.CkScaleCommand, H.CkRotateCommand, H.CkTransformCommand, H.CkClipRectCommand, H.CkDrawArcCommand, H.CkClipRRectCommand, H.CkClipPathCommand, H.CkDrawLineCommand, H.CkDrawPaintCommand, H.CkDrawRectCommand, H.CkDrawRRectCommand, H.CkDrawDRRectCommand, H.CkDrawCircleCommand, H.CkDrawPathCommand, H.CkDrawShadowCommand, H.CkDrawImageRectCommand, H.CkDrawParagraphCommand, H.CkDrawPictureCommand, H.CkSaveLayerCommand]); _inheritMany(J.Interceptor, [J.JavaScriptObject, J.JSBool, J.JSNull, J.JSArray, J.JSNumber, J.JSString, H.NativeByteBuffer, H.NativeTypedData, W.EventTarget, W.AccessibleNodeList, W.Event, W.Blob, W.BluetoothRemoteGattDescriptor, W.Body, W.CanvasRenderingContext2D, W.Client, W.Credential, W.CredentialUserData, W.CssRule, W.CssStyleValue, W.CssTransformComponent, W._CssStyleDeclaration_Interceptor_CssStyleDeclarationBase, W.StyleSheet, W.DataTransferItemList, W.DomError, W.DomException, W._DomRectList_Interceptor_ListMixin, W.DomRectReadOnly, W._DomStringList_Interceptor_ListMixin, W.DomTokenList, W.Entry, W._FileList_Interceptor_ListMixin, W.FileSystem, W.FontFace, W.Gamepad, W.GamepadButton, W.History, W._HtmlCollection_Interceptor_ListMixin, W.ImageData, W.Location, W.MediaList, W._MidiInputMap_Interceptor_MapMixin, W._MidiOutputMap_Interceptor_MapMixin, W.MimeType, W._MimeTypeArray_Interceptor_ListMixin, W.NavigatorConcurrentHardware, W.NavigatorUserMediaError, W._NodeList_Interceptor_ListMixin, W.OverconstrainedError, W.PerformanceEntry, W.PerformanceServerTiming, W.Plugin, W._PluginArray_Interceptor_ListMixin, W.PushMessageData, W.RelatedApplication, W.RtcLegacyStatsReport, W._RtcStatsReport_Interceptor_MapMixin, W.SpeechGrammar, W._SpeechGrammarList_Interceptor_ListMixin, W.SpeechRecognitionResult, W.SpeechSynthesisVoice, W._Storage_Interceptor_MapMixin, W._TextTrackCueList_Interceptor_ListMixin, W.TimeRanges, W.Touch, W._TouchList_Interceptor_ListMixin, W.TrackDefaultList, W.Url, W.VideoTrack, W.VttRegion, W.__CssRuleList_Interceptor_ListMixin, W.__GamepadList_Interceptor_ListMixin, W.__NamedNodeMap_Interceptor_ListMixin, W._Report, W.__SpeechRecognitionResultList_Interceptor_ListMixin, W.__StyleSheetList_Interceptor_ListMixin, P.Cursor, P.Index, P.KeyRange, P.ObjectStore, P.Observation, P.Angle, P.Length, P._LengthList_Interceptor_ListMixin, P.Number, P._NumberList_Interceptor_ListMixin, P.PointList, P.Rect0, P._StringList_Interceptor_ListMixin, P.Transform0, P._TransformList_Interceptor_ListMixin, P.AudioBuffer, P.AudioParam, P._AudioParamMap_Interceptor_MapMixin, P.AudioTrack, P.ActiveInfo, P._SqlResultSetRowList_Interceptor_ListMixin]); _inheritMany(J.JavaScriptObject, [H.CanvasKit, H.CanvasKitInitOptions, H.CanvasKitInitPromise, H.ColorSpace, H.SkWebGLContextOptions, H.SkSurface, H.SkGrContext, H.SkFontSlantEnum, H.SkFontSlant, H.SkFontWeightEnum, H.SkFontWeight, H.SkAffinityEnum, H.SkAffinity, H.SkTextDirectionEnum, H.SkTextDirection, H.SkTextAlignEnum, H.SkTextAlign, H.SkRectHeightStyleEnum, H.SkRectHeightStyle, H.SkRectWidthStyleEnum, H.SkRectWidthStyle, H.SkVertexModeEnum, H.SkVertexMode, H.SkPointModeEnum, H.SkPointMode, H.SkClipOpEnum, H.SkClipOp, H.SkFillTypeEnum, H.SkFillType, H.SkPathOpEnum, H.SkPathOp, H.SkBlurStyleEnum, H.SkBlurStyle, H.SkStrokeCapEnum, H.SkStrokeCap, H.SkPaintStyleEnum, H.SkPaintStyle, H.SkBlendModeEnum, H.SkBlendMode, H.SkStrokeJoinEnum, H.SkStrokeJoin, H.SkFilterQualityEnum, H.SkFilterQuality, H.SkTileModeEnum, H.SkTileMode, H.SkFilterModeEnum, H.SkFilterMode, H.SkMipmapModeEnum, H.SkMipmapMode, H.SkAlphaTypeEnum, H.SkAlphaType, H.SkColorTypeEnum, H.SkColorType, H.SkAnimatedImage, H.SkImage, H.SkShaderNamespace, H.SkShader, H.SkMaskFilterNamespace, H.SkPaint, H.SkMaskFilter, H.SkColorFilterNamespace, H.SkColorFilter, H.SkImageFilterNamespace, H.SkImageFilter, H.SkPathNamespace, H._NativeFloat32ArrayType, H.SkFloat32List, H.SkPath, H.SkContourMeasureIter, H.SkContourMeasure, H.SkPictureRecorder, H.SkCanvas, H.SkPicture, H.SkParagraphBuilderNamespace, H.SkParagraphBuilder, H.SkParagraphStyle, H.SkParagraphStyleProperties, H.SkTextStyle, H.SkTextDecorationStyleEnum, H.SkTextDecorationStyle, H.SkTextBaselineEnum, H.SkTextBaseline, H.SkPlaceholderAlignmentEnum, H.SkPlaceholderAlignment, H.SkTextStyleProperties, H.SkStrutStyleProperties, H.SkFontStyle, H.SkTextShadow, H.SkFontFeature, H.SkTypeface, H.SkFont, H.SkFontMgr, H.SkLineMetrics, H.SkParagraph, H.SkTextPosition, H.SkTextRange, H.SkVertices, H.SkTonalColors, H.SkFontMgrNamespace, H.TypefaceFontProviderNamespace, H.SkDeletable, H.JsConstructor, H.SkObjectFinalizationRegistry, H.SkData, H.SkImageInfo, H.JsUrlStrategy, J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction, L.JsUrlStrategy0, Q.LoadConfig, U.GoogleAuthInitFailureError, U.GoogleAuthSignInError, U.OfflineAccessResponse, U.GoogleAuth, U._GoogleAuth, U.IsSignedIn, U.CurrentUser, U.SigninOptions, U.OfflineAccessOptions, U.ClientConfig, U.SigninOptionsBuilder, U.BasicProfile, U.AuthResponse, U.AuthorizeConfig, U.AuthorizeResponse, U.GoogleUser, U._GoogleUser, U.Promise, N.PdfJs, N.Settings, N.PdfJsDocLoader, N.PdfJsDoc, N.PdfJsPage, N.PdfJsViewport, N.PdfJsRender]); _inherit(H.TypefaceFontProvider, H.SkFontMgr); _inheritMany(H.SkiaObject, [H.ManagedSkiaObject, H.SkiaObjectBox]); _inheritMany(H.ManagedSkiaObject, [H._ManagedSkColorFilter, H.CkAnimatedImage, H.CkMaskFilter, H.CkPaint, H.CkPath, H.CkPicture, H.CkShader, H.CkParagraph]); _inheritMany(P.Iterable, [H.MutatorsStack, H._CastIterableBase, H.EfficientLengthIterable, H.MappedIterable, H.WhereIterable, H.ExpandIterable, H.TakeIterable, H.SkipIterable, H.SkipWhileIterable, H.FollowedByIterable, H.WhereTypeIterable, H._ConstantMapKeyIterable, P.IterableBase, H._StringAllMatchesIterable, P.LinkedList, P.DoubleLinkedQueue, P.Runes, T.StringCharacters, T._ReversedSeriesIterable, Y.TimeStepIteratorFactory, R.ObserverList, R.HashedObserverList]); _inheritMany(H.Layer, [H.ContainerLayer, H.PictureLayer0, H.PlatformViewLayer0]); _inheritMany(H.ContainerLayer, [H.RootLayer, H.ClipPathEngineLayer, H.ClipRectEngineLayer, H.ClipRRectEngineLayer, H.OpacityEngineLayer, H.TransformEngineLayer, H.PhysicalShapeEngineLayer]); _inherit(H.OffsetEngineLayer, H.TransformEngineLayer); _inherit(H.CkGradientLinear, H.CkShader); _inheritMany(P.Error, [H.CanvasKitError, H.LateError, H.ReachabilityError, H.NotNullableError, P.TypeError, H.JsNoSuchMethodError, H.UnknownJsTypeError, H.RuntimeError, P.AssertionError, H._Error, P.JsonUnsupportedObjectError, P.NullThrownError, P.ArgumentError, P.NoSuchMethodError, P.UnsupportedError, P.UnimplementedError, P.StateError, P.ConcurrentModificationError, P.CyclicInitializationError, Y.BuiltValueNullFieldError, Y.BuiltValueNestedFieldError, U.DeserializationError, U._FlutterError_Error_DiagnosticableTreeMixin, O.StoreProviderError, O.ConverterError]); _inherit(H.DomCanvas, H._DomCanvas_EngineCanvas_SaveElementStackTracking); _inheritMany(H.PersistedSurface, [H.PersistedContainerSurface, H.PersistedLeafSurface]); _inheritMany(H.PersistedContainerSurface, [H._PersistedClipRect_PersistedContainerSurface__DomClip, H._PersistedClipRRect_PersistedContainerSurface__DomClip, H._PersistedPhysicalShape_PersistedContainerSurface__DomClip, H.PersistedClipPath, H.PersistedOffset, H.PersistedOpacity, H.PersistedScene, H.PersistedTransform]); _inherit(H.PersistedClipRect, H._PersistedClipRect_PersistedContainerSurface__DomClip); _inherit(H.PersistedClipRRect, H._PersistedClipRRect_PersistedContainerSurface__DomClip); _inherit(H.PersistedPhysicalShape, H._PersistedPhysicalShape_PersistedContainerSurface__DomClip); _inheritMany(H.PersistedLeafSurface, [H.PersistedPicture, H.PersistedPlatformView]); _inheritMany(H.PaintCommand, [H.DrawCommand, H.PaintSave, H.PaintRestore, H.PaintTranslate, H.PaintScale, H.PaintRotate, H.PaintTransform]); _inheritMany(H.DrawCommand, [H.PaintClipRect, H.PaintClipRRect, H.PaintClipPath, H.PaintDrawLine, H.PaintDrawRect, H.PaintDrawRRect, H.PaintDrawDRRect, H.PaintDrawCircle, H.PaintDrawPath, H.PaintDrawShadow, H.PaintDrawImageRect, H.PaintDrawParagraph]); _inherit(H.GradientLinear, H.EngineGradient); _inherit(H.HtmlBlobCodec, H.HtmlCodec); _inheritMany(H.BrowserHistory, [H.MultiEntriesBrowserHistory, H.SingleEntryBrowserHistory]); _inheritMany(H.UrlStrategy, [H.HashUrlStrategy, H.CustomUrlStrategy]); _inherit(H.BrowserPlatformLocation, H.PlatformLocation); _inherit(H.EnginePlatformDispatcher, P.PlatformDispatcher); _inheritMany(H._BaseAdapter, [H.__PointerAdapter__BaseAdapter__WheelEventListenerMixin, H._TouchAdapter, H.__MouseAdapter__BaseAdapter__WheelEventListenerMixin]); _inherit(H._PointerAdapter, H.__PointerAdapter__BaseAdapter__WheelEventListenerMixin); _inherit(H._MouseAdapter, H.__MouseAdapter__BaseAdapter__WheelEventListenerMixin); _inheritMany(H.RoleManager, [H.Checkable, H.ImageRoleManager, H.Incrementable, H.LabelAndValue, H.LiveRegion, H.Scrollable0, H.Tappable, H.TextField0]); _inheritMany(H.SemanticsEnabler, [H.DesktopSemanticsEnabler, H.MobileSemanticsEnabler]); _inheritMany(H.DefaultTextEditingStrategy, [H.SemanticsTextEditingStrategy, H.GloballyPositionedTextEditingStrategy, H.SafariDesktopTextEditingStrategy]); _inherit(P.ListBase, P._ListBase_Object_ListMixin); _inheritMany(P.ListBase, [H._TypedDataBuffer, H.UnmodifiableListBase, W._ChildrenElementList, W._FrozenElementList, W._ChildNodeListLazy, P.FilteredElementList, E.TypedDataBuffer]); _inherit(H._IntBuffer, H._TypedDataBuffer); _inherit(H.Uint8Buffer0, H._IntBuffer); _inheritMany(H.StyleNode, [H.ChildStyleNode, H.RootStyleNode]); _inherit(H._PolyfillFontManager, H.FontManager); _inheritMany(H.RangeBox, [H.PlaceholderBox, H.SpanBox]); _inherit(H.RulerManager, H.RulerHost); _inheritMany(H.TextMeasurementService, [H.DomTextMeasurementService, H.CanvasTextMeasurementService]); _inheritMany(H.EngineInputType, [H.TextInputType0, H.NumberInputType, H.DecimalInputType, H.PhoneInputType, H.EmailInputType, H.UrlInputType, H.MultilineInputType]); _inheritMany(H.GloballyPositionedTextEditingStrategy, [H.IOSTextEditingStrategy, H.AndroidTextEditingStrategy, H.FirefoxTextEditingStrategy]); _inheritMany(H.TextInputCommand, [H.TextInputSetClient, H.TextInputUpdateConfig, H.TextInputSetEditingState, H.TextInputShow, H.TextInputSetEditableSizeAndTransform, H.TextInputSetStyle, H.TextInputClearClient, H.TextInputHide, H.TextInputSetMarkedTextRect, H.TextInputSetCaretRect, H.TextInputFinishAutofillContext]); _inherit(P.FlutterWindow, P.FlutterView); _inherit(P.SingletonFlutterWindow, P.FlutterWindow); _inherit(H.EngineFlutterWindow, P.SingletonFlutterWindow); _inherit(H.EngineSingletonFlutterWindow, H.EngineFlutterWindow); _inherit(H._ContentType, H._HeaderValue); _inherit(J.JSUnmodifiableArray, J.JSArray); _inheritMany(J.JSNumber, [J.JSInt, J.JSNumNotInt]); _inheritMany(H._CastIterableBase, [H.CastIterable, H.__CastListBase__CastIterableBase_ListMixin]); _inherit(H._EfficientLengthCastIterable, H.CastIterable); _inherit(H._CastListBase, H.__CastListBase__CastIterableBase_ListMixin); _inherit(H.CastList, H._CastListBase); _inherit(P.MapBase, P.MapMixin); _inheritMany(P.MapBase, [H.CastMap, P.UnmodifiableMapBase, H.JsLinkedHashMap, P._HashMap, P._JsonMap, W._AttributeMap, W._DataAttributeMap]); _inheritMany(H.UnmodifiableListBase, [H.CodeUnits, P.UnmodifiableListView]); _inheritMany(H.EfficientLengthIterable, [H.ListIterable, H.EmptyIterable, H.LinkedHashMapKeyIterable, P._HashMapKeyIterable, P._MapBaseValueIterable, P._SplayTreeKeyIterable, P._SplayTreeValueIterable, P._SplayTreeMapEntryIterable]); _inheritMany(H.ListIterable, [H.SubListIterable, H.MappedListIterable, H._ListIndicesIterable, H.ReversedListIterable, P.ListQueue, P._JsonMapKeyIterable, P._GeneratorIterable]); _inherit(H.EfficientLengthMappedIterable, H.MappedIterable); _inheritMany(P.Iterator, [H.MappedIterator, H.WhereIterator, H.TakeIterator, H.SkipIterator, H.SkipWhileIterator, T._ReversedSeriesIterator]); _inherit(H.EfficientLengthTakeIterable, H.TakeIterable); _inherit(H.EfficientLengthSkipIterable, H.SkipIterable); _inherit(H.ListMapView, P.UnmodifiableMapBase); _inherit(P._UnmodifiableMapView_MapView__UnmodifiableMapMixin, P.MapView); _inherit(P.UnmodifiableMapView, P._UnmodifiableMapView_MapView__UnmodifiableMapMixin); _inherit(H.ConstantMapView, P.UnmodifiableMapView); _inheritMany(H.ConstantMap, [H.ConstantStringMap, H.GeneralConstantMap]); _inherit(H.Instantiation1, H.Instantiation); _inherit(H.NullError, P.TypeError); _inheritMany(H.TearOffClosure, [H.StaticClosure, H.BoundClosure]); _inheritMany(P.AssertionError, [H._AssertionError, H._UnreachableError]); _inheritMany(P.IterableBase, [H._AllMatchesIterable, P._SyncStarIterable]); _inheritMany(H.NativeTypedData, [H.NativeByteData, H.NativeTypedArray]); _inheritMany(H.NativeTypedArray, [H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin, H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin]); _inherit(H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin, H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin); _inherit(H.NativeTypedArrayOfDouble, H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin); _inherit(H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin, H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin); _inherit(H.NativeTypedArrayOfInt, H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin); _inheritMany(H.NativeTypedArrayOfDouble, [H.NativeFloat32List, H.NativeFloat64List]); _inheritMany(H.NativeTypedArrayOfInt, [H.NativeInt16List, H.NativeInt32List, H.NativeInt8List, H.NativeUint16List, H.NativeUint32List, H.NativeUint8ClampedList, H.NativeUint8List]); _inherit(H._TypeError, H._Error); _inheritMany(P.Stream, [P._StreamImpl, P.StreamView, P._AsBroadcastStream, P._EmptyStream, P._ForwardingStream, P._BoundSinkStream, W._EventStream, P._FileStream, D.DeferStream]); _inheritMany(P._StreamImpl, [P._ControllerStream, P._GeneratedStreamImpl]); _inherit(P._BroadcastStream, P._ControllerStream); _inheritMany(P._BufferingStreamSubscription, [P._ControllerSubscription, P._ForwardingStreamSubscription, P._SinkTransformerStreamSubscription]); _inherit(P._BroadcastSubscription, P._ControllerSubscription); _inheritMany(P._BroadcastStreamController, [P._SyncBroadcastStreamController, P._AsyncBroadcastStreamController]); _inherit(P._AsBroadcastStreamController, P._SyncBroadcastStreamController); _inheritMany(P._Completer, [P._AsyncCompleter, P._SyncCompleter]); _inheritMany(P._StreamController, [P._AsyncStreamController, P._SyncStreamController]); _inherit(P._StreamControllerAddStreamState, P._AddStreamState); _inheritMany(P._PendingEvents, [P._IterablePendingEvents, P._StreamImplEvents]); _inheritMany(P._DelayedEvent, [P._DelayedData, P._DelayedError]); _inheritMany(P._ForwardingStream, [P._WhereStream, P._MapStream]); _inheritMany(P.StreamTransformerBase, [P._StreamSinkTransformer, P.Converter, G.StartWithStreamTransformer, O.StartWithErrorStreamTransformer]); _inherit(P._StreamHandlerTransformer, P._StreamSinkTransformer); _inheritMany(P._Zone, [P._CustomZone, P._RootZone]); _inheritMany(P._HashMap, [P._IdentityHashMap, P._CustomHashMap]); _inheritMany(H.JsLinkedHashMap, [P._LinkedIdentityHashMap, P._LinkedCustomHashMap]); _inherit(P._SetBase, P.__SetBase_Object_SetMixin); _inheritMany(P._SetBase, [P._HashSet, P._LinkedHashSet, P.__UnmodifiableSet__SetBase__UnmodifiableSetMixin]); _inherit(P.DoubleLinkedQueueEntry, P._DoubleLink); _inherit(P._DoubleLinkedQueueEntry, P.DoubleLinkedQueueEntry); _inheritMany(P._DoubleLinkedQueueEntry, [P._DoubleLinkedQueueElement, P._DoubleLinkedQueueSentinel]); _inherit(P._UnmodifiableSet, P.__UnmodifiableSet__SetBase__UnmodifiableSetMixin); _inheritMany(P._SplayTreeNode, [P._SplayTreeSetNode, P._SplayTreeMapNode]); _inheritMany(P._SplayTree, [P._SplayTreeMap__SplayTree_MapMixin, P._SplayTreeSet__SplayTree_IterableMixin]); _inherit(P.SplayTreeMap, P._SplayTreeMap__SplayTree_MapMixin); _inheritMany(P._SplayTreeIterator, [P._SplayTreeKeyIterator, P._SplayTreeValueIterator, P._SplayTreeMapEntryIterator]); _inherit(P._SplayTreeSet__SplayTree_IterableMixin_SetMixin, P._SplayTreeSet__SplayTree_IterableMixin); _inherit(P.SplayTreeSet, P._SplayTreeSet__SplayTree_IterableMixin_SetMixin); _inheritMany(P.Codec0, [P.Encoding, P.Base64Codec, P.JsonCodec]); _inheritMany(P.Encoding, [P.AsciiCodec, P.Latin1Codec, P.Utf8Codec]); _inheritMany(P.Converter, [P._UnicodeSubsetEncoder, P._UnicodeSubsetDecoder, P.Base64Encoder, P.Base64Decoder, P.JsonEncoder, P.JsonDecoder, P.Utf8Encoder, P.Utf8Decoder]); _inheritMany(P._UnicodeSubsetEncoder, [P.AsciiEncoder, P.Latin1Encoder]); _inheritMany(P._UnicodeSubsetDecoder, [P.AsciiDecoder, P.Latin1Decoder]); _inherit(P.ByteConversionSink, P.ChunkedConversionSink); _inherit(P.ByteConversionSinkBase, P.ByteConversionSink); _inherit(P._ByteCallbackSink, P.ByteConversionSinkBase); _inherit(P.JsonCyclicError, P.JsonUnsupportedObjectError); _inherit(P._JsonStringStringifier, P._JsonStringifier); _inherit(P.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin, P._JsonStringStringifier); _inherit(P._JsonStringStringifierPretty, P.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin); _inheritMany(P.ArgumentError, [P.RangeError, P.IndexError]); _inherit(P._DataUri, P._Uri); _inheritMany(W.EventTarget, [W.Node, W.Animation, W.BackgroundFetchRegistration, W.BroadcastChannel, W.FileReader, W.FileWriter, W.FontFaceSet, W.HttpRequestEventTarget, W.MediaKeySession, W.MediaQueryList, W.MediaStream, W.MediaStreamTrack, W.MessagePort, W.MidiPort, W.Notification, W.OffscreenCanvas, W.PaymentRequest, W.PresentationAvailability, W.PresentationConnection, W.RtcDataChannel, W.ScreenOrientation, W.WorkerGlobalScope, W.SourceBuffer, W._SourceBufferList_EventTarget_ListMixin, W.SpeechSynthesisUtterance, W.TextTrack, W.TextTrackCue, W._TextTrackList_EventTarget_ListMixin, W.VideoTrackList, W.Window, P.Database, P.AudioTrackList, P.BaseAudioContext]); _inheritMany(W.Node, [W.Element, W.CharacterData, W.Document0, W._Attr]); _inheritMany(W.Element, [W.HtmlElement, P.SvgElement]); _inheritMany(W.HtmlElement, [W.AnchorElement, W.AreaElement, W.BaseElement, W.BodyElement, W.ButtonElement, W.CanvasElement, W.DataElement, W.DivElement, W.EmbedElement, W.FieldSetElement, W.FormElement, W.IFrameElement, W.ImageElement, W.InputElement, W.LIElement, W.LabelElement, W.MapElement, W.MediaElement, W.MetaElement, W.MeterElement, W.ObjectElement, W.OptionElement, W.OutputElement, W.ParagraphElement, W.ParamElement, W.ProgressElement, W.ScriptElement, W.SelectElement, W.SlotElement, W.SpanElement, W.StyleElement, W.TableElement, W.TableRowElement, W.TableSectionElement, W.TemplateElement, W.TextAreaElement]); _inheritMany(W.Event, [W.ExtendableEvent, W.BeforeUnloadEvent, W.UIEvent, W.MediaQueryListEvent, W.ProgressEvent, W.SpeechSynthesisEvent, P.VersionChangeEvent]); _inherit(W.BackgroundFetchEvent, W.ExtendableEvent); _inherit(W.CssKeyframesRule, W.CssRule); _inheritMany(W.CssStyleValue, [W.CssKeywordValue, W.CssNumericValue, W.CssTransformValue, W.CssUnparsedValue]); _inherit(W.CssPerspective, W.CssTransformComponent); _inherit(W.CssStyleDeclaration, W._CssStyleDeclaration_Interceptor_CssStyleDeclarationBase); _inherit(W.CssStyleSheet, W.StyleSheet); _inherit(W.CssUnitValue, W.CssNumericValue); _inherit(W._DomRectList_Interceptor_ListMixin_ImmutableListMixin, W._DomRectList_Interceptor_ListMixin); _inherit(W.DomRectList, W._DomRectList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._DomStringList_Interceptor_ListMixin_ImmutableListMixin, W._DomStringList_Interceptor_ListMixin); _inherit(W.DomStringList, W._DomStringList_Interceptor_ListMixin_ImmutableListMixin); _inheritMany(W.Credential, [W.FederatedCredential, W.PasswordCredential]); _inherit(W.File, W.Blob); _inherit(W._FileList_Interceptor_ListMixin_ImmutableListMixin, W._FileList_Interceptor_ListMixin); _inherit(W.FileList, W._FileList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._HtmlCollection_Interceptor_ListMixin_ImmutableListMixin, W._HtmlCollection_Interceptor_ListMixin); _inherit(W.HtmlCollection, W._HtmlCollection_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.HtmlDocument, W.Document0); _inherit(W.HttpRequest, W.HttpRequestEventTarget); _inheritMany(W.UIEvent, [W.KeyboardEvent, W.MouseEvent, W.TouchEvent]); _inherit(W.MidiInputMap, W._MidiInputMap_Interceptor_MapMixin); _inherit(W.MidiOutputMap, W._MidiOutputMap_Interceptor_MapMixin); _inherit(W._MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin, W._MimeTypeArray_Interceptor_ListMixin); _inherit(W.MimeTypeArray, W._MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.Navigator0, W.NavigatorConcurrentHardware); _inherit(W._NodeList_Interceptor_ListMixin_ImmutableListMixin, W._NodeList_Interceptor_ListMixin); _inherit(W.NodeList, W._NodeList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._PluginArray_Interceptor_ListMixin_ImmutableListMixin, W._PluginArray_Interceptor_ListMixin); _inherit(W.PluginArray, W._PluginArray_Interceptor_ListMixin_ImmutableListMixin); _inheritMany(W.MouseEvent, [W.PointerEvent, W.WheelEvent]); _inherit(W.RtcStatsReport, W._RtcStatsReport_Interceptor_MapMixin); _inherit(W.SharedWorkerGlobalScope, W.WorkerGlobalScope); _inherit(W._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin, W._SourceBufferList_EventTarget_ListMixin); _inherit(W.SourceBufferList, W._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin); _inherit(W._SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin, W._SpeechGrammarList_Interceptor_ListMixin); _inherit(W.SpeechGrammarList, W._SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.Storage, W._Storage_Interceptor_MapMixin); _inherit(W._TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin, W._TextTrackCueList_Interceptor_ListMixin); _inherit(W.TextTrackCueList, W._TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._TextTrackList_EventTarget_ListMixin_ImmutableListMixin, W._TextTrackList_EventTarget_ListMixin); _inherit(W.TextTrackList, W._TextTrackList_EventTarget_ListMixin_ImmutableListMixin); _inherit(W._TouchList_Interceptor_ListMixin_ImmutableListMixin, W._TouchList_Interceptor_ListMixin); _inherit(W.TouchList, W._TouchList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.VideoElement, W.MediaElement); _inherit(W.VttCue, W.TextTrackCue); _inherit(W._BeforeUnloadEvent, W._WrappedEvent); _inherit(W.__CssRuleList_Interceptor_ListMixin_ImmutableListMixin, W.__CssRuleList_Interceptor_ListMixin); _inherit(W._CssRuleList, W.__CssRuleList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._DomRect, W.DomRectReadOnly); _inherit(W.__GamepadList_Interceptor_ListMixin_ImmutableListMixin, W.__GamepadList_Interceptor_ListMixin); _inherit(W._GamepadList, W.__GamepadList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.__NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin, W.__NamedNodeMap_Interceptor_ListMixin); _inherit(W._NamedNodeMap, W.__NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.__SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin, W.__SpeechRecognitionResultList_Interceptor_ListMixin); _inherit(W._SpeechRecognitionResultList, W.__SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W.__StyleSheetList_Interceptor_ListMixin_ImmutableListMixin, W.__StyleSheetList_Interceptor_ListMixin); _inherit(W._StyleSheetList, W.__StyleSheetList_Interceptor_ListMixin_ImmutableListMixin); _inherit(W._ElementAttributeMap, W._AttributeMap); _inherit(W._ElementEventStreamImpl, W._EventStream); _inherit(W._EventStreamSubscription, P.StreamSubscription); _inherit(W._TemplatingNodeValidator, W._SimpleNodeValidator); _inherit(P._StructuredCloneDart2Js, P._StructuredClone); _inherit(P._AcceptStructuredCloneDart2Js, P._AcceptStructuredClone); _inherit(P.CursorWithValue, P.Cursor); _inheritMany(P.FileSystemEntity, [P._Directory, P._File]); _inheritMany(P.JsObject, [P.JsFunction, P._JsArray_JsObject_ListMixin]); _inherit(P.JsArray, P._JsArray_JsObject_ListMixin); _inherit(P.Rectangle, P._RectangleBase); _inheritMany(P.SvgElement, [P.GraphicsElement, P.ScriptElement0]); _inherit(P._LengthList_Interceptor_ListMixin_ImmutableListMixin, P._LengthList_Interceptor_ListMixin); _inherit(P.LengthList, P._LengthList_Interceptor_ListMixin_ImmutableListMixin); _inherit(P._NumberList_Interceptor_ListMixin_ImmutableListMixin, P._NumberList_Interceptor_ListMixin); _inherit(P.NumberList, P._NumberList_Interceptor_ListMixin_ImmutableListMixin); _inherit(P._StringList_Interceptor_ListMixin_ImmutableListMixin, P._StringList_Interceptor_ListMixin); _inherit(P.StringList, P._StringList_Interceptor_ListMixin_ImmutableListMixin); _inherit(P.SvgSvgElement, P.GraphicsElement); _inherit(P._TransformList_Interceptor_ListMixin_ImmutableListMixin, P._TransformList_Interceptor_ListMixin); _inherit(P.TransformList, P._TransformList_Interceptor_ListMixin_ImmutableListMixin); _inheritMany(P.OffsetBase, [P.Offset, P.Size]); _inherit(P.AudioParamMap, P._AudioParamMap_Interceptor_MapMixin); _inherit(P.OfflineAudioContext, P.BaseAudioContext); _inherit(P._SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin, P._SqlResultSetRowList_Interceptor_ListMixin); _inherit(P.SqlResultSetRowList, P._SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin); _inherit(R.ArchiveException, P.FormatException); _inherit(T.InputStream, T.InputStreamBase); _inherit(Q.OutputStream, Q.OutputStreamBase); _inherit(Y.DiagnosticableTree, Y._DiagnosticableTree_Object_Diagnosticable); _inheritMany(Y.DiagnosticableTree, [N.Widget, N.Element0, G.InlineSpan, A.SemanticsHintOverrides, A.SemanticsProperties]); _inheritMany(N.Widget, [N.StatefulWidget, N.StatelessWidget, N.RenderObjectWidget, N.ProxyWidget, S._NullWidget0, N._NullWidget, L._NullWidget3]); _inheritMany(N.StatefulWidget, [D.BoardItem, O.BoardList, N.BoardView, X.BaseChart, M.DraggableScrollbar, F.CupertinoActivityIndicator, D._CupertinoBackGestureDetector, E.RawScrollbar, N.CupertinoSwitch, A.LicensePage, A._PackagesView, A._PackageLicensePage, A._MasterDetailFlow, A._MasterDetailScaffold, S.MaterialApp, E.AppBar, E.SliverAppBar, B.BottomAppBar, E.BottomSheet, Z.RawMaterialButton, K.ButtonStyleButton, Q.CalendarDatePicker, Q._DatePickerModeToggleButton, Q._MonthPicker, Q._DayPicker, Q.YearPicker, K.Checkbox, S._SortArrow, K.DatePickerDialog, Z.DrawerController, K._DropdownMenuItemButton, K._DropdownMenu, K.DropdownButton, A.FormField, N.ExpandIcon, D.ExpansionPanelList, D.Ink, R._InkResponseStateWidget, U.InputDatePickerFormField, L._BorderContainer, K.AnimatedWidget, L._HelperError, L.InputDecorator, M.Material, G.ImplicitlyAnimatedWidget, B.MergeableMaterial, R.PaginatedDataTable, Z.PopupMenuEntry, Z.PopupMenuButton, U.ProgressIndicator, Y.Radio, N.RefreshIndicator, Z.ReorderableListView, M.ScaffoldMessenger, M._FloatingActionButtonTransition, M.Scaffold, M._StandardBottomSheet, E.Scrollbar, O.SelectableText, N._MaterialSwitch, U.DefaultTabController, E.TabBar, E.TabBarView, Z.TextField, M._Dial, M._TimePickerInput, M._HourMinuteTextField, M._TimePickerDialog, S.Tooltip, U.Actions, U.FocusableActionDetector, U.AnimatedCrossFade, G.AnimatedSwitcher, S.WidgetsApp, S._MediaQueryFromWindow, B.StreamBuilderBase, B.FutureBuilder, S.RawAutocomplete, F.AutofillGroup, L.AutomaticKeepAlive, T.MouseRegion, X.Shortcuts, S.DraggableScrollableSheet, N.DualTransitionBuilder, D.EditableText, L.Focus, U.FocusTraversalGroup, A.Form, D.RawGestureDetector, T.Hero, U.Image, L.Localizations, K.Navigator, X._OverlayEntryWidget, X.Overlay, L.GlowingOverscrollIndicator, D.PageView, G.PlatformViewLink, Z.SliverReorderableList, Z._ReorderableItem, K.RestorationScope, K.RootRestorationScope, T._ModalScope, F.Scrollable, F._TextSelectionHandleOverlay, F.TextSelectionGestureDetector, N.ValueListenableBuilder, F.WillPopScope, B.BlockPicker, A.JsonViewer, A.JsonObjectViewer, A.JsonArrayViewer, O._StoreStreamListener, A.Slidable, M.StyledToast, M._StyledToastWidget, L.TypeAheadField, L._SuggestionsList, K.InvoiceNinjaApp, Z.AppBottomBar, G.AppBuilder, O.AppScrollbar, O.ChangeLayoutBanner, K.DesktopSessionTimeout, E.HealthCheckDialog, E.MultiSelectList, O.EntityListTile, O.EntitiesListTile, F.EntityDropdown, F.EntityDropdownDialog, A.FormColorPicker, B.CustomField, K.DatePicker, S.DecoratedFormField, U.DurationPicker, A.GrowableFormField, S.PasswordFormField, M.TimePicker, V.HistoryListTile, E.InvoiceEmailView, D.TaxRateDropdown, N.ListFilter, E.LiveText, V.DrawerTile, V.ContactUsDialog, X.ScrollableListView, X.ScrollableListViewBuilder, V.SystemLogViewer, L._SortArrow0, N.AppPaginatedDataTable, S.EntityList, K.VariablesHelp, A.WebSessionTimeout, B.WebSocketRefresh, Y.LoginView, S.ClientPdfView, M.ClientEdit, R.ClientEditBillingAddress, R.ClientEditContacts, R.ContactEditDetails, Q.ClientEditDetails, L.ClientEditNotes, M.ClientEditSettings, R.ClientEditShippingAddress, G.ClientView, R.ClientViewActivity, Q.ClientViewDetails, U.ClientViewLedger, K.ClientViewSystemLogs, G.CompanyGatewayList, V.CompanyGatewayEdit, V.GatewayConfigField, V.LimitEditor, V.FeesEditor, G.CompanyGatewayView, G._CompanyGatewaySystemLog, M.CreditEdit, U.DashboardChart, E.DashboardDateRangePicker, Y._DashboardPanel, F.DashboardScreen, N.DesignEdit, N.DesignSettings, N.PdfDesignPreview, K.DesignView, Z.DocumentEdit, T.DocumentView, D.ExpenseEdit, M.ExpenseEditDetails, E.ExpenseEditNotes, T.ExpenseEditSettings, U.ExpenseView, N.ExpenseViewSchedule, A.ExpenseCategoryEdit, D.ExpenseCategoryView, Q.GroupEdit, E.GroupView, F.InvoiceEdit, S.InvoiceEditDesktop, S._PdfPreview, N.InvoiceEditDetails, G.InvoiceEditItems, G.ItemEditDetails, E.InvoiceEditItemsDesktop, Z.InvoiceEditNotes, A.InvoiceEditPDF, D.InvoiceItemSelector, E.InvoicePdfView, E.InvoiceView, A.InvoiceViewActivity, S.InvoiceViewHistory, N.InvoiceViewSchedule, M.PaymentEdit, M.PaymentableEditor, Y.PaymentRefund, Y.PaymentableEditor0, L.PaymentView, U.PaymentTermEdit, K.PaymentTermView, F.ProductEdit, Z.ProductView, B.ProductOverview, K.ProjectEdit, M.ProjectView, Y.ProjectOverview, B.QuoteEdit, O.RecurringInvoiceEdit, A.ReportDataTable, O.AccountManagement, V.BuyNowButtons, S.ClientPortal, A.CompanyDetails, X.CreditCardsAndBanks, S.CustomFields, S.CustomFormField, V.DataVisualizations, R.DeviceSettings, N.EmailSettings, F.ExpenseSettings, F.GeneratedNumbers, F.EntityNumberSettings, D.ImportExport, D._FileImport, D._FileMapper, Z.InvoiceDesign, G.LocalizationSettings, V.OnlinePayments, L.ProductSettings, U.SettingsList, X.SettingsWizard, L.TaskSettings, N.TaxSettings, L.TemplatesAndReminders, L.ReminderSettings, K.UserDetails, K._EnableTwoFactor, D.WorkflowSettings, S.SubscriptionEdit, M.SubscriptionView, B.UpdateDialog, X.TaskEdit, R.TaskEditDesktop, B.TaskEditDetails, U.TaskEditTimes, U.TimeEditDetails, O.KanbanTaskCard, D.KanbanStatusCard, O.KanbanView, T.KanbanViewBuilder, Q.TaskView, S.TaskOverview, L.TaskStatusEdit, L.TaskStatusView, A.TaxRateEdit, K.TaxRateView, Y.TokenEdit, Y.TokenView, U.UserEdit, K.VendorEdit, G.VendorEditAddress, D.VendorEditContacts, D.VendorContactEditDetails, Q.VendorEditDetails, N.VendorEditNotes, N.VendorView, Y.VendorViewDetails, N.WebhookEdit, L.WebhookView, O.PasswordConfirmation, O.FieldConfirmation, X.PdfView, F.FadeWidget, U.OctoImage, E.PhotoView, M.PhotoViewGallery, M.PhotoViewCore, L.ImageWrapper, E.QrImage, N.RoundedLoadingButton]); _inherit(N.State, N._State_Object_Diagnosticable); _inheritMany(N.State, [D._BoardItemState_State_AutomaticKeepAliveClientMixin, O._BoardListState_State_AutomaticKeepAliveClientMixin, N._BoardViewState_State_AutomaticKeepAliveClientMixin, U._BaseChartState_State_TickerProviderStateMixin, M.__DraggableScrollbarState_State_TickerProviderStateMixin, F.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin, D._CupertinoBackGestureDetectorState, E._RawScrollbarState_State_TickerProviderStateMixin, N.__CupertinoSwitchState_State_TickerProviderStateMixin, A._LicensePageState, A._PackagesViewState, A._PackageLicensePageState, A._MasterDetailFlowState, A._MasterDetailScaffoldState, S._MaterialAppState, E._AppBarState, E.__SliverAppBarState_State_TickerProviderStateMixin, B._BottomAppBarState, E._BottomSheetState, Z._RawMaterialButtonState, K.__ButtonStyleState_State_TickerProviderStateMixin, Q._CalendarDatePickerState, Q.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, Q._MonthPickerState, Q._DayPickerState, Q._YearPickerState, K.__CheckboxState_State_TickerProviderStateMixin, S.__SortArrowState_State_TickerProviderStateMixin, K.__DatePickerDialogState_State_RestorationMixin, Z._DrawerControllerState_State_SingleTickerProviderStateMixin, K._DropdownMenuItemButtonState, K._DropdownMenuState, K.__DropdownButtonState_State_WidgetsBindingObserver, A.FormFieldState, N.__ExpandIconState_State_SingleTickerProviderStateMixin, D._ExpansionPanelListState, D._InkState, R.__InkResponseState_State_AutomaticKeepAliveClientMixin, U._InputDatePickerFormFieldState, L.__BorderContainerState_State_TickerProviderStateMixin, L.__HelperErrorState_State_SingleTickerProviderStateMixin, L.__InputDecoratorState_State_TickerProviderStateMixin, M.__MaterialState_State_TickerProviderStateMixin, G._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, B.__MergeableMaterialState_State_TickerProviderStateMixin, R.PaginatedDataTableState, Z._PopupMenuDividerState, Z.PopupMenuItemState, Z.PopupMenuButtonState, U.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, U.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, Y.__RadioState_State_TickerProviderStateMixin, N._RefreshIndicatorState_State_TickerProviderStateMixin, Z._ReorderableListViewState, M._ScaffoldMessengerState_State_TickerProviderStateMixin, M.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, M._ScaffoldState_State_TickerProviderStateMixin, M._StandardBottomSheetState, E._ScrollbarState, O.__SelectableTextState_State_AutomaticKeepAliveClientMixin, N.__MaterialSwitchState_State_TickerProviderStateMixin, U.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, E._TabBarState, E._TabBarViewState, Z.__TextFieldState_State_RestorationMixin, M.__DialState_State_SingleTickerProviderStateMixin, M._TimePickerInputState, M._HourMinuteTextFieldState, M._TimePickerDialogState, S.__TooltipState_State_SingleTickerProviderStateMixin, U._ActionsState, U._FocusableActionDetectorState, U.__AnimatedCrossFadeState_State_TickerProviderStateMixin, G.__AnimatedSwitcherState_State_TickerProviderStateMixin, S.__WidgetsAppState_State_WidgetsBindingObserver, S.__MediaQueryFromWindowsState_State_WidgetsBindingObserver, B._StreamBuilderBaseState, B._FutureBuilderState, S._RawAutocompleteState, F._AutofillGroupState_State_AutofillScopeMixin, L._AutomaticKeepAliveState, T._MouseRegionState, S._DraggableScrollableSheetState, N._DualTransitionBuilderState, D._EditableTextState_State_AutomaticKeepAliveClientMixin, L._FocusState, U._FocusTraversalGroupState, A.FormState, D.RawGestureDetectorState, T._HeroState, U.__ImageState_State_WidgetsBindingObserver, L._LocalizationsState, K._NavigatorState_State_TickerProviderStateMixin, X._OverlayEntryWidgetState, X._OverlayState_State_TickerProviderStateMixin, L.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, D._PageViewState, G._PlatformViewLinkState, Z._SliverReorderableListState_State_TickerProviderStateMixin, Z._ReorderableItemState, K.__RestorationScopeState_State_RestorationMixin, K._RootRestorationScopeState, T._ModalScopeState, F._ScrollableState_State_TickerProviderStateMixin, X._ShortcutsState, F.__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin, F._TextSelectionGestureDetectorState, K._AnimatedState, N._ValueListenableBuilderState, F._WillPopScopeState, B._BlockPickerState, A._JsonViewerState, A.JsonObjectViewerState, A._JsonArrayViewerState, O._StoreStreamListenerState, A._SlidableState_State_TickerProviderStateMixin, M._StyledToastState, M._StyledToastWidgetState_State_TickerProviderStateMixin, L.__TypeAheadFieldState_State_WidgetsBindingObserver, L.__SuggestionsListState_State_SingleTickerProviderStateMixin, K.InvoiceNinjaAppState, Z._AppBottomBarState, G.AppBuilderState, O._AppScrollbarState, O._ChangeLayoutBannerState, K._DesktopSessionTimeoutState, E._HealthCheckDialogState, E.MultiSelectListState, O._EntityListTileState, O._EntitiesListTileState, F._EntityDropdownState, F._EntityDropdownDialogState, A._FormColorPickerState, B._CustomFieldState, K._DatePickerState, S._DecoratedFormFieldState, U._DurationPickerState, A._GrowableFormFieldState, S._PasswordFormFieldState, M._TimePickerState, V._HistoryListTileState, E.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, D._TaxRateDropdownState, N._ListFilterState, E._LiveTextState, V._DrawerTileState, V._ContactUsDialogState, X._ScrollableListViewState, X._ScrollableListViewBuilderState, V._SystemLogViewerState, L.__SortArrowState_State_TickerProviderStateMixin0, N.AppPaginatedDataTableState, S._EntityListState, K.__VariablesHelpState_State_SingleTickerProviderStateMixin, A._WebSessionTimeoutState, B._WebSocketRefreshState, Y._LoginState, S._ClientPdfViewState, M.__ClientEditState_State_SingleTickerProviderStateMixin, R.ClientEditBillingAddressState, R._ClientEditContactsState, R.ContactEditDetailsState, Q.ClientEditDetailsState, L.ClientEditNotesState, M.ClientEditSettingsState, R.ClientEditShippingAddressState, G.__ClientViewState_State_SingleTickerProviderStateMixin, R._ClientViewActivityState, Q._ClientViewDetailsState, U._ClientViewLedgerState, K._ClientViewSystemLogsState, G._CompanyGatewayListState, V.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, V._GatewayConfigFieldState, V._LimitEditorState, V._FeesEditorState, G.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, G.__CompanyGatewaySystemLogState, M.__CreditEditState_State_SingleTickerProviderStateMixin, U._DashboardChartState, E._DashboardDateRangePickerState, Y.__DashboardPanelState, F.__DashboardScreenState_State_TickerProviderStateMixin, N.__DesignEditState_State_SingleTickerProviderStateMixin, N._DesignSettingsState, N._PdfDesignPreviewState, K._DesignViewState, Z._DocumentEditState, T._DocumentViewState, D.__ExpenseEditState_State_SingleTickerProviderStateMixin, M.ExpenseEditDetailsState, E.ExpenseEditNotesState, T.ExpenseEditSettingsState, U.__ExpenseViewState_State_SingleTickerProviderStateMixin, N._ExpenseViewScheduleState, A._ExpenseCategoryEditState, D._ExpenseCategoryViewState, Q._GroupEditState, E.__GroupViewState_State_SingleTickerProviderStateMixin, F.__InvoiceEditState_State_SingleTickerProviderStateMixin, S._InvoiceEditDesktopState_State_TickerProviderStateMixin, S.__PdfPreviewState, N.InvoiceEditDetailsState, G._InvoiceEditItemsState, G.ItemEditDetailsState, E._InvoiceEditItemsDesktopState, Z.InvoiceEditNotesState, A.InvoiceEditPDFState, D.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, E._InvoicePdfViewState, E.__InvoiceViewState_State_SingleTickerProviderStateMixin, A._InvoiceViewActivityState, S._InvoiceViewHistoryState, N._InvoiceViewScheduleState, M._PaymentEditState, M._PaymentableEditorState, Y._PaymentRefundState, Y._PaymentableEditorState0, L._PaymentViewState, U._PaymentTermEditState, K._PaymentTermViewState, F._ProductEditState, Z.__ProductViewState_State_SingleTickerProviderStateMixin, B._ProductOverviewState, K._ProjectEditState, M.__ProjectViewState_State_SingleTickerProviderStateMixin, Y._ProjectOverviewState, B.__QuoteEditState_State_SingleTickerProviderStateMixin, O.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, A._ReportDataTableState, O.__AccountManagementState_State_SingleTickerProviderStateMixin, V._BuyNowButtonsState, S.__ClientPortalState_State_SingleTickerProviderStateMixin, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, X.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, S.__CustomFieldsState_State_SingleTickerProviderStateMixin, S._CustomFormFieldState, V._DataVisualizationsState, R.__DeviceSettingsState_State_SingleTickerProviderStateMixin, N._EmailSettingsState, F._ExpenseSettingsState, F.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, F._EntityNumberSettingsState, D._ImportExportState, D._FileImportState, D.__FileMapperState, Z.__InvoiceDesignState_State_SingleTickerProviderStateMixin, G.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, V._OnlinePaymentsState, L._ProductSettingsState, U._SettingsListState, X._SettingsWizardState, L._TaskSettingsState, N._TaxSettingsState, L.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, L._ReminderSettingsState, K.__UserDetailsState_State_SingleTickerProviderStateMixin, K._EnableTwoFactorState, D.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, S.__SubscriptionEditState_State_SingleTickerProviderStateMixin, M._SubscriptionViewState, B._UpdateDialogState, X.__TaskEditState_State_SingleTickerProviderStateMixin, R._TaskEditDesktopState, B._TaskEditDetailsState, U._TaskEditTimesState, U.TimeEditDetailsState, O._KanbanTaskCardState, D._KanbanStatusCardState, O.KanbanViewState, T._KanbanViewBuilderState, Q.__TaskViewState_State_SingleTickerProviderStateMixin, S._TaskOverviewState, L._TaskStatusEditState, L._TaskStatusViewState, A._TaxRateEditState, K._TaxRateViewState, Y._TokenEditState, Y._TokenViewState, U.__UserEditState_State_SingleTickerProviderStateMixin, K.__VendorEditState_State_SingleTickerProviderStateMixin, G.VendorEditAddressState, D._VendorEditContactsState, D.VendorContactEditDetailsState, Q.VendorEditDetailsState, N.VendorEditNotesState, N.__VendorViewState_State_SingleTickerProviderStateMixin, Y._VendorViewDetailsState, N._WebhookEditState, L._WebhookViewState, O._PasswordConfirmationState, O._FieldConfirmationState, X.__PdfViewState_State_SingleTickerProviderStateMixin, F.__FadeWidgetState_State_SingleTickerProviderStateMixin, U._OctoImageState, E._PhotoViewState, M._PhotoViewGalleryState, M._PhotoViewCoreState_State_TickerProviderStateMixin, L._ImageWrapperState, E._QrImageState, N._RoundedLoadingButtonState_State_TickerProviderStateMixin]); _inherit(D.BoardItemState, D._BoardItemState_State_AutomaticKeepAliveClientMixin); _inherit(O.BoardListState, O._BoardListState_State_AutomaticKeepAliveClientMixin); _inherit(N.BoardViewState, N._BoardViewState_State_AutomaticKeepAliveClientMixin); _inherit(D._BuiltList, D.BuiltList); _inherit(R._BuiltListMultimap, R.BuiltListMultimap); _inherit(A._BuiltMap, A.BuiltMap); _inherit(X._BuiltSet, X.BuiltSet); _inherit(M._BuiltSetMultimap, M.BuiltSetMultimap); _inheritMany(A.JsonObject, [A.BoolJsonObject, A.ListJsonObject, A.MapJsonObject, A.NumJsonObject, A.StringJsonObject]); _inheritMany(N.StatelessWidget, [A.CachedNetworkImage, M.ScrollLabel, M.SlideFadeTransition, D.CupertinoPageTransition, K.CupertinoTheme, A._AboutProgram, A._PackageListTile, A._PackageLicensePageTitle, A._MasterPage, A._DetailView, R.BackButtonIcon, R.BackButton, V.Card, D.CheckboxListTile, S.DataTable, R.InkResponse, K._DatePickerHeader, E.Dialog, E.AlertDialog, E.SimpleDialog, Z.Divider, Z.Drawer, K._DropdownRoutePage, K._DropdownMenuItemContainer, E.FloatingActionButton, B.IconButton, Q.ListTile, M._ShapeBorderPaint, K._FadeUpwardsPageTransition, K._ZoomPageTransition, K._ZoomEnterTransition, K._ZoomExitTransition, Z._PopupMenu, G.RadioListTile, M._BodyBuilder, N.Switch, O.SwitchListTile, E.Tab, K.Theme, M._TimePickerHeader, M._HourMinuteControl, M._HourControl, M._StringFragment, M._MinuteControl, M._DayPeriodControl, M._HourTextField, M._MinuteTextField, E.ToggleButtons, E._ToggleButton, S._TooltipOverlay, L._NullWidget1, T.PositionedDirectional, T.KeyedSubtree, T.Builder, M.Container, D.GestureDetector, L.Icon, M._CaptureAll, X.ModalBarrier, X._ModalBarrierGestureDetector, E.NavigationToolbar, U.NotificationListener, S.PageStorage, G.HtmlElementView, Q.PreferredSize, Z.ReorderableDragStartListener, Z._DragItemProxy, Q.SafeArea, B.ScrollView, E.SingleChildScrollView, A.SliverFillViewport, U.SliverPersistentHeader, R.Spacer, L._NullWidget2, L.Text, U.TickerMode, U.Title, L.Visibility, O.StoreConnector, O.StoreBuilder, V._SlidableStackActionPane, V.SlidableDrawerActionPane, R.ClosableSlideAction, T.FieldGrid, D.ActionMenuButton, D.ViewActionMenuButton, T.AppBorder, Z.CustomFieldSelector, R.AppHeader, S.AppWebView, S._WebWebView, Q.BlankScreen, X.AppTextButton, Z.BottomButtons, D.AppButton, T.ConfirmEmail, B.ConfirmEmailBuilder, E.MessageDialog, M.ErrorDialog, E._HealthListTile, F.LoadingDialog, L.DismissibleEntity, V.DocumentGrid, V.DocumentTile, V.DocumentPreview, K.EditScaffold, L.EntityActionListTile, V.EntityStatusChip, F._EntityListTile, D.EntityHeader, L.EntityStateLabel, E.EntityTopFilter, Y.FormCard, Q.AppDropdownButton, X.AppForm, X.AppTabForm, R.AppTabBar, Z.AppToggleButtons, K.BoolDropdownButton, R.ClientPicker, V.CustomSurcharges, A.DesignPicker, L.DiscountField, Y.DynamicSelector, B.LearnMoreUrl, B.NotificationSettings, B._NotificationSelector, N.ProjectPicker, V.SaveCancelButtons, V.UserPicker, K.TokenMeta, U.HelpText, V.HistoryDrawer, A.HistoryDrawerBuilder, S.IconMessage, U.IconText, T.InvoiceItemListTile, R.TaxRateField, Y.ListScaffold, N.ActivityListTile, G.AppListTile, G.ListDivider, N.ListFilterMessage, N.FilterListTile, N.SelectedIndicator, V.LoadingIndicator, X.MainScreen, X.EntityScreens, X.SettingsScreens, V.MenuDrawer, V.SidebarFooter, V.SidebarFooterCollapsed, A.MenuDrawerBuilder, D.CachedImage, E.ResponsivePadding, L.AppDataTable, K._VariableGrid, G.ViewScaffold, B.InitScreen, Z.LockScreen, Y.RuledText, G.LoginScreen, V.ClientListItem, Y.ClientListBuilder, V.ClientPdfScreen, B.ClientScreen, D.ClientScreenBuilder, R.ContactListTile0, F.ClientEditContactsScreen, X.ClientEditDesktop, U.ClientEditFooter, M.ClientEditScreen, T.ClientViewDocuments, Z.ClientOverview, X.ClientViewScreen, Z.CompanyGatewayListItem, S.CompanyGatewayListBuilder, D.CompanyGatewayScreen, Y.CompanyGatewayScreenBuilder, V.CardListTile, V.GatewayConfigSettings, L.CompanyGatewayEditScreen, G._CompanyGatewayOverview, A.CompanyGatewayViewScreen, S.CreditEmailScreen, K.CreditListItem, U.CreditListBuilder, U.CreditPdfScreen, A.CreditScreen, R.CreditScreenBuilder, T.CreditEditDetailsScreen, R.CreditEditItemsScreen, G.CreditEditNotesScreen, U.CreditEditPDFScreen, X.CreditEditScreen, M.CreditViewScreen, A.DashboardActivity, Y.DashboardPanels, Y._InvoiceChart, F._CustomTabBarView, Q.DashboardScreenBuilder, S.SidebarScaffold, S.InvoiceSidebar, S.PaymentSidebar, S.QuoteSidebar, S.TaskSidebar, S.ExpenseSidbar, S._DashboardSidebar, A.DashboardSystemLogs, G.DesignListItem, F.DesignListBuilder, L.DesignScreen, G.DesignScreenBuilder, N.DesignSection, N.HtmlDesignPreview, G.DesignEditScreen, B.DesignViewScreen, S.DocumentListItem, A.DocumentListBuilder, G.DocumentScreen, U.DocumentScreenBuilder, E.DocumentEditScreen, A.DocumentViewScreen, S.ExpenseEditDesktop, O.ExpenseEditScreen, V.ExpenseListItem, F.ExpenseListBuilder, X.ExpenseScreen, U.ExpenseScreenBuilder, Y.ExpenseViewDocuments, F.ExpenseOverview, U.ExpenseViewScreen, F.ExpenseCategoryEditScreen, F.ExpenseCategoryListItem, A.ExpenseCategoryListBuilder, Y.ExpenseCategoryScreen, O.ExpenseCategoryScreenBuilder, L.ExpenseCategoryViewScreen, A.GroupEditScreen, T.GroupListItem, Y.GroupListBuilder, K.GroupSettingsScreen, S.GroupScreenBuilder, E.SettingsViewer, A.GroupViewScreen, L.InvoiceEditContacts, L._ContactListTile, X.InvoiceEditContactsScreen, L.InvoiceEditDetailsScreen, K.InvoiceEditFooter, E.TableHeader, O.InvoiceEditItemsScreen, E.InvoiceEditNotesScreen, B.InvoiceEditPDFScreen, M.InvoiceEditScreen, M.InvoiceEmailScreen, M.InvoiceListItem, T.InvoiceListBuilder, O.InvoicePdfScreen, Y.InvoiceScreen, E.InvoiceScreenBuilder, B.InvoiceViewContacts, B._InvitationListTile, X.InvoiceViewDocuments, A.InvoiceOverview, F.InvoiceViewScreen, B.PaymentEditScreen, O.PaymentListItem, R.PaymentListBuilder, K.PaymentScreen, G.PaymentScreenBuilder, Y.PaymentRefundScreen, F.PaymentViewScreen, Y.PaymentTermEditScreen, K.PaymentTermListItem, U.PaymentTermListBuilder, F.PaymentTermScreen, Z.PaymentTermScreenBuilder, U.PaymentTermViewScreen, S.ProductEditScreen, T.ProductListItem, Q.ProductListBuilder, K.ProductScreen, E.ProductScreenBuilder, F.ProductViewDocuments, F.ProductViewScreen, G.ProjectEditScreen, E.ProjectListItem, X.ProjectListBuilder, Z.ProjectScreen, S.ProjectScreenBuilder, D.ProjectViewDocuments, D.ProjectViewScreen, E.QuoteEditDetailsScreen, T.QuoteEditItemsScreen, V.QuoteEditNotesScreen, D.QuoteEditPDFScreen, B.QuoteEditScreen, B.QuoteEmailScreen, N.QuoteListItem, U.QuoteListBuilder, V.QuotePdfScreen, T.QuoteScreen, B.QuoteScreenBuilder, O.QuoteViewScreen, M.RecurringExpenseEditScreen, S.RecurringExpenseListItem, U.RecurringExpenseListBuilder, O.RecurringExpenseScreen, B.RecurringExpenseScreenBuilder, Z.RecurringExpenseViewScreen, F.RecurringInvoiceEditDetailsScreen, R.RecurringInvoiceEditItemsScreen, Q.RecurringInvoiceEditNotesScreen, U.RecurringInvoiceEditPDFScreen, Q.RecurringInvoiceEditScreen, U.RecurringInvoiceListItem, Y.RecurringInvoiceListBuilder, X.RecurringInvoicePdfScreen, V.RecurringInvoiceScreen, A.RecurringInvoiceScreenBuilder, O.RecurringInvoiceViewScreen, M.ReportCharts, A.ReportsScreen, A.TotalsDataTable, L.ReportsScreenBuilder, O._AccountOverview, A.AccountManagementScreen, B.BuyNowButtonsScreen, A.ClientPortalScreen, A.CompanyDetailsScreen, F.CreditCardsAndBanksScreen, S.CustomFieldsSettings, M.CustomFieldsScreen, M.DataVisualizationsScreen, L.DeviceSettingsScreen, D.EmailSettingsScreen, N.ExpenseSettingsScreen, F.HelpPanel, F.GeneratedNumbersScreen, D._FieldMapper, N.ImportExportScreen, B.InvoiceDesignScreen, B.LocalizationScreen, B.OnlinePaymentsScreen, G.ProductSettingsScreen, U.SettingsListTile, U.SettingsSearch, D.SettingsListBuilder, A.SettingsScreen, L.SettingsScreenBuilder, F.TaskSettingsScreen, N.NumberOfRatesSelector, A.TaxSettingsScreen, L.EmailPreview, F.TemplatesAndRemindersScreen, M.UserDetailsScreen, Y.WorkflowSettingsScreen, R.SubscriptionEditScreen, Y.SubscriptionListItem, S.SubscriptionListBuilder, O.SubscriptionScreen, L.SubscriptionScreenBuilder, E.SubscriptionViewScreen, A.TaskEditDetailsScreen, M.TaskEditTimesScreen, B.TaskEditScreen, U.TaskListItem, K.TaskListBuilder, D.TaskScreen, Y.TaskScreenBuilder, M.TaskTimeListTile, B.TaskViewDocuments, L.TaskViewScreen, Q.TaskStatusEditScreen, O.TaskStatusListItem, U.TaskStatusListBuilder, Y.TaskStatusScreen, U.TaskStatusScreenBuilder, T.TaskStatusViewScreen, S.TaxRateEditScreen, Z.TaxRateListItem, X.TaxRateListBuilder, D.TaxRateSettingsScreen, O.TaxRateScreenBuilder, R.TaxRateViewScreen, R.TokenEditScreen, K.TokenListItem, M.TokenListBuilder, S.TokenScreen, K.TokenScreenBuilder, Y._TokenListTile, U.TokenViewScreen, U._PermissionCheckbox, Y.UserEditScreen, E.UserListItem, M.UserListBuilder, G.UserScreen, A.UserScreenBuilder, B.UserView, X.UserViewScreen, D.ContactListTile, T.VendorEditContactsScreen, G.VendorEditDesktop, Q.VendorEditFooter, A.VendorEditScreen, Z.VendorListItem, E.VendorListBuilder, K.VendorScreen, B.VendorScreenBuilder, G.VendorViewDocuments, E.VendorOverview, F.VendorViewScreen, F.WebhookEditScreen, L.TargetListTile, Y.WebhookViewScreen, X.WebhookListItem, X.WebhookListBuilder, T.WebhookScreen, T.WebhookScreenBuilder, O.PhotoViewGestureDetector, Y.PhotoViewDefaultError, Y.PhotoViewDefaultLoading, L.PointerInterceptor, E._QrContentView]); _inheritMany(M.ImageProvider, [X.CachedNetworkImageProvider, D.NetworkImage, M.AssetBundleImageProvider, Y.ScrollAwareImageProvider, V.PdfPageImageProvider]); _inherit(L.ImageStreamCompleter, L._ImageStreamCompleter_Object_Diagnosticable); _inheritMany(L.ImageStreamCompleter, [B.MultiImageStreamCompleter, M._ErrorImageCompleter, L.MultiFrameImageStreamCompleter]); _inherit(L.CartesianChart, X.BaseChart0); _inheritMany(L.CartesianChart, [L.OrdinalCartesianChart, M.TimeSeriesChart]); _inherit(X.BarChart0, L.OrdinalCartesianChart); _inherit(F.BaseCartesianRenderer, B.BaseSeriesRenderer); _inheritMany(F.BaseCartesianRenderer, [T.BaseBarRenderer, T.LineRenderer, U.PointRenderer]); _inherit(L.BarRenderer, T.BaseBarRenderer); _inherit(L.BarRendererElement, B.BaseBarRendererElement); _inherit(L.AnimatedBar, B.BaseAnimatedBar); _inheritMany(X.LayoutViewConfig, [A.BaseBarRendererConfig, X.LineRendererConfig, R.PointRendererConfig]); _inherit(T.BarRendererConfig, A.BaseBarRendererConfig); _inherit(M.Axis, M.ImmutableAxis); _inheritMany(M.Axis, [M.NumericAxis, M.OrdinalAxis, F.DateTimeAxis]); _inherit(E.AxisTicks, S.Tick); _inherit(S.SmallTickRendererSpec, R.BaseRenderSpec); _inherit(L.GridlineRendererSpec, S.SmallTickRendererSpec); _inheritMany(R.BaseTickDrawStrategy, [L.GridlineTickDrawStrategy, S.SmallTickDrawStrategy]); _inheritMany(K.BaseTickProvider, [A.NumericTickProvider, M.OrdinalTickProvider, N.TimeRangeTickProvider]); _inherit(B.MutableScale, B.Scale); _inheritMany(T.AxisSpec, [L.DateTimeAxisSpec, T.NumericAxisSpec, Z.OrdinalAxisSpec]); _inheritMany(B.SimpleTickFormatterBase, [B.OrdinalTickFormatter, B.NumericTickFormatter]); _inherit(D._TimeStepIteratorFactoryImpl, Y.TimeStepIteratorFactory); _inherit(F.DateTimeExtents, B.Extents); _inherit(B.DateTimeScale, B.MutableScale); _inheritMany(D.BaseTimeStepper, [Q.DayTimeStepper, F.HourTimeStepper, B.MinuteTimeStepper, V.MonthTimeStepper, N.YearTimeStepper]); _inherit(B.HourTickFormatter, R.TimeTickFormatterImpl); _inherit(L.TimeRangeTickProviderImpl, N.TimeRangeTickProvider); _inherit(K.LegendEntry, K.LegendEntryBase); _inherit(Z.SeriesLegend0, D.Legend); _inherit(E._LinePointLayoutView, X.LayoutView); _inheritMany(K.NullablePoint, [E._DatumPoint0, T._DatumPoint, U.DatumPoint]); _inherit(N.MutableSeries, N.ImmutableSeries); _inherit(D.MutableSelectionModel, D.SelectionModel); _inheritMany(O.TypedRegistry, [K.RendererAttributes, F.SeriesAttributes]); _inheritMany(B.VerticalMarginStrategy, [B.LeftMarginLayoutStrategy, B.RightMarginLayoutStrategy]); _inheritMany(B.HorizontalMarginStrategy, [B.TopMarginLayoutStrategy, B.BottomMarginLayoutStrategy]); _inheritMany(A.Palette, [M.MaterialBlue, M.MaterialRed, M.MaterialYellow, M.MaterialGreen, M.MaterialPurple, M.MaterialCyan, M.MaterialDeepOrange, M.MaterialLime, M.MaterialIndigo, M.MaterialPink, M.MaterialTeal]); _inherit(B.SymbolRenderer, B.BaseSymbolRenderer); _inheritMany(B.SymbolRenderer, [B.RoundedRectSymbolRenderer, B.LineSymbolRenderer, B.CircleSymbolRenderer]); _inherit(F.AttributeKey, O.TypedKey); _inherit(L.CartesianChart0, X.BaseChart); _inheritMany(L.CartesianChart0, [X.BarChart, M.TimeSeriesChart0]); _inherit(U.BaseChartState, U._BaseChartState_State_TickerProviderStateMixin); _inheritMany(O.ChartBehavior, [O.DomainHighlighter, Z.SeriesLegend, E.LinePointHighlighter, Z.SelectNearest]); _inherit(Y.TabularLegendContentBuilder, Y.BaseLegendContentBuilder); _inherit(Z._FlutterSeriesLegend, Z.SeriesLegend0); _inheritMany(N.RenderObjectWidget, [N.SingleChildRenderObjectWidget, N.LeafRenderObjectWidget, L._Decorator, Q._ListTile, N.MultiChildRenderObjectWidget, N.RenderObjectToWidgetAdapter, A.ConstrainedLayoutBuilder, G.SliverWithKeepAliveWidget, U._SliverPersistentHeaderRenderObjectWidget, S.Table]); _inheritMany(N.SingleChildRenderObjectWidget, [T.CustomPaint, E._AppBarTitleBox, Z._InputPadding, K._InputPadding0, K._MenuItem, M._InkFeatures, Z._MenuItem0, M._DayPeriodInputPadding, E._SelectToggleButton, F.AnimatedSize, X.AnnotatedRegion, T.Opacity, T.ClipRect, T.ClipRRect, T.ClipOval, T.ClipPath, T.PhysicalModel, T.PhysicalShape, T.Transform, T.CompositedTransformTarget, T.CompositedTransformFollower, T.FittedBox, T.FractionalTranslation, T.Padding, T.Align, T.CustomSingleChildLayout, T.SizedBox, T.ConstrainedBox, T.FractionallySizedBox, T.LimitedBox, T.Offstage, T.AspectRatio, T.IntrinsicWidth, T.IntrinsicHeight, T.SliverPadding, T.Listener, T._RawMouseRegion, T.RepaintBoundary, T.IgnorePointer, T.AbsorbPointer, T.Semantics, T.MergeSemantics, T.BlockSemantics, T.ExcludeSemantics, T.IndexedSemantics, T.ColoredBox, M.DecoratedBox, D._GestureSemantics, F._ScrollSemantics, E._SingleChildViewport, A._SliverFractionalPadding, K.FadeTransition]); _inherit(X.ChartContainer, T.CustomPaint); _inheritMany(B.AbstractNode, [K._RenderObject_AbstractNode_DiagnosticableTreeMixin, T._Layer_AbstractNode_DiagnosticableTreeMixin, A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin]); _inherit(K.RenderObject, K._RenderObject_AbstractNode_DiagnosticableTreeMixin); _inheritMany(K.RenderObject, [S.RenderBox, G.RenderSliver, A._RenderView_RenderObject_RenderObjectWithChildMixin]); _inheritMany(S.RenderBox, [E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin, T._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin, L._RenderDecoration, Q._RenderListTile, R._RenderListBody_RenderBox_ContainerRenderObjectMixin, F._RenderFlex_RenderBox_ContainerRenderObjectMixin, B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin, D._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin, D._RenderEditableCustomPaint, V.RenderErrorBox, U.RenderImage, Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin, L.RenderPerformanceOverlay, G._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin, K._RenderStack_RenderBox_ContainerRenderObjectMixin, S.RenderTable, Q._RenderViewportBase_RenderBox_ContainerRenderObjectMixin, N._RenderWrap_RenderBox_ContainerRenderObjectMixin, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin, E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin, X.__RenderTheatre_RenderBox_ContainerRenderObjectMixin, E.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin, K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin, Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin]); _inherit(E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin, E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin); _inherit(E.RenderProxyBox, E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin); _inheritMany(E.RenderProxyBox, [V.RenderCustomPaint, E.RenderConstrainedBox, K._RenderMenuItem, M._RenderInkFeatures, E.RenderProxyBoxWithHitTestBehavior, E.RenderLimitedBox, E.RenderAspectRatio, E.RenderIntrinsicWidth, E.RenderIntrinsicHeight, E.RenderOpacity, E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin, E._RenderCustomClip, E.RenderDecoratedBox, E.RenderTransform, E.RenderFittedBox, E.RenderFractionalTranslation, E.RenderMouseRegion, E.RenderRepaintBoundary, E.RenderIgnorePointer, E.RenderOffstage, E.RenderAbsorbPointer, E.RenderSemanticsAnnotations, E.RenderBlockSemantics, E.RenderMergeSemantics, E.RenderExcludeSemantics, E.RenderIndexedSemantics, E.RenderLeaderLayer, E.RenderFollowerLayer, E.RenderAnnotatedRegion, F._RenderScrollSemantics]); _inherit(X.ChartContainerRenderObject, V.RenderCustomPaint); _inheritMany(B.Listenable, [V.CustomPainter, X.Animation0, B._MergingListenable, E.CustomClipper, N._SystemFontsNotifier]); _inheritMany(V.CustomPainter, [X.ChartContainerCustomPaint, B._SymbolCustomPaint, M.ArrowCustomPainter, F._CupertinoActivityIndicatorPainter, F._TextSelectionHandlePainter0, K._DropdownMenuPainter, L._InputBorderPainter, M._ShapeBorderPainter, U._LinearProgressIndicatorPainter, U._CircularProgressIndicatorPainter, E._IndicatorPainter, F._TextSelectionHandlePainter, M._DialPainter, L._GlowingOverscrollIndicatorPainter, R.QrPainter]); _inheritMany(B.MultiChildLayoutDelegate, [E.WidgetLayoutDelegate, M._ScaffoldLayout, E._ToolbarLayout]); _inheritMany(U._UnorderedEquality, [U.UnorderedIterableEquality, U.SetEquality]); _inherit(A.XFile, R.XFileBase); _inherit(M._DraggableScrollbarState, M.__DraggableScrollbarState_State_TickerProviderStateMixin); _inherit(E._RealtimeClock, E.Clock0); _inheritMany(U.MemoryFileSystemEntity, [Q._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin, T.MemoryFile]); _inherit(Q.MemoryDirectory, Q._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin); _inherit(X._MemoryFileSystem, E.FileSystem0); _inherit(B.RealNode, B.Node0); _inheritMany(B.RealNode, [B.DirectoryNode, B.FileNode]); _inherit(B.RootNode, B.DirectoryNode); _inherit(O._Posix, O.FileSystemStyle); _inheritMany(E.PlatformInterface, [G.FilePicker, R.ImagePickerPlatform, O.PackageInfoPlatform, T.PathProviderPlatform, M.PermissionHandlerPlatform, D.UrlLauncherPlatform]); _inheritMany(G.FilePicker, [G.FilePickerWeb, B.FilePickerIO]); _inheritMany(X.Animation0, [G._AnimationController_Animation_AnimationEagerListenerMixin, S._AlwaysCompleteAnimation, S._AlwaysDismissedAnimation, S.AlwaysStoppedAnimation, S._ProxyAnimation_Animation_AnimationLazyListenerMixin, S._ReverseAnimation_Animation_AnimationLazyListenerMixin, S._CurvedAnimation_Animation_AnimationWithParentMixin, S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin, S._CompoundAnimation_Animation_AnimationLazyListenerMixin, R.__AnimatedEvaluation_Animation_AnimationWithParentMixin, E.__ChangeAnimation_Animation_AnimationWithParentMixin, E.__DragAnimation_Animation_AnimationWithParentMixin]); _inherit(G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, G._AnimationController_Animation_AnimationEagerListenerMixin); _inherit(G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin); _inherit(G.AnimationController, G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inheritMany(T.Simulation, [G._InterpolationSimulation, G._RepeatingSimulation, D.FrictionSimulation, M.SpringSimulation, Y.BouncingScrollSimulation, Y.ClampingScrollSimulation]); _inherit(S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, S._ProxyAnimation_Animation_AnimationLazyListenerMixin); _inherit(S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin); _inherit(S.ProxyAnimation, S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inherit(S._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin, S._ReverseAnimation_Animation_AnimationLazyListenerMixin); _inherit(S.ReverseAnimation, S._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin); _inherit(S.CurvedAnimation, S._CurvedAnimation_Animation_AnimationWithParentMixin); _inherit(S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin); _inherit(S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin); _inherit(S.TrainHoppingAnimation, S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inherit(S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, S._CompoundAnimation_Animation_AnimationLazyListenerMixin); _inherit(S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin); _inherit(S.CompoundAnimation, S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin); _inheritMany(S.CompoundAnimation, [S.AnimationMin, A._AnimationSwap]); _inheritMany(Z.ParametricCurve, [Z.Curve, M._BottomSheetSuspendedCurve]); _inheritMany(Z.Curve, [Z._Linear, Z.SawTooth, Z.Interval, Z.Threshold, Z.Cubic, Z.FlippedCurve, Z._DecelerateCurve, Z.ElasticOutCurve]); _inherit(R._AnimatedEvaluation, R.__AnimatedEvaluation_Animation_AnimationWithParentMixin); _inheritMany(R.Animatable, [R._ChainedEvaluation, R.Tween, R.CurveTween, Y.TweenSequence]); _inheritMany(R.Tween, [R.ReverseTween, R.ColorTween, R.SizeTween, R.RectTween, R.IntTween, D.MaterialPointArcTween, L._InputBorderTween, M.ShapeBorderTween, K.ThemeDataTween, S.AlignmentGeometryTween, G.BoxConstraintsTween, G.DecorationTween, G.EdgeInsetsGeometryTween, G.BorderRadiusTween, G.Matrix4Tween, G.TextStyleTween]); _inherit(F._CupertinoActivityIndicatorState, F.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin); _inheritMany(P.Color, [E._CupertinoDynamicColor_Color_Diagnosticable, E.ColorSwatch, V.MaterialStateColor]); _inherit(E.CupertinoDynamicColor, E._CupertinoDynamicColor_Color_Diagnosticable); _inheritMany(F.TextSelectionControls, [L._CupertinoDesktopTextSelectionControls, F.CupertinoTextSelectionControls, L._DesktopTextSelectionControls, F.MaterialTextSelectionControls]); _inherit(T.IconThemeData, T._IconThemeData_Object_Diagnosticable); _inherit(T._CupertinoIconThemeData_IconThemeData_Diagnosticable, T.IconThemeData); _inherit(T.CupertinoIconThemeData, T._CupertinoIconThemeData_IconThemeData_Diagnosticable); _inheritMany(L.LocalizationsDelegate, [L._CupertinoLocalizationsDelegate, U._MaterialLocalizationsDelegate, L._WidgetsLocalizationsDelegate, Y._GlobalCupertinoLocalizationsDelegate, U._MaterialLocalizationsDelegate0, B._WidgetsLocalizationsDelegate0, X.AppLocalizationsDelegate]); _inherit(Z.Decoration, Z._Decoration_Object_Diagnosticable); _inheritMany(Z.Decoration, [D._CupertinoEdgeShadowDecoration, T.UnderlineTabIndicator, S.BoxDecoration, V.ShapeDecoration]); _inheritMany(Z.BoxPainter, [D._CupertinoEdgeShadowPainter, T._UnderlinePainter, S._BoxDecorationPainter, V._ShapeDecorationPainter]); _inheritMany(E.RawScrollbar, [E.CupertinoScrollbar, E._MaterialScrollbar]); _inherit(E.RawScrollbarState, E._RawScrollbarState_State_TickerProviderStateMixin); _inheritMany(E.RawScrollbarState, [E._CupertinoScrollbarState, E._MaterialScrollbarState]); _inherit(N._CupertinoSwitchState, N.__CupertinoSwitchState_State_TickerProviderStateMixin); _inheritMany(N.LeafRenderObjectWidget, [N._CupertinoSwitchRenderObjectWidget, T.RawImage, D._Editable, N.ErrorWidget, L.PerformanceOverlay, G.PlatformViewSurface]); _inherit(N._RenderCupertinoSwitch, E.RenderConstrainedBox); _inherit(R.CupertinoTextThemeData, R._CupertinoTextThemeData_Object_Diagnosticable); _inheritMany(N.ProxyWidget, [N.InheritedWidget, N.ParentDataWidget]); _inheritMany(N.InheritedWidget, [K._InheritedCupertinoTheme, M.InheritedTheme, Q._FocusedDate, K.DropdownButtonHideUnderline, Z.FlexibleSpaceBarSettings, R._ParentInkResponseProvider, M._ScaffoldMessengerScope, M._ScaffoldScope, U._TabControllerScope, U._ActionsMarker, F._AutofillScope, T.Directionality, S.InheritedNotifier, U._FocusTraversalGroupMarker, A._FormScope, L._LocalizationsScope, F.MediaQuery, K.HeroControllerScope, E.PrimaryScrollController, K.UnmanagedRestorationScope, T._ModalScopeStatus, K.ScrollConfiguration, F._ScrollableScope, U._EffectiveTickerMode, O.StoreProvider, A._SlidableScope, A.SlidableData, R.StyledToastTheme, O.PhotoViewGestureDetectorScope]); _inherit(K._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable, K.NoDefaultCupertinoThemeData); _inherit(K.CupertinoThemeData, K._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable); _inherit(K._DefaultCupertinoTextThemeData, R.CupertinoTextThemeData); _inheritMany(Y.DiagnosticsNode, [Y.DiagnosticsProperty, Y.DiagnosticsBlock, Y.DiagnosticableNode]); _inheritMany(Y.DiagnosticsProperty, [U._ErrorDiagnostic, U.ErrorSpacer, K.DiagnosticsDebugCreator]); _inheritMany(U._ErrorDiagnostic, [U.ErrorDescription, U.ErrorSummary, U.ErrorHint]); _inherit(U.FlutterErrorDetails, U._FlutterErrorDetails_Object_Diagnosticable); _inherit(U.FlutterError, U._FlutterError_Error_DiagnosticableTreeMixin); _inherit(U.DiagnosticsStackTrace, Y.DiagnosticsBlock); _inheritMany(Y.DiagnosticableNode, [U._FlutterErrorDetailsNode, Y.DiagnosticableTreeNode, A._SemanticsDiagnosticableNode]); _inherit(B._ListenerEntry, P.LinkedListEntry); _inheritMany(B.ChangeNotifier, [B.ValueNotifier, F.ToggleablePainter, D.DataTableSource, K.RestorableProperty, L._InputBorderGap, M._ScaffoldGeometryNotifier, U.TabController, N.ViewportOffset, F.ScrollController, D.RenderEditablePainter, A.MouseTracker, A.SemanticsOwner, K.RestorationManager, L.KeepAliveHandle, X.OverlayEntry, L._GlowController, E.ScrollbarPainter, X._ShortcutManager_ChangeNotifier_Diagnosticable, K.AppDataTableSource, Z.IgnorableChangeNotifier]); _inheritMany(D.Key, [D.LocalKey, N.GlobalKey]); _inheritMany(D.LocalKey, [D.ValueKey, D._SaltedKey, N.UniqueKey, N.ObjectKey]); _inherit(F.LicenseEntryWithLineBreaks, F.LicenseEntry); _inherit(N.FlutterErrorDetailsForPointerEventDispatcher, U.FlutterErrorDetails); _inherit(F.PointerEvent0, F._PointerEvent_Object_Diagnosticable); _inherit(F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable, F._AbstractPointerEvent); _inherit(F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription, F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable); _inherit(F._TransformedPointerEvent, F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription); _inheritMany(F.PointerEvent0, [F._PointerAddedEvent_PointerEvent__PointerEventDescription, F._PointerRemovedEvent_PointerEvent__PointerEventDescription, F._PointerHoverEvent_PointerEvent__PointerEventDescription, F._PointerEnterEvent_PointerEvent__PointerEventDescription, F._PointerExitEvent_PointerEvent__PointerEventDescription, F._PointerDownEvent_PointerEvent__PointerEventDescription, F._PointerMoveEvent_PointerEvent__PointerEventDescription, F._PointerUpEvent_PointerEvent__PointerEventDescription, F.PointerSignalEvent, F._PointerCancelEvent_PointerEvent__PointerEventDescription]); _inherit(F._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent, F._PointerAddedEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerAddedEvent, F._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent); _inheritMany(F._TransformedPointerEvent, [F.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent, F.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent, F.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent, F.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent, F.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent, F.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent, F.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent, F.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent, F.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent, F.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent]); _inherit(F._TransformedPointerAddedEvent, F.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent); _inherit(F._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent, F._PointerRemovedEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerRemovedEvent, F._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent); _inherit(F._TransformedPointerRemovedEvent, F.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent); _inherit(F._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent, F._PointerHoverEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerHoverEvent, F._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent); _inherit(F._TransformedPointerHoverEvent, F.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent); _inherit(F._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent, F._PointerEnterEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerEnterEvent, F._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent); _inherit(F._TransformedPointerEnterEvent, F.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent); _inherit(F._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent, F._PointerExitEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerExitEvent, F._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent); _inherit(F._TransformedPointerExitEvent, F.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent); _inherit(F._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent, F._PointerDownEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerDownEvent, F._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent); _inherit(F._TransformedPointerDownEvent, F.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent); _inherit(F._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent, F._PointerMoveEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerMoveEvent, F._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent); _inherit(F._TransformedPointerMoveEvent, F.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent); _inherit(F._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent, F._PointerUpEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerUpEvent, F._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent); _inherit(F._TransformedPointerUpEvent, F.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent); _inherit(F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription, F.PointerSignalEvent); _inherit(F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent, F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription); _inherit(F.PointerScrollEvent, F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent); _inherit(F._TransformedPointerScrollEvent, F.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent); _inherit(F._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent, F._PointerCancelEvent_PointerEvent__PointerEventDescription); _inherit(F.PointerCancelEvent, F._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent); _inherit(F._TransformedPointerCancelEvent, F.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent); _inheritMany(D.GestureArenaMember, [S._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin, V._CombiningGestureArenaMember]); _inherit(S.GestureRecognizer, S._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin); _inheritMany(S.GestureRecognizer, [S.OneSequenceGestureRecognizer, V.MultiDragGestureRecognizer, F.DoubleTapGestureRecognizer]); _inheritMany(S.OneSequenceGestureRecognizer, [K.ForcePressGestureRecognizer, S.PrimaryPointerGestureRecognizer, O.DragGestureRecognizer, B.ScaleGestureRecognizer, G._PlatformViewGestureRecognizer]); _inheritMany(O._TransformPart, [O._MatrixTransformPart, O._OffsetTransformPart]); _inheritMany(S.PrimaryPointerGestureRecognizer, [T.LongPressGestureRecognizer, N.BaseTapGestureRecognizer]); _inheritMany(O.DragGestureRecognizer, [O.VerticalDragGestureRecognizer, O.HorizontalDragGestureRecognizer, O.PanGestureRecognizer]); _inheritMany(V.MultiDragPointerState, [V._ImmediatePointerState, V._DelayedPointerState]); _inheritMany(V.MultiDragGestureRecognizer, [V.ImmediateMultiDragGestureRecognizer, V.DelayedMultiDragGestureRecognizer]); _inheritMany(N.BaseTapGestureRecognizer, [N.TapGestureRecognizer, X._AnyTapGestureRecognizer]); _inherit(R.IOSScrollViewFlingVelocityTracker, R.VelocityTracker); _inherit(S.MaterialScrollBehavior, K.ScrollBehavior); _inheritMany(T.SingleChildLayoutDelegate, [E._ToolbarContainerLayout, K._DropdownMenuRouteLayout, Z._PopupMenuRouteLayout, S._TooltipPositionDelegate, M._CenterWithOriginalSizeDelegate]); _inherit(E._SliverAppBarDelegate, U.SliverPersistentHeaderDelegate); _inherit(E._SliverAppBarState, E.__SliverAppBarState_State_TickerProviderStateMixin); _inherit(T.RenderShiftedBox, T._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin); _inheritMany(T.RenderShiftedBox, [T.RenderAligningShiftedBox, Z._RenderInputPadding, K._RenderInputPadding0, Z._RenderMenuItem0, M._RenderInputPadding1, E._SelectToggleButtonRenderObject, T.RenderPadding, T.RenderCustomSingleChildLayoutBox]); _inheritMany(T.RenderAligningShiftedBox, [E._RenderAppBarTitleBox, F.RenderAnimatedSize, T.RenderPositionedBox, T.RenderFractionallySizedOverflowBox]); _inherit(V.AppBarTheme, V._AppBarTheme_Object_Diagnosticable); _inherit(D.MaterialRectArcTween, R.RectTween); _inherit(Q.MaterialBannerThemeData, Q._MaterialBannerThemeData_Object_Diagnosticable); _inheritMany(E.CustomClipper, [B._BottomAppBarClipper, E.ShapeBorderClipper, M._DecorationClipper]); _inherit(D.BottomAppBarTheme, D._BottomAppBarTheme_Object_Diagnosticable); _inherit(M.BottomNavigationBarThemeData, M._BottomNavigationBarThemeData_Object_Diagnosticable); _inherit(X.BottomSheetThemeData, X._BottomSheetThemeData_Object_Diagnosticable); _inherit(M.ButtonBarThemeData, M._ButtonBarThemeData_Object_Diagnosticable); _inherit(A.ButtonStyle, A._ButtonStyle_Object_Diagnosticable); _inherit(K._ButtonStyleState, K.__ButtonStyleState_State_TickerProviderStateMixin); _inherit(A.MouseCursor0, A._MouseCursor_Object_Diagnosticable); _inheritMany(A.MouseCursor0, [V.MaterialStateMouseCursor, A._DeferringMouseCursor, A._NoopMouseCursor, A.SystemMouseCursor]); _inheritMany(V.MaterialStateMouseCursor, [K._MouseCursor, V._EnabledAndDisabledMouseCursor]); _inheritMany(M.InheritedTheme, [M.ButtonTheme, Q.ListTileTheme, K._InheritedTheme, Y.IconTheme, L.DefaultTextStyle]); _inherit(M.ButtonThemeData, M._ButtonThemeData_Object_Diagnosticable); _inherit(Q._DatePickerModeToggleButtonState, Q.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin); _inheritMany(B.SliverGridDelegate, [Q._DayPickerGridDelegate, Q._YearPickerGridDelegate, B.SliverGridDelegateWithFixedCrossAxisCount]); _inherit(A.CardTheme, A._CardTheme_Object_Diagnosticable); _inherit(K.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin, K.__CheckboxState_State_TickerProviderStateMixin); _inherit(K._CheckboxState, K.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin); _inheritMany(F.ToggleablePainter, [K._CheckboxPainter, Y._RadioPainter, N._SwitchPainter]); _inherit(F.CheckboxThemeData, F._CheckboxThemeData_Object_Diagnosticable); _inherit(K.ChipThemeData, K._ChipThemeData_Object_Diagnosticable); _inherit(A.ColorScheme, A._ColorScheme_Object_Diagnosticable); _inheritMany(E.ColorSwatch, [E.MaterialColor, E.MaterialAccentColor]); _inheritMany(R.InkResponse, [S.TableRowInkWell, R.InkWell, L.TableRowInkWell0]); _inherit(S._SortArrowState, S.__SortArrowState_State_TickerProviderStateMixin); _inheritMany(S.TableColumnWidth, [S._NullTableColumnWidth, S.IntrinsicColumnWidth, S.FixedColumnWidth, S.FlexColumnWidth, L._NullTableColumnWidth0]); _inherit(Z.DataTableThemeData, Z._DataTableThemeData_Object_Diagnosticable); _inherit(K._DatePickerDialogState, K.__DatePickerDialogState_State_RestorationMixin); _inheritMany(K.RestorableProperty, [U.RestorableValue, K._HistoryProperty, U.RestorableListenable]); _inheritMany(U.RestorableValue, [K._RestorableDatePickerEntryMode, U._RestorablePrimitiveValueN, U.RestorableDateTime, F._RestorableScrollOffset]); _inheritMany(K.Route, [T.OverlayRoute, K._NotAnnounced]); _inherit(T.TransitionRoute, T.OverlayRoute); _inherit(T._ModalRoute_TransitionRoute_LocalHistoryRoute, T.TransitionRoute); _inherit(T.ModalRoute, T._ModalRoute_TransitionRoute_LocalHistoryRoute); _inheritMany(T.ModalRoute, [T.PopupRoute, V.PageRoute]); _inheritMany(T.PopupRoute, [T.RawDialogRoute, K._DropdownRoute, Z._PopupMenuRoute]); _inherit(E.DialogRoute, T.RawDialogRoute); _inherit(Y.DialogTheme, Y._DialogTheme_Object_Diagnosticable); _inherit(G.DividerThemeData, G._DividerThemeData_Object_Diagnosticable); _inherit(Z.DrawerControllerState, Z._DrawerControllerState_State_SingleTickerProviderStateMixin); _inherit(K.DropdownMenuItem, K._DropdownMenuItemContainer); _inherit(K._DropdownButtonState, K.__DropdownButtonState_State_WidgetsBindingObserver); _inheritMany(A.FormField, [K.DropdownButtonFormField, E.TextFormField, L.TypeAheadFormField]); _inheritMany(A.FormFieldState, [K._DropdownButtonFormFieldState, E._TextFormFieldState, L._TypeAheadFormFieldState]); _inheritMany(K.ButtonStyleButton, [D.ElevatedButton, B.OutlinedButton, U.TextButton]); _inheritMany(V.MaterialStateProperty, [D.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable, D.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, D.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, D.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable, D.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, B.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, B.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, B.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, U._TextButtonDefaultForeground, U._TextButtonDefaultOverlay, U.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable]); _inherit(D._ElevatedButtonDefaultBackground, D.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable); _inherit(D._ElevatedButtonDefaultForeground, D.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable); _inherit(D._ElevatedButtonDefaultOverlay, D.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable); _inherit(D._ElevatedButtonDefaultElevation, D.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable); _inherit(D._ElevatedButtonDefaultMouseCursor, D.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(T.ElevatedButtonThemeData, T._ElevatedButtonThemeData_Object_Diagnosticable); _inherit(N._ExpandIconState, N.__ExpandIconState_State_SingleTickerProviderStateMixin); _inheritMany(A.FloatingActionButtonLocation, [A.StandardFabLocation, M._TransitionSnapshotFabLocation]); _inheritMany(A.StandardFabLocation, [A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX]); _inherit(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY, A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndTopFabLocation, A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY); _inherit(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndFloatFabLocation, A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY); _inherit(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX); _inherit(A._EndDockedFabLocation, A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY); _inherit(A._ScalingFabMotionAnimator, A.FloatingActionButtonAnimator); _inherit(S.FloatingActionButtonThemeData, S._FloatingActionButtonThemeData_Object_Diagnosticable); _inheritMany(M.InkFeature, [D.InkDecoration, R.InteractiveInkFeature]); _inheritMany(R.InteractiveInkFeature, [Y.InkHighlight, O.InkRipple, U.InkSplash]); _inheritMany(R.InteractiveInkFeatureFactory, [O._InkRippleFactory, U._InkSplashFactory]); _inherit(R._InkResponseState, R.__InkResponseState_State_AutomaticKeepAliveClientMixin); _inheritMany(Y.ShapeBorder, [F.InputBorder, Y.OutlinedBorder, Y._CompoundBorder, F.BoxBorder]); _inheritMany(F.InputBorder, [F._NoInputBorder, F.UnderlineInputBorder, F.OutlineInputBorder]); _inherit(L._BorderContainerState, L.__BorderContainerState_State_TickerProviderStateMixin); _inheritMany(K.AnimatedWidget, [L._Shaker, E._TabStyle, X.AnimatedModalBarrier, K.SlideTransition, K.ScaleTransition, K.RotationTransition, K.SizeTransition, K.DecoratedBoxTransition, K.AnimatedBuilder, R.CustomSizeTransition]); _inherit(L._HelperErrorState, L.__HelperErrorState_State_SingleTickerProviderStateMixin); _inheritMany(N.Element0, [N.RenderObjectElement, N.ComponentElement, N._NullElement]); _inheritMany(N.RenderObjectElement, [L._DecorationElement, Q._ListTileElement, N.SingleChildRenderObjectElement, N.RootRenderObjectElement, N.LeafRenderObjectElement, N.MultiChildRenderObjectElement, A._LayoutBuilderElement, G.SliverMultiBoxAdaptorElement, U._SliverPersistentHeaderElement, S._TableElement]); _inherit(L._InputDecoratorState, L.__InputDecoratorState_State_TickerProviderStateMixin); _inherit(L.InputDecorationTheme, L._InputDecorationTheme_Object_Diagnosticable); _inherit(M._MaterialState, M.__MaterialState_State_TickerProviderStateMixin); _inheritMany(G.ImplicitlyAnimatedWidget, [M._MaterialInterior, K.AnimatedTheme, G.AnimatedContainer, G.AnimatedPadding, G.AnimatedOpacity, G.AnimatedDefaultTextStyle, G.AnimatedPhysicalModel]); _inherit(G.ImplicitlyAnimatedWidgetState, G._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin); _inheritMany(G.ImplicitlyAnimatedWidgetState, [G.AnimatedWidgetBaseState, G._AnimatedOpacityState]); _inheritMany(G.AnimatedWidgetBaseState, [M._MaterialInteriorState, K._AnimatedThemeState, G._AnimatedContainerState, G._AnimatedPaddingState, G._AnimatedDefaultTextStyleState, G._AnimatedPhysicalModelState]); _inherit(V._MaterialStateColor, V.MaterialStateColor); _inheritMany(B.MergeableMaterialItem, [B.MaterialSlice, B.MaterialGap]); _inherit(B._MergeableMaterialState, B.__MergeableMaterialState_State_TickerProviderStateMixin); _inheritMany(N.GlobalKey, [B._MergeableMaterialSliceKey, N.GlobalObjectKey, N.LabeledGlobalKey]); _inheritMany(N.MultiChildRenderObjectWidget, [T.ListBody, T.Flex, T.CustomMultiChildLayout, T.Stack, T.Wrap, T.RichText, E.OverflowBar, X._Theatre, Q.Viewport, Q.ShrinkWrappingViewport, K.OverflowView]); _inherit(B._MergeableMaterialListBody, T.ListBody); _inherit(R._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, R._RenderListBody_RenderBox_ContainerRenderObjectMixin); _inherit(R.RenderListBody, R._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(B._RenderMergeableMaterialListBody, R.RenderListBody); _inherit(E.NavigationRailThemeData, E._NavigationRailThemeData_Object_Diagnosticable); _inherit(B._OutlinedButtonDefaultForeground, B.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable); _inherit(B._OutlinedButtonDefaultOverlay, B.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable); _inherit(B._OutlinedButtonDefaultMouseCursor, B.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(U.OutlinedButtonThemeData, U._OutlinedButtonThemeData_Object_Diagnosticable); _inherit(V._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin, V.PageRoute); _inherit(V.MaterialPageRoute, V._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin); _inheritMany(K.PageTransitionsBuilder, [K.FadeUpwardsPageTransitionsBuilder, K.ZoomPageTransitionsBuilder, K.CupertinoPageTransitionsBuilder]); _inherit(K.PageTransitionsTheme, K._PageTransitionsTheme_Object_Diagnosticable); _inheritMany(Z.PopupMenuEntry, [Z.PopupMenuDivider, Z.PopupMenuItem]); _inherit(R.PopupMenuThemeData, R._PopupMenuThemeData_Object_Diagnosticable); _inheritMany(U.ProgressIndicator, [U.LinearProgressIndicator, U.CircularProgressIndicator]); _inherit(U._LinearProgressIndicatorState, U.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin); _inherit(U._CircularProgressIndicatorState, U.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin); _inherit(U._RefreshProgressIndicatorPainter, U._CircularProgressIndicatorPainter); _inherit(U.RefreshProgressIndicator, U.CircularProgressIndicator); _inherit(U._RefreshProgressIndicatorState, U._CircularProgressIndicatorState); _inherit(Y.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin, Y.__RadioState_State_TickerProviderStateMixin); _inherit(Y._RadioState, Y.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin); _inherit(T.RadioThemeData, T._RadioThemeData_Object_Diagnosticable); _inherit(N.RefreshIndicatorState, N._RefreshIndicatorState_State_TickerProviderStateMixin); _inheritMany(N.GlobalObjectKey, [Z._ReorderableListViewChildGlobalKey, Z._ReorderableItemGlobalKey]); _inherit(M.ScaffoldMessengerState, M._ScaffoldMessengerState_State_TickerProviderStateMixin); _inheritMany(K.Constraints, [S.BoxConstraints, G.SliverConstraints]); _inheritMany(S.BoxConstraints, [M._BodyBoxConstraints, Y.BoxValueConstraints]); _inherit(M._FloatingActionButtonTransitionState, M.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin); _inherit(M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin, M._ScaffoldState_State_TickerProviderStateMixin); _inherit(M.ScaffoldState, M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin); _inherit(M.PersistentBottomSheetController, M.ScaffoldFeatureController); _inherit(X.ScrollbarThemeData, X._ScrollbarThemeData_Object_Diagnosticable); _inherit(D.TextEditingController, B.ValueNotifier); _inherit(O._TextSpanEditingController, D.TextEditingController); _inheritMany(F.TextSelectionGestureDetectorBuilder, [O._SelectableTextSelectionGestureDetectorBuilder, Z._TextFieldSelectionGestureDetectorBuilder]); _inherit(O._SelectableTextState, O.__SelectableTextState_State_AutomaticKeepAliveClientMixin); _inherit(Q.SliderThemeData, Q._SliderThemeData_Object_Diagnosticable); _inherit(K.SnackBarThemeData, K._SnackBarThemeData_Object_Diagnosticable); _inherit(N.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin, N.__MaterialSwitchState_State_TickerProviderStateMixin); _inherit(N._MaterialSwitchState, N.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin); _inherit(R.SwitchThemeData, R._SwitchThemeData_Object_Diagnosticable); _inherit(U.TabBarTheme, U._TabBarTheme_Object_Diagnosticable); _inherit(U._DefaultTabControllerState, U.__DefaultTabControllerState_State_SingleTickerProviderStateMixin); _inherit(F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, F._RenderFlex_RenderBox_ContainerRenderObjectMixin); _inherit(F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin, F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(F.RenderFlex, F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin); _inherit(E._TabLabelBarRenderer, F.RenderFlex); _inheritMany(T.Flex, [E._TabLabelBar, T.Row, T.Column]); _inherit(E._ChangeAnimation, E.__ChangeAnimation_Animation_AnimationWithParentMixin); _inherit(E._DragAnimation, E.__DragAnimation_Animation_AnimationWithParentMixin); _inherit(A._ScrollPosition_ViewportOffset_ScrollMetrics, N.ViewportOffset); _inherit(A.ScrollPosition, A._ScrollPosition_ViewportOffset_ScrollMetrics); _inherit(R.ScrollPositionWithSingleContext, A.ScrollPosition); _inheritMany(R.ScrollPositionWithSingleContext, [E._TabBarScrollPosition, S._DraggableScrollableSheetScrollPosition, D._PagePosition]); _inheritMany(F.ScrollController, [E._TabBarScrollController, S._DraggableScrollableSheetScrollController, D.PageController]); _inherit(U._TextButtonDefaultMouseCursor, U.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable); _inherit(T.TextButtonThemeData, T._TextButtonThemeData_Object_Diagnosticable); _inherit(Z._TextFieldState, Z.__TextFieldState_State_RestorationMixin); _inherit(R.TextSelectionThemeData, R._TextSelectionThemeData_Object_Diagnosticable); _inherit(R.TextTheme, R._TextTheme_Object_Diagnosticable); _inherit(X.ThemeData, X._ThemeData_Object_Diagnosticable); _inherit(X.MaterialBasedCupertinoThemeData, K.CupertinoThemeData); _inherit(X.VisualDensity, X._VisualDensity_Object_Diagnosticable); _inherit(M._DialState, M.__DialState_State_SingleTickerProviderStateMixin); _inherit(A.TimePickerThemeData, A._TimePickerThemeData_Object_Diagnosticable); _inherit(S.ToggleButtonsThemeData, S._ToggleButtonsThemeData_Object_Diagnosticable); _inherit(S._TooltipState, S.__TooltipState_State_SingleTickerProviderStateMixin); _inherit(T.TooltipThemeData, T._TooltipThemeData_Object_Diagnosticable); _inherit(U.Typography, U._Typography_Object_Diagnosticable); _inheritMany(K.AlignmentGeometry, [K.Alignment, K.AlignmentDirectional, K._MixedAlignment]); _inheritMany(K.BorderRadiusGeometry, [K.BorderRadius, K._MixedBorderRadius]); _inheritMany(F.BoxBorder, [F.Border, F.BorderDirectional]); _inherit(O.BoxShadow, P.Shadow); _inheritMany(Y.OutlinedBorder, [X.CircleBorder, X.RoundedRectangleBorder, X._RoundedRectangleToCircleBorder]); _inheritMany(V.EdgeInsetsGeometry, [V.EdgeInsets, V.EdgeInsetsDirectional, V._MixedEdgeInsets]); _inherit(X.FractionalOffset, K.Alignment); _inheritMany(E._CachedImageBase, [E._CachedImage, E._LiveImage]); _inherit(L.AssetImage, M.AssetBundleImageProvider); _inherit(L.ImageChunkEvent, L._ImageChunkEvent_Object_Diagnosticable); _inherit(L.ImageStream, L._ImageStream_Object_Diagnosticable); _inherit(V.CircularNotchedRectangle, V.NotchedShape); _inherit(D.DefaultShaderWarmUp, D.ShaderWarmUp); _inherit(M.StrutStyle, M._StrutStyle_Object_Diagnosticable); _inherit(Q.TextSpan, G.InlineSpan); _inherit(A.TextStyle, A._TextStyle_Object_Diagnosticable); _inherit(M.ScrollSpringSimulation, M.SpringSimulation); _inheritMany(O.HitTestResult, [S.BoxHitTestResult, G.SliverHitTestResult]); _inheritMany(O.HitTestEntry, [S.BoxHitTestEntry, G.SliverHitTestEntry]); _inheritMany(K.ParentData, [S.BoxParentData, G.SliverLogicalParentData, G.SliverPhysicalParentData]); _inheritMany(S.BoxParentData, [S._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin, S.TableCellParentData]); _inherit(S.ContainerBoxParentData, S._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin); _inheritMany(S.ContainerBoxParentData, [B.MultiChildLayoutParentData, F.FlexParentData, R.ListBodyParentData, Q.TextParentData, K.StackParentData, N.WrapParentData, E._OverflowBarParentData, K.OverflowViewParentData]); _inherit(B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin); _inherit(B.RenderCustomMultiChildLayoutBox, B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(D.RenderEditable, D._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin); _inheritMany(D.RenderEditablePainter, [D._TextHighlightPainter, D._FloatingCursorPainter, D._CompositeRenderEditablePainter]); _inherit(T.Layer0, T._Layer_AbstractNode_DiagnosticableTreeMixin); _inheritMany(T.Layer0, [T.PictureLayer, T.PlatformViewLayer, T.PerformanceOverlayLayer, T.ContainerLayer0]); _inheritMany(T.ContainerLayer0, [T.OffsetLayer, T.ClipRectLayer, T.ClipRRectLayer, T.ClipPathLayer, T.OpacityLayer, T.PhysicalModelLayer, T.LeaderLayer, T.FollowerLayer, T.AnnotatedRegionLayer]); _inherit(T.TransformLayer, T.OffsetLayer); _inherit(A._MouseTrackerUpdateDetails, A.__MouseTrackerUpdateDetails_Object_Diagnosticable); _inherit(K.PaintingContext, Z.ClipContext); _inheritMany(K._SemanticsFragment, [K._ContainerSemanticsFragment, K._InterestingSemanticsFragment]); _inheritMany(K._InterestingSemanticsFragment, [K._RootSemanticsFragment, K._SwitchableSemanticsFragment, K._AbortingSemanticsFragment]); _inherit(Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin); _inherit(Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin, Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(Q.RenderParagraph, Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin); _inherit(G.PlatformViewRenderBox, G._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin); _inherit(E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin, E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin); _inherit(E.RenderAnimatedOpacity, E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin); _inheritMany(E._RenderCustomClip, [E.RenderClipRect, E.RenderClipRRect, E.RenderClipOval, E.RenderClipPath, E._RenderPhysicalModelBase]); _inheritMany(E._RenderPhysicalModelBase, [E.RenderPhysicalModel, E.RenderPhysicalShape]); _inheritMany(E.RenderProxyBoxWithHitTestBehavior, [E.RenderPointerListener, E.RenderSemanticsGestureHandler, T._RenderColoredBox]); _inherit(G.SliverGeometry, G._SliverGeometry_Object_Diagnosticable); _inheritMany(G.SliverLogicalParentData, [G._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin, F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin]); _inherit(G.SliverLogicalContainerParentData, G._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin); _inherit(G._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin, G.SliverPhysicalParentData); _inherit(G.SliverPhysicalContainerParentData, G._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin); _inheritMany(G.RenderSliver, [F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin, T._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin, U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin]); _inherit(F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers, F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin); _inherit(F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin, F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers); _inherit(F.RenderSliverMultiBoxAdaptor, F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin); _inheritMany(F.RenderSliverMultiBoxAdaptor, [X.RenderSliverFixedExtentBoxAdaptor, B.RenderSliverGrid, U.RenderSliverList]); _inherit(A.RenderSliverFillViewport, X.RenderSliverFixedExtentBoxAdaptor); _inherit(B.SliverGridRegularTileLayout, B.SliverGridLayout); _inherit(F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin, F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin); _inherit(F.SliverMultiBoxAdaptorParentData, F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin); _inherit(B.SliverGridParentData, F.SliverMultiBoxAdaptorParentData); _inherit(T.RenderSliverEdgeInsetsPadding, T._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin); _inheritMany(T.RenderSliverEdgeInsetsPadding, [T.RenderSliverPadding, A._RenderSliverFractionalPadding]); _inherit(U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers, U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin); _inherit(U.RenderSliverPersistentHeader, U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers); _inherit(U.RenderSliverPinnedPersistentHeader, U.RenderSliverPersistentHeader); _inherit(K._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, K._RenderStack_RenderBox_ContainerRenderObjectMixin); _inherit(K.RenderStack, K._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(K.RenderIndexedStack, K.RenderStack); _inherit(A.RenderView, A._RenderView_RenderObject_RenderObjectWithChildMixin); _inherit(Q.RenderViewportBase, Q._RenderViewportBase_RenderBox_ContainerRenderObjectMixin); _inheritMany(Q.RenderViewportBase, [Q.RenderViewport, Q.RenderShrinkWrappingViewport]); _inherit(N._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, N._RenderWrap_RenderBox_ContainerRenderObjectMixin); _inherit(N.RenderWrap, N._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(A.SemanticsData, A._SemanticsData_Object_Diagnosticable); _inherit(A.SemanticsNode, A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin); _inherit(A._SemanticsSortGroup, P.Comparable); _inherit(A.SemanticsSortKey, A._SemanticsSortKey_Object_Diagnosticable); _inherit(A.OrdinalSortKey, A.SemanticsSortKey); _inheritMany(E.SemanticsEvent, [E.AnnounceSemanticsEvent, E.TooltipSemanticsEvent, E.LongPressSemanticsEvent, E.TapSemanticEvent]); _inherit(Q.CachingAssetBundle, Q.AssetBundle); _inherit(Q.PlatformAssetBundle, Q.CachingAssetBundle); _inherit(F._AutofillScopeTextInputConfiguration, N.TextInputConfiguration); _inheritMany(Q.BinaryMessenger, [N._DefaultBinaryMessenger, D.Registrar]); _inherit(G.KeyboardKey, G._KeyboardKey_Object_Diagnosticable); _inheritMany(G.KeyboardKey, [G.LogicalKeyboardKey, G.PhysicalKeyboardKey]); _inheritMany(A.MouseCursorSession, [A._NoopMouseCursorSession, A._SystemMouseCursorSession]); _inherit(A.OptionalMethodChannel, A.MethodChannel); _inherit(B.RawKeyEvent, B._RawKeyEvent_Object_Diagnosticable); _inheritMany(B.RawKeyEvent, [B.RawKeyDownEvent, B.RawKeyUpEvent]); _inheritMany(B.RawKeyEventData, [Q.RawKeyEventDataFuchsia, B.RawKeyEventDataMacOs, A.RawKeyEventDataWeb]); _inherit(X.TextSelection, P.TextRange); _inheritMany(B.TextInputFormatter, [B.FilteringTextInputFormatter, B.LengthLimitingTextInputFormatter]); _inherit(U.Intent, U._Intent_Object_Diagnosticable); _inherit(U.Action, U._Action_Object_Diagnosticable); _inheritMany(U.Action, [U.ContextAction, U.CallbackAction, U.DoNothingAction, U.DismissAction, U.PrioritizedAction, U.RequestFocusAction, U.NextFocusAction, U.PreviousFocusAction, U.DirectionalFocusAction, F.ScrollAction, N.InsertTabAction]); _inherit(U.ActionDispatcher, U._ActionDispatcher_Object_Diagnosticable); _inheritMany(U.Intent, [U.ActivateIntent, U.ButtonActivateIntent, U.DismissIntent, U.PrioritizedIntents, U.NextFocusIntent, U.PreviousFocusIntent, U.DirectionalFocusIntent, F.ScrollIntent, M.DoNothingAndStopPropagationTextIntent, N.InsertTabIntent]); _inherit(U._AnimatedCrossFadeState, U.__AnimatedCrossFadeState_State_TickerProviderStateMixin); _inherit(G._AnimatedSwitcherState, G.__AnimatedSwitcherState_State_TickerProviderStateMixin); _inherit(S._WidgetsAppState, S.__WidgetsAppState_State_WidgetsBindingObserver); _inherit(S._MediaQueryFromWindowsState, S.__MediaQueryFromWindowsState_State_WidgetsBindingObserver); _inherit(B.StreamBuilder, B.StreamBuilderBase); _inherit(F.AutofillGroupState, F._AutofillGroupState_State_AutofillScopeMixin); _inheritMany(U.Notification0, [L.KeepAliveNotification, S._DraggableScrollableNotification_Notification_ViewportNotificationMixin, U.LayoutChangedNotification, L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin]); _inherit(T.Center, T.Align); _inheritMany(N.ParentDataWidget, [T.LayoutId, T.Positioned, T.Flexible, G.KeepAlive, S.TableCell]); _inherit(T._OffstageElement, N.SingleChildRenderObjectElement); _inherit(T.IndexedStack, T.Stack); _inherit(T.Expanded, T.Flexible); _inherit(N.RenderObjectToWidgetElement, N.RootRenderObjectElement); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding, N.BindingBase); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding); _inherit(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding); _inherit(N.WidgetsFlutterBinding, N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding); _inherit(E.DefaultTextEditingActions, U.Actions); _inherit(Y.TextEditingAction, U.ContextAction); _inheritMany(Y.TextEditingAction, [E._DoNothingAndStopPropagationTextAction, E._ExpandSelectionLeftByLineTextAction, E._ExpandSelectionRightByLineTextAction, E._ExpandSelectionToEndTextAction, E._ExpandSelectionToStartTextAction, E._ExtendSelectionDownTextAction, E._ExtendSelectionLeftByLineTextAction, E._ExtendSelectionLeftByWordAndStopAtReversalTextAction, E._ExtendSelectionLeftByWordTextAction, E._ExtendSelectionLeftTextAction, E._ExtendSelectionRightByLineTextAction, E._ExtendSelectionRightByWordAndStopAtReversalTextAction, E._ExtendSelectionRightByWordTextAction, E._ExtendSelectionRightTextAction, E._ExtendSelectionUpTextAction, E._MoveSelectionDownTextAction, E._MoveSelectionLeftTextAction, E._MoveSelectionRightTextAction, E._MoveSelectionUpTextAction, E._MoveSelectionLeftByLineTextAction, E._MoveSelectionLeftByWordTextAction, E._MoveSelectionRightByLineTextAction, E._MoveSelectionRightByWordTextAction, E._MoveSelectionToEndTextAction, E._MoveSelectionToStartTextAction]); _inherit(E.DefaultTextEditingShortcuts, X.Shortcuts); _inherit(S.DraggableScrollableNotification, S._DraggableScrollableNotification_Notification_ViewportNotificationMixin); _inherit(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver, D._EditableTextState_State_AutomaticKeepAliveClientMixin); _inherit(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin, D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver); _inherit(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate, D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin); _inherit(D.EditableTextState, D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate); _inherit(O._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier, O._FocusNode_Object_DiagnosticableTreeMixin); _inherit(O.FocusNode, O._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier); _inherit(O.FocusScopeNode, O.FocusNode); _inherit(O._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier, O._FocusManager_Object_DiagnosticableTreeMixin); _inherit(O.FocusManager, O._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier); _inherit(L.FocusScope, L.Focus); _inherit(L._FocusScopeState, L._FocusState); _inheritMany(S.InheritedNotifier, [L._FocusMarker, X._ShortcutsMarker]); _inherit(U.FocusTraversalPolicy, U._FocusTraversalPolicy_Object_Diagnosticable); _inherit(U._ReadingOrderSortData, U.__ReadingOrderSortData_Object_Diagnosticable); _inherit(U._ReadingOrderDirectionalGroupData, U.__ReadingOrderDirectionalGroupData_Object_Diagnosticable); _inherit(U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin, U.FocusTraversalPolicy); _inherit(U.ReadingOrderTraversalPolicy, U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin); _inherit(N._ElementDiagnosticableTreeNode, Y.DiagnosticableTreeNode); _inheritMany(N.ComponentElement, [N.StatelessElement, N.StatefulElement, N.ProxyElement]); _inheritMany(N.ProxyElement, [N.ParentDataElement, N.InheritedElement]); _inheritMany(D.GestureRecognizerFactory, [D.GestureRecognizerFactoryWithHandlers, X._AnyTapGestureRecognizerFactory]); _inheritMany(D.SemanticsGestureDelegate, [D._DefaultSemanticsGestureDelegate, X._ModalBarrierSemanticsDelegate]); _inheritMany(K.NavigatorObserver, [T.HeroController, T.RouteObserver]); _inherit(U._ImageState, U.__ImageState_State_WidgetsBindingObserver); _inherit(S._InheritedNotifierElement, N.InheritedElement); _inheritMany(A.ConstrainedLayoutBuilder, [A.LayoutBuilder, Y.ValueLayoutBuilder]); _inherit(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin); _inherit(A._RenderLayoutBuilder, A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder); _inherit(K.DefaultTransitionDelegate, K.TransitionDelegate); _inherit(K._RouteEntry, K.RouteTransitionRecord); _inheritMany(K._NavigatorObservation, [K._NavigatorPushObservation, K._NavigatorPopObservation, K._NavigatorRemoveObservation, K._NavigatorReplaceObservation]); _inherit(K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin, K._NavigatorState_State_TickerProviderStateMixin); _inherit(K.NavigatorState, K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin); _inheritMany(K._RestorationInformation, [K._NamedRestorationInformation, K._AnonymousRestorationInformation]); _inherit(E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin); _inherit(E._RenderOverflowBar, E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inherit(X.OverlayState, X._OverlayState_State_TickerProviderStateMixin); _inheritMany(N.MultiChildRenderObjectElement, [X._TheatreElement, Q._ViewportElement, K._OverflowViewElement]); _inherit(X._RenderTheatre, X.__RenderTheatre_RenderBox_ContainerRenderObjectMixin); _inherit(L._GlowingOverscrollIndicatorState, L.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin); _inherit(L.OverscrollIndicatorNotification, L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin); _inherit(M.FixedScrollMetrics, M._FixedScrollMetrics_Object_ScrollMetrics); _inherit(D.PageMetrics, M.FixedScrollMetrics); _inheritMany(L.ScrollPhysics, [D._ForceImplicitScrollPhysics, D.PageScrollPhysics, L.RangeMaintainingScrollPhysics, L.BouncingScrollPhysics, L.ClampingScrollPhysics, L.AlwaysScrollableScrollPhysics, L.NeverScrollableScrollPhysics]); _inherit(G._HtmlElementViewController, R.PlatformViewController); _inherit(Z.SliverReorderableListState, Z._SliverReorderableListState_State_TickerProviderStateMixin); _inherit(Z.ReorderableDelayedDragStartListener, Z.ReorderableDragStartListener); _inherit(Z._DragInfo, V.Drag); _inherit(K._RestorationScopeState, K.__RestorationScopeState_State_RestorationMixin); _inherit(U._RestorablePrimitiveValue, U._RestorablePrimitiveValueN); _inheritMany(U._RestorablePrimitiveValue, [U.RestorableNum, U.RestorableBool]); _inherit(U.RestorableChangeNotifier, U.RestorableListenable); _inherit(U.RestorableTextEditingController, U.RestorableChangeNotifier); _inherit(T._DismissModalAction, U.DismissAction); _inheritMany(M.ScrollActivity, [M.IdleScrollActivity, M.HoldScrollActivity, M.DragScrollActivity, M.BallisticScrollActivity, M.DrivenScrollActivity]); _inherit(G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin, U.LayoutChangedNotification); _inherit(G.ScrollNotification, G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin); _inheritMany(G.ScrollNotification, [G.ScrollStartNotification, G.ScrollUpdateNotification, G.OverscrollNotification, G.ScrollEndNotification, G.UserScrollNotification]); _inheritMany(B.ScrollView, [B.CustomScrollView, B.BoxScrollView]); _inheritMany(B.BoxScrollView, [B.ListView, B.GridView]); _inherit(F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin, F._ScrollableState_State_TickerProviderStateMixin); _inherit(F.ScrollableState, F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin); _inherit(E._ThumbPressGestureRecognizer, T.LongPressGestureRecognizer); _inheritMany(N.TapGestureRecognizer, [E._TrackTapGestureRecognizer, F._TransparentTapGestureRecognizer]); _inherit(X._LogicalKeySet_KeySet_Diagnosticable, X.KeySet); _inherit(X.LogicalKeySet, X._LogicalKeySet_KeySet_Diagnosticable); _inherit(X.ShortcutManager, X._ShortcutManager_ChangeNotifier_Diagnosticable); _inherit(E._RenderSingleChildViewport, E.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin); _inherit(G._SaltedValueKey, D.ValueKey); _inheritMany(G.SliverChildDelegate, [G.SliverChildBuilderDelegate, G.SliverChildListDelegate]); _inherit(G.SliverMultiBoxAdaptorWidget, G.SliverWithKeepAliveWidget); _inheritMany(G.SliverMultiBoxAdaptorWidget, [G.SliverList, G.SliverGrid, A._SliverFillViewportRenderObjectWidget]); _inherit(U._SliverPinnedPersistentHeader, U._SliverPersistentHeaderRenderObjectWidget); _inherit(U.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin, U.RenderSliverPinnedPersistentHeader); _inherit(U._RenderSliverPinnedPersistentHeaderForWidgets, U.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin); _inherit(S._TableSlot, S.__TableSlot_Object_Diagnosticable); _inherit(F._TextSelectionHandleOverlayState, F.__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin); _inherit(U._WidgetTicker, M.Ticker); _inherit(D._DefaultCacheManager_CacheManager_ImageCacheManager, Y.CacheManager); _inherit(D.DefaultCacheManager, D._DefaultCacheManager_CacheManager_ImageCacheManager); _inheritMany(V.FileResponse, [D.DownloadProgress, R.FileInfo]); _inherit(E.HttpFileService, E.FileService); _inherit(Q.HttpExceptionWithStatus, H.HttpException); _inheritMany(Y.GlobalCupertinoLocalizations, [S.CupertinoLocalizationAf, S.CupertinoLocalizationAm, S.CupertinoLocalizationAr, S.CupertinoLocalizationAs, S.CupertinoLocalizationAz, S.CupertinoLocalizationBe, S.CupertinoLocalizationBg, S.CupertinoLocalizationBn, S.CupertinoLocalizationBs, S.CupertinoLocalizationCa, S.CupertinoLocalizationCs, S.CupertinoLocalizationDa, S.CupertinoLocalizationDe, S.CupertinoLocalizationEl, S.CupertinoLocalizationEn, S.CupertinoLocalizationEs, S.CupertinoLocalizationEt, S.CupertinoLocalizationEu, S.CupertinoLocalizationFa, S.CupertinoLocalizationFi, S.CupertinoLocalizationFil, S.CupertinoLocalizationFr, S.CupertinoLocalizationGl, S.CupertinoLocalizationGsw, S.CupertinoLocalizationGu, S.CupertinoLocalizationHe, S.CupertinoLocalizationHi, S.CupertinoLocalizationHr, S.CupertinoLocalizationHu, S.CupertinoLocalizationHy, S.CupertinoLocalizationId, S.CupertinoLocalizationIs, S.CupertinoLocalizationIt, S.CupertinoLocalizationJa, S.CupertinoLocalizationKa, S.CupertinoLocalizationKk, S.CupertinoLocalizationKm, S.CupertinoLocalizationKn, S.CupertinoLocalizationKo, S.CupertinoLocalizationKy, S.CupertinoLocalizationLo, S.CupertinoLocalizationLt, S.CupertinoLocalizationLv, S.CupertinoLocalizationMk, S.CupertinoLocalizationMl, S.CupertinoLocalizationMn, S.CupertinoLocalizationMr, S.CupertinoLocalizationMs, S.CupertinoLocalizationMy, S.CupertinoLocalizationNb, S.CupertinoLocalizationNe, S.CupertinoLocalizationNl, S.CupertinoLocalizationNo, S.CupertinoLocalizationOr, S.CupertinoLocalizationPa, S.CupertinoLocalizationPl, S.CupertinoLocalizationPt, S.CupertinoLocalizationRo, S.CupertinoLocalizationRu, S.CupertinoLocalizationSi, S.CupertinoLocalizationSk, S.CupertinoLocalizationSl, S.CupertinoLocalizationSq, S.CupertinoLocalizationSr, S.CupertinoLocalizationSv, S.CupertinoLocalizationSw, S.CupertinoLocalizationTa, S.CupertinoLocalizationTe, S.CupertinoLocalizationTh, S.CupertinoLocalizationTl, S.CupertinoLocalizationTr, S.CupertinoLocalizationUk, S.CupertinoLocalizationUr, S.CupertinoLocalizationUz, S.CupertinoLocalizationVi, S.CupertinoLocalizationZh, S.CupertinoLocalizationZu]); _inherit(S.CupertinoLocalizationDeCh, S.CupertinoLocalizationDe); _inheritMany(S.CupertinoLocalizationEn, [S.CupertinoLocalizationEnAu, S.CupertinoLocalizationEnCa, S.CupertinoLocalizationEnGb, S.CupertinoLocalizationEnIe, S.CupertinoLocalizationEnIn, S.CupertinoLocalizationEnNz, S.CupertinoLocalizationEnSg, S.CupertinoLocalizationEnZa]); _inheritMany(S.CupertinoLocalizationEs, [S.CupertinoLocalizationEs419, S.CupertinoLocalizationEsAr, S.CupertinoLocalizationEsBo, S.CupertinoLocalizationEsCl, S.CupertinoLocalizationEsCo, S.CupertinoLocalizationEsCr, S.CupertinoLocalizationEsDo, S.CupertinoLocalizationEsEc, S.CupertinoLocalizationEsGt, S.CupertinoLocalizationEsHn, S.CupertinoLocalizationEsMx, S.CupertinoLocalizationEsNi, S.CupertinoLocalizationEsPa, S.CupertinoLocalizationEsPe, S.CupertinoLocalizationEsPr, S.CupertinoLocalizationEsPy, S.CupertinoLocalizationEsSv, S.CupertinoLocalizationEsUs, S.CupertinoLocalizationEsUy, S.CupertinoLocalizationEsVe]); _inherit(S.CupertinoLocalizationFrCa, S.CupertinoLocalizationFr); _inherit(S.CupertinoLocalizationPtPt, S.CupertinoLocalizationPt); _inheritMany(S.CupertinoLocalizationSr, [S.CupertinoLocalizationSrCyrl, S.CupertinoLocalizationSrLatn]); _inheritMany(S.CupertinoLocalizationZh, [S.CupertinoLocalizationZhHans, S.CupertinoLocalizationZhHant]); _inheritMany(S.CupertinoLocalizationZhHant, [S.CupertinoLocalizationZhHantHk, S.CupertinoLocalizationZhHantTw]); _inheritMany(U.GlobalMaterialLocalizations, [Y.MaterialLocalizationAf, Y.MaterialLocalizationAm, Y.MaterialLocalizationAr, Y.MaterialLocalizationAs, Y.MaterialLocalizationAz, Y.MaterialLocalizationBe, Y.MaterialLocalizationBg, Y.MaterialLocalizationBn, Y.MaterialLocalizationBs, Y.MaterialLocalizationCa, Y.MaterialLocalizationCs, Y.MaterialLocalizationDa, Y.MaterialLocalizationDe, Y.MaterialLocalizationEl, Y.MaterialLocalizationEn, Y.MaterialLocalizationEs, Y.MaterialLocalizationEt, Y.MaterialLocalizationEu, Y.MaterialLocalizationFa, Y.MaterialLocalizationFi, Y.MaterialLocalizationFil, Y.MaterialLocalizationFr, Y.MaterialLocalizationGl, Y.MaterialLocalizationGsw, Y.MaterialLocalizationGu, Y.MaterialLocalizationHe, Y.MaterialLocalizationHi, Y.MaterialLocalizationHr, Y.MaterialLocalizationHu, Y.MaterialLocalizationHy, Y.MaterialLocalizationId, Y.MaterialLocalizationIs, Y.MaterialLocalizationIt, Y.MaterialLocalizationJa, Y.MaterialLocalizationKa, Y.MaterialLocalizationKk, Y.MaterialLocalizationKm, Y.MaterialLocalizationKn, Y.MaterialLocalizationKo, Y.MaterialLocalizationKy, Y.MaterialLocalizationLo, Y.MaterialLocalizationLt, Y.MaterialLocalizationLv, Y.MaterialLocalizationMk, Y.MaterialLocalizationMl, Y.MaterialLocalizationMn, Y.MaterialLocalizationMr, Y.MaterialLocalizationMs, Y.MaterialLocalizationMy, Y.MaterialLocalizationNb, Y.MaterialLocalizationNe, Y.MaterialLocalizationNl, Y.MaterialLocalizationNo, Y.MaterialLocalizationOr, Y.MaterialLocalizationPa, Y.MaterialLocalizationPl, Y.MaterialLocalizationPs, Y.MaterialLocalizationPt, Y.MaterialLocalizationRo, Y.MaterialLocalizationRu, Y.MaterialLocalizationSi, Y.MaterialLocalizationSk, Y.MaterialLocalizationSl, Y.MaterialLocalizationSq, Y.MaterialLocalizationSr, Y.MaterialLocalizationSv, Y.MaterialLocalizationSw, Y.MaterialLocalizationTa, Y.MaterialLocalizationTe, Y.MaterialLocalizationTh, Y.MaterialLocalizationTl, Y.MaterialLocalizationTr, Y.MaterialLocalizationUk, Y.MaterialLocalizationUr, Y.MaterialLocalizationUz, Y.MaterialLocalizationVi, Y.MaterialLocalizationZh, Y.MaterialLocalizationZu]); _inherit(Y.MaterialLocalizationDeCh, Y.MaterialLocalizationDe); _inheritMany(Y.MaterialLocalizationEn, [Y.MaterialLocalizationEnAu, Y.MaterialLocalizationEnCa, Y.MaterialLocalizationEnGb, Y.MaterialLocalizationEnIe, Y.MaterialLocalizationEnIn, Y.MaterialLocalizationEnNz, Y.MaterialLocalizationEnSg, Y.MaterialLocalizationEnZa]); _inheritMany(Y.MaterialLocalizationEs, [Y.MaterialLocalizationEs419, Y.MaterialLocalizationEsAr, Y.MaterialLocalizationEsBo, Y.MaterialLocalizationEsCl, Y.MaterialLocalizationEsCo, Y.MaterialLocalizationEsCr, Y.MaterialLocalizationEsDo, Y.MaterialLocalizationEsEc, Y.MaterialLocalizationEsGt, Y.MaterialLocalizationEsHn, Y.MaterialLocalizationEsMx, Y.MaterialLocalizationEsNi, Y.MaterialLocalizationEsPa, Y.MaterialLocalizationEsPe, Y.MaterialLocalizationEsPr, Y.MaterialLocalizationEsPy, Y.MaterialLocalizationEsSv, Y.MaterialLocalizationEsUs, Y.MaterialLocalizationEsUy, Y.MaterialLocalizationEsVe]); _inherit(Y.MaterialLocalizationFrCa, Y.MaterialLocalizationFr); _inherit(Y.MaterialLocalizationPtPt, Y.MaterialLocalizationPt); _inheritMany(Y.MaterialLocalizationSr, [Y.MaterialLocalizationSrCyrl, Y.MaterialLocalizationSrLatn]); _inheritMany(Y.MaterialLocalizationZh, [Y.MaterialLocalizationZhHans, Y.MaterialLocalizationZhHant]); _inheritMany(Y.MaterialLocalizationZhHant, [Y.MaterialLocalizationZhHantHk, Y.MaterialLocalizationZhHantTw]); _inherit(A.SlideActionListDelegate, A.SlideActionDelegate); _inherit(A._SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin, A._SlidableState_State_TickerProviderStateMixin); _inherit(A.SlidableState, A._SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin); _inherit(R.IconSlideAction, R.ClosableSlideAction); _inherit(M._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver, M._StyledToastWidgetState_State_TickerProviderStateMixin); _inherit(M.StyledToastWidgetState, M._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver); _inherit(L._TypeAheadFieldState, L.__TypeAheadFieldState_State_WidgetsBindingObserver); _inherit(L._SuggestionsListState, L.__SuggestionsListState_State_SingleTickerProviderStateMixin); _inherit(D.PluginRegistry, D.Registrar); _inheritMany(X.GoogleSignInPlatform, [O.MethodChannelGoogleSignIn, M.GoogleSignInPlugin]); _inherit(O.BrowserClient, E.BaseClient); _inheritMany(P.StreamView, [Z.ByteStream, F.Subject]); _inheritMany(G.BaseRequest, [D.MultipartRequest, O.Request]); _inheritMany(T.BaseResponse, [U.Response, X.StreamedResponse]); _inherit(Z.CaseInsensitiveMap, M.CanonicalizedMap); _inheritMany(R.ImagePickerPlatform, [V.ImagePickerPlugin, L.MethodChannelImagePicker]); _inheritMany(A._DateFormatField, [A._DateFormatLiteralField, A._DateFormatQuotedField, A._DateFormatPatternField]); _inherit(O._$AccountEntity, O.AccountEntity); _inherit(T._ClientEntity_Object_BaseEntity_SelectableEntity, T._ClientEntity_Object_BaseEntity); _inherit(T.ClientEntity, T._ClientEntity_Object_BaseEntity_SelectableEntity); _inherit(T._ContactEntity_Object_BaseEntity_SelectableEntity, T._ContactEntity_Object_BaseEntity); _inherit(T.ContactEntity, T._ContactEntity_Object_BaseEntity_SelectableEntity); _inherit(T._$ClientListResponse, T.ClientListResponse); _inherit(T._$ClientItemResponse, T.ClientItemResponse); _inherit(T._$ClientEntity, T.ClientEntity); _inherit(T._$ContactEntity, T.ContactEntity); _inherit(O._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity, O._CompanyGatewayEntity_Object_BaseEntity); _inherit(O.CompanyGatewayEntity, O._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity); _inherit(O._$CompanyGatewayListResponse, O.CompanyGatewayListResponse); _inherit(O._$CompanyGatewayItemResponse, O.CompanyGatewayItemResponse); _inherit(O._$CompanyGatewayEntity, O.CompanyGatewayEntity); _inherit(O._$FeesAndLimitsSettings, O.FeesAndLimitsSettings); _inherit(A.CompanyEntity, A._CompanyEntity_Object_BaseEntity); _inherit(A.GatewayEntity, A._GatewayEntity_Object_SelectableEntity); _inherit(A._$CompanyEntity, A.CompanyEntity); _inherit(A._$GatewayEntity, A.GatewayEntity); _inherit(A._$GatewayOptionsEntity, A.GatewayOptionsEntity); _inherit(A._$UserCompanyEntity, A.UserCompanyEntity); _inherit(A._$UserSettingsEntity, A.UserSettingsEntity); _inherit(A._$ReportSettingsEntity, A.ReportSettingsEntity); _inherit(A._$CompanyItemResponse, A.CompanyItemResponse); _inherit(A._$RegistrationFieldEntity, A.RegistrationFieldEntity); _inherit(D._$CreditListResponse, D.CreditListResponse); _inherit(D._$CreditItemResponse, D.CreditItemResponse); _inheritMany(Y.EnumClass, [F.DateRange, F.DateRangeComparison, T.EntityType, T.EntityState, T.EmailTemplate, T.UserPermission, B.ImportType, D.EntityAction, X.AppLayout, X.ModuleLayout, X.AppSidebar, X.AppSidebarMode]); _inherit(D.DesignEntity, D._DesignEntity_Object_BaseEntity); _inherit(D._$DesignListResponse, D.DesignListResponse); _inherit(D._$DesignItemResponse, D.DesignItemResponse); _inherit(D._$DesignPreviewRequest, D.DesignPreviewRequest); _inherit(D._$DesignEntity, D.DesignEntity); _inherit(D._DocumentEntity_Object_BaseEntity_SelectableEntity, D._DocumentEntity_Object_BaseEntity); _inherit(D.DocumentEntity, D._DocumentEntity_Object_BaseEntity_SelectableEntity); _inherit(D._$DocumentListResponse, D.DocumentListResponse); _inherit(D._$DocumentItemResponse, D.DocumentItemResponse); _inherit(D._$DocumentEntity, D.DocumentEntity); _inherit(T._$LoginResponse, T.LoginResponse); _inherit(T._$ActivityEntity, T.ActivityEntity); _inherit(T._$LedgerEntity, T.LedgerEntity); _inherit(R._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity, R._ExpenseCategoryEntity_Object_BaseEntity); _inherit(R.ExpenseCategoryEntity, R._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity); _inherit(R._$ExpenseCategoryListResponse, R.ExpenseCategoryListResponse); _inherit(R._$ExpenseCategoryItemResponse, R.ExpenseCategoryItemResponse); _inherit(R._$ExpenseCategoryEntity, R.ExpenseCategoryEntity); _inherit(M._ExpenseEntity_Object_BaseEntity_SelectableEntity, M._ExpenseEntity_Object_BaseEntity); _inherit(M._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, M._ExpenseEntity_Object_BaseEntity_SelectableEntity); _inherit(M.ExpenseEntity, M._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(M._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity, M._ExpenseStatusEntity_Object_EntityStatus); _inherit(M.ExpenseStatusEntity, M._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity); _inherit(M._$ExpenseListResponse, M.ExpenseListResponse); _inherit(M._$ExpenseItemResponse, M.ExpenseItemResponse); _inherit(M._$ExpenseEntity, M.ExpenseEntity); _inherit(M._$ExpenseScheduleEntity, M.ExpenseScheduleEntity); _inherit(M._$ExpenseStatusEntity, M.ExpenseStatusEntity); _inherit(N._GatewayTokenEntity_Object_BaseEntity_SelectableEntity, N._GatewayTokenEntity_Object_BaseEntity); _inherit(N.GatewayTokenEntity, N._GatewayTokenEntity_Object_BaseEntity_SelectableEntity); _inherit(N._$GatewayTokenListResponse, N.GatewayTokenListResponse); _inherit(N._$GatewayTokenItemResponse, N.GatewayTokenItemResponse); _inherit(N._$GatewayTokenEntity, N.GatewayTokenEntity); _inherit(N._$GatewayTokenMetaEntity, N.GatewayTokenMetaEntity); _inherit(Q._GroupEntity_Object_BaseEntity_SelectableEntity, Q._GroupEntity_Object_BaseEntity); _inherit(Q.GroupEntity, Q._GroupEntity_Object_BaseEntity_SelectableEntity); _inherit(Q._$GroupListResponse, Q.GroupListResponse); _inherit(Q._$GroupItemResponse, Q.GroupItemResponse); _inherit(Q._$GroupEntity, Q.GroupEntity); _inherit(U._$HealthCheckResponse, U.HealthCheckResponse); _inherit(U._$HealthCheckPHPResponse, U.HealthCheckPHPResponse); _inherit(B._$PreImportResponse, B.PreImportResponse); _inherit(B._$PreImportResponseEntityDetails, B.PreImportResponseEntityDetails); _inherit(B._$ImportRequest, B.ImportRequest); _inherit(B._$ImportRequestMapping, B.ImportRequestMapping); _inherit(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity, Q._InvoiceEntity_Object_BaseEntity); _inherit(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal, Q._InvoiceEntity_Object_BaseEntity_SelectableEntity); _inherit(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient, Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal); _inherit(Q.InvoiceEntity, Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient); _inherit(Q._InvitationEntity_Object_BaseEntity_SelectableEntity, Q._InvitationEntity_Object_BaseEntity); _inherit(Q.InvitationEntity, Q._InvitationEntity_Object_BaseEntity_SelectableEntity); _inherit(Q._$InvoiceListResponse, Q.InvoiceListResponse); _inherit(Q._$InvoiceItemResponse, Q.InvoiceItemResponse); _inherit(Q._$InvoiceEntity, Q.InvoiceEntity); _inherit(Q._$InvoiceItemEntity, Q.InvoiceItemEntity); _inherit(Q._$InvitationEntity, Q.InvitationEntity); _inherit(Q._$InvoiceScheduleEntity, Q.InvoiceScheduleEntity); _inherit(Q._$InvoiceHistoryEntity, Q.InvoiceHistoryEntity); _inherit(F._PaymentEntity_Object_BaseEntity_SelectableEntity, F._PaymentEntity_Object_BaseEntity); _inherit(F._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, F._PaymentEntity_Object_BaseEntity_SelectableEntity); _inherit(F.PaymentEntity, F._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(F.PaymentableEntity, F._PaymentableEntity_Object_SelectableEntity); _inherit(F._$PaymentListResponse, F.PaymentListResponse); _inherit(F._$PaymentItemResponse, F.PaymentItemResponse); _inherit(F._$PaymentEntity, F.PaymentEntity); _inherit(F._$PaymentableEntity, F.PaymentableEntity); _inherit(X._PaymentTermEntity_Object_BaseEntity_SelectableEntity, X._PaymentTermEntity_Object_BaseEntity); _inherit(X.PaymentTermEntity, X._PaymentTermEntity_Object_BaseEntity_SelectableEntity); _inherit(X._$PaymentTermListResponse, X.PaymentTermListResponse); _inherit(X._$PaymentTermItemResponse, X.PaymentTermItemResponse); _inherit(X._$PaymentTermEntity, X.PaymentTermEntity); _inherit(A._ProductEntity_Object_BaseEntity_SelectableEntity, A._ProductEntity_Object_BaseEntity); _inherit(A.ProductEntity, A._ProductEntity_Object_BaseEntity_SelectableEntity); _inherit(A._$ProductListResponse, A.ProductListResponse); _inherit(A._$ProductItemResponse, A.ProductItemResponse); _inherit(A._$ProductEntity, A.ProductEntity); _inherit(A._ProjectEntity_Object_BaseEntity_SelectableEntity, A._ProjectEntity_Object_BaseEntity); _inherit(A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, A._ProjectEntity_Object_BaseEntity_SelectableEntity); _inherit(A.ProjectEntity, A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(A._$ProjectListResponse, A.ProjectListResponse); _inherit(A._$ProjectItemResponse, A.ProjectItemResponse); _inherit(A._$ProjectEntity, A.ProjectEntity); _inherit(G._$SettingsEntity, G.SettingsEntity); _inherit(L.CountryEntity, L._CountryEntity_Object_SelectableEntity); _inherit(L._$CountryListResponse, L.CountryListResponse); _inherit(L._$CountryItemResponse, L.CountryItemResponse); _inherit(L._$CountryEntity, L.CountryEntity); _inherit(O.CurrencyEntity, O._CurrencyEntity_Object_SelectableEntity); _inherit(O._$CurrencyListResponse, O.CurrencyListResponse); _inherit(O._$CurrencyItemResponse, O.CurrencyItemResponse); _inherit(O._$CurrencyEntity, O.CurrencyEntity); _inherit(M.DateFormatEntity, M._DateFormatEntity_Object_SelectableEntity); _inherit(M._$DateFormatListResponse, M.DateFormatListResponse); _inherit(M._$DateFormatItemResponse, M.DateFormatItemResponse); _inherit(M._$DateFormatEntity, M.DateFormatEntity); _inherit(F._$DatetimeFormatListResponse, F.DatetimeFormatListResponse); _inherit(F._$DatetimeFormatItemResponse, F.DatetimeFormatItemResponse); _inherit(F._$DatetimeFormatEntity, F.DatetimeFormatEntity); _inherit(K.FontEntity, K._FontEntity_Object_SelectableEntity); _inherit(K._$FontEntity, K.FontEntity); _inherit(O.IndustryEntity, O._IndustryEntity_Object_SelectableEntity); _inherit(O._$IndustryListResponse, O.IndustryListResponse); _inherit(O._$IndustryItemResponse, O.IndustryItemResponse); _inherit(O._$IndustryEntity, O.IndustryEntity); _inherit(F.InvoiceStatusEntity, F._InvoiceStatusEntity_Object_EntityStatus); _inherit(F._$InvoiceStatusEntity, F.InvoiceStatusEntity); _inherit(A.LanguageEntity, A._LanguageEntity_Object_SelectableEntity); _inherit(A._$LanguageListResponse, A.LanguageListResponse); _inherit(A._$LanguageItemResponse, A.LanguageItemResponse); _inherit(A._$LanguageEntity, A.LanguageEntity); _inherit(S.PaymentTypeEntity, S._PaymentTypeEntity_Object_SelectableEntity); _inherit(S._$PaymentTypeListResponse, S.PaymentTypeListResponse); _inherit(S._$PaymentTypeItemResponse, S.PaymentTypeItemResponse); _inherit(S._$PaymentTypeEntity, S.PaymentTypeEntity); _inherit(D.SizeEntity, D._SizeEntity_Object_SelectableEntity); _inherit(D._$SizeListResponse, D.SizeListResponse); _inherit(D._$SizeItemResponse, D.SizeItemResponse); _inherit(D._$SizeEntity, D.SizeEntity); _inherit(S._$StaticDataItemResponse, S.StaticDataItemResponse); _inherit(S._$StaticDataEntity, S.StaticDataEntity); _inherit(S._$TemplateEntity, S.TemplateEntity); _inherit(U.TimezoneEntity, U._TimezoneEntity_Object_SelectableEntity); _inherit(U._$TimezoneListResponse, U.TimezoneListResponse); _inherit(U._$TimezoneItemResponse, U.TimezoneItemResponse); _inherit(U._$TimezoneEntity, U.TimezoneEntity); _inherit(X.SubscriptionEntity, X._SubscriptionEntity_Object_BaseEntity); _inherit(X._$SubscriptionListResponse, X.SubscriptionListResponse); _inherit(X._$SubscriptionItemResponse, X.SubscriptionItemResponse); _inherit(X._$SubscriptionEntity, X.SubscriptionEntity); _inherit(X._$WebhookConfigurationEntity, X.WebhookConfigurationEntity); _inherit(F._$SystemLogEntity, F.SystemLogEntity); _inherit(D._TaskEntity_Object_BaseEntity_SelectableEntity, D._TaskEntity_Object_BaseEntity); _inherit(D._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, D._TaskEntity_Object_BaseEntity_SelectableEntity); _inherit(D.TaskEntity, D._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient); _inherit(D._$TaskListResponse, D.TaskListResponse); _inherit(D._$TaskItemResponse, D.TaskItemResponse); _inherit(D._$TaskTime, D.TaskTime); _inherit(D._$TaskEntity, D.TaskEntity); _inherit(S._TaskStatusEntity_Object_BaseEntity_SelectableEntity, S._TaskStatusEntity_Object_BaseEntity); _inherit(S._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus, S._TaskStatusEntity_Object_BaseEntity_SelectableEntity); _inherit(S.TaskStatusEntity, S._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus); _inherit(S._$TaskStatusListResponse, S.TaskStatusListResponse); _inherit(S._$TaskStatusItemResponse, S.TaskStatusItemResponse); _inherit(S._$TaskStatusEntity, S.TaskStatusEntity); _inherit(T._TaxRateEntity_Object_BaseEntity_SelectableEntity, T._TaxRateEntity_Object_BaseEntity); _inherit(T.TaxRateEntity, T._TaxRateEntity_Object_BaseEntity_SelectableEntity); _inherit(T._$TaxRateListResponse, T.TaxRateListResponse); _inherit(T._$TaxRateItemResponse, T.TaxRateItemResponse); _inherit(T._$TaxRateEntity, T.TaxRateEntity); _inherit(D._TokenEntity_Object_BaseEntity_SelectableEntity, D._TokenEntity_Object_BaseEntity); _inherit(D.TokenEntity, D._TokenEntity_Object_BaseEntity_SelectableEntity); _inherit(D._$TokenListResponse, D.TokenListResponse); _inherit(D._$TokenItemResponse, D.TokenItemResponse); _inherit(D._$TokenEntity, D.TokenEntity); _inherit(B._UserEntity_Object_BaseEntity_SelectableEntity, B._UserEntity_Object_BaseEntity); _inherit(B.UserEntity, B._UserEntity_Object_BaseEntity_SelectableEntity); _inherit(B._$UserListResponse, B.UserListResponse); _inherit(B._$UserItemResponse, B.UserItemResponse); _inherit(B._$UserTwoFactorResponse, B.UserTwoFactorResponse); _inherit(B._$UserTwoFactorData, B.UserTwoFactorData); _inherit(B._$UserCompanyItemResponse, B.UserCompanyItemResponse); _inherit(B._$UserEntity, B.UserEntity); _inherit(B._VendorEntity_Object_BaseEntity_SelectableEntity, B._VendorEntity_Object_BaseEntity); _inherit(B.VendorEntity, B._VendorEntity_Object_BaseEntity_SelectableEntity); _inherit(B.VendorContactEntity, B._VendorContactEntity_Object_BaseEntity); _inherit(B._$VendorListResponse, B.VendorListResponse); _inherit(B._$VendorItemResponse, B.VendorItemResponse); _inherit(B._$VendorEntity, B.VendorEntity); _inherit(B._$VendorContactEntity, B.VendorContactEntity); _inherit(E._WebhookEntity_Object_BaseEntity_SelectableEntity, E._WebhookEntity_Object_BaseEntity); _inherit(E.WebhookEntity, E._WebhookEntity_Object_BaseEntity_SelectableEntity); _inherit(E._$WebhookListResponse, E.WebhookListResponse); _inherit(E._$WebhookItemResponse, E.WebhookItemResponse); _inherit(E._$WebhookEntity, E.WebhookEntity); _inherit(T._$AppState, T.AppState); _inherit(Z._$AuthState, Z.AuthState); _inherit(F.ClientUIState, F._ClientUIState_Object_EntityUIState); _inherit(F._$ClientState, F.ClientState); _inherit(F._$ClientUIState, F.ClientUIState); _inherit(B._$UserCompanyState, B.UserCompanyState); _inherit(B._$SettingsUIState, B.SettingsUIState); _inherit(U.CompanyGatewayUIState, U._CompanyGatewayUIState_Object_EntityUIState); _inherit(U._$CompanyGatewayState, U.CompanyGatewayState); _inherit(U._$CompanyGatewayUIState, U.CompanyGatewayUIState); _inherit(G.CreditUIState, G._CreditUIState_Object_EntityUIState); _inherit(G._$CreditState, G.CreditState); _inherit(G._$CreditUIState, G.CreditUIState); _inherit(Y._$DashboardUIState, Y.DashboardUIState); _inherit(Y._$DashboardUISettings, Y.DashboardUISettings); _inherit(Y.DesignUIState, Y._DesignUIState_Object_EntityUIState); _inherit(Y._$DesignState, Y.DesignState); _inherit(Y._$DesignUIState, Y.DesignUIState); _inherit(Q.DocumentUIState, Q._DocumentUIState_Object_EntityUIState); _inherit(Q._$DocumentState, Q.DocumentState); _inherit(Q._$DocumentUIState, Q.DocumentUIState); _inherit(R.ExpenseUIState, R._ExpenseUIState_Object_EntityUIState); _inherit(R._$ExpenseState, R.ExpenseState); _inherit(R._$ExpenseUIState, R.ExpenseUIState); _inherit(Q.ExpenseCategoryUIState, Q._ExpenseCategoryUIState_Object_EntityUIState); _inherit(Q._$ExpenseCategoryState, Q.ExpenseCategoryState); _inherit(Q._$ExpenseCategoryUIState, Q.ExpenseCategoryUIState); _inherit(E.GroupUIState, E._GroupUIState_Object_EntityUIState); _inherit(E._$GroupState, E.GroupState); _inherit(E._$GroupUIState, E.GroupUIState); _inherit(B.InvoiceUIState, B._InvoiceUIState_Object_EntityUIState); _inherit(B._$InvoiceState, B.InvoiceState); _inherit(B._$InvoiceUIState, B.InvoiceUIState); _inherit(L.PaymentUIState, L._PaymentUIState_Object_EntityUIState); _inherit(L._$PaymentState, L.PaymentState); _inherit(L._$PaymentUIState, L.PaymentUIState); _inherit(N.PaymentTermUIState, N._PaymentTermUIState_Object_EntityUIState); _inherit(N._$PaymentTermState, N.PaymentTermState); _inherit(N._$PaymentTermUIState, N.PaymentTermUIState); _inherit(Y.ProductUIState, Y._ProductUIState_Object_EntityUIState); _inherit(Y._$ProductState, Y.ProductState); _inherit(Y._$ProductUIState, Y.ProductUIState); _inherit(D.ProjectUIState, D._ProjectUIState_Object_EntityUIState); _inherit(D._$ProjectState, D.ProjectState); _inherit(D._$ProjectUIState, D.ProjectUIState); _inherit(G.QuoteUIState, G._QuoteUIState_Object_EntityUIState); _inherit(G._$QuoteState, G.QuoteState); _inherit(G._$QuoteUIState, G.QuoteUIState); _inherit(K.RecurringExpenseUIState, K._RecurringExpenseUIState_Object_EntityUIState); _inherit(K._$RecurringExpenseState, K.RecurringExpenseState); _inherit(K._$RecurringExpenseUIState, K.RecurringExpenseUIState); _inherit(Q.RecurringInvoiceUIState, Q._RecurringInvoiceUIState_Object_EntityUIState); _inherit(Q._$RecurringInvoiceState, Q.RecurringInvoiceState); _inherit(Q._$RecurringInvoiceUIState, Q.RecurringInvoiceUIState); _inherit(G._$ReportsUIState, G.ReportsUIState); _inherit(B._$StaticState, B.StaticState); _inherit(M.SubscriptionUIState, M._SubscriptionUIState_Object_EntityUIState); _inherit(M._$SubscriptionState, M.SubscriptionState); _inherit(M._$SubscriptionUIState, M.SubscriptionUIState); _inherit(M.TaskUIState, M._TaskUIState_Object_EntityUIState); _inherit(M._$TaskState, M.TaskState); _inherit(M._$TaskUIState, M.TaskUIState); _inherit(L.TaskStatusUIState, L._TaskStatusUIState_Object_EntityUIState); _inherit(L._$TaskStatusState, L.TaskStatusState); _inherit(L._$TaskStatusUIState, L.TaskStatusUIState); _inherit(Q.TaxRateUIState, Q._TaxRateUIState_Object_EntityUIState); _inherit(Q._$TaxRateState, Q.TaxRateState); _inherit(Q._$TaxRateUIState, Q.TaxRateUIState); _inherit(N.TokenUIState, N._TokenUIState_Object_EntityUIState); _inherit(N._$TokenState, N.TokenState); _inherit(N._$TokenUIState, N.TokenUIState); _inherit(Q._$ListUIState, Q.ListUIState); _inherit(X._$PrefState, X.PrefState); _inherit(X._$PrefStateSortField, X.PrefStateSortField); _inherit(X._$CompanyPrefState, X.CompanyPrefState); _inherit(X._$HistoryRecord, X.HistoryRecord); _inherit(U._$UIState, U.UIState); _inherit(Q.UserUIState, Q._UserUIState_Object_EntityUIState); _inherit(Q._$UserState, Q.UserState); _inherit(Q._$UserUIState, Q.UserUIState); _inherit(Y.VendorUIState, Y._VendorUIState_Object_EntityUIState); _inherit(Y._$VendorState, Y.VendorState); _inherit(Y._$VendorUIState, Y.VendorUIState); _inherit(V.WebhookUIState, V._WebhookUIState_Object_EntityUIState); _inherit(V._$WebhookState, V.WebhookState); _inherit(V._$WebhookUIState, V.WebhookUIState); _inherit(E._InvoiceEmailViewState, E.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin); _inherit(Z.LinkTextSpan, Q.TextSpan); _inherit(L._SortArrowState0, L.__SortArrowState_State_TickerProviderStateMixin0); _inherit(D.EntityDataTableSource, K.AppDataTableSource); _inherit(K._VariablesHelpState, K.__VariablesHelpState_State_SingleTickerProviderStateMixin); _inheritMany(Q.EntityPresenter, [V.ClientPresenter, K.CreditPresenter, S.ExpensePresenter, F.ExpenseCategoryPresenter, Q.InvoicePresenter, Q.PaymentPresenter, F.ProductPresenter, N.ProjectPresenter, B.QuotePresenter, D.RecurringExpensePresenter, G.RecurringInvoicePresenter, R.SubscriptionPresenter, T.TaskPresenter, N.TaskStatusPresenter, F.TokenPresenter, N.VendorPresenter, B.WebhookPresenter]); _inherit(M._ClientEditState, M.__ClientEditState_State_SingleTickerProviderStateMixin); _inherit(G._ClientViewState, G.__ClientViewState_State_SingleTickerProviderStateMixin); _inherit(V._CompanyGatewayEditState, V.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin); _inherit(G._CompanyGatewayViewState, G.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin); _inheritMany(M.EmailEntityVM, [S.EmailCreditVM, M.EmailInvoiceVM, B.EmailQuoteVM]); _inheritMany(T.EntityListVM, [U.CreditListVM, T.InvoiceListVM, U.QuoteListVM]); _inheritMany(O.EntityPdfVM, [U.CreditPdfVM, O.InvoicePdfVM, V.QuotePdfVM, X.RecurringInvoicePdfVM]); _inherit(M._CreditEditState, M.__CreditEditState_State_SingleTickerProviderStateMixin); _inheritMany(L.EntityEditDetailsVM, [T.CreditEditDetailsVM, L.InvoiceEditDetailsVM, E.QuoteEditDetailsVM, F.RecurringInvoiceEditDetailsVM]); _inheritMany(O.EntityEditItemsVM, [R.CreditEditItemsVM, O.InvoiceEditItemsVM, T.QuoteEditItemsVM, R.RecurringInvoiceEditItemsVM]); _inheritMany(E.EntityEditNotesVM, [G.CreditEditNotesVM, E.InvoiceEditNotesVM, V.QuoteEditNotesVM, Q.RecurringInvoiceEditNotesVM]); _inheritMany(B.EntityEditPDFVM, [U.CreditEditPDFVM, B.InvoiceEditPDFVM, D.QuoteEditPDFVM, U.RecurringInvoiceEditPDFVM]); _inheritMany(M.AbstractInvoiceEditVM, [X.CreditEditVM, M.InvoiceEditVM, B.QuoteEditVM, Q.RecurringInvoiceEditVM]); _inheritMany(F.AbstractInvoiceViewVM, [M.CreditViewVM, F.InvoiceViewVM, O.QuoteViewVM, O.RecurringInvoiceViewVM]); _inherit(F._DashboardScreenState, F.__DashboardScreenState_State_TickerProviderStateMixin); _inherit(N._DesignEditState, N.__DesignEditState_State_SingleTickerProviderStateMixin); _inherit(D._ExpenseEditState, D.__ExpenseEditState_State_SingleTickerProviderStateMixin); _inheritMany(O.AbstractExpenseEditVM, [O.ExpenseEditVM, M.RecurringExpenseEditVM]); _inherit(U._ExpenseViewState, U.__ExpenseViewState_State_SingleTickerProviderStateMixin); _inheritMany(U.AbstractExpenseViewVM, [U.ExpenseViewVM, Z.RecurringExpenseViewVM]); _inherit(E._GroupViewState, E.__GroupViewState_State_SingleTickerProviderStateMixin); _inherit(F._InvoiceEditState, F.__InvoiceEditState_State_SingleTickerProviderStateMixin); _inherit(X.InvoiceEditContactsVM, X.EntityEditContactsVM); _inherit(S.InvoiceEditDesktopState, S._InvoiceEditDesktopState_State_TickerProviderStateMixin); _inherit(D._InvoiceItemSelectorState, D.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin); _inherit(E._InvoiceViewState, E.__InvoiceViewState_State_SingleTickerProviderStateMixin); _inherit(Z._ProductViewState, Z.__ProductViewState_State_SingleTickerProviderStateMixin); _inherit(M._ProjectViewState, M.__ProjectViewState_State_SingleTickerProviderStateMixin); _inherit(B._QuoteEditState, B.__QuoteEditState_State_SingleTickerProviderStateMixin); _inherit(O._RecurringInvoiceEditState, O.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin); _inherit(A.ReportDataTableSource, D.DataTableSource); _inheritMany(A.ReportElement, [A.ReportStringValue, A.ReportEntityTypeValue, A.ReportAgeValue, A.ReportDurationValue, A.ReportIntValue, A.ReportNumberValue, A.ReportBoolValue]); _inherit(O._AccountManagementState, O.__AccountManagementState_State_SingleTickerProviderStateMixin); _inherit(S._ClientPortalState, S.__ClientPortalState_State_SingleTickerProviderStateMixin); _inherit(A._CompanyDetailsState, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin); _inherit(X._CreditCardsAndBanksState, X.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin); _inherit(S._CustomFieldsState, S.__CustomFieldsState_State_SingleTickerProviderStateMixin); _inherit(R._DeviceSettingsState, R.__DeviceSettingsState_State_SingleTickerProviderStateMixin); _inherit(F._GeneratedNumbersState, F.__GeneratedNumbersState_State_SingleTickerProviderStateMixin); _inherit(Z._InvoiceDesignState, Z.__InvoiceDesignState_State_SingleTickerProviderStateMixin); _inherit(G._LocalizationSettingsState, G.__LocalizationSettingsState_State_SingleTickerProviderStateMixin); _inherit(L._TemplatesAndRemindersState, L.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin); _inherit(K._UserDetailsState, K.__UserDetailsState_State_SingleTickerProviderStateMixin); _inherit(D._WorkflowSettingsState, D.__WorkflowSettingsState_State_SingleTickerProviderStateMixin); _inherit(S._SubscriptionEditState, S.__SubscriptionEditState_State_SingleTickerProviderStateMixin); _inherit(X._TaskEditState, X.__TaskEditState_State_SingleTickerProviderStateMixin); _inherit(Q._TaskViewState, Q.__TaskViewState_State_SingleTickerProviderStateMixin); _inherit(U._UserEditState, U.__UserEditState_State_SingleTickerProviderStateMixin); _inherit(K._VendorEditState, K.__VendorEditState_State_SingleTickerProviderStateMixin); _inherit(N._VendorViewState, N.__VendorViewState_State_SingleTickerProviderStateMixin); _inherit(X._AppLocalization_LocaleCodeAware_LocalizationsProvider, B.LocaleCodeAware); _inherit(X.AppLocalization, X._AppLocalization_LocaleCodeAware_LocalizationsProvider); _inherit(Z._MdiIconData, X.IconData); _inherit(V.PdfPageFormat, D.Enum); _inheritMany(T.Repository, [S.DocumentRepository, S.PageRepository]); _inherit(X._PdfViewState, X.__PdfViewState_State_SingleTickerProviderStateMixin); _inherit(F._FadeWidgetState, F.__FadeWidgetState_State_SingleTickerProviderStateMixin); _inherit(K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin); _inherit(K.RenderOverflowView, K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin); _inheritMany(O.PackageInfoPlatform, [D.MethodChannelPackageInfo, M.PackageInfoPlugin]); _inherit(B.InternalStyle, O.Style); _inheritMany(B.InternalStyle, [E.PosixStyle, F.UrlStyle, L.WindowsStyle]); _inherit(Z.MethodChannelPathProvider, T.PathProviderPlatform); _inherit(E.MethodChannelPermissionHandler, M.PermissionHandlerPlatform); _inherit(M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate, M._PhotoViewCoreState_State_TickerProviderStateMixin); _inherit(M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector, M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate); _inherit(M.PhotoViewCoreState, M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector); _inherit(O.PhotoViewGestureRecognizer, B.ScaleGestureRecognizer); _inherit(Z.IgnorableValueNotifier, Z.IgnorableChangeNotifier); _inherit(E.LocalPlatform, T.Platform); _inherit(Q.QrBitBuffer, Q._QrBitBuffer_Object_ListMixin); _inherit(O.LoggingMiddleware, X.MiddlewareClass); _inherit(N.RoundedLoadingButtonState, N._RoundedLoadingButtonState_State_TickerProviderStateMixin); _inherit(U.BehaviorSubject, F.Subject); _inherit(M.SentryNavigatorObserver, T.RouteObserver); _inherit(M.RouteObserverBreadcrumb, B.Breadcrumb); _inheritMany(E.SharedPreferencesStorePlatform, [F.MethodChannelSharedPreferencesStore, V.SharedPreferencesPlugin]); _inherit(Y.FileLocation, D.SourceLocationMixin); _inheritMany(Y.SourceSpanMixin, [Y._FileSpan, V.SourceSpanBase]); _inherit(G.SourceSpanFormatException, G.SourceSpanException); _inherit(X.SourceSpanWithContext, V.SourceSpanBase); _inherit(E.StringScannerException, G.SourceSpanFormatException); _inherit(E._IntBuffer0, E.TypedDataBuffer); _inherit(E.Uint8Buffer, E._IntBuffer0); _inheritMany(D.UrlLauncherPlatform, [F.MethodChannelUrlLauncher, Y.UrlLauncherPlugin]); _inherit(Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin); _inherit(Y._RenderValueLayoutBuilder, Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder); _mixin(H._DomCanvas_EngineCanvas_SaveElementStackTracking, H.SaveElementStackTracking); _mixin(H._PersistedClipRRect_PersistedContainerSurface__DomClip, H._DomClip); _mixin(H._PersistedClipRect_PersistedContainerSurface__DomClip, H._DomClip); _mixin(H._PersistedPhysicalShape_PersistedContainerSurface__DomClip, H._DomClip); _mixin(H.__MouseAdapter__BaseAdapter__WheelEventListenerMixin, H._WheelEventListenerMixin); _mixin(H.__PointerAdapter__BaseAdapter__WheelEventListenerMixin, H._WheelEventListenerMixin); _mixin(H.UnmodifiableListBase, H.UnmodifiableListMixin); _mixin(H.__CastListBase__CastIterableBase_ListMixin, P.ListMixin); _mixin(H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin, P.ListMixin); _mixin(H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin, H.FixedLengthListMixin); _mixin(H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin, P.ListMixin); _mixin(H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin, H.FixedLengthListMixin); _mixin(P._AsyncStreamController, P._AsyncStreamControllerDispatch); _mixin(P._SyncStreamController, P._SyncStreamControllerDispatch); _mixin(P.UnmodifiableMapBase, P._UnmodifiableMapMixin); _mixin(P._ListBase_Object_ListMixin, P.ListMixin); _mixin(P._SplayTreeMap__SplayTree_MapMixin, P.MapMixin); _mixin(P._SplayTreeSet__SplayTree_IterableMixin, P.IterableMixin); _mixin(P._SplayTreeSet__SplayTree_IterableMixin_SetMixin, P.SetMixin); _mixin(P._UnmodifiableMapView_MapView__UnmodifiableMapMixin, P._UnmodifiableMapMixin); _mixin(P.__SetBase_Object_SetMixin, P.SetMixin); _mixin(P.__UnmodifiableSet__SetBase__UnmodifiableSetMixin, P._UnmodifiableSetMixin); _mixin(P.__JsonStringStringifierPretty__JsonStringStringifier__JsonPrettyPrintMixin, P._JsonPrettyPrintMixin); _mixin(W._CssStyleDeclaration_Interceptor_CssStyleDeclarationBase, W.CssStyleDeclarationBase); _mixin(W._DomRectList_Interceptor_ListMixin, P.ListMixin); _mixin(W._DomRectList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._DomStringList_Interceptor_ListMixin, P.ListMixin); _mixin(W._DomStringList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._FileList_Interceptor_ListMixin, P.ListMixin); _mixin(W._FileList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._HtmlCollection_Interceptor_ListMixin, P.ListMixin); _mixin(W._HtmlCollection_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._MidiInputMap_Interceptor_MapMixin, P.MapMixin); _mixin(W._MidiOutputMap_Interceptor_MapMixin, P.MapMixin); _mixin(W._MimeTypeArray_Interceptor_ListMixin, P.ListMixin); _mixin(W._MimeTypeArray_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._NodeList_Interceptor_ListMixin, P.ListMixin); _mixin(W._NodeList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._PluginArray_Interceptor_ListMixin, P.ListMixin); _mixin(W._PluginArray_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._RtcStatsReport_Interceptor_MapMixin, P.MapMixin); _mixin(W._SourceBufferList_EventTarget_ListMixin, P.ListMixin); _mixin(W._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._SpeechGrammarList_Interceptor_ListMixin, P.ListMixin); _mixin(W._SpeechGrammarList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._Storage_Interceptor_MapMixin, P.MapMixin); _mixin(W._TextTrackCueList_Interceptor_ListMixin, P.ListMixin); _mixin(W._TextTrackCueList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._TextTrackList_EventTarget_ListMixin, P.ListMixin); _mixin(W._TextTrackList_EventTarget_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W._TouchList_Interceptor_ListMixin, P.ListMixin); _mixin(W._TouchList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W.__CssRuleList_Interceptor_ListMixin, P.ListMixin); _mixin(W.__CssRuleList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W.__GamepadList_Interceptor_ListMixin, P.ListMixin); _mixin(W.__GamepadList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W.__NamedNodeMap_Interceptor_ListMixin, P.ListMixin); _mixin(W.__NamedNodeMap_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W.__SpeechRecognitionResultList_Interceptor_ListMixin, P.ListMixin); _mixin(W.__SpeechRecognitionResultList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(W.__StyleSheetList_Interceptor_ListMixin, P.ListMixin); _mixin(W.__StyleSheetList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(P._JsArray_JsObject_ListMixin, P.ListMixin); _mixin(P._LengthList_Interceptor_ListMixin, P.ListMixin); _mixin(P._LengthList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(P._NumberList_Interceptor_ListMixin, P.ListMixin); _mixin(P._NumberList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(P._StringList_Interceptor_ListMixin, P.ListMixin); _mixin(P._StringList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(P._TransformList_Interceptor_ListMixin, P.ListMixin); _mixin(P._TransformList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(P._AudioParamMap_Interceptor_MapMixin, P.MapMixin); _mixin(P._SqlResultSetRowList_Interceptor_ListMixin, P.ListMixin); _mixin(P._SqlResultSetRowList_Interceptor_ListMixin_ImmutableListMixin, W.ImmutableListMixin); _mixin(D._BoardItemState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(O._BoardListState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(N._BoardViewState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(U._BaseChartState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M.__DraggableScrollbarState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(Q._MemoryDirectory_MemoryFileSystemEntity_DirectoryAddOnsMixin, R.DirectoryAddOnsMixin); _mixin(G._AnimationController_Animation_AnimationEagerListenerMixin, S.AnimationEagerListenerMixin); _mixin(G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, S.AnimationLocalListenersMixin); _mixin(G._AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S.AnimationLocalStatusListenersMixin); _mixin(S._CompoundAnimation_Animation_AnimationLazyListenerMixin, S.AnimationLazyListenerMixin); _mixin(S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, S.AnimationLocalListenersMixin); _mixin(S._CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S.AnimationLocalStatusListenersMixin); _mixin(S._CurvedAnimation_Animation_AnimationWithParentMixin, S.AnimationWithParentMixin); _mixin(S._ProxyAnimation_Animation_AnimationLazyListenerMixin, S.AnimationLazyListenerMixin); _mixin(S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin, S.AnimationLocalListenersMixin); _mixin(S._ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S.AnimationLocalStatusListenersMixin); _mixin(S._ReverseAnimation_Animation_AnimationLazyListenerMixin, S.AnimationLazyListenerMixin); _mixin(S._ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin, S.AnimationLocalStatusListenersMixin); _mixin(S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin, S.AnimationEagerListenerMixin); _mixin(S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin, S.AnimationLocalListenersMixin); _mixin(S._TrainHoppingAnimation_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin, S.AnimationLocalStatusListenersMixin); _mixin(R.__AnimatedEvaluation_Animation_AnimationWithParentMixin, S.AnimationWithParentMixin); _mixin(F.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(E._CupertinoDynamicColor_Color_Diagnosticable, Y.Diagnosticable); _mixin(T._CupertinoIconThemeData_IconThemeData_Diagnosticable, Y.Diagnosticable); _mixin(N.__CupertinoSwitchState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(R._CupertinoTextThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(K._CupertinoThemeData_NoDefaultCupertinoThemeData_Diagnosticable, Y.Diagnosticable); _mixin(U._FlutterError_Error_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(U._FlutterErrorDetails_Object_Diagnosticable, Y.Diagnosticable); _mixin(Y._DiagnosticableTree_Object_Diagnosticable, Y.Diagnosticable); _mixin(F._PointerAddedEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerAddedEvent_PointerEvent__PointerEventDescription__CopyPointerAddedEvent, F._CopyPointerAddedEvent); _mixin(F._PointerCancelEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerCancelEvent_PointerEvent__PointerEventDescription__CopyPointerCancelEvent, F._CopyPointerCancelEvent); _mixin(F._PointerDownEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerDownEvent_PointerEvent__PointerEventDescription__CopyPointerDownEvent, F._CopyPointerDownEvent); _mixin(F._PointerEnterEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerEnterEvent_PointerEvent__PointerEventDescription__CopyPointerEnterEvent, F._CopyPointerEnterEvent); _mixin(F._PointerEvent_Object_Diagnosticable, Y.Diagnosticable); _mixin(F._PointerExitEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerExitEvent_PointerEvent__PointerEventDescription__CopyPointerExitEvent, F._CopyPointerExitEvent); _mixin(F._PointerHoverEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerHoverEvent_PointerEvent__PointerEventDescription__CopyPointerHoverEvent, F._CopyPointerHoverEvent); _mixin(F._PointerMoveEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerMoveEvent_PointerEvent__PointerEventDescription__CopyPointerMoveEvent, F._CopyPointerMoveEvent); _mixin(F._PointerRemovedEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerRemovedEvent_PointerEvent__PointerEventDescription__CopyPointerRemovedEvent, F._CopyPointerRemovedEvent); _mixin(F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerScrollEvent_PointerSignalEvent__PointerEventDescription__CopyPointerScrollEvent, F._CopyPointerScrollEvent); _mixin(F._PointerUpEvent_PointerEvent__PointerEventDescription, F._PointerEventDescription); _mixin(F._PointerUpEvent_PointerEvent__PointerEventDescription__CopyPointerUpEvent, F._CopyPointerUpEvent); _mixin(F.__TransformedPointerAddedEvent__TransformedPointerEvent__CopyPointerAddedEvent, F._CopyPointerAddedEvent); _mixin(F.__TransformedPointerCancelEvent__TransformedPointerEvent__CopyPointerCancelEvent, F._CopyPointerCancelEvent); _mixin(F.__TransformedPointerDownEvent__TransformedPointerEvent__CopyPointerDownEvent, F._CopyPointerDownEvent); _mixin(F.__TransformedPointerEnterEvent__TransformedPointerEvent__CopyPointerEnterEvent, F._CopyPointerEnterEvent); _mixin(F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable, Y.Diagnosticable); _mixin(F.__TransformedPointerEvent__AbstractPointerEvent_Diagnosticable__PointerEventDescription, F._PointerEventDescription); _mixin(F.__TransformedPointerExitEvent__TransformedPointerEvent__CopyPointerExitEvent, F._CopyPointerExitEvent); _mixin(F.__TransformedPointerHoverEvent__TransformedPointerEvent__CopyPointerHoverEvent, F._CopyPointerHoverEvent); _mixin(F.__TransformedPointerMoveEvent__TransformedPointerEvent__CopyPointerMoveEvent, F._CopyPointerMoveEvent); _mixin(F.__TransformedPointerRemovedEvent__TransformedPointerEvent__CopyPointerRemovedEvent, F._CopyPointerRemovedEvent); _mixin(F.__TransformedPointerScrollEvent__TransformedPointerEvent__CopyPointerScrollEvent, F._CopyPointerScrollEvent); _mixin(F.__TransformedPointerUpEvent__TransformedPointerEvent__CopyPointerUpEvent, F._CopyPointerUpEvent); _mixin(S._GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(E.__SliverAppBarState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(V._AppBarTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(Q._MaterialBannerThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(D._BottomAppBarTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(M._BottomNavigationBarThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(X._BottomSheetThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(M._ButtonBarThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(A._ButtonStyle_Object_Diagnosticable, Y.Diagnosticable); _mixin(K.__ButtonStyleState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._ButtonThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(Q.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(A._CardTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(K.__CheckboxState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(K.__CheckboxState_State_TickerProviderStateMixin_ToggleableStateMixin, F.ToggleableStateMixin); _mixin(F._CheckboxThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(K._ChipThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(A._ColorScheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(S.__SortArrowState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(Z._DataTableThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(K.__DatePickerDialogState_State_RestorationMixin, K.RestorationMixin); _mixin(Y._DialogTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(G._DividerThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(Z._DrawerControllerState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(K.__DropdownButtonState_State_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(D.__ElevatedButtonDefaultBackground_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(D.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(D.__ElevatedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(D.__ElevatedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(D.__ElevatedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(T._ElevatedButtonThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(N.__ExpandIconState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndDockedFabLocation_StandardFabLocation_FabEndOffsetX_FabDockedOffsetY, A.FabDockedOffsetY); _mixin(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY, A.FabFloatOffsetY); _mixin(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX, A.FabEndOffsetX); _mixin(A.__EndTopFabLocation_StandardFabLocation_FabEndOffsetX_FabTopOffsetY, A.FabTopOffsetY); _mixin(S._FloatingActionButtonThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(R.__InkResponseState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(L._InputDecorationTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(L.__BorderContainerState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(L.__HelperErrorState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(L.__InputDecoratorState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M.__MaterialState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(B.__MergeableMaterialState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(E._NavigationRailThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(B.__OutlinedButtonDefaultForeground_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(B.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(B.__OutlinedButtonDefaultOverlay_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(U._OutlinedButtonThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(V._MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin, V.MaterialRouteTransitionMixin); _mixin(K._PageTransitionsTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(R._PopupMenuThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(U.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(U.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(Y.__RadioState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(Y.__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin, F.ToggleableStateMixin); _mixin(T._RadioThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(N._RefreshIndicatorState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._ScaffoldMessengerState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._ScaffoldState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin, K.RestorationMixin); _mixin(M.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(X._ScrollbarThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(O.__SelectableTextState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(Q._SliderThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(K._SnackBarThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(N.__MaterialSwitchState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(N.__MaterialSwitchState_State_TickerProviderStateMixin_ToggleableStateMixin, F.ToggleableStateMixin); _mixin(R._SwitchThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._TabBarTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(U.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(E.__ChangeAnimation_Animation_AnimationWithParentMixin, S.AnimationWithParentMixin); _mixin(E.__DragAnimation_Animation_AnimationWithParentMixin, S.AnimationWithParentMixin); _mixin(U.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable, Y.Diagnosticable); _mixin(T._TextButtonThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(Z.__TextFieldState_State_RestorationMixin, K.RestorationMixin); _mixin(R._TextSelectionThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(R._TextTheme_Object_Diagnosticable, Y.Diagnosticable); _mixin(X._ThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(X._VisualDensity_Object_Diagnosticable, Y.Diagnosticable); _mixin(M.__DialState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(A._TimePickerThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(S._ToggleButtonsThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(S.__TooltipState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(T._TooltipThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._Typography_Object_Diagnosticable, Y.Diagnosticable); _mixin(Z._Decoration_Object_Diagnosticable, Y.Diagnosticable); _mixin(L._ImageChunkEvent_Object_Diagnosticable, Y.Diagnosticable); _mixin(L._ImageStream_Object_Diagnosticable, Y.Diagnosticable); _mixin(L._ImageStreamCompleter_Object_Diagnosticable, Y.Diagnosticable); _mixin(M._StrutStyle_Object_Diagnosticable, Y.Diagnosticable); _mixin(A._TextStyle_Object_Diagnosticable, Y.Diagnosticable); _mixin(S._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin, K.ContainerParentDataMixin); _mixin(B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(B._RenderCustomMultiChildLayoutBox_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(D._RenderEditable_RenderBox_RelayoutWhenSystemFontsChangeMixin, K.RelayoutWhenSystemFontsChangeMixin); _mixin(F._RenderFlex_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(F._RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin, T.DebugOverflowIndicatorMixin); _mixin(T._Layer_AbstractNode_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(R._RenderListBody_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(R._RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(A.__MouseTrackerUpdateDetails_Object_Diagnosticable, Y.Diagnosticable); _mixin(K._RenderObject_AbstractNode_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(Q._RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin, K.RelayoutWhenSystemFontsChangeMixin); _mixin(G._PlatformViewRenderBox_RenderBox__PlatformViewGestureMixin, G._PlatformViewGestureMixin); _mixin(E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin, E.RenderProxyBoxMixin); _mixin(E._RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin, E.RenderAnimatedOpacityMixin); _mixin(E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(E._RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin, E.RenderProxyBoxMixin); _mixin(T._RenderShiftedBox_RenderBox_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(G._SliverGeometry_Object_Diagnosticable, Y.Diagnosticable); _mixin(G._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin, K.ContainerParentDataMixin); _mixin(G._SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin, K.ContainerParentDataMixin); _mixin(F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers, G.RenderSliverHelpers); _mixin(F._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_RenderSliverWithKeepAliveMixin, F.RenderSliverWithKeepAliveMixin); _mixin(F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin, K.ContainerParentDataMixin); _mixin(F._SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_KeepAliveParentDataMixin, F.KeepAliveParentDataMixin); _mixin(T._RenderSliverEdgeInsetsPadding_RenderSliver_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(U._RenderSliverPersistentHeader_RenderSliver_RenderObjectWithChildMixin_RenderSliverHelpers, G.RenderSliverHelpers); _mixin(K._RenderStack_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(K._RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(A._RenderView_RenderObject_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(Q._RenderViewportBase_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(N._RenderWrap_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(N._RenderWrap_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(A._SemanticsData_Object_Diagnosticable, Y.Diagnosticable); _mixin(A._SemanticsNode_AbstractNode_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(A._SemanticsSortKey_Object_Diagnosticable, Y.Diagnosticable); _mixin(G._KeyboardKey_Object_Diagnosticable, Y.Diagnosticable); _mixin(A._MouseCursor_Object_Diagnosticable, Y.Diagnosticable); _mixin(B._RawKeyEvent_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._Action_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._ActionDispatcher_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._Intent_Object_Diagnosticable, Y.Diagnosticable); _mixin(U.__AnimatedCrossFadeState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(G.__AnimatedSwitcherState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(S.__MediaQueryFromWindowsState_State_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(S.__WidgetsAppState_State_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(F._AutofillGroupState_State_AutofillScopeMixin, F.AutofillScopeMixin); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding, N.GestureBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding, N.SchedulerBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding, N.ServicesBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding, N.PaintingBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding, N.SemanticsBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding, N.RendererBinding); _mixin(N._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding, N.WidgetsBinding); _mixin(S._DraggableScrollableNotification_Notification_ViewportNotificationMixin, G.ViewportNotificationMixin); _mixin(D._EditableTextState_State_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(D._EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_TextSelectionDelegate, N.TextSelectionDelegate); _mixin(O._FocusManager_Object_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(O._FocusManager_Object_DiagnosticableTreeMixin_ChangeNotifier, B.ChangeNotifier); _mixin(O._FocusNode_Object_DiagnosticableTreeMixin, Y.DiagnosticableTreeMixin); _mixin(O._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier, B.ChangeNotifier); _mixin(U._FocusTraversalPolicy_Object_Diagnosticable, Y.Diagnosticable); _mixin(U._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin, U.DirectionalFocusTraversalPolicyMixin); _mixin(U.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, Y.Diagnosticable); _mixin(U.__ReadingOrderSortData_Object_Diagnosticable, Y.Diagnosticable); _mixin(N._State_Object_Diagnosticable, Y.Diagnosticable); _mixin(T._IconThemeData_Object_Diagnosticable, Y.Diagnosticable); _mixin(U.__ImageState_State_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(G._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(A.__RenderLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.RenderConstrainedLayoutBuilder); _mixin(K._NavigatorState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(K._NavigatorState_State_TickerProviderStateMixin_RestorationMixin, K.RestorationMixin); _mixin(E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(E.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(X._OverlayState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(X.__RenderTheatre_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(L._OverscrollIndicatorNotification_Notification_ViewportNotificationMixin, G.ViewportNotificationMixin); _mixin(L.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(Z._SliverReorderableListState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(K.__RestorationScopeState_State_RestorationMixin, K.RestorationMixin); _mixin(T._ModalRoute_TransitionRoute_LocalHistoryRoute, T.LocalHistoryRoute); _mixin(M._FixedScrollMetrics_Object_ScrollMetrics, M.ScrollMetrics); _mixin(G._ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin, G.ViewportNotificationMixin); _mixin(A._ScrollPosition_ViewportOffset_ScrollMetrics, M.ScrollMetrics); _mixin(F._ScrollableState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(F._ScrollableState_State_TickerProviderStateMixin_RestorationMixin, K.RestorationMixin); _mixin(E._RawScrollbarState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(X._LogicalKeySet_KeySet_Diagnosticable, Y.Diagnosticable); _mixin(X._ShortcutManager_ChangeNotifier_Diagnosticable, Y.Diagnosticable); _mixin(E.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(U.__RenderSliverPinnedPersistentHeaderForWidgets_RenderSliverPinnedPersistentHeader__RenderSliverPersistentHeaderForWidgetsMixin, U._RenderSliverPersistentHeaderForWidgetsMixin); _mixin(S.__TableSlot_Object_Diagnosticable, Y.Diagnosticable); _mixin(F.__TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(N._WidgetInspectorService, N.WidgetInspectorService); _mixin(D._DefaultCacheManager_CacheManager_ImageCacheManager, V.ImageCacheManager); _mixin(A._SlidableState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(A._SlidableState_State_TickerProviderStateMixin_AutomaticKeepAliveClientMixin, L.AutomaticKeepAliveClientMixin); _mixin(M._StyledToastWidgetState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._StyledToastWidgetState_State_TickerProviderStateMixin_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(L.__SuggestionsListState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(L.__TypeAheadFieldState_State_WidgetsBindingObserver, N.WidgetsBindingObserver); _mixin(T._ClientEntity_Object_BaseEntity, T.BaseEntity); _mixin(T._ClientEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(T._ContactEntity_Object_BaseEntity, T.BaseEntity); _mixin(T._ContactEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(O._CompanyGatewayEntity_Object_BaseEntity, T.BaseEntity); _mixin(O._CompanyGatewayEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(A._CompanyEntity_Object_BaseEntity, T.BaseEntity); _mixin(A._GatewayEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(D._DesignEntity_Object_BaseEntity, T.BaseEntity); _mixin(D._DocumentEntity_Object_BaseEntity, T.BaseEntity); _mixin(D._DocumentEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(R._ExpenseCategoryEntity_Object_BaseEntity, T.BaseEntity); _mixin(R._ExpenseCategoryEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(M._ExpenseEntity_Object_BaseEntity, T.BaseEntity); _mixin(M._ExpenseEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(M._ExpenseEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, T.BelongsToClient); _mixin(M._ExpenseStatusEntity_Object_EntityStatus, T.EntityStatus); _mixin(M._ExpenseStatusEntity_Object_EntityStatus_SelectableEntity, T.SelectableEntity); _mixin(N._GatewayTokenEntity_Object_BaseEntity, T.BaseEntity); _mixin(N._GatewayTokenEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(Q._GroupEntity_Object_BaseEntity, T.BaseEntity); _mixin(Q._GroupEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(Q._InvitationEntity_Object_BaseEntity, T.BaseEntity); _mixin(Q._InvitationEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(Q._InvoiceEntity_Object_BaseEntity, T.BaseEntity); _mixin(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal, X.CalculateInvoiceTotal); _mixin(Q._InvoiceEntity_Object_BaseEntity_SelectableEntity_CalculateInvoiceTotal_BelongsToClient, T.BelongsToClient); _mixin(F._PaymentEntity_Object_BaseEntity, T.BaseEntity); _mixin(F._PaymentEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(F._PaymentEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, T.BelongsToClient); _mixin(F._PaymentableEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(X._PaymentTermEntity_Object_BaseEntity, T.BaseEntity); _mixin(X._PaymentTermEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(A._ProductEntity_Object_BaseEntity, T.BaseEntity); _mixin(A._ProductEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(A._ProjectEntity_Object_BaseEntity, T.BaseEntity); _mixin(A._ProjectEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(A._ProjectEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, T.BelongsToClient); _mixin(L._CountryEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(O._CurrencyEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(M._DateFormatEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(K._FontEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(O._IndustryEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(F._InvoiceStatusEntity_Object_EntityStatus, T.EntityStatus); _mixin(A._LanguageEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(S._PaymentTypeEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(D._SizeEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(U._TimezoneEntity_Object_SelectableEntity, T.SelectableEntity); _mixin(X._SubscriptionEntity_Object_BaseEntity, T.BaseEntity); _mixin(D._TaskEntity_Object_BaseEntity, T.BaseEntity); _mixin(D._TaskEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(D._TaskEntity_Object_BaseEntity_SelectableEntity_BelongsToClient, T.BelongsToClient); _mixin(S._TaskStatusEntity_Object_BaseEntity, T.BaseEntity); _mixin(S._TaskStatusEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(S._TaskStatusEntity_Object_BaseEntity_SelectableEntity_EntityStatus, T.EntityStatus); _mixin(T._TaxRateEntity_Object_BaseEntity, T.BaseEntity); _mixin(T._TaxRateEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(D._TokenEntity_Object_BaseEntity, T.BaseEntity); _mixin(D._TokenEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(B._UserEntity_Object_BaseEntity, T.BaseEntity); _mixin(B._UserEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(B._VendorContactEntity_Object_BaseEntity, T.BaseEntity); _mixin(B._VendorEntity_Object_BaseEntity, T.BaseEntity); _mixin(B._VendorEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(E._WebhookEntity_Object_BaseEntity, T.BaseEntity); _mixin(E._WebhookEntity_Object_BaseEntity_SelectableEntity, T.SelectableEntity); _mixin(F._ClientUIState_Object_EntityUIState, U.EntityUIState); _mixin(U._CompanyGatewayUIState_Object_EntityUIState, U.EntityUIState); _mixin(G._CreditUIState_Object_EntityUIState, U.EntityUIState); _mixin(Y._DesignUIState_Object_EntityUIState, U.EntityUIState); _mixin(Q._DocumentUIState_Object_EntityUIState, U.EntityUIState); _mixin(R._ExpenseUIState_Object_EntityUIState, U.EntityUIState); _mixin(Q._ExpenseCategoryUIState_Object_EntityUIState, U.EntityUIState); _mixin(E._GroupUIState_Object_EntityUIState, U.EntityUIState); _mixin(B._InvoiceUIState_Object_EntityUIState, U.EntityUIState); _mixin(L._PaymentUIState_Object_EntityUIState, U.EntityUIState); _mixin(N._PaymentTermUIState_Object_EntityUIState, U.EntityUIState); _mixin(Y._ProductUIState_Object_EntityUIState, U.EntityUIState); _mixin(D._ProjectUIState_Object_EntityUIState, U.EntityUIState); _mixin(G._QuoteUIState_Object_EntityUIState, U.EntityUIState); _mixin(K._RecurringExpenseUIState_Object_EntityUIState, U.EntityUIState); _mixin(Q._RecurringInvoiceUIState_Object_EntityUIState, U.EntityUIState); _mixin(M._SubscriptionUIState_Object_EntityUIState, U.EntityUIState); _mixin(M._TaskUIState_Object_EntityUIState, U.EntityUIState); _mixin(L._TaskStatusUIState_Object_EntityUIState, U.EntityUIState); _mixin(Q._TaxRateUIState_Object_EntityUIState, U.EntityUIState); _mixin(N._TokenUIState_Object_EntityUIState, U.EntityUIState); _mixin(Q._UserUIState_Object_EntityUIState, U.EntityUIState); _mixin(Y._VendorUIState_Object_EntityUIState, U.EntityUIState); _mixin(V._WebhookUIState_Object_EntityUIState, U.EntityUIState); _mixin(E.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(L.__SortArrowState_State_TickerProviderStateMixin0, U.TickerProviderStateMixin); _mixin(K.__VariablesHelpState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(M.__ClientEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(G.__ClientViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(V.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(G.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(M.__CreditEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(F.__DashboardScreenState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(N.__DesignEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(D.__ExpenseEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(U.__ExpenseViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(E.__GroupViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(F.__InvoiceEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(S._InvoiceEditDesktopState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(D.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(E.__InvoiceViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(Z.__ProductViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(M.__ProjectViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(B.__QuoteEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(O.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(O.__AccountManagementState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(S.__ClientPortalState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(X.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(S.__CustomFieldsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(R.__DeviceSettingsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(F.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(Z.__InvoiceDesignState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(G.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(L.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(K.__UserDetailsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(D.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(S.__SubscriptionEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(X.__TaskEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(Q.__TaskViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(U.__UserEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(K.__VendorEditState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(N.__VendorViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(X._AppLocalization_LocaleCodeAware_LocalizationsProvider, B.LocalizationsProvider); _mixin(X.__PdfViewState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(F.__FadeWidgetState_State_SingleTickerProviderStateMixin, U.SingleTickerProviderStateMixin); _mixin(K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin, K.ContainerRenderObjectMixin); _mixin(K._RenderOverflowView_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin, S.RenderBoxContainerDefaultsMixin); _mixin(M._PhotoViewCoreState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate, E.PhotoViewControllerDelegate); _mixin(M._PhotoViewCoreState_State_TickerProviderStateMixin_PhotoViewControllerDelegate_HitCornersDetector, G.HitCornersDetector); _mixin(Q._QrBitBuffer_Object_ListMixin, P.ListMixin); _mixin(N._RoundedLoadingButtonState_State_TickerProviderStateMixin, U.TickerProviderStateMixin); _mixin(Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin, K.RenderObjectWithChildMixin); _mixin(Y.__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder, A.RenderConstrainedLayoutBuilder); })(); var init = { typeUniverse: {eC: new Map(), tR: {}, eT: {}, tPV: {}, sEA: []}, mangledGlobalNames: {int: "int", double: "double", num: "num", String: "String", bool: "bool", Null: "Null", List: "List"}, mangledNames: {}, getTypeFromName: getGlobalFromName, metadata: [], types: ["~()", "Null()", "ListUIStateBuilder*(ListUIStateBuilder*)", "Null(Object*)", "Null(Store*,@,@(@)*)", "@(String*)", "double(double)", "Null(String*)", "Null(@)", "@()", "@(@)", "InvoiceEntityBuilder*(InvoiceEntityBuilder*)", "@(bool*)", "SettingsEntityBuilder*(SettingsEntityBuilder*)", "Null(BuildContext*)", "String*(String*)", "bool*(String*)", "Future*(BuildContext*)", "int*(String*,String*)", "bool*()", "Null(bool*)", "ErrorDialog*(BuildContext*)", "CompanyEntityBuilder*(CompanyEntityBuilder*)", "ExpenseEntityBuilder*(ExpenseEntityBuilder*)", "String*(@)", "Future*(Store*,@,@(@)*)", "Future<~>*()", "~(TextEditingController*)", "~(Duration)", "~(BuildContext*)", "Future*()", "Future*()", "ListBuilder*()", "~(Object?)", "~(bool*)", "~(AnimationStatus)", "DropdownMenuItem*(String*)", "PaymentEntityBuilder*(PaymentEntityBuilder*)", "bool*(Route<@>*)", "PluralCase()", "ClientEntityBuilder*(ClientEntityBuilder*)", "String*(BaseEntity*)", "Null(List*)", "CompanyGatewayEntityBuilder*(CompanyGatewayEntityBuilder*)", "Null(SelectableEntity*)", "Null(Duration*)", "TaskEntityBuilder*(TaskEntityBuilder*)", "String*(String*,PreviewEntity*)", "@(BuildContext*)", "String*(String*,SelectCompany*)", "String*(String*,ClearEntityFilter*)", "Null(String*,String*)", "~(bool)", "Null(EntityState*,bool*)", "InvoiceItemEntityBuilder*(InvoiceItemEntityBuilder*)", "Null(String*,InvoiceEntity*)", "@(SelectableEntity*)", "~(BuildContext*,EntityAction*)", "bool*(InvoiceItemEntity*)", "~(String*)", "Null(TextEditingController*)", "Null(Event)", "SubscriptionEntityBuilder*(SubscriptionEntityBuilder*)", "Null(DocumentEntity*)", "InvoiceEntity*(String*)", "ListDivider*(BuildContext*,int*)", "~(Event)", "~(int)", "Null(InvoiceEntity*)", "InvoiceStatusEntityBuilder*(InvoiceStatusEntityBuilder*)", "~(DragUpdateDetails)", "String()", "String*(String*,FilterByEntity*)", "bool(String)", "@(int*,String*)", "String*(String*,@)", "SettingsUIStateBuilder*(SettingsUIStateBuilder*)", "double(RenderBox)", "UserEntityBuilder*(UserEntityBuilder*)", "Widget(BuildContext)", "@(TaxRateEntity*)", "~(@)", "EntityStats*(String*,BuiltMap*)", "Null(~)", "int*(List*,List*)", "~(PaintingContext,Offset)", "Null(BuildContext*,MultipartFile*)", "~(Element0)", "~(String)", "Null(String*,ExpenseEntity*)", "UserCompanyEntityBuilder*(UserCompanyEntityBuilder*)", "int*(int*,PreviewEntity*)", "~(PointerEvent0)", "Future<~>()", "Null(BuildContext*,DocumentEntity*,String*,String*)", "Future?(Object*)", "bool(BoxHitTestResult,Offset?)", "StatelessWidget*(BuildContext*,BoxConstraints*)", "~(TapDownDetails)", "Null(List*)", "~(DragStartDetails)", "String(String)", "Palette()", "Null(int*)", "~(DragEndDetails)", "~(String,String)", "bool*(bool*,UpdateUserPreferences*)", "~(String,@)", "UserStateBuilder*(UserStateBuilder*)", "bool(Object?)", "bool(@)", "Color(Set)", "ListBuilder*()", "Iterable()", "bool(FocusNode)", "Null(ExpenseEntity*)", "double()", "~(ByteData?)", "~(@,@)", "bool(Element0)", "VendorEntityBuilder*(VendorEntityBuilder*)", "Null(TaxRateEntity*)", "Null(String*,TaskEntity*)", "DashboardUISettingsBuilder*(DashboardUISettingsBuilder*)", "~(Object,StackTrace)", "Null(Object,StackTrace)", "@(CompanyEntity*)", "TextSelection()", "Widget(BuildContext,int)", "Null(PaymentEntity*)", "@(TextSelection)", "EntityStats*(String*,BuiltMap*)", "~(LayoutView)", "Widget*()", "AuthStateBuilder*(AuthStateBuilder*)", "Null(BuildContext*,Completer*)", "@(MultipartFile*)", "@(DocumentEntity*,String*,String*)", "@(InvoiceEntity*)", "Null(TaskEntity*)", "ScrollableListView*(BuildContext*)", "Null(int*,int*)", "~(RenderObject)", "Null(List*)", "Null(SettingsEntity*)", "TaskStatusEntityBuilder*(TaskStatusEntityBuilder*)", "~(ForcePressDetails)", "~(TapUpDetails)", "Object?(@)", "String*(String*,ClearEntitySelection*)", "String*()", "Null(DesignEntity*)", "bool(FlutterHtmlKeyboardEvent)", "InvoiceEntity*(InvoiceEntity*,@)", "String*(InvoiceEntityBuilder*)", "Widget*(BuildContext*,int*)", "bool*(ContactEntity*)", "@(double)", "InvoiceEntity*(@)", "CompanyGatewayStateBuilder*(CompanyGatewayStateBuilder*)", "bool(ScrollNotification)", "Color0(int?)", "TaxRateStateBuilder*(TaxRateStateBuilder*)", "MapBuilder*()", "Null(Completer*)", "DropdownMenuItem*(int*)", "GroupStateBuilder*(GroupStateBuilder*)", "Null(InvoiceStateBuilder*)", "ProjectEntityBuilder*(ProjectEntityBuilder*)", "String*(PaymentableEntity*)", "ProductEntityBuilder*(ProductEntityBuilder*)", "double*(double*)", "AlertDialog*(BuildContext*)", "@(int*)", "Null(UserEntity*)", "~(ProgressEvent)", "SimpleDialog*(BuildContext*)", "int(int)", "DateFormat()", "@(DateFormat)", "bool(_RouteEntry?)", "FeesAndLimitsSettingsBuilder*(FeesAndLimitsSettingsBuilder*)", "bool*(TaskTime*)", "WebhookEntityBuilder*(WebhookEntityBuilder*)", "Null(LoginResponse*)", "Null(BuildContext*[EntityAction*])", "bool(int)", "int(_Codes)", "bool()", "bool*(InvoiceEntity*)", "PaymentEntity*(String*)", "Null(String*,PaymentEntity*)", "InvitationEntity*(ContactEntity*)", "double*()", "bool*(BaseEntity*)", "ExpenseEntity*(String*)", "bool*(PaymentableEntity*)", "Column*(BuildContext*)", "List*()", "ListBuilder*()", "PaymentTermStateBuilder*(PaymentTermStateBuilder*)", "Null(EntityType*)", "~(SelectableEntity*)", "double(RenderBox,double)", "Null(TaskTime*)", "Color?(Set)", "@(List*)", "~(PointerExitEvent)", "~(RestorableProperty,~())", "~(Object?,Object?)", "~(DateTime)", "TaskEntity*(String*)", "@(Event)", "AppStateBuilder*(AppStateBuilder*)", "~(Object[StackTrace?])", "~(PointerDownEvent)", "Null(InvoiceItemEntity*)", "DocumentStateBuilder*(DocumentStateBuilder*)", "int()", "~(Object*)", "Null(EntityStatus*,bool*)", "~(LongPressStartDetails)", "Null(GroupEntity*)", "~(LongPressMoveUpdateDetails)", "Null(PaymentableEntity*)", "int(FocusNode,FocusNode)", "Null(ProductEntity*)", "Null(VendorEntity*)", "Null(ProjectEntity*)", "Widget(BuildContext,Widget?)", "QuoteStateBuilder*(QuoteStateBuilder*)", "Null(RecurringExpenseStateBuilder*)", "Null(List*)", "Null(RecurringInvoiceStateBuilder*)", "Null(String*,ClientEntity*)", "bool(GestureListener)", "~(String?)", "~(String,NumericAxis)", "Null(TaskStatusEntity*)", "TaxRateEntity*(String*)", "bool(_RouteEntry)", "Null(InvoiceItemEntity*,int*)", "Future()", "String*(TaxRateReportFields*)", "Null(List*,String*)", "Future()", "String(int)", "~(~())", "ExpenseStateBuilder*(ExpenseStateBuilder*)", "Null(List*[String*])", "~(NavigatorObserver)", "bool(InlineSpan)", "Null(ExpenseCategoryEntity*)", "Null(TouchEvent)", "ProjectEntity*(String*)", "List*(BuiltMap*,BuiltMap*)", "~(MouseEvent)", "Future>(Map)", "Null(BuiltList*)", "~(Timer*)", "ExpenseEntity*(ExpenseEntity*,@)", "String*(ProfitAndLossReportFields*)", "DropdownMenuItem*(MapEntry*)", "InvoiceStateBuilder*(InvoiceStateBuilder*)", "CreditStateBuilder*(CreditStateBuilder*)", "Null(List*)", "Future<@>(MethodCall)", "ActivityListTile*(BuildContext*,int*)", "PaymentStateBuilder*(PaymentStateBuilder*)", "~({curve:Curve,descendant:RenderObject?,duration:Duration,rect:Rect?})", "Null(PointerEvent)", "IconButton*(BuildContext*)", "Null(PaymentTermEntity*)", "AppTextButton*(BuildContext*)", "Null(BuildContext*,InvoiceEntity*,ClientEntity*)", "Null(@,@)", "@(DesignEntity*)", "TaskListItem*(BuildContext*,int*)", "ProductStateBuilder*(ProductStateBuilder*)", "Null(ClientEntity*)", "ClientStateBuilder*(ClientStateBuilder*)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*)", "DesignEntityBuilder*(DesignEntityBuilder*)", "ProjectStateBuilder*(ProjectStateBuilder*)", "int(RenderObject,RenderObject)", "bool(BoxHitTestResult,Offset)", "CompanyGatewayEntity*(String*)", "int*(InvoiceEntity*,InvoiceEntity*)", "BaseEntity*(InvoiceItemEntity*)", "RecurringInvoiceStateBuilder*(RecurringInvoiceStateBuilder*)", "DesignEntity*(String*)", "MapBuilder*()", "Null(BuildContext*,InvoiceEntity*[String*])", "double(double,double)", "Null(DateTime*)", "Null(SubscriptionEntity*)", "Future*(String*)", "Null(CompanyGatewayEntity*)", "SubscriptionStateBuilder*(SubscriptionStateBuilder*)", "String*(TaxRateReportFields0*)", "MapBuilder*(MapBuilder*)", "ProductEntity*(String*)", "Null(TaskStateBuilder*)", "TaskStateBuilder*(TaskStateBuilder*)", "EntityStats*(String*,BuiltMap*)", "Future>(Map)", "Null(BuildContext*[int*])", "Widget(BuildContext,BoxConstraints)", "Null(Timer*)", "Null(TaskStatusStateBuilder*)", "TaskStatusStateBuilder*(TaskStatusStateBuilder*)", "InvoiceItemSelector*(BuildContext*)", "~(PointerExitEvent*)", "DesignStateBuilder*(DesignStateBuilder*)", "MessageDialog*(BuildContext*)", "ListTile*(String*)", "~(PointerEnterEvent)", "int(@,@)", "Null(TokenEntity*)", "WebhookStateBuilder*(WebhookStateBuilder*)", "TokenStateBuilder*(TokenStateBuilder*)", "ClientEntity*(String*)", "Null(WebhookEntity*)", "bool*(EntityType*)", "@([String*,String*])", "VendorStateBuilder*(VendorStateBuilder*)", "Rect()", "RecurringExpenseStateBuilder*(RecurringExpenseStateBuilder*)", "ExpenseCategoryStateBuilder*(ExpenseCategoryStateBuilder*)", "CustomFieldSelector*(BuildContext*)", "PaymentTermEntity*(String*)", "VendorEntity*(String*)", "Null(List*)", "bool(DataRow)", "UserEntity*(String*)", "Null(VendorStateBuilder*)", "MouseCursor0(Set)", "WebhookEntity*(String*)", "Null(List*)", "ListBuilder*(ListBuilder*)", "Null(@,StackTrace)", "Null(WebhookStateBuilder*)", "Null(TokenStateBuilder*)", "GridView*(BuildContext*,BoxConstraints*)", "Null(EntityAction*)", "Future<~>(String,ByteData?,~(ByteData?)?)", "Null(List*)", "~(FocusHighlightMode)", "TokenEntity*(String*)", "Null(TaxRateStateBuilder*)", "~(PointerEnterEvent*)", "Null(List*)", "Null(List*)", "Null(List*)", "String?(String?)", "Null(SubscriptionStateBuilder*)", "MaterialStateProperty?(ButtonStyle?)", "List*>*(BuildContext*)", "Null(List*)", "SubscriptionEntity*(String*)", "Null(QuoteStateBuilder*)", "Tween(@)", "ColorTween(@)", "Null(ProjectStateBuilder*)", "Null(List*)", "Null(BaseEntity*)", "Null(ProductStateBuilder*)", "@(Color)", "Color()", "Null(List*)", "Null(PaymentTermStateBuilder*)", "Null(List*)", "~(bool?)", "Null(PaymentStateBuilder*)", "Null(GroupStateBuilder*)", "InkWell*(BuildContext*)", "GroupEntityBuilder*(GroupEntityBuilder*)", "Null(int*,bool*)", "Null(List*)", "GroupEntity*(String*)", "Null(ExpenseCategoryStateBuilder*)", "BaseEntity*(String*)", "TaskStatusEntity*(String*)", "~(ImageInfo,bool)", "~(ImageChunkEvent)", "ExpenseCategoryEntityBuilder*(ExpenseCategoryEntityBuilder*)", "Null(List*)", "ExpenseCategoryEntity*(String*)", "Null(ExpenseStateBuilder*)", "Future()", "Null(DesignStateBuilder*)", "Null(List*)", "String(Match)", "int*(TaskEntity*,TaskEntity*)", "Null(bool)", "Set()", "Future()", "Null(Store*)", "Null(BuildContext*,EmailTemplate*,String*,String*)", "Null(CompanyGatewayStateBuilder*)", "Null(List*)", "bool*(PaymentEntity*)", "ReportsUIStateBuilder*(ReportsUIStateBuilder*)", "Null(ClientStateBuilder*)", "int(Object?)", "bool(Object?,Object?)", "Null(List*)", "~(Timer)", "bool(Point)", "~(ImageStreamListener)", "MapBuilder*>*()", "InvoiceListItem*(BuildContext*,int*)", "QuoteListItem*(BuildContext*,int*)", "ListBuilder*()", "Null(UserStateBuilder*)", "~(SliverConstraints)", "~(List)", "ListBuilder*()", "~(int,int)", "@(double*)", "ListBuilder*()", "DateTime()", "ExpenseStatusEntityBuilder*(ExpenseStatusEntityBuilder*)", "ListBuilder*()", "DropdownMenuItem*(int*)", "Null(MouseEvent)", "~(TaxRateEntity*)", "bool(SemanticsNode)", "PaymentableEntityBuilder*(PaymentableEntityBuilder*)", "String*(ClientReportFields*)", "int(SemanticsNode,SemanticsNode)", "String*(CreditReportFields*)", "String*(DocumentReportFields*)", "String*(ExpenseReportFields*)", "String*(InvoiceItemReportFields*)", "String*(InvoiceReportFields*)", "bool*(ActivityEntity*)", "String*(PaymentReportFields*)", "int(int,int)", "String*(ProductReportFields*)", "~(LongPressEndDetails)", "String*(QuoteItemReportFields*)", "String*(QuoteReportFields*)", "Null(CreditStateBuilder*)", "String*(TaskReportFields*)", "EdgeInsetsGeometryTween(@)", "@(SettingsEntity*)", "Future*(BuildContext*,bool*)", "~(HorizontalDragGestureRecognizer)", "MapEntry*>*(String*,String*)", "@(bool*,int*,String*,double*,double*)", "Null(String*,List*)", "HorizontalDragGestureRecognizer()", "Future<@>()", "Widget(BuildContext,Widget,int?,bool)", "bool(FocusableActionDetector)", "bool(_Highlight)", "ExpenseListItem*(BuildContext*,int*)", "Color(Color)", "DropdownMenuItem*(DateRange*)", "~(Symbol0,@)", "List()", "Future(ByteData?)", "~(RestorationBucket)", "Map()", "int(String?)", "bool(InheritedElement)", "~(Uint8List,String,int)", "int(_ReadingOrderSortData,_ReadingOrderSortData)", "TapGestureRecognizer()", "~(TapGestureRecognizer)", "DoubleTapGestureRecognizer()", "~(DoubleTapGestureRecognizer)", "LongPressGestureRecognizer()", "~(LongPressGestureRecognizer)", "VerticalDragGestureRecognizer()", "~(VerticalDragGestureRecognizer)", "bool(Node)", "Positioned(BuildContext,Widget?)", "~(Object,StackTrace?)", "Tween<@>?(Tween<@>?,@,Tween<@>(@))", "AlignmentGeometryTween(@)", "KeyData()", "DecorationTween(@)", "bool(NodeValidator)", "RenderBox?()", "~(_DragInfo)", "VelocityTracker(PointerEvent0)", "~(RandomAccessFile)", "Null(ProgressEvent)", "ContactEntityBuilder*(ContactEntityBuilder*)", "ContactEntity*()", "List()", "MapBuilder*>*(MapBuilder*>*)", "@(~())", "~()()", "int(int,@)", "bool*(InvitationEntity*)", "ListBuilder*()", "ListBuilder*()", "Object?(Object?)", "ListBuilder*()", "Widget(BuildContext,Object,StackTrace?)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "MapBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "MapBuilder*()", "ListBuilder*()", "ListBuilder*()", "~(Codec)", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "ListBuilder*()", "List?(int?)", "AppSidebarMode*(AppSidebarMode*,UpdateUserPreferences*)", "List*>*(BuildContext*)", "Null(PointerDownEvent*)", "Listener*(BuildContext*,String*)", "List*(String*)", "SizedBox*(BuildContext*)", "GroupEntity*(GroupEntity*,@)", "@(Completer*)", "ImageStreamCompleter()", "PaymentListItem*(BuildContext*,int*)", "ListTile*(BuildContext*,int*)", "TokenEntity*(TokenEntity*,@)", "ExpenseCategoryEntity*(ExpenseCategoryEntity*,@)", "List(_SemanticsSortGroup)", "DesignEntity*(DesignEntity*,@)", "TaxRateEntity*(TaxRateEntity*,@)", "Color0*(ChartMoneyData*,int*)", "double*(ChartMoneyData*,int*)", "DateTime*(ChartMoneyData*,int*)", "Null(DateRange*)", "~(TimeOfDay)", "~(_TimePickerMode)", "~(TextSelection,SelectionChangedCause?)", "Null(ContactEntity*)", "CompanyGatewayEntity*(CompanyGatewayEntity*,@)", "Widget*(BuildContext*,AsyncSnapshot*)", "Null(Response*)", "@(Object*)", "EdgeInsets()", "DataCell0*(String*)", "DataCell0*(DataColumn0*)", "bool*(DataRow0*)", "bool(Element,String,String,_Html5NodeValidator)", "@(EdgeInsets)", "bool*(SystemLogEntity*)", "PointerInterceptor*(BuildContext*)", "Widget*(CompanyEntity*)", "TaxRateEntity*()", "bool(bool?)", "bool*(TaxRateEntity*)", "~(double,double)", "Null(EmailTemplate*)", "Null(String*,String*,String*,String*)", "DataCell(DataColumn)", "_ZoomExitTransition(BuildContext,Animation0,Widget?)", "@(Object?)", "_ZoomEnterTransition(BuildContext,Animation0,Widget?)", "LocalKey(MergeableMaterialItem)", "ByteBuffer(@)", "PopupMenuItem*(EntityAction*)", "List*>*(BuildContext*)", "~(RenderBox?)", "~(RenderBox?,String)", "List*()", "Null(BuildContext*,String*,String*,String*)", "~([Intent?])", "UserSettingsEntityBuilder*(UserSettingsEntityBuilder*)", "~(Size)", "InkWell*(String*)", "CustomSingleChildLayout(BuildContext)", "~(DragDownDetails)", "~(num)", "bool(BuildContext)", "Completer*(Completer*,EditVendor*)", "List*(BuiltMap*)", "UserEntity*(@)", "~(String,String?)", "PopupMenuItem*(String*)", "MapBuilder*(MapBuilder*)", "TokenEntityBuilder*(TokenEntityBuilder*)", "TaxRateEntity*(@)", "TaxRateEntityBuilder*(TaxRateEntityBuilder*)", "MaterialStateProperty?(ButtonStyle?)", "bool(DraggableScrollableNotification)", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltList*,ListUIState*)", "Widget(Widget,Animation0)", "Null(CompanyEntity*)", "InvoiceEntity*(InvoiceEntity*,UpdateRecurringInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteRecurringInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,AddRecurringInvoiceItem*)", "String*(String*,ShowPdfRecurringInvoice*)", "LicenseEntry(int)", "InvoiceEntity*(InvoiceEntity*,UpdateQuoteItem*)", "Element(int)", "InvoiceEntity*(InvoiceEntity*,DeleteQuoteItem*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteItem*)", "String*(String*,ShowPdfQuote*)", "EntityStats*(String*,BuiltMap*)", "String*(InvoiceItemEntityBuilder*)", "Completer*(Completer*,EditProject*)", "Widget(BuildContext,bool)", "Widget(BuildContext,Object?,ScrollController?)", "PaymentTermEntity*(@)", "PaymentTermEntityBuilder*(PaymentTermEntityBuilder*)", "Drag?(Offset)", "List*(String*,BuiltMap*,BuiltList*)", "~(DiagnosticsNode)", "InvoiceEntity*(InvoiceEntity*,UpdateInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,DeleteInvoiceItem*)", "InvoiceEntity*(InvoiceEntity*,AddInvoiceItem*)", "String*(String*,ShowPdfInvoice*)", "GroupEntity*(@)", "Color?(Color?)", "ExpenseEntity*(@)", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,ListUIState*,BuiltMap*,BuiltMap*,StaticState*)", "Future<~>(~)", "Null(BuiltList*)", "~(PhotoViewScaleState)", "InvoiceItemEntity*(BaseEntity*)", "Null(DocumentStateBuilder*)", "DocumentEntityBuilder*(DocumentEntityBuilder*)", "Null(List*)", "DocumentEntity*(String*)", "String(String,String)", "Node0?(DirectoryNode,String,Node0?)", "int*(ExpenseEntity*,ExpenseEntity*)", "List*(BuiltMap*,BuiltMap*)", "~(List)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*)", "FileNode()", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*)", "String*(Match*)", "List*(BuiltMap*,CompanyEntity*,DashboardUISettings*,BuiltMap*,BuiltMap*,BuiltMap*)", "MapBuilder*>*(MapBuilder*>*)", "Null(GoogleSignInAuthentication*)", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,ListUIState*,BuiltMap*)", "PasswordConfirmation*(BuildContext*)", "Future(String,Map)", "InvoiceEntity*(InvoiceEntity*,UpdateCreditItem*)", "Null(Completer*,String*)", "Null(TaskTime*,int*)", "InvoiceEntity*(InvoiceEntity*,DeleteCreditItem*)", "Size(RenderBox,BoxConstraints)", "InvoiceEntity*(InvoiceEntity*,AddCreditItem*)", "UpdateState*()", "MapBuilder*()", "PaymentableEntity*(BaseEntity*)", "bool*(SubscriptionEntityBuilder*)", "CompanyGatewayEntity*(@)", "bool(RenderBox)", "~(ScaleEndDetails)", "int*(BaseEntity*,BaseEntity*)", "~(ScaleUpdateDetails)", "~(ScaleStartDetails)", "ReportSettingsEntityBuilder*(ReportSettingsEntityBuilder*)", "bool*(GatewayTokenEntity*)", "EntityStats*(String*,BuiltMap*)", "Future*(String*,String*)", "bool(BoxHitTestResult)", "~(ChartBehavior<@>)", "Set<~>*()", "bool(ChartBehavior<@>)", "Future*(BuildContext*,AppSidebarMode*)", "~(GestureListener)", "String*(MapBuilder*)", "@(bool)", "Future<@>(@)", "Null(BuildContext*,BuiltMap*)", "@(int*,bool*)", "Map*(String*)", "Completer*(Completer*,EditClient*)", "num*(@,int*)", "Color0*(@,int*)", "bool(InlineSpanSemanticsInformation)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "bool(LayoutView)", "TaskStatusEntity*(TaskStatusEntity*,@)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "int(LayoutView,LayoutView)", "String*(ProjectEntityBuilder*)", "String*(PaymentEntityBuilder*)", "Null(UserCompanyEntity*)", "bool*(HistoryRecord*)", "bool*(CompanyEntity*)", "~(TextSelection)", "~(GestureMode)", "~(Rect)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "double*(PaymentableEntity*)", "~([String*])", "Null(MapEntry*)", "RefreshIndicator*(BuildContext*)", "WebhookEntity*(WebhookEntity*,@)", "TaskEntity*(TaskEntity*,@)", "SubscriptionEntity*(SubscriptionEntity*,@)", "ProjectEntity*(ProjectEntity*,@)", "ProductEntity*(ProductEntity*,@)", "VendorEntity*(VendorEntity*,@)", "UserEntity*(UserEntity*,@)", "PaymentTermEntity*(PaymentTermEntity*,@)", "PaymentEntity*(PaymentEntity*,@)", "StreamSubscription()", "ProductListItem*(BuildContext*,int*)", "UIStateBuilder*(UIStateBuilder*)", "PaymentRefundScreen*(BuildContext*)", "PaymentEditScreen*(BuildContext*)", "MainScreen*(BuildContext*)", "LoginScreen*(BuildContext*)", "String(num?)", "PrefStateBuilder*(PrefStateBuilder*)", "VendorContactEntityBuilder*(VendorContactEntityBuilder*)", "TaskTimeBuilder*(TaskTimeBuilder*)", "@(StreamSubscription)", "String*(String*,ShowPdfCredit*)", "MapBuilder*()", "MapBuilder*()", "num(int?)", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*>*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "MapBuilder*()", "Set(Set,Set)", "ListBuilder*()", "List()", "~(String?,List)", "TextElement1(String)", "int*(TaskTime*,TaskTime*)", "ListBuilder*()", "double(TextElement1)", "Null(String*,@)", "ListBuilder*()", "Route<@>*(RouteSettings*)", "ListBuilder*>*()", "Map()", "ListBuilder*()", "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*)", "ListBuilder*()", "ListBuilder*()", "QuoteScreenBuilder*(BuildContext*)", "QuoteViewScreen*(BuildContext*)", "QuoteEditScreen*(BuildContext*)", "QuoteEmailScreen*(BuildContext*)", "QuotePdfScreen*(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*)", "OnlinePaymentsScreen*(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*)", "BuyNowButtonsScreen*(BuildContext*)", "EmailSettingsScreen*(BuildContext*)", "TemplatesAndRemindersScreen*(BuildContext*)", "CreditCardsAndBanksScreen*(BuildContext*)", "DataVisualizationsScreen*(BuildContext*)", "@(List>)", "List>()", "ListBuilder*()", "ListBuilder*()", "int(int?)", "_PointerState()", "Future*(SharedPreferences*)", "~(PersistenceRepository*)", "SkImage()", "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*,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*)", "UserCompanyState*(int*)", "ListBuilder*()", "ListBuilder*()", "Incrementable(SemanticsObject)", "bool(Point[double?])", "_ButtonSanitizer()", "Null(UserCompanyState*)", "bool(Point,double,double)", "ListBuilder*()", "ListBuilder*()", "String(int?)", "ListBuilder*()", "ListBuilder*()", "Null(BuiltList*)", "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*)", "Color0?(int?)", "ListBuilder*()", "ContactEntity*(ContactEntity*,EditClient*)", "ContactEntity*(ContactEntity*,EditContact*)", "String*(String*,ArchiveClientsSuccess*)", "String*(String*,DeleteClientsSuccess*)", "~(_LineRendererElement)", "String*(String*,ViewClient*)", "String*(String*,AddClientSuccess*)", "String*(String*,ShowPdfClient*)", "Scrollable0(SemanticsObject)", "Palette(Palette())", "String*(String*,SortClients*)", "String*(String*,FilterClients*)", "String*(String*,FilterClientsByState*)", "String*(String*,FilterClientsByCustom1*)", "String*(String*,FilterClientsByCustom2*)", "String*(String*,FilterClientsByCustom3*)", "String*(String*,FilterClientsByCustom4*)", "LabelAndValue(SemanticsObject)", "~(Iterable)", "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*)", "num?(int?)", "ListBuilder*()", "~(SelectionModelType)", "List*(BuiltMap*,BuiltList*,BuiltMap*,StaticState*)", "ListBuilder*()", "Null(ByteData)", "~(String,ChartBehavior0<@>)", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,ListUIState*,BuiltMap*,StaticState*)", "SetMultimapBuilder()", "~(ChartStateBehavior>,AnimationController)", "ClientEntity*(@)", "UserCompanyStateBuilder*(UserCompanyStateBuilder*)", "UserCompanyEntity*(UserCompanyEntity*,UpdateReportSettings*)", "Widget(LegendEntry<@>)", "SetBuilder()", "UserCompanyEntity*(UserCompanyEntity*,SaveAuthUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,ConnecOAuthUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,ConnecGmailUserSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,DisableTwoFactorSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,SaveUserSettingsSuccess*)", "UserCompanyEntity*(UserCompanyEntity*,UpdateCompanyLanguage*)", "CompanyEntityBuilder*(UserCompanyEntityBuilder*)", "int*(int*,LoadCompanySuccess*)", "int*(int*,LoadExpensesSuccess*)", "List*(BuiltMap*,BuiltList*)", "bool*(CompanyEntity*,BuiltMap*,BuiltMap*)", "List*(CompanyEntity*,BuiltMap*,BuiltMap*)", "List*(String*,UserCompanyState*)", "Tappable(SemanticsObject)", "bool*(ProductEntity*)", "bool*(ClientEntity*)", "Padding(Widget)", "int(TableRow)", "Padding(int)", "List(Size)", "MapBuilder()", "bool*(ProjectEntity*)", "ListMultimapBuilder()", "bool*(TaskEntity*)", "ListBuilder()", "IndentingBuiltValueToStringHelper(String)", "ChartContainerRenderObject<@>()", "Map*()", "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*)", "@(Offset)", "Offset()", "double*(double*,double*)", "List*(BuiltMap*,BuiltList*,ListUIState*,String*,bool*)", "double*(String*,BuiltMap*)", "TextField0(SemanticsObject)", "EntityStats*(String*,BuiltMap*)", "Null(String*,CompanyGatewayEntity*)", "Checkable(SemanticsObject)", "InvoiceHistoryEntity*(ActivityEntity*)", "Widget(Color,Animation0,Animation0,double{labelConstraints:BoxConstraints?,labelText:Text?})", "ImageRoleManager(SemanticsObject)", "LiveRegion(SemanticsObject)", "CreditUIStateBuilder*(CreditUIStateBuilder*)", "bool*(bool*,ViewCredit*)", "bool*(bool*,ViewCreditList*)", "bool*(bool*,FilterCreditsByState*)", "bool*(bool*,FilterCredits*)", "bool*(bool*,FilterCreditsByCustom1*)", "bool*(bool*,FilterCreditsByCustom2*)", "bool*(bool*,FilterCreditsByCustom3*)", "bool*(bool*,FilterCreditsByCustom4*)", "int*(int*,UpdateCreditTab*)", "InvitationEntity*(InvitationEntity*)", "int*(int*,EditCredit*)", "int*(int*,EditCreditItem*)", "String*(String*,ArchiveCreditsSuccess*)", "String*(String*,DeleteCreditsSuccess*)", "String*(String*,ViewCredit*)", "String*(String*,AddCreditSuccess*)", "String*(String*,ShowEmailCredit*)", "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*)", "~(PointerUpEvent)", "InvoiceEntity*(InvoiceEntity*,MoveCreditItem*)", "~(PointerMoveEvent)", "Null(String*,GatewayOptionsEntity*)", "InvoiceEntity*(InvoiceEntity*,UpdateCreditClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteCreditsSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddCreditContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveCreditContact*)", "@(Matrix40)", "NotificationListener(BuildContext,BoxConstraints)", "~(int?)", "List*(BuiltMap*,BuiltMap*,BuiltList*,String*,BuiltMap*,List*)", "bool(int,int)", "Matrix40()", "~(JsUrlStrategy?)", "DashboardUIStateBuilder*(DashboardUIStateBuilder*)", "BuiltMap*>*(BuiltMap*>*,UpdateDashboardSelection*)", "~(int?,int?)", "BuiltMap*>*(BuiltMap*>*,SelectCompany*)", "EntityType*(EntityType*,UpdateDashboardEntityType*)", "bool*(bool*,UpdateDashboardSidebar*)", "DirectoryNode?(DirectoryNode,bool)", "RealNode?(DirectoryNode,bool)", "String?(~(Codec))", "String(NumberSymbols)", "@(FileNode)", "Null(String*,Duration*)", "String?(NumberSymbols)", "_Channel()", "_DateFormatLiteralField(String,DateFormat)", "~(FileNode)", "List*(BuiltMap*,BuiltMap*)", "int*(PaymentEntity*,PaymentEntity*)", "_DateFormatPatternField(String,DateFormat)", "FileNode(FileNode)", "List*(BuiltMap*,BuiltMap*)", "_DateFormatQuotedField(String,DateFormat)", "bool(_DateFormatField)", "~(Node0)", "Node0?(DirectoryNode,String,Node0?,int,int)", "DateTime(int,int,int,int,int,int,int,bool)", "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*)", "~(File,Uint8List?,String?,Stream>?)", "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*)", "~(File)", "TickerFuture({from:double?})", "List*(BuiltMap*,BuiltList*,ListUIState*)", "DesignEntity*(@)", "RegExp()", "List(String)", "~(_AnimationDirection)", "Null(BuiltList*)", "DocumentUIStateBuilder*(DocumentUIStateBuilder*)", "bool*(bool*,ViewDocument*)", "bool*(bool*,ViewDocumentList*)", "bool*(bool*,FilterDocumentsByState*)", "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*)", "String*(String*,FilterDocuments*)", "String*(String*,FilterDocumentsByState*)", "String*(String*,FilterDocumentsByCustom1*)", "String*(String*,FilterDocumentsByCustom2*)", "String*(String*,FilterDocumentsByCustom3*)", "String*(String*,FilterDocumentsByCustom4*)", "DocumentEntity*(DocumentEntity*,UpdateDocument*)", "XFile(File)", "MediaType()", "@(HtmlElement)", "DocumentEntity*(@)", "List*(BuiltMap*,BuiltList*,ListUIState*)", "HtmlElement()", "String(List)", "String(String,Color)", "@(~(AnimationStatus))", "~(AnimationStatus)()", "int(String)", "ExpenseUIStateBuilder*(ExpenseUIStateBuilder*)", "bool*(bool*,ViewExpense*)", "bool*(bool*,ViewExpenseList*)", "bool*(bool*,FilterExpensesByState*)", "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*)", "Null(FontFace)", "bool(String,String)", "Null(GoogleAuthInitFailureError)", "@(DateTime)", "List*(BuiltMap*,String*)", "Null(GoogleAuth)", "GoogleSignInTokenData(Map?)", "TargetPlatform?()", "TargetPlatform()", "Null(BuiltList*)", "ExpenseCategoryUIStateBuilder*(ExpenseCategoryUIStateBuilder*)", "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*)", "bool(DiagnosticsNode?)", "bool(StackFrame)", "ErrorDescription(String)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "double*(String*,BuiltMap*)", "ExpenseCategoryEntity*(@)", "String(DiagnosticsNode)", "~(CanvasKit)", "@(Map)", "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*)", "Map()", "~(ParagraphGeometricStyle,ParagraphRuler)", "@(int)", "JsObject(@)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "EntityStats*(BuiltMap*,String*)", "InvoiceUIStateBuilder*(InvoiceUIStateBuilder*)", "bool*(bool*,ViewInvoice*)", "bool*(bool*,ViewInvoiceList*)", "bool*(bool*,FilterInvoicesByState*)", "bool*(bool*,FilterInvoices*)", "bool*(bool*,FilterInvoicesByCustom1*)", "bool*(bool*,FilterInvoicesByCustom2*)", "bool*(bool*,FilterInvoicesByCustom3*)", "bool*(bool*,FilterInvoicesByCustom4*)", "int*(int*,UpdateInvoiceTab*)", "GoogleSignInAccount?/(~)", "int*(int*,EditInvoice*)", "int*(int*,EditInvoiceItem*)", "String*(String*,ArchiveInvoicesSuccess*)", "String*(String*,DeleteInvoicesSuccess*)", "String*(String*,ViewInvoice*)", "String*(String*,AddInvoiceSuccess*)", "String*(String*,ShowEmailInvoice*)", "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*)", "bool*(Element0*)", "InvoiceEntity*(InvoiceEntity*,MoveInvoiceItem*)", "JsArray<@>(@)", "Positioned*(BuildContext*)", "InvoiceEntity*(InvoiceEntity*,UpdateInvoiceClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddInvoiceContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveInvoiceContact*)", "JsFunction(@)", "bool(DiagnosticsNode)", "List*(BuiltMap*,BuiltMap*,BuiltList*,String*,BuiltMap*,List*,String*)", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,ListUIState*,BuiltMap*,String*)", "LicenseParagraph()", "~(AbstractNode)", "String(GestureArenaMember)", "Null(BuiltList*)", "PaymentUIStateBuilder*(PaymentUIStateBuilder*)", "bool*(bool*,ViewPayment*)", "bool*(bool*,ViewPaymentList*)", "bool*(bool*,FilterPaymentsByState*)", "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*,FilterPaymentsByCustom1*)", "String*(String*,FilterPaymentsByCustom2*)", "String*(String*,FilterPaymentsByCustom3*)", "String*(String*,FilterPaymentsByCustom4*)", "PaymentEntity*(PaymentEntity*,RestorePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,ArchivePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,DeletePaymentsSuccess*)", "PaymentEntity*(PaymentEntity*,UpdatePayment*)", "_GestureArena()", "~(PointerDataPacket)", "int/(@)", "int(ParagraphRuler,ParagraphRuler)", "List*(SelectionState*,BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,BuiltMap*,ListUIState*)", "EntityStats*(String*,BuiltMap*,BuiltMap*)", "PaymentEntity*(@)", "bool(SurfaceFrame,CkCanvas)", "_RandomAccessFile(@)", "Drag?()", "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*)", "~(int,bool(FlutterHtmlKeyboardEvent))", "~(_TapTracker)", "Map<~(PointerEvent0),Matrix4?>()", "~(ToastFuture)", "List*(BuiltMap*,BuiltList*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "InvoiceItemEntity*(String*)", "~(~(PointerEvent0),Matrix4?)", "_CombiningGestureArenaMember()", "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*)", "LicensePage(BuildContext)", "IgnorePointer(BuildContext)", "List*(BuiltMap*,BuiltList*,BuiltMap*)", "List*(BuiltMap*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*)", "ProductEntity*(@)", "SlideTransition(int)", "_LicenseData(_LicenseData,LicenseEntry)", "_LicenseData(_LicenseData)", "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*)", "Animation0(int)", "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*)", "LayoutBuilder(BuildContext,AsyncSnapshot<_LicenseData>)", "StatefulWidget(BuildContext,BoxConstraints)", "Future<~>(AnimationStatus)", "List*(BuiltMap*,BuiltList*,BuiltMap*,BuiltMap*,String*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*,BuiltMap*)", "~(Object,StackTrace,Object?)", "Null(String*,ProjectEntity*)", "ProjectEntity*(@)", "QuoteUIStateBuilder*(QuoteUIStateBuilder*)", "bool*(bool*,ViewQuote*)", "bool*(bool*,ViewQuoteList*)", "bool*(bool*,FilterQuotesByState*)", "bool*(bool*,FilterQuotes*)", "bool*(bool*,FilterQuotesByCustom1*)", "bool*(bool*,FilterQuotesByCustom2*)", "bool*(bool*,FilterQuotesByCustom3*)", "bool*(bool*,FilterQuotesByCustom4*)", "int*(int*,UpdateQuoteTab*)", "~(String,Map)", "int*(int*,EditQuote*)", "int*(int*,EditQuoteItem*)", "String*(String*,ArchiveQuotesSuccess*)", "String*(String*,DeleteQuotesSuccess*)", "String*(String*,ViewQuote*)", "String*(String*,AddQuoteSuccess*)", "String*(String*,ShowEmailQuote*)", "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*)", "SynchronousFuture()", "InvoiceEntity*(InvoiceEntity*,MoveQuoteItem*)", "NumberFormat()", "@(NumberFormat)", "InvoiceEntity*(InvoiceEntity*,UpdateQuoteClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteQuotesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveQuoteContact*)", "Center(BuildContext,int?,Widget?)", "Null(Uint8List)", "RecurringExpenseUIStateBuilder*(RecurringExpenseUIStateBuilder*)", "bool*(bool*,ViewRecurringExpense*)", "bool*(bool*,ViewRecurringExpenseList*)", "bool*(bool*,FilterRecurringExpensesByState*)", "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*,FilterRecurringExpensesByCustom1*)", "String*(String*,FilterRecurringExpensesByCustom2*)", "String*(String*,FilterRecurringExpensesByCustom3*)", "String*(String*,FilterRecurringExpensesByCustom4*)", "ExpenseEntity*(ExpenseEntity*,RestoreRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,ArchiveRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,DeleteRecurringExpensesSuccess*)", "ExpenseEntity*(ExpenseEntity*,UpdateRecurringExpense*)", "_PackageListTile(MapEntry)", "int(String,String)", "RecurringInvoiceUIStateBuilder*(RecurringInvoiceUIStateBuilder*)", "bool*(bool*,ViewRecurringInvoice*)", "bool*(bool*,ViewRecurringInvoiceList*)", "bool*(bool*,FilterRecurringInvoicesByState*)", "bool*(bool*,FilterRecurringInvoices*)", "bool*(bool*,FilterRecurringInvoicesByCustom1*)", "bool*(bool*,FilterRecurringInvoicesByCustom2*)", "bool*(bool*,FilterRecurringInvoicesByCustom3*)", "bool*(bool*,FilterRecurringInvoicesByCustom4*)", "int*(int*,UpdateRecurringInvoiceTab*)", "SynchronousFuture()", "int*(int*,EditRecurringInvoice*)", "int*(int*,EditRecurringInvoiceItem*)", "String*(String*,ArchiveRecurringInvoicesSuccess*)", "String*(String*,DeleteRecurringInvoicesSuccess*)", "String*(String*,ViewRecurringInvoice*)", "String*(String*,AddRecurringInvoiceSuccess*)", "String*(String*,ShowEmailRecurringInvoice*)", "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*)", "Widget(Color[bool?,Function?])", "InvoiceEntity*(InvoiceEntity*,MoveRecurringInvoiceItem*)", "Widget(Color)", "List(List)", "InvoiceEntity*(InvoiceEntity*,UpdateRecurringInvoiceClient*)", "InvoiceEntity*(InvoiceEntity*,RestoreRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,ArchiveRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,DeleteRecurringInvoicesSuccess*)", "InvoiceEntity*(InvoiceEntity*,AddRecurringInvoiceContact*)", "InvoiceEntity*(InvoiceEntity*,RemoveRecurringInvoiceContact*)", "Localizations(BuildContext,int)", "Null(SkDeletable)", "List*(SelectionState*,BuiltMap*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*)", "~(KeyboardEvent)", "Future<~>(CacheObject?)", "List>(NavigatorState,String)", "SettingsUIState*(SettingsUIState*,ViewSettings*)", "MaterialPageRoute<~>(RouteSettings)", "SettingsUIState*(SettingsUIState*,UpdateCompany*)", "SettingsUIState*(SettingsUIState*,UpdateSettings*)", "SettingsUIState*(SettingsUIState*,UpdateUserSettings*)", "SettingsUIState*(SettingsUIState*,ResetSettings*)", "SettingsUIState*(SettingsUIState*,SaveCompanySuccess*)", "SettingsUIState*(SettingsUIState*,SaveGroupSuccess*)", "SettingsUIState*(SettingsUIState*,SaveClientSuccess*)", "SettingsUIState*(SettingsUIState*,SaveAuthUserSuccess*)", "SettingsUIState*(SettingsUIState*,FilterSettings*)", "SettingsUIState*(SettingsUIState*,ClearSettingsFilter*)", "SettingsUIState*(SettingsUIState*,UpdateSettingsTab*)", "SettingsUIState*(SettingsUIState*,UpdateSettingsTemplate*)", "SettingsUIState*(SettingsUIState*,UpdatedSetting*)", "StaticStateBuilder*(StaticStateBuilder*)", "CurrencyEntity*(@)", "SizeEntity*(@)", "IndustryEntity*(@)", "TimezoneEntity*(@)", "DateFormatEntity*(@)", "LanguageEntity*(@)", "PaymentTypeEntity*(@)", "CountryEntity*(@)", "GatewayEntity*(@)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "List*(BuiltMap*)", "BuiltMap*(List<@>*)", "FontEntity*(@)", "BlockSemantics(BuildContext)", "WillPopScope(BuildContext)", "List(BuildContext,_ActionLevel)", "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*)", "AnimatedSwitcher(BuildContext,Object?,Widget?)", "CacheInfoRepository(bool)", "MouseRegion(BuildContext,ScrollController)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "SubscriptionEntity*(@)", "MaterialRectArcTween(Rect?,Rect?)", "Widget(BuildContext,~())", "MaterialPageRoute<0^>(RouteSettings,Widget(BuildContext))", "Null(BuiltList*)", "TaskUIStateBuilder*(TaskUIStateBuilder*)", "bool*(bool*,ViewTask*)", "bool*(bool*,ViewTaskList*)", "bool*(bool*,FilterTasksByState*)", "BorderRadiusTween(@)", "bool*(bool*,FilterTasksByCustom1*)", "bool*(bool*,FilterTasksByCustom2*)", "bool*(bool*,FilterTasksByCustom3*)", "bool*(bool*,FilterTasksByCustom4*)", "int*(int*,UpdateTaskTab*)", "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*,DeleteTaskSuccess*)", "TaskEntity*(TaskEntity*,UpdateTask*)", "bool*(TaskEntityBuilder*)", "~(String,FormElement)", "double(_Diagonal)", "List*(BuiltMap*,String*,BuiltMap*,BuiltMap*,BuiltMap*)", "~(ForcePressGestureRecognizer)", "ForcePressGestureRecognizer()", "TaskEntity*(@)", "@(TextInputCommand)", "0^?(0^?(ButtonStyle?))", "0^?(MaterialStateProperty<0^>?(ButtonStyle?))", "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*)", "MaterialStateProperty?(ButtonStyle?)", "MaterialStateProperty?(ButtonStyle?)", "TextInputCommand()", "List*(BuiltMap*,BuiltList*,StaticState*,BuiltMap*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "int*(String*,BuiltMap*)", "TaskStatusEntity*(@)", "MaterialStateProperty?(ButtonStyle?)", "~(_TransparentTapGestureRecognizer)", "MaterialStateProperty?(ButtonStyle?)", "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*)", "_TransparentTapGestureRecognizer()", "MaterialStateProperty?(ButtonStyle?)", "MouseCursor0?(Set)", "~(DragStartDetails,DragUpdateDetails)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "MouseCursor0?(ButtonStyle?)", "~(EditingState?)", "Color?(ButtonStyle?)", "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*)", "~([Duration?])", "VisualDensity?(ButtonStyle?)", "MaterialTapTargetSize?(ButtonStyle?)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "TokenEntity*(@)", "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*)", "List(_TableElementRow)", "Duration?(ButtonStyle?)", "AppLayout*(AppLayout*,UpdateUserPreferences*)", "ModuleLayout*(ModuleLayout*,UpdateUserPreferences*)", "ModuleLayout*(ModuleLayout*,SwitchListTableLayout*)", "int*(int*,UpdateUserPreferences*)", "RenderBox(Element0)", "bool*(bool*,TogglePreviewSidebar*)", "String*(String*,UpdateUserPreferences*)", "BuiltMap*(BuiltMap*,UpdateUserPreferences*)", "CompanyPrefStateBuilder*(CompanyPrefStateBuilder*)", "BuiltList*(BuiltList*,PopLastHistory*)", "bool?(ButtonStyle?)", "BuiltList*(BuiltList*,ViewDashboard*)", "BuiltList*(BuiltList*,ViewReports*)", "BuiltList*(BuiltList*,ViewSettings*)", "BuiltList*(BuiltList*,ViewClient*)", "BuiltList*(BuiltList*,EditClient*)", "BuiltList*(BuiltList*,ViewProduct*)", "BuiltList*(BuiltList*,EditProduct*)", "BuiltList*(BuiltList*,ViewInvoice*)", "BuiltList*(BuiltList*,EditInvoice*)", "BuiltList*(BuiltList*,ViewPayment*)", "BuiltList*(BuiltList*,EditPayment*)", "BuiltList*(BuiltList*,ViewQuote*)", "BuiltList*(BuiltList*,EditQuote*)", "BuiltList*(BuiltList*,ViewTask*)", "BuiltList*(BuiltList*,EditTask*)", "BuiltList*(BuiltList*,ViewProject*)", "BuiltList*(BuiltList*,EditProject*)", "BuiltList*(BuiltList*,ViewVendor*)", "BuiltList*(BuiltList*,EditVendor*)", "BuiltList*(BuiltList*,ViewExpense*)", "BuiltList*(BuiltList*,EditExpense*)", "BuiltList*(BuiltList*,ViewCompanyGateway*)", "BuiltList*(BuiltList*,EditCompanyGateway*)", "BuiltList*(BuiltList*,ViewUser*)", "BuiltList*(BuiltList*,EditUser*)", "BuiltList*(BuiltList*,ViewGroup*)", "BuiltList*(BuiltList*,EditGroup*)", "BuiltList*(BuiltList*,ViewRecurringExpense*)", "BuiltList*(BuiltList*,EditRecurringExpense*)", "BuiltList*(BuiltList*,ViewSubscription*)", "BuiltList*(BuiltList*,EditSubscription*)", "BuiltList*(BuiltList*,ViewTaskStatus*)", "BuiltList*(BuiltList*,EditTaskStatus*)", "BuiltList*(BuiltList*,ViewExpenseCategory*)", "BuiltList*(BuiltList*,EditExpenseCategory*)", "BuiltList*(BuiltList*,ViewRecurringInvoice*)", "BuiltList*(BuiltList*,EditRecurringInvoice*)", "BuiltList*(BuiltList*,ViewWebhook*)", "BuiltList*(BuiltList*,EditWebhook*)", "BuiltList*(BuiltList*,ViewToken*)", "BuiltList*(BuiltList*,EditToken*)", "BuiltList*(BuiltList*,ViewPaymentTerm*)", "BuiltList*(BuiltList*,EditPaymentTerm*)", "BuiltList*(BuiltList*,EditDesign*)", "BuiltList*(BuiltList*,ViewCredit*)", "BuiltList*(BuiltList*,EditCredit*)", "BuiltList*(BuiltList*,FilterByEntity*)", "int*(int*,UpdateCurrentRoute*)", "String*(String*,FilterCompany*)", "String*(String*,ViewDashboard*)", "int*(int*,FilterCompany*)", "int*(int*,ViewDashboard*)", "String*(String*,UpdateCurrentRoute*)", "int*(int*,SelectCompany*)", "BuiltList*(BuiltList*,PreviewEntity*)", "AlignmentGeometry?(ButtonStyle?)", "BuiltList*(BuiltList*,ClearPreviewStack*)", "BuiltList*(BuiltList*,PopPreviewStack*)", "BuiltList*(BuiltList*,ClearEntityFilter*)", "BuiltList*(BuiltList*,FilterByEntity*)", "BuiltList*(BuiltList*,PopFilterStack*)", "String*(ClientEntityBuilder*)", "String*(ExpenseEntityBuilder*)", "String*(TaskEntityBuilder*)", "String*(VendorEntityBuilder*)", "InteractiveInkFeatureFactory?(ButtonStyle?)", "SkTextStyle()", "~(NextFocusIntent)", "~(PreviousFocusIntent)", "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*)", "~(DirectionalFocusIntent)", "~(String,bool)", "Iterable(_TableElementRow)", "bool(List)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,String*)", "bool(_TableElementRow)", "bool(bool)", "TableRow(int)", "String?(String)", "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*)", "Element0(Widget)", "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*)", "Rect()(RenderBox)", "_TableElementRow(TableRow)", "bool(NotoFont)", "List*(BuiltMap*,BuiltList*,BuiltMap*,StaticState*)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*,BuiltMap*,StaticState*)", "EntityStats*(String*,BuiltMap*)", "Null(String*,VendorEntity*)", "double*(String*,String*,BuiltMap*,BuiltList*)", "VendorEntity*(@)", "CalendarDatePicker()", "Form()", "Flex(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*)", "Decoration?(TableRow)", "Widget(BuildContext,Animation0,Animation0)", "bool(TableRow)", "List*(SelectionState*,BuiltMap*,BuiltList*,ListUIState*)", "WebhookEntity*(@)", "Element0?()", "Null(String)", "List*>*(BuildContext*)", "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*)", "~(RenderBox)", "~(ActivateIntent)", "~(ButtonActivateIntent)", "BottomAppBar*(BuildContext*,Store*)", "_SingleChildViewport(BuildContext,ViewportOffset)", "KeyEventResult(FocusNode,RawKeyEvent)", "BuiltList*(Store*)", "Container*(BuildContext*,BuiltList*)", "CheckboxListTile*(String*)", "RenderObjectWidget(Widget)", "InputDecorator(BuildContext)", "Rect()?(RenderBox)", "~(PointerHoverEvent)", "ConfirmEmail*(BuildContext*,ConfirmEmailVM*)", "~(_TrackTapGestureRecognizer)", "Padding*(TextButton*)", "~(Event?)", "MultiSelectList*(BuildContext*)", "@(@,String)", "bool(InkHighlight?)", "Padding*(MapEntry*)", "@(String)", "_TrackTapGestureRecognizer()", "DocumentTile*(DocumentEntity*)", "Element(Node)", "String?(int)", "Container*(BuildContext*,String*)", "Text*(BuildContext*,String*,Object*)", "~(_ThumbPressGestureRecognizer)", "_ThumbPressGestureRecognizer()", "~(PointerSignalEvent)", "@(EntityAction*)", "StatelessWidget*(EntityAction*)", "ByteBuffer/(@)", "ListTileTheme(BuildContext)", "EntityDropdownDialog*(BuildContext*)", "Null(SelectableEntity*[bool*])", "@(BuildContext*,Completer<@>*)", "bool(LayoutChangedNotification)", "List*(TextEditingValue*)", "SelectableEntity*(String*)", "bool*(SelectableEntity*)", "String*(SelectableEntity*)", "DecoratedFormField*(BuildContext*,TextEditingController*,FocusNode*,~()*)", "Null(~())", "Theme*(BuildContext*,~(SelectableEntity*)*,Iterable*)", "Container*(BuildContext*,int*)", "int?(Widget,int)", "_EntityListTile*(BuildContext*,int*)", "PopupMenuButton*(BuildContext*,int*)", "ShapeBorderTween(@)", "List*>*(BuildContext*)", "PopupMenuItem*(EntityType*)", "bool(ScrollUpdateNotification)", "Widget(BuildContext,ViewportOffset)", "Null(Color*)", "IOSScrollViewFlingVelocityTracker(PointerEvent0)", "List*>*(BuildContext*)", "PopupMenuItem*(int*)", "Container(BuildContext,Widget?)", "PageTransitionsBuilder?(TargetPlatform)", "DataRow*(String*)", "IgnorePointer(BuildContext,Widget?)", "MediaQuery*(BuildContext*,Widget*)", "DataRow?()", "Card(BuildContext,BoxConstraints)", "HistoryDrawer*(BuildContext*,AppDrawerVM*)", "Actions(BuildContext)", "ContactEntity*(InvitationEntity*)", "String*(ContactEntity*)", "RestorationScope(BuildContext,Widget?)", "Opacity(BuildContext,Widget?)", "~(RestorableProperty)", "Null(RestorationBucket?)", "~(_DragInfo,Offset,Offset)", "DropdownMenuItem*(TaxRateEntity*)", "bool(OverscrollIndicatorNotification)", "ListTile*(BuildContext*,BoxConstraints*)", "RefreshProgressIndicator(BuildContext,Widget?)", "Widget*(BuildContext*,Store*)", "Future<~>(PointerEvent0)", "bool*(UserCompanyState*)", "PopupMenuItem*(CompanyEntity*)", "DropdownMenuItem*(CompanyEntity*)", "Future*()", "ContactUsDialog*(BuildContext*)", "UpdateDialog*(BuildContext*)", "PlatformViewSurface(BuildContext,PlatformViewController)", "HealthCheckDialog*(BuildContext*)", "Future*(@)", "MenuDrawer*(BuildContext*,MenuDrawerVM*)", "Null(BuildContext*,int*,CompanyEntity*)", "_HtmlElementViewController(PlatformViewCreationParams)", "Widget(Widget,int,Animation0)", "ExpansionPanel*(SystemLogEntity*)", "ListTile*(BuildContext*,bool*)", "Material(BuildContext,Widget?)", "Viewport(BuildContext,ViewportOffset)", "MapEntry>(@,@)", "Rect*()*(RenderBox*)", "bool*(BuildContext*)", "Rect*()", "~(AnimationStatus*)", "String(Object?)", "DataRow0*()", "Card*(BuildContext*,BoxConstraints*)", "_RouteEntry(Route<@>)", "~(BaseEntity*)", "RenderObjectWidget*()", "@(@,@)", "@(Rect)", "DataColumn0*(String*)", "int*(int*)", "bool*(EntityAction*)", "@(_StandardBottomSheet)", "OutlinedButton*(EntityAction*)", "PopupMenuButton*(BuildContext*,int*)", "_StandardBottomSheet()", "~(Node,Node?)", "CustomMultiChildLayout(BuildContext,Widget?)", "TextButton*(String*)", "@(Store*)", "Container*(BuildContext*,Store*)", "LoginView*(BuildContext*,LoginVM*)", "~({context:BuildContext*,isSignUp:bool*})", "Future*(BuildContext*,Completer*{oneTimePassword:String*,secret:String*,url:String*})", "~(DragEndDetails{isClosing:bool?})", "Future*(BuildContext*,Completer*)", "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*})", "Align(BuildContext,Widget?)", "EntityList*(BuildContext*,ClientListVM*)", "ClientListItem*(BuildContext*,int*)", "bool(OverlayEntry)", "ClientPdfVM*(Store*)", "ClientPdfView*(BuildContext*,ClientPdfVM*)", "SurfaceScene()", "ClientScreen*(BuildContext*,ClientScreenVM*)", "ContactEditDetails*(BuildContext*)", "ContactListTile0*(ContactEntity*)", "ClientEditContactsVM*(Store*)", "ClientEditContacts*(BuildContext*,ClientEditContactsVM*)", "Null(ContactEntity*,int*)", "ClientEditVM*(Store*)", "ClientEdit*(BuildContext*,ClientEditVM*)", "@(ClientEntity*)", "~(int,@)", "double(Set)", "bool(Route<@>?)", "Null(Map)", "_Future<@>?()", "int(_PaintRequest,_PaintRequest)", "bool*(LedgerEntity*)", "Null(GatewayTokenEntity*)", "TokenMeta*(GatewayTokenEntity*)", "ClientViewVM*(Store*)", "ClientView*(BuildContext*,ClientViewVM*)", "int(_PersistedSurfaceMatch,_PersistedSurfaceMatch)", "Map(Map)", "~(List,TextDirection,double)", "CompanyGatewayListItem*(String*)", "CompanyGatewayList*(BuildContext*,CompanyGatewayListVM*)", "CompanyGatewayScreen*(BuildContext*,CompanyGatewayScreenVM*)", "GlobalKey>(Widget)", "GatewayConfigField*(String*)", "InputDecorator(BuildContext,Widget?)", "CompanyGatewayEditVM*(Store*)", "CompanyGatewayEdit*(BuildContext*,CompanyGatewayEditVM*)", "CompanyGatewayViewVM*(Store*)", "CompanyGatewayView*(BuildContext*,CompanyGatewayViewVM*)", "Semantics(BuildContext,Widget?)", "EmailCreditVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailCreditVM*)", "TextField(FormFieldState)", "EntityList*(BuildContext*,CreditListVM*)", "CreditListItem*(BuildContext*,int*)", "CreditPdfVM*(Store*)", "InvoicePdfView*(BuildContext*,CreditPdfVM*)", "CreditScreen*(BuildContext*,CreditScreenVM*)", "ThemeDataTween(@)", "ThemeData()", "Map(List<@>)", "CreditEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,CreditEditDetailsVM*)", "TimeOfDay(int)", "Offset(double)", "~(List<_TappableLabel>?)", "CreditEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,CreditEditItemsVM*)", "Future<@>(_Pending)", "CreditEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,CreditEditNotesVM*)", "CreditEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,CreditEditPDFVM*)", "CreditEditVM*(Store*)", "CreditEdit*(BuildContext*,CreditEditVM*)", "_ToggleButton(int)", "~([TapUpDetails?])", "CreditViewVM*(Store*)", "InvoiceView*(BuildContext*,CreditViewVM*)", "Future(Uint8List{allowUpscaling:bool,cacheHeight:int?,cacheWidth:int?})", "EdgeInsetsGeometry(EdgeInsetsGeometry,ShapeBorder)", "~(SelectionModel<@>*)", "bool*(SeriesDatum<@>*)", "Null(SeriesDatum<@>*)", "InkWell*(ChartDataGroup*)", "bool*(bool*,StopSaving*)", "~(BeforeUnloadEvent)", "DateRange*()", "DropdownMenuItem*(DateRangeComparison*)", "Null(DateRangeComparison*)", "DateRangeComparison*()", "DashboardDateRangePicker*(BuildContext*)", "Material*(BuildContext*,BoxConstraints*)", "List*>*(BuildContext*)", "PopupMenuItem*(DateRange*)", "ShapeBorder(ShapeBorder)", "Null(ChartDataGroup*)", "TextStyleTween(@)", "Matrix4Tween(@)", "BoxConstraintsTween(@)", "SettingsWizard*(BuildContext*)", "IconTheme(BuildContext)", "Widget*(BuildContext*,DashboardVM*)", "@(DashboardSettings*)", "Null(EntityType*,List*)", "String(ShapeBorder)", "bool(_HeroFlight)", "String/(@)", "_LiveImage()", "~(ImageInfo?,bool)", "EntityList*(BuildContext*,DesignListVM*)", "DesignListItem*(BuildContext*,int*)", "DesignScreen*(BuildContext*,DesignScreenVM*)", "~(DesignEntity*)", "Future<~>(Object,StackTrace?)", "~(Zone,ZoneDelegate,Zone,Object,StackTrace)", "Future*(Response*)", "DesignEditVM*(Store*)", "DesignEdit*(BuildContext*,DesignEditVM*)", "DesignViewVM*(Store*)", "DesignView*(BuildContext*,DesignViewVM*)", "EntityList*(BuildContext*,DocumentListVM*)", "DocumentListItem*(BuildContext*,int*)", "DocumentScreen*(BuildContext*,DocumentScreenVM*)", "Widget(BuildContext,Animation0,HeroFlightDirection,BuildContext,BuildContext)", "DocumentEditVM*(Store*)", "DocumentEdit*(BuildContext*,DocumentEditVM*)", "DocumentViewVM*(Store*)", "DocumentView*(BuildContext*,DocumentViewVM*)", "Null(Map>?)", "@(Object)", "~(Object,StackTrace?)?(ImageStreamListener)", "~(ImageChunkEvent)?(ImageStreamListener)", "ExpenseEditVM*(Store*)", "ExpenseEdit*(BuildContext*,ExpenseEditVM*)", "EntityList*(BuildContext*,ExpenseListVM*)", "@(StackTrace)", "Paint(BoxShadow)", "ExpenseScreen*(BuildContext*,ExpenseScreenVM*)", "Padding*(ExpenseScheduleEntity*)", "ExpenseViewVM*(Store*)", "ExpenseView*(BuildContext*,ExpenseViewVM*)", "ExpenseCategoryEditVM*(Store*)", "ExpenseCategoryEdit*(BuildContext*,ExpenseCategoryEditVM*)", "EntityList*(BuildContext*,ExpenseCategoryListVM*)", "ExpenseCategoryListItem*(BuildContext*,int*)", "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*(ContactEntity*,ContactEntity*)", "_ContactListTile*(ContactEntity*)", "InvoiceEditContactsVM*(Store*)", "InvoiceEditContacts*(BuildContext*,InvoiceEditContactsVM*)", "Null(InvitationEntity*)", "~(_HeroFlight)", "Path(BoxShadow)", "Null(PdfDocument*)", "DiagnosticsNode(InlineSpan)", "InvoiceEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,InvoiceEditDetailsVM*)", "ItemEditDetails*(BuildContext*)", "Future*(Duration*)", "~(StatefulElement,Object)", "~(RenderSemanticsGestureHandler)", "~(ScaleGestureRecognizer)", "ScaleGestureRecognizer()", "~(int,SemanticsAction,ByteData?)", "~(PanGestureRecognizer)", "PanGestureRecognizer()", "InvoiceEditItemsVM*(Store*)", "StatefulWidget*(BuildContext*,InvoiceEditItemsVM*)", "InvoiceEditNotesVM*(Store*)", "InvoiceEditNotes*(BuildContext*,InvoiceEditNotesVM*)", "InvoiceEditPDFVM*(Store*)", "InvoiceEditPDF*(BuildContext*,InvoiceEditPDFVM*)", "InvoiceEditVM*(Store*)", "InvoiceEdit*(BuildContext*,InvoiceEditVM*)", "~(DomException)", "EmailInvoiceVM*(Store*)", "InvoiceEmailView*(BuildContext*,EmailInvoiceVM*)", "EntityList*(BuildContext*,InvoiceListVM*)", "InvoicePdfVM*(Store*)", "InvoicePdfView*(BuildContext*,InvoicePdfVM*)", "String(double,double,String)", "InvoiceScreen*(BuildContext*,InvoiceScreenVM*)", "Object?(int,Element0?)", "_InvitationListTile*(InvitationEntity*)", "@(DocumentEntity*)", "int*(ActivityEntity*,ActivityEntity*)", "Element0?(Element0)", "InvoiceItemListTile*(BuildContext*)", "Widget*(String*,double*)", "Null(String*,double*)", "Padding*(InvoiceScheduleEntity*)", "InvoiceViewVM*(Store*)", "InvoiceView*(BuildContext*,InvoiceViewVM*)", "Null(BuildContext*,DocumentEntity*)", "bool(FormFieldState<@>)", "Size()", "PaymentEditVM*(Store*)", "PaymentEdit*(BuildContext*,PaymentEditVM*)", "bool(_ReadingOrderSortData)", "EntityList*(BuildContext*,PaymentListVM*)", "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*)", "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*,StaticState*)", "ClientReportFields*(String*)", "bool*(ClientReportFields*)", "double?()", "@(Map)", "List<_ReadingOrderSortData>(_ReadingOrderSortData,Iterable<_ReadingOrderSortData>)", "CreditReportFields*(String*)", "bool*(CreditReportFields*)", "int(_ReadingOrderDirectionalGroupData,_ReadingOrderDirectionalGroupData)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*)", "DocumentReportFields*(String*)", "bool*(DocumentReportFields*)", "List*(BaseEntity*,DocumentEntity*)", "Null(String*,ProductEntity*)", "~(RawKeyEvent)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ExpenseReportFields*(String*)", "bool*(ExpenseReportFields*)", "Rect(_ReadingOrderSortData)", "List(BuildContext)", "InvoiceItemReportFields*(String*)", "bool*(InvoiceItemReportFields*)", "Object()", "InvoiceReportFields*(String*)", "bool*(InvoiceReportFields*)", "StackTrace()", "Set(_ReadingOrderSortData)", "TaxRateReportFields*(String*)", "bool*(TaxRateReportFields*)", "bool(TraversalDirection)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "PaymentReportFields*(String*)", "bool*(PaymentReportFields*)", "Rect(Rect?,TextBox)", "TaxRateReportFields0*(String*)", "bool*(TaxRateReportFields0*)", "~([Object?])", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ProductReportFields*(String*)", "bool*(ProductReportFields*)", "String(@)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "ProfitAndLossReportFields*(String*)", "bool*(ProfitAndLossReportFields*)", "MouseCursor0(MouseTrackerAnnotation)", "QuoteItemReportFields*(String*)", "bool*(QuoteItemReportFields*)", "~(MouseTrackerAnnotation,Matrix4)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "QuoteReportFields*(String*)", "bool*(QuoteReportFields*)", "bool(MouseTrackerAnnotation)", "bool(Element)", "String*(@,int*)", "bool(_DirectionalPolicyDataEntry)", "~(_FocusTraversalGroupInfo)", "DateTime*(@,int*)", "Expanded*(BuildContext*)", "_Future<@>(@)", "bool(RawKeyEvent)", "ReportColumnType*(String*)", "@(String*,String*)", "bool*(List*)", "String*(List*)", "ReportsScreen*(BuildContext*,ReportsScreenVM*)", "Null(String*,bool*)", "DiagnosticsNode(FocusNode)", "Null(BuildContext*,List*)", "Null({chart:String*,customEndDate:String*,customStartDate:String*,group:String*,report:String*,selectedGroup:String*,subgroup:String*})", "Null(List*)", "GroupTotals*(ReportResult*,ReportsUIState*,ReportSettingsEntity*,BuiltMap*,CompanyEntity*)", "ReportResult*(UserCompanyEntity*,ReportsUIState*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,BuiltMap*,StaticState*)", "TaskReportFields*(String*)", "bool*(TaskReportFields*)", "bool(KeyData)", "CheckboxListTile*(int*)", "bool*(CompanyEntityBuilder*)", "AccountManagement*(BuildContext*,AccountManagementVM*)", "~(Blob?)", "Null(BuildContext*,String*,String*)", "BuyNowButtons*(BuildContext*,BuyNowButtonsVM*)", "SwitchListTile*(RegistrationFieldEntity*)", "RegistrationFieldEntityBuilder*(RegistrationFieldEntityBuilder*)", "ClientPortal*(BuildContext*,ClientPortalVM*)", "CompositedTransformTarget(BuildContext,ViewportOffset)", "Row*(BuildContext*)", "CompanyDetails*(BuildContext*,CompanyDetailsVM*)", "CreditCardsAndBanks*(BuildContext*,CreditCardsAndBanksVM*)", "CustomFields*(BuildContext*,CustomFieldsVM*)", "DataVisualizations*(BuildContext*,DataVisualizationsVM*)", "Widget*(BuildContext*,AsyncSnapshot<@>*)", "ListTile*(BuildContext*)", "~(MapBuilder*)", "FormColorPicker*(String*)", "TextEditingValue(TextEditingValue,TextInputFormatter)", "DeviceSettings*(BuildContext*,DeviceSettingsVM*)", "OneSequenceGestureRecognizer(Factory)", "Future<~>(bool)", "Future*(BuildContext*,String*)", "Null(BuildContext*,int*)", "Future*(BuildContext*,AppLayout*)", "Null(BuildContext*,bool*)", "EmailSettings*(BuildContext*,EmailSettingsVM*)", "TransformLayer?(PaintingContext,Offset)", "ExpenseSettings*(BuildContext*,ExpenseSettingsVM*)", "bool(SliverHitTestResult{crossAxisPosition!double,mainAxisPosition!double})", "GeneratedNumbers*(BuildContext*,GeneratedNumbersVM*)", "Set*>*(PreImportResponse*)", "PreImportResponse*()", "~(ImportType*)", "ImportType*()", "Future>(Map)", "DropdownMenuItem*(ImportType*)", "List*(BuildContext*)", "Text*(String*)", "ImportExport*(BuildContext*,ImportExportVM*)", "InvoiceDesign*(BuildContext*,InvoiceDesignVM*)", "Null(BuildContext*,List*)", "LocalizationSettings*(BuildContext*,LocalizationSettingsVM*)", "OnlinePayments*(BuildContext*,OnlinePaymentsVM*)", "ProductSettings*(BuildContext*,ProductSettingsVM*)", "SettingsList*(BuildContext*,SettingsListVM*)", "Null(BuildContext*,String*,int*)", "SettingsScreen*(BuildContext*,SettingsScreenVM*)", "ToggleButtons*(BuildContext*,BoxConstraints*)", "TaskSettings*(BuildContext*,TaskSettingsVM*)", "TaxSettings*(BuildContext*,TaxSettingsVM*)", "bool*(EmailTemplate*)", "DropdownMenuItem*(EmailTemplate*)", "Future<~>(@)", "TemplatesAndReminders*(BuildContext*,TemplatesAndRemindersVM*)", "_EnableTwoFactor*(BuildContext*)", "~(@,StackTrace)", "UserDetails*(BuildContext*,UserDetailsVM*)", "@(UserEntity*)", "Future<~>(double)", "Future*(Object*)", "WorkflowSettings*(BuildContext*,WorkflowSettingsVM*)", "HitTestResult(Offset)", "Future()", "SubscriptionEditVM*(Store*)", "SubscriptionEdit*(BuildContext*,SubscriptionEditVM*)", "EntityList*(BuildContext*,SubscriptionListVM*)", "SubscriptionListItem*(BuildContext*,int*)", "SubscriptionScreen*(BuildContext*,SubscriptionScreenVM*)", "SubscriptionViewVM*(Store*)", "SubscriptionView*(BuildContext*,SubscriptionViewVM*)", "HitTestResult()", "bool(RenderSliver)", "TaskEditDetailsVM*(Store*)", "StatefulWidget*(BuildContext*,TaskEditDetailsVM*)", "Uint8List(@,@)", "TimeEditDetails*(BuildContext*)", "TaskTimeListTile*(TaskTime*)", "TaskEditTimesVM*(Store*)", "TaskEditTimes*(BuildContext*,TaskEditTimesVM*)", "TaskEditVM*(Store*)", "TaskEdit*(BuildContext*,TaskEditVM*)", "Null(PointerHoverEvent*)", "BoardList*(String*)", "Null(Completer*,String*)", "bool(KeepAliveNotification)", "BoardItem*(TaskEntity*)", "Null(int*,int*,BoardItemState*)", "Null(int*,int*,int*,int*,BoardItemState*)", "KanbanView*(BuildContext*,KanbanVM*)", "Null(Completer*,List*,Map*>*)", "Null(Completer*,String*,String*,int*)", "Null(Completer*,String*,String*,String*,int*)", "EntityList*(BuildContext*,TaskListVM*)", "TaskScreen*(BuildContext*,TaskScreenVM*)", "TaskViewVM*(Store*)", "TaskView*(BuildContext*,TaskViewVM*)", "Null(BuildContext*[TaskTime*])", "TaskStatusEditVM*(Store*)", "TaskStatusEdit*(BuildContext*,TaskStatusEditVM*)", "EntityList*(BuildContext*,TaskStatusListVM*)", "TaskStatusListItem*(BuildContext*,int*)", "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*)", "DataRow*(EntityType*)", "UserEditVM*(Store*)", "UserEdit*(BuildContext*,UserEditVM*)", "EntityList*(BuildContext*,UserListVM*)", "UserListItem*(BuildContext*,int*)", "UserScreen*(BuildContext*,UserScreenVM*)", "UserViewVM*(Store*)", "UserView*(BuildContext*,UserViewVM*)", "VendorContactEditDetails*(BuildContext*)", "bool*(VendorContactEntity*)", "ContactListTile*(VendorContactEntity*)", "VendorEditContactsVM*(Store*)", "VendorEditContacts*(BuildContext*,VendorEditContactsVM*)", "Null(VendorContactEntity*,int*)", "VendorEditVM*(Store*)", "VendorEdit*(BuildContext*,VendorEditVM*)", "EntityList*(BuildContext*,VendorListVM*)", "VendorListItem*(BuildContext*,int*)", "VendorScreen*(BuildContext*,VendorScreenVM*)", "Null(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*)", "AutofillClient()", "FieldConfirmation*(BuildContext*)", "Null(BuildContext*{currentLength:int*,isFocused:bool*,maxLength:int*})", "bool(AutofillClient)", "CompositedTransformFollower(BuildContext)", "IFrameElement*(int*)", "Null(Event*)", "Logger()", "Future()", "Future()", "Future()", "PhotoViewGalleryPageOptions(BuildContext,int)", "Widget(BuildContext,ImageChunkEvent?)", "FadeTransition(Widget,Animation0)", "Future(@)", "Widget(BuildContext,Widget,ImageChunkEvent?)", "Offset(int)", "double(double,RenderBox)", "Widget(BuildContext,BoxValueConstraints)", "String(String?)", "Route<@>(RouteSettings)", "StatelessWidget(BuildContext,AsyncSnapshot)", "PhotoViewGestureRecognizer()", "~(PhotoViewGestureRecognizer)", "~(@,StackTrace?)", "Route<@>?(RouteSettings)", "@(QrCode)", "QrCode()", "@(Object?,@,@(@))", "AnimatedSwitcher(BuildContext,AsyncSnapshot)", "Null(Object,StackTrace?)", "~(int,_FrameCallbackEntry)", "Future>()", "MapEntry(String,@)", "String?()", "int(_Line)", "Widget(_ChildEntry)", "Uri?(_Line)", "Uri?(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(List<_Highlight>)", "SourceSpanWithContext()", "~(_ChildEntry)", "int(int,Object)", "~(HtmlElement)", "String?(Match)", "~(Zone?,ZoneDelegate?,Zone,Object,StackTrace)", "0^(Zone?,ZoneDelegate?,Zone,0^())", "0^(Zone?,ZoneDelegate?,Zone,0^(1^),1^)", "0^(Zone?,ZoneDelegate?,Zone,0^(1^,2^),1^,2^)", "0^()(Zone,ZoneDelegate,Zone,0^())", "0^(1^)(Zone,ZoneDelegate,Zone,0^(1^))", "0^(1^,2^)(Zone,ZoneDelegate,Zone,0^(1^,2^))", "AsyncError?(Zone,ZoneDelegate,Zone,Object,StackTrace?)", "~(Zone?,ZoneDelegate?,Zone,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~(Timer))", "~(Zone,ZoneDelegate,Zone,String)", "Zone(Zone?,ZoneDelegate?,Zone,ZoneSpecification?,Map?)", "int(Comparable<@>,Comparable<@>)", "~(String[@])", "0^(0^,0^)", "Size?(Size?,Size?,double)", "double?(num?,num?,double)", "Color?(Color?,Color?,double)", "~(String,FileSystemOp)", "~(FlutterErrorDetails)", "~(FlutterErrorDetails{forceReport:bool})", "DiagnosticsNode(String)", "StackFrame?(String)", "double(double,double,double)", "Widget(BuildContext,Animation0,Animation0,Widget)", "EdgeInsetsGeometry?(EdgeInsetsGeometry?,EdgeInsetsGeometry?,double)", "Future>?>(String?)", "TextStyle?(TextStyle?,TextStyle?,double)", "int(_TaskEntry<@>,_TaskEntry<@>)", "bool({priority!int,scheduler!SchedulerBinding})", "String(ByteData)", "List(String)", "Widget(Widget,Key,Widget,Key)", "Widget(Widget?,List)", "int(Element0,Element0)", "List>(NavigatorState,String)", "int(Widget,int)", "Iterable(Iterable)", "Widget(BuildContext,List,Widget(Color))", "Widget(Color,bool,~())", "Store<0^>(Store<0^>)", "SemanticsNode(_TraversalSortNode)", "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*)", "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*,LoadClientsSuccess*)", "ClientState*(ClientState*,LoadCompanySuccess*)", "UserCompanyEntity*(UserCompanyEntity*,LoadCompanySuccess*)", "UserCompanyEntity*(UserCompanyEntity*,SaveCompanySuccess*)", "~(Action)", "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*)", "DiagnosticsNode(SemanticsNode)", "InvoiceEntity*(InvoiceEntity*,AddCreditItems*)", "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*,MarkSentCreditSuccess*)", "CreditState*(CreditState*,ArchiveCreditsSuccess*)", "CreditState*(CreditState*,DeleteCreditsSuccess*)", "CreditState*(CreditState*,RestoreCreditsSuccess*)", "CreditState*(CreditState*,AddCreditSuccess*)", "CreditState*(CreditState*,@)", "CreditState*(CreditState*,LoadCreditsSuccess*)", "CreditState*(CreditState*,LoadCompanySuccess*)", "~(String,int)", "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*,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*,SaveDocumentSuccess*)", "DocumentState*(DocumentState*,LoadDocumentSuccess*)", "DocumentState*(DocumentState*,LoadDocumentsSuccess*)", "BuildContext()", "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*,ArchiveExpenseSuccess*)", "ExpenseState*(ExpenseState*,DeleteExpenseSuccess*)", "ExpenseState*(ExpenseState*,RestoreExpenseSuccess*)", "ExpenseState*(ExpenseState*,AddExpenseSuccess*)", "ExpenseState*(ExpenseState*,SaveExpenseSuccess*)", "ExpenseState*(ExpenseState*,LoadExpenseSuccess*)", "ExpenseState*(ExpenseState*,LoadExpensesSuccess*)", "ExpenseState*(ExpenseState*,LoadCompanySuccess*)", "@(BuildContext)", "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*)", "HttpRequest()", "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*)", "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*,MarkInvoicesSentSuccess*)", "InvoiceState*(InvoiceState*,MarkInvoicesPaidSuccess*)", "InvoiceState*(InvoiceState*,ReverseInvoicesSuccess*)", "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*)", "List(List)", "ListUIState*(ListUIState*,ViewPaymentList*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom1*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom2*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom3*)", "ListUIState*(ListUIState*,FilterPaymentsByCustom4*)", "ListUIState*(ListUIState*,FilterPaymentsByState*)", "ListUIState*(ListUIState*,FilterPayments*)", "ListUIState*(ListUIState*,SortPayments*)", "ListUIState*(ListUIState*,StartPaymentMultiselect*)", "ListUIState*(ListUIState*,AddToPaymentMultiselect*)", "ListUIState*(ListUIState*,RemoveFromPaymentMultiselect*)", "ListUIState*(ListUIState*,ClearPaymentMultiselect*)", "PaymentState*(PaymentState*,ArchivePaymentsSuccess*)", "PaymentState*(PaymentState*,DeletePaymentsSuccess*)", "PaymentState*(PaymentState*,RestorePaymentsSuccess*)", "PaymentState*(PaymentState*,AddPaymentSuccess*)", "PaymentState*(PaymentState*,SavePaymentSuccess*)", "PaymentState*(PaymentState*,LoadPaymentSuccess*)", "PaymentState*(PaymentState*,LoadPaymentsSuccess*)", "PaymentState*(PaymentState*,LoadCompanySuccess*)", "List()", "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*)", "Future(MethodCall)", "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*,AddProductSuccess*)", "ProductState*(ProductState*,SaveProductSuccess*)", "ProductState*(ProductState*,LoadProductSuccess*)", "ProductState*(ProductState*,LoadProductsSuccess*)", "ProductState*(ProductState*,LoadCompanySuccess*)", "Future(ByteData?)", "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*,ArchiveProjectSuccess*)", "ProjectState*(ProjectState*,DeleteProjectSuccess*)", "ProjectState*(ProjectState*,RestoreProjectSuccess*)", "ProjectState*(ProjectState*,AddProjectSuccess*)", "ProjectState*(ProjectState*,SaveProjectSuccess*)", "ProjectState*(ProjectState*,LoadProjectSuccess*)", "ProjectState*(ProjectState*,LoadProjectsSuccess*)", "ProjectState*(ProjectState*,LoadCompanySuccess*)", "InvoiceEntity*(InvoiceEntity*,AddQuoteItems*)", "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*,MarkSentQuoteSuccess*)", "QuoteState*(QuoteState*,ArchiveQuotesSuccess*)", "QuoteState*(QuoteState*,DeleteQuotesSuccess*)", "QuoteState*(QuoteState*,RestoreQuotesSuccess*)", "QuoteState*(QuoteState*,ConvertQuoteSuccess*)", "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*,FilterRecurringExpenses*)", "ListUIState*(ListUIState*,SortRecurringExpenses*)", "ListUIState*(ListUIState*,StartRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,AddToRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,RemoveFromRecurringExpenseMultiselect*)", "ListUIState*(ListUIState*,ClearRecurringExpenseMultiselect*)", "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*)", "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*,ArchiveRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,DeleteRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,EmailRecurringInvoiceSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,RestoreRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,StartRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,StopRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,AddRecurringInvoiceSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,@)", "RecurringInvoiceState*(RecurringInvoiceState*,LoadRecurringInvoicesSuccess*)", "RecurringInvoiceState*(RecurringInvoiceState*,LoadCompanySuccess*)", "StaticState*(StaticState*,LoadStaticSuccess*)", "StreamController<@>()", "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*)", "@(StreamController<@>)", "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*,SortTasksSuccess*)", "TaskState*(TaskState*,ArchiveTaskSuccess*)", "TaskState*(TaskState*,DeleteTaskSuccess*)", "TaskState*(TaskState*,RestoreTaskSuccess*)", "TaskState*(TaskState*,AddTaskSuccess*)", "TaskState*(TaskState*,SaveTaskSuccess*)", "TaskState*(TaskState*,LoadTaskSuccess*)", "TaskState*(TaskState*,LoadTasksSuccess*)", "TaskState*(TaskState*,LoadCompanySuccess*)", "Future<~>(ByteData?,~(ByteData?))", "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*)", "Future(String?)", "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*)", "Stream()", "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*)", "TextInputConfiguration(AutofillClient)", "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*,ConnecOAuthUserSuccess*)", "UserState*(UserState*,ConnecGmailUserSuccess*)", "UserState*(UserState*,LoadUserSuccess*)", "UserState*(UserState*,LoadUsersSuccess*)", "UserState*(UserState*,LoadCompanySuccess*)", "VendorContactEntity*(VendorContactEntity*,@)", "Map(TextInputConfiguration)", "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*)", "SemanticsNode(int)", "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*)", "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*)", "QuoteListVM*(Store*)", "QuoteScreenVM*(Store*)", "RecurringExpenseListVM*(Store*)", "RecurringExpenseScreenVM*(Store*)", "RecurringInvoiceListVM*(Store*)", "RecurringInvoiceScreenVM*(Store*)", "ReportsScreenVM*(Store*)", "AccountManagementVM*(Store*)", "BuyNowButtonsVM*(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*)", "OnlinePaymentsVM*(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*)", "UserListVM*(Store*)", "UserScreenVM*(Store*)", "VendorListVM*(Store*)", "VendorScreenVM*(Store*)", "WebhookListVM*(Store*)", "WebhookScreenVM*(Store*)", "Future(PdfPage)", "PhotoViewGalleryPageOptions(Future,int,PdfDocument)", "Future()", "PhotoViewScaleState(PhotoViewScaleState)", "Future<1^>(1^/(0^),0^{debugLabel:String?})", "~(String?{wrapWidth:int?})", "int(SemanticsNode)", "GoogleSignInUserData?(Map?)", "bool*(bool*,StartLoading*)", "bool*(bool*,StopLoading*)", "bool*(bool*,StartSaving*)", "bool*(bool*,FilterTasks*)"], interceptorsByTag: null, leafTags: null, arrayRti: typeof Symbol == "function" && typeof Symbol() == "symbol" ? Symbol("$ti") : "$ti" }; H._Universe_addRules(init.typeUniverse, JSON.parse('{"CanvasKit":"JavaScriptObject","SkFontSlant":"JavaScriptObject","SkFontWeight":"JavaScriptObject","SkTextDirection":"JavaScriptObject","SkTextAlign":"JavaScriptObject","SkRectHeightStyle":"JavaScriptObject","SkRectWidthStyle":"JavaScriptObject","SkClipOp":"JavaScriptObject","SkFillType":"JavaScriptObject","SkBlurStyle":"JavaScriptObject","SkStrokeCap":"JavaScriptObject","SkPaintStyle":"JavaScriptObject","SkBlendMode":"JavaScriptObject","SkStrokeJoin":"JavaScriptObject","SkFilterQuality":"JavaScriptObject","SkTileMode":"JavaScriptObject","SkAnimatedImage":"JavaScriptObject","SkImage":"JavaScriptObject","SkShader":"JavaScriptObject","SkPaint":"JavaScriptObject","SkMaskFilter":"JavaScriptObject","SkColorFilter":"JavaScriptObject","SkPath":"JavaScriptObject","SkPicture":"JavaScriptObject","SkTextStyle":"JavaScriptObject","SkTextDecorationStyle":"JavaScriptObject","SkTextBaseline":"JavaScriptObject","SkTextShadow":"JavaScriptObject","SkFontFeature":"JavaScriptObject","SkTypeface":"JavaScriptObject","SkParagraph":"JavaScriptObject","SkDeletable":"JavaScriptObject","JsUrlStrategy":"JavaScriptObject","CanvasKitInitOptions":"JavaScriptObject","CanvasKitInitPromise":"JavaScriptObject","ColorSpace":"JavaScriptObject","SkWebGLContextOptions":"JavaScriptObject","SkSurface":"JavaScriptObject","SkGrContext":"JavaScriptObject","SkFontSlantEnum":"JavaScriptObject","SkFontWeightEnum":"JavaScriptObject","SkAffinityEnum":"JavaScriptObject","SkAffinity":"JavaScriptObject","SkTextDirectionEnum":"JavaScriptObject","SkTextAlignEnum":"JavaScriptObject","SkRectHeightStyleEnum":"JavaScriptObject","SkRectWidthStyleEnum":"JavaScriptObject","SkVertexModeEnum":"JavaScriptObject","SkVertexMode":"JavaScriptObject","SkPointModeEnum":"JavaScriptObject","SkPointMode":"JavaScriptObject","SkClipOpEnum":"JavaScriptObject","SkFillTypeEnum":"JavaScriptObject","SkPathOpEnum":"JavaScriptObject","SkPathOp":"JavaScriptObject","SkBlurStyleEnum":"JavaScriptObject","SkStrokeCapEnum":"JavaScriptObject","SkPaintStyleEnum":"JavaScriptObject","SkBlendModeEnum":"JavaScriptObject","SkStrokeJoinEnum":"JavaScriptObject","SkFilterQualityEnum":"JavaScriptObject","SkTileModeEnum":"JavaScriptObject","SkFilterModeEnum":"JavaScriptObject","SkFilterMode":"JavaScriptObject","SkMipmapModeEnum":"JavaScriptObject","SkMipmapMode":"JavaScriptObject","SkAlphaTypeEnum":"JavaScriptObject","SkAlphaType":"JavaScriptObject","SkColorTypeEnum":"JavaScriptObject","SkColorType":"JavaScriptObject","SkShaderNamespace":"JavaScriptObject","SkMaskFilterNamespace":"JavaScriptObject","SkColorFilterNamespace":"JavaScriptObject","SkImageFilterNamespace":"JavaScriptObject","SkImageFilter":"JavaScriptObject","SkPathNamespace":"JavaScriptObject","_NativeFloat32ArrayType":"JavaScriptObject","SkFloat32List":"JavaScriptObject","SkContourMeasureIter":"JavaScriptObject","SkContourMeasure":"JavaScriptObject","SkPictureRecorder":"JavaScriptObject","SkCanvas":"JavaScriptObject","SkParagraphBuilderNamespace":"JavaScriptObject","SkParagraphBuilder":"JavaScriptObject","SkParagraphStyle":"JavaScriptObject","SkParagraphStyleProperties":"JavaScriptObject","SkTextDecorationStyleEnum":"JavaScriptObject","SkTextBaselineEnum":"JavaScriptObject","SkPlaceholderAlignmentEnum":"JavaScriptObject","SkPlaceholderAlignment":"JavaScriptObject","SkTextStyleProperties":"JavaScriptObject","SkStrutStyleProperties":"JavaScriptObject","SkFontStyle":"JavaScriptObject","SkFont":"JavaScriptObject","SkFontMgr":"JavaScriptObject","TypefaceFontProvider":"JavaScriptObject","SkLineMetrics":"JavaScriptObject","SkTextPosition":"JavaScriptObject","SkTextRange":"JavaScriptObject","SkVertices":"JavaScriptObject","SkTonalColors":"JavaScriptObject","SkFontMgrNamespace":"JavaScriptObject","TypefaceFontProviderNamespace":"JavaScriptObject","JsConstructor":"JavaScriptObject","SkObjectFinalizationRegistry":"JavaScriptObject","SkData":"JavaScriptObject","SkImageInfo":"JavaScriptObject","PlainJavaScriptObject":"JavaScriptObject","UnknownJavaScriptObject":"JavaScriptObject","JavaScriptFunction":"JavaScriptObject","JsUrlStrategy0":"JavaScriptObject","LoadConfig":"JavaScriptObject","GoogleAuthInitFailureError":"JavaScriptObject","GoogleAuth":"JavaScriptObject","GoogleUser":"JavaScriptObject","GoogleAuthSignInError":"JavaScriptObject","OfflineAccessResponse":"JavaScriptObject","_GoogleAuth":"JavaScriptObject","IsSignedIn":"JavaScriptObject","CurrentUser":"JavaScriptObject","SigninOptions":"JavaScriptObject","OfflineAccessOptions":"JavaScriptObject","ClientConfig":"JavaScriptObject","SigninOptionsBuilder":"JavaScriptObject","BasicProfile":"JavaScriptObject","AuthResponse":"JavaScriptObject","AuthorizeConfig":"JavaScriptObject","AuthorizeResponse":"JavaScriptObject","_GoogleUser":"JavaScriptObject","Promise":"JavaScriptObject","PdfJsDoc":"JavaScriptObject","PdfJsPage":"JavaScriptObject","PdfJs":"JavaScriptObject","Settings":"JavaScriptObject","PdfJsDocLoader":"JavaScriptObject","PdfJsViewport":"JavaScriptObject","PdfJsRender":"JavaScriptObject","AnimationEvent":"Event","AudioContext":"BaseAudioContext","AbsoluteOrientationSensor":"EventTarget","OrientationSensor":"EventTarget","Sensor":"EventTarget","AnimateElement":"SvgElement","AnimationElement":"SvgElement","AElement":"GraphicsElement","_ResourceProgressEvent":"ProgressEvent","BRElement":"HtmlElement","ShadowRoot":"Node","DocumentFragment":"Node","XmlDocument":"Document0","CompositionEvent":"UIEvent","AbortPaymentEvent":"ExtendableEvent","DedicatedWorkerGlobalScope":"WorkerGlobalScope","CDataSection":"CharacterData","Text0":"CharacterData","MidiInput":"MidiPort","HttpRequestUpload":"HttpRequestEventTarget","HtmlFormControlsCollection":"HtmlCollection","CssCharsetRule":"CssRule","CanvasCaptureMediaStreamTrack":"MediaStreamTrack","BackgroundFetchClickEvent":"BackgroundFetchEvent","AudioElement":"MediaElement","ManagedSkiaObject":{"SkiaObject":["1"]},"PersistedContainerSurface":{"PersistedSurface":[]},"Checkable":{"RoleManager":[]},"ImageRoleManager":{"RoleManager":[]},"Incrementable":{"RoleManager":[]},"LabelAndValue":{"RoleManager":[]},"LiveRegion":{"RoleManager":[]},"Scrollable0":{"RoleManager":[]},"Tappable":{"RoleManager":[]},"TextField0":{"RoleManager":[]},"AssetManagerException":{"Exception":[]},"RecordingCkCanvas":{"CkCanvas":[]},"CkClearCommand":{"CkPaintCommand":[]},"CkSaveCommand":{"CkPaintCommand":[]},"CkRestoreCommand":{"CkPaintCommand":[]},"CkRestoreToCountCommand":{"CkPaintCommand":[]},"CkTranslateCommand":{"CkPaintCommand":[]},"CkScaleCommand":{"CkPaintCommand":[]},"CkRotateCommand":{"CkPaintCommand":[]},"CkTransformCommand":{"CkPaintCommand":[]},"CkClipRectCommand":{"CkPaintCommand":[]},"CkDrawArcCommand":{"CkPaintCommand":[]},"CkClipRRectCommand":{"CkPaintCommand":[]},"CkClipPathCommand":{"CkPaintCommand":[]},"CkDrawLineCommand":{"CkPaintCommand":[]},"CkDrawPaintCommand":{"CkPaintCommand":[]},"CkDrawRectCommand":{"CkPaintCommand":[]},"CkDrawRRectCommand":{"CkPaintCommand":[]},"CkDrawDRRectCommand":{"CkPaintCommand":[]},"CkDrawCircleCommand":{"CkPaintCommand":[]},"CkDrawPathCommand":{"CkPaintCommand":[]},"CkDrawShadowCommand":{"CkPaintCommand":[]},"CkDrawImageRectCommand":{"CkPaintCommand":[]},"CkDrawParagraphCommand":{"CkPaintCommand":[]},"CkDrawPictureCommand":{"CkPaintCommand":[]},"CkSaveLayerCommand":{"CkPaintCommand":[]},"SkiaObjectCollectionError":{"Error":[]},"_ManagedSkColorFilter":{"ManagedSkiaObject":["SkColorFilter"],"SkiaObject":["SkColorFilter"]},"MutatorsStack":{"Iterable":["Mutator"],"Iterable.E":"Mutator"},"ImageCodecException":{"Exception":[]},"CkAnimatedImage":{"ManagedSkiaObject":["SkAnimatedImage"],"SkiaObject":["SkAnimatedImage"],"Codec":[]},"AnimatedImageFrameInfo":{"FrameInfo":[]},"ContainerLayer":{"Layer":[]},"RootLayer":{"Layer":[]},"ClipPathEngineLayer":{"Layer":[],"ClipPathEngineLayer0":[]},"ClipRectEngineLayer":{"Layer":[],"ClipRectEngineLayer0":[]},"ClipRRectEngineLayer":{"Layer":[],"ClipRRectEngineLayer0":[]},"OpacityEngineLayer":{"Layer":[],"OpacityEngineLayer0":[]},"TransformEngineLayer":{"Layer":[],"TransformEngineLayer0":[]},"OffsetEngineLayer":{"Layer":[],"TransformEngineLayer0":[],"OffsetEngineLayer0":[]},"PictureLayer0":{"Layer":[]},"PhysicalShapeEngineLayer":{"Layer":[],"PhysicalShapeEngineLayer0":[]},"PlatformViewLayer0":{"Layer":[]},"CkMaskFilter":{"ManagedSkiaObject":["SkMaskFilter"],"SkiaObject":["SkMaskFilter"]},"CkPaint":{"ManagedSkiaObject":["SkPaint"],"SkiaObject":["SkPaint"],"Paint":[]},"CkPath":{"ManagedSkiaObject":["SkPath"],"SkiaObject":["SkPath"],"Path":[]},"CkPicture":{"ManagedSkiaObject":["SkPicture"],"SkiaObject":["SkPicture"]},"CkShader":{"ManagedSkiaObject":["SkShader"],"SkiaObject":["SkShader"]},"CkGradientLinear":{"CkShader":[],"ManagedSkiaObject":["SkShader"],"SkiaObject":["SkShader"]},"SkiaObjectBox":{"SkiaObject":["2"]},"CkParagraph":{"ManagedSkiaObject":["SkParagraph"],"SkiaObject":["SkParagraph"]},"CanvasKitError":{"Error":[]},"PersistedClipRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRectEngineLayer0":[]},"PersistedClipRRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRRectEngineLayer0":[]},"PersistedPhysicalShape":{"PersistedContainerSurface":[],"PersistedSurface":[],"PhysicalShapeEngineLayer0":[]},"PersistedClipPath":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipPathEngineLayer0":[]},"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":[]},"PaintDrawRect":{"PaintCommand":[]},"PaintDrawRRect":{"PaintCommand":[]},"PaintDrawDRRect":{"PaintCommand":[]},"PaintDrawCircle":{"PaintCommand":[]},"PaintDrawPath":{"PaintCommand":[]},"PaintDrawShadow":{"PaintCommand":[]},"PaintDrawImageRect":{"PaintCommand":[]},"PaintDrawParagraph":{"PaintCommand":[]},"PersistedScene":{"PersistedContainerSurface":[],"PersistedSurface":[]},"GradientLinear":{"EngineGradient":[]},"PersistedLeafSurface":{"PersistedSurface":[]},"PersistedTransform":{"PersistedContainerSurface":[],"PersistedSurface":[],"TransformEngineLayer0":[]},"HtmlCodec":{"Codec":[]},"HtmlBlobCodec":{"Codec":[]},"SingleFrameInfo":{"FrameInfo":[]},"_TypedDataBuffer":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_IntBuffer":{"_TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8Buffer0":{"_TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int","_TypedDataBuffer.E":"int"},"CanvasParagraph":{"EngineParagraph":[]},"FlatTextSpan":{"ParagraphSpan":[]},"ChildStyleNode":{"StyleNode":[]},"RootStyleNode":{"StyleNode":[]},"SpanBox":{"RangeBox":[]},"DomParagraph":{"EngineParagraph":[]},"TextInputSetClient":{"TextInputCommand":[]},"TextInputUpdateConfig":{"TextInputCommand":[]},"TextInputSetEditingState":{"TextInputCommand":[]},"TextInputShow":{"TextInputCommand":[]},"TextInputSetEditableSizeAndTransform":{"TextInputCommand":[]},"TextInputSetStyle":{"TextInputCommand":[]},"TextInputClearClient":{"TextInputCommand":[]},"TextInputHide":{"TextInputCommand":[]},"TextInputSetMarkedTextRect":{"TextInputCommand":[]},"TextInputSetCaretRect":{"TextInputCommand":[]},"TextInputFinishAutofillContext":{"TextInputCommand":[]},"EngineFlutterWindow":{"FlutterWindow":[]},"EngineSingletonFlutterWindow":{"FlutterWindow":[]},"HttpException":{"Exception":[]},"JavaScriptObject":{"JSObject":[],"CanvasKit":[],"SkFontSlant":[],"SkFontWeight":[],"SkTextDirection":[],"SkTextAlign":[],"SkRectHeightStyle":[],"SkRectWidthStyle":[],"SkClipOp":[],"SkFillType":[],"SkBlurStyle":[],"SkStrokeCap":[],"SkPaintStyle":[],"SkBlendMode":[],"SkStrokeJoin":[],"SkFilterQuality":[],"SkTileMode":[],"SkAnimatedImage":[],"SkImage":[],"SkShader":[],"SkPaint":[],"SkMaskFilter":[],"SkColorFilter":[],"SkPath":[],"SkPicture":[],"SkTextStyle":[],"SkTextDecorationStyle":[],"SkTextBaseline":[],"SkTextShadow":[],"SkFontFeature":[],"SkTypeface":[],"SkParagraph":[],"SkDeletable":[],"JsUrlStrategy":[],"GoogleAuthInitFailureError":[],"GoogleAuthSignInError":[],"GoogleAuth":[],"GoogleUser":[],"PdfJsDoc":[],"PdfJsPage":[]},"JSBool":{"bool":[]},"JSNull":{"Null":[]},"JSArray":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"JSIndexable":["1"]},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"JSIndexable":["1"]},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"]},"EfficientLengthIterable":{"Iterable":["1"]},"_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":{"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListMixin.E":"2","Iterable.E":"2"},"CastMap":{"MapMixin":["3","4"],"Map":["3","4"],"MapMixin.K":"3","MapMixin.V":"4"},"LateError":{"Error":[]},"ReachabilityError":{"Error":[]},"CodeUnits":{"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NotNullableError":{"Error":[]},"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"},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"UnmodifiableListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_ListIndicesIterable":{"ListIterable":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"Iterable.E":"int","ListIterable.E":"int"},"ListMapView":{"MapMixin":["int","1"],"_UnmodifiableMapMixin":["int","1"],"Map":["int","1"],"MapMixin.K":"int","MapMixin.V":"1"},"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"]},"_ConstantMapKeyIterable":{"Iterable":["1"],"Iterable.E":"1"},"GeneralConstantMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"Instantiation":{"Function":[]},"Instantiation1":{"Function":[]},"NullError":{"NoSuchMethodError":[],"Error":[]},"JsNoSuchMethodError":{"NoSuchMethodError":[],"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"TearOffClosure":{"Function":[]},"StaticClosure":{"Function":[]},"BoundClosure":{"Function":[]},"RuntimeError":{"Error":[]},"_AssertionError":{"AssertionError":[],"Error":[]},"_UnreachableError":{"AssertionError":[],"Error":[]},"JsLinkedHashMap":{"MapMixin":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"LinkedHashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"NativeByteBuffer":{"ByteBuffer":[]},"NativeTypedData":{"TypedData":[]},"NativeByteData":{"NativeTypedData":[],"ByteData":[],"TypedData":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"NativeTypedData":[],"TypedData":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"]},"NativeTypedArrayOfInt":{"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"Float64List":[],"JavaScriptIndexingBehavior":["double"],"List":["double"],"NativeTypedData":[],"EfficientLengthIterable":["double"],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"Int32List":[],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"Uint8List":[],"JavaScriptIndexingBehavior":["int"],"List":["int"],"NativeTypedData":[],"EfficientLengthIterable":["int"],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"Error":[]},"AsyncError":{"Error":[]},"_Future":{"Future":["1"]},"StreamView":{"Stream":["1"]},"StreamController":{"EventSink":["1"]},"_BufferingStreamSubscription":{"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BroadcastSubscriptionWrapper":{"StreamSubscription":["1"]},"_HandlerEventSink":{"EventSink":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_SyncStarIterable":{"Iterable":["1"],"Iterable.E":"1"},"_BroadcastStream":{"_ControllerStream":["1"],"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_BroadcastSubscription":{"_ControllerSubscription":["1"],"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BroadcastStreamController":{"StreamController":["1"],"EventSink":["1"]},"_SyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"StreamController":["1"],"EventSink":["1"]},"_AsyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"StreamController":["1"],"EventSink":["1"]},"_AsBroadcastStreamController":{"_SyncBroadcastStreamController":["1"],"_BroadcastStreamController":["1"],"StreamController":["1"],"EventSink":["1"]},"TimeoutException":{"Exception":[]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"_SyncCompleter":{"_Completer":["1"],"Completer":["1"]},"_StreamController":{"StreamController":["1"],"EventSink":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"StreamController":["1"],"EventSink":["1"]},"_SyncStreamController":{"_StreamController":["1"],"StreamController":["1"],"EventSink":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamSinkWrapper0":{"EventSink":["1"]},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_StreamImpl":{"Stream":["1"]},"_GeneratedStreamImpl":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_DoneStreamSubscription":{"StreamSubscription":["1"]},"_AsBroadcastStream":{"Stream":["1"],"Stream.T":"1"},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_WhereStream":{"_ForwardingStream":["1","1"],"Stream":["1"],"Stream.T":"1","_ForwardingStream.T":"1","_ForwardingStream.S":"1"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2","_ForwardingStream.T":"2","_ForwardingStream.S":"1"},"_EventSinkWrapper":{"EventSink":["1"]},"_SinkTransformerStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_StreamSinkTransformer":{"StreamTransformerBase":["1","2"]},"_BoundSinkStream":{"Stream":["2"],"Stream.T":"2"},"_StreamHandlerTransformer":{"_StreamSinkTransformer":["1","2"],"StreamTransformerBase":["1","2"]},"_ZoneSpecification":{"ZoneSpecification":[]},"_ZoneDelegate":{"ZoneDelegate":[]},"_Zone":{"Zone":[]},"_CustomZone":{"Zone":[]},"_RootZone":{"Zone":[]},"DoubleLinkedQueueEntry":{"_DoubleLink":["DoubleLinkedQueueEntry<1>"]},"_SplayTreeMapNode":{"MapEntry":["1","2"]},"_HashMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_CustomHashMap":{"_HashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedIdentityHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"LinkedHashMap":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_HashSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"_LinkedHashSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"UnmodifiableListView":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"IterableBase":{"Iterable":["1"]},"LinkedList":{"Iterable":["1"],"Iterable.E":"1"},"ListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"MapMixin":["1","2"],"Map":["1","2"]},"MapMixin":{"Map":["1","2"]},"UnmodifiableMapBase":{"MapMixin":["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"]},"_DoubleLinkedQueueEntry":{"DoubleLinkedQueueEntry":["1"],"_DoubleLink":["DoubleLinkedQueueEntry<1>"]},"_DoubleLinkedQueueElement":{"_DoubleLinkedQueueEntry":["1"],"DoubleLinkedQueueEntry":["1"],"_DoubleLink":["DoubleLinkedQueueEntry<1>"],"_DoubleLink.0":"DoubleLinkedQueueEntry<1>"},"_DoubleLinkedQueueSentinel":{"_DoubleLinkedQueueEntry":["1"],"DoubleLinkedQueueEntry":["1"],"_DoubleLink":["DoubleLinkedQueueEntry<1>"],"_DoubleLink.0":"DoubleLinkedQueueEntry<1>"},"DoubleLinkedQueue":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"ListQueue":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_SetBase":{"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_UnmodifiableSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"SplayTreeMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_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"]},"_SplayTreeValueIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","2"]},"_SplayTreeMapEntryIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","MapEntry<1,2>"]},"SplayTreeSet":{"SetMixin":["1"],"Set":["1"],"IterableMixin":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"SetMixin.E":"1"},"Encoding":{"Codec0":["String","List"]},"_JsonMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","ListIterable.E":"String"},"AsciiCodec":{"Encoding":[],"Codec0":["String","List"]},"_UnicodeSubsetEncoder":{"Converter":["String","List"],"StreamTransformerBase":["String","List"]},"AsciiEncoder":{"Converter":["String","List"],"StreamTransformerBase":["String","List"]},"_UnicodeSubsetDecoder":{"Converter":["List","String"],"StreamTransformerBase":["List","String"]},"AsciiDecoder":{"Converter":["List","String"],"StreamTransformerBase":["List","String"]},"Base64Codec":{"Codec0":["List","String"]},"Base64Encoder":{"Converter":["List","String"],"StreamTransformerBase":["List","String"]},"Base64Decoder":{"Converter":["String","List"],"StreamTransformerBase":["String","List"]},"Converter":{"StreamTransformerBase":["1","2"]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonCodec":{"Codec0":["Object?","String"]},"JsonEncoder":{"Converter":["Object?","String"],"StreamTransformerBase":["Object?","String"]},"JsonDecoder":{"Converter":["String","Object?"],"StreamTransformerBase":["String","Object?"]},"Latin1Codec":{"Encoding":[],"Codec0":["String","List"]},"Latin1Encoder":{"Converter":["String","List"],"StreamTransformerBase":["String","List"]},"Latin1Decoder":{"Converter":["List","String"],"StreamTransformerBase":["List","String"]},"Utf8Codec":{"Encoding":[],"Codec0":["String","List"]},"Utf8Encoder":{"Converter":["String","List"],"StreamTransformerBase":["String","List"]},"Utf8Decoder":{"Converter":["List","String"],"StreamTransformerBase":["List","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":[]},"NullThrownError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"NoSuchMethodError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"CyclicInitializationError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[]},"_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":{"Element":[],"Node":[],"EventTarget":[]},"BeforeUnloadEvent":{"Event":[]},"CanvasElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"Element":{"Node":[],"EventTarget":[]},"File":{"Blob":[]},"FormElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"HttpRequest":{"EventTarget":[]},"HttpRequestEventTarget":{"EventTarget":[]},"IFrameElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"KeyboardEvent":{"Event":[]},"MetaElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"MouseEvent":{"Event":[]},"Node":{"EventTarget":[]},"PointerEvent":{"MouseEvent":[],"Event":[]},"ProgressEvent":{"Event":[]},"SourceBuffer":{"EventTarget":[]},"TextTrack":{"EventTarget":[]},"TextTrackCue":{"EventTarget":[]},"TouchEvent":{"Event":[]},"UIEvent":{"Event":[]},"_Html5NodeValidator":{"NodeValidator":[]},"AnchorElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"Animation":{"EventTarget":[]},"AreaElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"BackgroundFetchEvent":{"Event":[]},"BackgroundFetchRegistration":{"EventTarget":[]},"BaseElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"BodyElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"BroadcastChannel":{"EventTarget":[]},"ButtonElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"CharacterData":{"Node":[],"EventTarget":[]},"CssKeyframesRule":{"CssRule":[]},"CssStyleSheet":{"StyleSheet":[]},"DataElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"DivElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"Document0":{"Node":[],"EventTarget":[]},"DomRectList":{"ListMixin":["Rectangle"],"ImmutableListMixin":["Rectangle"],"List":["Rectangle"],"JavaScriptIndexingBehavior":["Rectangle"],"EfficientLengthIterable":["Rectangle"],"Iterable":["Rectangle"],"JSIndexable":["Rectangle"],"ListMixin.E":"Rectangle","ImmutableListMixin.E":"Rectangle"},"DomRectReadOnly":{"Rectangle":["num"]},"DomStringList":{"ListMixin":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptIndexingBehavior":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"JSIndexable":["String"],"ListMixin.E":"String","ImmutableListMixin.E":"String"},"_ChildrenElementList":{"ListMixin":["Element"],"List":["Element"],"EfficientLengthIterable":["Element"],"Iterable":["Element"],"ListMixin.E":"Element"},"_FrozenElementList":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"EmbedElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"ExtendableEvent":{"Event":[]},"FieldSetElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"FileList":{"ListMixin":["File"],"ImmutableListMixin":["File"],"List":["File"],"JavaScriptIndexingBehavior":["File"],"EfficientLengthIterable":["File"],"Iterable":["File"],"JSIndexable":["File"],"ListMixin.E":"File","ImmutableListMixin.E":"File"},"FileReader":{"EventTarget":[]},"FileWriter":{"EventTarget":[]},"FontFaceSet":{"EventTarget":[]},"HtmlCollection":{"ListMixin":["Node"],"ImmutableListMixin":["Node"],"List":["Node"],"JavaScriptIndexingBehavior":["Node"],"EfficientLengthIterable":["Node"],"Iterable":["Node"],"JSIndexable":["Node"],"ListMixin.E":"Node","ImmutableListMixin.E":"Node"},"HtmlDocument":{"Document0":[],"Node":[],"EventTarget":[]},"ImageElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"InputElement":{"FileUploadInputElement":[],"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"LIElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"LabelElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"MapElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"MediaElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"MediaKeySession":{"EventTarget":[]},"MediaQueryList":{"EventTarget":[]},"MediaQueryListEvent":{"Event":[]},"MediaStream":{"EventTarget":[]},"MediaStreamTrack":{"EventTarget":[]},"MessagePort":{"EventTarget":[]},"MeterElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"MidiInputMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"MidiOutputMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"MidiPort":{"EventTarget":[]},"MimeTypeArray":{"ListMixin":["MimeType"],"ImmutableListMixin":["MimeType"],"List":["MimeType"],"JavaScriptIndexingBehavior":["MimeType"],"EfficientLengthIterable":["MimeType"],"Iterable":["MimeType"],"JSIndexable":["MimeType"],"ListMixin.E":"MimeType","ImmutableListMixin.E":"MimeType"},"_ChildNodeListLazy":{"ListMixin":["Node"],"List":["Node"],"EfficientLengthIterable":["Node"],"Iterable":["Node"],"ListMixin.E":"Node"},"NodeList":{"ListMixin":["Node"],"ImmutableListMixin":["Node"],"List":["Node"],"JavaScriptIndexingBehavior":["Node"],"EfficientLengthIterable":["Node"],"Iterable":["Node"],"JSIndexable":["Node"],"ListMixin.E":"Node","ImmutableListMixin.E":"Node"},"Notification":{"EventTarget":[]},"ObjectElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"OffscreenCanvas":{"EventTarget":[]},"OptionElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"OutputElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"ParagraphElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"ParamElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"PaymentRequest":{"EventTarget":[]},"PluginArray":{"ListMixin":["Plugin"],"ImmutableListMixin":["Plugin"],"List":["Plugin"],"JavaScriptIndexingBehavior":["Plugin"],"EfficientLengthIterable":["Plugin"],"Iterable":["Plugin"],"JSIndexable":["Plugin"],"ListMixin.E":"Plugin","ImmutableListMixin.E":"Plugin"},"PresentationAvailability":{"EventTarget":[]},"PresentationConnection":{"EventTarget":[]},"ProgressElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"RtcDataChannel":{"EventTarget":[]},"RtcStatsReport":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"ScreenOrientation":{"EventTarget":[]},"ScriptElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"SelectElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"SharedWorkerGlobalScope":{"WorkerGlobalScope":[],"EventTarget":[]},"SlotElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"SourceBufferList":{"ListMixin":["SourceBuffer"],"ImmutableListMixin":["SourceBuffer"],"List":["SourceBuffer"],"JavaScriptIndexingBehavior":["SourceBuffer"],"EventTarget":[],"EfficientLengthIterable":["SourceBuffer"],"Iterable":["SourceBuffer"],"JSIndexable":["SourceBuffer"],"ListMixin.E":"SourceBuffer","ImmutableListMixin.E":"SourceBuffer"},"SpanElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"SpeechGrammarList":{"ListMixin":["SpeechGrammar"],"ImmutableListMixin":["SpeechGrammar"],"List":["SpeechGrammar"],"JavaScriptIndexingBehavior":["SpeechGrammar"],"EfficientLengthIterable":["SpeechGrammar"],"Iterable":["SpeechGrammar"],"JSIndexable":["SpeechGrammar"],"ListMixin.E":"SpeechGrammar","ImmutableListMixin.E":"SpeechGrammar"},"SpeechSynthesisEvent":{"Event":[]},"SpeechSynthesisUtterance":{"EventTarget":[]},"Storage":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"StyleElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TableElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TableRowElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TableSectionElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TemplateElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TextAreaElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"TextTrackCueList":{"ListMixin":["TextTrackCue"],"ImmutableListMixin":["TextTrackCue"],"List":["TextTrackCue"],"JavaScriptIndexingBehavior":["TextTrackCue"],"EfficientLengthIterable":["TextTrackCue"],"Iterable":["TextTrackCue"],"JSIndexable":["TextTrackCue"],"ListMixin.E":"TextTrackCue","ImmutableListMixin.E":"TextTrackCue"},"TextTrackList":{"ListMixin":["TextTrack"],"ImmutableListMixin":["TextTrack"],"List":["TextTrack"],"JavaScriptIndexingBehavior":["TextTrack"],"EventTarget":[],"EfficientLengthIterable":["TextTrack"],"Iterable":["TextTrack"],"JSIndexable":["TextTrack"],"ListMixin.E":"TextTrack","ImmutableListMixin.E":"TextTrack"},"TouchList":{"ListMixin":["Touch"],"ImmutableListMixin":["Touch"],"List":["Touch"],"JavaScriptIndexingBehavior":["Touch"],"EfficientLengthIterable":["Touch"],"Iterable":["Touch"],"JSIndexable":["Touch"],"ListMixin.E":"Touch","ImmutableListMixin.E":"Touch"},"VideoElement":{"HtmlElement":[],"Element":[],"Node":[],"EventTarget":[]},"VideoTrackList":{"EventTarget":[]},"VttCue":{"TextTrackCue":[],"EventTarget":[]},"WheelEvent":{"MouseEvent":[],"Event":[]},"Window":{"EventTarget":[]},"_BeforeUnloadEvent":{"BeforeUnloadEvent":[],"Event":[]},"WorkerGlobalScope":{"EventTarget":[]},"_Attr":{"Node":[],"EventTarget":[]},"_CssRuleList":{"ListMixin":["CssRule"],"ImmutableListMixin":["CssRule"],"List":["CssRule"],"JavaScriptIndexingBehavior":["CssRule"],"EfficientLengthIterable":["CssRule"],"Iterable":["CssRule"],"JSIndexable":["CssRule"],"ListMixin.E":"CssRule","ImmutableListMixin.E":"CssRule"},"_DomRect":{"Rectangle":["num"]},"_GamepadList":{"ListMixin":["Gamepad?"],"ImmutableListMixin":["Gamepad?"],"List":["Gamepad?"],"JavaScriptIndexingBehavior":["Gamepad?"],"EfficientLengthIterable":["Gamepad?"],"Iterable":["Gamepad?"],"JSIndexable":["Gamepad?"],"ListMixin.E":"Gamepad?","ImmutableListMixin.E":"Gamepad?"},"_NamedNodeMap":{"ListMixin":["Node"],"ImmutableListMixin":["Node"],"List":["Node"],"JavaScriptIndexingBehavior":["Node"],"EfficientLengthIterable":["Node"],"Iterable":["Node"],"JSIndexable":["Node"],"ListMixin.E":"Node","ImmutableListMixin.E":"Node"},"_SpeechRecognitionResultList":{"ListMixin":["SpeechRecognitionResult"],"ImmutableListMixin":["SpeechRecognitionResult"],"List":["SpeechRecognitionResult"],"JavaScriptIndexingBehavior":["SpeechRecognitionResult"],"EfficientLengthIterable":["SpeechRecognitionResult"],"Iterable":["SpeechRecognitionResult"],"JSIndexable":["SpeechRecognitionResult"],"ListMixin.E":"SpeechRecognitionResult","ImmutableListMixin.E":"SpeechRecognitionResult"},"_StyleSheetList":{"ListMixin":["StyleSheet"],"ImmutableListMixin":["StyleSheet"],"List":["StyleSheet"],"JavaScriptIndexingBehavior":["StyleSheet"],"EfficientLengthIterable":["StyleSheet"],"Iterable":["StyleSheet"],"JSIndexable":["StyleSheet"],"ListMixin.E":"StyleSheet","ImmutableListMixin.E":"StyleSheet"},"_AttributeMap":{"MapMixin":["String","String"],"Map":["String","String"]},"_ElementAttributeMap":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"_DataAttributeMap":{"MapMixin":["String","String"],"Map":["String","String"],"MapMixin.K":"String","MapMixin.V":"String"},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_ElementEventStreamImpl":{"_EventStream":["1"],"Stream":["1"],"Stream.T":"1"},"_EventStreamSubscription":{"StreamSubscription":["1"]},"NodeValidatorBuilder":{"NodeValidator":[]},"_SimpleNodeValidator":{"NodeValidator":[]},"_TemplatingNodeValidator":{"NodeValidator":[]},"_SvgNodeValidator":{"NodeValidator":[]},"_DOMWindowCrossFrame":{"EventTarget":[]},"_WrappedEvent":{"Event":[]},"FilteredElementList":{"ListMixin":["Element"],"List":["Element"],"EfficientLengthIterable":["Element"],"Iterable":["Element"],"ListMixin.E":"Element"},"Database":{"EventTarget":[]},"VersionChangeEvent":{"Event":[]},"Directory":{"FileSystemEntity":[]},"File0":{"FileSystemEntity":[]},"_RandomAccessFile":{"RandomAccessFile":[]},"OSError":{"Exception":[]},"_Directory":{"Directory":[],"FileSystemEntity":[]},"FileSystemException":{"Exception":[]},"_FileStream":{"Stream":["List"],"Stream.T":"List"},"_File":{"File0":[],"FileSystemEntity":[]},"JsArray":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"NullRejectionException":{"Exception":[]},"Rectangle":{"_RectangleBase":["1"]},"GraphicsElement":{"SvgElement":[],"Element":[],"Node":[],"EventTarget":[]},"LengthList":{"ListMixin":["Length"],"ImmutableListMixin":["Length"],"List":["Length"],"EfficientLengthIterable":["Length"],"Iterable":["Length"],"ListMixin.E":"Length","ImmutableListMixin.E":"Length"},"NumberList":{"ListMixin":["Number"],"ImmutableListMixin":["Number"],"List":["Number"],"EfficientLengthIterable":["Number"],"Iterable":["Number"],"ListMixin.E":"Number","ImmutableListMixin.E":"Number"},"ScriptElement0":{"SvgElement":[],"Element":[],"Node":[],"EventTarget":[]},"StringList":{"ListMixin":["String"],"ImmutableListMixin":["String"],"List":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"ListMixin.E":"String","ImmutableListMixin.E":"String"},"SvgElement":{"Element":[],"Node":[],"EventTarget":[]},"SvgSvgElement":{"SvgElement":[],"Element":[],"Node":[],"EventTarget":[]},"TransformList":{"ListMixin":["Transform0"],"ImmutableListMixin":["Transform0"],"List":["Transform0"],"EfficientLengthIterable":["Transform0"],"Iterable":["Transform0"],"ListMixin.E":"Transform0","ImmutableListMixin.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":[]},"SingletonFlutterWindow":{"FlutterWindow":[]},"AudioParamMap":{"MapMixin":["String","@"],"Map":["String","@"],"MapMixin.K":"String","MapMixin.V":"@"},"AudioTrackList":{"EventTarget":[]},"BaseAudioContext":{"EventTarget":[]},"OfflineAudioContext":{"EventTarget":[]},"SqlResultSetRowList":{"ListMixin":["Map<@,@>"],"ImmutableListMixin":["Map<@,@>"],"List":["Map<@,@>"],"EfficientLengthIterable":["Map<@,@>"],"Iterable":["Map<@,@>"],"ListMixin.E":"Map<@,@>","ImmutableListMixin.E":"Map<@,@>"},"ArchiveException":{"FormatException":[],"Exception":[]},"InputStream":{"InputStreamBase":[]},"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"]},"CopyOnWriteSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"]},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["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"]},"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"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"StandardJsonPlugin":{"SerializerPlugin":[]},"CachedNetworkImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedNetworkImageProvider":{"ImageProvider":["CachedNetworkImageProvider0"],"ImageProvider.T":"CachedNetworkImageProvider0"},"CachedNetworkImageProvider0":{"ImageProvider":["CachedNetworkImageProvider0"]},"StringCharacters":{"Characters":[],"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":[],"AbstractNode":[]},"ChartContainer":{"CustomPaint":[],"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerCustomPaint":{"Listenable":[]},"_SymbolCustomPaint":{"Listenable":[]},"TextElement":{"TextElement1":[]},"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"},"DraggableScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollLabel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DraggableScrollbarState":{"State":["DraggableScrollbar"]},"ArrowCustomPainter":{"Listenable":[]},"SlideFadeTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MemoryDirectory":{"Directory0":[],"FileSystemEntity0":[],"Directory":[],"FileSystemEntity":[]},"MemoryFile":{"File1":[],"FileSystemEntity0":[],"File0":[],"FileSystemEntity":[]},"_FileSink":{"EventSink":["List"]},"MemoryFileSystemEntity":{"FileSystemEntity0":[],"FileSystemEntity":[]},"RealNode":{"Node0":[]},"DirectoryNode":{"Node0":[]},"FileNode":{"Node0":[]},"LinkNode":{"Node0":[]},"RootNode":{"DirectoryNode":[],"Node0":[]},"_LinuxCodes":{"_Codes":[]},"_MacOSCodes":{"_Codes":[]},"_WindowsCodes":{"_Codes":[]},"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":[]},"FlippedCurve":{"Curve":[]},"_DecelerateCurve":{"Curve":[]},"ElasticOutCurve":{"Curve":[]},"Tween":{"Animatable":["1"],"Tween.T":"1","Animatable.T":"1"},"ColorTween":{"Tween":["Color?"],"Animatable":["Color?"],"Tween.T":"Color?","Animatable.T":"Color?"},"RectTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Tween.T":"Rect?","Animatable.T":"Rect?"},"_AnimatedEvaluation":{"Animation0":["1"],"Listenable":[]},"_ChainedEvaluation":{"Animatable":["1"],"Animatable.T":"1"},"ReverseTween":{"Tween":["1"],"Animatable":["1"],"Tween.T":"1","Animatable.T":"1"},"SizeTween":{"Tween":["Size?"],"Animatable":["Size?"],"Tween.T":"Size?","Animatable.T":"Size?"},"IntTween":{"Tween":["int"],"Animatable":["int"],"Tween.T":"int","Animatable.T":"int"},"CurveTween":{"Animatable":["double"],"Animatable.T":"double"},"TweenSequence":{"Animatable":["1"],"Animatable.T":"1"},"CupertinoActivityIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoActivityIndicatorState":{"State":["CupertinoActivityIndicator"]},"_CupertinoActivityIndicatorPainter":{"Listenable":[]},"CupertinoDynamicColor":{"Color":[]},"CupertinoUserInterfaceLevel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"DefaultCupertinoLocalizations":{"CupertinoLocalizations":[]},"_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":[],"AbstractNode":[]},"_TextSelectionHandlePainter0":{"Listenable":[]},"_InheritedCupertinoTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTheme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ErrorDiagnostic":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorDescription":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSummary":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorHint":{"_ErrorDiagnostic":[],"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSpacer":{"DiagnosticsProperty":["~"],"DiagnosticsNode":[]},"FlutterError":{"DiagnosticableTree":[],"AssertionError":[],"Error":[]},"DiagnosticsStackTrace":{"DiagnosticsNode":[]},"_FlutterErrorDetailsNode":{"DiagnosticableNode":["FlutterErrorDetails"],"DiagnosticsNode":[]},"_ListenerEntry":{"LinkedListEntry":["_ListenerEntry"],"LinkedListEntry.E":"_ListenerEntry"},"ChangeNotifier":{"Listenable":[]},"ValueNotifier":{"Listenable":[]},"_MergingListenable":{"Listenable":[]},"DiagnosticsProperty":{"DiagnosticsNode":[]},"DiagnosticableNode":{"DiagnosticsNode":[]},"DiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"DiagnosticsBlock":{"DiagnosticsNode":[]},"LocalKey":{"Key":[]},"ValueKey":{"LocalKey":[],"Key":[],"ValueKey.T":"1"},"LicenseEntryWithLineBreaks":{"LicenseEntry":[]},"ObserverList":{"Iterable":["1"],"Iterable.E":"1"},"HashedObserverList":{"Iterable":["1"],"Iterable.E":"1"},"SynchronousFuture":{"Future":["1"]},"FlutterErrorDetailsForPointerEventDispatcher":{"FlutterErrorDetails":[]},"PointerHoverEvent":{"PointerEvent0":[]},"PointerEnterEvent":{"PointerEvent0":[]},"PointerExitEvent":{"PointerEvent0":[]},"PointerDownEvent":{"PointerEvent0":[]},"PointerMoveEvent":{"PointerEvent0":[]},"PointerUpEvent":{"PointerEvent0":[]},"PointerSignalEvent":{"PointerEvent0":[]},"_AbstractPointerEvent":{"PointerEvent0":[]},"_TransformedPointerEvent":{"PointerEvent0":[]},"PointerAddedEvent":{"PointerEvent0":[]},"_TransformedPointerAddedEvent":{"PointerAddedEvent":[],"PointerEvent0":[]},"PointerRemovedEvent":{"PointerEvent0":[]},"_TransformedPointerRemovedEvent":{"PointerRemovedEvent":[],"PointerEvent0":[]},"_TransformedPointerHoverEvent":{"PointerHoverEvent":[],"PointerEvent0":[]},"_TransformedPointerEnterEvent":{"PointerEnterEvent":[],"PointerEvent0":[]},"_TransformedPointerExitEvent":{"PointerExitEvent":[],"PointerEvent0":[]},"_TransformedPointerDownEvent":{"PointerDownEvent":[],"PointerEvent0":[]},"_TransformedPointerMoveEvent":{"PointerMoveEvent":[],"PointerEvent0":[]},"_TransformedPointerUpEvent":{"PointerUpEvent":[],"PointerEvent0":[]},"PointerScrollEvent":{"PointerSignalEvent":[],"PointerEvent0":[]},"_TransformedPointerScrollEvent":{"PointerScrollEvent":[],"PointerSignalEvent":[],"PointerEvent0":[]},"PointerCancelEvent":{"PointerEvent0":[]},"_TransformedPointerCancelEvent":{"PointerCancelEvent":[],"PointerEvent0":[]},"ForcePressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_MatrixTransformPart":{"_TransformPart":[]},"_OffsetTransformPart":{"_TransformPart":[]},"LongPressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"VerticalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"HorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"MultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ImmediateMultiDragGestureRecognizer":{"MultiDragGestureRecognizer":["_ImmediatePointerState"],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DelayedMultiDragGestureRecognizer":{"MultiDragGestureRecognizer":["_DelayedPointerState"],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DoubleTapGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"GestureRecognizer":{"DiagnosticableTree":[],"GestureArenaMember":[]},"OneSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PrimaryPointerGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScaleGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_CombiningGestureArenaMember":{"GestureArenaMember":[]},"_CombiningGestureArenaEntry":{"GestureArenaEntry":[]},"IOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"LicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageListTile":{"StatelessWidget":[],"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"]},"_PackageLicensePageState":{"State":["_PackageLicensePage"]},"_PackageLicensePageTitle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DetailView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialAppState":{"State":["MaterialApp"]},"AppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AppBarState":{"State":["AppBar"]},"_SliverAppBarState":{"State":["SliverAppBar"]},"_AppBarTitleBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderAppBarTitleBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"MaterialRectArcTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Tween.T":"Rect?","Animatable.T":"Rect?"},"MaterialPointArcTween":{"Tween":["Offset"],"Animatable":["Offset"],"Tween.T":"Offset","Animatable.T":"Offset"},"BackButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomAppBarState":{"State":["BottomAppBar"]},"_BottomAppBarClipper":{"CustomClipper":["Path"],"Listenable":[]},"BottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetState":{"State":["BottomSheet"]},"RawMaterialButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawMaterialButtonState":{"State":["RawMaterialButton"]},"_InputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_LerpProperties3":{"MaterialStateProperty":["1?"]},"_LerpSides":{"MaterialStateProperty":["BorderSide?"]},"_LerpShapes":{"MaterialStateProperty":["OutlinedBorder?"]},"ButtonStyleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ButtonStyleState":{"State":["ButtonStyleButton"]},"_MouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_InputPadding0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"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":[]},"YearPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CalendarDatePickerState":{"State":["CalendarDatePicker"]},"_DatePickerModeToggleButtonState":{"State":["_DatePickerModeToggleButton"]},"_MonthPickerState":{"State":["_MonthPicker"]},"_DayPickerState":{"State":["_DayPicker"]},"_YearPickerState":{"State":["YearPicker"]},"Card":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Checkbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CheckboxState":{"State":["Checkbox"]},"_CheckboxPainter":{"Listenable":[]},"CheckboxListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties1":{"MaterialStateProperty":["1"]},"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":[]},"_LerpProperties2":{"MaterialStateProperty":["1"]},"DatePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDialogState":{"State":["DatePickerDialog"]},"_RestorableDatePickerEntryMode":{"RestorableProperty":["DatePickerEntryMode"],"Listenable":[]},"_DatePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AlertDialog":{"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":[]},"DividerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerControllerState":{"State":["DrawerController"]},"Drawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuItemButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenu":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownRoutePage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuItem":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuItemContainer":{"StatelessWidget":[],"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>"},"_RenderMenuItem":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_DropdownButtonState":{"State":["DropdownButton<1>"],"WidgetsBindingObserver":[]},"DropdownButtonFormField":{"FormField":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"1"},"_DropdownButtonFormFieldState":{"FormFieldState":["1"],"State":["FormField<1>"]},"ElevatedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElevatedButtonDefaultBackground":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultElevation":{"MaterialStateProperty":["double"]},"_ElevatedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"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":[]},"_AnimationSwap":{"Animation0":["1"],"Listenable":[]},"IconButton":{"StatelessWidget":[],"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":[]},"InkResponse":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseStateWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkWell":{"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"],"Tween.T":"InputBorder","Animatable.T":"InputBorder"},"_InputBorderPainter":{"Listenable":[]},"_BorderContainerState":{"State":["_BorderContainer"]},"_Shaker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperErrorState":{"State":["_HelperError"]},"_RenderDecoration":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_DecorationElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_Decorator":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputDecoratorState":{"State":["InputDecorator"]},"ListTileTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListTile":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListTileElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderListTile":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"Material":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInkFeatures":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"ShapeBorderTween":{"Tween":["ShapeBorder?"],"Animatable":["ShapeBorder?"],"Tween.T":"ShapeBorder?","Animatable.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"]},"_MaterialStatePropertyWith":{"MaterialStateProperty":["1"]},"_MaterialStatePropertyAll":{"MaterialStateProperty":["1"]},"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":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OutlinedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OutlinedButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0"]},"OutlinedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialPageRoute":{"MaterialRouteTransitionMixin":["1"],"PageRoute":["1"],"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"_ZoomEnterTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomExitTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FadeUpwardsPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FadeUpwardsPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"ZoomPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"CupertinoPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"PaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaginatedDataTableState":{"State":["PaginatedDataTable"]},"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":[],"AbstractNode":[]},"PopupMenuItemState":{"State":["2"]},"_PopupMenu":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"PopupMenuButtonState":{"State":["PopupMenuButton<1>"]},"PopupMenuTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinearProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CircularProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinearProgressIndicatorPainter":{"Listenable":[]},"_LinearProgressIndicatorState":{"State":["LinearProgressIndicator"]},"_CircularProgressIndicatorPainter":{"Listenable":[]},"_CircularProgressIndicatorState":{"State":["CircularProgressIndicator"]},"_RefreshProgressIndicatorPainter":{"Listenable":[]},"_RefreshProgressIndicatorState":{"State":["CircularProgressIndicator"]},"Radio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RadioState":{"State":["Radio<1>"]},"_RadioPainter":{"Listenable":[]},"RadioListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpProperties0":{"MaterialStateProperty":["1"]},"RefreshIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshIndicatorState":{"State":["RefreshIndicator"]},"ReorderableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableListViewState":{"State":["ReorderableListView"]},"_ReorderableListViewChildGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalObjectKey.T":"State","GlobalKey.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":[]},"_BodyBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransitionState":{"State":["_FloatingActionButtonTransition"]},"PersistentBottomSheetController":{"ScaffoldFeatureController":["_StandardBottomSheet","1"]},"Scrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollbarState":{"State":["Scrollbar"]},"_MaterialScrollbarState":{"RawScrollbarState":["_MaterialScrollbar"],"State":["_MaterialScrollbar"]},"_LerpProperties4":{"MaterialStateProperty":["1"]},"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":[]},"_LerpProperties":{"MaterialStateProperty":["1"]},"_TabControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTabController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabController":{"Listenable":[]},"_DefaultTabControllerState":{"State":["DefaultTabController"]},"UnderlineTabIndicator":{"Decoration":[]},"_UnderlinePainter":{"BoxPainter":[]},"TabBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBarView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Tab":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabLabelBarRenderer":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_TabLabelBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndicatorPainter":{"Listenable":[]},"_ChangeAnimation":{"Animation0":["double"],"Listenable":[]},"_DragAnimation":{"Animation0":["double"],"Listenable":[]},"_TabBarScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[]},"_TabBarScrollController":{"ScrollController":[],"Listenable":[]},"_TabBarState":{"State":["TabBar"]},"_TabBarViewState":{"State":["TabBarView"]},"TextButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0"]},"TextButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextFieldState":{"State":["TextField"]},"TextFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_TextFormFieldState":{"FormFieldState":["String"],"State":["FormField"]},"_TextSelectionHandlePainter":{"Listenable":[]},"TextSelectionTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Theme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ThemeDataTween":{"Tween":["ThemeData"],"Animatable":["ThemeData"],"Tween.T":"ThemeData","Animatable.T":"ThemeData"},"AnimatedTheme":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedThemeState":{"State":["AnimatedTheme"]},"_Dial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerInput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerDialog":{"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":[]},"_DayPeriodInputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding1":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_DialPainter":{"Listenable":[]},"_DialState":{"State":["_Dial"]},"_TimePickerInputState":{"State":["_TimePickerInput"]},"_HourTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextFieldState":{"State":["_HourMinuteTextField"]},"_TimePickerDialogState":{"State":["_TimePickerDialog"]},"TimePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ToggleButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectToggleButton":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectToggleButtonRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"ToggleButtonsTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter":{"Listenable":[]},"Tooltip":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TooltipState":{"State":["Tooltip"]},"_TooltipOverlay":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"NetworkImage":{"ImageProvider":["NetworkImage0"],"ImageProvider.T":"NetworkImage0"},"Alignment":{"AlignmentGeometry":[]},"AlignmentDirectional":{"AlignmentGeometry":[]},"_MixedAlignment":{"AlignmentGeometry":[]},"_SystemFontsNotifier":{"Listenable":[]},"OutlinedBorder":{"ShapeBorder":[]},"_CompoundBorder":{"ShapeBorder":[]},"BoxBorder":{"ShapeBorder":[]},"Border":{"ShapeBorder":[]},"BorderDirectional":{"ShapeBorder":[]},"BoxDecoration":{"Decoration":[]},"_BoxDecorationPainter":{"BoxPainter":[]},"CircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ColorSwatch":{"Color":[]},"EdgeInsets":{"EdgeInsetsGeometry":[]},"EdgeInsetsDirectional":{"EdgeInsetsGeometry":[]},"_MixedEdgeInsets":{"EdgeInsetsGeometry":[]},"FractionalOffset":{"AlignmentGeometry":[]},"NetworkImage0":{"ImageProvider":["NetworkImage0"]},"AssetBundleImageProvider":{"ImageProvider":["AssetBundleImageKey"]},"AssetImage":{"ImageProvider":["AssetBundleImageKey"],"ImageProvider.T":"AssetBundleImageKey"},"InlineSpan":{"DiagnosticableTree":[]},"RoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_RoundedRectangleToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ShapeDecoration":{"Decoration":[]},"_ShapeDecorationPainter":{"BoxPainter":[]},"TextSpan":{"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[]},"RenderAnimatedSize":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"BoxHitTestResult":{"HitTestResult":[]},"ContainerBoxParentData":{"BoxParentData":[],"ContainerParentDataMixin":["1"]},"RenderBox":{"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"BoxHitTestEntry":{"HitTestEntry":[]},"MultiChildLayoutParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderCustomMultiChildLayoutBox":{"RenderBoxContainerDefaultsMixin":["RenderBox","MultiChildLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","MultiChildLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderCustomPaint":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"CustomPainter":{"Listenable":[]},"RenderEditablePainter":{"Listenable":[]},"RenderEditable":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_RenderEditableCustomPaint":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_TextHighlightPainter":{"RenderEditablePainter":[],"Listenable":[]},"_FloatingCursorPainter":{"RenderEditablePainter":[],"Listenable":[]},"_CompositeRenderEditablePainter":{"RenderEditablePainter":[],"Listenable":[]},"RenderErrorBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"FlexParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderFlex":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderImage":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"Layer0":{"DiagnosticableTree":[],"AbstractNode":[]},"ContainerLayer0":{"DiagnosticableTree":[],"AbstractNode":[]},"OffsetLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"TransformLayer":{"OffsetLayer":[],"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"PictureLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"PlatformViewLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"PerformanceOverlayLayer":{"DiagnosticableTree":[],"AbstractNode":[]},"ClipRectLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ClipRRectLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ClipPathLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"OpacityLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"PhysicalModelLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"LeaderLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"FollowerLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"AnnotatedRegionLayer":{"ContainerLayer0":[],"DiagnosticableTree":[],"AbstractNode":[]},"ListBodyParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"MouseTracker":{"Listenable":[]},"RenderObject":{"DiagnosticableTree":[],"AbstractNode":[]},"_RootSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_SwitchableSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_AbortingSemanticsFragment":{"_InterestingSemanticsFragment":[]},"DiagnosticsDebugCreator":{"DiagnosticsProperty":["Object"],"DiagnosticsNode":[]},"TextParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderParagraph":{"RenderBoxContainerDefaultsMixin":["RenderBox","TextParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.1":"TextParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderPerformanceOverlay":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_PlatformViewGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PlatformViewRenderBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"AbstractNode":[]},"RenderProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderProxyBoxWithHitTestBehavior":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"CustomClipper":{"Listenable":[]},"ShapeBorderClipper":{"CustomClipper":["Path"],"Listenable":[]},"RenderAbsorbPointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSemanticsGestureHandler":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderConstrainedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderLimitedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderAspectRatio":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderIntrinsicWidth":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderIntrinsicHeight":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderAnimatedOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_RenderCustomClip":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderClipRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderClipRRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderClipOval":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderClipPath":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_RenderPhysicalModelBase":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderPhysicalModel":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderPhysicalShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderDecoratedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderTransform":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderFittedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderFractionalTranslation":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderPointerListener":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"AbstractNode":[]},"RenderRepaintBoundary":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderIgnorePointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderOffstage":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSemanticsAnnotations":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderBlockSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderMergeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderExcludeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderIndexedSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderLeaderLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderFollowerLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderAnnotatedRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderAligningShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderPositionedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderFractionallySizedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderCustomSingleChildLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"SliverHitTestResult":{"HitTestResult":[]},"SliverLogicalContainerParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderSliver"]},"SliverPhysicalContainerParentData":{"SliverPhysicalParentData":[],"ContainerParentDataMixin":["RenderSliver"]},"RenderSliver":{"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"SliverHitTestEntry":{"HitTestEntry":[]},"RenderSliverFillViewport":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverFixedExtentBoxAdaptor":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"SliverGridParentData":{"SliverMultiBoxAdaptorParentData":[],"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[]},"RenderSliverGrid":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverList":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"SliverMultiBoxAdaptorParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[]},"RenderSliverMultiBoxAdaptor":{"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSliverEdgeInsetsPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSliverPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSliverPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderSliverPinnedPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"StackParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderIndexedStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TableCellParentData":{"BoxParentData":[]},"IntrinsicColumnWidth":{"TableColumnWidth":[]},"FixedColumnWidth":{"TableColumnWidth":[]},"FlexColumnWidth":{"TableColumnWidth":[]},"RenderTable":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"AlignmentGeometryTween":{"Tween":["AlignmentGeometry?"],"Animatable":["AlignmentGeometry?"],"Tween.T":"AlignmentGeometry?","Animatable.T":"AlignmentGeometry?"},"RenderView":{"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderViewportBase":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["1"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","1"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverPhysicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverPhysicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"SliverPhysicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverPhysicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"RenderShrinkWrappingViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverLogicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverLogicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"SliverLogicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverLogicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"ViewportOffset":{"Listenable":[]},"WrapParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderWrap":{"RenderBoxContainerDefaultsMixin":["RenderBox","WrapParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","WrapParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TickerFuture":{"Future":["~"]},"TickerCanceled":{"Exception":[]},"SemanticsNode":{"DiagnosticableTree":[],"AbstractNode":[]},"_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"]},"_AutofillScopeTextInputConfiguration":{"TextInputConfiguration":[]},"PlatformException":{"Exception":[]},"MissingPluginException":{"Exception":[]},"_DeferringMouseCursor":{"MouseCursor0":[]},"_NoopMouseCursorSession":{"MouseCursorSession":[]},"_NoopMouseCursor":{"MouseCursor0":[]},"_SystemMouseCursorSession":{"MouseCursorSession":[]},"SystemMouseCursor":{"MouseCursor0":[]},"RawKeyDownEvent":{"RawKeyEvent":[]},"RawKeyUpEvent":{"RawKeyEvent":[]},"RestorationManager":{"Listenable":[]},"FilteringTextInputFormatter":{"TextInputFormatter":[]},"LengthLimitingTextInputFormatter":{"TextInputFormatter":[]},"Actions":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionsMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusableActionDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DoNothingIntent":{"Intent":[]},"DoNothingAndStopPropagationIntent":{"Intent":[]},"ActivateIntent":{"Intent":[]},"ButtonActivateIntent":{"Intent":[]},"DismissIntent":{"Intent":[]},"PrioritizedIntents":{"Intent":[]},"ContextAction":{"Action":["1"]},"CallbackAction":{"Action":["1"]},"_ActionsState":{"State":["Actions"]},"_FocusableActionDetectorState":{"State":["FocusableActionDetector"]},"DoNothingAction":{"Action":["Intent"]},"DismissAction":{"Action":["DismissIntent"]},"PrioritizedAction":{"Action":["PrioritizedIntents"]},"AnimatedCrossFade":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedCrossFadeState":{"State":["AnimatedCrossFade"]},"AnimatedSize":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedSwitcher":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSwitcherState":{"State":["AnimatedSwitcher"]},"AnnotatedRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"WidgetsApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MediaQueryFromWindow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsAppState":{"State":["WidgetsApp"],"WidgetsBindingObserver":[]},"_MediaQueryFromWindowsState":{"State":["_MediaQueryFromWindow"],"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":[]},"_RawAutocompleteState":{"State":["RawAutocomplete<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":[]},"Opacity":{"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"},"CustomMultiChildLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizedBox":{"SingleChildRenderObjectWidget":[],"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":{"Flexible":[],"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"DefaultAssetBundle":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Listener":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MouseRegion":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IgnorePointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Semantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlockSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomPaint":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipOval":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipPath":{"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":[]},"ConstrainedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionallySizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitedBox":{"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":[]},"Stack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedStack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PositionedDirectional":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Wrap":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawImage":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MouseRegionState":{"State":["MouseRegion"]},"_RawMouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RepaintBoundary":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AbsorbPointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MergeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExcludeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyedSubtree":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Builder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ColoredBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderColoredBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"RenderObjectToWidgetAdapter":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderObjectToWidgetElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"WidgetsFlutterBinding":{"SchedulerBinding":[]},"Container":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecorationClipper":{"CustomClipper":["Path"],"Listenable":[]},"DefaultTextEditingActions":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DoNothingAndStopPropagationTextAction":{"ContextAction":["DoNothingAndStopPropagationTextIntent"],"Action":["DoNothingAndStopPropagationTextIntent"]},"_ExpandSelectionLeftByLineTextAction":{"ContextAction":["ExpandSelectionLeftByLineTextIntent"],"Action":["ExpandSelectionLeftByLineTextIntent"]},"_ExpandSelectionRightByLineTextAction":{"ContextAction":["ExpandSelectionRightByLineTextIntent"],"Action":["ExpandSelectionRightByLineTextIntent"]},"_ExpandSelectionToEndTextAction":{"ContextAction":["ExpandSelectionToEndTextIntent"],"Action":["ExpandSelectionToEndTextIntent"]},"_ExpandSelectionToStartTextAction":{"ContextAction":["ExpandSelectionToStartTextIntent"],"Action":["ExpandSelectionToStartTextIntent"]},"_ExtendSelectionDownTextAction":{"ContextAction":["ExtendSelectionDownTextIntent"],"Action":["ExtendSelectionDownTextIntent"]},"_ExtendSelectionLeftByLineTextAction":{"ContextAction":["ExtendSelectionLeftByLineTextIntent"],"Action":["ExtendSelectionLeftByLineTextIntent"]},"_ExtendSelectionLeftByWordAndStopAtReversalTextAction":{"ContextAction":["ExtendSelectionLeftByWordAndStopAtReversalTextIntent"],"Action":["ExtendSelectionLeftByWordAndStopAtReversalTextIntent"]},"_ExtendSelectionLeftByWordTextAction":{"ContextAction":["ExtendSelectionLeftByWordTextIntent"],"Action":["ExtendSelectionLeftByWordTextIntent"]},"_ExtendSelectionLeftTextAction":{"ContextAction":["ExtendSelectionLeftTextIntent"],"Action":["ExtendSelectionLeftTextIntent"]},"_ExtendSelectionRightByLineTextAction":{"ContextAction":["ExtendSelectionRightByLineTextIntent"],"Action":["ExtendSelectionRightByLineTextIntent"]},"_ExtendSelectionRightByWordAndStopAtReversalTextAction":{"ContextAction":["ExtendSelectionRightByWordAndStopAtReversalTextIntent"],"Action":["ExtendSelectionRightByWordAndStopAtReversalTextIntent"]},"_ExtendSelectionRightByWordTextAction":{"ContextAction":["ExtendSelectionRightByWordTextIntent"],"Action":["ExtendSelectionRightByWordTextIntent"]},"_ExtendSelectionRightTextAction":{"ContextAction":["ExtendSelectionRightTextIntent"],"Action":["ExtendSelectionRightTextIntent"]},"_ExtendSelectionUpTextAction":{"ContextAction":["ExtendSelectionUpTextIntent"],"Action":["ExtendSelectionUpTextIntent"]},"_MoveSelectionDownTextAction":{"ContextAction":["MoveSelectionDownTextIntent"],"Action":["MoveSelectionDownTextIntent"]},"_MoveSelectionLeftTextAction":{"ContextAction":["MoveSelectionLeftTextIntent"],"Action":["MoveSelectionLeftTextIntent"]},"_MoveSelectionRightTextAction":{"ContextAction":["MoveSelectionRightTextIntent"],"Action":["MoveSelectionRightTextIntent"]},"_MoveSelectionUpTextAction":{"ContextAction":["MoveSelectionUpTextIntent"],"Action":["MoveSelectionUpTextIntent"]},"_MoveSelectionLeftByLineTextAction":{"ContextAction":["MoveSelectionLeftByLineTextIntent"],"Action":["MoveSelectionLeftByLineTextIntent"]},"_MoveSelectionLeftByWordTextAction":{"ContextAction":["MoveSelectionLeftByWordTextIntent"],"Action":["MoveSelectionLeftByWordTextIntent"]},"_MoveSelectionRightByLineTextAction":{"ContextAction":["MoveSelectionRightByLineTextIntent"],"Action":["MoveSelectionRightByLineTextIntent"]},"_MoveSelectionRightByWordTextAction":{"ContextAction":["MoveSelectionRightByWordTextIntent"],"Action":["MoveSelectionRightByWordTextIntent"]},"_MoveSelectionToEndTextAction":{"ContextAction":["MoveSelectionToEndTextIntent"],"Action":["MoveSelectionToEndTextIntent"]},"_MoveSelectionToStartTextAction":{"ContextAction":["MoveSelectionToStartTextIntent"],"Action":["MoveSelectionToStartTextIntent"]},"DefaultTextEditingShortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ResetNotifier":{"Listenable":[]},"_InheritedResetNotifier":{"InheritedNotifier":["_ResetNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"_ResetNotifier"},"_DraggableScrollableSheetState":{"State":["DraggableScrollableSheet"]},"_DraggableScrollableSheetScrollController":{"ScrollController":[],"Listenable":[]},"_DraggableScrollableSheetScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[]},"DualTransitionBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DualTransitionBuilderState":{"State":["DualTransitionBuilder"]},"TextEditingController":{"ValueNotifier":["TextEditingValue"],"Listenable":[]},"EditableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditableTextState":{"State":["EditableText"],"WidgetsBindingObserver":[],"AutofillClient":[],"TextEditingActionTarget":[]},"_Editable":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusNode":{"DiagnosticableTree":[],"Listenable":[]},"FocusScopeNode":{"FocusNode":[],"DiagnosticableTree":[],"Listenable":[]},"FocusManager":{"DiagnosticableTree":[],"Listenable":[]},"Focus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusMarker":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"_FocusState":{"State":["Focus"]},"FocusScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusScopeState":{"State":["Focus"]},"FocusTraversalGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusTraversalGroupMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RequestFocusIntent":{"Intent":[]},"NextFocusIntent":{"Intent":[]},"PreviousFocusIntent":{"Intent":[]},"DirectionalFocusIntent":{"Intent":[]},"_FocusTraversalGroupState":{"State":["FocusTraversalGroup"]},"RequestFocusAction":{"Action":["RequestFocusIntent"]},"NextFocusAction":{"Action":["NextFocusIntent"]},"PreviousFocusAction":{"Action":["PreviousFocusIntent"]},"DirectionalFocusAction":{"Action":["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":[]},"ProxyWidget":{"Widget":[],"DiagnosticableTree":[]},"ParentDataWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderObjectWidget":{"Widget":[],"DiagnosticableTree":[]},"LeafRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Element0":{"DiagnosticableTree":[],"BuildContext":[]},"ComponentElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"StatefulElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ProxyElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"UniqueKey":{"LocalKey":[],"Key":[]},"GlobalObjectKey":{"GlobalKey":["1"],"Key":[],"GlobalObjectKey.T":"1","GlobalKey.T":"1"},"_ElementDiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"ErrorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"StatelessElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ParentDataElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderObjectElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RootRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"LeafRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SingleChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"MultiChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget":{"Widget":[],"DiagnosticableTree":[]},"RawGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetectorState":{"State":["RawGestureDetector"]},"GestureRecognizerFactoryWithHandlers":{"GestureRecognizerFactory":["1"]},"GestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_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"],"Tween.T":"BoxConstraints","Animatable.T":"BoxConstraints"},"DecorationTween":{"Tween":["Decoration"],"Animatable":["Decoration"],"Tween.T":"Decoration","Animatable.T":"Decoration"},"EdgeInsetsGeometryTween":{"Tween":["EdgeInsetsGeometry"],"Animatable":["EdgeInsetsGeometry"],"Tween.T":"EdgeInsetsGeometry","Animatable.T":"EdgeInsetsGeometry"},"BorderRadiusTween":{"Tween":["BorderRadius"],"Animatable":["BorderRadius"],"Tween.T":"BorderRadius","Animatable.T":"BorderRadius"},"Matrix4Tween":{"Tween":["Matrix4"],"Animatable":["Matrix4"],"Tween.T":"Matrix4","Animatable.T":"Matrix4"},"TextStyleTween":{"Tween":["TextStyle"],"Animatable":["TextStyle"],"Tween.T":"TextStyle","Animatable.T":"TextStyle"},"ImplicitlyAnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPadding":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedOpacity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedDefaultTextStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPhysicalModel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImplicitlyAnimatedWidgetState":{"State":["1"]},"AnimatedWidgetBaseState":{"State":["1"]},"_AnimatedContainerState":{"State":["AnimatedContainer"]},"_AnimatedPaddingState":{"State":["AnimatedPadding"]},"_AnimatedOpacityState":{"State":["AnimatedOpacity"]},"_AnimatedDefaultTextStyleState":{"State":["AnimatedDefaultTextStyle"]},"_AnimatedPhysicalModelState":{"State":["AnimatedPhysicalModel"]},"InheritedNotifier":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedNotifierElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CaptureAll":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConstrainedLayoutBuilder":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LayoutBuilder":{"ConstrainedLayoutBuilder":["BoxConstraints"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxConstraints"},"_LayoutBuilderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxConstraints","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"RenderConstrainedLayoutBuilder.0":"BoxConstraints"},"_LocalizationsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Localizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsLocalizationsDelegate":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"DefaultWidgetsLocalizations":{"WidgetsLocalizations":[]},"_LocalizationsState":{"State":["Localizations"]},"MediaQuery":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnyTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ModalBarrier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedModalBarrier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnyTapGestureRecognizerFactory":{"GestureRecognizerFactory":["_AnyTapGestureRecognizer"]},"_ModalBarrierGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigationToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Page0":{"RouteSettings":[]},"HeroControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Navigator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigatorState":{"State":["Navigator"]},"_NotAnnounced":{"Route":["~"]},"_NavigatorPushObservation":{"_NavigatorObservation":[]},"_NavigatorPopObservation":{"_NavigatorObservation":[]},"_NavigatorRemoveObservation":{"_NavigatorObservation":[]},"_NavigatorReplaceObservation":{"_NavigatorObservation":[]},"_HistoryProperty":{"RestorableProperty":["Map>?"],"Listenable":[]},"NotificationListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverflowBarParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"OverflowBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderOverflowBar":{"RenderBoxContainerDefaultsMixin":["RenderBox","_OverflowBarParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_OverflowBarParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"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"]},"_Theatre":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TheatreElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderTheatre":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"StackParentData","ContainerRenderObjectMixin.0":"RenderBox"},"GlowingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GlowingOverscrollIndicatorState":{"State":["GlowingOverscrollIndicator"]},"_GlowController":{"Listenable":[]},"_GlowingOverscrollIndicatorPainter":{"Listenable":[]},"PageStorageKey":{"ValueKey":["1"],"LocalKey":[],"Key":[]},"PageStorage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageController":{"ScrollController":[],"Listenable":[]},"_PagePosition":{"ScrollPosition":[],"PageMetrics":[],"ViewportOffset":[],"Listenable":[]},"_PageViewState":{"State":["PageView"]},"PageRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"PerformanceOverlay":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HtmlElementViewController":{"PlatformViewController":[]},"PlatformViewLink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewSurface":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"HtmlElementView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PlatformViewLinkState":{"State":["PlatformViewLink"]},"PreferredSize":{"StatelessWidget":[],"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":[],"GlobalObjectKey.T":"State","GlobalKey.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":[],"_RestorablePrimitiveValueN.T":"1"},"RestorableBool":{"_RestorablePrimitiveValueN":["bool"],"RestorableProperty":["bool"],"Listenable":[],"_RestorablePrimitiveValueN.T":"bool"},"RestorableDateTime":{"RestorableProperty":["DateTime"],"Listenable":[]},"RestorableListenable":{"RestorableProperty":["1"],"Listenable":[]},"RestorableChangeNotifier":{"RestorableProperty":["1"],"Listenable":[]},"RestorableTextEditingController":{"RestorableProperty":["TextEditingController"],"Listenable":[]},"OverlayRoute":{"Route":["1"]},"TransitionRoute":{"Route":["1"]},"_ModalScopeStatus":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScopeState":{"State":["_ModalScope<1>"]},"ModalRoute":{"TransitionRoute":["1"],"Route":["1"]},"_DismissModalAction":{"Action":["DismissIntent"]},"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":[]},"ScrollNotification":{"LayoutChangedNotification":[]},"ScrollUpdateNotification":{"ScrollNotification":[],"LayoutChangedNotification":[]},"OverscrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[]},"ScrollStartNotification":{"ScrollNotification":[],"LayoutChangedNotification":[]},"ScrollEndNotification":{"ScrollNotification":[],"LayoutChangedNotification":[]},"UserScrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[]},"ScrollPosition":{"ViewportOffset":[],"Listenable":[]},"ScrollPositionWithSingleContext":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[]},"ScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GridView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollIntent":{"Intent":[]},"ScrollableState":{"State":["Scrollable"]},"_ScrollSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScrollSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"ScrollAction":{"Action":["ScrollIntent"]},"_RestorableScrollOffset":{"RestorableProperty":["double?"],"Listenable":[]},"RawScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScrollbarPainter":{"Listenable":[]},"RawScrollbarState":{"State":["1"]},"LogicalKeySet":{"KeySet":["LogicalKeyboardKey"],"KeySet.T":"LogicalKeyboardKey"},"ShortcutManager":{"Listenable":[]},"Shortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ShortcutsState":{"State":["Shortcuts"]},"_ShortcutsMarker":{"InheritedNotifier":["ShortcutManager"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"ShortcutManager"},"_SingleChildViewport":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSingleChildViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"_SaltedValueKey":{"ValueKey":["Key"],"LocalKey":[],"Key":[],"ValueKey.T":"Key"},"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":[],"AbstractNode":[]},"SliverPersistentHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverPersistentHeaderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_SliverPersistentHeaderRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverPinnedPersistentHeader":{"_SliverPersistentHeaderRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverPinnedPersistentHeaderForWidgets":{"_RenderSliverPersistentHeaderForWidgetsMixin":[],"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[]},"Spacer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Table":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TableElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"TableCell":{"ParentDataWidget":["TableCellParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TableCellParentData"},"DefaultTextStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextHeightBehavior":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Text":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget2":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextEditingAction":{"ContextAction":["1"],"Action":["1"]},"DoNothingAndStopPropagationTextIntent":{"Intent":[]},"ExpandSelectionLeftByLineTextIntent":{"Intent":[]},"ExpandSelectionRightByLineTextIntent":{"Intent":[]},"ExpandSelectionToEndTextIntent":{"Intent":[]},"ExpandSelectionToStartTextIntent":{"Intent":[]},"ExtendSelectionDownTextIntent":{"Intent":[]},"ExtendSelectionLeftByLineTextIntent":{"Intent":[]},"ExtendSelectionLeftByWordAndStopAtReversalTextIntent":{"Intent":[]},"ExtendSelectionLeftByWordTextIntent":{"Intent":[]},"ExtendSelectionLeftTextIntent":{"Intent":[]},"ExtendSelectionRightByLineTextIntent":{"Intent":[]},"ExtendSelectionRightByWordAndStopAtReversalTextIntent":{"Intent":[]},"ExtendSelectionRightByWordTextIntent":{"Intent":[]},"ExtendSelectionRightTextIntent":{"Intent":[]},"ExtendSelectionUpTextIntent":{"Intent":[]},"MoveSelectionDownTextIntent":{"Intent":[]},"MoveSelectionLeftByLineTextIntent":{"Intent":[]},"MoveSelectionLeftByWordTextIntent":{"Intent":[]},"MoveSelectionLeftTextIntent":{"Intent":[]},"MoveSelectionToStartTextIntent":{"Intent":[]},"MoveSelectionRightByLineTextIntent":{"Intent":[]},"MoveSelectionRightByWordTextIntent":{"Intent":[]},"MoveSelectionRightTextIntent":{"Intent":[]},"MoveSelectionToEndTextIntent":{"Intent":[]},"MoveSelectionUpTextIntent":{"Intent":[]},"_TextSelectionHandleOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransparentTapGestureRecognizer":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TextSelectionHandleOverlayState":{"State":["_TextSelectionHandleOverlay"]},"_TextSelectionGestureDetectorState":{"State":["TextSelectionGestureDetector"]},"_EffectiveTickerMode":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TickerMode":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Title":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlideTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FadeTransition":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedState":{"State":["AnimatedWidget"]},"ScaleTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RotationTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBoxTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ValueListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ValueListenableBuilderState":{"State":["ValueListenableBuilder<1>"]},"Viewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ShrinkWrappingViewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Visibility":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WillPopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WillPopScopeState":{"State":["WillPopScope"]},"DownloadProgress":{"FileResponse":[]},"FileInfo":{"FileResponse":[]},"NonStoringObjectProvider":{"CacheInfoRepository":[]},"HttpGetResponse":{"FileServiceResponse":[]},"HttpExceptionWithStatus":{"Exception":[]},"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":[]},"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":[]},"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":[]},"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":[]},"_SlidableScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableData":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Slidable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableState":{"State":["Slidable"]},"_SlidableStackActionPane":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableDrawerActionPane":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClosableSlideAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconSlideAction":{"StatelessWidget":[],"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":[]},"TypeAheadField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuggestionsList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TypeAheadFormField":{"FormField":["String*"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String*"},"_TypeAheadFormFieldState":{"FormFieldState":["String*"],"State":["FormField*"]},"_TypeAheadFieldState":{"State":["TypeAheadField<1*>*"],"WidgetsBindingObserver":[]},"_SuggestionsListState":{"State":["_SuggestionsList<1*>*"]},"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"},"_DateFormatLiteralField":{"_DateFormatField":[]},"_DateFormatQuotedField":{"_DateFormatField":[]},"_DateFormatPatternField":{"_DateFormatField":[]},"LocaleDataException":{"Exception":[]},"_$AccountEntitySerializer":{"StructuredSerializer":["AccountEntity*"],"Serializer":["AccountEntity*"]},"_$AccountEntity":{"AccountEntity":[]},"ClientEntity":{"BaseEntity":[],"SelectableEntity":[]},"ContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ClientListResponseSerializer":{"StructuredSerializer":["ClientListResponse*"],"Serializer":["ClientListResponse*"]},"_$ClientItemResponseSerializer":{"StructuredSerializer":["ClientItemResponse*"],"Serializer":["ClientItemResponse*"]},"_$ClientEntitySerializer":{"StructuredSerializer":["ClientEntity*"],"Serializer":["ClientEntity*"]},"_$ContactEntitySerializer":{"StructuredSerializer":["ContactEntity*"],"Serializer":["ContactEntity*"]},"_$ClientListResponse":{"ClientListResponse":[]},"_$ClientItemResponse":{"ClientItemResponse":[]},"_$ClientEntity":{"ClientEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$ContactEntity":{"ContactEntity":[],"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*"]},"_$CompanyEntity":{"CompanyEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayEntity":{"GatewayEntity":[],"SelectableEntity":[]},"_$GatewayOptionsEntity":{"GatewayOptionsEntity":[]},"_$UserCompanyEntity":{"UserCompanyEntity":[]},"_$UserSettingsEntity":{"UserSettingsEntity":[]},"_$ReportSettingsEntity":{"ReportSettingsEntity":[]},"_$CompanyItemResponse":{"CompanyItemResponse":[]},"_$RegistrationFieldEntity":{"RegistrationFieldEntity":[]},"_$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":{"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":[]},"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":[]},"_$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":[]},"_$SettingsEntitySerializer":{"StructuredSerializer":["SettingsEntity*"],"Serializer":["SettingsEntity*"]},"_$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":[]},"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":[]},"_$InvoiceStatusEntitySerializer":{"StructuredSerializer":["InvoiceStatusEntity*"],"Serializer":["InvoiceStatusEntity*"]},"_$InvoiceStatusEntity":{"InvoiceStatusEntity":[],"EntityStatus":[]},"LanguageEntity":{"SelectableEntity":[]},"_$LanguageListResponseSerializer":{"StructuredSerializer":["LanguageListResponse*"],"Serializer":["LanguageListResponse*"]},"_$LanguageItemResponseSerializer":{"StructuredSerializer":["LanguageItemResponse*"],"Serializer":["LanguageItemResponse*"]},"_$LanguageEntitySerializer":{"StructuredSerializer":["LanguageEntity*"],"Serializer":["LanguageEntity*"]},"_$LanguageEntity":{"LanguageEntity":[],"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":[]},"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":[]},"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":[]},"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":[]},"_$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":[]},"LoadStaticSuccess":{"PersistStatic":[]},"ToggleEditorLayout":{"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":[]},"ViewClientList":{"StopLoading":[]},"ViewClient":{"PersistUI":[],"PersistPrefs":[]},"EditClient":{"PersistUI":[],"PersistPrefs":[]},"EditContact":{"PersistUI":[]},"UpdateClient":{"PersistUI":[]},"LoadClientSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"DeleteClientsRequest":{"StartSaving":[]},"DeleteClientsSuccess":{"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":[]},"LoadClientRequest":{"StartLoading":[]},"LoadClientFailure":{"StopLoading":[]},"LoadClientsRequest":{"StartLoading":[]},"SaveClientFailure":{"StopSaving":[]},"ArchiveClientsFailure":{"StopSaving":[]},"DeleteClientsFailure":{"StopSaving":[]},"RestoreClientFailure":{"StopSaving":[]},"SaveClientDocumentFailure":{"StopSaving":[]},"_$ClientStateSerializer":{"StructuredSerializer":["ClientState*"],"Serializer":["ClientState*"]},"_$ClientUIStateSerializer":{"StructuredSerializer":["ClientUIState*"],"Serializer":["ClientUIState*"]},"_$ClientState":{"ClientState":[]},"_$ClientUIState":{"ClientUIState":[]},"SelectCompany":{"ClearClientMultiselect":[]},"UpdateCompany":{"PersistUI":[]},"SaveCompanyRequest":{"StartSaving":[]},"SaveCompanySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompany":{"StartSaving":[]},"DeleteCompanyRequest":{"StartSaving":[]},"PurgeDataRequest":{"StartSaving":[]},"SaveCompanyDocumentRequest":{"StartSaving":[]},"SetDefaultCompanyRequest":{"StartSaving":[]},"SaveCompanyFailure":{"StopSaving":[]},"AddCompanySuccess":{"StopSaving":[]},"DeleteCompanySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyFailure":{"StopSaving":[]},"PurgeDataSuccess":{"StopSaving":[],"PersistData":[]},"PurgeDataFailure":{"StopSaving":[]},"SaveCompanyDocumentFailure":{"StopSaving":[]},"SetDefaultCompanySuccess":{"StopSaving":[]},"SetDefaultCompanyFailure":{"StopSaving":[]},"_$UserCompanyStateSerializer":{"StructuredSerializer":["UserCompanyState*"],"Serializer":["UserCompanyState*"]},"_$SettingsUIStateSerializer":{"StructuredSerializer":["SettingsUIState*"],"Serializer":["SettingsUIState*"]},"_$UserCompanyState":{"UserCompanyState":[]},"_$SettingsUIState":{"SettingsUIState":[]},"ViewCompanyGatewayList":{"StopLoading":[]},"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":[]},"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":[]},"RestoreCompanyGatewayFailure":{"StopSaving":[]},"_$CompanyGatewayStateSerializer":{"StructuredSerializer":["CompanyGatewayState*"],"Serializer":["CompanyGatewayState*"]},"_$CompanyGatewayUIStateSerializer":{"StructuredSerializer":["CompanyGatewayUIState*"],"Serializer":["CompanyGatewayUIState*"]},"_$CompanyGatewayState":{"CompanyGatewayState":[]},"_$CompanyGatewayUIState":{"CompanyGatewayUIState":[]},"ViewCreditList":{"StopLoading":[]},"ViewCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCreditItem":{"PersistUI":[]},"UpdateCredit":{"PersistUI":[]},"UpdateCreditClient":{"PersistUI":[]},"LoadCreditSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"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":[]},"LoadCreditsRequest":{"StartLoading":[]},"SaveCreditFailure":{"StopSaving":[]},"EmailCreditSuccess":{"StopSaving":[],"PersistData":[]},"EmailCreditFailure":{"StopSaving":[]},"MarkSentCreditFailure":{"StopSaving":[]},"BulkEmailCreditsSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsFailure":{"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":[]},"UpdateDashboardSelection":{"PersistUI":[]},"UpdateDashboardEntityType":{"PersistUI":[]},"UpdateDashboardSidebar":{"PersistUI":[]},"UpdateDashboardSettings":{"PersistUI":[]},"_$DashboardUIStateSerializer":{"StructuredSerializer":["DashboardUIState*"],"Serializer":["DashboardUIState*"]},"_$DashboardUISettingsSerializer":{"StructuredSerializer":["DashboardUISettings*"],"Serializer":["DashboardUISettings*"]},"_$DashboardUIState":{"DashboardUIState":[]},"_$DashboardUISettings":{"DashboardUISettings":[]},"ViewDesignList":{"StopLoading":[]},"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":{"StopLoading":[]},"ViewDocument":{"PersistUI":[]},"EditDocument":{"PersistUI":[]},"UpdateDocument":{"PersistUI":[]},"LoadDocumentSuccess":{"StopLoading":[],"PersistData":[]},"LoadDocumentsSuccess":{"StopLoading":[]},"SaveDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveDocumentRequest":{"StartSaving":[]},"ArchiveDocumentSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDocumentRequest":{"StartSaving":[]},"DeleteDocumentSuccess":{"StopSaving":[],"PersistData":[]},"RestoreDocumentRequest":{"StartSaving":[]},"RestoreDocumentSuccess":{"StopSaving":[],"PersistData":[]},"FilterDocuments":{"PersistUI":[]},"SortDocuments":{"PersistUI":[],"PersistPrefs":[]},"FilterDocumentsByState":{"PersistUI":[]},"FilterDocumentsByCustom1":{"PersistUI":[]},"FilterDocumentsByCustom2":{"PersistUI":[]},"FilterDocumentsByCustom3":{"PersistUI":[]},"FilterDocumentsByCustom4":{"PersistUI":[]},"LoadDocumentRequest":{"StartLoading":[]},"LoadDocumentFailure":{"StopLoading":[]},"LoadDocumentsRequest":{"StartLoading":[]},"LoadDocumentsFailure":{"StopLoading":[]},"ArchiveDocumentFailure":{"StopSaving":[]},"DeleteDocumentFailure":{"StopSaving":[]},"RestoreDocumentFailure":{"StopSaving":[]},"_$DocumentStateSerializer":{"StructuredSerializer":["DocumentState*"],"Serializer":["DocumentState*"]},"_$DocumentUIStateSerializer":{"StructuredSerializer":["DocumentUIState*"],"Serializer":["DocumentUIState*"]},"_$DocumentState":{"DocumentState":[]},"_$DocumentUIState":{"DocumentUIState":[]},"ViewExpenseList":{"StopLoading":[]},"ViewExpense":{"PersistUI":[],"PersistPrefs":[]},"EditExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpense":{"PersistUI":[]},"LoadExpenseSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"LoadExpensesRequest":{"StartLoading":[]},"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":{"StopLoading":[]},"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":{"StopLoading":[]},"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":{"StopLoading":[]},"ViewInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoiceItem":{"PersistUI":[]},"UpdateInvoice":{"PersistUI":[]},"UpdateInvoiceClient":{"PersistUI":[]},"LoadInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"ReverseInvoicesRequest":{"StartSaving":[]},"ReverseInvoicesSuccess":{"StopSaving":[]},"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":[]},"LoadInvoicesRequest":{"StartLoading":[]},"SaveInvoiceFailure":{"StopSaving":[]},"EmailInvoiceFailure":{"StopSaving":[]},"MarkInvoicesSentFailure":{"StopSaving":[]},"BulkEmailInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesFailure":{"StopSaving":[]},"MarkInvoicesPaidFailure":{"StopSaving":[]},"ReverseInvoicesFailure":{"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":{"StopLoading":[]},"ViewPayment":{"PersistUI":[],"PersistPrefs":[]},"EditPayment":{"PersistUI":[],"PersistPrefs":[]},"ViewRefundPayment":{"PersistUI":[],"PersistPrefs":[]},"UpdatePayment":{"PersistUI":[]},"LoadPaymentSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"FilterPaymentsByCustom1":{"PersistUI":[]},"FilterPaymentsByCustom2":{"PersistUI":[]},"FilterPaymentsByCustom3":{"PersistUI":[]},"FilterPaymentsByCustom4":{"PersistUI":[]},"UpdatePaymentTab":{"PersistUI":[]},"LoadPaymentRequest":{"StartLoading":[]},"LoadPaymentFailure":{"StopLoading":[]},"LoadPaymentsRequest":{"StartLoading":[]},"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":{"StopLoading":[]},"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":{"StopLoading":[]},"ViewProduct":{"PersistUI":[],"PersistPrefs":[]},"EditProduct":{"PersistUI":[],"PersistPrefs":[]},"UpdateProduct":{"PersistUI":[]},"LoadProductSuccess":{"StopLoading":[],"PersistData":[]},"LoadProductsFailure":{"StopLoading":[]},"LoadProductsSuccess":{"PersistData":[],"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":[]},"FilterProducts":{"PersistUI":[]},"SortProducts":{"PersistUI":[],"PersistPrefs":[]},"FilterProductsByState":{"PersistUI":[]},"FilterProductsByCustom1":{"PersistUI":[]},"FilterProductsByCustom2":{"PersistUI":[]},"FilterProductsByCustom3":{"PersistUI":[]},"FilterProductsByCustom4":{"PersistUI":[]},"SaveProductDocumentRequest":{"StartSaving":[]},"UpdateProductTab":{"PersistUI":[]},"LoadProductRequest":{"StartLoading":[]},"LoadProductFailure":{"StopLoading":[]},"LoadProductsRequest":{"StartLoading":[]},"SaveProductFailure":{"StopSaving":[]},"ArchiveProductsFailure":{"StopSaving":[]},"DeleteProductsFailure":{"StopSaving":[]},"RestoreProductsFailure":{"StopSaving":[]},"SaveProductDocumentFailure":{"StopSaving":[]},"_$ProductStateSerializer":{"StructuredSerializer":["ProductState*"],"Serializer":["ProductState*"]},"_$ProductUIStateSerializer":{"StructuredSerializer":["ProductUIState*"],"Serializer":["ProductUIState*"]},"_$ProductState":{"ProductState":[]},"_$ProductUIState":{"ProductUIState":[]},"ViewProjectList":{"StopLoading":[]},"ViewProject":{"PersistUI":[],"PersistPrefs":[]},"EditProject":{"PersistUI":[],"PersistPrefs":[]},"UpdateProject":{"PersistUI":[]},"LoadProjectSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"LoadProjectsRequest":{"StartLoading":[]},"SaveProjectFailure":{"StopSaving":[]},"ArchiveProjectFailure":{"StopSaving":[]},"DeleteProjectFailure":{"StopSaving":[]},"RestoreProjectFailure":{"StopSaving":[]},"SaveProjectDocumentFailure":{"StopSaving":[]},"_$ProjectStateSerializer":{"StructuredSerializer":["ProjectState*"],"Serializer":["ProjectState*"]},"_$ProjectUIStateSerializer":{"StructuredSerializer":["ProjectUIState*"],"Serializer":["ProjectUIState*"]},"_$ProjectState":{"ProjectState":[]},"_$ProjectUIState":{"ProjectUIState":[]},"ViewQuoteList":{"StopLoading":[]},"ViewQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuoteItem":{"PersistUI":[]},"UpdateQuote":{"PersistUI":[]},"UpdateQuoteClient":{"PersistUI":[]},"LoadQuoteSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"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":[]},"ConvertQuotes":{"StartSaving":[]},"ConvertQuoteSuccess":{"StopSaving":[]},"SaveQuoteDocumentRequest":{"StartSaving":[]},"UpdateQuoteTab":{"PersistUI":[]},"LoadQuoteRequest":{"StartLoading":[]},"LoadQuoteFailure":{"StopLoading":[]},"LoadQuotesRequest":{"StartLoading":[]},"SaveQuoteFailure":{"StopSaving":[]},"EmailQuoteSuccess":{"StopSaving":[],"PersistData":[]},"EmailQuoteFailure":{"StopSaving":[]},"MarkSentQuoteFailure":{"StopSaving":[]},"BulkEmailQuotesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesFailure":{"StopSaving":[]},"ArchiveQuotesFailure":{"StopSaving":[]},"DeleteQuotesFailure":{"StopSaving":[]},"DownloadQuotesSuccess":{"StopSaving":[]},"DownloadQuotesFailure":{"StopSaving":[]},"RestoreQuotesFailure":{"StopSaving":[]},"ConvertQuoteFailure":{"StopSaving":[]},"SaveQuoteDocumentFailure":{"StopSaving":[]},"_$QuoteStateSerializer":{"StructuredSerializer":["QuoteState*"],"Serializer":["QuoteState*"]},"_$QuoteUIStateSerializer":{"StructuredSerializer":["QuoteUIState*"],"Serializer":["QuoteUIState*"]},"_$QuoteState":{"QuoteState":[]},"_$QuoteUIState":{"QuoteUIState":[]},"ViewRecurringExpenseList":{"StopLoading":[]},"ViewRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateRecurringExpense":{"PersistUI":[]},"LoadRecurringExpenseSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"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":[]},"LoadRecurringExpensesRequest":{"StartLoading":[]},"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":{"StopLoading":[]},"ViewRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoiceItem":{"PersistUI":[]},"UpdateRecurringInvoice":{"PersistUI":[]},"UpdateRecurringInvoiceClient":{"PersistUI":[]},"LoadRecurringInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"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":[]},"LoadRecurringInvoicesRequest":{"StartLoading":[]},"SaveRecurringInvoiceFailure":{"StopSaving":[]},"ArchiveRecurringInvoicesFailure":{"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":[]},"ViewSettings":{"PersistUI":[]},"ClearSettingsFilter":{"PersistUI":[]},"UpdateSettings":{"PersistUI":[]},"UpdateSettingsTab":{"PersistUI":[]},"UpdatedSetting":{"PersistUI":[]},"UpdateSettingsTemplate":{"PersistUI":[]},"UpdateUserSettings":{"PersistUI":[]},"UploadLogoRequest":{"StartSaving":[]},"SaveUserSettingsRequest":{"StartSaving":[]},"SaveUserSettingsSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveAuthUserRequest":{"StartSaving":[]},"SaveAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ConnecOAuthUserRequest":{"StartSaving":[]},"ConnecOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisableTwoFactorRequest":{"StartSaving":[]},"DisableTwoFactorSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"ConnecGmailUserRequest":{"StartSaving":[]},"ConnecGmailUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"FilterSettings":{"PersistUI":[]},"UploadLogoFailure":{"StopSaving":[]},"SaveUserSettingsFailure":{"StopSaving":[]},"SaveAuthUserFailure":{"StopSaving":[]},"ConnecOAuthUserFailure":{"StopSaving":[]},"DisableTwoFactorFailure":{"StopSaving":[]},"ConnecGmailUserFailure":{"StopSaving":[]},"_$StaticStateSerializer":{"StructuredSerializer":["StaticState*"],"Serializer":["StaticState*"]},"_$StaticState":{"StaticState":[]},"ViewSubscriptionList":{"StopLoading":[]},"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":{"StopLoading":[]},"ViewTask":{"PersistUI":[],"PersistPrefs":[]},"EditTask":{"PersistUI":[],"PersistPrefs":[]},"UpdateTask":{"PersistUI":[]},"LoadTaskSuccess":{"StopLoading":[],"PersistData":[]},"EditTaskTime":{"PersistUI":[]},"AddTaskTime":{"PersistUI":[]},"UpdateTaskTime":{"PersistUI":[]},"DeleteTaskTime":{"PersistUI":[]},"LoadTasksFailure":{"StopLoading":[]},"LoadTasksSuccess":{"StopLoading":[]},"SaveTaskRequest":{"StartSaving":[]},"SaveTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskRequest":{"StartSaving":[]},"ArchiveTaskSuccess":{"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":[]},"LoadTasksRequest":{"StartLoading":[]},"SaveTaskFailure":{"StopSaving":[]},"ArchiveTaskFailure":{"StopSaving":[]},"DeleteTaskFailure":{"StopSaving":[]},"RestoreTaskFailure":{"StopSaving":[]},"SortTasksFailure":{"StopSaving":[]},"SaveTaskDocumentFailure":{"StopSaving":[]},"_$TaskStateSerializer":{"StructuredSerializer":["TaskState*"],"Serializer":["TaskState*"]},"_$TaskUIStateSerializer":{"StructuredSerializer":["TaskUIState*"],"Serializer":["TaskUIState*"]},"_$TaskState":{"TaskState":[]},"_$TaskUIState":{"TaskUIState":[]},"ViewTaskStatusList":{"StopLoading":[]},"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":{"StopLoading":[]},"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":{"StopLoading":[]},"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":[]},"_$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":{"StopLoading":[]},"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":{"StopLoading":[]},"ViewVendor":{"PersistUI":[],"PersistPrefs":[]},"EditVendor":{"PersistUI":[],"PersistPrefs":[]},"UpdateVendor":{"PersistUI":[]},"LoadVendorSuccess":{"StopLoading":[],"PersistData":[]},"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":[]},"LoadVendorsRequest":{"StartLoading":[]},"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":{"StopLoading":[]},"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":[]},"AppScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AppScrollbarState":{"State":["AppScrollbar*"]},"AppWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebWebView":{"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":[]},"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":[]},"DocumentTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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":[]},"_EntityListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityDropdownState":{"State":["EntityDropdown*"]},"_EntityDropdownDialogState":{"State":["EntityDropdownDialog*"]},"EntityHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityStateLabel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilter":{"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":[]},"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":[]},"LinkTextSpan":{"TextSpan":[],"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[]},"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":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactUsDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DrawerTileState":{"State":["DrawerTile*"]},"SidebarFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarFooterCollapsed":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactUsDialogState":{"State":["ContactUsDialog*"]},"MenuDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ResponsivePadding":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableListViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableListViewState":{"State":["ScrollableListView*"]},"_ScrollableListViewBuilderState":{"State":["ScrollableListViewBuilder*"]},"SystemLogViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SystemLogViewerState":{"State":["SystemLogViewer*"]},"_SortArrow0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppDataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableRowInkWell0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SortArrowState0":{"State":["_SortArrow0*"]},"_NullTableColumnWidth0":{"TableColumnWidth":[]},"_NullWidget3":{"Widget":[],"DiagnosticableTree":[]},"AppDataTableSource":{"Listenable":[]},"AppPaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppPaginatedDataTableState":{"State":["AppPaginatedDataTable*"]},"EntityDataTableSource":{"Listenable":[]},"EntityList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListState":{"State":["EntityList*"]},"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*"]},"InitScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LockScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LoginState":{"State":["LoginView*"]},"RuledText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginScreen":{"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":[]},"ClientViewLedger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewLedgerState":{"State":["ClientViewLedger*"]},"ClientOverview":{"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*"]},"CardListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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":[]},"DashboardPanels":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__DashboardPanelState":{"State":["_DashboardPanel*"]},"_InvoiceChart":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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":[]},"_DesignEditState":{"State":["DesignEdit*"]},"DesignSection":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignSettingsState":{"State":["DesignSettings*"]},"_PdfDesignPreviewState":{"State":["PdfDesignPreview*"]},"HtmlDesignPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabAction":{"Action":["Intent*"]},"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":[]},"DocumentEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentEditState":{"State":["DocumentEdit*"]},"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":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktopState":{"State":["InvoiceEditDesktop*"]},"__PdfPreviewState":{"State":["_PdfPreview*"]},"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*"]},"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*"]},"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":[]},"QuoteEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QuoteEditState":{"State":["QuoteEdit*"]},"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":[]},"AccountManagement":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountManagementState":{"State":["AccountManagement*"]},"_AccountOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagementScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BuyNowButtons":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BuyNowButtonsState":{"State":["BuyNowButtons*"]},"BuyNowButtonsScreen":{"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":[]},"_InvoiceDesignState":{"State":["InvoiceDesign*"]},"InvoiceDesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LocalizationSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LocalizationSettingsState":{"State":["LocalizationSettings*"]},"LocalizationScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OnlinePayments":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OnlinePaymentsState":{"State":["OnlinePayments*"]},"OnlinePaymentsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductSettingsState":{"State":["ProductSettings*"]},"ProductSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsListState":{"State":["SettingsList*"]},"SettingsListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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":[]},"_TaxSettingsState":{"State":["TaxSettings*"]},"NumberOfRatesSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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*"]},"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":[]},"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":[]},"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*"]},"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*"]},"VendorViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewDetailsState":{"State":["VendorViewDetails*"]},"VendorViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"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":[]},"_PasswordConfirmationState":{"State":["PasswordConfirmation*"]},"_FieldConfirmationState":{"State":["FieldConfirmation*"]},"AppLocalizationsDelegate":{"LocalizationsDelegate":["AppLocalization*"],"LocalizationsDelegate.T":"AppLocalization*"},"Level":{"Comparable":["Level"]},"_MdiIconData":{"IconData":[]},"PdfPageNotFoundException":{"Exception":[]},"PdfPageAlreadyClosedException":{"Exception":[]},"PdfNotSupportException":{"Exception":[]},"DocumentRepository":{"Repository":["Document"]},"PageRepository":{"Repository":["Page"]},"RepositoryItemNotFoundException":{"Exception":[]},"PdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfViewState":{"State":["PdfView"]},"PdfPageImageProvider":{"ImageProvider":["PdfPageImageProvider"],"ImageProvider.T":"PdfPageImageProvider"},"FadeWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FadeWidgetState":{"State":["FadeWidget"]},"OctoImage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OctoImageState":{"State":["OctoImage"]},"OverflowViewParentData":{"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"]},"RenderOverflowView":{"RenderBoxContainerDefaultsMixin":["RenderBox","OverflowViewParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","OverflowViewParentData"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"ContainerRenderObjectMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverflowView":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverflowViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"PathException":{"Exception":[]},"MissingPlatformDirectoryException":{"Exception":[]},"PhotoView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PhotoViewState":{"State":["PhotoView"]},"PhotoViewGallery":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PhotoViewGalleryState":{"State":["PhotoViewGallery"]},"PhotoViewCore":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhotoViewCoreState":{"State":["PhotoViewCore"]},"PhotoViewGestureRecognizer":{"ScaleGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PhotoViewGestureDetectorScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhotoViewGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhotoViewDefaultError":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhotoViewDefaultLoading":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageWrapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImageWrapperState":{"State":["ImageWrapper"]},"IgnorableChangeNotifier":{"Listenable":[]},"IgnorableValueNotifier":{"Listenable":[]},"PointerInterceptor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QrBitBuffer":{"ListMixin":["bool"],"List":["bool"],"EfficientLengthIterable":["bool"],"Iterable":["bool"],"ListMixin.E":"bool"},"InputTooLongException":{"Exception":[]},"QrImage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QrImageState":{"State":["QrImage"]},"_QrContentView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QrPainter":{"Listenable":[]},"LoggingMiddleware":{"MiddlewareClass":["1"]},"RoundedLoadingButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RoundedLoadingButtonState":{"State":["RoundedLoadingButton"]},"DeferStream":{"Stream":["1"],"Stream.T":"1"},"BehaviorSubject":{"Subject":["1"],"StreamController":["1"],"EventSink":["1"],"Stream":["1"],"Stream.T":"1"},"Subject":{"StreamController":["1"],"EventSink":["1"],"Stream":["1"]},"_StreamSinkWrapper":{"EventSink":["1"]},"StartWithStreamTransformer":{"StreamTransformerBase":["1","1"]},"StartWithErrorStreamTransformer":{"StreamTransformerBase":["1","1"]},"SentryNavigatorObserver":{"RouteObserver":["PageRoute<@>"],"NavigatorObserver":[],"RouteObserver.R":"PageRoute<@>"},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"FileSpan":[],"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"SourceSpan":[],"Comparable":["SourceSpan"]},"StringScannerException":{"FormatException":[],"Exception":[]},"EnMessages":{"LookupMessages":[]},"EnShortMessages":{"LookupMessages":[]},"EsMessages":{"LookupMessages":[]},"EsShortMessages":{"LookupMessages":[]},"TypedDataBuffer":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_IntBuffer0":{"TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8Buffer":{"TypedDataBuffer":["int"],"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int","TypedDataBuffer.E":"int"},"BoxValueConstraints":{"BoxConstraints":[]},"ValueLayoutBuilder":{"ConstrainedLayoutBuilder":["BoxValueConstraints<1>"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"_RenderValueLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxValueConstraints<1>","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"AbstractNode":[],"RenderConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"Version":{"Comparable":["Version"]},"Directory0":{"FileSystemEntity0":[],"Directory":[],"FileSystemEntity":[]},"File1":{"FileSystemEntity0":[],"File0":[],"FileSystemEntity":[]},"FileSystemEntity0":{"FileSystemEntity":[]},"PlaceholderSpan":{"InlineSpan":[],"DiagnosticableTree":[]},"LinkViewController":{"PlatformViewController":[]}}')); H._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"SkiaObject":1,"ManagedSkiaObject":1,"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"NativeTypedArray":1,"EventSink":1,"StreamView":1,"_PendingEvents":1,"_SyncStreamControllerDispatch":1,"_DelayedEvent":1,"_SplayTreeNode":2,"IterableBase":1,"ListBase":1,"MapBase":2,"UnmodifiableMapBase":2,"_UnmodifiableSetMixin":1,"_SplayTree":2,"_ListBase_Object_ListMixin":1,"_SplayTreeMap__SplayTree_MapMixin":2,"_SplayTreeSet__SplayTree_IterableMixin":1,"_SplayTreeSet__SplayTree_IterableMixin_SetMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"__SetBase_Object_SetMixin":1,"__UnmodifiableSet__SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":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,"Enum":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,"__DropdownButtonState_State_WidgetsBindingObserver":1,"_MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin":1,"__RadioState_State_TickerProviderStateMixin":1,"__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin":1,"ContainerBoxParentData":1,"_ContainerBoxParentData_BoxParentData_ContainerParentDataMixin":1,"ContainerParentDataMixin":1,"RenderProxyBoxMixin":1,"RenderAnimatedOpacityMixin":1,"_RenderCustomClip":1,"_RenderPhysicalModelBase":1,"RenderViewportBase":1,"AutomaticKeepAliveClientMixin":1,"ImplicitlyAnimatedWidgetState":1,"AnimatedWidgetBaseState":1,"_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin":1,"Page0":1,"TransitionDelegate":1,"PageStorageKey":1,"PageRoute":1,"RestorableProperty":1,"RestorationMixin":1,"RestorableValue":1,"_RestorablePrimitiveValue":1,"RestorableListenable":1,"RestorableChangeNotifier":1,"OverlayRoute":1,"_ModalRoute_TransitionRoute_LocalHistoryRoute":1,"LocalHistoryRoute":1,"PopupRoute":1,"RawDialogRoute":1,"_RawScrollbarState_State_TickerProviderStateMixin":1,"TextEditingAction":1,"SingleTickerProviderStateMixin":1,"TickerProviderStateMixin":1,"__SuggestionsListState_State_SingleTickerProviderStateMixin":1,"__TypeAheadFieldState_State_WidgetsBindingObserver":1,"__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder":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", x200_000: " 0\x10000\xa0\x80\x10@P`p`p\xb1 0\x10000\xa0\x80\x10@P`p`p\xb0 0\x10000\xa0\x80\x11@P`p`p\xb0 1\x10011\xa0\x80\x10@P`p`p\xb0 1\x10111\xa1\x81\x10AQaqaq\xb0 1\x10011\xa0\x80\x10@Qapaq\xb0 1\x10011\xa0\x80\x10@Paq`p\xb0 1\x10011\xa0\x80\x10@P`q`p\xb0 \x91\x100\x811\xa0\x80\x10@P`p`p\xb0 1\x10011\xa0\x81\x10@P`p`p\xb0 1\x100111\x80\x10@P`p`p\xb0!1\x11111\xa1\x81\x11AQaqaq\xb1", x20must_: " must not be greater than the number of characters in the file, ", x22x20filt: '" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">33333\xb3\xbb\xbb\xbb\xbb\xbb\xbb\xbb;3\xc3\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc334343C33333333333SET333333333333333EDTETD433333333CD33333333333333CD33333CDD4333333333333333333333333CDTDDDCTE43C4CD3C333333333333333D3C33333\x99\x99\x9933333DDDDD42333333333333333333CDDD4333333333333333333333333DDDD433334333C53333333333333333333333C33TEDCSUUU433333333S533333333333333333333333333333CD4DDDDD3D5333333333333333333333333333CSEUCUSE4333D33333C43333333333333CDDD9DDD3DCD433333333CDCDDDDDDEDDD33433C3E433#""""\x82" """"""""2333333333333333CDUUDU53SEUUUD43SDD3U3U4333C43333C43333333333333SE43CD33333333DD33333CDDDDDDDDDD3333333343333333B!233333333333#"""333333s3CD533333333333333333333333333CESEU3333333333333333333DDDD433333CD2333333333333333333333333""""23333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDD33333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333SUDDDDUDT43333333333343333333333333333333333333333333333333333TEDDTTEETD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CUDD3UUDE43333333333333D33333333333333333333333333333333333333333UEDDDTEE43333333333333333333333333333333333333333333333333333CEUDDDE33333333333333333333333333333333333333333333333333CDUDDEDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333D#"2333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUUUUUUU333CD4333333333333333333333333333333333333333333333333333333""""""33EDDCTSE3333333333D33333333333DDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDDDDDDDCDDDDDDDD3DDD4DCDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CD4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDD333333333333333333333333333333333333333333333333333333333333333333333333333333333333333s73333s33333333333""""""""3333333373s333333333333333333333333333333CTDDDTU5D4DD333C433333D33333333333333DU433333333333333333333DDDUDUD3333S3333333333333333334333333333333s733333s33333333333CD4DDDD4D4DD4333333333sww73333333w3333333333sw3333s33333337333333sw333333333s733333333333333333UTEUS433333333C433333333333333C433333333333334443SUE4333333333333CDDDDDDDD4333333DDDDDT533333\xa3\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa3SDDDDUUT5DDD43333C43333333333333333C33333333333EEDDDCC3DDDDUUUDDDDD3T5333333333333333333333333333CSDDD433E533333333333333333333333333DDDDDDD4333333333333333333333333333CD53333333333333333333333UEDTE4\x933333333\x933333333333333333333333333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT5\x9933CD433333333333333333333333333333333333333333333333UEDUTD33343333333333333333333333333333333333333333333333333333333333333333333333333333333CUEDDD43333333333DU333333333333333333333333333C4TTU5S5SU3333C33333U3DDD43DD4333333333333333333333333333333333333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTTU43333333333333333333333333333DDD733333s373ss33w7733333ww733333333333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333333333333333333333333333333333333333333333333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7wwwwwwswwwwwwwwwwwwwwwwwwwww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffff6wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDDDD33333333DDDDDDDDDDDDDDDD43333333DC44333333333333333333333333333SUDDDDTD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333UED4CTUE3S33333333333333DDDDD33333333333333333333DDD\x95DD333343333DDDUD43333333333333333333\x93\x99\x99IDDDDDDE4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD33334333333C33333333333DD4DDDDDDD43333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333TD43EDD""""DDDD3DDD433333333333333CD43333333333333333333333333333333333333333333333333333333333333333333333333CD33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333C33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333433333333333333333333333333333333333333333333333333333333333333333333333333DD4333333333333333333333333333333333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333DU333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDDD333333333333333333333333333333333333333333333333333333CDDD3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333CDC433DD33333333333333333333D43C3333333333333333333333333333333333333333333333333333333333333333333333333333333333C4333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334EDDDD3\x03', x24firstda: "$firstRow\u2013$lastRow dari kira-kira $rowCount", x24firstde: "$firstRow\u2013$lastRow de aproximadamente $rowCount", x24firstn: "$firstRow\u2013$lastRow ng humigit kumulang $rowCount", x24remai: "$remainingCount na character ang natitira", x3csvg_w: '"), Action_Intent: findType("Action"), AlignmentGeometry: findType("AlignmentGeometry"), AlwaysStoppedAnimation_Color: findType("AlwaysStoppedAnimation"), AnimationController: findType("AnimationController"), Animation_Offset: findType("Animation0"), Animation_double: findType("Animation0"), Animation_nullable_Color: findType("Animation0"), AnnotatedRegion_SystemUiOverlayStyle: findType("AnnotatedRegion"), AppDropdownButton_legacy_DateRange: findType("AppDropdownButton"), AppDropdownButton_legacy_EmailTemplate: findType("AppDropdownButton"), AppDropdownButton_legacy_String: findType("AppDropdownButton"), AppDropdownButton_legacy_bool: findType("AppDropdownButton"), AppDropdownButton_legacy_int: findType("AppDropdownButton"), AssertionError: findType("AssertionError"), AttributeKey_legacy_Axis_legacy_Object: findType("AttributeKey*>"), AttributeKey_legacy_String: findType("AttributeKey"), AttributeKey_legacy_double: findType("AttributeKey"), AttributeKey_legacy_int: findType("AttributeKey"), AutofillClient: findType("AutofillClient"), AutofillInfo: findType("AutofillInfo"), BaseBarRendererElement: findType("BaseBarRendererElement"), BaseElement: findType("BaseElement"), BasicMessageChannel_dynamic: findType("BasicMessageChannel<@>"), BeforeUnloadEvent: findType("BeforeUnloadEvent"), BehaviorSubject_FileResponse: findType("BehaviorSubject"), BehaviorSubject_LoadingState: findType("BehaviorSubject"), Blob: findType("Blob"), BodyElement: findType("BodyElement"), BorderRadius: findType("BorderRadius"), BorderRadiusTween: findType("BorderRadiusTween"), BoxConstraints: findType("BoxConstraints"), BoxParentData: findType("BoxParentData"), BuildableBehavior_ChartBehavior_dynamic: findType("BuildableBehavior>"), ButtonTheme: findType("ButtonTheme"), ByteBuffer: findType("ByteBuffer"), ByteData: findType("ByteData"), CacheInfoRepository: findType("CacheInfoRepository"), CacheObject: findType("CacheObject"), CallbackAction_ActivateIntent: findType("CallbackAction"), CallbackAction_ButtonActivateIntent: findType("CallbackAction"), CallbackAction_DirectionalFocusIntent: findType("CallbackAction"), CallbackAction_NextFocusIntent: findType("CallbackAction"), CallbackAction_PreviousFocusIntent: findType("CallbackAction"), CanvasElement: findType("CanvasElement"), CastList_of_nullable_Route_dynamic_and_Route_dynamic: findType("CastList?,Route<@>>"), ChangeNotifier: findType("ChangeNotifier"), Characters: findType("Characters"), ChartBehavior_DateTime: findType("ChartBehavior0"), ChartBehavior_String: findType("ChartBehavior0"), ChartBehavior_dynamic: findType("ChartBehavior0<@>"), ChartContainerRenderObject_dynamic: findType("ChartContainerRenderObject<@>"), ChartStateBehavior_ChartBehavior_dynamic: findType("ChartStateBehavior>"), CkImage: findType("CkImage"), CkPaint: findType("CkPaint"), CkParagraph: findType("CkParagraph"), CkParagraphStyle: findType("CkParagraphStyle"), CkPath: findType("CkPath"), CkPicture: findType("CkPicture"), CkPictureRecorder: findType("CkPictureRecorder"), CkTextStyle: findType("CkTextStyle"), CodeUnits: findType("CodeUnits"), Codec: findType("Codec"), Color: findType("Color"), ColorTween: findType("ColorTween"), Comparable_dynamic: findType("Comparable<@>"), ConstantMapView_Symbol_dynamic: findType("ConstantMapView"), ConstantStringMap_of_legacy_String_and_Null: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_dynamic: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_legacy_LogicalKeyboardKey: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_legacy_String: findType("ConstantStringMap"), ConstantStringMap_of_legacy_String_and_legacy_int: findType("ConstantStringMap"), ContainerLayer: findType("ContainerLayer"), ContainerRenderObjectMixin_of_RenderObject_and_ContainerParentDataMixin_RenderObject: findType("ContainerRenderObjectMixin>"), CrossFrameCache_HtmlElement: findType("CrossFrameCache"), CssStyleSheet: findType("CssStyleSheet"), CupertinoUserInterfaceLevel: findType("CupertinoUserInterfaceLevel"), CurveTween: findType("CurveTween"), CustomPaint: findType("CustomPaint"), CustomSemanticsAction: findType("CustomSemanticsAction"), Data: findType("Data"), DateSymbols: findType("DateSymbols"), DateTime: findType("DateTime"), DateTimeAxisSpec: findType("DateTimeAxisSpec"), DebugCreator: findType("DebugCreator"), Decoration: findType("Decoration"), DefaultAssetBundle: findType("DefaultAssetBundle"), DefaultTextHeightBehavior: findType("DefaultTextHeightBehavior"), DefaultTextStyle: findType("DefaultTextStyle"), DiagnosticableTree: findType("DiagnosticableTree"), DiagnosticsNode: findType("DiagnosticsNode"), DiagnosticsProperty_Object: findType("DiagnosticsProperty"), Directionality: findType("Directionality"), Directory: findType("Directory"), DirectoryNode: findType("DirectoryNode"), Directory_2: findType("Directory0"), DisposableBuildContext_State_Image: findType("DisposableBuildContext>"), DividerTheme: findType("DividerTheme"), Document: findType("Document0"), Document_2: findType("Document"), DomainHighlighter_String: findType("DomainHighlighter"), DragStartDetails: findType("DragStartDetails"), DragUpdateDetails: findType("DragUpdateDetails"), DropdownButtonHideUnderline: findType("DropdownButtonHideUnderline"), DropdownMenuItem_legacy_bool: findType("DropdownMenuItem"), Duration: findType("Duration"), EdgeInsetsGeometry: findType("EdgeInsetsGeometry"), EfficientLengthIterable_dynamic: findType("EfficientLengthIterable<@>"), Element: findType("Element"), Element_2: findType("Element0"), ElevatedButtonTheme: findType("ElevatedButtonTheme"), EmbeddedViewParams: findType("EmbeddedViewParams"), EngineGradient: findType("EngineGradient"), EngineParagraph: findType("EngineParagraph"), EngineParagraphStyle: findType("EngineParagraphStyle"), EnginePicture: findType("EnginePicture"), EnginePictureRecorder: findType("EnginePictureRecorder"), EngineTextStyle: findType("EngineTextStyle"), Error: findType("Error"), Event: findType("Event"), EventTarget: findType("EventTarget"), Exception: findType("Exception"), ExpandIterable__SemanticsSortGroup_SemanticsNode: findType("ExpandIterable<_SemanticsSortGroup,SemanticsNode>"), File: findType("File"), FileList: findType("FileList"), FileNode: findType("FileNode"), FileResponse: findType("FileResponse"), FileServiceResponse: findType("FileServiceResponse"), FileSpan: findType("FileSpan"), FileSystemEntity: findType("FileSystemEntity0"), FileUploadInputElement: findType("FileUploadInputElement"), File_2: findType("File1"), FlexParentData: findType("FlexParentData"), Float64List: findType("Float64List"), FlutterError: findType("FlutterError"), FocusNode: findType("FocusNode"), FocusScopeNode: findType("FocusScopeNode"), FontFace: findType("FontFace"), FormFieldState_dynamic: findType("FormFieldState<@>"), FormatException: findType("FormatException"), FrameInfo: findType("FrameInfo"), FrameReference_PersistedSurface: findType("FrameReference"), FullType: findType("FullType"), Function: findType("Function"), Future_Null: findType("Future"), Future_bool_Function: findType("Future()"), Future_dynamic: findType("Future<@>"), Future_nullable_CacheObject: findType("Future"), Future_void: findType("Future<~>"), GeneralConstantMap_of_legacy_MaterialState_and_Null: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_int_and_legacy_Color: findType("GeneralConstantMap"), GeneralConstantMap_of_legacy_int_and_legacy_String: findType("GeneralConstantMap"), GestureArenaEntry: findType("GestureArenaEntry"), GestureListener: findType("GestureListener"), GestureRecognizer: findType("GestureRecognizer"), GestureRecognizerFactoryWithHandlers_DoubleTapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_ForcePressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_HorizontalDragGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_LongPressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_PanGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_PhotoViewGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_ScaleGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_TapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers_VerticalDragGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers"), GestureRecognizerFactoryWithHandlers__ThumbPressGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers<_ThumbPressGestureRecognizer>"), GestureRecognizerFactoryWithHandlers__TrackTapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers<_TrackTapGestureRecognizer>"), GestureRecognizerFactoryWithHandlers__TransparentTapGestureRecognizer: findType("GestureRecognizerFactoryWithHandlers<_TransparentTapGestureRecognizer>"), GestureRecognizerFactory_GestureRecognizer: findType("GestureRecognizerFactory"), GestureType: findType("GestureType"), GlobalKey_State_StatefulWidget: findType("GlobalKey>"), GlobalObjectKey_NavigatorState: findType("GlobalObjectKey"), GlobalObjectKey_State_StatefulWidget: findType("GlobalObjectKey>"), GoogleAuthSignInError: findType("GoogleAuthSignInError"), GoogleSignInAuthentication: findType("GoogleSignInAuthentication"), GoogleSignInTokenData: findType("GoogleSignInTokenData"), GoogleUser: findType("GoogleUser"), HashedObserverList_of_void_Function_FocusHighlightMode: findType("HashedObserverList<~(FocusHighlightMode)>"), HeapPriorityQueue__TaskEntry_dynamic: findType("HeapPriorityQueue<_TaskEntry<@>>"), Hero: findType("Hero"), HeroControllerScope: findType("HeroControllerScope"), HitTestResult: findType("HitTestResult"), HitTestTarget: findType("HitTestTarget"), HtmlElement: findType("HtmlElement"), HtmlImage: findType("HtmlImage"), HttpRequest: findType("HttpRequest"), IconTheme: findType("IconTheme"), ImageChunkEvent: findType("ImageChunkEvent"), ImageData: findType("ImageData"), ImageElement: findType("ImageElement"), ImageSizeInfo: findType("ImageSizeInfo"), ImageStreamListener: findType("ImageStreamListener"), ImmutableAxis_num: findType("ImmutableAxis"), IndexedSlot_nullable_Element: findType("IndexedSlot"), InheritedElement: findType("InheritedElement"), InheritedTheme: findType("InheritedTheme"), InheritedWidget: findType("InheritedWidget"), InputBorder: findType("InputBorder"), InputElement: findType("InputElement"), InputStreamBase: findType("InputStreamBase"), Int32List: findType("Int32List"), Int64List: findType("Int64List"), IntTween: findType("IntTween"), Intent: findType("Intent"), InteractiveInkFeature: findType("InteractiveInkFeature"), InteractiveInkFeatureFactory: findType("InteractiveInkFeatureFactory"), IterableEquality_dynamic: findType("IterableEquality<@>"), Iterable_dynamic: findType("Iterable<@>"), Iterable_nullable_Object: findType("Iterable"), JSArray_A11yNode: findType("JSArray"), JSArray_AxisTicks_DateTime: findType("JSArray>"), JSArray_AxisTicks_String: findType("JSArray>"), JSArray_AxisTicks_num: findType("JSArray>"), JSArray_BaseBarRendererElement: findType("JSArray"), JSArray_BoardItemState: findType("JSArray"), JSArray_BoardListState: findType("JSArray"), JSArray_BoxShadow: findType("JSArray"), JSArray_CacheObject: findType("JSArray"), JSArray_CanvasElement: findType("JSArray"), JSArray_CanvasRect: findType("JSArray"), JSArray_ChartBehavior_DateTime: findType("JSArray>"), JSArray_ChartBehavior_String: findType("JSArray>"), JSArray_CkPaintCommand: findType("JSArray"), JSArray_CkTextStyle: findType("JSArray"), JSArray_CodeunitRange: findType("JSArray"), JSArray_Color: findType("JSArray"), JSArray_Color_2: findType("JSArray"), JSArray_Conic: findType("JSArray"), JSArray_ContainerLayer: findType("JSArray"), JSArray_CustomPainterSemantics: findType("JSArray"), JSArray_DataRow: findType("JSArray"), JSArray_DateTime: findType("JSArray"), JSArray_DiagnosticsNode: findType("JSArray"), JSArray_Directionality: findType("JSArray"), JSArray_Element: findType("JSArray"), JSArray_Element_2: findType("JSArray"), JSArray_EngineLineMetrics: findType("JSArray"), JSArray_FocusNode: findType("JSArray"), JSArray_FrameReference_dynamic: findType("JSArray>"), JSArray_FrameTiming: findType("JSArray"), JSArray_Future_dynamic: findType("JSArray>"), JSArray_Future_nullable__RegisteredFont: findType("JSArray>"), JSArray_Future_void: findType("JSArray>"), JSArray_GestureArenaMember: findType("JSArray"), JSArray_GestureListener: findType("JSArray"), JSArray_HitTestEntry: findType("JSArray"), JSArray_HtmlElement: findType("JSArray"), JSArray_ImageStreamListener: findType("JSArray"), JSArray_InheritedTheme: findType("JSArray"), JSArray_InkFeature: findType("JSArray"), JSArray_InlineSpanSemanticsInformation: findType("JSArray"), JSArray_Layer: findType("JSArray"), JSArray_LayoutId: findType("JSArray"), JSArray_LayoutView: findType("JSArray"), JSArray_LicenseEntry: findType("JSArray"), JSArray_LifecycleListener_DateTime: findType("JSArray>"), JSArray_LifecycleListener_String: findType("JSArray>"), JSArray_LineSegment: findType("JSArray"), JSArray_List_String: findType("JSArray>"), JSArray_List_int: findType("JSArray>"), JSArray_List_nullable_bool: findType("JSArray>"), JSArray_Listenable: findType("JSArray"), JSArray_LocalHistoryEntry: findType("JSArray"), JSArray_Locale: findType("JSArray"), JSArray_LocalizationsDelegate_dynamic: findType("JSArray>"), JSArray_Map_dynamic_dynamic: findType("JSArray>"), JSArray_Matrix4: findType("JSArray"), JSArray_Matrix4_2: findType("JSArray"), JSArray_MergeableMaterialItem: findType("JSArray"), JSArray_MultipartFile: findType("JSArray"), JSArray_Mutator: findType("JSArray"), JSArray_NavigatorObserver: findType("JSArray"), JSArray_Node: findType("JSArray"), JSArray_NodeValidator: findType("JSArray"), JSArray_NotoFont: findType("JSArray"), JSArray_Object: findType("JSArray"), JSArray_Offset: findType("JSArray"), JSArray_OverlayEntry: findType("JSArray"), JSArray_PageStorageKey_dynamic: findType("JSArray>"), JSArray_Paint: findType("JSArray"), JSArray_PaintCommand: findType("JSArray"), JSArray_ParagraphSpan: findType("JSArray"), JSArray_PersistedContainerSurface: findType("JSArray"), JSArray_PersistedSurface: findType("JSArray"), JSArray_PlaceholderDimensions: findType("JSArray"), JSArray_PlaceholderSpan: findType("JSArray"), JSArray_PlatformFile: findType("JSArray"), JSArray_Point_double: findType("JSArray>"), JSArray_Point_num: findType("JSArray>"), JSArray_PointerData: findType("JSArray"), JSArray_PointerEvent: findType("JSArray"), JSArray_PointerEvent_2: findType("JSArray"), JSArray_QrByte: findType("JSArray"), JSArray_QrRsBlock: findType("JSArray"), JSArray_Radius: findType("JSArray"), JSArray_RangeBox: findType("JSArray"), JSArray_RenderBox: findType("JSArray"), JSArray_RenderEditablePainter: findType("JSArray"), JSArray_RenderObject: findType("JSArray"), JSArray_RestorationBucket: findType("JSArray"), JSArray_Route_void: findType("JSArray>"), JSArray_ScrollPosition: findType("JSArray"), JSArray_SemanticsNode: findType("JSArray"), JSArray_SemanticsNodeUpdate: findType("JSArray"), JSArray_ShaderDeclaration: findType("JSArray"), JSArray_ShaderMethod: findType("JSArray"), JSArray_ShapeBorder: findType("JSArray"), JSArray_SkDeletable: findType("JSArray"), JSArray_SkFontFeature: findType("JSArray"), JSArray_SkTextShadow: findType("JSArray"), JSArray_SkTypeface: findType("JSArray"), JSArray_StreamSubscription_Event: findType("JSArray>"), JSArray_String: findType("JSArray"), JSArray_StyleNode: findType("JSArray"), JSArray_TableRow: findType("JSArray"), JSArray_TextBox: findType("JSArray"), JSArray_TextInputFormatter: findType("JSArray"), JSArray_TextSelectionPoint: findType("JSArray"), JSArray_TextSpan: findType("JSArray"), JSArray_Tick_DateTime: findType("JSArray>"), JSArray_Tick_num: findType("JSArray>"), JSArray_TimeRangeTickProvider: findType("JSArray"), JSArray_Widget: findType("JSArray"), JSArray_WidgetsBindingObserver: findType("JSArray"), JSArray__AsyncBlock: findType("JSArray<_AsyncBlock>"), JSArray__BoxEdge: findType("JSArray<_BoxEdge>"), JSArray__DateFormatField: findType("JSArray<_DateFormatField>"), JSArray__DirectionalPolicyDataEntry: findType("JSArray<_DirectionalPolicyDataEntry>"), JSArray__Highlight: findType("JSArray<_Highlight>"), JSArray__InterestingSemanticsFragment: findType("JSArray<_InterestingSemanticsFragment>"), JSArray__Line: findType("JSArray<_Line>"), JSArray__LocationCount: findType("JSArray<_LocationCount>"), JSArray__PaintRequest: findType("JSArray<_PaintRequest>"), JSArray__ParagraphCommand: findType("JSArray<_ParagraphCommand>"), JSArray__ParentInkResponseState: findType("JSArray<_ParentInkResponseState>"), JSArray__Pending: findType("JSArray<_Pending>"), JSArray__PersistedSurfaceMatch: findType("JSArray<_PersistedSurfaceMatch>"), JSArray__ReadingOrderDirectionalGroupData: findType("JSArray<_ReadingOrderDirectionalGroupData>"), JSArray__ReadingOrderSortData: findType("JSArray<_ReadingOrderSortData>"), JSArray__RegisteredFont: findType("JSArray<_RegisteredFont>"), JSArray__ResolvedNotoSubset: findType("JSArray<_ResolvedNotoSubset>"), JSArray__RouteEntry: findType("JSArray<_RouteEntry>"), JSArray__RunMetrics: findType("JSArray<_RunMetrics>"), JSArray__SaveClipEntry: findType("JSArray<_SaveClipEntry>"), JSArray__SaveElementStackEntry: findType("JSArray<_SaveElementStackEntry>"), JSArray__SaveStackEntry: findType("JSArray<_SaveStackEntry>"), JSArray__SemanticsSortGroup: findType("JSArray<_SemanticsSortGroup>"), JSArray__StandardBottomSheet: findType("JSArray<_StandardBottomSheet>"), JSArray__TableElementRow: findType("JSArray<_TableElementRow>"), JSArray__TableSlot: findType("JSArray<_TableSlot>"), JSArray__TappableLabel: findType("JSArray<_TappableLabel>"), JSArray__TransformPart: findType("JSArray<_TransformPart>"), JSArray__TraversalSortNode: findType("JSArray<_TraversalSortNode>"), JSArray_bool: findType("JSArray"), JSArray_double: findType("JSArray"), JSArray_dynamic: findType("JSArray<@>"), JSArray_int: findType("JSArray"), JSArray_legacy_AppDropdownButton_legacy_String: findType("JSArray*>"), JSArray_legacy_BaseEntity: findType("JSArray"), JSArray_legacy_BoxShadow: findType("JSArray"), JSArray_legacy_ChartBehavior_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_ChartDataGroup: findType("JSArray"), JSArray_legacy_ChartMoneyData: findType("JSArray"), JSArray_legacy_ClientReportFields: findType("JSArray"), JSArray_legacy_Color: findType("JSArray"), JSArray_legacy_CompanyEntity: findType("JSArray"), JSArray_legacy_ContactEntity: findType("JSArray"), JSArray_legacy_CreditReportFields: findType("JSArray"), JSArray_legacy_DataCell: findType("JSArray"), JSArray_legacy_DataCell_2: findType("JSArray"), JSArray_legacy_DataColumn: findType("JSArray"), JSArray_legacy_DataColumn_2: findType("JSArray"), JSArray_legacy_DataRow: findType("JSArray"), JSArray_legacy_DataRow_2: findType("JSArray"), JSArray_legacy_DatePicker: findType("JSArray"), JSArray_legacy_DocumentEntity: findType("JSArray"), JSArray_legacy_DocumentReportFields: findType("JSArray"), JSArray_legacy_DropdownMenuItem_legacy_EmailTemplate: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_String: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_TaxRateEntity: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_bool: findType("JSArray*>"), JSArray_legacy_DropdownMenuItem_legacy_int: findType("JSArray*>"), JSArray_legacy_EmailTemplate: findType("JSArray"), JSArray_legacy_EntityAction: findType("JSArray"), JSArray_legacy_EntityState: findType("JSArray"), JSArray_legacy_EntityStatus: findType("JSArray"), JSArray_legacy_EntityType: findType("JSArray"), JSArray_legacy_ExpenseCategoryEntity: findType("JSArray"), JSArray_legacy_ExpenseEntity: findType("JSArray"), JSArray_legacy_ExpenseReportFields: findType("JSArray"), JSArray_legacy_FontFeature: findType("JSArray"), JSArray_legacy_FormatNumberType: findType("JSArray"), JSArray_legacy_FullType: findType("JSArray"), JSArray_legacy_GatewayTokenEntity: findType("JSArray"), JSArray_legacy_IconButton: findType("JSArray"), JSArray_legacy_ImportType: findType("JSArray"), JSArray_legacy_InvoiceEntity: findType("JSArray"), JSArray_legacy_InvoiceItemEntity: findType("JSArray"), JSArray_legacy_InvoiceItemReportFields: findType("JSArray"), JSArray_legacy_InvoiceReportFields: findType("JSArray"), JSArray_legacy_List_legacy_ReportElement: findType("JSArray*>"), JSArray_legacy_List_legacy_String: findType("JSArray*>"), JSArray_legacy_List_legacy_int: findType("JSArray*>"), JSArray_legacy_Locale: findType("JSArray"), JSArray_legacy_LocalizationsDelegate_dynamic: findType("JSArray*>"), JSArray_legacy_MultipartFile: findType("JSArray"), JSArray_legacy_NavigatorObserver: findType("JSArray"), JSArray_legacy_Object: findType("JSArray"), JSArray_legacy_PaymentEntity: findType("JSArray"), JSArray_legacy_PaymentReportFields: findType("JSArray"), JSArray_legacy_PopupMenuEntry_legacy_EntityAction: findType("JSArray*>"), JSArray_legacy_PopupMenuEntry_legacy_String: findType("JSArray*>"), JSArray_legacy_ProductReportFields: findType("JSArray"), JSArray_legacy_ProfitAndLossReportFields: findType("JSArray"), JSArray_legacy_QuoteItemReportFields: findType("JSArray"), JSArray_legacy_QuoteReportFields: findType("JSArray"), JSArray_legacy_ReportColumnType: findType("JSArray"), JSArray_legacy_ReportElement: findType("JSArray"), JSArray_legacy_SelectableEntity: findType("JSArray"), JSArray_legacy_SelectionModelConfig_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_Series_of_dynamic_and_legacy_DateTime: findType("JSArray*>"), JSArray_legacy_Series_of_dynamic_and_legacy_String: findType("JSArray*>"), JSArray_legacy_String: findType("JSArray"), JSArray_legacy_TableRow: findType("JSArray"), JSArray_legacy_TaskEntity: findType("JSArray"), JSArray_legacy_TaskReportFields: findType("JSArray"), JSArray_legacy_TaskStatusEntity: findType("JSArray"), JSArray_legacy_TaskTime: findType("JSArray"), JSArray_legacy_TaxRateReportFields: findType("JSArray"), JSArray_legacy_TaxRateReportFields_2: findType("JSArray"), JSArray_legacy_TextButton: findType("JSArray"), JSArray_legacy_TextEditingController: findType("JSArray"), JSArray_legacy_TextInputFormatter: findType("JSArray"), JSArray_legacy_TextSpan: findType("JSArray"), JSArray_legacy_TimeOfDay: findType("JSArray"), JSArray_legacy_Type: findType("JSArray"), JSArray_legacy_UserCompanyState: findType("JSArray"), JSArray_legacy_VendorContactEntity: findType("JSArray"), JSArray_legacy_Widget: findType("JSArray"), JSArray_legacy_bool: findType("JSArray"), JSArray_legacy_double: findType("JSArray"), JSArray_legacy_int: findType("JSArray"), JSArray_nullable_CkCanvas: findType("JSArray"), JSArray_nullable_MeasurementResult: findType("JSArray"), JSArray_nullable_PersistedSurface: findType("JSArray"), JSArray_nullable_Rect: findType("JSArray"), JSArray_nullable_RenderBox: findType("JSArray"), JSArray_nullable_Route_dynamic: findType("JSArray?>"), JSArray_nullable_SemanticsObject: findType("JSArray"), JSArray_nullable_ShapeBorder: findType("JSArray"), JSArray_nullable_String: findType("JSArray"), JSArray_nullable__LocationCount: findType("JSArray<_LocationCount?>"), JSArray_nullable_int: findType("JSArray"), JSArray_num: findType("JSArray"), JSArray_of_Future_bool_Function: findType("JSArray()>"), JSArray_of_Stream_LicenseEntry_Function: findType("JSArray()>"), JSArray_of__DateFormatField_Function_String_DateFormat: findType("JSArray<_DateFormatField(String,DateFormat)>"), JSArray_of_dynamic_Function_dynamic: findType("JSArray<@(@)>"), JSArray_of_legacy_dynamic_Function_3_legacy_Store_legacy_AppState_and_dynamic_and_legacy_dynamic_Function_dynamic: findType("JSArray<@(Store*,@,@(@)*)*>"), JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic: findType("JSArray*(Completer*,@)*>"), JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic: findType("JSArray"), JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic: findType("JSArray"), JSArray_of_nullable_void_Function_GestureMode: findType("JSArray<~(GestureMode)?>"), JSArray_of_void_Function: findType("JSArray<~()>"), JSArray_of_void_Function_Action_Intent: findType("JSArray<~(Action)>"), JSArray_of_void_Function_AnimationStatus: findType("JSArray<~(AnimationStatus)>"), JSArray_of_void_Function_Duration: findType("JSArray<~(Duration)>"), JSArray_of_void_Function_List_FrameTiming: findType("JSArray<~(List)>"), JSIndexable_dynamic: findType("JSIndexable<@>"), JSNull: findType("JSNull"), JSObject: findType("JSObject"), JavaScriptFunction: findType("JavaScriptFunction"), JavaScriptIndexingBehavior_dynamic: findType("JavaScriptIndexingBehavior<@>"), JsArray_dynamic: findType("JsArray<@>"), JsLinkedHashMap_String_bool: findType("JsLinkedHashMap"), JsLinkedHashMap_String_dynamic: findType("JsLinkedHashMap"), JsLinkedHashMap_Symbol_dynamic: findType("JsLinkedHashMap"), KeepAliveParentDataMixin: findType("KeepAliveParentDataMixin"), Key: findType("Key"), KeyRange: findType("KeyRange"), KeyboardEvent: findType("KeyboardEvent"), KeyboardSide: findType("KeyboardSide"), LabeledGlobalKey_DrawerControllerState: findType("LabeledGlobalKey"), LabeledGlobalKey_EditableTextState: findType("LabeledGlobalKey"), LabeledGlobalKey_FormState: findType("LabeledGlobalKey"), LabeledGlobalKey_NavigatorState: findType("LabeledGlobalKey"), LabeledGlobalKey_OverlayState: findType("LabeledGlobalKey"), LabeledGlobalKey_RawGestureDetectorState: findType("LabeledGlobalKey"), LabeledGlobalKey_State_StatefulWidget: findType("LabeledGlobalKey>"), LabeledGlobalKey_StyledToastWidgetState: findType("LabeledGlobalKey"), LabeledGlobalKey__OverlayEntryWidgetState: findType("LabeledGlobalKey<_OverlayEntryWidgetState>"), LabeledGlobalKey__StandardBottomSheetState: findType("LabeledGlobalKey<_StandardBottomSheetState>"), LabeledGlobalKey_legacy_FormState: findType("LabeledGlobalKey"), LabeledGlobalKey_legacy_State_legacy_StatefulWidget: findType("LabeledGlobalKey*>"), Layer: findType("Layer"), LayerScene: findType("LayerScene"), LayoutView: findType("LayoutView"), LeaderLayer: findType("LeaderLayer"), LicenseEntry: findType("LicenseEntry"), LicenseParagraph: findType("LicenseParagraph"), LinePointHighlighter_DateTime: findType("LinePointHighlighter"), LinkNode: findType("LinkNode"), LinkedHashMap_MouseTrackerAnnotation_Matrix4: findType("LinkedHashMap"), LinkedList__ListenerEntry: findType("LinkedList<_ListenerEntry>"), ListBodyParentData: findType("ListBodyParentData"), ListBuilder_dynamic: findType("ListBuilder<@>"), ListBuilder_legacy_ActivityEntity: findType("ListBuilder"), ListBuilder_legacy_BaseEntity: findType("ListBuilder"), ListBuilder_legacy_BuiltList_legacy_String: findType("ListBuilder*>"), ListBuilder_legacy_ClientEntity: findType("ListBuilder"), ListBuilder_legacy_CompanyGatewayEntity: findType("ListBuilder"), ListBuilder_legacy_ContactEntity: findType("ListBuilder"), ListBuilder_legacy_CountryEntity: findType("ListBuilder"), ListBuilder_legacy_CurrencyEntity: findType("ListBuilder"), ListBuilder_legacy_DateFormatEntity: findType("ListBuilder"), ListBuilder_legacy_DatetimeFormatEntity: findType("ListBuilder"), ListBuilder_legacy_DesignEntity: findType("ListBuilder"), ListBuilder_legacy_DocumentEntity: findType("ListBuilder"), ListBuilder_legacy_EntityState: findType("ListBuilder"), ListBuilder_legacy_EntityStatus: findType("ListBuilder"), ListBuilder_legacy_EntityType: findType("ListBuilder"), ListBuilder_legacy_ExpenseCategoryEntity: findType("ListBuilder"), ListBuilder_legacy_ExpenseEntity: findType("ListBuilder"), ListBuilder_legacy_ExpenseScheduleEntity: findType("ListBuilder"), ListBuilder_legacy_GatewayEntity: findType("ListBuilder"), ListBuilder_legacy_GatewayTokenEntity: findType("ListBuilder"), ListBuilder_legacy_GroupEntity: findType("ListBuilder"), ListBuilder_legacy_HistoryRecord: findType("ListBuilder"), ListBuilder_legacy_IndustryEntity: findType("ListBuilder"), ListBuilder_legacy_InvitationEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceItemEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceScheduleEntity: findType("ListBuilder"), ListBuilder_legacy_InvoiceStatusEntity: findType("ListBuilder"), ListBuilder_legacy_LanguageEntity: findType("ListBuilder"), ListBuilder_legacy_LedgerEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentTermEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentTypeEntity: findType("ListBuilder"), ListBuilder_legacy_PaymentableEntity: findType("ListBuilder"), ListBuilder_legacy_ProductEntity: findType("ListBuilder"), ListBuilder_legacy_ProjectEntity: findType("ListBuilder"), ListBuilder_legacy_RegistrationFieldEntity: findType("ListBuilder"), ListBuilder_legacy_SizeEntity: findType("ListBuilder"), ListBuilder_legacy_String: findType("ListBuilder"), ListBuilder_legacy_SubscriptionEntity: findType("ListBuilder"), ListBuilder_legacy_SystemLogEntity: findType("ListBuilder"), ListBuilder_legacy_TaskEntity: findType("ListBuilder"), ListBuilder_legacy_TaskStatusEntity: findType("ListBuilder"), ListBuilder_legacy_TaxRateEntity: findType("ListBuilder"), ListBuilder_legacy_TimezoneEntity: findType("ListBuilder"), ListBuilder_legacy_TokenEntity: findType("ListBuilder"), ListBuilder_legacy_UserCompanyEntity: findType("ListBuilder"), ListBuilder_legacy_UserCompanyState: findType("ListBuilder"), ListBuilder_legacy_UserEntity: findType("ListBuilder"), ListBuilder_legacy_VendorContactEntity: findType("ListBuilder"), ListBuilder_legacy_VendorEntity: findType("ListBuilder"), ListBuilder_legacy_WebhookEntity: findType("ListBuilder"), ListEquality_dynamic: findType("ListEquality<@>"), ListEquality_int: findType("ListEquality"), ListMultimapBuilder_dynamic_dynamic: findType("ListMultimapBuilder<@,@>"), ListTileTheme: findType("ListTileTheme"), List_CacheObject: findType("List"), List_CodeunitRange: findType("List"), List_Color: findType("List"), List_Element: findType("List"), List_FrameTiming: findType("List"), List_LicenseEntry: findType("List"), List_LicenseParagraph: findType("List"), List_Object: findType("List"), List_PointerEvent: findType("List"), List_RestorationBucket: findType("List"), List_SemanticsNode: findType("List"), List_SkTypeface: findType("List"), List_String: findType("List"), List_dynamic: findType("List<@>"), List_int: findType("List"), List_nullable_MeasurementResult: findType("List"), List_nullable_Object: findType("List"), Listenable: findType("Listenable"), LoadingState: findType("LoadingState"), LocalKey: findType("LocalKey"), Locale: findType("Locale"), LocalizationsDelegate_dynamic: findType("LocalizationsDelegate<@>"), Logger: findType("Logger"), LogicalKeySet: findType("LogicalKeySet"), LogicalKeyboardKey: findType("LogicalKeyboardKey"), MapBuilder_dynamic_dynamic: findType("MapBuilder<@,@>"), MapBuilder_of_legacy_EntityType_and_legacy_BuiltList_legacy_String: findType("MapBuilder*>"), MapBuilder_of_legacy_EntityType_and_legacy_PrefStateSortField: findType("MapBuilder"), MapBuilder_of_legacy_EntityType_and_legacy_bool: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_BuiltList_legacy_String: findType("MapBuilder*>"), MapBuilder_of_legacy_String_and_legacy_ClientEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CompanyGatewayEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CompanyPrefState: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CountryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_CurrencyEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DateFormatEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DesignEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_DocumentEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ExpenseCategoryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ExpenseEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_FeesAndLimitsSettings: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GatewayEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GatewayOptionsEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_GroupEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ImportRequestMapping: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_IndustryEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_InvoiceEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_LanguageEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentTermEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PaymentTypeEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_PreImportResponseEntityDetails: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ProductEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ProjectEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_ReportSettingsEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_SizeEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_String: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_SubscriptionEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaskEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaskStatusEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TaxRateEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TemplateEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TimezoneEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_TokenEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_UserEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_VendorEntity: findType("MapBuilder"), MapBuilder_of_legacy_String_and_legacy_WebhookEntity: findType("MapBuilder"), MapBuilder_of_legacy_int_and_legacy_String: findType("MapBuilder"), MapEntry_String_String: findType("MapEntry"), MapEntry_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String: findType("MapEntry*>"), MapEntry_of_nullable_String_and_List_Object: findType("MapEntry>"), MapEquality_dynamic_dynamic: findType("MapEquality<@,@>"), Map_String_BaseBarRendererElement: findType("Map"), Map_String_Object: findType("Map"), Map_String_String: findType("Map"), Map_String_dynamic: findType("Map"), Map_Type_dynamic: findType("Map"), Map_dynamic_dynamic: findType("Map<@,@>"), Map_of_Element_and_GlobalKey_State_StatefulWidget: findType("Map>>"), Map_of_String_and_nullable_Object: findType("Map"), Map_of_nullable_Object_and_nullable_Object: findType("Map"), Map_of_void_Function_PointerEvent_and_nullable_Matrix4: findType("Map<~(PointerEvent0),Matrix4?>"), MappedIterable_of_String_and_legacy_ListTile: findType("MappedIterable"), MappedIterable_of_String_and_nullable_StackFrame: findType("MappedIterable"), MappedIterable_of_legacy_EntityType_and_legacy_DataRow: findType("MappedIterable"), MappedIterable_of_legacy_String_and_legacy_DataRow: findType("MappedIterable"), MappedListIterable_String_TextElement: findType("MappedListIterable"), MappedListIterable_String_dynamic: findType("MappedListIterable"), MappedListIterable__TraversalSortNode_SemanticsNode: findType("MappedListIterable<_TraversalSortNode,SemanticsNode>"), MappedListIterable_int_SemanticsNode: findType("MappedListIterable"), MappedListIterable_of_List_String_and_String: findType("MappedListIterable,String>"), MappedListIterable_of_String_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_String_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ClientReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_CreditReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_DocumentReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ExpenseReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ImportType_and_legacy_DropdownMenuItem_legacy_ImportType: findType("MappedListIterable*>"), MappedListIterable_of_legacy_InvoiceItemReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_InvoiceReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_PaymentReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ProductReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_ProfitAndLossReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_QuoteItemReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_QuoteReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_String: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_String_and_legacy_FormColorPicker: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_Locale: findType("MappedListIterable"), MappedListIterable_of_legacy_String_and_legacy_PopupMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_String_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TargetPlatform_and_nullable_PageTransitionsBuilder: findType("MappedListIterable"), MappedListIterable_of_legacy_TaskReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String: findType("MappedListIterable"), MappedListIterable_of_legacy_TaxRateReportFields_and_legacy_String_2: findType("MappedListIterable"), MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_String: findType("MappedListIterable*>"), MappedListIterable_of_legacy_int_and_legacy_DropdownMenuItem_legacy_int: findType("MappedListIterable*>"), MappedListIterable_of_legacy_int_and_legacy_PopupMenuItem_legacy_int: findType("MappedListIterable*>"), MaterialGap: findType("MaterialGap"), MaterialLocalizations: findType("MaterialLocalizations"), MaterialRouteTransitionMixin_dynamic: findType("MaterialRouteTransitionMixin<@>"), MaterialSlice: findType("MaterialSlice"), MaterialState: findType("MaterialState"), MaterialTapTargetSize: findType("MaterialTapTargetSize"), Matrix4: findType("Matrix4"), MediaQuery: findType("MediaQuery"), MediaQueryListEvent: findType("MediaQueryListEvent"), MergeableMaterialItem: findType("MergeableMaterialItem"), MessagePort: findType("MessagePort"), ModifierKey: findType("ModifierKey"), MouseCursor: findType("MouseCursor0"), MouseCursorSession: findType("MouseCursorSession"), MouseEvent: findType("MouseEvent"), MouseTrackerAnnotation: findType("MouseTrackerAnnotation"), MultiChildLayoutParentData: findType("MultiChildLayoutParentData"), MultiChildRenderObjectWidget: findType("MultiChildRenderObjectWidget"), MutableSelectionModel_DateTime: findType("MutableSelectionModel"), MutableSelectionModel_String: findType("MutableSelectionModel"), Mutator: findType("Mutator"), NativeByteBuffer: findType("NativeByteBuffer"), NativeTypedArrayOfDouble: findType("NativeTypedArrayOfDouble"), NativeTypedArrayOfInt: findType("NativeTypedArrayOfInt"), NativeTypedData: findType("NativeTypedData"), NativeUint8List: findType("NativeUint8List"), NavigatorState: findType("NavigatorState"), NoSuchMethodError: findType("NoSuchMethodError"), Node: findType("Node"), Node_2: findType("Node0"), NotificationListener_DraggableScrollableNotification: findType("NotificationListener"), NotificationListener_KeepAliveNotification: findType("NotificationListener"), NotificationListener_LayoutChangedNotification: findType("NotificationListener"), NotificationListener_OverscrollIndicatorNotification: findType("NotificationListener"), NotificationListener_ScrollNotification: findType("NotificationListener"), NotificationListener_ScrollUpdateNotification: findType("NotificationListener"), NotoFont: findType("NotoFont"), Null: findType("Null"), NumericAxis: findType("NumericAxis"), Object: findType("Object"), ObserverList__ParentInkResponseState: findType("ObserverList<_ParentInkResponseState>"), ObserverList_of_void_Function: findType("ObserverList<~()>"), ObserverList_of_void_Function_Action_Intent: findType("ObserverList<~(Action)>"), ObserverList_of_void_Function_AnimationStatus: findType("ObserverList<~(AnimationStatus)>"), Offset: findType("Offset"), OffsetLayer: findType("OffsetLayer"), Offstage: findType("Offstage"), OneSequenceGestureRecognizer: findType("OneSequenceGestureRecognizer"), OrdinalScale: findType("OrdinalScale"), OutlinedButtonTheme: findType("OutlinedButtonTheme"), OverflowViewParentData: findType("OverflowViewParentData"), OverlayEntry: findType("OverlayEntry"), OverlayState: findType("OverlayState"), Padding: findType("Padding"), Page: findType("Page"), PageMetrics: findType("PageMetrics"), PageRoute_dynamic: findType("PageRoute<@>"), PageStorage: findType("PageStorage"), Paint: findType("Paint"), ParagraphGeometricStyle: findType("ParagraphGeometricStyle"), ParagraphRuler: findType("ParagraphRuler"), ParentDataWidget_KeepAliveParentDataMixin: findType("ParentDataWidget"), Path: findType("Path"), PathRef: findType("PathRef"), Pattern: findType("Pattern"), PdfDocument: findType("PdfDocument"), PdfJsDoc: findType("PdfJsDoc"), PdfJsPage: findType("PdfJsPage"), PdfPage: findType("PdfPage"), PdfPageImage: findType("PdfPageImage"), PermissionStatus: findType("PermissionStatus0"), PersistedContainerSurface: findType("PersistedContainerSurface"), PersistedPlatformView: findType("PersistedPlatformView"), PersistedScene: findType("PersistedScene"), PersistedSurface: findType("PersistedSurface"), PhotoViewComputedScale: findType("PhotoViewComputedScale"), PhotoViewControllerValue: findType("PhotoViewControllerValue"), PhotoViewGestureDetectorScope: findType("PhotoViewGestureDetectorScope"), PhotoViewScaleState: findType("PhotoViewScaleState"), PhysicalKeyboardKey: findType("PhysicalKeyboardKey"), PlaceholderDimensions: findType("PlaceholderDimensions"), Point_double: findType("Point"), Point_num: findType("Point"), PointerAddedEvent: findType("PointerAddedEvent"), PointerCancelEvent: findType("PointerCancelEvent"), PointerDataPacket: findType("PointerDataPacket"), PointerDeviceKind: findType("PointerDeviceKind"), PointerDownEvent: findType("PointerDownEvent"), PointerEvent: findType("PointerEvent0"), PointerEventResampler: findType("PointerEventResampler"), PointerEvent_2: findType("PointerEvent"), PointerHoverEvent: findType("PointerHoverEvent"), PointerMoveEvent: findType("PointerMoveEvent"), PointerRemovedEvent: findType("PointerRemovedEvent"), PointerScrollEvent: findType("PointerScrollEvent"), PointerSignalEvent: findType("PointerSignalEvent"), PointerUpEvent: findType("PointerUpEvent"), PopupMenuButton_legacy_String: findType("PopupMenuButton"), PopupMenuTheme: findType("PopupMenuTheme"), PrimaryScrollController: findType("PrimaryScrollController"), PrimitiveSerializer_dynamic: findType("PrimitiveSerializer<@>"), ProgressEvent: findType("ProgressEvent"), ProxyWidget: findType("ProxyWidget"), QueueItem: findType("QueueItem"), RadioListTile_legacy_String: findType("RadioListTile"), RandomAccessFile: findType("RandomAccessFile"), RawAutocomplete_legacy_SelectableEntity: findType("RawAutocomplete"), RawScrollbar: findType("RawScrollbar"), Rect: findType("Rect"), Rectangle_num: findType("Rectangle"), RegExp: findType("RegExp"), RenderAbsorbPointer: findType("RenderAbsorbPointer"), RenderAbstractViewport: findType("RenderAbstractViewport"), RenderBox: findType("RenderBox"), RenderCustomMultiChildLayoutBox: findType("RenderCustomMultiChildLayoutBox"), RenderEditable: findType("RenderEditable"), RenderIgnorePointer: findType("RenderIgnorePointer"), RenderObject: findType("RenderObject"), RenderObjectToWidgetAdapter_RenderBox: findType("RenderObjectToWidgetAdapter"), RenderObjectWidget: findType("RenderObjectWidget"), RenderObjectWithChildMixin_RenderObject: findType("RenderObjectWithChildMixin"), RenderPointerListener: findType("RenderPointerListener"), RenderSemanticsGestureHandler: findType("RenderSemanticsGestureHandler"), RenderSliver: findType("RenderSliver"), RenderSliverMultiBoxAdaptor: findType("RenderSliverMultiBoxAdaptor"), RenderTable: findType("RenderTable"), RenderViewport: findType("RenderViewport"), Response: findType("Response"), RestorableNum_int: findType("RestorableNum"), RestorableProperty_nullable_Object: findType("RestorableProperty"), RestorationBucket: findType("RestorationBucket"), ReverseTween_nullable_Rect: findType("ReverseTween"), ReversedListIterable_String: findType("ReversedListIterable"), ReversedListIterable_Widget: findType("ReversedListIterable"), ReversedListIterable__SemanticsSortGroup: findType("ReversedListIterable<_SemanticsSortGroup>"), ReversedListIterable_of_dynamic_Function_dynamic: findType("ReversedListIterable<@(@)>"), Role: findType("Role"), RoutePopDisposition: findType("RoutePopDisposition"), Route_dynamic_Function_2_BuildContext_and_nullable_Object: findType("Route<@>(BuildContext,Object?)"), Runes: findType("Runes"), ScaffoldFeatureController_SnackBar_SnackBarClosedReason: findType("ScaffoldFeatureController"), ScaffoldState: findType("ScaffoldState"), ScriptElement: findType("ScriptElement0"), ScrollAwareImageProvider_Object: findType("ScrollAwareImageProvider"), ScrollConfiguration: findType("ScrollConfiguration"), ScrollPosition: findType("ScrollPosition"), ScrollbarPainter: findType("ScrollbarPainter"), SelectionModelConfig_legacy_DateTime: findType("SelectionModelConfig"), SelectionModelType: findType("SelectionModelType"), SemanticsAction: findType("SemanticsAction"), SemanticsNode: findType("SemanticsNode"), SemanticsObject: findType("SemanticsObject"), SemanticsTag: findType("SemanticsTag"), SerializerPlugin: findType("SerializerPlugin"), Serializer_dynamic: findType("Serializer<@>"), SeriesLegend_legacy_DateTime: findType("SeriesLegend"), SeriesRenderer_DateTime: findType("SeriesRenderer"), SeriesRenderer_String: findType("SeriesRenderer"), ServiceExtensionResponse: findType("ServiceExtensionResponse"), SetBuilder_dynamic: findType("SetBuilder<@>"), SetEquality_dynamic: findType("SetEquality<@>"), SetMultimapBuilder_dynamic_dynamic: findType("SetMultimapBuilder<@,@>"), Set_RouteAware: findType("Set"), Set_String: findType("Set"), Set_dynamic: findType("Set<@>"), ShapeBorder: findType("ShapeBorder"), ShapeBorderClipper: findType("ShapeBorderClipper"), SharedPreferences: findType("SharedPreferences"), SingleChildRenderObjectWidget: findType("SingleChildRenderObjectWidget"), Size: findType("Size"), SkiaObjectBox_CkImage_SkImage: findType("SkiaObjectBox"), SkipWhileIterable_String: findType("SkipWhileIterable"), SlidableData: findType("SlidableData"), SliverConstraints: findType("SliverConstraints"), SliverGridParentData: findType("SliverGridParentData"), SliverLogicalParentData: findType("SliverLogicalParentData"), SliverMultiBoxAdaptorElement: findType("SliverMultiBoxAdaptorElement"), SliverMultiBoxAdaptorParentData: findType("SliverMultiBoxAdaptorParentData"), SliverMultiBoxAdaptorWidget: findType("SliverMultiBoxAdaptorWidget"), SliverPhysicalParentData: findType("SliverPhysicalParentData"), SliverReorderableListState: findType("SliverReorderableListState"), SourceLocation: findType("SourceLocation"), SourceSpan: findType("SourceSpan"), SourceSpanWithContext: findType("SourceSpanWithContext"), SpanElement: findType("SpanElement"), StackParentData: findType("StackParentData"), StackTrace: findType("StackTrace"), StatefulElement: findType("StatefulElement"), StatefulWidget: findType("StatefulWidget"), StatelessWidget: findType("StatelessWidget"), StoreProvider_legacy_AppState: findType("StoreProvider"), Store_legacy_AppState: findType("Store"), StreamedResponse: findType("StreamedResponse"), String: findType("String"), StructuredSerializer_dynamic: findType("StructuredSerializer<@>"), StyledToastTheme: findType("StyledToastTheme"), Surface: findType("Surface"), SurfacePaint: findType("SurfacePaint"), SurfacePath: findType("SurfacePath"), SurfaceScene: findType("SurfaceScene"), SvgElement: findType("SvgElement"), SvgSvgElement: findType("SvgSvgElement"), SynchronousFuture_AssetBundleImageKey: findType("SynchronousFuture"), SynchronousFuture_CachedNetworkImageProvider: findType("SynchronousFuture"), SynchronousFuture_CupertinoLocalizations: findType("SynchronousFuture"), SynchronousFuture_Map_Type_dynamic: findType("SynchronousFuture>"), SynchronousFuture_MaterialLocalizations: findType("SynchronousFuture"), SynchronousFuture_NetworkImage: findType("SynchronousFuture"), SynchronousFuture_PdfPageImageProvider: findType("SynchronousFuture"), SynchronousFuture_WidgetsLocalizations: findType("SynchronousFuture"), SynchronousFuture_legacy_AppLocalization: findType("SynchronousFuture"), SynchronousFuture_nullable_Map_of_String_and_List_String: findType("SynchronousFuture>?>"), SynchronousFuture_nullable_RestorationBucket: findType("SynchronousFuture"), SystemMouseCursor: findType("SystemMouseCursor"), SystemUiOverlayStyle: findType("SystemUiOverlayStyle"), Table: findType("Table"), TableCellParentData: findType("TableCellParentData"), TableColumnWidth: findType("TableColumnWidth"), TableRow: findType("TableRow"), TemplateElement: findType("TemplateElement"), TextAreaElement: findType("TextAreaElement"), TextBaseline: findType("TextBaseline"), TextButtonTheme: findType("TextButtonTheme"), TextEditingActionTarget: findType("TextEditingActionTarget"), TextEditingValue: findType("TextEditingValue"), TextFormField: findType("TextFormField"), TextPainter: findType("TextPainter"), TextParentData: findType("TextParentData"), TextSelectionTheme: findType("TextSelectionTheme"), TextStyle: findType("TextStyle"), ThemeData: findType("ThemeData"), ThemeDataTween: findType("ThemeDataTween"), TimeOfDay: findType("TimeOfDay"), TimePickerTheme: findType("TimePickerTheme"), TimeTickFormatter: findType("TimeTickFormatter"), Timer: findType("Timer"), ToastFuture: findType("ToastFuture"), ToggleButtonsTheme: findType("ToggleButtonsTheme"), TooltipTheme: findType("TooltipTheme"), TouchEvent: findType("TouchEvent"), Tween_Offset: findType("Tween"), Tween_double: findType("Tween"), Type: findType("Type"), TypedData: findType("TypedData"), TypedKey_nullable_Object: findType("TypedKey"), TypedMiddleware_of_legacy_AppState_and_legacy_AddCompany: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchivePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ArchiveWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_BulkEmailQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_CancelInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConnecGmailUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConnecOAuthUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ConvertQuotes: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeletePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DeleteWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DisableTwoFactorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_DownloadQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EditWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailPaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_EmailQuoteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadAccountSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadClients: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCompanyGateways: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadCredits: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDesigns: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadDocuments: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategories: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadExpenses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadGroups: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadInvoices: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPaymentTerms: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadPayments: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProducts: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadProjects: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadQuotes: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringExpenses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadRecurringInvoices: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadStateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadSubscriptions: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaskStatuses: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTasks: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTaxRates: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadTokens: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadUsers: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadVendors: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_LoadWebhooks: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesPaidRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkInvoicesSentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_MarkSentQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_OAuthLoginRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_OAuthSignUpRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistData: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistPrefs: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistStatic: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PersistUI: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_PurgeDataRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RecoverPasswordRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefreshData: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefreshDataSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RefundPaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RemoveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ResendConfirmation: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ResendInviteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreClientsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreCreditsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDesignsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseCategoriesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentTermsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestorePaymentsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProductsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreQuotesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreSubscriptionsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaskStatusesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreTokensRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_RestoreWebhooksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ReverseInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveAuthUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveClientRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyGatewayRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveCreditRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveDesignRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseCategoryRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveGroupRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SavePaymentTermRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProductRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveProjectRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveQuoteRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringExpenseRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveRecurringInvoiceRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveSubscriptionRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaskStatusRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTaxRateRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveTokenRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveUserSettingsRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorDocumentRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveVendorRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SaveWebhookRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SetDefaultCompanyRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowEmailQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ShowPdfRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_SortTasksRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StartRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringExpensesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_StopRecurringInvoicesRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UploadLogoRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLoginSuccess: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLogout: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserLogoutAll: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_UserSignUpRequest: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewClient: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewClientList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGateway: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCompanyGatewayList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCredit: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewCreditList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDashboard: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesign: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDesignList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocument: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewDocumentList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategory: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseCategoryList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewExpenseList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroup: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewGroupList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewInvoiceList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewMainScreen: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTerm: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewPaymentTermList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProduct: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProductList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProject: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewProjectList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuote: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewQuoteList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpense: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringExpenseList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoice: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRecurringInvoiceList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewRefundPayment: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewReports: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSettings: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscription: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewSubscriptionList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTask: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatus: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaskStatusList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRate: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTaxRateList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewToken: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewTokenList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewUser: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewUserList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendor: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewVendorList: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhook: findType("TypedMiddleware"), TypedMiddleware_of_legacy_AppState_and_legacy_ViewWebhookList: findType("TypedMiddleware"), Uint8List: findType("Uint8List"), UnknownJavaScriptObject: findType("UnknownJavaScriptObject"), UnmanagedRestorationScope: findType("UnmanagedRestorationScope"), UnmodifiableListView_nullable_Object: findType("UnmodifiableListView"), UnmodifiableMapView_String_String: findType("UnmodifiableMapView"), UnmodifiableMapView_of_String_and_nullable_Object: findType("UnmodifiableMapView"), UnorderedIterableEquality_dynamic: findType("UnorderedIterableEquality<@>"), Uri: findType("Uri"), ValueKey_ConnectionState: findType("ValueKey"), ValueKey_DateTime: findType("ValueKey"), ValueKey_Key: findType("ValueKey"), ValueKey_Object: findType("ValueKey"), ValueKey_String: findType("ValueKey"), ValueKey_int: findType("ValueKey"), ValueKey_legacy_CrossFadeState: findType("ValueKey"), ValueKey_legacy_String: findType("ValueKey"), ValueKey_legacy_int: findType("ValueKey"), ValueKey_nullable_Object: findType("ValueKey"), ValueKey_nullable_int: findType("ValueKey"), ValueLayoutBuilder_int: findType("ValueLayoutBuilder"), ValueNotifier_bool: findType("ValueNotifier"), ValueNotifier_double: findType("ValueNotifier"), ValueNotifier_nullable_Object: findType("ValueNotifier"), ValueNotifier_nullable_String: findType("ValueNotifier"), ValueNotifier_nullable_int: findType("ValueNotifier"), ValueWrapper_LoadingState: findType("ValueWrapper"), VelocityTracker: findType("VelocityTracker"), Viewport: findType("Viewport"), VisualDensity: findType("VisualDensity"), WheelEvent: findType("WheelEvent"), WhereIterable_String: findType("WhereIterable"), WhereIterable_legacy_CompanyEntity: findType("WhereIterable"), WhereIterable_legacy_EntityType: findType("WhereIterable"), WhereIterable_legacy_String: findType("WhereIterable"), WhereTypeIterable_StackFrame: findType("WhereTypeIterable"), WhereTypeIterable_String: findType("WhereTypeIterable"), WhereTypeIterable_nullable_MetaElement: findType("WhereTypeIterable"), WhereTypeIterable_of_void_Function_2_Object_and_nullable_StackTrace: findType("WhereTypeIterable<~(Object,StackTrace?)>"), WhereTypeIterable_of_void_Function_ImageChunkEvent: findType("WhereTypeIterable<~(ImageChunkEvent)>"), WhereTypeIterator_FocusScopeNode: findType("WhereTypeIterator"), Widget: findType("Widget"), WidgetLayoutDelegate: findType("WidgetLayoutDelegate"), WidgetsBindingObserver: findType("WidgetsBindingObserver"), WidgetsLocalizations: findType("WidgetsLocalizations"), Window: findType("Window"), WorkerGlobalScope: findType("WorkerGlobalScope"), WrapParentData: findType("WrapParentData"), XFile: findType("XFile"), _ActionsMarker: findType("_ActionsMarker"), _AsyncBroadcastStreamController_LoadingState: findType("_AsyncBroadcastStreamController"), _AsyncBroadcastStreamController_PhotoViewControllerValue: findType("_AsyncBroadcastStreamController"), _AsyncBroadcastStreamController_PhotoViewScaleState: findType("_AsyncBroadcastStreamController"), _AsyncBroadcastStreamController_dynamic: findType("_AsyncBroadcastStreamController<@>"), _AsyncBroadcastStreamController_legacy_AppState: findType("_AsyncBroadcastStreamController"), _AsyncCompleter_AssetBundleImageKey: findType("_AsyncCompleter"), _AsyncCompleter_Blob: findType("_AsyncCompleter"), _AsyncCompleter_Codec: findType("_AsyncCompleter"), _AsyncCompleter_FrameInfo: findType("_AsyncCompleter"), _AsyncCompleter_HttpRequest: findType("_AsyncCompleter"), _AsyncCompleter_List_LicenseEntry: findType("_AsyncCompleter>"), _AsyncCompleter_List_XFile: findType("_AsyncCompleter>"), _AsyncCompleter_Null: findType("_AsyncCompleter"), _AsyncCompleter_SharedPreferences: findType("_AsyncCompleter"), _AsyncCompleter_StreamedResponse: findType("_AsyncCompleter"), _AsyncCompleter_String: findType("_AsyncCompleter"), _AsyncCompleter_Uint8List: findType("_AsyncCompleter"), _AsyncCompleter_bool: findType("_AsyncCompleter"), _AsyncCompleter_dynamic: findType("_AsyncCompleter<@>"), _AsyncCompleter_legacy_ClientEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_CompanyGatewayEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_DocumentEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ExpenseCategoryEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ExpenseEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_GroupEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_InvoiceEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_PaymentEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_PaymentTermEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ProductEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_ProjectEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_SelectableEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_SubscriptionEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaskEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaskStatusEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TaxRateEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_TokenEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_UserEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_VendorEntity: findType("_AsyncCompleter"), _AsyncCompleter_legacy_WebhookEntity: findType("_AsyncCompleter"), _AsyncCompleter_nullable_ByteData: findType("_AsyncCompleter"), _AsyncCompleter_nullable_CacheObject: findType("_AsyncCompleter"), _AsyncCompleter_nullable_List_PlatformFile: findType("_AsyncCompleter?>"), _AsyncCompleter_nullable_RestorationBucket: findType("_AsyncCompleter"), _AsyncCompleter_void: findType("_AsyncCompleter<~>"), _Attr: findType("_Attr"), _AutofillScope: findType("_AutofillScope"), _BuiltMap_dynamic_dynamic: findType("_BuiltMap<@,@>"), _ButtonSanitizer: findType("_ButtonSanitizer"), _CachedImage: findType("_CachedImage"), _ChildEntry: findType("_ChildEntry"), _ChildNodeListLazy: findType("_ChildNodeListLazy"), _CombiningGestureArenaMember: findType("_CombiningGestureArenaMember"), _DecorationSlot: findType("_DecorationSlot"), _Decorator: findType("_Decorator"), _DelayedPointerState: findType("_DelayedPointerState"), _DetailArguments: findType("_DetailArguments"), _Diagonal: findType("_Diagonal"), _DirectionalPolicyData: findType("_DirectionalPolicyData"), _EffectiveTickerMode: findType("_EffectiveTickerMode"), _ElementEventStreamImpl_legacy_Event: findType("_ElementEventStreamImpl"), _ElementEventStreamImpl_legacy_KeyboardEvent: findType("_ElementEventStreamImpl"), _ElementEventStreamImpl_legacy_MouseEvent: findType("_ElementEventStreamImpl"), _EventStream_legacy_ProgressEvent: findType("_EventStream"), _FocusMarker: findType("_FocusMarker"), _FocusTraversalGroupInfo: findType("_FocusTraversalGroupInfo"), _FocusTraversalGroupMarker: findType("_FocusTraversalGroupMarker"), _FocusedDate: findType("_FocusedDate"), _FormScope: findType("_FormScope"), _FrameCallbackEntry: findType("_FrameCallbackEntry"), _FrozenElementList_Element: findType("_FrozenElementList"), _Future_AssetBundleImageKey: findType("_Future"), _Future_Blob: findType("_Future"), _Future_Codec: findType("_Future"), _Future_FrameInfo: findType("_Future"), _Future_HttpRequest: findType("_Future"), _Future_List_LicenseEntry: findType("_Future>"), _Future_List_XFile: findType("_Future>"), _Future_Null: findType("_Future"), _Future_SharedPreferences: findType("_Future"), _Future_StreamedResponse: findType("_Future"), _Future_String: findType("_Future"), _Future_Uint8List: findType("_Future"), _Future_bool: findType("_Future"), _Future_dynamic: findType("_Future<@>"), _Future_int: findType("_Future"), _Future_legacy_ClientEntity: findType("_Future"), _Future_legacy_CompanyGatewayEntity: findType("_Future"), _Future_legacy_DocumentEntity: findType("_Future"), _Future_legacy_ExpenseCategoryEntity: findType("_Future"), _Future_legacy_ExpenseEntity: findType("_Future"), _Future_legacy_GroupEntity: findType("_Future"), _Future_legacy_InvoiceEntity: findType("_Future"), _Future_legacy_PaymentEntity: findType("_Future"), _Future_legacy_PaymentTermEntity: findType("_Future"), _Future_legacy_ProductEntity: findType("_Future"), _Future_legacy_ProjectEntity: findType("_Future"), _Future_legacy_SelectableEntity: findType("_Future"), _Future_legacy_SubscriptionEntity: findType("_Future"), _Future_legacy_TaskEntity: findType("_Future"), _Future_legacy_TaskStatusEntity: findType("_Future"), _Future_legacy_TaxRateEntity: findType("_Future"), _Future_legacy_TokenEntity: findType("_Future"), _Future_legacy_UserEntity: findType("_Future"), _Future_legacy_VendorEntity: findType("_Future"), _Future_legacy_WebhookEntity: findType("_Future"), _Future_nullable_ByteData: findType("_Future"), _Future_nullable_CacheObject: findType("_Future"), _Future_nullable_List_PlatformFile: findType("_Future?>"), _Future_nullable_RestorationBucket: findType("_Future"), _Future_void: findType("_Future<~>"), _GestureArena: findType("_GestureArena"), _HeroFlight: findType("_HeroFlight"), _HeroState: findType("_HeroState"), _Highlight: findType("_Highlight"), _HighlightType: findType("_HighlightType"), _IdentityHashMap_dynamic_dynamic: findType("_IdentityHashMap<@,@>"), _ImmediatePointerState: findType("_ImmediatePointerState"), _InheritedCupertinoTheme: findType("_InheritedCupertinoTheme"), _InheritedResetNotifier: findType("_InheritedResetNotifier"), _InheritedTheme: findType("_InheritedTheme"), _InterestingSemanticsFragment: findType("_InterestingSemanticsFragment"), _IntrinsicDimensionsCacheEntry: findType("_IntrinsicDimensionsCacheEntry"), _LicenseData: findType("_LicenseData"), _ListTile: findType("_ListTile"), _ListTileSlot: findType("_ListTileSlot"), _ListenerEntry: findType("_ListenerEntry"), _LiveImage: findType("_LiveImage"), _LocalizationsScope: findType("_LocalizationsScope"), _MapEntry: findType("_MapEntry"), _MasterDetailFlowState: findType("_MasterDetailFlowState"), _MasterDetailScaffoldState: findType("_MasterDetailScaffoldState"), _MaterialStatePropertyAll_BorderSide: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_Color: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_EdgeInsetsGeometry: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_OutlinedBorder: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_Size: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_TextStyle: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_double: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyAll_nullable_TextStyle: findType("_MaterialStatePropertyAll"), _MaterialStatePropertyWith_Color: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_MouseCursor: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_double: findType("_MaterialStatePropertyWith"), _MaterialStatePropertyWith_nullable_Color: findType("_MaterialStatePropertyWith"), _ModalScopeStatus: findType("_ModalScopeStatus"), _MouseState: findType("_MouseState"), _NavigatorObservation: findType("_NavigatorObservation"), _OverflowBarParentData: findType("_OverflowBarParentData"), _PagePosition: findType("_PagePosition"), _ParentInkResponseProvider: findType("_ParentInkResponseProvider"), _PendingImage: findType("_PendingImage"), _PointerState: findType("_PointerState"), _Range_num: findType("_Range"), _ReadingOrderDirectionalGroupData: findType("_ReadingOrderDirectionalGroupData"), _ReadingOrderSortData: findType("_ReadingOrderSortData"), _RenderDecoration: findType("_RenderDecoration"), _RenderInkFeatures: findType("_RenderInkFeatures"), _RenderListTile: findType("_RenderListTile"), _RenderMergeableMaterialListBody: findType("_RenderMergeableMaterialListBody"), _RenderSliverPersistentHeaderForWidgetsMixin: findType("_RenderSliverPersistentHeaderForWidgetsMixin"), _RenderTheatre: findType("_RenderTheatre"), _ReorderableItemState: findType("_ReorderableItemState"), _ResolvedNotoSubset: findType("_ResolvedNotoSubset"), _RouteEntry: findType("_RouteEntry"), _SaltedKey_BuildContext_int: findType("_SaltedKey"), _SaveClipEntry: findType("_SaveClipEntry"), _ScaffoldMessengerScope: findType("_ScaffoldMessengerScope"), _ScaffoldScope: findType("_ScaffoldScope"), _ScrollableScope: findType("_ScrollableScope"), _SlidableScope: findType("_SlidableScope"), _SliverPersistentHeaderRenderObjectWidget: findType("_SliverPersistentHeaderRenderObjectWidget"), _StoredMessage: findType("_StoredMessage"), _StreamIterator_FileResponse: findType("_StreamIterator"), _StreamIterator_int: findType("_StreamIterator"), _SyncCompleter_dynamic: findType("_SyncCompleter<@>"), _TabControllerScope: findType("_TabControllerScope"), _TapTracker: findType("_TapTracker"), _TextFormFieldState: findType("_TextFormFieldState"), _Theatre: findType("_Theatre"), _UnmodifiableSet_legacy_MaterialState: findType("_UnmodifiableSet"), _UnmodifiableSet_legacy_String: findType("_UnmodifiableSet"), _WidgetTicker: findType("_WidgetTicker"), _Wrapper_LoadingState: findType("_Wrapper"), _ZoneFunction_of_void_Function_Zone_ZoneDelegate_Zone_Object_StackTrace: findType("_ZoneFunction<~(Zone,ZoneDelegate,Zone,Object,StackTrace)>"), _ZoneFunction_of_void_Function_Zone_ZoneDelegate_Zone_String: findType("_ZoneFunction<~(Zone,ZoneDelegate,Zone,String)>"), bool: findType("bool"), double: findType("double"), dynamic: findType("@"), dynamic_Function_Event: findType("@(Event)"), dynamic_Function_Object: findType("@(Object)"), dynamic_Function_Object_StackTrace: findType("@(Object,StackTrace)"), int: findType("int"), legacy_AccountEntity: findType("AccountEntity*"), legacy_AccountManagementVM: findType("AccountManagementVM*"), legacy_Action_legacy_Intent: findType("Action*"), legacy_ActivityEntity: findType("ActivityEntity*"), legacy_AddCompany: findType("AddCompany*"), legacy_AlertDialog: findType("AlertDialog*"), legacy_AppBuilderState: findType("AppBuilderState*"), legacy_AppDrawerVM: findType("AppDrawerVM*"), legacy_AppLayout: findType("AppLayout*"), legacy_AppLocalization: findType("AppLocalization*"), legacy_AppSidebarMode: findType("AppSidebarMode*"), legacy_AppState: findType("AppState*"), legacy_ArchiveClientsRequest: findType("ArchiveClientsRequest*"), legacy_ArchiveCompanyGatewayRequest: findType("ArchiveCompanyGatewayRequest*"), legacy_ArchiveCreditsRequest: findType("ArchiveCreditsRequest*"), legacy_ArchiveDesignsRequest: findType("ArchiveDesignsRequest*"), legacy_ArchiveDocumentRequest: findType("ArchiveDocumentRequest*"), legacy_ArchiveExpenseCategoriesRequest: findType("ArchiveExpenseCategoriesRequest*"), legacy_ArchiveExpenseRequest: findType("ArchiveExpenseRequest*"), legacy_ArchiveGroupRequest: findType("ArchiveGroupRequest*"), legacy_ArchiveInvoicesRequest: findType("ArchiveInvoicesRequest*"), legacy_ArchivePaymentTermsRequest: findType("ArchivePaymentTermsRequest*"), legacy_ArchivePaymentsRequest: findType("ArchivePaymentsRequest*"), legacy_ArchiveProductsRequest: findType("ArchiveProductsRequest*"), legacy_ArchiveProjectRequest: findType("ArchiveProjectRequest*"), legacy_ArchiveQuotesRequest: findType("ArchiveQuotesRequest*"), legacy_ArchiveRecurringExpensesRequest: findType("ArchiveRecurringExpensesRequest*"), legacy_ArchiveRecurringInvoicesRequest: findType("ArchiveRecurringInvoicesRequest*"), legacy_ArchiveSubscriptionsRequest: findType("ArchiveSubscriptionsRequest*"), legacy_ArchiveTaskRequest: findType("ArchiveTaskRequest*"), legacy_ArchiveTaskStatusesRequest: findType("ArchiveTaskStatusesRequest*"), legacy_ArchiveTaxRateRequest: findType("ArchiveTaxRateRequest*"), legacy_ArchiveTokensRequest: findType("ArchiveTokensRequest*"), legacy_ArchiveUserRequest: findType("ArchiveUserRequest*"), legacy_ArchiveVendorRequest: findType("ArchiveVendorRequest*"), legacy_ArchiveWebhooksRequest: findType("ArchiveWebhooksRequest*"), legacy_AuthState: findType("AuthState*"), legacy_BaseEntity: findType("BaseEntity*"), legacy_BeforeUnloadEvent: findType("BeforeUnloadEvent*"), legacy_BelongsToClient: findType("BelongsToClient*"), legacy_BoardItem: findType("BoardItem*"), legacy_BuiltList_legacy_ClientEntity: findType("BuiltList*"), legacy_BuiltList_legacy_CompanyGatewayEntity: findType("BuiltList*"), legacy_BuiltList_legacy_DesignEntity: findType("BuiltList*"), legacy_BuiltList_legacy_DocumentEntity: findType("BuiltList*"), legacy_BuiltList_legacy_EntityState: findType("BuiltList*"), legacy_BuiltList_legacy_EntityStatus: findType("BuiltList*"), legacy_BuiltList_legacy_ExpenseCategoryEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ExpenseEntity: findType("BuiltList*"), legacy_BuiltList_legacy_GroupEntity: findType("BuiltList*"), legacy_BuiltList_legacy_InvoiceEntity: findType("BuiltList*"), legacy_BuiltList_legacy_Object: findType("BuiltList*"), legacy_BuiltList_legacy_PaymentEntity: findType("BuiltList*"), legacy_BuiltList_legacy_PaymentTermEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ProductEntity: findType("BuiltList*"), legacy_BuiltList_legacy_ProjectEntity: findType("BuiltList*"), legacy_BuiltList_legacy_String: findType("BuiltList*"), legacy_BuiltList_legacy_SubscriptionEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaskEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaskStatusEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TaxRateEntity: findType("BuiltList*"), legacy_BuiltList_legacy_TokenEntity: findType("BuiltList*"), legacy_BuiltList_legacy_UserEntity: findType("BuiltList*"), legacy_BuiltList_legacy_VendorEntity: findType("BuiltList*"), legacy_BuiltList_legacy_WebhookEntity: findType("BuiltList*"), legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity: findType("BuiltMap*"), legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity: findType("BuiltMap*"), legacy_BulkEmailCreditsRequest: findType("BulkEmailCreditsRequest*"), legacy_BulkEmailInvoicesRequest: findType("BulkEmailInvoicesRequest*"), legacy_BulkEmailQuotesRequest: findType("BulkEmailQuotesRequest*"), legacy_BuyNowButtonsVM: findType("BuyNowButtonsVM*"), legacy_CancelInvoicesRequest: findType("CancelInvoicesRequest*"), legacy_ChartMoneyData: findType("ChartMoneyData*"), legacy_CheckboxListTile: findType("CheckboxListTile*"), legacy_ClearEntityFilter: findType("ClearEntityFilter*"), legacy_ClearEntitySelection: findType("ClearEntitySelection*"), legacy_ClientEditContactsVM: findType("ClientEditContactsVM*"), legacy_ClientEditVM: findType("ClientEditVM*"), legacy_ClientEntity: findType("ClientEntity*"), legacy_ClientItemResponse: findType("ClientItemResponse*"), legacy_ClientListResponse: findType("ClientListResponse*"), legacy_ClientListVM: findType("ClientListVM*"), legacy_ClientPdfVM: findType("ClientPdfVM*"), legacy_ClientPortalVM: findType("ClientPortalVM*"), legacy_ClientReportFields: findType("ClientReportFields*"), legacy_ClientScreenVM: findType("ClientScreenVM*"), legacy_ClientState: findType("ClientState*"), legacy_ClientUIState: findType("ClientUIState*"), legacy_ClientViewVM: findType("ClientViewVM*"), legacy_Color: findType("Color*"), legacy_CompanyDetailsVM: findType("CompanyDetailsVM*"), legacy_CompanyEntity: findType("CompanyEntity*"), legacy_CompanyGatewayEditVM: findType("CompanyGatewayEditVM*"), legacy_CompanyGatewayEntity: findType("CompanyGatewayEntity*"), legacy_CompanyGatewayItemResponse: findType("CompanyGatewayItemResponse*"), legacy_CompanyGatewayListItem: findType("CompanyGatewayListItem*"), legacy_CompanyGatewayListResponse: findType("CompanyGatewayListResponse*"), legacy_CompanyGatewayListVM: findType("CompanyGatewayListVM*"), legacy_CompanyGatewayScreenVM: findType("CompanyGatewayScreenVM*"), legacy_CompanyGatewayState: findType("CompanyGatewayState*"), legacy_CompanyGatewayUIState: findType("CompanyGatewayUIState*"), legacy_CompanyGatewayViewVM: findType("CompanyGatewayViewVM*"), legacy_CompanyItemResponse: findType("CompanyItemResponse*"), legacy_CompanyPrefState: findType("CompanyPrefState*"), legacy_Completer_legacy_SelectableEntity: findType("Completer*"), legacy_ConfirmEmailVM: findType("ConfirmEmailVM*"), legacy_ConnecGmailUserRequest: findType("ConnecGmailUserRequest*"), legacy_ConnecOAuthUserRequest: findType("ConnecOAuthUserRequest*"), legacy_ContactEntity: findType("ContactEntity*"), legacy_ContactListTile: findType("ContactListTile0*"), legacy_ContactListTile_2: findType("ContactListTile*"), legacy_ContactUsDialog: findType("ContactUsDialog*"), legacy_ConvertQuotes: findType("ConvertQuotes*"), legacy_CountryEntity: findType("CountryEntity*"), legacy_CreditCardsAndBanksVM: findType("CreditCardsAndBanksVM*"), legacy_CreditEditDetailsVM: findType("CreditEditDetailsVM*"), legacy_CreditEditItemsVM: findType("CreditEditItemsVM*"), legacy_CreditEditNotesVM: findType("CreditEditNotesVM*"), legacy_CreditEditPDFVM: findType("CreditEditPDFVM*"), legacy_CreditEditVM: findType("CreditEditVM*"), legacy_CreditListVM: findType("CreditListVM*"), legacy_CreditPdfVM: findType("CreditPdfVM*"), legacy_CreditReportFields: findType("CreditReportFields*"), legacy_CreditScreenVM: findType("CreditScreenVM*"), legacy_CreditState: findType("CreditState*"), legacy_CreditUIState: findType("CreditUIState*"), legacy_CreditViewVM: findType("CreditViewVM*"), legacy_CurrencyEntity: findType("CurrencyEntity*"), legacy_CustomFieldsVM: findType("CustomFieldsVM*"), legacy_DashboardDateRangePicker: findType("DashboardDateRangePicker*"), legacy_DashboardUISettings: findType("DashboardUISettings*"), legacy_DashboardUIState: findType("DashboardUIState*"), legacy_DashboardVM: findType("DashboardVM*"), legacy_DataCell: findType("DataCell0*"), legacy_DataColumn: findType("DataColumn0*"), legacy_DataRow: findType("DataRow0*"), legacy_DataVisualizationsVM: findType("DataVisualizationsVM*"), legacy_DateFormatEntity: findType("DateFormatEntity*"), legacy_DateRange: findType("DateRange*"), legacy_DateRangeComparison: findType("DateRangeComparison*"), legacy_DateTime: findType("DateTime*"), legacy_DatetimeFormatEntity: findType("DatetimeFormatEntity*"), legacy_DeleteClientsRequest: findType("DeleteClientsRequest*"), legacy_DeleteCompanyGatewayRequest: findType("DeleteCompanyGatewayRequest*"), legacy_DeleteCompanyRequest: findType("DeleteCompanyRequest*"), legacy_DeleteCreditsRequest: findType("DeleteCreditsRequest*"), legacy_DeleteDesignsRequest: findType("DeleteDesignsRequest*"), legacy_DeleteDocumentRequest: findType("DeleteDocumentRequest*"), legacy_DeleteExpenseCategoriesRequest: findType("DeleteExpenseCategoriesRequest*"), legacy_DeleteExpenseRequest: findType("DeleteExpenseRequest*"), legacy_DeleteGroupRequest: findType("DeleteGroupRequest*"), legacy_DeleteInvoicesRequest: findType("DeleteInvoicesRequest*"), legacy_DeletePaymentTermsRequest: findType("DeletePaymentTermsRequest*"), legacy_DeletePaymentsRequest: findType("DeletePaymentsRequest*"), legacy_DeleteProductsRequest: findType("DeleteProductsRequest*"), legacy_DeleteProjectRequest: findType("DeleteProjectRequest*"), legacy_DeleteQuotesRequest: findType("DeleteQuotesRequest*"), legacy_DeleteRecurringExpensesRequest: findType("DeleteRecurringExpensesRequest*"), legacy_DeleteRecurringInvoicesRequest: findType("DeleteRecurringInvoicesRequest*"), legacy_DeleteSubscriptionsRequest: findType("DeleteSubscriptionsRequest*"), legacy_DeleteTaskRequest: findType("DeleteTaskRequest*"), legacy_DeleteTaskStatusesRequest: findType("DeleteTaskStatusesRequest*"), legacy_DeleteTaxRateRequest: findType("DeleteTaxRateRequest*"), legacy_DeleteTokensRequest: findType("DeleteTokensRequest*"), legacy_DeleteUserRequest: findType("DeleteUserRequest*"), legacy_DeleteVendorRequest: findType("DeleteVendorRequest*"), legacy_DeleteWebhooksRequest: findType("DeleteWebhooksRequest*"), legacy_DesignEditVM: findType("DesignEditVM*"), legacy_DesignEntity: findType("DesignEntity*"), legacy_DesignItemResponse: findType("DesignItemResponse*"), legacy_DesignListResponse: findType("DesignListResponse*"), legacy_DesignListVM: findType("DesignListVM*"), legacy_DesignScreenVM: findType("DesignScreenVM*"), legacy_DesignState: findType("DesignState*"), legacy_DesignUIState: findType("DesignUIState*"), legacy_DesignViewVM: findType("DesignViewVM*"), legacy_DeviceSettingsVM: findType("DeviceSettingsVM*"), legacy_DisableTwoFactorRequest: findType("DisableTwoFactorRequest*"), legacy_DiscardChanges: findType("DiscardChanges*"), legacy_DocumentEditVM: findType("DocumentEditVM*"), legacy_DocumentEntity: findType("DocumentEntity*"), legacy_DocumentItemResponse: findType("DocumentItemResponse*"), legacy_DocumentListResponse: findType("DocumentListResponse*"), legacy_DocumentListVM: findType("DocumentListVM*"), legacy_DocumentReportFields: findType("DocumentReportFields*"), legacy_DocumentScreenVM: findType("DocumentScreenVM*"), legacy_DocumentState: findType("DocumentState*"), legacy_DocumentTile: findType("DocumentTile*"), legacy_DocumentUIState: findType("DocumentUIState*"), legacy_DocumentViewVM: findType("DocumentViewVM*"), legacy_DownloadCreditsRequest: findType("DownloadCreditsRequest*"), legacy_DownloadInvoicesRequest: findType("DownloadInvoicesRequest*"), legacy_DownloadQuotesRequest: findType("DownloadQuotesRequest*"), legacy_DropdownMenuItem_legacy_DateRange: findType("DropdownMenuItem*"), legacy_DropdownMenuItem_legacy_DateRangeComparison: findType("DropdownMenuItem*"), legacy_DropdownMenuItem_legacy_String: findType("DropdownMenuItem*"), legacy_Duration: findType("Duration*"), legacy_EditClient: findType("EditClient*"), legacy_EditCompanyGateway: findType("EditCompanyGateway*"), legacy_EditCredit: findType("EditCredit*"), legacy_EditDesign: findType("EditDesign*"), legacy_EditDocument: findType("EditDocument*"), legacy_EditExpense: findType("EditExpense*"), legacy_EditExpenseCategory: findType("EditExpenseCategory*"), legacy_EditGroup: findType("EditGroup*"), legacy_EditInvoice: findType("EditInvoice*"), legacy_EditPayment: findType("EditPayment*"), legacy_EditPaymentTerm: findType("EditPaymentTerm*"), legacy_EditProduct: findType("EditProduct*"), legacy_EditProject: findType("EditProject*"), legacy_EditQuote: findType("EditQuote*"), legacy_EditRecurringExpense: findType("EditRecurringExpense*"), legacy_EditRecurringInvoice: findType("EditRecurringInvoice*"), legacy_EditSubscription: findType("EditSubscription*"), legacy_EditTask: findType("EditTask*"), legacy_EditTaskStatus: findType("EditTaskStatus*"), legacy_EditTaxRate: findType("EditTaxRate*"), legacy_EditToken: findType("EditToken*"), legacy_EditUser: findType("EditUser*"), legacy_EditVendor: findType("EditVendor*"), legacy_EditWebhook: findType("EditWebhook*"), legacy_EmailCreditRequest: findType("EmailCreditRequest*"), legacy_EmailCreditVM: findType("EmailCreditVM*"), legacy_EmailInvoiceRequest: findType("EmailInvoiceRequest*"), legacy_EmailInvoiceVM: findType("EmailInvoiceVM*"), legacy_EmailPaymentRequest: findType("EmailPaymentRequest*"), legacy_EmailQuoteRequest: findType("EmailQuoteRequest*"), legacy_EmailQuoteVM: findType("EmailQuoteVM*"), legacy_EmailSettingsVM: findType("EmailSettingsVM*"), legacy_EmailTemplate: findType("EmailTemplate*"), legacy_EntityAction: findType("EntityAction*"), legacy_EntityDropdownDialog: findType("EntityDropdownDialog*"), legacy_EntityState: findType("EntityState*"), legacy_EntityStats: findType("EntityStats*"), legacy_EntityStatus: findType("EntityStatus*"), legacy_EntityType: findType("EntityType*"), legacy_Error: findType("Error*"), legacy_ErrorDialog: findType("ErrorDialog*"), legacy_Event: findType("Event*"), legacy_ExpenseCategoryEditVM: findType("ExpenseCategoryEditVM*"), legacy_ExpenseCategoryEntity: findType("ExpenseCategoryEntity*"), legacy_ExpenseCategoryItemResponse: findType("ExpenseCategoryItemResponse*"), legacy_ExpenseCategoryListResponse: findType("ExpenseCategoryListResponse*"), legacy_ExpenseCategoryListVM: findType("ExpenseCategoryListVM*"), legacy_ExpenseCategoryScreenVM: findType("ExpenseCategoryScreenVM*"), legacy_ExpenseCategoryState: findType("ExpenseCategoryState*"), legacy_ExpenseCategoryUIState: findType("ExpenseCategoryUIState*"), legacy_ExpenseCategoryViewVM: findType("ExpenseCategoryViewVM*"), legacy_ExpenseEditVM: findType("ExpenseEditVM*"), legacy_ExpenseEntity: findType("ExpenseEntity*"), legacy_ExpenseItemResponse: findType("ExpenseItemResponse*"), legacy_ExpenseListResponse: findType("ExpenseListResponse*"), legacy_ExpenseListVM: findType("ExpenseListVM*"), legacy_ExpenseReportFields: findType("ExpenseReportFields*"), legacy_ExpenseScheduleEntity: findType("ExpenseScheduleEntity*"), legacy_ExpenseScreenVM: findType("ExpenseScreenVM*"), legacy_ExpenseSettingsVM: findType("ExpenseSettingsVM*"), legacy_ExpenseState: findType("ExpenseState*"), legacy_ExpenseUIState: findType("ExpenseUIState*"), legacy_ExpenseViewVM: findType("ExpenseViewVM*"), legacy_FeesAndLimitsSettings: findType("FeesAndLimitsSettings*"), legacy_File: findType("File0*"), legacy_FileSystemEntity: findType("FileSystemEntity*"), legacy_FilterByEntity: findType("FilterByEntity*"), legacy_FormState: findType("FormState*"), legacy_FutureOr_legacy_AuthState: findType("AuthState*/*"), legacy_FutureOr_legacy_StaticState: findType("StaticState*/*"), legacy_FutureOr_legacy_UIState: findType("UIState*/*"), legacy_GatewayConfigField: findType("GatewayConfigField*"), legacy_GatewayEntity: findType("GatewayEntity*"), legacy_GatewayOptionsEntity: findType("GatewayOptionsEntity*"), legacy_GatewayTokenEntity: findType("GatewayTokenEntity*"), legacy_GatewayTokenMetaEntity: findType("GatewayTokenMetaEntity*"), legacy_GeneratedNumbersVM: findType("GeneratedNumbersVM*"), legacy_GoogleSignInAccount: findType("GoogleSignInAccount*"), legacy_GroupEditVM: findType("GroupEditVM*"), legacy_GroupEntity: findType("GroupEntity*"), legacy_GroupItemResponse: findType("GroupItemResponse*"), legacy_GroupListResponse: findType("GroupListResponse*"), legacy_GroupListVM: findType("GroupListVM*"), legacy_GroupScreenVM: findType("GroupScreenVM*"), legacy_GroupState: findType("GroupState*"), legacy_GroupUIState: findType("GroupUIState*"), legacy_GroupViewVM: findType("GroupViewVM*"), legacy_HealthCheckDialog: findType("HealthCheckDialog*"), legacy_HealthCheckPHPResponse: findType("HealthCheckPHPResponse*"), legacy_HealthCheckResponse: findType("HealthCheckResponse*"), legacy_HistoryRecord: findType("HistoryRecord*"), legacy_IconData: findType("IconData*"), legacy_ImportExportVM: findType("ImportExportVM*"), legacy_ImportRequestMapping: findType("ImportRequestMapping*"), legacy_ImportType: findType("ImportType*"), legacy_IndustryEntity: findType("IndustryEntity*"), legacy_InkWell: findType("InkWell*"), legacy_Intent: findType("Intent*"), legacy_InvitationEntity: findType("InvitationEntity*"), legacy_InvoiceDesignVM: findType("InvoiceDesignVM*"), legacy_InvoiceEditContactsVM: findType("InvoiceEditContactsVM*"), legacy_InvoiceEditDetailsVM: findType("InvoiceEditDetailsVM*"), legacy_InvoiceEditItemsVM: findType("InvoiceEditItemsVM*"), legacy_InvoiceEditNotesVM: findType("InvoiceEditNotesVM*"), legacy_InvoiceEditPDFVM: findType("InvoiceEditPDFVM*"), legacy_InvoiceEditVM: findType("InvoiceEditVM*"), legacy_InvoiceEntity: findType("InvoiceEntity*"), legacy_InvoiceHistoryEntity: findType("InvoiceHistoryEntity*"), legacy_InvoiceItemEntity: findType("InvoiceItemEntity*"), legacy_InvoiceItemReportFields: findType("InvoiceItemReportFields*"), legacy_InvoiceItemResponse: findType("InvoiceItemResponse*"), legacy_InvoiceItemSelector: findType("InvoiceItemSelector*"), legacy_InvoiceListResponse: findType("InvoiceListResponse*"), legacy_InvoiceListVM: findType("InvoiceListVM*"), legacy_InvoicePdfVM: findType("InvoicePdfVM*"), legacy_InvoiceReportFields: findType("InvoiceReportFields*"), legacy_InvoiceScheduleEntity: findType("InvoiceScheduleEntity*"), legacy_InvoiceScreenVM: findType("InvoiceScreenVM*"), legacy_InvoiceState: findType("InvoiceState*"), legacy_InvoiceStatusEntity: findType("InvoiceStatusEntity*"), legacy_InvoiceUIState: findType("InvoiceUIState*"), legacy_InvoiceViewVM: findType("InvoiceViewVM*"), legacy_ItemEditDetails: findType("ItemEditDetails*"), legacy_Iterable_dynamic: findType("Iterable<@>*"), legacy_KanbanVM: findType("KanbanVM*"), legacy_KanbanViewState: findType("KanbanViewState*"), legacy_LanguageEntity: findType("LanguageEntity*"), legacy_LedgerEntity: findType("LedgerEntity*"), legacy_ListUIState: findType("ListUIState*"), legacy_List_dynamic: findType("List<@>*"), legacy_List_legacy_ChartDataGroup: findType("List*"), legacy_List_legacy_ClientEntity: findType("List*"), legacy_List_legacy_CompanyGatewayEntity: findType("List*"), legacy_List_legacy_DesignEntity: findType("List*"), legacy_List_legacy_DocumentEntity: findType("List*"), legacy_List_legacy_ExpenseCategoryEntity: findType("List*"), legacy_List_legacy_ExpenseEntity: findType("List*"), legacy_List_legacy_GatewayTokenEntity: findType("List*"), legacy_List_legacy_GroupEntity: findType("List*"), legacy_List_legacy_InvoiceEntity: findType("List*"), legacy_List_legacy_List_legacy_String: findType("List*>*"), legacy_List_legacy_PaymentEntity: findType("List*"), legacy_List_legacy_PaymentTermEntity: findType("List*"), legacy_List_legacy_ProductEntity: findType("List*"), legacy_List_legacy_ProjectEntity: findType("List*"), legacy_List_legacy_String: findType("List*"), legacy_List_legacy_SubscriptionEntity: findType("List*"), legacy_List_legacy_TaskEntity: findType("List*"), legacy_List_legacy_TaskStatusEntity: findType("List*"), legacy_List_legacy_TaxRateEntity: findType("List*"), legacy_List_legacy_TokenEntity: findType("List*"), legacy_List_legacy_UserEntity: findType("List*"), legacy_List_legacy_VendorEntity: findType("List*"), legacy_List_legacy_WebhookEntity: findType("List*"), legacy_LoadAccountSuccess: findType("LoadAccountSuccess*"), legacy_LoadClient: findType("LoadClient*"), legacy_LoadClients: findType("LoadClients*"), legacy_LoadCompanyGateway: findType("LoadCompanyGateway*"), legacy_LoadCompanyGateways: findType("LoadCompanyGateways*"), legacy_LoadCompanySuccess: findType("LoadCompanySuccess*"), legacy_LoadCredit: findType("LoadCredit*"), legacy_LoadCredits: findType("LoadCredits*"), legacy_LoadDesign: findType("LoadDesign*"), legacy_LoadDesigns: findType("LoadDesigns*"), legacy_LoadDocument: findType("LoadDocument*"), legacy_LoadDocuments: findType("LoadDocuments*"), legacy_LoadExpense: findType("LoadExpense*"), legacy_LoadExpenseCategories: findType("LoadExpenseCategories*"), legacy_LoadExpenseCategory: findType("LoadExpenseCategory*"), legacy_LoadExpenses: findType("LoadExpenses*"), legacy_LoadGroup: findType("LoadGroup*"), legacy_LoadGroups: findType("LoadGroups*"), legacy_LoadInvoice: findType("LoadInvoice*"), legacy_LoadInvoices: findType("LoadInvoices*"), legacy_LoadPayment: findType("LoadPayment*"), legacy_LoadPaymentTerm: findType("LoadPaymentTerm*"), legacy_LoadPaymentTerms: findType("LoadPaymentTerms*"), legacy_LoadPayments: findType("LoadPayments*"), legacy_LoadProduct: findType("LoadProduct*"), legacy_LoadProducts: findType("LoadProducts*"), legacy_LoadProject: findType("LoadProject*"), legacy_LoadProjects: findType("LoadProjects*"), legacy_LoadQuote: findType("LoadQuote*"), legacy_LoadQuotes: findType("LoadQuotes*"), legacy_LoadRecurringExpense: findType("LoadRecurringExpense*"), legacy_LoadRecurringExpenses: findType("LoadRecurringExpenses*"), legacy_LoadRecurringInvoice: findType("LoadRecurringInvoice*"), legacy_LoadRecurringInvoices: findType("LoadRecurringInvoices*"), legacy_LoadStateRequest: findType("LoadStateRequest*"), legacy_LoadSubscription: findType("LoadSubscription*"), legacy_LoadSubscriptions: findType("LoadSubscriptions*"), legacy_LoadTask: findType("LoadTask*"), legacy_LoadTaskStatus: findType("LoadTaskStatus*"), legacy_LoadTaskStatuses: findType("LoadTaskStatuses*"), legacy_LoadTasks: findType("LoadTasks*"), legacy_LoadTaxRate: findType("LoadTaxRate*"), legacy_LoadTaxRates: findType("LoadTaxRates*"), legacy_LoadToken: findType("LoadToken*"), legacy_LoadTokens: findType("LoadTokens*"), legacy_LoadUser: findType("LoadUser*"), legacy_LoadUsers: findType("LoadUsers*"), legacy_LoadVendor: findType("LoadVendor*"), legacy_LoadVendors: findType("LoadVendors*"), legacy_LoadWebhook: findType("LoadWebhook*"), legacy_LoadWebhooks: findType("LoadWebhooks*"), legacy_LocalizationSettingsVM: findType("LocalizationSettingsVM*"), legacy_LogicalKeySet: findType("LogicalKeySet*"), legacy_LoginResponse: findType("LoginResponse*"), legacy_LoginVM: findType("LoginVM*"), legacy_Map_dynamic_dynamic: findType("Map<@,@>*"), legacy_Map_of_legacy_String_and_dynamic: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_String: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_TextEditingController: findType("Map*"), legacy_Map_of_legacy_String_and_legacy_double: findType("Map*"), legacy_Map_of_legacy_int_and_legacy_String: findType("Map*"), legacy_MarkInvoicesPaidRequest: findType("MarkInvoicesPaidRequest*"), legacy_MarkInvoicesSentRequest: findType("MarkInvoicesSentRequest*"), legacy_MarkSentCreditRequest: findType("MarkSentCreditRequest*"), legacy_MarkSentQuotesRequest: findType("MarkSentQuotesRequest*"), legacy_MediaQuery: findType("MediaQuery*"), legacy_MenuDrawerVM: findType("MenuDrawerVM*"), legacy_MessageDialog: findType("MessageDialog*"), legacy_ModuleLayout: findType("ModuleLayout*"), legacy_MultipartFile: findType("MultipartFile*"), legacy_Never: findType("0&*"), legacy_OAuthLoginRequest: findType("OAuthLoginRequest*"), legacy_OAuthSignUpRequest: findType("OAuthSignUpRequest*"), legacy_Object: findType("Object*"), legacy_OnlinePaymentsVM: findType("OnlinePaymentsVM*"), legacy_Padding: findType("Padding*"), legacy_PageTransitionsBuilder: findType("PageTransitionsBuilder*"), legacy_PaymentEditScreen: findType("PaymentEditScreen*"), legacy_PaymentEditVM: findType("PaymentEditVM*"), legacy_PaymentEntity: findType("PaymentEntity*"), legacy_PaymentItemResponse: findType("PaymentItemResponse*"), legacy_PaymentListResponse: findType("PaymentListResponse*"), legacy_PaymentListVM: findType("PaymentListVM*"), legacy_PaymentRefundScreen: findType("PaymentRefundScreen*"), legacy_PaymentRefundVM: findType("PaymentRefundVM*"), legacy_PaymentReportFields: findType("PaymentReportFields*"), legacy_PaymentScreenVM: findType("PaymentScreenVM*"), legacy_PaymentState: findType("PaymentState*"), legacy_PaymentTermEditVM: findType("PaymentTermEditVM*"), legacy_PaymentTermEntity: findType("PaymentTermEntity*"), legacy_PaymentTermItemResponse: findType("PaymentTermItemResponse*"), legacy_PaymentTermListResponse: findType("PaymentTermListResponse*"), legacy_PaymentTermListVM: findType("PaymentTermListVM*"), legacy_PaymentTermScreenVM: findType("PaymentTermScreenVM*"), legacy_PaymentTermState: findType("PaymentTermState*"), legacy_PaymentTermUIState: findType("PaymentTermUIState*"), legacy_PaymentTermViewVM: findType("PaymentTermViewVM*"), legacy_PaymentTypeEntity: findType("PaymentTypeEntity*"), legacy_PaymentUIState: findType("PaymentUIState*"), legacy_PaymentViewVM: findType("PaymentViewVM*"), legacy_PaymentableEntity: findType("PaymentableEntity*"), legacy_PersistData: findType("PersistData*"), legacy_PersistPrefs: findType("PersistPrefs*"), legacy_PersistStatic: findType("PersistStatic*"), legacy_PersistUI: findType("PersistUI*"), legacy_PopupMenuEntry_legacy_String: findType("PopupMenuEntry*"), legacy_PopupMenuItem_legacy_DateRange: findType("PopupMenuItem*"), legacy_PopupMenuItem_legacy_String: findType("PopupMenuItem*"), legacy_PreImportResponse: findType("PreImportResponse*"), legacy_PreImportResponseEntityDetails: findType("PreImportResponseEntityDetails*"), legacy_PrefState: findType("PrefState*"), legacy_PrefStateSortField: findType("PrefStateSortField*"), legacy_PreviewEntity: findType("PreviewEntity*"), legacy_ProductEditVM: findType("ProductEditVM*"), legacy_ProductEntity: findType("ProductEntity*"), legacy_ProductItemResponse: findType("ProductItemResponse*"), legacy_ProductListResponse: findType("ProductListResponse*"), legacy_ProductListVM: findType("ProductListVM*"), legacy_ProductReportFields: findType("ProductReportFields*"), legacy_ProductScreenVM: findType("ProductScreenVM*"), legacy_ProductSettingsVM: findType("ProductSettingsVM*"), legacy_ProductState: findType("ProductState*"), legacy_ProductUIState: findType("ProductUIState*"), legacy_ProductViewVM: findType("ProductViewVM*"), legacy_ProfitAndLossReportFields: findType("ProfitAndLossReportFields*"), legacy_ProgressEvent: findType("ProgressEvent*"), legacy_ProjectEditVM: findType("ProjectEditVM*"), legacy_ProjectEntity: findType("ProjectEntity*"), legacy_ProjectItemResponse: findType("ProjectItemResponse*"), legacy_ProjectListResponse: findType("ProjectListResponse*"), legacy_ProjectListVM: findType("ProjectListVM*"), legacy_ProjectScreenVM: findType("ProjectScreenVM*"), legacy_ProjectState: findType("ProjectState*"), legacy_ProjectUIState: findType("ProjectUIState*"), legacy_ProjectViewVM: findType("ProjectViewVM*"), legacy_PurgeDataRequest: findType("PurgeDataRequest*"), legacy_QuoteEditDetailsVM: findType("QuoteEditDetailsVM*"), legacy_QuoteEditItemsVM: findType("QuoteEditItemsVM*"), legacy_QuoteEditNotesVM: findType("QuoteEditNotesVM*"), legacy_QuoteEditPDFVM: findType("QuoteEditPDFVM*"), legacy_QuoteEditVM: findType("QuoteEditVM*"), legacy_QuoteItemReportFields: findType("QuoteItemReportFields*"), legacy_QuoteListVM: findType("QuoteListVM*"), legacy_QuotePdfVM: findType("QuotePdfVM*"), legacy_QuoteReportFields: findType("QuoteReportFields*"), legacy_QuoteScreenVM: findType("QuoteScreenVM*"), legacy_QuoteState: findType("QuoteState*"), legacy_QuoteUIState: findType("QuoteUIState*"), legacy_QuoteViewVM: findType("QuoteViewVM*"), legacy_RecoverPasswordRequest: findType("RecoverPasswordRequest*"), legacy_RecurringExpenseEditVM: findType("RecurringExpenseEditVM*"), legacy_RecurringExpenseListVM: findType("RecurringExpenseListVM*"), legacy_RecurringExpenseScreenVM: findType("RecurringExpenseScreenVM*"), legacy_RecurringExpenseState: findType("RecurringExpenseState*"), legacy_RecurringExpenseUIState: findType("RecurringExpenseUIState*"), legacy_RecurringExpenseViewVM: findType("RecurringExpenseViewVM*"), legacy_RecurringInvoiceEditDetailsVM: findType("RecurringInvoiceEditDetailsVM*"), legacy_RecurringInvoiceEditItemsVM: findType("RecurringInvoiceEditItemsVM*"), legacy_RecurringInvoiceEditNotesVM: findType("RecurringInvoiceEditNotesVM*"), legacy_RecurringInvoiceEditPDFVM: findType("RecurringInvoiceEditPDFVM*"), legacy_RecurringInvoiceEditVM: findType("RecurringInvoiceEditVM*"), legacy_RecurringInvoiceListVM: findType("RecurringInvoiceListVM*"), legacy_RecurringInvoicePdfVM: findType("RecurringInvoicePdfVM*"), legacy_RecurringInvoiceScreenVM: findType("RecurringInvoiceScreenVM*"), legacy_RecurringInvoiceState: findType("RecurringInvoiceState*"), legacy_RecurringInvoiceUIState: findType("RecurringInvoiceUIState*"), legacy_RecurringInvoiceViewVM: findType("RecurringInvoiceViewVM*"), legacy_RefreshData: findType("RefreshData*"), legacy_RefreshDataSuccess: findType("RefreshDataSuccess*"), legacy_RefundPaymentRequest: findType("RefundPaymentRequest*"), legacy_RegistrationFieldEntity: findType("RegistrationFieldEntity*"), legacy_RemoveUserRequest: findType("RemoveUserRequest*"), legacy_ReportResult: findType("ReportResult*"), legacy_ReportSettingsEntity: findType("ReportSettingsEntity*"), legacy_ReportsScreenVM: findType("ReportsScreenVM*"), legacy_ReportsUIState: findType("ReportsUIState*"), legacy_ResendConfirmation: findType("ResendConfirmation*"), legacy_ResendInviteRequest: findType("ResendInviteRequest*"), legacy_Response: findType("Response*"), legacy_ResponsivePadding: findType("ResponsivePadding*"), legacy_RestoreClientsRequest: findType("RestoreClientsRequest*"), legacy_RestoreCompanyGatewayRequest: findType("RestoreCompanyGatewayRequest*"), legacy_RestoreCreditsRequest: findType("RestoreCreditsRequest*"), legacy_RestoreDesignsRequest: findType("RestoreDesignsRequest*"), legacy_RestoreDocumentRequest: findType("RestoreDocumentRequest*"), legacy_RestoreExpenseCategoriesRequest: findType("RestoreExpenseCategoriesRequest*"), legacy_RestoreExpenseRequest: findType("RestoreExpenseRequest*"), legacy_RestoreGroupRequest: findType("RestoreGroupRequest*"), legacy_RestoreInvoicesRequest: findType("RestoreInvoicesRequest*"), legacy_RestorePaymentTermsRequest: findType("RestorePaymentTermsRequest*"), legacy_RestorePaymentsRequest: findType("RestorePaymentsRequest*"), legacy_RestoreProductsRequest: findType("RestoreProductsRequest*"), legacy_RestoreProjectRequest: findType("RestoreProjectRequest*"), legacy_RestoreQuotesRequest: findType("RestoreQuotesRequest*"), legacy_RestoreRecurringExpensesRequest: findType("RestoreRecurringExpensesRequest*"), legacy_RestoreRecurringInvoicesRequest: findType("RestoreRecurringInvoicesRequest*"), legacy_RestoreSubscriptionsRequest: findType("RestoreSubscriptionsRequest*"), legacy_RestoreTaskRequest: findType("RestoreTaskRequest*"), legacy_RestoreTaskStatusesRequest: findType("RestoreTaskStatusesRequest*"), legacy_RestoreTaxRateRequest: findType("RestoreTaxRateRequest*"), legacy_RestoreTokensRequest: findType("RestoreTokensRequest*"), legacy_RestoreUserRequest: findType("RestoreUserRequest*"), legacy_RestoreVendorRequest: findType("RestoreVendorRequest*"), legacy_RestoreWebhooksRequest: findType("RestoreWebhooksRequest*"), legacy_ReverseInvoicesRequest: findType("ReverseInvoicesRequest*"), legacy_SaveAuthUserRequest: findType("SaveAuthUserRequest*"), legacy_SaveClientDocumentRequest: findType("SaveClientDocumentRequest*"), legacy_SaveClientRequest: findType("SaveClientRequest*"), legacy_SaveCompanyDocumentRequest: findType("SaveCompanyDocumentRequest*"), legacy_SaveCompanyGatewayRequest: findType("SaveCompanyGatewayRequest*"), legacy_SaveCompanyRequest: findType("SaveCompanyRequest*"), legacy_SaveCreditDocumentRequest: findType("SaveCreditDocumentRequest*"), legacy_SaveCreditRequest: findType("SaveCreditRequest*"), legacy_SaveDesignRequest: findType("SaveDesignRequest*"), legacy_SaveExpenseCategoryRequest: findType("SaveExpenseCategoryRequest*"), legacy_SaveExpenseDocumentRequest: findType("SaveExpenseDocumentRequest*"), legacy_SaveExpenseRequest: findType("SaveExpenseRequest*"), legacy_SaveGroupDocumentRequest: findType("SaveGroupDocumentRequest*"), legacy_SaveGroupRequest: findType("SaveGroupRequest*"), legacy_SaveInvoiceDocumentRequest: findType("SaveInvoiceDocumentRequest*"), legacy_SaveInvoiceRequest: findType("SaveInvoiceRequest*"), legacy_SavePaymentRequest: findType("SavePaymentRequest*"), legacy_SavePaymentTermRequest: findType("SavePaymentTermRequest*"), legacy_SaveProductDocumentRequest: findType("SaveProductDocumentRequest*"), legacy_SaveProductRequest: findType("SaveProductRequest*"), legacy_SaveProjectDocumentRequest: findType("SaveProjectDocumentRequest*"), legacy_SaveProjectRequest: findType("SaveProjectRequest*"), legacy_SaveQuoteDocumentRequest: findType("SaveQuoteDocumentRequest*"), legacy_SaveQuoteRequest: findType("SaveQuoteRequest*"), legacy_SaveRecurringExpenseDocumentRequest: findType("SaveRecurringExpenseDocumentRequest*"), legacy_SaveRecurringExpenseRequest: findType("SaveRecurringExpenseRequest*"), legacy_SaveRecurringInvoiceDocumentRequest: findType("SaveRecurringInvoiceDocumentRequest*"), legacy_SaveRecurringInvoiceRequest: findType("SaveRecurringInvoiceRequest*"), legacy_SaveSubscriptionRequest: findType("SaveSubscriptionRequest*"), legacy_SaveTaskDocumentRequest: findType("SaveTaskDocumentRequest*"), legacy_SaveTaskRequest: findType("SaveTaskRequest*"), legacy_SaveTaskStatusRequest: findType("SaveTaskStatusRequest*"), legacy_SaveTaxRateRequest: findType("SaveTaxRateRequest*"), legacy_SaveTokenRequest: findType("SaveTokenRequest*"), legacy_SaveUserRequest: findType("SaveUserRequest*"), legacy_SaveUserSettingsRequest: findType("SaveUserSettingsRequest*"), legacy_SaveVendorDocumentRequest: findType("SaveVendorDocumentRequest*"), legacy_SaveVendorRequest: findType("SaveVendorRequest*"), legacy_SaveWebhookRequest: findType("SaveWebhookRequest*"), legacy_SelectCompany: findType("SelectCompany*"), legacy_SelectableEntity: findType("SelectableEntity*"), legacy_SelectionState: findType("SelectionState*"), legacy_SetDefaultCompanyRequest: findType("SetDefaultCompanyRequest*"), legacy_Set_void: findType("Set<~>*"), legacy_SettingsEntity: findType("SettingsEntity*"), legacy_SettingsListVM: findType("SettingsListVM*"), legacy_SettingsScreenVM: findType("SettingsScreenVM*"), legacy_SettingsUIState: findType("SettingsUIState*"), legacy_ShowEmailCredit: findType("ShowEmailCredit*"), legacy_ShowEmailInvoice: findType("ShowEmailInvoice*"), legacy_ShowEmailQuote: findType("ShowEmailQuote*"), legacy_ShowPdfClient: findType("ShowPdfClient*"), legacy_ShowPdfCredit: findType("ShowPdfCredit*"), legacy_ShowPdfInvoice: findType("ShowPdfInvoice*"), legacy_ShowPdfQuote: findType("ShowPdfQuote*"), legacy_ShowPdfRecurringInvoice: findType("ShowPdfRecurringInvoice*"), legacy_SimpleDialog: findType("SimpleDialog*"), legacy_SizeEntity: findType("SizeEntity*"), legacy_SortTasksRequest: findType("SortTasksRequest*"), legacy_StartRecurringExpensesRequest: findType("StartRecurringExpensesRequest*"), legacy_StartRecurringInvoicesRequest: findType("StartRecurringInvoicesRequest*"), legacy_StaticDataEntity: findType("StaticDataEntity*"), legacy_StaticState: findType("StaticState*"), legacy_StopRecurringExpensesRequest: findType("StopRecurringExpensesRequest*"), legacy_StopRecurringInvoicesRequest: findType("StopRecurringInvoicesRequest*"), legacy_StoreConnector_dynamic_dynamic: findType("StoreConnector<@,@>*"), legacy_String: findType("String*"), legacy_SubscriptionEditVM: findType("SubscriptionEditVM*"), legacy_SubscriptionEntity: findType("SubscriptionEntity*"), legacy_SubscriptionItemResponse: findType("SubscriptionItemResponse*"), legacy_SubscriptionListResponse: findType("SubscriptionListResponse*"), legacy_SubscriptionListVM: findType("SubscriptionListVM*"), legacy_SubscriptionScreenVM: findType("SubscriptionScreenVM*"), legacy_SubscriptionState: findType("SubscriptionState*"), legacy_SubscriptionUIState: findType("SubscriptionUIState*"), legacy_SubscriptionViewVM: findType("SubscriptionViewVM*"), legacy_SwitchListTile: findType("SwitchListTile*"), legacy_SystemLogEntity: findType("SystemLogEntity*"), legacy_TableCellParentData: findType("TableCellParentData*"), legacy_TableColumnWidth: findType("TableColumnWidth*"), legacy_TableRow: findType("TableRow*"), legacy_TargetPlatform: findType("TargetPlatform*"), legacy_TaskEditDetailsVM: findType("TaskEditDetailsVM*"), legacy_TaskEditTimesVM: findType("TaskEditTimesVM*"), legacy_TaskEditVM: findType("TaskEditVM*"), legacy_TaskEntity: findType("TaskEntity*"), legacy_TaskItemResponse: findType("TaskItemResponse*"), legacy_TaskListResponse: findType("TaskListResponse*"), legacy_TaskListVM: findType("TaskListVM*"), legacy_TaskReportFields: findType("TaskReportFields*"), legacy_TaskScreenVM: findType("TaskScreenVM*"), legacy_TaskSettingsVM: findType("TaskSettingsVM*"), legacy_TaskState: findType("TaskState*"), legacy_TaskStatusEditVM: findType("TaskStatusEditVM*"), legacy_TaskStatusEntity: findType("TaskStatusEntity*"), legacy_TaskStatusItemResponse: findType("TaskStatusItemResponse*"), legacy_TaskStatusListResponse: findType("TaskStatusListResponse*"), legacy_TaskStatusListVM: findType("TaskStatusListVM*"), legacy_TaskStatusScreenVM: findType("TaskStatusScreenVM*"), legacy_TaskStatusState: findType("TaskStatusState*"), legacy_TaskStatusUIState: findType("TaskStatusUIState*"), legacy_TaskStatusViewVM: findType("TaskStatusViewVM*"), legacy_TaskUIState: findType("TaskUIState*"), legacy_TaskViewVM: findType("TaskViewVM*"), legacy_TaxRateEditVM: findType("TaxRateEditVM*"), legacy_TaxRateEntity: findType("TaxRateEntity*"), legacy_TaxRateItemResponse: findType("TaxRateItemResponse*"), legacy_TaxRateListResponse: findType("TaxRateListResponse*"), legacy_TaxRateListVM: findType("TaxRateListVM*"), legacy_TaxRateReportFields: findType("TaxRateReportFields*"), legacy_TaxRateReportFields_2: findType("TaxRateReportFields0*"), legacy_TaxRateScreenVM: findType("TaxRateScreenVM*"), legacy_TaxRateState: findType("TaxRateState*"), legacy_TaxRateUIState: findType("TaxRateUIState*"), legacy_TaxRateViewVM: findType("TaxRateViewVM*"), legacy_TaxSettingsVM: findType("TaxSettingsVM*"), legacy_TemplateEntity: findType("TemplateEntity*"), legacy_TemplatesAndRemindersVM: findType("TemplatesAndRemindersVM*"), legacy_Text: findType("Text*"), legacy_TextEditingController: findType("TextEditingController*"), legacy_TimezoneEntity: findType("TimezoneEntity*"), legacy_ToastFuture: findType("ToastFuture*"), legacy_TokenEditVM: findType("TokenEditVM*"), legacy_TokenEntity: findType("TokenEntity*"), legacy_TokenItemResponse: findType("TokenItemResponse*"), legacy_TokenListResponse: findType("TokenListResponse*"), legacy_TokenListVM: findType("TokenListVM*"), legacy_TokenScreenVM: findType("TokenScreenVM*"), legacy_TokenState: findType("TokenState*"), legacy_TokenUIState: findType("TokenUIState*"), legacy_TokenViewVM: findType("TokenViewVM*"), legacy_Type: findType("Type*"), legacy_TypeAheadField_dynamic: findType("TypeAheadField<@>*"), legacy_UIState: findType("UIState*"), legacy_UpdateDialog: findType("UpdateDialog*"), legacy_UpdateUserPreferences: findType("UpdateUserPreferences*"), legacy_UploadLogoRequest: findType("UploadLogoRequest*"), legacy_UserCompanyEntity: findType("UserCompanyEntity*"), legacy_UserCompanyItemResponse: findType("UserCompanyItemResponse*"), legacy_UserCompanyState: findType("UserCompanyState*"), legacy_UserDetailsVM: findType("UserDetailsVM*"), legacy_UserEditVM: findType("UserEditVM*"), legacy_UserEntity: findType("UserEntity*"), legacy_UserItemResponse: findType("UserItemResponse*"), legacy_UserListResponse: findType("UserListResponse*"), legacy_UserListVM: findType("UserListVM*"), legacy_UserLoginRequest: findType("UserLoginRequest*"), legacy_UserLoginSuccess: findType("UserLoginSuccess*"), legacy_UserLogout: findType("UserLogout*"), legacy_UserLogoutAll: findType("UserLogoutAll*"), legacy_UserScreenVM: findType("UserScreenVM*"), legacy_UserSettingsEntity: findType("UserSettingsEntity*"), legacy_UserSignUpRequest: findType("UserSignUpRequest*"), legacy_UserState: findType("UserState*"), legacy_UserTwoFactorData: findType("UserTwoFactorData*"), legacy_UserTwoFactorResponse: findType("UserTwoFactorResponse*"), legacy_UserUIState: findType("UserUIState*"), legacy_UserViewVM: findType("UserViewVM*"), legacy_VendorContactEditDetails: findType("VendorContactEditDetails*"), legacy_VendorContactEntity: findType("VendorContactEntity*"), legacy_VendorEditContactsVM: findType("VendorEditContactsVM*"), legacy_VendorEditVM: findType("VendorEditVM*"), legacy_VendorEntity: findType("VendorEntity*"), legacy_VendorItemResponse: findType("VendorItemResponse*"), legacy_VendorListResponse: findType("VendorListResponse*"), legacy_VendorListVM: findType("VendorListVM*"), legacy_VendorScreenVM: findType("VendorScreenVM*"), legacy_VendorState: findType("VendorState*"), legacy_VendorUIState: findType("VendorUIState*"), legacy_VendorViewVM: findType("VendorViewVM*"), legacy_ViewClient: findType("ViewClient*"), legacy_ViewClientList: findType("ViewClientList*"), legacy_ViewCompanyGateway: findType("ViewCompanyGateway*"), legacy_ViewCompanyGatewayList: findType("ViewCompanyGatewayList*"), legacy_ViewCredit: findType("ViewCredit*"), legacy_ViewCreditList: findType("ViewCreditList*"), legacy_ViewDashboard: findType("ViewDashboard*"), legacy_ViewDesign: findType("ViewDesign*"), legacy_ViewDesignList: findType("ViewDesignList*"), legacy_ViewDocument: findType("ViewDocument*"), legacy_ViewDocumentList: findType("ViewDocumentList*"), legacy_ViewExpense: findType("ViewExpense*"), legacy_ViewExpenseCategory: findType("ViewExpenseCategory*"), legacy_ViewExpenseCategoryList: findType("ViewExpenseCategoryList*"), legacy_ViewExpenseList: findType("ViewExpenseList*"), legacy_ViewGroup: findType("ViewGroup*"), legacy_ViewGroupList: findType("ViewGroupList*"), legacy_ViewInvoice: findType("ViewInvoice*"), legacy_ViewInvoiceList: findType("ViewInvoiceList*"), legacy_ViewMainScreen: findType("ViewMainScreen*"), legacy_ViewPaymentList: findType("ViewPaymentList*"), legacy_ViewPaymentTerm: findType("ViewPaymentTerm*"), legacy_ViewPaymentTermList: findType("ViewPaymentTermList*"), legacy_ViewProduct: findType("ViewProduct*"), legacy_ViewProductList: findType("ViewProductList*"), legacy_ViewProject: findType("ViewProject*"), legacy_ViewProjectList: findType("ViewProjectList*"), legacy_ViewQuote: findType("ViewQuote*"), legacy_ViewQuoteList: findType("ViewQuoteList*"), legacy_ViewRecurringExpense: findType("ViewRecurringExpense*"), legacy_ViewRecurringExpenseList: findType("ViewRecurringExpenseList*"), legacy_ViewRecurringInvoice: findType("ViewRecurringInvoice*"), legacy_ViewRecurringInvoiceList: findType("ViewRecurringInvoiceList*"), legacy_ViewRefundPayment: findType("ViewRefundPayment*"), legacy_ViewReports: findType("ViewReports*"), legacy_ViewSettings: findType("ViewSettings*"), legacy_ViewSubscription: findType("ViewSubscription*"), legacy_ViewSubscriptionList: findType("ViewSubscriptionList*"), legacy_ViewTask: findType("ViewTask*"), legacy_ViewTaskList: findType("ViewTaskList*"), legacy_ViewTaskStatus: findType("ViewTaskStatus*"), legacy_ViewTaskStatusList: findType("ViewTaskStatusList*"), legacy_ViewTaxRate: findType("ViewTaxRate*"), legacy_ViewTaxRateList: findType("ViewTaxRateList*"), legacy_ViewToken: findType("ViewToken*"), legacy_ViewTokenList: findType("ViewTokenList*"), legacy_ViewUser: findType("ViewUser*"), legacy_ViewUserList: findType("ViewUserList*"), legacy_ViewVendor: findType("ViewVendor*"), legacy_ViewVendorList: findType("ViewVendorList*"), legacy_ViewWebhook: findType("ViewWebhook*"), legacy_ViewWebhookList: findType("ViewWebhookList*"), legacy_WebhookConfigurationEntity: findType("WebhookConfigurationEntity*"), legacy_WebhookEditVM: findType("WebhookEditVM*"), legacy_WebhookEntity: findType("WebhookEntity*"), legacy_WebhookItemResponse: findType("WebhookItemResponse*"), legacy_WebhookListResponse: findType("WebhookListResponse*"), legacy_WebhookListVM: findType("WebhookListVM*"), legacy_WebhookScreenVM: findType("WebhookScreenVM*"), legacy_WebhookState: findType("WebhookState*"), legacy_WebhookUIState: findType("WebhookUIState*"), legacy_WebhookViewVM: findType("WebhookViewVM*"), legacy_Widget: findType("Widget*"), legacy_WorkflowSettingsVM: findType("WorkflowSettingsVM*"), legacy__ContactListTile: findType("_ContactListTile*"), legacy__InvitationListTile: findType("_InvitationListTile*"), legacy_bool: findType("bool*"), legacy_double: findType("double*"), legacy_int: findType("int*"), legacy_legacy_Widget_Function_legacy_BuildContext: findType("Widget*(BuildContext*)*"), legacy_num: findType("num*"), nullable_AlignmentGeometryTween: findType("AlignmentGeometryTween?"), nullable_AppLocalization: findType("AppLocalization?"), nullable_Axis_Object: findType("Axis?"), nullable_Axis_num: findType("Axis?"), nullable_BitmapCanvas: findType("BitmapCanvas?"), nullable_Border: findType("Border?"), nullable_BorderDirectional: findType("BorderDirectional?"), nullable_BorderRadius: findType("BorderRadius?"), nullable_BorderRadiusTween: findType("BorderRadiusTween?"), nullable_BorderSide: findType("BorderSide?"), nullable_BoxConstraintsTween: findType("BoxConstraintsTween?"), nullable_BoxPainter: findType("BoxPainter?"), nullable_ByteData: findType("ByteData?"), nullable_CacheObject: findType("CacheObject?"), nullable_CanvasRenderingContext2D: findType("CanvasRenderingContext2D?"), nullable_ChartContainerCustomPaint: findType("ChartContainerCustomPaint?"), nullable_CkPaint: findType("CkPaint?"), nullable_CkShader: findType("CkShader?"), nullable_ClipPathEngineLayer: findType("ClipPathEngineLayer0?"), nullable_ClipPathLayer: findType("ClipPathLayer?"), nullable_ClipRRectEngineLayer: findType("ClipRRectEngineLayer0?"), nullable_ClipRRectLayer: findType("ClipRRectLayer?"), nullable_ClipRectEngineLayer: findType("ClipRectEngineLayer0?"), nullable_ClipRectLayer: findType("ClipRectLayer?"), nullable_ClipboardData: findType("ClipboardData?"), nullable_Clock: findType("Clock?"), nullable_Color: findType("Color?"), nullable_ColorTween: findType("ColorTween?"), nullable_ContainerLayer: findType("ContainerLayer0?"), nullable_DataRow: findType("DataRow?"), nullable_DateTime: findType("DateTime?"), nullable_DecorationTween: findType("DecorationTween?"), nullable_DiagnosticsNode: findType("DiagnosticsNode?"), nullable_Directionality: findType("Directionality?"), nullable_DirectoryNode: findType("DirectoryNode?"), nullable_EdgeInsetsGeometry: findType("EdgeInsetsGeometry?"), nullable_EdgeInsetsGeometryTween: findType("EdgeInsetsGeometryTween?"), nullable_Element: findType("Element0?"), nullable_Element_2: findType("Element?"), nullable_FileInfo: findType("FileInfo?"), nullable_FilePickerResult: findType("FilePickerResult?"), nullable_FocusNode: findType("FocusNode?"), nullable_FollowerLayer: findType("FollowerLayer?"), nullable_Future_Null: findType("Future?"), nullable_GoogleSignInAccount: findType("GoogleSignInAccount?"), nullable_GoogleSignInUserData: findType("GoogleSignInUserData?"), nullable_HeroControllerScope: findType("HeroControllerScope?"), nullable_HorizontalDragGestureRecognizer: findType("HorizontalDragGestureRecognizer?"), nullable_InkHighlight: findType("InkHighlight?"), nullable_Key: findType("Key?"), nullable_List_BaseBarRendererElement: findType("List?"), nullable_List__LineRendererElement_Object: findType("List<_LineRendererElement>?"), nullable_List_double: findType("List?"), nullable_List_dynamic: findType("List<@>?"), nullable_List_int: findType("List?"), nullable_LongPressGestureRecognizer: findType("LongPressGestureRecognizer?"), nullable_Map_dynamic_dynamic: findType("Map<@,@>?"), nullable_Map_of_String_and_List_String: findType("Map>?"), nullable_Map_of_nullable_Object_and_nullable_Object: findType("Map?"), nullable_MaterialLocalizations: findType("MaterialLocalizations?"), nullable_Matrix4: findType("Matrix4?"), nullable_Matrix4Tween: findType("Matrix4Tween?"), nullable_MetaElement: findType("MetaElement?"), nullable_MouseCursor: findType("MouseCursor0?"), nullable_Node: findType("Node?"), nullable_Object: findType("Object?"), nullable_Offset: findType("Offset?"), nullable_OffsetEngineLayer: findType("OffsetEngineLayer0?"), nullable_OffsetLayer: findType("OffsetLayer?"), nullable_OpacityEngineLayer: findType("OpacityEngineLayer0?"), nullable_OpacityLayer: findType("OpacityLayer?"), nullable_OutlinedBorder: findType("OutlinedBorder?"), nullable_PanGestureRecognizer: findType("PanGestureRecognizer?"), nullable_ParentDataElement_KeepAliveParentDataMixin: findType("ParentDataElement?"), nullable_PdfPageImage: findType("PdfPageImage?"), nullable_PersistedClipPath: findType("PersistedClipPath?"), nullable_PersistedClipRect: findType("PersistedClipRect?"), nullable_PersistedOffset: findType("PersistedOffset?"), nullable_PersistedOpacity: findType("PersistedOpacity?"), nullable_PersistedPhysicalShape: findType("PersistedPhysicalShape?"), nullable_PersistedSurface: findType("PersistedSurface?"), nullable_PersistedTransform: findType("PersistedTransform?"), nullable_PhysicalModelLayer: findType("PhysicalModelLayer?"), nullable_PhysicalShapeEngineLayer: findType("PhysicalShapeEngineLayer0?"), nullable_PipelineOwner: findType("PipelineOwner?"), nullable_Rect: findType("Rect?"), nullable_RenderBox: findType("RenderBox?"), nullable_RenderEditable: findType("RenderEditable?"), nullable_RenderObject: findType("RenderObject?"), nullable_RenderObjectElement: findType("RenderObjectElement?"), nullable_RenderObjectToWidgetElement_RenderBox: findType("RenderObjectToWidgetElement?"), nullable_RenderSemanticsGestureHandler: findType("RenderSemanticsGestureHandler?"), nullable_RenderSliver: findType("RenderSliver?"), nullable_RoleManager: findType("RoleManager?"), nullable_SemanticsNode: findType("SemanticsNode?"), nullable_SemanticsOwner: findType("SemanticsOwner?"), nullable_SeriesRenderer_Object: findType("SeriesRenderer?"), nullable_ShapeBorder: findType("ShapeBorder?"), nullable_ShapeBorderTween: findType("ShapeBorderTween?"), nullable_ShapeDecoration: findType("ShapeDecoration?"), nullable_Size: findType("Size?"), nullable_SkDeletable: findType("SkDeletable?"), nullable_SliverMultiBoxAdaptorParentData: findType("SliverMultiBoxAdaptorParentData?"), nullable_StatefulElement: findType("StatefulElement?"), nullable_String: findType("String?"), nullable_SurfacePaint: findType("SurfacePaint?"), nullable_TapGestureRecognizer: findType("TapGestureRecognizer?"), nullable_TextStyle: findType("TextStyle?"), nullable_TextStyleTween: findType("TextStyleTween?"), nullable_TimeOfDay: findType("TimeOfDay?"), nullable_TransformEngineLayer: findType("TransformEngineLayer0?"), nullable_TransformLayer: findType("TransformLayer?"), nullable_Tween_double: findType("Tween?"), nullable_Uint8List: findType("Uint8List?"), nullable_Uri: findType("Uri?"), nullable_VerticalDragGestureRecognizer: findType("VerticalDragGestureRecognizer?"), nullable_XFile: findType("XFile?"), nullable__AnimationTuple: findType("_AnimationTuple?"), nullable__FocusTraversalGroupMarker: findType("_FocusTraversalGroupMarker?"), nullable__GlProgram: findType("_GlProgram?"), nullable__Highlight: findType("_Highlight?"), nullable__PointAtTime: findType("_PointAtTime?"), nullable__RegisteredFont: findType("_RegisteredFont?"), nullable__ScrollableScope: findType("_ScrollableScope?"), nullable__TaskEntry_dynamic: findType("_TaskEntry<@>?"), nullable_bool: findType("bool?"), nullable_double: findType("double?"), nullable_int: findType("int?"), num: findType("num"), void: findType("~"), void_Function: findType("~()"), void_Function_AnimationStatus: findType("~(AnimationStatus)"), void_Function_Duration: findType("~(Duration)"), void_Function_FocusHighlightMode: findType("~(FocusHighlightMode)"), void_Function_List_FrameTiming: findType("~(List)"), void_Function_Object: findType("~(Object)"), void_Function_Object_StackTrace: findType("~(Object,StackTrace)"), void_Function_PointerEvent: findType("~(PointerEvent0)"), void_Function_RawKeyEvent: findType("~(RawKeyEvent)"), void_Function_nullable_Object: findType("~(Object?)") }; })(); (function constants() { var makeConstList = hunkHelpers.makeConstList; C.BodyElement_methods = W.BodyElement.prototype; C.CanvasElement_methods = W.CanvasElement.prototype; C.CanvasRenderingContext2D_methods = W.CanvasRenderingContext2D.prototype; C.CssStyleDeclaration_methods = W.CssStyleDeclaration.prototype; C.DivElement_methods = W.DivElement.prototype; C.FileList_methods = W.FileList.prototype; C.FileReader_methods = W.FileReader.prototype; C.FormElement_methods = W.FormElement.prototype; C.HttpRequest_methods = W.HttpRequest.prototype; C.ImageElement_methods = W.ImageElement.prototype; C.InputElement_methods = W.InputElement.prototype; C.Interceptor_methods = J.Interceptor.prototype; C.JSArray_methods = J.JSArray.prototype; C.JSBool_methods = J.JSBool.prototype; C.JSInt_methods = J.JSInt.prototype; C.JSNull_methods = J.JSNull.prototype; C.JSNumber_methods = J.JSNumber.prototype; C.JSString_methods = J.JSString.prototype; C.JavaScriptFunction_methods = J.JavaScriptFunction.prototype; C.LabelElement_methods = W.LabelElement.prototype; C.MediaQueryList_methods = W.MediaQueryList.prototype; C.MetaElement_methods = W.MetaElement.prototype; C.NativeByteBuffer_methods = H.NativeByteBuffer.prototype; C.NativeByteData_methods = H.NativeByteData.prototype; C.NativeFloat32List_methods = H.NativeFloat32List.prototype; C.NativeInt32List_methods = H.NativeInt32List.prototype; C.NativeUint32List_methods = H.NativeUint32List.prototype; C.NativeUint8List_methods = H.NativeUint8List.prototype; C.NodeList_methods = W.NodeList.prototype; C.OffscreenCanvas_methods = W.OffscreenCanvas.prototype; C.ParagraphElement_methods = W.ParagraphElement.prototype; C.PlainJavaScriptObject_methods = J.PlainJavaScriptObject.prototype; C.ScriptElement_methods = W.ScriptElement.prototype; C.Storage_methods = W.Storage.prototype; C.StyleElement_methods = W.StyleElement.prototype; C.SvgSvgElement_methods = P.SvgSvgElement.prototype; C.TableElement_methods = W.TableElement.prototype; C.TouchList_methods = W.TouchList.prototype; C.UnknownJavaScriptObject_methods = J.UnknownJavaScriptObject.prototype; C.WheelEvent_methods = W.WheelEvent.prototype; C.Window_methods = W.Window.prototype; C.AccessibilityMode_0 = new H.AccessibilityMode("AccessibilityMode.unknown"); C.AlignmentDirectional_0_1 = new K.AlignmentDirectional(0, 1); C.AlignmentDirectional_1_0 = new K.AlignmentDirectional(1, 0); C.AlignmentDirectional_1_m1 = new K.AlignmentDirectional(1, -1); C.AlignmentDirectional_m1_0 = new K.AlignmentDirectional(-1, 0); C.AlignmentDirectional_m1_m1 = new K.AlignmentDirectional(-1, -1); C.Alignment_0_0 = new K.Alignment(0, 0); C.Alignment_0_1 = new K.Alignment(0, 1); C.Alignment_0_m1 = new K.Alignment(0, -1); C.Alignment_1_0 = new K.Alignment(1, 0); C.Alignment_1_1 = new K.Alignment(1, 1); C.Alignment_1_m1 = new K.Alignment(1, -1); C.Alignment_m1_0 = new K.Alignment(-1, 0); C.Alignment_m1_1 = new K.Alignment(-1, 1); C.Alignment_m1_m1 = new K.Alignment(-1, -1); C.AlwaysScrollableScrollPhysics_null = new L.AlwaysScrollableScrollPhysics(null); C.AnimationBehavior_0 = new G.AnimationBehavior("AnimationBehavior.normal"); C.AnimationBehavior_1 = new G.AnimationBehavior("AnimationBehavior.preserve"); C.AnimationDirection_0 = new F.AnimationDirection("AnimationDirection.forward"); C.AnimationDirection_1 = new F.AnimationDirection("AnimationDirection.reverse"); C.AnimationStatus_0 = new X.AnimationStatus("AnimationStatus.dismissed"); C.AnimationStatus_1 = new X.AnimationStatus("AnimationStatus.forward"); C.AnimationStatus_2 = new X.AnimationStatus("AnimationStatus.reverse"); C.AnimationStatus_3 = new X.AnimationStatus("AnimationStatus.completed"); C.AppBarTheme_IEl = new V.AppBarTheme(null, null, null, null, null, null, null, null, null, null, null, null, null, null); C.AppLayout_desktop = new X.AppLayout("desktop"); C.AppLayout_mobile = new X.AppLayout("mobile"); C.AppLifecycleState_0 = new P.AppLifecycleState("AppLifecycleState.resumed"); C.AppLifecycleState_1 = new P.AppLifecycleState("AppLifecycleState.inactive"); C.AppLifecycleState_2 = new P.AppLifecycleState("AppLifecycleState.paused"); C.AppLifecycleState_3 = new P.AppLifecycleState("AppLifecycleState.detached"); C.AppSidebarMode_collapse = new X.AppSidebarMode("collapse"); C.AppSidebarMode_float = new X.AppSidebarMode("float"); C.AppSidebarMode_visible = new X.AppSidebarMode("visible"); C.AppSidebar_history = new X.AppSidebar("history"); C.AppSidebar_menu = new X.AppSidebar("menu"); C.AsciiDecoder_false_127 = new P.AsciiDecoder(false, 127); C.AsciiEncoder_127 = new P.AsciiEncoder(127); C.AttributeKey_2Sa = new F.AttributeKey("BarRenderer.barGroupIndex", type$.AttributeKey_legacy_int); C.AttributeKey_8Tg = new F.AttributeKey("BarRenderer.barGroupCount", type$.AttributeKey_legacy_int); C.AttributeKey_Bwd = new F.AttributeKey("Axis.measureAxisId", type$.AttributeKey_legacy_String); C.AttributeKey_Db0 = new F.AttributeKey("BarRenderer.stackKey", type$.AttributeKey_legacy_String); C.AttributeKey_Ex1 = new F.AttributeKey("LineRenderer.styleSegments", H.findType("AttributeKey*>*>")); C.AttributeKey_I4y = new F.AttributeKey("SeriesRenderer.renderer", H.findType("AttributeKey*>")); C.AttributeKey_MYA = new F.AttributeKey("LineRenderer.lineStackIndex", type$.AttributeKey_legacy_int); C.AttributeKey_OBU = new F.AttributeKey("Axis.domainAxis", type$.AttributeKey_legacy_Axis_legacy_Object); C.AttributeKey_Ubu = new F.AttributeKey("BarRenderer.allBarGroupWeights", H.findType("AttributeKey*>")); C.AttributeKey_YGG = new F.AttributeKey("BarRenderer.previousBarGroupWeight", type$.AttributeKey_legacy_double); C.AttributeKey_esd = new F.AttributeKey("BarRenderer.barGroupWeight", type$.AttributeKey_legacy_double); C.AttributeKey_kKQ = new F.AttributeKey("SeriesRenderer.rendererId", type$.AttributeKey_legacy_String); C.AttributeKey_kWM = new F.AttributeKey("Axis.measureAxis", type$.AttributeKey_legacy_Axis_legacy_Object); C.AttributeKey_vl2 = new F.AttributeKey("BarRenderer.elements", H.findType("AttributeKey*>")); C.AutofillContextAction_0 = new F.AutofillContextAction("AutofillContextAction.commit"); C.AutofillContextAction_1 = new F.AutofillContextAction("AutofillContextAction.cancel"); C.AutovalidateMode_0 = new A.AutovalidateMode("AutovalidateMode.disabled"); C.AutovalidateMode_1 = new A.AutovalidateMode("AutovalidateMode.always"); C.AutovalidateMode_2 = new A.AutovalidateMode("AutovalidateMode.onUserInteraction"); C.AxisDirection_0 = new G.AxisDirection("AxisDirection.up"); C.AxisDirection_1 = new G.AxisDirection("AxisDirection.right"); C.AxisDirection_2 = new G.AxisDirection("AxisDirection.down"); C.AxisDirection_3 = new G.AxisDirection("AxisDirection.left"); C.AxisOrientation_0 = new M.AxisOrientation("AxisOrientation.top"); C.AxisOrientation_1 = new M.AxisOrientation("AxisOrientation.right"); C.AxisOrientation_2 = new M.AxisOrientation("AxisOrientation.bottom"); C.AxisOrientation_3 = new M.AxisOrientation("AxisOrientation.left"); C.Axis_0 = new G.Axis0("Axis.horizontal"); C.Axis_1 = new G.Axis0("Axis.vertical"); C.BackButtonIcon_null = new R.BackButtonIcon(null); C.BackButton_null_null = new R.BackButton(null, null); C.BarGroupingType_0 = new A.BarGroupingType("BarGroupingType.grouped"); C.BarGroupingType_1 = new A.BarGroupingType("BarGroupingType.groupedStacked"); C.BarGroupingType_2 = new A.BarGroupingType("BarGroupingType.stacked"); C.C_StandardMessageCodec = new U.StandardMessageCodec0(); C.BasicMessageChannel_8hp = new A.BasicMessageChannel("flutter/accessibility", C.C_StandardMessageCodec, type$.BasicMessageChannel_dynamic); C.C_JSONMessageCodec0 = new U.JSONMessageCodec0(); C.BasicMessageChannel_Cfi = new A.BasicMessageChannel("flutter/keyevent", C.C_JSONMessageCodec0, type$.BasicMessageChannel_dynamic); C.C_StringCodec = new U.StringCodec(); C.BasicMessageChannel_No7 = new A.BasicMessageChannel("flutter/lifecycle", C.C_StringCodec, H.findType("BasicMessageChannel")); C.BasicMessageChannel_Qma = new A.BasicMessageChannel("flutter/system", C.C_JSONMessageCodec0, type$.BasicMessageChannel_dynamic); C.BehaviorPosition_0 = new O.BehaviorPosition("BehaviorPosition.top"); C.BehaviorPosition_1 = new O.BehaviorPosition("BehaviorPosition.bottom"); C.BehaviorPosition_2 = new O.BehaviorPosition("BehaviorPosition.start"); C.BehaviorPosition_3 = new O.BehaviorPosition("BehaviorPosition.end"); C.BehaviorPosition_4 = new O.BehaviorPosition("BehaviorPosition.inside"); C.BlendMode_0 = new P.BlendMode(0, "BlendMode.clear"); C.BlendMode_1 = new P.BlendMode(1, "BlendMode.src"); C.BlendMode_10 = new P.BlendMode(10, "BlendMode.dstATop"); C.BlendMode_11 = new P.BlendMode(11, "BlendMode.xor"); C.BlendMode_12 = new P.BlendMode(12, "BlendMode.plus"); C.BlendMode_13 = new P.BlendMode(13, "BlendMode.modulate"); C.BlendMode_14 = new P.BlendMode(14, "BlendMode.screen"); C.BlendMode_15 = new P.BlendMode(15, "BlendMode.overlay"); C.BlendMode_16 = new P.BlendMode(16, "BlendMode.darken"); C.BlendMode_17 = new P.BlendMode(17, "BlendMode.lighten"); C.BlendMode_18 = new P.BlendMode(18, "BlendMode.colorDodge"); C.BlendMode_19 = new P.BlendMode(19, "BlendMode.colorBurn"); C.BlendMode_2 = new P.BlendMode(2, "BlendMode.dst"); C.BlendMode_20 = new P.BlendMode(20, "BlendMode.hardLight"); C.BlendMode_21 = new P.BlendMode(21, "BlendMode.softLight"); C.BlendMode_22 = new P.BlendMode(22, "BlendMode.difference"); C.BlendMode_23 = new P.BlendMode(23, "BlendMode.exclusion"); C.BlendMode_24 = new P.BlendMode(24, "BlendMode.multiply"); C.BlendMode_25 = new P.BlendMode(25, "BlendMode.hue"); C.BlendMode_26 = new P.BlendMode(26, "BlendMode.saturation"); C.BlendMode_27 = new P.BlendMode(27, "BlendMode.color"); C.BlendMode_28 = new P.BlendMode(28, "BlendMode.luminosity"); C.BlendMode_3 = new P.BlendMode(3, "BlendMode.srcOver"); C.BlendMode_4 = new P.BlendMode(4, "BlendMode.dstOver"); C.BlendMode_5 = new P.BlendMode(5, "BlendMode.srcIn"); C.BlendMode_6 = new P.BlendMode(6, "BlendMode.dstIn"); C.BlendMode_7 = new P.BlendMode(7, "BlendMode.srcOut"); C.BlendMode_8 = new P.BlendMode(8, "BlendMode.dstOut"); C.BlendMode_9 = new P.BlendMode(9, "BlendMode.srcATop"); C.BlurStyle_0 = new P.BlurStyle(0, "BlurStyle.normal"); C.Radius_0_0 = new P.Radius(0, 0); C.BorderRadius_tLn = new K.BorderRadius(C.Radius_0_0, C.Radius_0_0, C.Radius_0_0, C.Radius_0_0); C.Radius_4_4 = new P.Radius(4, 4); C.BorderRadius_tLn1 = new K.BorderRadius(C.Radius_4_4, C.Radius_4_4, C.Radius_0_0, C.Radius_0_0); C.BorderRadius_tLn0 = new K.BorderRadius(C.Radius_4_4, C.Radius_4_4, C.Radius_4_4, C.Radius_4_4); C.Color_4278190080 = new P.Color(4278190080); C.BorderStyle_0 = new Y.BorderStyle("BorderStyle.none"); C.BorderSide_m7u = new Y.BorderSide(C.Color_4278190080, 0, C.BorderStyle_0); C.BorderStyle_1 = new Y.BorderStyle("BorderStyle.solid"); C.Border_A43 = new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_m7u); C.BottomAppBarTheme_null_null_null = new D.BottomAppBarTheme(null, null, null); C.BottomNavigationBarThemeData_gg4 = new M.BottomNavigationBarThemeData(null, null, null, null, null, null, null, null, null, null, null, null); C.BottomSheetThemeData_M2D = new X.BottomSheetThemeData(null, null, null, null, null, null); C.RangeMaintainingScrollPhysics_null = new L.RangeMaintainingScrollPhysics(null); C.BouncingScrollPhysics_MuS = new L.BouncingScrollPhysics(C.RangeMaintainingScrollPhysics_null); C.BoxConstraints_0 = new S.BoxConstraints(304, 304, 1 / 0, 1 / 0); C.BoxConstraints_40_40_40_40 = new S.BoxConstraints(40, 40, 40, 40); C.BoxConstraints_56_56_56_56 = new S.BoxConstraints(56, 56, 56, 56); C.BoxConstraints_59_59_39_39 = new S.BoxConstraints(59, 59, 39, 39); C.BoxConstraints_72_72_28_28 = new S.BoxConstraints(72, 72, 28, 28); C.BoxConstraints_ALM = new S.BoxConstraints(1 / 0, 1 / 0, 1 / 0, 1 / 0); C.BoxConstraints_EcO = new S.BoxConstraints(112, 280, 0, 1 / 0); C.BoxConstraints_mlX4 = new S.BoxConstraints(0, 1 / 0, 0, 1 / 0); C.BoxConstraints_mlX = new S.BoxConstraints(280, 1 / 0, 0, 1 / 0); C.BoxConstraints_mlX1 = new S.BoxConstraints(36, 1 / 0, 36, 1 / 0); C.BoxConstraints_mlX5 = new S.BoxConstraints(88, 1 / 0, 36, 1 / 0); C.BoxConstraints_mlX2 = new S.BoxConstraints(0, 1 / 0, 48, 1 / 0); C.BoxConstraints_mlX0 = new S.BoxConstraints(48, 1 / 0, 48, 1 / 0); C.BoxConstraints_mlX3 = new S.BoxConstraints(0, 1 / 0, 52, 1 / 0); C.BoxShape_0 = new F.BoxShape("BoxShape.rectangle"); C.BoxDecoration_PTL = new S.BoxDecoration(null, null, null, null, null, null, C.BoxShape_0); C.Color_4290624957 = new P.Color(4290624957); C.BorderSide_SRw = new Y.BorderSide(C.Color_4290624957, 0, C.BorderStyle_1); C.Border_3bx = new F.Border(C.BorderSide_m7u, C.BorderSide_m7u, C.BorderSide_SRw, C.BorderSide_m7u); C.BoxDecoration_en0 = new S.BoxDecoration(null, null, C.Border_3bx, null, null, null, C.BoxShape_0); C.BoxFit_0 = new U.BoxFit("BoxFit.fill"); C.BoxFit_1 = new U.BoxFit("BoxFit.contain"); C.BoxFit_2 = new U.BoxFit("BoxFit.cover"); C.BoxFit_3 = new U.BoxFit("BoxFit.fitWidth"); C.BoxFit_4 = new U.BoxFit("BoxFit.fitHeight"); C.BoxFit_5 = new U.BoxFit("BoxFit.none"); C.BoxFit_6 = new U.BoxFit("BoxFit.scaleDown"); C.BoxHeightStyle_0 = new P.BoxHeightStyle(0, "BoxHeightStyle.tight"); C.BoxHeightStyle_5 = new P.BoxHeightStyle(5, "BoxHeightStyle.strut"); C.BoxShape_1 = new F.BoxShape("BoxShape.circle"); C.BoxWidthStyle_0 = new P.BoxWidthStyle(); C.Brightness_0 = new P.Brightness("Brightness.dark"); C.Brightness_1 = new P.Brightness("Brightness.light"); C.BrowserEngine_0 = new H.BrowserEngine("BrowserEngine.blink"); C.BrowserEngine_1 = new H.BrowserEngine("BrowserEngine.webkit"); C.BrowserEngine_2 = new H.BrowserEngine("BrowserEngine.firefox"); C.BrowserEngine_3 = new H.BrowserEngine("BrowserEngine.edge"); C.BrowserEngine_4 = new H.BrowserEngine("BrowserEngine.ie11"); C.BrowserEngine_5 = new H.BrowserEngine("BrowserEngine.samsung"); C.BrowserEngine_6 = new H.BrowserEngine("BrowserEngine.unknown"); C.ButtonBarLayoutBehavior_1 = new M.ButtonBarLayoutBehavior(); C.ButtonBarThemeData_A0t = new M.ButtonBarThemeData(null, null, null, null, null, null, null, null, null); C.ButtonTextTheme_0 = new M.ButtonTextTheme("ButtonTextTheme.normal"); C.ButtonTextTheme_1 = new M.ButtonTextTheme("ButtonTextTheme.accent"); C.ButtonTextTheme_2 = new M.ButtonTextTheme("ButtonTextTheme.primary"); C.C__EmptyStream = new P._EmptyStream(H.findType("_EmptyStream*>")); C.ByteStream__EmptyStream = new Z.ByteStream(C.C__EmptyStream); C.CONSTANT0 = new H.Instantiation1(P.math__max$closure(), H.findType("Instantiation1")); C.CONSTANT = new H.Instantiation1(P.math__max$closure(), H.findType("Instantiation1")); C.C_AccessibilityFeatures = new P.AccessibilityFeatures(); C.C_ActionDispatcher = new U.ActionDispatcher(); C.C_AndroidAuthMessages = new V.AndroidAuthMessages(); C.C_AppLocalizationsDelegate = new X.AppLocalizationsDelegate(); C.C_AsciiCodec = new P.AsciiCodec(); C.C_AssetManager = new H.AssetManager(); C.C_WebClient = new F.WebClient(); C.C_AuthRepository = new Z.AuthRepository(); C.C_Base64Encoder = new P.Base64Encoder(); C.C_Base64Codec = new P.Base64Codec(); C.C_Base64Decoder = new P.Base64Decoder(); C.C_BrowserPlatformLocation = new H.BrowserPlatformLocation(); C.C_ButtonActivateIntent = new U.ButtonActivateIntent(); C.C_CkRestoreCommand = new H.CkRestoreCommand(); C.C_CkSaveCommand = new H.CkSaveCommand(); C.C_ClientRepository = new G.ClientRepository(); C.C_Clock = new E.Clock(); C.C_CompanyGatewayRepository = new Z.CompanyGatewayRepository(); C.C_Console = new W.Console(); C.C_ConstCornerStrategy = new T.ConstCornerStrategy(); C.C_CreditRepository = new T.CreditRepository(); C.Color_4294967295 = new P.Color(4294967295); C.Color_637534208 = new P.Color(637534208); C.Offset_0_3 = new P.Offset(0, 3); C.BoxShadow_y5m = new O.BoxShadow(0, C.Color_637534208, C.Offset_0_3, 8); C.Color_251658240 = new P.Color(251658240); C.BoxShadow_y5m0 = new O.BoxShadow(0, C.Color_251658240, C.Offset_0_3, 1); C.List_a99 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_y5m, C.BoxShadow_y5m0]), type$.JSArray_legacy_BoxShadow); C.C_CupertinoThumbPainter = new A.CupertinoThumbPainter(); C.C_DecimalInputType = new H.DecimalInputType(); C.C_DefaultCupertinoLocalizations = new L.DefaultCupertinoLocalizations(); C.C_DefaultEquality = new U.DefaultEquality(H.findType("DefaultEquality<0&*>")); C.C_DefaultMaterialLocalizations = new U.DefaultMaterialLocalizations(); C.Size_100_100 = new P.Size(100, 100); C.C_DefaultShaderWarmUp = new D.DefaultShaderWarmUp(); C.C_DefaultTransitionDelegate = new K.DefaultTransitionDelegate(H.findType("DefaultTransitionDelegate<@>")); C.C_DefaultWidgetsLocalizations = new L.DefaultWidgetsLocalizations(); C.C_DesignRepository = new L.DesignRepository(); C.C_DismissIntent = new U.DismissIntent(); C.C_DoNothingAndStopPropagationTextIntent = new M.DoNothingAndStopPropagationTextIntent(); C.C_DocumentRepository = new S.DocumentRepository0(); C.C_ElasticOutCurve = new Z.ElasticOutCurve(); C.C_EmailInputType = new H.EmailInputType(); C.C_EmptyIterable = new H.EmptyIterable(H.findType("EmptyIterable")); C.C_EmptyIterator = new H.EmptyIterator(H.findType("EmptyIterator<0&*>")); C.C_Endian0 = new P.Endian(); C.C_Endian = new P.Endian(); C.C_ExpenseCategoryRepository = new U.ExpenseCategoryRepository(); C.C_ExpenseRepository = new B.ExpenseRepository(); C.C_FadeUpwardsPageTransitionsBuilder = new K.FadeUpwardsPageTransitionsBuilder(); C.C_GroupRepository = new E.GroupRepository(); C.C_HashUrlStrategy = new H.HashUrlStrategy(); C.C_IOSAuthMessages = new V.IOSAuthMessages(); C.C_IdentityConverter = new N.IdentityConverter(H.findType("IdentityConverter")); C.FloatingLabelBehavior_1 = new L.FloatingLabelBehavior("FloatingLabelBehavior.auto"); C.C_InputDecorationTheme = new L.InputDecorationTheme(); C.C_IntegerDivisionByZeroException = new P.IntegerDivisionByZeroException(); C.C_InvoiceRepository = new T.InvoiceRepository(); C.C_JSONMessageCodec = new H.JSONMessageCodec(); C.C_JSONMethodCodec = new H.JSONMethodCodec(); C.C_JSONMethodCodec0 = new U.JSONMethodCodec0(); C.C_JS_CONST = function getTagFallback(o) { var s = Object.prototype.toString.call(o); return s.substring(8, s.length - 1); }; C.C_JS_CONST0 = function() { var toStringFunction = Object.prototype.toString; function getTag(o) { var s = toStringFunction.call(o); return s.substring(8, s.length - 1); } function getUnknownTag(object, tag) { if (/^HTML[A-Z].*Element$/.test(tag)) { var name = toStringFunction.call(object); if (name == "[object Object]") return null; return "HTMLElement"; } } function getUnknownTagGenericBrowser(object, tag) { if (self.HTMLElement && object instanceof HTMLElement) return "HTMLElement"; return getUnknownTag(object, tag); } function prototypeForTag(tag) { if (typeof window == "undefined") return null; if (typeof window[tag] == "undefined") return null; var constructor = window[tag]; if (typeof constructor != "function") return null; return constructor.prototype; } function discriminator(tag) { return null; } var isBrowser = typeof navigator == "object"; return { getTag: getTag, getUnknownTag: isBrowser ? getUnknownTagGenericBrowser : getUnknownTag, prototypeForTag: prototypeForTag, discriminator: discriminator }; }; C.C_JS_CONST6 = function(getTagFallback) { return function(hooks) { if (typeof navigator != "object") return hooks; var ua = navigator.userAgent; if (ua.indexOf("DumpRenderTree") >= 0) return hooks; if (ua.indexOf("Chrome") >= 0) { function confirm(p) { return typeof window == "object" && window[p] && window[p].name == p; } if (confirm("Window") && confirm("HTMLElement")) return hooks; } hooks.getTag = getTagFallback; }; }; C.C_JS_CONST1 = function(hooks) { if (typeof dartExperimentalFixupGetTag != "function") return hooks; hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); }; C.C_JS_CONST2 = function(hooks) { var getTag = hooks.getTag; var prototypeForTag = hooks.prototypeForTag; function getTagFixed(o) { var tag = getTag(o); if (tag == "Document") { if (!!o.xmlVersion) return "!Document"; return "!HTMLDocument"; } return tag; } function prototypeForTagFixed(tag) { if (tag == "Document") return null; return prototypeForTag(tag); } hooks.getTag = getTagFixed; hooks.prototypeForTag = prototypeForTagFixed; }; C.C_JS_CONST5 = function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Firefox") == -1) return hooks; var getTag = hooks.getTag; var quickMap = { "BeforeUnloadEvent": "Event", "DataTransfer": "Clipboard", "GeoGeolocation": "Geolocation", "Location": "!Location", "WorkerMessageEvent": "MessageEvent", "XMLDocument": "!Document"}; function getTagFirefox(o) { var tag = getTag(o); return quickMap[tag] || tag; } hooks.getTag = getTagFirefox; }; C.C_JS_CONST4 = function(hooks) { var userAgent = typeof navigator == "object" ? navigator.userAgent : ""; if (userAgent.indexOf("Trident/") == -1) return hooks; var getTag = hooks.getTag; var quickMap = { "BeforeUnloadEvent": "Event", "DataTransfer": "Clipboard", "HTMLDDElement": "HTMLElement", "HTMLDTElement": "HTMLElement", "HTMLPhraseElement": "HTMLElement", "Position": "Geoposition" }; function getTagIE(o) { var tag = getTag(o); var newTag = quickMap[tag]; if (newTag) return newTag; if (tag == "Object") { if (window.DataView && (o instanceof window.DataView)) return "DataView"; } return tag; } function prototypeForTagIE(tag) { var constructor = window[tag]; if (constructor == null) return null; return constructor.prototype; } hooks.getTag = getTagIE; hooks.prototypeForTag = prototypeForTagIE; }; C.C_JS_CONST3 = function(hooks) { return hooks; } ; C.C_JsonCodec = new P.JsonCodec(); C.C_Latin1Codec = new P.Latin1Codec(); C.C_LocalDateTimeFactory = new Z.LocalDateTimeFactory(); C.C_LocalPlatform = new E.LocalPlatform(); C.C_MaterialBlue = new M.MaterialBlue(); C.C_MaterialCyan = new M.MaterialCyan(); C.C_MaterialDeepOrange = new M.MaterialDeepOrange(); C.C_MaterialGreen = new M.MaterialGreen(); C.C_MaterialIndigo = new M.MaterialIndigo(); C.C_MaterialLime = new M.MaterialLime(); C.C_MaterialPink = new M.MaterialPink(); C.C_MaterialPurple = new M.MaterialPurple(); C.C_MaterialRed = new M.MaterialRed(); C.C_MaterialScrollBehavior = new S.MaterialScrollBehavior(); C.C_MaterialStyle = new D.MaterialStyle(); C.C_MaterialTeal = new M.MaterialTeal(); C.C_MaterialYellow = new M.MaterialYellow(); C.C_MultilineInputType = new H.MultilineInputType(); C.C_NextFocusIntent = new U.NextFocusIntent(); C.C_NumberInputType = new H.NumberInputType(); C.C_Object = new P.Object(); C.C_OrdinalTickFormatter = new B.OrdinalTickFormatter(); C.C_OrdinalTickProvider = new M.OrdinalTickProvider(); C.C_OutOfMemoryError = new P.OutOfMemoryError(); C.C_PaintRestore = new H.PaintRestore(); C.C_PaintSave = new H.PaintSave(); C.C_PaymentRepository = new L.PaymentRepository(); C.C_PaymentTermRepository = new V.PaymentTermRepository(); C.C_PhoneInputType = new H.PhoneInputType(); C.C_PointerSupportDetector = new H.PointerSupportDetector(); C.C_PreviousFocusIntent = new U.PreviousFocusIntent(); C.C_ActivateIntent = new U.ActivateIntent(); C.ScrollIncrementType_1 = new F.ScrollIncrementType("ScrollIncrementType.page"); C.ScrollIntent_R430 = new F.ScrollIntent(C.AxisDirection_2, C.ScrollIncrementType_1); C.List_L3K = H.setRuntimeTypeInfo(makeConstList([C.C_ActivateIntent, C.ScrollIntent_R430]), H.findType("JSArray")); C.C_PrioritizedIntents = new U.PrioritizedIntents(); C.C_ProductRepository = new U.ProductRepository(); C.C_ProjectRepository = new X.ProjectRepository(); C.QrDataModuleShape_0 = new G.QrDataModuleShape(); C.C_QrDataModuleStyle = new G.QrDataModuleStyle(); C.QrEyeShape_0 = new G.QrEyeShape(); C.C_QrEyeStyle = new G.QrEyeStyle(); C.C_QuoteRepository = new U.QuoteRepository(); C.C_RecurringExpenseRepository = new A.RecurringExpenseRepository(); C.C_RecurringInvoiceRepository = new N.RecurringInvoiceRepository(); C.C_ScrollBehavior = new K.ScrollBehavior(); C.C_SettingsRepository = new Y.SettingsRepository(); C.C_SimpleLegendEntryLayout = new M.SimpleLegendEntryLayout(); C.C_StandardMessageCodec0 = new H.StandardMessageCodec(); C.C_StandardMethodCodec0 = new H.StandardMethodCodec(); C.C_StandardMethodCodec = new U.StandardMethodCodec0(); C.StepSizeType_0 = new B.StepSizeType("StepSizeType.autoDetect"); C.C_StepSizeConfig = new B.StepSizeConfig(); C.C_StyledToastPosition = new Z.StyledToastPosition(); C.C_SubscriptionRepository = new L.SubscriptionRepository(); C.C_TaskRepository = new Y.TaskRepository(); C.C_TaskStatusRepository = new X.TaskStatusRepository(); C.C_TaxRateRepository = new B.TaxRateRepository(); C.C_TextInputClearClient = new H.TextInputClearClient(); C.C_TextInputHide = new H.TextInputHide(); C.C_TextInputSetCaretRect = new H.TextInputSetCaretRect(); C.C_TextInputSetMarkedTextRect = new H.TextInputSetMarkedTextRect(); C.C_TextInputShow = new H.TextInputShow(); C.C_TextInputType = new H.TextInputType0(); C.C_TokenRepository = new A.TokenRepository(); C.C_UrlInputType = new H.UrlInputType(); C.C_UserRepository = new Q.UserRepository(); C.C_Utf8Codec = new P.Utf8Codec(); C.C_Utf8Encoder = new P.Utf8Encoder(); C.C_Uuid = new K.Uuid(); C.C_VendorRepository = new V.VendorRepository(); C.C_ViewMargin = new X.ViewMargin(); C.C_WebhookRepository = new G.WebhookRepository(); C.C__AlwaysCompleteAnimation = new S._AlwaysCompleteAnimation(); C.C__AlwaysDismissedAnimation = new S._AlwaysDismissedAnimation(); C.C__BeforeUnloadEventStreamProvider = new W._BeforeUnloadEventStreamProvider(); C.C__CupertinoLocalizationsDelegate = new L._CupertinoLocalizationsDelegate(); C.C__DayPickerGridDelegate = new Q._DayPickerGridDelegate(); C.C__DecelerateCurve = new Z._DecelerateCurve(); C.C__DefaultBinaryMessenger = new N._DefaultBinaryMessenger(); C.C__DefaultHeroTag = new E._DefaultHeroTag(); C.C__DeferringMouseCursor = new A._DeferringMouseCursor(); C.C__DelayedDone = new P._DelayedDone(); C.C__EndDockedFabLocation = new A._EndDockedFabLocation(); C.C__EndFloatFabLocation = new A._EndFloatFabLocation(); C.C__EndTopFabLocation = new A._EndTopFabLocation(); C.C__GlobalCupertinoLocalizationsDelegate = new Y._GlobalCupertinoLocalizationsDelegate(); C.C__HashEnd = new P._HashEnd(); C.C__InkRippleFactory = new O._InkRippleFactory(); C.C__InkSplashFactory = new U._InkSplashFactory(); C.C__JSRandom = new P._JSRandom(); C.C__Linear = new Z._Linear(); C.C__MaterialLocalizationsDelegate0 = new U._MaterialLocalizationsDelegate(); C.C__MaterialLocalizationsDelegate = new U._MaterialLocalizationsDelegate0(); C.C__NoDefaultValue = new Y._NoDefaultValue(); C.C__NoopMouseCursor = new A._NoopMouseCursor(); C.C__NullTableColumnWidth = new S._NullTableColumnWidth(); C.C__NullTableColumnWidth0 = new L._NullTableColumnWidth0(); C.C__Posix = new O._Posix(); C.C__RealtimeClock = new E._RealtimeClock(); C.C__Required = new H._Required(); C.C__RootZone = new P._RootZone(); C.C__ScalingFabMotionAnimator = new A._ScalingFabMotionAnimator(); C.C__WidgetsLocalizationsDelegate0 = new L._WidgetsLocalizationsDelegate(); C.C__WidgetsLocalizationsDelegate = new B._WidgetsLocalizationsDelegate0(); C.C__YearPickerGridDelegate = new Q._YearPickerGridDelegate(); C.CacheExtentStyle_0 = new Q.CacheExtentStyle("CacheExtentStyle.pixel"); C.CacheExtentStyle_1 = new Q.CacheExtentStyle("CacheExtentStyle.viewport"); C.CalendarField_0 = new R.CalendarField("CalendarField.year"); C.CalendarField_1 = new R.CalendarField("CalendarField.month"); C.CalendarField_2 = new R.CalendarField("CalendarField.date"); C.CalendarField_3 = new R.CalendarField("CalendarField.hourOfDay"); C.CalendarField_4 = new R.CalendarField("CalendarField.minute"); C.CalendarField_5 = new R.CalendarField("CalendarField.second"); C.CameraDevice_0 = new Q.CameraDevice(0, "CameraDevice.rear"); C.CameraDevice_1 = new Q.CameraDevice(1, "CameraDevice.front"); C.CardTheme_hKX = new A.CardTheme(null, null, null, null, null, null); C._ActivityIndicatorType_0 = new U._ActivityIndicatorType("_ActivityIndicatorType.material"); C.CircularProgressIndicator_MQk = new U.CircularProgressIndicator(4, null, null, null, null, null, null, null); C.Center_mtF = new T.Center(C.Alignment_0_0, null, null, C.CircularProgressIndicator_MQk, null); C.CheckboxThemeData_EkK = new F.CheckboxThemeData(null, null, null, null, null, null, null, null, null); C.CircleBorder_61T = new X.CircleBorder(C.BorderSide_m7u); C.ClampingScrollPhysics_KYr = new L.ClampingScrollPhysics(C.RangeMaintainingScrollPhysics_null); C.ClampingScrollPhysics_null = new L.ClampingScrollPhysics(null); C.ClientReportFields_0 = new A.ClientReportFields("ClientReportFields.name"); C.ClientReportFields_1 = new A.ClientReportFields("ClientReportFields.website"); C.ClientReportFields_10 = new A.ClientReportFields("ClientReportFields.city"); C.ClientReportFields_11 = new A.ClientReportFields("ClientReportFields.state"); C.ClientReportFields_12 = new A.ClientReportFields("ClientReportFields.postal_code"); C.ClientReportFields_13 = new A.ClientReportFields("ClientReportFields.phone"); C.ClientReportFields_14 = new A.ClientReportFields("ClientReportFields.country"); C.ClientReportFields_15 = new A.ClientReportFields("ClientReportFields.shipping_address1"); C.ClientReportFields_16 = new A.ClientReportFields("ClientReportFields.shipping_address2"); C.ClientReportFields_17 = new A.ClientReportFields("ClientReportFields.shipping_city"); C.ClientReportFields_18 = new A.ClientReportFields("ClientReportFields.shipping_state"); C.ClientReportFields_19 = new A.ClientReportFields("ClientReportFields.shipping_postal_code"); C.ClientReportFields_2 = new A.ClientReportFields("ClientReportFields.currency"); C.ClientReportFields_20 = new A.ClientReportFields("ClientReportFields.shipping_country"); C.ClientReportFields_21 = new A.ClientReportFields("ClientReportFields.client1"); C.ClientReportFields_22 = new A.ClientReportFields("ClientReportFields.client2"); C.ClientReportFields_23 = new A.ClientReportFields("ClientReportFields.client3"); C.ClientReportFields_24 = new A.ClientReportFields("ClientReportFields.client4"); C.ClientReportFields_25 = new A.ClientReportFields("ClientReportFields.created_by"); C.ClientReportFields_26 = new A.ClientReportFields("ClientReportFields.assigned_to"); C.ClientReportFields_27 = new A.ClientReportFields("ClientReportFields.balance"); C.ClientReportFields_28 = new A.ClientReportFields("ClientReportFields.credit_balance"); C.ClientReportFields_29 = new A.ClientReportFields("ClientReportFields.paid_to_date"); C.ClientReportFields_3 = new A.ClientReportFields("ClientReportFields.language"); C.ClientReportFields_30 = new A.ClientReportFields("ClientReportFields.total"); C.ClientReportFields_31 = new A.ClientReportFields("ClientReportFields.converted_balance"); C.ClientReportFields_32 = new A.ClientReportFields("ClientReportFields.converted_credit_balance"); C.ClientReportFields_33 = new A.ClientReportFields("ClientReportFields.converted_paid_to_date"); C.ClientReportFields_34 = new A.ClientReportFields("ClientReportFields.converted_total"); C.ClientReportFields_35 = new A.ClientReportFields("ClientReportFields.number"); C.ClientReportFields_36 = new A.ClientReportFields("ClientReportFields.id_number"); C.ClientReportFields_37 = new A.ClientReportFields("ClientReportFields.vat_number"); C.ClientReportFields_38 = new A.ClientReportFields("ClientReportFields.contact_full_name"); C.ClientReportFields_39 = new A.ClientReportFields("ClientReportFields.contact_first_name"); C.ClientReportFields_4 = new A.ClientReportFields("ClientReportFields.private_notes"); C.ClientReportFields_40 = new A.ClientReportFields("ClientReportFields.contact_last_name"); C.ClientReportFields_41 = new A.ClientReportFields("ClientReportFields.contact_email"); C.ClientReportFields_42 = new A.ClientReportFields("ClientReportFields.contact_phone"); C.ClientReportFields_43 = new A.ClientReportFields("ClientReportFields.contact1"); C.ClientReportFields_44 = new A.ClientReportFields("ClientReportFields.contact2"); C.ClientReportFields_45 = new A.ClientReportFields("ClientReportFields.contact3"); C.ClientReportFields_46 = new A.ClientReportFields("ClientReportFields.contact4"); C.ClientReportFields_47 = new A.ClientReportFields("ClientReportFields.contact_last_login"); C.ClientReportFields_48 = new A.ClientReportFields("ClientReportFields.is_active"); C.ClientReportFields_49 = new A.ClientReportFields("ClientReportFields.created_at"); C.ClientReportFields_5 = new A.ClientReportFields("ClientReportFields.public_notes"); C.ClientReportFields_50 = new A.ClientReportFields("ClientReportFields.updated_at"); C.ClientReportFields_6 = new A.ClientReportFields("ClientReportFields.industry"); C.ClientReportFields_7 = new A.ClientReportFields("ClientReportFields.size"); C.ClientReportFields_8 = new A.ClientReportFields("ClientReportFields.address1"); C.ClientReportFields_9 = new A.ClientReportFields("ClientReportFields.address2"); C.ClipOp_0 = new P.ClipOp(0, "ClipOp.difference"); C.ClipOp_1 = new P.ClipOp(1, "ClipOp.intersect"); C.Clip_0 = new P.Clip("Clip.none"); C.Clip_1 = new P.Clip("Clip.hardEdge"); C.Clip_2 = new P.Clip("Clip.antiAlias"); C.Clip_3 = new P.Clip("Clip.antiAliasWithSaveLayer"); C.Color_0 = new P.Color(0); C.Color_1087163596 = new P.Color(1087163596); C.Color_1308622847 = new P.Color(1308622847); C.Color_1375731712 = new P.Color(1375731712); C.Color_1627389952 = new P.Color(1627389952); C.Color_1660944383 = new P.Color(1660944383); C.Color_16777215 = new P.Color(16777215); C.Color_167772160 = new P.Color(167772160); C.Color_1723645116 = new P.Color(1723645116); C.Color_1724434632 = new P.Color(1724434632); C.Color_1929379840 = new P.Color(1929379840); C.Color_2315255808 = new P.Color(2315255808); C.Color_234881023 = new P.Color(234881023); C.Color_2566914048 = new P.Color(2566914048); C.Color_2583691263 = new P.Color(2583691263); C.Color_3019898879 = new P.Color(3019898879); C.Color_3707764736 = new P.Color(3707764736); C.Color_4039164096 = new P.Color(4039164096); C.Color_4278226106 = new P.Color(4278226106); C.Color_4278230236 = new P.Color(4278230236); C.Color_4278237002 = new P.Color(4278237002); C.Color_4278238348 = new P.Color(4278238348); C.Color_4278360783 = new P.Color(4278360783); C.Color_4278368373 = new P.Color(4278368373); C.Color_4278402163 = new P.Color(4278402163); C.Color_4278994339 = new P.Color(4278994339); C.Color_4279066001 = new P.Color(4279066001); C.Color_4279396081 = new P.Color(4279396081); C.Color_4279482709 = new P.Color(4279482709); C.Color_4279602362 = new P.Color(4279602362); C.Color_4279739064 = new P.Color(4279739064); C.Color_4279811228 = new P.Color(4279811228); C.Color_4279900698 = new P.Color(4279900698); C.Color_4279966750 = new P.Color(4279966750); C.Color_4280261583 = new P.Color(4280261583); C.Color_4280391411 = new P.Color(4280391411); C.Color_4280463948 = new P.Color(4280463948); C.Color_4280716242 = new P.Color(4280716242); C.Color_4280778979 = new P.Color(4280778979); C.Color_4280854341 = new P.Color(4280854341); C.Color_4280858156 = new P.Color(4280858156); C.Color_4280912555 = new P.Color(4280912555); C.Color_4280921056 = new P.Color(4280921056); C.Color_4280983510 = new P.Color(4280983510); C.Color_4280983960 = new P.Color(4280983960); C.Color_4281089616 = new P.Color(4281089616); C.Color_4281312487 = new P.Color(4281312487); C.Color_4281348144 = new P.Color(4281348144); C.Color_4281490824 = new P.Color(4281490824); C.Color_4281545523 = new P.Color(4281545523); C.Color_4281558681 = new P.Color(4281558681); C.Color_4281571827 = new P.Color(4281571827); C.Color_4281637083 = new P.Color(4281637083); C.Color_4281817727 = new P.Color(4281817727); C.Color_4281906250 = new P.Color(4281906250); C.Color_4281975021 = new P.Color(4281975021); C.Color_4282007364 = new P.Color(4282007364); C.Color_4282168609 = new P.Color(4282168609); C.Color_4282365464 = new P.Color(4282365464); C.Color_4282414389 = new P.Color(4282414389); C.Color_4282549748 = new P.Color(4282549748); C.Color_4282625130 = new P.Color(4282625130); C.Color_4282674843 = new P.Color(4282674843); C.Color_4282745580 = new P.Color(4282745580); C.Color_4282815496 = new P.Color(4282815496); C.Color_4283154291 = new P.Color(4283154291); C.Color_4283215696 = new P.Color(4283215696); C.Color_4283878557 = new P.Color(4283878557); C.Color_4284035478 = new P.Color(4284035478); C.Color_4284203230 = new P.Color(4284203230); C.Color_4284266588 = new P.Color(4284266588); C.Color_4284328948 = new P.Color(4284328948); C.Color_4284662882 = new P.Color(4284662882); C.Color_4285318101 = new P.Color(4285318101); C.Color_4285769785 = new P.Color(4285769785); C.Color_4285909739 = new P.Color(4285909739); C.Color_4286034688 = new P.Color(4286034688); C.Color_4286104237 = new P.Color(4286104237); C.Color_4287137928 = new P.Color(4287137928); C.Color_4287315264 = new P.Color(4287315264); C.Color_4287874379 = new P.Color(4287874379); C.Color_4288230348 = new P.Color(4288230348); C.Color_4288238779 = new P.Color(4288238779); C.Color_4288366495 = new P.Color(4288366495); C.Color_4288423856 = new P.Color(4288423856); C.Color_4289228800 = new P.Color(4289228800); C.Color_4290087168 = new P.Color(4290087168); C.Color_4291238946 = new P.Color(4291238946); C.Color_4291513110 = new P.Color(4291513110); C.Color_4291559424 = new P.Color(4291559424); C.Color_4291625472 = new P.Color(4291625472); C.Color_4292032130 = new P.Color(4292032130); C.Color_4292113664 = new P.Color(4292113664); C.Color_4292420367 = new P.Color(4292420367); C.Color_4292432719 = new P.Color(4292432719); C.Color_4292444959 = new P.Color(4292444959); C.Color_4292621637 = new P.Color(4292621637); C.Color_4292695552 = new P.Color(4292695552); C.Color_4292818988 = new P.Color(4292818988); C.Color_4292831514 = new P.Color(4292831514); C.Color_4293191915 = new P.Color(4293191915); C.Color_4293205027 = new P.Color(4293205027); C.Color_4293348412 = new P.Color(4293348412); C.Color_4293481504 = new P.Color(4293481504); C.Color_4293496834 = new P.Color(4293496834); C.Color_4293617764 = new P.Color(4293617764); C.Color_4293812059 = new P.Color(4293812059); C.Color_4293894941 = new P.Color(4293894941); C.Color_4293900094 = new P.Color(4293900094); C.Color_4293935396 = new P.Color(4293935396); C.Color_4293963086 = new P.Color(4293963086); C.Color_4294155282 = new P.Color(4294155282); C.Color_4294212668 = new P.Color(4294212668); C.Color_4294277632 = new P.Color(4294277632); C.Color_4294305317 = new P.Color(4294305317); C.Color_4294480902 = new P.Color(4294480902); C.Color_4294521172 = new P.Color(4294521172); C.Color_4294719801 = new P.Color(4294719801); C.Color_4294901760 = new P.Color(4294901760); C.Color_4294901817 = new P.Color(4294901817); C.Color_4294918454 = new P.Color(4294918454); C.Color_4294931736 = new P.Color(4294931736); C.Color_4294932561 = new P.Color(4294932561); C.Color_4294935835 = new P.Color(4294935835); C.Color_4294936576 = new P.Color(4294936576); C.Color_4294940672 = new P.Color(4294940672); C.Color_4294945024 = new P.Color(4294945024); C.Color_4294951175 = new P.Color(4294951175); C.Color_4294954599 = new P.Color(4294954599); C.Color_452984831 = new P.Color(452984831); C.Color_503316480 = new P.Color(503316480); C.Color_520093696 = new P.Color(520093696); C.Color_536870911 = new P.Color(536870911); C.Color_83886080 = new P.Color(83886080); C.Color_ww81 = new K.Color0(194, 24, 91, 255, null, null); C.Color_ww82 = new K.Color0(244, 143, 177, 255, null, null); C.Color_Feh = new K.Color0(233, 30, 99, 255, C.Color_ww81, C.Color_ww82); C.Color_ww83 = new K.Color0(25, 118, 210, 255, null, null); C.Color_OBc = new K.Color0(144, 202, 249, 255, null, null); C.Color_U0W = new K.Color0(33, 150, 243, 255, C.Color_ww83, C.Color_OBc); C.Color_WL1 = new K.Color0(0, 0, 0, 0, null, null); C.Color_ww84 = new K.Color0(175, 180, 43, 255, null, null); C.Color_ww85 = new K.Color0(230, 238, 156, 255, null, null); C.Color_ePM2 = new K.Color0(205, 220, 57, 255, C.Color_ww84, C.Color_ww85); C.Color_ww86 = new K.Color0(56, 142, 60, 255, null, null); C.Color_ww87 = new K.Color0(165, 214, 167, 255, null, null); C.Color_ePM5 = new K.Color0(76, 175, 80, 255, C.Color_ww86, C.Color_ww87); C.Color_ww80 = new K.Color0(97, 97, 97, 255, null, null); C.Color_ww88 = new K.Color0(238, 238, 238, 255, null, null); C.Color_ePM = new K.Color0(158, 158, 158, 255, C.Color_ww80, C.Color_ww88); C.Color_ww89 = new K.Color0(0, 121, 107, 255, null, null); C.Color_ww810 = new K.Color0(128, 203, 196, 255, null, null); C.Color_ePM0 = new K.Color0(0, 150, 136, 255, C.Color_ww89, C.Color_ww810); C.Color_ww811 = new K.Color0(48, 63, 159, 255, null, null); C.Color_ww812 = new K.Color0(159, 168, 218, 255, null, null); C.Color_ePM1 = new K.Color0(63, 81, 181, 255, C.Color_ww811, C.Color_ww812); C.Color_ww813 = new K.Color0(123, 31, 162, 255, null, null); C.Color_ww814 = new K.Color0(206, 147, 216, 255, null, null); C.Color_ePM4 = new K.Color0(156, 39, 176, 255, C.Color_ww813, C.Color_ww814); C.Color_ww815 = new K.Color0(0, 151, 167, 255, null, null); C.Color_ww816 = new K.Color0(128, 222, 234, 255, null, null); C.Color_ePM3 = new K.Color0(0, 188, 212, 255, C.Color_ww815, C.Color_ww816); C.Color_bUY = new K.Color0(251, 192, 45, 255, null, null); C.Color_uUv = new K.Color0(255, 245, 157, 255, null, null); C.Color_g3G = new K.Color0(255, 235, 59, 255, C.Color_bUY, C.Color_uUv); C.Color_ww817 = new K.Color0(211, 47, 47, 255, null, null); C.Color_bUY0 = new K.Color0(239, 154, 154, 255, null, null); C.Color_kvD = new K.Color0(244, 67, 54, 255, C.Color_ww817, C.Color_bUY0); C.Color_toQ = new K.Color0(255, 255, 255, 255, null, null); C.Color_ww8 = new K.Color0(0, 0, 0, 255, null, null); C.Color_ww818 = new K.Color0(230, 74, 25, 255, null, null); C.Color_bUY1 = new K.Color0(255, 171, 145, 255, null, null); C.Color_wz6 = new K.Color0(255, 87, 34, 255, C.Color_ww818, C.Color_bUY1); C.ConnectionState_0 = new B.ConnectionState("ConnectionState.none"); C.ConnectionState_1 = new B.ConnectionState("ConnectionState.waiting"); C.ConnectionState_2 = new B.ConnectionState("ConnectionState.active"); C.ConnectionState_3 = new B.ConnectionState("ConnectionState.done"); C.CreditReportFields_0 = new L.CreditReportFields("CreditReportFields.amount"); C.CreditReportFields_1 = new L.CreditReportFields("CreditReportFields.balance"); C.CreditReportFields_10 = new L.CreditReportFields("CreditReportFields.client_country"); C.CreditReportFields_11 = new L.CreditReportFields("CreditReportFields.status"); C.CreditReportFields_12 = new L.CreditReportFields("CreditReportFields.number"); C.CreditReportFields_13 = new L.CreditReportFields("CreditReportFields.discount"); C.CreditReportFields_14 = new L.CreditReportFields("CreditReportFields.po_number"); C.CreditReportFields_15 = new L.CreditReportFields("CreditReportFields.date"); C.CreditReportFields_16 = new L.CreditReportFields("CreditReportFields.valid_until"); C.CreditReportFields_17 = new L.CreditReportFields("CreditReportFields.partial"); C.CreditReportFields_18 = new L.CreditReportFields("CreditReportFields.partial_due_date"); C.CreditReportFields_19 = new L.CreditReportFields("CreditReportFields.auto_bill"); C.CreditReportFields_2 = new L.CreditReportFields("CreditReportFields.converted_amount"); C.CreditReportFields_20 = new L.CreditReportFields("CreditReportFields.invoice1"); C.CreditReportFields_21 = new L.CreditReportFields("CreditReportFields.invoice2"); C.CreditReportFields_22 = new L.CreditReportFields("CreditReportFields.invoice3"); C.CreditReportFields_23 = new L.CreditReportFields("CreditReportFields.invoice4"); C.CreditReportFields_24 = new L.CreditReportFields("CreditReportFields.surcharge1"); C.CreditReportFields_25 = new L.CreditReportFields("CreditReportFields.surcharge2"); C.CreditReportFields_26 = new L.CreditReportFields("CreditReportFields.surcharge3"); C.CreditReportFields_27 = new L.CreditReportFields("CreditReportFields.surcharge4"); C.CreditReportFields_28 = new L.CreditReportFields("CreditReportFields.updated_at"); C.CreditReportFields_29 = new L.CreditReportFields("CreditReportFields.archived_at"); C.CreditReportFields_3 = new L.CreditReportFields("CreditReportFields.converted_balance"); C.CreditReportFields_30 = new L.CreditReportFields("CreditReportFields.is_deleted"); C.CreditReportFields_31 = new L.CreditReportFields("CreditReportFields.tax_amount"); C.CreditReportFields_32 = new L.CreditReportFields("CreditReportFields.net_amount"); C.CreditReportFields_33 = new L.CreditReportFields("CreditReportFields.net_remaining"); C.CreditReportFields_34 = new L.CreditReportFields("CreditReportFields.exchange_rate"); C.CreditReportFields_35 = new L.CreditReportFields("CreditReportFields.public_notes"); C.CreditReportFields_36 = new L.CreditReportFields("CreditReportFields.private_notes"); C.CreditReportFields_37 = new L.CreditReportFields("CreditReportFields.client_vat_number"); C.CreditReportFields_38 = new L.CreditReportFields("CreditReportFields.client_city"); C.CreditReportFields_39 = new L.CreditReportFields("CreditReportFields.client_postal_code"); C.CreditReportFields_4 = new L.CreditReportFields("CreditReportFields.client"); C.CreditReportFields_40 = new L.CreditReportFields("CreditReportFields.tax_rate1"); C.CreditReportFields_41 = new L.CreditReportFields("CreditReportFields.tax_rate2"); C.CreditReportFields_42 = new L.CreditReportFields("CreditReportFields.tax_rate3"); C.CreditReportFields_43 = new L.CreditReportFields("CreditReportFields.tax_name1"); C.CreditReportFields_44 = new L.CreditReportFields("CreditReportFields.tax_name2"); C.CreditReportFields_45 = new L.CreditReportFields("CreditReportFields.tax_name3"); C.CreditReportFields_5 = new L.CreditReportFields("CreditReportFields.client_balance"); C.CreditReportFields_6 = new L.CreditReportFields("CreditReportFields.client_address1"); C.CreditReportFields_7 = new L.CreditReportFields("CreditReportFields.client_address2"); C.CreditReportFields_8 = new L.CreditReportFields("CreditReportFields.client_shipping_address1"); C.CreditReportFields_9 = new L.CreditReportFields("CreditReportFields.client_shipping_address2"); C.CrossAxisAlignment_0 = new F.CrossAxisAlignment("CrossAxisAlignment.start"); C.CrossAxisAlignment_1 = new F.CrossAxisAlignment("CrossAxisAlignment.end"); C.CrossAxisAlignment_2 = new F.CrossAxisAlignment("CrossAxisAlignment.center"); C.CrossAxisAlignment_3 = new F.CrossAxisAlignment("CrossAxisAlignment.stretch"); C.CrossAxisAlignment_4 = new F.CrossAxisAlignment("CrossAxisAlignment.baseline"); C.CrossFadeState_0 = new U.CrossFadeState("CrossFadeState.showFirst"); C.CrossFadeState_1 = new U.CrossFadeState("CrossFadeState.showSecond"); C.Cubic_2Vk = new Z.Cubic(0.18, 1, 0.04, 1); C.Cubic_HzT = new Z.Cubic(0.05, 0, 0.133333, 0.06); C.Cubic_JUR = new Z.Cubic(0.25, 0.1, 0.25, 1); C.Cubic_JUR0 = new Z.Cubic(0.42, 0, 1, 1); C.Cubic_OcD = new Z.Cubic(0.67, 0.03, 0.65, 0.09); C.Cubic_QB2 = new Z.Cubic(0.785, 0.135, 0.15, 0.86); C.Cubic_bP1 = new Z.Cubic(0.208333, 0.82, 0.25, 1); C.Cubic_ifx = new Z.Cubic(0.4, 0, 0.2, 1); C.Cubic_izR = new Z.Cubic(0.35, 0.91, 0.33, 0.97); C.Cubic_oKc = new Z.Cubic(0.645, 0.045, 0.355, 1); C.Cubic_xDo0 = new Z.Cubic(0, 0, 0.58, 1); C.Cubic_xDo = new Z.Cubic(0.42, 0, 0.58, 1); C.Color_678983808 = new P.Color(678983808); C.Color_1366849664 = new P.Color(1366849664); C.Color_1031305344 = new P.Color(1031305344); C.Color_1719171200 = new P.Color(1719171200); C.CupertinoDynamicColor_MdH = new E.CupertinoDynamicColor(C.Color_678983808, "secondarySystemFill", null, C.Color_678983808, C.Color_1366849664, C.Color_1031305344, C.Color_1719171200, C.Color_678983808, C.Color_1366849664, C.Color_1031305344, C.Color_1719171200, 0); C.Color_4288256409 = new P.Color(4288256409); C.Color_4285887861 = new P.Color(4285887861); C.CupertinoDynamicColor_YIZ = new E.CupertinoDynamicColor(C.Color_4288256409, "inactiveGray", null, C.Color_4288256409, C.Color_4285887861, C.Color_4288256409, C.Color_4285887861, C.Color_4288256409, C.Color_4285887861, C.Color_4288256409, C.Color_4285887861, 0); C.Color_4282137668 = new P.Color(4282137668); C.Color_4293651445 = new P.Color(4293651445); C.CupertinoDynamicColor_YNl = new E.CupertinoDynamicColor(C.Color_4282137668, null, null, C.Color_4282137668, C.Color_4293651445, C.Color_4282137668, C.Color_4293651445, C.Color_4282137668, C.Color_4293651445, C.Color_4282137668, C.Color_4293651445, 0); C.Color_4281648985 = new P.Color(4281648985); C.Color_4281389400 = new P.Color(4281389400); C.Color_4280584765 = new P.Color(4280584765); C.Color_4281391963 = new P.Color(4281391963); C.CupertinoDynamicColor_gg4 = new E.CupertinoDynamicColor(C.Color_4281648985, "systemGreen", null, C.Color_4281648985, C.Color_4281389400, C.Color_4280584765, C.Color_4281391963, C.Color_4281648985, C.Color_4281389400, C.Color_4280584765, C.Color_4281391963, 0); C.Color_1493172224 = new P.Color(1493172224); C.Color_2164260863 = new P.Color(2164260863); C.CupertinoDynamicColor_zPV = new E.CupertinoDynamicColor(C.Color_1493172224, null, null, C.Color_1493172224, C.Color_2164260863, C.Color_1493172224, C.Color_2164260863, C.Color_1493172224, C.Color_2164260863, C.Color_1493172224, C.Color_2164260863, 0); C.Color_4278221567 = new P.Color(4278221567); C.Color_4278879487 = new P.Color(4278879487); C.Color_4278206685 = new P.Color(4278206685); C.Color_4282424575 = new P.Color(4282424575); C.CupertinoDynamicColor_948 = new E.CupertinoDynamicColor(C.Color_4278221567, "systemBlue", null, C.Color_4278221567, C.Color_4278879487, C.Color_4278206685, C.Color_4282424575, C.Color_4278221567, C.Color_4278879487, C.Color_4278206685, C.Color_4282424575, 0); C.Color_4280032286 = new P.Color(4280032286); C.Color_4280558630 = new P.Color(4280558630); C.CupertinoDynamicColor_k0n = new E.CupertinoDynamicColor(C.Color_4294967295, "systemBackground", null, C.Color_4294967295, C.Color_4278190080, C.Color_4294967295, C.Color_4278190080, C.Color_4294967295, C.Color_4280032286, C.Color_4294967295, C.Color_4280558630, 0); C.Color_4042914297 = new P.Color(4042914297); C.Color_4028439837 = new P.Color(4028439837); C.CupertinoDynamicColor_wEo = new E.CupertinoDynamicColor(C.Color_4042914297, null, null, C.Color_4042914297, C.Color_4028439837, C.Color_4042914297, C.Color_4028439837, C.Color_4042914297, C.Color_4028439837, C.Color_4042914297, C.Color_4028439837, 0); C.CupertinoDynamicColor_qQo = new E.CupertinoDynamicColor(C.Color_4278190080, "label", null, C.Color_4278190080, C.Color_4294967295, C.Color_4278190080, C.Color_4294967295, C.Color_4278190080, C.Color_4294967295, C.Color_4278190080, C.Color_4294967295, 0); C._CupertinoTextThemeDefaults_954 = new K._CupertinoTextThemeDefaults(C.CupertinoDynamicColor_qQo, C.CupertinoDynamicColor_YIZ); C._CupertinoThemeDefaults_iF8 = new K._CupertinoThemeDefaults(null, C.CupertinoDynamicColor_948, C.CupertinoDynamicColor_k0n, C.CupertinoDynamicColor_wEo, C.CupertinoDynamicColor_k0n, C._CupertinoTextThemeDefaults_954); C.CupertinoThemeData_KQb = new K.CupertinoThemeData(C._CupertinoThemeDefaults_iF8, null, null, null, null, null, null); C.CupertinoUserInterfaceLevelData_0 = new K.CupertinoUserInterfaceLevelData("CupertinoUserInterfaceLevelData.base"); C.CupertinoUserInterfaceLevelData_1 = new K.CupertinoUserInterfaceLevelData("CupertinoUserInterfaceLevelData.elevated"); C.SizedBox_0_0_null_null = new T.SizedBox(0, 0, null, null); C.DataCell_AHF = new S.DataCell(C.SizedBox_0_0_null_null, null); C.DataCell_R8h = new L.DataCell0(C.CircularProgressIndicator_MQk, null, null); C.DataCell_mS8 = new L.DataCell0(C.SizedBox_0_0_null_null, null, null); C.DataCell_su2 = new S.DataCell(C.CircularProgressIndicator_MQk, null); C.DataTableThemeData_SL9 = new Z.DataTableThemeData(null, null, null, null, null, null, null, null, null, null, null); C.DatePickerEntryMode_0 = new Q.DatePickerEntryMode(0, "DatePickerEntryMode.calendar"); C.DatePickerEntryMode_1 = new Q.DatePickerEntryMode(1, "DatePickerEntryMode.input"); C.DatePickerEntryMode_2 = new Q.DatePickerEntryMode(2, "DatePickerEntryMode.calendarOnly"); C.DatePickerEntryMode_3 = new Q.DatePickerEntryMode(3, "DatePickerEntryMode.inputOnly"); C.DatePickerMode_0 = new Q.DatePickerMode("DatePickerMode.day"); C.DatePickerMode_1 = new Q.DatePickerMode("DatePickerMode.year"); C.DateRangeComparison_customRange = new F.DateRangeComparison("customRange"); C.DateRangeComparison_previousPeriod = new F.DateRangeComparison("previousPeriod"); C.DateRangeComparison_previousYear = new F.DateRangeComparison("previousYear"); C.DateRange_custom = new F.DateRange("custom"); C.DateRange_last30Days = new F.DateRange("last30Days"); C.DateRange_last7Days = new F.DateRange("last7Days"); C.DateRange_lastMonth = new F.DateRange("lastMonth"); C.DateRange_lastQuarter = new F.DateRange("lastQuarter"); C.DateRange_lastYear = new F.DateRange("lastYear"); C.DateRange_thisMonth = new F.DateRange("thisMonth"); C.DateRange_thisQuarter = new F.DateRange("thisQuarter"); C.DateRange_thisYear = new F.DateRange("thisYear"); C.DayPeriod_0 = new Z.DayPeriod("DayPeriod.am"); C.DayPeriod_1 = new Z.DayPeriod("DayPeriod.pm"); C.DebugSemanticsDumpOrder_0 = new A.DebugSemanticsDumpOrder("DebugSemanticsDumpOrder.inverseHitTest"); C.DebugSemanticsDumpOrder_1 = new A.DebugSemanticsDumpOrder("DebugSemanticsDumpOrder.traversalOrder"); C.DecorationPosition_0 = new E.DecorationPosition("DecorationPosition.background"); C.DecorationPosition_1 = new E.DecorationPosition("DecorationPosition.foreground"); C.DeepCollectionEquality_false = new U.DeepCollectionEquality(false); C.TextStyle_q1g0 = 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); C.TextOverflow_0 = new Q.TextOverflow("TextOverflow.clip"); C.TextWidthBasis_0 = new U.TextWidthBasis("TextWidthBasis.parent"); C._NullWidget_null2 = new L._NullWidget2(null); C.DefaultTextStyle_4i6 = new L.DefaultTextStyle(C.TextStyle_q1g0, null, true, C.TextOverflow_0, null, C.TextWidthBasis_0, null, C._NullWidget_null2, null); C.DiagnosticLevel_0 = new Y.DiagnosticLevel(0, "DiagnosticLevel.hidden"); C.DiagnosticLevel_1 = new Y.DiagnosticLevel(1, "DiagnosticLevel.fine"); C.DiagnosticLevel_2 = new Y.DiagnosticLevel(2, "DiagnosticLevel.debug"); C.DiagnosticLevel_3 = new Y.DiagnosticLevel(3, "DiagnosticLevel.info"); C.DiagnosticLevel_4 = new Y.DiagnosticLevel(4, "DiagnosticLevel.warning"); C.DiagnosticLevel_5 = new Y.DiagnosticLevel(5, "DiagnosticLevel.hint"); C.DiagnosticLevel_6 = new Y.DiagnosticLevel(6, "DiagnosticLevel.summary"); C.DiagnosticLevel_7 = new Y.DiagnosticLevel(7, "DiagnosticLevel.error"); C.DiagnosticsTreeStyle_0 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.none"); C.DiagnosticsTreeStyle_1 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.sparse"); C.DiagnosticsTreeStyle_10 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.shallow"); C.DiagnosticsTreeStyle_11 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.truncateChildren"); C.DiagnosticsTreeStyle_2 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.offstage"); C.DiagnosticsTreeStyle_3 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.dense"); C.DiagnosticsTreeStyle_4 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.transition"); C.DiagnosticsTreeStyle_5 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.error"); C.DiagnosticsTreeStyle_6 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.whitespace"); C.DiagnosticsTreeStyle_7 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.flat"); C.DiagnosticsTreeStyle_8 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.singleLine"); C.DiagnosticsTreeStyle_9 = new Y.DiagnosticsTreeStyle("DiagnosticsTreeStyle.errorProperty"); C.DialogTheme_maI = new Y.DialogTheme(null, null, null, null, null); C.TraversalDirection_0 = new U.TraversalDirection("TraversalDirection.up"); C.DirectionalFocusIntent_TraversalDirection_0 = new U.DirectionalFocusIntent(C.TraversalDirection_0); C.TraversalDirection_1 = new U.TraversalDirection("TraversalDirection.right"); C.DirectionalFocusIntent_TraversalDirection_1 = new U.DirectionalFocusIntent(C.TraversalDirection_1); C.TraversalDirection_2 = new U.TraversalDirection("TraversalDirection.down"); C.DirectionalFocusIntent_TraversalDirection_2 = new U.DirectionalFocusIntent(C.TraversalDirection_2); C.TraversalDirection_3 = new U.TraversalDirection("TraversalDirection.left"); C.DirectionalFocusIntent_TraversalDirection_3 = new U.DirectionalFocusIntent(C.TraversalDirection_3); C.DividerThemeData_Tnu = new G.DividerThemeData(null, null, null, null, null); C.Divider_null_null_null_null = new Z.Divider(null, null, null, null); C.DocumentReportFields_0 = new R.DocumentReportFields("DocumentReportFields.name"); C.DocumentReportFields_1 = new R.DocumentReportFields("DocumentReportFields.size"); C.DocumentReportFields_2 = new R.DocumentReportFields("DocumentReportFields.width"); C.DocumentReportFields_3 = new R.DocumentReportFields("DocumentReportFields.height"); C.DocumentReportFields_4 = new R.DocumentReportFields("DocumentReportFields.file_type"); C.DocumentReportFields_5 = new R.DocumentReportFields("DocumentReportFields.record_type"); C.DocumentReportFields_6 = new R.DocumentReportFields("DocumentReportFields.record_name"); C.DocumentReportFields_7 = new R.DocumentReportFields("DocumentReportFields.created_at"); C.DocumentReportFields_8 = new R.DocumentReportFields("DocumentReportFields.created_by"); C.DocumentReportFields_9 = new R.DocumentReportFields("DocumentReportFields.updated_at"); C.DragStartBehavior_0 = new S.DragStartBehavior("DragStartBehavior.down"); C.DragStartBehavior_1 = new S.DragStartBehavior("DragStartBehavior.start"); C.DrawerAlignment_0 = new Z.DrawerAlignment("DrawerAlignment.start"); C.DrawerAlignment_1 = new Z.DrawerAlignment("DrawerAlignment.end"); C.Duration_0 = new P.Duration(0); C.Duration_1000 = new P.Duration(1000); C.Duration_100000 = new P.Duration(100000); C.Duration_1000000 = new P.Duration(1000000); C.Duration_10000000 = new P.Duration(10000000); C.Duration_1200000 = new P.Duration(1200000); C.Duration_125000 = new P.Duration(125000); C.Duration_14000 = new P.Duration(14000); C.Duration_15000 = new P.Duration(15000); C.Duration_150000 = new P.Duration(150000); C.Duration_1500000 = new P.Duration(1500000); C.Duration_160000 = new P.Duration(160000); C.Duration_16667 = new P.Duration(16667); C.Duration_167000 = new P.Duration(167000); C.Duration_170000 = new P.Duration(170000); C.Duration_1800000 = new P.Duration(1800000); C.Duration_200000 = new P.Duration(200000); C.Duration_2000000 = new P.Duration(2000000); C.Duration_210000 = new P.Duration(210000); C.Duration_225000 = new P.Duration(225000); C.Duration_2300000 = new P.Duration(2300000); C.Duration_246000 = new P.Duration(246000); C.Duration_250000 = new P.Duration(250000); C.Duration_2592000000000 = new P.Duration(2592e9); C.Duration_2961926000 = new P.Duration(2961926000); C.Duration_300000 = new P.Duration(300000); C.Duration_375000 = new P.Duration(375000); C.Duration_40000 = new P.Duration(40000); C.Duration_400000 = new P.Duration(400000); C.Duration_50000 = new P.Duration(50000); C.Duration_500000 = new P.Duration(500000); C.Duration_5000000 = new P.Duration(5000000); C.Duration_600000 = new P.Duration(600000); C.Duration_600000000 = new P.Duration(600000000); C.Duration_604800000000 = new P.Duration(6048e8); C.Duration_75000 = new P.Duration(75000); C.Duration_m38000 = new P.Duration(-38000); C.EdgeInsetsDirectional_0_0_8_0 = new V.EdgeInsetsDirectional(0, 0, 8, 0); C.EdgeInsetsDirectional_16_0_24_0 = new V.EdgeInsetsDirectional(16, 0, 24, 0); C.EdgeInsetsDirectional_16_0_4_0 = new V.EdgeInsetsDirectional(16, 0, 4, 0); C.EdgeInsetsDirectional_24_0_12_0 = new V.EdgeInsetsDirectional(24, 0, 12, 0); C.EdgeInsets_0_0_0_0 = new V.EdgeInsets(0, 0, 0, 0); C.EdgeInsets_0_0_0_10 = new V.EdgeInsets(0, 0, 0, 10); C.EdgeInsets_0_0_0_16 = new V.EdgeInsets(0, 0, 0, 16); C.EdgeInsets_0_0_0_20 = new V.EdgeInsets(0, 0, 0, 20); C.EdgeInsets_0_0_0_4 = new V.EdgeInsets(0, 0, 0, 4); C.EdgeInsets_0_0_0_6 = new V.EdgeInsets(0, 0, 0, 6); C.EdgeInsets_0_0_0_8 = new V.EdgeInsets(0, 0, 0, 8); C.EdgeInsets_0_0_10_0 = new V.EdgeInsets(0, 0, 10, 0); C.EdgeInsets_0_0_16_0 = new V.EdgeInsets(0, 0, 16, 0); C.EdgeInsets_0_0_20_0 = new V.EdgeInsets(0, 0, 20, 0); C.EdgeInsets_0_0_2_0 = new V.EdgeInsets(0, 0, 2, 0); C.EdgeInsets_0_0_4_0 = new V.EdgeInsets(0, 0, 4, 0); C.EdgeInsets_0_0_8_0 = new V.EdgeInsets(0, 0, 8, 0); C.EdgeInsets_0_10_0_0 = new V.EdgeInsets(0, 10, 0, 0); C.EdgeInsets_0_10_0_10 = new V.EdgeInsets(0, 10, 0, 10); C.EdgeInsets_0_10_10_0 = new V.EdgeInsets(0, 10, 10, 0); C.EdgeInsets_0_12_0_0 = new V.EdgeInsets(0, 12, 0, 0); C.EdgeInsets_0_12_0_12 = new V.EdgeInsets(0, 12, 0, 12); C.EdgeInsets_0_12_0_16 = new V.EdgeInsets(0, 12, 0, 16); C.EdgeInsets_0_16_0_0 = new V.EdgeInsets(0, 16, 0, 0); C.EdgeInsets_0_16_0_16 = new V.EdgeInsets(0, 16, 0, 16); C.EdgeInsets_0_16_0_8 = new V.EdgeInsets(0, 16, 0, 8); C.EdgeInsets_0_16_0_80 = new V.EdgeInsets(0, 16, 0, 80); C.EdgeInsets_0_20_0_0 = new V.EdgeInsets(0, 20, 0, 0); C.EdgeInsets_0_20_0_20 = new V.EdgeInsets(0, 20, 0, 20); C.EdgeInsets_0_22_0_0 = new V.EdgeInsets(0, 22, 0, 0); C.EdgeInsets_0_25_0_5 = new V.EdgeInsets(0, 25, 0, 5); C.EdgeInsets_0_2_0_0 = new V.EdgeInsets(0, 2, 0, 0); C.EdgeInsets_0_30_0_0 = new V.EdgeInsets(0, 30, 0, 0); C.EdgeInsets_0_32_0_0 = new V.EdgeInsets(0, 32, 0, 0); C.EdgeInsets_0_4_0_0 = new V.EdgeInsets(0, 4, 0, 0); C.EdgeInsets_0_4_0_4 = new V.EdgeInsets(0, 4, 0, 4); C.EdgeInsets_0_50_0_0 = new V.EdgeInsets(0, 50, 0, 0); C.EdgeInsets_0_52_0_0 = new V.EdgeInsets(0, 52, 0, 0); C.EdgeInsets_0_6_0_6 = new V.EdgeInsets(0, 6, 0, 6); C.EdgeInsets_0_8_0_0 = new V.EdgeInsets(0, 8, 0, 0); C.EdgeInsets_0_8_0_8 = new V.EdgeInsets(0, 8, 0, 8); C.EdgeInsets_10_0_0_0 = new V.EdgeInsets(10, 0, 0, 0); C.EdgeInsets_10_0_10_0 = new V.EdgeInsets(10, 0, 10, 0); C.EdgeInsets_10_10_10_10 = new V.EdgeInsets(10, 10, 10, 10); C.EdgeInsets_10_3_10_3 = new V.EdgeInsets(10, 3, 10, 3); C.EdgeInsets_10_4_16_4 = new V.EdgeInsets(10, 4, 16, 4); C.EdgeInsets_10_4_28_4 = new V.EdgeInsets(10, 4, 28, 4); C.EdgeInsets_12_0_12_0 = new V.EdgeInsets(12, 0, 12, 0); C.EdgeInsets_12_12_12_12 = new V.EdgeInsets(12, 12, 12, 12); C.EdgeInsets_12_12_6_0 = new V.EdgeInsets(12, 12, 6, 0); C.EdgeInsets_12_12_6_12 = new V.EdgeInsets(12, 12, 6, 12); C.EdgeInsets_12_20_12_12 = new V.EdgeInsets(12, 20, 12, 12); C.EdgeInsets_12_24_12_16 = new V.EdgeInsets(12, 24, 12, 16); C.EdgeInsets_12_8_12_8 = new V.EdgeInsets(12, 8, 12, 8); C.EdgeInsets_14_14_14_14 = new V.EdgeInsets(14, 14, 14, 14); C.EdgeInsets_16_0_0_0 = new V.EdgeInsets(16, 0, 0, 0); C.EdgeInsets_16_0_16_0 = new V.EdgeInsets(16, 0, 16, 0); C.EdgeInsets_16_0_16_10 = new V.EdgeInsets(16, 0, 16, 10); C.EdgeInsets_16_0_16_16 = new V.EdgeInsets(16, 0, 16, 16); C.EdgeInsets_16_0_16_20 = new V.EdgeInsets(16, 0, 16, 20); C.EdgeInsets_16_0_16_8 = new V.EdgeInsets(16, 0, 16, 8); C.EdgeInsets_16_16_0_16 = new V.EdgeInsets(16, 16, 0, 16); C.EdgeInsets_16_16_16_0 = new V.EdgeInsets(16, 16, 16, 0); C.EdgeInsets_16_16_16_16 = new V.EdgeInsets(16, 16, 16, 16); C.EdgeInsets_16_20_16_8 = new V.EdgeInsets(16, 20, 16, 8); C.EdgeInsets_16_24_16_24 = new V.EdgeInsets(16, 24, 16, 24); C.EdgeInsets_16_8_0_0 = new V.EdgeInsets(16, 8, 0, 0); C.EdgeInsets_16_8_16_2 = new V.EdgeInsets(16, 8, 16, 2); C.EdgeInsets_16_8_16_8 = new V.EdgeInsets(16, 8, 16, 8); C.EdgeInsets_17_8_17_8 = new V.EdgeInsets(17, 8, 17, 8); C.EdgeInsets_18_0_18_0 = new V.EdgeInsets(18, 0, 18, 0); C.EdgeInsets_18_20_18_10 = new V.EdgeInsets(18, 20, 18, 10); C.EdgeInsets_18_2_18_0 = new V.EdgeInsets(18, 2, 18, 0); C.EdgeInsets_19_16_0_16 = new V.EdgeInsets(19, 16, 0, 16); C.EdgeInsets_20_0_0_0 = new V.EdgeInsets(20, 0, 0, 0); C.EdgeInsets_20_0_20_0 = new V.EdgeInsets(20, 0, 20, 0); C.EdgeInsets_20_10_56_8 = new V.EdgeInsets(20, 10, 56, 8); C.EdgeInsets_20_16_20_16 = new V.EdgeInsets(20, 16, 20, 16); C.EdgeInsets_20_20_0_0 = new V.EdgeInsets(20, 20, 0, 0); C.EdgeInsets_20_20_20_20 = new V.EdgeInsets(20, 20, 20, 20); C.EdgeInsets_20_4_20_4 = new V.EdgeInsets(20, 4, 20, 4); C.EdgeInsets_22_22_22_22 = new V.EdgeInsets(22, 22, 22, 22); C.EdgeInsets_24_0_24_0 = new V.EdgeInsets(24, 0, 24, 0); C.EdgeInsets_24_16_24_16 = new V.EdgeInsets(24, 16, 24, 16); C.EdgeInsets_24_20_24_24 = new V.EdgeInsets(24, 20, 24, 24); C.EdgeInsets_24_24_24_0 = new V.EdgeInsets(24, 24, 24, 0); C.EdgeInsets_24_24_24_24 = new V.EdgeInsets(24, 24, 24, 24); C.EdgeInsets_25_0_25_6 = new V.EdgeInsets(25, 0, 25, 6); C.EdgeInsets_28_28_28_28 = new V.EdgeInsets(28, 28, 28, 28); C.EdgeInsets_36_24_36_24 = new V.EdgeInsets(36, 24, 36, 24); C.EdgeInsets_40_24_40_24 = new V.EdgeInsets(40, 24, 40, 24); C.EdgeInsets_4_0_0_0 = new V.EdgeInsets(4, 0, 0, 0); C.EdgeInsets_4_0_20_0 = new V.EdgeInsets(4, 0, 20, 0); C.EdgeInsets_4_0_4_0 = new V.EdgeInsets(4, 0, 4, 0); C.EdgeInsets_4_4_4_4 = new V.EdgeInsets(4, 4, 4, 4); C.EdgeInsets_4_4_4_5 = new V.EdgeInsets(4, 4, 4, 5); C.EdgeInsets_4_6_0_6 = new V.EdgeInsets(4, 6, 0, 6); C.EdgeInsets_6_0_6_0 = new V.EdgeInsets(6, 0, 6, 0); C.EdgeInsets_6_10_0_0 = new V.EdgeInsets(6, 10, 0, 0); C.EdgeInsets_6_12_12_0 = new V.EdgeInsets(6, 12, 12, 0); C.EdgeInsets_6_12_12_12 = new V.EdgeInsets(6, 12, 12, 12); C.EdgeInsets_6_12_6_0 = new V.EdgeInsets(6, 12, 6, 0); C.EdgeInsets_6_12_6_12 = new V.EdgeInsets(6, 12, 6, 12); C.EdgeInsets_6_2_0_0 = new V.EdgeInsets(6, 2, 0, 0); C.EdgeInsets_6_6_6_6 = new V.EdgeInsets(6, 6, 6, 6); C.EdgeInsets_8_0_0_0 = new V.EdgeInsets(8, 0, 0, 0); C.EdgeInsets_8_0_8_0 = new V.EdgeInsets(8, 0, 8, 0); C.EdgeInsets_8_0_8_12 = new V.EdgeInsets(8, 0, 8, 12); C.EdgeInsets_8_0_8_8 = new V.EdgeInsets(8, 0, 8, 8); C.EdgeInsets_8_2_0_4 = new V.EdgeInsets(8, 2, 0, 4); C.EdgeInsets_8_8_8_4 = new V.EdgeInsets(8, 8, 8, 4); C.EdgeInsets_8_8_8_8 = new V.EdgeInsets(8, 8, 8, 8); C.EdgeInsets_Otk = new V.EdgeInsets(0.5, 1, 0.5, 1); C.ElevatedButtonThemeData_null = new T.ElevatedButtonThemeData(null); C.EmailTemplate_credit = new T.EmailTemplate("credit"); C.EmailTemplate_custom1 = new T.EmailTemplate("custom1"); C.EmailTemplate_custom2 = new T.EmailTemplate("custom2"); C.EmailTemplate_custom3 = new T.EmailTemplate("custom3"); C.EmailTemplate_invoice = new T.EmailTemplate("invoice"); C.EmailTemplate_payment = new T.EmailTemplate("payment"); C.EmailTemplate_payment_partial = new T.EmailTemplate("payment_partial"); C.EmailTemplate_quote = new T.EmailTemplate("quote"); C.EmailTemplate_reminder1 = new T.EmailTemplate("reminder1"); C.EmailTemplate_reminder2 = new T.EmailTemplate("reminder2"); C.EmailTemplate_reminder3 = new T.EmailTemplate("reminder3"); C.EmailTemplate_reminder_endless = new T.EmailTemplate("reminder_endless"); C.EmailTemplate_statement = new T.EmailTemplate("statement"); C.EnabledState_0 = new H.EnabledState("EnabledState.noOpinion"); C.EnabledState_1 = new H.EnabledState("EnabledState.enabled"); C.EnabledState_2 = new H.EnabledState("EnabledState.disabled"); C.EntityAction_apply = new D.EntityAction("apply"); C.EntityAction_approve = new D.EntityAction("approve"); C.EntityAction_archive = new D.EntityAction("archive"); C.EntityAction_bulkEmailCredit = new D.EntityAction("bulkEmailCredit"); C.EntityAction_bulkEmailInvoice = new D.EntityAction("bulkEmailInvoice"); C.EntityAction_bulkEmailQuote = new D.EntityAction("bulkEmailQuote"); C.EntityAction_cancel = new D.EntityAction("cancel"); C.EntityAction_clientPortal = new D.EntityAction("clientPortal"); C.EntityAction_clone = new D.EntityAction("clone"); C.EntityAction_cloneToCredit = new D.EntityAction("cloneToCredit"); C.EntityAction_cloneToExpense = new D.EntityAction("cloneToExpense"); C.EntityAction_cloneToInvoice = new D.EntityAction("cloneToInvoice"); C.EntityAction_cloneToOther = new D.EntityAction("cloneToOther"); C.EntityAction_cloneToQuote = new D.EntityAction("cloneToQuote"); C.EntityAction_cloneToRecurring = new D.EntityAction("cloneToRecurring"); C.EntityAction_convertToInvoice = new D.EntityAction("convertToInvoice"); C.EntityAction_copy = new D.EntityAction("copy"); C.EntityAction_delete = new D.EntityAction("delete"); C.EntityAction_download = new D.EntityAction("download"); C.EntityAction_edit = new D.EntityAction("edit"); C.EntityAction_emailCredit = new D.EntityAction("emailCredit"); C.EntityAction_emailInvoice = new D.EntityAction("emailInvoice"); C.EntityAction_emailPayment = new D.EntityAction("emailPayment"); C.EntityAction_emailQuote = new D.EntityAction("emailQuote"); C.EntityAction_invoiceExpense = new D.EntityAction("invoiceExpense"); C.EntityAction_invoiceProject = new D.EntityAction("invoiceProject"); C.EntityAction_invoiceTask = new D.EntityAction("invoiceTask"); C.EntityAction_markPaid = new D.EntityAction("markPaid"); C.EntityAction_markSent = new D.EntityAction("markSent"); C.EntityAction_more = new D.EntityAction("more"); C.EntityAction_newClient = new D.EntityAction("newClient"); C.EntityAction_newCredit = new D.EntityAction("newCredit"); C.EntityAction_newExpense = new D.EntityAction("newExpense"); C.EntityAction_newInvoice = new D.EntityAction("newInvoice"); C.EntityAction_newPayment = new D.EntityAction("newPayment"); C.EntityAction_newProject = new D.EntityAction("newProject"); C.EntityAction_newQuote = new D.EntityAction("newQuote"); C.EntityAction_newRecurringExpense = new D.EntityAction("newRecurringExpense"); C.EntityAction_newRecurringInvoice = new D.EntityAction("newRecurringInvoice"); C.EntityAction_newRecurringQuote = new D.EntityAction("newRecurringQuote"); C.EntityAction_newTask = new D.EntityAction("newTask"); C.EntityAction_newVendor = new D.EntityAction("newVendor"); C.EntityAction_refund = new D.EntityAction("refund"); C.EntityAction_remove = new D.EntityAction("remove"); C.EntityAction_resendInvite = new D.EntityAction("resendInvite"); C.EntityAction_restore = new D.EntityAction("restore"); C.EntityAction_resume = new D.EntityAction("resume"); C.EntityAction_reverse = new D.EntityAction("reverse"); C.EntityAction_settings = new D.EntityAction("settings"); C.EntityAction_start = new D.EntityAction("start"); C.EntityAction_stop = new D.EntityAction("stop"); C.EntityAction_toggleMultiselect = new D.EntityAction("toggleMultiselect"); C.EntityAction_viewPdf = new D.EntityAction("viewPdf"); C.EntityAction_viewStatement = new D.EntityAction("viewStatement"); C.EntityState_active = new T.EntityState("active"); C.EntityState_archived = new T.EntityState("archived"); C.EntityState_deleted = new T.EntityState("deleted"); C.EntityType_client = new T.EntityType("client"); C.EntityType_company = new T.EntityType("company"); C.EntityType_companyGateway = new T.EntityType("companyGateway"); C.EntityType_contact = new T.EntityType("contact"); C.EntityType_country = new T.EntityType("country"); C.EntityType_credit = new T.EntityType("credit"); C.EntityType_currency = new T.EntityType("currency"); C.EntityType_dashboard = new T.EntityType("dashboard"); C.EntityType_dateFormat = new T.EntityType("dateFormat"); C.EntityType_design = new T.EntityType("design"); C.EntityType_document = new T.EntityType("document"); C.EntityType_expense = new T.EntityType("expense"); C.EntityType_expenseCategory = new T.EntityType("expenseCategory"); C.EntityType_font = new T.EntityType("font"); C.EntityType_gateway = new T.EntityType("gateway"); C.EntityType_gatewayToken = new T.EntityType("gatewayToken"); C.EntityType_group = new T.EntityType("group"); C.EntityType_industry = new T.EntityType("industry"); C.EntityType_invoice = new T.EntityType("invoice"); C.EntityType_invoiceItem = new T.EntityType("invoiceItem"); C.EntityType_language = new T.EntityType("language"); C.EntityType_payment = new T.EntityType("payment"); C.EntityType_paymentTerm = new T.EntityType("paymentTerm"); C.EntityType_paymentType = new T.EntityType("paymentType"); C.EntityType_product = new T.EntityType("product"); C.EntityType_project = new T.EntityType("project"); C.EntityType_quote = new T.EntityType("quote"); C.EntityType_quoteItem = new T.EntityType("quoteItem"); C.EntityType_recurringExpense = new T.EntityType("recurringExpense"); C.EntityType_recurringInvoice = new T.EntityType("recurringInvoice"); C.EntityType_recurringQuote = new T.EntityType("recurringQuote"); C.EntityType_reports = new T.EntityType("reports"); C.EntityType_settings = new T.EntityType("settings"); C.EntityType_size = new T.EntityType("size"); C.EntityType_subscription = new T.EntityType("subscription"); C.EntityType_task = new T.EntityType("task"); C.EntityType_taskStatus = new T.EntityType("taskStatus"); C.EntityType_taxRate = new T.EntityType("taxRate"); C.EntityType_timezone = new T.EntityType("timezone"); C.EntityType_token = new T.EntityType("token"); C.EntityType_user = new T.EntityType("user"); C.EntityType_vendor = new T.EntityType("vendor"); C.EntityType_vendorContact = new T.EntityType("vendorContact"); C.EntityType_webhook = new T.EntityType("webhook"); C.EventChannel_flutter_keyboard_visibility = new A.EventChannel("flutter_keyboard_visibility"); C.ExpenseReportFields_0 = new M.ExpenseReportFields("ExpenseReportFields.amount"); C.ExpenseReportFields_1 = new M.ExpenseReportFields("ExpenseReportFields.net_amount"); C.ExpenseReportFields_10 = new M.ExpenseReportFields("ExpenseReportFields.client"); C.ExpenseReportFields_11 = new M.ExpenseReportFields("ExpenseReportFields.client_balance"); C.ExpenseReportFields_12 = new M.ExpenseReportFields("ExpenseReportFields.client_address1"); C.ExpenseReportFields_13 = new M.ExpenseReportFields("ExpenseReportFields.client_address2"); C.ExpenseReportFields_14 = new M.ExpenseReportFields("ExpenseReportFields.client_shipping_address1"); C.ExpenseReportFields_15 = new M.ExpenseReportFields("ExpenseReportFields.client_shipping_address2"); C.ExpenseReportFields_16 = new M.ExpenseReportFields("ExpenseReportFields.invoice"); C.ExpenseReportFields_17 = new M.ExpenseReportFields("ExpenseReportFields.invoice_amount"); C.ExpenseReportFields_18 = new M.ExpenseReportFields("ExpenseReportFields.vendor"); C.ExpenseReportFields_19 = new M.ExpenseReportFields("ExpenseReportFields.expense1"); C.ExpenseReportFields_2 = new M.ExpenseReportFields("ExpenseReportFields.tax_amount"); C.ExpenseReportFields_20 = new M.ExpenseReportFields("ExpenseReportFields.expense2"); C.ExpenseReportFields_21 = new M.ExpenseReportFields("ExpenseReportFields.expense3"); C.ExpenseReportFields_22 = new M.ExpenseReportFields("ExpenseReportFields.expense4"); C.ExpenseReportFields_23 = new M.ExpenseReportFields("ExpenseReportFields.category"); C.ExpenseReportFields_3 = new M.ExpenseReportFields("ExpenseReportFields.transaction_reference"); C.ExpenseReportFields_4 = new M.ExpenseReportFields("ExpenseReportFields.currency"); C.ExpenseReportFields_5 = new M.ExpenseReportFields("ExpenseReportFields.date"); C.ExpenseReportFields_6 = new M.ExpenseReportFields("ExpenseReportFields.payment_date"); C.ExpenseReportFields_7 = new M.ExpenseReportFields("ExpenseReportFields.tax_rate1"); C.ExpenseReportFields_8 = new M.ExpenseReportFields("ExpenseReportFields.tax_rate2"); C.ExpenseReportFields_9 = new M.ExpenseReportFields("ExpenseReportFields.tax_rate3"); C.FileMode_0 = new P.FileMode(0); C.FileMode_1 = new P.FileMode(1); C.FileMode_2 = new P.FileMode(2); C.FileMode_3 = new P.FileMode(3); C.FileMode_4 = new P.FileMode(4); C.FileSystemEntityType_0 = new P.FileSystemEntityType(0); C.FileSystemEntityType_1 = new P.FileSystemEntityType(1); C.FileSystemEntityType_2 = new P.FileSystemEntityType(2); C.FileSystemException_sV6 = new P.FileSystemException("All nodes must have a parent.", "", null); C.FileSystemOp_0 = new Z.FileSystemOp(0); C.FileSystemOp_2 = new Z.FileSystemOp(2); C.FileSystemOp_3 = new Z.FileSystemOp(3); C.FileType_0 = new G.FileType("FileType.any"); C.FileType_1 = new G.FileType("FileType.media"); C.FileType_2 = new G.FileType("FileType.image"); C.FileType_3 = new G.FileType("FileType.video"); C.FileType_4 = new G.FileType("FileType.audio"); C.FileType_5 = new G.FileType("FileType.custom"); C.FillPatternType_0 = new S.FillPatternType("FillPatternType.forwardHatch"); C.FillPatternType_1 = new S.FillPatternType("FillPatternType.solid"); C.FilterQuality_0 = new P.FilterQuality(0, "FilterQuality.none"); C.FilterQuality_1 = new P.FilterQuality(1, "FilterQuality.low"); C.FilterQuality_2 = new P.FilterQuality(2, "FilterQuality.medium"); C.FilterQuality_3 = new P.FilterQuality(3, "FilterQuality.high"); C.FinderPatternPosition_0 = new G.FinderPatternPosition("FinderPatternPosition.topLeft"); C.FinderPatternPosition_1 = new G.FinderPatternPosition("FinderPatternPosition.topRight"); C.FinderPatternPosition_2 = new G.FinderPatternPosition("FinderPatternPosition.bottomLeft"); C.Size_0_0 = new P.Size(0, 0); C.FittedSizes_46c = new U.FittedSizes(C.Size_0_0, C.Size_0_0); C.FlexColumnWidth_1 = new S.FlexColumnWidth(1); C.FlexFit_0 = new F.FlexFit("FlexFit.tight"); C.FlexFit_1 = new F.FlexFit("FlexFit.loose"); C.SizedBox_null_38_null_null = new T.SizedBox(null, 38, null, null); C.Flexible_alm = new T.Flexible(1, C.FlexFit_1, C.SizedBox_null_38_null_null, null); C.FloatingActionButtonThemeData_IWY = new S.FloatingActionButtonThemeData(null, null, null, null, null, null, null, null, null, null, null); C.FloatingCursorDragState_0 = new N.FloatingCursorDragState("FloatingCursorDragState.Start"); C.FloatingCursorDragState_1 = new N.FloatingCursorDragState("FloatingCursorDragState.Update"); C.FloatingCursorDragState_2 = new N.FloatingCursorDragState("FloatingCursorDragState.End"); C.FloatingLabelBehavior_0 = new L.FloatingLabelBehavior("FloatingLabelBehavior.never"); C.FloatingLabelBehavior_2 = new L.FloatingLabelBehavior("FloatingLabelBehavior.always"); C.FocusHighlightMode_0 = new O.FocusHighlightMode("FocusHighlightMode.touch"); C.FocusHighlightMode_1 = new O.FocusHighlightMode("FocusHighlightMode.traditional"); C.FocusHighlightStrategy_0 = new O.FocusHighlightStrategy("FocusHighlightStrategy.automatic"); C.FocusHighlightStrategy_1 = new O.FocusHighlightStrategy("FocusHighlightStrategy.alwaysTouch"); C.FocusHighlightStrategy_2 = new O.FocusHighlightStrategy("FocusHighlightStrategy.alwaysTraditional"); C.FontStyle_0 = new P.FontStyle(0, "FontStyle.normal"); C.FontStyle_1 = new P.FontStyle(1, "FontStyle.italic"); C.FontWeight_3 = new P.FontWeight(3); C.FontWeight_4 = new P.FontWeight(4); C.FontWeight_5 = new P.FontWeight(5); C.FormatException_Qi2 = new P.FormatException("Invalid method call", null, null); C.FormatException_iDw = new P.FormatException("Expected envelope, got nothing", null, null); C.FormatException_oCg = new P.FormatException("Message corrupted", null, null); C.FormatException_oQ2 = new P.FormatException("Too many percent/permill", null, null); C.FormatException_pSr = new P.FormatException("Invalid envelope", null, null); C.FormatNumberType_0 = new Y.FormatNumberType("FormatNumberType.money"); C.FormatNumberType_1 = new Y.FormatNumberType("FormatNumberType.percent"); C.FormatNumberType_2 = new Y.FormatNumberType("FormatNumberType.int"); C.FormatNumberType_3 = new Y.FormatNumberType("FormatNumberType.double"); C.FormatNumberType_4 = new Y.FormatNumberType("FormatNumberType.inputMoney"); C.FormatNumberType_5 = new Y.FormatNumberType("FormatNumberType.inputAmount"); C.FormatNumberType_6 = new Y.FormatNumberType("FormatNumberType.duration"); C.FractionalOffset_0_0 = new X.FractionalOffset(0, 0); C.Type_BuiltMap_qd4 = H.typeLiteral("BuiltMap<@,@>"); C.Type_String_k8F = H.typeLiteral("String"); C.List_empty7 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_FullType); C.FullType_h8g = new U.FullType(C.Type_String_k8F, C.List_empty7, false); C.Type_DocumentEntity_4AN = H.typeLiteral("DocumentEntity"); C.FullType_uzh = new U.FullType(C.Type_DocumentEntity_4AN, C.List_empty7, false); C.List_B8J0 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_uzh]), type$.JSArray_legacy_FullType); C.FullType_0 = new U.FullType(C.Type_BuiltMap_qd4, C.List_B8J0, false); C.Type_QuoteUIState_WI9 = H.typeLiteral("QuoteUIState"); C.FullType_0eC = new U.FullType(C.Type_QuoteUIState_WI9, C.List_empty7, false); C.Type_CountryEntity_1Wj = H.typeLiteral("CountryEntity"); C.FullType_i9j = new U.FullType(C.Type_CountryEntity_1Wj, C.List_empty7, false); C.List_4m4 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_i9j]), type$.JSArray_legacy_FullType); C.FullType_0kM = new U.FullType(C.Type_BuiltMap_qd4, C.List_4m4, false); C.Type_BuiltList_iTR = H.typeLiteral("BuiltList<@>"); C.Type_ExpenseEntity_OLh = H.typeLiteral("ExpenseEntity"); C.FullType_UcG = new U.FullType(C.Type_ExpenseEntity_OLh, C.List_empty7, false); C.List_Min = H.setRuntimeTypeInfo(makeConstList([C.FullType_UcG]), type$.JSArray_legacy_FullType); C.FullType_0vR = new U.FullType(C.Type_BuiltList_iTR, C.List_Min, false); C.Type_PaymentUIState_kyk = H.typeLiteral("PaymentUIState"); C.FullType_1cc = new U.FullType(C.Type_PaymentUIState_kyk, C.List_empty7, false); C.Type_ModuleLayout_0mz = H.typeLiteral("ModuleLayout"); C.FullType_2No = new U.FullType(C.Type_ModuleLayout_0mz, C.List_empty7, false); C.Type_CompanyGatewayUIState_0Ae = H.typeLiteral("CompanyGatewayUIState"); C.FullType_2Px = new U.FullType(C.Type_CompanyGatewayUIState_0Ae, C.List_empty7, false); C.Type_VendorUIState_ohJ = H.typeLiteral("VendorUIState"); C.FullType_2be = new U.FullType(C.Type_VendorUIState_ohJ, C.List_empty7, false); C.Type_GroupUIState_Ejg = H.typeLiteral("GroupUIState"); C.FullType_2bx = new U.FullType(C.Type_GroupUIState_Ejg, C.List_empty7, false); C.Type_PaymentTypeEntity_3f7 = H.typeLiteral("PaymentTypeEntity"); C.FullType_G05 = new U.FullType(C.Type_PaymentTypeEntity_3f7, C.List_empty7, false); C.List_ujW = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_G05]), type$.JSArray_legacy_FullType); C.FullType_2fF = new U.FullType(C.Type_BuiltMap_qd4, C.List_ujW, false); C.Type_LedgerEntity_mHe = H.typeLiteral("LedgerEntity"); C.FullType_Nws = new U.FullType(C.Type_LedgerEntity_mHe, C.List_empty7, false); C.List_O98 = H.setRuntimeTypeInfo(makeConstList([C.FullType_Nws]), type$.JSArray_legacy_FullType); C.FullType_2jN = new U.FullType(C.Type_BuiltList_iTR, C.List_O98, false); C.Type_SubscriptionState_4CA = H.typeLiteral("SubscriptionState"); C.FullType_3BG = new U.FullType(C.Type_SubscriptionState_4CA, C.List_empty7, false); C.Type_WebhookEntity_Cfr = H.typeLiteral("WebhookEntity"); C.FullType_iL9 = new U.FullType(C.Type_WebhookEntity_Cfr, C.List_empty7, false); C.List_hCL = H.setRuntimeTypeInfo(makeConstList([C.FullType_iL9]), type$.JSArray_legacy_FullType); C.FullType_46c = new U.FullType(C.Type_BuiltList_iTR, C.List_hCL, false); C.Type_InvoiceUIState_YU8 = H.typeLiteral("InvoiceUIState"); C.FullType_4QF = new U.FullType(C.Type_InvoiceUIState_YU8, C.List_empty7, false); C.Type_TaskEntity_33h = H.typeLiteral("TaskEntity"); C.FullType_4QF0 = new U.FullType(C.Type_TaskEntity_33h, C.List_empty7, false); C.Type_BuiltListMultimap_2Mt = H.typeLiteral("BuiltListMultimap<@,@>"); C.Type_Object_xQ6 = H.typeLiteral("Object"); C.FullType_1MH = new U.FullType(C.Type_Object_xQ6, C.List_empty7, false); C.List_a1A = H.setRuntimeTypeInfo(makeConstList([C.FullType_1MH, C.FullType_1MH]), type$.JSArray_legacy_FullType); C.FullType_4Wf = new U.FullType(C.Type_BuiltListMultimap_2Mt, C.List_a1A, false); C.Type_BuiltSet_fcN = H.typeLiteral("BuiltSet<@>"); C.List_yym = H.setRuntimeTypeInfo(makeConstList([C.FullType_1MH]), type$.JSArray_legacy_FullType); C.FullType_4e8 = new U.FullType(C.Type_BuiltSet_fcN, C.List_yym, false); C.Type_DesignEntity_0 = H.typeLiteral("DesignEntity"); C.FullType_CNd = new U.FullType(C.Type_DesignEntity_0, C.List_empty7, false); C.List_cLJ = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_CNd]), type$.JSArray_legacy_FullType); C.FullType_4ig = new U.FullType(C.Type_BuiltMap_qd4, C.List_cLJ, false); C.Type_ExpenseCategoryState_58F = H.typeLiteral("ExpenseCategoryState"); C.FullType_4qm = new U.FullType(C.Type_ExpenseCategoryState_58F, C.List_empty7, false); C.Type_CurrencyEntity_nZd = H.typeLiteral("CurrencyEntity"); C.FullType_Yio = new U.FullType(C.Type_CurrencyEntity_nZd, C.List_empty7, false); C.List_SlD = H.setRuntimeTypeInfo(makeConstList([C.FullType_Yio]), type$.JSArray_legacy_FullType); C.FullType_4uk = new U.FullType(C.Type_BuiltList_iTR, C.List_SlD, false); C.Type_UserEntity_IVQ = H.typeLiteral("UserEntity"); C.FullType_oyU = new U.FullType(C.Type_UserEntity_IVQ, C.List_empty7, false); C.List_iHe = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_oyU]), type$.JSArray_legacy_FullType); C.FullType_4y3 = new U.FullType(C.Type_BuiltMap_qd4, C.List_iHe, false); C.Type_int_tHn = H.typeLiteral("int"); C.FullType_kjq = new U.FullType(C.Type_int_tHn, C.List_empty7, false); C.List_f1j = H.setRuntimeTypeInfo(makeConstList([C.FullType_kjq, C.FullType_h8g]), type$.JSArray_legacy_FullType); C.FullType_5FV = new U.FullType(C.Type_BuiltMap_qd4, C.List_f1j, false); C.Type_ContactEntity_RvJ = H.typeLiteral("ContactEntity"); C.FullType_5MH = new U.FullType(C.Type_ContactEntity_RvJ, C.List_empty7, false); C.Type_ExpenseState_yzp = H.typeLiteral("ExpenseState"); C.FullType_5OF = new U.FullType(C.Type_ExpenseState_yzp, C.List_empty7, false); C.List_UqR = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Yio]), type$.JSArray_legacy_FullType); C.FullType_5m9 = new U.FullType(C.Type_BuiltMap_qd4, C.List_UqR, false); C.Type_TaskUIState_oqK = H.typeLiteral("TaskUIState"); C.FullType_5xM = new U.FullType(C.Type_TaskUIState_oqK, C.List_empty7, false); C.Type_DocumentState_yL2 = H.typeLiteral("DocumentState"); C.FullType_61h = new U.FullType(C.Type_DocumentState_yL2, C.List_empty7, false); C.Type_UIState_sxw = H.typeLiteral("UIState"); C.FullType_69P = new U.FullType(C.Type_UIState_sxw, C.List_empty7, false); C.List_4AN = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_UcG]), type$.JSArray_legacy_FullType); C.FullType_6Ps = new U.FullType(C.Type_BuiltMap_qd4, C.List_4AN, false); C.Type_CompanyGatewayEntity_Yu9 = H.typeLiteral("CompanyGatewayEntity"); C.FullType_UQL = new U.FullType(C.Type_CompanyGatewayEntity_Yu9, C.List_empty7, false); C.List_9pl = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_UQL]), type$.JSArray_legacy_FullType); C.FullType_6Re = new U.FullType(C.Type_BuiltMap_qd4, C.List_9pl, false); C.List_CVN = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g]), type$.JSArray_legacy_FullType); C.FullType_6m4 = new U.FullType(C.Type_BuiltList_iTR, C.List_CVN, false); C.Type_DashboardUISettings_cg9 = H.typeLiteral("DashboardUISettings"); C.FullType_86y = new U.FullType(C.Type_DashboardUISettings_cg9, C.List_empty7, false); C.Type_AppLayout_co1 = H.typeLiteral("AppLayout"); C.FullType_88H = new U.FullType(C.Type_AppLayout_co1, C.List_empty7, false); C.Type_UserCompanyEntity_XrT = H.typeLiteral("UserCompanyEntity"); C.FullType_whX = new U.FullType(C.Type_UserCompanyEntity_XrT, C.List_empty7, false); C.List_gMT = H.setRuntimeTypeInfo(makeConstList([C.FullType_whX]), type$.JSArray_legacy_FullType); C.FullType_89t = new U.FullType(C.Type_BuiltList_iTR, C.List_gMT, false); C.Type_ExpenseCategoryEntity_ccl = H.typeLiteral("ExpenseCategoryEntity"); C.FullType_M6L = new U.FullType(C.Type_ExpenseCategoryEntity_ccl, C.List_empty7, false); C.List_n5x = H.setRuntimeTypeInfo(makeConstList([C.FullType_M6L]), type$.JSArray_legacy_FullType); C.FullType_8cq = new U.FullType(C.Type_BuiltList_iTR, C.List_n5x, false); C.Type_IndustryEntity_a7D = H.typeLiteral("IndustryEntity"); C.FullType_8h5 = new U.FullType(C.Type_IndustryEntity_a7D, C.List_empty7, false); C.List_zTX = H.setRuntimeTypeInfo(makeConstList([C.FullType_CNd]), type$.JSArray_legacy_FullType); C.FullType_8sg = new U.FullType(C.Type_BuiltList_iTR, C.List_zTX, false); C.Type_DateFormatEntity_OME = H.typeLiteral("DateFormatEntity"); C.FullType_gg9 = new U.FullType(C.Type_DateFormatEntity_OME, C.List_empty7, false); C.List_SZl = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_gg9]), type$.JSArray_legacy_FullType); C.FullType_9Sk = new U.FullType(C.Type_BuiltMap_qd4, C.List_SZl, false); C.Type_TaskStatusState_Dm4 = H.typeLiteral("TaskStatusState"); C.FullType_A6W = new U.FullType(C.Type_TaskStatusState_Dm4, C.List_empty7, false); C.Type_UserUIState_ymM = H.typeLiteral("UserUIState"); C.FullType_A8J0 = new U.FullType(C.Type_UserUIState_ymM, C.List_empty7, false); C.List_Ahx = H.setRuntimeTypeInfo(makeConstList([C.FullType_UQL]), type$.JSArray_legacy_FullType); C.FullType_A8J = new U.FullType(C.Type_BuiltList_iTR, C.List_Ahx, false); C.Type_WebhookUIState_HFe = H.typeLiteral("WebhookUIState"); C.FullType_AUo = new U.FullType(C.Type_WebhookUIState_HFe, C.List_empty7, false); C.Type_DateRange_avx = H.typeLiteral("DateRange"); C.FullType_AaU = new U.FullType(C.Type_DateRange_avx, C.List_empty7, false); C.Type_ClientEntity_PI2 = H.typeLiteral("ClientEntity"); C.FullType_W34 = new U.FullType(C.Type_ClientEntity_PI2, C.List_empty7, false); C.List_1ns = H.setRuntimeTypeInfo(makeConstList([C.FullType_W34]), type$.JSArray_legacy_FullType); C.FullType_Ag3 = new U.FullType(C.Type_BuiltList_iTR, C.List_1ns, false); C.Type_ProductEntity_P4I = H.typeLiteral("ProductEntity"); C.FullType_Art = new U.FullType(C.Type_ProductEntity_P4I, C.List_empty7, false); C.Type_TokenEntity_QoM = H.typeLiteral("TokenEntity"); C.FullType_Azp = new U.FullType(C.Type_TokenEntity_QoM, C.List_empty7, false); C.Type_GatewayTokenEntity_goM = H.typeLiteral("GatewayTokenEntity"); C.FullType_C0V = new U.FullType(C.Type_GatewayTokenEntity_goM, C.List_empty7, false); C.List_cQL = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Azp]), type$.JSArray_legacy_FullType); C.FullType_C42 = new U.FullType(C.Type_BuiltMap_qd4, C.List_cQL, false); C.List_6D4 = H.setRuntimeTypeInfo(makeConstList([C.FullType_5MH]), type$.JSArray_legacy_FullType); C.FullType_CFh = new U.FullType(C.Type_BuiltList_iTR, C.List_6D4, false); C.Type_GatewayEntity_kOG = H.typeLiteral("GatewayEntity"); C.FullType_uRN0 = new U.FullType(C.Type_GatewayEntity_kOG, C.List_empty7, false); C.List_mHe = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_uRN0]), type$.JSArray_legacy_FullType); C.FullType_CWG = new U.FullType(C.Type_BuiltMap_qd4, C.List_mHe, false); C.Type_PaymentEntity_Usy = H.typeLiteral("PaymentEntity"); C.FullType_CxZ0 = new U.FullType(C.Type_PaymentEntity_Usy, C.List_empty7, false); C.Type_GroupEntity_CJE = H.typeLiteral("GroupEntity"); C.FullType_Iiu = new U.FullType(C.Type_GroupEntity_CJE, C.List_empty7, false); C.List_i7B = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Iiu]), type$.JSArray_legacy_FullType); C.FullType_CxZ = new U.FullType(C.Type_BuiltMap_qd4, C.List_i7B, false); C.Type_UserTwoFactorData_wwi = H.typeLiteral("UserTwoFactorData"); C.FullType_CyS = new U.FullType(C.Type_UserTwoFactorData_wwi, C.List_empty7, false); C.Type_AppSidebarMode_ZeT = H.typeLiteral("AppSidebarMode"); C.FullType_D72 = new U.FullType(C.Type_AppSidebarMode_ZeT, C.List_empty7, false); C.Type_ProductUIState_luG = H.typeLiteral("ProductUIState"); C.FullType_DDR = new U.FullType(C.Type_ProductUIState_luG, C.List_empty7, false); C.Type_AuthState_Eo2 = H.typeLiteral("AuthState"); C.FullType_DFh = new U.FullType(C.Type_AuthState_Eo2, C.List_empty7, false); C.Type_LanguageEntity_eDt = H.typeLiteral("LanguageEntity"); C.FullType_DZ5 = new U.FullType(C.Type_LanguageEntity_eDt, C.List_empty7, false); C.Type_WebhookState_6v8 = H.typeLiteral("WebhookState"); C.FullType_EAC = new U.FullType(C.Type_WebhookState_6v8, C.List_empty7, false); C.List_vRf = H.setRuntimeTypeInfo(makeConstList([C.FullType_uzh]), type$.JSArray_legacy_FullType); C.FullType_EBZ = new U.FullType(C.Type_BuiltList_iTR, C.List_vRf, false); C.Type_ProjectUIState_osT = H.typeLiteral("ProjectUIState"); C.FullType_EOF = new U.FullType(C.Type_ProjectUIState_osT, C.List_empty7, false); C.List_fRy = H.setRuntimeTypeInfo(makeConstList([C.FullType_Iiu]), type$.JSArray_legacy_FullType); C.FullType_EOZ = new U.FullType(C.Type_BuiltList_iTR, C.List_fRy, false); C.Type_RecurringInvoiceState_qX6 = H.typeLiteral("RecurringInvoiceState"); C.FullType_Elr = new U.FullType(C.Type_RecurringInvoiceState_qX6, C.List_empty7, false); C.List_ecN = H.setRuntimeTypeInfo(makeConstList([C.FullType_Art]), type$.JSArray_legacy_FullType); C.FullType_GBo = new U.FullType(C.Type_BuiltList_iTR, C.List_ecN, false); C.Type_VendorContactEntity_2Vk = H.typeLiteral("VendorContactEntity"); C.FullType_HVD = new U.FullType(C.Type_VendorContactEntity_2Vk, C.List_empty7, false); C.Type_ProductState_jr5 = H.typeLiteral("ProductState"); C.FullType_HZ2 = new U.FullType(C.Type_ProductState_jr5, C.List_empty7, false); C.List_uCs = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_M6L]), type$.JSArray_legacy_FullType); C.FullType_HZS = new U.FullType(C.Type_BuiltMap_qd4, C.List_uCs, false); C.Type_TaxRateEntity_uQj = H.typeLiteral("TaxRateEntity"); C.FullType_ML3 = new U.FullType(C.Type_TaxRateEntity_uQj, C.List_empty7, false); C.List_fs3 = H.setRuntimeTypeInfo(makeConstList([C.FullType_ML3]), type$.JSArray_legacy_FullType); C.FullType_IIj = new U.FullType(C.Type_BuiltList_iTR, C.List_fs3, false); C.Type_TemplateEntity_Mm0 = H.typeLiteral("TemplateEntity"); C.FullType_AKW = new U.FullType(C.Type_TemplateEntity_Mm0, C.List_empty7, false); C.List_0bo = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_AKW]), type$.JSArray_legacy_FullType); C.FullType_IWk = new U.FullType(C.Type_BuiltMap_qd4, C.List_0bo, false); C.Type_EntityStatus_gc6 = H.typeLiteral("EntityStatus"); C.FullType_7N7 = new U.FullType(C.Type_EntityStatus_gc6, C.List_empty7, false); C.List_muE = H.setRuntimeTypeInfo(makeConstList([C.FullType_7N7]), type$.JSArray_legacy_FullType); C.FullType_Icb = new U.FullType(C.Type_BuiltList_iTR, C.List_muE, false); C.Type_ListUIState_46y = H.typeLiteral("ListUIState"); C.FullType_Iqz = new U.FullType(C.Type_ListUIState_46y, C.List_empty7, false); C.Type_SettingsEntity_46y = H.typeLiteral("SettingsEntity"); C.FullType_Iqz0 = new U.FullType(C.Type_SettingsEntity_46y, C.List_empty7, false); C.Type_InvoiceItemEntity_23h = H.typeLiteral("InvoiceItemEntity"); C.FullType_lqU0 = new U.FullType(C.Type_InvoiceItemEntity_23h, C.List_empty7, false); C.List_YYx = H.setRuntimeTypeInfo(makeConstList([C.FullType_lqU0]), type$.JSArray_legacy_FullType); C.FullType_JhS = new U.FullType(C.Type_BuiltList_iTR, C.List_YYx, false); C.Type_EntityState_NQk = H.typeLiteral("EntityState"); C.FullType_LCa = new U.FullType(C.Type_EntityState_NQk, C.List_empty7, false); C.List_fnD = H.setRuntimeTypeInfo(makeConstList([C.FullType_LCa]), type$.JSArray_legacy_FullType); C.FullType_JmU = new U.FullType(C.Type_BuiltList_iTR, C.List_fnD, false); C.Type_ProjectEntity_mZ3 = H.typeLiteral("ProjectEntity"); C.FullType_vbG = new U.FullType(C.Type_ProjectEntity_mZ3, C.List_empty7, false); C.List_6Fb = H.setRuntimeTypeInfo(makeConstList([C.FullType_vbG]), type$.JSArray_legacy_FullType); C.FullType_KEc = new U.FullType(C.Type_BuiltList_iTR, C.List_6Fb, false); C.Type_PaymentTermState_gkc = H.typeLiteral("PaymentTermState"); C.FullType_KIj = new U.FullType(C.Type_PaymentTermState_gkc, C.List_empty7, false); C.List_SGa = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_h8g]), type$.JSArray_legacy_FullType); C.FullType_LNO = new U.FullType(C.Type_BuiltMap_qd4, C.List_SGa, false); C.Type_ClientState_QAb = H.typeLiteral("ClientState"); C.FullType_MIo = new U.FullType(C.Type_ClientState_QAb, C.List_empty7, false); C.Type_TaxRateUIState_QAb = H.typeLiteral("TaxRateUIState"); C.FullType_MIo0 = new U.FullType(C.Type_TaxRateUIState_QAb, C.List_empty7, false); C.Type_double_K1J = H.typeLiteral("double"); C.FullType_MME = new U.FullType(C.Type_double_K1J, C.List_empty7, false); C.List_TBb = H.setRuntimeTypeInfo(makeConstList([C.FullType_HVD]), type$.JSArray_legacy_FullType); C.FullType_MO9 = new U.FullType(C.Type_BuiltList_iTR, C.List_TBb, false); C.Type_StaticDataEntity_7Re = H.typeLiteral("StaticDataEntity"); C.FullType_Met = new U.FullType(C.Type_StaticDataEntity_7Re, C.List_empty7, false); C.Type_bool_lhE = H.typeLiteral("bool"); C.FullType_MtR = new U.FullType(C.Type_bool_lhE, C.List_empty7, false); C.List_int = H.setRuntimeTypeInfo(makeConstList([C.FullType_uRN0]), type$.JSArray_legacy_FullType); C.FullType_N80 = new U.FullType(C.Type_BuiltList_iTR, C.List_int, false); C.Type_SubscriptionEntity_Wl2 = H.typeLiteral("SubscriptionEntity"); C.FullType_VCV = new U.FullType(C.Type_SubscriptionEntity_Wl2, C.List_empty7, false); C.List_02 = H.setRuntimeTypeInfo(makeConstList([C.FullType_VCV]), type$.JSArray_legacy_FullType); C.FullType_NIe = new U.FullType(C.Type_BuiltList_iTR, C.List_02, false); C.Type_ReportsUIState_YKi = H.typeLiteral("ReportsUIState"); C.FullType_NPy = new U.FullType(C.Type_ReportsUIState_YKi, C.List_empty7, false); C.Type_SubscriptionUIState_jf1 = H.typeLiteral("SubscriptionUIState"); C.FullType_NT2 = new U.FullType(C.Type_SubscriptionUIState_jf1, C.List_empty7, false); C.Type_TimezoneEntity_fPO = H.typeLiteral("TimezoneEntity"); C.FullType_bTj = new U.FullType(C.Type_TimezoneEntity_fPO, C.List_empty7, false); C.List_MIe = H.setRuntimeTypeInfo(makeConstList([C.FullType_bTj]), type$.JSArray_legacy_FullType); C.FullType_NYu = new U.FullType(C.Type_BuiltList_iTR, C.List_MIe, false); C.Type_ReportSettingsEntity_piR = H.typeLiteral("ReportSettingsEntity"); C.FullType_Zyt = new U.FullType(C.Type_ReportSettingsEntity_piR, C.List_empty7, false); C.List_6lH = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Zyt]), type$.JSArray_legacy_FullType); C.FullType_Nhy = new U.FullType(C.Type_BuiltMap_qd4, C.List_6lH, false); C.List_scn = H.setRuntimeTypeInfo(makeConstList([C.FullType_CxZ0]), type$.JSArray_legacy_FullType); C.FullType_ORM = new U.FullType(C.Type_BuiltList_iTR, C.List_scn, false); C.Type_BuiltSetMultimap_9Fi = H.typeLiteral("BuiltSetMultimap<@,@>"); C.FullType_Ofx = new U.FullType(C.Type_BuiltSetMultimap_9Fi, C.List_a1A, false); C.Type_VendorEntity_Fh9 = H.typeLiteral("VendorEntity"); C.FullType_efs = new U.FullType(C.Type_VendorEntity_Fh9, C.List_empty7, false); C.List_neu = H.setRuntimeTypeInfo(makeConstList([C.FullType_efs]), type$.JSArray_legacy_FullType); C.FullType_Pss = new U.FullType(C.Type_BuiltList_iTR, C.List_neu, false); C.List_gsm = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_iL9]), type$.JSArray_legacy_FullType); C.FullType_QKO = new U.FullType(C.Type_BuiltMap_qd4, C.List_gsm, false); C.Type_DesignState_jZd = H.typeLiteral("DesignState"); C.FullType_QKT = new U.FullType(C.Type_DesignState_jZd, C.List_empty7, false); C.Type_ActivityEntity_bvx = H.typeLiteral("ActivityEntity"); C.FullType_U4K = new U.FullType(C.Type_ActivityEntity_bvx, C.List_empty7, false); C.List_gQW = H.setRuntimeTypeInfo(makeConstList([C.FullType_U4K]), type$.JSArray_legacy_FullType); C.FullType_QWw = new U.FullType(C.Type_BuiltList_iTR, C.List_gQW, false); C.Type_EntityType_6qb = H.typeLiteral("EntityType"); C.FullType_qBb = new U.FullType(C.Type_EntityType_6qb, C.List_empty7, false); C.List_2bG = H.setRuntimeTypeInfo(makeConstList([C.FullType_qBb, C.FullType_MtR]), type$.JSArray_legacy_FullType); C.FullType_QqY = new U.FullType(C.Type_BuiltMap_qd4, C.List_2bG, false); C.Type_InvoiceScheduleEntity_26b = H.typeLiteral("InvoiceScheduleEntity"); C.FullType_M7M = new U.FullType(C.Type_InvoiceScheduleEntity_26b, C.List_empty7, false); C.List_OXJ = H.setRuntimeTypeInfo(makeConstList([C.FullType_M7M]), type$.JSArray_legacy_FullType); C.FullType_RDC = new U.FullType(C.Type_BuiltList_iTR, C.List_OXJ, false); C.Type_GroupState_QS8 = H.typeLiteral("GroupState"); C.FullType_SNv = new U.FullType(C.Type_GroupState_QS8, C.List_empty7, false); C.Type_StaticState_AgZ = H.typeLiteral("StaticState"); C.FullType_SQp0 = new U.FullType(C.Type_StaticState_AgZ, C.List_empty7, false); C.Type_TaskState_AgZ = H.typeLiteral("TaskState"); C.FullType_SQp = new U.FullType(C.Type_TaskState_AgZ, C.List_empty7, false); C.Type_PaymentableEntity_e3c = H.typeLiteral("PaymentableEntity"); C.FullType_NH6 = new U.FullType(C.Type_PaymentableEntity_e3c, C.List_empty7, false); C.List_0jy = H.setRuntimeTypeInfo(makeConstList([C.FullType_NH6]), type$.JSArray_legacy_FullType); C.FullType_U06 = new U.FullType(C.Type_BuiltList_iTR, C.List_0jy, false); C.Type_UserCompanyState_8aB = H.typeLiteral("UserCompanyState"); C.FullType_MQk = new U.FullType(C.Type_UserCompanyState_8aB, C.List_empty7, false); C.List_9Sf = H.setRuntimeTypeInfo(makeConstList([C.FullType_MQk]), type$.JSArray_legacy_FullType); C.FullType_UH2 = new U.FullType(C.Type_BuiltList_iTR, C.List_9Sf, false); C.List_IoD = H.setRuntimeTypeInfo(makeConstList([C.FullType_4QF0]), type$.JSArray_legacy_FullType); C.FullType_UWS = new U.FullType(C.Type_BuiltList_iTR, C.List_IoD, false); C.Type_TaskStatusUIState_6VO = H.typeLiteral("TaskStatusUIState"); C.FullType_Ufa = new U.FullType(C.Type_TaskStatusUIState_6VO, C.List_empty7, false); C.Type_TaskStatusEntity_wAl = H.typeLiteral("TaskStatusEntity"); C.FullType_ef4 = new U.FullType(C.Type_TaskStatusEntity_wAl, C.List_empty7, false); C.List_7z6 = H.setRuntimeTypeInfo(makeConstList([C.FullType_ef4]), type$.JSArray_legacy_FullType); C.FullType_WVg = new U.FullType(C.Type_BuiltList_iTR, C.List_7z6, false); C.Type_HistoryRecord_ato = H.typeLiteral("HistoryRecord"); C.FullType_4eO = new U.FullType(C.Type_HistoryRecord_ato, C.List_empty7, false); C.List_UEQ = H.setRuntimeTypeInfo(makeConstList([C.FullType_4eO]), type$.JSArray_legacy_FullType); C.FullType_WXJ = new U.FullType(C.Type_BuiltList_iTR, C.List_UEQ, false); C.Type_ExpenseCategoryUIState_ESz = H.typeLiteral("ExpenseCategoryUIState"); C.FullType_Xjb = new U.FullType(C.Type_ExpenseCategoryUIState_ESz, C.List_empty7, false); C.List_gkc0 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_VCV]), type$.JSArray_legacy_FullType); C.FullType_YGD = new U.FullType(C.Type_BuiltMap_qd4, C.List_gkc0, false); C.List_wEo = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_DZ5]), type$.JSArray_legacy_FullType); C.FullType_YiR = new U.FullType(C.Type_BuiltMap_qd4, C.List_wEo, false); C.Type_UserSettingsEntity_ES6 = H.typeLiteral("UserSettingsEntity"); C.FullType_Ymm = new U.FullType(C.Type_UserSettingsEntity_ES6, C.List_empty7, false); C.Type_ImportRequestMapping_WUU = H.typeLiteral("ImportRequestMapping"); C.FullType_xwA = new U.FullType(C.Type_ImportRequestMapping_WUU, C.List_empty7, false); C.List_dGI = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_xwA]), type$.JSArray_legacy_FullType); C.FullType_Yup = new U.FullType(C.Type_BuiltMap_qd4, C.List_dGI, false); C.Type_CompanyEntity_Gbn = H.typeLiteral("CompanyEntity"); C.FullType_a9P = new U.FullType(C.Type_CompanyEntity_Gbn, C.List_empty7, false); C.Type_ExpenseScheduleEntity_QWG = H.typeLiteral("ExpenseScheduleEntity"); C.FullType_yzu = new U.FullType(C.Type_ExpenseScheduleEntity_QWG, C.List_empty7, false); C.List_NS7 = H.setRuntimeTypeInfo(makeConstList([C.FullType_yzu]), type$.JSArray_legacy_FullType); C.FullType_aXU = new U.FullType(C.Type_BuiltList_iTR, C.List_NS7, false); C.Type_InvoiceHistoryEntity_1R3 = H.typeLiteral("InvoiceHistoryEntity"); C.FullType_bLp = new U.FullType(C.Type_InvoiceHistoryEntity_1R3, C.List_empty7, false); C.Type_BaseEntity_E1L = H.typeLiteral("BaseEntity"); C.FullType_i7r = new U.FullType(C.Type_BaseEntity_E1L, C.List_empty7, false); C.List_mPk = H.setRuntimeTypeInfo(makeConstList([C.FullType_i7r]), type$.JSArray_legacy_FullType); C.FullType_bQV = new U.FullType(C.Type_BuiltList_iTR, C.List_mPk, false); C.Type_2fc = H.typeLiteral("PreImportResponseEntityDetails"); C.FullType_ORf = new U.FullType(C.Type_2fc, C.List_empty7, false); C.List_EKj = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_ORf]), type$.JSArray_legacy_FullType); C.FullType_blF = new U.FullType(C.Type_BuiltMap_qd4, C.List_EKj, false); C.Type_DesignUIState_IkK = H.typeLiteral("DesignUIState"); C.FullType_cE9 = new U.FullType(C.Type_DesignUIState_IkK, C.List_empty7, false); C.Type_ProjectState_OLY = H.typeLiteral("ProjectState"); C.FullType_cEX = new U.FullType(C.Type_ProjectState_OLY, C.List_empty7, false); C.Type_InvoiceStatusEntity_mqK = H.typeLiteral("InvoiceStatusEntity"); C.FullType_ES1 = new U.FullType(C.Type_InvoiceStatusEntity_mqK, C.List_empty7, false); C.List_0ju = H.setRuntimeTypeInfo(makeConstList([C.FullType_ES1]), type$.JSArray_legacy_FullType); C.FullType_cL3 = new U.FullType(C.Type_BuiltList_iTR, C.List_0ju, false); C.Type_PaymentTermUIState_2No = H.typeLiteral("PaymentTermUIState"); C.FullType_cg9 = new U.FullType(C.Type_PaymentTermUIState_2No, C.List_empty7, false); C.Type_ClientUIState_ekJ = H.typeLiteral("ClientUIState"); C.FullType_cys = new U.FullType(C.Type_ClientUIState_ekJ, C.List_empty7, false); C.Type_UserState_WZn = H.typeLiteral("UserState"); C.FullType_d4x = new U.FullType(C.Type_UserState_WZn, C.List_empty7, false); C.Type_TaxRateState_axY = H.typeLiteral("TaxRateState"); C.FullType_dIX = new U.FullType(C.Type_TaxRateState_axY, C.List_empty7, false); C.Type_WebhookConfigurationEntity_WRw = H.typeLiteral("WebhookConfigurationEntity"); C.FullType_dct = new U.FullType(C.Type_WebhookConfigurationEntity_WRw, C.List_empty7, false); C.Type_GatewayTokenMetaEntity_AuK = H.typeLiteral("GatewayTokenMetaEntity"); C.FullType_e10 = new U.FullType(C.Type_GatewayTokenMetaEntity_AuK, C.List_empty7, false); C.List_weg = H.setRuntimeTypeInfo(makeConstList([C.FullType_oyU]), type$.JSArray_legacy_FullType); C.FullType_e7r = new U.FullType(C.Type_BuiltList_iTR, C.List_weg, false); C.Type_SettingsUIState_kvD = H.typeLiteral("SettingsUIState"); C.FullType_eFJ = new U.FullType(C.Type_SettingsUIState_kvD, C.List_empty7, false); C.FullType_eLJ = new U.FullType(C.Type_BuiltList_iTR, C.List_yym, false); C.Type_PrefStateSortField_Ekc = H.typeLiteral("PrefStateSortField"); C.FullType_00 = new U.FullType(C.Type_PrefStateSortField_Ekc, C.List_empty7, false); C.List_nD0 = H.setRuntimeTypeInfo(makeConstList([C.FullType_qBb, C.FullType_00]), type$.JSArray_legacy_FullType); C.FullType_fL6 = new U.FullType(C.Type_BuiltMap_qd4, C.List_nD0, false); C.Type_InvoiceEntity_UcM = H.typeLiteral("InvoiceEntity"); C.FullType_fXI = new U.FullType(C.Type_InvoiceEntity_UcM, C.List_empty7, false); C.Type_RecurringExpenseUIState_TTS = H.typeLiteral("RecurringExpenseUIState"); C.FullType_fs3 = new U.FullType(C.Type_RecurringExpenseUIState_TTS, C.List_empty7, false); C.Type_RecurringInvoiceUIState_Sof = H.typeLiteral("RecurringInvoiceUIState"); C.FullType_gA4 = new U.FullType(C.Type_RecurringInvoiceUIState_Sof, C.List_empty7, false); C.Type_CompanyGatewayState_ckm = H.typeLiteral("CompanyGatewayState"); C.FullType_gGD = new U.FullType(C.Type_CompanyGatewayState_ckm, C.List_empty7, false); C.Type_DatetimeFormatEntity_EyI = H.typeLiteral("DatetimeFormatEntity"); C.FullType_kqZ = new U.FullType(C.Type_DatetimeFormatEntity_EyI, C.List_empty7, false); C.List_Ht6 = H.setRuntimeTypeInfo(makeConstList([C.FullType_kqZ]), type$.JSArray_legacy_FullType); C.FullType_gsm = new U.FullType(C.Type_BuiltList_iTR, C.List_Ht6, false); C.Type_ExpenseUIState_wKu = H.typeLiteral("ExpenseUIState"); C.FullType_ivT = new U.FullType(C.Type_ExpenseUIState_wKu, C.List_empty7, false); C.List_TdU = H.setRuntimeTypeInfo(makeConstList([C.FullType_qBb]), type$.JSArray_legacy_FullType); C.FullType_kSI = new U.FullType(C.Type_BuiltList_iTR, C.List_TdU, false); C.Type_CreditUIState_pyp = H.typeLiteral("CreditUIState"); C.FullType_kiO = new U.FullType(C.Type_CreditUIState_pyp, C.List_empty7, false); C.Type_InvitationEntity_qtf = H.typeLiteral("InvitationEntity"); C.FullType_69t = new U.FullType(C.Type_InvitationEntity_qtf, C.List_empty7, false); C.List_PLv = H.setRuntimeTypeInfo(makeConstList([C.FullType_69t]), type$.JSArray_legacy_FullType); C.FullType_koo = new U.FullType(C.Type_BuiltList_iTR, C.List_PLv, false); C.List_ww80 = H.setRuntimeTypeInfo(makeConstList([C.FullType_i9j]), type$.JSArray_legacy_FullType); C.FullType_kr30 = new U.FullType(C.Type_BuiltList_iTR, C.List_ww80, false); C.List_ww81 = H.setRuntimeTypeInfo(makeConstList([C.FullType_C0V]), type$.JSArray_legacy_FullType); C.FullType_kr3 = new U.FullType(C.Type_BuiltList_iTR, C.List_ww81, false); C.Type_PaymentTermEntity_EHU = H.typeLiteral("PaymentTermEntity"); C.FullType_y87 = new U.FullType(C.Type_PaymentTermEntity_EHU, C.List_empty7, false); C.List_IJC = H.setRuntimeTypeInfo(makeConstList([C.FullType_y87]), type$.JSArray_legacy_FullType); C.FullType_kvD = new U.FullType(C.Type_BuiltList_iTR, C.List_IJC, false); C.List_yzJ = H.setRuntimeTypeInfo(makeConstList([C.FullType_8h5]), type$.JSArray_legacy_FullType); C.FullType_l2n = new U.FullType(C.Type_BuiltList_iTR, C.List_yzJ, false); C.Type_CreditState_23h = H.typeLiteral("CreditState"); C.FullType_lqU = new U.FullType(C.Type_CreditState_23h, C.List_empty7, false); C.List_44F = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_CxZ0]), type$.JSArray_legacy_FullType); C.FullType_mC7 = new U.FullType(C.Type_BuiltMap_qd4, C.List_44F, false); C.List_03 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_8h5]), type$.JSArray_legacy_FullType); C.FullType_mFp = new U.FullType(C.Type_BuiltMap_qd4, C.List_03, false); C.List_S9b = H.setRuntimeTypeInfo(makeConstList([C.FullType_G05]), type$.JSArray_legacy_FullType); C.FullType_mJb = new U.FullType(C.Type_BuiltList_iTR, C.List_S9b, false); C.List_Xy5 = H.setRuntimeTypeInfo(makeConstList([C.FullType_Azp]), type$.JSArray_legacy_FullType); C.FullType_mKc = new U.FullType(C.Type_BuiltList_iTR, C.List_Xy5, false); C.List_x2x = H.setRuntimeTypeInfo(makeConstList([C.FullType_qBb, C.FullType_6m4]), type$.JSArray_legacy_FullType); C.FullType_mVA = new U.FullType(C.Type_BuiltMap_qd4, C.List_x2x, false); C.Type_InvoiceState_YnY = H.typeLiteral("InvoiceState"); C.FullType_mXg = new U.FullType(C.Type_InvoiceState_YnY, C.List_empty7, false); C.List_w61 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_6m4]), type$.JSArray_legacy_FullType); C.FullType_mZn = new U.FullType(C.Type_BuiltMap_qd4, C.List_w61, false); C.List_fDt = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_fXI]), type$.JSArray_legacy_FullType); C.FullType_n67 = new U.FullType(C.Type_BuiltMap_qd4, C.List_fDt, false); C.Type_RecurringExpenseState_o7m = H.typeLiteral("RecurringExpenseState"); C.FullType_nrV = new U.FullType(C.Type_RecurringExpenseState_o7m, C.List_empty7, false); C.FullType_null_List_empty_false = new U.FullType(null, C.List_empty7, false); C.List_8aB = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_ML3]), type$.JSArray_legacy_FullType); C.FullType_o2l = new U.FullType(C.Type_BuiltMap_qd4, C.List_8aB, false); C.Type_FeesAndLimitsSettings_wgw = H.typeLiteral("FeesAndLimitsSettings"); C.FullType_A4t = new U.FullType(C.Type_FeesAndLimitsSettings_wgw, C.List_empty7, false); C.List_Cny = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_A4t]), type$.JSArray_legacy_FullType); C.FullType_oCX = new U.FullType(C.Type_BuiltMap_qd4, C.List_Cny, false); C.Type_DateRangeComparison_wco = H.typeLiteral("DateRangeComparison"); C.FullType_oEc = new U.FullType(C.Type_DateRangeComparison_wco, C.List_empty7, false); C.Type_SystemLogEntity_eL6 = H.typeLiteral("SystemLogEntity"); C.FullType_IFE = new U.FullType(C.Type_SystemLogEntity_eL6, C.List_empty7, false); C.List_ivT = H.setRuntimeTypeInfo(makeConstList([C.FullType_IFE]), type$.JSArray_legacy_FullType); C.FullType_oGx = new U.FullType(C.Type_BuiltList_iTR, C.List_ivT, false); C.Type_TokenUIState_bDN = H.typeLiteral("TokenUIState"); C.FullType_oeJ = new U.FullType(C.Type_TokenUIState_bDN, C.List_empty7, false); C.Type_TokenState_EOw = H.typeLiteral("TokenState"); C.FullType_ouN = new U.FullType(C.Type_TokenState_EOw, C.List_empty7, false); C.Type_SizeEntity_ROq = H.typeLiteral("SizeEntity"); C.FullType_paV = new U.FullType(C.Type_SizeEntity_ROq, C.List_empty7, false); C.List_VAd = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_paV]), type$.JSArray_legacy_FullType); C.FullType_pUI = new U.FullType(C.Type_BuiltMap_qd4, C.List_VAd, false); C.Type_RegistrationFieldEntity_k2a = H.typeLiteral("RegistrationFieldEntity"); C.FullType_mdN = new U.FullType(C.Type_RegistrationFieldEntity_k2a, C.List_empty7, false); C.List_cg9 = H.setRuntimeTypeInfo(makeConstList([C.FullType_mdN]), type$.JSArray_legacy_FullType); C.FullType_pjG = new U.FullType(C.Type_BuiltList_iTR, C.List_cg9, false); C.Type_PrefState_ePg = H.typeLiteral("PrefState"); C.FullType_qBb0 = new U.FullType(C.Type_PrefState_ePg, C.List_empty7, false); C.List_08H = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_vbG]), type$.JSArray_legacy_FullType); C.FullType_qFt = new U.FullType(C.Type_BuiltMap_qd4, C.List_08H, false); C.List_gLw = H.setRuntimeTypeInfo(makeConstList([C.FullType_6m4]), type$.JSArray_legacy_FullType); C.FullType_qwt = new U.FullType(C.Type_BuiltList_iTR, C.List_gLw, false); C.List_0yb = H.setRuntimeTypeInfo(makeConstList([C.FullType_DZ5]), type$.JSArray_legacy_FullType); C.FullType_r6h = new U.FullType(C.Type_BuiltList_iTR, C.List_0yb, false); C.List_lC7 = H.setRuntimeTypeInfo(makeConstList([C.FullType_gg9]), type$.JSArray_legacy_FullType); C.FullType_rQK = new U.FullType(C.Type_BuiltList_iTR, C.List_lC7, false); C.List_OzE = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_bTj]), type$.JSArray_legacy_FullType); C.FullType_sYl = new U.FullType(C.Type_BuiltMap_qd4, C.List_OzE, false); C.List_ouN = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_efs]), type$.JSArray_legacy_FullType); C.FullType_sav = new U.FullType(C.Type_BuiltMap_qd4, C.List_ouN, false); C.Type_PaymentState_ChD = H.typeLiteral("PaymentState"); C.FullType_sgl = new U.FullType(C.Type_PaymentState_ChD, C.List_empty7, false); C.Type_GatewayOptionsEntity_Ucj = H.typeLiteral("GatewayOptionsEntity"); C.FullType_Au4 = new U.FullType(C.Type_GatewayOptionsEntity_Ucj, C.List_empty7, false); C.List_iPu = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Au4]), type$.JSArray_legacy_FullType); C.FullType_sm9 = new U.FullType(C.Type_BuiltMap_qd4, C.List_iPu, false); C.Type_EmailTemplate_GAI = H.typeLiteral("EmailTemplate"); C.FullType_t81 = new U.FullType(C.Type_EmailTemplate_GAI, C.List_empty7, false); C.Type_HealthCheckPHPResponse_kOG = H.typeLiteral("HealthCheckPHPResponse"); C.FullType_uRN = new U.FullType(C.Type_HealthCheckPHPResponse_kOG, C.List_empty7, false); C.Type_DashboardUIState_4YB = H.typeLiteral("DashboardUIState"); C.FullType_wEo = new U.FullType(C.Type_DashboardUIState_4YB, C.List_empty7, false); C.List_y1Y = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_W34]), type$.JSArray_legacy_FullType); C.FullType_wHc = new U.FullType(C.Type_BuiltMap_qd4, C.List_y1Y, false); C.FullType_wIv = new U.FullType(C.Type_BuiltMap_qd4, C.List_a1A, false); C.List_a990 = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_y87]), type$.JSArray_legacy_FullType); C.FullType_weg = new U.FullType(C.Type_BuiltMap_qd4, C.List_a990, false); C.Type_AccountEntity_46S = H.typeLiteral("AccountEntity"); C.FullType_wg3 = new U.FullType(C.Type_AccountEntity_46S, C.List_empty7, false); C.List_skt = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_Art]), type$.JSArray_legacy_FullType); C.FullType_woD = new U.FullType(C.Type_BuiltMap_qd4, C.List_skt, false); C.List_VWp = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_4QF0]), type$.JSArray_legacy_FullType); C.FullType_woc0 = new U.FullType(C.Type_BuiltMap_qd4, C.List_VWp, false); C.List_W3L = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_ef4]), type$.JSArray_legacy_FullType); C.FullType_woc = new U.FullType(C.Type_BuiltMap_qd4, C.List_W3L, false); C.List_kHV = H.setRuntimeTypeInfo(makeConstList([C.FullType_paV]), type$.JSArray_legacy_FullType); C.FullType_wsa = new U.FullType(C.Type_BuiltList_iTR, C.List_kHV, false); C.Type_DocumentUIState_CyS = H.typeLiteral("DocumentUIState"); C.FullType_wwi = new U.FullType(C.Type_DocumentUIState_CyS, C.List_empty7, false); C.Type_VendorState_Db0 = H.typeLiteral("VendorState"); C.FullType_xI0 = new U.FullType(C.Type_VendorState_Db0, C.List_empty7, false); C.List_kSI = H.setRuntimeTypeInfo(makeConstList([C.FullType_fXI]), type$.JSArray_legacy_FullType); C.FullType_xS5 = new U.FullType(C.Type_BuiltList_iTR, C.List_kSI, false); C.Type_CompanyPrefState_Y50 = H.typeLiteral("CompanyPrefState"); C.FullType_mes = new U.FullType(C.Type_CompanyPrefState_Y50, C.List_empty7, false); C.List_b9P = H.setRuntimeTypeInfo(makeConstList([C.FullType_h8g, C.FullType_mes]), type$.JSArray_legacy_FullType); C.FullType_ym9 = new U.FullType(C.Type_BuiltMap_qd4, C.List_b9P, false); C.Type_QuoteState_aJC = H.typeLiteral("QuoteState"); C.FullType_yqa = new U.FullType(C.Type_QuoteState_aJC, C.List_empty7, false); C.GestureDisposition_0 = new D.GestureDisposition("GestureDisposition.accepted"); C.GestureDisposition_1 = new D.GestureDisposition("GestureDisposition.rejected"); C.GestureMode_0 = new H.GestureMode("GestureMode.pointerEvents"); C.GestureMode_1 = new H.GestureMode("GestureMode.browserGestures"); C.GestureRecognizerState_0 = new S.GestureRecognizerState("GestureRecognizerState.ready"); C.GestureRecognizerState_1 = new S.GestureRecognizerState("GestureRecognizerState.possible"); C.GestureRecognizerState_2 = new S.GestureRecognizerState("GestureRecognizerState.defunct"); C.GestureType_0 = new O.GestureType("GestureType.onLongPress"); C.GestureType_1 = new O.GestureType("GestureType.onTap"); C.GestureType_2 = new O.GestureType("GestureType.onHover"); C.GestureType_3 = new O.GestureType("GestureType.onDrag"); C.GrowthDirection_0 = new G.GrowthDirection("GrowthDirection.forward"); C.GrowthDirection_1 = new G.GrowthDirection("GrowthDirection.reverse"); C.HeroFlightDirection_0 = new T.HeroFlightDirection("HeroFlightDirection.push"); C.HeroFlightDirection_1 = new T.HeroFlightDirection("HeroFlightDirection.pop"); C.HitCorners_true_true = new G.HitCorners(true, true); C.HitTestBehavior_0 = new E.HitTestBehavior("HitTestBehavior.deferToChild"); C.HitTestBehavior_1 = new E.HitTestBehavior("HitTestBehavior.opaque"); C.HitTestBehavior_2 = new E.HitTestBehavior("HitTestBehavior.translucent"); C.HourFormat_0 = new Z.HourFormat("HourFormat.HH"); C.HourFormat_1 = new Z.HourFormat("HourFormat.H"); C.HourFormat_2 = new Z.HourFormat("HourFormat.h"); C.IconData_57402_MaterialIcons_null_false = new X.IconData(57402, "MaterialIcons", null, false); C.IconData_57411_MaterialIcons_null_false = new X.IconData(57411, "MaterialIcons", null, false); C.IconData_57415_MaterialIcons_null_false = new X.IconData(57415, "MaterialIcons", null, false); C.IconData_57423_MaterialIcons_null_false = new X.IconData(57423, "MaterialIcons", null, false); C.IconData_57424_MaterialIcons_null_false = new X.IconData(57424, "MaterialIcons", null, false); C.IconData_57477_MaterialIcons_null_false = new X.IconData(57477, "MaterialIcons", null, false); C.IconData_57489_MaterialIcons_null_false = new X.IconData(57489, "MaterialIcons", null, false); C.IconData_57490_MaterialIcons_null_true = new X.IconData(57490, "MaterialIcons", null, true); C.IconData_57491_MaterialIcons_null_true = new X.IconData(57491, "MaterialIcons", null, true); C.IconData_57494_MaterialIcons_null_false = new X.IconData(57494, "MaterialIcons", null, false); C.IconData_57495_MaterialIcons_null_false = new X.IconData(57495, "MaterialIcons", null, false); C.IconData_57496_MaterialIcons_null_false = new X.IconData(57496, "MaterialIcons", null, false); C.IconData_57497_MaterialIcons_null_false = new X.IconData(57497, "MaterialIcons", null, false); C.IconData_57502_MaterialIcons_null_true = new X.IconData(57502, "MaterialIcons", null, true); C.IconData_57522_MaterialIcons_null_false = new X.IconData(57522, "MaterialIcons", null, false); C.IconData_57616_MaterialIcons_null_false = new X.IconData(57616, "MaterialIcons", null, false); C.IconData_57627_MaterialIcons_null_false = new X.IconData(57627, "MaterialIcons", null, false); C.IconData_57648_MaterialIcons_null_false = new X.IconData(57648, "MaterialIcons", null, false); C.IconData_57686_MaterialIcons_null_false = new X.IconData(57686, "MaterialIcons", null, false); C.IconData_57687_MaterialIcons_null_false = new X.IconData(57687, "MaterialIcons", null, false); C.IconData_57689_MaterialIcons_null_false = new X.IconData(57689, "MaterialIcons", null, false); C.IconData_57690_MaterialIcons_null_false = new X.IconData(57690, "MaterialIcons", null, false); C.IconData_57694_MaterialIcons_null_true = new X.IconData(57694, "MaterialIcons", null, true); C.IconData_57695_MaterialIcons_null_true = new X.IconData(57695, "MaterialIcons", null, true); C.IconData_57698_MaterialIcons_null_true = new X.IconData(57698, "MaterialIcons", null, true); C.IconData_57704_MaterialIcons_null_false = new X.IconData(57704, "MaterialIcons", null, false); C.IconData_57706_MaterialIcons_null_false = new X.IconData(57706, "MaterialIcons", null, false); C.IconData_57712_MaterialIcons_null_false = new X.IconData(57712, "MaterialIcons", null, false); C.IconData_57713_MaterialIcons_null_false = new X.IconData(57713, "MaterialIcons", null, false); C.IconData_57714_MaterialIcons_null_false = new X.IconData(57714, "MaterialIcons", null, false); C.IconData_57717_MaterialIcons_null_false = new X.IconData(57717, "MaterialIcons", null, false); C.IconData_57724_MaterialIcons_null_false = new X.IconData(57724, "MaterialIcons", null, false); C.IconData_57743_MaterialIcons_null_false = new X.IconData(57743, "MaterialIcons", null, false); C.IconData_57744_MaterialIcons_null_false = new X.IconData(57744, "MaterialIcons", null, false); C.IconData_57750_MaterialIcons_null_false = new X.IconData(57750, "MaterialIcons", null, false); C.IconData_57759_MaterialIcons_null_false = new X.IconData(57759, "MaterialIcons", null, false); C.IconData_57782_MaterialIcons_null_false = new X.IconData(57782, "MaterialIcons", null, false); C.IconData_57785_MaterialIcons_null_false = new X.IconData(57785, "MaterialIcons", null, false); C.IconData_57835_MaterialIcons_null_false = new X.IconData(57835, "MaterialIcons", null, false); C.IconData_57846_MaterialIcons_null_false = new X.IconData(57846, "MaterialIcons", null, false); C.IconData_57857_MaterialIcons_null_false = new X.IconData(57857, "MaterialIcons", null, false); C.IconData_57882_MaterialIcons_null_false = new X.IconData(57882, "MaterialIcons", null, false); C.IconData_57898_MaterialIcons_null_false = new X.IconData(57898, "MaterialIcons", null, false); C.IconData_57911_MaterialIcons_null_false = new X.IconData(57911, "MaterialIcons", null, false); C.IconData_57912_MaterialIcons_null_false = new X.IconData(57912, "MaterialIcons", null, false); C.IconData_57915_MaterialIcons_null_false = new X.IconData(57915, "MaterialIcons", null, false); C.IconData_57967_MaterialIcons_null_false = new X.IconData(57967, "MaterialIcons", null, false); C.IconData_57984_MaterialIcons_null_false = new X.IconData(57984, "MaterialIcons", null, false); C.IconData_58051_MaterialIcons_null_false = new X.IconData(58051, "MaterialIcons", null, false); C.IconData_58123_MaterialIcons_null_true = new X.IconData(58123, "MaterialIcons", null, true); C.IconData_58132_MaterialIcons_null_false = new X.IconData(58132, "MaterialIcons", null, false); C.IconData_58168_MaterialIcons_null_false = new X.IconData(58168, "MaterialIcons", null, false); C.IconData_58173_MaterialIcons_null_false = new X.IconData(58173, "MaterialIcons", null, false); C.IconData_58178_MaterialIcons_null_false = new X.IconData(58178, "MaterialIcons", null, false); C.IconData_58193_MaterialIcons_null_false = new X.IconData(58193, "MaterialIcons", null, false); C.IconData_58214_MaterialIcons_null_false = new X.IconData(58214, "MaterialIcons", null, false); C.IconData_58236_MaterialIcons_null_false = new X.IconData(58236, "MaterialIcons", null, false); C.IconData_58240_MaterialIcons_null_false = new X.IconData(58240, "MaterialIcons", null, false); C.IconData_58280_MaterialIcons_null_false = new X.IconData(58280, "MaterialIcons", null, false); C.IconData_58286_MaterialIcons_null_false = new X.IconData(58286, "MaterialIcons", null, false); C.IconData_58291_MaterialIcons_null_false = new X.IconData(58291, "MaterialIcons", null, false); C.IconData_58293_MaterialIcons_null_false = new X.IconData(58293, "MaterialIcons", null, false); C.IconData_58294_MaterialIcons_null_false = new X.IconData(58294, "MaterialIcons", null, false); C.IconData_58297_MaterialIcons_null_false = new X.IconData(58297, "MaterialIcons", null, false); C.IconData_58298_MaterialIcons_null_false = new X.IconData(58298, "MaterialIcons", null, false); C.IconData_58307_MaterialIcons_null_false = new X.IconData(58307, "MaterialIcons", null, false); C.IconData_58332_MaterialIcons_null_false = new X.IconData(58332, "MaterialIcons", null, false); C.IconData_58370_MaterialIcons_null_false = new X.IconData(58370, "MaterialIcons", null, false); C.IconData_58372_MaterialIcons_null_false = new X.IconData(58372, "MaterialIcons", null, false); C.IconData_58396_MaterialIcons_null_true = new X.IconData(58396, "MaterialIcons", null, true); C.IconData_58397_MaterialIcons_null_true = new X.IconData(58397, "MaterialIcons", null, true); C.IconData_58458_MaterialIcons_null_false = new X.IconData(58458, "MaterialIcons", null, false); C.IconData_58460_MaterialIcons_null_true = new X.IconData(58460, "MaterialIcons", null, true); C.IconData_58497_MaterialIcons_null_false = new X.IconData(58497, "MaterialIcons", null, false); C.IconData_58502_MaterialIcons_null_false = new X.IconData(58502, "MaterialIcons", null, false); C.IconData_58513_MaterialIcons_null_false = new X.IconData(58513, "MaterialIcons", null, false); C.IconData_58530_MaterialIcons_null_false = new X.IconData(58530, "MaterialIcons", null, false); C.IconData_58531_MaterialIcons_null_false = new X.IconData(58531, "MaterialIcons", null, false); C.IconData_58560_MaterialIcons_null_false = new X.IconData(58560, "MaterialIcons", null, false); C.IconData_58567_MaterialIcons_null_false = new X.IconData(58567, "MaterialIcons", null, false); C.IconData_58571_MaterialIcons_null_false = new X.IconData(58571, "MaterialIcons", null, false); C.IconData_58608_MaterialIcons_null_false = new X.IconData(58608, "MaterialIcons", null, false); C.IconData_58644_MaterialIcons_null_false = new X.IconData(58644, "MaterialIcons", null, false); C.IconData_58648_MaterialIcons_null_false = new X.IconData(58648, "MaterialIcons", null, false); C.IconData_58676_MaterialIcons_null_false = new X.IconData(58676, "MaterialIcons", null, false); C.IconData_58705_MaterialIcons_null_false = new X.IconData(58705, "MaterialIcons", null, false); C.IconData_58727_MaterialIcons_null_false = new X.IconData(58727, "MaterialIcons", null, false); C.IconData_58729_MaterialIcons_null_false = new X.IconData(58729, "MaterialIcons", null, false); C.IconData_58737_MaterialIcons_null_true = new X.IconData(58737, "MaterialIcons", null, true); C.IconData_58751_MaterialIcons_null_false = new X.IconData(58751, "MaterialIcons", null, false); C.IconData_58835_MaterialIcons_null_false = new X.IconData(58835, "MaterialIcons", null, false); C.IconData_58873_MaterialIcons_null_false = new X.IconData(58873, "MaterialIcons", null, false); C.IconData_58886_MaterialIcons_null_false = new X.IconData(58886, "MaterialIcons", null, false); C.IconData_58910_MaterialIcons_null_false = new X.IconData(58910, "MaterialIcons", null, false); C.IconData_58938_MaterialIcons_null_false = new X.IconData(58938, "MaterialIcons", null, false); C.IconData_59020_MaterialIcons_null_true = new X.IconData(59020, "MaterialIcons", null, true); C.IconData_59061_MaterialIcons_null_true = new X.IconData(59061, "MaterialIcons", null, true); C.IconData_59064_MaterialIcons_null_false = new X.IconData(59064, "MaterialIcons", null, false); C.IconData_59066_MaterialIcons_null_false = new X.IconData(59066, "MaterialIcons", null, false); C.IconData_59069_MaterialIcons_null_false = new X.IconData(59069, "MaterialIcons", null, false); C.IconData_59070_MaterialIcons_null_false = new X.IconData(59070, "MaterialIcons", null, false); C.IconData_59083_MaterialIcons_null_false = new X.IconData(59083, "MaterialIcons", null, false); C.IconData_62057_MaterialIcons_null_false = new X.IconData(62057, "MaterialIcons", null, false); C.IconThemeData_Color_3707764736_null_null = new T.IconThemeData(C.Color_3707764736, null, null); C.IconThemeData_Color_4278190080_1_24 = new T.IconThemeData(C.Color_4278190080, 1, 24); C.IconThemeData_Color_4278190080_null_null = new T.IconThemeData(C.Color_4278190080, null, null); C.IconThemeData_Color_4294967295_null_null = new T.IconThemeData(C.Color_4294967295, null, null); C.IconThemeData_gsm = new T.IconThemeData(null, 0.54, null); C.IconData_57926_MaterialIcons_null_false = new X.IconData(57926, "MaterialIcons", null, false); C.Icon_8Gl = new L.Icon(C.IconData_57926_MaterialIcons_null_false, null, null, null); C.IconData_57504_MaterialIcons_null_false = new X.IconData(57504, "MaterialIcons", null, false); C.Icon_CKg = new L.Icon(C.IconData_57504_MaterialIcons_null_false, 16, null, null); C.Icon_IID = new L.Icon(C.IconData_58332_MaterialIcons_null_false, null, null, null); C.Icon_MC7 = new L.Icon(C.IconData_57496_MaterialIcons_null_false, null, null, null); C.Icon_NEt = new L.Icon(C.IconData_57882_MaterialIcons_null_false, null, null, null); C.Icon_O5U = new L.Icon(C.IconData_57706_MaterialIcons_null_false, null, null, null); C.Icon_OxR = new L.Icon(C.IconData_58727_MaterialIcons_null_false, null, null, null); C.Icon_cKo = new L.Icon(C.IconData_57694_MaterialIcons_null_true, null, null, null); C.Icon_kXN = new L.Icon(C.IconData_57502_MaterialIcons_null_true, 14, C.Color_0, null); C.IconData_57862_MaterialIcons_null_false = new X.IconData(57862, "MaterialIcons", null, false); C.Icon_m5n = new L.Icon(C.IconData_57862_MaterialIcons_null_false, null, null, null); C.IconData_57634_MaterialIcons_null_false = new X.IconData(57634, "MaterialIcons", null, false); C.Icon_vjf = new L.Icon(C.IconData_57634_MaterialIcons_null_false, null, null, null); C.Icon_wEo = new L.Icon(C.IconData_57695_MaterialIcons_null_true, null, null, null); C.Icon_yXb = new L.Icon(C.IconData_57415_MaterialIcons_null_false, null, C.Color_4294967295, null); C.ImageByteFormat_0 = new P.ImageByteFormat("ImageByteFormat.rawRgba"); C.ImageConfiguration_Eba = new M.ImageConfiguration(null, null, null, null, null, null); C.ImageRenderMethodForWeb_0 = new Z.ImageRenderMethodForWeb("ImageRenderMethodForWeb.HtmlImage"); C.ImageRenderMethodForWeb_1 = new Z.ImageRenderMethodForWeb("ImageRenderMethodForWeb.HttpGet"); C.ImageRepeat_0 = new X.ImageRepeat("ImageRepeat.repeat"); C.ImageRepeat_1 = new X.ImageRepeat("ImageRepeat.repeatX"); C.ImageRepeat_2 = new X.ImageRepeat("ImageRepeat.repeatY"); C.ImageRepeat_3 = new X.ImageRepeat("ImageRepeat.noRepeat"); C.ImageSource_0 = new E.ImageSource(); C.ImportType_csv = new B.ImportType("csv"); C.ImportType_freshbooks = new B.ImportType("freshbooks"); C.ImportType_invoice2go = new B.ImportType("invoice2go"); C.ImportType_invoicely = new B.ImportType("invoicely"); C.ImportType_json = new B.ImportType("json"); C.ImportType_waveaccounting = new B.ImportType("waveaccounting"); C.ImportType_zoho = new B.ImportType("zoho"); C.InputDecoration_so3 = new L.InputDecoration(null, null, null, null, null, null, null, null, null, null, null, null, null, true, null, null, null, false, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, true, null, null); C.InsideJustification_0 = new O.InsideJustification("InsideJustification.topStart"); C.InsideJustification_1 = new O.InsideJustification("InsideJustification.topEnd"); C.Interval_07W = new Z.Interval(0.4, 1, C.Cubic_JUR); C.Cubic_iYc = new Z.Cubic(0.1, 0, 0.45, 1); C.Interval_2ds = new Z.Interval(0.7038888888888889, 1, C.Cubic_iYc); C.Interval_75R1 = new Z.Interval(0, 0.1, C.C__Linear); C.Interval_75R2 = new Z.Interval(0, 0.25, C.C__Linear); C.Interval_75R5 = new Z.Interval(0, 0.3333333333333333, C.C__Linear); C.Interval_75R6 = new Z.Interval(0, 0.6666666666666666, C.C__Linear); C.Interval_75R = new Z.Interval(0.125, 0.25, C.C__Linear); C.Interval_75R4 = new Z.Interval(0.25, 0.5, C.C__Linear); C.Interval_75R0 = new Z.Interval(0.6, 1, C.C__Linear); C.Interval_75R3 = new Z.Interval(0.75, 1, C.C__Linear); C.Cubic_7pl = new Z.Cubic(0.2, 0, 0.8, 1); C.Interval_8Wd = new Z.Interval(0, 0.4166666666666667, C.Cubic_7pl); C.Interval_E4y = new Z.Interval(0.5, 1, C.Cubic_JUR); C.Interval_EeP = new Z.Interval(0.2075, 0.4175, C.C__Linear); C.Interval_IqE = new Z.Interval(0.4, 1, C.Cubic_ifx); C.Interval_oqF1 = new Z.Interval(0, 0.5, C.Cubic_ifx); C.Interval_oqF2 = new Z.Interval(0, 0.6, C.Cubic_ifx); C.Interval_oqF = new Z.Interval(0.25, 1, C.Cubic_ifx); C.Interval_oqF0 = new Z.Interval(0.5, 1, C.Cubic_ifx); C.Cubic_WGA = new Z.Cubic(0, 0, 0.65, 1); C.Interval_q3Z = new Z.Interval(0.5555555555555556, 0.8705555555555555, C.Cubic_WGA); C.Interval_ulv = new Z.Interval(0.0825, 0.2075, C.C__Linear); C.Cubic_XVM = new Z.Cubic(0.4, 0, 1, 1); C.Interval_unQ = new Z.Interval(0.185, 0.6016666666666667, C.Cubic_XVM); C.IntrinsicColumnWidth_1 = new S.IntrinsicColumnWidth(1); C.IntrinsicColumnWidth_null = new S.IntrinsicColumnWidth(null); C.InvoiceItemReportFields_0 = new D.InvoiceItemReportFields("InvoiceItemReportFields.productKey"); C.InvoiceItemReportFields_1 = new D.InvoiceItemReportFields("InvoiceItemReportFields.description"); C.InvoiceItemReportFields_10 = new D.InvoiceItemReportFields("InvoiceItemReportFields.custom3"); C.InvoiceItemReportFields_11 = new D.InvoiceItemReportFields("InvoiceItemReportFields.custom4"); C.InvoiceItemReportFields_12 = new D.InvoiceItemReportFields("InvoiceItemReportFields.invoiceNumber"); C.InvoiceItemReportFields_13 = new D.InvoiceItemReportFields("InvoiceItemReportFields.invoiceDate"); C.InvoiceItemReportFields_14 = new D.InvoiceItemReportFields("InvoiceItemReportFields.client"); C.InvoiceItemReportFields_15 = new D.InvoiceItemReportFields("InvoiceItemReportFields.dueDate"); C.InvoiceItemReportFields_16 = new D.InvoiceItemReportFields("InvoiceItemReportFields.hasTaxes"); C.InvoiceItemReportFields_17 = new D.InvoiceItemReportFields("InvoiceItemReportFields.taxRates"); C.InvoiceItemReportFields_18 = new D.InvoiceItemReportFields("InvoiceItemReportFields.taxAmount"); C.InvoiceItemReportFields_19 = new D.InvoiceItemReportFields("InvoiceItemReportFields.netTotal"); C.InvoiceItemReportFields_2 = new D.InvoiceItemReportFields("InvoiceItemReportFields.price"); C.InvoiceItemReportFields_3 = new D.InvoiceItemReportFields("InvoiceItemReportFields.cost"); C.InvoiceItemReportFields_4 = new D.InvoiceItemReportFields("InvoiceItemReportFields.quantity"); C.InvoiceItemReportFields_5 = new D.InvoiceItemReportFields("InvoiceItemReportFields.profit"); C.InvoiceItemReportFields_6 = new D.InvoiceItemReportFields("InvoiceItemReportFields.total"); C.InvoiceItemReportFields_7 = new D.InvoiceItemReportFields("InvoiceItemReportFields.discount"); C.InvoiceItemReportFields_8 = new D.InvoiceItemReportFields("InvoiceItemReportFields.custom1"); C.InvoiceItemReportFields_9 = new D.InvoiceItemReportFields("InvoiceItemReportFields.custom2"); C.InvoiceReportFields_0 = new X.InvoiceReportFields("InvoiceReportFields.amount"); C.InvoiceReportFields_1 = new X.InvoiceReportFields("InvoiceReportFields.balance"); C.InvoiceReportFields_10 = new X.InvoiceReportFields("InvoiceReportFields.client_country"); C.InvoiceReportFields_11 = new X.InvoiceReportFields("InvoiceReportFields.status"); C.InvoiceReportFields_12 = new X.InvoiceReportFields("InvoiceReportFields.number"); C.InvoiceReportFields_13 = new X.InvoiceReportFields("InvoiceReportFields.discount"); C.InvoiceReportFields_14 = new X.InvoiceReportFields("InvoiceReportFields.po_number"); C.InvoiceReportFields_15 = new X.InvoiceReportFields("InvoiceReportFields.date"); C.InvoiceReportFields_16 = new X.InvoiceReportFields("InvoiceReportFields.due_date"); C.InvoiceReportFields_17 = new X.InvoiceReportFields("InvoiceReportFields.age"); C.InvoiceReportFields_18 = new X.InvoiceReportFields("InvoiceReportFields.partial"); C.InvoiceReportFields_19 = new X.InvoiceReportFields("InvoiceReportFields.partial_due_date"); C.InvoiceReportFields_2 = new X.InvoiceReportFields("InvoiceReportFields.converted_amount"); C.InvoiceReportFields_20 = new X.InvoiceReportFields("InvoiceReportFields.auto_bill"); C.InvoiceReportFields_21 = new X.InvoiceReportFields("InvoiceReportFields.invoice1"); C.InvoiceReportFields_22 = new X.InvoiceReportFields("InvoiceReportFields.invoice2"); C.InvoiceReportFields_23 = new X.InvoiceReportFields("InvoiceReportFields.invoice3"); C.InvoiceReportFields_24 = new X.InvoiceReportFields("InvoiceReportFields.invoice4"); C.InvoiceReportFields_25 = new X.InvoiceReportFields("InvoiceReportFields.has_expenses"); C.InvoiceReportFields_26 = new X.InvoiceReportFields("InvoiceReportFields.has_tasks"); C.InvoiceReportFields_27 = new X.InvoiceReportFields("InvoiceReportFields.surcharge1"); C.InvoiceReportFields_28 = new X.InvoiceReportFields("InvoiceReportFields.surcharge2"); C.InvoiceReportFields_29 = new X.InvoiceReportFields("InvoiceReportFields.surcharge3"); C.InvoiceReportFields_3 = new X.InvoiceReportFields("InvoiceReportFields.converted_balance"); C.InvoiceReportFields_30 = new X.InvoiceReportFields("InvoiceReportFields.surcharge4"); C.InvoiceReportFields_31 = new X.InvoiceReportFields("InvoiceReportFields.updated_at"); C.InvoiceReportFields_32 = new X.InvoiceReportFields("InvoiceReportFields.archived_at"); C.InvoiceReportFields_33 = new X.InvoiceReportFields("InvoiceReportFields.is_deleted"); C.InvoiceReportFields_34 = new X.InvoiceReportFields("InvoiceReportFields.tax_amount"); C.InvoiceReportFields_35 = new X.InvoiceReportFields("InvoiceReportFields.net_amount"); C.InvoiceReportFields_36 = new X.InvoiceReportFields("InvoiceReportFields.net_balance"); C.InvoiceReportFields_37 = new X.InvoiceReportFields("InvoiceReportFields.reminder1_sent"); C.InvoiceReportFields_38 = new X.InvoiceReportFields("InvoiceReportFields.reminder2_sent"); C.InvoiceReportFields_39 = new X.InvoiceReportFields("InvoiceReportFields.reminder3_sent"); C.InvoiceReportFields_4 = new X.InvoiceReportFields("InvoiceReportFields.client"); C.InvoiceReportFields_40 = new X.InvoiceReportFields("InvoiceReportFields.reminder_last_sent"); C.InvoiceReportFields_41 = new X.InvoiceReportFields("InvoiceReportFields.exchange_rate"); C.InvoiceReportFields_42 = new X.InvoiceReportFields("InvoiceReportFields.public_notes"); C.InvoiceReportFields_43 = new X.InvoiceReportFields("InvoiceReportFields.private_notes"); C.InvoiceReportFields_44 = new X.InvoiceReportFields("InvoiceReportFields.client_vat_number"); C.InvoiceReportFields_45 = new X.InvoiceReportFields("InvoiceReportFields.client_city"); C.InvoiceReportFields_46 = new X.InvoiceReportFields("InvoiceReportFields.client_postal_code"); C.InvoiceReportFields_47 = new X.InvoiceReportFields("InvoiceReportFields.tax_rate1"); C.InvoiceReportFields_48 = new X.InvoiceReportFields("InvoiceReportFields.tax_rate2"); C.InvoiceReportFields_49 = new X.InvoiceReportFields("InvoiceReportFields.tax_rate3"); C.InvoiceReportFields_5 = new X.InvoiceReportFields("InvoiceReportFields.client_balance"); C.InvoiceReportFields_50 = new X.InvoiceReportFields("InvoiceReportFields.tax_name1"); C.InvoiceReportFields_51 = new X.InvoiceReportFields("InvoiceReportFields.tax_name2"); C.InvoiceReportFields_52 = new X.InvoiceReportFields("InvoiceReportFields.tax_name3"); C.InvoiceReportFields_6 = new X.InvoiceReportFields("InvoiceReportFields.client_address1"); C.InvoiceReportFields_7 = new X.InvoiceReportFields("InvoiceReportFields.client_address2"); C.InvoiceReportFields_8 = new X.InvoiceReportFields("InvoiceReportFields.client_shipping_address1"); C.InvoiceReportFields_9 = new X.InvoiceReportFields("InvoiceReportFields.client_shipping_address2"); C.JsonDecoder_null = new P.JsonDecoder(null); C.JsonEncoder_null_null = new P.JsonEncoder(null, null); C.KeyEventResult_0 = new O.KeyEventResult("KeyEventResult.handled"); C.KeyEventResult_1 = new O.KeyEventResult("KeyEventResult.ignored"); C.KeyEventResult_2 = new O.KeyEventResult("KeyEventResult.skipRemainingHandlers"); C.KeyEventType_0 = new P.KeyEventType("KeyEventType.down"); C.KeyEventType_1 = new P.KeyEventType("KeyEventType.up"); C.KeyEventType_2 = new P.KeyEventType("KeyEventType.repeat"); C.KeyboardSide_0 = new B.KeyboardSide("KeyboardSide.any"); C.KeyboardSide_3 = new B.KeyboardSide("KeyboardSide.all"); C.Latin1Decoder_false_255 = new P.Latin1Decoder(false, 255); C.Latin1Encoder_255 = new P.Latin1Encoder(255); C.LayoutPosition_0 = new X.LayoutPosition("LayoutPosition.Bottom"); C.LayoutPosition_1 = new X.LayoutPosition("LayoutPosition.FullBottom"); C.LayoutPosition_2 = new X.LayoutPosition("LayoutPosition.Top"); C.LayoutPosition_3 = new X.LayoutPosition("LayoutPosition.FullTop"); C.LayoutPosition_4 = new X.LayoutPosition("LayoutPosition.Left"); C.LayoutPosition_5 = new X.LayoutPosition("LayoutPosition.FullLeft"); C.LayoutPosition_6 = new X.LayoutPosition("LayoutPosition.Right"); C.LayoutPosition_7 = new X.LayoutPosition("LayoutPosition.FullRight"); C.LayoutPosition_8 = new X.LayoutPosition("LayoutPosition.DrawArea"); C.LegendDefaultMeasure_0 = new O.LegendDefaultMeasure("LegendDefaultMeasure.none"); C.LegendDefaultMeasure_1 = new O.LegendDefaultMeasure("LegendDefaultMeasure.sum"); C.LegendDefaultMeasure_2 = new O.LegendDefaultMeasure("LegendDefaultMeasure.average"); C.LegendDefaultMeasure_3 = new O.LegendDefaultMeasure("LegendDefaultMeasure.firstValue"); C.LegendDefaultMeasure_4 = new O.LegendDefaultMeasure("LegendDefaultMeasure.lastValue"); C.LegendTapHandling_0 = new D.LegendTapHandling("LegendTapHandling.none"); C.LegendTapHandling_1 = new D.LegendTapHandling("LegendTapHandling.hide"); C.Level_INFO_800 = new Y.Level("INFO", 800); C.Level_WARNING_900 = new Y.Level("WARNING", 900); C.LineBreakType_2 = new H.LineBreakType("LineBreakType.mandatory"); C.LineBreakResult_Z8h = new H.LineBreakResult(0, 0, 0, C.LineBreakType_2); C.LineBreakType_0 = new H.LineBreakType("LineBreakType.opportunity"); C.LineBreakType_1 = new H.LineBreakType("LineBreakType.prohibited"); C.LineBreakType_3 = new H.LineBreakType("LineBreakType.endOfText"); C.LineCharProperty_0 = new H.LineCharProperty("LineCharProperty.CM"); C.LineCharProperty_1 = new H.LineCharProperty("LineCharProperty.BA"); C.LineCharProperty_10 = new H.LineCharProperty("LineCharProperty.PO"); C.LineCharProperty_11 = new H.LineCharProperty("LineCharProperty.OP"); C.LineCharProperty_12 = new H.LineCharProperty("LineCharProperty.CP"); C.LineCharProperty_13 = new H.LineCharProperty("LineCharProperty.IS"); C.LineCharProperty_14 = new H.LineCharProperty("LineCharProperty.HY"); C.LineCharProperty_15 = new H.LineCharProperty("LineCharProperty.SY"); C.LineCharProperty_16 = new H.LineCharProperty("LineCharProperty.NU"); C.LineCharProperty_17 = new H.LineCharProperty("LineCharProperty.CL"); C.LineCharProperty_18 = new H.LineCharProperty("LineCharProperty.GL"); C.LineCharProperty_19 = new H.LineCharProperty("LineCharProperty.BB"); C.LineCharProperty_2 = new H.LineCharProperty("LineCharProperty.LF"); C.LineCharProperty_20 = new H.LineCharProperty("LineCharProperty.HL"); C.LineCharProperty_21 = new H.LineCharProperty("LineCharProperty.JL"); C.LineCharProperty_22 = new H.LineCharProperty("LineCharProperty.JV"); C.LineCharProperty_23 = new H.LineCharProperty("LineCharProperty.JT"); C.LineCharProperty_24 = new H.LineCharProperty("LineCharProperty.NS"); C.LineCharProperty_25 = new H.LineCharProperty("LineCharProperty.ZW"); C.LineCharProperty_26 = new H.LineCharProperty("LineCharProperty.ZWJ"); C.LineCharProperty_27 = new H.LineCharProperty("LineCharProperty.B2"); C.LineCharProperty_28 = new H.LineCharProperty("LineCharProperty.IN"); C.LineCharProperty_29 = new H.LineCharProperty("LineCharProperty.WJ"); C.LineCharProperty_3 = new H.LineCharProperty("LineCharProperty.BK"); C.LineCharProperty_30 = new H.LineCharProperty("LineCharProperty.ID"); C.LineCharProperty_31 = new H.LineCharProperty("LineCharProperty.EB"); C.LineCharProperty_32 = new H.LineCharProperty("LineCharProperty.H2"); C.LineCharProperty_33 = new H.LineCharProperty("LineCharProperty.H3"); C.LineCharProperty_34 = new H.LineCharProperty("LineCharProperty.CB"); C.LineCharProperty_35 = new H.LineCharProperty("LineCharProperty.RI"); C.LineCharProperty_36 = new H.LineCharProperty("LineCharProperty.EM"); C.LineCharProperty_4 = new H.LineCharProperty("LineCharProperty.CR"); C.LineCharProperty_5 = new H.LineCharProperty("LineCharProperty.SP"); C.LineCharProperty_6 = new H.LineCharProperty("LineCharProperty.EX"); C.LineCharProperty_7 = new H.LineCharProperty("LineCharProperty.QU"); C.LineCharProperty_8 = new H.LineCharProperty("LineCharProperty.AL"); C.LineCharProperty_9 = new H.LineCharProperty("LineCharProperty.PR"); C.LinePointHighlighterFollowLineType_0 = new E.LinePointHighlighterFollowLineType("LinePointHighlighterFollowLineType.nearest"); C.LinePointHighlighterFollowLineType_1 = new E.LinePointHighlighterFollowLineType("LinePointHighlighterFollowLineType.none"); C.LinePointHighlighterFollowLineType_2 = new E.LinePointHighlighterFollowLineType("LinePointHighlighterFollowLineType.all"); C.ListTileControlAffinity_0 = new Q.ListTileControlAffinity("ListTileControlAffinity.leading"); C.ListTileControlAffinity_1 = new Q.ListTileControlAffinity("ListTileControlAffinity.trailing"); C.ListTileControlAffinity_2 = new Q.ListTileControlAffinity("ListTileControlAffinity.platform"); C.ListTileStyle_0 = new Q.ListTileStyle("ListTileStyle.list"); C.ListTileStyle_1 = new Q.ListTileStyle("ListTileStyle.drawer"); C.SizedBox_null_null_null_null = new T.SizedBox(null, null, null, null); C.ListTileTheme_Drw = new Q.ListTileTheme(false, null, C.ListTileStyle_0, null, null, null, null, null, null, null, null, null, null, C.SizedBox_null_null_null_null, null); C.Type__$ExpenseCategoryState_kyj = H.typeLiteral("_$ExpenseCategoryState"); C.List_04 = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseCategoryState_58F, C.Type__$ExpenseCategoryState_kyj]), type$.JSArray_legacy_Type); C.Type__$ProjectEntity_kW8 = H.typeLiteral("_$ProjectEntity"); C.List_05 = H.setRuntimeTypeInfo(makeConstList([C.Type_ProjectEntity_mZ3, C.Type__$ProjectEntity_kW8]), type$.JSArray_legacy_Type); C.ModifierKey_0 = new B.ModifierKey("ModifierKey.controlModifier"); C.ModifierKey_1 = new B.ModifierKey("ModifierKey.shiftModifier"); C.ModifierKey_2 = new B.ModifierKey("ModifierKey.altModifier"); C.ModifierKey_3 = new B.ModifierKey("ModifierKey.metaModifier"); C.ModifierKey_4 = new B.ModifierKey("ModifierKey.capsLockModifier"); C.ModifierKey_5 = new B.ModifierKey("ModifierKey.numLockModifier"); C.ModifierKey_6 = new B.ModifierKey("ModifierKey.scrollLockModifier"); C.ModifierKey_7 = new B.ModifierKey("ModifierKey.functionModifier"); C.ModifierKey_8 = new B.ModifierKey("ModifierKey.symbolModifier"); C.List_0 = H.setRuntimeTypeInfo(makeConstList([C.ModifierKey_0, C.ModifierKey_1, C.ModifierKey_2, C.ModifierKey_3, C.ModifierKey_4, C.ModifierKey_5, C.ModifierKey_6, C.ModifierKey_7, C.ModifierKey_8]), H.findType("JSArray")); C.List_01 = H.setRuntimeTypeInfo(makeConstList([C.EmailTemplate_invoice, C.EmailTemplate_quote, C.EmailTemplate_payment, C.EmailTemplate_payment_partial, C.EmailTemplate_credit, C.EmailTemplate_statement, C.EmailTemplate_reminder1, C.EmailTemplate_reminder2, C.EmailTemplate_reminder3, C.EmailTemplate_reminder_endless, C.EmailTemplate_custom1, C.EmailTemplate_custom2, C.EmailTemplate_custom3]), type$.JSArray_legacy_EmailTemplate); C.List_00 = H.setRuntimeTypeInfo(makeConstList([C.ClientReportFields_0, C.ClientReportFields_1, C.ClientReportFields_2, C.ClientReportFields_3, C.ClientReportFields_4, C.ClientReportFields_5, C.ClientReportFields_6, C.ClientReportFields_7, C.ClientReportFields_8, C.ClientReportFields_9, C.ClientReportFields_10, C.ClientReportFields_11, C.ClientReportFields_12, C.ClientReportFields_13, C.ClientReportFields_14, C.ClientReportFields_15, C.ClientReportFields_16, C.ClientReportFields_17, C.ClientReportFields_18, C.ClientReportFields_19, C.ClientReportFields_20, C.ClientReportFields_21, C.ClientReportFields_22, C.ClientReportFields_23, C.ClientReportFields_24, C.ClientReportFields_25, C.ClientReportFields_26, C.ClientReportFields_27, C.ClientReportFields_28, C.ClientReportFields_29, C.ClientReportFields_30, C.ClientReportFields_31, C.ClientReportFields_32, C.ClientReportFields_33, C.ClientReportFields_34, C.ClientReportFields_35, C.ClientReportFields_36, C.ClientReportFields_37, C.ClientReportFields_38, C.ClientReportFields_39, C.ClientReportFields_40, C.ClientReportFields_41, C.ClientReportFields_42, C.ClientReportFields_43, C.ClientReportFields_44, C.ClientReportFields_45, C.ClientReportFields_46, C.ClientReportFields_47, C.ClientReportFields_48, C.ClientReportFields_49, C.ClientReportFields_50]), type$.JSArray_legacy_ClientReportFields); C.Type_DesignListResponse_skj = H.typeLiteral("DesignListResponse"); C.Type__$DesignListResponse_mBb = H.typeLiteral("_$DesignListResponse"); C.List_0O2 = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignListResponse_skj, C.Type__$DesignListResponse_mBb]), type$.JSArray_legacy_Type); C.List_0_1 = H.setRuntimeTypeInfo(makeConstList([0, 1]), type$.JSArray_legacy_double); C.Type_IndustryListResponse_kmC = H.typeLiteral("IndustryListResponse"); C.Type__$IndustryListResponse_gyf = H.typeLiteral("_$IndustryListResponse"); C.List_0kz = H.setRuntimeTypeInfo(makeConstList([C.Type_IndustryListResponse_kmC, C.Type__$IndustryListResponse_gyf]), type$.JSArray_legacy_Type); C.Type_InvoiceListResponse_a9P = H.typeLiteral("InvoiceListResponse"); C.Type__$InvoiceListResponse_8IM = H.typeLiteral("_$InvoiceListResponse"); C.List_0qh = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceListResponse_a9P, C.Type__$InvoiceListResponse_8IM]), type$.JSArray_legacy_Type); C.Type__$CurrencyEntity_ANW = H.typeLiteral("_$CurrencyEntity"); C.List_0sW = H.setRuntimeTypeInfo(makeConstList([C.Type_CurrencyEntity_nZd, C.Type__$CurrencyEntity_ANW]), type$.JSArray_legacy_Type); C.List_10_20_50_100 = H.setRuntimeTypeInfo(makeConstList([10, 20, 50, 100]), type$.JSArray_legacy_int); C.List_13_10 = H.setRuntimeTypeInfo(makeConstList([13, 10]), type$.JSArray_legacy_int); C.List_1_0_3_2 = H.setRuntimeTypeInfo(makeConstList([1, 0, 3, 2]), type$.JSArray_legacy_int); C.Type_CompanyItemResponse_kPa = H.typeLiteral("CompanyItemResponse"); C.Type__$CompanyItemResponse_Flu = H.typeLiteral("_$CompanyItemResponse"); C.List_1ru = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyItemResponse_kPa, C.Type__$CompanyItemResponse_Flu]), type$.JSArray_legacy_Type); C.List_200_202 = H.setRuntimeTypeInfo(makeConstList([200, 202]), type$.JSArray_legacy_int); C.Type_ExpenseStatusEntity_0 = H.typeLiteral("ExpenseStatusEntity"); C.Type__$ExpenseStatusEntity_wMy = H.typeLiteral("_$ExpenseStatusEntity"); C.List_23h = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseStatusEntity_0, C.Type__$ExpenseStatusEntity_wMy]), type$.JSArray_legacy_Type); C.FontWeight_0 = new P.FontWeight(0); C.FontWeight_1 = new P.FontWeight(1); C.FontWeight_2 = new P.FontWeight(2); C.FontWeight_6 = new P.FontWeight(6); C.FontWeight_7 = new P.FontWeight(7); C.FontWeight_8 = new P.FontWeight(8); C.List_27p = H.setRuntimeTypeInfo(makeConstList([C.FontWeight_0, C.FontWeight_1, C.FontWeight_2, C.FontWeight_3, C.FontWeight_4, C.FontWeight_5, C.FontWeight_6, C.FontWeight_7, C.FontWeight_8]), H.findType("JSArray")); C.List_2Bc = H.setRuntimeTypeInfo(makeConstList([8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8]), type$.JSArray_legacy_int); C.Type_TaskItemResponse_CXi = H.typeLiteral("TaskItemResponse"); C.Type__$TaskItemResponse_8Jr = H.typeLiteral("_$TaskItemResponse"); C.List_2DL = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskItemResponse_CXi, C.Type__$TaskItemResponse_8Jr]), type$.JSArray_legacy_Type); C.Type__$SubscriptionEntity_G1q = H.typeLiteral("_$SubscriptionEntity"); C.List_2No = H.setRuntimeTypeInfo(makeConstList([C.Type_SubscriptionEntity_Wl2, C.Type__$SubscriptionEntity_G1q]), type$.JSArray_legacy_Type); C.Type_CompanyGatewayListResponse_6aG = H.typeLiteral("CompanyGatewayListResponse"); C.Type__$CompanyGatewayListResponse_XJ7 = H.typeLiteral("_$CompanyGatewayListResponse"); C.List_2Vk2 = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyGatewayListResponse_6aG, C.Type__$CompanyGatewayListResponse_XJ7]), type$.JSArray_legacy_Type); C.List_2Vk = H.setRuntimeTypeInfo(makeConstList([0, 0, 32776, 33792, 1, 10240, 0, 0]), type$.JSArray_legacy_int); C.List_2Vk0 = H.setRuntimeTypeInfo(makeConstList([1, 2, 5, 10, 50, 100, 500, 1000]), type$.JSArray_legacy_int); C.List_2Vk1 = H.setRuntimeTypeInfo(makeConstList([47, 47, 47, 47, 72, 97, 122, 147]), type$.JSArray_legacy_int); C.Type__$ExpenseScheduleEntity_4uk = H.typeLiteral("_$ExpenseScheduleEntity"); C.List_2Z6 = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseScheduleEntity_QWG, C.Type__$ExpenseScheduleEntity_4uk]), type$.JSArray_legacy_Type); C.List_2Zi = H.setRuntimeTypeInfo(makeConstList(["*::class", "*::dir", "*::draggable", "*::hidden", "*::id", "*::inert", "*::itemprop", "*::itemref", "*::itemscope", "*::lang", "*::spellcheck", "*::title", "*::translate", "A::accesskey", "A::coords", "A::hreflang", "A::name", "A::shape", "A::tabindex", "A::target", "A::type", "AREA::accesskey", "AREA::alt", "AREA::coords", "AREA::nohref", "AREA::shape", "AREA::tabindex", "AREA::target", "AUDIO::controls", "AUDIO::loop", "AUDIO::mediagroup", "AUDIO::muted", "AUDIO::preload", "BDO::dir", "BODY::alink", "BODY::bgcolor", "BODY::link", "BODY::text", "BODY::vlink", "BR::clear", "BUTTON::accesskey", "BUTTON::disabled", "BUTTON::name", "BUTTON::tabindex", "BUTTON::type", "BUTTON::value", "CANVAS::height", "CANVAS::width", "CAPTION::align", "COL::align", "COL::char", "COL::charoff", "COL::span", "COL::valign", "COL::width", "COLGROUP::align", "COLGROUP::char", "COLGROUP::charoff", "COLGROUP::span", "COLGROUP::valign", "COLGROUP::width", "COMMAND::checked", "COMMAND::command", "COMMAND::disabled", "COMMAND::label", "COMMAND::radiogroup", "COMMAND::type", "DATA::value", "DEL::datetime", "DETAILS::open", "DIR::compact", "DIV::align", "DL::compact", "FIELDSET::disabled", "FONT::color", "FONT::face", "FONT::size", "FORM::accept", "FORM::autocomplete", "FORM::enctype", "FORM::method", "FORM::name", "FORM::novalidate", "FORM::target", "FRAME::name", "H1::align", "H2::align", "H3::align", "H4::align", "H5::align", "H6::align", "HR::align", "HR::noshade", "HR::size", "HR::width", "HTML::version", "IFRAME::align", "IFRAME::frameborder", "IFRAME::height", "IFRAME::marginheight", "IFRAME::marginwidth", "IFRAME::width", "IMG::align", "IMG::alt", "IMG::border", "IMG::height", "IMG::hspace", "IMG::ismap", "IMG::name", "IMG::usemap", "IMG::vspace", "IMG::width", "INPUT::accept", "INPUT::accesskey", "INPUT::align", "INPUT::alt", "INPUT::autocomplete", "INPUT::autofocus", "INPUT::checked", "INPUT::disabled", "INPUT::inputmode", "INPUT::ismap", "INPUT::list", "INPUT::max", "INPUT::maxlength", "INPUT::min", "INPUT::multiple", "INPUT::name", "INPUT::placeholder", "INPUT::readonly", "INPUT::required", "INPUT::size", "INPUT::step", "INPUT::tabindex", "INPUT::type", "INPUT::usemap", "INPUT::value", "INS::datetime", "KEYGEN::disabled", "KEYGEN::keytype", "KEYGEN::name", "LABEL::accesskey", "LABEL::for", "LEGEND::accesskey", "LEGEND::align", "LI::type", "LI::value", "LINK::sizes", "MAP::name", "MENU::compact", "MENU::label", "MENU::type", "METER::high", "METER::low", "METER::max", "METER::min", "METER::value", "OBJECT::typemustmatch", "OL::compact", "OL::reversed", "OL::start", "OL::type", "OPTGROUP::disabled", "OPTGROUP::label", "OPTION::disabled", "OPTION::label", "OPTION::selected", "OPTION::value", "OUTPUT::for", "OUTPUT::name", "P::align", "PRE::width", "PROGRESS::max", "PROGRESS::min", "PROGRESS::value", "SELECT::autocomplete", "SELECT::disabled", "SELECT::multiple", "SELECT::name", "SELECT::required", "SELECT::size", "SELECT::tabindex", "SOURCE::type", "TABLE::align", "TABLE::bgcolor", "TABLE::border", "TABLE::cellpadding", "TABLE::cellspacing", "TABLE::frame", "TABLE::rules", "TABLE::summary", "TABLE::width", "TBODY::align", "TBODY::char", "TBODY::charoff", "TBODY::valign", "TD::abbr", "TD::align", "TD::axis", "TD::bgcolor", "TD::char", "TD::charoff", "TD::colspan", "TD::headers", "TD::height", "TD::nowrap", "TD::rowspan", "TD::scope", "TD::valign", "TD::width", "TEXTAREA::accesskey", "TEXTAREA::autocomplete", "TEXTAREA::cols", "TEXTAREA::disabled", "TEXTAREA::inputmode", "TEXTAREA::name", "TEXTAREA::placeholder", "TEXTAREA::readonly", "TEXTAREA::required", "TEXTAREA::rows", "TEXTAREA::tabindex", "TEXTAREA::wrap", "TFOOT::align", "TFOOT::char", "TFOOT::charoff", "TFOOT::valign", "TH::abbr", "TH::align", "TH::axis", "TH::bgcolor", "TH::char", "TH::charoff", "TH::colspan", "TH::headers", "TH::height", "TH::nowrap", "TH::rowspan", "TH::scope", "TH::valign", "TH::width", "THEAD::align", "THEAD::char", "THEAD::charoff", "THEAD::valign", "TR::align", "TR::bgcolor", "TR::char", "TR::charoff", "TR::valign", "TRACK::default", "TRACK::kind", "TRACK::label", "TRACK::srclang", "UL::compact", "UL::type", "VIDEO::controls", "VIDEO::height", "VIDEO::loop", "VIDEO::mediagroup", "VIDEO::muted", "VIDEO::preload", "VIDEO::width"]), type$.JSArray_legacy_String); C.Type_ExpenseListResponse_hHc = H.typeLiteral("ExpenseListResponse"); C.Type__$ExpenseListResponse_2nP = H.typeLiteral("_$ExpenseListResponse"); C.List_2nm = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseListResponse_hHc, C.Type__$ExpenseListResponse_2nP]), type$.JSArray_legacy_Type); C.Type__$CompanyGatewayEntity_qV6 = H.typeLiteral("_$CompanyGatewayEntity"); C.List_2uL = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyGatewayEntity_Yu9, C.Type__$CompanyGatewayEntity_qV6]), type$.JSArray_legacy_Type); C.List_304 = H.setRuntimeTypeInfo(makeConstList([304]), type$.JSArray_legacy_int); C.Type_DatetimeFormatItemResponse_ww8 = H.typeLiteral("DatetimeFormatItemResponse"); C.Type__$DatetimeFormatItemResponse_ohJ = H.typeLiteral("_$DatetimeFormatItemResponse"); C.List_3GN = H.setRuntimeTypeInfo(makeConstList([C.Type_DatetimeFormatItemResponse_ww8, C.Type__$DatetimeFormatItemResponse_ohJ]), type$.JSArray_legacy_Type); C.Type__$GroupState_mmH = H.typeLiteral("_$GroupState"); C.List_3IR = H.setRuntimeTypeInfo(makeConstList([C.Type_GroupState_QS8, C.Type__$GroupState_mmH]), type$.JSArray_legacy_Type); C.List_3US = H.setRuntimeTypeInfo(makeConstList(["S", "M", "T", "W", "T", "F", "S"]), type$.JSArray_legacy_String); C.Type__$TaskStatusEntity_1Wj = H.typeLiteral("_$TaskStatusEntity"); C.List_4MM = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskStatusEntity_wAl, C.Type__$TaskStatusEntity_1Wj]), type$.JSArray_legacy_Type); C.Type__$CompanyGatewayUIState_Vs0 = H.typeLiteral("_$CompanyGatewayUIState"); C.List_56s = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyGatewayUIState_0Ae, C.Type__$CompanyGatewayUIState_Vs0]), type$.JSArray_legacy_Type); C.Type_EIw = H.typeLiteral("_$PreImportResponseEntityDetails"); C.List_5U9 = H.setRuntimeTypeInfo(makeConstList([C.Type_2fc, C.Type_EIw]), type$.JSArray_legacy_Type); C.List_5_6 = H.setRuntimeTypeInfo(makeConstList([5, 6]), type$.JSArray_legacy_int); C.Type_DateFormatItemResponse_KBd = H.typeLiteral("DateFormatItemResponse"); C.Type__$DateFormatItemResponse_WTK = H.typeLiteral("_$DateFormatItemResponse"); C.List_5dG = H.setRuntimeTypeInfo(makeConstList([C.Type_DateFormatItemResponse_KBd, C.Type__$DateFormatItemResponse_WTK]), type$.JSArray_legacy_Type); C.Type__$DesignUIState_C1B = H.typeLiteral("_$DesignUIState"); C.List_5uk = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignUIState_IkK, C.Type__$DesignUIState_C1B]), type$.JSArray_legacy_Type); C.Type_DocumentItemResponse_E9t = H.typeLiteral("DocumentItemResponse"); C.Type__$DocumentItemResponse_okl = H.typeLiteral("_$DocumentItemResponse"); C.List_65l = H.setRuntimeTypeInfo(makeConstList([C.Type_DocumentItemResponse_E9t, C.Type__$DocumentItemResponse_okl]), type$.JSArray_legacy_Type); C.Type__$ProductUIState_6YB = H.typeLiteral("_$ProductUIState"); C.List_6H2 = H.setRuntimeTypeInfo(makeConstList([C.Type_ProductUIState_luG, C.Type__$ProductUIState_6YB]), type$.JSArray_legacy_Type); C.Type__$PaymentEntity_PTm = H.typeLiteral("_$PaymentEntity"); C.List_6PY = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentEntity_Usy, C.Type__$PaymentEntity_PTm]), type$.JSArray_legacy_Type); C.Type__$IndustryEntity_Mld = H.typeLiteral("_$IndustryEntity"); C.List_6n0 = H.setRuntimeTypeInfo(makeConstList([C.Type_IndustryEntity_a7D, C.Type__$IndustryEntity_Mld]), type$.JSArray_legacy_Type); C.List_6xs = H.setRuntimeTypeInfo(makeConstList(["Before Christ", "Anno Domini"]), type$.JSArray_legacy_String); C.TaskReportFields_0 = new E.TaskReportFields("TaskReportFields.rate"); C.TaskReportFields_1 = new E.TaskReportFields("TaskReportFields.calculated_rate"); C.TaskReportFields_2 = new E.TaskReportFields("TaskReportFields.start_time"); C.TaskReportFields_3 = new E.TaskReportFields("TaskReportFields.end_time"); C.TaskReportFields_4 = new E.TaskReportFields("TaskReportFields.duration"); C.TaskReportFields_5 = new E.TaskReportFields("TaskReportFields.description"); C.TaskReportFields_6 = new E.TaskReportFields("TaskReportFields.invoice"); C.TaskReportFields_7 = new E.TaskReportFields("TaskReportFields.invoice_amount"); C.TaskReportFields_8 = new E.TaskReportFields("TaskReportFields.invoice_date"); C.TaskReportFields_9 = new E.TaskReportFields("TaskReportFields.invoice_due_date"); C.TaskReportFields_10 = new E.TaskReportFields("TaskReportFields.project"); C.TaskReportFields_11 = new E.TaskReportFields("TaskReportFields.client"); C.TaskReportFields_12 = new E.TaskReportFields("TaskReportFields.client_balance"); C.TaskReportFields_13 = new E.TaskReportFields("TaskReportFields.client_address1"); C.TaskReportFields_14 = new E.TaskReportFields("TaskReportFields.client_address2"); C.TaskReportFields_15 = new E.TaskReportFields("TaskReportFields.client_shipping_address1"); C.TaskReportFields_16 = new E.TaskReportFields("TaskReportFields.client_shipping_address2"); C.TaskReportFields_17 = new E.TaskReportFields("TaskReportFields.task1"); C.TaskReportFields_18 = new E.TaskReportFields("TaskReportFields.task2"); C.TaskReportFields_19 = new E.TaskReportFields("TaskReportFields.task3"); C.TaskReportFields_20 = new E.TaskReportFields("TaskReportFields.task4"); C.TaskReportFields_21 = new E.TaskReportFields("TaskReportFields.status"); C.List_7BT = H.setRuntimeTypeInfo(makeConstList([C.TaskReportFields_0, C.TaskReportFields_1, C.TaskReportFields_2, C.TaskReportFields_3, C.TaskReportFields_4, C.TaskReportFields_5, C.TaskReportFields_6, C.TaskReportFields_7, C.TaskReportFields_8, C.TaskReportFields_9, C.TaskReportFields_10, C.TaskReportFields_11, C.TaskReportFields_12, C.TaskReportFields_13, C.TaskReportFields_14, C.TaskReportFields_15, C.TaskReportFields_16, C.TaskReportFields_17, C.TaskReportFields_18, C.TaskReportFields_19, C.TaskReportFields_20, C.TaskReportFields_21]), type$.JSArray_legacy_TaskReportFields); C.Type_CreditListResponse_GRu = H.typeLiteral("CreditListResponse"); C.Type__$CreditListResponse_G79 = H.typeLiteral("_$CreditListResponse"); C.List_86y = H.setRuntimeTypeInfo(makeConstList([C.Type_CreditListResponse_GRu, C.Type__$CreditListResponse_G79]), type$.JSArray_legacy_Type); C.Type_TaskListResponse_2Px = H.typeLiteral("TaskListResponse"); C.Type__$TaskListResponse_Met = H.typeLiteral("_$TaskListResponse"); C.List_86y0 = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskListResponse_2Px, C.Type__$TaskListResponse_Met]), type$.JSArray_legacy_Type); C.Type_SizeListResponse_gbq = H.typeLiteral("SizeListResponse"); C.Type__$SizeListResponse_4Q6 = H.typeLiteral("_$SizeListResponse"); C.List_8Gh = H.setRuntimeTypeInfo(makeConstList([C.Type_SizeListResponse_gbq, C.Type__$SizeListResponse_4Q6]), type$.JSArray_legacy_Type); C.List_8Gl = H.setRuntimeTypeInfo(makeConstList([C.CreditReportFields_0, C.CreditReportFields_1, C.CreditReportFields_2, C.CreditReportFields_3, C.CreditReportFields_4, C.CreditReportFields_5, C.CreditReportFields_6, C.CreditReportFields_7, C.CreditReportFields_8, C.CreditReportFields_9, C.CreditReportFields_10, C.CreditReportFields_11, C.CreditReportFields_12, C.CreditReportFields_13, C.CreditReportFields_14, C.CreditReportFields_15, C.CreditReportFields_16, C.CreditReportFields_17, C.CreditReportFields_18, C.CreditReportFields_19, C.CreditReportFields_20, C.CreditReportFields_21, C.CreditReportFields_22, C.CreditReportFields_23, C.CreditReportFields_24, C.CreditReportFields_25, C.CreditReportFields_26, C.CreditReportFields_27, C.CreditReportFields_28, C.CreditReportFields_29, C.CreditReportFields_30, C.CreditReportFields_31, C.CreditReportFields_32, C.CreditReportFields_33, C.CreditReportFields_34, C.CreditReportFields_35, C.CreditReportFields_36, C.CreditReportFields_37, C.CreditReportFields_38, C.CreditReportFields_39, C.CreditReportFields_40, C.CreditReportFields_41, C.CreditReportFields_42, C.CreditReportFields_43, C.CreditReportFields_44, C.CreditReportFields_45]), type$.JSArray_legacy_CreditReportFields); C.Type__$StaticState_pYG = H.typeLiteral("_$StaticState"); C.List_8LU = H.setRuntimeTypeInfo(makeConstList([C.Type_StaticState_AgZ, C.Type__$StaticState_pYG]), type$.JSArray_legacy_Type); C.Type__$InvoiceStatusEntity_ecN = H.typeLiteral("_$InvoiceStatusEntity"); C.List_8aB0 = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceStatusEntity_mqK, C.Type__$InvoiceStatusEntity_ecN]), type$.JSArray_legacy_Type); C.Type__$RecurringInvoiceState_Qk1 = H.typeLiteral("_$RecurringInvoiceState"); C.List_8zm = H.setRuntimeTypeInfo(makeConstList([C.Type_RecurringInvoiceState_qX6, C.Type__$RecurringInvoiceState_Qk1]), type$.JSArray_legacy_Type); C.Type__$TemplateEntity_4BO = H.typeLiteral("_$TemplateEntity"); C.List_9e5 = H.setRuntimeTypeInfo(makeConstList([C.Type_TemplateEntity_Mm0, C.Type__$TemplateEntity_4BO]), type$.JSArray_legacy_Type); C.Type__$UserUIState_GZK = H.typeLiteral("_$UserUIState"); C.List_9rO = H.setRuntimeTypeInfo(makeConstList([C.Type_UserUIState_ymM, C.Type__$UserUIState_GZK]), type$.JSArray_legacy_Type); C.Type__$InvoiceHistoryEntity_Kaw = H.typeLiteral("_$InvoiceHistoryEntity"); C.List_AKW = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceHistoryEntity_1R3, C.Type__$InvoiceHistoryEntity_Kaw]), type$.JSArray_legacy_Type); C.List_ALf = H.setRuntimeTypeInfo(makeConstList(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]), type$.JSArray_legacy_String); C.List_AM_PM = H.setRuntimeTypeInfo(makeConstList(["AM", "PM"]), type$.JSArray_legacy_String); C.Type__$TaxRateEntity_4H8 = H.typeLiteral("_$TaxRateEntity"); C.List_AOK = H.setRuntimeTypeInfo(makeConstList([C.Type_TaxRateEntity_uQj, C.Type__$TaxRateEntity_4H8]), type$.JSArray_legacy_Type); C.Type__$FeesAndLimitsSettings_zio = H.typeLiteral("_$FeesAndLimitsSettings"); C.List_AcR = H.setRuntimeTypeInfo(makeConstList([C.Type_FeesAndLimitsSettings_wgw, C.Type__$FeesAndLimitsSettings_zio]), type$.JSArray_legacy_Type); C.List_AyI = H.setRuntimeTypeInfo(makeConstList([0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 16, 17, 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29]), type$.JSArray_legacy_int); C.List_B8J = H.setRuntimeTypeInfo(makeConstList([0, 1996959894, 3993919788, 2567524794, 124634137, 1886057615, 3915621685, 2657392035, 249268274, 2044508324, 3772115230, 2547177864, 162941995, 2125561021, 3887607047, 2428444049, 498536548, 1789927666, 4089016648, 2227061214, 450548861, 1843258603, 4107580753, 2211677639, 325883990, 1684777152, 4251122042, 2321926636, 335633487, 1661365465, 4195302755, 2366115317, 997073096, 1281953886, 3579855332, 2724688242, 1006888145, 1258607687, 3524101629, 2768942443, 901097722, 1119000684, 3686517206, 2898065728, 853044451, 1172266101, 3705015759, 2882616665, 651767980, 1373503546, 3369554304, 3218104598, 565507253, 1454621731, 3485111705, 3099436303, 671266974, 1594198024, 3322730930, 2970347812, 795835527, 1483230225, 3244367275, 3060149565, 1994146192, 31158534, 2563907772, 4023717930, 1907459465, 112637215, 2680153253, 3904427059, 2013776290, 251722036, 2517215374, 3775830040, 2137656763, 141376813, 2439277719, 3865271297, 1802195444, 476864866, 2238001368, 4066508878, 1812370925, 453092731, 2181625025, 4111451223, 1706088902, 314042704, 2344532202, 4240017532, 1658658271, 366619977, 2362670323, 4224994405, 1303535960, 984961486, 2747007092, 3569037538, 1256170817, 1037604311, 2765210733, 3554079995, 1131014506, 879679996, 2909243462, 3663771856, 1141124467, 855842277, 2852801631, 3708648649, 1342533948, 654459306, 3188396048, 3373015174, 1466479909, 544179635, 3110523913, 3462522015, 1591671054, 702138776, 2966460450, 3352799412, 1504918807, 783551873, 3082640443, 3233442989, 3988292384, 2596254646, 62317068, 1957810842, 3939845945, 2647816111, 81470997, 1943803523, 3814918930, 2489596804, 225274430, 2053790376, 3826175755, 2466906013, 167816743, 2097651377, 4027552580, 2265490386, 503444072, 1762050814, 4150417245, 2154129355, 426522225, 1852507879, 4275313526, 2312317920, 282753626, 1742555852, 4189708143, 2394877945, 397917763, 1622183637, 3604390888, 2714866558, 953729732, 1340076626, 3518719985, 2797360999, 1068828381, 1219638859, 3624741850, 2936675148, 906185462, 1090812512, 3747672003, 2825379669, 829329135, 1181335161, 3412177804, 3160834842, 628085408, 1382605366, 3423369109, 3138078467, 570562233, 1426400815, 3317316542, 2998733608, 733239954, 1555261956, 3268935591, 3050360625, 752459403, 1541320221, 2607071920, 3965973030, 1969922972, 40735498, 2617837225, 3943577151, 1913087877, 83908371, 2512341634, 3803740692, 2075208622, 213261112, 2463272603, 3855990285, 2094854071, 198958881, 2262029012, 4057260610, 1759359992, 534414190, 2176718541, 4139329115, 1873836001, 414664567, 2282248934, 4279200368, 1711684554, 285281116, 2405801727, 4167216745, 1634467795, 376229701, 2685067896, 3608007406, 1308918612, 956543938, 2808555105, 3495958263, 1231636301, 1047427035, 2932959818, 3654703836, 1088359270, 936918000, 2847714899, 3736837829, 1202900863, 817233897, 3183342108, 3401237130, 1404277552, 615818150, 3134207493, 3453421203, 1423857449, 601450431, 3009837614, 3294710456, 1567103746, 711928724, 3020668471, 3272380065, 1510334235, 755167117]), type$.JSArray_legacy_int); C.List_BC_AD = H.setRuntimeTypeInfo(makeConstList(["BC", "AD"]), type$.JSArray_legacy_String); C.List_CC9 = H.setRuntimeTypeInfo(makeConstList([C.DateRange_last7Days, C.DateRange_last30Days, C.DateRange_thisMonth, C.DateRange_lastMonth, C.DateRange_thisQuarter, C.DateRange_lastQuarter, C.DateRange_thisYear, C.DateRange_lastYear, C.DateRange_custom]), H.findType("JSArray")); C.Type__$DesignState_K17 = H.typeLiteral("_$DesignState"); C.List_CCG = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignState_jZd, C.Type__$DesignState_K17]), type$.JSArray_legacy_Type); C.Type__$WebhookState_eAf = H.typeLiteral("_$WebhookState"); C.List_CFL = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookState_6v8, C.Type__$WebhookState_eAf]), type$.JSArray_legacy_Type); C.Type__$ReportsUIState_cc6 = H.typeLiteral("_$ReportsUIState"); C.List_CHP = H.setRuntimeTypeInfo(makeConstList([C.Type_ReportsUIState_YKi, C.Type__$ReportsUIState_cc6]), type$.JSArray_legacy_Type); C.List_empty18 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_int); C.List_6_18 = H.setRuntimeTypeInfo(makeConstList([6, 18]), type$.JSArray_legacy_int); C.List_6_22 = H.setRuntimeTypeInfo(makeConstList([6, 22]), type$.JSArray_legacy_int); C.List_6_26 = H.setRuntimeTypeInfo(makeConstList([6, 26]), type$.JSArray_legacy_int); C.List_6_30 = H.setRuntimeTypeInfo(makeConstList([6, 30]), type$.JSArray_legacy_int); C.List_6_34 = H.setRuntimeTypeInfo(makeConstList([6, 34]), type$.JSArray_legacy_int); C.List_6_22_38 = H.setRuntimeTypeInfo(makeConstList([6, 22, 38]), type$.JSArray_legacy_int); C.List_6_24_42 = H.setRuntimeTypeInfo(makeConstList([6, 24, 42]), type$.JSArray_legacy_int); C.List_6_26_46 = H.setRuntimeTypeInfo(makeConstList([6, 26, 46]), type$.JSArray_legacy_int); C.List_6_28_50 = H.setRuntimeTypeInfo(makeConstList([6, 28, 50]), type$.JSArray_legacy_int); C.List_6_30_54 = H.setRuntimeTypeInfo(makeConstList([6, 30, 54]), type$.JSArray_legacy_int); C.List_6_32_58 = H.setRuntimeTypeInfo(makeConstList([6, 32, 58]), type$.JSArray_legacy_int); C.List_6_34_62 = H.setRuntimeTypeInfo(makeConstList([6, 34, 62]), type$.JSArray_legacy_int); C.List_6_26_46_66 = H.setRuntimeTypeInfo(makeConstList([6, 26, 46, 66]), type$.JSArray_legacy_int); C.List_6_26_48_70 = H.setRuntimeTypeInfo(makeConstList([6, 26, 48, 70]), type$.JSArray_legacy_int); C.List_6_26_50_74 = H.setRuntimeTypeInfo(makeConstList([6, 26, 50, 74]), type$.JSArray_legacy_int); C.List_6_30_54_78 = H.setRuntimeTypeInfo(makeConstList([6, 30, 54, 78]), type$.JSArray_legacy_int); C.List_6_30_56_82 = H.setRuntimeTypeInfo(makeConstList([6, 30, 56, 82]), type$.JSArray_legacy_int); C.List_6_30_58_86 = H.setRuntimeTypeInfo(makeConstList([6, 30, 58, 86]), type$.JSArray_legacy_int); C.List_6_34_62_90 = H.setRuntimeTypeInfo(makeConstList([6, 34, 62, 90]), type$.JSArray_legacy_int); C.List_yTu1 = H.setRuntimeTypeInfo(makeConstList([6, 28, 50, 72, 94]), type$.JSArray_legacy_int); C.List_yTu2 = H.setRuntimeTypeInfo(makeConstList([6, 26, 50, 74, 98]), type$.JSArray_legacy_int); C.List_yTu3 = H.setRuntimeTypeInfo(makeConstList([6, 30, 54, 78, 102]), type$.JSArray_legacy_int); C.List_yTu4 = H.setRuntimeTypeInfo(makeConstList([6, 28, 54, 80, 106]), type$.JSArray_legacy_int); C.List_yTu5 = H.setRuntimeTypeInfo(makeConstList([6, 32, 58, 84, 110]), type$.JSArray_legacy_int); C.List_yTu6 = H.setRuntimeTypeInfo(makeConstList([6, 30, 58, 86, 114]), type$.JSArray_legacy_int); C.List_yTu7 = H.setRuntimeTypeInfo(makeConstList([6, 34, 62, 90, 118]), type$.JSArray_legacy_int); C.List_ww82 = H.setRuntimeTypeInfo(makeConstList([6, 26, 50, 74, 98, 122]), type$.JSArray_legacy_int); C.List_ww83 = H.setRuntimeTypeInfo(makeConstList([6, 30, 54, 78, 102, 126]), type$.JSArray_legacy_int); C.List_ww84 = H.setRuntimeTypeInfo(makeConstList([6, 26, 52, 78, 104, 130]), type$.JSArray_legacy_int); C.List_ww85 = H.setRuntimeTypeInfo(makeConstList([6, 30, 56, 82, 108, 134]), type$.JSArray_legacy_int); C.List_ww86 = H.setRuntimeTypeInfo(makeConstList([6, 34, 60, 86, 112, 138]), type$.JSArray_legacy_int); C.List_ww87 = H.setRuntimeTypeInfo(makeConstList([6, 30, 58, 86, 114, 142]), type$.JSArray_legacy_int); C.List_ww88 = H.setRuntimeTypeInfo(makeConstList([6, 34, 62, 90, 118, 146]), type$.JSArray_legacy_int); C.List_E7y0 = H.setRuntimeTypeInfo(makeConstList([6, 30, 54, 78, 102, 126, 150]), type$.JSArray_legacy_int); C.List_E7y1 = H.setRuntimeTypeInfo(makeConstList([6, 24, 50, 76, 102, 128, 154]), type$.JSArray_legacy_int); C.List_E7y2 = H.setRuntimeTypeInfo(makeConstList([6, 28, 54, 80, 106, 132, 158]), type$.JSArray_legacy_int); C.List_E7y3 = H.setRuntimeTypeInfo(makeConstList([6, 32, 58, 84, 110, 136, 162]), type$.JSArray_legacy_int); C.List_E7y4 = H.setRuntimeTypeInfo(makeConstList([6, 26, 54, 82, 110, 138, 166]), type$.JSArray_legacy_int); C.List_E7y5 = H.setRuntimeTypeInfo(makeConstList([6, 30, 58, 86, 114, 142, 170]), type$.JSArray_legacy_int); C.List_CI3 = H.setRuntimeTypeInfo(makeConstList([C.List_empty18, C.List_6_18, C.List_6_22, C.List_6_26, C.List_6_30, C.List_6_34, C.List_6_22_38, C.List_6_24_42, C.List_6_26_46, C.List_6_28_50, C.List_6_30_54, C.List_6_32_58, C.List_6_34_62, C.List_6_26_46_66, C.List_6_26_48_70, C.List_6_26_50_74, C.List_6_30_54_78, C.List_6_30_56_82, C.List_6_30_58_86, C.List_6_34_62_90, C.List_yTu1, C.List_yTu2, C.List_yTu3, C.List_yTu4, C.List_yTu5, C.List_yTu6, C.List_yTu7, C.List_ww82, C.List_ww83, C.List_ww84, C.List_ww85, C.List_ww86, C.List_ww87, C.List_ww88, C.List_E7y0, C.List_E7y1, C.List_E7y2, C.List_E7y3, C.List_E7y4, C.List_E7y5]), type$.JSArray_legacy_List_legacy_int); C.List_CVk = H.setRuntimeTypeInfo(makeConstList([0, 0, 65490, 45055, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.List_Cg9 = H.setRuntimeTypeInfo(makeConstList(["pointerdown", "pointermove", "pointerup", "pointercancel", "touchstart", "touchend", "touchmove", "touchcancel", "mousedown", "mousemove", "mouseup", "keyup", "keydown"]), type$.JSArray_legacy_String); C.Type__$CompanyEntity_4GP = H.typeLiteral("_$CompanyEntity"); C.List_ChN = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyEntity_Gbn, C.Type__$CompanyEntity_4GP]), type$.JSArray_legacy_Type); C.List_E34 = H.setRuntimeTypeInfo(makeConstList([C.InvoiceItemReportFields_0, C.InvoiceItemReportFields_1, C.InvoiceItemReportFields_2, C.InvoiceItemReportFields_3, C.InvoiceItemReportFields_4, C.InvoiceItemReportFields_5, C.InvoiceItemReportFields_6, C.InvoiceItemReportFields_7, C.InvoiceItemReportFields_8, C.InvoiceItemReportFields_9, C.InvoiceItemReportFields_10, C.InvoiceItemReportFields_11, C.InvoiceItemReportFields_12, C.InvoiceItemReportFields_13, C.InvoiceItemReportFields_14, C.InvoiceItemReportFields_15, C.InvoiceItemReportFields_16, C.InvoiceItemReportFields_17, C.InvoiceItemReportFields_18, C.InvoiceItemReportFields_19]), type$.JSArray_legacy_InvoiceItemReportFields); C.Type__$ProductState_sxB = H.typeLiteral("_$ProductState"); C.List_E4Q = H.setRuntimeTypeInfo(makeConstList([C.Type_ProductState_jr5, C.Type__$ProductState_sxB]), type$.JSArray_legacy_Type); C.List_E7y = H.setRuntimeTypeInfo(makeConstList([1, 2, 3, 4, 6, 12, 24]), type$.JSArray_legacy_int); C.List_ECn = H.setRuntimeTypeInfo(makeConstList(["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]), type$.JSArray_legacy_String); C.ProfitAndLossReportFields_0 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client"); C.ProfitAndLossReportFields_1 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client_address1"); C.ProfitAndLossReportFields_2 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client_address2"); C.ProfitAndLossReportFields_3 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client_city"); C.ProfitAndLossReportFields_4 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client_state"); C.ProfitAndLossReportFields_5 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.client_country"); C.ProfitAndLossReportFields_6 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor"); C.ProfitAndLossReportFields_7 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor_address1"); C.ProfitAndLossReportFields_8 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor_address2"); C.ProfitAndLossReportFields_9 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor_city"); C.ProfitAndLossReportFields_10 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor_state"); C.ProfitAndLossReportFields_11 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.vendor_country"); C.ProfitAndLossReportFields_12 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.type"); C.ProfitAndLossReportFields_13 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.amount"); C.ProfitAndLossReportFields_14 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.date"); C.ProfitAndLossReportFields_15 = new K.ProfitAndLossReportFields("ProfitAndLossReportFields.category"); C.List_EKR = H.setRuntimeTypeInfo(makeConstList([C.ProfitAndLossReportFields_0, C.ProfitAndLossReportFields_1, C.ProfitAndLossReportFields_2, C.ProfitAndLossReportFields_3, C.ProfitAndLossReportFields_4, C.ProfitAndLossReportFields_5, C.ProfitAndLossReportFields_6, C.ProfitAndLossReportFields_7, C.ProfitAndLossReportFields_8, C.ProfitAndLossReportFields_9, C.ProfitAndLossReportFields_10, C.ProfitAndLossReportFields_11, C.ProfitAndLossReportFields_12, C.ProfitAndLossReportFields_13, C.ProfitAndLossReportFields_14, C.ProfitAndLossReportFields_15]), type$.JSArray_legacy_ProfitAndLossReportFields); C.Type__$PrefState_y1F = H.typeLiteral("_$PrefState"); C.List_ERv = H.setRuntimeTypeInfo(makeConstList([C.Type_PrefState_ePg, C.Type__$PrefState_y1F]), type$.JSArray_legacy_Type); C.Type_ClientListResponse_apS = H.typeLiteral("ClientListResponse"); C.Type__$ClientListResponse_m5d = H.typeLiteral("_$ClientListResponse"); C.List_EkK = H.setRuntimeTypeInfo(makeConstList([C.Type_ClientListResponse_apS, C.Type__$ClientListResponse_m5d]), type$.JSArray_legacy_Type); C.Type__$PaymentableEntity_rUw = H.typeLiteral("_$PaymentableEntity"); C.List_FIw = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentableEntity_e3c, C.Type__$PaymentableEntity_rUw]), type$.JSArray_legacy_Type); C.Type__$GroupUIState_Zwj = H.typeLiteral("_$GroupUIState"); C.List_FVt = H.setRuntimeTypeInfo(makeConstList([C.Type_GroupUIState_Ejg, C.Type__$GroupUIState_Zwj]), type$.JSArray_legacy_Type); C.PaymentReportFields_0 = new K.PaymentReportFields("PaymentReportFields.number"); C.PaymentReportFields_1 = new K.PaymentReportFields("PaymentReportFields.amount"); C.PaymentReportFields_2 = new K.PaymentReportFields("PaymentReportFields.client"); C.PaymentReportFields_3 = new K.PaymentReportFields("PaymentReportFields.client_balance"); C.PaymentReportFields_4 = new K.PaymentReportFields("PaymentReportFields.client_address1"); C.PaymentReportFields_5 = new K.PaymentReportFields("PaymentReportFields.client_address2"); C.PaymentReportFields_6 = new K.PaymentReportFields("PaymentReportFields.client_shipping_address1"); C.PaymentReportFields_7 = new K.PaymentReportFields("PaymentReportFields.client_shipping_address2"); C.PaymentReportFields_8 = new K.PaymentReportFields("PaymentReportFields.transaction_reference"); C.PaymentReportFields_9 = new K.PaymentReportFields("PaymentReportFields.date"); C.PaymentReportFields_10 = new K.PaymentReportFields("PaymentReportFields.type"); C.PaymentReportFields_11 = new K.PaymentReportFields("PaymentReportFields.payment1"); C.PaymentReportFields_12 = new K.PaymentReportFields("PaymentReportFields.payment2"); C.PaymentReportFields_13 = new K.PaymentReportFields("PaymentReportFields.payment3"); C.PaymentReportFields_14 = new K.PaymentReportFields("PaymentReportFields.payment4"); C.PaymentReportFields_15 = new K.PaymentReportFields("PaymentReportFields.exchange_rate"); C.PaymentReportFields_16 = new K.PaymentReportFields("PaymentReportFields.converted_amount"); C.List_Fb0 = H.setRuntimeTypeInfo(makeConstList([C.PaymentReportFields_0, C.PaymentReportFields_1, C.PaymentReportFields_2, C.PaymentReportFields_3, C.PaymentReportFields_4, C.PaymentReportFields_5, C.PaymentReportFields_6, C.PaymentReportFields_7, C.PaymentReportFields_8, C.PaymentReportFields_9, C.PaymentReportFields_10, C.PaymentReportFields_11, C.PaymentReportFields_12, C.PaymentReportFields_13, C.PaymentReportFields_14, C.PaymentReportFields_15, C.PaymentReportFields_16]), type$.JSArray_legacy_PaymentReportFields); C.Type__$ExpenseCategoryUIState_wsa = H.typeLiteral("_$ExpenseCategoryUIState"); C.List_FcO = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseCategoryUIState_ESz, C.Type__$ExpenseCategoryUIState_wsa]), type$.JSArray_legacy_Type); C.Type_TimezoneListResponse_alh = H.typeLiteral("TimezoneListResponse"); C.Type__$TimezoneListResponse_43h = H.typeLiteral("_$TimezoneListResponse"); C.List_FeN = H.setRuntimeTypeInfo(makeConstList([C.Type_TimezoneListResponse_alh, C.Type__$TimezoneListResponse_43h]), type$.JSArray_legacy_Type); C.Type_AppState_omH = H.typeLiteral("AppState"); C.Type__$AppState_IYd = H.typeLiteral("_$AppState"); C.List_FeV = H.setRuntimeTypeInfo(makeConstList([C.Type_AppState_omH, C.Type__$AppState_IYd]), type$.JSArray_legacy_Type); C.Type__$ProjectState_ynv = H.typeLiteral("_$ProjectState"); C.List_Fgs = H.setRuntimeTypeInfo(makeConstList([C.Type_ProjectState_OLY, C.Type__$ProjectState_ynv]), type$.JSArray_legacy_Type); C.Type__$SubscriptionState_wv8 = H.typeLiteral("_$SubscriptionState"); C.List_G3h = H.setRuntimeTypeInfo(makeConstList([C.Type_SubscriptionState_4CA, C.Type__$SubscriptionState_wv8]), type$.JSArray_legacy_Type); C.Type_IndustryItemResponse_XhK = H.typeLiteral("IndustryItemResponse"); C.Type__$IndustryItemResponse_gyf = H.typeLiteral("_$IndustryItemResponse"); C.List_GBj = H.setRuntimeTypeInfo(makeConstList([C.Type_IndustryItemResponse_XhK, C.Type__$IndustryItemResponse_gyf]), type$.JSArray_legacy_Type); C.Type__$SettingsEntity_OPf = H.typeLiteral("_$SettingsEntity"); C.List_GXp = H.setRuntimeTypeInfo(makeConstList([C.Type_SettingsEntity_46y, C.Type__$SettingsEntity_OPf]), type$.JSArray_legacy_Type); C.FileStorage_company_state_0 = new S.FileStorage("company_state_0"); C.PersistenceRepository_FileStorage_company_state_0 = new X.PersistenceRepository(C.FileStorage_company_state_0); C.FileStorage_company_state_1 = new S.FileStorage("company_state_1"); C.PersistenceRepository_FileStorage_company_state_1 = new X.PersistenceRepository(C.FileStorage_company_state_1); C.FileStorage_company_state_2 = new S.FileStorage("company_state_2"); C.PersistenceRepository_FileStorage_company_state_2 = new X.PersistenceRepository(C.FileStorage_company_state_2); C.FileStorage_company_state_3 = new S.FileStorage("company_state_3"); C.PersistenceRepository_FileStorage_company_state_3 = new X.PersistenceRepository(C.FileStorage_company_state_3); C.FileStorage_company_state_4 = new S.FileStorage("company_state_4"); C.PersistenceRepository_FileStorage_company_state_4 = new X.PersistenceRepository(C.FileStorage_company_state_4); C.FileStorage_company_state_5 = new S.FileStorage("company_state_5"); C.PersistenceRepository_FileStorage_company_state_5 = new X.PersistenceRepository(C.FileStorage_company_state_5); C.FileStorage_company_state_6 = new S.FileStorage("company_state_6"); C.PersistenceRepository_FileStorage_company_state_6 = new X.PersistenceRepository(C.FileStorage_company_state_6); C.FileStorage_company_state_7 = new S.FileStorage("company_state_7"); C.PersistenceRepository_FileStorage_company_state_7 = new X.PersistenceRepository(C.FileStorage_company_state_7); C.FileStorage_company_state_8 = new S.FileStorage("company_state_8"); C.PersistenceRepository_FileStorage_company_state_8 = new X.PersistenceRepository(C.FileStorage_company_state_8); C.FileStorage_company_state_9 = new S.FileStorage("company_state_9"); C.PersistenceRepository_FileStorage_company_state_9 = new X.PersistenceRepository(C.FileStorage_company_state_9); C.List_Ga5 = H.setRuntimeTypeInfo(makeConstList([C.PersistenceRepository_FileStorage_company_state_0, C.PersistenceRepository_FileStorage_company_state_1, C.PersistenceRepository_FileStorage_company_state_2, C.PersistenceRepository_FileStorage_company_state_3, C.PersistenceRepository_FileStorage_company_state_4, C.PersistenceRepository_FileStorage_company_state_5, C.PersistenceRepository_FileStorage_company_state_6, C.PersistenceRepository_FileStorage_company_state_7, C.PersistenceRepository_FileStorage_company_state_8, C.PersistenceRepository_FileStorage_company_state_9]), H.findType("JSArray")); C.List_Gn1 = H.setRuntimeTypeInfo(makeConstList(["text", "multiline", "number", "phone", "datetime", "emailAddress", "url", "visiblePassword", "name", "address"]), type$.JSArray_legacy_String); C.QuoteReportFields_0 = new Y.QuoteReportFields("QuoteReportFields.amount"); C.QuoteReportFields_1 = new Y.QuoteReportFields("QuoteReportFields.converted_amount"); C.QuoteReportFields_2 = new Y.QuoteReportFields("QuoteReportFields.client"); C.QuoteReportFields_3 = new Y.QuoteReportFields("QuoteReportFields.client_balance"); C.QuoteReportFields_4 = new Y.QuoteReportFields("QuoteReportFields.client_address1"); C.QuoteReportFields_5 = new Y.QuoteReportFields("QuoteReportFields.client_address2"); C.QuoteReportFields_6 = new Y.QuoteReportFields("QuoteReportFields.client_shipping_address1"); C.QuoteReportFields_7 = new Y.QuoteReportFields("QuoteReportFields.client_shipping_address2"); C.QuoteReportFields_8 = new Y.QuoteReportFields("QuoteReportFields.client_country"); C.QuoteReportFields_9 = new Y.QuoteReportFields("QuoteReportFields.status"); C.QuoteReportFields_10 = new Y.QuoteReportFields("QuoteReportFields.number"); C.QuoteReportFields_11 = new Y.QuoteReportFields("QuoteReportFields.discount"); C.QuoteReportFields_12 = new Y.QuoteReportFields("QuoteReportFields.po_number"); C.QuoteReportFields_13 = new Y.QuoteReportFields("QuoteReportFields.date"); C.QuoteReportFields_14 = new Y.QuoteReportFields("QuoteReportFields.partial_due_date"); C.QuoteReportFields_15 = new Y.QuoteReportFields("QuoteReportFields.valid_until"); C.QuoteReportFields_16 = new Y.QuoteReportFields("QuoteReportFields.partial"); C.QuoteReportFields_17 = new Y.QuoteReportFields("QuoteReportFields.auto_bill"); C.QuoteReportFields_18 = new Y.QuoteReportFields("QuoteReportFields.invoice1"); C.QuoteReportFields_19 = new Y.QuoteReportFields("QuoteReportFields.invoice2"); C.QuoteReportFields_20 = new Y.QuoteReportFields("QuoteReportFields.invoice3"); C.QuoteReportFields_21 = new Y.QuoteReportFields("QuoteReportFields.invoice4"); C.QuoteReportFields_22 = new Y.QuoteReportFields("QuoteReportFields.surcharge1"); C.QuoteReportFields_23 = new Y.QuoteReportFields("QuoteReportFields.surcharge2"); C.QuoteReportFields_24 = new Y.QuoteReportFields("QuoteReportFields.surcharge3"); C.QuoteReportFields_25 = new Y.QuoteReportFields("QuoteReportFields.surcharge4"); C.QuoteReportFields_26 = new Y.QuoteReportFields("QuoteReportFields.updated_at"); C.QuoteReportFields_27 = new Y.QuoteReportFields("QuoteReportFields.archived_at"); C.QuoteReportFields_28 = new Y.QuoteReportFields("QuoteReportFields.is_deleted"); C.QuoteReportFields_29 = new Y.QuoteReportFields("QuoteReportFields.is_approved"); C.QuoteReportFields_30 = new Y.QuoteReportFields("QuoteReportFields.tax_amount"); C.QuoteReportFields_31 = new Y.QuoteReportFields("QuoteReportFields.net_amount"); C.QuoteReportFields_32 = new Y.QuoteReportFields("QuoteReportFields.exchange_rate"); C.QuoteReportFields_33 = new Y.QuoteReportFields("QuoteReportFields.public_notes"); C.QuoteReportFields_34 = new Y.QuoteReportFields("QuoteReportFields.private_notes"); C.QuoteReportFields_35 = new Y.QuoteReportFields("QuoteReportFields.client_vat_number"); C.QuoteReportFields_36 = new Y.QuoteReportFields("QuoteReportFields.client_city"); C.QuoteReportFields_37 = new Y.QuoteReportFields("QuoteReportFields.client_postal_code"); C.QuoteReportFields_38 = new Y.QuoteReportFields("QuoteReportFields.tax_rate1"); C.QuoteReportFields_39 = new Y.QuoteReportFields("QuoteReportFields.tax_rate2"); C.QuoteReportFields_40 = new Y.QuoteReportFields("QuoteReportFields.tax_rate3"); C.QuoteReportFields_41 = new Y.QuoteReportFields("QuoteReportFields.tax_name1"); C.QuoteReportFields_42 = new Y.QuoteReportFields("QuoteReportFields.tax_name2"); C.QuoteReportFields_43 = new Y.QuoteReportFields("QuoteReportFields.tax_name3"); C.List_H6l = H.setRuntimeTypeInfo(makeConstList([C.QuoteReportFields_0, C.QuoteReportFields_1, C.QuoteReportFields_2, C.QuoteReportFields_3, C.QuoteReportFields_4, C.QuoteReportFields_5, C.QuoteReportFields_6, C.QuoteReportFields_7, C.QuoteReportFields_8, C.QuoteReportFields_9, C.QuoteReportFields_10, C.QuoteReportFields_11, C.QuoteReportFields_12, C.QuoteReportFields_13, C.QuoteReportFields_14, C.QuoteReportFields_15, C.QuoteReportFields_16, C.QuoteReportFields_17, C.QuoteReportFields_18, C.QuoteReportFields_19, C.QuoteReportFields_20, C.QuoteReportFields_21, C.QuoteReportFields_22, C.QuoteReportFields_23, C.QuoteReportFields_24, C.QuoteReportFields_25, C.QuoteReportFields_26, C.QuoteReportFields_27, C.QuoteReportFields_28, C.QuoteReportFields_29, C.QuoteReportFields_30, C.QuoteReportFields_31, C.QuoteReportFields_32, C.QuoteReportFields_33, C.QuoteReportFields_34, C.QuoteReportFields_35, C.QuoteReportFields_36, C.QuoteReportFields_37, C.QuoteReportFields_38, C.QuoteReportFields_39, C.QuoteReportFields_40, C.QuoteReportFields_41, C.QuoteReportFields_42, C.QuoteReportFields_43]), type$.JSArray_legacy_QuoteReportFields); C.Type__$TokenState_Kn5 = H.typeLiteral("_$TokenState"); C.List_H7P = H.setRuntimeTypeInfo(makeConstList([C.Type_TokenState_EOw, C.Type__$TokenState_Kn5]), type$.JSArray_legacy_Type); C.Type__$TokenEntity_p5D = H.typeLiteral("_$TokenEntity"); C.List_HFE = H.setRuntimeTypeInfo(makeConstList([C.Type_TokenEntity_QoM, C.Type__$TokenEntity_p5D]), type$.JSArray_legacy_Type); C.Type__$PaymentUIState_SOa = H.typeLiteral("_$PaymentUIState"); C.List_HTT = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentUIState_kyk, C.Type__$PaymentUIState_SOa]), type$.JSArray_legacy_Type); C.List_Hn1 = H.setRuntimeTypeInfo(makeConstList(["ca", "cs", "da", "de", "el", "en", "en_GB", "en_AU", "es", "es_ES", "fi", "fr", "fr_CA", "hr", "it", "ja", "lt", "mk_MK", "nb_NO", "nl", "pl", "pt_BR", "pt_PT", "ro", "ru_RU", "sl", "sq", "sr_RS", "sv", "th", "tr_TR", "bg"]), type$.JSArray_legacy_String); C.Type_DesignPreviewRequest_4eq = H.typeLiteral("DesignPreviewRequest"); C.Type__$DesignPreviewRequest_Jot = H.typeLiteral("_$DesignPreviewRequest"); C.List_Hx4 = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignPreviewRequest_4eq, C.Type__$DesignPreviewRequest_Jot]), type$.JSArray_legacy_Type); C.Type_WebhookItemResponse_2fO = H.typeLiteral("WebhookItemResponse"); C.Type__$WebhookItemResponse_AeS = H.typeLiteral("_$WebhookItemResponse"); C.List_IMQ = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookItemResponse_2fO, C.Type__$WebhookItemResponse_AeS]), type$.JSArray_legacy_Type); C.Type__$UserEntity_sxB = H.typeLiteral("_$UserEntity"); C.List_IU1 = H.setRuntimeTypeInfo(makeConstList([C.Type_UserEntity_IVQ, C.Type__$UserEntity_sxB]), type$.JSArray_legacy_Type); C.ProductReportFields_0 = new N.ProductReportFields("ProductReportFields.name"); C.ProductReportFields_1 = new N.ProductReportFields("ProductReportFields.price"); C.ProductReportFields_2 = new N.ProductReportFields("ProductReportFields.description"); C.ProductReportFields_3 = new N.ProductReportFields("ProductReportFields.cost"); C.ProductReportFields_4 = new N.ProductReportFields("ProductReportFields.quantity"); C.ProductReportFields_5 = new N.ProductReportFields("ProductReportFields.tax_rate1"); C.ProductReportFields_6 = new N.ProductReportFields("ProductReportFields.tax_rate2"); C.ProductReportFields_7 = new N.ProductReportFields("ProductReportFields.tax_rate3"); C.ProductReportFields_8 = new N.ProductReportFields("ProductReportFields.product1"); C.ProductReportFields_9 = new N.ProductReportFields("ProductReportFields.product2"); C.ProductReportFields_10 = new N.ProductReportFields("ProductReportFields.product3"); C.ProductReportFields_11 = new N.ProductReportFields("ProductReportFields.product4"); C.List_IwX = H.setRuntimeTypeInfo(makeConstList([C.ProductReportFields_0, C.ProductReportFields_1, C.ProductReportFields_2, C.ProductReportFields_3, C.ProductReportFields_4, C.ProductReportFields_5, C.ProductReportFields_6, C.ProductReportFields_7, C.ProductReportFields_8, C.ProductReportFields_9, C.ProductReportFields_10, C.ProductReportFields_11]), type$.JSArray_legacy_ProductReportFields); C.Type__$PrefStateSortField_Crw = H.typeLiteral("_$PrefStateSortField"); C.List_JEy = H.setRuntimeTypeInfo(makeConstList([C.Type_PrefStateSortField_Ekc, C.Type__$PrefStateSortField_Crw]), type$.JSArray_legacy_Type); C.Type__$HealthCheckPHPResponse_03G = H.typeLiteral("_$HealthCheckPHPResponse"); C.List_JQT = H.setRuntimeTypeInfo(makeConstList([C.Type_HealthCheckPHPResponse_kOG, C.Type__$HealthCheckPHPResponse_03G]), type$.JSArray_legacy_Type); C.List_JYB = H.setRuntimeTypeInfo(makeConstList([0, 0, 26624, 1023, 65534, 2047, 65534, 2047]), type$.JSArray_legacy_int); C.Type__$InvoiceState_7BT = H.typeLiteral("_$InvoiceState"); C.List_Js5 = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceState_YnY, C.Type__$InvoiceState_7BT]), type$.JSArray_legacy_Type); C.Type__$CompanyGatewayState_2xi = H.typeLiteral("_$CompanyGatewayState"); C.List_Jwp = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyGatewayState_ckm, C.Type__$CompanyGatewayState_2xi]), type$.JSArray_legacy_Type); C.Type__$StaticDataEntity_qVS = H.typeLiteral("_$StaticDataEntity"); C.List_K12 = H.setRuntimeTypeInfo(makeConstList([C.Type_StaticDataEntity_7Re, C.Type__$StaticDataEntity_qVS]), type$.JSArray_legacy_Type); C.Type_LoginResponse_zLR = H.typeLiteral("LoginResponse"); C.Type__$LoginResponse_zPV = H.typeLiteral("_$LoginResponse"); C.List_K9P = H.setRuntimeTypeInfo(makeConstList([C.Type_LoginResponse_zLR, C.Type__$LoginResponse_zPV]), type$.JSArray_legacy_Type); C.Type__$ClientState_1OJ = H.typeLiteral("_$ClientState"); C.List_K9i = H.setRuntimeTypeInfo(makeConstList([C.Type_ClientState_QAb, C.Type__$ClientState_1OJ]), type$.JSArray_legacy_Type); C.List_KIf = H.setRuntimeTypeInfo(makeConstList([0, 0, 26498, 1023, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.Type__$VendorState_7Nt = H.typeLiteral("_$VendorState"); C.List_KLt = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorState_Db0, C.Type__$VendorState_7Nt]), type$.JSArray_legacy_Type); C.List_KYr = H.setRuntimeTypeInfo(makeConstList([C.ExpenseReportFields_0, C.ExpenseReportFields_1, C.ExpenseReportFields_2, C.ExpenseReportFields_3, C.ExpenseReportFields_4, C.ExpenseReportFields_5, C.ExpenseReportFields_6, C.ExpenseReportFields_7, C.ExpenseReportFields_8, C.ExpenseReportFields_9, C.ExpenseReportFields_10, C.ExpenseReportFields_11, C.ExpenseReportFields_12, C.ExpenseReportFields_13, C.ExpenseReportFields_14, C.ExpenseReportFields_15, C.ExpenseReportFields_16, C.ExpenseReportFields_17, C.ExpenseReportFields_18, C.ExpenseReportFields_19, C.ExpenseReportFields_20, C.ExpenseReportFields_21, C.ExpenseReportFields_22, C.ExpenseReportFields_23]), type$.JSArray_legacy_ExpenseReportFields); C.Type__$GatewayTokenMetaEntity_A0N = H.typeLiteral("_$GatewayTokenMetaEntity"); C.List_Ks3 = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayTokenMetaEntity_AuK, C.Type__$GatewayTokenMetaEntity_A0N]), type$.JSArray_legacy_Type); C.List_Kxv = H.setRuntimeTypeInfo(makeConstList([43, 95, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122]), type$.JSArray_legacy_int); C.Type__$PaymentTermState_Icu = H.typeLiteral("_$PaymentTermState"); C.List_LCF = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTermState_gkc, C.Type__$PaymentTermState_Icu]), type$.JSArray_legacy_Type); C.Locale_en_US = new P.Locale("en", "US"); C.List_Locale_en_US = H.setRuntimeTypeInfo(makeConstList([C.Locale_en_US]), type$.JSArray_legacy_Locale); C.Type_VendorListResponse_zLp = H.typeLiteral("VendorListResponse"); C.Type__$VendorListResponse_Pv7 = H.typeLiteral("_$VendorListResponse"); C.List_MQk = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorListResponse_zLp, C.Type__$VendorListResponse_Pv7]), type$.JSArray_legacy_Type); C.Type_GroupListResponse_Iwp = H.typeLiteral("GroupListResponse"); C.Type__$GroupListResponse_LZB = H.typeLiteral("_$GroupListResponse"); C.List_MUw = H.setRuntimeTypeInfo(makeConstList([C.Type_GroupListResponse_Iwp, C.Type__$GroupListResponse_LZB]), type$.JSArray_legacy_Type); C.Type_DocumentListResponse_AEn = H.typeLiteral("DocumentListResponse"); C.Type__$DocumentListResponse_okl = H.typeLiteral("_$DocumentListResponse"); C.List_MYA = H.setRuntimeTypeInfo(makeConstList([C.Type_DocumentListResponse_AEn, C.Type__$DocumentListResponse_okl]), type$.JSArray_legacy_Type); C.Type__$DashboardUISettings_cM5 = H.typeLiteral("_$DashboardUISettings"); C.List_MYE = H.setRuntimeTypeInfo(makeConstList([C.Type_DashboardUISettings_cg9, C.Type__$DashboardUISettings_cM5]), type$.JSArray_legacy_Type); C.Type_InvoiceItemResponse_GJk = H.typeLiteral("InvoiceItemResponse"); C.Type__$InvoiceItemResponse_TDC = H.typeLiteral("_$InvoiceItemResponse"); C.List_Mkn = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceItemResponse_GJk, C.Type__$InvoiceItemResponse_TDC]), type$.JSArray_legacy_Type); C.List_MnH = H.setRuntimeTypeInfo(makeConstList(["1", "10", "11", "2", "8", "22", "24", "9", "3", "6", "21", "23", "7", "4", "12", "5", "13", "14", "15", "16", "17", "18", "19", "20"]), type$.JSArray_legacy_String); C.List_NI2 = H.setRuntimeTypeInfo(makeConstList([C.DatePickerEntryMode_0, C.DatePickerEntryMode_1, C.DatePickerEntryMode_2, C.DatePickerEntryMode_3]), H.findType("JSArray")); C.Type__$InvitationEntity_0mj = H.typeLiteral("_$InvitationEntity"); C.List_NQk = H.setRuntimeTypeInfo(makeConstList([C.Type_InvitationEntity_qtf, C.Type__$InvitationEntity_0mj]), type$.JSArray_legacy_Type); C.Type_PaymentListResponse_R2g = H.typeLiteral("PaymentListResponse"); C.Type__$PaymentListResponse_0pA = H.typeLiteral("_$PaymentListResponse"); C.List_NQk0 = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentListResponse_R2g, C.Type__$PaymentListResponse_0pA]), type$.JSArray_legacy_Type); C.List_NUU = H.setRuntimeTypeInfo(makeConstList([0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28]), type$.JSArray_legacy_int); C.Type_LanguageItemResponse_c8P = H.typeLiteral("LanguageItemResponse"); C.Type__$LanguageItemResponse_YOT = H.typeLiteral("_$LanguageItemResponse"); C.List_NcA = H.setRuntimeTypeInfo(makeConstList([C.Type_LanguageItemResponse_c8P, C.Type__$LanguageItemResponse_YOT]), type$.JSArray_legacy_Type); C.Type__$GatewayTokenEntity_uwZ = H.typeLiteral("_$GatewayTokenEntity"); C.List_Now = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayTokenEntity_goM, C.Type__$GatewayTokenEntity_uwZ]), type$.JSArray_legacy_Type); C.Type__$DesignEntity_0 = H.typeLiteral("_$DesignEntity"); C.List_O9m = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignEntity_0, C.Type__$DesignEntity_0]), type$.JSArray_legacy_Type); C.Type__$ExpenseState_o5r = H.typeLiteral("_$ExpenseState"); C.List_OXO = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseState_yzp, C.Type__$ExpenseState_o5r]), type$.JSArray_legacy_Type); C.Type__$LanguageEntity_bTF = H.typeLiteral("_$LanguageEntity"); C.List_Ohq = H.setRuntimeTypeInfo(makeConstList([C.Type_LanguageEntity_eDt, C.Type__$LanguageEntity_bTF]), type$.JSArray_legacy_Type); C.Type__$LedgerEntity_QwF = H.typeLiteral("_$LedgerEntity"); C.List_P7V = H.setRuntimeTypeInfo(makeConstList([C.Type_LedgerEntity_mHe, C.Type__$LedgerEntity_QwF]), type$.JSArray_legacy_Type); C.List_PEP = H.setRuntimeTypeInfo(makeConstList([C.InvoiceReportFields_0, C.InvoiceReportFields_1, C.InvoiceReportFields_2, C.InvoiceReportFields_3, C.InvoiceReportFields_4, C.InvoiceReportFields_5, C.InvoiceReportFields_6, C.InvoiceReportFields_7, C.InvoiceReportFields_8, C.InvoiceReportFields_9, C.InvoiceReportFields_10, C.InvoiceReportFields_11, C.InvoiceReportFields_12, C.InvoiceReportFields_13, C.InvoiceReportFields_14, C.InvoiceReportFields_15, C.InvoiceReportFields_16, C.InvoiceReportFields_17, C.InvoiceReportFields_18, C.InvoiceReportFields_19, C.InvoiceReportFields_20, C.InvoiceReportFields_21, C.InvoiceReportFields_22, C.InvoiceReportFields_23, C.InvoiceReportFields_24, C.InvoiceReportFields_25, C.InvoiceReportFields_26, C.InvoiceReportFields_27, C.InvoiceReportFields_28, C.InvoiceReportFields_29, C.InvoiceReportFields_30, C.InvoiceReportFields_31, C.InvoiceReportFields_32, C.InvoiceReportFields_33, C.InvoiceReportFields_34, C.InvoiceReportFields_35, C.InvoiceReportFields_36, C.InvoiceReportFields_37, C.InvoiceReportFields_38, C.InvoiceReportFields_39, C.InvoiceReportFields_40, C.InvoiceReportFields_41, C.InvoiceReportFields_42, C.InvoiceReportFields_43, C.InvoiceReportFields_44, C.InvoiceReportFields_45, C.InvoiceReportFields_46, C.InvoiceReportFields_47, C.InvoiceReportFields_48, C.InvoiceReportFields_49, C.InvoiceReportFields_50, C.InvoiceReportFields_51, C.InvoiceReportFields_52]), type$.JSArray_legacy_InvoiceReportFields); C.Type_TimezoneItemResponse_Yiv = H.typeLiteral("TimezoneItemResponse"); C.Type__$TimezoneItemResponse_43h = H.typeLiteral("_$TimezoneItemResponse"); C.List_Phi = H.setRuntimeTypeInfo(makeConstList([C.Type_TimezoneItemResponse_Yiv, C.Type__$TimezoneItemResponse_43h]), type$.JSArray_legacy_Type); C.Type__$ProductEntity_bMg = H.typeLiteral("_$ProductEntity"); C.List_PiJ = H.setRuntimeTypeInfo(makeConstList([C.Type_ProductEntity_P4I, C.Type__$ProductEntity_bMg]), type$.JSArray_legacy_Type); C.List_Q1S = H.setRuntimeTypeInfo(makeConstList(["calendar", "camera", "contacts", "location", "locationAlways", "locationWhenInUse", "mediaLibrary", "microphone", "phone", "photos", "photosAddOnly", "reminders", "sensors", "sms", "speech", "storage", "ignoreBatteryOptimizations", "notification", "access_media_location", "activity_recognition", "unknown", "bluetooth", "manageExternalStorage", "systemAlertWindow", "requestInstallPackages", "appTrackingTransparency", "criticalAlerts", "accessNotificationPolicy"]), type$.JSArray_legacy_String); C.List_Q1_Q2_Q3_Q4 = H.setRuntimeTypeInfo(makeConstList(["Q1", "Q2", "Q3", "Q4"]), type$.JSArray_legacy_String); C.Type__$ReportSettingsEntity_inD = H.typeLiteral("_$ReportSettingsEntity"); C.List_QLF = H.setRuntimeTypeInfo(makeConstList([C.Type_ReportSettingsEntity_piR, C.Type__$ReportSettingsEntity_inD]), type$.JSArray_legacy_Type); C.List_QXN = H.setRuntimeTypeInfo(makeConstList(["af", "am", "ar", "as", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en", "es", "et", "eu", "fa", "fi", "fil", "fr", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "pt", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zu"]), type$.JSArray_legacy_String); C.Type_SubscriptionItemResponse_uzU = H.typeLiteral("SubscriptionItemResponse"); C.Type__$SubscriptionItemResponse_pM4 = H.typeLiteral("_$SubscriptionItemResponse"); C.List_QgW = H.setRuntimeTypeInfo(makeConstList([C.Type_SubscriptionItemResponse_uzU, C.Type__$SubscriptionItemResponse_pM4]), type$.JSArray_legacy_Type); C.Type_SubscriptionListResponse_uzU = H.typeLiteral("SubscriptionListResponse"); C.Type__$SubscriptionListResponse_pM4 = H.typeLiteral("_$SubscriptionListResponse"); C.List_QgW0 = H.setRuntimeTypeInfo(makeConstList([C.Type_SubscriptionListResponse_uzU, C.Type__$SubscriptionListResponse_pM4]), type$.JSArray_legacy_Type); C.Type__$ExpenseCategoryEntity_apI = H.typeLiteral("_$ExpenseCategoryEntity"); C.List_QoN = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseCategoryEntity_ccl, C.Type__$ExpenseCategoryEntity_apI]), type$.JSArray_legacy_Type); C.TaxRateReportFields_0 = new X.TaxRateReportFields0("TaxRateReportFields.client"); C.TaxRateReportFields_1 = new X.TaxRateReportFields0("TaxRateReportFields.invoice"); C.TaxRateReportFields_2 = new X.TaxRateReportFields0("TaxRateReportFields.invoice_amount"); C.TaxRateReportFields_3 = new X.TaxRateReportFields0("TaxRateReportFields.invoice_date"); C.TaxRateReportFields_4 = new X.TaxRateReportFields0("TaxRateReportFields.payment_date"); C.TaxRateReportFields_5 = new X.TaxRateReportFields0("TaxRateReportFields.tax_name"); C.TaxRateReportFields_6 = new X.TaxRateReportFields0("TaxRateReportFields.tax_rate"); C.TaxRateReportFields_7 = new X.TaxRateReportFields0("TaxRateReportFields.tax_amount"); C.TaxRateReportFields_8 = new X.TaxRateReportFields0("TaxRateReportFields.tax_paid"); C.TaxRateReportFields_9 = new X.TaxRateReportFields0("TaxRateReportFields.payment_amount"); C.TaxRateReportFields_10 = new X.TaxRateReportFields0("TaxRateReportFields.currency"); C.List_QsP = H.setRuntimeTypeInfo(makeConstList([C.TaxRateReportFields_0, C.TaxRateReportFields_1, C.TaxRateReportFields_2, C.TaxRateReportFields_3, C.TaxRateReportFields_4, C.TaxRateReportFields_5, C.TaxRateReportFields_6, C.TaxRateReportFields_7, C.TaxRateReportFields_8, C.TaxRateReportFields_9, C.TaxRateReportFields_10]), type$.JSArray_legacy_TaxRateReportFields_2); C.Type__$ContactEntity_GhK = H.typeLiteral("_$ContactEntity"); C.List_QsZ = H.setRuntimeTypeInfo(makeConstList([C.Type_ContactEntity_RvJ, C.Type__$ContactEntity_GhK]), type$.JSArray_legacy_Type); C.Type_TaxRateListResponse_2jN = H.typeLiteral("TaxRateListResponse"); C.Type__$TaxRateListResponse_atK = H.typeLiteral("_$TaxRateListResponse"); C.List_Qwv = H.setRuntimeTypeInfo(makeConstList([C.Type_TaxRateListResponse_2jN, C.Type__$TaxRateListResponse_atK]), type$.JSArray_legacy_Type); C.Type__$DocumentUIState_MYA = H.typeLiteral("_$DocumentUIState"); C.List_ROa = H.setRuntimeTypeInfo(makeConstList([C.Type_DocumentUIState_CyS, C.Type__$DocumentUIState_MYA]), type$.JSArray_legacy_Type); C.Type__$ListUIState_fWW = H.typeLiteral("_$ListUIState"); C.List_RsV = H.setRuntimeTypeInfo(makeConstList([C.Type_ListUIState_46y, C.Type__$ListUIState_fWW]), type$.JSArray_legacy_Type); C.Type_UserListResponse_AP0 = H.typeLiteral("UserListResponse"); C.Type__$UserListResponse_cAk = H.typeLiteral("_$UserListResponse"); C.List_RsV0 = H.setRuntimeTypeInfo(makeConstList([C.Type_UserListResponse_AP0, C.Type__$UserListResponse_cAk]), type$.JSArray_legacy_Type); C.Type__$SettingsUIState_TYx = H.typeLiteral("_$SettingsUIState"); C.List_SFj = H.setRuntimeTypeInfo(makeConstList([C.Type_SettingsUIState_kvD, C.Type__$SettingsUIState_TYx]), type$.JSArray_legacy_Type); C.Type__$QuoteUIState_gbq = H.typeLiteral("_$QuoteUIState"); C.List_SIL = H.setRuntimeTypeInfo(makeConstList([C.Type_QuoteUIState_WI9, C.Type__$QuoteUIState_gbq]), type$.JSArray_legacy_Type); C.Type__$DateFormatEntity_g7r = H.typeLiteral("_$DateFormatEntity"); C.List_SJx = H.setRuntimeTypeInfo(makeConstList([C.Type_DateFormatEntity_OME, C.Type__$DateFormatEntity_g7r]), type$.JSArray_legacy_Type); C.List_SL9 = H.setRuntimeTypeInfo(makeConstList(["ar", "fa", "he", "ps", "ur"]), type$.JSArray_legacy_String); C.Type_GroupItemResponse_9we = H.typeLiteral("GroupItemResponse"); C.Type__$GroupItemResponse_LZB = H.typeLiteral("_$GroupItemResponse"); C.List_SLW = H.setRuntimeTypeInfo(makeConstList([C.Type_GroupItemResponse_9we, C.Type__$GroupItemResponse_LZB]), type$.JSArray_legacy_Type); C.Offset_1_0 = new P.Offset(1, 0); C.Offset_1_1 = new P.Offset(1, 1); C.Offset_0_1 = new P.Offset(0, 1); C.Offset_m1_1 = new P.Offset(-1, 1); C.Offset_m1_0 = new P.Offset(-1, 0); C.Offset_m1_m1 = new P.Offset(-1, -1); C.Offset_0_m1 = new P.Offset(0, -1); C.Offset_1_m1 = new P.Offset(1, -1); C.List_SbI = H.setRuntimeTypeInfo(makeConstList([C.Offset_1_0, C.Offset_1_1, C.Offset_0_1, C.Offset_m1_1, C.Offset_m1_0, C.Offset_m1_m1, C.Offset_0_m1, C.Offset_1_m1]), H.findType("JSArray")); C.List_Sfa = H.setRuntimeTypeInfo(makeConstList(["invoice_created", "invoice_sent", "invoice_viewed", "invoice_late", "payment_success", "payment_failure", "quote_created", "quote_sent", "quote_viewed", "quote_approved", "quote_expired", "credit_created", "credit_sent", "credit_viewed"]), type$.JSArray_legacy_String); C.Type__$CountryEntity_HRq = H.typeLiteral("_$CountryEntity"); C.List_THJ = H.setRuntimeTypeInfo(makeConstList([C.Type_CountryEntity_1Wj, C.Type__$CountryEntity_HRq]), type$.JSArray_legacy_Type); C.TextAffinity_0 = new P.TextAffinity("TextAffinity.upstream"); C.TextAffinity_1 = new P.TextAffinity("TextAffinity.downstream"); C.List_TextAffinity_0_TextAffinity_1 = H.setRuntimeTypeInfo(makeConstList([C.TextAffinity_0, C.TextAffinity_1]), H.findType("JSArray")); C.TextDirection_0 = new P.TextDirection(0, "TextDirection.rtl"); C.TextDirection_1 = new P.TextDirection(1, "TextDirection.ltr"); C.List_TextDirection_0_TextDirection_1 = H.setRuntimeTypeInfo(makeConstList([C.TextDirection_0, C.TextDirection_1]), H.findType("JSArray")); C.Type__$SubscriptionUIState_mR7 = H.typeLiteral("_$SubscriptionUIState"); C.List_Tfa = H.setRuntimeTypeInfo(makeConstList([C.Type_SubscriptionUIState_jf1, C.Type__$SubscriptionUIState_mR7]), type$.JSArray_legacy_Type); C.Type__$InvoiceItemEntity_tdJ = H.typeLiteral("_$InvoiceItemEntity"); C.List_Tph = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceItemEntity_23h, C.Type__$InvoiceItemEntity_tdJ]), type$.JSArray_legacy_Type); C.List_Type_AppLayout_co1 = H.setRuntimeTypeInfo(makeConstList([C.Type_AppLayout_co1]), type$.JSArray_legacy_Type); C.List_Type_AppSidebarMode_ZeT = H.setRuntimeTypeInfo(makeConstList([C.Type_AppSidebarMode_ZeT]), type$.JSArray_legacy_Type); C.List_Type_DateRangeComparison_wco = H.setRuntimeTypeInfo(makeConstList([C.Type_DateRangeComparison_wco]), type$.JSArray_legacy_Type); C.List_Type_DateRange_avx = H.setRuntimeTypeInfo(makeConstList([C.Type_DateRange_avx]), type$.JSArray_legacy_Type); C.List_Type_EmailTemplate_GAI = H.setRuntimeTypeInfo(makeConstList([C.Type_EmailTemplate_GAI]), type$.JSArray_legacy_Type); C.List_Type_EntityState_NQk = H.setRuntimeTypeInfo(makeConstList([C.Type_EntityState_NQk]), type$.JSArray_legacy_Type); C.List_Type_EntityType_6qb = H.setRuntimeTypeInfo(makeConstList([C.Type_EntityType_6qb]), type$.JSArray_legacy_Type); C.List_Type_ModuleLayout_0mz = H.setRuntimeTypeInfo(makeConstList([C.Type_ModuleLayout_0mz]), type$.JSArray_legacy_Type); C.Type_CompanyGatewayItemResponse_OLF = H.typeLiteral("CompanyGatewayItemResponse"); C.Type__$CompanyGatewayItemResponse_XJ7 = H.typeLiteral("_$CompanyGatewayItemResponse"); C.List_U3i = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyGatewayItemResponse_OLF, C.Type__$CompanyGatewayItemResponse_XJ7]), type$.JSArray_legacy_Type); C.Type__$TimezoneEntity_59Q = H.typeLiteral("_$TimezoneEntity"); C.List_U8b = H.setRuntimeTypeInfo(makeConstList([C.Type_TimezoneEntity_fPO, C.Type__$TimezoneEntity_59Q]), type$.JSArray_legacy_Type); C.Type_StaticDataItemResponse_6WV = H.typeLiteral("StaticDataItemResponse"); C.Type__$StaticDataItemResponse_yTI = H.typeLiteral("_$StaticDataItemResponse"); C.List_UNp = H.setRuntimeTypeInfo(makeConstList([C.Type_StaticDataItemResponse_6WV, C.Type__$StaticDataItemResponse_yTI]), type$.JSArray_legacy_Type); C.Type__$PaymentState_ES6 = H.typeLiteral("_$PaymentState"); C.List_UOT = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentState_ChD, C.Type__$PaymentState_ES6]), type$.JSArray_legacy_Type); C.Type_SizeItemResponse_mV4 = H.typeLiteral("SizeItemResponse"); C.Type__$SizeItemResponse_f7L = H.typeLiteral("_$SizeItemResponse"); C.List_USZ = H.setRuntimeTypeInfo(makeConstList([C.Type_SizeItemResponse_mV4, C.Type__$SizeItemResponse_f7L]), type$.JSArray_legacy_Type); C.Type__$WebhookEntity_MrK = H.typeLiteral("_$WebhookEntity"); C.List_VOT = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookEntity_Cfr, C.Type__$WebhookEntity_MrK]), type$.JSArray_legacy_Type); C.Type__$UserTwoFactorData_B8J = H.typeLiteral("_$UserTwoFactorData"); C.List_Vet = H.setRuntimeTypeInfo(makeConstList([C.Type_UserTwoFactorData_wwi, C.Type__$UserTwoFactorData_B8J]), type$.JSArray_legacy_Type); C.Type_DesignItemResponse_skj = H.typeLiteral("DesignItemResponse"); C.Type__$DesignItemResponse_NBt = H.typeLiteral("_$DesignItemResponse"); C.List_VgL = H.setRuntimeTypeInfo(makeConstList([C.Type_DesignItemResponse_skj, C.Type__$DesignItemResponse_NBt]), type$.JSArray_legacy_Type); C.List_WB4 = H.setRuntimeTypeInfo(makeConstList([31, -1, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]), type$.JSArray_legacy_int); C.TextAlign_0 = new P.TextAlign(0, "TextAlign.left"); C.TextAlign_1 = new P.TextAlign(1, "TextAlign.right"); C.TextAlign_2 = new P.TextAlign(2, "TextAlign.center"); C.TextAlign_3 = new P.TextAlign(3, "TextAlign.justify"); C.TextAlign_4 = new P.TextAlign(4, "TextAlign.start"); C.TextAlign_5 = new P.TextAlign(5, "TextAlign.end"); C.List_WPl = H.setRuntimeTypeInfo(makeConstList([C.TextAlign_0, C.TextAlign_1, C.TextAlign_2, C.TextAlign_3, C.TextAlign_4, C.TextAlign_5]), H.findType("JSArray")); C.List_WrN = H.setRuntimeTypeInfo(makeConstList([0, 0, 1048576, 531441, 1048576, 390625, 279936, 823543, 262144, 531441, 1000000, 161051, 248832, 371293, 537824, 759375, 1048576, 83521, 104976, 130321, 160000, 194481, 234256, 279841, 331776, 390625, 456976, 531441, 614656, 707281, 810000, 923521, 1048576, 35937, 39304, 42875, 46656]), type$.JSArray_legacy_int); C.List_X3d = H.setRuntimeTypeInfo(makeConstList([0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13]), type$.JSArray_legacy_int); C.List_X3d0 = H.setRuntimeTypeInfo(makeConstList([0, 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576]), type$.JSArray_legacy_int); C.List_X3d1 = H.setRuntimeTypeInfo(makeConstList([5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]), type$.JSArray_legacy_int); C.Type__$UserSettingsEntity_cQi = H.typeLiteral("_$UserSettingsEntity"); C.List_XBZ = H.setRuntimeTypeInfo(makeConstList([C.Type_UserSettingsEntity_ES6, C.Type__$UserSettingsEntity_cQi]), type$.JSArray_legacy_Type); C.Type_WebhookListResponse_dK2 = H.typeLiteral("WebhookListResponse"); C.Type__$WebhookListResponse_7Nb = H.typeLiteral("_$WebhookListResponse"); C.List_XRi = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookListResponse_dK2, C.Type__$WebhookListResponse_7Nb]), type$.JSArray_legacy_Type); C.List_Xg4 = H.setRuntimeTypeInfo(makeConstList([12, 8, 140, 8, 76, 8, 204, 8, 44, 8, 172, 8, 108, 8, 236, 8, 28, 8, 156, 8, 92, 8, 220, 8, 60, 8, 188, 8, 124, 8, 252, 8, 2, 8, 130, 8, 66, 8, 194, 8, 34, 8, 162, 8, 98, 8, 226, 8, 18, 8, 146, 8, 82, 8, 210, 8, 50, 8, 178, 8, 114, 8, 242, 8, 10, 8, 138, 8, 74, 8, 202, 8, 42, 8, 170, 8, 106, 8, 234, 8, 26, 8, 154, 8, 90, 8, 218, 8, 58, 8, 186, 8, 122, 8, 250, 8, 6, 8, 134, 8, 70, 8, 198, 8, 38, 8, 166, 8, 102, 8, 230, 8, 22, 8, 150, 8, 86, 8, 214, 8, 54, 8, 182, 8, 118, 8, 246, 8, 14, 8, 142, 8, 78, 8, 206, 8, 46, 8, 174, 8, 110, 8, 238, 8, 30, 8, 158, 8, 94, 8, 222, 8, 62, 8, 190, 8, 126, 8, 254, 8, 1, 8, 129, 8, 65, 8, 193, 8, 33, 8, 161, 8, 97, 8, 225, 8, 17, 8, 145, 8, 81, 8, 209, 8, 49, 8, 177, 8, 113, 8, 241, 8, 9, 8, 137, 8, 73, 8, 201, 8, 41, 8, 169, 8, 105, 8, 233, 8, 25, 8, 153, 8, 89, 8, 217, 8, 57, 8, 185, 8, 121, 8, 249, 8, 5, 8, 133, 8, 69, 8, 197, 8, 37, 8, 165, 8, 101, 8, 229, 8, 21, 8, 149, 8, 85, 8, 213, 8, 53, 8, 181, 8, 117, 8, 245, 8, 13, 8, 141, 8, 77, 8, 205, 8, 45, 8, 173, 8, 109, 8, 237, 8, 29, 8, 157, 8, 93, 8, 221, 8, 61, 8, 189, 8, 125, 8, 253, 8, 19, 9, 275, 9, 147, 9, 403, 9, 83, 9, 339, 9, 211, 9, 467, 9, 51, 9, 307, 9, 179, 9, 435, 9, 115, 9, 371, 9, 243, 9, 499, 9, 11, 9, 267, 9, 139, 9, 395, 9, 75, 9, 331, 9, 203, 9, 459, 9, 43, 9, 299, 9, 171, 9, 427, 9, 107, 9, 363, 9, 235, 9, 491, 9, 27, 9, 283, 9, 155, 9, 411, 9, 91, 9, 347, 9, 219, 9, 475, 9, 59, 9, 315, 9, 187, 9, 443, 9, 123, 9, 379, 9, 251, 9, 507, 9, 7, 9, 263, 9, 135, 9, 391, 9, 71, 9, 327, 9, 199, 9, 455, 9, 39, 9, 295, 9, 167, 9, 423, 9, 103, 9, 359, 9, 231, 9, 487, 9, 23, 9, 279, 9, 151, 9, 407, 9, 87, 9, 343, 9, 215, 9, 471, 9, 55, 9, 311, 9, 183, 9, 439, 9, 119, 9, 375, 9, 247, 9, 503, 9, 15, 9, 271, 9, 143, 9, 399, 9, 79, 9, 335, 9, 207, 9, 463, 9, 47, 9, 303, 9, 175, 9, 431, 9, 111, 9, 367, 9, 239, 9, 495, 9, 31, 9, 287, 9, 159, 9, 415, 9, 95, 9, 351, 9, 223, 9, 479, 9, 63, 9, 319, 9, 191, 9, 447, 9, 127, 9, 383, 9, 255, 9, 511, 9, 0, 7, 64, 7, 32, 7, 96, 7, 16, 7, 80, 7, 48, 7, 112, 7, 8, 7, 72, 7, 40, 7, 104, 7, 24, 7, 88, 7, 56, 7, 120, 7, 4, 7, 68, 7, 36, 7, 100, 7, 20, 7, 84, 7, 52, 7, 116, 7, 3, 8, 131, 8, 67, 8, 195, 8, 35, 8, 163, 8, 99, 8, 227, 8]), type$.JSArray_legacy_int); C.Type__$UserState_UwG = H.typeLiteral("_$UserState"); C.List_Y3r = H.setRuntimeTypeInfo(makeConstList([C.Type_UserState_WZn, C.Type__$UserState_UwG]), type$.JSArray_legacy_Type); C.Color_4294962158 = new P.Color(4294962158); C.Color_4294954450 = new P.Color(4294954450); C.Color_4293892762 = new P.Color(4293892762); C.Color_4293227379 = new P.Color(4293227379); C.Color_4293874512 = new P.Color(4293874512); C.Color_4294198070 = new P.Color(4294198070); C.Color_4293212469 = new P.Color(4293212469); C.Color_4292030255 = new P.Color(4292030255); C.Color_4291176488 = new P.Color(4291176488); C.Color_4290190364 = new P.Color(4290190364); C.Map_JNc9P = new H.GeneralConstantMap([50, C.Color_4294962158, 100, C.Color_4294954450, 200, C.Color_4293892762, 300, C.Color_4293227379, 400, C.Color_4293874512, 500, C.Color_4294198070, 600, C.Color_4293212469, 700, C.Color_4292030255, 800, C.Color_4291176488, 900, C.Color_4290190364], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNc9P_4294198070 = new E.MaterialColor(C.Map_JNc9P, 4294198070); C.Color_4294763756 = new P.Color(4294763756); C.Color_4294491088 = new P.Color(4294491088); C.Color_4294217649 = new P.Color(4294217649); C.Color_4293943954 = new P.Color(4293943954); C.Color_4293673082 = new P.Color(4293673082); C.Color_4293467747 = new P.Color(4293467747); C.Color_4292352864 = new P.Color(4292352864); C.Color_4290910299 = new P.Color(4290910299); C.Color_4289533015 = new P.Color(4289533015); C.Color_4287106639 = new P.Color(4287106639); C.Map_JN0o6 = new H.GeneralConstantMap([50, C.Color_4294763756, 100, C.Color_4294491088, 200, C.Color_4294217649, 300, C.Color_4293943954, 400, C.Color_4293673082, 500, C.Color_4293467747, 600, C.Color_4292352864, 700, C.Color_4290910299, 800, C.Color_4289533015, 900, C.Color_4287106639], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JN0o6_4293467747 = new E.MaterialColor(C.Map_JN0o6, 4293467747); C.Color_4294174197 = new P.Color(4294174197); C.Color_4292984551 = new P.Color(4292984551); C.Color_4291728344 = new P.Color(4291728344); C.Color_4290406600 = new P.Color(4290406600); C.Color_4289415100 = new P.Color(4289415100); C.Color_4287505578 = new P.Color(4287505578); C.Color_4286259106 = new P.Color(4286259106); C.Color_4285143962 = new P.Color(4285143962); C.Color_4283045004 = new P.Color(4283045004); C.Map_JNNS7 = new H.GeneralConstantMap([50, C.Color_4294174197, 100, C.Color_4292984551, 200, C.Color_4291728344, 300, C.Color_4290406600, 400, C.Color_4289415100, 500, C.Color_4288423856, 600, C.Color_4287505578, 700, C.Color_4286259106, 800, C.Color_4285143962, 900, C.Color_4283045004], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNNS7_4288423856 = new E.MaterialColor(C.Map_JNNS7, 4288423856); C.Color_4293781494 = new P.Color(4293781494); C.Color_4291937513 = new P.Color(4291937513); C.Color_4289961435 = new P.Color(4289961435); C.Color_4287985101 = new P.Color(4287985101); C.Color_4286470082 = new P.Color(4286470082); C.Color_4284955319 = new P.Color(4284955319); C.Color_4284364209 = new P.Color(4284364209); C.Color_4283510184 = new P.Color(4283510184); C.Color_4282722208 = new P.Color(4282722208); C.Color_4281408402 = new P.Color(4281408402); C.Map_JNEyN = new H.GeneralConstantMap([50, C.Color_4293781494, 100, C.Color_4291937513, 200, C.Color_4289961435, 300, C.Color_4287985101, 400, C.Color_4286470082, 500, C.Color_4284955319, 600, C.Color_4284364209, 700, C.Color_4283510184, 800, C.Color_4282722208, 900, C.Color_4281408402], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNEyN_4284955319 = new E.MaterialColor(C.Map_JNEyN, 4284955319); C.Color_4293454582 = new P.Color(4293454582); C.Color_4291152617 = new P.Color(4291152617); C.Color_4288653530 = new P.Color(4288653530); C.Color_4286154443 = new P.Color(4286154443); C.Color_4284246976 = new P.Color(4284246976); C.Color_4282339765 = new P.Color(4282339765); C.Color_4281944491 = new P.Color(4281944491); C.Color_4281352095 = new P.Color(4281352095); C.Color_4280825235 = new P.Color(4280825235); C.Color_4279903102 = new P.Color(4279903102); C.Map_JN8qN = new H.GeneralConstantMap([50, C.Color_4293454582, 100, C.Color_4291152617, 200, C.Color_4288653530, 300, C.Color_4286154443, 400, C.Color_4284246976, 500, C.Color_4282339765, 600, C.Color_4281944491, 700, C.Color_4281352095, 800, C.Color_4280825235, 900, C.Color_4279903102], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JN8qN_4282339765 = new E.MaterialColor(C.Map_JN8qN, 4282339765); C.Color_4293128957 = new P.Color(4293128957); C.Color_4290502395 = new P.Color(4290502395); C.Color_4287679225 = new P.Color(4287679225); C.Color_4284790262 = new P.Color(4284790262); C.Color_4282557941 = new P.Color(4282557941); C.Color_4280191205 = new P.Color(4280191205); C.Color_4279858898 = new P.Color(4279858898); C.Color_4279592384 = new P.Color(4279592384); C.Color_4279060385 = new P.Color(4279060385); C.Map_JNwaj = new H.GeneralConstantMap([50, C.Color_4293128957, 100, C.Color_4290502395, 200, C.Color_4287679225, 300, C.Color_4284790262, 400, C.Color_4282557941, 500, C.Color_4280391411, 600, C.Color_4280191205, 700, C.Color_4279858898, 800, C.Color_4279592384, 900, C.Color_4279060385], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNwaj_4280391411 = new E.MaterialColor(C.Map_JNwaj, 4280391411); C.Color_4292998654 = new P.Color(4292998654); C.Color_4289979900 = new P.Color(4289979900); C.Color_4286698746 = new P.Color(4286698746); C.Color_4283417591 = new P.Color(4283417591); C.Color_4280923894 = new P.Color(4280923894); C.Color_4278430196 = new P.Color(4278430196); C.Color_4278426597 = new P.Color(4278426597); C.Color_4278356177 = new P.Color(4278356177); C.Color_4278351805 = new P.Color(4278351805); C.Color_4278278043 = new P.Color(4278278043); C.Map_JN3Gf = new H.GeneralConstantMap([50, C.Color_4292998654, 100, C.Color_4289979900, 200, C.Color_4286698746, 300, C.Color_4283417591, 400, C.Color_4280923894, 500, C.Color_4278430196, 600, C.Color_4278426597, 700, C.Color_4278356177, 800, C.Color_4278351805, 900, C.Color_4278278043], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JN3Gf_4278430196 = new E.MaterialColor(C.Map_JN3Gf, 4278430196); C.Color_4292933626 = new P.Color(4292933626); C.Color_4289915890 = new P.Color(4289915890); C.Color_4286635754 = new P.Color(4286635754); C.Color_4283289825 = new P.Color(4283289825); C.Color_4280731354 = new P.Color(4280731354); C.Color_4278238420 = new P.Color(4278238420); C.Color_4278234305 = new P.Color(4278234305); C.Color_4278228903 = new P.Color(4278228903); C.Color_4278223759 = new P.Color(4278223759); C.Color_4278214756 = new P.Color(4278214756); C.Map_JN94k = new H.GeneralConstantMap([50, C.Color_4292933626, 100, C.Color_4289915890, 200, C.Color_4286635754, 300, C.Color_4283289825, 400, C.Color_4280731354, 500, C.Color_4278238420, 600, C.Color_4278234305, 700, C.Color_4278228903, 800, C.Color_4278223759, 900, C.Color_4278214756], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JN94k_4278238420 = new E.MaterialColor(C.Map_JN94k, 4278238420); C.Color_4292932337 = new P.Color(4292932337); C.Color_4289912795 = new P.Color(4289912795); C.Color_4286630852 = new P.Color(4286630852); C.Color_4283283116 = new P.Color(4283283116); C.Color_4280723098 = new P.Color(4280723098); C.Color_4278228616 = new P.Color(4278228616); C.Color_4278225275 = new P.Color(4278225275); C.Color_4278221163 = new P.Color(4278221163); C.Color_4278217052 = new P.Color(4278217052); C.Color_4278209856 = new P.Color(4278209856); C.Map_JN0Sr = new H.GeneralConstantMap([50, C.Color_4292932337, 100, C.Color_4289912795, 200, C.Color_4286630852, 300, C.Color_4283283116, 400, C.Color_4280723098, 500, C.Color_4278228616, 600, C.Color_4278225275, 700, C.Color_4278221163, 800, C.Color_4278217052, 900, C.Color_4278209856], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JN0Sr_4278228616 = new E.MaterialColor(C.Map_JN0Sr, 4278228616); C.Color_4293457385 = new P.Color(4293457385); C.Color_4291356361 = new P.Color(4291356361); C.Color_4289058471 = new P.Color(4289058471); C.Color_4286695300 = new P.Color(4286695300); C.Color_4284922730 = new P.Color(4284922730); C.Color_4282622023 = new P.Color(4282622023); C.Color_4281896508 = new P.Color(4281896508); C.Color_4281236786 = new P.Color(4281236786); C.Color_4279983648 = new P.Color(4279983648); C.Map_JNEaM = new H.GeneralConstantMap([50, C.Color_4293457385, 100, C.Color_4291356361, 200, C.Color_4289058471, 300, C.Color_4286695300, 400, C.Color_4284922730, 500, C.Color_4283215696, 600, C.Color_4282622023, 700, C.Color_4281896508, 800, C.Color_4281236786, 900, C.Color_4279983648], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNEaM_4283215696 = new E.MaterialColor(C.Map_JNEaM, 4283215696); C.Color_4294047977 = new P.Color(4294047977); C.Color_4292668872 = new P.Color(4292668872); C.Color_4291158437 = new P.Color(4291158437); C.Color_4289648001 = new P.Color(4289648001); C.Color_4288466021 = new P.Color(4288466021); C.Color_4287349578 = new P.Color(4287349578); C.Color_4286362434 = new P.Color(4286362434); C.Color_4285046584 = new P.Color(4285046584); C.Color_4283796271 = new P.Color(4283796271); C.Color_4281559326 = new P.Color(4281559326); C.Map_JNJAl = new H.GeneralConstantMap([50, C.Color_4294047977, 100, C.Color_4292668872, 200, C.Color_4291158437, 300, C.Color_4289648001, 400, C.Color_4288466021, 500, C.Color_4287349578, 600, C.Color_4286362434, 700, C.Color_4285046584, 800, C.Color_4283796271, 900, C.Color_4281559326], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNJAl_4287349578 = new E.MaterialColor(C.Map_JNJAl, 4287349578); C.Color_4294573031 = new P.Color(4294573031); C.Color_4293981379 = new P.Color(4293981379); C.Color_4293324444 = new P.Color(4293324444); C.Color_4292667253 = new P.Color(4292667253); C.Color_4292141399 = new P.Color(4292141399); C.Color_4291681337 = new P.Color(4291681337); C.Color_4290824755 = new P.Color(4290824755); C.Color_4289705003 = new P.Color(4289705003); C.Color_4288584996 = new P.Color(4288584996); C.Color_4286740247 = new P.Color(4286740247); C.Map_JNQQJ = new H.GeneralConstantMap([50, C.Color_4294573031, 100, C.Color_4293981379, 200, C.Color_4293324444, 300, C.Color_4292667253, 400, C.Color_4292141399, 500, C.Color_4291681337, 600, C.Color_4290824755, 700, C.Color_4289705003, 800, C.Color_4288584996, 900, C.Color_4286740247], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNQQJ_4291681337 = new E.MaterialColor(C.Map_JNQQJ, 4291681337); C.Color_4294966759 = new P.Color(4294966759); C.Color_4294965700 = new P.Color(4294965700); C.Color_4294964637 = new P.Color(4294964637); C.Color_4294963574 = new P.Color(4294963574); C.Color_4294962776 = new P.Color(4294962776); C.Color_4294961979 = new P.Color(4294961979); C.Color_4294826037 = new P.Color(4294826037); C.Color_4294688813 = new P.Color(4294688813); C.Color_4294551589 = new P.Color(4294551589); C.Color_4294278935 = new P.Color(4294278935); C.Map_JNHRl = new H.GeneralConstantMap([50, C.Color_4294966759, 100, C.Color_4294965700, 200, C.Color_4294964637, 300, C.Color_4294963574, 400, C.Color_4294962776, 500, C.Color_4294961979, 600, C.Color_4294826037, 700, C.Color_4294688813, 800, C.Color_4294551589, 900, C.Color_4294278935], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNHRl_4294961979 = new E.MaterialColor(C.Map_JNHRl, 4294961979); C.Color_4294965473 = new P.Color(4294965473); C.Color_4294962355 = new P.Color(4294962355); C.Color_4294959234 = new P.Color(4294959234); C.Color_4294956367 = new P.Color(4294956367); C.Color_4294953512 = new P.Color(4294953512); C.Color_4294947584 = new P.Color(4294947584); C.Color_4294942720 = new P.Color(4294942720); C.Color_4294938368 = new P.Color(4294938368); C.Color_4294930176 = new P.Color(4294930176); C.Map_JNsy5 = new H.GeneralConstantMap([50, C.Color_4294965473, 100, C.Color_4294962355, 200, C.Color_4294959234, 300, C.Color_4294956367, 400, C.Color_4294953512, 500, C.Color_4294951175, 600, C.Color_4294947584, 700, C.Color_4294942720, 800, C.Color_4294938368, 900, C.Color_4294930176], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNsy5_4294951175 = new E.MaterialColor(C.Map_JNsy5, 4294951175); C.Color_4294964192 = new P.Color(4294964192); C.Color_4294959282 = new P.Color(4294959282); C.Color_4294954112 = new P.Color(4294954112); C.Color_4294948685 = new P.Color(4294948685); C.Color_4294944550 = new P.Color(4294944550); C.Color_4294675456 = new P.Color(4294675456); C.Color_4294278144 = new P.Color(4294278144); C.Color_4293880832 = new P.Color(4293880832); C.Color_4293284096 = new P.Color(4293284096); C.Map_JNZaB = new H.GeneralConstantMap([50, C.Color_4294964192, 100, C.Color_4294959282, 200, C.Color_4294954112, 300, C.Color_4294948685, 400, C.Color_4294944550, 500, C.Color_4294940672, 600, C.Color_4294675456, 700, C.Color_4294278144, 800, C.Color_4293880832, 900, C.Color_4293284096], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNZaB_4294940672 = new E.MaterialColor(C.Map_JNZaB, 4294940672); C.Color_4294699495 = new P.Color(4294699495); C.Color_4294954172 = new P.Color(4294954172); C.Color_4294945681 = new P.Color(4294945681); C.Color_4294937189 = new P.Color(4294937189); C.Color_4294930499 = new P.Color(4294930499); C.Color_4294924066 = new P.Color(4294924066); C.Color_4294201630 = new P.Color(4294201630); C.Color_4293282329 = new P.Color(4293282329); C.Color_4292363029 = new P.Color(4292363029); C.Color_4290721292 = new P.Color(4290721292); C.Map_JNUn6 = new H.GeneralConstantMap([50, C.Color_4294699495, 100, C.Color_4294954172, 200, C.Color_4294945681, 300, C.Color_4294937189, 400, C.Color_4294930499, 500, C.Color_4294924066, 600, C.Color_4294201630, 700, C.Color_4293282329, 800, C.Color_4292363029, 900, C.Color_4290721292], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNUn6_4294924066 = new E.MaterialColor(C.Map_JNUn6, 4294924066); C.Color_4293913577 = new P.Color(4293913577); C.Color_4292332744 = new P.Color(4292332744); C.Color_4290554532 = new P.Color(4290554532); C.Color_4288776319 = new P.Color(4288776319); C.Color_4287458915 = new P.Color(4287458915); C.Color_4286141768 = new P.Color(4286141768); C.Color_4285353025 = new P.Color(4285353025); C.Color_4284301367 = new P.Color(4284301367); C.Color_4283315246 = new P.Color(4283315246); C.Color_4282263331 = new P.Color(4282263331); C.Map_JNUEV = new H.GeneralConstantMap([50, C.Color_4293913577, 100, C.Color_4292332744, 200, C.Color_4290554532, 300, C.Color_4288776319, 400, C.Color_4287458915, 500, C.Color_4286141768, 600, C.Color_4285353025, 700, C.Color_4284301367, 800, C.Color_4283315246, 900, C.Color_4282263331], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNUEV_4286141768 = new E.MaterialColor(C.Map_JNUEV, 4286141768); C.Color_4293718001 = new P.Color(4293718001); C.Color_4291811548 = new P.Color(4291811548); C.Color_4289773253 = new P.Color(4289773253); C.Color_4287669422 = new P.Color(4287669422); C.Color_4286091420 = new P.Color(4286091420); C.Color_4284513675 = new P.Color(4284513675); C.Color_4283723386 = new P.Color(4283723386); C.Color_4282735204 = new P.Color(4282735204); C.Color_4281812815 = new P.Color(4281812815); C.Color_4280693304 = new P.Color(4280693304); C.Map_JNy8A = new H.GeneralConstantMap([50, C.Color_4293718001, 100, C.Color_4291811548, 200, C.Color_4289773253, 300, C.Color_4287669422, 400, C.Color_4286091420, 500, C.Color_4284513675, 600, C.Color_4283723386, 700, C.Color_4282735204, 800, C.Color_4281812815, 900, C.Color_4280693304], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialColor_Map_JNy8A_4284513675 = new E.MaterialColor(C.Map_JNy8A, 4284513675); C.List_YVI = H.setRuntimeTypeInfo(makeConstList([C.MaterialColor_Map_JNc9P_4294198070, C.MaterialColor_Map_JN0o6_4293467747, C.MaterialColor_Map_JNNS7_4288423856, C.MaterialColor_Map_JNEyN_4284955319, C.MaterialColor_Map_JN8qN_4282339765, C.MaterialColor_Map_JNwaj_4280391411, C.MaterialColor_Map_JN3Gf_4278430196, C.MaterialColor_Map_JN94k_4278238420, C.MaterialColor_Map_JN0Sr_4278228616, C.MaterialColor_Map_JNEaM_4283215696, C.MaterialColor_Map_JNJAl_4287349578, C.MaterialColor_Map_JNQQJ_4291681337, C.MaterialColor_Map_JNHRl_4294961979, C.MaterialColor_Map_JNsy5_4294951175, C.MaterialColor_Map_JNZaB_4294940672, C.MaterialColor_Map_JNUn6_4294924066, C.MaterialColor_Map_JNUEV_4286141768, C.MaterialColor_Map_JNy8A_4284513675]), H.findType("JSArray")); C.Type__$TaskUIState_gg4 = H.typeLiteral("_$TaskUIState"); C.List_YgE = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskUIState_oqK, C.Type__$TaskUIState_gg4]), type$.JSArray_legacy_Type); C.Type__$TokenUIState_Gnb = H.typeLiteral("_$TokenUIState"); C.List_YuA = H.setRuntimeTypeInfo(makeConstList([C.Type_TokenUIState_bDN, C.Type__$TokenUIState_Gnb]), type$.JSArray_legacy_Type); C.Type_TokenItemResponse_WnQ = H.typeLiteral("TokenItemResponse"); C.Type__$TokenItemResponse_Tti = H.typeLiteral("_$TokenItemResponse"); C.List_ZAJ = H.setRuntimeTypeInfo(makeConstList([C.Type_TokenItemResponse_WnQ, C.Type__$TokenItemResponse_Tti]), type$.JSArray_legacy_Type); C.Type__$TaskState_qjR = H.typeLiteral("_$TaskState"); C.List_a1Y = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskState_AgZ, C.Type__$TaskState_qjR]), type$.JSArray_legacy_Type); C.Type_ClientItemResponse_apS = H.typeLiteral("ClientItemResponse"); C.Type__$ClientItemResponse_qHS = H.typeLiteral("_$ClientItemResponse"); C.List_a5W = H.setRuntimeTypeInfo(makeConstList([C.Type_ClientItemResponse_apS, C.Type__$ClientItemResponse_qHS]), type$.JSArray_legacy_Type); C.Type__$RecurringExpenseUIState_yzJ = H.typeLiteral("_$RecurringExpenseUIState"); C.List_a9w = H.setRuntimeTypeInfo(makeConstList([C.Type_RecurringExpenseUIState_TTS, C.Type__$RecurringExpenseUIState_yzJ]), type$.JSArray_legacy_Type); C.Type_DatetimeFormatListResponse_qJO = H.typeLiteral("DatetimeFormatListResponse"); C.Type__$DatetimeFormatListResponse_ohJ = H.typeLiteral("_$DatetimeFormatListResponse"); C.List_aYE = H.setRuntimeTypeInfo(makeConstList([C.Type_DatetimeFormatListResponse_qJO, C.Type__$DatetimeFormatListResponse_ohJ]), type$.JSArray_legacy_Type); C.Type__$QuoteState_NMc = H.typeLiteral("_$QuoteState"); C.List_ad2 = H.setRuntimeTypeInfo(makeConstList([C.Type_QuoteState_aJC, C.Type__$QuoteState_NMc]), type$.JSArray_legacy_Type); C._RouteRestorationType_0 = new K._RouteRestorationType(0, "_RouteRestorationType.named"); C._RouteRestorationType_1 = new K._RouteRestorationType(1, "_RouteRestorationType.anonymous"); C.List_ato = H.setRuntimeTypeInfo(makeConstList([C._RouteRestorationType_0, C._RouteRestorationType_1]), H.findType("JSArray<_RouteRestorationType*>")); C.Type__$RegistrationFieldEntity_sEt = H.typeLiteral("_$RegistrationFieldEntity"); C.List_awF = H.setRuntimeTypeInfo(makeConstList([C.Type_RegistrationFieldEntity_k2a, C.Type__$RegistrationFieldEntity_sEt]), type$.JSArray_legacy_Type); C.List_bJM = H.setRuntimeTypeInfo(makeConstList(["1st quarter", "2nd quarter", "3rd quarter", "4th quarter"]), type$.JSArray_legacy_String); C.Type_ProjectListResponse_aD9 = H.typeLiteral("ProjectListResponse"); C.Type__$ProjectListResponse_UEs = H.typeLiteral("_$ProjectListResponse"); C.List_bfP = H.setRuntimeTypeInfo(makeConstList([C.Type_ProjectListResponse_aD9, C.Type__$ProjectListResponse_UEs]), type$.JSArray_legacy_Type); C.Type__$HistoryRecord_GEi = H.typeLiteral("_$HistoryRecord"); C.List_blc = H.setRuntimeTypeInfo(makeConstList([C.Type_HistoryRecord_ato, C.Type__$HistoryRecord_GEi]), type$.JSArray_legacy_Type); C.WordCharProperty_0 = new H.WordCharProperty("WordCharProperty.DoubleQuote"); C.WordCharProperty_1 = new H.WordCharProperty("WordCharProperty.SingleQuote"); C.WordCharProperty_2 = new H.WordCharProperty("WordCharProperty.HebrewLetter"); C.WordCharProperty_3 = new H.WordCharProperty("WordCharProperty.CR"); C.WordCharProperty_4 = new H.WordCharProperty("WordCharProperty.LF"); C.WordCharProperty_5 = new H.WordCharProperty("WordCharProperty.Newline"); C.WordCharProperty_6 = new H.WordCharProperty("WordCharProperty.Extend"); C.WordCharProperty_7 = new H.WordCharProperty("WordCharProperty.RegionalIndicator"); C.WordCharProperty_8 = new H.WordCharProperty("WordCharProperty.Format"); C.WordCharProperty_9 = new H.WordCharProperty("WordCharProperty.Katakana"); C.WordCharProperty_10 = new H.WordCharProperty("WordCharProperty.ALetter"); C.WordCharProperty_11 = new H.WordCharProperty("WordCharProperty.MidLetter"); C.WordCharProperty_12 = new H.WordCharProperty("WordCharProperty.MidNum"); C.WordCharProperty_13 = new H.WordCharProperty("WordCharProperty.MidNumLet"); C.WordCharProperty_14 = new H.WordCharProperty("WordCharProperty.Numeric"); C.WordCharProperty_15 = new H.WordCharProperty("WordCharProperty.ExtendNumLet"); C.WordCharProperty_16 = new H.WordCharProperty("WordCharProperty.ZWJ"); C.WordCharProperty_17 = new H.WordCharProperty("WordCharProperty.WSegSpace"); C.WordCharProperty_18 = new H.WordCharProperty("WordCharProperty.Unknown"); C.List_bso = H.setRuntimeTypeInfo(makeConstList([C.WordCharProperty_0, C.WordCharProperty_1, C.WordCharProperty_2, C.WordCharProperty_3, C.WordCharProperty_4, C.WordCharProperty_5, C.WordCharProperty_6, C.WordCharProperty_7, C.WordCharProperty_8, C.WordCharProperty_9, C.WordCharProperty_10, C.WordCharProperty_11, C.WordCharProperty_12, C.WordCharProperty_13, C.WordCharProperty_14, C.WordCharProperty_15, C.WordCharProperty_16, C.WordCharProperty_17, C.WordCharProperty_18]), H.findType("JSArray")); C.Type_UserItemResponse_RsV = H.typeLiteral("UserItemResponse"); C.Type__$UserItemResponse_qbf = H.typeLiteral("_$UserItemResponse"); C.List_bti = H.setRuntimeTypeInfo(makeConstList([C.Type_UserItemResponse_RsV, C.Type__$UserItemResponse_qbf]), type$.JSArray_legacy_Type); C.List_cIc = H.setRuntimeTypeInfo(makeConstList(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]), type$.JSArray_legacy_String); C.Type_CountryItemResponse_ZOg = H.typeLiteral("CountryItemResponse"); C.Type__$CountryItemResponse_I93 = H.typeLiteral("_$CountryItemResponse"); C.List_cKo = H.setRuntimeTypeInfo(makeConstList([C.Type_CountryItemResponse_ZOg, C.Type__$CountryItemResponse_I93]), type$.JSArray_legacy_Type); C.Type__$RecurringInvoiceUIState_OPS = H.typeLiteral("_$RecurringInvoiceUIState"); C.List_cMx = H.setRuntimeTypeInfo(makeConstList([C.Type_RecurringInvoiceUIState_Sof, C.Type__$RecurringInvoiceUIState_OPS]), type$.JSArray_legacy_Type); C.Type__$CompanyPrefState_lUt = H.typeLiteral("_$CompanyPrefState"); C.List_cOY = H.setRuntimeTypeInfo(makeConstList([C.Type_CompanyPrefState_Y50, C.Type__$CompanyPrefState_lUt]), type$.JSArray_legacy_Type); C.Type__$AuthState_RcD = H.typeLiteral("_$AuthState"); C.List_cYh = H.setRuntimeTypeInfo(makeConstList([C.Type_AuthState_Eo2, C.Type__$AuthState_RcD]), type$.JSArray_legacy_Type); C.Type__$TaskEntity_FiV = H.typeLiteral("_$TaskEntity"); C.List_ckJ = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskEntity_33h, C.Type__$TaskEntity_FiV]), type$.JSArray_legacy_Type); C.List_click_scroll = H.setRuntimeTypeInfo(makeConstList(["click", "scroll"]), type$.JSArray_legacy_String); C.List_cno = H.setRuntimeTypeInfo(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "M/d/yy"]), type$.JSArray_legacy_String); C.TaxRateReportFields_00 = new O.TaxRateReportFields("TaxRateReportFields.client"); C.TaxRateReportFields_11 = new O.TaxRateReportFields("TaxRateReportFields.number"); C.TaxRateReportFields_20 = new O.TaxRateReportFields("TaxRateReportFields.amount"); C.TaxRateReportFields_30 = new O.TaxRateReportFields("TaxRateReportFields.date"); C.TaxRateReportFields_40 = new O.TaxRateReportFields("TaxRateReportFields.tax_name"); C.TaxRateReportFields_50 = new O.TaxRateReportFields("TaxRateReportFields.tax_rate"); C.TaxRateReportFields_60 = new O.TaxRateReportFields("TaxRateReportFields.tax_amount"); C.TaxRateReportFields_70 = new O.TaxRateReportFields("TaxRateReportFields.tax_paid"); C.TaxRateReportFields_80 = new O.TaxRateReportFields("TaxRateReportFields.currency"); C.List_dyC = H.setRuntimeTypeInfo(makeConstList([C.TaxRateReportFields_00, C.TaxRateReportFields_11, C.TaxRateReportFields_20, C.TaxRateReportFields_30, C.TaxRateReportFields_40, C.TaxRateReportFields_50, C.TaxRateReportFields_60, C.TaxRateReportFields_70, C.TaxRateReportFields_80]), type$.JSArray_legacy_TaxRateReportFields); C.List_e5Z = H.setRuntimeTypeInfo(makeConstList([0.01, 0.02, 0.025, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 2, 2.5, 3, 4, 5, 6, 7, 8, 9]), type$.JSArray_legacy_double); C.List_eea = H.setRuntimeTypeInfo(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0]), type$.JSArray_legacy_int); C.List_ego = H.setRuntimeTypeInfo(makeConstList(["HEAD", "AREA", "BASE", "BASEFONT", "BR", "COL", "COLGROUP", "EMBED", "FRAME", "FRAMESET", "HR", "IMAGE", "IMG", "INPUT", "ISINDEX", "LINK", "META", "PARAM", "SOURCE", "STYLE", "TITLE", "WBR"]), type$.JSArray_legacy_String); C.List_empty = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_dynamic); C.List_empty19 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty2 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty17 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty0 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty12 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty15 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_EntityStatus); C.List_empty14 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_IconButton); C.List_empty6 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty20 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_Locale); C.List_empty9 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_NavigatorObserver); C.List_empty4 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty3 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray*>")); C.List_empty13 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray*>")); C.List_empty16 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty1 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_String); C.List_empty21 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_TableRow); C.List_empty5 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.List_empty8 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_Widget); C.List_empty11 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray<_TableElementRow*>")); C.List_empty10 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_nullable_RenderBox); C.List_1_26_19 = H.setRuntimeTypeInfo(makeConstList([1, 26, 19]), type$.JSArray_legacy_int); C.List_1_26_16 = H.setRuntimeTypeInfo(makeConstList([1, 26, 16]), type$.JSArray_legacy_int); C.List_1_26_13 = H.setRuntimeTypeInfo(makeConstList([1, 26, 13]), type$.JSArray_legacy_int); C.List_1_26_9 = H.setRuntimeTypeInfo(makeConstList([1, 26, 9]), type$.JSArray_legacy_int); C.List_1_44_34 = H.setRuntimeTypeInfo(makeConstList([1, 44, 34]), type$.JSArray_legacy_int); C.List_1_44_28 = H.setRuntimeTypeInfo(makeConstList([1, 44, 28]), type$.JSArray_legacy_int); C.List_1_44_22 = H.setRuntimeTypeInfo(makeConstList([1, 44, 22]), type$.JSArray_legacy_int); C.List_1_44_16 = H.setRuntimeTypeInfo(makeConstList([1, 44, 16]), type$.JSArray_legacy_int); C.List_1_70_55 = H.setRuntimeTypeInfo(makeConstList([1, 70, 55]), type$.JSArray_legacy_int); C.List_1_70_44 = H.setRuntimeTypeInfo(makeConstList([1, 70, 44]), type$.JSArray_legacy_int); C.List_2_35_17 = H.setRuntimeTypeInfo(makeConstList([2, 35, 17]), type$.JSArray_legacy_int); C.List_2_35_13 = H.setRuntimeTypeInfo(makeConstList([2, 35, 13]), type$.JSArray_legacy_int); C.List_1_100_80 = H.setRuntimeTypeInfo(makeConstList([1, 100, 80]), type$.JSArray_legacy_int); C.List_2_50_32 = H.setRuntimeTypeInfo(makeConstList([2, 50, 32]), type$.JSArray_legacy_int); C.List_2_50_24 = H.setRuntimeTypeInfo(makeConstList([2, 50, 24]), type$.JSArray_legacy_int); C.List_4_25_9 = H.setRuntimeTypeInfo(makeConstList([4, 25, 9]), type$.JSArray_legacy_int); C.List_1_134_108 = H.setRuntimeTypeInfo(makeConstList([1, 134, 108]), type$.JSArray_legacy_int); C.List_2_67_43 = H.setRuntimeTypeInfo(makeConstList([2, 67, 43]), type$.JSArray_legacy_int); C.List_ww89 = H.setRuntimeTypeInfo(makeConstList([2, 33, 15, 2, 34, 16]), type$.JSArray_legacy_int); C.List_ww810 = H.setRuntimeTypeInfo(makeConstList([2, 33, 11, 2, 34, 12]), type$.JSArray_legacy_int); C.List_2_86_68 = H.setRuntimeTypeInfo(makeConstList([2, 86, 68]), type$.JSArray_legacy_int); C.List_4_43_27 = H.setRuntimeTypeInfo(makeConstList([4, 43, 27]), type$.JSArray_legacy_int); C.List_4_43_19 = H.setRuntimeTypeInfo(makeConstList([4, 43, 19]), type$.JSArray_legacy_int); C.List_4_43_15 = H.setRuntimeTypeInfo(makeConstList([4, 43, 15]), type$.JSArray_legacy_int); C.List_2_98_78 = H.setRuntimeTypeInfo(makeConstList([2, 98, 78]), type$.JSArray_legacy_int); C.List_4_49_31 = H.setRuntimeTypeInfo(makeConstList([4, 49, 31]), type$.JSArray_legacy_int); C.List_ww811 = H.setRuntimeTypeInfo(makeConstList([2, 32, 14, 4, 33, 15]), type$.JSArray_legacy_int); C.List_ww812 = H.setRuntimeTypeInfo(makeConstList([4, 39, 13, 1, 40, 14]), type$.JSArray_legacy_int); C.List_2_121_97 = H.setRuntimeTypeInfo(makeConstList([2, 121, 97]), type$.JSArray_legacy_int); C.List_ww813 = H.setRuntimeTypeInfo(makeConstList([2, 60, 38, 2, 61, 39]), type$.JSArray_legacy_int); C.List_ww814 = H.setRuntimeTypeInfo(makeConstList([4, 40, 18, 2, 41, 19]), type$.JSArray_legacy_int); C.List_ww815 = H.setRuntimeTypeInfo(makeConstList([4, 40, 14, 2, 41, 15]), type$.JSArray_legacy_int); C.List_2_146_116 = H.setRuntimeTypeInfo(makeConstList([2, 146, 116]), type$.JSArray_legacy_int); C.List_ww816 = H.setRuntimeTypeInfo(makeConstList([3, 58, 36, 2, 59, 37]), type$.JSArray_legacy_int); C.List_ww817 = H.setRuntimeTypeInfo(makeConstList([4, 36, 16, 4, 37, 17]), type$.JSArray_legacy_int); C.List_ww818 = H.setRuntimeTypeInfo(makeConstList([4, 36, 12, 4, 37, 13]), type$.JSArray_legacy_int); C.List_ww819 = H.setRuntimeTypeInfo(makeConstList([2, 86, 68, 2, 87, 69]), type$.JSArray_legacy_int); C.List_ww820 = H.setRuntimeTypeInfo(makeConstList([4, 69, 43, 1, 70, 44]), type$.JSArray_legacy_int); C.List_ww821 = H.setRuntimeTypeInfo(makeConstList([6, 43, 19, 2, 44, 20]), type$.JSArray_legacy_int); C.List_ww822 = H.setRuntimeTypeInfo(makeConstList([6, 43, 15, 2, 44, 16]), type$.JSArray_legacy_int); C.List_4_101_81 = H.setRuntimeTypeInfo(makeConstList([4, 101, 81]), type$.JSArray_legacy_int); C.List_ww823 = H.setRuntimeTypeInfo(makeConstList([1, 80, 50, 4, 81, 51]), type$.JSArray_legacy_int); C.List_ww824 = H.setRuntimeTypeInfo(makeConstList([4, 50, 22, 4, 51, 23]), type$.JSArray_legacy_int); C.List_ww825 = H.setRuntimeTypeInfo(makeConstList([3, 36, 12, 8, 37, 13]), type$.JSArray_legacy_int); C.List_ww826 = H.setRuntimeTypeInfo(makeConstList([2, 116, 92, 2, 117, 93]), type$.JSArray_legacy_int); C.List_ww827 = H.setRuntimeTypeInfo(makeConstList([6, 58, 36, 2, 59, 37]), type$.JSArray_legacy_int); C.List_ww828 = H.setRuntimeTypeInfo(makeConstList([4, 46, 20, 6, 47, 21]), type$.JSArray_legacy_int); C.List_ww829 = H.setRuntimeTypeInfo(makeConstList([7, 42, 14, 4, 43, 15]), type$.JSArray_legacy_int); C.List_4_133_107 = H.setRuntimeTypeInfo(makeConstList([4, 133, 107]), type$.JSArray_legacy_int); C.List_ww830 = H.setRuntimeTypeInfo(makeConstList([8, 59, 37, 1, 60, 38]), type$.JSArray_legacy_int); C.List_ww831 = H.setRuntimeTypeInfo(makeConstList([8, 44, 20, 4, 45, 21]), type$.JSArray_legacy_int); C.List_ww832 = H.setRuntimeTypeInfo(makeConstList([12, 33, 11, 4, 34, 12]), type$.JSArray_legacy_int); C.List_ww833 = H.setRuntimeTypeInfo(makeConstList([3, 145, 115, 1, 146, 116]), type$.JSArray_legacy_int); C.List_ww834 = H.setRuntimeTypeInfo(makeConstList([4, 64, 40, 5, 65, 41]), type$.JSArray_legacy_int); C.List_ww835 = H.setRuntimeTypeInfo(makeConstList([11, 36, 16, 5, 37, 17]), type$.JSArray_legacy_int); C.List_ww836 = H.setRuntimeTypeInfo(makeConstList([11, 36, 12, 5, 37, 13]), type$.JSArray_legacy_int); C.List_ww837 = H.setRuntimeTypeInfo(makeConstList([5, 109, 87, 1, 110, 88]), type$.JSArray_legacy_int); C.List_ww838 = H.setRuntimeTypeInfo(makeConstList([5, 65, 41, 5, 66, 42]), type$.JSArray_legacy_int); C.List_ww839 = H.setRuntimeTypeInfo(makeConstList([5, 54, 24, 7, 55, 25]), type$.JSArray_legacy_int); C.List_11_36_12 = H.setRuntimeTypeInfo(makeConstList([11, 36, 12]), type$.JSArray_legacy_int); C.List_ww840 = H.setRuntimeTypeInfo(makeConstList([5, 122, 98, 1, 123, 99]), type$.JSArray_legacy_int); C.List_ww841 = H.setRuntimeTypeInfo(makeConstList([7, 73, 45, 3, 74, 46]), type$.JSArray_legacy_int); C.List_ww842 = H.setRuntimeTypeInfo(makeConstList([15, 43, 19, 2, 44, 20]), type$.JSArray_legacy_int); C.List_ww843 = H.setRuntimeTypeInfo(makeConstList([3, 45, 15, 13, 46, 16]), type$.JSArray_legacy_int); C.List_ww844 = H.setRuntimeTypeInfo(makeConstList([1, 135, 107, 5, 136, 108]), type$.JSArray_legacy_int); C.List_ww845 = H.setRuntimeTypeInfo(makeConstList([10, 74, 46, 1, 75, 47]), type$.JSArray_legacy_int); C.List_ww846 = H.setRuntimeTypeInfo(makeConstList([1, 50, 22, 15, 51, 23]), type$.JSArray_legacy_int); C.List_ww847 = H.setRuntimeTypeInfo(makeConstList([2, 42, 14, 17, 43, 15]), type$.JSArray_legacy_int); C.List_ww848 = H.setRuntimeTypeInfo(makeConstList([5, 150, 120, 1, 151, 121]), type$.JSArray_legacy_int); C.List_ww849 = H.setRuntimeTypeInfo(makeConstList([9, 69, 43, 4, 70, 44]), type$.JSArray_legacy_int); C.List_ww850 = H.setRuntimeTypeInfo(makeConstList([17, 50, 22, 1, 51, 23]), type$.JSArray_legacy_int); C.List_ww851 = H.setRuntimeTypeInfo(makeConstList([2, 42, 14, 19, 43, 15]), type$.JSArray_legacy_int); C.List_ww852 = H.setRuntimeTypeInfo(makeConstList([3, 141, 113, 4, 142, 114]), type$.JSArray_legacy_int); C.List_ww853 = H.setRuntimeTypeInfo(makeConstList([3, 70, 44, 11, 71, 45]), type$.JSArray_legacy_int); C.List_ww854 = H.setRuntimeTypeInfo(makeConstList([17, 47, 21, 4, 48, 22]), type$.JSArray_legacy_int); C.List_ww855 = H.setRuntimeTypeInfo(makeConstList([9, 39, 13, 16, 40, 14]), type$.JSArray_legacy_int); C.List_ww856 = H.setRuntimeTypeInfo(makeConstList([3, 135, 107, 5, 136, 108]), type$.JSArray_legacy_int); C.List_ww857 = H.setRuntimeTypeInfo(makeConstList([3, 67, 41, 13, 68, 42]), type$.JSArray_legacy_int); C.List_ww858 = H.setRuntimeTypeInfo(makeConstList([15, 54, 24, 5, 55, 25]), type$.JSArray_legacy_int); C.List_ww859 = H.setRuntimeTypeInfo(makeConstList([15, 43, 15, 10, 44, 16]), type$.JSArray_legacy_int); C.List_ww860 = H.setRuntimeTypeInfo(makeConstList([4, 144, 116, 4, 145, 117]), type$.JSArray_legacy_int); C.List_17_68_42 = H.setRuntimeTypeInfo(makeConstList([17, 68, 42]), type$.JSArray_legacy_int); C.List_ww861 = H.setRuntimeTypeInfo(makeConstList([17, 50, 22, 6, 51, 23]), type$.JSArray_legacy_int); C.List_ww862 = H.setRuntimeTypeInfo(makeConstList([19, 46, 16, 6, 47, 17]), type$.JSArray_legacy_int); C.List_ww863 = H.setRuntimeTypeInfo(makeConstList([2, 139, 111, 7, 140, 112]), type$.JSArray_legacy_int); C.List_17_74_46 = H.setRuntimeTypeInfo(makeConstList([17, 74, 46]), type$.JSArray_legacy_int); C.List_ww864 = H.setRuntimeTypeInfo(makeConstList([7, 54, 24, 16, 55, 25]), type$.JSArray_legacy_int); C.List_34_37_13 = H.setRuntimeTypeInfo(makeConstList([34, 37, 13]), type$.JSArray_legacy_int); C.List_ww865 = H.setRuntimeTypeInfo(makeConstList([4, 151, 121, 5, 152, 122]), type$.JSArray_legacy_int); C.List_ww866 = H.setRuntimeTypeInfo(makeConstList([4, 75, 47, 14, 76, 48]), type$.JSArray_legacy_int); C.List_ww867 = H.setRuntimeTypeInfo(makeConstList([11, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); C.List_ww868 = H.setRuntimeTypeInfo(makeConstList([16, 45, 15, 14, 46, 16]), type$.JSArray_legacy_int); C.List_ww869 = H.setRuntimeTypeInfo(makeConstList([6, 147, 117, 4, 148, 118]), type$.JSArray_legacy_int); C.List_ww870 = H.setRuntimeTypeInfo(makeConstList([6, 73, 45, 14, 74, 46]), type$.JSArray_legacy_int); C.List_ww871 = H.setRuntimeTypeInfo(makeConstList([11, 54, 24, 16, 55, 25]), type$.JSArray_legacy_int); C.List_ww872 = H.setRuntimeTypeInfo(makeConstList([30, 46, 16, 2, 47, 17]), type$.JSArray_legacy_int); C.List_ww873 = H.setRuntimeTypeInfo(makeConstList([8, 132, 106, 4, 133, 107]), type$.JSArray_legacy_int); C.List_ww874 = H.setRuntimeTypeInfo(makeConstList([8, 75, 47, 13, 76, 48]), type$.JSArray_legacy_int); C.List_ww875 = H.setRuntimeTypeInfo(makeConstList([7, 54, 24, 22, 55, 25]), type$.JSArray_legacy_int); C.List_ww876 = H.setRuntimeTypeInfo(makeConstList([22, 45, 15, 13, 46, 16]), type$.JSArray_legacy_int); C.List_ww877 = H.setRuntimeTypeInfo(makeConstList([10, 142, 114, 2, 143, 115]), type$.JSArray_legacy_int); C.List_ww878 = H.setRuntimeTypeInfo(makeConstList([19, 74, 46, 4, 75, 47]), type$.JSArray_legacy_int); C.List_ww879 = H.setRuntimeTypeInfo(makeConstList([28, 50, 22, 6, 51, 23]), type$.JSArray_legacy_int); C.List_ww880 = H.setRuntimeTypeInfo(makeConstList([33, 46, 16, 4, 47, 17]), type$.JSArray_legacy_int); C.List_ww881 = H.setRuntimeTypeInfo(makeConstList([8, 152, 122, 4, 153, 123]), type$.JSArray_legacy_int); C.List_ww882 = H.setRuntimeTypeInfo(makeConstList([22, 73, 45, 3, 74, 46]), type$.JSArray_legacy_int); C.List_ww883 = H.setRuntimeTypeInfo(makeConstList([8, 53, 23, 26, 54, 24]), type$.JSArray_legacy_int); C.List_ww884 = H.setRuntimeTypeInfo(makeConstList([12, 45, 15, 28, 46, 16]), type$.JSArray_legacy_int); C.List_ww885 = H.setRuntimeTypeInfo(makeConstList([3, 147, 117, 10, 148, 118]), type$.JSArray_legacy_int); C.List_ww886 = H.setRuntimeTypeInfo(makeConstList([3, 73, 45, 23, 74, 46]), type$.JSArray_legacy_int); C.List_ww887 = H.setRuntimeTypeInfo(makeConstList([4, 54, 24, 31, 55, 25]), type$.JSArray_legacy_int); C.List_ww888 = H.setRuntimeTypeInfo(makeConstList([11, 45, 15, 31, 46, 16]), type$.JSArray_legacy_int); C.List_ww889 = H.setRuntimeTypeInfo(makeConstList([7, 146, 116, 7, 147, 117]), type$.JSArray_legacy_int); C.List_ww890 = H.setRuntimeTypeInfo(makeConstList([21, 73, 45, 7, 74, 46]), type$.JSArray_legacy_int); C.List_ww891 = H.setRuntimeTypeInfo(makeConstList([1, 53, 23, 37, 54, 24]), type$.JSArray_legacy_int); C.List_ww892 = H.setRuntimeTypeInfo(makeConstList([19, 45, 15, 26, 46, 16]), type$.JSArray_legacy_int); C.List_ww893 = H.setRuntimeTypeInfo(makeConstList([5, 145, 115, 10, 146, 116]), type$.JSArray_legacy_int); C.List_ww894 = H.setRuntimeTypeInfo(makeConstList([19, 75, 47, 10, 76, 48]), type$.JSArray_legacy_int); C.List_ww895 = H.setRuntimeTypeInfo(makeConstList([15, 54, 24, 25, 55, 25]), type$.JSArray_legacy_int); C.List_ww896 = H.setRuntimeTypeInfo(makeConstList([23, 45, 15, 25, 46, 16]), type$.JSArray_legacy_int); C.List_ww897 = H.setRuntimeTypeInfo(makeConstList([13, 145, 115, 3, 146, 116]), type$.JSArray_legacy_int); C.List_ww898 = H.setRuntimeTypeInfo(makeConstList([2, 74, 46, 29, 75, 47]), type$.JSArray_legacy_int); C.List_ww899 = H.setRuntimeTypeInfo(makeConstList([42, 54, 24, 1, 55, 25]), type$.JSArray_legacy_int); C.List_ww8100 = H.setRuntimeTypeInfo(makeConstList([23, 45, 15, 28, 46, 16]), type$.JSArray_legacy_int); C.List_17_145_115 = H.setRuntimeTypeInfo(makeConstList([17, 145, 115]), type$.JSArray_legacy_int); C.List_ww8101 = H.setRuntimeTypeInfo(makeConstList([10, 74, 46, 23, 75, 47]), type$.JSArray_legacy_int); C.List_ww8102 = H.setRuntimeTypeInfo(makeConstList([10, 54, 24, 35, 55, 25]), type$.JSArray_legacy_int); C.List_ww8103 = H.setRuntimeTypeInfo(makeConstList([19, 45, 15, 35, 46, 16]), type$.JSArray_legacy_int); C.List_ww8104 = H.setRuntimeTypeInfo(makeConstList([17, 145, 115, 1, 146, 116]), type$.JSArray_legacy_int); C.List_ww8105 = H.setRuntimeTypeInfo(makeConstList([14, 74, 46, 21, 75, 47]), type$.JSArray_legacy_int); C.List_ww8106 = H.setRuntimeTypeInfo(makeConstList([29, 54, 24, 19, 55, 25]), type$.JSArray_legacy_int); C.List_ww8107 = H.setRuntimeTypeInfo(makeConstList([11, 45, 15, 46, 46, 16]), type$.JSArray_legacy_int); C.List_ww8108 = H.setRuntimeTypeInfo(makeConstList([13, 145, 115, 6, 146, 116]), type$.JSArray_legacy_int); C.List_ww8109 = H.setRuntimeTypeInfo(makeConstList([14, 74, 46, 23, 75, 47]), type$.JSArray_legacy_int); C.List_ww8110 = H.setRuntimeTypeInfo(makeConstList([44, 54, 24, 7, 55, 25]), type$.JSArray_legacy_int); C.List_ww8111 = H.setRuntimeTypeInfo(makeConstList([59, 46, 16, 1, 47, 17]), type$.JSArray_legacy_int); C.List_ww8112 = H.setRuntimeTypeInfo(makeConstList([12, 151, 121, 7, 152, 122]), type$.JSArray_legacy_int); C.List_ww8113 = H.setRuntimeTypeInfo(makeConstList([12, 75, 47, 26, 76, 48]), type$.JSArray_legacy_int); C.List_ww8114 = H.setRuntimeTypeInfo(makeConstList([39, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); C.List_ww8115 = H.setRuntimeTypeInfo(makeConstList([22, 45, 15, 41, 46, 16]), type$.JSArray_legacy_int); C.List_ww8116 = H.setRuntimeTypeInfo(makeConstList([6, 151, 121, 14, 152, 122]), type$.JSArray_legacy_int); C.List_ww8117 = H.setRuntimeTypeInfo(makeConstList([6, 75, 47, 34, 76, 48]), type$.JSArray_legacy_int); C.List_ww8118 = H.setRuntimeTypeInfo(makeConstList([46, 54, 24, 10, 55, 25]), type$.JSArray_legacy_int); C.List_ww8119 = H.setRuntimeTypeInfo(makeConstList([2, 45, 15, 64, 46, 16]), type$.JSArray_legacy_int); C.List_ww8120 = H.setRuntimeTypeInfo(makeConstList([17, 152, 122, 4, 153, 123]), type$.JSArray_legacy_int); C.List_ww8121 = H.setRuntimeTypeInfo(makeConstList([29, 74, 46, 14, 75, 47]), type$.JSArray_legacy_int); C.List_ww8122 = H.setRuntimeTypeInfo(makeConstList([49, 54, 24, 10, 55, 25]), type$.JSArray_legacy_int); C.List_ww8123 = H.setRuntimeTypeInfo(makeConstList([24, 45, 15, 46, 46, 16]), type$.JSArray_legacy_int); C.List_ww8124 = H.setRuntimeTypeInfo(makeConstList([4, 152, 122, 18, 153, 123]), type$.JSArray_legacy_int); C.List_ww8125 = H.setRuntimeTypeInfo(makeConstList([13, 74, 46, 32, 75, 47]), type$.JSArray_legacy_int); C.List_ww8126 = H.setRuntimeTypeInfo(makeConstList([48, 54, 24, 14, 55, 25]), type$.JSArray_legacy_int); C.List_ww8127 = H.setRuntimeTypeInfo(makeConstList([42, 45, 15, 32, 46, 16]), type$.JSArray_legacy_int); C.List_ww8128 = H.setRuntimeTypeInfo(makeConstList([20, 147, 117, 4, 148, 118]), type$.JSArray_legacy_int); C.List_ww8129 = H.setRuntimeTypeInfo(makeConstList([40, 75, 47, 7, 76, 48]), type$.JSArray_legacy_int); C.List_ww8130 = H.setRuntimeTypeInfo(makeConstList([43, 54, 24, 22, 55, 25]), type$.JSArray_legacy_int); C.List_ww8131 = H.setRuntimeTypeInfo(makeConstList([10, 45, 15, 67, 46, 16]), type$.JSArray_legacy_int); C.List_ww8132 = H.setRuntimeTypeInfo(makeConstList([19, 148, 118, 6, 149, 119]), type$.JSArray_legacy_int); C.List_ww8133 = H.setRuntimeTypeInfo(makeConstList([18, 75, 47, 31, 76, 48]), type$.JSArray_legacy_int); C.List_ww8134 = H.setRuntimeTypeInfo(makeConstList([34, 54, 24, 34, 55, 25]), type$.JSArray_legacy_int); C.List_ww8135 = H.setRuntimeTypeInfo(makeConstList([20, 45, 15, 61, 46, 16]), type$.JSArray_legacy_int); C.List_exN = H.setRuntimeTypeInfo(makeConstList([C.List_1_26_19, C.List_1_26_16, C.List_1_26_13, C.List_1_26_9, C.List_1_44_34, C.List_1_44_28, C.List_1_44_22, C.List_1_44_16, C.List_1_70_55, C.List_1_70_44, C.List_2_35_17, C.List_2_35_13, C.List_1_100_80, C.List_2_50_32, C.List_2_50_24, C.List_4_25_9, C.List_1_134_108, C.List_2_67_43, C.List_ww89, C.List_ww810, C.List_2_86_68, C.List_4_43_27, C.List_4_43_19, C.List_4_43_15, C.List_2_98_78, C.List_4_49_31, C.List_ww811, C.List_ww812, C.List_2_121_97, C.List_ww813, C.List_ww814, C.List_ww815, C.List_2_146_116, C.List_ww816, C.List_ww817, C.List_ww818, C.List_ww819, C.List_ww820, C.List_ww821, C.List_ww822, C.List_4_101_81, C.List_ww823, C.List_ww824, C.List_ww825, C.List_ww826, C.List_ww827, C.List_ww828, C.List_ww829, C.List_4_133_107, C.List_ww830, C.List_ww831, C.List_ww832, C.List_ww833, C.List_ww834, C.List_ww835, C.List_ww836, C.List_ww837, C.List_ww838, C.List_ww839, C.List_11_36_12, C.List_ww840, C.List_ww841, C.List_ww842, C.List_ww843, C.List_ww844, C.List_ww845, C.List_ww846, C.List_ww847, C.List_ww848, C.List_ww849, C.List_ww850, C.List_ww851, C.List_ww852, C.List_ww853, C.List_ww854, C.List_ww855, C.List_ww856, C.List_ww857, C.List_ww858, C.List_ww859, C.List_ww860, C.List_17_68_42, C.List_ww861, C.List_ww862, C.List_ww863, C.List_17_74_46, C.List_ww864, C.List_34_37_13, C.List_ww865, C.List_ww866, C.List_ww867, C.List_ww868, C.List_ww869, C.List_ww870, C.List_ww871, C.List_ww872, C.List_ww873, C.List_ww874, C.List_ww875, C.List_ww876, C.List_ww877, C.List_ww878, C.List_ww879, C.List_ww880, C.List_ww881, C.List_ww882, C.List_ww883, C.List_ww884, C.List_ww885, C.List_ww886, C.List_ww887, C.List_ww888, C.List_ww889, C.List_ww890, C.List_ww891, C.List_ww892, C.List_ww893, C.List_ww894, C.List_ww895, C.List_ww896, C.List_ww897, C.List_ww898, C.List_ww899, C.List_ww8100, C.List_17_145_115, C.List_ww8101, C.List_ww8102, C.List_ww8103, C.List_ww8104, C.List_ww8105, C.List_ww8106, C.List_ww8107, C.List_ww8108, C.List_ww8109, C.List_ww8110, C.List_ww8111, C.List_ww8112, C.List_ww8113, C.List_ww8114, C.List_ww8115, C.List_ww8116, C.List_ww8117, C.List_ww8118, C.List_ww8119, C.List_ww8120, C.List_ww8121, C.List_ww8122, C.List_ww8123, C.List_ww8124, C.List_ww8125, C.List_ww8126, C.List_ww8127, C.List_ww8128, C.List_ww8129, C.List_ww8130, C.List_ww8131, C.List_ww8132, C.List_ww8133, C.List_ww8134, C.List_ww8135]), type$.JSArray_legacy_List_legacy_int); C.List_file_directory_link_notFound = H.setRuntimeTypeInfo(makeConstList(["file", "directory", "link", "notFound"]), type$.JSArray_legacy_String); C.Type__$ExpenseUIState_s30 = H.typeLiteral("_$ExpenseUIState"); C.List_fkg = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseUIState_wKu, C.Type__$ExpenseUIState_s30]), type$.JSArray_legacy_Type); C.List_gRj = H.setRuntimeTypeInfo(makeConstList([0, 0, 32722, 12287, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.List_gT4 = H.setRuntimeTypeInfo(makeConstList(["af", "am", "ar", "as", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en", "es", "et", "eu", "fa", "fi", "fil", "fr", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zu"]), type$.JSArray_legacy_String); C.List_gc6 = H.setRuntimeTypeInfo(makeConstList(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]), type$.JSArray_legacy_String); C.Type__$ImportRequestMapping_AaU = H.typeLiteral("_$ImportRequestMapping"); C.List_gg4 = H.setRuntimeTypeInfo(makeConstList([C.Type_ImportRequestMapping_WUU, C.Type__$ImportRequestMapping_AaU]), type$.JSArray_legacy_Type); C.Type__$ProjectUIState_dUt = H.typeLiteral("_$ProjectUIState"); C.List_gg40 = H.setRuntimeTypeInfo(makeConstList([C.Type_ProjectUIState_osT, C.Type__$ProjectUIState_dUt]), type$.JSArray_legacy_Type); C.Type__$InvoiceScheduleEntity_mLc = H.typeLiteral("_$InvoiceScheduleEntity"); C.List_gkc1 = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceScheduleEntity_26b, C.Type__$InvoiceScheduleEntity_mLc]), type$.JSArray_legacy_Type); C.List_gkc = H.setRuntimeTypeInfo(makeConstList(["png", "svg", "jpeg", "gif", "jpg", "bmp", "txt", "doc", "docx", "xls", "xlsx", "pdf"]), type$.JSArray_legacy_String); C.List_gnE = H.setRuntimeTypeInfo(makeConstList([0, 0, 65498, 45055, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.List_h8w = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]), type$.JSArray_legacy_String); C.Type__$GatewayOptionsEntity_M6L = H.typeLiteral("_$GatewayOptionsEntity"); C.List_hWW = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayOptionsEntity_Ucj, C.Type__$GatewayOptionsEntity_M6L]), type$.JSArray_legacy_Type); C.TimeOfDay_0_0 = new Z.TimeOfDay(0, 0); C.TimeOfDay_0_5 = new Z.TimeOfDay(0, 5); C.TimeOfDay_0_10 = new Z.TimeOfDay(0, 10); C.TimeOfDay_0_15 = new Z.TimeOfDay(0, 15); C.TimeOfDay_0_20 = new Z.TimeOfDay(0, 20); C.TimeOfDay_0_25 = new Z.TimeOfDay(0, 25); C.TimeOfDay_0_30 = new Z.TimeOfDay(0, 30); C.TimeOfDay_0_35 = new Z.TimeOfDay(0, 35); C.TimeOfDay_0_40 = new Z.TimeOfDay(0, 40); C.TimeOfDay_0_45 = new Z.TimeOfDay(0, 45); C.TimeOfDay_0_50 = new Z.TimeOfDay(0, 50); C.TimeOfDay_0_55 = new Z.TimeOfDay(0, 55); C.List_htm = H.setRuntimeTypeInfo(makeConstList([C.TimeOfDay_0_0, C.TimeOfDay_0_5, C.TimeOfDay_0_10, C.TimeOfDay_0_15, C.TimeOfDay_0_20, C.TimeOfDay_0_25, C.TimeOfDay_0_30, C.TimeOfDay_0_35, C.TimeOfDay_0_40, C.TimeOfDay_0_45, C.TimeOfDay_0_50, C.TimeOfDay_0_55]), type$.JSArray_legacy_TimeOfDay); C.TimeOfDay_2_0 = new Z.TimeOfDay(2, 0); C.TimeOfDay_4_0 = new Z.TimeOfDay(4, 0); C.TimeOfDay_6_0 = new Z.TimeOfDay(6, 0); C.TimeOfDay_8_0 = new Z.TimeOfDay(8, 0); C.TimeOfDay_10_0 = new Z.TimeOfDay(10, 0); C.TimeOfDay_12_0 = new Z.TimeOfDay(12, 0); C.TimeOfDay_14_0 = new Z.TimeOfDay(14, 0); C.TimeOfDay_16_0 = new Z.TimeOfDay(16, 0); C.TimeOfDay_18_0 = new Z.TimeOfDay(18, 0); C.TimeOfDay_20_0 = new Z.TimeOfDay(20, 0); C.TimeOfDay_22_0 = new Z.TimeOfDay(22, 0); C.List_htm1 = H.setRuntimeTypeInfo(makeConstList([C.TimeOfDay_0_0, C.TimeOfDay_2_0, C.TimeOfDay_4_0, C.TimeOfDay_6_0, C.TimeOfDay_8_0, C.TimeOfDay_10_0, C.TimeOfDay_12_0, C.TimeOfDay_14_0, C.TimeOfDay_16_0, C.TimeOfDay_18_0, C.TimeOfDay_20_0, C.TimeOfDay_22_0]), type$.JSArray_legacy_TimeOfDay); C.TimeOfDay_1_0 = new Z.TimeOfDay(1, 0); C.TimeOfDay_3_0 = new Z.TimeOfDay(3, 0); C.TimeOfDay_5_0 = new Z.TimeOfDay(5, 0); C.TimeOfDay_7_0 = new Z.TimeOfDay(7, 0); C.TimeOfDay_9_0 = new Z.TimeOfDay(9, 0); C.TimeOfDay_11_0 = new Z.TimeOfDay(11, 0); C.List_htm0 = H.setRuntimeTypeInfo(makeConstList([C.TimeOfDay_12_0, C.TimeOfDay_1_0, C.TimeOfDay_2_0, C.TimeOfDay_3_0, C.TimeOfDay_4_0, C.TimeOfDay_5_0, C.TimeOfDay_6_0, C.TimeOfDay_7_0, C.TimeOfDay_8_0, C.TimeOfDay_9_0, C.TimeOfDay_10_0, C.TimeOfDay_11_0]), type$.JSArray_legacy_TimeOfDay); C.List_i3t = H.setRuntimeTypeInfo(makeConstList([1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577]), type$.JSArray_legacy_int); C.Type__$DocumentEntity_58f = H.typeLiteral("_$DocumentEntity"); C.List_iDT = H.setRuntimeTypeInfo(makeConstList([C.Type_DocumentEntity_4AN, C.Type__$DocumentEntity_58f]), type$.JSArray_legacy_Type); C.List_iDZ = H.setRuntimeTypeInfo(makeConstList(["{1} 'at' {0}", "{1} 'at' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_legacy_String); C.Type_ExpenseItemResponse_GC7 = H.typeLiteral("ExpenseItemResponse"); C.Type__$ExpenseItemResponse_EGJ = H.typeLiteral("_$ExpenseItemResponse"); C.List_iEE = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseItemResponse_GC7, C.Type__$ExpenseItemResponse_EGJ]), type$.JSArray_legacy_Type); C.Type__$ExpenseEntity_cet = H.typeLiteral("_$ExpenseEntity"); C.List_iFM = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseEntity_OLh, C.Type__$ExpenseEntity_cet]), type$.JSArray_legacy_Type); C.List_iYO = H.setRuntimeTypeInfo(makeConstList([0, 5, 16, 5, 8, 5, 24, 5, 4, 5, 20, 5, 12, 5, 28, 5, 2, 5, 18, 5, 10, 5, 26, 5, 6, 5, 22, 5, 14, 5, 30, 5, 1, 5, 17, 5, 9, 5, 25, 5, 5, 5, 21, 5, 13, 5, 29, 5, 3, 5, 19, 5, 11, 5, 27, 5, 7, 5, 23, 5]), type$.JSArray_legacy_int); C.Type__$VendorUIState_ato = H.typeLiteral("_$VendorUIState"); C.List_ifx = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorUIState_ohJ, C.Type__$VendorUIState_ato]), type$.JSArray_legacy_Type); C.Type_DateFormatListResponse_Pd4 = H.typeLiteral("DateFormatListResponse"); C.Type__$DateFormatListResponse_WTK = H.typeLiteral("_$DateFormatListResponse"); C.List_jjG = H.setRuntimeTypeInfo(makeConstList([C.Type_DateFormatListResponse_Pd4, C.Type__$DateFormatListResponse_WTK]), type$.JSArray_legacy_Type); C.List_k6K = H.setRuntimeTypeInfo(makeConstList([C.EntityState_active, C.EntityState_archived, C.EntityState_deleted]), type$.JSArray_legacy_EntityState); C.Type__$DocumentState_yzz = H.typeLiteral("_$DocumentState"); C.List_kHh = H.setRuntimeTypeInfo(makeConstList([C.Type_DocumentState_yL2, C.Type__$DocumentState_yzz]), type$.JSArray_legacy_Type); C.Type__$InvoiceUIState_O8C = H.typeLiteral("_$InvoiceUIState"); C.List_kMT = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceUIState_YU8, C.Type__$InvoiceUIState_O8C]), type$.JSArray_legacy_Type); C.Type__$CreditState_4YB = H.typeLiteral("_$CreditState"); C.List_kQR = H.setRuntimeTypeInfo(makeConstList([C.Type_CreditState_23h, C.Type__$CreditState_4YB]), type$.JSArray_legacy_Type); C.List_kWG = H.setRuntimeTypeInfo(makeConstList(["h:mm:ss a zzzz", "h:mm:ss a z", "h:mm:ss a", "h:mm a"]), type$.JSArray_legacy_String); C.Type__$TaxRateState_EUq = H.typeLiteral("_$TaxRateState"); C.List_kii = H.setRuntimeTypeInfo(makeConstList([C.Type_TaxRateState_axY, C.Type__$TaxRateState_EUq]), type$.JSArray_legacy_Type); C.Type__$InvoiceEntity_kmf = H.typeLiteral("_$InvoiceEntity"); C.List_kuc = H.setRuntimeTypeInfo(makeConstList([C.Type_InvoiceEntity_UcM, C.Type__$InvoiceEntity_kmf]), type$.JSArray_legacy_Type); C.Type__$ClientUIState_rx9 = H.typeLiteral("_$ClientUIState"); C.List_kya = H.setRuntimeTypeInfo(makeConstList([C.Type_ClientUIState_ekJ, C.Type__$ClientUIState_rx9]), type$.JSArray_legacy_Type); C.Type__$TaskStatusUIState_t2C = H.typeLiteral("_$TaskStatusUIState"); C.List_kyy = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskStatusUIState_6VO, C.Type__$TaskStatusUIState_t2C]), type$.JSArray_legacy_Type); C.Type__$SystemLogEntity_M42 = H.typeLiteral("_$SystemLogEntity"); C.List_m2M = H.setRuntimeTypeInfo(makeConstList([C.Type_SystemLogEntity_eL6, C.Type__$SystemLogEntity_M42]), type$.JSArray_legacy_Type); C.Type__$UserCompanyEntity_qhc = H.typeLiteral("_$UserCompanyEntity"); C.List_m3m = H.setRuntimeTypeInfo(makeConstList([C.Type_UserCompanyEntity_XrT, C.Type__$UserCompanyEntity_qhc]), type$.JSArray_legacy_Type); C.List_m5d = H.setRuntimeTypeInfo(makeConstList(["custom_designs", "group_settings", "client_portal", "custom_fields", "email_settings", "generated_numbers", "invoice_design", "templates_and_reminders", "subscriptions", "user_management"]), type$.JSArray_legacy_String); C.List_mC8 = H.setRuntimeTypeInfo(makeConstList([0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]), type$.JSArray_legacy_int); C.Type_PaymentTypeItemResponse_4QF = H.typeLiteral("PaymentTypeItemResponse"); C.Type__$PaymentTypeItemResponse_QIl = H.typeLiteral("_$PaymentTypeItemResponse"); C.List_mNZ = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTypeItemResponse_4QF, C.Type__$PaymentTypeItemResponse_QIl]), type$.JSArray_legacy_Type); C.Type_PaymentTypeListResponse_4QF = H.typeLiteral("PaymentTypeListResponse"); C.Type__$PaymentTypeListResponse_QIl = H.typeLiteral("_$PaymentTypeListResponse"); C.List_mNZ0 = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTypeListResponse_4QF, C.Type__$PaymentTypeListResponse_QIl]), type$.JSArray_legacy_Type); C.List_mRX = H.setRuntimeTypeInfo(makeConstList(["A5", "A4", "A3", "B5", "B4", "JIS-B5", "JIS-B4", "letter", "legal", "ledger"]), type$.JSArray_legacy_String); C.Type_CurrencyListResponse_SJF = H.typeLiteral("CurrencyListResponse"); C.Type__$CurrencyListResponse_UKT = H.typeLiteral("_$CurrencyListResponse"); C.List_mb4 = H.setRuntimeTypeInfo(makeConstList([C.Type_CurrencyListResponse_SJF, C.Type__$CurrencyListResponse_UKT]), type$.JSArray_legacy_Type); C.Type_ProductItemResponse_E8w = H.typeLiteral("ProductItemResponse"); C.Type__$ProductItemResponse_evi = H.typeLiteral("_$ProductItemResponse"); C.List_mxd = H.setRuntimeTypeInfo(makeConstList([C.Type_ProductItemResponse_E8w, C.Type__$ProductItemResponse_evi]), type$.JSArray_legacy_Type); C.Type__$DatetimeFormatEntity_Cxz = H.typeLiteral("_$DatetimeFormatEntity"); C.List_myU = H.setRuntimeTypeInfo(makeConstList([C.Type_DatetimeFormatEntity_EyI, C.Type__$DatetimeFormatEntity_Cxz]), type$.JSArray_legacy_Type); C.Type__$WebhookConfigurationEntity_BxI = H.typeLiteral("_$WebhookConfigurationEntity"); C.List_n7e = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookConfigurationEntity_WRw, C.Type__$WebhookConfigurationEntity_BxI]), type$.JSArray_legacy_Type); C.Type_TaskStatusItemResponse_gPT = H.typeLiteral("TaskStatusItemResponse"); C.Type__$TaskStatusItemResponse_EK0 = H.typeLiteral("_$TaskStatusItemResponse"); C.List_n7k = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskStatusItemResponse_gPT, C.Type__$TaskStatusItemResponse_EK0]), type$.JSArray_legacy_Type); C.Type_UserCompanyItemResponse_eaJ = H.typeLiteral("UserCompanyItemResponse"); C.Type__$UserCompanyItemResponse_9m9 = H.typeLiteral("_$UserCompanyItemResponse"); C.List_nTi = H.setRuntimeTypeInfo(makeConstList([C.Type_UserCompanyItemResponse_eaJ, C.Type__$UserCompanyItemResponse_9m9]), type$.JSArray_legacy_Type); C.Type_CountryListResponse_KeE = H.typeLiteral("CountryListResponse"); C.Type__$CountryListResponse_ktn = H.typeLiteral("_$CountryListResponse"); C.List_nXg = H.setRuntimeTypeInfo(makeConstList([C.Type_CountryListResponse_KeE, C.Type__$CountryListResponse_ktn]), type$.JSArray_legacy_Type); C.Type__$UIState_L7j = H.typeLiteral("_$UIState"); C.List_nZd = H.setRuntimeTypeInfo(makeConstList([C.Type_UIState_sxw, C.Type__$UIState_L7j]), type$.JSArray_legacy_Type); C.List_nxB = H.setRuntimeTypeInfo(makeConstList([0, 0, 24576, 1023, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.List_oGx = H.setRuntimeTypeInfo(makeConstList([C.DateRangeComparison_previousPeriod, C.DateRangeComparison_previousYear, C.DateRangeComparison_customRange]), H.findType("JSArray")); C.Type__$WebhookUIState_MQu = H.typeLiteral("_$WebhookUIState"); C.List_oUG = H.setRuntimeTypeInfo(makeConstList([C.Type_WebhookUIState_HFe, C.Type__$WebhookUIState_MQu]), type$.JSArray_legacy_Type); C.Type__$GatewayEntity_8eb = H.typeLiteral("_$GatewayEntity"); C.List_oW3 = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayEntity_kOG, C.Type__$GatewayEntity_8eb]), type$.JSArray_legacy_Type); C.Type_ProductListResponse_INA = H.typeLiteral("ProductListResponse"); C.Type__$ProductListResponse_qYN = H.typeLiteral("_$ProductListResponse"); C.List_ooa = H.setRuntimeTypeInfo(makeConstList([C.Type_ProductListResponse_INA, C.Type__$ProductListResponse_qYN]), type$.JSArray_legacy_Type); C.Type_TaskStatusListResponse_OvD = H.typeLiteral("TaskStatusListResponse"); C.Type__$TaskStatusListResponse_EK0 = H.typeLiteral("_$TaskStatusListResponse"); C.List_ouA = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskStatusListResponse_OvD, C.Type__$TaskStatusListResponse_EK0]), type$.JSArray_legacy_Type); C.Type__$PaymentTermUIState_88f = H.typeLiteral("_$PaymentTermUIState"); C.List_oyU = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTermUIState_2No, C.Type__$PaymentTermUIState_88f]), type$.JSArray_legacy_Type); C.List_portrait_landscape = H.setRuntimeTypeInfo(makeConstList(["portrait", "landscape"]), type$.JSArray_legacy_String); C.Type_PaymentItemResponse_Hr9 = H.typeLiteral("PaymentItemResponse"); C.Type__$PaymentItemResponse_d2q = H.typeLiteral("_$PaymentItemResponse"); C.List_puA = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentItemResponse_Hr9, C.Type__$PaymentItemResponse_d2q]), type$.JSArray_legacy_Type); C.List_qNA = H.setRuntimeTypeInfo(makeConstList([0, 0, 32754, 11263, 65534, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.Type_GatewayTokenListResponse_4jG = H.typeLiteral("GatewayTokenListResponse"); C.Type__$GatewayTokenListResponse_O1u = H.typeLiteral("_$GatewayTokenListResponse"); C.List_qNu = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayTokenListResponse_4jG, C.Type__$GatewayTokenListResponse_O1u]), type$.JSArray_legacy_Type); C.List_qQn = H.setRuntimeTypeInfo(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0]), type$.JSArray_legacy_int); C.List_qQn0 = H.setRuntimeTypeInfo(makeConstList([0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 0]), type$.JSArray_legacy_int); C.List_qQn1 = H.setRuntimeTypeInfo(makeConstList([3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258]), type$.JSArray_legacy_int); C.List_qg40 = H.setRuntimeTypeInfo(makeConstList([0, 0, 32722, 12287, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.List_qg4 = H.setRuntimeTypeInfo(makeConstList([0, 0, 65490, 12287, 65535, 34815, 65534, 18431]), type$.JSArray_legacy_int); C.Type__$DashboardUIState_gkc = H.typeLiteral("_$DashboardUIState"); C.List_qjZ = H.setRuntimeTypeInfo(makeConstList([C.Type_DashboardUIState_4YB, C.Type__$DashboardUIState_gkc]), type$.JSArray_legacy_Type); C.List_qpm = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_legacy_String); C.List_soA = H.setRuntimeTypeInfo(makeConstList(["sidebar_active_background_color", "sidebar_active_font_color", "sidebar_inactive_background_color", "sidebar_inactive_font_color", "invoice_header_background_color", "invoice_header_font_color", "table_alternate_row_background_color"]), type$.JSArray_legacy_String); C.Type__$ClientEntity_RU1 = H.typeLiteral("_$ClientEntity"); C.List_u3D = H.setRuntimeTypeInfo(makeConstList([C.Type_ClientEntity_PI2, C.Type__$ClientEntity_RU1]), type$.JSArray_legacy_Type); C.TargetPlatform_0 = new T.TargetPlatform("TargetPlatform.android"); C.TargetPlatform_1 = new T.TargetPlatform("TargetPlatform.fuchsia"); C.TargetPlatform_2 = new T.TargetPlatform("TargetPlatform.iOS"); C.TargetPlatform_3 = new T.TargetPlatform("TargetPlatform.linux"); C.TargetPlatform_4 = new T.TargetPlatform("TargetPlatform.macOS"); C.TargetPlatform_5 = new T.TargetPlatform("TargetPlatform.windows"); C.List_uDp = H.setRuntimeTypeInfo(makeConstList([C.TargetPlatform_0, C.TargetPlatform_1, C.TargetPlatform_2, C.TargetPlatform_3, C.TargetPlatform_4, C.TargetPlatform_5]), H.findType("JSArray")); C.Type__$UserCompanyState_C0V = H.typeLiteral("_$UserCompanyState"); C.List_uEs = H.setRuntimeTypeInfo(makeConstList([C.Type_UserCompanyState_8aB, C.Type__$UserCompanyState_C0V]), type$.JSArray_legacy_Type); C.Type__$ActivityEntity_EKW = H.typeLiteral("_$ActivityEntity"); C.List_uPE = H.setRuntimeTypeInfo(makeConstList([C.Type_ActivityEntity_bvx, C.Type__$ActivityEntity_EKW]), type$.JSArray_legacy_Type); C.Type__$CreditUIState_LF7 = H.typeLiteral("_$CreditUIState"); C.List_uQd = H.setRuntimeTypeInfo(makeConstList([C.Type_CreditUIState_pyp, C.Type__$CreditUIState_LF7]), type$.JSArray_legacy_Type); C.List_uSC0 = H.setRuntimeTypeInfo(makeConstList([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7]), type$.JSArray_legacy_int); C.List_uSC = H.setRuntimeTypeInfo(makeConstList([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]), type$.JSArray_legacy_int); C.Type_CurrencyItemResponse_2Th = H.typeLiteral("CurrencyItemResponse"); C.Type__$CurrencyItemResponse_UKT = H.typeLiteral("_$CurrencyItemResponse"); C.List_uUY = H.setRuntimeTypeInfo(makeConstList([C.Type_CurrencyItemResponse_2Th, C.Type__$CurrencyItemResponse_UKT]), type$.JSArray_legacy_Type); C.Type__$VendorEntity_XtO = H.typeLiteral("_$VendorEntity"); C.List_uUY0 = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorEntity_Fh9, C.Type__$VendorEntity_XtO]), type$.JSArray_legacy_Type); C.Type_VendorItemResponse_zLp = H.typeLiteral("VendorItemResponse"); C.Type__$VendorItemResponse_YIO = H.typeLiteral("_$VendorItemResponse"); C.List_uae = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorItemResponse_zLp, C.Type__$VendorItemResponse_YIO]), type$.JSArray_legacy_Type); C.QuoteItemReportFields_0 = new T.QuoteItemReportFields("QuoteItemReportFields.productKey"); C.QuoteItemReportFields_1 = new T.QuoteItemReportFields("QuoteItemReportFields.description"); C.QuoteItemReportFields_2 = new T.QuoteItemReportFields("QuoteItemReportFields.price"); C.QuoteItemReportFields_3 = new T.QuoteItemReportFields("QuoteItemReportFields.cost"); C.QuoteItemReportFields_4 = new T.QuoteItemReportFields("QuoteItemReportFields.quantity"); C.QuoteItemReportFields_5 = new T.QuoteItemReportFields("QuoteItemReportFields.profit"); C.QuoteItemReportFields_6 = new T.QuoteItemReportFields("QuoteItemReportFields.total"); C.QuoteItemReportFields_7 = new T.QuoteItemReportFields("QuoteItemReportFields.discount"); C.QuoteItemReportFields_8 = new T.QuoteItemReportFields("QuoteItemReportFields.custom1"); C.QuoteItemReportFields_9 = new T.QuoteItemReportFields("QuoteItemReportFields.custom2"); C.QuoteItemReportFields_10 = new T.QuoteItemReportFields("QuoteItemReportFields.custom3"); C.QuoteItemReportFields_11 = new T.QuoteItemReportFields("QuoteItemReportFields.custom4"); C.QuoteItemReportFields_12 = new T.QuoteItemReportFields("QuoteItemReportFields.quoteNumber"); C.QuoteItemReportFields_13 = new T.QuoteItemReportFields("QuoteItemReportFields.quoteDate"); C.QuoteItemReportFields_14 = new T.QuoteItemReportFields("QuoteItemReportFields.client"); C.QuoteItemReportFields_15 = new T.QuoteItemReportFields("QuoteItemReportFields.validUntil"); C.QuoteItemReportFields_16 = new T.QuoteItemReportFields("QuoteItemReportFields.hasTaxes"); C.QuoteItemReportFields_17 = new T.QuoteItemReportFields("QuoteItemReportFields.taxRates"); C.QuoteItemReportFields_18 = new T.QuoteItemReportFields("QuoteItemReportFields.taxAmount"); C.QuoteItemReportFields_19 = new T.QuoteItemReportFields("QuoteItemReportFields.netTotal"); C.List_ujV = H.setRuntimeTypeInfo(makeConstList([C.QuoteItemReportFields_0, C.QuoteItemReportFields_1, C.QuoteItemReportFields_2, C.QuoteItemReportFields_3, C.QuoteItemReportFields_4, C.QuoteItemReportFields_5, C.QuoteItemReportFields_6, C.QuoteItemReportFields_7, C.QuoteItemReportFields_8, C.QuoteItemReportFields_9, C.QuoteItemReportFields_10, C.QuoteItemReportFields_11, C.QuoteItemReportFields_12, C.QuoteItemReportFields_13, C.QuoteItemReportFields_14, C.QuoteItemReportFields_15, C.QuoteItemReportFields_16, C.QuoteItemReportFields_17, C.QuoteItemReportFields_18, C.QuoteItemReportFields_19]), type$.JSArray_legacy_QuoteItemReportFields); C.List_usR = H.setRuntimeTypeInfo(makeConstList([C.DocumentReportFields_0, C.DocumentReportFields_1, C.DocumentReportFields_2, C.DocumentReportFields_3, C.DocumentReportFields_4, C.DocumentReportFields_5, C.DocumentReportFields_6, C.DocumentReportFields_7, C.DocumentReportFields_8, C.DocumentReportFields_9]), type$.JSArray_legacy_DocumentReportFields); C.Type__$AccountEntity_Gqz = H.typeLiteral("_$AccountEntity"); C.List_uv0 = H.setRuntimeTypeInfo(makeConstList([C.Type_AccountEntity_46S, C.Type__$AccountEntity_Gqz]), type$.JSArray_legacy_Type); C.Type_ProjectItemResponse_Wn0 = H.typeLiteral("ProjectItemResponse"); C.Type__$ProjectItemResponse_uTE = H.typeLiteral("_$ProjectItemResponse"); C.List_vhP = H.setRuntimeTypeInfo(makeConstList([C.Type_ProjectItemResponse_Wn0, C.Type__$ProjectItemResponse_uTE]), type$.JSArray_legacy_Type); C.Type_ExpenseCategoryItemResponse_72A = H.typeLiteral("ExpenseCategoryItemResponse"); C.Type_5m4 = H.typeLiteral("_$ExpenseCategoryItemResponse"); C.List_vnU = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseCategoryItemResponse_72A, C.Type_5m4]), type$.JSArray_legacy_Type); C.Type_ExpenseCategoryListResponse_72A = H.typeLiteral("ExpenseCategoryListResponse"); C.Type_5m40 = H.typeLiteral("_$ExpenseCategoryListResponse"); C.List_vnU0 = H.setRuntimeTypeInfo(makeConstList([C.Type_ExpenseCategoryListResponse_72A, C.Type_5m40]), type$.JSArray_legacy_Type); C.Type_PreImportResponse_GJu = H.typeLiteral("PreImportResponse"); C.Type__$PreImportResponse_kYz = H.typeLiteral("_$PreImportResponse"); C.List_vx7 = H.setRuntimeTypeInfo(makeConstList([C.Type_PreImportResponse_GJu, C.Type__$PreImportResponse_kYz]), type$.JSArray_legacy_Type); C.Type_TokenListResponse_71T = H.typeLiteral("TokenListResponse"); C.Type__$TokenListResponse_Tti = H.typeLiteral("_$TokenListResponse"); C.List_vzd = H.setRuntimeTypeInfo(makeConstList([C.Type_TokenListResponse_71T, C.Type__$TokenListResponse_Tti]), type$.JSArray_legacy_Type); C.Type__$TaskStatusState_swM = H.typeLiteral("_$TaskStatusState"); C.List_w4G = H.setRuntimeTypeInfo(makeConstList([C.Type_TaskStatusState_Dm4, C.Type__$TaskStatusState_swM]), type$.JSArray_legacy_Type); C.Type__$RecurringExpenseState_5Ru = H.typeLiteral("_$RecurringExpenseState"); C.List_wD4 = H.setRuntimeTypeInfo(makeConstList([C.Type_RecurringExpenseState_o7m, C.Type__$RecurringExpenseState_5Ru]), type$.JSArray_legacy_Type); C.Type_TaxRateItemResponse_km0 = H.typeLiteral("TaxRateItemResponse"); C.Type__$TaxRateItemResponse_atK = H.typeLiteral("_$TaxRateItemResponse"); C.List_wEo0 = H.setRuntimeTypeInfo(makeConstList([C.Type_TaxRateItemResponse_km0, C.Type__$TaxRateItemResponse_atK]), type$.JSArray_legacy_Type); C.Type__$TaxRateUIState_x4Q = H.typeLiteral("_$TaxRateUIState"); C.List_wEo1 = H.setRuntimeTypeInfo(makeConstList([C.Type_TaxRateUIState_QAb, C.Type__$TaxRateUIState_x4Q]), type$.JSArray_legacy_Type); C.Type__$GroupEntity_8qN = H.typeLiteral("_$GroupEntity"); C.List_wIq = H.setRuntimeTypeInfo(makeConstList([C.Type_GroupEntity_CJE, C.Type__$GroupEntity_8qN]), type$.JSArray_legacy_Type); C.Type__$SizeEntity_aLp = H.typeLiteral("_$SizeEntity"); C.List_wMy0 = H.setRuntimeTypeInfo(makeConstList([C.Type_SizeEntity_ROq, C.Type__$SizeEntity_aLp]), type$.JSArray_legacy_Type); C.List_wMy = H.setRuntimeTypeInfo(makeConstList(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]), type$.JSArray_legacy_String); C.List_wSV = H.setRuntimeTypeInfo(makeConstList(["bind", "if", "ref", "repeat", "syntax"]), type$.JSArray_legacy_String); C.Type__$PaymentTermEntity_yvi = H.typeLiteral("_$PaymentTermEntity"); C.List_wTh = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTermEntity_EHU, C.Type__$PaymentTermEntity_yvi]), type$.JSArray_legacy_Type); C.Type_HealthCheckResponse_EKW = H.typeLiteral("HealthCheckResponse"); C.Type__$HealthCheckResponse_wvU = H.typeLiteral("_$HealthCheckResponse"); C.List_woD = H.setRuntimeTypeInfo(makeConstList([C.Type_HealthCheckResponse_EKW, C.Type__$HealthCheckResponse_wvU]), type$.JSArray_legacy_Type); C.List_ww8 = H.setRuntimeTypeInfo(makeConstList([1, 2, 3, 4, 6, 12]), type$.JSArray_legacy_int); C.List_xWp = H.setRuntimeTypeInfo(makeConstList([C.FinderPatternPosition_0, C.FinderPatternPosition_1, C.FinderPatternPosition_2]), H.findType("JSArray")); C.Type_LanguageListResponse_WzG = H.typeLiteral("LanguageListResponse"); C.Type__$LanguageListResponse_YOT = H.typeLiteral("_$LanguageListResponse"); C.List_y6N = H.setRuntimeTypeInfo(makeConstList([C.Type_LanguageListResponse_WzG, C.Type__$LanguageListResponse_YOT]), type$.JSArray_legacy_Type); C.Type_UserTwoFactorResponse_69P = H.typeLiteral("UserTwoFactorResponse"); C.Type__$UserTwoFactorResponse_66y = H.typeLiteral("_$UserTwoFactorResponse"); C.List_yHZ = H.setRuntimeTypeInfo(makeConstList([C.Type_UserTwoFactorResponse_69P, C.Type__$UserTwoFactorResponse_66y]), type$.JSArray_legacy_Type); C.Type_GatewayTokenItemResponse_4jG = H.typeLiteral("GatewayTokenItemResponse"); C.Type__$GatewayTokenItemResponse_ald = H.typeLiteral("_$GatewayTokenItemResponse"); C.List_yK7 = H.setRuntimeTypeInfo(makeConstList([C.Type_GatewayTokenItemResponse_4jG, C.Type__$GatewayTokenItemResponse_ald]), type$.JSArray_legacy_Type); C.Type_PaymentTermItemResponse_WYC = H.typeLiteral("PaymentTermItemResponse"); C.Type__$PaymentTermItemResponse_hWR = H.typeLiteral("_$PaymentTermItemResponse"); C.List_yNA = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTermItemResponse_WYC, C.Type__$PaymentTermItemResponse_hWR]), type$.JSArray_legacy_Type); C.Type_PaymentTermListResponse_WYC = H.typeLiteral("PaymentTermListResponse"); C.Type__$PaymentTermListResponse_hWR = H.typeLiteral("_$PaymentTermListResponse"); C.List_yNA0 = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTermListResponse_WYC, C.Type__$PaymentTermListResponse_hWR]), type$.JSArray_legacy_Type); C.List_yTu = H.setRuntimeTypeInfo(makeConstList([1, 2, 3, 7, 14]), type$.JSArray_legacy_int); C.List_yTu0 = H.setRuntimeTypeInfo(makeConstList([5, 10, 15, 20, 30]), type$.JSArray_legacy_int); C.List_yXZ = H.setRuntimeTypeInfo(makeConstList([0, 4, 12, 1, 5, 13, 3, 7, 15]), type$.JSArray_legacy_int); C.Type__$VendorContactEntity_2Zs = H.typeLiteral("_$VendorContactEntity"); C.List_yjH = H.setRuntimeTypeInfo(makeConstList([C.Type_VendorContactEntity_2Vk, C.Type__$VendorContactEntity_2Zs]), type$.JSArray_legacy_Type); C.Type_CreditItemResponse_GRu = H.typeLiteral("CreditItemResponse"); C.Type__$CreditItemResponse_eTJ = H.typeLiteral("_$CreditItemResponse"); C.List_ypO = H.setRuntimeTypeInfo(makeConstList([C.Type_CreditItemResponse_GRu, C.Type__$CreditItemResponse_eTJ]), type$.JSArray_legacy_Type); C.List_yrN = H.setRuntimeTypeInfo(makeConstList(["A::href", "AREA::href", "BLOCKQUOTE::cite", "BODY::background", "COMMAND::icon", "DEL::cite", "FORM::action", "IMG::src", "INPUT::src", "INS::cite", "Q::cite", "VIDEO::poster"]), type$.JSArray_legacy_String); C.Type_ImportRequest_yTp = H.typeLiteral("ImportRequest"); C.Type__$ImportRequest_gZb = H.typeLiteral("_$ImportRequest"); C.List_yvL = H.setRuntimeTypeInfo(makeConstList([C.Type_ImportRequest_yTp, C.Type__$ImportRequest_gZb]), type$.JSArray_legacy_Type); C._CornerId_0 = new D._CornerId("_CornerId.topLeft"); C._CornerId_3 = new D._CornerId("_CornerId.bottomRight"); C._Diagonal__CornerId_0__CornerId_3 = new D._Diagonal(C._CornerId_0, C._CornerId_3); C._Diagonal__CornerId_3__CornerId_0 = new D._Diagonal(C._CornerId_3, C._CornerId_0); C._CornerId_1 = new D._CornerId("_CornerId.topRight"); C._CornerId_2 = new D._CornerId("_CornerId.bottomLeft"); C._Diagonal__CornerId_1__CornerId_2 = new D._Diagonal(C._CornerId_1, C._CornerId_2); C._Diagonal__CornerId_2__CornerId_1 = new D._Diagonal(C._CornerId_2, C._CornerId_1); C.List_yvP = H.setRuntimeTypeInfo(makeConstList([C._Diagonal__CornerId_0__CornerId_3, C._Diagonal__CornerId_3__CornerId_0, C._Diagonal__CornerId_1__CornerId_2, C._Diagonal__CornerId_2__CornerId_1]), H.findType("JSArray<_Diagonal*>")); C.List_zPV = H.setRuntimeTypeInfo(makeConstList([C.LineCharProperty_0, C.LineCharProperty_1, C.LineCharProperty_2, C.LineCharProperty_3, C.LineCharProperty_4, C.LineCharProperty_5, C.LineCharProperty_6, C.LineCharProperty_7, C.LineCharProperty_8, C.LineCharProperty_9, C.LineCharProperty_10, C.LineCharProperty_11, C.LineCharProperty_12, C.LineCharProperty_13, C.LineCharProperty_14, C.LineCharProperty_15, C.LineCharProperty_16, C.LineCharProperty_17, C.LineCharProperty_18, C.LineCharProperty_19, C.LineCharProperty_20, C.LineCharProperty_21, C.LineCharProperty_22, C.LineCharProperty_23, C.LineCharProperty_24, C.LineCharProperty_25, C.LineCharProperty_26, C.LineCharProperty_27, C.LineCharProperty_28, C.LineCharProperty_29, C.LineCharProperty_30, C.LineCharProperty_31, C.LineCharProperty_32, C.LineCharProperty_33, C.LineCharProperty_34, C.LineCharProperty_35, C.LineCharProperty_36]), H.findType("JSArray")); C.Type__$PaymentTypeEntity_YuA = H.typeLiteral("_$PaymentTypeEntity"); C.List_zgG = H.setRuntimeTypeInfo(makeConstList([C.Type_PaymentTypeEntity_3f7, C.Type__$PaymentTypeEntity_YuA]), type$.JSArray_legacy_Type); C.LoadingState_0 = new N.LoadingState("LoadingState.idle"); C.LoadingState_1 = new N.LoadingState("LoadingState.loading"); C.LoadingState_2 = new N.LoadingState("LoadingState.success"); C.LoadingState_3 = new N.LoadingState("LoadingState.error"); C.LogicalKeyboardKey_2203318681824 = new G.LogicalKeyboardKey(2203318681824); C.LogicalKeyboardKey_2203318681825 = new G.LogicalKeyboardKey(2203318681825); C.LogicalKeyboardKey_2203318681826 = new G.LogicalKeyboardKey(2203318681826); C.LogicalKeyboardKey_2203318681827 = new G.LogicalKeyboardKey(2203318681827); C.LogicalKeyboardKey_32 = new G.LogicalKeyboardKey(32); C.LogicalKeyboardKey_4294967314 = new G.LogicalKeyboardKey(4294967314); C.LogicalKeyboardKey_4295426088 = new G.LogicalKeyboardKey(4295426088); C.LogicalKeyboardKey_4295426089 = new G.LogicalKeyboardKey(4295426089); C.LogicalKeyboardKey_4295426091 = new G.LogicalKeyboardKey(4295426091); C.LogicalKeyboardKey_4295426105 = new G.LogicalKeyboardKey(4295426105); C.LogicalKeyboardKey_4295426119 = new G.LogicalKeyboardKey(4295426119); C.LogicalKeyboardKey_4295426122 = new G.LogicalKeyboardKey(4295426122); C.LogicalKeyboardKey_4295426123 = new G.LogicalKeyboardKey(4295426123); C.LogicalKeyboardKey_4295426125 = new G.LogicalKeyboardKey(4295426125); C.LogicalKeyboardKey_4295426126 = new G.LogicalKeyboardKey(4295426126); C.LogicalKeyboardKey_4295426127 = new G.LogicalKeyboardKey(4295426127); C.LogicalKeyboardKey_4295426128 = new G.LogicalKeyboardKey(4295426128); C.LogicalKeyboardKey_4295426129 = new G.LogicalKeyboardKey(4295426129); C.LogicalKeyboardKey_4295426130 = new G.LogicalKeyboardKey(4295426130); C.LogicalKeyboardKey_4295426131 = new G.LogicalKeyboardKey(4295426131); C.LogicalKeyboardKey_4295426272 = new G.LogicalKeyboardKey(4295426272); C.LogicalKeyboardKey_4295426273 = new G.LogicalKeyboardKey(4295426273); C.LogicalKeyboardKey_4295426274 = new G.LogicalKeyboardKey(4295426274); C.LogicalKeyboardKey_4295426275 = new G.LogicalKeyboardKey(4295426275); C.LogicalKeyboardKey_4295426276 = new G.LogicalKeyboardKey(4295426276); C.LogicalKeyboardKey_4295426277 = new G.LogicalKeyboardKey(4295426277); C.LogicalKeyboardKey_4295426278 = new G.LogicalKeyboardKey(4295426278); C.LogicalKeyboardKey_4295426279 = new G.LogicalKeyboardKey(4295426279); C.Offset_0_0 = new P.Offset(0, 0); C.Velocity_Offset_0_0 = new R.Velocity(C.Offset_0_0); C.LongPressEndDetails_aB0 = new T.LongPressEndDetails(C.Offset_0_0, C.Velocity_Offset_0_0); C.LongPressSemanticsEvent_longPress = new E.LongPressSemanticsEvent("longPress"); C.LongPressStartDetails_aWR = new T.LongPressStartDetails(C.Offset_0_0, C.Offset_0_0); C.MainAxisAlignment_0 = new F.MainAxisAlignment("MainAxisAlignment.start"); C.MainAxisAlignment_1 = new F.MainAxisAlignment("MainAxisAlignment.end"); C.MainAxisAlignment_2 = new F.MainAxisAlignment("MainAxisAlignment.center"); C.MainAxisAlignment_3 = new F.MainAxisAlignment("MainAxisAlignment.spaceBetween"); C.MainAxisAlignment_4 = new F.MainAxisAlignment("MainAxisAlignment.spaceAround"); C.MainAxisAlignment_5 = new F.MainAxisAlignment("MainAxisAlignment.spaceEvenly"); C.MainAxisSize_0 = new F.MainAxisSize("MainAxisSize.min"); C.MainAxisSize_1 = new F.MainAxisSize("MainAxisSize.max"); C.List_0AS = H.setRuntimeTypeInfo(makeConstList(["BU", "DD", "FX", "TP", "YD", "ZR"]), type$.JSArray_legacy_String); C.Map_0Agg9 = new H.ConstantStringMap(6, {BU: "MM", DD: "DE", FX: "FR", TP: "TL", YD: "YE", ZR: "CD"}, C.List_0AS, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_empty22 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_BoxShadow); C.Color_855638016 = new P.Color(855638016); C.Offset_0_2 = new P.Offset(0, 2); C.BoxShadow_EOZ = new O.BoxShadow(-1, C.Color_855638016, C.Offset_0_2, 1); C.Color_603979776 = new P.Color(603979776); C.BoxShadow_y5m1 = new O.BoxShadow(0, C.Color_603979776, C.Offset_0_1, 1); C.BoxShadow_y5m2 = new O.BoxShadow(0, C.Color_520093696, C.Offset_0_1, 3); C.List_8oN = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_EOZ, C.BoxShadow_y5m1, C.BoxShadow_y5m2]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_RCO = new O.BoxShadow(-2, C.Color_855638016, C.Offset_0_3, 1); C.BoxShadow_y5m3 = new O.BoxShadow(0, C.Color_603979776, C.Offset_0_2, 2); C.BoxShadow_y5m4 = new O.BoxShadow(0, C.Color_520093696, C.Offset_0_1, 5); C.List_f2M = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_RCO, C.BoxShadow_y5m3, C.BoxShadow_y5m4]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_RCO0 = new O.BoxShadow(-2, C.Color_855638016, C.Offset_0_3, 3); C.BoxShadow_y5m5 = new O.BoxShadow(0, C.Color_603979776, C.Offset_0_3, 4); C.BoxShadow_y5m6 = new O.BoxShadow(0, C.Color_520093696, C.Offset_0_1, 8); C.List_f2M0 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_RCO0, C.BoxShadow_y5m5, C.BoxShadow_y5m6]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_EOZ0 = new O.BoxShadow(-1, C.Color_855638016, C.Offset_0_2, 4); C.Offset_0_4 = new P.Offset(0, 4); C.BoxShadow_y5m7 = new O.BoxShadow(0, C.Color_603979776, C.Offset_0_4, 5); C.BoxShadow_y5m8 = new O.BoxShadow(0, C.Color_520093696, C.Offset_0_1, 10); C.List_8oN0 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_EOZ0, C.BoxShadow_y5m7, C.BoxShadow_y5m8]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_EOZ1 = new O.BoxShadow(-1, C.Color_855638016, C.Offset_0_3, 5); C.Offset_0_6 = new P.Offset(0, 6); C.BoxShadow_y5m9 = new O.BoxShadow(0, C.Color_603979776, C.Offset_0_6, 10); C.BoxShadow_y5m10 = new O.BoxShadow(0, C.Color_520093696, C.Offset_0_1, 18); C.List_8oN1 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_EOZ1, C.BoxShadow_y5m9, C.BoxShadow_y5m10]), type$.JSArray_legacy_BoxShadow); C.Offset_0_5 = new P.Offset(0, 5); C.BoxShadow_MDX = new O.BoxShadow(-3, C.Color_855638016, C.Offset_0_5, 5); C.Offset_0_8 = new P.Offset(0, 8); C.BoxShadow_y5m11 = new O.BoxShadow(1, C.Color_603979776, C.Offset_0_8, 10); C.BoxShadow_y5m12 = new O.BoxShadow(2, C.Color_520093696, C.Offset_0_3, 14); C.List_6O8 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_MDX, C.BoxShadow_y5m11, C.BoxShadow_y5m12]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_MDX0 = new O.BoxShadow(-3, C.Color_855638016, C.Offset_0_5, 6); C.Offset_0_9 = new P.Offset(0, 9); C.BoxShadow_y5m13 = new O.BoxShadow(1, C.Color_603979776, C.Offset_0_9, 12); C.BoxShadow_y5m14 = new O.BoxShadow(2, C.Color_520093696, C.Offset_0_3, 16); C.List_6O80 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_MDX0, C.BoxShadow_y5m13, C.BoxShadow_y5m14]), type$.JSArray_legacy_BoxShadow); C.Offset_0_7 = new P.Offset(0, 7); C.BoxShadow_yXb = new O.BoxShadow(-4, C.Color_855638016, C.Offset_0_7, 8); C.Offset_0_12 = new P.Offset(0, 12); C.BoxShadow_y5m15 = new O.BoxShadow(2, C.Color_603979776, C.Offset_0_12, 17); C.BoxShadow_y5m16 = new O.BoxShadow(4, C.Color_520093696, C.Offset_0_5, 22); C.List_JSm = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_yXb, C.BoxShadow_y5m15, C.BoxShadow_y5m16]), type$.JSArray_legacy_BoxShadow); C.BoxShadow_GN8 = new O.BoxShadow(-5, C.Color_855638016, C.Offset_0_8, 10); C.Offset_0_16 = new P.Offset(0, 16); C.BoxShadow_y5m17 = new O.BoxShadow(2, C.Color_603979776, C.Offset_0_16, 24); C.BoxShadow_y5m18 = new O.BoxShadow(5, C.Color_520093696, C.Offset_0_6, 30); C.List_2No0 = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_GN8, C.BoxShadow_y5m17, C.BoxShadow_y5m18]), type$.JSArray_legacy_BoxShadow); C.Offset_0_11 = new P.Offset(0, 11); C.BoxShadow_WVp = new O.BoxShadow(-7, C.Color_855638016, C.Offset_0_11, 15); C.Offset_0_24 = new P.Offset(0, 24); C.BoxShadow_y5m19 = new O.BoxShadow(3, C.Color_603979776, C.Offset_0_24, 38); C.BoxShadow_y5m20 = new O.BoxShadow(8, C.Color_520093696, C.Offset_0_9, 46); C.List_nxi = H.setRuntimeTypeInfo(makeConstList([C.BoxShadow_WVp, C.BoxShadow_y5m19, C.BoxShadow_y5m20]), type$.JSArray_legacy_BoxShadow); C.Map_2VYR1 = new H.GeneralConstantMap([0, C.List_empty22, 1, C.List_8oN, 2, C.List_f2M, 3, C.List_f2M0, 4, C.List_8oN0, 6, C.List_8oN1, 8, C.List_6O8, 9, C.List_6O80, 12, C.List_JSm, 16, C.List_2No0, 24, C.List_nxi], H.findType("GeneralConstantMap*>")); C.List_2zE = H.setRuntimeTypeInfo(makeConstList(["af", "am", "ar", "az", "be", "bg", "bn", "bs", "ca", "cs", "da", "de", "de_CH", "el", "en", "en_AU", "en_CA", "en_GB", "en_IE", "en_IN", "en_SG", "en_US", "en_ZA", "es", "es_419", "es_MX", "es_US", "et", "eu", "fa", "fi", "fil", "fr", "fr_CA", "gl", "gsw", "gu", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "km", "kn", "ko", "ky", "lo", "lt", "lv", "mk", "ml", "mn", "mr", "ms", "my", "nb", "ne", "nl", "no", "or", "pa", "pl", "ps", "pt", "pt_PT", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sr_Latn", "sv", "sw", "ta", "te", "th", "tl", "tr", "uk", "ur", "uz", "vi", "zh", "zh_HK", "zh_TW", "zu"]), type$.JSArray_legacy_String); C.List_5tX = H.setRuntimeTypeInfo(makeConstList(["NAME", "ERAS", "ERANAMES", "NARROWMONTHS", "STANDALONENARROWMONTHS", "MONTHS", "STANDALONEMONTHS", "SHORTMONTHS", "STANDALONESHORTMONTHS", "WEEKDAYS", "STANDALONEWEEKDAYS", "SHORTWEEKDAYS", "STANDALONESHORTWEEKDAYS", "NARROWWEEKDAYS", "STANDALONENARROWWEEKDAYS", "SHORTQUARTERS", "QUARTERS", "AMPMS", "DATEFORMATS", "TIMEFORMATS", "AVAILABLEFORMATS", "FIRSTDAYOFWEEK", "WEEKENDRANGE", "FIRSTWEEKCUTOFFDAY", "DATETIMEFORMATS"]), type$.JSArray_legacy_String); C.List_yPV = H.setRuntimeTypeInfo(makeConstList(["v.C.", "n.C."]), type$.JSArray_dynamic); C.List_5VO = H.setRuntimeTypeInfo(makeConstList(["voor Christus", "na Christus"]), type$.JSArray_dynamic); C.List_qpm0 = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_ebu = H.setRuntimeTypeInfo(makeConstList(["Januarie", "Februarie", "Maart", "April", "Mei", "Junie", "Julie", "Augustus", "September", "Oktober", "November", "Desember"]), type$.JSArray_dynamic); C.List_zzJ = H.setRuntimeTypeInfo(makeConstList(["Jan.", "Feb.", "Mrt.", "Apr.", "Mei", "Jun.", "Jul.", "Aug.", "Sep.", "Okt.", "Nov.", "Des."]), type$.JSArray_dynamic); C.List_96V = H.setRuntimeTypeInfo(makeConstList(["Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag"]), type$.JSArray_dynamic); C.List_L1G = H.setRuntimeTypeInfo(makeConstList(["So.", "Ma.", "Di.", "Wo.", "Do.", "Vr.", "Sa."]), type$.JSArray_dynamic); C.List_6O81 = H.setRuntimeTypeInfo(makeConstList(["S", "M", "D", "W", "D", "V", "S"]), type$.JSArray_dynamic); C.List_K1_K2_K3_K4 = H.setRuntimeTypeInfo(makeConstList(["K1", "K2", "K3", "K4"]), type$.JSArray_dynamic); C.List_SWX = H.setRuntimeTypeInfo(makeConstList(["1ste kwartaal", "2de kwartaal", "3de kwartaal", "4de kwartaal"]), type$.JSArray_dynamic); C.List_i7B0 = H.setRuntimeTypeInfo(makeConstList(["vm.", "nm."]), type$.JSArray_dynamic); C.List_qJB = H.setRuntimeTypeInfo(makeConstList(["EEEE dd MMMM y", "dd MMMM y", "dd MMM y", "y-MM-dd"]), type$.JSArray_dynamic); C.List_aBy = H.setRuntimeTypeInfo(makeConstList(["HH:mm:ss zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.List_5_60 = H.setRuntimeTypeInfo(makeConstList([5, 6]), type$.JSArray_dynamic); C.List_Pss = H.setRuntimeTypeInfo(makeConstList(["{1} {0}", "{1} {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5t4AN = new H.ConstantStringMap(25, {NAME: "af", ERAS: C.List_yPV, ERANAMES: C.List_5VO, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_ebu, STANDALONEMONTHS: C.List_ebu, SHORTMONTHS: C.List_zzJ, STANDALONESHORTMONTHS: C.List_zzJ, WEEKDAYS: C.List_96V, STANDALONEWEEKDAYS: C.List_96V, SHORTWEEKDAYS: C.List_L1G, STANDALONESHORTWEEKDAYS: C.List_L1G, NARROWWEEKDAYS: C.List_6O81, STANDALONENARROWWEEKDAYS: C.List_6O81, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_SWX, AMPMS: C.List_i7B0, DATEFORMATS: C.List_qJB, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_r6C = H.setRuntimeTypeInfo(makeConstList(["\u12d3/\u12d3", "\u12d3/\u121d"]), type$.JSArray_dynamic); C.List_cMb = H.setRuntimeTypeInfo(makeConstList(["\u12d3\u1218\u1270 \u12d3\u1208\u121d", "\u12d3\u1218\u1270 \u121d\u1215\u1228\u1275"]), type$.JSArray_dynamic); C.List_k6K0 = H.setRuntimeTypeInfo(makeConstList(["\u1303", "\u134c", "\u121b", "\u12a4", "\u121c", "\u1301", "\u1301", "\u12a6", "\u1234", "\u12a6", "\u1296", "\u12f2"]), type$.JSArray_dynamic); C.List_ACe = H.setRuntimeTypeInfo(makeConstList(["\u1303\u1295\u12e9\u12c8\u122a", "\u134c\u1265\u1229\u12c8\u122a", "\u121b\u122d\u127d", "\u12a4\u1355\u122a\u120d", "\u121c\u12ed", "\u1301\u1295", "\u1301\u120b\u12ed", "\u12a6\u1308\u1235\u1275", "\u1234\u1355\u1274\u121d\u1260\u122d", "\u12a6\u12ad\u1276\u1260\u122d", "\u1296\u126c\u121d\u1260\u122d", "\u12f2\u1234\u121d\u1260\u122d"]), type$.JSArray_dynamic); C.List_y9V = H.setRuntimeTypeInfo(makeConstList(["\u1303\u1295\u12e9", "\u134c\u1265\u1229", "\u121b\u122d\u127d", "\u12a4\u1355\u122a", "\u121c\u12ed", "\u1301\u1295", "\u1301\u120b\u12ed", "\u12a6\u1308\u1235", "\u1234\u1355\u1274", "\u12a6\u12ad\u1276", "\u1296\u126c\u121d", "\u12f2\u1234\u121d"]), type$.JSArray_dynamic); C.List_aZ8 = H.setRuntimeTypeInfo(makeConstList(["\u12a5\u1211\u12f5", "\u1230\u129e", "\u121b\u12ad\u1230\u129e", "\u1228\u1261\u12d5", "\u1210\u1219\u1235", "\u12d3\u122d\u1265", "\u1245\u12f3\u121c"]), type$.JSArray_dynamic); C.List_Khy = H.setRuntimeTypeInfo(makeConstList(["\u12a5\u1211\u12f5", "\u1230\u129e", "\u121b\u12ad\u1230", "\u1228\u1261\u12d5", "\u1210\u1219\u1235", "\u12d3\u122d\u1265", "\u1245\u12f3\u121c"]), type$.JSArray_dynamic); C.List_Q5U = H.setRuntimeTypeInfo(makeConstList(["\u12a5", "\u1230", "\u121b", "\u1228", "\u1210", "\u12d3", "\u1245"]), type$.JSArray_dynamic); C.List_KTL = H.setRuntimeTypeInfo(makeConstList(["\u1229\u12651", "\u1229\u12652", "\u1229\u12653", "\u1229\u12654"]), type$.JSArray_dynamic); C.List_ASc = H.setRuntimeTypeInfo(makeConstList(["1\u129b\u12cd \u1229\u1265", "2\u129b\u12cd \u1229\u1265", "3\u129b\u12cd \u1229\u1265", "4\u129b\u12cd \u1229\u1265"]), type$.JSArray_dynamic); C.List_Z3F = H.setRuntimeTypeInfo(makeConstList(["\u1325\u12cb\u1275", "\u12a8\u1230\u12d3\u1275"]), type$.JSArray_dynamic); C.List_VWf = H.setRuntimeTypeInfo(makeConstList(["y MMMM d, EEEE", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); C.List_kWG0 = H.setRuntimeTypeInfo(makeConstList(["h:mm:ss a zzzz", "h:mm:ss a z", "h:mm:ss a", "h:mm a"]), type$.JSArray_dynamic); C.Map_5t6QF = new H.ConstantStringMap(25, {NAME: "am", ERAS: C.List_r6C, ERANAMES: C.List_cMb, NARROWMONTHS: C.List_k6K0, STANDALONENARROWMONTHS: C.List_k6K0, MONTHS: C.List_ACe, STANDALONEMONTHS: C.List_ACe, SHORTMONTHS: C.List_y9V, STANDALONESHORTMONTHS: C.List_y9V, WEEKDAYS: C.List_aZ8, STANDALONEWEEKDAYS: C.List_aZ8, SHORTWEEKDAYS: C.List_Khy, STANDALONESHORTWEEKDAYS: C.List_Khy, NARROWWEEKDAYS: C.List_Q5U, STANDALONENARROWWEEKDAYS: C.List_Q5U, SHORTQUARTERS: C.List_KTL, QUARTERS: C.List_ASc, AMPMS: C.List_Z3F, DATEFORMATS: C.List_VWf, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_bHr = H.setRuntimeTypeInfo(makeConstList(["NAME", "ERAS", "ERANAMES", "NARROWMONTHS", "STANDALONENARROWMONTHS", "MONTHS", "STANDALONEMONTHS", "SHORTMONTHS", "STANDALONESHORTMONTHS", "WEEKDAYS", "STANDALONEWEEKDAYS", "SHORTWEEKDAYS", "STANDALONESHORTWEEKDAYS", "NARROWWEEKDAYS", "STANDALONENARROWWEEKDAYS", "SHORTQUARTERS", "QUARTERS", "AMPMS", "DATEFORMATS", "TIMEFORMATS", "AVAILABLEFORMATS", "FIRSTDAYOFWEEK", "WEEKENDRANGE", "FIRSTWEEKCUTOFFDAY", "DATETIMEFORMATS", "ZERODIGIT"]), type$.JSArray_legacy_String); C.List_Xy50 = H.setRuntimeTypeInfo(makeConstList(["\u0642.\u0645", "\u0645"]), type$.JSArray_dynamic); C.List_sJO = H.setRuntimeTypeInfo(makeConstList(["\u0642\u0628\u0644 \u0627\u0644\u0645\u064a\u0644\u0627\u062f", "\u0645\u064a\u0644\u0627\u062f\u064a"]), type$.JSArray_dynamic); C.List_a9w0 = H.setRuntimeTypeInfo(makeConstList(["\u064a", "\u0641", "\u0645", "\u0623", "\u0648", "\u0646", "\u0644", "\u063a", "\u0633", "\u0643", "\u0628", "\u062f"]), type$.JSArray_dynamic); C.List_ACL = H.setRuntimeTypeInfo(makeConstList(["\u064a\u0646\u0627\u064a\u0631", "\u0641\u0628\u0631\u0627\u064a\u0631", "\u0645\u0627\u0631\u0633", "\u0623\u0628\u0631\u064a\u0644", "\u0645\u0627\u064a\u0648", "\u064a\u0648\u0646\u064a\u0648", "\u064a\u0648\u0644\u064a\u0648", "\u0623\u063a\u0633\u0637\u0633", "\u0633\u0628\u062a\u0645\u0628\u0631", "\u0623\u0643\u062a\u0648\u0628\u0631", "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_0DX = H.setRuntimeTypeInfo(makeConstList(["\u0627\u0644\u0623\u062d\u062f", "\u0627\u0644\u0627\u062b\u0646\u064a\u0646", "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", "\u0627\u0644\u062e\u0645\u064a\u0633", "\u0627\u0644\u062c\u0645\u0639\u0629", "\u0627\u0644\u0633\u0628\u062a"]), type$.JSArray_dynamic); C.List_Odg = H.setRuntimeTypeInfo(makeConstList(["\u062d", "\u0646", "\u062b", "\u0631", "\u062e", "\u062c", "\u0633"]), type$.JSArray_dynamic); C.List_gSl = H.setRuntimeTypeInfo(makeConstList(["\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0623\u0648\u0644", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0644\u062b", "\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0631\u0627\u0628\u0639"]), type$.JSArray_dynamic); C.List_fbg = H.setRuntimeTypeInfo(makeConstList(["\u0635", "\u0645"]), type$.JSArray_dynamic); C.List_eBa = H.setRuntimeTypeInfo(makeConstList(["EEEE\u060c d MMMM y", "d MMMM y", "dd\u200f/MM\u200f/y", "d\u200f/M\u200f/y"]), type$.JSArray_dynamic); C.List_4_5 = H.setRuntimeTypeInfo(makeConstList([4, 5]), type$.JSArray_dynamic); C.Map_bHS8J = new H.ConstantStringMap(26, {NAME: "ar", ERAS: C.List_Xy50, ERANAMES: C.List_sJO, NARROWMONTHS: C.List_a9w0, STANDALONENARROWMONTHS: C.List_a9w0, MONTHS: C.List_ACL, STANDALONEMONTHS: C.List_ACL, SHORTMONTHS: C.List_ACL, STANDALONESHORTMONTHS: C.List_ACL, WEEKDAYS: C.List_0DX, STANDALONEWEEKDAYS: C.List_0DX, SHORTWEEKDAYS: C.List_0DX, STANDALONESHORTWEEKDAYS: C.List_0DX, NARROWWEEKDAYS: C.List_Odg, STANDALONENARROWWEEKDAYS: C.List_Odg, SHORTQUARTERS: C.List_gSl, QUARTERS: C.List_gSl, AMPMS: C.List_fbg, DATEFORMATS: C.List_eBa, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: C.List_4_5, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: C.List_Pss, ZERODIGIT: "\u0660"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_MZv = H.setRuntimeTypeInfo(makeConstList(["e.\u0259.", "y.e."]), type$.JSArray_dynamic); C.List_y6N0 = H.setRuntimeTypeInfo(makeConstList(["eram\u0131zdan \u0259vv\u0259l", "yeni era"]), type$.JSArray_dynamic); C.List_tO3 = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]), type$.JSArray_dynamic); C.List_zrt = H.setRuntimeTypeInfo(makeConstList(["yanvar", "fevral", "mart", "aprel", "may", "iyun", "iyul", "avqust", "sentyabr", "oktyabr", "noyabr", "dekabr"]), type$.JSArray_dynamic); C.List_rTd = H.setRuntimeTypeInfo(makeConstList(["Yanvar", "Fevral", "Mart", "Aprel", "May", "\u0130yun", "\u0130yul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"]), type$.JSArray_dynamic); C.List_6Vn = H.setRuntimeTypeInfo(makeConstList(["yan", "fev", "mar", "apr", "may", "iyn", "iyl", "avq", "sen", "okt", "noy", "dek"]), type$.JSArray_dynamic); C.List_mPL = H.setRuntimeTypeInfo(makeConstList(["bazar", "bazar ert\u0259si", "\xe7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131", "\xe7\u0259r\u015f\u0259nb\u0259", "c\xfcm\u0259 ax\u015fam\u0131", "c\xfcm\u0259", "\u015f\u0259nb\u0259"]), type$.JSArray_dynamic); C.List_ATp = H.setRuntimeTypeInfo(makeConstList(["B.", "B.E.", "\xc7.A.", "\xc7.", "C.A.", "C.", "\u015e."]), type$.JSArray_dynamic); C.List_4YB = H.setRuntimeTypeInfo(makeConstList(["7", "1", "2", "3", "4", "5", "6"]), type$.JSArray_dynamic); C.List_K2a = H.setRuntimeTypeInfo(makeConstList(["1-ci kv.", "2-ci kv.", "3-c\xfc kv.", "4-c\xfc kv."]), type$.JSArray_dynamic); C.List_33h = H.setRuntimeTypeInfo(makeConstList(["1-ci kvartal", "2-ci kvartal", "3-c\xfc kvartal", "4-c\xfc kvartal"]), type$.JSArray_dynamic); C.List_AM_PM0 = H.setRuntimeTypeInfo(makeConstList(["AM", "PM"]), type$.JSArray_dynamic); C.List_MC2 = H.setRuntimeTypeInfo(makeConstList(["d MMMM y, EEEE", "d MMMM y", "d MMM y", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5tA4L = new H.ConstantStringMap(25, {NAME: "az", ERAS: C.List_MZv, ERANAMES: C.List_y6N0, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_zrt, STANDALONEMONTHS: C.List_rTd, SHORTMONTHS: C.List_6Vn, STANDALONESHORTMONTHS: C.List_6Vn, WEEKDAYS: C.List_mPL, STANDALONEWEEKDAYS: C.List_mPL, SHORTWEEKDAYS: C.List_ATp, STANDALONESHORTWEEKDAYS: C.List_ATp, NARROWWEEKDAYS: C.List_4YB, STANDALONENARROWWEEKDAYS: C.List_4YB, SHORTQUARTERS: C.List_K2a, QUARTERS: C.List_33h, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_MC2, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Tr4 = H.setRuntimeTypeInfo(makeConstList(["\u0434\u0430 \u043d.\u044d.", "\u043d.\u044d."]), type$.JSArray_dynamic); C.List_o96 = H.setRuntimeTypeInfo(makeConstList(["\u0434\u0430 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430", "\u0430\u0434 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430"]), type$.JSArray_dynamic); C.List_p2v = H.setRuntimeTypeInfo(makeConstList(["\u0441", "\u043b", "\u0441", "\u043a", "\u043c", "\u0447", "\u043b", "\u0436", "\u0432", "\u043a", "\u043b", "\u0441"]), type$.JSArray_dynamic); C.List_AHF = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f", "\u043b\u044e\u0442\u0430\u0433\u0430", "\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430", "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430", "\u043c\u0430\u044f", "\u0447\u044d\u0440\u0432\u0435\u043d\u044f", "\u043b\u0456\u043f\u0435\u043d\u044f", "\u0436\u043d\u0456\u045e\u043d\u044f", "\u0432\u0435\u0440\u0430\u0441\u043d\u044f", "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430", "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430", "\u0441\u043d\u0435\u0436\u043d\u044f"]), type$.JSArray_dynamic); C.List_y1F = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c", "\u043b\u044e\u0442\u044b", "\u0441\u0430\u043a\u0430\u0432\u0456\u043a", "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a", "\u043c\u0430\u0439", "\u0447\u044d\u0440\u0432\u0435\u043d\u044c", "\u043b\u0456\u043f\u0435\u043d\u044c", "\u0436\u043d\u0456\u0432\u0435\u043d\u044c", "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c", "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a", "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434", "\u0441\u043d\u0435\u0436\u0430\u043d\u044c"]), type$.JSArray_dynamic); C.List_yrN0 = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0442\u0443", "\u043b\u044e\u0442", "\u0441\u0430\u043a", "\u043a\u0440\u0430", "\u043c\u0430\u044f", "\u0447\u044d\u0440", "\u043b\u0456\u043f", "\u0436\u043d\u0456", "\u0432\u0435\u0440", "\u043a\u0430\u0441", "\u043b\u0456\u0441", "\u0441\u043d\u0435"]), type$.JSArray_dynamic); C.List_O2f = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0442\u0443", "\u043b\u044e\u0442", "\u0441\u0430\u043a", "\u043a\u0440\u0430", "\u043c\u0430\u0439", "\u0447\u044d\u0440", "\u043b\u0456\u043f", "\u0436\u043d\u0456", "\u0432\u0435\u0440", "\u043a\u0430\u0441", "\u043b\u0456\u0441", "\u0441\u043d\u0435"]), type$.JSArray_dynamic); C.List_fcb = H.setRuntimeTypeInfo(makeConstList(["\u043d\u044f\u0434\u0437\u0435\u043b\u044f", "\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a", "\u0430\u045e\u0442\u043e\u0440\u0430\u043a", "\u0441\u0435\u0440\u0430\u0434\u0430", "\u0447\u0430\u0446\u0432\u0435\u0440", "\u043f\u044f\u0442\u043d\u0456\u0446\u0430", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_XZy = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0434", "\u043f\u043d", "\u0430\u045e", "\u0441\u0440", "\u0447\u0446", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); C.List_bnV = H.setRuntimeTypeInfo(makeConstList(["\u043d", "\u043f", "\u0430", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); C.List_C7r = H.setRuntimeTypeInfo(makeConstList(["1-\u0448\u044b \u043a\u0432.", "2-\u0433\u0456 \u043a\u0432.", "3-\u0446\u0456 \u043a\u0432.", "4-\u0442\u044b \u043a\u0432."]), type$.JSArray_dynamic); C.List_1mp = H.setRuntimeTypeInfo(makeConstList(["1-\u0448\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "2-\u0433\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "3-\u0446\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); C.List_E3c = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d.MM.y", "d.MM.yy"]), type$.JSArray_dynamic); C.List_YGg = H.setRuntimeTypeInfo(makeConstList(["HH:mm:ss, zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.List_Cju = H.setRuntimeTypeInfo(makeConstList(["{1} '\u0443' {0}", "{1} '\u0443' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tfx7 = new H.ConstantStringMap(25, {NAME: "be", ERAS: C.List_Tr4, ERANAMES: C.List_o96, NARROWMONTHS: C.List_p2v, STANDALONENARROWMONTHS: C.List_p2v, MONTHS: C.List_AHF, STANDALONEMONTHS: C.List_y1F, SHORTMONTHS: C.List_yrN0, STANDALONESHORTMONTHS: C.List_O2f, WEEKDAYS: C.List_fcb, STANDALONEWEEKDAYS: C.List_fcb, SHORTWEEKDAYS: C.List_XZy, STANDALONESHORTWEEKDAYS: C.List_XZy, NARROWWEEKDAYS: C.List_bnV, STANDALONENARROWWEEKDAYS: C.List_bnV, SHORTQUARTERS: C.List_C7r, QUARTERS: C.List_1mp, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_E3c, TIMEFORMATS: C.List_YGg, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Cju}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_huc = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440.\u0425\u0440.", "\u0441\u043b.\u0425\u0440."]), type$.JSArray_dynamic); C.List_M2D = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0435\u0434\u0438 \u0425\u0440\u0438\u0441\u0442\u0430", "\u0441\u043b\u0435\u0434 \u0425\u0440\u0438\u0441\u0442\u0430"]), type$.JSArray_dynamic); C.List_gUw = H.setRuntimeTypeInfo(makeConstList(["\u044f", "\u0444", "\u043c", "\u0430", "\u043c", "\u044e", "\u044e", "\u0430", "\u0441", "\u043e", "\u043d", "\u0434"]), type$.JSArray_dynamic); C.List_RsV1 = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0443\u0430\u0440\u0438", "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0439", "\u044e\u043d\u0438", "\u044e\u043b\u0438", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]), type$.JSArray_dynamic); C.List_9hp = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0443", "\u0444\u0435\u0432", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440", "\u043c\u0430\u0439", "\u044e\u043d\u0438", "\u044e\u043b\u0438", "\u0430\u0432\u0433", "\u0441\u0435\u043f", "\u043e\u043a\u0442", "\u043d\u043e\u0435", "\u0434\u0435\u043a"]), type$.JSArray_dynamic); C.List_0Nf = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434\u0435\u043b\u044f", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u044f\u0434\u0430", "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", "\u043f\u0435\u0442\u044a\u043a", "\u0441\u044a\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_06 = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0434", "\u043f\u043d", "\u0432\u0442", "\u0441\u0440", "\u0447\u0442", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); C.List_H7P0 = H.setRuntimeTypeInfo(makeConstList(["\u043d", "\u043f", "\u0432", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); C.List_A0N = H.setRuntimeTypeInfo(makeConstList(["1. \u0442\u0440\u0438\u043c.", "2. \u0442\u0440\u0438\u043c.", "3. \u0442\u0440\u0438\u043c.", "4. \u0442\u0440\u0438\u043c."]), type$.JSArray_dynamic); C.List_aJg = H.setRuntimeTypeInfo(makeConstList(["1. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "2. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "3. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "4. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435"]), type$.JSArray_dynamic); C.List_yP5 = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440.\u043e\u0431.", "\u0441\u043b.\u043e\u0431."]), type$.JSArray_dynamic); C.List_e7r = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d.MM.y '\u0433'.", "d.MM.yy '\u0433'."]), type$.JSArray_dynamic); C.List_wwi = H.setRuntimeTypeInfo(makeConstList(["H:mm:ss '\u0447'. zzzz", "H:mm:ss '\u0447'. z", "H:mm:ss '\u0447'.", "H:mm '\u0447'."]), type$.JSArray_dynamic); C.List_o0N = H.setRuntimeTypeInfo(makeConstList(["{1}, {0}", "{1}, {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tW7l = new H.ConstantStringMap(25, {NAME: "bg", ERAS: C.List_huc, ERANAMES: C.List_M2D, NARROWMONTHS: C.List_gUw, STANDALONENARROWMONTHS: C.List_gUw, MONTHS: C.List_RsV1, STANDALONEMONTHS: C.List_RsV1, SHORTMONTHS: C.List_9hp, STANDALONESHORTMONTHS: C.List_9hp, WEEKDAYS: C.List_0Nf, STANDALONEWEEKDAYS: C.List_0Nf, SHORTWEEKDAYS: C.List_06, STANDALONESHORTWEEKDAYS: C.List_06, NARROWWEEKDAYS: C.List_H7P0, STANDALONENARROWWEEKDAYS: C.List_H7P0, SHORTQUARTERS: C.List_A0N, QUARTERS: C.List_aJg, AMPMS: C.List_yP5, DATEFORMATS: C.List_e7r, TIMEFORMATS: C.List_wwi, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_mCA = H.setRuntimeTypeInfo(makeConstList(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac", "\u0996\u09c3\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]), type$.JSArray_dynamic); C.List_sAq = H.setRuntimeTypeInfo(makeConstList(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac", "\u0996\u09cd\u09b0\u09c0\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]), type$.JSArray_dynamic); C.List_M2b = H.setRuntimeTypeInfo(makeConstList(["\u099c\u09be", "\u09ab\u09c7", "\u09ae\u09be", "\u098f", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1", "\u0986", "\u09b8\u09c7", "\u0985", "\u09a8", "\u09a1\u09bf"]), type$.JSArray_dynamic); C.List_MUw0 = H.setRuntimeTypeInfo(makeConstList(["\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", "\u09ae\u09be\u09b0\u09cd\u099a", "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1\u09b2\u09be\u0987", "\u0986\u0997\u09b8\u09cd\u099f", "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]), type$.JSArray_dynamic); C.List_uIL = H.setRuntimeTypeInfo(makeConstList(["\u099c\u09be\u09a8\u09c1", "\u09ab\u09c7\u09ac", "\u09ae\u09be\u09b0\u09cd\u099a", "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", "\u09ae\u09c7", "\u099c\u09c1\u09a8", "\u099c\u09c1\u09b2\u09be\u0987", "\u0986\u0997\u09b8\u09cd\u099f", "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]), type$.JSArray_dynamic); C.List_fDn = H.setRuntimeTypeInfo(makeConstList(["\u09b0\u09ac\u09bf\u09ac\u09be\u09b0", "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0", "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0", "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0", "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0", "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0", "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"]), type$.JSArray_dynamic); C.List_BzQ = H.setRuntimeTypeInfo(makeConstList(["\u09b0\u09ac\u09bf", "\u09b8\u09cb\u09ae", "\u09ae\u0999\u09cd\u0997\u09b2", "\u09ac\u09c1\u09a7", "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf", "\u09b6\u09c1\u0995\u09cd\u09b0", "\u09b6\u09a8\u09bf"]), type$.JSArray_dynamic); C.List_M2I = H.setRuntimeTypeInfo(makeConstList(["\u09b0", "\u09b8\u09cb", "\u09ae", "\u09ac\u09c1", "\u09ac\u09c3", "\u09b6\u09c1", "\u09b6"]), type$.JSArray_dynamic); C.List_kDF = H.setRuntimeTypeInfo(makeConstList(["\u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995", "\u099a\u09a4\u09c1\u09b0\u09cd\u09a5 \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995"]), type$.JSArray_dynamic); C.List_oYk = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM, y", "d MMMM, y", "d MMM, y", "d/M/yy"]), type$.JSArray_dynamic); C.Map_bHedh = new H.ConstantStringMap(26, {NAME: "bn", ERAS: C.List_mCA, ERANAMES: C.List_sAq, NARROWMONTHS: C.List_M2b, STANDALONENARROWMONTHS: C.List_M2b, MONTHS: C.List_MUw0, STANDALONEMONTHS: C.List_MUw0, SHORTMONTHS: C.List_uIL, STANDALONESHORTMONTHS: C.List_MUw0, WEEKDAYS: C.List_fDn, STANDALONEWEEKDAYS: C.List_fDn, SHORTWEEKDAYS: C.List_BzQ, STANDALONESHORTWEEKDAYS: C.List_BzQ, NARROWWEEKDAYS: C.List_M2I, STANDALONENARROWWEEKDAYS: C.List_M2I, SHORTQUARTERS: C.List_kDF, QUARTERS: C.List_kDF, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_oYk, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss, ZERODIGIT: "\u09e6"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_PDz = H.setRuntimeTypeInfo(makeConstList(["p. n. e.", "n. e."]), type$.JSArray_dynamic); C.List_YYi = H.setRuntimeTypeInfo(makeConstList(["prije nove ere", "nove ere"]), type$.JSArray_dynamic); C.List_oEc = H.setRuntimeTypeInfo(makeConstList(["j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"]), type$.JSArray_dynamic); C.List_asC = H.setRuntimeTypeInfo(makeConstList(["januar", "februar", "mart", "april", "maj", "juni", "juli", "august", "septembar", "oktobar", "novembar", "decembar"]), type$.JSArray_dynamic); C.List_ECG = H.setRuntimeTypeInfo(makeConstList(["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); C.List_S49 = H.setRuntimeTypeInfo(makeConstList(["nedjelja", "ponedjeljak", "utorak", "srijeda", "\u010detvrtak", "petak", "subota"]), type$.JSArray_dynamic); C.List_8eb = H.setRuntimeTypeInfo(makeConstList(["ned", "pon", "uto", "sri", "\u010det", "pet", "sub"]), type$.JSArray_dynamic); C.List_KHM = H.setRuntimeTypeInfo(makeConstList(["N", "P", "U", "S", "\u010c", "P", "S"]), type$.JSArray_dynamic); C.List_sci = H.setRuntimeTypeInfo(makeConstList(["n", "p", "u", "s", "\u010d", "p", "s"]), type$.JSArray_dynamic); C.List_KV1_KV2_KV3_KV4 = H.setRuntimeTypeInfo(makeConstList(["KV1", "KV2", "KV3", "KV4"]), type$.JSArray_dynamic); C.List_m9b = H.setRuntimeTypeInfo(makeConstList(["Prvi kvartal", "Drugi kvartal", "Tre\u0107i kvartal", "\u010cetvrti kvartal"]), type$.JSArray_dynamic); C.List_prijepodne_popodne = H.setRuntimeTypeInfo(makeConstList(["prijepodne", "popodne"]), type$.JSArray_dynamic); C.List_Qs9 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d. MMMM y.", "d. MMMM y.", "d. MMM y.", "d. M. y."]), type$.JSArray_dynamic); C.List_CDT = H.setRuntimeTypeInfo(makeConstList(["{1} 'u' {0}", "{1} 'u' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tPJs = new H.ConstantStringMap(25, {NAME: "bs", ERAS: C.List_PDz, ERANAMES: C.List_YYi, NARROWMONTHS: C.List_oEc, STANDALONENARROWMONTHS: C.List_oEc, MONTHS: C.List_asC, STANDALONEMONTHS: C.List_asC, SHORTMONTHS: C.List_ECG, STANDALONESHORTMONTHS: C.List_ECG, WEEKDAYS: C.List_S49, STANDALONEWEEKDAYS: C.List_S49, SHORTWEEKDAYS: C.List_8eb, STANDALONESHORTWEEKDAYS: C.List_8eb, NARROWWEEKDAYS: C.List_KHM, STANDALONENARROWWEEKDAYS: C.List_sci, SHORTQUARTERS: C.List_KV1_KV2_KV3_KV4, QUARTERS: C.List_m9b, AMPMS: C.List_prijepodne_popodne, DATEFORMATS: C.List_Qs9, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_CDT}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_aC_dC = H.setRuntimeTypeInfo(makeConstList(["aC", "dC"]), type$.JSArray_dynamic); C.List_iDZ0 = H.setRuntimeTypeInfo(makeConstList(["abans de Crist", "despr\xe9s de Crist"]), type$.JSArray_dynamic); C.List_aV0 = H.setRuntimeTypeInfo(makeConstList(["GN", "FB", "M\xc7", "AB", "MG", "JN", "JL", "AG", "ST", "OC", "NV", "DS"]), type$.JSArray_dynamic); C.List_QAb = H.setRuntimeTypeInfo(makeConstList(["de gener", "de febrer", "de mar\xe7", "d\u2019abril", "de maig", "de juny", "de juliol", "d\u2019agost", "de setembre", "d\u2019octubre", "de novembre", "de desembre"]), type$.JSArray_dynamic); C.List_AiQ = H.setRuntimeTypeInfo(makeConstList(["gener", "febrer", "mar\xe7", "abril", "maig", "juny", "juliol", "agost", "setembre", "octubre", "novembre", "desembre"]), type$.JSArray_dynamic); C.List_14C = H.setRuntimeTypeInfo(makeConstList(["de gen.", "de febr.", "de mar\xe7", "d\u2019abr.", "de maig", "de juny", "de jul.", "d\u2019ag.", "de set.", "d\u2019oct.", "de nov.", "de des."]), type$.JSArray_dynamic); C.List_zzp = H.setRuntimeTypeInfo(makeConstList(["gen.", "febr.", "mar\xe7", "abr.", "maig", "juny", "jul.", "ag.", "set.", "oct.", "nov.", "des."]), type$.JSArray_dynamic); C.List_A2Y = H.setRuntimeTypeInfo(makeConstList(["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"]), type$.JSArray_dynamic); C.List_soA0 = H.setRuntimeTypeInfo(makeConstList(["dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds."]), type$.JSArray_dynamic); C.List_33m = H.setRuntimeTypeInfo(makeConstList(["dg", "dl", "dt", "dc", "dj", "dv", "ds"]), type$.JSArray_dynamic); C.List_Am8 = H.setRuntimeTypeInfo(makeConstList(["1T", "2T", "3T", "4T"]), type$.JSArray_dynamic); C.List_6pl = H.setRuntimeTypeInfo(makeConstList(["1r trimestre", "2n trimestre", "3r trimestre", "4t trimestre"]), type$.JSArray_dynamic); C.List_kWM = H.setRuntimeTypeInfo(makeConstList(["a.\xa0m.", "p.\xa0m."]), type$.JSArray_dynamic); C.List_n7k0 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM 'de' y", "d MMMM 'de' y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); C.List_84a = H.setRuntimeTypeInfo(makeConstList(["H:mm:ss zzzz", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); C.List_YIY = H.setRuntimeTypeInfo(makeConstList(["{1} 'a' 'les' {0}", "{1} 'a' 'les' {0}", "{1}, {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5t94O = new H.ConstantStringMap(25, {NAME: "ca", ERAS: C.List_aC_dC, ERANAMES: C.List_iDZ0, NARROWMONTHS: C.List_aV0, STANDALONENARROWMONTHS: C.List_aV0, MONTHS: C.List_QAb, STANDALONEMONTHS: C.List_AiQ, SHORTMONTHS: C.List_14C, STANDALONESHORTMONTHS: C.List_zzp, WEEKDAYS: C.List_A2Y, STANDALONEWEEKDAYS: C.List_A2Y, SHORTWEEKDAYS: C.List_soA0, STANDALONESHORTWEEKDAYS: C.List_soA0, NARROWWEEKDAYS: C.List_33m, STANDALONENARROWWEEKDAYS: C.List_33m, SHORTQUARTERS: C.List_Am8, QUARTERS: C.List_6pl, AMPMS: C.List_kWM, DATEFORMATS: C.List_n7k0, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_YIY}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_swP = H.setRuntimeTypeInfo(makeConstList(["p\u0159. n. l.", "n. l."]), type$.JSArray_dynamic); C.List_EOZ = H.setRuntimeTypeInfo(makeConstList(["p\u0159ed na\u0161\xedm letopo\u010dtem", "na\u0161eho letopo\u010dtu"]), type$.JSArray_dynamic); C.List_ww8136 = H.setRuntimeTypeInfo(makeConstList(["ledna", "\xfanora", "b\u0159ezna", "dubna", "kv\u011btna", "\u010dervna", "\u010dervence", "srpna", "z\xe1\u0159\xed", "\u0159\xedjna", "listopadu", "prosince"]), type$.JSArray_dynamic); C.List_699 = H.setRuntimeTypeInfo(makeConstList(["leden", "\xfanor", "b\u0159ezen", "duben", "kv\u011bten", "\u010derven", "\u010dervenec", "srpen", "z\xe1\u0159\xed", "\u0159\xedjen", "listopad", "prosinec"]), type$.JSArray_dynamic); C.List_yXb = H.setRuntimeTypeInfo(makeConstList(["led", "\xfano", "b\u0159e", "dub", "kv\u011b", "\u010dvn", "\u010dvc", "srp", "z\xe1\u0159", "\u0159\xedj", "lis", "pro"]), type$.JSArray_dynamic); C.List_aBG = H.setRuntimeTypeInfo(makeConstList(["ned\u011ble", "pond\u011bl\xed", "\xfater\xfd", "st\u0159eda", "\u010dtvrtek", "p\xe1tek", "sobota"]), type$.JSArray_dynamic); C.List_oww = H.setRuntimeTypeInfo(makeConstList(["ne", "po", "\xfat", "st", "\u010dt", "p\xe1", "so"]), type$.JSArray_dynamic); C.List_2Zi0 = H.setRuntimeTypeInfo(makeConstList(["N", "P", "\xda", "S", "\u010c", "P", "S"]), type$.JSArray_dynamic); C.List_Q1_Q2_Q3_Q40 = H.setRuntimeTypeInfo(makeConstList(["Q1", "Q2", "Q3", "Q4"]), type$.JSArray_dynamic); C.List_zVD = H.setRuntimeTypeInfo(makeConstList(["1. \u010dtvrtlet\xed", "2. \u010dtvrtlet\xed", "3. \u010dtvrtlet\xed", "4. \u010dtvrtlet\xed"]), type$.JSArray_dynamic); C.List_MUs = H.setRuntimeTypeInfo(makeConstList(["dop.", "odp."]), type$.JSArray_dynamic); C.List_XZn = H.setRuntimeTypeInfo(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. M. y", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5tSTY = new H.ConstantStringMap(25, {NAME: "cs", ERAS: C.List_swP, ERANAMES: C.List_EOZ, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_ww8136, STANDALONEMONTHS: C.List_699, SHORTMONTHS: C.List_yXb, STANDALONESHORTMONTHS: C.List_yXb, WEEKDAYS: C.List_aBG, STANDALONEWEEKDAYS: C.List_aBG, SHORTWEEKDAYS: C.List_oww, STANDALONESHORTWEEKDAYS: C.List_oww, NARROWWEEKDAYS: C.List_2Zi0, STANDALONENARROWWEEKDAYS: C.List_2Zi0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_zVD, AMPMS: C.List_MUs, DATEFORMATS: C.List_XZn, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_OPD = H.setRuntimeTypeInfo(makeConstList(["f.Kr.", "e.Kr."]), type$.JSArray_dynamic); C.List_9SI = H.setRuntimeTypeInfo(makeConstList(["januar", "februar", "marts", "april", "maj", "juni", "juli", "august", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); C.List_8eb0 = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mar.", "apr.", "maj", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_Ufe = H.setRuntimeTypeInfo(makeConstList(["s\xf8ndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "l\xf8rdag"]), type$.JSArray_dynamic); C.List_zPU = H.setRuntimeTypeInfo(makeConstList(["s\xf8n.", "man.", "tir.", "ons.", "tor.", "fre.", "l\xf8r."]), type$.JSArray_dynamic); C.List_eVG = H.setRuntimeTypeInfo(makeConstList(["s\xf8n", "man", "tir", "ons", "tor", "fre", "l\xf8r"]), type$.JSArray_dynamic); C.List_GVy = H.setRuntimeTypeInfo(makeConstList(["S", "M", "T", "O", "T", "F", "L"]), type$.JSArray_dynamic); C.List_VJf = H.setRuntimeTypeInfo(makeConstList(["1. kvt.", "2. kvt.", "3. kvt.", "4. kvt."]), type$.JSArray_dynamic); C.List_wg3 = H.setRuntimeTypeInfo(makeConstList(["1. kvartal", "2. kvartal", "3. kvartal", "4. kvartal"]), type$.JSArray_dynamic); C.List_4C1 = H.setRuntimeTypeInfo(makeConstList(["EEEE 'den' d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.y"]), type$.JSArray_dynamic); C.List_SCE = H.setRuntimeTypeInfo(makeConstList(["HH.mm.ss zzzz", "HH.mm.ss z", "HH.mm.ss", "HH.mm"]), type$.JSArray_dynamic); C.List_iEE0 = H.setRuntimeTypeInfo(makeConstList(["{1} 'kl'. {0}", "{1} 'kl'. {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tUEs = new H.ConstantStringMap(25, {NAME: "da", ERAS: C.List_OPD, ERANAMES: C.List_OPD, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_9SI, STANDALONEMONTHS: C.List_9SI, SHORTMONTHS: C.List_8eb0, STANDALONESHORTMONTHS: C.List_8eb0, WEEKDAYS: C.List_Ufe, STANDALONEWEEKDAYS: C.List_Ufe, SHORTWEEKDAYS: C.List_zPU, STANDALONESHORTWEEKDAYS: C.List_eVG, NARROWWEEKDAYS: C.List_GVy, STANDALONENARROWWEEKDAYS: C.List_GVy, SHORTQUARTERS: C.List_VJf, QUARTERS: C.List_wg3, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_4C1, TIMEFORMATS: C.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_iEE0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_znv = H.setRuntimeTypeInfo(makeConstList(["v. Chr.", "n. Chr."]), type$.JSArray_dynamic); C.List_yvw = H.setRuntimeTypeInfo(makeConstList(["Januar", "Februar", "M\xe4rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"]), type$.JSArray_dynamic); C.List_07 = H.setRuntimeTypeInfo(makeConstList(["Jan.", "Feb.", "M\xe4rz", "Apr.", "Mai", "Juni", "Juli", "Aug.", "Sept.", "Okt.", "Nov.", "Dez."]), type$.JSArray_dynamic); C.List_AgZ = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "M\xe4r", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"]), type$.JSArray_dynamic); C.List_9YN = H.setRuntimeTypeInfo(makeConstList(["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]), type$.JSArray_dynamic); C.List_Ssz = H.setRuntimeTypeInfo(makeConstList(["So.", "Mo.", "Di.", "Mi.", "Do.", "Fr.", "Sa."]), type$.JSArray_dynamic); C.List_4IJ = H.setRuntimeTypeInfo(makeConstList(["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]), type$.JSArray_dynamic); C.List_6v8 = H.setRuntimeTypeInfo(makeConstList(["S", "M", "D", "M", "D", "F", "S"]), type$.JSArray_dynamic); C.List_2No1 = H.setRuntimeTypeInfo(makeConstList(["1. Quartal", "2. Quartal", "3. Quartal", "4. Quartal"]), type$.JSArray_dynamic); C.List_mGN = H.setRuntimeTypeInfo(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "dd.MM.y", "dd.MM.yy"]), type$.JSArray_dynamic); C.List_yCp = H.setRuntimeTypeInfo(makeConstList(["{1} 'um' {0}", "{1} 'um' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tI6I = new H.ConstantStringMap(25, {NAME: "de", ERAS: C.List_znv, ERANAMES: C.List_znv, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_yvw, STANDALONEMONTHS: C.List_yvw, SHORTMONTHS: C.List_07, STANDALONESHORTMONTHS: C.List_AgZ, WEEKDAYS: C.List_9YN, STANDALONEWEEKDAYS: C.List_9YN, SHORTWEEKDAYS: C.List_Ssz, STANDALONESHORTWEEKDAYS: C.List_4IJ, NARROWWEEKDAYS: C.List_6v8, STANDALONENARROWWEEKDAYS: C.List_6v8, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_2No1, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_mGN, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_yCp}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_5tqoQ = new H.ConstantStringMap(25, {NAME: "de_CH", ERAS: C.List_znv, ERANAMES: C.List_znv, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_yvw, STANDALONEMONTHS: C.List_yvw, SHORTMONTHS: C.List_07, STANDALONESHORTMONTHS: C.List_AgZ, WEEKDAYS: C.List_9YN, STANDALONEWEEKDAYS: C.List_9YN, SHORTWEEKDAYS: C.List_Ssz, STANDALONESHORTWEEKDAYS: C.List_4IJ, NARROWWEEKDAYS: C.List_6v8, STANDALONENARROWWEEKDAYS: C.List_6v8, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_2No1, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_mGN, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_yCp}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_LJp = H.setRuntimeTypeInfo(makeConstList(["\u03c0.\u03a7.", "\u03bc.\u03a7."]), type$.JSArray_dynamic); C.List_ES1 = H.setRuntimeTypeInfo(makeConstList(["\u03c0\u03c1\u03bf \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd", "\u03bc\u03b5\u03c4\u03ac \u03a7\u03c1\u03b9\u03c3\u03c4\u03cc\u03bd"]), type$.JSArray_dynamic); C.List_sMI = H.setRuntimeTypeInfo(makeConstList(["\u0399", "\u03a6", "\u039c", "\u0391", "\u039c", "\u0399", "\u0399", "\u0391", "\u03a3", "\u039f", "\u039d", "\u0394"]), type$.JSArray_dynamic); C.List_UcM = H.setRuntimeTypeInfo(makeConstList(["\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5", "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5", "\u039c\u03b1\u0390\u03bf\u03c5", "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5", "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5", "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5", "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5", "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"]), type$.JSArray_dynamic); C.List_EGJ = H.setRuntimeTypeInfo(makeConstList(["\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", "\u039c\u03ac\u03b9\u03bf\u03c2", "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"]), type$.JSArray_dynamic); C.List_gJC = H.setRuntimeTypeInfo(makeConstList(["\u0399\u03b1\u03bd", "\u03a6\u03b5\u03b2", "\u039c\u03b1\u03c1", "\u0391\u03c0\u03c1", "\u039c\u03b1\u0390", "\u0399\u03bf\u03c5\u03bd", "\u0399\u03bf\u03c5\u03bb", "\u0391\u03c5\u03b3", "\u03a3\u03b5\u03c0", "\u039f\u03ba\u03c4", "\u039d\u03bf\u03b5", "\u0394\u03b5\u03ba"]), type$.JSArray_dynamic); C.List_oXg = H.setRuntimeTypeInfo(makeConstList(["\u0399\u03b1\u03bd", "\u03a6\u03b5\u03b2", "\u039c\u03ac\u03c1", "\u0391\u03c0\u03c1", "\u039c\u03ac\u03b9", "\u0399\u03bf\u03cd\u03bd", "\u0399\u03bf\u03cd\u03bb", "\u0391\u03cd\u03b3", "\u03a3\u03b5\u03c0", "\u039f\u03ba\u03c4", "\u039d\u03bf\u03ad", "\u0394\u03b5\u03ba"]), type$.JSArray_dynamic); C.List_OFS = H.setRuntimeTypeInfo(makeConstList(["\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", "\u03a4\u03c1\u03af\u03c4\u03b7", "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"]), type$.JSArray_dynamic); C.List_PnF = H.setRuntimeTypeInfo(makeConstList(["\u039a\u03c5\u03c1", "\u0394\u03b5\u03c5", "\u03a4\u03c1\u03af", "\u03a4\u03b5\u03c4", "\u03a0\u03ad\u03bc", "\u03a0\u03b1\u03c1", "\u03a3\u03ac\u03b2"]), type$.JSArray_dynamic); C.List_yDV = H.setRuntimeTypeInfo(makeConstList(["\u039a", "\u0394", "\u03a4", "\u03a4", "\u03a0", "\u03a0", "\u03a3"]), type$.JSArray_dynamic); C.List_ZGD = H.setRuntimeTypeInfo(makeConstList(["\u03a41", "\u03a42", "\u03a43", "\u03a44"]), type$.JSArray_dynamic); C.List_ido = H.setRuntimeTypeInfo(makeConstList(["1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "2\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "3\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf", "4\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf"]), type$.JSArray_dynamic); C.List_kyy0 = H.setRuntimeTypeInfo(makeConstList(["\u03c0.\u03bc.", "\u03bc.\u03bc."]), type$.JSArray_dynamic); C.List_INh = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); C.List_YsI = H.setRuntimeTypeInfo(makeConstList(["{1} - {0}", "{1} - {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tEmr = new H.ConstantStringMap(25, {NAME: "el", ERAS: C.List_LJp, ERANAMES: C.List_ES1, NARROWMONTHS: C.List_sMI, STANDALONENARROWMONTHS: C.List_sMI, MONTHS: C.List_UcM, STANDALONEMONTHS: C.List_EGJ, SHORTMONTHS: C.List_gJC, STANDALONESHORTMONTHS: C.List_oXg, WEEKDAYS: C.List_OFS, STANDALONEWEEKDAYS: C.List_OFS, SHORTWEEKDAYS: C.List_PnF, STANDALONESHORTWEEKDAYS: C.List_PnF, NARROWWEEKDAYS: C.List_yDV, STANDALONENARROWWEEKDAYS: C.List_yDV, SHORTQUARTERS: C.List_ZGD, QUARTERS: C.List_ido, AMPMS: C.List_kyy0, DATEFORMATS: C.List_INh, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_YsI}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_BC_AD0 = H.setRuntimeTypeInfo(makeConstList(["BC", "AD"]), type$.JSArray_dynamic); C.List_6xs0 = H.setRuntimeTypeInfo(makeConstList(["Before Christ", "Anno Domini"]), type$.JSArray_dynamic); C.List_cIc0 = H.setRuntimeTypeInfo(makeConstList(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]), type$.JSArray_dynamic); C.List_h8w0 = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]), type$.JSArray_dynamic); C.List_wMy1 = H.setRuntimeTypeInfo(makeConstList(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]), type$.JSArray_dynamic); C.List_gc60 = H.setRuntimeTypeInfo(makeConstList(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]), type$.JSArray_dynamic); C.List_3US0 = H.setRuntimeTypeInfo(makeConstList(["S", "M", "T", "W", "T", "F", "S"]), type$.JSArray_dynamic); C.List_bJM0 = H.setRuntimeTypeInfo(makeConstList(["1st quarter", "2nd quarter", "3rd quarter", "4th quarter"]), type$.JSArray_dynamic); C.List_cno0 = H.setRuntimeTypeInfo(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "M/d/yy"]), type$.JSArray_dynamic); C.List_iDZ1 = H.setRuntimeTypeInfo(makeConstList(["{1} 'at' {0}", "{1} 'at' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tOTP = new H.ConstantStringMap(25, {NAME: "en", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_r5C = H.setRuntimeTypeInfo(makeConstList(["Su.", "M.", "Tu.", "W.", "Th.", "F.", "Sa."]), type$.JSArray_dynamic); C.List_am_pm = H.setRuntimeTypeInfo(makeConstList(["am", "pm"]), type$.JSArray_dynamic); C.Map_5tifn = new H.ConstantStringMap(25, {NAME: "en_AU", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_r5C, STANDALONENARROWWEEKDAYS: C.List_r5C, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_am_pm, DATEFORMATS: C.List_INh, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EKW = H.setRuntimeTypeInfo(makeConstList(["Jan.", "Feb.", "Mar.", "Apr.", "May", "Jun.", "Jul.", "Aug.", "Sep.", "Oct.", "Nov.", "Dec."]), type$.JSArray_dynamic); C.List_gg41 = H.setRuntimeTypeInfo(makeConstList(["Sun.", "Mon.", "Tue.", "Wed.", "Thu.", "Fri.", "Sat."]), type$.JSArray_dynamic); C.List_2fJ = H.setRuntimeTypeInfo(makeConstList(["a.m.", "p.m."]), type$.JSArray_dynamic); C.List_U4G = H.setRuntimeTypeInfo(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "y-MM-dd"]), type$.JSArray_dynamic); C.Map_5t0 = new H.ConstantStringMap(25, {NAME: "en_CA", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_EKW, STANDALONESHORTMONTHS: C.List_EKW, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gg41, STANDALONESHORTWEEKDAYS: C.List_gg41, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_2fJ, DATEFORMATS: C.List_U4G, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ml5 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); C.Map_5t3mV = new H.ConstantStringMap(25, {NAME: "en_GB", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_am_pm, DATEFORMATS: C.List_ml5, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_IF2 = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd/MM/y"]), type$.JSArray_dynamic); C.Map_5tE4y = new H.ConstantStringMap(25, {NAME: "en_IE", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_2fJ, DATEFORMATS: C.List_IF2, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_IMB = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM, y", "d MMMM y", "dd-MMM-y", "dd/MM/yy"]), type$.JSArray_dynamic); C.List_6_6 = H.setRuntimeTypeInfo(makeConstList([6, 6]), type$.JSArray_dynamic); C.Map_5tmFp = new H.ConstantStringMap(25, {NAME: "en_IN", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_am_pm, DATEFORMATS: C.List_IMB, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_5tU48 = new H.ConstantStringMap(25, {NAME: "en_SG", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_am_pm, DATEFORMATS: C.List_INh, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_5tgRf = new H.ConstantStringMap(25, {NAME: "en_US", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Wzh = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd MMMM y", "dd MMMM y", "dd MMM y", "y/MM/dd"]), type$.JSArray_dynamic); C.Map_5t43h = new H.ConstantStringMap(25, {NAME: "en_ZA", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_cIc0, STANDALONEMONTHS: C.List_cIc0, SHORTMONTHS: C.List_h8w0, STANDALONESHORTMONTHS: C.List_h8w0, WEEKDAYS: C.List_wMy1, STANDALONEWEEKDAYS: C.List_wMy1, SHORTWEEKDAYS: C.List_gc60, STANDALONESHORTWEEKDAYS: C.List_gc60, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_bJM0, AMPMS: C.List_am_pm, DATEFORMATS: C.List_Wzh, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iDZ1}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_AiM = H.setRuntimeTypeInfo(makeConstList(["a. C.", "d. C."]), type$.JSArray_dynamic); C.List_YZj = H.setRuntimeTypeInfo(makeConstList(["antes de Cristo", "despu\xe9s de Cristo"]), type$.JSArray_dynamic); C.List_Etd = H.setRuntimeTypeInfo(makeConstList(["E", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_8Cn = H.setRuntimeTypeInfo(makeConstList(["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"]), type$.JSArray_dynamic); C.List_gc61 = H.setRuntimeTypeInfo(makeConstList(["ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sept.", "oct.", "nov.", "dic."]), type$.JSArray_dynamic); C.List_Cs5 = H.setRuntimeTypeInfo(makeConstList(["domingo", "lunes", "martes", "mi\xe9rcoles", "jueves", "viernes", "s\xe1bado"]), type$.JSArray_dynamic); C.List_fHj = H.setRuntimeTypeInfo(makeConstList(["dom.", "lun.", "mar.", "mi\xe9.", "jue.", "vie.", "s\xe1b."]), type$.JSArray_dynamic); C.List_gkc2 = H.setRuntimeTypeInfo(makeConstList(["D", "L", "M", "X", "J", "V", "S"]), type$.JSArray_dynamic); C.List_T1_T2_T3_T4 = H.setRuntimeTypeInfo(makeConstList(["T1", "T2", "T3", "T4"]), type$.JSArray_dynamic); C.List_2Vk3 = H.setRuntimeTypeInfo(makeConstList(["1.er trimestre", "2.\xba trimestre", "3.er trimestre", "4.\xba trimestre"]), type$.JSArray_dynamic); C.List_st1 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); C.List_8XQ = H.setRuntimeTypeInfo(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); C.List_XMt = H.setRuntimeTypeInfo(makeConstList(["{1}, {0}", "{1}, {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tQ5r = new H.ConstantStringMap(25, {NAME: "es", ERAS: C.List_AiM, ERANAMES: C.List_YZj, NARROWMONTHS: C.List_Etd, STANDALONENARROWMONTHS: C.List_Etd, MONTHS: C.List_8Cn, STANDALONEMONTHS: C.List_8Cn, SHORTMONTHS: C.List_gc61, STANDALONESHORTMONTHS: C.List_gc61, WEEKDAYS: C.List_Cs5, STANDALONEWEEKDAYS: C.List_Cs5, SHORTWEEKDAYS: C.List_fHj, STANDALONESHORTWEEKDAYS: C.List_fHj, NARROWWEEKDAYS: C.List_gkc2, STANDALONENARROWWEEKDAYS: C.List_gkc2, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_2Vk3, AMPMS: C.List_kWM, DATEFORMATS: C.List_st1, TIMEFORMATS: C.List_8XQ, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_XMt}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_XGb = H.setRuntimeTypeInfo(makeConstList(["ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sep.", "oct.", "nov.", "dic."]), type$.JSArray_dynamic); C.List_aJC = H.setRuntimeTypeInfo(makeConstList(["d", "l", "m", "m", "j", "v", "s"]), type$.JSArray_dynamic); C.List_ROW = H.setRuntimeTypeInfo(makeConstList(["D", "L", "M", "M", "J", "V", "S"]), type$.JSArray_dynamic); C.List_GfX = H.setRuntimeTypeInfo(makeConstList(["1.\xba trimestre", "2.\xba trimestre", "3.\xba trimestre", "4.\xba trimestre"]), type$.JSArray_dynamic); C.Map_5tI8w = new H.ConstantStringMap(25, {NAME: "es_419", ERAS: C.List_AiM, ERANAMES: C.List_YZj, NARROWMONTHS: C.List_Etd, STANDALONENARROWMONTHS: C.List_Etd, MONTHS: C.List_8Cn, STANDALONEMONTHS: C.List_8Cn, SHORTMONTHS: C.List_XGb, STANDALONESHORTMONTHS: C.List_XGb, WEEKDAYS: C.List_Cs5, STANDALONEWEEKDAYS: C.List_Cs5, SHORTWEEKDAYS: C.List_fHj, STANDALONESHORTWEEKDAYS: C.List_fHj, NARROWWEEKDAYS: C.List_aJC, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_GfX, AMPMS: C.List_2fJ, DATEFORMATS: C.List_st1, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_XMt}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ZDx = H.setRuntimeTypeInfo(makeConstList(["1er. trim.", "2\xba. trim.", "3er. trim.", "4\xba trim."]), type$.JSArray_dynamic); C.List_Xmb = H.setRuntimeTypeInfo(makeConstList(["1.er trimestre", "2\xba. trimestre", "3.er trimestre", "4o. trimestre"]), type$.JSArray_dynamic); C.List_qq1 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); C.Map_5t2jN = new H.ConstantStringMap(25, {NAME: "es_MX", ERAS: C.List_AiM, ERANAMES: C.List_YZj, NARROWMONTHS: C.List_Etd, STANDALONENARROWMONTHS: C.List_Etd, MONTHS: C.List_8Cn, STANDALONEMONTHS: C.List_8Cn, SHORTMONTHS: C.List_XGb, STANDALONESHORTMONTHS: C.List_XGb, WEEKDAYS: C.List_Cs5, STANDALONEWEEKDAYS: C.List_Cs5, SHORTWEEKDAYS: C.List_fHj, STANDALONESHORTWEEKDAYS: C.List_fHj, NARROWWEEKDAYS: C.List_ROW, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_ZDx, QUARTERS: C.List_Xmb, AMPMS: C.List_kWM, DATEFORMATS: C.List_qq1, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_XMt}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_WJ7 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d MMM y", "d/M/y"]), type$.JSArray_dynamic); C.Map_5tzHO = new H.ConstantStringMap(25, {NAME: "es_US", ERAS: C.List_AiM, ERANAMES: C.List_YZj, NARROWMONTHS: C.List_Etd, STANDALONENARROWMONTHS: C.List_Etd, MONTHS: C.List_8Cn, STANDALONEMONTHS: C.List_8Cn, SHORTMONTHS: C.List_XGb, STANDALONESHORTMONTHS: C.List_XGb, WEEKDAYS: C.List_Cs5, STANDALONEWEEKDAYS: C.List_Cs5, SHORTWEEKDAYS: C.List_fHj, STANDALONESHORTWEEKDAYS: C.List_fHj, NARROWWEEKDAYS: C.List_ROW, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_2Vk3, AMPMS: C.List_kWM, DATEFORMATS: C.List_WJ7, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_XMt}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_eKr_pKr = H.setRuntimeTypeInfo(makeConstList(["eKr", "pKr"]), type$.JSArray_dynamic); C.List_Qq8 = H.setRuntimeTypeInfo(makeConstList(["enne Kristust", "p\xe4rast Kristust"]), type$.JSArray_dynamic); C.List_xEc = H.setRuntimeTypeInfo(makeConstList(["J", "V", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_FQu = H.setRuntimeTypeInfo(makeConstList(["jaanuar", "veebruar", "m\xe4rts", "aprill", "mai", "juuni", "juuli", "august", "september", "oktoober", "november", "detsember"]), type$.JSArray_dynamic); C.List_Rss = H.setRuntimeTypeInfo(makeConstList(["jaan", "veebr", "m\xe4rts", "apr", "mai", "juuni", "juuli", "aug", "sept", "okt", "nov", "dets"]), type$.JSArray_dynamic); C.List_C3o = H.setRuntimeTypeInfo(makeConstList(["p\xfchap\xe4ev", "esmasp\xe4ev", "teisip\xe4ev", "kolmap\xe4ev", "neljap\xe4ev", "reede", "laup\xe4ev"]), type$.JSArray_dynamic); C.List_Avr = H.setRuntimeTypeInfo(makeConstList(["P", "E", "T", "K", "N", "R", "L"]), type$.JSArray_dynamic); C.List_GSJ = H.setRuntimeTypeInfo(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5t81A = new H.ConstantStringMap(25, {NAME: "et", ERAS: C.List_eKr_pKr, ERANAMES: C.List_Qq8, NARROWMONTHS: C.List_xEc, STANDALONENARROWMONTHS: C.List_xEc, MONTHS: C.List_FQu, STANDALONEMONTHS: C.List_FQu, SHORTMONTHS: C.List_Rss, STANDALONESHORTMONTHS: C.List_Rss, WEEKDAYS: C.List_C3o, STANDALONEWEEKDAYS: C.List_C3o, SHORTWEEKDAYS: C.List_Avr, STANDALONESHORTWEEKDAYS: C.List_Avr, NARROWWEEKDAYS: C.List_Avr, STANDALONENARROWWEEKDAYS: C.List_Avr, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_wg3, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_GSJ, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_6O2 = H.setRuntimeTypeInfo(makeConstList(["K.a.", "K.o."]), type$.JSArray_dynamic); C.List_TW6 = H.setRuntimeTypeInfo(makeConstList(["K.a.", "Kristo ondoren"]), type$.JSArray_dynamic); C.List_Jgv = H.setRuntimeTypeInfo(makeConstList(["U", "O", "M", "A", "M", "E", "U", "A", "I", "U", "A", "A"]), type$.JSArray_dynamic); C.List_Vab = H.setRuntimeTypeInfo(makeConstList(["urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina", "uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua"]), type$.JSArray_dynamic); C.List_P1S = H.setRuntimeTypeInfo(makeConstList(["urt.", "ots.", "mar.", "api.", "mai.", "eka.", "uzt.", "abu.", "ira.", "urr.", "aza.", "abe."]), type$.JSArray_dynamic); C.List_kfn = H.setRuntimeTypeInfo(makeConstList(["igandea", "astelehena", "asteartea", "asteazkena", "osteguna", "ostirala", "larunbata"]), type$.JSArray_dynamic); C.List_08 = H.setRuntimeTypeInfo(makeConstList(["ig.", "al.", "ar.", "az.", "og.", "or.", "lr."]), type$.JSArray_dynamic); C.List_KYO = H.setRuntimeTypeInfo(makeConstList(["I", "A", "A", "A", "O", "O", "L"]), type$.JSArray_dynamic); C.List_5cf = H.setRuntimeTypeInfo(makeConstList(["1Hh", "2Hh", "3Hh", "4Hh"]), type$.JSArray_dynamic); C.List_x4k = H.setRuntimeTypeInfo(makeConstList(["1. hiruhilekoa", "2. hiruhilekoa", "3. hiruhilekoa", "4. hiruhilekoa"]), type$.JSArray_dynamic); C.List_Wzv = H.setRuntimeTypeInfo(makeConstList(["y('e')'ko' MMMM'ren' d('a'), EEEE", "y('e')'ko' MMMM'ren' d('a')", "y('e')'ko' MMM d('a')", "yy/M/d"]), type$.JSArray_dynamic); C.List_unc = H.setRuntimeTypeInfo(makeConstList(["HH:mm:ss (zzzz)", "HH:mm:ss (z)", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.Map_5tuAF = new H.ConstantStringMap(25, {NAME: "eu", ERAS: C.List_6O2, ERANAMES: C.List_TW6, NARROWMONTHS: C.List_Jgv, STANDALONENARROWMONTHS: C.List_Jgv, MONTHS: C.List_Vab, STANDALONEMONTHS: C.List_Vab, SHORTMONTHS: C.List_P1S, STANDALONESHORTMONTHS: C.List_P1S, WEEKDAYS: C.List_kfn, STANDALONEWEEKDAYS: C.List_kfn, SHORTWEEKDAYS: C.List_08, STANDALONESHORTWEEKDAYS: C.List_08, NARROWWEEKDAYS: C.List_KYO, STANDALONENARROWWEEKDAYS: C.List_KYO, SHORTQUARTERS: C.List_5cf, QUARTERS: C.List_x4k, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_Wzv, TIMEFORMATS: C.List_unc, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_8xd = H.setRuntimeTypeInfo(makeConstList(["\u0642.\u0645.", "\u0645."]), type$.JSArray_dynamic); C.List_Jik = H.setRuntimeTypeInfo(makeConstList(["\u0642\u0628\u0644 \u0627\u0632 \u0645\u06cc\u0644\u0627\u062f", "\u0645\u06cc\u0644\u0627\u062f\u06cc"]), type$.JSArray_dynamic); C.List_gkc3 = H.setRuntimeTypeInfo(makeConstList(["\u0698", "\u0641", "\u0645", "\u0622", "\u0645", "\u0698", "\u0698", "\u0627", "\u0633", "\u0627", "\u0646", "\u062f"]), type$.JSArray_dynamic); C.List_qRH = H.setRuntimeTypeInfo(makeConstList(["\u0698\u0627\u0646\u0648\u06cc\u0647\u0654", "\u0641\u0648\u0631\u06cc\u0647\u0654", "\u0645\u0627\u0631\u0633", "\u0622\u0648\u0631\u06cc\u0644", "\u0645\u0647\u0654", "\u0698\u0648\u0626\u0646", "\u0698\u0648\u0626\u06cc\u0647\u0654", "\u0627\u0648\u062a", "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0628\u0631", "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_dtr = H.setRuntimeTypeInfo(makeConstList(["\u0698\u0627\u0646\u0648\u06cc\u0647", "\u0641\u0648\u0631\u06cc\u0647", "\u0645\u0627\u0631\u0633", "\u0622\u0648\u0631\u06cc\u0644", "\u0645\u0647", "\u0698\u0648\u0626\u0646", "\u0698\u0648\u0626\u06cc\u0647", "\u0627\u0648\u062a", "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0628\u0631", "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_wEo2 = H.setRuntimeTypeInfo(makeConstList(["\u06cc\u06a9\u0634\u0646\u0628\u0647", "\u062f\u0648\u0634\u0646\u0628\u0647", "\u0633\u0647\u200c\u0634\u0646\u0628\u0647", "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647", "\u067e\u0646\u062c\u0634\u0646\u0628\u0647", "\u062c\u0645\u0639\u0647", "\u0634\u0646\u0628\u0647"]), type$.JSArray_dynamic); C.List_heL = H.setRuntimeTypeInfo(makeConstList(["\u06cc", "\u062f", "\u0633", "\u0686", "\u067e", "\u062c", "\u0634"]), type$.JSArray_dynamic); C.List_P92 = H.setRuntimeTypeInfo(makeConstList(["\u0633\u200c\u0645\u06f1", "\u0633\u200c\u0645\u06f2", "\u0633\u200c\u0645\u06f3", "\u0633\u200c\u0645\u06f4"]), type$.JSArray_dynamic); C.List_mnR = H.setRuntimeTypeInfo(makeConstList(["\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0627\u0648\u0644", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u062f\u0648\u0645", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0633\u0648\u0645", "\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0686\u0647\u0627\u0631\u0645"]), type$.JSArray_dynamic); C.List_bpf = H.setRuntimeTypeInfo(makeConstList(["\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631", "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"]), type$.JSArray_dynamic); C.List_gkc4 = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "y/M/d"]), type$.JSArray_dynamic); C.List_GxC = H.setRuntimeTypeInfo(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss (z)", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); C.List_4_4 = H.setRuntimeTypeInfo(makeConstList([4, 4]), type$.JSArray_dynamic); C.List_aIZ = H.setRuntimeTypeInfo(makeConstList(["{1}\u060c \u0633\u0627\u0639\u062a {0}", "{1}\u060c \u0633\u0627\u0639\u062a {0}", "{1}\u060c\u200f {0}", "{1}\u060c\u200f {0}"]), type$.JSArray_dynamic); C.Map_bH8aB = new H.ConstantStringMap(26, {NAME: "fa", ERAS: C.List_8xd, ERANAMES: C.List_Jik, NARROWMONTHS: C.List_gkc3, STANDALONENARROWMONTHS: C.List_gkc3, MONTHS: C.List_qRH, STANDALONEMONTHS: C.List_dtr, SHORTMONTHS: C.List_qRH, STANDALONESHORTMONTHS: C.List_dtr, WEEKDAYS: C.List_wEo2, STANDALONEWEEKDAYS: C.List_wEo2, SHORTWEEKDAYS: C.List_wEo2, STANDALONESHORTWEEKDAYS: C.List_wEo2, NARROWWEEKDAYS: C.List_heL, STANDALONENARROWWEEKDAYS: C.List_heL, SHORTQUARTERS: C.List_P92, QUARTERS: C.List_mnR, AMPMS: C.List_bpf, DATEFORMATS: C.List_gkc4, TIMEFORMATS: C.List_GxC, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: C.List_4_4, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: C.List_aIZ, ZERODIGIT: "\u06f0"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_YbV = H.setRuntimeTypeInfo(makeConstList(["eKr.", "jKr."]), type$.JSArray_dynamic); C.List_unc0 = H.setRuntimeTypeInfo(makeConstList(["ennen Kristuksen syntym\xe4\xe4", "j\xe4lkeen Kristuksen syntym\xe4n"]), type$.JSArray_dynamic); C.List_4CA = H.setRuntimeTypeInfo(makeConstList(["T", "H", "M", "H", "T", "K", "H", "E", "S", "L", "M", "J"]), type$.JSArray_dynamic); C.List_2fz = H.setRuntimeTypeInfo(makeConstList(["tammikuuta", "helmikuuta", "maaliskuuta", "huhtikuuta", "toukokuuta", "kes\xe4kuuta", "hein\xe4kuuta", "elokuuta", "syyskuuta", "lokakuuta", "marraskuuta", "joulukuuta"]), type$.JSArray_dynamic); C.List_33h0 = H.setRuntimeTypeInfo(makeConstList(["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kes\xe4kuu", "hein\xe4kuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"]), type$.JSArray_dynamic); C.List_xw8 = H.setRuntimeTypeInfo(makeConstList(["tammik.", "helmik.", "maalisk.", "huhtik.", "toukok.", "kes\xe4k.", "hein\xe4k.", "elok.", "syysk.", "lokak.", "marrask.", "jouluk."]), type$.JSArray_dynamic); C.List_u36 = H.setRuntimeTypeInfo(makeConstList(["tammi", "helmi", "maalis", "huhti", "touko", "kes\xe4", "hein\xe4", "elo", "syys", "loka", "marras", "joulu"]), type$.JSArray_dynamic); C.List_YeU = H.setRuntimeTypeInfo(makeConstList(["sunnuntaina", "maanantaina", "tiistaina", "keskiviikkona", "torstaina", "perjantaina", "lauantaina"]), type$.JSArray_dynamic); C.List_k71 = H.setRuntimeTypeInfo(makeConstList(["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"]), type$.JSArray_dynamic); C.List_sYy = H.setRuntimeTypeInfo(makeConstList(["su", "ma", "ti", "ke", "to", "pe", "la"]), type$.JSArray_dynamic); C.List_my0 = H.setRuntimeTypeInfo(makeConstList(["S", "M", "T", "K", "T", "P", "L"]), type$.JSArray_dynamic); C.List_UEQ0 = H.setRuntimeTypeInfo(makeConstList(["1. nelj.", "2. nelj.", "3. nelj.", "4. nelj."]), type$.JSArray_dynamic); C.List_LB9 = H.setRuntimeTypeInfo(makeConstList(["1. nelj\xe4nnes", "2. nelj\xe4nnes", "3. nelj\xe4nnes", "4. nelj\xe4nnes"]), type$.JSArray_dynamic); C.List_ifL = H.setRuntimeTypeInfo(makeConstList(["ap.", "ip."]), type$.JSArray_dynamic); C.List_6pZ = H.setRuntimeTypeInfo(makeConstList(["cccc d. MMMM y", "d. MMMM y", "d.M.y", "d.M.y"]), type$.JSArray_dynamic); C.List_2jN = H.setRuntimeTypeInfo(makeConstList(["H.mm.ss zzzz", "H.mm.ss z", "H.mm.ss", "H.mm"]), type$.JSArray_dynamic); C.List_oyn = H.setRuntimeTypeInfo(makeConstList(["{1} 'klo' {0}", "{1} 'klo' {0}", "{1} 'klo' {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tMIV = new H.ConstantStringMap(25, {NAME: "fi", ERAS: C.List_YbV, ERANAMES: C.List_unc0, NARROWMONTHS: C.List_4CA, STANDALONENARROWMONTHS: C.List_4CA, MONTHS: C.List_2fz, STANDALONEMONTHS: C.List_33h0, SHORTMONTHS: C.List_xw8, STANDALONESHORTMONTHS: C.List_u36, WEEKDAYS: C.List_YeU, STANDALONEWEEKDAYS: C.List_k71, SHORTWEEKDAYS: C.List_sYy, STANDALONESHORTWEEKDAYS: C.List_sYy, NARROWWEEKDAYS: C.List_my0, STANDALONENARROWWEEKDAYS: C.List_my0, SHORTQUARTERS: C.List_UEQ0, QUARTERS: C.List_LB9, AMPMS: C.List_ifL, DATEFORMATS: C.List_6pZ, TIMEFORMATS: C.List_2jN, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_oyn}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Duo = H.setRuntimeTypeInfo(makeConstList(["Ene", "Peb", "Mar", "Abr", "May", "Hun", "Hul", "Ago", "Set", "Okt", "Nob", "Dis"]), type$.JSArray_dynamic); C.List_I1L = H.setRuntimeTypeInfo(makeConstList(["E", "P", "M", "A", "M", "Hun", "Hul", "Ago", "Set", "Okt", "Nob", "Dis"]), type$.JSArray_dynamic); C.List_hSa = H.setRuntimeTypeInfo(makeConstList(["Enero", "Pebrero", "Marso", "Abril", "Mayo", "Hunyo", "Hulyo", "Agosto", "Setyembre", "Oktubre", "Nobyembre", "Disyembre"]), type$.JSArray_dynamic); C.List_xw80 = H.setRuntimeTypeInfo(makeConstList(["Linggo", "Lunes", "Martes", "Miyerkules", "Huwebes", "Biyernes", "Sabado"]), type$.JSArray_dynamic); C.List_sdO = H.setRuntimeTypeInfo(makeConstList(["Lin", "Lun", "Mar", "Miy", "Huw", "Biy", "Sab"]), type$.JSArray_dynamic); C.List_ciW = H.setRuntimeTypeInfo(makeConstList(["ika-1 quarter", "ika-2 quarter", "ika-3 quarter", "ika-4 na quarter"]), type$.JSArray_dynamic); C.List_QkZ = H.setRuntimeTypeInfo(makeConstList(["{1} 'nang' {0}", "{1} 'nang' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tGfX = new H.ConstantStringMap(25, {NAME: "fil", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_Duo, STANDALONENARROWMONTHS: C.List_I1L, MONTHS: C.List_hSa, STANDALONEMONTHS: C.List_hSa, SHORTMONTHS: C.List_Duo, STANDALONESHORTMONTHS: C.List_Duo, WEEKDAYS: C.List_xw80, STANDALONEWEEKDAYS: C.List_xw80, SHORTWEEKDAYS: C.List_sdO, STANDALONESHORTWEEKDAYS: C.List_sdO, NARROWWEEKDAYS: C.List_sdO, STANDALONENARROWWEEKDAYS: C.List_sdO, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_ciW, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_QkZ}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_adS = H.setRuntimeTypeInfo(makeConstList(["av. J.-C.", "ap. J.-C."]), type$.JSArray_dynamic); C.List_irQ = H.setRuntimeTypeInfo(makeConstList(["avant J\xe9sus-Christ", "apr\xe8s J\xe9sus-Christ"]), type$.JSArray_dynamic); C.List_3wE = H.setRuntimeTypeInfo(makeConstList(["janvier", "f\xe9vrier", "mars", "avril", "mai", "juin", "juillet", "ao\xfbt", "septembre", "octobre", "novembre", "d\xe9cembre"]), type$.JSArray_dynamic); C.List_OtD = H.setRuntimeTypeInfo(makeConstList(["janv.", "f\xe9vr.", "mars", "avr.", "mai", "juin", "juil.", "ao\xfbt", "sept.", "oct.", "nov.", "d\xe9c."]), type$.JSArray_dynamic); C.List_21f = H.setRuntimeTypeInfo(makeConstList(["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]), type$.JSArray_dynamic); C.List_v3K = H.setRuntimeTypeInfo(makeConstList(["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."]), type$.JSArray_dynamic); C.List_GQ8 = H.setRuntimeTypeInfo(makeConstList(["1er trimestre", "2e trimestre", "3e trimestre", "4e trimestre"]), type$.JSArray_dynamic); C.List_b9U = H.setRuntimeTypeInfo(makeConstList(["{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tmF3 = new H.ConstantStringMap(25, {NAME: "fr", ERAS: C.List_adS, ERANAMES: C.List_irQ, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_3wE, STANDALONEMONTHS: C.List_3wE, SHORTMONTHS: C.List_OtD, STANDALONESHORTMONTHS: C.List_OtD, WEEKDAYS: C.List_21f, STANDALONEWEEKDAYS: C.List_21f, SHORTWEEKDAYS: C.List_v3K, STANDALONESHORTWEEKDAYS: C.List_v3K, NARROWWEEKDAYS: C.List_ROW, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_GQ8, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_IF2, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_b9U}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EuK = H.setRuntimeTypeInfo(makeConstList(["janv.", "f\xe9vr.", "mars", "avr.", "mai", "juin", "juill.", "ao\xfbt", "sept.", "oct.", "nov.", "d\xe9c."]), type$.JSArray_dynamic); C.List_qJx = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "yy-MM-dd"]), type$.JSArray_dynamic); C.List_w88 = H.setRuntimeTypeInfo(makeConstList(["HH 'h' mm 'min' ss 's' zzzz", "HH 'h' mm 'min' ss 's' z", "HH 'h' mm 'min' ss 's'", "HH 'h' mm"]), type$.JSArray_dynamic); C.List_CDT0 = H.setRuntimeTypeInfo(makeConstList(["{1} '\xe0' {0}", "{1} '\xe0' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tStJ = new H.ConstantStringMap(25, {NAME: "fr_CA", ERAS: C.List_adS, ERANAMES: C.List_irQ, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_3wE, STANDALONEMONTHS: C.List_3wE, SHORTMONTHS: C.List_EuK, STANDALONESHORTMONTHS: C.List_EuK, WEEKDAYS: C.List_21f, STANDALONEWEEKDAYS: C.List_21f, SHORTWEEKDAYS: C.List_v3K, STANDALONESHORTWEEKDAYS: C.List_v3K, NARROWWEEKDAYS: C.List_ROW, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_GQ8, AMPMS: C.List_2fJ, DATEFORMATS: C.List_qJx, TIMEFORMATS: C.List_w88, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_CDT0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_2No2 = H.setRuntimeTypeInfo(makeConstList(["a.C.", "d.C."]), type$.JSArray_dynamic); C.List_BKg = H.setRuntimeTypeInfo(makeConstList(["antes de Cristo", "despois de Cristo"]), type$.JSArray_dynamic); C.List_Tqn = H.setRuntimeTypeInfo(makeConstList(["x.", "f.", "m.", "a.", "m.", "x.", "x.", "a.", "s.", "o.", "n.", "d."]), type$.JSArray_dynamic); C.List_a5W0 = H.setRuntimeTypeInfo(makeConstList(["X", "F", "M", "A", "M", "X", "X", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_GRA = H.setRuntimeTypeInfo(makeConstList(["xaneiro", "febreiro", "marzo", "abril", "maio", "xu\xf1o", "xullo", "agosto", "setembro", "outubro", "novembro", "decembro"]), type$.JSArray_dynamic); C.List_56S = H.setRuntimeTypeInfo(makeConstList(["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xu\xf1o", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"]), type$.JSArray_dynamic); C.List_MX8 = H.setRuntimeTypeInfo(makeConstList(["xan.", "feb.", "mar.", "abr.", "maio", "xu\xf1o", "xul.", "ago.", "set.", "out.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_blc0 = H.setRuntimeTypeInfo(makeConstList(["Xan.", "Feb.", "Mar.", "Abr.", "Maio", "Xu\xf1o", "Xul.", "Ago.", "Set.", "Out.", "Nov.", "Dec."]), type$.JSArray_dynamic); C.List_6TA = H.setRuntimeTypeInfo(makeConstList(["domingo", "luns", "martes", "m\xe9rcores", "xoves", "venres", "s\xe1bado"]), type$.JSArray_dynamic); C.List_FKj = H.setRuntimeTypeInfo(makeConstList(["Domingo", "Luns", "Martes", "M\xe9rcores", "Xoves", "Venres", "S\xe1bado"]), type$.JSArray_dynamic); C.List_Pxa = H.setRuntimeTypeInfo(makeConstList(["dom.", "luns", "mar.", "m\xe9r.", "xov.", "ven.", "s\xe1b."]), type$.JSArray_dynamic); C.List_m9N = H.setRuntimeTypeInfo(makeConstList(["Dom.", "Luns", "Mar.", "M\xe9r.", "Xov.", "Ven.", "S\xe1b."]), type$.JSArray_dynamic); C.List_gkc5 = H.setRuntimeTypeInfo(makeConstList(["d.", "l.", "m.", "m.", "x.", "v.", "s."]), type$.JSArray_dynamic); C.List_KYU = H.setRuntimeTypeInfo(makeConstList(["D", "L", "M", "M", "X", "V", "S"]), type$.JSArray_dynamic); C.List_Ao9 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d 'de' MMM 'de' y", "dd/MM/yy"]), type$.JSArray_dynamic); C.List_QGQ = H.setRuntimeTypeInfo(makeConstList(["{0} 'do' {1}", "{0} 'do' {1}", "{0}, {1}", "{0}, {1}"]), type$.JSArray_dynamic); C.Map_5t0iF = new H.ConstantStringMap(25, {NAME: "gl", ERAS: C.List_2No2, ERANAMES: C.List_BKg, NARROWMONTHS: C.List_Tqn, STANDALONENARROWMONTHS: C.List_a5W0, MONTHS: C.List_GRA, STANDALONEMONTHS: C.List_56S, SHORTMONTHS: C.List_MX8, STANDALONESHORTMONTHS: C.List_blc0, WEEKDAYS: C.List_6TA, STANDALONEWEEKDAYS: C.List_FKj, SHORTWEEKDAYS: C.List_Pxa, STANDALONESHORTWEEKDAYS: C.List_m9N, NARROWWEEKDAYS: C.List_gkc5, STANDALONENARROWWEEKDAYS: C.List_KYU, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_GfX, AMPMS: C.List_2fJ, DATEFORMATS: C.List_Ao9, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_QGQ}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_69P = H.setRuntimeTypeInfo(makeConstList(["Januar", "Februar", "M\xe4rz", "April", "Mai", "Juni", "Juli", "Auguscht", "Sept\xe4mber", "Oktoober", "Nov\xe4mber", "Dez\xe4mber"]), type$.JSArray_dynamic); C.List_bxS = H.setRuntimeTypeInfo(makeConstList(["Sunntig", "M\xe4\xe4ntig", "Ziischtig", "Mittwuch", "Dunschtig", "Friitig", "Samschtig"]), type$.JSArray_dynamic); C.List_rGN = H.setRuntimeTypeInfo(makeConstList(["Su.", "M\xe4.", "Zi.", "Mi.", "Du.", "Fr.", "Sa."]), type$.JSArray_dynamic); C.List_gLW = H.setRuntimeTypeInfo(makeConstList(["am Vormittag", "am Namittag"]), type$.JSArray_dynamic); C.Map_5tXzX = new H.ConstantStringMap(25, {NAME: "gsw", ERAS: C.List_znv, ERANAMES: C.List_znv, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_69P, STANDALONEMONTHS: C.List_69P, SHORTMONTHS: C.List_AgZ, STANDALONESHORTMONTHS: C.List_AgZ, WEEKDAYS: C.List_bxS, STANDALONEWEEKDAYS: C.List_bxS, SHORTWEEKDAYS: C.List_rGN, STANDALONESHORTWEEKDAYS: C.List_rGN, NARROWWEEKDAYS: C.List_6v8, STANDALONENARROWWEEKDAYS: C.List_6v8, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_2No1, AMPMS: C.List_gLW, DATEFORMATS: C.List_mGN, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_fXI = H.setRuntimeTypeInfo(makeConstList(["\u0a88.\u0ab8.\u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7", "\u0a88.\u0ab8."]), type$.JSArray_dynamic); C.List_knt = H.setRuntimeTypeInfo(makeConstList(["\u0a88\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8 \u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7", "\u0a87\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8"]), type$.JSArray_dynamic); C.List_JUC = H.setRuntimeTypeInfo(makeConstList(["\u0a9c\u0abe", "\u0aab\u0ac7", "\u0aae\u0abe", "\u0a8f", "\u0aae\u0ac7", "\u0a9c\u0ac2", "\u0a9c\u0ac1", "\u0a91", "\u0ab8", "\u0a91", "\u0aa8", "\u0aa1\u0abf"]), type$.JSArray_dynamic); C.List_Tbc = H.setRuntimeTypeInfo(makeConstList(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0", "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0", "\u0aae\u0abe\u0ab0\u0acd\u0a9a", "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", "\u0aae\u0ac7", "\u0a9c\u0ac2\u0aa8", "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", "\u0a91\u0a97\u0ab8\u0acd\u0a9f", "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0", "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0", "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0", "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"]), type$.JSArray_dynamic); C.List_ZqO = H.setRuntimeTypeInfo(makeConstList(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1", "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1", "\u0aae\u0abe\u0ab0\u0acd\u0a9a", "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", "\u0aae\u0ac7", "\u0a9c\u0ac2\u0aa8", "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", "\u0a91\u0a97\u0ab8\u0acd\u0a9f", "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7", "\u0a91\u0a95\u0acd\u0a9f\u0acb", "\u0aa8\u0ab5\u0ac7", "\u0aa1\u0abf\u0ab8\u0ac7"]), type$.JSArray_dynamic); C.List_sBb = H.setRuntimeTypeInfo(makeConstList(["\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0", "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0", "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0", "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0", "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0", "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0", "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"]), type$.JSArray_dynamic); C.List_YVI0 = H.setRuntimeTypeInfo(makeConstList(["\u0ab0\u0ab5\u0abf", "\u0ab8\u0acb\u0aae", "\u0aae\u0a82\u0a97\u0ab3", "\u0aac\u0ac1\u0aa7", "\u0a97\u0ac1\u0ab0\u0ac1", "\u0ab6\u0ac1\u0a95\u0acd\u0ab0", "\u0ab6\u0aa8\u0abf"]), type$.JSArray_dynamic); C.List_Y62 = H.setRuntimeTypeInfo(makeConstList(["\u0ab0", "\u0ab8\u0acb", "\u0aae\u0a82", "\u0aac\u0ac1", "\u0a97\u0ac1", "\u0ab6\u0ac1", "\u0ab6"]), type$.JSArray_dynamic); C.List_BDv = H.setRuntimeTypeInfo(makeConstList(["1\u0ab2\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "2\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "3\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8", "4\u0aa5\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8"]), type$.JSArray_dynamic); C.List_TWS = H.setRuntimeTypeInfo(makeConstList(["hh:mm:ss a zzzz", "hh:mm:ss a z", "hh:mm:ss a", "hh:mm a"]), type$.JSArray_dynamic); C.List_23h0 = H.setRuntimeTypeInfo(makeConstList(["{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7", "{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tyXb = new H.ConstantStringMap(25, {NAME: "gu", ERAS: C.List_fXI, ERANAMES: C.List_knt, NARROWMONTHS: C.List_JUC, STANDALONENARROWMONTHS: C.List_JUC, MONTHS: C.List_Tbc, STANDALONEMONTHS: C.List_Tbc, SHORTMONTHS: C.List_ZqO, STANDALONESHORTMONTHS: C.List_ZqO, WEEKDAYS: C.List_sBb, STANDALONEWEEKDAYS: C.List_sBb, SHORTWEEKDAYS: C.List_YVI0, STANDALONESHORTWEEKDAYS: C.List_YVI0, NARROWWEEKDAYS: C.List_Y62, STANDALONENARROWWEEKDAYS: C.List_Y62, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_BDv, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_oYk, TIMEFORMATS: C.List_TWS, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_23h0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_10r = H.setRuntimeTypeInfo(makeConstList(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e1", "\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]), type$.JSArray_dynamic); C.List_yzJ0 = H.setRuntimeTypeInfo(makeConstList(["\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e1\u05e4\u05d9\u05e8\u05d4", "\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]), type$.JSArray_dynamic); C.List_3Re = H.setRuntimeTypeInfo(makeConstList(["\u05d9\u05e0\u05d5\u05d0\u05e8", "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8", "\u05de\u05e8\u05e5", "\u05d0\u05e4\u05e8\u05d9\u05dc", "\u05de\u05d0\u05d9", "\u05d9\u05d5\u05e0\u05d9", "\u05d9\u05d5\u05dc\u05d9", "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", "\u05d3\u05e6\u05de\u05d1\u05e8"]), type$.JSArray_dynamic); C.List_2Rm = H.setRuntimeTypeInfo(makeConstList(["\u05d9\u05e0\u05d5\u05f3", "\u05e4\u05d1\u05e8\u05f3", "\u05de\u05e8\u05e5", "\u05d0\u05e4\u05e8\u05f3", "\u05de\u05d0\u05d9", "\u05d9\u05d5\u05e0\u05d9", "\u05d9\u05d5\u05dc\u05d9", "\u05d0\u05d5\u05d2\u05f3", "\u05e1\u05e4\u05d8\u05f3", "\u05d0\u05d5\u05e7\u05f3", "\u05e0\u05d5\u05d1\u05f3", "\u05d3\u05e6\u05de\u05f3"]), type$.JSArray_dynamic); C.List_2nm0 = H.setRuntimeTypeInfo(makeConstList(["\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df", "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9", "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9", "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"]), type$.JSArray_dynamic); C.List_4Ep = H.setRuntimeTypeInfo(makeConstList(["\u05d9\u05d5\u05dd \u05d0\u05f3", "\u05d9\u05d5\u05dd \u05d1\u05f3", "\u05d9\u05d5\u05dd \u05d2\u05f3", "\u05d9\u05d5\u05dd \u05d3\u05f3", "\u05d9\u05d5\u05dd \u05d4\u05f3", "\u05d9\u05d5\u05dd \u05d5\u05f3", "\u05e9\u05d1\u05ea"]), type$.JSArray_dynamic); C.List_IIV = H.setRuntimeTypeInfo(makeConstList(["\u05d0\u05f3", "\u05d1\u05f3", "\u05d2\u05f3", "\u05d3\u05f3", "\u05d4\u05f3", "\u05d5\u05f3", "\u05e9\u05f3"]), type$.JSArray_dynamic); C.List_497 = H.setRuntimeTypeInfo(makeConstList(["\u05e8\u05d1\u05e2\u05d5\u05df 1", "\u05e8\u05d1\u05e2\u05d5\u05df 2", "\u05e8\u05d1\u05e2\u05d5\u05df 3", "\u05e8\u05d1\u05e2\u05d5\u05df 4"]), type$.JSArray_dynamic); C.List_uAX = H.setRuntimeTypeInfo(makeConstList(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6", "\u05d0\u05d7\u05d4\u05f4\u05e6"]), type$.JSArray_dynamic); C.List_gGk = H.setRuntimeTypeInfo(makeConstList(["EEEE, d \u05d1MMMM y", "d \u05d1MMMM y", "d \u05d1MMM y", "d.M.y"]), type$.JSArray_dynamic); C.List_cdS = H.setRuntimeTypeInfo(makeConstList(["{1} \u05d1\u05e9\u05e2\u05d4 {0}", "{1} \u05d1\u05e9\u05e2\u05d4 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5t1NX = new H.ConstantStringMap(25, {NAME: "he", ERAS: C.List_10r, ERANAMES: C.List_yzJ0, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_3Re, STANDALONEMONTHS: C.List_3Re, SHORTMONTHS: C.List_2Rm, STANDALONESHORTMONTHS: C.List_2Rm, WEEKDAYS: C.List_2nm0, STANDALONEWEEKDAYS: C.List_2nm0, SHORTWEEKDAYS: C.List_4Ep, STANDALONESHORTWEEKDAYS: C.List_4Ep, NARROWWEEKDAYS: C.List_IIV, STANDALONENARROWWEEKDAYS: C.List_IIV, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_497, AMPMS: C.List_uAX, DATEFORMATS: C.List_gGk, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_4_5, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_cdS}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_MON = H.setRuntimeTypeInfo(makeConstList(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u094d\u0935\u0940"]), type$.JSArray_dynamic); C.List_2uL0 = H.setRuntimeTypeInfo(makeConstList(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u0935\u0940 \u0938\u0928"]), type$.JSArray_dynamic); C.List_ClP = H.setRuntimeTypeInfo(makeConstList(["\u091c", "\u092b\u093c", "\u092e\u093e", "\u0905", "\u092e", "\u091c\u0942", "\u091c\u0941", "\u0905", "\u0938\u093f", "\u0905", "\u0928", "\u0926\u093f"]), type$.JSArray_dynamic); C.List_xY6 = H.setRuntimeTypeInfo(makeConstList(["\u091c\u0928\u0935\u0930\u0940", "\u092b\u093c\u0930\u0935\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u0948\u0932", "\u092e\u0908", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u093e\u0908", "\u0905\u0917\u0938\u094d\u0924", "\u0938\u093f\u0924\u0902\u092c\u0930", "\u0905\u0915\u094d\u0924\u0942\u092c\u0930", "\u0928\u0935\u0902\u092c\u0930", "\u0926\u093f\u0938\u0902\u092c\u0930"]), type$.JSArray_dynamic); C.List_oyU0 = H.setRuntimeTypeInfo(makeConstList(["\u091c\u0928\u0970", "\u092b\u093c\u0930\u0970", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u0948\u0932", "\u092e\u0908", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0970", "\u0905\u0917\u0970", "\u0938\u093f\u0924\u0970", "\u0905\u0915\u094d\u0924\u0942\u0970", "\u0928\u0935\u0970", "\u0926\u093f\u0938\u0970"]), type$.JSArray_dynamic); C.List_ett = H.setRuntimeTypeInfo(makeConstList(["\u0930\u0935\u093f\u0935\u093e\u0930", "\u0938\u094b\u092e\u0935\u093e\u0930", "\u092e\u0902\u0917\u0932\u0935\u093e\u0930", "\u092c\u0941\u0927\u0935\u093e\u0930", "\u0917\u0941\u0930\u0941\u0935\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930", "\u0936\u0928\u093f\u0935\u093e\u0930"]), type$.JSArray_dynamic); C.List_65v = H.setRuntimeTypeInfo(makeConstList(["\u0930\u0935\u093f", "\u0938\u094b\u092e", "\u092e\u0902\u0917\u0932", "\u092c\u0941\u0927", "\u0917\u0941\u0930\u0941", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); C.List_Vfn = H.setRuntimeTypeInfo(makeConstList(["\u0930", "\u0938\u094b", "\u092e\u0902", "\u092c\u0941", "\u0917\u0941", "\u0936\u0941", "\u0936"]), type$.JSArray_dynamic); C.List_npw = H.setRuntimeTypeInfo(makeConstList(["\u0924\u093f1", "\u0924\u093f2", "\u0924\u093f3", "\u0924\u093f4"]), type$.JSArray_dynamic); C.List_Mh7 = H.setRuntimeTypeInfo(makeConstList(["\u092a\u0939\u0932\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u0926\u0942\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u0924\u0940\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940", "\u091a\u094c\u0925\u0940 \u0924\u093f\u092e\u093e\u0939\u0940"]), type$.JSArray_dynamic); C.List_wu8 = H.setRuntimeTypeInfo(makeConstList(["{1} \u0915\u094b {0}", "{1} \u0915\u094b {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5t4AN0 = new H.ConstantStringMap(25, {NAME: "hi", ERAS: C.List_MON, ERANAMES: C.List_2uL0, NARROWMONTHS: C.List_ClP, STANDALONENARROWMONTHS: C.List_ClP, MONTHS: C.List_xY6, STANDALONEMONTHS: C.List_xY6, SHORTMONTHS: C.List_oyU0, STANDALONESHORTMONTHS: C.List_oyU0, WEEKDAYS: C.List_ett, STANDALONEWEEKDAYS: C.List_ett, SHORTWEEKDAYS: C.List_65v, STANDALONESHORTWEEKDAYS: C.List_65v, NARROWWEEKDAYS: C.List_Vfn, STANDALONENARROWWEEKDAYS: C.List_Vfn, SHORTQUARTERS: C.List_npw, QUARTERS: C.List_Mh7, AMPMS: C.List_am_pm, DATEFORMATS: C.List_INh, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_wu8}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_NQV = H.setRuntimeTypeInfo(makeConstList(["pr. Kr.", "po. Kr."]), type$.JSArray_dynamic); C.List_Fb00 = H.setRuntimeTypeInfo(makeConstList(["prije Krista", "poslije Krista"]), type$.JSArray_dynamic); C.List_ePH = H.setRuntimeTypeInfo(makeConstList(["1.", "2.", "3.", "4.", "5.", "6.", "7.", "8.", "9.", "10.", "11.", "12."]), type$.JSArray_dynamic); C.List_6x6 = H.setRuntimeTypeInfo(makeConstList(["sije\u010dnja", "velja\u010de", "o\u017eujka", "travnja", "svibnja", "lipnja", "srpnja", "kolovoza", "rujna", "listopada", "studenoga", "prosinca"]), type$.JSArray_dynamic); C.List_s2f = H.setRuntimeTypeInfo(makeConstList(["sije\u010danj", "velja\u010da", "o\u017eujak", "travanj", "svibanj", "lipanj", "srpanj", "kolovoz", "rujan", "listopad", "studeni", "prosinac"]), type$.JSArray_dynamic); C.List_qt1 = H.setRuntimeTypeInfo(makeConstList(["sij", "velj", "o\u017eu", "tra", "svi", "lip", "srp", "kol", "ruj", "lis", "stu", "pro"]), type$.JSArray_dynamic); C.List_0yI = H.setRuntimeTypeInfo(makeConstList(["1kv", "2kv", "3kv", "4kv"]), type$.JSArray_dynamic); C.List_JO4 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d. MMMM y.", "d. MMMM y.", "d. MMM y.", "dd. MM. y."]), type$.JSArray_dynamic); C.List_fhZ = H.setRuntimeTypeInfo(makeConstList(["HH:mm:ss (zzzz)", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.Map_5t8tP = new H.ConstantStringMap(25, {NAME: "hr", ERAS: C.List_NQV, ERANAMES: C.List_Fb00, NARROWMONTHS: C.List_ePH, STANDALONENARROWMONTHS: C.List_ePH, MONTHS: C.List_6x6, STANDALONEMONTHS: C.List_s2f, SHORTMONTHS: C.List_qt1, STANDALONESHORTMONTHS: C.List_qt1, WEEKDAYS: C.List_S49, STANDALONEWEEKDAYS: C.List_S49, SHORTWEEKDAYS: C.List_8eb, STANDALONESHORTWEEKDAYS: C.List_8eb, NARROWWEEKDAYS: C.List_KHM, STANDALONENARROWWEEKDAYS: C.List_sci, SHORTQUARTERS: C.List_0yI, QUARTERS: C.List_wg3, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_JO4, TIMEFORMATS: C.List_fhZ, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_CDT}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EbH = H.setRuntimeTypeInfo(makeConstList(["i. e.", "i. sz."]), type$.JSArray_dynamic); C.List_y1j = H.setRuntimeTypeInfo(makeConstList(["Krisztus el\u0151tt", "id\u0151sz\xe1m\xedt\xe1sunk szerint"]), type$.JSArray_dynamic); C.List_qva = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "\xc1", "M", "J", "J", "A", "Sz", "O", "N", "D"]), type$.JSArray_dynamic); C.List_q8l = H.setRuntimeTypeInfo(makeConstList(["janu\xe1r", "febru\xe1r", "m\xe1rcius", "\xe1prilis", "m\xe1jus", "j\xfanius", "j\xfalius", "augusztus", "szeptember", "okt\xf3ber", "november", "december"]), type$.JSArray_dynamic); C.List_YY6 = H.setRuntimeTypeInfo(makeConstList(["jan.", "febr.", "m\xe1rc.", "\xe1pr.", "m\xe1j.", "j\xfan.", "j\xfal.", "aug.", "szept.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_qNA0 = H.setRuntimeTypeInfo(makeConstList(["vas\xe1rnap", "h\xe9tf\u0151", "kedd", "szerda", "cs\xfct\xf6rt\xf6k", "p\xe9ntek", "szombat"]), type$.JSArray_dynamic); C.List_q0N = H.setRuntimeTypeInfo(makeConstList(["V", "H", "K", "Sze", "Cs", "P", "Szo"]), type$.JSArray_dynamic); C.List_6pP = H.setRuntimeTypeInfo(makeConstList(["V", "H", "K", "Sz", "Cs", "P", "Sz"]), type$.JSArray_dynamic); C.List_6pp = H.setRuntimeTypeInfo(makeConstList(["I. n.\xe9v", "II. n.\xe9v", "III. n.\xe9v", "IV. n.\xe9v"]), type$.JSArray_dynamic); C.List_BSc = H.setRuntimeTypeInfo(makeConstList(["I. negyed\xe9v", "II. negyed\xe9v", "III. negyed\xe9v", "IV. negyed\xe9v"]), type$.JSArray_dynamic); C.List_3BG = H.setRuntimeTypeInfo(makeConstList(["de.", "du."]), type$.JSArray_dynamic); C.List_HtW = H.setRuntimeTypeInfo(makeConstList(["y. MMMM d., EEEE", "y. MMMM d.", "y. MMM d.", "y. MM. dd."]), type$.JSArray_dynamic); C.Map_5toEG = new H.ConstantStringMap(25, {NAME: "hu", ERAS: C.List_EbH, ERANAMES: C.List_y1j, NARROWMONTHS: C.List_qva, STANDALONENARROWMONTHS: C.List_qva, MONTHS: C.List_q8l, STANDALONEMONTHS: C.List_q8l, SHORTMONTHS: C.List_YY6, STANDALONESHORTMONTHS: C.List_YY6, WEEKDAYS: C.List_qNA0, STANDALONEWEEKDAYS: C.List_qNA0, SHORTWEEKDAYS: C.List_q0N, STANDALONESHORTWEEKDAYS: C.List_q0N, NARROWWEEKDAYS: C.List_6pP, STANDALONENARROWWEEKDAYS: C.List_6pP, SHORTQUARTERS: C.List_6pp, QUARTERS: C.List_BSc, AMPMS: C.List_3BG, DATEFORMATS: C.List_HtW, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_aRc = H.setRuntimeTypeInfo(makeConstList(["\u0574.\u0569.\u0561.", "\u0574.\u0569."]), type$.JSArray_dynamic); C.List_qpm1 = H.setRuntimeTypeInfo(makeConstList(["\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0561\u057c\u0561\u057b", "\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0570\u0565\u057f\u0578"]), type$.JSArray_dynamic); C.List_n7k1 = H.setRuntimeTypeInfo(makeConstList(["\u0540", "\u0553", "\u0544", "\u0531", "\u0544", "\u0540", "\u0540", "\u0555", "\u054d", "\u0540", "\u0546", "\u0534"]), type$.JSArray_dynamic); C.List_kmg = H.setRuntimeTypeInfo(makeConstList(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b", "\u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b", "\u0574\u0561\u0580\u057f\u056b", "\u0561\u057a\u0580\u056b\u056c\u056b", "\u0574\u0561\u0575\u056b\u057d\u056b", "\u0570\u0578\u0582\u0576\u056b\u057d\u056b", "\u0570\u0578\u0582\u056c\u056b\u057d\u056b", "\u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b", "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b", "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b", "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b", "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b"]), type$.JSArray_dynamic); C.List_Kf0 = H.setRuntimeTypeInfo(makeConstList(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580", "\u0583\u0565\u057f\u0580\u057e\u0561\u0580", "\u0574\u0561\u0580\u057f", "\u0561\u057a\u0580\u056b\u056c", "\u0574\u0561\u0575\u056b\u057d", "\u0570\u0578\u0582\u0576\u056b\u057d", "\u0570\u0578\u0582\u056c\u056b\u057d", "\u0585\u0563\u0578\u057d\u057f\u0578\u057d", "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580", "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580", "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580", "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580"]), type$.JSArray_dynamic); C.List_Wax = H.setRuntimeTypeInfo(makeConstList(["\u0570\u0576\u057e", "\u0583\u057f\u057e", "\u0574\u0580\u057f", "\u0561\u057a\u0580", "\u0574\u0575\u057d", "\u0570\u0576\u057d", "\u0570\u056c\u057d", "\u0585\u0563\u057d", "\u057d\u0565\u057a", "\u0570\u0578\u056f", "\u0576\u0578\u0575", "\u0564\u0565\u056f"]), type$.JSArray_dynamic); C.List_QgR = H.setRuntimeTypeInfo(makeConstList(["\u056f\u056b\u0580\u0561\u056f\u056b", "\u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b", "\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b", "\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b", "\u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b", "\u0578\u0582\u0580\u0562\u0561\u0569", "\u0577\u0561\u0562\u0561\u0569"]), type$.JSArray_dynamic); C.List_Uvc = H.setRuntimeTypeInfo(makeConstList(["\u056f\u056b\u0580", "\u0565\u0580\u056f", "\u0565\u0580\u0584", "\u0579\u0580\u0584", "\u0570\u0576\u0563", "\u0578\u0582\u0580", "\u0577\u0562\u0569"]), type$.JSArray_dynamic); C.List_JAv = H.setRuntimeTypeInfo(makeConstList(["\u053f", "\u0535", "\u0535", "\u0549", "\u0540", "\u0548", "\u0547"]), type$.JSArray_dynamic); C.List_M2I0 = H.setRuntimeTypeInfo(makeConstList(["1-\u056b\u0576 \u0565\u057c\u0574\u057d.", "2-\u0580\u0564 \u0565\u057c\u0574\u057d.", "3-\u0580\u0564 \u0565\u057c\u0574\u057d.", "4-\u0580\u0564 \u0565\u057c\u0574\u057d."]), type$.JSArray_dynamic); C.List_wIv = H.setRuntimeTypeInfo(makeConstList(["1-\u056b\u0576 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "2-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "3-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f", "4-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f"]), type$.JSArray_dynamic); C.List_rBh = H.setRuntimeTypeInfo(makeConstList(["y \u0569. MMMM d, EEEE", "dd MMMM, y \u0569.", "dd MMM, y \u0569.", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5tKeb = new H.ConstantStringMap(25, {NAME: "hy", ERAS: C.List_aRc, ERANAMES: C.List_qpm1, NARROWMONTHS: C.List_n7k1, STANDALONENARROWMONTHS: C.List_n7k1, MONTHS: C.List_kmg, STANDALONEMONTHS: C.List_Kf0, SHORTMONTHS: C.List_Wax, STANDALONESHORTMONTHS: C.List_Wax, WEEKDAYS: C.List_QgR, STANDALONEWEEKDAYS: C.List_QgR, SHORTWEEKDAYS: C.List_Uvc, STANDALONESHORTWEEKDAYS: C.List_Uvc, NARROWWEEKDAYS: C.List_JAv, STANDALONENARROWWEEKDAYS: C.List_JAv, SHORTQUARTERS: C.List_M2I0, QUARTERS: C.List_wIv, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_rBh, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_SM_M = H.setRuntimeTypeInfo(makeConstList(["SM", "M"]), type$.JSArray_dynamic); C.List_Cuw = H.setRuntimeTypeInfo(makeConstList(["Sebelum Masehi", "Masehi"]), type$.JSArray_dynamic); C.List_JYK = H.setRuntimeTypeInfo(makeConstList(["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"]), type$.JSArray_dynamic); C.List_QW2 = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"]), type$.JSArray_dynamic); C.List_UE0 = H.setRuntimeTypeInfo(makeConstList(["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"]), type$.JSArray_dynamic); C.List_xKX = H.setRuntimeTypeInfo(makeConstList(["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"]), type$.JSArray_dynamic); C.List_o2T = H.setRuntimeTypeInfo(makeConstList(["M", "S", "S", "R", "K", "J", "S"]), type$.JSArray_dynamic); C.List_6Lo = H.setRuntimeTypeInfo(makeConstList(["Kuartal ke-1", "Kuartal ke-2", "Kuartal ke-3", "Kuartal ke-4"]), type$.JSArray_dynamic); C.List_Bzp = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd MMMM y", "d MMMM y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); C.Map_5tIWo = new H.ConstantStringMap(25, {NAME: "id", ERAS: C.List_SM_M, ERANAMES: C.List_Cuw, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_JYK, STANDALONEMONTHS: C.List_JYK, SHORTMONTHS: C.List_QW2, STANDALONESHORTMONTHS: C.List_QW2, WEEKDAYS: C.List_UE0, STANDALONEWEEKDAYS: C.List_UE0, SHORTWEEKDAYS: C.List_xKX, STANDALONESHORTWEEKDAYS: C.List_xKX, NARROWWEEKDAYS: C.List_o2T, STANDALONENARROWWEEKDAYS: C.List_o2T, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_6Lo, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_Bzp, TIMEFORMATS: C.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_DP9 = H.setRuntimeTypeInfo(makeConstList(["fyrir Krist", "eftir Krist"]), type$.JSArray_dynamic); C.List_Xrf = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "A", "M", "J", "J", "\xc1", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_Lvu = H.setRuntimeTypeInfo(makeConstList(["jan\xfaar", "febr\xfaar", "mars", "apr\xedl", "ma\xed", "j\xfan\xed", "j\xfal\xed", "\xe1g\xfast", "september", "okt\xf3ber", "n\xf3vember", "desember"]), type$.JSArray_dynamic); C.List_A3h = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mar.", "apr.", "ma\xed", "j\xfan.", "j\xfal.", "\xe1g\xfa.", "sep.", "okt.", "n\xf3v.", "des."]), type$.JSArray_dynamic); C.List_4AN0 = H.setRuntimeTypeInfo(makeConstList(["sunnudagur", "m\xe1nudagur", "\xferi\xf0judagur", "mi\xf0vikudagur", "fimmtudagur", "f\xf6studagur", "laugardagur"]), type$.JSArray_dynamic); C.List_2T7 = H.setRuntimeTypeInfo(makeConstList(["sun.", "m\xe1n.", "\xferi.", "mi\xf0.", "fim.", "f\xf6s.", "lau."]), type$.JSArray_dynamic); C.List_sYD = H.setRuntimeTypeInfo(makeConstList(["S", "M", "\xde", "M", "F", "F", "L"]), type$.JSArray_dynamic); C.List_F1_F2_F3_F4 = H.setRuntimeTypeInfo(makeConstList(["F1", "F2", "F3", "F4"]), type$.JSArray_dynamic); C.List_3y9 = H.setRuntimeTypeInfo(makeConstList(["1. fj\xf3r\xf0ungur", "2. fj\xf3r\xf0ungur", "3. fj\xf3r\xf0ungur", "4. fj\xf3r\xf0ungur"]), type$.JSArray_dynamic); C.List_nMZ = H.setRuntimeTypeInfo(makeConstList(["f.h.", "e.h."]), type$.JSArray_dynamic); C.List_kjq = H.setRuntimeTypeInfo(makeConstList(["EEEE, d. MMMM y", "d. MMMM y", "d. MMM y", "d.M.y"]), type$.JSArray_dynamic); C.List_ww8137 = H.setRuntimeTypeInfo(makeConstList(["{1} 'kl'. {0}", "{1} 'kl'. {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5twEo = new H.ConstantStringMap(25, {NAME: "is", ERAS: C.List_OPD, ERANAMES: C.List_DP9, NARROWMONTHS: C.List_Xrf, STANDALONENARROWMONTHS: C.List_Xrf, MONTHS: C.List_Lvu, STANDALONEMONTHS: C.List_Lvu, SHORTMONTHS: C.List_A3h, STANDALONESHORTMONTHS: C.List_A3h, WEEKDAYS: C.List_4AN0, STANDALONEWEEKDAYS: C.List_4AN0, SHORTWEEKDAYS: C.List_2T7, STANDALONESHORTWEEKDAYS: C.List_2T7, NARROWWEEKDAYS: C.List_sYD, STANDALONENARROWWEEKDAYS: C.List_sYD, SHORTQUARTERS: C.List_F1_F2_F3_F4, QUARTERS: C.List_3y9, AMPMS: C.List_nMZ, DATEFORMATS: C.List_kjq, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_ww8137}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_OTw = H.setRuntimeTypeInfo(makeConstList(["avanti Cristo", "dopo Cristo"]), type$.JSArray_dynamic); C.List_ink = H.setRuntimeTypeInfo(makeConstList(["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_YYR = H.setRuntimeTypeInfo(makeConstList(["gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre"]), type$.JSArray_dynamic); C.List_qMN = H.setRuntimeTypeInfo(makeConstList(["gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic"]), type$.JSArray_dynamic); C.List_EO3 = H.setRuntimeTypeInfo(makeConstList(["domenica", "luned\xec", "marted\xec", "mercoled\xec", "gioved\xec", "venerd\xec", "sabato"]), type$.JSArray_dynamic); C.List_wwP = H.setRuntimeTypeInfo(makeConstList(["dom", "lun", "mar", "mer", "gio", "ven", "sab"]), type$.JSArray_dynamic); C.List_rxd = H.setRuntimeTypeInfo(makeConstList(["D", "L", "M", "M", "G", "V", "S"]), type$.JSArray_dynamic); C.List_i7B1 = H.setRuntimeTypeInfo(makeConstList(["1\xba trimestre", "2\xba trimestre", "3\xba trimestre", "4\xba trimestre"]), type$.JSArray_dynamic); C.List_2fK = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd/MM/yy"]), type$.JSArray_dynamic); C.List_aYE0 = H.setRuntimeTypeInfo(makeConstList(["{1} {0}", "{1} {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5twQW = new H.ConstantStringMap(25, {NAME: "it", ERAS: C.List_2No2, ERANAMES: C.List_OTw, NARROWMONTHS: C.List_ink, STANDALONENARROWMONTHS: C.List_ink, MONTHS: C.List_YYR, STANDALONEMONTHS: C.List_YYR, SHORTMONTHS: C.List_qMN, STANDALONESHORTMONTHS: C.List_qMN, WEEKDAYS: C.List_EO3, STANDALONEWEEKDAYS: C.List_EO3, SHORTWEEKDAYS: C.List_wwP, STANDALONESHORTWEEKDAYS: C.List_wwP, NARROWWEEKDAYS: C.List_rxd, STANDALONENARROWWEEKDAYS: C.List_rxd, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_i7B1, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_2fK, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_aYE0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_cKo0 = H.setRuntimeTypeInfo(makeConstList(["\u7d00\u5143\u524d", "\u897f\u66a6"]), type$.JSArray_dynamic); C.List_24C = H.setRuntimeTypeInfo(makeConstList(["1\u6708", "2\u6708", "3\u6708", "4\u6708", "5\u6708", "6\u6708", "7\u6708", "8\u6708", "9\u6708", "10\u6708", "11\u6708", "12\u6708"]), type$.JSArray_dynamic); C.List_d8d = H.setRuntimeTypeInfo(makeConstList(["\u65e5\u66dc\u65e5", "\u6708\u66dc\u65e5", "\u706b\u66dc\u65e5", "\u6c34\u66dc\u65e5", "\u6728\u66dc\u65e5", "\u91d1\u66dc\u65e5", "\u571f\u66dc\u65e5"]), type$.JSArray_dynamic); C.List_IS6 = H.setRuntimeTypeInfo(makeConstList(["\u65e5", "\u6708", "\u706b", "\u6c34", "\u6728", "\u91d1", "\u571f"]), type$.JSArray_dynamic); C.List_Pvn = H.setRuntimeTypeInfo(makeConstList(["\u7b2c1\u56db\u534a\u671f", "\u7b2c2\u56db\u534a\u671f", "\u7b2c3\u56db\u534a\u671f", "\u7b2c4\u56db\u534a\u671f"]), type$.JSArray_dynamic); C.List_P5r = H.setRuntimeTypeInfo(makeConstList(["\u5348\u524d", "\u5348\u5f8c"]), type$.JSArray_dynamic); C.List_F4F = H.setRuntimeTypeInfo(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y/MM/dd", "y/MM/dd"]), type$.JSArray_dynamic); C.List_61r = H.setRuntimeTypeInfo(makeConstList(["H\u6642mm\u5206ss\u79d2 zzzz", "H:mm:ss z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); C.Map_5ta6h = new H.ConstantStringMap(25, {NAME: "ja", ERAS: C.List_cKo0, ERANAMES: C.List_cKo0, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_24C, STANDALONEMONTHS: C.List_24C, SHORTMONTHS: C.List_24C, STANDALONESHORTMONTHS: C.List_24C, WEEKDAYS: C.List_d8d, STANDALONEWEEKDAYS: C.List_d8d, SHORTWEEKDAYS: C.List_IS6, STANDALONESHORTWEEKDAYS: C.List_IS6, NARROWWEEKDAYS: C.List_IS6, STANDALONENARROWWEEKDAYS: C.List_IS6, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_Pvn, AMPMS: C.List_P5r, DATEFORMATS: C.List_F4F, TIMEFORMATS: C.List_61r, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_NMh = H.setRuntimeTypeInfo(makeConstList(["\u10eb\u10d5. \u10ec.", "\u10d0\u10ee. \u10ec."]), type$.JSArray_dynamic); C.List_g8C = H.setRuntimeTypeInfo(makeConstList(["\u10eb\u10d5\u10d4\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7", "\u10d0\u10ee\u10d0\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7"]), type$.JSArray_dynamic); C.List_fL6 = H.setRuntimeTypeInfo(makeConstList(["\u10d8", "\u10d7", "\u10db", "\u10d0", "\u10db", "\u10d8", "\u10d8", "\u10d0", "\u10e1", "\u10dd", "\u10dc", "\u10d3"]), type$.JSArray_dynamic); C.List_bh9 = H.setRuntimeTypeInfo(makeConstList(["\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8", "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8", "\u10db\u10d0\u10e0\u10e2\u10d8", "\u10d0\u10de\u10e0\u10d8\u10da\u10d8", "\u10db\u10d0\u10d8\u10e1\u10d8", "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8", "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8", "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd", "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8", "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"]), type$.JSArray_dynamic); C.List_40x = H.setRuntimeTypeInfo(makeConstList(["\u10d8\u10d0\u10dc", "\u10d7\u10d4\u10d1", "\u10db\u10d0\u10e0", "\u10d0\u10de\u10e0", "\u10db\u10d0\u10d8", "\u10d8\u10d5\u10dc", "\u10d8\u10d5\u10da", "\u10d0\u10d2\u10d5", "\u10e1\u10d4\u10e5", "\u10dd\u10e5\u10e2", "\u10dc\u10dd\u10d4", "\u10d3\u10d4\u10d9"]), type$.JSArray_dynamic); C.List_mNP = H.setRuntimeTypeInfo(makeConstList(["\u10d9\u10d5\u10d8\u10e0\u10d0", "\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8", "\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8", "\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8"]), type$.JSArray_dynamic); C.List_oTd = H.setRuntimeTypeInfo(makeConstList(["\u10d9\u10d5\u10d8", "\u10dd\u10e0\u10e8", "\u10e1\u10d0\u10db", "\u10dd\u10d7\u10ee", "\u10ee\u10e3\u10d7", "\u10de\u10d0\u10e0", "\u10e8\u10d0\u10d1"]), type$.JSArray_dynamic); C.List_iU9 = H.setRuntimeTypeInfo(makeConstList(["\u10d9", "\u10dd", "\u10e1", "\u10dd", "\u10ee", "\u10de", "\u10e8"]), type$.JSArray_dynamic); C.List_8aB1 = H.setRuntimeTypeInfo(makeConstList(["I \u10d9\u10d5.", "II \u10d9\u10d5.", "III \u10d9\u10d5.", "IV \u10d9\u10d5."]), type$.JSArray_dynamic); C.List_CkO = H.setRuntimeTypeInfo(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_dynamic); C.List_Wm5 = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd MMMM, y", "d MMMM, y", "d MMM. y", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5tq4G = new H.ConstantStringMap(25, {NAME: "ka", ERAS: C.List_NMh, ERANAMES: C.List_g8C, NARROWMONTHS: C.List_fL6, STANDALONENARROWMONTHS: C.List_fL6, MONTHS: C.List_bh9, STANDALONEMONTHS: C.List_bh9, SHORTMONTHS: C.List_40x, STANDALONESHORTMONTHS: C.List_40x, WEEKDAYS: C.List_mNP, STANDALONEWEEKDAYS: C.List_mNP, SHORTWEEKDAYS: C.List_oTd, STANDALONESHORTWEEKDAYS: C.List_oTd, NARROWWEEKDAYS: C.List_iU9, STANDALONENARROWWEEKDAYS: C.List_iU9, SHORTQUARTERS: C.List_8aB1, QUARTERS: C.List_CkO, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_Wm5, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_oc6 = H.setRuntimeTypeInfo(makeConstList(["\u0431.\u0437.\u0434.", "\u0431.\u0437."]), type$.JSArray_dynamic); C.List_rc4 = H.setRuntimeTypeInfo(makeConstList(["\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d", "\u0431\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"]), type$.JSArray_dynamic); C.List_wAg = H.setRuntimeTypeInfo(makeConstList(["\u049a", "\u0410", "\u041d", "\u0421", "\u041c", "\u041c", "\u0428", "\u0422", "\u049a", "\u049a", "\u049a", "\u0416"]), type$.JSArray_dynamic); C.List_U1z = H.setRuntimeTypeInfo(makeConstList(["\u049b\u0430\u04a3\u0442\u0430\u0440", "\u0430\u049b\u043f\u0430\u043d", "\u043d\u0430\u0443\u0440\u044b\u0437", "\u0441\u04d9\u0443\u0456\u0440", "\u043c\u0430\u043c\u044b\u0440", "\u043c\u0430\u0443\u0441\u044b\u043c", "\u0448\u0456\u043b\u0434\u0435", "\u0442\u0430\u043c\u044b\u0437", "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a", "\u049b\u0430\u0437\u0430\u043d", "\u049b\u0430\u0440\u0430\u0448\u0430", "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); C.List_jXU = H.setRuntimeTypeInfo(makeConstList(["\u049a\u0430\u04a3\u0442\u0430\u0440", "\u0410\u049b\u043f\u0430\u043d", "\u041d\u0430\u0443\u0440\u044b\u0437", "\u0421\u04d9\u0443\u0456\u0440", "\u041c\u0430\u043c\u044b\u0440", "\u041c\u0430\u0443\u0441\u044b\u043c", "\u0428\u0456\u043b\u0434\u0435", "\u0422\u0430\u043c\u044b\u0437", "\u049a\u044b\u0440\u043a\u04af\u0439\u0435\u043a", "\u049a\u0430\u0437\u0430\u043d", "\u049a\u0430\u0440\u0430\u0448\u0430", "\u0416\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); C.List_k4X = H.setRuntimeTypeInfo(makeConstList(["\u049b\u0430\u04a3.", "\u0430\u049b\u043f.", "\u043d\u0430\u0443.", "\u0441\u04d9\u0443.", "\u043c\u0430\u043c.", "\u043c\u0430\u0443.", "\u0448\u0456\u043b.", "\u0442\u0430\u043c.", "\u049b\u044b\u0440.", "\u049b\u0430\u0437.", "\u049b\u0430\u0440.", "\u0436\u0435\u043b."]), type$.JSArray_dynamic); C.List_w66 = H.setRuntimeTypeInfo(makeConstList(["\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456", "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456", "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456", "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456", "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456", "\u0436\u04b1\u043c\u0430", "\u0441\u0435\u043d\u0431\u0456"]), type$.JSArray_dynamic); C.List_IaK = H.setRuntimeTypeInfo(makeConstList(["\u0436\u0441", "\u0434\u0441", "\u0441\u0441", "\u0441\u0440", "\u0431\u0441", "\u0436\u043c", "\u0441\u0431"]), type$.JSArray_dynamic); C.List_HNA = H.setRuntimeTypeInfo(makeConstList(["\u0416", "\u0414", "\u0421", "\u0421", "\u0411", "\u0416", "\u0421"]), type$.JSArray_dynamic); C.List_a5W1 = H.setRuntimeTypeInfo(makeConstList(["\u0406 \u0442\u049b\u0441.", "\u0406\u0406 \u0442\u049b\u0441.", "\u0406\u0406\u0406 \u0442\u049b\u0441.", "IV \u0442\u049b\u0441."]), type$.JSArray_dynamic); C.List_dGK = H.setRuntimeTypeInfo(makeConstList(["\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "\u0406\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d", "IV \u0442\u043e\u049b\u0441\u0430\u043d"]), type$.JSArray_dynamic); C.List_G7N = H.setRuntimeTypeInfo(makeConstList(["y '\u0436'. d MMMM, EEEE", "y '\u0436'. d MMMM", "y '\u0436'. dd MMM", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5tIiW = new H.ConstantStringMap(25, {NAME: "kk", ERAS: C.List_oc6, ERANAMES: C.List_rc4, NARROWMONTHS: C.List_wAg, STANDALONENARROWMONTHS: C.List_wAg, MONTHS: C.List_U1z, STANDALONEMONTHS: C.List_jXU, SHORTMONTHS: C.List_k4X, STANDALONESHORTMONTHS: C.List_k4X, WEEKDAYS: C.List_w66, STANDALONEWEEKDAYS: C.List_w66, SHORTWEEKDAYS: C.List_IaK, STANDALONESHORTWEEKDAYS: C.List_IaK, NARROWWEEKDAYS: C.List_HNA, STANDALONENARROWWEEKDAYS: C.List_HNA, SHORTQUARTERS: C.List_a5W1, QUARTERS: C.List_dGK, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_G7N, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_8Ay = H.setRuntimeTypeInfo(makeConstList(["\u1798\u17bb\u1793 \u1782.\u179f.", "\u1782.\u179f."]), type$.JSArray_dynamic); C.List_QKA = H.setRuntimeTypeInfo(makeConstList(["\u1798\u17bb\u1793\u200b\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787", "\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787"]), type$.JSArray_dynamic); C.List_4m40 = H.setRuntimeTypeInfo(makeConstList(["\u1798", "\u1780", "\u1798", "\u1798", "\u17a7", "\u1798", "\u1780", "\u179f", "\u1780", "\u178f", "\u179c", "\u1792"]), type$.JSArray_dynamic); C.List_JUC0 = H.setRuntimeTypeInfo(makeConstList(["\u1798\u1780\u179a\u17b6", "\u1780\u17bb\u1798\u17d2\u1797\u17c8", "\u1798\u17b8\u1793\u17b6", "\u1798\u17c1\u179f\u17b6", "\u17a7\u179f\u1797\u17b6", "\u1798\u17b7\u1790\u17bb\u1793\u17b6", "\u1780\u1780\u17d2\u1780\u178a\u17b6", "\u179f\u17b8\u17a0\u17b6", "\u1780\u1789\u17d2\u1789\u17b6", "\u178f\u17bb\u179b\u17b6", "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", "\u1792\u17d2\u1793\u17bc"]), type$.JSArray_dynamic); C.List_cMb0 = H.setRuntimeTypeInfo(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u17d0\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); C.List_JMh = H.setRuntimeTypeInfo(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); C.List_ww8138 = H.setRuntimeTypeInfo(makeConstList(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799", "\u1785\u1793\u17d2\u1791", "\u17a2\u1784\u17d2\u1782\u17b6\u179a", "\u1796\u17bb\u1792", "\u1796\u17d2\u179a\u17a0", "\u179f\u17bb\u1780\u17d2\u179a", "\u179f\u17c5\u179a\u17cd"]), type$.JSArray_dynamic); C.List_Dpp = H.setRuntimeTypeInfo(makeConstList(["\u17a2", "\u1785", "\u17a2", "\u1796", "\u1796", "\u179f", "\u179f"]), type$.JSArray_dynamic); C.List_Nss = H.setRuntimeTypeInfo(makeConstList(["\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 1", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 2", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 3", "\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 4"]), type$.JSArray_dynamic); C.List_CF7 = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); C.List_izR = H.setRuntimeTypeInfo(makeConstList(["{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}", "{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tmmo = new H.ConstantStringMap(25, {NAME: "km", ERAS: C.List_8Ay, ERANAMES: C.List_QKA, NARROWMONTHS: C.List_4m40, STANDALONENARROWMONTHS: C.List_4m40, MONTHS: C.List_JUC0, STANDALONEMONTHS: C.List_JUC0, SHORTMONTHS: C.List_JUC0, STANDALONESHORTMONTHS: C.List_JUC0, WEEKDAYS: C.List_cMb0, STANDALONEWEEKDAYS: C.List_JMh, SHORTWEEKDAYS: C.List_ww8138, STANDALONESHORTWEEKDAYS: C.List_ww8138, NARROWWEEKDAYS: C.List_Dpp, STANDALONENARROWWEEKDAYS: C.List_Dpp, SHORTQUARTERS: C.List_Nss, QUARTERS: C.List_Nss, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_CF7, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_izR}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_wSV0 = H.setRuntimeTypeInfo(makeConstList(["\u0c95\u0ccd\u0cb0\u0cbf.\u0caa\u0cc2", "\u0c95\u0ccd\u0cb0\u0cbf.\u0cb6"]), type$.JSArray_dynamic); C.List_gg42 = H.setRuntimeTypeInfo(makeConstList(["\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0caa\u0cc2\u0cb0\u0ccd\u0cb5", "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0cb6\u0c95"]), type$.JSArray_dynamic); C.List_Gfp = H.setRuntimeTypeInfo(makeConstList(["\u0c9c", "\u0cab\u0cc6", "\u0cae\u0cbe", "\u0c8f", "\u0cae\u0cc7", "\u0c9c\u0cc2", "\u0c9c\u0cc1", "\u0c86", "\u0cb8\u0cc6", "\u0c85", "\u0ca8", "\u0ca1\u0cbf"]), type$.JSArray_dynamic); C.List_okI = H.setRuntimeTypeInfo(makeConstList(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd", "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"]), type$.JSArray_dynamic); C.List_2No3 = H.setRuntimeTypeInfo(makeConstList(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb", "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]), type$.JSArray_dynamic); C.List_6Vn0 = H.setRuntimeTypeInfo(makeConstList(["\u0c9c\u0ca8", "\u0cab\u0cc6\u0cac\u0ccd\u0cb0", "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf", "\u0cae\u0cc7", "\u0c9c\u0cc2\u0ca8\u0ccd", "\u0c9c\u0cc1\u0cb2\u0cc8", "\u0c86\u0c97", "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82", "\u0c85\u0c95\u0ccd\u0c9f\u0ccb", "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]), type$.JSArray_dynamic); C.List_jNn = H.setRuntimeTypeInfo(makeConstList(["\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0", "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0", "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0", "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0", "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0", "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0", "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"]), type$.JSArray_dynamic); C.List_kCd = H.setRuntimeTypeInfo(makeConstList(["\u0cad\u0cbe\u0ca8\u0cc1", "\u0cb8\u0ccb\u0cae", "\u0cae\u0c82\u0c97\u0cb3", "\u0cac\u0cc1\u0ca7", "\u0c97\u0cc1\u0cb0\u0cc1", "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0", "\u0cb6\u0ca8\u0cbf"]), type$.JSArray_dynamic); C.List_blW = H.setRuntimeTypeInfo(makeConstList(["\u0cad\u0cbe", "\u0cb8\u0ccb", "\u0cae\u0c82", "\u0cac\u0cc1", "\u0c97\u0cc1", "\u0cb6\u0cc1", "\u0cb6"]), type$.JSArray_dynamic); C.List_uKK = H.setRuntimeTypeInfo(makeConstList(["\u0ca4\u0ccd\u0cb0\u0cc8 1", "\u0ca4\u0ccd\u0cb0\u0cc8 2", "\u0ca4\u0ccd\u0cb0\u0cc8 3", "\u0ca4\u0ccd\u0cb0\u0cc8 4"]), type$.JSArray_dynamic); C.List_a9P = H.setRuntimeTypeInfo(makeConstList(["1\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "2\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "3\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95", "4\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95"]), type$.JSArray_dynamic); C.List_qh2 = H.setRuntimeTypeInfo(makeConstList(["\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8", "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"]), type$.JSArray_dynamic); C.List_EkK0 = H.setRuntimeTypeInfo(makeConstList(["EEEE, MMMM d, y", "MMMM d, y", "MMM d, y", "d/M/yy"]), type$.JSArray_dynamic); C.Map_5twHn = new H.ConstantStringMap(25, {NAME: "kn", ERAS: C.List_wSV0, ERANAMES: C.List_gg42, NARROWMONTHS: C.List_Gfp, STANDALONENARROWMONTHS: C.List_Gfp, MONTHS: C.List_okI, STANDALONEMONTHS: C.List_okI, SHORTMONTHS: C.List_2No3, STANDALONESHORTMONTHS: C.List_6Vn0, WEEKDAYS: C.List_jNn, STANDALONEWEEKDAYS: C.List_jNn, SHORTWEEKDAYS: C.List_kCd, STANDALONESHORTWEEKDAYS: C.List_kCd, NARROWWEEKDAYS: C.List_blW, STANDALONENARROWWEEKDAYS: C.List_blW, SHORTQUARTERS: C.List_uKK, QUARTERS: C.List_a9P, AMPMS: C.List_qh2, DATEFORMATS: C.List_EkK0, TIMEFORMATS: C.List_TWS, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_8Gl0 = H.setRuntimeTypeInfo(makeConstList(["\uae30\uc6d0\uc804", "\uc11c\uae30"]), type$.JSArray_dynamic); C.List_Ukm = H.setRuntimeTypeInfo(makeConstList(["1\uc6d4", "2\uc6d4", "3\uc6d4", "4\uc6d4", "5\uc6d4", "6\uc6d4", "7\uc6d4", "8\uc6d4", "9\uc6d4", "10\uc6d4", "11\uc6d4", "12\uc6d4"]), type$.JSArray_dynamic); C.List_CmY = H.setRuntimeTypeInfo(makeConstList(["\uc77c\uc694\uc77c", "\uc6d4\uc694\uc77c", "\ud654\uc694\uc77c", "\uc218\uc694\uc77c", "\ubaa9\uc694\uc77c", "\uae08\uc694\uc77c", "\ud1a0\uc694\uc77c"]), type$.JSArray_dynamic); C.List_cEX = H.setRuntimeTypeInfo(makeConstList(["\uc77c", "\uc6d4", "\ud654", "\uc218", "\ubaa9", "\uae08", "\ud1a0"]), type$.JSArray_dynamic); C.List_Ru4 = H.setRuntimeTypeInfo(makeConstList(["1\ubd84\uae30", "2\ubd84\uae30", "3\ubd84\uae30", "4\ubd84\uae30"]), type$.JSArray_dynamic); C.List_7TW = H.setRuntimeTypeInfo(makeConstList(["\uc81c 1/4\ubd84\uae30", "\uc81c 2/4\ubd84\uae30", "\uc81c 3/4\ubd84\uae30", "\uc81c 4/4\ubd84\uae30"]), type$.JSArray_dynamic); C.List_2Vk4 = H.setRuntimeTypeInfo(makeConstList(["\uc624\uc804", "\uc624\ud6c4"]), type$.JSArray_dynamic); C.List_3Zi = H.setRuntimeTypeInfo(makeConstList(["y\ub144 M\uc6d4 d\uc77c EEEE", "y\ub144 M\uc6d4 d\uc77c", "y. M. d.", "yy. M. d."]), type$.JSArray_dynamic); C.List_CYy = H.setRuntimeTypeInfo(makeConstList(["a h\uc2dc m\ubd84 s\ucd08 zzzz", "a h\uc2dc m\ubd84 s\ucd08 z", "a h:mm:ss", "a h:mm"]), type$.JSArray_dynamic); C.Map_5t2jN0 = new H.ConstantStringMap(25, {NAME: "ko", ERAS: C.List_BC_AD0, ERANAMES: C.List_8Gl0, NARROWMONTHS: C.List_Ukm, STANDALONENARROWMONTHS: C.List_Ukm, MONTHS: C.List_Ukm, STANDALONEMONTHS: C.List_Ukm, SHORTMONTHS: C.List_Ukm, STANDALONESHORTMONTHS: C.List_Ukm, WEEKDAYS: C.List_CmY, STANDALONEWEEKDAYS: C.List_CmY, SHORTWEEKDAYS: C.List_cEX, STANDALONESHORTWEEKDAYS: C.List_cEX, NARROWWEEKDAYS: C.List_cEX, STANDALONENARROWWEEKDAYS: C.List_cEX, SHORTQUARTERS: C.List_Ru4, QUARTERS: C.List_7TW, AMPMS: C.List_2Vk4, DATEFORMATS: C.List_3Zi, TIMEFORMATS: C.List_CYy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ALf0 = H.setRuntimeTypeInfo(makeConstList(["\u0431.\u0437.\u0447.", "\u0431.\u0437."]), type$.JSArray_dynamic); C.List_MSn = H.setRuntimeTypeInfo(makeConstList(["\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d\u0433\u0430 \u0447\u0435\u0439\u0438\u043d", "\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d"]), type$.JSArray_dynamic); C.List_16h = H.setRuntimeTypeInfo(makeConstList(["\u042f", "\u0424", "\u041c", "\u0410", "\u041c", "\u0418", "\u0418", "\u0410", "\u0421", "\u041e", "\u041d", "\u0414"]), type$.JSArray_dynamic); C.List_rNu = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0432\u0430\u0440\u044c", "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0435\u043b\u044c", "\u043c\u0430\u0439", "\u0438\u044e\u043d\u044c", "\u0438\u044e\u043b\u044c", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", "\u043d\u043e\u044f\u0431\u0440\u044c", "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"]), type$.JSArray_dynamic); C.List_O5s = H.setRuntimeTypeInfo(makeConstList(["\u042f\u043d\u0432\u0430\u0440\u044c", "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", "\u041c\u0430\u0440\u0442", "\u0410\u043f\u0440\u0435\u043b\u044c", "\u041c\u0430\u0439", "\u0418\u044e\u043d\u044c", "\u0418\u044e\u043b\u044c", "\u0410\u0432\u0433\u0443\u0441\u0442", "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", "\u041d\u043e\u044f\u0431\u0440\u044c", "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"]), type$.JSArray_dynamic); C.List_2mB = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u0439", "\u0438\u044e\u043d.", "\u0438\u044e\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043d.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); C.List_3Bx = H.setRuntimeTypeInfo(makeConstList(["\u042f\u043d\u0432", "\u0424\u0435\u0432", "\u041c\u0430\u0440", "\u0410\u043f\u0440", "\u041c\u0430\u0439", "\u0418\u044e\u043d", "\u0418\u044e\u043b", "\u0410\u0432\u0433", "\u0421\u0435\u043d", "\u041e\u043a\u0442", "\u041d\u043e\u044f", "\u0414\u0435\u043a"]), type$.JSArray_dynamic); C.List_86y1 = H.setRuntimeTypeInfo(makeConstList(["\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438", "\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af", "\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438", "\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438", "\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438", "\u0436\u0443\u043c\u0430", "\u0438\u0448\u0435\u043c\u0431\u0438"]), type$.JSArray_dynamic); C.List_AqM = H.setRuntimeTypeInfo(makeConstList(["\u0436\u0435\u043a.", "\u0434\u04af\u0439.", "\u0448\u0435\u0439\u0448.", "\u0448\u0430\u0440\u0448.", "\u0431\u0435\u0439\u0448.", "\u0436\u0443\u043c\u0430", "\u0438\u0448\u043c."]), type$.JSArray_dynamic); C.List_6TA0 = H.setRuntimeTypeInfo(makeConstList(["\u0416", "\u0414", "\u0428", "\u0428", "\u0411", "\u0416", "\u0418"]), type$.JSArray_dynamic); C.List_0XS = H.setRuntimeTypeInfo(makeConstList(["1-\u0447\u0435\u0439.", "2-\u0447\u0435\u0439.", "3-\u0447\u0435\u0439.", "4-\u0447\u0435\u0439."]), type$.JSArray_dynamic); C.List_sav = H.setRuntimeTypeInfo(makeConstList(["1-\u0447\u0435\u0439\u0440\u0435\u043a", "2-\u0447\u0435\u0439\u0440\u0435\u043a", "3-\u0447\u0435\u0439\u0440\u0435\u043a", "4-\u0447\u0435\u0439\u0440\u0435\u043a"]), type$.JSArray_dynamic); C.List_iL9 = H.setRuntimeTypeInfo(makeConstList(["\u0442\u0430\u04a3\u043a\u044b", "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"]), type$.JSArray_dynamic); C.List_ODz = H.setRuntimeTypeInfo(makeConstList(["y-'\u0436'., d-MMMM, EEEE", "y-'\u0436'., d-MMMM", "y-'\u0436'., d-MMM", "d/M/yy"]), type$.JSArray_dynamic); C.Map_5tMul = new H.ConstantStringMap(25, {NAME: "ky", ERAS: C.List_ALf0, ERANAMES: C.List_MSn, NARROWMONTHS: C.List_16h, STANDALONENARROWMONTHS: C.List_16h, MONTHS: C.List_rNu, STANDALONEMONTHS: C.List_O5s, SHORTMONTHS: C.List_2mB, STANDALONESHORTMONTHS: C.List_3Bx, WEEKDAYS: C.List_86y1, STANDALONEWEEKDAYS: C.List_86y1, SHORTWEEKDAYS: C.List_AqM, STANDALONESHORTWEEKDAYS: C.List_AqM, NARROWWEEKDAYS: C.List_6TA0, STANDALONENARROWWEEKDAYS: C.List_6TA0, SHORTQUARTERS: C.List_0XS, QUARTERS: C.List_sav, AMPMS: C.List_iL9, DATEFORMATS: C.List_ODz, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_RVo = H.setRuntimeTypeInfo(makeConstList(["\u0e81\u0ec8\u0ead\u0e99 \u0e84.\u0eaa.", "\u0e84.\u0eaa."]), type$.JSArray_dynamic); C.List_k92 = H.setRuntimeTypeInfo(makeConstList(["\u0e81\u0ec8\u0ead\u0e99\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94", "\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94"]), type$.JSArray_dynamic); C.List_09 = H.setRuntimeTypeInfo(makeConstList(["\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99", "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2", "\u0ea1\u0eb5\u0e99\u0eb2", "\u0ec0\u0ea1\u0eaa\u0eb2", "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2", "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2", "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94", "\u0eaa\u0eb4\u0e87\u0eab\u0eb2", "\u0e81\u0eb1\u0e99\u0e8d\u0eb2", "\u0e95\u0eb8\u0ea5\u0eb2", "\u0e9e\u0eb0\u0e88\u0eb4\u0e81", "\u0e97\u0eb1\u0e99\u0ea7\u0eb2"]), type$.JSArray_dynamic); C.List_q96 = H.setRuntimeTypeInfo(makeConstList(["\u0ea1.\u0e81.", "\u0e81.\u0e9e.", "\u0ea1.\u0e99.", "\u0ea1.\u0eaa.", "\u0e9e.\u0e9e.", "\u0ea1\u0eb4.\u0e96.", "\u0e81.\u0ea5.", "\u0eaa.\u0eab.", "\u0e81.\u0e8d.", "\u0e95.\u0ea5.", "\u0e9e.\u0e88.", "\u0e97.\u0ea7."]), type$.JSArray_dynamic); C.List_a1T = H.setRuntimeTypeInfo(makeConstList(["\u0ea7\u0eb1\u0e99\u0ead\u0eb2\u0e97\u0eb4\u0e94", "\u0ea7\u0eb1\u0e99\u0e88\u0eb1\u0e99", "\u0ea7\u0eb1\u0e99\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99", "\u0ea7\u0eb1\u0e99\u0e9e\u0eb8\u0e94", "\u0ea7\u0eb1\u0e99\u0e9e\u0eb0\u0eab\u0eb1\u0e94", "\u0ea7\u0eb1\u0e99\u0eaa\u0eb8\u0e81", "\u0ea7\u0eb1\u0e99\u0ec0\u0eaa\u0ebb\u0eb2"]), type$.JSArray_dynamic); C.List_OMD = H.setRuntimeTypeInfo(makeConstList(["\u0ead\u0eb2\u0e97\u0eb4\u0e94", "\u0e88\u0eb1\u0e99", "\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99", "\u0e9e\u0eb8\u0e94", "\u0e9e\u0eb0\u0eab\u0eb1\u0e94", "\u0eaa\u0eb8\u0e81", "\u0ec0\u0eaa\u0ebb\u0eb2"]), type$.JSArray_dynamic); C.List_C2f = H.setRuntimeTypeInfo(makeConstList(["\u0ead\u0eb2", "\u0e88", "\u0ead", "\u0e9e", "\u0e9e\u0eab", "\u0eaa\u0eb8", "\u0eaa"]), type$.JSArray_dynamic); C.List_qFo = H.setRuntimeTypeInfo(makeConstList(["\u0e95\u0ea11", "\u0e95\u0ea12", "\u0e95\u0ea13", "\u0e95\u0ea14"]), type$.JSArray_dynamic); C.List_UV6 = H.setRuntimeTypeInfo(makeConstList(["\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 1", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 2", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 3", "\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 4"]), type$.JSArray_dynamic); C.List_Mfs = H.setRuntimeTypeInfo(makeConstList(["\u0e81\u0ec8\u0ead\u0e99\u0e97\u0ec8\u0ebd\u0e87", "\u0eab\u0ebc\u0eb1\u0e87\u0e97\u0ec8\u0ebd\u0e87"]), type$.JSArray_dynamic); C.List_hHb = H.setRuntimeTypeInfo(makeConstList(["EEEE \u0e97\u0eb5 d MMMM G y", "d MMMM y", "d MMM y", "d/M/y"]), type$.JSArray_dynamic); C.List_u91 = H.setRuntimeTypeInfo(makeConstList(["H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 zzzz", "H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 z", "H:mm:ss", "H:mm"]), type$.JSArray_dynamic); C.Map_5ta5W = new H.ConstantStringMap(25, {NAME: "lo", ERAS: C.List_RVo, ERANAMES: C.List_k92, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_09, STANDALONEMONTHS: C.List_09, SHORTMONTHS: C.List_q96, STANDALONESHORTMONTHS: C.List_q96, WEEKDAYS: C.List_a1T, STANDALONEWEEKDAYS: C.List_a1T, SHORTWEEKDAYS: C.List_OMD, STANDALONESHORTWEEKDAYS: C.List_OMD, NARROWWEEKDAYS: C.List_C2f, STANDALONENARROWWEEKDAYS: C.List_C2f, SHORTQUARTERS: C.List_qFo, QUARTERS: C.List_UV6, AMPMS: C.List_Mfs, DATEFORMATS: C.List_hHb, TIMEFORMATS: C.List_u91, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_OCX = H.setRuntimeTypeInfo(makeConstList(["pr. Kr.", "po Kr."]), type$.JSArray_dynamic); C.List_ECL = H.setRuntimeTypeInfo(makeConstList(["prie\u0161 Krist\u0173", "po Kristaus"]), type$.JSArray_dynamic); C.List_e8d = H.setRuntimeTypeInfo(makeConstList(["S", "V", "K", "B", "G", "B", "L", "R", "R", "S", "L", "G"]), type$.JSArray_dynamic); C.List_n5d = H.setRuntimeTypeInfo(makeConstList(["sausio", "vasario", "kovo", "baland\u017eio", "gegu\u017e\u0117s", "bir\u017eelio", "liepos", "rugpj\u016b\u010dio", "rugs\u0117jo", "spalio", "lapkri\u010dio", "gruod\u017eio"]), type$.JSArray_dynamic); C.List_8lx = H.setRuntimeTypeInfo(makeConstList(["sausis", "vasaris", "kovas", "balandis", "gegu\u017e\u0117", "bir\u017eelis", "liepa", "rugpj\u016btis", "rugs\u0117jis", "spalis", "lapkritis", "gruodis"]), type$.JSArray_dynamic); C.List_kue = H.setRuntimeTypeInfo(makeConstList(["saus.", "vas.", "kov.", "bal.", "geg.", "bir\u017e.", "liep.", "rugp.", "rugs.", "spal.", "lapkr.", "gruod."]), type$.JSArray_dynamic); C.List_EVN = H.setRuntimeTypeInfo(makeConstList(["sekmadienis", "pirmadienis", "antradienis", "tre\u010diadienis", "ketvirtadienis", "penktadienis", "\u0161e\u0161tadienis"]), type$.JSArray_dynamic); C.List_5eO = H.setRuntimeTypeInfo(makeConstList(["sk", "pr", "an", "tr", "kt", "pn", "\u0161t"]), type$.JSArray_dynamic); C.List_010 = H.setRuntimeTypeInfo(makeConstList(["S", "P", "A", "T", "K", "P", "\u0160"]), type$.JSArray_dynamic); C.List_o0y = H.setRuntimeTypeInfo(makeConstList(["I k.", "II k.", "III k.", "IV k."]), type$.JSArray_dynamic); C.List_ww8139 = H.setRuntimeTypeInfo(makeConstList(["I ketvirtis", "II ketvirtis", "III ketvirtis", "IV ketvirtis"]), type$.JSArray_dynamic); C.List_AmA = H.setRuntimeTypeInfo(makeConstList(["prie\u0161piet", "popiet"]), type$.JSArray_dynamic); C.List_Za1 = H.setRuntimeTypeInfo(makeConstList(["y 'm'. MMMM d 'd'., EEEE", "y 'm'. MMMM d 'd'.", "y-MM-dd", "y-MM-dd"]), type$.JSArray_dynamic); C.Map_5tIof = new H.ConstantStringMap(25, {NAME: "lt", ERAS: C.List_OCX, ERANAMES: C.List_ECL, NARROWMONTHS: C.List_e8d, STANDALONENARROWMONTHS: C.List_e8d, MONTHS: C.List_n5d, STANDALONEMONTHS: C.List_8lx, SHORTMONTHS: C.List_kue, STANDALONESHORTMONTHS: C.List_kue, WEEKDAYS: C.List_EVN, STANDALONEWEEKDAYS: C.List_EVN, SHORTWEEKDAYS: C.List_5eO, STANDALONESHORTWEEKDAYS: C.List_5eO, NARROWWEEKDAYS: C.List_010, STANDALONENARROWWEEKDAYS: C.List_010, SHORTQUARTERS: C.List_o0y, QUARTERS: C.List_ww8139, AMPMS: C.List_AmA, DATEFORMATS: C.List_Za1, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_sQR = H.setRuntimeTypeInfo(makeConstList(["p.m.\u0113.", "m.\u0113."]), type$.JSArray_dynamic); C.List_Mm5 = H.setRuntimeTypeInfo(makeConstList(["pirms m\u016bsu \u0113ras", "m\u016bsu \u0113r\u0101"]), type$.JSArray_dynamic); C.List_IE7 = H.setRuntimeTypeInfo(makeConstList(["janv\u0101ris", "febru\u0101ris", "marts", "apr\u012blis", "maijs", "j\u016bnijs", "j\u016blijs", "augusts", "septembris", "oktobris", "novembris", "decembris"]), type$.JSArray_dynamic); C.List_gg9 = H.setRuntimeTypeInfo(makeConstList(["janv.", "febr.", "marts", "apr.", "maijs", "j\u016bn.", "j\u016bl.", "aug.", "sept.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_mbw = H.setRuntimeTypeInfo(makeConstList(["sv\u0113tdiena", "pirmdiena", "otrdiena", "tre\u0161diena", "ceturtdiena", "piektdiena", "sestdiena"]), type$.JSArray_dynamic); C.List_pea = H.setRuntimeTypeInfo(makeConstList(["Sv\u0113tdiena", "Pirmdiena", "Otrdiena", "Tre\u0161diena", "Ceturtdiena", "Piektdiena", "Sestdiena"]), type$.JSArray_dynamic); C.List_soA1 = H.setRuntimeTypeInfo(makeConstList(["sv\u0113td.", "pirmd.", "otrd.", "tre\u0161d.", "ceturtd.", "piektd.", "sestd."]), type$.JSArray_dynamic); C.List_Olq = H.setRuntimeTypeInfo(makeConstList(["Sv\u0113td.", "Pirmd.", "Otrd.", "Tre\u0161d.", "Ceturtd.", "Piektd.", "Sestd."]), type$.JSArray_dynamic); C.List_gHJ = H.setRuntimeTypeInfo(makeConstList(["S", "P", "O", "T", "C", "P", "S"]), type$.JSArray_dynamic); C.List_b1T = H.setRuntimeTypeInfo(makeConstList(["1.\xa0cet.", "2.\xa0cet.", "3.\xa0cet.", "4.\xa0cet."]), type$.JSArray_dynamic); C.List_QWS = H.setRuntimeTypeInfo(makeConstList(["1. ceturksnis", "2. ceturksnis", "3. ceturksnis", "4. ceturksnis"]), type$.JSArray_dynamic); C.List_Drq = H.setRuntimeTypeInfo(makeConstList(["priek\u0161pusdien\u0101", "p\u0113cpusdien\u0101"]), type$.JSArray_dynamic); C.List_Wvf = H.setRuntimeTypeInfo(makeConstList(["EEEE, y. 'gada' d. MMMM", "y. 'gada' d. MMMM", "y. 'gada' d. MMM", "dd.MM.yy"]), type$.JSArray_dynamic); C.Map_5twsa = new H.ConstantStringMap(25, {NAME: "lv", ERAS: C.List_sQR, ERANAMES: C.List_Mm5, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_IE7, STANDALONEMONTHS: C.List_IE7, SHORTMONTHS: C.List_gg9, STANDALONESHORTMONTHS: C.List_gg9, WEEKDAYS: C.List_mbw, STANDALONEWEEKDAYS: C.List_pea, SHORTWEEKDAYS: C.List_soA1, STANDALONESHORTWEEKDAYS: C.List_Olq, NARROWWEEKDAYS: C.List_gHJ, STANDALONENARROWWEEKDAYS: C.List_gHJ, SHORTQUARTERS: C.List_b1T, QUARTERS: C.List_QWS, AMPMS: C.List_Drq, DATEFORMATS: C.List_Wvf, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_D34 = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440.\u043d.\u0435.", "\u043d.\u0435."]), type$.JSArray_dynamic); C.List_ud2 = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0435\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430", "\u043e\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430"]), type$.JSArray_dynamic); C.List_owA = H.setRuntimeTypeInfo(makeConstList(["\u0458", "\u0444", "\u043c", "\u0430", "\u043c", "\u0458", "\u0458", "\u0430", "\u0441", "\u043e", "\u043d", "\u0434"]), type$.JSArray_dynamic); C.List_2Rm0 = H.setRuntimeTypeInfo(makeConstList(["\u0458\u0430\u043d\u0443\u0430\u0440\u0438", "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0458", "\u0458\u0443\u043d\u0438", "\u0458\u0443\u043b\u0438", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]), type$.JSArray_dynamic); C.List_MAi = H.setRuntimeTypeInfo(makeConstList(["\u0458\u0430\u043d.", "\u0444\u0435\u0432.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u0458", "\u0458\u0443\u043d.", "\u0458\u0443\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043f\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); C.List_SRb = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434\u0435\u043b\u0430", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a", "\u043f\u0435\u0442\u043e\u043a", "\u0441\u0430\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_zre = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434.", "\u043f\u043e\u043d.", "\u0432\u0442.", "\u0441\u0440\u0435.", "\u0447\u0435\u0442.", "\u043f\u0435\u0442.", "\u0441\u0430\u0431."]), type$.JSArray_dynamic); C.List_6QF = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434.", "\u043f\u043e\u043d.", "\u0432\u0442\u043e.", "\u0441\u0440\u0435.", "\u0447\u0435\u0442.", "\u043f\u0435\u0442.", "\u0441\u0430\u0431."]), type$.JSArray_dynamic); C.List_GNw = H.setRuntimeTypeInfo(makeConstList(["\u0458\u0430\u043d-\u043c\u0430\u0440", "\u0430\u043f\u0440-\u0458\u0443\u043d", "\u0458\u0443\u043b-\u0441\u0435\u043f", "\u043e\u043a\u0442-\u0434\u0435\u043a"]), type$.JSArray_dynamic); C.List_ouN0 = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0432\u0442\u043e\u0440\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0442\u0440\u0435\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435", "\u0447\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435"]), type$.JSArray_dynamic); C.List_TLI = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435", "\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435"]), type$.JSArray_dynamic); C.List_iTw = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd MMMM y", "dd MMMM y", "dd.M.y", "dd.M.yy"]), type$.JSArray_dynamic); C.Map_5totL = new H.ConstantStringMap(25, {NAME: "mk", ERAS: C.List_D34, ERANAMES: C.List_ud2, NARROWMONTHS: C.List_owA, STANDALONENARROWMONTHS: C.List_owA, MONTHS: C.List_2Rm0, STANDALONEMONTHS: C.List_2Rm0, SHORTMONTHS: C.List_MAi, STANDALONESHORTMONTHS: C.List_MAi, WEEKDAYS: C.List_SRb, STANDALONEWEEKDAYS: C.List_SRb, SHORTWEEKDAYS: C.List_zre, STANDALONESHORTWEEKDAYS: C.List_6QF, NARROWWEEKDAYS: C.List_H7P0, STANDALONENARROWWEEKDAYS: C.List_H7P0, SHORTQUARTERS: C.List_GNw, QUARTERS: C.List_ouN0, AMPMS: C.List_TLI, DATEFORMATS: C.List_iTw, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_aJW = H.setRuntimeTypeInfo(makeConstList(["\u0d15\u0d4d\u0d30\u0d3f.\u0d2e\u0d41.", "\u0d0e\u0d21\u0d3f"]), type$.JSArray_dynamic); C.List_g6I = H.setRuntimeTypeInfo(makeConstList(["\u0d15\u0d4d\u0d30\u0d3f\u0d38\u0d4d\u200c\u0d24\u0d41\u0d35\u0d3f\u0d28\u0d4d \u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d4d", "\u0d06\u0d28\u0d4d\u0d28\u0d4b \u0d21\u0d4a\u0d2e\u0d3f\u0d28\u0d3f"]), type$.JSArray_dynamic); C.List_MMc = H.setRuntimeTypeInfo(makeConstList(["\u0d1c", "\u0d2b\u0d46", "\u0d2e\u0d3e", "\u0d0f", "\u0d2e\u0d46", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42", "\u0d13", "\u0d38\u0d46", "\u0d12", "\u0d28", "\u0d21\u0d3f"]), type$.JSArray_dynamic); C.List_qa3 = H.setRuntimeTypeInfo(makeConstList(["\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f", "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f", "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d", "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d", "\u0d2e\u0d47\u0d2f\u0d4d", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42\u0d32\u0d48", "\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d", "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c", "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c", "\u0d28\u0d35\u0d02\u0d2c\u0d7c", "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c"]), type$.JSArray_dynamic); C.List_RtW = H.setRuntimeTypeInfo(makeConstList(["\u0d1c\u0d28\u0d41", "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41", "\u0d2e\u0d3e\u0d7c", "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f", "\u0d2e\u0d47\u0d2f\u0d4d", "\u0d1c\u0d42\u0d7a", "\u0d1c\u0d42\u0d32\u0d48", "\u0d13\u0d17", "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02", "\u0d12\u0d15\u0d4d\u0d1f\u0d4b", "\u0d28\u0d35\u0d02", "\u0d21\u0d3f\u0d38\u0d02"]), type$.JSArray_dynamic); C.List_aha = H.setRuntimeTypeInfo(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a", "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]), type$.JSArray_dynamic); C.List_TDm = H.setRuntimeTypeInfo(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a", "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]), type$.JSArray_dynamic); C.List_orL = H.setRuntimeTypeInfo(makeConstList(["\u0d1e\u0d3e\u0d2f\u0d7c", "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e", "\u0d1a\u0d4a\u0d35\u0d4d\u0d35", "\u0d2c\u0d41\u0d27\u0d7b", "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02", "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f", "\u0d36\u0d28\u0d3f"]), type$.JSArray_dynamic); C.List_wTA = H.setRuntimeTypeInfo(makeConstList(["\u0d1e", "\u0d24\u0d3f", "\u0d1a\u0d4a", "\u0d2c\u0d41", "\u0d35\u0d4d\u0d2f\u0d3e", "\u0d35\u0d46", "\u0d36"]), type$.JSArray_dynamic); C.List_5pq = H.setRuntimeTypeInfo(makeConstList(["\u0d1e\u0d3e", "\u0d24\u0d3f", "\u0d1a\u0d4a", "\u0d2c\u0d41", "\u0d35\u0d4d\u0d2f\u0d3e", "\u0d35\u0d46", "\u0d36"]), type$.JSArray_dynamic); C.List_evX = H.setRuntimeTypeInfo(makeConstList(["\u0d12\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d30\u0d23\u0d4d\u0d1f\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d2e\u0d42\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02", "\u0d28\u0d3e\u0d32\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02"]), type$.JSArray_dynamic); C.List_0Pw = H.setRuntimeTypeInfo(makeConstList(["y, MMMM d, EEEE", "y, MMMM d", "y, MMM d", "d/M/yy"]), type$.JSArray_dynamic); C.Map_5tivI = new H.ConstantStringMap(25, {NAME: "ml", ERAS: C.List_aJW, ERANAMES: C.List_g6I, NARROWMONTHS: C.List_MMc, STANDALONENARROWMONTHS: C.List_MMc, MONTHS: C.List_qa3, STANDALONEMONTHS: C.List_qa3, SHORTMONTHS: C.List_RtW, STANDALONESHORTMONTHS: C.List_RtW, WEEKDAYS: C.List_aha, STANDALONEWEEKDAYS: C.List_TDm, SHORTWEEKDAYS: C.List_orL, STANDALONESHORTWEEKDAYS: C.List_orL, NARROWWEEKDAYS: C.List_wTA, STANDALONENARROWWEEKDAYS: C.List_5pq, SHORTQUARTERS: C.List_evX, QUARTERS: C.List_evX, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_0Pw, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_S3R = H.setRuntimeTypeInfo(makeConstList(["\u041c\u042d\u04e8", "\u041c\u042d"]), type$.JSArray_dynamic); C.List_oqh = H.setRuntimeTypeInfo(makeConstList(["\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439 \u04e9\u043c\u043d\u04e9\u0445", "\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439"]), type$.JSArray_dynamic); C.List_U43 = H.setRuntimeTypeInfo(makeConstList(["I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"]), type$.JSArray_dynamic); C.List_MIe0 = H.setRuntimeTypeInfo(makeConstList(["\u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0433\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0434\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0442\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0437\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0434\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u043d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0435\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0430\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); C.List_cMx0 = H.setRuntimeTypeInfo(makeConstList(["\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0417\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); C.List_9Mo = H.setRuntimeTypeInfo(makeConstList(["1-\u0440 \u0441\u0430\u0440", "2-\u0440 \u0441\u0430\u0440", "3-\u0440 \u0441\u0430\u0440", "4-\u0440 \u0441\u0430\u0440", "5-\u0440 \u0441\u0430\u0440", "6-\u0440 \u0441\u0430\u0440", "7-\u0440 \u0441\u0430\u0440", "8-\u0440 \u0441\u0430\u0440", "9-\u0440 \u0441\u0430\u0440", "10-\u0440 \u0441\u0430\u0440", "11-\u0440 \u0441\u0430\u0440", "12-\u0440 \u0441\u0430\u0440"]), type$.JSArray_dynamic); C.List_xou = H.setRuntimeTypeInfo(makeConstList(["\u043d\u044f\u043c", "\u0434\u0430\u0432\u0430\u0430", "\u043c\u044f\u0433\u043c\u0430\u0440", "\u043b\u0445\u0430\u0433\u0432\u0430", "\u043f\u04af\u0440\u044d\u0432", "\u0431\u0430\u0430\u0441\u0430\u043d", "\u0431\u044f\u043c\u0431\u0430"]), type$.JSArray_dynamic); C.List_RkP = H.setRuntimeTypeInfo(makeConstList(["\u041d\u044f\u043c", "\u0414\u0430\u0432\u0430\u0430", "\u041c\u044f\u0433\u043c\u0430\u0440", "\u041b\u0445\u0430\u0433\u0432\u0430", "\u041f\u04af\u0440\u044d\u0432", "\u0411\u0430\u0430\u0441\u0430\u043d", "\u0411\u044f\u043c\u0431\u0430"]), type$.JSArray_dynamic); C.List_KPS = H.setRuntimeTypeInfo(makeConstList(["\u041d\u044f", "\u0414\u0430", "\u041c\u044f", "\u041b\u0445", "\u041f\u04af", "\u0411\u0430", "\u0411\u044f"]), type$.JSArray_dynamic); C.List_woc = H.setRuntimeTypeInfo(makeConstList(["I \u0443\u043b\u0438\u0440\u0430\u043b", "II \u0443\u043b\u0438\u0440\u0430\u043b", "III \u0443\u043b\u0438\u0440\u0430\u043b", "IV \u0443\u043b\u0438\u0440\u0430\u043b"]), type$.JSArray_dynamic); C.List_OXN = H.setRuntimeTypeInfo(makeConstList(["1-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "2-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "3-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b", "4-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b"]), type$.JSArray_dynamic); C.List_dOE = H.setRuntimeTypeInfo(makeConstList(["\u04af.\u04e9.", "\u04af.\u0445."]), type$.JSArray_dynamic); C.List_6tp = H.setRuntimeTypeInfo(makeConstList(["y.MM.dd, EEEE", "y.MM.dd", "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d", "y.MM.dd"]), type$.JSArray_dynamic); C.Map_5tMdN = new H.ConstantStringMap(25, {NAME: "mn", ERAS: C.List_S3R, ERANAMES: C.List_oqh, NARROWMONTHS: C.List_U43, STANDALONENARROWMONTHS: C.List_U43, MONTHS: C.List_MIe0, STANDALONEMONTHS: C.List_cMx0, SHORTMONTHS: C.List_9Mo, STANDALONESHORTMONTHS: C.List_9Mo, WEEKDAYS: C.List_xou, STANDALONEWEEKDAYS: C.List_RkP, SHORTWEEKDAYS: C.List_KPS, STANDALONESHORTWEEKDAYS: C.List_KPS, NARROWWEEKDAYS: C.List_KPS, STANDALONENARROWWEEKDAYS: C.List_KPS, SHORTQUARTERS: C.List_woc, QUARTERS: C.List_OXN, AMPMS: C.List_dOE, DATEFORMATS: C.List_6tp, TIMEFORMATS: C.List_unc, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_6hW = H.setRuntimeTypeInfo(makeConstList(["\u0907. \u0938. \u092a\u0942.", "\u0907. \u0938."]), type$.JSArray_dynamic); C.List_yw6 = H.setRuntimeTypeInfo(makeConstList(["\u0908\u0938\u0935\u0940\u0938\u0928\u092a\u0942\u0930\u094d\u0935", "\u0908\u0938\u0935\u0940\u0938\u0928"]), type$.JSArray_dynamic); C.List_YkH = H.setRuntimeTypeInfo(makeConstList(["\u091c\u093e", "\u092b\u0947", "\u092e\u093e", "\u090f", "\u092e\u0947", "\u091c\u0942", "\u091c\u0941", "\u0911", "\u0938", "\u0911", "\u0928\u094b", "\u0921\u093f"]), type$.JSArray_dynamic); C.List_0J8 = H.setRuntimeTypeInfo(makeConstList(["\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u090f\u092a\u094d\u0930\u093f\u0932", "\u092e\u0947", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0948", "\u0911\u0917\u0938\u094d\u091f", "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930", "\u0911\u0915\u094d\u091f\u094b\u092c\u0930", "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"]), type$.JSArray_dynamic); C.List_RyE = H.setRuntimeTypeInfo(makeConstList(["\u091c\u093e\u0928\u0947", "\u092b\u0947\u092c\u094d\u0930\u0941", "\u092e\u093e\u0930\u094d\u091a", "\u090f\u092a\u094d\u0930\u093f", "\u092e\u0947", "\u091c\u0942\u0928", "\u091c\u0941\u0932\u0948", "\u0911\u0917", "\u0938\u092a\u094d\u091f\u0947\u0902", "\u0911\u0915\u094d\u091f\u094b", "\u0928\u094b\u0935\u094d\u0939\u0947\u0902", "\u0921\u093f\u0938\u0947\u0902"]), type$.JSArray_dynamic); C.List_A4L = H.setRuntimeTypeInfo(makeConstList(["\u0930\u0935\u093f\u0935\u093e\u0930", "\u0938\u094b\u092e\u0935\u093e\u0930", "\u092e\u0902\u0917\u0933\u0935\u093e\u0930", "\u092c\u0941\u0927\u0935\u093e\u0930", "\u0917\u0941\u0930\u0941\u0935\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930", "\u0936\u0928\u093f\u0935\u093e\u0930"]), type$.JSArray_dynamic); C.List_Ug7 = H.setRuntimeTypeInfo(makeConstList(["\u0930\u0935\u093f", "\u0938\u094b\u092e", "\u092e\u0902\u0917\u0933", "\u092c\u0941\u0927", "\u0917\u0941\u0930\u0941", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); C.List_MUw1 = H.setRuntimeTypeInfo(makeConstList(["\u0924\u093f\u0967", "\u0924\u093f\u0968", "\u0924\u093f\u0969", "\u0924\u093f\u096a"]), type$.JSArray_dynamic); C.List_Kvb = H.setRuntimeTypeInfo(makeConstList(["\u092a\u094d\u0930\u0925\u092e \u0924\u093f\u092e\u093e\u0939\u0940", "\u0926\u094d\u0935\u093f\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940", "\u0924\u0943\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940", "\u091a\u0924\u0941\u0930\u094d\u0925 \u0924\u093f\u092e\u093e\u0939\u0940"]), type$.JSArray_dynamic); C.List_dzv = H.setRuntimeTypeInfo(makeConstList(["\u092e.\u092a\u0942.", "\u092e.\u0909."]), type$.JSArray_dynamic); C.List_6TA1 = H.setRuntimeTypeInfo(makeConstList(["{1} \u0930\u094b\u091c\u0940 {0}", "{1} \u0930\u094b\u091c\u0940 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_bHq0y = new H.ConstantStringMap(26, {NAME: "mr", ERAS: C.List_6hW, ERANAMES: C.List_yw6, NARROWMONTHS: C.List_YkH, STANDALONENARROWMONTHS: C.List_YkH, MONTHS: C.List_0J8, STANDALONEMONTHS: C.List_0J8, SHORTMONTHS: C.List_RyE, STANDALONESHORTMONTHS: C.List_RyE, WEEKDAYS: C.List_A4L, STANDALONEWEEKDAYS: C.List_A4L, SHORTWEEKDAYS: C.List_Ug7, STANDALONESHORTWEEKDAYS: C.List_Ug7, NARROWWEEKDAYS: C.List_Vfn, STANDALONENARROWWEEKDAYS: C.List_Vfn, SHORTQUARTERS: C.List_MUw1, QUARTERS: C.List_Kvb, AMPMS: C.List_dzv, DATEFORMATS: C.List_oYk, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_6TA1, ZERODIGIT: "\u0966"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EEy = H.setRuntimeTypeInfo(makeConstList(["S.M.", "TM"]), type$.JSArray_dynamic); C.List_CKW = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "A", "M", "J", "J", "O", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_urR = H.setRuntimeTypeInfo(makeConstList(["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"]), type$.JSArray_dynamic); C.List_USt = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"]), type$.JSArray_dynamic); C.List_NMc = H.setRuntimeTypeInfo(makeConstList(["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"]), type$.JSArray_dynamic); C.List_GVQ = H.setRuntimeTypeInfo(makeConstList(["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"]), type$.JSArray_dynamic); C.List_7eO = H.setRuntimeTypeInfo(makeConstList(["A", "I", "S", "R", "K", "J", "S"]), type$.JSArray_dynamic); C.List_S1_S2_S3_S4 = H.setRuntimeTypeInfo(makeConstList(["S1", "S2", "S3", "S4"]), type$.JSArray_dynamic); C.List_4AN1 = H.setRuntimeTypeInfo(makeConstList(["Suku pertama", "Suku Ke-2", "Suku Ke-3", "Suku Ke-4"]), type$.JSArray_dynamic); C.List_PG_PTG = H.setRuntimeTypeInfo(makeConstList(["PG", "PTG"]), type$.JSArray_dynamic); C.List_vWA = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d/MM/yy"]), type$.JSArray_dynamic); C.Map_5tmT8 = new H.ConstantStringMap(25, {NAME: "ms", ERAS: C.List_EEy, ERANAMES: C.List_EEy, NARROWMONTHS: C.List_CKW, STANDALONENARROWMONTHS: C.List_CKW, MONTHS: C.List_urR, STANDALONEMONTHS: C.List_urR, SHORTMONTHS: C.List_USt, STANDALONESHORTMONTHS: C.List_USt, WEEKDAYS: C.List_NMc, STANDALONEWEEKDAYS: C.List_NMc, SHORTWEEKDAYS: C.List_GVQ, STANDALONESHORTWEEKDAYS: C.List_GVQ, NARROWWEEKDAYS: C.List_7eO, STANDALONENARROWWEEKDAYS: C.List_7eO, SHORTQUARTERS: C.List_S1_S2_S3_S4, QUARTERS: C.List_4AN1, AMPMS: C.List_PG_PTG, DATEFORMATS: C.List_vWA, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_aYE0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_C4A = H.setRuntimeTypeInfo(makeConstList(["\u1018\u102e\u1005\u102e", "\u1021\u1012\u1031\u102e"]), type$.JSArray_dynamic); C.List_YYV = H.setRuntimeTypeInfo(makeConstList(["\u1001\u101b\u1005\u103a\u1010\u1031\u102c\u103a \u1019\u1015\u1031\u102b\u103a\u1019\u102e\u1014\u103e\u1005\u103a", "\u1001\u101b\u1005\u103a\u1014\u103e\u1005\u103a"]), type$.JSArray_dynamic); C.List_aPH = H.setRuntimeTypeInfo(makeConstList(["\u1007", "\u1016", "\u1019", "\u1027", "\u1019", "\u1007", "\u1007", "\u1029", "\u1005", "\u1021", "\u1014", "\u1012"]), type$.JSArray_dynamic); C.List_R3l = H.setRuntimeTypeInfo(makeConstList(["\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e", "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e", "\u1019\u1010\u103a", "\u1027\u1015\u103c\u102e", "\u1019\u1031", "\u1007\u103d\u1014\u103a", "\u1007\u1030\u101c\u102d\u102f\u1004\u103a", "\u1029\u1002\u102f\u1010\u103a", "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c", "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c", "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c", "\u1012\u102e\u1007\u1004\u103a\u1018\u102c"]), type$.JSArray_dynamic); C.List_6BD = H.setRuntimeTypeInfo(makeConstList(["\u1007\u1014\u103a", "\u1016\u1031", "\u1019\u1010\u103a", "\u1027", "\u1019\u1031", "\u1007\u103d\u1014\u103a", "\u1007\u1030", "\u1029", "\u1005\u1000\u103a", "\u1021\u1031\u102c\u1000\u103a", "\u1014\u102d\u102f", "\u1012\u102e"]), type$.JSArray_dynamic); C.List_xld = H.setRuntimeTypeInfo(makeConstList(["\u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031", "\u1010\u1014\u1004\u103a\u1039\u101c\u102c", "\u1021\u1004\u103a\u1039\u1002\u102b", "\u1017\u102f\u1012\u1039\u1013\u101f\u1030\u1038", "\u1000\u103c\u102c\u101e\u1015\u1010\u1031\u1038", "\u101e\u1031\u102c\u1000\u103c\u102c", "\u1005\u1014\u1031"]), type$.JSArray_dynamic); C.List_EyN = H.setRuntimeTypeInfo(makeConstList(["\u1010", "\u1010", "\u1021", "\u1017", "\u1000", "\u101e", "\u1005"]), type$.JSArray_dynamic); C.List_011 = H.setRuntimeTypeInfo(makeConstList(["\u1015\u1011\u1019 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1012\u102f\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1010\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a", "\u1005\u1010\u102f\u1010\u1039\u1011 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a"]), type$.JSArray_dynamic); C.List_OXJ0 = H.setRuntimeTypeInfo(makeConstList(["\u1014\u1036\u1014\u1000\u103a", "\u100a\u1014\u1031"]), type$.JSArray_dynamic); C.List_3bx = H.setRuntimeTypeInfo(makeConstList(["y\u104a MMMM d\u104a EEEE", "y\u104a d MMMM", "y\u104a MMM d", "dd-MM-yy"]), type$.JSArray_dynamic); C.List_2jN0 = H.setRuntimeTypeInfo(makeConstList(["zzzz HH:mm:ss", "z HH:mm:ss", "B HH:mm:ss", "B H:mm"]), type$.JSArray_dynamic); C.Map_bHCt8 = new H.ConstantStringMap(26, {NAME: "my", ERAS: C.List_C4A, ERANAMES: C.List_YYV, NARROWMONTHS: C.List_aPH, STANDALONENARROWMONTHS: C.List_aPH, MONTHS: C.List_R3l, STANDALONEMONTHS: C.List_R3l, SHORTMONTHS: C.List_6BD, STANDALONESHORTMONTHS: C.List_6BD, WEEKDAYS: C.List_xld, STANDALONEWEEKDAYS: C.List_xld, SHORTWEEKDAYS: C.List_xld, STANDALONESHORTWEEKDAYS: C.List_xld, NARROWWEEKDAYS: C.List_EyN, STANDALONENARROWWEEKDAYS: C.List_EyN, SHORTQUARTERS: C.List_011, QUARTERS: C.List_011, AMPMS: C.List_OXJ0, DATEFORMATS: C.List_3bx, TIMEFORMATS: C.List_2jN0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss, ZERODIGIT: "\u1040"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_wQ8 = H.setRuntimeTypeInfo(makeConstList(["f\xf8r Kristus", "etter Kristus"]), type$.JSArray_dynamic); C.List_si8 = H.setRuntimeTypeInfo(makeConstList(["januar", "februar", "mars", "april", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember"]), type$.JSArray_dynamic); C.List_qrV = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mar.", "apr.", "mai", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "des."]), type$.JSArray_dynamic); C.List_gA4 = H.setRuntimeTypeInfo(makeConstList(["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"]), type$.JSArray_dynamic); C.List_c4f = H.setRuntimeTypeInfo(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. MMM y", "dd.MM.y"]), type$.JSArray_dynamic); C.List_dwF = H.setRuntimeTypeInfo(makeConstList(["{1} {0}", "{1} 'kl'. {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tkOw = new H.ConstantStringMap(25, {NAME: "nb", ERAS: C.List_OPD, ERANAMES: C.List_wQ8, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_si8, STANDALONEMONTHS: C.List_si8, SHORTMONTHS: C.List_qrV, STANDALONESHORTMONTHS: C.List_gA4, WEEKDAYS: C.List_Ufe, STANDALONEWEEKDAYS: C.List_Ufe, SHORTWEEKDAYS: C.List_zPU, STANDALONESHORTWEEKDAYS: C.List_zPU, NARROWWEEKDAYS: C.List_GVy, STANDALONENARROWWEEKDAYS: C.List_GVy, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_wg3, AMPMS: C.List_2fJ, DATEFORMATS: C.List_c4f, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_dwF}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_AKu = H.setRuntimeTypeInfo(makeConstList(["\u0908\u0938\u093e \u092a\u0942\u0930\u094d\u0935", "\u0938\u0928\u094d"]), type$.JSArray_dynamic); C.List_meg = H.setRuntimeTypeInfo(makeConstList(["\u091c\u0928", "\u092b\u0947\u092c", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932", "\u0905\u0917", "\u0938\u0947\u092a", "\u0905\u0915\u094d\u091f\u094b", "\u0928\u094b\u092d\u0947", "\u0921\u093f\u0938\u0947"]), type$.JSArray_dynamic); C.List_oyU1 = H.setRuntimeTypeInfo(makeConstList(["\u091c\u0928", "\u092b\u0947\u0947\u092c", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932", "\u0905\u0917", "\u0938\u0947\u092a", "\u0905\u0915\u094d\u091f\u094b", "\u0928\u094b\u092d\u0947", "\u0921\u093f\u0938\u0947"]), type$.JSArray_dynamic); C.List_mtl = H.setRuntimeTypeInfo(makeConstList(["\u091c\u0928\u0935\u0930\u0940", "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940", "\u092e\u093e\u0930\u094d\u091a", "\u0905\u092a\u094d\u0930\u093f\u0932", "\u092e\u0947", "\u091c\u0941\u0928", "\u091c\u0941\u0932\u093e\u0908", "\u0905\u0917\u0938\u094d\u091f", "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930", "\u0905\u0915\u094d\u091f\u094b\u092c\u0930", "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"]), type$.JSArray_dynamic); C.List_KqP = H.setRuntimeTypeInfo(makeConstList(["\u0906\u0907\u0924\u092c\u093e\u0930", "\u0938\u094b\u092e\u092c\u093e\u0930", "\u092e\u0919\u094d\u0917\u0932\u092c\u093e\u0930", "\u092c\u0941\u0927\u092c\u093e\u0930", "\u092c\u093f\u0939\u093f\u092c\u093e\u0930", "\u0936\u0941\u0915\u094d\u0930\u092c\u093e\u0930", "\u0936\u0928\u093f\u092c\u093e\u0930"]), type$.JSArray_dynamic); C.List_Y6W = H.setRuntimeTypeInfo(makeConstList(["\u0906\u0907\u0924", "\u0938\u094b\u092e", "\u092e\u0919\u094d\u0917\u0932", "\u092c\u0941\u0927", "\u092c\u093f\u0939\u093f", "\u0936\u0941\u0915\u094d\u0930", "\u0936\u0928\u093f"]), type$.JSArray_dynamic); C.List_Dh9 = H.setRuntimeTypeInfo(makeConstList(["\u0906", "\u0938\u094b", "\u092e", "\u092c\u0941", "\u092c\u093f", "\u0936\u0941", "\u0936"]), type$.JSArray_dynamic); C.List_KT6 = H.setRuntimeTypeInfo(makeConstList(["\u092a\u0939\u093f\u0932\u094b \u0938\u0924\u094d\u0930", "\u0926\u094b\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930", "\u0924\u0947\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930", "\u091a\u094c\u0925\u094b \u0938\u0924\u094d\u0930"]), type$.JSArray_dynamic); C.List_4G4 = H.setRuntimeTypeInfo(makeConstList(["\u092a\u0942\u0930\u094d\u0935\u093e\u0939\u094d\u0928", "\u0905\u092a\u0930\u093e\u0939\u094d\u0928"]), type$.JSArray_dynamic); C.List_E8w = H.setRuntimeTypeInfo(makeConstList(["y MMMM d, EEEE", "y MMMM d", "y MMM d", "yy/M/d"]), type$.JSArray_dynamic); C.Map_bHcMD = new H.ConstantStringMap(26, {NAME: "ne", ERAS: C.List_AKu, ERANAMES: C.List_AKu, NARROWMONTHS: C.List_meg, STANDALONENARROWMONTHS: C.List_oyU1, MONTHS: C.List_mtl, STANDALONEMONTHS: C.List_mtl, SHORTMONTHS: C.List_mtl, STANDALONESHORTMONTHS: C.List_mtl, WEEKDAYS: C.List_KqP, STANDALONEWEEKDAYS: C.List_KqP, SHORTWEEKDAYS: C.List_Y6W, STANDALONESHORTWEEKDAYS: C.List_Y6W, NARROWWEEKDAYS: C.List_Dh9, STANDALONENARROWWEEKDAYS: C.List_Dh9, SHORTQUARTERS: C.List_KT6, QUARTERS: C.List_KT6, AMPMS: C.List_4G4, DATEFORMATS: C.List_E8w, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_aYE0, ZERODIGIT: "\u0966"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_UAu = H.setRuntimeTypeInfo(makeConstList(["v.Chr.", "n.Chr."]), type$.JSArray_dynamic); C.List_DjL = H.setRuntimeTypeInfo(makeConstList(["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); C.List_Slt = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mrt.", "apr.", "mei", "jun.", "jul.", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_oM3 = H.setRuntimeTypeInfo(makeConstList(["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"]), type$.JSArray_dynamic); C.List_HYo = H.setRuntimeTypeInfo(makeConstList(["zo", "ma", "di", "wo", "do", "vr", "za"]), type$.JSArray_dynamic); C.List_KB7 = H.setRuntimeTypeInfo(makeConstList(["Z", "M", "D", "W", "D", "V", "Z"]), type$.JSArray_dynamic); C.List_nha = H.setRuntimeTypeInfo(makeConstList(["1e kwartaal", "2e kwartaal", "3e kwartaal", "4e kwartaal"]), type$.JSArray_dynamic); C.List_6Zu = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "dd-MM-y"]), type$.JSArray_dynamic); C.List_WRg = H.setRuntimeTypeInfo(makeConstList(["{1} 'om' {0}", "{1} 'om' {0}", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5t5gb = new H.ConstantStringMap(25, {NAME: "nl", ERAS: C.List_UAu, ERANAMES: C.List_5VO, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_DjL, STANDALONEMONTHS: C.List_DjL, SHORTMONTHS: C.List_Slt, STANDALONESHORTMONTHS: C.List_Slt, WEEKDAYS: C.List_oM3, STANDALONEWEEKDAYS: C.List_oM3, SHORTWEEKDAYS: C.List_HYo, STANDALONESHORTWEEKDAYS: C.List_HYo, NARROWWEEKDAYS: C.List_KB7, STANDALONENARROWWEEKDAYS: C.List_KB7, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_nha, AMPMS: C.List_2fJ, DATEFORMATS: C.List_6Zu, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_WRg}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_5tJNA = new H.ConstantStringMap(25, {NAME: "no", ERAS: C.List_OPD, ERANAMES: C.List_wQ8, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_si8, STANDALONEMONTHS: C.List_si8, SHORTMONTHS: C.List_qrV, STANDALONESHORTMONTHS: C.List_gA4, WEEKDAYS: C.List_Ufe, STANDALONEWEEKDAYS: C.List_Ufe, SHORTWEEKDAYS: C.List_zPU, STANDALONESHORTWEEKDAYS: C.List_zPU, NARROWWEEKDAYS: C.List_GVy, STANDALONENARROWWEEKDAYS: C.List_GVy, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_wg3, AMPMS: C.List_2fJ, DATEFORMATS: C.List_c4f, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_dwF}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EDI = H.setRuntimeTypeInfo(makeConstList(["\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b2a\u0b42\u0b30\u0b4d\u0b2c", "\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b3e\u0b2c\u0b4d\u0b26"]), type$.JSArray_dynamic); C.List_Q92 = H.setRuntimeTypeInfo(makeConstList(["\u0b1c\u0b3e", "\u0b2b\u0b47", "\u0b2e\u0b3e", "\u0b05", "\u0b2e\u0b07", "\u0b1c\u0b41", "\u0b1c\u0b41", "\u0b05", "\u0b38\u0b47", "\u0b05", "\u0b28", "\u0b21\u0b3f"]), type$.JSArray_dynamic); C.List_ICQ = H.setRuntimeTypeInfo(makeConstList(["\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40", "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40", "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a", "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32", "\u0b2e\u0b07", "\u0b1c\u0b41\u0b28", "\u0b1c\u0b41\u0b32\u0b3e\u0b07", "\u0b05\u0b17\u0b37\u0b4d\u0b1f", "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30", "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"]), type$.JSArray_dynamic); C.List_oqK = H.setRuntimeTypeInfo(makeConstList(["\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30", "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30", "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30", "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30", "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30", "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30", "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"]), type$.JSArray_dynamic); C.List_QZE = H.setRuntimeTypeInfo(makeConstList(["\u0b30\u0b2c\u0b3f", "\u0b38\u0b4b\u0b2e", "\u0b2e\u0b19\u0b4d\u0b17\u0b33", "\u0b2c\u0b41\u0b27", "\u0b17\u0b41\u0b30\u0b41", "\u0b36\u0b41\u0b15\u0b4d\u0b30", "\u0b36\u0b28\u0b3f"]), type$.JSArray_dynamic); C.List_oYZ = H.setRuntimeTypeInfo(makeConstList(["\u0b30", "\u0b38\u0b4b", "\u0b2e", "\u0b2c\u0b41", "\u0b17\u0b41", "\u0b36\u0b41", "\u0b36"]), type$.JSArray_dynamic); C.List_5zb = H.setRuntimeTypeInfo(makeConstList(["1\u0b2e \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "2\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "3\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38", "4\u0b30\u0b4d\u0b25 \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38"]), type$.JSArray_dynamic); C.List_oU4 = H.setRuntimeTypeInfo(makeConstList(["{0} \u0b20\u0b3e\u0b30\u0b47 {1}", "{0} \u0b20\u0b3e\u0b30\u0b47 {1}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tQ49 = new H.ConstantStringMap(25, {NAME: "or", ERAS: C.List_BC_AD0, ERANAMES: C.List_EDI, NARROWMONTHS: C.List_Q92, STANDALONENARROWMONTHS: C.List_Q92, MONTHS: C.List_ICQ, STANDALONEMONTHS: C.List_ICQ, SHORTMONTHS: C.List_ICQ, STANDALONESHORTMONTHS: C.List_ICQ, WEEKDAYS: C.List_oqK, STANDALONEWEEKDAYS: C.List_oqK, SHORTWEEKDAYS: C.List_QZE, STANDALONESHORTWEEKDAYS: C.List_QZE, NARROWWEEKDAYS: C.List_oYZ, STANDALONENARROWWEEKDAYS: C.List_oYZ, SHORTQUARTERS: C.List_5zb, QUARTERS: C.List_5zb, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_oU4}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_wnc = H.setRuntimeTypeInfo(makeConstList(["\u0a08. \u0a2a\u0a42.", "\u0a38\u0a70\u0a28"]), type$.JSArray_dynamic); C.List_8Ac = H.setRuntimeTypeInfo(makeConstList(["\u0a08\u0a38\u0a35\u0a40 \u0a2a\u0a42\u0a30\u0a35", "\u0a08\u0a38\u0a35\u0a40 \u0a38\u0a70\u0a28"]), type$.JSArray_dynamic); C.List_0m2 = H.setRuntimeTypeInfo(makeConstList(["\u0a1c", "\u0a2b\u0a3c", "\u0a2e\u0a3e", "\u0a05", "\u0a2e", "\u0a1c\u0a42", "\u0a1c\u0a41", "\u0a05", "\u0a38", "\u0a05", "\u0a28", "\u0a26"]), type$.JSArray_dynamic); C.List_ss1 = H.setRuntimeTypeInfo(makeConstList(["\u0a1c\u0a28\u0a35\u0a30\u0a40", "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40", "\u0a2e\u0a3e\u0a30\u0a1a", "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32", "\u0a2e\u0a08", "\u0a1c\u0a42\u0a28", "\u0a1c\u0a41\u0a32\u0a3e\u0a08", "\u0a05\u0a17\u0a38\u0a24", "\u0a38\u0a24\u0a70\u0a2c\u0a30", "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30", "\u0a28\u0a35\u0a70\u0a2c\u0a30", "\u0a26\u0a38\u0a70\u0a2c\u0a30"]), type$.JSArray_dynamic); C.List_AqM0 = H.setRuntimeTypeInfo(makeConstList(["\u0a1c\u0a28", "\u0a2b\u0a3c\u0a30", "\u0a2e\u0a3e\u0a30\u0a1a", "\u0a05\u0a2a\u0a4d\u0a30\u0a48", "\u0a2e\u0a08", "\u0a1c\u0a42\u0a28", "\u0a1c\u0a41\u0a32\u0a3e", "\u0a05\u0a17", "\u0a38\u0a24\u0a70", "\u0a05\u0a15\u0a24\u0a42", "\u0a28\u0a35\u0a70", "\u0a26\u0a38\u0a70"]), type$.JSArray_dynamic); C.List_O1M = H.setRuntimeTypeInfo(makeConstList(["\u0a10\u0a24\u0a35\u0a3e\u0a30", "\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30", "\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30", "\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30", "\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30", "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30", "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"]), type$.JSArray_dynamic); C.List_012 = H.setRuntimeTypeInfo(makeConstList(["\u0a10\u0a24", "\u0a38\u0a4b\u0a2e", "\u0a2e\u0a70\u0a17\u0a32", "\u0a2c\u0a41\u0a71\u0a27", "\u0a35\u0a40\u0a30", "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30", "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"]), type$.JSArray_dynamic); C.List_inH = H.setRuntimeTypeInfo(makeConstList(["\u0a10", "\u0a38\u0a4b", "\u0a2e\u0a70", "\u0a2c\u0a41\u0a71", "\u0a35\u0a40", "\u0a38\u0a3c\u0a41\u0a71", "\u0a38\u0a3c"]), type$.JSArray_dynamic); C.List_O5L = H.setRuntimeTypeInfo(makeConstList(["\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a401", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a402", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a403", "\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a404"]), type$.JSArray_dynamic); C.List_DFX = H.setRuntimeTypeInfo(makeConstList(["\u0a2a\u0a39\u0a3f\u0a32\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a26\u0a42\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a24\u0a40\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40", "\u0a1a\u0a4c\u0a25\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40"]), type$.JSArray_dynamic); C.List_S40 = H.setRuntimeTypeInfo(makeConstList(["\u0a2a\u0a42.\u0a26\u0a41.", "\u0a2c\u0a3e.\u0a26\u0a41."]), type$.JSArray_dynamic); C.Map_5tR3l = new H.ConstantStringMap(25, {NAME: "pa", ERAS: C.List_wnc, ERANAMES: C.List_8Ac, NARROWMONTHS: C.List_0m2, STANDALONENARROWMONTHS: C.List_0m2, MONTHS: C.List_ss1, STANDALONEMONTHS: C.List_ss1, SHORTMONTHS: C.List_AqM0, STANDALONESHORTMONTHS: C.List_AqM0, WEEKDAYS: C.List_O1M, STANDALONEWEEKDAYS: C.List_O1M, SHORTWEEKDAYS: C.List_012, STANDALONESHORTWEEKDAYS: C.List_012, NARROWWEEKDAYS: C.List_inH, STANDALONENARROWWEEKDAYS: C.List_inH, SHORTQUARTERS: C.List_O5L, QUARTERS: C.List_DFX, AMPMS: C.List_S40, DATEFORMATS: C.List_INh, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_aYE0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ASc0 = H.setRuntimeTypeInfo(makeConstList(["p.n.e.", "n.e."]), type$.JSArray_dynamic); C.List_Ctr = H.setRuntimeTypeInfo(makeConstList(["przed nasz\u0105 er\u0105", "naszej ery"]), type$.JSArray_dynamic); C.List_Rss0 = H.setRuntimeTypeInfo(makeConstList(["s", "l", "m", "k", "m", "c", "l", "s", "w", "p", "l", "g"]), type$.JSArray_dynamic); C.List_qBr = H.setRuntimeTypeInfo(makeConstList(["S", "L", "M", "K", "M", "C", "L", "S", "W", "P", "L", "G"]), type$.JSArray_dynamic); C.List_EK0 = H.setRuntimeTypeInfo(makeConstList(["stycznia", "lutego", "marca", "kwietnia", "maja", "czerwca", "lipca", "sierpnia", "wrze\u015bnia", "pa\u017adziernika", "listopada", "grudnia"]), type$.JSArray_dynamic); C.List_Zgr = H.setRuntimeTypeInfo(makeConstList(["stycze\u0144", "luty", "marzec", "kwiecie\u0144", "maj", "czerwiec", "lipiec", "sierpie\u0144", "wrzesie\u0144", "pa\u017adziernik", "listopad", "grudzie\u0144"]), type$.JSArray_dynamic); C.List_8YE = H.setRuntimeTypeInfo(makeConstList(["sty", "lut", "mar", "kwi", "maj", "cze", "lip", "sie", "wrz", "pa\u017a", "lis", "gru"]), type$.JSArray_dynamic); C.List_GRv = H.setRuntimeTypeInfo(makeConstList(["niedziela", "poniedzia\u0142ek", "wtorek", "\u015broda", "czwartek", "pi\u0105tek", "sobota"]), type$.JSArray_dynamic); C.List_ww8140 = H.setRuntimeTypeInfo(makeConstList(["niedz.", "pon.", "wt.", "\u015br.", "czw.", "pt.", "sob."]), type$.JSArray_dynamic); C.List_QXb = H.setRuntimeTypeInfo(makeConstList(["n", "p", "w", "\u015b", "c", "p", "s"]), type$.JSArray_dynamic); C.List_Df0 = H.setRuntimeTypeInfo(makeConstList(["N", "P", "W", "\u015a", "C", "P", "S"]), type$.JSArray_dynamic); C.List_AeS = H.setRuntimeTypeInfo(makeConstList(["I kw.", "II kw.", "III kw.", "IV kw."]), type$.JSArray_dynamic); C.List_TLf = H.setRuntimeTypeInfo(makeConstList(["I kwarta\u0142", "II kwarta\u0142", "III kwarta\u0142", "IV kwarta\u0142"]), type$.JSArray_dynamic); C.List_799 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "dd.MM.y"]), type$.JSArray_dynamic); C.Map_5tK5H = new H.ConstantStringMap(25, {NAME: "pl", ERAS: C.List_ASc0, ERANAMES: C.List_Ctr, NARROWMONTHS: C.List_Rss0, STANDALONENARROWMONTHS: C.List_qBr, MONTHS: C.List_EK0, STANDALONEMONTHS: C.List_Zgr, SHORTMONTHS: C.List_8YE, STANDALONESHORTMONTHS: C.List_8YE, WEEKDAYS: C.List_GRv, STANDALONEWEEKDAYS: C.List_GRv, SHORTWEEKDAYS: C.List_ww8140, STANDALONESHORTWEEKDAYS: C.List_ww8140, NARROWWEEKDAYS: C.List_QXb, STANDALONENARROWWEEKDAYS: C.List_Df0, SHORTQUARTERS: C.List_AeS, QUARTERS: C.List_TLf, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_799, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_aYE0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_MfQ = H.setRuntimeTypeInfo(makeConstList(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0648\u0693\u0627\u0646\u062f\u06d0", "\u0645."]), type$.JSArray_dynamic); C.List_GAn = H.setRuntimeTypeInfo(makeConstList(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0693\u0627\u0646\u062f\u06d0", "\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0631\u0648\u0633\u062a\u0647"]), type$.JSArray_dynamic); C.List_WjJ = H.setRuntimeTypeInfo(makeConstList(["\u062c", "\u0641", "\u0645", "\u0627", "\u0645", "\u062c", "\u062c", "\u0627", "\u0633", "\u0627", "\u0646", "\u062f"]), type$.JSArray_dynamic); C.List_7uu = H.setRuntimeTypeInfo(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u06d0\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_YyH = H.setRuntimeTypeInfo(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u06d0\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_k0n = H.setRuntimeTypeInfo(makeConstList(["\u062c\u0646\u0648\u0631\u064a", "\u0641\u0628\u0631\u0648\u0631\u064a", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u06cd", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u067e\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_v1F = H.setRuntimeTypeInfo(makeConstList(["\u064a\u0648\u0646\u06cd", "\u062f\u0648\u0646\u06cd", "\u062f\u0631\u06d0\u0646\u06cd", "\u0685\u0644\u0631\u0646\u06cd", "\u067e\u064a\u0646\u0681\u0646\u06cd", "\u062c\u0645\u0639\u0647", "\u0627\u0648\u0646\u06cd"]), type$.JSArray_dynamic); C.List_rBE = H.setRuntimeTypeInfo(makeConstList(["\u0644\u0648\u0645\u0693\u06cd \u0631\u0628\u0639\u0647", "\u06f2\u0645\u0647 \u0631\u0628\u0639\u0647", "\u06f3\u0645\u0647 \u0631\u0628\u0639\u0647", "\u06f4\u0645\u0647 \u0631\u0628\u0639\u0647"]), type$.JSArray_dynamic); C.List_maI = H.setRuntimeTypeInfo(makeConstList(["\u063a.\u0645.", "\u063a.\u0648."]), type$.JSArray_dynamic); C.List_zlK = H.setRuntimeTypeInfo(makeConstList(["EEEE \u062f y \u062f MMMM d", "\u062f y \u062f MMMM d", "y MMM d", "y/M/d"]), type$.JSArray_dynamic); C.List_3_4 = H.setRuntimeTypeInfo(makeConstList([3, 4]), type$.JSArray_dynamic); C.Map_bHm6K = new H.ConstantStringMap(26, {NAME: "ps", ERAS: C.List_MfQ, ERANAMES: C.List_GAn, NARROWMONTHS: C.List_WjJ, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_7uu, STANDALONEMONTHS: C.List_YyH, SHORTMONTHS: C.List_7uu, STANDALONESHORTMONTHS: C.List_k0n, WEEKDAYS: C.List_v1F, STANDALONEWEEKDAYS: C.List_v1F, SHORTWEEKDAYS: C.List_v1F, STANDALONESHORTWEEKDAYS: C.List_v1F, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_rBE, QUARTERS: C.List_rBE, AMPMS: C.List_maI, DATEFORMATS: C.List_zlK, TIMEFORMATS: C.List_GxC, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 5, WEEKENDRANGE: C.List_3_4, FIRSTWEEKCUTOFFDAY: 4, DATETIMEFORMATS: C.List_Pss, ZERODIGIT: "\u06f0"}, C.List_bHr, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_AHF0 = H.setRuntimeTypeInfo(makeConstList(["antes de Cristo", "depois de Cristo"]), type$.JSArray_dynamic); C.List_UOW = H.setRuntimeTypeInfo(makeConstList(["janeiro", "fevereiro", "mar\xe7o", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"]), type$.JSArray_dynamic); C.List_4CA0 = H.setRuntimeTypeInfo(makeConstList(["jan", "fev", "mar", "abr", "mai", "jun", "jul", "ago", "set", "out", "nov", "dez"]), type$.JSArray_dynamic); C.List_izW = H.setRuntimeTypeInfo(makeConstList(["domingo", "segunda-feira", "ter\xe7a-feira", "quarta-feira", "quinta-feira", "sexta-feira", "s\xe1bado"]), type$.JSArray_dynamic); C.List_wAg0 = H.setRuntimeTypeInfo(makeConstList(["dom", "seg", "ter", "qua", "qui", "sex", "s\xe1b"]), type$.JSArray_dynamic); C.List_42w = H.setRuntimeTypeInfo(makeConstList(["D", "S", "T", "Q", "Q", "S", "S"]), type$.JSArray_dynamic); C.List_Mvk = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "d 'de' MMM 'de' y", "dd/MM/y"]), type$.JSArray_dynamic); C.Map_5tq5f = new H.ConstantStringMap(25, {NAME: "pt", ERAS: C.List_2No2, ERANAMES: C.List_AHF0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_UOW, STANDALONEMONTHS: C.List_UOW, SHORTMONTHS: C.List_4CA0, STANDALONESHORTMONTHS: C.List_4CA0, WEEKDAYS: C.List_izW, STANDALONEWEEKDAYS: C.List_izW, SHORTWEEKDAYS: C.List_wAg0, STANDALONESHORTWEEKDAYS: C.List_wAg0, NARROWWEEKDAYS: C.List_42w, STANDALONENARROWWEEKDAYS: C.List_42w, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_i7B1, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_Mvk, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_RsV2 = H.setRuntimeTypeInfo(makeConstList(["domingo", "segunda", "ter\xe7a", "quarta", "quinta", "sexta", "s\xe1bado"]), type$.JSArray_dynamic); C.List_6vI = H.setRuntimeTypeInfo(makeConstList(["da manh\xe3", "da tarde"]), type$.JSArray_dynamic); C.List_ODT = H.setRuntimeTypeInfo(makeConstList(["EEEE, d 'de' MMMM 'de' y", "d 'de' MMMM 'de' y", "dd/MM/y", "dd/MM/yy"]), type$.JSArray_dynamic); C.List_gQW0 = H.setRuntimeTypeInfo(makeConstList(["{1} '\xe0s' {0}", "{1} '\xe0s' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5t8IM = new H.ConstantStringMap(25, {NAME: "pt_PT", ERAS: C.List_2No2, ERANAMES: C.List_AHF0, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_UOW, STANDALONEMONTHS: C.List_UOW, SHORTMONTHS: C.List_4CA0, STANDALONESHORTMONTHS: C.List_4CA0, WEEKDAYS: C.List_izW, STANDALONEWEEKDAYS: C.List_izW, SHORTWEEKDAYS: C.List_RsV2, STANDALONESHORTWEEKDAYS: C.List_RsV2, NARROWWEEKDAYS: C.List_42w, STANDALONENARROWWEEKDAYS: C.List_42w, SHORTQUARTERS: C.List_T1_T2_T3_T4, QUARTERS: C.List_GfX, AMPMS: C.List_6vI, DATEFORMATS: C.List_ODT, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 2, DATETIMEFORMATS: C.List_gQW0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_cMd = H.setRuntimeTypeInfo(makeConstList(["\xee.Hr.", "d.Hr."]), type$.JSArray_dynamic); C.List_435 = H.setRuntimeTypeInfo(makeConstList(["\xeenainte de Hristos", "dup\u0103 Hristos"]), type$.JSArray_dynamic); C.List_woc0 = H.setRuntimeTypeInfo(makeConstList(["I", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_xKE = H.setRuntimeTypeInfo(makeConstList(["ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie"]), type$.JSArray_dynamic); C.List_JmU = H.setRuntimeTypeInfo(makeConstList(["ian.", "feb.", "mar.", "apr.", "mai", "iun.", "iul.", "aug.", "sept.", "oct.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_woc1 = H.setRuntimeTypeInfo(makeConstList(["duminic\u0103", "luni", "mar\u021bi", "miercuri", "joi", "vineri", "s\xe2mb\u0103t\u0103"]), type$.JSArray_dynamic); C.List_Y7S = H.setRuntimeTypeInfo(makeConstList(["dum.", "lun.", "mar.", "mie.", "joi", "vin.", "s\xe2m."]), type$.JSArray_dynamic); C.List_cI2 = H.setRuntimeTypeInfo(makeConstList(["trim. I", "trim. II", "trim. III", "trim. IV"]), type$.JSArray_dynamic); C.List_2jN1 = H.setRuntimeTypeInfo(makeConstList(["trimestrul I", "trimestrul al II-lea", "trimestrul al III-lea", "trimestrul al IV-lea"]), type$.JSArray_dynamic); C.Map_5teC6 = new H.ConstantStringMap(25, {NAME: "ro", ERAS: C.List_cMd, ERANAMES: C.List_435, NARROWMONTHS: C.List_woc0, STANDALONENARROWMONTHS: C.List_woc0, MONTHS: C.List_xKE, STANDALONEMONTHS: C.List_xKE, SHORTMONTHS: C.List_JmU, STANDALONESHORTMONTHS: C.List_JmU, WEEKDAYS: C.List_woc1, STANDALONEWEEKDAYS: C.List_woc1, SHORTWEEKDAYS: C.List_Y7S, STANDALONESHORTWEEKDAYS: C.List_Y7S, NARROWWEEKDAYS: C.List_ROW, STANDALONENARROWWEEKDAYS: C.List_ROW, SHORTQUARTERS: C.List_cI2, QUARTERS: C.List_2jN1, AMPMS: C.List_2fJ, DATEFORMATS: C.List_799, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ijv = H.setRuntimeTypeInfo(makeConstList(["\u0434\u043e \u043d. \u044d.", "\u043d. \u044d."]), type$.JSArray_dynamic); C.List_qH7 = H.setRuntimeTypeInfo(makeConstList(["\u0434\u043e \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430", "\u043e\u0442 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430"]), type$.JSArray_dynamic); C.List_aAe = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0432\u0430\u0440\u044f", "\u0444\u0435\u0432\u0440\u0430\u043b\u044f", "\u043c\u0430\u0440\u0442\u0430", "\u0430\u043f\u0440\u0435\u043b\u044f", "\u043c\u0430\u044f", "\u0438\u044e\u043d\u044f", "\u0438\u044e\u043b\u044f", "\u0430\u0432\u0433\u0443\u0441\u0442\u0430", "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f", "\u043e\u043a\u0442\u044f\u0431\u0440\u044f", "\u043d\u043e\u044f\u0431\u0440\u044f", "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"]), type$.JSArray_dynamic); C.List_QWq = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432\u0440.", "\u043c\u0430\u0440.", "\u0430\u043f\u0440.", "\u043c\u0430\u044f", "\u0438\u044e\u043d.", "\u0438\u044e\u043b.", "\u0430\u0432\u0433.", "\u0441\u0435\u043d\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); C.List_6Wo = H.setRuntimeTypeInfo(makeConstList(["\u044f\u043d\u0432.", "\u0444\u0435\u0432\u0440.", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440.", "\u043c\u0430\u0439", "\u0438\u044e\u043d\u044c", "\u0438\u044e\u043b\u044c", "\u0430\u0432\u0433.", "\u0441\u0435\u043d\u0442.", "\u043e\u043a\u0442.", "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a."]), type$.JSArray_dynamic); C.List_mpd = H.setRuntimeTypeInfo(makeConstList(["\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0435\u0440\u0433", "\u043f\u044f\u0442\u043d\u0438\u0446\u0430", "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_0Lp = H.setRuntimeTypeInfo(makeConstList(["\u0432\u0441", "\u043f\u043d", "\u0432\u0442", "\u0441\u0440", "\u0447\u0442", "\u043f\u0442", "\u0441\u0431"]), type$.JSArray_dynamic); C.List_gA40 = H.setRuntimeTypeInfo(makeConstList(["\u0412", "\u041f", "\u0412", "\u0421", "\u0427", "\u041f", "\u0421"]), type$.JSArray_dynamic); C.List_wcW = H.setRuntimeTypeInfo(makeConstList(["1-\u0439 \u043a\u0432.", "2-\u0439 \u043a\u0432.", "3-\u0439 \u043a\u0432.", "4-\u0439 \u043a\u0432."]), type$.JSArray_dynamic); C.List_c3X = H.setRuntimeTypeInfo(makeConstList(["1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); C.List_VWt = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y '\u0433'.", "d MMMM y '\u0433'.", "d MMM y '\u0433'.", "dd.MM.y"]), type$.JSArray_dynamic); C.Map_5tDrw = new H.ConstantStringMap(25, {NAME: "ru", ERAS: C.List_ijv, ERANAMES: C.List_qH7, NARROWMONTHS: C.List_16h, STANDALONENARROWMONTHS: C.List_16h, MONTHS: C.List_aAe, STANDALONEMONTHS: C.List_rNu, SHORTMONTHS: C.List_QWq, STANDALONESHORTMONTHS: C.List_6Wo, WEEKDAYS: C.List_mpd, STANDALONEWEEKDAYS: C.List_mpd, SHORTWEEKDAYS: C.List_0Lp, STANDALONESHORTWEEKDAYS: C.List_0Lp, NARROWWEEKDAYS: C.List_0Lp, STANDALONENARROWWEEKDAYS: C.List_gA40, SHORTQUARTERS: C.List_wcW, QUARTERS: C.List_c3X, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_VWt, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_cTZ = H.setRuntimeTypeInfo(makeConstList(["\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0db4\u0dd6.", "\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0dc0."]), type$.JSArray_dynamic); C.List_qbf = H.setRuntimeTypeInfo(makeConstList(["\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0db4\u0dd6\u0dbb\u0dca\u0dc0", "\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0dc0\u0dbb\u0dca\u0dc2"]), type$.JSArray_dynamic); C.List_nTU = H.setRuntimeTypeInfo(makeConstList(["\u0da2", "\u0db4\u0dd9", "\u0db8\u0dcf", "\u0d85", "\u0db8\u0dd0", "\u0da2\u0dd6", "\u0da2\u0dd6", "\u0d85", "\u0dc3\u0dd0", "\u0d94", "\u0db1\u0dd9", "\u0daf\u0dd9"]), type$.JSArray_dynamic); C.List_2el = H.setRuntimeTypeInfo(makeConstList(["\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2", "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2", "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4", "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca"]), type$.JSArray_dynamic); C.List_KDE = H.setRuntimeTypeInfo(makeConstList(["\u0da2\u0db1", "\u0db4\u0dd9\u0db6", "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd", "\u0dc3\u0dd0\u0db4\u0dca", "\u0d94\u0d9a\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0"]), type$.JSArray_dynamic); C.List_UkW = H.setRuntimeTypeInfo(makeConstList(["\u0da2\u0db1", "\u0db4\u0dd9\u0db6", "\u0db8\u0dcf\u0dbb\u0dca", "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", "\u0db8\u0dd0\u0dba\u0dd2", "\u0da2\u0dd6\u0db1\u0dd2", "\u0da2\u0dd6\u0dbd\u0dd2", "\u0d85\u0d9c\u0ddd", "\u0dc3\u0dd0\u0db4\u0dca", "\u0d94\u0d9a\u0dca", "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0"]), type$.JSArray_dynamic); C.List_Wr1 = H.setRuntimeTypeInfo(makeConstList(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf", "\u0dc3\u0db3\u0dd4\u0daf\u0dcf", "\u0d85\u0d9f\u0dc4\u0dbb\u0dd4\u0dc0\u0dcf\u0daf\u0dcf", "\u0db6\u0daf\u0dcf\u0daf\u0dcf", "\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca\u0db4\u0dad\u0dd2\u0db1\u0dca\u0daf\u0dcf", "\u0dc3\u0dd2\u0d9a\u0dd4\u0dbb\u0dcf\u0daf\u0dcf", "\u0dc3\u0dd9\u0db1\u0dc3\u0dd4\u0dbb\u0dcf\u0daf\u0dcf"]), type$.JSArray_dynamic); C.List_EOZ0 = H.setRuntimeTypeInfo(makeConstList(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf", "\u0dc3\u0db3\u0dd4\u0daf\u0dcf", "\u0d85\u0d9f\u0dc4", "\u0db6\u0daf\u0dcf\u0daf\u0dcf", "\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca", "\u0dc3\u0dd2\u0d9a\u0dd4", "\u0dc3\u0dd9\u0db1"]), type$.JSArray_dynamic); C.List_gSJ = H.setRuntimeTypeInfo(makeConstList(["\u0d89", "\u0dc3", "\u0d85", "\u0db6", "\u0db6\u0dca\u200d\u0dbb", "\u0dc3\u0dd2", "\u0dc3\u0dd9"]), type$.JSArray_dynamic); C.List_Pss0 = H.setRuntimeTypeInfo(makeConstList(["\u0d9a\u0dcf\u0dbb\u0dca:1", "\u0d9a\u0dcf\u0dbb\u0dca:2", "\u0d9a\u0dcf\u0dbb\u0dca:3", "\u0d9a\u0dcf\u0dbb\u0dca:4"]), type$.JSArray_dynamic); C.List_C5f = H.setRuntimeTypeInfo(makeConstList(["1 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "2 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "3 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0", "4 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0"]), type$.JSArray_dynamic); C.List_ago = H.setRuntimeTypeInfo(makeConstList(["\u0db4\u0dd9.\u0dc0.", "\u0db4.\u0dc0."]), type$.JSArray_dynamic); C.List_qJO = H.setRuntimeTypeInfo(makeConstList(["y MMMM d, EEEE", "y MMMM d", "y MMM d", "y-MM-dd"]), type$.JSArray_dynamic); C.Map_5t1p9 = new H.ConstantStringMap(25, {NAME: "si", ERAS: C.List_cTZ, ERANAMES: C.List_qbf, NARROWMONTHS: C.List_nTU, STANDALONENARROWMONTHS: C.List_nTU, MONTHS: C.List_2el, STANDALONEMONTHS: C.List_2el, SHORTMONTHS: C.List_KDE, STANDALONESHORTMONTHS: C.List_UkW, WEEKDAYS: C.List_Wr1, STANDALONEWEEKDAYS: C.List_Wr1, SHORTWEEKDAYS: C.List_EOZ0, STANDALONESHORTWEEKDAYS: C.List_EOZ0, NARROWWEEKDAYS: C.List_gSJ, STANDALONENARROWWEEKDAYS: C.List_gSJ, SHORTQUARTERS: C.List_Pss0, QUARTERS: C.List_C5f, AMPMS: C.List_ago, DATEFORMATS: C.List_qJO, TIMEFORMATS: C.List_SCE, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_ESD = H.setRuntimeTypeInfo(makeConstList(["pred Kr.", "po Kr."]), type$.JSArray_dynamic); C.List_C7O = H.setRuntimeTypeInfo(makeConstList(["pred Kristom", "po Kristovi"]), type$.JSArray_dynamic); C.List_yzq = H.setRuntimeTypeInfo(makeConstList(["janu\xe1ra", "febru\xe1ra", "marca", "apr\xedla", "m\xe1ja", "j\xfana", "j\xfala", "augusta", "septembra", "okt\xf3bra", "novembra", "decembra"]), type$.JSArray_dynamic); C.List_94u = H.setRuntimeTypeInfo(makeConstList(["janu\xe1r", "febru\xe1r", "marec", "apr\xedl", "m\xe1j", "j\xfan", "j\xfal", "august", "september", "okt\xf3ber", "november", "december"]), type$.JSArray_dynamic); C.List_XQ8 = H.setRuntimeTypeInfo(makeConstList(["jan", "feb", "mar", "apr", "m\xe1j", "j\xfan", "j\xfal", "aug", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); C.List_UJa = H.setRuntimeTypeInfo(makeConstList(["nede\u013ea", "pondelok", "utorok", "streda", "\u0161tvrtok", "piatok", "sobota"]), type$.JSArray_dynamic); C.List_gf4 = H.setRuntimeTypeInfo(makeConstList(["ne", "po", "ut", "st", "\u0161t", "pi", "so"]), type$.JSArray_dynamic); C.List_qhE = H.setRuntimeTypeInfo(makeConstList(["n", "p", "u", "s", "\u0161", "p", "s"]), type$.JSArray_dynamic); C.List_gkc6 = H.setRuntimeTypeInfo(makeConstList(["1. \u0161tvr\u0165rok", "2. \u0161tvr\u0165rok", "3. \u0161tvr\u0165rok", "4. \u0161tvr\u0165rok"]), type$.JSArray_dynamic); C.List_HV0 = H.setRuntimeTypeInfo(makeConstList(["EEEE d. MMMM y", "d. MMMM y", "d. M. y", "d. M. y"]), type$.JSArray_dynamic); C.List_2Zs = H.setRuntimeTypeInfo(makeConstList(["{1}, {0}", "{1}, {0}", "{1}, {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5tUWX = new H.ConstantStringMap(25, {NAME: "sk", ERAS: C.List_ESD, ERANAMES: C.List_C7O, NARROWMONTHS: C.List_oEc, STANDALONENARROWMONTHS: C.List_oEc, MONTHS: C.List_yzq, STANDALONEMONTHS: C.List_94u, SHORTMONTHS: C.List_XQ8, STANDALONESHORTMONTHS: C.List_XQ8, WEEKDAYS: C.List_UJa, STANDALONEWEEKDAYS: C.List_UJa, SHORTWEEKDAYS: C.List_gf4, STANDALONESHORTWEEKDAYS: C.List_gf4, NARROWWEEKDAYS: C.List_qhE, STANDALONENARROWWEEKDAYS: C.List_qhE, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_gkc6, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_HV0, TIMEFORMATS: C.List_84a, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_2Zs}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_fA9 = H.setRuntimeTypeInfo(makeConstList(["pred Kristusom", "po Kristusu"]), type$.JSArray_dynamic); C.List_kXN = H.setRuntimeTypeInfo(makeConstList(["januar", "februar", "marec", "april", "maj", "junij", "julij", "avgust", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); C.List_DVW = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mar.", "apr.", "maj", "jun.", "jul.", "avg.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_jrB = H.setRuntimeTypeInfo(makeConstList(["nedelja", "ponedeljek", "torek", "sreda", "\u010detrtek", "petek", "sobota"]), type$.JSArray_dynamic); C.List_f9Z = H.setRuntimeTypeInfo(makeConstList(["ned.", "pon.", "tor.", "sre.", "\u010det.", "pet.", "sob."]), type$.JSArray_dynamic); C.List_0I7 = H.setRuntimeTypeInfo(makeConstList(["n", "p", "t", "s", "\u010d", "p", "s"]), type$.JSArray_dynamic); C.List_4if = H.setRuntimeTypeInfo(makeConstList(["1. \u010det.", "2. \u010det.", "3. \u010det.", "4. \u010det."]), type$.JSArray_dynamic); C.List_gsm0 = H.setRuntimeTypeInfo(makeConstList(["1. \u010detrtletje", "2. \u010detrtletje", "3. \u010detrtletje", "4. \u010detrtletje"]), type$.JSArray_dynamic); C.List_1mI = H.setRuntimeTypeInfo(makeConstList(["dop.", "pop."]), type$.JSArray_dynamic); C.List_a7L = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd. MMMM y", "dd. MMMM y", "d. MMM y", "d. MM. yy"]), type$.JSArray_dynamic); C.Map_5trp3 = new H.ConstantStringMap(25, {NAME: "sl", ERAS: C.List_OCX, ERANAMES: C.List_fA9, NARROWMONTHS: C.List_oEc, STANDALONENARROWMONTHS: C.List_oEc, MONTHS: C.List_kXN, STANDALONEMONTHS: C.List_kXN, SHORTMONTHS: C.List_DVW, STANDALONESHORTMONTHS: C.List_DVW, WEEKDAYS: C.List_jrB, STANDALONEWEEKDAYS: C.List_jrB, SHORTWEEKDAYS: C.List_f9Z, STANDALONESHORTWEEKDAYS: C.List_f9Z, NARROWWEEKDAYS: C.List_0I7, STANDALONENARROWWEEKDAYS: C.List_0I7, SHORTQUARTERS: C.List_4if, QUARTERS: C.List_gsm0, AMPMS: C.List_1mI, DATEFORMATS: C.List_a7L, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_adc = H.setRuntimeTypeInfo(makeConstList(["p.K.", "mb.K."]), type$.JSArray_dynamic); C.List_pm3 = H.setRuntimeTypeInfo(makeConstList(["para Krishtit", "mbas Krishtit"]), type$.JSArray_dynamic); C.List_IB4 = H.setRuntimeTypeInfo(makeConstList(["j", "sh", "m", "p", "m", "q", "k", "g", "sh", "t", "n", "dh"]), type$.JSArray_dynamic); C.List_O8N = H.setRuntimeTypeInfo(makeConstList(["janar", "shkurt", "mars", "prill", "maj", "qershor", "korrik", "gusht", "shtator", "tetor", "n\xebntor", "dhjetor"]), type$.JSArray_dynamic); C.List_GQs = H.setRuntimeTypeInfo(makeConstList(["jan", "shk", "mar", "pri", "maj", "qer", "korr", "gush", "sht", "tet", "n\xebn", "dhj"]), type$.JSArray_dynamic); C.List_YSy = H.setRuntimeTypeInfo(makeConstList(["e diel", "e h\xebn\xeb", "e mart\xeb", "e m\xebrkur\xeb", "e enjte", "e premte", "e shtun\xeb"]), type$.JSArray_dynamic); C.List_s8I = H.setRuntimeTypeInfo(makeConstList(["Die", "H\xebn", "Mar", "M\xebr", "Enj", "Pre", "Sht"]), type$.JSArray_dynamic); C.List_CFB = H.setRuntimeTypeInfo(makeConstList(["die", "h\xebn", "mar", "m\xebr", "enj", "pre", "sht"]), type$.JSArray_dynamic); C.List_MQk0 = H.setRuntimeTypeInfo(makeConstList(["d", "h", "m", "m", "e", "p", "sh"]), type$.JSArray_dynamic); C.List_lI3 = H.setRuntimeTypeInfo(makeConstList(["tremujori I", "tremujori II", "tremujori III", "tremujori IV"]), type$.JSArray_dynamic); C.List_EF2 = H.setRuntimeTypeInfo(makeConstList(["tremujori i par\xeb", "tremujori i dyt\xeb", "tremujori i tret\xeb", "tremujori i kat\xebrt"]), type$.JSArray_dynamic); C.List_ew6 = H.setRuntimeTypeInfo(makeConstList(["e paradites", "e pasdites"]), type$.JSArray_dynamic); C.List_MTP = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y", "d MMMM y", "d MMM y", "d.M.yy"]), type$.JSArray_dynamic); C.List_wsj = H.setRuntimeTypeInfo(makeConstList(["h:mm:ss a, zzzz", "h:mm:ss a, z", "h:mm:ss a", "h:mm a"]), type$.JSArray_dynamic); C.List_Jik0 = H.setRuntimeTypeInfo(makeConstList(["{1} 'n\xeb' {0}", "{1} 'n\xeb' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tSlD = new H.ConstantStringMap(25, {NAME: "sq", ERAS: C.List_adc, ERANAMES: C.List_pm3, NARROWMONTHS: C.List_IB4, STANDALONENARROWMONTHS: C.List_IB4, MONTHS: C.List_O8N, STANDALONEMONTHS: C.List_O8N, SHORTMONTHS: C.List_GQs, STANDALONESHORTMONTHS: C.List_GQs, WEEKDAYS: C.List_YSy, STANDALONEWEEKDAYS: C.List_YSy, SHORTWEEKDAYS: C.List_s8I, STANDALONESHORTWEEKDAYS: C.List_CFB, NARROWWEEKDAYS: C.List_MQk0, STANDALONENARROWWEEKDAYS: C.List_MQk0, SHORTQUARTERS: C.List_lI3, QUARTERS: C.List_EF2, AMPMS: C.List_ew6, DATEFORMATS: C.List_MTP, TIMEFORMATS: C.List_wsj, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Jik0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_so3 = H.setRuntimeTypeInfo(makeConstList(["\u043f. \u043d. \u0435.", "\u043d. \u0435."]), type$.JSArray_dynamic); C.List_atK = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0435 \u043d\u043e\u0432\u0435 \u0435\u0440\u0435", "\u043d\u043e\u0432\u0435 \u0435\u0440\u0435"]), type$.JSArray_dynamic); C.List_agk = H.setRuntimeTypeInfo(makeConstList(["\u0458\u0430\u043d\u0443\u0430\u0440", "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", "\u043c\u0430\u0440\u0442", "\u0430\u043f\u0440\u0438\u043b", "\u043c\u0430\u0458", "\u0458\u0443\u043d", "\u0458\u0443\u043b", "\u0430\u0432\u0433\u0443\u0441\u0442", "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"]), type$.JSArray_dynamic); C.List_EFh = H.setRuntimeTypeInfo(makeConstList(["\u0458\u0430\u043d", "\u0444\u0435\u0431", "\u043c\u0430\u0440", "\u0430\u043f\u0440", "\u043c\u0430\u0458", "\u0458\u0443\u043d", "\u0458\u0443\u043b", "\u0430\u0432\u0433", "\u0441\u0435\u043f", "\u043e\u043a\u0442", "\u043d\u043e\u0432", "\u0434\u0435\u0446"]), type$.JSArray_dynamic); C.List_YoH = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434\u0435\u0459\u0430", "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a", "\u0443\u0442\u043e\u0440\u0430\u043a", "\u0441\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a", "\u043f\u0435\u0442\u0430\u043a", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_A0N0 = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434", "\u043f\u043e\u043d", "\u0443\u0442\u043e", "\u0441\u0440\u0435", "\u0447\u0435\u0442", "\u043f\u0435\u0442", "\u0441\u0443\u0431"]), type$.JSArray_dynamic); C.List_gg90 = H.setRuntimeTypeInfo(makeConstList(["\u043d", "\u043f", "\u0443", "\u0441", "\u0447", "\u043f", "\u0441"]), type$.JSArray_dynamic); C.List_013 = H.setRuntimeTypeInfo(makeConstList(["\u041a1", "\u041a2", "\u041a3", "\u041a4"]), type$.JSArray_dynamic); C.List_23h1 = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]), type$.JSArray_dynamic); C.List_mXg = H.setRuntimeTypeInfo(makeConstList(["\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435", "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"]), type$.JSArray_dynamic); C.List_2nh = H.setRuntimeTypeInfo(makeConstList(["EEEE, dd. MMMM y.", "dd. MMMM y.", "dd.MM.y.", "d.M.yy."]), type$.JSArray_dynamic); C.Map_5tqJ4 = new H.ConstantStringMap(25, {NAME: "sr", ERAS: C.List_so3, ERANAMES: C.List_atK, NARROWMONTHS: C.List_owA, STANDALONENARROWMONTHS: C.List_owA, MONTHS: C.List_agk, STANDALONEMONTHS: C.List_agk, SHORTMONTHS: C.List_EFh, STANDALONESHORTMONTHS: C.List_EFh, WEEKDAYS: C.List_YoH, STANDALONEWEEKDAYS: C.List_YoH, SHORTWEEKDAYS: C.List_A0N0, STANDALONESHORTWEEKDAYS: C.List_A0N0, NARROWWEEKDAYS: C.List_gg90, STANDALONENARROWWEEKDAYS: C.List_gg90, SHORTQUARTERS: C.List_013, QUARTERS: C.List_23h1, AMPMS: C.List_mXg, DATEFORMATS: C.List_2nh, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Jsm = H.setRuntimeTypeInfo(makeConstList(["pre nove ere", "nove ere"]), type$.JSArray_dynamic); C.List_peT = H.setRuntimeTypeInfo(makeConstList(["januar", "februar", "mart", "april", "maj", "jun", "jul", "avgust", "septembar", "oktobar", "novembar", "decembar"]), type$.JSArray_dynamic); C.List_CdE = H.setRuntimeTypeInfo(makeConstList(["jan", "feb", "mar", "apr", "maj", "jun", "jul", "avg", "sep", "okt", "nov", "dec"]), type$.JSArray_dynamic); C.List_ntP = H.setRuntimeTypeInfo(makeConstList(["nedelja", "ponedeljak", "utorak", "sreda", "\u010detvrtak", "petak", "subota"]), type$.JSArray_dynamic); C.List_JmU0 = H.setRuntimeTypeInfo(makeConstList(["ned", "pon", "uto", "sre", "\u010det", "pet", "sub"]), type$.JSArray_dynamic); C.List_mJx = H.setRuntimeTypeInfo(makeConstList(["prvi kvartal", "drugi kvartal", "tre\u0107i kvartal", "\u010detvrti kvartal"]), type$.JSArray_dynamic); C.List_hKt = H.setRuntimeTypeInfo(makeConstList(["pre podne", "po podne"]), type$.JSArray_dynamic); C.Map_5tN7e = new H.ConstantStringMap(25, {NAME: "sr_Latn", ERAS: C.List_PDz, ERANAMES: C.List_Jsm, NARROWMONTHS: C.List_oEc, STANDALONENARROWMONTHS: C.List_oEc, MONTHS: C.List_peT, STANDALONEMONTHS: C.List_peT, SHORTMONTHS: C.List_CdE, STANDALONESHORTMONTHS: C.List_CdE, WEEKDAYS: C.List_ntP, STANDALONEWEEKDAYS: C.List_ntP, SHORTWEEKDAYS: C.List_JmU0, STANDALONESHORTWEEKDAYS: C.List_JmU0, NARROWWEEKDAYS: C.List_sci, STANDALONENARROWWEEKDAYS: C.List_sci, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_mJx, AMPMS: C.List_hKt, DATEFORMATS: C.List_2nh, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_kvD = H.setRuntimeTypeInfo(makeConstList(["f\xf6re Kristus", "efter Kristus"]), type$.JSArray_dynamic); C.List_4MR = H.setRuntimeTypeInfo(makeConstList(["januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december"]), type$.JSArray_dynamic); C.List_Mmn = H.setRuntimeTypeInfo(makeConstList(["jan.", "feb.", "mars", "apr.", "maj", "juni", "juli", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_dynamic); C.List_HFl = H.setRuntimeTypeInfo(makeConstList(["s\xf6ndag", "m\xe5ndag", "tisdag", "onsdag", "torsdag", "fredag", "l\xf6rdag"]), type$.JSArray_dynamic); C.List_aXZ = H.setRuntimeTypeInfo(makeConstList(["s\xf6n", "m\xe5n", "tis", "ons", "tors", "fre", "l\xf6r"]), type$.JSArray_dynamic); C.List_52Y = H.setRuntimeTypeInfo(makeConstList(["1:a kvartalet", "2:a kvartalet", "3:e kvartalet", "4:e kvartalet"]), type$.JSArray_dynamic); C.List_fm_em = H.setRuntimeTypeInfo(makeConstList(["fm", "em"]), type$.JSArray_dynamic); C.List_8Gl1 = H.setRuntimeTypeInfo(makeConstList(["EEEE d MMMM y", "d MMMM y", "d MMM y", "y-MM-dd"]), type$.JSArray_dynamic); C.List_UUO = H.setRuntimeTypeInfo(makeConstList(["'kl'. HH:mm:ss zzzz", "HH:mm:ss z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.Map_5tgsm = new H.ConstantStringMap(25, {NAME: "sv", ERAS: C.List_OPD, ERANAMES: C.List_kvD, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_4MR, STANDALONEMONTHS: C.List_4MR, SHORTMONTHS: C.List_Mmn, STANDALONESHORTMONTHS: C.List_Mmn, WEEKDAYS: C.List_HFl, STANDALONEWEEKDAYS: C.List_HFl, SHORTWEEKDAYS: C.List_aXZ, STANDALONESHORTWEEKDAYS: C.List_aXZ, NARROWWEEKDAYS: C.List_GVy, STANDALONENARROWWEEKDAYS: C.List_GVy, SHORTQUARTERS: C.List_K1_K2_K3_K4, QUARTERS: C.List_52Y, AMPMS: C.List_fm_em, DATEFORMATS: C.List_8Gl1, TIMEFORMATS: C.List_UUO, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 3, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_KK_BK = H.setRuntimeTypeInfo(makeConstList(["KK", "BK"]), type$.JSArray_dynamic); C.List_fL60 = H.setRuntimeTypeInfo(makeConstList(["Kabla ya Kristo", "Baada ya Kristo"]), type$.JSArray_dynamic); C.List_j3h = H.setRuntimeTypeInfo(makeConstList(["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"]), type$.JSArray_dynamic); C.List_8R1 = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"]), type$.JSArray_dynamic); C.List_MtR = H.setRuntimeTypeInfo(makeConstList(["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"]), type$.JSArray_dynamic); C.List_Kep = H.setRuntimeTypeInfo(makeConstList(["Robo ya 1", "Robo ya 2", "Robo ya 3", "Robo ya 4"]), type$.JSArray_dynamic); C.Map_5tum9 = new H.ConstantStringMap(25, {NAME: "sw", ERAS: C.List_KK_BK, ERANAMES: C.List_fL60, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_j3h, STANDALONEMONTHS: C.List_j3h, SHORTMONTHS: C.List_8R1, STANDALONESHORTMONTHS: C.List_8R1, WEEKDAYS: C.List_MtR, STANDALONEWEEKDAYS: C.List_MtR, SHORTWEEKDAYS: C.List_MtR, STANDALONESHORTWEEKDAYS: C.List_MtR, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_Kep, QUARTERS: C.List_Kep, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_ml5, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_n3c = H.setRuntimeTypeInfo(makeConstList(["\u0b95\u0bbf.\u0bae\u0bc1.", "\u0b95\u0bbf.\u0baa\u0bbf."]), type$.JSArray_dynamic); C.List_5Tk = H.setRuntimeTypeInfo(makeConstList(["\u0b95\u0bbf\u0bb1\u0bbf\u0bb8\u0bcd\u0ba4\u0bc1\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd", "\u0b85\u0ba9\u0bcd\u0ba9\u0bcb \u0b9f\u0bcb\u0bae\u0bbf\u0ba9\u0bbf"]), type$.JSArray_dynamic); C.List_csj = H.setRuntimeTypeInfo(makeConstList(["\u0b9c", "\u0baa\u0bbf", "\u0bae\u0bbe", "\u0b8f", "\u0bae\u0bc7", "\u0b9c\u0bc2", "\u0b9c\u0bc2", "\u0b86", "\u0b9a\u0bc6", "\u0b85", "\u0ba8", "\u0b9f\u0bbf"]), type$.JSArray_dynamic); C.List_oCX = H.setRuntimeTypeInfo(makeConstList(["\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", "\u0bae\u0bc7", "\u0b9c\u0bc2\u0ba9\u0bcd", "\u0b9c\u0bc2\u0bb2\u0bc8", "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd", "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"]), type$.JSArray_dynamic); C.List_IIf = H.setRuntimeTypeInfo(makeConstList(["\u0b9c\u0ba9.", "\u0baa\u0bbf\u0baa\u0bcd.", "\u0bae\u0bbe\u0bb0\u0bcd.", "\u0b8f\u0baa\u0bcd.", "\u0bae\u0bc7", "\u0b9c\u0bc2\u0ba9\u0bcd", "\u0b9c\u0bc2\u0bb2\u0bc8", "\u0b86\u0b95.", "\u0b9a\u0bc6\u0baa\u0bcd.", "\u0b85\u0b95\u0bcd.", "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a."]), type$.JSArray_dynamic); C.List_CW0 = H.setRuntimeTypeInfo(makeConstList(["\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1", "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd", "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd", "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd", "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd", "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf", "\u0b9a\u0ba9\u0bbf"]), type$.JSArray_dynamic); C.List_bFE = H.setRuntimeTypeInfo(makeConstList(["\u0b9e\u0bbe\u0baf\u0bbf.", "\u0ba4\u0bbf\u0b99\u0bcd.", "\u0b9a\u0bc6\u0bb5\u0bcd.", "\u0baa\u0bc1\u0ba4.", "\u0bb5\u0bbf\u0baf\u0bbe.", "\u0bb5\u0bc6\u0bb3\u0bcd.", "\u0b9a\u0ba9\u0bbf"]), type$.JSArray_dynamic); C.List_eIp = H.setRuntimeTypeInfo(makeConstList(["\u0b9e\u0bbe", "\u0ba4\u0bbf", "\u0b9a\u0bc6", "\u0baa\u0bc1", "\u0bb5\u0bbf", "\u0bb5\u0bc6", "\u0b9a"]), type$.JSArray_dynamic); C.List_2ig = H.setRuntimeTypeInfo(makeConstList(["\u0b95\u0bbe\u0bb2\u0bbe.1", "\u0b95\u0bbe\u0bb2\u0bbe.2", "\u0b95\u0bbe\u0bb2\u0bbe.3", "\u0b95\u0bbe\u0bb2\u0bbe.4"]), type$.JSArray_dynamic); C.List_gkc7 = H.setRuntimeTypeInfo(makeConstList(["\u0b92\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0b87\u0bb0\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0bae\u0bc2\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1", "\u0ba8\u0bbe\u0ba9\u0bcd\u0b95\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1"]), type$.JSArray_dynamic); C.List_THA = H.setRuntimeTypeInfo(makeConstList(["\u0bae\u0bc1\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd", "\u0baa\u0bbf\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd"]), type$.JSArray_dynamic); C.List_XRK = H.setRuntimeTypeInfo(makeConstList(["a h:mm:ss zzzz", "a h:mm:ss z", "a h:mm:ss", "a h:mm"]), type$.JSArray_dynamic); C.List_iYS = H.setRuntimeTypeInfo(makeConstList(["{1} \u2019\u0b85\u0ba9\u0bcd\u0bb1\u0bc1\u2019 {0}", "{1} \u2019\u0b85\u0ba9\u0bcd\u0bb1\u0bc1\u2019 {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tDni = new H.ConstantStringMap(25, {NAME: "ta", ERAS: C.List_n3c, ERANAMES: C.List_5Tk, NARROWMONTHS: C.List_csj, STANDALONENARROWMONTHS: C.List_csj, MONTHS: C.List_oCX, STANDALONEMONTHS: C.List_oCX, SHORTMONTHS: C.List_IIf, STANDALONESHORTMONTHS: C.List_IIf, WEEKDAYS: C.List_CW0, STANDALONEWEEKDAYS: C.List_CW0, SHORTWEEKDAYS: C.List_bFE, STANDALONESHORTWEEKDAYS: C.List_bFE, NARROWWEEKDAYS: C.List_eIp, STANDALONENARROWWEEKDAYS: C.List_eIp, SHORTQUARTERS: C.List_2ig, QUARTERS: C.List_gkc7, AMPMS: C.List_THA, DATEFORMATS: C.List_oYk, TIMEFORMATS: C.List_XRK, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_iYS}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_gc62 = H.setRuntimeTypeInfo(makeConstList(["\u0c15\u0c4d\u0c30\u0c40\u0c2a\u0c42", "\u0c15\u0c4d\u0c30\u0c40\u0c36"]), type$.JSArray_dynamic); C.List_C3v = H.setRuntimeTypeInfo(makeConstList(["\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c2a\u0c42\u0c30\u0c4d\u0c35\u0c02", "\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c36\u0c15\u0c02"]), type$.JSArray_dynamic); C.List_sav0 = H.setRuntimeTypeInfo(makeConstList(["\u0c1c", "\u0c2b\u0c3f", "\u0c2e\u0c3e", "\u0c0f", "\u0c2e\u0c47", "\u0c1c\u0c42", "\u0c1c\u0c41", "\u0c06", "\u0c38\u0c46", "\u0c05", "\u0c28", "\u0c21\u0c3f"]), type$.JSArray_dynamic); C.List_kmo = H.setRuntimeTypeInfo(makeConstList(["\u0c1c\u0c28\u0c35\u0c30\u0c3f", "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f", "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d", "\u0c2e\u0c47", "\u0c1c\u0c42\u0c28\u0c4d", "\u0c1c\u0c41\u0c32\u0c48", "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41", "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d", "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d", "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d", "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"]), type$.JSArray_dynamic); C.List_6H20 = H.setRuntimeTypeInfo(makeConstList(["\u0c1c\u0c28", "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30", "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f", "\u0c2e\u0c47", "\u0c1c\u0c42\u0c28\u0c4d", "\u0c1c\u0c41\u0c32\u0c48", "\u0c06\u0c17", "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02", "\u0c05\u0c15\u0c4d\u0c1f\u0c4b", "\u0c28\u0c35\u0c02", "\u0c21\u0c3f\u0c38\u0c46\u0c02"]), type$.JSArray_dynamic); C.List_MLw = H.setRuntimeTypeInfo(makeConstList(["\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02", "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02", "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02", "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02", "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02", "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02", "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"]), type$.JSArray_dynamic); C.List_MIo = H.setRuntimeTypeInfo(makeConstList(["\u0c06\u0c26\u0c3f", "\u0c38\u0c4b\u0c2e", "\u0c2e\u0c02\u0c17\u0c33", "\u0c2c\u0c41\u0c27", "\u0c17\u0c41\u0c30\u0c41", "\u0c36\u0c41\u0c15\u0c4d\u0c30", "\u0c36\u0c28\u0c3f"]), type$.JSArray_dynamic); C.List_ahs = H.setRuntimeTypeInfo(makeConstList(["\u0c06", "\u0c38\u0c4b", "\u0c2e", "\u0c2c\u0c41", "\u0c17\u0c41", "\u0c36\u0c41", "\u0c36"]), type$.JSArray_dynamic); C.List_mJ1 = H.setRuntimeTypeInfo(makeConstList(["\u0c24\u0c4d\u0c30\u0c481", "\u0c24\u0c4d\u0c30\u0c482", "\u0c24\u0c4d\u0c30\u0c483", "\u0c24\u0c4d\u0c30\u0c484"]), type$.JSArray_dynamic); C.List_pXQ = H.setRuntimeTypeInfo(makeConstList(["1\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "2\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "3\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02", "4\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02"]), type$.JSArray_dynamic); C.List_Vav = H.setRuntimeTypeInfo(makeConstList(["d, MMMM y, EEEE", "d MMMM, y", "d MMM, y", "dd-MM-yy"]), type$.JSArray_dynamic); C.List_zrt0 = H.setRuntimeTypeInfo(makeConstList(["{1} {0}\u0c15\u0c3f", "{1} {0}\u0c15\u0c3f", "{1} {0}", "{1} {0}"]), type$.JSArray_dynamic); C.Map_5t6Xj = new H.ConstantStringMap(25, {NAME: "te", ERAS: C.List_gc62, ERANAMES: C.List_C3v, NARROWMONTHS: C.List_sav0, STANDALONENARROWMONTHS: C.List_sav0, MONTHS: C.List_kmo, STANDALONEMONTHS: C.List_kmo, SHORTMONTHS: C.List_6H20, STANDALONESHORTMONTHS: C.List_6H20, WEEKDAYS: C.List_MLw, STANDALONEWEEKDAYS: C.List_MLw, SHORTWEEKDAYS: C.List_MIo, STANDALONESHORTWEEKDAYS: C.List_MIo, NARROWWEEKDAYS: C.List_ahs, STANDALONENARROWWEEKDAYS: C.List_ahs, SHORTQUARTERS: C.List_mJ1, QUARTERS: C.List_pXQ, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_Vav, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_6_6, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_zrt0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_RG0 = H.setRuntimeTypeInfo(makeConstList(["\u0e01\u0e48\u0e2d\u0e19 \u0e04.\u0e28.", "\u0e04.\u0e28."]), type$.JSArray_dynamic); C.List_T4j = H.setRuntimeTypeInfo(makeConstList(["\u0e1b\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e01\u0e32\u0e25", "\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e4c\u0e28\u0e31\u0e01\u0e23\u0e32\u0e0a"]), type$.JSArray_dynamic); C.List_Dx1 = H.setRuntimeTypeInfo(makeConstList(["\u0e21.\u0e04.", "\u0e01.\u0e1e.", "\u0e21\u0e35.\u0e04.", "\u0e40\u0e21.\u0e22.", "\u0e1e.\u0e04.", "\u0e21\u0e34.\u0e22.", "\u0e01.\u0e04.", "\u0e2a.\u0e04.", "\u0e01.\u0e22.", "\u0e15.\u0e04.", "\u0e1e.\u0e22.", "\u0e18.\u0e04."]), type$.JSArray_dynamic); C.List_GYK = H.setRuntimeTypeInfo(makeConstList(["\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"]), type$.JSArray_dynamic); C.List_Yzz = H.setRuntimeTypeInfo(makeConstList(["\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c", "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c", "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23", "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35", "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c", "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"]), type$.JSArray_dynamic); C.List_IRg = H.setRuntimeTypeInfo(makeConstList(["\u0e2d\u0e32.", "\u0e08.", "\u0e2d.", "\u0e1e.", "\u0e1e\u0e24.", "\u0e28.", "\u0e2a."]), type$.JSArray_dynamic); C.List_Wnt = H.setRuntimeTypeInfo(makeConstList(["\u0e2d\u0e32", "\u0e08", "\u0e2d", "\u0e1e", "\u0e1e\u0e24", "\u0e28", "\u0e2a"]), type$.JSArray_dynamic); C.List_yLX = H.setRuntimeTypeInfo(makeConstList(["\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 1", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 2", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 3", "\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 4"]), type$.JSArray_dynamic); C.List_XOr = H.setRuntimeTypeInfo(makeConstList(["\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07", "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"]), type$.JSArray_dynamic); C.List_IoI = H.setRuntimeTypeInfo(makeConstList(["EEEE\u0e17\u0e35\u0e48 d MMMM G y", "d MMMM G y", "d MMM y", "d/M/yy"]), type$.JSArray_dynamic); C.List_YD5 = H.setRuntimeTypeInfo(makeConstList(["H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 zzzz", "H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 z", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.Map_5tCBD = new H.ConstantStringMap(25, {NAME: "th", ERAS: C.List_RG0, ERANAMES: C.List_T4j, NARROWMONTHS: C.List_Dx1, STANDALONENARROWMONTHS: C.List_Dx1, MONTHS: C.List_GYK, STANDALONEMONTHS: C.List_GYK, SHORTMONTHS: C.List_Dx1, STANDALONESHORTMONTHS: C.List_Dx1, WEEKDAYS: C.List_Yzz, STANDALONEWEEKDAYS: C.List_Yzz, SHORTWEEKDAYS: C.List_IRg, STANDALONESHORTWEEKDAYS: C.List_IRg, NARROWWEEKDAYS: C.List_Wnt, STANDALONENARROWWEEKDAYS: C.List_Wnt, SHORTQUARTERS: C.List_yLX, QUARTERS: C.List_yLX, AMPMS: C.List_XOr, DATEFORMATS: C.List_IoI, TIMEFORMATS: C.List_YD5, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_5t5MH = new H.ConstantStringMap(25, {NAME: "tl", ERAS: C.List_BC_AD0, ERANAMES: C.List_6xs0, NARROWMONTHS: C.List_Duo, STANDALONENARROWMONTHS: C.List_I1L, MONTHS: C.List_hSa, STANDALONEMONTHS: C.List_hSa, SHORTMONTHS: C.List_Duo, STANDALONESHORTMONTHS: C.List_Duo, WEEKDAYS: C.List_xw80, STANDALONEWEEKDAYS: C.List_xw80, SHORTWEEKDAYS: C.List_sdO, STANDALONESHORTWEEKDAYS: C.List_sdO, NARROWWEEKDAYS: C.List_sdO, STANDALONENARROWWEEKDAYS: C.List_sdO, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_ciW, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_QkZ}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_2RQ = H.setRuntimeTypeInfo(makeConstList(["M\xd6", "MS"]), type$.JSArray_dynamic); C.List_uwZ = H.setRuntimeTypeInfo(makeConstList(["Milattan \xd6nce", "Milattan Sonra"]), type$.JSArray_dynamic); C.List_1wB = H.setRuntimeTypeInfo(makeConstList(["O", "\u015e", "M", "N", "M", "H", "T", "A", "E", "E", "K", "A"]), type$.JSArray_dynamic); C.List_FaD = H.setRuntimeTypeInfo(makeConstList(["Ocak", "\u015eubat", "Mart", "Nisan", "May\u0131s", "Haziran", "Temmuz", "A\u011fustos", "Eyl\xfcl", "Ekim", "Kas\u0131m", "Aral\u0131k"]), type$.JSArray_dynamic); C.List_6pl0 = H.setRuntimeTypeInfo(makeConstList(["Oca", "\u015eub", "Mar", "Nis", "May", "Haz", "Tem", "A\u011fu", "Eyl", "Eki", "Kas", "Ara"]), type$.JSArray_dynamic); C.List_7mv = H.setRuntimeTypeInfo(makeConstList(["Pazar", "Pazartesi", "Sal\u0131", "\xc7ar\u015famba", "Per\u015fembe", "Cuma", "Cumartesi"]), type$.JSArray_dynamic); C.List_4KK = H.setRuntimeTypeInfo(makeConstList(["Paz", "Pzt", "Sal", "\xc7ar", "Per", "Cum", "Cmt"]), type$.JSArray_dynamic); C.List_2Lo = H.setRuntimeTypeInfo(makeConstList(["P", "P", "S", "\xc7", "P", "C", "C"]), type$.JSArray_dynamic); C.List_ouf = H.setRuntimeTypeInfo(makeConstList(["\xc71", "\xc72", "\xc73", "\xc74"]), type$.JSArray_dynamic); C.List_8aB2 = H.setRuntimeTypeInfo(makeConstList(["1. \xe7eyrek", "2. \xe7eyrek", "3. \xe7eyrek", "4. \xe7eyrek"]), type$.JSArray_dynamic); C.List_Svy = H.setRuntimeTypeInfo(makeConstList(["\xd6\xd6", "\xd6S"]), type$.JSArray_dynamic); C.List_ahs0 = H.setRuntimeTypeInfo(makeConstList(["d MMMM y EEEE", "d MMMM y", "d MMM y", "d.MM.y"]), type$.JSArray_dynamic); C.Map_5toyU = new H.ConstantStringMap(25, {NAME: "tr", ERAS: C.List_2RQ, ERANAMES: C.List_uwZ, NARROWMONTHS: C.List_1wB, STANDALONENARROWMONTHS: C.List_1wB, MONTHS: C.List_FaD, STANDALONEMONTHS: C.List_FaD, SHORTMONTHS: C.List_6pl0, STANDALONESHORTMONTHS: C.List_6pl0, WEEKDAYS: C.List_7mv, STANDALONEWEEKDAYS: C.List_7mv, SHORTWEEKDAYS: C.List_4KK, STANDALONESHORTWEEKDAYS: C.List_4KK, NARROWWEEKDAYS: C.List_2Lo, STANDALONENARROWWEEKDAYS: C.List_2Lo, SHORTQUARTERS: C.List_ouf, QUARTERS: C.List_8aB2, AMPMS: C.List_Svy, DATEFORMATS: C.List_ahs0, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_sSr = H.setRuntimeTypeInfo(makeConstList(["\u0434\u043e \u043d. \u0435.", "\u043d. \u0435."]), type$.JSArray_dynamic); C.List_gA41 = H.setRuntimeTypeInfo(makeConstList(["\u0434\u043e \u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438", "\u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438"]), type$.JSArray_dynamic); C.List_gc63 = H.setRuntimeTypeInfo(makeConstList(["\u0441", "\u043b", "\u0431", "\u043a", "\u0442", "\u0447", "\u043b", "\u0441", "\u0432", "\u0436", "\u043b", "\u0433"]), type$.JSArray_dynamic); C.List_Zei = H.setRuntimeTypeInfo(makeConstList(["\u0421", "\u041b", "\u0411", "\u041a", "\u0422", "\u0427", "\u041b", "\u0421", "\u0412", "\u0416", "\u041b", "\u0413"]), type$.JSArray_dynamic); C.List_avb = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0456\u0447\u043d\u044f", "\u043b\u044e\u0442\u043e\u0433\u043e", "\u0431\u0435\u0440\u0435\u0437\u043d\u044f", "\u043a\u0432\u0456\u0442\u043d\u044f", "\u0442\u0440\u0430\u0432\u043d\u044f", "\u0447\u0435\u0440\u0432\u043d\u044f", "\u043b\u0438\u043f\u043d\u044f", "\u0441\u0435\u0440\u043f\u043d\u044f", "\u0432\u0435\u0440\u0435\u0441\u043d\u044f", "\u0436\u043e\u0432\u0442\u043d\u044f", "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430", "\u0433\u0440\u0443\u0434\u043d\u044f"]), type$.JSArray_dynamic); C.List_ksx = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0456\u0447\u0435\u043d\u044c", "\u043b\u044e\u0442\u0438\u0439", "\u0431\u0435\u0440\u0435\u0437\u0435\u043d\u044c", "\u043a\u0432\u0456\u0442\u0435\u043d\u044c", "\u0442\u0440\u0430\u0432\u0435\u043d\u044c", "\u0447\u0435\u0440\u0432\u0435\u043d\u044c", "\u043b\u0438\u043f\u0435\u043d\u044c", "\u0441\u0435\u0440\u043f\u0435\u043d\u044c", "\u0432\u0435\u0440\u0435\u0441\u0435\u043d\u044c", "\u0436\u043e\u0432\u0442\u0435\u043d\u044c", "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434", "\u0433\u0440\u0443\u0434\u0435\u043d\u044c"]), type$.JSArray_dynamic); C.List_ouN1 = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0456\u0447.", "\u043b\u044e\u0442.", "\u0431\u0435\u0440.", "\u043a\u0432\u0456\u0442.", "\u0442\u0440\u0430\u0432.", "\u0447\u0435\u0440\u0432.", "\u043b\u0438\u043f.", "\u0441\u0435\u0440\u043f.", "\u0432\u0435\u0440.", "\u0436\u043e\u0432\u0442.", "\u043b\u0438\u0441\u0442.", "\u0433\u0440\u0443\u0434."]), type$.JSArray_dynamic); C.List_wEo3 = H.setRuntimeTypeInfo(makeConstList(["\u0441\u0456\u0447", "\u043b\u044e\u0442", "\u0431\u0435\u0440", "\u043a\u0432\u0456", "\u0442\u0440\u0430", "\u0447\u0435\u0440", "\u043b\u0438\u043f", "\u0441\u0435\u0440", "\u0432\u0435\u0440", "\u0436\u043e\u0432", "\u043b\u0438\u0441", "\u0433\u0440\u0443"]), type$.JSArray_dynamic); C.List_kAW = H.setRuntimeTypeInfo(makeConstList(["\u043d\u0435\u0434\u0456\u043b\u044f", "\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a", "\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a", "\u0441\u0435\u0440\u0435\u0434\u0430", "\u0447\u0435\u0442\u0432\u0435\u0440", "\u043f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f", "\u0441\u0443\u0431\u043e\u0442\u0430"]), type$.JSArray_dynamic); C.List_2Vk5 = H.setRuntimeTypeInfo(makeConstList(["\u041d", "\u041f", "\u0412", "\u0421", "\u0427", "\u041f", "\u0421"]), type$.JSArray_dynamic); C.List_3QP = H.setRuntimeTypeInfo(makeConstList(["\u0434\u043f", "\u043f\u043f"]), type$.JSArray_dynamic); C.List_3nh = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM y '\u0440'.", "d MMMM y '\u0440'.", "d MMM y '\u0440'.", "dd.MM.yy"]), type$.JSArray_dynamic); C.List_Cju0 = H.setRuntimeTypeInfo(makeConstList(["{1} '\u043e' {0}", "{1} '\u043e' {0}", "{1}, {0}", "{1}, {0}"]), type$.JSArray_dynamic); C.Map_5tbTF = new H.ConstantStringMap(25, {NAME: "uk", ERAS: C.List_sSr, ERANAMES: C.List_gA41, NARROWMONTHS: C.List_gc63, STANDALONENARROWMONTHS: C.List_Zei, MONTHS: C.List_avb, STANDALONEMONTHS: C.List_ksx, SHORTMONTHS: C.List_ouN1, STANDALONESHORTMONTHS: C.List_wEo3, WEEKDAYS: C.List_kAW, STANDALONEWEEKDAYS: C.List_kAW, SHORTWEEKDAYS: C.List_06, STANDALONESHORTWEEKDAYS: C.List_06, NARROWWEEKDAYS: C.List_2Vk5, STANDALONENARROWWEEKDAYS: C.List_2Vk5, SHORTQUARTERS: C.List_wcW, QUARTERS: C.List_c3X, AMPMS: C.List_3QP, DATEFORMATS: C.List_3nh, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_Cju0}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Fys = H.setRuntimeTypeInfo(makeConstList(["\u0642\u0628\u0644 \u0645\u0633\u06cc\u062d", "\u0639\u06cc\u0633\u0648\u06cc"]), type$.JSArray_dynamic); C.List_gQW1 = H.setRuntimeTypeInfo(makeConstList(["\u062c\u0646\u0648\u0631\u06cc", "\u0641\u0631\u0648\u0631\u06cc", "\u0645\u0627\u0631\u0686", "\u0627\u067e\u0631\u06cc\u0644", "\u0645\u0626\u06cc", "\u062c\u0648\u0646", "\u062c\u0648\u0644\u0627\u0626\u06cc", "\u0627\u06af\u0633\u062a", "\u0633\u062a\u0645\u0628\u0631", "\u0627\u06a9\u062a\u0648\u0628\u0631", "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631"]), type$.JSArray_dynamic); C.List_Dns = H.setRuntimeTypeInfo(makeConstList(["\u0627\u062a\u0648\u0627\u0631", "\u067e\u06cc\u0631", "\u0645\u0646\u06af\u0644", "\u0628\u062f\u06be", "\u062c\u0645\u0639\u0631\u0627\u062a", "\u062c\u0645\u0639\u06c1", "\u06c1\u0641\u062a\u06c1"]), type$.JSArray_dynamic); C.List_KDx = H.setRuntimeTypeInfo(makeConstList(["\u067e\u06c1\u0644\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u062f\u0648\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u062a\u06cc\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc", "\u0686\u0648\u062a\u0647\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc"]), type$.JSArray_dynamic); C.List_wpm = H.setRuntimeTypeInfo(makeConstList(["EEEE\u060c d MMMM\u060c y", "d MMMM\u060c y", "d MMM\u060c y", "d/M/yy"]), type$.JSArray_dynamic); C.Map_5tTgY = new H.ConstantStringMap(25, {NAME: "ur", ERAS: C.List_Fys, ERANAMES: C.List_Fys, NARROWMONTHS: C.List_qpm0, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_gQW1, STANDALONEMONTHS: C.List_gQW1, SHORTMONTHS: C.List_gQW1, STANDALONESHORTMONTHS: C.List_gQW1, WEEKDAYS: C.List_Dns, STANDALONEWEEKDAYS: C.List_Dns, SHORTWEEKDAYS: C.List_Dns, STANDALONESHORTWEEKDAYS: C.List_Dns, NARROWWEEKDAYS: C.List_3US0, STANDALONENARROWWEEKDAYS: C.List_3US0, SHORTQUARTERS: C.List_KDx, QUARTERS: C.List_KDx, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_wpm, TIMEFORMATS: C.List_kWG0, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_qp8 = H.setRuntimeTypeInfo(makeConstList(["m.a.", "milodiy"]), type$.JSArray_dynamic); C.List_x7r = H.setRuntimeTypeInfo(makeConstList(["miloddan avvalgi", "milodiy"]), type$.JSArray_dynamic); C.List_aDt = H.setRuntimeTypeInfo(makeConstList(["Y", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_Wrl = H.setRuntimeTypeInfo(makeConstList(["yanvar", "fevral", "mart", "aprel", "may", "iyun", "iyul", "avgust", "sentabr", "oktabr", "noyabr", "dekabr"]), type$.JSArray_dynamic); C.List_Jcu = H.setRuntimeTypeInfo(makeConstList(["Yanvar", "Fevral", "Mart", "Aprel", "May", "Iyun", "Iyul", "Avgust", "Sentabr", "Oktabr", "Noyabr", "Dekabr"]), type$.JSArray_dynamic); C.List_QPD = H.setRuntimeTypeInfo(makeConstList(["yan", "fev", "mar", "apr", "may", "iyn", "iyl", "avg", "sen", "okt", "noy", "dek"]), type$.JSArray_dynamic); C.List_2WF = H.setRuntimeTypeInfo(makeConstList(["Yan", "Fev", "Mar", "Apr", "May", "Iyn", "Iyl", "Avg", "Sen", "Okt", "Noy", "Dek"]), type$.JSArray_dynamic); C.List_Gt3 = H.setRuntimeTypeInfo(makeConstList(["yakshanba", "dushanba", "seshanba", "chorshanba", "payshanba", "juma", "shanba"]), type$.JSArray_dynamic); C.List_6qD = H.setRuntimeTypeInfo(makeConstList(["Yak", "Dush", "Sesh", "Chor", "Pay", "Jum", "Shan"]), type$.JSArray_dynamic); C.List_3Vk = H.setRuntimeTypeInfo(makeConstList(["Y", "D", "S", "C", "P", "J", "S"]), type$.JSArray_dynamic); C.List_kvD0 = H.setRuntimeTypeInfo(makeConstList(["1-ch", "2-ch", "3-ch", "4-ch"]), type$.JSArray_dynamic); C.List_Nm5 = H.setRuntimeTypeInfo(makeConstList(["1-chorak", "2-chorak", "3-chorak", "4-chorak"]), type$.JSArray_dynamic); C.List_TO_TK = H.setRuntimeTypeInfo(makeConstList(["TO", "TK"]), type$.JSArray_dynamic); C.List_ato0 = H.setRuntimeTypeInfo(makeConstList(["EEEE, d-MMMM, y", "d-MMMM, y", "d-MMM, y", "dd/MM/yy"]), type$.JSArray_dynamic); C.List_W3H = H.setRuntimeTypeInfo(makeConstList(["H:mm:ss (zzzz)", "H:mm:ss (z)", "HH:mm:ss", "HH:mm"]), type$.JSArray_dynamic); C.Map_5ti8C = new H.ConstantStringMap(25, {NAME: "uz", ERAS: C.List_qp8, ERANAMES: C.List_x7r, NARROWMONTHS: C.List_aDt, STANDALONENARROWMONTHS: C.List_aDt, MONTHS: C.List_Wrl, STANDALONEMONTHS: C.List_Jcu, SHORTMONTHS: C.List_QPD, STANDALONESHORTMONTHS: C.List_2WF, WEEKDAYS: C.List_Gt3, STANDALONEWEEKDAYS: C.List_Gt3, SHORTWEEKDAYS: C.List_6qD, STANDALONESHORTWEEKDAYS: C.List_6qD, NARROWWEEKDAYS: C.List_3Vk, STANDALONENARROWWEEKDAYS: C.List_3Vk, SHORTQUARTERS: C.List_kvD0, QUARTERS: C.List_Nm5, AMPMS: C.List_TO_TK, DATEFORMATS: C.List_ato0, TIMEFORMATS: C.List_W3H, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_o0N}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_8gy = H.setRuntimeTypeInfo(makeConstList(["Tr\u01b0\u1edbc CN", "sau CN"]), type$.JSArray_dynamic); C.List_OBU = H.setRuntimeTypeInfo(makeConstList(["th\xe1ng 1", "th\xe1ng 2", "th\xe1ng 3", "th\xe1ng 4", "th\xe1ng 5", "th\xe1ng 6", "th\xe1ng 7", "th\xe1ng 8", "th\xe1ng 9", "th\xe1ng 10", "th\xe1ng 11", "th\xe1ng 12"]), type$.JSArray_dynamic); C.List_Utj = H.setRuntimeTypeInfo(makeConstList(["Th\xe1ng 1", "Th\xe1ng 2", "Th\xe1ng 3", "Th\xe1ng 4", "Th\xe1ng 5", "Th\xe1ng 6", "Th\xe1ng 7", "Th\xe1ng 8", "Th\xe1ng 9", "Th\xe1ng 10", "Th\xe1ng 11", "Th\xe1ng 12"]), type$.JSArray_dynamic); C.List_gDg = H.setRuntimeTypeInfo(makeConstList(["thg 1", "thg 2", "thg 3", "thg 4", "thg 5", "thg 6", "thg 7", "thg 8", "thg 9", "thg 10", "thg 11", "thg 12"]), type$.JSArray_dynamic); C.List_IJC0 = H.setRuntimeTypeInfo(makeConstList(["Thg 1", "Thg 2", "Thg 3", "Thg 4", "Thg 5", "Thg 6", "Thg 7", "Thg 8", "Thg 9", "Thg 10", "Thg 11", "Thg 12"]), type$.JSArray_dynamic); C.List_ivD = H.setRuntimeTypeInfo(makeConstList(["Ch\u1ee7 Nh\u1eadt", "Th\u1ee9 Hai", "Th\u1ee9 Ba", "Th\u1ee9 T\u01b0", "Th\u1ee9 N\u0103m", "Th\u1ee9 S\xe1u", "Th\u1ee9 B\u1ea3y"]), type$.JSArray_dynamic); C.List_EKW0 = H.setRuntimeTypeInfo(makeConstList(["CN", "Th 2", "Th 3", "Th 4", "Th 5", "Th 6", "Th 7"]), type$.JSArray_dynamic); C.List_JqH = H.setRuntimeTypeInfo(makeConstList(["CN", "T2", "T3", "T4", "T5", "T6", "T7"]), type$.JSArray_dynamic); C.List_UWS = H.setRuntimeTypeInfo(makeConstList(["Qu\xfd 1", "Qu\xfd 2", "Qu\xfd 3", "Qu\xfd 4"]), type$.JSArray_dynamic); C.List_SA_CH = H.setRuntimeTypeInfo(makeConstList(["SA", "CH"]), type$.JSArray_dynamic); C.List_IIM = H.setRuntimeTypeInfo(makeConstList(["EEEE, d MMMM, y", "d MMMM, y", "d MMM, y", "dd/MM/y"]), type$.JSArray_dynamic); C.List_I2P = H.setRuntimeTypeInfo(makeConstList(["{0} {1}", "{0} {1}", "{0}, {1}", "{0}, {1}"]), type$.JSArray_dynamic); C.Map_5tlgS = new H.ConstantStringMap(25, {NAME: "vi", ERAS: C.List_8gy, ERANAMES: C.List_8gy, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_OBU, STANDALONEMONTHS: C.List_Utj, SHORTMONTHS: C.List_gDg, STANDALONESHORTMONTHS: C.List_IJC0, WEEKDAYS: C.List_ivD, STANDALONEWEEKDAYS: C.List_ivD, SHORTWEEKDAYS: C.List_EKW0, STANDALONESHORTWEEKDAYS: C.List_EKW0, NARROWWEEKDAYS: C.List_JqH, STANDALONENARROWWEEKDAYS: C.List_JqH, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_UWS, AMPMS: C.List_SA_CH, DATEFORMATS: C.List_IIM, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 0, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 6, DATETIMEFORMATS: C.List_I2P}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_Mi2 = H.setRuntimeTypeInfo(makeConstList(["\u516c\u5143\u524d", "\u516c\u5143"]), type$.JSArray_dynamic); C.List_M9p = H.setRuntimeTypeInfo(makeConstList(["\u4e00\u6708", "\u4e8c\u6708", "\u4e09\u6708", "\u56db\u6708", "\u4e94\u6708", "\u516d\u6708", "\u4e03\u6708", "\u516b\u6708", "\u4e5d\u6708", "\u5341\u6708", "\u5341\u4e00\u6708", "\u5341\u4e8c\u6708"]), type$.JSArray_dynamic); C.List_HQz = H.setRuntimeTypeInfo(makeConstList(["\u661f\u671f\u65e5", "\u661f\u671f\u4e00", "\u661f\u671f\u4e8c", "\u661f\u671f\u4e09", "\u661f\u671f\u56db", "\u661f\u671f\u4e94", "\u661f\u671f\u516d"]), type$.JSArray_dynamic); C.List_Ivb = H.setRuntimeTypeInfo(makeConstList(["\u5468\u65e5", "\u5468\u4e00", "\u5468\u4e8c", "\u5468\u4e09", "\u5468\u56db", "\u5468\u4e94", "\u5468\u516d"]), type$.JSArray_dynamic); C.List_L17 = H.setRuntimeTypeInfo(makeConstList(["\u65e5", "\u4e00", "\u4e8c", "\u4e09", "\u56db", "\u4e94", "\u516d"]), type$.JSArray_dynamic); C.List_U0y = H.setRuntimeTypeInfo(makeConstList(["1\u5b63\u5ea6", "2\u5b63\u5ea6", "3\u5b63\u5ea6", "4\u5b63\u5ea6"]), type$.JSArray_dynamic); C.List_U4K = H.setRuntimeTypeInfo(makeConstList(["\u7b2c\u4e00\u5b63\u5ea6", "\u7b2c\u4e8c\u5b63\u5ea6", "\u7b2c\u4e09\u5b63\u5ea6", "\u7b2c\u56db\u5b63\u5ea6"]), type$.JSArray_dynamic); C.List_oGx0 = H.setRuntimeTypeInfo(makeConstList(["\u4e0a\u5348", "\u4e0b\u5348"]), type$.JSArray_dynamic); C.List_AgZ0 = H.setRuntimeTypeInfo(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "y/M/d"]), type$.JSArray_dynamic); C.List_r5w = H.setRuntimeTypeInfo(makeConstList(["zzzz ah:mm:ss", "z ah:mm:ss", "ah:mm:ss", "ah:mm"]), type$.JSArray_dynamic); C.Map_5tmGC = new H.ConstantStringMap(25, {NAME: "zh", ERAS: C.List_Mi2, ERANAMES: C.List_Mi2, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_M9p, STANDALONEMONTHS: C.List_M9p, SHORTMONTHS: C.List_24C, STANDALONESHORTMONTHS: C.List_24C, WEEKDAYS: C.List_HQz, STANDALONEWEEKDAYS: C.List_HQz, SHORTWEEKDAYS: C.List_Ivb, STANDALONESHORTWEEKDAYS: C.List_Ivb, NARROWWEEKDAYS: C.List_L17, STANDALONENARROWWEEKDAYS: C.List_L17, SHORTQUARTERS: C.List_U0y, QUARTERS: C.List_U4K, AMPMS: C.List_oGx0, DATEFORMATS: C.List_AgZ0, TIMEFORMATS: C.List_r5w, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_kkg = H.setRuntimeTypeInfo(makeConstList(["\u9031\u65e5", "\u9031\u4e00", "\u9031\u4e8c", "\u9031\u4e09", "\u9031\u56db", "\u9031\u4e94", "\u9031\u516d"]), type$.JSArray_dynamic); C.List_ek3 = H.setRuntimeTypeInfo(makeConstList(["\u7b2c1\u5b63", "\u7b2c2\u5b63", "\u7b2c3\u5b63", "\u7b2c4\u5b63"]), type$.JSArray_dynamic); C.List_ECQ = H.setRuntimeTypeInfo(makeConstList(["y\u5e74M\u6708d\u65e5EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "d/M/y"]), type$.JSArray_dynamic); C.List_Ybn = H.setRuntimeTypeInfo(makeConstList(["ah:mm:ss [zzzz]", "ah:mm:ss [z]", "ah:mm:ss", "ah:mm"]), type$.JSArray_dynamic); C.Map_5tTvc = new H.ConstantStringMap(25, {NAME: "zh_HK", ERAS: C.List_Mi2, ERANAMES: C.List_Mi2, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_24C, STANDALONEMONTHS: C.List_24C, SHORTMONTHS: C.List_24C, STANDALONESHORTMONTHS: C.List_24C, WEEKDAYS: C.List_HQz, STANDALONEWEEKDAYS: C.List_HQz, SHORTWEEKDAYS: C.List_kkg, STANDALONESHORTWEEKDAYS: C.List_kkg, NARROWWEEKDAYS: C.List_L17, STANDALONENARROWWEEKDAYS: C.List_L17, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_ek3, AMPMS: C.List_oGx0, DATEFORMATS: C.List_ECQ, TIMEFORMATS: C.List_Ybn, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EsU = H.setRuntimeTypeInfo(makeConstList(["\u897f\u5143\u524d", "\u897f\u5143"]), type$.JSArray_dynamic); C.List_2HT = H.setRuntimeTypeInfo(makeConstList(["y\u5e74M\u6708d\u65e5 EEEE", "y\u5e74M\u6708d\u65e5", "y\u5e74M\u6708d\u65e5", "y/M/d"]), type$.JSArray_dynamic); C.Map_5t5Nr = new H.ConstantStringMap(25, {NAME: "zh_TW", ERAS: C.List_EsU, ERANAMES: C.List_EsU, NARROWMONTHS: C.List_tO3, STANDALONENARROWMONTHS: C.List_tO3, MONTHS: C.List_24C, STANDALONEMONTHS: C.List_24C, SHORTMONTHS: C.List_24C, STANDALONESHORTMONTHS: C.List_24C, WEEKDAYS: C.List_HQz, STANDALONEWEEKDAYS: C.List_HQz, SHORTWEEKDAYS: C.List_kkg, STANDALONESHORTWEEKDAYS: C.List_kkg, NARROWWEEKDAYS: C.List_L17, STANDALONENARROWWEEKDAYS: C.List_L17, SHORTQUARTERS: C.List_ek3, QUARTERS: C.List_ek3, AMPMS: C.List_oGx0, DATEFORMATS: C.List_2HT, TIMEFORMATS: C.List_Ybn, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_MEg = H.setRuntimeTypeInfo(makeConstList(["J", "F", "M", "E", "M", "J", "J", "A", "S", "O", "N", "D"]), type$.JSArray_dynamic); C.List_izR0 = H.setRuntimeTypeInfo(makeConstList(["Januwari", "Februwari", "Mashi", "Ephreli", "Meyi", "Juni", "Julayi", "Agasti", "Septhemba", "Okthoba", "Novemba", "Disemba"]), type$.JSArray_dynamic); C.List_Qw8 = H.setRuntimeTypeInfo(makeConstList(["Jan", "Feb", "Mas", "Eph", "Mey", "Jun", "Jul", "Aga", "Sep", "Okt", "Nov", "Dis"]), type$.JSArray_dynamic); C.List_2pH = H.setRuntimeTypeInfo(makeConstList(["ISonto", "UMsombuluko", "ULwesibili", "ULwesithathu", "ULwesine", "ULwesihlanu", "UMgqibelo"]), type$.JSArray_dynamic); C.List_GPh = H.setRuntimeTypeInfo(makeConstList(["Son", "Mso", "Bil", "Tha", "Sin", "Hla", "Mgq"]), type$.JSArray_dynamic); C.List_AAY = H.setRuntimeTypeInfo(makeConstList(["S", "M", "B", "T", "S", "H", "M"]), type$.JSArray_dynamic); C.List_wqy = H.setRuntimeTypeInfo(makeConstList(["ikota yesi-1", "ikota yesi-2", "ikota yesi-3", "ikota yesi-4"]), type$.JSArray_dynamic); C.Map_5tFeh = new H.ConstantStringMap(25, {NAME: "zu", ERAS: C.List_BC_AD0, ERANAMES: C.List_BC_AD0, NARROWMONTHS: C.List_MEg, STANDALONENARROWMONTHS: C.List_qpm0, MONTHS: C.List_izR0, STANDALONEMONTHS: C.List_izR0, SHORTMONTHS: C.List_Qw8, STANDALONESHORTMONTHS: C.List_Qw8, WEEKDAYS: C.List_2pH, STANDALONEWEEKDAYS: C.List_2pH, SHORTWEEKDAYS: C.List_GPh, STANDALONESHORTWEEKDAYS: C.List_GPh, NARROWWEEKDAYS: C.List_AAY, STANDALONENARROWWEEKDAYS: C.List_AAY, SHORTQUARTERS: C.List_Q1_Q2_Q3_Q40, QUARTERS: C.List_wqy, AMPMS: C.List_AM_PM0, DATEFORMATS: C.List_cno0, TIMEFORMATS: C.List_aBy, AVAILABLEFORMATS: null, FIRSTDAYOFWEEK: 6, WEEKENDRANGE: C.List_5_60, FIRSTWEEKCUTOFFDAY: 5, DATETIMEFORMATS: C.List_Pss}, C.List_5tX, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_2zqtW = new H.ConstantStringMap(94, {af: C.Map_5t4AN, am: C.Map_5t6QF, ar: C.Map_bHS8J, az: C.Map_5tA4L, be: C.Map_5tfx7, bg: C.Map_5tW7l, bn: C.Map_bHedh, bs: C.Map_5tPJs, ca: C.Map_5t94O, cs: C.Map_5tSTY, da: C.Map_5tUEs, de: C.Map_5tI6I, de_CH: C.Map_5tqoQ, el: C.Map_5tEmr, en: C.Map_5tOTP, en_AU: C.Map_5tifn, en_CA: C.Map_5t0, en_GB: C.Map_5t3mV, en_IE: C.Map_5tE4y, en_IN: C.Map_5tmFp, en_SG: C.Map_5tU48, en_US: C.Map_5tgRf, en_ZA: C.Map_5t43h, es: C.Map_5tQ5r, es_419: C.Map_5tI8w, es_MX: C.Map_5t2jN, es_US: C.Map_5tzHO, et: C.Map_5t81A, eu: C.Map_5tuAF, fa: C.Map_bH8aB, fi: C.Map_5tMIV, fil: C.Map_5tGfX, fr: C.Map_5tmF3, fr_CA: C.Map_5tStJ, gl: C.Map_5t0iF, gsw: C.Map_5tXzX, gu: C.Map_5tyXb, he: C.Map_5t1NX, hi: C.Map_5t4AN0, hr: C.Map_5t8tP, hu: C.Map_5toEG, hy: C.Map_5tKeb, id: C.Map_5tIWo, is: C.Map_5twEo, it: C.Map_5twQW, ja: C.Map_5ta6h, ka: C.Map_5tq4G, kk: C.Map_5tIiW, km: C.Map_5tmmo, kn: C.Map_5twHn, ko: C.Map_5t2jN0, ky: C.Map_5tMul, lo: C.Map_5ta5W, lt: C.Map_5tIof, lv: C.Map_5twsa, mk: C.Map_5totL, ml: C.Map_5tivI, mn: C.Map_5tMdN, mr: C.Map_bHq0y, ms: C.Map_5tmT8, my: C.Map_bHCt8, nb: C.Map_5tkOw, ne: C.Map_bHcMD, nl: C.Map_5t5gb, no: C.Map_5tJNA, or: C.Map_5tQ49, pa: C.Map_5tR3l, pl: C.Map_5tK5H, ps: C.Map_bHm6K, pt: C.Map_5tq5f, pt_PT: C.Map_5t8IM, ro: C.Map_5teC6, ru: C.Map_5tDrw, si: C.Map_5t1p9, sk: C.Map_5tUWX, sl: C.Map_5trp3, sq: C.Map_5tSlD, sr: C.Map_5tqJ4, sr_Latn: C.Map_5tN7e, sv: C.Map_5tgsm, sw: C.Map_5tum9, ta: C.Map_5tDni, te: C.Map_5t6Xj, th: C.Map_5tCBD, tl: C.Map_5t5MH, tr: C.Map_5toyU, uk: C.Map_5tbTF, ur: C.Map_5tTgY, uz: C.Map_5ti8C, vi: C.Map_5tlgS, zh: C.Map_5tmGC, zh_HK: C.Map_5tTvc, zh_TW: C.Map_5t5Nr, zu: C.Map_5tFeh}, C.List_2zE, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.List_EQM = H.setRuntimeTypeInfo(makeConstList(["d", "E", "EEEE", "LLL", "LLLL", "M", "Md", "MEd", "MMM", "MMMd", "MMMEd", "MMMM", "MMMMd", "MMMMEEEEd", "QQQ", "QQQQ", "y", "yM", "yMd", "yMEd", "yMMM", "yMMMd", "yMMMEd", "yMMMM", "yMMMMd", "yMMMMEEEEd", "yQQQ", "yQQQQ", "H", "Hm", "Hms", "j", "jm", "jms", "jmv", "jmz", "jz", "m", "ms", "s", "v", "z", "zzzz", "ZZZZ"]), type$.JSArray_legacy_String); C.Map_EQUuv = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd-MM", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM-y", yMd: "y-MM-dd", yMEd: "EEE y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ27I = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE\u1363 M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE\u1363 MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE\u1363 MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE\u1363 d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE\u1363 MMM d y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ3hK = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/\u200fM", MEd: "EEE\u060c d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE\u060c d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u060c d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M\u200f/y", yMd: "d\u200f/M\u200f/y", yMEd: "EEE\u060c d/\u200fM/\u200fy", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE\u060c d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE\u060c d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQewF = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "dd.MM.y, EEE", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "d MMM y, EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "d MMMM y, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ7FR = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQA0t = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.MM", MEd: "EEE, d.MM", MMM: "MM", MMMd: "d.MM", MMMEd: "EEE, d.MM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y '\u0433'.", yM: "MM.y '\u0433'.", yMd: "d.MM.y '\u0433'.", yMEd: "EEE, d.MM.y '\u0433'.", yMMM: "MM.y '\u0433'.", yMMMd: "d.MM.y '\u0433'.", yMMMEd: "EEE, d.MM.y '\u0433'.", yMMMM: "MMMM y '\u0433'.", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "H '\u0447'.", Hm: "H:mm '\u0447'.", Hms: "H:mm:ss '\u0447'.", j: "H '\u0447'.", jm: "H:mm '\u0447'.", jms: "H:mm:ss '\u0447'.", jmv: "HH:mm '\u0447'. v", jmz: "HH:mm '\u0447'. z", jz: "H '\u0447'. z", m: "m", ms: "m:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ0 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQRi5 = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "MM/y", yMd: "d.M.y.", yMEd: "EEE, d.M.y.", yMMM: "MMM y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "LLLL y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQw5x = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "LLL 'de' y", yMMMd: "d MMM 'de' y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL 'de' y", yMMMMd: "d MMMM 'de' y", yMMMMEEEEd: "EEEE, d MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQckJ = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d. M.", MEd: "EEE d. M.", MMM: "LLL", MMMd: "d. M.", MMMEd: "EEE d. M.", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE d. M. y", yMMM: "LLLL y", yMMMd: "d. M. y", yMMMEd: "EEE d. M. y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQOXv = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "MMM", LLLL: "MMMM", M: "M", Md: "d.M", MEd: "EEE d.M", MMM: "MMM", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "MMMM", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE 'den' d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQKbu = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'Uhr'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH 'Uhr'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH 'Uhr' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQqBb = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "MMM", LLLL: "MMMM", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "MMM", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "MMMM", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQsU8 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE, M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "M/d/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQgeL = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ8Ac = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "EEE, MM-dd", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE, y-MM-dd", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQaha = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ4CA = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQuEV = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ461 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQGVt = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM/dd", MEd: "EEE, MM/dd", MMM: "LLL", MMMd: "dd MMM", MMMEd: "EEE, dd MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, dd MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "y/MM/dd", yMEd: "EEE, y/MM/dd", yMMM: "MMM y", yMMMd: "dd MMM y", yMMMEd: "EEE, dd MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQi7B = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQgsm = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ8TW = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "H:mm", Hms: "H:mm:ss", j: "HH", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQXj5 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMMM 'de' y", yMMMd: "d 'de' MMMM 'de' y", yMMMEd: "EEE, d 'de' MMMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQwoc = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "MMMM", LLLL: "MMMM", M: "M", Md: "d.M", MEd: "EEE, d.M", MMM: "MMMM", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "MMMM", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQskt = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "M/d, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y('e')'ko' MMMM", yMMMMd: "y('e')'ko' MMMM'ren' d", yMMMMEEEEd: "y('e')'ko' MMMM'ren' d('a'), EEEE", yQQQ: "y('e')'ko' QQQ", yQQQQ: "y('e')'ko' QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQe0L = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE M/d", MMM: "LLL", MMMd: "d LLL", MMMEd: "EEE d LLL", MMMM: "LLLL", MMMMd: "d LLLL", MMMMEEEEd: "EEEE d LLLL", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y/M", yMd: "y/M/d", yMEd: "EEE y/M/d", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm (z)", jz: "H (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ8Gl = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "ccc d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "cccc d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "L.y", yMd: "d.M.y", yMEd: "EEE d.M.y", yMMM: "LLL y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H.mm", Hms: "H.mm.ss", j: "H", jm: "H.mm", jms: "H.mm.ss", jmv: "H.mm v", jmz: "H.mm z", jz: "H z", m: "m", ms: "m.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQifx = new H.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE dd/MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE dd/MM/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'h'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH 'h'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH 'h' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQoGx = new H.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M-d", MEd: "EEE M-d", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH 'h'", Hm: "HH 'h' mm", Hms: "HH 'h' mm 'min' ss 's'", j: "HH 'h'", jm: "HH 'h' mm", jms: "HH 'h' mm 'min' ss 's'", jmv: "HH 'h' mm v", jmz: "HH 'h' mm z", jz: "HH 'h' z", m: "m", ms: "mm 'min' ss 's'", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQwEo = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d 'de' MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM 'de' y", yMMMd: "d/MM/y", yMMMEd: "EEE, d/MM/y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQIIM = new H.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-M", yMd: "d.M.y", yMEd: "EEE, y-M-d", yMMM: "MMM y", yMMMd: "y MMM d", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "HH:mm", Hms: "HH:mm:ss", j: "H", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQpVn = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ6YB = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d \u05d1MMM", MMMEd: "EEE, d \u05d1MMM", MMMM: "LLLL", MMMMd: "d \u05d1MMMM", MMMMEEEEd: "EEEE, d \u05d1MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d \u05d1MMM y", yMMMEd: "EEE, d \u05d1MMM y", yMMMM: "MMMM y", yMMMMd: "d \u05d1MMMM y", yMMMMEEEEd: "EEEE, d \u05d1MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ4CA0 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ2uL = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "dd. MM.", MEd: "EEE, dd. MM.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "MM. y.", yMd: "dd. MM. y.", yMEd: "EEE, dd. MM. y.", yMMM: "LLL y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "LLLL y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQyjx = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M. d.", MEd: "M. d., EEE", MMM: "LLL", MMMd: "MMM d.", MMMEd: "MMM d., EEE", MMMM: "LLLL", MMMMd: "MMMM d.", MMMMEEEEd: "MMMM d., EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "y. M.", yMd: "y. MM. dd.", yMEd: "y. MM. dd., EEE", yMMM: "y. MMM", yMMMd: "y. MMM d.", yMMMEd: "y. MMM d., EEE", yMMMM: "y. MMMM", yMMMMd: "y. MMMM d.", yMMMMEEEEd: "y. MMMM d., EEEE", yQQQ: "y. QQQ", yQQQQ: "y. QQQQ", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQglO = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "d.MM.y \u0569., EEE", yMMM: "y \u0569. LLL", yMMMd: "d MMM, y \u0569.", yMMMEd: "y \u0569. MMM d, EEE", yMMMM: "y \u0569\u2024 LLLL", yMMMMd: "d MMMM, y \u0569.", yMMMMEEEEd: "y \u0569. MMMM d, EEEE", yQQQ: "y \u0569. QQQ", yQQQQ: "y \u0569. QQQQ", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQfZ2 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQE5P = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M. y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "v \u2013 HH:mm", jmz: "z \u2013 HH:mm", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQCeS = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQCKg = new H.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "M\u6708", LLLL: "M\u6708", M: "M\u6708", Md: "M/d", MEd: "M/d(EEE)", MMM: "M\u6708", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5(EEE)", MMMM: "M\u6708", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d(EEE)", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5(EEE)", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y/QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "H:mm", Hms: "H:mm:ss", j: "H\u6642", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ6m4 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM. y", yMMMd: "d MMM. y", yMMMEd: "EEE, d MMM. y", yMMMM: "MMMM, y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ, y", yQQQQ: "QQQQ, y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ56y = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "dd.MM, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "dd.MM.y, EEE", yMMM: "y '\u0436'. MMM", yMMMd: "y '\u0436'. d MMM", yMMMEd: "y '\u0436'. d MMM, EEE", yMMMM: "y '\u0436'. MMMM", yMMMMd: "y '\u0436'. d MMMM", yMMMMEEEEd: "y '\u0436'. d MMMM, EEEE", yQQQ: "y '\u0436'. QQQ", yQQQQ: "y '\u0436'. QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQN80 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ8CO = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d,y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQgyO = new H.ConstantStringMap(44, {d: "d\uc77c", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\uc6d4", Md: "M. d.", MEd: "M. d. (EEE)", MMM: "LLL", MMMd: "MMM d\uc77c", MMMEd: "MMM d\uc77c (EEE)", MMMM: "LLLL", MMMMd: "MMMM d\uc77c", MMMMEEEEd: "MMMM d\uc77c EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\ub144", yM: "y. M.", yMd: "y. M. d.", yMEd: "y. M. d. (EEE)", yMMM: "y\ub144 MMM", yMMMd: "y\ub144 MMM d\uc77c", yMMMEd: "y\ub144 MMM d\uc77c (EEE)", yMMMM: "y\ub144 MMMM", yMMMMd: "y\ub144 MMMM d\uc77c", yMMMMEEEEd: "y\ub144 MMMM d\uc77c EEEE", yQQQ: "y\ub144 QQQ", yQQQQ: "y\ub144 QQQQ", H: "H\uc2dc", Hm: "HH:mm", Hms: "H\uc2dc m\ubd84 s\ucd08", j: "a h\uc2dc", jm: "a h:mm", jms: "a h:mm:ss", jmv: "a h:mm v", jmz: "a h:mm z", jz: "a h\uc2dc z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQWEg = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd-MM", MEd: "dd-MM, EEE", MMM: "LLL", MMMd: "d-MMM", MMMEd: "d-MMM, EEE", MMMM: "LLLL", MMMMd: "d-MMMM", MMMMEEEEd: "d-MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-dd-MM", yMEd: "y-dd-MM, EEE", yMMM: "y-'\u0436'. MMM", yMMMd: "y-'\u0436'. d-MMM", yMMMEd: "y-'\u0436'. d-MMM, EEE", yMMMM: "y-'\u0436'., MMMM", yMMMMd: "y-'\u0436'., d-MMMM", yMMMMEEEEd: "y-'\u0436'., d-MMMM, EEEE", yQQQ: "y-'\u0436'., QQQ", yQQQQ: "y-'\u0436'., QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQSVO = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQu76 = new H.ConstantStringMap(44, {d: "dd", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "MM", Md: "MM-d", MEd: "MM-dd, EEE", MMM: "MM", MMMd: "MM-dd", MMMEd: "MM-dd, EEE", MMMM: "LLLL", MMMMd: "MMMM d 'd'.", MMMMEEEEd: "MMMM d 'd'., EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y-MM", yMMMd: "y-MM-dd", yMMMEd: "y-MM-dd, EEE", yMMMM: "y 'm'. LLLL", yMMMMd: "y 'm'. MMMM d 'd'.", yMMMMEEEEd: "y 'm'. MMMM d 'd'., EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm; v", jmz: "HH:mm; z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQuxD = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM.", MEd: "EEE, dd.MM.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y. 'g'.", yM: "MM.y.", yMd: "y.MM.d.", yMEd: "EEE, d.M.y.", yMMM: "y. 'g'. MMM", yMMMd: "y. 'g'. d. MMM", yMMMEd: "EEE, y. 'g'. d. MMM", yMMMM: "y. 'g'. MMMM", yMMMMd: "y. 'gada' d. MMMM", yMMMMEEEEd: "EEEE, y. 'gada' d. MMMM", yQQQ: "y. 'g'. QQQ", yQQQQ: "y. 'g'. QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQQXJ = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y '\u0433'.", yMMMd: "d MMM y '\u0433'.", yMMMEd: "EEE, d MMM y '\u0433'.", yMMMM: "MMMM y '\u0433'.", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQn1f = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "d/M/y", yMEd: "d-M-y, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y, MMMM d", yMMMMEEEEd: "y, MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQMYA = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LLLLL", Md: "MMMMM/dd", MEd: "MMMMM/dd. EEE", MMM: "LLL", MMMd: "MMM'\u044b\u043d' d", MMMEd: "MMM'\u044b\u043d' d. EEE", MMMM: "LLLL", MMMMd: "MMMM'\u044b\u043d' d", MMMMEEEEd: "MMMM'\u044b\u043d' d. EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y MMMMM", yMd: "y.MM.dd", yMEd: "y.MM.dd. EEE", yMMM: "y '\u043e\u043d\u044b' MMM", yMMMd: "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d", yMMMEd: "y '\u043e\u043d\u044b' MMM'\u044b\u043d' d. EEE", yMMMM: "y '\u043e\u043d\u044b' MMMM", yMMMMd: "y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d", yMMMMEEEEd: "y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d. EEEE", yQQQ: "y '\u043e\u043d\u044b' QQQ", yQQQQ: "y '\u043e\u043d\u044b' QQQQ", H: "HH '\u0446'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH '\u0446'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH '\u0446' (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQqXv = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d, MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "H:mm", Hms: "H:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQWH7 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d-M", MEd: "EEE, d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M-y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQc6D = new H.ConstantStringMap(44, {d: "d", E: "ccc\u1014\u1031\u1037", EEEE: "cccc\u1014\u1031\u1037", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M\u104a EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "MMM d\u104a EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d \u101b\u1000\u103a EEEE\u1014\u1031\u1037", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "dd-MM-y", yMEd: "d/M/y\u104a EEE", yMMM: "MMM y", yMMMd: "y\u104a MMM d", yMMMEd: "y\u104a MMM d\u104a EEE", yMMMM: "y MMMM", yMMMMd: "y\u104a d MMMM", yMMMMEEEEd: "y\u104a MMMM d\u104a EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "v HH:mm", jmz: "z HH:mm", jz: "z HH", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQOlv = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "d.M.", MEd: "EEE d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE d.MM.y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQyxq = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y MMMM d", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQIY7 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d-M", MEd: "EEE d-M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M-y", yMd: "d-M-y", yMEd: "EEE d-M-y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQU4G = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, dd-MM.", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQQGy = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.MM", MEd: "EEE, d.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "d.MM.y", yMEd: "EEE, d.MM.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQtPa = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "\u062f y \u062f MMMM d", yMMMMEEEEd: "EEEE \u062f y \u062f MMMM d", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH (z)", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ23h = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d 'de' MMM", MMMEd: "EEE, d 'de' MMM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "EEEE, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM 'de' y", yMMMd: "d 'de' MMM 'de' y", yMMMEd: "EEE, d 'de' MMM 'de' y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ23h0 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d/MM", MMMEd: "EEE, d/MM", MMMM: "LLLL", MMMMd: "d 'de' MMMM", MMMMEEEEd: "cccc, d 'de' MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MM/y", yMMMd: "d/MM/y", yMMMEd: "EEE, d/MM/y", yMMMM: "MMMM 'de' y", yMMMMd: "d 'de' MMMM 'de' y", yMMMMEEEEd: "EEEE, d 'de' MMMM 'de' y", yQQQ: "QQQQ 'de' y", yQQQQ: "QQQQ 'de' y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQcg9 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "EEE, dd.MM.y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ4AN = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "ccc, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "cccc, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "ccc, dd.MM.y '\u0433'.", yMMM: "LLL y '\u0433'.", yMMMd: "d MMM y '\u0433'.", yMMMEd: "EEE, d MMM y '\u0433'.", yMMMM: "LLLL y '\u0433'.", yMMMMd: "d MMMM y '\u0433'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0433'.", yQQQ: "QQQ y '\u0433'.", yQQQQ: "QQQQ y '\u0433'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQCDm = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M-d", MEd: "M-d, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d EEE", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "MMMM d EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-M", yMd: "y-M-d", yMEd: "y-M-d, EEE", yMMM: "y MMM", yMMMd: "y MMM d", yMMMEd: "y MMM d, EEE", yMMMM: "y MMMM", yMMMMd: "y MMMM d", yMMMMEEEEd: "y MMMM d, EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH.mm", Hms: "HH.mm.ss", j: "HH", jm: "HH.mm", jms: "HH.mm.ss", jmv: "HH.mm v", jmz: "HH.mm z", jz: "HH z", m: "m", ms: "mm.ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ27z = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L.", Md: "d. M.", MEd: "EEE d. M.", MMM: "LLL", MMMd: "d. M.", MMMEd: "EEE d. M.", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE d. M. y", yMMM: "M/y", yMMMd: "d. M. y", yMMMEd: "EEE d. M. y", yMMMM: "LLLL y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "H", Hm: "H:mm", Hms: "H:mm:ss", j: "H", jm: "H:mm", jms: "H:mm:ss", jmv: "H:mm v", jmz: "H:mm z", jz: "H z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQC3K = new H.ConstantStringMap(44, {d: "d.", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d. M.", MEd: "EEE, d. M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE, d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d. M. y", yMEd: "EEE, d. M. y", yMMM: "MMM y", yMMMd: "d. MMM y", yMMMEd: "EEE, d. MMM y", yMMMM: "MMMM y", yMMMMd: "d. MMMM y", yMMMMEEEEd: "EEEE, d. MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH'h'", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH'h'", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH'h' z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQmKQ = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M", MEd: "EEE, d.M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M.y", yMd: "d.M.y", yMEd: "EEE, d.M.y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "QQQ, y", yQQQQ: "QQQQ, y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a, v", jmz: "h:mm a, z", jz: "h a, z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQEHY = new H.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d.M.", MEd: "EEE, d.M.", MMM: "LLL", MMMd: "d. MMM", MMMEd: "EEE d. MMM", MMMM: "LLLL", MMMMd: "d. MMMM", MMMMEEEEd: "EEEE, d. MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y.", yM: "M.y.", yMd: "d.M.y.", yMEd: "EEE, d.M.y.", yMMM: "MMM y.", yMMMd: "d. MMM y.", yMMMEd: "EEE, d. MMM y.", yMMMM: "MMMM y.", yMMMMd: "d. MMMM y.", yMMMMEEEEd: "EEEE, d. MMMM y.", yQQQ: "QQQ y.", yQQQQ: "QQQQ y.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQyjH = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "EEE, y-MM-dd", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE d MMMM y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQYf3 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE, d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "EEEE, d MMMM y", yQQQ: "y QQQ", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQulJ = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "dd-MM, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "MMM d, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "MMMM d, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, d/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "a h", jm: "a h:mm", jms: "a h:mm:ss", jmv: "a h:mm v", jmz: "a h:mm z", jz: "a h z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQGgs = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/M, EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMM, EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM, EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "d/M/y, EEE", yMMM: "MMM y", yMMMd: "d, MMM y", yMMMEd: "d MMM, y, EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "d, MMMM y, EEEE", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQbY5 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u0e17\u0e35\u0e48 d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE d/M/y", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "EEE d MMM y", yMMMM: "MMMM G y", yMMMMd: "d MMMM G y", yMMMMEEEEd: "EEEE\u0e17\u0e35\u0e48 d MMMM G y", yQQQ: "QQQ y", yQQQQ: "QQQQ G y", H: "HH", Hm: "HH:mm \u0e19.", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm \u0e19.", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ4m4 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "d/MM EEE", MMM: "LLL", MMMd: "d MMM", MMMEd: "d MMMM EEE", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "d MMMM EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM/y", yMd: "dd.MM.y", yMEd: "d.M.y EEE", yMMM: "MMM y", yMMMd: "d MMM y", yMMMEd: "d MMM y EEE", yMMMM: "MMMM y", yMMMMd: "d MMMM y", yMMMMEEEEd: "d MMMM y EEEE", yQQQ: "y QQQ", yQQQQ: "y QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ46y = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LL", Md: "dd.MM", MEd: "EEE, dd.MM", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd.MM.y", yMEd: "EEE, dd.MM.y", yMMM: "LLL y", yMMMd: "d MMM y", yMMMEd: "EEE, d MMM y", yMMMM: "LLLL y", yMMMMd: "d MMMM y '\u0440'.", yMMMMEEEEd: "EEEE, d MMMM y '\u0440'.", yQQQ: "QQQ y", yQQQQ: "QQQQ y '\u0440'.", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQ8Gl0 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "d/M", MEd: "EEE\u060c d/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE\u060c d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE\u060c d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE\u060c d/M/y", yMMM: "MMM y", yMMMd: "d MMM\u060c y", yMMMEd: "EEE\u060c d MMM\u060c y", yMMMM: "MMMM y", yMMMMd: "d MMMM\u060c y", yMMMMEEEEd: "EEEE\u060c d MMMM\u060c y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQE8w = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "LL", Md: "dd/MM", MEd: "EEE, dd/MM", MMM: "LLL", MMMd: "d-MMM", MMMEd: "EEE, d-MMM", MMMM: "LLLL", MMMMd: "d-MMMM", MMMMEEEEd: "EEEE, d-MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "MM.y", yMd: "dd/MM/y", yMEd: "EEE, dd/MM/y", yMMM: "MMM, y", yMMMd: "d-MMM, y", yMMMEd: "EEE, d-MMM, y", yMMMM: "MMMM, y", yMMMMd: "d-MMMM, y", yMMMMEEEEd: "EEEE, d-MMMM, y", yQQQ: "y, QQQ", yQQQQ: "y, QQQQ", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm (v)", jmz: "HH:mm (z)", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQiF8 = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "dd/M", MEd: "EEE, dd/M", MMM: "LLL", MMMd: "d MMM", MMMEd: "EEE, d MMM", MMMM: "LLLL", MMMMd: "d MMMM", MMMMEEEEd: "EEEE, d MMMM", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "d/M/y", yMEd: "EEE, dd/M/y", yMMM: "MMM y", yMMMd: "d MMM, y", yMMMEd: "EEE, d MMM, y", yMMMM: "MMMM 'n\u0103m' y", yMMMMd: "d MMMM, y", yMMMMEEEEd: "EEEE, d MMMM, y", yQQQ: "QQQ y", yQQQQ: "QQQQ 'n\u0103m' y", H: "HH", Hm: "H:mm", Hms: "HH:mm:ss", j: "HH", jm: "H:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQinH = new H.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "M/d", MEd: "M/dEEE", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y\u5e74M\u6708", yMd: "y/M/d", yMEd: "y/M/dEEE", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y\u5e74\u7b2cQ\u5b63\u5ea6", yQQQQ: "y\u5e74\u7b2cQ\u5b63\u5ea6", H: "H\u65f6", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u65f6", jm: "ah:mm", jms: "ah:mm:ss", jmv: "v ah:mm", jmz: "z ah:mm", jz: "zah\u65f6", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQp7V = new H.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "d/M", MEd: "d/M\uff08EEE\uff09", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "M/y", yMd: "d/M/y", yMEd: "d/M/y\uff08EEE\uff09", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5EEEE", yQQQ: "y\u5e74QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u6642", jm: "ah:mm", jms: "ah:mm:ss", jmv: "ah:mm [v]", jmz: "ah:mm [z]", jz: "ah\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQpI6 = new H.ConstantStringMap(44, {d: "d\u65e5", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "M\u6708", Md: "M/d", MEd: "M/d\uff08EEE\uff09", MMM: "LLL", MMMd: "M\u6708d\u65e5", MMMEd: "M\u6708d\u65e5 EEE", MMMM: "LLLL", MMMMd: "M\u6708d\u65e5", MMMMEEEEd: "M\u6708d\u65e5 EEEE", QQQ: "QQQ", QQQQ: "QQQQ", y: "y\u5e74", yM: "y/M", yMd: "y/M/d", yMEd: "y/M/d\uff08EEE\uff09", yMMM: "y\u5e74M\u6708", yMMMd: "y\u5e74M\u6708d\u65e5", yMMMEd: "y\u5e74M\u6708d\u65e5 EEE", yMMMM: "y\u5e74M\u6708", yMMMMd: "y\u5e74M\u6708d\u65e5", yMMMMEEEEd: "y\u5e74M\u6708d\u65e5 EEEE", yQQQ: "y\u5e74QQQ", yQQQQ: "y\u5e74QQQQ", H: "H\u6642", Hm: "HH:mm", Hms: "HH:mm:ss", j: "ah\u6642", jm: "ah:mm", jms: "ah:mm:ss", jmv: "ah:mm [v]", jmz: "ah:mm [z]", jz: "ah\u6642 z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQd8d = new H.ConstantStringMap(44, {d: "d", E: "ccc", EEEE: "cccc", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "MM-dd", MEd: "MM-dd, EEE", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "y-MM", yMd: "y-MM-dd", yMEd: "y-MM-dd, EEE", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "HH", jm: "HH:mm", jms: "HH:mm:ss", jmv: "HH:mm v", jmz: "HH:mm z", jz: "HH z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_2zurD = new H.ConstantStringMap(94, {af: C.Map_EQUuv, am: C.Map_EQ27I, ar: C.Map_EQ3hK, az: C.Map_EQewF, be: C.Map_EQ7FR, bg: C.Map_EQA0t, bn: C.Map_EQ0, bs: C.Map_EQRi5, ca: C.Map_EQw5x, cs: C.Map_EQckJ, da: C.Map_EQOXv, de: C.Map_EQKbu, de_CH: C.Map_EQKbu, el: C.Map_EQqBb, en: C.Map_EQsU8, en_AU: C.Map_EQgeL, en_CA: C.Map_EQ8Ac, en_GB: C.Map_EQaha, en_IE: C.Map_EQ4CA, en_IN: C.Map_EQuEV, en_SG: C.Map_EQ461, en_US: C.Map_EQsU8, en_ZA: C.Map_EQGVt, es: C.Map_EQi7B, es_419: C.Map_EQgsm, es_MX: C.Map_EQ8TW, es_US: C.Map_EQXj5, et: C.Map_EQwoc, eu: C.Map_EQskt, fa: C.Map_EQe0L, fi: C.Map_EQ8Gl, fil: C.Map_EQsU8, fr: C.Map_EQifx, fr_CA: C.Map_EQoGx, gl: C.Map_EQwEo, gsw: C.Map_EQIIM, gu: C.Map_EQpVn, he: C.Map_EQ6YB, hi: C.Map_EQ4CA0, hr: C.Map_EQ2uL, hu: C.Map_EQyjx, hy: C.Map_EQglO, id: C.Map_EQfZ2, is: C.Map_EQE5P, it: C.Map_EQCeS, ja: C.Map_EQCKg, ka: C.Map_EQ6m4, kk: C.Map_EQ56y, km: C.Map_EQN80, kn: C.Map_EQ8CO, ko: C.Map_EQgyO, ky: C.Map_EQWEg, lo: C.Map_EQSVO, lt: C.Map_EQu76, lv: C.Map_EQuxD, mk: C.Map_EQQXJ, ml: C.Map_EQn1f, mn: C.Map_EQMYA, mr: C.Map_EQqXv, ms: C.Map_EQWH7, my: C.Map_EQc6D, nb: C.Map_EQOlv, ne: C.Map_EQyxq, nl: C.Map_EQIY7, no: C.Map_EQOlv, or: C.Map_EQsU8, pa: C.Map_EQU4G, pl: C.Map_EQQGy, ps: C.Map_EQtPa, pt: C.Map_EQ23h, pt_PT: C.Map_EQ23h0, ro: C.Map_EQcg9, ru: C.Map_EQ4AN, si: C.Map_EQCDm, sk: C.Map_EQ27z, sl: C.Map_EQC3K, sq: C.Map_EQmKQ, sr: C.Map_EQEHY, sr_Latn: C.Map_EQEHY, sv: C.Map_EQyjH, sw: C.Map_EQYf3, ta: C.Map_EQulJ, te: C.Map_EQGgs, th: C.Map_EQbY5, tl: C.Map_EQsU8, tr: C.Map_EQ4m4, uk: C.Map_EQ46y, ur: C.Map_EQ8Gl0, uz: C.Map_EQE8w, vi: C.Map_EQiF8, zh: C.Map_EQinH, zh_HK: C.Map_EQp7V, zh_TW: C.Map_EQpI6, zu: C.Map_EQd8d}, C.List_2zE, H.findType("ConstantStringMap*>")); C.List_mode = H.setRuntimeTypeInfo(makeConstList(["mode"]), type$.JSArray_legacy_String); C.Map_9aZ6I = new H.ConstantStringMap(1, {mode: "basic"}, C.List_mode, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_A2Y0 = H.setRuntimeTypeInfo(makeConstList(["age_group_0", "age_group_30", "age_group_60", "age_group_90", "age_group_120"]), type$.JSArray_legacy_String); C.Map_A2Rmq = new H.ConstantStringMap(5, {age_group_0: 0, age_group_30: 30, age_group_60: 60, age_group_90: 90, age_group_120: 120}, C.List_A2Y0, type$.ConstantStringMap_of_legacy_String_and_legacy_int); C.List_Bzp0 = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3", "4", "-1"]), type$.JSArray_legacy_String); C.Map_BzEVk = new H.ConstantStringMap(5, {"1": "draft", "2": "active", "3": "paused", "4": "completed", "-1": "pending"}, C.List_Bzp0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_EQGBe = new H.ConstantStringMap(44, {d: "d", E: "EEE", EEEE: "EEEE", LLL: "LLL", LLLL: "LLLL", M: "L", Md: "M/d", MEd: "EEE, M/d", MMM: "LLL", MMMd: "MMM d", MMMEd: "EEE, MMM d", MMMM: "LLLL", MMMMd: "MMMM d", MMMMEEEEd: "EEEE, MMMM d", QQQ: "QQQ", QQQQ: "QQQQ", y: "y", yM: "M/y", yMd: "M/d/y", yMEd: "EEE, M/d/y", yMMM: "MMM y", yMMMd: "MMM d, y", yMMMEd: "EEE, MMM d, y", yMMMM: "MMMM y", yMMMMd: "MMMM d, y", yMMMMEEEEd: "EEEE, MMMM d, y", yQQQ: "QQQ y", yQQQQ: "QQQQ y", H: "HH", Hm: "HH:mm", Hms: "HH:mm:ss", j: "h a", jm: "h:mm a", jms: "h:mm:ss a", jmv: "h:mm a v", jmz: "h:mm a z", jz: "h a z", m: "m", ms: "mm:ss", s: "s", v: "v", z: "z", zzzz: "zzzz", ZZZZ: "ZZZZ"}, C.List_EQM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Color_4294638330 = new P.Color(4294638330); C.Color_4294309365 = new P.Color(4294309365); C.Color_4293848814 = new P.Color(4293848814); C.Color_4292927712 = new P.Color(4292927712); C.Color_4292269782 = new P.Color(4292269782); C.Color_4288585374 = new P.Color(4288585374); C.Color_4284572001 = new P.Color(4284572001); C.Color_4282532418 = new P.Color(4282532418); C.Color_4280361249 = new P.Color(4280361249); C.Map_HFpTk = new H.GeneralConstantMap([50, C.Color_4294638330, 100, C.Color_4294309365, 200, C.Color_4293848814, 300, C.Color_4292927712, 350, C.Color_4292269782, 400, C.Color_4290624957, 500, C.Color_4288585374, 600, C.Color_4285887861, 700, C.Color_4284572001, 800, C.Color_4282532418, 850, C.Color_4281348144, 900, C.Color_4280361249], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.List_HL7 = H.setRuntimeTypeInfo(makeConstList(["frameworkVersion", "channel", "repositoryUrl", "frameworkRevision", "frameworkCommitDate", "engineRevision", "dartSdkVersion", "flutterRoot"]), type$.JSArray_legacy_String); C.Map_HL6YB = new H.ConstantStringMap(8, {frameworkVersion: "2.2.3", channel: "stable", repositoryUrl: "https://github.com/flutter/flutter.git", frameworkRevision: "f4abaa0735eba4dfd8f33f73363911d63931fe03", frameworkCommitDate: "2021-07-01 12:46:11 -0700", engineRevision: "241c87ad800beeab545ab867354d4683d5bfb6ce", dartSdkVersion: "2.13.4", flutterRoot: "/opt/hostedtoolcache/flutter/2.2.3-stable/x64"}, C.List_HL7, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_IF20 = H.setRuntimeTypeInfo(makeConstList(["-1", "1", "2", "3", "4", "-2"]), type$.JSArray_legacy_String); C.Map_IF4bq = new H.ConstantStringMap(6, {"-1": "expired", "1": "draft", "2": "sent", "3": "approved", "4": "converted", "-2": "viewed"}, C.List_IF20, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_linux_macos_windows = H.setRuntimeTypeInfo(makeConstList(["linux", "macos", "windows"]), type$.JSArray_legacy_String); C.C__LinuxCodes = new S._LinuxCodes(); C.C__MacOSCodes = new S._MacOSCodes(); C.C__WindowsCodes = new S._WindowsCodes(); C.Map_IMoEm = new H.ConstantStringMap(3, {linux: C.C__LinuxCodes, macos: C.C__MacOSCodes, windows: C.C__WindowsCodes}, C.List_linux_macos_windows, H.findType("ConstantStringMap")); C.List_IY4 = H.setRuntimeTypeInfo(makeConstList(["-2", "-1", "1", "2", "3", "4", "5", "6"]), type$.JSArray_legacy_String); C.Map_IYlun = new H.ConstantStringMap(8, {"-2": "partially_unapplied", "-1": "unapplied", "1": "pending", "2": "cancelled", "3": "failed", "4": "completed", "5": "partially_refunded", "6": "refunded"}, C.List_IY4, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_Iik = H.setRuntimeTypeInfo(makeConstList(["1", "10", "11", "2", "8", "9", "3", "21", "6", "7", "4", "12", "5", "13", "14", "15", "16", "17", "18", "19", "20", "22", "23", "24"]), type$.JSArray_legacy_String); C.Map_IicEm = new H.ConstantStringMap(24, {"1": "create_client", "10": "update_client", "11": "delete_client", "2": "create_invoice", "8": "update_invoice", "9": "delete_invoice", "3": "create_quote", "21": "approve_quote", "6": "update_quote", "7": "delete_quote", "4": "create_payment", "12": "delete_payment", "5": "create_vendor", "13": "update_vendor", "14": "delete_vendor", "15": "create_expense", "16": "update_expense", "17": "delete_expense", "18": "create_task", "19": "update_task", "20": "delete_task", "22": "late_invoice", "23": "expired_quote", "24": "remind_invoice"}, C.List_Iik, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_T7A = H.setRuntimeTypeInfo(makeConstList(["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ".", "Insert", "End", "ArrowDown", "PageDown", "ArrowLeft", "Clear", "ArrowRight", "Home", "ArrowUp", "PageUp", "Delete", "/", "*", "-", "+", "Enter", "Shift", "Control", "Alt", "Meta"]), type$.JSArray_legacy_String); C.List_48_null_null_8589934640 = H.setRuntimeTypeInfo(makeConstList([48, null, null, 8589934640]), type$.JSArray_nullable_int); C.List_49_null_null_8589934641 = H.setRuntimeTypeInfo(makeConstList([49, null, null, 8589934641]), type$.JSArray_nullable_int); C.List_50_null_null_8589934642 = H.setRuntimeTypeInfo(makeConstList([50, null, null, 8589934642]), type$.JSArray_nullable_int); C.List_51_null_null_8589934643 = H.setRuntimeTypeInfo(makeConstList([51, null, null, 8589934643]), type$.JSArray_nullable_int); C.List_52_null_null_8589934644 = H.setRuntimeTypeInfo(makeConstList([52, null, null, 8589934644]), type$.JSArray_nullable_int); C.List_53_null_null_8589934645 = H.setRuntimeTypeInfo(makeConstList([53, null, null, 8589934645]), type$.JSArray_nullable_int); C.List_54_null_null_8589934646 = H.setRuntimeTypeInfo(makeConstList([54, null, null, 8589934646]), type$.JSArray_nullable_int); C.List_55_null_null_8589934647 = H.setRuntimeTypeInfo(makeConstList([55, null, null, 8589934647]), type$.JSArray_nullable_int); C.List_56_null_null_8589934648 = H.setRuntimeTypeInfo(makeConstList([56, null, null, 8589934648]), type$.JSArray_nullable_int); C.List_57_null_null_8589934649 = H.setRuntimeTypeInfo(makeConstList([57, null, null, 8589934649]), type$.JSArray_nullable_int); C.List_46_null_null_8589934638 = H.setRuntimeTypeInfo(makeConstList([46, null, null, 8589934638]), type$.JSArray_nullable_int); C.List_1031_null_null_8589934640 = H.setRuntimeTypeInfo(makeConstList([1031, null, null, 8589934640]), type$.JSArray_nullable_int); C.List_773_null_null_8589934641 = H.setRuntimeTypeInfo(makeConstList([773, null, null, 8589934641]), type$.JSArray_nullable_int); C.List_769_null_null_8589934642 = H.setRuntimeTypeInfo(makeConstList([769, null, null, 8589934642]), type$.JSArray_nullable_int); C.List_775_null_null_8589934643 = H.setRuntimeTypeInfo(makeConstList([775, null, null, 8589934643]), type$.JSArray_nullable_int); C.List_770_null_null_8589934644 = H.setRuntimeTypeInfo(makeConstList([770, null, null, 8589934644]), type$.JSArray_nullable_int); C.List_1025_null_null_8589934645 = H.setRuntimeTypeInfo(makeConstList([1025, null, null, 8589934645]), type$.JSArray_nullable_int); C.List_771_null_null_8589934646 = H.setRuntimeTypeInfo(makeConstList([771, null, null, 8589934646]), type$.JSArray_nullable_int); C.List_774_null_null_8589934647 = H.setRuntimeTypeInfo(makeConstList([774, null, null, 8589934647]), type$.JSArray_nullable_int); C.List_772_null_null_8589934648 = H.setRuntimeTypeInfo(makeConstList([772, null, null, 8589934648]), type$.JSArray_nullable_int); C.List_776_null_null_8589934649 = H.setRuntimeTypeInfo(makeConstList([776, null, null, 8589934649]), type$.JSArray_nullable_int); C.List_127_null_null_8589934638 = H.setRuntimeTypeInfo(makeConstList([127, null, null, 8589934638]), type$.JSArray_nullable_int); C.List_47_null_null_8589934639 = H.setRuntimeTypeInfo(makeConstList([47, null, null, 8589934639]), type$.JSArray_nullable_int); C.List_42_null_null_8589934634 = H.setRuntimeTypeInfo(makeConstList([42, null, null, 8589934634]), type$.JSArray_nullable_int); C.List_45_null_null_8589934637 = H.setRuntimeTypeInfo(makeConstList([45, null, null, 8589934637]), type$.JSArray_nullable_int); C.List_43_null_null_8589934635 = H.setRuntimeTypeInfo(makeConstList([43, null, null, 8589934635]), type$.JSArray_nullable_int); C.List_13_null_null_8589934605 = H.setRuntimeTypeInfo(makeConstList([13, null, null, 8589934605]), type$.JSArray_nullable_int); C.List_null_12884902157_17179869453_null = H.setRuntimeTypeInfo(makeConstList([null, 12884902157, 17179869453, null]), type$.JSArray_nullable_int); C.List_null_12884902149_17179869445_null = H.setRuntimeTypeInfo(makeConstList([null, 12884902149, 17179869445, null]), type$.JSArray_nullable_int); C.List_null_12884902146_17179869442_null = H.setRuntimeTypeInfo(makeConstList([null, 12884902146, 17179869442, null]), type$.JSArray_nullable_int); C.List_null_12884902153_17179869449_null = H.setRuntimeTypeInfo(makeConstList([null, 12884902153, 17179869449, null]), type$.JSArray_nullable_int); C.Map_T7S7Y = new H.ConstantStringMap(31, {"0": C.List_48_null_null_8589934640, "1": C.List_49_null_null_8589934641, "2": C.List_50_null_null_8589934642, "3": C.List_51_null_null_8589934643, "4": C.List_52_null_null_8589934644, "5": C.List_53_null_null_8589934645, "6": C.List_54_null_null_8589934646, "7": C.List_55_null_null_8589934647, "8": C.List_56_null_null_8589934648, "9": C.List_57_null_null_8589934649, ".": C.List_46_null_null_8589934638, Insert: C.List_1031_null_null_8589934640, End: C.List_773_null_null_8589934641, ArrowDown: C.List_769_null_null_8589934642, PageDown: C.List_775_null_null_8589934643, ArrowLeft: C.List_770_null_null_8589934644, Clear: C.List_1025_null_null_8589934645, ArrowRight: C.List_771_null_null_8589934646, Home: C.List_774_null_null_8589934647, ArrowUp: C.List_772_null_null_8589934648, PageUp: C.List_776_null_null_8589934649, Delete: C.List_127_null_null_8589934638, "/": C.List_47_null_null_8589934639, "*": C.List_42_null_null_8589934634, "-": C.List_45_null_null_8589934637, "+": C.List_43_null_null_8589934635, Enter: C.List_13_null_null_8589934605, Shift: C.List_null_12884902157_17179869453_null, Control: C.List_null_12884902149_17179869445_null, Alt: C.List_null_12884902146_17179869442_null, Meta: C.List_null_12884902153_17179869449_null}, C.List_T7A, H.findType("ConstantStringMap*>")); C.List_Y3F = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3"]), type$.JSArray_legacy_String); C.Map_Y3IEU = new H.ConstantStringMap(3, {"1": "logged", "2": "pending", "3": "invoiced"}, C.List_Y3F, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_YCM = H.setRuntimeTypeInfo(makeConstList(["in", "iw", "ji", "jw", "mo", "aam", "adp", "aue", "ayx", "bgm", "bjd", "ccq", "cjr", "cka", "cmk", "coy", "cqu", "drh", "drw", "gav", "gfx", "ggn", "gti", "guv", "hrr", "ibi", "ilw", "jeg", "kgc", "kgh", "koj", "krm", "ktr", "kvs", "kwq", "kxe", "kzj", "kzt", "lii", "lmm", "meg", "mst", "mwj", "myt", "nad", "ncp", "nnx", "nts", "oun", "pcr", "pmc", "pmu", "ppa", "ppr", "pry", "puz", "sca", "skk", "tdu", "thc", "thx", "tie", "tkk", "tlw", "tmp", "tne", "tnf", "tsf", "uok", "xba", "xia", "xkh", "xsj", "ybd", "yma", "ymt", "yos", "yuu"]), type$.JSArray_legacy_String); C.Map_YCOho = new H.ConstantStringMap(78, {in: "id", iw: "he", ji: "yi", jw: "jv", mo: "ro", aam: "aas", adp: "dz", aue: "ktz", ayx: "nun", bgm: "bcg", bjd: "drl", ccq: "rki", cjr: "mom", cka: "cmr", cmk: "xch", coy: "pij", cqu: "quh", drh: "khk", drw: "prs", gav: "dev", gfx: "vaj", ggn: "gvr", gti: "nyc", guv: "duz", hrr: "jal", ibi: "opa", ilw: "gal", jeg: "oyb", kgc: "tdf", kgh: "kml", koj: "kwv", krm: "bmf", ktr: "dtp", kvs: "gdj", kwq: "yam", kxe: "tvd", kzj: "dtp", kzt: "dtp", lii: "raq", lmm: "rmx", meg: "cir", mst: "mry", mwj: "vaj", myt: "mry", nad: "xny", ncp: "kdz", nnx: "ngv", nts: "pij", oun: "vaj", pcr: "adx", pmc: "huw", pmu: "phr", ppa: "bfy", ppr: "lcq", pry: "prt", puz: "pub", sca: "hle", skk: "oyb", tdu: "dtp", thc: "tpo", thx: "oyb", tie: "ras", tkk: "twm", tlw: "weo", tmp: "tyj", tne: "kak", tnf: "prs", tsf: "taj", uok: "ema", xba: "cax", xia: "acn", xkh: "waw", xsj: "suj", ybd: "rki", yma: "lrr", ymt: "mtm", yos: "zom", yuu: "yug"}, C.List_YCM, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_YVI1 = H.setRuntimeTypeInfo(makeConstList(["None", "Hyper", "Super", "FnLock", "Suspend", "Resume", "Turbo", "PrivacyScreenToggle", "Sleep", "WakeUp", "DisplayToggleIntExt", "KeyA", "KeyB", "KeyC", "KeyD", "KeyE", "KeyF", "KeyG", "KeyH", "KeyI", "KeyJ", "KeyK", "KeyL", "KeyM", "KeyN", "KeyO", "KeyP", "KeyQ", "KeyR", "KeyS", "KeyT", "KeyU", "KeyV", "KeyW", "KeyX", "KeyY", "KeyZ", "Digit1", "Digit2", "Digit3", "Digit4", "Digit5", "Digit6", "Digit7", "Digit8", "Digit9", "Digit0", "Enter", "Escape", "Backspace", "Tab", "Space", "Minus", "Equal", "BracketLeft", "BracketRight", "Backslash", "Semicolon", "Quote", "Backquote", "Comma", "Period", "Slash", "CapsLock", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "PrintScreen", "ScrollLock", "Pause", "Insert", "Home", "PageUp", "Delete", "End", "PageDown", "ArrowRight", "ArrowLeft", "ArrowDown", "ArrowUp", "NumLock", "NumpadDivide", "NumpadMultiply", "NumpadSubtract", "NumpadAdd", "NumpadEnter", "Numpad1", "Numpad2", "Numpad3", "Numpad4", "Numpad5", "Numpad6", "Numpad7", "Numpad8", "Numpad9", "Numpad0", "NumpadDecimal", "IntlBackslash", "ContextMenu", "Power", "NumpadEqual", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F20", "F21", "F22", "F23", "F24", "Open", "Help", "Select", "Again", "Undo", "Cut", "Copy", "Paste", "Find", "AudioVolumeMute", "AudioVolumeUp", "AudioVolumeDown", "NumpadComma", "IntlRo", "KanaMode", "IntlYen", "Convert", "NonConvert", "Lang1", "Lang2", "Lang3", "Lang4", "Lang5", "Abort", "Props", "NumpadParenLeft", "NumpadParenRight", "NumpadBackspace", "NumpadMemoryStore", "NumpadMemoryRecall", "NumpadMemoryClear", "NumpadMemoryAdd", "NumpadMemorySubtract", "NumpadClear", "NumpadClearEntry", "ControlLeft", "ShiftLeft", "AltLeft", "MetaLeft", "ControlRight", "ShiftRight", "AltRight", "MetaRight", "BrightnessUp", "BrightnessDown", "MediaPlay", "MediaPause", "MediaRecord", "MediaFastForward", "MediaRewind", "MediaTrackNext", "MediaTrackPrevious", "MediaStop", "Eject", "MediaPlayPause", "MediaSelect", "LaunchMail", "LaunchApp2", "LaunchApp1", "LaunchControlPanel", "SelectTask", "LaunchScreenSaver", "LaunchAssistant", "BrowserSearch", "BrowserHome", "BrowserBack", "BrowserForward", "BrowserStop", "BrowserRefresh", "BrowserFavorites", "ZoomToggle", "MailReply", "MailForward", "MailSend", "KeyboardLayoutSelect", "ShowAllWindows", "GameButton1", "GameButton2", "GameButton3", "GameButton4", "GameButton5", "GameButton6", "GameButton7", "GameButton8", "GameButton9", "GameButton10", "GameButton11", "GameButton12", "GameButton13", "GameButton14", "GameButton15", "GameButton16", "GameButtonA", "GameButtonB", "GameButtonC", "GameButtonLeft1", "GameButtonLeft2", "GameButtonMode", "GameButtonRight1", "GameButtonRight2", "GameButtonSelect", "GameButtonStart", "GameButtonThumbLeft", "GameButtonThumbRight", "GameButtonX", "GameButtonY", "GameButtonZ", "Fn"]), type$.JSArray_legacy_String); C.PhysicalKeyboardKey_0 = new G.PhysicalKeyboardKey(0); C.PhysicalKeyboardKey_16 = new G.PhysicalKeyboardKey(16); C.PhysicalKeyboardKey_17 = new G.PhysicalKeyboardKey(17); C.PhysicalKeyboardKey_19 = new G.PhysicalKeyboardKey(19); C.PhysicalKeyboardKey_20 = new G.PhysicalKeyboardKey(20); C.PhysicalKeyboardKey_21 = new G.PhysicalKeyboardKey(21); C.PhysicalKeyboardKey_22 = new G.PhysicalKeyboardKey(22); C.PhysicalKeyboardKey_23 = new G.PhysicalKeyboardKey(23); C.PhysicalKeyboardKey_65666 = new G.PhysicalKeyboardKey(65666); C.PhysicalKeyboardKey_65667 = new G.PhysicalKeyboardKey(65667); C.PhysicalKeyboardKey_65717 = new G.PhysicalKeyboardKey(65717); C.PhysicalKeyboardKey_458756 = new G.PhysicalKeyboardKey(458756); C.PhysicalKeyboardKey_458757 = new G.PhysicalKeyboardKey(458757); C.PhysicalKeyboardKey_458758 = new G.PhysicalKeyboardKey(458758); C.PhysicalKeyboardKey_458759 = new G.PhysicalKeyboardKey(458759); C.PhysicalKeyboardKey_458760 = new G.PhysicalKeyboardKey(458760); C.PhysicalKeyboardKey_458761 = new G.PhysicalKeyboardKey(458761); C.PhysicalKeyboardKey_458762 = new G.PhysicalKeyboardKey(458762); C.PhysicalKeyboardKey_458763 = new G.PhysicalKeyboardKey(458763); C.PhysicalKeyboardKey_458764 = new G.PhysicalKeyboardKey(458764); C.PhysicalKeyboardKey_458765 = new G.PhysicalKeyboardKey(458765); C.PhysicalKeyboardKey_458766 = new G.PhysicalKeyboardKey(458766); C.PhysicalKeyboardKey_458767 = new G.PhysicalKeyboardKey(458767); C.PhysicalKeyboardKey_458768 = new G.PhysicalKeyboardKey(458768); C.PhysicalKeyboardKey_458769 = new G.PhysicalKeyboardKey(458769); C.PhysicalKeyboardKey_458770 = new G.PhysicalKeyboardKey(458770); C.PhysicalKeyboardKey_458771 = new G.PhysicalKeyboardKey(458771); C.PhysicalKeyboardKey_458772 = new G.PhysicalKeyboardKey(458772); C.PhysicalKeyboardKey_458773 = new G.PhysicalKeyboardKey(458773); C.PhysicalKeyboardKey_458774 = new G.PhysicalKeyboardKey(458774); C.PhysicalKeyboardKey_458775 = new G.PhysicalKeyboardKey(458775); C.PhysicalKeyboardKey_458776 = new G.PhysicalKeyboardKey(458776); C.PhysicalKeyboardKey_458777 = new G.PhysicalKeyboardKey(458777); C.PhysicalKeyboardKey_458778 = new G.PhysicalKeyboardKey(458778); C.PhysicalKeyboardKey_458779 = new G.PhysicalKeyboardKey(458779); C.PhysicalKeyboardKey_458780 = new G.PhysicalKeyboardKey(458780); C.PhysicalKeyboardKey_458781 = new G.PhysicalKeyboardKey(458781); C.PhysicalKeyboardKey_458782 = new G.PhysicalKeyboardKey(458782); C.PhysicalKeyboardKey_458783 = new G.PhysicalKeyboardKey(458783); C.PhysicalKeyboardKey_458784 = new G.PhysicalKeyboardKey(458784); C.PhysicalKeyboardKey_458785 = new G.PhysicalKeyboardKey(458785); C.PhysicalKeyboardKey_458786 = new G.PhysicalKeyboardKey(458786); C.PhysicalKeyboardKey_458787 = new G.PhysicalKeyboardKey(458787); C.PhysicalKeyboardKey_458788 = new G.PhysicalKeyboardKey(458788); C.PhysicalKeyboardKey_458789 = new G.PhysicalKeyboardKey(458789); C.PhysicalKeyboardKey_458790 = new G.PhysicalKeyboardKey(458790); C.PhysicalKeyboardKey_458791 = new G.PhysicalKeyboardKey(458791); C.PhysicalKeyboardKey_458792 = new G.PhysicalKeyboardKey(458792); C.PhysicalKeyboardKey_458793 = new G.PhysicalKeyboardKey(458793); C.PhysicalKeyboardKey_458794 = new G.PhysicalKeyboardKey(458794); C.PhysicalKeyboardKey_458795 = new G.PhysicalKeyboardKey(458795); C.PhysicalKeyboardKey_458796 = new G.PhysicalKeyboardKey(458796); C.PhysicalKeyboardKey_458797 = new G.PhysicalKeyboardKey(458797); C.PhysicalKeyboardKey_458798 = new G.PhysicalKeyboardKey(458798); C.PhysicalKeyboardKey_458799 = new G.PhysicalKeyboardKey(458799); C.PhysicalKeyboardKey_458800 = new G.PhysicalKeyboardKey(458800); C.PhysicalKeyboardKey_458801 = new G.PhysicalKeyboardKey(458801); C.PhysicalKeyboardKey_458803 = new G.PhysicalKeyboardKey(458803); C.PhysicalKeyboardKey_458804 = new G.PhysicalKeyboardKey(458804); C.PhysicalKeyboardKey_458805 = new G.PhysicalKeyboardKey(458805); C.PhysicalKeyboardKey_458806 = new G.PhysicalKeyboardKey(458806); C.PhysicalKeyboardKey_458807 = new G.PhysicalKeyboardKey(458807); C.PhysicalKeyboardKey_458808 = new G.PhysicalKeyboardKey(458808); C.PhysicalKeyboardKey_458809 = new G.PhysicalKeyboardKey(458809); C.PhysicalKeyboardKey_458810 = new G.PhysicalKeyboardKey(458810); C.PhysicalKeyboardKey_458811 = new G.PhysicalKeyboardKey(458811); C.PhysicalKeyboardKey_458812 = new G.PhysicalKeyboardKey(458812); C.PhysicalKeyboardKey_458813 = new G.PhysicalKeyboardKey(458813); C.PhysicalKeyboardKey_458814 = new G.PhysicalKeyboardKey(458814); C.PhysicalKeyboardKey_458815 = new G.PhysicalKeyboardKey(458815); C.PhysicalKeyboardKey_458816 = new G.PhysicalKeyboardKey(458816); C.PhysicalKeyboardKey_458817 = new G.PhysicalKeyboardKey(458817); C.PhysicalKeyboardKey_458818 = new G.PhysicalKeyboardKey(458818); C.PhysicalKeyboardKey_458819 = new G.PhysicalKeyboardKey(458819); C.PhysicalKeyboardKey_458820 = new G.PhysicalKeyboardKey(458820); C.PhysicalKeyboardKey_458821 = new G.PhysicalKeyboardKey(458821); C.PhysicalKeyboardKey_458822 = new G.PhysicalKeyboardKey(458822); C.PhysicalKeyboardKey_458823 = new G.PhysicalKeyboardKey(458823); C.PhysicalKeyboardKey_458824 = new G.PhysicalKeyboardKey(458824); C.PhysicalKeyboardKey_458825 = new G.PhysicalKeyboardKey(458825); C.PhysicalKeyboardKey_458826 = new G.PhysicalKeyboardKey(458826); C.PhysicalKeyboardKey_458827 = new G.PhysicalKeyboardKey(458827); C.PhysicalKeyboardKey_458828 = new G.PhysicalKeyboardKey(458828); C.PhysicalKeyboardKey_458829 = new G.PhysicalKeyboardKey(458829); C.PhysicalKeyboardKey_458830 = new G.PhysicalKeyboardKey(458830); C.PhysicalKeyboardKey_458831 = new G.PhysicalKeyboardKey(458831); C.PhysicalKeyboardKey_458832 = new G.PhysicalKeyboardKey(458832); C.PhysicalKeyboardKey_458833 = new G.PhysicalKeyboardKey(458833); C.PhysicalKeyboardKey_458834 = new G.PhysicalKeyboardKey(458834); C.PhysicalKeyboardKey_458835 = new G.PhysicalKeyboardKey(458835); C.PhysicalKeyboardKey_458836 = new G.PhysicalKeyboardKey(458836); C.PhysicalKeyboardKey_458837 = new G.PhysicalKeyboardKey(458837); C.PhysicalKeyboardKey_458838 = new G.PhysicalKeyboardKey(458838); C.PhysicalKeyboardKey_458839 = new G.PhysicalKeyboardKey(458839); C.PhysicalKeyboardKey_458840 = new G.PhysicalKeyboardKey(458840); C.PhysicalKeyboardKey_458841 = new G.PhysicalKeyboardKey(458841); C.PhysicalKeyboardKey_458842 = new G.PhysicalKeyboardKey(458842); C.PhysicalKeyboardKey_458843 = new G.PhysicalKeyboardKey(458843); C.PhysicalKeyboardKey_458844 = new G.PhysicalKeyboardKey(458844); C.PhysicalKeyboardKey_458845 = new G.PhysicalKeyboardKey(458845); C.PhysicalKeyboardKey_458846 = new G.PhysicalKeyboardKey(458846); C.PhysicalKeyboardKey_458847 = new G.PhysicalKeyboardKey(458847); C.PhysicalKeyboardKey_458848 = new G.PhysicalKeyboardKey(458848); C.PhysicalKeyboardKey_458849 = new G.PhysicalKeyboardKey(458849); C.PhysicalKeyboardKey_458850 = new G.PhysicalKeyboardKey(458850); C.PhysicalKeyboardKey_458851 = new G.PhysicalKeyboardKey(458851); C.PhysicalKeyboardKey_458852 = new G.PhysicalKeyboardKey(458852); C.PhysicalKeyboardKey_458853 = new G.PhysicalKeyboardKey(458853); C.PhysicalKeyboardKey_458854 = new G.PhysicalKeyboardKey(458854); C.PhysicalKeyboardKey_458855 = new G.PhysicalKeyboardKey(458855); C.PhysicalKeyboardKey_458856 = new G.PhysicalKeyboardKey(458856); C.PhysicalKeyboardKey_458857 = new G.PhysicalKeyboardKey(458857); C.PhysicalKeyboardKey_458858 = new G.PhysicalKeyboardKey(458858); C.PhysicalKeyboardKey_458859 = new G.PhysicalKeyboardKey(458859); C.PhysicalKeyboardKey_458860 = new G.PhysicalKeyboardKey(458860); C.PhysicalKeyboardKey_458861 = new G.PhysicalKeyboardKey(458861); C.PhysicalKeyboardKey_458862 = new G.PhysicalKeyboardKey(458862); C.PhysicalKeyboardKey_458863 = new G.PhysicalKeyboardKey(458863); C.PhysicalKeyboardKey_458864 = new G.PhysicalKeyboardKey(458864); C.PhysicalKeyboardKey_458865 = new G.PhysicalKeyboardKey(458865); C.PhysicalKeyboardKey_458866 = new G.PhysicalKeyboardKey(458866); C.PhysicalKeyboardKey_458867 = new G.PhysicalKeyboardKey(458867); C.PhysicalKeyboardKey_458868 = new G.PhysicalKeyboardKey(458868); C.PhysicalKeyboardKey_458869 = new G.PhysicalKeyboardKey(458869); C.PhysicalKeyboardKey_458871 = new G.PhysicalKeyboardKey(458871); C.PhysicalKeyboardKey_458873 = new G.PhysicalKeyboardKey(458873); C.PhysicalKeyboardKey_458874 = new G.PhysicalKeyboardKey(458874); C.PhysicalKeyboardKey_458875 = new G.PhysicalKeyboardKey(458875); C.PhysicalKeyboardKey_458876 = new G.PhysicalKeyboardKey(458876); C.PhysicalKeyboardKey_458877 = new G.PhysicalKeyboardKey(458877); C.PhysicalKeyboardKey_458878 = new G.PhysicalKeyboardKey(458878); C.PhysicalKeyboardKey_458879 = new G.PhysicalKeyboardKey(458879); C.PhysicalKeyboardKey_458880 = new G.PhysicalKeyboardKey(458880); C.PhysicalKeyboardKey_458881 = new G.PhysicalKeyboardKey(458881); C.PhysicalKeyboardKey_458885 = new G.PhysicalKeyboardKey(458885); C.PhysicalKeyboardKey_458887 = new G.PhysicalKeyboardKey(458887); C.PhysicalKeyboardKey_458888 = new G.PhysicalKeyboardKey(458888); C.PhysicalKeyboardKey_458889 = new G.PhysicalKeyboardKey(458889); C.PhysicalKeyboardKey_458890 = new G.PhysicalKeyboardKey(458890); C.PhysicalKeyboardKey_458891 = new G.PhysicalKeyboardKey(458891); C.PhysicalKeyboardKey_458896 = new G.PhysicalKeyboardKey(458896); C.PhysicalKeyboardKey_458897 = new G.PhysicalKeyboardKey(458897); C.PhysicalKeyboardKey_458898 = new G.PhysicalKeyboardKey(458898); C.PhysicalKeyboardKey_458899 = new G.PhysicalKeyboardKey(458899); C.PhysicalKeyboardKey_458900 = new G.PhysicalKeyboardKey(458900); C.PhysicalKeyboardKey_458907 = new G.PhysicalKeyboardKey(458907); C.PhysicalKeyboardKey_458915 = new G.PhysicalKeyboardKey(458915); C.PhysicalKeyboardKey_458934 = new G.PhysicalKeyboardKey(458934); C.PhysicalKeyboardKey_458935 = new G.PhysicalKeyboardKey(458935); C.PhysicalKeyboardKey_458939 = new G.PhysicalKeyboardKey(458939); C.PhysicalKeyboardKey_458960 = new G.PhysicalKeyboardKey(458960); C.PhysicalKeyboardKey_458961 = new G.PhysicalKeyboardKey(458961); C.PhysicalKeyboardKey_458962 = new G.PhysicalKeyboardKey(458962); C.PhysicalKeyboardKey_458963 = new G.PhysicalKeyboardKey(458963); C.PhysicalKeyboardKey_458964 = new G.PhysicalKeyboardKey(458964); C.PhysicalKeyboardKey_458968 = new G.PhysicalKeyboardKey(458968); C.PhysicalKeyboardKey_458969 = new G.PhysicalKeyboardKey(458969); C.PhysicalKeyboardKey_458976 = new G.PhysicalKeyboardKey(458976); C.PhysicalKeyboardKey_458977 = new G.PhysicalKeyboardKey(458977); C.PhysicalKeyboardKey_458978 = new G.PhysicalKeyboardKey(458978); C.PhysicalKeyboardKey_458979 = new G.PhysicalKeyboardKey(458979); C.PhysicalKeyboardKey_458980 = new G.PhysicalKeyboardKey(458980); C.PhysicalKeyboardKey_458981 = new G.PhysicalKeyboardKey(458981); C.PhysicalKeyboardKey_458982 = new G.PhysicalKeyboardKey(458982); C.PhysicalKeyboardKey_458983 = new G.PhysicalKeyboardKey(458983); C.PhysicalKeyboardKey_786543 = new G.PhysicalKeyboardKey(786543); C.PhysicalKeyboardKey_786544 = new G.PhysicalKeyboardKey(786544); C.PhysicalKeyboardKey_786608 = new G.PhysicalKeyboardKey(786608); C.PhysicalKeyboardKey_786609 = new G.PhysicalKeyboardKey(786609); C.PhysicalKeyboardKey_786610 = new G.PhysicalKeyboardKey(786610); C.PhysicalKeyboardKey_786611 = new G.PhysicalKeyboardKey(786611); C.PhysicalKeyboardKey_786612 = new G.PhysicalKeyboardKey(786612); C.PhysicalKeyboardKey_786613 = new G.PhysicalKeyboardKey(786613); C.PhysicalKeyboardKey_786614 = new G.PhysicalKeyboardKey(786614); C.PhysicalKeyboardKey_786615 = new G.PhysicalKeyboardKey(786615); C.PhysicalKeyboardKey_786616 = new G.PhysicalKeyboardKey(786616); C.PhysicalKeyboardKey_786637 = new G.PhysicalKeyboardKey(786637); C.PhysicalKeyboardKey_786819 = new G.PhysicalKeyboardKey(786819); C.PhysicalKeyboardKey_786826 = new G.PhysicalKeyboardKey(786826); C.PhysicalKeyboardKey_786834 = new G.PhysicalKeyboardKey(786834); C.PhysicalKeyboardKey_786836 = new G.PhysicalKeyboardKey(786836); C.PhysicalKeyboardKey_786847 = new G.PhysicalKeyboardKey(786847); C.PhysicalKeyboardKey_786850 = new G.PhysicalKeyboardKey(786850); C.PhysicalKeyboardKey_786865 = new G.PhysicalKeyboardKey(786865); C.PhysicalKeyboardKey_786891 = new G.PhysicalKeyboardKey(786891); C.PhysicalKeyboardKey_786977 = new G.PhysicalKeyboardKey(786977); C.PhysicalKeyboardKey_786979 = new G.PhysicalKeyboardKey(786979); C.PhysicalKeyboardKey_786980 = new G.PhysicalKeyboardKey(786980); C.PhysicalKeyboardKey_786981 = new G.PhysicalKeyboardKey(786981); C.PhysicalKeyboardKey_786982 = new G.PhysicalKeyboardKey(786982); C.PhysicalKeyboardKey_786983 = new G.PhysicalKeyboardKey(786983); C.PhysicalKeyboardKey_786986 = new G.PhysicalKeyboardKey(786986); C.PhysicalKeyboardKey_786994 = new G.PhysicalKeyboardKey(786994); C.PhysicalKeyboardKey_787081 = new G.PhysicalKeyboardKey(787081); C.PhysicalKeyboardKey_787083 = new G.PhysicalKeyboardKey(787083); C.PhysicalKeyboardKey_787084 = new G.PhysicalKeyboardKey(787084); C.PhysicalKeyboardKey_787101 = new G.PhysicalKeyboardKey(787101); C.PhysicalKeyboardKey_787103 = new G.PhysicalKeyboardKey(787103); C.PhysicalKeyboardKey_392961 = new G.PhysicalKeyboardKey(392961); C.PhysicalKeyboardKey_392962 = new G.PhysicalKeyboardKey(392962); C.PhysicalKeyboardKey_392963 = new G.PhysicalKeyboardKey(392963); C.PhysicalKeyboardKey_392964 = new G.PhysicalKeyboardKey(392964); C.PhysicalKeyboardKey_392965 = new G.PhysicalKeyboardKey(392965); C.PhysicalKeyboardKey_392966 = new G.PhysicalKeyboardKey(392966); C.PhysicalKeyboardKey_392967 = new G.PhysicalKeyboardKey(392967); C.PhysicalKeyboardKey_392968 = new G.PhysicalKeyboardKey(392968); C.PhysicalKeyboardKey_392969 = new G.PhysicalKeyboardKey(392969); C.PhysicalKeyboardKey_392970 = new G.PhysicalKeyboardKey(392970); C.PhysicalKeyboardKey_392971 = new G.PhysicalKeyboardKey(392971); C.PhysicalKeyboardKey_392972 = new G.PhysicalKeyboardKey(392972); C.PhysicalKeyboardKey_392973 = new G.PhysicalKeyboardKey(392973); C.PhysicalKeyboardKey_392974 = new G.PhysicalKeyboardKey(392974); C.PhysicalKeyboardKey_392975 = new G.PhysicalKeyboardKey(392975); C.PhysicalKeyboardKey_392976 = new G.PhysicalKeyboardKey(392976); C.PhysicalKeyboardKey_392977 = new G.PhysicalKeyboardKey(392977); C.PhysicalKeyboardKey_392978 = new G.PhysicalKeyboardKey(392978); C.PhysicalKeyboardKey_392979 = new G.PhysicalKeyboardKey(392979); C.PhysicalKeyboardKey_392980 = new G.PhysicalKeyboardKey(392980); C.PhysicalKeyboardKey_392981 = new G.PhysicalKeyboardKey(392981); C.PhysicalKeyboardKey_392982 = new G.PhysicalKeyboardKey(392982); C.PhysicalKeyboardKey_392983 = new G.PhysicalKeyboardKey(392983); C.PhysicalKeyboardKey_392984 = new G.PhysicalKeyboardKey(392984); C.PhysicalKeyboardKey_392985 = new G.PhysicalKeyboardKey(392985); C.PhysicalKeyboardKey_392986 = new G.PhysicalKeyboardKey(392986); C.PhysicalKeyboardKey_392987 = new G.PhysicalKeyboardKey(392987); C.PhysicalKeyboardKey_392988 = new G.PhysicalKeyboardKey(392988); C.PhysicalKeyboardKey_392989 = new G.PhysicalKeyboardKey(392989); C.PhysicalKeyboardKey_392990 = new G.PhysicalKeyboardKey(392990); C.PhysicalKeyboardKey_392991 = new G.PhysicalKeyboardKey(392991); C.PhysicalKeyboardKey_18 = new G.PhysicalKeyboardKey(18); C.Map_YV2No = new H.ConstantStringMap(230, {None: C.PhysicalKeyboardKey_0, Hyper: C.PhysicalKeyboardKey_16, Super: C.PhysicalKeyboardKey_17, FnLock: C.PhysicalKeyboardKey_19, Suspend: C.PhysicalKeyboardKey_20, Resume: C.PhysicalKeyboardKey_21, Turbo: C.PhysicalKeyboardKey_22, PrivacyScreenToggle: C.PhysicalKeyboardKey_23, Sleep: C.PhysicalKeyboardKey_65666, WakeUp: C.PhysicalKeyboardKey_65667, DisplayToggleIntExt: C.PhysicalKeyboardKey_65717, KeyA: C.PhysicalKeyboardKey_458756, KeyB: C.PhysicalKeyboardKey_458757, KeyC: C.PhysicalKeyboardKey_458758, KeyD: C.PhysicalKeyboardKey_458759, KeyE: C.PhysicalKeyboardKey_458760, KeyF: C.PhysicalKeyboardKey_458761, KeyG: C.PhysicalKeyboardKey_458762, KeyH: C.PhysicalKeyboardKey_458763, KeyI: C.PhysicalKeyboardKey_458764, KeyJ: C.PhysicalKeyboardKey_458765, KeyK: C.PhysicalKeyboardKey_458766, KeyL: C.PhysicalKeyboardKey_458767, KeyM: C.PhysicalKeyboardKey_458768, KeyN: C.PhysicalKeyboardKey_458769, KeyO: C.PhysicalKeyboardKey_458770, KeyP: C.PhysicalKeyboardKey_458771, KeyQ: C.PhysicalKeyboardKey_458772, KeyR: C.PhysicalKeyboardKey_458773, KeyS: C.PhysicalKeyboardKey_458774, KeyT: C.PhysicalKeyboardKey_458775, KeyU: C.PhysicalKeyboardKey_458776, KeyV: C.PhysicalKeyboardKey_458777, KeyW: C.PhysicalKeyboardKey_458778, KeyX: C.PhysicalKeyboardKey_458779, KeyY: C.PhysicalKeyboardKey_458780, KeyZ: C.PhysicalKeyboardKey_458781, Digit1: C.PhysicalKeyboardKey_458782, Digit2: C.PhysicalKeyboardKey_458783, Digit3: C.PhysicalKeyboardKey_458784, Digit4: C.PhysicalKeyboardKey_458785, Digit5: C.PhysicalKeyboardKey_458786, Digit6: C.PhysicalKeyboardKey_458787, Digit7: C.PhysicalKeyboardKey_458788, Digit8: C.PhysicalKeyboardKey_458789, Digit9: C.PhysicalKeyboardKey_458790, Digit0: C.PhysicalKeyboardKey_458791, Enter: C.PhysicalKeyboardKey_458792, Escape: C.PhysicalKeyboardKey_458793, Backspace: C.PhysicalKeyboardKey_458794, Tab: C.PhysicalKeyboardKey_458795, Space: C.PhysicalKeyboardKey_458796, Minus: C.PhysicalKeyboardKey_458797, Equal: C.PhysicalKeyboardKey_458798, BracketLeft: C.PhysicalKeyboardKey_458799, BracketRight: C.PhysicalKeyboardKey_458800, Backslash: C.PhysicalKeyboardKey_458801, Semicolon: C.PhysicalKeyboardKey_458803, Quote: C.PhysicalKeyboardKey_458804, Backquote: C.PhysicalKeyboardKey_458805, Comma: C.PhysicalKeyboardKey_458806, Period: C.PhysicalKeyboardKey_458807, Slash: C.PhysicalKeyboardKey_458808, CapsLock: C.PhysicalKeyboardKey_458809, F1: C.PhysicalKeyboardKey_458810, F2: C.PhysicalKeyboardKey_458811, F3: C.PhysicalKeyboardKey_458812, F4: C.PhysicalKeyboardKey_458813, F5: C.PhysicalKeyboardKey_458814, F6: C.PhysicalKeyboardKey_458815, F7: C.PhysicalKeyboardKey_458816, F8: C.PhysicalKeyboardKey_458817, F9: C.PhysicalKeyboardKey_458818, F10: C.PhysicalKeyboardKey_458819, F11: C.PhysicalKeyboardKey_458820, F12: C.PhysicalKeyboardKey_458821, PrintScreen: C.PhysicalKeyboardKey_458822, ScrollLock: C.PhysicalKeyboardKey_458823, Pause: C.PhysicalKeyboardKey_458824, Insert: C.PhysicalKeyboardKey_458825, Home: C.PhysicalKeyboardKey_458826, PageUp: C.PhysicalKeyboardKey_458827, Delete: C.PhysicalKeyboardKey_458828, End: C.PhysicalKeyboardKey_458829, PageDown: C.PhysicalKeyboardKey_458830, ArrowRight: C.PhysicalKeyboardKey_458831, ArrowLeft: C.PhysicalKeyboardKey_458832, ArrowDown: C.PhysicalKeyboardKey_458833, ArrowUp: C.PhysicalKeyboardKey_458834, NumLock: C.PhysicalKeyboardKey_458835, NumpadDivide: C.PhysicalKeyboardKey_458836, NumpadMultiply: C.PhysicalKeyboardKey_458837, NumpadSubtract: C.PhysicalKeyboardKey_458838, NumpadAdd: C.PhysicalKeyboardKey_458839, NumpadEnter: C.PhysicalKeyboardKey_458840, Numpad1: C.PhysicalKeyboardKey_458841, Numpad2: C.PhysicalKeyboardKey_458842, Numpad3: C.PhysicalKeyboardKey_458843, Numpad4: C.PhysicalKeyboardKey_458844, Numpad5: C.PhysicalKeyboardKey_458845, Numpad6: C.PhysicalKeyboardKey_458846, Numpad7: C.PhysicalKeyboardKey_458847, Numpad8: C.PhysicalKeyboardKey_458848, Numpad9: C.PhysicalKeyboardKey_458849, Numpad0: C.PhysicalKeyboardKey_458850, NumpadDecimal: C.PhysicalKeyboardKey_458851, IntlBackslash: C.PhysicalKeyboardKey_458852, ContextMenu: C.PhysicalKeyboardKey_458853, Power: C.PhysicalKeyboardKey_458854, NumpadEqual: C.PhysicalKeyboardKey_458855, F13: C.PhysicalKeyboardKey_458856, F14: C.PhysicalKeyboardKey_458857, F15: C.PhysicalKeyboardKey_458858, F16: C.PhysicalKeyboardKey_458859, F17: C.PhysicalKeyboardKey_458860, F18: C.PhysicalKeyboardKey_458861, F19: C.PhysicalKeyboardKey_458862, F20: C.PhysicalKeyboardKey_458863, F21: C.PhysicalKeyboardKey_458864, F22: C.PhysicalKeyboardKey_458865, F23: C.PhysicalKeyboardKey_458866, F24: C.PhysicalKeyboardKey_458867, Open: C.PhysicalKeyboardKey_458868, Help: C.PhysicalKeyboardKey_458869, Select: C.PhysicalKeyboardKey_458871, Again: C.PhysicalKeyboardKey_458873, Undo: C.PhysicalKeyboardKey_458874, Cut: C.PhysicalKeyboardKey_458875, Copy: C.PhysicalKeyboardKey_458876, Paste: C.PhysicalKeyboardKey_458877, Find: C.PhysicalKeyboardKey_458878, AudioVolumeMute: C.PhysicalKeyboardKey_458879, AudioVolumeUp: C.PhysicalKeyboardKey_458880, AudioVolumeDown: C.PhysicalKeyboardKey_458881, NumpadComma: C.PhysicalKeyboardKey_458885, IntlRo: C.PhysicalKeyboardKey_458887, KanaMode: C.PhysicalKeyboardKey_458888, IntlYen: C.PhysicalKeyboardKey_458889, Convert: C.PhysicalKeyboardKey_458890, NonConvert: C.PhysicalKeyboardKey_458891, Lang1: C.PhysicalKeyboardKey_458896, Lang2: C.PhysicalKeyboardKey_458897, Lang3: C.PhysicalKeyboardKey_458898, Lang4: C.PhysicalKeyboardKey_458899, Lang5: C.PhysicalKeyboardKey_458900, Abort: C.PhysicalKeyboardKey_458907, Props: C.PhysicalKeyboardKey_458915, NumpadParenLeft: C.PhysicalKeyboardKey_458934, NumpadParenRight: C.PhysicalKeyboardKey_458935, NumpadBackspace: C.PhysicalKeyboardKey_458939, NumpadMemoryStore: C.PhysicalKeyboardKey_458960, NumpadMemoryRecall: C.PhysicalKeyboardKey_458961, NumpadMemoryClear: C.PhysicalKeyboardKey_458962, NumpadMemoryAdd: C.PhysicalKeyboardKey_458963, NumpadMemorySubtract: C.PhysicalKeyboardKey_458964, NumpadClear: C.PhysicalKeyboardKey_458968, NumpadClearEntry: C.PhysicalKeyboardKey_458969, ControlLeft: C.PhysicalKeyboardKey_458976, ShiftLeft: C.PhysicalKeyboardKey_458977, AltLeft: C.PhysicalKeyboardKey_458978, MetaLeft: C.PhysicalKeyboardKey_458979, ControlRight: C.PhysicalKeyboardKey_458980, ShiftRight: C.PhysicalKeyboardKey_458981, AltRight: C.PhysicalKeyboardKey_458982, MetaRight: C.PhysicalKeyboardKey_458983, BrightnessUp: C.PhysicalKeyboardKey_786543, BrightnessDown: C.PhysicalKeyboardKey_786544, MediaPlay: C.PhysicalKeyboardKey_786608, MediaPause: C.PhysicalKeyboardKey_786609, MediaRecord: C.PhysicalKeyboardKey_786610, MediaFastForward: C.PhysicalKeyboardKey_786611, MediaRewind: C.PhysicalKeyboardKey_786612, MediaTrackNext: C.PhysicalKeyboardKey_786613, MediaTrackPrevious: C.PhysicalKeyboardKey_786614, MediaStop: C.PhysicalKeyboardKey_786615, Eject: C.PhysicalKeyboardKey_786616, MediaPlayPause: C.PhysicalKeyboardKey_786637, MediaSelect: C.PhysicalKeyboardKey_786819, LaunchMail: C.PhysicalKeyboardKey_786826, LaunchApp2: C.PhysicalKeyboardKey_786834, LaunchApp1: C.PhysicalKeyboardKey_786836, LaunchControlPanel: C.PhysicalKeyboardKey_786847, SelectTask: C.PhysicalKeyboardKey_786850, LaunchScreenSaver: C.PhysicalKeyboardKey_786865, LaunchAssistant: C.PhysicalKeyboardKey_786891, BrowserSearch: C.PhysicalKeyboardKey_786977, BrowserHome: C.PhysicalKeyboardKey_786979, BrowserBack: C.PhysicalKeyboardKey_786980, BrowserForward: C.PhysicalKeyboardKey_786981, BrowserStop: C.PhysicalKeyboardKey_786982, BrowserRefresh: C.PhysicalKeyboardKey_786983, BrowserFavorites: C.PhysicalKeyboardKey_786986, ZoomToggle: C.PhysicalKeyboardKey_786994, MailReply: C.PhysicalKeyboardKey_787081, MailForward: C.PhysicalKeyboardKey_787083, MailSend: C.PhysicalKeyboardKey_787084, KeyboardLayoutSelect: C.PhysicalKeyboardKey_787101, ShowAllWindows: C.PhysicalKeyboardKey_787103, GameButton1: C.PhysicalKeyboardKey_392961, GameButton2: C.PhysicalKeyboardKey_392962, GameButton3: C.PhysicalKeyboardKey_392963, GameButton4: C.PhysicalKeyboardKey_392964, GameButton5: C.PhysicalKeyboardKey_392965, GameButton6: C.PhysicalKeyboardKey_392966, GameButton7: C.PhysicalKeyboardKey_392967, GameButton8: C.PhysicalKeyboardKey_392968, GameButton9: C.PhysicalKeyboardKey_392969, GameButton10: C.PhysicalKeyboardKey_392970, GameButton11: C.PhysicalKeyboardKey_392971, GameButton12: C.PhysicalKeyboardKey_392972, GameButton13: C.PhysicalKeyboardKey_392973, GameButton14: C.PhysicalKeyboardKey_392974, GameButton15: C.PhysicalKeyboardKey_392975, GameButton16: C.PhysicalKeyboardKey_392976, GameButtonA: C.PhysicalKeyboardKey_392977, GameButtonB: C.PhysicalKeyboardKey_392978, GameButtonC: C.PhysicalKeyboardKey_392979, GameButtonLeft1: C.PhysicalKeyboardKey_392980, GameButtonLeft2: C.PhysicalKeyboardKey_392981, GameButtonMode: C.PhysicalKeyboardKey_392982, GameButtonRight1: C.PhysicalKeyboardKey_392983, GameButtonRight2: C.PhysicalKeyboardKey_392984, GameButtonSelect: C.PhysicalKeyboardKey_392985, GameButtonStart: C.PhysicalKeyboardKey_392986, GameButtonThumbLeft: C.PhysicalKeyboardKey_392987, GameButtonThumbRight: C.PhysicalKeyboardKey_392988, GameButtonX: C.PhysicalKeyboardKey_392989, GameButtonY: C.PhysicalKeyboardKey_392990, GameButtonZ: C.PhysicalKeyboardKey_392991, Fn: C.PhysicalKeyboardKey_18}, C.List_YVI1, H.findType("ConstantStringMap")); C.Map_YV6he = new H.ConstantStringMap(230, {None: 0, Hyper: 16, Super: 17, FnLock: 19, Suspend: 20, Resume: 21, Turbo: 22, PrivacyScreenToggle: 23, Sleep: 65666, WakeUp: 65667, DisplayToggleIntExt: 65717, KeyA: 458756, KeyB: 458757, KeyC: 458758, KeyD: 458759, KeyE: 458760, KeyF: 458761, KeyG: 458762, KeyH: 458763, KeyI: 458764, KeyJ: 458765, KeyK: 458766, KeyL: 458767, KeyM: 458768, KeyN: 458769, KeyO: 458770, KeyP: 458771, KeyQ: 458772, KeyR: 458773, KeyS: 458774, KeyT: 458775, KeyU: 458776, KeyV: 458777, KeyW: 458778, KeyX: 458779, KeyY: 458780, KeyZ: 458781, Digit1: 458782, Digit2: 458783, Digit3: 458784, Digit4: 458785, Digit5: 458786, Digit6: 458787, Digit7: 458788, Digit8: 458789, Digit9: 458790, Digit0: 458791, Enter: 458792, Escape: 458793, Backspace: 458794, Tab: 458795, Space: 458796, Minus: 458797, Equal: 458798, BracketLeft: 458799, BracketRight: 458800, Backslash: 458801, Semicolon: 458803, Quote: 458804, Backquote: 458805, Comma: 458806, Period: 458807, Slash: 458808, CapsLock: 458809, F1: 458810, F2: 458811, F3: 458812, F4: 458813, F5: 458814, F6: 458815, F7: 458816, F8: 458817, F9: 458818, F10: 458819, F11: 458820, F12: 458821, PrintScreen: 458822, ScrollLock: 458823, Pause: 458824, Insert: 458825, Home: 458826, PageUp: 458827, Delete: 458828, End: 458829, PageDown: 458830, ArrowRight: 458831, ArrowLeft: 458832, ArrowDown: 458833, ArrowUp: 458834, NumLock: 458835, NumpadDivide: 458836, NumpadMultiply: 458837, NumpadSubtract: 458838, NumpadAdd: 458839, NumpadEnter: 458840, Numpad1: 458841, Numpad2: 458842, Numpad3: 458843, Numpad4: 458844, Numpad5: 458845, Numpad6: 458846, Numpad7: 458847, Numpad8: 458848, Numpad9: 458849, Numpad0: 458850, NumpadDecimal: 458851, IntlBackslash: 458852, ContextMenu: 458853, Power: 458854, NumpadEqual: 458855, F13: 458856, F14: 458857, F15: 458858, F16: 458859, F17: 458860, F18: 458861, F19: 458862, F20: 458863, F21: 458864, F22: 458865, F23: 458866, F24: 458867, Open: 458868, Help: 458869, Select: 458871, Again: 458873, Undo: 458874, Cut: 458875, Copy: 458876, Paste: 458877, Find: 458878, AudioVolumeMute: 458879, AudioVolumeUp: 458880, AudioVolumeDown: 458881, NumpadComma: 458885, IntlRo: 458887, KanaMode: 458888, IntlYen: 458889, Convert: 458890, NonConvert: 458891, Lang1: 458896, Lang2: 458897, Lang3: 458898, Lang4: 458899, Lang5: 458900, Abort: 458907, Props: 458915, NumpadParenLeft: 458934, NumpadParenRight: 458935, NumpadBackspace: 458939, NumpadMemoryStore: 458960, NumpadMemoryRecall: 458961, NumpadMemoryClear: 458962, NumpadMemoryAdd: 458963, NumpadMemorySubtract: 458964, NumpadClear: 458968, NumpadClearEntry: 458969, ControlLeft: 458976, ShiftLeft: 458977, AltLeft: 458978, MetaLeft: 458979, ControlRight: 458980, ShiftRight: 458981, AltRight: 458982, MetaRight: 458983, BrightnessUp: 786543, BrightnessDown: 786544, MediaPlay: 786608, MediaPause: 786609, MediaRecord: 786610, MediaFastForward: 786611, MediaRewind: 786612, MediaTrackNext: 786613, MediaTrackPrevious: 786614, MediaStop: 786615, Eject: 786616, MediaPlayPause: 786637, MediaSelect: 786819, LaunchMail: 786826, LaunchApp2: 786834, LaunchApp1: 786836, LaunchControlPanel: 786847, SelectTask: 786850, LaunchScreenSaver: 786865, LaunchAssistant: 786891, BrowserSearch: 786977, BrowserHome: 786979, BrowserBack: 786980, BrowserForward: 786981, BrowserStop: 786982, BrowserRefresh: 786983, BrowserFavorites: 786986, ZoomToggle: 786994, MailReply: 787081, MailForward: 787083, MailSend: 787084, KeyboardLayoutSelect: 787101, ShowAllWindows: 787103, GameButton1: 392961, GameButton2: 392962, GameButton3: 392963, GameButton4: 392964, GameButton5: 392965, GameButton6: 392966, GameButton7: 392967, GameButton8: 392968, GameButton9: 392969, GameButton10: 392970, GameButton11: 392971, GameButton12: 392972, GameButton13: 392973, GameButton14: 392974, GameButton15: 392975, GameButton16: 392976, GameButtonA: 392977, GameButtonB: 392978, GameButtonC: 392979, GameButtonLeft1: 392980, GameButtonLeft2: 392981, GameButtonMode: 392982, GameButtonRight1: 392983, GameButtonRight2: 392984, GameButtonSelect: 392985, GameButtonStart: 392986, GameButtonThumbLeft: 392987, GameButtonThumbRight: 392988, GameButtonX: 392989, GameButtonY: 392990, GameButtonZ: 392991, Fn: 18}, C.List_YVI1, type$.ConstantStringMap_of_legacy_String_and_legacy_int); C.LogicalKeyboardKey_4294967296 = new G.LogicalKeyboardKey(4294967296); C.LogicalKeyboardKey_4294967312 = new G.LogicalKeyboardKey(4294967312); C.LogicalKeyboardKey_4294967313 = new G.LogicalKeyboardKey(4294967313); C.LogicalKeyboardKey_4294967315 = new G.LogicalKeyboardKey(4294967315); C.LogicalKeyboardKey_4294967316 = new G.LogicalKeyboardKey(4294967316); C.LogicalKeyboardKey_4294967317 = new G.LogicalKeyboardKey(4294967317); C.LogicalKeyboardKey_4294967318 = new G.LogicalKeyboardKey(4294967318); C.LogicalKeyboardKey_4294967319 = new G.LogicalKeyboardKey(4294967319); C.LogicalKeyboardKey_4295032962 = new G.LogicalKeyboardKey(4295032962); C.LogicalKeyboardKey_4295032963 = new G.LogicalKeyboardKey(4295032963); C.LogicalKeyboardKey_4295033013 = new G.LogicalKeyboardKey(4295033013); C.LogicalKeyboardKey_97 = new G.LogicalKeyboardKey(97); C.LogicalKeyboardKey_98 = new G.LogicalKeyboardKey(98); C.LogicalKeyboardKey_99 = new G.LogicalKeyboardKey(99); C.LogicalKeyboardKey_100 = new G.LogicalKeyboardKey(100); C.LogicalKeyboardKey_101 = new G.LogicalKeyboardKey(101); C.LogicalKeyboardKey_102 = new G.LogicalKeyboardKey(102); C.LogicalKeyboardKey_103 = new G.LogicalKeyboardKey(103); C.LogicalKeyboardKey_104 = new G.LogicalKeyboardKey(104); C.LogicalKeyboardKey_105 = new G.LogicalKeyboardKey(105); C.LogicalKeyboardKey_106 = new G.LogicalKeyboardKey(106); C.LogicalKeyboardKey_107 = new G.LogicalKeyboardKey(107); C.LogicalKeyboardKey_108 = new G.LogicalKeyboardKey(108); C.LogicalKeyboardKey_109 = new G.LogicalKeyboardKey(109); C.LogicalKeyboardKey_110 = new G.LogicalKeyboardKey(110); C.LogicalKeyboardKey_111 = new G.LogicalKeyboardKey(111); C.LogicalKeyboardKey_112 = new G.LogicalKeyboardKey(112); C.LogicalKeyboardKey_113 = new G.LogicalKeyboardKey(113); C.LogicalKeyboardKey_114 = new G.LogicalKeyboardKey(114); C.LogicalKeyboardKey_115 = new G.LogicalKeyboardKey(115); C.LogicalKeyboardKey_116 = new G.LogicalKeyboardKey(116); C.LogicalKeyboardKey_117 = new G.LogicalKeyboardKey(117); C.LogicalKeyboardKey_118 = new G.LogicalKeyboardKey(118); C.LogicalKeyboardKey_119 = new G.LogicalKeyboardKey(119); C.LogicalKeyboardKey_120 = new G.LogicalKeyboardKey(120); C.LogicalKeyboardKey_121 = new G.LogicalKeyboardKey(121); C.LogicalKeyboardKey_122 = new G.LogicalKeyboardKey(122); C.LogicalKeyboardKey_49 = new G.LogicalKeyboardKey(49); C.LogicalKeyboardKey_50 = new G.LogicalKeyboardKey(50); C.LogicalKeyboardKey_51 = new G.LogicalKeyboardKey(51); C.LogicalKeyboardKey_52 = new G.LogicalKeyboardKey(52); C.LogicalKeyboardKey_53 = new G.LogicalKeyboardKey(53); C.LogicalKeyboardKey_54 = new G.LogicalKeyboardKey(54); C.LogicalKeyboardKey_55 = new G.LogicalKeyboardKey(55); C.LogicalKeyboardKey_56 = new G.LogicalKeyboardKey(56); C.LogicalKeyboardKey_57 = new G.LogicalKeyboardKey(57); C.LogicalKeyboardKey_48 = new G.LogicalKeyboardKey(48); C.LogicalKeyboardKey_4295426090 = new G.LogicalKeyboardKey(4295426090); C.LogicalKeyboardKey_45 = new G.LogicalKeyboardKey(45); C.LogicalKeyboardKey_61 = new G.LogicalKeyboardKey(61); C.LogicalKeyboardKey_91 = new G.LogicalKeyboardKey(91); C.LogicalKeyboardKey_93 = new G.LogicalKeyboardKey(93); C.LogicalKeyboardKey_92 = new G.LogicalKeyboardKey(92); C.LogicalKeyboardKey_59 = new G.LogicalKeyboardKey(59); C.LogicalKeyboardKey_39 = new G.LogicalKeyboardKey(39); C.LogicalKeyboardKey_96 = new G.LogicalKeyboardKey(96); C.LogicalKeyboardKey_44 = new G.LogicalKeyboardKey(44); C.LogicalKeyboardKey_46 = new G.LogicalKeyboardKey(46); C.LogicalKeyboardKey_47 = new G.LogicalKeyboardKey(47); C.LogicalKeyboardKey_4295426106 = new G.LogicalKeyboardKey(4295426106); C.LogicalKeyboardKey_4295426107 = new G.LogicalKeyboardKey(4295426107); C.LogicalKeyboardKey_4295426108 = new G.LogicalKeyboardKey(4295426108); C.LogicalKeyboardKey_4295426109 = new G.LogicalKeyboardKey(4295426109); C.LogicalKeyboardKey_4295426110 = new G.LogicalKeyboardKey(4295426110); C.LogicalKeyboardKey_4295426111 = new G.LogicalKeyboardKey(4295426111); C.LogicalKeyboardKey_4295426112 = new G.LogicalKeyboardKey(4295426112); C.LogicalKeyboardKey_4295426113 = new G.LogicalKeyboardKey(4295426113); C.LogicalKeyboardKey_4295426114 = new G.LogicalKeyboardKey(4295426114); C.LogicalKeyboardKey_4295426115 = new G.LogicalKeyboardKey(4295426115); C.LogicalKeyboardKey_4295426116 = new G.LogicalKeyboardKey(4295426116); C.LogicalKeyboardKey_4295426117 = new G.LogicalKeyboardKey(4295426117); C.LogicalKeyboardKey_4295426118 = new G.LogicalKeyboardKey(4295426118); C.LogicalKeyboardKey_4295426120 = new G.LogicalKeyboardKey(4295426120); C.LogicalKeyboardKey_4295426121 = new G.LogicalKeyboardKey(4295426121); C.LogicalKeyboardKey_4295426124 = new G.LogicalKeyboardKey(4295426124); C.LogicalKeyboardKey_4295426132 = new G.LogicalKeyboardKey(4295426132); C.LogicalKeyboardKey_4295426133 = new G.LogicalKeyboardKey(4295426133); C.LogicalKeyboardKey_4295426134 = new G.LogicalKeyboardKey(4295426134); C.LogicalKeyboardKey_4295426135 = new G.LogicalKeyboardKey(4295426135); C.LogicalKeyboardKey_4295426136 = new G.LogicalKeyboardKey(4295426136); C.LogicalKeyboardKey_4295426137 = new G.LogicalKeyboardKey(4295426137); C.LogicalKeyboardKey_4295426138 = new G.LogicalKeyboardKey(4295426138); C.LogicalKeyboardKey_4295426139 = new G.LogicalKeyboardKey(4295426139); C.LogicalKeyboardKey_4295426140 = new G.LogicalKeyboardKey(4295426140); C.LogicalKeyboardKey_4295426141 = new G.LogicalKeyboardKey(4295426141); C.LogicalKeyboardKey_4295426142 = new G.LogicalKeyboardKey(4295426142); C.LogicalKeyboardKey_4295426143 = new G.LogicalKeyboardKey(4295426143); C.LogicalKeyboardKey_4295426144 = new G.LogicalKeyboardKey(4295426144); C.LogicalKeyboardKey_4295426145 = new G.LogicalKeyboardKey(4295426145); C.LogicalKeyboardKey_4295426146 = new G.LogicalKeyboardKey(4295426146); C.LogicalKeyboardKey_4295426147 = new G.LogicalKeyboardKey(4295426147); C.LogicalKeyboardKey_4295426148 = new G.LogicalKeyboardKey(4295426148); C.LogicalKeyboardKey_4295426149 = new G.LogicalKeyboardKey(4295426149); C.LogicalKeyboardKey_4295426150 = new G.LogicalKeyboardKey(4295426150); C.LogicalKeyboardKey_4295426151 = new G.LogicalKeyboardKey(4295426151); C.LogicalKeyboardKey_4295426152 = new G.LogicalKeyboardKey(4295426152); C.LogicalKeyboardKey_4295426153 = new G.LogicalKeyboardKey(4295426153); C.LogicalKeyboardKey_4295426154 = new G.LogicalKeyboardKey(4295426154); C.LogicalKeyboardKey_4295426155 = new G.LogicalKeyboardKey(4295426155); C.LogicalKeyboardKey_4295426156 = new G.LogicalKeyboardKey(4295426156); C.LogicalKeyboardKey_4295426157 = new G.LogicalKeyboardKey(4295426157); C.LogicalKeyboardKey_4295426158 = new G.LogicalKeyboardKey(4295426158); C.LogicalKeyboardKey_4295426159 = new G.LogicalKeyboardKey(4295426159); C.LogicalKeyboardKey_4295426160 = new G.LogicalKeyboardKey(4295426160); C.LogicalKeyboardKey_4295426161 = new G.LogicalKeyboardKey(4295426161); C.LogicalKeyboardKey_4295426162 = new G.LogicalKeyboardKey(4295426162); C.LogicalKeyboardKey_4295426163 = new G.LogicalKeyboardKey(4295426163); C.LogicalKeyboardKey_4295426164 = new G.LogicalKeyboardKey(4295426164); C.LogicalKeyboardKey_4295426165 = new G.LogicalKeyboardKey(4295426165); C.LogicalKeyboardKey_4295426167 = new G.LogicalKeyboardKey(4295426167); C.LogicalKeyboardKey_4295426169 = new G.LogicalKeyboardKey(4295426169); C.LogicalKeyboardKey_4295426170 = new G.LogicalKeyboardKey(4295426170); C.LogicalKeyboardKey_4295426171 = new G.LogicalKeyboardKey(4295426171); C.LogicalKeyboardKey_4295426172 = new G.LogicalKeyboardKey(4295426172); C.LogicalKeyboardKey_4295426173 = new G.LogicalKeyboardKey(4295426173); C.LogicalKeyboardKey_4295426174 = new G.LogicalKeyboardKey(4295426174); C.LogicalKeyboardKey_4295426175 = new G.LogicalKeyboardKey(4295426175); C.LogicalKeyboardKey_4295426176 = new G.LogicalKeyboardKey(4295426176); C.LogicalKeyboardKey_4295426177 = new G.LogicalKeyboardKey(4295426177); C.LogicalKeyboardKey_4295426181 = new G.LogicalKeyboardKey(4295426181); C.LogicalKeyboardKey_4295426183 = new G.LogicalKeyboardKey(4295426183); C.LogicalKeyboardKey_4295426184 = new G.LogicalKeyboardKey(4295426184); C.LogicalKeyboardKey_4295426185 = new G.LogicalKeyboardKey(4295426185); C.LogicalKeyboardKey_4295426186 = new G.LogicalKeyboardKey(4295426186); C.LogicalKeyboardKey_4295426187 = new G.LogicalKeyboardKey(4295426187); C.LogicalKeyboardKey_4295426192 = new G.LogicalKeyboardKey(4295426192); C.LogicalKeyboardKey_4295426193 = new G.LogicalKeyboardKey(4295426193); C.LogicalKeyboardKey_4295426194 = new G.LogicalKeyboardKey(4295426194); C.LogicalKeyboardKey_4295426195 = new G.LogicalKeyboardKey(4295426195); C.LogicalKeyboardKey_4295426196 = new G.LogicalKeyboardKey(4295426196); C.LogicalKeyboardKey_4295426203 = new G.LogicalKeyboardKey(4295426203); C.LogicalKeyboardKey_4295426211 = new G.LogicalKeyboardKey(4295426211); C.LogicalKeyboardKey_4295426230 = new G.LogicalKeyboardKey(4295426230); C.LogicalKeyboardKey_4295426231 = new G.LogicalKeyboardKey(4295426231); C.LogicalKeyboardKey_4295426235 = new G.LogicalKeyboardKey(4295426235); C.LogicalKeyboardKey_4295426256 = new G.LogicalKeyboardKey(4295426256); C.LogicalKeyboardKey_4295426257 = new G.LogicalKeyboardKey(4295426257); C.LogicalKeyboardKey_4295426258 = new G.LogicalKeyboardKey(4295426258); C.LogicalKeyboardKey_4295426259 = new G.LogicalKeyboardKey(4295426259); C.LogicalKeyboardKey_4295426260 = new G.LogicalKeyboardKey(4295426260); C.LogicalKeyboardKey_4295426264 = new G.LogicalKeyboardKey(4295426264); C.LogicalKeyboardKey_4295426265 = new G.LogicalKeyboardKey(4295426265); C.LogicalKeyboardKey_4295753839 = new G.LogicalKeyboardKey(4295753839); C.LogicalKeyboardKey_4295753840 = new G.LogicalKeyboardKey(4295753840); C.LogicalKeyboardKey_4295753904 = new G.LogicalKeyboardKey(4295753904); C.LogicalKeyboardKey_4295753905 = new G.LogicalKeyboardKey(4295753905); C.LogicalKeyboardKey_4295753906 = new G.LogicalKeyboardKey(4295753906); C.LogicalKeyboardKey_4295753907 = new G.LogicalKeyboardKey(4295753907); C.LogicalKeyboardKey_4295753908 = new G.LogicalKeyboardKey(4295753908); C.LogicalKeyboardKey_4295753909 = new G.LogicalKeyboardKey(4295753909); C.LogicalKeyboardKey_4295753910 = new G.LogicalKeyboardKey(4295753910); C.LogicalKeyboardKey_4295753911 = new G.LogicalKeyboardKey(4295753911); C.LogicalKeyboardKey_4295753912 = new G.LogicalKeyboardKey(4295753912); C.LogicalKeyboardKey_4295753933 = new G.LogicalKeyboardKey(4295753933); C.LogicalKeyboardKey_4295754115 = new G.LogicalKeyboardKey(4295754115); C.LogicalKeyboardKey_4295754122 = new G.LogicalKeyboardKey(4295754122); C.LogicalKeyboardKey_4295754130 = new G.LogicalKeyboardKey(4295754130); C.LogicalKeyboardKey_4295754132 = new G.LogicalKeyboardKey(4295754132); C.LogicalKeyboardKey_4295754143 = new G.LogicalKeyboardKey(4295754143); C.LogicalKeyboardKey_4295754146 = new G.LogicalKeyboardKey(4295754146); C.LogicalKeyboardKey_4295754161 = new G.LogicalKeyboardKey(4295754161); C.LogicalKeyboardKey_4295754187 = new G.LogicalKeyboardKey(4295754187); C.LogicalKeyboardKey_4295754273 = new G.LogicalKeyboardKey(4295754273); C.LogicalKeyboardKey_4295754275 = new G.LogicalKeyboardKey(4295754275); C.LogicalKeyboardKey_4295754276 = new G.LogicalKeyboardKey(4295754276); C.LogicalKeyboardKey_4295754277 = new G.LogicalKeyboardKey(4295754277); C.LogicalKeyboardKey_4295754278 = new G.LogicalKeyboardKey(4295754278); C.LogicalKeyboardKey_4295754279 = new G.LogicalKeyboardKey(4295754279); C.LogicalKeyboardKey_4295754282 = new G.LogicalKeyboardKey(4295754282); C.LogicalKeyboardKey_4295754290 = new G.LogicalKeyboardKey(4295754290); C.LogicalKeyboardKey_4295754377 = new G.LogicalKeyboardKey(4295754377); C.LogicalKeyboardKey_4295754379 = new G.LogicalKeyboardKey(4295754379); C.LogicalKeyboardKey_4295754380 = new G.LogicalKeyboardKey(4295754380); C.LogicalKeyboardKey_4295754397 = new G.LogicalKeyboardKey(4295754397); C.LogicalKeyboardKey_4295754399 = new G.LogicalKeyboardKey(4295754399); C.LogicalKeyboardKey_4295360257 = new G.LogicalKeyboardKey(4295360257); C.LogicalKeyboardKey_4295360258 = new G.LogicalKeyboardKey(4295360258); C.LogicalKeyboardKey_4295360259 = new G.LogicalKeyboardKey(4295360259); C.LogicalKeyboardKey_4295360260 = new G.LogicalKeyboardKey(4295360260); C.LogicalKeyboardKey_4295360261 = new G.LogicalKeyboardKey(4295360261); C.LogicalKeyboardKey_4295360262 = new G.LogicalKeyboardKey(4295360262); C.LogicalKeyboardKey_4295360263 = new G.LogicalKeyboardKey(4295360263); C.LogicalKeyboardKey_4295360264 = new G.LogicalKeyboardKey(4295360264); C.LogicalKeyboardKey_4295360265 = new G.LogicalKeyboardKey(4295360265); C.LogicalKeyboardKey_4295360266 = new G.LogicalKeyboardKey(4295360266); C.LogicalKeyboardKey_4295360267 = new G.LogicalKeyboardKey(4295360267); C.LogicalKeyboardKey_4295360268 = new G.LogicalKeyboardKey(4295360268); C.LogicalKeyboardKey_4295360269 = new G.LogicalKeyboardKey(4295360269); C.LogicalKeyboardKey_4295360270 = new G.LogicalKeyboardKey(4295360270); C.LogicalKeyboardKey_4295360271 = new G.LogicalKeyboardKey(4295360271); C.LogicalKeyboardKey_4295360272 = new G.LogicalKeyboardKey(4295360272); C.LogicalKeyboardKey_4295360273 = new G.LogicalKeyboardKey(4295360273); C.LogicalKeyboardKey_4295360274 = new G.LogicalKeyboardKey(4295360274); C.LogicalKeyboardKey_4295360275 = new G.LogicalKeyboardKey(4295360275); C.LogicalKeyboardKey_4295360276 = new G.LogicalKeyboardKey(4295360276); C.LogicalKeyboardKey_4295360277 = new G.LogicalKeyboardKey(4295360277); C.LogicalKeyboardKey_4295360278 = new G.LogicalKeyboardKey(4295360278); C.LogicalKeyboardKey_4295360279 = new G.LogicalKeyboardKey(4295360279); C.LogicalKeyboardKey_4295360280 = new G.LogicalKeyboardKey(4295360280); C.LogicalKeyboardKey_4295360281 = new G.LogicalKeyboardKey(4295360281); C.LogicalKeyboardKey_4295360282 = new G.LogicalKeyboardKey(4295360282); C.LogicalKeyboardKey_4295360283 = new G.LogicalKeyboardKey(4295360283); C.LogicalKeyboardKey_4295360284 = new G.LogicalKeyboardKey(4295360284); C.LogicalKeyboardKey_4295360285 = new G.LogicalKeyboardKey(4295360285); C.LogicalKeyboardKey_4295360286 = new G.LogicalKeyboardKey(4295360286); C.LogicalKeyboardKey_4295360287 = new G.LogicalKeyboardKey(4295360287); C.Map_YVCB9 = new H.ConstantStringMap(230, {None: C.LogicalKeyboardKey_4294967296, Hyper: C.LogicalKeyboardKey_4294967312, Super: C.LogicalKeyboardKey_4294967313, FnLock: C.LogicalKeyboardKey_4294967315, Suspend: C.LogicalKeyboardKey_4294967316, Resume: C.LogicalKeyboardKey_4294967317, Turbo: C.LogicalKeyboardKey_4294967318, PrivacyScreenToggle: C.LogicalKeyboardKey_4294967319, Sleep: C.LogicalKeyboardKey_4295032962, WakeUp: C.LogicalKeyboardKey_4295032963, DisplayToggleIntExt: C.LogicalKeyboardKey_4295033013, KeyA: C.LogicalKeyboardKey_97, KeyB: C.LogicalKeyboardKey_98, KeyC: C.LogicalKeyboardKey_99, KeyD: C.LogicalKeyboardKey_100, KeyE: C.LogicalKeyboardKey_101, KeyF: C.LogicalKeyboardKey_102, KeyG: C.LogicalKeyboardKey_103, KeyH: C.LogicalKeyboardKey_104, KeyI: C.LogicalKeyboardKey_105, KeyJ: C.LogicalKeyboardKey_106, KeyK: C.LogicalKeyboardKey_107, KeyL: C.LogicalKeyboardKey_108, KeyM: C.LogicalKeyboardKey_109, KeyN: C.LogicalKeyboardKey_110, KeyO: C.LogicalKeyboardKey_111, KeyP: C.LogicalKeyboardKey_112, KeyQ: C.LogicalKeyboardKey_113, KeyR: C.LogicalKeyboardKey_114, KeyS: C.LogicalKeyboardKey_115, KeyT: C.LogicalKeyboardKey_116, KeyU: C.LogicalKeyboardKey_117, KeyV: C.LogicalKeyboardKey_118, KeyW: C.LogicalKeyboardKey_119, KeyX: C.LogicalKeyboardKey_120, KeyY: C.LogicalKeyboardKey_121, KeyZ: C.LogicalKeyboardKey_122, Digit1: C.LogicalKeyboardKey_49, Digit2: C.LogicalKeyboardKey_50, Digit3: C.LogicalKeyboardKey_51, Digit4: C.LogicalKeyboardKey_52, Digit5: C.LogicalKeyboardKey_53, Digit6: C.LogicalKeyboardKey_54, Digit7: C.LogicalKeyboardKey_55, Digit8: C.LogicalKeyboardKey_56, Digit9: C.LogicalKeyboardKey_57, Digit0: C.LogicalKeyboardKey_48, Enter: C.LogicalKeyboardKey_4295426088, Escape: C.LogicalKeyboardKey_4295426089, Backspace: C.LogicalKeyboardKey_4295426090, Tab: C.LogicalKeyboardKey_4295426091, Space: C.LogicalKeyboardKey_32, Minus: C.LogicalKeyboardKey_45, Equal: C.LogicalKeyboardKey_61, BracketLeft: C.LogicalKeyboardKey_91, BracketRight: C.LogicalKeyboardKey_93, Backslash: C.LogicalKeyboardKey_92, Semicolon: C.LogicalKeyboardKey_59, Quote: C.LogicalKeyboardKey_39, Backquote: C.LogicalKeyboardKey_96, Comma: C.LogicalKeyboardKey_44, Period: C.LogicalKeyboardKey_46, Slash: C.LogicalKeyboardKey_47, CapsLock: C.LogicalKeyboardKey_4295426105, F1: C.LogicalKeyboardKey_4295426106, F2: C.LogicalKeyboardKey_4295426107, F3: C.LogicalKeyboardKey_4295426108, F4: C.LogicalKeyboardKey_4295426109, F5: C.LogicalKeyboardKey_4295426110, F6: C.LogicalKeyboardKey_4295426111, F7: C.LogicalKeyboardKey_4295426112, F8: C.LogicalKeyboardKey_4295426113, F9: C.LogicalKeyboardKey_4295426114, F10: C.LogicalKeyboardKey_4295426115, F11: C.LogicalKeyboardKey_4295426116, F12: C.LogicalKeyboardKey_4295426117, PrintScreen: C.LogicalKeyboardKey_4295426118, ScrollLock: C.LogicalKeyboardKey_4295426119, Pause: C.LogicalKeyboardKey_4295426120, Insert: C.LogicalKeyboardKey_4295426121, Home: C.LogicalKeyboardKey_4295426122, PageUp: C.LogicalKeyboardKey_4295426123, Delete: C.LogicalKeyboardKey_4295426124, End: C.LogicalKeyboardKey_4295426125, PageDown: C.LogicalKeyboardKey_4295426126, ArrowRight: C.LogicalKeyboardKey_4295426127, ArrowLeft: C.LogicalKeyboardKey_4295426128, ArrowDown: C.LogicalKeyboardKey_4295426129, ArrowUp: C.LogicalKeyboardKey_4295426130, NumLock: C.LogicalKeyboardKey_4295426131, NumpadDivide: C.LogicalKeyboardKey_4295426132, NumpadMultiply: C.LogicalKeyboardKey_4295426133, NumpadSubtract: C.LogicalKeyboardKey_4295426134, NumpadAdd: C.LogicalKeyboardKey_4295426135, NumpadEnter: C.LogicalKeyboardKey_4295426136, Numpad1: C.LogicalKeyboardKey_4295426137, Numpad2: C.LogicalKeyboardKey_4295426138, Numpad3: C.LogicalKeyboardKey_4295426139, Numpad4: C.LogicalKeyboardKey_4295426140, Numpad5: C.LogicalKeyboardKey_4295426141, Numpad6: C.LogicalKeyboardKey_4295426142, Numpad7: C.LogicalKeyboardKey_4295426143, Numpad8: C.LogicalKeyboardKey_4295426144, Numpad9: C.LogicalKeyboardKey_4295426145, Numpad0: C.LogicalKeyboardKey_4295426146, NumpadDecimal: C.LogicalKeyboardKey_4295426147, IntlBackslash: C.LogicalKeyboardKey_4295426148, ContextMenu: C.LogicalKeyboardKey_4295426149, Power: C.LogicalKeyboardKey_4295426150, NumpadEqual: C.LogicalKeyboardKey_4295426151, F13: C.LogicalKeyboardKey_4295426152, F14: C.LogicalKeyboardKey_4295426153, F15: C.LogicalKeyboardKey_4295426154, F16: C.LogicalKeyboardKey_4295426155, F17: C.LogicalKeyboardKey_4295426156, F18: C.LogicalKeyboardKey_4295426157, F19: C.LogicalKeyboardKey_4295426158, F20: C.LogicalKeyboardKey_4295426159, F21: C.LogicalKeyboardKey_4295426160, F22: C.LogicalKeyboardKey_4295426161, F23: C.LogicalKeyboardKey_4295426162, F24: C.LogicalKeyboardKey_4295426163, Open: C.LogicalKeyboardKey_4295426164, Help: C.LogicalKeyboardKey_4295426165, Select: C.LogicalKeyboardKey_4295426167, Again: C.LogicalKeyboardKey_4295426169, Undo: C.LogicalKeyboardKey_4295426170, Cut: C.LogicalKeyboardKey_4295426171, Copy: C.LogicalKeyboardKey_4295426172, Paste: C.LogicalKeyboardKey_4295426173, Find: C.LogicalKeyboardKey_4295426174, AudioVolumeMute: C.LogicalKeyboardKey_4295426175, AudioVolumeUp: C.LogicalKeyboardKey_4295426176, AudioVolumeDown: C.LogicalKeyboardKey_4295426177, NumpadComma: C.LogicalKeyboardKey_4295426181, IntlRo: C.LogicalKeyboardKey_4295426183, KanaMode: C.LogicalKeyboardKey_4295426184, IntlYen: C.LogicalKeyboardKey_4295426185, Convert: C.LogicalKeyboardKey_4295426186, NonConvert: C.LogicalKeyboardKey_4295426187, Lang1: C.LogicalKeyboardKey_4295426192, Lang2: C.LogicalKeyboardKey_4295426193, Lang3: C.LogicalKeyboardKey_4295426194, Lang4: C.LogicalKeyboardKey_4295426195, Lang5: C.LogicalKeyboardKey_4295426196, Abort: C.LogicalKeyboardKey_4295426203, Props: C.LogicalKeyboardKey_4295426211, NumpadParenLeft: C.LogicalKeyboardKey_4295426230, NumpadParenRight: C.LogicalKeyboardKey_4295426231, NumpadBackspace: C.LogicalKeyboardKey_4295426235, NumpadMemoryStore: C.LogicalKeyboardKey_4295426256, NumpadMemoryRecall: C.LogicalKeyboardKey_4295426257, NumpadMemoryClear: C.LogicalKeyboardKey_4295426258, NumpadMemoryAdd: C.LogicalKeyboardKey_4295426259, NumpadMemorySubtract: C.LogicalKeyboardKey_4295426260, NumpadClear: C.LogicalKeyboardKey_4295426264, NumpadClearEntry: C.LogicalKeyboardKey_4295426265, ControlLeft: C.LogicalKeyboardKey_4295426272, ShiftLeft: C.LogicalKeyboardKey_4295426273, AltLeft: C.LogicalKeyboardKey_4295426274, MetaLeft: C.LogicalKeyboardKey_4295426275, ControlRight: C.LogicalKeyboardKey_4295426276, ShiftRight: C.LogicalKeyboardKey_4295426277, AltRight: C.LogicalKeyboardKey_4295426278, MetaRight: C.LogicalKeyboardKey_4295426279, BrightnessUp: C.LogicalKeyboardKey_4295753839, BrightnessDown: C.LogicalKeyboardKey_4295753840, MediaPlay: C.LogicalKeyboardKey_4295753904, MediaPause: C.LogicalKeyboardKey_4295753905, MediaRecord: C.LogicalKeyboardKey_4295753906, MediaFastForward: C.LogicalKeyboardKey_4295753907, MediaRewind: C.LogicalKeyboardKey_4295753908, MediaTrackNext: C.LogicalKeyboardKey_4295753909, MediaTrackPrevious: C.LogicalKeyboardKey_4295753910, MediaStop: C.LogicalKeyboardKey_4295753911, Eject: C.LogicalKeyboardKey_4295753912, MediaPlayPause: C.LogicalKeyboardKey_4295753933, MediaSelect: C.LogicalKeyboardKey_4295754115, LaunchMail: C.LogicalKeyboardKey_4295754122, LaunchApp2: C.LogicalKeyboardKey_4295754130, LaunchApp1: C.LogicalKeyboardKey_4295754132, LaunchControlPanel: C.LogicalKeyboardKey_4295754143, SelectTask: C.LogicalKeyboardKey_4295754146, LaunchScreenSaver: C.LogicalKeyboardKey_4295754161, LaunchAssistant: C.LogicalKeyboardKey_4295754187, BrowserSearch: C.LogicalKeyboardKey_4295754273, BrowserHome: C.LogicalKeyboardKey_4295754275, BrowserBack: C.LogicalKeyboardKey_4295754276, BrowserForward: C.LogicalKeyboardKey_4295754277, BrowserStop: C.LogicalKeyboardKey_4295754278, BrowserRefresh: C.LogicalKeyboardKey_4295754279, BrowserFavorites: C.LogicalKeyboardKey_4295754282, ZoomToggle: C.LogicalKeyboardKey_4295754290, MailReply: C.LogicalKeyboardKey_4295754377, MailForward: C.LogicalKeyboardKey_4295754379, MailSend: C.LogicalKeyboardKey_4295754380, KeyboardLayoutSelect: C.LogicalKeyboardKey_4295754397, ShowAllWindows: C.LogicalKeyboardKey_4295754399, GameButton1: C.LogicalKeyboardKey_4295360257, GameButton2: C.LogicalKeyboardKey_4295360258, GameButton3: C.LogicalKeyboardKey_4295360259, GameButton4: C.LogicalKeyboardKey_4295360260, GameButton5: C.LogicalKeyboardKey_4295360261, GameButton6: C.LogicalKeyboardKey_4295360262, GameButton7: C.LogicalKeyboardKey_4295360263, GameButton8: C.LogicalKeyboardKey_4295360264, GameButton9: C.LogicalKeyboardKey_4295360265, GameButton10: C.LogicalKeyboardKey_4295360266, GameButton11: C.LogicalKeyboardKey_4295360267, GameButton12: C.LogicalKeyboardKey_4295360268, GameButton13: C.LogicalKeyboardKey_4295360269, GameButton14: C.LogicalKeyboardKey_4295360270, GameButton15: C.LogicalKeyboardKey_4295360271, GameButton16: C.LogicalKeyboardKey_4295360272, GameButtonA: C.LogicalKeyboardKey_4295360273, GameButtonB: C.LogicalKeyboardKey_4295360274, GameButtonC: C.LogicalKeyboardKey_4295360275, GameButtonLeft1: C.LogicalKeyboardKey_4295360276, GameButtonLeft2: C.LogicalKeyboardKey_4295360277, GameButtonMode: C.LogicalKeyboardKey_4295360278, GameButtonRight1: C.LogicalKeyboardKey_4295360279, GameButtonRight2: C.LogicalKeyboardKey_4295360280, GameButtonSelect: C.LogicalKeyboardKey_4295360281, GameButtonStart: C.LogicalKeyboardKey_4295360282, GameButtonThumbLeft: C.LogicalKeyboardKey_4295360283, GameButtonThumbRight: C.LogicalKeyboardKey_4295360284, GameButtonX: C.LogicalKeyboardKey_4295360285, GameButtonY: C.LogicalKeyboardKey_4295360286, GameButtonZ: C.LogicalKeyboardKey_4295360287, Fn: C.LogicalKeyboardKey_4294967314}, C.List_YVI1, type$.ConstantStringMap_of_legacy_String_and_legacy_LogicalKeyboardKey); C.Map_empty0 = new H.ConstantStringMap(0, {}, C.List_empty, H.findType("ConstantStringMap<@,@>")); C.List_empty23 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.Map_empty1 = new H.ConstantStringMap(0, {}, C.List_empty23, H.findType("ConstantStringMap")); C.Map_empty2 = new H.ConstantStringMap(0, {}, C.List_empty, H.findType("ConstantStringMap")); C.List_empty24 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.Map_empty8 = new H.ConstantStringMap(0, {}, C.List_empty24, H.findType("ConstantStringMap")); C.Map_empty4 = new H.ConstantStringMap(0, {}, C.List_empty1, type$.ConstantStringMap_of_legacy_String_and_dynamic); C.Map_empty6 = new H.ConstantStringMap(0, {}, C.List_empty1, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_empty7 = new H.ConstantStringMap(0, {}, C.List_empty1, H.findType("ConstantStringMap")); C.List_empty25 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.Map_empty = new H.ConstantStringMap(0, {}, C.List_empty25, H.findType("ConstantStringMap")); C.List_empty26 = H.setRuntimeTypeInfo(makeConstList([]), type$.JSArray_legacy_Type); C.Map_empty3 = new H.ConstantStringMap(0, {}, C.List_empty26, H.findType("ConstantStringMap")); C.Map_empty5 = new H.ConstantStringMap(0, {}, C.List_empty26, H.findType("ConstantStringMap*>")); C.List_eyO = H.setRuntimeTypeInfo(makeConstList(["application/vnd.android.package-archive", "application/epub+zip", "application/gzip", "application/java-archive", "application/json", "application/ld+json", "application/msword", "application/octet-stream", "application/ogg", "application/pdf", "application/php", "application/rtf", "application/vnd.amazon.ebook", "application/vnd.apple.installer+xml", "application/vnd.mozilla.xul+xml", "application/vnd.ms-excel", "application/vnd.ms-fontobject", "application/vnd.ms-powerpoint", "application/vnd.oasis.opendocument.presentation", "application/vnd.oasis.opendocument.spreadsheet", "application/vnd.oasis.opendocument.text", "application/vnd.openxmlformats-officedocument.presentationml.presentation", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.rar", "application/vnd.visio", "application/x-7z-compressed", "application/x-abiword", "application/x-bzip", "application/x-bzip2", "application/x-csh", "application/x-freearc", "application/x-sh", "application/x-shockwave-flash", "application/x-tar", "application/xhtml+xml", "application/xml", "application/zip", "audio/3gpp", "audio/3gpp2", "audio/aac", "audio/x-aac", "audio/midi audio/x-midi", "audio/mpeg", "audio/ogg", "audio/opus", "audio/wav", "audio/webm", "font/otf", "font/ttf", "font/woff", "font/woff2", "image/bmp", "image/gif", "image/jpeg", "image/png", "image/svg+xml", "image/tiff", "image/vnd.microsoft.icon", "image/webp", "text/calendar", "text/css", "text/csv", "text/html", "text/javascript", "text/plain", "text/xml", "video/3gpp", "video/3gpp2", "video/mp2t", "video/mpeg", "video/ogg", "video/webm", "video/x-msvideo", "video/quicktime"]), type$.JSArray_legacy_String); C.Map_eyCh9 = new H.ConstantStringMap(75, {"application/vnd.android.package-archive": ".apk", "application/epub+zip": ".epub", "application/gzip": ".gz", "application/java-archive": ".jar", "application/json": ".json", "application/ld+json": ".jsonld", "application/msword": ".doc", "application/octet-stream": ".bin", "application/ogg": ".ogx", "application/pdf": ".pdf", "application/php": ".php", "application/rtf": ".rtf", "application/vnd.amazon.ebook": ".azw", "application/vnd.apple.installer+xml": ".mpkg", "application/vnd.mozilla.xul+xml": ".xul", "application/vnd.ms-excel": ".xls", "application/vnd.ms-fontobject": ".eot", "application/vnd.ms-powerpoint": ".ppt", "application/vnd.oasis.opendocument.presentation": ".odp", "application/vnd.oasis.opendocument.spreadsheet": ".ods", "application/vnd.oasis.opendocument.text": ".odt", "application/vnd.openxmlformats-officedocument.presentationml.presentation": ".pptx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ".xlsx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ".docx", "application/vnd.rar": ".rar", "application/vnd.visio": ".vsd", "application/x-7z-compressed": ".7z", "application/x-abiword": ".abw", "application/x-bzip": ".bz", "application/x-bzip2": ".bz2", "application/x-csh": ".csh", "application/x-freearc": ".arc", "application/x-sh": ".sh", "application/x-shockwave-flash": ".swf", "application/x-tar": ".tar", "application/xhtml+xml": ".xhtml", "application/xml": ".xml", "application/zip": ".zip", "audio/3gpp": ".3gp", "audio/3gpp2": ".3g2", "audio/aac": ".aac", "audio/x-aac": ".aac", "audio/midi audio/x-midi": ".midi", "audio/mpeg": ".mp3", "audio/ogg": ".oga", "audio/opus": ".opus", "audio/wav": ".wav", "audio/webm": ".weba", "font/otf": ".otf", "font/ttf": ".ttf", "font/woff": ".woff", "font/woff2": ".woff2", "image/bmp": ".bmp", "image/gif": ".gif", "image/jpeg": ".jpg", "image/png": ".png", "image/svg+xml": ".svg", "image/tiff": ".tiff", "image/vnd.microsoft.icon": ".ico", "image/webp": ".webp", "text/calendar": ".ics", "text/css": ".css", "text/csv": ".csv", "text/html": ".html", "text/javascript": ".js", "text/plain": ".txt", "text/xml": ".xml", "video/3gpp": ".3gp", "video/3gpp2": ".3g2", "video/mp2t": ".ts", "video/mpeg": ".mpeg", "video/ogg": ".ogv", "video/webm": ".webm", "video/x-msvideo": ".avi", "video/quicktime": ".mov"}, C.List_eyO, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_gFn = H.setRuntimeTypeInfo(makeConstList(["alias", "allScroll", "basic", "cell", "click", "contextMenu", "copy", "forbidden", "grab", "grabbing", "help", "move", "none", "noDrop", "precise", "progress", "text", "resizeColumn", "resizeDown", "resizeDownLeft", "resizeDownRight", "resizeLeft", "resizeLeftRight", "resizeRight", "resizeRow", "resizeUp", "resizeUpDown", "resizeUpLeft", "resizeUpRight", "resizeUpLeftDownRight", "resizeUpRightDownLeft", "verticalText", "wait", "zoomIn", "zoomOut"]), type$.JSArray_legacy_String); C.Map_gFKQ1 = new H.ConstantStringMap(35, {alias: "alias", allScroll: "all-scroll", basic: "default", cell: "cell", click: "pointer", contextMenu: "context-menu", copy: "copy", forbidden: "not-allowed", grab: "grab", grabbing: "grabbing", help: "help", move: "move", none: "none", noDrop: "no-drop", precise: "crosshair", progress: "progress", text: "text", resizeColumn: "col-resize", resizeDown: "s-resize", resizeDownLeft: "sw-resize", resizeDownRight: "se-resize", resizeLeft: "w-resize", resizeLeftRight: "ew-resize", resizeRight: "e-resize", resizeRow: "row-resize", resizeUp: "n-resize", resizeUpDown: "ns-resize", resizeUpLeft: "nw-resize", resizeUpRight: "ne-resize", resizeUpLeftDownRight: "nwse-resize", resizeUpRightDownLeft: "nesw-resize", verticalText: "vertical-text", wait: "wait", zoomIn: "zoom-in", zoomOut: "zoom-out"}, C.List_gFn, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_iBJ = H.setRuntimeTypeInfo(makeConstList(["addressCity", "addressCityAndState", "addressState", "birthday", "birthdayDay", "birthdayMonth", "birthdayYear", "countryCode", "countryName", "creditCardExpirationDate", "creditCardExpirationDay", "creditCardExpirationMonth", "creditCardExpirationYear", "creditCardFamilyName", "creditCardGivenName", "creditCardMiddleName", "creditCardName", "creditCardNumber", "creditCardSecurityCode", "creditCardType", "email", "familyName", "fullStreetAddress", "gender", "givenName", "impp", "jobTitle", "language", "location", "middleInitial", "middleName", "name", "namePrefix", "nameSuffix", "newPassword", "newUsername", "nickname", "oneTimeCode", "organizationName", "password", "photo", "postalAddress", "postalAddressExtended", "postalAddressExtendedPostalCode", "postalCode", "streetAddressLevel1", "streetAddressLevel2", "streetAddressLevel3", "streetAddressLevel4", "streetAddressLine1", "streetAddressLine2", "streetAddressLine3", "sublocality", "telephoneNumber", "telephoneNumberAreaCode", "telephoneNumberCountryCode", "telephoneNumberDevice", "telephoneNumberExtension", "telephoneNumberLocal", "telephoneNumberLocalPrefix", "telephoneNumberLocalSuffix", "telephoneNumberNational", "transactionAmount", "transactionCurrency", "url", "username"]), type$.JSArray_legacy_String); C.TextInputType_9_null_null = new N.TextInputType(9, null, null); C.TextInputType_4_null_null = new N.TextInputType(4, null, null); C.TextInputType_2_false_false = new N.TextInputType(2, false, false); C.TextInputType_0_null_null = new N.TextInputType(0, null, null); C.TextInputType_8_null_null = new N.TextInputType(8, null, null); C.TextInputType_5_null_null = new N.TextInputType(5, null, null); C.TextInputType_6_null_null = new N.TextInputType(6, null, null); C.TextInputType_3_null_null = new N.TextInputType(3, null, null); C.TextInputType_2_false_true = new N.TextInputType(2, false, true); C.Map_iBL7U = new H.ConstantStringMap(66, {addressCity: C.TextInputType_9_null_null, addressCityAndState: C.TextInputType_9_null_null, addressState: C.TextInputType_9_null_null, birthday: C.TextInputType_4_null_null, birthdayDay: C.TextInputType_4_null_null, birthdayMonth: C.TextInputType_4_null_null, birthdayYear: C.TextInputType_4_null_null, countryCode: C.TextInputType_2_false_false, countryName: C.TextInputType_0_null_null, creditCardExpirationDate: C.TextInputType_4_null_null, creditCardExpirationDay: C.TextInputType_4_null_null, creditCardExpirationMonth: C.TextInputType_4_null_null, creditCardExpirationYear: C.TextInputType_4_null_null, creditCardFamilyName: C.TextInputType_8_null_null, creditCardGivenName: C.TextInputType_8_null_null, creditCardMiddleName: C.TextInputType_8_null_null, creditCardName: C.TextInputType_8_null_null, creditCardNumber: C.TextInputType_2_false_false, creditCardSecurityCode: C.TextInputType_2_false_false, creditCardType: C.TextInputType_0_null_null, email: C.TextInputType_5_null_null, familyName: C.TextInputType_8_null_null, fullStreetAddress: C.TextInputType_9_null_null, gender: C.TextInputType_0_null_null, givenName: C.TextInputType_8_null_null, impp: C.TextInputType_6_null_null, jobTitle: C.TextInputType_0_null_null, language: C.TextInputType_0_null_null, location: C.TextInputType_9_null_null, middleInitial: C.TextInputType_8_null_null, middleName: C.TextInputType_8_null_null, name: C.TextInputType_8_null_null, namePrefix: C.TextInputType_8_null_null, nameSuffix: C.TextInputType_8_null_null, newPassword: C.TextInputType_0_null_null, newUsername: C.TextInputType_0_null_null, nickname: C.TextInputType_0_null_null, oneTimeCode: C.TextInputType_0_null_null, organizationName: C.TextInputType_0_null_null, password: C.TextInputType_0_null_null, photo: C.TextInputType_0_null_null, postalAddress: C.TextInputType_9_null_null, postalAddressExtended: C.TextInputType_9_null_null, postalAddressExtendedPostalCode: C.TextInputType_2_false_false, postalCode: C.TextInputType_2_false_false, streetAddressLevel1: C.TextInputType_9_null_null, streetAddressLevel2: C.TextInputType_9_null_null, streetAddressLevel3: C.TextInputType_9_null_null, streetAddressLevel4: C.TextInputType_9_null_null, streetAddressLine1: C.TextInputType_9_null_null, streetAddressLine2: C.TextInputType_9_null_null, streetAddressLine3: C.TextInputType_9_null_null, sublocality: C.TextInputType_9_null_null, telephoneNumber: C.TextInputType_3_null_null, telephoneNumberAreaCode: C.TextInputType_3_null_null, telephoneNumberCountryCode: C.TextInputType_3_null_null, telephoneNumberDevice: C.TextInputType_3_null_null, telephoneNumberExtension: C.TextInputType_3_null_null, telephoneNumberLocal: C.TextInputType_3_null_null, telephoneNumberLocalPrefix: C.TextInputType_3_null_null, telephoneNumberLocalSuffix: C.TextInputType_3_null_null, telephoneNumberNational: C.TextInputType_3_null_null, transactionAmount: C.TextInputType_2_false_true, transactionCurrency: C.TextInputType_0_null_null, url: C.TextInputType_6_null_null, username: C.TextInputType_0_null_null}, C.List_iBJ, H.findType("ConstantStringMap")); C.Color_4289200107 = new P.Color(4289200107); C.Color_4284809178 = new P.Color(4284809178); C.Color_4280150454 = new P.Color(4280150454); C.Color_4278239141 = new P.Color(4278239141); C.Map_iTYZn = new H.GeneralConstantMap([100, C.Color_4289200107, 200, C.Color_4284809178, 400, C.Color_4280150454, 700, C.Color_4278239141], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.List_j3h0 = H.setRuntimeTypeInfo(makeConstList(["-1", "1", "2", "3", "4", "5", "6", "-3"]), type$.JSArray_legacy_String); C.Map_j34mP = new H.ConstantStringMap(8, {"-1": "past_due", "1": "draft", "2": "sent", "3": "partial", "4": "paid", "5": "cancelled", "6": "reversed", "-3": "viewed"}, C.List_j3h0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_kCqFu = new H.GeneralConstantMap([C.TraversalDirection_0, -7, C.TraversalDirection_1, 1, C.TraversalDirection_2, 7, C.TraversalDirection_3, -1], H.findType("GeneralConstantMap")); C.List_mC80 = H.setRuntimeTypeInfo(makeConstList(["None", "Unidentified", "Backspace", "Tab", "Enter", "Escape", "Space", "Exclamation", "Quote", "NumberSign", "Dollar", "Ampersand", "QuoteSingle", "ParenthesisLeft", "ParenthesisRight", "Asterisk", "Add", "Comma", "Minus", "Period", "Slash", "Digit0", "Digit1", "Digit2", "Digit3", "Digit4", "Digit5", "Digit6", "Digit7", "Digit8", "Digit9", "Colon", "Semicolon", "Less", "Equal", "Greater", "Question", "At", "BracketLeft", "Backslash", "BracketRight", "Caret", "Underscore", "Backquote", "KeyA", "KeyB", "KeyC", "KeyD", "KeyE", "KeyF", "KeyG", "KeyH", "KeyI", "KeyJ", "KeyK", "KeyL", "KeyM", "KeyN", "KeyO", "KeyP", "KeyQ", "KeyR", "KeyS", "KeyT", "KeyU", "KeyV", "KeyW", "KeyX", "KeyY", "KeyZ", "BraceLeft", "Bar", "BraceRight", "Tilde", "Delete", "Accel", "AltGraph", "CapsLock", "Fn", "FnLock", "Hyper", "NumLock", "ScrollLock", "Super", "Symbol", "SymbolLock", "ShiftLevel5", "AltGraphLatch", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "End", "Home", "PageDown", "PageUp", "Clear", "Copy", "CrSel", "Cut", "EraseEof", "ExSel", "Insert", "Paste", "Redo", "Undo", "Accept", "Again", "Attn", "Cancel", "ContextMenu", "Execute", "Find", "Help", "Pause", "Play", "Props", "Select", "ZoomIn", "ZoomOut", "BrightnessDown", "BrightnessUp", "Camera", "Eject", "LogOff", "Power", "PowerOff", "PrintScreen", "Hibernate", "Standby", "WakeUp", "AllCandidates", "Alphanumeric", "CodeInput", "Compose", "Convert", "FinalMode", "GroupFirst", "GroupLast", "GroupNext", "GroupPrevious", "ModeChange", "NextCandidate", "NonConvert", "PreviousCandidate", "Process", "SingleCandidate", "HangulMode", "HanjaMode", "JunjaMode", "Eisu", "Hankaku", "Hiragana", "HiraganaKatakana", "KanaMode", "KanjiMode", "Katakana", "Romaji", "Zenkaku", "ZenkakuHankaku", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F20", "F21", "F22", "F23", "F24", "Soft1", "Soft2", "Soft3", "Soft4", "Soft5", "Soft6", "Soft7", "Soft8", "Close", "MailForward", "MailReply", "MailSend", "MediaPlayPause", "MediaStop", "MediaTrackNext", "MediaTrackPrevious", "New", "Open", "Print", "Save", "SpellCheck", "AudioVolumeDown", "AudioVolumeUp", "AudioVolumeMute", "LaunchApplication2", "LaunchCalendar", "LaunchMail", "LaunchMediaPlayer", "LaunchMusicPlayer", "LaunchApplication1", "LaunchScreenSaver", "LaunchSpreadsheet", "LaunchWebBrowser", "LaunchWebCam", "LaunchWordProcessor", "LaunchContacts", "LaunchPhone", "LaunchAssistant", "LaunchControlPanel", "BrowserBack", "BrowserFavorites", "BrowserForward", "BrowserHome", "BrowserRefresh", "BrowserSearch", "BrowserStop", "AudioBalanceLeft", "AudioBalanceRight", "AudioBassBoostDown", "AudioBassBoostUp", "AudioFaderFront", "AudioFaderRear", "AudioSurroundModeNext", "AVRInput", "AVRPower", "ChannelDown", "ChannelUp", "ColorF0Red", "ColorF1Green", "ColorF2Yellow", "ColorF3Blue", "ColorF4Grey", "ColorF5Brown", "ClosedCaptionToggle", "Dimmer", "DisplaySwap", "Exit", "FavoriteClear0", "FavoriteClear1", "FavoriteClear2", "FavoriteClear3", "FavoriteRecall0", "FavoriteRecall1", "FavoriteRecall2", "FavoriteRecall3", "FavoriteStore0", "FavoriteStore1", "FavoriteStore2", "FavoriteStore3", "Guide", "GuideNextDay", "GuidePreviousDay", "Info", "InstantReplay", "Link", "ListProgram", "LiveContent", "Lock", "MediaApps", "MediaFastForward", "MediaLast", "MediaPause", "MediaPlay", "MediaRecord", "MediaRewind", "MediaSkip", "NextFavoriteChannel", "NextUserProfile", "OnDemand", "PinPDown", "PinPMove", "PinPToggle", "PinPUp", "PlaySpeedDown", "PlaySpeedReset", "PlaySpeedUp", "RandomToggle", "RcLowBattery", "RecordSpeedNext", "RfBypass", "ScanChannelsToggle", "ScreenModeNext", "Settings", "SplitScreenToggle", "STBInput", "STBPower", "Subtitle", "Teletext", "TV", "TVInput", "TVPower", "VideoModeNext", "Wink", "ZoomToggle", "DVR", "MediaAudioTrack", "MediaSkipBackward", "MediaSkipForward", "MediaStepBackward", "MediaStepForward", "MediaTopMenu", "NavigateIn", "NavigateNext", "NavigateOut", "NavigatePrevious", "Pairing", "MediaClose", "AudioBassBoostToggle", "AudioTrebleDown", "AudioTrebleUp", "MicrophoneToggle", "MicrophoneVolumeDown", "MicrophoneVolumeUp", "MicrophoneVolumeMute", "SpeechCorrectionList", "SpeechInputToggle", "AppSwitch", "Call", "CameraFocus", "EndCall", "GoBack", "GoHome", "HeadsetHook", "LastNumberRedial", "Notification", "MannerMode", "VoiceDial", "TV3DMode", "TVAntennaCable", "TVAudioDescription", "TVAudioDescriptionMixDown", "TVAudioDescriptionMixUp", "TVContentsMenu", "TVDataService", "TVInputComponent1", "TVInputComponent2", "TVInputComposite1", "TVInputComposite2", "TVInputHDMI1", "TVInputHDMI2", "TVInputHDMI3", "TVInputHDMI4", "TVInputVGA1", "TVMediaContext", "TVNetwork", "TVNumberEntry", "TVRadioService", "TVSatellite", "TVSatelliteBS", "TVSatelliteCS", "TVSatelliteToggle", "TVTerrestrialAnalog", "TVTerrestrialDigital", "TVTimer", "Key11", "Key12", "GameButton1", "GameButton2", "GameButton3", "GameButton4", "GameButton5", "GameButton6", "GameButton7", "GameButton8", "GameButton9", "GameButton10", "GameButton11", "GameButton12", "GameButton13", "GameButton14", "GameButton15", "GameButton16", "GameButtonA", "GameButtonB", "GameButtonC", "GameButtonLeft1", "GameButtonLeft2", "GameButtonMode", "GameButtonRight1", "GameButtonRight2", "GameButtonSelect", "GameButtonStart", "GameButtonThumbLeft", "GameButtonThumbRight", "GameButtonX", "GameButtonY", "GameButtonZ", "Suspend", "Resume", "Sleep", "IntlBackslash", "IntlRo", "IntlYen", "Lang1", "Lang2", "Lang3", "Lang4", "Lang5", "Abort"]), type$.JSArray_legacy_String); C.Map_mC8xL = new H.ConstantStringMap(413, {None: 0, Unidentified: 1, Backspace: 8, Tab: 9, Enter: 13, Escape: 27, Space: 32, Exclamation: 33, Quote: 34, NumberSign: 35, Dollar: 36, Ampersand: 38, QuoteSingle: 39, ParenthesisLeft: 40, ParenthesisRight: 41, Asterisk: 42, Add: 43, Comma: 44, Minus: 45, Period: 46, Slash: 47, Digit0: 48, Digit1: 49, Digit2: 50, Digit3: 51, Digit4: 52, Digit5: 53, Digit6: 54, Digit7: 55, Digit8: 56, Digit9: 57, Colon: 58, Semicolon: 59, Less: 60, Equal: 61, Greater: 62, Question: 63, At: 64, BracketLeft: 91, Backslash: 92, BracketRight: 93, Caret: 94, Underscore: 95, Backquote: 96, KeyA: 97, KeyB: 98, KeyC: 99, KeyD: 100, KeyE: 101, KeyF: 102, KeyG: 103, KeyH: 104, KeyI: 105, KeyJ: 106, KeyK: 107, KeyL: 108, KeyM: 109, KeyN: 110, KeyO: 111, KeyP: 112, KeyQ: 113, KeyR: 114, KeyS: 115, KeyT: 116, KeyU: 117, KeyV: 118, KeyW: 119, KeyX: 120, KeyY: 121, KeyZ: 122, BraceLeft: 123, Bar: 124, BraceRight: 125, Tilde: 126, Delete: 127, Accel: 257, AltGraph: 259, CapsLock: 260, Fn: 262, FnLock: 263, Hyper: 264, NumLock: 266, ScrollLock: 268, Super: 270, Symbol: 271, SymbolLock: 272, ShiftLevel5: 273, AltGraphLatch: 274, ArrowDown: 769, ArrowLeft: 770, ArrowRight: 771, ArrowUp: 772, End: 773, Home: 774, PageDown: 775, PageUp: 776, Clear: 1025, Copy: 1026, CrSel: 1027, Cut: 1028, EraseEof: 1029, ExSel: 1030, Insert: 1031, Paste: 1032, Redo: 1033, Undo: 1034, Accept: 1281, Again: 1282, Attn: 1283, Cancel: 1284, ContextMenu: 1285, Execute: 1286, Find: 1287, Help: 1288, Pause: 1289, Play: 1290, Props: 1291, Select: 1292, ZoomIn: 1293, ZoomOut: 1294, BrightnessDown: 1537, BrightnessUp: 1538, Camera: 1539, Eject: 1540, LogOff: 1541, Power: 1542, PowerOff: 1543, PrintScreen: 1544, Hibernate: 1545, Standby: 1546, WakeUp: 1547, AllCandidates: 1793, Alphanumeric: 1794, CodeInput: 1795, Compose: 1796, Convert: 1797, FinalMode: 1798, GroupFirst: 1799, GroupLast: 1800, GroupNext: 1801, GroupPrevious: 1802, ModeChange: 1803, NextCandidate: 1804, NonConvert: 1805, PreviousCandidate: 1806, Process: 1807, SingleCandidate: 1808, HangulMode: 1809, HanjaMode: 1810, JunjaMode: 1811, Eisu: 1812, Hankaku: 1813, Hiragana: 1814, HiraganaKatakana: 1815, KanaMode: 1816, KanjiMode: 1817, Katakana: 1818, Romaji: 1819, Zenkaku: 1820, ZenkakuHankaku: 1821, F1: 2049, F2: 2050, F3: 2051, F4: 2052, F5: 2053, F6: 2054, F7: 2055, F8: 2056, F9: 2057, F10: 2058, F11: 2059, F12: 2060, F13: 2061, F14: 2062, F15: 2063, F16: 2064, F17: 2065, F18: 2066, F19: 2067, F20: 2068, F21: 2069, F22: 2070, F23: 2071, F24: 2072, Soft1: 2305, Soft2: 2306, Soft3: 2307, Soft4: 2308, Soft5: 2309, Soft6: 2310, Soft7: 2311, Soft8: 2312, Close: 2561, MailForward: 2562, MailReply: 2563, MailSend: 2564, MediaPlayPause: 2565, MediaStop: 2567, MediaTrackNext: 2568, MediaTrackPrevious: 2569, New: 2570, Open: 2571, Print: 2572, Save: 2573, SpellCheck: 2574, AudioVolumeDown: 2575, AudioVolumeUp: 2576, AudioVolumeMute: 2577, LaunchApplication2: 2817, LaunchCalendar: 2818, LaunchMail: 2819, LaunchMediaPlayer: 2820, LaunchMusicPlayer: 2821, LaunchApplication1: 2822, LaunchScreenSaver: 2823, LaunchSpreadsheet: 2824, LaunchWebBrowser: 2825, LaunchWebCam: 2826, LaunchWordProcessor: 2827, LaunchContacts: 2828, LaunchPhone: 2829, LaunchAssistant: 2830, LaunchControlPanel: 2831, BrowserBack: 3073, BrowserFavorites: 3074, BrowserForward: 3075, BrowserHome: 3076, BrowserRefresh: 3077, BrowserSearch: 3078, BrowserStop: 3079, AudioBalanceLeft: 3329, AudioBalanceRight: 3330, AudioBassBoostDown: 3331, AudioBassBoostUp: 3332, AudioFaderFront: 3333, AudioFaderRear: 3334, AudioSurroundModeNext: 3335, AVRInput: 3336, AVRPower: 3337, ChannelDown: 3338, ChannelUp: 3339, ColorF0Red: 3340, ColorF1Green: 3341, ColorF2Yellow: 3342, ColorF3Blue: 3343, ColorF4Grey: 3344, ColorF5Brown: 3345, ClosedCaptionToggle: 3346, Dimmer: 3347, DisplaySwap: 3348, Exit: 3349, FavoriteClear0: 3350, FavoriteClear1: 3351, FavoriteClear2: 3352, FavoriteClear3: 3353, FavoriteRecall0: 3354, FavoriteRecall1: 3355, FavoriteRecall2: 3356, FavoriteRecall3: 3357, FavoriteStore0: 3358, FavoriteStore1: 3359, FavoriteStore2: 3360, FavoriteStore3: 3361, Guide: 3362, GuideNextDay: 3363, GuidePreviousDay: 3364, Info: 3365, InstantReplay: 3366, Link: 3367, ListProgram: 3368, LiveContent: 3369, Lock: 3370, MediaApps: 3371, MediaFastForward: 3372, MediaLast: 3373, MediaPause: 3374, MediaPlay: 3375, MediaRecord: 3376, MediaRewind: 3377, MediaSkip: 3378, NextFavoriteChannel: 3379, NextUserProfile: 3380, OnDemand: 3381, PinPDown: 3382, PinPMove: 3383, PinPToggle: 3384, PinPUp: 3385, PlaySpeedDown: 3386, PlaySpeedReset: 3387, PlaySpeedUp: 3388, RandomToggle: 3389, RcLowBattery: 3390, RecordSpeedNext: 3391, RfBypass: 3392, ScanChannelsToggle: 3393, ScreenModeNext: 3394, Settings: 3395, SplitScreenToggle: 3396, STBInput: 3397, STBPower: 3398, Subtitle: 3399, Teletext: 3400, TV: 3401, TVInput: 3402, TVPower: 3403, VideoModeNext: 3404, Wink: 3405, ZoomToggle: 3406, DVR: 3407, MediaAudioTrack: 3408, MediaSkipBackward: 3409, MediaSkipForward: 3410, MediaStepBackward: 3411, MediaStepForward: 3412, MediaTopMenu: 3413, NavigateIn: 3414, NavigateNext: 3415, NavigateOut: 3416, NavigatePrevious: 3417, Pairing: 3418, MediaClose: 3419, AudioBassBoostToggle: 3586, AudioTrebleDown: 3588, AudioTrebleUp: 3589, MicrophoneToggle: 3590, MicrophoneVolumeDown: 3591, MicrophoneVolumeUp: 3592, MicrophoneVolumeMute: 3593, SpeechCorrectionList: 3841, SpeechInputToggle: 3842, AppSwitch: 4097, Call: 4098, CameraFocus: 4099, EndCall: 4100, GoBack: 4101, GoHome: 4102, HeadsetHook: 4103, LastNumberRedial: 4104, Notification: 4105, MannerMode: 4106, VoiceDial: 4107, TV3DMode: 4353, TVAntennaCable: 4354, TVAudioDescription: 4355, TVAudioDescriptionMixDown: 4356, TVAudioDescriptionMixUp: 4357, TVContentsMenu: 4358, TVDataService: 4359, TVInputComponent1: 4360, TVInputComponent2: 4361, TVInputComposite1: 4362, TVInputComposite2: 4363, TVInputHDMI1: 4364, TVInputHDMI2: 4365, TVInputHDMI3: 4366, TVInputHDMI4: 4367, TVInputVGA1: 4368, TVMediaContext: 4369, TVNetwork: 4370, TVNumberEntry: 4371, TVRadioService: 4372, TVSatellite: 4373, TVSatelliteBS: 4374, TVSatelliteCS: 4375, TVSatelliteToggle: 4376, TVTerrestrialAnalog: 4377, TVTerrestrialDigital: 4378, TVTimer: 4379, Key11: 4609, Key12: 4610, GameButton1: 392961, GameButton2: 392962, GameButton3: 392963, GameButton4: 392964, GameButton5: 392965, GameButton6: 392966, GameButton7: 392967, GameButton8: 392968, GameButton9: 392969, GameButton10: 392970, GameButton11: 392971, GameButton12: 392972, GameButton13: 392973, GameButton14: 392974, GameButton15: 392975, GameButton16: 392976, GameButtonA: 392977, GameButtonB: 392978, GameButtonC: 392979, GameButtonLeft1: 392980, GameButtonLeft2: 392981, GameButtonMode: 392982, GameButtonRight1: 392983, GameButtonRight2: 392984, GameButtonSelect: 392985, GameButtonStart: 392986, GameButtonThumbLeft: 392987, GameButtonThumbRight: 392988, GameButtonX: 392989, GameButtonY: 392990, GameButtonZ: 392991, Suspend: 4294967316, Resume: 4294967317, Sleep: 4295032962, IntlBackslash: 4295426148, IntlRo: 4295426183, IntlYen: 4295426185, Lang1: 4295426192, Lang2: 4295426193, Lang3: 4295426194, Lang4: 4295426195, Lang5: 4295426196, Abort: 4295426203}, C.List_mC80, type$.ConstantStringMap_of_legacy_String_and_legacy_int); C.List_oWp = H.setRuntimeTypeInfo(makeConstList(["NumpadDivide", "NumpadMultiply", "NumpadSubtract", "NumpadAdd", "Numpad1", "Numpad2", "Numpad3", "Numpad4", "Numpad5", "Numpad6", "Numpad7", "Numpad8", "Numpad9", "Numpad0", "NumpadDecimal", "NumpadEqual", "NumpadComma", "NumpadParenLeft", "NumpadParenRight"]), type$.JSArray_legacy_String); C.Map_oWkr3 = new H.ConstantStringMap(19, {NumpadDivide: C.LogicalKeyboardKey_4295426132, NumpadMultiply: C.LogicalKeyboardKey_4295426133, NumpadSubtract: C.LogicalKeyboardKey_4295426134, NumpadAdd: C.LogicalKeyboardKey_4295426135, Numpad1: C.LogicalKeyboardKey_4295426137, Numpad2: C.LogicalKeyboardKey_4295426138, Numpad3: C.LogicalKeyboardKey_4295426139, Numpad4: C.LogicalKeyboardKey_4295426140, Numpad5: C.LogicalKeyboardKey_4295426141, Numpad6: C.LogicalKeyboardKey_4295426142, Numpad7: C.LogicalKeyboardKey_4295426143, Numpad8: C.LogicalKeyboardKey_4295426144, Numpad9: C.LogicalKeyboardKey_4295426145, Numpad0: C.LogicalKeyboardKey_4295426146, NumpadDecimal: C.LogicalKeyboardKey_4295426147, NumpadEqual: C.LogicalKeyboardKey_4295426151, NumpadComma: C.LogicalKeyboardKey_4295426181, NumpadParenLeft: C.LogicalKeyboardKey_4295426230, NumpadParenRight: C.LogicalKeyboardKey_4295426231}, C.List_oWp, type$.ConstantStringMap_of_legacy_String_and_legacy_LogicalKeyboardKey); C.List_qBb = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3", "4"]), type$.JSArray_legacy_String); C.Map_qBa3g = new H.ConstantStringMap(4, {"1": "draft", "2": "sent", "3": "partial", "4": "applied"}, C.List_qBb, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_s8I0 = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "18", "17"]), type$.JSArray_legacy_String); C.Map_s86xu = new H.ConstantStringMap(18, {"1": "credit_card", "2": "bank_transfer", "3": "paypal", "4": "crypto", "5": "custom", "6": "alipay", "7": "sofort", "8": "apple_pay", "9": "sepa", "10": "credit", "11": "kbc", "12": "bancontact", "13": "ideal", "14": "hosted", "15": "giropay", "16": "przelewy24", "18": "fpx", "17": "eps"}, C.List_s8I0, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_so4CA = new H.ConstantStringMap(7, {sidebar_active_background_color: "#444444", sidebar_active_font_color: "#FFFFFF", sidebar_inactive_background_color: "#2F2F2F", sidebar_inactive_font_color: "#FFFFFF", invoice_header_background_color: "#777777", invoice_header_font_color: "#FFFFFF", table_alternate_row_background_color: "#F9F9F9"}, C.List_soA, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.List_tO30 = H.setRuntimeTypeInfo(makeConstList(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]), type$.JSArray_legacy_String); C.Map_tOd65 = new H.ConstantStringMap(12, {"1": "january", "2": "february", "3": "march", "4": "april", "5": "may", "6": "june", "7": "july", "8": "august", "9": "september", "10": "october", "11": "november", "12": "december"}, C.List_tO30, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_tOn4d = new H.ConstantStringMap(12, {"1": "freq_daily", "2": "freq_weekly", "3": "freq_two_weeks", "4": "freq_four_weeks", "5": "freq_monthly", "6": "freq_two_months", "7": "freq_three_months", "8": "freq_four_months", "9": "freq_six_months", "10": "freq_annually", "11": "freq_two_years", "12": "freq_three_years"}, C.List_tO30, type$.ConstantStringMap_of_legacy_String_and_legacy_String); C.Map_yXAeS = new H.GeneralConstantMap([0, "FontWeight.w100", 1, "FontWeight.w200", 2, "FontWeight.w300", 3, "FontWeight.w400", 4, "FontWeight.w500", 5, "FontWeight.w600", 6, "FontWeight.w700", 7, "FontWeight.w800", 8, "FontWeight.w900"], type$.GeneralConstantMap_of_legacy_int_and_legacy_String); C.Map_yXX0S = new H.GeneralConstantMap([4096, "invoices", 1, "recurring_invoices", 4, "quotes", 2, "credits", 32, "projects", 8, "tasks", 64, "vendors", 16, "expenses", 512, "recurring_expenses"], type$.GeneralConstantMap_of_legacy_int_and_legacy_String); C.MarginSpec_null_null_null_50 = new M.MarginSpec(null, null, null, 50); C.Color_4294937216 = new P.Color(4294937216); C.Color_4294922834 = new P.Color(4294922834); C.Color_4294907716 = new P.Color(4294907716); C.Color_4292149248 = new P.Color(4292149248); C.Map_iTECn = new H.GeneralConstantMap([100, C.Color_4294937216, 200, C.Color_4294922834, 400, C.Color_4294907716, 700, C.Color_4292149248], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialAccentColor_Map_iTECn_4294922834 = new E.MaterialAccentColor(C.Map_iTECn, 4294922834); C.Color_4294955392 = new P.Color(4294955392); C.Color_4294945600 = new P.Color(4294945600); C.Color_4294938880 = new P.Color(4294938880); C.Color_4294929664 = new P.Color(4294929664); C.Map_iTsEs = new H.GeneralConstantMap([100, C.Color_4294955392, 200, C.Color_4294945600, 400, C.Color_4294938880, 700, C.Color_4294929664], type$.GeneralConstantMap_of_legacy_int_and_legacy_Color); C.MaterialAccentColor_Map_iTsEs_4294945600 = new E.MaterialAccentColor(C.Map_iTsEs, 4294945600); C.MaterialBannerThemeData_null_null_null_null = new Q.MaterialBannerThemeData(null, null, null, null); C.MaterialColor_Map_HFpTk_4288585374 = new E.MaterialColor(C.Map_HFpTk, 4288585374); C.MaterialState_0 = new V.MaterialState("MaterialState.hovered"); C.MaterialState_1 = new V.MaterialState("MaterialState.focused"); C.MaterialState_2 = new V.MaterialState("MaterialState.pressed"); C.MaterialState_3 = new V.MaterialState("MaterialState.dragged"); C.MaterialState_4 = new V.MaterialState("MaterialState.selected"); C.MaterialState_5 = new V.MaterialState("MaterialState.disabled"); C.MaterialState_6 = new V.MaterialState("MaterialState.error"); C.MaterialTapTargetSize_0 = new X.MaterialTapTargetSize("MaterialTapTargetSize.padded"); C.MaterialTapTargetSize_1 = new X.MaterialTapTargetSize("MaterialTapTargetSize.shrinkWrap"); C.MaterialType_0 = new M.MaterialType("MaterialType.canvas"); C.MaterialType_1 = new M.MaterialType("MaterialType.card"); C.MaterialType_2 = new M.MaterialType("MaterialType.circle"); C.MaterialType_3 = new M.MaterialType("MaterialType.button"); C.MaterialType_4 = new M.MaterialType("MaterialType.transparency"); C.MaxLengthEnforcement_0 = new B.MaxLengthEnforcement("MaxLengthEnforcement.none"); C.MaxLengthEnforcement_1 = new B.MaxLengthEnforcement("MaxLengthEnforcement.enforced"); C.MaxLengthEnforcement_2 = new B.MaxLengthEnforcement("MaxLengthEnforcement.truncateAfterCompositionEnds"); C.MaxWidthStrategy_1 = new Q.MaxWidthStrategy(); C.MethodCall_popRoute_null = new H.MethodCall0("popRoute", null); C.MethodChannel_EKW = new A.MethodChannel("io.scer.native_pdf_renderer", C.C_StandardMethodCodec, null); C.MethodChannel_EYo = new A.MethodChannel("plugins.flutter.io/url_launcher", C.C_StandardMethodCodec, null); C.MethodChannel_KDg = new A.MethodChannel("flutter.baseflow.com/permissions/methods", C.C_StandardMethodCodec, null); C.MethodChannel_Kf8 = new A.MethodChannel("plugins.flutter.io/google_sign_in", C.C_StandardMethodCodec, null); C.MethodChannel_NIe = new A.MethodChannel("flutter/service_worker", C.C_StandardMethodCodec, null); C.MethodChannel_YQ9 = new A.MethodChannel("plugins.flutter.io/shared_preferences", C.C_StandardMethodCodec, null); C.MethodChannel_jZA = new A.MethodChannel("plugins.flutter.io/local_auth", C.C_StandardMethodCodec, null); C.MethodChannel_qdG = new A.MethodChannel("flutter/platform_views", C.C_StandardMethodCodec, null); C.ModuleLayout_list = new X.ModuleLayout("list"); C.ModuleLayout_table = new X.ModuleLayout("table"); C.MutatorType_0 = new H.MutatorType("MutatorType.clipRect"); C.MutatorType_1 = new H.MutatorType("MutatorType.clipRRect"); C.MutatorType_2 = new H.MutatorType("MutatorType.clipPath"); C.MutatorType_3 = new H.MutatorType("MutatorType.transform"); C.MutatorType_4 = new H.MutatorType("MutatorType.opacity"); C.NavigationMode_0 = new F.NavigationMode("NavigationMode.traditional"); C.NavigationMode_1 = new F.NavigationMode("NavigationMode.directional"); C.NavigationRailThemeData_U06 = new E.NavigationRailThemeData(null, null, null, null, null, null, null, null); C.OffsetPair_G6F = new S.OffsetPair(C.Offset_0_0, C.Offset_0_0); C.Offset_11_m4 = new P.Offset(11, -4); C.Offset_20_20 = new P.Offset(20, 20); C.Offset_22_0 = new P.Offset(22, 0); C.Offset_40_40 = new P.Offset(40, 40); C.Offset_6_6 = new P.Offset(6, 6); C.Offset_6pl = new P.Offset(5, 10.5); C.Offset_9_9 = new P.Offset(9, 9); C.Offset_Gl7 = new P.Offset(14.4, 9); C.Offset_MNd = new P.Offset(0, -0.25); C.Offset_Oho = new P.Offset(-0.3333333333333333, 0); C.Offset_W7v = new P.Offset(2.6999999999999997, 8.1); C.Offset_aNU = new P.Offset(3.6, 9); C.Offset_chs = new P.Offset(0, 0.25); C.Offset_gPO = new P.Offset(7.2, 12.6); C.Offset_oIk = new P.Offset(15.299999999999999, 4.5); C.OperatingSystem_0 = new H.OperatingSystem("OperatingSystem.iOs"); C.OperatingSystem_1 = new H.OperatingSystem("OperatingSystem.android"); C.OperatingSystem_2 = new H.OperatingSystem("OperatingSystem.linux"); C.OperatingSystem_3 = new H.OperatingSystem("OperatingSystem.windows"); C.OperatingSystem_4 = new H.OperatingSystem("OperatingSystem.macOs"); C.OperatingSystem_5 = new H.OperatingSystem("OperatingSystem.unknown"); C.OptionalMethodChannel_0 = new A.OptionalMethodChannel("flutter/platform", C.C_JSONMethodCodec0, null); C.OptionalMethodChannel_4Up = new A.OptionalMethodChannel("flutter/mousecursor", C.C_StandardMethodCodec, null); C.OptionalMethodChannel_L9J = new A.OptionalMethodChannel("flutter/textinput", C.C_JSONMethodCodec0, null); C.OptionalMethodChannel_qNA = new A.OptionalMethodChannel("flutter/navigation", C.C_JSONMethodCodec0, null); C.OptionalMethodChannel_wEo = new A.OptionalMethodChannel("flutter/restoration", C.C_StandardMethodCodec, null); C.OrdinalSortKey_0_null = new A.OrdinalSortKey(0, null); C.OrdinalSortKey_1_null = new A.OrdinalSortKey(1, null); C.Orientation_0 = new F.Orientation("Orientation.portrait"); C.Orientation_1 = new F.Orientation("Orientation.landscape"); C.BorderSide_95g = new Y.BorderSide(C.Color_0, 1, C.BorderStyle_1); C.OutlineInputBorder_ipC = new F.OutlineInputBorder(4, C.BorderRadius_tLn0, C.BorderSide_95g); C.OutlinedButtonThemeData_null = new U.OutlinedButtonThemeData(null); C.OutsideJustification_0 = new O.OutsideJustification("OutsideJustification.startDrawArea"); C.OutsideJustification_1 = new O.OutsideJustification("OutsideJustification.start"); C.OutsideJustification_2 = new O.OutsideJustification("OutsideJustification.middleDrawArea"); C.OutsideJustification_3 = new O.OutsideJustification("OutsideJustification.middle"); C.OutsideJustification_4 = new O.OutsideJustification("OutsideJustification.endDrawArea"); C.OutsideJustification_5 = new O.OutsideJustification("OutsideJustification.end"); C.OverflowBarAlignment_0 = new E.OverflowBarAlignment("OverflowBarAlignment.start"); C.OverflowBarAlignment_1 = new E.OverflowBarAlignment("OverflowBarAlignment.end"); C.OverflowBarAlignment_2 = new E.OverflowBarAlignment("OverflowBarAlignment.center"); C.OverflowViewLayoutBehavior_0 = new K.OverflowViewLayoutBehavior("OverflowViewLayoutBehavior.fixed"); C.OverflowViewLayoutBehavior_1 = new K.OverflowViewLayoutBehavior("OverflowViewLayoutBehavior.flexible"); C.Overflow_1 = new K.Overflow("Overflow.clip"); C.EdgeInsets_18_18_18_18 = new V.EdgeInsets(18, 18, 18, 18); C.Padding_ES6 = new T.Padding(C.EdgeInsets_18_18_18_18, C.Divider_null_null_null_null, null); C.EdgeInsets_0_24_0_24 = new V.EdgeInsets(0, 24, 0, 24); C.Padding_pwt = new T.Padding(C.EdgeInsets_0_24_0_24, C.Center_mtF, null); C.PageScrollPhysics_null = new D.PageScrollPhysics(null); C.C_CupertinoPageTransitionsBuilder = new K.CupertinoPageTransitionsBuilder(); C.Map_23gMT = new H.GeneralConstantMap([C.TargetPlatform_0, C.C_FadeUpwardsPageTransitionsBuilder, C.TargetPlatform_2, C.C_CupertinoPageTransitionsBuilder, C.TargetPlatform_3, C.C_FadeUpwardsPageTransitionsBuilder, C.TargetPlatform_4, C.C_CupertinoPageTransitionsBuilder, C.TargetPlatform_5, C.C_FadeUpwardsPageTransitionsBuilder], H.findType("GeneralConstantMap")); C.PageTransitionsTheme_Map_23gMT = new K.PageTransitionsTheme(C.Map_23gMT); C.PaintingStyle_0 = new P.PaintingStyle(0, "PaintingStyle.fill"); C.PaintingStyle_1 = new P.PaintingStyle(1, "PaintingStyle.stroke"); C.ParagraphConstraints_60 = new P.ParagraphConstraints(60); C.ParagraphConstraints_C5f = new P.ParagraphConstraints(1 / 0); C.PathFillType_0 = new P.PathFillType(0, "PathFillType.nonZero"); C.PathFillType_1 = new P.PathFillType(1, "PathFillType.evenOdd"); C.PdfPageFormat_0 = new V.PdfPageFormat(0); C.PdfPageFormat_1 = new V.PdfPageFormat(1); C.PermissionStatus_0 = new M.PermissionStatus0("PermissionStatus.denied"); C.PermissionStatus_1 = new M.PermissionStatus0("PermissionStatus.granted"); C.PermissionStatus_2 = new M.PermissionStatus0("PermissionStatus.restricted"); C.PermissionStatus_3 = new M.PermissionStatus0("PermissionStatus.limited"); C.PermissionStatus_4 = new M.PermissionStatus0("PermissionStatus.permanentlyDenied"); C.Permission_1 = new M.Permission(1); C.PersistedSurfaceState_0 = new H.PersistedSurfaceState("PersistedSurfaceState.created"); C.PersistedSurfaceState_1 = new H.PersistedSurfaceState("PersistedSurfaceState.active"); C.PersistedSurfaceState_2 = new H.PersistedSurfaceState("PersistedSurfaceState.pendingRetention"); C.PersistedSurfaceState_3 = new H.PersistedSurfaceState("PersistedSurfaceState.pendingUpdate"); C.PersistedSurfaceState_4 = new H.PersistedSurfaceState("PersistedSurfaceState.released"); C.FileStorage_auth_state = new S.FileStorage("auth_state"); C.PersistenceRepository_FileStorage_auth_state = new X.PersistenceRepository(C.FileStorage_auth_state); C.FileStorage_static_state = new S.FileStorage("static_state"); C.PersistenceRepository_FileStorage_static_state = new X.PersistenceRepository(C.FileStorage_static_state); C.FileStorage_ui_state = new S.FileStorage("ui_state"); C.PersistenceRepository_FileStorage_ui_state = new X.PersistenceRepository(C.FileStorage_ui_state); C.PersistentHeaderShowOnScreenConfiguration_QA5 = new U.PersistentHeaderShowOnScreenConfiguration(1 / 0); C.PhotoViewComputedScale_contained_1 = new M.PhotoViewComputedScale("contained", 1); C.PhotoViewComputedScale_covered_1 = new M.PhotoViewComputedScale("covered", 1); C.PhotoViewScaleState_0 = new G.PhotoViewScaleState("PhotoViewScaleState.initial"); C.PhotoViewScaleState_1 = new G.PhotoViewScaleState("PhotoViewScaleState.covering"); C.PhotoViewScaleState_2 = new G.PhotoViewScaleState("PhotoViewScaleState.originalSize"); C.PhotoViewScaleState_3 = new G.PhotoViewScaleState("PhotoViewScaleState.zoomedIn"); C.PhotoViewScaleState_4 = new G.PhotoViewScaleState("PhotoViewScaleState.zoomedOut"); C.PlaceholderAlignment_0 = new P.PlaceholderAlignment("PlaceholderAlignment.baseline"); C.PlaceholderAlignment_1 = new P.PlaceholderAlignment("PlaceholderAlignment.aboveBaseline"); C.PlaceholderAlignment_2 = new P.PlaceholderAlignment("PlaceholderAlignment.belowBaseline"); C.PlaceholderAlignment_3 = new P.PlaceholderAlignment("PlaceholderAlignment.top"); C.PlaceholderAlignment_4 = new P.PlaceholderAlignment("PlaceholderAlignment.bottom"); C.PlaceholderAlignment_5 = new P.PlaceholderAlignment("PlaceholderAlignment.middle"); C.PlaceholderDimensions_Size_0_0_null = new U.PlaceholderDimensions(C.Size_0_0, null); C.PlatformViewHitTestBehavior_0 = new G.PlatformViewHitTestBehavior("PlatformViewHitTestBehavior.opaque"); C.PlatformViewHitTestBehavior_2 = new G.PlatformViewHitTestBehavior("PlatformViewHitTestBehavior.transparent"); C.PluralCase_0 = new E.PluralCase("PluralCase.ZERO"); C.PluralCase_1 = new E.PluralCase("PluralCase.ONE"); C.PluralCase_2 = new E.PluralCase("PluralCase.TWO"); C.PluralCase_3 = new E.PluralCase("PluralCase.FEW"); C.PluralCase_4 = new E.PluralCase("PluralCase.MANY"); C.PluralCase_5 = new E.PluralCase("PluralCase.OTHER"); C.PointerChange_0 = new P.PointerChange("PointerChange.cancel"); C.PointerChange_1 = new P.PointerChange("PointerChange.add"); C.PointerChange_2 = new P.PointerChange("PointerChange.remove"); C.PointerChange_3 = new P.PointerChange("PointerChange.hover"); C.PointerChange_4 = new P.PointerChange("PointerChange.down"); C.PointerChange_5 = new P.PointerChange("PointerChange.move"); C.PointerChange_6 = new P.PointerChange("PointerChange.up"); C.PointerDeviceKind_0 = new P.PointerDeviceKind("PointerDeviceKind.touch"); C.PointerDeviceKind_1 = new P.PointerDeviceKind("PointerDeviceKind.mouse"); C.PointerDeviceKind_2 = new P.PointerDeviceKind("PointerDeviceKind.stylus"); C.PointerDeviceKind_3 = new P.PointerDeviceKind("PointerDeviceKind.invertedStylus"); C.PointerDeviceKind_4 = new P.PointerDeviceKind("PointerDeviceKind.unknown"); C.PointerSignalKind_0 = new P.PointerSignalKind("PointerSignalKind.none"); C.PointerSignalKind_1 = new P.PointerSignalKind("PointerSignalKind.scroll"); C.PointerSignalKind_2 = new P.PointerSignalKind("PointerSignalKind.unknown"); C.PopupMenuThemeData_XJe = new R.PopupMenuThemeData(null, null, null, null, null); C.Priority_100000 = new V.Priority(100000); C.QrCodeElement_0 = new G.QrCodeElement("QrCodeElement.finderPatternOuter"); C.QrCodeElement_1 = new G.QrCodeElement("QrCodeElement.finderPatternInner"); C.QrCodeElement_2 = new G.QrCodeElement("QrCodeElement.finderPatternDot"); C.QrCodeElement_3 = new G.QrCodeElement("QrCodeElement.codePixel"); C.QrCodeElement_4 = new G.QrCodeElement("QrCodeElement.codePixelEmpty"); C.QrValidationStatus_0 = new S.QrValidationStatus("QrValidationStatus.valid"); C.QrValidationStatus_1 = new S.QrValidationStatus("QrValidationStatus.contentTooLong"); C.QrValidationStatus_2 = new S.QrValidationStatus("QrValidationStatus.error"); C.RRect_GZS = new P.RRect(20, 20, 60, 60, 10, 10, 10, 10, 10, 10, 10, 10, true); C.RadioThemeData_gDe = new T.RadioThemeData(null, null, null, null, null, null); C.Radius_1_1 = new P.Radius(1, 1); C.Radius_2Vk = new P.Radius(15.5, 15.5); C.Radius_2_2 = new P.Radius(2, 2); C.Radius_7_7 = new P.Radius(7, 7); C.Radius_8_8 = new P.Radius(8, 8); C.Radius_ydE = new P.Radius(1.5, 1.5); C.RangeBandType_0 = new B.RangeBandType("RangeBandType.none"); C.RangeBandConfig_RangeBandType_0_0 = new B.RangeBandConfig(C.RangeBandType_0, 0); C.RangeBandType_1 = new B.RangeBandType("RangeBandType.fixedPixel"); C.RangeBandType_2 = new B.RangeBandType("RangeBandType.fixedDomain"); C.RangeBandType_3 = new B.RangeBandType("RangeBandType.fixedPercentOfStep"); C.RangeBandType_4 = new B.RangeBandType("RangeBandType.styleAssignedPercentOfStep"); C.RangeBandType_5 = new B.RangeBandType("RangeBandType.fixedPixelSpaceFromStep"); C.Rect_0_0_0_0 = new P.Rect(0, 0, 0, 0); C.Rect_10_10_320_240 = new P.Rect(10, 10, 320, 240); C.Rect_Vy7 = new P.Rect(-1 / 0, -1 / 0, 1 / 0, 1 / 0); C.Rect_aha = new P.Rect(-1000000000, -1000000000, 1000000000, 1000000000); C.RefreshIndicatorTriggerMode_1 = new N.RefreshIndicatorTriggerMode("RefreshIndicatorTriggerMode.onEdge"); C.RenderAnimatedSizeState_0 = new F.RenderAnimatedSizeState("RenderAnimatedSizeState.start"); C.RenderAnimatedSizeState_1 = new F.RenderAnimatedSizeState("RenderAnimatedSizeState.stable"); C.RenderAnimatedSizeState_2 = new F.RenderAnimatedSizeState("RenderAnimatedSizeState.changed"); C.RenderAnimatedSizeState_3 = new F.RenderAnimatedSizeState("RenderAnimatedSizeState.unstable"); C.RenderComparison_0 = new G.RenderComparison(0, "RenderComparison.identical"); C.RenderComparison_1 = new G.RenderComparison(1, "RenderComparison.metadata"); C.RenderComparison_2 = new G.RenderComparison(2, "RenderComparison.paint"); C.RenderComparison_3 = new G.RenderComparison(3, "RenderComparison.layout"); C.ReportColumnType_0 = new A.ReportColumnType("ReportColumnType.string"); C.ReportColumnType_1 = new A.ReportColumnType("ReportColumnType.dateTime"); C.ReportColumnType_2 = new A.ReportColumnType("ReportColumnType.date"); C.ReportColumnType_3 = new A.ReportColumnType("ReportColumnType.number"); C.ReportColumnType_4 = new A.ReportColumnType("ReportColumnType.bool"); C.ReportColumnType_5 = new A.ReportColumnType("ReportColumnType.age"); C.ReportColumnType_6 = new A.ReportColumnType("ReportColumnType.duration"); C.Role_0 = new H.Role("Role.incrementable"); C.Role_1 = new H.Role("Role.scrollable"); C.Role_2 = new H.Role("Role.labelAndValue"); C.Role_3 = new H.Role("Role.tappable"); C.Role_4 = new H.Role("Role.textField"); C.Role_5 = new H.Role("Role.checkable"); C.Role_6 = new H.Role("Role.image"); C.Role_7 = new H.Role("Role.liveRegion"); C.RoundedRectangleBorder_a511 = new X.RoundedRectangleBorder(C.BorderRadius_tLn, C.BorderSide_m7u); C.Radius_3_3 = new P.Radius(3, 3); C.BorderRadius_tLn2 = new K.BorderRadius(C.Radius_3_3, C.Radius_3_3, C.Radius_0_0, C.Radius_0_0); C.RoundedRectangleBorder_a512 = new X.RoundedRectangleBorder(C.BorderRadius_tLn2, C.BorderSide_m7u); C.BorderRadius_tLn3 = new K.BorderRadius(C.Radius_1_1, C.Radius_1_1, C.Radius_1_1, C.Radius_1_1); C.RoundedRectangleBorder_a513 = new X.RoundedRectangleBorder(C.BorderRadius_tLn3, C.BorderSide_m7u); C.BorderRadius_tLn4 = new K.BorderRadius(C.Radius_2_2, C.Radius_2_2, C.Radius_2_2, C.Radius_2_2); C.RoundedRectangleBorder_a51 = new X.RoundedRectangleBorder(C.BorderRadius_tLn4, C.BorderSide_m7u); C.RoundedRectangleBorder_a510 = new X.RoundedRectangleBorder(C.BorderRadius_tLn0, C.BorderSide_m7u); C.RoutePopDisposition_0 = new K.RoutePopDisposition("RoutePopDisposition.pop"); C.RoutePopDisposition_1 = new K.RoutePopDisposition("RoutePopDisposition.doNotPop"); C.RoutePopDisposition_2 = new K.RoutePopDisposition("RoutePopDisposition.bubble"); C.RouteSettings_null_null = new K.RouteSettings(null, null); C.SawTooth_1333 = new Z.SawTooth(1333); C.SawTooth_2222 = new Z.SawTooth(2222); C.ScaffoldGeometry_null_null = new M.ScaffoldGeometry(null, null); C.SchedulerPhase_0 = new N.SchedulerPhase(0, "SchedulerPhase.idle"); C.SchedulerPhase_1 = new N.SchedulerPhase(1, "SchedulerPhase.transientCallbacks"); C.SchedulerPhase_2 = new N.SchedulerPhase(2, "SchedulerPhase.midFrameMicrotasks"); C.SchedulerPhase_3 = new N.SchedulerPhase(3, "SchedulerPhase.persistentCallbacks"); C.SchedulerPhase_4 = new N.SchedulerPhase(4, "SchedulerPhase.postFrameCallbacks"); C.ScriptCategory_0 = new U.ScriptCategory("ScriptCategory.englishLike"); C.ScriptCategory_1 = new U.ScriptCategory("ScriptCategory.dense"); C.ScriptCategory_2 = new U.ScriptCategory("ScriptCategory.tall"); C.ScrollDirection_0 = new N.ScrollDirection("ScrollDirection.idle"); C.ScrollDirection_1 = new N.ScrollDirection("ScrollDirection.forward"); C.ScrollDirection_2 = new N.ScrollDirection("ScrollDirection.reverse"); C.ScrollIncrementType_0 = new F.ScrollIncrementType("ScrollIncrementType.line"); C.ScrollIntent_R43 = new F.ScrollIntent(C.AxisDirection_2, C.ScrollIncrementType_0); C.ScrollIntent_Uzc = new F.ScrollIntent(C.AxisDirection_0, C.ScrollIncrementType_0); C.ScrollIntent_Uzc0 = new F.ScrollIntent(C.AxisDirection_0, C.ScrollIncrementType_1); C.ScrollIntent_o8I = new F.ScrollIntent(C.AxisDirection_1, C.ScrollIncrementType_0); C.ScrollIntent_vpn = new F.ScrollIntent(C.AxisDirection_3, C.ScrollIncrementType_0); C.ScrollPositionAlignmentPolicy_0 = new A.ScrollPositionAlignmentPolicy("ScrollPositionAlignmentPolicy.explicit"); C.ScrollPositionAlignmentPolicy_1 = new A.ScrollPositionAlignmentPolicy("ScrollPositionAlignmentPolicy.keepVisibleAtEnd"); C.ScrollPositionAlignmentPolicy_2 = new A.ScrollPositionAlignmentPolicy("ScrollPositionAlignmentPolicy.keepVisibleAtStart"); C.ScrollViewKeyboardDismissBehavior_0 = new B.ScrollViewKeyboardDismissBehavior("ScrollViewKeyboardDismissBehavior.manual"); C.ScrollViewKeyboardDismissBehavior_1 = new B.ScrollViewKeyboardDismissBehavior("ScrollViewKeyboardDismissBehavior.onDrag"); C.ScrollbarThemeData_I7P = new X.ScrollbarThemeData(null, null, null, null, null, null, null, null, null, null, null); C.SelectionChangedCause_0 = new N.SelectionChangedCause("SelectionChangedCause.tap"); C.SelectionChangedCause_2 = new N.SelectionChangedCause("SelectionChangedCause.longPress"); C.SelectionChangedCause_3 = new N.SelectionChangedCause("SelectionChangedCause.forcePress"); C.SelectionChangedCause_4 = new N.SelectionChangedCause("SelectionChangedCause.keyboard"); C.SelectionChangedCause_5 = new N.SelectionChangedCause("SelectionChangedCause.toolBar"); C.SelectionChangedCause_6 = new N.SelectionChangedCause("SelectionChangedCause.drag"); C.SelectionMode_0 = new Z.SelectionMode("SelectionMode.expandToDomain"); C.SelectionMode_1 = new Z.SelectionMode("SelectionMode.selectOverlapping"); C.SelectionMode_2 = new Z.SelectionMode("SelectionMode.single"); C.SelectionModelType_0 = new D.SelectionModelType(); C.SelectionTrigger_0 = new S.SelectionTrigger("SelectionTrigger.hover"); C.SelectionTrigger_1 = new S.SelectionTrigger("SelectionTrigger.tap"); C.SelectionTrigger_2 = new S.SelectionTrigger("SelectionTrigger.tapAndDrag"); C.SelectionTrigger_3 = new S.SelectionTrigger("SelectionTrigger.pressHold"); C.SelectionTrigger_4 = new S.SelectionTrigger("SelectionTrigger.longPressHold"); C.SemanticsAction_1 = new P.SemanticsAction(1); C.SemanticsAction_1024 = new P.SemanticsAction(1024); C.SemanticsAction_1048576 = new P.SemanticsAction(1048576); C.SemanticsAction_128 = new P.SemanticsAction(128); C.SemanticsAction_131072 = new P.SemanticsAction(131072); C.SemanticsAction_16 = new P.SemanticsAction(16); C.SemanticsAction_16384 = new P.SemanticsAction(16384); C.SemanticsAction_2 = new P.SemanticsAction(2); C.SemanticsAction_2048 = new P.SemanticsAction(2048); C.SemanticsAction_2097152 = new P.SemanticsAction(2097152); C.SemanticsAction_256 = new P.SemanticsAction(256); C.SemanticsAction_262144 = new P.SemanticsAction(262144); C.SemanticsAction_32 = new P.SemanticsAction(32); C.SemanticsAction_32768 = new P.SemanticsAction(32768); C.SemanticsAction_4 = new P.SemanticsAction(4); C.SemanticsAction_4096 = new P.SemanticsAction(4096); C.SemanticsAction_512 = new P.SemanticsAction(512); C.SemanticsAction_524288 = new P.SemanticsAction(524288); C.SemanticsAction_64 = new P.SemanticsAction(64); C.SemanticsAction_8 = new P.SemanticsAction(8); C.SemanticsAction_8192 = new P.SemanticsAction(8192); C.SemanticsFlag_1 = new P.SemanticsFlag(1); C.SemanticsFlag_1024 = new P.SemanticsFlag(1024); C.SemanticsFlag_1048576 = new P.SemanticsFlag(1048576); C.SemanticsFlag_128 = new P.SemanticsFlag(128); C.SemanticsFlag_131072 = new P.SemanticsFlag(131072); C.SemanticsFlag_16 = new P.SemanticsFlag(16); C.SemanticsFlag_16384 = new P.SemanticsFlag(16384); C.SemanticsFlag_2 = new P.SemanticsFlag(2); C.SemanticsFlag_2048 = new P.SemanticsFlag(2048); C.SemanticsFlag_2097152 = new P.SemanticsFlag(2097152); C.SemanticsFlag_256 = new P.SemanticsFlag(256); C.SemanticsFlag_262144 = new P.SemanticsFlag(262144); C.SemanticsFlag_32 = new P.SemanticsFlag(32); C.SemanticsFlag_32768 = new P.SemanticsFlag(32768); C.SemanticsFlag_4 = new P.SemanticsFlag(4); C.SemanticsFlag_4096 = new P.SemanticsFlag(4096); C.SemanticsFlag_4194304 = new P.SemanticsFlag(4194304); C.SemanticsFlag_512 = new P.SemanticsFlag(512); C.SemanticsFlag_524288 = new P.SemanticsFlag(524288); C.SemanticsFlag_64 = new P.SemanticsFlag(64); C.SemanticsFlag_65536 = new P.SemanticsFlag(65536); C.SemanticsFlag_8 = new P.SemanticsFlag(8); C.SemanticsFlag_8192 = new P.SemanticsFlag(8192); C.SemanticsTag_FIw = new A.SemanticsTag("RenderViewport.twoPane"); C.SemanticsTag_bQQ = new A.SemanticsTag("RenderViewport.excludeFromScrolling"); C.SentryLevel_info = new K.SentryLevel("info"); C.List_2No4 = H.setRuntimeTypeInfo(makeConstList(["click", "touchstart", "touchend", "pointerdown", "pointermove", "pointerup"]), type$.JSArray_legacy_String); C.Map_2NPLv = new H.ConstantStringMap(6, {click: null, touchstart: null, touchend: null, pointerdown: null, pointermove: null, pointerup: null}, C.List_2No4, type$.ConstantStringMap_of_legacy_String_and_Null); C.Set_2No4 = new P._UnmodifiableSet(C.Map_2NPLv, type$._UnmodifiableSet_legacy_String); C.List_mailto_tel_sms = H.setRuntimeTypeInfo(makeConstList(["mailto", "tel", "sms"]), type$.JSArray_legacy_String); C.Map_4eGok = new H.ConstantStringMap(3, {mailto: null, tel: null, sms: null}, C.List_mailto_tel_sms, type$.ConstantStringMap_of_legacy_String_and_Null); C.Set_4e8j2 = new P._UnmodifiableSet(C.Map_4eGok, type$._UnmodifiableSet_legacy_String); C.Map_GpI8B = new H.GeneralConstantMap([C.MaterialState_2, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); C.Set_GpMb9 = new P._UnmodifiableSet(C.Map_GpI8B, type$._UnmodifiableSet_legacy_MaterialState); C.List_Yab = H.setRuntimeTypeInfo(makeConstList(["click", "keyup", "keydown", "mouseup", "mousedown", "pointerdown", "pointerup"]), type$.JSArray_legacy_String); C.Map_Yae5Z = new H.ConstantStringMap(7, {click: null, keyup: null, keydown: null, mouseup: null, mousedown: null, pointerdown: null, pointerup: null}, C.List_Yab, type$.ConstantStringMap_of_legacy_String_and_Null); C.Set_Yabt3 = new P._UnmodifiableSet(C.Map_Yae5Z, type$._UnmodifiableSet_legacy_String); C.List_empty27 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray*>")); C.Map_empty9 = new H.ConstantStringMap(0, {}, C.List_empty27, H.findType("ConstantStringMap*,Null>")); C.Set_empty = new P._UnmodifiableSet(C.Map_empty9, H.findType("_UnmodifiableSet*>")); C.List_empty28 = H.setRuntimeTypeInfo(makeConstList([]), H.findType("JSArray")); C.Map_empty10 = new H.ConstantStringMap(0, {}, C.List_empty28, H.findType("ConstantStringMap")); C.Set_empty0 = new P._UnmodifiableSet(C.Map_empty10, type$._UnmodifiableSet_legacy_MaterialState); C.Map_m5b7J = new H.GeneralConstantMap([C.OperatingSystem_4, null, C.OperatingSystem_2, null, C.OperatingSystem_3, null], H.findType("GeneralConstantMap")); C.Set_m536 = new P._UnmodifiableSet(C.Map_m5b7J, H.findType("_UnmodifiableSet")); C.Map_qN69t = new H.GeneralConstantMap([C.MaterialState_1, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); C.Set_qNgX1 = new P._UnmodifiableSet(C.Map_qN69t, type$._UnmodifiableSet_legacy_MaterialState); C.List_wIv0 = H.setRuntimeTypeInfo(makeConstList(["serif", "sans-serif", "monospace", "cursive", "fantasy", "system-ui", "math", "emoji", "fangsong"]), type$.JSArray_legacy_String); C.Map_wImu2 = new H.ConstantStringMap(9, {serif: null, "sans-serif": null, monospace: null, cursive: null, fantasy: null, "system-ui": null, math: null, emoji: null, fangsong: null}, C.List_wIv0, type$.ConstantStringMap_of_legacy_String_and_Null); C.Set_wIvsi = new P._UnmodifiableSet(C.Map_wImu2, type$._UnmodifiableSet_legacy_String); C.Map_wPMHx = new H.GeneralConstantMap([C.MaterialState_0, null], type$.GeneralConstantMap_of_legacy_MaterialState_and_Null); C.Set_wPMXb = new P._UnmodifiableSet(C.Map_wPMHx, type$._UnmodifiableSet_legacy_MaterialState); C.SignInOption_0 = new G.SignInOption(); C.Size_0_48 = new P.Size(0, 48); C.Size_100000_100000 = new P.Size(100000, 100000); C.Size_18_18 = new P.Size(18, 18); C.Size_22_22 = new P.Size(22, 22); C.Size_330_270 = new P.Size(330, 270); C.Size_330_518 = new P.Size(330, 518); C.Size_40_40 = new P.Size(40, 40); C.Size_48_48 = new P.Size(48, 48); C.Size_496_160 = new P.Size(496, 160); C.Size_496_346 = new P.Size(496, 346); C.Size_52_96 = new P.Size(52, 96); C.Size_59_40 = new P.Size(59, 40); C.Size_59_48 = new P.Size(59, 48); C.Size_64_36 = new P.Size(64, 36); C.Size_8aB = new P.Size(1 / 0, 56); C.Size_UW6 = new P.Size(600, 1 / 0); C.SizedBox_108_null_null_null = new T.SizedBox(108, null, null, null); C.SizedBox_10_null_null_null = new T.SizedBox(10, null, null, null); C.SizedBox_12_null_null_null = new T.SizedBox(12, null, null, null); C.SizedBox_2_null_null_null = new T.SizedBox(2, null, null, null); C.SizedBox_3_null_null_null = new T.SizedBox(3, null, null, null); C.SizedBox_null_16_null_null = new T.SizedBox(null, 16, null, null); C.SizedBox_null_18_null_null = new T.SizedBox(null, 18, null, null); C.SizedBox_null_2_null_null = new T.SizedBox(null, 2, null, null); C.SizedBox_null_4_null_null = new T.SizedBox(null, 4, null, null); C.SizedBox_null_8_null_null = new T.SizedBox(null, 8, null, null); C.SizedBox_yzX = new T.SizedBox(1 / 0, 1 / 0, null, null); C.SlidableRenderingMode_0 = new A.SlidableRenderingMode("SlidableRenderingMode.none"); C.SlidableRenderingMode_1 = new A.SlidableRenderingMode("SlidableRenderingMode.slide"); C.SlidableRenderingMode_2 = new A.SlidableRenderingMode("SlidableRenderingMode.dismiss"); C.SlidableRenderingMode_3 = new A.SlidableRenderingMode("SlidableRenderingMode.resize"); C.SlideActionType_0 = new A.SlideActionType("SlideActionType.primary"); C.SlideActionType_1 = new A.SlideActionType("SlideActionType.secondary"); C.SliderThemeData_Q5Z = new Q.SliderThemeData(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); C.SliverGeometry_Tbh = new G.SliverGeometry(0, 0, 0, 0, 0, 0, 0, false, false, null, 0); C.SmartDashesType_0 = new N.SmartDashesType(0, "SmartDashesType.disabled"); C.SmartDashesType_1 = new N.SmartDashesType(1, "SmartDashesType.enabled"); C.SmartQuotesType_0 = new N.SmartQuotesType(0, "SmartQuotesType.disabled"); C.SmartQuotesType_1 = new N.SmartQuotesType(1, "SmartQuotesType.enabled"); C.SnackBarClosedReason_3 = new N.SnackBarClosedReason("SnackBarClosedReason.hide"); C.SnackBarClosedReason_5 = new N.SnackBarClosedReason("SnackBarClosedReason.timeout"); C.SnackBarThemeData_gc6 = new K.SnackBarThemeData(null, null, null, null, null, null, null); C.Spacer_null = new R.Spacer(null); C.SpringType_0 = new M.SpringType("SpringType.criticallyDamped"); C.SpringType_1 = new M.SpringType("SpringType.underDamped"); C.SpringType_2 = new M.SpringType("SpringType.overDamped"); C.StackFit_0 = new K.StackFit("StackFit.loose"); C.StackFit_1 = new K.StackFit("StackFit.expand"); C.StackFit_2 = new K.StackFit("StackFit.passthrough"); C.StackFrame_8sg = new R.StackFrame("...", -1, "", "", "", -1, -1, "", "..."); C.StackFrame_SOW = new R.StackFrame("", -1, "", "", "", -1, -1, "", "asynchronous suspension"); C.StepSizeType_1 = new B.StepSizeType("StepSizeType.fixedDomain"); C.StepSizeType_2 = new B.StepSizeType("StepSizeType.fixedPixels"); C.StringCharacters_ehH = new T.StringCharacters(""); C.StrokeCap_0 = new P.StrokeCap(0, "StrokeCap.butt"); C.StrokeCap_1 = new P.StrokeCap(1, "StrokeCap.round"); C.StrokeCap_2 = new P.StrokeCap(2, "StrokeCap.square"); C.StrokeJoin_0 = new P.StrokeJoin(0, "StrokeJoin.miter"); C.StrokeJoin_1 = new P.StrokeJoin(1, "StrokeJoin.round"); C.StrokeJoin_2 = new P.StrokeJoin(2, "StrokeJoin.bevel"); C.StrutStyle_yfz = new M.StrutStyle(null, null, null, null, null, null, null, null, null); C.StyledToastAnimation_0 = new Z.StyledToastAnimation("StyledToastAnimation.fade"); C.StyledToastAnimation_1 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromTop"); C.StyledToastAnimation_10 = new Z.StyledToastAnimation("StyledToastAnimation.slideToTopFade"); C.StyledToastAnimation_11 = new Z.StyledToastAnimation("StyledToastAnimation.slideToBottom"); C.StyledToastAnimation_12 = new Z.StyledToastAnimation("StyledToastAnimation.slideToBottomFade"); C.StyledToastAnimation_13 = new Z.StyledToastAnimation("StyledToastAnimation.slideToLeft"); C.StyledToastAnimation_14 = new Z.StyledToastAnimation("StyledToastAnimation.slideToLeftFade"); C.StyledToastAnimation_15 = new Z.StyledToastAnimation("StyledToastAnimation.slideToRight"); C.StyledToastAnimation_16 = new Z.StyledToastAnimation("StyledToastAnimation.slideToRightFade"); C.StyledToastAnimation_17 = new Z.StyledToastAnimation("StyledToastAnimation.scale"); C.StyledToastAnimation_18 = new Z.StyledToastAnimation("StyledToastAnimation.size"); C.StyledToastAnimation_19 = new Z.StyledToastAnimation("StyledToastAnimation.sizeFade"); C.StyledToastAnimation_2 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromTopFade"); C.StyledToastAnimation_20 = new Z.StyledToastAnimation("StyledToastAnimation.fadeScale"); C.StyledToastAnimation_21 = new Z.StyledToastAnimation("StyledToastAnimation.rotate"); C.StyledToastAnimation_22 = new Z.StyledToastAnimation("StyledToastAnimation.fadeRotate"); C.StyledToastAnimation_23 = new Z.StyledToastAnimation("StyledToastAnimation.scaleRotate"); C.StyledToastAnimation_24 = new Z.StyledToastAnimation("StyledToastAnimation.none"); C.StyledToastAnimation_3 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromBottom"); C.StyledToastAnimation_4 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromBottomFade"); C.StyledToastAnimation_5 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromLeft"); C.StyledToastAnimation_6 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromLeftFade"); C.StyledToastAnimation_7 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromRight"); C.StyledToastAnimation_8 = new Z.StyledToastAnimation("StyledToastAnimation.slideFromRightFade"); C.StyledToastAnimation_9 = new Z.StyledToastAnimation("StyledToastAnimation.slideToTop"); C.SuggestionsBoxDecoration_null = new L.SuggestionsBoxDecoration(null); C.SwitchThemeData_v9F = new R.SwitchThemeData(null, null, null, null, null, null); C.Symbol_89P = new H.Symbol("Intl.locale"); C.Symbol_call = new H.Symbol("call"); C.SystemMouseCursor_basic = new A.SystemMouseCursor("basic"); C.SystemMouseCursor_click = new A.SystemMouseCursor("click"); C.SystemMouseCursor_forbidden = new A.SystemMouseCursor("forbidden"); C.SystemMouseCursor_text = new A.SystemMouseCursor("text"); C.SystemSoundType_0 = new V.SystemSoundType("SystemSoundType.click"); C.SystemSoundType_1 = new V.SystemSoundType("SystemSoundType.alert"); C.SystemUiOverlayStyle_4EL = new X.SystemUiOverlayStyle(C.Color_4278190080, null, C.Brightness_1, null, C.Brightness_0, C.Brightness_1); C.SystemUiOverlayStyle_yjH = new X.SystemUiOverlayStyle(C.Color_4278190080, null, C.Brightness_1, null, C.Brightness_1, C.Brightness_0); C.TabBarTheme_Srx = new U.TabBarTheme(null, null, null, null, null, null, null); C.TableCellVerticalAlignment_0 = new S.TableCellVerticalAlignment("TableCellVerticalAlignment.top"); C.TableCellVerticalAlignment_1 = new S.TableCellVerticalAlignment("TableCellVerticalAlignment.middle"); C.TableCellVerticalAlignment_2 = new S.TableCellVerticalAlignment("TableCellVerticalAlignment.bottom"); C.TableCellVerticalAlignment_3 = new S.TableCellVerticalAlignment("TableCellVerticalAlignment.baseline"); C.TableCellVerticalAlignment_4 = new S.TableCellVerticalAlignment("TableCellVerticalAlignment.fill"); C.TapSemanticEvent_tap = new E.TapSemanticEvent("tap"); C.TextAlignVertical_0 = new K.TextAlignVertical(0); C.TextAlignVertical_m1 = new K.TextAlignVertical(-1); C.TextBaseline_0 = new P.TextBaseline(0, "TextBaseline.alphabetic"); C.TextBaseline_1 = new P.TextBaseline(1, "TextBaseline.ideographic"); C.TextButtonThemeData_null = new T.TextButtonThemeData(null); C.TextCapitalization_30 = new H.TextCapitalization("TextCapitalization.none"); C.TextCapitalizationConfig_TextCapitalization_3 = new H.TextCapitalizationConfig(C.TextCapitalization_30); C.TextCapitalization_0 = new H.TextCapitalization("TextCapitalization.words"); C.TextCapitalization_1 = new H.TextCapitalization("TextCapitalization.sentences"); C.TextCapitalization_2 = new H.TextCapitalization("TextCapitalization.characters"); C.TextCapitalization_3 = new N.TextCapitalization0(); C.TextDecorationStyle_0 = new P.TextDecorationStyle(0, "TextDecorationStyle.solid"); C.TextDecorationStyle_1 = new P.TextDecorationStyle(1, "TextDecorationStyle.double"); C.TextDecorationStyle_2 = new P.TextDecorationStyle(2, "TextDecorationStyle.dotted"); C.TextDecorationStyle_3 = new P.TextDecorationStyle(3, "TextDecorationStyle.dashed"); C.TextDecorationStyle_4 = new P.TextDecorationStyle(4, "TextDecorationStyle.wavy"); C.TextDirection_00 = new Q.TextDirection0("TextDirection.ltr"); C.TextDirection_10 = new Q.TextDirection0("TextDirection.rtl"); C.TextDirection_2 = new Q.TextDirection0("TextDirection.center"); C.TextSelection_TbC = new X.TextSelection(-1, -1, C.TextAffinity_1, false, -1, -1); C.TextRange_m1_m1 = new P.TextRange(-1, -1); C.TextEditingValue_QOg = new N.TextEditingValue("", C.TextSelection_TbC, C.TextRange_m1_m1); C.TextFieldConfiguration_wMy = new L.TextFieldConfiguration(C.InputDecoration_so3, null, null, null, C.TextAlign_4, null, true, C.TextInputType_0_null_null, false, null, true, 1, null, null, true, false, null, null, null, null, 2, null, null, null, C.EdgeInsets_20_20_20_20, C.TextCapitalization_3, null, true); C.TextInputAction_0 = new N.TextInputAction("TextInputAction.none"); C.TextInputAction_1 = new N.TextInputAction("TextInputAction.unspecified"); C.TextInputAction_10 = new N.TextInputAction("TextInputAction.route"); C.TextInputAction_11 = new N.TextInputAction("TextInputAction.emergencyCall"); C.TextInputAction_12 = new N.TextInputAction("TextInputAction.newline"); C.TextInputAction_2 = new N.TextInputAction("TextInputAction.done"); C.TextInputAction_3 = new N.TextInputAction("TextInputAction.go"); C.TextInputAction_4 = new N.TextInputAction("TextInputAction.search"); C.TextInputAction_5 = new N.TextInputAction("TextInputAction.send"); C.TextInputAction_6 = new N.TextInputAction("TextInputAction.next"); C.TextInputAction_7 = new N.TextInputAction("TextInputAction.previous"); C.TextInputAction_8 = new N.TextInputAction("TextInputAction.continueAction"); C.TextInputAction_9 = new N.TextInputAction("TextInputAction.join"); C.TextInputType_1_null_null = new N.TextInputType(1, null, null); C.TextInputType_7_null_null = new N.TextInputType(7, null, null); C.TextOverflow_1 = new Q.TextOverflow("TextOverflow.fade"); C.TextOverflow_2 = new Q.TextOverflow("TextOverflow.ellipsis"); C.TextOverflow_3 = new Q.TextOverflow("TextOverflow.visible"); C.TextPosition_0_TextAffinity_1 = new P.TextPosition(0, C.TextAffinity_1); C.TextSelectionHandleType_0 = new F.TextSelectionHandleType("TextSelectionHandleType.left"); C.TextSelectionHandleType_1 = new F.TextSelectionHandleType("TextSelectionHandleType.right"); C.TextSelectionHandleType_2 = new F.TextSelectionHandleType("TextSelectionHandleType.collapsed"); C.TextSelectionThemeData_null_null_null = new R.TextSelectionThemeData(null, null, null); C.TextSelection_dA9 = new X.TextSelection(0, 0, C.TextAffinity_1, false, 0, 0); C.TextDecoration_1 = new P.TextDecoration(1); C.TextStyle_Dfi = new A.TextStyle(true, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_1, null, null, null, null, null, null); C.TextStyle_YOT = new A.TextStyle(true, null, null, null, null, null, null, C.FontWeight_6, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); C.Color_3506372608 = new P.Color(3506372608); C.Color_4294967040 = new P.Color(4294967040); C.TextStyle_jrF = new A.TextStyle(true, C.Color_3506372608, null, "monospace", null, null, 48, C.FontWeight_8, null, null, null, null, null, null, null, null, null, C.TextDecoration_1, C.Color_4294967040, C.TextDecorationStyle_1, null, "fallback style; consider putting your text in a Material", null, null); C.TextStyle_q1g = new A.TextStyle(true, null, null, null, null, null, 0, null, null, null, null, null, 0, null, null, null, null, null, null, null, null, null, null, null); C.TextDecoration_0 = new P.TextDecoration(0); C.TextStyle_ouk = new A.TextStyle(true, C.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline1", null, null); C.TextStyle_ouk0 = new A.TextStyle(true, C.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline2", null, null); C.TextStyle_ouk1 = new A.TextStyle(true, C.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline3", null, null); C.TextStyle_ouk2 = new A.TextStyle(true, C.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline4", null, null); C.TextStyle_ouk3 = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline5", null, null); C.TextStyle_ouk4 = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity headline6", null, null); C.TextStyle_4eF = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity subtitle1", null, null); C.TextStyle_4eF0 = new A.TextStyle(true, C.Color_4278190080, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity subtitle2", null, null); C.TextStyle_EQZ = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity bodyText1", null, null); C.TextStyle_EQZ0 = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity bodyText2", null, null); C.TextStyle_0 = new A.TextStyle(true, C.Color_2315255808, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity caption", null, null); C.TextStyle_oxB = new A.TextStyle(true, C.Color_3707764736, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity button", null, null); C.TextStyle_Z7N = new A.TextStyle(true, C.Color_4278190080, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedwoodCity overline", null, null); C.TextTheme_0vk = new R.TextTheme(C.TextStyle_ouk, C.TextStyle_ouk0, C.TextStyle_ouk1, C.TextStyle_ouk2, C.TextStyle_ouk3, C.TextStyle_ouk4, C.TextStyle_4eF, C.TextStyle_4eF0, C.TextStyle_EQZ, C.TextStyle_EQZ0, C.TextStyle_0, C.TextStyle_oxB, C.TextStyle_Z7N); C.List_Exl = H.setRuntimeTypeInfo(makeConstList(["Ubuntu", "Cantarell", "DejaVu Sans", "Liberation Sans", "Arial"]), type$.JSArray_legacy_String); C.TextStyle_yvr = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline1", null, null); C.TextStyle_yvr0 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline2", null, null); C.TextStyle_yvr1 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline3", null, null); C.TextStyle_yvr2 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline4", null, null); C.TextStyle_IsU = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline5", null, null); C.TextStyle_IsU0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki headline6", null, null); C.TextStyle_yLM = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki subtitle1", null, null); C.TextStyle_yLM0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki subtitle2", null, null); C.TextStyle_SnA = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki bodyText1", null, null); C.TextStyle_SnA0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki bodyText2", null, null); C.TextStyle_PcA = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki caption", null, null); C.TextStyle_i78 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki button", null, null); C.TextStyle_um3 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteHelsinki overline", null, null); C.TextTheme_69H = new R.TextTheme(C.TextStyle_yvr, C.TextStyle_yvr0, C.TextStyle_yvr1, C.TextStyle_yvr2, C.TextStyle_IsU, C.TextStyle_IsU0, C.TextStyle_yLM, C.TextStyle_yLM0, C.TextStyle_SnA, C.TextStyle_SnA0, C.TextStyle_PcA, C.TextStyle_i78, C.TextStyle_um3); C.TextStyle_M0o = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline1", null, null); C.TextStyle_M0o0 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline2", null, null); C.TextStyle_M0o1 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline3", null, null); C.TextStyle_M0o2 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline4", null, null); C.TextStyle_M0o3 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline5", null, null); C.TextStyle_M0o4 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView headline6", null, null); C.TextStyle_V2J = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView subtitle1", null, null); C.TextStyle_V2J0 = new A.TextStyle(true, C.Color_4278190080, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView subtitle2", null, null); C.TextStyle_3yH = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView bodyText1", null, null); C.TextStyle_3yH0 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView bodyText2", null, null); C.TextStyle_K55 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView caption", null, null); C.TextStyle_U2f = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView button", null, null); C.TextStyle_Avr = new A.TextStyle(true, C.Color_4278190080, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackMountainView overline", null, null); C.TextTheme_6Hm = new R.TextTheme(C.TextStyle_M0o, C.TextStyle_M0o0, C.TextStyle_M0o1, C.TextStyle_M0o2, C.TextStyle_M0o3, C.TextStyle_M0o4, C.TextStyle_V2J, C.TextStyle_V2J0, C.TextStyle_3yH, C.TextStyle_3yH0, C.TextStyle_K55, C.TextStyle_U2f, C.TextStyle_Avr); C.TextStyle_mKQ = new A.TextStyle(true, C.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline1", null, null); C.TextStyle_mKQ0 = new A.TextStyle(true, C.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline2", null, null); C.TextStyle_mKQ1 = new A.TextStyle(true, C.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline3", null, null); C.TextStyle_mKQ2 = new A.TextStyle(true, C.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline4", null, null); C.TextStyle_mKQ3 = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline5", null, null); C.TextStyle_mKQ4 = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond headline6", null, null); C.TextStyle_4CA = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond subtitle1", null, null); C.TextStyle_4CA0 = new A.TextStyle(true, C.Color_4278190080, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond subtitle2", null, null); C.TextStyle_WrR = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond bodyText1", null, null); C.TextStyle_WrR0 = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond bodyText2", null, null); C.TextStyle_ZUk = new A.TextStyle(true, C.Color_2315255808, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond caption", null, null); C.TextStyle_wzg = new A.TextStyle(true, C.Color_3707764736, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond button", null, null); C.TextStyle_8TW = new A.TextStyle(true, C.Color_4278190080, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackRedmond overline", null, null); C.TextTheme_6hH = new R.TextTheme(C.TextStyle_mKQ, C.TextStyle_mKQ0, C.TextStyle_mKQ1, C.TextStyle_mKQ2, C.TextStyle_mKQ3, C.TextStyle_mKQ4, C.TextStyle_4CA, C.TextStyle_4CA0, C.TextStyle_WrR, C.TextStyle_WrR0, C.TextStyle_ZUk, C.TextStyle_wzg, C.TextStyle_8TW); C.TextStyle_5IZ = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline1", null, null); C.TextStyle_5IZ0 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline2", null, null); C.TextStyle_5IZ1 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline3", null, null); C.TextStyle_5IZ2 = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline4", null, null); C.TextStyle_vhw = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline5", null, null); C.TextStyle_vhw0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView headline6", null, null); C.TextStyle_6dJ = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView subtitle1", null, null); C.TextStyle_6dJ0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView subtitle2", null, null); C.TextStyle_4SO = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView bodyText1", null, null); C.TextStyle_4SO0 = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView bodyText2", null, null); C.TextStyle_wEs = new A.TextStyle(true, C.Color_3019898879, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView caption", null, null); C.TextStyle_e8d = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView button", null, null); C.TextStyle_oOX = new A.TextStyle(true, C.Color_4294967295, null, "Roboto", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteMountainView overline", null, null); C.TextTheme_A8Z = new R.TextTheme(C.TextStyle_5IZ, C.TextStyle_5IZ0, C.TextStyle_5IZ1, C.TextStyle_5IZ2, C.TextStyle_vhw, C.TextStyle_vhw0, C.TextStyle_6dJ, C.TextStyle_6dJ0, C.TextStyle_4SO, C.TextStyle_4SO0, C.TextStyle_wEs, C.TextStyle_e8d, C.TextStyle_oOX); C.TextStyle_dkm = new A.TextStyle(false, null, null, null, null, null, 112, C.FontWeight_0, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense display4 2014", null, null); C.TextStyle_dkm0 = new A.TextStyle(false, null, null, null, null, null, 56, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense display3 2014", null, null); C.TextStyle_dkm1 = new A.TextStyle(false, null, null, null, null, null, 45, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense display2 2014", null, null); C.TextStyle_dkm2 = new A.TextStyle(false, null, null, null, null, null, 34, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense display1 2014", null, null); C.TextStyle_kmg = new A.TextStyle(false, null, null, null, null, null, 24, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense headline 2014", null, null); C.TextStyle_2Gv = new A.TextStyle(false, null, null, null, null, null, 21, C.FontWeight_4, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense title 2014", null, null); C.TextStyle_1uv = new A.TextStyle(false, null, null, null, null, null, 17, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense subhead 2014", null, null); C.TextStyle_3S3 = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_4, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense subtitle 2014", null, null); C.TextStyle_oyU = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_4, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense body2 2014", null, null); C.TextStyle_oyU0 = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense body1 2014", null, null); C.TextStyle_4e8 = new A.TextStyle(false, null, null, null, null, null, 13, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense caption 2014", null, null); C.TextStyle_o3E = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_4, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense button 2014", null, null); C.TextStyle_2jN = new A.TextStyle(false, null, null, null, null, null, 11, C.FontWeight_3, null, null, null, C.TextBaseline_1, null, null, null, null, null, null, null, null, null, "dense overline 2014", null, null); C.TextTheme_BCG = new R.TextTheme(C.TextStyle_dkm, C.TextStyle_dkm0, C.TextStyle_dkm1, C.TextStyle_dkm2, C.TextStyle_kmg, C.TextStyle_2Gv, C.TextStyle_1uv, C.TextStyle_3S3, C.TextStyle_oyU, C.TextStyle_oyU0, C.TextStyle_4e8, C.TextStyle_o3E, C.TextStyle_2jN); C.TextStyle_g78 = new A.TextStyle(true, C.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline1", null, null); C.TextStyle_sGW = new A.TextStyle(true, C.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline2", null, null); C.TextStyle_XZj = new A.TextStyle(true, C.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline3", null, null); C.TextStyle_00 = new A.TextStyle(true, C.Color_3019898879, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline4", null, null); C.TextStyle_tae = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline5", null, null); C.TextStyle_Q1S = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino headline6", null, null); C.TextStyle_yrt = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino subtitle1", null, null); C.TextStyle_Phi = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino subtitle2", null, null); C.TextStyle_Xdg = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino bodyText1", null, null); C.TextStyle_8QI = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino bodyText2", null, null); C.TextStyle_ivD = new A.TextStyle(true, C.Color_3019898879, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino caption", null, null); C.TextStyle_Q92 = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino button", null, null); C.TextStyle_Gvh = new A.TextStyle(true, C.Color_4294967295, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteCupertino overline", null, null); C.TextTheme_Uhl = new R.TextTheme(C.TextStyle_g78, C.TextStyle_sGW, C.TextStyle_XZj, C.TextStyle_00, C.TextStyle_tae, C.TextStyle_Q1S, C.TextStyle_yrt, C.TextStyle_Phi, C.TextStyle_Xdg, C.TextStyle_8QI, C.TextStyle_ivD, C.TextStyle_Q92, C.TextStyle_Gvh); C.TextStyle_gmZ = new A.TextStyle(true, C.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline1", null, null); C.TextStyle_MAi = new A.TextStyle(true, C.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline2", null, null); C.TextStyle_zH6 = new A.TextStyle(true, C.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline3", null, null); C.TextStyle_mN4 = new A.TextStyle(true, C.Color_2315255808, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline4", null, null); C.TextStyle_GVt = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline5", null, null); C.TextStyle_O1W = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Display", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino headline6", null, null); C.TextStyle_6XC = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino subtitle1", null, null); C.TextStyle_cRy = new A.TextStyle(true, C.Color_4278190080, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino subtitle2", null, null); C.TextStyle_QIl = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino bodyText1", null, null); C.TextStyle_bFE = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino bodyText2", null, null); C.TextStyle_IVQ = new A.TextStyle(true, C.Color_2315255808, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino caption", null, null); C.TextStyle_p6t = new A.TextStyle(true, C.Color_3707764736, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino button", null, null); C.TextStyle_8Ef = new A.TextStyle(true, C.Color_4278190080, null, ".SF UI Text", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackCupertino overline", null, null); C.TextTheme_WPD = new R.TextTheme(C.TextStyle_gmZ, C.TextStyle_MAi, C.TextStyle_zH6, C.TextStyle_mN4, C.TextStyle_GVt, C.TextStyle_O1W, C.TextStyle_6XC, C.TextStyle_cRy, C.TextStyle_QIl, C.TextStyle_bFE, C.TextStyle_IVQ, C.TextStyle_p6t, C.TextStyle_8Ef); C.TextStyle_UJh = new A.TextStyle(false, null, null, null, null, null, 112, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall display4 2014", null, null); C.TextStyle_UJh0 = new A.TextStyle(false, null, null, null, null, null, 56, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall display3 2014", null, null); C.TextStyle_UJh1 = new A.TextStyle(false, null, null, null, null, null, 45, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall display2 2014", null, null); C.TextStyle_UJh2 = new A.TextStyle(false, null, null, null, null, null, 34, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall display1 2014", null, null); C.TextStyle_Cny = new A.TextStyle(false, null, null, null, null, null, 24, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall headline 2014", null, null); C.TextStyle_Vmp = new A.TextStyle(false, null, null, null, null, null, 21, C.FontWeight_6, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall title 2014", null, null); C.TextStyle_qTR = new A.TextStyle(false, null, null, null, null, null, 17, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall subhead 2014", null, null); C.TextStyle_evT = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_4, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall subtitle 2014", null, null); C.TextStyle_BIA = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_6, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall body2 2014", null, null); C.TextStyle_BIA0 = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall body1 2014", null, null); C.TextStyle_ecN = new A.TextStyle(false, null, null, null, null, null, 13, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall caption 2014", null, null); C.TextStyle_UbG = new A.TextStyle(false, null, null, null, null, null, 15, C.FontWeight_6, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall button 2014", null, null); C.TextStyle_Ae0 = new A.TextStyle(false, null, null, null, null, null, 11, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "tall overline 2014", null, null); C.TextTheme_aB5 = new R.TextTheme(C.TextStyle_UJh, C.TextStyle_UJh0, C.TextStyle_UJh1, C.TextStyle_UJh2, C.TextStyle_Cny, C.TextStyle_Vmp, C.TextStyle_qTR, C.TextStyle_evT, C.TextStyle_BIA, C.TextStyle_BIA0, C.TextStyle_ecN, C.TextStyle_UbG, C.TextStyle_Ae0); C.TextStyle_oWp = new A.TextStyle(false, null, null, null, null, null, 112, C.FontWeight_0, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike display4 2014", null, null); C.TextStyle_oWp0 = new A.TextStyle(false, null, null, null, null, null, 56, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike display3 2014", null, null); C.TextStyle_oWp1 = new A.TextStyle(false, null, null, null, null, null, 45, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike display2 2014", null, null); C.TextStyle_oWp2 = new A.TextStyle(false, null, null, null, null, null, 34, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike display1 2014", null, null); C.TextStyle_nGa = new A.TextStyle(false, null, null, null, null, null, 24, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike headline 2014", null, null); C.TextStyle_AO3 = new A.TextStyle(false, null, null, null, null, null, 20, C.FontWeight_4, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike title 2014", null, null); C.TextStyle_tcJ = new A.TextStyle(false, null, null, null, null, null, 16, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike subhead 2014", null, null); C.TextStyle_8eb = new A.TextStyle(false, null, null, null, null, null, 14, C.FontWeight_4, null, 0.1, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike subtitle 2014", null, null); C.TextStyle_EGu = new A.TextStyle(false, null, null, null, null, null, 14, C.FontWeight_4, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike body2 2014", null, null); C.TextStyle_EGu0 = new A.TextStyle(false, null, null, null, null, null, 14, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike body1 2014", null, null); C.TextStyle_E8w = new A.TextStyle(false, null, null, null, null, null, 12, C.FontWeight_3, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike caption 2014", null, null); C.TextStyle_MG8 = new A.TextStyle(false, null, null, null, null, null, 14, C.FontWeight_4, null, null, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike button 2014", null, null); C.TextStyle_Trs = new A.TextStyle(false, null, null, null, null, null, 10, C.FontWeight_3, null, 1.5, null, C.TextBaseline_0, null, null, null, null, null, null, null, null, null, "englishLike overline 2014", null, null); C.TextTheme_chs = new R.TextTheme(C.TextStyle_oWp, C.TextStyle_oWp0, C.TextStyle_oWp1, C.TextStyle_oWp2, C.TextStyle_nGa, C.TextStyle_AO3, C.TextStyle_tcJ, C.TextStyle_8eb, C.TextStyle_EGu, C.TextStyle_EGu0, C.TextStyle_E8w, C.TextStyle_MG8, C.TextStyle_Trs); C.TextStyle_c4R = new A.TextStyle(true, C.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline1", null, null); C.TextStyle_c4R0 = new A.TextStyle(true, C.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline2", null, null); C.TextStyle_c4R1 = new A.TextStyle(true, C.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline3", null, null); C.TextStyle_c4R2 = new A.TextStyle(true, C.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline4", null, null); C.TextStyle_GVy = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline5", null, null); C.TextStyle_GVy0 = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity headline6", null, null); C.TextStyle_nuW = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity subtitle1", null, null); C.TextStyle_nuW0 = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity subtitle2", null, null); C.TextStyle_Qqi = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity bodyText1", null, null); C.TextStyle_Qqi0 = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity bodyText2", null, null); C.TextStyle_WFc = new A.TextStyle(true, C.Color_3019898879, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity caption", null, null); C.TextStyle_2bx = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity button", null, null); C.TextStyle_gc6 = new A.TextStyle(true, C.Color_4294967295, null, ".AppleSystemUIFont", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedwoodCity overline", null, null); C.TextTheme_iz0 = new R.TextTheme(C.TextStyle_c4R, C.TextStyle_c4R0, C.TextStyle_c4R1, C.TextStyle_c4R2, C.TextStyle_GVy, C.TextStyle_GVy0, C.TextStyle_nuW, C.TextStyle_nuW0, C.TextStyle_Qqi, C.TextStyle_Qqi0, C.TextStyle_WFc, C.TextStyle_2bx, C.TextStyle_gc6); C.TextStyle_avx = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline1", null, null); C.TextStyle_avx0 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline2", null, null); C.TextStyle_avx1 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline3", null, null); C.TextStyle_avx2 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline4", null, null); C.TextStyle_avx3 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline5", null, null); C.TextStyle_avx4 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki headline6", null, null); C.TextStyle_rw6 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki subtitle1", null, null); C.TextStyle_rw60 = new A.TextStyle(true, C.Color_4278190080, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki subtitle2", null, null); C.TextStyle_6Nz = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki bodyText1", null, null); C.TextStyle_6Nz0 = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki bodyText2", null, null); C.TextStyle_QW6 = new A.TextStyle(true, C.Color_2315255808, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki caption", null, null); C.TextStyle_wcA = new A.TextStyle(true, C.Color_3707764736, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki button", null, null); C.TextStyle_XHn = new A.TextStyle(true, C.Color_4278190080, null, "Roboto", C.List_Exl, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "blackHelsinki overline", null, null); C.TextTheme_kdB = new R.TextTheme(C.TextStyle_avx, C.TextStyle_avx0, C.TextStyle_avx1, C.TextStyle_avx2, C.TextStyle_avx3, C.TextStyle_avx4, C.TextStyle_rw6, C.TextStyle_rw60, C.TextStyle_6Nz, C.TextStyle_6Nz0, C.TextStyle_QW6, C.TextStyle_wcA, C.TextStyle_XHn); C.TextStyle_exN = new A.TextStyle(true, C.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline1", null, null); C.TextStyle_exN0 = new A.TextStyle(true, C.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline2", null, null); C.TextStyle_exN1 = new A.TextStyle(true, C.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline3", null, null); C.TextStyle_exN2 = new A.TextStyle(true, C.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline4", null, null); C.TextStyle_u5x = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline5", null, null); C.TextStyle_u5x0 = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond headline6", null, null); C.TextStyle_eRz = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond subtitle1", null, null); C.TextStyle_eRz0 = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond subtitle2", null, null); C.TextStyle_KFH = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond bodyText1", null, null); C.TextStyle_KFH0 = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond bodyText2", null, null); C.TextStyle_01 = new A.TextStyle(true, C.Color_3019898879, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond caption", null, null); C.TextStyle_lkh = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond button", null, null); C.TextStyle_MQy = new A.TextStyle(true, C.Color_4294967295, null, "Segoe UI", null, null, null, null, null, null, null, null, null, null, null, null, null, C.TextDecoration_0, null, null, null, "whiteRedmond overline", null, null); C.TextTheme_nfu = new R.TextTheme(C.TextStyle_exN, C.TextStyle_exN0, C.TextStyle_exN1, C.TextStyle_exN2, C.TextStyle_u5x, C.TextStyle_u5x0, C.TextStyle_eRz, C.TextStyle_eRz0, C.TextStyle_KFH, C.TextStyle_KFH0, C.TextStyle_01, C.TextStyle_lkh, C.TextStyle_MQy); C.TextWidthBasis_1 = new U.TextWidthBasis("TextWidthBasis.longestLine"); C.Text_W3F = new L.Text("", null, null, null, null, null, null, null, null, null); C.ThemeMode_0 = new S.ThemeMode("ThemeMode.system"); C.Threshold_0 = new Z.Threshold(0); C.Threshold_znv = new Z.Threshold(0.5); C.TickLabelAnchor_0 = new T.TickLabelAnchor("TickLabelAnchor.before"); C.TickLabelAnchor_1 = new T.TickLabelAnchor("TickLabelAnchor.centered"); C.TickLabelAnchor_2 = new T.TickLabelAnchor("TickLabelAnchor.after"); C.TickLabelAnchor_3 = new T.TickLabelAnchor("TickLabelAnchor.inside"); C.TickLabelJustification_0 = new T.TickLabelJustification(); C.TickerCanceled_null = new M.TickerCanceled(null); C.TileMode_0 = new P.TileMode(0, "TileMode.clamp"); C.TileMode_1 = new P.TileMode(1, "TileMode.repeated"); C.TileMode_2 = new P.TileMode(2, "TileMode.mirror"); C.TileMode_3 = new P.TileMode(3, "TileMode.decal"); C.TimeOfDayFormat_0 = new Z.TimeOfDayFormat("TimeOfDayFormat.HH_colon_mm"); C.TimeOfDayFormat_1 = new Z.TimeOfDayFormat("TimeOfDayFormat.HH_dot_mm"); C.TimeOfDayFormat_2 = new Z.TimeOfDayFormat("TimeOfDayFormat.frenchCanadian"); C.TimeOfDayFormat_3 = new Z.TimeOfDayFormat("TimeOfDayFormat.H_colon_mm"); C.TimeOfDayFormat_4 = new Z.TimeOfDayFormat("TimeOfDayFormat.h_colon_mm_space_a"); C.TimeOfDayFormat_5 = new Z.TimeOfDayFormat("TimeOfDayFormat.a_space_h_colon_mm"); C.TimePickerEntryMode_0 = new M.TimePickerEntryMode("TimePickerEntryMode.dial"); C.TimePickerEntryMode_1 = new M.TimePickerEntryMode("TimePickerEntryMode.input"); C.TimePickerThemeData_10O = new A.TimePickerThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); C.ToggleButtonsThemeData_UsI = new S.ToggleButtonsThemeData(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); C.Tolerance_Gdw = new N.Tolerance(0.001, 0.001); C.Tolerance_qbZ = new N.Tolerance(0.01, 1 / 0); C.ToolbarOptions_false_false_true = new D.ToolbarOptions(false, false, true); C.ToolbarOptions_true_false_false = new D.ToolbarOptions(true, false, false); C.ToolbarOptions_true_true_true = new D.ToolbarOptions(true, true, true); C.TooltipThemeData_kSE = new T.TooltipThemeData(null, null, null, null, null, null, null, null); C.TransformKind_0 = new H.TransformKind("TransformKind.identity"); C.TransformKind_1 = new H.TransformKind("TransformKind.transform2d"); C.TransformKind_2 = new H.TransformKind("TransformKind.complex"); C.Type_0 = H.typeLiteral("ExpandSelectionLeftByLineTextIntent"); C.Type_2Iq = H.typeLiteral("MoveSelectionLeftByLineTextIntent"); C.Type_2Iq0 = H.typeLiteral("MoveSelectionLeftByWordTextIntent"); C.Type_8LH = H.typeLiteral("ExtendSelectionDownTextIntent"); C.Type_8aB = H.typeLiteral("ExpandSelectionRightByLineTextIntent"); C.Type_9Ii0 = H.typeLiteral("ExtendSelectionRightByLineTextIntent"); C.Type_9Ii = H.typeLiteral("ExtendSelectionRightByWordTextIntent"); C.Type_ActivateIntent_OT9 = H.typeLiteral("ActivateIntent"); C.Type_AppLocalization_KyD = H.typeLiteral("AppLocalization"); C.Type_BigInt_8OV = H.typeLiteral("BigInt"); C.Type_BoolJsonObject_8HQ = H.typeLiteral("BoolJsonObject"); C.Type_ButtonActivateIntent_6Ij = H.typeLiteral("ButtonActivateIntent"); C.Type_ByteBuffer_RkP = H.typeLiteral("ByteBuffer"); C.Type_ByteData_zNC = H.typeLiteral("ByteData"); C.Type_Bzp = H.typeLiteral("MoveSelectionRightByLineTextIntent"); C.Type_Bzp0 = H.typeLiteral("MoveSelectionRightByWordTextIntent"); C.Type_Color_MG2 = H.typeLiteral("Color"); C.Type_D34 = H.typeLiteral("_TransparentTapGestureRecognizer"); C.Type_DateTime_8AS = H.typeLiteral("DateTime"); C.Type_DirectionalFocusIntent_evN = H.typeLiteral("DirectionalFocusIntent"); C.Type_DismissIntent_Fb0 = H.typeLiteral("DismissIntent"); C.Type_DoNothingIntent_IQR = H.typeLiteral("DoNothingIntent"); C.Type_DoubleTapGestureRecognizer_oyU = H.typeLiteral("DoubleTapGestureRecognizer"); C.Type_Duration_SnA = H.typeLiteral("Duration"); C.Type_ExtendSelectionUpTextIntent_Bju = H.typeLiteral("ExtendSelectionUpTextIntent"); C.Type_Float32List_LB7 = H.typeLiteral("Float32List"); C.Type_Float64List_LB7 = H.typeLiteral("Float64List"); C.Type_ForcePressGestureRecognizer_TN2 = H.typeLiteral("ForcePressGestureRecognizer"); C.Type_IYE = H.typeLiteral("MoveSelectionToStartTextIntent"); C.Type_InsertTabIntent_EKj = H.typeLiteral("InsertTabIntent"); C.Type_Int16List_uXf = H.typeLiteral("Int16List"); C.Type_Int32List_O50 = H.typeLiteral("Int32List"); C.Type_Int64_gc6 = H.typeLiteral("Int64"); C.Type_Int8List_ekJ = H.typeLiteral("Int8List"); C.Type_JSObject_8k0 = H.typeLiteral("JSObject"); C.Type_JsonObject_gyf = H.typeLiteral("JsonObject"); C.Type_KeE = H.typeLiteral("ExtendSelectionLeftTextIntent"); C.Type_LabeledGlobalKey_6TW = H.typeLiteral("LabeledGlobalKey>"); C.Type_ListJsonObject_yPV = H.typeLiteral("ListJsonObject"); C.Type_LongPressGestureRecognizer_46y = H.typeLiteral("LongPressGestureRecognizer"); C.Type_MapJsonObject_bBG = H.typeLiteral("MapJsonObject"); C.Type_MaterialLocalizations_flR = H.typeLiteral("MaterialLocalizations"); C.Type_MoveSelectionDownTextIntent_yqF = H.typeLiteral("MoveSelectionDownTextIntent"); C.Type_MoveSelectionLeftTextIntent_uf2 = H.typeLiteral("MoveSelectionLeftTextIntent"); C.Type_MoveSelectionRightTextIntent_kUZ = H.typeLiteral("MoveSelectionRightTextIntent"); C.Type_MoveSelectionToEndTextIntent_c4I = H.typeLiteral("MoveSelectionToEndTextIntent"); C.Type_MoveSelectionUpTextIntent_kSJ = H.typeLiteral("MoveSelectionUpTextIntent"); C.Type_NT8 = H.typeLiteral("ExtendSelectionLeftByWordAndStopAtReversalTextIntent"); C.Type_NextFocusIntent_6xB = H.typeLiteral("NextFocusIntent"); C.Type_Null_Yyn = H.typeLiteral("Null"); C.Type_NumJsonObject_H9C = H.typeLiteral("NumJsonObject"); C.Type_ObjectKey_Gsr = H.typeLiteral("ObjectKey"); C.Type_OverscrollNotification_Ps9 = H.typeLiteral("OverscrollNotification"); C.Type_PanGestureRecognizer_bbH = H.typeLiteral("PanGestureRecognizer"); C.Type_PhotoViewGestureRecognizer_Cbk = H.typeLiteral("PhotoViewGestureRecognizer"); C.Type_PreviousFocusIntent_wsa = H.typeLiteral("PreviousFocusIntent"); C.Type_PrioritizedIntents_fLu = H.typeLiteral("PrioritizedIntents"); C.Type_RegExp_Eeh = H.typeLiteral("RegExp"); C.Type_RequestFocusIntent_OPB = H.typeLiteral("RequestFocusIntent"); C.Type_ScaleGestureRecognizer_s8I = H.typeLiteral("ScaleGestureRecognizer"); C.Type_ScrollIntent_mpH = H.typeLiteral("ScrollIntent"); C.Type_ShapeBorderClipper_QWG = H.typeLiteral("ShapeBorderClipper"); C.Type_Shortcuts_6TW = H.typeLiteral("Shortcuts"); C.Type_StringJsonObject_GAC = H.typeLiteral("StringJsonObject"); C.Type_TapGestureRecognizer_62h = H.typeLiteral("TapGestureRecognizer"); C.Type_TimeOfDay_JJ0 = H.typeLiteral("TimeOfDay"); C.Type_Uint16List_2bx = H.typeLiteral("Uint16List"); C.Type_Uint32List_2bx = H.typeLiteral("Uint32List"); C.Type_Uint8ClampedList_Jik = H.typeLiteral("Uint8ClampedList"); C.Type_Uint8List_WLA = H.typeLiteral("Uint8List"); C.Type_Uri_EFX = H.typeLiteral("Uri"); C.Type_Vq1 = H.typeLiteral("HorizontalDragGestureRecognizer"); C.Type_WidgetsLocalizations_43h = H.typeLiteral("WidgetsLocalizations"); C.Type__AnyTapGestureRecognizer_5RQ = H.typeLiteral("_AnyTapGestureRecognizer"); C.Type__ModalScopeState_Yap = H.typeLiteral("_ModalScopeState<@>"); C.Type__ThumbPressGestureRecognizer_KUi = H.typeLiteral("_ThumbPressGestureRecognizer"); C.Type__TrackTapGestureRecognizer_LjJ = H.typeLiteral("_TrackTapGestureRecognizer"); C.Type_gO9 = H.typeLiteral("ExtendSelectionLeftByLineTextIntent"); C.Type_gO90 = H.typeLiteral("ExtendSelectionLeftByWordTextIntent"); C.Type_mLh = H.typeLiteral("VerticalDragGestureRecognizer"); C.Type_muk = H.typeLiteral("DoNothingAndStopPropagationTextIntent"); C.Type_num_cv7 = H.typeLiteral("num"); C.Type_oyU = H.typeLiteral("ExpandSelectionToStartTextIntent"); C.Type_s8I = H.typeLiteral("DoNothingAndStopPropagationIntent"); C.Type_uFQ = H.typeLiteral("ExtendSelectionRightTextIntent"); C.Type_unm = H.typeLiteral("ExtendSelectionRightByWordAndStopAtReversalTextIntent"); C.Type_weg = H.typeLiteral("ExpandSelectionToEndTextIntent"); C.BorderSide_95g0 = new Y.BorderSide(C.Color_4278190080, 1, C.BorderStyle_1); C.UnderlineInputBorder_4YI = new F.UnderlineInputBorder(C.BorderRadius_tLn1, C.BorderSide_95g0); C.UnfocusDisposition_0 = new O.UnfocusDisposition("UnfocusDisposition.scope"); C.UnfocusDisposition_1 = new O.UnfocusDisposition("UnfocusDisposition.previouslyFocusedChild"); C.UpdateState_0 = new B.UpdateState("UpdateState.initial"); C.UpdateState_1 = new B.UpdateState("UpdateState.loading"); C.UpdateState_2 = new B.UpdateState("UpdateState.done"); C.UserPermission_create = new T.UserPermission("create"); C.UserPermission_edit = new T.UserPermission("edit"); C.UserPermission_view = new T.UserPermission("view"); C.Utf8Decoder_false = new P.Utf8Decoder(false); C.Utf8Decoder_true = new P.Utf8Decoder(true); C.ValueKey_CrossFadeState_0 = new D.ValueKey(C.CrossFadeState_0, type$.ValueKey_legacy_CrossFadeState); C.ValueKey_CrossFadeState_1 = new D.ValueKey(C.CrossFadeState_1, type$.ValueKey_legacy_CrossFadeState); C.ValueKey_U86 = new D.ValueKey("time-picker-dial", type$.ValueKey_legacy_String); C.VelocityEstimate_MMm = new R.VelocityEstimate(C.Offset_0_0, 0, C.Duration_0, C.Offset_0_0); C.VerticalDirection_0 = new G.VerticalDirection("VerticalDirection.up"); C.VerticalDirection_1 = new G.VerticalDirection("VerticalDirection.down"); C.ViewMeasuredSizes_0_0_0_0 = new X.ViewMeasuredSizes(0, 0, 0, 0); C.VisualDensity_0_0 = new X.VisualDensity(0, 0); C.VisualDensity_m2_m2 = new X.VisualDensity(-2, -2); C.WindowPadding_0_0_0_0 = new H.WindowPadding(0, 0, 0, 0); C.WrapAlignment_0 = new N.WrapAlignment("WrapAlignment.start"); C.WrapAlignment_1 = new N.WrapAlignment("WrapAlignment.end"); C.WrapAlignment_2 = new N.WrapAlignment("WrapAlignment.center"); C.WrapAlignment_3 = new N.WrapAlignment("WrapAlignment.spaceBetween"); C.WrapAlignment_4 = new N.WrapAlignment("WrapAlignment.spaceAround"); C.WrapAlignment_5 = new N.WrapAlignment("WrapAlignment.spaceEvenly"); C.WrapCrossAlignment_0 = new N.WrapCrossAlignment("WrapCrossAlignment.start"); C.WrapCrossAlignment_1 = new N.WrapCrossAlignment("WrapCrossAlignment.end"); C.WrapCrossAlignment_2 = new N.WrapCrossAlignment("WrapCrossAlignment.center"); C._ActionLevel_0 = new A._ActionLevel("_ActionLevel.top"); C._ActionLevel_1 = new A._ActionLevel("_ActionLevel.view"); C._ActivityIndicatorType_1 = new U._ActivityIndicatorType("_ActivityIndicatorType.adaptive"); C._AnimationDirection_0 = new G._AnimationDirection("_AnimationDirection.forward"); C._AnimationDirection_1 = new G._AnimationDirection("_AnimationDirection.reverse"); C._CheckableKind_0 = new H._CheckableKind("_CheckableKind.checkbox"); C._CheckableKind_1 = new H._CheckableKind("_CheckableKind.radio"); C._CheckableKind_2 = new H._CheckableKind("_CheckableKind.toggle"); C._ComparisonResult_0 = new H._ComparisonResult("_ComparisonResult.inside"); C._ComparisonResult_1 = new H._ComparisonResult("_ComparisonResult.higher"); C._ComparisonResult_2 = new H._ComparisonResult("_ComparisonResult.lower"); C._CupertinoEdgeShadowDecoration_null = new D._CupertinoEdgeShadowDecoration(null); C.Color_939524096 = new P.Color(939524096); C.Color_301989888 = new P.Color(301989888); C.Color_67108864 = new P.Color(67108864); C.List_S2N = H.setRuntimeTypeInfo(makeConstList([C.Color_939524096, C.Color_301989888, C.Color_67108864, C.Color_0]), type$.JSArray_legacy_Color); C._CupertinoEdgeShadowDecoration_yjC = new D._CupertinoEdgeShadowDecoration(C.List_S2N); C._DecorationSlot_0 = new L._DecorationSlot("_DecorationSlot.icon"); C._DecorationSlot_1 = new L._DecorationSlot("_DecorationSlot.input"); C._DecorationSlot_10 = new L._DecorationSlot("_DecorationSlot.container"); C._DecorationSlot_2 = new L._DecorationSlot("_DecorationSlot.label"); C._DecorationSlot_3 = new L._DecorationSlot("_DecorationSlot.hint"); C._DecorationSlot_4 = new L._DecorationSlot("_DecorationSlot.prefix"); C._DecorationSlot_5 = new L._DecorationSlot("_DecorationSlot.suffix"); C._DecorationSlot_6 = new L._DecorationSlot("_DecorationSlot.prefixIcon"); C._DecorationSlot_7 = new L._DecorationSlot("_DecorationSlot.suffixIcon"); C._DecorationSlot_8 = new L._DecorationSlot("_DecorationSlot.helperError"); C._DecorationSlot_9 = new L._DecorationSlot("_DecorationSlot.counter"); C._DragState_0 = new O._DragState("_DragState.ready"); C._DragState_1 = new O._DragState("_DragState.possible"); C._DragState_2 = new O._DragState("_DragState.accepted"); C._ElementLifecycle_0 = new N._ElementLifecycle("_ElementLifecycle.initial"); C._ElementLifecycle_1 = new N._ElementLifecycle("_ElementLifecycle.active"); C._ElementLifecycle_2 = new N._ElementLifecycle("_ElementLifecycle.inactive"); C._ElementLifecycle_3 = new N._ElementLifecycle("_ElementLifecycle.defunct"); C._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable = new V._EnabledAndDisabledMouseCursor(C.SystemMouseCursor_click, "clickable"); C._EnabledAndDisabledMouseCursor_SystemMouseCursor_text_textable = new V._EnabledAndDisabledMouseCursor(C.SystemMouseCursor_text, "textable"); C._FindBreakDirection_1 = new H._FindBreakDirection(1); C._FindBreakDirection_m1 = new H._FindBreakDirection(-1); C._Focus_0 = new A._Focus("_Focus.master"); C._Focus_1 = new A._Focus("_Focus.detail"); C._ForceState_0 = new K._ForceState("_ForceState.ready"); C._ForceState_1 = new K._ForceState("_ForceState.possible"); C._ForceState_2 = new K._ForceState("_ForceState.accepted"); C._ForceState_3 = new K._ForceState("_ForceState.started"); C._ForceState_4 = new K._ForceState("_ForceState.peaked"); C._GlowState_0 = new L._GlowState("_GlowState.idle"); C._GlowState_1 = new L._GlowState("_GlowState.absorb"); C._GlowState_2 = new L._GlowState("_GlowState.pull"); C._GlowState_3 = new L._GlowState("_GlowState.recede"); C._HighlightType_0 = new R._HighlightType("_HighlightType.pressed"); C._HighlightType_1 = new R._HighlightType("_HighlightType.hover"); C._HighlightType_2 = new R._HighlightType("_HighlightType.focus"); C._HorizontalJustification_0 = new E._HorizontalJustification("_HorizontalJustification.leftDrawArea"); C._HorizontalJustification_1 = new E._HorizontalJustification("_HorizontalJustification.left"); C._HorizontalJustification_2 = new E._HorizontalJustification("_HorizontalJustification.rightDrawArea"); C._HorizontalJustification_3 = new E._HorizontalJustification("_HorizontalJustification.right"); C._IntrinsicDimension_0 = new S._IntrinsicDimension("_IntrinsicDimension.minWidth"); C._IntrinsicDimension_1 = new S._IntrinsicDimension("_IntrinsicDimension.maxWidth"); C._IntrinsicDimension_2 = new S._IntrinsicDimension("_IntrinsicDimension.minHeight"); C._IntrinsicDimension_3 = new S._IntrinsicDimension("_IntrinsicDimension.maxHeight"); C._IterationMarker_null_2 = new P._IterationMarker(null, 2); C._LayoutMode_0 = new A._LayoutMode("_LayoutMode.auto"); C._LayoutMode_1 = new A._LayoutMode("_LayoutMode.lateral"); C._LayoutMode_2 = new A._LayoutMode("_LayoutMode.nested"); C._LicenseEntryWithLineBreaksParserState_0 = new F._LicenseEntryWithLineBreaksParserState("_LicenseEntryWithLineBreaksParserState.beforeParagraph"); C._LicenseEntryWithLineBreaksParserState_1 = new F._LicenseEntryWithLineBreaksParserState("_LicenseEntryWithLineBreaksParserState.inParagraph"); C._ListTileSlot_0 = new Q._ListTileSlot("_ListTileSlot.leading"); C._ListTileSlot_1 = new Q._ListTileSlot("_ListTileSlot.title"); C._ListTileSlot_2 = new Q._ListTileSlot("_ListTileSlot.subtitle"); C._ListTileSlot_3 = new Q._ListTileSlot("_ListTileSlot.trailing"); C._MdiIconData_2C70 = new Z._MdiIconData(983356, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_2C7 = new Z._MdiIconData(984891, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_2Nv0 = new Z._MdiIconData(983254, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_2Nv = new Z._MdiIconData(984960, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_43h0 = new Z._MdiIconData(983596, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_43h = new Z._MdiIconData(987236, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_4ax = new Z._MdiIconData(985108, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7T10 = new Z._MdiIconData(983090, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7T1 = new Z._MdiIconData(983093, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7T12 = new Z._MdiIconData(983462, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7T13 = new Z._MdiIconData(984370, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7T11 = new Z._MdiIconData(985024, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7vC0 = new Z._MdiIconData(983802, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_7vC = new Z._MdiIconData(984515, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_90Y1 = new Z._MdiIconData(984545, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_90Y = new Z._MdiIconData(984688, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_90Y0 = new Z._MdiIconData(985428, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_AmO0 = new Z._MdiIconData(983359, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_AmO = new Z._MdiIconData(984211, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_CtR = new Z._MdiIconData(985228, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_EuK0 = new Z._MdiIconData(983267, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_EuK = new Z._MdiIconData(983492, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_EuK3 = new Z._MdiIconData(984034, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_EuK1 = new Z._MdiIconData(984402, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_EuK2 = new Z._MdiIconData(986194, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_FFB = new Z._MdiIconData(983863, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_GDY = new Z._MdiIconData(985231, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Gjc0 = new Z._MdiIconData(983360, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Gjc = new Z._MdiIconData(984216, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Gjc1 = new Z._MdiIconData(986034, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_I2F = new Z._MdiIconData(983747, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_I2F0 = new Z._MdiIconData(986619, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_IAW = new Z._MdiIconData(984620, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_MO92 = new Z._MdiIconData(983591, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_MO90 = new Z._MdiIconData(983675, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_MO91 = new Z._MdiIconData(983874, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_MO9 = new Z._MdiIconData(984499, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Pmk = new Z._MdiIconData(983723, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Qa61 = new Z._MdiIconData(983363, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Qa6 = new Z._MdiIconData(983391, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Qa60 = new Z._MdiIconData(984299, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_SXh = new Z._MdiIconData(984388, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Skt0 = new Z._MdiIconData(983572, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Skt = new Z._MdiIconData(983684, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_UEg0 = new Z._MdiIconData(983579, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_UEg = new Z._MdiIconData(987446, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Up3 = new Z._MdiIconData(983358, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_Up30 = new Z._MdiIconData(986032, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_aAu = new Z._MdiIconData(984512, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_agj = new Z._MdiIconData(983589, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_atK = new Z._MdiIconData(986425, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_dDd = new Z._MdiIconData(988482, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_dEB0 = new Z._MdiIconData(983279, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_dEB = new Z._MdiIconData(987119, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_egL1 = new Z._MdiIconData(983338, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_egL0 = new Z._MdiIconData(983394, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_egL = new Z._MdiIconData(984048, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_egL2 = new Z._MdiIconData(984218, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_id2 = new Z._MdiIconData(984203, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_ifn0 = new Z._MdiIconData(983841, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_ifn = new Z._MdiIconData(983869, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_jVE = new Z._MdiIconData(983583, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_jVE0 = new Z._MdiIconData(983922, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_omH = new Z._MdiIconData(986661, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_ouN = new Z._MdiIconData(983871, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_rJg = new Z._MdiIconData(984430, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_sUr = new Z._MdiIconData(983564, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_sUr0 = new Z._MdiIconData(987176, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_uXI = new Z._MdiIconData(987743, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_ujl = new Z._MdiIconData(984012, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_wMy1 = new Z._MdiIconData(983559, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_wMy0 = new Z._MdiIconData(983814, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_wMy = new Z._MdiIconData(983870, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_yrt = new Z._MdiIconData(985308, "Material Design Icons", "material_design_icons_flutter", false); C._MdiIconData_yvL = new Z._MdiIconData(983829, "Material Design Icons", "material_design_icons_flutter", false); C._MixedEdgeInsets_QWq = new V._MixedEdgeInsets(1 / 0, 1 / 0, 1 / 0, 1 / 0, 1 / 0, 1 / 0); C._ModifierSidePair_ModifierKey_0_KeyboardSide_0 = new B._ModifierSidePair(C.ModifierKey_0, C.KeyboardSide_0); C.KeyboardSide_1 = new B.KeyboardSide("KeyboardSide.left"); C._ModifierSidePair_ModifierKey_0_KeyboardSide_1 = new B._ModifierSidePair(C.ModifierKey_0, C.KeyboardSide_1); C.KeyboardSide_2 = new B.KeyboardSide("KeyboardSide.right"); C._ModifierSidePair_ModifierKey_0_KeyboardSide_2 = new B._ModifierSidePair(C.ModifierKey_0, C.KeyboardSide_2); C._ModifierSidePair_ModifierKey_0_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_0, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_1_KeyboardSide_0 = new B._ModifierSidePair(C.ModifierKey_1, C.KeyboardSide_0); C._ModifierSidePair_ModifierKey_1_KeyboardSide_1 = new B._ModifierSidePair(C.ModifierKey_1, C.KeyboardSide_1); C._ModifierSidePair_ModifierKey_1_KeyboardSide_2 = new B._ModifierSidePair(C.ModifierKey_1, C.KeyboardSide_2); C._ModifierSidePair_ModifierKey_1_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_1, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_2_KeyboardSide_0 = new B._ModifierSidePair(C.ModifierKey_2, C.KeyboardSide_0); C._ModifierSidePair_ModifierKey_2_KeyboardSide_1 = new B._ModifierSidePair(C.ModifierKey_2, C.KeyboardSide_1); C._ModifierSidePair_ModifierKey_2_KeyboardSide_2 = new B._ModifierSidePair(C.ModifierKey_2, C.KeyboardSide_2); C._ModifierSidePair_ModifierKey_2_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_2, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_3_KeyboardSide_0 = new B._ModifierSidePair(C.ModifierKey_3, C.KeyboardSide_0); C._ModifierSidePair_ModifierKey_3_KeyboardSide_1 = new B._ModifierSidePair(C.ModifierKey_3, C.KeyboardSide_1); C._ModifierSidePair_ModifierKey_3_KeyboardSide_2 = new B._ModifierSidePair(C.ModifierKey_3, C.KeyboardSide_2); C._ModifierSidePair_ModifierKey_3_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_3, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_4_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_4, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_5_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_5, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_6_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_6, C.KeyboardSide_3); C._ModifierSidePair_ModifierKey_7_KeyboardSide_3 = new B._ModifierSidePair(C.ModifierKey_7, C.KeyboardSide_3); C._NoInputBorder_EYU = new F._NoInputBorder(C.BorderSide_m7u); C._NullWidget_null0 = new S._NullWidget0(null); C._NullWidget_null = new L._NullWidget1(null); C._NullWidget_null1 = new L._NullWidget3(null); C._ParagraphCommandType_0 = new H._ParagraphCommandType("_ParagraphCommandType.addText"); C._ParagraphCommandType_1 = new H._ParagraphCommandType("_ParagraphCommandType.pop"); C._ParagraphCommandType_2 = new H._ParagraphCommandType("_ParagraphCommandType.pushStyle"); C._ParagraphCommandType_3 = new H._ParagraphCommandType("_ParagraphCommandType.addPlaceholder"); C._ParagraphCommand_rx2 = new H._ParagraphCommand(C._ParagraphCommandType_1, null, null, null); C._PdfViewLoadingState_0 = new X._PdfViewLoadingState("_PdfViewLoadingState.loading"); C._PdfViewLoadingState_1 = new X._PdfViewLoadingState("_PdfViewLoadingState.error"); C._PdfViewLoadingState_2 = new X._PdfViewLoadingState("_PdfViewLoadingState.success"); C._PixelVerticalDirection_0 = new R._PixelVerticalDirection("_PixelVerticalDirection.over"); C._PixelVerticalDirection_1 = new R._PixelVerticalDirection("_PixelVerticalDirection.center"); C._PixelVerticalDirection_2 = new R._PixelVerticalDirection("_PixelVerticalDirection.under"); C._PlaceholderType_0 = new Y._PlaceholderType("_PlaceholderType.none"); C._PlaceholderType_1 = new Y._PlaceholderType("_PlaceholderType.static"); C._PlaceholderType_2 = new Y._PlaceholderType("_PlaceholderType.progress"); C._RefreshIndicatorMode_0 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.drag"); C._RefreshIndicatorMode_1 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.armed"); C._RefreshIndicatorMode_2 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.snap"); C._RefreshIndicatorMode_3 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.refresh"); C._RefreshIndicatorMode_4 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.done"); C._RefreshIndicatorMode_5 = new N._RefreshIndicatorMode("_RefreshIndicatorMode.canceled"); C._RegisterBinaryZoneFunction_kGu = new P._RegisterBinaryZoneFunction(C.C__RootZone, P.async___rootRegisterBinaryCallback$closure()); C._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback = new P._RegisterNullaryZoneFunction(C.C__RootZone, P.async___rootRegisterCallback$closure()); C._RegisterUnaryZoneFunction_Bqo = new P._RegisterUnaryZoneFunction(C.C__RootZone, P.async___rootRegisterUnaryCallback$closure()); C._RouteLifecycle_0 = new K._RouteLifecycle(0, "_RouteLifecycle.staging"); C._RouteLifecycle_1 = new K._RouteLifecycle(1, "_RouteLifecycle.add"); C._RouteLifecycle_10 = new K._RouteLifecycle(10, "_RouteLifecycle.popping"); C._RouteLifecycle_11 = new K._RouteLifecycle(11, "_RouteLifecycle.removing"); C._RouteLifecycle_12 = new K._RouteLifecycle(12, "_RouteLifecycle.dispose"); C._RouteLifecycle_13 = new K._RouteLifecycle(13, "_RouteLifecycle.disposed"); C._RouteLifecycle_2 = new K._RouteLifecycle(2, "_RouteLifecycle.adding"); C._RouteLifecycle_3 = new K._RouteLifecycle(3, "_RouteLifecycle.push"); C._RouteLifecycle_4 = new K._RouteLifecycle(4, "_RouteLifecycle.pushReplace"); C._RouteLifecycle_5 = new K._RouteLifecycle(5, "_RouteLifecycle.pushing"); C._RouteLifecycle_6 = new K._RouteLifecycle(6, "_RouteLifecycle.replace"); C._RouteLifecycle_7 = new K._RouteLifecycle(7, "_RouteLifecycle.idle"); C._RouteLifecycle_8 = new K._RouteLifecycle(8, "_RouteLifecycle.pop"); C._RouteLifecycle_9 = new K._RouteLifecycle(9, "_RouteLifecycle.remove"); C._RunBinaryZoneFunction__RootZone__rootRunBinary = new P._RunBinaryZoneFunction(C.C__RootZone, P.async___rootRunBinary$closure()); C._RunNullaryZoneFunction__RootZone__rootRun = new P._RunNullaryZoneFunction(C.C__RootZone, P.async___rootRun$closure()); C._RunUnaryZoneFunction__RootZone__rootRunUnary = new P._RunUnaryZoneFunction(C.C__RootZone, P.async___rootRunUnary$closure()); C._ScaffoldSlot_0 = new M._ScaffoldSlot("_ScaffoldSlot.body"); C._ScaffoldSlot_1 = new M._ScaffoldSlot("_ScaffoldSlot.appBar"); C._ScaffoldSlot_10 = new M._ScaffoldSlot("_ScaffoldSlot.statusBar"); C._ScaffoldSlot_2 = new M._ScaffoldSlot("_ScaffoldSlot.bodyScrim"); C._ScaffoldSlot_3 = new M._ScaffoldSlot("_ScaffoldSlot.bottomSheet"); C._ScaffoldSlot_4 = new M._ScaffoldSlot("_ScaffoldSlot.snackBar"); C._ScaffoldSlot_5 = new M._ScaffoldSlot("_ScaffoldSlot.persistentFooter"); C._ScaffoldSlot_6 = new M._ScaffoldSlot("_ScaffoldSlot.bottomNavigationBar"); C._ScaffoldSlot_7 = new M._ScaffoldSlot("_ScaffoldSlot.floatingActionButton"); C._ScaffoldSlot_8 = new M._ScaffoldSlot("_ScaffoldSlot.drawer"); C._ScaffoldSlot_9 = new M._ScaffoldSlot("_ScaffoldSlot.endDrawer"); C._ScaleState_0 = new B._ScaleState(0, "_ScaleState.ready"); C._ScaleState_1 = new B._ScaleState(1, "_ScaleState.possible"); C._ScaleState_2 = new B._ScaleState(2, "_ScaleState.accepted"); C._ScaleState_3 = new B._ScaleState(3, "_ScaleState.started"); C._StateLifecycle_0 = new N._StateLifecycle("_StateLifecycle.created"); C._StringStackTrace_3uE = new P._StringStackTrace(""); C._SwitchListTileType_0 = new O._SwitchListTileType("_SwitchListTileType.material"); C._SwitchListTileType_1 = new O._SwitchListTileType("_SwitchListTileType.adaptive"); C._SwitchType_0 = new N._SwitchType("_SwitchType.material"); C._SwitchType_1 = new N._SwitchType("_SwitchType.adaptive"); C._TextSelectionHandlePosition_0 = new F._TextSelectionHandlePosition("_TextSelectionHandlePosition.start"); C._TextSelectionHandlePosition_1 = new F._TextSelectionHandlePosition("_TextSelectionHandlePosition.end"); C._TextThemeDefaultsBuilder_1yH = new R._TextThemeDefaultsBuilder(C.CupertinoDynamicColor_qQo, C.CupertinoDynamicColor_YIZ); C._TimePickerMode_0 = new M._TimePickerMode("_TimePickerMode.hour"); C._TimePickerMode_1 = new M._TimePickerMode("_TimePickerMode.minute"); C._ToolbarSlot_0 = new E._ToolbarSlot("_ToolbarSlot.leading"); C._ToolbarSlot_1 = new E._ToolbarSlot("_ToolbarSlot.middle"); C._ToolbarSlot_2 = new E._ToolbarSlot("_ToolbarSlot.trailing"); C._TrainHoppingMode_0 = new S._TrainHoppingMode("_TrainHoppingMode.minimize"); C._TrainHoppingMode_1 = new S._TrainHoppingMode("_TrainHoppingMode.maximize"); C._WordWrapParseMode_0 = new Y._WordWrapParseMode("_WordWrapParseMode.inSpace"); C._WordWrapParseMode_1 = new Y._WordWrapParseMode("_WordWrapParseMode.inWord"); C._WordWrapParseMode_2 = new Y._WordWrapParseMode("_WordWrapParseMode.atBreak"); C._ZoneFunction_3bB = new P._ZoneFunction(C.C__RootZone, P.async___rootCreatePeriodicTimer$closure(), H.findType("_ZoneFunction")); C._ZoneFunction_NMc = new P._ZoneFunction(C.C__RootZone, P.async___rootHandleUncaughtError$closure(), H.findType("_ZoneFunction<~(Zone*,ZoneDelegate*,Zone*,Object*,StackTrace*)*>")); C._ZoneFunction__RootZone__rootCreateTimer = new P._ZoneFunction(C.C__RootZone, P.async___rootCreateTimer$closure(), H.findType("_ZoneFunction")); C._ZoneFunction__RootZone__rootErrorCallback = new P._ZoneFunction(C.C__RootZone, P.async___rootErrorCallback$closure(), H.findType("_ZoneFunction")); C._ZoneFunction__RootZone__rootFork = new P._ZoneFunction(C.C__RootZone, P.async___rootFork$closure(), H.findType("_ZoneFunction?)*>")); C._ZoneFunction__RootZone__rootPrint = new P._ZoneFunction(C.C__RootZone, P.async___rootPrint$closure(), H.findType("_ZoneFunction<~(Zone*,ZoneDelegate*,Zone*,String*)*>")); C._ZoneFunction__RootZone__rootScheduleMicrotask = new P._ZoneFunction(C.C__RootZone, P.async___rootScheduleMicrotask$closure(), H.findType("_ZoneFunction<~(Zone*,ZoneDelegate*,Zone*,~()*)*>")); C._ZoneSpecification_ALf = new P._ZoneSpecification(null, null, null, null, null, null, null, null, null, null, null, null, null); })(); (function staticFields() { $._engineInitialized = false; $._hotRestartListeners = H.setRuntimeTypeInfo([], type$.JSArray_of_void_Function); $.___browserEngine = $; $.___operatingSystem = $; $._cachedWebGLVersion = null; $.__canvasKit = $; $._skiaFontCollection = null; $.skiaSceneHost = null; $.SkiaObjects_resurrectableObjects = H.setRuntimeTypeInfo([], H.findType("JSArray>")); $.SkiaObjects_cachesToResize = H.setRuntimeTypeInfo([], H.findType("JSArray")); $.SkiaObjects__addedCleanupCallback = false; $.Surface__didWarnAboutWebGlInitializationFailure = false; $.DomRenderer__ellipseFeatureDetected = null; $._frameReferences = H.setRuntimeTypeInfo([], type$.JSArray_FrameReference_dynamic); $._filterIdCounter = 0; $._recycledCanvases = H.setRuntimeTypeInfo([], H.findType("JSArray")); $._paintQueue = H.setRuntimeTypeInfo([], type$.JSArray__PaintRequest); $._glRenderer = null; $._WebGlRenderer__baseVertexShader = null; $._GlContext____programCache = $; $.SurfaceSceneBuilder__webOnlyDidWarnAboutPerformanceOverlay = false; $.SurfaceSceneBuilder__lastFrameScene = null; $._retainedSurfaces = H.setRuntimeTypeInfo([], type$.JSArray_PersistedSurface); $.Keyboard__instance = null; $.KeyboardBinding__instance = null; $.MouseCursor__instance = null; $.scheduleFrameCallback = null; $.pluginMessageCallHandler = null; $.PointerBinding__instance = null; $._BaseAdapter__listeners = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event); $._BaseAdapter__nativeListeners = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic_Function_Event); $._WheelEventListenerMixin__defaultScrollLineHeight = null; $._PointerState__pointerCount = 0; $._frameTimings = H.setRuntimeTypeInfo([], type$.JSArray_FrameTiming); $._vsyncStartMicros = -1; $._buildStartMicros = -1; $._buildFinishMicros = -1; $._rasterStartMicros = -1; $._rasterFinishMicros = -1; $.AccessibilityAnnouncements__instance = null; $.EngineSemanticsOwner__instance = null; $.SemanticsTextEditingStrategy__instance = null; $.Spanometer__rulers = P.LinkedHashMap_LinkedHashMap$_empty(H.findType("TextHeightStyle"), H.findType("TextHeightRuler")); $.TextMeasurementService_rulerManager = null; $.DomTextMeasurementService__instance = null; $.CanvasTextMeasurementService__instance = null; $._lastStart = -1; $._lastEnd = -1; $._lastText = ""; $._lastCssFont = ""; $._lastWidth = -1; $._clipIdCounter = 0; $._fontChangeScheduled = false; $.WebExperiments_instance = null; $._isUrlStrategySet = false; $._customUrlStrategy = null; $._JS_INTEROP_INTERCEPTOR_TAG = null; $.printToZone = null; $.Primitives_timerFrequency = 0; $.Primitives_timerTicks = H._js_helper_Primitives_dateNow$closure(); $.Closure_functionCounter = 0; $.BoundClosure_selfFieldNameCache = null; $.BoundClosure_receiverFieldNameCache = null; $.getTagFunction = null; $.alternateTagFunction = null; $.prototypeForTagFunction = null; $.dispatchRecordsForInstanceTags = null; $.interceptorsForUncacheableTags = null; $.initNativeDispatchFlag = null; $._nextCallback = null; $._lastCallback = null; $._lastPriorityCallback = null; $._isInCallbackLoop = false; $.Zone__current = C.C__RootZone; $._RootZone__rootDelegate = null; $._toStringVisiting = H.setRuntimeTypeInfo([], type$.JSArray_Object); $.Encoding__nameToEncoding = P.LinkedHashMap_LinkedHashMap$_literal(["iso_8859-1:1987", C.C_Latin1Codec, "iso-ir-100", C.C_Latin1Codec, "iso_8859-1", C.C_Latin1Codec, "iso-8859-1", C.C_Latin1Codec, "latin1", C.C_Latin1Codec, "l1", C.C_Latin1Codec, "ibm819", C.C_Latin1Codec, "cp819", C.C_Latin1Codec, "csisolatin1", C.C_Latin1Codec, "iso-ir-6", C.C_AsciiCodec, "ansi_x3.4-1968", C.C_AsciiCodec, "ansi_x3.4-1986", C.C_AsciiCodec, "iso_646.irv:1991", C.C_AsciiCodec, "iso646-us", C.C_AsciiCodec, "us-ascii", C.C_AsciiCodec, "us", C.C_AsciiCodec, "ibm367", C.C_AsciiCodec, "cp367", C.C_AsciiCodec, "csascii", C.C_AsciiCodec, "ascii", C.C_AsciiCodec, "csutf8", C.C_Utf8Codec, "utf-8", C.C_Utf8Codec], type$.String, H.findType("Encoding")); $.Expando__keyCount = 0; $._BigIntImpl__lastDividendDigits = null; $._BigIntImpl__lastDividendUsed = null; $._BigIntImpl__lastDivisorDigits = null; $._BigIntImpl__lastDivisorUsed = null; $._BigIntImpl____lastQuoRemDigits = $; $._BigIntImpl____lastQuoRemUsed = $; $._BigIntImpl____lastRemUsed = $; $._BigIntImpl____lastRem_nsh = $; $._extensions = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("Future(String,Map)")); $.Timeline__stack = H.setRuntimeTypeInfo([], H.findType("JSArray<_SyncBlock?>")); $.Element__parseDocument = null; $.Element__parseRange = null; $.Element__defaultValidator = null; $.Element__defaultSanitizer = null; $._Html5NodeValidator__attributeValidators = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Function); $._Platform__environmentCache = null; $._Platform__cachedOSVersion = null; $._stdin = null; $._stdout = null; $._assetManager = null; $._fontCollection = null; $.Deflate____config = $; $._indentingBuiltValueToStringHelperIndent = 0; $.FilePickerIO__eventSubscription = null; $.FlutterErrorDetails_propertiesTransformers = H.setRuntimeTypeInfo([], H.findType("JSArray(Iterable)>")); $.FlutterError_onError = U.assertions_FlutterError__defaultErrorHandler$closure(); $.FlutterError_presentError = U.assertions_FlutterError_dumpErrorToConsole$closure(); $.FlutterError__errorCount = 0; $.FlutterError__stackFilters = H.setRuntimeTypeInfo([], H.findType("JSArray")); $.debugBrightnessOverride = null; $.LicenseRegistry__collectors = null; $._debugPrintedCharacters = 0; $._debugPrintCompleter = null; $._debugPrintScheduled = false; $.GestureBinding__instance = null; $.PaintingBinding__instance = null; $._pendingImageSizeInfo = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.ImageSizeInfo); $._lastFrameImageSizeInfo = P.LinkedHashSet_LinkedHashSet$_empty(type$.ImageSizeInfo); $.MatrixUtils____minMax = $; $.RendererBinding__instance = null; $._timeDilation = 1; $.SchedulerBinding__instance = null; $.SemanticsBinding__instance = null; $.CustomSemanticsAction__nextId = 0; $.CustomSemanticsAction__actions = P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.CustomSemanticsAction); $.CustomSemanticsAction__ids = P.LinkedHashMap_LinkedHashMap$_empty(type$.CustomSemanticsAction, type$.int); $.SemanticsNode__lastIdentifier = 0; $.ServicesBinding__instance = null; $._DefaultBinaryMessenger__handlers = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("Future?(ByteData?)")); $._DefaultBinaryMessenger__mockHandlers = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("Future?(ByteData?)")); $.LogicalKeyboardKey__synonyms = function() { var t1 = type$.LogicalKeyboardKey; return P.LinkedHashMap_LinkedHashMap$_literal([C.LogicalKeyboardKey_4295426273, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426277, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426275, C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426279, C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426274, C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426278, C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426272, C.LogicalKeyboardKey_2203318681824, C.LogicalKeyboardKey_4295426276, C.LogicalKeyboardKey_2203318681824], t1, t1); }(); $.RawKeyboard__modifierKeyMap = function() { var t1 = type$.PhysicalKeyboardKey; return P.LinkedHashMap_LinkedHashMap$_literal([C._ModifierSidePair_ModifierKey_2_KeyboardSide_1, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458978], t1), C._ModifierSidePair_ModifierKey_2_KeyboardSide_2, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458982], t1), C._ModifierSidePair_ModifierKey_2_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458978, C.PhysicalKeyboardKey_458982], t1), C._ModifierSidePair_ModifierKey_2_KeyboardSide_0, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458978], t1), C._ModifierSidePair_ModifierKey_1_KeyboardSide_1, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458977], t1), C._ModifierSidePair_ModifierKey_1_KeyboardSide_2, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458981], t1), C._ModifierSidePair_ModifierKey_1_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458977, C.PhysicalKeyboardKey_458981], t1), C._ModifierSidePair_ModifierKey_1_KeyboardSide_0, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458977], t1), C._ModifierSidePair_ModifierKey_0_KeyboardSide_1, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458976], t1), C._ModifierSidePair_ModifierKey_0_KeyboardSide_2, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458980], t1), C._ModifierSidePair_ModifierKey_0_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458976, C.PhysicalKeyboardKey_458980], t1), C._ModifierSidePair_ModifierKey_0_KeyboardSide_0, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458976], t1), C._ModifierSidePair_ModifierKey_3_KeyboardSide_1, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458979], t1), C._ModifierSidePair_ModifierKey_3_KeyboardSide_2, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458983], t1), C._ModifierSidePair_ModifierKey_3_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458979, C.PhysicalKeyboardKey_458983], t1), C._ModifierSidePair_ModifierKey_3_KeyboardSide_0, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458979], t1), C._ModifierSidePair_ModifierKey_4_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458809], t1), C._ModifierSidePair_ModifierKey_5_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458835], t1), C._ModifierSidePair_ModifierKey_6_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_458823], t1), C._ModifierSidePair_ModifierKey_7_KeyboardSide_3, P.LinkedHashSet_LinkedHashSet$_literal([C.PhysicalKeyboardKey_18], t1)], H.findType("_ModifierSidePair"), H.findType("Set")); }(); $.RawKeyboard__allModifiersExceptFn = P.LinkedHashMap_LinkedHashMap$_literal([C.PhysicalKeyboardKey_458978, C.LogicalKeyboardKey_4295426274, C.PhysicalKeyboardKey_458982, C.LogicalKeyboardKey_4295426278, C.PhysicalKeyboardKey_458977, C.LogicalKeyboardKey_4295426273, C.PhysicalKeyboardKey_458981, C.LogicalKeyboardKey_4295426277, C.PhysicalKeyboardKey_458976, C.LogicalKeyboardKey_4295426272, C.PhysicalKeyboardKey_458980, C.LogicalKeyboardKey_4295426276, C.PhysicalKeyboardKey_458979, C.LogicalKeyboardKey_4295426275, C.PhysicalKeyboardKey_458983, C.LogicalKeyboardKey_4295426279, C.PhysicalKeyboardKey_458809, C.LogicalKeyboardKey_4295426105, C.PhysicalKeyboardKey_458835, C.LogicalKeyboardKey_4295426131, C.PhysicalKeyboardKey_458823, C.LogicalKeyboardKey_4295426119], type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey); $.SystemChrome__pendingStyle = null; $.SystemChrome__latestStyle = null; $.TextInputConnection__nextId = 1; $.WidgetsApp_showPerformanceOverlayOverride = false; $.WidgetsBinding__instance = null; $.debugProfileBuildsEnabled = false; $.Element__nextHashCode = 1; $._NBSample__splinePosition = H.setRuntimeTypeInfo([0.000022888183591973643, 0.028561000304762274, 0.05705195792956655, 0.08538917797618413, 0.11349556286812107, 0.14129881694635613, 0.16877157254923383, 0.19581093511175632, 0.22239649722992452, 0.24843841866631658, 0.2740024733220569, 0.298967680744136, 0.32333234658228116, 0.34709556909569184, 0.3702249257894571, 0.39272483400399893, 0.41456988647721615, 0.43582889025419114, 0.4564192786416, 0.476410299013587, 0.4957560715637827, 0.5145493169954743, 0.5327205670880077, 0.5502846891191615, 0.5673274324802855, 0.583810881323224, 0.5997478744397482, 0.615194045299478, 0.6301165005270208, 0.6445484042257972, 0.6585198219185201, 0.6720397744233084, 0.6850997688076114, 0.6977281404741683, 0.7099506591298411, 0.7217749311525871, 0.7331784038850426, 0.7442308394229518, 0.7549087205105974, 0.7652471277371271, 0.7752251637549381, 0.7848768260203478, 0.7942056937103814, 0.8032299679689082, 0.8119428702388629, 0.8203713516576219, 0.8285187880808974, 0.8363794492831295, 0.8439768562813565, 0.851322799855549, 0.8584111051351724, 0.8652534074722162, 0.8718525580962131, 0.8782333271742155, 0.8843892099362031, 0.8903155590440985, 0.8960465359221951, 0.9015574505919048, 0.9068736766459904, 0.9119951682409297, 0.9169321898723632, 0.9216747065581234, 0.9262420604674766, 0.9306331858366086, 0.9348476990715433, 0.9389007110754832, 0.9427903495057521, 0.9465220679845756, 0.9500943036519721, 0.9535176728088761, 0.9567898524767604, 0.959924306623116, 0.9629127700159108, 0.9657622101750765, 0.9684818726275105, 0.9710676079044347, 0.9735231939498, 0.9758514437576309, 0.9780599066560445, 0.9801485715370128, 0.9821149805689633, 0.9839677526782791, 0.9857085499421516, 0.9873347811966005, 0.9888547171706613, 0.9902689443512227, 0.9915771042095881, 0.9927840651641069, 0.9938913963715834, 0.9948987305580712, 0.9958114963810524, 0.9966274782266875, 0.997352148697352, 0.9979848677523623, 0.9985285021374979, 0.9989844084453229, 0.9993537595844986, 0.999638729860106, 0.9998403888004533, 0.9999602810470701, 1], type$.JSArray_double); $.KeySet__tempHashStore3 = H.setRuntimeTypeInfo([0, 0, 0], type$.JSArray_int); $.KeySet__tempHashStore4 = H.setRuntimeTypeInfo([0, 0, 0, 0], type$.JSArray_int); $.KeyboardVisibility__isInitialized = false; $.KeyboardVisibility_isVisible = false; $._GlobalCupertinoLocalizationsDelegate__loadedTranslations = P.LinkedHashMap_LinkedHashMap$_empty(type$.Locale, H.findType("Future")); $._MaterialLocalizationsDelegate__loadedTranslations = P.LinkedHashMap_LinkedHashMap$_empty(type$.Locale, H.findType("Future")); $._dateIntlDataInitialized = false; $.currentContext = null; $.ToastManager__instance = null; $.Intl__cachedPluralRule = null; $.Intl__cachedPluralLocale = null; $.cachedDateSymbols = null; $.lastDateSymbolLocale = null; $._defaultLocale = null; $.DateFormat__useNativeDigitsByDefault = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.bool); $.DateFormat__digitMatchers = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.RegExp); $._n = 0; $._i = 0; $._precision = null; $._v = 0; $._f = 0; $._t = 0; $.pluralRules = P.LinkedHashMap_LinkedHashMap$_literal(["af", E.plural_rules___es_rule$closure(), "am", E.plural_rules___hi_rule$closure(), "ar", E.plural_rules___ar_rule$closure(), "az", E.plural_rules___es_rule$closure(), "be", E.plural_rules___be_rule$closure(), "bg", E.plural_rules___es_rule$closure(), "bn", E.plural_rules___hi_rule$closure(), "br", E.plural_rules___br_rule$closure(), "bs", E.plural_rules___sr_rule$closure(), "ca", E.plural_rules___en_rule$closure(), "chr", E.plural_rules___es_rule$closure(), "cs", E.plural_rules___cs_rule$closure(), "cy", E.plural_rules___cy_rule$closure(), "da", E.plural_rules___da_rule$closure(), "de", E.plural_rules___en_rule$closure(), "de_AT", E.plural_rules___en_rule$closure(), "de_CH", E.plural_rules___en_rule$closure(), "el", E.plural_rules___es_rule$closure(), "en", E.plural_rules___en_rule$closure(), "en_AU", E.plural_rules___en_rule$closure(), "en_CA", E.plural_rules___en_rule$closure(), "en_GB", E.plural_rules___en_rule$closure(), "en_IE", E.plural_rules___en_rule$closure(), "en_IN", E.plural_rules___en_rule$closure(), "en_SG", E.plural_rules___en_rule$closure(), "en_US", E.plural_rules___en_rule$closure(), "en_ZA", E.plural_rules___en_rule$closure(), "es", E.plural_rules___es_rule$closure(), "es_419", E.plural_rules___es_rule$closure(), "es_ES", E.plural_rules___es_rule$closure(), "es_MX", E.plural_rules___es_rule$closure(), "es_US", E.plural_rules___es_rule$closure(), "et", E.plural_rules___en_rule$closure(), "eu", E.plural_rules___es_rule$closure(), "fa", E.plural_rules___hi_rule$closure(), "fi", E.plural_rules___en_rule$closure(), "fil", E.plural_rules___fil_rule$closure(), "fr", E.plural_rules___fr_rule$closure(), "fr_CA", E.plural_rules___fr_rule$closure(), "ga", E.plural_rules___ga_rule$closure(), "gl", E.plural_rules___en_rule$closure(), "gsw", E.plural_rules___es_rule$closure(), "gu", E.plural_rules___hi_rule$closure(), "haw", E.plural_rules___es_rule$closure(), "he", E.plural_rules___he_rule$closure(), "hi", E.plural_rules___hi_rule$closure(), "hr", E.plural_rules___sr_rule$closure(), "hu", E.plural_rules___es_rule$closure(), "hy", E.plural_rules___fr_rule$closure(), "id", E.plural_rules___default_rule$closure(), "in", E.plural_rules___default_rule$closure(), "is", E.plural_rules___is_rule$closure(), "it", E.plural_rules___en_rule$closure(), "iw", E.plural_rules___he_rule$closure(), "ja", E.plural_rules___default_rule$closure(), "ka", E.plural_rules___es_rule$closure(), "kk", E.plural_rules___es_rule$closure(), "km", E.plural_rules___default_rule$closure(), "kn", E.plural_rules___hi_rule$closure(), "ko", E.plural_rules___default_rule$closure(), "ky", E.plural_rules___es_rule$closure(), "ln", E.plural_rules___ak_rule$closure(), "lo", E.plural_rules___default_rule$closure(), "lt", E.plural_rules___lt_rule$closure(), "lv", E.plural_rules___lv_rule$closure(), "mk", E.plural_rules___mk_rule$closure(), "ml", E.plural_rules___es_rule$closure(), "mn", E.plural_rules___es_rule$closure(), "mo", E.plural_rules___ro_rule$closure(), "mr", E.plural_rules___hi_rule$closure(), "ms", E.plural_rules___default_rule$closure(), "mt", E.plural_rules___mt_rule$closure(), "my", E.plural_rules___default_rule$closure(), "nb", E.plural_rules___es_rule$closure(), "ne", E.plural_rules___es_rule$closure(), "nl", E.plural_rules___en_rule$closure(), "no", E.plural_rules___es_rule$closure(), "no_NO", E.plural_rules___es_rule$closure(), "or", E.plural_rules___es_rule$closure(), "pa", E.plural_rules___ak_rule$closure(), "pl", E.plural_rules___pl_rule$closure(), "pt", E.plural_rules___pt_rule$closure(), "pt_BR", E.plural_rules___pt_rule$closure(), "pt_PT", E.plural_rules___pt_PT_rule$closure(), "ro", E.plural_rules___ro_rule$closure(), "ru", E.plural_rules___ru_rule$closure(), "sh", E.plural_rules___sr_rule$closure(), "si", E.plural_rules___si_rule$closure(), "sk", E.plural_rules___cs_rule$closure(), "sl", E.plural_rules___sl_rule$closure(), "sq", E.plural_rules___es_rule$closure(), "sr", E.plural_rules___sr_rule$closure(), "sr_Latn", E.plural_rules___sr_rule$closure(), "sv", E.plural_rules___en_rule$closure(), "sw", E.plural_rules___en_rule$closure(), "ta", E.plural_rules___es_rule$closure(), "te", E.plural_rules___es_rule$closure(), "th", E.plural_rules___default_rule$closure(), "tl", E.plural_rules___fil_rule$closure(), "tr", E.plural_rules___es_rule$closure(), "uk", E.plural_rules___ru_rule$closure(), "ur", E.plural_rules___en_rule$closure(), "uz", E.plural_rules___es_rule$closure(), "vi", E.plural_rules___default_rule$closure(), "zh", E.plural_rules___default_rule$closure(), "zh_CN", E.plural_rules___default_rule$closure(), "zh_HK", E.plural_rules___default_rule$closure(), "zh_TW", E.plural_rules___default_rule$closure(), "zu", E.plural_rules___hi_rule$closure(), "default", E.plural_rules___default_rule$closure()], type$.String, H.findType("PluralCase()")); $.kCustomLabels = H.setRuntimeTypeInfo(["address1", "address2", "amount", "balance", "country", "credit", "credit_card", "date", "description", "details", "discount", "due_date", "email", "from", "hours", "id_number", "invoice", "item", "line_total", "paid_to_date", "partial_due", "payment_date", "phone", "po_number", "quantity", "quote", "rate", "service", "statement", "subtotal", "surcharge", "tax", "taxes", "terms", "to", "total", "unit_cost", "valid_until", "vat_number", "website"], type$.JSArray_legacy_String); $.BaseEntity_counter = 0; $.Debouncer_action = null; $.Debouncer_timer = null; $.kGoogleFonts = function() { var _s18_ = "UnifrakturMaguntia", t1 = type$.legacy_String; return H.setRuntimeTypeInfo([P.LinkedHashMap_LinkedHashMap$_literal(["value", "ABeeZee", "label", "ABeeZee"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Abel", "label", "Abel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Abril_Fatface", "label", "Abril Fatface"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Aclonica", "label", "Aclonica"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Acme", "label", "Acme"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Actor", "label", "Actor"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Adamina", "label", "Adamina"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Advent_Pro", "label", "Advent Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Aguafina_Script", "label", "Aguafina Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Akronim", "label", "Akronim"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Aladin", "label", "Aladin"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Aldrich", "label", "Aldrich"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alef", "label", "Alef"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya", "label", "Alegreya"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_SC", "label", "Alegreya SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_Sans", "label", "Alegreya Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alegreya_Sans_SC", "label", "Alegreya Sans SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alex_Brush", "label", "Alex Brush"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alfa_Slab_One", "label", "Alfa Slab One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alice", "label", "Alice"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alike", "label", "Alike"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Alike_Angular", "label", "Alike Angular"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Allan", "label", "Allan"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Allerta", "label", "Allerta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Allerta_Stencil", "label", "Allerta Stencil"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Allura", "label", "Allura"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra", "label", "Almendra"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra_Display", "label", "Almendra Display"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Almendra_SC", "label", "Almendra SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amarante", "label", "Amarante"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amaranth", "label", "Amaranth"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amatic_SC", "label", "Amatic SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amethysta", "label", "Amethysta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amiri", "label", "Amiri"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Amita", "label", "Amita"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Anaheim", "label", "Anaheim"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Andada", "label", "Andada"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Andika", "label", "Andika"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Angkor", "label", "Angkor"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Annie_Use_Your_Telescope", "label", "Annie Use Your Telescope"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Anonymous_Pro", "label", "Anonymous Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic", "label", "Antic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic_Didone", "label", "Antic Didone"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Antic_Slab", "label", "Antic Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Anton", "label", "Anton"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arapey", "label", "Arapey"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arbutus", "label", "Arbutus"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arbutus_Slab", "label", "Arbutus Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Architects_Daughter", "label", "Architects Daughter"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Archivo_Black", "label", "Archivo Black"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Archivo_Narrow", "label", "Archivo Narrow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arimo", "label", "Arimo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arizonia", "label", "Arizonia"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Armata", "label", "Armata"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Artifika", "label", "Artifika"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arvo", "label", "Arvo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Arya", "label", "Arya"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Asap", "label", "Asap"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Asar", "label", "Asar"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Asset", "label", "Asset"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Astloch", "label", "Astloch"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Asul", "label", "Asul"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Atomic_Age", "label", "Atomic Age"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Aubrey", "label", "Aubrey"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Audiowide", "label", "Audiowide"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Autour_One", "label", "Autour One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Average", "label", "Average"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Average_Sans", "label", "Average Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Gruesa_Libre", "label", "Averia Gruesa Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Libre", "label", "Averia Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Sans_Libre", "label", "Averia Sans Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Averia_Serif_Libre", "label", "Averia Serif Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bad_Script", "label", "Bad Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Balthazar", "label", "Balthazar"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bangers", "label", "Bangers"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Basic", "label", "Basic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Battambang", "label", "Battambang"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Baumans", "label", "Baumans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bayon", "label", "Bayon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Belgrano", "label", "Belgrano"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Belleza", "label", "Belleza"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "BenchNine", "label", "BenchNine"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bentham", "label", "Bentham"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Berkshire_Swash", "label", "Berkshire Swash"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bevan", "label", "Bevan"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bigelow_Rules", "label", "Bigelow Rules"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bigshot_One", "label", "Bigshot One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bilbo", "label", "Bilbo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bilbo_Swash_Caps", "label", "Bilbo Swash Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Biryani", "label", "Biryani"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bitter", "label", "Bitter"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Black_Ops_One", "label", "Black Ops One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bokor", "label", "Bokor"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bonbon", "label", "Bonbon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Boogaloo", "label", "Boogaloo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bowlby_One", "label", "Bowlby One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bowlby_One_SC", "label", "Bowlby One SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Brawler", "label", "Brawler"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bree_Serif", "label", "Bree Serif"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bubblegum_Sans", "label", "Bubblegum Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Bubbler_One", "label", "Bubbler One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Buda", "label", "Buda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Buenard", "label", "Buenard"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Butcherman", "label", "Butcherman"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Butterfly_Kids", "label", "Butterfly Kids"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin", "label", "Cabin"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin_Condensed", "label", "Cabin Condensed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cabin_Sketch", "label", "Cabin Sketch"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Caesar_Dressing", "label", "Caesar Dressing"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cagliostro", "label", "Cagliostro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Calligraffitti", "label", "Calligraffitti"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cambay", "label", "Cambay"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cambo", "label", "Cambo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Candal", "label", "Candal"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantarell", "label", "Cantarell"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantata_One", "label", "Cantata One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cantora_One", "label", "Cantora One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Capriola", "label", "Capriola"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cardo", "label", "Cardo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Carme", "label", "Carme"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Carrois_Gothic", "label", "Carrois Gothic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Carrois_Gothic_SC", "label", "Carrois Gothic SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Carter_One", "label", "Carter One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Catamaran", "label", "Catamaran"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Caudex", "label", "Caudex"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Caveat", "label", "Caveat"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Caveat_Brush", "label", "Caveat Brush"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cedarville_Cursive", "label", "Cedarville Cursive"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ceviche_One", "label", "Ceviche One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Changa_One", "label", "Changa One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chango", "label", "Chango"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chau_Philomene_One", "label", "Chau Philomene One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chela_One", "label", "Chela One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chelsea_Market", "label", "Chelsea Market"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chenla", "label", "Chenla"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cherry_Cream_Soda", "label", "Cherry Cream Soda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cherry_Swash", "label", "Cherry Swash"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chewy", "label", "Chewy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chicle", "label", "Chicle"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chivo", "label", "Chivo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Chonburi", "label", "Chonburi"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cinzel", "label", "Cinzel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cinzel_Decorative", "label", "Cinzel Decorative"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Clicker_Script", "label", "Clicker Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Coda", "label", "Coda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Coda_Caption", "label", "Coda Caption"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Codystar", "label", "Codystar"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Combo", "label", "Combo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Comfortaa", "label", "Comfortaa"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Coming_Soon", "label", "Coming Soon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Concert_One", "label", "Concert One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Condiment", "label", "Condiment"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Content", "label", "Content"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Contrail_One", "label", "Contrail One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Convergence", "label", "Convergence"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cookie", "label", "Cookie"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Copse", "label", "Copse"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Corben", "label", "Corben"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Courgette", "label", "Courgette"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cousine", "label", "Cousine"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Coustard", "label", "Coustard"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Covered_By_Your_Grace", "label", "Covered By Your Grace"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Crafty_Girls", "label", "Crafty Girls"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Creepster", "label", "Creepster"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Crete_Round", "label", "Crete Round"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Crimson_Text", "label", "Crimson Text"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Croissant_One", "label", "Croissant One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Crushed", "label", "Crushed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cuprum", "label", "Cuprum"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cutive", "label", "Cutive"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Cutive_Mono", "label", "Cutive Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Damion", "label", "Damion"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dancing_Script", "label", "Dancing Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dangrek", "label", "Dangrek"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dawning_of_a_New_Day", "label", "Dawning of a New Day"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Days_One", "label", "Days One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dekko", "label", "Dekko"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius", "label", "Delius"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius_Swash_Caps", "label", "Delius Swash Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Delius_Unicase", "label", "Delius Unicase"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Della_Respira", "label", "Della Respira"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Denk_One", "label", "Denk One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Devonshire", "label", "Devonshire"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dhurjati", "label", "Dhurjati"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Didact_Gothic", "label", "Didact Gothic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Diplomata", "label", "Diplomata"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Diplomata_SC", "label", "Diplomata SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Domine", "label", "Domine"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Donegal_One", "label", "Donegal One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Doppio_One", "label", "Doppio One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dorsa", "label", "Dorsa"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dosis", "label", "Dosis"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dr_Sugiyama", "label", "Dr Sugiyama"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Sans", "label", "Droid Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Sans_Mono", "label", "Droid Sans Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Droid_Serif", "label", "Droid Serif"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Duru_Sans", "label", "Duru Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Dynalight", "label", "Dynalight"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "EB_Garamond", "label", "EB Garamond"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Eagle_Lake", "label", "Eagle Lake"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Eater", "label", "Eater"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Economica", "label", "Economica"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Eczar", "label", "Eczar"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ek_Mukta", "label", "Ek Mukta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Electrolize", "label", "Electrolize"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Elsie", "label", "Elsie"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Elsie_Swash_Caps", "label", "Elsie Swash Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Emblema_One", "label", "Emblema One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Emilys_Candy", "label", "Emilys Candy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Engagement", "label", "Engagement"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Englebert", "label", "Englebert"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Enriqueta", "label", "Enriqueta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Erica_One", "label", "Erica One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Esteban", "label", "Esteban"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Euphoria_Script", "label", "Euphoria Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ewert", "label", "Ewert"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Exo", "label", "Exo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Exo_2", "label", "Exo 2"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Expletus_Sans", "label", "Expletus Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fanwood_Text", "label", "Fanwood Text"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fascinate", "label", "Fascinate"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fascinate_Inline", "label", "Fascinate Inline"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Faster_One", "label", "Faster One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fasthand", "label", "Fasthand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fauna_One", "label", "Fauna One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Federant", "label", "Federant"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Federo", "label", "Federo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Felipa", "label", "Felipa"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fenix", "label", "Fenix"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Finger_Paint", "label", "Finger Paint"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fira_Mono", "label", "Fira Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fira_Sans", "label", "Fira Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fjalla_One", "label", "Fjalla One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fjord_One", "label", "Fjord One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Flamenco", "label", "Flamenco"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Flavors", "label", "Flavors"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fondamento", "label", "Fondamento"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fontdiner_Swanky", "label", "Fontdiner Swanky"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Forum", "label", "Forum"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Francois_One", "label", "Francois One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Freckle_Face", "label", "Freckle Face"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fredericka_the_Great", "label", "Fredericka the Great"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fredoka_One", "label", "Fredoka One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Freehand", "label", "Freehand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fresca", "label", "Fresca"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Frijole", "label", "Frijole"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fruktur", "label", "Fruktur"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Fugaz_One", "label", "Fugaz One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "GFS_Didot", "label", "GFS Didot"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "GFS_Neohellenic", "label", "GFS Neohellenic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gabriela", "label", "Gabriela"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gafata", "label", "Gafata"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Galdeano", "label", "Galdeano"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Galindo", "label", "Galindo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gentium_Basic", "label", "Gentium Basic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gentium_Book_Basic", "label", "Gentium Book Basic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Geo", "label", "Geo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Geostar", "label", "Geostar"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Geostar_Fill", "label", "Geostar Fill"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Germania_One", "label", "Germania One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gidugu", "label", "Gidugu"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gilda_Display", "label", "Gilda Display"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Give_You_Glory", "label", "Give You Glory"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Glass_Antiqua", "label", "Glass Antiqua"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Glegoo", "label", "Glegoo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gloria_Hallelujah", "label", "Gloria Hallelujah"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Goblin_One", "label", "Goblin One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gochi_Hand", "label", "Gochi Hand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gorditas", "label", "Gorditas"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Goudy_Bookletter_1911", "label", "Goudy Bookletter 1911"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Graduate", "label", "Graduate"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Grand_Hotel", "label", "Grand Hotel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gravitas_One", "label", "Gravitas One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Great_Vibes", "label", "Great Vibes"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Griffy", "label", "Griffy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gruppo", "label", "Gruppo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gudea", "label", "Gudea"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Gurajada", "label", "Gurajada"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Habibi", "label", "Habibi"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Halant", "label", "Halant"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hammersmith_One", "label", "Hammersmith One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanalei", "label", "Hanalei"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanalei_Fill", "label", "Hanalei Fill"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Handlee", "label", "Handlee"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hanuman", "label", "Hanuman"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Happy_Monkey", "label", "Happy Monkey"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Headland_One", "label", "Headland One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Henny_Penny", "label", "Henny Penny"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Herr_Von_Muellerhoff", "label", "Herr Von Muellerhoff"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind", "label", "Hind"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind_Siliguri", "label", "Hind Siliguri"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Hind_Vadodara", "label", "Hind Vadodara"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Holtwood_One_SC", "label", "Holtwood One SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Homemade_Apple", "label", "Homemade Apple"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Homenaje", "label", "Homenaje"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_DW_Pica", "label", "IM Fell DW Pica"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_DW_Pica_SC", "label", "IM Fell DW Pica SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Double_Pica", "label", "IM Fell Double Pica"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Double_Pica_SC", "label", "IM Fell Double Pica SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_English", "label", "IM Fell English"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_English_SC", "label", "IM Fell English SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_French_Canon", "label", "IM Fell French Canon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_French_Canon_SC", "label", "IM Fell French Canon SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Great_Primer", "label", "IM Fell Great Primer"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "IM_Fell_Great_Primer_SC", "label", "IM Fell Great Primer SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Iceberg", "label", "Iceberg"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Iceland", "label", "Iceland"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Imprima", "label", "Imprima"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Inconsolata", "label", "Inconsolata"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Inder", "label", "Inder"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Indie_Flower", "label", "Indie Flower"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Inika", "label", "Inika"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Inknut_Antiqua", "label", "Inknut Antiqua"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Irish_Grover", "label", "Irish Grover"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Istok_Web", "label", "Istok Web"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Italiana", "label", "Italiana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Italianno", "label", "Italianno"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Itim", "label", "Itim"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jacques_Francois", "label", "Jacques Francois"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jacques_Francois_Shadow", "label", "Jacques Francois Shadow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jaldi", "label", "Jaldi"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jim_Nightshade", "label", "Jim Nightshade"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jockey_One", "label", "Jockey One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jolly_Lodger", "label", "Jolly Lodger"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Josefin_Sans", "label", "Josefin Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Josefin_Slab", "label", "Josefin Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Joti_One", "label", "Joti One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Judson", "label", "Judson"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Julee", "label", "Julee"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Julius_Sans_One", "label", "Julius Sans One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Junge", "label", "Junge"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Jura", "label", "Jura"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Just_Another_Hand", "label", "Just Another Hand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Just_Me_Again_Down_Here", "label", "Just Me Again Down Here"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kadwa", "label", "Kadwa"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kalam", "label", "Kalam"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kameron", "label", "Kameron"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kantumruy", "label", "Kantumruy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Karla", "label", "Karla"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Karma", "label", "Karma"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kaushan_Script", "label", "Kaushan Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kavoon", "label", "Kavoon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kdam_Thmor", "label", "Kdam Thmor"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Keania_One", "label", "Keania One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kelly_Slab", "label", "Kelly Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kenia", "label", "Kenia"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Khand", "label", "Khand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Khmer", "label", "Khmer"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Khula", "label", "Khula"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kite_One", "label", "Kite One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Knewave", "label", "Knewave"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kotta_One", "label", "Kotta One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Koulen", "label", "Koulen"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kranky", "label", "Kranky"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kreon", "label", "Kreon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kristi", "label", "Kristi"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Krona_One", "label", "Krona One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Kurale", "label", "Kurale"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "La_Belle_Aurore", "label", "La Belle Aurore"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Laila", "label", "Laila"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lakki_Reddy", "label", "Lakki Reddy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lancelot", "label", "Lancelot"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lateef", "label", "Lateef"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lato", "label", "Lato"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "League_Script", "label", "League Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Leckerli_One", "label", "Leckerli One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ledger", "label", "Ledger"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lekton", "label", "Lekton"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lemon", "label", "Lemon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Libre_Baskerville", "label", "Libre Baskerville"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Life_Savers", "label", "Life Savers"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lilita_One", "label", "Lilita One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lily_Script_One", "label", "Lily Script One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Limelight", "label", "Limelight"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Linden_Hill", "label", "Linden Hill"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lobster", "label", "Lobster"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lobster_Two", "label", "Lobster Two"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Outline", "label", "Londrina Outline"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Shadow", "label", "Londrina Shadow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Sketch", "label", "Londrina Sketch"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Londrina_Solid", "label", "Londrina Solid"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lora", "label", "Lora"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Love_Ya_Like_A_Sister", "label", "Love Ya Like A Sister"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Loved_by_the_King", "label", "Loved by the King"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lovers_Quarrel", "label", "Lovers Quarrel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Luckiest_Guy", "label", "Luckiest Guy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lusitana", "label", "Lusitana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Lustria", "label", "Lustria"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Macondo", "label", "Macondo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Macondo_Swash_Caps", "label", "Macondo Swash Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Magra", "label", "Magra"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Maiden_Orange", "label", "Maiden Orange"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mako", "label", "Mako"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mallanna", "label", "Mallanna"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mandali", "label", "Mandali"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marcellus", "label", "Marcellus"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marcellus_SC", "label", "Marcellus SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marck_Script", "label", "Marck Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Margarine", "label", "Margarine"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marko_One", "label", "Marko One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marmelad", "label", "Marmelad"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Martel", "label", "Martel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Martel_Sans", "label", "Martel Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Marvel", "label", "Marvel"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mate", "label", "Mate"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mate_SC", "label", "Mate SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Maven_Pro", "label", "Maven Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "McLaren", "label", "McLaren"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Meddon", "label", "Meddon"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "MedievalSharp", "label", "MedievalSharp"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Medula_One", "label", "Medula One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Megrim", "label", "Megrim"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Meie_Script", "label", "Meie Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Merienda", "label", "Merienda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Merienda_One", "label", "Merienda One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Merriweather", "label", "Merriweather"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Merriweather_Sans", "label", "Merriweather Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Metal", "label", "Metal"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Metal_Mania", "label", "Metal Mania"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Metamorphous", "label", "Metamorphous"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Metrophobic", "label", "Metrophobic"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Michroma", "label", "Michroma"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Milonga", "label", "Milonga"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Miltonian", "label", "Miltonian"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Miltonian_Tattoo", "label", "Miltonian Tattoo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Miniver", "label", "Miniver"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Miss_Fajardose", "label", "Miss Fajardose"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Modak", "label", "Modak"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Modern_Antiqua", "label", "Modern Antiqua"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Molengo", "label", "Molengo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Molle", "label", "Molle"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Monda", "label", "Monda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Monofett", "label", "Monofett"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Monoton", "label", "Monoton"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Monsieur_La_Doulaise", "label", "Monsieur La Doulaise"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Montaga", "label", "Montaga"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Montez", "label", "Montez"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat", "label", "Montserrat"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat_Alternates", "label", "Montserrat Alternates"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Montserrat_Subrayada", "label", "Montserrat Subrayada"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Moul", "label", "Moul"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Moulpali", "label", "Moulpali"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mountains_of_Christmas", "label", "Mountains of Christmas"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mouse_Memoirs", "label", "Mouse Memoirs"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_Bedfort", "label", "Mr Bedfort"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_Dafoe", "label", "Mr Dafoe"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mr_De_Haviland", "label", "Mr De Haviland"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mrs_Saint_Delafield", "label", "Mrs Saint Delafield"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mrs_Sheppards", "label", "Mrs Sheppards"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Muli", "label", "Muli"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Mystery_Quest", "label", "Mystery Quest"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "NTR", "label", "NTR"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Neucha", "label", "Neucha"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Neuton", "label", "Neuton"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "New_Rocker", "label", "New Rocker"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "News_Cycle", "label", "News Cycle"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Niconne", "label", "Niconne"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nixie_One", "label", "Nixie One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nobile", "label", "Nobile"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nokora", "label", "Nokora"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Norican", "label", "Norican"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nosifer", "label", "Nosifer"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nothing_You_Could_Do", "label", "Nothing You Could Do"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Noticia_Text", "label", "Noticia Text"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Noto_Sans", "label", "Noto Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Noto_Serif", "label", "Noto Serif"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Cut", "label", "Nova Cut"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Flat", "label", "Nova Flat"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Mono", "label", "Nova Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Oval", "label", "Nova Oval"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Round", "label", "Nova Round"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Script", "label", "Nova Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Slim", "label", "Nova Slim"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nova_Square", "label", "Nova Square"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Numans", "label", "Numans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Nunito", "label", "Nunito"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Odor_Mean_Chey", "label", "Odor Mean Chey"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Offside", "label", "Offside"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Old_Standard_TT", "label", "Old Standard TT"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oldenburg", "label", "Oldenburg"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oleo_Script", "label", "Oleo Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oleo_Script_Swash_Caps", "label", "Oleo Script Swash Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Open_Sans", "label", "Open Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Open_Sans_Condensed", "label", "Open Sans Condensed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oranienbaum", "label", "Oranienbaum"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Orbitron", "label", "Orbitron"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oregano", "label", "Oregano"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Orienta", "label", "Orienta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Original_Surfer", "label", "Original Surfer"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oswald", "label", "Oswald"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Over_the_Rainbow", "label", "Over the Rainbow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Overlock", "label", "Overlock"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Overlock_SC", "label", "Overlock SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ovo", "label", "Ovo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oxygen", "label", "Oxygen"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Oxygen_Mono", "label", "Oxygen Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Mono", "label", "PT Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans", "label", "PT Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans_Caption", "label", "PT Sans Caption"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Sans_Narrow", "label", "PT Sans Narrow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Serif", "label", "PT Serif"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "PT_Serif_Caption", "label", "PT Serif Caption"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pacifico", "label", "Pacifico"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Palanquin", "label", "Palanquin"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Palanquin_Dark", "label", "Palanquin Dark"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Paprika", "label", "Paprika"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Parisienne", "label", "Parisienne"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Passero_One", "label", "Passero One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Passion_One", "label", "Passion One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pathway_Gothic_One", "label", "Pathway Gothic One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Patrick_Hand", "label", "Patrick Hand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Patrick_Hand_SC", "label", "Patrick Hand SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Patua_One", "label", "Patua One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Paytone_One", "label", "Paytone One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Peddana", "label", "Peddana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Peralta", "label", "Peralta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Permanent_Marker", "label", "Permanent Marker"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Petit_Formal_Script", "label", "Petit Formal Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Petrona", "label", "Petrona"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Philosopher", "label", "Philosopher"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Piedra", "label", "Piedra"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pinyon_Script", "label", "Pinyon Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pirata_One", "label", "Pirata One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Plaster", "label", "Plaster"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Play", "label", "Play"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Playball", "label", "Playball"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Playfair_Display", "label", "Playfair Display"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Playfair_Display_SC", "label", "Playfair Display SC"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Podkova", "label", "Podkova"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Poiret_One", "label", "Poiret One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Poller_One", "label", "Poller One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Poly", "label", "Poly"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pompiere", "label", "Pompiere"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pontano_Sans", "label", "Pontano Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Poppins", "label", "Poppins"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Port_Lligat_Sans", "label", "Port Lligat Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Port_Lligat_Slab", "label", "Port Lligat Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Pragati_Narrow", "label", "Pragati Narrow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Prata", "label", "Prata"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Preahvihear", "label", "Preahvihear"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Press_Start_2P", "label", "Press Start 2P"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Princess_Sofia", "label", "Princess Sofia"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Prociono", "label", "Prociono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Prosto_One", "label", "Prosto One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Puritan", "label", "Puritan"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Purple_Purse", "label", "Purple Purse"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quando", "label", "Quando"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quantico", "label", "Quantico"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quattrocento", "label", "Quattrocento"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quattrocento_Sans", "label", "Quattrocento Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Questrial", "label", "Questrial"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quicksand", "label", "Quicksand"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Quintessential", "label", "Quintessential"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Qwigley", "label", "Qwigley"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Racing_Sans_One", "label", "Racing Sans One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Radley", "label", "Radley"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rajdhani", "label", "Rajdhani"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Raleway", "label", "Raleway"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Raleway_Dots", "label", "Raleway Dots"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ramabhadra", "label", "Ramabhadra"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ramaraja", "label", "Ramaraja"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rambla", "label", "Rambla"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rammetto_One", "label", "Rammetto One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ranchers", "label", "Ranchers"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rancho", "label", "Rancho"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ranga", "label", "Ranga"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rationale", "label", "Rationale"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ravi_Prakash", "label", "Ravi Prakash"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Redressed", "label", "Redressed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Reenie_Beanie", "label", "Reenie Beanie"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Revalia", "label", "Revalia"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rhodium_Libre", "label", "Rhodium Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ribeye", "label", "Ribeye"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ribeye_Marrow", "label", "Ribeye Marrow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Righteous", "label", "Righteous"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Risque", "label", "Risque"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto", "label", "Roboto"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Condensed", "label", "Roboto Condensed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Mono", "label", "Roboto Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Roboto_Slab", "label", "Roboto Slab"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rochester", "label", "Rochester"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rock_Salt", "label", "Rock Salt"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rokkitt", "label", "Rokkitt"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Romanesco", "label", "Romanesco"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ropa_Sans", "label", "Ropa Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rosario", "label", "Rosario"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rosarivo", "label", "Rosarivo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rouge_Script", "label", "Rouge Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rozha_One", "label", "Rozha One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik", "label", "Rubik"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik_Mono_One", "label", "Rubik Mono One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rubik_One", "label", "Rubik One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruda", "label", "Ruda"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rufina", "label", "Rufina"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruge_Boogie", "label", "Ruge Boogie"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruluko", "label", "Ruluko"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rum_Raisin", "label", "Rum Raisin"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruslan_Display", "label", "Ruslan Display"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Russo_One", "label", "Russo One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ruthie", "label", "Ruthie"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Rye", "label", "Rye"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sacramento", "label", "Sacramento"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sahitya", "label", "Sahitya"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sail", "label", "Sail"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Salsa", "label", "Salsa"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sanchez", "label", "Sanchez"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sancreek", "label", "Sancreek"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sansita_One", "label", "Sansita One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarala", "label", "Sarala"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarina", "label", "Sarina"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sarpanch", "label", "Sarpanch"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Satisfy", "label", "Satisfy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Scada", "label", "Scada"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Scheherazade", "label", "Scheherazade"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Schoolbell", "label", "Schoolbell"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Seaweed_Script", "label", "Seaweed Script"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sevillana", "label", "Sevillana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Seymour_One", "label", "Seymour One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Shadows_Into_Light", "label", "Shadows Into Light"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Shadows_Into_Light_Two", "label", "Shadows Into Light Two"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Shanti", "label", "Shanti"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Share", "label", "Share"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Share_Tech", "label", "Share Tech"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Share_Tech_Mono", "label", "Share Tech Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Shojumaru", "label", "Shojumaru"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Short_Stack", "label", "Short Stack"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Siemreap", "label", "Siemreap"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sigmar_One", "label", "Sigmar One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Signika", "label", "Signika"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Signika_Negative", "label", "Signika Negative"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Simonetta", "label", "Simonetta"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sintony", "label", "Sintony"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sirin_Stencil", "label", "Sirin Stencil"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Six_Caps", "label", "Six Caps"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Skranji", "label", "Skranji"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Slabo_13px", "label", "Slabo 13px"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Slabo_27px", "label", "Slabo 27px"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Slackey", "label", "Slackey"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Smokum", "label", "Smokum"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Smythe", "label", "Smythe"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sniglet", "label", "Sniglet"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Snippet", "label", "Snippet"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Snowburst_One", "label", "Snowburst One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sofadi_One", "label", "Sofadi One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sofia", "label", "Sofia"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sonsie_One", "label", "Sonsie One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sorts_Mill_Goudy", "label", "Sorts Mill Goudy"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Code_Pro", "label", "Source Code Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Sans_Pro", "label", "Source Sans Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Source_Serif_Pro", "label", "Source Serif Pro"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Special_Elite", "label", "Special Elite"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Spicy_Rice", "label", "Spicy Rice"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Spinnaker", "label", "Spinnaker"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Spirax", "label", "Spirax"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Squada_One", "label", "Squada One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sree_Krushnadevaraya", "label", "Sree Krushnadevaraya"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stalemate", "label", "Stalemate"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stalinist_One", "label", "Stalinist One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stardos_Stencil", "label", "Stardos Stencil"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stint_Ultra_Condensed", "label", "Stint Ultra Condensed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stint_Ultra_Expanded", "label", "Stint Ultra Expanded"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Stoke", "label", "Stoke"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Strait", "label", "Strait"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sue_Ellen_Francisco", "label", "Sue Ellen Francisco"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sumana", "label", "Sumana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sunshiney", "label", "Sunshiney"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Supermercado_One", "label", "Supermercado One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Sura", "label", "Sura"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Suranna", "label", "Suranna"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Suravaram", "label", "Suravaram"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Suwannaphum", "label", "Suwannaphum"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Swanky_and_Moo_Moo", "label", "Swanky and Moo Moo"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Syncopate", "label", "Syncopate"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tangerine", "label", "Tangerine"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Taprom", "label", "Taprom"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tauri", "label", "Tauri"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Teko", "label", "Teko"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Telex", "label", "Telex"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tenali_Ramakrishna", "label", "Tenali Ramakrishna"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tenor_Sans", "label", "Tenor Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Text_Me_One", "label", "Text Me One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "The_Girl_Next_Door", "label", "The Girl Next Door"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tienne", "label", "Tienne"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tillana", "label", "Tillana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Timmana", "label", "Timmana"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tinos", "label", "Tinos"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Titan_One", "label", "Titan One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Titillium_Web", "label", "Titillium Web"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Trade_Winds", "label", "Trade Winds"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Trocchi", "label", "Trocchi"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Trochut", "label", "Trochut"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Trykker", "label", "Trykker"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Tulpen_One", "label", "Tulpen One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu", "label", "Ubuntu"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu_Condensed", "label", "Ubuntu Condensed"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ubuntu_Mono", "label", "Ubuntu Mono"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Ultra", "label", "Ultra"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Uncial_Antiqua", "label", "Uncial Antiqua"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Underdog", "label", "Underdog"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Unica_One", "label", "Unica One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "UnifrakturCook", "label", "UnifrakturCook"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", _s18_, "label", _s18_], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Unkempt", "label", "Unkempt"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Unlock", "label", "Unlock"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Unna", "label", "Unna"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "VT323", "label", "VT323"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vampiro_One", "label", "Vampiro One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Varela", "label", "Varela"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Varela_Round", "label", "Varela Round"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vast_Shadow", "label", "Vast Shadow"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vesper_Libre", "label", "Vesper Libre"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vibur", "label", "Vibur"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vidaloka", "label", "Vidaloka"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Viga", "label", "Viga"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Voces", "label", "Voces"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Volkhov", "label", "Volkhov"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Vollkorn", "label", "Vollkorn"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Voltaire", "label", "Voltaire"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Waiting_for_the_Sunrise", "label", "Waiting for the Sunrise"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Wallpoet", "label", "Wallpoet"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Walter_Turncoat", "label", "Walter Turncoat"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Warnes", "label", "Warnes"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Wellfleet", "label", "Wellfleet"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Wendy_One", "label", "Wendy One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Wire_One", "label", "Wire One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Work_Sans", "label", "Work Sans"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Yanone_Kaffeesatz", "label", "Yanone Kaffeesatz"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Yantramanav", "label", "Yantramanav"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Yellowtail", "label", "Yellowtail"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Yeseva_One", "label", "Yeseva One"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Yesteryear", "label", "Yesteryear"], t1, t1), P.LinkedHashMap_LinkedHashMap$_literal(["value", "Zeyada", "label", "Zeyada"], t1, t1)], H.findType("JSArray*>")); }(); $.LocalizationsProvider__localizedValues = function() { var _s18_ = "recurring_expenses", _s18_0 = "Recurring Expenses", _s22_ = "edit_recurring_expense", _s22_0 = "Edit Recurring Expense", _s17_ = "json_file_missing", _s28_ = "Please provide the JSON file", _s19_ = "json_option_missing", _s48_ = "Please select to import the settings and/or data", _s24_ = "no_payment_types_enabled", _s24_0 = "No payment types enabled", _s42_ = "Please wait for the data to finish loading", _s16_ = "import_customers", _s16_0 = "Import Customers", _s18_1 = "imported_customers", _s40_ = "Successfully started importing customers", _s16_1 = "Successful Login", _s23_ = "include_deleted_clients", _s23_0 = "Include Deleted Clients", _s28_0 = "include_deleted_clients_help", _s41_ = "Load records belonging to deleted clients", _s16_2 = "step_2_authorize", _s17_0 = "Step 2: Authorize", _s27_ = "migration_not_yet_completed", _s35_ = "The migration has not yet completed", _s50_ = ":user created recurring invoice :recurring_invoice", _s50_0 = ":user updated recurring invoice :recurring_invoice", _s51_ = ":user archived recurring invoice :recurring_invoice", _s50_1 = ":user deleted recurring invoice :recurring_invoice", _s51_0 = ":user restored recurring invoice :recurring_invoice", _s18_2 = "show_task_end_date", _s18_3 = "Show Task End Date", _s23_1 = "show_task_end_date_help", _s35_0 = "Enable specifying the task end date", _s16_3 = "years_data_shown", _s16_4 = "Years Data Shown", _s18_4 = "ended_all_sessions", _s31_ = "Successfully ended all sessions", _s16_5 = "end_all_sessions", _s16_6 = "End All Sessions", _s18_5 = "contact_first_name", _s18_6 = "Contact First Name", _s17_1 = "contact_last_name", _s17_2 = "Contact Last Name", _s49_ = "Must be greater than zero and less than the total", _s21_ = "body_variable_missing", _s53_ = "Error: the custom email must include a :body variable", _s25_ = "add_body_variable_message", _s37_ = "Make sure to include a :body variable", _s17_3 = "view_date_formats", _s17_4 = "View Date Formats", _s26_ = "owner_upgrade_to_paid_plan", _s85_ = "The account owner can upgrade to a paid plan to enable the advanced advanced settings", _s20_ = "upgrade_to_paid_plan", _s21_0 = "invoice_payment_terms", _s21_1 = "Invoice Payment Terms", _s17_5 = "quote_valid_until", _s17_6 = "Quote Valid Until", _s18_7 = "recurring_products", _s18_8 = "Recurring Products", _s18_9 = "allow_cancellation", _s18_10 = "Allow Cancellation", _s16_7 = "per_seat_enabled", _s16_8 = "Per Seat Enabled", _s21_2 = "allow_query_overrides", _s21_3 = "Allow Query Overrides", _s18_11 = "allow_plan_changes", _s18_12 = "Allow Plan Changes", _s21_4 = "webhook_configuration", _s21_5 = "Webhook Configuration", _s20_0 = "email_spam_complaint", _s16_9 = "webhook_response", _s16_10 = "Webhook Response", _s22_1 = "authentication_failure", _s22_2 = "Authentication Failure", _s16_11 = "new_subscription", _s16_12 = "New Subscription", _s17_7 = "edit_subscription", _s17_8 = "Edit Subscription", _s20_1 = "created_subscription", _s33_ = "Successfully created subscription", _s20_2 = "updated_subscription", _s33_0 = "Successfully updated subscription", _s21_6 = "archived_subscription", _s34_ = "Successfully archived subscription", _s20_3 = "deleted_subscription", _s33_1 = "Successfully deleted subscription", _s20_4 = "removed_subscription", _s33_2 = "Successfully removed subscription", _s21_7 = "restored_subscription", _s34_0 = "Successfully restored subscription", _s19_0 = "search_subscription", _s21_8 = "Search 1 Subscription", _s20_5 = "search_subscriptions", _s27_0 = "Search :count Subscriptions", _s26_0 = "subdomain_is_not_available", _s26_1 = "Subdomain is not available", _s16_13 = "disconnect_gmail", _s16_14 = "Disconnect Gmail", _s28_1 = "Successfully connected Gmail", _s18_13 = "disconnected_gmail", _s31_0 = "Successfully disconnected Gmail", _s16_15 = "update_fail_help", _s100_ = "Changes to the codebase may be blocking the update, you can run this command to discard the changes:", _s16_16 = "client_id_number", _s16_17 = "Client ID Number", _s16_18 = "password_timeout", _s16_19 = "Password Timeout", _s29_ = "shared_invoice_credit_counter", _s29_0 = "Shared Invoice/Credit Counter", _s16_20 = "activate_company", _s16_21 = "Activate Company", _s21_9 = "activate_company_help", _s51_1 = "Enable emails, recurring invoices and notifications", _s27_1 = "an_error_occurred_try_again", _s35_1 = "An error occurred, please try again", _s27_2 = "please_first_set_a_password", _s27_3 = "Please first set a password", _s34_1 = "changing_phone_disables_two_factor", _s52_ = "Warning: Changing your phone number will disable 2FA", _s23_2 = "please_select_a_country", _s23_3 = "Please select a country", _s19_1 = "disabled_two_factor", _s25_0 = "Successfully disabled 2FA", _s16_22 = "connected_google", _s30_ = "Successfully connected account", _s19_2 = "disconnected_google", _s33_3 = "Successfully disconnected account", _s32_ = "enter_phone_to_enable_two_factor", _s72_ = "Please provide a mobile phone number to enable two factor authentication", _s21_10 = "two_factor_setup_help", _s46_ = "Scan the bar code with a :link compatible app.", _s18_14 = "enabled_two_factor", _s46_0 = "Successfully enabled Two-Factor Authentication", _s17_9 = "disconnect_google", _s17_10 = "Disconnect Google", _s17_11 = "enable_two_factor", _s18_15 = "disable_two_factor", _s18_16 = "Disable Two Factor", _s34_2 = "require_password_with_social_login", _s34_3 = "Require Password with Social Login", _s23_4 = "session_about_to_expire", _s40_0 = "Warning: Your session is about to expire", _s19_3 = "web_session_timeout", _s19_4 = "Web Session Timeout", _s17_12 = "security_settings", _s17_13 = "Security Settings", _s26_2 = "confirm_your_email_address", _s33_4 = "Please confirm your email address", _s16_23 = "refunded_payment", _s19_5 = "partially_unapplied", _s19_6 = "Partially Unapplied", _s19_7 = "select_a_gmail_user", _s45_ = "Please select a user authenticated with Gmail", _s17_14 = "start_multiselect", _s17_15 = "Start Multiselect", _s27_4 = "email_sent_to_confirm_email", _s51_2 = "An email has been sent to confirm the email address", _s21_11 = "counter_pattern_error", _s97_ = "To use :client_counter please add either :client_number or :client_id_number to prevent conflicts", _s18_17 = "convert_to_invoice", _s18_18 = "Convert to Invoice", _s16_24 = "registration_url", _s16_25 = "Registration URL", _s19_8 = "search_payment_term", _s21_12 = "Search 1 Payment Term", _s20_6 = "search_payment_terms", _s27_5 = "Search :count Payment Terms", _s16_26 = "save_and_preview", _s16_27 = "Save and Preview", _s16_28 = "supported_events", _s16_29 = "Supported Events", _s16_30 = "converted_amount", _s16_31 = "Converted Amount", _s17_16 = "converted_balance", _s17_17 = "Converted Balance", _s22_3 = "converted_paid_to_date", _s22_4 = "Converted Paid to Date", _s24_1 = "converted_credit_balance", _s24_2 = "Converted Credit Balance", _s17_18 = "default_documents", _s17_19 = "Default Documents", _s20_7 = "document_upload_help", _s34_4 = "Enable clients to upload documents", _s21_13 = "debug_mode_is_enabled", _s21_14 = "Debug mode is enabled", _s26_3 = "debug_mode_is_enabled_help", _s96_ = "Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.", _s17_20 = "upcoming_expenses", _s17_21 = "Upcoming Expenses", _s27_6 = "Successfully started import", _s24_3 = "duplicate_column_mapping", _s24_4 = "Duplicate column mapping", _s20_8 = "uses_inclusive_taxes", _s20_9 = "Uses Inclusive Taxes", _s18_19 = "is_amount_discount", _s18_20 = "Is Amount Discount", _s25_1 = "first_row_as_column_names", _s29_1 = "Use first row as column names", _s16_32 = "no_file_selected", _s16_33 = "No File Selected", _s22_5 = "required_files_missing", _s24_5 = "Please provide all CSVs.", _s43_ = "Preview updates faster but is less accurate", _s17_22 = "fullscreen_editor", _s17_23 = "Fullscreen Editor", _s22_6 = "please_type_to_confirm", _s24_6 = "sent_invoices_are_locked", _s24_7 = "Sent invoices are locked", _s24_8 = "paid_invoices_are_locked", _s24_9 = "Paid invoices are locked", _s23_5 = "recurring_invoice_total", _s24_10 = "company_disabled_warning", _s17_24 = "default_task_rate", _s17_25 = "Default Task Rate", _s16_34 = "edit_task_status", _s16_35 = "Edit Task Status", _s19_9 = "created_task_status", _s32_0 = "Successfully created task status", _s19_10 = "updated_task_status", _s20_10 = "archived_task_status", _s33_5 = "Successfully archived task status", _s19_11 = "deleted_task_status", _s32_1 = "Successfully deleted task status", _s19_12 = "removed_task_status", _s32_2 = "Successfully removed task status", _s20_11 = "restored_task_status", _s33_6 = "Successfully restored task status", _s22_7 = "archived_task_statuses", _s42_0 = "Successfully archived :value task statuses", _s21_15 = "deleted_task_statuses", _s41_0 = "Successfully deleted :value task statuses", _s22_8 = "restored_task_statuses", _s42_1 = "Successfully restored :value task statuses", _s18_21 = "search_task_status", _s20_12 = "Search 1 Task Status", _s20_13 = "search_task_statuses", _s27_7 = "Search :count Task Statuses", _s16_36 = "show_tasks_table", _s16_37 = "Show Tasks Table", _s21_16 = "show_tasks_table_help", _s52_0 = "Always show the tasks section when creating invoices", _s20_14 = "invoice_task_timelog", _s20_15 = "Invoice Task Timelog", _s25_2 = "invoice_task_timelog_help", _s42_2 = "Add time details to the invoice line items", _s20_16 = "invoice_task_datelog", _s20_17 = "Invoice Task Datelog", _s25_3 = "invoice_task_datelog_help", _s42_3 = "Add date details to the invoice line items", _s21_17 = "auto_start_tasks_help", _s25_4 = "Start tasks before saving", _s18_22 = "configure_statuses", _s18_23 = "Configure Statuses", _s20_18 = "configure_categories", _s20_19 = "Configure Categories", _s18_24 = "expense_categories", _s18_25 = "Expense Categories", _s20_20 = "new_expense_category", _s20_21 = "New Expense Category", _s21_18 = "edit_expense_category", _s21_19 = "Edit Expense Category", _s24_11 = "created_expense_category", _s37_0 = "Successfully created expense category", _s24_12 = "updated_expense_category", _s37_1 = "Successfully updated expense category", _s25_5 = "archived_expense_category", _s38_ = "Successfully archived expense category", _s24_13 = "deleted_expense_category", _s24_14 = "removed_expense_category", _s37_2 = "Successfully removed expense category", _s25_6 = "restored_expense_category", _s38_0 = "Successfully restored expense category", _s27_8 = "archived_expense_categories", _s26_4 = "deleted_expense_categories", _s46_1 = "Successfully deleted expense :value categories", _s27_9 = "restored_expense_categories", _s47_ = "Successfully restored expense :value categories", _s23_6 = "search_expense_category", _s25_7 = "Search 1 Expense Category", _s25_8 = "search_expense_categories", _s32_3 = "Search :count Expense Categories", _s21_20 = "use_available_credits", _s21_21 = "Use Available Credits", _s22_9 = "negative_payment_error", _s17_26 = "force_update_help", _s76_ = "You are running the latest version but there may be pending fixes available.", _s31_1 = "Track the expense has been paid", _s18_26 = "should_be_invoiced", _s23_7 = "should_be_invoiced_help", _s33_7 = "Enable the expense to be invoiced", _s29_2 = "add_documents_to_invoice_help", _s21_22 = "convert_currency_help", _s20_22 = "Set an exchange rate", _s16_38 = "expense_settings", _s16_39 = "Expense Settings", _s18_27 = "clone_to_recurring", _s18_28 = "Clone to Recurring", _s17_27 = "auto_bill_enabled", _s17_28 = "Auto Bill Enabled", _s25_9 = "stopped_recurring_invoice", _s38_1 = "Successfully stopped recurring invoice", _s25_10 = "started_recurring_invoice", _s38_2 = "Successfully started recurring invoice", _s25_11 = "resumed_recurring_invoice", _s38_3 = "Successfully resumed recurring invoice", _s19_13 = "gateway_refund_help", _s43_0 = "Process the refund with the payment gateway", _s22_10 = "first_day_of_the_month", _s22_11 = "First Day of the Month", _s21_23 = "last_day_of_the_month", _s21_24 = "Last Day of the Month", _s17_29 = "use_payment_terms", _s17_30 = "Use Payment Terms", _s16_40 = "remaining_cycles", _s16_41 = "Remaining Cycles", _s17_31 = "recurring_invoice", _s17_32 = "Recurring Invoice", _s18_29 = "recurring_invoices", _s18_30 = "Recurring Invoices", _s21_25 = "new_recurring_invoice", _s21_26 = "New Recurring Invoice", _s22_12 = "edit_recurring_invoice", _s22_13 = "Edit Recurring Invoice", _s25_12 = "created_recurring_invoice", _s38_4 = "Successfully created recurring invoice", _s25_13 = "updated_recurring_invoice", _s38_5 = "Successfully updated recurring invoice", _s26_5 = "archived_recurring_invoice", _s39_ = "Successfully archived recurring invoice", _s25_14 = "deleted_recurring_invoice", _s38_6 = "Successfully deleted recurring invoice", _s25_15 = "removed_recurring_invoice", _s38_7 = "Successfully removed recurring invoice", _s26_6 = "restored_recurring_invoice", _s39_0 = "Successfully restored recurring invoice", _s27_10 = "archived_recurring_invoices", _s47_0 = "Successfully archived recurring :value invoices", _s26_7 = "deleted_recurring_invoices", _s46_2 = "Successfully deleted recurring :value invoices", _s27_11 = "restored_recurring_invoices", _s47_1 = "Successfully restored recurring :value invoices", _s24_15 = "search_recurring_invoice", _s26_8 = "Search 1 Recurring Invoice", _s25_16 = "search_recurring_invoices", _s32_4 = "Search :count Recurring Invoices", _s28_2 = "minimum_under_payment_amount", _s28_3 = "Minimum Under Payment Amount", _s18_31 = "allow_over_payment", _s18_32 = "Allow Over Payment", _s23_8 = "allow_over_payment_help", _s35_2 = "Support paying extra to accept tips", _s19_14 = "allow_under_payment", _s19_15 = "Allow Under Payment", _s24_16 = "allow_under_payment_help", _s30_0 = "payment_reconciliation_failure", _s22_14 = "Reconciliation Failure", _s30_1 = "payment_reconciliation_success", _s22_15 = "Reconciliation Success", _s17_33 = "email_retry_queue", _s17_34 = "Email Retry Queue", _s16_42 = "upstream_failure", _s16_43 = "Upstream Failure", _s24_17 = "welcome_to_invoice_ninja", _s24_18 = "Welcome to Invoice Ninja", _s18_33 = "reminder_last_sent", _s18_34 = "Reminder Last Sent", _s23_9 = "Page :current of :total", _s16_44 = "emailed_invoices", _s42_4 = "Enable third-party apps to create invoices", _s20_23 = "online_payment_email", _s20_24 = "Online Payment Email", _s20_25 = "manual_payment_email", _s20_26 = "Manual Payment Email", _s17_35 = "selected_invoices", _s17_36 = "Selected Invoices", _s17_37 = "selected_payments", _s17_38 = "Selected Payments", _s17_39 = "selected_expenses", _s17_40 = "Selected Expenses", _s17_41 = "upcoming_invoices", _s17_42 = "Upcoming Invoices", _s17_43 = "past_due_invoices", _s17_44 = "Past Due Invoices", _s53_0 = "Please restart the app once connected to the internet", _s17_45 = "crons_not_enabled", _s28_4 = "The crons need to be enabled", _s22_16 = "Search :count Webhooks", _s16_45 = "Search 1 Webhook", _s28_5 = "Successfully created webhook", _s28_6 = "Successfully updated webhook", _s16_46 = "archived_webhook", _s29_3 = "Successfully archived webhook", _s28_7 = "Successfully deleted webhook", _s28_8 = "Successfully removed webhook", _s16_47 = "restored_webhook", _s29_4 = "Successfully restored webhook", _s17_46 = "archived_webhooks", _s37_3 = "Successfully archived :value webhooks", _s16_48 = "deleted_webhooks", _s36_ = "Successfully deleted :value webhooks", _s16_49 = "removed_webhooks", _s36_0 = "Successfully removed :value webhooks", _s17_47 = "restored_webhooks", _s37_4 = "Successfully restored :value webhooks", _s20_27 = "Search :count Tokens", _s26_9 = "Successfully created token", _s26_10 = "Successfully updated token", _s27_12 = "Successfully archived token", _s26_11 = "Successfully deleted token", _s26_12 = "Successfully removed token", _s27_13 = "Successfully restored token", _s35_3 = "Successfully archived :value tokens", _s34_5 = "Successfully deleted :value tokens", _s35_4 = "Successfully restored :value tokens", _s19_16 = "client_registration", _s19_17 = "Client Registration", _s24_19 = "client_registration_help", _s45_0 = "Enable clients to self register in the portal", _s21_27 = "customize_and_preview", _s19_18 = "Customize & Preview", _s20_28 = "client_email_not_set", _s41_1 = "Client does not have an email address set", _s16_50 = "credit_remaining", _s16_51 = "Credit Remaining", _s16_52 = "reminder_endless", _s17_48 = "Endless Reminders", _s23_10 = "configure_payment_terms", _s23_11 = "Configure Payment Terms", _s16_53 = "new_payment_term", _s16_54 = "New Payment Term", _s17_49 = "edit_payment_term", _s17_50 = "Edit Payment Term", _s20_29 = "created_payment_term", _s33_8 = "Successfully created payment term", _s20_30 = "updated_payment_term", _s33_9 = "Successfully updated payment term", _s21_28 = "archived_payment_term", _s34_6 = "Successfully archived payment term", _s20_31 = "deleted_payment_term", _s33_10 = "Successfully deleted payment term", _s20_32 = "removed_payment_term", _s33_11 = "Successfully removed payment term", _s21_29 = "restored_payment_term", _s34_7 = "Successfully restored payment term", _s22_17 = "archived_payment_terms", _s42_5 = "Successfully archived :value payment terms", _s21_30 = "deleted_payment_terms", _s41_2 = "Successfully deleted :value payment terms", _s22_18 = "restored_payment_terms", _s42_6 = "Successfully restored :value payment terms", _s16_55 = "Login with email", _s23_12 = "change_to_mobile_layout", _s28_9 = "Change to the mobile layout?", _s24_20 = "change_to_desktop_layout", _s29_5 = "Change to the desktop layout?", _s18_35 = "partially_refunded", _s18_36 = "Partially Refunded", _s16_56 = "search_documents", _s16_57 = "search_tax_rates", _s17_51 = "Search 1 Document", _s16_58 = "Search 1 Invoice", _s16_59 = "Search 1 Product", _s17_52 = "Search 1 Tax Rate", _s16_60 = "Search 1 Project", _s16_61 = "Search 1 Expense", _s16_62 = "Search 1 Payment", _s17_53 = "cancelled_invoice", _s30_2 = "Successfully cancelled invoice", _s18_37 = "cancelled_invoices", _s31_2 = "Successfully cancelled invoices", _s16_63 = "reversed_invoice", _s29_6 = "Successfully reversed invoice", _s17_54 = "reversed_invoices", _s30_3 = "Successfully reversed invoices", _s17_55 = "city_state_postal", _s17_56 = "City/State/Postal", _s17_57 = "postal_city_state", _s17_58 = "Postal/City/State", _s16_64 = "purge_successful", _s32_5 = "Successfully purged company data", _s18_38 = "purge_data_message", _s65_ = "Warning: This will permanently erase your data, there is no undo.", _s25_17 = "Successfully saved design", _s25_18 = "receive_all_notifications", _s25_19 = "Receive All Notifications", _s16_65 = "purchase_license", _s16_66 = "Purchase License", _s22_19 = "cancel_account_message", _s22_20 = "delete_company_message", _s28_10 = "Successfully converted quote", _s27_14 = "Successfully created design", _s27_15 = "Successfully updated design", _s28_11 = "Successfully archived design", _s27_16 = "Successfully deleted design", _s27_17 = "Successfully removed design", _s28_12 = "Successfully restored design", _s16_67 = "archived_designs", _s36_1 = "Successfully archived :value designs", _s35_5 = "Successfully deleted :value designs", _s16_68 = "restored_designs", _s36_2 = "Successfully restored :value designs", _s16_69 = "recurring_quotes", _s16_70 = "Recurring Quotes", _s18_39 = "account_management", _s18_40 = "Account Management", _s27_18 = "Successfully created credit", _s27_19 = "Successfully updated credit", _s28_13 = "Successfully archived credit", _s27_20 = "Successfully deleted credit", _s27_21 = "Successfully removed credit", _s28_14 = "Successfully restored credit", _s16_71 = "archived_credits", _s16_72 = "restored_credits", _s36_3 = "Successfully restored :value credits", _s26_13 = "a_new_version_is_available", _s41_3 = "A new version of the web app is available", _s16_73 = "update_available", _s16_74 = "Update Available", _s29_7 = "Update successfully completed", _s17_59 = "slack_webhook_url", _s17_60 = "Slack Webhook URL", _s26_14 = "Successfully added company", _s16_75 = "Custom Company 1", _s16_76 = "Custom Company 2", _s16_77 = "Custom Company 3", _s16_78 = "Custom Company 4", _s16_79 = "Custom Product 1", _s16_80 = "Custom Product 2", _s16_81 = "Custom Product 3", _s16_82 = "Custom Product 4", _s16_83 = "Custom Contact 1", _s16_84 = "Custom Contact 2", _s16_85 = "Custom Contact 3", _s16_86 = "Custom Contact 4", _s16_87 = "Custom Project 1", _s16_88 = "Custom Project 2", _s16_89 = "Custom Project 3", _s16_90 = "Custom Project 4", _s16_91 = "Custom Expense 1", _s16_92 = "Custom Expense 2", _s16_93 = "Custom Expense 3", _s16_94 = "Custom Expense 4", _s16_95 = "Custom Invoice 1", _s16_96 = "Custom Invoice 2", _s16_97 = "Custom Invoice 3", _s16_98 = "Custom Invoice 4", _s16_99 = "Custom Payment 1", _s16_100 = "Custom Payment 2", _s16_101 = "Custom Payment 3", _s16_102 = "Custom Payment 4", _s18_41 = "Custom Surcharge 1", _s18_42 = "Custom Surcharge 2", _s18_43 = "Custom Surcharge 3", _s18_44 = "Custom Surcharge 4", _s18_45 = "contact_last_login", _s18_46 = "Contact Last Login", _s17_61 = "contact_full_name", _s17_62 = "Contact Full Name", _s21_31 = "contact_custom_value1", _s22_21 = "Contact Custom Value 1", _s21_32 = "contact_custom_value2", _s22_22 = "Contact Custom Value 2", _s21_33 = "contact_custom_value3", _s22_23 = "Contact Custom Value 3", _s21_34 = "contact_custom_value4", _s22_24 = "Contact Custom Value 4", _s17_63 = "shipping_address1", _s17_64 = "shipping_address2", _s18_47 = "Shipping Apt/Suite", _s23_13 = "Shipping State/Province", _s20_33 = "shipping_postal_code", _s20_34 = "Shipping Postal Code", _s16_103 = "shipping_country", _s16_104 = "Shipping Country", _s16_105 = "billing_address1", _s16_106 = "billing_address2", _s17_65 = "Billing Apt/Suite", _s22_25 = "Billing State/Province", _s19_19 = "billing_postal_code", _s19_20 = "Billing Postal Code", _s16_107 = "unapproved_quote", _s16_108 = "Unapproved Quote", _s21_35 = "include_recent_errors", _s35_6 = "Include recent errors from the logs", _s30_4 = "your_message_has_been_received", _s63_ = "We have received your message and will try to respond promptly.", _s20_35 = "show_product_details", _s20_36 = "Show Product Details", _s25_20 = "show_product_details_help", _s56_ = "Include the description and cost in the product dropdown", _s20_37 = "pdf_min_requirements", _s34_8 = "The PDF renderer requires :version", _s18_48 = "adjust_fee_percent", _s18_49 = "Adjust Fee Percent", _s23_14 = "adjust_fee_percent_help", _s18_50 = "configure_settings", _s18_51 = "Configure Settings", _s21_36 = "password_is_too_short", _s20_38 = "password_is_too_easy", _s58_ = "Password must contain an upper case character and a number", _s19_21 = "client_portal_tasks", _s19_22 = "Client Portal Tasks", _s23_15 = "client_portal_dashboard", _s23_16 = "Client Portal Dashboard", _s20_39 = "please_enter_a_value", _s20_40 = "Please enter a value", _s25_21 = "Successfully deleted logo", _s17_66 = "show_product_cost", _s17_67 = "Show Product Cost", _s55_ = "Display a product cost field to track the markup/profit", _s21_37 = "show_product_quantity", _s21_38 = "Show Product Quantity", _s26_15 = "show_product_quantity_help", _s58_0 = "Display a product quantity field, otherwise default to one", _s21_39 = "show_invoice_quantity", _s21_40 = "Show Invoice Quantity", _s26_16 = "show_invoice_quantity_help", _s60_ = "Display a line item quantity field, otherwise default to one", _s21_41 = "show_product_discount", _s21_42 = "Show Product Discount", _s26_17 = "show_product_discount_help", _s34_9 = "Display a line item discount field", _s16_109 = "default_quantity", _s16_110 = "Default Quantity", _s21_43 = "default_quantity_help", _s47_2 = "Automatically set the line item quantity to one", _s16_111 = "default_tax_rate", _s16_112 = "Default Tax Rate", _s17_68 = "invoice_tax_rates", _s17_69 = "Invoice Tax Rates", _s18_52 = "no_client_selected", _s18_53 = "configure_gateways", _s18_54 = "Configure Gateways", _s18_55 = "tax_settings_rates", _s19_23 = "comma_sparated_list", _s20_41 = "Comma separated list", _s16_113 = "single_line_text", _s16_114 = "Single-line text", _s27_22 = "recover_password_email_sent", _s39_1 = "A password recovery email has been sent", _s16_115 = "recover_password", _s16_116 = "late_fee_percent", _s16_117 = "Late Fee Percent", _s19_24 = "Before the due date", _s18_56 = "After the due date", _s18_57 = "after_invoice_date", _s22_26 = "After the invoice date", _s21_44 = "partial_payment_email", _s21_45 = "Partial Payment Email", _s16_118 = "endless_reminder", _s16_119 = "Endless Reminder", _s16_120 = "filtered_by_user", _s16_121 = "Filtered by User", _s18_58 = "administrator_help", _s66_ = "Allow user to manage users, change settings and modify all records", _s25_22 = "Successfully created user", _s25_23 = "Successfully updated user", _s26_18 = "Successfully archived user", _s25_24 = "Successfully deleted user", _s25_25 = "Successfully removed user", _s26_19 = "Successfully restored user", _s34_10 = "Successfully archived :value users", _s33_12 = "Successfully deleted :value users", _s33_13 = "Successfully removed :value users", _s34_11 = "Successfully restored :value users", _s16_122 = "general_settings", _s16_123 = "General Settings", _s17_70 = "hide_paid_to_date", _s17_71 = "Hide Paid to Date", _s22_27 = "hide_paid_to_date_help", _s87_ = 'Only display the "Paid to Date" area on your invoices once a payment has been received.', _s23_17 = "invoice_embed_documents", _s28_15 = "invoice_embed_documents_help", _s39_2 = "Include attached images in the invoice.", _s16_124 = "all_pages_header", _s16_125 = "all_pages_footer", _s18_59 = "auto_email_invoice", _s23_18 = "auto_email_invoice_help", _s61_ = "Automatically email recurring invoices when they are created.", _s20_42 = "auto_archive_invoice", _s25_26 = "auto_archive_invoice_help", _s50_2 = "Automatically archive invoices when they are paid.", _s18_60 = "auto_archive_quote", _s23_19 = "auto_archive_quote_help", _s53_1 = "Automatically archive quotes when they are converted.", _s18_61 = "auto_convert_quote", _s23_20 = "auto_convert_quote_help", _s70_ = "Automatically convert a quote to an invoice when approved by a client.", _s17_72 = "workflow_settings", _s17_73 = "Workflow Settings", _s17_74 = "freq_three_months", _s16_126 = "freq_four_months", _s16_127 = "freq_three_years", _s17_75 = "generated_numbers", _s17_76 = "Generated Numbers", _s16_128 = "recurring_prefix", _s16_129 = "Recurring Prefix", _s17_77 = "invoice_surcharge", _s17_78 = "Invoice Surcharge", _s17_79 = "custom_javascript", _s17_80 = "Custom JavaScript", _s16_130 = "signature_on_pdf", _s21_46 = "signature_on_pdf_help", _s51_3 = "Show the client signature on the invoice/quote PDF.", _s25_27 = "show_accept_invoice_terms", _s22_28 = "Invoice Terms Checkbox", _s30_5 = "show_accept_invoice_terms_help", _s61_0 = "Require client to confirm that they accept the invoice terms.", _s23_21 = "show_accept_quote_terms", _s20_43 = "Quote Terms Checkbox", _s28_16 = "show_accept_quote_terms_help", _s59_ = "Require client to confirm that they accept the quote terms.", _s25_28 = "require_invoice_signature", _s17_81 = "Invoice Signature", _s30_6 = "require_invoice_signature_help", _s42_7 = "Require client to provide their signature.", _s23_22 = "require_quote_signature", _s22_29 = "enable_portal_password", _s25_29 = "Password Protect Invoices", _s27_23 = "enable_portal_password_help", _s24_21 = "enable_email_markup_help", _s86_ = "Make it easier for your clients to pay you by adding schema.org markup to your emails.", _s16_131 = "attach_documents", _s16_132 = "Attach Documents", _s19_25 = "enable_email_markup", _s19_26 = "accepted_card_logos", _s19_27 = "Accepted Card Logos", _s19_28 = "update_address_help", _s45_1 = "Update client's address with provided details", _s16_133 = "created_tax_rate", _s29_8 = "Successfully created tax rate", _s16_134 = "updated_tax_rate", _s29_9 = "Successfully updated tax rate", _s17_82 = "archived_tax_rate", _s16_135 = "deleted_tax_rate", _s29_10 = "Successfully deleted tax rate", _s17_83 = "restored_tax_rate", _s30_7 = "Successfully restored tax rate", _s18_62 = "archived_tax_rates", _s38_8 = "Successfully archived :value tax rates", _s17_84 = "deleted_tax_rates", _s37_5 = "Successfully deleted :value tax rates", _s18_63 = "restored_tax_rates", _s38_9 = "Successfully restored :value tax rates", _s18_64 = "fill_products_help", _s71_ = "Selecting a product will automatically fill in the description and cost", _s20_44 = "update_products_help", _s65_0 = "Updating an invoice will automatically update the product library", _s16_136 = "convert_products", _s16_137 = "Convert Products", _s21_47 = "convert_products_help", _s61_1 = "Automatically convert product prices to the client's currency", _s16_138 = "company_gateways", _s16_139 = "Payment Gateways", _s19_29 = "new_company_gateway", _s20_45 = "edit_company_gateway", _s23_23 = "created_company_gateway", _s28_17 = "Successfully created gateway", _s23_24 = "updated_company_gateway", _s28_18 = "Successfully updated gateway", _s24_22 = "archived_company_gateway", _s29_11 = "Successfully archived gateway", _s23_25 = "deleted_company_gateway", _s28_19 = "Successfully deleted gateway", _s24_23 = "restored_company_gateway", _s29_12 = "Successfully restored gateway", _s25_30 = "archived_company_gateways", _s37_6 = "Successfully archived :value gateways", _s24_24 = "deleted_company_gateways", _s36_4 = "Successfully deleted :value gateways", _s25_31 = "restored_company_gateways", _s37_7 = "Successfully restored :value gateways", _s16_140 = "continue_editing", _s16_141 = "Continue Editing", _s21_48 = "first_day_of_the_week", _s21_49 = "First Day of the Week", _s23_26 = "first_month_of_the_year", _s23_27 = "First Month of the Year", _s18_65 = "military_time_help", _s19_30 = "filtered_by_project", _s19_31 = "Filtered by Project", _s17_85 = "filtered_by_group", _s17_86 = "Filtered by Group", _s19_32 = "filtered_by_invoice", _s19_33 = "Filtered by Invoice", _s18_66 = "filtered_by_client", _s18_67 = "Filtered by Client", _s18_68 = "filtered_by_vendor", _s18_69 = "Filtered by Vendor", _s26_20 = "Successfully created group", _s26_21 = "Successfully updated group", _s35_7 = "Successfully archived :value groups", _s34_12 = "Successfully deleted :value groups", _s35_8 = "Successfully restored :value groups", _s26_22 = "Successfully uploaded logo", _s27_24 = "Successfully saved settings", _s16_142 = "product_settings", _s16_143 = "Product Settings", _s17_87 = "advanced_settings", _s17_88 = "Advanced Settings", _s23_28 = "templates_and_reminders", _s21_50 = "Templates & Reminders", _s22_30 = "credit_cards_and_banks", _s20_46 = "Credit Cards & Banks", _s19_34 = "data_visualizations", _s19_35 = "Data Visualizations", _s27_25 = "thank_you_for_your_purchase", _s28_20 = "Thank you for your purchase!", _s19_36 = "annual_subscription", _s19_37 = "Annual Subscription", _s25_32 = "please_enter_a_first_name", _s25_33 = "Please enter a first name", _s24_25 = "please_enter_a_last_name", _s24_26 = "Please enter a last name", _s33_14 = "please_agree_to_terms_and_privacy", _s77_ = "Please agree to the terms of service and privacy policy to create an account.", _s16_144 = "terms_of_service", _s16_145 = "Terms of Service", _s18_70 = "no_record_selected", _s18_71 = "No record selected", _s21_51 = "error_unsaved_changes", _s34_13 = "Please save or cancel your changes", _s27_26 = "requires_an_enterprise_plan", _s17_89 = "uploaded_document", _s30_8 = "Successfully uploaded document", _s16_146 = "updated_document", _s29_13 = "Successfully updated document", _s17_90 = "archived_document", _s30_9 = "Successfully archived document", _s16_147 = "deleted_document", _s29_14 = "Successfully deleted document", _s17_91 = "restored_document", _s30_10 = "Successfully restored document", _s18_72 = "archived_documents", _s38_10 = "Successfully archived :value documents", _s17_92 = "deleted_documents", _s37_8 = "Successfully deleted :value documents", _s18_73 = "restored_documents", _s38_11 = "Successfully restored :value documents", _s16_148 = "expense_status_1", _s16_149 = "expense_status_2", _s16_150 = "expense_status_3", _s24_27 = "add_documents_to_invoice", _s16_151 = "convert_currency", _s27_27 = "Successfully created vendor", _s27_28 = "Successfully updated vendor", _s28_21 = "Successfully archived vendor", _s27_29 = "Successfully deleted vendor", _s28_22 = "Successfully restored vendor", _s16_152 = "archived_vendors", _s16_153 = "restored_vendors", _s36_5 = "Successfully restored :value vendors", _s28_23 = "Successfully created expense", _s28_24 = "Successfully updated expense", _s16_154 = "archived_expense", _s29_15 = "Successfully archived expense", _s28_25 = "Successfully deleted expense", _s16_155 = "restored_expense", _s29_16 = "Successfully restored expense", _s17_93 = "archived_expenses", _s16_156 = "deleted_expenses", _s17_94 = "restored_expenses", _s37_9 = "Successfully restored :value expenses", _s21_52 = "failed_to_find_record", _s21_53 = "Failed to find record", _s36_6 = "Please correct any overlapping times", _s25_34 = "Successfully started task", _s25_35 = "Successfully stopped task", _s25_36 = "Successfully resumed task", _s16_157 = "auto_start_tasks", _s16_158 = "Auto Start Tasks", _s25_37 = "Successfully created task", _s25_38 = "Successfully updated task", _s26_23 = "Successfully archived task", _s25_39 = "Successfully deleted task", _s26_24 = "Successfully restored task", _s34_14 = "Successfully restored :value tasks", _s19_38 = "please_enter_a_name", _s19_39 = "Please enter a name", _s28_26 = "Successfully created project", _s28_27 = "Successfully updated project", _s16_159 = "archived_project", _s29_17 = "Successfully archived project", _s28_28 = "Successfully deleted project", _s16_160 = "restored_project", _s29_18 = "Successfully restored project", _s17_95 = "archived_projects", _s16_161 = "deleted_projects", _s17_96 = "restored_projects", _s37_10 = "Successfully restored :value projects", _s27_30 = "thank_you_for_using_our_app", _s28_29 = "Thank you for using our app!", _s21_54 = "If you like it please", _s18_74 = "click_here_capital", _s30_11 = "authenticate_to_change_setting", _s42_8 = "Please authenticate to change this setting", _s19_40 = "please_authenticate", _s19_41 = "Please authenticate", _s24_28 = "biometric_authentication", _s24_29 = "Biometric Authentication", _s17_97 = "Login with Google", _s17_98 = "comparison_period", _s17_99 = "Comparison Period", _s16_162 = "clone_to_invoice", _s16_163 = "Clone to Invoice", _s20_47 = "edit_recurring_quote", _s20_48 = "Edit Recurring Quote", _s16_164 = "shipping_address", _s16_165 = "Shipping Address", _s16_166 = "refresh_complete", _s16_167 = "Refresh Complete", _s23_29 = "please_enter_your_email", _s23_30 = "Please enter your email", _s26_25 = "please_enter_your_password", _s26_26 = "Please enter your password", _s21_55 = "please_enter_your_url", _s21_56 = "Please enter your URL", _s26_27 = "please_enter_a_product_key", _s26_28 = "Please enter a product key", _s17_100 = "an_error_occurred", _s17_101 = "An error occurred", _s19_42 = "copied_to_clipboard", _s30_12 = "Copied :value to the clipboard", _s16_168 = "could_not_launch", _s16_169 = "Could not launch", _s16_170 = "email_is_invalid", _s16_171 = "Email is invalid", _s28_30 = "Successfully created product", _s28_31 = "Successfully updated product", _s16_172 = "archived_product", _s29_19 = "Successfully archived product", _s28_32 = "Successfully deleted product", _s16_173 = "restored_product", _s29_20 = "Successfully restored product", _s17_102 = "archived_products", _s16_174 = "deleted_products", _s17_103 = "restored_products", _s37_11 = "Successfully restored :value products", _s27_31 = "Successfully created client", _s27_32 = "Successfully updated client", _s28_33 = "Successfully archived client", _s16_175 = "archived_clients", _s27_33 = "Successfully deleted client", _s28_34 = "Successfully restored client", _s16_176 = "restored_clients", _s36_7 = "Successfully restored :value clients", _s28_35 = "Successfully created invoice", _s28_36 = "Successfully updated invoice", _s16_177 = "archived_invoice", _s29_21 = "Successfully archived invoice", _s28_37 = "Successfully deleted invoice", _s16_178 = "restored_invoice", _s29_22 = "Successfully restored invoice", _s17_104 = "archived_invoices", _s16_179 = "deleted_invoices", _s17_105 = "restored_invoices", _s37_12 = "Successfully restored :value invoices", _s16_180 = "partial_due_date", _s16_181 = "Partial Due Date", _s17_106 = "invoice_status_id", _s22_31 = "click_plus_to_add_item", _s22_32 = "Click + to add an item", _s22_33 = "click_plus_to_add_time", _s20_49 = "please_select_a_date", _s20_50 = "Please select a date", _s22_34 = "please_select_a_client", _s22_35 = "Please select a client", _s24_30 = "please_select_an_invoice", _s24_31 = "Please select an invoice", _s30_13 = "please_enter_an_invoice_number", _s30_14 = "Please enter an invoice number", _s27_34 = "please_enter_a_quote_number", _s27_35 = "Please enter a quote number", _s22_36 = "marked_invoice_as_sent", _s35_9 = "Successfully marked invoice as sent", _s22_37 = "marked_invoice_as_paid", _s35_10 = "Successfully marked invoice as paid", _s23_31 = "marked_invoices_as_sent", _s36_8 = "Successfully marked invoices as sent", _s23_32 = "marked_invoices_as_paid", _s36_9 = "Successfully marked invoices as paid", _s37_13 = "please_enter_a_client_or_contact_name", _s37_14 = "Please enter a client or contact name", _s27_36 = "restart_app_to_apply_change", _s35_11 = "Restart the app to apply the change", _s16_182 = "no_records_found", _s16_183 = "No records found", _s16_184 = "payment_status_1", _s16_185 = "payment_status_2", _s16_186 = "payment_status_3", _s16_187 = "payment_status_4", _s16_188 = "payment_status_5", _s16_189 = "payment_status_6", _s17_107 = "payment_status_-1", _s17_108 = "payment_status_-2", _s35_12 = "Email payment receipt to the client", _s21_57 = "transaction_reference", _s21_58 = "Transaction Reference", _s28_38 = "Successfully created payment", _s28_39 = "Successfully updated payment", _s16_190 = "archived_payment", _s29_23 = "Successfully archived payment", _s28_40 = "Successfully deleted payment", _s16_191 = "restored_payment", _s29_24 = "Successfully restored payment", _s17_109 = "archived_payments", _s16_192 = "deleted_payments", _s17_110 = "restored_payments", _s37_15 = "Successfully restored :value payments", _s26_29 = "Successfully created quote", _s26_30 = "Successfully updated quote", _s27_37 = "Successfully archived quote", _s26_31 = "Successfully deleted quote", _s27_38 = "Successfully restored quote", _s35_13 = "Successfully restored :value quotes", _s28_41 = ":user created client :client", _s29_25 = ":user archived client :client", _s28_42 = ":user deleted client :client", _s30_15 = ":user created invoice :invoice", _s30_16 = ":user updated invoice :invoice", _s31_3 = ":user archived invoice :invoice", _s30_17 = ":user deleted invoice :invoice", _s30_18 = ":user updated payment :payment", _s31_4 = ":user archived payment :payment", _s30_19 = ":user deleted payment :payment", _s28_43 = ":user entered :credit credit", _s28_44 = ":user updated :credit credit", _s29_26 = ":user archived :credit credit", _s28_45 = ":user deleted :credit credit", _s26_32 = ":user created quote :quote", _s26_33 = ":user updated quote :quote", _s28_46 = ":contact viewed quote :quote", _s27_39 = ":user archived quote :quote", _s26_34 = ":user deleted quote :quote", _s27_40 = ":user restored quote :quote", _s31_5 = ":user restored invoice :invoice", _s29_27 = ":user restored client :client", _s31_6 = ":user restored payment :payment", _s29_28 = ":user restored :credit credit", _s28_47 = ":user created vendor :vendor", _s29_29 = ":user archived vendor :vendor", _s28_48 = ":user deleted vendor :vendor", _s29_30 = ":user restored vendor :vendor", _s30_20 = ":user created expense :expense", _s31_7 = ":user archived expense :expense", _s30_21 = ":user deleted expense :expense", _s31_8 = ":user restored expense :expense", _s24_32 = ":user created task :task", _s24_33 = ":user updated task :task", _s25_40 = ":user archived task :task", _s24_34 = ":user deleted task :task", _s25_41 = ":user restored task :task", _s30_22 = ":user updated expense :expense", _s39_3 = "System failed to email invoice :invoice", _s31_9 = ":user reversed invoice :invoice", _s32_6 = ":user cancelled invoice :invoice", _s28_49 = ":user updated client :client", _s28_50 = ":user updated vendor :vendor", _s17_111 = "one_time_password", _s17_112 = "One Time Password", _s20_51 = "marked_quote_as_sent", _s33_15 = "Successfully marked quote as sent", _s21_59 = "marked_credit_as_sent", _s34_15 = "Successfully marked credit as sent", _s22_38 = "long_press_multiselect", _s22_39 = "Long-press Multiselect", _s18_75 = "email_style_custom", _s18_76 = "Custom Email Style", _s24_35 = "custom_message_dashboard", _s24_36 = "Custom Dashboard Message", _s29_31 = "custom_message_unpaid_invoice", _s29_32 = "Custom Unpaid Invoice Message", _s27_41 = "custom_message_paid_invoice", _s27_42 = "Custom Paid Invoice Message", _s31_10 = "custom_message_unapproved_quote", _s31_11 = "Custom Unapproved Quote Message", _s19_43 = "task_number_pattern", _s19_44 = "Task Number Pattern", _s19_45 = "task_number_counter", _s19_46 = "Task Number Counter", _s22_40 = "expense_number_pattern", _s22_41 = "Expense Number Pattern", _s22_42 = "expense_number_counter", _s22_43 = "Expense Number Counter", _s21_60 = "vendor_number_pattern", _s21_61 = "Vendor Number Pattern", _s21_62 = "vendor_number_counter", _s21_63 = "Vendor Number Counter", _s21_64 = "ticket_number_pattern", _s21_65 = "Ticket Number Pattern", _s21_66 = "ticket_number_counter", _s21_67 = "Ticket Number Counter", _s22_44 = "payment_number_pattern", _s22_45 = "Payment Number Pattern", _s22_46 = "payment_number_counter", _s22_47 = "Payment Number Counter", _s22_48 = "invoice_number_pattern", _s22_49 = "Invoice Number Pattern", _s22_50 = "invoice_number_counter", _s22_51 = "Invoice Number Counter", _s20_52 = "quote_number_pattern", _s20_53 = "Quote Number Pattern", _s20_54 = "quote_number_counter", _s20_55 = "Quote Number Counter", _s21_68 = "client_number_pattern", _s21_69 = "Credit Number Pattern", _s21_70 = "client_number_counter", _s21_71 = "Credit Number Counter", _s21_72 = "credit_number_pattern", _s21_73 = "credit_number_counter", _s18_77 = "reset_counter_date", _s18_78 = "Reset Counter Date", _s28_51 = "shared_invoice_quote_counter", _s18_79 = "default_tax_name_1", _s18_80 = "Default Tax Name 1", _s18_81 = "default_tax_rate_1", _s18_82 = "Default Tax Rate 1", _s18_83 = "default_tax_name_2", _s18_84 = "Default Tax Name 2", _s18_85 = "default_tax_rate_2", _s18_86 = "Default Tax Rate 2", _s18_87 = "default_tax_name_3", _s18_88 = "Default Tax Name 3", _s18_89 = "default_tax_rate_3", _s18_90 = "Default Tax Rate 3", _s21_74 = "email_subject_invoice", _s21_75 = "Email Invoice Subject", _s19_47 = "email_subject_quote", _s19_48 = "Email Quote Subject", _s21_76 = "email_subject_payment", _s21_77 = "Email Payment Subject", _s29_33 = "email_subject_payment_partial", _s29_34 = "Email Partial Payment Subject", _s16_193 = "client_is_active", _s16_194 = "Client is Active", _s16_195 = "Client Apt/Suite", _s16_196 = "Vendor Apt/Suite", _s24_37 = "client_shipping_address1", _s22_52 = "Client Shipping Street", _s24_38 = "client_shipping_address2", _s25_42 = "Client Shipping Apt/Suite", _s16_197 = "invoice_due_date", _s17_113 = "custom_surcharge1", _s17_114 = "custom_surcharge2", _s17_115 = "custom_surcharge3", _s17_116 = "custom_surcharge4", _s19_49 = "expense_category_id", _s19_50 = "Expense Category ID", _s16_198 = "expense_category", _s19_51 = "invoice_currency_id", _s19_52 = "Invoice Currency ID", _s67_ = 'Once the file is ready you"ll receive an email with a download link', _s61_2 = "Set the subdomain or display the invoice on your own website.", _s54_ = "Upgrade to a paid plan to enable the advanded settings", _s17_117 = "Resend Invitation", _s25_43 = "Two-Factor Authentication", _s31_12 = 'Please type ":value" to confirm', _s48_0 = "Warning: this company has not yet been activated", _s31_13 = "Successfully update task status", _s29_35 = "Successfully deleted category", _s50_3 = "The credit amount cannot exceed the payment amount", _s26_35 = "Make the documents visible", _s16_199 = "Apple/Google Pay", _s52_1 = "Support paying at minimum the partial/deposit amount", _s29_36 = "Successfully emailed invoices", _s27_43 = "Successfully emailed quotes", _s28_52 = "Successfully emailed credits", _s29_37 = "Tokeni \xebsht\xeb fshir\xeb me sukses", _s16_200 = "Search Documents", _s16_201 = "Search Tax Rates", _s19_53 = ":count invoice sent", _s69_ = "Warning: This will permanently delete your company, there is no undo.", _s16_202 = "Created by :name", _s33_16 = "Adjust percent to account for fee", _s21_78 = "Password is too short", _s21_79 = "terms_of_service_link", _s16_203 = "terms of service", _s19_54 = "privacy_policy_link", _s27_44 = "Requires an enterprise plan", _s24_39 = "Add documents to invoice", _s37_16 = "Successfully archived :count projects", _s36_10 = "Successfully deleted :count projects", _s20_56 = ":count invoices sent", _s37_17 = "Successfully archived :count products", _s36_11 = "Successfully deleted :count products", _s28_53 = "Successfully emailed payment", _s19_55 = "Click + to add time", _s54_0 = ":user emailed invoice :invoice for :client to :contact", _s44_ = ":contact viewed invoice :invoice for :client", _s85_0 = ":contact entered payment :payment for :payment_amount on invoice :invoice for :client", _s50_4 = ":user emailed quote :quote for :client to :contact", _s42_9 = ":contact approved quote :quote for :client", _s50_5 = ":user cancelled a :payment_amount payment :payment", _s64_ = ":user refunded :adjustment of a :payment_amount payment :payment", _s28_54 = ":user updated ticket :ticket", _s27_45 = ":user closed ticket :ticket", _s27_46 = ":user merged ticket :ticket", _s26_36 = ":user split ticket :ticket", _s30_23 = ":contact opened ticket :ticket", _s32_7 = ":contact reopened ticket :ticket", _s29_38 = ":user reopened ticket :ticket", _s31_14 = ":contact replied ticket :ticket", _s27_47 = ":user viewed ticket :ticket", _s61_3 = ":user emailed first reminder for invoice :invoice to :contact", _s62_ = ":user emailed second reminder for invoice :invoice to :contact", _s61_4 = ":user emailed third reminder for invoice :invoice to :contact", _s63_0 = ":user emailed endless reminder for invoice :invoice to :contact", _s40_1 = ":user created subscription :subscription", _s40_2 = ":user updated subscription :subscription", _s41_4 = ":user archived subscription :subscription", _s40_3 = ":user deleted subscription :subscription", _s41_5 = ":user restored subscription :subscription", _s27_48 = "Successfully emailed credit", _s28_55 = "Shared Invoice Quote Counter", _s16_204 = "Expense Category", _s16_205 = "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_118 = "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_206 = "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0434\u0430\u043d\u044a\u0446\u0438", _s16_207 = "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s32_8 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", _s26_37 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_208 = "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s24_40 = "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", _s24_41 = "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s16_209 = "Refunded Payment", _s24_42 = "Nova kategorija tro\u0161kova", _s45_2 = "Successfully archived :count expense category", _s17_119 = "Obri\u0161i dobavlja\u010da", _s16_210 = "Po\u0161alji e-po\u0161tom", _s23_33 = "Uspje\u0161no otkazani ra\u010dun", _s16_211 = "Redovni tro\u0161kovi", _s16_212 = "Trenutna verzija", _s16_213 = "Vi\u0161e informacija", _s20_57 = "Lozinka je prekratka", _s23_34 = "Upravljanje korisnicima", _s21_80 = "Sakrij datum pla\u0107anja", _s70_0 = 'Prika\u017eite "Datum pla\u0107anja" na ra\u010dunima, onda kada je uplata primljena.', _s20_58 = "Prika\u017ei zaglavlje na", _s19_56 = "Prika\u017ei podno\u017eje na", _s142_ = "Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.", _s81_ = "Olak\u0161ajte svojim klijentima pla\u0107anje dodavanjem schema.org markupa va\u0161oj e-po\u0161ti.", _s16_214 = "Kreditna kartica", _s24_43 = "Proizvodi sa samoispunom", _s53_2 = "Odabir proizvoda \u0107e automatski ispuniti opis i cijenu", _s57_ = "A\u017euriranje ra\u010duna automatski a\u017eurirati registar proizvoda", _s18_91 = "Postavke proizvoda", _s17_120 = "Napredne postavke", _s17_121 = "Detalji korisnika", _s17_122 = "Prilago\u0111ena polja", _s16_215 = "Postavke e-po\u0161te", _s22_53 = "Vizualizacije podataka", _s18_92 = "Godi\u0161nja pretplata", _s16_216 = ":count korisnika", _s18_93 = "Molimo unesite ime", _s18_94 = "Korisni\u010dka prijava", _s23_35 = "Uspje\u0161no obrisan tro\u0161ak", _s16_217 = "Uredi dobavlja\u010da", _s16_218 = "aktivni klijenti", _s18_95 = "Da li ste sigurni?", _s30_24 = "Kliknite + za dodavanje stavke", _s25_44 = "Molimo odaberite klijenta", _s17_123 = "Klijentski portal", _s16_219 = "Drugi podsjetnik", _s16_220 = "Tre\u0107i podsjetnik", _s31_15 = "Po\u0161alji e-po\u0161tom ra\u010dun klijentu", _s21_81 = "Referenca transakcije", _s30_25 = ":user kreirao klijenta :client", _s32_9 = ":user arhivirao klijenta :client", _s30_26 = ":user obrisao klijenta :client", _s28_56 = ":user kreirao ra\u010dun :invoice", _s29_39 = ":user a\u017eurirao ra\u010dun :invoice", _s30_27 = ":user arhivirao ra\u010dun :invoice", _s27_49 = ":user obrisao ra\u010dun :invoce", _s30_28 = ":user a\u017eurirao uplatu :payment", _s30_29 = ":user ahivirao uplatu :payment", _s29_40 = ":user obrisao uplatu :payment", _s27_50 = ":user upisao :credit kredit", _s29_41 = ":user a\u017eurirao :credit kredit", _s30_30 = ":user arhivirao :credit kredit", _s28_57 = ":user obrisao :credit kredit", _s28_58 = ":user obnovio ra\u010dun :invoice", _s30_31 = ":user obnovio klijenta :client", _s29_42 = ":user obnovio uplatu :payment", _s28_59 = ":user obnovio :credit kredit", _s29_43 = ":user kreirao tro\u0161ak :expense", _s41_6 = ":payment_amount payment (:payment) failed", _s21_82 = "N\xe1klad \xfasp\u011b\u0161n\u011b smaz\xe1n", _s16_221 = "Datum splatnosti", _s18_96 = "Should be invoiced", _s17_124 = "Refunder betaling", _s22_54 = ":count fakturaer sendt", _s19_57 = "Skjul delbetalinger", _s20_59 = "Vilk\xe5r for fakturaen", _s34_16 = "Successfully archived the tax rate", _s17_125 = "Datavisualisering", _s16_222 = "Convert currency", _s30_32 = "Successfully archived expenses", _s29_44 = "Successfully deleted expenses", _s16_223 = "Faktureringsdato", _s16_224 = "Betaling slettet", _s27_51 = "Gedeeltelijk niet toegepast", _s20_60 = "De taak is gewijzigd", _s36_12 = "Succesvol een taak status verwijderd", _s16_225 = "Uitgavecategorie", _s20_61 = "Automatisch omzetten", _s28_60 = "Webhook succesvol verwijderd", _s38_12 = "betalingstermijn met succes verwijderd", _s17_126 = "Eerste aangepaste", _s17_127 = "Tweede aangepaste", _s16_226 = "Derde aangepaste", _s18_97 = "Ontwerp verwijderd", _s20_62 = "Aangepaste Toeslag 1", _s20_63 = "Aangepaste Toeslag 2", _s20_64 = "Aangepaste Toeslag 3", _s20_65 = "Aangepaste Toeslag 4", _s31_16 = "Gelieve een klant te selecteren", _s22_55 = "Gedeeltelijke betaling", _s22_56 = "Automatisch archiveren", _s16_227 = "Betalingsgateway", _s18_98 = "Eerste herinnering", _s18_99 = "Tweede herinnering", _s17_128 = "Derde herinnering", _s17_129 = "Aangepaste waarde", _s21_83 = "Kredietnummer patroon", _s20_66 = "Kredietnummer teller", _s20_67 = "Please select a file", _s17_130 = "Save card details", _s69_0 = "Warning: This will permanently delete your account, there is no undo.", _s36_13 = "Successfully archived :count credits", _s35_14 = "Successfully deleted :count credits", _s24_44 = "Please select a customer", _s21_84 = "Recover your password", _s16_228 = "Secondary Colour", _s18_100 = "Auto-fill products", _s20_68 = "Auto-update products", _s19_58 = "Data Visualisations", _s34_17 = "Successfully archived :count tasks", _s33_17 = "Successfully deleted :count tasks", _s37_18 = "Successfully archived :count invoices", _s36_14 = "Successfully deleted :count invoices", _s28_61 = "Successfully emailed invoice", _s23_36 = "Partial Payment/Deposit", _s37_19 = "Successfully archived :count payments", _s36_15 = "Successfully deleted :count payments", _s35_15 = "Successfully archived :count quotes", _s34_18 = "Successfully deleted :count quotes", _s26_38 = "Successfully emailed quote", _s36_16 = "Successfully archived :count clients", _s35_16 = "Successfully deleted :count clients", _s22_57 = "automaattinen Arkistoi", _s43_1 = ":count asiakas(ta) arkistoitu onnistuneesti", _s22_58 = "Automaattinen laskutus", _s20_69 = "Derni\xe8re mise \xe0 jour", _s17_131 = "Pr\xe9nom du contact", _s19_59 = "\xc9diter l'abonnement", _s27_52 = "Abonnement cr\xe9\xe9 avec succ\xe8s", _s33_18 = "Abonnement mis \xe0 jour avec succ\xe8s", _s30_33 = "Abonnement archiv\xe9 avec succ\xe8s", _s18_101 = "Paiement rembours\xe9", _s17_132 = "Dernier trimestre", _s20_70 = "Convertir en facture", _s18_102 = "Facturer le projet", _s17_133 = "Facturer la t\xe2che", _s16_229 = "Montant converti", _s20_71 = "Documents par d\xe9faut", _s32_10 = "Veuillez s\xe9lectionner un fichier", _s29_45 = "Nouvelle cat\xe9gorie de d\xe9pense", _s40_4 = "La cat\xe9gorie a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s18_103 = "Facture r\xe9currente", _s20_72 = "Factures r\xe9currentes", _s27_53 = "Nouvelle facture r\xe9currente", _s16_230 = "Num\xe9ro de client", _s19_60 = "Nom de l'entreprise", _s16_231 = "Type de paiement", _s16_232 = "Factures \xe0 venir", _s17_134 = "Cr\xe9er une facture", _s20_73 = "Cr\xe9er un fournisseur", _s20_74 = "Supprimer la facture", _s19_61 = "Supprimer ce client", _s21_85 = "Supprimer ce paiement", _s20_75 = "Supprimer la d\xe9pense", _s31_17 = "Envoyer la facture par courriel", _s17_135 = "Montant du cr\xe9dit", _s18_104 = "Purger les donn\xe9es", _s22_59 = ":count facture envoy\xe9e", _s18_105 = "Activer la licence", _s19_62 = "Supprimer le compte", _s20_76 = "D\xe9penses r\xe9currentes", _s16_233 = "\xc9diter le cr\xe9dit", _s38_13 = "Le cr\xe9dit a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s21_86 = "Client personnalis\xe9 2", _s21_87 = "Client personnalis\xe9 3", _s21_88 = "Client personnalis\xe9 4", _s26_39 = "Fournisseur personnalis\xe9 1", _s26_40 = "Fournisseur personnalis\xe9 2", _s26_41 = "Fournisseur personnalis\xe9 3", _s26_42 = "Fournisseur personnalis\xe9 4", _s29_46 = "Derni\xe8re connexion du contact", _s20_77 = "T\xe9l\xe9phone du contact", _s18_106 = "R\xe9gion/D\xe9partement", _s19_63 = "Courriel du contact", _s18_107 = "S\xe9lection multiple", _s24_45 = "V\xe9rifier le mot de passe", _s78_ = "Veuillez inclure la description et le co\xfbt dans la liste d\xe9roulante du produit", _s31_18 = "Ajuster le pourcentage de frais", _s41_7 = "Ajuster le frais de pourcentage au compte", _s33_19 = "Tableau de bord du portail client", _s17_136 = "G\xe9n\xe9rer un nombre", _s21_89 = "Lors de la sauvegarde", _s18_108 = "Historique lat\xe9ral", _s20_78 = "Premier personnalis\xe9", _s19_64 = "Second personnalis\xe9", _s22_60 = "Troisi\xe8me personnalis\xe9", _s19_65 = "Quantit\xe9 par d\xe9faut", _s17_137 = "Deux taux de taxe", _s23_37 = "Taux de taxe par d\xe9faut", _s31_19 = "Veuillez s\xe9lectionner un client", _s27_54 = "Couleur de mise en \xe9vidence", _s16_234 = "Liste d\xe9roulante", _s18_109 = "Num\xe9ro de paiement", _s28_62 = "Apr\xe8s la date de facturation", _s20_79 = "Courriel de paiement", _s22_61 = "Filtr\xe9 par utilisateur", _s24_46 = "Gestion des utilisateurs", _s18_110 = "Nouvel utilisateur", _s20_80 = "\xc9diter l'utilisateur", _s19_66 = "Param\xe8tres g\xe9n\xe9raux", _s24_47 = 'Masquer "Pay\xe9 \xe0 ce jour"', _s18_111 = "Documents int\xe9gr\xe9s", _s18_112 = "Couleur principale", _s18_113 = "Couleur secondaire", _s16_235 = "Taille de police", _s17_138 = "Champs de facture", _s25_45 = "Conditions de facturation", _s24_48 = "Archiver automatiquement", _s29_47 = "Param\xe8tres de flux de travail", _s23_38 = "Prochaine remise \xe0 z\xe9ro", _s17_139 = "Pr\xe9fixe r\xe9current", _s23_39 = "Marge interne du nombre", _s19_67 = "Valeur de compagnie", _s18_114 = "Compteur de nombre", _s16_236 = "Mod\xe8le de nombre", _s16_237 = "CSS personnalis\xe9", _s23_40 = "JavaScript personnalis\xe9", _s19_68 = "Afficher sur le PDF", _s48_1 = "Case \xe0 cocher pour les conditions de facturation", _s20_81 = "Signature de facture", _s42_10 = "Prot\xe9ger les factures avec un mot de passe", _s18_115 = "Mod\xe8le de courriel", _s17_140 = "Virement bancaire", _s17_141 = "Montant des frais", _s21_90 = "Pourcentage des frais", _s16_238 = "Limite des frais", _s26_43 = "Logos des cartes accept\xe9es", _s20_82 = "Nouveau taux de taxe", _s22_62 = "\xc9diter le taux de taxe", _s42_11 = "Le taux de taxe a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s42_12 = "Le taux de taxe a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s65_1 = "La mise \xe0 jour d'une facture entra\xeene la mise \xe0 jour des produits", _s22_63 = "Convertir les produits", _s22_64 = "Passerelle de paiement", _s19_69 = "Nouvelle passerelle", _s20_83 = "\xc9diter la passerelle", _s37_20 = "La passerelle a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", _s43_2 = "La passerelle a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s40_5 = "La passerelle a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s41_8 = "La passerelle a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s41_9 = "La passerelle a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s16_239 = "Format de devise", _s17_142 = "Format date/heure", _s19_70 = "Envoyer des rappels", _s18_116 = "Filtrer par groupe", _s16_240 = "\xc9diter le groupe", _s32_11 = "Le groupe a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s38_14 = "Le groupe a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s46_3 = "Les param\xe8tres ont \xe9t\xe9 sauvegard\xe9s avec succ\xe8s", _s24_49 = "Param\xe8tres de l'appareil", _s18_117 = "Param\xe8tres de base", _s18_118 = "Param\xe8tres avanc\xe9s", _s18_119 = "Paiements en ligne", _s20_84 = "Champs personnalis\xe9s", _s26_44 = "Boutons Achetez maintenant", _s22_65 = "Param\xe8tres de courriel", _s27_55 = "Cartes de cr\xe9dit et banques", _s25_46 = "Visualisation des donn\xe9es", _s23_41 = "Inscription avec Google", _s17_143 = "Abonnement annuel", _s22_66 = "Veuillez entrer un nom", _s24_50 = "Conditions d'utilisation", _s28_63 = "Politique de confidentialit\xe9", _s32_12 = "Aucun enregistrement s\xe9lectionn\xe9", _s38_15 = "Le document a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s38_16 = "Le document a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s18_120 = "Date de la d\xe9pense", _s19_71 = "Nouveau fournisseur", _s18_121 = "Copier facturation", _s16_241 = "Heures budg\xe9t\xe9es", _s32_13 = "Le projet a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s39_4 = "Le projet a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s35_17 = "Le projet a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s36_17 = "Le projet a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s49_0 = "Veuillez vous connecter pour changer ce param\xe8tre", _s23_42 = "Veuillez vous connecter", _s21_91 = "Connexion biom\xe9trique", _s19_72 = "Intervalle de dates", _s18_122 = "P\xe9riode pr\xe9c\xe9dente", _s16_242 = "Ann\xe9e pr\xe9c\xe9dente", _s16_243 = "7 derniers jours", _s17_144 = "30 derniers jours", _s19_73 = "Modifier la facture", _s21_92 = "\xc9diter le fournisseur", _s28_64 = "\xc9diter la d\xe9pense r\xe9currente", _s22_67 = "Adresse de facturation", _s24_51 = ":count factures envoy\xe9es", _s35_18 = ":value a \xe9t\xe9 copi\xe9 au presse-papier", _s20_85 = "Lancement impossible", _s18_123 = "Ajouter un contact", _s37_21 = "Le produit a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s36_18 = ":count produits archiv\xe9s avec succ\xe8s", _s35_19 = ":count clients archiv\xe9s avec succ\xe8s", _s16_244 = "Nouvelle facture", _s38_17 = ":count factures supprim\xe9es avec succ\xe8s", _s18_124 = "Notes personnelles", _s16_245 = "Paiement partiel", _s35_20 = "Cliquez sur + pour ajouter du temps", _s20_86 = "Marquer comme envoy\xe9", _s16_246 = "Date du paiement", _s16_247 = "\xc9tat du paiement", _s23_43 = "Partiellement rembours\xe9", _s16_248 = "Courriel initial", _s16_249 = "Troisi\xe8me rappel", _s30_34 = ":user a cr\xe9\xe9 le client :client", _s33_20 = ":user a archiv\xe9 le client :client", _s34_19 = ":user a supprim\xe9 le client :client", _s32_14 = ":user a cr\xe9\xe9 la facture :invoice", _s38_18 = ":user a mis \xe0 jour la facture :invoice", _s35_21 = ":user a archiv\xe9 la facture :invoice", _s36_19 = ":user a supprim\xe9 la facture :invoice", _s36_20 = ":user a mis \xe0 jour le cr\xe9dit :credit", _s33_21 = ":user a archiv\xe9 le cr\xe9dit :credit", _s34_20 = ":user a supprim\xe9 le cr\xe9dit :credit", _s36_21 = ":user a restaur\xe9 la facture :invoice", _s34_21 = ":user a restaur\xe9 le client :client", _s37_22 = ":user a restaur\xe9 le paiement :payment", _s34_22 = ":user a restaur\xe9 le cr\xe9dit :credit", _s35_22 = ":user a cr\xe9\xe9 le fournisseur :vendor", _s38_19 = ":user a archiv\xe9 le fournisseur :vendor", _s39_5 = ":user a supprim\xe9 le fournisseur :vendor", _s39_6 = ":user a restaur\xe9 le fournisseur :vendor", _s32_15 = ":user a cr\xe9\xe9 la d\xe9pense :expense", _s35_23 = ":user a archiv\xe9 la d\xe9pense :expense", _s36_22 = ":user a supprim\xe9 la d\xe9pense :expense", _s36_23 = ":user a restaur\xe9 la d\xe9pense :expense", _s50_6 = "Le paiement de :payment_amount a \xe9chou\xe9 (:payment)", _s27_56 = ":user a cr\xe9\xe9 la t\xe2che :task", _s33_22 = ":user a mis \xe0 jour la t\xe2che :task", _s30_35 = ":user a archiv\xe9 la t\xe2che :task", _s31_20 = ":user a supprim\xe9 la t\xe2che :task", _s31_21 = ":user a restaur\xe9 la t\xe2che :task", _s38_20 = ":user a mis \xe0 jour la d\xe9pense :expense", _s27_57 = "Mot de passe \xe0 usage unique", _s34_23 = "Multis\xe9lection par pression longue", _s22_68 = "Valeur personnalis\xe9e 3", _s22_69 = "Valeur personnalis\xe9e 4", _s30_36 = "Style de courriel personnalis\xe9", _s39_7 = "Message personnalis\xe9 du tableau de bord", _s29_48 = "Compteur du num\xe9ro de facture", _s26_45 = "Mod\xe8le de num\xe9ro de cr\xe9dit", _s28_65 = "Mod\xe8le de compteur de cr\xe9dit", _s33_23 = "Remise \xe0 z\xe9ro du compteur de date", _s21_93 = "Montant de la facture", _s23_44 = "Facturation automatique", _s20_87 = "Ville du fournisseur", _s19_74 = "Pays du fournisseur", _s19_75 = "Montant du paiement", _s16_250 = "Journal de temps", _s20_88 = "Cat\xe9gorie de d\xe9pense", _s27_58 = "Partiellement non-appliqu\xe9e", _s18_125 = "Soumission expir\xe9e", _s23_45 = "Facture personnalis\xe9e 2", _s23_46 = "Facture personnalis\xe9e 3", _s23_47 = "Facture personnalis\xe9e 4", _s25_47 = "Surcharge personnalis\xe9e 1", _s25_48 = "Surcharge personnalis\xe9e 2", _s25_49 = "Surcharge personnalis\xe9e 3", _s25_50 = "Surcharge personnalis\xe9e 4", _s69_1 = "Archive automatiquement les soumissions lorsqu'elles sont converties.", _s17_145 = "Valeur par d\xe9faut", _s50_7 = "La facture a \xe9t\xe9 marqu\xe9e comme envoy\xe9e avec succ\xe8s", _s56_0 = "Les factures ont \xe9t\xe9 marqu\xe9es comme envoy\xe9es avec succ\xe8s", _s20_89 = "Inscrire un paiement", _s26_46 = "Mod\xe8le du num\xe9ro de cr\xe9dit", _s28_66 = "Compteur du num\xe9ro de cr\xe9dit", _s18_126 = "Rechnung in Verzug", _s19_76 = "Standard-Steuersatz", _s20_90 = "Belegposition Steuer", _s16_251 = "F\xe4lligkeitsdatum", _s23_48 = "Zahlungsanbieter Fehler", _s24_52 = "Automatisch konvertieren", _s41_10 = "Guthaben erfolgreich per E-Mail versendet", _s19_77 = "Teilweise erstattet", _s19_78 = "Benutzerdefiniert 3", _s30_37 = "Benutzerdefinierter Zuschlag 1", _s30_38 = "Benutzerdefinierter Zuschlag 2", _s30_39 = "Benutzerdefinierter Zuschlag 3", _s30_40 = "Benutzerdefinierter Zuschlag 4", _s29_49 = "Bitte w\xe4hlen Sie einen Kunden", _s24_53 = "Allgemeine Einstellungen", _s20_91 = "Automatisches Archiv", _s20_92 = "Datenschutzerkl\xe4rung", _s55_0 = 'Die Rechnung wurde erfolgreich als "versendet" markiert', _s16_252 = "Erste Erinnerung", _s17_146 = "Zweite Erinnerung", _s17_147 = "Dritte Erinnerung", _s16_253 = "Zahlung eingeben", _s34_24 = ":contact schaute Angebot :quote an", _s24_54 = "Benutzerdefinierten Wert", _s23_49 = "Gutschriftnummernz\xe4hler", _s17_148 = "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s22_70 = "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7\u03c2", _s18_127 = "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", _s18_128 = "\u03a3\u03c5\u03bd\u03b5\u03c7\u03ae\u03c2 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s16_254 = "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s18_129 = "\u0394\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s16_255 = "\u03a4\u03c1\u03af\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s26_47 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 1", _s26_48 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 2", _s26_49 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 3", _s26_50 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03cd\u03be\u03b7\u03c3\u03b7 4", _s18_130 = "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s24_55 = "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s21_94 = "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7", _s19_79 = "24\u03c9\u03c1\u03b7 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u038f\u03c1\u03b1\u03c2", _s19_80 = "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03a7\u03c1\u03cc\u03bd\u03bf\u03c2", _s42_13 = "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", _s42_14 = "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1", _s16_256 = "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s18_131 = "\u0394\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s16_257 = "\u03a4\u03c1\u03af\u03c4\u03b7 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7", _s18_132 = "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s41_11 = "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b5\u03af\u03b4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", _s18_133 = "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae", _s27_59 = "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ce\u03bd", _s16_258 = "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5 2", _s18_134 = "Fattura in ritardo", _s18_135 = "Preventivo scaduto", _s17_149 = "Tipo di Pagamento", _s19_81 = "Aggiorna Preventivo", _s20_93 = "Termini di pagamento", _s23_50 = "Parzialmente rimborsato", _s28_67 = "Sovrattassa personalizzata 1", _s28_68 = "Sovrattassa personalizzata 2", _s28_69 = "Sovrattassa personalizzata 3", _s28_70 = "Sovrattassa personalizzata 4", _s16_259 = "Aliquote Fiscali", _s18_136 = "Auto Archiviazione", _s28_71 = "Si prega di inserire un nome", _s17_150 = "Parziale/Deposito", _s48_2 = "Fattura contrassegnata con successo come inviata", _s48_3 = "Fatture contrassegnate con successo come inviate", _s23_51 = "Fatturazione automatica", _s39_8 = ":user ha cancellato la fattura :invoice", _s21_95 = "Valore Personalizzato", _s32_16 = ":user \u306f \u8acb\u6c42\u66f8 :invoice \u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s21_96 = "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435", _s29_50 = "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s17_151 = "\u041f\u043e\u0434\u0435\u0441\u0435\u043d\u0430 \u0432\u0440\u0435\u0434\u043d\u043e\u0441\u0442", _s23_52 = "Tilbud sendt som e-post", _s17_152 = "Tredje P\xe5minnelse", _s18_137 = "Strona internetowa", _s30_41 = "Wydatki zosta\u0142y zarchiwizowane", _s24_56 = "Wydatki zosta\u0142y usuni\u0119te", _s21_97 = "Pagamento Reembolsado", _s18_138 = "Vencimento Parcial", _s18_139 = "Total do Or\xe7amento", _s22_71 = "Categorias de Despesas", _s26_51 = "Nova Categoria de Despesas", _s24_57 = "Etiquetas Personalizadas", _s16_260 = "Tipo de Registro", _s17_153 = "Tipo de Pagamento", _s19_82 = "Pagamentos Recentes", _s19_83 = "Pr\xf3ximos Or\xe7amentos", _s20_94 = "Or\xe7amentos Expirados", _s16_261 = "Criar fornecedor", _s21_98 = "Ocultar Barra Lateral", _s16_262 = "Cr\xe9dito Restante", _s17_154 = "Lembrete cont\xednuo", _s21_99 = "Condi\xe7\xe3o de Pagamento", _s24_58 = "Parcialmente Reembolsado", _s20_95 = "Reembolsar Pagamento", _s22_72 = "Primeiro Personalizado", _s21_100 = "Segundo Personalizado", _s22_73 = "Terceiro Personalizado", _s26_52 = "Cr\xe9dito criado com sucesso", _s30_42 = "Cr\xe9dito atualizado com sucesso", _s29_51 = "Cr\xe9dito arquivado com sucesso", _s38_21 = ":count cr\xe9ditos arquivados com sucesso", _s25_51 = "Sobretaxa Personalizada 1", _s25_52 = "Sobretaxa Personalizada 2", _s25_53 = "Sobretaxa Personalizada 3", _s25_54 = "Sobretaxa Personalizada 4", _s17_155 = "Adicionar Empresa", _s20_96 = "Configura\xe7\xf5es Gerais", _s17_156 = "Tamanho da P\xe1gina", _s22_74 = "Condi\xe7\xf5es do Or\xe7amento", _s19_84 = "Rodap\xe9 do Or\xe7amento", _s24_59 = "Arquivar Automaticamente", _s72_0 = "Converter automaticamente um or\xe7amento quando for aprovado pelo cliente.", _s18_140 = "Reiniciar Contador", _s17_157 = "CSS Personalizado", _s24_60 = "JavaScript Personalizado", _s23_53 = "Assinatura de Or\xe7amento", _s17_158 = "Cart\xe3o de Cr\xe9dito", _s22_75 = "Transfer\xeancia Banc\xe1ria", _s35_24 = "Atualiza\xe7\xe3o autom\xe1tica dos produtos", _s18_141 = "Filtrado por Grupo", _s20_97 = "Filtrado por Cliente", _s19_85 = "Detalhes da Empresa", _s17_159 = "Pagamentos Online", _s21_101 = "Campos Personalizados", _s21_102 = "Visualiza\xe7\xe3o de Dados", _s20_98 = "Condi\xe7\xf5es do Servi\xe7o", _s23_54 = "Pol\xedtica de Privacidade", _s16_263 = "Marcar como Pago", _s29_52 = "Fornecedor criado com sucesso", _s33_24 = "Fornecedor atualizado com sucesso", _s32_17 = "Fornecedor arquivado com sucesso", _s42_15 = ":count fornecedores arquivados com sucesso", _s26_53 = "Despesa criada com sucesso", _s30_43 = "Despesa atualizada com sucesso", _s29_53 = "Despesa arquivada com sucesso", _s28_72 = "Despesa exclu\xedda com sucesso", _s30_44 = "Despesa restaurada com sucesso", _s31_22 = "Despesas arquivadas com sucesso", _s30_45 = "Despesas exclu\xeddas com sucesso", _s26_54 = "Projeto criado com sucesso", _s30_46 = "Projeto atualizado com sucesso", _s29_54 = "Projeto arquivado com sucesso", _s30_47 = "Projeto restaurado com sucesso", _s38_22 = ":count projetos arquivados com sucesso", _s16_264 = "Editar Or\xe7amento", _s16_265 = "Editar Pagamento", _s17_160 = "Editar Fornecedor", _s17_161 = "Adicionar contato", _s30_48 = "Produto restaurado com sucesso", _s26_55 = "Cliente criado com sucesso", _s30_49 = "Cliente atualizado com sucesso", _s29_55 = "Cliente arquivado com sucesso", _s38_23 = ":count clientes arquivados com sucesso", _s19_86 = "N\xfamero do Or\xe7amento", _s17_162 = "Data do Or\xe7amento", _s16_266 = "Parcial/Dep\xf3sito", _s18_142 = "Data de Vencimento", _s30_50 = "Por favor selecione um cliente", _s19_87 = "Marcar como Enviada", _s17_163 = "Data do Pagamento", _s17_164 = "Portal do Cliente", _s17_165 = "Primeiro Lembrete", _s16_267 = "Segundo Lembrete", _s17_166 = "Terceiro Lembrete", _s23_55 = "Refer\xeancia da Transa\xe7\xe3o", _s28_73 = "Pagamento criado com sucesso", _s31_23 = "Pagamento arquivado com sucesso", _s40_6 = ":count pagamentos arquivados com sucesso", _s29_56 = ":user criou o cliente :client", _s32_18 = ":user arquivou o cliente :client", _s36_24 = ":user atualizou o pagamento :payment", _s35_25 = ":user arquivou o pagamento :payment", _s31_24 = ":user adicionou cr\xe9dito :credit", _s31_25 = ":user atualizou cr\xe9dito :credit", _s38_24 = ":contact visualizou o or\xe7amento :quote", _s33_25 = ":user arquivou o or\xe7amento :quote", _s34_25 = ":user restaurou o or\xe7amento :quote", _s33_26 = ":user restaurou o cliente :client", _s36_25 = ":user restaurou o pagamento :payment", _s33_27 = ":user restaurou o cr\xe9dito :credit", _s32_19 = ":user criou o fornecedor :vendor", _s35_26 = ":user arquivou o fornecedor :vendor", _s36_26 = ":user restaurou o fornecedor :vendor", _s30_51 = ":user criou a despesa :expense", _s33_28 = ":user arquivou a despesa :expense", _s34_26 = ":user restaurou a despesa :expense", _s26_56 = ":user criou a tarefa :task", _s30_52 = ":user atualizou a tarefa :task", _s29_57 = ":user arquivou a tarefa :task", _s30_53 = ":user restaurou a tarefa :task", _s34_27 = ":user atualizou a despesa :expense", _s19_88 = "Valor Personalizado", _s21_103 = "Valor Personalizado 3", _s21_104 = "Valor Personalizado 4", _s30_54 = "Padr\xe3o de Numera\xe7\xe3o de Cr\xe9dito", _s29_58 = "Contador Num\xe9rico de Cr\xe9ditos", _s19_89 = "Cobran\xe7a Autom\xe1tica", _s17_167 = "Importar/Exportar", _s65_2 = "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u044d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u0442 \u043a \u0431\u0435\u0437\u0432\u043e\u0437\u0432\u0440\u0430\u0442\u043d\u043e\u043c\u0443 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044e \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430.", _s23_56 = "\u0417\u0430\u0442\u0440\u0430\u0442\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u044b", _s16_268 = "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u044f \u043e\u043f\u043b\u0430\u0442\u0430", _s19_90 = ":count ra\u010dun poslat", _s22_76 = "Uspe\u0161no obrisan tro\u0161ak", _s20_99 = "Prilago\u0111ena Vrednost", _s20_100 = "Ra\u010dun uspe\u0161no poslan", _s16_269 = "Vrednost po meri", _s32_20 = "Suscripci\xf3n creada correctamente", _s37_23 = "Suscripci\xf3n actualizada correctamente", _s19_91 = "Reenviar Invitaci\xf3n", _s19_92 = "Convertir a Factura", _s18_143 = "Eventos Soportados", _s23_57 = "Seleccionar archivo CSV", _s18_144 = "Nombre del Cliente", _s18_145 = "Debe ser Facturado", _s18_146 = "Marcar como Activo", _s18_147 = "Factura Recurrente", _s20_101 = "Facturas Recurrentes", _s24_61 = "Nueva Factura Recurrente", _s17_168 = "Pr\xf3ximas Facturas", _s16_270 = "Eliminar Factura", _s16_271 = "Eliminar Cliente", _s20_102 = "Actualizar Proveedor", _s16_272 = "Borrar Proveedor", _s19_93 = "Registro de Cliente", _s26_57 = "Editar el T\xe9rminos de Pago", _s19_94 = "Cantidad de Cr\xe9dito", _s18_148 = "Buscar 1 Proveedor", _s17_169 = "Todos los Eventos", _s16_273 = "Comprar Licencia", _s22_77 = "Dise\xf1os Personalizados", _s18_149 = "Tareas Recurrentes", _s16_274 = "Fecha de Cr\xe9dito", _s24_62 = "Actualizaci\xf3n Disponible", _s16_275 = "Saldo de Cr\xe9dito", _s16_276 = "Creado por :name", _s20_103 = "Ganancias y P\xe9rdidas", _s26_58 = "Configuraci\xf3n de Impuestos", _s21_105 = "Configuraci\xf3n General", _s19_95 = "Opciones de Factura", _s17_170 = "Todas las p\xe1ginas", _s16_277 = "Color Secundario", _s17_171 = "Campos de Factura", _s18_150 = "Campos de Producto", _s23_58 = "T\xe9rminos de Facturaci\xf3n", _s17_172 = "N\xfameros Generados", _s16_278 = "Cargar Impuestos", _s18_151 = "Prefijo Recurrente", _s16_279 = "Campo de Empresa", _s32_21 = "Proteger Facturas con Contrase\xf1a", _s18_152 = "Un cordial saludo,", _s118_ = 'Haga que sea f\xe1cil para sus clientes que paguen mediante la adici\xf3n de marcas "schema.org" a sus correos electr\xf3nicos.', _s16_280 = "Dise\xf1o de Correo", _s16_281 = "Habilitar Markup", _s20_104 = "Actualizar Direcci\xf3n", _s74_ = "Seleccionar un producto autom\xe1ticamente configurar\xe1 la descripci\xf3n y coste", _s20_105 = "Configuraci\xf3n B\xe1sica", _s22_78 = "Configuraci\xf3n Avanzada", _s22_79 = "Detalles de la Empresa", _s19_96 = "Detalles de Usuario", _s36_27 = "Configuraci\xf3n del Correo Electr\xf3nico", _s26_59 = "Plantillas & Recordatorios", _s22_80 = "Visualizaci\xf3n de Datos", _s31_26 = "Agregar documentos a la factura", _s16_282 = "Convertir moneda", _s41_12 = ":count proveedores actualizados con \xe9xito", _s26_60 = "Gasto creado correctamente", _s31_27 = "Gasto actualizado correctamente", _s29_59 = "Gasto archivado correctamente", _s27_60 = "Gasto borrado correctamente", _s31_28 = "Gastos archivados correctamente", _s29_60 = "Gastos borrados correctamente", _s22_81 = "Periodo de Comparaci\xf3n", _s16_283 = "Editar Proveedor", _s16_284 = "Ingresos Totales", _s23_59 = "Promedio de Facturaci\xf3n", _s18_153 = "Pendiente de Cobro", _s24_63 = ":count facturas enviadas", _s16_285 = "Clientes Activos", _s30_55 = "Producto actualizado con \xe9xito", _s17_173 = "N\xfamero de Factura", _s16_286 = "Fecha de Factura", _s17_174 = "Fecha de Creaci\xf3n", _s16_287 = "T\xe9rminos de Pago", _s19_97 = "Primer Recordatorio", _s20_106 = "Segundo Recordatorio", _s19_98 = "Tercer Recordatorio", _s25_55 = "Referencia de Transacci\xf3n", _s29_61 = ":user cre\xf3 el cliente :client", _s32_22 = ":user archiv\xf3 el cliente :client", _s35_27 = ":user actualiz\xf3 la factura :invoice", _s33_29 = ":user archiv\xf3 la factura :invoice", _s30_56 = ":user archiv\xf3 el pago :payment", _s33_30 = ":user restaur\xf3 el cliente :client", _s31_29 = ":user restaur\xf3 el pago :payment", _s30_57 = ":user cre\xf3 al vendedor :vendor", _s33_31 = ":user archiv\xf3 al vendedor :vendor", _s33_32 = ":user elimin\xf3 al vendedor :vendor", _s34_28 = ":user restaur\xf3 al vendedor :vendor", _s31_30 = ":user archiv\xf3 el gasto :expense", _s31_31 = ":user elimin\xf3 el gasto :expense", _s32_23 = ":user restaur\xf3 el gasto :expense", _s25_56 = ":user cre\xf3 la tarea :task", _s30_58 = ":user actualiz\xf3 la tarea :task", _s28_74 = ":user archiv\xf3 la tarea :task", _s28_75 = ":user elimin\xf3 la tarea :task", _s29_62 = ":user restaur\xf3 la tarea :task", _s33_33 = ":user actualiz\xf3 el ticket :ticket", _s29_63 = ":user cerr\xf3 el ticket :ticket", _s31_32 = ":user dividi\xf3 el ticket :ticket", _s32_24 = ":contact abri\xf3 el ticket :ticket", _s36_28 = ":contact respondi\xf3 el ticket :ticket", _s18_154 = "Importe de Factura", _s20_107 = "Fecha de Vencimiento", _s20_108 = "Ciudad del Proveedor", _s18_155 = "Pa\xeds del Proveedor", _s18_156 = "Nombre de Impuesto", _s19_99 = "Nombre del Contacto", _s20_109 = "Presupuesto Expirado", _s29_64 = "Token eliminado correctamente", _s23_60 = "Tercera Personalizaci\xf3n", _s24_64 = "Contacto Personalizado 1", _s24_65 = "Contacto Personalizado 2", _s24_66 = "Contacto Personalizado 3", _s24_67 = "Contacto Personalizado 4", _s23_61 = "Recargo Personalizado 1", _s23_62 = "Recargo Personalizado 2", _s23_63 = "Recargo Personalizado 3", _s23_64 = "Recargo Personalizado 4", _s45_3 = ":count proveedores actualizados correctamente", _s42_16 = "Factura marcada como enviada correctamente", _s45_4 = "Facturas marcadas como enviadas correctamente", _s33_34 = ":user borr\xf3 el presupuesto :quote", _s34_29 = ":contact vi\xf3 el presupuesto :quote", _s28_76 = "Patr\xf3n del N\xfamero de Cr\xe9dito", _s30_59 = "Contador del N\xfamero de Cr\xe9dito", _s24_68 = ":count fakturor skickade", _s16_288 = "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s20_110 = ":count \u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s28_77 = "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s26_61 = "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s18_157 = "\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s24_69 = ":count fatura g\xf6nderildi", t1 = type$.legacy_String; return P.LinkedHashMap_LinkedHashMap$_literal(["en", P.LinkedHashMap_LinkedHashMap$_literal(["client_postal_code", "Client Postal Code", "client_vat_number", "Client VAT Number", "has_tasks", "Has Tasks", "registration", "Registration", "unauthorized_stripe_warning", "Please authorize Stripe to accept online payments.", "view_expense", "View Expense", "view_statement", "View Statement", "sepa", "SEPA", "ideal", "iDEAL", "przelewy24", "Przelewy24", "eps", "EPS", "fpx", "FPX", "update_all_records", "Update all records", "system", "System", "set_default_company", "Set Default Company", "updated_company", "Successfully updated company", "kbc", "KBC", "bancontact", "Bancontact", "why_are_you_leaving", "Help us improve by telling us why (optional)", "webhook_success", "Webhook Success", "error_cross_client_tasks", "Tasks must all belong to the same client", "error_cross_client_expenses", "Expenses must all belong to the same client", "app", "App", "for_best_performance", "For the best performance download the :app app", "gross_line_total", "Gross Line Total", "bulk_email_invoice", "Email Invoice", "bulk_email_quote", "Email Quote", "bulk_email_credit", "Email Credit", "from_name", "From Name", "enabling_may_degrade_performance", "Enabling may degrade performance", "disabling_may_improve_performance", "Disabling may improve performance", "clone_to_expense", "Clone to Expense", "recurring_expense", "Recurring Expense", _s18_, _s18_0, "new_recurring_expense", "New Recurring Expense", _s22_, _s22_0, "created_recurring_expense", "Successfully created recurring expense", "updated_recurring_expense", "Successfully updated recurring expense", "archived_recurring_expense", "Successfully archived recurring expense", "deleted_recurring_expense", "Successfully deleted recurring expense", "removed_recurring_expense", "Successfully removed recurring expense", "restored_recurring_expense", "Successfully restored recurring expense", "search_recurring_expense", "Search Recurring Expense", "search_recurring_expenses", "Search Recurring Expenses", "last_sent_date", "Last Sent Date", "include_drafts", "Include Drafts", "include_drafts_help", "Include draft records in reports", "is_invoiced", "Is Invoiced", "change_plan", "Change Plan", "persist_data", "Persist Data", "customer_count", "Customer Count", "verify_customers", "Verify Customers", "google_analytics_tracking_id", "Google Analytics Tracking ID", "decimal_comma", "Decimal Comma", "use_comma_as_decimal_place", "Use comma as decimal place in forms", "select_method", "Select Method", "select_platform", "Select Platform", "use_web_app_to_connect_gmail", "Please use the web app to connect to Gmail", "expense_tax_help", "Item tax rates are disabled", "enable_markdown", "Enable Markdown", "enable_markdown_help", "Convert markdown to HTML on the PDF", "user_guide", "User Guide", "add_second_contact", "Add Second Contact", "previous_page", "Previous Page", "next_page", "Next Page", "export_colors", "Export Colors", "import_colors", "Import Colors", "clear_all", "Clear All", "contrast", "Contrast", "custom_colors", "Custom Colors", "colors", "Colors", "sidebar_active_background_color", "Sidebar Active Background Color", "sidebar_active_font_color", "Sidebar Active Font Color", "sidebar_inactive_background_color", "Sidebar Inactive Background Color", "sidebar_inactive_font_color", "Sidebar Inactive Font Color", "table_alternate_row_background_color", "Table Alternate Row Background Color", "invoice_header_background_color", "Invoice Header Background Color", "invoice_header_font_color", "Invoice Header Font Color", "net_subtotal", "Net Subtotal", "review_app", "Review App", "check_status", "Check Status", "free_trial", "Free Trial", "free_trial_help", "All accounts receive a two week trial of the Pro plan, once the trial ends your account will automatically change to the free plan.", "free_trial_ends_in_days", "The Pro plan trial ends in :count days, click to upgrade.", "free_trial_ends_today", "Today is the last day of the Pro plan trial, click to upgrade.", "change_email", "Change Email", "client_portal_domain_hint", "Optionally configure a separate client portal domain", "tasks_shown_in_portal", "Tasks Shown in Portal", "uninvoiced", "Uninvoiced", "subdomain_guide", "The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co", "send_time", "Send Time", "import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", "Once the file is ready you'll receive an email with a download link", _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Enable", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Lowercase letters, numbers and hyphens are supported", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, "Upgrade to a paid plan to enable the advanced settings", _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo Code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Resend Invite", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Enable Two Factor", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Successfully refunded payment", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, _s18_18, _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_1, _s29_1, "select_file", "Select File", _s16_32, _s16_33, "csv_file", "CSV File", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, "Please type ':value' to confirm", "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, "Company is not activated", "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "Successfully updated task status", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, "Successfully deleted expense category", _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, "Successfully archived expense :value categories", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, "The payment amount can not be negative", "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Should be Invoiced", _s23_7, _s33_7, _s29_2, "Make the documents visible to clients", _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", "Apple Pay", "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s17_32, _s18_29, _s18_30, _s21_25, _s21_26, _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, "Support paying a minimum amount", "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Token Billing", _s24_17, _s24_18, "always", "Enabled", "optin", "Disabled by default", "optout", "Enabled by default", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "Successfully queued invoices to be sent", "emailed_quotes", "Successfully queued quotes to be sent", "emailed_credits", "Successfully queued credits to be sent", "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "Taxes", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, _s17_42, _s17_43, _s17_44, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create Vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Delete Invoice", "update_client", "Update Client", "delete_client", "Delete Client", "delete_payment", "Delete Payment", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target URL", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_9, "updated_token", _s26_10, "archived_token", _s27_12, "deleted_token", _s26_11, "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Email Invoice", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use Default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, "Search :count Documents", "search_designs", "Search :count Designs", "search_invoices", "Search :count Invoices", "search_clients", "Search :count Clients", "search_products", "Search :count Products", "search_quotes", "Search :count Quotes", "search_credits", "Search :count Credits", "search_vendors", "Search :count Vendors", "search_users", "Search :count Users", _s16_57, "Search :count Tax Rates", "search_tasks", "Search :count Tasks", "search_settings", "Search Settings", "search_projects", "Search :count Projects", "search_expenses", "Search :count Expenses", "search_payments", "Search :count Payments", "search_groups", "Search :count Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "Custom 1", "custom2", "Custom 2", "custom3", "Custom 3", "custom4", "Custom 4", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", "Invoice Sent", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_19, "Warning: This will permanently delete your account [:company], there is no undo", "delete_company", "Delete Company", _s22_20, "Warning: This will permanently delete your company [:company], there is no undo", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_39, _s18_40, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "New Credit", "edit_credit", "Edit Credit", "created_credit", _s27_18, "updated_credit", _s27_19, "archived_credit", _s28_13, "deleted_credit", _s27_20, "removed_credit", _s27_21, "restored_credit", _s28_14, _s16_71, "Successfully archived :value credits", "deleted_credits", "Successfully deleted :value credits", _s16_72, _s36_3, "current_version", "Current Version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Learn More", "integrations", "Integrations", "tracking_id", "Tracking ID", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group By", "credit_balance", "Credit Balance", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client ID", "assigned_to", "Assigned To", "created_by", "Created By", "assigned_to_id", "Assigned To ID", "created_by_id", "Created By ID", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by :value", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "Entity State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Message", "from", "From", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, "Ensure client fee matches the gateway fee", _s18_50, _s18_51, "support_forum", "Support Forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Line Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "iFrame URL", "domain_url", "Domain URL", _s21_36, "Password must be at least 8 character long", _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "No client selected", "configure_rates", "Configure Rates", _s18_53, _s18_54, "tax_settings", "Tax Settings", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Recover Password", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Quote Email", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_22, "updated_user", _s25_23, "archived_user", _s26_18, "deleted_user", _s25_24, "removed_user", _s25_25, "restored_user", _s26_19, "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s16_123, "invoice_options", "Invoice Options", _s17_70, _s17_71, _s22_27, _s87_, _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "Invoice Terms", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two Weeks", "freq_four_weeks", "Four Weeks", "freq_monthly", "Monthly", "freq_two_months", "Two Months", _s17_74, "Three Months", _s16_126, "Four Months", "freq_six_months", "Six Months", "freq_annually", "Annually", "freq_two_years", "Two Years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Charge Taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, "If enabled the contact will be able to set a password when viewing their first invoice.", "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Email Signature", _s24_21, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable Min", "enable_max", "Enable Max", "min_limit", "Min Limit", "max_limit", "Max Limit", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Update Address", _s19_28, _s45_1, "rate", "Rate", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit Tax Rate", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, "Successfully archived tax rate", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Fill Products", _s18_64, _s71_, "update_products", "Update Products", _s20_44, _s65_0, _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Military Time", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, _s16_143, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_87, _s17_88, "company_details", "Company Details", "user_details", "User Details", "localization", "Localization", "online_payments", "Online Payments", "tax_rates", "Tax Rates", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, _s19_35, "price", "Price", "email_sign_up", "Sign up with email", "google_sign_up", "Sign up with Google", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s16_144, _s16_145, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Download", _s27_26, "Requires an Enterprise plan", "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Converted", _s24_27, "Add Documents to Invoice", "exchange_rate", "Exchange Rate", _s16_151, "Convert Currency", "mark_paid", "Mark Paid", "category", "Category", "address", "Address", "new_vendor", "New Vendor", "created_vendor", _s27_27, "updated_vendor", _s27_28, "archived_vendor", _s28_21, "deleted_vendor", _s27_29, "restored_vendor", _s28_22, _s16_152, "Successfully archived :value vendors", "deleted_vendors", "Successfully deleted :value vendors", _s16_153, _s36_5, "new_expense", "New Expense", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, "Successfully archived :value expenses", _s16_156, "Successfully deleted :value expenses", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_6, "start", "Start", "stop", "Stop", "started_task", _s25_34, "stopped_task", _s25_35, "resumed_task", _s25_36, "now", "Now", _s16_157, _s16_158, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_37, "updated_task", _s25_38, "archived_task", _s26_23, "deleted_task", _s25_39, "restored_task", _s26_24, "archived_tasks", "Successfully archived :value tasks", "deleted_tasks", "Successfully deleted :value tasks", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, "Successfully archived :value projects", _s16_161, "Successfully deleted :value projects", _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "click here", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Client", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s20_47, _s20_48, "billing_address", "Billing Address", _s16_164, _s16_165, "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", "Invoices Sent", "active_clients", "Active Clients", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Secret", "name", "Name", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_100, _s17_101, "paid_to_date", "Paid to Date", "balance_due", "Balance Due", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "Phone", "website", "Website", "vat_number", "VAT Number", "id_number", "ID Number", "create", "Create", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Contacts", "additional", "Additional", "first_name", "First Name", "last_name", "Last Name", "add_contact", "Add Contact", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_30, "updated_product", _s28_31, _s16_172, _s29_19, "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, "Successfully archived :value products", _s16_174, "Successfully deleted :value products", _s17_103, _s37_11, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "Client", "clients", "Clients", "new_client", "New Client", "created_client", _s27_31, "updated_client", _s27_32, "archived_client", _s28_33, _s16_175, "Successfully archived :value clients", "deleted_client", _s27_33, "deleted_clients", "Successfully deleted :value clients", "restored_client", _s28_34, _s16_176, _s36_7, "address1", "Street", "address2", "Apt/Suite", "city", "City", "state", "State/Province", "postal_code", "Postal Code", "country", "Country", "invoice", "Invoice", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_35, "updated_invoice", _s28_36, _s16_177, _s29_21, "deleted_invoice", _s28_37, _s16_178, _s29_22, _s17_104, "Successfully archived :value invoices", _s16_179, "Successfully deleted :value invoices", _s17_105, _s37_12, "emailed_invoice", "Successfully queued invoice to be sent", "emailed_payment", "Successfully queued payment to be sent", "amount", "Amount", "invoice_number", "Invoice Number", "invoice_date", "Invoice Date", "discount", "Discount", "po_number", "PO Number", "terms", "Terms", "public_notes", "Public Notes", "private_notes", "Private Notes", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Description", "unit_cost", "Unit Cost", "quantity", "Quantity", "add_item", "Add Item", "contact", "Contact", "work_phone", "Phone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Due Date", _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, "Click \u25b6 to add time", "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Settings", "language", "Language", "currency", "Currency", "created_at", "Created At", "created_on", "Created On", "updated_at", "Updated At", "tax", "Tax", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial", "paid", "Paid", "mark_sent", "Mark Sent", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Done", _s37_13, _s37_14, "dark_mode", "Dark Mode", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_182, _s16_183, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Payment Terms", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Cancelled", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "Reminder 1", "reminder2", "Reminder 2", "reminder3", "Reminder 3", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_12, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, _s21_58, "enter_payment", "Enter Payment", "new_payment", "Enter Payment", "created_payment", _s28_38, "updated_payment", _s28_39, _s16_190, _s29_23, "deleted_payment", _s28_40, _s16_191, _s29_24, _s17_109, "Successfully archived :value payments", _s16_192, "Successfully deleted :value payments", _s17_110, _s37_15, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_29, "updated_quote", _s26_30, "archived_quote", _s27_37, "deleted_quote", _s26_31, "restored_quote", _s27_38, "archived_quotes", "Successfully archived :value quotes", "deleted_quotes", "Successfully deleted :value quotes", "restored_quotes", _s35_13, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_41, "activity_2", _s29_25, "activity_3", _s28_42, "activity_4", _s30_15, "activity_5", _s30_16, "activity_6", ":user emailed invoice :invoice to :client", "activity_7", ":contact viewed invoice :invoice", "activity_8", _s31_3, "activity_9", _s30_17, "activity_10", ":contact entered payment :payment for invoice :invoice", "activity_11", _s30_18, "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", ":user emailed quote :quote to :client", "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", _s29_27, "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", ":contact approved quote :quote", "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s30_20, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", ":user cancelled payment :payment", "activity_40", ":user refunded payment :payment", "activity_41", "Payment :payment failed", "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", ":user created user", "activity_49", ":user updated user", "activity_50", ":user archived user", "activity_51", ":user deleted user", "activity_52", ":user restored user", "activity_53", ":user marked invoice :invoice as sent", "activity_54", ":user applied payment :payment to invoice :invoice", "activity_55", "", "activity_56", "", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", ":user emailed first reminder for invoice :invoice to :client", "activity_64", ":user emailed second reminder for invoice :invoice to :client", "activity_65", ":user emailed third reminder for invoice :invoice to :client", "activity_66", ":user emailed endless reminder for invoice :invoice to :client", "activity_80", ":user created subscription", "activity_81", ":user updated subscription", "activity_82", ":user archived subscription", "activity_83", ":user deleted subscription", "activity_84", ":user restored subscription", _s17_111, _s17_112, "emailed_quote", "Successfully queued quote to be sent", "emailed_credit", "Successfully queued credit to be sent", _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Select", _s22_38, _s22_39, "custom_value1", "Custom Value 1", "custom_value2", "Custom Value 2", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, _s22_51, _s20_52, _s20_53, _s20_54, _s20_55, _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, "Shared Invoice/Quote Counter", _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "Invoice Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid Amount", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank Id", _s19_49, _s19_50, _s16_198, "Category", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "status_color_theme", "Status Color Theme", "load_color_theme", "Load Color Theme"], t1, t1), "sq", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importo t\xeb dh\xebna", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "E pacaktuar", "partial_value", "Duhet t\xeb jet\xeb m\xeb shum\xeb se zero dhe m\xeb pak se totali", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktivizo", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Siguria", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Pages\xeb e rimbursuar", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Ktheje Ofert\xebn n\xeb Fatur\xeb", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Faturo detyr\xebn", "invoice_expense", "Fatur\xeb shpenzimesh", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Fshih", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolona", "sample", "Shembull", "map_to", "Map To", "import", "Importo", _s25_1, _s29_1, "select_file", "Ju lutem zgjedhni nj\xeb fajll", _s16_32, _s16_33, "csv_file", "Skedar CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Paguar pjes\xebrisht", "invoice_total", "Totali i fatur\xebs", "quote_total", "Totali i Ofert\xebs", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Paralajmerim", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Emri i klientit", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Kategorit\xeb e shpenzimeve", _s20_20, "Kategori e re e shpenzimeve", _s21_18, _s21_19, _s24_11, "Kategoria e shpenzimeve \xebsht\xeb krijuar me sukses", _s24_12, "\xcbsht\xeb perditesuar me sukses kategoria e shpenzimeve", _s25_5, "Kategoria e shpenzimeve \xebsht\xeb arkivuar me sukses", _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, "Kategoria e shpenzimeve \xebsht\xeb rikthyer me sukses", _s27_8, ":count kategori t\xeb shpenzimeve jan\xeb arkivuar me sukses", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Duhet t\xeb faturohet", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Fatur\xeb e p\xebrs\xebritshme", _s18_29, "Fatura t\xeb p\xebrs\xebritshme", _s21_25, "Fatur\xeb e re e p\xebrs\xebritshme", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Faturat e p\xebrs\xebritshme jan\xeb arkivuar me sukses", _s25_14, "Faturat e p\xebrs\xebritshme jan\xeb fshir\xeb me sukses", _s25_15, _s38_7, _s26_6, "Faturat e p\xebrs\xebritshme jan\xeb rikthyer me sukses", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Shiko portalin", "copy_link", "Copy Link", "token_billing", "Ruaj detajet e pages\xebs", _s24_17, _s24_18, "always", "Gjithmon\xeb", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Emri i kompanis\xeb", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ore", "statement", "Statement", "taxes", "Taksat", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "P\xebr", "health_check", "Health Check", "payment_type_id", "Lloji i pages\xebs", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Faturat e ardhshme", _s17_43, _s17_44, "recent_payments", "Pagesat e fundit", "upcoming_quotes", "Ofertat e ardhshme", "expired_quotes", "Ofertat e skaduara", "create_client", "Create Client", "create_invoice", "Krijo fatur\xeb", "create_quote", "Krijo Ofert\xeb", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Fshi Ofert\xebn", "update_invoice", "Update Invoice", "delete_invoice", "Fshi fatur\xebn", "update_client", "Update Client", "delete_client", "Fshi Klientin", "delete_payment", "Fshi Pages\xebn", "update_vendor", "Update Vendor", "delete_vendor", "Fshi kompanin\xeb", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Fshi shpenzimin", "create_task", "Krijo Detyr\xeb", "update_task", "Update Task", "delete_task", "Fshi Detyr\xebn", "approve_quote", "Approve Quote", "off", "Ndalur", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Falas", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Token\xebt", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token\xebt", "new_token", "New Token", "edit_token", "Edito Tokenin", "created_token", _s29_37, "updated_token", "Tokeni \xebsht\xeb perditesuar me sukses", "archived_token", "Tokeni \xebsht\xeb arkivuar me sukses", "deleted_token", _s29_37, "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "D\xebrgo fatur\xebn me email", "email_quote", "D\xebrgo me email Ofert\xebn", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Emri i Kontaktit", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Edito kushtet e pages\xebs", _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Shuma e kredituar", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Rimburso pages\xebn", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, "Qytet/Shtet/Poste", _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Lejet", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_53, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Fshi llogarin\xeb", _s22_19, "V\xebrrejtje: Kjo do t\xeb fshij\xeb t\xeb gjitha t\xeb dh\xebnat tuaja, ky veprim nuk ka mund\xebsi t\xeb kthehet mbrapa.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, "Menaxhimi i llogarive", "credit_date", "Data e kreditit", "credit", "Kredi", "credits", "Kredi", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", "Krediti \xebsht\xeb krijuar me sukses", "updated_credit", _s27_19, "archived_credit", "Krediti \xebsht\xeb arkivuar me sukses", "deleted_credit", "Krediti \xebsht\xeb fshir\xeb me sukses", "removed_credit", _s27_21, "restored_credit", "Krediti \xebsht\xeb rikhyer me sukses", _s16_71, ":count kredite jan\xeb arkivuar me sukses", "deleted_credits", ":kredi jan\xeb fshir\xeb me sukses", _s16_72, _s36_3, "current_version", "Versioni aktual", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "M\xebso m\xeb shum\xeb", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Kompani e re", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reseto", "number", "Number", "export", "Export", "chart", "Grafik", "count", "Count", "totals", "Totale", "blank", "Bosh", "day", "Dite", "month", "Muaj", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupo sipas", "credit_balance", "Bilanci i kreditit", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "ID e klientit", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Raporte", "report", "Raport", "add_company", "Shto Kompani", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Ndihm\xeb", "refund", "Rimburso", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Mesazhi", "from", "Nga", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Dokumentim", "contact_us", "Contact Us", "subtotal", "N\xebntotali", "line_total", "Totali i linj\xebs", "item", "Nj\xebsi", "credit_email", "Credit Email", "iframe_url", "Webfaqja", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Po", "no", "Jo", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Shiko", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "P\xebrdorues", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Ju lutem zgjedhni nj\xeb klient", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Rregullimet e Taksave", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Kalo", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Riktheni fjal\xebkalimin tuaj", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Orari", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Emaili i Fatur\xebs", "payment_email", "Emaili i Pages\xebs", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Emaili i Ofert\xebs", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, "Lejon p\xebrdoruesit t\xeb menaxhoj p\xebrdoruesit, t\xeb ndryshoj\xeb rregullimet dhe t\xeb modifikoj\xeb t\xeb gjitha sh\xebnimet.", "user_management", "Menaxhimi i p\xebrdoruesve", "users", "P\xebrdorues", "new_user", "P\xebrdorues i ri", "edit_user", "Edito p\xebrdoruesin", "created_user", _s25_22, "updated_user", "P\xebrdoruesi \xebsht\xeb perditesuar me sukses", "archived_user", "P\xebrdoruesi \xebsht\xeb arkivuar me sukses", "deleted_user", "P\xebrdoruesi \xebsht\xeb fshir\xeb me sukses", "removed_user", _s25_25, "restored_user", "P\xebrdoruesi \xebsht\xeb rikthyer me sukses", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Rregullimet Gjenerale", "invoice_options", "Opsionet e fatur\xebs", _s17_70, "Fshihe Paguar deri m\xeb tash", _s22_27, 'Shfaqni "Paguar deri m\xeb tash" n\xeb faturat tuaja pasi t\xeb jet\xeb pranuar pagesa.', _s23_17, "Dokumentet e lidhura", _s28_15, "Vendos fotografin\xeb n\xeb fatur\xeb.", _s16_124, "Shfaqe Header", _s16_125, "Shfaqe Footer", "first_page", "Faqja e par\xeb", "all_pages", "T\xeb gjitha faqet", "last_page", "Faqja e fundit", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Ngjyra kryesore", "secondary_color", "Ngjyra dyt\xebsore", "page_size", "Madh\xebsia e faqes", "font_size", "Madh\xebsia e fontit", "quote_design", "Quote Design", "invoice_fields", "Fushat e fatur\xebs", "product_fields", "Product Fields", "invoice_terms", "Kushtet e fatur\xebs", "invoice_footer", "Footer i Fatur\xebs", "quote_terms", "Kushtet e Ofertave", "quote_footer", "Footer i Ofert\xebs", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, "Automatikisht konverto ofert\xebn n\xeb fatur\xeb kur pranohet nga klienti.", _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Javore", "freq_two_weeks", "Dy javore", "freq_four_weeks", "Kat\xebr javore", "freq_monthly", "Mujore", "freq_two_months", "Two months", _s17_74, "Tre mujore", _s16_126, "Four months", "freq_six_months", "Gjasht\xeb mujore", "freq_annually", "Vjetore", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Asnj\xebher\xeb", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Vendos taksat", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "CSS i ndryshush\xebm", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, "Ju mund\xebson t\xeb vendosni fjal\xebkalim p\xebr secilin kontakt. N\xebse vendoset fjal\xebkalimi, kontakti duhet t\xeb vendos fjal\xebkalimin para se t'i sheh faturat.", "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "P\xebrsh\xebndetje", _s24_21, "B\xebjeni m\xeb t\xeb leht\xeb p\xebr klient\xebt tuaj t\xeb realizojn\xeb pagesat duke vendosur schema.org markimin n\xeb emailat tuaj.", "plain", "E thjesht\xeb", "light", "E leht\xeb", "dark", "E mbyllt\xeb", "email_design", "Dizajno emailin", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Aktivizo Markimin", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kredit kart\xeb", "bank_transfer", "Transfer bankar", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktivizo min", "enable_max", "Aktivizo max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Perditeso Adres\xebn", _s19_28, "Perditeso adres\xebn e klientit me detajet e ofruara", "rate", "Norma", "tax_rate", "Norma e taksave", "new_tax_rate", "Norm\xeb e re e taksave", "edit_tax_rate", "Edito norm\xebn e taks\xebs", _s16_133, "Norma e taks\xebs \xebsht\xeb krijuar me sukses", _s16_134, "Norma e taks\xebs \xebsht\xeb perditesuar me sukses", _s17_82, "Norma e taks\xebs \xebsht\xeb arkivuar me sukses", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Plot\xebso-automatikisht produktet", _s18_64, "Duke zgjedhur produktin, automatikisht do t\xeb plot\xebsohen fill in the description and cost", "update_products", "Perditeso-automatikisht produktet", _s20_44, "Perditesimi i fatur\xebs automatikisht do t\xeb perditesoje librarine e produktit", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "E \xe7'aktivizuar", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "E diel", "monday", "E h\xebn\xeb", "tuesday", "E marte", "wednesday", "E m\xebrkure", "thursday", "E enj\xebte", "friday", "E premte", "saturday", "E shtune", "january", "Janar", "february", "Shkurt", "march", "Mars", "april", "Prill", "may", "Maj", "june", "Qershor", "july", "Korrik", "august", "Gusht", "september", "Shtator", "october", "Tetor", "november", "N\xebntor", "december", "Dhjetor", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Koha 24 or\xebshe", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Rregullimi i Produktit", "device_settings", "Device Settings", "defaults", "T\xeb paracaktuara", "basic_settings", "Rregullimet bazike", _s17_87, "Rregullimi i Avansuar", "company_details", "Detajet e kompanis\xeb", "user_details", "Detajet e p\xebrdoruesit", "localization", "Vendore", "online_payments", "Pagesat Online", "tax_rates", "Normat e taksave", "notifications", "Njoftimet", "import_export", "Import | Export", "custom_fields", "Fushat e ndryshueshme", "invoice_design", "Dizajni i Fatur\xebs", "buy_now_buttons", "Butonat Blej Tash", "email_settings", "Rregullimi i Emailit", _s23_28, "Shabllonet & P\xebrkujtueset", _s22_30, _s20_46, _s19_34, "Vizualizimi i t\xeb dh\xebnave", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Kushtet e sh\xebrbimit", "privacy_policy", "Politika e Privat\xebsis\xeb", "sign_up", "Regjistrohu", "account_login", "Hyrja me llogari", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Krijo", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Shkarko", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dokumente", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Data e shpenzimit", "pending", "N\xeb pritje", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Konvertuar", _s24_27, _s24_39, "exchange_rate", "Kursi i k\xebmbimit", _s16_151, "Konverto valut\xebn", "mark_paid", "Mark Paid", "category", "Kategoria", "address", "Adresa", "new_vendor", "Kompani e re", "created_vendor", "Kompania \xebsht\xeb krijuar me sukses", "updated_vendor", "Kompania \xebsht\xeb perditesuar me sukses", "archived_vendor", "Kompania \xebsht\xeb arkivuar me sukses", "deleted_vendor", "Kompania \xebsht\xeb fshir\xeb me sukses", "restored_vendor", "Kompania u rikthye me sukses", _s16_152, ":counts kompani jan\xeb arkivuar me sukses", "deleted_vendors", ":count kompani jan\xeb fshir\xeb me sukses", _s16_153, _s36_5, "new_expense", "Enter Expense", "created_expense", "Shpenzimi \xebsht\xeb krijuar me sukses", "updated_expense", "Shpenzimi \xebsht\xeb perditesuar me sukses", _s16_154, "Shpenzimi \xebsht\xeb arkivuar me sukses", "deleted_expense", "Shpenzimi \xebsht\xeb fshir\xeb me sukses", _s16_155, "Shpenzimet jan\xeb rikthyer me sukses", _s17_93, "Shpenzimet jan\xeb arkivuar me sukses", _s16_156, "Shpenzimet jan\xeb fshir\xeb me sukses", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Faturuar", "logged", "Regjistruar", "running", "Duke ndodhur", "resume", "Vazhdo", "task_errors", "Ju lutem korrigjoni koh\xebt e vendosura mbi nj\xebra-tjetr\xebn", "start", "Fillo", "stop", "Ndalo", "started_task", _s25_34, "stopped_task", "Detyra \xebsht\xeb ndaluar me sukses", "resumed_task", _s25_36, "now", "Tash", _s16_157, _s16_158, "timer", "Koh\xebmat\xebsi", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Koha e fillimit", "end_time", "Koha e p\xebrfundimit", "date", "Data", "times", "Koh\xebt", "duration", "Koh\xebzgjatja", "new_task", "Detyr\xeb e re", "created_task", "Detyra u krijua me sukses", "updated_task", "Detyra \xebsht\xeb perditesuar me sukses", "archived_task", "Detyra \xebsht\xeb arkivuar me sukses", "deleted_task", "Detyra \xebsht\xeb fshir\xeb me sukses", "restored_task", "Detyra \xebsht\xeb rikthyer me sukses", "archived_tasks", ":count detyra jan\xeb arkivuar me sukses", "deleted_tasks", ":count detyra jan\xeb fshir\xeb me sukses", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "kliko k\xebtu", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Shtrirja e Dates", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "E ndryshueshme", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Shiko Fatur\xebn", "convert", "Convert", "more", "More", "edit_client", "Edito klientin", "edit_product", "Edito produkt", "edit_invoice", "Edito Fatur\xebn", "edit_quote", "Edito Ofert\xebn", "edit_payment", "Edito Pages\xebn", "edit_task", "Edito Detyr\xebn", "edit_expense", "Edito shpenzimi", "edit_vendor", "Edito kompanin\xeb", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Adresa e faturimit", _s16_164, _s16_165, "total_revenue", "Totali i Qarkullimit", "average_invoice", "Mesatarja e fatur\xebs", "outstanding", "Pa paguar1", "invoices_sent", _s20_56, "active_clients", "klient\xeb aktiv", "close", "Mbyll", "email", "Emaili", "password", "Fjal\xebkalimi", "url", "URL", "secret", "Sekret", "name", "Emri", "logout", "\xc7'identifikohu", "login", "Identifikohu", "filter", "Filtro", "sort", "Sort", "search", "K\xebrko", "active", "Aktiv", "archived", "Arkivuar", "deleted", "E fshir\xeb", "dashboard", "Paneli", "archive", "Arkivo", "delete", "Fshi", "restore", "Rikthe", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Ruaj", _s17_100, _s17_101, "paid_to_date", "Paguar deri m\xeb sot", "balance_due", "Bilanci aktual", "balance", "Bilanci", "overview", "Overview", "details", "Detajet", "phone", "Telefoni", "website", "Website", "vat_number", "Numri i TVSH", "id_number", "ID numri", "create", "Krijo", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontaktet", "additional", "Additional", "first_name", "Emri", "last_name", "Mbiemri", "add_contact", "Shto kontaktin", "are_you_sure", "A jeni t\xeb sigurt\xeb", "cancel", "Anulo", "ok", "Ok", "remove", "Largo", _s16_170, _s16_171, "product", "Produkt", "products", "Produktet", "new_product", "Produkt i ri", "created_product", "Produkti \xebsht\xeb krijuar me sukses", "updated_product", "Produkti \xebsht\xeb perditesuar me sukses", _s16_172, "Produkti \xebsht\xeb arkivuar me sukses", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Produkt", "notes", "Sh\xebnime", "cost", "Kosto", "client", "Klient", "clients", "Klient\xebt", "new_client", "Klient i ri", "created_client", "Klienti \xebsht\xeb krijuar me sukses", "updated_client", "Klienti \xebsht\xeb perditesuar me sukses", "archived_client", "Klienti \xebsht\xeb arkivuar me sukses", _s16_175, ":count klient\xeb jan\xeb arkivuar me sukses", "deleted_client", "Klienti \xebsht\xeb fshir\xeb me sukses", "deleted_clients", ":count klient\xeb jan\xeb fshir\xeb me sukses", "restored_client", "Klienti \xebsht\xeb rikthyer me sukses", _s16_176, _s36_7, "address1", "Rruga", "address2", "Apartamenti/banesa", "city", "Qyteti", "state", "Shteti/Provinca", "postal_code", "Kodi postar", "country", "Shteti", "invoice", "Fatura", "invoices", "Faturat", "new_invoice", "Fatur\xeb e re", "created_invoice", "Fatura \xebsht\xeb krijuar me sukses", "updated_invoice", "Fatura \xebsht\xeb perditesuar me sukses", _s16_177, "Fatura \xebsht\xeb arkivuar me sukses", "deleted_invoice", "Fatura \xebsht\xeb fshir\xeb me sukses", _s16_178, "Fatura \xebsht\xeb rikthyer me sukses", _s17_104, ":count fatura jan\xeb arkivuar me sukes", _s16_179, ":count fatura jan\xeb fshir\xeb me sukses", _s17_105, _s37_12, "emailed_invoice", "Fatura \xebsht\xeb d\xebrguar me sukses me email", "emailed_payment", _s28_53, "amount", "Shuma", "invoice_number", "Numri i fatur\xebs", "invoice_date", "Data e fatur\xebs", "discount", "Zbritje", "po_number", "Numri UB", "terms", "Kushtet", "public_notes", "Sh\xebnime publike", "private_notes", "Sh\xebnime private", "frequency", "Frekuenca", "start_date", "Data e fillimit", "end_date", "Data e p\xebrfundimit", "quote_number", "Numri i ofert\xebs", "quote_date", "Data e Ofert\xebs", "valid_until", "Valide deri", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "P\xebrshkrimi", "unit_cost", "Kosto p\xebr nj\xebsi", "quantity", "Sasia", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefoni", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Deri m\xeb dat\xeb", _s16_180, _s16_181, "status", "Statusi", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Totali", "percent", "Percent", "edit", "Edito", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Rregullimet", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Taks\xeb", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "D\xebrguar", "viewed", "Viewed", "approved", "Approved", "partial", "E pjesshme/depozite", "paid", "Paguar", "mark_sent", "Shenja \xebsht\xeb d\xebrguar", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "P\xebrfundo", _s37_13, _s37_14, "dark_mode", "Modeli i err\xebt", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktiviteti", _s16_182, _s16_183, "clone", "Klono", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Kushtet e pages\xebs", "payment_date", "Data e pages\xebs", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portali i klientit", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktivizuar", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "P\xebrkujtuesi i par\xeb", "second_reminder", "P\xebrkujtuesi i dyt\xeb", "third_reminder", "P\xebrkujtuesi i tret\xeb", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Tema", "body", "P\xebrmbajtja", "send_email", "D\xebrgo email", "email_receipt", "D\xebrgo flet\xebpages\xebn tek klienti me email", "auto_billing", "Auto billing", "button", "Button", "preview", "Parashiko", "customize", "Ndrysho", "history", "Historia", "payment", "Pagesa", "payments", "Pagesat", "refunded", "Refunded", "payment_type", "Lloji i pages\xebs", _s21_57, "Referenca e transaksionit", "enter_payment", "Cakto pages\xebn", "new_payment", "Enter Payment", "created_payment", "Pagesa \xebsht\xeb krijuar me sukses", "updated_payment", "Pagesa \xebsht\xeb perditesuar me sukses", _s16_190, "Pagesa \xebsht\xeb arkivuar me sukses", "deleted_payment", "Pagesa \xebsht\xeb fshir\xeb me sukses", _s16_191, "Pagesa \xebsht\xeb rikthyer me sukses", _s17_109, ":count pagesa jan\xeb arkivuar me sukses", _s16_192, ":count pagesa jan\xeb fshir\xeb me sukses", _s17_110, _s37_15, "quote", "Ofert\xeb", "quotes", "Oferta", "new_quote", "Ofert\xeb e re", "created_quote", "Oferta \xebsht\xeb krijuar me sukses", "updated_quote", "Oferta \xebsht\xeb perditesuar me sukses", "archived_quote", "Oferta \xebsht\xeb arkivuar me sukses", "deleted_quote", "Oferta \xebsht\xeb fshir\xeb me sukses", "restored_quote", "Oferta \xebsht\xeb rikthyer me sukses", "archived_quotes", ": count oferta jan\xeb arkivuar me sukses", "deleted_quotes", ":count oferta jan\xeb fshir\xeb me sukses", "restored_quotes", _s35_13, "expense", "Shpenzimet", "expenses", "Shpenzimet", "vendor", "Kompani", "vendors", "Kompanit\xeb", "task", "Detyre", "tasks", "Detyrat", "project", "Project", "projects", "Projects", "activity_1", ":user ka krijuar klientin :client", "activity_2", ":user ka arkivuar klientin :client", "activity_3", ":user ka fshir\xeb klientin :client", "activity_4", ":user ka krijuar fatur\xebn :invoice", "activity_5", ":user ka perditesuar fatur\xebn :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user ka arkivuar fatur\xebn :invoice", "activity_9", ":user ka fshir\xeb fatur\xebn :invoice", "activity_10", _s85_0, "activity_11", ":user ka perditesuar pages\xebn :payment", "activity_12", ":user ka arkivuar pages\xebn :payment", "activity_13", ":user ka fshir\xeb pages\xebn :payment", "activity_14", ":user ka shtuar :credit kredit", "activity_15", ":user ka perditesuar :credit kredit", "activity_16", ":user ka arkivuar :credit kredit", "activity_17", ":user ka fshir\xeb:credit kredit", "activity_18", ":user ka krijuar ofert\xeb :quote", "activity_19", ":user ka perditesuar ofert\xebn :quote", "activity_20", _s50_4, "activity_21", ":contact ka shikuar ofert\xebn :quote", "activity_22", ":user ka arkivuar ofert\xebn :quote", "activity_23", ":user ka fshir\xeb ofert\xebn :quote", "activity_24", ":user ka rikthyer ofert\xebn :quote", "activity_25", ":user ka rikthyer fatur\xebn :invoice", "activity_26", ":user ka rikthyer klientin :client", "activity_27", ":user ka rikthyer pages\xebn :payment", "activity_28", ":user ka rikthyer :credit kredit", "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", ":user ka krijuar shpeznim :expense", "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", ":payment_amount payment (:payment) ka d\xebshtuar", "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Oferta \xebsht\xeb d\xebrguar me sukses me email", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Skaduar", "all", "T\xeb gjitha", "select", "Selekto", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Numruesi i numrit t\xeb fatur\xebs", _s20_52, _s20_53, _s20_54, "Numruesi i numrit t\xeb ofert\xebs", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Shkruaj", "invoice_amount", "Shuma e fatur\xebs", _s16_197, "Deri m\xeb dat\xeb", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Faturo Automatikisht", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Emri i taks\xebs", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Shuma e paguar", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "bg", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u0418\u043c\u043f\u043e\u0440\u0442 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0418\u043c\u0435", _s17_1, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0424\u0430\u043c\u0438\u043b\u0438\u044f", "order", "Order", "unassigned", "\u041d\u0435\u043f\u0440\u0438\u0441\u0432\u043e\u0435\u043d\u0430", "partial_value", "\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 0 \u0438 \u043f\u043e-\u043c\u0430\u043b\u043a\u043e \u043e\u0442 \u043e\u0431\u0449\u0430\u0442\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442.", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0420\u0430\u0437\u0440\u0435\u0448\u0438", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u0417\u0430\u043b\u043e\u0436\u0435\u0442\u0435 subdomain \u0438\u043b\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u043d\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438\u044f \u0441\u0438 \u0441\u0430\u0439\u0442.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "\u0421\u0438\u0433\u0443\u0440\u043d\u043e\u0441\u0442", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442\u0438", _s16_11, _s16_12, _s17_7, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_1, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s21_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u043a\u0430\u043d\u0430", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "\u0412\u044a\u0440\u043d\u0430\u0442\u0438", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "\u0421\u043a\u0430\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0430\u0440\u043a\u043e\u0434\u0430 \u0441 :link \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435.", _s18_14, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0430 Two-Factor Authentication", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435", "to_update_run", "To update run", _s18_17, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043a\u0430\u0442\u043e \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s16_24, _s16_25, "invoice_project", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "invoice_task", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "invoice_expense", "\u041f\u0440\u0435\u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u0441\u0443\u043c\u0430", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043a\u0440\u0438\u0439", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u041a\u043e\u043b\u043e\u043d\u0430", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440", "map_to", "Map To", "import", "\u0418\u043c\u043f\u043e\u0440\u0442", _s25_1, _s29_1, "select_file", "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0444\u0430\u0439\u043b", _s16_32, _s16_33, "csv_file", "CSV \u0444\u0430\u0439\u043b", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430", "white_label", "White Label", "delivery_note", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u0434\u044a\u043b\u0436\u0438\u043c\u0430", "invoice_total", "\u0422\u043e\u0442\u0430\u043b \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_total", "\u041e\u0431\u0449\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", "credit_total", "\u041e\u0431\u0449 \u043a\u0440\u0435\u0434\u0438\u0442", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s20_20, "\u041d\u043e\u0432\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s21_18, _s21_19, _s24_11, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s24_12, "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s25_5, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s24_13, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", _s24_14, _s37_2, _s25_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s27_8, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0435\u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u0432 \u0430\u0440\u0445\u0438\u0432", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_29, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s21_25, "\u041d\u043e\u0432\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s22_12, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_14, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_15, _s38_7, _s26_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "\u041f\u0435\u0447\u0430\u043b\u0431\u0430", "line_item", "\u0420\u0435\u0434", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u0438", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b\u0430", "copy_link", "Copy Link", "token_billing", "\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043d\u0430 \u043a\u0430\u0440\u0442\u0430\u0442\u0430", _s24_17, _s24_18, "always", "\u0412\u0438\u043d\u0430\u0433\u0438", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u0415\u0442\u0438\u043a\u0435\u0442", "client_number", "\u041a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438 \u043d\u043e\u043c\u0435\u0440", "auto_convert", "Auto Convert", "company_name", "\u0418\u043c\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "emailed_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "emailed_credits", _s28_52, "gateway", "\u041f\u043e\u0440\u0442\u0430\u043b", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0427\u0430\u0441\u043e\u0432\u0435", "statement", "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435", "taxes", "\u0414\u0430\u043d\u044a\u0446\u0438", "surcharge", "\u0414\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435", "apply_payment", "Apply Payment", "apply", "\u041f\u0440\u0438\u043b\u043e\u0436\u0438", "unapplied", "Unapplied", "select_label", "\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u0435\u0442\u0438\u043a\u0435\u0442", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u0414\u043e", "health_check", "Health Check", "payment_type_id", "\u041d\u0430\u0447\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_43, _s17_44, "recent_payments", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "upcoming_quotes", "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "expired_quotes", "\u0418\u0437\u0442\u0435\u043a\u043b\u0438 \u043e\u0444\u0435\u0440\u0442\u0438", "create_client", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "create_invoice", "\u0421\u044a\u0437\u0434\u0430\u0439 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "create_quote", "\u0421\u044a\u0437\u0434\u0430\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "create_payment", "Create Payment", "create_vendor", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "update_quote", "Update Quote", "delete_quote", "\u0418\u0437\u0442\u0440\u0438\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "update_invoice", "Update Invoice", "delete_invoice", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "update_client", "Update Client", "delete_client", "\u0418\u0437\u0442\u0440\u0438\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "delete_payment", "\u0418\u0437\u0442\u0440\u0438\u0439 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "update_vendor", "Update Vendor", "delete_vendor", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "create_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "update_task", "Update Task", "delete_task", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "approve_quote", "Approve Quote", "off", "\u0418\u0437\u043a\u043b.", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0411\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "\u041f\u043b\u0430\u043d", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API \u0442\u043e\u043a\u044a\u043d\u0438", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u0422\u043e\u043a\u044a\u043d", "tokens", "\u0422\u043e\u043a\u044a\u043d\u0438", "new_token", "New Token", "edit_token", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0442\u043e\u043a\u044a\u043d", "created_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0442\u043e\u043a\u044a\u043d", "updated_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0442\u043e\u043a\u044a\u043d", "archived_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0442\u043e\u043a\u0435\u043d", "deleted_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0442\u043e\u043a\u044a\u043d", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "email_quote", "\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "email_credit", "Email Credit", "email_payment", _s16_205, _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 - \u0438\u043c\u0435", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_29, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u0418\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "inclusive", "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "\u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435", _s17_55, "\u0413\u0440\u0430\u0434 / \u0429\u0430\u0442 / \u041f\u043e\u0449. \u043a\u043e\u0434", _s17_57, "\u041f\u043e\u0449. \u043a\u043e\u0434 / \u0429\u0430\u0442 / \u0413\u0440\u0430\u0434", "custom1", "\u041f\u044a\u0440\u0432\u0430 \u043a\u043e\u043b\u043e\u043d\u0430", "custom2", "\u0412\u0442\u043e\u0440\u0430 \u043a\u043e\u043b\u043e\u043d\u0430", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", _s16_64, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0447\u0438\u0441\u0442\u0435\u043d\u0438 \u0444\u0438\u0440\u043c\u0435\u043d\u0438 \u0434\u0430\u043d\u043d\u0438", _s18_38, "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0431\u0435\u0437 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 \u0434\u043d\u0438", "age_group_30", "30 - 60 \u0434\u043d\u0438", "age_group_60", "60 - 90 \u0434\u043d\u0438", "age_group_90", "90 - 120 \u0434\u043d\u0438", "age_group_120", "120+ \u0434\u043d\u0438", "refresh", "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0414\u0435\u0442\u0430\u0439\u043b\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u041f\u0440\u0430\u0432\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u044a\u043f", "none", "\u041d\u044f\u043c\u0430", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043b\u0438\u0446\u0435\u043d\u0437", "cancel_account", "\u0418\u0437\u0442\u0440\u0438\u0439 \u041f\u0440\u043e\u0444\u0438\u043b", _s22_19, "\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: \u0422\u043e\u0432\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0432\u0430\u0448\u0438\u044f\u0442 \u043f\u0440\u043e\u0444\u0438\u043b \u0438 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u0432 \u043d\u0435\u0433\u043e. \u0421\u043b\u0435\u0434 \u0442\u043e\u0432\u0430 \u0434\u0430\u043d\u043d\u0438\u0442\u0435 \u043d\u044f\u043c\u0430 \u043a\u0430\u043a \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0438.", "delete_company", "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", _s22_20, "\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0422\u043e\u0432\u0430 \u0449\u0435 \u0438\u0437\u0442\u0440\u0438\u0435 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e \u0444\u0438\u0440\u043c\u0430\u0442\u0430\u0412\u0438 \u0431\u0435\u0437 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0425\u0435\u0434\u044a\u0440", "load_design", "\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0434\u0438\u0437\u0430\u0439\u043d", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "tickets", "Tickets", _s16_69, "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u041e\u0444\u0435\u0440\u0442\u0438", "recurring_tasks", "Recurring Tasks", _s18_, "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u0449\u0438 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s18_39, "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0430\u043a\u0430\u0443\u043d\u0442\u0438\u0442\u0435", "credit_date", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u0414\u0430\u0442\u0430", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u0438", "new_credit", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "created_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "updated_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "archived_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043a\u0440\u0435\u0434\u0438\u0442", "deleted_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043a\u0440\u0435\u0434\u0438\u0442", "removed_credit", _s27_21, "restored_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043a\u0440\u0435\u0434\u0438\u0442", _s16_71, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s16_72, _s36_3, "current_version", "\u0422\u0435\u043a\u0443\u0449\u0430 \u0432\u0435\u0440\u0441\u0438\u044f", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "\u041d\u0430\u0443\u0447\u0438 \u043f\u043e\u0432\u0435\u0447\u0435", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u041d\u043e\u0432\u0430 \u0444\u0438\u0440\u043c\u0430", "added_company", _s26_14, "company1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 1", "company2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 2", "company3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 3", "company4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f 4", "product1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 1", "product2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 2", "product3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 3", "product4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u041f\u0440\u043e\u0434\u0443\u043a\u0442 4", "client1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 1", "client2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 2", "client3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 3", "client4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442 4", "contact1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 1", "contact2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 2", "contact3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 3", "contact4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442 4", "task1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 1", "task2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 2", "task3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 3", "task4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 4", "project1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 1", "project2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 2", "project3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 3", "project4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 4", "expense1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 1", "expense2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 2", "expense3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 3", "expense4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434 4", "vendor1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 1", "vendor2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 2", "vendor3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 3", "vendor4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a 4", "invoice1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 1", "invoice2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 2", "invoice3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 3", "invoice4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 4", "payment1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 1", "payment2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 2", "payment3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 3", "payment4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 4", "surcharge1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 1", "surcharge2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 2", "surcharge3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 3", "surcharge4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u043e \u0434\u043e\u043f\u043b\u0430\u0449\u0430\u043d\u0435 4", "group1", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 1", "group2", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 2", "group3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 3", "group4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0433\u0440\u0443\u043f\u0430 4", "reset", "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435", "number", "\u041d\u043e\u043c\u0435\u0440", "export", "\u0415\u043a\u0441\u043f\u043e\u0440\u0442", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a\u0430", "count", "\u0411\u0440\u043e\u0439", "totals", "\u041e\u0431\u0449\u0438 \u0441\u0443\u043c\u0438", "blank", "\u041f\u0440\u0430\u0437\u043d\u043e", "day", "\u0414\u0435\u043d", "month", "\u041c\u0435\u0441\u0435\u0446", "year", "\u0413\u043e\u0434\u0438\u043d\u0430", "subgroup", "\u041f\u043e\u0434\u0433\u0440\u0443\u043f\u0430", "is_active", "\u0415 \u0430\u043a\u0442\u0438\u0432\u0435\u043d", "group_by", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0435 \u043f\u043e", "credit_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s18_45, "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u043e \u0432\u043b\u0438\u0437\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430", _s17_61, "\u041f\u044a\u043b\u043d\u043e \u0438\u043c\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430", "contact_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430", _s21_31, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 1", _s21_32, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 2", _s21_33, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 3", _s21_34, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 4", _s17_63, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0423\u043b\u0438\u0446\u0430", _s17_64, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0410\u043f.", "shipping_city", "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0413\u0440\u0430\u0434", "shipping_state", "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0429\u0430\u0442/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u044f", _s20_33, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u041f\u043e\u0449. \u043a\u043e\u0434", _s16_103, "\u0414\u043e\u0441\u0442\u0430\u0432\u043a\u0430 - \u0414\u044a\u0440\u0436\u0430\u0432\u0430", _s16_105, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0423\u043b\u0438\u0446\u0430", _s16_106, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0410\u043f.", "billing_city", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0413\u0440\u0430\u0434", "billing_state", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0429\u0430\u0442/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u044f", _s19_19, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u041f\u043e\u0449. \u043a\u043e\u0434", "billing_country", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430 - \u0414\u044a\u0440\u0436\u0430\u0432\u0430", "client_id", "Client Id", "assigned_to", "\u041f\u0440\u0438\u0441\u0432\u043e\u0435\u043d \u043d\u0430", "created_by", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043e\u0442 :name", "assigned_to_id", "\u041f\u0440\u0438\u0441\u0432\u043e\u0435\u043d \u043d\u0430 Id", "created_by_id", "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043e\u0442 Id", "add_column", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043a\u043e\u043b\u043e\u043d\u0430", "edit_columns", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043a\u043e\u043b\u043e\u043d\u0438", "columns", "\u041a\u043e\u043b\u043e\u043d\u0438", "aging", "\u041f\u043e \u0434\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435", "profit_and_loss", "\u041f\u0435\u0447\u0430\u043b\u0431\u0430 \u0438 \u0437\u0430\u0433\u0443\u0431\u0430", "reports", "\u0421\u043f\u0440\u0430\u0432\u043a\u0438", "report", "\u0421\u043f\u0440\u0430\u0432\u043a\u0430", "add_company", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "unpaid_invoice", _s17_118, "paid_invoice", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_107, "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "help", "\u041f\u043e\u043c\u043e\u0449", "refund", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", "refund_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0432\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", "filtered_by", "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e", "contact_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0430", "multiselect", "\u041c\u0443\u043b\u0442\u0438\u0441\u0435\u043b\u0435\u043a\u0446\u0438\u044f", "entity_state", "\u0429\u0430\u0442", "verify_password", "\u041f\u043e\u0442\u0432\u044a\u0440\u0434\u0438 \u043f\u0430\u0440\u043e\u043b\u0430\u0442\u0430", "applied", "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u043e", _s21_35, "\u0412\u043a\u043b\u044e\u0447\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0433\u0440\u0435\u0448\u043a\u0438 \u043e\u0442 \u043b\u043e\u0433\u043e\u0432\u0435\u0442\u0435", _s30_4, "\u041d\u0438\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0445\u043c\u0435 \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435\u0442\u043e \u0412\u0438 \u0438 \u0449\u0435 \u0441\u0435 \u043e\u043f\u0438\u0442\u0430\u043c\u0435 \u0434\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u043c \u043d\u0435\u0437\u0430\u0431\u0430\u0432\u043d\u043e.", "message", "\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "from", "\u041e\u0442", _s20_35, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0435\u0442\u0430\u0439\u043b\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s25_20, "\u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0446\u0435\u043d\u0430\u0442\u0430 \u0432 \u043f\u0430\u0434\u0430\u0449\u043e\u0442\u043e \u043c\u0435\u043d\u044e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s20_37, "PDF \u0440\u0435\u043d\u0434\u0435\u0440-\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 :version", _s18_48, "\u041d\u0430\u0441\u0442\u043e\u0439\u043a\u0430 \u043d\u0430 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0442\u0430\u043a\u0441\u0430\u0442\u0430", _s23_14, _s33_16, _s18_50, "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435", "support_forum", "\u0424\u043e\u0440\u0443\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430", "about", "\u0417\u0430", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "contact_us", "\u0421\u0432\u044a\u0440\u0436\u0435\u0442\u0435 \u0441\u0435 \u0441 \u043d\u0430\u0441", "subtotal", "\u0421\u0443\u0431\u0442\u043e\u0442\u0430\u043b", "line_total", "\u041e\u0431\u0449\u0430 \u0446\u0435\u043d\u0430", "item", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "credit_email", "\u041a\u0440\u0435\u0434\u0438\u0442\u0435\u043d \u0435-\u043c\u0435\u0439\u043b", "iframe_url", "\u0421\u0430\u0439\u0442", "domain_url", "\u0414\u043e\u043c\u0435\u0439\u043d \u0430\u0434\u0440\u0435\u0441", _s21_36, "\u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u0435 \u0442\u0432\u044a\u0440\u0434\u0435 \u043a\u0440\u0430\u0442\u043a\u0430", _s20_38, "\u041f\u0430\u0440\u043e\u043b\u0430\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0433\u043b\u0430\u0432\u043d\u0430 \u0431\u0443\u043a\u0432\u0430 \u0438 \u0446\u0438\u0444\u0440\u0430", _s19_21, "\u0417\u0430\u0434\u0430\u0447\u0438 \u043e\u0442 \u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b", _s23_15, "\u0422\u0430\u0431\u043b\u043e \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438\u044f \u043f\u043e\u0440\u0442\u0430\u043b", _s20_39, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "deleted_logo", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u043b\u043e\u0433\u043e", "yes", "\u0414\u0430", "no", "\u041d\u0435", "generate_number", "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u0439 \u043d\u043e\u043c\u0435\u0440", "when_saved", "\u0435 \u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0430", "when_sent", "\u0435 \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", "select_company", "\u0418\u0437\u0431\u0435\u0440\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "float", "\u041f\u043b\u0430\u0432\u0430\u0449", "collapse", "\u0421\u044a\u0431\u0435\u0440\u0438", "show_or_hide", "\u041f\u043e\u043a\u0430\u0436\u0438/\u0421\u043a\u0440\u0438\u0439", "menu_sidebar", "\u041c\u0435\u043d\u044e \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430", "history_sidebar", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043d\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430", "tablet", "\u0422\u0430\u0431\u043b\u0435\u0442", "mobile", "\u041c\u043e\u0431\u0438\u043b\u043d\u043e", "desktop", "\u0414\u0435\u0441\u043a\u0442\u043e\u043f", "layout", "\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435", "view", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "module", "\u041c\u043e\u0434\u0443\u043b", "first_custom", "\u041f\u044a\u0440\u0432\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "second_custom", "\u0412\u0442\u043e\u0440\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "third_custom", "\u0422\u0440\u0435\u0442\u043e \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "show_cost", "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0446\u0435\u043d\u0430", _s17_66, _s17_67, "show_cost_help", "\u041f\u043e\u043a\u0430\u0436\u0438 \u0446\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u043e\u0442\u043e \u043f\u043e\u043b\u0435 \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u0441\u043b\u0435\u0434\u0438\u0448 \u043f\u0435\u0447\u0430\u043b\u0431\u0430\u0442\u0430", _s21_37, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0430\u0442\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442", _s26_15, "\u041f\u043e\u043a\u0430\u0436\u0438 \u043f\u043e\u043b\u0435\u0442\u043e \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430, \u0438\u043b\u0438 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0442\u043e \u043f\u043e\u043b\u0435", _s21_39, "\u041f\u043e\u043a\u0430\u0436\u0438 \u0431\u0440\u043e\u044f\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435", _s26_16, "\u041f\u043e\u043a\u0430\u0436\u0438 \u0440\u0435\u0434\u0430 \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442, \u0438\u043b\u0438 \u0449\u0435 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0440\u0435\u0434", _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, "\u041d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", _s21_43, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043b\u0438\u043d\u0438\u044f\u0442\u0430 \u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u043e\u0441\u0442 \u043d\u0430 \u0435\u0434\u043d\u043e", "one_tax_rate", "\u0415\u0434\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", "two_tax_rates", "\u0414\u0432\u0435 \u0434\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", "three_tax_rates", "\u0422\u0440\u0438 \u0434\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", _s16_111, "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "user", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "invoice_tax", "\u0422\u0430\u043a\u0441\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "line_item_tax", "\u0414\u0430\u043d\u044a\u043a \u0432\u044a\u0440\u0445\u0443 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0435\u043d\u0430\u0442\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430", "inclusive_taxes", "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u0442\u0430\u043a\u0441\u0438", _s17_68, "\u0414\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "item_tax_rates", "\u0414\u0430\u043d\u044a\u0447\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0438", _s18_52, "\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", "configure_rates", "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0440\u0438\u0444\u0438\u0442\u0435", _s18_53, _s18_54, "tax_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u0434\u0430\u043d\u044a\u043a", _s18_55, _s16_206, "accent_color", "\u0410\u043a\u0446\u0435\u043d\u0442\u0435\u043d \u0446\u0432\u044f\u0442", "switch", "\u041f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435", _s19_23, "\u041b\u0438\u0441\u0442 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d \u0441\u044a\u0441 \u0437\u0430\u043f\u0435\u0442\u0430\u0438", "options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s16_113, "\u0415\u0434\u043d\u043e\u0440\u0435\u0434\u043e\u0432 \u0442\u0435\u043a\u0441\u0442", "multi_line_text", "\u041c\u043d\u043e\u0433\u043e\u0440\u0435\u0434\u043e\u0432 \u0442\u0435\u043a\u0441\u0442", "dropdown", "\u041f\u0430\u0434\u0430\u0449\u043e \u043c\u0435\u043d\u044e", "field_type", "\u0412\u0438\u0434 \u043f\u043e\u043b\u0435", _s27_22, "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0435 e-mail \u0437\u0430 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "submit", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", _s16_115, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "late_fees", "\u0417\u0430\u043a\u044a\u0441\u043d\u0435\u043b\u0438 \u0422\u0430\u043a\u0441\u0438", "credit_number", "\u041a\u0440\u0435\u0434\u0438\u0442 \u043d\u043e\u043c\u0435\u0440", "payment_number", _s16_207, "late_fee_amount", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u044a\u0441\u043d\u0435\u043d\u0438\u0435", _s16_116, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u044a\u0441\u043d\u0435\u043d\u0438\u0435", "schedule", "\u0413\u0440\u0430\u0444\u0438\u043a", "before_due_date", "\u041f\u0440\u0435\u0434\u0438 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0434\u0430\u0442\u0430", "after_due_date", "\u0421\u043b\u0435\u0434 \u043a\u0440\u0430\u0439\u043d\u0430\u0442\u0430 \u0434\u0430\u0442\u0430", _s18_57, "\u0421\u043b\u0435\u0434 \u0434\u0430\u0442\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "days", "\u0414\u043d\u0438", "invoice_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "payment_email", _s16_205, "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "\u0418\u043c\u0435\u0439\u043b \u0437\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s16_118, "\u0411\u0435\u0437\u043a\u0440\u0430\u0439\u043d\u043e \u043f\u043e\u0434\u0441\u0435\u0449\u0430\u043d\u0435", _s16_120, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "administrator", "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440", _s18_58, "\u0414\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0432\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0434\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438, \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u044f \u043d\u0430\u0441\u0442\u043e\u0439\u043a\u0438 \u0438 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", "user_management", "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438\u0442\u0435", "users", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "new_user", "\u041d\u043e\u0432 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "edit_user", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "created_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "updated_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "archived_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "deleted_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "removed_user", "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0435 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "restored_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u041e\u0431\u0449\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "invoice_options", "\u041e\u043f\u0446\u0438\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s17_70, '\u0421\u043a\u0440\u0438\u0439 "\u0418\u0437\u043f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430"', _s22_27, '\u041f\u043e\u043a\u0430\u0436\u0438 "\u0418\u0437\u043f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430" \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435, \u0441\u043b\u0435\u0434 \u043a\u0430\u0442\u043e \u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435.', _s23_17, "\u0421\u0432\u044a\u0440\u0437\u0430\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", _s28_15, "\u0412\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s16_124, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0435\u0434\u044a\u0440\u0430 \u043d\u0430", _s16_125, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0443\u0442\u044a\u0440\u0430 \u043d\u0430", "first_page", "\u041f\u044a\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "all_pages", "\u0412\u0441\u0438\u0447\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438", "last_page", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "primary_font", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0428\u0440\u0438\u0444\u0442", "secondary_font", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u0428\u0440\u0438\u0444\u0442", "primary_color", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0446\u0432\u044f\u0442", "secondary_color", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u0446\u0432\u044f\u0442", "page_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430", "font_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", "quote_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "invoice_fields", "\u041f\u043e\u043b\u0435\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "product_fields", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_footer", "\u0424\u0443\u0442\u044a\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", "quote_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "quote_footer", "\u0424\u0443\u0442\u044a\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s18_59, "Auto Email", _s23_18, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043f\u0440\u0438 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c", _s20_42, "Auto Archive", _s25_26, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043f\u0440\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435\u0442\u043e \u0438\u043c", _s18_60, "Auto Archive", _s23_19, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0438 \u043f\u0440\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u0438\u043c", _s18_61, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435", _s23_20, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438\u0435 \u043e\u0442 \u043a\u043b\u0438\u0435\u043d\u0442\u0430.", _s17_72, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441", "freq_daily", "\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e", "freq_weekly", "\u0421\u0435\u0434\u043c\u0438\u0447\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u0441\u0435\u0434\u043c\u0438\u0446\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u0438\u0440\u0438 \u0441\u0435\u0434\u043c\u0438\u0446\u0438", "freq_monthly", "\u041c\u0435\u0441\u0435\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u0435\u0446\u0430", _s17_74, "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430", _s16_126, "\u0427\u0435\u0442\u0438\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0430", "freq_six_months", "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0430", "freq_annually", "\u0413\u043e\u0434\u0438\u0448\u043d\u043e", "freq_two_years", "\u041d\u0430 \u0434\u0432\u0435 \u0433\u043e\u0434\u0438\u043d\u0438", _s16_127, "\u0422\u0440\u0438 \u0433\u043e\u0434\u0438\u043d\u0438", "never", "\u041d\u0438\u043a\u043e\u0433\u0430", "company", "\u0424\u0438\u0440\u043c\u0430", _s17_75, "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0438 \u043d\u043e\u043c\u0435\u0440\u0430", "charge_taxes", "\u041d\u0430\u0447\u0438\u0441\u043b\u0438 \u0434\u0430\u043d\u044a\u0446\u0438", "next_reset", "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u043e \u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0435", "reset_counter", "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0440\u043e\u044f\u0447", _s16_128, "\u041f\u0440\u0435\u0444\u0438\u043a\u0441 \u0437\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "number_padding", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0442\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "general", "\u041e\u0431\u0449", "surcharge_field", "\u0415\u0442\u0438\u043a\u0435\u0442 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "company_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0424\u0438\u0440\u043c\u0430\u0442\u0430", "company_value", "\u0424\u0438\u0440\u043c\u0435\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "credit_field", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u043e \u043f\u043e\u043b\u0435", "invoice_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s17_77, "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0430 \u0442\u0430\u043a\u0441\u0430 \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "client_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "product_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", "payment_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "contact_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "vendor_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a\u0430", "expense_field", "\u041f\u043e\u043b\u0435 \u0420\u0430\u0437\u0445\u043e\u0434", "project_field", "\u041f\u043e\u043b\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "task_field", "\u041f\u043e\u043b\u0435 \u0417\u0430\u0434\u0430\u0447\u0430", "group_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0433\u0440\u0443\u043f\u0430", "number_counter", "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440\u0430", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "\u041c\u043e\u0434\u0435\u043b \u043d\u043e\u043c\u0435\u0440", "messages", "\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u044f", "custom_css", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d CSS", _s17_79, "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d JavaScript", _s16_130, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u0432 PDF \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", _s21_46, "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043f\u0438\u0441\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0432 PDF \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 / \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430.", _s25_27, "\u0427\u0435\u043a-\u0431\u043e\u043a\u0441 \u0437\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_5, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u044a\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u043f\u0440\u0438\u0435\u043c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s23_21, "\u0427\u0435\u043a-\u0431\u043e\u043a\u0441 \u0437\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s28_16, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u044a\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u043f\u0440\u0438\u0435\u043c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s25_28, "\u041f\u043e\u0434\u043f\u0438\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430", _s30_6, "\u0418\u0437\u0438\u0441\u043a\u0432\u0430\u043d\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u0434\u0430 \u043f\u043e\u0434\u043f\u0438\u0448\u0435", _s23_22, "\u041f\u043e\u0434\u043f\u0438\u0441 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430\u0442\u0430", _s22_29, "\u0417\u0430\u0449\u0438\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u0441 \u043f\u0430\u0440\u043e\u043b\u0430", _s27_23, "\u0414\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u0437\u0430\u043b\u043e\u0436\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u0430 \u0437\u0430 \u0432\u0441\u0435\u043a\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442. \u0410\u043a\u043e \u0442\u0430\u043a\u0430\u0432\u0430 \u0435 \u0437\u0430\u043b\u043e\u0436\u0435\u043d\u0430, \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0442\u043e \u043b\u0438\u0446\u0435 \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u044f \u0432\u044a\u0432\u0435\u0434\u0435 \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u0432\u0438\u0434\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435,", "authorization", "\u041e\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f", "subdomain", "Subdomain", "domain", "\u0414\u043e\u043c\u0435\u0439\u043d", "portal_mode", "\u041f\u043e\u0440\u0442\u0430\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c", "email_signature", "\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u0438,", _s24_21, "\u041d\u0430\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u043f\u043b\u0430\u0449\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u0412\u0430\u0441 \u043f\u043e-\u043b\u0435\u0441\u043d\u043e \u0437\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435 \u0441\u0438 \u043a\u0430\u0442\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u0432 \u0438\u043c\u0435\u0439\u043b\u0438\u0442\u0435 \u0441\u0438 schema.org markup.", "plain", "\u0418\u0437\u0447\u0438\u0441\u0442\u0435\u043d\u043e", "light", "\u0421\u0432\u0435\u0442\u043b\u043e", "dark", "\u0422\u044a\u043c\u043d\u043e", "email_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u0438\u043c\u0435\u0439\u043b", "attach_pdf", "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 PDF", _s16_131, "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "attach_ubl", "\u041f\u0440\u0438\u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 UBL", "email_style", "\u0421\u0442\u0438\u043b\u043e\u0432\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b\u0430", _s19_25, "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "\u041e\u0431\u0440\u0430\u0431\u043e\u0442\u0435\u043d", "credit_card", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430", "bank_transfer", "\u0411\u0430\u043d\u043a\u043e\u0432 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440", "priority", "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442", "fee_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430\u0442\u0430", "fee_percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u0442\u0430\u043a\u0441\u0430", "fee_cap", "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0437\u0430 \u0442\u0430\u043a\u0441\u0430", "limits_and_fees", "\u041b\u0438\u043c\u0438\u0442\u0438/\u0422\u0430\u043a\u0441\u0438", "enable_min", "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 min", "enable_max", "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 max", "min_limit", "\u041c\u0438\u043d.: :min", "max_limit", "\u041c\u0430\u043a\u0441.: :max", "min", "Min", "max", "Max", _s19_26, "\u041b\u043e\u0433\u0430 \u043d\u0430 \u043f\u0440\u0438\u0435\u043c\u0430\u043d\u0438 \u043a\u0430\u0440\u0442\u0438", "credentials", "\u0423\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u0435\u043d\u0438\u0435 \u0437\u0430 \u0441\u0430\u043c\u043e\u043b\u0438\u0447\u043d\u043e\u0441\u0442", "update_address", "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430", _s19_28, "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0441 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438", "rate", "\u0420\u0430\u0437\u043c\u0435\u0440", "tax_rate", "\u0414\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", "new_tax_rate", "\u041d\u043e\u0432\u0430 \u0442\u0430\u043a\u0441\u0430", "edit_tax_rate", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_133, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_134, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s17_82, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s16_135, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s17_83, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0434\u0430\u043d\u044a\u0447\u043d\u0430 \u0441\u0442\u0430\u0432\u043a\u0430", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043f\u043e\u043f\u044a\u043b\u0432\u0430\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s18_64, "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0449\u0435 \u043f\u043e\u043f\u044a\u043b\u043d\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\u0442\u043e \u0438 \u0446\u0435\u043d\u0430\u0442\u0430", "update_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s20_44, "\u041f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0449\u0435 \u043e\u0431\u043d\u043e\u0432\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u043e\u0432\u0438\u044f \u043a\u0430\u0442\u0430\u043b\u043e\u0433", _s16_136, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s21_47, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u0435\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0442\u0435 \u0432\u044a\u0432 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "fees", "\u0422\u0430\u043a\u0441\u0438", "limits", "\u041b\u0438\u043c\u0438\u0442\u0438", "provider", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "company_gateway", "\u041f\u043e\u0440\u0442\u0430\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_138, "\u041f\u043e\u0440\u0442\u0430\u043b\u0438 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s19_29, "\u041d\u043e\u0432 \u043f\u043e\u0440\u0442\u0430\u043b", _s20_45, "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b", _s23_23, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s23_24, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s24_22, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430\u043b", _s23_25, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u043e\u0440\u0442\u0430\u043b", _s24_23, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e", "discard_changes", "\u041e\u0442\u043c\u044f\u043d\u0430 \u043d\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435", "default_value", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "disabled", "\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e", "currency_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u043d\u0430 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430", _s21_48, "\u041f\u044a\u0440\u0432\u0438 \u0434\u0435\u043d \u043e\u0442 \u0441\u0435\u0434\u043c\u0438\u0446\u0430\u0442\u0430", _s23_26, "\u041f\u044a\u0440\u0432\u0438 \u043c\u0435\u0441\u0435\u0446 \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430\u0442\u0430", "sunday", "\u043d\u0435\u0434\u0435\u043b\u044f", "monday", "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "tuesday", "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0441\u0440\u044f\u0434\u0430", "thursday", "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", "friday", "\u043f\u0435\u0442\u044a\u043a", "saturday", "\u0441\u044a\u0431\u043e\u0442\u0430", "january", "\u042f\u043d\u0443\u0430\u0440\u0438", "february", "\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "march", "\u041c\u0430\u0440\u0442", "april", "\u0410\u043f\u0440\u0438\u043b", "may", "\u041c\u0430\u0439", "june", "\u042e\u043d\u0438", "july", "\u042e\u043b\u0438", "august", "\u0410\u0432\u0433\u0443\u0441\u0442", "september", "\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "october", "\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "november", "\u041d\u043e\u0435\u043c\u0432\u0440\u0438", "december", "\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438", "symbol", "\u0421\u0438\u043c\u0432\u043e\u043b", "ocde", "\u041a\u043e\u0434", "date_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u043d\u0430 \u0434\u0430\u0442\u0430\u0442\u0430", "datetime_format", "\u0424\u043e\u0440\u043c\u0430\u0442 \u0437\u0430 \u0434\u0430\u0442\u0430", "military_time", "24 \u0447\u0430\u0441\u043e\u0432\u043e \u0432\u0440\u0435\u043c\u0435", _s18_65, "24 Hour Display", "send_reminders", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f", "timezone", "\u0427\u0430\u0441\u043e\u0432\u0430 \u0437\u043e\u043d\u0430", _s19_30, _s19_31, _s17_85, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0443\u043f\u0430", _s19_32, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_66, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u043a\u043b\u0438\u0435\u043d\u0442", _s18_68, "\u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043e \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "group_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0433\u0440\u0443\u043f\u0430\u0442\u0430", "group", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0435", "groups", "\u0413\u0440\u0443\u043f\u0438", "new_group", "\u041d\u043e\u0432\u0430 \u0413\u0440\u0443\u043f\u0430", "edit_group", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430 \u043d\u0435 \u0413\u0440\u0443\u043f\u0430", "created_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "updated_group", "\u0413\u0440\u0443\u043f\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u041b\u043e\u0433\u043e", "uploaded_logo", "\u041b\u043e\u0433\u043e\u0442\u043e \u0431\u0435\u0448\u0435 \u043a\u0430\u0447\u0435\u043d\u043e \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "logo", "\u041b\u043e\u0433\u043e", "saved_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0431\u044f\u0445\u0430 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_142, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "device_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043d\u0430 \u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", "defaults", "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s17_87, "\u0420\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "company_details", "\u0414\u0430\u043d\u043d\u0438 \u043d\u0430 \u0444\u0438\u0440\u043c\u0430", "user_details", "\u0414\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "online_payments", "\u041e\u043d\u043b\u0430\u0439\u043d \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "tax_rates", _s16_206, "notifications", "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", "import_export", "\u0418\u043c\u043f\u043e\u0440\u0442 | \u0415\u043a\u0441\u043f\u043e\u0440\u0442", "custom_fields", "\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430", "invoice_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "buy_now_buttons", '\u0411\u0443\u0442\u043e\u043d\u0438 "\u041a\u0443\u043f\u0438 \u0441\u0435\u0433\u0430"', "email_settings", "Email \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s23_28, "\u0428\u0430\u0431\u043b\u043e\u043d\u0438 \u0438 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f", _s22_30, "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0438 \u041a\u0430\u0440\u0442\u0438 & \u0411\u0430\u043d\u043a\u0438", _s19_34, "\u0412\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "price", "\u0426\u0435\u043d\u0430", "email_sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0441 E-mail", "google_sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0441 Google", _s27_25, "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430\u0442\u0430!", "redeem", "\u041e\u0441\u0440\u0435\u0431\u0440\u044f\u0432\u0430\u043d\u0435", "back", "\u041d\u0430\u0437\u0430\u0434", "past_purchases", "\u041c\u0438\u043d\u0430\u043b\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0438", _s19_36, "\u0413\u043e\u0434\u0438\u0448\u0435\u043d \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d", "pro_plan", "Pro \u0410\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442", "enterprise_plan", "Enterprise \u041f\u043b\u0430\u043d", "count_users", ":count \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "upgrade", "\u041e\u0431\u043d\u043e\u0432\u0438", _s25_32, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043e \u0438\u043c\u0435", _s24_25, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0444\u0430\u043c\u0438\u043b\u043d\u043e \u0438\u043c\u0435", _s33_14, "\u041c\u043e\u043b\u044f \u0441\u044a\u0433\u043b\u0430\u0441\u0435\u0442\u0435 \u0441\u0435 \u0441 \u043e\u0431\u0449\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442 \u0437\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u0442\u0435 \u043f\u0440\u043e\u0444\u0438\u043b.", "i_agree_to_the", "\u0421\u044a\u0433\u043b\u0430\u0441\u044f\u0432\u0430\u043c \u0441\u0435 \u0441", _s21_79, "\u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", _s19_54, "\u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442", _s16_144, "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", "privacy_policy", "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u0437\u0430 \u0437\u0430\u0449\u0438\u0442\u0430 \u043d\u0430 \u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0438", "sign_up", "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f", "account_login", "\u0412\u0445\u043e\u0434 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430", "view_website", "\u0412\u0438\u0436 \u0443\u0435\u0431\u0441\u0430\u0439\u0442", "create_account", "\u0421\u044a\u0437\u0434\u0430\u0439 \u041f\u0440\u043e\u0444\u0438\u043b", "email_login", "\u0412\u043b\u0438\u0437\u0430\u043d\u0435 \u0437\u0440\u0435\u0437 email", "create_new", "\u041d\u043e\u0432", _s18_70, "\u041d\u044f\u043c\u0430 \u0438\u0437\u0431\u0440\u0430\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", _s21_51, "\u041c\u043e\u043b\u044f \u0437\u0430\u043f\u0430\u0437\u0435\u0442\u0435 \u0438\u043b\u0438 \u043e\u0442\u043a\u0430\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435", "download", "\u0421\u0432\u0430\u043b\u044f\u043d\u0435", _s27_26, '\u0418\u0437\u0438\u0441\u043a\u0432\u0430 "Enterprise" \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442', "take_picture", "\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0421\u043d\u0438\u043c\u043a\u0430", "upload_file", "\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0424\u0430\u0439\u043b", "document", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "new_document", "\u041d\u043e\u0432 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "edit_document", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", _s17_89, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u043a\u0430\u0447\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_146, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s17_90, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s16_147, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0438\u0437\u0442\u0440\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s17_91, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "\u041d\u044f\u043c\u0430 \u0418\u0441\u0442\u043e\u0440\u0438\u044f", "expense_date", "\u0414\u0430\u0442\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "pending", "\u041e\u0447\u0430\u043a\u0432\u0430\u043d\u043e", _s16_148, "\u041b\u043e\u0433\u043d\u0430\u0442", _s16_149, "\u0418\u0437\u0447\u0430\u043a\u0432\u0430\u0449\u0438", _s16_150, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "converted", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u043e", _s24_27, "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043a\u044a\u043c \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "exchange_rate", "\u041a\u0443\u0440\u0441", _s16_151, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0430\u043b\u0443\u0442\u0430\u0442\u0430", "mark_paid", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u043f\u043b\u0430\u0442\u0435\u043d\u043e", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "address", "\u0410\u0434\u0440\u0435\u0441", "new_vendor", "\u041d\u043e\u0432 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "created_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "updated_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "archived_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "deleted_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "restored_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s16_152, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", _s16_153, _s36_5, "new_expense", "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", "created_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0440\u0430\u0437\u0445\u043e\u0434", "updated_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s16_154, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u0440\u0430\u0437\u0445\u043e\u0434", "deleted_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u0440\u0430\u0437\u0445\u043e\u0434", _s16_155, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s17_93, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s16_156, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 \u0440\u0430\u0437\u0445\u043e\u0434\u0438", _s17_94, _s37_9, "copy_shipping", "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", "copy_billing", "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0434\u0440\u0435\u0441 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", "design", "\u0414\u0438\u0437\u0430\u0439\u043d", _s21_52, "\u0417\u0430\u043f\u0438\u0441\u044a\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d", "invoiced", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "logged", "\u041b\u043e\u0433\u0432\u0430\u043d\u043e", "running", "\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e", "resume", "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u043d\u0435", "task_errors", "\u041c\u043e\u043b\u044f, \u043a\u043e\u0440\u0438\u0433\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0440\u0438\u043f\u043e\u043a\u0440\u0438\u0432\u0430\u0449\u0438\u0442\u0435 \u0441\u0435 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438", "start", "\u0421\u0442\u0430\u0440\u0442", "stop", "\u0421\u0442\u043e\u043f", "started_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "stopped_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043f\u0440\u044f\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "resumed_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u0430 \u043f\u043e \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430", "now", "\u0421\u0435\u0433\u0430", _s16_157, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438\u0442\u0435", "timer", "\u0422\u0430\u0439\u043c\u0435\u0440", "manual", "\u0420\u044a\u0447\u043d\u043e", "budgeted", "\u0411\u044e\u0434\u0436\u0435\u0442\u0438\u0440\u0430\u043d\u043e", "start_time", "\u041d\u0430\u0447\u0430\u043b\u043e", "end_time", "\u041a\u0440\u0430\u0439", "date", "\u0414\u0430\u0442\u0430", "times", "\u0412\u0440\u0435\u043c\u0435", "duration", "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442", "new_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "created_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "updated_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "deleted_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "restored_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_tasks", _s32_8, "deleted_tasks", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", "restored_tasks", _s34_14, _s19_38, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0438\u043c\u0435", "budgeted_hours", "\u0427\u0430\u0441\u043e\u0432\u0435 \u043f\u043e \u0431\u044e\u0434\u0436\u0435\u0442", "created_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442", "updated_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_159, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442", "deleted_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_160, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u0440\u043e\u0435\u043a\u0442", _s17_95, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0430", _s16_161, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0430", _s17_96, _s37_10, "new_project", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0435\u043a\u0442", _s27_30, "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0412\u0438, \u0447\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0430\u0448\u0435\u0442\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435!", "if_you_like_it", "\u0410\u043a\u043e \u0433\u043e \u0445\u0430\u0440\u0435\u0441\u0432\u0430\u0442\u0435 \u0412\u0438 \u043c\u043e\u043b\u0438\u043c", "click_here", "\u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0442\u0443\u043a", _s18_74, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0442\u0443\u043a", "to_rate_it", "\u0434\u0430 \u0433\u043e \u043e\u0446\u0435\u043d\u0438\u0442\u0435.", "average", "\u0421\u0440\u0435\u0434\u043d\u043e", "unapproved", "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043e", _s30_11, "\u041c\u043e\u043b\u044f, \u0432\u043b\u0435\u0437\u0442\u0435 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430 \u0441\u0438 \u0437\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430 \u043d\u0430 \u0442\u0430\u0437\u0438 \u043d\u0430\u0441\u0442\u043e\u0439\u043a\u0430", "locked", "\u0411\u043b\u043e\u043a\u0438\u0440\u0430\u043d\u043e", "authenticate", "\u0412\u0445\u043e\u0434 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430", _s19_40, "\u041c\u043e\u043b\u044f, \u0432\u043b\u0435\u0437\u0442\u0435 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0430 \u0441\u0438", _s24_28, "\u0411\u0438\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u0435\u043d \u0432\u0445\u043e\u0434", "footer", "\u0424\u0443\u0442\u044a\u0440", "compare", "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "\u0414\u043d\u0435\u0441", "custom_range", "\u0414\u0440\u0443\u0433 \u043f\u0435\u0440\u0438\u043e\u0434", "date_range", "\u041f\u0435\u0440\u0438\u043e\u0434", "current", "\u041d\u0430\u0441\u0442\u043e\u044f\u0449", "previous", "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", "current_period", "\u041d\u0430\u0441\u0442\u043e\u044f\u0449 \u043f\u0435\u0440\u0438\u043e\u0434", _s17_98, "\u041f\u0435\u0440\u0438\u043e\u0434 \u0437\u0430 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435", "previous_period", "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d \u043f\u0435\u0440\u0438\u043e\u0434", "previous_year", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "compare_to", "\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0441\u044a\u0441", "last7_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 7 \u0434\u043d\u0438", "last_week", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0441\u0435\u0434\u043c\u0438\u0446\u0430", "last30_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 30 \u0434\u043d\u0438", "this_month", "\u0422\u043e\u0437\u0438 \u043c\u0435\u0441\u0435\u0446", "last_month", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u044f \u043c\u0435\u0441\u0435\u0446", "this_year", "\u0422\u0430\u0437\u0438 \u0433\u043e\u0434\u0438\u043d\u0430", "last_year", "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "custom", "Custom", _s16_162, "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u0432\u044a\u0432 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "clone_to_quote", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439 \u0432 \u043e\u0444\u0435\u0440\u0442\u0430", "clone_to_credit", "Clone to Credit", "view_invoice", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0439 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "convert", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439", "more", "\u041e\u0449\u0435", "edit_client", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "edit_product", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "edit_invoice", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "edit_quote", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041e\u0444\u0435\u0440\u0442\u0430", "edit_payment", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u041f\u043b\u0430\u0449\u0430\u043d\u0435", "edit_task", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "edit_expense", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", "edit_vendor", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "edit_project", "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s22_, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u043e\u0432\u0442\u0430\u0440\u044f\u0449 \u0441\u0435 \u0440\u0430\u0437\u0445\u043e\u0434", _s20_47, "\u0420\u0435\u0434\u0430\u043a\u0446\u0438\u044f \u043d\u0430 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "billing_address", "\u0410\u0434\u0440\u0435\u0441 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", _s16_164, "\u0410\u0434\u0440\u0435\u0441 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0430", "total_revenue", "\u041e\u0431\u0449\u043e \u043f\u0440\u0438\u0445\u043e\u0434\u0438", "average_invoice", "\u0421\u0440\u0435\u0434\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "outstanding", "\u041e\u0441\u0442\u0430\u0432\u0430\u0449\u0438", "invoices_sent", ":count \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "active_clients", "\u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "close", "\u0417\u0430\u0442\u0432\u043e\u0440\u0438", "email", "\u0415\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430 \u043f\u043e\u0449\u0430", "password", "\u041f\u0430\u0440\u043e\u043b\u0430", "url", "URL", "secret", "Secret", "name", "\u0418\u043c\u0435", "logout", "\u0418\u0437\u0445\u043e\u0434", "login", "\u0412\u0445\u043e\u0434", "filter", "\u0424\u0438\u043b\u0442\u044a\u0440", "sort", "\u0421\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435", "search", "\u0422\u044a\u0440\u0441\u0435\u043d\u0435", "active", "\u0410\u043a\u0442\u0438\u0432\u0435\u043d", "archived", "\u0410\u0440\u0445\u0438\u0432", "deleted", "\u0438\u0437\u0442\u0440\u0438\u0442\u0430", "dashboard", "\u0422\u0430\u0431\u043b\u043e", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0439", "delete", "\u0418\u0437\u0442\u0440\u0438\u0439", "restore", "\u0412\u044a\u0437\u0442\u0430\u043d\u043e\u0432\u0438", _s16_166, "\u041e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0435\u043d\u043e", _s23_29, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0438\u044f\u0442 \u0438\u043c\u0435\u0439\u043b", _s26_25, "\u041c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", _s21_55, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0432\u043e\u044f URL", _s26_27, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 product key", "ascending", "\u041d\u0430\u0440\u0430\u0441\u0442\u0432\u0430\u0449\u043e", "descending", "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u0449\u043e", "save", "\u0417\u0430\u043f\u0430\u0437\u0432\u0430\u043d\u0435", _s17_100, "\u041d\u0430\u0441\u0442\u044a\u043f\u0438\u043b\u0430 \u0435 \u0433\u0440\u0435\u0448\u043a\u0430", "paid_to_date", "\u041f\u043b\u0430\u0442\u0435\u043d\u0438 \u0434\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430", "balance_due", "\u041e\u0441\u0442\u0430\u0432\u0430\u0442 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "balance", "\u0411\u0430\u043b\u0430\u043d\u0441", "overview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "details", "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0423\u0435\u0431\u0441\u0430\u0439\u0442", "vat_number", "\u0414\u0414\u0421 \u041d\u043e\u043c\u0435\u0440", "id_number", "\u0415\u0418\u041a/\u0411\u0443\u043b\u0441\u0442\u0430\u0442", "create", "\u0421\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435", _s19_42, "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u043e :value \u0432 \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430", "error", "\u0413\u0440\u0435\u0448\u043a\u0430", _s16_168, "\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430", "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "additional", "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e", "first_name", "\u041f\u044a\u0440\u0432\u043e \u0438\u043c\u0435", "last_name", "\u0424\u0430\u043c\u0438\u043b\u043d\u043e \u0438\u043c\u0435", "add_contact", "\u0414\u043e\u0431\u0430\u0432\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0421\u0438\u0433\u0443\u0440\u0435\u043d \u043b\u0438 \u0441\u0442\u0435?", "cancel", "\u041e\u0442\u043a\u0430\u0437", "ok", "\u041e\u043a", "remove", "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435", _s16_170, "\u0418\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441\u044a\u0442 \u0435 \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d", "product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "products", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "new_product", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "created_product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d", "updated_product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d", _s16_172, "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u044a\u0442 \u0431\u0435\u0448\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d", "deleted_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_173, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s17_102, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s16_174, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430", _s17_103, _s37_11, "product_key", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0438", "cost", "\u0426\u0435\u043d\u0430", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u0438", "new_client", "\u041d\u043e\u0432 \u043a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u041a\u043b\u0438\u0435\u043d\u0442\u044a\u0442 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e", "updated_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442", "archived_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d \u043a\u043b\u0438\u0435\u043d\u0442", _s16_175, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "deleted_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442 \u043a\u043b\u0438\u0435\u043d\u0442", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "restored_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d \u041a\u043b\u0438\u0435\u043d\u0442", _s16_176, _s36_7, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0410\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442", "city", "\u0413\u0440\u0430\u0434", "state", "\u041e\u0431\u043b\u0430\u0441\u0442", "postal_code", "\u041f\u043e\u0449\u0435\u043d\u0441\u043a\u0438 \u043a\u043e\u0434", "country", "\u0414\u044a\u0440\u0436\u0430\u0432\u0430", "invoice", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430", "invoices", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438", "new_invoice", "\u041d\u043e\u0432\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "created_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "updated_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_177, _s26_37, "deleted_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_178, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_104, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_105, _s37_12, "emailed_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "emailed_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "amount", "\u0421\u0443\u043c\u0430", "invoice_number", _s16_208, "invoice_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "discount", "\u041e\u0442\u0441\u0442\u044a\u043f\u043a\u0430", "po_number", "\u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043e\u0449\u0435\u043d\u0441\u043a\u0430 \u043a\u0443\u0442\u0438\u044f", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f", "public_notes", "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438 \u0437\u0430\u0431\u0435\u043b\u0435\u0436\u043a\u0438", "private_notes", "\u041b\u0438\u0447\u043d\u0438 \u0431\u0435\u043b\u0435\u0436\u043a\u0438", "frequency", "\u0427\u0435\u0441\u0442\u043e\u0442\u0430", "start_date", "\u041d\u0430\u0447\u0430\u043b\u043d\u0430 \u0434\u0430\u0442\u0430", "end_date", "\u041a\u0440\u0430\u0439\u043d\u0430 \u0434\u0430\u0442\u0430", "quote_number", "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "quote_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "valid_until", "\u0412\u0430\u043b\u0438\u0434\u043d\u0430 \u0434\u043e", "items", "\u0420\u0435\u0434\u043e\u0432\u0435", "partial_deposit", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e/\u0414\u0435\u043f\u043e\u0437\u0438\u0442", "description", "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "unit_cost", "\u0415\u0434. \u0446\u0435\u043d\u0430", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e", "add_item", "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "\u041e\u0431\u0449\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442", "pdf", "PDF", "due_date", "\u041a\u0440\u0430\u0439\u043d\u0430 \u0434\u0430\u0442\u0430 \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_180, "\u0427\u0430\u0441\u0442\u0438\u0447\u0435\u043d \u043f\u0430\u0434\u0435\u0436", "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_106, "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435", "quote_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s22_31, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 + \u0437\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", _s22_33, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 + \u0437\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u0432\u0440\u0435\u043c\u0435", "count_selected", ":count \u0438\u0437\u0431\u0440\u0430\u043d\u0438", "total", "\u041e\u0431\u0449\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435", "dismiss", "\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435", _s20_49, "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u0442\u0430", _s22_34, "\u041c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", _s24_30, "\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "task_rate", "\u0421\u0442\u0430\u0432\u043a\u0430", "settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "language", "\u0415\u0437\u0438\u043a", "currency", "\u0412\u0430\u043b\u0443\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435", "created_on", "Created On", "updated_at", "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d", "tax", "\u0414\u0430\u043d\u044a\u043a", _s30_13, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_34, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "past_due", "\u041f\u0440\u043e\u0441\u0440\u043e\u0447\u0435\u043d\u043e", "draft", "\u0427\u0435\u0440\u043d\u043e\u0432\u0430", "sent", "\u0418\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", "viewed", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d\u043e", "approved", "\u041e\u0434\u043e\u0431\u0440\u0435\u043d\u043e", "partial", "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 / \u0434\u0435\u043f\u043e\u0437\u0438\u0442", "paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e", "mark_sent", "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u0439 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s22_36, "\u0424\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s22_37, _s35_10, _s23_31, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u0441\u0430 \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0438", _s23_32, _s36_9, "done", "\u0413\u043e\u0442\u043e\u0432\u043e", _s37_13, "\u041c\u043e\u043b\u044f, \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 \u0438\u043b\u0438 \u043b\u0438\u0446\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "dark_mode", "\u0422\u044a\u043c\u0435\u043d \u0440\u0435\u0436\u0438\u043c", _s27_36, "\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u043c\u044f\u043d\u0430\u0442\u0430", "refresh_data", "\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u0438", "blank_contact", "\u041f\u0440\u0430\u0437\u0435\u043d \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", _s16_182, "\u041d\u044f\u043c\u0430 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", "clone", "\u041a\u043e\u043f\u0438\u0440\u0430\u0439", "loading", "\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435", "industry", "\u0411\u0440\u0430\u043d\u0448", "size", "\u0420\u0430\u0437\u043c\u0435\u0440", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_date", "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "payment_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u041f\u043b\u0430\u0449\u0430\u043d\u0435\u0442\u043e", _s16_184, "\u0418\u0437\u0447\u0430\u043a\u0432\u0430\u0449\u0438", _s16_185, "\u0410\u043d\u0443\u043b\u0438\u0440\u0430\u043d\u0438", _s16_186, "\u0413\u0440\u0435\u0448\u043d\u0438", _s16_187, "\u0413\u043e\u0442\u043e\u0432\u0438", _s16_188, "\u0427\u0430\u0441\u0442\u0438\u0447\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435", _s16_189, "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "\u041d\u0435\u0442\u043e", "client_portal", "\u041a\u043b\u0438\u0435\u043d\u0442\u0441\u043a\u0438 \u043f\u043e\u0440\u0442\u0430\u043b", "show_tasks", "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438", "email_reminders", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0438\u044f \u043f\u043e \u0438\u043c\u0435\u0439\u043b", "enabled", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e", "recipients", "\u041f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u0438", "initial_email", "\u041f\u044a\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u0435\u043d \u0438\u043c\u0435\u0439\u043b", "first_reminder", "\u041f\u044a\u0440\u0432\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "second_reminder", "\u0412\u0442\u043e\u0440\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "third_reminder", "\u0422\u0440\u0435\u0442\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder1", "\u041f\u044a\u0440\u0432\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder2", "\u0412\u0442\u043e\u0440\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "reminder3", "\u0422\u042a\u0440\u0435\u0442\u043e \u043d\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435", "subject", "\u041e\u0442\u043d\u043e\u0441\u043d\u043e", "body", "\u041e\u0441\u043d\u043e\u0432\u0435\u043d \u0442\u0435\u043a\u0441\u0442", "send_email", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b", "email_receipt", "\u0418\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0438\u043c\u0435\u0439\u043b \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 \u043a\u044a\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "auto_billing", "Auto billing", "button", "\u0411\u0443\u0442\u043e\u043d", "preview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "customize", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f", "payment", "\u041f\u043b\u0430\u0449\u0430\u043d\u0435", "payments", "\u041f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", "refunded", "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430", "payment_type", "\u0422\u0438\u043f \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s21_57, "\u041e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430 \u043f\u0440\u0435\u0432\u043e\u0434", "enter_payment", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "new_payment", "\u0412\u044a\u0432\u0435\u0434\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "created_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "updated_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u043e \u041f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_190, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "deleted_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s16_191, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043do \u041f\u043b\u0430\u0449\u0430\u043d\u0435", _s17_109, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", _s16_192, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u043f\u043b\u0430\u0449\u0430\u043d\u0438\u044f", _s17_110, _s37_15, "quote", "\u041e\u0444\u0435\u0440\u0442\u0430", "quotes", "\u041e\u0444\u0435\u0440\u0442\u0438", "new_quote", "\u041d\u043e\u0432\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", "created_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "updated_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "archived_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "deleted_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "restored_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "archived_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u041e\u0444\u0435\u0440\u0442\u0438", "deleted_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0442\u0440\u0438\u0442\u0438 :count \u041e\u0444\u0435\u0440\u0442\u0438", "restored_quotes", _s35_13, "expense", "\u0420\u0430\u0437\u0445\u043e\u0434", "expenses", "\u0420\u0430\u0437\u0445\u043e\u0434\u0438", "vendor", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", "vendors", "\u0414\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438", "task", "\u0417\u0430\u0434\u0430\u0447\u0430", "tasks", "\u0417\u0430\u0434\u0430\u0447\u0438", "project", "\u041f\u0440\u043e\u0435\u043a\u0442", "projects", "\u041f\u0440\u043e\u0435\u043a\u0442\u0438", "activity_1", ":user \u0437\u044a\u0437\u0434\u0430\u0434\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_2", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_3", ":user \u0438\u0437\u0442\u0440\u0438 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_4", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_5", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_6", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice, \u043a\u044a\u043c :client, \u043d\u0430 :contact", "activity_7", ":contact \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice, \u043a\u044a\u043c :client", "activity_8", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_9", ":user \u0438\u0437\u0442\u0440\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_10", ":contact \u0432\u044a\u0432\u0435\u0434\u0435 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment \u0432 \u0440\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 :payment_amount \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u0437\u0430 :client", "activity_11", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_12", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_13", ":user \u0438\u0437\u0442\u0440\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_14", ":user \u0432\u044a\u0432\u0435\u0434\u0435 :credit credit", "activity_15", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 :credit credit", "activity_16", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 :credit credit", "activity_17", ":user \u0438\u0437\u0442\u0440\u0438 \u043a\u0440\u0435\u0434\u0438\u0442 :credit", "activity_18", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_19", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_20", ":user \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote, \u043a\u044a\u043c :client, \u043d\u0430 :contact", "activity_21", ":contact \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_22", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_23", ":user \u0438\u0437\u0442\u0440\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_24", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote", "activity_25", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice", "activity_26", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043a\u043b\u0438\u0435\u043d\u0442 :client", "activity_27", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_28", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043a\u0440\u0435\u0434\u0438\u0442 :credit", "activity_29", ":contact \u043e\u0434\u043e\u0431\u0440\u0438 \u043e\u0444\u0435\u0440\u0442\u0430 :quote, \u043a\u044a\u043c :client", "activity_30", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_31", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_32", ":user \u0438\u0437\u0442\u0440\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_33", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a :vendor", "activity_34", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_35", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_36", ":user \u0438\u0437\u0442\u0440\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_37", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_39", ":user \u0435 \u043e\u0442\u043a\u0430\u0437\u0430\u043b :payment_amount \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_40", ":user \u0435 \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b :adjustment \u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 :payment_amount \u0437\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435 :payment", "activity_41", "\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u0438 :payment_amount \u043f\u043e \u043f\u043b\u0430\u0449\u0430\u043d\u0435 (:payment)", "activity_42", ":user \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_43", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_44", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_45", ":user \u0438\u0437\u0442\u0440\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_46", ":user \u0432\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 :task", "activity_47", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 :expense", "activity_48", ":user \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_49", ":user \u0437\u0430\u0442\u0432\u043e\u0440\u0438 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_50", ":user \u043e\u0431\u0435\u0434\u0438\u043d\u0438 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_51", ":user \u0440\u0430\u0437\u0434\u0435\u043b\u0438 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_52", ":contact \u043e\u0442\u0432\u043e\u0440\u0438 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_53", ":contact \u043e\u0442\u043d\u043e\u0432\u043e \u043e\u0442\u0432\u043e\u0440\u0438 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_54", ":user \u043e\u0442\u043d\u043e\u0432\u043e \u043e\u0442\u0432\u043e\u0440\u0438 :ticket", "activity_55", ":contact \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438 \u043d\u0430 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_56", ":user \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0442\u0438\u043a\u0435\u0442 :ticket", "activity_57", "\u0421\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430 \u043d\u0435 \u0443\u0441\u043f\u044f \u0434\u0430 \u0438\u0437\u043f\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 :invoice \u043f\u043e e-mail", "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "\u0415\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430", "emailed_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u041e\u0444\u0435\u0440\u0442\u0430", "emailed_credit", _s27_48, _s20_51, "\u041e\u0444\u0435\u0440\u0442\u0430\u0442\u0430 \u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u043e \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d\u0430", _s21_59, _s34_15, "expired", "\u0418\u0437\u0442\u0435\u043a\u043b\u0430", "all", "\u0412\u0441\u0438\u0447\u043a\u0438", "select", "\u0418\u0437\u0431\u0435\u0440\u0438", _s22_38, "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0434\u044a\u043b\u0433\u043e \u0437\u0430 \u043c\u0443\u043b\u0442\u0438\u0441\u0435\u043b\u0435\u043a\u0446\u0438\u044f", "custom_value1", _s24_40, "custom_value2", _s24_40, "custom_value3", "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 3", "custom_value4", "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442 4", _s18_75, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d \u0441\u0442\u0438\u043b \u043d\u0430 \u0438\u043c\u0435\u0439\u043b\u0430", _s24_35, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u043e\u0442\u043e", _s29_31, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_41, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s31_10, "\u041f\u0435\u0440\u0441\u043e\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043d\u043e \u0441\u044a\u043e\u0431\u0448\u0435\u043d\u0438\u0435 \u0437\u0430 \u043d\u0435\u043f\u043e\u0442\u0432\u044a\u0440\u0434\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "lock_invoices", "Lock Invoices", "translations", "\u041f\u0440\u0435\u0432\u043e\u0434\u0438", _s19_43, "\u0417\u0430\u0434\u0430\u0447\u0430 \u043d\u043e\u043c\u0435\u0440", _s19_45, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s22_40, "\u0420\u0430\u0437\u0445\u043e\u0434 \u043d\u043e\u043c\u0435\u0440", _s22_42, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0440\u0430\u0437\u0445\u043e\u0434", _s21_60, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s21_62, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0447\u0438\u043a", _s21_64, "\u0411\u0438\u043b\u0435\u0442 \u043d\u043e\u043c\u0435\u0440", _s21_66, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0431\u0438\u043b\u0435\u0442", _s22_44, _s16_207, _s22_46, "\u0411\u0440\u043e\u044f\u0447 \u043d\u0430 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", _s22_48, _s16_208, _s22_50, "\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s20_52, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s20_54, "\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043e\u0444\u0435\u0440\u0442\u0430", _s21_68, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s21_70, _s24_41, _s21_72, "\u041d\u043e\u043c\u0435\u0440 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s21_73, _s24_41, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "\u0422\u0438\u043f", "invoice_amount", "\u0421\u0442\u043e\u0439\u043d\u043e\u0441\u0442 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_197, "\u041f\u0430\u0434\u0435\u0436", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u0435", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u0418\u043c\u0430 \u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "tax_amount", "\u0422\u0430\u043a\u0441\u0430", "tax_paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0442\u0430\u043a\u0441\u0430", "payment_amount", "\u0421\u0443\u043c\u0430 \u043d\u0430 \u043f\u043b\u0430\u0449\u0430\u043d\u0435", "age", "\u0418\u0437\u0434\u0430\u0434\u0435\u043d\u0430 \u043f\u0440\u0435\u0434\u0438", "is_running", "Is Running", "time_log", "\u041b\u043e\u0433 \u0437\u0430 \u0432\u0440\u0435\u043c\u0435", "bank_id", "\u0411\u0430\u043d\u043a\u0430", _s19_49, _s19_50, _s16_198, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0440\u0430\u0437\u0445\u043e\u0434", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "zh_TW", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u532f\u5165\u8cc7\u6599", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u5c08\u696d\u7248", "enterprise", "Enterprise", "last_updated", "\u4e0a\u6b21\u66f4\u65b0\u6642\u9593", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "\u806f\u7d61\u4eba\u540d\u5b57", _s17_1, "\u806f\u7d61\u4eba\u59d3\u6c0f", "order", "Order", "unassigned", "\u672a\u5206\u914d\u7684", "partial_value", "\u5fc5\u9808\u5927\u65bc\u96f6\u4e14\u5c0f\u65bc\u7e3d\u984d", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "\u770b\u677f", "enable", "\u555f\u7528", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u8a2d\u5b9a\u5b50\u7db2\u57df\u6216\u5728\u60a8\u7684\u7db2\u7ad9\u4e0a\u986f\u793a\u767c\u7968\u3002", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "\u5b89\u5168", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u8a02\u95b1", _s16_11, _s16_12, _s17_7, "\u7de8\u8f2f\u8a02\u95b1\u8cc7\u6599", _s20_1, "\u5efa\u7acb\u8a02\u95b1\u6210\u529f", _s20_2, "\u66f4\u65b0\u8a02\u95b1\u6210\u529f", _s21_6, "\u6b78\u6a94\u8a02\u95b1\u8cc7\u6599\u6210\u529f", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u91cd\u5bc4\u9080\u8acb\u51fd", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "\u5df2\u9000\u56de", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "\u4f7f\u7528 :link \u76f8\u5bb9\u7684 App \u6383\u63cf\u689d\u78bc\u3002", _s18_14, "\u555f\u7528\u5169\u6b65\u9a5f\u9a57\u8b49\u6210\u529f", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "\u5169\u6b65\u9a5f\u9a57\u8b49", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\u5df2\u9000\u6b3e\u7684\u4ed8\u6b3e", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "\u8f49\u63db\u81f3\u767c\u7968", _s16_24, _s16_25, "invoice_project", "\u767c\u7968\u5c08\u6848", "invoice_task", "\u70ba\u4efb\u52d9\u958b\u7acb\u767c\u7968", "invoice_expense", "\u70ba\u652f\u51fa\u958b\u7acb\u767c\u7968", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "\u8f49\u63db\u7684\u91d1\u984d", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "\u9810\u8a2d\u7684\u6587\u4ef6", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u96b1\u85cf", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u6b04", "sample", "\u6a23\u672c", "map_to", "Map To", "import", "\u532f\u5165", _s25_1, _s29_1, "select_file", "\u8acb\u9078\u64c7\u4e00\u500b\u6a94\u6848", _s16_32, _s16_33, "csv_file", "CSV \u6a94\u6848", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "\u670d\u52d9", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u672a\u4ed8\u6b3e", "white_label", "White Label", "delivery_note", "\u5bc4\u9001\u8a3b\u8a18", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u90e8\u5206\u61c9\u4ed8\u6b3e", "invoice_total", "\u767c\u7968\u7e3d\u984d", "quote_total", "\u5831\u50f9\u55ae\u7e3d\u8a08", "credit_total", "\u8cb8\u6b3e\u7e3d\u984d", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u8b66\u544a", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "\u4fe1\u7528\u5361\u8a8d\u8b49\u7de8\u865f", "client_name", "\u7528\u6236\u540d\u7a31", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "\u66f4\u65b0\u5de5\u4f5c\u72c0\u614b\u6210\u529f", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "\u652f\u51fa\u985e\u5225", _s20_20, "\u65b0\u7684\u652f\u51fa\u985e\u5225", _s21_18, _s21_19, _s24_11, "\u6210\u529f\u5efa\u7acb\u652f\u51fa\u985e\u5225", _s24_12, "\u66f4\u65b0\u652f\u51fa\u985e\u5225\u6210\u529f", _s25_5, "\u6b78\u6a94\u652f\u51fa\u985e\u5225\u6210\u529f", _s24_13, "\u522a\u9664\u985e\u5225\u6210\u529f", _s24_14, _s37_2, _s25_6, "\u5fa9\u539f\u652f\u51fa\u985e\u5225\u6210\u529f", _s27_8, "\u6b78\u6a94 :count \u9805\u652f\u51fa\u985e\u5225\u6210\u529f", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "\u61c9\u70ba\u6b64\u958b\u7acb\u767c\u7968", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u6a19\u8a18\u4f7f\u7528\u4e2d", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\u9031\u671f\u6027\u767c\u7968", _s18_29, "\u9031\u671f\u6027\u767c\u7968", _s21_25, "\u65b0\u7684\u9031\u671f\u6027\u767c\u7968", _s22_12, "\u7de8\u8f2f\u9031\u671f\u6027\u767c\u7968", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "\u6b78\u6a94\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s25_14, "\u522a\u9664\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s25_15, _s38_7, _s26_6, "\u5fa9\u539f\u9031\u671f\u6027\u767c\u7968\u6210\u529f", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "\u5229\u6f64", "line_item", "\u55ae\u5217\u54c1\u9805", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "\u5df2\u958b\u555f", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "\u6aa2\u8996\u5165\u53e3\u9801\u9762", "copy_link", "Copy Link", "token_billing", "\u5132\u5b58\u5361\u7247\u8a73\u7d30\u8cc7\u6599", _s24_17, _s24_18, "always", "\u6c38\u9060", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u6a19\u7c64", "client_number", "\u7528\u6236\u7de8\u865f", "auto_convert", "Auto Convert", "company_name", "\u516c\u53f8\u540d\u7a31", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u767c\u7968\u6210\u529f", "emailed_quotes", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u5831\u50f9\u55ae\u6210\u529f", "emailed_credits", _s28_52, "gateway", "\u9598\u9053", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u6642", "statement", "\u8ca1\u52d9\u5831\u8868", "taxes", "\u5404\u985e\u7a05\u91d1", "surcharge", "\u984d\u5916\u8cbb\u7528", "apply_payment", "Apply Payment", "apply", "\u5957\u7528", "unapplied", "Unapplied", "select_label", "\u9078\u64c7\u6a19\u7c64", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u5230", "health_check", "Health Check", "payment_type_id", "\u4ed8\u6b3e\u65b9\u5f0f", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u5373\u5c07\u5230\u671f\u7684\u767c\u7968", _s17_43, _s17_44, "recent_payments", "\u6700\u8fd1\u7684\u652f\u4ed8", "upcoming_quotes", "\u5373\u5c07\u5230\u671f\u7684\u5831\u50f9\u55ae", "expired_quotes", "\u904e\u671f\u7684\u5831\u50f9\u55ae", "create_client", "\u5efa\u7acb\u7528\u6236", "create_invoice", "\u5efa\u7acb\u767c\u7968", "create_quote", "\u5efa\u7acb\u5831\u50f9\u55ae", "create_payment", "Create Payment", "create_vendor", "\u5efa\u7acb\u4f9b\u61c9\u5546", "update_quote", "Update Quote", "delete_quote", "\u522a\u9664\u5831\u50f9\u55ae", "update_invoice", "Update Invoice", "delete_invoice", "\u522a\u9664\u767c\u7968", "update_client", "Update Client", "delete_client", "\u522a\u9664\u7528\u6236", "delete_payment", "\u522a\u9664\u4ed8\u6b3e\u7d00\u9304", "update_vendor", "Update Vendor", "delete_vendor", "\u522a\u9664\u4f9b\u61c9\u5546", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u522a\u9664\u652f\u51fa", "create_task", "\u5efa\u7acb\u5de5\u4f5c\u9805\u76ee", "update_task", "Update Task", "delete_task", "\u522a\u9664\u5de5\u4f5c\u9805\u76ee", "approve_quote", "Approve Quote", "off", "\u95dc", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u514d\u8cbb", "plan", "\u8cc7\u8cbb\u6848", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u76ee\u6a19", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API \u7684\u5b89\u5168\u4ee3\u78bc", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u5b89\u5168\u4ee3\u78bc", "tokens", "\u5b89\u5168\u4ee3\u78bc", "new_token", "New Token", "edit_token", "\u7de8\u8f2f\u5b89\u5168\u4ee3\u78bc", "created_token", "\u5b89\u5168\u4ee3\u78bc\u5efa\u7acb\u6210\u529f", "updated_token", "\u66f4\u65b0\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "archived_token", "\u6b78\u6a94\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "deleted_token", "\u522a\u9664\u5b89\u5168\u4ee3\u78bc\u6210\u529f", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u9001\u767c\u7968", "email_quote", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u5831\u50f9\u55ae", "email_credit", "Email Credit", "email_payment", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u4ed8\u6b3e\u8cc7\u6599", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "\u806f\u7d61\u4eba\u59d3\u540d", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "\u7de8\u8f2f\u4ed8\u6b3e\u689d\u4ef6", _s20_29, "\u5efa\u7acb\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s20_30, "\u66f4\u65b0\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s21_28, "\u6b78\u6a94\u4ed8\u6b3e\u689d\u6b3e\u6210\u529f", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u8cb8\u6b3e\u91d1\u984d", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u4e0d\u542b", "inclusive", "\u5167\u542b", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "\u5df2\u9000\u6b3e\u7684\u652f\u4ed8", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "\u5168\u540d", _s17_55, "\u57ce\u5e02/\u5dde\u7701/\u90f5\u905e\u5340\u865f", _s17_57, "\u57ce\u5e02/\u5dde\u7701/\u90f5\u905e\u5340\u865f", "custom1", "\u9996\u4f4d\u9867\u5ba2", "custom2", "\u7b2c\u4e8c\u540d\u9867\u5ba2", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u6e05\u9664\u8cc7\u6599", _s16_64, "\u6e05\u9664\u516c\u53f8\u8cc7\u6599\u6210\u529f", _s18_38, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u6027\u5730\u62b9\u9664\u60a8\u7684\u8cc7\u6599\uff1b\u6c92\u6709\u6062\u5fa9\u7684\u53ef\u80fd\u3002", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 \u5929", "age_group_30", "30 - 60 \u5929", "age_group_60", "60 - 90 \u5929", "age_group_90", "90 - 120 \u5929", "age_group_120", "120 \u5929\u4ee5\u4e0a", "refresh", "\u66f4\u65b0", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u767c\u7968\u8a73\u7d30\u5167\u5bb9", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u6b0a\u9650", "none", "\u7121", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", "\u5df2\u5bc4\u51fa :count \u4efd\u767c\u7968", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "\u5957\u7528\u6388\u6b0a", "cancel_account", "\u522a\u9664\u5e33\u6236", _s22_19, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u522a\u9664\u60a8\u7684\u5e33\u6236\uff0c\u800c\u4e14\u7121\u6cd5\u6062\u5fa9\u3002", "delete_company", "\u522a\u9664\u516c\u53f8\u8cc7\u6599", _s22_20, "\u8b66\u544a: \u9019\u5c07\u6c38\u4e45\u522a\u9664\u60a8\u7684\u516c\u53f8\u8cc7\u6599\uff0c\u800c\u4e14\u4e0d\u53ef\u80fd\u5fa9\u539f\u3002", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u9801\u9996", "load_design", "\u8f09\u5165\u8a2d\u8a08", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "\u63d0\u6848", "tickets", "\u7968\u8b49", _s16_69, "\u9031\u671f\u6027\u5831\u50f9\u55ae", "recurring_tasks", "Recurring Tasks", _s18_, "\u9031\u671f\u6027\u652f\u51fa", _s18_39, "\u5e33\u865f\u7ba1\u7406", "credit_date", "\u8cb8\u6b3e\u65e5\u671f", "credit", "\u8cb8\u6b3e", "credits", "\u8cb8\u6b3e", "new_credit", "\u8f38\u5165\u8cb8\u6b3e\u8cc7\u6599", "edit_credit", "\u7de8\u8f2f\u8cb8\u6b3e\u8cc7\u6599", "created_credit", "\u5efa\u7acb\u8cb8\u6b3e\u8cc7\u6599\u5b8c\u6210", "updated_credit", "\u66f4\u65b0\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "archived_credit", "\u6b78\u6a94\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_credit", "\u522a\u9664\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "removed_credit", _s27_21, "restored_credit", "\u5fa9\u539f\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_71, "\u6b78\u6a94 :count \u7b46\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_credits", "\u522a\u9664 :count \u7b46\u8cb8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_72, _s36_3, "current_version", "\u76ee\u524d\u7248\u672c", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "\u77ad\u89e3\u66f4\u591a", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u65b0\u7684\u516c\u53f8\u8cc7\u6599", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u91cd\u8a2d", "number", "Number", "export", "\u532f\u51fa", "chart", "\u5716\u8868", "count", "Count", "totals", "\u7e3d\u8a08", "blank", "\u7a7a\u767d", "day", "\u65e5", "month", "\u6708", "year", "\u5e74", "subgroup", "\u6b21\u7fa4\u7d44", "is_active", "Is Active", "group_by", "\u5206\u7d44\u65b9\u5f0f", "credit_balance", "\u8cb8\u6b3e\u9918\u984d", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "\u806f\u7d61\u4eba\u96fb\u8a71", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "\u9001\u8ca8\u5730\u5740\u4e4b\u8857\u9053", _s17_64, "\u9001\u8ca8\u5730\u5740\u4e4b\u5927\u6a13/\u5957\u623f", "shipping_city", "\u9001\u8ca8\u5730\u5740\u4e4b\u57ce\u5e02", "shipping_state", "\u9001\u8ca8\u5730\u5740\u4e4b\u5dde/\u7701", _s20_33, "\u9001\u8ca8\u5730\u5740\u4e4b\u90f5\u905e\u5340\u865f", _s16_103, "\u9001\u8ca8\u5730\u5740\u4e4b\u570b\u5bb6", _s16_105, "\u5e33\u55ae\u5730\u5740\u4e4b\u8857/\u8def", _s16_106, "\u5e33\u55ae\u5730\u5740\u4e4b\u5927\u6a13/\u5957\u623f", "billing_city", "\u5e33\u55ae\u5730\u5740\u4e4b\u57ce\u5e02", "billing_state", "\u5e33\u55ae\u5730\u5740\u4e4b\u5dde/\u7701", _s19_19, "\u5e33\u55ae\u5730\u5740\u4e4b\u90f5\u905e\u5340\u865f", "billing_country", "\u5e33\u55ae\u5730\u5740\u4e4b\u570b\u5bb6", "client_id", "\u7528\u6236 Id", "assigned_to", "\u5206\u914d\u7d66", "created_by", "\u7531 :name \u5efa\u7acb", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u6b04", "aging", "\u5e33\u9f61", "profit_and_loss", "\u5229\u6f64\u8207\u640d\u5931", "reports", "\u5831\u544a", "report", "\u5831\u544a", "add_company", "\u65b0\u589e\u516c\u53f8\u8cc7\u6599", "unpaid_invoice", "\u672a\u4ed8\u6b3e\u4e4b\u767c\u7968", "paid_invoice", "\u5df2\u4ed8\u6b3e\u4e4b\u767c\u7968", _s16_107, "\u672a\u540c\u610f\u4e4b\u5831\u50f9\u55ae", "help", "\u8aaa\u660e", "refund", "\u9000\u6b3e", "refund_date", "Refund Date", "filtered_by", "\u7be9\u9078\u4f9d\u64da", "contact_email", "\u806f\u7d61\u4eba\u96fb\u5b50\u90f5\u4ef6", "multiselect", "Multiselect", "entity_state", "\u72c0\u614b", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u8a0a\u606f", "from", "\u5f9e", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, "\u8abf\u6574\u767e\u5206\u6bd4\u4ee5\u8a08\u5165\u8cbb\u7528", _s18_50, _s18_51, "support_forum", "\u652f\u63f4\u8a0e\u8ad6\u5340", "about", "About", "documentation", "\u6587\u4ef6", "contact_us", "\u806f\u7d61\u6211\u5011", "subtotal", "\u5c0f\u8a08", "line_total", "\u7e3d\u8a08", "item", "\u54c1\u9805", "credit_email", "Credit Email", "iframe_url", "\u7db2\u7ad9", "domain_url", "Domain URL", _s21_36, "\u5bc6\u78bc\u592a\u77ed", _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "\u662f", "no", "\u5426", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "\u884c\u52d5\u88dd\u7f6e", "desktop", "\u96fb\u8166\u684c\u9762", "layout", "Layout", "view", "\u6aa2\u8996", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "\u4f7f\u7528\u8005", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "\u8acb\u9078\u53d6\u4e00\u500b\u7528\u6236", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "\u7a05\u984d\u8a2d\u5b9a", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "\u9078\u9805", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "\u63d0\u4ea4", _s16_115, "\u91cd\u8a2d\u60a8\u7684\u5bc6\u78bc", "late_fees", "\u6eef\u7d0d\u91d1", "credit_number", "\u8cb8\u6b3e\u7de8\u865f", "payment_number", "\u4ed8\u6b3e\u865f\u78bc", "late_fee_amount", "\u903e\u671f\u8cbb\u7528\u91d1\u984d", _s16_116, "\u903e\u671f\u8cbb\u7528\u7387", "schedule", "\u6642\u9593\u8868", "before_due_date", "\u5230\u671f\u65e5\u4e4b\u524d", "after_due_date", "\u5230\u671f\u65e5\u4e4b\u5f8c", _s18_57, "\u767c\u7968\u65e5\u4e4b\u5f8c", "days", "\u65e5", "invoice_email", "\u767c\u7968\u96fb\u5b50\u90f5\u4ef6", "payment_email", "\u4ed8\u6b3e\u8cc7\u6599\u96fb\u5b50\u90f5\u4ef6", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "\u5831\u50f9\u55ae\u96fb\u5b50\u90f5\u4ef6", _s16_118, "\u4e0d\u7d42\u6b62\u7684\u63d0\u9192\u51fd", _s16_120, "\u4f9d\u4f7f\u7528\u8005\u7be9\u9078", "administrator", "\u7ba1\u7406\u8005", _s18_58, "\u5141\u8a31\u4f7f\u7528\u8005\u7ba1\u7406\u6240\u6709\u4f7f\u7528\u8005\u3001\u6539\u8b8a\u8a2d\u5b9a\u3001\u4fee\u6539\u6240\u6709\u7d00\u9304", "user_management", "\u7ba1\u7406\u4f7f\u7528\u8005", "users", "\u4f7f\u7528\u8005", "new_user", "\u65b0\u4f7f\u7528\u8005", "edit_user", "\u7de8\u8f2f\u4f7f\u7528\u8005", "created_user", "\u5df2\u6210\u529f\u5efa\u7acb\u4f7f\u7528\u8005", "updated_user", "\u66f4\u65b0\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "archived_user", "\u6b78\u6a94\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "deleted_user", "\u522a\u9664\u4f7f\u7528\u8005\u6210\u529f", "removed_user", _s25_25, "restored_user", "\u5fa9\u539f\u4f7f\u7528\u8005\u8cc7\u6599\u6210\u529f", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u4e00\u822c\u8a2d\u5b9a", "invoice_options", "\u767c\u7968\u9078\u9805", _s17_70, "\u96b1\u85cf\u8fc4\u4eca\u4e4b\u4ed8\u6b3e\u91d1\u984d", _s22_27, "\u4e00\u65e6\u6536\u5230\u4ed8\u6b3e\uff0c\u50c5\u5728\u60a8\u7684\u767c\u7968\u4e0a\u986f\u793a\u300c\u8fc4\u4eca\u4e4b\u4ed8\u6b3e\u91d1\u984d\u300d\u3002", _s23_17, "\u5d4c\u5165\u7684\u6587\u4ef6", _s28_15, "\u5728\u767c\u7968\u4e0a\u9644\u52a0\u5716\u7247\u3002", _s16_124, "\u986f\u793a\u9801\u9996\u65bc", _s16_125, "\u986f\u793a\u9801\u5c3e\u65bc", "first_page", "\u7b2c\u4e00\u9801", "all_pages", "\u6240\u6709\u9801\u9762", "last_page", "\u6700\u5f8c\u4e00\u9801", "primary_font", "\u4e3b\u8981\u5b57\u578b", "secondary_font", "\u6b21\u8981\u5b57\u578b", "primary_color", "\u4e3b\u8981\u8272\u5f69", "secondary_color", "\u6b21\u8981\u8272\u5f69", "page_size", "\u9801\u9762\u5c3a\u5bf8", "font_size", "\u5b57\u578b\u5927\u5c0f", "quote_design", "\u5831\u50f9\u55ae\u8a2d\u8a08", "invoice_fields", "\u767c\u7968\u6b04\u4f4d", "product_fields", "\u7522\u54c1\u6b04\u4f4d", "invoice_terms", "\u767c\u7968\u4e4b\u689d\u6b3e", "invoice_footer", "\u767c\u7968\u9801\u5c3e", "quote_terms", "\u5831\u50f9\u55ae\u689d\u6b3e", "quote_footer", "\u5831\u50f9\u55ae\u9801\u5c3e", _s18_59, "\u81ea\u52d5\u96fb\u5b50\u90f5\u4ef6", _s23_18, "\u9031\u671f\u6027\u767c\u7968\u5efa\u7acb\u5f8c\uff0c\u81ea\u52d5\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u3002", _s20_42, "\u81ea\u52d5\u6b78\u6a94", _s25_26, "\u767c\u7968\u5df2\u4ed8\u6b3e\u5f8c\uff0c\u81ea\u52d5\u5c07\u5b83\u5011\u6b78\u6a94\u3002", _s18_60, "\u81ea\u52d5\u6b78\u6a94", _s23_19, "\u5831\u50f9\u55ae\u8f49\u63db\u5f8c\uff0c\u81ea\u52d5\u5c07\u5b83\u5011\u6b78\u6a94\u3002", _s18_61, "\u81ea\u52d5\u8f49\u63db", _s23_20, "\u5728\u7528\u6236\u6838\u51c6\u5f8c\u81ea\u52d5\u5c07\u5831\u50f9\u55ae\u8f49\u63db\u70ba\u767c\u7968\u3002", _s17_72, "\u5de5\u4f5c\u6d41\u7a0b\u8a2d\u5b9a", "freq_daily", "\u6bcf\u5929", "freq_weekly", "\u6bcf\u661f\u671f", "freq_two_weeks", "\u5169\u661f\u671f", "freq_four_weeks", "\u56db\u661f\u671f", "freq_monthly", "\u6bcf\u6708", "freq_two_months", "\u5169\u500b\u6708", _s17_74, "\u4e09\u500b\u6708", _s16_126, "\u56db\u500b\u6708", "freq_six_months", "\u516d\u500b\u6708", "freq_annually", "Annually", "freq_two_years", "\u5169\u5e74", _s16_127, "Three Years", "never", "\u6c38\u4e0d", "company", "\u516c\u53f8", _s17_75, "\u81ea\u52d5\u7522\u751f\u4e4b\u865f\u78bc", "charge_taxes", "\u9644\u6536\u7a05\u6b3e", "next_reset", "\u4e0b\u4e00\u6b21\u91cd\u8a2d", "reset_counter", "\u91cd\u8a2d\u8a08\u6578\u5668", _s16_128, "\u7528\u4ee5\u6a19\u793a\u9031\u671f\u6027\u7684\u524d\u7f6e\u7b26\u865f", "number_padding", "\u6578\u5b57\u586b\u5145", "general", "\u4e00\u822c", "surcharge_field", "\u9644\u52a0\u8cbb\u6b04\u4f4d", "company_field", "\u516c\u53f8\u6b04\u4f4d", "company_value", "\u516c\u53f8\u503c", "credit_field", "\u4fe1\u7528\u6b04\u4f4d", "invoice_field", "\u767c\u7968\u6b04\u4f4d", _s17_77, "\u767c\u7968\u984d\u5916\u8cbb\u7528", "client_field", "\u7528\u6236\u6b04\u4f4d", "product_field", "\u7522\u54c1\u6b04\u4f4d", "payment_field", "\u4ed8\u6b3e\u6b04\u4f4d", "contact_field", "\u806f\u7d61\u4eba\u6b04\u4f4d", "vendor_field", "\u4f9b\u61c9\u5546\u6b04\u4f4d", "expense_field", "\u652f\u51fa\u6b04\u4f4d", "project_field", "\u5c08\u6848\u6b04\u4f4d", "task_field", "\u4efb\u52d9\u6b04\u4f4d", "group_field", "\u7fa4\u7d44\u6b04\u4f4d", "number_counter", "\u6578\u5b57\u8a08\u6578\u5668", "prefix", "\u524d\u7f6e\u7b26\u865f", "number_pattern", "\u6578\u5b57\u6a21\u5f0f", "messages", "\u8a0a\u606f", "custom_css", "\u81ea\u8a02\u6a23\u5f0f\u8868", _s17_79, "\u81ea\u8a02 JavaScript", _s16_130, "\u5728 PDF \u6a94\u6848\u4e0a\u986f\u793a", _s21_46, "\u5728\u767c\u7968/\u5831\u50f9\u55ae PDF \u986f\u793a\u7528\u6236\u7c3d\u540d\u3002", _s25_27, "\u767c\u7968\u689d\u6b3e\u6838\u53d6\u65b9\u584a", _s30_5, "\u8981\u6c42\u7528\u6236\u78ba\u8a8d\u4ed6\u5011\u63a5\u53d7\u767c\u7968\u689d\u6b3e\u3002", _s23_21, "\u5831\u50f9\u55ae\u689d\u6b3e\u6838\u53d6\u65b9\u584a", _s28_16, "\u8981\u6c42\u7528\u6236\u78ba\u8a8d\u4ed6\u5011\u63a5\u53d7\u5831\u50f9\u689d\u6b3e\u3002", _s25_28, "\u767c\u7968\u7c3d\u540d", _s30_6, "\u8981\u6c42\u7528\u6236\u63d0\u4f9b\u5176\u7c3d\u540d\u3002", _s23_22, "\u5831\u50f9\u55ae\u7c3d\u540d", _s22_29, "\u7528\u4ee5\u4fdd\u8b77\u767c\u7968\u7684\u5bc6\u78bc", _s27_23, "\u4f7f\u60a8\u80fd\u5920\u70ba\u6bcf\u4f4d\u806f\u7d61\u4eba\u8a2d\u5b9a\u5bc6\u78bc\u3002\u82e5\u8a2d\u5b9a\u5bc6\u78bc\uff0c\u806f\u7d61\u4eba\u5c07\u6703\u5728\u67e5\u770b\u767c\u7968\u4e4b\u524d\u88ab\u8981\u6c42\u8f38\u5165\u5bc6\u78bc\u3002", "authorization", "\u6388\u6b0a", "subdomain", "\u5b50\u7db2\u57df", "domain", "\u7db2\u57df", "portal_mode", "\u5165\u53e3\u7db2\u7ad9\u6a21\u5f0f", "email_signature", "\u5411\u60a8\u81f4\u610f\uff0c", _s24_21, "\u900f\u904e\u5728\u96fb\u5b50\u90f5\u4ef6\u4e2d\u52a0\u5165 schema.org \u6a19\u8a18\uff0c\u4f7f\u60a8\u7684\u7528\u6236\u66f4\u8f15\u9b06\u5730\u652f\u4ed8\u60a8\u7684\u8cbb\u7528\u3002", "plain", "\u7d14\u6587\u5b57", "light", "\u6dfa\u8272", "dark", "\u6df1\u8272", "email_design", "\u96fb\u5b50\u90f5\u4ef6\u7684\u8a2d\u8a08", "attach_pdf", "\u9644\u52a0 PDF \u6a94\u6848", _s16_131, "\u9644\u52a0\u6587\u4ef6", "attach_ubl", "\u9644\u52a0 UBL", "email_style", "\u96fb\u5b50\u90f5\u4ef6\u6a23\u5f0f", _s19_25, "\u555f\u7528\u7db2\u9801\u6a19\u793a", "reply_to_email", "\u56de\u8986\u96fb\u5b50\u90f5\u4ef6", "reply_to_name", "Reply-To Name", "bcc_email", "\u96fb\u5b50\u90f5\u4ef6\u5bc6\u4ef6\u526f\u672c", "processed", "\u8655\u7406", "credit_card", "\u4fe1\u7528\u5361", "bank_transfer", "\u9280\u884c\u8f49\u5e33", "priority", "\u512a\u5148\u9806\u5e8f", "fee_amount", "\u8cbb\u7528\u91d1\u984d", "fee_percent", "\u8cbb\u7528\u767e\u5206\u6bd4", "fee_cap", "\u8cbb\u7528\u4e0a\u9650", "limits_and_fees", "\u9650\u984d/\u8cbb\u7528", "enable_min", "\u555f\u7528\u6700\u5c0f\u503c", "enable_max", "\u555f\u7528\u6700\u5927\u503c", "min_limit", "\u6700\u5c0f\u503c: :min", "max_limit", "\u6700\u5927\u503c: :max", "min", "\u6700\u5c0f\u503c", "max", "\u6700\u5927\u503c", _s19_26, "\u63a5\u53d7\u7684\u5361\u7247\u6a19\u8a8c", "credentials", "\u8a8d\u8b49", "update_address", "\u66f4\u65b0\u5730\u5740", _s19_28, "\u4f7f\u7528\u63d0\u4f9b\u7684\u8a73\u7d30\u8cc7\u6599\u66f4\u65b0\u7528\u6236\u7684\u5730\u5740", "rate", "\u7387", "tax_rate", "\u7a05\u7387", "new_tax_rate", "\u65b0\u7a05\u7387", "edit_tax_rate", "\u7de8\u8f2f\u7a05\u7387", _s16_133, "\u5df2\u6210\u529f\u5730\u5efa\u7acb\u7a05\u7387", _s16_134, "\u66f4\u65b0\u7a05\u7387\u6210\u529f", _s17_82, "\u6b78\u6a94\u7a05\u7387\u8cc7\u6599\u6210\u529f", _s16_135, "\u6210\u529f\u522a\u9664\u7a05\u7387", _s17_83, "\u6210\u529f\u6062\u5fa9\u7a05\u7387", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "\u81ea\u52d5\u586b\u5165\u4e4b\u7522\u54c1\u9805\u76ee", _s18_64, "\u9078\u64c7\u7522\u54c1\u5c07\u81ea\u52d5\u586b\u5beb\u63cf\u8ff0\u548c\u6210\u672c", "update_products", "\u81ea\u52d5\u66f4\u65b0\u7522\u54c1", _s20_44, "\u66f4\u65b0\u767c\u7968\u6642\u6703\u81ea\u52d5 \u66f4\u65b0\u7522\u54c1\u8cc7\u6599\u5eab", _s16_136, "\u8f49\u63db\u7522\u54c1", _s21_47, "\u81ea\u52d5\u5c07\u7522\u54c1\u50f9\u683c\u8f49\u63db\u70ba\u7528\u6236\u7684\u8ca8\u5e63", "fees", "\u8cbb\u7528", "limits", "\u9650\u5236", "provider", "\u4f9b\u61c9\u5546", "company_gateway", "\u4ed8\u6b3e\u9598\u9053", _s16_138, "\u4ed8\u6b3e\u9598\u9053", _s19_29, "\u65b0\u589e\u9598\u9053", _s20_45, "\u7de8\u8f2f\u9598\u9053", _s23_23, "\u5efa\u7acb\u9598\u9053\u8cc7\u6599\u6210\u529f", _s23_24, "\u66f4\u65b0\u9598\u9053\u8cc7\u6599\u6210\u529f", _s24_22, "\u5c01\u5b58\u9598\u9053\u8cc7\u6599\u6210\u529f", _s23_25, "\u522a\u9664\u9598\u9053\u8cc7\u6599\u6210\u529f", _s24_23, "\u5fa9\u539f\u9598\u9053\u6210\u529f", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "\u7e7c\u7e8c\u7de8\u8f2f", "discard_changes", "\u653e\u68c4\u8b8a\u66f4", "default_value", "\u9810\u8a2d\u503c", "disabled", "\u5df2\u505c\u7528", "currency_format", "\u8ca8\u5e63\u683c\u5f0f", _s21_48, "\u6bcf\u661f\u671f\u7684\u7b2c\u4e00\u5929", _s23_26, "\u5e74\u5ea6\u7684\u7b2c\u4e00\u500b\u6708", "sunday", "\u661f\u671f\u65e5", "monday", "\u661f\u671f\u4e00", "tuesday", "\u661f\u671f\u4e8c", "wednesday", "\u661f\u671f\u4e09", "thursday", "\u661f\u671f\u56db", "friday", "\u661f\u671f\u4e94", "saturday", "\u661f\u671f\u516d", "january", "\u4e00\u6708", "february", "\u4e8c\u6708", "march", "\u4e09\u6708", "april", "\u56db\u6708", "may", "\u4e94\u6708", "june", "\u516d\u6708", "july", "\u4e03\u6708", "august", "\u516b\u6708", "september", "\u4e5d\u6708", "october", "\u5341\u6708", "november", "\u5341\u4e00\u6708", "december", "\u5341\u4e8c\u6708", "symbol", "\u7b26\u865f", "ocde", "\u4ee3\u78bc", "date_format", "\u65e5\u671f\u683c\u5f0f", "datetime_format", "\u65e5\u671f\u6642\u9593\u683c\u5f0f", "military_time", "24 \u5c0f\u6642\u5236", _s18_65, "24 Hour Display", "send_reminders", "\u50b3\u9001\u63d0\u9192", "timezone", "\u6642\u5340", _s19_30, _s19_31, _s17_85, "\u4f9d\u7fa4\u7d44\u7be9\u9078", _s19_32, "\u4f9d\u767c\u7968\u7be9\u9078", _s18_66, "\u4f9d\u7528\u6236\u7aef\u7be9\u9078", _s18_68, "\u4f9d\u4f9b\u61c9\u5546\u7be9\u9078", "group_settings", "\u7fa4\u7d44\u8a2d\u5b9a", "group", "\u7fa4\u7d44", "groups", "\u7fa4\u7d44", "new_group", "\u65b0\u589e\u7fa4\u7d44", "edit_group", "\u7de8\u8f2f\u7fa4\u7d44", "created_group", "\u5df2\u6210\u529f\u5efa\u7acb\u7fa4\u7d44", "updated_group", "\u5df2\u6210\u529f\u66f4\u65b0\u7fa4\u7d44", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "\u4e0a\u50b3\u5fbd\u6a19", "uploaded_logo", "\u5df2\u6210\u529f\u4e0a\u50b3\u5fbd\u6a19", "logo", "\u6a19\u8a8c", "saved_settings", "\u5df2\u6210\u529f\u5132\u5b58\u8a2d\u5b9a", _s16_142, "\u7522\u54c1\u8a2d\u5b9a", "device_settings", "\u88dd\u7f6e\u8a2d\u5b9a", "defaults", "\u9810\u8a2d\u503c", "basic_settings", "\u57fa\u672c\u8a2d\u5b9a", _s17_87, "\u9032\u968e\u8a2d\u5b9a", "company_details", "\u516c\u53f8\u4e4b\u8a73\u7d30\u8cc7\u6599", "user_details", "\u4f7f\u7528\u8005\u8a73\u7d30\u8cc7\u6599", "localization", "\u672c\u5730\u5316", "online_payments", "\u7dda\u4e0a\u4ed8\u6b3e", "tax_rates", "\u7a05\u7387", "notifications", "\u6ce8\u610f\u4e8b\u9805", "import_export", "\u532f\u5165 | \u532f\u51fa", "custom_fields", "\u81ea\u8a02\u6b04\u4f4d", "invoice_design", "\u767c\u7968\u8a2d\u8a08", "buy_now_buttons", "\u73fe\u5728\u5373\u8cfc\u8cb7\u6309\u9215", "email_settings", "\u96fb\u5b50\u90f5\u4ef6\u8a2d\u5b9a", _s23_28, "\u7bc4\u672c\u8207\u63d0\u9192", _s22_30, "\u4fe1\u7528\u5361 & \u9280\u884c", _s19_34, "\u8cc7\u6599\u8996\u89ba\u5316", "price", "\u50f9\u683c", "email_sign_up", "\u96fb\u5b50\u90f5\u4ef6\u8a3b\u518a", "google_sign_up", "Google \u8a3b\u518a", _s27_25, "\u611f\u8b1d\u60a8\u7684\u8cfc\u8cb7!", "redeem", "\u514c\u63db", "back", "\u8fd4\u56de", "past_purchases", "\u904e\u53bb\u8cfc\u8cb7", _s19_36, "\u5e74\u5ea6\u8a02\u95b1", "pro_plan", "\u5c08\u696d\u65b9\u6848", "enterprise_plan", "\u4f01\u696d\u65b9\u6848", "count_users", ":count users", "upgrade", "\u5347\u7d1a", _s25_32, "\u8acb\u8f38\u5165\u540d\u5b57", _s24_25, "\u8acb\u8f38\u5165\u59d3\u6c0f", _s33_14, "\u8acb\u540c\u610f\u670d\u52d9\u689d\u6b3e\u548c\u96b1\u79c1\u653f\u7b56\u4ee5\u5efa\u7acb\u5e33\u6236\u3002", "i_agree_to_the", "\u6211\u540c\u610f", _s21_79, "\u670d\u52d9\u689d\u6b3e", _s19_54, "\u96b1\u79c1\u653f\u7b56", _s16_144, "\u670d\u52d9\u689d\u6b3e", "privacy_policy", "\u96b1\u79c1\u6b0a\u653f\u7b56", "sign_up", "\u767b\u5165", "account_login", "\u767b\u5165\u5e33\u6236", "view_website", "\u6aa2\u8996\u7db2\u7ad9", "create_account", "\u5efa\u7acb\u5e33\u6236", "email_login", "\u96fb\u5b50\u90f5\u4ef6\u767b\u5165", "create_new", "\u5efa\u7acb\u65b0\u7684", _s18_70, "\u672a\u9078\u53d6\u4efb\u4f55\u8a18\u9304", _s21_51, "\u8acb\u5132\u5b58\u6216\u53d6\u6d88\u60a8\u7684\u8b8a\u66f4", "download", "\u4e0b\u8f09", _s27_26, "\u9700\u8981\u4f01\u696d\u65b9\u6848", "take_picture", "\u62cd\u7167", "upload_file", "\u4e0a\u50b3\u6a94\u6848", "document", "\u6587\u4ef6", "documents", "\u6587\u4ef6", "new_document", "\u65b0\u65b0\u6587\u4ef6", "edit_document", "\u7de8\u8f2f\u6587\u4ef6", _s17_89, "\u5df2\u6210\u529f\u4e0a\u8f09\u6587\u4ef6", _s16_146, "\u5df2\u6210\u529f\u66f4\u65b0\u6587\u4ef6", _s17_90, "\u5df2\u6210\u529f\u5c01\u5b58\u6587\u4ef6", _s16_147, "\u5df2\u6210\u529f\u522a\u9664\u6587\u4ef6", _s17_91, "\u5df2\u6210\u529f\u9084\u539f\u6587\u4ef6", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "\u7121\u6b77\u53f2\u8a18\u9304", "expense_date", "\u652f\u51fa\u65e5\u671f", "pending", "\u64f1\u7f6e", _s16_148, "\u5df2\u767b\u5165", _s16_149, "\u64f1\u7f6e", _s16_150, "\u5df2\u958b\u7acb\u767c\u7968\u7684", "converted", "\u5df2\u8f49\u63db", _s24_27, "\u65b0\u589e\u6587\u4ef6\u81f3\u767c\u7968", "exchange_rate", "\u532f\u7387", _s16_151, "\u8f49\u63db\u8ca8\u5e63\u55ae\u4f4d", "mark_paid", "\u6a19\u8a18\u5df2\u4ed8", "category", "\u985e\u5225", "address", "\u5730\u5740", "new_vendor", "\u65b0\u4f9b\u61c9\u5546", "created_vendor", "\u5efa\u7acb\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "updated_vendor", "\u66f4\u65b0\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "archived_vendor", "\u6b78\u6a94\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "deleted_vendor", "\u522a\u9664\u4f9b\u61c9\u5546\u6210\u529f", "restored_vendor", "\u5fa9\u539f\u4f9b\u61c9\u5546\u6210\u529f", _s16_152, "\u6b78\u6a94 :count \u7b46\u4f9b\u61c9\u5546\u8cc7\u6599\u6210\u529f", "deleted_vendors", "\u522a\u9664 :count \u7b46\u4f9b\u61c9\u5546\u6210\u529f", _s16_153, _s36_5, "new_expense", "\u8f38\u5165\u652f\u51fa", "created_expense", "\u5df2\u6210\u529f\u5efa\u7acb\u652f\u51fa", "updated_expense", "\u66f4\u65b0\u652f\u51fa\u8cc7\u6599\u6210\u529f", _s16_154, "\u6b78\u6a94\u652f\u51fa\u9805\u76ee\u6210\u529f", "deleted_expense", "\u522a\u9664\u652f\u51fa\u9805\u76ee\u6210\u529f", _s16_155, "\u5fa9\u539f\u652f\u51fa\u8cc7\u6599\u6210\u529f", _s17_93, "\u6b78\u6a94\u652f\u51fa\u9805\u76ee\u6210\u529f", _s16_156, "\u522a\u9664\u652f\u51fa\u9805\u76ee\u6210\u529f", _s17_94, _s37_9, "copy_shipping", "\u8907\u88fd\u9001\u8ca8\u5730\u5740", "copy_billing", "\u8907\u88fd\u5e33\u55ae\u5730\u5740", "design", "\u8a2d\u8a08", _s21_52, "\u627e\u4e0d\u5230\u8a18\u9304", "invoiced", "\u5df2\u958b\u7acb\u767c\u7968\u7684", "logged", "\u5df2\u767b\u5165", "running", "\u57f7\u884c\u4e2d", "resume", "\u7e7c\u7e8c", "task_errors", "\u8acb\u4fee\u6b63\u6240\u6709\u7684\u91cd\u758a\u6642\u6bb5", "start", "\u958b\u59cb", "stop", "\u505c\u6b62", "started_task", "\u5c55\u958b\u4efb\u52d9\u6210\u529f", "stopped_task", "\u505c\u6b62\u4efb\u52d9\u6210\u529f", "resumed_task", "\u5fa9\u539f\u4efb\u52d9\u6210\u529f", "now", "\u73fe\u5728", _s16_157, "\u81ea\u52d5\u555f\u52d5\u4efb\u52d9", "timer", "\u8a08\u6642\u5668", "manual", "\u624b\u52d5", "budgeted", "\u9810\u7b97", "start_time", "\u958b\u59cb\u6642\u9593", "end_time", "\u7d50\u675f\u6642\u9593", "date", "\u65e5\u671f", "times", "\u6642\u6bb5", "duration", "\u6642\u9593\u9577\u5ea6", "new_task", "\u65b0\u4efb\u52d9", "created_task", "\u5efa\u7acb\u5de5\u4f5c\u9805\u76ee\u6210\u529f", "updated_task", "\u66f4\u65b0\u5de5\u4f5c\u9805\u76ee\u6210\u529f", "archived_task", "\u6b78\u6a94\u4efb\u52d9\u8cc7\u6599\u6210\u529f", "deleted_task", "\u522a\u9664\u4efb\u52d9\u6210\u529f", "restored_task", "\u5fa9\u539f\u4efb\u52d9\u8cc7\u6599\u6210\u529f", "archived_tasks", "\u6b78\u6a94 :count \u9805\u4efb\u52d9\u6210\u529f", "deleted_tasks", "\u522a\u9664 :count \u9805\u4efb\u52d9\u6210\u529f", "restored_tasks", _s34_14, _s19_38, "\u8acb\u8f38\u5165\u59d3\u540d", "budgeted_hours", "\u5217\u5165\u9810\u7b97\u7684\u5c0f\u6642", "created_project", "\u5efa\u7acb\u5c08\u6848\u6210\u529f", "updated_project", "\u6210\u529f\u66f4\u65b0\u7684\u5c08\u6848", _s16_159, "\u6b78\u6a94\u5c08\u6848\u9805\u76ee\u6210\u529f", "deleted_project", _s28_28, _s16_160, "\u5fa9\u539f\u5c08\u6848\u6210\u529f", _s17_95, "\u6b78\u6a94 :count \u9805\u5c08\u6848\u6210\u529f", _s16_161, "\u522a\u9664 :count \u4ef6\u5c08\u6848\u6210\u529f", _s17_96, _s37_10, "new_project", "\u65b0\u5c08\u6848", _s27_30, "\u611f\u8b1d\u60a8\u4f7f\u7528\u6211\u5011\u7684\u61c9\u7528\u7a0b\u5f0f!", "if_you_like_it", "\u5982\u679c\u60a8\u559c\u6b61\uff0c\u8acb", "click_here", "\u6309\u4e00\u4e0b\u6b64\u8655", _s18_74, "Click here", "to_rate_it", "\u7d66\u5b83\u8a55\u5206\u3002", "average", "\u5e73\u5747", "unapproved", "\u672a\u540c\u610f", _s30_11, "\u8acb\u9032\u884c\u8eab\u4efd\u9a57\u8b49\u4ee5\u8b8a\u66f4\u9019\u500b\u8a2d\u5b9a", "locked", "\u9396\u5b9a", "authenticate", "\u8eab\u4efd\u9a57\u8b49", _s19_40, "\u8acb\u9a57\u8b49", _s24_28, "\u751f\u7269\u8b58\u5225\u9a57\u8b49", "footer", "\u9801\u5c3e", "compare", "\u6bd4\u8f03", "hosted_login", "\u8a17\u7ba1\u767b\u5165", "selfhost_login", "Selfhost \u767b\u5165", "google_sign_in", _s17_97, "today", "\u4eca\u5929", "custom_range", "\u81ea\u8a02\u7bc4\u570d", "date_range", "\u65e5\u671f\u7bc4\u570d", "current", "\u76ee\u524d", "previous", "\u4ee5\u524d", "current_period", "\u76ee\u524d\u671f\u9650", _s17_98, "\u6bd4\u8f03\u671f\u9650", "previous_period", "\u4e0a\u4e00\u671f\u9650", "previous_year", "\u4e0a\u4e00\u5e74\u5ea6", "compare_to", "\u6bd4\u8f03", "last7_days", "\u6700\u8fd1 7 \u5929", "last_week", "\u4e0a\u500b\u661f\u671f", "last30_days", "\u6700\u8fd1 30 \u5929", "this_month", "\u672c\u6708", "last_month", "\u4e0a\u500b\u6708", "this_year", "\u4eca\u5e74", "last_year", "\u4e0b\u500b\u6708", "custom", "\u81ea\u8a02", _s16_162, "\u518d\u88fd\u5230\u767c\u7968", "clone_to_quote", "\u518d\u88fd\u5230\u5831\u50f9\u55ae", "clone_to_credit", "Clone to Credit", "view_invoice", "\u6aa2\u8996\u767c\u7968", "convert", "\u8f49\u63db", "more", "\u66f4\u591a", "edit_client", "\u7de8\u8f2f\u7528\u6236", "edit_product", "\u7de8\u8f2f\u7522\u54c1\u8cc7\u6599", "edit_invoice", "\u7de8\u8f2f\u767c\u7968", "edit_quote", "\u7de8\u8f2f\u5831\u50f9\u55ae", "edit_payment", "\u7de8\u8f2f\u4ed8\u6b3e\u8cc7\u6599", "edit_task", "\u7de8\u8f2f\u5de5\u4f5c\u9805\u76ee", "edit_expense", "\u7de8\u8f2f\u652f\u51fa", "edit_vendor", "\u7de8\u8f2f\u4f9b\u61c9\u5546", "edit_project", "\u7de8\u8f2f\u5c08\u6848", _s22_, "\u7de8\u8f2f\u9031\u671f\u6027\u652f\u51fa", _s20_47, "\u7de8\u8f2f\u9031\u671f\u6027\u5831\u50f9\u55ae", "billing_address", "\u5e33\u55ae\u5730\u5740", _s16_164, "\u9001\u8ca8\u4f4d\u5740", "total_revenue", "\u7e3d\u6536\u5165", "average_invoice", "\u5e73\u5747\u92b7\u552e\u984d", "outstanding", "\u672a\u4ed8\u6e05\u7684", "invoices_sent", "\u5df2\u5bc4\u51fa :count \u4efd\u767c\u7968", "active_clients", "\u4f7f\u7528\u4e2d\u7528\u6236", "close", "\u95dc\u9589", "email", "\u96fb\u5b50\u90f5\u4ef6", "password", "\u5bc6\u78bc", "url", "URL", "secret", "\u79d8\u5bc6", "name", "\u59d3\u540d", "logout", "\u767b\u51fa", "login", "\u767b\u5165", "filter", "\u7be9\u9078\u5668", "sort", "\u6392\u5e8f", "search", "\u641c\u5c0b", "active", "\u4f7f\u7528\u4e2d", "archived", "\u5df2\u6b78\u6a94", "deleted", "\u5df2\u522a\u9664", "dashboard", "\u5100\u8868\u677f", "archive", "\u6b78\u6a94", "delete", "\u522a\u9664", "restore", "\u5fa9\u539f", _s16_166, "\u91cd\u65b0\u6574\u7406\u5b8c\u6210", _s23_29, "\u8acb\u8f38\u5165\u60a8\u7684\u96fb\u5b50\u90f5\u4ef6", _s26_25, "\u8acb\u8f38\u5165\u60a8\u7684\u5bc6\u78bc", _s21_55, "\u8acb\u8f38\u5165\u60a8\u7684\u7db2\u5740", _s26_27, "\u8acb\u8f38\u5165\u7522\u54c1\u91d1\u9470", "ascending", "\u905e\u589e", "descending", "\u905e\u6e1b", "save", "\u5132\u5b58", _s17_100, "\u767c\u751f\u932f\u8aa4", "paid_to_date", "\u5df2\u4ed8", "balance_due", "\u5230\u671f\u9918\u984d", "balance", "\u5dee\u984d", "overview", "\u7e3d\u89bd", "details", "\u8a73\u7d30\u8cc7\u6599", "phone", "\u96fb\u8a71", "website", "\u7db2\u7ad9", "vat_number", "\u52a0\u503c\u7a05\u7de8\u865f", "id_number", "ID \u7de8\u865f", "create", "\u5efa\u7acb", _s19_42, "\u8907\u88fd :value \u5230\u526a\u8cbc\u7c3f", "error", "\u932f\u8aa4", _s16_168, "\u7121\u6cd5\u555f\u52d5", "contacts", "\u806f\u7d61\u4eba", "additional", "\u984d\u5916", "first_name", "\u540d\u5b57", "last_name", "\u59d3\u6c0f", "add_contact", "\u65b0\u589e\u806f\u7d61\u8cc7\u6599", "are_you_sure", "\u60a8\u78ba\u5b9a\u55ce?", "cancel", "\u53d6\u6d88", "ok", "\u6b63\u5e38", "remove", "\u522a\u9664", _s16_170, "\u96fb\u5b50\u90f5\u4ef6\u7121\u6548", "product", "\u7522\u54c1", "products", "\u7522\u54c1", "new_product", "\u65b0\u7522\u54c1", "created_product", "\u5efa\u7acb\u7522\u54c1\u8cc7\u6599\u6210\u529f", "updated_product", "\u6210\u529f\u66f4\u65b0\u7684\u7522\u54c1\u8cc7\u6599", _s16_172, "\u6b78\u6a94\u7522\u54c1\u8cc7\u6599\u6210\u529f", "deleted_product", "\u5df2\u6210\u529f\u522a\u9664\u7522\u54c1\u8cc7\u6599", _s16_173, "\u5fa9\u539f\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s17_102, "\u6b78\u6a94 :count \u9805\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s16_174, "\u522a\u9664 :count \u7b46\u7522\u54c1\u8cc7\u6599\u6210\u529f", _s17_103, _s37_11, "product_key", "\u7522\u54c1", "notes", "\u8a3b\u8a18", "cost", "\u6210\u672c", "client", "\u7528\u6236", "clients", "\u7528\u6236", "new_client", "\u65b0\u7528\u6236", "created_client", "\u5efa\u7acb\u7528\u6236\u8cc7\u6599\u6210\u529f", "updated_client", "\u66f4\u65b0\u7528\u6236\u8cc7\u6599\u6210\u529f", "archived_client", "\u6b78\u6a94\u7528\u6236\u8cc7\u6599\u6210\u529f", _s16_175, "\u6b78\u6a94 :count \u500b\u7528\u6236\u8cc7\u6599\u6210\u529f", "deleted_client", "\u522a\u9664\u7528\u6236\u8cc7\u6599\u6210\u529f", "deleted_clients", "\u522a\u9664 :count \u7b46\u7528\u6236\u8cc7\u6599\u6210\u529f", "restored_client", "\u5fa9\u539f\u7528\u6236\u8cc7\u6599\u6210\u529f", _s16_176, _s36_7, "address1", "\u8857\u9053", "address2", "\u5927\u6a13/\u5957\u623f", "city", "\u57ce\u5e02", "state", "\u5dde/\u7701", "postal_code", "\u90f5\u905e\u5340\u865f", "country", "\u570b\u5bb6", "invoice", "\u767c\u7968", "invoices", "\u767c\u7968", "new_invoice", "\u65b0\u767c\u7968", "created_invoice", "\u88fd\u4f5c\u5b8c\u6210\u7684\u767c\u7968", "updated_invoice", "\u66f4\u65b0\u767c\u7968\u6210\u529f", _s16_177, "\u6b78\u6a94\u767c\u7968\u8cc7\u6599\u6210\u529f", "deleted_invoice", "\u522a\u9664\u767c\u7968\u6210\u529f", _s16_178, "\u5fa9\u539f\u767c\u7968\u6210\u529f", _s17_104, "\u6b78\u6a94 :count \u7b46\u767c\u7968\u8cc7\u6599\u6210\u529f", _s16_179, "\u522a\u9664 :count \u7b46\u767c\u7968\u6210\u529f", _s17_105, _s37_12, "emailed_invoice", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u767c\u7968\u6210\u529f", "emailed_payment", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u4ed8\u6b3e\u6210\u529f", "amount", "\u91d1\u984d", "invoice_number", "\u767c\u7968\u865f\u78bc", "invoice_date", "\u767c\u7968\u958b\u7acb\u65e5\u671f", "discount", "\u6298\u6263", "po_number", "\u90f5\u905e\u5340\u865f", "terms", "\u689d\u6b3e", "public_notes", "\u516c\u958b\u8a3b\u8a18", "private_notes", "\u79c1\u4eba\u8a3b\u8a18", "frequency", "\u983b\u7387", "start_date", "\u958b\u59cb\u65e5\u671f", "end_date", "\u7d50\u675f\u65e5\u671f", "quote_number", "\u5831\u50f9\u55ae\u7de8\u865f", "quote_date", "\u5831\u50f9\u55ae\u65e5\u671f", "valid_until", "\u6709\u6548\u81f3", "items", "\u500b\u9805\u76ee", "partial_deposit", "\u5b58\u6b3e", "description", "\u63cf\u8ff0", "unit_cost", "\u55ae\u4f4d\u6210\u672c", "quantity", "\u6578\u91cf", "add_item", "\u52a0\u5165\u9805\u76ee", "contact", "\u806f\u7d61\u4eba", "work_phone", "\u96fb\u8a71", "total_amount", "\u7e3d\u91d1\u984d", "pdf", "PDF", "due_date", "\u61c9\u4ed8\u6b3e\u65e5\u671f", _s16_180, "\u90e8\u5206\u622a\u6b62\u65e5\u671f", "status", "\u72c0\u614b", _s17_106, "\u767c\u7968\u72c0\u614b", "quote_status", "\u5831\u50f9\u55ae\u72c0\u614b", _s22_31, "\u6309\u4e00\u4e0b + \u4f86\u52a0\u5165\u9805\u76ee", _s22_33, "\u6309\u4e00\u4e0b + \u4f86\u52a0\u5165\u9805\u76ee", "count_selected", ":count \u9805\u5df2\u9078\u53d6", "total", "\u7e3d\u8a08", "percent", "\u767e\u5206\u6bd4", "edit", "\u7de8\u8f2f", "dismiss", "\u64a4\u92b7", _s20_49, "\u8acb\u9078\u53d6\u65e5\u671f", _s22_34, "\u8acb\u9078\u53d6\u4e00\u500b\u7528\u6236", _s24_30, "\u8acb\u9078\u53d6\u767c\u7968", "task_rate", "\u4efb\u52d9\u8cbb\u7387", "settings", "\u8a2d\u5b9a", "language", "\u8a9e\u8a00", "currency", "\u8ca8\u5e63", "created_at", "\u5efa\u7acb\u65e5\u671f", "created_on", "Created On", "updated_at", "\u66f4\u65b0", "tax", "\u7a05", _s30_13, "\u8acb\u8f38\u5165\u767c\u7968\u7de8\u865f", _s27_34, "\u8acb\u8f38\u5165\u5831\u50f9\u55ae\u7de8\u865f", "past_due", "\u904e\u53bb\u5230\u671f", "draft", "\u8349\u7a3f", "sent", "\u5df2\u50b3\u9001", "viewed", "\u5df2\u6aa2\u8996", "approved", "\u5df2\u6838\u51c6", "partial", "\u5b58\u6b3e", "paid", "\u5df2\u4ed8\u6b3e", "mark_sent", "\u6a19\u8a18\u5df2\u50b3\u9001", _s22_36, "\u6a19\u8a18\u767c\u7968\u70ba\u5df2\u50b3\u9001\u6210\u529f", _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "\u5b8c\u6210", _s37_13, "\u8acb\u8f38\u5165\u7528\u6236\u6216\u9023\u7d61\u4eba\u59d3\u540d", "dark_mode", "\u9ed1\u6697\u6a21\u5f0f", _s27_36, "\u91cd\u65b0\u555f\u52d5\u61c9\u7528\u7a0b\u5f0f\u4ee5\u5957\u7528\u8b8a\u66f4", "refresh_data", "\u91cd\u65b0\u6574\u7406\u8cc7\u6599", "blank_contact", "\u7a7a\u767d\u9023\u7d61\u4eba", "activity", "\u6d3b\u52d5", _s16_182, "\u627e\u4e0d\u5230\u8a18\u9304", "clone", "\u518d\u88fd", "loading", "\u8f09\u5165\u4e2d", "industry", "\u5de5\u696d", "size", "\u5927\u5c0f", "payment_terms", "\u4ed8\u6b3e\u689d\u4ef6", "payment_date", "\u4ed8\u6b3e\u65e5\u671f", "payment_status", "\u4ed8\u6b3e\u72c0\u614b", _s16_184, "\u64f1\u7f6e", _s16_185, "\u4f5c\u5ee2", _s16_186, "\u5931\u6557", _s16_187, "\u5b8c\u6210", _s16_188, "\u90e8\u5206\u9000\u6b3e", _s16_189, "\u9000\u6b3e", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "\u6de8\u984d", "client_portal", "\u7528\u6236\u9580\u6236\u9801\u9762", "show_tasks", "\u986f\u793a\u4efb\u52d9", "email_reminders", "\u96fb\u5b50\u90f5\u4ef6\u63d0\u9192", "enabled", "\u555f\u7528", "recipients", "\u6536\u4ef6\u4eba", "initial_email", "\u6700\u521d\u7684\u96fb\u5b50\u90f5\u4ef6", "first_reminder", "\u9996\u6b21\u63d0\u9192", "second_reminder", "\u7b2c\u4e8c\u6b21\u63d0\u9192", "third_reminder", "\u7b2c\u4e09\u6b21\u63d0\u9192", "reminder1", "\u9996\u6b21\u63d0\u9192", "reminder2", "\u7b2c\u4e8c\u6b21\u63d0\u9192", "reminder3", "\u7b2c\u4e09\u6b21\u63d0\u9192", "template", "\u7bc4\u672c", "send", "\u50b3\u9001", "subject", "\u4e3b\u65e8", "body", "\u5167\u6587", "send_email", "\u5bc4\u9001\u96fb\u5b50\u90f5\u4ef6", "email_receipt", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u50b3\u9001\u4ed8\u6b3e\u6536\u64da\u7d66\u7528\u6236", "auto_billing", "\u81ea\u52d5\u8a08\u8cbb", "button", "\u6309\u9215", "preview", "\u9810\u89bd", "customize", "\u81ea\u8a02", "history", "\u6b77\u7a0b\u7d00\u9304", "payment", "\u4ed8\u6b3e", "payments", "\u4ed8\u6b3e", "refunded", "\u9000\u6b3e", "payment_type", "\u4ed8\u6b3e\u65b9\u5f0f", _s21_57, "\u8f49\u5e33\u8cc7\u6599", "enter_payment", "\u8f38\u5165\u4ed8\u6b3e\u8cc7\u6599", "new_payment", "\u8f38\u5165\u4ed8\u6b3e\u8cc7\u6599", "created_payment", "\u5df2\u5efa\u7acb\u5b8c\u6210\u7684\u4ed8\u6b3e\u8cc7\u6599", "updated_payment", "\u66f4\u65b0\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_190, "\u6b78\u6a94\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", "deleted_payment", "\u522a\u9664\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_191, "\u5fa9\u539f\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s17_109, "\u6b78\u6a94 :count \u7b46\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s16_192, "\u522a\u9664 :count \u7b46\u4ed8\u6b3e\u8cc7\u6599\u6210\u529f", _s17_110, _s37_15, "quote", "\u5831\u50f9\u55ae", "quotes", "\u5831\u50f9\u55ae", "new_quote", "\u65b0\u5831\u50f9\u55ae", "created_quote", "\u5831\u50f9\u55ae\u5efa\u7acb\u6210\u529f", "updated_quote", "\u5831\u50f9\u55ae\u66f4\u65b0\u6210\u529f", "archived_quote", "\u6b78\u6a94\u5831\u50f9\u55ae\u6210\u529f", "deleted_quote", "\u5831\u50f9\u55ae\u522a\u9664\u6210\u529f", "restored_quote", "\u5fa9\u539f\u5831\u50f9\u55ae\u6210\u529f", "archived_quotes", "\u6b78\u6a94 :count \u4efd\u5831\u50f9\u55ae\u6210\u529f", "deleted_quotes", "\u522a\u9664 :count \u7b46\u5831\u50f9\u55ae\u6210\u529f", "restored_quotes", _s35_13, "expense", "\u652f\u51fa", "expenses", "\u652f\u51fa", "vendor", "\u4f9b\u61c9\u5546", "vendors", "\u4f9b\u61c9\u5546", "task", "\u4efb\u52d9", "tasks", "\u4efb\u52d9", "project", "\u5c08\u6848", "projects", "\u5c08\u6848", "activity_1", ":user \u5df2\u5efa\u7acb\u7528\u6236 :client", "activity_2", ":user \u5df2\u5c07\u7528\u6236 :client \u6b78\u6a94", "activity_3", ":user \u5df2\u522a\u9664\u7528\u6236 :client", "activity_4", ":user \u5df2\u5efa\u7acb\u767c\u7968 :invoice", "activity_5", ":user \u5df2\u66f4\u65b0\u767c\u7968 :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user \u5df2\u5c07\u767c\u7968 :invoice \u6b78\u6a94", "activity_9", ":user \u5df2\u522a\u9664\u767c\u7968 :invoice", "activity_10", _s85_0, "activity_11", ":user \u5df2\u66f4\u65b0\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_12", ":user \u5df2\u5c07\u4ed8\u6b3e\u8cc7\u6599 :payment \u6b78\u6a94", "activity_13", ":user \u5df2\u522a\u9664\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_14", ":user \u5df2\u8f38\u5165\u8cb8\u6b3e\u8cc7\u6599 :credit", "activity_15", ":user \u66f4\u65b0\u8cb8\u6b3e :credit", "activity_16", ":user \u5df2\u5c07 :credit \u8cb8\u6b3e\u8cc7\u6599\u6b78\u6a94", "activity_17", ":user \u5df2\u522a\u9664 :credit \u8cb8\u6b3e\u8cc7\u6599", "activity_18", ":user \u5df2\u5efa\u7acb\u5831\u50f9\u55ae :quote", "activity_19", ":user \u5df2\u66f4\u65b0\u5831\u50f9\u55ae :quote", "activity_20", _s50_4, "activity_21", ":contact \u5df2\u6aa2\u8996\u5831\u50f9\u55ae :quote", "activity_22", ":user \u5df2\u5c07\u5831\u50f9\u55ae :quote \u6b78\u6a94", "activity_23", ":user \u5df2\u522a\u9664\u767c\u7968 :quote", "activity_24", ":user \u5df2\u5fa9\u539f\u5831\u50f9\u55ae :quote", "activity_25", ":user \u5df2\u5fa9\u539f\u767c\u7968 :invoice", "activity_26", ":user \u5df2\u5fa9\u539f\u7528\u6236 :client \u8cc7\u6599", "activity_27", ":user \u5df2\u5fa9\u539f\u4ed8\u6b3e\u8cc7\u6599 :payment", "activity_28", ":user \u5df2\u5fa9\u539f :credit \u8cb8\u6b3e\u8cc7\u6599", "activity_29", _s42_9, "activity_30", ":user \u5df2\u5efa\u7acb\u4f9b\u61c9\u5546 :vendor", "activity_31", ":user \u5df2\u5c07\u4f9b\u61c9\u5546 :vendor \u6b78\u6a94", "activity_32", ":user \u5df2\u522a\u9664\u4f9b\u61c9\u5546 :vendor", "activity_33", ":user \u5df2\u5fa9\u539f\u4f9b\u61c9\u5546 :vendor", "activity_34", ":user \u5df2\u5efa\u7acb\u652f\u51fa :expense", "activity_35", ":user \u5df2\u5c07\u652f\u51fa :expense \u6b78\u6a94", "activity_36", ":user \u5df2\u522a\u9664\u652f\u51fa :expense", "activity_37", ":user \u5df2\u5fa9\u539f\u652f\u51fa :expense", "activity_39", ":user \u5df2\u53d6\u6d88\u4e00\u9805 :payment_amount \u7684\u4ed8\u6b3e :payment", "activity_40", ":user \u7372\u5f97\u4e00\u7b46\u91d1\u984d :payment_amount \u4ed8\u6b3e :payment \u7684\u9000\u6b3e :adjustment", "activity_41", ":payment_amount \u7684\u4ed8\u6b3e (:payment) \u5931\u6557", "activity_42", ":user \u5df2\u5efa\u7acb\u4efb\u52d9 :task", "activity_43", ":user \u5df2\u5c07\u4efb\u52d9 :task \u66f4\u65b0", "activity_44", ":user \u5df2\u5c07\u4efb\u52d9 :task \u6b78\u6a94", "activity_45", ":user \u5df2\u522a\u9664\u4efb\u52d9 :task", "activity_46", ":user \u5df2\u5c07\u4efb\u52d9 :task\u5fa9\u539f", "activity_47", ":user \u5df2\u5c07\u652f\u51fa :expense \u66f4\u65b0", "activity_48", ":user \u5df2\u66f4\u65b0\u7968\u8b49 :ticket", "activity_49", ":user \u5df2\u95dc\u9589\u7968\u8b49 :ticket", "activity_50", ":user \u5df2\u5408\u4f75\u7968\u8b49 :ticket", "activity_51", ":user \u62c6\u5206\u7968\u8b49 :ticket", "activity_52", ":contact \u5df2\u958b\u555f\u7968\u8b49 :ticket", "activity_53", ":contact \u5df2\u91cd\u65b0\u958b\u555f\u7968\u8b49 :ticket", "activity_54", ":user \u5df2\u91cd\u65b0\u958b\u555f\u7968\u8b49 :ticket", "activity_55", ":contact \u5df2\u56de\u8986\u7968\u8b49 :ticket", "activity_56", ":user \u5df2\u6aa2\u8996\u7968\u8b49 :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "\u4e00\u6b21\u6027\u5bc6\u78bc", "emailed_quote", "\u4ee5\u96fb\u5b50\u90f5\u4ef6\u5bc4\u51fa\u5831\u50f9\u55ae\u6210\u529f", "emailed_credit", _s27_48, _s20_51, "\u6a19\u8a18\u5831\u50f9\u55ae\u70ba\u5df2\u50b3\u9001\u6210\u529f", _s21_59, _s34_15, "expired", "\u904e\u671f", "all", "\u5168\u90e8", "select", "\u9078\u64c7", _s22_38, "\u9577\u6309\u591a\u9078", "custom_value1", "\u81ea\u8a02\u503c", "custom_value2", "\u81ea\u8a02\u503c", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u767c\u7968\u865f\u78bc\u8a08\u6578\u5668", _s20_52, _s20_53, _s20_54, "\u5831\u50f9\u55ae\u7de8\u865f\u8a08\u6578\u5668", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "\u985e\u578b", "invoice_amount", "\u767c\u7968\u91d1\u984d", _s16_197, "\u61c9\u4ed8\u6b3e\u65e5\u671f", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u81ea\u52d5\u5e33\u55ae", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u7a05\u540d", "tax_amount", "\u7a05\u91d1\u91d1\u984d", "tax_paid", "\u5df2\u4ed8\u7a05", "payment_amount", "\u4ed8\u6b3e\u91d1\u984d", "age", "\u5e74\u9f61", "is_running", "Is Running", "time_log", "\u6642\u9593\u65e5\u8a8c", "bank_id", "\u9280\u884c", _s19_49, _s19_50, _s16_198, "\u652f\u51fa\u985e\u5225", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "hr", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Uvezi podatke", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Zadnje a\u017euriranje", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", "Mora biti ve\u0107e od nula i manje od zbroja", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogu\u0107i", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Postavi poddomenu ili prikazujte ra\u010dune na vlastitoj web stranici.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Pro\u0161lo tromjesje\u010dje", "to_update_run", "To update run", _s18_17, "Konverzija ra\u010duna", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Fakturiraj zadatak", "invoice_expense", "Tro\u0161ak ra\u010duna", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, "Podr\u017eani doga\u0111aji", _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Sakrij", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolona", "sample", "Uzorak", "map_to", "Map To", "import", "Uvoz", _s25_1, _s29_1, "select_file", "Molim odaberite datoteku", _s16_32, _s16_33, "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nepla\u0107eno", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Ra\u010dun sveukupno", "quote_total", "Ponuda sveukupno", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Klijent", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Kategorije tro\u0161kova", _s20_20, _s24_42, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Treba biti fakturiran", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Ozna\u010di kao aktivno", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Redovni ra\u010dun", _s18_29, "Redovni ra\u010duni", _s21_25, "Novi redovni ra\u010dun", _s22_12, "Uredi ponavljaju\u0107i ra\u010dun", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Uspje\u0161no arhiviran redoviti ra\u010dun", _s25_14, "Uspje\u0161no obrisan redoviti ra\u010dun", _s25_15, _s38_7, _s26_6, "Uspje\u0161no obnovljen redoviti ra\u010dun", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email poslan", _s17_33, _s17_34, "failure", "Neuspjeh", "quota_exceeded", "Kvota prema\u0161ena", _s16_42, _s16_43, "system_logs", "Zapisnici sustava", "view_portal", "View Portal", "copy_link", "Kopiraj link", "token_billing", "Pohrani detalje kartice", _s24_17, "Dobrodo\u0161li u Invoice Ninja", "always", "Always", "optin", "Dragovoljno sudjeluj", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Automatski pretvoriti", "company_name", "Company Name", "reminder1_sent", "Podsjetnik 1 poslan", "reminder2_sent", "Podsjetnik 2 poslan", "reminder3_sent", "Podsjetnik 3 poslan", _s18_33, "Podsjetnik 4 poslan", "pdf_page_info", "Stranica :current od :total", _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "Pogled u aplikaciji Stripe", "rows_per_page", "Redova po stranici", "hours", "sati", "statement", "Izvje\u0161\u0107e o stanju duga", "taxes", "Porezi", "surcharge", "Surcharge", "apply_payment", "Izvr\u0161i pla\u0107anje", "apply", "Apply", "unapplied", "Neprovedeni", "select_label", "Select Label", "custom_labels", "Prilago\u0111ene oznake", "record_type", "Vrsta zapisa", "record_name", "Ime zapisa", "file_type", "Vrsta datoteke", "height", "Visina", "width", "\u0160irina", "to", "Prima", "health_check", "Provjera zdravlja", "payment_type_id", "Tip uplate", "last_login_at", "Posljednja prijava u", "company_key", "Klju\u010d tvrtke", "storefront", "Storefront", "storefront_help", "Omogu\u0107ite aplikacijama tre\u0107ih strana za stvaranje ra\u010duna", "client_created", "Klijent stvoren", _s20_23, "E-po\u0161ta za internetsko pla\u0107anje", _s20_25, "E-po\u0161ta za ru\u010dno pla\u0107anje", "completed", "Dovr\u0161eno", "gross", "Bruto", "net_amount", "Neto iznos", "net_balance", "Neto saldo", "client_settings", "Postavke klijenta", _s17_35, "Odabrani ra\u010duni", _s17_37, "Odabrane transkacije", "selected_quotes", "Odabrane ponude", "selected_tasks", "Odabrani zadaci", _s17_39, "Odabrani tro\u0161kovi", _s17_41, "Dolazni ra\u010duni", _s17_43, _s17_44, "recent_payments", "Nedavne uplate", "upcoming_quotes", "Nadolaze\u0107e ponude", "expired_quotes", "Istekle ponude", "create_client", "Create Client", "create_invoice", "Kreiraj ra\u010dun", "create_quote", "Kreiraj ponudu", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "A\u017euriraj ponudi", "delete_quote", "Obri\u0161i ponudu", "update_invoice", "A\u017euriraj ra\u010dun", "delete_invoice", "Obri\u0161i ra\u010dun", "update_client", "A\u017euriraj klijenta", "delete_client", "Obri\u0161i klijenta", "delete_payment", "Obri\u0161i uplatu", "update_vendor", "A\u017euriraj dobavlja\u010da", "delete_vendor", _s17_119, "create_expense", "Stvori tro\u0161ak", "update_expense", "A\u017euriraj tro\u0161ak", "delete_expense", "Obri\u0161i tro\u0161ak", "create_task", "Kreiraj zadatak", "update_task", "A\u017euriraj zadatak", "delete_task", "Obri\u0161i zadatak", "approve_quote", "Odobri ponudu", "off", "Off", "when_paid", "When Paid", "expires_on", "Istje\u010de u", "free", "Slobodan", "plan", "Plan", "show_sidebar", "Poka\u017ei bo\u010dnu traku", "hide_sidebar", "Sakrij bo\u010dnu traku", "event_type", "Vrsta doga\u0111aja", "target_url", "Target", "copy", "Kopiraj", "must_be_online", "Ponovo pokrenite aplikaciju nakon povezivanja s internetom", _s17_45, "CRON zadatak mora biti postavljen", "api_webhooks", "API Webhooks", "search_webhooks", "Pretra\u017ei :count Webhooks", "search_webhook", "Pretra\u017ei 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Novi Webhook", "edit_webhook", "Uredi Webhook", "created_webhook", "Webhook uspje\u0161no stvoren", "updated_webhook", "Webhook uspje\u0161no a\u017euriran", _s16_46, "Webhook uspje\u0161no arhiviran", "deleted_webhook", "Webhook uspje\u0161no izbrisan", "removed_webhook", "Webhook uspje\u0161no uklonjen", _s16_47, "Webhook uspje\u0161no vra\u0107en", _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API tokeni", "api_docs", "API Docs", "search_tokens", "Pretra\u017ei :count tokena", "search_token", "Pretra\u017ei 1 token", "token", "Token", "tokens", "Tokeni", "new_token", "Novi token", "edit_token", "Uredi token", "created_token", "Uspje\u0161no kreiran token", "updated_token", "Uspje\u0161no a\u017euriran token", "archived_token", "Uspje\u0161no arhiviran token", "deleted_token", "Uspje\u0161no obrisan token", "removed_token", "Token uspje\u0161no uklonjen", "restored_token", "Token uspje\u0161no vra\u0107en", "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, "Registracija klijenta", _s24_19, "Omogu\u0107ite klijentima da se sami registriraju na portalu", _s21_27, "Prilagodba i pregled", "email_invoice", _s16_210, "email_quote", "\u0160alji ponudu e-po\u0161tom", "email_credit", "Email Credit", "email_payment", "Po\u0161alji uplatu e-mailom", _s20_28, "Klijent nema postavljenu adresu e-po\u0161te", "ledger", "Ledger", "view_pdf", "Pogledaj PDF", "all_records", "Svi zapisi", "owned_by_user", "Vlasni\u0161tvo korisnika", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Upotrijebi zadanu vrijednost", _s16_52, "Beskrajni podsjetnici", "number_of_days", "Broj dana", _s23_10, "Konfiguriraj rokove pla\u0107anja", "payment_term", "Rok pla\u0107anja", _s16_53, "Novi rok pla\u0107anja", _s17_49, "Uredi uvjete pla\u0107anja", _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, "Uspje\u0161no izbrisan rok pla\u0107anja", _s20_32, "Uspje\u0161no uklonjen rok pla\u0107anja", _s21_29, "Uspje\u0161no vra\u0107en rok pla\u0107anja", _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", "Prijavite se e-po\u0161tom", "change", "Promijeni", _s23_12, "Promijeni na mobilni izgled?", _s24_20, "Promijeni na izgled stolnog ra\u010dunala", "send_from_gmail", "Po\u0161alji s Gmaila", "reversed", "Stornirano", "cancelled", "Otkazani", "credit_amount", "Iznos kredita", "quote_amount", "Iznos Ponude", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Sakri Izbornik", "show_menu", "Prika\u017ei Izbornik", _s18_35, "Djelomi\u010dan Povrat", _s16_56, "Pretra\u017ei Dokumente", "search_designs", "Pretra\u017ei Dizajne", "search_invoices", "Pretra\u017ei Ra\u010dune", "search_clients", "Pretra\u017ei Klijente", "search_products", "Pretra\u017ei proizvode", "search_quotes", "Pretra\u017ei Ponude", "search_credits", "Search Credits", "search_vendors", "Pretra\u017ei Dobavlja\u010da", "search_users", "Pretra\u017ei Korisnike", _s16_57, "Pretra\u017ei porezne stope", "search_tasks", "Pretra\u017ei Zadatke", "search_settings", "Pretra\u017ei Postavke", "search_projects", "Pretra\u017ei projekte", "search_expenses", "Pretra\u017ei tro\u0161kove", "search_payments", "Pretra\u017ei Uplate", "search_groups", "Pretra\u017ei Grupe", "search_company", "Pretra\u017ei Poduze\u0107e", "search_document", "Pretra\u017ei 1 dokument", "search_design", "Pretra\u017ei 1 dizajn", "search_invoice", "Pretra\u017ei 1 ra\u010dun", "search_client", "Pretra\u017ei 1 klijenta", "search_product", "Pretra\u017ei 1 proizvod", "search_quote", "Pretra\u017ei 1 ponudu", "search_credit", "Search 1 Credit", "search_vendor", "Pretra\u017ei 1 dobavlja\u010da", "search_user", "Pretra\u017ei 1 korisnika", "search_tax_rate", "Pretra\u017ei 1 poreznu stopu", "search_task", "Pretra\u017ei 1 zadatka", "search_project", "Pretra\u017ei 1 projekta", "search_expense", "Pretra\u017ei 1 tro\u0161ka", "search_payment", "Pretra\u017ei 1 transakciju", "search_group", "Pretra\u017ei 1 grupu", "refund_payment", "Refund Payment", _s17_53, _s23_33, _s18_37, _s23_33, _s16_63, "Uspje\u0161no otkazani ra\u010duni", _s17_54, "Uspje\u0161no storniran ra\u010dun", "reverse", "Storniraj", "full_name", "Ime i prezime", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Neobavezno", "license", "Licenca", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Stanje ra\u010duna", "age_group_0", "0 - 30 dana", "age_group_30", "30 - 60 dana", "age_group_60", "60 - 90 dana", "age_group_90", "90 - 120 dana", "age_group_120", "120+ dana", "refresh", "Refresh", "saved_design", "Uspje\u0161no spremljen dizajn", "client_details", "Pojedinosti o klijentu", "company_address", "Adresa tvrtke", "invoice_details", "Detalji ra\u010duna", "quote_details", "Pojedinosti o ponudi", "credit_details", "Credit Details", "product_columns", "Stupci proizvoda", "task_columns", "Stupci zadatka", "add_field", "Dodaj polje", "all_events", "Svi doga\u0111aji", "permissions", "Permissions", "none", "None", "owned", "U vlasni\u0161tvu", "payment_success", "Uspjeh pla\u0107anja", "payment_failure", "Neuspjeh pla\u0107anja", "invoice_sent", _s19_53, "quote_sent", "Ponuda poslana", "credit_sent", "Credit Sent", "invoice_viewed", "Ra\u010dun pregledan", "quote_viewed", "Ponuda pogledana", "credit_viewed", "Credit Viewed", "quote_approved", "Ponuda odobrena", _s25_18, "Primi sve obavijesti", _s16_65, "Kupi licencu", "apply_license", "Apply License", "cancel_account", "Izbri\u0161i korisni\u010dki ra\u010dun", _s22_19, "Pozor: Ovo \u0107e trajno obrisati sve va\u0161e podatke, nema povratka.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", "Ponuda uspje\u0161no pretvorena", "credit_design", "Credit Design", "includes", "Uklju\u010duje", "header", "Zaglavlje", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Prilago\u0111eni dizajni", "designs", "Dizajni", "new_design", "Novi dizajn", "edit_design", "Uredi dizajn", "created_design", "Dizajn uspje\u0161no stvoren", "updated_design", "Dizajn uspje\u0161no a\u017euriran", "archived_design", "Dizajn uspje\u0161no arhiviran", "deleted_design", "Dizajn uspje\u0161no izbrisan", "removed_design", "Dizajn uspje\u0161no uklonjen", "restored_design", "Dizajn uspje\u0161no vra\u0107en", _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Prijedlozi", "tickets", "Radni nalozi", _s16_69, "Ponavljaju\u0107e ponude", "recurring_tasks", "Ponavljaju\u0107i zadaci", _s18_, _s16_211, _s18_39, "Upravljanje ra\u010dunima", "credit_date", "Datum kredita", "credit", "Kredit", "credits", "Krediti", "new_credit", "Dodaj kredit", "edit_credit", "Uredi kredit", "created_credit", "Uspje\u0161no kreiran kredit", "updated_credit", _s27_19, "archived_credit", "Uspje\u0161no arhiviran kredit", "deleted_credit", "Uspje\u0161no obrisan kredit", "removed_credit", _s27_21, "restored_credit", "Uspje\u0161no obnovljen kredit", _s16_71, "Uspje\u0161no arhivirano :count kredita", "deleted_credits", "Uspje\u0161no obrisano :count kredita", _s16_72, _s36_3, "current_version", _s16_212, "latest_version", "Najnovija verzija", "update_now", "A\u017euriraj sada", _s26_13, "Dostupna je nova verzija web aplikacije", _s16_73, "A\u017euriranje dostupno", "app_updated", "A\u017euriranje je uspje\u0161no zavr\u0161eno", "learn_more", _s16_213, "integrations", "Integracije", "tracking_id", "Broj za pra\u0107enje", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Novo poduze\u0107e", "added_company", "Tvrtka je uspje\u0161no dodana", "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Resetiraj", "number", "Broj", "export", "Izvoz", "chart", "Karte", "count", "Zbroj", "totals", "Zbrojevi", "blank", "Blank", "day", "Dan", "month", "Mjesec", "year", "Godina", "subgroup", "Subgroup", "is_active", "Je aktivan", "group_by", "Grupiraj po", "credit_balance", "Stanje kredita", _s18_45, "Zadnje prijavljivanje kontakta", _s17_61, "Puno ime kontakta", "contact_phone", "Contact Phone", _s21_31, "Prilago\u0111ena vrijednost 1 kontakta", _s21_32, "Prilago\u0111ena vrijednost 2 kontakta", _s21_33, "Prilago\u0111ena vrijednost 3 kontakta", _s21_34, "Prilago\u0111ena vrijednost 4 kontakta", _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Dodijeljeno za", "created_by", _s16_202, "assigned_to_id", "Dodijeljeno ID-u", "created_by_id", "Stvorio ID", "add_column", "Dodaj stupac", "edit_columns", "Uredi stupce", "columns", "Kolone", "aging", "Izvan dospije\u0107a", "profit_and_loss", "Profit i Tro\u0161ak", "reports", "Izvje\u0161\u0107a", "report", "Izvje\u0161\u0107a", "add_company", "Dodaj poduze\u0107e", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Pomo\u0107", "refund", "Refund", "refund_date", "Datum povrata novca", "filtered_by", "Filtrirano po", "contact_email", "Contact Email", "multiselect", "Vi\u0161estruki odabir", "entity_state", "Kanton", "verify_password", "Potvrdi lozinku", "applied", "Primijenjeno", _s21_35, "Uklju\u010dite nedavne pogre\u0161ke iz zapisnika", _s30_4, "Primili smo va\u0161u poruku i poku\u0161at \u0107emo brzo odgovoriti.", "message", "Poruka", "from", "\u0160alje", _s20_35, "Prika\u017ei detalje o proizvodu", _s25_20, "Uklju\u010dite opis i cijenu u padaju\u0107i izbornik proizvoda", _s20_37, "PDF renderer zahtijeva :version", _s18_48, "Prilagodite postotak naknade", _s23_14, "Prilagodite postotak da biste uzeli u obzir naknadu", _s18_50, "Konfigurirajte postavke", "support_forum", "support forum", "about", "About", "documentation", "Dokumentacija", "contact_us", "Kontaktirajte nas", "subtotal", "Sveukupno", "line_total", "Ukupno", "item", "Stavka", "credit_email", "Credit Email", "iframe_url", "Web mjesto", "domain_url", "URL domene", _s21_36, _s20_57, _s20_38, "Lozinka mora sadr\u017eavati barem jedno veliko slovo i broj", _s19_21, "Zadaci klijentskog portala", _s23_15, "Nadzorna plo\u010da klijentskog portala", _s20_39, "Molimo unesite vrijednost", "deleted_logo", "Logo je uspje\u0161no izbrisan", "yes", "Da", "no", "Ne", "generate_number", "Generiraj broj", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Odaberite tvrtku", "float", "Float", "collapse", "Collapse", "show_or_hide", "Poka\u017ei/Sakrij", "menu_sidebar", "Bo\u010dna traka izbornika", "history_sidebar", "Bo\u010dna traka povijesti", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Raspored", "view", "Pregled", "module", "Module", "first_custom", "Prvi stupac", "second_custom", "Drugi stupac", "third_custom", "Tre\u0107i stupac", "show_cost", "Prika\u017ei tro\u0161ak", _s17_66, _s17_67, "show_cost_help", "Prika\u017ei polje tro\u0161kova proizvoda za pra\u0107enje mar\u017ee / dobiti", _s21_37, "Prika\u017ei koli\u010dinu proizvoda", _s26_15, "Prika\u017ei polje s koli\u010dinom proizvoda, ina\u010de zadano 1", _s21_39, "Prika\u017ei koli\u010dinu ra\u010duna", _s26_16, "Prika\u017ei polje za koli\u010dinu stavke, ina\u010de zadano 1", _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, "Zadana koli\u010dina", _s21_43, "Koli\u010dina stavke retka automatski postavi na 1", "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Korisnik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Postavke poreza", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Opcije", _s16_113, "Tekst u jednom retku", "multi_line_text", "Tekst s vi\u0161e redaka", "dropdown", "Padaju\u0107i izbornik", "field_type", "Vrsta polja", _s27_22, "Poslan je e-mail za oporavak lozinke", "submit", "Submit", _s16_115, "Obnovite va\u0161u zaporku", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Broj transakcije", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Raspored", "before_due_date", "Prije datuma dospije\u0107a", "after_due_date", "Nakon datuma dospije\u0107a", _s18_57, "Nakon datuma ra\u010duna", "days", "Dani", "invoice_email", "E-po\u0161ta ra\u010duna", "payment_email", "E-po\u0161ta uplate", "partial_payment", "Djelomi\u010dno pla\u0107anje", "payment_partial", "Partial Payment", _s21_44, "E-po\u0161ta za djelomi\u010dno pla\u0107anje", "quote_email", "E-po\u0161ta ponude", _s16_118, _s16_119, _s16_120, "Filtrirano po korisniku", "administrator", "Administrator", _s18_58, _s66_, "user_management", _s23_34, "users", "Korisnici", "new_user", "Novi korisnik", "edit_user", "Uredi korisnika", "created_user", "Uspje\u0161no stvoren korisnik", "updated_user", "Korisnik je uspje\u0161no a\u017euriran", "archived_user", "Uspje\u0161no arhiviran korisnik", "deleted_user", "Korisnik je uspje\u0161no obrisan", "removed_user", "Korisnik je uspje\u0161no uklonjen", "restored_user", "Uspje\u0161no obnovljen korisnik", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Op\u0107e postavke", "invoice_options", "Opcije ra\u010duna", _s17_70, _s21_80, _s22_27, _s70_0, _s23_17, "Ugra\u0111eni dokumenti", _s28_15, "Ubaci dodane dokumente u ra\u010dun.", _s16_124, _s20_58, _s16_125, _s19_56, "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primarni font", "secondary_font", "Sekundarni font", "primary_color", "Primarna boja", "secondary_color", "Sekundarna boja", "page_size", "Page Size", "font_size", "Veli\u010dina fonta", "quote_design", "Quote Design", "invoice_fields", "Polja ra\u010duna", "product_fields", "Product Fields", "invoice_terms", "Uvjeti ra\u010duna", "invoice_footer", "Podno\u017eje ra\u010duna", "quote_terms", "Uvjeti ponude", "quote_footer", "Podno\u017eje ponude", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, "Automatski konvertirajte ponudu u ra\u010dun nakon \u0161to je odobrena od strane klijenta.", _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Tri godine", "never", "Never", "company", "Company", _s17_75, "Generirani brojevi", "charge_taxes", "Naplati poreze", "next_reset", "Slijede\u0107i reset", "reset_counter", "Resetiraj broja\u010d", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "Op\u0107enito", "surcharge_field", "Polje doplate", "company_field", "Company Field", "company_value", "Vrijednost tvrtke", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Polje transakcije", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Polje Grupe", "number_counter", "Broja\u010d brojeva", "prefix", "Prefiks", "number_pattern", "Uzorak broja", "messages", "Messages", "custom_css", "Prilago\u0111eni CSS", _s17_79, "Prilago\u0111eni JavaScript", _s16_130, "Poka\u017ei na PDF-u", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "Poddomena", "domain", "Domain", "portal_mode", "Na\u010din rada Portal", "email_signature", "Srda\u010dno,", _s24_21, _s81_, "plain", "Obi\u010dno", "light", "Svijetlo", "dark", "Tamno", "email_design", "Dizajn e-po\u0161te", "attach_pdf", "Prilo\u017eite PDF", _s16_131, "Prilo\u017eite dokumente", "attach_ubl", "Prilo\u017eite UBL", "email_style", "Stil e-po\u0161te", _s19_25, "Omogu\u0107i markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Obra\u0111eno", "credit_card", _s16_214, "bank_transfer", "Bankovni prijenos", "priority", "Prioritet", "fee_amount", "Iznos naknade", "fee_percent", "Postotak naknade", "fee_cap", "Fee Cap", "limits_and_fees", "Limiti/Naknade", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "A\u017euriraj adresu", _s19_28, "A\u017euriraj adresu klijenta uz osigurane detalje", "rate", "Stopa", "tax_rate", "Porezna stopa", "new_tax_rate", "Nova porezna stopa", "edit_tax_rate", "Uredi poreznu stopu", _s16_133, "Uspje\u0161no kreirana porezna stopa", _s16_134, "Uspje\u0161no a\u017eurirana porezna stopa", _s17_82, "Uspje\u0161no arhivirana porezna stopa", _s16_135, "Uspje\u0161no izbrisana porezna stopa", _s17_83, "Uspje\u0161no vra\u0107ena porezna stopa", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s24_43, _s18_64, _s53_2, "update_products", "Proizvidi sa autoa\u017euriranjem", _s20_44, _s57_, _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Dobavlja\u010d", "company_gateway", "Sustav online pla\u0107anja", _s16_138, "Sustavi online pla\u0107anja", _s19_29, "Novi sustav online pla\u0107anja", _s20_45, "Uredi sustav online pla\u0107anja", _s23_23, "Uspje\u0161no stvoren Sustav online pla\u0107anja", _s23_24, "Uspje\u0161no a\u017euriran sustav online pla\u0107anja", _s24_22, "Uspje\u0161no arhiviran sustav online pla\u0107anja", _s23_25, "Uspje\u0161no izbrisan sustav online pla\u0107anja", _s24_23, "Uspje\u0161no vra\u0107en sustav online pla\u0107anja", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Nastavi ure\u0111ivati", "discard_changes", "Discard Changes", "default_value", "Zadana vrijednost", "disabled", "Onemogu\u0107eno", "currency_format", "Format valute", _s21_48, "Prvi dan u tjednu", _s23_26, "Prvi mjesec u godini", "sunday", "Nedjelja", "monday", "Ponedjeljak", "tuesday", "Utorak", "wednesday", "Srijeda", "thursday", "\u010cetvrtak", "friday", "Petak", "saturday", "Subota", "january", "Sije\u010danj", "february", "Velja\u010da", "march", "O\u017eujak", "april", "Travanj", "may", "Svibanj", "june", "Lipanj", "july", "Srpanj", "august", "Kolovoz", "september", "Rujan", "october", "Listopad", "november", "Studeni", "december", "Prosinac", "symbol", "Simbol", "ocde", "Code", "date_format", "Format datuma", "datetime_format", "Format vremena", "military_time", "24 satno vrijeme", _s18_65, "24-satni prikaz", "send_reminders", "Po\u0161alji podsjetnike", "timezone", "Vremenska zona", _s19_30, "Filtrirano po Projektu", _s17_85, "Filtrirano po grupi", _s19_32, "Filtrirano po ra\u010dunu", _s18_66, "Filtrirano po klijentu", _s18_68, "Filtrirano po dobavlja\u010du", "group_settings", "Postavke grupe", "group", "Group", "groups", "Grupe", "new_group", "Nova grupa", "edit_group", "Uredi grupu", "created_group", "Grupa je uspje\u0161no stvorena", "updated_group", "Grupa je uspje\u0161no a\u017eurirana", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Prenesi logo", "uploaded_logo", "Uspje\u0161no preneseni logo", "logo", "Logo", "saved_settings", "Postavke uspje\u0161no spremljene", _s16_142, _s18_91, "device_settings", "Postavke ure\u0111aja", "defaults", "Zadano", "basic_settings", "Osnovne postavke", _s17_87, _s17_120, "company_details", "Detalji poduze\u0107a", "user_details", _s17_121, "localization", "Lokalizacija", "online_payments", "Online uplate", "tax_rates", "Porezne stope", "notifications", "Obavijesti", "import_export", "Uvoz | Izvoz", "custom_fields", _s17_122, "invoice_design", "Dizajn ra\u010duna", "buy_now_buttons", "Buy Now Buttons", "email_settings", _s16_215, _s23_28, "Predlo\u0161ci & podsjetnici", _s22_30, "Kreditne kartice i banke", _s19_34, _s22_53, "price", "Cijena", "email_sign_up", "Registrirajte se e-po\u0161tom", "google_sign_up", "Registrirajte se putem Google ra\u010duna", _s27_25, "Hvala vam na kupnji!", "redeem", "Redeem", "back", "Natrag", "past_purchases", "Pro\u0161le kupnje", _s19_36, _s18_92, "pro_plan", "Pro plan", "enterprise_plan", "Enterprise Plan", "count_users", _s16_216, "upgrade", "Nadogradi", _s25_32, _s18_93, _s24_25, "Molimo unesite prezime", _s33_14, "Molimo vas da se slo\u017eite s uvjetima pru\u017eanja usluge i pravilima o privatnosti za stvaranje ra\u010duna.", "i_agree_to_the", "I agree to the", _s21_79, "uvjetima pru\u017eanja usluge", _s19_54, "politika privatnosti", _s16_144, "Uvjeti kori\u0161tenja usluge", "privacy_policy", "Privacy Policy", "sign_up", "Prijava", "account_login", _s18_94, "view_website", "Pogledajte web stranicu", "create_account", "Otvori ra\u010dun", "email_login", "Prijava putem e-po\u0161te", "create_new", "Create New", _s18_70, "Nije odabran nijedan zapis", _s21_51, "Spremite ili poni\u0161tite svoje promjene", "download", "Preuzmi", _s27_26, _s27_44, "take_picture", "Fotografiraj", "upload_file", "Prenesi datoteku", "document", "Document", "documents", "Dokumenti", "new_document", "Novi Dokument", "edit_document", "Uredi Dokument", _s17_89, "Uspje\u0161no preneseni dokument", _s16_146, "Uspje\u0161no a\u017eurirani dokument", _s17_90, "Uspje\u0161no arhiviran dokument", _s16_147, "Uspje\u0161no izbrisani dokument", _s17_91, "Uspje\u0161no vra\u0107eni dokument", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "Nema povijesti", "expense_date", "Datum tro\u0161ka", "pending", "Na \u010dekanju", _s16_148, "Evidentirano", _s16_149, "U obradi", _s16_150, "Fakturirano", "converted", "Konvertirano", _s24_27, _s24_39, "exchange_rate", "Te\u010daj", _s16_151, "Konvertiraj valutu", "mark_paid", "Ozna\u010di uplatu", "category", "Kategorija", "address", "Adresa", "new_vendor", "Novi dobavlja\u010d", "created_vendor", "Uspje\u0161no kreiran dobavlja\u010d", "updated_vendor", "Uspje\u0161no a\u017euriran dobavlja\u010d", "archived_vendor", "Uspje\u0161no arhiviran dobavlja\u010d", "deleted_vendor", "Uspje\u0161no obrisan dobavlja\u010d", "restored_vendor", _s28_22, _s16_152, "Uspje\u0161no arhivirano :count dobavlja\u010da", "deleted_vendors", "Uspje\u0161no obrisano :count dobavlja\u010da", _s16_153, _s36_5, "new_expense", "Novi tro\u0161ak", "created_expense", "Uspje\u0161no kreiran tro\u0161ak", "updated_expense", "Uspje\u0161no a\u017euriran tro\u0161ak", _s16_154, "Uspje\u0161no arhiviran tro\u0161ak", "deleted_expense", _s23_35, _s16_155, _s29_16, _s17_93, "Uspje\u0161no arhivirani tro\u0161kovi", _s16_156, _s23_35, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Dizajn", _s21_52, "Pronala\u017eenje zapisa nije uspjelo", "invoiced", "Fakturirano", "logged", "Logirano", "running", "Pokrenuto", "resume", "Nastavi", "task_errors", "Molimo korigirajte preklopna vremena", "start", "Po\u010detak", "stop", "Zavr\u0161etak", "started_task", _s25_34, "stopped_task", "Uspje\u0161no zavr\u0161en zadatak", "resumed_task", _s25_36, "now", "Sada", _s16_157, _s16_158, "timer", "\u0160toperica", "manual", "Ru\u010dno", "budgeted", "Bud\u017eet", "start_time", "Po\u010detno vrijeme", "end_time", "Zavr\u0161no vrijeme", "date", "Datum", "times", "Vremena", "duration", "Trajanje", "new_task", "Novi zadatak", "created_task", "Uspje\u0161no kreiran zadatak", "updated_task", "Uspje\u0161no a\u017euriran zadatak", "archived_task", "Uspje\u0161no arhiviran zadatak", "deleted_task", "Uspje\u0161no obrisan zadatak", "restored_task", "Uspje\u0161no obnovljen zadatak", "archived_tasks", "Uspje\u0161no arhivirano :count zadataka", "deleted_tasks", "Uspje\u0161no obrisano :count zadataka", "restored_tasks", _s34_14, _s19_38, _s18_93, "budgeted_hours", "Dogovoreno radnih sati", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "Novi projekt", _s27_30, "Hvala vam \u0161to koristite na\u0161u aplikaciju!", "if_you_like_it", "Ako vam se svi\u0111a, molim vas", "click_here", "kliknite ovdje", _s18_74, "Kliknite ovdje", "to_rate_it", "da bi ju ocijenili.", "average", "Prosjek", "unapproved", "Neodobreno", _s30_11, "Potvrdite autenti\u010dnost da biste promijenili ovu postavku", "locked", "Zaklju\u010dano", "authenticate", "Provjera autenti\u010dnosti", _s19_40, "Molimo provjerite autenti\u010dnost", _s24_28, "Biometrijska provjera autenti\u010dnosti", "footer", "Podno\u017eje", "compare", "Usporedi", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Prijavite se s Google ra\u010dunom", "today", "Danas", "custom_range", "Prilago\u0111eni Raspon", "date_range", "Raspon datuma", "current", "Trenutni", "previous", "Prija\u0161nji", "current_period", "Teku\u0107e Razdoblje", _s17_98, "Razdoblje usporedbe", "previous_period", "Prethodno razdoblje", "previous_year", "Prethodna godina", "compare_to", "Usporedi s", "last7_days", "Zadnjih 7 dana", "last_week", "Pro\u0161li tjedan", "last30_days", "Zadnjih 30 dana", "this_month", "Ovaj mjesec", "last_month", "Pro\u0161li mjesec", "this_year", "Ova godina", "last_year", "Pro\u0161la godina", "custom", "Prilago\u0111eno", _s16_162, "Kloniraj u Ra\u010dune", "clone_to_quote", "Kloniraj u Ponude", "clone_to_credit", "Clone to Credit", "view_invoice", "Pregled ra\u010duna", "convert", "Pretvori", "more", "Vi\u0161e", "edit_client", "Uredi klijenta", "edit_product", "Uredi proizvod", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi ponudu", "edit_payment", "Uredi uplatu", "edit_task", "Uredi zadatak", "edit_expense", "Uredi tro\u0161ak", "edit_vendor", _s16_217, "edit_project", "Uredi projekt", _s22_, "Uredi redovne tro\u0161kove", _s20_47, "Uredi ponavljaju\u0107u ponudu", "billing_address", "Adresa ra\u010duna", _s16_164, _s16_165, "total_revenue", "Ukupni prihod", "average_invoice", "Prosje\u010dni ra\u010dun", "outstanding", "Dospijeva", "invoices_sent", _s20_56, "active_clients", _s16_218, "close", "Zatvori", "email", "E-po\u0161ta", "password", "Zaporka", "url", "URL", "secret", "Secret", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Poredak", "search", "Pretraga", "active", "Aktivan", "archived", "Arhivirano", "deleted", "Obrisano", "dashboard", "Kontrolna plo\u010da", "archive", "Arhiva", "delete", "Obri\u0161i", "restore", "Obnovi", _s16_166, "Osvje\u017eavanje zavr\u0161eno", _s23_29, "Molimo upi\u0161ite va\u0161u email adresu", _s26_25, "Molimo upi\u0161ite va\u0161u zaporku", _s21_55, "Molimo unesite URL", _s26_27, "Molimo upi\u0161ite \u0161ifru proizvoda", "ascending", "Ascending", "descending", "Descending", "save", "Pohrani", _s17_100, "Dogodila se pogre\u0161ka", "paid_to_date", "Pla\u0107eno na vrijeme", "balance_due", "Stanje duga", "balance", "Potra\u017eivanje", "overview", "Pregled", "details", "Detalji", "phone", "Telefon", "website", "Web mjesto", "vat_number", "OIB", "id_number", "ID broj", "create", "Kreiraj", _s19_42, "Kopirao :value u me\u0111uspremnik", "error", "Gre\u0161ka", _s16_168, "Pokretanje nije uspjelo", "contacts", "Kontakti", "additional", "Dodatno", "first_name", "Ime", "last_name", "Prezime", "add_contact", "Dodaj kontakt", "are_you_sure", _s18_95, "cancel", "Odustani", "ok", "Ok", "remove", "Remove", _s16_170, "Email adresa je pogre\u0161na", "product", "Proizvod", "products", "Proizvodi", "new_product", "Novi proizvod / usluga", "created_product", "Proizvod je uspje\u0161no kreiran", "updated_product", "Proizvod je uspje\u0161no a\u017euriran", _s16_172, "Proizvod je uspje\u0161no arhiviran", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Proizvod", "notes", "Bilje\u0161ke", "cost", "Cijena", "client", "Klijent", "clients", "Klijenti", "new_client", "Novi klijent", "created_client", "Klijent je uspje\u0161no kreiran", "updated_client", "Uspje\u0161no a\u017euriranje klijenta", "archived_client", "Uspje\u0161no arhiviran klijent", _s16_175, "Uspje\u0161no arhivirano :count klijenata", "deleted_client", "Uspje\u0161no obrisan klijent", "deleted_clients", "Uspje\u0161no obrisano :count klijenata", "restored_client", "Uspje\u0161no obnovljen klijent", _s16_176, _s36_7, "address1", "Ulica i ku\u0107ni broj", "address2", "Kat/Oznaka", "city", "Grad", "state", "\u017dupanija", "postal_code", "Po\u0161tanski broj", "country", "Zemlja", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Novi ra\u010dun", "created_invoice", "Uspje\u0161no kreiran ra\u010dun", "updated_invoice", "Uspje\u0161no a\u017euriran ra\u010dun", _s16_177, "Uspje\u0161no arhiviran ra\u010dun", "deleted_invoice", "Uspje\u0161no obrisan ra\u010dun", _s16_178, "Uspje\u0161no obnovljen ra\u010dun", _s17_104, "Uspje\u0161no arhivirano :count ra\u010duna", _s16_179, "Uspje\u0161no obrisano :count ra\u010duna", _s17_105, _s37_12, "emailed_invoice", "Ra\u010dun uspje\u0161no poslan e-po\u0161tom", "emailed_payment", _s28_53, "amount", "Iznos", "invoice_number", "Broj ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "Broj narud\u017ebe", "terms", "Uvjeti", "public_notes", "Javne bilje\u0161ke", "private_notes", "Privatne bilje\u0161ke", "frequency", "Frekvencija", "start_date", "Po\u010detni datum", "end_date", "Zavr\u0161ni datum", "quote_number", "Broj ponude", "quote_date", "Datum ponude", "valid_until", "Vrijedi do", "items", "Stavke", "partial_deposit", "Djelomi\u010dno/Depozit", "description", "Opis", "unit_cost", "Jedini\u010dna cijena", "quantity", "Koli\u010dina", "add_item", "Dodaj stavku", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Ukupan iznos", "pdf", "PDF", "due_date", "Datum dospije\u0107a", _s16_180, _s16_181, "status", "Status", _s17_106, "Status ra\u010duna", "quote_status", "Status ponude", _s22_31, _s30_24, _s22_33, "Pritisnite + za dodavanje vremena", "count_selected", ":count odabrano", "total", "Sveukupno", "percent", "Percent", "edit", "Uredi", "dismiss", "Odbaci", _s20_49, "Molimo odaberite datum", _s22_34, _s25_44, _s24_30, "Molimo odaberite ra\u010dun", "task_rate", "Satnica", "settings", "Postavke", "language", "Jezik", "currency", "Currency", "created_at", "Datum kreiranja", "created_on", "Stvoreno u", "updated_at", "A\u017eurirano", "tax", "Porez", _s30_13, "Molimo upi\u0161ite broj ra\u010duna", _s27_34, "Molimo upi\u0161ite broj ponude", "past_due", "Past Due", "draft", "Skica", "sent", "Poslano", "viewed", "Pregledano", "approved", "Odobreno", "partial", "Partial/Deposit", "paid", "Pla\u0107eno", "mark_sent", "Ozna\u010di kao poslano", _s22_36, "Ra\u010dun je uspje\u0161no ozna\u010den kao poslan", _s22_37, _s35_10, _s23_31, "Ra\u010duni su uspje\u0161no ozna\u010deni kao poslani", _s23_32, _s36_9, "done", "Dovr\u0161eno", _s37_13, "Molimo upi\u0161ite ime klijenta ili kontakta", "dark_mode", "Tamni prikaz", _s27_36, "Ponovno pokrenite aplikaciju za primjenu promjena", "refresh_data", "Osvje\u017ei podatke", "blank_contact", "Prazan kontakt", "activity", "Aktivnost", _s16_182, "Nije prona\u0111en zapis", "clone", "Kloniraj", "loading", "Loading", "industry", "Industrija", "size", "Veli\u010dina", "payment_terms", "Uvjeti pla\u0107anja", "payment_date", "Datum uplate", "payment_status", "Status uplate", _s16_184, "U tijeku", _s16_185, "Poni\u0161teno", _s16_186, "Neuspje\u0161no", _s16_187, "Zavr\u0161eno", _s16_188, "Djelimi\u010dni povrat", _s16_189, "Povrat", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Neto", "client_portal", _s17_123, "show_tasks", "Prika\u017ei zadatke", "email_reminders", "Email podsjetnici", "enabled", "Enabled", "recipients", "Primatelji", "initial_email", "Prvi Email", "first_reminder", "Prvi podsjetnik", "second_reminder", _s16_219, "third_reminder", _s16_220, "reminder1", "Prvi podsjetnik", "reminder2", _s16_219, "reminder3", _s16_220, "template", "Predlo\u017eak", "send", "Po\u0161alji", "subject", "Naslov", "body", "Tijelo", "send_email", "Slanje e-po\u0161te", "email_receipt", _s31_15, "auto_billing", "Automatska naplata", "button", "Gumb", "preview", "Preview", "customize", "Prilagodi", "history", "Povijest", "payment", "Uplata", "payments", "Uplate", "refunded", "Povrat", "payment_type", "Payment Type", _s21_57, _s21_81, "enter_payment", "Unesi uplatu", "new_payment", "Unesi uplatu", "created_payment", "Uspje\u0161no kreirana uplata", "updated_payment", "Uspje\u0161no a\u017eurirana uplata", _s16_190, "Uspje\u0161no arhivirana uplata", "deleted_payment", "Uspje\u0161no obrisana uplata", _s16_191, "Uspje\u0161no obnovljena uplata", _s17_109, "Uspje\u0161no arhivirana :count uplata", _s16_192, "Uspje\u0161no obrisano :count uplata", _s17_110, _s37_15, "quote", "Ponuda", "quotes", "Ponude", "new_quote", "Nova ponuda", "created_quote", "Ponuda uspje\u0161no kreirana", "updated_quote", "Ponuda je uspje\u0161no a\u017eurirana", "archived_quote", "Ponuda uspje\u0161no arhivirana", "deleted_quote", "Ponuda uspje\u0161no obrisana", "restored_quote", "Uspje\u0161no obnovljena ponuda", "archived_quotes", "Uspje\u0161no arhivirano :count ponuda", "deleted_quotes", "Uspje\u0161no obrisano :count ponuda", "restored_quotes", _s35_13, "expense", "Tro\u0161ak", "expenses", "Tro\u0161kovi", "vendor", "Dobavlja\u010d", "vendors", "Dobavlja\u010di", "task", "Task", "tasks", "Zadaci", "project", "Projekt", "projects", "Projekti", "activity_1", _s30_25, "activity_2", _s32_9, "activity_3", _s30_26, "activity_4", _s28_56, "activity_5", _s29_39, "activity_6", ":user poslao e-po\u0161tom ra\u010dun :invoice za :contact", "activity_7", ":contact pregledao ra\u010dun :invoice", "activity_8", _s30_27, "activity_9", _s27_49, "activity_10", ":contact upisao uplatu :payment za :invoice", "activity_11", _s30_28, "activity_12", _s30_29, "activity_13", _s29_40, "activity_14", _s27_50, "activity_15", _s29_41, "activity_16", _s30_30, "activity_17", _s28_57, "activity_18", ":user kreirao ponudu :quote", "activity_19", ":user a\u017eurirao ponudu :quote", "activity_20", ":user poslao e-po\u0161tom ponudu :quote za :contact", "activity_21", ":contact pregledao ponudu :quote", "activity_22", ":user arhivirao ponudu :quote", "activity_23", ":user obrisao ponudu :quote", "activity_24", ":user obnovio ponudu :quote", "activity_25", _s28_58, "activity_26", _s30_31, "activity_27", _s29_42, "activity_28", _s28_59, "activity_29", ":contact odobrio ponudu :quote", "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s29_43, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", "Korisnik :user je a\u017eurirao radni nalog :ticket", "activity_49", "Korisnik :user je zatvorio radni nalog :ticket", "activity_50", "Korisnik :user je spojio radni nalog :ticket", "activity_51", "Korisnik :user je razdijelio radni nalog :ticket", "activity_52", "Kontakt :contact je otvorio radni nalog :ticket", "activity_53", "Kontakt :contact je ponovno otvorio radni nalog :ticket", "activity_54", "Korisnik :user je ponovno otvorio radni nalog :ticket", "activity_55", "Kontakt :contact je odgovorio na radni nalog :ticket", "activity_56", "Korisnik :user je pregledao radni nalog :ticket", "activity_57", "Sustav nije uspio poslati ra\u010dun e-po\u0161tom :invoice", "activity_58", ":user je stornirao ra\u010dun :invoice", "activity_59", ":user otkazao ra\u010dun :invoice", "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Ponuda uspje\u0161no poslana e-po\u0161tom", "emailed_credit", _s27_48, _s20_51, "Ponuda je uspje\u0161no ozna\u010dena kao poslana", _s21_59, _s34_15, "expired", "Isteklo", "all", "Svi", "select", "Odaberi", _s22_38, "Dugo pritisnite za vi\u0161estruku odabir", "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Prilago\u0111ena vrijednost 3", "custom_value4", "Prilago\u0111ena vrijednost 4", _s18_75, "Prilago\u0111eni stil e-po\u0161te", _s24_35, "Prilago\u0111ena poruka nadzorne plo\u010de", _s29_31, "Prilago\u0111ena poruka nepla\u0107enog ra\u010duna", _s27_41, "Prilago\u0111ena poruka pla\u0107enog ra\u010duna", _s31_10, "Prilago\u0111ena poruka ne odobrene ponude", "lock_invoices", "Zaklju\u010daj ra\u010dune", "translations", "Prijevodi", _s19_43, "Uzorak broja zadatka", _s19_45, "Broja\u010d broja zadatka", _s22_40, "Uzorak broja tro\u0161kova", _s22_42, "Broja\u010d broja tro\u0161kova", _s21_60, "Uzorak broja dobavlja\u010da", _s21_62, "Broja\u010d brojeva dobavlja\u010da", _s21_64, "Uzorak broja radnog naloga", _s21_66, "Broja\u010d broj radnog naloga", _s22_44, "Uzorak broja transakcije", _s22_46, "Broja\u010d broja transakcije", _s22_48, "Uzorak broja ra\u010duna", _s22_50, "Broja\u010d ra\u010duna", _s20_52, "Uzorak broja ponude", _s20_54, "Broja\u010d ponuda", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, "Poni\u0161ti datum broja\u010da", "counter_padding", "Ispuna broja broja\u010da", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Prikaz u tablici", "show_list", "Prikaz u listi", "client_city", "Grad klijenta", "client_state", "\u017dupanija klijenta", "client_country", "Dr\u017eava klijenta", _s16_193, "Klijent je aktivan", "client_balance", "Stanje ra\u010duna klijenta", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tip", "invoice_amount", "Iznos ra\u010duna", _s16_197, "Datum valute", "tax_rate1", "Porezna stopa 1", "tax_rate2", "Porezna stopa 2", "tax_rate3", "Porezna stopa 3", "auto_bill", "Auto ra\u010dun", "archived_at", "Arhivirano u", "has_expenses", "Ima tro\u0161kove", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Izbrisan", "vendor_city", "Grad dobavlja\u010da", "vendor_state", "\u017dupanija dobavlja\u010da", "vendor_country", "Dr\u017eava dobavlja\u010da", "is_approved", "Odobreno je", "tax_name", "Ime porezne stope", "tax_amount", "Iznos poreza", "tax_paid", "Pla\u0107eno poreza", "payment_amount", "Iznos uplate", "age", "Dospije\u0107e", "is_running", "Is Running", "time_log", "Dnevnik vremena", "bank_id", "Banka", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "cs", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importovat data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Profi", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", "Mus\xed b\xfdt v\u011bt\u0161\xed ne\u017e nula a m\xe9n\u011b ne\u017e sou\u010det", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Umo\u017enit", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Zm\u011bnit na fakturu", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Faktura\u010dn\xed \xfaloha", "invoice_expense", "Fakturovat n\xe1klady", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skr\xfdt", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Sloupec", "sample", "Vzorek", "map_to", "Map To", "import", "Importovat", _s25_1, _s29_1, "select_file", "Pros\xedm zvolte soubor", _s16_32, _s16_33, "csv_file", "CSV soubor", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Dodac\xed list", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u010c\xe1ste\u010dn\u011b splaceno", "invoice_total", "Celkov\xe1 \u010d\xe1stka", "quote_total", "Celkem", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV k\xf3d", "client_name", "Jm\xe9no klienta", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "M\xe1 b\xfdt fakturov\xe1n", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, "Prvn\xed den v m\u011bs\xedci", _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Pravideln\xe1 faktura", _s18_29, "Pravideln\xe9 faktury", _s21_25, "Nov\xe1 pravideln\xe1 faktura", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Pravideln\xe1 faktura \xfasp\u011b\u0161n\u011b archivov\xe1na", _s25_14, "Pravideln\xe1 faktura smaz\xe1na", _s25_15, _s38_7, _s26_6, "Pravideln\xe1 faktura obnovena", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Ukl\xe1dat platebn\xed \xfadaje", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hodiny", "statement", "Statement", "taxes", "Dan\u011b", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Komu", "health_check", "Health Check", "payment_type_id", "Typ platby", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Nadch\xe1zej\xedc\xed faktury", _s17_43, _s17_44, "recent_payments", "Posledn\xed platby", "upcoming_quotes", "Nadch\xe1zej\xedc\xed nab\xeddky", "expired_quotes", "Pro\u0161l\xe9 nab\xeddky", "create_client", "Create Client", "create_invoice", "Vytvo\u0159it fakturu", "create_quote", "Vytvo\u0159it nab\xeddku", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Smazat nab\xeddku", "update_invoice", "Update Invoice", "delete_invoice", "Smazat fakturu", "update_client", "Update Client", "delete_client", "Smazat klienta", "delete_payment", "Smazat platbu", "update_vendor", "Update Vendor", "delete_vendor", "Smazat dodavatele", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Smazat n\xe1klad", "create_task", "Vytvo\u0159it \xfalohu", "update_task", "Update Task", "delete_task", "Smazat \xfalohu", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Zdarma", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokeny", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokeny", "new_token", "New Token", "edit_token", "Editovat token", "created_token", "Token \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_token", "Token \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", "archived_token", "Token \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_token", "Token \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Poslat fakturu emailem", "email_quote", "Odeslat nab\xeddku emailem", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Editovat platebn\xed podm\xednky", _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Po\u010det kreditu", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Pr\xe1va", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count faktura odesl\xe1na", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Smazat \xfa\u010det", _s22_19, "Varov\xe1n\xed: Toto permanentn\u011b odstran\xed V\xe1\u0161 \xfa\u010det. Tato akce je nevratn\xe1.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Hlavi\u010dka", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, "Pravideln\xe9 nab\xeddky", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "Datum kreditu", "credit", "Kredit", "credits", "Kredity", "new_credit", "Zadat kredit", "edit_credit", "Edit Credit", "created_credit", "Kredit \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_credit", _s27_19, "archived_credit", "Kredit \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_credit", "Kredit \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_credit", _s27_21, "restored_credit", "Kredit \xfasp\u011b\u0161n\u011b obnoven", _s16_71, ":count kredit\u016f bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_credits", ":count kredit\u016f bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s16_72, _s36_3, "current_version", "Sou\u010dasn\xe1 verze", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "V\xedce informac\xed", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nov\xe1 firma", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Resetovat", "number", "Number", "export", "Export", "chart", "Graf", "count", "Count", "totals", "Celkem", "blank", "Blank", "day", "Day", "month", "M\u011bs\xedc", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Seskupen\xe9 podle", "credit_balance", "Z\u016fstatek kreditu", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "P\u0159idat firmu", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Pomoc", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Zpr\xe1va", "from", "Od", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Dokumentace", "contact_us", "Contact Us", "subtotal", "Mezisou\u010det", "line_total", "Celkem", "item", "Polo\u017eka", "credit_email", "Credit Email", "iframe_url", "Web", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Ano", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Zobrazit", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "U\u017eivatel", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Nastaven\xed dan\xed", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Obnovit va\u0161e heslo", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Rozvrh", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Email pro fakturu", "payment_email", "Email pro platbu", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Email pro nab\xeddku", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administr\xe1tor", _s18_58, "Povolit u\u017eivatel\u016fm spravovat dal\u0161\xed u\u017eivatele, m\u011bnit nastaven\xed a v\u0161echny z\xe1znamy", "user_management", "Spr\xe1va u\u017eivatel\u016f", "users", "U\u017eivatel\xe9", "new_user", "Nov\xfd u\u017eivatel", "edit_user", "Upravit u\u017eivatele", "created_user", _s25_22, "updated_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", "archived_user", "U\u017eival \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b smaz\xe1n", "removed_user", _s25_25, "restored_user", "U\u017eivatel \xfasp\u011b\u0161n\u011b obnoven", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Obecn\xe9 nastaven\xed", "invoice_options", "Mo\u017enosti faktury", _s17_70, "Skr\xfdt Zaplaceno ke dni", _s22_27, 'Zobrazit na faktu\u0159e "Zaplaceno ke dni" pouze kdy\u017e p\u0159ijde platba.', _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Zobrazit hlavi\u010dku", _s16_125, "Zobrazit pati\u010dku", "first_page", "prvn\xed str\xe1nka", "all_pages", "v\u0161echny str\xe1nky", "last_page", "posledn\xed str\xe1nka", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Z\xe1kladn\xed barva", "secondary_color", "Druh\xe1 barva", "page_size", "Page Size", "font_size", "Velikost fontu", "quote_design", "Quote Design", "invoice_fields", "Pole na faktu\u0159e", "product_fields", "Product Fields", "invoice_terms", "Faktura\u010dn\xed podm\xednky", "invoice_footer", "Pati\u010dka faktury", "quote_terms", "Podm\xednky nab\xeddky", "quote_footer", "Pati\u010dka nab\xeddky", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, "Automaticky zkonvertovat nab\xeddku na fakturu po schv\xe1len\xed klientem.", _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "t\xfddn\u011b", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "M\u011bs\xed\u010dn\u011b", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Ro\u010dn\u011b", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Pou\u017e\xedt dan\u011b", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Pole produktu", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Voliteln\xe9 CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, "Umo\u017en\xed V\xe1m nastavit heslo pro ka\u017ed\xfd kontakt. Pokud heslo nastav\xedte, tak kontakt ho bude pro zobrazen\xed faktury v\u017edy pou\u017e\xedt.", "authorization", "Schv\xe1len\xed", "subdomain", "subdom\xe9na", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "S pozdravem,", _s24_21, "P\u0159idejte si mikrozna\u010dky schema.org do emailu a usnadn\u011bte tak va\u0161im klient\u016fm platby.", "plain", "Prost\xfd text", "light", "Sv\u011btl\xfd", "dark", "Tmav\xfd", "email_design", "Vzhled emailu", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Umo\u017enit mikrozna\u010dky", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Zm\u011bnit adresu", _s19_28, "Zm\u011bnit adresu klienta podle poskytnut\xfdch detail\u016f", "rate", "Sazba", "tax_rate", "Da\u0148ov\xe1 sazba", "new_tax_rate", "Nov\xe1 sazba dan\u011b", "edit_tax_rate", "Editovat da\u0148ovou sazbu", _s16_133, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b vytvo\u0159ena", _s16_134, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", _s17_82, "Da\u0148ov\xe1 sazba \xfasp\u011b\u0161n\u011b archivov\xe1na", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Automaticky p\u0159edvyplnit produkty", _s18_64, "V\xfdb\u011br produktu automaticky vypln\xed popis a cenu", "update_products", "Automaticky aktualizovat produkty", _s20_44, "Zm\u011bna na faktu\u0159e automaticky aktualizuje katalog produkt\u016f", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Nepovolen", "currency_format", "Currency Format", _s21_48, "Prvn\xed den v t\xfddnu", _s23_26, "Prvn\xed m\u011bs\xedc v roce", "sunday", "Ned\u011ble", "monday", "Pond\u011bl\xed", "tuesday", "\xdater\xfd", "wednesday", "St\u0159eda", "thursday", "\u010ctvrtek", "friday", "P\xe1tek", "saturday", "Sobota", "january", "Leden", "february", "\xdanor", "march", "B\u0159ezen", "april", "Duben", "may", "Kv\u011bten", "june", "\u010cerven", "july", "\u010cervenc", "august", "Srpen", "september", "Z\xe1\u0159\xed", "october", "\u0158\xedjen", "november", "Listopad", "december", "Prosinec", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 hodinov\xfd \u010das", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Nastaven\xed produktu", "device_settings", "Device Settings", "defaults", "V\xfdchoz\xed", "basic_settings", "Z\xe1kladn\xed nastaven\xed", _s17_87, "Pokro\u010dil\xe9 nastaven\xed", "company_details", "Detaily firmy", "user_details", "U\u017eivatelsk\xe9 detaily", "localization", "Lokalizace", "online_payments", "Online platby", "tax_rates", "Sazby dan\u011b", "notifications", "Ozn\xe1men\xed", "import_export", "Import | Export", "custom_fields", "Voliteln\xe1 pole", "invoice_design", "Vzhled faktur", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Nastaven\xed emailu", _s23_28, "\u0160ablony & P\u0159ipom\xednky", _s22_30, _s20_46, _s19_34, "Vizualizace dat", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Obchodn\xed podm\xednky", "privacy_policy", "Privacy Policy", "sign_up", "Zaregistrovat se", "account_login", "P\u0159ihl\xe1\u0161en\xed k \xfa\u010dtu", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "St\xe1hnout", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Datum n\xe1kladu", "pending", "Nevy\u0159\xedzen\xfd", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Zkonvertov\xe1no", _s24_27, _s24_39, "exchange_rate", "M\u011bnov\xfd kurz", _s16_151, "Zkonvertovat m\u011bnu", "mark_paid", "Mark Paid", "category", "Category", "address", "Adresa", "new_vendor", "Nov\xfd dodavatel", "created_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b aktualizov\xe1n", "archived_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b smaz\xe1n", "restored_vendor", "Dodavatel \xfasp\u011b\u0161n\u011b obnoven", _s16_152, ":count dodavatel\u016f bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_vendors", ":count dodavatel\u016f bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s16_153, _s36_5, "new_expense", "Enter Expense", "created_expense", "N\xe1klad \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_expense", "N\xe1klad \xfasp\u011b\u0161n\u011b zm\u011bn\u011bn", _s16_154, "N\xe1klad \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_expense", _s21_82, _s16_155, "N\xe1klady \xfasp\u011b\u0161n\u011b obnoveny", _s17_93, "N\xe1klady \xfasp\u011b\u0161n\u011b archivov\xe1ny", _s16_156, _s21_82, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Fakturov\xe1no", "logged", "P\u0159ihl\xe1\u0161en", "running", "Be\u017e\xedc\xed", "resume", "Pokra\u010dovat", "task_errors", "Pros\xedm opravte p\u0159ekr\xfdvaj\xedc\xed se \u010dasy", "start", "Za\u010d\xe1tek", "stop", "Konec", "started_task", _s25_34, "stopped_task", "\xdaloha \xfasp\u011b\u0161n\u011b zastavena", "resumed_task", _s25_36, "now", "Nyn\xed", _s16_157, _s16_158, "timer", "\u010casova\u010d", "manual", "Manu\xe1ln\xed", "budgeted", "Budgeted", "start_time", "Po\u010d\xe1te\u010dn\xed \u010das", "end_time", "\u010cas konce", "date", "Datum", "times", "\u010casy", "duration", "Trv\xe1n\xed", "new_task", "Nov\xfd \xfaloha", "created_task", "\xdaloha \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_task", "\xdaloha \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", "archived_task", "\xdaloha \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_task", "\xdaloha \xfasp\u011b\u0161n\u011b smaz\xe1na", "restored_task", "\xdaloha \xfasp\u011b\u0161n\u011b obnovena", "archived_tasks", "\xdasp\u011b\u0161n\u011b archivov\xe1no :count \xfaloh", "deleted_tasks", "\xdasp\u011b\u0161n\u011b smaz\xe1no :count \xfaloh", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "klikn\u011bte zde", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Pati\u010dka", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Tento m\u011bs\xedc", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Voliteln\xe9", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Zobrazit fakturu", "convert", "Convert", "more", "More", "edit_client", "Editovat klienta", "edit_product", "Upravit produkt", "edit_invoice", "Editovat fakturu", "edit_quote", "Upravit nab\xeddku", "edit_payment", "Editovat platbu", "edit_task", "Editovat \xfalohu", "edit_expense", "Editovat n\xe1klad", "edit_vendor", "Editovat dodavatele", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Faktura\u010dn\xed adresa", _s16_164, _s16_165, "total_revenue", "Celkov\xe9 p\u0159\xedjmy", "average_invoice", "Pr\u016fm\u011brn\xe1 faktura", "outstanding", "Nezaplaceno", "invoices_sent", ":count faktur odesl\xe1no", "active_clients", "aktivn\xed klienti", "close", "Zav\u0159\xedt", "email", "Email", "password", "Heslo", "url", "URL", "secret", "Secret", "name", "Jm\xe9no", "logout", "Odhl\xe1sit se", "login", "P\u0159ihl\xe1\u0161en\xed", "filter", "Filtr", "sort", "Sort", "search", "Vyhledat", "active", "Aktivn\xed", "archived", "Archivov\xe1no", "deleted", "Smaz\xe1no", "dashboard", "Hlavn\xed panel", "archive", "Archivovat", "delete", "Smazat", "restore", "Obnovit", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Ulo\u017eit", _s17_100, _s17_101, "paid_to_date", "Zaplaceno ke dni", "balance_due", "Zb\xfdv\xe1 zaplatit", "balance", "Z\u016fstatek", "overview", "Overview", "details", "Detaily", "phone", "Telefon", "website", "Web", "vat_number", "DI\u010c", "id_number", "I\u010cO", "create", "Vytvo\u0159it", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakty", "additional", "Additional", "first_name", "Jm\xe9no", "last_name", "P\u0159\xedjmen\xed", "add_contact", "P\u0159idat kontakt", "are_you_sure", "Jste si jisti?", "cancel", "Zru\u0161it", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Produkt", "products", "Produkty", "new_product", "Nov\xfd produkt", "created_product", "Produkt \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_product", "Produkt \xfasp\u011b\u0161n\u011b aktualizov\xe1n", _s16_172, "Produkt \xfasp\u011b\u0161n\u011b archivov\xe1n", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Product", "notes", "Pozn\xe1mky", "cost", "Cena", "client", "Klient", "clients", "Klienti", "new_client", "Nov\xfd klient", "created_client", "Klient \xfasp\u011b\u0161n\u011b vytvo\u0159en", "updated_client", "Klient \xfasp\u011b\u0161n\u011b aktualizov\xe1n", "archived_client", "Klient \xfasp\u011b\u0161n\u011b archivov\xe1n", _s16_175, ":count klient\u016f bylo \xfasp\u011b\u0161n\u011b\xa0archivov\xe1no", "deleted_client", "Klient \xfasp\u011b\u0161n\u011b\xa0smaz\xe1n", "deleted_clients", ":count klient\u016f bylo \xfasp\u011b\u0161n\u011b\xa0smaz\xe1no", "restored_client", "Klient \xfasp\u011b\u0161n\u011b obnoven", _s16_176, _s36_7, "address1", "Ulice", "address2", "Pokoj", "city", "M\u011bsto", "state", "Oblast", "postal_code", "PS\u010c", "country", "Zem\u011b", "invoice", "Faktura", "invoices", "Faktury", "new_invoice", "Nov\xe1 faktura", "created_invoice", "Faktura \xfasp\u011b\u0161n\u011b\xa0vytvo\u0159ena", "updated_invoice", "Faktura \xfasp\u011b\u0161n\u011b\xa0aktualizov\xe1na", _s16_177, "Faktura \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_invoice", "Faktura \xfasp\u011b\u0161n\u011b smaz\xe1na", _s16_178, "Faktura \xfasp\u011b\u0161n\u011b obnovena", _s17_104, ":count faktur \xfasp\u011b\u0161n\u011b archivov\xe1no", _s16_179, ":count faktur \xfasp\u011b\u0161n\u011b smaz\xe1no", _s17_105, _s37_12, "emailed_invoice", "Faktura \xfasp\u011b\u0161n\u011b odesl\xe1na", "emailed_payment", _s28_53, "amount", "\u010c\xe1stka", "invoice_number", "\u010c\xedslo faktury", "invoice_date", "Datum vystaven\xed", "discount", "Sleva", "po_number", "\u010c\xedslo objedn\xe1vky", "terms", "Podm\xednky", "public_notes", "Ve\u0159ejn\xe9 pozn\xe1mky", "private_notes", "Soukrom\xe9 pozn\xe1mky", "frequency", "Frekvence", "start_date", "Po\u010d\xe1te\u010dn\xed datum", "end_date", "Kone\u010dn\xe9 datum", "quote_number", "\u010c\xedslo nab\xeddky", "quote_date", "Datum nab\xeddky", "valid_until", "Plat\xed do", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Popis", "unit_cost", "Jedn. cena", "quantity", "Mno\u017estv\xed", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", _s16_221, _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Celkem", "percent", "Percent", "edit", "Upravit", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Nastaven\xed", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "DPH", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "Odesl\xe1no", "viewed", "Viewed", "approved", "Approved", "partial", "Z\xe1loha", "paid", "Zaplacen\xe9", "mark_sent", "Zna\u010dka odesl\xe1no", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Hotovo", _s37_13, _s37_14, "dark_mode", "Tmav\xfd m\xf3d", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivita", _s16_182, _s16_183, "clone", "Duplikovat", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Platebn\xed podm\xednky", "payment_date", "Datum platby", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Klientsk\xfd port\xe1l", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Prvn\xed p\u0159ipom\xednka", "second_reminder", "Druh\xe1 p\u0159ipom\xednka", "third_reminder", "T\u0159et\xed p\u0159ipom\xednka", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "P\u0159edm\u011bt", "body", "T\u011blo", "send_email", "Odeslat email", "email_receipt", "Odeslat potvrzen\xed platby klientovi", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "P\u0159izp\u016fsoben\xed", "history", "Historie", "payment", "Platba", "payments", "Platby", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, "Odkaz na transakci", "enter_payment", "Zadat platbu", "new_payment", "Zadat platbu", "created_payment", "Platba \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_payment", "Platba \xfasp\u011b\u0161n\u011b zm\u011bn\u011bna", _s16_190, "Platba \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_payment", "Platba \xfasp\u011b\u0161n\u011b smaz\xe1na", _s16_191, "Platba \xfasp\u011b\u0161n\u011b obnovena", _s17_109, ":count plateb \xfasp\u011b\u0161n\u011b archivov\xe1no", _s16_192, ":count plateb bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", _s17_110, _s37_15, "quote", "Nab\xeddka", "quotes", "Nab\xeddky", "new_quote", "Nov\xe1 nab\xeddka", "created_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b vytvo\u0159ena", "updated_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b aktualizov\xe1na", "archived_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b archivov\xe1na", "deleted_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b smaz\xe1na", "restored_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b obnovena", "archived_quotes", ":count nab\xeddek bylo \xfasp\u011b\u0161n\u011b archivov\xe1no", "deleted_quotes", ":count nab\xeddek bylo \xfasp\u011b\u0161n\u011b smaz\xe1no", "restored_quotes", _s35_13, "expense", "N\xe1klad", "expenses", "N\xe1klady", "vendor", "Dodavatel", "vendors", "Dodavatel\xe9", "task", "Task", "tasks", "\xdalohy", "project", "Project", "projects", "Projects", "activity_1", ":user vytvo\u0159il klienta :client", "activity_2", ":user archivoval klienta :client", "activity_3", ":user smazal klienta :client", "activity_4", ":user vytvo\u0159il fakturu :invoice", "activity_5", ":user zm\u011bnil fakturu :invoice", "activity_6", ":user poslal email s fakturou :invoice pro :client na :contact", "activity_7", "Klient :contact zobrazil fakturu :invoice pro :client", "activity_8", ":user archivoval fakturu :invoice", "activity_9", ":user smazal fakturu :invoice", "activity_10", _s85_0, "activity_11", ":user zm\u011bnil platbu :payment", "activity_12", ":user archivoval platbu :payment", "activity_13", ":user smazal platbu :payment", "activity_14", ":user zadal :credit kredit", "activity_15", ":user zm\u011bnil :credit kredit", "activity_16", ":user archivoval :credit kredit", "activity_17", ":user smazal :credit kredit", "activity_18", ":user vytvo\u0159il nab\xeddku :quote", "activity_19", ":user zm\u011bnil nab\xeddku :quote", "activity_20", _s50_4, "activity_21", ":contact zobrazil nab\xeddku :quote", "activity_22", ":user archivoval nab\xeddku :quote", "activity_23", ":user smazal nab\xeddku :quote", "activity_24", ":user obnovil nab\xeddku :quote", "activity_25", ":user obnovil fakturu :invoice", "activity_26", ":user obnovil klienta :client", "activity_27", ":user obnovil platbu :payment", "activity_28", ":user obnovil :credit kredit", "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", ":user vytvo\u0159il v\xfddaj :expense", "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", ":user aktualizoval tiket :ticket", "activity_49", ":user uzav\u0159el tiket :ticket", "activity_50", ":user slou\u010dil tiket :ticket", "activity_51", ":user rozd\u011blil tiket :ticket", "activity_52", ":contact vytvo\u0159il tiket :ticket", "activity_53", ":contact znovu otev\u0159el tiket :ticket", "activity_54", ":user znovu otev\u0159el tiket :ticket", "activity_55", ":contact odpov\u011bd\u011bl na tiket :ticket", "activity_56", ":user zobrazil tiket :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Nab\xeddka \xfasp\u011b\u0161n\u011b odesl\xe1na", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expirovan\xe9", "all", "All", "select", "Zvolit", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u010c\xedseln\xe1 \u0159ada faktur", _s20_52, _s20_53, _s20_54, "\u010c\xedseln\xe1 \u0159ada nab\xeddek", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Typ", "invoice_amount", "\u010c\xe1stka faktury", _s16_197, _s16_221, "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Automatick\xe9 fakturov\xe1n\xed", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "N\xe1zev dan\u011b", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u010c\xe1stka k platb\u011b", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "da", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Senest opdateret", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Ikke tilknyttet", "partial_value", "Skal v\xe6re st\xf8rre end nul og mindre end totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktiv\xe9r", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Angiv subdom\xe6net eller vis fakturaen p\xe5 din egen hjemmeside.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Sikkerhed", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, "Abonnementet blev opdateret", _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Refunderet betaling", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Forrige kvartal", "to_update_run", "To update run", _s18_17, "Konvert\xe9r til en faktura", _s16_24, _s16_25, "invoice_project", "Faktur\xe9r projekt", "invoice_task", "Fakturer opgave", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skjul", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolonne", "sample", "Eksempel", "map_to", "Map To", "import", "Importer", _s25_1, _s29_1, "select_file", "Venligst v\xe6lg en fil", _s16_32, _s16_33, "csv_file", "V\xe6lg CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Ikke betalt", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Faktura total", "quote_total", "Tilbud total", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Advarsel", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "Kontrolcifre", "client_name", "Kundenavn", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Udgiftskategorier", _s20_20, "Ny udgiftskategori", _s21_18, _s21_19, _s24_11, "Udgiftskategori oprettet", _s24_12, "Ajourf\xf8rt udgiftskategori", _s25_5, "Udgiftskategori arkiveret", _s24_13, "Sletning af kategori er gennemf\xf8rt", _s24_14, _s37_2, _s25_6, "Udgiftskategori genoprettet", _s27_8, ".count udgiftskategori(er) arkiveret", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "Paypal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark\xe9r som aktiv", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Gentaget faktura", _s18_29, "Gentagende fakturaer", _s21_25, "Ny gentaget fakture", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Fortjeneste", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Se Portal", "copy_link", "Copy Link", "token_billing", "Gem kort detaljer", _s24_17, _s24_18, "always", "Altid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Klientnummer", "auto_convert", "Auto Convert", "company_name", "Firma navn", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Timer", "statement", "Statement", "taxes", "Skatter", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Til", "health_check", "Health Check", "payment_type_id", "Betalingsmetode", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Kommende fakturaer", _s17_43, _s17_44, "recent_payments", "Nylige betalinger", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Opret faktura", "create_quote", "Opret tilbud", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Slet tilbud", "update_invoice", "Update Invoice", "delete_invoice", "Slet faktura", "update_client", "Update Client", "delete_client", "Slet kunde", "delete_payment", "Slet betaling", "update_vendor", "Update Vendor", "delete_vendor", "Slet s\xe6lger", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Opret opgave", "update_task", "Update Task", "delete_task", "Slet opgave", "approve_quote", "Approve Quote", "off", "Deaktiver", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Token's", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token's", "new_token", "New Token", "edit_token", "Redig\xe9r token", "created_token", "Token oprettet", "updated_token", "Token opdateret", "archived_token", _s27_12, "deleted_token", "Token slettet", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Send faktura som e-mail", "email_quote", "E-mail tilbuddet", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Kontakt navn", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kreditbel\xf8b", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Eksklusiv", "inclusive", "Inklusiv", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", _s17_124, _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, "By/Postnummer", _s17_57, "Postnummer/By/Region", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, "Advarsel: Dette vil slette dine data permanent, der er ingen m\xe5der at fortryde.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 dage", "age_group_30", "30 - 60 dage", "age_group_60", "60 - 90 dage", "age_group_90", "90 - 120 dage", "age_group_120", "120+ dage", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Fakturadetaljer", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s22_54, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Anvend licens", "cancel_account", "Annuller konto", _s22_19, "ADVARSEL: Dette vil permanent slette din konto, der er INGEN mulighed for at fortryde.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Hoved", "load_design", "Indl\xe6s design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Projektforslag", "tickets", "Sager", _s16_69, "Gentagne tilbud", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "Kreditdato", "credit", "Kredit", "credits", "Kreditter", "new_credit", "Indtast kredit", "edit_credit", "Redig\xe9r kredit", "created_credit", "Kredit oprettet", "updated_credit", "Opdatering af kredit gennemf\xf8rt", "archived_credit", "Kredit arkiveret", "deleted_credit", "Kredit slettet", "removed_credit", _s27_21, "restored_credit", "Kredit genskabt", _s16_71, "Arkiverede :count kreditter", "deleted_credits", "Slettede :count kreditter", _s16_72, _s36_3, "current_version", "Nuv\xe6rende version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "L\xe6r mere", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nyt firma", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Eksport", "chart", "Diagram", "count", "Count", "totals", "Totaler", "blank", "Blank", "day", "Dag", "month", "M\xe5ned", "year", "\xc5r", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupp\xe9r efter", "credit_balance", "Kreditsaldo", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Kontakttelefon", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Klients ID", "assigned_to", "Assigned to", "created_by", "Oprettet af :navn", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolonner", "aging", "Aging", "profit_and_loss", "Fortjeneste og tab", "reports", "Rapporter", "report", "Rapport", "add_company", "Tilf\xf8j firma", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Hj\xe6lp", "refund", "Refunder", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "E-mailkontakt", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Besked", "from", "Fra", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Dokumentation", "contact_us", "Kontakt os", "subtotal", "Subtotal", "line_total", "Sum", "item", "Produkttype", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "V\xe6lg venligst en kunde", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Tax Settings", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Skift", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Indsend", _s16_115, "Generhverv din adgangskode", "late_fees", "Late Fees", "credit_number", "Kreditnummer", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dage", "invoice_email", "Faktura e-mail", "payment_email", "Betalings e-mail", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Tilbuds e-mail", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "Brugerh\xe5ndtering", "users", "Brugere", "new_user", "New User", "edit_user", "Rediger bruger", "created_user", _s25_22, "updated_user", "Bruger opdateret", "archived_user", _s26_18, "deleted_user", "Bruger slettet", "removed_user", _s25_25, "restored_user", "Bruger genskabt", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s16_123, "invoice_options", "Fakturaindstillinger", _s17_70, _s19_57, _s22_27, "Vis kun delbetalinger hvis der er forekommet en delbetaling.", _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show header on", _s16_125, "Show footer on", "first_page", "first page", "all_pages", "all pages", "last_page", "last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Prim\xe6r Farve", "secondary_color", "Sekund\xe6r Farve", "page_size", "Page Size", "font_size", "Font St\xf8rrelse", "quote_design", "Quote Design", "invoice_fields", "Faktura felt", "product_fields", "Product Fields", "invoice_terms", _s20_59, "invoice_footer", "Faktura fodnoter", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto konvertering", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daglig", "freq_weekly", "Ugentlig", "freq_two_weeks", "To uger", "freq_four_weeks", "Fire uger", "freq_monthly", "M\xe5nedlig", "freq_two_months", "To m\xe5neder", _s17_74, "Tre m\xe5neder", _s16_126, "Fire m\xe5neder", "freq_six_months", "Seks m\xe5neder", "freq_annually", "\xc5rlig", "freq_two_years", "To \xe5r", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, "Dannede numre", "charge_taxes", "Inkluder skat", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Projektfelt", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Pr\xe6fix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Brugerdefineret CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, "Afkrydsningsfelt for fakturavilk\xe5r", _s30_5, "Bed kunden om at bekr\xe6fte, at de accepterer fakturavilk\xe5rene.", _s23_21, "Tilbuds Betingelser Afkrydsningsfelt", _s28_16, "Bed kunden om at bekr\xe6fte, at de accepterer tilbudsbetingelserne.", _s25_28, "Fakturasignatur", _s30_6, "Kr\xe6v at klienten giver deres underskrift.", _s23_22, "Tilbuds underskrift", _s22_29, "Adgangskodebeskyttet Fakturaer", _s27_23, "Lader dig indtaste en adgangskode til hver kontakt. Hvis en adgangskode ikke er lavet, vil kontakten blive p\xe5lagt at indtaste en adgangskode f\xf8r det er muligt at se fakturaer.", "authorization", "Autorisation", "subdomain", "Underdomain", "domain", "Dom\xe6ne", "portal_mode", "Portal Mode", "email_signature", "Venlig hilsen,", _s24_21, "G\xf8r det lettere for dine klienter at betale dig ved at tilf\xf8je schema.org markup i dine e-mails.", "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Brug HTML markup sprog", "reply_to_email", "Svar-til e-mail", "reply_to_name", "Reply-To Name", "bcc_email", "BCC-email", "processed", "Processed", "credit_card", "Kreditkort", "bank_transfer", "Bankoverf\xf8rsel", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktiv\xe9r minimum", "enable_max", "Aktiv\xe9r maksimum", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Opdater adresse", _s19_28, "Opdater kundens adresse med de opgivne detaljer", "rate", "Sats", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, _s34_16, _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Automatisk-udfyld produkter", _s18_64, "Valg af produkt vil automatisk udfylde beskrivelse og pris", "update_products", "Automatisk opdatering af produkter", _s20_44, "En opdatering af en faktura vil automatisk opdaterer Produkt biblioteket", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Gebyrer", "limits", "Gr\xe6nser", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "Januar", "february", "Februar", "march", "Marts", "april", "April", "may", "Maj", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Produkt Indstillinger", "device_settings", "Device Settings", "defaults", "Standarder", "basic_settings", "Basic Settings", _s17_87, "Avancerede indstillinger", "company_details", "Virksomhedsinformation", "user_details", "User Details", "localization", "Lokalisering", "online_payments", "Onlinebetaling", "tax_rates", "Momssatser", "notifications", "P\xe5mindelser", "import_export", "Import/Eksport", "custom_fields", "Brugerdefineret felt", "invoice_design", "Fakturadesign", "buy_now_buttons", '"K\xf8b nu" knapper', "email_settings", "E-mail-indstillinger", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, _s17_125, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Vilk\xe5r for brug", "privacy_policy", "Privatlivspolitik", "sign_up", "Registrer dig", "account_login", "Konto Log ind", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Opret ny", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Hent", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "Afventer", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Konverteret", _s24_27, _s24_39, "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "Mark\xe9r som betalt", "category", "Kategori", "address", "Adresse", "new_vendor", "Ny s\xe6lger", "created_vendor", "S\xe6lger oprettet", "updated_vendor", "S\xe6lger opdateret succesfuldt", "archived_vendor", "Gennemf\xf8rte arkivering af s\xe6lger", "deleted_vendor", "Sletning af s\xe6lger gennemf\xf8rt", "restored_vendor", "Genskabelse af s\xe6lger gennemf\xf8rt", _s16_152, "Gennemf\xf8rte arkivering af :count s\xe6lgere", "deleted_vendors", "Gennemf\xf8rte sletning af :count s\xe6lgere", _s16_153, _s36_5, "new_expense", "Indtast udgift", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s29_44, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Faktureret", "logged", "Ajourf\xf8rt", "running", "K\xf8rer", "resume", "Genoptag", "task_errors", "Ret venligst de overlappende tider", "start", "Start", "stop", "Stop", "started_task", _s25_34, "stopped_task", "Opgave stoppet", "resumed_task", _s25_36, "now", "Nu", _s16_157, _s16_158, "timer", "Tidtager", "manual", "Manuelt", "budgeted", "Budgeted", "start_time", "Start Tidspunkt", "end_time", "Slut tidspunkt", "date", "Dato", "times", "Gange", "duration", "Varighed", "new_task", "Ny opgave", "created_task", "Opgave oprettet", "updated_task", "Opgave opdateret", "archived_task", "Opgave arkiveret", "deleted_task", "Opgave slettet", "restored_task", "Opgave genskabt", "archived_tasks", "Antal arkiverede opgaver: :count", "deleted_tasks", "Antal opgaver slettet: :count", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", "Projektet blev oprettet", "updated_project", "Projektet blev opdateret", _s16_159, "Projektet blev arktiveret", "deleted_project", "Projektet blev slettet", _s16_160, "Projektet blev genskabt", _s17_95, ":count projekter blev arkiveret", _s16_161, ":count projekter blev slettet", _s17_96, _s37_10, "new_project", "Nyt projekt", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "Klik her", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Fod", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Valgfri periode", "date_range", "Dato omr\xe5de", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Denne m\xe5ned", "last_month", "Forrige m\xe5ned", "this_year", "Dette \xe5r", "last_year", "Forrige \xe5r", "custom", "Brugertilpasset", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Se faktura", "convert", "Convert", "more", "More", "edit_client", "Rediger kunde", "edit_product", "Rediger produkt", "edit_invoice", "Rediger faktura", "edit_quote", "Rediger tilbud", "edit_payment", "Redig\xe9r betaling", "edit_task", "Redig\xe9r opgave", "edit_expense", "Edit Expense", "edit_vendor", "Redig\xe9r s\xe6lger", "edit_project", "Redig\xe9r projekt", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Faktura adresse", _s16_164, _s16_165, "total_revenue", "Samlede indt\xe6gter", "average_invoice", "Gennemsnitlig fakturaer", "outstanding", "Forfaldne", "invoices_sent", _s22_54, "active_clients", "aktive kunder", "close", "Luk", "email", "E-mail", "password", "Kodeord", "url", "URL", "secret", "Hemmelighed", "name", "Navn", "logout", "Log ud", "login", "Log ind", "filter", "Filter", "sort", "Sort", "search", "S\xf8g", "active", "Aktiv", "archived", "Archived", "deleted", "Slettet", "dashboard", "Oversigt", "archive", "Arkiv", "delete", "Slet", "restore", "Genskab", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Gem", _s17_100, _s17_101, "paid_to_date", "Betalt pr. d.d.", "balance_due", "Udest\xe5ende bel\xf8b", "balance", "Balance", "overview", "Overview", "details", "Detaljer", "phone", "Telefon", "website", "Hjemmeside", "vat_number", "CVR/SE-nummer", "id_number", "CVR/SE-nummer", "create", "Opret", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakter", "additional", "Additional", "first_name", "Fornavn", "last_name", "Efternavn", "add_contact", "Tilf\xf8j kontakt", "are_you_sure", "Er du sikker?", "cancel", "Annuller", "ok", "Ok", "remove", "Fjern", _s16_170, _s16_171, "product", "Produkt", "products", "Produkter", "new_product", "New Product", "created_product", "Produkt oprettet", "updated_product", "Produkt opdateret", _s16_172, "Produkt arkiveret", "deleted_product", "Sletning af produkt gennemf\xf8rt", _s16_173, "Genskabelse af produkt gennemf\xf8rt", _s17_102, _s37_17, _s16_174, "Sletning af :count produkter gennemf\xf8rt", _s17_103, _s37_11, "product_key", "Produkt", "notes", "Notes", "cost", "Cost", "client", "Kunde", "clients", "Kunder", "new_client", "Ny kunde", "created_client", "Kunde oprettet succesfuldt", "updated_client", "Kunde opdateret", "archived_client", "Kunde arkiveret", _s16_175, "Arkiverede :count kunder", "deleted_client", "Kunde slettet", "deleted_clients", "Slettede :count kunder", "restored_client", "Kunde genskabt", _s16_176, _s36_7, "address1", "Gade", "address2", "Nummer", "city", "By", "state", "Omr\xe5de", "postal_code", "Postnummer", "country", "Country", "invoice", "Faktura", "invoices", "Fakturaer", "new_invoice", "Ny faktura", "created_invoice", "Faktura oprettet", "updated_invoice", "Faktura opdateret", _s16_177, "Faktura arkiveret", "deleted_invoice", "Faktura slettet", _s16_178, "Faktura genskabt", _s17_104, "Arkiverede :count fakturaer", _s16_179, "Slettede :count fakturaer", _s17_105, _s37_12, "emailed_invoice", "E-mail faktura sendt", "emailed_payment", _s28_53, "amount", "Bel\xf8b", "invoice_number", "Fakturanummer", "invoice_date", _s16_223, "discount", "Rabat", "po_number", "Ordrenummer", "terms", "Vilk\xe5r", "public_notes", "Public Notes", "private_notes", "Private notater", "frequency", "Frekvens", "start_date", "Startdato", "end_date", "Slutdato", "quote_number", "Tilbuds nummer", "quote_date", "Tilbuds dato", "valid_until", "Gyldig indtil", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Beskrivelse", "unit_cost", "Enhedspris", "quantity", "Stk.", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Betalingsfrist", _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Procent", "edit", "Rediger", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Indstillinger", "language", "Language", "currency", "Currency", "created_at", "Oprettelsesdato", "created_on", "Created On", "updated_at", "Opdateret", "tax", "Moms", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Kladde", "sent", "Sendt", "viewed", "Viewed", "approved", "Approved", "partial", "Udbetaling", "paid", "Betalt", "mark_sent", "Mark\xe9r som sendt", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "F\xe6rdig", _s37_13, _s37_14, "dark_mode", "M\xf8rk tilstand", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivitet", _s16_182, _s16_183, "clone", "Kopi\xe9r", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Betalingsvilk\xe5r", "payment_date", "Betalingsdato", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktiveret", "recipients", "Modtagere", "initial_email", "Indledende e-mail", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Skabelon", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send e-mail", "email_receipt", "Send e-mail kvittering til kunden", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "Historie", "payment", "Betaling", "payments", "Betalinger", "refunded", "Refunded", "payment_type", "Betalingstype", _s21_57, "Transaktionsreference", "enter_payment", "Tilf\xf8j betaling", "new_payment", "Indtast betaling", "created_payment", "Betaling oprettet", "updated_payment", "Betaling opdateret", _s16_190, "Betaling arkiveret", "deleted_payment", _s16_224, _s16_191, "Betaling genskabt", _s17_109, "Arkiverede :count betalinger", _s16_192, "Slettede :count betalinger", _s17_110, _s37_15, "quote", "Pristilbud", "quotes", "Pristilbud", "new_quote", "Nyt tilbud", "created_quote", "Tilbud oprettet", "updated_quote", "Tilbud opdateret", "archived_quote", "Tilbud arkiveret", "deleted_quote", "Tilbud slettet", "restored_quote", "Tilbud genskabt", "archived_quotes", "Arkiverede :count tilbud", "deleted_quotes", "Slettede :count tilbud", "restored_quotes", _s35_13, "expense", "Expense", "expenses", "Udgifter", "vendor", "S\xe6lger", "vendors", "S\xe6lgere", "task", "Opgave", "tasks", "Opgaver", "project", "Projekt", "projects", "Projekter", "activity_1", _s28_41, "activity_2", ":user arkiverede kunde :client", "activity_3", ":user slettede kunde :client", "activity_4", ":user oprettede faktura :invoice", "activity_5", ":user ajourf\xf8rte faktura :invoice", "activity_6", ":user emailede fakturaen :invoice for :client til :contact", "activity_7", ":contact l\xe6ste faktura :invoice for :client", "activity_8", ":user arkiverede faktura :invoice", "activity_9", ":user slettede faktura :invoice", "activity_10", ":contact indtastede betaling :payment for :payment_amout i fakturaen :invoice for :client", "activity_11", ":user ajourf\xf8rte betaling :payment", "activity_12", ":user arkiverede betaling :payment", "activity_13", ":user slettede betaling :payment", "activity_14", ":user indtastede :credit kredit", "activity_15", ":user ajourf\xf8rte :credit kredit", "activity_16", ":user arkiverede :credit kredit", "activity_17", ":user slettede :credit kredit", "activity_18", ":user oprettede tilbud :quote", "activity_19", ":user ajourf\xf8rte tilbud :quote", "activity_20", ":user emailede tilbuddet :quote for :client til :contact", "activity_21", ":contact l\xe6ste tilbud :quote", "activity_22", ":user arkiverede tilbud :quote", "activity_23", ":user slettede tilbud:quote", "activity_24", ":user genoprettede tilbud :quote", "activity_25", ":user genoprettede faktura :invoice", "activity_26", ":user genoprettede kunde :client", "activity_27", ":user genoprettede betaling :payment", "activity_28", ":user genoprettede :credit kredit", "activity_29", ":contact godkendte tilbuddet :quote for :client", "activity_30", ":user oprettede s\xe6lger :vendor", "activity_31", ":user arkiverede s\xe6lger :vendor", "activity_32", ":user slettede s\xe6lgeren :vendor", "activity_33", ":user genskabte s\xe6lgeren :vendor", "activity_34", ":user oprettede udgiften :expense", "activity_35", ":user arkiverede udgiften :expense", "activity_36", ":user slettede udgiften :expense", "activity_37", ":user genskabte udgiften :expense", "activity_39", ":user annullerede en :payment_amount betaling :payment", "activity_40", ":bruger refunderet :justering af en :betaling_bel\xf8b betaling :betaling", "activity_41", ":payment_amount betaling (:betaling) mislykkedes", "activity_42", ":user oprettede opgaven :task", "activity_43", ":user opdaterede opgaven :task", "activity_44", ":user arkiverede opgaven :task", "activity_45", ":user slettede opgave :task", "activity_46", ":user genoprettede opgave :task", "activity_47", ":user ajourf\xf8rte udgift :expense", "activity_48", ":user opdaterede sagen :ticket", "activity_49", ":user lukkede sagen :ticket", "activity_50", ":user sammenflettede sagen :ticket", "activity_51", ":user opdelte sagen :ticket", "activity_52", ":contact \xe5bnede sagen :ticket", "activity_53", ":contact gen\xe5bnede sagen :ticket", "activity_54", ":user gen\xe5bnede sagen :ticket", "activity_55", ":contact besvarede sagen :ticket", "activity_56", ":user l\xe6ste sagen :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Tilbud sendt som e-mail", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "Alle", "select", "V\xe6lg", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Fakturanummer-t\xe6ller", _s20_52, _s20_53, _s20_54, "Tilbuds nummer-t\xe6ller", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Bel\xf8b", "age", "Alder", "is_running", "Is Running", "time_log", "Tids log", "bank_id", "bank", _s19_49, _s19_50, _s16_198, "Udgiftskategori", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "nl", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importeer data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Laatst bijgewerkt", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Contact voornaam", _s17_1, "Contact achternaam", "order", "Order", "unassigned", "Niet toegewezen", "partial_value", "Moet groter zijn dan nul en minder dan het totaal", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activeer", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Stel het subdomein in of toon de factuur op uw eigen website.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Beveiliging", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Abonnementen", _s16_11, _s16_12, _s17_7, "Abonnement wijzigen", _s20_1, "Het abonnement is aangemaakt", _s20_2, "Het abonnement is gewijzigd", _s21_6, "Het abonnement is gearchiveerd", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Gebruik laatste e-mail", _s16_20, "Activeer bedrijf", _s21_9, "Schakel e-mails, terugkerende facturen en meldingen in", _s27_1, "Er is een fout opgetreden, probeer het opnieuw", _s27_2, "Stel eerst een wachtwoord in", _s34_1, "Waarschuwing: als u uw telefoonnummer wijzigt, wordt 2FA uitgeschakeld", "help_translate", "Help vertalen", _s23_2, "Selecteer een land", "resend_invite", "Uitnodiging opnieuw versturen", _s19_1, "2FA succesvol uitgeschakeld", _s16_22, "Account succesvol verbonden", _s19_2, "Account succesvol losgekoppeld", "delivered", "Afgeleverd", "bounced", "Bounced", "spam", "Spam", "view_docs", "Bekijk documenten", _s32_, "Geef een mobiel telefoonnummer op om tweefactor authenticatie in te schakelen", "send_sms", "Verzend SMS", "sms_code", "SMS Code", _s21_10, "Scan de streepjescode met een :link compatibele app.", _s18_14, "Tweestaps-authenticatie ingeschakeld", "connect_google", "Verbind met Google", _s17_9, "Verwijder Google", _s17_11, "Tweestaps-authenticatie", _s18_15, "Schakel twee factor authenticatie uit", _s34_2, "Vereis wachtwoord met sociale login", "stay_logged_in", "Blijf ingelogd", _s23_4, "Waarschuwing: uw sessie loopt bijna af", "count_hours", ":count uren", "count_day", "1 dag", "count_days", ":count dagen", _s19_3, "Time-out van websessie", _s17_12, "Veiligheidsinstellingen", "resend_email", "Email opnieuw verzenden", _s26_2, "Bevestig je e-mailadres", _s16_23, "Gecrediteerde betaling", _s19_5, _s27_51, _s19_7, "Selecteer een gebruiker die is geverifieerd met Gmail", "list_long_press", "Lijst lang indrukken", "show_actions", "Toon acties", _s17_14, "Start Multi select", _s27_4, "Er is een e-mail verzonden om het e-mailadres te bevestigen", _s21_11, _s97_, "this_quarter", "Dit kwartaal", "last_quarter", "Laatste Kwartaal", "to_update_run", "To update run", _s18_17, "Zet om naar factuur", _s16_24, "Registratie link", "invoice_project", "Factureer project", "invoice_task", "Factureer taak", "invoice_expense", "Factureer uitgave", _s19_8, "Zoek betalingstermijn 1", _s20_6, "Zoek :count betalingstermijnen", _s16_26, "Opslaan en bekijk voorbeeld", "save_and_email", "Opslaan en verstuur email", _s16_28, "Ondersteunde gebeurtenissen", _s16_30, "Omgezet bedrag", _s17_16, "Omgekeerd balans", _s22_3, '"Reeds betaald" omzetten', _s24_1, "Omgerekend creditsaldo", "converted_total", "Totaal omzetten", "is_sent", "Is verzonden", _s17_18, "Standaard documenten", "document_upload", "Document uploaden", _s20_7, "Laat klanten documenten uploaden", "expense_total", "Totale uitgave", "enter_taxes", "Voer belastingen in", "by_rate", "Op tarief", "by_amount", "Op bedrag", "enter_amount", "Voer bedrag in", "before_taxes", "Voor BTW", "after_taxes", "Na BTW", "color", "Kleur", "show", "Tonen", "hide", "Verbergen", "empty_columns", "Lege kolommen", _s21_13, "Foutopsporingsmodus is ingeschakeld", _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recente taken", "recent_expenses", "Recente uitgaven", _s17_20, "Aankomende uitgaven", "update_app", "Update App", "started_import", "Succesvol begonnen met importeren", _s24_3, "Dubbele kolommapping", _s20_8, "Gebruik inclusieve belastingen", _s18_19, "Is bedrag korting", "column", "Kolom", "sample", "Voorbeeld", "map_to", "Map naar", "import", "Importeer", _s25_1, _s29_1, "select_file", "Selecteer een bestand", _s16_32, "Geen bestand geselecteerd", "csv_file", "Selecteer CSV bestand", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave boekhouding", "zoho", "Zoho", "accounting", "Boekhouding", _s22_5, "Geef alle CSV's op.", "import_type", "Importeer type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "Bekijk Licenties", "webhook_url", "Webhook URL", _s17_22, "Editor volledig scherm", "sidebar_editor", "Zijbalk Editor", _s22_6, 'Typ ":value" om te bevestigen', "purge", "Wissen", "service", "Service", "clone_to", "Dupliceer naar", "clone_to_other", "Dupliceert naar andere", "labels", "Labels", "add_custom", "Aangepast toevoegen", "payment_tax", "Betalingsbelasting", "unpaid", "Onbetaald", "white_label", "White Label", "delivery_note", "Afleveringsbon", _s24_6, "Verzonden facturen zijn vergrendeld", _s24_8, "Betaalde facturen zijn vergrendeld", "source_code", "Broncode", "app_platforms", "App-platforms", "invoice_late", "Factuur te laat", "quote_expired", "Offerte verlopen", "partial_due", "Te betalen voorschot", "invoice_total", "Factuur totaal", "quote_total", "Offertetotaal", "credit_total", "Totaal krediet", _s23_5, "Factuur totaal", "actions", "Acties", "expense_number", "Uitgave nummer", "task_number", "Taaknummer", "project_number", "Projectnummer", "project_name", "Project naam", "warning", "Waarschuwing", "view_settings", "Instellingen tonen", _s24_10, "Waarschuwing: dit bedrijf is nog niet geactiveerd", "late_invoice", "Late factuur", "expired_quote", "Verlopen offerte", "remind_invoice", "Herinnering Factuur", "cvv", "CVV", "client_name", "Klantnaam", "client_phone", "Klant telefoon", "required_fields", "Verreisde velden", "calculated_rate", "Berekend tarief", _s17_24, "Standaard taak tarief", "clear_cache", "Maak cache leeg", "sort_order", "Sorteer volgorde", "task_status", "Status", "task_statuses", "Taak status", "new_task_status", "Nieuwe taak status", _s16_34, "Taak status aanpassen", _s19_9, "Succesvol een taak status aangemaakt", _s19_10, _s20_60, _s20_10, "Succesvol een taak status gearchiveerd", _s19_11, _s36_12, _s19_12, _s36_12, _s20_11, "Succesvol een taak status hersteld", _s22_7, "Succesvol taakstatussen :value gearchiveerd", _s21_15, "Succesvol taak statussen :value verwijderd", _s22_8, "Succesvol taak statussen :value hersteld", _s18_21, "Zoek 1 taak status", _s20_13, "Zoek :count taak statussen", _s16_36, "Taken tabel tonen", _s21_16, "Weergeef de taken wanneer een factuur wordt aangemaakt", _s20_14, "Factuur taak tijdlog", _s25_2, "Voeg de tijd omschrijvingen toe aan de factuur producten", _s20_16, "Factuur taak datumlog", _s25_3, "Voeg datumdetails toe aan de factuurregelitems", _s21_17, "Start taken voordat het wordt opgeslagen", _s18_22, "Status instellen", "task_settings", "Taak instellingen", _s20_18, "Categorie\xebn instellen", _s18_24, _s16_225, _s20_20, "Nieuwe uitgavecategorie", _s21_18, "Bewerk uitgavencategorie", _s24_11, "De uitgaven categorie is aangemaakt", _s24_12, "De uitgaven categorie is gewijzigd", _s25_5, "De uitgaven categorie is gearchiveerd", _s24_13, "De categorie is verwijderd", _s24_14, "De uitgavencategorie is verwijderd", _s25_6, "De uitgaven categorie hersteld", _s27_8, ":count uitgave-categorie\xebn gearchiveerd", _s26_4, "Succesvol uitgave categorie\xebn :value verwijderd", _s27_9, _s47_, _s23_6, "Zoek 1 uitgavencategorie", _s25_8, "Zoek :count uitgave categorie\xebn", _s21_20, "Gebruik beschikbaar krediet", "show_option", "Toon optie", _s22_9, "Het kredietbedrag mag niet hoger zijn als het te betalen bedrag", "view_changes", "Bekijk wijzigingen", "force_update", "Forceer een update", _s17_26, "De applicatie draait op de laatste versie, maar wellicht zijn er nog een aantal fixes beschikbaar.", "mark_paid_help", "Volg de uitgave dat betaald is", _s18_26, "Moet worden gefactureerd", _s23_7, "Maak het mogelijk de uitgave te factureren", _s29_2, "Laat de documenten zien", _s21_22, "Stel een ruilwaarde in van de valuta", _s16_38, "Uitgave instellingen", _s18_27, "Maak een kopie voor herhaling", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "Gebruiker Veld", "variables", "Variabelen", "show_password", "Wachtwoord weergeven", "hide_password", "Wachtwoord verbergen", "copy_error", "Fout kopi\xebren", "capture_card", "Capture Card", _s17_27, "Automatisch betalen ingeschakeld", "total_taxes", "Totale belasting", "line_taxes", "Regelitem belastingen", "total_fields", "Totaal velden", _s25_9, "Herhalend factuur succesvol stopgezet", _s25_10, "Herhalend factuur succesvol gestart", _s25_11, "Herhalend factuur succesvol hervat", "gateway_refund", "Gateway terugbetaling", _s19_13, "Verwerk een terugbetaling via de betalingsgateway", "due_date_days", "Verloopdatum", "paused", "Gepauzeerd", "mark_active", "Markeer als actief", "day_count", "Dag :count", _s22_10, "Eerste dag van de maand", _s21_23, "Laatste dag van de maand", _s17_29, "Gebruik betalingseisen", "endless", "Eindeloos", "next_send_date", "Volgende verzenddatum", _s16_40, "Resterende keren", _s17_31, "Terugkerende factuur", _s18_29, "Terugkerende facturen", _s21_25, "Nieuwe terugkerende factuur", _s22_12, "Bewerk terugkerende factuur", _s25_12, "Herhalend factuur succesvol aangemaakt", _s25_13, "Herhalend factuur succesvol bijgewerkt", _s26_5, "De terugkerende factuur is gearchiveerd", _s25_14, "De terugkerende factuur is verwijderd", _s25_15, "Herhalend factuur succesvol verwijderd", _s26_6, "De terugkerende factuur is hersteld", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, "Zoek 1 herhalend factuur", _s25_16, "Zoek :count herhalende facturen", "send_date", "Verzenddatum", "auto_bill_on", "Automatische betaling aan", _s28_2, "Minimum onder het te betalen bedrag", "profit", "Winst", "line_item", "Regelitem", _s18_31, "Toestaan te betalen boven het te betalen bedrag", _s23_8, "Draag bij aan extra betalen om fooi te accepteren", _s19_14, "Toestaan te betalen onder het te betalen bedrag", _s24_16, "Ondersteun het betalen van een minimaal gedeeltelijk / aanbetalingsbedrag", "test_mode", "Test modus", "opened", "Geopend", _s30_0, "Koppelen mislukt", _s30_1, "Koppelen gelukt", "gateway_success", "Gateway geslaagd", "gateway_failure", "Gateway gefaald", "gateway_error", "Gateway fout", "email_send", "E-mail verzonden", _s17_33, "E-mail wachtrij voor opnieuw versturen", "failure", "Fout", "quota_exceeded", "Limiet bereikt", _s16_42, "Upload mislukt", "system_logs", "Systeem log", "view_portal", "Toon portaal", "copy_link", "Link kopi\xebren", "token_billing", "Kaartgegevens opslaan", _s24_17, "Welkom bij Invoice Ninja", "always", "Altijd", "optin", "Inschrijven", "optout", "Uitschrijven", "label", "Label", "client_number", "Klantnummer", "auto_convert", _s20_61, "company_name", "Bedrijfsnaam", "reminder1_sent", "1ste herinnering verstuurd", "reminder2_sent", "2de herinnering verstuurd", "reminder3_sent", "3de herinnering verstuurd", _s18_33, "Laatste herinnering verstuurd", "pdf_page_info", "Pagina :current van :total", _s16_44, "De facturen zijn gemaild", "emailed_quotes", "De offertes zijn gemaild", "emailed_credits", "Krediet is succesvol gemaild", "gateway", "Gateway", "view_in_stripe", "Bekijk in Stripe", "rows_per_page", "Regels per pagina", "hours", "Uren", "statement", "Overzicht", "taxes", "Belastingen", "surcharge", "Toeslag", "apply_payment", "Betaling toepassen", "apply", "Toepassen", "unapplied", "Niet toegepast", "select_label", "Selecteer label", "custom_labels", "Aangepaste labels", "record_type", "Record Type", "record_name", "Record naam", "file_type", "Bestandstype", "height", "Hoogte", "width", "Breedte", "to", "Aan", "health_check", "Health Check", "payment_type_id", "Betalingstype", "last_login_at", "Voor het laatst ingelogd", "company_key", "Bedrijfssleutel", "storefront", "Storefront", "storefront_help", "Activeer third-party applicaties om facturen te maken", "client_created", "Klant aangemaakt", _s20_23, "Online betalingsmail", _s20_25, "Handmatige betalingsmail", "completed", "Voltooid", "gross", "Bruto", "net_amount", "Netto bedrag", "net_balance", "Netto balans", "client_settings", "Klantinstellingen", _s17_35, "Geselecteerde facturen", _s17_37, "Geselecteerde betalingen", "selected_quotes", "Geselecteerde offertes", "selected_tasks", "Geselecteerde taken", _s17_39, "Geselecteerde uitgaves", _s17_41, "Aankomende facturen", _s17_43, "Verlopen facturen", "recent_payments", "Recente betalingen", "upcoming_quotes", "Eerstvolgende offertes", "expired_quotes", "Verlopen offertes", "create_client", "Klant aanmaken", "create_invoice", "Factuur aanmaken", "create_quote", "Maak offerte aan", "create_payment", "Cre\xeber betaling", "create_vendor", "Leverancier aanmaken", "update_quote", "Offerte bijwerken", "delete_quote", "Verwijder offerte", "update_invoice", "Factuur bijwerken", "delete_invoice", "Verwijder factuur", "update_client", "Klant bijwerken", "delete_client", "Verwijder klant", "delete_payment", "Verwijder betaling", "update_vendor", "Leverancier bijwerken", "delete_vendor", "Verwijder leverancier", "create_expense", "Cre\xeber uitgave", "update_expense", "Uitgave bijwerken", "delete_expense", "Verwijder uitgave", "create_task", "Taak aanmaken", "update_task", "Taak bijwerken", "delete_task", "Verwijder taak", "approve_quote", "Offerte goedkeuren", "off", "Uit", "when_paid", "Wanneer betaald", "expires_on", "Verloopt op", "free", "Gratis", "plan", "Abonnement", "show_sidebar", "Laat zijbalk zien", "hide_sidebar", "Verberg zijbalk", "event_type", "Event Type", "target_url", "Doel", "copy", "Kopieer", "must_be_online", "Herstart alsjeblieft de applicatie wanneer er verbinding is met het internet", _s17_45, "De crons moeten geactiveerd worden", "api_webhooks", "API Webhooks", "search_webhooks", "Zoek :count webhooks", "search_webhook", "Zoek 1 webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nieuwe webhook", "edit_webhook", "Webhook bijwerken", "created_webhook", "Webhook succesvol aangemaakt", "updated_webhook", "Webhook succesvol bijgewerkt", _s16_46, "Webhook succesvol gearchiveerd", "deleted_webhook", _s28_60, "removed_webhook", _s28_60, _s16_47, "Webhook succesvol hersteld", _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", "Zoek :count tokens", "search_token", "Zoek 1 token", "token", "Token", "tokens", "Tokens", "new_token", "Nieuwe token", "edit_token", "Wijzig token", "created_token", "Het token is aangemaakt", "updated_token", "Het token is gewijzigd", "archived_token", "Het token is gearchiveerd", "deleted_token", "Het token is verwijderd", "removed_token", "Token succesvol verwijderd", "restored_token", "Token succesvol hersteld", "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, "Klant registratie", _s24_19, "Zelfregistratie voor klanten in het portaal toestaan", _s21_27, "Pas aan & Weergeven", "email_invoice", "E-mail factuur", "email_quote", "E-mail offerte", "email_credit", "E-mail Krediet", "email_payment", "E-mail betaling", _s20_28, "Er is geen e-mailadres ingesteld voor de klant", "ledger", "Grootboek", "view_pdf", "Bekijk PDF", "all_records", "Alle gegevens", "owned_by_user", "Owned door gebruiker", _s16_50, "Resterend krediet", "contact_name", "Contactnaam", "use_default", "Gebruik standaard", _s16_52, "Eindeloze herinneringen", "number_of_days", "Aantal dagen", _s23_10, "Betalingsvoorwaarden configureren", "payment_term", "Betalingstermijn", _s16_53, "Nieuwe betalingstermijn", _s17_49, "Bewerk betalingstermijn", _s20_29, "De betalingstermijn is aangemaakt", _s20_30, "De betalingstermijn is gewijzigd", _s21_28, "De betalingstermijn is gearchiveerd", _s20_31, _s38_12, _s20_32, _s38_12, _s21_29, "betalingstermijn met succes hersteld", _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", "Log in met e-mail", "change", "Aanpassen", _s23_12, "Verander naar de mobiele layout?", _s24_20, "Verander naar de bureaublad layout?", "send_from_gmail", "Verzonden vanaf Gmail", "reversed", "Teruggedraaid", "cancelled", "Geannuleerd", "credit_amount", "Kredietbedrag", "quote_amount", "Offertebedrag", "hosted", "Gehost", "selfhosted", "Zelf-Gehost", "exclusive", "Exclusief", "inclusive", "Inclusief", "hide_menu", "Verberg menu", "show_menu", "Toon Menu", _s18_35, "Gedeeltelijk terugbetaald", _s16_56, "Documenten zoeken", "search_designs", "Ontwerpen zoeken", "search_invoices", "Facturen zoeken", "search_clients", "Klanten zoeken", "search_products", "Producten zoeken", "search_quotes", "Offertes zoeken", "search_credits", "Zoek Krediet", "search_vendors", "Zoek Leveranciers", "search_users", "Zoek Gebruikers", _s16_57, "Zoek Belastingstarieven", "search_tasks", "Zoek Taken", "search_settings", "Zoek Instellingen", "search_projects", "Zoek Projecten", "search_expenses", "Zoek Uitgaven", "search_payments", "Zoek Betalingen", "search_groups", "Zoek Groepen", "search_company", "Zoek Bedrijf", "search_document", "Zoek 1 document", "search_design", "Zoek 1 ontwerp", "search_invoice", "Zoek 1 factuur", "search_client", "Zoek 1 klant", "search_product", "Zoek 1 product", "search_quote", "Zoek 1 offerte", "search_credit", "Zoek 1 krediet", "search_vendor", "Zoek 1 leverancier", "search_user", "Zoek 1 gebruiker", "search_tax_rate", "Zoek 1 BTW-tarief", "search_task", "Zoek 1 taak", "search_project", "Zoek 1 project", "search_expense", "Zoek 1 uitgave", "search_payment", "Zoek 1 betaling", "search_group", "Zoek 1 groep", "refund_payment", "Terugbetalen", _s17_53, "Factuur succesvol geannuleerd", _s18_37, "Facturen succesvol geannuleerd", _s16_63, "Factuur succesvol teruggedraaid", _s17_54, "Facturen succesvol teruggedraaid", "reverse", "Terugdraaien", "full_name", "Volledige naam", _s17_55, "Postcode", _s17_57, "Provincie", "custom1", _s17_126, "custom2", _s17_127, "custom3", _s16_226, "custom4", "Vierde aangepaste", "optional", "Optioneel", "license", "Licentie", "purge_data", "Wis gegevens", _s16_64, "De bedrijfsgegevens zijn gewist", _s18_38, "Waarschuwing: Dit zal uw gegevens verwijderen. Er is geen manier om dit ongedaan te maken.", "invoice_balance", "Factuur balans", "age_group_0", "0 - 30 dagen", "age_group_30", "30 - 60 dagen", "age_group_60", "60 - 90 dagen", "age_group_90", "90 - 120 dagen", "age_group_120", "120+ dagen", "refresh", "Verversen", "saved_design", "Ontwerp opgeslagen", "client_details", "Klantgegevens", "company_address", "Bedrijfs-adres", "invoice_details", "Factuur details", "quote_details", "Offerte Details", "credit_details", "Kredietgegevens", "product_columns", "Product kolommen", "task_columns", "Taak kolommen", "add_field", "Veld toevoegen", "all_events", "Alle gebeurtenissen", "permissions", "Rechten", "none", "Geen", "owned", "Eigendom", "payment_success", "Betaling is gelukt", "payment_failure", "Betalingsfout", "invoice_sent", ":count factuur verzonden", "quote_sent", "Offerte Verzonden", "credit_sent", "Factuur verzonden", "invoice_viewed", "Factuur bekeken", "quote_viewed", "Offerte Bekeken", "credit_viewed", "Krediet bekeken", "quote_approved", "Offerte Goedgekeurd", _s25_18, "Ontvang alle notificaties", _s16_65, "Licentie aanschaffen", "apply_license", "Activeer licentie", "cancel_account", "Account verwijderen", _s22_19, "Waarschuwing: Dit zal uw account verwijderen. Er is geen manier om dit ongedaan te maken.", "delete_company", "Verwijder bedrijf", _s22_20, "Waarschuwing: Hiermee verwijder je permanent je bedrijf, dit kan niet worden ontdaan.", "enabled_modules", "Ingeschakelde modules", "converted_quote", "Offerte omgezet", "credit_design", "Krediet ontwerp", "includes", "Inclusief", "header", "Koptekst", "load_design", "Laad ontwerp", "css_framework", "CSS Framework", "custom_designs", "Aangepaste Ontwerpen", "designs", "Ontwerpen", "new_design", "Nieuw ontwerp", "edit_design", "Ontwerp aanpassen", "created_design", "Ontwerp aangemaakt", "updated_design", "Ontwerp bijgewerkt", "archived_design", "Ontwerp gearchiveerd", "deleted_design", _s18_97, "removed_design", _s18_97, "restored_design", "Ontwerp teruggehaald", _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Voorstellen", "tickets", "Tickets", _s16_69, "Terugkerende offertes", "recurring_tasks", "Terugkerende Taken", _s18_, "Terugkerende uitgaven", _s18_39, "Accountbeheer", "credit_date", "Kredietdatum", "credit", "Krediet", "credits", "Kredietnota's", "new_credit", "Nieuwe kredietnota", "edit_credit", "Wijzig krediet", "created_credit", "De kredietnota is aangemaakt", "updated_credit", "Het krediet is gewijzigd", "archived_credit", "De kredietnota is gearchiveerd", "deleted_credit", "De kredietnota is verwijderd", "removed_credit", "Krediet is verwijders", "restored_credit", "De kredietnota is hersteld", _s16_71, "Succesvol :count kredietnota's gearchiveerd", "deleted_credits", "Succesvol :count kredietnota's verwijderd", _s16_72, ":value aan krediet succesvol hersteld", "current_version", "Huidige versie", "latest_version", "Laatste versie", "update_now", "Nu updaten", _s26_13, "Een nieuwe versie van de web applicatie is beschikbaar", _s16_73, "Update beschikbaar", "app_updated", "Update met succes voltooid", "learn_more", "Kom meer te weten", "integrations", "Integraties", "tracking_id", "Tracering Id", _s17_59, _s17_60, "credit_footer", "Krediet voettekst", "credit_terms", "Kredietvoorwaarden", "new_company", "Nieuw bedrijf", "added_company", "Bedrijf toegevoegd", "company1", "Aangepast bedrijf 1", "company2", "Aangepast bedrijf 2", "company3", "Aangepast bedrijf 3", "company4", "Aangepast bedrijf 4", "product1", "Aangepast product 1", "product2", "Aangepast product 2", "product3", "Aangepast product 3", "product4", "Aangepast product 4", "client1", "Aangepast cli\xebnt 1", "client2", "Aangepast cli\xebnt 2", "client3", "Aangepast cli\xebnt 3", "client4", "Aangepast cli\xebnt 4", "contact1", "Aangepast Contact 1", "contact2", "Aangepast Contact 2", "contact3", "Aangepast Contact 3", "contact4", "Aangepast Contact 4", "task1", "Aangepaste Taak 1", "task2", "Aangepaste Taak 2", "task3", "Aangepaste Taak 3", "task4", "Aangepaste Taak 4", "project1", "Aangepast Project 1", "project2", "Aangepast Project 2", "project3", "Aangepast Project 3", "project4", "Aangepast Project 4", "expense1", "Aangepaste Uitgave 1", "expense2", "Aangepaste Uitgave 2", "expense3", "Aangepaste Uitgave 3", "expense4", "Aangepaste Uitgave 4", "vendor1", "Aangepaste Aanbieder 1", "vendor2", "Aangepaste Aanbieder 2", "vendor3", "Aangepaste Aanbieder 3", "vendor4", "Aangepaste Aanbieder 4", "invoice1", "Aangepaste Factuur 1", "invoice2", "Aangepaste Factuur 2", "invoice3", "Aangepaste Factuur 3", "invoice4", "Aangepaste Factuur 4", "payment1", "Aangepaste Betaling 1", "payment2", "Aangepaste Betaling 2", "payment3", "Aangepaste Betaling 3", "payment4", "Aangepaste Betaling 4", "surcharge1", _s20_62, "surcharge2", _s20_63, "surcharge3", _s20_64, "surcharge4", _s20_65, "group1", "Aangepaste Groep 1", "group2", "Aangepaste Groep 2", "group3", "Aangepaste Groep 3", "group4", "Aangepaste Groep 4", "reset", "Reset", "number", "Nummer", "export", "Exporteer", "chart", "Grafiek", "count", "Telling", "totals", "Totalen", "blank", "Blanco", "day", "Dag", "month", "Maand", "year", "Jaar", "subgroup", "Subgroep", "is_active", "Is actief", "group_by", "Groepeer per", "credit_balance", "Kredietsaldo", _s18_45, "Contact laatste Login", _s17_61, "Contact Volledige Naam", "contact_phone", "Contact telefoon", _s21_31, "Contact aangepaste waarde 1", _s21_32, "Contact aangepaste waarde 2", _s21_33, "Contact aangepaste waarde 3", _s21_34, "Contact aangepaste waarde 4", _s17_63, "Leveringsstraat", _s17_64, "Leverings Apt/Suite", "shipping_city", "Leveringsstad", "shipping_state", "Leverings Staat/Provincie", _s20_33, "Leverings Postcode", _s16_103, "Leveringsland", _s16_105, "Facturatie straat", _s16_106, "Facturatie Apt/Suite", "billing_city", "Facturatiestad", "billing_state", "Facturatie Staat/Provincie", _s19_19, "Facturatie Postcode", "billing_country", "Facturatieland", "client_id", "Klantnummer", "assigned_to", "Toegewezen aan", "created_by", "Aangemaakt door :name", "assigned_to_id", "Toegekend aan ID", "created_by_id", "Gemaakt door ID", "add_column", "Voeg kolom toe", "edit_columns", "Wijzig kolom", "columns", "Kolommen", "aging", "Toekomst", "profit_and_loss", "Winst en verlies", "reports", "Rapporten", "report", "Rapport", "add_company", "Bedrijf toevoegen", "unpaid_invoice", "Onbetaalde factuur", "paid_invoice", "Betaalde factuur", _s16_107, "Niet goedgekeurde offerte", "help", "Help", "refund", "Terugbetaling", "refund_date", "Terugbetaling datum", "filtered_by", "Gefilterd op", "contact_email", "Contact e-mail", "multiselect", "Multiselectie", "entity_state", "Staat", "verify_password", "Verifieer wachtwoord", "applied", "Toegepast", _s21_35, "Voeg recente fouten uit de logboeken toe", _s30_4, "We hebben uw bericht ontvangen, en zullen zo spoedig mogelijk reageren.", "message", "Bericht", "from", "Van", _s20_35, "toon product details", _s25_20, "Neem de beschrijving en kosten op in de vervolgkeuzelijst met producten", _s20_37, "De PDF renderaar vereist :version", _s18_48, "Pas Vergoedingspercentage Aan", _s23_14, "Pas percentage aan om rekening te houden met de kosten", _s18_50, "Instellingen configureren", "support_forum", "Support Forum", "about", "Over", "documentation", "Documentatie", "contact_us", "Contacteer ons", "subtotal", "Subtotaal", "line_total", "Totaal", "item", "Artikel", "credit_email", "Krediet E-mail", "iframe_url", "Website", "domain_url", "Domein URL", _s21_36, "Wachtwoord is te kort", _s20_38, "Het wachtwoord moet een hoofdletter en een nummer bevatten", _s19_21, "Klantenportaal taken", _s23_15, "Klantenportaal dashboard", _s20_39, "Voer alstublieft een waarde in", "deleted_logo", "Logo verwijderd", "yes", "Ja", "no", "Nee", "generate_number", "Genereer nummer", "when_saved", "Als opgeslagen", "when_sent", "Als verzonden", "select_company", "Selecteer Bedrijf", "float", "Float", "collapse", "Inklappen", "show_or_hide", "Laten zien/Verbergen", "menu_sidebar", "Menu Zijbalk", "history_sidebar", "Geschiedenis Zijbalk", "tablet", "Tablet", "mobile", "Mobiel", "desktop", "Bureaublad", "layout", "Indeling", "view", "Bekijken", "module", "Module", "first_custom", _s17_126, "second_custom", _s17_127, "third_custom", _s16_226, "show_cost", "Toon kosten", _s17_66, "Laat product kosten zien", "show_cost_help", "Toon het kostenveld van een product om de opmaak / winst te volgen", _s21_37, "Toon product hoeveelheid", _s26_15, "Toon aantallen voor producten, anders de standaard versie", _s21_39, "Toon factuur aantallen", _s26_16, "Toon aantallen voor regelitem, anders de standaard versie", _s21_41, "Toon product korting", _s26_17, _s34_9, _s16_109, "Standaard aantallen", _s21_43, "Stel de producthoeveelheid automatisch in op 1", "one_tax_rate", "Eerste BTW-tarief", "two_tax_rates", "Tweede BTW-tarief", "three_tax_rates", "Derde BTW-tarief", _s16_111, "Standaard BTW-tarief", "user", "Gebruiker", "invoice_tax", "Factuur BTW-tarief", "line_item_tax", "Regelitem BTW-tarief", "inclusive_taxes", "Inclusief belasting", _s17_68, "Factuur belastingtarief", "item_tax_rates", "Product belastingtarief", _s18_52, _s31_16, "configure_rates", "Tarieven instellen", _s18_53, "Configureer Gateways", "tax_settings", "BTW-instellingen", _s18_55, "BTW-tarieven", "accent_color", "Accent Kleur", "switch", "Overschakelen", _s19_23, "Komma gescheiden lijst", "options", "Opties", _s16_113, "Eenregelige tekst", "multi_line_text", "Multi-regelige tekst", "dropdown", "Dropdwon", "field_type", "Veld type", _s27_22, "Een wachtwoord herstel mail is verzonden", "submit", "Opslaan", _s16_115, "Wachtwoord vergeten?", "late_fees", "Late vergoedingen", "credit_number", "Kredietnummer", "payment_number", "Betalingsnummer", "late_fee_amount", "Late vergoedingsbedrag", _s16_116, "Late vergoedingspercentage", "schedule", "Schema", "before_due_date", "Voor de vervaldatum", "after_due_date", "Na de vervaldatum", _s18_57, "na de factuurdatum", "days", "Dagen", "invoice_email", "Factuurmail", "payment_email", "Betalingsmail", "partial_payment", _s22_55, "payment_partial", _s22_55, _s21_44, "E-mail voor gedeeltelijke betaling", "quote_email", "Offertemail", _s16_118, "Eindeloze taak", _s16_120, "Gefilterd door gebruiker", "administrator", "Beheerder", _s18_58, "Geef gebruiker de toestemming om andere gebruikers te beheren, instellingen te wijzigen en alle regels te bewerken.", "user_management", "Gebruikersbeheer", "users", "Gebruikers", "new_user", "Nieuwe Gebruiker", "edit_user", "Bewerk gebruiker", "created_user", "De gebruiker is aangemaakt", "updated_user", "De gebruiker is gewijzigd", "archived_user", "De gebruiker is gearchiveerd", "deleted_user", "De gebruiker is verwijderd", "removed_user", "Gebruiker verwijderd", "restored_user", "De gebruiker is hersteld", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Algemene instellingen", "invoice_options", "Factuuropties", _s17_70, 'Verberg "Reeds betaald"', _s22_27, 'Toon alleen het "Reeds betaald" gebied op je facturen als er een betaling gemaakt is.', _s23_17, "Documenten invoegen", _s28_15, "Bijgevoegde afbeeldingen weergeven in de factuur.", _s16_124, "Toon header op", _s16_125, "Toon footer op", "first_page", "eerste pagina", "all_pages", "alle pagina's", "last_page", "laatste pagina", "primary_font", "Primair lettertype", "secondary_font", "Secundair lettertype", "primary_color", "Primaire kleur", "secondary_color", "Secundaire kleur", "page_size", "Paginagrootte", "font_size", "Tekstgrootte", "quote_design", "Offerte ontwerp", "invoice_fields", "Factuurvelden", "product_fields", "Productvelden", "invoice_terms", "Factuur voorwaarden", "invoice_footer", "Factuurvoettekst", "quote_terms", "Offertevoorwaarden", "quote_footer", "Offertevoettekst", _s18_59, "Automatisch e-mailen", _s23_18, "Verzend terugkerende facturen automatisch wanneer ze worden gemaakt.", _s20_42, _s22_56, _s25_26, "Facturen automatisch archiveren wanneer ze worden betaald.", _s18_60, _s22_56, _s23_19, "Offertes automatisch archiveren wanneer ze zijn omgezet.", _s18_61, _s20_61, _s23_20, "Zet een offerte automatisch om in een factuur zodra deze door een klant wordt goedgekeurd.", _s17_72, "Workflow instellingen", "freq_daily", "Dagelijks", "freq_weekly", "Wekelijks", "freq_two_weeks", "Twee weken", "freq_four_weeks", "Vier weken", "freq_monthly", "Maandelijks", "freq_two_months", "Twee maanden", _s17_74, "Drie maanden", _s16_126, "Vier maanden", "freq_six_months", "Zes maanden", "freq_annually", "Jaarlijks", "freq_two_years", "Twee jaar", _s16_127, "Drie jaar", "never", "Nooit", "company", "Bedrijf", _s17_75, "Gegenereerde nummers", "charge_taxes", "BTW berekenen", "next_reset", "Volgende reset", "reset_counter", "Teller resetten", _s16_128, "Terugkerend voorvoegsel", "number_padding", "Nummer afstand", "general", "Algemeen", "surcharge_field", "Extra toeslag veld", "company_field", "Bedrijf veld", "company_value", "Bedrijfswaarde", "credit_field", "Credit veld", "invoice_field", "Factuur veld", _s17_77, "Factuurkost", "client_field", "Klant veld", "product_field", "Productveld", "payment_field", "Betaalveld", "contact_field", "Contact veld", "vendor_field", "Leverancier veld", "expense_field", "Uitgave veld", "project_field", "Project veld", "task_field", "Taak veld", "group_field", "Groepsveld", "number_counter", "Nummerteller", "prefix", "Voorvoegsel", "number_pattern", "Nummer patroon", "messages", "Berichten", "custom_css", "Aangepaste CSS", _s17_79, "Zelfgeschreven JavaScript", _s16_130, "Weergeven op PDF", _s21_46, "Toon de handtekening van de klant op de factuur/offerte PDF.", _s25_27, "Factuurvoorwaarden checkbox", _s30_5, "Verplicht de klant om akkoord te gaan met de factuurvoorwaarden.", _s23_21, "Offertevoorwaarden checkbox", _s28_16, "Verplicht de klant om akkoord te gaan met de offertevoorwaarden.", _s25_28, "Factuur handtekening", _s30_6, "Verplicht de klant om zijn handtekening te zetten.", _s23_22, "Offerte handtekening", _s22_29, "Facturen beveiligen met een wachtwoord", _s27_23, "Geeft u de mogelijkheid om een wachtwoord in te stellen voor elke contactpersoon. Als er een wachtwoord is ingesteld moet de contactpersoon het wachtwoord invoeren voordat deze facturen kan bekijken.", "authorization", "Autorisatie", "subdomain", "Subdomein", "domain", "Domein", "portal_mode", "portaalmodus", "email_signature", "Met vriendelijke groeten,", _s24_21, "Maak het gemakkelijker voor uw klanten om te betalen door scherma.org opmaak toe te voegen aan uw e-mails.", "plain", "Platte tekst", "light", "Licht", "dark", "Donker", "email_design", "E-mail Ontwerp", "attach_pdf", "PDF bijlvoegen", _s16_131, "Document bijvoegen", "attach_ubl", "UBL bijvoegen", "email_style", "Email opmaak", _s19_25, "Opmaak inschakelen", "reply_to_email", "Antwoord naar e-mail", "reply_to_name", "Antwoordnaam", "bcc_email", "BCC Email", "processed", "Verwerkt", "credit_card", "Creditcard", "bank_transfer", "Overschrijving", "priority", "Prioriteit", "fee_amount", "Vergoedingsbedrag", "fee_percent", "Vergoedingspercentage", "fee_cap", "Maximale vergoeding", "limits_and_fees", "limiet/vergoedingen", "enable_min", "Min inschakelen", "enable_max", "Max inschakelen", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Geaccepteerde kaart logo's", "credentials", "Gegevens", "update_address", "Adres aanpassen", _s19_28, "Pas het adres van de klant aan met de ingevulde gegevens", "rate", "Tarief", "tax_rate", "BTW-tarief", "new_tax_rate", "Nieuw BTW-tarief", "edit_tax_rate", "Bewerk tarief", _s16_133, "Het tarief is aangemaakt", _s16_134, "Het tarief is bijgewerkt", _s17_82, "Het tarief is gearchiveerd", _s16_135, "De BTW heffing is verwijderd", _s17_83, "De BTW heffing is teruggezet", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Producten Automatisch aanvullen", _s18_64, "Een product selecteren zal automatisch de beschrijving en kosten instellen", "update_products", "Producten automatisch wijzigen", _s20_44, "Het wijzigen van een factuur zal automatisch de producten aanpassen", _s16_136, "Producten omzetten", _s21_47, "Productprijzen automatisch converteren naar het valuta van de klant", "fees", "Transactiekosten", "limits", "Limieten", "provider", "Provider", "company_gateway", _s16_227, _s16_138, _s16_227, _s19_29, "Nieuwe instantie aanmaken", _s20_45, "Huidige instantie bewerken", _s23_23, "De nieuwe instantie is aangemaakt", _s23_24, "De nieuwe instantie is bijgewerkt", _s24_22, "De nieuwe instantie is gearchiveerd", _s23_25, "De nieuwe instantie is verwijderd", _s24_23, "De nieuwe instantie is hersteld", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Bewerk verder", "discard_changes", "Wis Wijzigingen", "default_value", "Standaard waarde", "disabled", "Uitgeschakeld", "currency_format", "Munt formaat", _s21_48, "Eerste dag van de week", _s23_26, "Eerste maand van het jaar", "sunday", "Zondag", "monday", "Maandag", "tuesday", "Dinsdag", "wednesday", "Woensdag", "thursday", "Donderdag", "friday", "Vrijdag", "saturday", "Zaterdag", "january", "januari", "february", "februari", "march", "maart", "april", "april", "may", "mei", "june", "juni", "july", "juli", "august", "augustus", "september", "september", "october", "oktober", "november", "november", "december", "december", "symbol", "Symbool", "ocde", "Code", "date_format", "Datum formaat", "datetime_format", "Datum/tijd opmaak", "military_time", "24-uurs klok", _s18_65, "24-uurs weergave", "send_reminders", "Verstuur herinneringen", "timezone", "Tijdzone", _s19_30, "Gefilterd op project", _s17_85, "Filteren op groep", _s19_32, "Filteren op factuur", _s18_66, "Filteren op klant", _s18_68, "Filteren op leverancier", "group_settings", "Groepsinstellingen", "group", "Groep", "groups", "Groep", "new_group", "Nieuwe groep", "edit_group", "Wijzig groep", "created_group", "Nieuwe groep aangemaakt", "updated_group", "Groep gewijzigd", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload logo", "uploaded_logo", "Het logo is opgeslagen", "logo", "Logo", "saved_settings", "De instellingen zijn opgeslagen", _s16_142, "Productinstellingen", "device_settings", "Apparaatinstellingen", "defaults", "Standaardwaarden", "basic_settings", "Basisinstellingen", _s17_87, "Geavanceerde instellingen", "company_details", "Bedrijfsdetails", "user_details", "Gebruikersgegevens", "localization", "Lokalisatie", "online_payments", "Online betalingen", "tax_rates", "BTW-tarieven", "notifications", "Notificaties", "import_export", "Importeer/Exporteer", "custom_fields", "Aangepaste velden", "invoice_design", "Factuurontwerp", "buy_now_buttons", "Koop nu knoppen", "email_settings", "E-mailinstellingen", _s23_28, "Sjablonen en herinneringen", _s22_30, "Credit Cards & Banken", _s19_34, "Datavisualisaties", "price", "Prijs", "email_sign_up", "Aanmelden voor email", "google_sign_up", "Aanmelden bij Google", _s27_25, "Bedankt voor uw aankoop!", "redeem", "Verzilver", "back", "Terug", "past_purchases", "Voorbije aankopen", _s19_36, "Jaarlijks abonnement", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count gebruikers", "upgrade", "Upgrade", _s25_32, "Vul een voornaam in aub", _s24_25, "Vul een naam in aub", _s33_14, "Ga akkoord met de servicevoorwaarden en het privacybeleid om een account aan te maken.", "i_agree_to_the", "Ik ga akkoord met", _s21_79, "de servicevoorwaarden", _s19_54, "het privacybeleid", _s16_144, "Gebruiksvoorwaarden", "privacy_policy", "Privacybeleid", "sign_up", "Aanmelden", "account_login", "Accountlogin", "view_website", "Bekijk website", "create_account", "Account aanmaken", "email_login", "Email login", "create_new", "Nieuwe aanmaken", _s18_70, "Geen records geselecteerd", _s21_51, "Bewaar of annuleer de wijzigingen", "download", "Download", _s27_26, "Vereist een enterprise plan", "take_picture", "Maak foto", "upload_file", "Upload bestand", "document", "Document", "documents", "Documenten", "new_document", "Nieuw document", "edit_document", "Bewerk Document", _s17_89, "Document is geupload", _s16_146, "Het document is bijgewerkt", _s17_90, "Het document is gearchiveerd", _s16_147, "Het document is verwijderd", _s17_91, "Het document is hersteld", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "Geen geschiedenis", "expense_date", "Uitgave datum", "pending", "In afwachting", _s16_148, "Gelogged", _s16_149, "In afwachting", _s16_150, "Gefactureerd", "converted", "Omgezet", _s24_27, "Voeg documenten toe aan factuur", "exchange_rate", "Wisselkoers", _s16_151, "Reken valuta om", "mark_paid", "Markeer als betaald", "category", "Categorie", "address", "Adres", "new_vendor", "Nieuwe leverancier", "created_vendor", "De leverancier is aangemaakt", "updated_vendor", "De leverancier is gewijzigd", "archived_vendor", "De leverancier is gearchiveerd", "deleted_vendor", "De leverancier is verwijderd", "restored_vendor", "De leverancier is hersteld", _s16_152, "Succesvol :count leveranciers gearchiveerd", "deleted_vendors", "Succesvol :count leveranciers verwijderd", _s16_153, _s36_5, "new_expense", "Nieuwe uitgave", "created_expense", "De uitgave is aangemaakt", "updated_expense", "De uitgave is gewijzigd", _s16_154, "De uitgave is gearchiveerd", "deleted_expense", "De uitgave is verwijderd", _s16_155, "De uitgave is hersteld", _s17_93, "De uitgaven zijn gearchiveerd", _s16_156, "De uitgaven zijn verwijderd", _s17_94, _s37_9, "copy_shipping", "Levering kopi\xebren", "copy_billing", "Facturatie kopi\xebren", "design", "Ontwerp", _s21_52, "Geen gegeven gevonden", "invoiced", "Gefactureerd", "logged", "Gelogd", "running", "Lopend", "resume", "Doorgaan", "task_errors", "Pas overlappende tijden aan a.u.b..", "start", "Start", "stop", "Stop", "started_task", "De taak is gestart", "stopped_task", "De taak is gestopt", "resumed_task", "Taak hervat", "now", "Nu", _s16_157, "Automatisch Startende Taken", "timer", "Timer", "manual", "Manueel", "budgeted", "Begroot", "start_time", "Starttijd", "end_time", "Eindtijd", "date", "Datum", "times", "Tijden", "duration", "Duur", "new_task", "Nieuwe taak", "created_task", "De taak is aangemaakt", "updated_task", _s20_60, "archived_task", "De taak is gearchiveerd", "deleted_task", "De taak is verwijderd", "restored_task", "De taak is hersteld", "archived_tasks", "Succesvol :count taken gearchiveerd", "deleted_tasks", "Succesvol :count taken verwijderd", "restored_tasks", _s34_14, _s19_38, "Geef a.u.b. een naam op", "budgeted_hours", "Begrote uren", "created_project", "Het project is aangemaakt", "updated_project", "Het project is gewijzigd", _s16_159, "Het project is gearchiveerd", "deleted_project", "Het project is verwijderd", _s16_160, "Het project is hersteld", _s17_95, "Succesvol :count projecten gearchiveerd", _s16_161, "Succesvol :count projecten verwijderd", _s17_96, _s37_10, "new_project", "Nieuw project", _s27_30, "Bedankt voor het gebruik van onze app!", "if_you_like_it", "Als je het leuk vindt alsjeblieft", "click_here", "Klik hier", _s18_74, "Klik hier", "to_rate_it", "om een score te geven.", "average", "Gemiddeld", "unapproved", "Afgekeurd", _s30_11, "Gelieve te authenticeren om deze instelling te wijzigen", "locked", "Vergrendeld", "authenticate", "Authenticeer", _s19_40, "Gelieve te authenticeren", _s24_28, "Biometrische authenticatie", "footer", "Voettekst", "compare", "Vergelijk", "hosted_login", "Hosted login", "selfhost_login", "Self-Host login", "google_sign_in", "Log in met Google", "today", "Vandaag", "custom_range", "Aangepast bereik", "date_range", "Datumbereik", "current", "Huidige", "previous", "Vorige", "current_period", "Huidige Periode", _s17_98, "Periode om mee te vergelijken", "previous_period", "Vorige Periode", "previous_year", "Vorig jaar", "compare_to", "Vergelijk met", "last7_days", "Laatste 7 dagen", "last_week", "Afgelopen week", "last30_days", "Laatste 30 Dagen", "this_month", "Deze maand", "last_month", "Vorige maand", "this_year", "Dit jaar", "last_year", "Vorig jaar", "custom", "Aangepast", _s16_162, "Dupliceer als factuur", "clone_to_quote", "Dupliceer als offerte", "clone_to_credit", "Klonen naar krediet", "view_invoice", "Bekijk factuur", "convert", "Converteer", "more", "Meer", "edit_client", "Wijzig klant", "edit_product", "Wijzig product", "edit_invoice", "Wijzig factuur", "edit_quote", "Bewerk offerte", "edit_payment", "Bewerk betaling", "edit_task", "Wijzig taak", "edit_expense", "Bewerk uitgave", "edit_vendor", "Bewerk leverancier", "edit_project", "Wijzig project", _s22_, "Terugkerende uitgave bewerken", _s20_47, "Bewerk terugkerende offerte", "billing_address", "Factuuradres", _s16_164, "Leveringsadres", "total_revenue", "Totale inkomsten", "average_invoice", "Gemiddelde factuur", "outstanding", "Uitstaand", "invoices_sent", "facturen verzonden", "active_clients", "Actieve klanten", "close", "Sluiten", "email", "E-mail", "password", "Wachtwoord", "url", "URL", "secret", "Secret", "name", "Naam", "logout", "Afmelden", "login", "Login", "filter", "Filter", "sort", "Sorteer", "search", "Zoeken", "active", "Actief", "archived", "Gearchiveerd", "deleted", "Verwijderd", "dashboard", "Dashboard", "archive", "Archiveer", "delete", "Verwijder", "restore", "Herstel", _s16_166, "Verversen afgerond", _s23_29, "Gelieve uw e-maildres in te vullen", _s26_25, "Gelieve uw wachtwoord in te voeren", _s21_55, "Gelieve uw URL in te voeren", _s26_27, "Gelieve een productcode in te voeren", "ascending", "Oplopend", "descending", "Aflopend", "save", "Opslaan", _s17_100, "Er is een fout opgetreden", "paid_to_date", "Reeds betaald", "balance_due", "Te voldoen", "balance", "Saldo", "overview", "Overzicht", "details", "Details", "phone", "Telefoon", "website", "Website", "vat_number", "BTW-nummer", "id_number", "Identificatienummer", "create", "Aanmaken", _s19_42, "Waarde :value naar klembord gekopieerd", "error", "Fout", _s16_168, "Kon niet starten", "contacts", "Contactpersonen", "additional", "Extra", "first_name", "Voornaam", "last_name", "Achternaam", "add_contact", "Contact toevoegen", "are_you_sure", "Weet je het zeker?", "cancel", "Annuleren", "ok", "OK", "remove", "Verwijderen", _s16_170, "E-mailadres is incorrect", "product", "Product", "products", "Producten", "new_product", "Nieuw product", "created_product", "Het product is aangemaakt", "updated_product", "Het product is gewijzigd", _s16_172, "Het product is gearchiveerd", "deleted_product", "Het product is verwijderd", _s16_173, "Het product is hersteld", _s17_102, "Succesvol :count producten gearchiveerd", _s16_174, "Succesvol :count producten verwijderd", _s17_103, _s37_11, "product_key", "Product", "notes", "Notities", "cost", "Kosten", "client", "Klant", "clients", "Klanten", "new_client", "Nieuwe klant", "created_client", "De klant is aangemaakt", "updated_client", "De klant is bijgewerkt", "archived_client", "De klant is gearchiveerd", _s16_175, "Succesvol :count klanten gearchiveerd", "deleted_client", "De klant is verwijderd", "deleted_clients", "Succesvol :count klanten verwijderd", "restored_client", "De klant is hersteld", _s16_176, _s36_7, "address1", "Straat", "address2", "Apt/Suite", "city", "Plaats", "state", "Provincie", "postal_code", "Postcode", "country", "Land", "invoice", "Factuur", "invoices", "Facturen", "new_invoice", "Nieuwe factuur", "created_invoice", "De factuur is aangemaakt", "updated_invoice", "De factuur is gewijzigd", _s16_177, "De factuur is gearchiveerd", "deleted_invoice", "De factuur is verwijderd", _s16_178, "De factuur is hersteld", _s17_104, "Succesvol :count facturen gearchiveerd", _s16_179, "De :count facturen zijn verwijderd", _s17_105, _s37_12, "emailed_invoice", "De factuur is gemaild", "emailed_payment", "De betaling is per mail verstuurd", "amount", "Bedrag", "invoice_number", "Factuurnummer", "invoice_date", "Factuurdatum", "discount", "Korting", "po_number", "Bestelnummer", "terms", "Voorwaarden", "public_notes", "Publieke opmerkingen", "private_notes", "Prive notities", "frequency", "Frequentie", "start_date", "Startdatum", "end_date", "Einddatum", "quote_number", "Offertenummer", "quote_date", "Offertedatum", "valid_until", "Geldig tot", "items", "Artikelen", "partial_deposit", "Voorschot", "description", "Omschrijving", "unit_cost", "Eenheidsprijs", "quantity", "Aantal", "add_item", "Artikel toevoegen", "contact", "Contact", "work_phone", "Telefoon", "total_amount", "Totaal hoeveelheid", "pdf", "PDF", "due_date", "Vervaldatum", _s16_180, "Gedeeltelijke vervaldatum", "status", "Status", _s17_106, "Factuurstatus", "quote_status", "Offertestatus", _s22_31, "Klik op + om een artikel toe te voegen", _s22_33, "Klik + om tijd toe te voegen", "count_selected", ":count geselecteerd", "total", "Totaal", "percent", "Procent", "edit", "Bewerk", "dismiss", "Seponeren", _s20_49, "Gelieve een datum selecteren", _s22_34, _s31_16, _s24_30, "Selecteer een factuur", "task_rate", "Taak tarief", "settings", "Instellingen", "language", "Taal", "currency", "Munteenheid", "created_at", "Aanmaakdatum", "created_on", "Aangemaakt op", "updated_at", "Bijgewerkt", "tax", "Belasting", _s30_13, "Gelieve een factuurnummer in te voeren", _s27_34, "Gelieve een offertenummer in te voeren", "past_due", "Verlopen", "draft", "Concept", "sent", "Verzonden", "viewed", "Bekenen", "approved", "Goedgekeurd", "partial", "Voorschot", "paid", "Betaald", "mark_sent", "Markeer als verzonden", _s22_36, "De factuur is gemarkeerd als verzonden", _s22_37, "Factuur succesvol gemarkeerd als verzonden", _s23_31, "Facturen gemarkeerd als verzonden", _s23_32, "Facturen succesvol gemarkeerd als verzonden", "done", "Klaar", _s37_13, "Gelieve een bedrijfsnaam of contactpersoon in te voeren", "dark_mode", "Donkere modus", _s27_36, "Herstart de applicatie om de wijziging toe te passen", "refresh_data", "Gegevens verversen", "blank_contact", "Leeg contact", "activity", "Activiteit", _s16_182, "Geen gegevens gevonden", "clone", "Dupliceer", "loading", "Laden", "industry", "Industrie", "size", "Grootte", "payment_terms", "Betalingsvoorwaarden", "payment_date", "Betalingsdatum", "payment_status", "Betaalstatus", _s16_184, "In afwachting", _s16_185, "Ongeldig", _s16_186, "Mislukt", _s16_187, "Voltooid", _s16_188, "Deels terugbetaald", _s16_189, "Gecrediteerd", _s17_107, "Niet toegepast", _s17_108, _s27_51, "net", "Betaaltermijn", "client_portal", "Klantenportaal", "show_tasks", "Toon taken", "email_reminders", "E-mail herinneringen", "enabled", "Ingeschakeld", "recipients", "Ontvangers", "initial_email", "Initi\xeble e-mail", "first_reminder", _s18_98, "second_reminder", _s18_99, "third_reminder", _s17_128, "reminder1", _s18_98, "reminder2", _s18_99, "reminder3", _s17_128, "template", "Sjabloon", "send", "Verstuur", "subject", "Onderwerp", "body", "Tekst", "send_email", "Verstuur e-mail", "email_receipt", "Mail betalingsbewijs naar de klant", "auto_billing", "Automatisch incasseren", "button", "Knop", "preview", "Voorbeeld", "customize", "Aanpassen", "history", "Geschiedenis", "payment", "Betaling", "payments", "Betalingen", "refunded", "Gecrediteerd", "payment_type", "Betalingswijze", _s21_57, "Transactie referentie", "enter_payment", "Voer betaling in", "new_payment", "Nieuwe betaling", "created_payment", "De betaling is aangemaakt", "updated_payment", "De betaling is gewijzigd", _s16_190, "De betaling is gearchiveerd", "deleted_payment", "De betaling is verwijderd", _s16_191, "De betaling is hersteld", _s17_109, "Succesvol :count betalingen gearchiveerd", _s16_192, "Succesvol :count betalingen verwijderd", _s17_110, _s37_15, "quote", "Offerte", "quotes", "Offertes", "new_quote", "Nieuwe offerte", "created_quote", "De offerte is aangemaakt", "updated_quote", "De offerte is gewijzigd", "archived_quote", "De offerte is gearchiveerd", "deleted_quote", "De offerte is verwijderd", "restored_quote", "De offerte is hersteld", "archived_quotes", "Succesvol :count offertes gearchiveerd", "deleted_quotes", "Succesvol :count offertes verwijderd", "restored_quotes", _s35_13, "expense", "Uitgave", "expenses", "Uitgaven", "vendor", "Leverancier", "vendors", "Leveranciers", "task", "Taak", "tasks", "Taken", "project", "Project", "projects", "Projecten", "activity_1", ":user heeft klant :client aangemaakt", "activity_2", ":user heeft klant :client gearchiveerd", "activity_3", ":user heeft klant :client verwijderd", "activity_4", ":user heeft factuur :invoice aangemaakt", "activity_5", ":user heeft factuur :invoice bijgewerkt", "activity_6", ":user heeft factuur :invoice voor :client naar :contact verstuurd", "activity_7", ":contact heeft factuur :invoice voor :client bekeken", "activity_8", ":user heeft factuur :invoice gearchiveerd", "activity_9", ":user heeft factuur :invoice verwijderd", "activity_10", ":contact heeft betaling :payment van :payment_amount ingevoerd voor factuur :invoice voor :client", "activity_11", ":user heeft betaling :payment bijgewerkt", "activity_12", ":user heeft betaling :payment gearchiveerd", "activity_13", ":user heeft betaling :payment verwijderd", "activity_14", ":user heeft :credit krediet ingevoerd", "activity_15", ":user heeft :credit krediet bijgewerkt", "activity_16", ":user heeft :credit krediet gearchiveerd", "activity_17", ":user heeft :credit krediet verwijderd", "activity_18", ":user heeft offerte :quote aangemaakt", "activity_19", ":user heeft offerte :quote bijgewerkt", "activity_20", ":user heeft offerte :quote voor :client verstuurd naar :contact", "activity_21", ":contact heeft offerte :quote bekeken", "activity_22", ":user heeft offerte :quote gearchiveerd", "activity_23", ":user heeft offerte :quote verwijderd", "activity_24", ":user heeft offerte :quote hersteld", "activity_25", ":user heeft factuur :invoice hersteld", "activity_26", ":user heeft klant :client hersteld", "activity_27", ":user heeft betaling :payment hersteld", "activity_28", ":user heeft :credit krediet hersteld", "activity_29", ":contact heeft offerte :quote goedgekeurd voor :client", "activity_30", ":user heeft leverancier :vendor aangemaakt", "activity_31", ":user heeft leverancier :vendor gearchiveerd", "activity_32", ":user heeft leverancier :vendor verwijderd", "activity_33", ":user heeft leverancier :vendor hersteld", "activity_34", ":user heeft uitgave :expense aangemaakt", "activity_35", ":user heeft uitgave :expense gearchiveerd", "activity_36", ":user heeft uitgave :expense verwijderd", "activity_37", ":user heeft uitgave :expense hersteld", "activity_39", ":user heeft een a :payment_amount betaling geannuleerd :payment", "activity_40", ":user heeft :adjustment van een :payment_amount betaling :payment", "activity_41", "Betaling van :payment_amount mislukt (:payment)", "activity_42", ":user heeft taak :task aangemaakt", "activity_43", ":user heeft taak :task bijgewerkt", "activity_44", ":user heeft taak :task gearchiveerd", "activity_45", ":user heeft taak :task verwijderd", "activity_46", ":user heeft taak :task hersteld", "activity_47", ":user heeft uitgave :expense bijgewerkt", "activity_48", ":user heeft ticket :ticket bijgewerkt", "activity_49", ":user heeft ticket :ticket gesloten", "activity_50", ":user heeft ticket :ticket samengevoegd", "activity_51", ":user heeft ticket :ticket gesplitst", "activity_52", ":contact heeft ticket :ticket geopend", "activity_53", ":contact heeft ticket :ticket heropend", "activity_54", ":user heeft ticket :ticket heropend", "activity_55", ":contact heeft op ticket :ticket gereageerd", "activity_56", ":user heeft ticket :ticket bekeken", "activity_57", "Systeem kon de factuur niet mailen :invoice", "activity_58", ":gebruiker teruggedraaide factuur :factuur", "activity_59", ":gebruiker geannuleerde factuur :factuur", "activity_60", ":contact heeft de offerte :quote bekeken", "activity_61", ":user heeft de klant :client aangepast", "activity_62", ":user heeft de leverancier :vendor gewijzigd", "activity_63", ":user heeft de eerste herinnering voor factuur :invoice naar :contact verzonden", "activity_64", ":user heeft de tweede herinnering voor factuur :invoice naar :contact verzonden", "activity_65", ":user heeft de derde herinnering voor factuur :invoice naar :contact verzonden", "activity_66", ":user heeft eindeloze herinneringen voor factuur :invoice naar :contact verzonden", "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Eenmalig wachtwoord", "emailed_quote", "De offerte is gemaild", "emailed_credit", "Krediet is verzonden", _s20_51, "De offerte is gemarkeerd als verzonden", _s21_59, "Krediet is gemarkeerd als verzonden", "expired", "Verlopen", "all", "Alles", "select", "Selecteer", _s22_38, "Lang indrukken multiselect", "custom_value1", _s17_129, "custom_value2", _s17_129, "custom_value3", "Aangepaste waarde 3", "custom_value4", "Aangepaste waarde 4", _s18_75, "Aangepaste Email Stijl", _s24_35, "Aangepast bericht Dashboard", _s29_31, "Aangepast bericht Onbetaalde Factuur", _s27_41, "Aangepast bericht Betaalde Factuur", _s31_10, "Aangepast bericht Niet goedgekeurde Offerte", "lock_invoices", "Vergrendel facturen", "translations", "Vertalingen", _s19_43, "Taaknummer patroon", _s19_45, "Taaknummer teller", _s22_40, "Uitgave nummer patroon", _s22_42, "Uitgave nummer teller", _s21_60, "Leverancier nummer patroon", _s21_62, "Leverancier nummer teller", _s21_64, "Ticket nummer patroon", _s21_66, "Ticket nummer teller", _s22_44, "Betalingsnummer patroon", _s22_46, "Betalingsnummer teller", _s22_48, "Factuur nummer patroon", _s22_50, "Factuurnummerteller", _s20_52, "Offertenummer teller", _s20_54, "Offertenummerteller", _s21_68, _s21_83, _s21_70, _s20_66, _s21_72, _s21_83, _s21_73, _s20_66, _s18_77, "Teller datum resetten", "counter_padding", "Teller patroon", _s28_51, "Gedeelde factuur offerte teller", _s18_79, "Standaard BTW naam 1", _s18_81, "Standaard BTW-tarief 1", _s18_83, "Standaard BTW naam 2", _s18_85, "Standaard BTW-tarief 2", _s18_87, "Standaard BTW naam 3", _s18_89, "Standaard BTW-tarief 3", _s21_74, "E-mail factuur onderwerp", _s19_47, "E-mail offerte onderwerp", _s21_76, "E-mail betaling onderwerp", _s29_33, "E-mail gedeeltelijke betalingsonderwerp", "show_table", "Weergeef als tabel", "show_list", "Weergeef als lijst", "client_city", "Klant stad", "client_state", "Klant provincie", "client_country", "Land van de klant", _s16_193, "Klant is actief", "client_balance", "Klanten balans", "client_address1", "Klant straat", "client_address2", "Klant apt/suite", "vendor_address1", "Leverancier straatnaam", "vendor_address2", "Leverancier Apt / Suite", _s24_37, "Klant leveringsadres", _s24_38, "Klant leverings Apt/Suite", "type", "Type", "invoice_amount", "Factuurbedrag", _s16_197, "Vervaldatum", "tax_rate1", "BTW-tarief 1", "tax_rate2", "BTW-tarief 2", "tax_rate3", "BTW-tarief 3", "auto_bill", "Automatische incasso", "archived_at", "Gearchiveerd op", "has_expenses", "Heeft uitgaves", "custom_taxes1", "Aangepaste Belastingen 1", "custom_taxes2", "Aangepaste Belastingen 2", "custom_taxes3", "Aangepaste Belastingen 3", "custom_taxes4", "Aangepaste Belastingen 4", _s17_113, _s20_62, _s17_114, _s20_63, _s17_115, _s20_64, _s17_116, _s20_65, "is_deleted", "Is verwijderd", "vendor_city", "Stad van de klant", "vendor_state", "Leverancier provincie", "vendor_country", "Land van de verkoper", "is_approved", "Is goedgekeurd", "tax_name", "Belasting naam", "tax_amount", "BTW", "tax_paid", "Betaalde Belasting", "payment_amount", "Betalingsbedrag", "age", "Leeftijd", "is_running", "Word uitgevoerd", "time_log", "Tijdschema", "bank_id", "Bank", _s19_49, "Uitgave categorie ID", _s16_198, _s16_225, _s19_51, "Factuur valuta ID", "tax_name1", "BTW naam 1", "tax_name2", "BTW naam 2", "tax_name3", "BTW naam 3", "transaction_id", "Transactie ID", "color_theme", "Kleuren thema"], t1, t1), "en_AU", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Enable", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, "Customer ID Number", "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Scan the barcode with a :link compatible app.", _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, _s18_18, _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, "Enable customers to upload documents", "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Colour", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_1, _s29_1, "select_file", _s20_67, _s16_32, _s16_33, "csv_file", "CSV file", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, "Warning: this company has not been activated yet\xa0", "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Customer Name", "client_phone", "Customer Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, "Invoice Task Time Log", _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark as Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s17_32, _s18_29, _s18_30, _s21_25, _s21_26, _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Billing On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", _s17_130, _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Customer Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "Taxes", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", "Allow third-party apps to create invoices", "client_created", "Customer Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Customer Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, _s17_42, _s17_43, "Overdue Invoices", "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Customer", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create supplier", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Delete Invoice", "update_client", "Update Customer", "delete_client", "Delete Customer", "delete_payment", "Delete Payment", "update_vendor", "Update Supplier", "delete_vendor", "Delete Supplier", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_9, "updated_token", _s26_10, "archived_token", _s27_12, "deleted_token", _s26_11, "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, "Customer Registration", _s24_19, "Enable customers to self register in the portal", _s21_27, "Customise & Preview", "email_invoice", "Email Invoice", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, "Customer does not have an email address set", "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Customers", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Suppliers", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Customer", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Supplier", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, "City/State/Postcode", _s17_57, "Postcode/City/State", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Customer Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_53, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_19, _s69_0, "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", _s27_18, "updated_credit", _s27_19, "archived_credit", _s28_13, "deleted_credit", _s27_20, "removed_credit", _s27_21, "restored_credit", _s28_14, _s16_71, _s36_13, "deleted_credits", _s35_14, _s16_72, _s36_3, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Learn more", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Customer 1", "client2", "Custom Customer 2", "client3", "Custom Customer 3", "client4", "Custom Customer 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Supplier 1", "vendor2", "Custom Supplier 2", "vendor3", "Custom Supplier 3", "vendor4", "Custom Supplier 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Credit Balance", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Delivery Street", _s17_64, "Delivery Unit/Suite", "shipping_city", "Delivery Town/Suburb", "shipping_state", "Delivery State", _s20_33, "Delivery Postcode", _s16_103, "Delivery Country", _s16_105, "Billing Street", _s16_106, "Billing Unit/Suite", "billing_city", "Billing Town/Suburb", "billing_state", "Billing State", _s19_19, "Billing Postcode", "billing_country", "Billing Country", "client_id", "Customer Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multi-select", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Message", "from", "From", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Line Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, "Customer Portal Tasks", _s23_15, "Customer Portal Dashboard", _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive of Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s24_44, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Tax Settings", _s18_55, "Tax Rates", "accent_color", "Accent Colour", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, _s21_84, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Quote Email", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_22, "updated_user", _s25_23, "archived_user", _s26_18, "deleted_user", _s25_24, "removed_user", _s25_25, "restored_user", _s26_19, "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s16_123, "invoice_options", "Invoice Options", _s17_70, _s17_71, _s22_27, _s87_, _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Colour", "secondary_color", _s16_228, "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "Invoice Terms", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, "Automatically convert a quote to an invoice when approved by a customer.", _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Fortnightly", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Customer Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Supplier Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, "Show the customer signature on the invoice/quote PDF.", _s25_27, _s22_28, _s30_5, "Require customer to confirm that they accept the invoice terms.", _s23_21, _s20_43, _s28_16, "Require customer to confirm that they accept the quote terms.", _s25_28, _s17_81, _s30_6, "Require customer to provide their signature.", _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorisation", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Regards,", _s24_21, "Make it easier for your customers to pay you by adding schema.org markup to your emails.", "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percentage", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Update Address", _s19_28, "Update customer's address with provided details", "rate", "Rate", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, _s34_16, _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s18_100, _s18_64, "Selecting a product will automatically fill in the description and price", "update_products", _s20_68, _s20_44, _s65_0, _s16_136, _s16_137, _s21_47, "Automatically convert product prices to the customer's currency", "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, "Filtered by Customer", _s18_68, "Filtered by Supplier", "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, _s16_143, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_87, _s17_88, "company_details", "Company Details", "user_details", "User Details", "localization", "Localisation", "online_payments", "Online Payments", "tax_rates", "Tax Rates", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, _s19_58, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, _s16_145, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Download", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Converted", _s24_27, _s24_39, "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "Mark as Paid", "category", "Category", "address", "Address", "new_vendor", "New Supplier", "created_vendor", "Successfully created supplier", "updated_vendor", "Successfully updated supplier", "archived_vendor", "Successfully archived supplier", "deleted_vendor", "Successfully deleted supplier", "restored_vendor", "Successfully restored supplier", _s16_152, "Successfully archived :count suppliers", "deleted_vendors", "Successfully deleted :count suppliers", _s16_153, "Successfully restored :value suppliers", "new_expense", "Enter Expense", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s29_44, _s17_94, _s37_9, "copy_shipping", "Copy Delivery", "copy_billing", "Copy Billing Address", "design", "Design", _s21_52, _s21_53, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_6, "start", "Start", "stop", "Stop", "started_task", _s25_34, "stopped_task", _s25_35, "resumed_task", _s25_36, "now", "Now", _s16_157, _s16_158, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_37, "updated_task", _s25_38, "archived_task", _s26_23, "deleted_task", _s25_39, "restored_task", _s26_24, "archived_tasks", _s34_17, "deleted_tasks", _s33_17, "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "click here", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Customer", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Supplier", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Billing Address", _s16_164, "Delivery Address", "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", _s20_56, "active_clients", "active customers", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Secret", "name", "Name", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_100, _s17_101, "paid_to_date", "Paid to Date", "balance_due", "Balance Due", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "Phone", "website", "Website", "vat_number", "ABN", "id_number", "ACN", "create", "Create", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Customer Contacts", "additional", "Additional", "first_name", "First Name", "last_name", "Last Name", "add_contact", "Add contact", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_30, "updated_product", _s28_31, _s16_172, _s29_19, "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Product", "notes", "Notes", "cost", "Price", "client", "Customer", "clients", "Customers", "new_client", "New Customer", "created_client", "Successfully created customer", "updated_client", "Successfully updated customer", "archived_client", "Successfully archived customer", _s16_175, "Successfully archived :count customers", "deleted_client", "Successfully deleted customer", "deleted_clients", "Successfully deleted :count customers", "restored_client", "Successfully restored customer", _s16_176, "Successfully restored :value customers", "address1", "Street", "address2", "Unit/Suite", "city", "Town/Suburb", "state", "State", "postal_code", "Postcode", "country", "Country", "invoice", "Invoice", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_35, "updated_invoice", _s28_36, _s16_177, _s29_21, "deleted_invoice", _s28_37, _s16_178, _s29_22, _s17_104, _s37_18, _s16_179, _s36_14, _s17_105, _s37_12, "emailed_invoice", _s28_61, "emailed_payment", _s28_53, "amount", "Amount", "invoice_number", "Invoice Number", "invoice_date", "Invoice Date", "discount", "Discount", "po_number", "PO Number", "terms", "Payment Terms", "public_notes", "Public Notes", "private_notes", "Private Notes", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", _s23_36, "description", "Description", "unit_cost", "Unit Cost", "quantity", "Quantity", "add_item", "Add Item", "contact", "Contact", "work_phone", "Phone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Due Date", _s16_180, "Partial Payment Due Date", "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s24_44, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Settings", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "GST", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Overdue", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", _s23_36, "paid", "Paid", "mark_sent", "Mark as Sent", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Done", _s37_13, "Please enter a customer or contact name", "dark_mode", "Dark Mode", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_182, _s16_183, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Payment Terms", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Customer Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", "Email payment receipt to the customer", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customise", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, _s21_58, "enter_payment", "Enter Payment", "new_payment", "Enter Payment", "created_payment", _s28_38, "updated_payment", _s28_39, _s16_190, _s29_23, "deleted_payment", _s28_40, _s16_191, _s29_24, _s17_109, _s37_19, _s16_192, _s36_15, _s17_110, _s37_15, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_29, "updated_quote", _s26_30, "archived_quote", _s27_37, "deleted_quote", _s26_31, "restored_quote", _s27_38, "archived_quotes", _s35_15, "deleted_quotes", _s34_18, "restored_quotes", _s35_13, "expense", "Expense", "expenses", "Expenses", "vendor", "Supplier", "vendors", "Suppliers", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", ":user created customer :client", "activity_2", ":user archived customer :client", "activity_3", ":user deleted customer :client", "activity_4", _s30_15, "activity_5", _s30_16, "activity_6", _s54_0, "activity_7", _s44_, "activity_8", _s31_3, "activity_9", _s30_17, "activity_10", _s85_0, "activity_11", _s30_18, "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", _s50_4, "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", ":user restored customer :client", "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", _s42_9, "activity_30", ":user created supplier :vendor", "activity_31", ":user archived supplier :vendor", "activity_32", ":user deleted supplier :vendor", "activity_33", ":user restored supplier :vendor", "activity_34", _s30_20, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", ":user updated customer :client", "activity_62", ":user updated supplier :vendor", "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", _s26_38, "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Select", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, "Supplier Number Pattern", _s21_62, "Supplier Number Counter", _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, _s22_51, _s20_52, _s20_53, _s20_54, _s20_55, _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Customer Suburb", "client_state", "Customer State", "client_country", "Customer Country", _s16_193, "Customer is Active", "client_balance", "Customer Balance", "client_address1", "Customer Street", "client_address2", "Customer Unit/Suite", "vendor_address1", "Supplier Street", "vendor_address2", "Supplier Unit/Suite", _s24_37, "Customer Delivery Street", _s24_38, "Customer Delivery Unit/Suite", "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Supplier Suburb", "vendor_state", "Supplier State", "vendor_country", "Supplier Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "GST Amount", "tax_paid", "GST Paid", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Colour Theme"], t1, t1), "en_GB", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Enable", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, _s18_18, _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Hide", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Column", "sample", "Sample", "map_to", "Map To", "import", "Import", _s25_1, _s29_1, "select_file", _s20_67, _s16_32, _s16_33, "csv_file", "CSV file", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Invoice Total", "quote_total", "Quote Total", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s17_32, _s18_29, _s18_30, _s21_25, _s21_26, _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", _s17_130, _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "Taxes", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "Payment Type", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, _s17_42, _s17_43, _s17_44, "recent_payments", "Recent Payments", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Create Invoice", "create_quote", "Create Quote", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "Delete Invoice", "update_client", "Update Client", "delete_client", "Delete Client", "delete_payment", "Delete Payment", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Create Task", "update_task", "Update Task", "delete_task", "Delete Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_9, "updated_token", _s26_10, "archived_token", _s27_12, "deleted_token", _s26_11, "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Email Invoice", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Credit Amount", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_53, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Delete Account", _s22_19, _s69_0, "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "Credit Date", "credit", "Credit", "credits", "Credits", "new_credit", "Enter Credit", "edit_credit", "Edit Credit", "created_credit", _s27_18, "updated_credit", _s27_19, "archived_credit", _s28_13, "deleted_credit", _s27_20, "removed_credit", _s27_21, "restored_credit", _s28_14, _s16_71, _s36_13, "deleted_credits", _s35_14, _s16_72, _s36_3, "current_version", "Current version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Learn more", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Export", "chart", "Chart", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "Credit Balance", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Report", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Help", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Message", "from", "From", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Line Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Tax Settings", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, _s21_84, "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Quote Email", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "User Management", "users", "Users", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_22, "updated_user", _s25_23, "archived_user", _s26_18, "deleted_user", _s25_24, "removed_user", _s25_25, "restored_user", _s26_19, "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s16_123, "invoice_options", "Invoice Options", _s17_70, _s17_71, _s22_27, _s87_, _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Colour", "secondary_color", _s16_228, "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "Invoice Terms", "invoice_footer", "Invoice Footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Fortnightly", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Custom CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorisation", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Regards,", _s24_21, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Update Address", _s19_28, _s45_1, "rate", "Rate", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, _s34_16, _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s18_100, _s18_64, _s71_, "update_products", _s20_68, _s20_44, _s65_0, _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Sunday", "monday", "Monday", "tuesday", "Tuesday", "wednesday", "Wednesday", "thursday", "Thursday", "friday", "Friday", "saturday", "Saturday", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, _s16_143, "device_settings", "Device Settings", "defaults", "Defaults", "basic_settings", "Basic Settings", _s17_87, _s17_88, "company_details", "Company Details", "user_details", "User Details", "localization", "Localisation", "online_payments", "Online Payments", "tax_rates", "Tax Rates", "notifications", "Notifications", "import_export", "Import | Export", "custom_fields", "Custom Fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Email Settings", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, _s19_58, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, _s16_145, "privacy_policy", "Privacy Policy", "sign_up", "Sign Up", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Download", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "Pending", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Converted", _s24_27, _s24_39, "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "Mark Paid", "category", "Category", "address", "Address", "new_vendor", "New Vendor", "created_vendor", _s27_27, "updated_vendor", _s27_28, "archived_vendor", _s28_21, "deleted_vendor", _s27_29, "restored_vendor", _s28_22, _s16_152, "Successfully archived :count vendors", "deleted_vendors", "Successfully deleted :count vendors", _s16_153, _s36_5, "new_expense", "Enter Expense", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s29_44, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_6, "start", "Start", "stop", "Stop", "started_task", _s25_34, "stopped_task", _s25_35, "resumed_task", _s25_36, "now", "Now", _s16_157, _s16_158, "timer", "Timer", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Start Time", "end_time", "End Time", "date", "Date", "times", "Times", "duration", "Duration", "new_task", "New Task", "created_task", _s25_37, "updated_task", _s25_38, "archived_task", _s26_23, "deleted_task", _s25_39, "restored_task", _s26_24, "archived_tasks", _s34_17, "deleted_tasks", _s33_17, "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "click here", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Footer", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Custom", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "View Invoice", "convert", "Convert", "more", "More", "edit_client", "Edit Client", "edit_product", "Edit Product", "edit_invoice", "Edit Invoice", "edit_quote", "Edit Quote", "edit_payment", "Edit Payment", "edit_task", "Edit Task", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Billing Address", _s16_164, _s16_165, "total_revenue", "Total Revenue", "average_invoice", "Average Invoice", "outstanding", "Outstanding", "invoices_sent", _s20_56, "active_clients", "active clients", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Secret", "name", "Name", "logout", "Log Out", "login", "Login", "filter", "Filter", "sort", "Sort", "search", "Search", "active", "Active", "archived", "Archived", "deleted", "Deleted", "dashboard", "Dashboard", "archive", "Archive", "delete", "Delete", "restore", "Restore", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Save", _s17_100, _s17_101, "paid_to_date", "Paid to Date", "balance_due", "Balance Due", "balance", "Balance", "overview", "Overview", "details", "Details", "phone", "Phone", "website", "Website", "vat_number", "VAT Number", "id_number", "ID Number", "create", "Create", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Contacts", "additional", "Additional", "first_name", "First Name", "last_name", "Last Name", "add_contact", "Add contact", "are_you_sure", "Are you sure?", "cancel", "Cancel", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Product", "products", "Products", "new_product", "New Product", "created_product", _s28_30, "updated_product", _s28_31, _s16_172, _s29_19, "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Product", "notes", "Notes", "cost", "Cost", "client", "Client", "clients", "Clients", "new_client", "New Client", "created_client", _s27_31, "updated_client", _s27_32, "archived_client", _s28_33, _s16_175, _s36_16, "deleted_client", _s27_33, "deleted_clients", _s35_16, "restored_client", _s28_34, _s16_176, _s36_7, "address1", "Street", "address2", "Apt/Suite", "city", "City", "state", "State/Province", "postal_code", "Postal Code", "country", "Country", "invoice", "Invoice", "invoices", "Invoices", "new_invoice", "New Invoice", "created_invoice", _s28_35, "updated_invoice", _s28_36, _s16_177, _s29_21, "deleted_invoice", _s28_37, _s16_178, _s29_22, _s17_104, _s37_18, _s16_179, _s36_14, _s17_105, _s37_12, "emailed_invoice", _s28_61, "emailed_payment", _s28_53, "amount", "Amount", "invoice_number", "Invoice Number", "invoice_date", "Invoice Date", "discount", "Discount", "po_number", "PO Number", "terms", "Terms", "public_notes", "Public Notes", "private_notes", "Private Notes", "frequency", "Frequency", "start_date", "Start Date", "end_date", "End Date", "quote_number", "Quote Number", "quote_date", "Quote Date", "valid_until", "Valid Until", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Description", "unit_cost", "Unit Cost", "quantity", "Quantity", "add_item", "Add Item", "contact", "Contact", "work_phone", "Phone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Due Date", _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Settings", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Tax", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "Paid", "mark_sent", "Mark Sent", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Done", _s37_13, _s37_14, "dark_mode", "Dark Mode", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Activity", _s16_182, _s16_183, "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Payment Terms", "payment_date", "Payment Date", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Subject", "body", "Body", "send_email", "Send Email", "email_receipt", _s35_12, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customise", "history", "History", "payment", "Payment", "payments", "Payments", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, _s21_58, "enter_payment", "Enter Payment", "new_payment", "Enter Payment", "created_payment", _s28_38, "updated_payment", _s28_39, _s16_190, _s29_23, "deleted_payment", _s28_40, _s16_191, _s29_24, _s17_109, _s37_19, _s16_192, _s36_15, _s17_110, _s37_15, "quote", "Quote", "quotes", "Quotes", "new_quote", "New Quote", "created_quote", _s26_29, "updated_quote", _s26_30, "archived_quote", _s27_37, "deleted_quote", _s26_31, "restored_quote", _s27_38, "archived_quotes", _s35_15, "deleted_quotes", _s34_18, "restored_quotes", _s35_13, "expense", "Expense", "expenses", "Expenses", "vendor", "Vendor", "vendors", "Vendors", "task", "Task", "tasks", "Tasks", "project", "Project", "projects", "Projects", "activity_1", _s28_41, "activity_2", _s29_25, "activity_3", _s28_42, "activity_4", _s30_15, "activity_5", _s30_16, "activity_6", _s54_0, "activity_7", _s44_, "activity_8", _s31_3, "activity_9", _s30_17, "activity_10", _s85_0, "activity_11", _s30_18, "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", _s50_4, "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", _s29_27, "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s30_20, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", _s26_38, "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Select", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, _s22_51, _s20_52, _s20_53, _s20_54, _s20_55, _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "Due Date", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Payment Amount", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "fi", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Tuo tietoja", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "viime p\xe4ivitetty", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "kontakti ensimm\xe4inen nimi", _s17_1, "kontakti viime nimi", "order", "Order", "unassigned", "Kohdistamaton", "partial_value", "T\xe4ytyy olla suurempi kuin nolla ja v\xe4hemm\xe4n kuin kaikki yhteens\xe4", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Ota k\xe4ytt\xf6\xf6n", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Aseta alidomain tai n\xe4yt\xe4 lasku omalla verkkosivullasi.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, "muokkaa tilaus", _s20_1, "onnistuneesti luotu tilaus", _s20_2, "onnistuneesti p\xe4ivitetty tilaus", _s21_6, "onnistuneesti arkistoitu tilaus", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Scan bar koodi a :link compatible app.", _s18_14, "Kaksivaiheinen tunnistautuminen otettu onnistuneesti k\xe4ytt\xf6\xf6n", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Kaksivaiheinen tunnistautuminen", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Hyvitetty maksu", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "viime Quarter", "to_update_run", "To update run", _s18_17, "Muuta laskuksi", _s16_24, _s16_25, "invoice_project", "Lasku projekti", "invoice_task", "Laskuta teht\xe4v\xe4", "invoice_expense", "Lasku kulu", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "Converted m\xe4\xe4r\xe4", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "oletus Documents", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Piilota", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Sarake", "sample", "Otos", "map_to", "Map To", "import", "Tuo", _s25_1, _s29_1, "select_file", "yst\xe4v\xe4llisesti valitsee tiedosto", _s16_32, _s16_33, "csv_file", "CSV tiedosto", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Maksamaton", "white_label", "White Label", "delivery_note", "Delivery Huom", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Maksettava", "quote_total", "Tarjouksen loppusumma", "credit_total", "luotto yhteens\xe4", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Varoitus", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Asiakkaan nimi", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "Onnistuneesti p\xe4ivitetty teht\xe4v\xe4n tila", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, "Lis\xe4\xe4 aikatieto laskun tuoteriville", _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "kulu kategoriat", _s20_20, "uusi kulu kategoria", _s21_18, _s21_19, _s24_11, "onnistuneesti luotu kulukategoria", _s24_12, "onnistuneesti p\xe4ivitetty kulukategoria", _s25_5, "onnistuneesti arkistoitu kulu kategoria", _s24_13, "onnistuneesti poistettu category", _s24_14, _s37_2, _s25_6, "onnistuneesti palautettu kulukategoria", _s27_8, "onnistuneesti arkistoitu :count kulu kategoria", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Pit\xe4isi laskuttaa", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Merkitse aktiiviseksi", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "P\xe4\xe4ttym\xe4t\xf6n", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Toistuva lasku", _s18_29, "Toistuvat laskut", _s21_25, "Uusi toistuva lasku", _s22_12, "muokkaa toistuva Lasku", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Toistuva lasku arkistoitu onnistuneesti", _s25_14, "Toistuva lasku poistettu onnistuneesti", _s25_15, _s38_7, _s26_6, "Toistuva lasku palautettu onnistuneesti", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "N\xe4yt\xe4 Portaali", "copy_link", "Copy Link", "token_billing", "Tallenna korttitiedot", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "asiakas numero", "auto_convert", "Auto Convert", "company_name", "yritys nimi", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "onnistuneesti emailed laskut", "emailed_quotes", "L\xe4hetetty onnistuneesti tarjoukset s\xe4hk\xf6postitse", "emailed_credits", _s28_52, "gateway", "Maksunv\xe4litt\xe4j\xe4", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Tuntia", "statement", "tiliote", "taxes", "Verot", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "K\xe4yt\xe4", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Vastaanottaja", "health_check", "Health Check", "payment_type_id", "Maksun tyyppi", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Valitut tarjoukset", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Er\xe4\xe4ntyv\xe4t laskut", _s17_43, _s17_44, "recent_payments", "Viimeisimm\xe4t maksut", "upcoming_quotes", "Tulevat tarjoukset", "expired_quotes", "Vanhentuneet tarjoukset", "create_client", "luo asiakas", "create_invoice", "Luo lasku", "create_quote", "Luo tarjous", "create_payment", "Create Payment", "create_vendor", "Luo kauppias", "update_quote", "P\xe4ivit\xe4 tarjous", "delete_quote", "Poista tarjous", "update_invoice", "Update Invoice", "delete_invoice", "Poista lasku", "update_client", "Update Client", "delete_client", "Poista asiakas", "delete_payment", "Poista maksu", "update_vendor", "P\xe4ivit\xe4 kauppias", "delete_vendor", "Poista kauppias", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Poista kulu", "create_task", "Luo teht\xe4v\xe4", "update_task", "Update Task", "delete_task", "Poista teht\xe4v\xe4", "approve_quote", "Hyv\xe4ksy tarjous", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Ilmainen", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API-salasanat", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokenit", "new_token", "New Token", "edit_token", "Muokkaa tokenia", "created_token", "Token luotu onnistuneesti", "updated_token", "Token p\xe4ivitetty onnistuneesti", "archived_token", "Token arkistoitu onnistuneesti", "deleted_token", "Token poistettu onnistuneesti", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "L\xe4het\xe4 lasku s\xe4hk\xf6postitse", "email_quote", "L\xe4het\xe4 tarjous s\xe4hk\xf6postitse", "email_credit", "Email Credit", "email_payment", "Email maksu", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Yhteyshenkil\xf6n nimi", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Muokkaa maksuaikaa", _s20_29, "onnistuneesti luotu maksu ehto", _s20_30, "onnistuneesti p\xe4ivitetty maksu ehto", _s21_28, "onnistuneesti arkistoitu maksu ehto", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Hyvityksen m\xe4\xe4r\xe4", "quote_amount", "Tarjouksen summa", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Hae tarjouksia", "search_credits", "Search Credits", "search_vendors", "Hae kauppiaita", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Hae 1 tarjous", "search_credit", "Search 1 Credit", "search_vendor", "Hae 1 kauppias", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Hyvitysmaksu", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full nimi", _s17_55, "Kaupunki/Alue/Postitoimipaikka", _s17_57, "Postal/kaupunki/State", "custom1", "ensimm\xe4inen muokattu", "custom2", "toinen muokattu", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, "onnistuneesti purged yritys data", _s18_38, "Warning: t\xe4m\xe4 will pysyv\xe4sti erase sinun data, there is no undo.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 p\xe4iv\xe4\xe4", "age_group_30", "30 - 60 p\xe4iv\xe4\xe4", "age_group_60", "60 - 90 p\xe4iv\xe4\xe4", "age_group_90", "90 - 120 p\xe4iv\xe4\xe4", "age_group_120", "120+ p\xe4iv\xe4\xe4", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Asiakkaan tiedot", "company_address", "Company Address", "invoice_details", "Laskun tiedot", "quote_details", "Tarjouksen tiedot", "credit_details", "Hyvityksen tiedot", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Oikeudet", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count lasku l\xe4hetetty", "quote_sent", "Tarjous l\xe4hetetty", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Tarjous luettu", "credit_viewed", "Credit Viewed", "quote_approved", "Tarjous hyv\xe4ksytty", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "K\xe4yt\xe4 lisenssi", "cancel_account", "Poista tili", _s22_19, "Varoitus: T\xe4m\xe4 poistaa tilisi pysyv\xe4sti. Tietoja ei pysty palauttamaan.", "delete_company", "Poista yritys", _s22_20, "Warning: t\xe4m\xe4 will pysyv\xe4sti poista sinun yritys, there is no undo.", "enabled_modules", "Enabled Modules", "converted_quote", "Tarjous on onnistuneesti muunnettu", "credit_design", "Credit Design", "includes", "Includes", "header", "Yl\xe4tunniste", "load_design", "Load malli", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Ehdotukset", "tickets", "Tickets", _s16_69, "Toistuvat tarjoukset", "recurring_tasks", "Recurring Tasks", _s18_, "toistuva kulut", _s18_39, "K\xe4ytt\xe4j\xe4tilin hallinta", "credit_date", "Hyvityksen p\xe4iv\xe4m\xe4\xe4r\xe4", "credit", "Luotto", "credits", "Hyvitykset", "new_credit", "Anna hyvitys", "edit_credit", "muokkaa luotto", "created_credit", "Hyvitys on luotu onnistuneesti", "updated_credit", "onnistuneesti p\xe4ivitetty luotto", "archived_credit", "Hyvitys on arkistoitu onnistuneesti", "deleted_credit", "Hyvitys on poistettu onnistuneesti", "removed_credit", _s27_21, "restored_credit", "Hyvitys palautettu onnistuneesti", _s16_71, ":count hyvitys(t\xe4) arkistoitu onnistuneesti", "deleted_credits", ":count hyvitys(t\xe4) poistettu onnistuneesti", _s16_72, _s36_3, "current_version", "Nykyinen versio", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Lue lis\xe4\xe4", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Uusi yritys", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Nollaa", "number", "Number", "export", "Vienti", "chart", "Kaavio", "count", "Count", "totals", "Yhteens\xe4", "blank", "Tyhj\xe4", "day", "P\xe4iv\xe4", "month", "Kuukausi", "year", "Vuosi", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Niputa", "credit_balance", "Hyvityksen saldo", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "kontakti puhelin", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Toimitus: Katu", _s17_64, "Toimitus: Asunto/huoneisto", "shipping_city", "Toimitus: Kaupunki", "shipping_state", "Toimitus: Maakunta", _s20_33, "Toimitus: Postinumero", _s16_103, "Toimitus: Maa", _s16_105, "Laskutus: Katu", _s16_106, "Laskutus: Asunto/huoneisto", "billing_city", "Laskutus: Kaupunki", "billing_state", "Laskutus: Maakunta", _s19_19, "Laskutus: Postinumero", "billing_country", "Laskutus: Maa", "client_id", "Asiakkaan tunniste", "assigned_to", "Assigned", "created_by", "luotu by :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit ja Loss", "reports", "Raportit", "report", "Raportti", "add_company", "Lis\xe4\xe4 yritys", "unpaid_invoice", "Maksamatonl lasku", "paid_invoice", "Paid Lasku", _s16_107, "Hyv\xe4ksym\xe4t\xf6n tarjous", "help", "Ohje", "refund", "Hyvitys", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "kontakti Email", "multiselect", "Multiselect", "entity_state", "Osavaltio", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Viesti", "from", "L\xe4hett\xe4j\xe4", _s20_35, "N\xe4yt\xe4 tuotteen tiedot", _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, "Adjust percent tili palkkio", _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Dokumentaatio", "contact_us", "kontakti Us", "subtotal", "V\xe4lisumma", "line_total", "Rivin summa", "item", "Tuote", "credit_email", "Credit Email", "iframe_url", "Verkkosivu", "domain_url", "Domain URL", _s21_36, "salasana on liian lyhyt", _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Kyll\xe4", "no", "Ei", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "N\xe4yt\xe4", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "K\xe4ytt\xe4j\xe4", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Valitse asiakas", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Veroasetukset", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Valinnat", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Palauta salasana", "late_fees", "Viiv\xe4stysmaksut", "credit_number", "luotto numero", "payment_number", "maksu numero", "late_fee_amount", "Late palkkio m\xe4\xe4r\xe4", _s16_116, "Late palkkio Percent", "schedule", "Aikataulu", "before_due_date", "Ennen er\xe4p\xe4iv\xe4\xe4", "after_due_date", "Er\xe4p\xe4iv\xe4n j\xe4lkeen", _s18_57, "Laskun p\xe4iv\xe4yksen j\xe4lkeen", "days", "P\xe4iv\xe4\xe4", "invoice_email", "Laskus\xe4hk\xf6posti", "payment_email", "Maksus\xe4hk\xf6posti", "partial_payment", "Partial Payment", "payment_partial", "Osittainen maksu", _s21_44, _s21_45, "quote_email", "Tarjouss\xe4hk\xf6posti", _s16_118, "Endless muistutus", _s16_120, _s16_121, "administrator", "Yll\xe4pit\xe4j\xe4", _s18_58, "Allow k\xe4ytt\xe4j\xe4 manage users, change asetus ja modify kaikki records", "user_management", "K\xe4ytt\xe4j\xe4nhallinta", "users", "K\xe4ytt\xe4j\xe4t", "new_user", "Uusi k\xe4ytt\xe4j\xe4", "edit_user", "Muokkaa k\xe4ytt\xe4j\xe4", "created_user", "Onnistuneesti luotu k\xe4ytt\xe4j\xe4", "updated_user", "K\xe4ytt\xe4j\xe4 on p\xe4ivitetty onnistuneesti", "archived_user", "K\xe4ytt\xe4j\xe4 arkistoitu onnistuneesti", "deleted_user", "K\xe4ytt\xe4j\xe4 on poistettu onnistuneesti", "removed_user", _s25_25, "restored_user", "K\xe4ytt\xe4j\xe4 palautettu onnistuneesti", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Yleiset asetukset", "invoice_options", "Laskun valinnat", _s17_70, 'Piilota "Maksettu t\xe4h\xe4n asti"', _s22_27, 'N\xe4yt\xe4 "Maksettava p\xe4iv\xe4m\xe4\xe4r\xe4\xe4n menness\xe4" kentt\xe4 laskuillasi vain maksetuilla laskuilla.', _s23_17, "Embed Documents", _s28_15, "Sis\xe4llyt\xe4 liitetyt kuvat laskuun.", _s16_124, "n\xe4yt\xe4 Header on", _s16_125, "N\xe4yt\xe4 alatunniste", "first_page", "ensimm\xe4inen page", "all_pages", "All pages", "last_page", "viime page", "primary_font", "Ensisijainen kirjasin", "secondary_font", "toissijainen kirjasin", "primary_color", "P\xe4\xe4v\xe4ri", "secondary_color", "Apuv\xe4ri", "page_size", "Page Size", "font_size", "Fontin koko", "quote_design", "Tarjouksen muotoilu", "invoice_fields", "Laskun kent\xe4t", "product_fields", "Tuote kent\xe4t", "invoice_terms", "Laskun ehdot", "invoice_footer", "Laskun alatunniste", "quote_terms", "Tarjouksen ehdot", "quote_footer", "Tarjouksen alatunniste", _s18_59, "automaattinen Email", _s23_18, "automaattisesti s\xe4hk\xf6posti toistuva laskut when they on luotu.", _s20_42, _s22_57, _s25_26, "automaattisesti archive laskut when they on paid.", _s18_60, _s22_57, _s23_19, "Arkistoi tarjoukset automaattisesti kun ne on muunnettu laskuiksi.", _s18_61, "Automaattinen muunnos", _s23_20, "Muunna tarjous automaattisesti laskuksi, kun asiakas on hyv\xe4ksynyt tarjouksen.", _s17_72, "Workflow asetukset", "freq_daily", "p\xe4ivitt\xe4in", "freq_weekly", "viikoittain", "freq_two_weeks", "Kaksi viikkoa", "freq_four_weeks", "nelj\xe4 viikkoa", "freq_monthly", "Kuukausittain", "freq_two_months", "Kaksi kuukautta", _s17_74, "kolme kuukautta", _s16_126, "nelj\xe4 kuukautta", "freq_six_months", "Six kuukautta", "freq_annually", "Vuosittain", "freq_two_years", "Kaksi vuotta", _s16_127, "Three Years", "never", "Ei koskaan", "company", "yritys", _s17_75, _s17_76, "charge_taxes", "Veloita veroa", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, "toistuva etuliite", "number_padding", "numero Padding", "general", "General", "surcharge_field", "Surcharge kentt\xe4", "company_field", "yritys kentt\xe4", "company_value", "yritys Value", "credit_field", "luotto kentt\xe4", "invoice_field", "Lasku kentt\xe4", _s17_77, "Lasku Surcharge", "client_field", "asiakas kentt\xe4", "product_field", "Tuote kentt\xe4", "payment_field", "maksu kentt\xe4", "contact_field", "kontakti kentt\xe4", "vendor_field", "Kauppias kentt\xe4", "expense_field", "kulu kentt\xe4", "project_field", "Projekti kentt\xe4", "task_field", "Teht\xe4v\xe4 kentt\xe4", "group_field", "ryhm\xe4 kentt\xe4", "number_counter", "numero Counter", "prefix", "Etuliite", "number_pattern", "numero Pattern", "messages", "Viestit", "custom_css", "Mukautettu CSS", _s17_79, "Muokautettu JavaScript", _s16_130, "n\xe4yt\xe4 on PDF", _s21_46, "N\xe4yt\xe4 asiakkaan allekirjoitus lasku-/tarjous-PDF:ss\xe4.", _s25_27, "Laskun ehdot valintaruutu", _s30_5, "Vaadi asiakasta vahvistamaan, ett\xe4 h\xe4n hyv\xe4ksyy laskun ehdot.", _s23_21, "Tarjouksen ehdot valintaruutu", _s28_16, "Vaadi asiakasta vahvistamaan, ett\xe4 h\xe4n hyv\xe4ksyy tarjouksen ehdot.", _s25_28, "Laskun allekirjoitus", _s30_6, "Vaadi asiakasta t\xe4ytt\xe4m\xe4\xe4n allekirjoitus.", _s23_22, "Tarjouksen allekirjoitus", _s22_29, "salasana suojaa laskut", _s27_23, "Mahdollistaa, ett\xe4 voit antaa salasanan jokaiselle yhteyshenkil\xf6lle. Jos salasana on asetettu, yhteyshenkil\xf6n tulee kirjautua sen avulla sis\xe4\xe4n voidakseen tarkastella laskuja.", "authorization", "Valtuutus", "subdomain", "Alidomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Yst\xe4v\xe4llisesti,", _s24_21, "Tee asiakkaillesi helpommaksi maksaa laskusi ottamalla k\xe4ytt\xf6\xf6n schema.org -merkint\xe4 s\xe4hk\xf6posteissasi.", "plain", "Yksinkertainen", "light", "Vaalea", "dark", "Tumma", "email_design", "S\xe4hk\xf6postin muotoilu", "attach_pdf", "Liit\xe4 PDF", _s16_131, "Liit\xe4 asiakirjoja", "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Ota k\xe4ytt\xf6\xf6n merkint\xe4", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Luottokortti", "bank_transfer", "Pankkisiirto", "priority", "Priority", "fee_amount", "palkkio m\xe4\xe4r\xe4", "fee_percent", "Palkkio prosentti", "fee_cap", "palkkio Cap", "limits_and_fees", "Limits/palkkiot", "enable_min", "Ota k\xe4ytt\xf6\xf6n min", "enable_max", "Ota k\xe4ytt\xf6\xf6n max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Accepted kortti Logos", "credentials", "Tunnukset", "update_address", "P\xe4ivit\xe4 osoite", _s19_28, "P\xe4ivit\xe4 asiakkaan osoite annetuilla tiedoilla", "rate", "Kanta", "tax_rate", "Verokanta", "new_tax_rate", "Uusi verom\xe4\xe4r\xe4", "edit_tax_rate", "Muokkaa verokantaa", _s16_133, "Verokanta luotu onnistuneesti", _s16_134, "Verokanta p\xe4ivitetty onnistuneesti", _s17_82, "Verokanta arkistoitu onnistuneesti", _s16_135, "Verokanta onnistuneesti poistettu", _s17_83, "Verokanta onnistuneesti palautettu", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Lis\xe4\xe4 automaattisesti tuotteita", _s18_64, "Tuotteen valinta t\xe4ytt\xe4\xe4 kuvauksen ja hinnan automaattisesti", "update_products", "P\xe4ivit\xe4 automaattisesti tuotteet", _s20_44, "Laskun p\xe4ivitt\xe4minen p\xe4ivitt\xe4\xe4 tuotetietokannan automaattisesti", _s16_136, "Convert tuotteet", _s21_47, "Muunna automaattisesti tuotehinnat asiakkaan valuuttaan", "fees", "palkkiot", "limits", "Limits", "provider", "Tarjoaja", "company_gateway", "maksu Gateway", _s16_138, "maksu Gateways", _s19_29, "uusi Gateway", _s20_45, "muokkaa Gateway", _s23_23, "onnistuneesti luotu gateway", _s23_24, "onnistuneesti p\xe4ivitetty gateway", _s24_22, "onnistuneesti arkistoitu gateway", _s23_25, "onnistuneesti poistettu gateway", _s24_23, "onnistuneesti palautettu gateway", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Jatka muokkausta", "discard_changes", "Discard Changes", "default_value", "Oletus arvo", "disabled", "Pois k\xe4yt\xf6st\xe4", "currency_format", "Valuutan muoto", _s21_48, "Viikon ensimm\xe4inen p\xe4iv\xe4", _s23_26, "Vuoden ensimm\xe4inen kuukausi", "sunday", "sunnuntai", "monday", "Maanantai", "tuesday", "Tiistai", "wednesday", "Keskiviikko", "thursday", "Torstai", "friday", "Perjantai", "saturday", "Lauantai", "january", "Tammikuu", "february", "Helmikuu", "march", "Maaliskuu", "april", "Huhtikuu", "may", "Toukokuu", "june", "Kes\xe4kuu", "july", "Hein\xe4kuu", "august", "Elokuu", "september", "Syyskuu", "october", "Lokakuu", "november", "Marraskuu", "december", "Joulukuu", "symbol", "Symboli", "ocde", "Koodi", "date_format", "Date Format", "datetime_format", "P\xe4iv\xe4-Aika esitysmuoto", "military_time", "24 tunnin aika", _s18_65, "24 Hour Display", "send_reminders", "l\xe4het\xe4 muistutukset", "timezone", "Aikavy\xf6hyke", _s19_30, _s19_31, _s17_85, "Filtered by ryhm\xe4", _s19_32, "Filtered by Lasku", _s18_66, "Filtered by asiakas", _s18_68, "Suodatettu: Kauppias", "group_settings", "ryhm\xe4 asetukset", "group", "ryhm\xe4", "groups", "ryhm\xe4t", "new_group", "uusi ryhm\xe4", "edit_group", "muokkaa ryhm\xe4", "created_group", "onnistuneesti luotu ryhm\xe4", "updated_group", "onnistuneesti p\xe4ivitetty ryhm\xe4", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Lataa Logo", "uploaded_logo", "Logo onnistuneesti ladattu palvelimelle", "logo", "Logo", "saved_settings", "onnistuneesti saved asetus", _s16_142, "Tuoteasetukset", "device_settings", "Device asetukset", "defaults", "Oletusasetukset", "basic_settings", "Perusasetukset", _s17_87, "Lis\xe4\xe4asetuksia", "company_details", "Yrityksen tiedot", "user_details", "K\xe4ytt\xe4j\xe4tiedot", "localization", "Lokalisointi", "online_payments", "Online maksut", "tax_rates", "Verokannat", "notifications", "S\xe4hk\xf6posti-ilmoitukset", "import_export", "Tuonti | Vienti", "custom_fields", "Mukautetut kent\xe4t", "invoice_design", "Laskun muotoilu", "buy_now_buttons", "Osta nyt napit", "email_settings", "S\xe4hk\xf6postin asetukset", _s23_28, "Pohjat ja muistutukset", _s22_30, "luotto Cards & Banks", _s19_34, "Datan visualisaatiot", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, "kiitos you sinun purchase!", "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, "Annual tilaus", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count k\xe4ytt\xe4j\xe4\xe4", "upgrade", "Upgrade", _s25_32, "Anna etunimi", _s24_25, "Anna sukunimi", _s33_14, "Ole hyv\xe4 ja hyv\xe4ksy palveluehtomme sek\xe4 tietosuojak\xe4yt\xe4nt\xf6mme luodaksesi k\xe4ytt\xe4j\xe4tilin.", "i_agree_to_the", "Hyv\xe4ksyn", _s21_79, "palvelun ehdot", _s19_54, "Tietosuojak\xe4yt\xe4nt\xf6", _s16_144, "K\xe4ytt\xf6ehdot", "privacy_policy", "Privacy Policy", "sign_up", "Rekister\xf6idy", "account_login", "Tiliin kirjautuminen", "view_website", "N\xe4yt\xe4 verkkosivu", "create_account", "Luo k\xe4ytt\xe4j\xe4tili", "email_login", "Email Login", "create_new", "luo uusi", _s18_70, "ei record selected", _s21_51, "save tai peruuta sinun muutokset", "download", "Lataa", _s27_26, "Requires enterprise plan", "take_picture", "Ota kuva", "upload_file", "Lataa tiedosto palvelimelle", "document", "Document", "documents", "Asiakirjat", "new_document", "Uusi asiakirja", "edit_document", "Muokkaa asiakirjaa", _s17_89, "onnistuneesti l\xe4hetetty dokumentti", _s16_146, "onnistuneesti p\xe4ivitetty dokumentti", _s17_90, "onnistuneesti arkistoitu dokumentti", _s16_147, "onnistuneesti poistettu dokumentti", _s17_91, "onnistuneesti palautettu dokumentti", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "ei History", "expense_date", "Kulun p\xe4iv\xe4m\xe4\xe4r\xe4", "pending", "Odottaa vastausta", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Muunnettu", _s24_27, "Lis\xe4\xe4 asiakirjoja laskuun", "exchange_rate", "Exchange Rate", _s16_151, "Muunna valuutta", "mark_paid", "Merkitse maksetuksi", "category", "Kategoria", "address", "Osoite", "new_vendor", "Uusi kauppias", "created_vendor", "Kauppias luotin onnistuneesti", "updated_vendor", "Kauppias on p\xe4ivitetty onnistuneesti", "archived_vendor", "Kauppias on arkistoitu onnistuneesti", "deleted_vendor", "Kauppias on poistettu onnistuneesti", "restored_vendor", "Onnistuneesti palautettu kauppias", _s16_152, ":count kauppias(ta) arkistoitu onnistuneesti", "deleted_vendors", ":count kauppias(ta) poistettu onnistuneesti", _s16_153, _s36_5, "new_expense", "Lis\xe4\xe4 kulu", "created_expense", "onnistuneesti luotu kulu", "updated_expense", "onnistuneesti p\xe4ivitetty kulu", _s16_154, "Kulu arkistoitu onnistuneesti", "deleted_expense", "Kulu poistettu onnistuneesti", _s16_155, "onnistuneesti palautettu kulu", _s17_93, "onnistuneesti arkistoitu kulut", _s16_156, "onnistuneesti poistettu kulut", _s17_94, _s37_9, "copy_shipping", "Kopioi toimitus", "copy_billing", "Kopioi laskutus", "design", "malli", _s21_52, "Failed find record", "invoiced", "Laskutettu", "logged", "Kirjattu", "running", "K\xe4ynniss\xe4", "resume", "Jatka", "task_errors", "Ole hyv\xe4 ja korjaa p\xe4\xe4llek\xe4iset ajat", "start", "Aloitus", "stop", "Lopetus", "started_task", "Onnistuneesti aloitettu teht\xe4v\xe4", "stopped_task", "Teht\xe4v\xe4 lopetettu onnistuneesti", "resumed_task", "Onnistuneesti jatkettu teht\xe4v\xe4\xe4", "now", "Nyt", _s16_157, "Automaattinen teht\xe4vien aloitus", "timer", "Ajastin", "manual", "Manuaalinen", "budgeted", "Budjetoitu", "start_time", "Aloitusaika", "end_time", "Lopetusaika", "date", "P\xe4iv\xe4m\xe4\xe4r\xe4", "times", "Ajat", "duration", "Kesto", "new_task", "Uusi teht\xe4v\xe4", "created_task", "Teht\xe4v\xe4 luotu onnistuneesti", "updated_task", "Teht\xe4v\xe4 p\xe4ivitetty onnistuneesti", "archived_task", "Teht\xe4v\xe4 arkistoitu onnistuneesti", "deleted_task", "Teht\xe4v\xe4 poistettu onnistuneesti", "restored_task", "Teht\xe4v\xe4 palautettu onnistuneesti", "archived_tasks", ":count teht\xe4v\xe4\xe4 arkistoitu onnistuneesti", "deleted_tasks", ":count teht\xe4v\xe4\xe4 poistettu onnistuneesti", "restored_tasks", _s34_14, _s19_38, "Ole hyv\xe4 ja anna nimi", "budgeted_hours", "Budjetoidut ty\xf6tunnit", "created_project", "Onnistuneesti luotu projekti", "updated_project", "Onnistuneesti p\xe4ivitetty projekti", _s16_159, "Onnistuneesti arkistoitu projekti", "deleted_project", "Projekti poistettu onnistuneesti", _s16_160, "Onnistuneesti palautettu projekti", _s17_95, "Onnistuneesti arkistoitu :count projekti(a)", _s16_161, "Onnistuneesti poistettu :count projekti(a)", _s17_96, _s37_10, "new_project", "Uusi projekti", _s27_30, "kiitos you using our app!", "if_you_like_it", _s21_54, "click_here", "klikkaa t\xe4st\xe4", _s18_74, "Click here", "to_rate_it", "rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, "authenticate change this asetus", "locked", "Locked", "authenticate", "Authenticate", _s19_40, "authenticate", _s24_28, _s24_29, "footer", "Alatunniste", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "t\xe4n\xe4\xe4n", "custom_range", "muokattu Range", "date_range", "P\xe4iv\xe4m\xe4\xe4r\xe4v\xe4li", "current", "nykyinen", "previous", "Previous", "current_period", "nykyinen kausi", _s17_98, "Comparison kausi", "previous_period", "Previous kausi", "previous_year", "Previous Year", "compare_to", "Compare", "last7_days", "viime 7 p\xe4iv\xe4\xe4", "last_week", "viime viikko", "last30_days", "viime 30 p\xe4iv\xe4\xe4", "this_month", "t\xe4m\xe4 kuukausi", "last_month", "viime kuukausi", "this_year", "t\xe4m\xe4 Year", "last_year", "viime Year", "custom", "Mukautettu", _s16_162, "kloonaa Lasku", "clone_to_quote", "Kopioi tarjous", "clone_to_credit", "Clone to Credit", "view_invoice", "Katso lasku", "convert", "Convert", "more", "Lis\xe4\xe4", "edit_client", "Muokkaa asiakas", "edit_product", "Muokkaa tuote", "edit_invoice", "Muokkaa laskua", "edit_quote", "Muokkaa tarjousta", "edit_payment", "Muokkaa maksua", "edit_task", "Muokkaa teht\xe4v\xe4", "edit_expense", "muokkaa kulu", "edit_vendor", "Muokkaa kauppiasta", "edit_project", "Muokkaa projektia", _s22_, "muokkaa toistuva kulu", _s20_47, "Muokkaa toistuvaa tarjousta", "billing_address", "Laskutusosoite", _s16_164, "Toimitusosoite", "total_revenue", "Kokonaistulot", "average_invoice", "Laskujen keskiarvo", "outstanding", "Maksamattomat laskut", "invoices_sent", ":count laskua l\xe4hetetty", "active_clients", "Aktiiviset asiakkaat", "close", "Sulje", "email", "S\xe4hk\xf6posti", "password", "Salasana", "url", "URL", "secret", "Secret", "name", "Nimi", "logout", "Kirjaudu ulos", "login", "Kirjaudu sis\xe4\xe4n", "filter", "Suodata", "sort", "Sort", "search", "Etsi", "active", "Aktiivinen", "archived", "Arkistoitu", "deleted", "Poistettu", "dashboard", "Hallintapaneeli", "archive", "Arkisto", "delete", "Poista", "restore", "Palauta", _s16_166, _s16_167, _s23_29, "Anna s\xe4hk\xf6postiosoitteesi", _s26_25, "Anna salasanasi", _s21_55, "Anna sinun URL-osoitteesi", _s26_27, "Anna tuoteavain", "ascending", "Ascending", "descending", "Descending", "save", "Tallenna", _s17_100, "virhe occurred", "paid_to_date", "Maksettu t\xe4h\xe4n menness\xe4", "balance_due", "Avoin lasku", "balance", "Saldo", "overview", "Yleiskatsaus", "details", "Tiedot", "phone", "Puhelin", "website", "Kotisivu", "vat_number", "ALV-numero", "id_number", "Asiakasnumero", "create", "Luo", _s19_42, "Copied :arvo clipboard", "error", "Virhe", _s16_168, _s16_169, "contacts", "Yhteystiedot", "additional", "Lis\xe4ksi", "first_name", "Etunimi", "last_name", "Sukunimi", "add_contact", "Lis\xe4\xe4 yhteystieto", "are_you_sure", "Oletko varma?", "cancel", "Peruuta", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Tuote", "products", "Tuotteet", "new_product", "Uusi tuote", "created_product", "Tuote on luotu onnistuneesti", "updated_product", "Tuote on p\xe4ivitetty onnistuneesti", _s16_172, "Tuote on arkistoitu onnistuneesti", "deleted_product", "onnistuneesti poistettu tuote", _s16_173, "onnistuneesti palautettu tuote", _s17_102, "onnistuneesti arkistoitu :count tuotteet", _s16_174, "onnistuneesti poistettu :count tuotteet", _s17_103, _s37_11, "product_key", "Tuote", "notes", "Viestit", "cost", "Hinta", "client", "Asiakas", "clients", "Asiakkaat", "new_client", "Uusi asiakas", "created_client", "Luotin onnistuneesti asiakas", "updated_client", "Asiakas on p\xe4ivitetty onnistuneesti", "archived_client", "Asiakas on arkistoitu onnistuneesti", _s16_175, _s43_1, "deleted_client", "Asiakas on poistettu onnistuneesti", "deleted_clients", ":count asiakas(ta) poistettu onnistuneesti", "restored_client", "Asiakas palautettu onnistuneesti", _s16_176, _s36_7, "address1", "Katu", "address2", "Asunto", "city", "Kaupunki", "state", "L\xe4\xe4ni", "postal_code", "Postinumero", "country", "Maa", "invoice", "Lasku", "invoices", "Laskut", "new_invoice", "Uusi lasku", "created_invoice", "Lasku luotiin onnistuneesti", "updated_invoice", "Lasku p\xe4ivitettiin onnistuneesti", _s16_177, "Lasku arkistoitiin onnistuneesti", "deleted_invoice", "Lasku poistettiin onnistuneesti", _s16_178, "Lasku palautettu onnistuneesti", _s17_104, _s43_1, _s16_179, ":count laskua poistettiin onnistuneesti", _s17_105, _s37_12, "emailed_invoice", "Lasku l\xe4hetettiin onnistuneesti", "emailed_payment", "onnistuneesti emailed maksu", "amount", "M\xe4\xe4r\xe4", "invoice_number", "Laskun numero", "invoice_date", "Laskun p\xe4iv\xe4m\xe4\xe4r\xe4", "discount", "Alennus", "po_number", "Tilaus numero", "terms", "Ehdot", "public_notes", "Julkiset muistiinpanot", "private_notes", "Yksityiset muistiinpanot", "frequency", "Kuinka usein", "start_date", "Alkamisp\xe4iv\xe4m\xe4\xe4r\xe4", "end_date", "Loppup\xe4iv\xe4m\xe4\xe4r\xe4", "quote_number", "Tarjous numero", "quote_date", "Tarjouksen p\xe4iv\xe4m\xe4\xe4r\xe4", "valid_until", "Voimassa", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Kuvaus", "unit_cost", "Kappalehinta", "quantity", "M\xe4\xe4r\xe4", "add_item", "Lis\xe4\xe4 nimike", "contact", "Yhteyshenkil\xf6", "work_phone", "Puhelin", "total_amount", "yhteens\xe4 m\xe4\xe4r\xe4", "pdf", "PDF", "due_date", "Er\xe4p\xe4iv\xe4", _s16_180, "Partial er\xe4p\xe4iv\xe4", "status", "Tila", _s17_106, "Lasku tila", "quote_status", "Tarjouksen tila", _s22_31, "Napsauta + lis\xe4t\xe4ksesi nimikkeen", _s22_33, "Napsauta + lis\xe4t\xe4ksesi ajan", "count_selected", ":count selected", "total", "Loppusumma", "percent", "Prosentti", "edit", "Muokkaa", "dismiss", "Dismiss", _s20_49, "valitse p\xe4iv\xe4m\xe4\xe4r\xe4", _s22_34, "valitse asiakas", _s24_30, "valitse lasku", "task_rate", "Teht\xe4v\xe4n luokitus", "settings", "Asetukset", "language", "Language", "currency", "Valuutta", "created_at", "Luotu", "created_on", "Created On", "updated_at", "p\xe4ivitetty", "tax", "Vero", _s30_13, "Ay\xf6t\xe4 laskunumero", _s27_34, "Ole hyv\xe4 ja anna tarjouksen numero", "past_due", "Past Due", "draft", "Luonnos", "sent", "L\xe4hetetty", "viewed", "N\xe4hty", "approved", "Approved", "partial", "Osittainen/Talletus", "paid", "Maksettu", "mark_sent", "Merkitse l\xe4hetetyksi", _s22_36, "Onnistuneesti merkitty lasku l\xe4hetetyksi", _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Valmis", _s37_13, "Anna asiakkaan tai yhteyshenkil\xf6n nimi", "dark_mode", "Tumma tila", _s27_36, "Uudelleenk\xe4ynnist\xe4 sovellus ottaaksesi muutoksen k\xe4ytt\xf6\xf6n", "refresh_data", "Refresh Data", "blank_contact", "Blank kontakti", "activity", "Toiminta", _s16_182, "ei records found", "clone", "Kopioi", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Maksuehdot", "payment_date", "Maksun p\xe4iv\xe4m\xe4\xe4r\xe4", "payment_status", "maksu tila", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Asiakasportaali", "show_tasks", "N\xe4yt\xe4 teht\xe4v\xe4t", "email_reminders", "Email muistutukset", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Ensimm\xe4inen muistutus", "second_reminder", "Toinen muistutus", "third_reminder", "Kolmas muistutus", "reminder1", "ensimm\xe4inen muistutus", "reminder2", "toinen muistutus", "reminder3", "Third muistutus", "template", "Malli", "send", "l\xe4het\xe4", "subject", "Otsikko", "body", "Sis\xe4lt\xf6", "send_email", "L\xe4het\xe4 s\xe4hk\xf6posti", "email_receipt", "L\xe4het\xe4 maksukuitti s\xe4hk\xf6postilla asiakkaalle", "auto_billing", _s22_58, "button", "Button", "preview", "Esikatselu", "customize", "Mukauta", "history", "Historia", "payment", "Maksu", "payments", "Maksut", "refunded", "Refunded", "payment_type", "Maksutyyppi", _s21_57, "Tapahtuman viite", "enter_payment", "Kirjaa maksu", "new_payment", "Uusi maksutapahtuma", "created_payment", "Maksu on luotu onnistuneesti", "updated_payment", "Maksu p\xe4ivitetty onnistuneesti", _s16_190, "Maksu on arkistoitu onnistuneesti", "deleted_payment", "Maksu on poistettu onnistuneesti", _s16_191, "Maksu palautettu onnistuneesti", _s17_109, ":count maksu(a) arkistoitu onnistuneesti", _s16_192, ":count maksu(a) poistettu onnistuneesti", _s17_110, _s37_15, "quote", "Tarjous", "quotes", "Tarjoukset", "new_quote", "Uusi tarjous", "created_quote", "Tarjous on luotu onnistuneesti", "updated_quote", "Tarjous on p\xe4ivitetty onnistuneesti", "archived_quote", "Tarjous on arkistoitu onnistuneesti", "deleted_quote", "Tarjous on poistettu onnistuneesti", "restored_quote", "Tarjous palautettu onnistuneesti", "archived_quotes", ":count tarjous(ta) arkistoitu onnistuneesti", "deleted_quotes", ":count tarjous(ta) poistettu onnistuneesti", "restored_quotes", _s35_13, "expense", "Kulu", "expenses", "Kulut", "vendor", "Kauppias", "vendors", "Kauppiaat", "task", "Teht\xe4v\xe4", "tasks", "Teht\xe4v\xe4t", "project", "Projekti", "projects", "Projektit", "activity_1", ":k\xe4ytt\xe4j\xe4 loi asiakkaan :client", "activity_2", ":k\xe4ytt\xe4j\xe4 arkistoi asiakkaan :client", "activity_3", ":k\xe4ytt\xe4j\xe4 poisti asiakkaan :client", "activity_4", ":k\xe4ytt\xe4j\xe4 loi laskun :invoice", "activity_5", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti laskun :invoice", "activity_6", ":k\xe4ytt\xe4j\xe4 emailed lasku :lasku for :asiakas :kontakti", "activity_7", ":kontakti katsoi lasku :lasku for :asiakas", "activity_8", ":k\xe4ytt\xe4j\xe4 arkistoi laskun :invoice", "activity_9", ":k\xe4ytt\xe4j\xe4 poisti laskun :invoice", "activity_10", ":kontakti entered maksu :maksu for :payment_amount on lasku :lasku for :asiakas", "activity_11", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti maksun :maksu", "activity_12", ":k\xe4ytt\xe4j\xe4 arkistoi maksun :maksu", "activity_13", ":k\xe4ytt\xe4j\xe4 poisti maksun :maksu", "activity_14", ":k\xe4ytt\xe4j\xe4 sy\xf6tti :luotto hyvityksen", "activity_15", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti :luotto hyvityksen", "activity_16", ":k\xe4ytt\xe4j\xe4 arkistoi :luotto hyvityksen", "activity_17", ":k\xe4ytt\xe4j\xe4 poisti :luotto hyvityksen", "activity_18", ":user loi tarjouksen :quote", "activity_19", ":user p\xe4ivitti tarjouksen :quote", "activity_20", ":user l\xe4hetti s\xe4hk\xf6postitse tarjouksen :quote asiakkaan :client yhteyshenkil\xf6lle :contact", "activity_21", ":contact luki tarjouksen :quote", "activity_22", ":user arkistoi tarjouksen :quote", "activity_23", ":user poisti tarjouksen :quote", "activity_24", ":user palautti tarjouksen :quote", "activity_25", ":k\xe4ytt\xe4j\xe4 palautti laskun :invoice", "activity_26", ":k\xe4ytt\xe4j\xe4 palautti asiakkaan :client", "activity_27", ":k\xe4ytt\xe4j\xe4 palautti maksun :maksu", "activity_28", ":k\xe4ytt\xe4j\xe4 palautti hyvityksen :luotto", "activity_29", ":contact hyv\xe4ksyi tarjouksen :quote asiakkaalle :client", "activity_30", ":k\xe4ytt\xe4j\xe4 loi kauppiaan :vendor", "activity_31", ":k\xe4ytt\xe4j\xe4 arkistoi kauppiaan :vendor", "activity_32", ":k\xe4ytt\xe4j\xe4 poisti kauppiaan :vendor", "activity_33", ":k\xe4ytt\xe4j\xe4 palautti kauppiaan :vendor", "activity_34", ":k\xe4ytt\xe4j\xe4 loi kulun :kulu", "activity_35", ":k\xe4ytt\xe4j\xe4 arkistoi kulun :kulu", "activity_36", ":k\xe4ytt\xe4j\xe4 poisti kulun :kulu", "activity_37", ":k\xe4ytt\xe4j\xe4 palautti kulun :kulu", "activity_39", ":k\xe4ytt\xe4j\xe4 perui :payment_amount maksun :maksu", "activity_40", ":k\xe4ytt\xe4j\xe4 refunded :adjustment a :payment_amount maksu :maksu", "activity_41", ":payment_amount maksu (:maksu) failed", "activity_42", ":k\xe4ytt\xe4j\xe4 loi teht\xe4v\xe4n :teht\xe4v\xe4", "activity_43", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_44", ":k\xe4ytt\xe4j\xe4 arkistoi teht\xe4v\xe4n :teht\xe4v\xe4", "activity_45", ":k\xe4ytt\xe4j\xe4 poisti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_46", ":k\xe4ytt\xe4j\xe4 palautti teht\xe4v\xe4n :teht\xe4v\xe4", "activity_47", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti kulun :kulu", "activity_48", ":k\xe4ytt\xe4j\xe4 p\xe4ivitti teht\xe4v\xe4n :tiketti", "activity_49", ":k\xe4ytt\xe4j\xe4 sulki tiketin :tiketti", "activity_50", ":k\xe4ytt\xe4j\xe4 mergesi tiketin :tiketti", "activity_51", ":k\xe4ytt\xe4j\xe4 jakoi tiketin :tiketti", "activity_52", ":kontakti avasi tiketin :tiketti", "activity_53", ":kontakti reopened tiketti :tiketti", "activity_54", ":k\xe4ytt\xe4j\xe4 reopened tiketti :tiketti", "activity_55", ":kontakti vastasi tiketti :tiketti", "activity_56", ":k\xe4ytt\xe4j\xe4 katsoi tiketti :tiketti", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Kertak\xe4ytt\xf6inen salasana", "emailed_quote", "Tarjous on l\xe4hetetty onnistuneesti", "emailed_credit", _s27_48, _s20_51, "Tarjous on onnistuneesti merkitty l\xe4hetetyksi", _s21_59, _s34_15, "expired", "Vanhentunut", "all", "Kaikki", "select", "Valitse", _s22_38, _s22_39, "custom_value1", "muokattu Value", "custom_value2", "Mukautettu arvo", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, "Oma Hyv\xe4ksym\xe4t\xf6n tarjous -viesti", "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, "Kauppiaan numerolaskuri", _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Laskun j\xe4rjestysnumero", _s20_52, "Tarjouksen numeroinnin kuvio", _s20_54, "Tarjouksen j\xe4rjestysnumero", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, "Jaettu lasku tarjous laskuri", _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, "Tarjouss\xe4hk\xf6postin otsikko", _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tyyppi", "invoice_amount", "Lasku m\xe4\xe4r\xe4", _s16_197, "Er\xe4p\xe4iv\xe4", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", _s22_58, "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Kauppiaan kaupunki", "vendor_state", "Kauppiaan alue", "vendor_country", "Kauppiaan maa", "is_approved", "Is Approved", "tax_name", "veronimi", "tax_amount", "vero m\xe4\xe4r\xe4", "tax_paid", "vero Paid", "payment_amount", "Maksun m\xe4\xe4r\xe4", "age", "Age", "is_running", "Is Running", "time_log", "Aikaloki", "bank_id", "Pankki", _s19_49, _s19_50, _s16_198, "Kulujen kategoria", _s19_51, _s19_52, "tax_name1", "Veron nimi 1", "tax_name2", "Veron nimi 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "fr", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importer des donn\xe9es", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s20_69, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s17_131, _s17_1, "Nom du contact", "order", "Order", "unassigned", "Non assign\xe9", "partial_value", "Doit \xeatre sup\xe9rieur \xe0 z\xe9ro et inf\xe9rieur au total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activ\xe9(e)", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "D\xe9finissez un sous-domaine ou affichez la facture sur votre propre site web.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "S\xe9curit\xe9", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Abonnements", _s16_11, _s16_12, _s17_7, _s19_59, _s20_1, _s27_52, _s20_2, _s33_18, _s21_6, _s30_33, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Renvoyer une invitation", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Rebondi", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Scannez le code \xe0 barres avec une application compatible :link", _s18_14, "Authentification \xe0 deux facteurs activ\xe9e avec succ\xe8s", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Authentification \xe0 2 facteurs", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s18_101, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", _s17_132, "to_update_run", "To update run", _s18_17, _s20_70, _s16_24, _s16_25, "invoice_project", _s18_102, "invoice_task", _s17_133, "invoice_expense", "Facturer la d\xe9pense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_229, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s20_71, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Cacher", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Colonne", "sample", "Exemple", "map_to", "Map To", "import", "Importer", _s25_1, _s29_1, "select_file", _s32_10, _s16_32, _s16_33, "csv_file", "S\xe9lectionner un fichier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "URL Webhook", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Non pay\xe9", "white_label", "White Label", "delivery_note", "Bon de livraison", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Solde partiel", "invoice_total", "Montant total", "quote_total", "Montant du devis", "credit_total", "Total Cr\xe9dit", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Avertissement", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "Cryptogramme visuel", "client_name", "Nom du client", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "Statut de t\xe2che mis \xe0 jour avec succ\xe8s", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "cat\xe9gories de d\xe9pense", _s20_20, _s29_45, _s21_18, _s21_19, _s24_11, "Cat\xe9gorie de d\xe9pense cr\xe9\xe9e avec succ\xe8s", _s24_12, "Cat\xe9gorie de d\xe9pense mise \xe0 jour avec succ\xe8s", _s25_5, "Cat\xe9gorie de d\xe9pense archiv\xe9e avec succ\xe8s", _s24_13, _s40_4, _s24_14, _s37_2, _s25_6, "Cat\xe9gorie de d\xe9pense restaur\xe9e avec succ\xe8s", _s27_8, ":count cat\xe9gorie(s) de d\xe9pense archiv\xe9e(s) avec succ\xe8s", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Devrait \xeatre factur\xe9", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Marquer comme actif", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s18_103, _s18_29, _s20_72, _s21_25, _s27_53, _s22_12, "Editer facture r\xe9currente", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Facture r\xe9currente archiv\xe9e avec succ\xe8s", _s25_14, "Facture r\xe9currente supprim\xe9e avec succ\xe8s", _s25_15, _s38_7, _s26_6, "Facture r\xe9currente restaur\xe9e avec succ\xe8s", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Ligne d'article", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Ouvert(e)", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Voir le portail", "copy_link", "Copy Link", "token_billing", "Enregister les d\xe9tails de paiement", _s24_17, _s24_18, "always", "Toujours", "optin", "Opt-In", "optout", "Opt-Out", "label", "Intitul\xe9", "client_number", _s16_230, "auto_convert", "Auto Convert", "company_name", _s19_60, "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "Les factures ont \xe9t\xe9 envoy\xe9es par email avec succ\xe8s", "emailed_quotes", "Les offres ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_credits", _s28_52, "gateway", "Passerelle", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Heures", "statement", "Relev\xe9", "taxes", "Taxes", "surcharge", "Majoration", "apply_payment", "Apply Payment", "apply", "Appliquer", "unapplied", "Unapplied", "select_label", "S\xe9lection intitul\xe9", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\xc0", "health_check", "Health Check", "payment_type_id", _s16_231, "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, _s16_232, _s17_43, _s17_44, "recent_payments", "Paiements r\xe9cents", "upcoming_quotes", "Devis \xe0 venir", "expired_quotes", "Devis expir\xe9s", "create_client", "Cr\xe9er un client", "create_invoice", _s17_134, "create_quote", "Cr\xe9er un devis", "create_payment", "Create Payment", "create_vendor", _s20_73, "update_quote", "Update Quote", "delete_quote", "Supprimer ce devis", "update_invoice", "Update Invoice", "delete_invoice", _s20_74, "update_client", "Update Client", "delete_client", _s19_61, "delete_payment", _s21_85, "update_vendor", "Update Vendor", "delete_vendor", "Supprimer ce fournisseur", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", _s20_75, "create_task", "Cr\xe9er une t\xe2che", "update_task", "Update Task", "delete_task", "Supprimer la t\xe2che", "approve_quote", "Approve Quote", "off", "Ferm\xe9", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratuit", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Cible", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "Jetons d'API", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Jeton", "tokens", "Jetons", "new_token", "New Token", "edit_token", "\xc9diter ce jeton", "created_token", "Jeton cr\xe9\xe9 avec succ\xe8s", "updated_token", "Jeton mis \xe0 jour avec succ\xe8s", "archived_token", "Jeton archiv\xe9 avec succ\xe8s", "deleted_token", "Jeton supprim\xe9 avec succ\xe8s", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", _s31_17, "email_quote", "Envoyer ce devis par courriel", "email_credit", "Email Credit", "email_payment", "Re\xe7u du paiement par courriel", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Nom du contact", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "\xc9diter la condition de paiement", _s20_29, "Conditions de paiement cr\xe9\xe9es avec succ\xe8s", _s20_30, "Conditions de paiement mises \xe0 jour avec succ\xe8s", _s21_28, "Conditions de paiement archiv\xe9es avec succ\xe8s", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", _s17_135, "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusif", "inclusive", "Inclusif", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Remboursement du paiement", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Nom complet", _s17_55, "Ville/ Province (D\xe9partement)/ CP", _s17_57, "Ville/Province (D\xe9partement)/Code postal", "custom1", "Personnalis\xe91", "custom2", "Personnalis\xe92", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optionnel", "license", "Licence", "purge_data", _s18_104, _s16_64, "Les donn\xe9es de l'entreprise ont \xe9t\xe9 purg\xe9es avec succ\xe8s", _s18_38, "Attention : Cette action va supprimer vos donn\xe9es et est irr\xe9versible", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 jours", "age_group_30", "30 -60 jours", "age_group_60", "60 - 90 jours", "age_group_90", "90 - 120 jours", "age_group_120", "120+ jours", "refresh", "Rafra\xeechir", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "D\xe9tails de la facture", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "Aucun(e)", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s22_59, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", _s18_105, "cancel_account", _s19_62, _s22_19, "Attention : Ceci va supprimer d\xe9finitivement votre compte, il n'y a pas d'annulation possible.", "delete_company", "Supprimer la soci\xe9t\xe9", _s22_20, "Attention : Ceci supprimera d\xe9finitivement votre soci\xe9t\xe9, il n'y a pas d'annulation.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "En-t\xeate", "load_design", "Charger un mod\xe8le", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Propositions", "tickets", "Tickets", _s16_69, "Devis r\xe9current", "recurring_tasks", "Recurring Tasks", _s18_, _s20_76, _s18_39, "Gestion des comptes", "credit_date", "Date d'avoir", "credit", "Cr\xe9dit", "credits", "Cr\xe9dits", "new_credit", "Entrer un cr\xe9dit", "edit_credit", _s16_233, "created_credit", "Cr\xe9dit cr\xe9\xe9 avec succ\xe8s", "updated_credit", _s38_13, "archived_credit", "Cr\xe9dit archiv\xe9 avec succ\xe8s", "deleted_credit", "Cr\xe9dit supprim\xe9 avec succ\xe8s", "removed_credit", _s27_21, "restored_credit", "Cr\xe9dit restaur\xe9 avec succ\xe8s", _s16_71, ":count cr\xe9dits archiv\xe9s avec succ\xe8s", "deleted_credits", ":count cr\xe9dits supprim\xe9s avec succ\xe8s", _s16_72, _s36_3, "current_version", "Version actuelle", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "En savoir plus", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nouveau compte", "added_company", "L'entreprise a \xe9t\xe9 ajout\xe9e", "company1", "Champ personnalis\xe9 Entreprise 1", "company2", "Champ personnalis\xe9 Entreprise 2", "company3", "Champ personnalis\xe9 Entreprise 3", "company4", "Champ personnalis\xe9 Entreprise 4", "product1", "Champ personnalis\xe9 Produit 1", "product2", "Champ personnalis\xe9 Produit 2", "product3", "Champ personnalis\xe9 Produit 3", "product4", "Champ personnalis\xe9 Produit 4", "client1", "Champ personnalis\xe9 Client 1", "client2", _s21_86, "client3", _s21_87, "client4", _s21_88, "contact1", "Champ personnalis\xe9 Contact 1", "contact2", "Champ personnalis\xe9 Contact 2", "contact3", "Champ personnalis\xe9 Contact 3", "contact4", "Champ personnalis\xe9 Contact 4", "task1", "Champ personnalis\xe9 T\xe2che 1", "task2", "Champ personnalis\xe9 T\xe2che 2", "task3", "Champ personnalis\xe9 T\xe2che 3", "task4", "Champ personnalis\xe9 T\xe2che 4", "project1", "Champ personnalis\xe9 Projet 1", "project2", "Champ personnalis\xe9 Projet 2", "project3", "Champ personnalis\xe9 Projet 3", "project4", "Champ personnalis\xe9 Projet 4", "expense1", "Champ personnalis\xe9 D\xe9pense 1", "expense2", "Champ personnalis\xe9 D\xe9pense 2", "expense3", "Champ personnalis\xe9 D\xe9pense 3", "expense4", "Champ personnalis\xe9 D\xe9pense 4", "vendor1", _s26_39, "vendor2", _s26_40, "vendor3", _s26_41, "vendor4", _s26_42, "invoice1", "Champ personnalis\xe9 Facture 1", "invoice2", "Champ personnalis\xe9 Facture 2", "invoice3", "Champ personnalis\xe9 Facture 3", "invoice4", "Champ personnalis\xe9 Facture 4", "payment1", "Champ personnalis\xe9 Paiement 1", "payment2", "Champ personnalis\xe9 Paiement 2", "payment3", "Champ personnalis\xe9 Paiement 3", "payment4", "Champ personnalis\xe9 Paiement 4", "surcharge1", "Autre frais 1", "surcharge2", "Autre frais 2", "surcharge3", "Autre frais 3", "surcharge4", "Autre frais 4", "group1", "Champ personnalis\xe9 Groupe 1", "group2", "Champ personnalis\xe9 Groupe 2", "group3", "Champ personnalis\xe9 Groupe 3", "group4", "Champ personnalis\xe9 Groupe 4", "reset", "Remettre \xe0 z\xe9ro", "number", "Nombre", "export", "Exporter", "chart", "Graphique", "count", "Compte", "totals", "Totaux", "blank", "Vide", "day", "Jour", "month", "Mois", "year", "Ann\xe9e", "subgroup", "Sous-groupe", "is_active", "Actif", "group_by", "Grouper par", "credit_balance", "Solde du cr\xe9dit", _s18_45, _s29_46, _s17_61, "Nom du contact", "contact_phone", _s20_77, _s21_31, "Valeur champ personnalis\xe9 Contact 1", _s21_32, "Valeur champ personnalis\xe9 Contact 2", _s21_33, "Valeur champ personnalis\xe9 Contact 3", _s21_34, "Valeur champ personnalis\xe9 Contact 4", _s17_63, "Rue", _s17_64, "Appt/B\xe2timent", "shipping_city", "Ville", "shipping_state", _s18_106, _s20_33, "Code postal", _s16_103, "Pays", _s16_105, "Rue", _s16_106, "Appt/B\xe2timent", "billing_city", "Ville", "billing_state", _s18_106, _s19_19, "Code postal", "billing_country", "Pays", "client_id", "ID du client", "assigned_to", "Assign\xe9 \xe0", "created_by", "Cr\xe9\xe9 par :name", "assigned_to_id", "Assign\xe9 \xe0 ID", "created_by_id", "Cr\xe9\xe9 par ID", "add_column", "Ajouter une colonne", "edit_columns", "\xc9diter les colonnes", "columns", "Colonnes", "aging", "Vieillissement", "profit_and_loss", "Profits et Pertes", "reports", "Rapports", "report", "Rapport", "add_company", "Ajouter compte", "unpaid_invoice", "Facture impay\xe9e", "paid_invoice", "Facture pay\xe9e", _s16_107, "Devis non-approuv\xe9", "help", "Aide", "refund", "Remboursement", "refund_date", "Date du remboursement", "filtered_by", "Filtr\xe9 par", "contact_email", _s19_63, "multiselect", _s18_107, "entity_state", "\xc9tat", "verify_password", _s24_45, "applied", "Publi\xe9", _s21_35, "Contient les erreurs r\xe9centes des journaux", _s30_4, "Nous avons re\xe7u votre message et r\xe9pondrons dans les meilleurs d\xe9lais", "message", "Message", "from", "De", _s20_35, "Voir les d\xe9tails du produit", _s25_20, _s78_, _s20_37, "Le g\xe9n\xe9rateur de PDF n\xe9cessite la version :version", _s18_48, _s31_18, _s23_14, _s41_7, _s18_50, "Modifier les param\xe8tres", "support_forum", "forum de support", "about", "\xc0 propos", "documentation", "Documentation", "contact_us", "Nous joindre", "subtotal", "Sous-total", "line_total", "Total", "item", "Article", "credit_email", "Courriel de cr\xe9dit", "iframe_url", "Site internet", "domain_url", "URL du domaine", _s21_36, "Mot de passe trop court", _s20_38, "Le mot de passe doit comporter au moins une majuscule et un nombre", _s19_21, "T\xe2che du portail client", _s23_15, _s33_19, _s20_39, "Saisissez une valeur", "deleted_logo", "Le logo a \xe9t\xe9 supprim\xe9", "yes", "Oui", "no", "Non", "generate_number", _s17_136, "when_saved", _s21_89, "when_sent", "Lors de l'envoi", "select_company", "S\xe9lectionner une entreprise", "float", "Flottant", "collapse", "R\xe9duire", "show_or_hide", "Afficher/cacher", "menu_sidebar", "Barre lat\xe9rale du menu", "history_sidebar", _s18_108, "tablet", "Tablette", "mobile", "Mobile", "desktop", "Bureau", "layout", "Pr\xe9sentation", "view", "Voir", "module", "Module", "first_custom", _s20_78, "second_custom", _s19_64, "third_custom", _s22_60, "show_cost", "Voir le co\xfbt", _s17_66, _s17_67, "show_cost_help", "Afficher un champ co\xfbt du produit pour suivre la marge", _s21_37, "Voir la quantit\xe9 du produit", _s26_15, "Afficher un champ de quantit\xe9 du produit, sinon en choisir un par d\xe9faut", _s21_39, "Voir la quantit\xe9 sur la facture", _s26_16, "Afficher un champ de quantit\xe9 pour la position, sinon en choisir un par d\xe9faut", _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s19_65, _s21_43, "Mettre automatiquement la quantit\xe9 de la position \xe0 un", "one_tax_rate", "Un taux de taxe", "two_tax_rates", _s17_137, "three_tax_rates", "Trois taux de taxe", _s16_111, _s23_37, "user", "Utilisateur", "invoice_tax", "Taxe de la facture", "line_item_tax", "Taxe de la position", "inclusive_taxes", "Taxes incluses", _s17_68, "Taux de taxe de la facture", "item_tax_rates", "Taux de taxe de la position", _s18_52, _s31_19, "configure_rates", "Configurer les taux", _s18_53, _s18_54, "tax_settings", "R\xe9glages des taxes", _s18_55, "Taux de taxes", "accent_color", _s27_54, "switch", "Changer", _s19_23, "Liste s\xe9par\xe9e par des virgules", "options", "Options", _s16_113, "Texte sur une ligne", "multi_line_text", "Texte multi-lignes", "dropdown", _s16_234, "field_type", "Type du champ", _s27_22, "Un courriel de r\xe9cup\xe9ration du mot de passe a \xe9t\xe9 envoy\xe9", "submit", "Envoyer", _s16_115, "R\xe9cup\xe9rer votre mot de passe", "late_fees", "Frais de retard", "credit_number", "Num\xe9ro d'avoir", "payment_number", _s18_109, "late_fee_amount", "Montant de p\xe9nalit\xe9 de retard", _s16_116, "Pourcentage de p\xe9nalit\xe9 de retard", "schedule", "Planification", "before_due_date", "Avant la date d'\xe9ch\xe9ance", "after_due_date", "Apr\xe8s la date d'\xe9ch\xe9ance", _s18_57, _s28_62, "days", "Jours", "invoice_email", "Courriel de facture", "payment_email", _s20_79, "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Courriel de devis", _s16_118, "Rappel sans fin", _s16_120, _s22_61, "administrator", "Administrateur", _s18_58, "Permettre \xe0 l'utilisateur de g\xe9rer les utilisateurs, modifier les param\xe8tres et de modifier tous les enregistrements", "user_management", _s24_46, "users", "Utilisateurs", "new_user", _s18_110, "edit_user", _s20_80, "created_user", "Utilisateur cr\xe9\xe9 avec succ\xe8s avec succ\xe8s", "updated_user", "Utilisateur mis \xe0 jour avec succ\xe8s", "archived_user", "Utilisateur archiv\xe9 avec succ\xe8s", "deleted_user", "Utilisateur supprim\xe9 avec succ\xe8s", "removed_user", "L'utilisateur a \xe9t\xe9 supprim\xe9", "restored_user", "Commande restaur\xe9e avec succ\xe8s", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s19_66, "invoice_options", "Options de facturation", _s17_70, _s24_47, _s22_27, 'Afficher la ligne "Pay\xe9 \xe0 ce jour" sur vos factures seulement une fois qu\'un paiement a \xe9t\xe9 re\xe7u.', _s23_17, _s18_111, _s28_15, "Inclure l'image attach\xe9e dans la facture.", _s16_124, "Voir les en-t\xeates sur", _s16_125, "Voir les pieds de page sur", "first_page", "Premi\xe8re page", "all_pages", "Toutes les pages", "last_page", "Derni\xe8re page", "primary_font", "Police principale", "secondary_font", "Police secondaire", "primary_color", _s18_112, "secondary_color", _s18_113, "page_size", "Taille de Page", "font_size", _s16_235, "quote_design", "Mise en page des Devis", "invoice_fields", _s17_138, "product_fields", "Champs de produit", "invoice_terms", _s25_45, "invoice_footer", "Pied de facture", "quote_terms", "Conditions des devis", "quote_footer", "Pied de page des devis", _s18_59, "Envoyer automatiquement par courriel", _s23_18, "Envoyer automatiquement par courriel les factures r\xe9currentes lorsqu'elles sont cr\xe9\xe9s.", _s20_42, _s24_48, _s25_26, "Archiver automatiquement les factures lorsqu'elles sont pay\xe9es.", _s18_60, _s24_48, _s23_19, "Archiver automatiquement les devis lorsqu'ils sont convertis.", _s18_61, "Convertir automatiquement", _s23_20, "Convertir automatiquement un devis en facture d\xe8s qu'il est approuv\xe9 par le client.", _s17_72, _s29_47, "freq_daily", "Quotidien", "freq_weekly", "Hebdomadaire", "freq_two_weeks", "Deux semaines", "freq_four_weeks", "Quatre semaines", "freq_monthly", "Mensuelle", "freq_two_months", "Deux mois", _s17_74, "Trimestrielle", _s16_126, "Quatre mois", "freq_six_months", "Six mois", "freq_annually", "Annuelle", "freq_two_years", "Deux ans", _s16_127, "Trois ans", "never", "Jamais", "company", "Entreprise", _s17_75, "Num\xe9ros g\xe9n\xe9r\xe9s", "charge_taxes", "Taxe suppl\xe9mentaire", "next_reset", _s23_38, "reset_counter", "Remettre le compteur \xe0 z\xe9ro", _s16_128, _s17_139, "number_padding", _s23_39, "general", "G\xe9n\xe9ral", "surcharge_field", "Champ Surcharge", "company_field", "Champ d'entreprise", "company_value", _s19_67, "credit_field", "Champ de Cr\xe9dit", "invoice_field", "Champ de facture", _s17_77, "Majoration de facture", "client_field", "Champ de client", "product_field", "Champ de produit", "payment_field", "Champ de Paiement", "contact_field", "Champ de contact", "vendor_field", "Champ de fournisseur", "expense_field", "Champ de d\xe9pense", "project_field", "Champ de projet", "task_field", "Champ de t\xe2che", "group_field", "Champ de Groupe", "number_counter", _s18_114, "prefix", "Pr\xe9fixe", "number_pattern", _s16_236, "messages", "Messages", "custom_css", _s16_237, _s17_79, _s23_40, _s16_130, _s19_68, _s21_46, "Afficher la signature du client sur la facture / le devis PDF.", _s25_27, _s48_1, _s30_5, "Exiger que le client confirme qu'il accepte les conditions de facturation", _s23_21, "Case \xe0 cocher pour les conditions d'offre", _s28_16, "Exiger que le client confirme qu'il accepte les conditions de l'offre", _s25_28, _s20_81, _s30_6, "Exiger que le client signe", _s23_22, "Signature de l'offre", _s22_29, _s42_10, _s27_23, "Autoriser la cr\xe9ation d'un mot de passe pour chaque contact. Si un mot de passe est cr\xe9\xe9, le contact devra entrer un mot de passe avant de voir les factures.", "authorization", "Autorisation", "subdomain", "Sous-domaine", "domain", "Domaine", "portal_mode", "Mode portail", "email_signature", "Cordialement,", _s24_21, "Rendez le r\xe8glement de vos clients plus facile en ajoutant les markup schema.org \xe0 vos courriels.", "plain", "Brut", "light", "Clair", "dark", "Sombre", "email_design", _s18_115, "attach_pdf", "Joindre PDF", _s16_131, "Joindre les Documents", "attach_ubl", "Joindre UBL", "email_style", "Style d'email", _s19_25, "Activer le balisage", "reply_to_email", "Adresse de r\xe9ponse", "reply_to_name", "Reply-To Name", "bcc_email", "Courriel CCI", "processed", "Trait\xe9", "credit_card", "Carte de Cr\xe9dit", "bank_transfer", _s17_140, "priority", "Priorit\xe9e", "fee_amount", _s17_141, "fee_percent", _s21_90, "fee_cap", _s16_238, "limits_and_fees", "Limites/Frais", "enable_min", "Activer min", "enable_max", "Activer max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s26_43, "credentials", "Identifiants", "update_address", "Mettre \xe0 jour l'adresse", _s19_28, "Mettre \xe0 jour l'adresse du client avec les d\xe9tails fournis", "rate", "Taux", "tax_rate", "Taux de taxe", "new_tax_rate", _s20_82, "edit_tax_rate", _s22_62, _s16_133, "Taux de taxe cr\xe9\xe9 avec succ\xe8s", _s16_134, "Taux de taxe mis \xe0 jour avec succ\xe8s", _s17_82, "Taux de taxe archiv\xe9 avec succ\xe8s", _s16_135, _s42_11, _s17_83, _s42_12, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Remplissage auto des produits", _s18_64, "La s\xe9lection d\u2019un produit entrainera la MAJ de la description et du prix", "update_products", "Mise \xe0 jour auto des produits", _s20_44, _s65_1, _s16_136, _s22_63, _s21_47, "Convertir automatiquement les prix des produits dans la devise du client", "fees", "Frais", "limits", "Limites", "provider", "Fournisseur", "company_gateway", _s22_64, _s16_138, "Passerelles de paiements", _s19_29, _s19_69, _s20_45, _s20_83, _s23_23, _s37_20, _s23_24, _s43_2, _s24_22, _s40_5, _s23_25, _s41_8, _s24_23, _s41_9, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Continuer l'\xe9dition", "discard_changes", "Ignorer les modifications", "default_value", "Valeur Par D\xe9faut", "disabled", "D\xe9sactiv\xe9", "currency_format", _s16_239, _s21_48, "Premier Jour de la Semaine", _s23_26, "Premier mois de l'Ann\xe9e", "sunday", "Dimanche", "monday", "Lundi", "tuesday", "Mardi", "wednesday", "Mercredi", "thursday", "Jeudi", "friday", "Vendredi", "saturday", "Samedi", "january", "Janvier", "february", "F\xe9vrier", "march", "Mars", "april", "Avril", "may", "Mai", "june", "Juin", "july", "Juillet", "august", "Ao\xfbt", "september", "Septembre", "october", "Octobre", "november", "Novembre", "december", "D\xe9cembre", "symbol", "Symbole", "ocde", "Code", "date_format", "Format de la date", "datetime_format", _s17_142, "military_time", "24H", _s18_65, "Affichage sur 24h", "send_reminders", _s19_70, "timezone", "Fuseau horaire", _s19_30, _s19_31, _s17_85, _s18_116, _s19_32, "Filtr\xe9 par Facture", _s18_66, "Filtr\xe9 par Client", _s18_68, "Filtr\xe9 par Vendeur", "group_settings", "Param\xe8tres de groupe", "group", "Groupe", "groups", "Groupes", "new_group", "Nouveau Groupe", "edit_group", _s16_240, "created_group", _s32_11, "updated_group", _s38_14, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Envoyer le logo", "uploaded_logo", "Le logo a \xe9t\xe9 envoy\xe9 avec succ\xe8s", "logo", "Logo", "saved_settings", _s46_3, _s16_142, "R\xe9glages du produit", "device_settings", _s24_49, "defaults", "Valeurs par d\xe9faut", "basic_settings", _s18_117, _s17_87, _s18_118, "company_details", "Informations sur l\u2019entreprise", "user_details", "Utilisateur", "localization", "Localisation", "online_payments", _s18_119, "tax_rates", "Taux de taxe", "notifications", "Notifications", "import_export", "Importer/Exporter", "custom_fields", _s20_84, "invoice_design", "Mod\xe8le de facture", "buy_now_buttons", _s26_44, "email_settings", _s22_65, _s23_28, "Mod\xe8les & Rappels", _s22_30, _s27_55, _s19_34, _s25_46, "price", "Prix", "email_sign_up", "Inscription par email", "google_sign_up", _s23_41, _s27_25, "Merci pour votre achat !", "redeem", "Rembourser", "back", "Retour", "past_purchases", "Achats ant\xe9rieurs", _s19_36, _s17_143, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count utilisateur(s)", "upgrade", "Mettre \xe0 niveau", _s25_32, "Veuillez entrer un pr\xe9nom", _s24_25, _s22_66, _s33_14, "Veuillez accepter les conditions d'utilisation et la politique de confidentialit\xe9 pour cr\xe9er un compte.", "i_agree_to_the", "J'accepte les", _s21_79, _s24_50, _s19_54, _s28_63, _s16_144, _s24_50, "privacy_policy", _s28_63, "sign_up", "S\u2019enregistrer", "account_login", "Connexion \xe0 votre compte", "view_website", "Voir le site Web", "create_account", "Cr\xe9er un compte", "email_login", "Email de connexion", "create_new", "Cr\xe9er", _s18_70, _s32_12, _s21_51, "Veuillez enregistrer ou annuler vos modifications", "download", "T\xe9l\xe9charger", _s27_26, "\u03a7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ac\u03bd\u03bf \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", "take_picture", "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03c3\u03b5\u03c4\u03b5", "upload_file", "Envoyer un fichier", "document", "Document", "documents", "Documents", "new_document", "\u039d\u03ad\u03bf \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "edit_document", "\u0395\u03ba\u03b4\u03ce\u03c3\u03b5\u03c4\u03b5 \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", _s17_89, "Le document a \xe9t\xe9 envoy\xe9 avec succ\xe8s", _s16_146, "Document mis \xe0 jour avec succ\xe8s", _s17_90, "Document archiv\xe9 avec succ\xe8s", _s16_147, _s38_15, _s17_91, _s38_16, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "expense_date", _s18_120, "pending", "En attente", _s16_148, "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7", _s16_149, "\u03a3\u03b5 \u03b5\u03ba\u03ba\u03c1\u03b5\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1", _s16_150, "\u039c\u03b5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "converted", "Converti", _s24_27, "Ajouter un document \xe0 la facture", "exchange_rate", "Taux de change", _s16_151, "Convertir la devise", "mark_paid", "Marquer comme pay\xe9", "category", "Cat\xe9gorie", "address", "Adresse", "new_vendor", _s19_71, "created_vendor", "Fournisseur cr\xe9\xe9 avec succ\xe8s", "updated_vendor", "Founisseur mis \xe0 jour avec succ\xe8s", "archived_vendor", "Fournisseur archiv\xe9 avec succ\xe8s", "deleted_vendor", "Fournisseur supprim\xe9 avec succ\xe8s", "restored_vendor", "Fournisseur restaur\xe9 avec succ\xe8s", _s16_152, ":count fournisseurs archiv\xe9s avec succ\xe8s", "deleted_vendors", ":count fournisseurs supprim\xe9s avec succ\xe8s", _s16_153, _s36_5, "new_expense", "Saisir une d\xe9pense", "created_expense", "D\xe9pense cr\xe9\xe9e avec succ\xe8s", "updated_expense", "D\xe9pense mise \xe0 jour avec succ\xe8s", _s16_154, "D\xe9pense archiv\xe9e avec succ\xe8s", "deleted_expense", "D\xe9pense supprim\xe9e avec succ\xe8s", _s16_155, "D\xe9pense restaur\xe9e avec succ\xe8s", _s17_93, "D\xe9penses archiv\xe9es avec succ\xe8s", _s16_156, "D\xe9penses supprim\xe9es avec succ\xe8s", _s17_94, _s37_9, "copy_shipping", "Copier exp\xe9dition", "copy_billing", _s18_121, "design", "Design", _s21_52, "\xc9l\xe9ment non trouv\xe9", "invoiced", "Factur\xe9", "logged", "Enregistr\xe9", "running", "En cours", "resume", "Reprendre", "task_errors", "Merci de corriger les horaires conflictuels", "start", "D\xe9but", "stop", "Fin", "started_task", "T\xe2che d\xe9marr\xe9e avec succ\xe8s", "stopped_task", "T\xe2che stopp\xe9e avec succ\xe8s", "resumed_task", "T\xe2che relanc\xe9e avec succ\xe8s", "now", "Maintenant", _s16_157, "D\xe9marrer automatiquement les t\xe2ches", "timer", "Compteur", "manual", "Manuel", "budgeted", "Budg\xe9tis\xe9", "start_time", "D\xe9but", "end_time", "Heure de fin", "date", "Date", "times", "Horaires", "duration", "Dur\xe9e", "new_task", "Nouvelle t\xe2che", "created_task", "T\xe2che cr\xe9\xe9e avec succ\xe8s", "updated_task", "T\xe2che mise \xe0 jour avec succ\xe8s", "archived_task", "T\xe2che archiv\xe9e avec succ\xe8s", "deleted_task", "T\xe2che supprim\xe9e avec succ\xe8s", "restored_task", "T\xe2che restaur\xe9e avec succ\xe8s", "archived_tasks", ":count t\xe2ches archiv\xe9es avec succ\xe8s", "deleted_tasks", ":count t\xe2ches supprim\xe9es avec succ\xe8s", "restored_tasks", _s34_14, _s19_38, _s22_66, "budgeted_hours", _s16_241, "created_project", _s32_13, "updated_project", _s39_4, _s16_159, _s35_17, "deleted_project", _s36_17, _s16_160, "Le projet a \xe9t\xe9 r\xe9tabli avec succ\xe8s", _s17_95, ":count projet(s) a (ont) \xe9t\xe9 archiv\xe9(s)", _s16_161, ":count projet(s) a (ont) \xe9t\xe9 supprim\xe9(s) avec succ\xe8s", _s17_96, _s37_10, "new_project", "Nouveau projet", _s27_30, "Merci d'utiliser notre app !", "if_you_like_it", "Si vous appr\xe9ciez, merci de", "click_here", "cliquer ici", _s18_74, "Cliquer ici", "to_rate_it", "pour \xe9valuer notre app.", "average", "Moyenne", "unapproved", "Non approuv\xe9", _s30_11, _s49_0, "locked", "Verrouill\xe9", "authenticate", "Connexion", _s19_40, _s23_42, _s24_28, _s21_91, "footer", "Pied de page", "compare", "Comparer", "hosted_login", "Authentification Hosted", "selfhost_login", "Authentification Selfhost", "google_sign_in", _s17_97, "today", "Aujourd'hui", "custom_range", "Intervalle personnalis\xe9", "date_range", _s19_72, "current", "Actuel", "previous", "Pr\xe9c\xe9dent", "current_period", "P\xe9riode actuelle", _s17_98, "Comparaison de p\xe9riode", "previous_period", _s18_122, "previous_year", _s16_242, "compare_to", "Comparer \xe0", "last7_days", _s16_243, "last_week", "Semaine derni\xe8re", "last30_days", _s17_144, "this_month", "Mois en cours", "last_month", "Mois dernier", "this_year", "Cette ann\xe9e", "last_year", "Derni\xe8re ann\xe9e", "custom", "Personnalis\xe9", _s16_162, "Dupliquer la facture", "clone_to_quote", "Dupliquer en devis", "clone_to_credit", "Clone to Credit", "view_invoice", "Voir la facture", "convert", "Convertir", "more", "Plus", "edit_client", "Modifier ce client", "edit_product", "\xc9diter ce produit", "edit_invoice", _s19_73, "edit_quote", "\xc9diter ce devis", "edit_payment", "\xc9diter le paiement", "edit_task", "\xc9diter la t\xe2che", "edit_expense", "\xc9diter la d\xe9pensee", "edit_vendor", _s21_92, "edit_project", "Editer le projet", _s22_, _s28_64, _s20_47, "Editer devis r\xe9current", "billing_address", _s22_67, _s16_164, "Adresse de Livraison", "total_revenue", "Revenu total", "average_invoice", "Facture moyenne", "outstanding", "Impay\xe9", "invoices_sent", _s24_51, "active_clients", "clients actifs", "close", "Fermer", "email", "Courriel", "password", "Mot de passe", "url", "URL", "secret", "Cl\xe9 secr\xe8te", "name", "Nom", "logout", "Se d\xe9connecter", "login", "Connexion", "filter", "Filtrer", "sort", "Trier", "search", "Rechercher", "active", "Actif", "archived", "Archiv\xe9", "deleted", "Supprim\xe9", "dashboard", "Tableau de bord", "archive", "Archiver", "delete", "Supprimer", "restore", "Restaurer", _s16_166, "Rafraichissement termin\xe9", _s23_29, "Entrez votre adresse e-mail", _s26_25, "Entez votre mot de passe", _s21_55, "Entrez votre URL", _s26_27, "Entrez la cl\xe9 produit", "ascending", "Ascendant", "descending", "Descendant", "save", "Sauvegarder", _s17_100, "Une erreur s'est produite", "paid_to_date", "Pay\xe9 \xe0 ce jour", "balance_due", "Montant d\xfb", "balance", "Solde", "overview", "Vue d'ensemble", "details", "D\xe9tails", "phone", "T\xe9l\xe9phone", "website", "Site Web", "vat_number", "Num\xe9ro de TVA", "id_number", "Num\xe9ro ID", "create", "Cr\xe9er", _s19_42, _s35_18, "error", "Erreur", _s16_168, _s20_85, "contacts", "Informations de contact", "additional", "Additionnel", "first_name", "Pr\xe9nom", "last_name", "Nom", "add_contact", _s18_123, "are_you_sure", "Voulez-vous vraiment effectuer cette action ?", "cancel", "Annuler", "ok", "Ok", "remove", "Supprimer", _s16_170, "L'adresse de courriel n'est pas correcte", "product", "Produit", "products", "Produits", "new_product", "Nouvel article", "created_product", "Produit cr\xe9\xe9 avec succ\xe8s", "updated_product", "Produit mis \xe0 jour avec succ\xe8s", _s16_172, "Produit archiv\xe9 avec succ\xe8s", "deleted_product", _s37_21, _s16_173, "Le produit a \xe9t\xe9 r\xe9tabli avec succ\xe8s", _s17_102, _s36_18, _s16_174, ":count produit(s) supprim\xe9(s) avec succ\xe8s", _s17_103, _s37_11, "product_key", "Produit", "notes", "Notes", "cost", "Co\xfbt", "client", "Client", "clients", "Clients", "new_client", "Nouveau client", "created_client", "Client cr\xe9\xe9 avec succ\xe8s", "updated_client", "Client modifi\xe9 avec succ\xe8s", "archived_client", "Client archiv\xe9 avec succ\xe8s", _s16_175, _s35_19, "deleted_client", "Client supprim\xe9 avec succ\xe8s", "deleted_clients", ":count clients supprim\xe9s avec succ\xe8s", "restored_client", "Client restaur\xe9 avec succ\xe8s", _s16_176, _s36_7, "address1", "Rue", "address2", "Appt/B\xe2timent", "city", "Ville", "state", _s18_106, "postal_code", "Code postal", "country", "Pays", "invoice", "Facture", "invoices", "Factures", "new_invoice", _s16_244, "created_invoice", "Facture cr\xe9\xe9e avec succ\xe8s", "updated_invoice", "Facture modifi\xe9e avec succ\xe8s", _s16_177, "Facture archiv\xe9e avec succ\xe8s", "deleted_invoice", "Facture supprim\xe9e avec succ\xe8s", _s16_178, "Facture restaur\xe9e avec succ\xe8s", _s17_104, ":count factures archiv\xe9es avec succ\xe8s", _s16_179, _s38_17, _s17_105, _s37_12, "emailed_invoice", "Facture envoy\xe9e par courriel avec succ\xe8s", "emailed_payment", "Paiement envoy\xe9 par email avec succ\xe8s", "amount", "Montant", "invoice_number", "Num\xe9ro de facture", "invoice_date", "Date de facture", "discount", "Remise", "po_number", "N\xb0 de Bon de Commande", "terms", "Conditions", "public_notes", "Note publique", "private_notes", _s18_124, "frequency", "Fr\xe9quence", "start_date", "Date de d\xe9but", "end_date", "Date de fin", "quote_number", "Devis num\xe9ro", "quote_date", "Date du devis", "valid_until", "Valide jusqu'au", "items", "Articles", "partial_deposit", "Depot Partial", "description", "Description", "unit_cost", "Co\xfbt unitaire", "quantity", "Quantit\xe9", "add_item", "Ajouter Article", "contact", "Contact", "work_phone", "T\xe9l\xe9phone", "total_amount", "Montant Total", "pdf", "Fichier PDF", "due_date", "Date d'\xe9ch\xe9ance", _s16_180, _s16_245, "status", "Statut", _s17_106, "Etat de Facture", "quote_status", "\xc9tat du devis", _s22_31, "Cliquer pour ajouter un article (objet)", _s22_33, _s35_20, "count_selected", "nombre selectionne", "total", "Total", "percent", "Pourcent", "edit", "\xc9diter", "dismiss", "Quitter", _s20_49, "S\xe9lectionnez une date", _s22_34, "S\xe9lectionnez un client", _s24_30, "S\xe9lectionnez une facture", "task_rate", "Taux de t\xe2che", "settings", "Param\xe8tres", "language", "Langue", "currency", "Devise", "created_at", "Date de cr\xe9ation", "created_on", "Created On", "updated_at", "Mis \xe0 jour", "tax", "Taxe", _s30_13, "S\xe9lectionnez un num\xe9ro de facture", _s27_34, "S\xe9lectionner un num\xe9ro de devis", "past_due", "En retard", "draft", "Brouillon", "sent", "Envoy\xe9", "viewed", "Vu", "approved", "Approuv\xe9", "partial", "Partiel/d\xe9p\xf4t", "paid", "Pay\xe9", "mark_sent", _s20_86, _s22_36, "Facture marquee comme envoyee avec succes", _s22_37, "Facture marqu\xe9e comme envoy\xe9e", _s23_31, "Les factures ont \xe9t\xe9 marqu\xe9es envoy\xe9es", _s23_32, "Factures marqu\xe9es comme envoy\xe9es", "done", "Termin\xe9", _s37_13, "Veuillez introduire un nom de client", "dark_mode", "Mode sombre", _s27_36, "Recommencer k'app pour introduire l'app change", "refresh_data", "Rafra\xeechir les donn\xe9es", "blank_contact", "Details pour contacter la Banque", "activity", "Activit\xe9", _s16_182, "Pas d'archives trouves", "clone", "Dupliquer", "loading", "Chargement", "industry", "Champ", "size", "Taille", "payment_terms", "Conditions de paiement", "payment_date", _s16_246, "payment_status", _s16_247, _s16_184, "En attente", _s16_185, "Annul\xe9", _s16_186, "\xc9chou\xe9", _s16_187, "Compl\xe9t\xe9", _s16_188, _s23_43, _s16_189, "Remboursement", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portail client", "show_tasks", "Afficher des taches", "email_reminders", "Messages de rappel par courriel", "enabled", "Activ\xe9", "recipients", "Destinataires", "initial_email", _s16_248, "first_reminder", "Premier rappel", "second_reminder", "Second rappel", "third_reminder", _s16_249, "reminder1", "Premier Message de Rappel", "reminder2", "Deuxieme Message de Rappel", "reminder3", "Troisieme Message de Rappel", "template", "Mod\xe8le", "send", "Envoyer", "subject", "Sujet", "body", "Corps", "send_email", "Envoyer courriel", "email_receipt", "Envoyer le re\xe7u par courriel au client", "auto_billing", "Debit Automatique", "button", "Bouton", "preview", "Pr\xe9visualisation", "customize", "Personnaliser", "history", "Historique", "payment", "Paiement", "payments", "Paiements", "refunded", "Rembours\xe9", "payment_type", _s16_231, _s21_57, "R\xe9f\xe9rence transaction", "enter_payment", "Saisissez un paiement", "new_payment", "Entrer un paiement", "created_payment", "Paiement cr\xe9\xe9 avec succ\xe8s", "updated_payment", "Paiement mis \xe0 jour avec succ\xe8s", _s16_190, "Paiement archiv\xe9 avec succ\xe8s", "deleted_payment", "Paiement supprim\xe9 avec succ\xe8s", _s16_191, "Paiement restaur\xe9 avec succ\xe8s", _s17_109, ":count paiement archiv\xe9s avec succ\xe8s", _s16_192, ":count paiements supprim\xe9s avec succ\xe8s", _s17_110, _s37_15, "quote", "Devis", "quotes", "Devis", "new_quote", "Nouveau devis", "created_quote", "Devis cr\xe9\xe9 avec succ\xe8s", "updated_quote", "Devis mis \xe0 jour avec succ\xe8s", "archived_quote", "Devis archiv\xe9 avec succ\xe8s", "deleted_quote", "Devis supprim\xe9 avec succ\xe8s", "restored_quote", "Devis restaur\xe9 avec succ\xe8s", "archived_quotes", ":count devis archiv\xe9s avec succ\xe8s", "deleted_quotes", ":count devis supprim\xe9s avec succ\xe8s", "restored_quotes", _s35_13, "expense", "D\xe9pense", "expenses", "D\xe9penses", "vendor", "Fournisseur", "vendors", "Fournisseurs", "task", "T\xe2che", "tasks", "T\xe2ches", "project", "Projet", "projects", "Projets", "activity_1", _s30_34, "activity_2", _s33_20, "activity_3", _s34_19, "activity_4", _s32_14, "activity_5", _s38_18, "activity_6", ":user a mail\xe9 la facture :invoice pour :client \xe0 :contact", "activity_7", ":contact a vu la facture :invoice pour :client", "activity_8", _s35_21, "activity_9", _s36_19, "activity_10", ":contact a saisi un paiement :payment concernant :invoice pour :client", "activity_11", ":user a mis \xe0 jour le moyen de paiement :payment", "activity_12", ":user a archiv\xe9 le moyen de paiement :payment", "activity_13", ":user a supprim\xe9 le moyen de paiement :payment", "activity_14", ":user a entr\xe9 le cr\xe9dit :credit", "activity_15", _s36_20, "activity_16", _s33_21, "activity_17", _s34_20, "activity_18", ":user a cr\xe9\xe9 le devis :quote", "activity_19", ":user a mis \xe0 jour le devis :quote", "activity_20", ":user a mail\xe9 un devis :quote pour :client \xe0 :contact", "activity_21", ":contact a lu le devis :quote", "activity_22", ":user a archiv\xe9 le devis :quote", "activity_23", ":user a supprim\xe9 le devis :quote", "activity_24", ":user a restaur\xe9 le devis :quote", "activity_25", _s36_21, "activity_26", _s34_21, "activity_27", _s37_22, "activity_28", _s34_22, "activity_29", ":contact a approuv\xe9 le devis :quote pour :client", "activity_30", _s35_22, "activity_31", _s38_19, "activity_32", _s39_5, "activity_33", _s39_6, "activity_34", _s32_15, "activity_35", _s35_23, "activity_36", _s36_22, "activity_37", _s36_23, "activity_39", ":user a annul\xe9 un paiement de :payment_amount (:payment)", "activity_40", ":user a rembours\xe9 :adjustment d'un paiement de :payment_amount (:payment)", "activity_41", _s50_6, "activity_42", _s27_56, "activity_43", _s33_22, "activity_44", _s30_35, "activity_45", _s31_20, "activity_46", _s31_21, "activity_47", _s38_20, "activity_48", ":user a mis \xe0 jour le ticket :ticket", "activity_49", ":user a ferm\xe9 le ticket :ticket", "activity_50", ":user a fusionner le ticket :ticket", "activity_51", ":user a divis\xe9 le :ticket", "activity_52", ":contact a ouvert le ticket :ticket", "activity_53", ":contact a r\xe9-ouvert le ticket :ticket", "activity_54", ":user a r\xe9-ouvert le ticket :ticket", "activity_55", ":contact a r\xe9pondu au ticket :ticket", "activity_56", ":user a visualis\xe9 le ticket :ticket", "activity_57", "La facture :invoice n'a pu \xeatre envoy\xe9e", "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s27_57, "emailed_quote", "Devis envoy\xe9 par courriel avec succ\xe8s", "emailed_credit", _s27_48, _s20_51, "Le devis s\xe9lectionn\xe9 a \xe9t\xe9 envoy\xe9 avec succ\xe8s", _s21_59, _s34_15, "expired", "Expir\xe9", "all", "Tous", "select", "S\xe9lectionner", _s22_38, _s34_23, "custom_value1", "Valeur Personnalis\xe9e 1", "custom_value2", "Valeur Personnalis\xe9e 2", "custom_value3", _s22_68, "custom_value4", _s22_69, _s18_75, _s30_36, _s24_35, _s39_7, _s29_31, "Message personnalis\xe9 pour une facture impay\xe9e", _s27_41, "Message personnalis\xe9 pour un paiement de facture", _s31_10, "Message personnalis\xe9 pour un devis refus\xe9", "lock_invoices", "Lock Invoices", "translations", "Traductions", _s19_43, "Mod\xe8le de num\xe9ro de t\xe2che", _s19_45, "Mod\xe8le de compteur de t\xe2che", _s22_40, "Mod\xe8le de num\xe9ro de d\xe9pense", _s22_42, "Mod\xe8le de compteur de d\xe9pense", _s21_60, "Mod\xe8le de num\xe9ro de fournisseur", _s21_62, "Mod\xe8le de compteur de fournisseur", _s21_64, "Mod\xe8le de num\xe9ro de ticket", _s21_66, "Mod\xe8le de compteur de ticket", _s22_44, "Mod\xe8le de num\xe9ro de paiement", _s22_46, "Mod\xe8le de compteur de paiement", _s22_48, "Mod\xe8le de num\xe9ro de facture", _s22_50, _s29_48, _s20_52, "Mod\xe8le de num\xe9ro de devis", _s20_54, "Compteur du num\xe9ro de devis", _s21_68, _s26_45, _s21_70, _s28_65, _s21_72, _s26_45, _s21_73, _s28_65, _s18_77, _s33_23, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, "Nom par d\xe9faut de la taxe 1", _s18_81, "Taux par d\xe9faut de la taxe 1", _s18_83, "Nom par d\xe9faut de la taxe 2", _s18_85, "Taux par d\xe9faut de la taxe 2", _s18_87, "Nom par d\xe9faut de la taxe 3", _s18_89, "Taux par d\xe9faut de la taxe 3", _s21_74, "Sujet du courriel de la facture", _s19_47, "Sujet du courriel du devis", _s21_76, "Sujet du courriel du paiement", _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Ville du client", "client_state", "R\xe9gion du client", "client_country", "Pays du client", _s16_193, "Le client est actif", "client_balance", "Solde du client", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", _s21_93, _s16_197, "Date limite", "tax_rate1", "Taux de taxe 1", "tax_rate2", "Taux de taxe 2", "tax_rate3", "Taux de taxe 3", "auto_bill", _s23_44, "archived_at", "Archiv\xe9 le", "has_expenses", "D\xe9penses en cours", "custom_taxes1", "Autres taxes 1", "custom_taxes2", "Autres taxes 2", "custom_taxes3", "Autres taxes 3", "custom_taxes4", "Autres taxes 4", _s17_113, "Autre frais 1", _s17_114, "Autre frais 2", _s17_115, "Autre frais 3", _s17_116, "Autre frais 4", "is_deleted", "Supprim\xe9", "vendor_city", _s20_87, "vendor_state", "R\xe9gion du fournisseur", "vendor_country", _s19_74, "is_approved", "Is Approved", "tax_name", "Nom de la taxe", "tax_amount", "Montant de la taxe", "tax_paid", "Taxe pay\xe9e", "payment_amount", _s19_75, "age", "Anciennet\xe9", "is_running", "Is Running", "time_log", _s16_250, "bank_id", "Banque", _s19_49, _s19_50, _s16_198, _s20_88, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "fr_CA", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importer les donn\xe9es", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", ":user a cr\xe9\xe9 une facture r\xe9currente :recurring_invoice", "activity_101", ":user a mis \xe0 jour une facture r\xe9currente :recurring_invoice", "activity_102", ":user a archiv\xe9 une facture r\xe9currente :recurring_invoice", "activity_103", ":user a supprim\xe9 une facture r\xe9currente :recurring_invoice", "activity_104", ":user a restaur\xe9 une facture r\xe9currente :recurring_invoice", _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", _s20_69, "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s17_131, _s17_1, "Nom du contact", "order", "Order", "unassigned", "Non assign\xe9", "partial_value", "Doit \xeatre plus grand que z\xe9ro et moins que le total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Autoriser", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "D\xe9finissez le sous-domaine ou affichez la facture sur votre site web.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Code promo", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "S\xe9curit\xe9", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnements", _s16_11, "Nouvel abonnement", _s17_7, _s19_59, _s20_1, _s27_52, _s20_2, _s33_18, _s21_6, _s30_33, _s20_3, "L'abonnement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s20_4, "L'abonnement a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s21_7, "L'abonnement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s19_0, "Recherche de 1 abonnement", _s20_5, "Recherche :count abonnements", _s26_0, "Le sous-domaine n'est pas disponible", "connect_gmail", "Connectez Gmail", _s16_13, "D\xe9connecter Gmail", "connected_gmail", "Gmail a \xe9t\xe9 connect\xe9 avec succ\xe8s", _s18_13, "Gmail a \xe9t\xe9 d\xe9connect\xe9 avec succ\xe8s", _s16_15, "Les modifications apport\xe9es au code de base peuvent bloquer la mise \xe0 jour, vous pouvez ex\xe9cuter cette commande pour annuler les modifications:", _s16_16, "Num\xe9ro d'identification du client", "count_minutes", ":count minutes", _s16_18, "D\xe9lai d'expiration du mot de passe", _s29_, "Compteur partag\xe9 pour les factures et les cr\xe9dits", "use_last_email", "Utiliser le dernier e-mail", _s16_20, "Activer la soci\xe9t\xe9", _s21_9, "Activez les courriels, les factures r\xe9currentes et les notifications", _s27_1, "Une erreur s'est produite, veuillez r\xe9essayer", _s27_2, "Veuillez d'abord d\xe9finir un mot de passe", _s34_1, "Attention: modifier votre num\xe9ro de t\xe9l\xe9phone d\xe9sactivera l'authentification \xe0 deux facteurs (A2F)", "help_translate", "Aide \xe0 la traduction", _s23_2, "Veuillez s\xe9lectionner un pays", "resend_invite", "Renvoyer l'invitation", _s19_1, "L'authentification \xe0 deux facteurs (A2F) a \xe9t\xe9 d\xe9sactiv\xe9e avec succ\xe8s", _s16_22, "Le compte a \xe9t\xe9 connect\xe9 avec succ\xe8s", _s19_2, "Le comte a \xe9t\xe9 d\xe9connect\xe9 avec succ\xe8s", "delivered", "Livr\xe9", "bounced", "Rejet\xe9s", "spam", "Pourriel", "view_docs", "Afficher la documentation", _s32_, "Veuillez fournir un num\xe9ro de t\xe9l\xe9phone mobile pour activer l'authentification \xe0 deux facteurs", "send_sms", "Envoyer un SMS", "sms_code", "Code SMS", _s21_10, "Scannez le code barre avec une :link app compatible.", _s18_14, "Vous avez activ\xe9 authentification \xe0 deux facteurs avec succ\xe8s.", "connect_google", "Connectez Google", _s17_9, "D\xe9connecter Google", _s17_11, "Authentification \xe0 deux facteurs", _s18_15, "D\xe9sactiver l'authentification \xe0 deux facteurs", _s34_2, "Requiert un mot de passe avec une connexion de r\xe9seau social", "stay_logged_in", "Restez connect\xe9", _s23_4, "Avertissement: Votre session va expirer bient\xf4t", "count_hours", ":count heures", "count_day", "1 jour", "count_days", ":count jours", _s19_3, "Expiration de la session web", _s17_12, "Param\xe8tres de s\xe9curit\xe9", "resend_email", "Renvoyer le courriel", _s26_2, "Veuillez confirmer votre adresse courriel", _s16_23, _s18_101, _s19_5, _s27_58, _s19_7, "Veuillez s\xe9lectionner un utilisateur authentifi\xe9 avec Gmail", "list_long_press", "Longue pression pour liste", "show_actions", "Afficher les actions", _s17_14, "D\xe9marrer la multis\xe9lection", _s27_4, "Un courriel a \xe9t\xe9 envoy\xe9 pour confirmer l'adresse courriel", _s21_11, "Pour utiliser :client_counter veuillez ajouter soit :client_number ou :client_id_number pour \xe9viter les conflits", "this_quarter", "Ce trimestre", "last_quarter", _s17_132, "to_update_run", "Pour mettre \xe0 jour l'ex\xe9cution", _s18_17, _s20_70, _s16_24, "URL d'enregistrement", "invoice_project", _s18_102, "invoice_task", _s17_133, "invoice_expense", "Facture de d\xe9pense", _s19_8, "Rechercher 1 d\xe9lai de paiement", _s20_6, "Rechercher :count d\xe9lais de paiement", _s16_26, "Enregistrer et pr\xe9visualiser", "save_and_email", "Enregistrer et envoyer par courriel", _s16_28, "\xc9v\xe9nements pris en charge", _s16_30, _s16_229, _s17_16, "Solde converti", _s22_3, "Pay\xe9 \xe0 ce jour converti", _s24_1, "Solde de cr\xe9dit converti", "converted_total", "Total converti", "is_sent", "Est Envoy\xe9", _s17_18, _s20_71, "document_upload", "T\xe9l\xe9versement de document", _s20_7, "Autoriser les clients \xe0 t\xe9l\xe9verser des documents", "expense_total", "Total des d\xe9penses", "enter_taxes", "Saisir les taxes", "by_rate", "Par taux", "by_amount", "Par montant", "enter_amount", "Entrer le montant", "before_taxes", "Avant taxes", "after_taxes", "Apr\xe8s taxes", "color", "Couleur", "show", "Voir", "hide", "Cacher", "empty_columns", "Colonnes vides", _s21_13, "Mode debug activ\xe9", _s26_3, "Avertissement: Pour usage local seulement. Fuites de donn\xe9es possible. En savoir plus.", "running_tasks", "T\xe2ches en cours", "recent_tasks", "T\xe2ches r\xe9centes", "recent_expenses", "D\xe9penses r\xe9centes", _s17_20, "D\xe9penses \xe0 venir", "update_app", "Mettre \xe0 jour l'App", "started_import", "L'importation a d\xe9marr\xe9 avec succ\xe8s", _s24_3, "Dupliquer le mappage de colonnes", _s20_8, "Utiliser taxes incluses", _s18_19, "Est Montant rabais", "column", "Colonne", "sample", "Exemple", "map_to", "Mapper vers", "import", "Importer", _s25_1, "Utiliser premi\xe8re rang\xe9e comme noms de colonnes", "select_file", _s32_10, _s16_32, "Aucun fichier s\xe9lectionn\xe9", "csv_file", "Fichier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Comptabilit\xe9", _s22_5, "Veuillez fournir tous les CSV.", "import_type", "Type d'importation", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "Voir les licences", "webhook_url", "URL Webhook", _s17_22, "\xc9diteur plein \xe9cran", "sidebar_editor", "\xc9diteur de barre lat\xe9rale", _s22_6, 'Veuillez saisir ":value" pour confirmer', "purge", "Purger", "service", "Service", "clone_to", "Cloner vers", "clone_to_other", "Cloner vers Autre", "labels", "\xc9tiquettes", "add_custom", "Ajout personnalis\xe9", "payment_tax", "Paiement de taxe", "unpaid", "Impay\xe9", "white_label", "Sans marque", "delivery_note", "Note de livraison", _s24_6, "Les factures envoy\xe9es sont verrouill\xe9es", _s24_8, "Les factures pay\xe9es sont verrouill\xe9es", "source_code", "Code source", "app_platforms", "Plateformes d'app", "invoice_late", "facture en retard", "quote_expired", _s18_125, "partial_due", "Montant partiel du", "invoice_total", "Montant total", "quote_total", "Total de la soumission", "credit_total", "Total du cr\xe9dit", _s23_5, "Total de facture", "actions", "Actions", "expense_number", "Num\xe9ro de d\xe9pense", "task_number", "Num\xe9ro de t\xe2che", "project_number", "Num\xe9ro de projet", "project_name", "Nom du projet", "warning", "Avertissement", "view_settings", "Voir les param\xe8tres", _s24_10, "Avertissement: Cette entreprise n'a pas encore \xe9t\xe9 activ\xe9e", "late_invoice", "Facture en retard", "expired_quote", _s18_125, "remind_invoice", "Rappeler la facture", "cvv", "CVV", "client_name", "Nom du client", "client_phone", "T\xe9l\xe9phone du client", "required_fields", "Champs requis", "calculated_rate", "Taux calcul\xe9", _s17_24, "Taux de t\xe2che par d\xe9faut", "clear_cache", "Vider le cache", "sort_order", "Ordre de tri", "task_status", "\xc9tat", "task_statuses", "\xc9tats de t\xe2che", "new_task_status", "Nouvel \xe9tat de t\xe2che", _s16_34, "\xc9dition de l'\xe9tat de t\xe2che", _s19_9, "L'\xe9tat de t\xe2che a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s19_10, "Le statut de la t\xe2che a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s20_10, "L'\xe9tat de t\xe2che a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s19_11, "L'\xe9tat de t\xe2che a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s19_12, "L'\xe9tat de t\xe2che a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s20_11, "L'\xe9tat de t\xe2che a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s22_7, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 archiv\xe9s succ\xe8s", _s21_15, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s22_8, "Les :value \xe9tats de t\xe2che ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s18_21, "Recherche 1 \xe9tat de t\xe2che", _s20_13, "Recherche :count \xe9tats de t\xe2che", _s16_36, "Afficher le tableau des t\xe2ches", _s21_16, "Toujours afficher la section des t\xe2ches lors de la cr\xe9ation de factures", _s20_14, "Facturer le journal du temps des t\xe2ches", _s25_2, "Ajouter les d\xe9tails de temps aux lignes d'articles des factures", _s20_16, "Facturer le journal des dates des t\xe2ches", _s25_3, "Ajouter les d\xe9tails de date aux lignes d'articles des factures", _s21_17, "D\xe9marrer les t\xe2ches avant de sauvegarder", _s18_22, "Configurer les \xe9tats", "task_settings", "Param\xe8tres des t\xe2ches", _s20_18, "Configurer les cat\xe9gories", _s18_24, "Cat\xe9gories de d\xe9pense", _s20_20, _s29_45, _s21_18, "\xc9diter la cat\xe9gorie D\xe9pense", _s24_11, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s24_12, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s25_5, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s24_13, _s40_4, _s24_14, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 retir\xe9e avec succ\xe8s", _s25_6, "La cat\xe9gorie de d\xe9pense a \xe9t\xe9 r\xe9tablie avec succ\xe8s", _s27_8, ":count cat\xe9gories de d\xe9pense ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s26_4, "Les :value cat\xe9gories de d\xe9pense ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s27_9, "Les :value cat\xe9gories de d\xe9pense ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s23_6, "Recherche 1 cat\xe9gorie de d\xe9pense", _s25_8, "Recherche :count cat\xe9gorie de d\xe9pense", _s21_20, "Utiliser les cr\xe9dits disponibles", "show_option", "Afficher les options", _s22_9, "Le montant du cr\xe9dit ne peut pas exc\xe9der le montant du paiement", "view_changes", "Visualiser les changements", "force_update", "Forcer la mise \xe0 jour", _s17_26, "Vous \xeates sur la derni\xe8re version, mais il peut y avoir encore quelques mises \xe0 jour en cours", "mark_paid_help", "Suivez les d\xe9penses qui ont \xe9t\xe9 pay\xe9es", _s18_26, "Devrait \xeatre factur\xe9e", _s23_7, "Activer la facturation de la d\xe9pense", _s29_2, "Rend visibles les documents", _s21_22, "D\xe9finir un taux d'\xe9change", _s16_38, "Param\xe8tres des d\xe9penses", _s18_27, "Cloner en r\xe9currence", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "Champs utilisateur", "variables", "Variables", "show_password", "Afficher le mot de passe", "hide_password", "Masquer le mot de passe", "copy_error", "Erreur de copie", "capture_card", "Carte saisie", _s17_27, "Autofacturation activ\xe9e", "total_taxes", "Total Taxes", "line_taxes", "Ligne Taxes", "total_fields", "Total Champs", _s25_9, "La facture r\xe9currente a \xe9t\xe9 arr\xeat\xe9e avec succ\xe8s", _s25_10, "La facture r\xe9currente a \xe9t\xe9 d\xe9marr\xe9e avec succ\xe8s", _s25_11, "La facture r\xe9currente a \xe9t\xe9 reprise avec succ\xe8s", "gateway_refund", "Remboursement de passerelle", _s19_13, "Proc\xe9der au remboursement avec la passerelle de paiement", "due_date_days", "Date d'\xe9ch\xe9ance", "paused", "En pause", "mark_active", "Cocher actif", "day_count", "Jour :count", _s22_10, "Premier jour du mois", _s21_23, "Dernier jour du mois", _s17_29, "Utiliser les d\xe9lais de paiement", "endless", "Sans fin", "next_send_date", "Prochaine date d'envoi", _s16_40, "Cycles restants", _s17_31, _s18_103, _s18_29, _s20_72, _s21_25, _s27_53, _s22_12, "\xc9diter la facture r\xe9currente", _s25_12, "La facture r\xe9currente a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", _s25_13, "La facture r\xe9currente a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s26_5, "La facture r\xe9currente a \xe9t\xe9 archiv\xe9e avec succ\xe8s", _s25_14, "La facture r\xe9currente a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s25_15, "La facture r\xe9currente a \xe9t\xe9 retir\xe9e avec succ\xe8s", _s26_6, "La facture r\xe9currente a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s27_10, "Les :value factures r\xe9currentes ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s26_7, "Les :value factures r\xe9currentes ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s27_11, "Les :value factures r\xe9currentes ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s24_15, "Recherche 1 facture r\xe9currente", _s25_16, "Recherche :count factures r\xe9currentes", "send_date", "Date d'envoi", "auto_bill_on", "Autofacturer le", _s28_2, "Montant minimum de sous-paiement", "profit", "Profit", "line_item", "Ligne d'article", _s18_31, "Accepter Sur-paiement", _s23_8, "Accepter paiement suppl\xe9mentaire pour pourboire", _s19_14, "Accepter Sous-paiement", _s24_16, "Accepter paiement au minimum le montant partiel/d\xe9p\xf4t", "test_mode", "Mode test", "opened", "Ouverts", _s30_0, "Conciliation non r\xe9ussie", _s30_1, "Conciliation r\xe9ussie", "gateway_success", "Passerelle r\xe9ussie", "gateway_failure", "\xc9chec de passerelle", "gateway_error", "Erreur de passerelle", "email_send", "Envoi de courriel", _s17_33, "File d'envoi de courriel", "failure", "\xc9chec", "quota_exceeded", "Quota d\xe9pass\xe9", _s16_42, "\xc9chec en amont", "system_logs", "Journaux syst\xe8me", "view_portal", "Voir le portail", "copy_link", "Copier le lien", "token_billing", "Sauvegarder les informations de carte de cr\xe9dit", _s24_17, "Bienvenue dans Invoice Ninja", "always", "Toujours", "optin", "Adh\xe9sion", "optout", "D\xe9sadh\xe9sion", "label", "Libell\xe9", "client_number", _s16_230, "auto_convert", "Conversion automatique", "company_name", _s19_60, "reminder1_sent", "Rappel 1 envoy\xe9", "reminder2_sent", "Rappel 2 envoy\xe9", "reminder3_sent", "Rappel 3 envoy\xe9", _s18_33, "Dernier envoi de rappel", "pdf_page_info", "Page :current de :total", _s16_44, "Les factures ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_quotes", "Les soumissions ont \xe9t\xe9 envoy\xe9es par courriel avec succ\xe8s", "emailed_credits", "Les cr\xe9dits ont \xe9t\xe9 envoy\xe9s par courriel avec succ\xe8s", "gateway", "Passerelle", "view_in_stripe", "Voir dans Stripe", "rows_per_page", "Rang\xe9es par page", "hours", "Heures", "statement", "Relev\xe9", "taxes", "Taxes", "surcharge", "surcharge", "apply_payment", "Appliquer le paiement", "apply", "Appliquer", "unapplied", "Non appliqu\xe9", "select_label", "S\xe9lectionnez le libell\xe9", "custom_labels", "Libell\xe9s personnalis\xe9s", "record_type", "Type d'enregistrement", "record_name", "Non d'enregistrement", "file_type", "Type de fichier", "height", "Hauteur", "width", "Largeur", "to", "\xe0", "health_check", "\xc9tat de sant\xe9", "payment_type_id", _s16_231, "last_login_at", "Derni\xe8re connexion \xe0", "company_key", "Cl\xe9 d'entreprise", "storefront", "Vitrine", "storefront_help", "Activer les applications externes \xe0 cr\xe9er des factures", "client_created", "Client cr\xe9\xe9", _s20_23, "Courriel de paiement en ligne", _s20_25, "Courriel de paiement manuel", "completed", "Compl\xe9t\xe9", "gross", "Brut", "net_amount", "Montant net", "net_balance", "Solde net", "client_settings", "Param\xe8tres clients", _s17_35, "Factures s\xe9lectionn\xe9es", _s17_37, "Paiements s\xe9lectionn\xe9s", "selected_quotes", "Soumissions s\xe9lectionn\xe9es", "selected_tasks", "T\xe2ches s\xe9lectionn\xe9es", _s17_39, "D\xe9penses s\xe9lectionn\xe9es", _s17_41, _s16_232, _s17_43, "Factures impay\xe9es", "recent_payments", "Paiements re\xe7us", "upcoming_quotes", "Soumissions \xe0 venir", "expired_quotes", "Soumissions expir\xe9es", "create_client", "Cr\xe9er un client", "create_invoice", _s17_134, "create_quote", "Cr\xe9er une soumission", "create_payment", "Cr\xe9er un paiement", "create_vendor", _s20_73, "update_quote", "Mettre \xe0 jour la soumission", "delete_quote", "Supprimer la soumission", "update_invoice", "Mettre \xe0 jour la facture", "delete_invoice", _s20_74, "update_client", "Mettre \xe0 jour le client", "delete_client", _s19_61, "delete_payment", _s21_85, "update_vendor", "Mettre \xe0 jour le fournisseur", "delete_vendor", "Supprimer le fournisseur", "create_expense", "Cr\xe9er une d\xe9pense", "update_expense", "Mettre \xe0 jour la d\xe9pense", "delete_expense", _s20_75, "create_task", "Cr\xe9er une T\xe2che", "update_task", "Mettre \xe0 jour la t\xe2che", "delete_task", "Supprimer la T\xe2che", "approve_quote", "Approuver la t\xe2che", "off", "Ferm\xe9", "when_paid", "Lors du paiement", "expires_on", "Expiration le", "free", "Gratuit", "plan", "Plan", "show_sidebar", "Afficher la barre lat\xe9rale", "hide_sidebar", "Masquer la barre lat\xe9rale", "event_type", "Type d'\xe9v\xe9nement", "target_url", "Cible", "copy", "Copier", "must_be_online", "Veuillez red\xe9marrer l'application lorsque vous serez connect\xe9 \xe0 internet", _s17_45, "Les crons doivent \xeatre activ\xe9s", "api_webhooks", "API Webhooks", "search_webhooks", "Recherche de :count Webhooks", "search_webhook", "Recherche de 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nouveau Webhook", "edit_webhook", "\xc9diter le Webhook", "created_webhook", "Le webhook a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_webhook", "Le webhook a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s16_46, "Le webhook a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_webhook", "Le webhook a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_webhook", "Le webhook a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s16_47, "Le webhook a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_46, "Les :value webhooks ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_48, "Les :value webhooks ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_49, "Les :value webhooks ont \xe9t\xe9 retir\xe9s avec succ\xe8s", _s17_47, "Les :value webhooks ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "api_tokens", "Jetons API", "api_docs", "Docs API", "search_tokens", "Recherche de :count jetons", "search_token", "Recherche de 1 jeton", "token", "Jeton", "tokens", "Jetons", "new_token", "Nouveau jeton", "edit_token", "\xc9diter le jeton", "created_token", "Le jeton a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_token", "Le jeton a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_token", "Le jeton a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_token", "Le jeton a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_token", "Le jeton a \xe9t\xe9 retir\xe9 avec succ\xe8s", "restored_token", "Le jeton a \xe9t\xe9 restaur\xe9 avec succ\xe8s", "archived_tokens", "Les :value jetons ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_tokens", "Les :value jetons ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "restored_tokens", "Les :value jetons ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s19_16, "Enregistrement d'un client", _s24_19, "Autoriser le client \xe0 s'inscrire sur le portail", _s21_27, "Personnaliser et pr\xe9visualiser", "email_invoice", _s31_17, "email_quote", "Envoyer la soumission par courriel", "email_credit", "Cr\xe9dit par courriel", "email_payment", _s20_79, _s20_28, "Le client n'a pas d'adresse courriel d\xe9finie", "ledger", "Grand livre", "view_pdf", "Voir PDF", "all_records", "Tous les enregistrements", "owned_by_user", "Propri\xe9t\xe9 de l'utilisateur", _s16_50, "Cr\xe9dit restant", "contact_name", "Nom du contact", "use_default", "Utiliser le d\xe9faut", _s16_52, "Rappels infinis", "number_of_days", "Nombre de jours", _s23_10, "Configuration des d\xe9lais de paiements", "payment_term", "D\xe9lai de paiement", _s16_53, "Nouveau d\xe9lai de paiement", _s17_49, "Modifier le d\xe9lai de paiement", _s20_29, "Le d\xe9lai de paiement a \xe9t\xe9 cr\xe9 avec succ\xe8s", _s20_30, "Le d\xe9lai de paiement a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s21_28, "Le d\xe9lai de paiement a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s20_31, "Le d\xe9lai de paiement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s20_32, "Le d\xe9lai de paiement a \xe9t\xe9 retir\xe9 avec succ\xe8s", _s21_29, "Le d\xe9lai de paiement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s22_17, "Les :value d\xe9lais de paiement ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s21_30, "Les :value d\xe9lais de paiement ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s22_18, "Les :value d\xe9lais de paiement ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "email_sign_in", "Connexion par courriel", "change", "Basculer", _s23_12, "Basculer vers l'affichage mobile", _s24_20, "Basculer vers l'affichage ordinateur", "send_from_gmail", "Envoyer avec Gmail", "reversed", "Invers\xe9", "cancelled", "Annul\xe9", "credit_amount", _s17_135, "quote_amount", "Montant de la soumission", "hosted", "H\xe9berg\xe9", "selfhosted", "Auto-h\xe9berg\xe9", "exclusive", "Exclusif", "inclusive", "Inclusif", "hide_menu", "Masquer le menu", "show_menu", "Afficher le menu", _s18_35, _s23_43, _s16_56, "Recherche de documents", "search_designs", "Recherche de designs", "search_invoices", "Recherche de factures", "search_clients", "Recherche de clients", "search_products", "Recherche de produits", "search_quotes", "Recherche de soumissions", "search_credits", "Recherche de cr\xe9dits", "search_vendors", "Recherche de fournisseurs", "search_users", "Recherche d'utilisateurs", _s16_57, "Recherche de taux de taxe", "search_tasks", "Recherche de t\xe2ches", "search_settings", "Recherche de param\xe8tres", "search_projects", "Recherche de projets", "search_expenses", "Recherche de d\xe9penses", "search_payments", "Recherche de paiements", "search_groups", "Recherche de groupes", "search_company", "Recherche d'entreprises", "search_document", "Recherche de 1 document", "search_design", "Recherche de 1 design", "search_invoice", "Recherche de 1 facture", "search_client", "Recherche de 1 client", "search_product", "Recherche de 1 produit", "search_quote", "Recherche de 1 soumission", "search_credit", "Recherche de 1 cr\xe9dit", "search_vendor", "Recherche de 1 entreprise", "search_user", "Recherche de 1 utilisateur", "search_tax_rate", "Recherche de 1 taux de taxe", "search_task", "Recherche de 1 t\xe2che", "search_project", "Recherche de 1 projet", "search_expense", "Recherche de 1 d\xe9pense", "search_payment", "Recherche de 1 paiement", "search_group", "Recherche de 1 groupe", "refund_payment", "Remboursement", _s17_53, "La facture a \xe9t\xe9 annul\xe9e avec succ\xe8s", _s18_37, "Les factures ont \xe9t\xe9 annul\xe9es avec succ\xe8s", _s16_63, "La facture a \xe9t\xe9 invers\xe9e avec succ\xe8s", _s17_54, "Les factures ont \xe9t\xe9 invers\xe9es avec succ\xe8s", "reverse", "Inverse", "full_name", "Nom complet", _s17_55, "Ville/Prov/CP", _s17_57, "Ville/Province/Code postal", "custom1", "Personnalisation 1", "custom2", "Personnalisation 2", "custom3", _s22_60, "custom4", "Quatri\xe8me personnalis\xe9e", "optional", "Optionnel", "license", "Licence", "purge_data", _s18_104, _s16_64, "Toutes les donn\xe9es de l'entreprise ont \xe9t\xe9 purg\xe9es avec succ\xe8s", _s18_38, "Avertissement: Cette action est irr\xe9versible et va supprimer vos donn\xe9es de fa\xe7on d\xe9finitive.", "invoice_balance", "Solde de facture", "age_group_0", "0 - 30 jours", "age_group_30", "30 - 60 jours", "age_group_60", "60 - 90 jours", "age_group_90", "90 - 120 jours", "age_group_120", "120+ jours", "refresh", "Actualiser", "saved_design", "Le mod\xe8le a \xe9t\xe9 sauvegard\xe9 avec succ\xe8s", "client_details", "Informations du client", "company_address", "Adresse de l'entreprise", "invoice_details", "D\xe9tails de facture", "quote_details", "Informations de la soumission", "credit_details", "Informations de cr\xe9dit", "product_columns", "Colonnes produit", "task_columns", "Colonnes t\xe2ches", "add_field", "Ajouter un champ", "all_events", "Ajouter un \xe9v\xe9nement", "permissions", "Permissions", "none", "Aucun", "owned", "Propri\xe9taire", "payment_success", "Paiement r\xe9ussi", "payment_failure", "Le paiement a \xe9chou\xe9", "invoice_sent", _s22_59, "quote_sent", "Soumission envoy\xe9e", "credit_sent", "Cr\xe9dit envoy\xe9", "invoice_viewed", "Facture visualis\xe9e", "quote_viewed", "Soumission visualis\xe9e", "credit_viewed", "Cr\xe9dit visualis\xe9", "quote_approved", "Soumission approuv\xe9e", _s25_18, "Recevoir toutes les notifications", _s16_65, "Acheter une licence", "apply_license", _s18_105, "cancel_account", _s19_62, _s22_19, "Avertissement: cette action est irr\xe9versible et supprimera votre compte de fa\xe7on d\xe9finitive.", "delete_company", "Supprimer l'entreprise", _s22_20, "Avertissement: Cette entreprise sera d\xe9finitivement supprim\xe9e.", "enabled_modules", "Modules activ\xe9s", "converted_quote", "La soumission a \xe9t\xe9 convertie avec succ\xe8s", "credit_design", "Design de cr\xe9dit", "includes", "Inclue", "header", "Ent\xeate", "load_design", "Charger le design", "css_framework", "Framework CSS", "custom_designs", "Designs personnalis\xe9s", "designs", "Designs", "new_design", "Nouveau design", "edit_design", "\xc9diter le design", "created_design", "Le mod\xe8le a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_design", "Le mod\xe8le a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_design", "Le mod\xe8le a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_design", "Le mod\xe8le a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_design", "Le mod\xe8le a \xe9t\xe9 retir\xe9 avec succ\xe8s", "restored_design", "Le mod\xe8le a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_67, "Les :value mod\xe8les ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_designs", "Les :value mod\xe8les ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_68, "Les :value mod\xe8les ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "proposals", "Propositions", "tickets", "Billets", _s16_69, "Soumissions r\xe9currentes", "recurring_tasks", "T\xe2ches r\xe9currentes", _s18_, _s20_76, _s18_39, "Gestion du compte", "credit_date", "Date du cr\xe9dit", "credit", "Cr\xe9dit", "credits", "Cr\xe9dits", "new_credit", "Inscrire un cr\xe9dit", "edit_credit", _s16_233, "created_credit", "Le cr\xe9dit a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_credit", _s38_13, "archived_credit", "Le cr\xe9dit a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_credit", "Le cr\xe9dit a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_credit", "Le cr\xe9dit a \xe9t\xe9 retir\xe9 avec succ\xe8s", "restored_credit", "Le cr\xe9dit a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_71, ":count cr\xe9dits ont archiv\xe9s avec succ\xe8s", "deleted_credits", ":count cr\xe9dits ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_72, "Les :value cr\xe9dits ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "current_version", "Version courante", "latest_version", "Derni\xe8re version", "update_now", "Mettre \xe0 jour", _s26_13, "Une nouvelle version de l'application web est disponible", _s16_73, "Mise \xe0 jour disponible", "app_updated", "La mise \xe0 jour a \xe9t\xe9 compl\xe9t\xe9e avec succ\xe8s", "learn_more", "En savoir plus", "integrations", "Int\xe9grations", "tracking_id", "ID de suivi", _s17_59, "URL du Webhook Slack", "credit_footer", "Pied de page pour cr\xe9dit", "credit_terms", "Conditions d'utilisation pour cr\xe9dit", "new_company", "Nouvelle entreprise", "added_company", "L'entreprise a \xe9t\xe9 ajout\xe9e avec succ\xe8s", "company1", "Entreprise personnalis\xe9e 1", "company2", "Entreprise personnalis\xe9e 2", "company3", "Entreprise personnalis\xe9e 3", "company4", "Entreprise personnalis\xe9e 4", "product1", "Produit personnalis\xe9 1", "product2", "Produit personnalis\xe9 2", "product3", "Produit personnalis\xe9 3", "product4", "Produit personnalis\xe9 4", "client1", "Client personnalis\xe9 1", "client2", _s21_86, "client3", _s21_87, "client4", _s21_88, "contact1", "Contact personnalis\xe9 1", "contact2", "Contact personnalis\xe9 2", "contact3", "Contact personnalis\xe9 3", "contact4", "Contact personnalis\xe9 4", "task1", "T\xe2che personnalis\xe9e 1", "task2", "T\xe2che personnalis\xe9e 2", "task3", "T\xe2che personnalis\xe9e 3", "task4", "T\xe2che personnalis\xe9e 4", "project1", "Projet personnalis\xe9 1", "project2", "Projet personnalis\xe9 2", "project3", "Projet personnalis\xe9 3", "project4", "Projet personnalis\xe9 4", "expense1", "D\xe9pense personnalis\xe9e 1", "expense2", "D\xe9pense personnalis\xe9e 2", "expense3", "D\xe9pense personnalis\xe9e 3", "expense4", "D\xe9pense personnalis\xe9e 4", "vendor1", _s26_39, "vendor2", _s26_40, "vendor3", _s26_41, "vendor4", _s26_42, "invoice1", "Facture personnalis\xe9e 1", "invoice2", _s23_45, "invoice3", _s23_46, "invoice4", _s23_47, "payment1", "Paiement personnalis\xe9 1", "payment2", _s23_45, "payment3", _s23_46, "payment4", _s23_47, "surcharge1", _s25_47, "surcharge2", _s25_48, "surcharge3", _s25_49, "surcharge4", _s25_50, "group1", "Groupe personnalis\xe9 1", "group2", "Groupe personnalis\xe9 2", "group3", "Groupe personnalis\xe9 3", "group4", "Groupe personnalis\xe9 4", "reset", "Remise \xe0 z\xe9ro", "number", "Num\xe9ro", "export", "Exporter", "chart", "Graphique", "count", "Compteur", "totals", "Totaux", "blank", "Vide", "day", "Jour", "month", "Mois", "year", "Ann\xe9e", "subgroup", "Sous-groupe", "is_active", "Actif", "group_by", "Grouper par", "credit_balance", "Solde du cr\xe9dit", _s18_45, _s29_46, _s17_61, "Nom complet du contact", "contact_phone", _s20_77, _s21_31, "Valeur personnalis\xe9e du contact 1", _s21_32, "Valeur personnalis\xe9e du contact 2", _s21_33, "Valeur personnalis\xe9e du contact 3", _s21_34, "Valeur personnalis\xe9e du contact 4", _s17_63, "Rue de livraison", _s17_64, "App. de livraison", "shipping_city", "Ville de livraison", "shipping_state", "Province de livraison", _s20_33, "Code postal de livraison", _s16_103, "Pays de livraison", _s16_105, "Rue de facturation", _s16_106, "App. de facturation", "billing_city", "Ville de facturation", "billing_state", "Province de facturation", _s19_19, "Code postal de facturation", "billing_country", "Pays de facturation", "client_id", "ID du client", "assigned_to", "Assign\xe9 \xe0", "created_by", "Cr\xe9\xe9 par :name", "assigned_to_id", "Assign\xe9 \xe0 ID", "created_by_id", "Cr\xe9\xe9 par ID", "add_column", "Ajouter colonne", "edit_columns", "\xc9diter colonne", "columns", "Colonnes", "aging", "Impay\xe9s", "profit_and_loss", "Profit et perte", "reports", "Rapports", "report", "Rapport", "add_company", "Ajouter une entreprise", "unpaid_invoice", "Facture impay\xe9e", "paid_invoice", "Facture pay\xe9e", _s16_107, "Soumission non approuv\xe9e", "help", "Aide", "refund", "Rembousement", "refund_date", "Date de remboursement", "filtered_by", "Filtr\xe9e par", "contact_email", _s19_63, "multiselect", _s18_107, "entity_state", "Statut", "verify_password", _s24_45, "applied", "Publi\xe9", _s21_35, "Inclut les erreurs r\xe9centes des journaux syst\xe8me", _s30_4, "Nous avons re\xe7u votre message et vous r\xe9pondrons rapidement.", "message", "Message", "from", "De", _s20_35, "Afficher les d\xe9tails du produit", _s25_20, _s78_, _s20_37, "Le moteur de rendu PDF n\xe9cessite :version", _s18_48, _s31_18, _s23_14, _s41_7, _s18_50, "Configurer les param\xe8tres", "support_forum", "Forum de support", "about", "\xc0 propos", "documentation", "Documentation", "contact_us", "Nous joindre", "subtotal", "Sous-total", "line_total", "Total", "item", "Article", "credit_email", "Courriel pour le cr\xe9dit", "iframe_url", "Site web", "domain_url", "URL de domaine", _s21_36, "Le mot de passe est trop court", _s20_38, "Le mot de passe doit contenir une majuscule et un nombre", _s19_21, "T\xe2ches du portail client", _s23_15, _s33_19, _s20_39, "Veuillez saisir une valeur", "deleted_logo", "Le logo a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "yes", "Oui", "no", "Non", "generate_number", _s17_136, "when_saved", _s21_89, "when_sent", "Lors de l'envoi", "select_company", "S\xe9lectionnez une entreprise", "float", "Flottant", "collapse", "R\xe9duire", "show_or_hide", "Afficher/masquer", "menu_sidebar", "Menu lat\xe9ral", "history_sidebar", _s18_108, "tablet", "Tablette", "mobile", "Mobile", "desktop", "Fixe", "layout", "Affichage", "view", "Visualiser", "module", "Module", "first_custom", _s20_78, "second_custom", _s19_64, "third_custom", "Troisi\xe8me lat\xe9ral", "show_cost", "Afficher le co\xfbt", _s17_66, "Afficher le montant du produit", "show_cost_help", "Afficher un champ de co\xfbt du produit pour suivre le profit", _s21_37, "Afficher la quantit\xe9 de produit", _s26_15, "Afficher un champ Quantit\xe9 de produit. 1 par d\xe9faut.", _s21_39, "Afficher la quantit\xe9 de facture", _s26_16, "Afficher un champ Quantit\xe9 d'article par ligne. 1 par d\xe9faut.", _s21_41, "Afficher le rabais de produit", _s26_17, "Afficher un champ rabais de ligne d'article", _s16_109, _s19_65, _s21_43, "D\xe9finit automatiquement la quantit\xe9 d'article par ligne \xe0 1.", "one_tax_rate", "Un taux de taxe", "two_tax_rates", _s17_137, "three_tax_rates", "Trois taux de taxes", _s16_111, _s23_37, "user", "Utilisateur", "invoice_tax", "Taxe de facture", "line_item_tax", "Taxe d'article par ligne", "inclusive_taxes", "Taxes incluses", _s17_68, "Taux de taxe de facture", "item_tax_rates", "Taux de taxe par article", _s18_52, _s31_19, "configure_rates", "Configuration des taux", _s18_53, "Configurer les passerelles", "tax_settings", "Param\xe8tres des taxes", _s18_55, "Taux de taxe", "accent_color", _s27_54, "switch", "Changer", _s19_23, "Liste s\xe9par\xe9e par virgule", "options", "Options", _s16_113, "Ligne de texte simple", "multi_line_text", "Multiligne de texte", "dropdown", _s16_234, "field_type", "Type de champ", _s27_22, "Un courriel a \xe9t\xe9 envoy\xe9 pour la r\xe9cup\xe9ration du mot de passe", "submit", "Envoyer", _s16_115, "R\xe9cup\xe9rez votre mot de passe", "late_fees", "Frais de retard", "credit_number", "Num\xe9ro de cr\xe9dit", "payment_number", _s18_109, "late_fee_amount", "Frais de retard", _s16_116, "Pourcentage de frais de retard", "schedule", "Calendrier", "before_due_date", "Avant l'\xe9ch\xe9ance", "after_due_date", "Apr\xe8s l'\xe9ch\xe9ance", _s18_57, _s28_62, "days", "Jours", "invoice_email", "Courriel de facturation", "payment_email", _s20_79, "partial_payment", _s16_245, "payment_partial", _s16_245, _s21_44, "Courriel du paiement partiel", "quote_email", "Courriel de soumission", _s16_118, "Rappel perp\xe9tuel", _s16_120, _s22_61, "administrator", "Administrateur", _s18_58, "Permet \xe0 un utilisateur de g\xe9rer d'autres utilisateurs, modifier les param\xe8tres et tous les enregistrements.", "user_management", _s24_46, "users", "Utilisateurs", "new_user", _s18_110, "edit_user", _s20_80, "created_user", "L'utilisateur a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_user", "L'utilisateur a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_user", "L'utilisateur a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_user", "L'utilisateur a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "removed_user", "L'utilisateur a \xe9t\xe9 retir\xe9 avec succ\xe8s", "restored_user", "L'utilisateur a \xe9t\xe9 restaur\xe9 avec succ\xe8s", "archived_users", "Les :value utilisateurs ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_users", "Les :value utilisateurs ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "removed_users", "Les :value utilisateurs ont \xe9t\xe9 retir\xe9s avec succ\xe8s", "restored_users", "Les :value utilisateurs ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", _s16_122, _s19_66, "invoice_options", "Options de facture", _s17_70, _s24_47, _s22_27, 'Afficher seulement la ligne "Pay\xe9 \xe0 ce jour" sur les factures pour lesquelles il y a au moins un paiement.', _s23_17, _s18_111, _s28_15, "Inclure les images jointes dans la facture.", _s16_124, "Afficher l'ent\xeate sur", _s16_125, "Afficher le pied de page sur", "first_page", "premi\xe8re page", "all_pages", "toutes les pages", "last_page", "derni\xe8re page", "primary_font", "Fonte principale", "secondary_font", "Fonte secondaire", "primary_color", _s18_112, "secondary_color", _s18_113, "page_size", "Taille de page", "font_size", _s16_235, "quote_design", "Design de soumission", "invoice_fields", _s17_138, "product_fields", "Champs produit", "invoice_terms", _s25_45, "invoice_footer", "Pied de facture", "quote_terms", "Conditions de soumission", "quote_footer", "Pied de soumission par d\xe9faut", _s18_59, "Envoi automatique", _s23_18, "Envoi automatiquement les factures r\xe9currentes lorsqu'elles sont cr\xe9\xe9es.", _s20_42, "Autoarchivage", _s25_26, _s69_1, _s18_60, "Autoarchivage", _s23_19, _s69_1, _s18_61, "Autoconversion", _s23_20, "Convertir automatiquement une soumission en facture lorsque le client l'accepte.", _s17_72, _s29_47, "freq_daily", "Quotidienne", "freq_weekly", "Hebdomadaire", "freq_two_weeks", "Aux deux semaines", "freq_four_weeks", "Aux quatre semaines", "freq_monthly", "Mensuelle", "freq_two_months", "Deux mois", _s17_74, "Trimestrielle", _s16_126, "4 mois", "freq_six_months", "Semestrielle", "freq_annually", "Annuelle", "freq_two_years", "Deux ans", _s16_127, "Trois ans", "never", "Jamais", "company", "Entreprise", _s17_75, "Nombres g\xe9n\xe9r\xe9s", "charge_taxes", "Facturer les taxes", "next_reset", _s23_38, "reset_counter", "Remettre \xe0 z\xe9ro le compteur", _s16_128, _s17_139, "number_padding", _s23_39, "general", "G\xe9n\xe9ral", "surcharge_field", "Champ Surcharge", "company_field", "Champ Entreprise", "company_value", _s19_67, "credit_field", "Champ Cr\xe9dit", "invoice_field", "Champ Facture", _s17_77, "Surcharge de facture", "client_field", "Champ Client", "product_field", "Champ Produit", "payment_field", "Champ Paiement", "contact_field", "Champ Contact", "vendor_field", "Champ Fournisseur", "expense_field", "Champ D\xe9pense", "project_field", "Champ Projet", "task_field", "Champ T\xe2che", "group_field", "Champ Groupe", "number_counter", _s18_114, "prefix", "Pr\xe9fixe", "number_pattern", _s16_236, "messages", "Messages", "custom_css", _s16_237, _s17_79, _s23_40, _s16_130, _s19_68, _s21_46, "Afficher la signature du client sur la facture/soumission PDF.", _s25_27, _s48_1, _s30_5, "Requiert du client qu'il confirme et accepte les conditions de facturation", _s23_21, "Case \xe0 cocher pour les conditions de soumssion", _s28_16, "Requiert du client qu'il confirme et accepte les conditions de soumission", _s25_28, _s20_81, _s30_6, "Requiert une signature du client", _s23_22, "Signature de soumission", _s22_29, _s42_10, _s27_23, "Permet de sp\xe9cifier un mot de passe pour chaque contact. Si un mot de passe est sp\xe9cifi\xe9, le contact devra saisir ce mot de passe pour visualiser ses factures.", "authorization", "Autorisation", "subdomain", "sous-domaine", "domain", "Domaine", "portal_mode", "Mode portail", "email_signature", "Cordialement,", _s24_21, "rendez le paiement plus facile \xe0 vos client en ajoutant \xe0 vos courriel, le marquage de schema.org.", "plain", "Ordinaire", "light", "Clair", "dark", "Fonc\xe9", "email_design", _s18_115, "attach_pdf", "Joindre un PDF", _s16_131, "Joindre un document", "attach_ubl", "Joindre UBL", "email_style", "Style de courriel", _s19_25, "Autoriser le marquage", "reply_to_email", "Courriel de r\xe9ponse", "reply_to_name", "Nom de R\xe9pondre \xc0", "bcc_email", "Courriel CCI", "processed", "Trait\xe9", "credit_card", "Carte de cr\xe9dit", "bank_transfer", _s17_140, "priority", "Priorit\xe9", "fee_amount", _s17_141, "fee_percent", _s21_90, "fee_cap", _s16_238, "limits_and_fees", "Limites/Frais", "enable_min", "Activer min", "enable_max", "Activer max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s26_43, "credentials", "Identifiants", "update_address", "Mise \xe0 jour de l'adresse", _s19_28, "Met \xe0 jour l'adresse du client avec les informations fournies", "rate", "Taux", "tax_rate", "Taux de taxe", "new_tax_rate", _s20_82, "edit_tax_rate", _s22_62, _s16_133, "Le taux de taxe a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", _s16_134, "Le taux de taxe a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s17_82, "Le taux de taxe a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_135, _s42_11, _s17_83, _s42_12, _s18_62, "Les :value taux de taxes ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s17_84, "Les :value taux de taxes ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s18_63, "Les :value taux de taxes ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "fill_products", "Remplissage automatique des produits", _s18_64, "La s\xe9lection d'un produit entrainera la mise \xe0 jour de la description et du prix", "update_products", "Mise \xe0 jour automatique des produits", _s20_44, _s65_1, _s16_136, _s22_63, _s21_47, "Convertir automatiquement le prix des produits dans la devise du client", "fees", "Frais", "limits", "Limites", "provider", "Fournisseur", "company_gateway", _s22_64, _s16_138, "Passerelles de paiement", _s19_29, _s19_69, _s20_45, _s20_83, _s23_23, _s37_20, _s23_24, _s43_2, _s24_22, _s40_5, _s23_25, _s41_8, _s24_23, _s41_9, _s25_30, "Les :value passerelles ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s24_24, "Les :value passerelles ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s25_31, "Les :value passerelles ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s16_140, "Continuez l'\xe9dition", "discard_changes", "Annuler les changements", "default_value", _s17_145, "disabled", "D\xe9sactiv\xe9", "currency_format", _s16_239, _s21_48, "Premier jour de la semaine", _s23_26, "Premier mois de l'ann\xe9e", "sunday", "Dimanche", "monday", "Lundi", "tuesday", "Mardi", "wednesday", "Mercredi", "thursday", "Jeudi", "friday", "Vendredi", "saturday", "Samedi", "january", "Janvier", "february", "F\xe9vrier", "march", "Mars", "april", "Avril", "may", "Mai", "june", "Juin", "july", "Juillet", "august", "Ao\xfbt", "september", "Septembre", "october", "Octobre", "november", "Novembre", "december", "D\xe9cembre", "symbol", "Symbole", "ocde", "Code", "date_format", "Format de date", "datetime_format", _s17_142, "military_time", "Format d'heure 24 h", _s18_65, "Affichage 24h", "send_reminders", _s19_70, "timezone", "Fuseau horaire", _s19_30, "Filtrer par projet", _s17_85, _s18_116, _s19_32, "Filtrer par facture", _s18_66, "Filtrer par client", _s18_68, "Filtrer par fournisseur", "group_settings", "Param\xe8tres des groupes", "group", "Groupe", "groups", "Groupes", "new_group", "Nouveau groupe", "edit_group", _s16_240, "created_group", _s32_11, "updated_group", _s38_14, "archived_groups", "Les :value groupes ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_groups", "Les :value groupes ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "restored_groups", "Les :value groupes ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "upload_logo", "T\xe9l\xe9verser le logo", "uploaded_logo", "Le logo a \xe9t\xe9 t\xe9l\xe9vers\xe9 avec succ\xe8s", "logo", "Logo", "saved_settings", _s46_3, _s16_142, "Param\xe8tres des produits", "device_settings", _s24_49, "defaults", "Pr\xe9-d\xe9finis", "basic_settings", _s18_117, _s17_87, _s18_118, "company_details", "Informations sur l'entreprise", "user_details", "Profil utilisateur", "localization", "Param\xe8tres r\xe9gionaux", "online_payments", _s18_119, "tax_rates", "Taux de taxe", "notifications", "Notifications", "import_export", "Importer / Exporter", "custom_fields", _s20_84, "invoice_design", "Mod\xe8les de factures", "buy_now_buttons", _s26_44, "email_settings", _s22_65, _s23_28, "Mod\xe8les et rappels", _s22_30, _s27_55, _s19_34, _s25_46, "price", "Prix", "email_sign_up", "Inscription par courriel", "google_sign_up", _s23_41, _s27_25, "Merci de votre achat!", "redeem", "Rembourser", "back", "Retour", "past_purchases", "Achats pr\xe9c\xe9dents", _s19_36, _s17_143, "pro_plan", "Plan Pro", "enterprise_plan", "Plan Entreprise", "count_users", ":count utilisateurs", "upgrade", "Mettre \xe0 niveau", _s25_32, "Veuillez entrer votre pr\xe9nom", _s24_25, "Veuillez entrer votre nom", _s33_14, "Vous devez accepter les conditions et la politique de confidentialit\xe9 pour cr\xe9er un compte.", "i_agree_to_the", "J'accepte", _s21_79, "les conditions", _s19_54, "la politique de confidentialit\xe9", _s16_144, _s24_50, "privacy_policy", _s28_63, "sign_up", "Inscription", "account_login", "Connexion", "view_website", "Visiter le site web", "create_account", "Cr\xe9er un compte", "email_login", "Courriel de connexion", "create_new", "Cr\xe9er", _s18_70, _s32_12, _s21_51, "Veuillez sauvegarder ou annuler vos modifications", "download", "T\xe9l\xe9charger", _s27_26, "Le plan Entreprise est requis", "take_picture", "Prendre un photo", "upload_file", "T\xe9l\xe9verser un fichier", "document", "Justificatifs", "documents", "Documents", "new_document", "Nouveau document", "edit_document", "\xc9diter un document", _s17_89, "Le document a \xe9t\xe9 t\xe9l\xe9vers\xe9 avec succ\xe8s", _s16_146, "Le document a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s17_90, "Le document a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_147, _s38_15, _s17_91, _s38_16, _s18_72, "Les :value documents ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s17_92, "Les :value documents ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s18_73, "Les :value documents ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "no_history", "Aucun historique", "expense_date", _s18_120, "pending", "En attente", _s16_148, "Connect\xe9", _s16_149, "En attente", _s16_150, "Factur\xe9", "converted", "Convertie", _s24_27, "Ajouter des documents aux factures", "exchange_rate", "Taux de change", _s16_151, "Conversion de devise", "mark_paid", "Marquer pay\xe9e", "category", "Cat\xe9gorie", "address", "Adresse", "new_vendor", _s19_71, "created_vendor", "Le fournisseur a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_vendor", "Le fournisseur a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", "archived_vendor", "Le fournisseur a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_vendor", "Le fournisseur a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "restored_vendor", "Le fournisseur a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_152, ":count fournisseurs ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", "deleted_vendors", ":count fournisseurs ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s16_153, "Les :value fournisseurs ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "new_expense", "Entrer une d\xe9pense", "created_expense", "La d\xe9pense a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_expense", "La d\xe9pense a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", _s16_154, "La d\xe9pense a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_expense", "La d\xe9pense a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s16_155, "La d\xe9pense a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s17_93, "Les d\xe9penses ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s16_156, "Les d\xe9penses ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", _s17_94, "Les :value d\xe9penses ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "copy_shipping", "Copier livraison", "copy_billing", _s18_121, "design", "Conception", _s21_52, "Enregistrement introuvable", "invoiced", "Factur\xe9e", "logged", "Enregistr\xe9e", "running", "En cours", "resume", "Continuer", "task_errors", "Veuillez corriger les plages de temps qui se chevauchent", "start", "D\xe9marrer", "stop", "Arr\xeater", "started_task", "La t\xe2che a d\xe9mar\xe9 avec succ\xe8s", "stopped_task", "La t\xe2che a \xe9t\xe9 arr\xeat\xe9e avec succ\xe8s", "resumed_task", "La t\xe2che a \xe9t\xe9 reprise avec succ\xe8s", "now", "Maintenant", _s16_157, "D\xe9marrage de t\xe2ches automatique", "timer", "Minuteur", "manual", "Manuel", "budgeted", "Budg\xe9t\xe9", "start_time", "D\xe9marr\xe9e \xe0", "end_time", "Arr\xeat\xe9e \xe0", "date", "Date", "times", "Temps", "duration", "Dur\xe9e", "new_task", "Nouvelle t\xe2che", "created_task", "La t\xe2che a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_task", "La t\xe2che a \xe9t\xe9 modifi\xe9e avec succ\xe8s", "archived_task", "La t\xe2che a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_task", "La t\xe2che a \xe9t\xe9 supprim\xe9e avec succ\xe8s", "restored_task", "La t\xe2che a \xe9t\xe9 restaur\xe9e avec succ\xe8s", "archived_tasks", ":count t\xe2ches ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", "deleted_tasks", ":count t\xe2ches ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", "restored_tasks", "Les :value t\xe2ches ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", _s19_38, _s22_66, "budgeted_hours", _s16_241, "created_project", _s32_13, "updated_project", _s39_4, _s16_159, _s35_17, "deleted_project", _s36_17, _s16_160, "Le projet a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_95, ":count projets ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_161, ":count projets ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_96, "Les :value projets ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "new_project", "Nouveau projet", _s27_30, "Merci d'utiliser notre app!", "if_you_like_it", "Si vous appr\xe9ciez, merci", "click_here", "cliquer ici", _s18_74, "Cliquez ici", "to_rate_it", "d'\xe9valuer notre app.", "average", "Moyenne", "unapproved", "Non approuv\xe9", _s30_11, _s49_0, "locked", "Verrouill\xe9", "authenticate", "Connexion", _s19_40, _s23_42, _s24_28, _s21_91, "footer", "Pied de page", "compare", "Comparer", "hosted_login", "Connexion h\xe9berg\xe9e", "selfhost_login", "Connexion autoh\xe9berg\xe9e", "google_sign_in", "Connexion avec Google", "today", "Aujourd'hui", "custom_range", "Personnalis\xe9", "date_range", _s19_72, "current", "En cours", "previous", "Pr\xe9c\xe9dent", "current_period", "P\xe9riode en cours", _s17_98, "P\xe9riode de comparaison", "previous_period", _s18_122, "previous_year", _s16_242, "compare_to", "Comparer \xe0", "last7_days", _s16_243, "last_week", "Derni\xe8re semaine", "last30_days", _s17_144, "this_month", "Mois en cours", "last_month", "Mois dernier", "this_year", "Cette ann\xe9e", "last_year", "Derni\xe8re ann\xe9e", "custom", "Personnalis\xe9", _s16_162, "Cloner en facture", "clone_to_quote", "Cloner en soumission", "clone_to_credit", "Cloner au cr\xe9dit", "view_invoice", "Voir la facture", "convert", "Convertir", "more", "Plus", "edit_client", "Modifier le client", "edit_product", "Modifier le produit", "edit_invoice", _s19_73, "edit_quote", "Modifier la soumission", "edit_payment", "Modifier le paiement", "edit_task", "\xc9diter la t\xe2che", "edit_expense", "\xc9diter la d\xe9pense", "edit_vendor", _s21_92, "edit_project", "\xc9diter le projet", _s22_, _s28_64, _s20_47, "\xc9diter la soumission r\xe9currente", "billing_address", _s22_67, _s16_164, "Adresse de livraison", "total_revenue", "Revenu total", "average_invoice", "Facture moyenne", "outstanding", "Impay\xe9es", "invoices_sent", _s24_51, "active_clients", "clients actifs", "close", "Fermer", "email", "Courriel", "password", "Mot de passe", "url", "URL", "secret", "Secret", "name", "Nom", "logout", "D\xe9connexion", "login", "Connexion", "filter", "Filtrer", "sort", "Trier", "search", "Rechercher", "active", "Actif", "archived", "Archiv\xe9", "deleted", "Supprim\xe9", "dashboard", "Tableau de bord", "archive", "Archiver", "delete", "Supprimer", "restore", "Restaurer", _s16_166, "Actualisation compl\xe9t\xe9e", _s23_29, "Veuillez saisir votre courriel", _s26_25, "Veuillez saisir votre mot de passe", _s21_55, "Veuillez saisir votre URL", _s26_27, "Veuillez saisir la cl\xe9 de produit", "ascending", "Ascendant", "descending", "Descendant", "save", "Sauvegarder", _s17_100, "Il y a eu une erreur", "paid_to_date", "Pay\xe9 \xe0 ce jour", "balance_due", "Solde d\xfb", "balance", "Solde", "overview", "Survol", "details", "D\xe9tails", "phone", "T\xe9l\xe9phone", "website", "Site web", "vat_number", "N\xb0 de taxe", "id_number", "N\xb0 d'entreprise", "create", "Cr\xe9er", _s19_42, _s35_18, "error", "Erreur", _s16_168, _s20_85, "contacts", "Contacts", "additional", "Additionnel", "first_name", "Pr\xe9nom", "last_name", "Nom", "add_contact", _s18_123, "are_you_sure", "Voulez-vous vraiment effectuer cette action?", "cancel", "Annuler", "ok", "Ok", "remove", "Retirer", _s16_170, "Le courriel est invalide", "product", "Produit", "products", "Produits", "new_product", "Nouveau produit", "created_product", "Le produit a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_product", "Le produit a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s16_172, "Le produit a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_product", _s37_21, _s16_173, "Le produit a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_102, _s36_18, _s16_174, ":count produits ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_103, "Les :value produits ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "product_key", "Produit", "notes", "Notes", "cost", "Co\xfbt", "client", "Client", "clients", "Clients", "new_client", "Nouveau client", "created_client", "Le client a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_client", "Le client a \xe9t\xe9 modifi\xe9 avec succ\xe8s", "archived_client", "Le client a \xe9t\xe9 archiv\xe9 avec succ\xe8s", _s16_175, _s35_19, "deleted_client", "Le client a \xe9t\xe9 supprim\xe9 avec succ\xe8s", "deleted_clients", ":count clients ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", "restored_client", "Le client a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s16_176, "Les :value clients ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "address1", "Rue", "address2", "Appartement / Bureau", "city", "Ville", "state", "\xc9tat / Province", "postal_code", "Code postal", "country", "Pays", "invoice", "Facture", "invoices", "Factures", "new_invoice", _s16_244, "created_invoice", "La facture a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_invoice", "La facture a \xe9t\xe9 modifi\xe9e avec succ\xe8s", _s16_177, "La facture a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_invoice", "La facture a \xe9t\xe9 supprim\xe9e avec succ\xe8s", _s16_178, "La facture a \xe9t\xe9 restaur\xe9e avec succ\xe8s", _s17_104, ":count factures ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", _s16_179, _s38_17, _s17_105, "Les :value factures ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "emailed_invoice", "La facture a \xe9t\xe9 envoy\xe9e par courriel avec succ\xe8s", "emailed_payment", "Le paiement a \xe9t\xe9 envoy\xe9 par courriel avec succ\xe8s", "amount", "Montant", "invoice_number", "N\xb0 de facture", "invoice_date", "Date de facturation", "discount", "Escompte", "po_number", "N\xb0 de bon de commande", "terms", "Modalit\xe9s", "public_notes", "Notes publiques", "private_notes", _s18_124, "frequency", "Fr\xe9quence", "start_date", "Date de d\xe9but", "end_date", "Date de fin", "quote_number", "N\xb0 de soumission", "quote_date", "Date de soumission", "valid_until", "Valide jusqu'au", "items", "Articles", "partial_deposit", "Partiel/d\xe9p\xf4t", "description", "Description", "unit_cost", "Co\xfbt unitaire", "quantity", "Quantit\xe9", "add_item", "Ajouter un article", "contact", "Contact", "work_phone", "T\xe9l\xe9phone", "total_amount", "Montant total", "pdf", "PDF", "due_date", "\xc9ch\xe9ance", _s16_180, "Date d'\xe9ch\xe9ance paiement partiel", "status", "Statut", _s17_106, "\xc9tat de la facture", "quote_status", "\xc9tat de la soumission", _s22_31, "Cliquez + pour ajouter un article", _s22_33, _s35_20, "count_selected", ":count s\xe9lectionn\xe9s", "total", "Total", "percent", "Pourcent", "edit", "Modifier", "dismiss", "Annuler", _s20_49, "Veuillez saisir une date", _s22_34, _s31_19, _s24_30, "Veuillez s\xe9lectionner une facture", "task_rate", "Taux de t\xe2che", "settings", "Param\xe8tres", "language", "Langue", "currency", "Devise", "created_at", "Cr\xe9\xe9 le", "created_on", "Cr\xe9\xe9 le", "updated_at", "Mis \xe0 jour", "tax", "Taxe", _s30_13, "Veuillez saisir un num\xe9ro de facture", _s27_34, "Veuillez saisir un num\xe9ro de soumission", "past_due", "En souffrance", "draft", "Brouillon", "sent", "Envoy\xe9", "viewed", "Vue", "approved", "Approuv\xe9e", "partial", "Partiel / d\xe9p\xf4t", "paid", "Pay\xe9", "mark_sent", _s20_86, _s22_36, _s50_7, _s22_37, _s50_7, _s23_31, _s56_0, _s23_32, _s56_0, "done", "Valider", _s37_13, "Veuillez saisir un nom de client ou de contact", "dark_mode", "Mode fonc\xe9", _s27_36, "Red\xe9marrez l'app pour mettre \xe0 jour les changements", "refresh_data", "Actualiser les donn\xe9es", "blank_contact", "Contact vide", "activity", "Activit\xe9", _s16_182, "Aucun enregistrement trouv\xe9", "clone", "Dupliquer", "loading", "Chargement", "industry", "Entreprise", "size", "Taille", "payment_terms", "D\xe9lais de paiement", "payment_date", _s16_246, "payment_status", _s16_247, _s16_184, "Em attente", _s16_185, "Annul\xe9e", _s16_186, "\xc9chou\xe9e", _s16_187, "Compl\xe9t\xe9e", _s16_188, "Partiellement rembours\xe9e", _s16_189, "Rembours\xe9e", _s17_107, "Non appliqu\xe9", _s17_108, _s27_58, "net", "Net", "client_portal", "Portail client", "show_tasks", "Afficher les t\xe2ches", "email_reminders", "Courriel de rappel", "enabled", "Activ\xe9", "recipients", "destinataires", "initial_email", _s16_248, "first_reminder", "1er rappel", "second_reminder", "2e rappel", "third_reminder", "3e rappel", "reminder1", "Premier rappel", "reminder2", "Deuxi\xe8me rappel", "reminder3", _s16_249, "template", "Mod\xe8le", "send", "Envoyer", "subject", "Sujet", "body", "Message", "send_email", "Envoyer un courriel", "email_receipt", "Envoyer le re\xe7u de paiement par courriel au client", "auto_billing", _s23_44, "button", "Bouton", "preview", "PR\xc9VISUALISATION", "customize", "Personnalisation", "history", "Historique", "payment", "Paiement", "payments", "Paiements", "refunded", "Rembours\xe9e", "payment_type", _s16_231, _s21_57, "N\xb0 de r\xe9f\xe9rence", "enter_payment", _s20_89, "new_payment", _s20_89, "created_payment", "Le paiement a \xe9t\xe9 cr\xe9\xe9 avec succ\xe8s", "updated_payment", "Le paiement a \xe9t\xe9 mis \xe0 jour avec succ\xe8s", _s16_190, "Le paiement a \xe9t\xe9 archiv\xe9 avec succ\xe8s", "deleted_payment", "Le paiement a \xe9t\xe9 supprim\xe9 avec succ\xe8s", _s16_191, "Le paiement a \xe9t\xe9 restaur\xe9 avec succ\xe8s", _s17_109, ":count paiements ont \xe9t\xe9 archiv\xe9s avec succ\xe8s", _s16_192, ":count paiements ont \xe9t\xe9 supprim\xe9s avec succ\xe8s", _s17_110, "Les :value paiements ont \xe9t\xe9 restaur\xe9s avec succ\xe8s", "quote", "Soumission", "quotes", "Soumissions", "new_quote", "Nouvelle soumission", "created_quote", "La soumission a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s", "updated_quote", "La soumission a \xe9t\xe9 mise \xe0 jour avec succ\xe8s", "archived_quote", "La soumission a \xe9t\xe9 archiv\xe9e avec succ\xe8s", "deleted_quote", "La soumission a \xe9t\xe9 supprim\xe9e avec succ\xe8s", "restored_quote", "La soumission a \xe9t\xe9 restaur\xe9e avec succ\xe8s", "archived_quotes", ":count soumissions ont \xe9t\xe9 archiv\xe9es avec succ\xe8s", "deleted_quotes", ":count soumissions ont \xe9t\xe9 supprim\xe9es avec succ\xe8s", "restored_quotes", "Les :value soumissions ont \xe9t\xe9 restaur\xe9es avec succ\xe8s", "expense", "D\xe9pense", "expenses", "D\xe9penses", "vendor", "Fournisseur", "vendors", "Fournisseurs", "task", "T\xe2che", "tasks", "T\xe2ches", "project", "Projet", "projects", "Projets", "activity_1", _s30_34, "activity_2", _s33_20, "activity_3", _s34_19, "activity_4", _s32_14, "activity_5", _s38_18, "activity_6", ":user a envoy\xe9 par courriel la facture :invoice pour :client \xe0 :contact", "activity_7", ":contact a visualis\xe9 la facture :invoice pour :client", "activity_8", _s35_21, "activity_9", _s36_19, "activity_10", ":contact a saisi le paiement :payment de :payment_amount de la facture :invoice pour :client", "activity_11", ":user a mis \xe0 jour le paiement :payment", "activity_12", ":user a archiv\xe9 le paiement :payment", "activity_13", ":user a supprim\xe9 le paiement :payment", "activity_14", ":user a saisi le cr\xe9dit :credit", "activity_15", _s36_20, "activity_16", _s33_21, "activity_17", _s34_20, "activity_18", ":user a cr\xe9\xe9 la soumission :quote", "activity_19", ":user a mis \xe0 jour la soumission :quote", "activity_20", ":user a envoy\xe9 par courriel la soumission :quote pour :client \xe0 :contact", "activity_21", ":contact a visualis\xe9 la soumission :quote", "activity_22", ":user a archiv\xe9 la soumission :quote", "activity_23", ":user a supprim\xe9 la soumission :quote", "activity_24", ":user a restaur\xe9 la soumission :quote", "activity_25", _s36_21, "activity_26", _s34_21, "activity_27", _s37_22, "activity_28", _s34_22, "activity_29", ":contact a approuv\xe9 la soumission :quote pour :client", "activity_30", _s35_22, "activity_31", _s38_19, "activity_32", _s39_5, "activity_33", _s39_6, "activity_34", _s32_15, "activity_35", _s35_23, "activity_36", _s36_22, "activity_37", _s36_23, "activity_39", ":user a annul\xe9 un paiement :payment de :payment_amount", "activity_40", ":user a rembours\xe9 :adjustment d'un paiement :payment de :payment_amount", "activity_41", _s50_6, "activity_42", _s27_56, "activity_43", _s33_22, "activity_44", _s30_35, "activity_45", _s31_20, "activity_46", _s31_21, "activity_47", _s38_20, "activity_48", ":user a mis \xe0 jour le billet :ticket", "activity_49", ":user a ferm\xe9 le billet :ticket", "activity_50", ":user a fusionn\xe9 le billet :ticket", "activity_51", ":user a scind\xe9 le billet :ticket", "activity_52", ":contact a ouvert le billet :ticket", "activity_53", ":contact a r\xe9ouvert le billet :ticket", "activity_54", ":user a r\xe9ouvert le billet :ticket", "activity_55", ":contact a r\xe9pondu au billet :ticket", "activity_56", ":user a vu le billet :ticket", "activity_57", "Le syst\xe8me n'a pas pu envoyer le courriel de la facture :invoice", "activity_58", ":user a invers\xe9 la facture :invoice", "activity_59", ":user a annul\xe9 la facture :invoice", "activity_60", ":contact a vu la soumission :quote", "activity_61", ":user a mis \xe0 jour le client :client", "activity_62", ":user a mis \xe0 jour le fournisseur :vendor", "activity_63", ":user a envoy\xe9 le premier rappel pour la facture :invoice de :contact", "activity_64", ":user a envoy\xe9 le deuxi\xe8me rappel pour la facture :invoice de :contact", "activity_65", ":user a envoy\xe9 le troisi\xe8me rappel pour la facture :invoice de :contact", "activity_66", ":user a envoy\xe9 un rappel sans fin pour la facture :invoice de :contact", "activity_80", ":user a cr\xe9\xe9 l'abonnement :subscription", "activity_81", ":user a mis \xe0 jour l'abonnement :subscription", "activity_82", ":user a archiv\xe9 l'abonnement :subscription", "activity_83", ":user a supprim\xe9 l'abonnement :subscription", "activity_84", ":user a restaur\xe9 l'abonnement :subscription", _s17_111, _s27_57, "emailed_quote", "La soumission a \xe9t\xe9 envoy\xe9e avec succ\xe8s", "emailed_credit", "Le cr\xe9dit a envoy\xe9 par courriel avec succ\xe8s", _s20_51, "La soumission a \xe9t\xe9 marqu\xe9e comme envoy\xe9e avec succ\xe8s", _s21_59, "Le cr\xe9dit a \xe9t\xe9 marqu\xe9 comme envoy\xe9 avec succ\xe8s", "expired", "Expir\xe9", "all", "Tous", "select", "S\xe9lectionner", _s22_38, _s34_23, "custom_value1", _s17_145, "custom_value2", _s17_145, "custom_value3", _s22_68, "custom_value4", _s22_69, _s18_75, _s30_36, _s24_35, _s39_7, _s29_31, "Message personnalis\xe9 pour facture impay\xe9e", _s27_41, "Message personnalis\xe9 pour facture pay\xe9e", _s31_10, "Message personnalis\xe9 pour soumission non approuv\xe9e", "lock_invoices", "Verrouiller les factures", "translations", "Traductions", _s19_43, "Mod\xe8le du num\xe9ro de t\xe2che", _s19_45, "Compteur du num\xe9ro de t\xe2che", _s22_40, "Mod\xe8le du num\xe9ro de d\xe9pense", _s22_42, "Compteur du num\xe9ro de d\xe9pense", _s21_60, "Mod\xe8le du num\xe9ro de fournisseur", _s21_62, "Compteur du num\xe9ro de fournisseur", _s21_64, "Mod\xe8le du num\xe9ro de billet", _s21_66, "Compteur du num\xe9ro de billet", _s22_44, "Mod\xe8le du num\xe9ro de paiement", _s22_46, "Compteur du num\xe9ro de paiement", _s22_48, "Mod\xe8le du num\xe9ro de facture", _s22_50, _s29_48, _s20_52, "Mod\xe8le du num\xe9ro de soumission", _s20_54, "Compteur du num\xe9ro de soumission", _s21_68, _s26_46, _s21_70, _s28_66, _s21_72, _s26_46, _s21_73, _s28_66, _s18_77, _s33_23, "counter_padding", "Espacement du compteur", _s28_51, "Compteur partag\xe9 pour les factures et les soumissions", _s18_79, "Nom de taxe par d\xe9faut 1", _s18_81, "Taux de taxe par d\xe9faut 1", _s18_83, "Nom de taxe par d\xe9faut 2", _s18_85, "Taux de taxe par d\xe9faut 2", _s18_87, "Nom de taxe par d\xe9faut 3", _s18_89, "Taux de taxe par d\xe9faut 3", _s21_74, "Objet du courriel de facture", _s19_47, "Objet du courriel de soumission", _s21_76, "Objet du courriel de paiement", _s29_33, "Sujet du courriel de paiement partiel", "show_table", "Affiche la table", "show_list", "Afficher la liste", "client_city", "Ville du client", "client_state", "Province du client", "client_country", "Pays du client", _s16_193, "Client actif", "client_balance", "Solde du client", "client_address1", "Rue du clients", "client_address2", "Apt/Suite", "vendor_address1", "Rue du fournisseur", "vendor_address2", "App du fournisseur", _s24_37, "Rue d'exp\xe9dition", _s24_38, "Exp\xe9dition Apt/Suite", "type", "Type", "invoice_amount", _s21_93, _s16_197, "\xc9ch\xe9ance", "tax_rate1", "Taux de taxe 1", "tax_rate2", "Taux de taxe 2", "tax_rate3", "Taux de taxe 3", "auto_bill", _s23_44, "archived_at", "Archiv\xe9 \xe0", "has_expenses", "A D\xe9penses", "custom_taxes1", "Taxes personnalis\xe9es 1", "custom_taxes2", "Taxes personnalis\xe9es 2", "custom_taxes3", "Taxes personnalis\xe9es 3", "custom_taxes4", "Taxes personnalis\xe9es 4", _s17_113, _s25_47, _s17_114, _s25_48, _s17_115, _s25_49, _s17_116, _s25_50, "is_deleted", "Est supprim\xe9", "vendor_city", _s20_87, "vendor_state", "Province du fournisseur", "vendor_country", _s19_74, "is_approved", "Est approuv\xe9", "tax_name", "Nom de la taxe", "tax_amount", "Montant de taxe", "tax_paid", "Taxe pay\xe9e", "payment_amount", _s19_75, "age", "\xc2ge", "is_running", "En cours", "time_log", _s16_250, "bank_id", "Banque", _s19_49, "ID de cat\xe9gorie de d\xe9pense", _s16_198, _s20_88, _s19_51, "ID de la devise de facturation", "tax_name1", "Nom de la taxe 1", "tax_name2", "Nom de la taxe 2", "tax_name3", "Nom de taxe 3", "transaction_id", "ID de transaction", "color_theme", "Couleur de th\xe8me"], t1, t1), "de", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importiere Daten", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Zuletzt aktualisiert", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Kontakt Vorname", _s17_1, "Kontakt Nachname", "order", "Order", "unassigned", "Nicht zugewiesen", "partial_value", "Muss gr\xf6sser als Null und kleiner als der Gesamtbetrag sein", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktivieren", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Passen Sie die Rechnungslink-Subdom\xe4ne an oder stellen Sie die Rechnung auf Ihrer eigenen Webseite zur Verf\xfcgung.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Gutscheincode", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Sicherheit", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnements", _s16_11, "Neues Abonnement", _s17_7, "Abonnement bearbeiten", _s20_1, "Abonnement erfolgreich erstellt", _s20_2, "Abonnement erfolgreich aktualisiert", _s21_6, "Abonnement erfolgreich archiviert", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Mit Gmail verbinden", _s16_13, "von Gmail trennen", "connected_gmail", "Mit Gmail erfolgreich verbunden", _s18_13, "Von Gmail erfolgreich getrennt", _s16_15, _s100_, _s16_16, "Kundennummer", "count_minutes", ":count Minuten", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, "Ein Fehler ist aufgetreten, bitte versuchen Sie es erneut.", _s27_2, "Bitte vergeben Sie zuerst ein Passwort.", _s34_1, _s52_, "help_translate", "Hilf mit beim \xdcbersetzen", _s23_2, "Bitte w\xe4hlen Sie ein Land", "resend_invite", "Einladung erneut versenden", _s19_1, "2FA erfolgreich deaktiviert", _s16_22, "Konto erfolgreich verbunden.", _s19_2, "Konto erfolgreich getrennt.", "delivered", "zugestellt", "bounced", "Abpraller", "spam", "Spam", "view_docs", "Dokumentation ansehen.", _s32_, _s72_, "send_sms", "SMS senden", "sms_code", "SMS-Code", _s21_10, "Barcode mit :link kompatibler App scannen.", _s18_14, "Zwei-Faktor-Authentifizierung erfolgreich aktiviert", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Zwei-Faktor-Authentifizierung", _s18_15, "Zwei-Faktor-Authentifizierung deaktivieren", _s34_2, "Password mit Verkn\xfcpfung zu Sozialmedia notwendig", "stay_logged_in", "Eingeloggt bleiben", _s23_4, "Warnung: Ihre Sitzung l\xe4uft bald ab", "count_hours", ":count Stunden", "count_day", "1 Tag", "count_days", ":count Tage", _s19_3, "Web-Sitzungs-Timeout", _s17_12, "Sicherheitseinstellungen", "resend_email", "Best\xe4tigungsemail erneut versenden", _s26_2, "Bitte best\xe4tigen Sie Ihre E-Mail-Adresse", _s16_23, "Zahlung erstattet", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Zeige Aktionen", _s17_14, "Mehrfachauswahl", _s27_4, "Eine E-Mail wurde versandt um Ihre E-Mail-Adresse zu best\xe4tigen.", _s21_11, _s97_, "this_quarter", "Dieses Quartal", "last_quarter", "Letztes Quartal", "to_update_run", "Zum \xc4nderungslauf", _s18_17, "In Rechnung umwandeln", _s16_24, "Registrierungs-URL", "invoice_project", "Projekt berechnen", "invoice_task", "Aufgabe in Rechnung stellen", "invoice_expense", "Ausgabe abrechnen", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, "Speichern und Vorschau anzeigen", "save_and_email", "Speichern und verschicken", _s16_28, "Unterst\xfctzte Ereignisse", _s16_30, "Umgerechneter Betrag", _s17_16, "Guthabenstand", _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Gesendet", _s17_18, "Standard-Dokumente", "document_upload", "Dokument hochladen", _s20_7, "Erlaube Kunden Dokumente hochzuladen", "expense_total", "Ausgabensumme", "enter_taxes", "Steuers\xe4tze eingeben", "by_rate", "Nach Satz", "by_amount", "Nach Betrag", "enter_amount", "Betrag eingeben", "before_taxes", "Vor Steuern", "after_taxes", "Nach Steuern", "color", "Farbe", "show", "anzeigen", "hide", "Verbergen", "empty_columns", "Leere Spalten", _s21_13, "Der Entwicklungsmodus ist aktiviert", _s26_3, _s96_, "running_tasks", "Laufende Aufgaben", "recent_tasks", "K\xfcrzliche Aufgaben", "recent_expenses", "K\xfcrzliche Ausgaben", _s17_20, "Zuk\xfcnftige Ausgaben", "update_app", "App aktualisieren", "started_import", "Import erfolgreich gestartet", _s24_3, "Dupliziere Spaltenzuordnung", _s20_8, "Benutzt Inklusive Steuern", _s18_19, "Ist Betrag erm\xe4\xdfigt", "column", "Spalte", "sample", "Beispiel", "map_to", "Zuordnen", "import", "Importieren", _s25_1, "Benutze erste Zeile als Spalten\xfcberschrift", "select_file", "Bitte w\xe4hle eine Datei", _s16_32, "Keine Datei ausgew\xe4hlt", "csv_file", "W\xe4hle CSV Datei", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Buchhaltung", _s22_5, "Bitte geben Sie alle CSV-Dateien an.", "import_type", "Import Typ", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "Lizenzen anzeigen", "webhook_url", "Webhook URL", _s17_22, "Vollbild Editor", "sidebar_editor", "Seitenmen\xfc Editor", _s22_6, 'Bitte geben Sie ":value" zur Best\xe4tigung ein', "purge", "Bereinigen", "service", "Dienst", "clone_to", "Duplizieren zu", "clone_to_other", "Duplizieren zu anderem", "labels", "Beschriftung", "add_custom", "Beschriftung hinzuf\xfcgen", "payment_tax", "Steuer-Zahlung", "unpaid", "Unbezahlt", "white_label", "White Label", "delivery_note", "Lieferschein", _s24_6, "Versendete Rechnungen sind gesperrt", _s24_8, "Bezahlte Rechnungen sind gesperrt", "source_code", "Quellcode", "app_platforms", "Applikations Platform", "invoice_late", _s18_126, "quote_expired", "Angebot abgelaufen", "partial_due", "Anzahlung", "invoice_total", "Rechnungsbetrag", "quote_total", "Angebotssumme", "credit_total", "Gesamtguthaben", _s23_5, "Gesamtbetrag", "actions", "Aktionen", "expense_number", "Ausgabennummer", "task_number", "Aufgabennummer", "project_number", "Projektnummer", "project_name", "Projektname", "warning", "Warnung", "view_settings", "Einstellungen anzeigen", _s24_10, "Warnung: diese Firma wurde noch nicht aktiviert", "late_invoice", _s18_126, "expired_quote", "Abgelaufenes Angebot", "remind_invoice", "Rechnungserinnerung", "cvv", "Kartenpr\xfcfziffer", "client_name", "Kunde", "client_phone", "Kunden Telefon", "required_fields", "Ben\xf6tigte Felder", "calculated_rate", "Berechneter Satz", _s17_24, _s19_76, "clear_cache", "Zwischenspeicher leeren", "sort_order", "Sortierreihenfolge", "task_status", "Status", "task_statuses", "Aufgaben Status", "new_task_status", "Neuer Aufgaben Status", _s16_34, "Aufgaben Status bearbeiten", _s19_9, "Aufgaben Status erfolgreich erstellt", _s19_10, "Aufgabenstatus erfolgreich aktualisiert", _s20_10, "Aufgaben Status erfolgreich archiviert", _s19_11, "Aufgaben Status erfolgreich gel\xf6scht", _s19_12, "Aufgaben Status erfolgreich entfernt", _s20_11, "Aufgaben Status erfolgreich wiederhergestellt", _s22_7, ":value Aufgaben Stati erfolgreich archiviert", _s21_15, ":value Aufgaben Stati erfolgreich gel\xf6scht", _s22_8, ":value Aufgaben Stati erfolgreich wiederhergestellt", _s18_21, "Suche 1 Aufgaben Status", _s20_13, "Suche :count Aufgaben Status", _s16_36, "Zeige Aufgaben Tabelle", _s21_16, "Beim Erstellen von Rechnungen immer die Aufgabenauswahl anzeigen", _s20_14, "Aufgaben Zeiterfassung in Rechnung stellen", _s25_2, "Zeitdetails in der Rechnungsposition ausweisen", _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, "Beginne Aufgabe vor dem Speichern", _s18_22, "Stati bearbeiten", "task_settings", "Aufgaben Einstellungen", _s20_18, "Kategorien bearbeiten", _s18_24, "Ausgabenkategorien", _s20_20, "Neue Ausgabenkategorie", _s21_18, "Ausgaben Kategorie bearbeiten", _s24_11, "Ausgabenkategorie erfolgreich erstellt", _s24_12, "Ausgabenkategorie erfolgreich aktualisiert", _s25_5, "Ausgabenkategorie erfolgreich archiviert", _s24_13, "Kategorie erfolgreich gel\xf6scht", _s24_14, "Ausgaben Kategorie erfolgreich entfernt", _s25_6, "Ausgabenkategorie erfolgreich wiederhergestellt", _s27_8, ":count Ausgabenkategorien erfolgreich archiviert", _s26_4, ":value Ausgabenkategorien erfolgreich gel\xf6scht", _s27_9, ":value Ausgabenkategorien erfolgreich wiederhergestellt", _s23_6, "Suche 1 Ausgabenkategorie", _s25_8, "Suche :count Ausgabenkategorie", _s21_20, "Verf\xfcgbares Guthaben verwenden", "show_option", "Zeige Option", _s22_9, "Der Guthabenbetrag darf den Zahlungsbetrag nicht \xfcbersteigen", "view_changes", "\xc4nderungen anzeigen", "force_update", "Aktualisierungen erzwingen", _s17_26, "Du benutzt die aktuellste Version, aber es stehen noch ausstehende Fehlerbehebungen zur Verf\xfcgung", "mark_paid_help", "Verfolge ob Ausgabe bezahlt wurde", _s18_26, "Sollte in Rechnung gestellt werden", _s23_7, "Erm\xf6gliche diese Ausgabe in Rechnung zu stellen", _s29_2, "Dokumente sichtbar machen", _s21_22, "Wechselkurs setzen", _s16_38, "Ausgaben Einstellungen", _s18_27, "Duplizieren zu Widerkehrend", "crypto", "Verschl\xfcsselung", "paypal", "PayPal", "alipay", "Alipay", "sofort", "SOFORT-\xdcberweisung", "apple_pay", _s16_199, "user_field", "Benutzer Feld", "variables", "Variablen", "show_password", "Zeige Passwort", "hide_password", "Verstecke Passwort", "copy_error", "Kopier Fehler", "capture_card", "Capture Card", _s17_27, "Automatische Rechnungsstellung aktivieren", "total_taxes", "Gesamt Steuern", "line_taxes", _s20_90, "total_fields", "Gesamt Felder", _s25_9, "Wiederkehrende Rechnung erfolgreich gestoppt", _s25_10, "Wiederkehrende Rechnung erfolgreich gestartet", _s25_11, "Wiederkehrende Rechnung erfolgreich fortgesetzt", "gateway_refund", "Zahlungsanbieter R\xfcckerstattung", _s19_13, "Bearbeite die R\xfcckerstattung \xfcber den Zahlungsanbieter", "due_date_days", _s16_251, "paused", "Pausiert", "mark_active", "Markiere aktiv", "day_count", "Tag :count", _s22_10, "Erster Tag des Monats", _s21_23, "Letzter Tag des Monats", _s17_29, "Benutze Zahlungsbedingung", "endless", "Endlos", "next_send_date", "N\xe4chstes Versanddatum", _s16_40, "Verbleibende Durchg\xe4nge", _s17_31, "Wiederkehrende Rechnung", _s18_29, "Wiederkehrende Rechnungen", _s21_25, "Neue wiederkehrende Rechnung", _s22_12, "Bearbeite wiederkehrende Rechnung", _s25_12, "Wiederkehrende Rechnung erfolgreich erstellt", _s25_13, "Wiederkehrende Rechnung erfolgreich aktualisiert", _s26_5, "Wiederkehrende Rechnung erfolgreich archiviert", _s25_14, "Wiederkehrende Rechnung erfolgreich gel\xf6scht", _s25_15, "Wiederkehrende Rechnung erfolgreich entfernt", _s26_6, "Wiederkehrende Rechnung erfolgreich wiederhergestellt", _s27_10, ":value Wiederkehrende Rechnung erfolgreich archiviert", _s26_7, ":value Wiederkehrende Rechnungen erfolgreich gel\xf6scht", _s27_11, ":value Wiederkehrende Rechnungen erfolgreich wiederhergestellt", _s24_15, "Suche 1 wiederkehrende Rechnung", _s25_16, "Suche :count Wiederkehrende Rechnungen", "send_date", "Versanddatum", "auto_bill_on", "Automatische Rechnungsstellung zum", _s28_2, "Minimaler Unterzahlungsbetrag", "profit", "Profit", "line_item", "Posten", _s18_31, "\xdcberzahlung zulassen", _s23_8, "\xdcberzahlungen zulassen, beispielsweise Trinkgelder", _s19_14, "Unterzahlung zulassen", _s24_16, "Teilzahlungen zulassen", "test_mode", "Test Modus", "opened", "Ge\xf6ffnet", _s30_0, "Fehler bei Kontenabstimmung", _s30_1, "Kontenabstimmung erfolgreich", "gateway_success", "Zahlungsanbieter erfolgreich", "gateway_failure", _s23_48, "gateway_error", _s23_48, "email_send", "E-Mail gesendet", _s17_33, "E-Mail Wiederholungswarteschlange", "failure", "Fehler", "quota_exceeded", "Quota erreicht", _s16_42, "Upstream Fehler", "system_logs", "System-Log", "view_portal", "Portal anzeigen", "copy_link", "Link kopieren", "token_billing", "Kreditkarte merken", _s24_17, "Willkommen bei Invoice Ninja", "always", "Immer", "optin", "Anmelden", "optout", "Abmelden", "label", "Label", "client_number", "Kundennummer", "auto_convert", _s24_52, "company_name", "Firmenname", "reminder1_sent", "Erste Erinnerung verschickt", "reminder2_sent", "Zweite Erinnerung verschickt", "reminder3_sent", "Dritte Erinnerung verschickt", _s18_33, "Letzte Erinnerung verschickt", "pdf_page_info", "Seite :current von :total", _s16_44, "Rechnungen erfolgreich versendet", "emailed_quotes", "Angebote erfolgreich versendet", "emailed_credits", _s41_10, "gateway", "Provider", "view_in_stripe", "In Stripe anzeigen", "rows_per_page", "Eintr\xe4ge pro Seite", "hours", "Stunden", "statement", "Bericht", "taxes", "Steuern", "surcharge", "Geb\xfchr", "apply_payment", "Zahlungen anwenden", "apply", "Anwenden", "unapplied", "unangewendet", "select_label", "Bezeichnung w\xe4hlen", "custom_labels", "Eigene Beschriftungen", "record_type", "Eintragstyp", "record_name", "Eintragsname", "file_type", "Dateityp", "height", "H\xf6he", "width", "Breite", "to", "An", "health_check", "Systempr\xfcfung", "payment_type_id", "Zahlungsart", "last_login_at", "Letzter Login", "company_key", "Firmen Schl\xfcssel", "storefront", "Storefront", "storefront_help", "Drittanbieter Applikationen erlauben Rechnungen zu erstellen", "client_created", "Kunde wurde erstellt", _s20_23, "Online-Zahlung E-Mail Adresse", _s20_25, "manuelle Zahlung E-Mail Adresse", "completed", "Abgeschlossen", "gross", "Gesamtbetrag", "net_amount", "Netto Betrag", "net_balance", "Netto Betrag", "client_settings", "Kundeneinstellungen", _s17_35, "Ausgew\xe4hlte Rechnungen", _s17_37, "Ausgew\xe4hlte Zahlungen", "selected_quotes", "Ausgew\xe4hlte Angebote", "selected_tasks", "Ausgew\xe4hlte Aufgaben", _s17_39, "Ausgew\xe4hlte Ausgaben", _s17_41, "Ausstehende Rechnungen", _s17_43, "\xdcberf\xe4llige Rechnungen", "recent_payments", "K\xfcrzliche Zahlungen", "upcoming_quotes", "Ausstehende Angebote", "expired_quotes", "Abgelaufene Angebote", "create_client", "Kunden erstellen", "create_invoice", "Rechnung erstellen", "create_quote", "Angebot erstellen", "create_payment", "Zahlung erstellen", "create_vendor", "Lieferanten erstellen", "update_quote", "Angebot aktualisieren", "delete_quote", "Angebot l\xf6schen", "update_invoice", "Rechnung aktualisieren", "delete_invoice", "Rechnung l\xf6schen", "update_client", "Kunde aktualisieren", "delete_client", "Kunde l\xf6schen", "delete_payment", "Zahlung l\xf6schen", "update_vendor", "Lieferant aktualisieren", "delete_vendor", "Lieferant L\xf6schen", "create_expense", "Ausgabe erstellen", "update_expense", "Ausgabe aktualisieren", "delete_expense", "Ausgabe L\xf6schen", "create_task", "Aufgabe erstellen", "update_task", "Aufgabe aktualisieren", "delete_task", "Aufgabe l\xf6schen", "approve_quote", "Angebot annehmen", "off", "Aus", "when_paid", "Bei Zahlung", "expires_on", "G\xfcltig bis", "free", "Kostenlos", "plan", "Plan", "show_sidebar", "Zeige Seitenmen\xfc", "hide_sidebar", "Verstecke Seitenmenu", "event_type", "Ereignistyp", "target_url", "Ziel", "copy", "kopieren", "must_be_online", "Bitte starten Sie die App sobald Sie mit dem Internet verbunden sind", _s17_45, "Die Crons m\xfcssen aktiviert werden", "api_webhooks", "API Webhooks", "search_webhooks", "Suche :count Webhooks", "search_webhook", "Suche 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Neuer Webhook", "edit_webhook", "Webhook bearbeiten", "created_webhook", "Webhook erfolgreich erstellt", "updated_webhook", "Webhook erfolgreich aktualisiert", _s16_46, "Webhook erfolgreich archiviert", "deleted_webhook", "Webhook erfolgreich gel\xf6scht", "removed_webhook", "Webhook erfolgreich entfernt", _s16_47, "Webhook erfolgreich wiederhergestellt", _s17_46, ":value Webhooks erfolgreich archiviert", _s16_48, ":value Webhooks erfolgreich gel\xf6scht", _s16_49, ":value Webhooks erfolgreich entfernt", _s17_47, ":value Webhooks erfolgreich wiederhergestellt", "api_tokens", "API Token", "api_docs", "API Doku", "search_tokens", "Suche :count Token", "search_token", "Suche 1 Token", "token", "Token", "tokens", "Token", "new_token", "Neues Token", "edit_token", "Token bearbeiten", "created_token", "Token erfolgreich erstellt", "updated_token", "Token erfolgreich aktualisiert", "archived_token", "Token erfolgreich archiviert", "deleted_token", "Token erfolgreich gel\xf6scht", "removed_token", "Token erfolgreich entfernt", "restored_token", "Token erfolgreich wiederhergestellt", "archived_tokens", ":count Token erfolgreich archiviert", "deleted_tokens", ":count Token erfolgreich gel\xf6scht", "restored_tokens", ":value Token erfolgreich wiederhergestellt", _s19_16, "Kunden Registration", _s24_19, "Den Kunden erm\xf6glichen, sich selbst im Portal zu registrieren.", _s21_27, "Anpassung und Vorschau", "email_invoice", "Rechnung versenden", "email_quote", "Angebot per E-Mail senden", "email_credit", "Guthaben per E-Mail versenden", "email_payment", "Sende Zahlungs eMail", _s20_28, "Es wurde noch keine E-Mail Adresse beim Kunden eingetragen.", "ledger", "Hauptbuch", "view_pdf", "Zeige PDF", "all_records", "Alle Eintr\xe4ge", "owned_by_user", "Eigent\xfcmer", _s16_50, "Verbleibendes Guthaben", "contact_name", "Name des Kontakts", "use_default", "Benutze Standardwert", _s16_52, "Endlose Reminder", "number_of_days", "Anzahl Tage", _s23_10, "Zahlungsbedingungen bearbeiten", "payment_term", "Zahlungsbedingung", _s16_53, "Neue Zahlungsbedingung", _s17_49, "Bearbeite Zahlungsbedingungen", _s20_29, "Zahlungsbedingung erfolgreich erstellt", _s20_30, "Zahlungsbedingung erfolgreich aktualisiert", _s21_28, "Zahlungsbedingung erfolgreich archiviert", _s20_31, "Zahlungsbedingung erfolgreich gel\xf6scht", _s20_32, "Zahlungsbedingung erfolgreich entfernt", _s21_29, "Zahlungsbedingungen erfolgreich wiederhergestellt", _s22_17, ":value Zahlungsbedingungen erfolgreich archiviert", _s21_30, ":value Zahlungsbedingungen erfolgreich gel\xf6scht", _s22_18, ":value Zahlungsbedingungen erfolgreich wiederhergestellt", "email_sign_in", "Mit E-Mail anmelden", "change", "\xc4ndern", _s23_12, "M\xf6chten Sie zur mobilen Ansicht wechseln?", _s24_20, "M\xf6chten Sie zur Desktopansicht wechseln?", "send_from_gmail", "Mit Gmail versenden", "reversed", "Umgekehrt", "cancelled", "Storniert", "credit_amount", "Guthabenbetrag", "quote_amount", "Angebotsbetrag", "hosted", "Gehostet", "selfhosted", "Selbstgehostet", "exclusive", "Exklusive", "inclusive", "Inklusive", "hide_menu", "Men\xfc ausblenden", "show_menu", "Men\xfc einblenden", _s18_35, _s19_77, _s16_56, "Suche nach Dokumenten", "search_designs", "Suche nach Designs", "search_invoices", "Suche Rechnungen", "search_clients", "Suche Kunden", "search_products", "Suche Produkte", "search_quotes", "Suche Angebote", "search_credits", "Suche Guthaben", "search_vendors", "Suche Lieferanten", "search_users", "Suche Benutzer", _s16_57, "Suche Steuersatz", "search_tasks", "Suche Aufgaben", "search_settings", "Suche Einstellungen", "search_projects", "Suche nach Projekten", "search_expenses", "Suche Ausgaben", "search_payments", "Suche Zahlungen", "search_groups", "Suche nach Gruppen", "search_company", "Suche Firma", "search_document", "Suche 1 Dokument", "search_design", "Suche 1 Design", "search_invoice", "Suche 1 Angebot", "search_client", "Suche 1 Kunden", "search_product", "Suche 1 Produkt", "search_quote", "Suche 1 Angebot", "search_credit", "Suche 1 Guthaben", "search_vendor", "Suche 1 Hersteller", "search_user", "Suche 1 Benutzer", "search_tax_rate", "Suche 1 Steuersatz", "search_task", "Suche 1 Aufgabe", "search_project", "Suche 1 Projekt", "search_expense", "Suche 1 Ausgabe", "search_payment", "Suche 1 Zahlung", "search_group", "Suche 1 Gruppen", "refund_payment", "Zahlung erstatten", _s17_53, "Rechnung erfolgreich storniert", _s18_37, "Rechnungen erfolgreich storniert", _s16_63, "Rechnung erfolgreich zur\xfcckgebucht", _s17_54, "Rechnungen erfolgreich zur\xfcckgebucht", "reverse", "R\xfcckbuchung", "full_name", "Voller Name", _s17_55, "Stadt / Bundesland / PLZ", _s17_57, "Plz/Stadt/Staat", "custom1", "Benutzerdefiniert 1", "custom2", "Benutzerdefiniert 2", "custom3", _s19_78, "custom4", _s19_78, "optional", "optional", "license", "Lizenz", "purge_data", "Daten s\xe4ubern", _s16_64, "Die Kontodaten wurden erfolgreich gel\xf6scht", _s18_38, "Achtung: Alle Daten werden vollst\xe4ndig gel\xf6scht. Dieser Vorgang kann nicht r\xfcckg\xe4ngig gemacht werden.", "invoice_balance", "Rechnungssaldo", "age_group_0", "0 - 30 Tage", "age_group_30", "30 - 60 Tage", "age_group_60", "60 - 90 Tage", "age_group_90", "90 - 120 Tage", "age_group_120", "120+ Tage", "refresh", "Aktualisieren", "saved_design", "Design erfolgreich gespeichert", "client_details", "Kundeninformationen", "company_address", "Firmenadresse", "invoice_details", "Rechnungsdetails", "quote_details", "Kostenvoranschlag-Details", "credit_details", "Gutschrift Details", "product_columns", "Produktspalten", "task_columns", "Aufgabenspalten", "add_field", "Feld hinzuf\xfcgen", "all_events", "Alle Ereignisse", "permissions", "Berechtigungen", "none", "Nichts", "owned", "Eigent\xfcmer", "payment_success", "Bezahlung erfolgreich", "payment_failure", "Bezahlung fehlgeschlagen", "invoice_sent", ":count Rechnung versendet", "quote_sent", "Kostenvoranschlag versendet", "credit_sent", "Guthaben gesendet", "invoice_viewed", "Rechnung angesehen", "quote_viewed", "Kostenvoranschlag angesehen", "credit_viewed", "Guthaben angesehen", "quote_approved", "Kostenvoranschlag angenommen", _s25_18, "Empfange alle Benachrichtigungen", _s16_65, "Lizenz kaufen", "apply_license", "Lizenz anwenden", "cancel_account", "Konto k\xfcndigen", _s22_19, "Warnung: Diese Aktion wird dein Konto unwiderruflich l\xf6schen.", "delete_company", "Firma l\xf6schen", _s22_20, "Achtung: Dadurch wird Ihre Firma unwiderruflich gel\xf6scht. Es gibt kein Zur\xfcck.", "enabled_modules", "Module aktivieren", "converted_quote", "Angebot erfolgreichen konvertiert", "credit_design", "Guthaben Design", "includes", "Beinhaltet", "header", "Kopf", "load_design", "Designvorlage laden", "css_framework", "CSS-Framework", "custom_designs", "Benutzerdefinierte Designs", "designs", "Designs", "new_design", "Neues Design", "edit_design", "Design bearbeiten", "created_design", "Design erfolgreich erstellt", "updated_design", "Design erfolgreich aktualisiert", "archived_design", "Design erfolgreich archiviert", "deleted_design", "Design erfolgreich gel\xf6scht", "removed_design", "Design erfolgreich entfernt", "restored_design", "Design erfolgreich wiederhergestellt", _s16_67, ":value Designs erfolgreich archiviert", "deleted_designs", ":value Designs erfolgreich gel\xf6scht", _s16_68, ":value Designs erfolgreich wiederhergestellt", "proposals", "Vorschl\xe4ge", "tickets", "Tickets", _s16_69, "Wiederkehrende Angebote", "recurring_tasks", "Wiederkehrende Aufgabe", _s18_, "Wiederkehrende Ausgaben", _s18_39, "Kontoverwaltung", "credit_date", "Guthabendatum", "credit", "Gutschrift", "credits", "Guthaben", "new_credit", "Guthaben eingeben", "edit_credit", "Saldo bearbeiten", "created_credit", "Guthaben erfolgreich erstellt", "updated_credit", "Saldo erfolgreich aktualisiert", "archived_credit", "Guthaben erfolgreich archiviert", "deleted_credit", "Guthaben erfolgreich gel\xf6scht", "removed_credit", "Guthaben erfolgreich entfernt", "restored_credit", "Guthaben erfolgreich wiederhergestellt", _s16_71, ":count Guthaben erfolgreich archiviert", "deleted_credits", ":count Guthaben erfolgreich gel\xf6scht", _s16_72, ":value Guthaben erfolgreich archiviert", "current_version", "Aktuelle Version", "latest_version", "Neueste Version", "update_now", "Jetzt aktualisieren", _s26_13, "Eine neue Version der Webapp ist verf\xfcgbar.", _s16_73, "Update verf\xfcgbar", "app_updated", "Update erfolgreich", "learn_more", "Mehr erfahren", "integrations", "Integrationen", "tracking_id", "Sendungsnummer", _s17_59, "Slack-Webhook-URL", "credit_footer", "Guthaben-Fu\xdfzeile", "credit_terms", "Gutschrift Bedingungen", "new_company", "Neues Konto", "added_company", "Erfolgreich Firma hinzugef\xfcgt", "company1", "Benutzerdefinierte Firma 1", "company2", "Benutzerdefinierte Firma 2", "company3", "Benutzerdefinierte Firma 3", "company4", "Benutzerdefinierte Firma 4", "product1", "Benutzerdefiniertes Produkt 1", "product2", "Benutzerdefiniertes Produkt 2", "product3", "Benutzerdefiniertes Produkt 3", "product4", "Benutzerdefiniertes Produkt 4", "client1", "Benutzerdefinierter Kunde 1", "client2", "Benutzerdefinierter Kunde 2", "client3", "Benutzerdefinierter Kunde 3", "client4", "Benutzerdefinierter Kunde 4", "contact1", "Benutzerdefinierter Kontakt 1", "contact2", "Benutzerdefinierter Kontakt 2", "contact3", "Benutzerdefinierter Kontakt 3", "contact4", "Benutzerdefinierter Kontakt 4", "task1", "Benutzerdefinierte Aufgabe 1", "task2", "Benutzerdefinierte Aufgabe 2", "task3", "Benutzerdefinierte Aufgabe 3", "task4", "Benutzerdefinierte Aufgabe 4", "project1", "Benutzerdefiniertes Projekt 1", "project2", "Benutzerdefiniertes Projekt 2", "project3", "Benutzerdefiniertes Projekt 3", "project4", "Benutzerdefiniertes Projekt 4", "expense1", "Benutzerdefinierte Ausgabe 1", "expense2", "Benutzerdefinierte Ausgabe 2", "expense3", "Benutzerdefinierte Ausgabe 3", "expense4", "Benutzerdefinierte Ausgabe 4", "vendor1", "Benutzerdefinierter Lieferant 1", "vendor2", "Benutzerdefinierter Lieferant 2", "vendor3", "Benutzerdefinierter Lieferant 3", "vendor4", "Benutzerdefinierter Lieferant 4", "invoice1", "Benutzerdefinierte Rechnung 1", "invoice2", "Benutzerdefinierte Rechnung 2", "invoice3", "Benutzerdefinierte Rechnung 3", "invoice4", "Benutzerdefinierte Rechnung 4", "payment1", "Benutzerdefinierte Zahlung 1", "payment2", "Benutzerdefinierte Zahlung 2", "payment3", "Benutzerdefinierte Zahlung 3", "payment4", "Benutzerdefinierte Zahlung 4", "surcharge1", _s30_37, "surcharge2", _s30_38, "surcharge3", _s30_39, "surcharge4", _s30_40, "group1", "Benutzerdefinierte Gruppe 1", "group2", "Benutzerdefinierte Gruppe 2", "group3", "Benutzerdefinierte Gruppe 3", "group4", "Benutzerdefinierte Gruppe 4", "reset", "Zur\xfccksetzen", "number", "Nummer", "export", "Exportieren", "chart", "Diagramm", "count", "Anzahl", "totals", "Summe", "blank", "Leer", "day", "Tag", "month", "Monat", "year", "Jahr", "subgroup", "Untergruppe", "is_active", "Ist aktiv", "group_by", "Gruppieren nach", "credit_balance", "Guthabenstand", _s18_45, "Letzter Login des Kontakts", _s17_61, "Vollst\xe4ndiger Name des Kontakts", "contact_phone", "Telefonnummer des Kontakts", _s21_31, "Kontakt Benutzerdefinierter Wert 1", _s21_32, "Kontakt Benutzerdefinierter Wert 2", _s21_33, "Kontakt Benutzerdefinierter Wert 3", _s21_34, "Kontakt Benutzerdefinierter Wert 4", _s17_63, "Strasse Versandanschrift", _s17_64, "Versand Adresszusatz", "shipping_city", "Stadt Versandanschrift", "shipping_state", "Versand Bundesland", _s20_33, "Postleitzahl Versandanschrift", _s16_103, "Lieferungsland", _s16_105, "Strasse Rechnungsanschrift", _s16_106, "Rechnung Adresszusatz", "billing_city", "Stadt Rechnungsanschrift", "billing_state", "Rechnung Bundesland", _s19_19, "Postleitzahl Rechnungsanschrift", "billing_country", "Rechnungsland", "client_id", "Kundennummer", "assigned_to", "Zugewiesen an", "created_by", "Erstellt von :name", "assigned_to_id", "Zugewiesen zur ID", "created_by_id", "Erstellt von ID", "add_column", "Spalte hinzuf\xfcgen", "edit_columns", "Spalten bearbeiten", "columns", "Spalten", "aging", "Versendet", "profit_and_loss", "Gewinn und Verlust", "reports", "Berichte", "report", "Bericht", "add_company", "Konto hinzuf\xfcgen", "unpaid_invoice", "Unbezahlte Rechnung", "paid_invoice", "Bezahlte Rechnung", _s16_107, "Nicht genehmigtes Angebot", "help", "Hilfe", "refund", "Erstattung", "refund_date", "Erstattungsdatum", "filtered_by", "Gefiltert nach", "contact_email", "E-Mail-Adresse des Kontakts", "multiselect", "Mehrfachauswahl", "entity_state", "Status", "verify_password", "Passwort \xfcberpr\xfcfen", "applied", "Angewendet", _s21_35, "K\xfcrzliche Fehler aus den Logs einf\xfcgen", _s30_4, "Wir haben ihre Nachricht erhalten und bem\xfchen uns schnellstm\xf6glich zu antworten.", "message", "Nachricht", "from", "Von", _s20_35, "Produktdetails anzeigen", _s25_20, "Beschreibung und Kosten in die Produkt-Dropdown-Liste einf\xfcgen", _s20_37, "Der PDF-Renderer ben\xf6tigt :version", _s18_48, "Anpassungszuschlag Prozent", _s23_14, "Geb\xfchren Prozentsatz an das Konto anpassen", _s18_50, "Einstellungen bearbeiten", "support_forum", "Support-Forum", "about", "\xdcber", "documentation", "Dokumentation", "contact_us", "Kontaktieren Sie uns", "subtotal", "Zwischensumme", "line_total", "Summe", "item", "Artikel", "credit_email", "Guthaben E-Mail", "iframe_url", "Webseite", "domain_url", "Domain-URL", _s21_36, "Das Passwort ist zu kurz", _s20_38, "Das Passwort muss einen Gro\xdfbuchstaben und eine Nummer enthalten", _s19_21, "Kundenportal-Aufgaben", _s23_15, "Kundenportal-\xdcbersicht", _s20_39, "Bitte einen Wert eingeben", "deleted_logo", "Logo erfolgreich gel\xf6scht", "yes", "Ja", "no", "Nein", "generate_number", "Nummer generieren", "when_saved", "Wenn gespeichert", "when_sent", "Wenn gesendet", "select_company", "Firma ausw\xe4hlen", "float", "Schwebend", "collapse", "Einklappen", "show_or_hide", "Anzeigen/verstecken", "menu_sidebar", "Men\xfcleiste", "history_sidebar", "Verlaufs-Seitenleiste", "tablet", "Tablet", "mobile", "Mobil", "desktop", "Desktop", "layout", "Layout", "view", "Ansehen", "module", "Modul", "first_custom", "Erste benutzerdefinierte", "second_custom", "Zweite benutzerdefinierte", "third_custom", "Dritte benutzerdefinierte", "show_cost", "Kosten anzeigen", _s17_66, "Produktkosten anzeigen", "show_cost_help", "Feld f\xfcr Einkaufspreis anzeigen, um Gewinnspanne zu verfolgen", _s21_37, "Produktanzahl anzeigen", _s26_15, "Zeigen ein Mengenangabe Feld, sonst den Standardwert 1", _s21_39, "Rechnungsanzahl anzeigen", _s26_16, "Zeige ein Rechnungsposten Anzahlfeld, sonst den Standardwert 1", _s21_41, "Produkterm\xe4\xdfigung anzeigen", _s26_17, "Zeige Rabattfeld in Belegposition", _s16_109, "Standardanzahl", _s21_43, "Setze den Rechnungsposten automatisch auf Anzahl 1", "one_tax_rate", "Ein Steuersatz", "two_tax_rates", "Zwei Steuers\xe4tze", "three_tax_rates", "Drei Steuers\xe4tze", _s16_111, _s19_76, "user", "Benutzer", "invoice_tax", "Rechnungssteuer", "line_item_tax", _s20_90, "inclusive_taxes", "Inklusive Steuern", _s17_68, "Rechnungs-Steuers\xe4tze", "item_tax_rates", "Element-Steuers\xe4tze", _s18_52, _s29_49, "configure_rates", "Steuers\xe4tze bearbeiten", _s18_53, "Zahlungsanbieter bearbeiten", "tax_settings", "Steuer-Einstellungen", _s18_55, "Steuers\xe4tze", "accent_color", "Akzent-Farbe", "switch", "Switch", _s19_23, "Komma-separierte Liste", "options", "Optionen", _s16_113, "Einzeiliger Text", "multi_line_text", "Mehrzeiliger Text", "dropdown", "Dropdown", "field_type", "Feldtyp", _s27_22, "Eine Passwort-Wiederherstellungs-Mail wurde versendet", "submit", "Abschicken", _s16_115, "Passwort wiederherstellen", "late_fees", "Versp\xe4tungszuschl\xe4ge", "credit_number", "Gutschriftnummer", "payment_number", "Zahlungsnummer", "late_fee_amount", "H\xf6he des Versp\xe4tungszuschlags", _s16_116, "Versp\xe4tungszuschlag Prozent", "schedule", "Zeitgesteuert", "before_due_date", "Vor dem F\xe4lligkeitsdatum", "after_due_date", "Nach dem F\xe4lligkeitsdatum", _s18_57, "Nach dem Rechnungsdatum", "days", "Tage", "invoice_email", "Rechnungsmail", "payment_email", "Zahlungsmail", "partial_payment", "Teilzahlung", "payment_partial", "Teilzahlung", _s21_44, "Teilzahlungsmail", "quote_email", "Angebotsmail", _s16_118, "Endlose Erinnnerung", _s16_120, "Gefiltert nach Benutzer", "administrator", "Administrator", _s18_58, "Dem Benutzer erlauben, andere Benutzer zu administrieren, Einstellungen zu \xe4ndern und alle Eintr\xe4ge zu bearbeiten", "user_management", "Benutzerverwaltung", "users", "Benutzer", "new_user", "Neuer Benutzer", "edit_user", "Benutzer bearbeiten", "created_user", "Benutzer erfolgreich erstellt", "updated_user", "Benutzer erfolgreich aktualisiert", "archived_user", "Benutzer erfolgreich archiviert", "deleted_user", "Benutzer erfolgreich gel\xf6scht", "removed_user", "Benutzer erfolgreich entfernt", "restored_user", "Benutzer erfolgreich wiederhergestellt", "archived_users", ":value Benutzer erfolgreich archiviert", "deleted_users", ":value Benutzer erfolgreich gel\xf6scht", "removed_users", ":value Benutzer erfolgreich entfernt", "restored_users", ":value Benutzer erfolgreich wiederhergestellt", _s16_122, _s24_53, "invoice_options", "Rechnungsoptionen", _s17_70, '"Bereits gezahlt" ausblenden', _s22_27, '"Bereits gezahlt" nur anzeigen, wenn eine Zahlung eingegangen ist.', _s23_17, "Dokumente einbetten", _s28_15, "Bildanh\xe4nge zu den Rechnungen hinzuf\xfcgen.", _s16_124, "Zeige Kopf auf", _s16_125, "Zeige Fu\xdfzeilen auf", "first_page", "Erste Seite", "all_pages", "Alle Seiten", "last_page", "Letzte Seite", "primary_font", "Prim\xe4re Schriftart", "secondary_font", "Sekund\xe4re Schriftart", "primary_color", "Prim\xe4re Farbe", "secondary_color", "Sekund\xe4re Farbe", "page_size", "Seitengr\xf6\xdfe", "font_size", "Schriftgr\xf6\xdfe", "quote_design", "Angebots-Layout", "invoice_fields", "Rechnungsfelder", "product_fields", "Produktfelder", "invoice_terms", "Rechnungsbedingungen", "invoice_footer", "Rechnungsfu\xdfzeile", "quote_terms", "Angebotsbedingungen", "quote_footer", "Angebots-Fu\xdfzeile", _s18_59, "Automatische Email", _s23_18, "Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.", _s20_42, _s20_91, _s25_26, "Archivieren Sie Rechnungen automatisch, wenn sie bezahlt sind.", _s18_60, _s20_91, _s23_19, "Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.", _s18_61, _s24_52, _s23_20, "Das Angebot automatisch in eine Rechnung umwandeln wenn es vom Kunden angenommen wird.", _s17_72, "Workflow Einstellungen", "freq_daily", "T\xe4glich", "freq_weekly", "W\xf6chentlich", "freq_two_weeks", "Zweiw\xf6chentlich", "freq_four_weeks", "Vierw\xf6chentlich", "freq_monthly", "Monatlich", "freq_two_months", "Zwei Monate", _s17_74, "Dreimonatlich", _s16_126, "Vier Monate", "freq_six_months", "Halbj\xe4hrlich", "freq_annually", "J\xe4hrlich", "freq_two_years", "Zwei Jahre", _s16_127, "Drei Jahre", "never", "Niemals", "company", "Firma", _s17_75, "Generierte Nummern", "charge_taxes", "Steuern erheben", "next_reset", "N\xe4chster Reset", "reset_counter", "Z\xe4hler-Reset", _s16_128, "Wiederkehrender Pr\xe4fix", "number_padding", "Nummernabstand", "general", "Allgemein", "surcharge_field", "Zuschlagsfeld", "company_field", "Firmenfeld", "company_value", "Firmenwert", "credit_field", "Kredit-Feld", "invoice_field", "Rechnungsfeld", _s17_77, "Rechnungsgeb\xfchr", "client_field", "Kundenfeld", "product_field", "Produktfeld", "payment_field", "Zahlungs-Feld", "contact_field", "Kontaktfeld", "vendor_field", "Lieferantenfeld", "expense_field", "Ausgabenfeld", "project_field", "Projektfeld", "task_field", "Aufgabenfeld", "group_field", "Gruppen-Feld", "number_counter", "Nummernz\xe4hler", "prefix", "Pr\xe4fix", "number_pattern", "Nummernschema", "messages", "Nachrichten", "custom_css", "Benutzerdefiniertes CSS", _s17_79, "Benutzerdefiniertes JavaScript", _s16_130, "Auf PDF anzeigen", _s21_46, "Unterschrift des Kunden auf dem Angebots/Rechnungs PDF anzeigen.", _s25_27, "Checkbox f\xfcr Rechnungsbedingungen", _s30_5, "Erfordern Sie die Best\xe4tigung der Rechnungsbedingungen durch den Kunden.", _s23_21, "Checkbox f\xfcr Angebotsbedingungen", _s28_16, "Erfordern Sie die Best\xe4tigung der Angebotsbedingungen durch den Kunden.", _s25_28, "Rechnungsunterschrift", _s30_6, "Erfordern Sie die Unterschrift des Kunden bei Rechnungen.", _s23_22, "Angebotsunterschrift", _s22_29, "Rechnungen mit Passwort sch\xfctzen", _s27_23, "Erlaubt Ihnen ein Passwort f\xfcr jeden Kontakt zu erstellen. Wenn ein Passwort erstellt wurde, muss der Kunde dieses eingeben, bevor er eine Rechnung ansehen darf.", "authorization", "Genehmigung", "subdomain", "Subdom\xe4ne", "domain", "Dom\xe4ne", "portal_mode", "Portalmodus", "email_signature", "Mit freundlichen Gr\xfc\xdfen,", _s24_21, "Machen Sie es einfacher f\xfcr Ihre Kunden zu bezahlen, indem Sie schema.org Markup zu Ihren E-Mails hinzuf\xfcgen.", "plain", "Einfach", "light", "Hell", "dark", "Dunkel", "email_design", "E-Mail-Design", "attach_pdf", "PDF anh\xe4ngen", _s16_131, "Dokumente anh\xe4ngen", "attach_ubl", "UBL anh\xe4ngen", "email_style", "E-Mail-Stil", _s19_25, "Markup erlauben", "reply_to_email", "Antwort-E-Mail-Adresse", "reply_to_name", "Name der Antwortadresse", "bcc_email", "BCC E-Mail", "processed", "Verarbeitet", "credit_card", "Kreditkarte", "bank_transfer", "\xdcberweisung", "priority", "Priorit\xe4t", "fee_amount", "Zuschlag Betrag", "fee_percent", "Zuschlag Prozent", "fee_cap", "Geb\xfchrenobergrenze", "limits_and_fees", "Grenzwerte/Geb\xfchren", "enable_min", "Min aktivieren", "enable_max", "Max aktivieren", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Logos der akzeptierten Kreditkarten", "credentials", "Zugangsdaten", "update_address", "Adresse aktualisieren", _s19_28, "Kundenadresse mit den gemachten Angaben aktualisieren", "rate", "Satz", "tax_rate", "Steuersatz", "new_tax_rate", "Neuer Steuersatz", "edit_tax_rate", "Steuersatz bearbeiten", _s16_133, "Steuersatz erstellt", _s16_134, "Steuersatz aktualisiert", _s17_82, "Steuersatz archiviert", _s16_135, "Steuersatz erfolgreich gel\xf6scht", _s17_83, "Steuersatz erfolgreich wiederhergestellt", _s18_62, ":value Steuers\xe4tze erfolgreich archiviert", _s17_84, ":value Steuers\xe4tze erfolgreich gel\xf6scht", _s18_63, ":value Steuers\xe4tze erfolgreich wiederhergestellt", "fill_products", "Produkte automatisch ausf\xfcllen", _s18_64, "Beim Ausw\xe4hlen eines Produktes werden automatisch Beschreibung und Kosten ausgef\xfcllt", "update_products", "Produkte automatisch aktualisieren", _s20_44, "Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert", _s16_136, "Produkte konvertieren", _s21_47, "Produktpreise automatisch in die W\xe4hrung des Kunden konvertieren", "fees", "Geb\xfchren", "limits", "Grenzwerte", "provider", "Anbieter", "company_gateway", "Zahlungs-Gateway", _s16_138, "Zahlungs-Gateways", _s19_29, "Neues Gateway", _s20_45, "Gateway bearbeiten", _s23_23, "Gateway erfolgreich erstellt", _s23_24, "Gateway erfolgreich aktualisiert", _s24_22, "Gateway erfolgreich archiviert", _s23_25, "Gateway erfolgreich gel\xf6scht", _s24_23, "Gateway erfolgreich wiederhergestellt", _s25_30, ":value Zahlungsanbieter erfolgreich archiviert", _s24_24, ":value Zahlungsanbieter erfolgreich gel\xf6scht", _s25_31, ":value Zahlungsanbieter erfolgreich wiederhergestellt", _s16_140, "Weiterbearbeiten", "discard_changes", "\xc4nderungen verwerfen", "default_value", "Standardwert", "disabled", "Deaktiviert", "currency_format", "W\xe4hrungsformat", _s21_48, "Erster Tag der Woche", _s23_26, "Erster Monat des Jahres", "sunday", "Sonntag", "monday", "Montag", "tuesday", "Dienstag", "wednesday", "Mittwoch", "thursday", "Donnerstag", "friday", "Freitag", "saturday", "Samstag", "january", "Januar", "february", "Februar", "march", "M\xe4rz", "april", "April", "may", "Mai", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "Dezember", "symbol", "Symbol", "ocde", "Code", "date_format", "Datumsformat", "datetime_format", "Datums-/Zeitformat", "military_time", "24-Stunden-Zeit", _s18_65, "24-Stunden-Anzeige", "send_reminders", "Erinnerungen senden", "timezone", "Zeitzone", _s19_30, "Nach Projekt filtern", _s17_85, "Gefiltert nach Gruppe", _s19_32, "Gefiltert nach Rechnung", _s18_66, "Gefiltert nach Kunde", _s18_68, "Gefiltert nach Lieferant", "group_settings", "Gruppeneinstellungen", "group", "Gruppe", "groups", "Gruppen", "new_group", "Neue Gruppe", "edit_group", "Gruppe bearbeiten", "created_group", "Gruppe erfolgreich erstellt", "updated_group", "Gruppe erfolgreich aktualisiert", "archived_groups", ":value Gruppen erfolgreich archiviert", "deleted_groups", ":value Gruppen erfolgreich gel\xf6scht", "restored_groups", ":value Gruppen erfolgreich wiederhergestellt", "upload_logo", "Logo hochladen", "uploaded_logo", "Logo erfolgreich hochgeladen", "logo", "Logo", "saved_settings", "Einstellungen erfolgreich gespeichert", _s16_142, "Produkt-Einstellungen", "device_settings", "Ger\xe4teeinstellungen", "defaults", "Standards", "basic_settings", _s24_53, _s17_87, "Erweiterte Einstellungen", "company_details", "Firmendaten", "user_details", "Benutzerdaten", "localization", "Lokalisierung", "online_payments", "Online-Zahlungen", "tax_rates", "Steuers\xe4tze", "notifications", "Benachrichtigungen", "import_export", "Import/Export", "custom_fields", "Benutzerdefinierte Felder", "invoice_design", "Rechnungsdesign", "buy_now_buttons", '"Kaufe jetzt"-Buttons', "email_settings", "E-Mail-Einstellungen", _s23_28, "Vorlagen & Erinnerungen", _s22_30, "Kreditkarten & Banken", _s19_34, "Datenvisualisierungen", "price", "Preis", "email_sign_up", "E-Mail-Registrierung", "google_sign_up", "Registrierung via Google", _s27_25, "Vielen Dank f\xfcr Ihren Kauf!", "redeem", "Einl\xf6sen", "back", "Zur\xfcck", "past_purchases", "Vergangene K\xe4ufe", _s19_36, "Jahres-Abonnement", "pro_plan", "Pro-Tarif", "enterprise_plan", "Enterprise-Tarif", "count_users", ":count Benutzer", "upgrade", "Upgrade", _s25_32, "Bitte geben Sie einen Vornamen ein", _s24_25, "Bitte geben Sie einen Nachnamen ein", _s33_14, "Bitte stimmen Sie den Nutzungsbedingungen und der Datenschutzerkl\xe4rung zu, um ein Konto zu erstellen.", "i_agree_to_the", "Ich stimme den", _s21_79, "Nutzungsbedingungen", _s19_54, _s20_92, _s16_144, "Service-Bedingungen", "privacy_policy", _s20_92, "sign_up", "Anmeldung", "account_login", "Konto Login", "view_website", "Webseite anschauen", "create_account", "Konto erstellen", "email_login", "E-Mail-Anmeldung", "create_new", "Neu...", _s18_70, "Kein Eintrag ausgew\xe4hlt", _s21_51, "Bitte speichern oder verwerfen Sie Ihre \xc4nderungen", "download", "Downloaden", _s27_26, "Ben\xf6tigt einen Enterprise Plan", "take_picture", "Bild aufnehmen", "upload_file", "Datei hochladen", "document", "Dokument", "documents", "Dokumente", "new_document", "Neues Dokument", "edit_document", "Dokument bearbeiten", _s17_89, "Dokument erfolgreich hochgeladen", _s16_146, "Dokument erfolgreich aktualisiert", _s17_90, "Dokument erfolgreich archiviert", _s16_147, "Dokument erfolgreich gel\xf6scht", _s17_91, "Dokument erfolgreich wiederhergestellt", _s18_72, ":value Dokumente erfolgreich archiviert", _s17_92, ":value Dokumente erfolgreich gel\xf6scht", _s18_73, ":value Dokumente erfolgreich wiederhergestellt", "no_history", "Kein Verlauf", "expense_date", "Ausgabendatum", "pending", "Ausstehend", _s16_148, "Aufgezeichnet", _s16_149, "Ausstehend", _s16_150, "Fakturiert", "converted", "Umgewandelt", _s24_27, "F\xfcgen Sie Dokumente zur Rechnung hinzu", "exchange_rate", "Wechselkurs", _s16_151, "W\xe4hrung umrechnen", "mark_paid", "Als bezahlt markieren", "category", "Kategorie", "address", "Adresse", "new_vendor", "Neuer Lieferant", "created_vendor", "Lieferant erfolgreich erstellt", "updated_vendor", "Lieferant erfolgreich aktualisiert", "archived_vendor", "Lieferant erfolgreich archiviert", "deleted_vendor", "Lieferant erfolgreich gel\xf6scht", "restored_vendor", "Lieferant erfolgreich wiederhergestellt", _s16_152, ":count Lieferanten erfolgreich archiviert", "deleted_vendors", ":count Lieferanten erfolgreich gel\xf6scht", _s16_153, ":value Lieferanten erfolgreich wiederhergestellt", "new_expense", "Ausgabe eingeben", "created_expense", "Ausgabe erfolgreich erstellt", "updated_expense", "Ausgabe erfolgreich aktualisiert", _s16_154, "Ausgabe erfolgreich archiviert", "deleted_expense", "Ausgabe erfolgreich gel\xf6scht", _s16_155, "Ausgabe erfolgreich wiederhergestellt", _s17_93, "Ausgaben erfolgreich archiviert", _s16_156, "Ausgaben erfolgreich gel\xf6scht", _s17_94, ":value Ausgaben erfolgreich wiederhergestellt", "copy_shipping", "Versand kopieren", "copy_billing", "Zahlung kopieren", "design", "Design", _s21_52, "Eintrag konnte nicht gefunden werden", "invoiced", "In Rechnung gestellt", "logged", "Protokolliert", "running", "L\xe4uft", "resume", "Fortfahren", "task_errors", "Bitte korrigieren Sie alle \xfcberlappenden Zeiten", "start", "Starten", "stop", "Anhalten", "started_task", "Aufgabe erfolgreich gestartet", "stopped_task", "Aufgabe erfolgreich angehalten", "resumed_task", "Aufgabe fortgesetzt", "now", "Jetzt", _s16_157, "Aufgaben f\xfcr den automatischen Start", "timer", "Zeitmesser", "manual", "Manuell", "budgeted", "Budgetiert", "start_time", "Startzeit", "end_time", "Endzeit", "date", "Datum", "times", "Zeiten", "duration", "Dauer", "new_task", "Neue Aufgabe", "created_task", "Aufgabe erfolgreich erstellt", "updated_task", "Aufgabe erfolgreich aktualisiert", "archived_task", "Aufgabe erfolgreich archiviert", "deleted_task", "Aufgabe erfolgreich gel\xf6scht", "restored_task", "Aufgabe erfolgreich wiederhergestellt", "archived_tasks", ":count Aufgaben wurden erfolgreich archiviert", "deleted_tasks", ":count Aufgaben wurden erfolgreich gel\xf6scht", "restored_tasks", ":value Aufgaben erfolgreich wiederhergestellt", _s19_38, "Bitte geben Sie einen Namen ein", "budgeted_hours", "Budgetierte Stunden", "created_project", "Projekt erfolgreich erstellt", "updated_project", "Projekt erfolgreich aktualisiert", _s16_159, "Projekt erfolgreich archiviert", "deleted_project", "Projekt erfolgreich gel\xf6scht", _s16_160, "Projekt erfolgreich wiederhergestellt", _s17_95, "Erfolgreich :count Projekte archiviert", _s16_161, "Erfolgreich :count Projekte gel\xf6scht", _s17_96, ":value Projekte erfolgreich wiederhergestellt", "new_project", "neues Projekt", _s27_30, "Vielen Dank, dass Sie unsere App nutzen!", "if_you_like_it", "Wenn es dir gef\xe4llt, bitte", "click_here", "hier klicken", _s18_74, "Klicke hier", "to_rate_it", ", um es zu bewerten.", "average", "Durchschnittlich", "unapproved", "Nicht genehmigt", _s30_11, "Bitte authentifizieren Sie sich, um diese Einstellung zu \xe4ndern.", "locked", "Gesperrt", "authenticate", "Authentifizieren", _s19_40, "Bitte authentifizieren Sie sich", _s24_28, "Biometrische Authentifizierung", "footer", "Fu\xdfzeile", "compare", "Vergleiche", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Anmeldung mit Google", "today", "Heute", "custom_range", "Benutzerdefinierter Bereich", "date_range", "Datumsbereich", "current", "Aktuell", "previous", "Vorherige", "current_period", "Aktuelle Periode", _s17_98, "Vergleichsperiode", "previous_period", "Vorherige Periode", "previous_year", "Vorjahr", "compare_to", "Vergleiche mit", "last7_days", "Letzte 7 Tage", "last_week", "Letzte Woche", "last30_days", "Letzte 30 Tage", "this_month", "Dieser Monat", "last_month", "Letzter Monat", "this_year", "Dieses Jahr", "last_year", "Letztes Jahr", "custom", "Benutzerdefiniert", _s16_162, "Klone in Rechnung", "clone_to_quote", "Klone in Angebot", "clone_to_credit", "Duplizieren in Gutschrift", "view_invoice", "Rechnung anschauen", "convert", "Konvertiere", "more", "Mehr", "edit_client", "Kunde bearbeiten", "edit_product", "Produkt bearbeiten", "edit_invoice", "Rechnung bearbeiten", "edit_quote", "Angebot bearbeiten", "edit_payment", "Zahlung bearbeiten", "edit_task", "Aufgabe bearbeiten", "edit_expense", "Ausgabe Bearbeiten", "edit_vendor", "Lieferant Bearbeiten", "edit_project", "Projekt bearbeiten", _s22_, "Wiederkehrende Ausgabe bearbeiten", _s20_47, "Bearbeite wiederkehrendes Angebot", "billing_address", "Rechnungsadresse", _s16_164, "Lieferadresse", "total_revenue", "Gesamteinnahmen", "average_invoice", "Durchschnittlicher Rechnungsbetrag", "outstanding", "Ausstehend", "invoices_sent", ":count Rechnungen versendet", "active_clients", "aktive Kunden", "close", "Schlie\xdfen", "email", "E-Mail", "password", "Passwort", "url", "URL", "secret", "Passwort", "name", "Name", "logout", "Abmelden", "login", "Login", "filter", "Filter", "sort", "Sortierung", "search", "Suche", "active", "Aktiv", "archived", "Archiviert", "deleted", "Gel\xf6scht", "dashboard", "Dashboard", "archive", "Archivieren", "delete", "l\xf6schen", "restore", "Wiederherstellen", _s16_166, "Aktualisieren beendet", _s23_29, "Bitte geben Sie Ihre E-Mail-Adresse ein", _s26_25, "Bitte geben Sie Ihr Passwort ein", _s21_55, "Bitte geben Sie Ihre URL ein", _s26_27, "Bitte geben Sie Ihren Produkt schl\xfcssel ein", "ascending", "Aufsteigend", "descending", "Absteigend", "save", "Speichern", _s17_100, "Ein Fehler ist aufgetreten", "paid_to_date", "Bereits gezahlt", "balance_due", "Offener Betrag", "balance", "Saldo", "overview", "\xdcbersicht", "details", "Details", "phone", "Telefon", "website", "Webseite", "vat_number", "USt-IdNr.", "id_number", "Kundennummer", "create", "Erstellen", _s19_42, ":value in die Zwischenablage kopiert", "error", "Fehler", _s16_168, "Konnte nicht gestartet werden", "contacts", "Kontakte", "additional", "Zus\xe4tzlich", "first_name", "Vorname", "last_name", "Nachname", "add_contact", "Kontakt hinzuf\xfcgen", "are_you_sure", "Sind Sie sicher?", "cancel", "Abbrechen", "ok", "Ok", "remove", "Entfernen", _s16_170, "E-Mail ist ung\xfcltig", "product", "Produkt", "products", "Produkte", "new_product", "Neues Produkt", "created_product", "Produkt erfolgreich erstellt", "updated_product", "Produkt erfolgreich aktualisiert", _s16_172, "Produkt erfolgreich archiviert", "deleted_product", "Produkt erfolgreich gel\xf6scht", _s16_173, "Produkt erfolgreich wiederhergestellt", _s17_102, "Archivierung erfolgreich :Produktz\xe4hler", _s16_174, "Erfolgreich :count Produkte gel\xf6scht", _s17_103, ":value Produkte erfolgreich wiederhergestellt", "product_key", "Produkt", "notes", "Notizen", "cost", "Kosten", "client", "Kunde", "clients", "Kunden", "new_client", "Neuer Kunde", "created_client", "Kunde erfolgreich angelegt", "updated_client", "Kunde erfolgreich aktualisiert", "archived_client", "Kunde erfolgreich archiviert", _s16_175, ":count Kunden erfolgreich archiviert", "deleted_client", "Kunde erfolgreich gel\xf6scht", "deleted_clients", ":count Kunden erfolgreich gel\xf6scht", "restored_client", "Kunde erfolgreich wiederhergestellt", _s16_176, ":value Kunden erfolgreich wiederhergestellt", "address1", "Stra\xdfe", "address2", "Adresszusatz", "city", "Stadt", "state", "Bundesland", "postal_code", "Postleitzahl", "country", "Land", "invoice", "Rechnung", "invoices", "Rechnungen", "new_invoice", "Neue Rechnung", "created_invoice", "Rechnung erfolgreich erstellt", "updated_invoice", "Rechnung erfolgreich aktualisiert", _s16_177, "Rechnung erfolgreich archiviert", "deleted_invoice", "Rechnung erfolgreich gel\xf6scht", _s16_178, "Rechnung erfolgreich wiederhergestellt", _s17_104, ":count Rechnungen erfolgreich archiviert", _s16_179, ":count Rechnungen erfolgreich gel\xf6scht", _s17_105, ":value Rechnungen erfolgreich wiederhergestellt", "emailed_invoice", "Rechnung erfolgreich versendet", "emailed_payment", "Zahlungs eMail erfolgreich gesendet", "amount", "Betrag", "invoice_number", "Rechnungsnummer", "invoice_date", "Rechnungsdatum", "discount", "Rabatt", "po_number", "Bestellnummer", "terms", "Bedingungen", "public_notes", "\xd6ffentliche Notizen", "private_notes", "Private Notizen", "frequency", "H\xe4ufigkeit", "start_date", "Startdatum", "end_date", "Enddatum", "quote_number", "Angebotsnummer", "quote_date", "Angebotsdatum", "valid_until", "G\xfcltig bis", "items", "Element", "partial_deposit", "Teil-/Anzahlung", "description", "Beschreibung", "unit_cost", "Einzelpreis", "quantity", "Menge", "add_item", "Artikel hinzuf\xfcgen", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Gesamtbetrag", "pdf", "PDF", "due_date", _s16_251, _s16_180, "Teilzahlungsziel", "status", "Status", _s17_106, "Rechnungs Status", "quote_status", "Angebotsstatus", _s22_31, "Klicken Sie auf +, um ein Element hinzuzuf\xfcgen.", _s22_33, "Klicken Sie auf +, um die Zeit hinzuzuf\xfcgen.", "count_selected", ":count ausgew\xe4hlt", "total", "Gesamt", "percent", "Prozent", "edit", "Bearbeiten", "dismiss", "Verwerfen", _s20_49, "Bitte w\xe4hlen Sie ein Datum", _s22_34, _s29_49, _s24_30, "Bitte w\xe4hlen Sie eine Rechnung aus", "task_rate", "Kosten f\xfcr T\xe4tigkeit", "settings", "Einstellungen", "language", "Sprache", "currency", "W\xe4hrung", "created_at", "Erstellt am", "created_on", "Erstellt am", "updated_at", "Aktualisiert", "tax", "Steuer", _s30_13, "Bitte geben Sie eine Rechnungs Nummer ein", _s27_34, "Bitte geben Sie eine Angebots Nummer ein", "past_due", "\xdcberf\xe4llig", "draft", "Entwurf", "sent", "Versendet", "viewed", "Angesehen", "approved", "Best\xe4tigt", "partial", "Teil-/Anzahlung", "paid", "Bezahlt", "mark_sent", "Als versendet markieren", _s22_36, "Rechnung erfolgreich als versendet markiert", _s22_37, _s55_0, _s23_31, "Erfolgreich Rechnungen als versendet markiert", _s23_32, _s55_0, "done", "Erledigt", _s37_13, "Bitte geben Sie einen Kunden- oder Kontaktnamen ein", "dark_mode", "Dunkler Modus", _s27_36, "Starten Sie die App neu, um die \xc4nderung zu \xfcbernehmen.", "refresh_data", "Daten aktualisieren", "blank_contact", "Leerer Kontakt", "activity", "Aktivit\xe4t", _s16_182, "Kein Eintr\xe4ge gefunden", "clone", "Duplizieren", "loading", "L\xe4dt", "industry", "Kategorie", "size", "Gr\xf6\xdfe", "payment_terms", "Zahlungsbedingungen", "payment_date", "Zahlungsdatum", "payment_status", "Zahlungsstatus", _s16_184, "Ausstehend", _s16_185, "entwertet", _s16_186, "Fehlgeschlagen", _s16_187, "Abgeschlossen", _s16_188, _s19_77, _s16_189, "Erstattet", _s17_107, "nicht angewendet", _s17_108, _s19_6, "net", "Netto", "client_portal", "Kunden-Portal", "show_tasks", "Aufgaben anzeigen", "email_reminders", "E-Mail Erinnerungen", "enabled", "Aktiviert", "recipients", "Empf\xe4nger", "initial_email", "Initiale E-Mail", "first_reminder", _s16_252, "second_reminder", _s17_146, "third_reminder", _s17_147, "reminder1", _s16_252, "reminder2", _s17_146, "reminder3", _s17_147, "template", "Vorlage", "send", "Senden", "subject", "Betreff", "body", "Inhalt", "send_email", "E-Mail senden", "email_receipt", "Zahlungsbest\xe4tigung an Kunden per E-Mail senden", "auto_billing", "Automatische Rechnungsstellung", "button", "Knopf", "preview", "Vorschau", "customize", "Anpassen", "history", "Verlauf", "payment", "Zahlung", "payments", "Zahlungen", "refunded", "Erstattet", "payment_type", "Zahlungsart", _s21_57, "Abwicklungsreferenz", "enter_payment", _s16_253, "new_payment", _s16_253, "created_payment", "Zahlung erfolgreich erstellt", "updated_payment", "Zahlung erfolgreich aktualisiert", _s16_190, "Zahlung erfolgreich archiviert", "deleted_payment", "Zahlung erfolgreich gel\xf6scht", _s16_191, "Zahlung erfolgreich wiederhergestellt", _s17_109, ":count Zahlungen erfolgreich archiviert", _s16_192, ":count Zahlungen erfolgreich gel\xf6scht", _s17_110, ":value Zahlungen erfolgreich wiederhergestellt", "quote", "Angebot", "quotes", "Angebote", "new_quote", "Neues Angebot", "created_quote", "Angebot erfolgreich erstellt", "updated_quote", "Angebot erfolgreich aktualisiert", "archived_quote", "Angebot erfolgreich archiviert", "deleted_quote", "Angebot erfolgreich gel\xf6scht", "restored_quote", "Angebot erfolgreich wiederhergestellt", "archived_quotes", ":count Angebote erfolgreich archiviert", "deleted_quotes", ":count Angebote erfolgreich gel\xf6scht", "restored_quotes", ":value Angebote erfolgreich wiederhergestellt", "expense", "Ausgabe", "expenses", "Ausgaben", "vendor", "Lieferant", "vendors", "Lieferanten", "task", "Aufgabe", "tasks", "Zeiterfassung", "project", "Projekt", "projects", "Projekte", "activity_1", ":user erstellte Kunde :client", "activity_2", ":user archivierte Kunde :client", "activity_3", ":user l\xf6schte Kunde :client", "activity_4", ":user erstellte Rechnung :invoice", "activity_5", ":user aktualisierte Rechnung :invoice", "activity_6", ":user mailte Rechnung :invoice f\xfcr :client an :contact", "activity_7", ":contact schaute Rechnung :invoice f\xfcr :client an", "activity_8", ":user archivierte Rechnung :invoice", "activity_9", ":user l\xf6schte Rechnung :invoice", "activity_10", ":contact gab Zahlungsinformation :payment \xfcber :payment_amount f\xfcr Rechnung :invoice f\xfcr Kunde :client", "activity_11", ":user aktualisierte Zahlung :payment", "activity_12", ":user archivierte Zahlung :payment", "activity_13", ":user l\xf6schte Zahlung :payment", "activity_14", ":user gab :credit Guthaben ein", "activity_15", ":user aktualisierte :credit Guthaben", "activity_16", ":user archivierte :credit Guthaben", "activity_17", ":user l\xf6schte :credit Guthaben", "activity_18", ":user erstellte Angebot :quote", "activity_19", ":user aktualisierte Angebot :quote", "activity_20", ":user mailte Angebot :quote f\xfcr :client an :contact", "activity_21", _s34_24, "activity_22", ":user archivierte Angebot :quote", "activity_23", ":user l\xf6schte Angebot :quote", "activity_24", ":user stellte Angebot :quote wieder her", "activity_25", ":user stellte Rechnung :invoice wieder her", "activity_26", ":user stellte Kunde :client wieder her", "activity_27", ":user stellte Zahlung :payment wieder her", "activity_28", ":user stellte Guthaben :credit wieder her", "activity_29", ":contact akzeptierte Angebot :quote f\xfcr :client", "activity_30", ":user hat Lieferant :vendor erstellt", "activity_31", ":user hat Lieferant :vendor archiviert", "activity_32", ":user hat Lieferant :vendor gel\xf6scht", "activity_33", ":user hat Lieferant :vendor wiederhergestellt", "activity_34", ":user erstellte Ausgabe :expense", "activity_35", ":user hat Ausgabe :expense archiviert", "activity_36", ":user hat Ausgabe :expense gel\xf6scht", "activity_37", ":user hat Ausgabe :expense wiederhergestellt", "activity_39", ":user brach eine Zahlung \xfcber :payment_amount ab :payment", "activity_40", ":user hat :adjustment von :payment_amount der Zahlung :payment zur\xfcck erstattet", "activity_41", ":payment_amount Zahlung (:payment) schlug fehl", "activity_42", ":user hat Aufgabe :task erstellt", "activity_43", ":user hat Aufgabe :task bearbeitet", "activity_44", ":user hat Aufgabe :task archiviert", "activity_45", ":user hat Aufgabe :task gel\xf6scht", "activity_46", ":user hat Aufgabe :task wiederhergestellt", "activity_47", ":user hat Ausgabe :expense bearbeitet", "activity_48", ":user hat Ticket :ticket bearbeitet", "activity_49", ":user hat Ticket :ticket geschlossen", "activity_50", ":user hat Ticket :ticket zusammengef\xfchrt", "activity_51", ":user hat Ticket :ticket aufgeteilt", "activity_52", ":contact hat Ticket :ticket ge\xf6ffnet", "activity_53", ":contact hat Ticket :ticket wieder ge\xf6ffnet", "activity_54", ":user hat Ticket :ticket wieder ge\xf6ffnet", "activity_55", ":contact hat auf Ticket :ticket geantwortet", "activity_56", ":user hat Ticket :ticket angesehen", "activity_57", "Das System konnte die Rechnung :invoice nicht per E-Mail versenden", "activity_58", ":user buchte Rechnung :invoice zur\xfcck", "activity_59", ":user brach Rechnung :invoice ab", "activity_60", _s34_24, "activity_61", ":user hat Kunde :client aktualisiert", "activity_62", ":user hat Lieferant :vendor aktualisiert", "activity_63", ":user mailte erste Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_64", ":user mailte zweite Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_65", ":user mailte dritte Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_66", ":user mailte endlose Erinnerung f\xfcr Rechnung :invoice an :contact", "activity_80", ":user hat Abonnement :subscription erstellt", "activity_81", ":user hat Abonnement :subscription ge\xe4ndert", "activity_82", ":user hat Abonnement :subscription archiviert", "activity_83", ":user hat Abonnement :subscription gel\xf6scht", "activity_84", ":user hat Abonnement :subscription wiederhergestellt", _s17_111, "Einmaliges Passwort", "emailed_quote", "Angebot erfolgreich versendet", "emailed_credit", _s41_10, _s20_51, "Angebot erfolgreich als versendet markiert", _s21_59, "Guthaben erfolgreich als versendet markiert", "expired", "Abgelaufen", "all", "Alle", "select", "W\xe4hlen", _s22_38, "Mehrfachauswahl durch langes Dr\xfccken", "custom_value1", _s24_54, "custom_value2", _s24_54, "custom_value3", "Benutzerdefinierter Wert 3", "custom_value4", "Benutzerdefinierter Wert 4", _s18_75, "Benutzer definierter E-Mail-Stil", _s24_35, "Benutzerdefinierte Dashboard-Nachricht", _s29_31, "Benutzerdefinierte Nachricht f\xfcr unbezahlte Rechnung", _s27_41, "Benutzerdefinierte Nachricht f\xfcr bezahlte Rechnung", _s31_10, "Benutzerdefinierte Nachricht f\xfcr nicht genehmigten Kostenvoranschlag", "lock_invoices", "Rechnung sperren", "translations", "\xdcbersetzungen", _s19_43, "Aufgabennummernschema", _s19_45, "Aufgabennummernz\xe4hler", _s22_40, "Ausgabennummernschema", _s22_42, "Ausgabennummernz\xe4hler", _s21_60, "Lieferantennummernschema", _s21_62, "Lieferantennummernz\xe4hler", _s21_64, "Ticketnummernschema", _s21_66, "Ticketnummernz\xe4hler", _s22_44, "Zahlungsnummernschema", _s22_46, "Zahlungsnummernz\xe4hler", _s22_48, "Rechnungsnummernschema", _s22_50, "Z\xe4hler f\xfcr Rechnungsnummer", _s20_52, "Kostenvoranschlags-Nummernschema", _s20_54, "Z\xe4hler f\xfcr Angebotsnummer", _s21_68, "Gutschriftnummernschema", _s21_70, _s23_49, _s21_72, _s23_49, _s21_73, _s23_49, _s18_77, "Z\xe4hlerdatum zur\xfccksetzen", "counter_padding", "Z\xe4hler-Innenabstand", _s28_51, "Gemeinsamen Nummernz\xe4hler f\xfcr Rechnungen und Angebote verwenden", _s18_79, "Standard-Steuername 1", _s18_81, "Standard-Steuersatz 1", _s18_83, "Standard-Steuername 2", _s18_85, "Standard-Steuersatz 2", _s18_87, "Standard-Steuername 3", _s18_89, "Standard-Steuersatz 3", _s21_74, "EMail Rechnung Betreff", _s19_47, "EMail Angebot Betreff", _s21_76, "EMail Zahlung Betreff", _s29_33, "EMail Teilzahlung Betreff", "show_table", "Zeige Tabelle", "show_list", "Zeige Liste", "client_city", "Kunden-Stadt", "client_state", "Kunden-Bundesland/Kanton", "client_country", "Kunden-Land", _s16_193, "Kunde ist aktiv", "client_balance", "Kunden Betrag", "client_address1", "Stra\xdfe des Kunden", "client_address2", "Adresszusatz", "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, "Strasse Kundenlieferanschrift", _s24_38, "Addresszusatz Kundenlieferadresse", "type", "Typ", "invoice_amount", "Rechnungssumme", _s16_197, _s16_251, "tax_rate1", "Steuersatz 1", "tax_rate2", "Steuersatz 2", "tax_rate3", "Steuersatz 3", "auto_bill", "Automatische Verrechnung", "archived_at", "Archiviert um", "has_expenses", "Hat Ausgaben", "custom_taxes1", "Benutzerdefinierte Steuern 1", "custom_taxes2", "Benutzerdefinierte Steuern 2", "custom_taxes3", "Benutzerdefinierte Steuern 3", "custom_taxes4", "Benutzerdefinierte Steuern 4", _s17_113, _s30_37, _s17_114, _s30_38, _s17_115, _s30_39, _s17_116, _s30_40, "is_deleted", "ist gel\xf6scht", "vendor_city", "Lieferanten-Stadt", "vendor_state", "Lieferanten-Bundesland/Kanton", "vendor_country", "Lieferanten-Land", "is_approved", "Wurde angenommen", "tax_name", "Steuersatz Name", "tax_amount", "Steuerwert", "tax_paid", "Steuern bezahlt", "payment_amount", "Zahlungsbetrag", "age", "Alter", "is_running", "L\xe4uft derzeit", "time_log", "Zeiten", "bank_id", "Bank", _s19_49, "Ausgabenkategorie ID", _s16_198, "Ausgabenkategorie", _s19_51, "Rechnungs-W\xe4hrungs-ID", "tax_name1", "Steuersatz Name 1", "tax_name2", "Steuersatz Name 2", "tax_name3", "Steuersatz Name 3", "transaction_id", "Transaktions ID", "color_theme", "Farbthema"], t1, t1), "el", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u0395\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03ae", "enterprise", "Enterprise", "last_updated", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", _s17_1, "\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "order", "Order", "unassigned", "\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03b1\u03c4\u03b5\u03b8\u03b5\u03af", "partial_value", "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b7\u03b4\u03b5\u03bd\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf.", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u039f\u03c1\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c5\u03c0\u03bf\u03c4\u03bf\u03bc\u03ad\u03b1 \u03ae \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c3\u03c4\u03b7 \u03b4\u03b9\u03ba\u03ae \u03c3\u03b1\u03c2 \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "\u0391\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", _s16_11, _s16_12, _s17_7, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_1, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_2, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s21_6, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u0395\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7\u03c2", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "\u0395\u03c0\u03b5\u03c3\u03c4\u03c1\u03ac\u03c6\u03b7", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "\u03a3\u03ba\u03b1\u03bd\u03ac\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf barcode \u03bc\u03b5 \u03bc\u03af\u03b1 :link \u03c3\u03c5\u03bc\u03b2\u03b1\u03c4\u03ae \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae.", _s18_14, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u0394\u03cd\u03bf \u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03bd", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "\u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b4\u03cd\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03bd", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\u0395\u03c0\u03b5\u03c3\u03c4\u03c1\u03b1\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03a4\u03b5\u03c4\u03c1\u03ac\u03bc\u03b7\u03bd\u03bf", "last_quarter", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03a4\u03b5\u03c4\u03c1\u03ac\u03bc\u03b7\u03bd\u03bf", "to_update_run", "\u0393\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03b5\u03bb\u03ad\u03c3\u03c4\u03b5", _s18_17, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_24, "URL \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "invoice_project", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 Project", "invoice_task", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "invoice_expense", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s19_8, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u038c\u03c1\u03bf\u03c5 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_6, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_26, "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "save_and_email", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae Email", _s16_28, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b1 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03b1", _s16_30, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc", _s17_16, "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf \u03b1\u03c0\u03cc \u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "\u0388\u03c7\u03b5\u03b9 \u0391\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b5\u03af", _s17_18, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03b1", "document_upload", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", _s20_7, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bf\u03b9 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03bf\u03c5\u03bd \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", "expense_total", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ae \u0394\u03b1\u03c0\u03ac\u03bd\u03b7", "enter_taxes", "\u0395\u03b9\u03c3\u03b1\u03b3\u03b5\u03c4\u03b5 \u03a6\u03cc\u03c1\u03bf\u03c5\u03c2", "by_rate", "\u039c\u03b5 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "by_amount", "\u039c\u03b5 \u03a0\u03bf\u03c3\u03cc", "enter_amount", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03a0\u03bf\u03c3\u03cc", "before_taxes", "\u03a0\u03c1\u03bf \u03a6\u03cc\u03c1\u03c9\u03bd", "after_taxes", "\u039c\u03b5\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "color", "\u03a7\u03c1\u03ce\u03bc\u03b1", "show", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5", "hide", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7", "empty_columns", "\u0386\u03b4\u03b9\u03b1\u03c3\u03b5 \u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", _s21_13, "\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b1\u03c0\u03bf\u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03c3\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af", _s26_3, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u03c0\u03c1\u03bf\u03bf\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c3\u03b5 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ac \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae\u03bc\u03b1\u03c4\u03b1, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c1\u03c1\u03bf\u03ae \u03ba\u03c9\u03b4\u03b9\u03ba\u03ce\u03bd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1.", "running_tasks", "\u0395\u03ba\u03c4\u03b5\u03bb\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "recent_tasks", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "recent_expenses", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s17_20, "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", "update_app", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "started_import", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", _s24_3, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", _s20_8, "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03a6\u03cc\u03c1\u03bf\u03b9", _s18_19, "\u0395\u03af\u03bd\u03b1\u03b9 \u03a0\u03bf\u03c3\u03cc \u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2", "column", "\u039a\u03bf\u03bb\u03cc\u03bd\u03b1", "sample", "\u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1", "map_to", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03a3\u03b5", "import", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae", _s25_1, "\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03ce\u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03c9\u03c2 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", "select_file", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf", _s16_32, "\u0394\u03b5\u03bd \u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 \u0391\u03c1\u03c7\u03b5\u03af\u03bf", "csv_file", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0391\u03b4\u03b5\u03b9\u03ce\u03bd \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "webhook_url", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c4\u03bf\u03c5 Webhook", _s17_22, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03ae\u03c1\u03bf\u03c5\u03c2 \u039f\u03b8\u03cc\u03bd\u03b7\u03c2", "sidebar_editor", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03ac\u03b3\u03b9\u03b1\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", _s22_6, '\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c0\u03bb\u03b7\u03ba\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 ":value" \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7', "purge", "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7", "service", "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1", "clone_to", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a3\u03b5", "clone_to_other", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u0386\u03bb\u03bb\u03bf", "labels", "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2", "add_custom", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "payment_tax", "\u03a6\u03cc\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "unpaid", "\u039c\u03b7 \u03b5\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03b7", "white_label", "\u039b\u03b5\u03c5\u03ba\u03ae \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1", "delivery_note", "\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03a0\u03b1\u03c1\u03ac\u03b4\u03bf\u03c3\u03b7\u03c2", _s24_6, "\u03a4\u03b1 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b1", _s24_8, "\u03a4\u03b1 \u03b5\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b1", "source_code", "\u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", "app_platforms", "\u03a0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b5\u03c2 \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2", "invoice_late", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_expired", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "partial_due", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "invoice_total", _s17_148, "quote_total", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_total", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ae \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", _s23_5, _s17_148, "actions", "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2", "expense_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "task_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "project_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 Project", "project_name", "\u038c\u03bd\u03bf\u03bc\u03b1 Project", "warning", "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "view_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2", _s24_10, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u0391\u03c5\u03c4\u03ae \u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03af\u03b1 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03b1\u03ba\u03cc\u03bc\u03b1", "late_invoice", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "expired_quote", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03c0\u03bf\u03c5 \u03ad\u03bb\u03b7\u03be\u03b5", "remind_invoice", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "cvv", "CVV", "client_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "required_fields", "\u0391\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03a0\u03b5\u03b4\u03af\u03b1", "calculated_rate", "\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03bf \u039a\u03cc\u03c3\u03c4\u03bf\u03c2", _s17_24, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u039a\u03cc\u03c3\u03c4\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "clear_cache", "\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ae\u03c2 \u039c\u03bd\u03ae\u03bc\u03b7\u03c2", "sort_order", "\u03a3\u03b5\u03b9\u03c1\u03ac \u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7\u03c2", "task_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", "task_statuses", "\u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "new_task_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u039d\u03ad\u03b1\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s16_34, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_9, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_10, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_10, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_12, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_7, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s21_15, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_8, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s18_21, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_13, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s16_36, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", _s21_16, "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf \u03c4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03cc\u03c4\u03b1\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s20_14, "\u03a7\u03c1\u03bf\u03bd\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s25_2, "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03b5\u03c1\u03b9\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b9\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 \u03c4\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, "\u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", _s18_22, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd", "task_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s20_18, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s18_24, "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s20_20, "\u039d\u03ad\u03b1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s21_18, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s24_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s24_12, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s25_5, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s24_13, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2", _s24_14, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_6, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s27_8, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s26_4, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 :value \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s27_9, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 :value \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd", _s23_6, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s25_8, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s21_20, "\u03a7\u03c1\u03ae\u03c3\u03b7 \u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03c9\u03bd \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "show_option", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2", _s22_9, "\u03a4\u03bf \u03c0\u03bf\u03c3\u03cc \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c5\u03c0\u03b5\u03c1\u03b2\u03b1\u03af\u03bd\u03b5\u03b9 \u03c4\u03bf \u03c0\u03bf\u03c3\u03cc \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "view_changes", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u0391\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd", "force_update", "\u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", _s17_26, "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03b1\u03bb\u03bb\u03ac \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b5 \u03b1\u03bd\u03b1\u03bc\u03bf\u03bd\u03ae.", "mark_paid_help", "\u0395\u03bd\u03c4\u03bf\u03c0\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s18_26, "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03b8\u03b5\u03af", _s23_7, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03b8\u03b5\u03af", _s29_2, "\u039a\u03ac\u03bd\u03b5 \u03c4\u03b1 \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03b9\u03bc\u03b1", _s21_22, "\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u0399\u03c3\u03bf\u03c4\u03b9\u03bc\u03af\u03b1\u03c2 \u0391\u03bd\u03c4\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s16_38, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s18_27, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf", "crypto", "\u039a\u03c1\u03cd\u03c0\u03c4\u03bf", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", "Apple/Google \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "user_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "variables", "\u039c\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2", "show_password", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "hide_password", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "copy_error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03b3\u03ae\u03c2", "capture_card", "\u039a\u03ac\u03c1\u03c4\u03b1 \u03a3\u03cd\u03bb\u03bb\u03b7\u03c8\u03b7\u03c2", _s17_27, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5", "total_taxes", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03bf\u03af \u03a6\u03cc\u03c1\u03bf\u03b9", "line_taxes", "\u03a6\u03cc\u03c1\u03bf\u03b9 \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "total_fields", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ac \u03a0\u03b5\u03b4\u03af\u03b1", _s25_9, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_10, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "gateway_refund", "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03bc\u03ad\u03c3\u03c9 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", _s19_13, "\u0395\u03ba\u03c4\u03b5\u03bb\u03ad\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03bd\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd \u03bc\u03ad\u03c3\u03c9 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", "due_date_days", _s22_70, "paused", "\u03a3\u03b5 \u03c0\u03b1\u03cd\u03c3\u03b7", "mark_active", "\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c9\u03c2 \u0395\u03bd\u03b5\u03c1\u03b3\u03cc", "day_count", "\u0397\u03bc\u03ad\u03c1\u03b1 :count", _s22_10, "\u03a0\u03c1\u03ce\u03c4\u03b7 \u039c\u03ad\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039c\u03ae\u03bd\u03b1", _s21_23, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u039c\u03ad\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039c\u03ae\u03bd\u03b1", _s17_29, "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "endless", "\u03a3\u03c5\u03bd\u03b5\u03c7\u03ae\u03c2", "next_send_date", "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_40, "\u0395\u03bd\u03b1\u03c0\u03bf\u03bc\u03b5\u03af\u03bd\u03b1\u03bd\u03c4\u03b5\u03c2 \u039a\u03cd\u03ba\u03bb\u03bf\u03b9", _s17_31, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s18_29, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s21_25, "\u039d\u03ad\u03bf \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s22_12, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s25_12, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_13, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_5, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_14, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_15, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_6, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_10, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s26_7, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s27_11, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac :value \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s24_15, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s25_16, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "send_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "auto_bill_on", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2", _s28_2, "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03a0\u03bf\u03c3\u03cc \u03a5\u03c0\u03bf\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "profit", "\u039a\u03ad\u03c1\u03b4\u03bf\u03c2", "line_item", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", _s18_31, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03a5\u03c0\u03b5\u03c1\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s23_8, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b9\u03c0\u03bb\u03b5\u03cc\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03ad\u03c7\u03b5\u03c3\u03c4\u03b5 \u03c6\u03b9\u03bb\u03bf\u03b4\u03bf\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1", _s19_14, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03a5\u03c0\u03bf\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s24_16, "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b5\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03c4' \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03c0\u03bf\u03c3\u03bf\u03cd", "test_mode", "\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03a4\u03b5\u03c3\u03c4", "opened", "\u0391\u03bd\u03bf\u03af\u03c7\u03b8\u03b7\u03ba\u03b5", _s30_0, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a3\u03c5\u03bc\u03b2\u03b9\u03b2\u03b1\u03c3\u03bc\u03bf\u03cd", _s30_1, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a3\u03c5\u03bc\u03b2\u03b9\u03b2\u03b1\u03c3\u03bc\u03bf\u03cd", "gateway_success", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "gateway_failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "gateway_error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "email_send", "Email \u03b1\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", _s17_33, "\u039f\u03c5\u03c1\u03ac \u0395\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 Email", "failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1", "quota_exceeded", "\u03a5\u03c0\u03ad\u03c1\u03b2\u03b1\u03c3\u03b7 \u039f\u03c1\u03af\u03bf\u03c5", _s16_42, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a1\u03bf\u03ae\u03c2", "system_logs", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03a3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2", "view_portal", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae portal", "copy_link", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", "token_billing", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd \u03ba\u03ac\u03c1\u03c4\u03b1\u03c2", _s24_17, "\u039a\u03b1\u03bb\u03c9\u03c3\u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Invoice Ninja", "always", "\u03a0\u03ac\u03bd\u03c4\u03b1", "optin", "\u03a3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae", "optout", "\u039c\u03b7 \u03a3\u03c5\u03bc\u03bc\u03b5\u03c4\u03bf\u03c7\u03ae", "label", "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1", "client_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "auto_convert", _s18_127, "company_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "reminder1_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 1 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "reminder2_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 2 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "reminder3_sent", "\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 3 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", _s18_33, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u0391\u03c0\u03b5\u03c3\u03c4\u03ac\u03bb\u03b7", "pdf_page_info", "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 :current \u03b1\u03c0\u03cc :total", _s16_44, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "emailed_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "emailed_credits", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u0384\u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd \u03bc\u03b5 email", "gateway", "\u03a0\u03cd\u03bb\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", "view_in_stripe", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03c4\u03bf Stripe", "rows_per_page", "\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 \u03b1\u03bd\u03ac \u03a3\u03b5\u03bb\u03af\u03b4\u03b1", "hours", "\u038f\u03c1\u03b5\u03c2", "statement", "\u0394\u03ae\u03bb\u03c9\u03c3\u03b7", "taxes", "\u03a6\u03cc\u03c1\u03bf\u03b9", "surcharge", "\u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7", "apply_payment", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "apply", "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "unapplied", "\u0391\u03bd\u03b5\u03c6\u03ac\u03c1\u03bc\u03bf\u03c3\u03c4\u03bf", "select_label", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2", "custom_labels", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2", "record_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "record_name", "\u038c\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "file_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", "height", "\u038e\u03c8\u03bf\u03c2", "width", "\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2", "to", "\u03a0\u03c1\u03bf\u03c2", "health_check", "\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03a5\u03b3\u03b5\u03af\u03b1\u03c2", "payment_type_id", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "last_login_at", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c3\u03c4\u03b9\u03c2", "company_key", "\u039a\u03bb\u03b5\u03b9\u03b4\u03af \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "storefront", "\u0392\u03b9\u03c4\u03c1\u03af\u03bd\u03b1 \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2", "storefront_help", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ce\u03bd \u03c4\u03c1\u03af\u03c4\u03c9\u03bd \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "client_created", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5", _s20_23, "Email Online \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s20_25, "Email \u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "completed", "\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", "gross", "\u039c\u03b5\u03b9\u03ba\u03c4\u03cc", "net_amount", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc \u03a0\u03bf\u03c3\u03cc", "net_balance", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc \u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", "client_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s17_35, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s17_37, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "selected_quotes", "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "selected_tasks", "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", _s17_39, "\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s17_41, "\u03a0\u03c1\u03bf\u03c3\u03b5\u03c7\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", _s17_43, "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", "recent_payments", "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "upcoming_quotes", "\u03a0\u03c1\u03bf\u03c3\u03b5\u03c7\u03b5\u03af\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "expired_quotes", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03bb\u03b7\u03be\u03b1\u03bd", "create_client", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "create_invoice", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "create_quote", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "create_payment", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "create_vendor", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "update_quote", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "delete_quote", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "update_invoice", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "delete_invoice", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "update_client", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "delete_client", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "delete_payment", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "update_vendor", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "delete_vendor", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "create_expense", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "update_expense", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "delete_expense", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "create_task", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "update_task", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "delete_task", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "approve_quote", "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "off", "\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc", "when_paid", "\u039f\u03c4\u03b1\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af", "expires_on", "\u039b\u03ae\u03b3\u03b5\u03b9 \u03c4\u03b7\u03bd", "free", "\u0394\u03c9\u03c1\u03b5\u03ac\u03bd", "plan", "\u03a0\u03bb\u03ac\u03bd\u03bf", "show_sidebar", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03ae\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", "hide_sidebar", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03ae\u03c2 \u039c\u03c0\u03ac\u03c1\u03b1\u03c2", "event_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03bf\u03c2", "target_url", "\u03a3\u03c4\u03cc\u03c7\u03bf\u03c2", "copy", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", "must_be_online", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03cc\u03bb\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf internet", _s17_45, "\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b1 crons", "api_webhooks", "API Webhooks", "search_webhooks", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count Webhooks", "search_webhook", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "\u039d\u03ad\u03bf Webhook", "edit_webhook", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 Webhook", "created_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 webhook", "updated_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 webhook", _s16_46, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 webhook", "deleted_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae webhook", "removed_webhook", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 webhook", _s16_47, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 webhook", _s17_46, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value webhooks", _s16_48, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value webhooks", _s16_49, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 :value webhooks", _s17_47, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value webhooks", "api_tokens", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac API", "api_docs", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03b1 API", "search_tokens", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 :count \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "search_token", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "token", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc", "tokens", "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ac", "new_token", "\u039d\u03ad\u03bf \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc", "edit_token", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "created_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "updated_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "archived_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "deleted_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "removed_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "restored_token", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03bf\u03cd", "archived_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "deleted_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", "restored_tokens", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", _s19_16, "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s24_19, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd \u03c3\u03c4\u03bf portal", _s21_27, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae & \u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "email_invoice", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03bc\u03b5 email", "email_quote", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "email_credit", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 email", "email_payment", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 Email", _s20_28, "\u039f \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bc\u03af\u03b1 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email", "ledger", "\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc", "view_pdf", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae PDF", "all_records", "\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "owned_by_user", "\u0399\u03b4\u03b9\u03bf\u03ba\u03c4\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", _s16_50, "\u03a5\u03c0\u03bf\u03bb\u03b5\u03b9\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "contact_name", "\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "use_default", "\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2", _s16_52, _s18_128, "number_of_days", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b7\u03bc\u03b5\u03c1\u03ce\u03bd", _s23_10, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u038c\u03c1\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_term", "\u038c\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_53, "\u039d\u03ad\u03bf\u03c2 \u038c\u03c1\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_49, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u038c\u03c1\u03bf\u03c5 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_29, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_30, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b9\u03ba\u03b1\u03b9\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_28, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_31, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s20_32, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_29, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03cc\u03c1\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_17, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_30, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_18, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03cc\u03c1\u03c9\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "email_sign_in", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03b5 email", "change", "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae", _s23_12, "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2;", _s24_20, "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 Desktop \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2;", "send_from_gmail", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03bc\u03ad\u03c3\u03c9 Gmail", "reversed", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5", "cancelled", "\u0391\u03ba\u03c5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7", "credit_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "quote_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "hosted", "\u03a6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7", "selfhosted", "\u0399\u03b4\u03af\u03b1\u03c2 \u03a6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03af\u03b1\u03c2", "exclusive", "\u0394\u03b5\u03bd \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9", "inclusive", "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9", "hide_menu", "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u039c\u03b5\u03bd\u03bf\u03cd", "show_menu", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039c\u03b5\u03bd\u03bf\u03cd", _s18_35, "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s16_56, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "search_designs", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "search_invoices", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "search_clients", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "search_products", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "search_quotes", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "search_credits", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "search_vendors", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "search_users", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", _s16_57, "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03a6\u03cc\u03c1\u03bf\u03c5", "search_tasks", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "search_settings", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "search_projects", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 Projects", "search_expenses", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", "search_payments", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "search_groups", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "search_company", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ce\u03bd", "search_document", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", "search_design", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", "search_invoice", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "search_client", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "search_product", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "search_quote", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "search_credit", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "search_vendor", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "search_user", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "search_tax_rate", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03a6\u03cc\u03c1\u03bf\u03c5", "search_task", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "search_project", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 Project", "search_expense", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "search_payment", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "search_group", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 1 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "refund_payment", "\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_53, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s18_37, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s16_63, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_54, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "reverse", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae", "full_name", "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u038c\u03bd\u03bf\u03bc\u03b1", _s17_55, "\u03a0\u03cc\u03bb\u03b7/\u039d\u03bf\u03bc\u03cc\u03c2/\u03a4.\u039a.", _s17_57, "\u03a4\u039a/\u03a0\u03cc\u03bb\u03b7/\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae", "custom1", _s16_254, "custom2", _s18_129, "custom3", _s16_255, "custom4", "\u03a4\u03ad\u03c4\u03b1\u03c1\u03c4\u03b7 \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "optional", "\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc", "license", "\u0386\u03b4\u03b5\u03b9\u03b1 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "purge_data", "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", _s16_64, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", _s18_38, "\u03a0\u03c1\u03bf\u03c3\u03bf\u03c7\u03ae: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03b2\u03ae\u03c3\u03b5\u03b9 \u03cc\u03bb\u03b1 \u03c3\u03b1\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2.", "invoice_balance", "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "age_group_0", "0 - 30 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_30", "30 - 60 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_60", "60 - 90 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_90", "90 - 120 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "age_group_120", "120+ \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "refresh", "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7", "saved_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "client_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "company_address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "invoice_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_details", "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "product_columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "task_columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "add_field", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03b5\u03b4\u03af\u03bf\u03c5", "all_events", "\u038c\u03bb\u03b1 \u03c4\u03b1 \u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03b1", "permissions", "\u0394\u03b9\u03ba\u03b1\u03b9\u03ce\u03bc\u03b1\u03c4\u03b1", "none", "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1", "owned", "\u039a\u03b1\u03c4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9", "payment_success", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_failure", "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "invoice_sent", ":count \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "quote_sent", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "credit_sent", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5", "invoice_viewed", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "quote_viewed", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "credit_viewed", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "quote_approved", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b1\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", _s25_18, "\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c9\u03bd", _s16_65, "\u03a0\u03c1\u03bf\u03bc\u03ae\u03b8\u03b5\u03b9\u03b1 \u0386\u03b4\u03b5\u03b9\u03b1\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "apply_license", "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u0386\u03b4\u03b5\u03b9\u03b1\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", "cancel_account", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", _s22_19, "\u03a0\u03c1\u03bf\u03c3\u03bf\u03c7\u03ae: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03b2\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2.", "delete_company", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0395\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", _s22_20, "\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7.", "enabled_modules", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03bd\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2", "converted_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "credit_design", "\u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "includes", "\u03a0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b1", "header", "\u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "load_design", "\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "css_framework", "CSS Framework", "custom_designs", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03b9 \u03a3\u03c7\u03ad\u03b4\u03b9\u03b1", "designs", "\u03a3\u03c7\u03ad\u03b4\u03b9\u03b1", "new_design", "\u039d\u03ad\u03bf \u03c3\u03c7\u03bb\u03b5\u03b4\u03b9\u03bf", "edit_design", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", "created_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "updated_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "archived_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "deleted_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "removed_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "restored_design", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", _s16_67, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "deleted_designs", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", _s16_68, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd", "proposals", "\u03a0\u03c1\u03bf\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2", "tickets", "\u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2", _s16_69, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "recurring_tasks", "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", _s18_, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", _s18_39, "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "credit_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "credit", "\u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "credits", "\u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2", "new_credit", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "edit_credit", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "created_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "updated_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "archived_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "deleted_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "removed_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03af\u03b1\u03c1\u03b5\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "restored_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", _s16_71, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "deleted_credits", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", _s16_72, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03c9\u03bd", "current_version", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "latest_version", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0388\u03ba\u03b4\u03bf\u03c3\u03b7", "update_now", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03a4\u03ce\u03c1\u03b1", _s26_13, "\u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2 web", _s16_73, "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "app_updated", "\u0397 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bf\u03ba\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1", "learn_more", "\u039c\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1", "integrations", "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2", "tracking_id", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7\u03c2", _s17_59, "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c4\u03bf\u03c5 Webhook \u03b3\u03b9\u03b1 \u03c4\u03bf Slack", "credit_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "credit_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "new_company", "\u039d\u03ad\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", "added_company", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7\u03c2", "company1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 1", "company2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 2", "company3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 3", "company4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 4", "product1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 1", "product2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 2", "product3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 3", "product4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd 4", "client1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 1", "client2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 2", "client3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 3", "client4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 4", "contact1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 1", "contact2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 2", "contact3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 3", "contact4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c0\u03b1\u03c6\u03ae 4", "task1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 1", "task2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 2", "task3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 3", "task4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 4", "project1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 1", "project2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 2", "project3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 3", "project4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03c1\u03b3\u03bf 4", "expense1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 1", "expense2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 2", "expense3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 3", "expense4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 4", "vendor1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 1", "vendor2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 2", "vendor3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 3", "vendor4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 4", "invoice1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 1", "invoice2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 2", "invoice3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 3", "invoice4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf 4", "payment1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 1", "payment2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 2", "payment3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 3", "payment4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae 4", "surcharge1", _s26_47, "surcharge2", _s26_48, "surcharge3", _s26_49, "surcharge4", _s26_50, "group1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 1", "group2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 2", "group3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 3", "group4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03ad\u03bd\u03b7 \u039f\u03bc\u03ac\u03b4\u03b1 4", "reset", "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", "number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2", "export", "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae", "chart", "\u0394\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1", "count", "\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7", "totals", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03b1", "blank", "\u039a\u03b5\u03bd\u03cc", "day", "\u0397\u03bc\u03ad\u03c1\u03b1", "month", "\u039c\u03ae\u03bd\u03b1\u03c2", "year", "\u0388\u03c4\u03bf\u03c2", "subgroup", "\u03a5\u03c0\u03bf\u03bf\u03bc\u03ac\u03b4\u03b1", "is_active", "\u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc", "group_by", "\u039f\u03bc\u03b1\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03b5", "credit_balance", "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", _s18_45, "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", _s17_61, "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c4\u03b5\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "contact_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2", _s21_31, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 1", _s21_32, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 2", _s21_33, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 3", _s21_34, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae \u0395\u03c0\u03b1\u03c6\u03ae\u03c2 4", _s17_63, "\u039f\u03b4\u03cc\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s17_64, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "shipping_city", "\u03a0\u03cc\u03bb\u03b7 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "shipping_state", "\u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s20_33, "\u03a4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03cc\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_103, "\u03a7\u03ce\u03c1\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", _s16_105, "\u039f\u03b4\u03cc\u03c2 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", _s16_106, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_city", "\u03a0\u03cc\u03bb\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_state", "\u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", _s19_19, "\u03a4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03cc\u03c2 \u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "billing_country", "\u03a7\u03ce\u03c1\u03b1 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "client_id", "Id \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "assigned_to", "\u0391\u03bd\u03b1\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03b5", "created_by", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc :name", "assigned_to_id", "\u039f\u03c1\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Id", "created_by_id", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03bf Id", "add_column", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2", "edit_columns", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", "columns", "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", "aging", "\u0393\u03ae\u03c1\u03b1\u03bd\u03c3\u03b7", "profit_and_loss", "\u039a\u03ad\u03c1\u03b4\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0396\u03b7\u03bc\u03b9\u03ac", "reports", "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2", "report", "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", "add_company", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "unpaid_invoice", "\u039c\u03b7 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "paid_invoice", "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_107, "\u039c\u03b7 \u0395\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "help", "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", "refund", _s18_130, "refund_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae\u03c2 \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", "filtered_by", "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03bc\u03b5", "contact_email", "Email \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2", "multiselect", "\u03a0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", "entity_state", "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae", "verify_password", "\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd", "applied", "\u0395\u03b3\u03b9\u03bd\u03b5 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", _s21_35, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03c9\u03bd \u03c3\u03c6\u03b1\u03bb\u03bc\u03ac\u03c4\u03c9\u03bd \u03b1\u03c0\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", _s30_4, "\u0395\u03c7\u03bf\u03c5\u03bc\u03b5 \u03bb\u03ac\u03b2\u03b5\u03b9 \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03ac \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b1.", "message", "\u039c\u03ae\u03bd\u03c5\u03bc\u03b1", "from", "\u0391\u03c0\u03cc", _s20_35, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03b5\u03c1\u03b5\u03b9\u03ce\u03bd \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s25_20, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03ba\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c4\u03b9\u03bc\u03ae\u03c2 \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03c0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s20_37, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03b7\u03c4\u03ae\u03c2 PDF \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af :version", _s18_48, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c4\u03bf\u03c5 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c4\u03ad\u03bb\u03bf\u03c5\u03c2", _s23_14, "\u03a4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b3\u03b9\u03b1 \u03c4\u03ad\u03bb\u03bf\u03c2", _s18_50, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "support_forum", "\u03c6\u03cc\u03c1\u03bf\u03c5\u03bc \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2", "about", "\u03a0\u03b5\u03c1\u03af", "documentation", "\u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7", "contact_us", "\u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b1\u03b6\u03af \u03bc\u03b1\u03c2", "subtotal", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc \u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "line_total", "\u0391\u03be\u03af\u03b1", "item", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "credit_email", "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03cc \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5", "iframe_url", "\u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "domain_url", "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 URL", _s21_36, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2", _s20_38, "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc", _s19_21, "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s23_15, "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", _s20_39, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c4\u03b9\u03bc\u03ae", "deleted_logo", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03bb\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03bf\u03c5", "yes", "\u039d\u03b1\u03b9", "no", "\u038c\u03c7\u03b9", "generate_number", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u0391\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd", "when_saved", "\u039f\u03c4\u03b1\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af", "when_sent", "\u039f\u03c4\u03b1\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03bb\u03b5\u03af", "select_company", "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", "float", "Float", "collapse", "\u03a3\u03c5\u03c1\u03c1\u03af\u03ba\u03bd\u03c9\u03c3\u03b7", "show_or_hide", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7/\u03b1\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7", "menu_sidebar", "\u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03cc \u039c\u03b5\u03bd\u03bf\u03cd", "history_sidebar", "\u039c\u03b5\u03bd\u03bf\u03cd \u03a0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03bf\u03cd \u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd", "tablet", "\u03a4\u03ac\u03bc\u03c0\u03bb\u03b5\u03c4", "mobile", "\u039a\u03b9\u03bd\u03b7\u03c4\u03cc", "desktop", "\u03a3\u03c4\u03b1\u03b8\u03b5\u03c1\u03cc\u03c2 \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae\u03c2", "layout", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", "view", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae", "module", "\u0395\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "first_custom", _s16_254, "second_custom", _s18_129, "third_custom", _s16_255, "show_cost", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2", _s17_66, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", "show_cost_help", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03ba\u03cc\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03ad\u03c1\u03b4\u03bf\u03c5\u03c2", _s21_37, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s26_15, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2, \u03b1\u03bb\u03bb\u03b9\u03ce\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", _s21_39, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s26_16, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2, \u03b1\u03bb\u03bb\u03b9\u03ce\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", _s21_41, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03b9\u03cc\u03bd\u03c4\u03bf\u03c2", _s26_17, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ad\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", _s16_109, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1", _s21_43, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1", "one_tax_rate", "\u0388\u03bd\u03b1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "two_tax_rates", "\u0394\u03cd\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "three_tax_rates", "\u03a4\u03c1\u03af\u03b1 \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", _s16_111, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "user", "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2", "invoice_tax", "\u03a6\u03cc\u03c1\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "line_item_tax", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5 \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "inclusive_taxes", "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03a6\u03cc\u03c1\u03bf\u03b9", _s17_68, "\u03a6\u03cc\u03c1\u03bf\u03b9 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "item_tax_rates", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s18_52, _s24_55, "configure_rates", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd", _s18_53, "\u03a0\u03b1\u03c1\u03b1\u03bc\u03b5\u03c4\u03c1\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a0\u03c5\u03bb\u03ce\u03bd \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateways)", "tax_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a6\u03cc\u03c1\u03c9\u03bd", _s18_55, "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "accent_color", "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03a4\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd", "switch", "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", _s19_23, "\u039b\u03af\u03c3\u03c4\u03b1 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b7 \u03bc\u03b5 \u03ba\u03cc\u03bc\u03bc\u03b1\u03c4\u03b1", "options", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2", _s16_113, "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03bc\u03bf\u03bd\u03ae\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", "multi_line_text", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd", "dropdown", "\u03a0\u03c4\u03c5\u03c3\u03ce\u03bc\u03b5\u03bd\u03bf", "field_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03b5\u03b4\u03af\u03bf\u03c5", _s27_22, "\u0388\u03bd\u03b1 email \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b5\u03af", "submit", "\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae", _s16_115, "\u0391\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2", "late_fees", "\u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03a4\u03ad\u03bb\u03b7", "credit_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "payment_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "late_fee_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2 \u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7\u03c2 \u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2", _s16_116, "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2 \u039a\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7\u03c2 \u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7\u03c2", "schedule", "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03b9\u03c3\u03b5", "before_due_date", "\u03a0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "after_due_date", "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s18_57, "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "days", "\u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "invoice_email", "Email \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "payment_email", "Email \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "partial_payment", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "payment_partial", "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", _s21_44, "Email \u039c\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "quote_email", "Email \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", _s16_118, _s18_128, _s16_120, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "administrator", "\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2", _s18_58, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2, \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03b6\u03b5\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "user_management", "\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03b7 \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "users", "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", "new_user", "\u039d\u03ad\u03bf\u03c2 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2", "edit_user", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "created_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "updated_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "archived_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "deleted_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "removed_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "restored_user", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "archived_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "deleted_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "removed_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", "restored_users", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd", _s16_122, "\u0393\u03b5\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "invoice_options", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_70, "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5 \u03a0\u03bf\u03c3\u03bf\u03cd", _s22_27, '\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc" \u03bc\u03cc\u03bd\u03bf \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03c3\u03c4\u03b1\u03c4\u03b9\u03ba\u03cc \u03cc\u03c4\u03b1\u03bd \u03bb\u03b7\u03c6\u03b8\u03b5\u03af \u03bc\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae.', _s23_17, "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", _s28_15, "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 \u03c3\u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s16_124, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1\u03c2", _s16_125, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf\u03c5", "first_page", "\u03a0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "all_pages", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "last_page", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "primary_font", "\u039a\u03cd\u03c1\u03b9\u03b1 \u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", "secondary_font", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03b5\u03cd\u03bf\u03c5\u03c3\u03b1 \u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", "primary_color", "\u039a\u03cd\u03c1\u03b9\u03bf \u03a7\u03c1\u03ce\u03bc\u03b1", "secondary_color", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03b5\u03cd\u03bf\u03bd \u03a7\u03c1\u03ce\u03bc\u03b1", "page_size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "font_size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u0393\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03c9\u03bd", "quote_design", "\u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "invoice_fields", "\u03a0\u03b5\u03b4\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "product_fields", "\u03a0\u03b5\u03b4\u03af\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "invoice_terms", "\u038c\u03c1\u03bf\u03b9 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "invoice_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "quote_footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s18_59, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf Email", _s23_18, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03bc\u03b5 email \u03cc\u03c4\u03b1\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03bf\u03cd\u03bd.", _s20_42, _s21_94, _s25_26, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03cc\u03c4\u03b1\u03bd \u03b5\u03be\u03bf\u03c6\u03bb\u03b7\u03b8\u03bf\u03cd\u03bd.", _s18_60, _s21_94, _s23_19, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd \u03cc\u03c4\u03b1\u03bd \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b1\u03c0\u03bf\u03cd\u03bd.", _s18_61, _s18_127, _s23_20, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c3\u03b5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03bc\u03cc\u03bb\u03b9\u03c2 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7.", _s17_72, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a1\u03bf\u03ae\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "freq_daily", "\u0397\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03bf", "freq_weekly", "\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", "freq_two_weeks", "\u0394\u03cd\u03bf \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b5\u03c2", "freq_four_weeks", "\u03a4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b9\u03c2 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b5\u03c2", "freq_monthly", "\u039c\u03ae\u03bd\u03b1\u03c2", "freq_two_months", "\u0394\u03cd\u03bf \u03bc\u03ae\u03bd\u03b5\u03c2", _s17_74, "\u03a4\u03c1\u03b5\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2", _s16_126, "\u03a4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b9\u03c2 \u03bc\u03ae\u03bd\u03b5\u03c2", "freq_six_months", "\u0388\u03be\u03b9 \u03bc\u03ae\u03bd\u03b5\u03c2", "freq_annually", "\u0388\u03c4\u03bf\u03c2", "freq_two_years", "\u0394\u03cd\u03bf \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1", _s16_127, "\u03a4\u03c1\u03af\u03b1 \u03a7\u03c1\u03cc\u03bd\u03b9\u03b1", "never", "\u03a0\u03bf\u03c4\u03ad", "company", "\u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1", _s17_75, "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03bc\u03ad\u03bd\u03bf\u03b9 \u0391\u03c1\u03b9\u03b8\u03bc\u03bf\u03af", "charge_taxes", "\u03a7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c9\u03bd", "next_reset", "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7", "reset_counter", "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae", _s16_128, "\u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03a0\u03c1\u03cc\u03b8\u03b5\u03bc\u03b1", "number_padding", "\u03a0\u03b5\u03c1\u03b9\u03b8\u03ce\u03c1\u03b9\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "general", "\u0393\u03b5\u03bd\u03b9\u03ba\u03cc\u03c2", "surcharge_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7\u03c2", "company_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "company_value", "\u0391\u03be\u03af\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03af\u03b1\u03c2", "credit_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2", "invoice_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_77, "\u0395\u03c0\u03b9\u03b2\u03ac\u03c1\u03c5\u03bd\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "client_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "product_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "payment_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "contact_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c0\u03b1\u03c6\u03ae\u03c2", "vendor_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "expense_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "project_field", "\u03a0\u03b5\u03b4\u03af\u03bf Project", "task_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "group_field", "\u03a0\u03b5\u03b4\u03af\u03bf \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "number_counter", "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "prefix", "\u03a0\u03c1\u03cc\u03b8\u03b5\u03bc\u03b1", "number_pattern", "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2", "messages", "\u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03b1", "custom_css", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf CSS", _s17_79, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 JavaScript", _s16_130, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c3\u03c4\u03bf PDF", _s21_46, "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03c3\u03c4\u03bf PDF \u03c4\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5/\u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2.", _s25_27, "\u039a\u03bf\u03c5\u03c4\u03ac\u03ba\u03b9 \u038c\u03c1\u03c9\u03bd \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s30_5, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03b8\u03b5\u03af \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s23_21, "\u039a\u03bf\u03c5\u03c4\u03ac\u03ba\u03b9 \u038c\u03c1\u03c9\u03bd \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s28_16, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03b8\u03b5\u03af \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s25_28, "\u03a5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s30_6, "\u0391\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5.", _s23_22, "\u03a5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s22_29, "\u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd \u03bc\u03b5 \u039a\u03c9\u03b4\u03b9\u03ba\u03cc \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", _s27_23, "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae. \u0391\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2, \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae \u03b8\u03b1 \u03c5\u03c0\u03bf\u03c7\u03c1\u03b5\u03bf\u03cd\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03b9 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c4\u03c9\u03bd \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd.", "authorization", "\u0395\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7", "subdomain", "\u03a5\u03c0\u03bf\u03c4\u03bf\u03bc\u03ad\u03b1\u03c2", "domain", "Domain", "portal_mode", "\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Portal", "email_signature", "\u039c\u03b5 \u03b5\u03ba\u03c4\u03af\u03bc\u03b7\u03c3\u03b7,", _s24_21, "\u039a\u03ac\u03bd\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2 \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf schema.org \u03c3\u03c4\u03b1 emails \u03c3\u03b1\u03c2.", "plain", "\u0391\u03c0\u03bb\u03cc", "light", "\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc", "dark", "\u03a3\u03ba\u03bf\u03cd\u03c1\u03bf", "email_design", "\u03a3\u03c7\u03b5\u03b4\u03af\u03b1\u03c3\u03b7 Email", "attach_pdf", "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b5 PDF", _s16_131, "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b7 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "attach_ubl", "\u0395\u03c0\u03b9\u03c3\u03cd\u03bd\u03b1\u03c8\u03b7 UBL", "email_style", "\u03a3\u03c4\u03c5\u03bb Email", _s19_25, "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03a3\u03b7\u03bc\u03b1\u03bd\u03c3\u03b7\u03c2", "reply_to_email", "Email \u0391\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7\u03c2", "reply_to_name", "Reply-To Name", "bcc_email", "Email \u03b9\u03b4\u03b9\u03b1\u03af\u03c4\u03b5\u03c1\u03b7\u03c2 \u03ba\u03bf\u03b9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2", "processed", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03c3\u03b8\u03b7\u03ba\u03b5", "credit_card", "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u039a\u03ac\u03c1\u03c4\u03b1", "bank_transfer", "\u03a4\u03c1\u03b1\u03c0\u03b5\u03b6\u03b9\u03ba\u03cc \u0388\u03bc\u03b2\u03b1\u03c3\u03bc\u03b1", "priority", "\u03a0\u03c1\u03bf\u03c4\u03b5\u03c1\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1", "fee_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "fee_percent", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "fee_cap", "\u0391\u03bd\u03ce\u03c4\u03b1\u03c4\u03bf \u038c\u03c1\u03b9\u03bf \u03a4\u03ad\u03bb\u03bf\u03c5\u03c2", "limits_and_fees", "\u038c\u03c1\u03b9\u03b1/\u03a4\u03ad\u03bb\u03b7", "enable_min", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c5", "enable_max", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c5", "min_limit", "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf: :min", "max_limit", "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf: :max", "min", "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf", "max", "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf", _s19_26, "\u039b\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03b1 \u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ce\u03bd \u039a\u03b1\u03c1\u03c4\u03ce\u03bd", "credentials", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5", "update_address", "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2", _s19_28, "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03bc\u03b5 \u03c4\u03b1 \u03c0\u03b1\u03c1\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1", "rate", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "tax_rate", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "new_tax_rate", "\u039d\u03ad\u03bf \u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "edit_tax_rate", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_133, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_134, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_82, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s16_135, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_83, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03bf\u03cd \u03c6\u03cc\u03c1\u03bf\u03c5", _s18_62, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", _s17_84, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", _s18_63, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ce\u03bd \u03c6\u03cc\u03c1\u03bf\u03c5", "fill_products", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c3\u03c5\u03bc\u03c0\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s18_64, "\u0395\u03c0\u03b9\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b8\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03be\u03af\u03b1", "update_products", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s20_44, "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b8\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af \u03ba\u03b1\u03b9 \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s16_136, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03a4\u03b9\u03bc\u03ce\u03bd \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s21_47, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c4\u03b9\u03bc\u03ce\u03bd \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c4\u03bf \u03bd\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c4\u03bf\u03c5 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "fees", "\u03a4\u03ad\u03bb\u03b7", "limits", "\u038c\u03c1\u03b9\u03b1", "provider", "Provider", "company_gateway", "\u03a0\u03cd\u03bb\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s16_138, "\u03a0\u03cd\u03bb\u03b5\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateways)", _s19_29, "\u039d\u03ad\u03b1 \u03a0\u03cd\u03bb\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (Gateway)", _s20_45, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03cd\u03bb\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_23, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_24, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s24_22, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s23_25, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s24_23, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c0\u03cd\u03bb\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (Gateway)", _s25_30, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s24_24, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s25_31, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c5\u03bb\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd (gateways)", _s16_140, "\u03a3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "discard_changes", "\u0391\u03c0\u03cc\u03c1\u03c1\u03b9\u03c8\u03b7 \u0391\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd", "default_value", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03b9\u03bc\u03ae", "disabled", "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf", "currency_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2", _s21_48, "\u03a0\u03c1\u03ce\u03c4\u03b7 \u039c\u03ad\u03c1\u03b1 \u03c4\u03b7\u03c2 \u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2", _s23_26, "\u03a0\u03c1\u03ce\u03c4\u03bf\u03c2 \u039c\u03ae\u03bd\u03b1\u03c2 \u03c4\u03bf\u03c5 \u0388\u03c4\u03bf\u03c5\u03c2", "sunday", "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", "monday", "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", "tuesday", "\u03a4\u03c1\u03af\u03c4\u03b7", "wednesday", "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", "thursday", "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", "friday", "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", "saturday", "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf", "january", "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "february", "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", "march", "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", "april", "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", "may", "\u039c\u03ac\u03b9\u03bf\u03c2", "june", "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", "july", "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", "august", "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", "september", "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "october", "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", "november", "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "december", "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", "symbol", "\u03a3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf", "ocde", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2", "date_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2", "datetime_format", "\u039c\u03bf\u03c1\u03c6\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2/\u038f\u03c1\u03b1\u03c2", "military_time", _s19_79, _s18_65, _s19_79, "send_reminders", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03a5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", "timezone", "\u0396\u03ce\u03bd\u03b7 \u03ce\u03c1\u03b1\u03c2", _s19_30, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac Project", _s17_85, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", _s19_32, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", _s18_66, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s18_68, "\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "group_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0393\u03c1\u03bf\u03c5\u03c0", "group", "\u039f\u03bc\u03ac\u03b4\u03b1", "groups", "\u0393\u03c1\u03bf\u03c5\u03c0", "new_group", "\u039d\u03ad\u03bf \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "edit_group", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0393\u03ba\u03c1\u03bf\u03c5\u03c0", "created_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "updated_group", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0", "archived_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "deleted_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "restored_groups", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b3\u03ba\u03c1\u03bf\u03c5\u03c0\u03c2", "upload_logo", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039b\u03bf\u03b3\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5", "uploaded_logo", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5", "logo", "\u039b\u03bf\u03b3\u03cc\u03c4\u03c5\u03c0\u03bf", "saved_settings", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd", _s16_142, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "device_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2", "defaults", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2", "basic_settings", "\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", _s17_87, "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2", "company_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1\u03c2", "user_details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "localization", "\u03a4\u03bf\u03c0\u03b9\u03ba\u03ad\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "online_payments", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2 Online", "tax_rates", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03ac \u03a6\u03cc\u03c1\u03c9\u03bd", "notifications", "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", "import_export", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae | \u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae", "custom_fields", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b1 \u03a0\u03b5\u03b4\u03af\u03b1", "invoice_design", "\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf\u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "buy_now_buttons", "\u039a\u03bf\u03c5\u03bc\u03c0\u03b9\u03ac \u0391\u03b3\u03bf\u03c1\u03ac \u03a4\u03ce\u03c1\u03b1", "email_settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 Email", _s23_28, "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 & \u03a5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", _s22_30, "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u039a\u03ac\u03c1\u03c4\u03b5\u03c2 & \u03a4\u03c1\u03ac\u03c0\u03b5\u03b6\u03b5\u03c2", _s19_34, "\u0391\u03c0\u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03c3\u03b5\u03b9\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "price", "\u03a4\u03b9\u03bc\u03ae", "email_sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03ad\u03c3\u03c9 Email", "google_sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03ad\u03c3\u03c9 Google", _s27_25, "\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03b3\u03bf\u03c1\u03ac \u03c3\u03b1\u03c2!", "redeem", "\u0395\u03be\u03b1\u03c1\u03b3\u03cd\u03c1\u03c9\u03c3\u03b5", "back", "\u03a0\u03af\u03c3\u03c9", "past_purchases", "\u03a0\u03b1\u03c1\u03b5\u03bb\u03b8\u03cc\u03bd\u03c4\u03b5\u03c2 \u0391\u03b3\u03bf\u03c1\u03ad\u03c2", _s19_36, "\u0395\u03c4\u03b7\u0384\u03c3\u03b9\u03b1 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae", "pro_plan", "\u0395\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03bd\u03bf", "enterprise_plan", "\u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03bd\u03bf", "count_users", ":count \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", "upgrade", "\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7", _s25_32, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03ba\u03c1\u03cc \u03cc\u03bd\u03bf\u03bc\u03b1", _s24_25, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b5\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf", _s33_14, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03c5\u03bc\u03c6\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc.", "i_agree_to_the", "\u03a3\u03c5\u03bc\u03c6\u03c9\u03bd\u03ce \u03bc\u03b5 \u03c4\u03bf", _s21_79, "\u03cc\u03c1\u03bf\u03b9 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1\u03c2", _s19_54, "\u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5", _s16_144, "\u038c\u03c1\u03bf\u03b9 \u03c4\u03b7\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1\u03c2", "privacy_policy", "\u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u0391\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5", "sign_up", "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae", "account_login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c3\u03c4\u03bf \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc", "view_website", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", "create_account", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd", "email_login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03b5 Email", "create_new", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u039d\u03ad\u03bf\u03c5", _s18_70, "\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af \u03c0\u03b5\u03b4\u03af\u03b1.", _s21_51, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03ce\u03c3\u03c4\u03b5 \u03ae \u03b1\u03ba\u03c5\u03c1\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2.", "download", "\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1", _s27_26, "\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03ad\u03bd\u03b1 \u03b5\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03ac\u03bd\u03bf", "take_picture", "\u039b\u03ae\u03c8\u03b7 \u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1\u03c2", "upload_file", "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", "document", "\u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "documents", "\u0388\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1", "new_document", "\u039d\u03ad\u03bf \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", "edit_document", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", _s17_89, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s16_146, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s17_90, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s16_147, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s17_91, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", _s18_72, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", _s17_92, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", _s18_73, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03c9\u03bd", "no_history", "\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "expense_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "pending", "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae\u03c2", _s16_148, "\u039a\u03b1\u03c4\u03b1\u03b3\u03b5\u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf", _s16_149, "\u03a3\u03b5 \u03b1\u03bd\u03b1\u03bc\u03bf\u03bd\u03ae", _s16_150, "\u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03bf", "converted", "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03ac\u03c0\u03b7\u03ba\u03b5", _s24_27, "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03b1 \u03c3\u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "exchange_rate", "\u0399\u03c3\u03bf\u03c4\u03b9\u03bc\u03af\u03b1 \u0391\u03bd\u03c4\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2", _s16_151, "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03bd\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2", "mark_paid", "\u038c\u03c1\u03b9\u03c3\u03b5 \u03c9\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1", "category", "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1", "address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7", "new_vendor", "\u039d\u03ad\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2", "created_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "updated_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "archived_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "deleted_vendor", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "restored_vendor", "\u039f \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2 \u03b1\u03bd\u03b1\u03ba\u03c4\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1", _s16_152, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "deleted_vendors", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", _s16_153, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ce\u03bd", "new_expense", "\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "created_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "updated_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_154, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "deleted_expense", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_155, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s17_93, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s16_156, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", _s17_94, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd", "copy_shipping", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "copy_billing", "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2", "design", "\u03a3\u03c7\u03b5\u03b4\u03af\u03b1\u03c3\u03b7", _s21_52, "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03b1\u03bd\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "invoiced", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03b1", "logged", "\u0395\u03b9\u03c3\u03b7\u03b3\u03bc\u03ad\u03bd\u03bf", "running", "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9", "resume", "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5", "task_errors", "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03c4\u03b5 \u03c4\u03c5\u03c7\u03cc\u03bd \u03b5\u03c0\u03b9\u03ba\u03b1\u03bb\u03c5\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03ce\u03c1\u03b5\u03c2", "start", "\u0388\u03bd\u03b1\u03c1\u03be\u03b7", "stop", "\u039b\u03ae\u03be\u03b7", "started_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "stopped_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "resumed_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03c0\u03b1\u03bd\u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "now", "\u03a4\u03ce\u03c1\u03b1", _s16_157, "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "timer", "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2", "manual", "\u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03bf", "budgeted", "\u03a0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf", "start_time", "\u038f\u03c1\u03b1 \u0388\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", "end_time", "\u038f\u03c1\u03b1 \u039b\u03ae\u03be\u03b7\u03c2", "date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", "times", "\u03a6\u03bf\u03c1\u03ad\u03c2", "duration", "\u0394\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1", "new_task", "\u039d\u03ad\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "created_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "updated_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "archived_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "deleted_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "restored_task", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "archived_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "deleted_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "restored_tasks", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", _s19_38, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03cc\u03bd\u03bf\u03bc\u03b1", "budgeted_hours", "\u03a7\u03c1\u03b5\u03ce\u03c3\u03b9\u03bc\u03b5\u03c2 \u038f\u03c1\u03b5\u03c2", "created_project", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 project", "updated_project", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 project", _s16_159, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 project", "deleted_project", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae project", _s16_160, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 project", _s17_95, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count projects", _s16_161, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count projects", _s17_96, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value projects", "new_project", "\u039d\u03ad\u03bf Project", _s27_30, "\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03b1\u03c2!", "if_you_like_it", "\u0395\u03ac\u03bd \u03c3\u03b1\u03c2 \u03b1\u03c1\u03ad\u03c3\u03b5\u03b9 \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5", "click_here", "\u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce", _s18_74, "\u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce", "to_rate_it", "\u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03be\u03b9\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5.", "average", "\u039c\u03ad\u03c3\u03bf\u03c2 \u03cc\u03c1\u03bf\u03c2", "unapproved", "\u039c\u03b7 \u03b5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7", _s30_11, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7", "locked", "\u039a\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03b7", "authenticate", "\u0391\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5", _s19_40, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5", _s24_28, "\u0392\u03b9\u03bf\u03bc\u03b5\u03c4\u03c1\u03b9\u03ba\u03b7 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "footer", "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf", "compare", "\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03bd\u03b5", "hosted_login", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03c6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "selfhost_login", "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03b1\u03c5\u03c4\u03bf-\u03c6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", "google_sign_in", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03ad\u03c3\u03c9 Google", "today", "\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1", "custom_range", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u0395\u03cd\u03c1\u03bf\u03c2", "date_range", "\u0395\u03cd\u03c1\u03bf\u03c2 \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03b9\u03ce\u03bd", "current", "\u03a4\u03c9\u03c1\u03b9\u03bd\u03ae", "previous", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7", "current_period", "\u03a4\u03c9\u03c1\u03b9\u03bd\u03ae \u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", _s17_98, "\u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2 \u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7\u03c2", "previous_period", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2", "previous_year", _s19_80, "compare_to", "\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7 \u03bc\u03b5", "last7_days", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 7 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2", "last_week", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1", "last30_days", "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 30 \u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "this_month", "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u039c\u03ae\u03bd\u03b1\u03c2", "last_month", "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u039c\u03ae\u03bd\u03b1\u03c2", "this_year", "\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03a7\u03c1\u03cc\u03bd\u03bf\u03c2", "last_year", _s19_80, "custom", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf", _s16_162, "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "clone_to_quote", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "clone_to_credit", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03a0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7", "view_invoice", "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "convert", "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae", "more", "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1", "edit_client", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "edit_product", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "edit_invoice", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "edit_quote", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "edit_payment", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "edit_task", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "edit_expense", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", "edit_vendor", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "edit_project", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 Project", _s22_, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s20_47, "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0395\u03c0\u03b1\u03bd\u03b1\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "billing_address", "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2", _s16_164, "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2", "total_revenue", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ac \u0388\u03c3\u03bf\u03b4\u03b1", "average_invoice", "\u039c\u03ad\u03c3\u03bf\u03c2 \u038c\u03c1\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "outstanding", "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae", "invoices_sent", ":count \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b1\u03bd", "active_clients", "\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03af \u03c0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2", "close", "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf", "email", "Email", "password", "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "url", "URL", "secret", "\u039a\u03c1\u03c5\u03c6\u03cc", "name", "\u0395\u03c0\u03c9\u03bd\u03c5\u03bc\u03af\u03b1", "logout", "\u0391\u03c0\u03bf\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7", "login", "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2", "filter", "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf", "sort", "\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7", "search", "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "active", "\u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2", "archived", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf", "deleted", "\u0394\u03b9\u03b5\u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf", "dashboard", "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5", "archive", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7", "delete", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", "restore", "\u0391\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7", _s16_166, "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s23_29, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf email \u03c3\u03b1\u03c2", _s26_25, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2", _s21_55, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf URL \u03c3\u03b1\u03c2", _s26_27, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ba\u03bb\u03b5\u03b9\u03b4\u03af \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2 \u03c3\u03b1\u03c2", "ascending", "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1 \u03c3\u03b5\u03b9\u03c1\u03ac", "descending", "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1 \u03c3\u03b5\u03b9\u03c1\u03ac", "save", "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", _s17_100, "\u0395\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1.", "paid_to_date", "\u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf \u03a0\u03bf\u03c3\u03cc", "balance_due", "\u039f\u03bb\u03b9\u03ba\u03cc \u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "balance", "\u03a5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03bf", "overview", "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "details", "\u03a3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1", "phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf", "website", "\u0399\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "vat_number", "\u0391\u03a6\u039c", "id_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 ID", "create", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1", _s19_42, "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03c4\u03b7\u03ba\u03b5 :value \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf", "error", "\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1", _s16_168, "\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7", "contacts", "\u0395\u03c0\u03b1\u03c6\u03ad\u03c2", "additional", "\u0395\u03c0\u03b9\u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf", "first_name", "\u038c\u03bd\u03bf\u03bc\u03b1", "last_name", "\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf", "add_contact", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "are_you_sure", "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9;", "cancel", "\u0386\u03ba\u03c5\u03c1\u03bf", "ok", "Ok", "remove", "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", _s16_170, "\u03a4\u03bf Email \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", "product", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "products", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1", "new_product", "\u039d\u03ad\u03bf \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "created_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "updated_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s16_172, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "deleted_product", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s16_173, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s17_102, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s16_174, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", _s17_103, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03c9\u03bd", "product_key", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd", "notes", "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "cost", "\u039a\u03cc\u03c3\u03c4\u03bf\u03c2", "client", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2", "clients", "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2", "new_client", "\u039d\u03ad\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2", "created_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "updated_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "archived_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_175, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "deleted_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "deleted_clients", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "restored_client", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_176, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "address1", "\u039f\u03b4\u03cc\u03c2", "address2", "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1", "city", "\u03a0\u03cc\u03bb\u03b7", "state", "\u039d\u03bf\u03bc\u03cc\u03c2", "postal_code", "\u03a4\u03b1\u03c7. \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", "country", "\u03a7\u03ce\u03c1\u03b1", "invoice", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "invoices", "\u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03b1", "new_invoice", "\u039d\u03ad\u03bf \u03a4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "created_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "updated_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_177, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "deleted_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_178, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s17_104, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s16_179, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", _s17_105, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "emailed_invoice", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "emailed_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 Email", "amount", "\u03a0\u03bf\u03c3\u03cc", "invoice_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "invoice_date", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "discount", "\u0388\u03ba\u03c0\u03c4\u03c9\u03c3\u03b7", "po_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03b1\u03c1\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03b1\u03c2", "terms", "\u038c\u03c1\u03bf\u03b9", "public_notes", "\u0394\u03b7\u03bc\u03cc\u03c3\u03b9\u03b5\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "private_notes", "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ad\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2", "frequency", "\u03a3\u03c5\u03c7\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "start_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u0388\u03bd\u03b1\u03c1\u03be\u03b7\u03c2", "end_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u039b\u03ae\u03be\u03b7\u03c2", "quote_number", "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "quote_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "valid_until", "\u0388\u03b3\u03ba\u03c5\u03c1\u03bf \u0388\u03c9\u03c2", "items", "\u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1", "partial_deposit", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc/\u039a\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7", "description", "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", "unit_cost", "\u03a4\u03b9\u03bc\u03ae \u039c\u03bf\u03bd\u03ac\u03b4\u03b1\u03c2", "quantity", "\u03a0\u03bf\u03c3\u03cc\u03c4\u03b7\u03c4\u03b1", "add_item", "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", "contact", "\u0395\u03c0\u03b1\u03c6\u03ae", "work_phone", "\u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf", "total_amount", "\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03cc \u03a0\u03bf\u03c3\u03cc", "pdf", "PDF", "due_date", _s22_70, _s16_180, "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u039c\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", _s17_106, "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "quote_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s22_31, "\u03a0\u03b9\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf + \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03bd\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2", _s22_33, "\u03a0\u03b9\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf + \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c7\u03c1\u03cc\u03bd\u03bf", "count_selected", ":count \u03b5\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5", "total", "\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf", "percent", "\u03a0\u03bf\u03c3\u03bf\u03c3\u03c4\u03cc", "edit", "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "dismiss", "\u0391\u03c0\u03ad\u03c1\u03c1\u03b9\u03c8\u03b5", _s20_49, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", _s22_34, _s24_55, _s24_30, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf", "task_rate", "\u039a\u03cc\u03c3\u03c4\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", "settings", "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "language", "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1", "currency", "\u039d\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1", "created_at", "\u0397\u03bc/\u03bd\u03af\u03b1 \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2", "created_on", "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2", "updated_at", "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", "tax", "\u03a6\u03cc\u03c1\u03bf\u03c2", _s30_13, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_34, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "past_due", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1", "draft", "\u03a0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf", "sent", "\u0391\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b1", "viewed", "\u0395\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1", "approved", "\u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", "partial", "\u039c\u03b5\u03c1\u03b9\u03ba\u03cc/\u039a\u03b1\u03c4\u03ac\u03b8\u03b5\u03c3\u03b7", "paid", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03b1", "mark_sent", "\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c9\u03c2 \u0391\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf", _s22_36, _s42_13, _s22_37, _s42_13, _s23_31, _s42_14, _s23_32, _s42_14, "done", "\u0388\u03c4\u03bf\u03b9\u03bc\u03bf", _s37_13, "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 \u03ae \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03bc\u03af\u03b1\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2", "dark_mode", "\u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc \u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd", _s27_36, "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae", "refresh_data", "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "blank_contact", "\u039a\u03b5\u03bd\u03ae \u0395\u03c0\u03b1\u03c6\u03ae", "activity", "\u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1", _s16_182, "\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", "clone", "\u039a\u03bb\u03c9\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "loading", "\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7", "industry", "\u0392\u03b9\u03bf\u03bc\u03b7\u03c7\u03b1\u03bd\u03af\u03b1", "size", "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2", "payment_terms", "\u038c\u03c1\u03bf\u03b9 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_date", "\u0397\u03bc/\u03bd\u03af\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "payment_status", "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_184, "\u0395\u03ba\u03ba\u03c1\u03b5\u03bc\u03ae\u03c2", _s16_185, "\u03a3\u03b5 \u03bb\u03ae\u03be\u03b7", _s16_186, "\u0391\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5", _s16_187, "\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5", _s16_188, "\u039c\u03b5\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c7\u03c1\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", _s16_189, _s18_130, _s17_107, "\u0391\u03bd\u03b5\u03c6\u03ac\u03c1\u03bc\u03bf\u03c3\u03c4\u03bf", _s17_108, _s19_6, "net", "\u039a\u03b1\u03b8\u03b1\u03c1\u03cc", "client_portal", "Portal \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "show_tasks", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd", "email_reminders", "Email \u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", "enabled", "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", "recipients", "\u03a0\u03b1\u03c1\u03b1\u03bb\u03ae\u03c0\u03c4\u03b5\u03c2", "initial_email", "\u0391\u03c1\u03c7\u03b9\u03ba\u03cc Email", "first_reminder", _s16_256, "second_reminder", _s18_131, "third_reminder", _s16_257, "reminder1", _s16_256, "reminder2", _s18_131, "reminder3", _s16_257, "template", "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf", "send", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae", "subject", "\u0398\u03ad\u03bc\u03b1", "body", "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf", "send_email", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae Email", "email_receipt", "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b1\u03c0\u03cc\u03b4\u03b5\u03b9\u03be\u03b7\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7", "auto_billing", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7", "button", "\u039a\u03bf\u03c5\u03bc\u03c0\u03af", "preview", "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "customize", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", "history", "\u0399\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc", "payment", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "payments", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03c2", "refunded", _s18_130, "payment_type", "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s21_57, _s18_132, "enter_payment", "\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "new_payment", "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae", "created_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "updated_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_190, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "deleted_payment", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s16_191, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s17_109, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s16_192, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", _s17_110, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ce\u03bd", "quote", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "quotes", "\u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2", "new_quote", "\u039d\u03ad\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac", "created_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "updated_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "archived_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "deleted_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "restored_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "archived_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 :count \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "deleted_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae :count \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "restored_quotes", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 :value \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ce\u03bd", "expense", "\u0394\u03b1\u03c0\u03ac\u03bd\u03b7", "expenses", "\u0394\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2", "vendor", "\u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae\u03c2", "vendors", "\u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ad\u03c2", "task", "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "tasks", "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "project", "Project", "projects", "Projects", "activity_1", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_2", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_3", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_4", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_5", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_6", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_7", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b5\u03af\u03b4\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_8", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_9", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_10", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae \u03c0\u03bf\u03c3\u03bf\u03cd :payment_amount \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_11", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_12", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_13", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_14", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_15", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_16", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_17", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_18", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_19", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_20", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_21", _s41_11, "activity_22", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_23", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_24", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote", "activity_25", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_26", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_27", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae :payment", "activity_28", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7 :credit", "activity_29", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b1\u03c0\u03bf\u03b4\u03ad\u03c7\u03c4\u03b7\u03ba\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac :quote \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_30", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_31", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_32", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_33", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_34", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_35", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_36", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_37", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_39", ":user \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b5 :payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 :payment", "activity_40", ":user \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 :adjustment \u03bc\u03b9\u03b1\u03c2 :payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 :payment", "activity_41", ":payment_amount \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 (:payment) \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5", "activity_42", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_43", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_44", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_45", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03ad\u03b3\u03c1\u03b1\u03c8\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_46", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 :task", "activity_47", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03b7 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b7 :expense", "activity_48", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_49", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03ba\u03bb\u03b5\u03b9\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_50", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03c3\u03c5\u03bd\u03ad\u03bd\u03c9\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_51", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b4\u03b9\u03b1\u03af\u03c1\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b1 \u03b4\u03cd\u03bf \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_52", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_53", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b5\u03c0\u03b1\u03bd\u03b1\u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_54", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03c0\u03b1\u03bd\u03b1\u03b4\u03b7\u03bc\u03b9\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_55", "\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :contact \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b5 \u03c3\u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_56", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03af\u03b4\u03b5 \u03c4\u03bf \u03b1\u03af\u03c4\u03b7\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 :ticket", "activity_57", "\u03a4\u03bf \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03bd\u03b1 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03bc\u03b5 email \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_58", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03bd\u03c4\u03af\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_59", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b1\u03ba\u03cd\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice", "activity_60", _s41_11, "activity_61", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b5\u03bb\u03ac\u03c4\u03b7 :client", "activity_62", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae :vendor", "activity_63", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c0\u03c1\u03ce\u03c4\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_64", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_65", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03c4\u03c1\u03af\u03c4\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_66", "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 :user \u03ad\u03c3\u03c4\u03b5\u03b9\u03bb\u03b5 \u03bc\u03b5 email \u03b1\u03c4\u03ad\u03c1\u03bc\u03bf\u03bd\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c4\u03b9\u03bc\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf :invoice \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :contact", "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03bc\u03af\u03b1\u03c2 \u03a6\u03bf\u03c1\u03ac\u03c2", "emailed_quote", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "emailed_credit", "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 email", _s20_51, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b7", _s21_59, "\u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03af\u03c3\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03b5\u03c3\u03c4\u03b1\u03bb\u03bc\u03ad\u03bd\u03b7", "expired", "\u039b\u03b7\u03b3\u03bc\u03ad\u03bd\u03b1", "all", "\u038c\u03bb\u03b1", "select", "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", _s22_38, "\u03a0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03bc\u03b5 \u03a0\u03b1\u03c1\u03b1\u03c4\u03b5\u03c4\u03b1\u03bc\u03ad\u03bd\u03b7 \u03c0\u03af\u03b5\u03c3\u03b7", "custom_value1", _s18_133, "custom_value2", _s18_133, "custom_value3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae 3", "custom_value4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a4\u03b9\u03bc\u03ae 4", _s18_75, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03a3\u03c4\u03c5\u03bb Email", _s24_35, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1 \u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7\u03c2", _s29_31, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u0391\u03bd\u03b5\u03be\u03cc\u03c6\u03bb\u03b7\u03c4\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s27_41, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u0395\u03be\u03bf\u03c6\u03bb\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s31_10, "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u039c\u03ae\u03bd\u03c5\u03bc\u03b1 \u039c\u03b7 \u0395\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", "lock_invoices", "\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03bc\u03b1 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03c9\u03bd", "translations", "\u039c\u03b5\u03c4\u03b1\u03c6\u03c1\u03ac\u03c3\u03b5\u03b9\u03c2", _s19_43, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s19_45, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2", _s22_40, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s22_42, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s21_60, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", _s21_62, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", _s21_64, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1\u03c2", _s21_66, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2 \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u0391\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1\u03c2", _s22_44, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_46, "\u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae\u03c2\xa0\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", _s22_48, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s22_50, "\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s20_52, "\u039c\u03bf\u03c4\u03af\u03b2\u03bf \u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s20_54, "\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7 \u03a0\u03c1\u03bf\u03c3\u03c6\u03bf\u03c1\u03ac\u03c2", _s21_68, "\u039c\u03bf\u03bd\u03c4\u03ad\u03bb\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd", _s21_70, _s27_59, _s21_72, "\u039c\u03bf\u03bd\u03c4\u03ad\u03bb\u03bf \u03c0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd", _s21_73, _s27_59, _s18_77, "\u039c\u03b7\u03b4\u03b5\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2 \u039c\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2", "counter_padding", "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03b1\u03b8\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2", _s28_51, "\u039a\u03bf\u03b9\u03bd\u03cc\u03c7\u03c1\u03b7\u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03b1\u03c2 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s18_79, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 1", _s18_81, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 1", _s18_83, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 2", _s18_85, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 2", _s18_87, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae 3", _s18_89, "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 3", _s21_74, "\u0398\u03ad\u03bc\u03b1 \u03c4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 \u03bc\u03b5 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf", _s19_47, "\u0398\u03ad\u03bc\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5", _s21_76, "\u0398\u03ad\u03bc\u03b1 \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2 \u03bc\u03b5 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf", _s29_33, "\u0398\u03ad\u03bc\u03b1 Email \u03bc\u03b5\u03c1\u03b9\u03ba\u03ae\u03c2 \u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "show_table", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1", "show_list", "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039b\u03af\u03c3\u03c4\u03b1\u03c2", "client_city", "\u03a0\u03cc\u03bb\u03b7 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_state", "\u039a\u03c1\u03ac\u03c4\u03bf\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_country", "\u03a7\u03ce\u03c1\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s16_193, "\u039f \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u0395\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2", "client_balance", "\u0399\u03c3\u03bf\u03b6\u03cd\u03b3\u03b9\u03bf \u03a0\u03b5\u03bb\u03b1\u03c4\u03ce\u03bd", "client_address1", "\u039f\u03b4\u03cc\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "client_address2", "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, "\u039f\u03b4\u03cc\u03c2 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", _s24_38, "\u0394\u03b9\u03b1\u03bc\u03ad\u03c1\u03b9\u03c3\u03bc\u03b1 \u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 \u03a0\u03b5\u03bb\u03ac\u03c4\u03b7", "type", "\u03a4\u03cd\u03c0\u03bf\u03c2", "invoice_amount", "\u03a0\u03bf\u03c3\u03cc \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", _s16_197, _s22_70, "tax_rate1", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 1", "tax_rate2", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 2", "tax_rate3", "\u03a6\u03bf\u03c1\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03a3\u03c5\u03bd\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03ae\u03c2 3", "auto_bill", "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03a7\u03c1\u03ad\u03c9\u03c3\u03b7", "archived_at", "\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2", "has_expenses", "\u0395\u03c7\u03b5\u03b9 \u03ad\u03be\u03bf\u03b4\u03b1", "custom_taxes1", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 1", "custom_taxes2", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 2", "custom_taxes3", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 3", "custom_taxes4", "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03a6\u03bf\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 4", _s17_113, _s26_47, _s17_114, _s26_48, _s17_115, _s26_49, _s17_116, _s26_50, "is_deleted", "\u0395\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af", "vendor_city", "\u03a0\u03cc\u03bb\u03b7 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "vendor_state", "\u039a\u03c1\u03ac\u03c4\u03bf\u03c2 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "vendor_country", "\u03a7\u03ce\u03c1\u03b1 \u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03b5\u03c5\u03c4\u03ae", "is_approved", "\u0395\u03af\u03bd\u03b1\u03b9 \u0391\u03c0\u03bf\u03b4\u03b5\u03ba\u03c4\u03ae", "tax_name", "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5", "tax_amount", "\u03a0\u03bf\u03c3\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5", "tax_paid", "\u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03a6\u03cc\u03c1\u03bf\u03c2", "payment_amount", "\u03a0\u03bf\u03c3\u03cc \u03a0\u03bb\u03b7\u03c1\u03c9\u03bc\u03ae\u03c2", "age", "\u0397\u03bb\u03b9\u03ba\u03af\u03b1", "is_running", "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9", "time_log", "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5", "bank_id", "\u03a4\u03c1\u03ac\u03c0\u03b5\u03b6\u03b1", _s19_49, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s16_198, "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 \u0394\u03b1\u03c0\u03ac\u03bd\u03b7\u03c2", _s19_51, "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u039d\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a4\u03b9\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5", "tax_name1", "\u039f\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03a6\u03cc\u03c1\u03bf\u03c5 1", "tax_name2", _s16_258, "tax_name3", _s16_258, "transaction_id", _s18_132, "color_theme", "Color Theme"], t1, t1), "it", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Ultimo aggiornamento", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Non assegnato", "partial_value", "Deve essere maggiore di zero ed inferiore al totale", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Abilita", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Imposta il sottodominio o visualizza la fattura sul tuo sito web.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Codice Promo", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Sicurezza", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abbonamento", "subscriptions", "Abbonamenti", _s16_11, "Nuovo Abbonamento", _s17_7, "Modifica Abbonamento", _s20_1, "Abbonamento creato con successo", _s20_2, "Abbonamento aggiornato con successo", _s21_6, "Abbonamento archiviato con successo", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, "Cerca 1 Abbonamento", _s20_5, "Cerca :count Abbonamenti", _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, "Scadenza Password", _s29_, "Contatore di fatture/crediti condiviso", "use_last_email", "Use last email", _s16_20, "Attiva azienda", _s21_9, "Abilitare le e-mail, le fatture ricorrenti e le notifiche", _s27_1, _s35_1, _s27_2, "Si prega di impostare prima una password", _s34_1, "Attenzione: Cambiare il numero di telefono disabiliter\xe0 l'autenticazione a due fattori", "help_translate", "Contribuisci alla traduzione", _s23_2, "Selezionare un paese", "resend_invite", "Re-invia invito", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, "Si prega di fornire un numero di telefono cellulare per abilitare l'autenticazione a due fattori", "send_sms", "Send SMS", "sms_code", "Codice SMS", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Autenticazione a due fattori", _s18_15, _s18_16, _s34_2, "Richiedi una password per il login Social", "stay_logged_in", "Rimani autenticato", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, "Impostazioni di Sicurezza", "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Pagamento Rimborsato", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Converti a Fattura", _s16_24, "URL di registrazione", "invoice_project", "Fattura progetto", "invoice_task", "Fattura l'attivit\xe0", "invoice_expense", "Fattura Spesa", _s19_8, "Ricerca 1 Termine di pagamento", _s20_6, "Cerca :count termini di pagamento", _s16_26, "Salva e mostra anteprima", "save_and_email", "Salva e invia e-mail", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "\xc8 inviato", _s17_18, "Documenti di default", "document_upload", "Caricamento Documenti", _s20_7, "Permettere ai clienti di caricare documenti", "expense_total", "Totale Spese", "enter_taxes", "Inserire tasse", "by_rate", "Per tasso", "by_amount", "Per ammontare", "enter_amount", "Inserire importo", "before_taxes", "Prima delle tasse", "after_taxes", "Dopo le tasse", "color", "Colore", "show", "Mostra", "hide", "Nascondi", "empty_columns", "Colonne vuote", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Attivit\xe0 in corso", "recent_tasks", "Attivit\xe0 Recenti", "recent_expenses", "Spese Recenti", _s17_20, "Spese in arrivo", "update_app", "Aggiorna App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, "Usa tasse inclusive", _s18_19, _s18_20, "column", "Colonna", "sample", "Esempio", "map_to", "Map To", "import", "Importa", _s25_1, _s29_1, "select_file", "Seleziona un file, per favore", _s16_32, _s16_33, "csv_file", "Seleziona file CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "Visualizza le licenze", "webhook_url", "Webhook URL", _s17_22, "Editor a schermo intero", "sidebar_editor", "Editor barra laterale", _s22_6, 'Digita ":value" per confermare', "purge", "Purge", "service", "Servizio", "clone_to", "Clone To", "clone_to_other", "Clona su altro", "labels", "Etichette", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Non pagata", "white_label", "White Label", "delivery_note", "Nota di consegna", _s24_6, "Le fatture inviate sono bloccate", _s24_8, "Le fatture pagate sono bloccate", "source_code", "Codice Sorgente", "app_platforms", "App Platforms", "invoice_late", _s18_134, "quote_expired", _s18_135, "partial_due", "Da versare (parziale)", "invoice_total", "Totale Fattura", "quote_total", "Totale Preventivo", "credit_total", "Credito Totale", _s23_5, "Totale fattura", "actions", "Azioni", "expense_number", "Numero spesa", "task_number", "Numero attivit\xe0", "project_number", "Numero progetto", "project_name", "Nome progetto", "warning", "Attenzione", "view_settings", "View Settings", _s24_10, "Attenzione: questa azienda non \xe8 ancora stata attivata", "late_invoice", _s18_134, "expired_quote", _s18_135, "remind_invoice", "Ricorda fattura", "cvv", "CVV", "client_name", "Nome Cliente", "client_phone", "Telefono cliente", "required_fields", "Campi richiesti", "calculated_rate", "Calculated Rate", _s17_24, "Tasso predefinito di attivit\xe0", "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Stato", "task_statuses", "Stati attivit\xe0", "new_task_status", "Nuovo stato attivit\xe0", _s16_34, "Modifica stato attivit\xe0", _s19_9, _s32_0, _s19_10, "Stato dell'attivit\xe0 aggiornato con successo", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, "Mostra sempre la sezione delle attivit\xe0 quando si creano le fatture", _s20_14, "Timelog delle attivit\xe0 di fatturazione", _s25_2, "Aggiungere i dettagli sull'orario alle voci della fattura", _s20_16, "Datelog delle attivit\xe0 di fatturazione", _s25_3, "Aggiungi i dettagli della data alle voci della fattura", _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Impostazioni attivit\xe0", _s20_18, "Configura Categorie", _s18_24, "Categorie di Spesa", _s20_20, "Nuova Categoria di Spesa", _s21_18, "Modifica Categoria di Spesa", _s24_11, "Categoria spese creata con successo", _s24_12, "Categoria spese aggiornata con successo", _s25_5, "Categoria spese archiviata con successo", _s24_13, "Categoria eliminata con successo", _s24_14, "Categoria di spesa rimossa con successo", _s25_6, "Categoria spese ripristinata con successo", _s27_8, "Archiviato con successo :count categorie di spesa", _s26_4, "Eliminate con successo :value categorie di spesa", _s27_9, "Ripristinate con successo :value categorie di spesa", _s23_6, "Cerca 1 categoria di spesa", _s25_8, "Cerca :count categorie di spesa", _s21_20, _s21_21, "show_option", "Mostra opzione", _s22_9, _s50_3, "view_changes", "Vedi modifiche", "force_update", "Forza aggiornamento", _s17_26, "Stai eseguendo l'ultima versione, ma potrebbero essere disponibili dei fix in attesa.", "mark_paid_help", _s31_1, _s18_26, "Deve essere fatturata", _s23_7, "Permettere la fatturazione della spesa", _s29_2, _s26_35, _s21_22, "Imposta un tasso di cambio", _s16_38, "Impostazioni Spese", _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variabili", "show_password", "Mostra Password", "hide_password", "Nascondi Password", "copy_error", "Copia Errore", "capture_card", "Capture Card", _s17_27, "Fattura automatica abilitata", "total_taxes", "Totale Tasse", "line_taxes", "Riga tasse", "total_fields", "Campi Totale", _s25_9, "Fermata con successo la fattura ricorrente", _s25_10, "Fattura ricorrente avviata con successo", _s25_11, "Fattura ricorrente ripresa con successo", "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Pausato", "mark_active", "Segna come attivo", "day_count", "Giorno :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, "Usa termini di pagamento", "endless", "Endless", "next_send_date", "Prossima data di invio", _s16_40, "Cicli restanti", _s17_31, "Fattura Ricorrente", _s18_29, "Fatture Ricorrenti", _s21_25, "Nuova Fattura Ricorrente", _s22_12, "Modifica Fattura Ricorrente", _s25_12, "Fattura ricorrente creata con successo", _s25_13, "Fattura ricorrente aggiornata con successo", _s26_5, "Fattura ricorrente archiviata con successo", _s25_14, "Fattura ricorrente eliminata con successo", _s25_15, "Fattura ricorrente rimossa con successo", _s26_6, "Fattura ricorrente ripristinata con successo", _s27_10, "Archiviato con successo :value fatture ricorrenti", _s26_7, "Cancellato con successo :value fatture ricorrenti", _s27_11, "Ripristinato con successo :value fatture ricorrenti", _s24_15, "Cerca 1 fattura ricorrente", _s25_16, "Cerca :count Fatture ricorrenti", "send_date", "Data di invio", "auto_bill_on", "Fattura automatica attiva", _s28_2, _s28_3, "profit", "Utile", "line_item", "Riga articolo", _s18_31, "Consenti pagamento in eccesso", _s23_8, "Supporta il pagamento di un extra per accettare le mance", _s19_14, "Consenti pagamento ridotto", _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Aperto", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "Registri di sistema", "view_portal", "Visualizza il portale", "copy_link", "Copia Collegamento", "token_billing", "Salva carta di credito", _s24_17, "Benvenuti a Invoice Ninja", "always", "Sempre", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etichetta", "client_number", "Numero Cliente", "auto_convert", "Auto Convert", "company_name", "Nome Azienda", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", "Pagina :current di :total", _s16_44, "Fatture inviate con successo", "emailed_quotes", "Preventivi inviati con successo", "emailed_credits", _s28_52, "gateway", "Piattaforma", "view_in_stripe", "View in Stripe", "rows_per_page", "Righe per pagina", "hours", "Ore", "statement", "Statement", "taxes", "Tasse", "surcharge", "Sovrapprezzo", "apply_payment", "Applica pagamento", "apply", "Applica", "unapplied", "Unapplied", "select_label", "Seleziona etichetta", "custom_labels", "Etichette Personalizzate", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Altezza", "width", "Larghezza", "to", "a", "health_check", "Health Check", "payment_type_id", _s17_149, "last_login_at", "Last Login At", "company_key", "Chiave azienda", "storefront", "Storefront", "storefront_help", "Permetti alle app di terze parti di creare fatture", "client_created", "Cliente creato", _s20_23, "Email di pagamento online", _s20_25, "Email di pagamento manuale", "completed", "Completato", "gross", "Lordo", "net_amount", "Cifra al netto", "net_balance", "Bilancio Netto", "client_settings", "Impostazioni Cliente", _s17_35, "Fatture Selezionate", _s17_37, "Pagamenti selezionati", "selected_quotes", "Preventivi Selezionati", "selected_tasks", "Attivit\xe0 Selezionate", _s17_39, "Spese Selezionate", _s17_41, "Prossime fatture", _s17_43, "Fatture scadute", "recent_payments", "Pagamenti recenti", "upcoming_quotes", "Preventivi in scadenza", "expired_quotes", "Preventivi Scaduti", "create_client", "Crea nuovo cliente", "create_invoice", "Crea Fattura", "create_quote", "Crea Preventivo", "create_payment", "Crea pagamento", "create_vendor", "Crea fornitore", "update_quote", _s19_81, "delete_quote", "Cancella Preventivo", "update_invoice", "Aggiorna Fattura", "delete_invoice", "Elimina Fattura", "update_client", "Aggiorna Cliente", "delete_client", "Elimina cliente", "delete_payment", "Elimina pagamento", "update_vendor", "Aggiorna Fornitore", "delete_vendor", "Cancella Fornitore", "create_expense", "Crea Spesa", "update_expense", "Aggiorna Spesa", "delete_expense", "Cancella Spesa", "create_task", "Crea un'attivit\xe0", "update_task", "Aggiorna Attivit\xe0", "delete_task", "Cancella l'attivit\xe0", "approve_quote", _s19_81, "off", "Off", "when_paid", "Quando Pagato", "expires_on", "Scade il", "free", "Free", "plan", "Plan", "show_sidebar", "Mostra Barra Laterale", "hide_sidebar", "Nascondi Barra Laterale", "event_type", "Tipo Evento", "target_url", "Target", "copy", "Copia", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Token", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token", "new_token", "New Token", "edit_token", "Modifica token", "created_token", "Token creato correttamente", "updated_token", "Token aggiornato correttamente", "archived_token", _s27_12, "deleted_token", "Token eliminato correttamente", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, "Registazione cliente", _s24_19, "Permetti al cliente di registrarsi da solo nel portale", _s21_27, "Personalizza & Anterpima", "email_invoice", "Invia Fattura", "email_quote", "Invia Preventivo via Email", "email_credit", "Email Credit", "email_payment", "Email Pagamento", _s20_28, "Il cliente non ha un indirizzo email impostato", "ledger", "Ledger", "view_pdf", "Vedi PDF", "all_records", "Tutti i dati", "owned_by_user", "Posseduto da utente", _s16_50, _s16_51, "contact_name", "Nome Contatto", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, "Configura termini di pagamento", "payment_term", _s20_93, _s16_53, "Nuovi termini di pagamento", _s17_49, "Modifica termini di pagamento", _s20_29, "Termini di pagamento creato con successo", _s20_30, "Termini di pagamento aggiornato con successo", _s21_28, "Termini di pagamento archiviato con successo", _s20_31, "Termini di pagamento cancellati con successo", _s20_32, "Termini di pagamento rimossi con successo", _s21_29, "Termini di pagamento ripristinati con successo", _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Importo Credito", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Esclusiva", "inclusive", "Inclusiva", "hide_menu", "Nascondi menu", "show_menu", "Mostra menu", _s18_35, _s23_50, _s16_56, "Cerca Documenti", "search_designs", "Search Designs", "search_invoices", "Cerca Fatture", "search_clients", "Cerca Clienti", "search_products", "Cerca Prodotti", "search_quotes", "Cerca Preventivi", "search_credits", "Cerca crediti", "search_vendors", "Cerca fornitori", "search_users", "Cerca utenti", _s16_57, _s16_201, "search_tasks", "Cerca attivit\xe0", "search_settings", "Cerca Impostazioni", "search_projects", "Cerca prodotti", "search_expenses", "Cerca spese", "search_payments", "Cerca pagamenti", "search_groups", "Cerca gruppi", "search_company", "Cerca Azienda", "search_document", "Cerca 1 documento", "search_design", "Cerca 1 stile", "search_invoice", "Cerca 1 fattura", "search_client", "Cerca 1 cliente", "search_product", "Cerca 1 prodotto", "search_quote", "Cerca 1 preventivo", "search_credit", "Cerca 1 credito", "search_vendor", "Cerca 1 Fornitore", "search_user", "Cerca 1 utente", "search_tax_rate", _s17_52, "search_task", "Cerca 1 attivit\xe0", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", "Cerca 1 pagamento", "search_group", "Search 1 Group", "refund_payment", "Rimborsa Pagamento", _s17_53, "Fattura annullata con successo", _s18_37, "Fatture annullate con successo", _s16_63, "Fattura stornata con successo", _s17_54, "Fatture stornate con successo", "reverse", "Reverse", "full_name", "Nome Completo", _s17_55, "Citt\xe0/Stato/CAP", _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Opzionale", "license", "Licenza", "purge_data", "Cancella dati permanentemente", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Saldo della fattura", "age_group_0", "0 - 30 Giorni", "age_group_30", "30 - 60 Giorni", "age_group_60", "60 - 90 Giorni", "age_group_90", "90 - 120 Giorni", "age_group_120", "120+ Giorni", "refresh", "Aggiorna", "saved_design", _s25_17, "client_details", "Dettagli Cliente", "company_address", "Indirizzo azienda", "invoice_details", "Dettagli fattura", "quote_details", "Dettagli Preventivo", "credit_details", "Dettagli Credito", "product_columns", "Colonne Prodotto", "task_columns", "Colonne attivit\xe0", "add_field", "Aggiungi campo", "all_events", "Tutti gli eventi", "permissions", "Permissions", "none", "None", "owned", "Posseduto", "payment_success", "Pagamento riuscito", "payment_failure", "Errore di pagamento", "invoice_sent", ":count fattura inviata", "quote_sent", "Preventivo inviato", "credit_sent", "Credito inviato", "invoice_viewed", "Fattura visualizzata", "quote_viewed", "Preventivo visualizzato", "credit_viewed", "Credito visualizzato", "quote_approved", "Preventivo approvato", _s25_18, "Ricevi tutte le notifiche", _s16_65, "Acquista licenza", "apply_license", "Applica Licenza", "cancel_account", "Elimina l'account", _s22_19, "Attenzione: Questo eliminer\xe0 permanentemente il tuo account, non si potr\xe0 pi\xf9 tornare indietro.", "delete_company", "Elimina azienda", _s22_20, _s69_, "enabled_modules", "Moduli abilitati", "converted_quote", "Preventivo convertito con successo", "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Carica Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Stili", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposte", "tickets", "Tickets", _s16_69, "Preventivi Ricorrenti", "recurring_tasks", "Attivit\xe0 ricorrenti", _s18_, "Spese Ricorrenti", _s18_39, "Gestione Account", "credit_date", "Data Credito", "credit", "Credito", "credits", "Crediti", "new_credit", "Inserisci il credito", "edit_credit", "Modifica Credito", "created_credit", "Credito creato con successo", "updated_credit", "Credito aggiornato con successo", "archived_credit", "Credito archiviato con successo", "deleted_credit", "Credito eliminato con successo", "removed_credit", _s27_21, "restored_credit", "Credito ripristinato con successo", _s16_71, ":count crediti archiviati con successo", "deleted_credits", ":count crediti eliminati con successo", _s16_72, _s36_3, "current_version", "Versione attuale", "latest_version", "Latest Version", "update_now", "Aggiorna ora", _s26_13, _s41_3, _s16_73, "Aggiornamento disponibile", "app_updated", "Aggiornamento completato con successo", "learn_more", "Scopri di pi\xf9", "integrations", "Integrazioni", "tracking_id", "Id di tracciamento", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Termini del Credito", "new_company", "Nuova azienda", "added_company", "Azienda aggiunta con successo", "company1", "Azienda Personalizzata 1", "company2", "Azienda Personalizzata 2", "company3", "Azienda Personalizzata 3", "company4", "Azienda Personalizzata 4", "product1", "Prodotto personalizzato 1", "product2", "Prodotto personalizzato 2", "product3", "Prodotto personalizzato 3", "product4", "Prodotto personalizzato 4", "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Attivit\xe0 personalizzata 1", "task2", "Attivit\xe0 personalizzata 2", "task3", "Attivit\xe0 personalizzata 3", "task4", "Attivit\xe0 personalizzata 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Fornitore Personalizzato 1", "vendor2", "Fornitore Personalizzato 2", "vendor3", "Fornitore Personalizzato 3", "vendor4", "Fornitore Personalizzato 4", "invoice1", "Fattura Personalizzata 1", "invoice2", "Fattura Personalizzata 2", "invoice3", "Fattura Personalizzata 3", "invoice4", "Fattura Personalizzata 4", "payment1", "Pagamento personalizzato 1", "payment2", "Pagamento personalizzato 2", "payment3", "Pagamento personalizzato 3", "payment4", "Pagamento personalizzato 4", "surcharge1", _s28_67, "surcharge2", _s28_68, "surcharge3", _s28_69, "surcharge4", _s28_70, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Numero", "export", "Esporta", "chart", "Grafico", "count", "Count", "totals", "Totali", "blank", "Vuoto", "day", "GIorno", "month", "Mese", "year", "Anno", "subgroup", "Sottogruppo", "is_active", "\xc8 attivo", "group_by", "Raggruppa per", "credit_balance", "Saldo Credito", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Telefono Contatto", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Via di spedizione", _s17_64, "Piano/Appartamento di spedizione", "shipping_city", "Citt\xe0 di spedizione", "shipping_state", "Provincia di spedizione", _s20_33, "Codice Postale di spedizione", _s16_103, "Paese di spedizione", _s16_105, "Via di fatturazione", _s16_106, "App/scala di fatturazione", "billing_city", "Citt\xe0 di fatturazione", "billing_state", "Stato/Provincia di fatturazione", _s19_19, "Codice postale di fatturazione", "billing_country", "Paese fatturazione", "client_id", "Id Cliente", "assigned_to", "Assegnato a", "created_by", "Creato da :name", "assigned_to_id", "Assegnato all'ID", "created_by_id", "Creato dall'ID", "add_column", "Aggiungi Colonna", "edit_columns", "Modifica Colonne", "columns", "Colonne", "aging", "Aging", "profit_and_loss", "Utile e Perdite", "reports", "Rapporti", "report", "Report", "add_company", "Aggiungi azienda", "unpaid_invoice", "Fattura non pagata", "paid_invoice", "Fattura pagata", _s16_107, "Preventivi non approvati", "help", "Aiuto", "refund", "Rimborso", "refund_date", "Data di rimborso", "filtered_by", "Filtrato per", "contact_email", "Contact Email", "multiselect", "Multi-selezione", "entity_state", "State", "verify_password", "Verifica Password", "applied", "Applicato", _s21_35, _s35_6, _s30_4, _s63_, "message", "Messaggio", "from", "Da", _s20_35, "Mostra i dettagli del prodotto", _s25_20, "Includi la descrizione ed il costo nel menu a tendina del prodotto", _s20_37, "Il generatore di PDF richiede :version", _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, "Configura Impostazioni", "support_forum", "Forum di supporto", "about", "Info", "documentation", "Documentazione", "contact_us", "Contattaci", "subtotal", "Subtotale", "line_total", "Totale Riga", "item", "Articolo", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "URL dominio", _s21_36, "La password \xe8 troppo corta", _s20_38, "La password deve contenere una maiuscola ed un numero", _s19_21, "Attivit\xe0 del portale clienti", _s23_15, "Pannello di Controllo Portale Clienti", _s20_39, "Per favore inserisci un valore", "deleted_logo", "Logo eliminato con successo", "yes", "Si", "no", "No", "generate_number", "Genera numero", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Seleziona azienda", "float", "Float", "collapse", "Collapse", "show_or_hide", "Mostra/nascondi", "menu_sidebar", "Menu Sidebar", "history_sidebar", "Barra laterale storico", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Vedi", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Mostra Costo", _s17_66, "Mostra costo prodotto", "show_cost_help", "Mostra un campo costo prodotto per tracciare il markup/profitto", _s21_37, "Mostra quantit\xe0 prodotto", _s26_15, "Mostra un campo quantit\xe0 prodotto, altrimenti imposta di default a 1", _s21_39, "Mostra quantit\xe0 fattura", _s26_16, "Mostra un campo per la quantit\xe0 degli articoli sulla riga, altrimenti imposta a uno", _s21_41, "Mostra sconto prodotto", _s26_17, "Mostra un campo sconto articolo sulla riga", _s16_109, _s16_110, _s21_43, "Imposta automaticamente la quantit\xe0 dell'elemento nella riga ad uno", "one_tax_rate", "Una aliquota", "two_tax_rates", "Due aliquote", "three_tax_rates", "Tre aliquote", _s16_111, "Aliquota di default", "user", "User", "invoice_tax", "Tassa fattura", "line_item_tax", "Riga imposta articolo", "inclusive_taxes", "Tasse inclusive", _s17_68, "Aliquote della fattura", "item_tax_rates", "Tassi d'imposta articolo", _s18_52, "Per favore seleziona un cliente", "configure_rates", "Configura aliquote", _s18_53, _s18_54, "tax_settings", "Impostazioni tasse", _s18_55, _s16_259, "accent_color", "Accent Color", "switch", "Cambia", _s19_23, "Lista separata da virgole", "options", "Opzioni", _s16_113, "Testo a riga singola", "multi_line_text", "Testo multi-riga", "dropdown", "Menu a discesa", "field_type", "Tipo di campo", _s27_22, "Una mail di recupero password \xe8 stata inviata", "submit", "Invia", _s16_115, "Recupera password", "late_fees", "Late Fees", "credit_number", "Numero Credito", "payment_number", "Numero di pagamento", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", "Prima della data di scadenza", "after_due_date", _s18_56, _s18_57, "Dopo la data della fattura", "days", "Giorni", "invoice_email", "Email Fattura", "payment_email", "Email Pagamento", "partial_payment", "Pagamento parziale", "payment_partial", "Partial Payment", _s21_44, "Email di pagamento parziale", "quote_email", "Email Preventivo", _s16_118, _s16_119, _s16_120, "Filtrato per utente", "administrator", "Administrator", _s18_58, "Permettere all'utente di gestire gli utenti, cambiare le impostazioni e modificare tutti i record", "user_management", "Gestione utente", "users", "Utenti", "new_user", "New User", "edit_user", "Modifca Utente", "created_user", "Utente creato con successo", "updated_user", "Utente aggiornato con successo", "archived_user", _s26_18, "deleted_user", "Utente eliminato con successo", "removed_user", "Utente rimosso con successo", "restored_user", "Utente ripristinato con successo", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Impostazioni generali", "invoice_options", "Opzioni Fattura", _s17_70, "Nascondi la data di pagamento", _s22_27, 'Visualizza l\'area "Pagato alla data" sulle fatture solo dopo aver ricevuto un pagamento.', _s23_17, "Embed Documents", _s28_15, "Includi immagini allegate alla fattura.", _s16_124, "Mostra l'Intestazione nel", _s16_125, "Visualizza Pi\xe8 di Pagina nel", "first_page", "Prima pagina", "all_pages", "Tutte le pagine", "last_page", "Ultima pagina", "primary_font", "Font primario", "secondary_font", "Font secondario", "primary_color", "Colore primario", "secondary_color", "Colore secondario", "page_size", "Dimensione Pagina", "font_size", "Dimensione Font", "quote_design", "Stile Preventivo", "invoice_fields", "Campi Fattura", "product_fields", "Campi Prodotto", "invoice_terms", "Termini della fattura", "invoice_footer", "Pi\xe8 di Pagina Fattura", "quote_terms", "Termini del preventivo", "quote_footer", "Pi\xe8 di Pagina Preventivi", _s18_59, "Auto Email", _s23_18, "Invia automaticamente per email le fatture ricorrenti quando vengono create.", _s20_42, _s18_136, _s25_26, "Archivia automaticamente le fatture quando vengono pagate.", _s18_60, _s18_136, _s23_19, _s53_1, _s18_61, "Conversione automatica", _s23_20, "Converti automaticamente un preventivo in una fattura se approvato da un cliente.", _s17_72, "Impostazioni Flusso di Lavoro", "freq_daily", "Giornaliero", "freq_weekly", "Settimanale", "freq_two_weeks", "Due settimane", "freq_four_weeks", "Quattro settimane", "freq_monthly", "Mensile", "freq_two_months", "Due mesi", _s17_74, "Tre Mesi", _s16_126, "Quattro mesi", "freq_six_months", "Sei Mesi", "freq_annually", "Annuale", "freq_two_years", "Due anni", _s16_127, "Tre anni", "never", "Never", "company", "Azienda", _s17_75, "Generazione Numeri", "charge_taxes", "Applica Tasse", "next_reset", "Prossimo reset", "reset_counter", "Resetta contatori", _s16_128, "Prefisso Ricorrente", "number_padding", "Number Padding", "general", "Generale", "surcharge_field", "Campo Sovrattassa", "company_field", "Campo azienda", "company_value", "Valore azienda", "credit_field", "Campo Credito", "invoice_field", "Campo fattura", _s17_77, "Sovrapprezzo Fattura", "client_field", "Campo Cliente", "product_field", "Campo Prodotto", "payment_field", "Campo Pagamento", "contact_field", "Campo Contatti", "vendor_field", "Campo Fornitore", "expense_field", "Campo Spese", "project_field", "Campo Progetto", "task_field", "Campo attivit\xe0", "group_field", "Campo Gruppo", "number_counter", "Number Counter", "prefix", "Prefisso", "number_pattern", "Pattern numerico", "messages", "Messaggi", "custom_css", "CSS Personalizzato", _s17_79, "Javascript personalizzato", _s16_130, "Mostra su PDF", _s21_46, "Mostra la firma del cliente sul PDF della fattura/preventivo.", _s25_27, "Casella di controllo termini di servizio fatture", _s30_5, "Rendi obbligatoria l'accettazione dei termini della fattura.", _s23_21, "Casella di controllo termini di servizio preventivi", _s28_16, "Rendi obbligatoria l'accettazione dei termini del preventivo.", _s25_28, "Firma Fattura", _s30_6, "Richiedi al cliente di firmare la fattura.", _s23_22, "Firma Bozza", _s22_29, "Fatture Protette da Password", _s27_23, "Permette di impostare una password per ogni contatto. Se una password \xe8 impostata, al contatto sar\xe0 richiesto di inserire una password prima di visualizzare le fatture.", "authorization", "Autorizzazione", "subdomain", "Sottodominio", "domain", "Dominio", "portal_mode", "Modalit\xe0 portale", "email_signature", "Distinti saluti,", _s24_21, "Rendi pi\xf9 facile per i tuoi clienti pagarti aggiungendo il markup schema.org alle tue e-mail.", "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Allega PDF", _s16_131, "Allega documenti", "attach_ubl", "Allega UBL", "email_style", "Stile Email", _s19_25, "Enable Markup", "reply_to_email", "Indirizzo di Risposta mail", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processato", "credit_card", "Carta di Credito", "bank_transfer", "Bonifico Bancario", "priority", "Priorit\xe0", "fee_amount", "Importo della tassa", "fee_percent", "Tassa Percentuale", "fee_cap", "Tassa massima", "limits_and_fees", "Limits/Fees", "enable_min", "Attiva minimo", "enable_max", "Attiva massimo", "min_limit", "Minimo :min", "max_limit", "Massimo :max", "min", "Min", "max", "ax", _s19_26, "Loghi carte accettate", "credentials", "Credenziali", "update_address", "Aggiorna indirizzo", _s19_28, "Aggiorna l'indirizzo del cliente con i dettagli forniti", "rate", "Aliquota", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Modifica aliquota fiscale", _s16_133, "Aliquota fiscale creata", _s16_134, "Aliquota fiscale aggiornata", _s17_82, _s34_16, _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Riempimento automatico prodotti", _s18_64, "Selezionare un prodotto far\xe0 automaticamente inserire la descrizione ed il costo", "update_products", "Aggiorna automaticamente i prodotti", _s20_44, "Aggiornare una fatura far\xe0 automaticamente aggiornare i prodotti", _s16_136, "Converti prodotti", _s21_47, "Converti automaticamenti i prezzi dei prodotti nella valuta del cliente", "fees", "Commissioni", "limits", "Limiti", "provider", "Provider", "company_gateway", "Piattaforma di Pagamento", _s16_138, "Piattaforme di Pagamento", _s19_29, "Nuova Piattaforma", _s20_45, "Modifica Piattaforma", _s23_23, "Piattaforma creata con successo", _s23_24, "Piattaforma aggiornata con successo", _s24_22, "Piattaforma archiviata con successo", _s23_25, "Piattaforma eliminata con successo", _s24_23, "Piattaforma ripristinata con successo", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Continua la modifica", "discard_changes", "Scarta modifiche", "default_value", "Valore di default", "disabled", "Disabled", "currency_format", "Formato moneta", _s21_48, "Primo giorno della settimana", _s23_26, "Primo mese dell'anno", "sunday", "Domenica", "monday", "Luned\xec", "tuesday", "Marted\xec", "wednesday", "Mercoled\xec", "thursday", "Gioved\xec", "friday", "Venerd\xec", "saturday", "Sabato", "january", "Gennaio", "february", "Febbraio", "march", "Marzo", "april", "Aprile", "may", "Maggio", "june", "Giugno", "july", "Luglio", "august", "Agosto", "september", "Settembre", "october", "Ottobre", "november", "Novembre", "december", "Dicembre", "symbol", "Simbolo", "ocde", "Codice", "date_format", "Formato data", "datetime_format", "Formato data e ora", "military_time", "24 ore", _s18_65, "Formato 24 ore", "send_reminders", "Send Reminders", "timezone", "Fuso Orario", _s19_30, _s19_31, _s17_85, "Filtrato per gruppo", _s19_32, "Filtrare per fattura", _s18_66, "Filtrato per cliente", _s18_68, "Filtrato per fornitore", "group_settings", "Impostazioni gruppo", "group", "Gruppo", "groups", "Gruppi", "new_group", "Nuovo gruppo", "edit_group", "Modifica gruppo", "created_group", "Gruppo creato con successo", "updated_group", "Gruppo aggiornato con successo", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Carica logo", "uploaded_logo", "Logo caricato con successo", "logo", "Logo", "saved_settings", "Impostazioni salvate con successo", _s16_142, "Preferenze Prodotti", "device_settings", "Impostazioni dispositivo", "defaults", "Predefiniti", "basic_settings", "Impostazioni Base", _s17_87, "Impostazioni Avanzate", "company_details", "Dettagli Azienda", "user_details", "Dettagli Utente", "localization", "Linguaggio", "online_payments", "Pagamenti Online", "tax_rates", _s16_259, "notifications", "Notifiche", "import_export", "Importa/Esporta", "custom_fields", "Campi Personalizzabili", "invoice_design", "Stile Fattura", "buy_now_buttons", "Puslanti Compra Ora", "email_settings", "Impostazioni email", _s23_28, "Modelli & Promemoria", _s22_30, "Carte di credito & banche", _s19_34, "Visualizzazioni dei dati", "price", "Prezzo", "email_sign_up", "Registrati via Email", "google_sign_up", "Registrati con Google", _s27_25, _s28_20, "redeem", "Redeem", "back", "Indietro", "past_purchases", "Acquisti passati", _s19_36, "Abbonamento Annuale", "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count utenti", "upgrade", "Aggiorna", _s25_32, _s28_71, _s24_25, "Si prega di inserire un cognome", _s33_14, "Si prega di accettare i termini di servizio e della privacy per creare un account.", "i_agree_to_the", "Accetto la", _s21_79, "Termini di servizio", _s19_54, "privacy policy", _s16_144, "Termini di Servizio", "privacy_policy", "Privacy Policy", "sign_up", "Registrati", "account_login", "Login account", "view_website", "Visualizza sito web", "create_account", "Crea un account", "email_login", "Login email", "create_new", "Crea Nuovo", _s18_70, "Nessun dato selezionato", _s21_51, _s34_13, "download", "Scarica", _s27_26, _s27_44, "take_picture", "Fai foto", "upload_file", "Carica file", "document", "Documento", "documents", "Documenti", "new_document", "Nuovo documento", "edit_document", "Modifica documento", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "Nessuno Storico", "expense_date", "Data Spesa", "pending", "In attesa", _s16_148, "Registrato", _s16_149, "In attesa", _s16_150, "Fatturata", "converted", "Convertito", _s24_27, "Aggiungere documenti a fattura", "exchange_rate", "Tasso di Cambio", _s16_151, "Converti valuta", "mark_paid", "Segna come Pagata", "category", "Categoria", "address", "Indirizzo", "new_vendor", "Nuovo Fornitore", "created_vendor", "Fornitore creato con successo", "updated_vendor", "Fornitore aggiornato con successo", "archived_vendor", "Fornitore archiviato con successo", "deleted_vendor", "Fornitore eliminato con successo", "restored_vendor", _s28_22, _s16_152, ":count fornitori archiviati con successo", "deleted_vendors", ":count fornitori eliminati con successo", _s16_153, "Ripristinati con successo :value fornitori", "new_expense", "Inserisci spesa", "created_expense", "Spesa creata con successo", "updated_expense", "Spesa aggiornata con successo", _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s29_44, _s17_94, _s37_9, "copy_shipping", "Copia Spedizione", "copy_billing", "Copia Fatturazione", "design", "Stile", _s21_52, "Impossibile trovare dati", "invoiced", "Fatturato", "logged", "Registrato", "running", "In corso", "resume", "Riprendi", "task_errors", "Si prega di correggere eventuali tempi di sovrapposizione", "start", "Inizia", "stop", "Ferma", "started_task", "Attivit\xe0 iniziata con successo", "stopped_task", "Attivit\xe0 arrestata con successo", "resumed_task", "Attivit\xe0 ripresa con sucesso", "now", "Adesso", _s16_157, "Partenza automaticha delle attivit\xe0", "timer", "Timer", "manual", "Manuale", "budgeted", "Preventivato", "start_time", "Tempo di inizio", "end_time", "Tempo di fine", "date", "Data", "times", "Tempi", "duration", "Durata", "new_task", "Nuova Attivit\xe0", "created_task", "Attivit\xe0 creata con successo", "updated_task", "Attivit\xe0 aggiornata con successo", "archived_task", "Attivit\xe0 archiviata con successo", "deleted_task", "Attivit\xe0 cancellata con successo", "restored_task", "Attivit\xe0 ripristinata con successo", "archived_tasks", ":count attivit\xe0 archiviate correttamente", "deleted_tasks", ":count attivit\xe0 eliminate correttamente", "restored_tasks", _s34_14, _s19_38, _s28_71, "budgeted_hours", "Ore preventivate", "created_project", "Progetto creato con successo", "updated_project", "Progetto aggiornato con successo", _s16_159, "Progetto archiviato con successo", "deleted_project", "Progetto eliminato con successo", _s16_160, "Progetto ripristinato con successo", _s17_95, ":count progetti archiviati con successo", _s16_161, ":count progetti eliminati con successo", _s17_96, _s37_10, "new_project", "Nuovo Progetto", _s27_30, "Grazie di avere scelto la nostra app!", "if_you_like_it", _s21_54, "click_here", "clicca qui", _s18_74, "Clicca qui", "to_rate_it", "to rate it.", "average", "Media", "unapproved", "non approvato", _s30_11, "Si prega di autenticarsi per cambiare questa impostazione", "locked", "Bloccato", "authenticate", "Autentica", _s19_40, "Si prega di autenticarsi", _s24_28, _s24_29, "footer", "Pi\xe8 di Pagina", "compare", "Compara", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Oggi", "custom_range", "Intervallo personalizzato", "date_range", "Intervallo di Tempo", "current", "Corrente", "previous", "Precedente", "current_period", "Periodo corrente", _s17_98, "Periodo di comparazione", "previous_period", "Periodo precedente", "previous_year", "Anno precedente", "compare_to", "Compara a", "last7_days", "Ultimi 7 giorni", "last_week", "L'ultima settimana", "last30_days", "Ultimi 30 giorni", "this_month", "Questo mese", "last_month", "Mese scorso", "this_year", "Quest'anno", "last_year", "Anno scorso", "custom", "Personalizzato", _s16_162, "Clona a fattura", "clone_to_quote", "Clona su preventivo", "clone_to_credit", "Clona su credito", "view_invoice", "Vedi Fattura", "convert", "Convertire", "more", "Altro", "edit_client", "Modifica Cliente", "edit_product", "Modifica Prodotto", "edit_invoice", "Modifica Fattura", "edit_quote", "Modifica Preventivo", "edit_payment", "Modifica pagamento", "edit_task", "Modifica l'attivit\xe0", "edit_expense", "Modifica Spesa", "edit_vendor", "Modifica Fornitore", "edit_project", "Modifica Progetto", _s22_, "Modifica Spesa Ricorrente", _s20_47, "Modifica Preventivo Ricorrente", "billing_address", "Indirizzo di fatturazione", _s16_164, "Indirizzo di spedizione", "total_revenue", "Ricavo totale", "average_invoice", "Fattura media", "outstanding", "Inevase", "invoices_sent", ":count fatture inviate", "active_clients", "clienti attivi", "close", "Close", "email", "Email", "password", "Password", "url", "URL", "secret", "Segreta", "name", "Nome", "logout", "Esci", "login", "Login", "filter", "Filtra", "sort", "Ordina", "search", "Cerca", "active", "Attivo", "archived", "Archived", "deleted", "Eliminato", "dashboard", "Pannello di Controllo", "archive", "Archivia", "delete", "Elimina", "restore", "Ripristina", _s16_166, "Aggiornamento completi", _s23_29, "Inserisci la tua email", _s26_25, "Si prega di inserire la password", _s21_55, "Inserisci il tuo URL", _s26_27, "Inserire una chiave prodotto", "ascending", "Crescente", "descending", "Decrescente", "save", "Salva", _s17_100, _s17_101, "paid_to_date", "Pagato a oggi", "balance_due", "Totale da Pagare", "balance", "Bilancio", "overview", "Panoramica", "details", "Dettagli", "phone", "Telefono", "website", "Sito web", "vat_number", "Partita IVA", "id_number", "Codice Fiscale", "create", "Crea", _s19_42, _s30_12, "error", "Errore", _s16_168, "Esecuzione non riuscita", "contacts", "Contatti", "additional", "Aggiuntivo", "first_name", "Nome", "last_name", "Cognome", "add_contact", "Aggiungi contatto", "are_you_sure", "Sei sicuro?", "cancel", "Annulla", "ok", "Ok", "remove", "Elimina", _s16_170, "Email non valida", "product", "Prodotto", "products", "Prodotti", "new_product", "Nuovo Prodotto", "created_product", "Prodotto creato con successo", "updated_product", "Prodotto aggiornato con successo", _s16_172, "Prodotto archiviato con successo", "deleted_product", "Prodotto eliminato con successo", _s16_173, "Prodotto ripristinato con successo", _s17_102, "Archiviati con successo :count prodotti", _s16_174, ":count prodotti eliminati con successo", _s17_103, "Ripristinati con successo :value prodotti", "product_key", "Prodotto", "notes", "Note", "cost", "Cost", "client", "Cliente", "clients", "Clienti", "new_client", "Nuovo Cliente", "created_client", "Cliente creato con successo", "updated_client", "Cliente aggiornato con successo", "archived_client", "Cliente archiviato con successo", _s16_175, ":count clienti archiviati con successo", "deleted_client", "Cliente eliminato con successo", "deleted_clients", ":count clienti eliminati con successo", "restored_client", "Cliente ripristinato con successo", _s16_176, _s36_7, "address1", "Via", "address2", "Appartamento/Piano", "city", "Citt\xe0", "state", "Stato/Provincia", "postal_code", "Codice postale", "country", "Paese", "invoice", "Fattura", "invoices", "Fatture", "new_invoice", "Nuova Fattura", "created_invoice", "Fattura creata con successo", "updated_invoice", "Fattura aggiornata con successo", _s16_177, "Fattura archiviata con successo", "deleted_invoice", "Fattura eliminata con successo", _s16_178, "Fattura ripristinata con successo", _s17_104, ":count fatture archiviate con successo", _s16_179, ":count fatture eliminate con successo", _s17_105, "Ripristinato con successo :value fatture", "emailed_invoice", "Fattura inviata con successo", "emailed_payment", _s28_53, "amount", "Importo", "invoice_number", "Numero Fattura", "invoice_date", "Data Fattura", "discount", "Sconto", "po_number", "Numero d'ordine d'acquisto", "terms", "Termini", "public_notes", "Note Pubbliche (Descrizione in fattura)", "private_notes", "Note Personali", "frequency", "Frequenza", "start_date", "Data Inizio", "end_date", "Data Fine", "quote_number", "Numero Preventivo", "quote_date", "Data Preventivo", "valid_until", "Valido fino a", "items", "Articoli", "partial_deposit", _s17_150, "description", "Descrizione", "unit_cost", "Costo Unitario", "quantity", "Quantit\xe0", "add_item", "Aggiungi Articolo", "contact", "Contatto", "work_phone", "Telefono", "total_amount", "Ammontare Totale", "pdf", "PDF", "due_date", "Scadenza", _s16_180, _s16_181, "status", "Stato", _s17_106, "Stato della fattura", "quote_status", "Stato preventivo", _s22_31, "Clicca su + per aggiungere un articolo", _s22_33, "Premi + per aggiungere tempo", "count_selected", ":count selected", "total", "Totale", "percent", "Percentuale", "edit", "Modifica", "dismiss", "Chiudi", _s20_49, "Selezionate una data per favore", _s22_34, "Seleziona un cliente", _s24_30, "Selezionate una fattura per favore", "task_rate", "Tariffa per le attivit\xe0", "settings", "Impostazioni", "language", "Linguaggio", "currency", "Valuta", "created_at", "Data Creazione", "created_on", "Creato il", "updated_at", "Aggiornato", "tax", "Tassa", _s30_13, "Si prega di inserire un numero di fattura", _s27_34, "Inserisci un numero preventivo", "past_due", "Scaduta", "draft", "Bozza", "sent", "Inviato", "viewed", "Visto", "approved", "Approvato", "partial", _s17_150, "paid", "Pagata", "mark_sent", "Contrassegna come inviato", _s22_36, _s48_2, _s22_37, _s48_2, _s23_31, _s48_3, _s23_32, _s48_3, "done", "Fatto", _s37_13, "Si prega di inserire un cliente o nome del contatto", "dark_mode", "Modalit\xe0 scura", _s27_36, "Riavviare la app per applicare il cambiamento", "refresh_data", "Aggiorna dati", "blank_contact", "Svuota Contatti", "activity", "Attivit\xe0", _s16_182, "Nessun dato trovato", "clone", "Clona", "loading", "Caricando", "industry", "Industria", "size", "Dimensione", "payment_terms", _s20_93, "payment_date", "Data Pagamento", "payment_status", "Stato del pagamento", _s16_184, "In attesa", _s16_185, "Annullato", _s16_186, "Fallito", _s16_187, "Completato", _s16_188, _s23_50, _s16_189, "Rimborsato", _s17_107, "Non applicato", _s17_108, _s19_6, "net", "Netto", "client_portal", "Portale Clienti", "show_tasks", "Mostra attivit\xe0", "email_reminders", "Email Reminders", "enabled", "Abilitato", "recipients", "Destinatari", "initial_email", "Email iniziale", "first_reminder", "Primo Promemoria", "second_reminder", "Secondo Promemoria", "third_reminder", "Terzo Promemoria", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Modello", "send", "Invia", "subject", "Oggetto", "body", "Corpo", "send_email", "Invia Email", "email_receipt", "Invia ricevuta di pagamento al cliente", "auto_billing", _s23_51, "button", "Pulsante", "preview", "Preview", "customize", "Personalizza", "history", "Storico", "payment", "Pagamento", "payments", "Pagamenti", "refunded", "Rimborsato", "payment_type", _s17_149, _s21_57, "Riferimento Transazione", "enter_payment", "Inserisci Pagamento", "new_payment", "Inserisci il pagamento", "created_payment", "Pagamento creato con successo", "updated_payment", "Pagamento aggiornato con successo", _s16_190, "Pagamento archiviato con successo", "deleted_payment", "Pagamenti eliminati con successo", _s16_191, "Pagamento ripristinato con successo", _s17_109, ":count pagamenti archiviati con successo", _s16_192, ":count pagamenti eliminati con successo", _s17_110, _s37_15, "quote", "Preventivo", "quotes", "Preventivi", "new_quote", "Nuovo Preventivo", "created_quote", "Preventivo creato con successo", "updated_quote", "Preventivo aggiornato con successo", "archived_quote", "Preventivo archiviato con successo", "deleted_quote", "Preventivo cancellato con successo", "restored_quote", "Preventivo ripristinato con successo", "archived_quotes", "Sono stati archiviati :count preventivi con successo", "deleted_quotes", "Sono stati cancellati :count preventivi con successo", "restored_quotes", _s35_13, "expense", "Spesa", "expenses", "Spese", "vendor", "Fornitore", "vendors", "Fornitori", "task", "Attivit\xe0", "tasks", "Attivit\xe0", "project", "Progetto", "projects", "Progetti", "activity_1", ":user ha creato il cliente :client", "activity_2", ":user ha archiviato il cliente :client", "activity_3", ":user ha cancellato il cliente :client", "activity_4", ":user ha creato la fattura :invoice", "activity_5", ":user ha aggiornato la fattura :invoice", "activity_6", ":user ha inviato per email la fattura :invoice per:client a :contact", "activity_7", ":contact ha visualizzato la fattura :invoice per :client", "activity_8", ":user ha archiviato la fattura :invoice", "activity_9", _s39_8, "activity_10", ":contact ha registrato il pagamento :payment di :payment_amount sulla fattura :invoice per :client", "activity_11", ":user ha aggiornato il pagamento :payment", "activity_12", ":user ha archiviato il pagamento :payment", "activity_13", ":user ha cancellato il pagamento :payment", "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", ":user ha inviato per email il preventivo :quote per :client a :contact", "activity_21", ":contact ha visto il preventivo :quote", "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", ":user ha ripristinato il cliente :client", "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", ":contact ha approvato il preventivo :quote per :client", "activity_30", "L'utente :user ha creato il fornitore :vendor", "activity_31", "L'utente :user ha archiviato il fornitore :vendor", "activity_32", "L'utente :user ha eliminato il fornitore :vendor", "activity_33", "L'utente :user ha ripristinato il fornitore :vendor", "activity_34", "L'utente :user ha creato la spesa :expense", "activity_35", "L'utente :user ha archiviato la spesa :expense", "activity_36", "L'utente :user ha eliminato la spesa :expense", "activity_37", "L'utente :user ha ripristinato la spesa :expense", "activity_39", ":user ha annullato un pagamento :payment da :payment_amount", "activity_40", ":user ha rimborsato :adjustment di un pagamento :payment da :payment_amount", "activity_41", "pagamento di :payment_amount (:payment) fallito", "activity_42", "L'utente :user ha creato l'attivit\xe0 :task", "activity_43", "L'utente :user ha aggiornato l'attivit\xe0 :task", "activity_44", "L'utente :user ha archiviato l'attivit\xe0 :task", "activity_45", "L'utente :user ha eliminato l'attivit\xe0 :task", "activity_46", "L'utente :user ha ripristinato l'attivit\xe0 :task", "activity_47", "L'utente :user ha aggiornato la spesa :expense", "activity_48", ":user ha aggiornato il ticket :ticket", "activity_49", ":user ha chiuso il ticket :ticket", "activity_50", ":user ha unito il ticket :ticket", "activity_51", ":user ha separato il ticket :ticket", "activity_52", ":contact ha aperto il ticket :ticket", "activity_53", ":contact ha riaperto il ticket :ticket", "activity_54", ":user ha riaperto il ticket :ticket", "activity_55", ":contact ha risposto al ticket :ticket", "activity_56", ":user ha visualizzato il ticket :ticket", "activity_57", "Il sistema non \xe8 riuscito a inviare la fattura :invoice via e-mail", "activity_58", ":user ha stornato la fattura :invoice", "activity_59", _s39_8, "activity_60", ":contact ha visualizzato il preventivo :quote", "activity_61", ":user ha aggiornato il cliente :client", "activity_62", ":user ha aggiornato il fornitore :vendor", "activity_63", ":user ha inviato il primo promemoria per la fattura :invoice a :contact", "activity_64", ":user ha inviato un secondo promemoria per la fattura :invoice a :contact", "activity_65", ":user ha inviato il terzo promemoria per la fattura :invoice a :contact", "activity_66", ":user ha inviato un promemoria ricorrente per la fattura :invoice a :contact", "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Password a uso singolo", "emailed_quote", "Preventivo inviato con successo", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Scaduto", "all", "Tutti", "select", "Seleziona", _s22_38, _s22_39, "custom_value1", _s21_95, "custom_value2", _s21_95, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, "Messaggio Pannello di Controllo Personalizzato", _s29_31, "Messaggio personalizzato su fattura non pagata", _s27_41, "Messaggio personalizzato fattura pagata", _s31_10, _s31_11, "lock_invoices", "Blocca fatture", "translations", "Traduzioni", _s19_43, "Pattern numero attivit\xe0", _s19_45, "Contatore numero attivit\xe0", _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, "Pattern numerazione fatture", _s22_50, "Contatore numerazione fatture", _s20_52, _s20_53, _s20_54, "Contatore numerazione preventivi", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, "Contatore condiviso fatture/preventivi", _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, "Oggetto della fattura e-mail", _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, "Oggetto e-mail pagamento parziale", "show_table", "Mostra Tabella", "show_list", "Mostra Lista", "client_city", "Citt\xe0 cliente", "client_state", "Stato cliente", "client_country", "Paese cliente", _s16_193, "Il cliente \xe8 attivo", "client_balance", "Bilancio cliente", "client_address1", "Via del cliente", "client_address2", "Appartamento/Scala del cliente", "vendor_address1", "Via Fornitore", "vendor_address2", "Scala/Appartamento Fornitore", _s24_37, "Via spedizione cliente", _s24_38, "Appartametno/Scala spedizione cliente", "type", "Tipo", "invoice_amount", "Importo Fattura", _s16_197, "Scadenza fattura", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", _s23_51, "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Tasse Personalizzate 1", "custom_taxes2", "Tasse Personalizzate 2", "custom_taxes3", "Tasse Personalizzate 3", "custom_taxes4", "Tasse Personalizzate 4", _s17_113, _s28_67, _s17_114, _s28_68, _s17_115, _s28_69, _s17_116, _s28_70, "is_deleted", "\xc8 cancellato", "vendor_city", "Citt\xe0 Fornitore", "vendor_state", "Stato Fornitore", "vendor_country", "Paese fornitore", "is_approved", "\xc8 approvato", "tax_name", "Nome Tassa", "tax_amount", "Tax Amount", "tax_paid", "`Tassa pagata", "payment_amount", "Importo Pagamento", "age", "Et\xe0", "is_running", "Is Running", "time_log", "Log temporale", "bank_id", "Banca", _s19_49, "ID della categoria di spesa", _s16_198, "Categoria Spesa", _s19_51, "ID Valuta Fattura", "tax_name1", "Nome tassa 1", "tax_name2", "Nome tassa 2", "tax_name3", "Tax Name 3", "transaction_id", "ID transazione", "color_theme", "Color Theme"], t1, t1), "ja", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u6709\u52b9", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u3042\u306a\u305f\u81ea\u8eab\u306eWeb\u30b5\u30a4\u30c8\u3067\u8acb\u6c42\u66f8\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3\u3092\u8a2d\u5b9a", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, "2\u8981\u7d20\u8a8d\u8a3c\u304c\u6709\u52b9\u5316\u3055\u308c\u307e\u3057\u305f", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "2\u8981\u7d20\u8a8d\u8a3c", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\u7528\u30e1\u30fc\u30eb\u304c\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f", _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "\u8acb\u6c42\u66f8\u306b\u5909\u63db", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Invoice Task", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u96a0\u3059", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u30ab\u30e9\u30e0", "sample", "\u30b5\u30f3\u30d7\u30eb", "map_to", "Map To", "import", "\u30a4\u30f3\u30dd\u30fc\u30c8", _s25_1, _s29_1, "select_file", "\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", _s16_32, _s16_33, "csv_file", "CSV\u30d5\u30a1\u30a4\u30eb", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u672a\u6255\u3044", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, "\u9001\u4fe1\u6e08\u8acb\u6c42\u66f8\u306f\u30ed\u30c3\u30af\u3055\u308c\u307e\u3057\u305f", _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "\u8acb\u6c42\u5408\u8a08", "quote_total", "\u898b\u7a4d\u91d1\u984d\u5408\u8a08", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "\u7d4c\u8cbb\u756a\u53f7", "task_number", "\u30bf\u30b9\u30af\u756a\u53f7", "project_number", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u756a\u53f7", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u9867\u5ba2\u540d", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "\u5f37\u5236\u7684\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s17_32, _s18_29, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8", _s21_25, _s21_26, _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s25_14, "\u7e70\u308a\u8fd4\u3057\u306e\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc", "token_billing", _s17_130, _s24_17, "Invoice Ninja \u3078\u3088\u3046\u3053\u305d", "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "\u9867\u5ba2\u756a\u53f7", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc1\u9001\u4fe1\u6e08", "reminder2_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc2\u9001\u4fe1\u6e08", "reminder3_sent", "\u30ea\u30de\u30a4\u30f3\u30c0\u30fc3\u9001\u4fe1\u6e08", _s18_33, "\u6700\u7d42\u30ea\u30de\u30a4\u30f3\u30c0\u30fc\u9001\u4fe1\u6e08", "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Statement", "taxes", "\u7a0e", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "To", "health_check", "Health Check", "payment_type_id", "\u5165\u91d1\u65b9\u6cd5", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "\u9867\u5ba2\u3092\u767b\u9332\u3057\u307e\u3057\u305f", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "\u5b8c\u4e86", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u6b21\u56de\u8acb\u6c42", _s17_43, _s17_44, "recent_payments", "\u6700\u8fd1\u306e\u5165\u91d1", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "\u8acb\u6c42\u3092\u65b0\u898f\u4f5c\u6210", "create_quote", "\u898b\u7a4d\u66f8\u3092\u65b0\u898f\u4f5c\u6210", "create_payment", "Create Payment", "create_vendor", "\u65b0\u3057\u3044\u7d0d\u5165\u696d\u8005", "update_quote", "Update Quote", "delete_quote", "\u898b\u7a4d\u66f8\u3092\u524a\u9664", "update_invoice", "Update Invoice", "delete_invoice", "\u8acb\u6c42\u66f8\u3092\u524a\u9664", "update_client", "Update Client", "delete_client", "\u9867\u5ba2\u3092\u524a\u9664", "delete_payment", "\u5165\u91d1\u3092\u524a\u9664", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "\u30bf\u30b9\u30af\u3092\u65b0\u898f\u4f5c\u6210", "update_task", "Update Task", "delete_task", "\u30bf\u30b9\u30af\u3092\u524a\u9664", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u30d5\u30ea\u30fc", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API\u30c8\u30fc\u30af\u30f3", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u30c8\u30fc\u30af\u30f3", "tokens", "\u30c8\u30fc\u30af\u30f3", "new_token", "New Token", "edit_token", "\u30c8\u30fc\u30af\u30f3\u3092\u7de8\u96c6", "created_token", "\u30c8\u30fc\u30af\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002", "updated_token", "\u30c8\u30fc\u30af\u30f3\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_token", "\u30c8\u30fc\u30af\u30f3\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_token", "\u30c8\u30fc\u30af\u30f3\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u8acb\u6c42\u66f8\u3092\u30e1\u30fc\u30eb\u3059\u308b", "email_quote", "\u898b\u7a4d\u66f8\u3092\u30e1\u30fc\u30eb", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3067\u30ed\u30b0\u30a4\u30f3", "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u524d\u53d7\u91d1\u7dcf\u984d", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, "\u6587\u66f8\u306e\u691c\u7d22", "search_designs", "Search Designs", "search_invoices", "\u8acb\u6c42\u66f8\u306e\u691c\u7d22", "search_clients", "\u9867\u5ba2\u306e\u691c\u7d22", "search_products", "\u5546\u54c1\u306e\u691c\u7d22", "search_quotes", "\u898b\u7a4d\u66f8\u306e\u691c\u7d22", "search_credits", "Search Credits", "search_vendors", "\u7d0d\u5165\u696d\u8005\u306e\u691c\u7d22", "search_users", "\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22", _s16_57, "\u7a0e\u7387\u306e\u691c\u7d22", "search_tasks", "\u30bf\u30b9\u30af\u306e\u691c\u7d22", "search_settings", "\u8a2d\u5b9a\u306e\u691c\u7d22", "search_projects", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u691c\u7d22", "search_expenses", "\u7d4c\u8cbb\u306e\u691c\u7d22", "search_payments", "Search Payments", "search_groups", "\u30b0\u30eb\u30fc\u30d7\u306e\u691c\u7d22", "search_company", "\u4f1a\u793e\u306e\u691c\u7d22", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_53, "quote_sent", "\u898b\u7a4d\u66f8\u9001\u4fe1\u6e08", "credit_sent", "\u524d\u53d7\u91d1\u9001\u4fe1\u6e08", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30ad\u30e3\u30f3\u30bb\u30eb", _s22_19, "\u6ce8\u610f: \u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059\u3002\u524a\u9664\u306e\u53d6\u308a\u6d88\u3057\u306f\u51fa\u6765\u307e\u305b\u3093\u3002", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u30d8\u30c3\u30c0", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, "\u7e70\u308a\u8fd4\u3057\u306e\u898b\u7a4d\u66f8", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "\u524d\u53d7\u91d1\u53d7\u65e5\u4ed8", "credit", "\u524d\u53d7\u91d1", "credits", "\u524d\u53d7\u91d1", "new_credit", "\u524d\u53d7\u91d1\u3092\u767b\u9332", "edit_credit", "Edit Credit", "created_credit", "\u524d\u53d7\u91d1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_credit", _s27_19, "archived_credit", "\u524d\u53d7\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_credit", "\u524d\u53d7\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "removed_credit", _s27_21, "restored_credit", "\u524d\u53d7\u91d1\u3092\u5fa9\u65e7\u3057\u307e\u3057\u305f", _s16_71, ":count \u4ef6\u306e\u524d\u53d7\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_credits", ":count \u4ef6\u306e\u524d\u53d7\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_72, _s36_3, "current_version", "\u73fe\u5728\u306e\u30d0\u30fc\u30b8\u30e7\u30f3", "latest_version", "Latest Version", "update_now", "\u4eca\u3059\u3050\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8", _s26_13, "Web\u30a2\u30d7\u30ea\u306e\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059", _s16_73, "\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059", "app_updated", _s29_7, "learn_more", "\u8a73\u7d30\u3092\u898b\u308b", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u65b0\u3057\u3044\u4f1a\u793e", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u30ea\u30bb\u30c3\u30c8", "number", "\u756a\u53f7", "export", "\u30a8\u30af\u30b9\u30dd\u30fc\u30c8", "chart", "\u30c1\u30e3\u30fc\u30c8", "count", "Count", "totals", "Totals", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Group by", "credit_balance", "\u524d\u53d7\u91d1\u6b8b\u9ad8", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "\u30ec\u30dd\u30fc\u30c8", "report", "\u30ec\u30dd\u30fc\u30c8", "add_company", "\u4f1a\u793e\u3092\u8ffd\u52a0", "unpaid_invoice", "\u672a\u6255\u306e\u8acb\u6c42\u66f8", "paid_invoice", "\u652f\u6255\u6e08\u306e\u8acb\u6c42\u66f8", _s16_107, _s16_108, "help", "\u30d8\u30eb\u30d7", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u30e1\u30c3\u30bb\u30fc\u30b8", "from", "From", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "\u5c0f\u8a08", "line_total", "Line Total", "item", "\u30a2\u30a4\u30c6\u30e0", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "\u306f\u3044", "no", "\u3044\u3044\u3048", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "\u30e6\u30fc\u30b6", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "\u7a0e\u306e\u8a2d\u5b9a", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u518d\u8a2d\u5b9a", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "\u8acb\u6c42\u66f8\u30e1\u30fc\u30eb", "payment_email", "\u652f\u6255\u3044\u30e1\u30fc\u30eb", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "\u898b\u7a4d\u66f8\u30e1\u30fc\u30eb", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "\u30e6\u30fc\u30b6\u7ba1\u7406", "users", "\u30e6\u30fc\u30b6\u30fc", "new_user", "\u65b0\u3057\u3044\u30e6\u30fc\u30b6", "edit_user", "\u30e6\u30fc\u30b6\u306e\u7de8\u96c6", "created_user", _s25_22, "updated_user", "\u30e6\u30fc\u30b6\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f", "archived_user", "\u30e6\u30fc\u30b6\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_user", "\u30e6\u30fc\u30b6\u3092\u524a\u9664\u3057\u307e\u3057\u305f", "removed_user", _s25_25, "restored_user", "\u30e6\u30fc\u30b6\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u4e00\u822c\u8a2d\u5b9a", "invoice_options", "\u8acb\u6c42\u66f8\u30aa\u30d7\u30b7\u30e7\u30f3", _s17_70, _s17_71, _s22_27, _s87_, _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show header on", _s16_125, "Show footer on", "first_page", "\u6700\u521d\u306e\u30da\u30fc\u30b8", "all_pages", "\u5168\u3066\u306e\u30da\u30fc\u30b8", "last_page", "\u6700\u5f8c\u306e\u30da\u30fc\u30b8", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u30d7\u30e9\u30a4\u30de\u30ea\u30fb\u30ab\u30e9\u30fc", "secondary_color", "\u30bb\u30ab\u30f3\u30c0\u30ea\u30fb\u30ab\u30e9\u30fc", "page_size", "Page Size", "font_size", "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba", "quote_design", "Quote Design", "invoice_fields", "\u8acb\u6c42\u66f8\u3092\u30d5\u30a3\u30fc\u30eb\u30c9", "product_fields", "Product Fields", "invoice_terms", "\u8acb\u6c42\u6761\u4ef6", "invoice_footer", "\u8acb\u6c42\u66f8\u30d5\u30c3\u30bf\u30fc", "quote_terms", "Quote Terms", "quote_footer", "\u898b\u7a4d\u66f8\u30d5\u30c3\u30bf", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, "\u652f\u6255\u3044\u5b8c\u4e86\u6642\u306b\u8acb\u6c42\u66f8\u3092\u81ea\u52d5\u7684\u306b\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b", _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9", "number_pattern", "Number Pattern", "messages", "\u30e1\u30c3\u30bb\u30fc\u30b8", "custom_css", "\u30ab\u30b9\u30bf\u30e0CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u3069\u3046\u305e\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\u3002", _s24_21, _s86_, "plain", "\u30d7\u30ec\u30fc\u30f3", "light", "\u30e9\u30a4\u30c8", "dark", "\u30c0\u30fc\u30af", "email_design", "E\u30e1\u30fc\u30eb \u30c7\u30b6\u30a4\u30f3", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "\u30de\u30fc\u30af\u30a2\u30c3\u30d7\u3092\u8a31\u53ef\u3059\u308b", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "\u4f4f\u6240\u3092\u66f4\u65b0", _s19_28, _s45_1, "rate", "\u7387", "tax_rate", "\u7a0e\u7387", "new_tax_rate", "\u65b0\u3057\u3044\u7a0e\u7387", "edit_tax_rate", "\u7a0e\u7387\u3092\u7de8\u96c6", _s16_133, "\u7a0e\u7387\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f", _s16_134, "\u7a0e\u7387\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s17_82, "\u7a0e\u7387\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s18_100, _s18_64, _s71_, "update_products", "\u5546\u54c1\u306e\u81ea\u52d5\u66f4\u65b0", _s20_44, _s65_0, _s16_136, "\u5546\u54c1\u306e\u5909\u63db", _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "\u901a\u8ca8\u30d5\u30a9\u30fc\u30de\u30c3\u30c8", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "\u65e5\u66dc\u65e5", "monday", "\u6708\u66dc\u65e5", "tuesday", "\u706b\u66dc\u65e5", "wednesday", "\u6c34\u66dc\u65e5", "thursday", "\u6728\u66dc\u65e5", "friday", "\u91d1\u66dc\u65e5", "saturday", "\u571f\u66dc\u65e5", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Hour Time", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "\u30ed\u30b4", "saved_settings", _s27_24, _s16_142, "\u5546\u54c1\u8a2d\u5b9a", "device_settings", "Device Settings", "defaults", "\u30c7\u30d5\u30a9\u30eb\u30c8", "basic_settings", "Basic Settings", _s17_87, "\u8a73\u7d30\u8a2d\u5b9a", "company_details", "\u4f01\u696d\u60c5\u5831", "user_details", "\u30e6\u30fc\u30b6\u306e\u8a73\u7d30", "localization", "\u5730\u57df\u8a2d\u5b9a", "online_payments", "\u30aa\u30f3\u30e9\u30a4\u30f3\u5165\u91d1", "tax_rates", "\u7a0e\u7387", "notifications", "\u901a\u77e5", "import_export", "\u30a4\u30f3\u30dd\u30fc\u30c8 | \u30a8\u30af\u30b9\u30dd\u30fc\u30c8 | \u30ad\u30e3\u30f3\u30bb\u30eb", "custom_fields", "\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9", "invoice_design", "\u8acb\u6c42\u66f8\u30c7\u30b6\u30a4\u30f3", "buy_now_buttons", "Buy Now Buttons", "email_settings", "E\u30e1\u30fc\u30eb\u8a2d\u5b9a", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, "\u30d3\u30b8\u30e5\u30a2\u30eb\u30c7\u30fc\u30bf", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "\u5229\u7528\u898f\u7d04", "privacy_policy", "Privacy Policy", "sign_up", "\u30b5\u30a4\u30f3\u30a2\u30c3\u30d7", "account_login", "Account Login", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "\u4fdd\u7559", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Converted", _s24_27, _s24_39, "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "\u652f\u6255\u6e08\u306b\u3059\u308b", "category", "Category", "address", "\u4f4f\u6240", "new_vendor", "New Vendor", "created_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_vendor", "\u30d9\u30f3\u30c0\u30fc\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_vendor", _s28_22, _s16_152, ":count \u4ef6\u306e\u7d0d\u5165\u696d\u8005\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_vendors", ":count \u4ef6\u306e\u7d0d\u5165\u696d\u8005\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_153, _s36_5, "new_expense", "Enter Expense", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, "\u7d4c\u8cbb\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u306b\u6210\u529f\u3057\u307e\u3057\u305f", _s16_156, "\u7d4c\u8cbb\u306e\u524a\u9664\u306b\u6210\u529f\u3057\u307e\u3057\u305f", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Invoiced", "logged", "Logged", "running", "Running", "resume", "Resume", "task_errors", _s36_6, "start", "\u30b9\u30bf\u30fc\u30c8", "stop", "\u30b9\u30c8\u30c3\u30d7", "started_task", _s25_34, "stopped_task", "\u30bf\u30b9\u30af\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002", "resumed_task", _s25_36, "now", "Now", _s16_157, _s16_158, "timer", "\u30bf\u30a4\u30de\u30fc", "manual", "Manual", "budgeted", "Budgeted", "start_time", "\u958b\u59cb\u6642\u9593", "end_time", "\u7d42\u4e86\u6642\u9593", "date", "\u65e5\u4ed8", "times", "Times", "duration", "Duration", "new_task", "\u65b0\u3057\u3044\u30bf\u30b9\u30af", "created_task", "\u30bf\u30b9\u30af\u304c\u767b\u9332\u3055\u308c\u307e\u3057\u305f\u3002", "updated_task", "\u30bf\u30b9\u30af\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002", "archived_task", "\u30bf\u30b9\u30af\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_task", "\u30bf\u30b9\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_task", "\u30bf\u30b9\u30af\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_tasks", ":count\u4ef6\u306e\u30bf\u30b9\u30af\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_tasks", ":count\u4ef6\u306e\u30bf\u30b9\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_159, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_project", _s28_28, _s16_160, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s17_95, ":count \u4ef6\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "\u65b0\u3057\u3044\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", _s27_30, "\u5f0a\u793e\u306eApp\u3092\u3054\u5229\u7528\u9802\u304d\u8aa0\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002", "if_you_like_it", _s21_54, "click_here", "\u3053\u3061\u3089\u3092\u30af\u30ea\u30c3\u30af", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "\u5e73\u5747", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "\u30d5\u30c3\u30bf", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "\u30ab\u30b9\u30bf\u30e0", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u8acb\u6c42\u66f8\u3092\u8868\u793a", "convert", "Convert", "more", "More", "edit_client", "\u9867\u5ba2\u3092\u7de8\u96c6", "edit_product", "\u5546\u54c1\u3092\u7de8\u96c6", "edit_invoice", "\u8acb\u6c42\u3092\u7de8\u96c6", "edit_quote", "\u898b\u7a4d\u66f8\u3092\u7de8\u96c6", "edit_payment", "\u652f\u6255\u3044\u3092\u7de8\u96c6", "edit_task", "\u30bf\u30b9\u30af\u3092\u66f4\u65b0", "edit_expense", "Edit Expense", "edit_vendor", "Edit Vendor", "edit_project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u7de8\u96c6", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "\u8acb\u6c42\u5148\u4f4f\u6240", _s16_164, _s16_165, "total_revenue", "Total Revenue", "average_invoice", "\u8acb\u6c42\u306e\u5e73\u5747", "outstanding", "Outstanding", "invoices_sent", _s20_56, "active_clients", "\u6709\u52b9\u306a\u9867\u5ba2", "close", "\u9589\u3058\u308b", "email", "E\u30e1\u30fc\u30eb", "password", "\u30d1\u30b9\u30ef\u30fc\u30c9", "url", "URL", "secret", "Secret", "name", "\u540d\u524d", "logout", "\u30ed\u30b0\u30a2\u30a6\u30c8", "login", "\u30ed\u30b0\u30a4\u30f3", "filter", "\u30d5\u30a3\u30eb\u30bf\u30fc", "sort", "Sort", "search", "\u691c\u7d22", "active", "\u6709\u52b9", "archived", "Archived", "deleted", "Deleted", "dashboard", "\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9", "archive", "\u30a2\u30fc\u30ab\u30a4\u30d6", "delete", "\u524a\u9664", "restore", "\u30ea\u30b9\u30c8\u30a2", _s16_166, "\u66f4\u65b0\u5b8c\u4e86", _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "\u4fdd\u5b58", _s17_100, _s17_101, "paid_to_date", "\u73fe\u5728\u307e\u3067\u306e\u652f\u6255\u6e08\u984d", "balance_due", "Balance Due", "balance", "\u30d0\u30e9\u30f3\u30b9", "overview", "\u6982\u8981", "details", "\u8a73\u7d30", "phone", "\u96fb\u8a71", "website", "WEB\u30b5\u30a4\u30c8", "vat_number", "VAT\u30ca\u30f3\u30d0\u30fc", "id_number", "ID\u30ca\u30f3\u30d0\u30fc", "create", "\u4f5c\u6210", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "\u30b3\u30f3\u30bf\u30af\u30c8", "additional", "Additional", "first_name", "\u540d", "last_name", "\u59d3", "add_contact", "\u9023\u7d61\u5148\u306e\u8ffd\u52a0", "are_you_sure", "\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f", "cancel", "\u30ad\u30e3\u30f3\u30bb\u30eb", "ok", "Ok", "remove", "Remove", _s16_170, "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304c\u7121\u52b9\u3067\u3059", "product", "\u5546\u54c1", "products", "\u5546\u54c1", "new_product", "\u65b0\u3057\u3044\u5546\u54c1", "created_product", "\u5546\u54c1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_product", "\u5546\u54c1\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_172, "\u5546\u54c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, ":count \u500b\u306e\u5546\u54c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_174, ":count \u500b\u306e\u5546\u54c1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_103, _s37_11, "product_key", "Product", "notes", "\u30ce\u30fc\u30c8", "cost", "Cost", "client", "\u9867\u5ba2", "clients", "\u9867\u5ba2", "new_client", "\u65b0\u3057\u3044\u9867\u5ba2", "created_client", "\u9867\u5ba2\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_client", "\u9867\u5ba2\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_client", "\u9867\u5ba2\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_175, ":count \u4ef6\u306e\u9867\u5ba2\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_client", "\u9867\u5ba2\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "deleted_clients", ":count \u770c\u306e\u9867\u5ba2\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_client", "\u9867\u5ba2\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s16_176, _s36_7, "address1", "\u756a\u5730", "address2", "\u5efa\u7269", "city", "\u5e02\u533a\u753a\u6751", "state", "\u90fd\u9053\u5e9c\u770c", "postal_code", "\u90f5\u4fbf\u756a\u53f7", "country", "\u56fd", "invoice", "\u8acb\u6c42\u66f8", "invoices", "\u8acb\u6c42\u66f8", "new_invoice", "\u65b0\u3057\u3044\u8acb\u6c42\u66f8", "created_invoice", "\u8acb\u6c42\u66f8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_invoice", "\u8acb\u6c42\u66f8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", _s16_177, "\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_invoice", "\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_178, "\u8acb\u6c42\u66f8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", _s17_104, ":count \u4ef6\u306e\u8acb\u6c42\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_179, ":count \u4ef6\u306e\u8acb\u6c42\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_105, _s37_12, "emailed_invoice", "\u8acb\u6c42\u66f8\u3092\u30e1\u30fc\u30eb\u3057\u307e\u3057\u305f\u3002", "emailed_payment", _s28_53, "amount", "\u91d1\u984d", "invoice_number", "\u8acb\u6c42\u66f8\u756a\u53f7", "invoice_date", "\u8acb\u6c42\u65e5", "discount", "\u5024\u5f15\u304d", "po_number", "PO\u756a\u53f7", "terms", "\u6761\u9805", "public_notes", "Public Notes", "private_notes", "\u975e\u516c\u958b\u5099\u8003", "frequency", "\u983b\u5ea6", "start_date", "\u958b\u59cb\u65e5", "end_date", "\u7d42\u4e86\u65e5", "quote_number", "\u898b\u7a4d\u66f8\u756a\u53f7", "quote_date", "\u898b\u7a4d\u65e5", "valid_until", "Valid Until", "items", "\u30a2\u30a4\u30c6\u30e0", "partial_deposit", "Partial/Deposit", "description", "\u8aac\u660e", "unit_cost", "\u5358\u4fa1", "quantity", "\u6570\u91cf", "add_item", "\u30a2\u30a4\u30c6\u30e0\u3092\u8ffd\u52a0", "contact", "\u30b3\u30f3\u30bf\u30af\u30c8", "work_phone", "\u96fb\u8a71\u756a\u53f7", "total_amount", "\u5408\u8a08\u91d1\u984d", "pdf", "PDF", "due_date", "\u652f\u6255\u65e5", _s16_180, _s16_181, "status", "\u30b9\u30c6\u30fc\u30bf\u30b9", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "\u5408\u8a08", "percent", "Percent", "edit", "\u7de8\u96c6", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "\u8a2d\u5b9a", "language", "Language", "currency", "\u901a\u8ca8", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u7a0e", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "\u9001\u4fe1\u6e08", "viewed", "Viewed", "approved", "Approved", "partial", "Partial/Deposit", "paid", "\u652f\u6255\u6e08", "mark_sent", "\u9001\u4ed8\u6e08\u307f\u306b\u3059\u308b", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "\u5b8c\u4e86", _s37_13, _s37_14, "dark_mode", "\u30c0\u30fc\u30af\u30e2\u30fc\u30c9", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3", _s16_182, _s16_183, "clone", "\u8907\u88fd", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u652f\u6255\u6761\u4ef6", "payment_date", "\u652f\u6255\u65e5", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "\u5b8c\u4e86", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "\u9867\u5ba2\u30dd\u30fc\u30bf\u30eb", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "\u30b5\u30d6\u30b8\u30a7\u30af\u30c8", "body", "\u672c\u6587", "send_email", "\u30e1\u30fc\u30eb\u3092\u9001\u4fe1", "email_receipt", _s35_12, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "\u30ab\u30b9\u30bf\u30de\u30a4\u30ba", "history", "\u5c65\u6b74", "payment", "Payment", "payments", "\u5165\u91d1", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, _s21_58, "enter_payment", "\u5165\u91d1\u3092\u767b\u9332", "new_payment", "\u5165\u91d1\u3092\u767b\u9332", "created_payment", "\u5165\u91d1\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002", "updated_payment", "\u652f\u6255\u3044\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f", _s16_190, "\u5165\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_payment", "\u5165\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s16_191, _s29_24, _s17_109, ":count \u4ef6\u306e\u5165\u91d1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", _s16_192, ":count \u4ef6\u306e\u5165\u91d1\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", _s17_110, _s37_15, "quote", "\u898b\u7a4d\u66f8", "quotes", "\u898b\u7a4d\u66f8", "new_quote", "\u65b0\u3057\u3044\u898b\u7a4d\u66f8", "created_quote", "\u898b\u7a4d\u66f8\u3092\u65b0\u898f\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "updated_quote", "\u898b\u7a4d\u66f8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002", "archived_quote", "\u898b\u7a4d\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_quote", "\u898b\u7a4d\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_quote", "\u898b\u7a4d\u66f8\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3057\u305f\u3002", "archived_quotes", ":count\u4ef6\u306e\u898b\u7a4d\u66f8\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "deleted_quotes", ":count\u4ef6\u306e\u898b\u7a4d\u66f8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "restored_quotes", _s35_13, "expense", "Expense", "expenses", "\u7d4c\u8cbb", "vendor", "Vendor", "vendors", "\u7d0d\u5165\u696d\u8005", "task", "Task", "tasks", "\u30bf\u30b9\u30af", "project", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", "projects", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8", "activity_1", ":user \u306f \u9867\u5ba2 :client \u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "activity_2", ":user \u306f \u9867\u5ba2 :client \u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3057\u307e\u3057\u305f\u3002", "activity_3", ":user \u306f \u9867\u5ba2 :client \u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002", "activity_4", ":user \u306f \u8acb\u6c42\u66f8 :invoice \u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002", "activity_5", _s32_16, "activity_6", _s54_0, "activity_7", _s44_, "activity_8", _s32_16, "activity_9", _s32_16, "activity_10", _s85_0, "activity_11", _s30_18, "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", _s50_4, "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", _s29_27, "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s30_20, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "\u30ef\u30f3\u30bf\u30a4\u30e0\u30d1\u30b9\u30ef\u30fc\u30c9", "emailed_quote", "\u898b\u7a4d\u66f8\u3092\u30e1\u30fc\u30eb\u3057\u307e\u3057\u305f\u3002", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "\u9078\u629e", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "\u8acb\u6c42\u66f8\u3092\u30ed\u30c3\u30af", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u8acb\u6c42\u66f8\u756a\u53f7\u30ab\u30a6\u30f3\u30bf\u30fc", _s20_52, _s20_53, _s20_54, "\u8acb\u6c42\u66f8\u756a\u53f7\u30ab\u30a6\u30f3\u30bf\u30fc", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "\u30c6\u30fc\u30d6\u30eb\u3092\u8868\u793a", "show_list", "\u30ea\u30b9\u30c8\u3092\u8868\u793a", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "\u652f\u6255\u671f\u65e5", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Bill", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u7a0e\u540d\u79f0", "tax_amount", "Tax Amount", "tax_paid", "\u7a0e\u91d1\u652f\u6255\u6e08", "payment_amount", "\u5165\u91d1\u984d", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u9280\u884c", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "lt", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u012egalinti", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Sauga", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, "S\u0117kmingai \u012fjungta Dviej\u0173-Lygi\u0173 Autentifikacija", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Dviej\u0173-Lygi\u0173 Autentifikacija", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Gr\u0105\u017einti mok\u0117jimai", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, _s18_18, _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "I\u0161ra\u0161yti s\u0105skait\u0105", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Sl\u0117pti", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Stulpelis", "sample", "Pavyzdys", "map_to", "Map To", "import", "Importuoti", _s25_1, _s29_1, "select_file", "Pasirinkite fail\u0105", _s16_32, _s16_33, "csv_file", "Pasirinkti CSV fail\u0105", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Dalinis", "invoice_total", "Suma Viso", "quote_total", "S\u0105matos viso", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Kliento Vardas", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "B\u016btina s\u0105skaita fakt\u016bra", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "Paypal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Debeto s\u0105skaita", _s18_29, "Debeto s\u0105skaitos", _s21_25, "Nauja debeto s\u0105skaita", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Rodyti tinklap\u012f", "copy_link", "Copy Link", "token_billing", _s17_130, _s24_17, _s24_18, "always", "Visada", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "\u012emon\u0117s pavadinimas", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", "Puslapis :current i\u0161 :total", _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Valandos", "statement", "Statement", "taxes", "Mokes\u010diai", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Pirk\u0117jas", "health_check", "Health Check", "payment_type_id", "Mok\u0117jimo tipas", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Naujos s\u0105skaitos", _s17_43, _s17_44, "recent_payments", "Naujausi mok\u0117jimai", "upcoming_quotes", "Upcoming Quotes", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "Sukurti s\u0105skait\u0105", "create_quote", "Sukurti s\u0105mat\u0105", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Delete Quote", "update_invoice", "Update Invoice", "delete_invoice", "I\u0161trinti s\u0105skait\u0105", "update_client", "Update Client", "delete_client", "Trinti klient\u0105", "delete_payment", "I\u0161trinti mok\u0117jim\u0105", "update_vendor", "Update Vendor", "delete_vendor", "Trinti", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Sukurti darb\u0105", "update_task", "Update Task", "delete_task", "Trinti", "approve_quote", "Approve Quote", "off", "I\u0161j.", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Free", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", "Ie\u0161koti :count Webhooks", "search_webhook", "Ie\u0161koti 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", "Ie\u0161koti :count rakt\u0173", "search_token", "Ie\u0161koti 1 rakt\u0105", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Edit Token", "created_token", _s26_9, "updated_token", _s26_10, "archived_token", _s27_12, "deleted_token", _s26_11, "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "I\u0161si\u0173sti s\u0105skait\u0105 el. pa\u0161tu", "email_quote", "Email Quote", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kredito suma", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, "Dalinai gr\u0105\u017einta", _s16_56, "Ie\u0161koti dokument\u0173", "search_designs", "Ie\u0161koti dizaino", "search_invoices", "Ie\u0161koti s\u0105skait\u0173-fakt\u016br\u0173", "search_clients", "Ie\u0161koti klient\u0173", "search_products", "Ie\u0161koti preki\u0173", "search_quotes", "Ie\u0161koti pasi\u016blym\u0173", "search_credits", "Ie\u0161koti gr\u0105\u017einim\u0173", "search_vendors", "Ie\u0161koti tiek\u0117j\u0173", "search_users", "Ie\u0161koti vartotoj\u0173", _s16_57, "Ie\u0161koti mokes\u010di\u0173 tarif\u0173", "search_tasks", "Ie\u0161koti u\u017eduo\u010di\u0173", "search_settings", "Ie\u0161koti nustatym\u0173", "search_projects", "Ie\u0161koti projekt\u0173", "search_expenses", "Ie\u0161koti i\u0161laid\u0173", "search_payments", "Ie\u0161koti mok\u0117jim\u0173", "search_groups", "Ie\u0161koti grupi\u0173", "search_company", "Ie\u0161koti \u012fmoni\u0173", "search_document", "Ie\u0161koti 1 dokument\u0105", "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Gr\u0105\u017einti", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count s\u0105skaita i\u0161si\u0173sta", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Cancel Account", _s22_19, _s69_0, "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Vir\u0161us", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Pasi\u016blymai", "tickets", "Tickets", _s16_69, "Pasikartojan\u010dios s\u0105matos", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "I\u0161ra\u0161ymo data", "credit", "Kreditas", "credits", "Kreditai", "new_credit", "\u012evesti kredit\u0105", "edit_credit", "Redaguoti Kredit\u0105", "created_credit", _s27_18, "updated_credit", "S\u0117kmingai atnaujintas kreditas", "archived_credit", _s28_13, "deleted_credit", _s27_20, "removed_credit", _s27_21, "restored_credit", _s28_14, _s16_71, _s36_13, "deleted_credits", _s35_14, _s16_72, _s36_3, "current_version", "Dabartin\u0117 versija", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Pla\u010diau", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Kredito Pora\u0161t\u0117", "credit_terms", "Credit Terms", "new_company", "New Company", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Pasirinktinis Klientas 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "I\u0161 naujo", "number", "Number", "export", "Export", "chart", "Diagrama", "count", "Count", "totals", "Viso", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupuoti pagal", "credit_balance", "Kredito balansas", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Kliento Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Ataskaitos", "report", "Ataskaita", "add_company", "Add Company", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, "Nepatvirtinti pasi\u016blymai", "help", "Pagalba", "refund", "Pinig\u0173 gr\u0105\u017einimas", "refund_date", "Gr\u0105\u017einimo data", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u017dinut\u0117", "from", "Pardav\u0117jas", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "palaikymo forumas", "about", "About", "documentation", "Documentation", "contact_us", "Contact Us", "subtotal", "Tarpin\u0117 suma", "line_total", "Suma", "item", "Prek\u0117/Paslauga", "credit_email", "Credit Email", "iframe_url", "Tinklapis", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, "Slapta\u017eodyje turi b\u016bti did\u017eioji raid\u0117 ir skai\u010dius", _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Taip", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Pra\u0161ome pasirinkti klient\u0105", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Tax Settings", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Perjungti", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Atkurti slapta\u017eod\u012f", "late_fees", "Late Fees", "credit_number", "Kredito Numeris", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Grafikas", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Invoice Email", "payment_email", "Payment Email", "partial_payment", "Dalinis Apmok\u0117jimas", "payment_partial", "Partial Payment", _s21_44, "Dalino Apmok\u0117jimo El. pa\u0161tas", "quote_email", "Quote Email", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administratorius", _s18_58, _s66_, "user_management", "User Management", "users", "Vartotojai", "new_user", "New User", "edit_user", "Edit User", "created_user", _s25_22, "updated_user", _s25_23, "archived_user", _s26_18, "deleted_user", _s25_24, "removed_user", _s25_25, "restored_user", _s26_19, "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s16_123, "invoice_options", "Invoice Options", _s17_70, "Hide paid to date", _s22_27, _s87_, _s23_17, "\u012ekelti dokumentai", _s28_15, _s39_2, _s16_124, "Show header on", _s16_125, "Show footer on", "first_page", "first page", "all_pages", "all pages", "last_page", "last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primary Color", "secondary_color", "Secondary Color", "page_size", "Page Size", "font_size", "Font Size", "quote_design", "Quote Design", "invoice_fields", "Invoice Fields", "product_fields", "Product Fields", "invoice_terms", "S\u0105skaitos s\u0105lygos", "invoice_footer", "Invoice footer", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Automati\u0161kai Konvertuoti", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Kasdien", "freq_weekly", "Kas savait\u0119", "freq_two_weeks", "Dvi savait\u0117s", "freq_four_weeks", "Four weeks", "freq_monthly", "Kas m\u0117nes\u012f", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "Four months", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Charge taxes", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prie\u0161d\u0117lis", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Individualizuotas CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "Subdomain", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Linkiu geros dienos,", _s24_21, _s86_, "plain", "Plain", "light", "Light", "dark", "Tamsu", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kreditin\u0117 kortel\u0117", "bank_transfer", "Pavedimu", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Update Address", _s19_28, _s45_1, "rate", "\u012ekainis", "tax_rate", "Tax Rate", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Edit tax rate", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, _s34_16, _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s18_100, _s18_64, _s71_, "update_products", _s20_68, _s20_44, _s65_0, _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Sekmadienis", "monday", "Pirmadienis", "tuesday", "Antradienis", "wednesday", "Tre\u010diadienis", "thursday", "Ketvirtadienis", "friday", "Penktadienis", "saturday", "\u0160e\u0161tadienis", "january", "Sausis", "february", "Vasaris", "march", "Kovas", "april", "Balandis", "may", "Gegu\u017e\u0117", "june", "Bir\u017eelis", "july", "Liepa", "august", "Rugpj\u016btis", "september", "Rugs\u0117jis", "october", "Spalis", "november", "Lapkritis", "december", "Gruodis", "symbol", "Simbolis", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 val. formatas", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logotipas", "saved_settings", _s27_24, _s16_142, _s16_143, "device_settings", "Device Settings", "defaults", "Numatyti", "basic_settings", "Basic Settings", _s17_87, _s17_88, "company_details", "Imon\u0117s informacija", "user_details", "User Details", "localization", "Lokalizacija", "online_payments", "Online mok\u0117jimai", "tax_rates", "Mokes\u010di\u0173 \u012fkainiai", "notifications", "Prane\u0161imai", "import_export", "Importas/Eksportas", "custom_fields", "Custom fields", "invoice_design", "Invoice Design", "buy_now_buttons", "Pirkti dabar mygtukas", "email_settings", "Email nustatymai", _s23_28, _s21_50, _s22_30, _s20_46, _s19_34, _s19_35, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, _s16_145, "privacy_policy", "Privatumo politika", "sign_up", "Prisijunk", "account_login", "Jungtis", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Atsi\u0173sti", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dokumentai", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "Laukia patvirtinimo", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Converted", _s24_27, _s24_39, "exchange_rate", "Valiutos kursas", _s16_151, "Konvertuoti valiut\u0105", "mark_paid", "Mark Paid", "category", "Kategorija", "address", "Adresas", "new_vendor", "Naujas tiek\u0117jas", "created_vendor", "Sukurtas tiek\u0117jas", "updated_vendor", "Atnaujintas tiek\u0117jas", "archived_vendor", "S\u0117kmingai suarchyvuoti tiek\u0117jai", "deleted_vendor", "S\u0117kmingai i\u0161trintas tiek\u0117jas", "restored_vendor", _s28_22, _s16_152, "S\u0117kmingai suarchyvuoti :count tiek\u0117jai", "deleted_vendors", "I\u0161trinta :count tiek\u0117j\u0173", _s16_153, _s36_5, "new_expense", "Enter Expense", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s29_44, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Invoiced", "logged", "Logged", "running", "Vykdomas", "resume", "T\u0119sti", "task_errors", _s36_6, "start", "Prad\u0117ti", "stop", "Stabdyti", "started_task", _s25_34, "stopped_task", _s25_35, "resumed_task", _s25_36, "now", "Dabar", _s16_157, _s16_158, "timer", "Chronometras", "manual", "Nurodyti", "budgeted", "Budgeted", "start_time", "Prad\u017eia", "end_time", "Pabaiga", "date", "Data", "times", "Laikas", "duration", "Trukm\u0117", "new_task", "Naujas darbas", "created_task", "Sukurtas darbas", "updated_task", "Atnaujintas darbas", "archived_task", _s26_23, "deleted_task", _s25_39, "restored_task", _s26_24, "archived_tasks", _s34_17, "deleted_tasks", _s33_17, "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", "Jei jums patiko pra\u0161ome", "click_here", "spausti \u010dia", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Vidurkis", "unapproved", "Nepatvirtinta", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Apa\u010dia", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Dabartinis", "previous", "Previous", "current_period", "Dabartinis periodas", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Kurti", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Rodyti s\u0105skait\u0105", "convert", "Convert", "more", "More", "edit_client", "Redaguoti", "edit_product", "Edit Product", "edit_invoice", "Redaguoti", "edit_quote", "Keisti s\u0105mat\u0105", "edit_payment", "Edit Payment", "edit_task", "Keisti", "edit_expense", "Edit Expense", "edit_vendor", "Keisti", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Billing address", _s16_164, _s16_165, "total_revenue", "I\u0161 viso pajam\u0173", "average_invoice", "S\u0105skait\u0173 vidurkis", "outstanding", "Neapmok\u0117ta", "invoices_sent", ":count i\u0161si\u0173stos s\u0105skaitos fakt\u016bros", "active_clients", "aktyv\u016bs klientai", "close", "U\u017edaryti", "email", "El. pa\u0161tas", "password", "Slapta\u017eodis", "url", "URL", "secret", "Slaptas \u017eodis", "name", "Pavadinimas", "logout", "Log Out", "login", "Login", "filter", "Filtras", "sort", "Sort", "search", "Paie\u0161ka", "active", "Aktyvus", "archived", "Archived", "deleted", "Deleted", "dashboard", "Darbastalis", "archive", "Archyvas", "delete", "Trinti", "restore", "Atkurti", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Saugoti", _s17_100, _s17_101, "paid_to_date", "Apmok\u0117ta", "balance_due", "Suma Viso", "balance", "Balansas", "overview", "Ap\u017evalgaAp\u017evalga", "details", "Informacija", "phone", "Telefonas", "website", "Internetinis puslapis", "vat_number", "PVM kodas", "id_number", "\u012emon\u0117s kodas", "create", "Kurti", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontaktin\u0117 informacija", "additional", "Additional", "first_name", "Vardas", "last_name", "Pavard\u0117", "add_contact", "Prid\u0117ti kontakt\u0105", "are_you_sure", "Ar tikrai?", "cancel", "At\u0161aukti", "ok", "Ok", "remove", "Trinti", _s16_170, _s16_171, "product", "Product", "products", "Prek\u0117s", "new_product", "New Product", "created_product", _s28_30, "updated_product", _s28_31, _s16_172, _s29_19, "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Prek\u0117", "notes", "Notes", "cost", "Cost", "client", "Klientas", "clients", "Klientai", "new_client", "Naujas klientas", "created_client", "Klientas sukurtas", "updated_client", _s27_32, "archived_client", _s28_33, _s16_175, _s36_16, "deleted_client", _s27_33, "deleted_clients", _s35_16, "restored_client", _s28_34, _s16_176, _s36_7, "address1", "Gatv\u0117", "address2", "Adresas 2", "city", "Miestas", "state", "Apskritis", "postal_code", "Pa\u0161to kodas", "country", "Country", "invoice", "S\u0105skaita fakt\u016bra", "invoices", "S\u0105skaitos", "new_invoice", "Nauja s\u0105skaita", "created_invoice", _s28_35, "updated_invoice", _s28_36, _s16_177, _s29_21, "deleted_invoice", _s28_37, _s16_178, _s29_22, _s17_104, _s37_18, _s16_179, _s36_14, _s17_105, _s37_12, "emailed_invoice", _s28_61, "emailed_payment", _s28_53, "amount", "Suma", "invoice_number", "S\u0105skaitos numeris", "invoice_date", "I\u0161ra\u0161ymo data", "discount", "Nuolaida", "po_number", "U\u017esakymo numeris", "terms", "S\u0105lygos", "public_notes", "Vie\u0161os pastabos", "private_notes", "Privat\u016bs u\u017era\u0161ai", "frequency", "Periodas", "start_date", "Prad\u017eia", "end_date", "Pabaiga", "quote_number", "S\u0105matos numeris", "quote_date", "S\u0105matos data", "valid_until", "Galioja iki", "items", "Prek\u0117s/Paslaugos", "partial_deposit", "Dalinis/Avansas", "description", "Apra\u0161ymas", "unit_cost", "Vnt. kaina", "quantity", "Kiekis", "add_item", "Add Item", "contact", "Kontaktai", "work_phone", "Telefonas", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Apmok\u0117ti iki", _s16_180, "Dalimis Iki Datos", "status", "B\u016bkl\u0117", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Viso", "percent", "Percent", "edit", "Edit", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Nustatymai", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Mokestis", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "I\u0161si\u0173sta", "viewed", "Viewed", "approved", "Approved", "partial", "Dalinis/Avansas", "paid", "Apmok\u0117ta", "mark_sent", "Mark sent", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Baigta", _s37_13, _s37_14, "dark_mode", "Tamsusis R\u0117\u017eimas", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u012evykiai", _s16_182, "Nerasta \u012fra\u0161\u0173", "clone", "Clone", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Atsiskaitymo s\u0105lygos", "payment_date", "Mok\u0117jimo data", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, "Dalinis gr\u0105\u017einimas", _s16_189, "Gr\u0105\u017einta", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u012ejungti", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "First Reminder", "second_reminder", "Second Reminder", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0160ablonas", "send", "Send", "subject", "Tema", "body", "\u017dinut\u0117", "send_email", "Si\u0173sti el. lai\u0161k\u0105", "email_receipt", _s35_12, "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Customize", "history", "Istorija", "payment", "Payment", "payments", "Mok\u0117jimai", "refunded", "Gr\u0105\u017einta", "payment_type", "Mok\u0117jimo tipas", _s21_57, "Tranzakcijos numeris", "enter_payment", "\u012evesti apmok\u0117jim\u0105", "new_payment", "Naujas mok\u0117jimas", "created_payment", _s28_38, "updated_payment", "Mok\u0117jimas atnaujintas", _s16_190, _s29_23, "deleted_payment", _s28_40, _s16_191, _s29_24, _s17_109, _s37_19, _s16_192, _s36_15, _s17_110, _s37_15, "quote", "S\u0105mata", "quotes", "S\u0105matos", "new_quote", "Nauja s\u0105mata", "created_quote", _s26_29, "updated_quote", _s26_30, "archived_quote", _s27_37, "deleted_quote", _s26_31, "restored_quote", _s27_38, "archived_quotes", _s35_15, "deleted_quotes", _s34_18, "restored_quotes", _s35_13, "expense", "I\u0161laidos", "expenses", "I\u0161laidos", "vendor", "Tiek\u0117jas", "vendors", "Tiek\u0117jai", "task", "Task", "tasks", "Darbai", "project", "Project", "projects", "Projects", "activity_1", ":user suk\u016br\u0117 klient\u0105 :client", "activity_2", _s29_25, "activity_3", _s28_42, "activity_4", ":user sukurta s\u0105skaita :invoice", "activity_5", _s30_16, "activity_6", _s54_0, "activity_7", _s44_, "activity_8", _s31_3, "activity_9", _s30_17, "activity_10", _s85_0, "activity_11", ":user atnaujino mok\u0117jim\u0105 :payment", "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", _s50_4, "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", _s29_27, "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", ":user sukurta s\u0105skaita :expense", "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", ":payment_amount mok\u0117jimas (:payment) nepavyko", "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Vienkartinis Slapta\u017eodis", "emailed_quote", _s26_38, "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "Visi", "select", "Pasirinkite", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, "Tinkintas nepatvirtinto pasi\u016blymo prane\u0161imas", "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, _s22_51, _s20_52, _s20_53, _s20_54, _s20_55, _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, "El. pa\u0161t. Dalino Apmok\u0117jimo Subject", "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "S\u0105skaitos suma", _s16_197, "Terminas", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Automatinis mok\u0117jimas", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Mok\u0117jimo suma", "age", "Age", "is_running", "Is Running", "time_log", "Laiko Registras", "bank_id", "bank", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "mk_MK", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u0412\u043d\u0435\u0441\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "\u041f\u0440\u043e", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0418\u043c\u0435", _s17_1, "\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u041f\u0440\u0435\u0437\u0438\u043c\u0435", "order", "Order", "unassigned", "\u041d\u0435\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e", "partial_value", "\u041c\u043e\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043f\u043e\u0433\u043e\u043b\u0435\u043c\u043e \u043e\u0434 \u043d\u0443\u043b\u0430 \u0430 \u043f\u043e\u043c\u0430\u043b\u043e \u043e\u0434 \u0432\u043a\u0443\u043f\u043d\u043e", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0412\u043a\u043b\u0443\u0447\u0438", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0433\u043e \u043f\u043e\u0434\u0434\u043e\u043c\u0435\u043d\u043e\u0442 \u0438\u043b\u0438 \u043f\u0440\u0438\u043a\u0430\u0436\u0435\u0442\u0435 \u0458\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0432\u0435\u0431 \u0441\u0442\u0440\u0430\u043d\u0430.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "\u041e\u0441\u0438\u0433\u0443\u0440\u0443\u0432\u0430\u045a\u0435", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "\u041f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0438", _s16_11, _s16_12, _s17_7, "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_1, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_2, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s21_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0442\u0430", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0441\u043f\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u043a\u0430\u043d\u0430", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "\u041e\u0442\u0444\u0440\u043b\u0435\u043d\u043e", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "\u0421\u043a\u0435\u043d\u0438\u0440\u0430\u0458 \u0433\u043e \u0431\u0430\u0440 \u043a\u043e\u0434\u043e\u0442 \u0441\u043e :link \u043a\u043e\u043c\u043f\u0430\u0442\u0438\u0431\u0438\u043b\u043d\u0430 \u0430\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0458\u0430.", _s18_14, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u0430 \u0430\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043f\u0440\u0435\u043a\u0443 \u0434\u0432\u0430 \u0444\u0430\u043a\u0442\u043e\u0440\u0438", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "\u0410\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043f\u0440\u0435\u043a\u0443 \u0434\u0432\u0430 \u0444\u0430\u043a\u0442\u043e\u0440\u0438", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u043a\u0432\u0430\u0440\u0442\u0430\u043b", "to_update_run", "To update run", _s18_17, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_24, _s16_25, "invoice_project", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0435\u043a\u0442", "invoice_task", "\u0417\u0430\u0434\u0430\u0447\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_expense", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u0458 \u0442\u0440\u043e\u0448\u043e\u043a", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d \u0438\u0437\u043d\u043e\u0441", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043e\u043a\u0440\u0438\u0458", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u041a\u043e\u043b\u043e\u043d\u0430", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440\u043e\u043a", "map_to", "Map To", "import", "\u0412\u043d\u0435\u0441\u0438", _s25_1, _s29_1, "select_file", "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430", _s16_32, _s16_33, "csv_file", "CSV \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u041d\u0435\u043f\u043b\u0430\u0442\u0435\u043d\u043e", "white_label", "White Label", "delivery_note", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0430 \u0437\u0430 \u0438\u0441\u043f\u043e\u0440\u0430\u043a\u0430", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u0414\u0435\u043b\u0443\u043c\u0435\u043d \u0434\u043e\u043b\u0433", "invoice_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043f\u043e\u043d\u0443\u0434\u0438", "credit_total", "\u0412\u043a\u0443\u043f\u043d\u043e \u043a\u0440\u0435\u0434\u0438\u0442", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s20_20, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u043d\u043e\u0432 \u0442\u0440\u043e\u0448\u043e\u043a", _s21_18, _s21_19, _s24_11, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s24_12, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s25_5, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s24_13, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430", _s24_14, _s37_2, _s25_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0435\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s27_8, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "\u0422\u0440\u0435\u0431\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u041e\u0431\u0435\u043b\u0435\u0436\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s18_29, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0448\u0442\u043e \u0441\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0430\u0442", _s21_25, "\u041d\u043e\u0432\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s22_12, "\u0418\u0437\u043c\u0435\u043d\u0438 \u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_14, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s25_15, _s38_7, _s26_6, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0435\u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "\u041f\u0440\u043e\u0444\u0438\u0442", "line_item", "\u0421\u0442\u0430\u0432\u043a\u0430 \u043d\u0430 \u043b\u0438\u043d\u0438\u0458\u0430", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "\u041e\u0442\u0432\u043e\u0440\u0435\u043d\u043e", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0458 \u043f\u043e\u0440\u0442\u0430\u043b", "copy_link", "Copy Link", "token_billing", "\u0417\u0430\u0447\u0443\u0432\u0430\u0458 \u0434\u0435\u0442\u0430\u043b\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", _s24_17, _s24_18, "always", "\u0421\u0435\u043a\u043e\u0433\u0430\u0448", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u041d\u0430\u0437\u043d\u0430\u043a\u0430", "client_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "auto_convert", "Auto Convert", "company_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "emailed_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u043f\u043e\u043d\u0443\u0434\u0438", "emailed_credits", _s28_52, "gateway", "\u041f\u043b\u0430\u0442\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0427\u0430\u0441\u043e\u0432\u0438", "statement", "\u0418\u0441\u043a\u0430\u0437", "taxes", "\u0414\u0430\u043d\u043e\u0446\u0438", "surcharge", "\u0414\u043e\u043f\u043b\u0430\u0442\u0430", "apply_payment", "Apply Payment", "apply", "\u041f\u0440\u0438\u043c\u0435\u043d\u0438", "unapplied", "Unapplied", "select_label", "\u0418\u0437\u0431\u0435\u0440\u0438 \u043d\u0430\u0437\u043d\u0430\u043a\u0430", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u0414\u043e", "health_check", "Health Check", "payment_type_id", "\u041d\u0430\u0447\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u041d\u0435\u0434\u043e\u0441\u043f\u0435\u0430\u043d\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0438", _s17_43, _s17_44, "recent_payments", "\u041d\u0435\u043e\u0434\u0430\u043c\u043d\u0435\u0448\u043d\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0430", "upcoming_quotes", "\u041f\u0440\u0435\u0442\u0441\u0442\u043e\u0458\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "expired_quotes", "\u0418\u0441\u0442\u0435\u0447\u0435\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "create_client", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043a\u043b\u0438\u0435\u043d\u0442", "create_invoice", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "create_quote", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043f\u043e\u043d\u0443\u0434\u0430", "create_payment", "Create Payment", "create_vendor", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "update_quote", "Update Quote", "delete_quote", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043f\u043e\u043d\u0443\u0434\u0430", "update_invoice", "Update Invoice", "delete_invoice", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "update_client", "Update Client", "delete_client", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u041a\u043b\u0438\u0435\u043d\u0442", "delete_payment", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u041f\u043b\u0430\u045c\u0430\u045a\u0435", "update_vendor", "Update Vendor", "delete_vendor", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "create_task", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0437\u0430\u0434\u0430\u0447\u0430", "update_task", "Update Task", "delete_task", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0437\u0430\u0434\u0430\u0447\u0430", "approve_quote", "Approve Quote", "off", "\u0418\u0441\u043a\u043b\u0443\u0447\u0435\u043d\u043e", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "\u041f\u043b\u0430\u043d", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u0426\u0435\u043b", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API \u0442\u043e\u043a\u0435\u043d\u0438", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u0422\u043e\u043a\u0435\u043d", "tokens", "\u0422\u043e\u043a\u0435\u043d\u0438", "new_token", "New Token", "edit_token", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u043e\u043a\u0435\u043d", "created_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "updated_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "archived_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "deleted_token", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u043e\u043a\u0435\u043d", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u041f\u0440\u0430\u0442\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "email_quote", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043e\u043d\u0443\u0434\u0430 \u043f\u043e \u0435\u043b. \u043f\u043e\u0448\u0442\u0430", "email_credit", "Email Credit", "email_payment", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "\u0418\u043c\u0435 \u043d\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u0435\u0440\u043c\u0438\u043d \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_29, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_30, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s21_28, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u0415\u043a\u0441\u043a\u043b\u0443\u0437\u0438\u0432\u043d\u043e", "inclusive", "\u0418\u043d\u043a\u043b\u0443\u0437\u0438\u0432\u043d\u043e", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u0458 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "\u0426\u0435\u043b\u043e\u0441\u043d\u043e \u0438\u043c\u0435", _s17_55, "\u0413\u0440\u0430\u0434/\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", _s17_57, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458/\u0413\u0440\u0430\u0434/\u0414\u0440\u0436\u0430\u0432\u0430", "custom1", "\u041f\u0440\u0432\u043e \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", "custom2", "\u0412\u0442\u043e\u0440\u043e \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u041f\u0440\u043e\u0447\u0438\u0441\u0442\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", _s16_64, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0441\u0442\u0435\u043d\u0438 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u0430\u043d\u0438\u0458\u0430", _s18_38, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0433\u0438 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430\u0437\u0430\u0434.", "invoice_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043f\u043e \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "age_group_0", "0 - 30 \u0434\u0435\u043d\u0430", "age_group_30", "30 - 60 \u0434\u0435\u043d\u0430", "age_group_60", "60 - 90 \u0434\u0435\u043d\u0430", "age_group_90", "90 - 120 \u0434\u0435\u043d\u0430", "age_group_120", "120+ \u0434\u0435\u043d\u0430", "refresh", "\u041e\u0441\u0432\u0435\u0436\u0438", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u0414\u043e\u0437\u0432\u043e\u043b\u0438", "none", "\u041d\u0435\u043c\u0430", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count \u0438\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "\u041f\u0440\u0438\u043c\u0435\u043d\u0438 \u043b\u0438\u0446\u0435\u043d\u0446\u0430", "cancel_account", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u0441\u043c\u0435\u0442\u043a\u0430", _s22_19, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u0441\u043c\u0435\u0442\u043a\u0430, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435.", "delete_company", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", _s22_20, "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435: \u041e\u0432\u0430 \u0442\u0440\u0430\u0458\u043d\u043e \u045c\u0435 \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0435 \u0432\u0430\u0448\u0430\u0442\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430, \u043d\u0435\u043c\u0430 \u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430\u0437\u0430\u0434.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0417\u0430\u0433\u043b\u0430\u0432\u0458\u0435", "load_design", "\u0412\u0447\u0438\u0442\u0430\u0458 \u0434\u0438\u0437\u0430\u0458\u043d", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "\u041f\u0440\u0435\u0434\u043b\u043e\u0437\u0438", "tickets", "Tickets", _s16_69, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u043f\u043e\u043d\u0443\u0434\u0438", "recurring_tasks", "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0417\u0430\u0434\u0430\u0447\u0438", _s18_, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s18_39, "\u041c\u0435\u043d\u0430\u045f\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", "credit_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u0438", "new_credit", "\u0412\u043d\u0435\u0441\u0438 \u041a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u0440\u0435\u0434\u0438\u0442", "created_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "updated_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "archived_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "deleted_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "removed_credit", _s27_21, "restored_credit", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s16_71, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0438", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043a\u0440\u0435\u0434\u0438\u0442\u0438", _s16_72, _s36_3, "current_version", "\u0421\u0435\u0433\u0430\u0448\u043d\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "\u041f\u043e\u0432\u0435\u045c\u0435", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u041d\u043e\u0432\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0420\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u0458", "number", "Number", "export", "\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0458", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a\u043e\u043d", "count", "Count", "totals", "\u0412\u043a\u0443\u043f\u043d\u043e", "blank", "\u0411\u043b\u0430\u043d\u043a\u043e", "day", "\u0414\u0435\u043d", "month", "\u041c\u0435\u0441\u0435\u0446", "year", "\u0413\u043e\u0434\u0438\u043d\u0430", "subgroup", "\u041f\u043e\u0434\u0433\u0440\u0443\u043f\u0430", "is_active", "Is Active", "group_by", "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0458 \u043f\u043e", "credit_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "\u0423\u043b\u0438\u0446\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s17_64, "\u0410\u043f\u0430\u0440\u0442\u043c\u0430\u043d \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "shipping_city", "\u0413\u0440\u0430\u0434 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "shipping_state", "\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0458\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s20_33, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s16_103, "\u0414\u0440\u0436\u0430\u0432\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", _s16_105, "\u0423\u043b\u0438\u0446\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", _s16_106, "\u0410\u043f\u0430\u0440\u0442\u043c\u0430\u043d \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_city", "\u0413\u0440\u0430\u0434 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_state", "\u0414\u0440\u0436\u0430\u0432\u0430/\u041f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0458\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", _s19_19, "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "billing_country", "\u0414\u0440\u0436\u0430\u0432\u0430 \u0437\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "client_id", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "assigned_to", "Assigned to", "created_by", "\u041a\u0440\u0435\u0438\u0440\u0430\u043d\u043e \u043f\u043e :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u041a\u043e\u043b\u043e\u043d\u0438", "aging", "\u0417\u0430\u0441\u0442\u0430\u0440\u0435\u043d\u043e", "profit_and_loss", "\u041f\u0440\u043e\u0444\u0438\u0442 \u0438 \u0437\u0430\u0433\u0443\u0431\u0430", "reports", "\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0438", "report", "\u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458", "add_company", "\u0414\u043e\u0434\u0430\u0458 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "unpaid_invoice", _s17_118, "paid_invoice", "\u041f\u043b\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_107, "\u041d\u0435\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "help", "\u041f\u043e\u043c\u043e\u0448", "refund", "\u0420\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430\u0458", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u0415-\u043f\u043e\u0448\u0442\u0430 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "multiselect", "Multiselect", "entity_state", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u041f\u043e\u0440\u0430\u043a\u0430", "from", "\u041e\u0434", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "\u0424\u043e\u0440\u0443\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0440\u0448\u043a\u0430", "about", "About", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430", "contact_us", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438\u0440\u0430\u0458\u0442\u0435 \u043d\u0435'", "subtotal", "\u0412\u043a\u0443\u043f\u043d\u043e \u0431\u0435\u0437 \u0434\u0430\u043d\u043e\u043a", "line_total", "\u0412\u043a\u0443\u043f\u043d\u043e", "item", "\u0421\u0442\u0430\u0432\u043a\u0430", "credit_email", "Credit Email", "iframe_url", "\u0412\u0435\u0431 \u0441\u0442\u0440\u0430\u043d\u0430", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "\u0414\u0430", "no", "\u041d\u0435", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "\u041c\u043e\u0431\u0438\u043b\u0435\u043d", "desktop", "\u0414\u0435\u0441\u043a\u0442\u043e\u043f", "layout", "Layout", "view", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0434\u0430\u043d\u043e\u043a", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "\u041f\u0440\u0435\u0444\u0440\u043b\u0438", _s19_23, _s20_41, "options", "\u041e\u043f\u0446\u0438\u0438", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "\u041f\u043e\u0434\u043d\u0435\u0441\u0438", _s16_115, "\u041f\u043e\u0432\u0440\u0430\u0442\u0438 \u0458\u0430 \u0442\u0432\u043e\u0458\u0430\u0442\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", "late_fees", "Late Fees", "credit_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043a\u0440\u0435\u0434\u0438\u0442", "payment_number", "Payment Number", "late_fee_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043f\u0440\u043e\u0432\u0438\u0437\u0438\u0458\u0430 \u0437\u0430 \u0437\u0430\u0434\u043e\u0446\u043d\u0443\u0432\u0430\u045a\u0435", _s16_116, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043d\u0430 \u043f\u0440\u043e\u0432\u0438\u0437\u0438\u0458\u0430 \u0437\u0430 \u0437\u0430\u0434\u043e\u0446\u043d\u0443\u0432\u0430\u045a\u0435", "schedule", "\u0420\u0430\u0441\u043f\u043e\u0440\u0435\u0434", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "\u0414\u0435\u043d\u043e\u0432\u0438", "invoice_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "payment_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "\u041c\u0435\u0458\u043b \u0437\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s16_118, "\u0411\u0435\u0441\u043a\u0440\u0430\u0435\u043d \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", _s16_120, _s16_121, "administrator", "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440", _s18_58, "\u0414\u043e\u0437\u0432\u043e\u043b\u0430 \u0437\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u0442 \u0434\u0430 \u043c\u0435\u043d\u0430\u045f\u0438\u0440\u0430 \u0441\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u0446\u0438\u0442\u0435, \u0434\u0430 \u0433\u0438 \u043c\u0435\u043d\u0443\u0432\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438\u0442\u0435 \u0438 \u0434\u0430 \u0433\u0438 \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u0430 \u0441\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "user_management", "\u0423\u043f\u0440\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u0441\u043e \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "users", "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0446\u0438", "new_user", "\u041d\u043e\u0432 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "edit_user", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "created_user", _s25_22, "updated_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "archived_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "deleted_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "removed_user", _s25_25, "restored_user", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u041e\u043f\u0448\u0442\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438", "invoice_options", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_70, "\u0421\u043e\u043a\u0440\u0438\u0458 \u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0430\u0442\u0443\u043c", _s22_27, '\u041f\u0440\u0438\u043a\u0430\u0436\u0438 "\u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0430\u0442\u0443\u043c" \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435 \u043e\u0442\u043a\u0430\u043a\u043e \u045c\u0435 \u0431\u0438\u0434\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e.', _s23_17, "\u0412\u043c\u0435\u0442\u043d\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", _s28_15, "\u0412\u043a\u043b\u0443\u0447\u0438 \u0433\u0438 \u043f\u0440\u0438\u043a\u0430\u0447\u0435\u043d\u0438\u0442\u0435 \u0441\u043b\u0438\u043a\u0438 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s16_124, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0458\u0435 \u043d\u0430", _s16_125, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0444\u0443\u0442\u0435\u0440 \u043d\u0430", "first_page", "\u041f\u0440\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "all_pages", "\u0421\u0438\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438", "last_page", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u041f\u0440\u0438\u043c\u0430\u0440\u043d\u0430 \u0431\u043e\u0458\u0430", "secondary_color", "\u0421\u0435\u043a\u0443\u043d\u0434\u0430\u0440\u043d\u0430 \u0431\u043e\u0458\u0430", "page_size", "\u0413\u043e\u043b\u0435\u043c\u0438\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0430", "font_size", "\u0413\u043e\u043b\u0435\u043c\u0438\u043d\u0430 \u043d\u0430 \u0444\u043e\u043d\u0442", "quote_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "invoice_fields", "\u041f\u043e\u043b\u0438\u045a\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "product_fields", "\u041f\u043e\u043b\u0438\u045a\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043f\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_footer", "\u0424\u0443\u0442\u0435\u0440 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "quote_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "quote_footer", "\u0424\u0443\u0442\u0435\u0440 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s18_59, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s23_18, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0438\u0441\u043f\u0440\u0430\u0442\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0433\u0430 \u045c\u0435 \u0431\u0438\u0434\u0430\u0442 \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0438.", _s20_42, _s21_96, _s25_26, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043a\u043e\u0433\u0430 \u045c\u0435 \u0431\u0438\u0434\u0430\u0442 \u043f\u043b\u0430\u0442\u0435\u043d\u0438.", _s18_60, _s21_96, _s23_19, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458 \u0444\u0430\u043a\u0442\u0443\u0440\u0438 \u043a\u043e\u0433\u0430 \u045c\u0435 \u0431\u0438\u0434\u0430\u0442 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438.", _s18_61, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u045a\u0435", _s23_20, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u043f\u043e\u043d\u0443\u0434\u0430 \u0432\u043e \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043a\u043e\u0433\u0430 \u0438\u0441\u0442\u0430\u0442\u0430 \u045c\u0435 \u0431\u0438\u0434\u0435 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0430 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442.", _s17_72, "\u041f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430 \u043d\u0430 \u0442\u0435\u043a\u043e\u0442 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430", "freq_daily", "\u0414\u043d\u0435\u0432\u043d\u043e", "freq_weekly", "\u041d\u0435\u0434\u0435\u043b\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u0438\u0440\u0438 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_monthly", "\u041c\u0435\u0441\u0435\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u0435\u0446\u0438", _s17_74, "\u0422\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0438", _s16_126, "\u0427\u0435\u0442\u0438\u0440\u0438 \u043c\u0435\u0441\u0435\u0446\u0438", "freq_six_months", "\u0428\u0435\u0441\u0442 \u043c\u0435\u0441\u0435\u0446\u0438", "freq_annually", "\u0413\u043e\u0434\u0438\u0448\u043d\u043e", "freq_two_years", "\u0414\u0432\u0435 \u0433\u043e\u0434\u0438\u043d\u0438", _s16_127, "Three Years", "never", "\u041d\u0438\u043a\u043e\u0433\u0430\u0448", "company", "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", _s17_75, "\u0413\u0435\u043d\u0435\u0440\u0438\u0440\u0430\u043d\u0438 \u0431\u0440\u043e\u0435\u0432\u0438", "charge_taxes", "\u041d\u0430\u043f\u043b\u0430\u0442\u0438 \u0434\u0430\u043d\u043e\u0446\u0438", "next_reset", "\u0421\u043b\u0435\u0434\u043d\u043e \u0440\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u045a\u0435", "reset_counter", "\u0420\u0435\u0441\u0435\u0442\u0438\u0440\u0430\u0458 \u0431\u0440\u043e\u0458\u0430\u0447", _s16_128, "\u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u043f\u0440\u0435\u0444\u0438\u043a\u0441", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_77, "\u0414\u043e\u043f\u043b\u0430\u0442\u0430 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "client_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "product_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "payment_field", "Payment Field", "contact_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "vendor_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "expense_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "project_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "task_field", "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "Number Pattern", "messages", "\u041f\u043e\u0440\u0430\u043a\u0438", "custom_css", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d CSS", _s17_79, _s17_80, _s16_130, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043d\u0430 PDF", _s21_46, "\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0433\u043e \u043f\u043e\u0442\u043f\u0438\u0441\u043e\u0442 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u043d\u0430 PDF \u0444\u0430\u043a\u0442\u0443\u0440\u0430/\u043f\u043e\u043d\u0443\u0434\u0430.", _s25_27, "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438 \u0437\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_5, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u0440\u0434\u0438 \u0434\u0435\u043a\u0430 \u0433\u0438 \u043f\u0440\u0438\u0444\u0430\u045c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0442\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430.", _s23_21, "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0443\u0441\u043b\u043e\u0432\u0438 \u0437\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s28_16, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043f\u043e\u0442\u0432\u0440\u0434\u0438 \u0434\u0435\u043a\u0430 \u0433\u0438 \u043f\u0440\u0438\u0444\u0430\u045c\u0430 \u0443\u0441\u043b\u043e\u0432\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430.", _s25_28, "\u041f\u043e\u0442\u043f\u0438\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s30_6, "\u041f\u043e\u0431\u0430\u0440\u0430\u0458 \u043e\u0434 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0434\u0430 \u043e\u0431\u0435\u0437\u0431\u0435\u0434\u0438 \u043f\u043e\u0442\u043f\u0438\u0441.", _s23_22, "\u041f\u043e\u0442\u043f\u0438\u0441 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", _s22_29, "\u0424\u0430\u043a\u0442\u0443\u0440\u0438 \u0437\u0430\u0448\u0442\u0438\u0442\u0435\u043d\u0438 \u0441\u043e \u043b\u043e\u0437\u0438\u043d\u043a\u0430", _s27_23, "\u0412\u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0443\u0432\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430 \u0437\u0430 \u0441\u0435\u043a\u043e\u0458 \u043a\u043e\u043d\u0442\u0430\u043a\u0442. \u0410\u043a\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043b\u043e\u0437\u0438\u043d\u043a\u0430. \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0442 \u045c\u0435 \u043c\u043e\u0440\u0430 \u0434\u0430 \u0458\u0430 \u0432\u043d\u0435\u0441\u0435 \u043b\u043e\u0437\u0438\u043d\u043a\u0430\u0442\u0430 \u043f\u0440\u0435\u0434 \u0434\u0430 \u0433\u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0442\u0435.", "authorization", "\u041e\u0432\u043b\u0430\u0441\u0442\u0443\u0432\u0430\u045a\u0435", "subdomain", "\u041f\u043e\u0434\u0434\u043e\u043c\u0435\u043d", "domain", "\u0414\u043e\u043c\u0435\u043d", "portal_mode", "Portal Mode", "email_signature", "\u0421\u043e \u043f\u043e\u0447\u0438\u0442,", _s24_21, "\u041d\u0430\u043f\u0440\u0430\u0432\u0435\u0442\u0435 \u0433\u043e \u043f\u043e\u043b\u0435\u0441\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e \u0437\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u0441\u043e \u0434\u043e\u0434\u0430\u0432\u0430\u045a\u0435 \u043d\u0430 schema.org \u043e\u0431\u0435\u043b\u0435\u0436\u0458\u0435 \u043d\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0435-\u043f\u043e\u0448\u0442\u0438", "plain", "\u041e\u0431\u0438\u0447\u043d\u043e", "light", "\u0421\u0432\u0435\u0442\u043b\u043e", "dark", "\u0422\u0435\u043c\u043d\u043e", "email_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043e\u0431\u0435\u043b\u0435\u0436\u0443\u0432\u0430\u045a\u0435", "reply_to_email", "\u041e\u0434\u0433\u043e\u0432\u043e\u0440\u0438-\u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "reply_to_name", "Reply-To Name", "bcc_email", "BCC \u0435-\u043f\u043e\u0448\u0442\u0430", "processed", "Processed", "credit_card", "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", "bank_transfer", "\u0411\u0430\u043d\u043a\u0430\u0440\u0441\u043a\u0438 \u0442\u0440\u0430\u043d\u0441\u0444\u0435\u0440", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043c\u0438\u043d.", "enable_max", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0438 \u043c\u0430\u043a\u0441.", "min_limit", "\u041c\u0438\u043d: :min", "max_limit", "\u041c\u0430\u043a\u0441: :max", "min", "\u041c\u0438\u043d", "max", "\u041c\u0430\u043a\u0441", _s19_26, "\u041f\u0440\u0438\u0444\u0430\u0442\u0435\u043d\u0438 \u043b\u043e\u0433\u043e\u0430 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u0447\u043a\u0430", "credentials", "Credentials", "update_address", "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0430\u0434\u0440\u0435\u0441\u0430", _s19_28, "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0458\u0430 \u0430\u0434\u0440\u0435\u0441\u0430\u0442\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 \u0441\u043e \u043e\u0431\u0435\u0437\u0431\u0435\u0434\u0435\u043d\u0438\u0442\u0435 \u0434\u0435\u0442\u0430\u043b\u0438", "rate", "\u0421\u0442\u0430\u043f\u043a\u0430", "tax_rate", "\u0414\u0430\u043d\u043e\u0447\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430", "new_tax_rate", "\u041d\u043e\u0432\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "edit_tax_rate", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_133, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_134, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s17_82, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u0441\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u043f\u043e\u043f\u043e\u043b\u043d\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s18_64, "\u0418\u0437\u0431\u0438\u0440\u0430\u045a\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u045c\u0435 \u0433\u0438 \u0438\u0441\u043f\u043e\u043b\u043d\u0438 \u043f\u043e\u043b\u0438\u045a\u0430\u0442\u0430 \u0437\u0430 \u043e\u043f\u0438\u0441 \u0438 \u0446\u0435\u043d\u0430", "update_products", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s20_44, "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435\u0442\u043e \u043d\u0430 \u0444\u0430\u043a\u0443\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u045c\u0435 \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438 ", _s16_136, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s21_47, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0433\u0438 \u0446\u0435\u043d\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0442\u0435 \u043f\u043e \u0432\u0430\u043b\u0443\u0442\u0438\u0442\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435", "fees", "\u041d\u0430\u0434\u043e\u043c\u0435\u0441\u0442\u043e\u0446\u0438", "limits", "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0443\u0432\u0430\u045a\u0430", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "\u041e\u0442\u0444\u0440\u043b\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438", "default_value", "Default value", "disabled", "\u041e\u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u043e", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "\u041d\u0435\u0434\u0435\u043b\u0430", "monday", "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", "tuesday", "\u0412\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0421\u0440\u0435\u0434\u0430", "thursday", "\u0427\u0435\u0442\u0432\u0440\u0442\u043e\u043a", "friday", "\u041f\u0435\u0442\u043e\u043a", "saturday", "\u0421\u0430\u0431\u043e\u0442\u0430", "january", "\u0408\u0430\u043d\u0443\u0430\u0440\u0438", "february", "\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438", "march", "\u041c\u0430\u0440\u0442", "april", "\u0410\u043f\u0440\u0438\u043b", "may", "\u041c\u0430\u0458", "june", "\u0408\u0443\u043d\u0438", "july", "\u0408\u0443\u043b\u0438", "august", "\u0410\u0432\u0433\u0443\u0441\u0442", "september", "\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", "october", "\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", "november", "\u041d\u043e\u0435\u043c\u0432\u0440\u0438", "december", "\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438", "symbol", "\u0421\u0438\u043c\u0431\u043e\u043b", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "\u0412\u0440\u0435\u043c\u0435 \u043e\u0434 24 \u0447\u0430\u0441\u0430", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "\u0413\u0440\u0443\u043f\u0430", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "\u041b\u043e\u0433\u043e", "saved_settings", _s27_24, _s16_142, "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "device_settings", "Device Settings", "defaults", "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0434\u0438", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u0438", _s17_87, "\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u0438 \u043f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430", "company_details", "\u041f\u043e\u0434\u0430\u0442\u043e\u0446\u0438 \u0437\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430\u0442\u0430", "user_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0437\u0430 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a\u043e\u0442", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0458\u0430", "online_payments", "\u041e\u043d\u043b\u0430\u0458\u043d \u043f\u043b\u0430\u045c\u0430\u045a\u0430", "tax_rates", "\u0414\u0430\u043d\u043e\u0447\u043d\u0438 \u0441\u0442\u0430\u043f\u043a\u0438", "notifications", "\u0418\u0437\u0432\u0435\u0441\u0442\u0443\u0432\u0430\u045a\u0430", "import_export", "\u0423\u0432\u043e\u0437 | \u0418\u0437\u0432\u043e\u0437", "custom_fields", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u043b\u0438\u0432\u0438 \u043f\u043e\u043b\u0438\u045a\u0430", "invoice_design", "\u0414\u0438\u0437\u0430\u0458\u043d \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "buy_now_buttons", "\u041a\u0443\u043f\u0438 \u0441\u0435\u0433\u0430 \u043a\u043e\u043f\u0447\u0438\u045a\u0430", "email_settings", "\u041f\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u0437\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s23_28, "\u0428\u0430\u0431\u043b\u043e\u043d\u0438 \u0438 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u0446\u0438", _s22_30, _s20_46, _s19_34, "\u0412\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0458\u0430 \u043d\u0430 \u043f\u043e\u0434\u0430\u0442\u043e\u0446\u0438", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0435\u045a\u0435", "privacy_policy", "\u041f\u043e\u043b\u0438\u0441\u0430 \u0437\u0430 \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e\u0441\u0442", "sign_up", "\u041d\u0430\u0458\u0430\u0432\u0443\u0432\u0430\u045a\u0435", "account_login", "\u041d\u0430\u0458\u0430\u0432\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458 \u0441\u0435\u0433\u0430", _s18_70, _s18_71, _s21_51, _s34_13, "download", "\u041f\u0440\u0435\u0437\u0435\u043c\u0438", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "pending", "\u0412\u043e \u0442\u0435\u043a", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u043e", _s24_27, "\u0414\u043e\u0434\u0430\u0458 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "exchange_rate", "\u0414\u0435\u0432\u0438\u0437\u0435\u043d \u043a\u0443\u0440\u0441", _s16_151, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0458 \u0432\u0430\u043b\u0443\u0442\u0430", "mark_paid", "\u041e\u0431\u0435\u043b\u0435\u0436\u0438 \u043f\u043b\u0430\u0442\u0435\u043d\u043e", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430", "address", "\u0410\u0434\u0440\u0435\u0441\u0430", "new_vendor", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "created_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "updated_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "archived_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "deleted_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "restored_vendor", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", _s16_152, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", _s16_153, _s36_5, "new_expense", "\u0412\u043d\u0435\u0441\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "created_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "updated_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s16_154, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", "deleted_expense", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s16_155, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s17_93, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s16_156, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u0446\u0438", _s17_94, _s37_9, "copy_shipping", "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "copy_billing", "\u041a\u043e\u043f\u0438\u0440\u0430\u0458 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "design", "Design", _s21_52, _s21_53, "invoiced", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u043d\u043e", "logged", "\u041d\u0430\u0458\u0430\u0432\u0435\u043d\u043e", "running", "\u0412\u043e \u0442\u0435\u043a", "resume", "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438", "task_errors", "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u043a\u043e\u0440\u0435\u0433\u0438\u0440\u0430\u0458\u0442\u0435 \u0432\u0440\u0435\u043c\u0438\u045a\u0430\u0442\u0430 \u0448\u0442\u043e \u0441\u0435 \u043f\u0440\u0435\u043a\u043b\u043e\u043f\u0443\u0432\u0430\u0430\u0442", "start", "\u041f\u043e\u0447\u0435\u0442\u043e\u043a", "stop", "\u0421\u043e\u043f\u0440\u0438", "started_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u043f\u043e\u0447\u043d\u0430\u0442\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "stopped_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u043f\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "resumed_task", _s29_50, "now", "\u0421\u0435\u0433\u0430", _s16_157, _s16_158, "timer", "\u0422\u0430\u0458\u043c\u0435\u0440", "manual", "\u0423\u043f\u0430\u0442\u0441\u0442\u0432\u043e", "budgeted", "Budgeted", "start_time", "\u0412\u0440\u0435\u043c\u0435 \u0437\u0430 \u043f\u043e\u0447\u0435\u0442\u043e\u043a", "end_time", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0432\u0440\u0435\u043c\u0435", "date", "\u0414\u0430\u0442\u0443\u043c", "times", "\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u043d\u043e\u0441\u0442", "duration", "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u045a\u0435", "new_task", "\u041d\u043e\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "created_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "updated_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "archived_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "deleted_task", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "restored_task", _s29_50, "archived_tasks", _s32_8, "deleted_tasks", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u0437\u0430\u0434\u0430\u0447\u0438", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "\u0411\u0443\u045f\u0435\u0442\u0438\u0440\u0430\u043d\u0438 \u0447\u0430\u0441\u043e\u0432\u0438", "created_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "updated_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_159, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", "deleted_project", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s16_160, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0435\u043a\u0442", _s17_95, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0438", _s16_161, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u043f\u0440\u043e\u0435\u043a\u0442\u0438", _s17_96, _s37_10, "new_project", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0435\u043a\u0442", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "\u043a\u043b\u0438\u043a\u043d\u0438 \u0442\u0443\u043a\u0430", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "\u0424\u0443\u0442\u0435\u0440", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d \u043e\u043f\u0441\u0435\u0433", "date_range", "\u041e\u043f\u0441\u0435\u0433 \u043d\u0430 \u0434\u0430\u0442\u0443\u043c\u0438", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "\u041e\u0432\u043e\u0458 \u043c\u0435\u0441\u0435\u0446", "last_month", "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u0435\u043d \u043c\u0435\u0441\u0435\u0446", "this_year", "\u041e\u0432\u0430\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "last_year", "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430\u0442\u0430 \u0433\u043e\u0434\u0438\u043d\u0430", "custom", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0435\u043d\u043e", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "convert", "Convert", "more", "More", "edit_client", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043a\u043b\u0438\u0435\u043d\u0442", "edit_product", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "edit_invoice", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "edit_quote", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043e\u043d\u0443\u0434\u0430", "edit_payment", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "edit_task", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0430", "edit_expense", "\u0418\u0437\u043c\u0435\u043d\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", "edit_vendor", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "edit_project", "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0435\u043a\u0442", _s22_, "\u0418\u0437\u043c\u0435\u043d\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0438 \u0442\u0440\u043e\u0448\u043e\u043a", _s20_47, "\u0418\u0437\u043c\u0435\u043d\u0438 \u041f\u043e\u0432\u0442\u043e\u0440\u0443\u0432\u0430\u0447\u043a\u0430 \u041f\u043e\u043d\u0443\u0434\u0430", "billing_address", "\u0410\u0434\u0440\u0435\u0441\u0430 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438\u0440\u0430\u045a\u0435", _s16_164, "\u0410\u0434\u0440\u0435\u0441\u0430 \u0437\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u0430", "total_revenue", "\u0412\u043a\u0443\u043f\u0435\u043d \u043f\u0440\u0438\u0445\u043e\u0434", "average_invoice", "\u041f\u0440\u043e\u0441\u0435\u0447\u043d\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "outstanding", "\u041d\u0435\u043d\u0430\u043f\u043b\u0430\u0442\u0435\u043d\u043e", "invoices_sent", ":count \u0438\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", "active_clients", "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u041a\u043b\u0438\u0435\u043d\u0442\u0438", "close", "\u0417\u0430\u0442\u0432\u043e\u0440\u0438", "email", "\u0415-\u043f\u043e\u0448\u0442\u0430", "password", "\u041b\u043e\u0437\u0438\u043d\u043a\u0430", "url", "URL", "secret", "\u0422\u0430\u0458\u043d\u043e", "name", "\u0418\u043c\u0435", "logout", "\u041e\u0434\u0458\u0430\u0432\u0430", "login", "\u041d\u0430\u0458\u0430\u0432\u0430", "filter", "\u0424\u0438\u043b\u0442\u0435\u0440", "sort", "\u041f\u043e\u0434\u0440\u0435\u0434\u0438", "search", "\u041f\u0440\u0435\u0431\u0430\u0440\u0443\u0432\u0430\u045a\u0435", "active", "\u0410\u043a\u0442\u0438\u0432\u0435\u043d", "archived", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e", "deleted", "\u0418\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u043e", "dashboard", "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0430 \u0442\u0430\u0431\u043b\u0430", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0458", "delete", "\u0418\u0437\u0431\u0440\u0438\u0448\u0438", "restore", "\u041f\u043e\u0432\u0440\u0430\u0442\u0438", _s16_166, _s16_167, _s23_29, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", _s26_25, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", _s21_55, "\u0412\u0435 \u043c\u043e\u043b\u0438\u043c\u0435 \u0432\u043d\u0435\u0441\u0435\u0442\u0435 \u0458\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 URL", _s26_27, _s26_28, "ascending", "\u0420\u0430\u0441\u0442\u0435\u0447\u043a\u0438", "descending", "\u041e\u043f\u0430\u0453\u0430\u0447\u043a\u0438", "save", "\u0417\u0430\u0447\u0443\u0432\u0430\u0458", _s17_100, "\u041d\u0430\u0441\u0442\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430", "paid_to_date", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e \u0434\u043e \u0434\u0435\u043d\u0435\u0441", "balance_due", "\u0412\u043a\u0443\u043f\u043d\u043e \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430", "overview", "Overview", "details", "\u0414\u0435\u0442\u0430\u043b\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0412\u0435\u0431 \u0421\u0442\u0440\u0430\u043d\u0430", "vat_number", "\u0414\u0414\u0412 \u0431\u0440\u043e\u0458", "id_number", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", "create", "\u041a\u0440\u0435\u0438\u0440\u0430\u0458", _s19_42, _s30_12, "error", "\u0413\u0440\u0435\u0448\u043a\u0430", _s16_168, _s16_169, "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u0438", "additional", "Additional", "first_name", "\u0418\u043c\u0435", "last_name", "\u041f\u0440\u0435\u0437\u0438\u043c\u0435", "add_contact", "\u0414\u043e\u0434\u0430\u0434\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0414\u0430\u043b\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043d\u0438?", "cancel", "\u041e\u0442\u043a\u0430\u0436\u0438", "ok", "Ok", "remove", "\u041e\u0442\u0441\u0442\u0440\u0430\u043d\u0438", _s16_170, _s16_171, "product", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "products", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", "new_product", "\u041d\u043e\u0432 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "created_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "updated_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_172, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", "deleted_product", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s16_173, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u043e\u0434\u0443\u043a\u0442", _s17_102, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s16_174, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438", _s17_103, _s37_11, "product_key", "\u041f\u0440\u043e\u0434\u0443\u043a\u0442", "notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "cost", "\u0426\u0435\u043d\u0430", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u0438", "new_client", "\u041d\u043e\u0432 \u041a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "updated_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "archived_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s16_175, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u045a\u0435 \u043d\u0430 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "deleted_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043a\u043b\u0438\u0435\u043d\u0442\u0438", "restored_client", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", _s16_176, _s36_7, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0411\u0440\u043e\u0458", "city", "\u0413\u0440\u0430\u0434", "state", "\u041e\u043f\u0448\u0442\u0438\u043d\u0430", "postal_code", "\u041f\u043e\u0448\u0442\u0435\u043d\u0441\u043a\u0438 \u0431\u0440\u043e\u0458", "country", "\u0414\u0440\u0436\u0430\u0432\u0430", "invoice", "\u0424\u0430\u043a\u0442\u0443\u0440\u0430", "invoices", "\u0424\u0430\u043a\u0442\u0443\u0440\u0438", "new_invoice", "\u041d\u043e\u0432\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", "created_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "updated_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_177, _s26_37, "deleted_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0430 \u0424\u0430\u043a\u0442\u0443\u0440\u0430", _s16_178, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s17_104, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u0424\u0430\u043a\u0442\u0443\u0440\u0438", _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s17_105, _s37_12, "emailed_invoice", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "emailed_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043f\u043e \u0435-\u043f\u043e\u0448\u0442\u0430", "amount", "\u041a\u043e\u043b\u0438\u0447\u0438\u043d\u0430", "invoice_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "invoice_date", "\u0414\u0430\u0442\u0430\u0443\u043c \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", "discount", "\u041f\u043e\u043f\u0443\u0441\u0442", "po_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043d\u0430\u0440\u0430\u0447\u043a\u0430", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438", "public_notes", "\u0408\u0430\u0432\u043d\u0438 \u0437\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "private_notes", "\u0417\u0430\u0431\u0435\u043b\u0435\u0448\u043a\u0438", "frequency", "\u0424\u0440\u0435\u043a\u0432\u0435\u043d\u0442\u043d\u043e\u0441\u0442", "start_date", "\u041f\u043e\u0447\u0435\u0442\u0435\u043d \u0434\u0430\u0442\u0443\u043c", "end_date", "\u041a\u0440\u0430\u0435\u043d \u0434\u0430\u0442\u0443\u043c", "quote_number", "\u0411\u0440\u043e\u0458 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "quote_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "valid_until", "\u0412\u0430\u043b\u0438\u0434\u043d\u043e \u0434\u043e", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u041e\u043f\u0438\u0441", "unit_cost", "\u0426\u0435\u043d\u0430 \u043d\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0430", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0438\u043d\u0430", "add_item", "Add Item", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u043f\u0435\u0432\u0430\u045a\u0435", _s16_180, "\u0414\u0435\u043b\u0443\u043c\u0435\u043d \u0434\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "\u0412\u043a\u0443\u043f\u043d\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0418\u0437\u043c\u0435\u043d\u0438", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "\u0421\u0442\u0430\u043f\u043a\u0430 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430", "settings", "\u041f\u043e\u0434\u0435\u0441\u0443\u0432\u0430\u045a\u0430", "language", "Language", "currency", "\u0412\u0430\u043b\u0443\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043a\u0440\u0435\u0438\u0440\u0430\u045a\u0435", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0414\u0430\u043d\u043e\u043a", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "\u041c\u0438\u043d\u0430\u0442\u043e \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "draft", "\u041d\u0430\u0446\u0440\u0442", "sent", "\u0418\u0441\u043f\u0440\u0430\u0442\u0435\u043d\u043e", "viewed", "Viewed", "approved", "Approved", "partial", "\u0414\u0435\u043b\u0443\u043c\u043d\u043e/\u0414\u0435\u043f\u043e\u0437\u0438\u0442", "paid", "\u041f\u043b\u0430\u0442\u0435\u043d\u043e", "mark_sent", "\u0411\u0435\u043b\u0435\u0433\u043e\u0442 \u0435 \u043f\u0440\u0430\u0442\u0435\u043d", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "\u0417\u0430\u0432\u0440\u0448\u0435\u043d\u043e", _s37_13, _s37_14, "dark_mode", "\u0422\u0435\u043c\u0435\u043d \u0440\u0435\u0436\u0438\u043c", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", _s16_182, _s16_183, "clone", "\u041a\u043b\u043e\u043d\u0438\u0440\u0430\u0458", "loading", "\u0412\u0447\u0438\u0442\u0443\u0432\u0430\u045a\u0435", "industry", "Industry", "size", "Size", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "payment_date", "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "\u041f\u043e\u0440\u0442\u0430\u043b \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u041e\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d\u043e", "recipients", "\u041f\u0440\u0438\u043c\u0430\u0442\u0435\u043b\u0438", "initial_email", "\u041f\u043e\u0447\u0435\u0442\u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430", "first_reminder", "\u041f\u0440\u0432 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "second_reminder", "\u0412\u0442\u043e\u0440 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "third_reminder", "\u0422\u0440\u0435\u0442 \u043f\u043e\u0442\u0441\u0435\u0442\u043d\u0438\u043a", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "Send", "subject", "\u041f\u0440\u0435\u0434\u043c\u0435\u0442", "body", "\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0458\u0430", "send_email", "\u0418\u0441\u043f\u0440\u0430\u0442\u0438 \u0435\u043c\u0430\u0438\u043b", "email_receipt", "\u041f\u0440\u0430\u0442\u0438 \u043f\u043e\u0442\u0432\u0440\u0434\u0430 \u0437\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435 \u043d\u0430 \u0435-\u043f\u043e\u0448\u0442\u0430 \u0434\u043e \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442", "auto_billing", "Auto billing", "button", "Button", "preview", "\u041f\u0440\u0435\u0433\u043b\u0435\u0434", "customize", "\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0438", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u0458\u0430", "payment", "\u041f\u043b\u0430\u045c\u0430\u045a\u0435", "payments", "\u041f\u043b\u0430\u045c\u0430\u045a\u0430", "refunded", "Refunded", "payment_type", "\u0422\u0438\u043f \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s21_57, "\u0422\u0440\u0430\u043d\u0441\u0430\u043a\u0446\u0438\u0441\u043a\u0430 \u0440\u0435\u0444\u0435\u0440\u0435\u043d\u0446\u0430", "enter_payment", "\u0412\u043d\u0435\u0441\u0438 \u0443\u043f\u043b\u0430\u0442\u0430", "new_payment", "\u0412\u043d\u0435\u0441\u0438 \u041f\u043b\u0430\u045c\u0430\u045a\u0435", "created_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "updated_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s16_190, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u043e \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "deleted_payment", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s16_191, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", _s17_109, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043b\u0430\u045c\u0430\u045a\u0430", _s16_192, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0431\u0440\u0438\u0448\u0435\u045a\u0435 \u043d\u0430 :count \u043f\u043b\u0430\u045c\u0430\u045a\u0430", _s17_110, _s37_15, "quote", "\u041f\u043e\u043d\u0443\u0434\u0430", "quotes", "\u041f\u043e\u043d\u0443\u0434\u0438", "new_quote", "\u041d\u043e\u0432\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "created_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "updated_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "archived_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "deleted_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "restored_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0443\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430", "archived_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043d\u0438 :count \u043f\u043e\u043d\u0443\u0434\u0438", "deleted_quotes", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430\u043d\u0438 :count \u043f\u043e\u043d\u0443\u0434\u0438", "restored_quotes", _s35_13, "expense", "\u0422\u0440\u043e\u0448\u043e\u043a", "expenses", "\u0422\u0440\u043e\u0448\u043e\u0446\u0438", "vendor", "\u041f\u0440\u043e\u0434\u0430\u0432\u0430\u0447", "vendors", "\u041f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u0438", "task", "\u0417\u0430\u0434\u0430\u0447\u0430", "tasks", "\u0417\u0430\u0434\u0430\u0447\u0438", "project", "\u041f\u0440\u043e\u0435\u043a\u0442", "projects", "\u041f\u0440\u043e\u0435\u043a\u0442\u0438", "activity_1", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430\u0448\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_2", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u0448\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_3", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_4", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430\u0448\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_5", ":user \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u0448\u0435 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_9", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_10", _s85_0, "activity_11", ":user \u0433\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_12", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_13", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_14", ":user \u0432\u043d\u0435\u0441\u0435 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_15", ":user \u0430\u0436\u0443\u0440\u0438\u0440\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_16", ":user \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_17", ":user \u0438\u0437\u0431\u0440\u0438\u0448\u0430 :credit \u043a\u0440\u0435\u0434\u0438\u0442", "activity_18", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_19", ":user \u0458\u0430 \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_20", _s50_4, "activity_21", ":contact \u0458\u0430 \u0432\u0438\u0434\u0435 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_22", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_23", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_24", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u043e\u043d\u0443\u0434\u0430\u0442\u0430 :quote", "activity_25", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0444\u0430\u043a\u0442\u0443\u0440\u0430\u0442\u0430 :invoice", "activity_26", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0442 :client", "activity_27", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_28", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 :credit \u043a\u0440\u0435\u0434\u0438\u0442\u043e\u0442", "activity_29", _s42_9, "activity_30", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_31", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_32", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_33", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u0447\u043e\u0442 :vendor", "activity_34", ":user \u0433\u043e \u043a\u0440\u0435\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_35", ":user \u0433\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_36", ":user \u0433\u043e \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_37", ":user \u0433\u043e \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_39", ":user \u0433\u043e \u043e\u0442\u043a\u0430\u0436\u0430 :payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435\u0442\u043e :payment", "activity_40", ":user \u0433\u043e \u0440\u0435\u0444\u0443\u043d\u0434\u0438\u0440\u0430 :adjustment \u043d\u0430 :payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435 :payment", "activity_41", ":payment_amount \u043f\u043b\u0430\u045c\u0430\u045a\u0435 (:payment) \u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e", "activity_42", ":user \u0458\u0430 \u043a\u0440\u0435\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_43", ":user \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_44", ":user \u0458\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_45", ":user \u0458\u0430 \u0438\u0437\u0431\u0440\u0438\u0448\u0430 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_46", ":user \u0458\u0430 \u043f\u043e\u0432\u0440\u0430\u0442\u0438 \u0437\u0430\u0434\u0430\u0447\u0430\u0442\u0430 :task", "activity_47", ":user \u0433\u043e \u0430\u0436\u0443\u0440\u0438\u0440\u0430 \u0442\u0440\u043e\u0448\u043e\u043a\u043e\u0442 :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "\u0415\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u0430", "emailed_quote", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u0440\u0430\u0442\u0435\u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0430 \u043f\u043e \u0435\u043b. \u043f\u043e\u0448\u0442\u0430", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "\u0418\u0441\u0442\u0435\u0447\u0435\u043d\u043e", "all", "\u0421\u0438\u0442\u0435", "select", "\u0418\u0437\u0431\u0435\u0440\u0438", _s22_38, _s22_39, "custom_value1", _s17_151, "custom_value2", _s17_151, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u0411\u0440\u043e\u0458\u0430\u0447 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0438", _s20_52, _s20_53, _s20_54, "\u0411\u0440\u043e\u0458\u0430\u0447 \u043d\u0430 \u043f\u043e\u043d\u0443\u0434\u0438", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "\u0421\u043e\u0441\u0442\u043e\u0458\u0431\u0430 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "\u0422\u0438\u043f", "invoice_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u0444\u0430\u043a\u0442\u0443\u0440\u0430", _s16_197, "\u0414\u0430\u0442\u0443\u043c \u043d\u0430 \u0434\u043e\u0441\u0442\u0430\u0441\u0443\u0432\u0430\u045a\u0435", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0430 \u043d\u0430\u043f\u043b\u0430\u0442\u0430", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u0418\u043c\u0435 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "tax_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u0434\u0430\u043d\u043e\u043a", "tax_paid", "\u041f\u043b\u0430\u0442\u0435\u043d \u0434\u0430\u043d\u043e\u043a", "payment_amount", "\u0418\u0437\u043d\u043e\u0441 \u043d\u0430 \u043f\u043b\u0430\u045c\u0430\u045a\u0435", "age", "\u0412\u043e\u0437\u0440\u0430\u0441\u0442", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u0411\u0430\u043d\u043a\u0430", _s19_49, _s19_50, _s16_198, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430 \u043d\u0430 \u0442\u0440\u043e\u0448\u043e\u043a", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "nb_NO", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Kontakts fornavn", _s17_1, "Etternavn", "order", "Order", "unassigned", "Ikke tilordnet", "partial_value", "M\xe5 v\xe6re st\xf8rre enn null og mindre enn totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktiver", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Sett subdomenet eller vis fakturaen p\xe5 ditt eget nettsted.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Sikkerhet", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Abonnement", "subscriptions", "Abonnementer", _s16_11, "Nytt Abonnement\xa0", _s17_7, "Rediger Abonnement", _s20_1, "Abonnement opprettet", _s20_2, "Oppdaterte abonnement", _s21_6, "Abonnement arkivert", _s20_3, "Abonnement Slettet", _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, "Underdomene ikke tilgjengelig", "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Send invitasjon p\xe5 nytt", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, "Aktiverte To-faktor-autentisering", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "To-faktor-autentisering", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, "Venligst bekreft din epost adresse", _s16_23, "Refundert betaling", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "For og oppdatere kj\xf8r", _s18_17, "Konverter til en faktura", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Fakturer Oppgave", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Standard-dokumenter", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skjul", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, "Advarsel: en ment for bruk p\xe5 lokal installasjon, passord er ikke sikkert. Klikk her for og vite mer.", "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolonne", "sample", "Eksempel", "map_to", "Map To", "import", "Importer", _s25_1, _s29_1, "select_file", "Vennligst velg en fil", _s16_32, _s16_33, "csv_file", "Velg CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook-URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Ubetalt", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Totalbel\xf8p", "quote_total", "Tilbud totalt", "credit_total", "Total kreditt", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Advarsel", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Kundenavn", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Utgiftskategorier", _s20_20, "Ny Utgiftskategori", _s21_18, _s21_19, _s24_11, "Utgiftskategori ble opprettet", _s24_12, "Oppdaterte utgiftskategori", _s25_5, "Utgiftskategori ble arkivert", _s24_13, "Slettet kategori", _s24_14, _s37_2, _s25_6, "Utgiftskategori ble gjenopprettet", _s27_8, ":count utgiftskategorier ble arkivert", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Sett Aktiv", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Gjentakende Faktura", _s18_29, "Gjentakende Fakturaer", _s21_25, "Ny Gjentakende Faktura", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Suksessfullt arkivert gjentakende faktura", _s25_14, "Suksessfullt slettet gjentakende faktura", _s25_15, _s38_7, _s26_6, "Suksessfullt gjenopprettet gjentakende faktura", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Fortjeneste", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logger", "view_portal", "Vis Portal", "copy_link", "Kopier Lenke", "token_billing", "Lagre kortdetaljer", _s24_17, "Velkommen til Invoice Ninja", "always", "Alltid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Kundenummer", "auto_convert", "Auto Convert", "company_name", "Firmanavn", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "E-postfakturaer sendt", "emailed_quotes", _s23_52, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "timer", "statement", "Erkl\xe6ring", "taxes", "Skatter", "surcharge", "Tilleggsgebyr", "apply_payment", "Apply Payment", "apply", "Bruk", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Til", "health_check", "Health Check", "payment_type_id", "Betalingsmetode", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Forest\xe5ende Fakturaer", _s17_43, _s17_44, "recent_payments", "Nylige Betalinger", "upcoming_quotes", "Oppkommende Tilbud", "expired_quotes", "Utl\xf8pte Tilbud", "create_client", "Create Client", "create_invoice", "Opprett faktura", "create_quote", "Lag tilbud", "create_payment", "Create Payment", "create_vendor", "Opprett leverand\xf8r", "update_quote", "Update Quote", "delete_quote", "Slett tilbud", "update_invoice", "Update Invoice", "delete_invoice", "Slett faktura", "update_client", "Update Client", "delete_client", "Slett kunde", "delete_payment", "Slett betaling", "update_vendor", "Update Vendor", "delete_vendor", "Slett Leverand\xf8r", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Opprett Oppgave", "update_task", "Update Task", "delete_task", "Slett Oppgave", "approve_quote", "Approve Quote", "off", "Av", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API-tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Rediger Token", "created_token", "Opprettet token", "updated_token", "Oppdaterte token", "archived_token", "Suksessfullt arkivert token", "deleted_token", "Suksessfullt slettet token", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "E-postfaktura", "email_quote", "Send tilbudet som E-post", "email_credit", "Email Credit", "email_payment", "E-postbetaling", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Kontakt navn", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kreditbel\xf8p", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Ekslusiv", "inclusive", "Inklusiv", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", _s17_124, _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Fullt Navn", _s17_55, "By/Fylke/Postnummer", _s17_57, "Postnr./Sted/Fylke", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Fjern data", _s16_64, _s32_5, _s18_38, "Advarsel: Dette sletter alle dine data permanent, og kan ikke gjennopprettes.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dager", "age_group_30", "30 - 60 Dager", "age_group_60", "60 - 90 Dager", "age_group_90", "90 - 120 Dager", "age_group_120", "Mer enn 120 dager", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Fakturadetaljer", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count faktura sendt", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "aktiver lisens", "cancel_account", "Kanseler Konto", _s22_19, "Advarsel: Dette vil permanent slette kontoen din, du kan ikke angre.", "delete_company", "Slett Firma", _s22_20, "Advarsel: Dette vil permanent slette ditt firma, dette kan ikke gjennopprettes.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Header", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Forslag", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, "Gjentakende Utgifter", _s18_39, "Kontoadministrasjon", "credit_date", "Kreditdato", "credit", "Kredit", "credits", "Krediter", "new_credit", "Oppgi Kredit", "edit_credit", "Rediger Kredit", "created_credit", "Kredit opprettet", "updated_credit", "Kredit oppdatert", "archived_credit", "Kredit arkivert", "deleted_credit", "Kredit slettet", "removed_credit", _s27_21, "restored_credit", "Suksessfullt gjenopprettet kredit", _s16_71, "Arkiverte :count krediter", "deleted_credits", "Slettet :count krediter", _s16_72, _s36_3, "current_version", "N\xe5v\xe6rende versjon", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "L\xe6r mer", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nytt Firma", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Nullstill", "number", "Number", "export", "Eksporter", "chart", "Diagram", "count", "Count", "totals", "Totaler", "blank", "Tom", "day", "Dag", "month", "M\xe5ned", "year", "\xc5r", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupper etter", "credit_balance", "Kreditsaldo", _s18_45, _s18_46, _s17_61, "Fult navn", "contact_phone", "Kontakt Telefon", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Leverings adresse", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, "Leverings adresse postnummer", _s16_103, _s16_104, _s16_105, "Fakturaadresse", _s16_106, _s17_65, "billing_city", "Fakturering By", "billing_state", _s22_25, _s19_19, "Fakturering Postnummer", "billing_country", "Fakturering Land", "client_id", "Kunde-ID", "assigned_to", "Assigned to", "created_by", "Laget av :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolonner", "aging", "Aging", "profit_and_loss", "Fortjeneste og Tap", "reports", "Rapporter", "report", "Rapport", "add_company", "Legg til Firma", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Hjelp", "refund", "Refunder", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Kontakt Epost", "multiselect", "Multiselect", "entity_state", "Tilstand", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Beskjed", "from", "Fra", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Dokumentasjon", "contact_us", "Kontakt Oss", "subtotal", "Totalbel\xf8p", "line_total", "Sum", "item", "Produkt", "credit_email", "Credit Email", "iframe_url", "Nettside", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "User", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Vennligst velg en klient", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Skatteinnstillinger", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Valg", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Send", _s16_115, "Gjenopprett ditt passord", "late_fees", "Late Fees", "credit_number", "Kreditnummer", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Planlegg", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dager", "invoice_email", "Faktura-e-post", "payment_email", "Betalings-e-post", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Tilbuds-e-post", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "Brukerh\xe5ndtering", "users", "Brukere", "new_user", "Ny Bruker", "edit_user", "Endre bruker", "created_user", _s25_22, "updated_user", "Bruker oppdatert", "archived_user", "Suksessfullt arkivert bruker", "deleted_user", "Bruker slettet", "removed_user", _s25_25, "restored_user", "Suksessfullt gjenopprettet bruker", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Systeminnstillinger", "invoice_options", "Faktura alternativer", _s17_70, _s19_57, _s22_27, "Bare vis delbetalinger om det har forekommet en delbetaling.", _s23_17, "Embed Dokumenter", _s28_15, _s39_2, _s16_124, "Show header on", _s16_125, "Show footer on", "first_page", "F\xf8rste side", "all_pages", "Alle sider", "last_page", "Siste side", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Prim\xe6rfarge", "secondary_color", "Sekund\xe6r farge", "page_size", "Page Size", "font_size", "Skriftst\xf8rrelse", "quote_design", "Quote Design", "invoice_fields", "Faktura felt", "product_fields", "Produktfelter", "invoice_terms", _s20_59, "invoice_footer", "Faktura Bunntekst", "quote_terms", "Tilbuds Vilk\xe5r", "quote_footer", "Tilbud Bunntekst", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Konverter", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daglig", "freq_weekly", "Ukentlig", "freq_two_weeks", "To uker", "freq_four_weeks", "Fire uker", "freq_monthly", "M\xe5nedlig", "freq_two_months", "To m\xe5neder", _s17_74, "Tre m\xe5neder", _s16_126, "Fire m\xe5neder", "freq_six_months", "Seks m\xe5neder", "freq_annually", "\xc5rlig", "freq_two_years", "To \xe5r", _s16_127, "Three Years", "never", "Never", "company", "Company", _s17_75, "Genererte Nummere", "charge_taxes", "Inkluder skatt", "next_reset", "Neste Nullstilling", "reset_counter", "Nullstill Teller", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Egendefinert CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, "Faktura-signatur", _s30_6, "Krever klients signatur.", _s23_22, "Tilbuds-signatur", _s22_29, "Passord-beskytt fakturaer", _s27_23, _s142_, "authorization", "Autorisasjon", "subdomain", "Subdomene", "domain", "Domene", "portal_mode", "Portal Mode", "email_signature", "Med vennlig hilsen,", _s24_21, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Svar til Epost", "reply_to_name", "Reply-To Name", "bcc_email", "BCC E-post", "processed", "Processed", "credit_card", "Betalingskort", "bank_transfer", "Bankoverf\xf8ring", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktiver min", "enable_max", "Aktiver maks", "min_limit", "Min: :min", "max_limit", "Maks: :max", "min", "Min", "max", "Maks", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Oppdater Adresse", _s19_28, "Oppdater kundens adresse med oppgitte detaljer", "rate", "Sats", "tax_rate", "Skattesats", "new_tax_rate", "Ny Skattesats", "edit_tax_rate", "Rediger skattesats", _s16_133, "Suksessfullt opprettet skattesats", _s16_134, "Suksessfullt oppdatert skattesats", _s17_82, "Suksessfullt arkivert skattesatsen", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Automatisk-utfyll produkter", _s18_64, "Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden", "update_products", "Automatisk oppdater produkter", _s20_44, "\xc5 endre en faktura vil automatisk oppdatere produktbilioteket", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Avgifter", "limits", "Begrensninger", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "S\xf8ndag", "monday", "Mandag", "tuesday", "Tirsdag", "wednesday", "Onsdag", "thursday", "Torsdag", "friday", "Fredag", "saturday", "L\xf8rdag", "january", "Januar", "february", "Februar", "march", "Mars", "april", "April", "may", "Mai", "june", "Juni", "july", "Juli", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "Desember", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Timers Tid", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Produkt-innstillinger", "device_settings", "Device Settings", "defaults", "Standarder", "basic_settings", "Grunnleggende Innstillinger", _s17_87, "Avanserte innstillinger", "company_details", "Firmainformasjon", "user_details", "Brukerdetaljer", "localization", "Regioninnstillinger", "online_payments", "Nettbetalinger", "tax_rates", "Skattesatser", "notifications", "Varsler", "import_export", "Import | Eksport", "custom_fields", "Egendefinerte felt", "invoice_design", "Fakturadesign", "buy_now_buttons", "Betal N\xe5-knapper", "email_settings", "E-post-innstillinger", _s23_28, "Design & P\xe5minnelser", _s22_30, _s20_46, _s19_34, "Datavisualiseringer", "price", "Pris", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "vilk\xe5r for bruk", "privacy_policy", "Personvernregler", "sign_up", "Registrer deg", "account_login", "Kontoinnlogging", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Lag ny", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Last ned", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenter", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Utgiftsdato", "pending", "Avventer", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Konvertert", _s24_27, "Legg ved dokumenter til faktura", "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "Merk som betalt", "category", "Kategori", "address", "Adresse", "new_vendor", "Ny Leverand\xf8r", "created_vendor", "Opprettet leverand\xf8r", "updated_vendor", "Oppdaterte leverand\xf8r", "archived_vendor", "Arkiverte leverand\xf8r", "deleted_vendor", "Slettet leverand\xf8r", "restored_vendor", _s28_22, _s16_152, "Arkiverte :count leverand\xf8rer", "deleted_vendors", "Slettet :count leverand\xf8rer", _s16_153, _s36_5, "new_expense", "Angi utgift", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, _s29_15, "deleted_expense", _s28_25, _s16_155, _s29_16, _s17_93, "Arkiverte utgifter", _s16_156, "Slettet utgifter", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Fakturert", "logged", "Logget", "running", "L\xf8pende", "resume", "Gjenoppta", "task_errors", "Vennligst rett alle overlappende tider", "start", "Start", "stop", "Stopp", "started_task", _s25_34, "stopped_task", "Suksessfullt stoppet oppgave", "resumed_task", _s25_36, "now", "N\xe5", _s16_157, _s16_158, "timer", "Tidtaker", "manual", "Manuell", "budgeted", "Budgeted", "start_time", "Starttid", "end_time", "Sluttid", "date", "Dato", "times", "Tider", "duration", "Varighet", "new_task", "Ny Oppgave", "created_task", "Suksessfullt opprettet oppgave", "updated_task", "Suksessfullt oppdatert oppgave", "archived_task", "Arkiverte oppgave", "deleted_task", "Slettet oppgave", "restored_task", "Gjenopprettet oppgave", "archived_tasks", "Arkiverte :count oppgaver", "deleted_tasks", "Slettet :count oppgaver", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", "Opprettet prosjekt", "updated_project", "Oppdaterte prosjekt", _s16_159, "Arkiverte prosjekt", "deleted_project", "Slettet prosjekt", _s16_160, "Gjenopprettet prosjekt", _s17_95, "Arkiverte :count prosjekter", _s16_161, "Slettet :count prosjekter", _s17_96, _s37_10, "new_project", "Nytt Prosjekt", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "klikk her", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "L\xe5st", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Bunntekst", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Tilpass Utvalg", "date_range", "Datoperiode", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Denne m\xe5neden", "last_month", "Siste m\xe5ned", "this_year", "Dette \xc5ret", "last_year", "Siste \xe5r", "custom", "Egendefiner", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Se faktura", "convert", "Convert", "more", "More", "edit_client", "Rediger Kunde", "edit_product", "Endre produkt", "edit_invoice", "Rediger faktura", "edit_quote", "Endre tilbud", "edit_payment", "Rediger Betaling", "edit_task", "Rediger Oppgave", "edit_expense", "Edit Expense", "edit_vendor", "Rediger Leverand\xf8r", "edit_project", "Rediger Prosjekt", _s22_, "Rediger Gjentakende Utgift", _s20_47, _s20_48, "billing_address", "Fakturerings Adresse", _s16_164, "Leveringsadresse", "total_revenue", "Sum omsetning", "average_invoice", "Gjennomsnittlige fakturaer", "outstanding", "Utest\xe5ende", "invoices_sent", _s22_54, "active_clients", "aktive kunder", "close", "Lukk", "email", "E-post", "password", "Passord", "url", "URL", "secret", "Secret", "name", "Navn", "logout", "Logg ut", "login", "Logg inn", "filter", "Filter", "sort", "Sort", "search", "S\xf8k", "active", "Aktiv", "archived", "Arkivert", "deleted", "Slettet", "dashboard", "Skrivebord", "archive", "Arkiv", "delete", "Slett", "restore", "Gjenopprette", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Stigende", "descending", "Synkende", "save", "Lagre", _s17_100, _s17_101, "paid_to_date", "Betalt til Dato", "balance_due", "Gjenst\xe5ende", "balance", "Balanse", "overview", "Overview", "details", "Detaljer", "phone", "Telefon", "website", "Nettside", "vat_number", "MVA-nummer", "id_number", "Id nummer", "create", "Lag", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakter", "additional", "Additional", "first_name", "Fornavn", "last_name", "Etternavn", "add_contact", "Legg til kontakt", "are_you_sure", "Er du sikker?", "cancel", "Avbryt", "ok", "Ok", "remove", "Fjern", _s16_170, _s16_171, "product", "Produkt", "products", "Produkter", "new_product", "Nytt Produkt", "created_product", "Produkt lagret", "updated_product", "Produkt oppdatert", _s16_172, "Produkt arkivert", "deleted_product", "Slettet produkt", _s16_173, "Gjenopprettet produkt", _s17_102, _s37_17, _s16_174, "Slettet :count produkter", _s17_103, _s37_11, "product_key", "Produkt", "notes", "Notater", "cost", "Kostnad", "client", "Kunde", "clients", "Kunder", "new_client", "Ny Kunde", "created_client", "Opprettet kunde", "updated_client", "Oppdaterte kunde", "archived_client", "Arkiverte kunde", _s16_175, "Arkiverte :count kunder", "deleted_client", "Slettet kunde", "deleted_clients", "Slettet :count kunder", "restored_client", "Gjenopprettet kunde", _s16_176, _s36_7, "address1", "Gate", "address2", "Husnummer", "city", "By", "state", "Fylke", "postal_code", "Postnummer", "country", "Country", "invoice", "Faktura", "invoices", "Fakturaer", "new_invoice", "Ny faktura", "created_invoice", "Faktura opprettet", "updated_invoice", "Faktura oppdatert", _s16_177, "Faktura arkivert", "deleted_invoice", "Faktura slettet", _s16_178, "Suksessfullt gjenopprettet faktura", _s17_104, "Fakturaer arkivert", _s16_179, "Slettet :count fakturaer", _s17_105, _s37_12, "emailed_invoice", "E-postfaktura sendt", "emailed_payment", _s28_53, "amount", "Bel\xf8p", "invoice_number", "Fakturanummer", "invoice_date", _s16_223, "discount", "Rabatter:", "po_number", "Ordrenummer", "terms", "Vilk\xe5r", "public_notes", "Offentlig notater", "private_notes", "Private notater", "frequency", "Frekvens", "start_date", "Startdato", "end_date", "Sluttdato", "quote_number", "Tilbudsnummer", "quote_date", "Tilbudsdato", "valid_until", "Gyldig til", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Beskrivelse", "unit_cost", "Stykkpris", "quantity", "Antall", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon (arbeid)", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Forfallsdato", _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Totalt", "percent", "Prosent", "edit", "Endre", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Oppgavesats", "settings", "Innstillinger", "language", "Language", "currency", "Currency", "created_at", "Dato Opprettet", "created_on", "Created On", "updated_at", "Updated", "tax", "Skatt", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Forfalt", "draft", "Kladd", "sent", "Sendt", "viewed", "Viewed", "approved", "Approved", "partial", "Delvis/Depositum", "paid", "Betalt", "mark_sent", "Merk som Sendt", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Ferdig", _s37_13, _s37_14, "dark_mode", "M\xf8rk Modus", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivitet", _s16_182, _s16_183, "clone", "Kopier", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Betalingsvilk\xe5r", "payment_date", "Betalingsdato", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Kundeportal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktivert", "recipients", "Mottakere", "initial_email", "F\xf8rste E-post", "first_reminder", "F\xf8rste P\xe5minnelse", "second_reminder", "Andre P\xe5minnelse", "third_reminder", _s17_152, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Mal", "send", "Send", "subject", "Emne", "body", "Body", "send_email", "Send e-post", "email_receipt", "Send betalingskvittering som e-post til kunden", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Tilpass", "history", "Historie", "payment", "Betaling", "payments", "Betalinger", "refunded", "Refunded", "payment_type", "Betalingsmetode", _s21_57, "Transaksjonsreferanse", "enter_payment", "Oppgi betaling", "new_payment", "Oppgi Betaling", "created_payment", "Betaling opprettet", "updated_payment", "Suksessfullt oppdatert betaling", _s16_190, "Betaling arkivert", "deleted_payment", _s16_224, _s16_191, "Suksessfullt gjenopprettet betaling", _s17_109, "Arkiverte :count betalinger", _s16_192, "Slettet :count betalinger", _s17_110, _s37_15, "quote", "Pristilbud", "quotes", "Pristilbud", "new_quote", "Nytt tilbud", "created_quote", "Tilbud opprettet", "updated_quote", "Tilbud oppdatert", "archived_quote", "Tilbud arkivert", "deleted_quote", "Tilbud slettet", "restored_quote", "Suksessfullt gjenopprettet tilbud", "archived_quotes", "Arkiverte :count tilbud", "deleted_quotes", "Slettet :count tilbud", "restored_quotes", _s35_13, "expense", "Utgift", "expenses", "Utgifter", "vendor", "Leverand\xf8r", "vendors", "Leverand\xf8rer", "task", "Oppgave", "tasks", "Oppgaver", "project", "Prosjekt", "projects", "Prosjekter", "activity_1", ":user opprettet kunde :client", "activity_2", ":user arkiverte kunde :client", "activity_3", ":user slettet kunde :client", "activity_4", ":user opprettet faktura :invoice", "activity_5", ":user oppdaterte faktura :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user arkiverte faktura :invoice", "activity_9", ":user slettet faktura :invoice", "activity_10", _s85_0, "activity_11", ":user oppdaterte betaling :payment", "activity_12", ":user arkiverte betaling :payment", "activity_13", ":user slettet betaling :payment", "activity_14", ":user la inn :credit kredit", "activity_15", ":user oppdaterte :credit kredit", "activity_16", ":user arkiverte :credit kredit", "activity_17", ":user slettet :credit kredit", "activity_18", ":user opprettet tilbud :quote", "activity_19", ":user oppdaterte tilbud :quote", "activity_20", _s50_4, "activity_21", ":contact viste tilbud :quote", "activity_22", ":user arkiverte tilbud :quote", "activity_23", ":user slettet tilbud :quote", "activity_24", ":user gjenopprettet tilbud :quote", "activity_25", ":user gjenopprettet faktura :invoice", "activity_26", ":user gjenopprettet kunde :client", "activity_27", ":user gjenopprettet betaling :payment", "activity_28", ":user gjenopprettet :credit kredit", "activity_29", _s42_9, "activity_30", ":user opprettet leverand\xf8r :vendor", "activity_31", ":user arkiverte leverand\xf8r :vendor", "activity_32", ":user slettet leverand\xf8r :vendor", "activity_33", ":user gjenopprettet leverand\xf8r :vendor", "activity_34", ":user opprettet utgift :expense", "activity_35", ":user arkiverte utgift :expense", "activity_36", ":user slettet utgift :expense", "activity_37", ":user gjenopprettet utgift :expense", "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", ":user opprettet oppgave :task", "activity_43", ":user oppdaterte oppgave :task", "activity_44", ":user arkiverte oppgave :task", "activity_45", ":user slettet oppgave :task", "activity_46", ":user gjenopprettet oppgave :task", "activity_47", ":user oppdaterte utgift :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Engangs Passord", "emailed_quote", _s23_52, "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "Alle", "select", "Velg", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Fakturanummer-teller", _s20_52, _s20_53, _s20_54, "Tilbudsnummer-teller", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Type", "invoice_amount", "Invoice Amount", _s16_197, "Forfallsdato", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Fakturer", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Skattenavn", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Bel\xf8p", "age", "Alder", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, "Utgiftskategori", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "pl", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importuj dane", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Nieprzypisano", "partial_value", _s49_, "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Aktywuj", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Ustaw subdomen\u0119 lub wy\u015bwietl faktur\u0119 na swojej stronie.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Bezpiecze\u0144stwo", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Pon\xf3w zaproszenie", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Zwr\xf3cono p\u0142atno\u015b\u0107", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "Ten kwarta\u0142", "last_quarter", "Poprzedni kwarta\u0142", "to_update_run", "To update run", _s18_17, "Konwertuj do faktury", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Fakturuj zadanie", "invoice_expense", "Faktura na wydatek", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "Kwota przeliczona", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Domy\u015blne dokumenty", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ukryj", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolumna", "sample", "Przyk\u0142ad", "map_to", "Map To", "import", "Importuj", _s25_1, _s29_1, "select_file", "Wybierz plik", _s16_32, _s16_33, "csv_file", "Plik CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nie zap\u0142acono", "white_label", "White Label", "delivery_note", "Dow\xf3d dostawy", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Zaliczka", "invoice_total", "Faktura og\xf3\u0142em", "quote_total", "Suma oferty", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Ostrze\u017cenie", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "Kod CVV", "client_name", "Nazwa klienta", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Kategorie wydatk\xf3w", _s20_20, "Nowa kategoria wydatk\xf3w", _s21_18, _s21_19, _s24_11, "Kategoria wydatk\xf3w zosta\u0142a utworzona", _s24_12, "Kategoria wydatk\xf3w zosta\u0142a zaktualizowana", _s25_5, "Kategoria wydatk\xf3w zosta\u0142a zarchiwizowana", _s24_13, "Usuni\u0119to kategori\u0119", _s24_14, _s37_2, _s25_6, "Przywr\xf3cono kategori\u0119 wydatk\xf3w", _s27_8, "Zarchiwizowana :count kategorii wydatk\xf3w", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Utw\xf3rz faktur\u0119", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Oznacz jako aktywn\u0105", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Odnawialna faktura", _s18_29, "Faktury odnawialne", _s21_25, "Nowa faktura odnawialna", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Odnawialna faktura zosta\u0142a zarchiwizowana", _s25_14, "Odnawialna faktura zosta\u0142a usuni\u0119ta.", _s25_15, _s38_7, _s26_6, "Odnawialna faktura zosta\u0142a przywr\xf3cona", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Zysk", "line_item", "Element na li\u015bcie", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Zobacz portal", "copy_link", "Copy Link", "token_billing", "Zapisz dane karty", _s24_17, _s24_18, "always", "Zawsze", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Numer klienta", "auto_convert", "Auto Convert", "company_name", "Nazwa firmy", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "Wysy\u0142ka maili powiod\u0142a si\u0119", "emailed_quotes", "Wysy\u0142ka ofert powiod\u0142a si\u0119", "emailed_credits", _s28_52, "gateway", "Dostawca p\u0142atno\u015bci", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Godziny", "statement", "Wyci\u0105g", "taxes", "Podatki", "surcharge", "Dop\u0142ata", "apply_payment", "Apply Payment", "apply", "Zastosuj", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Do", "health_check", "Health Check", "payment_type_id", "Typ p\u0142atno\u015bci", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Zako\u0144czone", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Nadchodz\u0105ce faktury", _s17_43, _s17_44, "recent_payments", "Ostatnie p\u0142atno\u015bci", "upcoming_quotes", "Nadchodz\u0105ce oferty", "expired_quotes", "Wygas\u0142e oferty", "create_client", "Create Client", "create_invoice", "Utw\xf3rz Faktur\u0119", "create_quote", "Stw\xf3rz ofert\u0119", "create_payment", "Create Payment", "create_vendor", "Utw\xf3rz dostawc\u0119", "update_quote", "Update Quote", "delete_quote", "Usu\u0144 ofert\u0119", "update_invoice", "Update Invoice", "delete_invoice", "Usu\u0144 faktur\u0119", "update_client", "Update Client", "delete_client", "Usu\u0144 klienta", "delete_payment", "Usu\u0144 p\u0142atno\u015b\u0107", "update_vendor", "Update Vendor", "delete_vendor", "Usu\u0144 dostawc\u0119", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Usu\u0144 wydatek", "create_task", "Stw\xf3rz zadanie", "update_task", "Update Task", "delete_task", "Usu\u0144 zadanie", "approve_quote", "Approve Quote", "off", "Wy\u0142aczono", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Darmowe", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "Tokeny API", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokeny", "new_token", "New Token", "edit_token", "Edytuj token", "created_token", "Token zosta\u0142 utworzony", "updated_token", "Token zosta\u0142 zaktualizowany", "archived_token", "Token zosta\u0142 zarchiwizowany", "deleted_token", "Token zosta\u0142 usuni\u0119ty", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Wy\u015blij faktur\u0119", "email_quote", "Wy\u015blij ofert\u0119", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "Wy\u015bwietl PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Nazwa kontaktu", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Edytuj warunki p\u0142atno\u015bci", _s20_29, "Utworzono termin p\u0142atno\u015bci", _s20_30, "Zaktualizowano termin p\u0142atno\u015bci", _s21_28, "Zarchiwizowano termin p\u0142atno\u015bci", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", "Zaloguj si\u0119 przez email", "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kwota kredytu", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Doliczanie do kwoty", "inclusive", "Wliczanie w kwot\u0119", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Szukaj w firmie", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Zwrot p\u0142atno\u015bci", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Pe\u0142na nazwa", _s17_55, "Miasto/wojew\xf3dztwo/kod pocztowy", _s17_57, "Kod pocztowy/Miasto/Wojew\xf3dztwo", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 dni", "age_group_30", "30 - 60 dni", "age_group_60", "60 - 90 dni", "age_group_90", "90 - 120 dni", "age_group_120", "ponad 120 dni", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Szczeg\xf3\u0142y faktury", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Uprawnienia", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count wys\u0142ana faktura", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Zastosuj licencj\u0119", "cancel_account", "Anuluj konto", _s22_19, "Ostrze\u017cenie: Nie mo\u017cna cofn\u0105\u0107 tej operacji, wszystkie twoje dane zostan\u0105 usuni\u0119te.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Nag\u0142\xf3wek", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Propozycje", "tickets", "Tickets", _s16_69, "Powtarzalne wyceny", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, "Zarz\u0105dzanie kontem", "credit_date", "Data kredytu", "credit", "Kredyt", "credits", "Kredyty", "new_credit", "Wprowad\u017a kredyt", "edit_credit", "Edytuj kredyt", "created_credit", "Kredyt zosta\u0142 utworzony", "updated_credit", "Zaktualizowano kredyt", "archived_credit", "Kredyt zarchiwizowano", "deleted_credit", "Kredyt zosta\u0142 usuni\u0119ty", "removed_credit", _s27_21, "restored_credit", "Kredyt zosta\u0142 przywr\xf3cony", _s16_71, "Zarchiwizowano :count kredyty/kredyt\xf3w", "deleted_credits", "Usuni\u0119to :count kredyty/kredyt\xf3w", _s16_72, _s36_3, "current_version", "Aktualna wersja", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Wi\u0119cej informacji", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nowa firma", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reset", "number", "Number", "export", "Eksport", "chart", "Wykres", "count", "Count", "totals", "Suma", "blank", "Puste", "day", "Dzie\u0144", "month", "Miesi\u0105c", "year", "Rok", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupuj wed\u0142ug", "credit_balance", "Saldo kredytowe", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Numer telefonu kontaktu", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Numer klienta", "assigned_to", "Assigned to", "created_by", "Utworzono przez :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolumny", "aging", "Odk\u0142adanie", "profit_and_loss", "Zysk i strata", "reports", "Raporty", "report", "Raport", "add_company", "Dodaj firm\u0119", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Pomoc", "refund", "Zwrot", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Email kontaktowy", "multiselect", "Multiselect", "entity_state", "Stan", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Wiadomo\u015b\u0107", "from", "Od", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "forum wsparcia", "about", "About", "documentation", "Dokumentacja", "contact_us", "Skontaktuj si\u0119 z nami", "subtotal", "Suma warto\u015bci netto", "line_total", "Warto\u015b\u0107", "item", "Pozycja", "credit_email", "Credit Email", "iframe_url", _s18_137, "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Tak", "no", "Nie", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Podgl\u0105d", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "U\u017cytkownik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Wybierz klienta", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Ustawienia podatk\xf3w", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Zmie\u0144", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Wy\u015blij", _s16_115, "Odzyskaj swoje has\u0142o", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Zaplanuj", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dni", "invoice_email", "Email faktury", "payment_email", "Email p\u0142atno\u015bci", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Email oferty", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, "Zezw\xf3l u\u017cytkownikowi na zarz\u0105dzanie u\u017cytkownikami, edytowanie ustawie\u0144 oraz wszystkich danych.", "user_management", "Zarz\u0105dzanie u\u017cytkownikami", "users", "U\u017cytkownicy", "new_user", "Nowy u\u017cytkownik", "edit_user", "Edytuj u\u017cytkownika", "created_user", _s25_22, "updated_user", "U\u017cytkownik zosta\u0142 zaktualizowany", "archived_user", "U\u017cytkownik zosta\u0142 zarchiwizowany", "deleted_user", "U\u017cytkownik zosta\u0142 usuni\u0119ty", "removed_user", _s25_25, "restored_user", "U\u017cytkownik zosta\u0142 przywr\xf3cony", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Ustawienia og\xf3lne", "invoice_options", "Opcje faktury", _s17_70, 'Ukryj pole "Zap\u0142acono dotychczas"', _s22_27, 'Wy\u015bwietlaj "Zap\u0142acono dotychczas" tylko przy tych fakturach, do kt\xf3rych otrzymano p\u0142atno\u015b\u0107.', _s23_17, "Za\u0142\u0105czniki", _s28_15, "Wstaw do faktury za\u0142\u0105czniki graficzne.", _s16_124, "Poka\u017c nag\u0142\xf3wek na", _s16_125, "Poka\u017c stopk\u0119 na", "first_page", "Pierwsza strona", "all_pages", "Wszystkie strony", "last_page", "Ostatnia strona", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "G\u0142\xf3wny kolor", "secondary_color", "Dodatkowy kolor", "page_size", "Rozmiar strony", "font_size", "Rozmiar fonta", "quote_design", "Quote Design", "invoice_fields", "Pola faktury", "product_fields", "Pola produkt\xf3w", "invoice_terms", "Warunki do faktury", "invoice_footer", "Stopka faktury", "quote_terms", "Warunki oferty", "quote_footer", "Stopka oferty", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Automatycznie konwertuj", _s23_20, "Utw\xf3rz automatycznie faktur\u0119 z oferty zaakceptowanej przez klienta.", _s17_72, _s17_73, "freq_daily", "Codziennie", "freq_weekly", "Co tydzie\u0144", "freq_two_weeks", "Co dwa tygodnie", "freq_four_weeks", "Co cztery tygodnie", "freq_monthly", "Co miesi\u0105c", "freq_two_months", "Dwa miesi\u0105ce", _s17_74, "Co trzy miesi\u0105ce", _s16_126, "Four months", "freq_six_months", "Co sze\u015b\u0107 miesi\u0119cy", "freq_annually", "Co rok", "freq_two_years", "Dwa lata", _s16_127, "Three Years", "never", "Nigdy", "company", "Company", _s17_75, "Wygenerowane numery", "charge_taxes", "Obci\u0105\u017c podatkami", "next_reset", "Nast\u0119pny reset", "reset_counter", "Zresetuj licznik", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "W\u0142asny CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, "Przycisk wyboru do warunk\xf3w faktury", _s30_5, "Wymagaj od klienta potwierdzenia, \u017ce akceptuje warunki faktury.", _s23_21, "Przycisk wyboru do warunk\xf3w oferty", _s28_16, "Wymagaj od klienta potwierdzenia, \u017ce akceptuje warunki oferty.", _s25_28, "Podpis na fakurze", _s30_6, "Wymagaj od klienta podpisania faktury", _s23_22, "Podpis na ofercie", _s22_29, "Faktury chronione has\u0142em", _s27_23, "Zezwala na utworzenie hase\u0142 dla ka\u017cdego kontaktu. Je\u015bli has\u0142o zostanie ustanowione, u\u017cytkownik b\u0119dzie musia\u0142 poda\u0107 has\u0142o, aby przegl\u0105da\u0107 faktury.", "authorization", "Autoryzacja", "subdomain", "Subdomena", "domain", "Domena", "portal_mode", "Portal Mode", "email_signature", "Z wyrazami szacunku,", _s24_21, _s86_, "plain", "Zwyk\u0142y", "light", "Jasny", "dark", "Ciemny", "email_design", "Motyw email", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Aktywuj Markup", "reply_to_email", "Odpowiedz do:", "reply_to_name", "Reply-To Name", "bcc_email", "UDW Email", "processed", "Processed", "credit_card", "Karta Kredytowa", "bank_transfer", "Przelew bankowy", "priority", "Priorytet", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktywuj min", "enable_max", "Aktywuj max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Aktualizuj adres", _s19_28, "Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji", "rate", "Stawka", "tax_rate", "Stawka podatkowa", "new_tax_rate", "Nowa stawka podatkowa", "edit_tax_rate", "Edytuj stawk\u0119 podatkow\u0105", _s16_133, _s29_8, _s16_134, _s29_9, _s17_82, "Zarchiwizowano stawk\u0119 podatkow\u0105", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Automatycznie uzupe\u0142niaj produkty", _s18_64, "Wybieranie produktu automatycznie uzupe\u0142ni opis i kwot\u0119", "update_products", "Automatycznie aktualizuj produkty", _s20_44, "Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produkt\xf3w", _s16_136, _s16_137, _s21_47, "Automatycznie zamieniaj ceny produktu na walut\u0119 klienta", "fees", "Op\u0142aty", "limits", "Limity", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Wy\u0142\u0105czono", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Niedziela", "monday", "Poniedzia\u0142ek", "tuesday", "Wtorek", "wednesday", "\u015aroda", "thursday", "Czwartek", "friday", "Pi\u0105tek", "saturday", "Sobota", "january", "Stycze\u0144", "february", "Luty", "march", "Marzec", "april", "Kwiecie\u0144", "may", "Maj", "june", "Czerwiec", "july", "Lipiec", "august", "Sierpie\u0144", "september", "Wrzesie\u0144", "october", "Pa\u017adziernik", "november", "Listopad", "december", "Grudzie\u0144", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 godzinny czas", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Grupuj", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Prze\u015blij logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Ustawienia produktu", "device_settings", "Ustawienia urz\u0105dzenia", "defaults", "Domy\u015blne", "basic_settings", "Ustawienia podstawowe", _s17_87, "Ustawienia zaawansowane", "company_details", "Dane firmy", "user_details", "Dane u\u017cytkownika", "localization", "Lokalizacja", "online_payments", "P\u0142atno\u015bci online", "tax_rates", "Stawki podatkowe", "notifications", "Powiadomienia", "import_export", "Import | Eksport danych", "custom_fields", "Dostosowane pola", "invoice_design", "Motyw faktury", "buy_now_buttons", "Przyciski Kup Teraz", "email_settings", "Ustawienia e-mail", _s23_28, "Szablony i przypomnienia", _s22_30, _s20_46, _s19_34, "Wizualizacje danych", "price", "Cena", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Warunki korzystania z Serwisu", "privacy_policy", "Polityka prywatno\u015bci", "sign_up", "Zapisz si\u0119", "account_login", "Logowanie", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Dodaj nowy/now\u0105", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Pobierz", _s27_26, _s27_44, "take_picture", "Zr\xf3b zdj\u0119cie", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenty", "new_document", "Nowy dokument", "edit_document", "Edytuj dokument", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Data obci\u0105\u017cenia", "pending", "Oczekuj\u0119", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Skonwertowano", _s24_27, "Dodaj dokumenty do faktury", "exchange_rate", "Kurs wymiany", _s16_151, "Konwertuj walut\u0119", "mark_paid", "Oznacz jako zap\u0142acon\u0105", "category", "Kategoria", "address", "Adres", "new_vendor", "Nowy dostawca", "created_vendor", "Dostawca zosta\u0142 utworzony", "updated_vendor", "Zaktualizowano dostawc\u0119", "archived_vendor", "Dostawca zosta\u0142 zarchiwizowany", "deleted_vendor", "Dostawca zosta\u0142 usuni\u0119ty", "restored_vendor", "Dostawca zosta\u0142 przywr\xf3cony", _s16_152, "Zarchiwizowano :count dostawc\xf3w", "deleted_vendors", "Usuni\u0119to :count dostawc\xf3w", _s16_153, _s36_5, "new_expense", "Dodaj wydatek", "created_expense", "Wydatek zosta\u0142 utworzony", "updated_expense", "Wydatek zosta\u0142 zaktualizowany", _s16_154, _s30_41, "deleted_expense", _s24_56, _s16_155, "Wydatek zosta\u0142 przywr\xf3cony", _s17_93, _s30_41, _s16_156, _s24_56, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Zafakturowano", "logged", "Zapisano", "running", "W trakcie", "resume", "Wzn\xf3w", "task_errors", "Prosz\u0119 skoryguj nak\u0142adaj\u0105ce si\u0119 czasy", "start", "Rozpocznij", "stop", "Zatrzymaj", "started_task", _s25_34, "stopped_task", "Zako\u0144czono wykonywanie zadania", "resumed_task", _s25_36, "now", "Teraz", _s16_157, _s16_158, "timer", "Odliczanie czasu", "manual", "Wprowad\u017a r\u0119cznie", "budgeted", "Budgeted", "start_time", "Czas rozpocz\u0119cia", "end_time", "Zako\u0144czono", "date", "Data", "times", "Razy/Okresy", "duration", "Czas trwania", "new_task", "Nowe zadanie", "created_task", "Pomy\u015blnie utworzono zadanie", "updated_task", "Pomy\u015blnie zaktualizowano zadanie", "archived_task", "Zadania zosta\u0142o zarchiwizowane", "deleted_task", "Usuni\u0119to zadanie", "restored_task", "Zadanie zosta\u0142o przywr\xf3cone", "archived_tasks", "Zarchiwizowano :count zadania/zada\u0144", "deleted_tasks", "Usuni\u0119to :count zadania/zada\u0144", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", "Utworzono projekt", "updated_project", "Zaktualizowano projekt", _s16_159, "Zarchiwizowano projekt", "deleted_project", "Usuni\u0119to projekt", _s16_160, "Przywr\xf3cono projekt", _s17_95, "Zarchiwizowano :count projekt\xf3w", _s16_161, "Usuni\u0119to :count projekty/projekt\xf3w", _s17_96, _s37_10, "new_project", "Nowy projekt", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "kliknij tutaj", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "\u015arednia", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Stopka", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", "Zaloguj si\u0119 przez Google", "today", "Today", "custom_range", "Okre\u015blony okres", "date_range", "Zakres czasowy", "current", "Obecny", "previous", "Poprzedni", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Ten miesi\u0105c", "last_month", "Ostatni miesi\u0105c", "this_year", "Ten rok", "last_year", "Ostatni rok", "custom", "Dostosowanie", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Zobacz faktur\u0119", "convert", "Convert", "more", "Wi\u0119cej", "edit_client", "Edytuj klienta", "edit_product", "Edytuj produkt", "edit_invoice", "Edytuj faktur\u0119", "edit_quote", "Edytuj ofert\u0119", "edit_payment", "Edytuj p\u0142atno\u015b\u0107", "edit_task", "Edytuj zadanie", "edit_expense", "Edytuj wydatek", "edit_vendor", "Edytuj dostawc\u0119", "edit_project", "Edytuj projekt", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Adres rozliczeniowy", _s16_164, _s16_165, "total_revenue", "Ca\u0142kowity doch\xf3d", "average_invoice", "\u015arednia warto\u015b\u0107", "outstanding", "Zaleg\u0142o\u015bci", "invoices_sent", ":count wys\u0142anych faktur", "active_clients", "aktywni klienci", "close", "Zamknij", "email", "Email", "password", "Has\u0142o", "url", "URL", "secret", "Tajny", "name", "Nazwa", "logout", "Wyloguj si\u0119", "login", "Zaloguj", "filter", "Filtruj", "sort", "Sortuj", "search", "Szukaj", "active", "Aktywny", "archived", "Zarchiwizowano", "deleted", "Usuni\u0119te", "dashboard", "Pulpit", "archive", "Archiwum", "delete", "Usu\u0144", "restore", "Przywr\xf3\u0107", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Zapisz", _s17_100, _s17_101, "paid_to_date", "Zap\u0142acono dotychczas", "balance_due", "Do zap\u0142aty", "balance", "Saldo", "overview", "Podsumowanie", "details", "Szczeg\xf3\u0142y", "phone", "Telefon", "website", _s18_137, "vat_number", "Numer NIP", "id_number", "REGON", "create", "Utw\xf3rz", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakty", "additional", "Additional", "first_name", "Imi\u0119", "last_name", "Nazwisko", "add_contact", "Dodaj kontakt", "are_you_sure", "Jeste\u015b pewny?", "cancel", "Anuluj", "ok", "Ok", "remove", "Usu\u0144", _s16_170, _s16_171, "product", "Produkt", "products", "Produkty", "new_product", "Nowy produkt", "created_product", "Produkt zosta\u0142 utworzony", "updated_product", "Produkt zosta\u0142 zaktualizowany", _s16_172, "Produkt zosta\u0142 zarchiwizowany", "deleted_product", "Usuni\u0119to produkt", _s16_173, "Przywr\xf3cono produkt", _s17_102, _s37_17, _s16_174, "Usuni\u0119to :count produkt\xf3w", _s17_103, _s37_11, "product_key", "Produkt", "notes", "Notatki", "cost", "Koszt", "client", "Klient", "clients", "Klienci", "new_client", "Nowy klient", "created_client", "Klient zosta\u0142 utworzony", "updated_client", "Klient zosta\u0142 zaktualizowany", "archived_client", "Klient zosta\u0142 zarchiwizowany", _s16_175, "Zarchiwizowano :count klient\xf3w", "deleted_client", "Klient zosta\u0142 usuni\u0119ty", "deleted_clients", "Usuni\u0119to :count klient\xf3w", "restored_client", "Klient zosta\u0142 przywr\xf3cony", _s16_176, _s36_7, "address1", "Ulica", "address2", "Nr", "city", "Miasto", "state", "Wojew\xf3dztwo", "postal_code", "Kod pocztowy", "country", "Kraj", "invoice", "Faktura", "invoices", "Faktury", "new_invoice", "Nowa faktura", "created_invoice", "Faktura zosta\u0142a utworzona", "updated_invoice", "Faktura zosta\u0142a zaktualizowana", _s16_177, "Faktura zosta\u0142a zarchiwizowana", "deleted_invoice", "Faktura zosta\u0142a usuni\u0119ta", _s16_178, "Faktura zosta\u0142a przywr\xf3cona", _s17_104, "Zarchiwizowano :count faktury", _s16_179, "Usuni\u0119to :count faktury", _s17_105, _s37_12, "emailed_invoice", "Faktura zosta\u0142a wys\u0142ana", "emailed_payment", _s28_53, "amount", "Kwota", "invoice_number", "Numer Faktury", "invoice_date", "Data Faktury", "discount", "Rabat", "po_number", "Numer zam\xf3wienia", "terms", "Warunki", "public_notes", "Notatki publiczne", "private_notes", "Prywatne notatki", "frequency", "Cz\u0119stotliwo\u015b\u0107", "start_date", "Pocz\u0105tkowa data", "end_date", "Ko\u0144cowa data", "quote_number", "Numer oferty", "quote_date", "Data oferty", "valid_until", "Wa\u017cny do", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Opis towaru / us\u0142ugi", "unit_cost", "Cena j. netto", "quantity", "Ilo\u015b\u0107", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon s\u0142u\u017cbowy", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Termin", _s16_180, _s16_181, "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Suma", "percent", "Procent", "edit", "Edytuj", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Stawka zadania", "settings", "Ustawienia", "language", "Language", "currency", "Waluta", "created_at", "Data utworzenia", "created_on", "Created On", "updated_at", "Updated", "tax", "Podatek", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Po terminie", "draft", "Wersja robocza", "sent", "Wys\u0142ane", "viewed", "Viewed", "approved", "Approved", "partial", "Zaliczka/Op\u0142.cz\u0119\u015b\u0107", "paid", "Zap\u0142acone", "mark_sent", "Oznacz jako wys\u0142ane", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Gotowe", _s37_13, _s37_14, "dark_mode", "Tryb ciemny", _s27_36, "Uruchom ponownie aplikacj\u0119, aby zastosowa\u0107 zmian\u0119", "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Dziennik aktywno\u015bci", _s16_182, _s16_183, "clone", "Klonuj", "loading", "Loading", "industry", "Industry", "size", "Rozmiar", "payment_terms", "Warunki p\u0142atnicze", "payment_date", "Data p\u0142atno\u015bci", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portal klienta", "show_tasks", "Poka\u017c zadania", "email_reminders", "Email Reminders", "enabled", "Aktywny", "recipients", "Odbiorcy", "initial_email", "Pocz\u0105tkowy email", "first_reminder", "Pierwsze przypomnienie", "second_reminder", "Drugie przypomnienie", "third_reminder", "Trzecie przypomnienie", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Szablon", "send", "Send", "subject", "Temat", "body", "Tre\u015b\u0107", "send_email", "Wy\u015blij email", "email_receipt", "Wy\u015blij potwierdzenie zap\u0142aty do klienta", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Dostosuj", "history", "Historia", "payment", "P\u0142atno\u015b\u0107", "payments", "P\u0142atno\u015bci", "refunded", "Refunded", "payment_type", "Typ p\u0142atno\u015bci", _s21_57, "Numer referencyjny transakcji", "enter_payment", "Wprowad\u017a p\u0142atno\u015b\u0107", "new_payment", "Nowa p\u0142atno\u015b\u0107", "created_payment", "P\u0142atno\u015b\u0107 zosta\u0142a utworzona", "updated_payment", "P\u0142atno\u015b\u0107 zosta\u0142a zaktualizowana", _s16_190, "P\u0142atno\u015b\u0107 zosta\u0142\u0105 zarchiwizowana", "deleted_payment", "P\u0142atno\u015b\u0107 zosta\u0142a usuni\u0119ta", _s16_191, "P\u0142atno\u015b\u0107 zosta\u0142a przywr\xf3cona", _s17_109, "Zarchiwizowano :count p\u0142atno\u015bci", _s16_192, "Usuni\u0119to :count p\u0142atno\u015bci", _s17_110, _s37_15, "quote", "Oferta", "quotes", "Oferty", "new_quote", "Nowa oferta", "created_quote", "Oferta zosta\u0142a utworzona", "updated_quote", "Oferta zosta\u0142a zaktualizowana", "archived_quote", "Oferta zosta\u0142a zarchiwizowana", "deleted_quote", "Oferta zosta\u0142a usuni\u0119ta", "restored_quote", "Oferta zosta\u0142a przywr\xf3cona", "archived_quotes", "Zarchiwizowano :count ofert", "deleted_quotes", "Usuni\u0119to :count ofert", "restored_quotes", _s35_13, "expense", "Wydatek", "expenses", "Wydatki", "vendor", "Dostawca", "vendors", "Dostawcy", "task", "Zadanie", "tasks", "Zadania", "project", "Projekt", "projects", "Projekty", "activity_1", ":user stworzy\u0142 klienta :client", "activity_2", ":user zarchiwizowa\u0142 klienta :client", "activity_3", ":user usun\u0105\u0142 klienta :client", "activity_4", ":user stworzy\u0142 faktur\u0119 :invoice", "activity_5", ":user zaktualizowa\u0142 faktur\u0119 :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user zarchiwizowa\u0142 faktur\u0119 :invoice", "activity_9", ":user usun\u0105\u0142 faktur\u0119 :invoice", "activity_10", _s85_0, "activity_11", ":user zaktualizowa\u0142 p\u0142atno\u015b\u0107 :payment", "activity_12", ":user zarchiwizowa\u0142 p\u0142atno\u015b\u0107 :payment", "activity_13", ":user usun\u0105\u0142 p\u0142atno\u015b\u0107 :payment", "activity_14", ":user wprowadzi\u0142 kredyt :credit", "activity_15", ":user zaktualizowa\u0142 kredyt :credit", "activity_16", ":user zarchiwizowa\u0142 kredyt :credit", "activity_17", ":user usun\u0105\u0142 kredyt :credit", "activity_18", ":user stworzy\u0142 ofert\u0119 :quote", "activity_19", ":user zakatualizowa\u0142 ofert\u0119 :quote", "activity_20", _s50_4, "activity_21", ":contact wy\u015bwietli\u0142 ofert\u0119 :quote", "activity_22", ":user zarchiwizowa\u0142 ofert\u0119 :quote", "activity_23", ":user usun\u0105\u0142 ofert\u0119 :quote", "activity_24", ":user przywr\xf3ci\u0142 ofert\u0119 :quote", "activity_25", ":user przywr\xf3ci\u0142 faktur\u0119 :invoice", "activity_26", ":user przywr\xf3ci\u0142 klienta :client", "activity_27", ":user przywr\xf3ci\u0142 p\u0142atno\u015b\u0107 :payment", "activity_28", ":user przywr\xf3ci\u0142 kredyt :credit", "activity_29", _s42_9, "activity_30", ":user utworzy\u0142 dostawc\u0119 :vendor", "activity_31", ":user zarchiwizowa\u0142 dostawc\u0119 :vendor", "activity_32", ":user usun\u0105\u0142 dostawc\u0119 :vendor", "activity_33", ":user przywr\xf3ci\u0142 dostawc\u0119 :vendor", "activity_34", ":user utworzy\u0142 wydatek :expense", "activity_35", ":user zarchiwizowa\u0142 wydatek :expense", "activity_36", ":user usun\u0105\u0142 wydatek :expense", "activity_37", ":user przywr\xf3ci\u0142 wydatek :expense", "activity_39", ":user anulowa\u0142 p\u0142atno\u015b\u0107 na :payment_amount nr. :payment", "activity_40", _s64_, "activity_41", "p\u0142atno\u015b\u0107 :payment_amount (:payment) nieudana", "activity_42", ":user stworzy\u0142 zadanie :task", "activity_43", ":user zaktualizowa\u0142 zadanie :task", "activity_44", ":user zarchiwizowa\u0142 zadanie :task", "activity_45", ":user usun\u0105\u0142 zadanie :task", "activity_46", ":user przywr\xf3ci\u0142 zadanie :task", "activity_47", ":user zaktualizowa\u0142 wydatek :expense", "activity_48", ":user zaktualizowa\u0142 zg\u0142oszenie :ticket", "activity_49", ":user zamkn\u0105\u0142 zg\u0142oszenie :ticket", "activity_50", ":user po\u0142\u0105czy\u0142 zg\u0142oszenie :ticket", "activity_51", ":user rozdzieli\u0142 zg\u0142oszenie :ticket", "activity_52", ":contact otworzy\u0142 zg\u0142oszenie\xa0:ticket", "activity_53", ":contact otworzy\u0142 ponownie zg\u0142oszenie\xa0:ticket", "activity_54", ":user otworzy\u0142 zg\u0142oszenie\xa0:ticket ponownie\xa0", "activity_55", ":contact odpowiedzia\u0142 w zg\u0142oszeniu :ticket", "activity_56", ":user ogl\u0105da\u0142 zg\u0142oszenie\xa0:ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Oferta zosta\u0142a wys\u0142ana", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Wygas\u0142o", "all", "Wszystko", "select", "Wybierz", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Licznik numeru faktury", _s20_52, _s20_53, _s20_54, "Licznik numeru oferty", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Typ", "invoice_amount", "Kwota faktury", _s16_197, "Termin P\u0142atno\u015bci", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "P\u0142atno\u015b\u0107 Automatyczna", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Nazwa podatku", "tax_amount", "Podatek", "tax_paid", "Podatek zap\u0142acony", "payment_amount", "Kwota p\u0142atno\u015bci", "age", "Wiek", "is_running", "Is Running", "time_log", "Rejestr czasu", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, "Kategoria wydatku", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "pt_BR", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importar Dados", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\xdaltima Atualiza\xe7\xe3o", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Primeiro Nome do Contato", _s17_1, "\xdaltimo Nome do Contato", "order", "Order", "unassigned", "N\xe3o Designado", "partial_value", "Precisa ser maior que zero e menor que o total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Habilitar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Definir o subdom\xednio ou mostrar a fatura em seu pr\xf3prio website", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Seguran\xe7a", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Assinaturas", _s16_11, _s16_12, _s17_7, "Ediar Assinatura", _s20_1, "Assinatura criada com sucesso", _s20_2, "Assinatura atualizada com sucesso", _s21_6, "Assinatura arquivada com sucesso", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Reenviar Convite", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Devolvido", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Eccaneie o c\xf3digo de barras com um app compat\xedvel com :link", _s18_14, "Ativa\xe7\xe3o de Autentica\xe7\xe3o em 2 Fatores realizada com sucesso.", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Autentica\xe7\xe3o em 2 Fatores", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s21_97, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "\xdaltimo Quadrimestre", "to_update_run", "To update run", _s18_17, "Converter em Fatura", _s16_24, _s16_25, "invoice_project", "Faturar Projeto", "invoice_task", "Faturar Tarefa", "invoice_expense", "Faturar Despesa", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, "Eventos com Suporte", _s16_30, "Quantia Convertida", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Documentos Padr\xe3o", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ocultar", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Coluna", "sample", "Amostra", "map_to", "Map To", "import", "Importar", _s25_1, _s29_1, "select_file", "Selecione um arquivo", _s16_32, _s16_33, "csv_file", "Arquivo CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Servi\xe7o", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "N\xe3o Pago", "white_label", "White Label", "delivery_note", "Nota de Entrega", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", _s18_138, "invoice_total", "Total da Fatura", "quote_total", _s18_139, "credit_total", "Total do Cr\xe9dito", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Aviso", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Nome do Cliente", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "Status da tarefa atualizado com sucesso", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s22_71, _s20_20, _s26_51, _s21_18, _s21_19, _s24_11, "Categoria de despesas criada com sucesso", _s24_12, "Categoria de despesas atualizada com sucesso", _s25_5, "Categoria de despesas arquivada com sucesso", _s24_13, "Categoria exclu\xedda com sucesso", _s24_14, _s37_2, _s25_6, "Categoria de despesas restaurada com sucesso", _s27_8, ":count categorias de despesas arquivadas com sucesso", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "Ver altera\xe7\xf5es", "force_update", "For\xe7ar atualiza\xe7\xe3o", _s17_26, "Voc\xea est\xe1 executando a vers\xe3o mais recente, mas pode haver corre\xe7\xf5es pendentes dispon\xedveis.", "mark_paid_help", "Acompanhe se a despesa foi paga", _s18_26, "Dever\xe1 ser Faturada", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Marcar como Ativo", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Fatura Recorrente", _s18_29, "Faturas Recorrentes", _s21_25, "Nova Fatura Recorrente", _s22_12, "Editar Fatura Recorrente", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Fatura Recorrente arquivada com sucesso", _s25_14, "Fatura recorrente exclu\xedda com sucesso", _s25_15, _s38_7, _s26_6, "Fatura Recorrente restaurada com sucesso", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Lucro", "line_item", "Item de linha", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Aberto", _s30_0, "Falha de reconcilia\xe7\xe3o", _s30_1, "Sucesso de Reconcilia\xe7\xe3o", "gateway_success", "Sucesso do Portal", "gateway_failure", "Falha do Portal", "gateway_error", "Erro do Portal", "email_send", "Email Enviado", _s17_33, "Fila de Repeti\xe7\xe3o de Email", "failure", "Falha", "quota_exceeded", "Cota excedida", _s16_42, "Falha Upstream", "system_logs", "Logs de Sistema", "view_portal", "Visualizar portal", "copy_link", "Link de c\xf3pia", "token_billing", "Salvar detalhes do cart\xe3o", _s24_17, "Bem-vindo ao Invoice Ninja", "always", "Sempre", "optin", "Autorizar", "optout", "Desautorizar", "label", "R\xf3tulo", "client_number", "N\xfamero do Cliente", "auto_convert", "Auto Convers\xe3o", "company_name", "Nome da Empresa", "reminder1_sent", "Lembrete 1 Enviado", "reminder2_sent", "Lembrete 2 Enviado", "reminder3_sent", "Lembrete 3 Enviado", _s18_33, "\xdaltimo Lembrete Enviado", "pdf_page_info", "P\xe1gina: atual de: total", _s16_44, "Faturas enviadas por email com sucesso", "emailed_quotes", "Or\xe7amentos enviados por email com sucesso", "emailed_credits", "Cr\xe9ditos enviados por e-mail com sucesso", "gateway", "Gateway", "view_in_stripe", "Ver em Listra", "rows_per_page", "Linhas por P\xe1gina", "hours", "Horas", "statement", "Declara\xe7\xe3o", "taxes", "Impostos", "surcharge", "Sobretaxa", "apply_payment", "Aplicar Pagamento", "apply", "Aplicar", "unapplied", "N\xe3o Aplicado", "select_label", "Selecione o R\xf3tulo", "custom_labels", _s24_57, "record_type", _s16_260, "record_name", "Nome do Registro", "file_type", "Tipo de Arquivo", "height", "Altura", "width", "Largura", "to", "Para", "health_check", "Exame de sa\xfade", "payment_type_id", _s17_153, "last_login_at", "\xdaltimo login em", "company_key", "Chave da Empresa", "storefront", "Vitrine", "storefront_help", "Habilite aplicativos de terceiros para criar faturas", "client_created", "Cliente Criado", _s20_23, "Email de pagamento online", _s20_25, "Email de pagamento manual", "completed", "Completado", "gross", "Bruto", "net_amount", "Valor l\xedquido", "net_balance", "Saldo L\xedquido", "client_settings", "Configura\xe7\xf5es do cliente", _s17_35, "Faturas Selecionadas", _s17_37, "Pagamentos Selecionados", "selected_quotes", "Cota\xe7\xf5es Selecionadas", "selected_tasks", "Tarefas Selecionadas", _s17_39, "Despesas Selecionadas", _s17_41, "Pr\xf3ximas Faturas", _s17_43, "Faturas Vencidas", "recent_payments", _s19_82, "upcoming_quotes", _s19_83, "expired_quotes", _s20_94, "create_client", "Criar Cliente", "create_invoice", "Criar Fatura", "create_quote", "Criar Or\xe7amento", "create_payment", "Criar Pagamento", "create_vendor", _s16_261, "update_quote", "Atualizar Cota\xe7\xe3o", "delete_quote", "Excluir Or\xe7amento", "update_invoice", "Atualizar Fatura", "delete_invoice", "Excluir Fatura", "update_client", "Atualizar Cliente", "delete_client", "Excluir Cliente", "delete_payment", "Excluir Pagamento", "update_vendor", "Atualizar Fornecedor", "delete_vendor", "Excluir Fornecedor", "create_expense", "Criar Despesa", "update_expense", "Atualizar Despesa", "delete_expense", "Excluir Despesa", "create_task", "Criar Tarefa", "update_task", "Atualizar Tarefa", "delete_task", "Excluir Tarefa", "approve_quote", "Aprovar Cota\xe7\xe3o", "off", "Desligado", "when_paid", "Quando Pago", "expires_on", "Expira em", "free", "Gratuito", "plan", "Plano", "show_sidebar", "Exibir Barra Lateral", "hide_sidebar", _s21_98, "event_type", "Tipo de Evento", "target_url", "Alvo", "copy", "C\xf3pia", "must_be_online", "Reinicie o aplicativo assim que estiver conectado \xe0 internet", _s17_45, "Os crons precisam ser habilitados", "api_webhooks", "API Webhooks", "search_webhooks", "Pesquisar: contar Webhooks", "search_webhook", "Pesquisar 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nova Webhook", "edit_webhook", "Editar Webhook", "created_webhook", "Webhook Criada com Sucesso", "updated_webhook", "Webhook Atualizada com Sucesso", _s16_46, "Webhook Arquivada com Sucesso", "deleted_webhook", "Webhook Exclu\xedda com Sucesso", "removed_webhook", "Webhook Removida com Sucesso", _s16_47, "Webhook Restaurada com Sucesso", _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "Tokens de API", "api_docs", "API Docs", "search_tokens", "Pesquisar: contar Tokens", "search_token", "Pesquisar 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "Novo Token", "edit_token", "Editar Token", "created_token", "Token criado com sucesso", "updated_token", "Token atualizado com sucesso", "archived_token", "Token arquivado com sucesso", "deleted_token", "Token exclu\xeddo com sucesso", "removed_token", "Token Removido com Sucesso", "restored_token", "Token Restaurado com Sucesso", "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, "Registro de cliente", _s24_19, "Permitir que os clientes se auto-registrem no portal", _s21_27, "Personalizar & Visualizar", "email_invoice", "Enviar Fatura por Email", "email_quote", "Enviar Or\xe7amento por Email", "email_credit", "Cr\xe9dito de Email", "email_payment", "Pagamento por Email", _s20_28, "O cliente n\xe3o tem um endere\xe7o de e-mail definido", "ledger", "Ledger", "view_pdf", "Ver PDF", "all_records", "Todos os registros", "owned_by_user", "Propriedade do usu\xe1rio", _s16_50, _s16_262, "contact_name", "Nome do Contato", "use_default", "Use o padr\xe3o", _s16_52, _s17_154, "number_of_days", "N\xfamero de dias", _s23_10, "Configurar as condi\xe7\xf5es de pagamento", "payment_term", _s21_99, _s16_53, "Novo Condi\xe7\xe3o de Pagamento", _s17_49, "Editar Condi\xe7\xe3o de Pagamento", _s20_29, "Condi\xe7\xf5es de pagamento criadas com sucesso", _s20_30, "Condi\xe7\xf5es de pagamento atualizadas com sucesso", _s21_28, "Condi\xe7\xf5es de pagamento arquivadas com sucesso", _s20_31, "Condi\xe7\xe3o de pagamento exclu\xeddas com sucesso", _s20_32, "Condi\xe7\xe3o de pagamento removida com sucesso", _s21_29, "Condi\xe7\xe3o de pagamento restaurado com sucesso", _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", "Entrar com email", "change", "Mudar", _s23_12, "Mudar para o layout m\xf3vel?", _s24_20, "Mudar para o layout da \xe1rea de trabalho?", "send_from_gmail", "Enviar do Gmail", "reversed", "Invertido", "cancelled", "Cancelado", "credit_amount", "Quantia de Cr\xe9dito", "quote_amount", "Valor da cota\xe7\xe3o", "hosted", "Hospedado", "selfhosted", "Auto-hospedado", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Ocultar Menu", "show_menu", "Exibir Menu", _s18_35, _s24_58, _s16_56, "Pesquisar Documentos", "search_designs", "Pesquisar Designs", "search_invoices", "Pesquisar Faturas", "search_clients", "Pesquisar Clientes", "search_products", "Pesquisar Produtos", "search_quotes", "Pesquisar Cota\xe7\xf5es", "search_credits", "Pesquisar Cr\xe9ditos", "search_vendors", "Pesquisar Fornecedores", "search_users", "Pesquisar Usu\xe1rios", _s16_57, "Pesquisar taxas de impostos", "search_tasks", "Pesquisar Tarefas", "search_settings", "Pesquisar Configura\xe7\xf5es", "search_projects", "Pesquisar Projetos", "search_expenses", "Pesquisar Despesas", "search_payments", "Pesquisar Pagamentos", "search_groups", "Pesquisar Grupos", "search_company", "Pesquisar Empresa", "search_document", "Pesquisar 1 Documento", "search_design", "Pesquisar 1 Design", "search_invoice", "Pesquisar 1 Fatura", "search_client", "Pesquisar 1 Cliente", "search_product", "Pesquisar 1 Produto", "search_quote", "Pesquisar 1 Cota\xe7\xe3o", "search_credit", "Pesquisar 1 Cr\xe9dito", "search_vendor", "Pesquisar 1 Fornecedor", "search_user", "Pesquisar 1 Usu\xe1rio", "search_tax_rate", "Pesquisar 1 Taxa de Imposto", "search_task", "Pesquisar 1 Tarefa", "search_project", "Pesquisar 1 Projeto", "search_expense", "Pesquisar 1 Despesa", "search_payment", "Pesquisar 1 Pagamento", "search_group", "Pesquisar 1 Grupo", "refund_payment", _s20_95, _s17_53, "Fatura Cancelada com Sucesso", _s18_37, "Faturas Canceladas com Sucesso", _s16_63, "Fatura Revertida com Sucesso", _s17_54, "Faturas Revertidas com Sucesso", "reverse", "Reverter", "full_name", "Nome Completo", _s17_55, "Cidade/Estado/CEP", _s17_57, "CEP/Cidade/Estado", "custom1", _s22_72, "custom2", _s21_100, "custom3", _s22_73, "custom4", "Quarto Personalizado", "optional", "Opcional", "license", "Licen\xe7a", "purge_data", "Limpar Dados", _s16_64, "Dados da empresa limpos com sucesso", _s18_38, "Aviso: Isto ir\xe1 apagar seus dados permanentemente, n\xe3o h\xe1 como defazer esta a\xe7\xe3o.", "invoice_balance", "Saldo da fatura", "age_group_0", "0 - 30 Dias", "age_group_30", "30 - 60 Dias", "age_group_60", "60 - 90 Dias", "age_group_90", "90 - 120 Dias", "age_group_120", "120+ Dias", "refresh", "Atualizar", "saved_design", "Design salvo com sucesso", "client_details", "Detalhes do cliente", "company_address", "Endere\xe7o da companhia", "invoice_details", "Detalhes da Fatura", "quote_details", "Detalhes da cota\xe7\xe3o", "credit_details", "Detalhes de cr\xe9dito", "product_columns", "Colunas de Produto", "task_columns", "Colunas de Tarefas", "add_field", "Adicionar campo", "all_events", "Todos os eventos", "permissions", "Permiss\xf5es", "none", "Nenhum", "owned", "Owned", "payment_success", "Pagamento realizado com sucesso", "payment_failure", "Falha de Pagamento", "invoice_sent", ":count fatura enviada", "quote_sent", "Cota\xe7\xe3o enviada", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Fatura visualizada", "quote_viewed", "Cota\xe7\xe3o visualizada", "credit_viewed", "Cr\xe9dito visualizado", "quote_approved", "Cota\xe7\xe3o aprovada", _s25_18, "Receber todas as notifica\xe7\xf5es", _s16_65, "Comprar licen\xe7a", "apply_license", "Aplicar Licen\xe7a", "cancel_account", "Excluir Conta", _s22_19, "Aviso: Isso excluir\xe1 permanentemente sua conta, n\xe3o h\xe1 como desfazer esta a\xe7\xe3o.", "delete_company", "Excluir Empresa", _s22_20, "Aviso: Isto ir\xe1 excluir permanentemente sua empresa, n\xe3o h\xe1 como desfazer esta a\xe7\xe3o.", "enabled_modules", "Enabled Modules", "converted_quote", "Cota\xe7\xe3o convertida com sucesso", "credit_design", "Design de Cr\xe9dito", "includes", "Inclui", "header", "Cabe\xe7alho", "load_design", "Carregar Design", "css_framework", "CSS Framework", "custom_designs", "Designs personalizados", "designs", "Designs", "new_design", "Novo Design", "edit_design", "Editar Design", "created_design", "Design criado com sucesso", "updated_design", "Design atualizado com sucesso", "archived_design", "Design arquivado com sucesso", "deleted_design", "Design exclu\xeddo com sucesso", "removed_design", "Design removido com sucesso", "restored_design", "Design restaurado com sucesso", _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Propostas", "tickets", "Tickets", _s16_69, "Or\xe7amentos Recorrentes", "recurring_tasks", "Tarefas Recorrentes", _s18_, "Despesas Recorrentes", _s18_39, "Gerenciamento da Conta", "credit_date", "Data do Cr\xe9dito", "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Adicionar Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", _s26_52, "updated_credit", _s30_42, "archived_credit", _s29_51, "deleted_credit", "Cr\xe9dito exclu\xeddo com sucesso", "removed_credit", "Cr\xe9dito removido com sucesso", "restored_credit", "Cr\xe9dito restaurado com sucesso", _s16_71, _s38_21, "deleted_credits", ":count cr\xe9ditos exclu\xeddos com sucesso", _s16_72, _s36_3, "current_version", "Vers\xe3o Atual", "latest_version", "\xdaltima vers\xe3o", "update_now", "Atualize agora", _s26_13, "Uma nova vers\xe3o do aplicativo da web est\xe1 dispon\xedvel", _s16_73, "Atualiza\xe7\xe3o dispon\xedvel", "app_updated", "Atualiza\xe7\xe3o completada com sucesso", "learn_more", "Saiba mais", "integrations", "Integra\xe7\xf5es", "tracking_id", "Id de rastreamento", _s17_59, "URL Webhook do Slack", "credit_footer", "Rodap\xe9 do Cr\xe9dito", "credit_terms", "Termos do Cr\xe9dito", "new_company", "Nova Empresa", "added_company", "Empresa adicionada com sucesso", "company1", "Companhia 1 Personalizada", "company2", "Companhia 2 Personalizada", "company3", "Companhia 3 Personalizada", "company4", "Companhia 4 Personalizada", "product1", "Produto 1 Personalizado", "product2", "Produto 2 Personalizado", "product3", "Produto 3 Personalizado", "product4", "Produto 4 Personalizado", "client1", "Cliente 1 Personalizado", "client2", "Cliente 2 Personalizado", "client3", "Cliente 3 Personalizado", "client4", "Cliente 4 Personalizado", "contact1", "Contato 1 Personalizado", "contact2", "Contato 2 Personalizado", "contact3", "Contato 3 Personalizado", "contact4", "Contato 4 Personalizado", "task1", "Tarefa 1 Personalizada", "task2", "Tarefa 2 Personalizada", "task3", "Tarefa 3 Personalizada", "task4", "Tarefa 4 Personalizada", "project1", "Projeto 1 Personalizado", "project2", "Projeto 2 Personalizado", "project3", "Projeto 3 Personalizado", "project4", "Projeto 4 Personalizado", "expense1", "Despesa 1 Personalizada", "expense2", "Despesa 2 Personalizada", "expense3", "Despesa 3 Personalizada", "expense4", "Despesa 4 Personalizada", "vendor1", "Vendedor 1 Personalizado", "vendor2", "Vendedor 2 Personalizado", "vendor3", "Vendedor 3 Personalizado", "vendor4", "Vendedor 4 Personalizado", "invoice1", "Fatura 1 Personalizada", "invoice2", "Fatura 2 Personalizada", "invoice3", "Fatura 3 Personalizada", "invoice4", "Fatura 4 Personalizada", "payment1", "Pagamento 1 Personalizado", "payment2", "Pagamento 2 Personalizado", "payment3", "Pagamento 3 Personalizado", "payment4", "Pagamento 4 Personalizado", "surcharge1", _s25_51, "surcharge2", _s25_52, "surcharge3", _s25_53, "surcharge4", _s25_54, "group1", "Grupo 1 Personalizado", "group2", "Grupo 2 Personalizado", "group3", "Grupo 3 Personalizado", "group4", "Grupo 4 Personalizado", "reset", "Redefinir", "number", "N\xfamero", "export", "Exportar", "chart", "Gr\xe1fico", "count", "Contagem", "totals", "Totais", "blank", "Vazio", "day", "Dia", "month", "M\xeas", "year", "Ano", "subgroup", "Subgrupo", "is_active", "Ativo", "group_by", "Agrupado por", "credit_balance", "Saldo do Cr\xe9dito", _s18_45, "\xdaltimo Login do Contato", _s17_61, "Nome Completo do Contato", "contact_phone", "Telefone de Contato", _s21_31, "Valor personalizado do contato 1", _s21_32, "Valor personalizado do contato 2", _s21_33, "Valor personalizado do contato 3", _s21_34, "Valor personalizado do contato 4", _s17_63, "Rua de envio", _s17_64, "Complemento de envio", "shipping_city", "Cidade de envio", "shipping_state", "Estado/Prov\xedncia de envio", _s20_33, "CEP de envio", _s16_103, "Pa\xeds de envio", _s16_105, "Rua de cobran\xe7a", _s16_106, "Complemento de cobran\xe7a", "billing_city", "Cidade de cobran\xe7a", "billing_state", "Estado/Prov\xedncia de cobran\xe7a", _s19_19, "CEP de cobran\xe7a", "billing_country", "Pa\xeds de cobran\xe7a", "client_id", "C\xf3d Cliente", "assigned_to", "Atribu\xeddo para", "created_by", "Criado por :name", "assigned_to_id", "Atribu\xeddo ao ID", "created_by_id", "Criado pelo ID", "add_column", "Adicionar Coluna", "edit_columns", "Editar Colunas", "columns", "Colunas", "aging", "Envelhecimento", "profit_and_loss", "Lucro e Preju\xedzo", "reports", "Relat\xf3rios", "report", "Relat\xf3rio", "add_company", _s17_155, "unpaid_invoice", "Fatura n\xe3o Paga", "paid_invoice", "Fatura Paga", _s16_107, "Or\xe7amento n\xe3o Aprovado", "help", "Ajuda", "refund", "Reembolsar", "refund_date", "Data de Reembolso", "filtered_by", "Filtrado por", "contact_email", "Email de Contato", "multiselect", "Sele\xe7\xe3o m\xfaltipla", "entity_state", "Estado", "verify_password", "Verificar Senha", "applied", "Aplicado", _s21_35, "Inclui erros recentes dos logs", _s30_4, "Recebemos sua mensagem e tentaremos responder rapidamente.", "message", "Mensagem", "from", "De", _s20_35, "Mostrar Detalhes do Produto", _s25_20, "Inclua a descri\xe7\xe3o e o custo na lista suspensa do produto", _s20_37, "A renderiza\xe7\xe3o de PDF precisa da vers\xe3o :version", _s18_48, "Ajustar Porcentagem da Multa", _s23_14, "Ajustar o percentual de taxa a contabilizar", _s18_50, _s20_96, "support_forum", "f\xf3rum de suporte", "about", "Sobre", "documentation", "Documenta\xe7\xe3o", "contact_us", "Contate-nos", "subtotal", "Subtotal", "line_total", "Total da Linha", "item", "Item", "credit_email", "E-mail de Cr\xe9dito", "iframe_url", "Website", "domain_url", "URL do Dom\xednio", _s21_36, "A senha \xe9 muito curta", _s20_38, "A senha deve conter um caractere mai\xfasculo e um n\xfamero", _s19_21, "Tarefas do Portal do Cliente", _s23_15, "Painel do Portal do Cliente", _s20_39, "Por favor digite um valor", "deleted_logo", "Logo removido com sucesso", "yes", "Sim", "no", "N\xe3o", "generate_number", "Gerar N\xfamero", "when_saved", "Quando Salvo", "when_sent", "Quando Enviado", "select_company", "Selecionar Empresa", "float", "Flutuante", "collapse", "Fechar", "show_or_hide", "Exibir/esconder", "menu_sidebar", "Menu da Barra Lateral", "history_sidebar", "Barra Lateral de Hist\xf3rico", "tablet", "Tablet", "mobile", "M\xf3vel", "desktop", "Desktop", "layout", "Layout", "view", "Visualizar", "module", "M\xf3dulo", "first_custom", _s22_72, "second_custom", _s21_100, "third_custom", _s22_73, "show_cost", "Mostrar Custo", _s17_66, _s17_67, "show_cost_help", "Exibir um campo de custo do produto para rastrear a marca\xe7\xe3o/lucro", _s21_37, "Mostrar Quantidade do Produto", _s26_15, "Mostrar um campo de quantidade de produto, caso contr\xe1rio o padr\xe3o de um", _s21_39, "Mostrar quantidade da fatura", _s26_16, "Exibir um campo de quantidade de item de linha, caso contr\xe1rio, o padr\xe3o \xe9 um", _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, "Quantidade Padr\xe3o", _s21_43, "Defina automaticamente a quantidade do item de linha para um", "one_tax_rate", "Uma taxa de imposto", "two_tax_rates", "Duas taxas de impostos", "three_tax_rates", "Tr\xeas taxas de impostos", _s16_111, "Taxa de imposto padr\xe3o", "user", "Usu\xe1rio", "invoice_tax", "Imposto da Fatura", "line_item_tax", "Imposto da Linha do Item", "inclusive_taxes", "Impostos Inclusos", _s17_68, "Tarifa do Imposto da Fatura", "item_tax_rates", "Tarifa do Imposto do Item", _s18_52, "Selecione um cliente", "configure_rates", "Configurar tarifas", _s18_53, _s18_54, "tax_settings", "Configura\xe7\xf5es de Impostos", _s18_55, "Tarifas de Impostos", "accent_color", "Cor de destaque", "switch", "Mudar", _s19_23, "Lista separada por v\xedrgulas", "options", "Op\xe7\xf5es", _s16_113, "Texto de linha \xfanica", "multi_line_text", "Texto multilinha", "dropdown", "Dropdown", "field_type", "Tipo de Campo", _s27_22, "Foi enviado um e-mail de recupera\xe7\xe3o de senha", "submit", "Enviar", _s16_115, "Recupere sua senha", "late_fees", "Taxas atrasadas", "credit_number", "N\xfamero do Cr\xe9dito", "payment_number", "Pagamento N\xfamero", "late_fee_amount", "Quantia da Multa", _s16_116, "Percentual de Multa", "schedule", "Agendamento", "before_due_date", "At\xe9 a data de vencimento", "after_due_date", "Depois da data de vencimento", _s18_57, "At\xe9 a data da fatura", "days", "Dias", "invoice_email", "Email de Fatura", "payment_email", "Email de Pagamento", "partial_payment", "Pagamento parcial", "payment_partial", "Partial Payment", _s21_44, "Email de pagamento parcial", "quote_email", "Email de Or\xe7amento", _s16_118, _s17_154, _s16_120, "Filtrado por Usu\xe1rio", "administrator", "Administrador", _s18_58, "Permite ao usu\xe1rio gerenciar usu\xe1rios, mudar configura\xe7\xf5es e modificar todos os registros", "user_management", "Gerenciamento de Usu\xe1rios", "users", "Usu\xe1rios", "new_user", "Novo Usu\xe1rio", "edit_user", "Editar Usu\xe1rio", "created_user", "Usu\xe1rio criado com sucesso", "updated_user", "Usu\xe1rio atualizado com sucesso", "archived_user", "Usu\xe1rio arquivado com sucesso", "deleted_user", "Usu\xe1rio exclu\xeddo com sucesso", "removed_user", "Usu\xe1rio removido com sucesso", "restored_user", "Usu\xe1rio restaurado com sucesso", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s20_96, "invoice_options", "Op\xe7\xf5es da Fatura", _s17_70, "Ocultar Pago at\xe9 Hoje", _s22_27, 'Apenas mostrar "Pago at\xe9 a Data" em suas faturas uma vez que o pagamento for recebido.', _s23_17, "Embutir Documentos", _s28_15, "Incluir imagens anexas na fatura.", _s16_124, "Exibir Cabe\xe7alho em", _s16_125, "Exibir Rodap\xe9 em", "first_page", "Primeira p\xe1gina", "all_pages", "Todas as p\xe1ginas", "last_page", "\xdaltima p\xe1gina", "primary_font", "Fonte Prim\xe1ria", "secondary_font", "Fonte Secund\xe1ria", "primary_color", "Cor Prim\xe1ria", "secondary_color", "Cor Secundaria", "page_size", _s17_156, "font_size", "Tamanho da Fonte", "quote_design", "Design do Or\xe7amento", "invoice_fields", "Campos da Fatura", "product_fields", "Campos de Produtos", "invoice_terms", "Condi\xe7\xf5es da Fatura", "invoice_footer", "Rodap\xe9 da Fatura", "quote_terms", _s22_74, "quote_footer", _s19_84, _s18_59, "Email Autom\xe1tico", _s23_18, "Enviar faturas recorrentes por email automaticamente quando forem criadas.", _s20_42, _s24_59, _s25_26, "Arquivar automaticamente faturas quando forem pagas.", _s18_60, _s24_59, _s23_19, "Arquivar automaticamente or\xe7amentos quando forem convertidos.", _s18_61, "Auto Convers\xe3o", _s23_20, _s72_0, _s17_72, "Configura\xe7\xf5es de Fluxo de Trabalho", "freq_daily", "Diariamente", "freq_weekly", "Semanalmente", "freq_two_weeks", "2 semanas", "freq_four_weeks", "4 semanas", "freq_monthly", "Mensalmente", "freq_two_months", "Dois meses", _s17_74, "3 meses", _s16_126, "4 meses", "freq_six_months", "6 meses", "freq_annually", "Anualmente", "freq_two_years", "2 anos", _s16_127, "Tr\xeas Anos", "never", "Nunca", "company", "Empresa", _s17_75, "N\xfameros Gerados", "charge_taxes", "Cobrar impostos", "next_reset", "Pr\xf3ximo Reset", "reset_counter", _s18_140, _s16_128, "Prefixo da Recorr\xeancia", "number_padding", "Preenchimento de n\xfamero", "general", "Geral", "surcharge_field", "Campo de Sobretaxa", "company_field", "Campo da Empresa", "company_value", "Valor da Empresa", "credit_field", "Campo de Cr\xe9dito", "invoice_field", "Campo da Fatura", _s17_77, "Sobretaxa de Fatura", "client_field", "Campo do Cliente", "product_field", "Campo do Produto", "payment_field", "Campo de Pagamento", "contact_field", "Campo do Contato", "vendor_field", "Campo do Fornecedor", "expense_field", "Campo da Despesa", "project_field", "Campo do Projeto", "task_field", "Campo da Tarefa", "group_field", "Campo de Grupo", "number_counter", "Contador Num\xe9rico", "prefix", "Prefixo", "number_pattern", "Padr\xe3o de Numera\xe7\xe3o", "messages", "Mensagens", "custom_css", _s17_157, _s17_79, _s24_60, _s16_130, "Exibir em PDF", _s21_46, "Exibir a assinatura do cliente no PDF da fatura/or\xe7amento.", _s25_27, "Checkbox para Condi\xe7\xf5es de Fatura", _s30_5, "Exigir que o cliente confirme que aceita as condi\xe7\xf5es da fatura.", _s23_21, "Checkbox de Condi\xe7\xf5es do Or\xe7amento", _s28_16, "Exigir que cliente confirme que aceita as Condi\xe7\xf5es do Or\xe7amento", _s25_28, "Assinatura de Fatura", _s30_6, "Exigir que o cliente providencie sua assinatura", _s23_22, _s23_53, _s22_29, "Proteger Faturas com Senha", _s27_23, "Permite definir uma senha para cada contato. Se uma senha for definida, o contato dever\xe1 informar uma senha antes de visualizar faturas.", "authorization", "Autoriza\xe7\xe3o", "subdomain", "Subdom\xednio", "domain", "Dom\xednio", "portal_mode", "Modo Portal", "email_signature", "Atenciosamente,", _s24_21, "Tornar mais f\xe1cil para os seus clientes efetuarem seus pagamentos acrescentando marca\xe7\xf5es schema.org a seus emails.", "plain", "Plano", "light", "Claro", "dark", "Escuro", "email_design", "Design do Email", "attach_pdf", "Anexar PDF", _s16_131, "Anexar Documentos", "attach_ubl", "Anexar UBL", "email_style", "Estilo do E-mail", _s19_25, "Habilitar Marca\xe7\xe3o", "reply_to_email", "Email para Resposta", "reply_to_name", "Reply-To Name", "bcc_email", "Email CCO", "processed", "Processado", "credit_card", _s17_158, "bank_transfer", _s22_75, "priority", "Prioridade", "fee_amount", "Valor da Multa", "fee_percent", "Porcentagem da Multa", "fee_cap", "Taxa m\xe1xima", "limits_and_fees", "Limites/Multas", "enable_min", "Habilitar m\xedn", "enable_max", "Habilitar m\xe1x", "min_limit", "M\xedn: :min", "max_limit", "M\xe1x: :max", "min", "Min", "max", "M\xe1x", _s19_26, "Logos de Cart\xf5es Aceitos", "credentials", "Credenciais", "update_address", "Atualizar Endere\xe7o", _s19_28, "Atualizar o endere\xe7o do cliente com os dados fornecidos", "rate", "Taxa", "tax_rate", "Taxa do Imposto", "new_tax_rate", "Nova Taxa de Imposto", "edit_tax_rate", "Editar Taxa do Imposto", _s16_133, "Taxa de imposto criada com sucesso", _s16_134, "Taxa de imposto atualizada com sucesso", _s17_82, "Taxa de imposto arquivada com sucesso", _s16_135, "Taxa de imposto exclu\xedda com sucesso", _s17_83, "Taxa de imposto restaurada com sucesso", _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Auto-preencher produtos", _s18_64, "Ao selecionar um produto sua descri\xe7\xe3o e pre\xe7o ser\xe3o automaticamente preenchidos", "update_products", _s35_24, _s20_44, "Atualizar uma fatura ir\xe1 automaticamenteatualizar a biblioteca de produtos", _s16_136, "Converter Produtos", _s21_47, "Converter automaticamente pre\xe7os de produtos para a moeda do cliente", "fees", "Taxas", "limits", "Limites", "provider", "Provedor", "company_gateway", "Gateway de Pagamento", _s16_138, "Gateways de Pagamento", _s19_29, "Novo Gateway", _s20_45, "Editar Gateway", _s23_23, "Gateway criado com sucesso", _s23_24, "Gateway atualizado com sucesso", _s24_22, "Gateway arquivado com sucesso", _s23_25, "Gateway exclu\xeddo com sucesso", _s24_23, "Gateway restaurado com sucesso", _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, "Continuar Editando", "discard_changes", "Descartar Mudan\xe7as", "default_value", "Valor padr\xe3o", "disabled", "Desabilitado", "currency_format", "Formato de Moeda", _s21_48, "Primeiro dia da Semana", _s23_26, "Primeiro M\xeas do Ano", "sunday", "Domingo", "monday", "Segunda-Feira", "tuesday", "Ter\xe7a-Feira", "wednesday", "Quarta-Feira", "thursday", "Quinta-Feira", "friday", "Sexta-Feira", "saturday", "S\xe1bado", "january", "Janeiro", "february", "Fevereiro", "march", "Mar\xe7o", "april", "Abril", "may", "Maio", "june", "Junho", "july", "Julho", "august", "Agosto", "september", "Setembro", "october", "Outubro", "november", "Novembro", "december", "Dezembro", "symbol", "S\xedmbolo", "ocde", "C\xf3digo", "date_format", "Formato de Data", "datetime_format", "Formato de Data/Hora", "military_time", "Formato de Tempo 24h", _s18_65, "Formato de Hora 24h", "send_reminders", "Enviar Lembretes", "timezone", "Fuso Hor\xe1rio", _s19_30, "Filtrado por Projeto", _s17_85, _s18_141, _s19_32, "Filtrado por Fatura", _s18_66, _s20_97, _s18_68, "Filtrado por Vendedor", "group_settings", "Configura\xe7\xf5es de Grupos", "group", "Grupo", "groups", "Grupos", "new_group", "Novo Grupo", "edit_group", "Editar Grupo", "created_group", "Grupo criado com sucesso", "updated_group", "Grupo atualizado com sucesso", "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Carregar Logo", "uploaded_logo", "Logo carregado com sucesso", "logo", "Logo", "saved_settings", "Configura\xe7\xf5es salvas com sucesso", _s16_142, "Configura\xe7\xf5es de Produtos", "device_settings", "Configura\xe7\xf5es do Dispositivo", "defaults", "Padr\xf5es", "basic_settings", "Configura\xe7\xf5es B\xe1sicas", _s17_87, "Configura\xe7\xf5es Avan\xe7adas", "company_details", _s19_85, "user_details", "Detalhes do Usu\xe1rio", "localization", "Localiza\xe7\xe3o", "online_payments", _s17_159, "tax_rates", "Taxas de Impostos", "notifications", "Notifica\xe7\xf5es", "import_export", "Importar | Exportar", "custom_fields", _s21_101, "invoice_design", "Design da Fatura", "buy_now_buttons", "Bot\xf5es Compre J\xe1", "email_settings", "Configura\xe7\xf5es de Email", _s23_28, "Modelos e Lembretes", _s22_30, "Cart\xf5es de Cr\xe9dito & Bancos", _s19_34, _s21_102, "price", "Pre\xe7o", "email_sign_up", "Inscri\xe7\xe3o de Email", "google_sign_up", "Inscri\xe7\xe3o no Google", _s27_25, "Obrigado por sua compra!", "redeem", "Resgatar", "back", "Voltar", "past_purchases", "Compras Passadas", _s19_36, "Assinatura Anual", "pro_plan", "Plano Pro", "enterprise_plan", "Plano Empresarial", "count_users", ":count usu\xe1rios", "upgrade", "Upgrade", _s25_32, "Por favor digite o primeiro nome", _s24_25, "Por favor digite o sobrenome", _s33_14, "Por favor, aceite os termos de servi\xe7o e pol\xedtica de privacidade para criar uma conta.", "i_agree_to_the", "Aceito os", _s21_79, "termos do servi\xe7o", _s19_54, "pol\xedtica de privacidade", _s16_144, _s20_98, "privacy_policy", _s23_54, "sign_up", "Cadastro", "account_login", "Login na Conta", "view_website", "Ver o Website", "create_account", "Criar Conta", "email_login", "E-mail de Login", "create_new", "Criar Novo", _s18_70, "Nenhum registro selecionado", _s21_51, "Por favor, salve ou cancele suas altera\xe7\xf5es", "download", "Download", _s27_26, "Necessita um plano empresarial", "take_picture", "Tire uma Foto", "upload_file", "Enviar Arquivo", "document", "Documento", "documents", "Documentos", "new_document", "Novo Documento", "edit_document", "Editar Documento", _s17_89, "Documento enviado com sucesso", _s16_146, "Documento atualizado com sucesso", _s17_90, "Documento arquivado com sucesso", _s16_147, "Documento apagado com sucesso", _s17_91, "Documento recuperado com sucesso", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "Sem Hist\xf3rico", "expense_date", "Data da Despesa", "pending", "Pendente", _s16_148, "Autenticado", _s16_149, "Pendente", _s16_150, "Faturado", "converted", "Convertido", _s24_27, "Adicionar documentos \xe0 fatura", "exchange_rate", "Taxa de C\xe2mbio", _s16_151, "Converter moeda", "mark_paid", _s16_263, "category", "Categoria", "address", "Endere\xe7o", "new_vendor", "Novo Fornecedor", "created_vendor", _s29_52, "updated_vendor", _s33_24, "archived_vendor", _s32_17, "deleted_vendor", "Fornecedor exclu\xeddo com sucesso", "restored_vendor", "Fornecedor restaurado com sucesso", _s16_152, _s42_15, "deleted_vendors", ":count fornecedores exclu\xeddos com sucesso", _s16_153, _s36_5, "new_expense", "Informar Despesa", "created_expense", _s26_53, "updated_expense", _s30_43, _s16_154, _s29_53, "deleted_expense", _s28_72, _s16_155, _s30_44, _s17_93, _s31_22, _s16_156, _s30_45, _s17_94, _s37_9, "copy_shipping", "Copiar Envio", "copy_billing", "Copiar Cobran\xe7a", "design", "Design", _s21_52, "Falha ao procurar registro", "invoiced", "Faturado", "logged", "Logado", "running", "Executando", "resume", "Retomar", "task_errors", "Por favor corrija quaisquer tempos sobrepostos", "start", "Iniciar", "stop", "Parar", "started_task", "Tarefa iniciada com sucesso", "stopped_task", "Tarefa interrompida com sucesso", "resumed_task", "Tarefa continuada com sucesso", "now", "Agora", _s16_157, "Iniciar Tarefas Automaticamente", "timer", "Timer", "manual", "Manual", "budgeted", "Or\xe7ado", "start_time", "Hor\xe1rio de In\xedcio", "end_time", "Hor\xe1rio Final", "date", "Data", "times", "Vezes", "duration", "Dura\xe7\xe3o", "new_task", "Nova Tarefa", "created_task", "Tarefa criada com sucesso", "updated_task", "Tarefa atualizada com sucesso", "archived_task", "Tarefa arquivada com sucesso", "deleted_task", "Tarefa exclu\xedda com sucesso", "restored_task", "Tarefa restaurada com sucesso", "archived_tasks", ":count tarefas arquivadas com sucesso", "deleted_tasks", ":count tarefas exclu\xeddas com sucesso", "restored_tasks", _s34_14, _s19_38, "Por favor digite um nome", "budgeted_hours", "Horas Or\xe7adas", "created_project", _s26_54, "updated_project", _s30_46, _s16_159, _s29_54, "deleted_project", "Projeto exclu\xeddo com sucesso", _s16_160, _s30_47, _s17_95, _s38_22, _s16_161, ":count projetos exclu\xeddos com sucesso", _s17_96, _s37_10, "new_project", "Novo Projeto", _s27_30, "Obrigado por usar nosso app!", "if_you_like_it", "Se voc\xea desejar por favor", "click_here", "clique aqui", _s18_74, "Clique aqui", "to_rate_it", "para dar uma nota.", "average", "M\xe9dio", "unapproved", "N\xe3o Aprovado", _s30_11, "Por favor autentique-se para modificar esta configura\xe7\xe3o", "locked", "Travado", "authenticate", "Autenticar", _s19_40, "Por favor autentique-se", _s24_28, "Autentica\xe7\xe3o Biom\xe9trica", "footer", "Rodap\xe9", "compare", "Comparar", "hosted_login", "Login Hospedado", "selfhost_login", "Login Auto-Hospedado", "google_sign_in", "Entrar com o Google", "today", "Hoje", "custom_range", "Per\xedodo Personalizado", "date_range", "Per\xedodo", "current", "Atual", "previous", "Anterior", "current_period", "Per\xedodo Atual", _s17_98, "Per\xedodo de Compara\xe7\xe3o", "previous_period", "Per\xedodo Anterior", "previous_year", "Ano Anterior", "compare_to", "Comparar com", "last7_days", "\xdaltimos 7 Dias", "last_week", "\xdaltima Semana", "last30_days", "\xdaltimos 30 Dias", "this_month", "Este M\xeas", "last_month", "\xdaltimo M\xeas", "this_year", "Este Ano", "last_year", "\xdaltimo Ano", "custom", "Personalizado", _s16_162, "Clonar para Fatura", "clone_to_quote", "Clonar ao Or\xe7amento", "clone_to_credit", "Clone para cr\xe9dito", "view_invoice", "Visualizar fatura", "convert", "Converter", "more", "Mais", "edit_client", "Editar Cliente", "edit_product", "Editar Produto", "edit_invoice", "Editar Fatura", "edit_quote", _s16_264, "edit_payment", _s16_265, "edit_task", "Editar Tarefa", "edit_expense", "Editar Despesa", "edit_vendor", _s17_160, "edit_project", "Editar Projeto", _s22_, "Editar Despesa Recorrente", _s20_47, "Editar Or\xe7amento Recorrente", "billing_address", "Endere\xe7o de Cobran\xe7a", _s16_164, "Endere\xe7o de envio", "total_revenue", "Faturamento Total", "average_invoice", "M\xe9dia por Fatura", "outstanding", "Em Aberto", "invoices_sent", ":count faturas enviadas", "active_clients", "clientes ativos", "close", "Fechar", "email", "Email", "password", "Senha", "url", "URL", "secret", "Segredo", "name", "Nome", "logout", "Sair", "login", "Login", "filter", "Filtrar", "sort", "Ordenar", "search", "Pesquisar", "active", "Ativo", "archived", "Arquivado", "deleted", "Exclu\xeddo", "dashboard", "Painel", "archive", "Arquivar", "delete", "Excluir", "restore", "Restaurar", _s16_166, "Refresh Completo", _s23_29, "Por favor digite seu email", _s26_25, "Por favor digite sua senha", _s21_55, "Por favor digite sua URL", _s26_27, "Por favor digite uma chave de produto", "ascending", "Ascendente", "descending", "Descendente", "save", "Salvar", _s17_100, "Um erro ocorreu", "paid_to_date", "Pago at\xe9 Hoje", "balance_due", "Saldo Devedor", "balance", "Saldo", "overview", "Resumo", "details", "Detalhes", "phone", "Telefone", "website", "Website", "vat_number", "Inscri\xe7\xe3o Municipal", "id_number", "CNPJ", "create", "Criar", _s19_42, ":value copiado para a \xe1rea de transfer\xeancia", "error", "Erro", _s16_168, "N\xe3o foi poss\xedvel iniciar", "contacts", "Contatos", "additional", "Adicional", "first_name", "Nome", "last_name", "Sobrenome", "add_contact", _s17_161, "are_you_sure", "Voc\xea tem certeza?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remover", _s16_170, "Email \xe9 inv\xe1lido", "product", "Produto", "products", "Produtos", "new_product", "Novo Produto", "created_product", "Produto criado com sucesso", "updated_product", "Produto atualizado com sucesso", _s16_172, "Produto arquivado com sucesso", "deleted_product", "Produto exclu\xeddo com sucesso", _s16_173, _s30_48, _s17_102, ":count produtos arquivados com sucesso", _s16_174, ":count produtos exclu\xeddos com sucesso", _s17_103, _s37_11, "product_key", "Produto", "notes", "Notas", "cost", "Custo", "client", "Cliente", "clients", "Clientes", "new_client", "Novo Cliente", "created_client", _s26_55, "updated_client", _s30_49, "archived_client", _s29_55, _s16_175, _s38_23, "deleted_client", "Cliente exclu\xeddo com sucesso", "deleted_clients", ":count clientes exclu\xeddos com sucesso", "restored_client", "Cliente restaurado com sucesso", _s16_176, _s36_7, "address1", "Rua", "address2", "Complemento", "city", "Cidade", "state", "Estado", "postal_code", "CEP", "country", "Pa\xeds", "invoice", "Fatura", "invoices", "Faturas", "new_invoice", "Nova Fatura", "created_invoice", "Fatura criada com sucesso", "updated_invoice", "Fatura atualizada com sucesso", _s16_177, "Fatura arquivada com sucesso", "deleted_invoice", "Fatura exclu\xedda com sucesso", _s16_178, "Fatura restaurada com sucesso", _s17_104, ":count faturas arquivadas com sucesso", _s16_179, ":count faturas exclu\xeddas com sucesso", _s17_105, _s37_12, "emailed_invoice", "Fatura enviada por email com sucesso", "emailed_payment", "Pagamento enviado por email com sucesso", "amount", "Quantia", "invoice_number", "N\xfamero da Fatura", "invoice_date", "Data da Fatura", "discount", "Desconto", "po_number", "N\xba Ordem de Servi\xe7o", "terms", "Condi\xe7\xf5es", "public_notes", "Notas P\xfablicas", "private_notes", "Notas Privadas", "frequency", "Frequ\xeancia", "start_date", "Data Inicial", "end_date", "Data Final", "quote_number", _s19_86, "quote_date", _s17_162, "valid_until", "V\xe1lido At\xe9", "items", "Itens", "partial_deposit", _s16_266, "description", "Descri\xe7\xe3o", "unit_cost", "Pre\xe7o Unit\xe1rio", "quantity", "Quantidade", "add_item", "Adicionar Item", "contact", "Contato", "work_phone", "Telefone", "total_amount", "Quantia Total", "pdf", "PDF", "due_date", _s18_142, _s16_180, "Data de Vencimento Parcial", "status", "Status", _s17_106, "Status da Fatura", "quote_status", "Status do Or\xe7amento", _s22_31, "Clique + para adicionar um item", _s22_33, "Clique + para adicionar tempo", "count_selected", ":count selecionados", "total", "Total", "percent", "Porcento", "edit", "Editar", "dismiss", "Dispensar", _s20_49, "Por favor digite uma data", _s22_34, _s30_50, _s24_30, "Por favor escolha uma fatura", "task_rate", "Taxa de Tarefas", "settings", "Configura\xe7\xf5es", "language", "Idioma", "currency", "Moeda", "created_at", "Data de Cria\xe7\xe3o", "created_on", "Criado em", "updated_at", "Atualizado", "tax", "Imposto", _s30_13, "Por favor digite um n\xfamero de fatura", _s27_34, "Por favor digite um n\xfamero de or\xe7amento", "past_due", "Vencido", "draft", "Rascunho", "sent", "Enviado", "viewed", "Visualizado", "approved", "Aprovado", "partial", "Dep\xf3sito / Parcial", "paid", "Pago", "mark_sent", _s19_87, _s22_36, "Fatura marcada como enviada com sucesso", _s22_37, _s35_10, _s23_31, "Faturas marcadas como enviadas com sucesso", _s23_32, _s36_9, "done", "Conclu\xeddo", _s37_13, "Por favor digite um cliente ou nome de contato", "dark_mode", "Modo Escuro", _s27_36, "Reinicie o app para aplicar a mudan\xe7a", "refresh_data", "Atualizar Dados", "blank_contact", "Contato Vazio", "activity", "Atividade", _s16_182, "Nenhum registro encontrado", "clone", "Clonar", "loading", "Carregando", "industry", "Ind\xfastria", "size", "Tamanho", "payment_terms", _s21_99, "payment_date", _s17_163, "payment_status", "Status do Pagamento", _s16_184, "Pendente", _s16_185, "Anulado", _s16_186, "Falhou", _s16_187, "Completado", _s16_188, _s24_58, _s16_189, "Reembolsado", _s17_107, "N\xe3o Aplicado", _s17_108, _s19_6, "net", "Vencimento", "client_portal", _s17_164, "show_tasks", "Exibir tarefas", "email_reminders", "Lembretes de Email", "enabled", "Habilitado", "recipients", "Destinat\xe1rios", "initial_email", "Email Inicial", "first_reminder", _s17_165, "second_reminder", _s16_267, "third_reminder", _s17_166, "reminder1", _s17_165, "reminder2", _s16_267, "reminder3", _s17_166, "template", "Modelo", "send", "Enviar", "subject", "Assunto", "body", "Corpo", "send_email", "Enviar Email", "email_receipt", "Enviar recibo de pagamento ao cliente por email", "auto_billing", "Cobran\xe7a autom\xe1tica", "button", "Bot\xe3o", "preview", "Preview", "customize", "Personalizar", "history", "Hist\xf3rico", "payment", "Pagamento", "payments", "Pagamentos", "refunded", "Reembolsado", "payment_type", _s17_153, _s21_57, _s23_55, "enter_payment", "Informar Pagamento", "new_payment", "Adicionar Pagamento", "created_payment", _s28_73, "updated_payment", "Pagamento atualizado com sucesso", _s16_190, _s31_23, "deleted_payment", "Pagamento exclu\xeddo com sucesso", _s16_191, "Pagamento restaurado com sucesso", _s17_109, _s40_6, _s16_192, ":count pagamentos exclu\xeddos com sucesso", _s17_110, _s37_15, "quote", "Or\xe7amento", "quotes", "Or\xe7amentos", "new_quote", "Novo Or\xe7amento", "created_quote", "Or\xe7amento criado com sucesso", "updated_quote", "Or\xe7amento atualizado com sucesso", "archived_quote", "Or\xe7amento aquivado com sucesso", "deleted_quote", "Or\xe7amento exclu\xeddo com sucesso", "restored_quote", "Or\xe7amento restaurado com sucesso", "archived_quotes", ":count or\xe7amentos arquivados com sucesso", "deleted_quotes", ":count or\xe7amentos exclu\xeddos com sucesso", "restored_quotes", _s35_13, "expense", "Despesa", "expenses", "Despesas", "vendor", "Fornecedor", "vendors", "Fornecedores", "task", "Tarefa", "tasks", "Tarefas", "project", "Projeto", "projects", "Projetos", "activity_1", _s29_56, "activity_2", _s32_18, "activity_3", ":user excluiu o cliente :client", "activity_4", ":user criou a fatura :invoice", "activity_5", ":user atualizou a fatura :invoice", "activity_6", ":user enviou a fatura :invoice para :client do :contact", "activity_7", ":contact viu a fatura :invoice para o :client", "activity_8", ":user arquivou a fatura :invoice", "activity_9", ":user excluiu a fatura :invoice", "activity_10", ":contact efetuou o pagamento :payment de :payment_amount da fatura :invoice do cliente :client", "activity_11", _s36_24, "activity_12", _s35_25, "activity_13", ":user excluiu o pagamento :payment", "activity_14", _s31_24, "activity_15", _s31_25, "activity_16", ":user arquivou o cr\xe9dito de :credit", "activity_17", ":user excluiu cr\xe9dito :credit", "activity_18", ":user criou o or\xe7amento :quote", "activity_19", ":user atualizou o or\xe7amento :quote", "activity_20", ":user enviou o or\xe7amento :quote do cliente :client para o contato :contact", "activity_21", _s38_24, "activity_22", _s33_25, "activity_23", ":user excluiu o or\xe7amento :quote", "activity_24", _s34_25, "activity_25", ":user restaurou a fatura :invoice", "activity_26", _s33_26, "activity_27", _s36_25, "activity_28", _s33_27, "activity_29", ":contact aprovou o or\xe7amento :quote para o cliente :client", "activity_30", _s32_19, "activity_31", _s35_26, "activity_32", ":user excluiu :vendor", "activity_33", _s36_26, "activity_34", _s30_51, "activity_35", _s33_28, "activity_36", ":user excluiu a despesa :expense", "activity_37", _s34_26, "activity_39", ":user cancelou um pagamento de :payment_amount em :payment", "activity_40", ":user reembolsou :adjustment de um pagamento :payment_amount em :payment", "activity_41", "Pagamento :payment_amount (:payment) falhou", "activity_42", _s26_56, "activity_43", _s30_52, "activity_44", _s29_57, "activity_45", ":user excluiu a tarefa :task", "activity_46", _s30_53, "activity_47", _s34_27, "activity_48", ":user atualizou o ticket :ticket", "activity_49", ":user fechou o ticket :ticket", "activity_50", ":user uniu o ticket :ticket", "activity_51", ":user dividiu o ticket :ticket", "activity_52", ":contact abriu o ticket :ticket", "activity_53", ":contact reabriu o ticket :ticket", "activity_54", ":user reabriu o ticket :ticket", "activity_55", ":contact respondeu o ticket :ticket", "activity_56", ":user visualizou o ticket :ticket", "activity_57", "O sistema falhou ao enviar a fatura :invoice", "activity_58", ": fatura revertida pelo usu\xe1rio: fatura", "activity_59", ": fatura cancelada pelo usu\xe1rio: fatura", "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Senha One-Time (OTP)", "emailed_quote", "Or\xe7amento enviado por email com sucesso", "emailed_credit", "Cr\xe9dito enviado com sucesso", _s20_51, "Or\xe7amento marcado como enviado com sucesso", _s21_59, "Cr\xe9dito marcado com sucesso como enviado", "expired", "Expirado", "all", "Todos", "select", "Selecionar", _s22_38, "Sele\xe7\xe3o m\xfaltipla de longa press\xe3o", "custom_value1", _s19_88, "custom_value2", _s19_88, "custom_value3", _s21_103, "custom_value4", _s21_104, _s18_75, "Estilo de E-mail Personalizado", _s24_35, "Mensagem de Painel Personalizada", _s29_31, "Mensagem Personalizada de Fatura Atrasada", _s27_41, "Mensagem Personalizada de Fatura Paga", _s31_10, "Mensagem Personalizada de Or\xe7amento N\xe3o Aprovado", "lock_invoices", "Bloquear Faturas", "translations", "Tradu\xe7\xf5es", _s19_43, "Padr\xe3o de Numera\xe7\xe3o de Tarefa", _s19_45, "Contador Num\xe9rico de Tarefas", _s22_40, "Padr\xe3o de Numera\xe7\xe3o de Despesa", _s22_42, "Contador Num\xe9rico de Despesas", _s21_60, "Padr\xe3o de Numera\xe7\xe3o de Vendedor", _s21_62, "Contador Num\xe9rico de Vendedores", _s21_64, "Padr\xe3o de Numera\xe7\xe3o de Ticket", _s21_66, "Contador Num\xe9rico de Tickets", _s22_44, "Padr\xe3o de Numera\xe7\xe3o de Pagamento", _s22_46, "Contador Num\xe9rico de Pagamentos", _s22_48, "Padr\xe3o de Numera\xe7\xe3o de Fatura", _s22_50, "Contador Num\xe9rico de Faturas", _s20_52, "Padr\xe3o de Numera\xe7\xe3o de Or\xe7amento", _s20_54, "Contador Num\xe9rico de Or\xe7amentos", _s21_68, _s30_54, _s21_70, _s29_58, _s21_72, _s30_54, _s21_73, _s29_58, _s18_77, "Reiniciar Data do Contador", "counter_padding", "Padr\xe3o do Contador", _s28_51, "Contador de cota\xe7\xe3o de fatura compartilhada", _s18_79, "Nome fiscal padr\xe3o 1", _s18_81, "Taxa de imposto padr\xe3o 1", _s18_83, "Nome fiscal padr\xe3o 2", _s18_85, "Taxa de imposto padr\xe3o 2", _s18_87, "Nome fiscal padr\xe3o 3", _s18_89, "Taxa de imposto padr\xe3o 3", _s21_74, "Assunto do E-mail de Fatura", _s19_47, "Assunto do E-mail de Or\xe7amento", _s21_76, "Assunto do E-mail de Pagamento", _s29_33, "Assunto de pagamento parcial por email", "show_table", "Exibir Tabelas", "show_list", "Exibir Lista", "client_city", "Cidade do Cliente", "client_state", "Estado do Cliente", "client_country", "Pa\xeds do Cliente", _s16_193, "Cliente Ativo", "client_balance", "Balan\xe7o do Cliente", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tipo", "invoice_amount", "Quantia da Fatura", _s16_197, _s18_142, "tax_rate1", "Taxa de imposto 1", "tax_rate2", "Taxa de imposto 2", "tax_rate3", "Taxa de imposto 3", "auto_bill", _s19_89, "archived_at", "Arquivado em", "has_expenses", "Tem despesas", "custom_taxes1", "Impostos personalizados 1", "custom_taxes2", "Impostos personalizados 2", "custom_taxes3", "Impostos personalizados 3", "custom_taxes4", "Impostos personalizados 4", _s17_113, _s25_51, _s17_114, _s25_52, _s17_115, _s25_53, _s17_116, _s25_54, "is_deleted", "Exclu\xeddo", "vendor_city", "Cidade do Vendedor", "vendor_state", "Estado do Vendedor", "vendor_country", "Pa\xeds do Vendedor", "is_approved", "Est\xe1 aprovado", "tax_name", "Nome do Imposto", "tax_amount", "Quantia de Impostos", "tax_paid", "Impostos pagos", "payment_amount", "Quantia de Pagamento", "age", "Idade", "is_running", "Is Running", "time_log", "Log de Tempo", "bank_id", "Banco", _s19_49, _s19_50, _s16_198, "Categoria de Despesa", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "pt_PT", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importar Dados", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "N\xe3o atribu\xeddo", "partial_value", "Deve ser maior que zero e menor que o total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Ativar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Indique o subdom\xednio ou mostre a nota de pag. no seu site.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Seguran\xe7a", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Reenviar convite", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s21_97, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Converter em Nota de Pag.", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Faturar Tarefa", "invoice_expense", "Nota de Pagamento da Despesa", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ocultar", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Coluna", "sample", "Exemplo", "map_to", "Map To", "import", "Importar", _s25_1, _s29_1, "select_file", "Por favor selecionar um arquivo", _s16_32, _s16_33, "csv_file", "Ficheiro CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "N\xe3o pago", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", _s18_138, "invoice_total", "Total da Nota de Pag.", "quote_total", _s18_139, "credit_total", "Total em cr\xe9dito", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Aviso", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Client Name", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s22_71, _s20_20, _s26_51, _s21_18, _s21_19, _s24_11, "Categoria de despesa criada com sucesso", _s24_12, "Categoria de despesa atualizada com sucesso", _s25_5, "Categoria de despesa arquivada com sucesso", _s24_13, "Categoria apagada com sucesso", _s24_14, _s37_2, _s25_6, "Categoria de despesa restaurada com sucesso", _s27_8, ":count categorias de despesa arquivadas com sucesso", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Deve ser faturada", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Ativar", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Nota de Pagamento Recorrente", _s18_29, "Notas de Pagamento Recorrentes", _s21_25, "Nova Nota de Pagamento Recorrente", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Nota de Pagamento Recorrente arquivada", _s25_14, "Nota de Pagamento Recorrente removida", _s25_15, _s38_7, _s26_6, "Nota de Pagamento Recorrente restaurada", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Lucro", "line_item", "Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Guardar detalhes do cart\xe3o", _s24_17, _s24_18, "always", "Sempre", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "N\xba Cliente", "auto_convert", "Auto Convert", "company_name", "Nome da Empresa", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "Notas de pag. enviadas com sucesso", "emailed_quotes", "Or\xe7amentos enviados com sucesso", "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Hours", "statement", "Declara\xe7\xe3o", "taxes", "Impostos", "surcharge", "Sobretaxa", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Para", "health_check", "Health Check", "payment_type_id", "Tipo de pagamento", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Pr\xf3ximas Notas de Pag.", _s17_43, _s17_44, "recent_payments", _s19_82, "upcoming_quotes", _s19_83, "expired_quotes", _s20_94, "create_client", "Create Client", "create_invoice", "Criar Nota Pag.", "create_quote", "Criar Or\xe7amento", "create_payment", "Create Payment", "create_vendor", _s16_261, "update_quote", "Update Quote", "delete_quote", "Apagar Or\xe7amento", "update_invoice", "Update Invoice", "delete_invoice", "Apagar Nota Pag.", "update_client", "Update Client", "delete_client", "Apagar Cliente", "delete_payment", "Apagar Pagamento", "update_vendor", "Update Vendor", "delete_vendor", "Apagar Fornecedor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Apagar Despesa", "create_task", "Criar Tarefa", "update_task", "Update Task", "delete_task", "Apagar Tarefa", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gr\xe1tis", "plan", "Plano", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Editat Token", "created_token", "Token criado", "updated_token", "Token atualizado", "archived_token", "Token arquivado", "deleted_token", "Token apagado", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Enviar Nota Pag.", "email_quote", "Enviar Or\xe7amento", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Nome do Contacto", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Editar Termo de Pagamento", _s20_29, "Criado termo de pagamento com sucesso", _s20_30, "Atualizado termo de pagamento com sucesso", _s21_28, "Arquivado termo de pagamento com sucesso", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Valor do Cr\xe9dito", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", _s20_95, _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Nome completo", _s17_55, "Cidade/Distrito/C. Postal", _s17_57, "C\xf3digo-Postal/Cidade/Distrito", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purgar dados", _s16_64, _s32_5, _s18_38, "Aviso: apagar\xe1 todos os seus dados.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dias", "age_group_30", "30 - 60 Dias", "age_group_60", "60 - 90 Dias", "age_group_90", "90 - 120 Dias", "age_group_120", "120+ Dias", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Detalhes da nota de pag.", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permiss\xf5es", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count nota de pag. enviada", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Aplicar Lince\xe7a", "cancel_account", "Cancelar Conta", _s22_19, "Aviso: Ir\xe1 apagar permanentemente a sua conta.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Cabe\xe7alho", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, "Gerir Conta", "credit_date", "Data do Cr\xe9dito", "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Introduzir Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", _s26_52, "updated_credit", _s30_42, "archived_credit", _s29_51, "deleted_credit", "Cr\xe9dito apagado com sucesso", "removed_credit", _s27_21, "restored_credit", "Cr\xe9dito restaurado", _s16_71, _s38_21, "deleted_credits", ":count cr\xe9ditos apagados com sucesso", _s16_72, _s36_3, "current_version", "Vers\xe3o Atual", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Saber mais", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nova Empresa", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Redefinir", "number", "Number", "export", "Exportar", "chart", "Gr\xe1fico", "count", "Count", "totals", "Totais", "blank", "Vazio", "day", "Dia", "month", "M\xeas", "year", "Ano", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Agrupado por", "credit_balance", "Balan\xe7o do Cr\xe9dito", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contato telef\xf3nico", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", "Criado por :nome", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Colunas", "aging", "Vencidas", "profit_and_loss", "Lucro e preju\xedzo", "reports", "Relat\xf3rios", "report", "Relat\xf3rio", "add_company", _s17_155, "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Ajuda", "refund", "Reembolsar", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Email", "multiselect", "Multiselect", "entity_state", "Estado", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Mensagem", "from", "De", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "Documenta\xe7\xe3o", "contact_us", "Contacte-nos", "subtotal", "Subtotal", "line_total", "Total", "item", "Item", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Sim", "no", "N\xe3o", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Visualizar", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Utilizador", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s30_50, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Defini\xe7\xf5es de Impostos", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Alterar", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submeter", _s16_115, "Recuperar palavra-passe", "late_fees", "Late Fees", "credit_number", "Nota de r\xe9dito n\xfamero", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Agendamento", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dias", "invoice_email", "E-mail para Notas de Pag.", "payment_email", "E-mail para Pagamentos", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "E-mail para Or\xe7amentos", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrador", _s18_58, "Permite ao utilizador gerir utilizadores, alterar defini\xe7\xf5es e modificar registos.", "user_management", "Gerir utilizadores", "users", "Utilizadores", "new_user", "Novo Utilizador", "edit_user", "Editar Utilizador", "created_user", _s25_22, "updated_user", "Utilizador atualizado", "archived_user", "Utilizador arquivado", "deleted_user", "Utilizador apagado", "removed_user", _s25_25, "restored_user", "Utilizador restaurado", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Defini\xe7\xf5es Gerais", "invoice_options", "Op\xe7\xf5es da Nota Pag.", _s17_70, "Ocultar data de pagamento", _s22_27, 'Apenas mostrar a "Data de Pagamento" quanto o pagamento tiver sido efetuado.', _s23_17, "Documentos Embutidos", _s28_15, "Incluir imagens anexadas na nota de pagamento.", _s16_124, "Mostrar cabe\xe7alho ativo", _s16_125, "Mostrar rodap\xe9 ativo", "first_page", "primeira p\xe1gina", "all_pages", "todas as p\xe1ginas", "last_page", "\xfaltima p\xe1gina", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Cor Principal", "secondary_color", "Cor Secundaria", "page_size", _s17_156, "font_size", "Tamanho do Texto", "quote_design", "Quote Design", "invoice_fields", "Campos da Nota Pag.", "product_fields", "Campos do produto", "invoice_terms", "Condi\xe7\xf5es da Nota de Pagamento", "invoice_footer", "Rodap\xe9 da Nota Pag.", "quote_terms", _s22_74, "quote_footer", _s19_84, _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s72_0, _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "Semanal", "freq_two_weeks", "2 semanas", "freq_four_weeks", "4 semanas", "freq_monthly", "Mensal", "freq_two_months", "Dois meses", _s17_74, "Trimestral", _s16_126, "Four months", "freq_six_months", "Semestral", "freq_annually", "Anual", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Nunca", "company", "Company", _s17_75, "N\xfameros gerados", "charge_taxes", "Impostos", "next_reset", "Pr\xf3xima redefini\xe7\xe3o", "reset_counter", "Redefinir contador", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefixo", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", _s17_157, _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, "Checkbox para Termos da Nota de Pagamento", _s30_5, "Requer que o cliente confirme que aceita os termos da nota de pagamento.", _s23_21, "Checkbox para Termos do Or\xe7amento", _s28_16, "Requer que o cliente confirme que aceita os termos do or\xe7amento.", _s25_28, "Assinatura da Nota de Pagamento", _s30_6, "Requer que o cliente introduza a sua assinatura.", _s23_22, _s23_53, _s22_29, "Proteger notas de pag. com palavra-passe", _s27_23, "Permite definir uma palavra-passe para cada contacto. Se uma palavra-passe for definida, o contacto dever\xe1 introduzir a palavra-passe antes de visualizar a nota de pagamento.", "authorization", "Autoriza\xe7\xe3o", "subdomain", "Subdom\xednio", "domain", "Dom\xednio", "portal_mode", "Portal Mode", "email_signature", "Atenciosamente,", _s24_21, "Tornar mais f\xe1cil para os seus clientes efetuarem os pagamentos, acrescentando marca\xe7\xe3o schema.org a seus e-mails.", "plain", "Plano", "light", "Claro", "dark", "Escuro", "email_design", "Template de E-mail", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Ativar Marca\xe7\xe3o", "reply_to_email", "Email de resposta", "reply_to_name", "Reply-To Name", "bcc_email", "Email BCC", "processed", "Processed", "credit_card", _s17_158, "bank_transfer", _s22_75, "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Ativar min", "enable_max", "Ativar max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Atualizar Morada", _s19_28, "Atualizar morada do cliente", "rate", "Valor", "tax_rate", "Imposto", "new_tax_rate", "Novo Imposto", "edit_tax_rate", "Editar Imposto", _s16_133, "Imposto Adicionado", _s16_134, "Imposto Atualizado", _s17_82, "Imposto Arquivado", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Sugerir produtos", _s18_64, "Selecionando o produto descri\xe7\xe3o e pre\xe7o ser\xe3o preenchidos automaticamente", "update_products", _s35_24, _s20_44, "Atualizando na nota de pagamento o produto tamb\xe9m ser\xe1 atualizado", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Taxas", "limits", "Limites", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Desativado", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Domingo", "monday", "Segunda-Feira", "tuesday", "Ter\xe7a-Feira", "wednesday", "Quarta-Feira", "thursday", "Quinta-Feira", "friday", "Sexta-Feira", "saturday", "S\xe1bado", "january", "Janeiro", "february", "Fevereiro", "march", "Mar\xe7o", "april", "Abril", "may", "Maio", "june", "Junho", "july", "Julho", "august", "Agosto", "september", "Setembro", "october", "Outubro", "november", "Novembro", "december", "Dezembro", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24h", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Defini\xe7\xf5es de Produtos", "device_settings", "Device Settings", "defaults", "Padr\xf5es", "basic_settings", "Defini\xe7\xf5es B\xe1sicas", _s17_87, "Defini\xe7\xf5es Avan\xe7adas", "company_details", _s19_85, "user_details", "Detalhes do Utilizador", "localization", "Localiza\xe7\xe3o", "online_payments", _s17_159, "tax_rates", "Impostos", "notifications", "Notifica\xe7\xf5es", "import_export", _s17_167, "custom_fields", _s21_101, "invoice_design", "Design das Nota Pag.", "buy_now_buttons", "Bot\xf5es Comprar Agora", "email_settings", "Defini\xe7\xf5es de E-mail", _s23_28, "Modelos & Lembretes", _s22_30, _s20_46, _s19_34, _s21_102, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, _s20_98, "privacy_policy", _s23_54, "sign_up", "Registar", "account_login", "Iniciar sess\xe3o", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Criar Nova", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Download", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documentos", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Data da Despesa", "pending", "Pendente", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Convertido", _s24_27, "Adicionar documento \xe0 nota de pag.", "exchange_rate", "Taxa de C\xe2mbio", _s16_151, "Converter moeda", "mark_paid", _s16_263, "category", "Categoria", "address", "Morada", "new_vendor", "Novo Fornecedor", "created_vendor", _s29_52, "updated_vendor", _s33_24, "archived_vendor", _s32_17, "deleted_vendor", "Fornecedor removido com sucesso", "restored_vendor", "Fornecedor restarurado com sucesso", _s16_152, _s42_15, "deleted_vendors", ":count fornecedores removidos com sucesso", _s16_153, _s36_5, "new_expense", "Introduzir Despesa", "created_expense", _s26_53, "updated_expense", _s30_43, _s16_154, _s29_53, "deleted_expense", _s28_72, _s16_155, _s30_44, _s17_93, _s31_22, _s16_156, _s30_45, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Faturado", "logged", "Em aberto", "running", "Em execu\xe7\xe3o", "resume", "Retormar", "task_errors", "Corrija os tempos sobrepostos", "start", "Iniciar", "stop", "Parar", "started_task", _s25_34, "stopped_task", "Tarefa interrompida", "resumed_task", _s25_36, "now", "Agora", _s16_157, _s16_158, "timer", "Temporizador", "manual", "Manual", "budgeted", "Budgeted", "start_time", "In\xedcio", "end_time", "Final", "date", "Data", "times", "Tempo", "duration", "Dura\xe7\xe3o", "new_task", "Nova Tarefa", "created_task", "Tarefa criada", "updated_task", "Tarefa atualizada", "archived_task", "Tarefa arquivada", "deleted_task", "Tarefa apagada", "restored_task", "Tarefa restaurada", "archived_tasks", ":count Tarefas arquivadas", "deleted_tasks", ":count Tarefas apagadas", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s26_54, "updated_project", _s30_46, _s16_159, _s29_54, "deleted_project", "Projeto apagado com sucesso", _s16_160, _s30_47, _s17_95, _s38_22, _s16_161, ":count projectos apagadas com sucesso", _s17_96, _s37_10, "new_project", "Novo Projeto", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "clique aqui", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Rodap\xe9", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Intervalo Personalizado", "date_range", "Interevalo de Datas", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Este M\xeas", "last_month", "\xdaltimo M\xeas", "this_year", "Este ano", "last_year", "\xdaltimo Ano", "custom", "Personalizado", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Visualizar nota de pag.", "convert", "Convert", "more", "More", "edit_client", "Editar Cliente", "edit_product", "Editar Prodruto", "edit_invoice", "Editar Nota Pag.", "edit_quote", _s16_264, "edit_payment", _s16_265, "edit_task", "Editar Tarefa", "edit_expense", "Editar Despesa", "edit_vendor", _s17_160, "edit_project", "Editar Projeto", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Morada de fatura\xe7\xe3o", _s16_164, _s16_165, "total_revenue", "Total faturado", "average_invoice", "M\xe9dia por Nota de Pag.", "outstanding", "Em Aberto", "invoices_sent", ":count notas de pag. enviadas", "active_clients", "Clientes ativos", "close", "Fechar", "email", "E-mail", "password", "Palavra-passe", "url", "URL", "secret", "Secret", "name", "Nome", "logout", "Sair", "login", "Iniciar sess\xe3o", "filter", "Filtrar", "sort", "Sort", "search", "Pesquisa", "active", "Ativo", "archived", "Arquivado", "deleted", "Apagado", "dashboard", "Dashboard", "archive", "Arquivar", "delete", "Apagar", "restore", "Restaurar", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Guardar", _s17_100, _s17_101, "paid_to_date", "Pago at\xe9 \xe0 data", "balance_due", "Valor", "balance", "Saldo", "overview", "Overview", "details", "Detalhes", "phone", "Telefone", "website", "Website", "vat_number", "NIF", "id_number", "ID Number", "create", "Criar", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Contatos", "additional", "Additional", "first_name", "Primeiro Nome", "last_name", "\xdaltimo Nome", "add_contact", _s17_161, "are_you_sure", "Tem a certeza?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remover", _s16_170, _s16_171, "product", "Produto", "products", "Produtos", "new_product", "Novo Produto", "created_product", "Produto criado", "updated_product", "Produto atualizado", _s16_172, "Produto arquivado", "deleted_product", "Producto apagado com sucesso", _s16_173, _s30_48, _s17_102, ":count Produtos arquivados com sucesso", _s16_174, ":count produtos apagados com sucesso", _s17_103, _s37_11, "product_key", "Produto", "notes", "Observa\xe7\xf5es", "cost", "Custo", "client", "Cliente", "clients", "Clientes", "new_client", "Novo Cliente", "created_client", _s26_55, "updated_client", _s30_49, "archived_client", _s29_55, _s16_175, _s38_23, "deleted_client", "Clientes removidos com sucesso", "deleted_clients", ":count clientes removidos com sucesso", "restored_client", "Cliente restaurado", _s16_176, _s36_7, "address1", "Rua", "address2", "Complemento", "city", "Cidade", "state", "Distrito/Prov\xedncia", "postal_code", "C\xf3digo Postal", "country", "Pa\xeds", "invoice", "Nota de Pagamento", "invoices", "Notas Pag.", "new_invoice", "Nova Nota Pag.", "created_invoice", "Nota de Pagamento criada com sucesso", "updated_invoice", "Nota de Pagamento atualizada com sucesso", _s16_177, "Nota de Pagamento arquivado com sucesso", "deleted_invoice", "Nota de Pagamento apagados com sucesso", _s16_178, "Nota de Pagamento restaurada", _s17_104, ":count nota de pagamentos arquivados com sucesso", _s16_179, ":count nota de pagamentos apagados com sucesso", _s17_105, _s37_12, "emailed_invoice", "Nota de Pagamento enviada por e-mail com sucesso", "emailed_payment", _s28_53, "amount", "Valor", "invoice_number", "N\xfamero NP", "invoice_date", "Data da NP", "discount", "Desconto", "po_number", "N\xfam. Ordem de Servi\xe7o", "terms", "Condi\xe7\xf5es", "public_notes", "Notas P\xfablicas", "private_notes", "Notas Privadas", "frequency", "Frequ\xeancia", "start_date", "Data Inicial", "end_date", "Data Final", "quote_number", _s19_86, "quote_date", _s17_162, "valid_until", "V\xe1lido at\xe9", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Descri\xe7\xe3o", "unit_cost", "Custo Unit\xe1rio", "quantity", "Quantidade", "add_item", "Add Item", "contact", "Contato", "work_phone", "Telefone", "total_amount", "Total Amount", "pdf", "PDF", "due_date", _s18_142, _s16_180, _s16_181, "status", "Estado", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Percentagem", "edit", "Editar", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Defini\xe7\xf5es", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Imposto", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Rascunho", "sent", "Sent", "viewed", "Viewed", "approved", "Approved", "partial", "Dep\xf3sito/Parcial", "paid", "Pago", "mark_sent", _s19_87, _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Feito", _s37_13, _s37_14, "dark_mode", "Modo Escuro", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Atividade", _s16_182, _s16_183, "clone", "Clonar", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Condi\xe7\xf5es de Pagamento", "payment_date", _s17_163, "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", _s17_164, "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Ativo", "recipients", "Destinat\xe1rios", "initial_email", "Email inicial", "first_reminder", _s17_165, "second_reminder", _s16_267, "third_reminder", _s17_166, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Assunto", "body", "Conte\xfado", "send_email", "Enviar email", "email_receipt", "E-mail para envio do recibo de pagamento", "auto_billing", "Auto billing", "button", "Button", "preview", "Pr\xe9-visualizar", "customize", "Personalizar", "history", "Hist\xf3rico", "payment", "Pagamento", "payments", "Pagamentos", "refunded", "Refunded", "payment_type", _s17_153, _s21_57, _s23_55, "enter_payment", "Introduzir Pag.", "new_payment", "Introduzir Pagamento", "created_payment", _s28_73, "updated_payment", "Pagamento atualizado", _s16_190, _s31_23, "deleted_payment", "Pagamento apagado com sucesso", _s16_191, "Pagamento restaurado", _s17_109, _s40_6, _s16_192, ":count pagamentos apagados com sucesso", _s17_110, _s37_15, "quote", "Or\xe7amento", "quotes", "Or\xe7amentos", "new_quote", "Novo Or\xe7amento", "created_quote", "Or\xe7amento criado", "updated_quote", "Or\xe7amento atualizado", "archived_quote", "Or\xe7amento aquivado", "deleted_quote", "Or\xe7amento apagado", "restored_quote", "Or\xe7amento restaurado", "archived_quotes", ":count Or\xe7amento(s) arquivado(s)", "deleted_quotes", ":count Or\xe7amento(s) apagados(s)", "restored_quotes", _s35_13, "expense", "Despesa", "expenses", "Despesas", "vendor", "Fornecedor", "vendors", "Fornecedor", "task", "Tarefa", "tasks", "Tarefas", "project", "Projeto", "projects", "Projetos", "activity_1", _s29_56, "activity_2", _s32_18, "activity_3", ":user removeu o cliente :client", "activity_4", ":user criou a nota de pagamento :invoice", "activity_5", ":user atualizou a nota de pagamento :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user arquivou a nota de pagamento :invoice", "activity_9", ":user removeu a nota de pagamento :invoice", "activity_10", _s85_0, "activity_11", _s36_24, "activity_12", _s35_25, "activity_13", ":user removeu o pagamento :payment", "activity_14", _s31_24, "activity_15", _s31_25, "activity_16", ":user arquivou cr\xe9dito :credit", "activity_17", ":user removeu cr\xe9dito :credit", "activity_18", ":user adicionou o or\xe7amento :quote", "activity_19", ":user atualizou o or\xe7amento :quote", "activity_20", _s50_4, "activity_21", _s38_24, "activity_22", _s33_25, "activity_23", ":user removeu o or\xe7amento :quote", "activity_24", _s34_25, "activity_25", ":user restaurou a nota de pagamento :invoice", "activity_26", _s33_26, "activity_27", _s36_25, "activity_28", _s33_27, "activity_29", _s42_9, "activity_30", _s32_19, "activity_31", _s35_26, "activity_32", ":user apagou o fornecedor :vendor", "activity_33", _s36_26, "activity_34", _s30_51, "activity_35", _s33_28, "activity_36", ":user apagou a despesa :expense", "activity_37", _s34_26, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", "pagamento (:payment) de :payment_amount falhou", "activity_42", _s26_56, "activity_43", _s30_52, "activity_44", _s29_57, "activity_45", ":user apagou a tarefa :task", "activity_46", _s30_53, "activity_47", _s34_27, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Or\xe7amento enviado", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expirada", "all", "Todos", "select", "Selecionar", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Numera\xe7\xe3o das Notas de Pagamento", _s20_52, _s20_53, _s20_54, "Numera\xe7\xe3o dos Or\xe7amentos", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tipo", "invoice_amount", "Total da Nota de Pagamento", _s16_197, "Data de vencimento", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", _s19_89, "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Nome do Imposto", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Valor do Pagamento", "age", "Idade", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banco", _s19_49, _s19_50, _s16_198, "Categoria de Despesas", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "ro", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Import\u0103 Date", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", "Trebuie s\u0103 fie mai mare ca zero \u0219i mai mic ca totalul", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activeaza", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Transform\u0103 \xeen Factur\u0103", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "F\u0103ctureaz\u0103 task", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ascunde", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Coloana", "sample", "Exemplar", "map_to", "Map To", "import", "Importa", _s25_1, _s29_1, "select_file", "Alege un fisier", _s16_32, _s16_33, "csv_file", "fisier CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Total factura", "quote_total", "Total Proforma", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Nume Client", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Factura Recurenta", _s18_29, "Facturi Recurente", _s21_25, "Adauga Factura Recurenta", _s22_12, "Editare factura recurenta", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Factur\u0103 recurent\u0103 arhivat\u0103 cu succes", _s25_14, "Factur\u0103 recurent\u0103 \u0219tears\u0103 cu succes", _s25_15, _s38_7, _s26_6, "Factur\u0103 recurent\u0103 restaurat\u0103 cu succes", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Salveaz\u0103 datele cardului", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ore", "statement", "Extras", "taxes", "Taxe", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "C\u0103tre", "health_check", "Health Check", "payment_type_id", "Tip plata", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Facturi urmatoare", _s17_43, _s17_44, "recent_payments", "Plati recente", "upcoming_quotes", "Proforme urm\u0103toare", "expired_quotes", "Proforme expirate", "create_client", "Create Client", "create_invoice", "Creaza factura", "create_quote", "Creaza Proforma", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Sterge Proforma", "update_invoice", "Update Invoice", "delete_invoice", "Sterge factura", "update_client", "Update Client", "delete_client", "Sterge client", "delete_payment", "Sterge plata", "update_vendor", "Update Vendor", "delete_vendor", "\u0218terge Furnizor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Delete Expense", "create_task", "Creaz\u0103 Task", "update_task", "Update Task", "delete_task", "\u0218terge Task", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "Token API", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Token-uri", "new_token", "New Token", "edit_token", "Modifica token", "created_token", "Token creat", "updated_token", "Actualizeaz\u0103 token", "archived_token", _s27_12, "deleted_token", "Token \u0219ters", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Trimite email", "email_quote", "Trimite Proforma", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Valoare credit", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count factur\u0103 trimis\u0103", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Aplic\u0103 Licen\u021b\u0103", "cancel_account", "\u0218terge cont", _s22_19, "ATEN\u021aIE: Toate datele vor fi \u0219terse definitiv, nu se pot recupera.", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Antet", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, "Proforme Recurente", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, "Administrare cont", "credit_date", "Data Creditului", "credit", "Credit", "credits", "Credite", "new_credit", "Adaug\u0103 Credit", "edit_credit", "Edit Credit", "created_credit", "Credit ad\u0103ugat cu succes", "updated_credit", _s27_19, "archived_credit", "Credit arhivat cu succes", "deleted_credit", "Credit \u0219ters", "removed_credit", _s27_21, "restored_credit", "Credit restaurat", _s16_71, ":count credite au fost arhivate cu succes", "deleted_credits", ":count \u0219ters", _s16_72, _s36_3, "current_version", "Versiunea Curent\u0103", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Afla mai mult", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Firm\u0103 nou\u0103", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reseteaz\u0103", "number", "Number", "export", "Export\u0103", "chart", "Grafic", "count", "Count", "totals", "Total", "blank", "Blank", "day", "Zi", "month", "Lun\u0103", "year", "An", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupeaz\u0103 dup\u0103", "credit_balance", "Soldul Creditului", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Asignare lui", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit \u0219i Pierdere", "reports", "Reports", "report", "Raport", "add_company", "Adaug\u0103 Firm\u0103", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Ajutor", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Mesaj", "from", "De la", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "forum suport", "about", "About", "documentation", "Documenta\u021bie", "contact_us", "Contact Us", "subtotal", "Subtotal", "line_total", "Total linie", "item", "Element", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Da", "no", "Nu", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Vezi", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Utilizator", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Alege un client", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Setari Taxe", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Recupereaz\u0103 parola", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Email Factur\u0103", "payment_email", "Email Plat\u0103", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Email Ofert\u0103", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "Utilizatori", "users", "Utilizatori", "new_user", "New User", "edit_user", "Modific\u0103 Utilizator", "created_user", _s25_22, "updated_user", "Utilizator actualizat", "archived_user", "Arhivare utilizator cu succes", "deleted_user", "Utilizator \u0219ters", "removed_user", _s25_25, "restored_user", "Utilizator restaurat", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Optiuni Generale", "invoice_options", "Op\u021biuni Factur\u0103", _s17_70, 'Ascunde c\xe2mpul "Pl\u0103tit p\xe2n\u0103 la"', _s22_27, 'Afi\u0219eaz\u0103 "Pl\u0103tit pana la" dec\xe2t c\xe2nd plata a fost efectuat\u0103.', _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "Prima pagin\u0103", "all_pages", "Toate paginile", "last_page", "Ultima pagin\u0103", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Culoare Principal\u0103", "secondary_color", "Culoare Secundar\u0103", "page_size", "Dimensiune Pagin\u0103", "font_size", "Dimensiune Font", "quote_design", "Quote Design", "invoice_fields", "C\xe2mpuri Factur\u0103", "product_fields", "Product Fields", "invoice_terms", "Termeni facturare", "invoice_footer", "Subsol Factur\u0103", "quote_terms", "Termeni Proform\u0103", "quote_footer", "Subsol Proform\u0103", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Zilnic", "freq_weekly", "S\u0103pt\u0103m\xe2nal", "freq_two_weeks", "Dou\u0103 S\u0103pt\u0103m\xe2ni", "freq_four_weeks", "Patru S\u0103pt\u0103m\xe2ni", "freq_monthly", "Lunar", "freq_two_months", "Dou\u0103 Luni", _s17_74, "Trei Luni", _s16_126, "Patru Luni", "freq_six_months", "\u0218ase Luni", "freq_annually", "Anual", "freq_two_years", "Doi Ani", _s16_127, "Three Years", "never", "Niciodat\u0103", "company", "Company", _s17_75, _s17_76, "charge_taxes", "Taxe", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Editeaza CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "Subdomeniu", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\xcen leg\u0103tur\u0103 cu,", _s24_21, _s86_, "plain", "Plain", "light", "Deschisa", "dark", "Intunecata", "email_design", "Design Email", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Card de Credit", "bank_transfer", "Transfer Bancar", "priority", "Prioritate", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Actualizeaz\u0103 Adresa", _s19_28, "Actualizeaz\u0103 adresa clientului cu detaliile trimise", "rate", "Valoare", "tax_rate", "Valoare Tax\u0103", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Editeaz\u0103 valoare tax\u0103", _s16_133, "Valoare tax\u0103 creat\u0103 cu succes", _s16_134, "Valoare tax\u0103 actualizat\u0103 cu succes", _s17_82, "Valoare tax\u0103 arhivat\u0103 cu succes", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Completeaz\u0103 automat produsele", _s18_64, "Aleg\xe2nd un produs descrierea \u0219i pre\u021bul vor fi completate automat", "update_products", "Actualizare automat\u0103 a produselor", _s20_44, "Actualiz\xe2nd o factur\u0103 se va actualiza si libr\u0103ria de produse", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Dezactivat", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Duminic\u0103", "monday", "Luni", "tuesday", "Mar\u021bi", "wednesday", "Miercuri", "thursday", "Joi", "friday", "Vineri", "saturday", "S\xe2mb\u0103t\u0103", "january", "Ianuarie", "february", "Februarie", "march", "Martie", "april", "Aprilie", "may", "Mai", "june", "Iunie", "july", "Iulie", "august", "August", "september", "Septembrie", "october", "Octombrie", "november", "Noiembrie", "december", "Decembrie", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Format 24 Ore", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Op\u021biuni Produs", "device_settings", "Device Settings", "defaults", "Implicit", "basic_settings", "Op\u021biuni de baz\u0103", _s17_87, "Op\u021biuni avansate", "company_details", "Detalii companie", "user_details", "Detalii utilizator", "localization", "Localizare", "online_payments", "Plati online", "tax_rates", "Valori taxa", "notifications", "Notific\u0103ri", "import_export", "Import | Export", "custom_fields", "C\xe2mpuri personalizate", "invoice_design", "Design factur\u0103", "buy_now_buttons", "Buy Now Buttons", "email_settings", "Setari email", _s23_28, "\u0218abloane & Notific\u0103ri", _s22_30, _s20_46, _s19_34, "Vizualizare Date", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Termenii Serviciului", "privacy_policy", "Privacy Policy", "sign_up", "Inscrie-te", "account_login", "Autentificare", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Descarca", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Expense Date", "pending", "\xcen a\u0219teptare", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Transform\u0103", _s24_27, _s24_39, "exchange_rate", "Curs Valutar", _s16_151, "Transform\u0103 moneda", "mark_paid", "Mark Paid", "category", "Category", "address", "Adres\u0103", "new_vendor", "Furnizor Nou", "created_vendor", "Furnizor creat cu succes", "updated_vendor", "Furnizor actualizat cu succes", "archived_vendor", "Furnizor arhivat cu succes", "deleted_vendor", "Furnizor \u0219ters cu succes", "restored_vendor", _s28_22, _s16_152, ":count furnizori arhiva\u021bi cu succes", "deleted_vendors", ":count furnizori \u0219tersi cu succes", _s16_153, _s36_5, "new_expense", "Introdu Cheltuial\u0103", "created_expense", _s28_23, "updated_expense", _s28_24, _s16_154, "Cheltuial\u0103 arhivat\u0103 cu succes", "deleted_expense", "Cheltuial\u0103 \u0219tears\u0103 cu succes", _s16_155, _s29_16, _s17_93, "Cheltuieli arhivate cu succes", _s16_156, "Cheltuieli \u0219terse cu succes", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Facturat", "logged", "\xcenregistrat", "running", "\xcen derulare", "resume", "Continu\u0103", "task_errors", "Te rog corecteaz\u0103 suprapunerea timpilor", "start", "Start", "stop", "Stop", "started_task", _s25_34, "stopped_task", "Task oprit", "resumed_task", _s25_36, "now", "Acum", _s16_157, _s16_158, "timer", "Cronometru", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Timp pornire", "end_time", "Timp \xeencheiere", "date", "Data", "times", "Times", "duration", "Durat\u0103", "new_task", "Task nou", "created_task", "Task creat", "updated_task", "Task actualizat", "archived_task", "Task arhivat", "deleted_task", "Task \u0219ters", "restored_task", "Task restaurat", "archived_tasks", "Arhivat :count task-uri", "deleted_tasks", "\u0218ters :count task-uri", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "Proiect nou", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "apas\u0103 aici", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Subsol", "compare", "Compar\u0103", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Ast\u0103zi", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Curent", "previous", "Anterior", "current_period", "Perioada Curent\u0103", _s17_98, "Perioada Compar\u0103rii", "previous_period", "Perioada Anterioar\u0103", "previous_year", "Anul Anterior", "compare_to", "Compar\u0103 cu", "last7_days", "Ultimele 7 Zile", "last_week", "S\u0103pt\u0103m\xe2na Trecut\u0103", "last30_days", "Ultimele 30 Zile", "this_month", "Luna curent\u0103", "last_month", "Luna trecut\u0103", "this_year", "Anul Curent", "last_year", "Anul Trecut", "custom", "Personalizat", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Vizualizare Factur\u0103", "convert", "Convert", "more", "More", "edit_client", "Modifica client", "edit_product", "Modifica produs", "edit_invoice", "Modifica factura", "edit_quote", "Modifica Proforma", "edit_payment", "Modific\u0103 Plata", "edit_task", "Modific\u0103 Task", "edit_expense", "Edit Expense", "edit_vendor", "Editeaz\u0103 Furnizor", "edit_project", "Editeaz\u0103 Proiect", _s22_, _s22_0, _s20_47, "Editare oferta recurenta", "billing_address", "Adres\u0103 de facturare", _s16_164, _s16_165, "total_revenue", "Venituri Totale", "average_invoice", "Medie facturi", "outstanding", "Restante", "invoices_sent", ":count facturi trimise", "active_clients", "clienti activi", "close", "Inchide", "email", "Email", "password", "Parola", "url", "URL", "secret", "Secret", "name", "Nume", "logout", "Deconectare", "login", "Autentificare", "filter", "Filtreaza", "sort", "Sort", "search", "Cauta", "active", "Activ", "archived", "Arhivat", "deleted", "\u0218ters", "dashboard", "Panou Control", "archive", "Arhiva", "delete", "Sterge", "restore", "Restaureaz\u0103", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Salveaza", _s17_100, _s17_101, "paid_to_date", "Pl\u0103tit P\xe2na Acum", "balance_due", "Total De Plat\u0103", "balance", "Balanta", "overview", "Overview", "details", "Detalii", "phone", "Telefon", "website", "Site web", "vat_number", "C.I.F.", "id_number", "Nr. Reg. Com.", "create", "Creaza", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Contacte", "additional", "Additional", "first_name", "Prenume", "last_name", "Nume", "add_contact", "Adauga contact", "are_you_sure", "Sigur?", "cancel", "Renunta", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Produs", "products", "Produse", "new_product", "New Product", "created_product", "Produs creat cu succes", "updated_product", "Produs actualizat cu succes", _s16_172, "Produs arhivat cu succes", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Produs", "notes", "Noti\u021be", "cost", "Cost", "client", "Client", "clients", "Clienti", "new_client", "Client nou", "created_client", "S-a creat clientul cu succes", "updated_client", "Client actualizat cu succes.", "archived_client", "Client arhivat cu succes.", _s16_175, ":count clienti arhivat cu succes.", "deleted_client", "Client sters cu succes.", "deleted_clients", ":count clienti stersi cu succes.", "restored_client", "Client restaurat", _s16_176, _s36_7, "address1", "Strada", "address2", "Apartament", "city", "Localitate", "state", "Jude\u021b/Sector", "postal_code", "Cod po\u0219tal", "country", "Tara", "invoice", "Factur\u0103", "invoices", "Facturi", "new_invoice", "Factura noua", "created_invoice", "Factura creata cu succes.", "updated_invoice", "Factura actualiazata cu succes.", _s16_177, "Factura arhivata cu succes.", "deleted_invoice", "Factura stearsa cu succes.", _s16_178, "Factur\u0103 restaurat\u0103", _s17_104, ":count facturi arhivate cu succes.", _s16_179, ":count facturi sterse cu succes", _s17_105, _s37_12, "emailed_invoice", "Factura trimisa pe email cu succes", "emailed_payment", _s28_53, "amount", "Valoare", "invoice_number", "Num\u0103r factur\u0103", "invoice_date", "Data factur\u0103", "discount", "Discount", "po_number", "Ordin de cump\u0103rare nr", "terms", "Termeni", "public_notes", "Public Notes", "private_notes", "Note particulare", "frequency", "Frecventa", "start_date", "Data inceput", "end_date", "Data sfirsit", "quote_number", "Numar Proforma", "quote_date", "Data Proforma", "valid_until", "Valabil p\xe2n\u0103 la", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Descriere", "unit_cost", "Pre\u021b unitar", "quantity", "Cantitate", "add_item", "Add Item", "contact", "Contact", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Scaden\u021ba", _s16_180, _s16_181, "status", "Stare", _s17_106, "Invoice Status", "quote_status", "Status oferta", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Percent", "edit", "Modifica", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, "Te rugam selecteaza o oferta", "task_rate", "Task Rate", "settings", "Setari", "language", "Language", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Tax\u0103", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "Trimis", "viewed", "Viewed", "approved", "Approved", "partial", "Par\u021bial/Depunere", "paid", "Pl\u0103tit", "mark_sent", "Marcheaz\u0103 ca trimis", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Gata", _s37_13, _s37_14, "dark_mode", "Mod \xeentunecat", _s27_36, _s35_11, "refresh_data", "Reactualizeaza datele", "blank_contact", "Contact gol", "activity", "Activitate", _s16_182, "Nu exista inregistrari", "clone", "Multiplic\u0103", "loading", "Loading", "industry", "Industrie", "size", "Size", "payment_terms", "Termeni de plat\u0103", "payment_date", "Data platii", "payment_status", "Status plata", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portal Client", "show_tasks", "Arata sarcini", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Prima Notificare", "second_reminder", "A Doua Notificare", "third_reminder", "A Treia Notificare", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0218ablon", "send", "Trimite", "subject", "Subiect", "body", "Mesaj", "send_email", "Trimite Email", "email_receipt", "Trimite pe email dovada pl\u0103\u021bii", "auto_billing", "Auto billing", "button", "Buton", "preview", "Previzualizare", "customize", "Personalizeaza", "history", "Istoric", "payment", "Plata", "payments", "Plati", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, "Referinta tranzactie", "enter_payment", "Introdu plata", "new_payment", "Introdu plata", "created_payment", "Plata creata cu succes.", "updated_payment", "Plat\u0103 actualizat\u0103", _s16_190, "Plata arhivata cu succes", "deleted_payment", "Plata stearsa cu succes.", _s16_191, "Plat\u0103 restaurat\u0103", _s17_109, ":count plati arhivate cu succes", _s16_192, ":count plati sterse cu succes.", _s17_110, _s37_15, "quote", "Proforma", "quotes", "Proforme", "new_quote", "Proforma Nou", "created_quote", "Proform\u0103 creat\u0103 cu succes", "updated_quote", "Proform\u0103 actualizat\u0103 cu succes", "archived_quote", "Proform\u0103 arhivat\u0103 cu succes", "deleted_quote", "Proform\u0103 \u0219tears\u0103", "restored_quote", "Proform\u0103 restaurat\u0103", "archived_quotes", ":count proforme arhivate cu succes", "deleted_quotes", ":count proforme \u0219terse cu succes", "restored_quotes", _s35_13, "expense", "Cheltuial\u0103", "expenses", "Cheltuieli", "vendor", "Furnizor", "vendors", "Furnizori", "task", "Task", "tasks", "Task-uri", "project", "Proiect", "projects", "Proiecte", "activity_1", ":user a creat clientul :client", "activity_2", ":user a arhivat clientul :client", "activity_3", ":user a \u0219ters clientul :client", "activity_4", ":user a creat factura :invoice", "activity_5", ":user a actualizat factura :invoice", "activity_6", ":user a trimis pe email factura :invoice pentru :client la :contact", "activity_7", ":contact a vizualizat factura :invoice pentru :client", "activity_8", ":user a arhivat factura :invoice", "activity_9", ":user a \u0219ters factura :invoice", "activity_10", _s85_0, "activity_11", ":user a actualizat plata :payment", "activity_12", ":user a arhivat plata :payment", "activity_13", ":user a \u0219ters plata :payment", "activity_14", ":user a \xeenc\u0103rcat :credit credite", "activity_15", ":user a actualizat :credit credite", "activity_16", ":user a arhivat :credit credite", "activity_17", ":user a \u0219ters :credit credite", "activity_18", ":user a creat proforma :quote", "activity_19", ":user a actualizat proforma :quote", "activity_20", ":user a trimis pe email proforma :quote pentru :client la :contact", "activity_21", ":contact a vizualizat proforma :quote", "activity_22", ":user a arhivat proforma :quote", "activity_23", ":user a \u0219ters proforma :quote", "activity_24", ":user a restaurat proforma :quote", "activity_25", ":user a restaurat factura :invoice", "activity_26", ":user a restaurat clientul :client", "activity_27", ":user a restaurat plata :payment", "activity_28", ":user a restaurat :credit credite", "activity_29", ":contact a aprobat proforma :quote pentru :client", "activity_30", ":user a creat furnizorul :vendor", "activity_31", ":user a arhivat furnizorul :vendor", "activity_32", ":user a \u0219ters furnizorul :vendor", "activity_33", ":user a restaurat furnizorul :vendor", "activity_34", ":user a creat cheltuiala :expense", "activity_35", ":user a arhivat cheltuiala :expense", "activity_36", ":user a \u0219ters cheltuiala :expense", "activity_37", ":user a restaurat cheltuiala :expense", "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Proform\u0103 trimis\u0103 cu succes", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Selecteaza", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Plaj\u0103 num\u0103r factur\u0103", _s20_52, _s20_53, _s20_54, "Plaj\u0103 num\u0103r proform\u0103", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tip", "invoice_amount", "Valoare Factur\u0103", _s16_197, "Data Scadenta", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto Facturare", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "Valoare plata", "age", "Age", "is_running", "Is Running", "time_log", "Log Timp", "bank_id", "Banca", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "ru_RU", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u0418\u043c\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", "\u0414\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f \u0438 \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0432\u0441\u0435\u0433\u043e", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u041f\u043e\u0441\u043b\u0430\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u0441\u0447\u0451\u0442", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432 \u0441\u0447\u0435\u0442", "invoice_expense", "Invoice Expense", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0421\u043a\u0440\u044b\u0442\u044c", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u0421\u0442\u043e\u043b\u0431\u0435\u0446", "sample", "\u041f\u0440\u0438\u043c\u0435\u0440", "map_to", "Map To", "import", "\u0418\u043c\u043f\u043e\u0440\u0442", _s25_1, _s29_1, "select_file", "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0444\u0430\u0439\u043b", _s16_32, _s16_33, "csv_file", "CSV-\u0444\u0430\u0439\u043b", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "\u0423\u0441\u043b\u0443\u0433\u0430", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u041d\u0435\u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "\u0418\u0442\u043e\u0433\u043e \u0441\u0447\u0451\u0442\u0430", "quote_total", "\u0412\u0441\u0435\u0433\u043e", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0418\u043c\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0417\u0430\u0442\u0440\u0430\u0442", _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0417\u0430\u0442\u0440\u0430\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_96, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0441\u0447\u0435\u0442", _s18_29, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0447\u0435\u0442\u0430", _s21_25, "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0441\u0447\u0435\u0442", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, _s39_, _s25_14, _s38_6, _s25_15, _s38_7, _s26_6, _s39_0, _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u043a\u0430\u0440\u0442\u044b", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "\u0428\u043b\u044e\u0437", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0427\u0430\u0441\u044b", "statement", "Statement", "taxes", "\u041d\u0430\u043b\u043e\u0433\u0438", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u044f\u0440\u043b\u044b\u043a", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u041a\u043e\u043c\u0443", "health_check", "Health Check", "payment_type_id", "\u0421\u043f\u043e\u0441\u043e\u0431 \u043e\u043f\u043b\u0430\u0442\u044b", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u0441\u0447\u0435\u0442\u0430", _s17_43, _s17_44, "recent_payments", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043f\u043b\u0430\u0442\u0435\u0436\u0438", "upcoming_quotes", "\u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "expired_quotes", "Expired Quotes", "create_client", "Create Client", "create_invoice", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0447\u0451\u0442", "create_quote", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "create_payment", "Create Payment", "create_vendor", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "update_quote", "Update Quote", "delete_quote", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "update_invoice", "Update Invoice", "delete_invoice", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "update_client", "Update Client", "delete_client", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "delete_payment", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "update_vendor", "Update Vendor", "delete_vendor", "Delete Vendor", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "create_task", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "update_task", "Update Task", "delete_task", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "\u0426\u0435\u043b\u044c", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API \u0442\u043e\u043a\u0435\u043d\u044b", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u041f\u0440\u0430\u0432\u0430", "tokens", "\u0422\u043e\u043a\u0435\u043d\u044b", "new_token", "New Token", "edit_token", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0430", "created_token", "\u0422\u043e\u043a\u0435\u043d \u0441\u043e\u0437\u0434\u0430\u043d", "updated_token", "\u0422\u043e\u043a\u0435\u043d \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_token", _s27_12, "deleted_token", "\u0422\u043e\u043a\u0435\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "email_quote", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0421\u0443\u043c\u043c\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "\u041f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f", _s17_55, _s17_56, _s17_57, "\u0418\u043d\u0434\u0435\u043a\u0441/\u0413\u043e\u0440\u043e\u0434/\u0421\u0442\u0440\u0430\u043d\u0430", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0430", _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0-30 \u0434\u043d\u0435\u0439", "age_group_30", "30-60 \u0434\u043d\u0435\u0439", "age_group_60", "60-90 \u0434\u043d\u0435\u0439", "age_group_90", "90-120 \u0434\u043d\u0435\u0439", "age_group_120", "120+ \u0434\u043d\u0435\u0439", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u0441\u0447\u0451\u0442\u0430", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count \u0441\u0447\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442", _s22_19, _s65_2, "delete_company", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044e", _s22_20, _s65_2, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "load_design", "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "\u041a\u043e\u043c\u043c\u0435\u0440\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "tickets", "\u0422\u0438\u043a\u0435\u0442\u044b", _s16_69, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "\u0414\u0430\u0442\u0430 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", "credit", "\u041a\u0440\u0435\u0434\u0438\u0442", "credits", "\u041a\u0440\u0435\u0434\u0438\u0442\u044b", "new_credit", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u0440\u0435\u0434\u0438\u0442", "edit_credit", "Edit Credit", "created_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_credit", _s27_19, "archived_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d", "removed_credit", _s27_21, "restored_credit", "\u041a\u0440\u0435\u0434\u0438\u0442 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s16_71, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430(\u043e\u0432)", "deleted_credits", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043a\u0440\u0435\u0434\u0438\u0442\u0430(\u043e\u0432)", _s16_72, _s36_3, "current_version", "\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c", "number", "Number", "export", "\u042d\u043a\u0441\u043f\u043e\u0440\u0442", "chart", "\u0413\u0440\u0430\u0444\u0438\u043a", "count", "Count", "totals", "\u0418\u0442\u043e\u0433\u043e", "blank", "Blank", "day", "\u0414\u0435\u043d\u044c", "month", "\u041c\u0435\u0441\u044f\u0446", "year", "\u0413\u043e\u0434", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "credit_balance", "\u0411\u0430\u043b\u0430\u043d\u0441 \u043a\u0440\u0435\u0434\u0438\u0442\u0430", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u0421\u0442\u043e\u043b\u0431\u0446\u044b", "aging", "Aging", "profit_and_loss", "\u041f\u0440\u0438\u0431\u044b\u043b\u0438 \u0438 \u0443\u0431\u044b\u0442\u043a\u0438", "reports", "Reports", "report", "\u041e\u0442\u0447\u0435\u0442", "add_company", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044e", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0430", _s16_107, _s16_108, "help", "\u041f\u043e\u043c\u043e\u0449\u044c", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u041f\u043e\u0447\u0442\u0430 \u0434\u043b\u044f \u0441\u0432\u044f\u0437\u0438", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "from", "\u041e\u0442", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "\u0424\u043e\u0440\u0443\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438", "about", "About", "documentation", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "contact_us", "\u0421\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u043c\u0438", "subtotal", "\u041f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u044b\u0439 \u0438\u0442\u043e\u0433", "line_total", "\u0412\u0441\u0435\u0433\u043e", "item", "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", "credit_email", "Credit Email", "iframe_url", "\u0412\u0435\u0431-\u0441\u0430\u0439\u0442", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Yes", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b", "layout", "Layout", "view", "View", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430\u043b\u043e\u0433\u043e\u0432", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "\u0421\u0443\u043c\u043c\u0430 \u043f\u0435\u043d\u0438", _s16_116, "\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043f\u0435\u043d\u0438", "schedule", "Schedule", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "\u0414\u043d\u0438", "invoice_email", "\u041f\u0438\u0441\u044c\u043c\u043e", "payment_email", "\u041f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u044d\u043b. \u043f\u043e\u0447\u0442\u044b", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Quote Email", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", "users", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", "new_user", "New User", "edit_user", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "created_user", _s25_22, "updated_user", "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_user", _s26_18, "deleted_user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u0434\u0430\u043b\u0451\u043d", "removed_user", _s25_25, "restored_user", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u041e\u0431\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "invoice_options", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0447\u0435\u0442\u0430", _s17_70, '\u0421\u043a\u0440\u044b\u0442\u044c "\u041e\u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0434\u043e"', _s22_27, "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \xab\u041e\u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0434\u043e\xbb \u0432 \u0432\u0430\u0448\u0438\u0445 \u0441\u0447\u0435\u0442\u0430\u0445 \u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0442\u0435\u0436\u0430.", _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0446\u0432\u0435\u0442", "secondary_color", "\u0412\u0442\u043e\u0440\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u044b\u0439 \u0446\u0432\u0435\u0442", "page_size", "Page Size", "font_size", "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", "quote_design", "\u0428\u0430\u0431\u043b\u043e\u043d \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043e\u043a", "invoice_fields", "\u041f\u043e\u043b\u044f \u0441\u0447\u0451\u0442\u0430", "product_fields", "\u041f\u043e\u043b\u044f \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "invoice_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0441\u0447\u0451\u0442\u0430", "invoice_footer", "\u041d\u0438\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b \u0441\u0447\u0435\u0442\u0430", "quote_terms", "Quote Terms", "quote_footer", "Quote Footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "\u0415\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e", "freq_two_weeks", "\u0414\u0432\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_four_weeks", "\u0427\u0435\u0442\u044b\u0440\u0435 \u043d\u0435\u0434\u0435\u043b\u0438", "freq_monthly", "\u0415\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e", "freq_two_months", "\u0414\u0432\u0430 \u043c\u0435\u0441\u044f\u0446\u0430", _s17_74, "\u0422\u0440\u0438 \u043c\u0435\u0441\u044f\u0446\u0430", _s16_126, "\u0427\u0435\u0442\u044b\u0440\u0435 \u043c\u0435\u0441\u044f\u0446\u0430", "freq_six_months", "\u041f\u043e\u043b\u0433\u043e\u0434\u0430", "freq_annually", "Annually", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "Never", "company", "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f", _s17_75, _s17_76, "charge_taxes", "\u0420\u0430\u0441\u0447\u0451\u0442 \u043d\u0430\u043b\u043e\u0433\u043e\u0432", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, "\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u043f\u0440\u0435\u0444\u0438\u043a\u0441", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "\u041f\u043e\u043b\u0435 \u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0438", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "\u041f\u043e\u043b\u0435 \u0421\u0447\u0451\u0442\u0430", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "\u041f\u043e\u043b\u0435 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "\u041f\u043e\u043b\u0435 \u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u041f\u0440\u0435\u0444\u0438\u043a\u0441", "number_pattern", "Number Pattern", "messages", "\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f", "custom_css", "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "\u041f\u043e\u0434\u0434\u043e\u043c\u0435\u043d", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "\u0421 \u0423\u0432\u0430\u0436\u0435\u043d\u0438\u0435\u043c,", _s24_21, _s86_, "plain", "Plain", "light", "Light", "dark", "Dark", "email_design", "Email Design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Enable Markup", "reply_to_email", "\u041e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0430\u0434\u0440\u0435\u0441", _s19_28, "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0430\u0434\u0440\u0435\u0441 \u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u043c\u0438 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438", "rate", "\u0421\u0442\u0430\u0432\u043a\u0430", "tax_rate", "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u043b\u043e\u0433\u043e\u0432\u0443\u044e \u0441\u0442\u0430\u0432\u043a\u0443", _s16_133, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0430", _s16_134, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", _s17_82, "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u0430\u044f \u0441\u0442\u0430\u0432\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0432 \u0430\u0440\u0445\u0438\u0432", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "\u0410\u0432\u0442\u043e\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s18_64, "\u0412\u044b\u0431\u043e\u0440 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c", "update_products", "\u0410\u0432\u0442\u043e\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s20_44, "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0447\u0435\u0442\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0442\u043e\u0432\u0430\u0440\u043e\u0432/\u0443\u0441\u043b\u0443\u0433", _s16_136, "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0443", _s21_47, "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0446\u0435\u043d\u0443 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430 \u0432 \u0432\u0430\u043b\u044e\u0442\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "fees", "\u041f\u043b\u0430\u0442\u044b", "limits", "\u041b\u0438\u043c\u0438\u0442\u044b", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Disabled", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "monday", "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", "tuesday", "\u0412\u0442\u043e\u0440\u043d\u0438\u043a", "wednesday", "\u0421\u0440\u0435\u0434\u0430", "thursday", "\u0427\u0435\u0442\u0432\u0435\u0440\u0433", "friday", "\u041f\u044f\u0442\u043d\u0438\u0446\u0430", "saturday", "\u0421\u0443\u0431\u0431\u043e\u0442\u0430", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24-\u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0444\u043e\u0440\u043c\u0430\u0442", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "\u0413\u0440\u0443\u043f\u043f\u0430", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "\u041b\u043e\u0433\u043e\u0442\u0438\u043f", "saved_settings", _s27_24, _s16_142, "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "device_settings", "Device Settings", "defaults", "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", "basic_settings", "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", _s17_87, "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "company_details", "\u0414\u0435\u0442\u0430\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438", "user_details", "\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "localization", "\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "online_payments", "\u041e\u043d\u043b\u0430\u0439\u043d \u043f\u043b\u0430\u0442\u0435\u0436\u0438", "tax_rates", "\u041d\u0430\u043b\u043e\u0433\u043e\u0432\u044b\u0435 \u0441\u0442\u0430\u0432\u043a\u0438", "notifications", "\u041e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u044f", "import_export", "\u0418\u043c\u043f\u043e\u0440\u0442 | \u042d\u043a\u0441\u043f\u043e\u0440\u0442", "custom_fields", "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044f", "invoice_design", "\u0414\u0438\u0437\u0430\u0439\u043d \u0441\u0447\u0451\u0442\u0430", "buy_now_buttons", "Buy Now Buttons", "email_settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b. \u043f\u043e\u0447\u0442\u044b", _s23_28, "\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0438 \u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f", _s22_30, _s20_46, _s19_34, "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f", "privacy_policy", "Privacy Policy", "sign_up", "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f", "account_login", "\u041b\u043e\u0433\u0438\u043d", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "\u0421\u043a\u0430\u0447\u0430\u0442\u044c", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "\u0414\u0430\u0442\u0430 \u0417\u0430\u0442\u0440\u0430\u0442", "pending", "\u041e\u0436\u0438\u0434\u0430\u044e\u0449\u0438\u0439", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d", _s24_27, "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u0432 \u0421\u0447\u0451\u0442", "exchange_rate", "Exchange Rate", _s16_151, _s16_222, "mark_paid", "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043d\u044b\u043c", "category", "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "address", "\u0410\u0434\u0440\u0435\u0441", "new_vendor", "\u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a", "created_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_vendor", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "restored_vendor", _s28_22, _s16_152, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430(\u043e\u0432)", "deleted_vendors", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430(\u043e\u0432)", _s16_153, _s36_5, "new_expense", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "created_expense", _s28_23, "updated_expense", "\u0417\u0430\u0442\u0440\u0430\u0442\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b", _s16_154, _s29_15, "deleted_expense", _s23_56, _s16_155, _s29_16, _s17_93, _s30_32, _s16_156, _s23_56, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "\u0412\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u0441\u0447\u0451\u0442", "logged", "\u0423\u0447\u0442\u0435\u043d\u043e", "running", "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f", "resume", "\u041d\u0430\u0437\u0430\u0434", "task_errors", "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0435\u0440\u0435\u043a\u0440\u044b\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u044b", "start", "\u0421\u0442\u0430\u0440\u0442", "stop", "\u0421\u0442\u043e\u043f", "started_task", _s25_34, "stopped_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "resumed_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "now", "\u0421\u0435\u0439\u0447\u0430\u0441", _s16_157, _s16_158, "timer", "\u0422\u0430\u0439\u043c\u0435\u0440", "manual", "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e", "budgeted", "Budgeted", "start_time", "\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430", "end_time", "\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "date", "\u0414\u0430\u0442\u0430", "times", "\u0412\u0440\u0435\u043c\u044f", "duration", "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", "new_task", "\u041d\u043e\u0432\u043e\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "created_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u043e", "updated_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "archived_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u043e", "restored_task", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "archived_tasks", "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432 :count \u0437\u0430\u0434\u0430\u043d\u0438\u0439", "deleted_tasks", "\u0423\u0434\u0430\u043b\u0435\u043d\u043e :count \u0437\u0430\u0434\u0430\u043d\u0438\u0439", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, "\u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0447\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u043d\u0430\u0448\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435!", "if_you_like_it", _s21_54, "click_here", "\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0441\u044e\u0434\u0430", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "\u041d\u0435\u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u044b\u0435", _s30_11, _s42_8, "locked", "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "\u041d\u0438\u0436\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", "compare", "\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "\u0421\u0435\u0433\u043e\u0434\u043d\u044f", "custom_range", "Custom Range", "date_range", "Date Range", "current", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439", "previous", "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439", "current_period", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434", _s17_98, "\u041f\u0435\u0440\u0438\u043e\u0434 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f", "previous_period", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434", "previous_year", "\u041f\u0440\u0435\u0434\u0434\u0443\u0448\u0438\u0439 \u0433\u043e\u0434", "compare_to", "\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441", "last7_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439", "last_week", "\u0417\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043d\u0435\u0434\u0435\u043b\u044e", "last30_days", "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 30 \u0434\u043d\u0435\u0439", "this_month", "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043c\u0435\u0441\u044f\u0446", "last_month", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u043c\u0435\u0441\u044f\u0446", "this_year", "This Year", "last_year", "\u041f\u0440\u043e\u0448\u043b\u044b\u0439 \u0433\u043e\u0434", "custom", "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c", _s16_162, "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u0447\u0451\u0442", "clone_to_quote", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442", "clone_to_credit", "Clone to Credit", "view_invoice", "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0447\u0435\u0442", "convert", "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d", "more", "More", "edit_client", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0430", "edit_product", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0443", "edit_invoice", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0447\u0451\u0442", "edit_quote", "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0443", "edit_payment", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "edit_task", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0434\u0430\u043d\u0438\u0435", "edit_expense", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b", "edit_vendor", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "\u0410\u0434\u0440\u0435\u0441 \u0434\u043b\u044f \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0447\u0435\u0442\u043e\u0432", _s16_164, _s16_165, "total_revenue", "\u0421\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u044b\u0439 \u0434\u043e\u0445\u043e\u0434", "average_invoice", "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0447\u0451\u0442", "outstanding", "\u0418\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435", "invoices_sent", ":count \u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e", "active_clients", "\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u044b", "close", "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "email", "\u042d\u043b. \u043f\u043e\u0447\u0442\u0430", "password", "\u041f\u0430\u0440\u043e\u043b\u044c", "url", "URL", "secret", "Secret", "name", "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", "logout", "\u0412\u044b\u0439\u0442\u0438", "login", "\u041b\u043e\u0433\u0438\u043d", "filter", "\u0424\u0438\u043b\u044c\u0442\u0440", "sort", "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "search", "\u0418\u0441\u043a\u0430\u0442\u044c", "active", "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439", "archived", "\u0410\u0440\u0445\u0438\u0432", "deleted", "\u0423\u0434\u0430\u043b\u0435\u043d", "dashboard", "\u0413\u043b\u0430\u0432\u043d\u0430\u044f", "archive", "\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "delete", "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", "restore", "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043e\u0434 \u0442\u043e\u0432\u0430\u0440\u0430/\u0443\u0441\u043b\u0443\u0433\u0438", "ascending", "Ascending", "descending", "Descending", "save", "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", _s17_100, _s17_101, "paid_to_date", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "balance_due", "\u041d\u0435\u043e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "balance", "\u041a \u043e\u043f\u043b\u0430\u0442\u0435", "overview", "Overview", "details", "\u0414\u0435\u0442\u0430\u043b\u0438", "phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "website", "\u0412\u0435\u0431-\u0441\u0430\u0439\u0442", "vat_number", "\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043b\u0430\u0442\u0435\u043b\u044c\u0449\u0438\u043a\u0430 \u041d\u0414\u0421", "id_number", "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440", "create", "\u0421\u043e\u0437\u0434\u0430\u0442\u044c", _s19_42, _s30_12, "error", "\u041e\u0448\u0438\u0431\u043a\u0430", _s16_168, _s16_169, "contacts", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b", "additional", "Additional", "first_name", "\u0418\u043c\u044f", "last_name", "\u0424\u0430\u043c\u0438\u043b\u0438\u044f", "add_contact", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442", "are_you_sure", "\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b?", "cancel", "\u041e\u0442\u043c\u0435\u043d\u0430", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "products", "\u0422\u043e\u0432\u0430\u0440\u044b/\u0423\u0441\u043b\u0443\u0433\u0438", "new_product", "\u041d\u043e\u0432\u044b\u0439 \u0442\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "created_product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_product", "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u043e\u0432\u0430\u0440\u0435/\u0443\u0441\u043b\u0443\u0433\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d\u0430", _s16_172, "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_product", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u044b", _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "\u0422\u043e\u0432\u0430\u0440/\u0443\u0441\u043b\u0443\u0433\u0430", "notes", "\u0417\u0430\u043c\u0435\u0442\u043a\u0438", "cost", "Cost", "client", "\u041a\u043b\u0438\u0435\u043d\u0442", "clients", "\u041a\u043b\u0438\u0435\u043d\u0442\u044b", "new_client", "\u041d\u043e\u0432\u044b\u0439 \u043a\u043b\u0438\u0435\u043d\u0442", "created_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", _s16_175, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043a\u043b\u0438\u0435\u043d\u0442\u0430(\u043e\u0432)", "deleted_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", "deleted_clients", "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043a\u043b\u0438\u0435\u043d\u0442\u0430(\u043e\u0432)", "restored_client", "\u041a\u043b\u0438\u0435\u043d\u0442 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s16_176, _s36_7, "address1", "\u0423\u043b\u0438\u0446\u0430", "address2", "\u0414\u043e\u043c/\u041e\u0444\u0438\u0441", "city", "\u0413\u043e\u0440\u043e\u0434", "state", "\u0420\u0430\u0439\u043e\u043d", "postal_code", "\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434", "country", "\u0421\u0442\u0440\u0430\u043d\u0430", "invoice", "\u0421\u0447\u0451\u0442", "invoices", "\u0421\u0447\u0435\u0442\u0430", "new_invoice", "\u041d\u043e\u0432\u044b\u0439 \u0441\u0447\u0451\u0442", "created_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", _s16_177, "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", _s16_178, "\u0421\u0447\u0451\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s17_104, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u0441\u0447\u0442\u0430(\u043e\u0432)", _s16_179, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u0441\u0447\u0442\u0430(\u043e\u0432)", _s17_105, _s37_12, "emailed_invoice", "\u0421\u0447\u0435\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043f\u043e \u043f\u043e\u0447\u0442\u0435", "emailed_payment", _s28_53, "amount", "\u0412\u0441\u0435\u0433\u043e", "invoice_number", "\u041d\u043e\u043c\u0435\u0440 \u0441\u0447\u0451\u0442\u0430", "invoice_date", "\u0414\u0430\u0442\u0430 \u0441\u0447\u0451\u0442\u0430", "discount", "\u0421\u043a\u0438\u0434\u043a\u0430", "po_number", "\u041d\u043e\u043c\u0435\u0440 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0443\u0447\u0435\u043d\u0438\u044f", "terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f", "public_notes", "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438", "private_notes", "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438", "frequency", "\u041f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c", "start_date", "\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430", "end_date", "\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f", "quote_number", "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0438", "quote_date", "\u0414\u0430\u0442\u0430 \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0438", "valid_until", "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d \u0434\u043e", "items", "Items", "partial_deposit", _s16_268, "description", "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "unit_cost", "\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0437\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0443", "quantity", "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e", "add_item", "Add Item", "contact", "\u041a\u043e\u043d\u0442\u0430\u043a\u0442", "work_phone", "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b", _s16_180, _s16_181, "status", "\u0421\u0442\u0430\u0442\u0443\u0441", _s17_106, "\u0421\u0442\u0430\u0442\u0443\u0441 \u0421\u0447\u0451\u0442\u0430", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "\u0412\u0441\u0435\u0433\u043e", "percent", "\u041f\u0440\u043e\u0446\u0435\u043d\u0442", "edit", "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "dismiss", "Dismiss", _s20_49, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0438\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443", _s22_34, "\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0438\u0440\u0438\u0442\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "language", "\u042f\u0437\u044b\u043a", "currency", "\u0412\u0430\u043b\u044e\u0442\u0430", "created_at", "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f", "created_on", "Created On", "updated_at", "Updated", "tax", "\u041d\u0430\u043b\u043e\u0433", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "\u0427\u0435\u0440\u043d\u043e\u0432\u0438\u043a", "sent", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c", "viewed", "Viewed", "approved", "Approved", "partial", _s16_268, "paid", "\u041e\u043f\u043b\u0430\u0447\u0435\u043d\u043e", "mark_sent", "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u043c", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "\u0413\u043e\u0442\u043e\u0432\u043e", _s37_13, _s37_14, "dark_mode", "\u0422\u0435\u043c\u043d\u0430\u044f \u0442\u0435\u043c\u0430", _s27_36, _s35_11, "refresh_data", "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0414\u0430\u043d\u043d\u044b\u0435", "blank_contact", "Blank Contact", "activity", "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c", _s16_182, _s16_183, "clone", "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "loading", "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f", "industry", "Industry", "size", "\u0420\u0430\u0437\u043c\u0435\u0440", "payment_terms", "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043e\u043f\u043b\u0430\u0442\u044b", "payment_date", "\u0414\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430", "payment_status", "\u0421\u0442\u0430\u0442\u0443\u0441 \u041f\u043b\u0430\u0442\u0435\u0436\u0430", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Client Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "\u041f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u0438", "initial_email", "Initial Email", "first_reminder", "\u041f\u0435\u0440\u0432\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "second_reminder", "\u0412\u0442\u043e\u0440\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "third_reminder", "\u0422\u0440\u0435\u0442\u044c\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0428\u0430\u0431\u043b\u043e\u043d", "send", "Send", "subject", "\u0422\u0435\u043c\u0430", "body", "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "send_email", "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b.\u043f\u043e\u0447\u0442\u0443", "email_receipt", "\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0443 \u043a\u0432\u0438\u0442\u0430\u043d\u0446\u0438\u044e \u043e\u0431 \u043e\u043f\u043b\u0430\u0442\u0435 \u043f\u043e \u044d\u043b.\u043f\u043e\u0447\u0442\u0435", "auto_billing", "Auto billing", "button", "\u041a\u043d\u043e\u043f\u043a\u0430", "preview", "Preview", "customize", "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c", "history", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f", "payment", "\u041f\u043b\u0430\u0442\u0451\u0436", "payments", "\u041e\u043f\u043b\u0430\u0442\u044b", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, "\u0420\u0435\u0444\u0435\u0440\u0435\u043d\u0441 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438", "enter_payment", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "new_payment", "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u043f\u043b\u0430\u0442\u0443", "created_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", _s16_190, "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d", "deleted_payment", "\u041f\u043b\u0430\u0442\u0451\u0436 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d", _s16_191, "\u041f\u043b\u0430\u0442\u0451\u0436 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", _s17_109, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043e :count \u043f\u043b\u0430\u0442\u0435\u0436\u0430(\u0435\u0439)", _s16_192, "\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e :count \u043f\u043b\u0430\u0442\u0435\u0436\u0430(\u0435\u0439)", _s17_110, _s37_15, "quote", "\u041a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "quotes", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442\u044b", "new_quote", "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "created_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u043d", "updated_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "archived_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d \u0432 \u0430\u0440\u0445\u0438\u0432", "deleted_quote", "\u041a\u043e\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0430", "restored_quote", _s27_38, "archived_quotes", "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043e \u0432 \u0430\u0440\u0445\u0438\u0432 :count \u043a\u043e\u0442\u0438\u0440\u043e\u0432\u043e\u043a", "deleted_quotes", _s34_18, "restored_quotes", _s35_13, "expense", "\u0417\u0430\u0442\u0440\u0430\u0442\u0430", "expenses", "\u0417\u0430\u0442\u0440\u0430\u0442\u044b", "vendor", "Vendor", "vendors", "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438", "task", "Task", "tasks", "\u0417\u0430\u0434\u0430\u043d\u0438\u0435", "project", "Project", "projects", "Projects", "activity_1", ":user \u0421\u043e\u0437\u0434\u0430\u043b \u041a\u043b\u0438\u0435\u043d\u0442\u0430 :client", "activity_2", _s29_25, "activity_3", _s28_42, "activity_4", ":user \u0421\u043e\u0437\u0434\u0430\u043b \u0421\u0447\u0451\u0442 :invoice", "activity_5", ":user \u041e\u0431\u043d\u043e\u0432\u0438\u043b \u0441\u0447\u0451\u0442 :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", _s31_3, "activity_9", _s30_17, "activity_10", _s85_0, "activity_11", _s30_18, "activity_12", _s31_4, "activity_13", _s30_19, "activity_14", _s28_43, "activity_15", _s28_44, "activity_16", _s29_26, "activity_17", _s28_45, "activity_18", _s26_32, "activity_19", _s26_33, "activity_20", _s50_4, "activity_21", _s28_46, "activity_22", _s27_39, "activity_23", _s26_34, "activity_24", _s27_40, "activity_25", _s31_5, "activity_26", _s29_27, "activity_27", _s31_6, "activity_28", _s29_28, "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s30_20, "activity_35", _s31_7, "activity_36", ":user \u0423\u0434\u0430\u043b\u0438\u043b \u0417\u0430\u0442\u0440\u0430\u0442\u044b :expense", "activity_37", _s31_8, "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", ":user \u041e\u0431\u043d\u043e\u0432\u0438\u043b \u0417\u0430\u0442\u0440\u0430\u0442\u044b :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "\u041f\u0440\u0430\u0439\u0441-\u043b\u0438\u0441\u0442 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "\u0412\u044b\u0431\u0440\u0430\u0442\u044c", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u0421\u0447\u0435\u0442\u0447\u0438\u043a \u043d\u043e\u043c\u0435\u0440\u0430 \u0441\u0447\u0451\u0442\u0430", _s20_52, _s20_53, _s20_54, _s20_55, _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "\u0422\u0438\u043f", "invoice_amount", "Invoice Amount", _s16_197, "\u0421\u0440\u043e\u043a \u043e\u043f\u043b\u0430\u0442\u044b", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0410\u0432\u0442\u043e-\u0441\u0447\u0435\u0442", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Tax Name", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u0421\u0443\u043c\u043c\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0430", "age", "\u0412\u043e\u0437\u0440\u0430\u0441\u0442", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, "\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u0442\u0440\u0430\u0442", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "sr_RS", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Uvezi podatke", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Poslednja izmena", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Ime kontakta", _s17_1, "Prezime kontakta", "order", "Order", "unassigned", "Unassigned", "partial_value", "Mora biti ve\u0107e od nula i manje od sume", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogu\u0107i", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Pretplata", _s16_11, _s16_12, _s17_7, "Izmeni Pretplatu", _s20_1, "Uspe\u0161no kreirana pretplata", _s20_2, "Uspe\u0161no osve\u017eena pretplata", _s21_6, "Uspe\u0161no arhivirana pretplata", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Odbijene", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "O\u010ditajte bar kod uz pomo\u0107 :link kompatibilne aplikacije.", _s18_14, "Dvostepena autorizacija uspe\u0161no aktivirana", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Dvostepena autorizacija", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Konvertuj u ra\u010dun", _s16_24, _s16_25, "invoice_project", "Naplati Projekat", "invoice_task", "Fakturi\u0161i zadatak", "invoice_expense", "Tro\u0161ak ra\u010duna", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "Konvertovani iznos", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Podrazumevani dokumenti", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Sakrij", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolona", "sample", "Uzorak", "map_to", "Map To", "import", "Uvoz", _s25_1, _s29_1, "select_file", "Mollim odaberite datoteku", _s16_32, _s16_33, "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Usluga", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Otpremnica", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Ra\u010dun sveukupno", "quote_total", "Ukupno predra\u010duna", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Upozorenje", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Ime klijenta", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, "Uspe\u0161no a\u017euriran status zadatka", _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s24_42, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, "Uspe\u0161no vra\u0107ena kategorija tro\u0161kova", _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Treba biti fakturisan", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Ponavljaju\u0107i ra\u010dun", _s18_29, "Ponavljaju\u0107i ra\u010duni", _s21_25, "Novi ponavljaju\u0107i ra\u010dun", _s22_12, "Izmeni ponavljaju\u0107i ra\u010dun", _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Uspe\u0161no arhiviran redovni ra\u010dun", _s25_14, "Uspe\u0161no obrisan redovni ra\u010dun", _s25_15, _s38_7, _s26_6, "Uspe\u0161no obnovljen redovni ra\u010dun", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Otvorene", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Pogledaj portal", "copy_link", "Copy Link", "token_billing", "Izmeni detalje kartice", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Oznaka", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "Company Name", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Kanal", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Sati", "statement", "Statement", "taxes", "Porezi", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Prihvati", "unapplied", "Unapplied", "select_label", "Selektuj oznaku", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Prima", "health_check", "Health Check", "payment_type_id", "Tip uplate", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Dolazni ra\u010duni", _s17_43, _s17_44, "recent_payments", "Nedavne uplate", "upcoming_quotes", "Nadolaze\u0107i predra\u010duni", "expired_quotes", "Istekli predra\u010duni", "create_client", "Kreiraj klijenta", "create_invoice", "Kreiraj ra\u010dun", "create_quote", "Kreiraj predra\u010dun", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Obri\u0161i predra\u010dun", "update_invoice", "Update Invoice", "delete_invoice", "Obri\u0161i ra\u010dun", "update_client", "Update Client", "delete_client", "Obri\u0161i klijenta", "delete_payment", "Obri\u0161i uplatu", "update_vendor", "Update Vendor", "delete_vendor", _s17_119, "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Obri\u0161i tro\u0161ak", "create_task", "Kreiraj zadatak", "update_task", "Update Task", "delete_task", "Obri\u0161i zadatak", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Slobodan", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Cilj", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API tokeni", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokeni", "new_token", "New Token", "edit_token", "Izmeni token", "created_token", "Uspe\u0161no kreiran token", "updated_token", "Uspe\u0161no a\u017euriran token", "archived_token", "Uspe\u0161no arhiviran token", "deleted_token", "Uspe\u0161no obrisan token", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", _s16_210, "email_quote", "\u0160alji predra\u010dun e-po\u0161tom", "email_credit", "Email Credit", "email_payment", "Po\u0161alji uplatu ePo\u0161tom", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Uredi uslove pla\u0107anja", _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Iznos kredita", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "Prvo prilago\u0111eno", "custom2", "Drugo prilago\u0111eno", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, "Uspe\u0161no o\u010di\u0161\u0107eni podatci kompanije", _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Osve\u017ei", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "Nema", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s19_90, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Izbri\u0161i nalog", _s22_19, "Upozorenje: Ovo \u0107e trajno izbrisati va\u0161 nalog.", "delete_company", "Izbri\u0161i kompaniju", _s22_20, "Upozorenje: Ovo \u0107e potpuno obrisati podatke o Va\u0161ooj komplaniji, nema mogu\u0107nosti povratka podataka.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Zaglavlje", "load_design", "U\u010ditaj Dizajn", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Ponude", "tickets", "Tiketi", _s16_69, "Ponavljaju\u0107a ponuda", "recurring_tasks", "Recurring Tasks", _s18_, _s16_211, _s18_39, _s18_40, "credit_date", "Datum kredita", "credit", "Kredit", "credits", "Krediti", "new_credit", "Unesi kredit", "edit_credit", "Edit Credit", "created_credit", "Uspe\u0161no kreiran kredit", "updated_credit", _s27_19, "archived_credit", "Uspe\u0161no arhiviran kredit", "deleted_credit", "Uspe\u0161no obrisan kredit", "removed_credit", _s27_21, "restored_credit", "Uspe\u0161no vra\u0107en kredit", _s16_71, "Uspe\u0161no arhivirano :count kredita", "deleted_credits", "Uspe\u0161no obrisano :count kredita", _s16_72, _s36_3, "current_version", _s16_212, "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", _s16_213, "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Novo preduze\u0107e", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Resetuj", "number", "Number", "export", "Izvoz", "chart", "Karte", "count", "Count", "totals", "Totali", "blank", "Blank", "day", "Dan", "month", "Month", "year", "Year", "subgroup", "Podgrupa", "is_active", "Is Active", "group_by", "Grupi\u0161i po", "credit_balance", "Stanje kredita", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Adresa za slanje ulica", _s17_64, "Adresa za slanje stan/apartman", "shipping_city", "Adresa za slanje grad", "shipping_state", "Adresa za slanje - Provincija/Pokrajina", _s20_33, "Adresa za slanje po\u0161tanski broj", _s16_103, "Adresa za slanje dr\u017eava", _s16_105, "Adresa naplate - Ulica", _s16_106, "Adresa ra\u010duna - Stan/Spartman", "billing_city", "Adresa naplate - Grad", "billing_state", "Adresa naplate - Provincija/Pokrajina", _s19_19, "Adresa naplate - Po\u0161tanski broj", "billing_country", "Adresa naplate - Dr\u017eava", "client_id", "Client Id", "assigned_to", "Dodeljeno za", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Izve\u0161taji", "add_company", "Dodaj preduze\u0107e", "unpaid_invoice", "Nepla\u0107eni ra\u010duni", "paid_invoice", "Pla\u0107eni ra\u010duni", _s16_107, "Ne odobrene ponude", "help", "Pomo\u0107", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filter po", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "State", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Poruka", "from", "\u0160alje", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "forum podr\u0161ke", "about", "About", "documentation", "Dokumentacija", "contact_us", "Contact Us", "subtotal", "Sveukupno", "line_total", "Ukupno", "item", "Stavka", "credit_email", "Credit Email", "iframe_url", "Sajt", "domain_url", "Domain URL", _s21_36, _s20_57, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Da", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobilni", "desktop", "Desktop", "layout", "Layout", "view", "Pregled", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Korisnik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s25_44, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Pode\u0161avanja poreza", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Opcije", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "Povratite va\u0161u lozinku", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Iznos honorara", _s16_116, "Procenat honorara", "schedule", "Raspored", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dani", "invoice_email", "E-po\u0161ta ra\u010duna", "payment_email", "E-po\u0161ta uplate", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "E-po\u0161ta ponuda", _s16_118, "Beskrajni podsetnik", _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", _s23_34, "users", "Korisnici", "new_user", "New User", "edit_user", "Uredi korisnika", "created_user", _s25_22, "updated_user", "Korisnik je uspe\u0161no a\u017euriran", "archived_user", "Uspe\u0161no arhiviran korisnik", "deleted_user", "Korisnik je uspe\u0161no obrisan", "removed_user", _s25_25, "restored_user", "Uspe\u0161no obnovljen korisnik", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Op\u0161te postavke", "invoice_options", "Opcije ra\u010duna", _s17_70, _s21_80, _s22_27, _s70_0, _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, _s20_58, _s16_125, _s19_56, "first_page", "First page", "all_pages", "All pages", "last_page", "Last page", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Primarna boja", "secondary_color", "Sekundarna boja", "page_size", "Page Size", "font_size", "Veli\u010dina fonta", "quote_design", "Dizajn ponude", "invoice_fields", "Polja ra\u010duna", "product_fields", "Product Fields", "invoice_terms", "Uslovi ra\u010duna", "invoice_footer", "Podno\u017eje ra\u010duna", "quote_terms", "Uslovi predra\u010duna", "quote_footer", "Podno\u017eje ponude", _s18_59, "Automatsko slanje ePo\u0161te", _s23_18, "Automatski po\u0161alji ponavljaju\u0107e ra\u010dune u momentu kreiranja.", _s20_42, "AAutomatsko arhiviranje", _s25_26, "Automatski arhiviraj ra\u010dune kada su pla\u0107eni.", _s18_60, "Automatsko Arhiviranje", _s23_19, "Automatski arhiviraj ponude kada su konvertovane.", _s18_61, "Auto konverzija", _s23_20, "Automatski konvertujte ponudu u ra\u010dun nakon \u0161to je odobrena od strane klijenta.", _s17_72, "Pode\u0161avanje toka rada", "freq_daily", "Svakodnevno", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Monthly", "freq_two_months", "Two months", _s17_74, "Three months", _s16_126, "\u010cetiri meseca", "freq_six_months", "Six months", "freq_annually", "Annually", "freq_two_years", "Dve godine", _s16_127, "Three Years", "never", "Nikada", "company", "Kompanija", _s17_75, _s17_76, "charge_taxes", "Naplati poreze", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, "Prefiks koji se ponavlja", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Polje kompanija", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Polje ra\u010duna", _s17_77, "Vi\u0161ak Ra\u010duna", "client_field", "Polje klijenta", "product_field", "Polje proizvod", "payment_field", "Payment Field", "contact_field", "Polje kontakt", "vendor_field", "Polje dobavlja\u010da", "expense_field", "Polje tro\u0161kova", "project_field", "Polje Projekta", "task_field", "Polje zadatak", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefiks", "number_pattern", "Number Pattern", "messages", "Poruke", "custom_css", "Prilago\u0111eni CSS", _s17_79, _s17_80, _s16_130, "Prika\u017ei u PDF-u", _s21_46, "Prikazite potpis klijenta na PDF-u ra\u010duna/ponude.", _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "Poddomena", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Sa po\u0161tovanjem,", _s24_21, _s81_, "plain", "Obi\u010dno", "light", "Svetlo", "dark", "Tamno", "email_design", "Dizajn e-po\u0161te", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Omogu\u0107i markup", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Prioritet", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Logoi Prihva\u0107enih Kartica", "credentials", "Credentials", "update_address", "A\u017euriraj adresu", _s19_28, "A\u017euriraj adresu klijenta uz dostavljenim detaljima", "rate", "Stopa", "tax_rate", "Poreska stopa", "new_tax_rate", "New Tax Rate", "edit_tax_rate", "Uredi poresku stopu", _s16_133, "Uspe\u0161no kreirana poreska stopa", _s16_134, "Uspe\u0161no a\u017eurirana poreska stopa", _s17_82, "Uspe\u0161no arhivirana poreska stopa", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", _s24_43, _s18_64, _s53_2, "update_products", "Proizvodi sa autoa\u017euriranjem", _s20_44, _s57_, _s16_136, "Konvertuj proizvode", _s21_47, "Automatski konvertuj cene proizvoda u valutu klijenta", "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Otka\u017ei izmene", "default_value", "Default value", "disabled", "Onemogu\u0107eno", "currency_format", "Currency Format", _s21_48, "Prvi dan u nedelji", _s23_26, _s23_27, "sunday", "Nedelja", "monday", "Ponedeljak", "tuesday", "Utorak", "wednesday", "Sreda", "thursday", "\u010cetvrtak", "friday", "Petak", "saturday", "Subota", "january", "January", "february", "February", "march", "March", "april", "April", "may", "May", "june", "June", "july", "July", "august", "August", "september", "September", "october", "October", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 satno vreme", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Grupa", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, _s18_91, "device_settings", "Device Settings", "defaults", "Podrazumevano", "basic_settings", "Osnovna pode\u0161avanja", _s17_87, _s17_120, "company_details", "Detalji preduze\u0107a", "user_details", _s17_121, "localization", "Lokalizacija", "online_payments", "Online uplate", "tax_rates", "Porezne stope", "notifications", "Obave\u0161tenja", "import_export", "Uvoz i Izvoz", "custom_fields", _s17_122, "invoice_design", "Dizajn ra\u010duna", "buy_now_buttons", "Buy Now Buttons", "email_settings", _s16_215, _s23_28, "\u0160abloni & podsetnici", _s22_30, _s20_46, _s19_34, _s22_53, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, "Hvala Vam na kupovini!", "redeem", "Redeem", "back", "Nazad", "past_purchases", "Ranije kupovine", _s19_36, _s18_92, "pro_plan", "Pro plan", "enterprise_plan", "Enterprise Plan", "count_users", _s16_216, "upgrade", "Nadogradi", _s25_32, "Unesite ime", _s24_25, "Unesite prezime", _s33_14, "Molimo Vas prihvatite uslove kori\u0161\u0107enja i politiku privatnosti da biste registrovali korisni\u010dki nalog.", "i_agree_to_the", "Sla\u017eem se sa", _s21_79, "uslovima kori\u0161\u0107enja", _s19_54, "politikom privatnosti", _s16_144, "Uslovi kori\u0161tenja usluge", "privacy_policy", "Privacy Policy", "sign_up", "Prijava", "account_login", _s18_94, "view_website", "Poseti web sajt", "create_account", "Registruj nalog", "email_login", "Prijavite se emailom", "create_new", "Kreiraj novi", _s18_70, "Nijedan zapis nije odabran", _s21_51, "Molimo Vas sa\u010duvajte ili otka\u017eite izmene", "download", "Preuzmi", _s27_26, "Zahteva Enterprise plan", "take_picture", "Fotografi\u0161i", "upload_file", "Po\u0161alji fajl", "document", "Dokument", "documents", "Dokumenti", "new_document", "Novi dokument", "edit_document", "Izmeni dokument", _s17_89, "Uspe\u0161no poslat dokument", _s16_146, "Uspe\u0161no a\u017euriran dokument", _s17_90, "Uspe\u0161no arhiviran dokument", _s16_147, "Uspe\u0161no obrisan dokument", _s17_91, "Uspe\u0161no vra\u0107en dokument", _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "Nema istorije", "expense_date", "Datum tro\u0161ka", "pending", "Na \u010dekanju", _s16_148, "Prijavljen", _s16_149, "Na \u010dekanju", _s16_150, "Fakturisano", "converted", "Konvertovano", _s24_27, "Dodaj dokumente uz Ra\u010dun", "exchange_rate", "Kurs", _s16_151, "Konvertuj valutu", "mark_paid", "Mark Paid", "category", "Category", "address", "Adresa", "new_vendor", "Novi dobavlja\u010d", "created_vendor", "Uspe\u0161no kreiran dobavlja\u010d", "updated_vendor", "Uspe\u0161no a\u017euriran dobavlja\u010d", "archived_vendor", "Uspe\u0161no arhiviran dobavlja\u010d", "deleted_vendor", "Uspe\u0161no obrisan dobavlja\u010d", "restored_vendor", _s28_22, _s16_152, "Uspe\u0161no arhivirano :count dobavlja\u010da", "deleted_vendors", "Uspe\u0161no obrisano :count dobavlja\u010da", _s16_153, _s36_5, "new_expense", "Unesi tro\u0161ak", "created_expense", "Uspe\u0161no kreiran tro\u0161ak", "updated_expense", "Uspe\u0161no a\u017euriran tro\u0161ak", _s16_154, "Uspe\u0161no arhiviran tro\u0161ak", "deleted_expense", _s22_76, _s16_155, _s29_16, _s17_93, "Uspe\u0161no arhivirani tro\u0161kovi", _s16_156, _s22_76, _s17_94, _s37_9, "copy_shipping", "Kopiraj adresu za slanje", "copy_billing", "Kopiraj adresu za naplatu", "design", "Dizajn", _s21_52, "Zapis nije prona\u0111en", "invoiced", "Fakturisano", "logged", "Logovano", "running", "Pokrenuto", "resume", "Nastavi", "task_errors", "Molimo korigujte vremena koja se poklapaju", "start", "Po\u010detak", "stop", "Zavr\u0161etak", "started_task", "Uspe\u0161no pokrenut zadatak", "stopped_task", "Uspe\u0161no zavr\u0161en zadatak", "resumed_task", "Uspe\u0161no nastavljen zadatak", "now", "Sada", _s16_157, _s16_158, "timer", "\u0160toperica", "manual", "Ru\u010dno", "budgeted", "Budgeted", "start_time", "Po\u010detno vreme", "end_time", "Vreme zavr\u0161etka", "date", "Datum", "times", "Vremena", "duration", "Trajanje", "new_task", "Novi zadatak", "created_task", "Uspe\u0161no kreiran zadatak", "updated_task", "Uspe\u0161no a\u017euriran zadatak", "archived_task", "Uspe\u0161no arhiviran zadatak", "deleted_task", "Uspe\u0161no obrisan zadatak", "restored_task", "Uspe\u0161no obnovljen zadatak", "archived_tasks", "Uspe\u0161no arhivirano :count zadataka", "deleted_tasks", "Uspe\u0161no obrisano :count zadataka", "restored_tasks", _s34_14, _s19_38, "Unesite Va\u0161e ime", "budgeted_hours", "Bud\u017eetirani sati", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, "Uspe\u0161no vra\u0107en projekat", _s17_95, "Uspe\u0161no arhivirano :count projekata", _s16_161, "Uspe\u0161no obrisano :count projekata", _s17_96, _s37_10, "new_project", "New Project", _s27_30, "Hvala Vam \u0161to koristite na\u0161u aplikaciju!", "if_you_like_it", "Ako Vam se dopada molimo Vas", "click_here", "kliknite ovde", _s18_74, "Click here", "to_rate_it", "da je ocenite.", "average", "Prosek", "unapproved", "Neodobreno", _s30_11, "Molimo Vas auotorizujte se da biste promenili ovu opciju", "locked", "Zaklju\u010dano", "authenticate", "Autorizuj se", _s19_40, "Molimo Vas da se autorizujete", _s24_28, "Biometrijska autorizacija", "footer", "Podno\u017eje", "compare", "Uporedi", "hosted_login", "Hostovan login", "selfhost_login", "Samohostovan login", "google_sign_in", _s17_97, "today", "Danas", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Teku\u0107i", "previous", "Prethodni", "current_period", "Teku\u0107i period", _s17_98, "Period za upore\u0111ivanje", "previous_period", "Prethodni period", "previous_year", "Slede\u0107i period", "compare_to", "Uporedi sa", "last7_days", "Poslednjih 7 dana", "last_week", "Poslednja sedmica", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "Prilago\u0111eno", _s16_162, "Kloniraj u ra\u010dun", "clone_to_quote", "Kloniraj u ponudu", "clone_to_credit", "Clone to Credit", "view_invoice", "Pregled ra\u010duna", "convert", "Konvertuj", "more", "Vi\u0161e", "edit_client", "Uredi klijenta", "edit_product", "Uredi proizvod", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi predra\u010dun", "edit_payment", "Izmeni uplatu", "edit_task", "Uredi zadatak", "edit_expense", "Izmeni tro\u0161ak", "edit_vendor", _s16_217, "edit_project", "Edit Project", _s22_, "Izmena redovnih tro\u0161kova", _s20_47, "Izmeni ponavljaju\u0107u ponudu", "billing_address", "Adresa ra\u010duna", _s16_164, "Adresa za slanje", "total_revenue", "Ukupni prihod", "average_invoice", "Prose\u010dni ra\u010dun", "outstanding", "Nenapla\u0107eno", "invoices_sent", _s19_90, "active_clients", _s16_218, "close", "Zatvori", "email", "E-po\u0161ta", "password", "Lozinka", "url", "URL", "secret", "Secret", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Sort", "search", "Pretraga", "active", "Aktivan", "archived", "Arhivirano", "deleted", "Obrisano", "dashboard", "Kontrolna tabla", "archive", "Arhiva", "delete", "Obri\u0161i", "restore", "Vrati", _s16_166, "Osve\u017eavanje zavr\u0161eno", _s23_29, "Unesite adresu e-po\u0161te", _s26_25, "Unesite lozinku", _s21_55, "Unesite web adresu", _s26_27, "Unesite \u0161ifru proizvoda", "ascending", "Rastu\u0107e", "descending", "Opadaju\u0107e", "save", "Snimi", _s17_100, "Desila se gre\u0161ka", "paid_to_date", "Pla\u0107eno na vreme", "balance_due", "Stanje duga", "balance", "Stanje", "overview", "Pregled", "details", "Detalji", "phone", "Telefon", "website", "Web adresa", "vat_number", "PIB", "id_number", "Mati\u010dni broj", "create", "Kreiraj", _s19_42, "Sadr\u017eaj :value kopiran u klipbord", "error", "Gre\u0161ka", _s16_168, "Nije mogu\u0107e pokrenuti", "contacts", "Kontakti", "additional", "Dodatno", "first_name", "Ime", "last_name", "Prezime", "add_contact", "Dodaj kontakt", "are_you_sure", _s18_95, "cancel", "Odustani", "ok", "Ok", "remove", "Remove", _s16_170, "Adresa e-po\u0161te nije validna", "product", "Proizvod", "products", "Proizvodi", "new_product", "New Product", "created_product", "Proizvod je uspe\u0161no kreiran", "updated_product", "Proizvod je uspe\u0161no a\u017euriran", _s16_172, "Proizvod je uspe\u0161no arhiviran", "deleted_product", _s28_32, _s16_173, "Uspe\u0161no vra\u0107en proizvod", _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "Product", "notes", "Bele\u0161ke", "cost", "Cost", "client", "Klijent", "clients", "Klijenti", "new_client", "Novi klijent", "created_client", "Klijent je uspe\u0161no kreiran", "updated_client", "Uspe\u0161no a\u017euriranje klijenta", "archived_client", "Uspe\u0161no arhiviran klijent", _s16_175, "Uspe\u0161no arhivirano :count klijenata", "deleted_client", "Uspe\u0161no obrisan klijent", "deleted_clients", "Uspe\u0161no obrisano :count klijenata", "restored_client", "Uspe\u0161no vra\u0107en klijent", _s16_176, _s36_7, "address1", "Ulica", "address2", "Sprat/soba", "city", "Grad", "state", "Okrug", "postal_code", "Po\u0161tanski broj", "country", "Zemlja", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Novi ra\u010dun", "created_invoice", "Uspe\u0161no kreiran ra\u010dun", "updated_invoice", "Uspe\u0161no a\u017euriran ra\u010dun", _s16_177, "Uspe\u0161no arhiviran ra\u010dun", "deleted_invoice", "Uspe\u0161no obrisan ra\u010dun", _s16_178, "Uspe\u0161no vra\u0107en ra\u010dun", _s17_104, "Uspe\u0161no arhivirano :count ra\u010duna", _s16_179, "Uspe\u0161no obrisano :count ra\u010duna", _s17_105, _s37_12, "emailed_invoice", "Ra\u010dun uspe\u0161no poslat e-po\u0161tom", "emailed_payment", "Uplata uspe\u0161no poslata putem elektronske po\u0161te", "amount", "Iznos", "invoice_number", "Broj ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "Broj narud\u017ebe", "terms", "Uslovi", "public_notes", "Javne bele\u0161ke", "private_notes", "Privatne bele\u0161ke", "frequency", "Frekvencija", "start_date", "Po\u010detni datum", "end_date", "Zavr\u0161ni datum", "quote_number", "Broj ponude", "quote_date", "Datum ponude", "valid_until", "Vredi do", "items", "Stavke", "partial_deposit", "Avans/Depozit", "description", "Opis", "unit_cost", "Jedini\u010dna cena", "quantity", "Koli\u010dina", "add_item", "Dodaj stavku", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Ukupan iznos", "pdf", "PDF", "due_date", "Datum dospe\u0107a", _s16_180, "Datum dospe\u0107a avansa", "status", "Status", _s17_106, "Status ra\u010duna", "quote_status", "Status ponude", _s22_31, _s30_24, _s22_33, "Kliknite + za dodavanje vremena", "count_selected", ":count selektovano", "total", "Sveukupno", "percent", "Percent", "edit", "Uredi", "dismiss", "Odbaci", _s20_49, "Izaberite datum", _s22_34, "Izaberite klijenta", _s24_30, "Izaberite ra\u010dun", "task_rate", "Stopa zadatka", "settings", "Postavke", "language", "Jezik", "currency", "Valuta", "created_at", "Datum kreiranja", "created_on", "Created On", "updated_at", "A\u017eurirano", "tax", "Porez", _s30_13, "Unesite broj ra\u010duna", _s27_34, "Unesite broj ponude", "past_due", "Van valute", "draft", "Draft", "sent", "Poslato", "viewed", "Pregledano", "approved", "Odobreno", "partial", "Partial/Deposit", "paid", "Pla\u0107eno", "mark_sent", "Ozna\u010di kao poslato", _s22_36, "Ra\u010dun uspe\u0161no obele\u017een kao poslat", _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Zavr\u0161eno", _s37_13, "Unesite klijenta ili ime kontakta", "dark_mode", "Tamni prikaz", _s27_36, "Restartuje aplikaciju za aktiviranje izmene", "refresh_data", "Osve\u017ei podatke", "blank_contact", "Prazan kontakt", "activity", "Aktivnost", _s16_182, "Nema zapisa", "clone", "Kloniraj", "loading", "U\u010ditavanje", "industry", "Delatnost", "size", "Veli\u010dina", "payment_terms", "Uslovi pla\u0107anja", "payment_date", "Datum uplate", "payment_status", "Status pla\u0107anja", _s16_184, "Na \u010dekanju", _s16_185, "Storno", _s16_186, "Neuspe\u0161no", _s16_187, "Zavr\u0161eno", _s16_188, "Delimi\u010dno povra\u0107eno", _s16_189, "Povra\u0107eno", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "\u010cisto", "client_portal", _s17_123, "show_tasks", "Prika\u017ei zadatke", "email_reminders", "Podsetnici e-po\u0161tom", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "Prvi podsetnik", "second_reminder", "Drugi podsetnik", "third_reminder", "Tre\u0107i podsetnik", "reminder1", "Prvi podsetnik", "reminder2", "Drugi podsetnik", "reminder3", "Tre\u0107i podsetnik", "template", "\u0160ablon", "send", "Po\u0161alji", "subject", "Naslov", "body", "Telo", "send_email", "Send Email", "email_receipt", _s31_15, "auto_billing", "Automatski ra\u010dun", "button", "Dugme", "preview", "Preview", "customize", "Prilagodi", "history", "Istorija", "payment", "Uplata", "payments", "Uplate", "refunded", "Povra\u0107eno", "payment_type", "Payment Type", _s21_57, _s21_81, "enter_payment", "Unesi uplatu", "new_payment", "Unesi pla\u0107anje", "created_payment", "Uspe\u0161no kreirana uplata", "updated_payment", "Uspe\u0161no a\u017eurirana uplata", _s16_190, "Uspe\u0161no arhivirana uplata", "deleted_payment", "Uspe\u0161no obrisana uplata", _s16_191, "Uspe\u0161no vra\u0107ena uplata", _s17_109, "Uspe\u0161no arhivirana :count uplata", _s16_192, "Uspe\u0161no obrisano :count uplata", _s17_110, _s37_15, "quote", "Ponuda", "quotes", "Ponude", "new_quote", "Novi predra\u010dun", "created_quote", "Predra\u010dun je uspe\u0161no kreiran", "updated_quote", "Predra\u010dun je uspe\u0161no a\u017euriran", "archived_quote", "Predra\u010dun je uspe\u0161no arhiviran", "deleted_quote", "Predra\u010dun uspe\u0161no obrisan", "restored_quote", "Uspe\u0161no vra\u0107en predra\u010dun", "archived_quotes", "Uspe\u0161no arhivirano :count predra\u010duna", "deleted_quotes", "Uspe\u0161no obrisano :count predra\u010duna", "restored_quotes", _s35_13, "expense", "Tro\u0161ak", "expenses", "Tro\u0161kovi", "vendor", "Dobavlja\u010d", "vendors", "Dobavlja\u010di", "task", "Task", "tasks", "Zadaci", "project", "Project", "projects", "Projekti", "activity_1", _s30_25, "activity_2", _s32_9, "activity_3", _s30_26, "activity_4", _s28_56, "activity_5", _s29_39, "activity_6", ":user je poslao ra\u010dun :invoice za :client kontaktu :contact", "activity_7", _s44_, "activity_8", _s30_27, "activity_9", _s27_49, "activity_10", _s85_0, "activity_11", _s30_28, "activity_12", _s30_29, "activity_13", _s29_40, "activity_14", _s27_50, "activity_15", _s29_41, "activity_16", _s30_30, "activity_17", _s28_57, "activity_18", ":user kreirao predra\u010dun :quote", "activity_19", ":user a\u017eurirao predra\u010dun :quote", "activity_20", _s50_4, "activity_21", ":contact pregledao predra\u010dun :quote", "activity_22", ":user arhivirao predra\u010dun :quote", "activity_23", ":user obrisao predra\u010dun :quote", "activity_24", ":user obnovio predra\u010dun :quote", "activity_25", _s28_58, "activity_26", _s30_31, "activity_27", _s29_42, "activity_28", _s28_59, "activity_29", _s42_9, "activity_30", _s28_47, "activity_31", _s29_29, "activity_32", _s28_48, "activity_33", _s29_30, "activity_34", _s29_43, "activity_35", _s31_7, "activity_36", _s30_21, "activity_37", _s31_8, "activity_39", ":user je otkazao :payment_amount pla\u0107anje :payment", "activity_40", ":user vratio :adjustment od :payment_amount pla\u0107anja :payment", "activity_41", _s41_6, "activity_42", _s24_32, "activity_43", _s24_33, "activity_44", _s25_40, "activity_45", _s24_34, "activity_46", _s25_41, "activity_47", _s30_22, "activity_48", ":user a\u017eurirao tiket :ticket", "activity_49", ":user zatvorio tiket :ticket", "activity_50", ":user spojio tiket :ticket", "activity_51", ":user podelio tiket :ticket", "activity_52", ":contact otvorio tiket :ticket", "activity_53", ":contact obnovio tiket :ticket", "activity_54", ":user obnovio tiket :ticket", "activity_55", ":contact odgovorio na tiket :ticket", "activity_56", ":user pogledao tiket :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Jednokratna lozinka", "emailed_quote", "Predra\u010dun je uspe\u0161no poslan e-po\u0161tom", "emailed_credit", _s27_48, _s20_51, "Ponuda uspe\u0161no obele\u017eena kao poslata", _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Odaberi", _s22_38, _s22_39, "custom_value1", _s20_99, "custom_value2", _s20_99, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Broja\u010d ra\u010duna", _s20_52, _s20_53, _s20_54, "Broja\u010d ponuda", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tip", "invoice_amount", "Iznos ra\u010duna", _s16_197, "Datum valute", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto naplata", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Naziv poreske stope", "tax_amount", "Iznos poreza", "tax_paid", "Porez Pla\u0107en", "payment_amount", "Iznos uplate", "age", "Age", "is_running", "Is Running", "time_log", "Vremenski zapisi", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "sl", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Uvozi podatke", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Ime kontakta", _s17_1, "Priimek konakta", "order", "Order", "unassigned", "Ne-dodeljen", "partial_value", "Mora biti ve\u010dje od ni\u010d in manj\u0161e od celotnega zneska", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Omogo\u010di", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Nastavite pod domeno ali prika\u017eite ra\u010dun na va\u0161i spletni strani.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Varnost", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Naro\u010dnina", _s16_11, _s16_12, _s17_7, "Uredi naro\u010dnino", _s20_1, "Naro\u010dnina uspe\u0161no ustvarjena", _s20_2, "Naro\u010dnina uspe\u0161no posodobljena", _s21_6, "Naro\u010dnina uspe\u0161no arhivirana", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Znova po\u0161lji vabilo", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Skenirajte barkodo s aplikacijo kot na primer :link. Spodaj vnesite prvo generirano geslo za enkratno rabo.", _s18_14, "Dvostopenjska avtentikacija je omogo\u010dena", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Dvostopenjska avtentikacija", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "Vrnjeno pla\u010dilo", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Prej\u0161nje \u010detrtletje", "to_update_run", "To update run", _s18_17, "Pretvori v ra\u010dun", _s16_24, _s16_25, "invoice_project", "Fakturiraj projekt", "invoice_task", "Fakturiraj opravilo", "invoice_expense", "Stro\u0161ek ra\u010duna", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "Pretvorjeni znesek", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Privzeti dokumenti", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Skrij", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Stolpec", "sample", "Vzorec", "map_to", "Map To", "import", "Uvozi", _s25_1, _s29_1, "select_file", "Prosim izberi datoteko", _s16_32, _s16_33, "csv_file", "CSV datoteka", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Storitev", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Nepla\u010dano", "white_label", "White Label", "delivery_note", "Dobavnica", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Delno pla\u010dilo do", "invoice_total", "Znesek", "quote_total", "Znesek predra\u010duna", "credit_total", "Dobropis skupaj", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Opozorilo", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Ime stranke", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Kategorije stro\u0161kov", _s20_20, "Nova katergorija stro\u0161kov", _s21_18, _s21_19, _s24_11, "Kategorija stro\u0161kov uspe\u0161no ustvarjena", _s24_12, "Kategorija stro\u0161kov uspe\u0161no nadgrajena", _s25_5, "Kategorija stro\u0161kov uspe\u0161no arhivirana", _s24_13, "Kategorija uspe\u0161no odstranjena", _s24_14, _s37_2, _s25_6, "Kategorija stro\u0161kov uspe\u0161no obnovljena", _s27_8, "Kategorija stro\u0161kov :count uspe\u0161no arhivirana", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Bo fakturiran", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Ozna\u010di kot Aktivno", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Ponavljajo\u010di ra\u010dun", _s18_29, "Ponavljajo\u010di ra\u010duni", _s21_25, "Nov ponavljajo\u010di ra\u010dun", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Ponavljajo\u010di ra\u010dun uspe\u0161no arhiviran", _s25_14, "Ponavljajo\u010di ra\u010dun uspe\u0161no odstranjen", _s25_15, _s38_7, _s26_6, "Ponavljajo\u010di ra\u010dun uspe\u0161no obnovljen", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Vrsti\u010dna postavka", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Poglej portal", "copy_link", "Copy Link", "token_billing", "Shrani podatke kartice", _s24_17, _s24_18, "always", "Vedno", "optin", "Opt-In", "optout", "Opt-Out", "label", "Oznaka", "client_number", "\u0160t. stranke", "auto_convert", "Auto Convert", "company_name", "Naziv podjetja", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s20_100, "emailed_quotes", "Uspe\u0161no poslani predra\u010duni", "emailed_credits", _s28_52, "gateway", "Prehod", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Ur", "statement", "Izpisek", "taxes", "Davki", "surcharge", "Dopla\u010dilo", "apply_payment", "Apply Payment", "apply", "Potrdi", "unapplied", "Unapplied", "select_label", "Izberi oznako", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Do", "health_check", "Health Check", "payment_type_id", "Na\u010din pla\u010dila", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Prihajajo\u010di ra\u010duni", _s17_43, _s17_44, "recent_payments", "Nedavna pla\u010dila", "upcoming_quotes", "Prihajajo\u010di predra\u010duni", "expired_quotes", "Potekli predra\u010duni", "create_client", "Ustvari stranko", "create_invoice", "Ustvari ra\u010dun", "create_quote", "Ustvari predra\u010dun", "create_payment", "Create Payment", "create_vendor", "Ustvari prodajalca", "update_quote", "Update Quote", "delete_quote", "Odstrani ponubdo", "update_invoice", "Update Invoice", "delete_invoice", "Zbri\u0161i ra\u010dun", "update_client", "Update Client", "delete_client", "Odstrani stranko", "delete_payment", "Odstrani pla\u010dilo", "update_vendor", "Update Vendor", "delete_vendor", "Odstrani prodajalca", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Odstrani stro\u0161ek", "create_task", "Vnesi opravilo", "update_task", "Update Task", "delete_task", "Odstrani opravilo", "approve_quote", "Approve Quote", "off", "Izklopljeno", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Brezpla\u010dno", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Cilj", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API \u017eetoni", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "\u017deton", "tokens", "\u017detoni", "new_token", "New Token", "edit_token", "Uredi \u017eeton", "created_token", "\u017deton uspe\u0161no ustvarjen", "updated_token", "\u017deton uspe\u0161no posodobljen", "archived_token", "\u017deton uspe\u0161no arhiviran", "deleted_token", "\u017deton uspe\u0161no odstranjen", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Po\u0161lji ra\u010dun na e-po\u0161to", "email_quote", "Po\u0161lji predra\u010dun", "email_credit", "Email Credit", "email_payment", "Po\u0161lji pla\u010dilo po elektronki po\u0161ti", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Kontaktno ime", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Uredi pla\u010dilni pogoj", _s20_29, "Pla\u010dilni pogoji uspe\u0161no ustvarjeni", _s20_30, "Pla\u010dilni pogoji uspe\u0161no posodobljeni", _s21_28, "Pla\u010dilni pogoji uspe\u0161no arhivirani", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Znesek dobropisa", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Ekskluzivno", "inclusive", "Vklju\u010deno", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Vra\u010dilo pla\u010dila", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Polno ime", _s17_55, "Mesto/Dr\u017eava/Po\u0161ta", _s17_57, "Po\u0161ta/Mesto/Dr\u017eava", "custom1", "Prvi po meri", "custom2", "Drugi po meri", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Izprazni podatke", _s16_64, "Podatki podjetja uspe\u0161no odstranjeni", _s18_38, "Opozorilo: Va\u0161i podatki bodo trajno zbrisani. Razveljavitev kasneje ni mogo\u010da.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dni", "age_group_30", "30 - 60 Dni", "age_group_60", "60 - 90 Dni", "age_group_90", "90 - 120 Dni", "age_group_120", "120+ dni", "refresh", "Osve\u017ei", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Detalji ra\u010duna", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Pravice", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", ":count ra\u010dun poslan", "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Potrdi licenco", "cancel_account", "Odstani ra\u010dun", _s22_19, "Opozorilo: Va\u0161 ra\u010dun bo trajno zbrisan. Razveljavitev ni mogo\u010da.", "delete_company", "Izbri\u0161i podjetje", _s22_20, "Opozorilo: Va\u0161e podjetne bo trajno zbrisano. Razveljavitev ni mogo\u010da.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Glava", "load_design", "Nolo\u017ei obliko", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Ponudbe", "tickets", "Tickets", _s16_69, "Ponavljajo\u010di predra\u010duni", "recurring_tasks", "Recurring Tasks", _s18_, "Ponavaljajo\u010di stro\u0161ki", _s18_39, "Upravljanje ra\u010duna", "credit_date", "Datum dobropisa", "credit", "Dobropis", "credits", "Dobropisi", "new_credit", "Vnesi dobropis", "edit_credit", "Uredi dobropis", "created_credit", "Dobropis uspe\u0161no ustvarjen", "updated_credit", "Uspe\u0161no posodobljen dobropis", "archived_credit", "Dobropis uspe\u0161no arhiviran", "deleted_credit", "Dobropis uspe\u0161no odstranjen", "removed_credit", _s27_21, "restored_credit", "Dobropis uspe\u0161no obnovljen", _s16_71, "\u0160tevilo uspe\u0161no arhiviranih dobropisov: :count", "deleted_credits", "\u0160tevilo uspe\u0161no odstranjenih dobropisov: :count", _s16_72, _s36_3, "current_version", "Trenutna razli\u010dica", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Izvedi ve\u010d", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Novo podjetje", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Ponastavi", "number", "Number", "export", "Izvoz", "chart", "Grafikon", "count", "Count", "totals", "Vsote", "blank", "Prazno", "day", "Dan", "month", "Mesec", "year", "Leto", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Zdru\u017ei v skupino", "credit_balance", "Saldo dobropisa", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Kontaktni telefon", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Ulica (za dostavo)", _s17_64, "Hi\u0161na \u0161t./stanovanje (za dostavo)", "shipping_city", "Mesto (za dostavo)", "shipping_state", "Regija/pokrajina (za dostavo)", _s20_33, "Po\u0161tna \u0161t. (za dostavo)", _s16_103, "Dr\u017eava (za dostavo)", _s16_105, "Ulica (za ra\u010dun)", _s16_106, "Hi\u0161na \u0161t./Stanovanje (za ra\u010dun)", "billing_city", "Mesto (za ra\u010dun)", "billing_state", "Regija/pokrajina (za ra\u010dun)", _s19_19, "Po\u0161tna \u0161t. (za ra\u010dun)", "billing_country", "Dr\u017eave (za ra\u010dun)", "client_id", "Id stranke", "assigned_to", "Assigned to", "created_by", "Ustvaril :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Stolpci", "aging", "Staranje", "profit_and_loss", "Profit in izguba", "reports", "Poro\u010dila", "report", "Poro\u010dilo", "add_company", "Dodaj podjetje", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, "Nepotrjen predra\u010dun", "help", "Pomo\u010d", "refund", "Vra\u010dilo", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Kontaktna e-po\u0161ta", "multiselect", "Multiselect", "entity_state", "Stanje", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Sporo\u010dilo", "from", "Od", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "forum za podporo", "about", "About", "documentation", "Dokumentacija", "contact_us", "Kontakt", "subtotal", "Neto", "line_total", "Skupaj", "item", "Postavka", "credit_email", "Credit Email", "iframe_url", "Spletna stran", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Da", "no", "Ne", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Ogled", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Uporabnik", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "Prosim izberite stranko", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Dav\u010dne dastavitve", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Proklop", _s19_23, _s20_41, "options", "Mo\u017enosti", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Oddaj", _s16_115, "Obnovite va\u0161e geslo", "late_fees", "Late Fees", "credit_number", "\u0160t. dobropisa", "payment_number", "Payment Number", "late_fee_amount", "Vrednost zamudnih obresti", _s16_116, "Odstotek za zamudne obresti", "schedule", "Urnik", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dnevi", "invoice_email", "Ra\u010dun", "payment_email", "Potrdilo", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Predra\u010dun", _s16_118, "Periodi\u010den opomin", _s16_120, _s16_121, "administrator", "Upravljalec", _s18_58, "Dovoli uporabniku da upravlja z uporabniki, nastavitvami in vsemi zapisi", "user_management", "Uporabniki", "users", "Uporabniki", "new_user", "Nov uporabnik", "edit_user", "Uredi uporabnika", "created_user", _s25_22, "updated_user", "Uporabnik uspe\u0161no posodobljen", "archived_user", "Uporabnik uspe\u0161no arhiviran", "deleted_user", "Uporabnik uspe\u0161no odstranjen", "removed_user", _s25_25, "restored_user", "Uporabnik uspe\u0161no obnovljen", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Splo\u0161ne nastavitve", "invoice_options", "Mo\u017enosti ra\u010duna", _s17_70, "Skrij datum pla\u010dila", _s22_27, 'Prika\u017ei le "Pla\u010dano" polje v ra\u010dunu, nakar je bilo pla\u010dilo prejeto.', _s23_17, "Omogo\u010deni dokumenti", _s28_15, "V ra\u010dunu vklju\u010di pripete slike.", _s16_124, "Prika\u017ei glavo na", _s16_125, "Prika\u017ei nogo na", "first_page", "Prva stran", "all_pages", "Vse strani", "last_page", "Zadnja stran", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Osnovna barva", "secondary_color", "Sekundarna barva", "page_size", "Velikost strani", "font_size", "Velikost pisave", "quote_design", "Predloga predra\u010duna", "invoice_fields", "Polja ra\u010duna", "product_fields", "Polja izdelka", "invoice_terms", "Pogoji ra\u010duna", "invoice_footer", "Noga ra\u010duna", "quote_terms", "Pogoji predra\u010duna", "quote_footer", "Noga predra\u010duna", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, "Samodejno arhiviraj predra\u010dune po pretvorbi.", _s18_61, "Samodejna Pretvorba", _s23_20, "Samodejno pretvori predra\u010dun v ra\u010dun, ki ga stranka potrdi.", _s17_72, _s17_73, "freq_daily", "Dnevno", "freq_weekly", "Tedensko", "freq_two_weeks", "Dva tedna", "freq_four_weeks", "\u0160tiri tedni", "freq_monthly", "Mese\u010dno", "freq_two_months", "Dva meseca", _s17_74, "Trije meseci", _s16_126, "Na \u0161tiri mesece", "freq_six_months", "\u0160est mesecev", "freq_annually", "Letno", "freq_two_years", "Na dve leti", _s16_127, "Three Years", "never", "Nikoli", "company", "Company", _s17_75, "Ustvarjene \u0161tevilke", "charge_taxes", "Zara\u010dunaj davke", "next_reset", "Naslednja ponastavitev", "reset_counter", "Ponastavi \u0161tevec", _s16_128, "Predpona ponavljajo\u010dih", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Polje izdelka", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Predpona", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "CSS po meri", _s17_79, _s17_80, _s16_130, "Prika\u017ei na PDF", _s21_46, "Prika\u017ei podpis stranke na PDF ra\u010dunu/predra\u010dunu.", _s25_27, "Potrditev pogojev ra\u010duna", _s30_5, "Stranka mora potrditi strinjanje s pogoji na ra\u010dunu.", _s23_21, "Potrditev pogojev predra\u010duna", _s28_16, "Stranka mora potrditi strinjanje s pogoji na predra\u010dunu.", _s25_28, "Podpis ra\u010duna", _s30_6, "Zahteva od stranke, da zagotovi svoj podpis.", _s23_22, "Podpis predra\u010duna", _s22_29, "Za\u0161\u010diti ra\u010dune z geslom", _s27_23, "Omogo\u010da da nastavite geslo za vsako osebo. \u010ce je geslo nastavljeno, ga bo uporabnik moral vnesti pred ogledom ra\u010duna.", "authorization", "Overovitev", "subdomain", "Poddomena", "domain", "Domena", "portal_mode", "Portal Mode", "email_signature", "Lep pozdrav,", _s24_21, "Olaj\u0161ajte strankam pla\u010devanje z dodajanjem schema.org ozna\u010db v va\u0161o e-po\u0161to.", "plain", "Navadno", "light", "Svetlo", "dark", "Temno", "email_design", "Stil e-po\u0161te", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Omogo\u010di ozna\u010dbe.", "reply_to_email", "Reply-To", "reply_to_name", "Reply-To Name", "bcc_email", "BCC", "processed", "Processed", "credit_card", _s16_214, "bank_transfer", "Ban\u010dno nakazilo", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Omogo\u010di minimalno", "enable_max", "Omogo\u010di maximalno", "min_limit", "Minimalno: :min", "max_limit", "Maksimalno: :max", "min", "Minimalno", "max", "Maksimalno", _s19_26, "Prikazani logotipi katric", "credentials", "Credentials", "update_address", "Posodobi naslov", _s19_28, "Posodobi naslov stranke z predlo\u017eenimi podatki", "rate", "Cena", "tax_rate", "Dav\u010dna stopnja", "new_tax_rate", "Nova dav\u010dna stopnja", "edit_tax_rate", "Uredi dav\u010dno stopnjo", _s16_133, "Dav\u010dna stopnja uspe\u0161no ustvarjena", _s16_134, "Dav\u010dna stopnja uspe\u0161no posodobljena", _s17_82, "Dav\u010dna stopnja uspe\u0161no arhivirana", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Samodejno vnesi izdelke", _s18_64, "Izbira izdelka bo samodejno vnesla opis in ceno", "update_products", "Samodejno posodobi izdelke", _s20_44, "Posodobitev ra\u010duna bo samodejno posodobila knji\u017enico izdelkov", _s16_136, "Pretvori izdelke", _s21_47, "Samodejno pretvori cene izdelkov v valuto stranke", "fees", "Provizije", "limits", "Omejitve", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Zavrzi spremembe", "default_value", "Default value", "disabled", "Onemogo\u010deno", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Nedelja", "monday", "Ponedeljek", "tuesday", "Torek", "wednesday", "Sreda", "thursday", "\u010cetrtek", "friday", "Petek", "saturday", "Sobota", "january", "Januar", "february", "Februar", "march", "Marec", "april", "April", "may", "Maj", "june", "Junij", "july", "Julij", "august", "August", "september", "September", "october", "Oktober", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 urni \u010das", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logotip", "saved_settings", _s27_24, _s16_142, "izdelka", "device_settings", "Device Settings", "defaults", "Privzeto", "basic_settings", "Osnovne nastavitve", _s17_87, "Napredne nastavitve", "company_details", "Podatki podjetja", "user_details", "Podrobnosti uporabnika", "localization", "Lokalizacija", "online_payments", "Spletna pla\u010dila", "tax_rates", "Dav\u010dne stopnje", "notifications", "Obvestila", "import_export", "Uvoz | Izvoz", "custom_fields", "Polja po meri", "invoice_design", "Izgled ra\u010duna", "buy_now_buttons", "Gumbi za takoj\u0161nji nakup", "email_settings", "Nastavitve e-po\u0161te", _s23_28, "Predloge in opomini", _s22_30, _s20_46, _s19_34, "Vizualizacija podatkov", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Pogoji uporabe", "privacy_policy", "Pravilnik o zasebnosti", "sign_up", "Prijavi se", "account_login", "Prijava v ra\u010dun", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Ustvari", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Prenesi", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokumenti", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Datum stro\u0161ka", "pending", "V teku", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Pretvorjeno", _s24_27, "Pripni datoteke", "exchange_rate", "Menjalni te\u010daj", _s16_151, "Pretvori valuto", "mark_paid", "Ozna\u010di kot pla\u010dano", "category", "Kategorija", "address", "Naslov", "new_vendor", "Nov prodajalec", "created_vendor", "Prodajalec uspe\u0161no ustvarjen", "updated_vendor", "Prodajalec uspe\u0161no posodobljen", "archived_vendor", "Prodajalec uspe\u0161no arhiviran", "deleted_vendor", "Prodajalec uspe\u0161no odstranjen", "restored_vendor", "Prodajalec uspe\u0161no obnovljen", _s16_152, "\u0160tevilo uspe\u0161no arhiviranih prodajalcev: :count clients", "deleted_vendors", "\u0160tevilo uspe\u0161no odstranjenih prodajalcev: :count", _s16_153, _s36_5, "new_expense", "Vnesi stro\u0161ek", "created_expense", "Stro\u0161ek uspe\u0161no vne\u0161en", "updated_expense", "Stro\u0161ek uspe\u0161no posodobljen", _s16_154, "Stro\u0161ek uspe\u0161no arhiviran", "deleted_expense", "Stro\u0161ek uspe\u0161no odstranjen", _s16_155, "Stro\u0161ek uspe\u0161no obnovljen", _s17_93, "Stro\u0161ki uspe\u0161no arhivirani", _s16_156, "Stro\u0161ki uspe\u0161no odstranjeni", _s17_94, _s37_9, "copy_shipping", "Kopiraj naslov za dostavo", "copy_billing", "Kopiraj naslov za ra\u010dun", "design", "Design", _s21_52, _s21_53, "invoiced", "Fakturirano", "logged", "Prijavljeno", "running", "V teku", "resume", "Nadaljuj", "task_errors", "Prosim popravite prekrivajo\u010de \u010dasove", "start", "Za\u010detek", "stop", "Kon\u010daj", "started_task", "Opravilo uspe\u0161no pri\u010deto", "stopped_task", "Opravilo uspe\u0161no ustavljeno", "resumed_task", "Opravilo uspe\u0161no ponovno zagnano", "now", "Zdaj", _s16_157, _s16_158, "timer", "Merilec \u010dasa", "manual", "Ro\u010dno", "budgeted", "Budgeted", "start_time", "Za\u010detek", "end_time", "\u010cas zaklju\u010dka", "date", "Datum", "times", "\u010cas", "duration", "Trajanje", "new_task", "Novo opravilo", "created_task", "Opravilo uspe\u0161no ustvarjeno", "updated_task", "Opravilo uspe\u0161no posodobljeno", "archived_task", "Opravilo uspe\u0161no arhivirano", "deleted_task", "Opravilo uspe\u0161no odstranjeno", "restored_task", "Opravilo uspe\u0161no obnovljeno", "archived_tasks", "\u0160tevilo uspe\u0161no odstranjenih opravil: :count", "deleted_tasks", "\u0160tevilo uspe\u0161no odstranjenih opravil: :count tasks", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Predvidene ure", "created_project", "Projekt uspe\u0161no ustvarjen", "updated_project", "Projekt uspe\u0161no posodobljen", _s16_159, "Projekt uspe\u0161no arhiviran", "deleted_project", "Projekt uspe\u0161no odstranjen", _s16_160, "Projekt uspe\u0161no obnovljen", _s17_95, "\u0160tevilo uspe\u0161no arhiviranih projektov: :count", _s16_161, "\u0160tevilo uspe\u0161no odstranjenih projektov: :count", _s17_96, _s37_10, "new_project", "Now projekt", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "klikni tukaj", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Noga", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Obseg po meri", "date_range", "\u010casovno obdobje", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Ta mesec", "last_month", "Zadnji mesec", "this_year", "To leto", "last_year", "Zadnje leto", "custom", "Po meri", _s16_162, _s16_163, "clone_to_quote", "Kopiraj v predra\u010dun", "clone_to_credit", "Clone to Credit", "view_invoice", "Ogled ra\u010duna", "convert", "Convert", "more", "More", "edit_client", "Uredi stranko", "edit_product", "Uredi izdelek", "edit_invoice", "Uredi ra\u010dun", "edit_quote", "Uredi predra\u010dun", "edit_payment", "Uredi pla\u010dilo", "edit_task", "Uredi opravilo", "edit_expense", "Uredi stro\u0161ek", "edit_vendor", "Uredi prodajalca", "edit_project", "Uredi projekt", _s22_, "Uredi ponavaljajo\u010d stro\u0161ek", _s20_47, "Uredi ponavaljajo\u010d predra\u010dun", "billing_address", "Naslov za po\u0161iljanje ra\u010duna", _s16_164, "Naslov za dostavo", "total_revenue", "Skupni prihodki", "average_invoice", "Povpre\u010den ra\u010dun", "outstanding", "Odprte postavke", "invoices_sent", ":count ra\u010duni poslani", "active_clients", "aktivne stranke", "close", "Zapri", "email", "E-po\u0161ta", "password", "Geslo", "url", "URL", "secret", "Skrivnost", "name", "Ime", "logout", "Odjava", "login", "Prijava", "filter", "Filter", "sort", "Sort", "search", "I\u0161\u010di", "active", "Aktivno", "archived", "Arhivirano", "deleted", "Odstranjeno", "dashboard", "Nadzorna plo\u0161\u010da", "archive", "Arhiv", "delete", "Odstrani", "restore", "Obnovitev", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, "Prosim vnesi klju\u010d izdelka", "ascending", "Nara\u0161\u010dajo\u010de", "descending", "Padajo\u010de", "save", "Shrani", _s17_100, _s17_101, "paid_to_date", "\u017de pla\u010dano", "balance_due", "Za pla\u010dilo", "balance", "Saldo", "overview", "Overview", "details", "Podrobnosti", "phone", "Telefon", "website", "Spleti\u0161\u010de", "vat_number", "Dav\u010dna \u0161t.", "id_number", "ID \u0161t.", "create", "Ustvari", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakti", "additional", "Additional", "first_name", "Ime", "last_name", "Priimek", "add_contact", "Dodaj kontakt", "are_you_sure", "Ali ste prepri\u010dani?", "cancel", "Prekli\u010di", "ok", "Ok", "remove", "Odstrani", _s16_170, _s16_171, "product", "Izdelek", "products", "Izdelki", "new_product", "Nov izdelek", "created_product", "Izdelek uspe\u0161no ustvarjen", "updated_product", "Izdelek uspe\u0161no posodobljen", _s16_172, "Izdelek uspe\u0161no arhiviran", "deleted_product", "Izdelek uspe\u0161no odstranjen", _s16_173, "Izdelek uspe\u0161no obnovljen", _s17_102, "\u0160tevilo uspe\u0161no arhiviranih izdelkov: :count", _s16_174, "\u0160tevilo uspe\u0161no odstranjenih izdelkov: :count", _s17_103, _s37_11, "product_key", "Izdelki", "notes", "Opis", "cost", "Cena", "client", "Stranka", "clients", "Stranke", "new_client", "Nova stranka", "created_client", "Stranka uspe\u0161no ustvarjena", "updated_client", "Uspe\u0161no posodobljena stranka", "archived_client", "Stranka uspe\u0161no arhivirana", _s16_175, "\u0160tevilo uspe\u0161no arhiviranih strank: :count clients", "deleted_client", "Stranka uspe\u0161no odstranjena", "deleted_clients", "\u0160tevilo uspe\u0161no odstranjenih strank: :count", "restored_client", "Stranka uspe\u0161no obnovljena", _s16_176, _s36_7, "address1", "Ulica", "address2", "Hi\u0161na \u0161t./Stanovanje", "city", "Mesto", "state", "Regija/pokrajina", "postal_code", "Po\u0161tna \u0161t.", "country", "Dr\u017eava", "invoice", "Ra\u010dun", "invoices", "Ra\u010duni", "new_invoice", "Nov ra\u010dun", "created_invoice", "Ra\u010dun uspe\u0161no ustvarjen", "updated_invoice", "Ra\u010dun uspe\u0161no posodobljen", _s16_177, "Ra\u010dun uspe\u0161no arhiviran", "deleted_invoice", "Ra\u010dun uspe\u0161no odstranjen", _s16_178, "Ra\u010dun uspe\u0161no obnovljen", _s17_104, "\u0160tevilo uspe\u0161no arhiviranih ra\u010dunov: :count invoices", _s16_179, "\u0160tevilo uspe\u0161no odstranjenih ponudb: :count invoices", _s17_105, _s37_12, "emailed_invoice", _s20_100, "emailed_payment", "Pla\u010dilo poslano po elektronski po\u0161ti", "amount", "Znesek", "invoice_number", "\u0160t. ra\u010duna", "invoice_date", "Datum ra\u010duna", "discount", "Popust", "po_number", "\u0160t. naro\u010dilnice", "terms", "Pogoji", "public_notes", "Javni zaznamki", "private_notes", "Zasebni zaznamki", "frequency", "Pogostost", "start_date", "Datum za\u010detka", "end_date", "Datum zapadlost", "quote_number", "\u0160t. predra\u010duna", "quote_date", "Datum predra\u010duna", "valid_until", "Veljavnost", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Opis", "unit_cost", "Cena", "quantity", "Koli\u010dina", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Slu\u017ebeni telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Rok pla\u010dila", _s16_180, "Delno pla\u010dilo do datuma", "status", "Stanje", _s17_106, "Invoice Status", "quote_status", "Stanje predra\u010duna", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Skupaj", "percent", "Odstotek", "edit", "Uredi", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Urna postavka", "settings", "Nastavitve", "language", "Language", "currency", "Valuta", "created_at", "Ustvarjen dne", "created_on", "Created On", "updated_at", "Updated", "tax", "DDV", _s30_13, _s30_14, _s27_34, "Prosim vnesi \u0161tevilko predra\u010duna", "past_due", "Zapadlo", "draft", "Osnutek", "sent", "Poslano", "viewed", "Viewed", "approved", "Approved", "partial", "Delno pla\u010dilo/polog", "paid", "Pla\u010dano", "mark_sent", "Ozna\u010di kot poslano", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Kon\u010dano", _s37_13, _s37_14, "dark_mode", "Temen na\u010din", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Dejavnost", _s16_182, _s16_183, "clone", "Kloniraj", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "Pla\u010dilni pogoji", "payment_date", "Datum pla\u010dila", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portal za stranke", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Omogo\u010deno", "recipients", "Prejemniki", "initial_email", "Prva e-po\u0161ta", "first_reminder", "Prvi opomin", "second_reminder", "Drugi opomin", "third_reminder", "Tretji opomin", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Predloga", "send", "Send", "subject", "Naslov", "body", "Vsebina", "send_email", "Po\u0161lji e-po\u0161to", "email_receipt", "Po\u0161lji ra\u010dun stranki", "auto_billing", "Auto billing", "button", "Button", "preview", "Predogled", "customize", "Prilagodi po meri", "history", "Zgodovina", "payment", "Pla\u010dilo", "payments", "Pla\u010dila", "refunded", "Refunded", "payment_type", "Na\u010din pla\u010dila", _s21_57, _s21_81, "enter_payment", "Vnesi pla\u010dilo", "new_payment", "Vnesi pla\u010dilo", "created_payment", "Pla\u010dilo uspe\u0161no ustvarjeno", "updated_payment", "Pla\u010dilo uspe\u0161no posodobljeno", _s16_190, "Pla\u010dilo uspe\u0161no arhivirano", "deleted_payment", "Pla\u010dilo uspe\u0161no odstranjeno", _s16_191, "Pla\u010dilo uspe\u0161no obnovljeno", _s17_109, "\u0160tevilo uspe\u0161no arhiviranih pla\u010dil: :count", _s16_192, "\u0160tevilo uspe\u0161no odstranjenih pla\u010dil: :count", _s17_110, _s37_15, "quote", "Predra\u010dun", "quotes", "Predra\u010duni", "new_quote", "Nov predra\u010dun", "created_quote", "Predra\u010dun uspe\u0161no ustvarjen", "updated_quote", "Predra\u010dun uspe\u0161no posodobljen", "archived_quote", "Predra\u010dun uspe\u0161no arhiviran", "deleted_quote", "Predra\u010dun uspe\u0161no odstranjen", "restored_quote", "Predra\u010dun uspe\u0161no obnovljen", "archived_quotes", "\u0160tevilo uspe\u0161no arhiviranih predra\u010dunov:", "deleted_quotes", "\u0160tevilo uspe\u0161no odstranjenih predra\u010dunov: :count", "restored_quotes", _s35_13, "expense", "Stro\u0161ek", "expenses", "Stro\u0161ki", "vendor", "Prodajalec", "vendors", "Prodajalci", "task", "Opravilo", "tasks", "Opravila", "project", "Projekt", "projects", "Projekti", "activity_1", ":user je ustvaril stranko :client", "activity_2", ":user je arhiviraj stranko :client", "activity_3", ":user je odstranil stranko :client", "activity_4", ":user je ustvaril ra\u010dun :invoice", "activity_5", ":user je posodobil ra\u010dun :invoice", "activity_6", ":user je ra\u010dun :invoice za :client poslal osebi :contact", "activity_7", ":contact si je ogledal ra\u010dun :invoice za :client", "activity_8", ":user je arhiviral ra\u010dun :invoice", "activity_9", ":user je odstranil ra\u010dun :invoice", "activity_10", ":contact je vnesel pla\u010dilo :payment v znesku :payment_amount na ra\u010dunu :invoice za :client", "activity_11", ":user je posodobil pla\u010dilo :payment", "activity_12", ":user je arhiviral pla\u010dilo :payment", "activity_13", ":user je odstranil :payment", "activity_14", ":user je vnesel :credit dobropis", "activity_15", ":user je posodobil :credit dobropis", "activity_16", ":user je arhiviral :credit dobropis", "activity_17", ":user je odstranil :credit dobropis", "activity_18", ":user je ustvaril predra\u010dun :quote", "activity_19", ":user je posodobil predra\u010dun :quote", "activity_20", ":user je predra\u010dun :quote za :client poslal osebi :contact", "activity_21", ":contact je pogledal predra\u010dun :quote", "activity_22", ":user je arhiviral predra\u010dun :quote", "activity_23", ":user je odstranil predra\u010dun :quote", "activity_24", ":user je obnovil predra\u010dun :quote", "activity_25", ":user je obnovil ra\u010dun :invoice", "activity_26", ":user je obnovil stranko :client", "activity_27", ":user je obnovil pla\u010dilo :payment", "activity_28", ":user je obnovil dobropis :credit", "activity_29", ":contact je potrdil predra\u010dun :quote za :client", "activity_30", ":user je ustvaril prodajalca :vendor", "activity_31", ":user je arhiviral prodajalca :vendor", "activity_32", ":user je odstranil prodajalca :vendor", "activity_33", ":user je obnovil prodajalca :vendor", "activity_34", ":user je vnesel stro\u0161ek :expense", "activity_35", ":user je arhiviral stro\u0161ek :expense", "activity_36", ":user je izbrisal stro\u0161ek :expense", "activity_37", ":user je obnovil stro\u0161ek :expense", "activity_39", ":user je preklical pla\u010dilo :payment v znesku :payment_amount", "activity_40", ":user je vrnil :adjustment od pla\u010dila :payment v znesku :payment_amount", "activity_41", ":payment_amount pla\u010dilo (:payment) ni uspelo", "activity_42", ":user je vnesel opravilo :task", "activity_43", ":user je posodobil opravilo :task", "activity_44", ":user je arhiviral opravilo :task", "activity_45", ":user je izbrisal opravilo :task", "activity_46", ":user je obnovil opravilo :task", "activity_47", ":user je posodobil opravilo :expense", "activity_48", ":user je posodobil zahtevek :ticker", "activity_49", ":user je zaprl zahtevek :ticket", "activity_50", ":user je zdru\u017eil zahtevek :ticket", "activity_51", ":user je razdru\u017eil zahtevek :ticket", "activity_52", ":contact je odprl zahtevek :ticket", "activity_53", ":contact je ponovno odprl zahtevek :ticket", "activity_54", ":user je ponovno odprl zahtevek :ticket", "activity_55", ":contact je odgovoril na zahtevek :ticket", "activity_56", ":user si je ogledal zahtevek :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Geslo za enkratno uporabo", "emailed_quote", "Predra\u010dun uspe\u0161no poslan", "emailed_credit", _s27_48, _s20_51, "Predra\u010dun ozna\u010den kot poslan", _s21_59, _s34_15, "expired", "Poteklo", "all", "Vse", "select", "Izberi", _s22_38, _s22_39, "custom_value1", _s16_269, "custom_value2", _s16_269, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u0160tevec za ra\u010dun", _s20_52, _s20_53, _s20_54, "\u0160tevec \u0161tevilke predra\u010duna", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tip", "invoice_amount", "Znesek ra\u010duna", _s16_197, "Veljavnost", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Samodejno pla\u010dilo", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Ime dav\u010dne stopnje", "tax_amount", "Znesek davka", "tax_paid", "Tax Paid", "payment_amount", "Znesek pla\u010dila", "age", "Starost", "is_running", "Is Running", "time_log", "\u010casovni Dnevnik", "bank_id", "Banka", _s19_49, _s19_50, _s16_198, "Kategorija stro\u0161kov", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "es", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importar datos", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Primer Nombre de Contacto", _s17_1, "Apellido de Contacto", "order", "Order", "unassigned", "Unassigned", "partial_value", "Debe ser mayor que cero y menor que el total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Asigne el suubdominio o mostrar la factura en su propio sitio web.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Suscripciones", _s16_11, _s16_12, _s17_7, "Editar suscripci\xf3n", _s20_1, _s32_20, _s20_2, _s37_23, _s21_6, "Suscripci\xf3n correctamente archivada", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s19_91, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Escanee el c\xf3digo de barras con una aplicaci\xf3n compatible con :link", _s18_14, "Autenticaci\xf3n de Dos Factores habilitada con \xe9xito", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Autenticaci\xf3n de Dos Factores", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "\xdaltimo Trimestre", "to_update_run", "To update run", _s18_17, _s19_92, _s16_24, "URL de Registro", "invoice_project", "Facturar proyecto", "invoice_task", "Tarea de Factura", "invoice_expense", "Facturar Gasto", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s18_143, _s16_30, "Cantidad Convertida", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Documentos por defecto", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Ocultar", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Columna", "sample", "Ejemplo", "map_to", "Map To", "import", "Importar", _s25_1, _s29_1, "select_file", "Por favor selecciona un archivo", _s16_32, _s16_33, "csv_file", _s23_57, "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Servicio", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Sin Pagar", "white_label", "White Label", "delivery_note", "Nota de Entrega", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Total Facturado", "quote_total", "Total cotizado", "credit_total", "Cr\xe9dito Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", _s18_144, "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, _s18_25, _s20_20, _s20_21, _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, "Categor\xeda actualizada con \xe9xito", _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, _s18_145, _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", _s18_146, "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, _s18_147, _s18_29, _s20_101, _s21_25, _s24_61, _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Factura peri\xf3dica archivada", _s25_14, "Factura peri\xf3dica borrada", _s25_15, _s38_7, _s26_6, "Factura peri\xf3dica restaurada", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Ganancia", "line_item", "Item de Linea", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Abierto", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Guardar detalles de la tarjeta", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etiqueta", "client_number", "Cliente N\xfamero", "auto_convert", "Auto Convert", "company_name", "Nombre de Empresa", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "Facturas enviadas por correo electr\xf3nico con \xe9xito.", "emailed_quotes", "Cotizaciones enviadas por correo electr\xf3nico con \xe9xito.", "emailed_credits", _s28_52, "gateway", "Pasarela de Pagos", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Horas", "statement", "Estado De Cuenta", "taxes", "Impuestos", "surcharge", "Sobrecargo", "apply_payment", "Apply Payment", "apply", "Aplicar", "unapplied", "Unapplied", "select_label", "Seleccionar Etiqueta", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Para", "health_check", "Health Check", "payment_type_id", "Tipo de pago", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, _s17_168, _s17_43, _s17_44, "recent_payments", "Pagos Recientes", "upcoming_quotes", "Pr\xf3ximas Cotizaciones", "expired_quotes", "Cotizaciones Vencidas", "create_client", "Crear Cliente", "create_invoice", "Crear Factura", "create_quote", "Crear Cotizaci\xf3n", "create_payment", "Create Payment", "create_vendor", "Crear Proveedor", "update_quote", "Update Quote", "delete_quote", "Eliminar Cotizaci\xf3n", "update_invoice", "Update Invoice", "delete_invoice", _s16_270, "update_client", "Update Client", "delete_client", _s16_271, "delete_payment", "Eliminar Pago", "update_vendor", _s20_102, "delete_vendor", _s16_272, "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Borrar Gasto", "create_task", "Crear Tarea", "update_task", "Update Task", "delete_task", "Eliminar Tarea", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Objetivo", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "Editar Token", "created_token", "Token creado con \xe9xito", "updated_token", "Token actualizado con \xe9xito", "archived_token", "Token archivado", "deleted_token", "Token eliminado con \xe9xito", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_93, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Enviar factura por correo", "email_quote", "Enviar Cotizaci\xf3n", "email_credit", "Email Credit", "email_payment", "Enviar Pago por Correo Electr\xf3nico", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s26_57, _s20_29, "T\xe9rmino de pago creado con \xe9xito", _s20_30, "T\xe9rmino de pago actualizado con \xe9xito", _s21_28, "T\xe9rmino de pago archivado con \xe9xito", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", _s19_94, "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Buscar Proveedor", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", _s18_148, "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Nombre Completo", _s17_55, _s17_56, _s17_57, "C\xf3digo Postal/Ciudad/Estado", "custom1", "Primero Personalizado", "custom2", _s21_100, "custom3", "Tercero Personalizado", "custom4", "Cuarto Personalizado", "optional", "Opcional", "license", "Licencia", "purge_data", "Purgar Datos", _s16_64, "Datos de la empresa purgados con \xe9xito", _s18_38, "Advertencia: Esto borrar\xe1 definitivamente tus datos, no hay de deshacerlo.", "invoice_balance", "Balance de la Factura", "age_group_0", "0 - 30 D\xedas", "age_group_30", "30 - 60 D\xedas", "age_group_60", "60 - 90 D\xedas", "age_group_90", "90 - 120 D\xedas", "age_group_120", "120+ D\xedas", "refresh", "Refrescar", "saved_design", "Dise\xf1o guardado con \xe9xito", "client_details", "Detalles del Cliente", "company_address", "Direcci\xf3n de la Empresa", "invoice_details", "Detalles de la Factura", "quote_details", "Detalles de la Cotizaci\xf3n", "credit_details", "Detalles del Cr\xe9dito", "product_columns", "Columna de Productos", "task_columns", "Columna de Tareas", "add_field", "Agregar Campos", "all_events", _s17_169, "permissions", "Permissions", "none", "Ninguno", "owned", "Propiedad", "payment_success", "Pago Exit\xf3so", "payment_failure", "Fallos con el Pago", "invoice_sent", ":count factura enviada", "quote_sent", "Cotizaci\xf3n Enviada", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Factura Vista", "quote_viewed", "Cr\xe9dito Visto", "credit_viewed", "Cr\xe9dito Visto", "quote_approved", "Cotizaci\xf3n Aprobada", _s25_18, "Recibir Todas Las Notificaciones", _s16_65, _s16_273, "apply_license", "Activar Licencia", "cancel_account", "Cancelar Cuenta", _s22_19, "AVISO: Esta acci\xf3n eliminar\xe1 tu cuenta de forma permanente.", "delete_company", "Eliminar Empresa", _s22_20, "Advertencia: Esto eliminar\xe1 su empresa, no hay manera de deshacerlo.", "enabled_modules", "Enabled Modules", "converted_quote", "Cotizaci\xf3n convertida con \xe9xito", "credit_design", "Dise\xf1o de Cr\xe9ditos", "includes", "Incluir", "header", "Encabezado", "load_design", "Cargar Dise\xf1o", "css_framework", "Framework de CSS", "custom_designs", _s22_77, "designs", "Dise\xf1os", "new_design", "Nuevo Dise\xf1o", "edit_design", "Editar Dise\xf1o", "created_design", "Dise\xf1o creado con \xe9xito", "updated_design", "Dise\xf1o actualizado con \xe9xito", "archived_design", "Dise\xf1o archivado con \xe9xito", "deleted_design", "Dise\xf1o eliminado con \xe9xito", "removed_design", "Dise\xf1o removido con \xe9xito", "restored_design", "Dise\xf1o restaurado con \xe9xito", _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Propuestas", "tickets", "Tickets", _s16_69, "Cotizaciones Recurrentes", "recurring_tasks", _s18_149, _s18_, "Gastos Recurrentes", _s18_39, _s18_40, "credit_date", _s16_274, "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Ingresa el Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", "Cr\xe9dito creado con \xe9xito", "updated_credit", "Cr\xe9dito actualizado con \xe9xito", "archived_credit", "Cr\xe9dito archivado con \xe9xito", "deleted_credit", "Cr\xe9ditos eliminados con \xe9xito", "removed_credit", "Cr\xe9dito removido con \xe9xito", "restored_credit", "Cr\xe9dito restaurado con \xe9xito", _s16_71, ":count creditos archivados con \xe9xito", "deleted_credits", ":count creditos eliminados con \xe9xito", _s16_72, _s36_3, "current_version", "Versi\xf3n Actual", "latest_version", "\xdaltiima Versi\xf3n", "update_now", "Actualizarse Ahora", _s26_13, "Una nueva versi\xf3n de la aplicaci\xf3n est\xe1 disponible", _s16_73, _s24_62, "app_updated", "Actualizaci\xf3n completada con \xe9xito", "learn_more", "Saber m\xe1s", "integrations", "Integraciones", "tracking_id", "Id de Rastreo", _s17_59, "URL del Webhook de Slack", "credit_footer", "Pie de P\xe1gina del Cr\xe9dito", "credit_terms", "T\xe9rminos del Cr\xe9dito", "new_company", "Nueva Empresa", "added_company", "Empresa agregada con \xe9xito", "company1", "Empresa Personalizada 1", "company2", "Empresa Personalizada 2", "company3", "Empresa Personalizada 3", "company4", "Empresa Personalizada 4", "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "Reiniciar", "number", "Number", "export", "Exportar", "chart", "Gr\xe1fica", "count", "Count", "totals", "Totales", "blank", "Blank", "day", "Day", "month", "Mes", "year", "A\xf1o", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Agrupar por", "credit_balance", _s16_275, _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Tel\xe9fono de Contacto", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Calle de Env\xedo", _s17_64, "Apto/Suite de Env\xedo", "shipping_city", "Ciudad de Env\xedo", "shipping_state", "Estado/Provincia de Env\xedo", _s20_33, "C\xf3digo Postal de Env\xedo", _s16_103, "Pa\xeds de Env\xedo", _s16_105, "Calle de Facturaci\xf3n", _s16_106, "Apto/Suite de Facturaci\xf3n", "billing_city", "Ciudad de Facturaci\xf3n", "billing_state", "Estado/Provincia de Facturaci\xf3n", _s19_19, "C\xf3digo Postal de Facturaci\xf3n", "billing_country", "Pa\xeds de Facturaci\xf3n", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_276, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columnas", "aging", "Envejecimiento", "profit_and_loss", _s20_103, "reports", "Informes", "report", "Reporte", "add_company", "Agregar Empresa", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Ayuda", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Correo de Contacto", "multiselect", "Multiselect", "entity_state", "Estado", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Mensaje", "from", "De", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "foro de soporte", "about", "About", "documentation", "Documentaci\xf3n", "contact_us", "Cont\xe1ctenos", "subtotal", "Subtotal", "line_total", "Total", "item", "Concepto", "credit_email", "Credit Email", "iframe_url", "Sitio Web", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Si", "no", "No", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Seleccionar Empresa", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Ver", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Usuario", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", _s26_58, _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Opciones", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Enviar", _s16_115, "Recuperar contrase\xf1a", "late_fees", "Late Fees", "credit_number", "N\xfamero de Cr\xe9dito", "payment_number", "Payment Number", "late_fee_amount", "Valor Tarifa por Tardanza", _s16_116, "Porcentaje Tarifa por Tardanza", "schedule", "Programar", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "D\xedas", "invoice_email", "Correo de Factura", "payment_email", "Correo de Pago", "partial_payment", "Pago Parcial", "payment_partial", "Partial Payment", _s21_44, "Correo Electr\xf3nico de Pago Parcial", "quote_email", "Correo de Cotizacion", _s16_118, "Recordatorio sin fin", _s16_120, _s16_121, "administrator", "Administrador", _s18_58, "Permitir que administre usuarios, cambie configuraciones y modifique cualquier registro", "user_management", "Gesti\xf3n de Usuarios", "users", "Usuarios", "new_user", "Nuevo Usuario", "edit_user", "Editar Usario", "created_user", _s25_22, "updated_user", "Usario actualizado con \xe9xito", "archived_user", "Usuario archivado", "deleted_user", "Usario eliminado con \xe9xito", "removed_user", _s25_25, "restored_user", "Usuario restaurado con \xe9xito", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, _s21_105, "invoice_options", _s19_95, _s17_70, "Ocultar Valor Pagado a la Fecha", _s22_27, "Solo mostrar la opci\xf3n \u201cPagado a la fecha\u201d en sus facturas cuando se ha recibido un pago.", _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Mostrar encabezado", _s16_125, "Mostrar pie", "first_page", "Primera p\xe1gina", "all_pages", _s17_170, "last_page", "\xdaltima p\xe1gina", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Color Primario", "secondary_color", _s16_277, "page_size", "Page Size", "font_size", "Tama\xf1o de Letra", "quote_design", "Dise\xf1o de Cotizaci\xf3n", "invoice_fields", _s17_171, "product_fields", _s18_150, "invoice_terms", _s23_58, "invoice_footer", "Pie de p\xe1gia de la factura", "quote_terms", "Terminos de Cotizaci\xf3n", "quote_footer", "Pie de la Cotizaci\xf3n", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convertir", _s23_20, "Convierte un presupuesto en factura automaticamente cuando los aprueba el cliente.", _s17_72, _s17_73, "freq_daily", "Diario", "freq_weekly", "Weekly", "freq_two_weeks", "Two weeks", "freq_four_weeks", "Four weeks", "freq_monthly", "Mensual", "freq_two_months", "Dos meses", _s17_74, "Tres meses", _s16_126, "Cuatro meses", "freq_six_months", "Seis meses", "freq_annually", "Annually", "freq_two_years", "Dos a\xf1os", _s16_127, "Three Years", "never", "Never", "company", "Empresa", _s17_75, _s17_172, "charge_taxes", _s16_278, "next_reset", "Siguiente Reinicio", "reset_counter", _s18_140, _s16_128, _s18_151, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", _s16_279, "company_value", "Valor de Empresa", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Campo Proveedor", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefijo", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", _s17_157, _s17_79, _s17_80, _s16_130, "Ver en PDF", _s21_46, "Mostrar la firma del cliente en los PDF de facturas/presupuestos.", _s25_27, "Casilla de los T\xe9rminos de la Factura", _s30_5, "Requerir que el cliente confirme que acept\xf3 los t\xe9rminos de la factura.", _s23_21, "Casilla de los T\xe9rminos de la Cotizaci\xf3n", _s28_16, "Requerir que el cliente confirme que acept\xf3 los t\xe9rminos de la cotizaci\xf3n.", _s25_28, "Firma de la Facturra", _s30_6, "Requerir que el cliente provea su firma.", _s23_22, "Firma de la Cotizaci\xf3n", _s22_29, _s32_21, _s27_23, "Permite establecer una contrase\xf1a para cada contacto. Si una contrase\xf1a es establecida, se le ser\xe1 solicitada al contacto para acceder a sus facturas.", "authorization", "Autorizaci\xf3n", "subdomain", "Subdominio", "domain", "Dominio", "portal_mode", "Portal Mode", "email_signature", _s18_152, _s24_21, _s118_, "plain", "Plano", "light", "Claro", "dark", "Oscuro", "email_design", _s16_280, "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, _s16_281, "reply_to_email", "Correo de Respuesta", "reply_to_name", "Reply-To Name", "bcc_email", "Correo para Copia Oculta BCC", "processed", "Processed", "credit_card", "Credit Card", "bank_transfer", "Bank Transfer", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Logos de Tarjetas Aceptadas", "credentials", "Credentials", "update_address", _s20_104, _s19_28, "Actualiza la direcci\xf3n del cliente con los detalles proporcionados", "rate", "Tasas", "tax_rate", "Tasa de Impuesto", "new_tax_rate", "Nueva Tasa de Impuesto", "edit_tax_rate", "Editar tasa de impuesto", _s16_133, "Tasa de impuesto creada con \xe9xito", _s16_134, "Tasa de impuesto actualizada con \xe9xito", _s17_82, "Tasa de impuesto archivada con \xe9xito", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Auto-rellenar productos", _s18_64, _s74_, "update_products", "Auto-actualizar productos", _s20_44, "Actualizar una factura autom\xe1ticamente actualizar\xe1 los productos", _s16_136, "Convertir productos", _s21_47, "Convertir autom\xe1ticamente precios de los productos a la moneda del cliente", "fees", "Tarifas", "limits", "L\xedmites", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Descartar Cambios", "default_value", "Default value", "disabled", "Deshabilitado", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Domingo", "monday", "Lunes", "tuesday", "Martes", "wednesday", "Mi\xe9rcoles", "thursday", "Jueves", "friday", "Viernes", "saturday", "S\xe1bado", "january", "Enero", "february", "Febrero", "march", "Marzo", "april", "Abril", "may", "Mayo", "june", "Junio", "july", "Julio", "august", "Agosto", "september", "Septiembre", "october", "Octubre", "november", "Noviembre", "december", "Diciembre", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "Tiempo 24 Horas", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, "Filtro por Proveedor", "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "Configuraci\xf3n del Producto", "device_settings", "Device Settings", "defaults", "Valores por Defecto", "basic_settings", _s20_105, _s17_87, _s22_78, "company_details", _s22_79, "user_details", _s19_96, "localization", "Localizaci\xf3n", "online_payments", "Pagos Online", "tax_rates", "Tasas de Impuesto", "notifications", "Notificaciones", "import_export", _s17_167, "custom_fields", "Campos personalizados", "invoice_design", "Dise\xf1o de factura", "buy_now_buttons", "Buy Now Buttons", "email_settings", _s36_27, _s23_28, _s26_59, _s22_30, _s20_46, _s19_34, _s22_80, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "T\xe9rminos de Servicio", "privacy_policy", "Privacy Policy", "sign_up", "Registrarse", "account_login", "Iniciar Sesi\xf3n", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Descargar", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Documento", "documents", "Documents", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Fecha del Gasto", "pending", "Pendiente", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Convertido", _s24_27, _s31_26, "exchange_rate", "Tipo de Cambio", _s16_151, _s16_282, "mark_paid", "Marcar como Pagado", "category", "Category", "address", "Direcci\xf3n", "new_vendor", "Nuevo Proveedor", "created_vendor", "Proveedor creado con \xe9xito", "updated_vendor", "Proveedor actualizado con \xe9xito", "archived_vendor", "Proveedor archivado con \xe9xito", "deleted_vendor", "Proveedor eliminado con \xe9xito", "restored_vendor", "Proveedor recuperado con \xe9xito", _s16_152, _s41_12, "deleted_vendors", _s41_12, _s16_153, _s36_5, "new_expense", "Ingrese el Gasto", "created_expense", _s26_60, "updated_expense", _s31_27, _s16_154, _s29_59, "deleted_expense", _s27_60, _s16_155, _s29_16, _s17_93, _s31_28, _s16_156, _s29_60, _s17_94, _s37_9, "copy_shipping", "Copiar env\xedo", "copy_billing", "Copiar facturaci\xf3n", "design", "Design", _s21_52, _s21_53, "invoiced", "Facturado", "logged", "Registrado", "running", "Ejecutando", "resume", "Continuar", "task_errors", "Por favor corrija cualquier tiempo que se sobreponga con otro", "start", "Iniciar", "stop", "Detener", "started_task", "Tarea iniciada con \xe9xito", "stopped_task", "Tarea detenida con \xe9xito", "resumed_task", "Tarea reanudada con \xe9xito", "now", "Ahora", _s16_157, _s16_158, "timer", "Temporizador", "manual", "Manual", "budgeted", "Budgeted", "start_time", "Tiempo de Inicio", "end_time", "Tiempo Final", "date", "Fecha", "times", "Tiempos", "duration", "Duraci\xf3n", "new_task", "Nueva Tarea", "created_task", "Tarea creada con \xe9xito", "updated_task", "Tarea actualizada con \xe9xito", "archived_task", "Tarea archivada con \xe9xito", "deleted_task", "Tarea eliminada con \xe9xito", "restored_task", "Tarea restaurada con \xe9xito", "archived_tasks", ":count tareas archivadas con \xe9xito", "deleted_tasks", ":count tareas eliminadas con \xe9xito", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", "Proyecto creado con \xe9xito", "updated_project", "Proyecto actualizado con \xe9xito", _s16_159, "Proyecto archivado con \xe9xito", "deleted_project", "Proyecto eliminado con \xe9xito", _s16_160, "Proyecto restaurado con \xe9xito", _s17_95, "Archivados con \xe9xito :count proyectos", _s16_161, "Eliminados con \xe9xito :count proyectos", _s17_96, _s37_10, "new_project", "Nuevo Proyecto", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "haz clic aqu\xed", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Pie de P\xe1gina", "compare", "Comparar", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Rango Personalizado", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s22_81, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Comparar con", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Este Mes", "last_month", "Mes Anterior", "this_year", "Este A\xf1o", "last_year", "A\xf1o Anterior", "custom", "Personalizado", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clonar como Cr\xe9dito", "view_invoice", "Ver Factura", "convert", "Convert", "more", "More", "edit_client", "Editar Cliente", "edit_product", "Editar Producto", "edit_invoice", "Editar Factura", "edit_quote", "Editar Cotizaci\xf3n", "edit_payment", "Editar Pago", "edit_task", "Editar Tarea", "edit_expense", "Editar Gasto", "edit_vendor", _s16_283, "edit_project", "Editar Proyecto", _s22_, "Editar Gasto Recurrente", _s20_47, _s20_48, "billing_address", "Direcci\xf3n de facturaci\xf3n", _s16_164, "Direcci\xf3n de Env\xedo", "total_revenue", _s16_284, "average_invoice", _s23_59, "outstanding", _s18_153, "invoices_sent", _s24_63, "active_clients", _s16_285, "close", "Cerrar", "email", "Correo Electr\xf3nico", "password", "Contrase\xf1a", "url", "URL", "secret", "Secret", "name", "Nombre", "logout", "Cerrar sesi\xf3n", "login", "Iniciar Sesi\xf3n", "filter", "Filtrar", "sort", "Sort", "search", "B\xfasqueda", "active", "Activo", "archived", "Archivado", "deleted", "Eliminado", "dashboard", "Inicio", "archive", "Archivar", "delete", "Eliminar", "restore", "Restaurar", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascendente", "descending", "Descendente", "save", "Guardar", _s17_100, _s17_101, "paid_to_date", "Pagado", "balance_due", "Pendiente", "balance", "Saldo", "overview", "Overview", "details", "Detalles", "phone", "Tel\xe9fono", "website", "Sitio Web", "vat_number", "CIF/NIF", "id_number", "ID Number", "create", "Crear", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Contactos", "additional", "Additional", "first_name", "Nombres", "last_name", "Apellidos", "add_contact", "A\xf1adir contacto", "are_you_sure", "\xbfEst\xe1s Seguro?", "cancel", "Cancelar", "ok", "Ok", "remove", "Remove", _s16_170, _s16_171, "product", "Producto", "products", "Productos", "new_product", "Nuevo Producto", "created_product", "Producto creado con \xe9xito", "updated_product", _s30_55, _s16_172, "Producto archivado con \xe9xito", "deleted_product", _s30_55, _s16_173, "Producto restaurado con \xe9xito", _s17_102, ":count productos archivados con \xe9xito", _s16_174, "Eliminados con \xe9xito :count productos", _s17_103, _s37_11, "product_key", "Producto", "notes", "Notas", "cost", "Costo", "client", "Cliente", "clients", "Clientes", "new_client", "Nuevo Cliente", "created_client", "cliente creado con \xe9xito", "updated_client", "Cliente actualizado con \xe9xito", "archived_client", "Cliente archivado con \xe9xito", _s16_175, ":count clientes archivados con \xe9xito", "deleted_client", "Cliente eliminado con \xe9xito", "deleted_clients", ":count clientes eliminados con \xe9xito", "restored_client", "Cliente restaurado con \xe9xito", _s16_176, _s36_7, "address1", "Calle", "address2", "Bloq/Pta", "city", "Ciudad", "state", "Regi\xf3n/Provincia", "postal_code", "C\xf3digo Postal", "country", "Pa\xeds", "invoice", "Factura", "invoices", "Facturas", "new_invoice", "Nueva Factura", "created_invoice", "Factura creada con \xe9xito", "updated_invoice", "Factura actualizada con \xe9xito", _s16_177, "Factura archivada con \xe9xito", "deleted_invoice", "Factura eliminada con \xe9xito", _s16_178, "Factura restaurada con \xe9xito", _s17_104, ":count facturas archivados con \xe9xito", _s16_179, ":count facturas eliminadas con \xe9xito", _s17_105, _s37_12, "emailed_invoice", "Factura enviada con \xe9xito", "emailed_payment", "Pago enviado por correo con \xe9xito", "amount", "Cantidad", "invoice_number", _s17_173, "invoice_date", _s16_286, "discount", "Descuento", "po_number", "N\xfamero de Orden", "terms", "T\xe9rminos", "public_notes", "Notas", "private_notes", "Notas Privadas", "frequency", "Frequencia", "start_date", "Fecha de Inicio", "end_date", "Fecha de Finalizaci\xf3n", "quote_number", "Numero de cotizaci\xf3n", "quote_date", "Fecha cotizaci\xf3n", "valid_until", "V\xe1lida Hasta", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Descripci\xf3n", "unit_cost", "Coste unitario", "quantity", "Cantidad", "add_item", "Add Item", "contact", "Contacto", "work_phone", "Tel\xe9fono", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Fecha de Pago", _s16_180, "Fecha de Vencimiento Parcial", "status", "Estado", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Total", "percent", "Porciento", "edit", "Editar", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Tasa de Tarea", "settings", "Configuraci\xf3n", "language", "Language", "currency", "Moneda", "created_at", _s17_174, "created_on", "Created On", "updated_at", "Updated", "tax", "Impuesto", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Vencido", "draft", "Borrador", "sent", "Enviado", "viewed", "Viewed", "approved", "Approved", "partial", _s16_266, "paid", "Pagado", "mark_sent", "Marcar como enviado", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Hecho", _s37_13, _s37_14, "dark_mode", "Modo Oscuro", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Actividad", _s16_182, _s16_183, "clone", "Clon", "loading", "Cargando", "industry", "Industry", "size", "Size", "payment_terms", _s16_287, "payment_date", "Fecha de Pago", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portal de Cliente", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Remitentes", "initial_email", "Email Inicial", "first_reminder", _s19_97, "second_reminder", _s20_106, "third_reminder", _s19_98, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Plantilla", "send", "Send", "subject", "Asunto", "body", "Mensaje", "send_email", "Enviar email", "email_receipt", "Enviar por correo electr\xf3nico el recibo de pago al cliente", "auto_billing", "Auto billing", "button", "Button", "preview", "Preview", "customize", "Personalizar", "history", "Historial", "payment", "pago", "payments", "Pagos", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, _s25_55, "enter_payment", "Agregar Pago", "new_payment", "Ingresa el Pago", "created_payment", "Pago creado con \xe9xito", "updated_payment", "Pago actualizado con \xe9xito", _s16_190, "Pago archivado con \xe9xito", "deleted_payment", "Pago eliminado con \xe9xito", _s16_191, "Pago restaurado con \xe9xito", _s17_109, ":count pagos archivados con \xe9xito", _s16_192, ":count pagos eliminados con \xe9xito", _s17_110, _s37_15, "quote", "Cotizaci\xf3n", "quotes", "Cotizaciones", "new_quote", "Nueva cotizaci\xf3n", "created_quote", "Cotizaci\xf3n creada con \xe9xito", "updated_quote", "Cotizaci\xf3n actualizada con \xe9xito", "archived_quote", "Cotizaci\xf3n archivada con \xe9xito", "deleted_quote", "Cotizaci\xf3nes eliminadas con \xe9xito", "restored_quote", "Cotizaci\xf3n restaurada con \xe9xito", "archived_quotes", ":count cotizaciones archivadas con exito", "deleted_quotes", ":count cotizaciones eliminadas con exito", "restored_quotes", _s35_13, "expense", "Gasto", "expenses", "Gastos", "vendor", "Proveedor", "vendors", "Proveedores", "task", "Task", "tasks", "Tareas", "project", "Proyecto", "projects", "Proyectos", "activity_1", _s29_61, "activity_2", _s32_22, "activity_3", ":user elimin\xf3 el cliente :client", "activity_4", ":user cre\xf3 la factura :invoice", "activity_5", _s35_27, "activity_6", ":user envi\xf3 por correo electr\xf3nico la factura :invoice para el cliente :client a :contact", "activity_7", ":contact vi\xf3 la factura :invoice del cliente :client", "activity_8", _s33_29, "activity_9", ":user elimin\xf3 la factura :invoice", "activity_10", ":contact ingres\xf3 el pago :payment por el valor :payment_amount en la factura :invoice del cliente :client", "activity_11", ":user actualiz\xf3 el pago :payment", "activity_12", _s30_56, "activity_13", ":user elimin\xf3 el pago :payment", "activity_14", ":user ingres\xf3 :credit cr\xe9ditos", "activity_15", ":user actualiz\xf3 :credit cr\xe9ditos", "activity_16", ":user archiv\xf3 :credit cr\xe9ditos", "activity_17", ":user elimin\xf3 :credit cr\xe9ditos", "activity_18", ":user cre\xf3 la cotizaci\xf3n :quote", "activity_19", ":user actualiz\xf3 la cotizaci\xf3n :quote", "activity_20", ":user envi\xf3 por correo electr\xf3nico la cotizaci\xf3n :quote a :contact", "activity_21", ":contact vi\xf3 la cotizaci\xf3n :quote", "activity_22", ":user archiv\xf3 la cotizaci\xf3n :quote", "activity_23", ":user elimin\xf3 la cotizaci\xf3n :quote", "activity_24", ":user restaur\xf3 la cotizaci\xf3n :quote", "activity_25", ":user restaur\xf3 factura :invoice", "activity_26", _s33_30, "activity_27", _s31_29, "activity_28", ":user restaur\xf3 :credit cr\xe9ditos", "activity_29", ":contact aprov\xf3 la cotizaci\xf3n :quote para el cliente :client", "activity_30", _s30_57, "activity_31", _s33_31, "activity_32", _s33_32, "activity_33", _s34_28, "activity_34", ":user cre\xf3 expense :expense", "activity_35", _s31_30, "activity_36", _s31_31, "activity_37", _s32_23, "activity_39", ":usaer cancel\xf3 :payment_amount pago :payment", "activity_40", ":user reembols\xf3 :adjustment de un pago de :payment_amount :payment", "activity_41", _s41_6, "activity_42", _s25_56, "activity_43", _s30_58, "activity_44", _s28_74, "activity_45", _s28_75, "activity_46", _s29_62, "activity_47", ":user actruliz\xf3 el gasto :expense", "activity_48", _s33_33, "activity_49", _s29_63, "activity_50", ":user fusion\xf3 el ticket :ticket", "activity_51", _s31_32, "activity_52", _s32_24, "activity_53", ":contact volvi\xf3 a abrir el ticket :ticket", "activity_54", ":user volvi\xf3 a abrir el ticket :ticket", "activity_55", _s36_28, "activity_56", ":user vi\xf3 el ticket :ticket", "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Contrase\xf1a de una sola vez", "emailed_quote", "Cotizaci\xf3n enviada con \xe9xito", "emailed_credit", "Cr\xe9dito enviado por correo electr\xf3nico con \xe9xito", _s20_51, _s33_15, _s21_59, "Cr\xe9dito marcado como enviado con \xe9xito", "expired", "Vencida", "all", "All", "select", "Seleccionar", _s22_38, _s22_39, "custom_value1", _s19_88, "custom_value2", _s19_88, "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Numeraci\xf3n de facturaci\xf3n", _s20_52, _s20_53, _s20_54, "Numeraci\xf3n de Cotizaciones", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, "Asunto del correo electr\xf3nico de pago parcial", "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Tipo", "invoice_amount", _s18_154, _s16_197, _s20_107, "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Cobro Autom\xe1tico", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Est\xe1 Eliminado", "vendor_city", _s20_108, "vendor_state", "Estado del Proveedor", "vendor_country", _s18_155, "is_approved", "Est\xe1 Aprobado", "tax_name", _s18_156, "tax_amount", "Suma de Impuestos", "tax_paid", "Impuestos pagados", "payment_amount", "Valor del Pago", "age", "Edad", "is_running", "Is Running", "time_log", "Registro de Tiempo", "bank_id", "banco", _s19_49, _s19_50, _s16_198, "Categor\xeda de Gastos", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "es_ES", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importar datos", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "\xdaltima Actualizaci\xf3n", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s19_99, _s17_1, "Apellido del contacto", "order", "Order", "unassigned", "Sin asignar", "partial_value", "Debe ser mayor que 0 y menos que el Total", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Activar", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "Asigne el subdominio o mostrar la factura en su propio sitio web.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "C\xf3digo promocional", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Seguridad", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscripci\xf3n", "subscriptions", "Suscripciones", _s16_11, "Nueva Subscripci\xf3n", _s17_7, "Editar Suscripci\xf3n", _s20_1, _s32_20, _s20_2, _s37_23, _s21_6, "Suscripci\xf3n archivada correctamente", _s20_3, "Subscripci\xf3n borrada correctamente", _s20_4, "Subscripci\xf3n eliminada correctamente", _s21_7, "Subscripci\xf3n restaurada correctamente", _s19_0, "Buscar 1 Subscripci\xf3n", _s20_5, "Buscar :count Subscripciones", _s26_0, "El subdominio no est\xe1 disponible", "connect_gmail", "Conectar Gmail", _s16_13, "Desconectar Gmail", "connected_gmail", "Gmail conectado correctamente", _s18_13, "Gmail desconectado correctamente", _s16_15, "C\xe1mbios en el c\xf3digo pueden estar bloqueando la actualizaci\xf3n, puedes ejecutar este comando para descartar los cambios:", _s16_16, "N\xfamero ID Cliente", "count_minutes", ":count Minutos", _s16_18, "Caducidad de Contrase\xf1a", _s29_, "Contador de Factura/Cr\xe9dito Compartido", "use_last_email", "Usar \xfaltimo email", _s16_20, "Activar Compa\xf1\xeda", _s21_9, "Activar emails, facturas recurrentes y notificaciones", _s27_1, "Ha ocurrido un error, por favor int\xe9ntalo de nuevo", _s27_2, "Por favor, primero establezca una contrase\xf1a", _s34_1, "Atenci\xf3n: Cambiar el n\xfamero de tel\xe9fono desactivar\xe1 autenticaci\xf3n en 2 pasos", "help_translate", "Ayuda a Traducir", _s23_2, "Por favor, indica un pa\xeds", "resend_invite", _s19_91, _s19_1, "Autenticaci\xf3n en 2 pasos desactivada correctamente", _s16_22, "Cuenta conectada correctamente", _s19_2, "Cuenta desconectada correctamente", "delivered", "Entregado", "bounced", "Rebotados", "spam", "Spam", "view_docs", "Ver Documentos", _s32_, "Por favor, facilita un n\xfamero de tel\xe9fono para activar la autenticaci\xf3n en dos pasos", "send_sms", "Enviar SMS", "sms_code", "C\xf3digo SMS", _s21_10, "Escanea el codigo de barras con una :link aplicacion compatible", _s18_14, "Autenticacion en dos pasos habilitada correctamente", "connect_google", "Conectar Google", _s17_9, "Desconectar Google", _s17_11, "Autenticacion en dos pasos", _s18_15, "Desactivar Autenticaci\xf3n en 2 Pasos", _s34_2, "Requerir contrase\xf1a con Social Login", "stay_logged_in", "Permanecer Conectado", _s23_4, "Atenci\xf3n: Tu sesi\xf3n est\xe1 a punto de expirar", "count_hours", ":count Horas", "count_day", "1 D\xeda", "count_days", ":count D\xedas", _s19_3, "Tiempo de finalizaci\xf3n de la sesi\xf3n Web", _s17_12, "Opciones de Seguridad", "resend_email", "Reenviar Email", _s26_2, "Por favor, confirma tu direcci\xf3n de email", _s16_23, "Pago Reembolsado", _s19_5, "Parcialmente sin aplicar", _s19_7, "Por favor, selecciona un usuario autenticado con Gmail", "list_long_press", "Pulsaci\xf3n Larga en Lista", "show_actions", "Mostrar Acciones", _s17_14, "Iniciar Multiselecci\xf3n", _s27_4, "Un email ha sido enviado para confirmar la direcci\xf3n de correo", _s21_11, "Para usar :client_counter por favor, a\xf1ade o bien :client_number o :client_id_number para evitar conflictos", "this_quarter", "Trimestre Actual", "last_quarter", "Trimestre Anterior", "to_update_run", "Para actualizar ejecute", _s18_17, _s19_92, _s16_24, "URL de registro", "invoice_project", "Facturar Proyecto", "invoice_task", "Facturar tarea", "invoice_expense", "Facturar Gasto", _s19_8, "Buscar 1 T\xe9rmino de Pago", _s20_6, "Buscar :count T\xe9rminos de Pago", _s16_26, "Guardar y Previsualizar", "save_and_email", "Guardar y Enviar", _s16_28, _s18_143, _s16_30, "Cuenta convertida", _s17_16, "Balance Convertido", _s22_3, "Pagado a la fecha convertido", _s24_1, "Saldo de cr\xe9dito convertido", "converted_total", "Total convertido", "is_sent", "Enviada", _s17_18, "Documents por defecto", "document_upload", "Subir Documento", _s20_7, "Activar la subida de documentos de los clientes", "expense_total", "Gasto Total", "enter_taxes", "Introducir Impuestos", "by_rate", "Por Tarifa", "by_amount", "Por Cantidad", "enter_amount", "Introduce Cantidad", "before_taxes", "Antes de Impuestos", "after_taxes", "Despu\xe9s de Impuestos", "color", "Color", "show", "Mostrar", "hide", "Ocultar", "empty_columns", "Vaciar Columnas", _s21_13, "Modo de depuraci\xf3n activo", _s26_3, "Atenci\xf3n: s\xf3lo est\xe1 destinado para usarse en maquinas locales, puede filtrar credenciales. Pulsa para saber m\xe1s.", "running_tasks", "Tareas en Proceso", "recent_tasks", "Tareas Recientes", "recent_expenses", "Gastos Recientes", _s17_20, "Pr\xf3ximos Gastos", "update_app", "Actualizar App", "started_import", "Importaci\xf3n iniciada correctamente", _s24_3, "Mapeo de columnas duplicado", _s20_8, "Usar Impuestos Inclusivos", _s18_19, "Es cantidad de descuento", "column", "Columna", "sample", "Ejemplo", "map_to", "Mapear a", "import", "Importar", _s25_1, "Usar primera fila como nombres de columna", "select_file", "Seleccionar archivo", _s16_32, "No hay archivos seleccionados", "csv_file", _s23_57, "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Contabilidad", _s22_5, "Por favor facilita todos los CSVs.", "import_type", "Importar Tipo", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "Ver Licencias", "webhook_url", "Webhook URL", _s17_22, "Editor a Pantalla Completa", "sidebar_editor", "Editor de Barra Lateral", _s22_6, 'Por favor, escribe ":value" para confirmar', "purge", "Purgar", "service", "Servicio", "clone_to", "Clonar a", "clone_to_other", "Clonar a otra", "labels", "Etiquetas", "add_custom", "A\xf1adir Personalizado", "payment_tax", "Impuesto de Pago", "unpaid", "Impagado", "white_label", "Marca Blanca", "delivery_note", "Nota para el envio", _s24_6, "Las facturas enviadas est\xe1n bloqueadas", _s24_8, "Las facturas pagadas est\xe1n bloqueadas", "source_code", "C\xf3digo Fuente", "app_platforms", "A\xf1adir Plataformas", "invoice_late", "Atraso de Factura", "quote_expired", _s20_109, "partial_due", "Adelanto", "invoice_total", "Total Facturado", "quote_total", "Total Presupuestado", "credit_total", "Cr\xe9dito Total", _s23_5, "Total Factura", "actions", "Acciones", "expense_number", "N\xfamero de Gasto", "task_number", "N\xfamero de Tarea", "project_number", "N\xfamero de Proyecto", "project_name", "Nombre de Proyecto", "warning", "Advertencia", "view_settings", "Ver Configuraci\xf3n", _s24_10, "Advertencia: esta compa\xf1\xeda a\xfan no ha sido activada", "late_invoice", "Factura Atrasada", "expired_quote", _s20_109, "remind_invoice", "Recordar Factura", "cvv", "CVV", "client_name", _s18_144, "client_phone", "Tel\xe9fono del Cliente", "required_fields", "Campos Requeridos", "calculated_rate", "Tasa Calculada", _s17_24, "Tarifa de Tarea por Defecto", "clear_cache", "Borrar Cach\xe9", "sort_order", "Orden Clasificaci\xf3n", "task_status", "Estado", "task_statuses", "Estados de Tarea", "new_task_status", "Nuevo Estado de Tarea", _s16_34, "Editar Estado de Tarea", _s19_9, "Estado de tarea creado correctamente", _s19_10, "Se actualiz\xf3 correctamente el estado de la tarea", _s20_10, "Estado de tarea archivado correctamente", _s19_11, "Estado de tarea borrado correctamente", _s19_12, "Estado de tarea eliminado correctamente", _s20_11, "Estado de tarea restaurado correctamente", _s22_7, ":value estados de tarea archivados correctamente", _s21_15, ":value estados de tarea borrados correctamente", _s22_8, ":value estados de tarea restaurados correctamente", _s18_21, "Buscar 1 Estado de Tarea", _s20_13, "Buscar :count Estados de Tarea", _s16_36, "Mostrar Tabla de Tareas", _s21_16, "Mostrar siempre la secci\xf3n de tareas cuando se creen facturas", _s20_14, "Registro de Tiempo de Tarea Facturada", _s25_2, "A\xf1adir detalles de tiempo a los art\xedculos de l\xednea de factura", _s20_16, "Fecha de Tarea en Factura", _s25_3, "A\xf1adir detalles de fecha a los art\xedculos de l\xednea de la factura", _s21_17, "Empezar tareas antes de guardar", _s18_22, "Configurar Estados", "task_settings", "Configuraci\xf3n de Tareas", _s20_18, "Configurar Categor\xedas", _s18_24, "Categor\xedas de Gasto", _s20_20, "Nueva Categor\xeda de Gasto", _s21_18, "Editar Categor\xeda de Gasto", _s24_11, "Categor\xeda de gasto creada correctamente", _s24_12, "Categor\xeda de gasto actualizada correctamente", _s25_5, "Categor\xeda de gasto archivada correctamente", _s24_13, "Categor\xeda eliminada correctamente", _s24_14, "Categor\xeda de gasto eliminada correctamente", _s25_6, "Categor\xeda de Gasto restaurada correctamente", _s27_8, ":count categor\xedas de gasto actualizados correctamente", _s26_4, ":value categor\xedas de gasto borradas correctamente", _s27_9, ":value categor\xedas de gasto restauradas correctamente", _s23_6, "Buscar 1 Categor\xeda de Gasto", _s25_8, "Buscar :count Categor\xedas de Gasto", _s21_20, "Usar Cr\xe9dito Disponible", "show_option", "Mostrar Opci\xf3n", _s22_9, "La cantidad de cr\xe9dito no puede exceder la cantidada pagada", "view_changes", "Ver Cambios", "force_update", "Forzar Actualizaci\xf3n", _s17_26, "Est\xe1s usando la \xfaltima versi\xf3n, pero puede haber correcci\xf3n de errores pendientes.", "mark_paid_help", "Seguir que la factura haya sido pagada", _s18_26, _s18_145, _s23_7, "Activar que los gastos sean facturables", _s29_2, "Hacer los documentos visibles", _s21_22, "Establecer un tipo de cambio", _s16_38, "Configuraci\xf3n de Gastos", _s18_27, "Clonar a Recurrente", "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "Campo de Usuario", "variables", "Variables", "show_password", "Mostrar Contrase\xf1a", "hide_password", "Ocultar Contrase\xf1a", "copy_error", "Copiar Error", "capture_card", "Capturar Tarjeta", _s17_27, "Activar Auto Facturaci\xf3n", "total_taxes", "Impuestos Totales", "line_taxes", "Impuestos de L\xednea", "total_fields", "Campos Totales", _s25_9, "Se ha parado la factura recurrente correctamente", _s25_10, "Se ha iniciado la factura recurrente correctamente", _s25_11, "Se ha reiniciado la factura recurrente correctamente", "gateway_refund", "Pasarela de Devoluci\xf3n", _s19_13, "Procesar la devoluci\xf3n con la pasarela de pago", "due_date_days", _s20_107, "paused", "Pausado", "mark_active", _s18_146, "day_count", "D\xeda :count", _s22_10, "Primer D\xeda del Mes", _s21_23, "\xdaltimo D\xeda del Mes", _s17_29, "Usar T\xe9rminos de Pago", "endless", "Sin F\xedn", "next_send_date", "Pr\xf3xima Fecha de Env\xedo", _s16_40, "Ciclos Pendientes", _s17_31, _s18_147, _s18_29, _s20_101, _s21_25, _s24_61, _s22_12, "Editar Factura Recurrente", _s25_12, "Factura recurrente creada correctamente", _s25_13, "Factura recurrente actualizada correctamente", _s26_5, "Factura recurrente archivada correctamente", _s25_14, "Factura recurrente borrada correctamente", _s25_15, "Factura recurrente eliminada correctamente", _s26_6, "Factura recurrente restaurada correctamente", _s27_10, ":value facturas recurrentes archivadas correctamente", _s26_7, ":value facturas recurrentes borradas correctamente", _s27_11, ":value facturas recurrentes restauradas correctamente", _s24_15, "Buscar 1 Factura Recurrente", _s25_16, "Buscar :count Facturas Recurrentes", "send_date", "Fecha de Env\xedo", "auto_bill_on", "Facturaci\xf3n Autom\xe1tica Activa", _s28_2, "Cantidad M\xednima de Pago", "profit", "Beneficio", "line_item", "Linea de Concepto", _s18_31, "Permitir Sobrepago", _s23_8, "Permitir pagos extra para aceptar propinas", _s19_14, "Permitir Pago de Menos", _s24_16, "Permitir pagar como m\xednimo la cantidad parcial/dep\xf3sito", "test_mode", "Modo Test", "opened", "Abiertos", _s30_0, "Fallo de Conciliaci\xf3n", _s30_1, "Concilicaci\xf3n correcta", "gateway_success", "\xc9xito de pasarela", "gateway_failure", "Fallo de Pasarela", "gateway_error", "Error de Pasarela", "email_send", "Email Enviado", _s17_33, "Cola de Reenv\xedo de Email", "failure", "Fallo", "quota_exceeded", "Cuota Excedida", _s16_42, _s16_43, "system_logs", "Registros del Sistema", "view_portal", "Ver portal", "copy_link", "Copiar Enlace", "token_billing", "Guardar datos de la tarjeta", _s24_17, "Bienvenid@ a Invoice Ninja", "always", "Siempre", "optin", "Opt-In", "optout", "Opt-Out", "label", "Etiqueta", "client_number", "C\xf3digo de Cliente", "auto_convert", "Auto Convertir", "company_name", "Nombre de la Empresa", "reminder1_sent", "Recordatorio 1, enviado", "reminder2_sent", "Recordatorio 2, enviado", "reminder3_sent", "Recordatorio 3, enviado", _s18_33, "\xdaltimo recordatorio enviado", "pdf_page_info", "P\xe1gina :current de :total", _s16_44, "Facturas enviadas correctamente", "emailed_quotes", "Presupuestos enviados correctamente", "emailed_credits", "Cr\xe9ditos enviados correctamente", "gateway", "Pasarela", "view_in_stripe", "Ver en Stripe", "rows_per_page", "Filas por P\xe1gina", "hours", "horas", "statement", "Estado de cuenta", "taxes", "Impuestos", "surcharge", "Recargo", "apply_payment", "Aplicar Pago", "apply", "Aplicar", "unapplied", "Sin Aplicar", "select_label", "Seleccionar etiqueta", "custom_labels", _s24_57, "record_type", _s16_260, "record_name", "Nombre de Registro", "file_type", "Tipo de Archivo", "height", "Altura", "width", "Anchura", "to", "Para", "health_check", "Consultar Estado de Sistema", "payment_type_id", "Tipo de Pago", "last_login_at", "\xdaltimo Acceso el", "company_key", "Clave de empresa", "storefront", "Escaparate", "storefront_help", "Activar apps de terceros para crear facturas", "client_created", "Cliente Creado", _s20_23, "Email de Pago Online", _s20_25, "Email de Pago Manual", "completed", "Completado", "gross", "Bruto", "net_amount", "Importe Neto", "net_balance", "Balance Neto", "client_settings", "Configuraci\xf3n de Cliente", _s17_35, "Facturas Seleccionadas", _s17_37, "Pagos Seleccionados", "selected_quotes", "Presupuestos Seleccionados", "selected_tasks", "Tareas Seleccionadas", _s17_39, "Gastos Seleccionados", _s17_41, _s17_168, _s17_43, "Facturas Fuera de Plazo", "recent_payments", "Pagos recientes", "upcoming_quotes", "Pr\xf3ximos Presupuestos", "expired_quotes", "Presupuestos Expirados", "create_client", "Crear cliente", "create_invoice", "Crear Factura", "create_quote", "Crear Presupuesto", "create_payment", "Crear Pago", "create_vendor", "Crear Proveedor", "update_quote", "Actualizar Presupuesto", "delete_quote", "Eliminar Presupuesto", "update_invoice", "Actualizar Factura", "delete_invoice", _s16_270, "update_client", "Actualizar Cliente", "delete_client", _s16_271, "delete_payment", "Eliminar Pago", "update_vendor", _s20_102, "delete_vendor", _s16_272, "create_expense", "Crear Gasto", "update_expense", "Actualizar Gasto", "delete_expense", "Borrar Gasto", "create_task", "Crear Tarea", "update_task", "Actualizar Tarea", "delete_task", "Borrar Tarea", "approve_quote", "Aprobar Presupuesto", "off", "Apagado", "when_paid", "Al Pagar", "expires_on", "Expira el", "free", "Gratuito", "plan", "Plan", "show_sidebar", "Mostrar Barra Lateral", "hide_sidebar", _s21_98, "event_type", "Tipo de Evento", "target_url", "objetivo", "copy", "Copiar", "must_be_online", "Por favor reinicia la app cuando te conectes a internet", _s17_45, "La tarea cron debe ser activada", "api_webhooks", "API Webhooks", "search_webhooks", "Buscar :count Webhooks", "search_webhook", "Buscar 1 Webhook", "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "Nuevo Webhook", "edit_webhook", "Editar Webhook", "created_webhook", "Webhook creado correctamente", "updated_webhook", "Webhook actualizado correctamente", _s16_46, "Webhook archivado correctamente", "deleted_webhook", "Webhook borrado correctamente", "removed_webhook", "Webhook eliminado correctamente", _s16_47, "Webhook restaurado correctamente", _s17_46, ":value webhooks archivados correctamente", _s16_48, ":value webhooks borrados correctamente", _s16_49, ":value webhooks eliminados correctamente", _s17_47, ":value webhooks restaurados correctamente", "api_tokens", "API Tokens", "api_docs", "Documentaci\xf3n de API", "search_tokens", "Buscar :count Tokens", "search_token", "Buscar 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "Nuevo Token", "edit_token", "Editar Token", "created_token", "Token creado correctamente", "updated_token", "Token actualizado correctamente", "archived_token", "Token archivado correctamente", "deleted_token", _s29_64, "removed_token", _s29_64, "restored_token", "Token restaurado correctamente", "archived_tokens", ":value tokens archivados correctamente", "deleted_tokens", ":value tokens borrados correctamente", "restored_tokens", ":value tokens restaurados correctamente", _s19_16, _s19_93, _s24_19, "Permitir a los clientes auto-registrarse en el portal", _s21_27, "Personalizar y Previsualizar", "email_invoice", "Enviar Factura por EMail", "email_quote", "Enviar Presupuesto", "email_credit", "Enviar Cr\xe9dito", "email_payment", "Pago por correo electr\xf3nico", _s20_28, "El cliente no tiene establecida una direcci\xf3n de email", "ledger", "Libro Mayor", "view_pdf", "Ver PDF", "all_records", "Todos los registros", "owned_by_user", "Propiedad del usuario", _s16_50, _s16_262, "contact_name", _s19_99, "use_default", "Usar por defecto", _s16_52, "Recordatorios Sin F\xedn", "number_of_days", "N\xfamero de d\xedas", _s23_10, "Configurar T\xe9rminos de Pago", "payment_term", "T\xe9rmino de Pago", _s16_53, "Nuevo T\xe9rmino de Pago", _s17_49, _s26_57, _s20_29, "T\xe9rminos de pago creados correctamente", _s20_30, "T\xe9rminos de pago actualizados correctamente", _s21_28, "T\xe9rminos de pago archivados correctamente", _s20_31, "T\xe9rmino de pago borrado correctamente", _s20_32, "T\xe9rmino de pago eliminado correctamente", _s21_29, "T\xe9rmino de pago restaurado correctamente", _s22_17, ":value t\xe9rminos de pago archivados correctamente", _s21_30, ":value t\xe9minos de pago borrados correctamente", _s22_18, ":value t\xe9minos de pago restaurados correctamente", "email_sign_in", "Ingresar con email", "change", "Cambiar", _s23_12, "\xbfCambiar al formato de m\xf3vil?", _s24_20, "\xbfCambiar al formato de escritorio?", "send_from_gmail", "Enviar desde Gmail", "reversed", "Revertida", "cancelled", "Cancelada", "credit_amount", _s19_94, "quote_amount", "Total de Presupuesto", "hosted", "Hospedado", "selfhosted", "Hospedaje Propio", "exclusive", "Exclusivo", "inclusive", "Inclusivo", "hide_menu", "Ocultar Men\xfa", "show_menu", "Mostrar Men\xfa", _s18_35, "Parcialmente Reintegrada", _s16_56, "Buscar Documentos", "search_designs", "Buscar Dise\xf1os", "search_invoices", "Buscar Facturas", "search_clients", "Buscar Clientes", "search_products", "Buscar Productos", "search_quotes", "Buscar Presupuestos", "search_credits", "Buscar Cr\xe9ditos", "search_vendors", "Buscar Proveedores", "search_users", "Buscar Usuarios", _s16_57, "Buscar Tipos de Impuesto", "search_tasks", "Buscar Tareas", "search_settings", "Buscar Opciones", "search_projects", "Buscar Proyectos", "search_expenses", "Buscar Gastos", "search_payments", "Buscar Pagos", "search_groups", "Buscar Grupos", "search_company", "Buscar Compa\xf1\xeda", "search_document", "Buscar 1 Documento", "search_design", "Buscar 1 Dise\xf1o", "search_invoice", "Buscar 1 Factura", "search_client", "Buscar 1 Cliente", "search_product", "Buscar 1 Producto", "search_quote", "Buscar 1 Presupuesto", "search_credit", "Buscar 1 Cr\xe9dito", "search_vendor", _s18_148, "search_user", "Buscar 1 Usuario", "search_tax_rate", "Buscar 1 Tipo de Impuesto", "search_task", "Buscar 1 Tarea", "search_project", "Buscar 1 Proyecto", "search_expense", "Buscar 1 Gasto", "search_payment", "Buscar 1 Pago", "search_group", "Buscar 1 Grupo", "refund_payment", "Reembolsar Pago", _s17_53, "Factura cancelada correctamente", _s18_37, "Facturas canceladas correctamente", _s16_63, "Factura revertida correctamente", _s17_54, "Facturas revertidas correctamente", "reverse", "Revertir", "full_name", "Nombre completo", _s17_55, "Ciudad / Provincia / C.Postal", _s17_57, "C.Postal / Ciudad / Provincia", "custom1", "Primera personalizaci\xf3n", "custom2", "Segunda personalizaci\xf3n", "custom3", _s23_60, "custom4", "Cuarta Personalizaci\xf3n", "optional", "Opcional", "license", "Licencia", "purge_data", "Purgar Datos", _s16_64, "Datos de la empresa purgados correctamente", _s18_38, "Advertencia: Esto borrar\xe1 definitivamente sus datos, no hay deshacer.", "invoice_balance", "Balance de Factura", "age_group_0", "0 - 30 D\xedas", "age_group_30", "30 - 60 D\xedas", "age_group_60", "60 - 90 D\xedas", "age_group_90", "90 - 120 D\xedas", "age_group_120", "120+ D\xedas", "refresh", "Refrescar", "saved_design", "Dise\xf1o guardado correctamente", "client_details", "Detalles de Cliente", "company_address", "Direcci\xf3n de Compa\xf1\xeda", "invoice_details", "Detalles de Factura", "quote_details", "Detalles del Presupuesto", "credit_details", "Detalles de Cr\xe9dito", "product_columns", "Columnas de Producto", "task_columns", "Columnas de Tarea", "add_field", "A\xf1adir Campo", "all_events", _s17_169, "permissions", "Permisos", "none", "Ninguno", "owned", "Propietario", "payment_success", "Pago realizado con \xe9xito", "payment_failure", "Fallo de Pago", "invoice_sent", "Factura :count enviada", "quote_sent", "Prespuesto Enviado", "credit_sent", "Cr\xe9dito Enviado", "invoice_viewed", "Factura Vista", "quote_viewed", "Presupuesto Visto", "credit_viewed", "Cr\xe9dito Visto", "quote_approved", "Presupuesto Aprobado", _s25_18, "Recibir Todas las Notificaciones", _s16_65, _s16_273, "apply_license", "Renovar licencia", "cancel_account", "Cancelar Cuenta", _s22_19, "Atenci\xf3n: Esta acci\xf3n eliminar\xe1 permanentemente tu cuenta y no se podr\xe1 deshacer.", "delete_company", "Borrar Compa\xf1\xeda", _s22_20, "Advertencia: esto eliminar\xe1 definitivamente su empresa, no hay deshacer.", "enabled_modules", "Modulos Activados", "converted_quote", "Presupuesto convertido correctamente", "credit_design", "Dise\xf1o de Cr\xe9dito", "includes", "Incluye", "header", "Cabecera", "load_design", "Cargar dise\xf1o", "css_framework", "CSS Framework", "custom_designs", _s22_77, "designs", "Dise\xf1os", "new_design", "Nuevo Dise\xf1o", "edit_design", "Editar Dise\xf1o", "created_design", "Dise\xf1o creado correctamente", "updated_design", "Dise\xf1o actualizado correctamente", "archived_design", "Dise\xf1o archivado correctamente", "deleted_design", "Dise\xf1o borrado correctamente", "removed_design", "Dise\xf1o eliminado correctamente", "restored_design", "Dise\xf1o restaurado correctamente", _s16_67, ":value dise\xf1os archivados correctamente", "deleted_designs", ":value dise\xf1os borrados correctamente", _s16_68, ":value dise\xf1os restaurados correctamente", "proposals", "Propuestas", "tickets", "Tickets", _s16_69, "Presupuestos Recurrentes", "recurring_tasks", _s18_149, _s18_, "Gastos Peri\xf3dicos", _s18_39, "Administraci\xf3n de la Cuenta", "credit_date", _s16_274, "credit", "Cr\xe9dito", "credits", "Cr\xe9ditos", "new_credit", "Introducir el Cr\xe9dito", "edit_credit", "Editar Cr\xe9dito", "created_credit", "Cr\xe9dito creado correctamente", "updated_credit", "Cr\xe9dito actualizado correctamente", "archived_credit", "Cr\xe9dito archivado correctamente", "deleted_credit", "Cr\xe9ditos eliminados correctamente", "removed_credit", "Cr\xe9dito eliminado correctamente", "restored_credit", "Cr\xe9dito restaurado correctamente", _s16_71, ":count cr\xe9ditos archivados correctamente", "deleted_credits", ":count cr\xe9ditos eliminados correctamente", _s16_72, ":value cr\xe9ditos restaurados correctamente", "current_version", "Versi\xf3n Actual", "latest_version", "\xdaltima Versi\xf3n", "update_now", "Actualizar Ahora", _s26_13, "Una nueva versi\xf3n de la aplicaci\xf3n web est\xe1 disponible", _s16_73, _s24_62, "app_updated", "Actualizaci\xf3n completada correctamente", "learn_more", "Saber m\xe1s", "integrations", "Integraciones", "tracking_id", "Id seguimiento", _s17_59, _s17_60, "credit_footer", "Pie de P\xe1gina de Cr\xe9dito", "credit_terms", "T\xe9rminos de Cr\xe9dito", "new_company", "Nueva Compa\xf1\xeda", "added_company", "Compa\xf1\xeda a\xf1adida correctamente", "company1", "Compa\xf1\xeda Personalizada 1", "company2", "Compa\xf1\xeda Personalizada 2", "company3", "Compa\xf1\xeda Personalizada 3", "company4", "Compa\xf1\xeda Personalizada 4", "product1", "Producto Personalizado 1", "product2", "Producto Personalizado 2", "product3", "Producto Personalizado 3", "product4", "Producto Personalizado 4", "client1", "Cliente Personalizado 1", "client2", "Cliente Personalizado 2", "client3", "Cliente Personalizado 3", "client4", "Cliente Personalizado 4", "contact1", _s24_64, "contact2", _s24_65, "contact3", _s24_66, "contact4", _s24_67, "task1", "Tarea Personalizada 1", "task2", "Tarea Personalizada 2", "task3", "Tarea Personalizada 3", "task4", "Tarea Personalizada 4", "project1", "Proyecto Personalizado 1", "project2", "Proyecto Personalizado 2", "project3", "Proyecto Personalizado 3", "project4", "Proyecto Personalizado 4", "expense1", "Gasto Personalizado 1", "expense2", "Gasto Personalizado 2", "expense3", "Gasto Personalizado 3", "expense4", "Gasto Personalizado 4", "vendor1", "Proveedor Personalizado 1", "vendor2", "Proveedor Personalizado 2", "vendor3", "Proveedor Personalizado 3", "vendor4", "Proveedor Personalizado 4", "invoice1", "Factura Personalizada 1", "invoice2", "Factura Personalizada 2", "invoice3", "Factura Personalizada 3", "invoice4", "Factura Personalizada 4", "payment1", "Pago Personalizado 1", "payment2", "Pago Personalizado 2", "payment3", "Pago Personalizado 3", "payment4", "Pago Personalizado 4", "surcharge1", _s23_61, "surcharge2", _s23_62, "surcharge3", _s23_63, "surcharge4", _s23_64, "group1", "Grupo Personalizado 1", "group2", "Grupo Personalizado 2", "group3", "Grupo Personalizado 3", "group4", "Grupo Personalizado 4", "reset", "Restaurar", "number", "N\xfamero", "export", "Exportar", "chart", "Gr\xe1fica", "count", "Recuento", "totals", "Totales", "blank", "Vacio", "day", "D\xeda", "month", "Mes", "year", "A\xf1o", "subgroup", "Subgrupo", "is_active", "Activo", "group_by", "Agrupar por", "credit_balance", _s16_275, _s18_45, "\xdaltimo Acceso de Contacto", _s17_61, "Nombre Completo de Contacto", "contact_phone", "Tel\xe9fono del Contacto", _s21_31, _s24_64, _s21_32, _s24_65, _s21_33, _s24_66, _s21_34, _s24_67, _s17_63, "Calle de Envio", _s17_64, "Piso de Envio", "shipping_city", "Ciudad de Envio", "shipping_state", "Provincia de Envio", _s20_33, "Cod. Postal de Envio", _s16_103, "Pais de Envio", _s16_105, "Calle de Facturacion", _s16_106, "Piso de Facturacion", "billing_city", "Ciudad de Facturacion", "billing_state", "Provincia de Facturacion", _s19_19, "Cod. Postal de Facturacion", "billing_country", "Pais de Facturacion", "client_id", "Id del cliente", "assigned_to", "Asignado a", "created_by", _s16_276, "assigned_to_id", "Asignado a Id", "created_by_id", "Creado por Id", "add_column", "A\xf1adir Columna", "edit_columns", "Editar Columnas", "columns", "Columnas", "aging", "Envejecimiento", "profit_and_loss", _s20_103, "reports", "Informes", "report", "Informe", "add_company", "A\xf1adir Compa\xf1\xeda", "unpaid_invoice", "Factura Impagada", "paid_invoice", "Factura Pagada", _s16_107, "Presupuesto No Aprobado", "help", "Ayuda", "refund", "Reembolo", "refund_date", "Fecha de Reembolso", "filtered_by", "Filtrado por", "contact_email", "Email del Contacto", "multiselect", "Multiselecci\xf3n", "entity_state", "Estado", "verify_password", "Verificar Contrase\xf1a", "applied", "Aplicado", _s21_35, "Incluir errores recientes de los registros", _s30_4, "Hemos recibido tu mensaje e intentaremos responderte cuanto antes.", "message", "Mensaje", "from", "De", _s20_35, "Mostrar Detalles de Producto", _s25_20, "Incluir la descripci\xf3n y el coste en el desplegable del producto", _s20_37, "El renderizador de PDF requiere :version", _s18_48, "Ajustar Porcentaje de Tarifa", _s23_14, "Ajustar el porcentaje para dar cuenta de la tarifa", _s18_50, "Configurar Opciones", "support_forum", "Foro de soporte", "about", "Acerca de", "documentation", "Documentaci\xf3n", "contact_us", "Cont\xe1cte con Nosotros", "subtotal", "Subtotal", "line_total", "Total", "item", "Concepto", "credit_email", "Correo electr\xf3nico de cr\xe9dito", "iframe_url", "Website", "domain_url", "URL del Dominio", _s21_36, "La contrase\xf1a es demasiado corta", _s20_38, "La contrase\xf1a debe contener una letra may\xfascula y un n\xfamero", _s19_21, "Tareas del Portal Cliente", _s23_15, "Escritorio del Portal Cliente", _s20_39, "Por favor, introduzca un valor", "deleted_logo", "Logo borrado correctamente", "yes", "S\xed", "no", "No", "generate_number", "Generar N\xfamero", "when_saved", "Al Guardar", "when_sent", "Al Enviar", "select_company", "Seleccionar Compa\xf1\xeda", "float", "Flotante", "collapse", "Ocultar", "show_or_hide", "Mostrar/Ocultar", "menu_sidebar", "Men\xfa en Barra Lateral", "history_sidebar", "Hist\xf3rico en Barra Lateral", "tablet", "Tableta", "mobile", "M\xf3vil", "desktop", "Escritorio", "layout", "Dise\xf1o", "view", "Ver", "module", "Modulo", "first_custom", "Primera Personalizaci\xf3n", "second_custom", "Segunda Personalizaci\xf3n", "third_custom", _s23_60, "show_cost", "Mostrar Coste", _s17_66, "Mostrar Coste de Producto", "show_cost_help", "Mostrar un campo de coste de producto para seguir el margen/beneficio", _s21_37, "Mostrar Cantidad de Productos", _s26_15, "Mostrar un campo de cantidad de productos, de lo contrario predeterminar a uno", _s21_39, "Mostrar Cantidad de Factura", _s26_16, "Mostrar un campo de cantidad de art\xedculo de l\xednea; de lo contrario, el valor predeterminado es uno", _s21_41, "Mostrar Descuento de Producto", _s26_17, "Mostrar un campo de descuento en la l\xednea de art\xedculo", _s16_109, "Cantidad por Defecto", _s21_43, "Poner la cantidad de art\xedculos autom\xe1ticamente a uno", "one_tax_rate", "Un Tipo de Impuesto", "two_tax_rates", "Dos Tipos de Impuesto", "three_tax_rates", "Tres Tipos de Impuesto", _s16_111, "Impuesto por Defecto", "user", "Usuario", "invoice_tax", "Impuesto de Factura", "line_item_tax", "Impuesto de Art\xedculo", "inclusive_taxes", "Impuestos Inclusivos", _s17_68, "Tipos de Impuesto de Factura", "item_tax_rates", "Tipos de Impuesto de Art\xedculo", _s18_52, "Por favor seleccione un cliente", "configure_rates", "Configurar tipos", _s18_53, "Configurar Pasarelas", "tax_settings", _s26_58, _s18_55, "Tipos de Impuesto", "accent_color", "Color de Acento", "switch", "Cambiar", _s19_23, "Lista separada por comas", "options", "Opciones", _s16_113, "Texto de una sola l\xednea", "multi_line_text", "Texto de l\xedneas m\xfaltiples", "dropdown", "Desplegable", "field_type", "Tipo de Campo", _s27_22, "Se ha enviado un email de recuperaci\xf3n de contrase\xf1a", "submit", "Enviar", _s16_115, "Recuperar Contrase\xf1a", "late_fees", "Cargos por pagos atrasados", "credit_number", "C\xf3digo de Cr\xe9dito", "payment_number", "N\xba de Pago", "late_fee_amount", "Cargo por pago atrasado", _s16_116, "Porcentaje por pago atrasado", "schedule", "Programar", "before_due_date", "Antes de la fecha de vencimiento", "after_due_date", "Despu\xe9s de la fecha de vencimiento", _s18_57, "Despu\xe9s de la fecha de la factura", "days", "D\xedas", "invoice_email", "Email de Facturas", "payment_email", "Email de Pagos", "partial_payment", "Pago Parcial", "payment_partial", "Pago Parcial", _s21_44, "Correo electr\xf3nico de pago parcial", "quote_email", "Email de Presupuestos", _s16_118, "Recordatorio Sin F\xedn", _s16_120, "Filtrado por usuario", "administrator", "Administrador", _s18_58, "Permitir que administre usuarios, cambie configuraci\xf3n y modifique cualquier registro", "user_management", "Administraci\xf3n de Usuarios", "users", "Usuarios", "new_user", "Nuevo Usuario", "edit_user", "Editar Usario", "created_user", "Usuario creado con \xe9xito", "updated_user", "Usario actualizado correctamente", "archived_user", "Usuario archivado correctamente", "deleted_user", "Usario eliminado correctamente", "removed_user", "Usuario eliminado correctamente", "restored_user", "Usuario restaurado correctamente", "archived_users", ":value usuarios archivados correctamente", "deleted_users", ":value usuarios borrados correctamente", "removed_users", ":value usuarios eliminados correctamente", "restored_users", ":value usuarios restaurados correctamente", _s16_122, _s21_105, "invoice_options", _s19_95, _s17_70, "Ocultar el valor Pagado a la Fecha", _s22_27, "Solo mostrar\xe1 el valor Pagado a la Fecha en sus Facturas cuando se ha recibido un Pago.", _s23_17, "Documentos anexados", _s28_15, "Incluye imagenes adjuntas en la factura", _s16_124, "Mostrar Cabecera en", _s16_125, "Mostrar Pie en", "first_page", "Primera p\xe1gina", "all_pages", _s17_170, "last_page", "\xdaltima p\xe1gina", "primary_font", "Fuente primaria", "secondary_font", "Fuente secundaria", "primary_color", "Color Primario", "secondary_color", _s16_277, "page_size", "Tama\xf1o de Pagina", "font_size", "Tama\xf1o de Letra", "quote_design", "Dise\xf1os del presupuesto", "invoice_fields", _s17_171, "product_fields", _s18_150, "invoice_terms", _s23_58, "invoice_footer", "Pie de P\xe1gina de la Factura", "quote_terms", "T\xe9rminos del Presupuesto", "quote_footer", "Pie del Presupuesto", _s18_59, "Auto Email", _s23_18, "Autom\xe1ticamente enviar por email facturas recurrentes cuando sean creadas.", _s20_42, "Auto Archivar", _s25_26, "Autom\xe1ticamente archivar facturas cuando sean pagadas.", _s18_60, "Auto Archivar", _s23_19, "Autom\xe1ticamente archivar presupuestos cuando sean convertidos.", _s18_61, "Auto Convertir", _s23_20, "Convertir un Presupuesto en Factura autom\xe1ticamente cuando lo apruebe el cliente.", _s17_72, "Configuraci\xf3n de Flujos", "freq_daily", "Diariamente", "freq_weekly", "Semanal", "freq_two_weeks", "Dos semanas", "freq_four_weeks", "Cuatro semanas", "freq_monthly", "Mensual", "freq_two_months", "Dos meses", _s17_74, "Tres meses", _s16_126, "Cuatro meses", "freq_six_months", "Seis meses", "freq_annually", "Anual", "freq_two_years", "Dos A\xf1os", _s16_127, "Tres A\xf1os", "never", "Nunca", "company", "Empresa", _s17_75, _s17_172, "charge_taxes", _s16_278, "next_reset", "Proximo Reinicio", "reset_counter", _s18_140, _s16_128, _s18_151, "number_padding", "Relleno num\xe9rico", "general", "General", "surcharge_field", "Campo de recargo", "company_field", _s16_279, "company_value", "Valor de compa\xf1\xeda", "credit_field", "Campo de cr\xe9dito", "invoice_field", "Campo de Factura", _s17_77, "Recargo de Factura", "client_field", "Campo de Cliente", "product_field", "Campo de Producto", "payment_field", "Campo de pago", "contact_field", "Campo de Contacto", "vendor_field", "Campo de Proveedor", "expense_field", "Campo de Gasto", "project_field", "Campo de Proyecto", "task_field", "Campo de Tarea", "group_field", "Campo de grupo", "number_counter", "Contador de n\xfameros", "prefix", "Prefijo", "number_pattern", "Patr\xf3n num\xe9rico", "messages", "Mensajes", "custom_css", "CSS personalizado", _s17_79, _s24_60, _s16_130, "Mostrar en PDF", _s21_46, "Mostrar la firma del cliente en el PDF de la factura/presupuesto", _s25_27, "Mostrar aceptaci\xf3n de t\xe9rminos de la factura", _s30_5, "Requerir que el cliente confirme que acepta los t\xe9rminos de la factura.", _s23_21, "Mostrar aceptaci\xf3n de t\xe9rminos del presupuesto", _s28_16, "Requerir que el cliente confirme que acepta los t\xe9rminos del presupuesto.", _s25_28, "Firma de la factura", _s30_6, "Requerir que el cliente proporcione su firma.", _s23_22, "Firma del presupuesto.", _s22_29, _s32_21, _s27_23, "Habilite para seleccionar una contrase\xf1a para cada contacto. Si una contrase\xf1a esta especificada, se le ser\xe1 solicitada al contacto para acceder a sus facturas.", "authorization", "Autorizaci\xf3n", "subdomain", "Subdominio", "domain", "Dominio", "portal_mode", "Modo portal", "email_signature", _s18_152, _s24_21, _s118_, "plain", "Plano", "light", "Claro", "dark", "Oscuro", "email_design", _s16_280, "attach_pdf", "Adjuntar PDF", _s16_131, "Adjuntar Documentos", "attach_ubl", "Adjuntar UBL", "email_style", "Estilo de correo electr\xf3nico", _s19_25, _s16_281, "reply_to_email", "Direccion Email de Respuesta", "reply_to_name", "Nombre de Responder a", "bcc_email", "BCC Email", "processed", "Procesado", "credit_card", "Tarjeta de Cr\xe9dito", "bank_transfer", "Transferencia bancaria", "priority", "Prioridad", "fee_amount", "Importe de la cuota", "fee_percent", "Porcentaje de tarifa", "fee_cap", "L\xedmite de tarifa", "limits_and_fees", "L\xedmites/Tarifas", "enable_min", "Activar M\xednimo", "enable_max", "Activar M\xe1ximo", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "M\xednimo", "max", "M\xe1ximo", _s19_26, "Logotipos de tarjetas aceptadas", "credentials", "Credenciales", "update_address", _s20_104, _s19_28, "Actualizar la direccion del cliente con los datos provistos", "rate", "Precio", "tax_rate", "Impuesto", "new_tax_rate", "Nuevo Impuesto", "edit_tax_rate", "Editar impuesto", _s16_133, "Impuesto creado correctamente", _s16_134, "Impuesto actualizado correctamente", _s17_82, "Impuesto archivado correctamente", _s16_135, "Impuesto borrado correctamente", _s17_83, "Impuesto restaurado correctamente", _s18_62, ":value tipos impositivos archivados correctamente", _s17_84, ":value tipos impositivos borrados correctamente", _s18_63, ":value tipos impositivos restaurados correctamente", "fill_products", "Auto-rellenar Productos", _s18_64, _s74_, "update_products", "Auto-actualizar Productos", _s20_44, "Actualizar una Factura autom\xe1ticamente actualizar\xe1 los Productos", _s16_136, "Convertir Productos", _s21_47, "Convertir autom\xe1ticamente los precios de los productos a la divisa del cliente", "fees", "Cargos", "limits", "Limites", "provider", "Proveedor", "company_gateway", "Pasarela de pago", _s16_138, "Pasarelas de pago", _s19_29, "Nueva pasarela", _s20_45, "Editar pasarela", _s23_23, "Pasarela creada correctamente", _s23_24, "Pasarela actualizada correctamente", _s24_22, "Pasarela archivada correctamente", _s23_25, "Pasarela borrada correctamente", _s24_23, "Pasarela restaurada correctamente", _s25_30, ":value pasarelas archivadas correctamente", _s24_24, ":value pasarelas borradas correctamente", _s25_31, ":value pasarelas restauradas correctamente", _s16_140, "Seguir editando", "discard_changes", "Descartar los cambios", "default_value", "Valor por defecto", "disabled", "Deshabilitado", "currency_format", "Formato de moneda", _s21_48, "Primer d\xeda de la semana", _s23_26, "Primer mes del a\xf1o", "sunday", "Domingo", "monday", "Lunes", "tuesday", "Martes", "wednesday", "Mi\xe9rcoles", "thursday", "Jueves", "friday", "Viernes", "saturday", "S\xe1bado", "january", "Enero", "february", "Febrero", "march", "Marzo", "april", "Abril", "may", "Mayo", "june", "Junio", "july", "Julio", "august", "Agosto", "september", "Septiembre", "october", "Octubre", "november", "Noviembre", "december", "Diciembre", "symbol", "S\xedmbolo", "ocde", "C\xf3digo", "date_format", "Formato de fecha", "datetime_format", "Formato de fecha y hora", "military_time", "24 Horas", _s18_65, "Formato de 24 Horas", "send_reminders", "Enviar recordatorios", "timezone", "Zona horaria", _s19_30, "Fitlrado por Proyecto", _s17_85, _s18_141, _s19_32, "Filtrado por Factura", _s18_66, _s20_97, _s18_68, "Filtrado por proveedor", "group_settings", "Opciones de Grupo", "group", "Grupo", "groups", "Grupos", "new_group", "Nuevo grupo", "edit_group", "Editar grupo", "created_group", "Grupo creado correctamente", "updated_group", "Grupo actualizado correctamente", "archived_groups", ":value grupos archivados correctamente", "deleted_groups", ":value grupos borrados correctamente", "restored_groups", ":value grupos restaurados correctamente", "upload_logo", "Subir Logo", "uploaded_logo", "Logo subido", "logo", "Logo", "saved_settings", "Ajustes guardados", _s16_142, "Configuraci\xf3n de Producto", "device_settings", "Opciones de dispositivo", "defaults", "Ajustes Predefinidos", "basic_settings", _s20_105, _s17_87, _s22_78, "company_details", _s22_79, "user_details", _s19_96, "localization", "Localizaci\xf3n", "online_payments", "Pagos Online", "tax_rates", "Impuestos", "notifications", "Notificaciones", "import_export", _s17_167, "custom_fields", _s21_101, "invoice_design", "Dise\xf1o de Factura", "buy_now_buttons", "Botones de Comprar Ahora", "email_settings", _s36_27, _s23_28, _s26_59, _s22_30, "Tarjetas de Cr\xe9dito y Bancos", _s19_34, _s22_80, "price", "Precio", "email_sign_up", "Registrarse con Email", "google_sign_up", "Registrarse con Google", _s27_25, "\xa1Gracias por su compra!", "redeem", "Redimir", "back", "Atr\xe1s", "past_purchases", "Compras Pasadas", _s19_36, "Suscripci\xf3n anual", "pro_plan", "Plan Pro", "enterprise_plan", "Plan Enterprise", "count_users", ":count usuarios", "upgrade", "Mejorar", _s25_32, "Introduce tu nombre", _s24_25, "Introduce tu apellido", _s33_14, "Por favor, acepta los t\xe9rminos de servicio y la pol\xedtica de privacidad para crear una cuenta", "i_agree_to_the", "Estoy de acuerdo con", _s21_79, "t\xe9rminos de servicio", _s19_54, "pol\xedtica de privacidad", _s16_144, "T\xe9rminos de servicio", "privacy_policy", "Pol\xedtica de Privacidad", "sign_up", "Registrarse", "account_login", "Inicio de Sesi\xf3n con su Cuenta", "view_website", "Ver Sitio Web", "create_account", "Crear Cuenta", "email_login", "Iniciar sesi\xf3n con correo electr\xf3nico", "create_new", "Crear Nuevo", _s18_70, "No se han seleccionado registros", _s21_51, "Guarda o cancela tus cambios", "download", "Descargar", _s27_26, "Requiere plan 'enterprise'", "take_picture", "Tomar foto", "upload_file", "Subir archivo", "document", "Documento", "documents", "Documentos", "new_document", "Nuevo documento", "edit_document", "Editar documento", _s17_89, "Documento subido satisfactoriamente", _s16_146, "Documento actualizado satisfactoriamente", _s17_90, "Documento archivado satisfactoriamente", _s16_147, "Documento borrado satisfactoriamente", _s17_91, "Documento restaurado satisfactoriamente", _s18_72, ":value documentos archivados correctamente", _s17_92, ":value documentos borrados correctamente", _s18_73, ":value documentos restaurados correctamente", "no_history", "Sin historial", "expense_date", "Fecha", "pending", "Pendiente", _s16_148, "Registrado", _s16_149, "Pendiente", _s16_150, "Facturado", "converted", "Modificada", _s24_27, _s31_26, "exchange_rate", "Tipo de Cambio", _s16_151, _s16_282, "mark_paid", "Marcar como pagado", "category", "Categor\xeda", "address", "Direcci\xf3n", "new_vendor", "Nuevo Proveedor", "created_vendor", "Proveedor creado correctamente", "updated_vendor", "Proveedor actualizado correctamente", "archived_vendor", "Proveedor archivado correctamente", "deleted_vendor", "Proveedor eliminado correctamente", "restored_vendor", "Proveedor restaurado correctamente", _s16_152, _s45_3, "deleted_vendors", _s45_3, _s16_153, ":value proveedores restaurados correctamente", "new_expense", "Nuevo Gasto", "created_expense", _s26_60, "updated_expense", _s31_27, _s16_154, _s29_59, "deleted_expense", _s27_60, _s16_155, "Gasto restaurado correctamente", _s17_93, _s31_28, _s16_156, _s29_60, _s17_94, ":value gastos restaurados correctamente", "copy_shipping", "Copiar Env\xedo", "copy_billing", "Copia Facturaci\xf3n", "design", "Dise\xf1o", _s21_52, "Fallo al buscar registro", "invoiced", "Facturado", "logged", "Registrado", "running", "Ejecutando", "resume", "Reanudar", "task_errors", "Por favor corrija cualquier tiempo que se solape con otro", "start", "Iniciar", "stop", "Parar", "started_task", "Tarea empezada correctamente", "stopped_task", "Tarea parada correctamente", "resumed_task", "La tarea se reanud\xf3 correctamente", "now", "Ahora", _s16_157, "Tareas programadas", "timer", "Temporizador", "manual", "Manual", "budgeted", "Presupuestado", "start_time", "Hora de Inicio", "end_time", "Hora de Fin", "date", "Fecha", "times", "Tiempos", "duration", "Duraci\xf3n", "new_task", "Nueva tarea", "created_task", "Tarea creada correctamente", "updated_task", "Tarea actualizada correctamente", "archived_task", "Tarea archivada correctamente", "deleted_task", "Tarea borrada correctamente", "restored_task", "Tarea restaurada correctamente", "archived_tasks", ":count tareas archivadas correctamente", "deleted_tasks", ":count tareas borradas correctamente", "restored_tasks", ":value tareas restauradas correctamente", _s19_38, "Por favor introduce un nombre", "budgeted_hours", "Horas Presupuestadas", "created_project", "Proyecto creado correctamente", "updated_project", "Proyecto actualizado correctamente", _s16_159, "Proyecto archivado correctamente", "deleted_project", "Proyecto eliminado correctamente", _s16_160, "Proyecto restaurado correctamente", _s17_95, ":count proyectos archivados correctamente", _s16_161, ":count proyecto eliminados correctamente", _s17_96, ":value proyectos restaurados correctamente", "new_project", "Nuevo Proyecto", _s27_30, "\xa1Gracias por utilizar nuestra app!", "if_you_like_it", "Si te gusta por favor", "click_here", "pulse aqui", _s18_74, "Pulsa aqu\xed", "to_rate_it", "para valorar.", "average", "Promedio", "unapproved", "No aprobado", _s30_11, "Por favor, autenticarse para cambiar esta configuraci\xf3n", "locked", "Bloqueado", "authenticate", "Autenticaci\xf3n", _s19_40, "Por favor, autenticarse", _s24_28, "Autenticaci\xf3n biom\xe9trica", "footer", "Pie", "compare", "Comparar", "hosted_login", "Acceso alojado", "selfhost_login", "Acceso auto alojado", "google_sign_in", "Ingresar con Google", "today", "Hoy", "custom_range", "Rango personalizado", "date_range", "Rango de fechas", "current", "Actual", "previous", "Previo", "current_period", "Periodo Actual", _s17_98, _s22_81, "previous_period", "Periodo Anterior", "previous_year", "A\xf1o Anterior", "compare_to", "Comparar con", "last7_days", "\xdaltimos 7 d\xedas", "last_week", "\xdaltima Semana", "last30_days", "\xdaltimos 30 d\xedas", "this_month", "Este Mes", "last_month", "\xdaltimo Mes", "this_year", "Este A\xf1o", "last_year", "\xdaltimo A\xf1o", "custom", "Personalizado", _s16_162, "Clonar a Factura", "clone_to_quote", "Clonar a Presupuesto", "clone_to_credit", "Clonar a Cr\xe9dito", "view_invoice", "Ver Factura", "convert", "Convertir", "more", "M\xe1s", "edit_client", "Editar Cliente", "edit_product", "Editar Producto", "edit_invoice", "Editar Factura", "edit_quote", "Editar Presupuesto", "edit_payment", "Editar Pago", "edit_task", "Editar Tarea", "edit_expense", "Editar Gasto", "edit_vendor", _s16_283, "edit_project", "Editar Proyecto", _s22_, "Editar Gasto Peri\xf3dico", _s20_47, "Editar Presupuesto Recurrente", "billing_address", "Direcci\xf3n de Facturaci\xf3n", _s16_164, "Direccion de Envio", "total_revenue", _s16_284, "average_invoice", _s23_59, "outstanding", _s18_153, "invoices_sent", _s24_63, "active_clients", _s16_285, "close", "Cerrar", "email", "Email", "password", "Contrase\xf1a", "url", "URL", "secret", "Secreto", "name", "Nombre", "logout", "Cerrar sesi\xf3n", "login", "Iniciar Sesi\xf3n", "filter", "Filtrar", "sort", "Orden", "search", "B\xfasqueda", "active", "Activo", "archived", "Archivado", "deleted", "Eliminado", "dashboard", "Inicio", "archive", "Archivar", "delete", "Eliminar", "restore", "Restaurar", _s16_166, "Actualizaci\xf3n Completa", _s23_29, "Por favor introduce tu email", _s26_25, "Por favor introduce tu contrase\xf1a", _s21_55, "Por favor introduce tu URL", _s26_27, "Por favor introduce un c\xf3digo de producto", "ascending", "Ascendente", "descending", "Descendente", "save", "Guardar", _s17_100, "Ha ocurrido un error", "paid_to_date", "Pagado", "balance_due", "Pendiente", "balance", "Saldo", "overview", "Resumen", "details", "Detalles", "phone", "Tel\xe9fono", "website", "P\xe1gina Web", "vat_number", "NIF/CIF", "id_number", "N\xba de identificaci\xf3n", "create", "Crear", _s19_42, ":value copiado al portapapeles", "error", "Error", _s16_168, "No se puede abrir", "contacts", "Contactos", "additional", "Adicional", "first_name", "Nombre", "last_name", "Apellidos", "add_contact", "A\xf1adir Contacto", "are_you_sure", "\xbfEst\xe1 Seguro?", "cancel", "Cancelar", "ok", "Ok", "remove", "Borrar", _s16_170, "El email es inv\xe1lido", "product", "Producto", "products", "Productos", "new_product", "Nuevo Producto", "created_product", "Producto creado correctamente", "updated_product", "Producto actualizado correctamente", _s16_172, "Producto archivado correctamente", "deleted_product", "Producto eliminado correctamente", _s16_173, "Producto restaurado correctamente", _s17_102, ":count productos archivados correctamente", _s16_174, ":count productos eliminados correctamente", _s17_103, ":value productos restaurados correctamente", "product_key", "Producto", "notes", "Notas", "cost", "Coste", "client", "Cliente", "clients", "Clientes", "new_client", "Nuevo Cliente", "created_client", "Cliente creado correctamente", "updated_client", "Cliente actualizado correctamente", "archived_client", "Cliente archivado correctamente", _s16_175, ":count clientes archivados correctamente", "deleted_client", "Cliente eliminado correctamente", "deleted_clients", ":count clientes eliminados correctamente", "restored_client", "Cliente restaurada correctamente", _s16_176, ":value clientes restaurados correctamente", "address1", "Calle", "address2", "Bloq/Pta", "city", "Ciudad", "state", "Provincia", "postal_code", "C\xf3digo Postal", "country", "Pais", "invoice", "Factura", "invoices", "Facturas", "new_invoice", "Nueva Factura", "created_invoice", "Factura creada correctamente", "updated_invoice", "Factura actualizada correctamente", _s16_177, "Factura archivada correctamente", "deleted_invoice", "Factura eliminada correctamente", _s16_178, "Factura restaurada correctamente", _s17_104, ":count facturas archivadas correctamente", _s16_179, ":count facturas eliminadas correctamente", _s17_105, ":value facturas restauradas correctamente", "emailed_invoice", "Factura enviada correctamente", "emailed_payment", "Pago enviado correctamente por correo electr\xf3nico", "amount", "Cantidad", "invoice_number", _s17_173, "invoice_date", _s16_286, "discount", "Descuento", "po_number", "N\xfamero de Pedido", "terms", "T\xe9rminos", "public_notes", "Notas", "private_notes", "Notas Privadas", "frequency", "Frecuencia", "start_date", "Fecha de Inicio", "end_date", "Fecha de Fin", "quote_number", "N\xfamero de Presupuesto", "quote_date", "Fecha Presupuesto", "valid_until", "V\xe1lido hasta", "items", "Art\xedculos", "partial_deposit", _s16_266, "description", "Descripci\xf3n", "unit_cost", "Precio Unitario", "quantity", "Cantidad", "add_item", "A\xf1adir Art\xedculo", "contact", "Contacto", "work_phone", "Tel\xe9fono", "total_amount", "Cantidad Total", "pdf", "PDF", "due_date", "Vencimiento", _s16_180, "Fecha de vencimiento parcial", "status", "Estado", _s17_106, "Estado de Factura", "quote_status", "Estado de Presupuesto", _s22_31, "Pulsa + para a\xf1adir un art\xedculo", _s22_33, "Pulsa + para a\xf1adir tiempo", "count_selected", ":count seleccionado", "total", "Total", "percent", "Porcentaje", "edit", "Editar", "dismiss", "Descartar", _s20_49, "Por favor selecciona una fecha", _s22_34, "Por favor selecciona un cliente", _s24_30, "Por favor, seleccione una factura", "task_rate", "Tasa de tareas", "settings", "Configuraci\xf3n", "language", "Idioma", "currency", "Divisa", "created_at", _s17_174, "created_on", "Creado el", "updated_at", "Actualizado", "tax", "Impuesto", _s30_13, "Por favor introduce un n\xfamero de factura", _s27_34, "Por favor introduce un n\xfamero de presupuesto", "past_due", "Vencido", "draft", "Borrador", "sent", "Enviada", "viewed", "Vistas", "approved", "Aprobados", "partial", _s16_266, "paid", "Pagado", "mark_sent", "Marcar como Enviado", _s22_36, _s42_16, _s22_37, _s42_16, _s23_31, _s45_4, _s23_32, _s45_4, "done", "Hecho", _s37_13, "Por favor introduce un cliente o nombre de contacto", "dark_mode", "Modo Oscuro", _s27_36, "Reinicia la app para aplicar el cambio", "refresh_data", "Actualizar Datos", "blank_contact", "Contacto Nuevo", "activity", "Actividad", _s16_182, "No se han encontrado registros", "clone", "Clonar", "loading", "Cargando", "industry", "Sector", "size", "Tama\xf1o", "payment_terms", _s16_287, "payment_date", "Fecha de Pago", "payment_status", "Estado de Pago", _s16_184, "Pendiente", _s16_185, "Anulado", _s16_186, "Fallido", _s16_187, "Completado", _s16_188, _s24_58, _s16_189, "Reembolsado", _s17_107, "Sin Aplicar", _s17_108, "Sin aplicar parcialmente", "net", "Neto", "client_portal", "Portal Cliente", "show_tasks", "Mostrar tareas", "email_reminders", "Emails Recordatorios", "enabled", "Habilitado", "recipients", "Destinatarios", "initial_email", "Email Inicial", "first_reminder", _s19_97, "second_reminder", _s20_106, "third_reminder", _s19_98, "reminder1", _s19_97, "reminder2", _s20_106, "reminder3", _s19_98, "template", "Plantilla", "send", "Enviar", "subject", "Asunto", "body", "Cuerpo", "send_email", "Enviar Email", "email_receipt", "Enviar Recibo de Pago al cliente", "auto_billing", "Auto facturaci\xf3n", "button", "Bot\xf3n", "preview", "Vista Previa", "customize", "Personalizar", "history", "Historial", "payment", "Pago", "payments", "Pagos", "refunded", "Reembolsado", "payment_type", "Tipo de Pago", _s21_57, _s25_55, "enter_payment", "Agregar Pago", "new_payment", "Introduzca el Pago", "created_payment", "Pago creado correctamente", "updated_payment", "Pago actualizado correctamente", _s16_190, "Pago archivado correctamente", "deleted_payment", "Pago eliminado correctamente", _s16_191, "Pago restaurado correctamente", _s17_109, ":count pagos archivados correctamente", _s16_192, ":count pagos eliminados correctamente", _s17_110, ":value pagos restaurados correctamente", "quote", "Presupuesto", "quotes", "Presupuestos", "new_quote", "Nuevo Presupuesto", "created_quote", "Presupuesto creado correctamente", "updated_quote", "Presupuesto actualizado correctamente", "archived_quote", "Presupuesto archivado correctamente", "deleted_quote", "Presupuesto eliminado correctamente", "restored_quote", "Presupuesto restaurada correctamente", "archived_quotes", ":count Presupuestos archivados correctamente", "deleted_quotes", ":count Presupuestos eliminados correctamente", "restored_quotes", ":value presupuestos restaurados correctamente", "expense", "Gasto", "expenses", "Gastos", "vendor", "Proveedor", "vendors", "Proveedores", "task", "Tarea", "tasks", "Tareas", "project", "Proyecto", "projects", "Proyectos", "activity_1", _s29_61, "activity_2", _s32_22, "activity_3", ":user borr\xf3 el cliente :client", "activity_4", _s33_29, "activity_5", _s35_27, "activity_6", ":user ha enviado por mail la factura :invoice de :client a :contact", "activity_7", ":contact ha visto la factura :invoice: de :client", "activity_8", _s33_29, "activity_9", ":user borr\xf3 la factura :invoice", "activity_10", ":contact ingres\xf3 el pago :payment por importe de :payment_amount en la factura N\xba :invoice de :client", "activity_11", ":user actualiz\xf3 el Pago :payment", "activity_12", _s30_56, "activity_13", ":user borr\xf3 el pago :payment", "activity_14", ":user introdujo :credit cr\xe9dito", "activity_15", ":user actualiz\xf3 :credit cr\xe9dito", "activity_16", ":user archiv\xf3 :credit cr\xe9dito", "activity_17", ":user deleted :credit cr\xe9dito", "activity_18", _s33_34, "activity_19", ":user actualiz\xf3 el presupuesto :quote", "activity_20", ":user envi\xf3 presupuesto :quote para :client a :contact", "activity_21", _s34_29, "activity_22", ":user archiv\xf3 el presupuesto :quote", "activity_23", _s33_34, "activity_24", ":user restaur\xf3 el presupuesto :quote", "activity_25", ":user restaur\xf3 la factura :invoice", "activity_26", _s33_30, "activity_27", _s31_29, "activity_28", ":user restaur\xf3 :credit cr\xe9dito", "activity_29", ":contact ha aprovado el presupuesto :quote para :client", "activity_30", _s30_57, "activity_31", _s33_31, "activity_32", _s33_32, "activity_33", _s34_28, "activity_34", ":user cre\xf3 el gasto :expense", "activity_35", _s31_30, "activity_36", _s31_31, "activity_37", _s32_23, "activity_39", ":user cancelo :payment_amount del pago :payment", "activity_40", ":user reembols\xf3 :adjustment de :payment_amount del pago :payment", "activity_41", "Fallo el pago de :payment_amount para (:payment)", "activity_42", _s25_56, "activity_43", _s30_58, "activity_44", _s28_74, "activity_45", _s28_75, "activity_46", _s29_62, "activity_47", ":user actualiz\xf3 el gasto :expense", "activity_48", _s33_33, "activity_49", _s29_63, "activity_50", ":user uni\xf3 el ticket :ticket", "activity_51", _s31_32, "activity_52", _s32_24, "activity_53", ":contact reabri\xf3 el ticket :ticket", "activity_54", ":user reabri\xf3 el ticket :ticket", "activity_55", _s36_28, "activity_56", ":user vio el ticket :ticket", "activity_57", "El sistema fall\xf3 al enviar la factura :invoice", "activity_58", ":user revirti\xf3 la factura :invoice", "activity_59", ":user cancel\xf3 la factura :invoice", "activity_60", _s34_29, "activity_61", ":user actualiz\xf3 el cliente :cliente", "activity_62", ":user actualiz\xf3 el proveedor :vendor", "activity_63", ":user envi\xf3 por email el primer recordatorio de la factura :invoice a :contact", "activity_64", ":user envi\xf3 por email el segundo recordatorio de la factura :invoice a :contact", "activity_65", ":user envi\xf3 por email el tercer recordatorio de la factura :invoice a :contact", "activity_66", ":user envi\xf3 por email el recordatorio sin f\xedn de la factura :invoice a :contact", "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Password de un solo uso", "emailed_quote", "Presupuesto enviado correctamente", "emailed_credit", "Cr\xe9dito enviado correctamente", _s20_51, "Presupuesto marcado como enviado correctamente", _s21_59, "Marcar cr\xe9dito como enviado", "expired", "Expirada", "all", "Todo", "select", "Seleccionar", _s22_38, "Multiselecci\xf3n en pulsaci\xf3n prolongada", "custom_value1", _s19_88, "custom_value2", _s19_88, "custom_value3", _s21_103, "custom_value4", _s21_104, _s18_75, "Estilo de Email Personalizado", _s24_35, "Mensaje de Escritorio Personalizado", _s29_31, "Mensaje de Factura Impagada Personalizada", _s27_41, "Mensaje de Factura Pagada Personalizada", _s31_10, "Mensaje de Presupuesto no Aprobado Personalizado", "lock_invoices", "Bloquear Facturas", "translations", "Traducciones", _s19_43, "Patr\xf3n del N\xfamero de Tarea", _s19_45, "Contador del N\xfamero de Tarea", _s22_40, "Patr\xf3n del N\xfamero de Gasto", _s22_42, "Contador del N\xfamero de Gasto", _s21_60, "Patr\xf3n del N\xfamero de Proveedor", _s21_62, "Contador del N\xfamero de Proveedor", _s21_64, "Patr\xf3n del N\xfamero de Ticket", _s21_66, "Contador del N\xfamero de Ticket", _s22_44, "Patr\xf3n del N\xfamero de Pago", _s22_46, "Contador del N\xfamero de Pago", _s22_48, "Patr\xf3n del N\xfamero de Factura", _s22_50, "Contador del N\xfamero de Factura", _s20_52, "Patr\xf3n del N\xfamero de Presupuesto", _s20_54, "Contador del N\xfamero de Presupuesto", _s21_68, _s28_76, _s21_70, _s30_59, _s21_72, _s28_76, _s21_73, _s30_59, _s18_77, "Resetear Fecha del Contador", "counter_padding", "Relleno del Contador", _s28_51, "Compartir la numeraci\xf3n para presupuesto y factura", _s18_79, "Nombre de Impuesto por Defecto 1", _s18_81, "Tasa de Impuesto por Defecto 1", _s18_83, "Nombre de Impuesto por Defecto 2", _s18_85, "Tasa de Impuesto por Defecto 2", _s18_87, "Nombre de Impuesto por Defecto 3", _s18_89, "Tasa de Impuesto por Defecto 3", _s21_74, "Asunto de Email de Factura", _s19_47, "Asunto de Email de Presupuesto", _s21_76, "Asunto de Email de Pago", _s29_33, "Asunto de Email de Pago Parcial", "show_table", "Mostrar Tabla", "show_list", "Mostrar Lista", "client_city", "Ciudad del Cliente", "client_state", "Provincia del Cliente", "client_country", "Pa\xeds del Cliente", _s16_193, "El Cliente est\xe1 Activo", "client_balance", "Balance del Cliente", "client_address1", "Calle del Cliente", "client_address2", "Bloq/Pta del Cliente", "vendor_address1", "Calle de Proveedor", "vendor_address2", "Bloq/Pta del Proveedor", _s24_37, "Calle de Env\xedo del Cliente", _s24_38, "Bloq/Pta de Env\xedo del Cliente", "type", "Tipo", "invoice_amount", _s18_154, _s16_197, "Fecha L\xedmite de Pago", "tax_rate1", "Impuesto 1", "tax_rate2", "Impuesto 2", "tax_rate3", "Impuesto 3", "auto_bill", "Facturaci\xf3n Autom\xe1tica", "archived_at", "Archivado el", "has_expenses", "Tiene Gastos", "custom_taxes1", "Impuestos Personalizados 1", "custom_taxes2", "Impuestos Personalizados 2", "custom_taxes3", "Impuestos Personalizados 3", "custom_taxes4", "Impuestos Personalizados 4", _s17_113, _s23_61, _s17_114, _s23_62, _s17_115, _s23_63, _s17_116, _s23_64, "is_deleted", "Borrado", "vendor_city", _s20_108, "vendor_state", "Provincia del Proveedor", "vendor_country", _s18_155, "is_approved", "Aprobada", "tax_name", _s18_156, "tax_amount", "Total Impuestos", "tax_paid", "Impuestos Pagados", "payment_amount", "Valor del Pago", "age", "Edad", "is_running", "Corriendo", "time_log", "Registro Temporal", "bank_id", "Banco", _s19_49, "ID de la Categor\xeda de Gasto", _s16_198, "Categor\xeda del Gasto", _s19_51, "ID de Moneda de Facturaci\xf3n", "tax_name1", "Nombre de Impuesto 1", "tax_name2", "Nombre de Impuesto 2", "tax_name3", "Nombre de Impuesto 3", "transaction_id", "ID de Transacci\xf3n", "color_theme", "Color del Tema"], t1, t1), "sv", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Importera Data", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "Kontakt F\xf6rnamn", _s17_1, "Kontakt Efternamn", "order", "Order", "unassigned", "Otilldelad", "partial_value", "M\xe5ste vara st\xf6rre \xe4n noll och mindre \xe4n totalen", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Tillg\xe4nglig", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "St\xe4ll in subdom\xe4nen eller visa fakturorna p\xe5 din egen hemsida", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "S\xe4kerhet", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Prenumerationer", _s16_11, _s16_12, _s17_7, "\xc4ndra prenumeration", _s20_1, "Skapat prenumerationer utan problem", _s20_2, "Uppdaterat prenumerationer utan problem", _s21_6, "Arkivera prenumeration utan problem", _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "Skicka inbjudan igen", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, "Skanna streckkoden med en :link kompatibel app.", _s18_14, "Aktiverade Tv\xe5-V\xe4gs autentisering utan problem", "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, "Tv\xe5faktorsautentisering", _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\xc5terbetalat betalning", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Omvandla till faktura", _s16_24, _s16_25, "invoice_project", "Fakturera projekt", "invoice_task", "Fakturera uppgift", "invoice_expense", "Faktura kostnad", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, "Konverterad summa", _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "Standard dokument", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "D\xf6lj", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "Kolumn", "sample", "Exempel", "map_to", "Map To", "import", "Importera", _s25_1, _s29_1, "select_file", "V\xe4lj fil", _s16_32, _s16_33, "csv_file", "V\xe4lj CSV-fil", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Obetald", "white_label", "White Label", "delivery_note", "F\xf6ljesedel", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Delvis f\xf6rsenad", "invoice_total", "Totalsumma", "quote_total", "Offertsumma", "credit_total", "Kredit Totalt", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Varning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "Kundnamn", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Utgifts kategorier", _s20_20, "Ny utgifts kategori", _s21_18, _s21_19, _s24_11, "Framg\xe5ngsrikt skapat kostnadskategori", _s24_12, "Framg\xe5ngsrikt uppdaterat kostnadskategori", _s25_5, "Framg\xe5ngsrikt arkiverat kostnadskategori", _s24_13, "Kategori borttagen", _s24_14, _s37_2, _s25_6, "Framg\xe5ngsrikt \xe5terst\xe4llt kostnadskategori", _s27_8, "Framg\xe5ngsrikt arkiverat :count kostnadskategori", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Ska detta faktureras", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Markera aktiv", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\xc5terkommande faktura", _s18_29, "\xc5terkommande fakturor", _s21_25, "Ny \xe5terkommande faktura", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Framg\xe5ngsrikt arkiverat \xe5terkommande faktura", _s25_14, "Framg\xe5ngsrikt tagit bort \xe5terkommande faktura", _s25_15, _s38_7, _s26_6, "Framg\xe5ngsrikt \xe5terst\xe4llt \xe5terkommande faktura", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "F\xf6rtj\xe4nst", "line_item", "Rad", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "Se portal", "copy_link", "Copy Link", "token_billing", "Spara kortinformation", _s24_17, _s24_18, "always", "Alltid", "optin", "Opt-In", "optout", "Opt-Out", "label", "Rubrik", "client_number", "Kundnummer", "auto_convert", "Auto Convert", "company_name", "F\xf6retagsnamn", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "E-postade fakturorna utan problem", "emailed_quotes", "E-postade offerterna utan problem", "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Timmar", "statement", "Transaktionsdatum", "taxes", "Moms", "surcharge", "Till\xe4ggsavgift", "apply_payment", "Apply Payment", "apply", "Verkst\xe4ll", "unapplied", "Unapplied", "select_label", "V\xe4lj rubrik", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Till", "health_check", "Health Check", "payment_type_id", "Betalningss\xe4tt", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Kommande fakturor", _s17_43, _s17_44, "recent_payments", "Nyligen utf\xf6rda betalningar", "upcoming_quotes", "Kommande Offerter", "expired_quotes", "Utg\xe5ngna Offerter", "create_client", "Skapa kund", "create_invoice", "Skapa faktura", "create_quote", "Skapa offert", "create_payment", "Create Payment", "create_vendor", "Skapa tillverkare", "update_quote", "Update Quote", "delete_quote", "Ta bort offert", "update_invoice", "Update Invoice", "delete_invoice", "Ta bort faktura", "update_client", "Update Client", "delete_client", "Radera kund", "delete_payment", "Ta bort betalning", "update_vendor", "Update Vendor", "delete_vendor", "Ta bort leverant\xf6r", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Ta bort kostnad", "create_task", "Skapa uppgift", "update_task", "Update Task", "delete_task", "Radera uppgift", "approve_quote", "Approve Quote", "off", "Av", "when_paid", "When Paid", "expires_on", "Expires On", "free", "Gratis", "plan", "Niv\xe5", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "M\xe5l", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "\xc4ndra token", "created_token", "Token skapad", "updated_token", "Token uppdaterad", "archived_token", "Framg\xe5ngsrikt arkiverat Token", "deleted_token", "Token borttagen", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "E-posta faktura", "email_quote", "E-posta offert", "email_credit", "Email Credit", "email_payment", "Eposta betalning", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Kontakt namn", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "Editera betalningsvillkor", _s20_29, "Skapade betalningsvillkor utan problem", _s20_30, "Uppdaterade betalningsvillkor utan problem", _s21_28, "Arkiverat betalningsvillkor utan problem", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kreditsumma", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exklusive", "inclusive", "Inklusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "\xc5terbetala betalning", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Hela namnet", _s17_55, "Stad/L\xe4n/Postnummer", _s17_57, "Postadress/Stad/Stat", "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Rensa uppgifter.", _s16_64, "Rensade utan problem f\xf6retags data", _s18_38, "Varning: Detta kommer permanent ta bort din information, det finns ingen \xe5terv\xe4nda.", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Dagar", "age_group_30", "30 - 60 Dagar", "age_group_60", "60 - 90 Dagar", "age_group_90", "90 - 120 Dagar", "age_group_120", "120+ Dagar", "refresh", "Uppdatera", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Faktura detaljer", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Beh\xf6righeter", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s24_68, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Uppge Licens", "cancel_account", "Avsluta konto", _s22_19, "Varning: Detta kommer permanent ta bort ditt konto, detta g\xe5r inte att \xe5ngra.", "delete_company", "Ta bort f\xf6retag", _s22_20, "Varning: Detta kommer permanent ta bort till bolag, det finns ingen \xe5terv\xe4ndo.", "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "Rubrik", "load_design", "Ladda design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "F\xf6rslag", "tickets", "Tickets", _s16_69, "\xc5terkommande offerter", "recurring_tasks", "Recurring Tasks", _s18_, "\xc5terkommande utgifter", _s18_39, "Kontohantering", "credit_date", "Kreditdatum", "credit", "Kredit", "credits", "Kreditfakturor", "new_credit", "Ange Kredit", "edit_credit", "Redigera Kreditfaktura", "created_credit", "Kreditfaktura skapad", "updated_credit", "Kreditfaktura uppdaterad", "archived_credit", "Kreditfaktura arkiverad", "deleted_credit", "Kreditfaktura borttagen", "removed_credit", _s27_21, "restored_credit", "Kreditfaktura \xe5terst\xe4lld", _s16_71, ":count kreditfakturor arkiverade", "deleted_credits", ":count kreditfakturor borttagna", _s16_72, _s36_3, "current_version", "Nuvarande version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Hj\xe4lp", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Nytt f\xf6retag", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\xc5terst\xe4lla", "number", "Number", "export", "Exportera", "chart", "Lista", "count", "Count", "totals", "Total", "blank", "Blank", "day", "Dag", "month", "M\xe5nad", "year", "\xc5r", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Gruppera genom", "credit_balance", "Kreditbalans", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Kontakt telefon", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Leverans gata", _s17_64, "Leverans v\xe5ning", "shipping_city", "Leverans stad", "shipping_state", "Leverans l\xe4n", _s20_33, "Leverans postnummer", _s16_103, "Leverans land", _s16_105, "Fakturerings gata", _s16_106, "Fakturerings v\xe5ning", "billing_city", "Fakturerings stad", "billing_state", "Fakturerings l\xe4n", _s19_19, "Fakturerings postnummer", "billing_country", "Fakturerings land", "client_id", "Klient Id", "assigned_to", "Assigned to", "created_by", "Skapad av :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Kolumner", "aging", "B\xf6rjar bli gammal", "profit_and_loss", "F\xf6rtj\xe4nst och F\xf6rlust", "reports", "Rapporter", "report", "Rapport", "add_company", "L\xe4gg till f\xf6retag", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Hj\xe4lp", "refund", "\xc5terbetalning", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Kontakt e-post", "multiselect", "Multiselect", "entity_state", "Tillst\xe5nd", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Meddelande", "from", "Fr\xe5n", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "Supportforum", "about", "About", "documentation", "Dokumentation", "contact_us", "Kontakta oss", "subtotal", "Delsumma", "line_total", "Summa", "item", "Artikel", "credit_email", "Credit Email", "iframe_url", "Webbsida", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Ja", "no", "Nej", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "Visa", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Anv\xe4ndare", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "V\xe4lj en klient", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Moms inst\xe4llningar", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "V\xe4xla", _s19_23, _s20_41, "options", "Val", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Skicka", _s16_115, "\xc5terst\xe4ll ditt l\xf6senord", "late_fees", "Late Fees", "credit_number", "Kreditnummer", "payment_number", "Payment Number", "late_fee_amount", "F\xf6rseningsavgifts summa", _s16_116, "F\xf6rseningsavgifts procent", "schedule", "Schema", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Dagar", "invoice_email", "Faktura e-post", "payment_email", "Betalnings e-post", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Offert e-post", _s16_118, "O\xe4ndlig p\xe5minnelse", _s16_120, _s16_121, "administrator", "Administrat\xf6r", _s18_58, "Till\xe5t anv\xe4ndare att hantera anv\xe4ndare, \xe4ndra inst\xe4llningar och \xe4ndra alla v\xe4rden", "user_management", "Anv\xe4ndarhantering", "users", "Anv\xe4ndare", "new_user", "Ny anv\xe4ndare", "edit_user", "\xc4ndra anv\xe4ndare", "created_user", _s25_22, "updated_user", "Anv\xe4ndare uppdaterad", "archived_user", "Framg\xe5ngsrikt arkiverat anv\xe4ndare", "deleted_user", "Anv\xe4ndare borttagen", "removed_user", _s25_25, "restored_user", "Anv\xe4ndare \xe5terst\xe4lld", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Generella inst\xe4llningar", "invoice_options", "Fakturainst\xe4llningar", _s17_70, 'D\xf6lj "Betald till"', _s22_27, 'Visa bara "Betald till"-sektionen p\xe5 fakturan n\xe4r en betalning har mottagits.', _s23_17, "B\xe4dda in dokument", _s28_15, _s39_2, _s16_124, "Visa Header p\xe5", _s16_125, "Visa Footer p\xe5", "first_page", "F\xf6rsta sidan", "all_pages", "Alla sidor", "last_page", "Sista sidan", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Prim\xe4r f\xe4rg", "secondary_color", "Sekund\xe4r f\xe4rg", "page_size", "Sidstorlek", "font_size", "Storlek p\xe5 framsida", "quote_design", "Offert design", "invoice_fields", "Fakturaf\xe4lt", "product_fields", "Produkt f\xe4lt", "invoice_terms", "Fakturavillkor", "invoice_footer", "Faktura sidfot", "quote_terms", "Offertvillkor", "quote_footer", "Offert footer", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Konvertera", _s23_20, "Konvertera automatiskt en offert till en faktura n\xe4r den godk\xe4nts av en klient.", _s17_72, _s17_73, "freq_daily", "Dagligen", "freq_weekly", "Veckovis", "freq_two_weeks", "Tv\xe5 veckor", "freq_four_weeks", "Fyra veckor", "freq_monthly", "M\xe5nadsvis", "freq_two_months", "Tv\xe5 m\xe5nader", _s17_74, "Tre m\xe5nader", _s16_126, "Fyra m\xe5nader", "freq_six_months", "Sex m\xe5nader", "freq_annually", "\xc5rsvis", "freq_two_years", "Tv\xe5 \xe5r", _s16_127, "Three Years", "never", "Aldrig", "company", "F\xf6retag", _s17_75, "Genererade nummer", "charge_taxes", "Inkludera moms", "next_reset", "N\xe4sta \xe5terst\xe4llning", "reset_counter", "\xc5terst\xe4ll r\xe4knare", _s16_128, "\xc5terkommande prefix", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "F\xf6retagsf\xe4lt", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Fakturaf\xe4lt", _s17_77, "Till\xe4ggsavgift till faktura", "client_field", "Klientf\xe4lt", "product_field", "Produktf\xe4lt", "payment_field", "Payment Field", "contact_field", "Kontaktf\xe4lt", "vendor_field", "Leverant\xf6rsf\xe4lt", "expense_field", "Utgiftsf\xe4lt", "project_field", "Projektf\xe4lt", "task_field", "Uppgiftsf\xe4lt", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Prefix", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "Anpassad CSS", _s17_79, _s17_80, _s16_130, "Visa p\xe5 PDF", _s21_46, "Visa kundens signatur p\xe5 fakturan/offerten.", _s25_27, "Faktura villkor kryssruta", _s30_5, "Kr\xe4v att klienten accepterar faktura villkoren.", _s23_21, "Offert villkors kryssruta", _s28_16, "Kr\xe4v att klienten accepterar offert villkoren.", _s25_28, "Faktura signatur", _s30_6, "Kr\xe4v signatur av klient.", _s23_22, "Offert signatur", _s22_29, "L\xf6senordsskydda fakturor", _s27_23, "Till\xe5ter dig att s\xe4tta ett l\xf6senord f\xf6r varje kontakt. Om ett l\xf6senord \xe4r valt kommer kontakten vara tvungen att skriva in l\xf6senordet innan den kan se fakturan.", "authorization", "Tillst\xe5nd", "subdomain", "Underdom\xe4n", "domain", "Dom\xe4n", "portal_mode", "Portal Mode", "email_signature", "V\xe4nliga h\xe4lsningar,", _s24_21, "G\xf6r det enklare f\xf6r dina klienter att betala genom att l\xe4gga till schema.org m\xe4rkning till dina e-post.", "plain", "Vanlig", "light", "Ljus", "dark", "M\xf6rk", "email_design", "E-post design", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "Aktivera m\xe4rkning", "reply_to_email", "Reply-To E-post", "reply_to_name", "Reply-To Name", "bcc_email", "Eposta hemlig kopia", "processed", "Processed", "credit_card", "Betalkort", "bank_transfer", "Bank\xf6verf\xf6ring", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Aktivera min", "enable_max", "Aktivera max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, "Accepterade kort logos", "credentials", "Credentials", "update_address", "Uppdatera adress", _s19_28, "Uppdatera kundens adress med tillhandah\xe5llna uppgifter", "rate", "\xe1-pris", "tax_rate", "Skatteniv\xe5", "new_tax_rate", "Ny skatte niv\xe5", "edit_tax_rate", "Redigera skatteniv\xe5", _s16_133, "Framg\xe5ngsrikt skapat skattesats", _s16_134, "Framg\xe5ngsrikt uppdaterad momssats", _s17_82, "Framg\xe5ngsrikt arkiverat skatteniv\xe5n/momssatsen", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Auto-ifyll produkter", _s18_64, "V\xe4lj en produkt f\xf6r att automatiskt fylla i beskrivning och pris", "update_products", "Auto-uppdaterade produkter", _s20_44, "Uppdatera en faktura f\xf6r att automatiskt uppdatera produktbiblioteket", _s16_136, "Konvertera produkter", _s21_47, "Konvertera automatiskt produkt priser till kundens valuta", "fees", "Avgifter", "limits", "Gr\xe4nser", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Avbryt \xe4ndringar", "default_value", "Default value", "disabled", "Avst\xe4ngd", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "S\xf6ndag", "monday", "M\xe5ndag", "tuesday", "Tisdag", "wednesday", "Onsdag", "thursday", "Torsdag", "friday", "Fredag", "saturday", "L\xf6rdag", "january", "Januari", "february", "Februari", "march", "Mars", "april", "April", "may", "Maj", "june", "Juni", "july", "Juli", "august", "Augusti", "september", "September", "october", "Oktober", "november", "November", "december", "December", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Timmars tid", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logotyp", "saved_settings", _s27_24, _s16_142, "Produkt inst\xe4llningar", "device_settings", "Device Settings", "defaults", "F\xf6rinst\xe4llningar", "basic_settings", "Grundl\xe4ggande inst\xe4llningar", _s17_87, "Avancerade inst\xe4llningar", "company_details", "F\xf6retagsinfo", "user_details", "Anv\xe4ndaruppgifter", "localization", "Spr\xe5kanpassning", "online_payments", "Onlinebetalningar", "tax_rates", "Momsniv\xe5er", "notifications", "Meddelanden", "import_export", "Importera/Exportera", "custom_fields", "Anpassade f\xe4lt", "invoice_design", "Fakturadesign", "buy_now_buttons", "K\xf6p Nu knappar", "email_settings", "E-postinst\xe4llningar", _s23_28, "Mallar & P\xe5minnelser", _s22_30, _s20_46, _s19_34, _s17_125, "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Villkor f\xf6r tj\xe4nsten", "privacy_policy", "Integritetspolicy", "sign_up", "Registrera dig", "account_login", "Inloggning", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Skapa Ny", _s18_70, _s18_71, _s21_51, _s34_13, "download", "Ladda ner", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Dokument", "documents", "Dokument", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Kostnads datum", "pending", "P\xe5g\xe5ende", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "Konvertera", _s24_27, "Bifoga dokument till fakturan", "exchange_rate", "V\xe4xlingskurs", _s16_151, "Konvertera valuta", "mark_paid", "Markera betald", "category", "Kategori", "address", "Adress", "new_vendor", "Ny leverant\xf6r", "created_vendor", "Framg\xe5ngsrikt skapat leverant\xf6r", "updated_vendor", "Framg\xe5ngsrikt uppdaterat leverant\xf6r", "archived_vendor", "Framg\xe5ngsrikt arkiverat leverant\xf6r", "deleted_vendor", "Framg\xe5ngsrikt raderat leverant\xf6r", "restored_vendor", "Lyckades \xe5terst\xe4lla leverant\xf6r", _s16_152, "Framg\xe5ngsrikt arkiverat :count leverant\xf6rer", "deleted_vendors", "Framg\xe5ngsrikt raderat :count leverant\xf6rer", _s16_153, _s36_5, "new_expense", "Ny Kostnad", "created_expense", "Framg\xe5ngsrikt skapat kostnad", "updated_expense", "Framg\xe5ngsrikt uppdaterat kostnad", _s16_154, "Framg\xe5ngsrikt arkiverat kostnad", "deleted_expense", "Framg\xe5ngsrikt tagit bort kostnad", _s16_155, "Lyckades \xe5terst\xe4lla utgifter", _s17_93, "Framg\xe5ngsrikt arkiverat kostnader", _s16_156, "Framg\xe5ngsrikt tagit bort kostnader", _s17_94, _s37_9, "copy_shipping", "Kopiera frakt", "copy_billing", "Kopiera betalning", "design", "Design", _s21_52, _s21_53, "invoiced", "Fakturerad", "logged", "Loggat", "running", "K\xf6rs", "resume", "\xc5teruppta", "task_errors", "Korrigera \xf6verlappande tider", "start", "Start", "stop", "Stoppa", "started_task", "Startat uppgift utan problem", "stopped_task", "Framg\xe5ngsrikt stoppad uppgift", "resumed_task", "fortsatt uppgiften utan problem", "now", "Nu", _s16_157, _s16_158, "timer", "Timer", "manual", "Manuell", "budgeted", "Budgeted", "start_time", "Start-tid", "end_time", "Sluttid", "date", "Datum", "times", "Tider", "duration", "Varaktighet", "new_task", "Ny uppgift", "created_task", "Framg\xe5ngsrikt skapad uppgift", "updated_task", "Lyckad uppdatering av uppgift", "archived_task", "Framg\xe5ngsrikt arkiverad uppgift", "deleted_task", "Framg\xe5ngsrikt raderad uppgift", "restored_task", "Framg\xe5ngsrikt \xe5terst\xe4lld uppgift", "archived_tasks", "Framg\xe5ngsrikt arkiverade :count uppgifter", "deleted_tasks", "Framg\xe5ngsrikt raderade :count uppgifter", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeterade timmar", "created_project", "Projekt skapat", "updated_project", "Projektet uppdaterat", _s16_159, "Projekt arkiverat", "deleted_project", "Projekt borttaget", _s16_160, "Projekt \xe5terst\xe4llt", _s17_95, ":count projekt arkiverade", _s16_161, ":count projekt borttagna", _s17_96, _s37_10, "new_project", "Nytt Projekt", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "klicka h\xe4r", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Sidfot", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Anpassat intervall", "date_range", "Datumintervall", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "Denna m\xe5naden", "last_month", "Senaste m\xe5naden", "this_year", "Detta \xe5ret", "last_year", "Senaste \xe5ret", "custom", "Utforma", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Visa faktura", "convert", "Convert", "more", "More", "edit_client", "Redigera kund", "edit_product", "Redigera produkt", "edit_invoice", "Redigera faktura", "edit_quote", "\xc4ndra offert", "edit_payment", "\xc4ndra betalning", "edit_task", "Redigera uppgift", "edit_expense", "Redigera kostnad", "edit_vendor", "\xc4ndra leverant\xf6r", "edit_project", "\xc4ndra Produkt", _s22_, "\xc4ndra \xe5terkommande utgift", _s20_47, _s20_48, "billing_address", "Fakturaadress", _s16_164, "Leverans adress", "total_revenue", "Totala int\xe4kter", "average_invoice", "Genomsnittlig faktura", "outstanding", "Utest\xe5ende/Obetalt", "invoices_sent", _s24_68, "active_clients", "aktiva kunder", "close", "St\xe4ng", "email", "E-post", "password", "L\xf6senord", "url", "URL", "secret", "Hemlig", "name", "Namn", "logout", "Logga ut", "login", "Logga in", "filter", "Filter", "sort", "Sort", "search", "S\xf6k", "active", "Aktiv", "archived", "Arkiverad", "deleted", "Ta bort", "dashboard", "\xd6versikt", "archive", "Arkiv", "delete", "Ta bort", "restore", "\xc5terst\xe4ll", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Stigande", "descending", "Fallande", "save", "Spara", _s17_100, _s17_101, "paid_to_date", "Betalt hittills", "balance_due", "Resterande belopp", "balance", "Balans", "overview", "Overview", "details", "Detaljer", "phone", "Telefon", "website", "Hemsida", "vat_number", "Momsregistreringsnummer", "id_number", "ID-nummer", "create", "Skapa", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "Kontakter", "additional", "Additional", "first_name", "F\xf6rnamn", "last_name", "Efternamn", "add_contact", "L\xe4gg till kontakt", "are_you_sure", "\xc4r du s\xe4ker?", "cancel", "Avbryt", "ok", "Ok", "remove", "Ta bort", _s16_170, _s16_171, "product", "Produkt", "products", "Produkter", "new_product", "Ny produkt", "created_product", "Produkt skapad", "updated_product", "Produkt uppdaterad", _s16_172, "Produkt arkiverad", "deleted_product", "Produkt borttagen", _s16_173, "Produkt \xe5terst\xe4lld", _s17_102, "Arkiverade :count produkter utan problem", _s16_174, ":count produkter borttagna", _s17_103, _s37_11, "product_key", "Produkt", "notes", "Notis", "cost", "Kostnad", "client", "Kund", "clients", "Kunder", "new_client", "Ny kund", "created_client", "Kund skapad", "updated_client", "Kund uppdaterad", "archived_client", "Kund arkiverad", _s16_175, ":count kunder arkiverade", "deleted_client", "kund borttagen", "deleted_clients", ":count kunder borttagna", "restored_client", "Kund \xe5terst\xe4lld", _s16_176, _s36_7, "address1", "Adress 1", "address2", "Adress 2", "city", "Ort", "state", "Landskap", "postal_code", "Postnummer", "country", "Land", "invoice", "Faktura", "invoices", "Fakturor", "new_invoice", "Ny faktura", "created_invoice", "Faktura skapad", "updated_invoice", "Faktura uppdaterad", _s16_177, "Faktura arkiverad", "deleted_invoice", "Faktura borttagen", _s16_178, "Faktura \xe5terst\xe4lld", _s17_104, ":count fakturor arkiverade", _s16_179, ":count fakturor borttagna", _s17_105, _s37_12, "emailed_invoice", "Faktura skickad som e-post", "emailed_payment", "Epostade betalningen utan problem", "amount", "Summa", "invoice_number", "Fakturanummer", "invoice_date", "Fakturadatum", "discount", "Rabatt", "po_number", "Referensnummer", "terms", "Villkor", "public_notes", "Publika noteringar", "private_notes", "Privata anteckningar", "frequency", "Frekvens", "start_date", "Startdatum", "end_date", "Slutdatum", "quote_number", "Offertnummer", "quote_date", "Offertdatum", "valid_until", "Giltig till", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "Beskrivning", "unit_cost", "Enhetspris", "quantity", "Antal", "add_item", "Add Item", "contact", "Kontakt", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "Sista betalningsdatum", _s16_180, "Delvis f\xf6rfallen", "status", "Status", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Totalsumma", "percent", "Procent", "edit", "\xc4ndra", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Uppgifts taxa", "settings", "Inst\xe4llningar", "language", "Language", "currency", "Valuta", "created_at", "Skapat datum", "created_on", "Created On", "updated_at", "Updated", "tax", "Moms", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "F\xf6rfallen", "draft", "Utkast", "sent", "Skickat", "viewed", "Viewed", "approved", "Approved", "partial", "delins\xe4ttning", "paid", "Betald", "mark_sent", "Markera skickad", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Klar", _s37_13, _s37_14, "dark_mode", "M\xf6rkt l\xe4ge", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "H\xe4ndelse", _s16_182, _s16_183, "clone", "Kopiera", "loading", "Laddar", "industry", "Industry", "size", "Size", "payment_terms", "Betalningsvillkor", "payment_date", "Betalningsdatum", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Klient Portal", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Aktiverad", "recipients", "Mottagare", "initial_email", "P\xe5b\xf6rja epost", "first_reminder", "F\xf6rsta P\xe5minnelse", "second_reminder", "Andra P\xe5minnelse", "third_reminder", _s17_152, "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Mall", "send", "Send", "subject", "Subject", "body", "Organisation/Avdelning", "send_email", "Skicka epost", "email_receipt", "E-posta kvitto till kunden", "auto_billing", "Auto billing", "button", "Button", "preview", "F\xf6rhandsgranska", "customize", "Skr\xe4ddarsy", "history", "Historik", "payment", "Betalning", "payments", "Betalningar", "refunded", "Refunded", "payment_type", "Betalningstyp", _s21_57, "Transaktion referens", "enter_payment", "Ange betalning", "new_payment", "Ny betalning", "created_payment", "Betalning registrerad", "updated_payment", "Betalning uppdaterad", _s16_190, "Betalning arkiverad", "deleted_payment", "Betalning borttagen", _s16_191, "betalning \xe5terst\xe4lld", _s17_109, ":count betalningar arkiverade", _s16_192, ":count betalningar borttagna", _s17_110, _s37_15, "quote", "Offert", "quotes", "Offerter", "new_quote", "Ny offert", "created_quote", "Offert skapad", "updated_quote", "Offert uppdaterad", "archived_quote", "Offert arkiverad", "deleted_quote", "Offert borttagen", "restored_quote", "Offert \xe5terst\xe4lld", "archived_quotes", ":count offerter arkiverade", "deleted_quotes", ":count offerter borttagna", "restored_quotes", _s35_13, "expense", "Utgift", "expenses", "Utgifter", "vendor", "Leverant\xf6r", "vendors", "Leverant\xf6rer", "task", "Uppgift", "tasks", "Uppgifter", "project", "Projekt", "projects", "Projekt", "activity_1", ":user skapade kund :client", "activity_2", ":user arkiverade kund :client", "activity_3", ":user raderade kund :client", "activity_4", ":user skapade faktura :invoice", "activity_5", ":user uppdaterade faktura :invoice", "activity_6", ":user mailade faktura :invoice f\xf6r :client till :contact", "activity_7", ":contact visade faktura :invoice f\xf6r :client", "activity_8", ":user arkiverade faktura :invoice", "activity_9", ":user raderade faktura :invoice", "activity_10", _s85_0, "activity_11", ":user uppdaterade betalning :payment", "activity_12", ":user arkiverade betalning :payment", "activity_13", ":user tog bort betalning :payment", "activity_14", ":user skickade in :credit kredit", "activity_15", ":user updaterade :credit kredit", "activity_16", ":user arkiverade :credit kredit", "activity_17", ":user tog bort :credit kredit", "activity_18", ":user skapade offert :quote", "activity_19", ":user uppdaterade offert :quote", "activity_20", ":user mailade offert :quote f\xf6r :client f\xf6r :contact", "activity_21", ":contact visade offert :quote", "activity_22", ":user arkiverade offert :quote", "activity_23", ":user tog bort offert :quote", "activity_24", ":user \xe5terst\xe4llde offert :quote", "activity_25", ":user \xe5terst\xe4llde Faktura :invoice", "activity_26", ":user \xe5terst\xe4llde klient :client", "activity_27", ":user \xe5terst\xe4llde betalning :payment", "activity_28", ":user \xe5terst\xe4llde :credit kredit", "activity_29", _s42_9, "activity_30", ":user skapade leverant\xf6r :vendor", "activity_31", ":user arkiverade leverant\xf6r :vendor", "activity_32", ":user tog bort leverant\xf6r :vendor", "activity_33", ":user \xe5terst\xe4llde leverant\xf6r :vendor", "activity_34", ":user skapade kostnad :expense", "activity_35", ":user arkiverade kostnad :expense", "activity_36", ":user tog bort kostnad :expense", "activity_37", ":user \xe5terst\xe4llde kostnad :expense", "activity_39", ":user avbr\xf6t en :payment_amount betalning :payment", "activity_40", ":user \xe5terbetalade :adjustment av en :payment_amount betalning :payment", "activity_41", ":payment_amount betalning (:payment) misslyckad", "activity_42", ":user skapade uppgift :task", "activity_43", ":user uppdaterade uppgift :task", "activity_44", ":user arkiverade uppgift :task", "activity_45", ":user tog bort uppgift :task", "activity_46", ":user \xe5terst\xe4llde uppgift :task", "activity_47", ":user uppdaterade kostnad :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, "Eng\xe5ngs l\xf6senord", "emailed_quote", "Offert e-postad", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Utg\xe5tt", "all", "Alla", "select", "V\xe4lj", _s22_38, _s22_39, "custom_value1", "Anpassat v\xe4rde", "custom_value2", "Anpassat v\xe4rde", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Fakturar\xe4knare", _s20_52, _s20_53, _s20_54, "Offertr\xe4knare", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "Typ", "invoice_amount", "Faktura belopp", _s16_197, "F\xf6rfallodatum", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Auto debitera", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Skattenamn", "tax_amount", "Moms summa", "tax_paid", "Moms betalad", "payment_amount", "Betald summa", "age", "\xc5lder", "is_running", "Is Running", "time_log", "Tidslogg", "bank_id", "Bank", _s19_49, _s19_50, _s16_198, "Kostnads kategori", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "th", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, "\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", _s17_1, "\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "order", "Order", "unassigned", "\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e21\u0e2d\u0e1a\u0e2b\u0e21\u0e32\u0e22", "partial_value", "\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e41\u0e25\u0e30\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e42\u0e14\u0e40\u0e21\u0e19\u0e22\u0e48\u0e2d\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07.", _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", "\u0e2a\u0e48\u0e07\u0e04\u0e33\u0e40\u0e0a\u0e34\u0e0d\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07", _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, "\u0e01\u0e32\u0e23\u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19", _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "\u0e07\u0e32\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_expense", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "\u0e0b\u0e48\u0e2d\u0e19", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", "sample", "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", "map_to", "Map To", "import", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", _s25_1, _s29_1, "select_file", "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e1f\u0e25\u0e4c", _s16_32, _s16_33, "csv_file", "\u0e44\u0e1f\u0e25\u0e4c CSV", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e08\u0e48\u0e32\u0e22", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", "invoice_total", "\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21\u0e15\u0e32\u0e21\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_total", "\u0e22\u0e2d\u0e14\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "credit_total", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s20_20, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", _s21_18, _s21_19, _s24_11, "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s24_12, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s25_5, "\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e47\u0e1a\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s24_13, "\u0e19\u0e33\u0e2d\u0e2d\u0e01\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s24_14, _s37_2, _s25_6, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s27_8, "\u0e08\u0e31\u0e14\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "\u0e04\u0e27\u0e23\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e27\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "\u0e17\u0e33\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33", _s18_29, "\u0e17\u0e33\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33", _s21_25, "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e49\u0e33\u0e43\u0e2b\u0e21\u0e48", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s25_14, "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e41\u0e25\u0e49\u0e27", _s25_15, _s38_7, _s26_6, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e41\u0e25\u0e49\u0e27", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "\u0e01\u0e33\u0e44\u0e23", "line_item", "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "\u0e14\u0e39\u0e1e\u0e2d\u0e23\u0e4c\u0e17\u0e31\u0e25", "copy_link", "Copy Link", "token_billing", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", _s24_17, _s24_18, "always", "\u0e15\u0e25\u0e2d\u0e14\u0e40\u0e27\u0e25\u0e32", "optin", "Opt-In", "optout", "Opt-Out", "label", "\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a", "client_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "auto_convert", "Auto Convert", "company_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_quotes", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_credits", _s28_52, "gateway", "\u0e40\u0e01\u0e15\u0e40\u0e27\u0e22\u0e4c", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", "statement", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "taxes", "\u0e20\u0e32\u0e29\u0e35", "surcharge", "\u0e04\u0e34\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "\u0e44\u0e1b\u0e22\u0e31\u0e07", "health_check", "Health Check", "payment_type_id", "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", _s17_43, _s17_44, "recent_payments", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "upcoming_quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", "expired_quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38", "create_client", "Create Client", "create_invoice", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "create_quote", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "create_payment", "Create Payment", "create_vendor", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "update_quote", "Update Quote", "delete_quote", "\u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "update_invoice", "Update Invoice", "delete_invoice", "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "update_client", "Update Client", "delete_client", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "delete_payment", "\u0e25\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "update_vendor", "Update Vendor", "delete_vendor", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "create_task", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", "update_task", "Update Task", "delete_task", "\u0e25\u0e1a\u0e07\u0e32\u0e19", "approve_quote", "Approve Quote", "off", "\u0e1b\u0e34\u0e14", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\u0e1f\u0e23\u0e35", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokens", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokens", "new_token", "New Token", "edit_token", "\u0e41\u0e01\u0e49\u0e44\u0e02 Token", "created_token", "\u0e2a\u0e23\u0e49\u0e32\u0e07 Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "updated_token", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17 Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "archived_token", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 Token \u0e41\u0e25\u0e49\u0e27", "deleted_token", "\u0e25\u0e1a Token \u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", "email_quote", _s16_288, "email_credit", "Email Credit", "email_payment", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s20_29, "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s20_30, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s21_28, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "\u0e22\u0e2d\u0e14\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "\u0e1e\u0e34\u0e40\u0e28\u0e29", "inclusive", "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e04\u0e37\u0e19", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e15\u0e47\u0e21", _s17_55, "\u0e40\u0e21\u0e37\u0e2d\u0e07 / \u0e23\u0e31\u0e10 / \u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c", _s17_57, "\u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c / \u0e40\u0e21\u0e37\u0e2d\u0e07 / \u0e23\u0e31\u0e10", "custom1", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e41\u0e23\u0e01", "custom2", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e07", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "\u0e25\u0e49\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", _s16_64, _s32_5, _s18_38, "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19: \u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49\u0e08\u0e30\u0e25\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e04\u0e37\u0e19\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e44\u0e14\u0e49", "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 \u0e27\u0e31\u0e19", "age_group_30", "30 - 60 \u0e27\u0e31\u0e19", "age_group_60", "60 - 90 \u0e27\u0e31\u0e19", "age_group_90", "90 - 120 \u0e27\u0e31\u0e19", "age_group_120", "120+ \u0e27\u0e31\u0e19", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s20_110, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e44\u0e25\u0e40\u0e0b\u0e19\u0e15\u0e4c", "cancel_account", "\u0e25\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", _s22_19, "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19: \u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49\u0e08\u0e30\u0e25\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e32\u0e27\u0e23\u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e44\u0e14\u0e49", "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", "load_design", "\u0e42\u0e2b\u0e25\u0e14\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, _s16_70, "recurring_tasks", "Recurring Tasks", _s18_, "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", _s18_39, "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35", "credit_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "credit", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "credits", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "new_credit", "\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "edit_credit", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "created_credit", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_credit", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e41\u0e25\u0e49\u0e27", "archived_credit", "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_credit", "\u0e25\u0e1a\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "removed_credit", _s27_21, "restored_credit", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_71, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "deleted_credits", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", _s16_72, _s36_3, "current_version", "\u0e23\u0e38\u0e48\u0e19\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "\u0e2d\u0e48\u0e32\u0e19\u0e15\u0e48\u0e2d", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17\u0e43\u0e2b\u0e21\u0e48", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15", "number", "Number", "export", "\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01", "chart", "\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34", "count", "Count", "totals", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "blank", "\u0e27\u0e48\u0e32\u0e07", "day", "\u0e27\u0e31\u0e19", "month", "\u0e40\u0e14\u0e37\u0e2d\u0e19", "year", "\u0e1b\u0e35", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "\u0e08\u0e31\u0e14\u0e01\u0e25\u0e38\u0e48\u0e21\u0e15\u0e32\u0e21", "credit_balance", "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "\u0e23\u0e2b\u0e31\u0e2a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "assigned_to", "Assigned to", "created_by", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e14\u0e22 :name", "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "\u0e04\u0e2d\u0e25\u0e31\u0e21", "aging", "\u0e2d\u0e32\u0e22\u0e38\u0e25\u0e39\u0e01\u0e2b\u0e19\u0e35\u0e49", "profit_and_loss", "\u0e01\u0e33\u0e44\u0e23\u0e41\u0e25\u0e30\u0e02\u0e32\u0e14\u0e17\u0e38\u0e19", "reports", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "report", "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", "add_company", "\u0e40\u0e1e\u0e34\u0e48\u0e21 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", "refund", "\u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", "multiselect", "Multiselect", "entity_state", "\u0e2a\u0e16\u0e32\u0e19\u0e30", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", "from", "\u0e08\u0e32\u0e01", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "support forum", "about", "About", "documentation", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", "contact_us", "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32", "subtotal", "\u0e23\u0e27\u0e21\u0e40\u0e07\u0e34\u0e19", "line_total", "\u0e23\u0e27\u0e21\u0e40\u0e07\u0e34\u0e19", "item", "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", "credit_email", "Credit Email", "iframe_url", "Website", "domain_url", "Domain URL", _s21_36, "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b", _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "\u0e43\u0e0a\u0e48", "no", "\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "\u0e14\u0e39", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, "\u0e42\u0e1b\u0e23\u0e14\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e20\u0e32\u0e29\u0e35", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "\u0e2a\u0e25\u0e31\u0e1a", _s19_23, _s20_41, "options", "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", _s16_115, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", "late_fees", "Late Fees", "credit_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "payment_number", "Payment Number", "late_fee_amount", "\u0e04\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e25\u0e48\u0e32\u0e0a\u0e49\u0e32\u0e08\u0e33\u0e19\u0e27\u0e19", _s16_116, "\u0e04\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e25\u0e48\u0e32\u0e0a\u0e49\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e19\u0e15\u0e4c", "schedule", "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e27\u0e25\u0e32", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "\u0e27\u0e31\u0e19", "invoice_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "payment_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", _s16_288, _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "\u0e1c\u0e39\u0e49\u0e14\u0e39\u0e41\u0e25\u0e23\u0e30\u0e1a\u0e1a", _s18_58, "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "user_management", "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "users", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", "new_user", "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e43\u0e2b\u0e21\u0e48", "edit_user", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "created_user", _s25_22, "updated_user", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_user", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27", "deleted_user", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "removed_user", _s25_25, "restored_user", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", "invoice_options", "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s17_70, "\u0e0b\u0e48\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", _s22_27, '\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 "\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48" \u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e49\u0e27', _s23_17, "\u0e1d\u0e31\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", _s28_15, "\u0e23\u0e27\u0e21\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e41\u0e19\u0e1a\u0e21\u0e32\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_124, "\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", _s16_125, "\u0e41\u0e2a\u0e14\u0e07\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", "first_page", "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01", "all_pages", "\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "last_page", "\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "\u0e2a\u0e35\u0e2b\u0e25\u0e31\u0e01", "secondary_color", "\u0e2a\u0e35\u0e23\u0e2d\u0e07", "page_size", "\u0e02\u0e19\u0e32\u0e14\u0e2b\u0e19\u0e49\u0e32", "font_size", "\u0e02\u0e19\u0e32\u0e14\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", "quote_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "invoice_fields", "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "product_fields", "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "invoice_terms", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_footer", "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "quote_terms", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quote_footer", "\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "\u0e41\u0e1b\u0e25\u0e07\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s23_20, "\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", _s17_72, _s17_73, "freq_daily", "Daily", "freq_weekly", "\u0e23\u0e32\u0e22\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", "freq_two_weeks", "\u0e2a\u0e2d\u0e07\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", "freq_four_weeks", "\u0e2a\u0e35\u0e48\u0e2a\u0e31\u0e1a\u0e14\u0e32\u0e2b\u0e4c", "freq_monthly", "\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", "freq_two_months", "2 \u0e40\u0e14\u0e37\u0e2d\u0e19", _s17_74, "\u0e2a\u0e32\u0e21\u0e40\u0e14\u0e37\u0e2d\u0e19", _s16_126, "Four months", "freq_six_months", "\u0e2b\u0e01\u0e40\u0e14\u0e37\u0e2d\u0e19", "freq_annually", "\u0e23\u0e32\u0e22\u0e1b\u0e35", "freq_two_years", "Two years", _s16_127, "Three Years", "never", "\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22", "company", "Company", _s17_75, "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19", "charge_taxes", "\u0e20\u0e32\u0e29\u0e35\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "next_reset", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e04\u0e23\u0e31\u0e49\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b", "reset_counter", "\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e15\u0e31\u0e27\u0e19\u0e31\u0e1a", _s16_128, "\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "Client Field", "product_field", "Product Field", "payment_field", "Payment Field", "contact_field", "Contact Field", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07 CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, "Checkbox \u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s30_5, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s23_21, "Checkbox \u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s28_16, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e27\u0e48\u0e32\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s25_28, "\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s30_6, "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e31\u0e14\u0e2b\u0e32\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19", _s23_22, "\u0e25\u0e32\u0e22\u0e21\u0e37\u0e2d\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s22_29, "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s27_23, "\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e31\u0e49\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e25\u0e30\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d \u0e2b\u0e32\u0e01\u0e21\u0e35\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e01\u0e48\u0e2d\u0e19\u0e14\u0e39\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "authorization", "\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", "subdomain", "Subdomain", "domain", "\u0e42\u0e14\u0e40\u0e21\u0e19", "portal_mode", "Portal Mode", "email_signature", "\u0e14\u0e49\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e04\u0e32\u0e23\u0e1e", _s24_21, "\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e07\u0e48\u0e32\u0e22\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e21\u0e32\u0e23\u0e4c\u0e01\u0e2d\u0e31\u0e1b schema.org \u0e25\u0e07\u0e43\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", "plain", "\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32", "light", "\u0e1a\u0e32\u0e07", "dark", "\u0e21\u0e37\u0e14", "email_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 Markup", "reply_to_email", "\u0e15\u0e2d\u0e1a\u0e01\u0e25\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "bank_transfer", "\u0e42\u0e2d\u0e19\u0e40\u0e07\u0e34\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e48\u0e32\u0e15\u0e48\u0e33\u0e2a\u0e38\u0e14", "enable_max", "\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e04\u0e48\u0e32\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14", "min_limit", "\u0e15\u0e48\u0e33\u0e2a\u0e38\u0e14 :min", "max_limit", "\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14 :max", "min", "\u0e19\u0e49\u0e2d\u0e22", "max", "\u0e21\u0e32\u0e01", _s19_26, "\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a\u0e42\u0e25\u0e42\u0e01\u0e49\u0e02\u0e2d\u0e07\u0e1a\u0e31\u0e15\u0e23", "credentials", "Credentials", "update_address", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", _s19_28, "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e42\u0e14\u0e22\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e44\u0e27\u0e49", "rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32", "tax_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", "new_tax_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e43\u0e2b\u0e21\u0e48", "edit_tax_rate", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", _s16_133, _s28_77, _s16_134, _s28_77, _s17_82, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "\u0e40\u0e15\u0e34\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s18_64, "\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e08\u0e30\u0e40\u0e15\u0e34\u0e21\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", "update_products", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s20_44, "\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 \u0e08\u0e30\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", "limits", "\u0e08\u0e33\u0e01\u0e31\u0e14", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c", "monday", "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c", "tuesday", "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23", "wednesday", "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", "thursday", "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35", "friday", "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c", "saturday", "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c", "january", "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", "february", "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", "march", "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", "april", "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", "may", "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", "june", "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", "july", "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", "august", "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", "september", "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", "october", "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", "november", "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", "december", "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "www", "saved_settings", _s27_24, _s16_142, "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "device_settings", "Device Settings", "defaults", "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "basic_settings", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", _s17_87, "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07", "company_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", "user_details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", "localization", "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e43\u0e2b\u0e49\u0e40\u0e02\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e17\u0e49\u0e2d\u0e07\u0e16\u0e34\u0e48\u0e19", "online_payments", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c", "tax_rates", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35", "notifications", "\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", "import_export", "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32 | \u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01", "custom_fields", "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", "invoice_design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "buy_now_buttons", "\u0e1b\u0e38\u0e48\u0e21\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49", "email_settings", "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", _s23_28, "\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e15\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", _s22_30, _s20_46, _s19_34, "\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e20\u0e32\u0e1e\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", "privacy_policy", "\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27", "sign_up", "\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19", "account_login", "\u0e25\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e43\u0e0a\u0e49", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48", _s18_70, _s18_71, _s21_51, _s34_13, "download", "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23:", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1a\u0e34\u0e01\u0e08\u0e48\u0e32\u0e22", "pending", "\u0e23\u0e2d\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "\u0e41\u0e1b\u0e25\u0e07", _s24_27, "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e25\u0e07\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "exchange_rate", "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", _s16_151, "\u0e41\u0e1b\u0e25\u0e07\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", "mark_paid", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e49\u0e27", "category", "\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e01", "address", "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", "new_vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", "created_vendor", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "updated_vendor", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "archived_vendor", "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e40\u0e01\u0e47\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_vendor", "\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "restored_vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_152, "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e02\u0e49\u0e32\u0e04\u0e25\u0e31\u0e07\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "deleted_vendors", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", _s16_153, _s36_5, "new_expense", "\u0e1b\u0e49\u0e2d\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "created_expense", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "updated_expense", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_154, _s26_61, "deleted_expense", _s18_157, _s16_155, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_93, _s26_61, _s16_156, _s18_157, _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a", _s21_52, _s21_53, "invoiced", "\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "logged", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32", "running", "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e17\u0e33\u0e07\u0e32\u0e19", "resume", "\u0e17\u0e33\u0e15\u0e48\u0e2d\u0e44\u0e1b", "task_errors", "\u0e42\u0e1b\u0e23\u0e14\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e27\u0e25\u0e32\u0e0b\u0e49\u0e2d\u0e19\u0e17\u0e31\u0e1a\u0e01\u0e31\u0e19", "start", "\u0e40\u0e23\u0e34\u0e48\u0e21", "stop", "\u0e2b\u0e22\u0e38\u0e14", "started_task", _s25_34, "stopped_task", "\u0e2b\u0e22\u0e38\u0e14\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "resumed_task", "\u0e17\u0e33\u0e07\u0e32\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "now", "\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49", _s16_157, _s16_158, "timer", "\u0e08\u0e31\u0e1a\u0e40\u0e27\u0e25\u0e32", "manual", "\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d", "budgeted", "Budgeted", "start_time", "\u0e40\u0e27\u0e25\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "end_time", "\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", "date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "times", "\u0e40\u0e27\u0e25\u0e32", "duration", "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32", "new_task", "\u0e07\u0e32\u0e19\u0e43\u0e2b\u0e21\u0e48", "created_task", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_task", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "archived_task", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_task", "\u0e25\u0e1a\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "restored_task", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_tasks", "\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e07\u0e32\u0e19", "deleted_tasks", "\u0e25\u0e1a\u0e07\u0e32\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e07\u0e32\u0e19", "restored_tasks", _s34_14, _s19_38, "\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e0a\u0e37\u0e48\u0e2d", "budgeted_hours", "Budgeted Hours", "created_project", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "updated_project", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_159, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_project", "\u0e25\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s16_160, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", _s17_95, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :count \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s16_161, "\u0e25\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23 :count \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s17_96, _s37_10, "new_project", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "\u0e04\u0e48\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", "unapproved", "\u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "\u0e23\u0e30\u0e1a\u0e38\u0e0a\u0e48\u0e27\u0e07", "date_range", "\u0e0a\u0e48\u0e27\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e19\u0e35\u0e49", "last_month", "\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "this_year", "\u0e1b\u0e35\u0e19\u0e35\u0e49", "last_year", "\u0e1b\u0e35\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", "custom", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "\u0e14\u0e39\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "convert", "Convert", "more", "More", "edit_client", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "edit_product", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "edit_invoice", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "edit_quote", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "edit_payment", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "edit_task", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e07\u0e32\u0e19", "edit_expense", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "edit_vendor", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "edit_project", "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", _s22_, "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e1b\u0e23\u0e30\u0e08\u0e33", _s20_47, _s20_48, "billing_address", "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", _s16_164, _s16_165, "total_revenue", "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e23\u0e27\u0e21", "average_invoice", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", "outstanding", "\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19", "invoices_sent", _s20_110, "active_clients", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "close", "\u0e1b\u0e34\u0e14", "email", "\u0e2d\u0e35\u0e40\u0e21\u0e25", "password", "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19", "url", "URL", "secret", "Secret", "name", "\u0e0a\u0e37\u0e48\u0e2d", "logout", "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e23\u0e30\u0e1a\u0e1a", "login", "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a", "filter", "\u0e01\u0e23\u0e2d\u0e07", "sort", "Sort", "search", "\u0e04\u0e49\u0e19\u0e2b\u0e32", "active", "\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48", "archived", "\u0e40\u0e01\u0e47\u0e1a\u0e16\u0e32\u0e27\u0e23", "deleted", "\u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27", "dashboard", "\u0e41\u0e14\u0e0a\u0e1a\u0e2d\u0e23\u0e4c\u0e14", "archive", "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e01\u0e48\u0e32", "delete", "\u0e25\u0e1a", "restore", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", _s17_100, _s17_101, "paid_to_date", "\u0e22\u0e2d\u0e14\u0e0a\u0e33\u0e23\u0e30\u0e41\u0e25\u0e49\u0e27", "balance_due", "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", "balance", "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d", "overview", "Overview", "details", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", "phone", "\u0e42\u0e17\u0e23.", "website", "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", "vat_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e20\u0e32\u0e29\u0e35", "id_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e15\u0e31\u0e27\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e0a\u0e19", "create", "\u0e2a\u0e23\u0e49\u0e32\u0e07", _s19_42, _s30_12, "error", "Error", _s16_168, _s16_169, "contacts", "\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "additional", "Additional", "first_name", "\u0e0a\u0e37\u0e48\u0e2d", "last_name", "\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25", "add_contact", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "are_you_sure", "\u0e41\u0e19\u0e48\u0e43\u0e08\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?", "cancel", "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", "ok", "Ok", "remove", "\u0e40\u0e2d\u0e32\u0e2d\u0e2d\u0e01", _s16_170, _s16_171, "product", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "products", "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", "new_product", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e2b\u0e21\u0e48", "created_product", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", "updated_product", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s16_172, "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08", "deleted_product", "\u0e25\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e49\u0e27", _s16_173, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e49\u0e27", _s17_102, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :count \u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", _s16_174, "\u0e25\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 :count \u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", _s17_103, _s37_11, "product_key", "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", "notes", "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", "cost", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "client", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "clients", "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "new_client", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "created_client", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_client", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_client", "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_175, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27: \u0e19\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "deleted_client", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_clients", "\u0e25\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "restored_client", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_176, _s36_7, "address1", "\u0e16\u0e19\u0e19", "address2", "\u0e2d\u0e32\u0e04\u0e32\u0e23", "city", "\u0e2d\u0e33\u0e40\u0e20\u0e2d", "state", "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14", "postal_code", "\u0e23\u0e2b\u0e31\u0e2a\u0e44\u0e1b\u0e23\u0e29\u0e13\u0e35\u0e22\u0e4c", "country", "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", "invoice", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoices", "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "new_invoice", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "created_invoice", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_invoice", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27", _s16_177, "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_invoice", "\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_178, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_104, "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_179, "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s17_105, _s37_12, "emailed_invoice", "\u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "emailed_payment", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "amount", "\u0e22\u0e2d\u0e14\u0e40\u0e07\u0e34\u0e19", "invoice_number", "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "invoice_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", "discount", "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14", "po_number", "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", "terms", "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", "public_notes", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e41\u0e1a\u0e1a\u0e40\u0e1b\u0e34\u0e14", "private_notes", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e20\u0e32\u0e22\u0e43\u0e19", "frequency", "\u0e04\u0e27\u0e32\u0e21\u0e16\u0e35\u0e48", "start_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21", "end_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", "quote_number", "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quote_date", "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", "valid_until", "\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", "items", "Items", "partial_deposit", "Partial/Deposit", "description", "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", "unit_cost", "\u0e23\u0e32\u0e04\u0e32\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22", "quantity", "\u0e08\u0e33\u0e19\u0e27\u0e19", "add_item", "Add Item", "contact", "\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", "work_phone", "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\u0e27\u0e31\u0e19\u0e16\u0e36\u0e07\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e0a\u0e33\u0e23\u0e30", _s16_180, _s16_181, "status", "\u0e2a\u0e16\u0e32\u0e19\u0e30", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, "\u0e04\u0e25\u0e34\u0e4a\u0e01\u0e1b\u0e38\u0e48\u0e21 + \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", "count_selected", ":count selected", "total", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "percent", "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e19\u0e15\u0e4c", "edit", "\u0e41\u0e01\u0e49\u0e44\u0e02", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", "language", "Language", "currency", "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "\u0e20\u0e32\u0e29\u0e35", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "\u0e14\u0e23\u0e32\u0e1f", "sent", "\u0e2a\u0e48\u0e07", "viewed", "Viewed", "approved", "Approved", "partial", "\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19 / \u0e40\u0e07\u0e34\u0e19\u0e1d\u0e32\u0e01", "paid", "\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "mark_sent", "\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e44\u0e27\u0e49", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", _s37_13, _s37_14, "dark_mode", "\u0e42\u0e2b\u0e21\u0e14\u0e01\u0e25\u0e32\u0e07\u0e04\u0e37\u0e19", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", _s16_182, _s16_183, "clone", "\u0e17\u0e33\u0e0b\u0e49\u0e33", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30", "payment_date", "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e08\u0e48\u0e32\u0e22", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "Portal \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "\u0e40\u0e1b\u0e34\u0e14", "recipients", "\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", "initial_email", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", "first_reminder", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e23\u0e31\u0e49\u0e07\u0e41\u0e23\u0e01", "second_reminder", "\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e04\u0e23\u0e31\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e07", "third_reminder", "Third Reminder", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "\u0e41\u0e1a\u0e1a", "send", "Send", "subject", "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", "body", "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", "send_email", "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", "email_receipt", "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", "auto_billing", "Auto billing", "button", "Button", "preview", "\u0e14\u0e39\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", "customize", "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07", "history", "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34", "payment", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "payments", "\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "refunded", "Refunded", "payment_type", "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s21_57, "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", "enter_payment", "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19", "new_payment", "\u0e1b\u0e49\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", "created_payment", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "updated_payment", "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", _s16_190, "\u0e40\u0e01\u0e47\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "deleted_payment", "\u0e25\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s16_191, "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", _s17_109, "\u0e40\u0e01\u0e47\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s16_192, "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27 :count \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", _s17_110, _s37_15, "quote", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "quotes", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "new_quote", "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e21\u0e48", "created_quote", "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "updated_quote", "\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "archived_quote", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "deleted_quote", "\u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "restored_quote", "\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22\u0e41\u0e25\u0e49\u0e27", "archived_quotes", "\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "deleted_quotes", "\u0e25\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22 :count \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", "restored_quotes", _s35_13, "expense", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "expenses", "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", "vendor", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "vendors", "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", "task", "\u0e07\u0e32\u0e19", "tasks", "\u0e07\u0e32\u0e19", "project", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", "projects", "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", "activity_1", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 :client", "activity_2", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :client", "activity_3", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 :client", "activity_4", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_5", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user \u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_9", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_10", _s85_0, "activity_11", ":user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e49\u0e27 :payment", "activity_12", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19 :payment", "activity_13", ":user \u0e25\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19 :payment", "activity_14", ":user \u0e1b\u0e49\u0e2d\u0e19 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_15", ":user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_16", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_17", ":user \u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_18", ":user \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_19", ";user \u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_20", _s50_4, "activity_21", ":contact \u0e14\u0e39\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_22", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_23", ":user \u0e25\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_24", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 :quote", "activity_25", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 :invoice", "activity_26", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19 \u0e25\u0e39\u0e01\u0e04\u0e49\u0e32 :client", "activity_27", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_28", ":user \u0e01\u0e39\u0e49\u0e04\u0e37\u0e19 :credit \u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", "activity_29", _s42_9, "activity_30", ":user \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_31", ":user \u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_32", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_33", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22 :vendor", "activity_34", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_35", ":user \u0e44\u0e14\u0e49\u0e40\u0e01\u0e47\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_36", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_37", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_39", ":user \u0e22\u0e01\u0e40\u0e25\u0e34\u0e01 :payment_amount \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_40", ":usre \u0e04\u0e37\u0e19\u0e40\u0e07\u0e34\u0e19 :adjustment\xa0\u0e02\u0e2d\u0e07 :payment_amount \u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 :payment", "activity_41", ":payment_amount \u0e08\u0e48\u0e32\u0e22\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 (:payment) \u0e25\u0e49\u0e21\u0e40\u0e2b\u0e25\u0e27", "activity_42", ":user \u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19 :task", "activity_43", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e07\u0e32\u0e19 :task", "activity_44", ":user \u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e07\u0e32\u0e19 :task", "activity_45", ":user \u0e44\u0e14\u0e49\u0e25\u0e1a\u0e07\u0e32\u0e19 :task", "activity_46", ":user \u0e44\u0e14\u0e49\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e07\u0e32\u0e19 :task", "activity_47", ":user \u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e15\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22 :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e35\u0e22\u0e1a\u0e23\u0e49\u0e2d\u0e22", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38", "all", "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", "select", "\u0e40\u0e25\u0e37\u0e2d\u0e01", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "\u0e01\u0e32\u0e23\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s20_52, _s20_53, _s20_54, "\u0e01\u0e32\u0e23\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "\u0e0a\u0e19\u0e34\u0e14", "invoice_amount", "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", _s16_197, "\u0e27\u0e31\u0e19\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "\u0e1a\u0e34\u0e25\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "\u0e0a\u0e37\u0e48\u0e2d\u0e20\u0e32\u0e29\u0e35", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\u0e22\u0e2d\u0e14\u0e08\u0e48\u0e32\u0e22", "age", "\u0e2d\u0e32\u0e22\u0e38", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", _s19_49, _s19_50, _s16_198, "\u0e2b\u0e21\u0e27\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1), "tr_TR", P.LinkedHashMap_LinkedHashMap$_literal(["import_data", "Verileri \u0130\xe7e Aktar", "import_settings", "Import Settings", _s17_, _s28_, _s19_, _s48_, "json", "JSON", _s24_, _s24_0, "wait_for_data", _s42_, "net_total", "Net Total", "has_taxes", "Has Taxes", _s16_, _s16_0, _s18_1, _s40_, "login_success", _s16_1, "login_failure", "Failed Login", "exported_data", _s67_, _s23_, _s23_0, _s28_0, _s41_, "step_1_sign_in", "Step 1: Sign In", _s16_2, _s17_0, "account_id", "Account ID", _s27_, _s35_, "activity_100", _s50_, "activity_101", _s50_0, "activity_102", _s51_, "activity_103", _s50_1, "activity_104", _s51_0, _s18_2, _s18_3, _s23_1, _s35_0, "gateway_setup", "Gateway Setup", "preview_sidebar", "Preview Sidebar", _s16_3, _s16_4, _s18_4, _s31_, _s16_5, _s16_6, "count_session", "1 Session", "count_sessions", ":count Sessions", "invoice_created", "Invoice Created", "quote_created", "Quote Created", "credit_created", "Credit Created", "pro", "Pro", "enterprise", "Enterprise", "last_updated", "Last Updated", "invoice_item", "Invoice Item", "quote_item", "Quote Item", _s18_5, _s18_6, _s17_1, _s17_2, "order", "Order", "unassigned", "Unassigned", "partial_value", "S\u0131f\u0131rdan b\xfcy\xfck olmal\u0131 ve toplamdan daha az olmal\u0131", "search_kanban", "Search Kanban", "search_kanbans", "Search Kanban", "kanban", "Kanban", "enable", "Etkinle\u015ftir", "move_top", "Move Top", "move_up", "Move Up", "move_down", "Move Down", "move_bottom", "Move Bottom", "subdomain_help", _s61_2, _s21_, _s53_, _s25_, _s37_, _s17_3, _s17_4, "is_viewed", "Is Viewed", "letter", "Letter", "legal", "Legal", "page_layout", "Page Layout", "portrait", "Portrait", "landscape", "Landscape", _s26_, _s85_, _s20_, _s54_, _s21_0, _s21_1, _s17_5, _s17_6, "no_headers", "No Headers", "add_header", "Add Header", "remove_header", "Remove Header", "return_url", "Return URL", "rest_method", "REST Method", "header_key", "Header Key", "header_value", "Header Value", _s18_7, _s18_8, "promo_code", "Promo code", "promo_discount", "Promo Discount", _s18_9, _s18_10, _s16_7, _s16_8, "max_seats_limit", "Max Seats Limit", "trial_enabled", "Trial Enabled", "trial_duration", "Trial Duration", _s21_2, _s21_3, _s18_11, _s18_12, "plan_map", "Plan Map", "refund_period", "Refund Period", _s21_4, _s21_5, "purchase_page", "Purchase Page", "security", "Security", "email_bounced", "Email Bounced", _s20_0, "Spam Complaint", "email_delivery", "Email Delivery", _s16_9, _s16_10, "pdf_response", "PDF Response", _s22_1, _s22_2, "pdf_failed", "PDF Failed", "pdf_success", "PDF Success", "modified", "Modified", "subscription", "Subscription", "subscriptions", "Subscriptions", _s16_11, _s16_12, _s17_7, _s17_8, _s20_1, _s33_, _s20_2, _s33_0, _s21_6, _s34_, _s20_3, _s33_1, _s20_4, _s33_2, _s21_7, _s34_0, _s19_0, _s21_8, _s20_5, _s27_0, _s26_0, _s26_1, "connect_gmail", "Connect Gmail", _s16_13, _s16_14, "connected_gmail", _s28_1, _s18_13, _s31_0, _s16_15, _s100_, _s16_16, _s16_17, "count_minutes", ":count Minutes", _s16_18, _s16_19, _s29_, _s29_0, "use_last_email", "Use last email", _s16_20, _s16_21, _s21_9, _s51_1, _s27_1, _s35_1, _s27_2, _s27_3, _s34_1, _s52_, "help_translate", "Help Translate", _s23_2, _s23_3, "resend_invite", _s17_117, _s19_1, _s25_0, _s16_22, _s30_, _s19_2, _s33_3, "delivered", "Delivered", "bounced", "Bounced", "spam", "Spam", "view_docs", "View Docs", _s32_, _s72_, "send_sms", "Send SMS", "sms_code", "SMS Code", _s21_10, _s46_, _s18_14, _s46_0, "connect_google", "Connect Google", _s17_9, _s17_10, _s17_11, _s25_43, _s18_15, _s18_16, _s34_2, _s34_3, "stay_logged_in", "Stay Logged In", _s23_4, _s40_0, "count_hours", ":count Hours", "count_day", "1 Day", "count_days", ":count Days", _s19_3, _s19_4, _s17_12, _s17_13, "resend_email", "Resend Email", _s26_2, _s33_4, _s16_23, _s16_209, _s19_5, _s19_6, _s19_7, _s45_, "list_long_press", "List Long Press", "show_actions", "Show Actions", _s17_14, _s17_15, _s27_4, _s51_2, _s21_11, _s97_, "this_quarter", "This Quarter", "last_quarter", "Last Quarter", "to_update_run", "To update run", _s18_17, "Faturaya D\xf6n\xfc\u015ft\xfcr", _s16_24, _s16_25, "invoice_project", "Invoice Project", "invoice_task", "Fatura G\xf6revi", "invoice_expense", "Gider Faturas\u0131", _s19_8, _s21_12, _s20_6, _s27_5, _s16_26, _s16_27, "save_and_email", "Save and Email", _s16_28, _s16_29, _s16_30, _s16_31, _s17_16, _s17_17, _s22_3, _s22_4, _s24_1, _s24_2, "converted_total", "Converted Total", "is_sent", "Is Sent", _s17_18, _s17_19, "document_upload", "Document Upload", _s20_7, _s34_4, "expense_total", "Expense Total", "enter_taxes", "Enter Taxes", "by_rate", "By Rate", "by_amount", "By Amount", "enter_amount", "Enter Amount", "before_taxes", "Before Taxes", "after_taxes", "After Taxes", "color", "Color", "show", "Show", "hide", "Gizle", "empty_columns", "Empty Columns", _s21_13, _s21_14, _s26_3, _s96_, "running_tasks", "Running Tasks", "recent_tasks", "Recent Tasks", "recent_expenses", "Recent Expenses", _s17_20, _s17_21, "update_app", "Update App", "started_import", _s27_6, _s24_3, _s24_4, _s20_8, _s20_9, _s18_19, _s18_20, "column", "S\xfctun", "sample", "\xd6rnek", "map_to", "Map To", "import", "\u0130\xe7e Aktar", _s25_1, _s29_1, "select_file", "L\xfctfen bir dosya se\xe7in", _s16_32, _s16_33, "csv_file", "CSV dosya", "csv", "CSV", "freshbooks", "FreshBooks", "invoice2go", "Invoice2go", "invoicely", "Invoicely", "waveaccounting", "Wave Accounting", "zoho", "Zoho", "accounting", "Accounting", _s22_5, _s24_5, "import_type", "Import Type", "html_mode", "HTML Mode", "html_mode_help", _s43_, "view_licenses", "View Licenses", "webhook_url", "Webhook URL", _s17_22, _s17_23, "sidebar_editor", "Sidebar Editor", _s22_6, _s31_12, "purge", "Purge", "service", "Service", "clone_to", "Clone To", "clone_to_other", "Clone to Other", "labels", "Labels", "add_custom", "Add Custom", "payment_tax", "Payment Tax", "unpaid", "Unpaid", "white_label", "White Label", "delivery_note", "Delivery Note", _s24_6, _s24_7, _s24_8, _s24_9, "source_code", "Source Code", "app_platforms", "App Platforms", "invoice_late", "Invoice Late", "quote_expired", "Quote Expired", "partial_due", "Partial Due", "invoice_total", "Fatura Toplam", "quote_total", "Teklif Toplam", "credit_total", "Credit Total", _s23_5, "Invoice Total", "actions", "Actions", "expense_number", "Expense Number", "task_number", "Task Number", "project_number", "Project Number", "project_name", "Project Name", "warning", "Warning", "view_settings", "View Settings", _s24_10, _s48_0, "late_invoice", "Late Invoice", "expired_quote", "Expired Quote", "remind_invoice", "Remind Invoice", "cvv", "CVV", "client_name", "M\xfc\u015fteri Ad\u0131", "client_phone", "Client Phone", "required_fields", "Required Fields", "calculated_rate", "Calculated Rate", _s17_24, _s17_25, "clear_cache", "Clear Cache", "sort_order", "Sort Order", "task_status", "Status", "task_statuses", "Task Statuses", "new_task_status", "New Task Status", _s16_34, _s16_35, _s19_9, _s32_0, _s19_10, _s31_13, _s20_10, _s33_5, _s19_11, _s32_1, _s19_12, _s32_2, _s20_11, _s33_6, _s22_7, _s42_0, _s21_15, _s41_0, _s22_8, _s42_1, _s18_21, _s20_12, _s20_13, _s27_7, _s16_36, _s16_37, _s21_16, _s52_0, _s20_14, _s20_15, _s25_2, _s42_2, _s20_16, _s20_17, _s25_3, _s42_3, _s21_17, _s25_4, _s18_22, _s18_23, "task_settings", "Task Settings", _s20_18, _s20_19, _s18_24, "Gider Kategorisi", _s20_20, "Yeni Gider Kategorisi", _s21_18, _s21_19, _s24_11, _s37_0, _s24_12, _s37_1, _s25_5, _s38_, _s24_13, _s29_35, _s24_14, _s37_2, _s25_6, _s38_0, _s27_8, _s45_2, _s26_4, _s46_1, _s27_9, _s47_, _s23_6, _s25_7, _s25_8, _s32_3, _s21_20, _s21_21, "show_option", "Show Option", _s22_9, _s50_3, "view_changes", "View Changes", "force_update", "Force Update", _s17_26, _s76_, "mark_paid_help", _s31_1, _s18_26, "Faturalanmal\u0131 m\u0131", _s23_7, _s33_7, _s29_2, _s26_35, _s21_22, _s20_22, _s16_38, _s16_39, _s18_27, _s18_28, "crypto", "Crypto", "paypal", "PayPal", "alipay", "Alipay", "sofort", "Sofort", "apple_pay", _s16_199, "user_field", "User Field", "variables", "Variables", "show_password", "Show Password", "hide_password", "Hide Password", "copy_error", "Copy Error", "capture_card", "Capture Card", _s17_27, _s17_28, "total_taxes", "Total Taxes", "line_taxes", "Line Taxes", "total_fields", "Total Fields", _s25_9, _s38_1, _s25_10, _s38_2, _s25_11, _s38_3, "gateway_refund", "Gateway Refund", _s19_13, _s43_0, "due_date_days", "Due Date", "paused", "Paused", "mark_active", "Mark Active", "day_count", "Day :count", _s22_10, _s22_11, _s21_23, _s21_24, _s17_29, _s17_30, "endless", "Endless", "next_send_date", "Next Send Date", _s16_40, _s16_41, _s17_31, "Tekrarlayan Fatura", _s18_29, "Tekrarlayan Faturalar", _s21_25, "Yeni Tekrarlayan Fatura", _s22_12, _s22_13, _s25_12, _s38_4, _s25_13, _s38_5, _s26_5, "Tekrarlayan fatura ba\u015far\u0131yla ar\u015fivlendi", _s25_14, "Tekrarlayan fatura ba\u015far\u0131yla silindi", _s25_15, _s38_7, _s26_6, "Tekrarlayan fatura ba\u015far\u0131yla geri y\xfcklendi", _s27_10, _s47_0, _s26_7, _s46_2, _s27_11, _s47_1, _s24_15, _s26_8, _s25_16, _s32_4, "send_date", "Send Date", "auto_bill_on", "Auto Bill On", _s28_2, _s28_3, "profit", "Profit", "line_item", "Line Item", _s18_31, _s18_32, _s23_8, _s35_2, _s19_14, _s19_15, _s24_16, _s52_1, "test_mode", "Test Mode", "opened", "Opened", _s30_0, _s22_14, _s30_1, _s22_15, "gateway_success", "Gateway Success", "gateway_failure", "Gateway Failure", "gateway_error", "Gateway Error", "email_send", "Email Send", _s17_33, _s17_34, "failure", "Failure", "quota_exceeded", "Quota Exceeded", _s16_42, _s16_43, "system_logs", "System Logs", "view_portal", "View Portal", "copy_link", "Copy Link", "token_billing", "Kart bilgilerini sakla", _s24_17, _s24_18, "always", "Always", "optin", "Opt-In", "optout", "Opt-Out", "label", "Label", "client_number", "Client Number", "auto_convert", "Auto Convert", "company_name", "\u015eirket Ad\u0131", "reminder1_sent", "Reminder 1 Sent", "reminder2_sent", "Reminder 2 Sent", "reminder3_sent", "Reminder 3 Sent", _s18_33, _s18_34, "pdf_page_info", _s23_9, _s16_44, _s29_36, "emailed_quotes", _s27_43, "emailed_credits", _s28_52, "gateway", "Gateway", "view_in_stripe", "View in Stripe", "rows_per_page", "Rows Per Page", "hours", "Saat", "statement", "Statement", "taxes", "Vergiler", "surcharge", "Surcharge", "apply_payment", "Apply Payment", "apply", "Apply", "unapplied", "Unapplied", "select_label", "Select Label", "custom_labels", "Custom Labels", "record_type", "Record Type", "record_name", "Record Name", "file_type", "File Type", "height", "Height", "width", "Width", "to", "Kime", "health_check", "Health Check", "payment_type_id", "\xd6deme T\xfcr\xfc", "last_login_at", "Last Login At", "company_key", "Company Key", "storefront", "Storefront", "storefront_help", _s42_4, "client_created", "Client Created", _s20_23, _s20_24, _s20_25, _s20_26, "completed", "Completed", "gross", "Gross", "net_amount", "Net Amount", "net_balance", "Net Balance", "client_settings", "Client Settings", _s17_35, _s17_36, _s17_37, _s17_38, "selected_quotes", "Selected Quotes", "selected_tasks", "Selected Tasks", _s17_39, _s17_40, _s17_41, "Yakla\u015fan Faturalar", _s17_43, _s17_44, "recent_payments", "Son \xd6demeler", "upcoming_quotes", "Tarihi Yakla\u015fan Teklifler", "expired_quotes", "Tarihi Dolan Teklifler", "create_client", "Create Client", "create_invoice", "Fatura Olu\u015ftur", "create_quote", "Teklif Olu\u015ftur", "create_payment", "Create Payment", "create_vendor", "Create vendor", "update_quote", "Update Quote", "delete_quote", "Teklif Sil", "update_invoice", "Update Invoice", "delete_invoice", "Faturay\u0131 Sil", "update_client", "Update Client", "delete_client", "M\xfc\u015fteri Sil", "delete_payment", "\xd6deme Sil", "update_vendor", "Update Vendor", "delete_vendor", "Tedarik\xe7iyi Sil", "create_expense", "Create Expense", "update_expense", "Update Expense", "delete_expense", "Gider Sil", "create_task", "G\xf6rev Olu\u015ftur", "update_task", "Update Task", "delete_task", "G\xf6rev Sil", "approve_quote", "Approve Quote", "off", "Off", "when_paid", "When Paid", "expires_on", "Expires On", "free", "\xdccretsiz", "plan", "Plan", "show_sidebar", "Show Sidebar", "hide_sidebar", "Hide Sidebar", "event_type", "Event Type", "target_url", "Target", "copy", "Copy", "must_be_online", _s53_0, _s17_45, _s28_4, "api_webhooks", "API Webhooks", "search_webhooks", _s22_16, "search_webhook", _s16_45, "webhook", "Webhook", "webhooks", "Webhooks", "new_webhook", "New Webhook", "edit_webhook", "Edit Webhook", "created_webhook", _s28_5, "updated_webhook", _s28_6, _s16_46, _s29_3, "deleted_webhook", _s28_7, "removed_webhook", _s28_8, _s16_47, _s29_4, _s17_46, _s37_3, _s16_48, _s36_, _s16_49, _s36_0, _s17_47, _s37_4, "api_tokens", "API Tokenlar\u0131", "api_docs", "API Docs", "search_tokens", _s20_27, "search_token", "Search 1 Token", "token", "Token", "tokens", "Tokenlar", "new_token", "New Token", "edit_token", "Token d\xfczenle", "created_token", "Token ba\u015far\u0131yla olu\u015fturuldu", "updated_token", "Token ba\u015far\u0131yla g\xfcncellendi", "archived_token", "Token ba\u015far\u0131yla ar\u015fivlendi", "deleted_token", "Token ba\u015far\u0131yla silindi", "removed_token", _s26_12, "restored_token", _s27_13, "archived_tokens", _s35_3, "deleted_tokens", _s34_5, "restored_tokens", _s35_4, _s19_16, _s19_17, _s24_19, _s45_0, _s21_27, _s19_18, "email_invoice", "Faturay\u0131 E-Posta ile g\xf6nder", "email_quote", "Teklifi E-Posta ile G\xf6nder", "email_credit", "Email Credit", "email_payment", "Email Payment", _s20_28, _s41_1, "ledger", "Ledger", "view_pdf", "View PDF", "all_records", "All records", "owned_by_user", "Owned by user", _s16_50, _s16_51, "contact_name", "Contact Name", "use_default", "Use default", _s16_52, _s17_48, "number_of_days", "Number of days", _s23_10, _s23_11, "payment_term", "Payment Term", _s16_53, _s16_54, _s17_49, _s17_50, _s20_29, _s33_8, _s20_30, _s33_9, _s21_28, _s34_6, _s20_31, _s33_10, _s20_32, _s33_11, _s21_29, _s34_7, _s22_17, _s42_5, _s21_30, _s41_2, _s22_18, _s42_6, "email_sign_in", _s16_55, "change", "Change", _s23_12, _s28_9, _s24_20, _s29_5, "send_from_gmail", "Send from Gmail", "reversed", "Reversed", "cancelled", "Cancelled", "credit_amount", "Kredi Tutar\u0131", "quote_amount", "Quote Amount", "hosted", "Hosted", "selfhosted", "Self-Hosted", "exclusive", "Exclusive", "inclusive", "Inclusive", "hide_menu", "Hide Menu", "show_menu", "Show Menu", _s18_35, _s18_36, _s16_56, _s16_200, "search_designs", "Search Designs", "search_invoices", "Search Invoices", "search_clients", "Search Clients", "search_products", "Search Products", "search_quotes", "Search Quotes", "search_credits", "Search Credits", "search_vendors", "Search Vendors", "search_users", "Search Users", _s16_57, _s16_201, "search_tasks", "Search Tasks", "search_settings", "Search Settings", "search_projects", "Search Projects", "search_expenses", "Search Expenses", "search_payments", "Search Payments", "search_groups", "Search Groups", "search_company", "Search Company", "search_document", _s17_51, "search_design", "Search 1 Design", "search_invoice", _s16_58, "search_client", "Search 1 Client", "search_product", _s16_59, "search_quote", "Search 1 Quote", "search_credit", "Search 1 Credit", "search_vendor", "Search 1 Vendor", "search_user", "Search 1 User", "search_tax_rate", _s17_52, "search_task", "Search 1 Tasks", "search_project", _s16_60, "search_expense", _s16_61, "search_payment", _s16_62, "search_group", "Search 1 Group", "refund_payment", "Refund Payment", _s17_53, _s30_2, _s18_37, _s31_2, _s16_63, _s29_6, _s17_54, _s30_3, "reverse", "Reverse", "full_name", "Full Name", _s17_55, _s17_56, _s17_57, _s17_58, "custom1", "First Custom", "custom2", "Second Custom", "custom3", "Third Custom", "custom4", "Fourth Custom", "optional", "Optional", "license", "License", "purge_data", "Purge Data", _s16_64, _s32_5, _s18_38, _s65_, "invoice_balance", "Invoice Balance", "age_group_0", "0 - 30 Days", "age_group_30", "30 - 60 Days", "age_group_60", "60 - 90 Days", "age_group_90", "90 - 120 Days", "age_group_120", "120+ Days", "refresh", "Refresh", "saved_design", _s25_17, "client_details", "Client Details", "company_address", "Company Address", "invoice_details", "Invoice Details", "quote_details", "Quote Details", "credit_details", "Credit Details", "product_columns", "Product Columns", "task_columns", "Task Columns", "add_field", "Add Field", "all_events", "All Events", "permissions", "Permissions", "none", "None", "owned", "Owned", "payment_success", "Payment Success", "payment_failure", "Payment Failure", "invoice_sent", _s24_69, "quote_sent", "Quote Sent", "credit_sent", "Credit Sent", "invoice_viewed", "Invoice Viewed", "quote_viewed", "Quote Viewed", "credit_viewed", "Credit Viewed", "quote_approved", "Quote Approved", _s25_18, _s25_19, _s16_65, _s16_66, "apply_license", "Apply License", "cancel_account", "Hesab\u0131 Sil", _s22_19, _s69_0, "delete_company", "Delete Company", _s22_20, _s69_, "enabled_modules", "Enabled Modules", "converted_quote", _s28_10, "credit_design", "Credit Design", "includes", "Includes", "header", "\xdcstbilgi", "load_design", "Load Design", "css_framework", "CSS Framework", "custom_designs", "Custom Designs", "designs", "Designs", "new_design", "New Design", "edit_design", "Edit Design", "created_design", _s27_14, "updated_design", _s27_15, "archived_design", _s28_11, "deleted_design", _s27_16, "removed_design", _s27_17, "restored_design", _s28_12, _s16_67, _s36_1, "deleted_designs", _s35_5, _s16_68, _s36_2, "proposals", "Proposals", "tickets", "Tickets", _s16_69, "Tekrarlayan Fiyat Teklifleri", "recurring_tasks", "Recurring Tasks", _s18_, _s18_0, _s18_39, _s18_40, "credit_date", "Kredi Tarihi", "credit", "Kredi", "credits", "Krediler", "new_credit", "Kredi Gir", "edit_credit", "Edit Credit", "created_credit", "Kredi ba\u015far\u0131yla olu\u015fturuldu", "updated_credit", _s27_19, "archived_credit", "Kredi ba\u015far\u0131yla ar\u015fivlendi", "deleted_credit", "Kredi ba\u015far\u0131yla silindi", "removed_credit", _s27_21, "restored_credit", "Kredi Ba\u015far\u0131yla Geri Y\xfcklendi", _s16_71, ":count kredi ar\u015fivlendi", "deleted_credits", ":count kredi ba\u015far\u0131yla silindi", _s16_72, _s36_3, "current_version", "Mevcut version", "latest_version", "Latest Version", "update_now", "Update Now", _s26_13, _s41_3, _s16_73, _s16_74, "app_updated", _s29_7, "learn_more", "Daha fazla bilgi edin", "integrations", "Integrations", "tracking_id", "Tracking Id", _s17_59, _s17_60, "credit_footer", "Credit Footer", "credit_terms", "Credit Terms", "new_company", "Yeni Firma", "added_company", _s26_14, "company1", _s16_75, "company2", _s16_76, "company3", _s16_77, "company4", _s16_78, "product1", _s16_79, "product2", _s16_80, "product3", _s16_81, "product4", _s16_82, "client1", "Custom Client 1", "client2", "Custom Client 2", "client3", "Custom Client 3", "client4", "Custom Client 4", "contact1", _s16_83, "contact2", _s16_84, "contact3", _s16_85, "contact4", _s16_86, "task1", "Custom Task 1", "task2", "Custom Task 2", "task3", "Custom Task 3", "task4", "Custom Task 4", "project1", _s16_87, "project2", _s16_88, "project3", _s16_89, "project4", _s16_90, "expense1", _s16_91, "expense2", _s16_92, "expense3", _s16_93, "expense4", _s16_94, "vendor1", "Custom Vendor 1", "vendor2", "Custom Vendor 2", "vendor3", "Custom Vendor 3", "vendor4", "Custom Vendor 4", "invoice1", _s16_95, "invoice2", _s16_96, "invoice3", _s16_97, "invoice4", _s16_98, "payment1", _s16_99, "payment2", _s16_100, "payment3", _s16_101, "payment4", _s16_102, "surcharge1", _s18_41, "surcharge2", _s18_42, "surcharge3", _s18_43, "surcharge4", _s18_44, "group1", "Custom Group 1", "group2", "Custom Group 2", "group3", "Custom Group 3", "group4", "Custom Group 4", "reset", "S\u0131f\u0131rla", "number", "Number", "export", "D\u0131\u015fa Aktar", "chart", "Grafik", "count", "Count", "totals", "Toplamlar", "blank", "Blank", "day", "Day", "month", "Month", "year", "Year", "subgroup", "Subgroup", "is_active", "Is Active", "group_by", "Grupland\u0131r", "credit_balance", "Kredi Bakiyesi", _s18_45, _s18_46, _s17_61, _s17_62, "contact_phone", "Contact Phone", _s21_31, _s22_21, _s21_32, _s22_22, _s21_33, _s22_23, _s21_34, _s22_24, _s17_63, "Shipping Street", _s17_64, _s18_47, "shipping_city", "Shipping City", "shipping_state", _s23_13, _s20_33, _s20_34, _s16_103, _s16_104, _s16_105, "Billing Street", _s16_106, _s17_65, "billing_city", "Billing City", "billing_state", _s22_25, _s19_19, _s19_20, "billing_country", "Billing Country", "client_id", "Client Id", "assigned_to", "Assigned to", "created_by", _s16_202, "assigned_to_id", "Assigned To Id", "created_by_id", "Created By Id", "add_column", "Add Column", "edit_columns", "Edit Columns", "columns", "Columns", "aging", "Aging", "profit_and_loss", "Profit and Loss", "reports", "Reports", "report", "Rapor", "add_company", "Firma Ekle", "unpaid_invoice", "Unpaid Invoice", "paid_invoice", "Paid Invoice", _s16_107, _s16_108, "help", "Yard\u0131m", "refund", "Refund", "refund_date", "Refund Date", "filtered_by", "Filtered by", "contact_email", "Contact Email", "multiselect", "Multiselect", "entity_state", "Durum", "verify_password", "Verify Password", "applied", "Applied", _s21_35, _s35_6, _s30_4, _s63_, "message", "Mesaj", "from", "Kimden", _s20_35, _s20_36, _s25_20, _s56_, _s20_37, _s34_8, _s18_48, _s18_49, _s23_14, _s33_16, _s18_50, _s18_51, "support_forum", "destek forum", "about", "About", "documentation", "Belgeler", "contact_us", "Contact Us", "subtotal", "Aratoplam", "line_total", "Tutar", "item", "\xd6\u011fe", "credit_email", "Credit Email", "iframe_url", "Web adresi", "domain_url", "Domain URL", _s21_36, _s21_78, _s20_38, _s58_, _s19_21, _s19_22, _s23_15, _s23_16, _s20_39, _s20_40, "deleted_logo", _s25_21, "yes", "Evet", "no", "Hay\u0131r", "generate_number", "Generate Number", "when_saved", "When Saved", "when_sent", "When Sent", "select_company", "Select Company", "float", "Float", "collapse", "Collapse", "show_or_hide", "Show/hide", "menu_sidebar", "Menu Sidebar", "history_sidebar", "History Sidebar", "tablet", "Tablet", "mobile", "Mobile", "desktop", "Desktop", "layout", "Layout", "view", "G\xf6r\xfcnt\xfcle", "module", "Module", "first_custom", "First Custom", "second_custom", "Second Custom", "third_custom", "Third Custom", "show_cost", "Show Cost", _s17_66, _s17_67, "show_cost_help", _s55_, _s21_37, _s21_38, _s26_15, _s58_0, _s21_39, _s21_40, _s26_16, _s60_, _s21_41, _s21_42, _s26_17, _s34_9, _s16_109, _s16_110, _s21_43, _s47_2, "one_tax_rate", "One Tax Rate", "two_tax_rates", "Two Tax Rates", "three_tax_rates", "Three Tax Rates", _s16_111, _s16_112, "user", "Kullan\u0131c\u0131", "invoice_tax", "Invoice Tax", "line_item_tax", "Line Item Tax", "inclusive_taxes", "Inclusive Taxes", _s17_68, _s17_69, "item_tax_rates", "Item Tax Rates", _s18_52, _s22_35, "configure_rates", "Configure rates", _s18_53, _s18_54, "tax_settings", "Vergi Ayarlar\u0131", _s18_55, "Tax Rates", "accent_color", "Accent Color", "switch", "Switch", _s19_23, _s20_41, "options", "Options", _s16_113, _s16_114, "multi_line_text", "Multi-line text", "dropdown", "Dropdown", "field_type", "Field Type", _s27_22, _s39_1, "submit", "Submit", _s16_115, "\u015eifreni kurtar", "late_fees", "Late Fees", "credit_number", "Credit Number", "payment_number", "Payment Number", "late_fee_amount", "Late Fee Amount", _s16_116, _s16_117, "schedule", "program", "before_due_date", _s19_24, "after_due_date", _s18_56, _s18_57, _s22_26, "days", "Days", "invoice_email", "Fatura E-postas\u0131", "payment_email", "\xd6deme E-postas\u0131", "partial_payment", "Partial Payment", "payment_partial", "Partial Payment", _s21_44, _s21_45, "quote_email", "Teklif E-postas\u0131", _s16_118, _s16_119, _s16_120, _s16_121, "administrator", "Administrator", _s18_58, _s66_, "user_management", "Kullan\u0131c\u0131 y\xf6netimi", "users", "Kullan\u0131c\u0131lar", "new_user", "Yeni Kullan\u0131c\u0131", "edit_user", "Kullan\u0131c\u0131 D\xfczenle", "created_user", _s25_22, "updated_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla g\xfcncellendi", "archived_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla silindi", "removed_user", _s25_25, "restored_user", "Kullan\u0131c\u0131 ba\u015far\u0131yla geri y\xfcklendi", "archived_users", _s34_10, "deleted_users", _s33_12, "removed_users", _s33_13, "restored_users", _s34_11, _s16_122, "Genel Ayarlar", "invoice_options", "Fatura Se\xe7enekleri", _s17_70, "\xd6deme Tarihini Gizle", _s22_27, 'Bir \xf6deme al\u0131nd\u0131\u011f\u0131nda yaln\u0131zca faturalar\u0131n\u0131zdaki "\xd6denen Tarihi" alan\u0131n\u0131 g\xf6r\xfcnt\xfcleyin.', _s23_17, "Embed Documents", _s28_15, _s39_2, _s16_124, "Show Header on", _s16_125, "Show Footer on", "first_page", "\u0130lk sayfa", "all_pages", "T\xfcm sayfalar", "last_page", "Son sayfa", "primary_font", "Primary Font", "secondary_font", "Secondary Font", "primary_color", "Birincil Renk", "secondary_color", "\u0130kincil Renk", "page_size", "Sayfa Boyutu", "font_size", "Font Boyutu", "quote_design", "Quote Design", "invoice_fields", "Fatura Alanlar\u0131", "product_fields", "Product Fields", "invoice_terms", "Fatura \u015eartlar\u0131", "invoice_footer", "Fatura Altbilgisi", "quote_terms", "Teklif \u015eartlar\u0131", "quote_footer", "Teklif Altbilgisi", _s18_59, "Auto Email", _s23_18, _s61_, _s20_42, "Auto Archive", _s25_26, _s50_2, _s18_60, "Auto Archive", _s23_19, _s53_1, _s18_61, "Auto Convert", _s23_20, _s70_, _s17_72, _s17_73, "freq_daily", "G\xfcnl\xfck", "freq_weekly", "Haftal\u0131k", "freq_two_weeks", "2 hafta", "freq_four_weeks", "4 hafta", "freq_monthly", "Ayl\u0131k", "freq_two_months", "Two months", _s17_74, "3 Ay", _s16_126, "4 Ay", "freq_six_months", "6 Ay", "freq_annually", "Y\u0131ll\u0131k", "freq_two_years", "2 Y\u0131l", _s16_127, "Three Years", "never", "Never", "company", "\u015eirket", _s17_75, _s17_76, "charge_taxes", "Vergi masraflar\u0131", "next_reset", "Next Reset", "reset_counter", "Reset Counter", _s16_128, _s16_129, "number_padding", "Number Padding", "general", "General", "surcharge_field", "Surcharge Field", "company_field", "Company Field", "company_value", "Company Value", "credit_field", "Credit Field", "invoice_field", "Invoice Field", _s17_77, _s17_78, "client_field", "M\xfc\u015fteri Alan\u0131", "product_field", "\xdcr\xfcn Alan\u0131", "payment_field", "Payment Field", "contact_field", "\u0130leti\u015fim Alan\u0131", "vendor_field", "Vendor Field", "expense_field", "Expense Field", "project_field", "Project Field", "task_field", "Task Field", "group_field", "Group Field", "number_counter", "Number Counter", "prefix", "Seri", "number_pattern", "Number Pattern", "messages", "Messages", "custom_css", "\xd6zel CSS", _s17_79, _s17_80, _s16_130, "Show on PDF", _s21_46, _s51_3, _s25_27, _s22_28, _s30_5, _s61_0, _s23_21, _s20_43, _s28_16, _s59_, _s25_28, _s17_81, _s30_6, _s42_7, _s23_22, "Quote Signature", _s22_29, _s25_29, _s27_23, _s142_, "authorization", "Authorization", "subdomain", "Alt etki alan\u0131", "domain", "Domain", "portal_mode", "Portal Mode", "email_signature", "Sayg\u0131lar\u0131m\u0131zla,", _s24_21, "M\xfc\u015fterilerinizin e-postalar\u0131n\u0131za schema.org i\u015faretleme ekleyerek \xf6deme yapmalar\u0131n\u0131 kolayla\u015ft\u0131r\u0131n.", "plain", "D\xfcz", "light", "Ayd\u0131nl\u0131k", "dark", "Koyu", "email_design", "E-Posta Dizayn\u0131", "attach_pdf", "Attach PDF", _s16_131, _s16_132, "attach_ubl", "Attach UBL", "email_style", "Email Style", _s19_25, "\u0130\u015faretlemeyi Etkinle\u015ftir", "reply_to_email", "Reply-To Email", "reply_to_name", "Reply-To Name", "bcc_email", "BCC Email", "processed", "Processed", "credit_card", "Kredi Kart\u0131", "bank_transfer", "Banka Transferi (EFT/Havale)", "priority", "Priority", "fee_amount", "Fee Amount", "fee_percent", "Fee Percent", "fee_cap", "Fee Cap", "limits_and_fees", "Limits/Fees", "enable_min", "Enable min", "enable_max", "Enable max", "min_limit", "Min: :min", "max_limit", "Max: :max", "min", "Min", "max", "Max", _s19_26, _s19_27, "credentials", "Credentials", "update_address", "Adresi G\xfcncelle", _s19_28, "M\xfc\u015fterinin adresini verilen ayr\u0131nt\u0131larla g\xfcncelleyin", "rate", "Tarife", "tax_rate", "Vergi Oran\u0131", "new_tax_rate", "Yeni Vergi Oran\u0131", "edit_tax_rate", "Vergi oran\u0131 d\xfczenle", _s16_133, "Vergi oran\u0131 ba\u015far\u0131yla olu\u015fturuldu", _s16_134, "Vergi oran\u0131 ba\u015far\u0131yla g\xfcncellendi", _s17_82, "Vergi oran\u0131 ba\u015far\u0131yla ar\u015fivlendi", _s16_135, _s29_10, _s17_83, _s30_7, _s18_62, _s38_8, _s17_84, _s37_5, _s18_63, _s38_9, "fill_products", "Otomatik doldurma \xfcr\xfcnleri", _s18_64, "Bir \xfcr\xfcn se\xe7mek a\xe7\u0131klama ve maliyeti otomatik olarak dolduracakt\u0131r", "update_products", "\xdcr\xfcnleri otomatik g\xfcncelle", _s20_44, "Faturay\u0131 g\xfcncellemek \xfcr\xfcn k\xfct\xfcphanesini otomatik olarak dolduracakt\u0131r.", _s16_136, _s16_137, _s21_47, _s61_1, "fees", "Fees", "limits", "Limits", "provider", "Provider", "company_gateway", "Payment Gateway", _s16_138, _s16_139, _s19_29, "New Gateway", _s20_45, "Edit Gateway", _s23_23, _s28_17, _s23_24, _s28_18, _s24_22, _s29_11, _s23_25, _s28_19, _s24_23, _s29_12, _s25_30, _s37_6, _s24_24, _s36_4, _s25_31, _s37_7, _s16_140, _s16_141, "discard_changes", "Discard Changes", "default_value", "Default value", "disabled", "Devre D\u0131\u015f\u0131", "currency_format", "Currency Format", _s21_48, _s21_49, _s23_26, _s23_27, "sunday", "Pazar", "monday", "Pazartesi", "tuesday", "Sal\u0131", "wednesday", "\xc7ar\u015famba", "thursday", "Per\u015fembe", "friday", "Cuma", "saturday", "Cumartesi", "january", "Ocak", "february", "\u015eubat", "march", "Mart", "april", "Nisan", "may", "May\u0131s", "june", "Haziran", "july", "Temmuz", "august", "A\u011fustos", "september", "Eyl\xfcl", "october", "Ekim", "november", "Kas\u0131m", "december", "Aral\u0131k", "symbol", "Symbol", "ocde", "Code", "date_format", "Date Format", "datetime_format", "Datetime Format", "military_time", "24 Saat Zaman Bi\xe7imi", _s18_65, "24 Hour Display", "send_reminders", "Send Reminders", "timezone", "Timezone", _s19_30, _s19_31, _s17_85, _s17_86, _s19_32, _s19_33, _s18_66, _s18_67, _s18_68, _s18_69, "group_settings", "Group Settings", "group", "Group", "groups", "Groups", "new_group", "New Group", "edit_group", "Edit Group", "created_group", _s26_20, "updated_group", _s26_21, "archived_groups", _s35_7, "deleted_groups", _s34_12, "restored_groups", _s35_8, "upload_logo", "Upload Logo", "uploaded_logo", _s26_22, "logo", "Logo", "saved_settings", _s27_24, _s16_142, "\xdcr\xfcn Ayarlar\u0131", "device_settings", "Device Settings", "defaults", "Varsay\u0131lanlar", "basic_settings", "Temel Ayarlar", _s17_87, "Geli\u015fmi\u015f Ayarlar", "company_details", "\u015eirket Detaylar\u0131", "user_details", "Kullan\u0131c\u0131 Detaylar\u0131", "localization", "Yerelle\u015ftirme", "online_payments", "\xc7evrimi\xe7i \xd6demeler", "tax_rates", "Vergi Oranlar\u0131", "notifications", "Bildirimler", "import_export", "\u0130\xe7e Aktar\u0131m | D\u0131\u015fa Aktar\u0131m", "custom_fields", "\xd6zel Alanlar", "invoice_design", "Fatura Dizayn\u0131", "buy_now_buttons", "Buy Now Buttons", "email_settings", "E-posta ayarlar\u0131", _s23_28, "\u015eablonlar & Hat\u0131rlatmalar", _s22_30, _s20_46, _s19_34, "Veri G\xf6rselle\u015ftirmeleri", "price", "Price", "email_sign_up", "Email Sign Up", "google_sign_up", "Google Sign Up", _s27_25, _s28_20, "redeem", "Redeem", "back", "Back", "past_purchases", "Past Purchases", _s19_36, _s19_37, "pro_plan", "Pro Plan", "enterprise_plan", "Enterprise Plan", "count_users", ":count users", "upgrade", "Upgrade", _s25_32, _s25_33, _s24_25, _s24_26, _s33_14, _s77_, "i_agree_to_the", "I agree to the", _s21_79, _s16_203, _s19_54, "privacy policy", _s16_144, "Hizmet \u015eartlar\u0131", "privacy_policy", "Privacy Policy", "sign_up", "Kay\u0131t Ol", "account_login", "Hesap giri\u015fi", "view_website", "View Website", "create_account", "Create Account", "email_login", "Email Login", "create_new", "Create New", _s18_70, _s18_71, _s21_51, _s34_13, "download", "\u0130ndir", _s27_26, _s27_44, "take_picture", "Take Picture", "upload_file", "Upload File", "document", "Document", "documents", "Dok\xfcmanlar", "new_document", "New Document", "edit_document", "Edit Document", _s17_89, _s30_8, _s16_146, _s29_13, _s17_90, _s30_9, _s16_147, _s29_14, _s17_91, _s30_10, _s18_72, _s38_10, _s17_92, _s37_8, _s18_73, _s38_11, "no_history", "No History", "expense_date", "Gider Tarihi", "pending", "Beklemede", _s16_148, "Logged", _s16_149, "Pending", _s16_150, "Invoiced", "converted", "D\xf6n\xfc\u015ft\xfcr\xfcld\xfc", _s24_27, _s24_39, "exchange_rate", "D\xf6viz Kuru", _s16_151, _s16_222, "mark_paid", "Mark Paid", "category", "Kategori", "address", "Adres", "new_vendor", "Yeni Tedarik\xe7i", "created_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla olu\u015fturuldu", "updated_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla g\xfcncellendi", "archived_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_vendor", "Sat\u0131c\u0131 ba\u015far\u0131yla silindi", "restored_vendor", _s28_22, _s16_152, ":count sat\u0131c\u0131 ba\u015far\u0131yla ar\u015fivlendi", "deleted_vendors", ":count sat\u0131c\u0131 ba\u015far\u0131yla silindi", _s16_153, _s36_5, "new_expense", "Gider Giri\u015fi", "created_expense", "Gider olu\u015fturuldu", "updated_expense", "Gider g\xfcncellendi", _s16_154, "Gider ba\u015far\u0131yla ar\u015fivlendi", "deleted_expense", "Gider ba\u015far\u0131yla silindi", _s16_155, _s29_16, _s17_93, "Giderler ba\u015far\u0131yla ar\u015fivlendi", _s16_156, "Giderler ba\u015far\u0131yla silindi", _s17_94, _s37_9, "copy_shipping", "Copy Shipping", "copy_billing", "Copy Billing", "design", "Design", _s21_52, _s21_53, "invoiced", "Faturaland\u0131", "logged", "Logland\u0131", "running", "\xc7al\u0131\u015f\u0131yor", "resume", "Devam Et", "task_errors", "L\xfctfen \xf6rt\xfc\u015fen s\xfcreleri d\xfczeltin", "start", "Ba\u015flama", "stop", "Biti\u015f", "started_task", _s25_34, "stopped_task", "G\xf6rev ba\u015far\u0131yla durduruldu", "resumed_task", _s25_36, "now", "\u015eimdi", _s16_157, _s16_158, "timer", "Zamanlay\u0131c\u0131", "manual", "Manuel", "budgeted", "Budgeted", "start_time", "Ba\u015flang\u0131\xe7 Zaman\u0131", "end_time", "Biti\u015f Zaman\u0131", "date", "Tarih", "times", "Zamanlar", "duration", "S\xfcre", "new_task", "Yeni G\xf6rev", "created_task", "G\xf6rev ba\u015far\u0131yla olu\u015fturuldu", "updated_task", "G\xf6rev ba\u015far\u0131yla g\xfcncellendi", "archived_task", "G\xf6rev ba\u015far\u0131yla ar\u015fivlendi", "deleted_task", "G\xf6rev ba\u015far\u0131yla silindi", "restored_task", "G\xf6rev ba\u015far\u0131yla geri y\xfcklendi", "archived_tasks", "Ar\u015fivlenen g\xf6rev say\u0131s\u0131 :count", "deleted_tasks", "Silinen g\xf6rev say\u0131s\u0131 :count", "restored_tasks", _s34_14, _s19_38, _s19_39, "budgeted_hours", "Budgeted Hours", "created_project", _s28_26, "updated_project", _s28_27, _s16_159, _s29_17, "deleted_project", _s28_28, _s16_160, _s29_18, _s17_95, _s37_16, _s16_161, _s36_10, _s17_96, _s37_10, "new_project", "New Project", _s27_30, _s28_29, "if_you_like_it", _s21_54, "click_here", "buraya t\u0131klay\u0131n", _s18_74, "Click here", "to_rate_it", "to rate it.", "average", "Average", "unapproved", "Unapproved", _s30_11, _s42_8, "locked", "Locked", "authenticate", "Authenticate", _s19_40, _s19_41, _s24_28, _s24_29, "footer", "Altbilgi", "compare", "Compare", "hosted_login", "Hosted Login", "selfhost_login", "Selfhost Login", "google_sign_in", _s17_97, "today", "Today", "custom_range", "Custom Range", "date_range", "Date Range", "current", "Current", "previous", "Previous", "current_period", "Current Period", _s17_98, _s17_99, "previous_period", "Previous Period", "previous_year", "Previous Year", "compare_to", "Compare to", "last7_days", "Last 7 Days", "last_week", "Last Week", "last30_days", "Last 30 Days", "this_month", "This Month", "last_month", "Last Month", "this_year", "This Year", "last_year", "Last Year", "custom", "\xd6zel", _s16_162, _s16_163, "clone_to_quote", "Clone to Quote", "clone_to_credit", "Clone to Credit", "view_invoice", "Fatura G\xf6r\xfcnt\xfcle", "convert", "Convert", "more", "More", "edit_client", "M\xfc\u015fteri D\xfczenle", "edit_product", "\xdcr\xfcn D\xfczenle", "edit_invoice", "Fatura D\xfczenle", "edit_quote", "Teklif D\xfczenle", "edit_payment", "\xd6deme d\xfczenle", "edit_task", "G\xf6rev D\xfczenle", "edit_expense", "Gideri D\xfczenle", "edit_vendor", "Tedarik\xe7iyi D\xfczenle", "edit_project", "Edit Project", _s22_, _s22_0, _s20_47, _s20_48, "billing_address", "Fatura Adresi", _s16_164, _s16_165, "total_revenue", "Toplam Gelir", "average_invoice", "Ortalama Fatura", "outstanding", "\xd6denmemi\u015f", "invoices_sent", _s24_69, "active_clients", "aktif m\xfc\u015fteriler", "close", "Kapat", "email", "E-Posta", "password", "\u015eifre", "url", "URL", "secret", "Secret", "name", "\xdcnvan", "logout", "Oturumu kapat", "login", "Oturum a\xe7", "filter", "Filtrele", "sort", "Sort", "search", "Arama", "active", "Aktif", "archived", "Ar\u015fivlendi", "deleted", "Silindi", "dashboard", "G\xf6sterge Paneli", "archive", "Ar\u015fivle", "delete", "Sil", "restore", "Geri y\xfckle", _s16_166, _s16_167, _s23_29, _s23_30, _s26_25, _s26_26, _s21_55, _s21_56, _s26_27, _s26_28, "ascending", "Ascending", "descending", "Descending", "save", "Kaydet", _s17_100, _s17_101, "paid_to_date", "\xd6denen", "balance_due", "Genel Toplam", "balance", "Bakiye", "overview", "Overview", "details", "Detaylar", "phone", "Telefon", "website", "Web adresi", "vat_number", "Vergi Numaras\u0131", "id_number", "ID Numaras\u0131", "create", "Olu\u015ftur", _s19_42, _s30_12, "error", "Hata", _s16_168, _s16_169, "contacts", "Yetkili", "additional", "Additional", "first_name", "Ad\u0131", "last_name", "Soyad\u0131", "add_contact", "Yetkili Ekle", "are_you_sure", "Emin misiniz?", "cancel", "\u0130ptal", "ok", "Tamam", "remove", "Sil", _s16_170, "E-posta ge\xe7ersiz", "product", "\xdcr\xfcn", "products", "\xdcr\xfcnler", "new_product", "Yeni \xdcr\xfcn", "created_product", "\xdcr\xfcn ba\u015far\u0131yla olu\u015fturuldu", "updated_product", "\xdcr\xfcn ba\u015far\u0131yla g\xfcncellendi", _s16_172, "\xdcr\xfcn ba\u015far\u0131yla ar\u015fivlendi", "deleted_product", _s28_32, _s16_173, _s29_20, _s17_102, _s37_17, _s16_174, _s36_11, _s17_103, _s37_11, "product_key", "\xdcr\xfcn", "notes", "Notlar", "cost", "Cost", "client", "M\xfc\u015fteri", "clients", "M\xfc\u015fteriler", "new_client", "Yeni M\xfc\u015fteri", "created_client", "M\xfc\u015fteri ba\u015far\u0131yla olu\u015fturuldu", "updated_client", "M\xfc\u015fteri ba\u015far\u0131yla g\xfcncellendi", "archived_client", "M\xfc\u015fteri ba\u015far\u0131yla ar\u015fivlendi", _s16_175, ":count m\xfc\u015fteri ba\u015far\u0131yla ar\u015fivlendi", "deleted_client", "M\xfc\u015fteri ba\u015far\u0131yla silindi", "deleted_clients", ":count m\xfc\u015fteri ba\u015far\u0131yla silindi", "restored_client", "M\xfc\u015fteri Ba\u015far\u0131yla Geri Y\xfcklendi", _s16_176, _s36_7, "address1", "Adres", "address2", "Adres", "city", "\u015eehir", "state", "\u0130l\xe7e", "postal_code", "Posta Kodu", "country", "\xdclke", "invoice", "Fatura", "invoices", "Faturalar", "new_invoice", "Yeni Fatura", "created_invoice", "Fatura ba\u015far\u0131yla olu\u015fturuldu", "updated_invoice", "Fatura ba\u015far\u0131yla g\xfcncellendi", _s16_177, "Fatura ba\u015far\u0131yla ar\u015fivlendi", "deleted_invoice", "Fatura ba\u015far\u0131yla silindi", _s16_178, "Fatura Ba\u015far\u0131yla Geri Y\xfcklendi", _s17_104, ":count fatura ba\u015far\u0131yla ar\u015fivlendi", _s16_179, ":count fatura ba\u015far\u0131yla silindi", _s17_105, _s37_12, "emailed_invoice", "Fatura ba\u015far\u0131yla e-posta ile g\xf6nderildi", "emailed_payment", _s28_53, "amount", "Tutar", "invoice_number", "Fatura Numaras\u0131", "invoice_date", "Fatura Tarihi", "discount", "\u0130skonto", "po_number", "Sipari\u015f No", "terms", "Ko\u015fullar", "public_notes", "A\xe7\u0131k Notlar", "private_notes", "\xd6zel Notlar", "frequency", "S\u0131kl\u0131k", "start_date", "Ba\u015flang\u0131\xe7 Tarihi", "end_date", "Biti\u015f Tarihi", "quote_number", "Teklif Numaras\u0131", "quote_date", "Teklif Tarihi", "valid_until", "Ge\xe7erlilik Tarihi", "items", "\xd6geler", "partial_deposit", "Partial/Deposit", "description", "A\xe7\u0131klama", "unit_cost", "Birim Fiyat\u0131", "quantity", "Miktar", "add_item", "\xd6ge Ekle", "contact", "Ki\u015fi", "work_phone", "Telefon", "total_amount", "Total Amount", "pdf", "PDF", "due_date", "\xd6deme Tarihi", _s16_180, _s16_181, "status", "Durum", _s17_106, "Invoice Status", "quote_status", "Quote Status", _s22_31, _s22_32, _s22_33, _s19_55, "count_selected", ":count selected", "total", "Toplam", "percent", "Percent", "edit", "D\xfczenle", "dismiss", "Dismiss", _s20_49, _s20_50, _s22_34, _s22_35, _s24_30, _s24_31, "task_rate", "Task Rate", "settings", "Ayarlar", "language", "Dil", "currency", "Currency", "created_at", "Date Created", "created_on", "Created On", "updated_at", "Updated", "tax", "Vergi", _s30_13, _s30_14, _s27_34, _s27_35, "past_due", "Past Due", "draft", "Draft", "sent", "G\xf6nder", "viewed", "Viewed", "approved", "Approved", "partial", "K\u0131smi / Mevduat", "paid", "\xd6denen", "mark_sent", "G\xf6nderilmi\u015f Olarak \u0130\u015faretle", _s22_36, _s35_9, _s22_37, _s35_10, _s23_31, _s36_8, _s23_32, _s36_9, "done", "Tamam", _s37_13, _s37_14, "dark_mode", "Karanl\u0131k Mod", _s27_36, _s35_11, "refresh_data", "Refresh Data", "blank_contact", "Blank Contact", "activity", "Aktivite", _s16_182, _s16_183, "clone", "\xc7o\u011falt", "loading", "Loading", "industry", "Industry", "size", "Size", "payment_terms", "\xd6deme ko\u015fullar\u0131", "payment_date", "\xd6deme Tarihi", "payment_status", "Payment Status", _s16_184, "Pending", _s16_185, "Voided", _s16_186, "Failed", _s16_187, "Completed", _s16_188, _s18_36, _s16_189, "Refunded", _s17_107, "Unapplied", _s17_108, _s19_6, "net", "Net", "client_portal", "M\xfc\u015fteri Portal\u0131", "show_tasks", "Show tasks", "email_reminders", "Email Reminders", "enabled", "Enabled", "recipients", "Recipients", "initial_email", "Initial Email", "first_reminder", "\u0130lk Hat\u0131rlat\u0131c\u0131", "second_reminder", "\u0130kinci Hat\u0131rlat\u0131c\u0131", "third_reminder", "\xdc\xe7\xfcnc\xfc Hat\u0131rlat\u0131c\u0131", "reminder1", "First Reminder", "reminder2", "Second Reminder", "reminder3", "Third Reminder", "template", "Template", "send", "Send", "subject", "Konu", "body", "G\xf6vde", "send_email", "E-Mail G\xf6nder", "email_receipt", "\xd6deme makbuzunu m\xfc\u015fteriye e-postayla g\xf6nder", "auto_billing", "Auto billing", "button", "Buton", "preview", "Preview", "customize", "\xd6zelle\u015ftir", "history", "Ge\xe7mi\u015f", "payment", "\xd6deme", "payments", "\xd6demeler", "refunded", "Refunded", "payment_type", "Payment Type", _s21_57, "\u0130\u015flem Referans\u0131", "enter_payment", "\xd6deme Gir", "new_payment", "\xd6deme Gir", "created_payment", "\xd6deme ba\u015far\u0131yla olu\u015fturuldu", "updated_payment", "\xd6deme ba\u015far\u0131yla g\xfcncellendi", _s16_190, "\xd6deme ba\u015far\u0131yla ar\u015fivlendi", "deleted_payment", "\xd6deme ba\u015far\u0131yla silindi", _s16_191, "\xd6deme Ba\u015far\u0131yla Geri Y\xfcklendi", _s17_109, ":count \xf6deme ar\u015fivlendi", _s16_192, ":count \xf6deme silindi", _s17_110, _s37_15, "quote", "Teklif", "quotes", "Teklifler", "new_quote", "Yeni Teklif", "created_quote", "Teklif ba\u015far\u0131yla olu\u015fturuldu", "updated_quote", "Teklif ba\u015far\u0131yla g\xfcncellendi", "archived_quote", "Teklif ba\u015far\u0131yla ar\u015fivlendi", "deleted_quote", "Teklif ba\u015far\u0131yla silindi", "restored_quote", "Teklif Ba\u015far\u0131yla Geri Y\xfcklendi", "archived_quotes", ":count teklif ba\u015far\u0131yla ar\u015fivlendi", "deleted_quotes", ":count teklif ba\u015far\u0131yla silindi", "restored_quotes", _s35_13, "expense", "Gider", "expenses", "Giderler", "vendor", "Tedarik\xe7i", "vendors", "Tedarik\xe7iler", "task", "Task", "tasks", "G\xf6revler", "project", "Project", "projects", "Projects", "activity_1", ":user :client m\xfc\u015fteri hesab\u0131n\u0131 olu\u015fturdu", "activity_2", ":user :client m\xfc\u015fteri hesab\u0131n\u0131 ar\u015fivledi", "activity_3", ":user :client m\xfc\u015ftei hesab\u0131n\u0131 sildi", "activity_4", ":user :invoice nolu faturay\u0131 olu\u015fturdu", "activity_5", ":user :invoice nolu faturay\u0131 g\xfcncelledi", "activity_6", _s54_0, "activity_7", _s44_, "activity_8", ":user :invoice nolu faturay\u0131 ar\u015fivledi", "activity_9", ":user :invoice nolu faturay\u0131 sildi", "activity_10", _s85_0, "activity_11", ":user :payment tutarl\u0131 \xf6demeyi g\xfcncelledi", "activity_12", ":user :payment tutarl\u0131 \xf6demeyi ar\u015fivledi", "activity_13", ":user :payment tutarl\u0131 \xf6demeyi sildi", "activity_14", ":user :credit kredi girdi", "activity_15", ":user :credit kredi g\xfcncelledi", "activity_16", ":user :credit kredi ar\u015fivledi", "activity_17", ":user :credit kredi sildi", "activity_18", ":user :quote nolu teklifi olu\u015fturdu", "activity_19", ":user :quote nolu teklifi g\xfcncelledi", "activity_20", _s50_4, "activity_21", ":contact adl\u0131 yetkili :quote nolu teklifi g\xf6r\xfcnt\xfcledi", "activity_22", ":user :quote nolu teklifi ar\u015fivledi", "activity_23", ":user :quote nolu teklifi sildi", "activity_24", ":user :quote nolu teklifi geri y\xfckledi", "activity_25", ":user :invoice nolu faturay\u0131 geri y\xfckledi", "activity_26", ":user :client m\xfc\u015fterisini geri y\xfckledi", "activity_27", ":user :payment tutar\u0131nda \xf6demeyi geri y\xfckledi", "activity_28", ":user :credit kredisini geri y\xfckledi", "activity_29", _s42_9, "activity_30", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 olu\u015fturdu", "activity_31", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 ar\u015fivledi", "activity_32", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 sildi", "activity_33", ":user :vendor sat\u0131c\u0131s\u0131n\u0131 geri y\xfckledi", "activity_34", ":user masraf olu\u015fturdu :expense", "activity_35", ":user masraf ar\u015fivledi :expense", "activity_36", ":user masraf sildi :expense", "activity_37", ":user masraf geri y\xfckledi :expense", "activity_39", _s50_5, "activity_40", _s64_, "activity_41", _s41_6, "activity_42", ":user :task g\xf6revini olu\u015fturdu", "activity_43", ":user :task g\xf6revini g\xfcncelledi", "activity_44", ":user :task g\xf6revini ar\u015fivledi", "activity_45", ":user :task g\xf6revini sildi", "activity_46", ":user :task g\xf6revini geri y\xfckledi", "activity_47", ":user masraf g\xfcncelledi :expense", "activity_48", _s28_54, "activity_49", _s27_45, "activity_50", _s27_46, "activity_51", _s26_36, "activity_52", _s30_23, "activity_53", _s32_7, "activity_54", _s29_38, "activity_55", _s31_14, "activity_56", _s27_47, "activity_57", _s39_3, "activity_58", _s31_9, "activity_59", _s32_6, "activity_60", _s28_46, "activity_61", _s28_49, "activity_62", _s28_50, "activity_63", _s61_3, "activity_64", _s62_, "activity_65", _s61_4, "activity_66", _s63_0, "activity_80", _s40_1, "activity_81", _s40_2, "activity_82", _s41_4, "activity_83", _s40_3, "activity_84", _s41_5, _s17_111, _s17_112, "emailed_quote", "Teklif ba\u015far\u0131yla e-posta ile g\xf6nderildi", "emailed_credit", _s27_48, _s20_51, _s33_15, _s21_59, _s34_15, "expired", "Expired", "all", "All", "select", "Se\xe7", _s22_38, _s22_39, "custom_value1", "Custom Value", "custom_value2", "Custom Value", "custom_value3", "Custom Value 3", "custom_value4", "Custom Value 4", _s18_75, _s18_76, _s24_35, _s24_36, _s29_31, _s29_32, _s27_41, _s27_42, _s31_10, _s31_11, "lock_invoices", "Lock Invoices", "translations", "Translations", _s19_43, _s19_44, _s19_45, _s19_46, _s22_40, _s22_41, _s22_42, _s22_43, _s21_60, _s21_61, _s21_62, _s21_63, _s21_64, _s21_65, _s21_66, _s21_67, _s22_44, _s22_45, _s22_46, _s22_47, _s22_48, _s22_49, _s22_50, "Fatura No Sayac\u0131", _s20_52, _s20_53, _s20_54, "Teklif No Sayac\u0131", _s21_68, _s21_69, _s21_70, _s21_71, _s21_72, _s21_69, _s21_73, _s21_71, _s18_77, _s18_78, "counter_padding", "Counter Padding", _s28_51, _s28_55, _s18_79, _s18_80, _s18_81, _s18_82, _s18_83, _s18_84, _s18_85, _s18_86, _s18_87, _s18_88, _s18_89, _s18_90, _s21_74, _s21_75, _s19_47, _s19_48, _s21_76, _s21_77, _s29_33, _s29_34, "show_table", "Show Table", "show_list", "Show List", "client_city", "Client City", "client_state", "Client State", "client_country", "Client Country", _s16_193, _s16_194, "client_balance", "Client Balance", "client_address1", "Client Street", "client_address2", _s16_195, "vendor_address1", "Vendor Street", "vendor_address2", _s16_196, _s24_37, _s22_52, _s24_38, _s25_42, "type", "T\xfcr", "invoice_amount", "Fatura Tutar\u0131", _s16_197, "Vade", "tax_rate1", "Tax Rate 1", "tax_rate2", "Tax Rate 2", "tax_rate3", "Tax Rate 3", "auto_bill", "Otomatik Fatura", "archived_at", "Archived At", "has_expenses", "Has Expenses", "custom_taxes1", "Custom Taxes 1", "custom_taxes2", "Custom Taxes 2", "custom_taxes3", "Custom Taxes 3", "custom_taxes4", "Custom Taxes 4", _s17_113, _s18_41, _s17_114, _s18_42, _s17_115, _s18_43, _s17_116, _s18_44, "is_deleted", "Is Deleted", "vendor_city", "Vendor City", "vendor_state", "Vendor State", "vendor_country", "Vendor Country", "is_approved", "Is Approved", "tax_name", "Vergi Ad\u0131", "tax_amount", "Tax Amount", "tax_paid", "Tax Paid", "payment_amount", "\xd6deme Tutar\u0131", "age", "Age", "is_running", "Is Running", "time_log", "Time Log", "bank_id", "Banka", _s19_49, _s19_50, _s16_198, _s16_204, _s19_51, _s19_52, "tax_name1", "Tax Name 1", "tax_name2", "Tax Name 2", "tax_name3", "Tax Name 3", "transaction_id", "Transaction ID", "color_theme", "Color Theme"], t1, t1)], t1, type$.legacy_Map_of_legacy_String_and_legacy_String); }(); $.LogRecord__nextNumber = 0; $.Logger__loggers = P.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.Logger); $._currentUriBase = null; $._current = null; $._manualDartRegistrationNeeded = true; $.PointerInterceptor__registered = false; $.SharedPreferences__completer = null; $.SharedPreferences__manualDartRegistrationNeeded = true; $.LinkViewController__instances = P.LinkedHashMap_LinkedHashMap$_empty(type$.int, H.findType("LinkViewController")); $.Uuid__state = P.LinkedHashMap_LinkedHashMap$_literal(["seedBytes", null, "node", null, "clockSeq", null, "mSecs", 0, "nSecs", 0, "hasInitV1", false, "hasInitV4", false], type$.String, type$.nullable_Object); $.Matrix4__decomposeV = null; $.Matrix4__decomposeM = null; $.Matrix4__decomposeR = null; })(); (function lazyInitializers() { var _lazy = hunkHelpers.lazy, _lazyFinal = hunkHelpers.lazyFinal, _lazyOld = hunkHelpers.lazyOld; _lazy($, "_CanvasPool__runBuffer", "$get$_CanvasPool__runBuffer", function() { return H.NativeFloat32List_NativeFloat32List(8); }); _lazyFinal($, "_SaveStackTracking__unitZ", "$get$_SaveStackTracking__unitZ", function() { return H.Vector3_Vector3(0, 0, 1); }); _lazyFinal($, "_clipOpIntersect", "$get$_clipOpIntersect", function() { return J.get$Intersect$x(J.get$ClipOp$x(H.canvasKit())); }); _lazyFinal($, "_skFontSlants", "$get$_skFontSlants", function() { return H.setRuntimeTypeInfo([J.get$Upright$x(J.get$FontSlant$x(H.canvasKit())), J.get$Italic$x(J.get$FontSlant$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skFontWeights", "$get$_skFontWeights", function() { return H.setRuntimeTypeInfo([J.get$Thin$x(J.get$FontWeight$x(H.canvasKit())), J.get$ExtraLight$x(J.get$FontWeight$x(H.canvasKit())), J.get$Light$x(J.get$FontWeight$x(H.canvasKit())), J.get$Normal$x(J.get$FontWeight$x(H.canvasKit())), J.get$Medium$x(J.get$FontWeight$x(H.canvasKit())), J.get$SemiBold$x(J.get$FontWeight$x(H.canvasKit())), J.get$Bold$x(J.get$FontWeight$x(H.canvasKit())), J.get$ExtraBold$x(J.get$FontWeight$x(H.canvasKit())), J.get$ExtraBlack$x(J.get$FontWeight$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skTextDirections", "$get$_skTextDirections", function() { return H.setRuntimeTypeInfo([J.get$RTL$x(J.get$TextDirection$x(H.canvasKit())), J.get$LTR$x(J.get$TextDirection$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skTextAligns", "$get$_skTextAligns", function() { return H.setRuntimeTypeInfo([J.get$Left$x(J.get$TextAlign$x(H.canvasKit())), J.get$Right$x(J.get$TextAlign$x(H.canvasKit())), J.get$Center$x(J.get$TextAlign$x(H.canvasKit())), J.get$Justify$x(J.get$TextAlign$x(H.canvasKit())), J.get$Start$x(J.get$TextAlign$x(H.canvasKit())), J.get$End$x(J.get$TextAlign$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skRectHeightStyles", "$get$_skRectHeightStyles", function() { return H.setRuntimeTypeInfo([J.get$Tight$x(J.get$RectHeightStyle$x(H.canvasKit())), J.get$Max$x(J.get$RectHeightStyle$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skRectWidthStyles", "$get$_skRectWidthStyles", function() { return H.setRuntimeTypeInfo([J.get$Tight$x(J.get$RectWidthStyle$x(H.canvasKit())), J.get$Max$x(J.get$RectWidthStyle$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skClipOps", "$get$_skClipOps", function() { return H.setRuntimeTypeInfo([J.get$Difference$x(J.get$ClipOp$x(H.canvasKit())), J.get$Intersect$x(J.get$ClipOp$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skFillTypes", "$get$_skFillTypes", function() { return H.setRuntimeTypeInfo([J.get$Winding$x(J.get$FillType$x(H.canvasKit())), J.get$EvenOdd$x(J.get$FillType$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skBlurStyles", "$get$_skBlurStyles", function() { return H.setRuntimeTypeInfo([J.get$Normal$x(J.get$BlurStyle$x(H.canvasKit())), J.get$Solid$x(J.get$BlurStyle$x(H.canvasKit())), J.get$Outer$x(J.get$BlurStyle$x(H.canvasKit())), J.get$Inner$x(J.get$BlurStyle$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skStrokeCaps", "$get$_skStrokeCaps", function() { return H.setRuntimeTypeInfo([J.get$Butt$x(J.get$StrokeCap$x(H.canvasKit())), J.get$Round$x(J.get$StrokeCap$x(H.canvasKit())), J.get$Square$x(J.get$StrokeCap$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skPaintStyles", "$get$_skPaintStyles", function() { return H.setRuntimeTypeInfo([J.get$Fill$x(J.get$PaintStyle$x(H.canvasKit())), J.get$Stroke$x(J.get$PaintStyle$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skBlendModes", "$get$_skBlendModes", function() { return H.setRuntimeTypeInfo([J.get$Clear$x(J.get$BlendMode$x(H.canvasKit())), J.get$Src$x(J.get$BlendMode$x(H.canvasKit())), J.get$Dst$x(J.get$BlendMode$x(H.canvasKit())), J.get$SrcOver$x(J.get$BlendMode$x(H.canvasKit())), J.get$DstOver$x(J.get$BlendMode$x(H.canvasKit())), J.get$SrcIn$x(J.get$BlendMode$x(H.canvasKit())), J.get$DstIn$x(J.get$BlendMode$x(H.canvasKit())), J.get$SrcOut$x(J.get$BlendMode$x(H.canvasKit())), J.get$DstOut$x(J.get$BlendMode$x(H.canvasKit())), J.get$SrcATop$x(J.get$BlendMode$x(H.canvasKit())), J.get$DstATop$x(J.get$BlendMode$x(H.canvasKit())), J.get$Xor$x(J.get$BlendMode$x(H.canvasKit())), J.get$Plus$x(J.get$BlendMode$x(H.canvasKit())), J.get$Modulate$x(J.get$BlendMode$x(H.canvasKit())), J.get$Screen$x(J.get$BlendMode$x(H.canvasKit())), J.get$Overlay$x(J.get$BlendMode$x(H.canvasKit())), J.get$Darken$x(J.get$BlendMode$x(H.canvasKit())), J.get$Lighten$x(J.get$BlendMode$x(H.canvasKit())), J.get$ColorDodge$x(J.get$BlendMode$x(H.canvasKit())), J.get$ColorBurn$x(J.get$BlendMode$x(H.canvasKit())), J.get$HardLight$x(J.get$BlendMode$x(H.canvasKit())), J.get$SoftLight$x(J.get$BlendMode$x(H.canvasKit())), J.get$Difference$x(J.get$BlendMode$x(H.canvasKit())), J.get$Exclusion$x(J.get$BlendMode$x(H.canvasKit())), J.get$Multiply$x(J.get$BlendMode$x(H.canvasKit())), J.get$Hue$x(J.get$BlendMode$x(H.canvasKit())), J.get$Saturation$x(J.get$BlendMode$x(H.canvasKit())), J.get$Color$x(J.get$BlendMode$x(H.canvasKit())), J.get$Luminosity$x(J.get$BlendMode$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skStrokeJoins", "$get$_skStrokeJoins", function() { return H.setRuntimeTypeInfo([J.get$Miter$x(J.get$StrokeJoin$x(H.canvasKit())), J.get$Round$x(J.get$StrokeJoin$x(H.canvasKit())), J.get$Bevel$x(J.get$StrokeJoin$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skFilterQualitys", "$get$_skFilterQualitys", function() { return H.setRuntimeTypeInfo([J.get$None$x(J.get$FilterQuality$x(H.canvasKit())), J.get$Low$x(J.get$FilterQuality$x(H.canvasKit())), J.get$Medium$x(J.get$FilterQuality$x(H.canvasKit())), J.get$High$x(J.get$FilterQuality$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skTileModes", "$get$_skTileModes", function() { return H.setRuntimeTypeInfo([J.get$Clamp$x(J.get$TileMode$x(H.canvasKit())), J.get$Repeat$x(J.get$TileMode$x(H.canvasKit())), J.get$Mirror$x(J.get$TileMode$x(H.canvasKit())), J.get$Decal$x(J.get$TileMode$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_kDefaultSkColorStops", "$get$_kDefaultSkColorStops", function() { var t1 = H.NativeFloat32List_NativeFloat32List(2); t1[0] = 0; t1[1] = 1; return t1; }); _lazyFinal($, "_sharedSkColor1", "$get$_sharedSkColor1", function() { return H.mallocFloat32List(4); }); _lazyFinal($, "_skTextDecorationStyles", "$get$_skTextDecorationStyles", function() { return H.setRuntimeTypeInfo([J.get$Solid$x(J.get$DecorationStyle$x(H.canvasKit())), J.get$Double$x(J.get$DecorationStyle$x(H.canvasKit())), J.get$Dotted$x(J.get$DecorationStyle$x(H.canvasKit())), J.get$Dashed$x(J.get$DecorationStyle$x(H.canvasKit())), J.get$Wavy$x(J.get$DecorationStyle$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "_skTextBaselines", "$get$_skTextBaselines", function() { return H.setRuntimeTypeInfo([J.get$Alphabetic$x(J.get$TextBaseline$x(H.canvasKit())), J.get$Ideographic$x(J.get$TextBaseline$x(H.canvasKit()))], H.findType("JSArray")); }); _lazyFinal($, "Collector__productionInstance", "$get$Collector__productionInstance", function() { return H.ProductionCollector$(); }); _lazy($, "Collector__instance", "$get$Collector__instance", function() { return $.$get$Collector__productionInstance(); }); _lazy($, "browserSupportsFinalizationRegistry", "$get$browserSupportsFinalizationRegistry", function() { return self.window.FinalizationRegistry != null; }); _lazyFinal($, "OverlayCache_instance", "$get$OverlayCache_instance", function() { return new H.OverlayCache(5, H.setRuntimeTypeInfo([], H.findType("JSArray"))); }); _lazy($, "FontFallbackData__instance", "$get$FontFallbackData__instance", function() { var t1 = type$.int; return new H.FontFallbackData(P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashSet_LinkedHashSet$_empty(t1), H.FontFallbackData_createNotoFontTree(), H.setRuntimeTypeInfo([], type$.JSArray__RegisteredFont), H.setRuntimeTypeInfo(["Roboto"], type$.JSArray_String), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, t1)); }); _lazy($, "_notoSansSC", "$get$_notoSansSC", function() { return H.NotoFont$("Noto Sans SC", H.setRuntimeTypeInfo([H.CodeunitRange$(12288, 12591), H.CodeunitRange$(12800, 13311), H.CodeunitRange$(19968, 40959), H.CodeunitRange$(65072, 65135), H.CodeunitRange$(65280, 65519)], type$.JSArray_CodeunitRange)); }); _lazy($, "_notoSansTC", "$get$_notoSansTC", function() { return H.NotoFont$("Noto Sans TC", H.setRuntimeTypeInfo([H.CodeunitRange$(12288, 12351), H.CodeunitRange$(12549, 12585), H.CodeunitRange$(19968, 40959)], type$.JSArray_CodeunitRange)); }); _lazy($, "_notoSansHK", "$get$_notoSansHK", function() { return H.NotoFont$("Noto Sans HK", H.setRuntimeTypeInfo([H.CodeunitRange$(12288, 12351), H.CodeunitRange$(12549, 12585), H.CodeunitRange$(19968, 40959)], type$.JSArray_CodeunitRange)); }); _lazy($, "_notoSansJP", "$get$_notoSansJP", function() { return H.NotoFont$("Noto Sans JP", H.setRuntimeTypeInfo([H.CodeunitRange$(12288, 12543), H.CodeunitRange$(19968, 40959), H.CodeunitRange$(65280, 65519)], type$.JSArray_CodeunitRange)); }); _lazy($, "_cjkFonts", "$get$_cjkFonts", function() { return H.setRuntimeTypeInfo([$.$get$_notoSansSC(), $.$get$_notoSansTC(), $.$get$_notoSansHK(), $.$get$_notoSansJP()], type$.JSArray_NotoFont); }); _lazy($, "_notoFonts", "$get$_notoFonts", function() { var _8204 = 8204, _2404 = 2404, _2405 = 2405, _8205 = 8205, _8377 = 8377, _9676 = 9676, t1 = type$.JSArray_CodeunitRange; return H.setRuntimeTypeInfo([$.$get$_notoSansSC(), $.$get$_notoSansTC(), $.$get$_notoSansHK(), $.$get$_notoSansJP(), H.NotoFont$("Noto Naskh Arabic UI", H.setRuntimeTypeInfo([H.CodeunitRange$(1536, 1791), H.CodeunitRange$(_8204, 8206), H.CodeunitRange$(8208, 8209), H.CodeunitRange$(8271, 8271), H.CodeunitRange$(11841, 11841), H.CodeunitRange$(64336, 65023), H.CodeunitRange$(65132, 65276)], t1)), H.NotoFont$("Noto Sans Armenian", H.setRuntimeTypeInfo([H.CodeunitRange$(1328, 1424), H.CodeunitRange$(64275, 64279)], t1)), H.NotoFont$("Noto Sans Bengali UI", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(2433, 2555), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Myanmar UI", H.setRuntimeTypeInfo([H.CodeunitRange$(4096, 4255), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Egyptian Hieroglyphs", H.setRuntimeTypeInfo([H.CodeunitRange$(77824, 78894)], t1)), H.NotoFont$("Noto Sans Ethiopic", H.setRuntimeTypeInfo([H.CodeunitRange$(4608, 5017), H.CodeunitRange$(11648, 11742), H.CodeunitRange$(43777, 43822)], t1)), H.NotoFont$("Noto Sans Georgian", H.setRuntimeTypeInfo([H.CodeunitRange$(1417, 1417), H.CodeunitRange$(4256, 4351), H.CodeunitRange$(11520, 11567)], t1)), H.NotoFont$("Noto Sans Gujarati UI", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(2688, 2815), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676), H.CodeunitRange$(43056, 43065)], t1)), H.NotoFont$("Noto Sans Gurmukhi UI", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(2561, 2677), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676), H.CodeunitRange$(9772, 9772), H.CodeunitRange$(43056, 43065)], t1)), H.NotoFont$("Noto Sans Hebrew", H.setRuntimeTypeInfo([H.CodeunitRange$(1424, 1535), H.CodeunitRange$(8362, 8362), H.CodeunitRange$(_9676, _9676), H.CodeunitRange$(64285, 64335)], t1)), H.NotoFont$("Noto Sans Devanagari UI", H.setRuntimeTypeInfo([H.CodeunitRange$(2304, 2431), H.CodeunitRange$(7376, 7414), H.CodeunitRange$(7416, 7417), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(8360, 8360), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676), H.CodeunitRange$(43056, 43065), H.CodeunitRange$(43232, 43259)], t1)), H.NotoFont$("Noto Sans Kannada UI", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(3202, 3314), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Khmer UI", H.setRuntimeTypeInfo([H.CodeunitRange$(6016, 6143), H.CodeunitRange$(_8204, _8204), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans KR", H.setRuntimeTypeInfo([H.CodeunitRange$(12593, 12686), H.CodeunitRange$(12800, 12828), H.CodeunitRange$(12896, 12923), H.CodeunitRange$(44032, 55215)], t1)), H.NotoFont$("Noto Sans Lao UI", H.setRuntimeTypeInfo([H.CodeunitRange$(3713, 3807), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Malayalam UI", H.setRuntimeTypeInfo([H.CodeunitRange$(775, 775), H.CodeunitRange$(803, 803), H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(3330, 3455), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Sinhala", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(3458, 3572), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Tamil UI", H.setRuntimeTypeInfo([H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(2946, 3066), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_8377, _8377), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Telugu UI", H.setRuntimeTypeInfo([H.CodeunitRange$(2385, 2386), H.CodeunitRange$(_2404, _2405), H.CodeunitRange$(3072, 3199), H.CodeunitRange$(7386, 7386), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans Thai UI", H.setRuntimeTypeInfo([H.CodeunitRange$(3585, 3675), H.CodeunitRange$(_8204, _8205), H.CodeunitRange$(_9676, _9676)], t1)), H.NotoFont$("Noto Sans", H.setRuntimeTypeInfo([H.CodeunitRange$(0, 255), H.CodeunitRange$(305, 305), H.CodeunitRange$(338, 339), H.CodeunitRange$(699, 700), H.CodeunitRange$(710, 710), H.CodeunitRange$(730, 730), H.CodeunitRange$(732, 732), H.CodeunitRange$(8192, 8303), H.CodeunitRange$(8308, 8308), H.CodeunitRange$(8364, 8364), H.CodeunitRange$(8482, 8482), H.CodeunitRange$(8593, 8593), H.CodeunitRange$(8595, 8595), H.CodeunitRange$(8722, 8722), H.CodeunitRange$(8725, 8725), H.CodeunitRange$(65279, 65279), H.CodeunitRange$(65533, 65533), H.CodeunitRange$(1024, 1119), H.CodeunitRange$(1168, 1169), H.CodeunitRange$(1200, 1201), H.CodeunitRange$(8470, 8470), H.CodeunitRange$(1120, 1327), H.CodeunitRange$(7296, 7304), H.CodeunitRange$(8372, 8372), H.CodeunitRange$(11744, 11775), H.CodeunitRange$(42560, 42655), H.CodeunitRange$(65070, 65071), H.CodeunitRange$(880, 1023), H.CodeunitRange$(7936, 8191), H.CodeunitRange$(256, 591), H.CodeunitRange$(601, 601), H.CodeunitRange$(7680, 7935), H.CodeunitRange$(8224, 8224), H.CodeunitRange$(8352, 8363), H.CodeunitRange$(8365, 8399), H.CodeunitRange$(8467, 8467), H.CodeunitRange$(11360, 11391), H.CodeunitRange$(42784, 43007), H.CodeunitRange$(258, 259), H.CodeunitRange$(272, 273), H.CodeunitRange$(296, 297), H.CodeunitRange$(360, 361), H.CodeunitRange$(416, 417), H.CodeunitRange$(431, 432), H.CodeunitRange$(7840, 7929), H.CodeunitRange$(8363, 8363)], t1))], type$.JSArray_NotoFont); }); _lazy($, "notoDownloadQueue", "$get$notoDownloadQueue", function() { var t1 = type$._ResolvedNotoSubset; return new H.FallbackFontDownloadQueue(new H.NotoDownloader(), P.LinkedHashSet_LinkedHashSet$_empty(t1), P.LinkedHashMap_LinkedHashMap$_empty(type$.String, t1)); }); _lazy($, "httpRequestFactory", "$get$httpRequestFactory", function() { return new H.httpRequestFactory_closure(); }); _lazyFinal($, "canvasKitJavaScriptBindingsUrl", "$get$canvasKitJavaScriptBindingsUrl", function() { return "https://unpkg.com/canvaskit-wasm@0.25.1/bin/profiling/canvaskit.js"; }); _lazyFinal($, "SkiaObjects_expensiveCache", "$get$SkiaObjects_expensiveCache", function() { return new H.SkiaObjectCache(1024, new P.DoubleLinkedQueue(H.findType("DoubleLinkedQueue>")), P.LinkedHashMap_LinkedHashMap$_empty(H.findType("SkiaObject"), H.findType("DoubleLinkedQueueEntry>"))); }); _lazyFinal($, "CkParagraphBuilder__defaultTextForeground", "$get$CkParagraphBuilder__defaultTextForeground", function() { return new self.window.flutterCanvasKit.Paint(); }); _lazyFinal($, "CkParagraphBuilder__defaultTextBackground", "$get$CkParagraphBuilder__defaultTextBackground", function() { var t1 = new self.window.flutterCanvasKit.Paint(); J.setColorInt$1$x(t1, 0); return t1; }); _lazyFinal($, "domRenderer", "$get$domRenderer", function() { return H.DomRenderer$(); }); _lazyFinal($, "SaveElementStackTracking__unitZ", "$get$SaveElementStackTracking__unitZ", function() { return H.Vector3_Vector3(0, 0, 1); }); _lazyFinal($, "_PaintBounds__tempRectData", "$get$_PaintBounds__tempRectData", function() { return H.NativeFloat32List_NativeFloat32List(4); }); _lazyFinal($, "_WebGlRenderer__vertexIndicesForRect", "$get$_WebGlRenderer__vertexIndicesForRect", function() { return H.NativeUint16List_NativeUint16List$fromList(H.setRuntimeTypeInfo([0, 1, 2, 2, 3, 0], type$.JSArray_int)); }); _lazyFinal($, "_supportsDecode", "$get$_supportsDecode", function() { return W.window().Image.prototype.decode != null; }); _lazyFinal($, "_kLogicalKeyToModifierGetter", "$get$_kLogicalKeyToModifierGetter", function() { return P.LinkedHashMap_LinkedHashMap$_literal([12884902146, new H._kLogicalKeyToModifierGetter_closure(), 17179869442, new H._kLogicalKeyToModifierGetter_closure0(), 12884902149, new H._kLogicalKeyToModifierGetter_closure1(), 17179869445, new H._kLogicalKeyToModifierGetter_closure2(), 12884902157, new H._kLogicalKeyToModifierGetter_closure3(), 17179869453, new H._kLogicalKeyToModifierGetter_closure4(), 12884902153, new H._kLogicalKeyToModifierGetter_closure5(), 17179869449, new H._kLogicalKeyToModifierGetter_closure6()], type$.int, H.findType("bool(FlutterHtmlKeyboardEvent)")); }); _lazyFinal($, "EnginePlatformDispatcher__instance", "$get$EnginePlatformDispatcher__instance", function() { var t1 = type$.Object; t1 = new H.EnginePlatformDispatcher(P.PlatformConfiguration$(C.C_AccessibilityFeatures, false, "/", H.EnginePlatformDispatcher_parseBrowserLanguages(), C.Brightness_1, false, 1), P.LinkedHashMap_LinkedHashMap$_empty(t1, H.findType("FlutterWindow")), P.LinkedHashMap_LinkedHashMap$_empty(t1, H.findType("ViewConfiguration")), W.window().matchMedia("(prefers-color-scheme: dark)")); t1._addBrightnessMediaQueryListener$0(); return t1; }); _lazy($, "_frameTimingsLastSubmitTime", "$get$_frameTimingsLastSubmitTime", function() { return H._nowMicros(); }); _lazyFinal($, "accessibilityAnnouncements", "$get$accessibilityAnnouncements", function() { var t1 = $.AccessibilityAnnouncements__instance; return t1 == null ? $.AccessibilityAnnouncements__instance = H.AccessibilityAnnouncements$_() : t1; }); _lazyFinal($, "_roleFactories", "$get$_roleFactories", function() { return P.LinkedHashMap_LinkedHashMap$_literal([C.Role_0, new H._roleFactories_closure(), C.Role_1, new H._roleFactories_closure0(), C.Role_2, new H._roleFactories_closure1(), C.Role_3, new H._roleFactories_closure2(), C.Role_4, new H._roleFactories_closure3(), C.Role_5, new H._roleFactories_closure4(), C.Role_6, new H._roleFactories_closure5(), C.Role_7, new H._roleFactories_closure6()], type$.Role, H.findType("RoleManager(SemanticsObject)")); }); _lazyFinal($, "FontManager_notPunctuation", "$get$FontManager_notPunctuation", function() { return P.RegExp_RegExp("[a-z0-9\\s]+", false, false); }); _lazyFinal($, "FontManager_startWithDigit", "$get$FontManager_startWithDigit", function() { return P.RegExp_RegExp("\\b\\d", true, false); }); _lazyFinal($, "supportsFontLoadingApi", "$get$supportsFontLoadingApi", function() { return P.hasProperty(W.window(), "FontFace"); }); _lazyFinal($, "supportsFontsClearApi", "$get$supportsFontsClearApi", function() { if (P.hasProperty(W.document(), "fonts")) { var t1 = W.document().fonts; t1.toString; t1 = P.hasProperty(t1, "clear"); } else t1 = false; return t1; }); _lazy($, "Spanometer__rulerHost", "$get$Spanometer__rulerHost", function() { return H.RulerHost$(); }); _lazy($, "lineLookup", "$get$lineLookup", function() { return H.UnicodePropertyLookup_UnicodePropertyLookup$fromPackedData("00000008A0009!B000a!C000b000cD000d!E000e000vA000w!F000x!G000y!H000z!I0010!J0011!K0012!I0013!H0014!L0015!M0016!I0017!J0018!N0019!O001a!N001b!P001c001lQ001m001nN001o001qI001r!G001s002iI002j!L002k!J002l!M002m003eI003f!L003g!B003h!R003i!I003j003oA003p!D003q004fA004g!S004h!L004i!K004j004lJ004m004qI004r!H004s!I004t!B004u004vI004w!K004x!J004y004zI0050!T00510056I0057!H0058005aI005b!L005c00jrI00js!T00jt00jvI00jw!T00jx00keI00kf!T00kg00lbI00lc00niA00nj!S00nk00nvA00nw00o2S00o300ofA00og00otI00ou!N00ov00w2I00w300w9A00wa013cI013d!N013e!B013h013iI013j!J013l014tA014u!B014v!A014w!I014x014yA014z!I01500151A0152!G0153!A015c0162U0167016aU016b016wI016x016zK01700171N01720173I0174017eA017f!G017g!A017i017jG017k018qI018r019bA019c019lQ019m!K019n019oQ019p019rI019s!A019t01cjI01ck!G01cl!I01cm01csA01ct01cuI01cv01d0A01d101d2I01d301d4A01d5!I01d601d9A01da01dbI01dc01dlQ01dm01e8I01e9!A01ea01f3I01f401fuA01fx01idI01ie01ioA01ip!I01j401jdQ01je01kaI01kb01kjA01kk01knI01ko!N01kp!G01kq!I01kt!A01ku01kvJ01kw01lhI01li01llA01lm!I01ln01lvA01lw!I01lx01lzA01m0!I01m101m5A01m801ncI01nd01nfA01ni01qfI01qr01r5A01r6!I01r701s3A01s401tlI01tm01toA01tp!I01tq01u7A01u8!I01u901ufA01ug01upI01uq01urA01us01utB01uu01v3Q01v401vkI01vl01vnA01vp01x5I01x8!A01x9!I01xa01xgA01xj01xkA01xn01xpA01xq!I01xz!A01y401y9I01ya01ybA01ye01ynQ01yo01ypI01yq01yrK01ys01ywI01yx!K01yy!I01yz!J01z001z1I01z2!A01z501z7A01z9020pI020s!A020u020yA02130214A02170219A021d!A021l021qI021y0227Q02280229A022a022cI022d!A022e!I022p022rA022t0249I024c!A024d!I024e024lA024n024pA024r024tA024w025dI025e025fA025i025rQ025s!I025t!J0261!I02620267A0269026bA026d027tI027w!A027x!I027y0284A02870288A028b028dA028l028nA028s028xI028y028zA0292029bQ029c029jI029u!A029v02bdI02bi02bmA02bq02bsA02bu02bxA02c0!I02c7!A02cm02cvQ02cw02d4I02d5!J02d6!I02dc02dgA02dh02f1I02f202f8A02fa02fcA02fe02fhA02fp02fqA02fs02g1I02g202g3A02g602gfQ02gn!T02go02gwI02gx02gzA02h0!T02h102ihI02ik!A02il!I02im02isA02iu02iwA02iy02j1A02j902jaA02ji02jlI02jm02jnA02jq02jzQ02k102k2I02kg02kjA02kk02m2I02m302m4A02m5!I02m602mcA02me02mgA02mi02mlA02mm02muI02mv!A02mw02n5I02n602n7A02na02njQ02nk02nsI02nt!K02nu02nzI02o102o3A02o502pyI02q2!A02q702qcA02qe!A02qg02qnA02qu02r3Q02r602r7A02r802t6I02tb!J02tc02trI02ts02u1Q02u202u3B02v502x9I02xc02xlQ02xo02yoI02yp02ysT02yt!I02yu02yvT02yw!S02yx02yyT02yz!B02z0!S02z102z5G02z6!S02z7!I02z8!G02z902zbI02zc02zdA02ze02zjI02zk02ztQ02zu0303I0304!B0305!A0306!I0307!A0308!I0309!A030a!L030b!R030c!L030d!R030e030fA030g031oI031t0326A0327!B0328032cA032d!B032e032fA032g032kI032l032vA032x033wA033y033zB03400345I0346!A0347034fI034g034hT034i!B034j!T034k034oI034p034qS035s037jI037k037tQ037u037vB037w039rI039s03a1Q03a203cvI03cw03fjV03fk03hjW03hk03jzX03k003tmI03tp03trA03ts!I03tt!B03tu03y5I03y8!B03y904fzI04g0!B04g104gqI04gr!L04gs!R04gw04iyI04iz04j1B04j204k1I04k204k4A04kg04kxI04ky04l0A04l104l2B04lc04ltI04lu04lvA04m804moI04mq04mrA04n404pfI04pg04phB04pi!Y04pj!I04pk!B04pl!I04pm!B04pn!J04po04ppI04ps04q1Q04q804qpI04qq04qrG04qs04qtB04qu!T04qv!I04qw04qxG04qy!I04qz04r1A04r2!S04r404rdQ04rk04ucI04ud04ueA04uf04vcI04vd!A04ve04ymI04yo04yzA04z404zfA04zk!I04zo04zpG04zq04zzQ0500053dI053k053tQ053u055iI055j055nA055q058cI058f!A058g058pQ058w0595Q059c059pI059s05a8A05c005c4A05c505dfI05dg05dwA05dx05e3I05e805ehQ05ei05ejB05ek!I05el05eoB05ep05eyI05ez05f7A05f805fgI05fk05fmA05fn05ggI05gh05gtA05gu05gvI05gw05h5Q05h605idI05ie05irA05j005k3I05k405knA05kr05kvB05kw05l5Q05l905lbI05lc05llQ05lm05mlI05mm05mnB05mo05onI05ow05oyA05oz!I05p005pkA05pl05poI05pp!A05pq05pvI05pw!A05px05pyI05pz05q1A05q205vjI05vk05x5A05x705xbA05xc06bgI06bh!T06bi!I06bk06bqB06br!S06bs06buB06bv!Z06bw!A06bx!a06by06bzA06c0!B06c1!S06c206c3B06c4!b06c506c7I06c806c9H06ca!L06cb06cdH06ce!L06cf!H06cg06cjI06ck06cmc06cn!B06co06cpD06cq06cuA06cv!S06cw06d3K06d4!I06d506d6H06d7!I06d806d9Y06da06dfI06dg!N06dh!L06di!R06dj06dlY06dm06dxI06dy!B06dz!I06e006e3B06e4!I06e506e7B06e8!d06e906ecI06ee06enA06eo06f0I06f1!L06f2!R06f306fgI06fh!L06fi!R06fk06fwI06g006g6J06g7!K06g806glJ06gm!K06gn06gqJ06gr!K06gs06gtJ06gu!K06gv06hbJ06hc06i8A06io06iqI06ir!K06is06iwI06ix!K06iy06j9I06ja!J06jb06q9I06qa06qbJ06qc06weI06wf!c06wg06x3I06x4!L06x5!R06x6!L06x7!R06x806xlI06xm06xne06xo06y0I06y1!L06y2!R06y3073jI073k073ne073o07i7I07i807ibe07ic07irI07is07ite07iu07ivI07iw!e07ix!I07iy07j0e07j1!f07j207j3e07j407jsI07jt07jve07jw07l3I07l4!e07l507lqI07lr!e07ls07ngI07nh07nse07nt07nwI07nx!e07ny!I07nz07o1e07o2!I07o307o4e07o507o7I07o807o9e07oa07obI07oc!e07od07oeI07of07ohe07oi07opI07oq!e07or07owI07ox07p1e07p2!I07p307p4e07p5!f07p6!e07p707p8I07p907pge07ph07pjI07pk07ple07pm07ppf07pq07ruI07rv07s0H07s1!I07s207s3G07s4!e07s507s7I07s8!L07s9!R07sa!L07sb!R07sc!L07sd!R07se!L07sf!R07sg!L07sh!R07si!L07sj!R07sk!L07sl!R07sm07usI07ut!L07uu!R07uv07vpI07vq!L07vr!R07vs!L07vt!R07vu!L07vv!R07vw!L07vx!R07vy!L07vz!R07w00876I0877!L0878!R0879!L087a!R087b!L087c!R087d!L087e!R087f!L087g!R087h!L087i!R087j!L087k!R087l!L087m!R087n!L087o!R087p!L087q!R087r!L087s!R087t089jI089k!L089l!R089m!L089n!R089o08ajI08ak!L08al!R08am08viI08vj08vlA08vm08vnI08vt!G08vu08vwB08vx!I08vy!G08vz!B08w008z3I08z4!B08zj!A08zk0926I09280933A0934093hH093i093pB093q!I093r!B093s!L093t!B093u093vI093w093xH093y093zI09400941H0942!L0943!R0944!L0945!R0946!L0947!R0948!L0949!R094a094dB094e!G094f!I094g094hB094i!I094j094kB094l094pI094q094rb094s094uB094v!I094w094xB094y!L094z0956B0957!I0958!B0959!I095a095bB095c095eI096o097de097f099ve09a809g5e09gw09h7e09hc!B09hd09heR09hf09hge09hh!Y09hi09hje09hk!L09hl!R09hm!L09hn!R09ho!L09hp!R09hq!L09hr!R09hs!L09ht!R09hu09hve09hw!L09hx!R09hy!L09hz!R09i0!L09i1!R09i2!L09i3!R09i4!Y09i5!L09i609i7R09i809ihe09ii09inA09io09ise09it!A09iu09iye09iz09j0Y09j109j3e09j5!Y09j6!e09j7!Y09j8!e09j9!Y09ja!e09jb!Y09jc!e09jd!Y09je09k2e09k3!Y09k409kye09kz!Y09l0!e09l1!Y09l2!e09l3!Y09l409l9e09la!Y09lb09lge09lh09liY09ll09lmA09ln09lqY09lr!e09ls09ltY09lu!e09lv!Y09lw!e09lx!Y09ly!e09lz!Y09m0!e09m1!Y09m209mqe09mr!Y09ms09nme09nn!Y09no!e09np!Y09nq!e09nr!Y09ns09nxe09ny!Y09nz09o4e09o509o6Y09o709oae09ob09oeY09of!e09ol09pre09pt09see09sg09ure09v409vjY09vk09wee09wg09xje09xk09xrI09xs0fcve0fcw0fenI0feo0vmce0vmd!Y0vme0wi4e0wi80wjqe0wk00wl9I0wla0wlbB0wlc0wssI0wst!B0wsu!G0wsv!B0wsw0wtbI0wtc0wtlQ0wtm0wviI0wvj0wvmA0wvn!I0wvo0wvxA0wvy0wwtI0wwu0wwvA0www0wz3I0wz40wz5A0wz6!I0wz70wzbB0wzk0x6pI0x6q!A0x6r0x6tI0x6u!A0x6v0x6yI0x6z!A0x700x7mI0x7n0x7rA0x7s0x7vI0x7w!A0x800x87I0x88!K0x890x9vI0x9w0x9xT0x9y0x9zG0xa80xa9A0xaa0xbnI0xbo0xc5A0xce0xcfB0xcg0xcpQ0xcw0xddA0xde0xdnI0xdo!T0xdp0xdqI0xdr!A0xds0xe1Q0xe20xetI0xeu0xf1A0xf20xf3B0xf40xfqI0xfr0xg3A0xgf!I0xgg0xh8V0xhc0xhfA0xhg0xiqI0xir0xj4A0xj50xjaI0xjb0xjdB0xje0xjjI0xjk0xjtQ0xjy0xkfI0xkg0xkpQ0xkq0xm0I0xm10xmeA0xmo0xmqI0xmr!A0xms0xmzI0xn00xn1A0xn40xndQ0xng!I0xnh0xnjB0xnk0xreI0xrf0xrjA0xrk0xrlB0xrm0xroI0xrp0xrqA0xs10xyaI0xyb0xyiA0xyj!B0xyk0xylA0xyo0xyxQ0xz4!g0xz50xzvh0xzw!g0xzx0y0nh0y0o!g0y0p0y1fh0y1g!g0y1h0y27h0y28!g0y290y2zh0y30!g0y310y3rh0y3s!g0y3t0y4jh0y4k!g0y4l0y5bh0y5c!g0y5d0y63h0y64!g0y650y6vh0y6w!g0y6x0y7nh0y7o!g0y7p0y8fh0y8g!g0y8h0y97h0y98!g0y990y9zh0ya0!g0ya10yarh0yas!g0yat0ybjh0ybk!g0ybl0ycbh0ycc!g0ycd0yd3h0yd4!g0yd50ydvh0ydw!g0ydx0yenh0yeo!g0yep0yffh0yfg!g0yfh0yg7h0yg8!g0yg90ygzh0yh0!g0yh10yhrh0yhs!g0yht0yijh0yik!g0yil0yjbh0yjc!g0yjd0yk3h0yk4!g0yk50ykvh0ykw!g0ykx0ylnh0ylo!g0ylp0ymfh0ymg!g0ymh0yn7h0yn8!g0yn90ynzh0yo0!g0yo10yorh0yos!g0yot0ypjh0ypk!g0ypl0yqbh0yqc!g0yqd0yr3h0yr4!g0yr50yrvh0yrw!g0yrx0ysnh0yso!g0ysp0ytfh0ytg!g0yth0yu7h0yu8!g0yu90yuzh0yv0!g0yv10yvrh0yvs!g0yvt0ywjh0ywk!g0ywl0yxbh0yxc!g0yxd0yy3h0yy4!g0yy50yyvh0yyw!g0yyx0yznh0yzo!g0yzp0z0fh0z0g!g0z0h0z17h0z18!g0z190z1zh0z20!g0z210z2rh0z2s!g0z2t0z3jh0z3k!g0z3l0z4bh0z4c!g0z4d0z53h0z54!g0z550z5vh0z5w!g0z5x0z6nh0z6o!g0z6p0z7fh0z7g!g0z7h0z87h0z88!g0z890z8zh0z90!g0z910z9rh0z9s!g0z9t0zajh0zak!g0zal0zbbh0zbc!g0zbd0zc3h0zc4!g0zc50zcvh0zcw!g0zcx0zdnh0zdo!g0zdp0zefh0zeg!g0zeh0zf7h0zf8!g0zf90zfzh0zg0!g0zg10zgrh0zgs!g0zgt0zhjh0zhk!g0zhl0zibh0zic!g0zid0zj3h0zj4!g0zj50zjvh0zjw!g0zjx0zknh0zko!g0zkp0zlfh0zlg!g0zlh0zm7h0zm8!g0zm90zmzh0zn0!g0zn10znrh0zns!g0znt0zojh0zok!g0zol0zpbh0zpc!g0zpd0zq3h0zq4!g0zq50zqvh0zqw!g0zqx0zrnh0zro!g0zrp0zsfh0zsg!g0zsh0zt7h0zt8!g0zt90ztzh0zu0!g0zu10zurh0zus!g0zut0zvjh0zvk!g0zvl0zwbh0zwc!g0zwd0zx3h0zx4!g0zx50zxvh0zxw!g0zxx0zynh0zyo!g0zyp0zzfh0zzg!g0zzh1007h1008!g1009100zh1010!g1011101rh101s!g101t102jh102k!g102l103bh103c!g103d1043h1044!g1045104vh104w!g104x105nh105o!g105p106fh106g!g106h1077h1078!g1079107zh1080!g1081108rh108s!g108t109jh109k!g109l10abh10ac!g10ad10b3h10b4!g10b510bvh10bw!g10bx10cnh10co!g10cp10dfh10dg!g10dh10e7h10e8!g10e910ezh10f0!g10f110frh10fs!g10ft10gjh10gk!g10gl10hbh10hc!g10hd10i3h10i4!g10i510ivh10iw!g10ix10jnh10jo!g10jp10kfh10kg!g10kh10l7h10l8!g10l910lzh10m0!g10m110mrh10ms!g10mt10njh10nk!g10nl10obh10oc!g10od10p3h10p4!g10p510pvh10pw!g10px10qnh10qo!g10qp10rfh10rg!g10rh10s7h10s8!g10s910szh10t0!g10t110trh10ts!g10tt10ujh10uk!g10ul10vbh10vc!g10vd10w3h10w4!g10w510wvh10ww!g10wx10xnh10xo!g10xp10yfh10yg!g10yh10z7h10z8!g10z910zzh1100!g1101110rh110s!g110t111jh111k!g111l112bh112c!g112d1133h1134!g1135113vh113w!g113x114nh114o!g114p115fh115g!g115h1167h1168!g1169116zh1170!g1171117rh117s!g117t118jh118k!g118l119bh119c!g119d11a3h11a4!g11a511avh11aw!g11ax11bnh11bo!g11bp11cfh11cg!g11ch11d7h11d8!g11d911dzh11e0!g11e111erh11es!g11et11fjh11fk!g11fl11gbh11gc!g11gd11h3h11h4!g11h511hvh11hw!g11hx11inh11io!g11ip11jfh11jg!g11jh11k7h11k8!g11k911kzh11l0!g11l111lrh11ls!g11lt11mjh11mk!g11ml11nbh11nc!g11nd11o3h11o4!g11o511ovh11ow!g11ox11pnh11po!g11pp11qfh11qg!g11qh11r7h11r8!g11r911rzh11s0!g11s111srh11ss!g11st11tjh11tk!g11tl11ubh11uc!g11ud11v3h11v4!g11v511vvh11vw!g11vx11wnh11wo!g11wp11xfh11xg!g11xh11y7h11y8!g11y911yzh11z0!g11z111zrh11zs!g11zt120jh120k!g120l121bh121c!g121d1223h1224!g1225122vh122w!g122x123nh123o!g123p124fh124g!g124h1257h1258!g1259125zh1260!g1261126rh126s!g126t127jh127k!g127l128bh128c!g128d1293h1294!g1295129vh129w!g129x12anh12ao!g12ap12bfh12bg!g12bh12c7h12c8!g12c912czh12d0!g12d112drh12ds!g12dt12ejh12ek!g12el12fbh12fc!g12fd12g3h12g4!g12g512gvh12gw!g12gx12hnh12ho!g12hp12ifh12ig!g12ih12j7h12j8!g12j912jzh12k0!g12k112krh12ks!g12kt12ljh12lk!g12ll12mbh12mc!g12md12n3h12n4!g12n512nvh12nw!g12nx12onh12oo!g12op12pfh12pg!g12ph12q7h12q8!g12q912qzh12r0!g12r112rrh12rs!g12rt12sjh12sk!g12sl12tbh12tc!g12td12u3h12u4!g12u512uvh12uw!g12ux12vnh12vo!g12vp12wfh12wg!g12wh12x7h12x8!g12x912xzh12y0!g12y112yrh12ys!g12yt12zjh12zk!g12zl130bh130c!g130d1313h1314!g1315131vh131w!g131x132nh132o!g132p133fh133g!g133h1347h1348!g1349134zh1350!g1351135rh135s!g135t136jh136k!g136l137bh137c!g137d1383h1384!g1385138vh138w!g138x139nh139o!g139p13afh13ag!g13ah13b7h13b8!g13b913bzh13c0!g13c113crh13cs!g13ct13djh13dk!g13dl13ebh13ec!g13ed13f3h13f4!g13f513fvh13fw!g13fx13gnh13go!g13gp13hfh13hg!g13hh13i7h13i8!g13i913izh13j0!g13j113jrh13js!g13jt13kjh13kk!g13kl13lbh13lc!g13ld13m3h13m4!g13m513mvh13mw!g13mx13nnh13no!g13np13ofh13og!g13oh13p7h13p8!g13p913pzh13q0!g13q113qrh13qs!g13qt13rjh13rk!g13rl13sbh13sc!g13sd13t3h13t4!g13t513tvh13tw!g13tx13unh13uo!g13up13vfh13vg!g13vh13w7h13w8!g13w913wzh13x0!g13x113xrh13xs!g13xt13yjh13yk!g13yl13zbh13zc!g13zd1403h1404!g1405140vh140w!g140x141nh141o!g141p142fh142g!g142h1437h1438!g1439143zh1440!g1441144rh144s!g144t145jh145k!g145l146bh146c!g146d1473h1474!g1475147vh147w!g147x148nh148o!g148p149fh149g!g149h14a7h14a8!g14a914azh14b0!g14b114brh14bs!g14bt14cjh14ck!g14cl14dbh14dc!g14dd14e3h14e4!g14e514evh14ew!g14ex14fnh14fo!g14fp14gfh14gg!g14gh14h7h14h8!g14h914hzh14i0!g14i114irh14is!g14it14jjh14jk!g14jl14kbh14kc!g14kd14l3h14l4!g14l514lvh14lw!g14lx14mnh14mo!g14mp14nfh14ng!g14nh14o7h14o8!g14o914ozh14p0!g14p114prh14ps!g14pt14qjh14qk!g14ql14rbh14rc!g14rd14s3h14s4!g14s514svh14sw!g14sx14tnh14to!g14tp14ufh14ug!g14uh14v7h14v8!g14v914vzh14w0!g14w114wrh14ws!g14wt14xjh14xk!g14xl14ybh14yc!g14yd14z3h14z4!g14z514zvh14zw!g14zx150nh150o!g150p151fh151g!g151h1527h1528!g1529152zh1530!g1531153rh153s!g153t154jh154k!g154l155bh155c!g155d1563h1564!g1565156vh156w!g156x157nh157o!g157p158fh158g!g158h1597h1598!g1599159zh15a0!g15a115arh15as!g15at15bjh15bk!g15bl15cbh15cc!g15cd15d3h15d4!g15d515dvh15dw!g15dx15enh15eo!g15ep15ffh15fg!g15fh15g7h15g8!g15g915gzh15h0!g15h115hrh15hs!g15ht15ijh15ik!g15il15jbh15jc!g15jd15k3h15k4!g15k515kvh15kw!g15kx15lnh15lo!g15lp15mfh15mg!g15mh15n7h15n8!g15n915nzh15o0!g15o115orh15os!g15ot15pjh15pk!g15pl15qbh15qc!g15qd15r3h15r4!g15r515rvh15rw!g15rx15snh15so!g15sp15tfh15tg!g15th15u7h15u8!g15u915uzh15v0!g15v115vrh15vs!g15vt15wjh15wk!g15wl15xbh15xc!g15xd15y3h15y4!g15y515yvh15yw!g15yx15znh15zo!g15zp160fh160g!g160h1617h1618!g1619161zh1620!g1621162rh162s!g162t163jh163k!g163l164bh164c!g164d1653h1654!g1655165vh165w!g165x166nh166o!g166p167fh167g!g167h1687h1688!g1689168zh1690!g1691169rh169s!g169t16ajh16ak!g16al16bbh16bc!g16bd16c3h16c4!g16c516cvh16cw!g16cx16dnh16do!g16dp16efh16eg!g16eh16f7h16f8!g16f916fzh16g0!g16g116grh16gs!g16gt16hjh16hk!g16hl16ibh16ic!g16id16j3h16j4!g16j516jvh16jw!g16jx16knh16ko!g16kp16lfh16ls16meW16mj16nvX16o01d6nI1d6o1dkve1dkw1dljI1dlp!U1dlq!A1dlr1dm0U1dm1!I1dm21dmeU1dmg1dmkU1dmm!U1dmo1dmpU1dmr1dmsU1dmu1dn3U1dn41e0tI1e0u!R1e0v!L1e1c1e63I1e64!K1e65!I1e681e6nA1e6o!N1e6p1e6qR1e6r1e6sN1e6t1e6uG1e6v!L1e6w!R1e6x!c1e741e7jA1e7k1e7oe1e7p!L1e7q!R1e7r!L1e7s!R1e7t!L1e7u!R1e7v!L1e7w!R1e7x!L1e7y!R1e7z!L1e80!R1e81!L1e82!R1e83!L1e84!R1e851e86e1e87!L1e88!R1e891e8fe1e8g!R1e8h!e1e8i!R1e8k1e8lY1e8m1e8nG1e8o!e1e8p!L1e8q!R1e8r!L1e8s!R1e8t!L1e8u!R1e8v1e92e1e94!e1e95!J1e96!K1e97!e1e9c1ed8I1edb!d1edd!G1ede1edfe1edg!J1edh!K1edi1edje1edk!L1edl!R1edm1edne1edo!R1edp!e1edq!R1edr1ee1e1ee21ee3Y1ee41ee6e1ee7!G1ee81eeye1eez!L1ef0!e1ef1!R1ef21efue1efv!L1efw!e1efx!R1efy!e1efz!L1eg01eg1R1eg2!L1eg31eg4R1eg5!Y1eg6!e1eg71eggY1egh1ehpe1ehq1ehrY1ehs1eime1eiq1eive1eiy1ej3e1ej61ejbe1eje1ejge1ejk!K1ejl!J1ejm1ejoe1ejp1ejqJ1ejs1ejyI1ek91ekbA1ekc!i1ekd1ereI1erk1ermB1err1eykI1eyl!A1f281f4gI1f4w!A1f4x1f91I1f921f96A1f9c1fa5I1fa7!B1fa81fbjI1fbk!B1fbl1fh9I1fhc1fhlQ1fhs1g7pI1g7r!B1g7s1gd7I1gdb!B1gdc1gjkI1gjl1gjnA1gjp1gjqA1gjw1gjzA1gk01gl1I1gl41gl6A1glb!A1glc1glkI1gls1glzB1gm01gpwI1gpx1gpyA1gq31gq7I1gq81gqdB1gqe!c1gqo1gs5I1gs91gsfB1gsg1h5vI1h5w1h5zA1h681h6hQ1heo1hgpI1hgr1hgsA1hgt!B1hgw1hl1I1hl21hlcA1hld1hpyI1hq81hqaA1hqb1hrrI1hrs1hs6A1hs71hs8B1hs91ht1I1ht21htbQ1htr1htuA1htv1hv3I1hv41hveA1hvf1hvhI1hvi1hvlB1hvx1hwoI1hww1hx5Q1hxc1hxeA1hxf1hyeI1hyf1hysA1hyu1hz3Q1hz41hz7B1hz8!I1hz91hzaA1hzb1i0iI1i0j!A1i0k!I1i0l!T1i0m!I1i0w1i0yA1i0z1i2aI1i2b1i2oA1i2p1i2sI1i2t1i2uB1i2v!I1i2w!B1i2x1i30A1i31!I1i321i33A1i341i3dQ1i3e!I1i3f!T1i3g!I1i3h1i3jB1i3l1i5nI1i5o1i5zA1i601i61B1i62!I1i631i64B1i65!I1i66!A1i801i94I1i95!B1i9c1iamI1ian1iayA1ib41ibdQ1ibk1ibnA1ibp1id5I1id71id8A1id9!I1ida1idgA1idj1idkA1idn1idpA1ids!I1idz!A1ie51ie9I1iea1iebA1iee1iekA1ieo1iesA1iio1ik4I1ik51ikmA1ikn1ikqI1ikr1ikuB1ikv!I1ikw1il5Q1il61il7B1il9!I1ila!A1ilb1injI1ink1io3A1io41io7I1iog1iopQ1itc1iumI1iun1iutA1iuw1iv4A1iv5!T1iv61iv7B1iv81iv9G1iva1ivcI1ivd1ivrB1ivs1ivvI1ivw1ivxA1iww1iy7I1iy81iyoA1iyp1iyqB1iyr1iysI1iz41izdQ1izk1izwT1j0g1j1mI1j1n1j1zA1j20!I1j281j2hQ1j401j57I1j5c1j5lQ1j5m1j5nI1j5o1j5qB1j5r1jcbI1jcc1jcqA1jcr1jhbI1jhc1jhlQ1jhm1jjjI1jjk1jjpA1jjr1jjsA1jjv1jjyA1jjz!I1jk0!A1jk1!I1jk21jk3A1jk41jk6B1jkg1jkpQ1jmo1jo0I1jo11jo7A1joa1jogA1joh!I1joi!T1joj!I1jok!A1jpc!I1jpd1jpmA1jpn1jqqI1jqr1jqxA1jqy!I1jqz1jr2A1jr3!T1jr4!I1jr51jr8B1jr9!T1jra!I1jrb!A1jrk!I1jrl1jrvA1jrw1jt5I1jt61jtlA1jtm1jtoB1jtp!I1jtq1jtsT1jtt1jtuB1juo1k4uI1k4v1k52A1k541k5bA1k5c!I1k5d1k5hB1k5s1k61Q1k621k6kI1k6o!T1k6p!G1k6q1k7jI1k7m1k87A1k891k8mA1kao1kc0I1kc11kc6A1kca!A1kcc1kcdA1kcf1kclA1kcm!I1kcn!A1kcw1kd5Q1kdc1kehI1kei1kemA1keo1kepA1ker1kevA1kew!I1kf41kfdQ1ko01koiI1koj1komA1kon1kv0I1kv11kv4K1kv51kvlI1kvz!B1kw01lriI1lrk1lroB1ls01oifI1oig1oiiL1oij1oilR1oim1ojlI1ojm!R1ojn1ojpI1ojq!L1ojr!R1ojs!L1ojt!R1oju1oqgI1oqh!L1oqi1oqjR1oqk1oviI1ovk1ovqS1ovr!L1ovs!R1s001sctI1scu!L1scv!R1scw1zkuI1zkw1zl5Q1zla1zlbB1zo01zotI1zow1zp0A1zp1!B1zpc1zqnI1zqo1zquA1zqv1zqxB1zqy1zr7I1zr8!B1zr9!I1zrk1zrtQ1zrv20euI20ev20ewB20ex20juI20jz!A20k0!I20k120ljA20lr20luA20lv20m7I20o020o3Y20o4!S20og20ohA20ow25fbe25fk260ve260w26dxI26f426fce2dc02djye2dlc2dleY2dlw2dlzY2dm82dx7e2fpc2ftoI2ftp2ftqA2ftr!B2fts2ftvA2jnk2jxgI2jxh2jxlA2jxm2jxoI2jxp2jyaA2jyb2jycI2jyd2jyjA2jyk2jzdI2jze2jzhA2jzi2k3lI2k3m2k3oA2k3p2l6zI2l722l8fQ2l8g2lmnI2lmo2lo6A2lo72loaI2lob2lpoA2lpp2lpwI2lpx!A2lpy2lqbI2lqc!A2lqd2lqeI2lqf2lqiB2lqj!I2lqz2lr3A2lr52lrjA2mtc2mtiA2mtk2mu0A2mu32mu9A2mub2mucA2mue2muiA2n0g2n1oI2n1s2n1yA2n1z2n25I2n282n2hQ2n2m2ne3I2ne42ne7A2ne82nehQ2nen!J2oe82ojzI2ok02ok6A2olc2on7I2on82oneA2onf!I2onk2ontQ2ony2onzL2p9t2pbfI2pbg!K2pbh2pbjI2pbk!K2pbl2prlI2pz42q67e2q682q6kI2q6l2q6ne2q6o2q98I2q992q9be2q9c2qb0I2qb12qcle2qcm2qdbj2qdc2qo4e2qo5!f2qo62qore2qos2qotI2qou2qpge2qph2qpiI2qpj2qpne2qpo!I2qpp2qpte2qpu2qpwf2qpx2qpye2qpz!f2qq02qq1e2qq22qq4f2qq52qree2qrf2qrjk2qrk2qtde2qte2qtff2qtg2qthe2qti2qtsf2qtt2qude2que2quwf2qux2quze2qv0!f2qv12qv4e2qv52qv7f2qv8!e2qv92qvbf2qvc2qvie2qvj!f2qvk!e2qvl!f2qvm2qvze2qw0!I2qw1!e2qw2!I2qw3!e2qw4!I2qw52qw9e2qwa!f2qwb2qwee2qwf!I2qwg!e2qwh2qwiI2qwj2qyne2qyo2qyuI2qyv2qzae2qzb2qzoI2qzp2r01e2r022r0pI2r0q2r1ve2r1w2r1xf2r1y2r21e2r22!f2r232r2ne2r2o!f2r2p2r2se2r2t2r2uf2r2v2r4je2r4k2r4rI2r4s2r5fe2r5g2r5lI2r5m2r7oe2r7p2r7rf2r7s2r7ue2r7v2r7zf2r802r91I2r922r94H2r952r97Y2r982r9bI2r9c2raae2rab!f2rac2rare2ras2rauf2rav2rb3e2rb4!f2rb52rbfe2rbg!f2rbh2rcve2rcw2rg3I2rg42rgfe2rgg2risI2rit2rjze2rk02rkbI2rkc2rkfe2rkg2rlzI2rm02rm7e2rm82rmhI2rmi2rmne2rmo2rnrI2rns2rnze2ro02rotI2rou2rr3e2rr42rrfI2rrg!f2rrh2rrie2rrj!f2rrk2rrre2rrs2rrzf2rs02rs5e2rs6!f2rs72rsfe2rsg2rspf2rsq2rsre2rss2rsuf2rsv2ruee2ruf!f2rug2rw4e2rw52rw6f2rw7!e2rw82rw9f2rwa!e2rwb!f2rwc2rwse2rwt2rwvf2rww!e2rwx2rx9f2rxa2ry7e2ry82s0jI2s0k2s5be2s5c2sayI2sc02sc9Q2scg2t4te2t4w47p9e47pc5m9pejny9!Ajnz4jo1rAjo5cjobzAl2ionvnhI", 937, C.List_zPV, C.LineCharProperty_8, H.findType("LineCharProperty")); }); _lazyFinal($, "DomParagraphBuilder__paragraphBuilderPop", "$get$DomParagraphBuilder__paragraphBuilderPop", function() { return new P.Object(); }); _lazy($, "wordLookup", "$get$wordLookup", function() { return H.UnicodePropertyLookup_UnicodePropertyLookup$fromPackedData("000a!E000b000cF000d!D000w!R000y!A0013!B0018!M001a!N001c001lO001m!L001n!M001t002iK002n!P002p003eK003p!F004q!K004t!I0051!K0053!L0056!K005c005yK0060006uK006w00k7K00ke00lbK00lc00ofG00og00okK00om00onK00oq00otK00ou!M00ov!K00p2!K00p3!L00p400p6K00p8!K00pa00ptK00pv00s5K00s700w1K00w300w9G00wa010vK010x011yK01210124K0126!K0127!L0128013cK013d!M013e!K013l014tG014v!G014x014yG01500151G0153!G015c0162C0167016aC016b!K016c!L016o016tI01700171M0174017eG017g!I017k018qK018r019bG019c019lO019n!O019o!M019q019rK019s!G019t01cjK01cl!K01cm01csG01ct!I01cv01d0G01d101d2K01d301d4G01d601d9G01da01dbK01dc01dlO01dm01doK01dr!K01e7!I01e8!K01e9!G01ea01f3K01f401fuG01fx01idK01ie01ioG01ip!K01j401jdO01je01kaK01kb01kjG01kk01klK01ko!M01kq!K01kt!G01kw01lhK01li01llG01lm!K01ln01lvG01lw!K01lx01lzG01m0!K01m101m5G01mo01ncK01nd01nfG01nk01nuK01pc01pwK01py01qfK01qr01r5G01r6!I01r701s3G01s401tlK01tm01toG01tp!K01tq01u7G01u8!K01u901ufG01ug01upK01uq01urG01uu01v3O01v501vkK01vl01vnG01vp01vwK01vz01w0K01w301woK01wq01wwK01wy!K01x201x5K01x8!G01x9!K01xa01xgG01xj01xkG01xn01xpG01xq!K01xz!G01y401y5K01y701y9K01ya01ybG01ye01ynO01yo01ypK01z0!K01z2!G01z501z7G01z901zeK01zj01zkK01zn0208K020a020gK020i020jK020l020mK020o020pK020s!G020u020yG02130214G02170219G021d!G021l021oK021q!K021y0227O02280229G022a022cK022d!G022p022rG022t0231K02330235K0237023sK023u0240K02420243K02450249K024c!G024d!K024e024lG024n024pG024r024tG024w!K025c025dK025e025fG025i025rO0261!K02620267G0269026bG026d026kK026n026oK026r027cK027e027kK027m027nK027p027tK027w!G027x!K027y0284G02870288G028b028dG028l028nG028s028tK028v028xK028y028zG0292029bO029d!K029u!G029v!K029x02a2K02a602a8K02aa02adK02ah02aiK02ak!K02am02anK02ar02asK02aw02ayK02b202bdK02bi02bmG02bq02bsG02bu02bxG02c0!K02c7!G02cm02cvO02dc02dgG02dh02doK02dq02dsK02du02egK02ei02exK02f1!K02f202f8G02fa02fcG02fe02fhG02fp02fqG02fs02fuK02g002g1K02g202g3G02g602gfO02gw!K02gx02gzG02h102h8K02ha02hcK02he02i0K02i202ibK02id02ihK02ik!G02il!K02im02isG02iu02iwG02iy02j1G02j902jaG02ji!K02jk02jlK02jm02jnG02jq02jzO02k102k2K02kg02kjG02kk02ksK02ku02kwK02ky02m2K02m302m4G02m5!K02m602mcG02me02mgG02mi02mlG02mm!K02ms02muK02mv!G02n302n5K02n602n7G02na02njO02nu02nzK02o102o3G02o502omK02oq02pdK02pf02pnK02pp!K02ps02pyK02q2!G02q702qcG02qe!G02qg02qnG02qu02r3O02r602r7G02sx!G02t002t6G02tj02tqG02ts02u1O02wh!G02wk02wsG02x402x9G02xc02xlO02yo!K02zc02zdG02zk02ztO0305!G0307!G0309!G030e030fG030g030nK030p031oK031t032cG032e032fG032g032kK032l032vG032x033wG0346!G036z037iG037k037tO03860389G038e038gG038i038kG038n038tG038x0390G039e039pG039r!G039s03a1O03a203a5G03a803b9K03bb!K03bh!K03bk03cqK03cs03m0K03m203m5K03m803meK03mg!K03mi03mlK03mo03nsK03nu03nxK03o003owK03oy03p1K03p403paK03pc!K03pe03phK03pk03pyK03q003rkK03rm03rpK03rs03tmK03tp03trG03uo03v3K03vk03xxK03y003y5K03y904fgK04fj04fzK04g0!R04g104gqK04gw04iyK04j204jcK04jk04jwK04jy04k1K04k204k4G04kg04kxK04ky04l0G04lc04ltK04lu04lvG04m804mkK04mm04moK04mq04mrG04ok04pfG04pp!G04ps04q1O04qz04r1G04r2!I04r404rdO04rk04u0K04u804ucK04ud04ueG04uf04vcK04vd!G04ve!K04vk04xhK04xs04ymK04yo04yzG04z404zfG04zq04zzO053k053tO054w055iK055j055nG0579057iG057k058cG058f!G058g058pO058w0595O059s05a8G05c005c4G05c505dfK05dg05dwG05dx05e3K05e805ehO05ez05f7G05fk05fmG05fn05ggK05gh05gtG05gu05gvK05gw05h5O05h605idK05ie05irG05j405k3K05k405knG05kw05l5O05l905lbK05lc05llO05lm05mlK05mo05mwK05n405oaK05od05ofK05ow05oyG05p005pkG05pl05poK05pp!G05pq05pvK05pw!G05px05pyK05pz05q1G05q2!K05q805vjK05vk05x5G05x705xbG05xc0651K06540659K065c066dK066g066lK066o066vK066x!K066z!K0671!K0673067xK0680069gK069i069oK069q!K069u069wK069y06a4K06a806abK06ae06ajK06ao06b0K06b606b8K06ba06bgK06bk06bqR06bs06buR06bw!G06bx!Q06by06bzI06c806c9N06ck!N06cn!L06co06cpF06cq06cuI06cv!P06db06dcP06dg!M06dw!P06e7!R06e806ecI06ee06enI06ep!K06f3!K06fk06fwK06hc06i8G06iq!K06iv!K06iy06j7K06j9!K06jd06jhK06jo!K06jq!K06js!K06ju06jxK06jz06k9K06kc06kfK06kl06kpK06ku!K06lc06mgK079207ahK08ow08q6K08q808riK08rk08v8K08vf08viK08vj08vlG08vm08vnK08w008x1K08x3!K08x9!K08xc08yvK08z3!K08zj!G08zk0906K090g090mK090o090uK090w0912K0914091aK091c091iK091k091qK091s091yK09200926K09280933G094f!K09hc!R09hh!K09ii09inG09ip09itJ09iz09j0K09ll09lmG09ln09loJ09ls09oaJ09oc09ofJ09ol09prK09pt09seK09sw09trK09v409vjJ0a1c0a2mJ0a2o0a53J0vls0wi4K0wk00wl9K0wlc0wssK0wsw0wtbK0wtc0wtlO0wtm0wtnK0wu80wviK0wvj0wvmG0wvo0wvxG0wvz0wwtK0wwu0wwvG0www0wz3K0wz40wz5G0wzs0x4vK0x4y0x56K0x6d0x6pK0x6q!G0x6r0x6tK0x6u!G0x6v0x6yK0x6z!G0x700x7mK0x7n0x7rG0x7w!G0x8g0x9vK0xa80xa9G0xaa0xbnK0xbo0xc5G0xcg0xcpO0xcw0xddG0xde0xdjK0xdn!K0xdp0xdqK0xdr!G0xds0xe1O0xe20xetK0xeu0xf1G0xf40xfqK0xfr0xg3G0xgg0xh8K0xhc0xhfG0xhg0xiqK0xir0xj4G0xjj!K0xjk0xjtO0xk5!G0xkg0xkpO0xkw0xm0K0xm10xmeG0xmo0xmqK0xmr!G0xms0xmzK0xn00xn1G0xn40xndO0xob0xodG0xps!G0xpu0xpwG0xpz0xq0G0xq60xq7G0xq9!G0xr40xreK0xrf0xrjG0xrm0xroK0xrp0xrqG0xs10xs6K0xs90xseK0xsh0xsmK0xsw0xt2K0xt40xtaK0xtc0xuxK0xv40xyaK0xyb0xyiG0xyk0xylG0xyo0xyxO0xz416lfK16ls16meK16mj16nvK1dkw1dl2K1dlf1dljK1dlp!C1dlq!G1dlr1dm0C1dm21dmeC1dmg1dmkC1dmm!C1dmo1dmpC1dmr1dmsC1dmu1dn3C1dn41dptK1dqr1e0tK1e1c1e33K1e361e4nK1e5s1e63K1e681e6nG1e6o!M1e6r!L1e6s!M1e741e7jG1e7n1e7oP1e8d1e8fP1e8g!M1e8i!N1e8k!M1e8l!L1e9c1e9gK1e9i1ed8K1edb!I1edj!N1edo!M1edq!N1eds1ee1O1ee2!L1ee3!M1ee91eeyK1ef3!P1ef51efuK1eg61ehpJ1ehq1ehrG1ehs1eimK1eiq1eivK1eiy1ej3K1ej61ejbK1eje1ejgK1ek91ekbI1ekg1ekrK1ekt1eliK1elk1em2K1em41em5K1em71emlK1emo1en1K1eo01ereK1etc1eusK1eyl!G1f281f30K1f341f4gK1f4w!G1f5s1f6nK1f711f7uK1f801f91K1f921f96G1f9c1fa5K1fa81fb7K1fbc1fbjK1fbl1fbpK1fcw1fh9K1fhc1fhlO1fhs1firK1fiw1fjvK1fk01fl3K1flc1fmrK1fr41fzqK1g001g0lK1g0w1g13K1g5c1g5hK1g5k!K1g5m1g6tK1g6v1g6wK1g70!K1g731g7pK1g801g8mK1g8w1g9qK1gbk1gc2K1gc41gc5K1gcg1gd1K1gdc1ge1K1gg01ghjK1ghq1ghrK1gjk!K1gjl1gjnG1gjp1gjqG1gjw1gjzG1gk01gk3K1gk51gk7K1gk91gl1K1gl41gl6G1glb!G1gm81gn0K1gn41gnwK1gow1gp3K1gp51gpwK1gpx1gpyG1gqo1gs5K1gsg1gt1K1gtc1gtuK1gu81gupK1gxs1gzsK1h1c1h2qK1h341h4iK1h4w1h5vK1h5w1h5zG1h681h6hO1hfk1hgpK1hgr1hgsG1hgw1hgxK1hj41hjwK1hk7!K1hkg1hl1K1hl21hlcG1ho01hokK1hpc1hpyK1hq81hqaG1hqb1hrrK1hrs1hs6G1ht21htbO1htr1htuG1htv1hv3K1hv41hveG1hvh!I1hvx!I1hw01hwoK1hww1hx5O1hxc1hxeG1hxf1hyeK1hyf1hysG1hyu1hz3O1hz8!K1hz91hzaG1hzb!K1hzk1i0iK1i0j!G1i0m!K1i0w1i0yG1i0z1i2aK1i2b1i2oG1i2p1i2sK1i2x1i30G1i321i33G1i341i3dO1i3e!K1i3g!K1i4g1i4xK1i4z1i5nK1i5o1i5zG1i66!G1i801i86K1i88!K1i8a1i8dK1i8f1i8tK1i8v1i94K1i9c1iamK1ian1iayG1ib41ibdO1ibk1ibnG1ibp1ibwK1ibz1ic0K1ic31icoK1icq1icwK1icy1iczK1id11id5K1id71id8G1id9!K1ida1idgG1idj1idkG1idn1idpG1ids!K1idz!G1ie51ie9K1iea1iebG1iee1iekG1ieo1iesG1iio1ik4K1ik51ikmG1ikn1ikqK1ikw1il5O1ila!G1ilb1ildK1im81injK1ink1io3G1io41io5K1io7!K1iog1iopO1itc1iumK1iun1iutG1iuw1iv4G1ivs1ivvK1ivw1ivxG1iww1iy7K1iy81iyoG1iys!K1iz41izdO1j0g1j1mK1j1n1j1zG1j20!K1j281j2hO1j4t1j57G1j5c1j5lO1jb41jcbK1jcc1jcqG1jfk1jhbK1jhc1jhlO1ji71jieK1jih!K1jik1jirK1jit1jiuK1jiw1jjjK1jjk1jjpG1jjr1jjsG1jjv1jjyG1jjz!K1jk0!G1jk1!K1jk21jk3G1jkg1jkpO1jmo1jmvK1jmy1jo0K1jo11jo7G1joa1jogG1joh!K1joj!K1jok!G1jpc!K1jpd1jpmG1jpn1jqqK1jqr1jqxG1jqy!K1jqz1jr2G1jrb!G1jrk!K1jrl1jrvG1jrw1jt5K1jt61jtlG1jtp!K1juo1jw8K1k3k1k3sK1k3u1k4uK1k4v1k52G1k541k5bG1k5c!K1k5s1k61O1k6q1k7jK1k7m1k87G1k891k8mG1kao1kauK1kaw1kaxK1kaz1kc0K1kc11kc6G1kca!G1kcc1kcdG1kcf1kclG1kcm!K1kcn!G1kcw1kd5O1kdc1kdhK1kdj1kdkK1kdm1kehK1kei1kemG1keo1kepG1ker1kevG1kew!K1kf41kfdO1ko01koiK1koj1komG1kts!K1kw01lllK1log1lriK1ls01lxfK1o1s1oviK1ovk1ovsI1s001sg6K1z401zjsK1zk01zkuK1zkw1zl5O1zo01zotK1zow1zp0G1zpc1zqnK1zqo1zquG1zr41zr7K1zrk1zrtO1zs31zsnK1zst1ztbK20cg20e7K20hs20juK20jz!G20k0!K20k120ljG20lr20luG20lv20m7K20o020o1K20o3!K20o4!G20og20ohG2dc0!J2dlw2dlzJ2fpc2fsaK2fsg2fssK2fsw2ft4K2ftc2ftlK2ftp2ftqG2fts2ftvI2jxh2jxlG2jxp2jxuG2jxv2jy2I2jy32jyaG2jyd2jyjG2jze2jzhG2k3m2k3oG2kg02kicK2kie2kkcK2kke2kkfK2kki!K2kkl2kkmK2kkp2kksK2kku2kl5K2kl7!K2kl92klfK2klh2kn9K2knb2kneK2knh2knoK2knq2knwK2kny2kopK2kor2kouK2kow2kp0K2kp2!K2kp62kpcK2kpe2kytK2kyw2kzkK2kzm2l0aK2l0c2l16K2l182l1wK2l1y2l2sK2l2u2l3iK2l3k2l4eK2l4g2l54K2l562l60K2l622l6qK2l6s2l6zK2l722l8fO2lmo2lo6G2lob2lpoG2lpx!G2lqc!G2lqz2lr3G2lr52lrjG2mtc2mtiG2mtk2mu0G2mu32mu9G2mub2mucG2mue2muiG2n0g2n1oK2n1s2n1yG2n1z2n25K2n282n2hO2n2m!K2ncw2ne3K2ne42ne7G2ne82nehO2oe82ojoK2ok02ok6G2olc2on7K2on82oneG2onf!K2onk2ontO2pkw2pkzK2pl12plrK2plt2pluK2plw!K2plz!K2pm12pmaK2pmc2pmfK2pmh!K2pmj!K2pmq!K2pmv!K2pmx!K2pmz!K2pn12pn3K2pn52pn6K2pn8!K2pnb!K2pnd!K2pnf!K2pnh!K2pnj!K2pnl2pnmK2pno!K2pnr2pnuK2pnw2po2K2po42po7K2po92pocK2poe!K2pog2popK2por2pp7K2ppd2ppfK2pph2pplK2ppn2pq3K2q7k2q89K2q8g2q95K2q9c2qa1K2qcm2qdbH2qrf2qrjG2sc02sc9Ojny9!Ijnz4jo1rGjo5cjobzG", 231, C.List_bso, C.WordCharProperty_18, H.findType("WordCharProperty")); }); _lazyFinal($, "BrowserAutofillHints__singletonInstance", "$get$BrowserAutofillHints__singletonInstance", function() { var t1 = type$.String; return new H.BrowserAutofillHints(P.LinkedHashMap_LinkedHashMap$_literal(["birthday", "bday", "birthdayDay", "bday-day", "birthdayMonth", "bday-month", "birthdayYear", "bday-year", "countryCode", "country", "countryName", "country-name", "creditCardExpirationDate", "cc-exp", "creditCardExpirationMonth", "cc-exp-month", "creditCardExpirationYear", "cc-exp-year", "creditCardFamilyName", "cc-family-name", "creditCardGivenName", "cc-given-name", "creditCardMiddleName", "cc-additional-name", "creditCardName", "cc-name", "creditCardNumber", "cc-number", "creditCardSecurityCode", "cc-csc", "creditCardType", "cc-type", "email", "email", "familyName", "family-name", "fullStreetAddress", "street-address", "gender", "sex", "givenName", "given-name", "impp", "impp", "jobTitle", "organization-title", "language", "language", "middleName", "middleName", "name", "name", "namePrefix", "honorific-prefix", "nameSuffix", "honorific-suffix", "newPassword", "new-password", "nickname", "nickname", "oneTimeCode", "one-time-code", "organizationName", "organization", "password", "current-password", "photo", "photo", "postalCode", "postal-code", "streetAddressLevel1", "address-level1", "streetAddressLevel2", "address-level2", "streetAddressLevel3", "address-level3", "streetAddressLevel4", "address-level4", "streetAddressLine1", "address-line1", "streetAddressLine2", "address-line2", "streetAddressLine3", "address-line3", "telephoneNumber", "tel", "telephoneNumberAreaCode", "tel-area-code", "telephoneNumberCountryCode", "tel-country-code", "telephoneNumberExtension", "tel-extension", "telephoneNumberLocal", "tel-local", "telephoneNumberLocalPrefix", "tel-local-prefix", "telephoneNumberLocalSuffix", "tel-local-suffix", "telephoneNumberNational", "tel-national", "transactionAmount", "transaction-amount", "transactionCurrency", "transaction-currency", "url", "url", "username", "username"], t1, t1)); }); _lazyFinal($, "textEditing", "$get$textEditing", function() { var t1 = new H.HybridTextEditing(); t1.__HybridTextEditing_channel = new H.TextEditingChannel(t1); return t1; }); _lazyFinal($, "formsOnTheDom", "$get$formsOnTheDom", function() { return H.JsLinkedHashMap_JsLinkedHashMap$es6(type$.String, H.findType("FormElement")); }); _lazyFinal($, "_tempRectData", "$get$_tempRectData", function() { return H.NativeFloat32List_NativeFloat32List(4); }); _lazyFinal($, "_tempPointData", "$get$_tempPointData", function() { return H.NativeFloat32List_NativeFloat32List(16); }); _lazyFinal($, "_tempPointMatrix", "$get$_tempPointMatrix", function() { return H.Matrix4$fromFloat32List($.$get$_tempPointData()); }); _lazyFinal($, "_fallbackFontFamily", "$get$_fallbackFontFamily", function() { return H.isMacOrIOS() ? "-apple-system, BlinkMacSystemFont" : "Arial"; }); _lazyFinal($, "_fontChangeMessage", "$get$_fontChangeMessage", function() { return new H.JSONMessageCodec().encodeMessage$1(P.LinkedHashMap_LinkedHashMap$_literal(["type", "fontsChange"], type$.String, type$.dynamic)); }); _lazy($, "printWarning", "$get$printWarning", function() { W.window(); return C.C_Console.get$warn(); }); _lazyFinal($, "window0", "$get$window", function() { return H.EngineSingletonFlutterWindow$(0, $.$get$EnginePlatformDispatcher__instance()); }); _lazyFinal($, "DART_CLOSURE_PROPERTY_NAME", "$get$DART_CLOSURE_PROPERTY_NAME", function() { return H.getIsolateAffinityTag("_$dart_dartClosure"); }); _lazyFinal($, "_CopyingBytesBuilder__emptyList", "$get$_CopyingBytesBuilder__emptyList", function() { return H.NativeUint8List_NativeUint8List(0); }); _lazyFinal($, "nullFuture", "$get$nullFuture", function() { return C.C__RootZone.run$1$1(new H.nullFuture_closure(), type$.Future_Null); }); _lazyFinal($, "TypeErrorDecoder_noSuchMethodPattern", "$get$TypeErrorDecoder_noSuchMethodPattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokeCallErrorOn({ toString: function() { return "$receiver$"; } })); }); _lazyFinal($, "TypeErrorDecoder_notClosurePattern", "$get$TypeErrorDecoder_notClosurePattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokeCallErrorOn({$method$: null, toString: function() { return "$receiver$"; } })); }); _lazyFinal($, "TypeErrorDecoder_nullCallPattern", "$get$TypeErrorDecoder_nullCallPattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokeCallErrorOn(null)); }); _lazyFinal($, "TypeErrorDecoder_nullLiteralCallPattern", "$get$TypeErrorDecoder_nullLiteralCallPattern", function() { return H.TypeErrorDecoder_extractPattern(function() { var $argumentsExpr$ = "$arguments$"; try { null.$method$($argumentsExpr$); } catch (e) { return e.message; } }()); }); _lazyFinal($, "TypeErrorDecoder_undefinedCallPattern", "$get$TypeErrorDecoder_undefinedCallPattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokeCallErrorOn(void 0)); }); _lazyFinal($, "TypeErrorDecoder_undefinedLiteralCallPattern", "$get$TypeErrorDecoder_undefinedLiteralCallPattern", function() { return H.TypeErrorDecoder_extractPattern(function() { var $argumentsExpr$ = "$arguments$"; try { (void 0).$method$($argumentsExpr$); } catch (e) { return e.message; } }()); }); _lazyFinal($, "TypeErrorDecoder_nullPropertyPattern", "$get$TypeErrorDecoder_nullPropertyPattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokePropertyErrorOn(null)); }); _lazyFinal($, "TypeErrorDecoder_nullLiteralPropertyPattern", "$get$TypeErrorDecoder_nullLiteralPropertyPattern", function() { return H.TypeErrorDecoder_extractPattern(function() { try { null.$method$; } catch (e) { return e.message; } }()); }); _lazyFinal($, "TypeErrorDecoder_undefinedPropertyPattern", "$get$TypeErrorDecoder_undefinedPropertyPattern", function() { return H.TypeErrorDecoder_extractPattern(H.TypeErrorDecoder_provokePropertyErrorOn(void 0)); }); _lazyFinal($, "TypeErrorDecoder_undefinedLiteralPropertyPattern", "$get$TypeErrorDecoder_undefinedLiteralPropertyPattern", function() { return H.TypeErrorDecoder_extractPattern(function() { try { (void 0).$method$; } catch (e) { return e.message; } }()); }); _lazyFinal($, "_AsyncRun__scheduleImmediateClosure", "$get$_AsyncRun__scheduleImmediateClosure", function() { return P._AsyncRun__initializeScheduleImmediate(); }); _lazyFinal($, "Future__nullFuture", "$get$Future__nullFuture", function() { return type$._Future_Null._as($.$get$nullFuture()); }); _lazyFinal($, "Future__falseFuture", "$get$Future__falseFuture", function() { return P._Future$zoneValue(false, C.C__RootZone, type$.bool); }); _lazyFinal($, "_RootZone__rootMap", "$get$_RootZone__rootMap", function() { var t1 = type$.dynamic; return P.HashMap_HashMap(null, null, null, t1, t1); }); _lazyFinal($, "Utf8Decoder__decoder", "$get$Utf8Decoder__decoder", function() { return new P.Utf8Decoder__decoder_closure().call$0(); }); _lazyFinal($, "Utf8Decoder__decoderNonfatal", "$get$Utf8Decoder__decoderNonfatal", function() { return new P.Utf8Decoder__decoderNonfatal_closure().call$0(); }); _lazyFinal($, "_Base64Decoder__inverseAlphabet", "$get$_Base64Decoder__inverseAlphabet", function() { return H.NativeInt8List__create1(H._ensureNativeList(H.setRuntimeTypeInfo([-2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -2, -2, -2, -2, -2, 62, -2, 62, -2, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -1, -2, -2, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, 63, -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2], type$.JSArray_int))); }); _lazy($, "_Base64Decoder__emptyBuffer", "$get$_Base64Decoder__emptyBuffer", function() { return H.NativeUint8List_NativeUint8List(0); }); _lazyFinal($, "_Uri__isWindowsCached", "$get$_Uri__isWindowsCached", function() { return typeof process != "undefined" && Object.prototype.toString.call(process) == "[object process]" && process.platform == "win32"; }); _lazyFinal($, "_Uri__needsNoEncoding", "$get$_Uri__needsNoEncoding", function() { return P.RegExp_RegExp("^[\\-\\.0-9A-Z_a-z~]*$", true, false); }); _lazy($, "_hasErrorStackProperty", "$get$_hasErrorStackProperty", function() { return new Error().stack != void 0; }); _lazyFinal($, "_BigIntImpl_zero", "$get$_BigIntImpl_zero", function() { return P._BigIntImpl__BigIntImpl$_fromInt(0); }); _lazyFinal($, "_BigIntImpl_one", "$get$_BigIntImpl_one", function() { return P._BigIntImpl__BigIntImpl$_fromInt(1); }); _lazyFinal($, "_BigIntImpl__minusOne", "$get$_BigIntImpl__minusOne", function() { return $.$get$_BigIntImpl_one().$negate(0); }); _lazyFinal($, "_BigIntImpl__bigInt10000", "$get$_BigIntImpl__bigInt10000", function() { return P._BigIntImpl__BigIntImpl$_fromInt(10000); }); _lazy($, "_BigIntImpl__parseRE", "$get$_BigIntImpl__parseRE", function() { return P.RegExp_RegExp("^\\s*([+-]?)((0x[a-f0-9]+)|(\\d+)|([a-z0-9]+))\\s*$", false, false); }); _lazyFinal($, "DateTime__parseFormat", "$get$DateTime__parseFormat", function() { return P.RegExp_RegExp("^([+-]?\\d{4,6})-?(\\d\\d)-?(\\d\\d)(?:[ T](\\d\\d)(?::?(\\d\\d)(?::?(\\d\\d)(?:[.,](\\d+))?)?)?( ?[zZ]| ?([-+])(\\d\\d)(?::?(\\d\\d))?)?)?$", true, false); }); _lazyFinal($, "Stopwatch__frequency", "$get$Stopwatch__frequency", function() { H.Primitives_initTicker(); return $.Primitives_timerFrequency; }); _lazyFinal($, "_scannerTables", "$get$_scannerTables", function() { return P._createTables(); }); _lazyFinal($, "CssStyleDeclaration__propertyCache", "$get$CssStyleDeclaration__propertyCache", function() { return {}; }); _lazyFinal($, "_Html5NodeValidator__allowedElements", "$get$_Html5NodeValidator__allowedElements", function() { return P.LinkedHashSet_LinkedHashSet$from(["A", "ABBR", "ACRONYM", "ADDRESS", "AREA", "ARTICLE", "ASIDE", "AUDIO", "B", "BDI", "BDO", "BIG", "BLOCKQUOTE", "BR", "BUTTON", "CANVAS", "CAPTION", "CENTER", "CITE", "CODE", "COL", "COLGROUP", "COMMAND", "DATA", "DATALIST", "DD", "DEL", "DETAILS", "DFN", "DIR", "DIV", "DL", "DT", "EM", "FIELDSET", "FIGCAPTION", "FIGURE", "FONT", "FOOTER", "FORM", "H1", "H2", "H3", "H4", "H5", "H6", "HEADER", "HGROUP", "HR", "I", "IFRAME", "IMG", "INPUT", "INS", "KBD", "LABEL", "LEGEND", "LI", "MAP", "MARK", "MENU", "METER", "NAV", "NOBR", "OL", "OPTGROUP", "OPTION", "OUTPUT", "P", "PRE", "PROGRESS", "Q", "S", "SAMP", "SECTION", "SELECT", "SMALL", "SOURCE", "SPAN", "STRIKE", "STRONG", "SUB", "SUMMARY", "SUP", "TABLE", "TBODY", "TD", "TEXTAREA", "TFOOT", "TH", "THEAD", "TIME", "TR", "TRACK", "TT", "U", "UL", "VAR", "VIDEO", "WBR"], type$.String); }); _lazyFinal($, "Device_isOpera", "$get$Device_isOpera", function() { return J.contains$2$asx(P.Device_userAgent(), "Opera", 0); }); _lazyFinal($, "Device_isIE", "$get$Device_isIE", function() { return !$.$get$Device_isOpera() && J.contains$2$asx(P.Device_userAgent(), "Trident/", 0); }); _lazyFinal($, "Device_isFirefox", "$get$Device_isFirefox", function() { return J.contains$2$asx(P.Device_userAgent(), "Firefox", 0); }); _lazyFinal($, "Device_isWebKit", "$get$Device_isWebKit", function() { return !$.$get$Device_isOpera() && J.contains$2$asx(P.Device_userAgent(), "WebKit", 0); }); _lazyFinal($, "Device_cssPrefix", "$get$Device_cssPrefix", function() { return "-" + $.$get$Device_propertyPrefix() + "-"; }); _lazyFinal($, "Device_propertyPrefix", "$get$Device_propertyPrefix", function() { if ($.$get$Device_isFirefox()) var t1 = "moz"; else if ($.$get$Device_isIE()) t1 = "ms"; else t1 = $.$get$Device_isOpera() ? "o" : "webkit"; return t1; }); _lazyFinal($, "_ioOverridesToken", "$get$_ioOverridesToken", function() { return new P.Object(); }); _lazyFinal($, "Platform__numberOfProcessors", "$get$Platform__numberOfProcessors", function() { return P._Platform_numberOfProcessors(); }); _lazyFinal($, "Platform__pathSeparator", "$get$Platform__pathSeparator", function() { return P._Platform_pathSeparator(); }); _lazyFinal($, "Platform__operatingSystem", "$get$Platform__operatingSystem", function() { return P._Platform_operatingSystem(); }); _lazyFinal($, "Platform__operatingSystemVersion", "$get$Platform__operatingSystemVersion", function() { P._Platform__operatingSystemVersion(); var t1 = $._Platform__cachedOSVersion; t1.toString; return t1; }); _lazyFinal($, "Platform__localHostname", "$get$Platform__localHostname", function() { return P._Platform_localHostname(); }); _lazyFinal($, "Platform_isLinux", "$get$Platform_isLinux", function() { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isMacOS", "$get$Platform_isMacOS", function() { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isWindows", "$get$Platform_isWindows", function() { $.$get$Platform__operatingSystem(); return false; }); _lazyFinal($, "Platform_isIOS", "$get$Platform_isIOS", function() { $.$get$Platform__operatingSystem(); return false; }); _lazy($, "_Platform_executable", "$get$_Platform_executable", function() { return P._Platform__executable(); }); _lazy($, "_Platform_resolvedExecutable", "$get$_Platform_resolvedExecutable", function() { return P._Platform__resolvedExecutable(); }); _lazyFinal($, "_context", "$get$_context", function() { return P._castToJsObject(P._wrapToDart(self)); }); _lazyFinal($, "_DART_OBJECT_PROPERTY_NAME", "$get$_DART_OBJECT_PROPERTY_NAME", function() { return H.getIsolateAffinityTag("_$dart_dartObject"); }); _lazyFinal($, "_dartProxyCtor", "$get$_dartProxyCtor", function() { return function DartObject(o) { this.o = o; }; }); _lazyFinal($, "Endian_host", "$get$Endian_host", function() { return H.NativeByteData_NativeByteData$view(H.NativeUint16List_NativeUint16List$fromList(H.setRuntimeTypeInfo([1], type$.JSArray_int)).buffer, 0, null).getInt8(0) === 1 ? C.C_Endian : C.C_Endian0; }); _lazyFinal($, "channelBuffers", "$get$channelBuffers", function() { return new P.ChannelBuffers(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("_Channel"))); }); _lazyFinal($, "platformViewRegistry", "$get$platformViewRegistry", function() { return new P.PlatformViewRegistry(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("Element(int)")), P.LinkedHashMap_LinkedHashMap$_empty(type$.int, type$.Element)); }); _lazyFinal($, "_StaticTree_staticLDesc", "$get$_StaticTree_staticLDesc", function() { return T._StaticTree$(C.List_Xg4, C.List_qQn, 257, 286, 15); }); _lazyFinal($, "_StaticTree_staticDDesc", "$get$_StaticTree_staticDDesc", function() { return T._StaticTree$(C.List_iYO, C.List_X3d, 0, 30, 15); }); _lazyFinal($, "_StaticTree_staticBlDesc", "$get$_StaticTree_staticBlDesc", function() { return T._StaticTree$(null, C.List_uSC0, 0, 19, 7); }); _lazyFinal($, "isSoundMode", "$get$isSoundMode", function() { return !type$.List_int._is(H.setRuntimeTypeInfo([], type$.JSArray_nullable_int)); }); _lazy($, "newBuiltValueToStringHelper", "$get$newBuiltValueToStringHelper", function() { return new Y.newBuiltValueToStringHelper_closure(); }); _lazyFinal($, "_runtimeType", "$get$_runtimeType", function() { return H.getRuntimeType(P.RegExp_RegExp("", true, false)); }); _lazyFinal($, "StandardJsonPlugin__unsupportedTypes", "$get$StandardJsonPlugin__unsupportedTypes", function() { return X.BuiltSet_BuiltSet([C.Type_BuiltListMultimap_2Mt, C.Type_BuiltSetMultimap_9Fi], type$.Type); }); _lazyFinal($, "CartesianChart__defaultLayoutConfig", "$get$CartesianChart__defaultLayoutConfig", function() { var t1 = M.MarginSpec_MarginSpec$fromPixel(20); return M.LayoutConfig$(M.MarginSpec_MarginSpec$fromPixel(20), M.MarginSpec_MarginSpec$fromPixel(20), M.MarginSpec_MarginSpec$fromPixel(20), t1); }); _lazyFinal($, "Legend__decimalPattern", "$get$Legend__decimalPattern", function() { return S.NumberFormat_NumberFormat$decimalPattern(null); }); _lazyFinal($, "GestureListener_defaultTapCancel", "$get$GestureListener_defaultTapCancel", function() { return new N.GestureListener_defaultTapCancel_closure(); }); _lazyFinal($, "GestureListener_defaultTapTest", "$get$GestureListener_defaultTapTest", function() { return new N.GestureListener_defaultTapTest_closure(); }); _lazyFinal($, "MaterialPalette__orderedPalettes", "$get$MaterialPalette__orderedPalettes", function() { return C.JSArray_methods.map$1$1(H.setRuntimeTypeInfo([new M.MaterialPalette__orderedPalettes_closure(), new M.MaterialPalette__orderedPalettes_closure0(), new M.MaterialPalette__orderedPalettes_closure1(), new M.MaterialPalette__orderedPalettes_closure2(), new M.MaterialPalette__orderedPalettes_closure3(), new M.MaterialPalette__orderedPalettes_closure4(), new M.MaterialPalette__orderedPalettes_closure5(), new M.MaterialPalette__orderedPalettes_closure6(), new M.MaterialPalette__orderedPalettes_closure7(), new M.MaterialPalette__orderedPalettes_closure8(), new M.MaterialPalette__orderedPalettes_closure9()], H.findType("JSArray")), new M.MaterialPalette__orderedPalettes_closure10(), H.findType("Palette")); }); _lazy($, "Performance_time", "$get$Performance_time", function() { return new V.Performance_time_closure(); }); _lazy($, "Performance_timeEnd", "$get$Performance_timeEnd", function() { return new V.Performance_timeEnd_closure(); }); _lazyFinal($, "StyleFactory__styleFactory", "$get$StyleFactory__styleFactory", function() { return new M.StyleFactory(); }); _lazyFinal($, "_clockKey", "$get$_clockKey", function() { return new P.Object(); }); _lazyFinal($, "_systemTempCounter", "$get$_systemTempCounter", function() { return P.Expando$(type$.int); }); _lazyFinal($, "FilePickerWeb_platform", "$get$FilePickerWeb_platform", function() { var targetElement, t2, t1 = new G.FilePickerWeb($.$get$FilePicker__token()), target = W.querySelector("#__file_picker_web-file-input"); if (target == null) { targetElement = W.Element_Element$tag("flt-file-picker-inputs"); targetElement.id = "__file_picker_web-file-input"; t2 = W.querySelector("body"); t2.toString; J.get$children$x(t2).add$1(0, targetElement); target = targetElement; } t1.__FilePickerWeb__target = target; return t1; }); _lazyFinal($, "FilePicker__token", "$get$FilePicker__token", function() { return new P.Object(); }); _lazy($, "FilePicker__instance", "$get$FilePicker__instance", function() { return new B.FilePickerIO($.$get$FilePicker__token()); }); _lazyFinal($, "_channel", "$get$_channel0", function() { return A.MethodChannel$("miguelruivo.flutter.plugins.filepicker", $.$get$Platform_isLinux() || $.$get$Platform_isWindows() || $.$get$Platform_isMacOS() ? C.C_JSONMethodCodec0 : C.C_StandardMethodCodec, null); }); _lazyFinal($, "_kFlingSpringDescription", "$get$_kFlingSpringDescription", function() { return M.SpringDescription$withDampingRatio(1, 1, 500); }); _lazyFinal($, "cupertinoDesktopTextSelectionControls", "$get$cupertinoDesktopTextSelectionControls", function() { return new L._CupertinoDesktopTextSelectionControls(); }); _lazyFinal($, "_kRightMiddleTween", "$get$_kRightMiddleTween", function() { return R.Tween$(C.Offset_1_0, C.Offset_0_0, type$.Offset); }); _lazyFinal($, "_kMiddleLeftTween", "$get$_kMiddleLeftTween", function() { return R.Tween$(C.Offset_0_0, C.Offset_Oho, type$.Offset); }); _lazy($, "_CupertinoEdgeShadowDecoration_kTween", "$get$_CupertinoEdgeShadowDecoration_kTween", function() { return G.DecorationTween$(C._CupertinoEdgeShadowDecoration_null, C._CupertinoEdgeShadowDecoration_yjC); }); _lazyFinal($, "cupertinoTextSelectionControls", "$get$cupertinoTextSelectionControls", function() { return new F.CupertinoTextSelectionControls(); }); _lazyFinal($, "_testPlatform", "$get$_testPlatform", function() { return new U._testPlatform_closure().call$0(); }); _lazyFinal($, "_browserPlatform", "$get$_browserPlatform", function() { return new U._browserPlatform_closure().call$0(); }); _lazyFinal($, "sparseTextConfiguration", "$get$sparseTextConfiguration", function() { return Y.TextTreeConfiguration$(true, "", ":", "", "", "", "", "", true, false, "\n", true, "\u2502", "", "\u2514\u2500", "\u251c\u2500", " ", " ", "\u2502 ", " ", "", true, ""); }); _lazyFinal($, "dashedTextConfiguration", "$get$dashedTextConfiguration", function() { return Y.TextTreeConfiguration$(true, "", ":", "", "", "", "", "", true, false, "\n", true, "\u254e", "", "\u2514\u254c", "\u254e\u254c", " ", " ", "\u2502 ", " ", "", true, ""); }); _lazyFinal($, "denseTextConfiguration", "$get$denseTextConfiguration", function() { return Y.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", false, false, "\n", false, "\u2502", "", "\u2514", "\u251c", "", "", "\u2502", " ", ", ", true, ""); }); _lazyFinal($, "transitionTextConfiguration", "$get$transitionTextConfiguration", function() { return Y.TextTreeConfiguration$(false, ":", " \u2550\u2550\u2550", "", "", "", " ", " \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550", false, true, "\n", true, "\u2502", "", "\u2558\u2550\u2566\u2550\u2550 ", "\u255e\u2550\u2566\u2550\u2550 ", " \u2551 ", "", "", "", "", true, ""); }); _lazyFinal($, "errorTextConfiguration", "$get$errorTextConfiguration", function() { return Y.TextTreeConfiguration$(false, "", ":", "", "\u2550\u2550\u2561 ", "", "", " \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550", false, false, "\n", true, "\u2502", "\u2550\u2550\u2550\u2550\u2550", "\u2558\u2550\u2566", "\u255e\u2550\u2566", " \u2551 ", "", "", "", "", true, " \u255e\u2550\u2550"); }); _lazyFinal($, "whitespaceTextConfiguration", "$get$whitespaceTextConfiguration", function() { return Y.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, " ", "", "", "", " ", " ", "", "", "", true, ""); }); _lazyFinal($, "flatTextConfiguration", "$get$flatTextConfiguration", function() { return Y.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, "", "", "", "", "", "", "", "", "", true, ""); }); _lazyFinal($, "singleLineTextConfiguration", "$get$singleLineTextConfiguration", function() { return Y.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", true, false, "", false, "", "", "", "", "", "", " ", " ", ", ", false, ""); }); _lazyFinal($, "errorPropertyTextConfiguration", "$get$errorPropertyTextConfiguration", function() { return Y.TextTreeConfiguration$(false, "", ":", ")", "", "(", "", "", true, true, "\n", false, "", "", "", "", "", "", " ", " ", ", ", false, ""); }); _lazyFinal($, "shallowTextConfiguration", "$get$shallowTextConfiguration", function() { return Y.TextTreeConfiguration$(false, ":", ":", "", "", "", "", "", false, false, "\n", true, " ", "", "", "", " ", " ", "", "", "", false, ""); }); _lazyFinal($, "_debugPrintBuffer", "$get$_debugPrintBuffer", function() { return P.ListQueue$(null, type$.String); }); _lazyFinal($, "_debugPrintStopwatch", "$get$_debugPrintStopwatch", function() { return P.Stopwatch$(); }); _lazyFinal($, "StackFrame__webNonDebugFramePattern", "$get$StackFrame__webNonDebugFramePattern", function() { return P.RegExp_RegExp("^\\s*at ([^\\s]+).*$", true, false); }); _lazyFinal($, "DataTable__headingRowKey", "$get$DataTable__headingRowKey", function() { return N.UniqueKey$(); }); _lazyFinal($, "_SortArrowState__turnTween", "$get$_SortArrowState__turnTween", function() { return R.Tween$(0, 3.141592653589793, type$.double).chain$1(R.CurveTween$(C.Cubic_JUR0)); }); _lazyFinal($, "_DatePickerDialogState__formShortcutMap", "$get$_DatePickerDialogState__formShortcutMap", function() { return P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_4295426088, null, null), C.C_NextFocusIntent], type$.LogicalKeySet, type$.Intent); }); _lazyFinal($, "desktopTextSelectionControls", "$get$desktopTextSelectionControls", function() { return new L._DesktopTextSelectionControls(); }); _lazyFinal($, "_DropdownMenuItemButtonState__webShortcuts", "$get$_DropdownMenuItemButtonState__webShortcuts", function() { var _null = null; return P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_4295426129, _null, _null), C.DirectionalFocusIntent_TraversalDirection_2, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426130, _null, _null), C.DirectionalFocusIntent_TraversalDirection_0], type$.LogicalKeySet, type$.Intent); }); _lazyFinal($, "_ExpandIconState__iconTurnTween", "$get$_ExpandIconState__iconTurnTween", function() { return R.Tween$(0, 0.5, type$.double).chain$1(R.CurveTween$(C.Cubic_ifx)); }); _lazyFinal($, "_ScalingFabMotionAnimator__rotationTween", "$get$_ScalingFabMotionAnimator__rotationTween", function() { return R.Tween$(0.75, 1, type$.double); }); _lazyFinal($, "_ScalingFabMotionAnimator__thresholdCenterTween", "$get$_ScalingFabMotionAnimator__thresholdCenterTween", function() { return R.CurveTween$(C.Threshold_znv); }); _lazyFinal($, "InkRipple__easeCurveTween", "$get$InkRipple__easeCurveTween", function() { return R.CurveTween$(C.Cubic_JUR); }); _lazyFinal($, "InkRipple__fadeOutIntervalTween", "$get$InkRipple__fadeOutIntervalTween", function() { return R.CurveTween$(C.Interval_75R0); }); _lazyFinal($, "kMaterialEdges", "$get$kMaterialEdges", function() { return P.LinkedHashMap_LinkedHashMap$_literal([C.MaterialType_0, null, C.MaterialType_1, K.BorderRadius$circular(2), C.MaterialType_2, null, C.MaterialType_3, K.BorderRadius$circular(2), C.MaterialType_4, null], H.findType("MaterialType"), type$.nullable_BorderRadius); }); _lazyFinal($, "_FadeUpwardsPageTransition__bottomUpTween", "$get$_FadeUpwardsPageTransition__bottomUpTween", function() { return R.Tween$(C.Offset_chs, C.Offset_0_0, type$.Offset); }); _lazyFinal($, "_FadeUpwardsPageTransition__fastOutSlowInTween", "$get$_FadeUpwardsPageTransition__fastOutSlowInTween", function() { return R.CurveTween$(C.Cubic_ifx); }); _lazyFinal($, "_FadeUpwardsPageTransition__easeInTween", "$get$_FadeUpwardsPageTransition__easeInTween", function() { return R.CurveTween$(C.Cubic_JUR0); }); _lazyFinal($, "_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems", "$get$_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems", function() { var t1 = type$.double; return H.setRuntimeTypeInfo([Y.TweenSequenceItem$(R.Tween$(0, 0.4, t1).chain$1(R.CurveTween$(C.Cubic_HzT)), 0.166666, t1), Y.TweenSequenceItem$(R.Tween$(0.4, 1, t1).chain$1(R.CurveTween$(C.Cubic_bP1)), 0.833334, t1)], H.findType("JSArray>")); }); _lazyFinal($, "_ZoomPageTransition__scaleCurveSequence", "$get$_ZoomPageTransition__scaleCurveSequence", function() { var t1 = $.$get$_ZoomPageTransition_fastOutExtraSlowInTweenSequenceItems(), t2 = new Y.TweenSequence(H.setRuntimeTypeInfo([], H.findType("JSArray>")), H.setRuntimeTypeInfo([], H.findType("JSArray<_Interval>")), H.findType("TweenSequence")); t2.TweenSequence$1(t1, type$.double); return t2; }); _lazyFinal($, "_ZoomEnterTransition__fadeInTransition", "$get$_ZoomEnterTransition__fadeInTransition", function() { return R.Tween$(0, 1, type$.double).chain$1(R.CurveTween$(C.Interval_75R)); }); _lazyFinal($, "_ZoomEnterTransition__scaleDownTransition", "$get$_ZoomEnterTransition__scaleDownTransition", function() { return R.Tween$(1.1, 1, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence()); }); _lazyFinal($, "_ZoomEnterTransition__scaleUpTransition", "$get$_ZoomEnterTransition__scaleUpTransition", function() { return R.Tween$(0.85, 1, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence()); }); _lazyFinal($, "_ZoomEnterTransition__scrimOpacityTween", "$get$_ZoomEnterTransition__scrimOpacityTween", function() { return R.Tween$(0, 0.6, type$.nullable_double).chain$1(R.CurveTween$(C.Interval_EeP)); }); _lazyFinal($, "_ZoomExitTransition__fadeOutTransition", "$get$_ZoomExitTransition__fadeOutTransition", function() { return R.Tween$(1, 0, type$.double).chain$1(R.CurveTween$(C.Interval_ulv)); }); _lazyFinal($, "_ZoomExitTransition__scaleUpTransition", "$get$_ZoomExitTransition__scaleUpTransition", function() { return R.Tween$(1, 1.05, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence()); }); _lazyFinal($, "_ZoomExitTransition__scaleDownTransition", "$get$_ZoomExitTransition__scaleDownTransition", function() { return R.Tween$(1, 0.9, type$.double).chain$1($.$get$_ZoomPageTransition__scaleCurveSequence()); }); _lazyFinal($, "_CircularProgressIndicatorState__strokeHeadTween", "$get$_CircularProgressIndicatorState__strokeHeadTween", function() { return R.CurveTween$(C.Interval_oqF1).chain$1(R.CurveTween$(C.SawTooth_2222)); }); _lazyFinal($, "_CircularProgressIndicatorState__strokeTailTween", "$get$_CircularProgressIndicatorState__strokeTailTween", function() { return R.CurveTween$(C.Interval_oqF0).chain$1(R.CurveTween$(C.SawTooth_2222)); }); _lazyFinal($, "_CircularProgressIndicatorState__offsetTween", "$get$_CircularProgressIndicatorState__offsetTween", function() { return R.CurveTween$(C.SawTooth_2222); }); _lazyFinal($, "_CircularProgressIndicatorState__rotationTween", "$get$_CircularProgressIndicatorState__rotationTween", function() { return R.CurveTween$(C.SawTooth_1333); }); _lazyFinal($, "RefreshIndicatorState__threeQuarterTween", "$get$RefreshIndicatorState__threeQuarterTween", function() { return R.Tween$(0, 0.75, type$.double); }); _lazyFinal($, "RefreshIndicatorState__kDragSizeFactorLimitTween", "$get$RefreshIndicatorState__kDragSizeFactorLimitTween", function() { return R.Tween$(0, 1.5, type$.double); }); _lazyFinal($, "RefreshIndicatorState__oneToZeroTween", "$get$RefreshIndicatorState__oneToZeroTween", function() { return R.Tween$(1, 0, type$.double); }); _lazyFinal($, "_FloatingActionButtonTransitionState__entranceTurnTween", "$get$_FloatingActionButtonTransitionState__entranceTurnTween", function() { return R.Tween$(0.875, 1, type$.double).chain$1(R.CurveTween$(C.Cubic_JUR0)); }); _lazyFinal($, "materialTextSelectionControls", "$get$materialTextSelectionControls", function() { return new F.MaterialTextSelectionControls(); }); _lazyFinal($, "Theme__kFallbackTheme", "$get$Theme__kFallbackTheme", function() { return X.ThemeData_ThemeData$fallback(); }); _lazyFinal($, "ThemeData__localizedThemeDataCache", "$get$ThemeData__localizedThemeDataCache", function() { return new X._FifoCache(P.LinkedHashMap_LinkedHashMap$_empty(H.findType("_IdentityThemeDataCacheKey"), type$.ThemeData), 5, H.findType("_FifoCache<_IdentityThemeDataCacheKey,ThemeData>")); }); _lazyFinal($, "AssetImage__extractRatioRegExp", "$get$AssetImage__extractRatioRegExp", function() { return P.RegExp_RegExp("/?(\\d+(\\.\\d*)?)x$", true, false); }); _lazy($, "RenderErrorBox_backgroundColor", "$get$RenderErrorBox_backgroundColor", function() { return C.Color_4039164096; }); _lazy($, "RenderErrorBox_textStyle", "$get$RenderErrorBox_textStyle", function() { var _null = null; return P.TextStyle_TextStyle(_null, C.Color_4281348144, _null, _null, _null, _null, "sans-serif", _null, _null, 18, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }); _lazy($, "RenderErrorBox_paragraphStyle", "$get$RenderErrorBox_paragraphStyle", function() { var _null = null; return P.ParagraphStyle_ParagraphStyle(_null, _null, _null, _null, _null, _null, _null, _null, _null, C.TextAlign_0, C.TextDirection_1, _null); }); _lazyFinal($, "_SemanticsGeometry__temporaryTransformHolder", "$get$_SemanticsGeometry__temporaryTransformHolder", function() { return E.Matrix4$zero(); }); _lazyFinal($, "SemanticsNode__kEmptyConfig", "$get$SemanticsNode__kEmptyConfig", function() { return A.SemanticsConfiguration$(); }); _lazyFinal($, "SemanticsNode__kEmptyChildList", "$get$SemanticsNode__kEmptyChildList", function() { return H.NativeInt32List_NativeInt32List(0); }); _lazyFinal($, "SemanticsNode__kEmptyCustomSemanticsActionsList", "$get$SemanticsNode__kEmptyCustomSemanticsActionsList", function() { return H.NativeInt32List_NativeInt32List(0); }); _lazyFinal($, "SemanticsNode__kIdentityTransform", "$get$SemanticsNode__kIdentityTransform", function() { return E.Matrix4_Matrix4$identity()._m4storage; }); _lazyFinal($, "rootBundle", "$get$rootBundle", function() { var t1 = type$.String; return new Q.PlatformAssetBundle(P.LinkedHashMap_LinkedHashMap$_empty(t1, H.findType("Future")), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Future_dynamic)); }); _lazy($, "_methodChannelHandlers", "$get$_methodChannelHandlers", function() { return P.Expando$(type$.Object); }); _lazyFinal($, "platformViewsRegistry", "$get$platformViewsRegistry", function() { return new R.PlatformViewsRegistry(); }); _lazyFinal($, "RawKeyboard_instance", "$get$RawKeyboard_instance", function() { var t1 = type$.PhysicalKeyboardKey; t1 = new B.RawKeyboard(H.setRuntimeTypeInfo([], H.findType("JSArray<~(RawKeyEvent)>")), P.LinkedHashMap_LinkedHashMap$_empty(t1, type$.LogicalKeyboardKey), P.LinkedHashSet_LinkedHashSet$_empty(t1)); C.BasicMessageChannel_Cfi.setMessageHandler$1(t1.get$_handleKeyEvent()); return t1; }); _lazyFinal($, "RawKeyboard__allModifiers", "$get$RawKeyboard__allModifiers", function() { var t2, t3, t1 = P.LinkedHashMap_LinkedHashMap$_empty(type$.PhysicalKeyboardKey, type$.LogicalKeyboardKey); t1.$indexSet(0, C.PhysicalKeyboardKey_18, C.LogicalKeyboardKey_4294967314); for (t2 = $.RawKeyboard__allModifiersExceptFn.get$entries($.RawKeyboard__allModifiersExceptFn), t2 = t2.get$iterator(t2); t2.moveNext$0();) { t3 = t2.get$current(t2); t1.$indexSet(0, t3.get$key(t3), t3.get$value(t3)); } return t1; }); _lazyFinal($, "FilteringTextInputFormatter_singleLineFormatter", "$get$FilteringTextInputFormatter_singleLineFormatter", function() { return new B.FilteringTextInputFormatter("\n", false); }); _lazyFinal($, "TextInput__instance", "$get$TextInput__instance", function() { var t1 = new N.TextInput(); t1.__TextInput__channel = C.OptionalMethodChannel_L9J; t1.get$_channel().setMethodCallHandler$1(t1.get$_handleTextInputInvocation()); return t1; }); _lazyFinal($, "WidgetsApp__defaultWebShortcuts", "$get$WidgetsApp__defaultWebShortcuts", function() { var _null = null; return P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_32, _null, _null), C.C_PrioritizedIntents, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426088, _null, _null), C.C_ButtonActivateIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426089, _null, _null), C.C_DismissIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426091, _null, _null), C.C_NextFocusIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426091, _null), C.C_PreviousFocusIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426130, _null, _null), C.ScrollIntent_Uzc, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426129, _null, _null), C.ScrollIntent_R43, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426128, _null, _null), C.ScrollIntent_vpn, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426127, _null, _null), C.ScrollIntent_o8I, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426123, _null, _null), C.ScrollIntent_Uzc0, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426126, _null, _null), C.ScrollIntent_R430], type$.LogicalKeySet, type$.Intent); }); _lazy($, "WidgetsApp_defaultActions", "$get$WidgetsApp_defaultActions", function() { var t1 = H.findType("~(Action)"); return P.LinkedHashMap_LinkedHashMap$_literal([C.Type_DoNothingIntent_IQR, U.DoNothingAction$(true), C.Type_s8I, U.DoNothingAction$(false), C.Type_RequestFocusIntent_OPB, new U.RequestFocusAction(R.ObserverList$(t1)), C.Type_NextFocusIntent_6xB, new U.NextFocusAction(R.ObserverList$(t1)), C.Type_PreviousFocusIntent_wsa, new U.PreviousFocusAction(R.ObserverList$(t1)), C.Type_DirectionalFocusIntent_evN, new U.DirectionalFocusAction(R.ObserverList$(t1)), C.Type_ScrollIntent_mpH, new F.ScrollAction(R.ObserverList$(t1)), C.Type_PrioritizedIntents_fLu, new U.PrioritizedAction(R.ObserverList$(t1))], type$.Type, type$.Action_Intent); }); _lazyFinal($, "DefaultTextEditingActions__shortcutsActions", "$get$DefaultTextEditingActions__shortcutsActions", function() { var t1 = H.findType("~(Action)"); return P.LinkedHashMap_LinkedHashMap$_literal([C.Type_muk, new E._DoNothingAndStopPropagationTextAction(R.ObserverList$(t1)), C.Type_8LH, new E._ExtendSelectionDownTextAction(R.ObserverList$(t1)), C.Type_gO9, new E._ExtendSelectionLeftByLineTextAction(R.ObserverList$(t1)), C.Type_gO90, new E._ExtendSelectionLeftByWordTextAction(R.ObserverList$(t1)), C.Type_NT8, new E._ExtendSelectionLeftByWordAndStopAtReversalTextAction(R.ObserverList$(t1)), C.Type_KeE, new E._ExtendSelectionLeftTextAction(R.ObserverList$(t1)), C.Type_unm, new E._ExtendSelectionRightByWordAndStopAtReversalTextAction(R.ObserverList$(t1)), C.Type_9Ii, new E._ExtendSelectionRightByWordTextAction(R.ObserverList$(t1)), C.Type_9Ii0, new E._ExtendSelectionRightByLineTextAction(R.ObserverList$(t1)), C.Type_uFQ, new E._ExtendSelectionRightTextAction(R.ObserverList$(t1)), C.Type_ExtendSelectionUpTextIntent_Bju, new E._ExtendSelectionUpTextAction(R.ObserverList$(t1)), C.Type_0, new E._ExpandSelectionLeftByLineTextAction(R.ObserverList$(t1)), C.Type_8aB, new E._ExpandSelectionRightByLineTextAction(R.ObserverList$(t1)), C.Type_weg, new E._ExpandSelectionToEndTextAction(R.ObserverList$(t1)), C.Type_oyU, new E._ExpandSelectionToStartTextAction(R.ObserverList$(t1)), C.Type_MoveSelectionDownTextIntent_yqF, new E._MoveSelectionDownTextAction(R.ObserverList$(t1)), C.Type_2Iq, new E._MoveSelectionLeftByLineTextAction(R.ObserverList$(t1)), C.Type_2Iq0, new E._MoveSelectionLeftByWordTextAction(R.ObserverList$(t1)), C.Type_MoveSelectionLeftTextIntent_uf2, new E._MoveSelectionLeftTextAction(R.ObserverList$(t1)), C.Type_Bzp, new E._MoveSelectionRightByLineTextAction(R.ObserverList$(t1)), C.Type_Bzp0, new E._MoveSelectionRightByWordTextAction(R.ObserverList$(t1)), C.Type_MoveSelectionRightTextIntent_kUZ, new E._MoveSelectionRightTextAction(R.ObserverList$(t1)), C.Type_MoveSelectionToEndTextIntent_c4I, new E._MoveSelectionToEndTextAction(R.ObserverList$(t1)), C.Type_IYE, new E._MoveSelectionToStartTextAction(R.ObserverList$(t1)), C.Type_MoveSelectionUpTextIntent_kSJ, new E._MoveSelectionUpTextAction(R.ObserverList$(t1))], type$.Type, type$.Action_Intent); }); _lazyFinal($, "DefaultTextEditingShortcuts__webShortcuts", "$get$DefaultTextEditingShortcuts__webShortcuts", function() { var _null = null; return P.LinkedHashMap_LinkedHashMap$_literal([X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426129, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426128, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426127, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_4295426130, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426129), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426128), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426127), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681826, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426130), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426129, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426128, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426127, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426130, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681824, C.LogicalKeyboardKey_4295426128, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681824, C.LogicalKeyboardKey_4295426127, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681824, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426128), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681824, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426127), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426125, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_4295426122, _null, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426129, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426128, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426127, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_4295426130, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426129), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426128), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426127), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681827, C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426130), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426129, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426128, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426127, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426130, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426125, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_2203318681825, C.LogicalKeyboardKey_4295426122, _null), C.C_DoNothingAndStopPropagationTextIntent, X.LogicalKeySet$(C.LogicalKeyboardKey_32, _null, _null), C.C_DoNothingAndStopPropagationTextIntent], type$.LogicalKeySet, type$.Intent); }); _lazy($, "_NullElement_instance", "$get$_NullElement_instance", function() { var t1 = ($.Element__nextHashCode + 1) % 16777215; $.Element__nextHashCode = t1; return new N._NullElement(t1, new N._NullWidget(null), C._ElementLifecycle_0, P.HashSet_HashSet(type$.Element_2)); }); _lazyFinal($, "_HeroFlight__reverseTween", "$get$_HeroFlight__reverseTween", function() { return R.Tween$(1, 0, type$.double); }); _lazy($, "_RouteEntry_notAnnounced", "$get$_RouteEntry_notAnnounced", function() { var t1 = B.ValueNotifier$(null, type$.nullable_String), t2 = P.Completer_Completer(type$.void); return new K._NotAnnounced(C.RouteSettings_null_null, t1, t2); }); _lazyFinal($, "_GlowController__crossAxisHalfTime", "$get$_GlowController__crossAxisHalfTime", function() { return P.Duration$(0, 0, 16667, 0, 0, 0); }); _lazyFinal($, "_defaultPageController", "$get$_defaultPageController", function() { return D.PageController$(0, 1); }); _lazyFinal($, "ScrollPhysics__kDefaultSpring", "$get$ScrollPhysics__kDefaultSpring", function() { return M.SpringDescription$withDampingRatio(0.5, 1.1, 100); }); _lazyFinal($, "ScrollPhysics__kDefaultTolerance", "$get$ScrollPhysics__kDefaultTolerance", function() { var t1, t2; $.WidgetsBinding__instance.toString; t1 = $.$get$window(); t2 = t1.get$devicePixelRatio(t1); $.WidgetsBinding__instance.toString; return new N.Tolerance(1 / t1.get$devicePixelRatio(t1), 1 / (0.05 * t2)); }); _lazyFinal($, "ClampingScrollSimulation__kDecelerationRate", "$get$ClampingScrollSimulation__kDecelerationRate", function() { return P.log(0.78) / P.log(0.9); }); _lazy($, "WidgetInspectorService__instance", "$get$WidgetInspectorService__instance", function() { var _null = null, t1 = type$.String; return new N._WidgetInspectorService(P.List_List$filled(20, _null, false, type$.nullable_String), 0, new N.InspectorSelection(H.setRuntimeTypeInfo([], type$.JSArray_RenderObject)), _null, P.LinkedHashMap_LinkedHashMap$_empty(t1, H.findType("Set<_InspectorReferenceData>")), P.LinkedHashMap_LinkedHashMap$_empty(t1, H.findType("_InspectorReferenceData")), P._LinkedIdentityHashMap__LinkedIdentityHashMap$es6(type$.Object, t1), 0, _null, false, false, _null, H.createSentinel(), 0, _null, H.createSentinel(), N._ElementLocationStatsTracker$(), N._ElementLocationStatsTracker$()); }); _lazyFinal($, "DefaultCacheManager__instance", "$get$DefaultCacheManager__instance", function() { var t1 = new X._MemoryFileSystem(M.Context_Context(C.C__Posix.get$root(C.C__Posix), $.$get$Style_posix()), X.memory_file_system___defaultOpHandle$closure(), C.C__RealtimeClock, C.C__Posix), t2 = type$.String, t3 = new B.RootNode(t1, P.LinkedHashMap_LinkedHashMap$_empty(t2, type$.Node_2), null); t3.Node$1(null); t3.RealNode$1(null); t1._memory_file_system$_root = t3; t3 = t1._systemTemp; t1 = t1.directory$1(0, t3 == null ? t1._systemTemp = t1.directory$1(0, C.C__Posix.get$root(C.C__Posix)).createTempSync$1(".tmp_").path : t3); t1.createSync$0(); t1 = new M.MemoryCacheSystem(t1.createTemp$1("cache")); t3 = E.HttpFileService$(); t1 = new R.Config(new A.NonStoringObjectProvider(), t1, C.Duration_2592000000000, 200, t3); t2 = new D.DefaultCacheManager(P.LinkedHashMap_LinkedHashMap$_empty(t2, H.findType("Stream")), t1, D.CacheStore$(t1)); t2.CacheManager$1(t1); return t2; }); _lazyOld($, "KeyboardVisibility__onChangeController", "$get$KeyboardVisibility__onChangeController", function() { var _null = null; return P.StreamController_StreamController(_null, _null, _null, _null, false, type$.legacy_bool); }); _lazyOld($, "KeyboardVisibility__onChange", "$get$KeyboardVisibility__onChange", function() { var t1 = $.$get$KeyboardVisibility__onChangeController(); return t1.get$stream(t1).asBroadcastStream$0(); }); _lazyFinal($, "kCupertinoSupportedLanguages", "$get$kCupertinoSupportedLanguages", function() { return P.HashSet_HashSet$from(C.List_QXN, type$.String); }); _lazyFinal($, "kMaterialSupportedLanguages", "$get$kMaterialSupportedLanguages", function() { return P.HashSet_HashSet$from(C.List_gT4, type$.String); }); _lazyFinal($, "webPluginRegistrar", "$get$webPluginRegistrar", function() { return new D.PluginRegistry(P.LinkedHashMap_LinkedHashMap$_empty(type$.String, H.findType("Future?(ByteData?)"))); }); _lazy($, "GoogleSignInPlatform__instance", "$get$GoogleSignInPlatform__instance", function() { return new O.MethodChannelGoogleSignIn(); }); _lazyFinal($, "BaseRequest__tokenRE", "$get$BaseRequest__tokenRE", function() { return P.RegExp_RegExp("^[\\w!#%&'*+\\-.^`|~]+$", true, false); }); _lazyFinal($, "_newlineRegExp", "$get$_newlineRegExp", function() { return P.RegExp_RegExp("\\r\\n|\\r|\\n", true, false); }); _lazyFinal($, "MultipartRequest__random", "$get$MultipartRequest__random", function() { return P.Random_Random(null); }); _lazyFinal($, "_asciiOnly", "$get$_asciiOnly", function() { return P.RegExp_RegExp("^[\\x00-\\x7F]+$", true, false); }); _lazyFinal($, "_escapedChar", "$get$_escapedChar", function() { return P.RegExp_RegExp('["\\x00-\\x1F\\x7F]', true, false); }); _lazyFinal($, "token", "$get$token", function() { return P.RegExp_RegExp('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+', true, false); }); _lazyFinal($, "_lws", "$get$_lws", function() { return P.RegExp_RegExp("(?:\\r\\n)?[ \\t]+", true, false); }); _lazyFinal($, "_quotedString", "$get$_quotedString", function() { return P.RegExp_RegExp('"(?:[^"\\x00-\\x1F\\x7F]|\\\\.)*"', true, false); }); _lazyFinal($, "_quotedPair", "$get$_quotedPair", function() { return P.RegExp_RegExp("\\\\(.)", true, false); }); _lazyFinal($, "nonToken", "$get$nonToken", function() { return P.RegExp_RegExp('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]', true, false); }); _lazyFinal($, "whitespace", "$get$whitespace", function() { return P.RegExp_RegExp("(?:" + $.$get$_lws().pattern + ")*", true, false); }); _lazyFinal($, "_channel0", "$get$_channel", function() { return A.MethodChannel$("plugins.flutter.io/image_picker", C.C_StandardMethodCodec, null); }); _lazyFinal($, "ImagePickerPlatform__token", "$get$ImagePickerPlatform__token", function() { return new P.Object(); }); _lazy($, "ImagePickerPlatform__instance", "$get$ImagePickerPlatform__instance", function() { return new L.MethodChannelImagePicker($.$get$ImagePickerPlatform__token()); }); _lazy($, "en_USSymbols", "$get$en_USSymbols", function() { return B.DateSymbols$(C.List_AM_PM, null, C.List_cno, C.List_iDZ, C.List_6xs, C.List_BC_AD, 6, 5, C.List_cIc, "en_US", C.List_qpm, C.List_3US, C.List_bJM, C.List_h8w, C.List_Q1_Q2_Q3_Q4, C.List_gc6, C.List_cIc, C.List_qpm, C.List_3US, C.List_h8w, C.List_gc6, C.List_wMy, C.List_kWG, C.List_wMy, C.List_5_6, null); }); _lazy($, "numberFormatSymbols", "$get$numberFormatSymbols", function() { var _s1_ = ",", _s1_0 = "\xa0", _s1_1 = "%", _s1_2 = "0", _s1_3 = "+", _s1_4 = "-", _s1_5 = "E", _s1_6 = "\u2030", _s1_7 = "\u221e", _s3_ = "NaN", _s9_ = "#,##0.###", _s3_0 = "#E0", _s6_ = "#,##0%", _s9_0 = "\xa4#,##0.00", _s1_8 = ".", _s2_ = "\u200e+", _s2_0 = "\u200e-", _s9_1 = "\u0644\u064a\u0633\xa0\u0631\u0642\u0645\u064b\u0627", _s10_ = "\xa4\xa0#,##0.00", _s10_0 = "#,##0.00\xa0\xa4", _s7_ = "#,##0\xa0%", _s12_ = "#,##,##0.###", _s3_1 = "EUR", _s3_2 = "USD", _s21_ = "\xa4\xa0#,##0.00;\xa4-#,##0.00", _s3_3 = "CHF", _s9_2 = "#,##,##0%", _s13_ = "\xa4\xa0#,##,##0.00", _s3_4 = "INR", _s1_9 = "\u2212", _s4_ = "\xd710^", _s5_ = "[#E0]", _s12_0 = "\xa4#,##,##0.00", _s24_ = "\u200f#,##0.00\xa0\xa4;\u200f-#,##0.00\xa0\xa4"; return P.LinkedHashMap_LinkedHashMap$_literal(["af", B.NumberSymbols$(_s9_0, _s9_, _s1_, "ZAR", _s1_5, _s1_0, _s1_7, _s1_4, "af", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "am", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "ETB", _s1_5, _s1_, _s1_7, _s1_4, "am", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ar", B.NumberSymbols$(_s10_, _s9_, _s1_8, "EGP", _s1_5, _s1_, _s1_7, _s2_0, "ar", _s9_1, "\u200e%\u200e", _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ar_DZ", B.NumberSymbols$(_s10_, _s9_, _s1_, "DZD", _s1_5, _s1_8, _s1_7, _s2_0, "ar_DZ", _s9_1, "\u200e%\u200e", _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ar_EG", B.NumberSymbols$(_s10_0, _s9_, "\u066b", "EGP", "\u0627\u0633", "\u066c", _s1_7, "\u061c-", "ar_EG", "\u0644\u064a\u0633\xa0\u0631\u0642\u0645", "\u066a\u061c", _s6_, "\u0609", "\u061c+", _s3_0, "\u0660"), "az", B.NumberSymbols$(_s10_0, _s9_, _s1_, "AZN", _s1_5, _s1_8, _s1_7, _s1_4, "az", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "be", B.NumberSymbols$(_s10_0, _s9_, _s1_, "BYN", _s1_5, _s1_0, _s1_7, _s1_4, "be", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "bg", B.NumberSymbols$("0.00\xa0\xa4", _s9_, _s1_, "BGN", _s1_5, _s1_0, _s1_7, _s1_4, "bg", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "bn", B.NumberSymbols$("#,##,##0.00\xa4", _s12_, _s1_8, "BDT", _s1_5, _s1_, _s1_7, _s1_4, "bn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u09e6"), "br", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "br", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "bs", B.NumberSymbols$(_s10_0, _s9_, _s1_, "BAM", _s1_5, _s1_8, _s1_7, _s1_4, "bs", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ca", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "ca", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "chr", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "chr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "cs", B.NumberSymbols$(_s10_0, _s9_, _s1_, "CZK", _s1_5, _s1_0, _s1_7, _s1_4, "cs", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "cy", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "GBP", _s1_5, _s1_, _s1_7, _s1_4, "cy", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "da", B.NumberSymbols$(_s10_0, _s9_, _s1_, "DKK", _s1_5, _s1_8, _s1_7, _s1_4, "da", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "de", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de_AT", B.NumberSymbols$(_s10_, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "de_AT", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "de_CH", B.NumberSymbols$(_s21_, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_4, "de_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "el", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_8, _s1_7, _s1_4, "el", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "en", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_AU", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "AUD", "e", _s1_, _s1_7, _s1_4, "en_AU", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_CA", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "CAD", "e", _s1_, _s1_7, _s1_4, "en_CA", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_GB", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "GBP", _s1_5, _s1_, _s1_7, _s1_4, "en_GB", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_IE", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "en_IE", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_IN", B.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "en_IN", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s3_0, _s1_2), "en_MY", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "MYR", _s1_5, _s1_, _s1_7, _s1_4, "en_MY", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_SG", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "SGD", _s1_5, _s1_, _s1_7, _s1_4, "en_SG", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_US", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "en_US", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "en_ZA", B.NumberSymbols$(_s9_0, _s9_, _s1_, "ZAR", _s1_5, _s1_0, _s1_7, _s1_4, "en_ZA", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "es", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "es", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_419", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "MXN", _s1_5, _s1_, _s1_7, _s1_4, "es_419", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_ES", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "es_ES", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_MX", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "MXN", _s1_5, _s1_, _s1_7, _s1_4, "es_MX", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "es_US", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "es_US", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "et", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s4_, _s1_0, _s1_7, _s1_9, "et", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "eu", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_9, "eu", _s3_, _s1_1, "%\xa0#,##0", _s1_6, _s1_3, _s3_0, _s1_2), "fa", B.NumberSymbols$("\u200e\xa4#,##0.00", _s9_, "\u066b", "IRR", "\xd7\u06f1\u06f0^", "\u066c", _s1_7, "\u200e\u2212", "fa", "\u0646\u0627\u0639\u062f\u062f", "\u066a", _s6_, "\u0609", _s2_, _s3_0, "\u06f0"), "fi", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_9, "fi", "ep\xe4luku", _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fil", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "PHP", _s1_5, _s1_, _s1_7, _s1_4, "fil", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "fr", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, "\u202f", _s1_7, _s1_4, "fr", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fr_CA", B.NumberSymbols$(_s10_0, _s9_, _s1_, "CAD", _s1_5, _s1_0, _s1_7, _s1_4, "fr_CA", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "fr_CH", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_3, _s1_5, "\u202f", _s1_7, _s1_4, "fr_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ga", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "ga", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "gl", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "gl", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "gsw", B.NumberSymbols$(_s10_0, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_9, "gsw", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "gu", B.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "gu", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "haw", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_2, _s1_5, _s1_, _s1_7, _s1_4, "haw", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "he", B.NumberSymbols$(_s24_, _s9_, _s1_8, "ILS", _s1_5, _s1_, _s1_7, _s2_0, "he", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "hi", B.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "hi", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "hr", B.NumberSymbols$(_s10_0, _s9_, _s1_, "HRK", _s1_5, _s1_8, _s1_7, _s1_4, "hr", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "hu", B.NumberSymbols$(_s10_0, _s9_, _s1_, "HUF", _s1_5, _s1_0, _s1_7, _s1_4, "hu", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "hy", B.NumberSymbols$(_s10_0, _s9_, _s1_, "AMD", _s1_5, _s1_0, _s1_7, _s1_4, "hy", "\u0548\u0579\u0539", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "id", B.NumberSymbols$(_s9_0, _s9_, _s1_, "IDR", _s1_5, _s1_8, _s1_7, _s1_4, "id", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "in", B.NumberSymbols$(_s9_0, _s9_, _s1_, "IDR", _s1_5, _s1_8, _s1_7, _s1_4, "in", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "is", B.NumberSymbols$(_s10_0, _s9_, _s1_, "ISK", _s1_5, _s1_8, _s1_7, _s1_4, "is", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "it", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "it", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "it_CH", B.NumberSymbols$(_s21_, _s9_, _s1_8, _s3_3, _s1_5, "\u2019", _s1_7, _s1_4, "it_CH", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "iw", B.NumberSymbols$(_s24_, _s9_, _s1_8, "ILS", _s1_5, _s1_, _s1_7, _s2_0, "iw", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "ja", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "JPY", _s1_5, _s1_, _s1_7, _s1_4, "ja", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ka", B.NumberSymbols$(_s10_0, _s9_, _s1_, "GEL", _s1_5, _s1_0, _s1_7, _s1_4, "ka", "\u10d0\u10e0\xa0\u10d0\u10e0\u10d8\u10e1\xa0\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "kk", B.NumberSymbols$(_s10_0, _s9_, _s1_, "KZT", _s1_5, _s1_0, _s1_7, _s1_4, "kk", "\u0441\u0430\u043d\xa0\u0435\u043c\u0435\u0441", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "km", B.NumberSymbols$("#,##0.00\xa4", _s9_, _s1_, "KHR", _s1_5, _s1_8, _s1_7, _s1_4, "km", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "kn", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "kn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ko", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "KRW", _s1_5, _s1_, _s1_7, _s1_4, "ko", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ky", B.NumberSymbols$(_s10_0, _s9_, _s1_, "KGS", _s1_5, _s1_0, _s1_7, _s1_4, "ky", "\u0441\u0430\u043d\xa0\u044d\u043c\u0435\u0441", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ln", B.NumberSymbols$(_s10_0, _s9_, _s1_, "CDF", _s1_5, _s1_8, _s1_7, _s1_4, "ln", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "lo", B.NumberSymbols$("\xa4#,##0.00;\xa4-#,##0.00", _s9_, _s1_, "LAK", _s1_5, _s1_8, _s1_7, _s1_4, "lo", "\u0e9a\u0ecd\u0ec8\u200b\u0ec1\u0ea1\u0ec8\u0e99\u200b\u0ec2\u0e95\u200b\u0ec0\u0ea5\u0e81", _s1_1, _s6_, _s1_6, _s1_3, "#", _s1_2), "lt", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s4_, _s1_0, _s1_7, _s1_9, "lt", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "lv", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "lv", "NS", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mk", B.NumberSymbols$(_s10_0, _s9_, _s1_, "MKD", _s1_5, _s1_8, _s1_7, _s1_4, "mk", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ml", B.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "ml", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mn", B.NumberSymbols$(_s10_, _s9_, _s1_8, "MNT", _s1_5, _s1_, _s1_7, _s1_4, "mn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mr", B.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "mr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s5_, "\u0966"), "ms", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "MYR", _s1_5, _s1_, _s1_7, _s1_4, "ms", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "mt", B.NumberSymbols$(_s9_0, _s9_, _s1_8, _s3_1, _s1_5, _s1_, _s1_7, _s1_4, "mt", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "my", B.NumberSymbols$(_s10_0, _s9_, _s1_8, "MMK", _s1_5, _s1_, _s1_7, _s1_4, "my", "\u1002\u100f\u1014\u103a\u1038\u1019\u101f\u102f\u1010\u103a\u101e\u1031\u102c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u1040"), "nb", B.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "nb", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ne", B.NumberSymbols$(_s10_, _s9_, _s1_8, "NPR", _s1_5, _s1_, _s1_7, _s1_4, "ne", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, "\u0966"), "nl", B.NumberSymbols$("\xa4\xa0#,##0.00;\xa4\xa0-#,##0.00", _s9_, _s1_, _s3_1, _s1_5, _s1_8, _s1_7, _s1_4, "nl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "no", B.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "no", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "no_NO", B.NumberSymbols$(_s10_, _s9_, _s1_, "NOK", _s1_5, _s1_0, _s1_7, _s1_9, "no_NO", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "or", B.NumberSymbols$(_s9_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "or", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pa", B.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "pa", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s5_, _s1_2), "pl", B.NumberSymbols$(_s10_0, _s9_, _s1_, "PLN", _s1_5, _s1_0, _s1_7, _s1_4, "pl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ps", B.NumberSymbols$(_s10_0, _s9_, "\u066b", "AFN", "\xd7\u06f1\u06f0^", "\u066c", _s1_7, "\u200e-\u200e", "ps", _s3_, "\u066a", _s6_, "\u0609", "\u200e+\u200e", _s3_0, "\u06f0"), "pt", B.NumberSymbols$(_s10_, _s9_, _s1_, "BRL", _s1_5, _s1_8, _s1_7, _s1_4, "pt", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pt_BR", B.NumberSymbols$(_s10_, _s9_, _s1_, "BRL", _s1_5, _s1_8, _s1_7, _s1_4, "pt_BR", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "pt_PT", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, _s1_5, _s1_0, _s1_7, _s1_4, "pt_PT", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ro", B.NumberSymbols$(_s10_0, _s9_, _s1_, "RON", _s1_5, _s1_8, _s1_7, _s1_4, "ro", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "ru", B.NumberSymbols$(_s10_0, _s9_, _s1_, "RUB", _s1_5, _s1_0, _s1_7, _s1_4, "ru", "\u043d\u0435\xa0\u0447\u0438\u0441\u043b\u043e", _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "si", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "LKR", _s1_5, _s1_, _s1_7, _s1_4, "si", _s3_, _s1_1, _s6_, _s1_6, _s1_3, "#", _s1_2), "sk", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_0, _s1_7, _s1_4, "sk", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sl", B.NumberSymbols$(_s10_0, _s9_, _s1_, _s3_1, "e", _s1_8, _s1_7, _s1_9, "sl", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sq", B.NumberSymbols$(_s10_0, _s9_, _s1_, "ALL", _s1_5, _s1_0, _s1_7, _s1_4, "sq", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sr", B.NumberSymbols$(_s10_0, _s9_, _s1_, "RSD", _s1_5, _s1_8, _s1_7, _s1_4, "sr", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sr_Latn", B.NumberSymbols$(_s10_0, _s9_, _s1_, "RSD", _s1_5, _s1_8, _s1_7, _s1_4, "sr_Latn", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "sv", B.NumberSymbols$(_s10_0, _s9_, _s1_, "SEK", _s4_, _s1_0, _s1_7, _s1_9, "sv", _s3_, _s1_1, _s7_, _s1_6, _s1_3, _s3_0, _s1_2), "sw", B.NumberSymbols$(_s10_, _s9_, _s1_8, "TZS", _s1_5, _s1_, _s1_7, _s1_4, "sw", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ta", B.NumberSymbols$(_s13_, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "ta", _s3_, _s1_1, _s9_2, _s1_6, _s1_3, _s3_0, _s1_2), "te", B.NumberSymbols$(_s12_0, _s12_, _s1_8, _s3_4, _s1_5, _s1_, _s1_7, _s1_4, "te", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "th", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "THB", _s1_5, _s1_, _s1_7, _s1_4, "th", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "tl", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "PHP", _s1_5, _s1_, _s1_7, _s1_4, "tl", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "tr", B.NumberSymbols$(_s9_0, _s9_, _s1_, "TRY", _s1_5, _s1_8, _s1_7, _s1_4, "tr", _s3_, _s1_1, "%#,##0", _s1_6, _s1_3, _s3_0, _s1_2), "uk", B.NumberSymbols$(_s10_0, _s9_, _s1_, "UAH", "\u0415", _s1_0, _s1_7, _s1_4, "uk", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "ur", B.NumberSymbols$(_s10_, _s9_, _s1_8, "PKR", _s1_5, _s1_, _s1_7, _s2_0, "ur", _s3_, _s1_1, _s6_, _s1_6, _s2_, _s3_0, _s1_2), "uz", B.NumberSymbols$(_s10_0, _s9_, _s1_, "UZS", _s1_5, _s1_0, _s1_7, _s1_4, "uz", "son\xa0emas", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "vi", B.NumberSymbols$(_s10_0, _s9_, _s1_, "VND", _s1_5, _s1_8, _s1_7, _s1_4, "vi", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "CNY", _s1_5, _s1_, _s1_7, _s1_4, "zh", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_CN", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "CNY", _s1_5, _s1_, _s1_7, _s1_4, "zh_CN", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_HK", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "HKD", _s1_5, _s1_, _s1_7, _s1_4, "zh_HK", "\u975e\u6578\u503c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zh_TW", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "TWD", _s1_5, _s1_, _s1_7, _s1_4, "zh_TW", "\u975e\u6578\u503c", _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2), "zu", B.NumberSymbols$(_s9_0, _s9_, _s1_8, "ZAR", _s1_5, _s1_, _s1_7, _s1_4, "zu", _s3_, _s1_1, _s6_, _s1_6, _s1_3, _s3_0, _s1_2)], type$.String, H.findType("NumberSymbols")); }); _lazy($, "_dateTimeSymbols", "$get$_dateTimeSymbols", function() { return X.UninitializedLocaleData$("initializeDateFormatting()", $.$get$en_USSymbols(), type$.DateSymbols); }); _lazy($, "dateTimePatterns", "$get$dateTimePatterns", function() { return X.UninitializedLocaleData$("initializeDateFormatting()", C.Map_EQGBe, type$.Map_String_String); }); _lazyFinal($, "asciiZeroCodeUnit", "$get$asciiZeroCodeUnit", function() { return 48; }); _lazyFinal($, "DateFormat__matchers", "$get$DateFormat__matchers", function() { return H.setRuntimeTypeInfo([P.RegExp_RegExp("^'(?:[^']|'')*'", true, false), P.RegExp_RegExp("^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)", true, false), P.RegExp_RegExp("^[^'GyMkSEahKHcLQdDmsvzZ]+", true, false)], H.findType("JSArray")); }); _lazyFinal($, "_DateFormatQuotedField__twoEscapedQuotes", "$get$_DateFormatQuotedField__twoEscapedQuotes", function() { return P.RegExp_RegExp("''", true, false); }); _lazyFinal($, "NumberFormat__maxInt", "$get$NumberFormat__maxInt", function() { var t1 = P.pow(2, 52); return t1; }); _lazyFinal($, "NumberFormat__maxDigits", "$get$NumberFormat__maxDigits", function() { return C.JSNumber_methods.ceil$0(P.log($.$get$NumberFormat__maxInt()) / P.log(10)); }); _lazyFinal($, "_ln10", "$get$_ln100", function() { return P.log(10); }); _lazyFinal($, "_ln100", "$get$_ln10", function() { return P.log(10); }); _lazyFinal($, "asciiDigitMatcher", "$get$asciiDigitMatcher", function() { return P.RegExp_RegExp("^\\d+", true, false); }); _lazyOld($, "_$accountEntitySerializer", "$get$_$accountEntitySerializer", function() { return new O._$AccountEntitySerializer(); }); _lazyOld($, "_$clientListResponseSerializer", "$get$_$clientListResponseSerializer", function() { return new T._$ClientListResponseSerializer(); }); _lazyOld($, "_$clientItemResponseSerializer", "$get$_$clientItemResponseSerializer", function() { return new T._$ClientItemResponseSerializer(); }); _lazyOld($, "_$clientEntitySerializer", "$get$_$clientEntitySerializer", function() { return new T._$ClientEntitySerializer(); }); _lazyOld($, "_$contactEntitySerializer", "$get$_$contactEntitySerializer", function() { return new T._$ContactEntitySerializer(); }); _lazyOld($, "_$companyGatewayListResponseSerializer", "$get$_$companyGatewayListResponseSerializer", function() { return new O._$CompanyGatewayListResponseSerializer(); }); _lazyOld($, "_$companyGatewayItemResponseSerializer", "$get$_$companyGatewayItemResponseSerializer", function() { return new O._$CompanyGatewayItemResponseSerializer(); }); _lazyOld($, "_$companyGatewayEntitySerializer", "$get$_$companyGatewayEntitySerializer", function() { return new O._$CompanyGatewayEntitySerializer(); }); _lazyOld($, "_$feesAndLimitsSettingsSerializer", "$get$_$feesAndLimitsSettingsSerializer", function() { return new O._$FeesAndLimitsSettingsSerializer(); }); _lazyOld($, "_$companyEntitySerializer", "$get$_$companyEntitySerializer", function() { return new A._$CompanyEntitySerializer(); }); _lazyOld($, "_$gatewayEntitySerializer", "$get$_$gatewayEntitySerializer", function() { return new A._$GatewayEntitySerializer(); }); _lazyOld($, "_$gatewayOptionsEntitySerializer", "$get$_$gatewayOptionsEntitySerializer", function() { return new A._$GatewayOptionsEntitySerializer(); }); _lazyOld($, "_$userCompanyEntitySerializer", "$get$_$userCompanyEntitySerializer", function() { return new A._$UserCompanyEntitySerializer(); }); _lazyOld($, "_$userSettingsEntitySerializer", "$get$_$userSettingsEntitySerializer", function() { return new A._$UserSettingsEntitySerializer(); }); _lazyOld($, "_$reportSettingsEntitySerializer", "$get$_$reportSettingsEntitySerializer", function() { return new A._$ReportSettingsEntitySerializer(); }); _lazyOld($, "_$companyItemResponseSerializer", "$get$_$companyItemResponseSerializer", function() { return new A._$CompanyItemResponseSerializer(); }); _lazyOld($, "_$registrationFieldEntitySerializer", "$get$_$registrationFieldEntitySerializer", function() { return new A._$RegistrationFieldEntitySerializer(); }); _lazyOld($, "_$creditListResponseSerializer", "$get$_$creditListResponseSerializer", function() { return new D._$CreditListResponseSerializer(); }); _lazyOld($, "_$creditItemResponseSerializer", "$get$_$creditItemResponseSerializer", function() { return new D._$CreditItemResponseSerializer(); }); _lazyOld($, "_$values", "$get$_$values", function() { return X.BuiltSet_BuiltSet(C.List_CC9, type$.legacy_DateRange); }); _lazyOld($, "_$comparisonValues", "$get$_$comparisonValues", function() { return X.BuiltSet_BuiltSet(C.List_oGx, type$.legacy_DateRangeComparison); }); _lazyOld($, "_$dateRangeSerializer", "$get$_$dateRangeSerializer", function() { return new F._$DateRangeSerializer(); }); _lazyOld($, "_$dateRangeComparisonSerializer", "$get$_$dateRangeComparisonSerializer", function() { return new F._$DateRangeComparisonSerializer(); }); _lazyOld($, "_$designListResponseSerializer", "$get$_$designListResponseSerializer", function() { return new D._$DesignListResponseSerializer(); }); _lazyOld($, "_$designItemResponseSerializer", "$get$_$designItemResponseSerializer", function() { return new D._$DesignItemResponseSerializer(); }); _lazyOld($, "_$designPreviewRequestSerializer", "$get$_$designPreviewRequestSerializer", function() { return new D._$DesignPreviewRequestSerializer(); }); _lazyOld($, "_$designEntitySerializer", "$get$_$designEntitySerializer", function() { return new D._$DesignEntitySerializer(); }); _lazyOld($, "_$documentListResponseSerializer", "$get$_$documentListResponseSerializer", function() { return new D._$DocumentListResponseSerializer(); }); _lazyOld($, "_$documentItemResponseSerializer", "$get$_$documentItemResponseSerializer", function() { return new D._$DocumentItemResponseSerializer(); }); _lazyOld($, "_$documentEntitySerializer", "$get$_$documentEntitySerializer", function() { return new D._$DocumentEntitySerializer(); }); _lazyOld($, "_$values0", "$get$_$values0", function() { return X.BuiltSet_BuiltSet(C.List_k6K, type$.legacy_EntityState); }); _lazyOld($, "_$templateValues", "$get$_$templateValues", function() { return X.BuiltSet_BuiltSet(C.List_01, type$.legacy_EmailTemplate); }); _lazyOld($, "_$entityTypeSerializer", "$get$_$entityTypeSerializer", function() { return new T._$EntityTypeSerializer(); }); _lazyOld($, "_$entityStateSerializer", "$get$_$entityStateSerializer", function() { return new T._$EntityStateSerializer(); }); _lazyOld($, "_$emailTemplateSerializer", "$get$_$emailTemplateSerializer", function() { return new T._$EmailTemplateSerializer(); }); _lazyOld($, "_$loginResponseSerializer", "$get$_$loginResponseSerializer", function() { return new T._$LoginResponseSerializer(); }); _lazyOld($, "_$activityEntitySerializer", "$get$_$activityEntitySerializer", function() { return new T._$ActivityEntitySerializer(); }); _lazyOld($, "_$ledgerEntitySerializer", "$get$_$ledgerEntitySerializer", function() { return new T._$LedgerEntitySerializer(); }); _lazyOld($, "_$expenseCategoryListResponseSerializer", "$get$_$expenseCategoryListResponseSerializer", function() { return new R._$ExpenseCategoryListResponseSerializer(); }); _lazyOld($, "_$expenseCategoryItemResponseSerializer", "$get$_$expenseCategoryItemResponseSerializer", function() { return new R._$ExpenseCategoryItemResponseSerializer(); }); _lazyOld($, "_$expenseCategoryEntitySerializer", "$get$_$expenseCategoryEntitySerializer", function() { return new R._$ExpenseCategoryEntitySerializer(); }); _lazyOld($, "_$expenseListResponseSerializer", "$get$_$expenseListResponseSerializer", function() { return new M._$ExpenseListResponseSerializer(); }); _lazyOld($, "_$expenseItemResponseSerializer", "$get$_$expenseItemResponseSerializer", function() { return new M._$ExpenseItemResponseSerializer(); }); _lazyOld($, "_$expenseEntitySerializer", "$get$_$expenseEntitySerializer", function() { return new M._$ExpenseEntitySerializer(); }); _lazyOld($, "_$expenseScheduleEntitySerializer", "$get$_$expenseScheduleEntitySerializer", function() { return new M._$ExpenseScheduleEntitySerializer(); }); _lazyOld($, "_$expenseStatusEntitySerializer", "$get$_$expenseStatusEntitySerializer", function() { return new M._$ExpenseStatusEntitySerializer(); }); _lazyOld($, "_$gatewayTokenListResponseSerializer", "$get$_$gatewayTokenListResponseSerializer", function() { return new N._$GatewayTokenListResponseSerializer(); }); _lazyOld($, "_$gatewayTokenItemResponseSerializer", "$get$_$gatewayTokenItemResponseSerializer", function() { return new N._$GatewayTokenItemResponseSerializer(); }); _lazyOld($, "_$gatewayTokenEntitySerializer", "$get$_$gatewayTokenEntitySerializer", function() { return new N._$GatewayTokenEntitySerializer(); }); _lazyOld($, "_$gatewayTokenMetaEntitySerializer", "$get$_$gatewayTokenMetaEntitySerializer", function() { return new N._$GatewayTokenMetaEntitySerializer(); }); _lazyOld($, "_$groupListResponseSerializer", "$get$_$groupListResponseSerializer", function() { return new Q._$GroupListResponseSerializer(); }); _lazyOld($, "_$groupItemResponseSerializer", "$get$_$groupItemResponseSerializer", function() { return new Q._$GroupItemResponseSerializer(); }); _lazyOld($, "_$groupEntitySerializer", "$get$_$groupEntitySerializer", function() { return new Q._$GroupEntitySerializer(); }); _lazyOld($, "_$healthCheckResponseSerializer", "$get$_$healthCheckResponseSerializer", function() { return new U._$HealthCheckResponseSerializer(); }); _lazyOld($, "_$healthCheckPHPResponseSerializer", "$get$_$healthCheckPHPResponseSerializer", function() { return new U._$HealthCheckPHPResponseSerializer(); }); _lazyOld($, "_$preImportResponseSerializer", "$get$_$preImportResponseSerializer", function() { return new B._$PreImportResponseSerializer(); }); _lazyOld($, "_$preImportResponseEntityDetailsSerializer", "$get$_$preImportResponseEntityDetailsSerializer", function() { return new B._$PreImportResponseEntityDetailsSerializer(); }); _lazyOld($, "_$importRequestSerializer", "$get$_$importRequestSerializer", function() { return new B._$ImportRequestSerializer(); }); _lazyOld($, "_$importRequestMappingSerializer", "$get$_$importRequestMappingSerializer", function() { return new B._$ImportRequestMappingSerializer(); }); _lazyOld($, "_$invoiceListResponseSerializer", "$get$_$invoiceListResponseSerializer", function() { return new Q._$InvoiceListResponseSerializer(); }); _lazyOld($, "_$invoiceItemResponseSerializer", "$get$_$invoiceItemResponseSerializer", function() { return new Q._$InvoiceItemResponseSerializer(); }); _lazyOld($, "_$invoiceEntitySerializer", "$get$_$invoiceEntitySerializer", function() { return new Q._$InvoiceEntitySerializer(); }); _lazyOld($, "_$invoiceItemEntitySerializer", "$get$_$invoiceItemEntitySerializer", function() { return new Q._$InvoiceItemEntitySerializer(); }); _lazyOld($, "_$invitationEntitySerializer", "$get$_$invitationEntitySerializer", function() { return new Q._$InvitationEntitySerializer(); }); _lazyOld($, "_$invoiceScheduleEntitySerializer", "$get$_$invoiceScheduleEntitySerializer", function() { return new Q._$InvoiceScheduleEntitySerializer(); }); _lazyOld($, "_$invoiceHistoryEntitySerializer", "$get$_$invoiceHistoryEntitySerializer", function() { return new Q._$InvoiceHistoryEntitySerializer(); }); _lazyOld($, "_$paymentListResponseSerializer", "$get$_$paymentListResponseSerializer", function() { return new F._$PaymentListResponseSerializer(); }); _lazyOld($, "_$paymentItemResponseSerializer", "$get$_$paymentItemResponseSerializer", function() { return new F._$PaymentItemResponseSerializer(); }); _lazyOld($, "_$paymentEntitySerializer", "$get$_$paymentEntitySerializer", function() { return new F._$PaymentEntitySerializer(); }); _lazyOld($, "_$paymentableEntitySerializer", "$get$_$paymentableEntitySerializer", function() { return new F._$PaymentableEntitySerializer(); }); _lazyOld($, "_$paymentTermListResponseSerializer", "$get$_$paymentTermListResponseSerializer", function() { return new X._$PaymentTermListResponseSerializer(); }); _lazyOld($, "_$paymentTermItemResponseSerializer", "$get$_$paymentTermItemResponseSerializer", function() { return new X._$PaymentTermItemResponseSerializer(); }); _lazyOld($, "_$paymentTermEntitySerializer", "$get$_$paymentTermEntitySerializer", function() { return new X._$PaymentTermEntitySerializer(); }); _lazyOld($, "_$productListResponseSerializer", "$get$_$productListResponseSerializer", function() { return new A._$ProductListResponseSerializer(); }); _lazyOld($, "_$productItemResponseSerializer", "$get$_$productItemResponseSerializer", function() { return new A._$ProductItemResponseSerializer(); }); _lazyOld($, "_$productEntitySerializer", "$get$_$productEntitySerializer", function() { return new A._$ProductEntitySerializer(); }); _lazyOld($, "_$projectListResponseSerializer", "$get$_$projectListResponseSerializer", function() { return new A._$ProjectListResponseSerializer(); }); _lazyOld($, "_$projectItemResponseSerializer", "$get$_$projectItemResponseSerializer", function() { return new A._$ProjectItemResponseSerializer(); }); _lazyOld($, "_$projectEntitySerializer", "$get$_$projectEntitySerializer", function() { return new A._$ProjectEntitySerializer(); }); _lazyOld($, "serializers", "$get$serializers", function() { var t1 = $.$get$_$serializers().toBuilder$0(); t1._plugins.add$1(0, new T.StandardJsonPlugin()); return t1.build$0(0); }); _lazyOld($, "_$serializers", "$get$_$serializers", function() { var t1 = U.Serializers_Serializers().toBuilder$0(); t1.add$1(0, $.$get$_$accountEntitySerializer()); t1.add$1(0, $.$get$_$activityEntitySerializer()); t1.add$1(0, $.$get$_$appLayoutSerializer()); t1.add$1(0, $.$get$_$appSidebarModeSerializer()); t1.add$1(0, $.$get$_$appStateSerializer()); t1.add$1(0, $.$get$_$authStateSerializer()); t1.add$1(0, $.$get$_$clientEntitySerializer()); t1.add$1(0, $.$get$_$clientItemResponseSerializer()); t1.add$1(0, $.$get$_$clientListResponseSerializer()); t1.add$1(0, $.$get$_$clientStateSerializer()); t1.add$1(0, $.$get$_$clientUIStateSerializer()); t1.add$1(0, $.$get$_$companyEntitySerializer()); t1.add$1(0, $.$get$_$companyGatewayEntitySerializer()); t1.add$1(0, $.$get$_$companyGatewayItemResponseSerializer()); t1.add$1(0, $.$get$_$companyGatewayListResponseSerializer()); t1.add$1(0, $.$get$_$companyGatewayStateSerializer()); t1.add$1(0, $.$get$_$companyGatewayUIStateSerializer()); t1.add$1(0, $.$get$_$companyItemResponseSerializer()); t1.add$1(0, $.$get$_$companyPrefStateSerializer()); t1.add$1(0, $.$get$_$contactEntitySerializer()); t1.add$1(0, $.$get$_$countryEntitySerializer()); t1.add$1(0, $.$get$_$countryItemResponseSerializer()); t1.add$1(0, $.$get$_$countryListResponseSerializer()); t1.add$1(0, $.$get$_$creditItemResponseSerializer()); t1.add$1(0, $.$get$_$creditListResponseSerializer()); t1.add$1(0, $.$get$_$creditStateSerializer()); t1.add$1(0, $.$get$_$creditUIStateSerializer()); t1.add$1(0, $.$get$_$currencyEntitySerializer()); t1.add$1(0, $.$get$_$currencyItemResponseSerializer()); t1.add$1(0, $.$get$_$currencyListResponseSerializer()); t1.add$1(0, $.$get$_$dashboardUISettingsSerializer()); t1.add$1(0, $.$get$_$dashboardUIStateSerializer()); t1.add$1(0, $.$get$_$dateFormatEntitySerializer()); t1.add$1(0, $.$get$_$dateFormatItemResponseSerializer()); t1.add$1(0, $.$get$_$dateFormatListResponseSerializer()); t1.add$1(0, $.$get$_$dateRangeSerializer()); t1.add$1(0, $.$get$_$dateRangeComparisonSerializer()); t1.add$1(0, $.$get$_$datetimeFormatEntitySerializer()); t1.add$1(0, $.$get$_$datetimeFormatItemResponseSerializer()); t1.add$1(0, $.$get$_$datetimeFormatListResponseSerializer()); t1.add$1(0, $.$get$_$designEntitySerializer()); t1.add$1(0, $.$get$_$designItemResponseSerializer()); t1.add$1(0, $.$get$_$designListResponseSerializer()); t1.add$1(0, $.$get$_$designPreviewRequestSerializer()); t1.add$1(0, $.$get$_$designStateSerializer()); t1.add$1(0, $.$get$_$designUIStateSerializer()); t1.add$1(0, $.$get$_$documentEntitySerializer()); t1.add$1(0, $.$get$_$documentItemResponseSerializer()); t1.add$1(0, $.$get$_$documentListResponseSerializer()); t1.add$1(0, $.$get$_$documentStateSerializer()); t1.add$1(0, $.$get$_$documentUIStateSerializer()); t1.add$1(0, $.$get$_$emailTemplateSerializer()); t1.add$1(0, $.$get$_$entityStateSerializer()); t1.add$1(0, $.$get$_$entityTypeSerializer()); t1.add$1(0, $.$get$_$expenseCategoryEntitySerializer()); t1.add$1(0, $.$get$_$expenseCategoryItemResponseSerializer()); t1.add$1(0, $.$get$_$expenseCategoryListResponseSerializer()); t1.add$1(0, $.$get$_$expenseCategoryStateSerializer()); t1.add$1(0, $.$get$_$expenseCategoryUIStateSerializer()); t1.add$1(0, $.$get$_$expenseEntitySerializer()); t1.add$1(0, $.$get$_$expenseItemResponseSerializer()); t1.add$1(0, $.$get$_$expenseListResponseSerializer()); t1.add$1(0, $.$get$_$expenseScheduleEntitySerializer()); t1.add$1(0, $.$get$_$expenseStateSerializer()); t1.add$1(0, $.$get$_$expenseStatusEntitySerializer()); t1.add$1(0, $.$get$_$expenseUIStateSerializer()); t1.add$1(0, $.$get$_$feesAndLimitsSettingsSerializer()); t1.add$1(0, $.$get$_$gatewayEntitySerializer()); t1.add$1(0, $.$get$_$gatewayOptionsEntitySerializer()); t1.add$1(0, $.$get$_$gatewayTokenEntitySerializer()); t1.add$1(0, $.$get$_$gatewayTokenItemResponseSerializer()); t1.add$1(0, $.$get$_$gatewayTokenListResponseSerializer()); t1.add$1(0, $.$get$_$gatewayTokenMetaEntitySerializer()); t1.add$1(0, $.$get$_$groupEntitySerializer()); t1.add$1(0, $.$get$_$groupItemResponseSerializer()); t1.add$1(0, $.$get$_$groupListResponseSerializer()); t1.add$1(0, $.$get$_$groupStateSerializer()); t1.add$1(0, $.$get$_$groupUIStateSerializer()); t1.add$1(0, $.$get$_$healthCheckPHPResponseSerializer()); t1.add$1(0, $.$get$_$healthCheckResponseSerializer()); t1.add$1(0, $.$get$_$historyRecordSerializer()); t1.add$1(0, $.$get$_$importRequestSerializer()); t1.add$1(0, $.$get$_$importRequestMappingSerializer()); t1.add$1(0, $.$get$_$industryEntitySerializer()); t1.add$1(0, $.$get$_$industryItemResponseSerializer()); t1.add$1(0, $.$get$_$industryListResponseSerializer()); t1.add$1(0, $.$get$_$invitationEntitySerializer()); t1.add$1(0, $.$get$_$invoiceEntitySerializer()); t1.add$1(0, $.$get$_$invoiceHistoryEntitySerializer()); t1.add$1(0, $.$get$_$invoiceItemEntitySerializer()); t1.add$1(0, $.$get$_$invoiceItemResponseSerializer()); t1.add$1(0, $.$get$_$invoiceListResponseSerializer()); t1.add$1(0, $.$get$_$invoiceScheduleEntitySerializer()); t1.add$1(0, $.$get$_$invoiceStateSerializer()); t1.add$1(0, $.$get$_$invoiceStatusEntitySerializer()); t1.add$1(0, $.$get$_$invoiceUIStateSerializer()); t1.add$1(0, $.$get$_$languageEntitySerializer()); t1.add$1(0, $.$get$_$languageItemResponseSerializer()); t1.add$1(0, $.$get$_$languageListResponseSerializer()); t1.add$1(0, $.$get$_$ledgerEntitySerializer()); t1.add$1(0, $.$get$_$listUIStateSerializer()); t1.add$1(0, $.$get$_$loginResponseSerializer()); t1.add$1(0, $.$get$_$moduleLayoutSerializer()); t1.add$1(0, $.$get$_$paymentEntitySerializer()); t1.add$1(0, $.$get$_$paymentItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentListResponseSerializer()); t1.add$1(0, $.$get$_$paymentStateSerializer()); t1.add$1(0, $.$get$_$paymentTermEntitySerializer()); t1.add$1(0, $.$get$_$paymentTermItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentTermListResponseSerializer()); t1.add$1(0, $.$get$_$paymentTermStateSerializer()); t1.add$1(0, $.$get$_$paymentTermUIStateSerializer()); t1.add$1(0, $.$get$_$paymentTypeEntitySerializer()); t1.add$1(0, $.$get$_$paymentTypeItemResponseSerializer()); t1.add$1(0, $.$get$_$paymentTypeListResponseSerializer()); t1.add$1(0, $.$get$_$paymentUIStateSerializer()); t1.add$1(0, $.$get$_$paymentableEntitySerializer()); t1.add$1(0, $.$get$_$preImportResponseSerializer()); t1.add$1(0, $.$get$_$preImportResponseEntityDetailsSerializer()); t1.add$1(0, $.$get$_$prefStateSerializer()); t1.add$1(0, $.$get$_$prefStateSortFieldSerializer()); t1.add$1(0, $.$get$_$productEntitySerializer()); t1.add$1(0, $.$get$_$productItemResponseSerializer()); t1.add$1(0, $.$get$_$productListResponseSerializer()); t1.add$1(0, $.$get$_$productStateSerializer()); t1.add$1(0, $.$get$_$productUIStateSerializer()); t1.add$1(0, $.$get$_$projectEntitySerializer()); t1.add$1(0, $.$get$_$projectItemResponseSerializer()); t1.add$1(0, $.$get$_$projectListResponseSerializer()); t1.add$1(0, $.$get$_$projectStateSerializer()); t1.add$1(0, $.$get$_$projectUIStateSerializer()); t1.add$1(0, $.$get$_$quoteStateSerializer()); t1.add$1(0, $.$get$_$quoteUIStateSerializer()); t1.add$1(0, $.$get$_$recurringExpenseStateSerializer()); t1.add$1(0, $.$get$_$recurringExpenseUIStateSerializer()); t1.add$1(0, $.$get$_$recurringInvoiceStateSerializer()); t1.add$1(0, $.$get$_$recurringInvoiceUIStateSerializer()); t1.add$1(0, $.$get$_$registrationFieldEntitySerializer()); t1.add$1(0, $.$get$_$reportSettingsEntitySerializer()); t1.add$1(0, $.$get$_$reportsUIStateSerializer()); t1.add$1(0, $.$get$_$settingsEntitySerializer()); t1.add$1(0, $.$get$_$settingsUIStateSerializer()); t1.add$1(0, $.$get$_$sizeEntitySerializer()); t1.add$1(0, $.$get$_$sizeItemResponseSerializer()); t1.add$1(0, $.$get$_$sizeListResponseSerializer()); t1.add$1(0, $.$get$_$staticDataEntitySerializer()); t1.add$1(0, $.$get$_$staticDataItemResponseSerializer()); t1.add$1(0, $.$get$_$staticStateSerializer()); t1.add$1(0, $.$get$_$subscriptionEntitySerializer()); t1.add$1(0, $.$get$_$subscriptionItemResponseSerializer()); t1.add$1(0, $.$get$_$subscriptionListResponseSerializer()); t1.add$1(0, $.$get$_$subscriptionStateSerializer()); t1.add$1(0, $.$get$_$subscriptionUIStateSerializer()); t1.add$1(0, $.$get$_$systemLogEntitySerializer()); t1.add$1(0, $.$get$_$taskEntitySerializer()); t1.add$1(0, $.$get$_$taskItemResponseSerializer()); t1.add$1(0, $.$get$_$taskListResponseSerializer()); t1.add$1(0, $.$get$_$taskStateSerializer()); t1.add$1(0, $.$get$_$taskStatusEntitySerializer()); t1.add$1(0, $.$get$_$taskStatusItemResponseSerializer()); t1.add$1(0, $.$get$_$taskStatusListResponseSerializer()); t1.add$1(0, $.$get$_$taskStatusStateSerializer()); t1.add$1(0, $.$get$_$taskStatusUIStateSerializer()); t1.add$1(0, $.$get$_$taskUIStateSerializer()); t1.add$1(0, $.$get$_$taxRateEntitySerializer()); t1.add$1(0, $.$get$_$taxRateItemResponseSerializer()); t1.add$1(0, $.$get$_$taxRateListResponseSerializer()); t1.add$1(0, $.$get$_$taxRateStateSerializer()); t1.add$1(0, $.$get$_$taxRateUIStateSerializer()); t1.add$1(0, $.$get$_$templateEntitySerializer()); t1.add$1(0, $.$get$_$timezoneEntitySerializer()); t1.add$1(0, $.$get$_$timezoneItemResponseSerializer()); t1.add$1(0, $.$get$_$timezoneListResponseSerializer()); t1.add$1(0, $.$get$_$tokenEntitySerializer()); t1.add$1(0, $.$get$_$tokenItemResponseSerializer()); t1.add$1(0, $.$get$_$tokenListResponseSerializer()); t1.add$1(0, $.$get$_$tokenStateSerializer()); t1.add$1(0, $.$get$_$tokenUIStateSerializer()); t1.add$1(0, $.$get$_$uIStateSerializer()); t1.add$1(0, $.$get$_$userCompanyEntitySerializer()); t1.add$1(0, $.$get$_$userCompanyItemResponseSerializer()); t1.add$1(0, $.$get$_$userCompanyStateSerializer()); t1.add$1(0, $.$get$_$userEntitySerializer()); t1.add$1(0, $.$get$_$userItemResponseSerializer()); t1.add$1(0, $.$get$_$userListResponseSerializer()); t1.add$1(0, $.$get$_$userSettingsEntitySerializer()); t1.add$1(0, $.$get$_$userStateSerializer()); t1.add$1(0, $.$get$_$userTwoFactorDataSerializer()); t1.add$1(0, $.$get$_$userTwoFactorResponseSerializer()); t1.add$1(0, $.$get$_$userUIStateSerializer()); t1.add$1(0, $.$get$_$vendorContactEntitySerializer()); t1.add$1(0, $.$get$_$vendorEntitySerializer()); t1.add$1(0, $.$get$_$vendorItemResponseSerializer()); t1.add$1(0, $.$get$_$vendorListResponseSerializer()); t1.add$1(0, $.$get$_$vendorStateSerializer()); t1.add$1(0, $.$get$_$vendorUIStateSerializer()); t1.add$1(0, $.$get$_$webhookConfigurationEntitySerializer()); t1.add$1(0, $.$get$_$webhookEntitySerializer()); t1.add$1(0, $.$get$_$webhookItemResponseSerializer()); t1.add$1(0, $.$get$_$webhookListResponseSerializer()); t1.add$1(0, $.$get$_$webhookStateSerializer()); t1.add$1(0, $.$get$_$webhookUIStateSerializer()); t1.addBuilderFactory$2(C.FullType_Ag3, new K._$serializers_closure()); t1.addBuilderFactory$2(C.FullType_A8J, new K._$serializers_closure0()); t1.addBuilderFactory$2(C.FullType_CFh, new K._$serializers_closure1()); t1.addBuilderFactory$2(C.FullType_QWw, new K._$serializers_closure2()); t1.addBuilderFactory$2(C.FullType_2jN, new K._$serializers_closure3()); t1.addBuilderFactory$2(C.FullType_kr3, new K._$serializers_closure4()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure5()); t1.addBuilderFactory$2(C.FullType_oGx, new K._$serializers_closure6()); t1.addBuilderFactory$2(C.FullType_kr30, new K._$serializers_closure7()); t1.addBuilderFactory$2(C.FullType_4uk, new K._$serializers_closure8()); t1.addBuilderFactory$2(C.FullType_4uk, new K._$serializers_closure9()); t1.addBuilderFactory$2(C.FullType_wsa, new K._$serializers_closure10()); t1.addBuilderFactory$2(C.FullType_l2n, new K._$serializers_closure11()); t1.addBuilderFactory$2(C.FullType_NYu, new K._$serializers_closure12()); t1.addBuilderFactory$2(C.FullType_N80, new K._$serializers_closure13()); t1.addBuilderFactory$2(C.FullType_rQK, new K._$serializers_closure14()); t1.addBuilderFactory$2(C.FullType_gsm, new K._$serializers_closure15()); t1.addBuilderFactory$2(C.FullType_r6h, new K._$serializers_closure16()); t1.addBuilderFactory$2(C.FullType_mJb, new K._$serializers_closure17()); t1.addBuilderFactory$2(C.FullType_kr30, new K._$serializers_closure18()); t1.addBuilderFactory$2(C.FullType_cL3, new K._$serializers_closure19()); t1.addBuilderFactory$2(C.FullType_IWk, new K._$serializers_closure20()); t1.addBuilderFactory$2(C.FullType_rQK, new K._$serializers_closure21()); t1.addBuilderFactory$2(C.FullType_gsm, new K._$serializers_closure22()); t1.addBuilderFactory$2(C.FullType_8sg, new K._$serializers_closure23()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure24()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure25()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure26()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure27()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure28()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure29()); t1.addBuilderFactory$2(C.FullType_aXU, new K._$serializers_closure30()); t1.addBuilderFactory$2(C.FullType_JmU, new K._$serializers_closure31()); t1.addBuilderFactory$2(C.FullType_Icb, new K._$serializers_closure32()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure33()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure34()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure35()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure36()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure37()); t1.addBuilderFactory$2(C.FullType_kSI, new K._$serializers_closure38()); t1.addBuilderFactory$2(C.FullType_bQV, new K._$serializers_closure39()); t1.addBuilderFactory$2(C.FullType_8cq, new K._$serializers_closure40()); t1.addBuilderFactory$2(C.FullType_0vR, new K._$serializers_closure41()); t1.addBuilderFactory$2(C.FullType_kr3, new K._$serializers_closure42()); t1.addBuilderFactory$2(C.FullType_EOZ, new K._$serializers_closure43()); t1.addBuilderFactory$2(C.FullType_EOZ, new K._$serializers_closure44()); t1.addBuilderFactory$2(C.FullType_QWw, new K._$serializers_closure45()); t1.addBuilderFactory$2(C.FullType_IIj, new K._$serializers_closure46()); t1.addBuilderFactory$2(C.FullType_WVg, new K._$serializers_closure47()); t1.addBuilderFactory$2(C.FullType_woc, new K._$serializers_closure48()); t1.addBuilderFactory$2(C.FullType_A8J, new K._$serializers_closure49()); t1.addBuilderFactory$2(C.FullType_8cq, new K._$serializers_closure50()); t1.addBuilderFactory$2(C.FullType_e7r, new K._$serializers_closure51()); t1.addBuilderFactory$2(C.FullType_Ag3, new K._$serializers_closure52()); t1.addBuilderFactory$2(C.FullType_GBo, new K._$serializers_closure53()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure54()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure55()); t1.addBuilderFactory$2(C.FullType_0vR, new K._$serializers_closure56()); t1.addBuilderFactory$2(C.FullType_ORM, new K._$serializers_closure57()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure58()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure59()); t1.addBuilderFactory$2(C.FullType_UWS, new K._$serializers_closure60()); t1.addBuilderFactory$2(C.FullType_KEc, new K._$serializers_closure61()); t1.addBuilderFactory$2(C.FullType_0vR, new K._$serializers_closure62()); t1.addBuilderFactory$2(C.FullType_Pss, new K._$serializers_closure63()); t1.addBuilderFactory$2(C.FullType_8sg, new K._$serializers_closure64()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure65()); t1.addBuilderFactory$2(C.FullType_mKc, new K._$serializers_closure66()); t1.addBuilderFactory$2(C.FullType_46c, new K._$serializers_closure67()); t1.addBuilderFactory$2(C.FullType_NIe, new K._$serializers_closure68()); t1.addBuilderFactory$2(C.FullType_kvD, new K._$serializers_closure69()); t1.addBuilderFactory$2(C.FullType_oGx, new K._$serializers_closure70()); t1.addBuilderFactory$2(C.FullType_pjG, new K._$serializers_closure71()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure72()); t1.addBuilderFactory$2(C.FullType_WXJ, new K._$serializers_closure73()); t1.addBuilderFactory$2(C.FullType_l2n, new K._$serializers_closure74()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure75()); t1.addBuilderFactory$2(C.FullType_xS5, new K._$serializers_closure76()); t1.addBuilderFactory$2(C.FullType_RDC, new K._$serializers_closure77()); t1.addBuilderFactory$2(C.FullType_JhS, new K._$serializers_closure78()); t1.addBuilderFactory$2(C.FullType_koo, new K._$serializers_closure79()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure80()); t1.addBuilderFactory$2(C.FullType_QWw, new K._$serializers_closure81()); t1.addBuilderFactory$2(C.FullType_r6h, new K._$serializers_closure82()); t1.addBuilderFactory$2(C.FullType_ORM, new K._$serializers_closure83()); t1.addBuilderFactory$2(C.FullType_kvD, new K._$serializers_closure84()); t1.addBuilderFactory$2(C.FullType_mJb, new K._$serializers_closure85()); t1.addBuilderFactory$2(C.FullType_U06, new K._$serializers_closure86()); t1.addBuilderFactory$2(C.FullType_U06, new K._$serializers_closure87()); t1.addBuilderFactory$2(C.FullType_U06, new K._$serializers_closure88()); t1.addBuilderFactory$2(C.FullType_GBo, new K._$serializers_closure89()); t1.addBuilderFactory$2(C.FullType_KEc, new K._$serializers_closure90()); t1.addBuilderFactory$2(C.FullType_wsa, new K._$serializers_closure91()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure92()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure93()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure94()); t1.addBuilderFactory$2(C.FullType_qwt, new K._$serializers_closure95()); t1.addBuilderFactory$2(C.FullType_NIe, new K._$serializers_closure96()); t1.addBuilderFactory$2(C.FullType_UWS, new K._$serializers_closure97()); t1.addBuilderFactory$2(C.FullType_WVg, new K._$serializers_closure98()); t1.addBuilderFactory$2(C.FullType_IIj, new K._$serializers_closure99()); t1.addBuilderFactory$2(C.FullType_NYu, new K._$serializers_closure100()); t1.addBuilderFactory$2(C.FullType_mKc, new K._$serializers_closure101()); t1.addBuilderFactory$2(C.FullType_89t, new K._$serializers_closure102()); t1.addBuilderFactory$2(C.FullType_UH2, new K._$serializers_closure103()); t1.addBuilderFactory$2(C.FullType_e7r, new K._$serializers_closure104()); t1.addBuilderFactory$2(C.FullType_MO9, new K._$serializers_closure105()); t1.addBuilderFactory$2(C.FullType_EBZ, new K._$serializers_closure106()); t1.addBuilderFactory$2(C.FullType_Pss, new K._$serializers_closure107()); t1.addBuilderFactory$2(C.FullType_46c, new K._$serializers_closure108()); t1.addBuilderFactory$2(C.FullType_mVA, new K._$serializers_closure109()); t1.addBuilderFactory$2(C.FullType_QqY, new K._$serializers_closure110()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure111()); t1.addBuilderFactory$2(C.FullType_fL6, new K._$serializers_closure112()); t1.addBuilderFactory$2(C.FullType_ym9, new K._$serializers_closure113()); t1.addBuilderFactory$2(C.FullType_mZn, new K._$serializers_closure114()); t1.addBuilderFactory$2(C.FullType_mZn, new K._$serializers_closure115()); t1.addBuilderFactory$2(C.FullType_Nhy, new K._$serializers_closure116()); t1.addBuilderFactory$2(C.FullType_wHc, new K._$serializers_closure117()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure118()); t1.addBuilderFactory$2(C.FullType_6Re, new K._$serializers_closure119()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure120()); t1.addBuilderFactory$2(C.FullType_5m9, new K._$serializers_closure121()); t1.addBuilderFactory$2(C.FullType_pUI, new K._$serializers_closure122()); t1.addBuilderFactory$2(C.FullType_CWG, new K._$serializers_closure123()); t1.addBuilderFactory$2(C.FullType_mFp, new K._$serializers_closure124()); t1.addBuilderFactory$2(C.FullType_sYl, new K._$serializers_closure125()); t1.addBuilderFactory$2(C.FullType_9Sk, new K._$serializers_closure126()); t1.addBuilderFactory$2(C.FullType_YiR, new K._$serializers_closure127()); t1.addBuilderFactory$2(C.FullType_2fF, new K._$serializers_closure128()); t1.addBuilderFactory$2(C.FullType_0kM, new K._$serializers_closure129()); t1.addBuilderFactory$2(C.FullType_IWk, new K._$serializers_closure130()); t1.addBuilderFactory$2(C.FullType_4ig, new K._$serializers_closure131()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure132()); t1.addBuilderFactory$2(C.FullType_0, new K._$serializers_closure133()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure134()); t1.addBuilderFactory$2(C.FullType_HZS, new K._$serializers_closure135()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure136()); t1.addBuilderFactory$2(C.FullType_6Ps, new K._$serializers_closure137()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure138()); t1.addBuilderFactory$2(C.FullType_6Ps, new K._$serializers_closure139()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure140()); t1.addBuilderFactory$2(C.FullType_oCX, new K._$serializers_closure141()); t1.addBuilderFactory$2(C.FullType_oGx, new K._$serializers_closure142()); t1.addBuilderFactory$2(C.FullType_sm9, new K._$serializers_closure143()); t1.addBuilderFactory$2(C.FullType_CxZ, new K._$serializers_closure144()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure145()); t1.addBuilderFactory$2(C.FullType_Yup, new K._$serializers_closure146()); t1.addBuilderFactory$2(C.FullType_n67, new K._$serializers_closure147()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure148()); t1.addBuilderFactory$2(C.FullType_n67, new K._$serializers_closure149()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure150()); t1.addBuilderFactory$2(C.FullType_n67, new K._$serializers_closure151()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure152()); t1.addBuilderFactory$2(C.FullType_n67, new K._$serializers_closure153()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure154()); t1.addBuilderFactory$2(C.FullType_mC7, new K._$serializers_closure155()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure156()); t1.addBuilderFactory$2(C.FullType_weg, new K._$serializers_closure157()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure158()); t1.addBuilderFactory$2(C.FullType_blF, new K._$serializers_closure159()); t1.addBuilderFactory$2(C.FullType_woD, new K._$serializers_closure160()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure161()); t1.addBuilderFactory$2(C.FullType_qFt, new K._$serializers_closure162()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure163()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure164()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure165()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure166()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure167()); t1.addBuilderFactory$2(C.FullType_LNO, new K._$serializers_closure168()); t1.addBuilderFactory$2(C.FullType_mZn, new K._$serializers_closure169()); t1.addBuilderFactory$2(C.FullType_YGD, new K._$serializers_closure170()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure171()); t1.addBuilderFactory$2(C.FullType_woc0, new K._$serializers_closure172()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure173()); t1.addBuilderFactory$2(C.FullType_woc, new K._$serializers_closure174()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure175()); t1.addBuilderFactory$2(C.FullType_o2l, new K._$serializers_closure176()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure177()); t1.addBuilderFactory$2(C.FullType_C42, new K._$serializers_closure178()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure179()); t1.addBuilderFactory$2(C.FullType_4y3, new K._$serializers_closure180()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure181()); t1.addBuilderFactory$2(C.FullType_sav, new K._$serializers_closure182()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure183()); t1.addBuilderFactory$2(C.FullType_QKO, new K._$serializers_closure184()); t1.addBuilderFactory$2(C.FullType_6m4, new K._$serializers_closure185()); t1.addBuilderFactory$2(C.FullType_5FV, new K._$serializers_closure186()); return t1.build$0(0); }); _lazyOld($, "_$settingsEntitySerializer", "$get$_$settingsEntitySerializer", function() { return new G._$SettingsEntitySerializer(); }); _lazyOld($, "colorThemesMap", "$get$colorThemesMap", function() { return P.LinkedHashMap_LinkedHashMap$_literal(["light", A.ColorTheme$(C.Color_4294521172, C.Color_4281975021, C.Color_4279396081, C.Color_4278237002, C.Color_4294945024), "dark", A.ColorTheme$(C.Color_4287315264, C.Color_4280912555, C.Color_4278994339, C.Color_4282414389, C.Color_4289228800), "cerulean", A.ColorTheme$(C.Color_4291238946, C.Color_4278402163, C.Color_4281312487, C.Color_4285769785, C.Color_4292695552), "cosmo", A.ColorTheme$(C.Color_4294901817, C.Color_4288238779, C.Color_4280778979, C.Color_4282365464, C.Color_4294931736), "cyborg", A.ColorTheme$(C.Color_4291559424, C.Color_4288230348, C.Color_4280983510, C.Color_4286034688, C.Color_4294936576), "darkly", A.ColorTheme$(C.Color_4293348412, C.Color_4281637083, C.Color_4281817727, C.Color_4278238348, C.Color_4294155282), "flatly", A.ColorTheme$(C.Color_4293348412, C.Color_4281637083, C.Color_4281089616, C.Color_4279811228, C.Color_4294155282), "journal", A.ColorTheme$(C.Color_4294277632, C.Color_4281558681, C.Color_4293617764, C.Color_4280463948, C.Color_4294305317), "litera", A.ColorTheme$(C.Color_4292432719, C.Color_4279739064, C.Color_4282745580, C.Color_4278368373, C.Color_4293963086), "lumen", A.ColorTheme$(C.Color_4294918454, C.Color_4285909739, C.Color_4279602362, C.Color_4280858156, C.Color_4294935835), "lux", A.ColorTheme$(C.Color_4292432719, C.Color_4280261583, C.Color_4279900698, C.Color_4283154291, C.Color_4293963086), "materia", A.ColorTheme$(C.Color_4293205027, C.Color_4288423856, C.Color_4280391411, C.Color_4283215696, C.Color_4294940672), "minty", A.ColorTheme$(C.Color_4294932561, C.Color_4285318101, C.Color_4286104237, C.Color_4283878557, C.Color_4294954599), "pulse", A.ColorTheme$(C.Color_4294719801, C.Color_4278230236, C.Color_4284035478, C.Color_4279482709, C.Color_4293894941), "sandstone", A.ColorTheme$(C.Color_4292432719, C.Color_4280921056, C.Color_4281490824, C.Color_4287874379, C.Color_4294212668), "simplex", A.ColorTheme$(C.Color_4288366495, C.Color_4278360783, C.Color_4292420367, C.Color_4282815496, C.Color_4292444959), "sketchy", A.ColorTheme$(C.Color_4292621637, C.Color_4279739064, C.Color_4281545523, C.Color_4280854341, C.Color_4294951175), "slate", A.ColorTheme$(C.Color_4293812059, C.Color_4284203230, C.Color_4282007364, C.Color_4284662882, C.Color_4294480902), "solar", A.ColorTheme$(C.Color_4292032130, C.Color_4280716242, C.Color_4290087168, C.Color_4280983960, C.Color_4291513110), "spacelab", A.ColorTheme$(C.Color_4291625472, C.Color_4281571827, C.Color_4282674843, C.Color_4282168609, C.Color_4292113664), "superhero", A.ColorTheme$(C.Color_4292432719, C.Color_4284203230, C.Color_4292831514, C.Color_4284266588, C.Color_4293963086), "united", A.ColorTheme$(C.Color_4292818988, C.Color_4279739064, C.Color_4293481504, C.Color_4281906250, C.Color_4293900094), "yeti", A.ColorTheme$(C.Color_4293935396, C.Color_4284203230, C.Color_4278226106, C.Color_4282625130, C.Color_4293496834)], type$.legacy_String, H.findType("ColorTheme*")); }); _lazyOld($, "_$countryListResponseSerializer", "$get$_$countryListResponseSerializer", function() { return new L._$CountryListResponseSerializer(); }); _lazyOld($, "_$countryItemResponseSerializer", "$get$_$countryItemResponseSerializer", function() { return new L._$CountryItemResponseSerializer(); }); _lazyOld($, "_$countryEntitySerializer", "$get$_$countryEntitySerializer", function() { return new L._$CountryEntitySerializer(); }); _lazyOld($, "_$currencyListResponseSerializer", "$get$_$currencyListResponseSerializer", function() { return new O._$CurrencyListResponseSerializer(); }); _lazyOld($, "_$currencyItemResponseSerializer", "$get$_$currencyItemResponseSerializer", function() { return new O._$CurrencyItemResponseSerializer(); }); _lazyOld($, "_$currencyEntitySerializer", "$get$_$currencyEntitySerializer", function() { return new O._$CurrencyEntitySerializer(); }); _lazyOld($, "_$dateFormatListResponseSerializer", "$get$_$dateFormatListResponseSerializer", function() { return new M._$DateFormatListResponseSerializer(); }); _lazyOld($, "_$dateFormatItemResponseSerializer", "$get$_$dateFormatItemResponseSerializer", function() { return new M._$DateFormatItemResponseSerializer(); }); _lazyOld($, "_$dateFormatEntitySerializer", "$get$_$dateFormatEntitySerializer", function() { return new M._$DateFormatEntitySerializer(); }); _lazyOld($, "_$datetimeFormatListResponseSerializer", "$get$_$datetimeFormatListResponseSerializer", function() { return new F._$DatetimeFormatListResponseSerializer(); }); _lazyOld($, "_$datetimeFormatItemResponseSerializer", "$get$_$datetimeFormatItemResponseSerializer", function() { return new F._$DatetimeFormatItemResponseSerializer(); }); _lazyOld($, "_$datetimeFormatEntitySerializer", "$get$_$datetimeFormatEntitySerializer", function() { return new F._$DatetimeFormatEntitySerializer(); }); _lazyOld($, "_$industryListResponseSerializer", "$get$_$industryListResponseSerializer", function() { return new O._$IndustryListResponseSerializer(); }); _lazyOld($, "_$industryItemResponseSerializer", "$get$_$industryItemResponseSerializer", function() { return new O._$IndustryItemResponseSerializer(); }); _lazyOld($, "_$industryEntitySerializer", "$get$_$industryEntitySerializer", function() { return new O._$IndustryEntitySerializer(); }); _lazyOld($, "_$invoiceStatusEntitySerializer", "$get$_$invoiceStatusEntitySerializer", function() { return new F._$InvoiceStatusEntitySerializer(); }); _lazyOld($, "_$languageListResponseSerializer", "$get$_$languageListResponseSerializer", function() { return new A._$LanguageListResponseSerializer(); }); _lazyOld($, "_$languageItemResponseSerializer", "$get$_$languageItemResponseSerializer", function() { return new A._$LanguageItemResponseSerializer(); }); _lazyOld($, "_$languageEntitySerializer", "$get$_$languageEntitySerializer", function() { return new A._$LanguageEntitySerializer(); }); _lazyOld($, "_$paymentTypeListResponseSerializer", "$get$_$paymentTypeListResponseSerializer", function() { return new S._$PaymentTypeListResponseSerializer(); }); _lazyOld($, "_$paymentTypeItemResponseSerializer", "$get$_$paymentTypeItemResponseSerializer", function() { return new S._$PaymentTypeItemResponseSerializer(); }); _lazyOld($, "_$paymentTypeEntitySerializer", "$get$_$paymentTypeEntitySerializer", function() { return new S._$PaymentTypeEntitySerializer(); }); _lazyOld($, "_$sizeListResponseSerializer", "$get$_$sizeListResponseSerializer", function() { return new D._$SizeListResponseSerializer(); }); _lazyOld($, "_$sizeItemResponseSerializer", "$get$_$sizeItemResponseSerializer", function() { return new D._$SizeItemResponseSerializer(); }); _lazyOld($, "_$sizeEntitySerializer", "$get$_$sizeEntitySerializer", function() { return new D._$SizeEntitySerializer(); }); _lazyOld($, "_$staticDataItemResponseSerializer", "$get$_$staticDataItemResponseSerializer", function() { return new S._$StaticDataItemResponseSerializer(); }); _lazyOld($, "_$staticDataEntitySerializer", "$get$_$staticDataEntitySerializer", function() { return new S._$StaticDataEntitySerializer(); }); _lazyOld($, "_$templateEntitySerializer", "$get$_$templateEntitySerializer", function() { return new S._$TemplateEntitySerializer(); }); _lazyOld($, "_$timezoneListResponseSerializer", "$get$_$timezoneListResponseSerializer", function() { return new U._$TimezoneListResponseSerializer(); }); _lazyOld($, "_$timezoneItemResponseSerializer", "$get$_$timezoneItemResponseSerializer", function() { return new U._$TimezoneItemResponseSerializer(); }); _lazyOld($, "_$timezoneEntitySerializer", "$get$_$timezoneEntitySerializer", function() { return new U._$TimezoneEntitySerializer(); }); _lazyOld($, "_$subscriptionListResponseSerializer", "$get$_$subscriptionListResponseSerializer", function() { return new X._$SubscriptionListResponseSerializer(); }); _lazyOld($, "_$subscriptionItemResponseSerializer", "$get$_$subscriptionItemResponseSerializer", function() { return new X._$SubscriptionItemResponseSerializer(); }); _lazyOld($, "_$subscriptionEntitySerializer", "$get$_$subscriptionEntitySerializer", function() { return new X._$SubscriptionEntitySerializer(); }); _lazyOld($, "_$webhookConfigurationEntitySerializer", "$get$_$webhookConfigurationEntitySerializer", function() { return new X._$WebhookConfigurationEntitySerializer(); }); _lazyOld($, "_$systemLogEntitySerializer", "$get$_$systemLogEntitySerializer", function() { return new F._$SystemLogEntitySerializer(); }); _lazyOld($, "_$taskListResponseSerializer", "$get$_$taskListResponseSerializer", function() { return new D._$TaskListResponseSerializer(); }); _lazyOld($, "_$taskItemResponseSerializer", "$get$_$taskItemResponseSerializer", function() { return new D._$TaskItemResponseSerializer(); }); _lazyOld($, "_$taskEntitySerializer", "$get$_$taskEntitySerializer", function() { return new D._$TaskEntitySerializer(); }); _lazyOld($, "_$taskStatusListResponseSerializer", "$get$_$taskStatusListResponseSerializer", function() { return new S._$TaskStatusListResponseSerializer(); }); _lazyOld($, "_$taskStatusItemResponseSerializer", "$get$_$taskStatusItemResponseSerializer", function() { return new S._$TaskStatusItemResponseSerializer(); }); _lazyOld($, "_$taskStatusEntitySerializer", "$get$_$taskStatusEntitySerializer", function() { return new S._$TaskStatusEntitySerializer(); }); _lazyOld($, "_$taxRateListResponseSerializer", "$get$_$taxRateListResponseSerializer", function() { return new T._$TaxRateListResponseSerializer(); }); _lazyOld($, "_$taxRateItemResponseSerializer", "$get$_$taxRateItemResponseSerializer", function() { return new T._$TaxRateItemResponseSerializer(); }); _lazyOld($, "_$taxRateEntitySerializer", "$get$_$taxRateEntitySerializer", function() { return new T._$TaxRateEntitySerializer(); }); _lazyOld($, "_$tokenListResponseSerializer", "$get$_$tokenListResponseSerializer", function() { return new D._$TokenListResponseSerializer(); }); _lazyOld($, "_$tokenItemResponseSerializer", "$get$_$tokenItemResponseSerializer", function() { return new D._$TokenItemResponseSerializer(); }); _lazyOld($, "_$tokenEntitySerializer", "$get$_$tokenEntitySerializer", function() { return new D._$TokenEntitySerializer(); }); _lazyOld($, "_$userListResponseSerializer", "$get$_$userListResponseSerializer", function() { return new B._$UserListResponseSerializer(); }); _lazyOld($, "_$userItemResponseSerializer", "$get$_$userItemResponseSerializer", function() { return new B._$UserItemResponseSerializer(); }); _lazyOld($, "_$userTwoFactorResponseSerializer", "$get$_$userTwoFactorResponseSerializer", function() { return new B._$UserTwoFactorResponseSerializer(); }); _lazyOld($, "_$userTwoFactorDataSerializer", "$get$_$userTwoFactorDataSerializer", function() { return new B._$UserTwoFactorDataSerializer(); }); _lazyOld($, "_$userCompanyItemResponseSerializer", "$get$_$userCompanyItemResponseSerializer", function() { return new B._$UserCompanyItemResponseSerializer(); }); _lazyOld($, "_$userEntitySerializer", "$get$_$userEntitySerializer", function() { return new B._$UserEntitySerializer(); }); _lazyOld($, "_$vendorListResponseSerializer", "$get$_$vendorListResponseSerializer", function() { return new B._$VendorListResponseSerializer(); }); _lazyOld($, "_$vendorItemResponseSerializer", "$get$_$vendorItemResponseSerializer", function() { return new B._$VendorItemResponseSerializer(); }); _lazyOld($, "_$vendorEntitySerializer", "$get$_$vendorEntitySerializer", function() { return new B._$VendorEntitySerializer(); }); _lazyOld($, "_$vendorContactEntitySerializer", "$get$_$vendorContactEntitySerializer", function() { return new B._$VendorContactEntitySerializer(); }); _lazyOld($, "_$webhookListResponseSerializer", "$get$_$webhookListResponseSerializer", function() { return new E._$WebhookListResponseSerializer(); }); _lazyOld($, "_$webhookItemResponseSerializer", "$get$_$webhookItemResponseSerializer", function() { return new E._$WebhookItemResponseSerializer(); }); _lazyOld($, "_$webhookEntitySerializer", "$get$_$webhookEntitySerializer", function() { return new E._$WebhookEntitySerializer(); }); _lazyOld($, "navigatorKey", "$get$navigatorKey", function() { return N.GlobalKey_GlobalKey(null, H.findType("NavigatorState*")); }); _lazyOld($, "lastErrorReducer", "$get$lastErrorReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new G.lastErrorReducer_closure(), t1, H.findType("ClearLastError*")), t3 = B.TypedReducer$(new G.lastErrorReducer_closure0(), t1, H.findType("LoadClientsFailure*")), t4 = B.TypedReducer$(new G.lastErrorReducer_closure1(), t1, H.findType("LoadProductsFailure*")), t5 = B.TypedReducer$(new G.lastErrorReducer_closure2(), t1, H.findType("LoadInvoicesFailure*")), t6 = B.TypedReducer$(new G.lastErrorReducer_closure3(), t1, H.findType("LoadPaymentsFailure*")), t7 = B.TypedReducer$(new G.lastErrorReducer_closure4(), t1, H.findType("LoadQuotesFailure*")), t8 = B.TypedReducer$(new G.lastErrorReducer_closure5(), t1, H.findType("LoadProjectsFailure*")), t9 = B.TypedReducer$(new G.lastErrorReducer_closure6(), t1, H.findType("LoadTasksFailure*")), t10 = B.TypedReducer$(new G.lastErrorReducer_closure7(), t1, H.findType("LoadVendorsFailure*")), t11 = B.TypedReducer$(new G.lastErrorReducer_closure8(), t1, H.findType("LoadExpensesFailure*")), t12 = B.TypedReducer$(new G.lastErrorReducer_closure9(), t1, H.findType("LoadRecurringExpensesFailure*")), t13 = B.TypedReducer$(new G.lastErrorReducer_closure10(), t1, H.findType("LoadSubscriptionsFailure*")), t14 = B.TypedReducer$(new G.lastErrorReducer_closure11(), t1, H.findType("LoadTaskStatusesFailure*")), t15 = B.TypedReducer$(new G.lastErrorReducer_closure12(), t1, H.findType("LoadRecurringInvoicesFailure*")), t16 = B.TypedReducer$(new G.lastErrorReducer_closure13(), t1, H.findType("LoadWebhooksFailure*")), t17 = B.TypedReducer$(new G.lastErrorReducer_closure14(), t1, H.findType("LoadTokensFailure*")), t18 = B.TypedReducer$(new G.lastErrorReducer_closure15(), t1, H.findType("LoadPaymentTermsFailure*")), t19 = B.TypedReducer$(new G.lastErrorReducer_closure16(), t1, H.findType("LoadDesignsFailure*")), t20 = B.TypedReducer$(new G.lastErrorReducer_closure17(), t1, H.findType("LoadCreditsFailure*")), t21 = B.TypedReducer$(new G.lastErrorReducer_closure18(), t1, H.findType("RefreshDataFailure*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "_$appStateSerializer", "$get$_$appStateSerializer", function() { return new T._$AppStateSerializer(); }); _lazyOld($, "loadingReducer", "$get$loadingReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(F.loading_reducer___setLoading$closure(), t1, H.findType("StartLoading*")), t3 = B.TypedReducer$(F.loading_reducer___setLoaded$closure(), t1, H.findType("StopLoading*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "savingReducer", "$get$savingReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(F.loading_reducer___setSaving$closure(), t1, H.findType("StartSaving*")), t3 = B.TypedReducer$(F.loading_reducer___setSaved$closure(), t1, H.findType("StopSaving*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "authReducer", "$get$authReducer", function() { var t1 = type$.legacy_AuthState, t2 = B.TypedReducer$(S.auth_reducer__userLoadUrlReducer$closure(), t1, H.findType("UserLoadUrl*")), t3 = B.TypedReducer$(S.auth_reducer__userLoginRequestReducer$closure(), t1, type$.legacy_UserLoginRequest), t4 = B.TypedReducer$(S.auth_reducer__oauthLoginRequestReducer$closure(), t1, type$.legacy_OAuthLoginRequest), t5 = B.TypedReducer$(S.auth_reducer__oauthSignUpRequestReducer$closure(), t1, type$.legacy_OAuthSignUpRequest), t6 = B.TypedReducer$(S.auth_reducer__userSignUpRequestReducer$closure(), t1, type$.legacy_UserSignUpRequest), t7 = B.TypedReducer$(S.auth_reducer__userLoginSuccessReducer$closure(), t1, type$.legacy_UserLoginSuccess), t8 = B.TypedReducer$(S.auth_reducer__userVerifiedPasswordReducer$closure(), t1, H.findType("UserVerifiedPassword*")), t9 = B.TypedReducer$(S.auth_reducer__userUnverifiedPasswordReducer$closure(), t1, H.findType("UserUnverifiedPassword*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "_$authStateSerializer", "$get$_$authStateSerializer", function() { return new Z._$AuthStateSerializer(); }); _lazyOld($, "forceSelectedReducer", "$get$forceSelectedReducer21", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new S.forceSelectedReducer_closure167(), t1, type$.legacy_ViewClient), t3 = B.TypedReducer$(new S.forceSelectedReducer_closure168(), t1, type$.legacy_ViewClientList), t4 = B.TypedReducer$(new S.forceSelectedReducer_closure169(), t1, H.findType("FilterClientsByState*")), t5 = B.TypedReducer$(new S.forceSelectedReducer_closure170(), t1, H.findType("FilterClients*")), t6 = B.TypedReducer$(new S.forceSelectedReducer_closure171(), t1, H.findType("FilterClientsByCustom1*")), t7 = B.TypedReducer$(new S.forceSelectedReducer_closure172(), t1, H.findType("FilterClientsByCustom2*")), t8 = B.TypedReducer$(new S.forceSelectedReducer_closure173(), t1, H.findType("FilterClientsByCustom3*")), t9 = B.TypedReducer$(new S.forceSelectedReducer_closure174(), t1, H.findType("FilterClientsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer", "$get$tabIndexReducer10", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new S.tabIndexReducer_closure21(), t1, H.findType("UpdateClientTab*")), t3 = B.TypedReducer$(new S.tabIndexReducer_closure22(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer", "$get$saveCompleterReducer1", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new S.saveCompleterReducer_closure1(), t1, type$.legacy_EditClient); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer", "$get$cancelCompleterReducer1", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new S.cancelCompleterReducer_closure1(), t1, type$.legacy_EditClient); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "editingContactReducer", "$get$editingContactReducer", function() { var t1 = type$.legacy_ContactEntity, t2 = B.TypedReducer$(new S.editingContactReducer_closure(), t1, type$.legacy_EditClient), t3 = B.TypedReducer$(new S.editingContactReducer_closure0(), t1, H.findType("EditContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer", "$get$selectedIdReducer21", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new S.selectedIdReducer_closure335(), t1, H.findType("ArchiveClientsSuccess*")), t3 = B.TypedReducer$(new S.selectedIdReducer_closure336(), t1, H.findType("DeleteClientsSuccess*")), t4 = B.TypedReducer$(new S.selectedIdReducer_closure337(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new S.selectedIdReducer_closure338(), t1, type$.legacy_ViewClient), t6 = B.TypedReducer$(new S.selectedIdReducer_closure339(), t1, H.findType("AddClientSuccess*")), t7 = B.TypedReducer$(new S.selectedIdReducer_closure340(), t1, type$.legacy_ShowPdfClient), t8 = B.TypedReducer$(new S.selectedIdReducer_closure341(), t1, type$.legacy_SelectCompany), t9 = B.TypedReducer$(new S.selectedIdReducer_closure342(), t1, type$.legacy_ClearEntityFilter), t10 = B.TypedReducer$(new S.selectedIdReducer_closure343(), t1, H.findType("SortClients*")), t11 = B.TypedReducer$(new S.selectedIdReducer_closure344(), t1, H.findType("FilterClients*")), t12 = B.TypedReducer$(new S.selectedIdReducer_closure345(), t1, H.findType("FilterClientsByState*")), t13 = B.TypedReducer$(new S.selectedIdReducer_closure346(), t1, H.findType("FilterClientsByCustom1*")), t14 = B.TypedReducer$(new S.selectedIdReducer_closure347(), t1, H.findType("FilterClientsByCustom2*")), t15 = B.TypedReducer$(new S.selectedIdReducer_closure348(), t1, H.findType("FilterClientsByCustom3*")), t16 = B.TypedReducer$(new S.selectedIdReducer_closure349(), t1, H.findType("FilterClientsByCustom4*")), t17 = B.TypedReducer$(new S.selectedIdReducer_closure350(), t1, type$.legacy_ClearEntitySelection), t18 = B.TypedReducer$(new S.selectedIdReducer_closure351(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer", "$get$editingReducer21", function() { var t1 = type$.legacy_ClientEntity, t2 = B.TypedReducer$(new S.editingReducer_closure112(), t1, H.findType("SaveClientSuccess*")), t3 = B.TypedReducer$(new S.editingReducer_closure113(), t1, H.findType("AddClientSuccess*")), t4 = B.TypedReducer$(new S.editingReducer_closure114(), t1, H.findType("RestoreClientSuccess*")), t5 = B.TypedReducer$(new S.editingReducer_closure115(), t1, H.findType("ArchiveClientsSuccess*")), t6 = B.TypedReducer$(new S.editingReducer_closure116(), t1, H.findType("DeleteClientsSuccess*")), t7 = B.TypedReducer$(new S.editingReducer_closure117(), t1, type$.legacy_EditClient), t8 = B.TypedReducer$(new S.editingReducer_closure118(), t1, H.findType("UpdateClient*")), t9 = B.TypedReducer$(new S.editingReducer_closure119(), t1, H.findType("AddContact*")), t10 = B.TypedReducer$(new S.editingReducer_closure120(), t1, H.findType("DeleteContact*")), t11 = B.TypedReducer$(new S.editingReducer_closure121(), t1, H.findType("UpdateContact*")), t12 = B.TypedReducer$(new S.editingReducer_closure122(), t1, type$.legacy_ViewClient), t13 = B.TypedReducer$(new S.editingReducer_closure123(), t1, type$.legacy_ViewClientList), t14 = B.TypedReducer$(new S.editingReducer_closure124(), t1, type$.legacy_SelectCompany), t15 = B.TypedReducer$(new S.editingReducer_closure125(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "clientListReducer", "$get$clientListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(S.client_reducer___sortClients$closure(), t1, H.findType("SortClients*")), t3 = B.TypedReducer$(S.client_reducer___filterClientsByState$closure(), t1, H.findType("FilterClientsByState*")), t4 = B.TypedReducer$(S.client_reducer___filterClients$closure(), t1, H.findType("FilterClients*")), t5 = B.TypedReducer$(S.client_reducer___filterClientsByCustom1$closure(), t1, H.findType("FilterClientsByCustom1*")), t6 = B.TypedReducer$(S.client_reducer___filterClientsByCustom2$closure(), t1, H.findType("FilterClientsByCustom2*")), t7 = B.TypedReducer$(S.client_reducer___filterClientsByCustom3$closure(), t1, H.findType("FilterClientsByCustom3*")), t8 = B.TypedReducer$(S.client_reducer___filterClientsByCustom4$closure(), t1, H.findType("FilterClientsByCustom4*")), t9 = B.TypedReducer$(S.client_reducer___startListMultiselect$closure(), t1, H.findType("StartClientMultiselect*")), t10 = B.TypedReducer$(S.client_reducer___addToListMultiselect$closure(), t1, H.findType("AddToClientMultiselect*")), t11 = B.TypedReducer$(S.client_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromClientMultiselect*")), t12 = B.TypedReducer$(S.client_reducer___clearListMultiselect$closure(), t1, H.findType("ClearClientMultiselect*")), t13 = B.TypedReducer$(S.client_reducer___viewClientList$closure(), t1, type$.legacy_ViewClientList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "clientsReducer", "$get$clientsReducer", function() { var t1 = type$.legacy_ClientState, t2 = B.TypedReducer$(S.client_reducer___updateClient$closure(), t1, H.findType("SaveClientSuccess*")), t3 = B.TypedReducer$(S.client_reducer___addClient$closure(), t1, H.findType("AddClientSuccess*")), t4 = B.TypedReducer$(S.client_reducer___setLoadedClients$closure(), t1, H.findType("LoadClientsSuccess*")), t5 = B.TypedReducer$(S.client_reducer___setLoadedClient$closure(), t1, H.findType("LoadClientSuccess*")), t6 = B.TypedReducer$(S.client_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(S.client_reducer___archiveClientSuccess$closure(), t1, H.findType("ArchiveClientsSuccess*")), t8 = B.TypedReducer$(S.client_reducer___deleteClientSuccess$closure(), t1, H.findType("DeleteClientsSuccess*")), t9 = B.TypedReducer$(S.client_reducer___restoreClientSuccess$closure(), t1, H.findType("RestoreClientSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownClientList", "$get$memoizedDropdownClientList", function() { return O.memo4(new G.memoizedDropdownClientList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedClientStatsForUser", "$get$memoizedClientStatsForUser", function() { return O.memo2(new G.memoizedClientStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedFilteredClientList", "$get$memoizedFilteredClientList", function() { return O.memo7(new G.memoizedFilteredClientList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$clientStateSerializer", "$get$_$clientStateSerializer", function() { return new F._$ClientStateSerializer(); }); _lazyOld($, "_$clientUIStateSerializer", "$get$_$clientUIStateSerializer", function() { return new F._$ClientUIStateSerializer(); }); _lazyOld($, "userCompanyEntityReducer", "$get$userCompanyEntityReducer", function() { var t1 = type$.legacy_UserCompanyEntity, t2 = B.TypedReducer$(T.company_reducer__loadCompanySuccessReducer$closure(), t1, type$.legacy_LoadCompanySuccess), t3 = B.TypedReducer$(T.company_reducer__saveCompanySuccessReducer$closure(), t1, H.findType("SaveCompanySuccess*")), t4 = B.TypedReducer$(new T.userCompanyEntityReducer_closure(), t1, H.findType("UpdateReportSettings*")), t5 = B.TypedReducer$(new T.userCompanyEntityReducer_closure0(), t1, H.findType("SaveAuthUserSuccess*")), t6 = B.TypedReducer$(new T.userCompanyEntityReducer_closure1(), t1, H.findType("ConnecOAuthUserSuccess*")), t7 = B.TypedReducer$(new T.userCompanyEntityReducer_closure2(), t1, H.findType("ConnecGmailUserSuccess*")), t8 = B.TypedReducer$(new T.userCompanyEntityReducer_closure3(), t1, H.findType("DisableTwoFactorSuccess*")), t9 = B.TypedReducer$(new T.userCompanyEntityReducer_closure4(), t1, H.findType("SaveUserSettingsSuccess*")), t10 = B.TypedReducer$(new T.userCompanyEntityReducer_closure5(), t1, H.findType("UpdateCompanyLanguage*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "lastUpdatedReducer", "$get$lastUpdatedReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new T.lastUpdatedReducer_closure(), t1, type$.legacy_LoadCompanySuccess), t3 = B.TypedReducer$(new T.lastUpdatedReducer_closure0(), t1, H.findType("LoadExpensesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "memoizedDropdownExpenseCategoriesList", "$get$memoizedDropdownExpenseCategoriesList", function() { return O.memo2(new U.memoizedDropdownExpenseCategoriesList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedHasMultipleCurrencies", "$get$memoizedHasMultipleCurrencies", function() { return O.memo3(new U.memoizedHasMultipleCurrencies_closure(), type$.legacy_CompanyEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_bool); }); _lazyOld($, "memoizedGetCurrencyIds", "$get$memoizedGetCurrencyIds", function() { return O.memo3(new U.memoizedGetCurrencyIds_closure(), type$.legacy_CompanyEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredSelector", "$get$memoizedFilteredSelector", function() { return O.memo2(new U.memoizedFilteredSelector_closure(), type$.legacy_String, type$.legacy_UserCompanyState, H.findType("List*")); }); _lazyOld($, "_$userCompanyStateSerializer", "$get$_$userCompanyStateSerializer", function() { return new B._$UserCompanyStateSerializer(); }); _lazyOld($, "_$settingsUIStateSerializer", "$get$_$settingsUIStateSerializer", function() { return new B._$SettingsUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer0", "$get$forceSelectedReducer7", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new N.forceSelectedReducer_closure59(), t1, type$.legacy_ViewCompanyGateway), t3 = B.TypedReducer$(new N.forceSelectedReducer_closure60(), t1, type$.legacy_ViewCompanyGatewayList), t4 = B.TypedReducer$(new N.forceSelectedReducer_closure61(), t1, H.findType("FilterCompanyGatewaysByState*")), t5 = B.TypedReducer$(new N.forceSelectedReducer_closure62(), t1, H.findType("FilterCompanyGateways*")), t6 = B.TypedReducer$(new N.forceSelectedReducer_closure63(), t1, H.findType("FilterCompanyGatewaysByCustom1*")), t7 = B.TypedReducer$(new N.forceSelectedReducer_closure64(), t1, H.findType("FilterCompanyGatewaysByCustom2*")), t8 = B.TypedReducer$(new N.forceSelectedReducer_closure65(), t1, H.findType("FilterCompanyGatewaysByCustom3*")), t9 = B.TypedReducer$(new N.forceSelectedReducer_closure66(), t1, H.findType("FilterCompanyGatewaysByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer0", "$get$selectedIdReducer7", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new N.selectedIdReducer_closure119(), t1, H.findType("ArchiveCompanyGatewaySuccess*")), t3 = B.TypedReducer$(new N.selectedIdReducer_closure120(), t1, H.findType("DeleteCompanyGatewaySuccess*")), t4 = B.TypedReducer$(new N.selectedIdReducer_closure121(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new N.selectedIdReducer_closure122(), t1, type$.legacy_ViewCompanyGateway), t6 = B.TypedReducer$(new N.selectedIdReducer_closure123(), t1, H.findType("AddCompanyGatewaySuccess*")), t7 = B.TypedReducer$(new N.selectedIdReducer_closure124(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new N.selectedIdReducer_closure125(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new N.selectedIdReducer_closure126(), t1, H.findType("SortCompanyGateways*")), t10 = B.TypedReducer$(new N.selectedIdReducer_closure127(), t1, H.findType("FilterCompanyGateways*")), t11 = B.TypedReducer$(new N.selectedIdReducer_closure128(), t1, H.findType("FilterCompanyGatewaysByState*")), t12 = B.TypedReducer$(new N.selectedIdReducer_closure129(), t1, H.findType("FilterCompanyGatewaysByCustom1*")), t13 = B.TypedReducer$(new N.selectedIdReducer_closure130(), t1, H.findType("FilterCompanyGatewaysByCustom2*")), t14 = B.TypedReducer$(new N.selectedIdReducer_closure131(), t1, H.findType("FilterCompanyGatewaysByCustom3*")), t15 = B.TypedReducer$(new N.selectedIdReducer_closure132(), t1, H.findType("FilterCompanyGatewaysByCustom4*")), t16 = B.TypedReducer$(new N.selectedIdReducer_closure133(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer0", "$get$editingReducer7", function() { var t1 = type$.legacy_CompanyGatewayEntity, t2 = B.TypedReducer$(N.company_gateway_reducer___updateEditing$closure(), t1, H.findType("SaveCompanyGatewaySuccess*")), t3 = B.TypedReducer$(N.company_gateway_reducer___updateEditing$closure(), t1, H.findType("AddCompanyGatewaySuccess*")), t4 = B.TypedReducer$(new N.editingReducer_closure35(), t1, H.findType("RestoreCompanyGatewaySuccess*")), t5 = B.TypedReducer$(new N.editingReducer_closure36(), t1, H.findType("ArchiveCompanyGatewaySuccess*")), t6 = B.TypedReducer$(new N.editingReducer_closure37(), t1, H.findType("DeleteCompanyGatewaySuccess*")), t7 = B.TypedReducer$(N.company_gateway_reducer___updateEditing$closure(), t1, type$.legacy_EditCompanyGateway), t8 = B.TypedReducer$(new N.editingReducer_closure38(), t1, H.findType("UpdateCompanyGateway*")), t9 = B.TypedReducer$(N.company_gateway_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "companyGatewayListReducer", "$get$companyGatewayListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(N.company_gateway_reducer___sortCompanyGateways$closure(), t1, H.findType("SortCompanyGateways*")), t3 = B.TypedReducer$(N.company_gateway_reducer___filterCompanyGatewaysByState$closure(), t1, H.findType("FilterCompanyGatewaysByState*")), t4 = B.TypedReducer$(N.company_gateway_reducer___filterCompanyGateways$closure(), t1, H.findType("FilterCompanyGateways*")), t5 = B.TypedReducer$(N.company_gateway_reducer___filterCompanyGatewaysByCustom1$closure(), t1, H.findType("FilterCompanyGatewaysByCustom1*")), t6 = B.TypedReducer$(N.company_gateway_reducer___filterCompanyGatewaysByCustom2$closure(), t1, H.findType("FilterCompanyGatewaysByCustom2*")), t7 = B.TypedReducer$(N.company_gateway_reducer___startListMultiselect$closure(), t1, H.findType("StartCompanyGatewayMultiselect*")), t8 = B.TypedReducer$(N.company_gateway_reducer___addToListMultiselect$closure(), t1, H.findType("AddToCompanyGatewayMultiselect*")), t9 = B.TypedReducer$(N.company_gateway_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromCompanyGatewayMultiselect*")), t10 = B.TypedReducer$(N.company_gateway_reducer___clearListMultiselect$closure(), t1, H.findType("ClearCompanyGatewayMultiselect*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "companyGatewaysReducer", "$get$companyGatewaysReducer", function() { var t1 = type$.legacy_CompanyGatewayState, t2 = B.TypedReducer$(N.company_gateway_reducer___updateCompanyGateway$closure(), t1, H.findType("SaveCompanyGatewaySuccess*")), t3 = B.TypedReducer$(N.company_gateway_reducer___addCompanyGateway$closure(), t1, H.findType("AddCompanyGatewaySuccess*")), t4 = B.TypedReducer$(N.company_gateway_reducer___setLoadedCompanyGateways$closure(), t1, H.findType("LoadCompanyGatewaysSuccess*")), t5 = B.TypedReducer$(N.company_gateway_reducer___setLoadedCompanyGateway$closure(), t1, H.findType("LoadCompanyGatewaySuccess*")), t6 = B.TypedReducer$(N.company_gateway_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(N.company_gateway_reducer___archiveCompanyGatewaySuccess$closure(), t1, H.findType("ArchiveCompanyGatewaySuccess*")), t8 = B.TypedReducer$(N.company_gateway_reducer___deleteCompanyGatewaySuccess$closure(), t1, H.findType("DeleteCompanyGatewaySuccess*")), t9 = B.TypedReducer$(N.company_gateway_reducer___restoreCompanyGatewaySuccess$closure(), t1, H.findType("RestoreCompanyGatewaySuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredCompanyGatewayList", "$get$memoizedFilteredCompanyGatewayList", function() { return O.memo5(new T.memoizedFilteredCompanyGatewayList_closure(), H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_String, type$.legacy_bool, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedCalculateCompanyGatewayProcessed", "$get$memoizedCalculateCompanyGatewayProcessed", function() { return O.memo2(new T.memoizedCalculateCompanyGatewayProcessed_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_double); }); _lazyOld($, "memoizedClientStatsForCompanyGateway", "$get$memoizedClientStatsForCompanyGateway", function() { return O.memo2(new T.memoizedClientStatsForCompanyGateway_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedPaymentStatsForCompanyGateway", "$get$memoizedPaymentStatsForCompanyGateway", function() { return O.memo2(new T.memoizedPaymentStatsForCompanyGateway_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$companyGatewayStateSerializer", "$get$_$companyGatewayStateSerializer", function() { return new U._$CompanyGatewayStateSerializer(); }); _lazyOld($, "_$companyGatewayUIStateSerializer", "$get$_$companyGatewayUIStateSerializer", function() { return new U._$CompanyGatewayUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer1", "$get$forceSelectedReducer10", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Q.forceSelectedReducer_closure79(), t1, type$.legacy_ViewCredit), t3 = B.TypedReducer$(new Q.forceSelectedReducer_closure80(), t1, type$.legacy_ViewCreditList), t4 = B.TypedReducer$(new Q.forceSelectedReducer_closure81(), t1, H.findType("FilterCreditsByState*")), t5 = B.TypedReducer$(new Q.forceSelectedReducer_closure82(), t1, H.findType("FilterCredits*")), t6 = B.TypedReducer$(new Q.forceSelectedReducer_closure83(), t1, H.findType("FilterCreditsByCustom1*")), t7 = B.TypedReducer$(new Q.forceSelectedReducer_closure84(), t1, H.findType("FilterCreditsByCustom2*")), t8 = B.TypedReducer$(new Q.forceSelectedReducer_closure85(), t1, H.findType("FilterCreditsByCustom3*")), t9 = B.TypedReducer$(new Q.forceSelectedReducer_closure86(), t1, H.findType("FilterCreditsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer0", "$get$tabIndexReducer5", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new Q.tabIndexReducer_closure11(), t1, H.findType("UpdateCreditTab*")), t3 = B.TypedReducer$(new Q.tabIndexReducer_closure12(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer", "$get$historyActivityIdReducer0", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new Q.historyActivityIdReducer_closure0(), t1, type$.legacy_ShowPdfCredit); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemReducer", "$get$editingItemReducer0", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new Q.editingItemReducer_closure1(), t1, type$.legacy_EditCredit), t3 = B.TypedReducer$(new Q.editingItemReducer_closure2(), t1, H.findType("EditCreditItem*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer1", "$get$selectedIdReducer10", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new Q.selectedIdReducer_closure160(), t1, H.findType("ArchiveCreditsSuccess*")), t3 = B.TypedReducer$(new Q.selectedIdReducer_closure161(), t1, H.findType("DeleteCreditsSuccess*")), t4 = B.TypedReducer$(new Q.selectedIdReducer_closure162(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new Q.selectedIdReducer_closure163(), t1, type$.legacy_ViewCredit), t6 = B.TypedReducer$(new Q.selectedIdReducer_closure164(), t1, H.findType("AddCreditSuccess*")), t7 = B.TypedReducer$(new Q.selectedIdReducer_closure165(), t1, type$.legacy_ShowEmailCredit), t8 = B.TypedReducer$(new Q.selectedIdReducer_closure166(), t1, type$.legacy_ShowPdfCredit), t9 = B.TypedReducer$(new Q.selectedIdReducer_closure167(), t1, type$.legacy_SelectCompany), t10 = B.TypedReducer$(new Q.selectedIdReducer_closure168(), t1, type$.legacy_ClearEntityFilter), t11 = B.TypedReducer$(new Q.selectedIdReducer_closure169(), t1, H.findType("SortCredits*")), t12 = B.TypedReducer$(new Q.selectedIdReducer_closure170(), t1, H.findType("FilterCredits*")), t13 = B.TypedReducer$(new Q.selectedIdReducer_closure171(), t1, H.findType("FilterCreditsByState*")), t14 = B.TypedReducer$(new Q.selectedIdReducer_closure172(), t1, H.findType("FilterCreditsByStatus*")), t15 = B.TypedReducer$(new Q.selectedIdReducer_closure173(), t1, H.findType("FilterCreditsByCustom1*")), t16 = B.TypedReducer$(new Q.selectedIdReducer_closure174(), t1, H.findType("FilterCreditsByCustom2*")), t17 = B.TypedReducer$(new Q.selectedIdReducer_closure175(), t1, H.findType("FilterCreditsByCustom3*")), t18 = B.TypedReducer$(new Q.selectedIdReducer_closure176(), t1, H.findType("FilterCreditsByCustom4*")), t19 = B.TypedReducer$(new Q.selectedIdReducer_closure177(), t1, type$.legacy_ClearEntitySelection), t20 = B.TypedReducer$(new Q.selectedIdReducer_closure178(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer1", "$get$editingReducer10", function() { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = B.TypedReducer$(Q.credit_reducer___updateEditing$closure(), t1, H.findType("SaveCreditSuccess*")), t3 = B.TypedReducer$(Q.credit_reducer___updateEditing$closure(), t1, H.findType("AddCreditSuccess*")), t4 = B.TypedReducer$(Q.credit_reducer___updateEditing$closure(), t1, type$.legacy_EditCredit), t5 = B.TypedReducer$(new Q.editingReducer_closure47(), t1, H.findType("UpdateCredit*")), t6 = H.findType("AddCreditItem*"), t7 = B.TypedReducer$(new Q.editingReducer_closure48(), t1, t6), t8 = B.TypedReducer$(new Q.editingReducer_closure49(), t1, H.findType("MoveCreditItem*")), t9 = H.findType("DeleteCreditItem*"), t10 = B.TypedReducer$(new Q.editingReducer_closure50(), t1, t9), t11 = H.findType("UpdateCreditItem*"), t12 = B.TypedReducer$(new Q.editingReducer_closure51(), t1, t11), t13 = B.TypedReducer$(new Q.editingReducer_closure52(), t1, H.findType("UpdateCreditClient*")), t14 = B.TypedReducer$(new Q.editingReducer_closure53(), t1, H.findType("RestoreCreditsSuccess*")), t15 = B.TypedReducer$(new Q.editingReducer_closure54(), t1, H.findType("ArchiveCreditsSuccess*")), t16 = B.TypedReducer$(new Q.editingReducer_closure55(), t1, H.findType("DeleteCreditsSuccess*")); t6 = B.TypedReducer$(Q.credit_reducer___addCreditItem$closure(), t1, t6); t17 = B.TypedReducer$(Q.credit_reducer___addCreditItems$closure(), t1, H.findType("AddCreditItems*")); t9 = B.TypedReducer$(Q.credit_reducer___removeCreditItem$closure(), t1, t9); t11 = B.TypedReducer$(Q.credit_reducer___updateCreditItem$closure(), t1, t11); t18 = B.TypedReducer$(Q.credit_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = B.TypedReducer$(new Q.editingReducer_closure56(), t1, H.findType("AddCreditContact*")); t20 = B.TypedReducer$(new Q.editingReducer_closure57(), t1, H.findType("RemoveCreditContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "creditListReducer", "$get$creditListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(Q.credit_reducer___sortCredits$closure(), t1, H.findType("SortCredits*")), t3 = B.TypedReducer$(Q.credit_reducer___filterCreditsByState$closure(), t1, H.findType("FilterCreditsByState*")), t4 = B.TypedReducer$(Q.credit_reducer___filterCreditsByStatus$closure(), t1, H.findType("FilterCreditsByStatus*")), t5 = B.TypedReducer$(Q.credit_reducer___filterCredits$closure(), t1, H.findType("FilterCredits*")), t6 = B.TypedReducer$(Q.credit_reducer___filterCreditsByCustom1$closure(), t1, H.findType("FilterCreditsByCustom1*")), t7 = B.TypedReducer$(Q.credit_reducer___filterCreditsByCustom2$closure(), t1, H.findType("FilterCreditsByCustom2*")), t8 = B.TypedReducer$(Q.credit_reducer___filterCreditsByCustom3$closure(), t1, H.findType("FilterCreditsByCustom3*")), t9 = B.TypedReducer$(Q.credit_reducer___filterCreditsByCustom4$closure(), t1, H.findType("FilterCreditsByCustom4*")), t10 = B.TypedReducer$(Q.credit_reducer___startListMultiselect$closure(), t1, H.findType("StartCreditMultiselect*")), t11 = B.TypedReducer$(Q.credit_reducer___addToListMultiselect$closure(), t1, H.findType("AddToCreditMultiselect*")), t12 = B.TypedReducer$(Q.credit_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromCreditMultiselect*")), t13 = B.TypedReducer$(Q.credit_reducer___clearListMultiselect$closure(), t1, H.findType("ClearCreditMultiselect*")), t14 = B.TypedReducer$(Q.credit_reducer___viewCreditList$closure(), t1, type$.legacy_ViewCreditList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "creditsReducer", "$get$creditsReducer", function() { var t1 = type$.legacy_CreditState, t2 = B.TypedReducer$(Q.credit_reducer___updateCredit$closure(), t1, H.findType("SaveCreditSuccess*")), t3 = B.TypedReducer$(Q.credit_reducer___addCredit$closure(), t1, H.findType("AddCreditSuccess*")), t4 = B.TypedReducer$(Q.credit_reducer___setLoadedCredits$closure(), t1, H.findType("LoadCreditsSuccess*")), t5 = B.TypedReducer$(Q.credit_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(Q.credit_reducer___updateCredit$closure(), t1, H.findType("LoadCreditSuccess*")), t7 = B.TypedReducer$(Q.credit_reducer___markSentCreditSuccess$closure(), t1, H.findType("MarkSentCreditSuccess*")), t8 = B.TypedReducer$(Q.credit_reducer___archiveCreditSuccess$closure(), t1, H.findType("ArchiveCreditsSuccess*")), t9 = B.TypedReducer$(Q.credit_reducer___deleteCreditSuccess$closure(), t1, H.findType("DeleteCreditsSuccess*")), t10 = B.TypedReducer$(Q.credit_reducer___restoreCreditSuccess$closure(), t1, H.findType("RestoreCreditsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownCreditList", "$get$memoizedDropdownCreditList", function() { var t1 = type$.legacy_List_legacy_String; return O.memo6(new B.memoizedDropdownCreditList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, t1, t1); }); _lazyOld($, "memoizedFilteredCreditList", "$get$memoizedFilteredCreditList", function() { return O.memo6(new B.memoizedFilteredCreditList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedCreditStatsForDesign", "$get$memoizedCreditStatsForDesign", function() { return O.memo2(new B.memoizedCreditStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedCreditStatsForClient", "$get$memoizedCreditStatsForClient", function() { return O.memo2(new B.memoizedCreditStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedCreditStatsForUser", "$get$memoizedCreditStatsForUser", function() { return O.memo2(new B.memoizedCreditStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$creditStateSerializer", "$get$_$creditStateSerializer", function() { return new G._$CreditStateSerializer(); }); _lazyOld($, "_$creditUIStateSerializer", "$get$_$creditUIStateSerializer", function() { return new G._$CreditUIStateSerializer(); }); _lazyOld($, "selectedEntitiesReducer", "$get$selectedEntitiesReducer", function() { var t1 = H.findType("BuiltMap*>*"), t2 = B.TypedReducer$(new D.selectedEntitiesReducer_closure(), t1, H.findType("UpdateDashboardSelection*")), t3 = B.TypedReducer$(new D.selectedEntitiesReducer_closure0(), t1, type$.legacy_SelectCompany); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], H.findType("JSArray*>*(BuiltMap*>*,@)*>")), t1); }); _lazyOld($, "selectedEntityTypeReducer", "$get$selectedEntityTypeReducer", function() { var t1 = type$.legacy_EntityType, t2 = B.TypedReducer$(new D.selectedEntityTypeReducer_closure(), t1, H.findType("UpdateDashboardEntityType*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "showSidebarReducer", "$get$showSidebarReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new D.showSidebarReducer_closure(), t1, H.findType("UpdateDashboardSidebar*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "memoizedChartInvoices", "$get$memoizedChartInvoices", function() { return O.memo5(new O.memoizedChartInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedPreviousChartInvoices", "$get$memoizedPreviousChartInvoices", function() { return O.memo5(new O.memoizedPreviousChartInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedChartQuotes", "$get$memoizedChartQuotes", function() { return O.memo5(new O.memoizedChartQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedPreviousChartQuotes", "$get$memoizedPreviousChartQuotes", function() { return O.memo5(new O.memoizedPreviousChartQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedChartPayments", "$get$memoizedChartPayments", function() { return O.memo6(new O.memoizedChartPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedPreviousChartPayments", "$get$memoizedPreviousChartPayments", function() { return O.memo6(new O.memoizedPreviousChartPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedChartTasks", "$get$memoizedChartTasks", function() { return O.memo8(new O.memoizedChartTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedPreviousChartTasks", "$get$memoizedPreviousChartTasks", function() { return O.memo8(new O.memoizedPreviousChartTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedChartExpenses", "$get$memoizedChartExpenses", function() { return O.memo5(new O.memoizedChartExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedPreviousChartExpenses", "$get$memoizedPreviousChartExpenses", function() { return O.memo5(new O.memoizedPreviousChartExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, type$.legacy_DashboardUISettings, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_List_legacy_ChartDataGroup); }); _lazyOld($, "memoizedUpcomingInvoices", "$get$memoizedUpcomingInvoices", function() { return O.memo2(new A.memoizedUpcomingInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity); }); _lazyOld($, "memoizedPastDueInvoices", "$get$memoizedPastDueInvoices", function() { return O.memo2(new A.memoizedPastDueInvoices_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity); }); _lazyOld($, "memoizedRecentPayments", "$get$memoizedRecentPayments", function() { return O.memo2(new A.memoizedRecentPayments_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_PaymentEntity); }); _lazyOld($, "memoizedUpcomingQuotes", "$get$memoizedUpcomingQuotes", function() { return O.memo2(new A.memoizedUpcomingQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity); }); _lazyOld($, "memoizedExpiredQuotes", "$get$memoizedExpiredQuotes", function() { return O.memo2(new A.memoizedExpiredQuotes_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_InvoiceEntity); }); _lazyOld($, "memoizedRunningTasks", "$get$memoizedRunningTasks", function() { return O.memo2(new A.memoizedRunningTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_TaskEntity); }); _lazyOld($, "memoizedRecentTasks", "$get$memoizedRecentTasks", function() { return O.memo2(new A.memoizedRecentTasks_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_TaskEntity); }); _lazyOld($, "memoizedRecentExpenses", "$get$memoizedRecentExpenses", function() { return O.memo2(new A.memoizedRecentExpenses_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_List_legacy_ExpenseEntity); }); _lazyOld($, "_$dashboardUIStateSerializer", "$get$_$dashboardUIStateSerializer", function() { return new Y._$DashboardUIStateSerializer(); }); _lazyOld($, "_$dashboardUISettingsSerializer", "$get$_$dashboardUISettingsSerializer", function() { return new Y._$DashboardUISettingsSerializer(); }); _lazyOld($, "forceSelectedReducer2", "$get$forceSelectedReducer11", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new U.forceSelectedReducer_closure87(), t1, type$.legacy_ViewDesign), t3 = B.TypedReducer$(new U.forceSelectedReducer_closure88(), t1, type$.legacy_ViewDesignList), t4 = B.TypedReducer$(new U.forceSelectedReducer_closure89(), t1, H.findType("FilterDesignsByState*")), t5 = B.TypedReducer$(new U.forceSelectedReducer_closure90(), t1, H.findType("FilterDesigns*")), t6 = B.TypedReducer$(new U.forceSelectedReducer_closure91(), t1, H.findType("FilterDesignsByCustom1*")), t7 = B.TypedReducer$(new U.forceSelectedReducer_closure92(), t1, H.findType("FilterDesignsByCustom2*")), t8 = B.TypedReducer$(new U.forceSelectedReducer_closure93(), t1, H.findType("FilterDesignsByCustom3*")), t9 = B.TypedReducer$(new U.forceSelectedReducer_closure94(), t1, H.findType("FilterDesignsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer2", "$get$selectedIdReducer11", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new U.selectedIdReducer_closure179(), t1, H.findType("ArchiveDesignsSuccess*")), t3 = B.TypedReducer$(new U.selectedIdReducer_closure180(), t1, H.findType("DeleteDesignsSuccess*")), t4 = B.TypedReducer$(new U.selectedIdReducer_closure181(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new U.selectedIdReducer_closure182(), t1, type$.legacy_ViewDesign), t6 = B.TypedReducer$(new U.selectedIdReducer_closure183(), t1, H.findType("AddDesignSuccess*")), t7 = B.TypedReducer$(new U.selectedIdReducer_closure184(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new U.selectedIdReducer_closure185(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new U.selectedIdReducer_closure186(), t1, H.findType("SortDesigns*")), t10 = B.TypedReducer$(new U.selectedIdReducer_closure187(), t1, H.findType("FilterDesigns*")), t11 = B.TypedReducer$(new U.selectedIdReducer_closure188(), t1, H.findType("FilterDesignsByState*")), t12 = B.TypedReducer$(new U.selectedIdReducer_closure189(), t1, H.findType("FilterDesignsByCustom1*")), t13 = B.TypedReducer$(new U.selectedIdReducer_closure190(), t1, H.findType("FilterDesignsByCustom2*")), t14 = B.TypedReducer$(new U.selectedIdReducer_closure191(), t1, H.findType("FilterDesignsByCustom3*")), t15 = B.TypedReducer$(new U.selectedIdReducer_closure192(), t1, H.findType("FilterDesignsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer2", "$get$editingReducer11", function() { var t1 = type$.legacy_DesignEntity, t2 = B.TypedReducer$(U.design_reducer___updateEditing$closure(), t1, H.findType("SaveDesignSuccess*")), t3 = B.TypedReducer$(U.design_reducer___updateEditing$closure(), t1, H.findType("AddDesignSuccess*")), t4 = B.TypedReducer$(new U.editingReducer_closure58(), t1, H.findType("RestoreDesignsSuccess*")), t5 = B.TypedReducer$(new U.editingReducer_closure59(), t1, H.findType("ArchiveDesignsSuccess*")), t6 = B.TypedReducer$(new U.editingReducer_closure60(), t1, H.findType("DeleteDesignsSuccess*")), t7 = B.TypedReducer$(U.design_reducer___updateEditing$closure(), t1, type$.legacy_EditDesign), t8 = B.TypedReducer$(new U.editingReducer_closure61(), t1, H.findType("UpdateDesign*")), t9 = B.TypedReducer$(U.design_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "designListReducer", "$get$designListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(U.design_reducer___sortDesigns$closure(), t1, H.findType("SortDesigns*")), t3 = B.TypedReducer$(U.design_reducer___filterDesignsByState$closure(), t1, H.findType("FilterDesignsByState*")), t4 = B.TypedReducer$(U.design_reducer___filterDesigns$closure(), t1, H.findType("FilterDesigns*")), t5 = B.TypedReducer$(U.design_reducer___filterDesignsByCustom1$closure(), t1, H.findType("FilterDesignsByCustom1*")), t6 = B.TypedReducer$(U.design_reducer___filterDesignsByCustom2$closure(), t1, H.findType("FilterDesignsByCustom2*")), t7 = B.TypedReducer$(U.design_reducer___startListMultiselect$closure(), t1, H.findType("StartDesignMultiselect*")), t8 = B.TypedReducer$(U.design_reducer___addToListMultiselect$closure(), t1, H.findType("AddToDesignMultiselect*")), t9 = B.TypedReducer$(U.design_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromDesignMultiselect*")), t10 = B.TypedReducer$(U.design_reducer___clearListMultiselect$closure(), t1, H.findType("ClearDesignMultiselect*")), t11 = B.TypedReducer$(U.design_reducer___viewDesignList$closure(), t1, type$.legacy_ViewDesignList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "designsReducer", "$get$designsReducer", function() { var t1 = type$.legacy_DesignState, t2 = B.TypedReducer$(U.design_reducer___updateDesign$closure(), t1, H.findType("SaveDesignSuccess*")), t3 = B.TypedReducer$(U.design_reducer___addDesign$closure(), t1, H.findType("AddDesignSuccess*")), t4 = B.TypedReducer$(U.design_reducer___setLoadedDesigns$closure(), t1, H.findType("LoadDesignsSuccess*")), t5 = B.TypedReducer$(U.design_reducer___setLoadedDesign$closure(), t1, H.findType("LoadDesignSuccess*")), t6 = B.TypedReducer$(U.design_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(U.design_reducer___archiveDesignSuccess$closure(), t1, H.findType("ArchiveDesignsSuccess*")), t8 = B.TypedReducer$(U.design_reducer___deleteDesignSuccess$closure(), t1, H.findType("DeleteDesignsSuccess*")), t9 = B.TypedReducer$(U.design_reducer___restoreDesignSuccess$closure(), t1, H.findType("RestoreDesignsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredDesignList", "$get$memoizedFilteredDesignList", function() { return O.memo3(new A.memoizedFilteredDesignList_closure(), H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$designStateSerializer", "$get$_$designStateSerializer", function() { return new Y._$DesignStateSerializer(); }); _lazyOld($, "_$designUIStateSerializer", "$get$_$designUIStateSerializer", function() { return new Y._$DesignUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer3", "$get$forceSelectedReducer5", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new M.forceSelectedReducer_closure47(), t1, type$.legacy_ViewDocument), t3 = B.TypedReducer$(new M.forceSelectedReducer_closure48(), t1, type$.legacy_ViewDocumentList), t4 = B.TypedReducer$(new M.forceSelectedReducer_closure49(), t1, H.findType("FilterDocumentsByState*")), t5 = B.TypedReducer$(new M.forceSelectedReducer_closure50(), t1, H.findType("FilterDocuments*")), t6 = B.TypedReducer$(new M.forceSelectedReducer_closure51(), t1, H.findType("FilterDocumentsByCustom1*")), t7 = B.TypedReducer$(new M.forceSelectedReducer_closure52(), t1, H.findType("FilterDocumentsByCustom2*")), t8 = B.TypedReducer$(new M.forceSelectedReducer_closure53(), t1, H.findType("FilterDocumentsByCustom3*")), t9 = B.TypedReducer$(new M.forceSelectedReducer_closure54(), t1, H.findType("FilterDocumentsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer3", "$get$selectedIdReducer5", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new M.selectedIdReducer_closure94(), t1, H.findType("ArchiveDocumentSuccess*")), t3 = B.TypedReducer$(new M.selectedIdReducer_closure95(), t1, H.findType("DeleteDocumentSuccess*")), t4 = B.TypedReducer$(new M.selectedIdReducer_closure96(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new M.selectedIdReducer_closure97(), t1, type$.legacy_ViewDocument), t6 = B.TypedReducer$(new M.selectedIdReducer_closure98(), t1, type$.legacy_SelectCompany), t7 = B.TypedReducer$(new M.selectedIdReducer_closure99(), t1, type$.legacy_ClearEntityFilter), t8 = B.TypedReducer$(new M.selectedIdReducer_closure100(), t1, H.findType("SortDocuments*")), t9 = B.TypedReducer$(new M.selectedIdReducer_closure101(), t1, H.findType("FilterDocuments*")), t10 = B.TypedReducer$(new M.selectedIdReducer_closure102(), t1, H.findType("FilterDocumentsByState*")), t11 = B.TypedReducer$(new M.selectedIdReducer_closure103(), t1, H.findType("FilterDocumentsByCustom1*")), t12 = B.TypedReducer$(new M.selectedIdReducer_closure104(), t1, H.findType("FilterDocumentsByCustom2*")), t13 = B.TypedReducer$(new M.selectedIdReducer_closure105(), t1, H.findType("FilterDocumentsByCustom3*")), t14 = B.TypedReducer$(new M.selectedIdReducer_closure106(), t1, H.findType("FilterDocumentsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer3", "$get$editingReducer5", function() { var t1 = type$.legacy_DocumentEntity, t2 = B.TypedReducer$(M.document_reducer___updateEditing$closure(), t1, H.findType("SaveDocumentSuccess*")), t3 = B.TypedReducer$(M.document_reducer___updateEditing$closure(), t1, H.findType("RestoreDocumentSuccess*")), t4 = B.TypedReducer$(M.document_reducer___updateEditing$closure(), t1, H.findType("ArchiveDocumentSuccess*")), t5 = B.TypedReducer$(M.document_reducer___updateEditing$closure(), t1, type$.legacy_EditDocument), t6 = B.TypedReducer$(new M.editingReducer_closure30(), t1, H.findType("UpdateDocument*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "documentListReducer", "$get$documentListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(M.document_reducer___sortDocuments$closure(), t1, H.findType("SortDocuments*")), t3 = B.TypedReducer$(M.document_reducer___filterDocumentsByState$closure(), t1, H.findType("FilterDocumentsByState*")), t4 = B.TypedReducer$(M.document_reducer___filterDocuments$closure(), t1, H.findType("FilterDocuments*")), t5 = B.TypedReducer$(M.document_reducer___filterDocumentsByCustom1$closure(), t1, H.findType("FilterDocumentsByCustom1*")), t6 = B.TypedReducer$(M.document_reducer___filterDocumentsByCustom2$closure(), t1, H.findType("FilterDocumentsByCustom2*")), t7 = B.TypedReducer$(M.document_reducer___startListMultiselect$closure(), t1, H.findType("StartDocumentMultiselect*")), t8 = B.TypedReducer$(M.document_reducer___addToListMultiselect$closure(), t1, H.findType("AddToDocumentMultiselect*")), t9 = B.TypedReducer$(M.document_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromDocumentMultiselect*")), t10 = B.TypedReducer$(M.document_reducer___clearListMultiselect$closure(), t1, H.findType("ClearDocumentMultiselect*")), t11 = B.TypedReducer$(M.document_reducer___viewDocumentList$closure(), t1, type$.legacy_ViewDocumentList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "documentsReducer", "$get$documentsReducer", function() { var t1 = type$.legacy_DocumentState, t2 = B.TypedReducer$(M.document_reducer___updateDocument$closure(), t1, H.findType("SaveDocumentSuccess*")), t3 = B.TypedReducer$(M.document_reducer___setLoadedDocuments$closure(), t1, H.findType("LoadDocumentsSuccess*")), t4 = B.TypedReducer$(M.document_reducer___setLoadedDocument$closure(), t1, H.findType("LoadDocumentSuccess*")), t5 = B.TypedReducer$(M.document_reducer___archiveDocumentSuccess$closure(), t1, H.findType("ArchiveDocumentSuccess*")), t6 = B.TypedReducer$(M.document_reducer___deleteDocumentSuccess$closure(), t1, H.findType("DeleteDocumentSuccess*")), t7 = B.TypedReducer$(M.document_reducer___restoreDocumentSuccess$closure(), t1, H.findType("RestoreDocumentSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredDocumentList", "$get$memoizedFilteredDocumentList", function() { return O.memo3(new A.memoizedFilteredDocumentList_closure(), H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$documentStateSerializer", "$get$_$documentStateSerializer", function() { return new Q._$DocumentStateSerializer(); }); _lazyOld($, "_$documentUIStateSerializer", "$get$_$documentUIStateSerializer", function() { return new Q._$DocumentUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer4", "$get$forceSelectedReducer4", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new K.forceSelectedReducer_closure39(), t1, type$.legacy_ViewExpense), t3 = B.TypedReducer$(new K.forceSelectedReducer_closure40(), t1, type$.legacy_ViewExpenseList), t4 = B.TypedReducer$(new K.forceSelectedReducer_closure41(), t1, H.findType("FilterExpensesByState*")), t5 = B.TypedReducer$(new K.forceSelectedReducer_closure42(), t1, H.findType("FilterExpenses*")), t6 = B.TypedReducer$(new K.forceSelectedReducer_closure43(), t1, H.findType("FilterExpensesByCustom1*")), t7 = B.TypedReducer$(new K.forceSelectedReducer_closure44(), t1, H.findType("FilterExpensesByCustom2*")), t8 = B.TypedReducer$(new K.forceSelectedReducer_closure45(), t1, H.findType("FilterExpensesByCustom3*")), t9 = B.TypedReducer$(new K.forceSelectedReducer_closure46(), t1, H.findType("FilterExpensesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer1", "$get$tabIndexReducer4", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new K.tabIndexReducer_closure9(), t1, H.findType("UpdateExpenseTab*")), t3 = B.TypedReducer$(new K.tabIndexReducer_closure10(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer4", "$get$selectedIdReducer4", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new K.selectedIdReducer_closure79(), t1, H.findType("ArchiveExpenseSuccess*")), t3 = B.TypedReducer$(new K.selectedIdReducer_closure80(), t1, H.findType("DeleteExpenseSuccess*")), t4 = B.TypedReducer$(new K.selectedIdReducer_closure81(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new K.selectedIdReducer_closure82(), t1, type$.legacy_ViewExpense), t6 = B.TypedReducer$(new K.selectedIdReducer_closure83(), t1, H.findType("AddExpenseSuccess*")), t7 = B.TypedReducer$(new K.selectedIdReducer_closure84(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new K.selectedIdReducer_closure85(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new K.selectedIdReducer_closure86(), t1, H.findType("SortExpenses*")), t10 = B.TypedReducer$(new K.selectedIdReducer_closure87(), t1, H.findType("FilterExpenses*")), t11 = B.TypedReducer$(new K.selectedIdReducer_closure88(), t1, H.findType("FilterExpensesByState*")), t12 = B.TypedReducer$(new K.selectedIdReducer_closure89(), t1, H.findType("FilterExpensesByStatus*")), t13 = B.TypedReducer$(new K.selectedIdReducer_closure90(), t1, H.findType("FilterExpensesByCustom1*")), t14 = B.TypedReducer$(new K.selectedIdReducer_closure91(), t1, H.findType("FilterExpensesByCustom2*")), t15 = B.TypedReducer$(new K.selectedIdReducer_closure92(), t1, H.findType("FilterExpensesByCustom3*")), t16 = B.TypedReducer$(new K.selectedIdReducer_closure93(), t1, H.findType("FilterExpensesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer4", "$get$editingReducer4", function() { var t1 = type$.legacy_ExpenseEntity, t2 = B.TypedReducer$(K.expense_reducer___updateEditing$closure(), t1, H.findType("SaveExpenseSuccess*")), t3 = B.TypedReducer$(K.expense_reducer___updateEditing$closure(), t1, H.findType("AddExpenseSuccess*")), t4 = B.TypedReducer$(new K.editingReducer_closure26(), t1, H.findType("RestoreExpenseSuccess*")), t5 = B.TypedReducer$(new K.editingReducer_closure27(), t1, H.findType("ArchiveExpenseSuccess*")), t6 = B.TypedReducer$(new K.editingReducer_closure28(), t1, H.findType("DeleteExpenseSuccess*")), t7 = B.TypedReducer$(K.expense_reducer___updateEditing$closure(), t1, type$.legacy_EditExpense), t8 = B.TypedReducer$(new K.editingReducer_closure29(), t1, H.findType("UpdateExpense*")), t9 = B.TypedReducer$(K.expense_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "expenseListReducer", "$get$expenseListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(K.expense_reducer___sortExpenses$closure(), t1, H.findType("SortExpenses*")), t3 = B.TypedReducer$(K.expense_reducer___filterExpensesByState$closure(), t1, H.findType("FilterExpensesByState*")), t4 = B.TypedReducer$(K.expense_reducer___filterExpensesByStatus$closure(), t1, H.findType("FilterExpensesByStatus*")), t5 = B.TypedReducer$(K.expense_reducer___filterExpenses$closure(), t1, H.findType("FilterExpenses*")), t6 = B.TypedReducer$(K.expense_reducer___filterExpensesByCustom1$closure(), t1, H.findType("FilterExpensesByCustom1*")), t7 = B.TypedReducer$(K.expense_reducer___filterExpensesByCustom2$closure(), t1, H.findType("FilterExpensesByCustom2*")), t8 = B.TypedReducer$(K.expense_reducer___filterExpensesByCustom3$closure(), t1, H.findType("FilterExpensesByCustom3*")), t9 = B.TypedReducer$(K.expense_reducer___filterExpensesByCustom4$closure(), t1, H.findType("FilterExpensesByCustom4*")), t10 = B.TypedReducer$(K.expense_reducer___startListMultiselect$closure(), t1, H.findType("StartExpenseMultiselect*")), t11 = B.TypedReducer$(K.expense_reducer___addToListMultiselect$closure(), t1, H.findType("AddToExpenseMultiselect*")), t12 = B.TypedReducer$(K.expense_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromExpenseMultiselect*")), t13 = B.TypedReducer$(K.expense_reducer___clearListMultiselect$closure(), t1, H.findType("ClearExpenseMultiselect*")), t14 = B.TypedReducer$(K.expense_reducer___viewExpenseList$closure(), t1, type$.legacy_ViewExpenseList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "expensesReducer", "$get$expensesReducer", function() { var t1 = type$.legacy_ExpenseState, t2 = B.TypedReducer$(K.expense_reducer___updateExpense$closure(), t1, H.findType("SaveExpenseSuccess*")), t3 = B.TypedReducer$(K.expense_reducer___addExpense$closure(), t1, H.findType("AddExpenseSuccess*")), t4 = B.TypedReducer$(K.expense_reducer___setLoadedExpenses$closure(), t1, H.findType("LoadExpensesSuccess*")), t5 = B.TypedReducer$(K.expense_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(K.expense_reducer___setLoadedExpense$closure(), t1, H.findType("LoadExpenseSuccess*")), t7 = B.TypedReducer$(K.expense_reducer___archiveExpenseSuccess$closure(), t1, H.findType("ArchiveExpenseSuccess*")), t8 = B.TypedReducer$(K.expense_reducer___deleteExpenseSuccess$closure(), t1, H.findType("DeleteExpenseSuccess*")), t9 = B.TypedReducer$(K.expense_reducer___restoreExpenseSuccess$closure(), t1, H.findType("RestoreExpenseSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredExpenseList", "$get$memoizedFilteredExpenseList", function() { return O.memo9(new L.memoizedFilteredExpenseList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedExpenseStatsForVendor", "$get$memoizedExpenseStatsForVendor", function() { return O.memo2(new L.memoizedExpenseStatsForVendor_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedExpenseStatsForClient", "$get$memoizedExpenseStatsForClient", function() { return O.memo2(new L.memoizedExpenseStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedClientExpenseList", "$get$memoizedClientExpenseList", function() { return O.memo2(new L.memoizedClientExpenseList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedExpenseStatsForProject", "$get$memoizedExpenseStatsForProject", function() { return O.memo2(new L.memoizedExpenseStatsForProject_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedExpenseStatsForUser", "$get$memoizedExpenseStatsForUser", function() { return O.memo2(new L.memoizedExpenseStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$expenseStateSerializer", "$get$_$expenseStateSerializer", function() { return new R._$ExpenseStateSerializer(); }); _lazyOld($, "_$expenseUIStateSerializer", "$get$_$expenseUIStateSerializer", function() { return new R._$ExpenseUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer5", "$get$forceSelectedReducer16", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new F.forceSelectedReducer_closure127(), t1, type$.legacy_ViewExpenseCategory), t3 = B.TypedReducer$(new F.forceSelectedReducer_closure128(), t1, type$.legacy_ViewExpenseCategoryList), t4 = B.TypedReducer$(new F.forceSelectedReducer_closure129(), t1, H.findType("FilterExpenseCategoriesByState*")), t5 = B.TypedReducer$(new F.forceSelectedReducer_closure130(), t1, H.findType("FilterExpenseCategories*")), t6 = B.TypedReducer$(new F.forceSelectedReducer_closure131(), t1, H.findType("FilterExpenseCategoriesByCustom1*")), t7 = B.TypedReducer$(new F.forceSelectedReducer_closure132(), t1, H.findType("FilterExpenseCategoriesByCustom2*")), t8 = B.TypedReducer$(new F.forceSelectedReducer_closure133(), t1, H.findType("FilterExpenseCategoriesByCustom3*")), t9 = B.TypedReducer$(new F.forceSelectedReducer_closure134(), t1, H.findType("FilterExpenseCategoriesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer5", "$get$selectedIdReducer16", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new F.selectedIdReducer_closure256(), t1, H.findType("ArchiveExpenseCategoriesSuccess*")), t3 = B.TypedReducer$(new F.selectedIdReducer_closure257(), t1, H.findType("DeleteExpenseCategoriesSuccess*")), t4 = B.TypedReducer$(new F.selectedIdReducer_closure258(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new F.selectedIdReducer_closure259(), t1, type$.legacy_ViewExpenseCategory), t6 = B.TypedReducer$(new F.selectedIdReducer_closure260(), t1, H.findType("AddExpenseCategorySuccess*")), t7 = B.TypedReducer$(new F.selectedIdReducer_closure261(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new F.selectedIdReducer_closure262(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new F.selectedIdReducer_closure263(), t1, H.findType("SortExpenseCategories*")), t10 = B.TypedReducer$(new F.selectedIdReducer_closure264(), t1, H.findType("FilterExpenseCategories*")), t11 = B.TypedReducer$(new F.selectedIdReducer_closure265(), t1, H.findType("FilterExpenseCategoriesByState*")), t12 = B.TypedReducer$(new F.selectedIdReducer_closure266(), t1, H.findType("FilterExpenseCategoriesByCustom1*")), t13 = B.TypedReducer$(new F.selectedIdReducer_closure267(), t1, H.findType("FilterExpenseCategoriesByCustom2*")), t14 = B.TypedReducer$(new F.selectedIdReducer_closure268(), t1, H.findType("FilterExpenseCategoriesByCustom3*")), t15 = B.TypedReducer$(new F.selectedIdReducer_closure269(), t1, H.findType("FilterExpenseCategoriesByCustom4*")), t16 = B.TypedReducer$(new F.selectedIdReducer_closure270(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer5", "$get$editingReducer16", function() { var t1 = type$.legacy_ExpenseCategoryEntity, t2 = B.TypedReducer$(F.expense_category_reducer___updateEditing$closure(), t1, H.findType("SaveExpenseCategorySuccess*")), t3 = B.TypedReducer$(F.expense_category_reducer___updateEditing$closure(), t1, H.findType("AddExpenseCategorySuccess*")), t4 = B.TypedReducer$(new F.editingReducer_closure85(), t1, H.findType("RestoreExpenseCategoriesSuccess*")), t5 = B.TypedReducer$(new F.editingReducer_closure86(), t1, H.findType("ArchiveExpenseCategoriesSuccess*")), t6 = B.TypedReducer$(new F.editingReducer_closure87(), t1, H.findType("DeleteExpenseCategoriesSuccess*")), t7 = B.TypedReducer$(F.expense_category_reducer___updateEditing$closure(), t1, type$.legacy_EditExpenseCategory), t8 = B.TypedReducer$(new F.editingReducer_closure88(), t1, H.findType("UpdateExpenseCategory*")), t9 = B.TypedReducer$(F.expense_category_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "expenseCategoryListReducer", "$get$expenseCategoryListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(F.expense_category_reducer___sortExpenseCategories$closure(), t1, H.findType("SortExpenseCategories*")), t3 = B.TypedReducer$(F.expense_category_reducer___filterExpenseCategoriesByState$closure(), t1, H.findType("FilterExpenseCategoriesByState*")), t4 = B.TypedReducer$(F.expense_category_reducer___filterExpenseCategories$closure(), t1, H.findType("FilterExpenseCategories*")), t5 = B.TypedReducer$(F.expense_category_reducer___filterExpenseCategoriesByCustom1$closure(), t1, H.findType("FilterExpenseCategoriesByCustom1*")), t6 = B.TypedReducer$(F.expense_category_reducer___filterExpenseCategoriesByCustom2$closure(), t1, H.findType("FilterExpenseCategoriesByCustom2*")), t7 = B.TypedReducer$(F.expense_category_reducer___startListMultiselect$closure(), t1, H.findType("StartExpenseCategoryMultiselect*")), t8 = B.TypedReducer$(F.expense_category_reducer___addToListMultiselect$closure(), t1, H.findType("AddToExpenseCategoryMultiselect*")), t9 = B.TypedReducer$(F.expense_category_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromExpenseCategoryMultiselect*")), t10 = B.TypedReducer$(F.expense_category_reducer___clearListMultiselect$closure(), t1, H.findType("ClearExpenseCategoryMultiselect*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "expenseCategoriesReducer", "$get$expenseCategoriesReducer", function() { var t1 = type$.legacy_ExpenseCategoryState, t2 = B.TypedReducer$(F.expense_category_reducer___updateExpenseCategory$closure(), t1, H.findType("SaveExpenseCategorySuccess*")), t3 = B.TypedReducer$(F.expense_category_reducer___addExpenseCategory$closure(), t1, H.findType("AddExpenseCategorySuccess*")), t4 = B.TypedReducer$(F.expense_category_reducer___setLoadedExpenseCategories$closure(), t1, H.findType("LoadExpenseCategoriesSuccess*")), t5 = B.TypedReducer$(F.expense_category_reducer___setLoadedExpenseCategory$closure(), t1, H.findType("LoadExpenseCategorySuccess*")), t6 = B.TypedReducer$(F.expense_category_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(F.expense_category_reducer___archiveExpenseCategorySuccess$closure(), t1, H.findType("ArchiveExpenseCategoriesSuccess*")), t8 = B.TypedReducer$(F.expense_category_reducer___deleteExpenseCategorySuccess$closure(), t1, H.findType("DeleteExpenseCategoriesSuccess*")), t9 = B.TypedReducer$(F.expense_category_reducer___restoreExpenseCategorySuccess$closure(), t1, H.findType("RestoreExpenseCategoriesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredExpenseCategoryList", "$get$memoizedFilteredExpenseCategoryList", function() { return O.memo4(new O.memoizedFilteredExpenseCategoryList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedCalculateExpenseCategoryAmount", "$get$memoizedCalculateExpenseCategoryAmount", function() { return O.memo2(new O.memoizedCalculateExpenseCategoryAmount_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_double); }); _lazyOld($, "memoizedExpenseStatsForExpenseCategory", "$get$memoizedExpenseStatsForExpenseCategory", function() { return O.memo2(new O.memoizedExpenseStatsForExpenseCategory_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$expenseCategoryStateSerializer", "$get$_$expenseCategoryStateSerializer", function() { return new Q._$ExpenseCategoryStateSerializer(); }); _lazyOld($, "_$expenseCategoryUIStateSerializer", "$get$_$expenseCategoryUIStateSerializer", function() { return new Q._$ExpenseCategoryUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer6", "$get$forceSelectedReducer6", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new K.forceSelectedReducer_closure55(), t1, type$.legacy_ViewGroup), t3 = B.TypedReducer$(new K.forceSelectedReducer_closure56(), t1, type$.legacy_ViewGroupList), t4 = B.TypedReducer$(new K.forceSelectedReducer_closure57(), t1, H.findType("FilterGroupsByState*")), t5 = B.TypedReducer$(new K.forceSelectedReducer_closure58(), t1, H.findType("FilterGroups*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer6", "$get$selectedIdReducer6", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new K.selectedIdReducer_closure107(), t1, H.findType("ArchiveGroupSuccess*")), t3 = B.TypedReducer$(new K.selectedIdReducer_closure108(), t1, H.findType("DeleteGroupSuccess*")), t4 = B.TypedReducer$(new K.selectedIdReducer_closure109(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new K.selectedIdReducer_closure110(), t1, type$.legacy_ViewGroup), t6 = B.TypedReducer$(new K.selectedIdReducer_closure111(), t1, H.findType("AddGroupSuccess*")), t7 = B.TypedReducer$(new K.selectedIdReducer_closure112(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new K.selectedIdReducer_closure113(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new K.selectedIdReducer_closure114(), t1, H.findType("SortGroups*")), t10 = B.TypedReducer$(new K.selectedIdReducer_closure115(), t1, H.findType("FilterGroups*")), t11 = B.TypedReducer$(new K.selectedIdReducer_closure116(), t1, H.findType("FilterGroupsByState*")), t12 = B.TypedReducer$(new K.selectedIdReducer_closure117(), t1, type$.legacy_ClearEntitySelection), t13 = B.TypedReducer$(new K.selectedIdReducer_closure118(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer6", "$get$editingReducer6", function() { var t1 = type$.legacy_GroupEntity, t2 = B.TypedReducer$(K.group_reducer___updateEditing$closure(), t1, H.findType("SaveGroupSuccess*")), t3 = B.TypedReducer$(K.group_reducer___updateEditing$closure(), t1, H.findType("AddGroupSuccess*")), t4 = B.TypedReducer$(new K.editingReducer_closure31(), t1, H.findType("RestoreGroupSuccess*")), t5 = B.TypedReducer$(new K.editingReducer_closure32(), t1, H.findType("ArchiveGroupSuccess*")), t6 = B.TypedReducer$(new K.editingReducer_closure33(), t1, H.findType("DeleteGroupSuccess*")), t7 = B.TypedReducer$(K.group_reducer___updateEditing$closure(), t1, type$.legacy_EditGroup), t8 = B.TypedReducer$(new K.editingReducer_closure34(), t1, H.findType("UpdateGroup*")), t9 = B.TypedReducer$(K.group_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "groupListReducer", "$get$groupListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(K.group_reducer___sortGroups$closure(), t1, H.findType("SortGroups*")), t3 = B.TypedReducer$(K.group_reducer___filterGroupsByState$closure(), t1, H.findType("FilterGroupsByState*")), t4 = B.TypedReducer$(K.group_reducer___filterGroups$closure(), t1, H.findType("FilterGroups*")), t5 = B.TypedReducer$(K.group_reducer___startListMultiselect$closure(), t1, H.findType("StartGroupMultiselect*")), t6 = B.TypedReducer$(K.group_reducer___addToListMultiselect$closure(), t1, H.findType("AddToGroupMultiselect*")), t7 = B.TypedReducer$(K.group_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromGroupMultiselect*")), t8 = B.TypedReducer$(K.group_reducer___clearListMultiselect$closure(), t1, H.findType("ClearGroupMultiselect*")), t9 = B.TypedReducer$(K.group_reducer___viewGroupList$closure(), t1, type$.legacy_ViewGroupList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "groupsReducer", "$get$groupsReducer", function() { var t1 = type$.legacy_GroupState, t2 = B.TypedReducer$(K.group_reducer___updateGroup$closure(), t1, H.findType("SaveGroupSuccess*")), t3 = B.TypedReducer$(K.group_reducer___addGroup$closure(), t1, H.findType("AddGroupSuccess*")), t4 = B.TypedReducer$(K.group_reducer___setLoadedGroups$closure(), t1, H.findType("LoadGroupsSuccess*")), t5 = B.TypedReducer$(K.group_reducer___setLoadedGroup$closure(), t1, H.findType("LoadGroupSuccess*")), t6 = B.TypedReducer$(K.group_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(K.group_reducer___archiveGroupSuccess$closure(), t1, H.findType("ArchiveGroupSuccess*")), t8 = B.TypedReducer$(K.group_reducer___deleteGroupSuccess$closure(), t1, H.findType("DeleteGroupSuccess*")), t9 = B.TypedReducer$(K.group_reducer___restoreGroupSuccess$closure(), t1, H.findType("RestoreGroupSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredGroupList", "$get$memoizedFilteredGroupList", function() { return O.memo4(new S.memoizedFilteredGroupList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedClientStatsForGroup", "$get$memoizedClientStatsForGroup", function() { return O.memo2(new S.memoizedClientStatsForGroup_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_String, type$.legacy_EntityStats); }); _lazyOld($, "_$groupStateSerializer", "$get$_$groupStateSerializer", function() { return new E._$GroupStateSerializer(); }); _lazyOld($, "_$groupUIStateSerializer", "$get$_$groupUIStateSerializer", function() { return new E._$GroupUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer7", "$get$forceSelectedReducer20", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new D.forceSelectedReducer_closure159(), t1, type$.legacy_ViewInvoice), t3 = B.TypedReducer$(new D.forceSelectedReducer_closure160(), t1, type$.legacy_ViewInvoiceList), t4 = B.TypedReducer$(new D.forceSelectedReducer_closure161(), t1, H.findType("FilterInvoicesByState*")), t5 = B.TypedReducer$(new D.forceSelectedReducer_closure162(), t1, H.findType("FilterInvoices*")), t6 = B.TypedReducer$(new D.forceSelectedReducer_closure163(), t1, H.findType("FilterInvoicesByCustom1*")), t7 = B.TypedReducer$(new D.forceSelectedReducer_closure164(), t1, H.findType("FilterInvoicesByCustom2*")), t8 = B.TypedReducer$(new D.forceSelectedReducer_closure165(), t1, H.findType("FilterInvoicesByCustom3*")), t9 = B.TypedReducer$(new D.forceSelectedReducer_closure166(), t1, H.findType("FilterInvoicesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer2", "$get$tabIndexReducer9", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new D.tabIndexReducer_closure19(), t1, H.findType("UpdateInvoiceTab*")), t3 = B.TypedReducer$(new D.tabIndexReducer_closure20(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer0", "$get$historyActivityIdReducer2", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new D.historyActivityIdReducer_closure2(), t1, type$.legacy_ShowPdfInvoice); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemIndexReducer", "$get$editingItemIndexReducer0", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new D.editingItemIndexReducer_closure1(), t1, type$.legacy_EditInvoice), t3 = B.TypedReducer$(new D.editingItemIndexReducer_closure2(), t1, H.findType("EditInvoiceItem*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer7", "$get$selectedIdReducer20", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new D.selectedIdReducer_closure316(), t1, H.findType("ArchiveInvoicesSuccess*")), t3 = B.TypedReducer$(new D.selectedIdReducer_closure317(), t1, H.findType("DeleteInvoicesSuccess*")), t4 = B.TypedReducer$(new D.selectedIdReducer_closure318(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new D.selectedIdReducer_closure319(), t1, type$.legacy_ViewInvoice), t6 = B.TypedReducer$(new D.selectedIdReducer_closure320(), t1, H.findType("AddInvoiceSuccess*")), t7 = B.TypedReducer$(new D.selectedIdReducer_closure321(), t1, type$.legacy_ShowEmailInvoice), t8 = B.TypedReducer$(new D.selectedIdReducer_closure322(), t1, type$.legacy_ShowPdfInvoice), t9 = B.TypedReducer$(new D.selectedIdReducer_closure323(), t1, type$.legacy_SelectCompany), t10 = B.TypedReducer$(new D.selectedIdReducer_closure324(), t1, type$.legacy_ClearEntityFilter), t11 = B.TypedReducer$(new D.selectedIdReducer_closure325(), t1, H.findType("SortInvoices*")), t12 = B.TypedReducer$(new D.selectedIdReducer_closure326(), t1, H.findType("FilterInvoices*")), t13 = B.TypedReducer$(new D.selectedIdReducer_closure327(), t1, H.findType("FilterInvoicesByState*")), t14 = B.TypedReducer$(new D.selectedIdReducer_closure328(), t1, H.findType("FilterInvoicesByStatus*")), t15 = B.TypedReducer$(new D.selectedIdReducer_closure329(), t1, H.findType("FilterInvoicesByCustom1*")), t16 = B.TypedReducer$(new D.selectedIdReducer_closure330(), t1, H.findType("FilterInvoicesByCustom2*")), t17 = B.TypedReducer$(new D.selectedIdReducer_closure331(), t1, H.findType("FilterInvoicesByCustom3*")), t18 = B.TypedReducer$(new D.selectedIdReducer_closure332(), t1, H.findType("FilterInvoicesByCustom4*")), t19 = B.TypedReducer$(new D.selectedIdReducer_closure333(), t1, type$.legacy_ClearEntitySelection), t20 = B.TypedReducer$(new D.selectedIdReducer_closure334(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer7", "$get$editingReducer20", function() { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = B.TypedReducer$(D.invoice_reducer___updateEditing$closure(), t1, H.findType("SaveInvoiceSuccess*")), t3 = B.TypedReducer$(D.invoice_reducer___updateEditing$closure(), t1, H.findType("AddInvoiceSuccess*")), t4 = B.TypedReducer$(D.invoice_reducer___updateEditing$closure(), t1, type$.legacy_EditInvoice), t5 = B.TypedReducer$(new D.editingReducer_closure101(), t1, H.findType("UpdateInvoice*")), t6 = H.findType("AddInvoiceItem*"), t7 = B.TypedReducer$(new D.editingReducer_closure102(), t1, t6), t8 = B.TypedReducer$(new D.editingReducer_closure103(), t1, H.findType("MoveInvoiceItem*")), t9 = H.findType("DeleteInvoiceItem*"), t10 = B.TypedReducer$(new D.editingReducer_closure104(), t1, t9), t11 = H.findType("UpdateInvoiceItem*"), t12 = B.TypedReducer$(new D.editingReducer_closure105(), t1, t11), t13 = B.TypedReducer$(new D.editingReducer_closure106(), t1, H.findType("UpdateInvoiceClient*")), t14 = B.TypedReducer$(new D.editingReducer_closure107(), t1, H.findType("RestoreInvoicesSuccess*")), t15 = B.TypedReducer$(new D.editingReducer_closure108(), t1, H.findType("ArchiveInvoicesSuccess*")), t16 = B.TypedReducer$(new D.editingReducer_closure109(), t1, H.findType("DeleteInvoicesSuccess*")); t6 = B.TypedReducer$(D.invoice_reducer___addInvoiceItem$closure(), t1, t6); t17 = B.TypedReducer$(D.invoice_reducer___addInvoiceItems$closure(), t1, H.findType("AddInvoiceItems*")); t9 = B.TypedReducer$(D.invoice_reducer___removeInvoiceItem$closure(), t1, t9); t11 = B.TypedReducer$(D.invoice_reducer___updateInvoiceItem$closure(), t1, t11); t18 = B.TypedReducer$(D.invoice_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = B.TypedReducer$(new D.editingReducer_closure110(), t1, H.findType("AddInvoiceContact*")); t20 = B.TypedReducer$(new D.editingReducer_closure111(), t1, H.findType("RemoveInvoiceContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "invoiceListReducer", "$get$invoiceListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(D.invoice_reducer___sortInvoices$closure(), t1, H.findType("SortInvoices*")), t3 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByState$closure(), t1, H.findType("FilterInvoicesByState*")), t4 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByStatus$closure(), t1, H.findType("FilterInvoicesByStatus*")), t5 = B.TypedReducer$(D.invoice_reducer___filterInvoices$closure(), t1, H.findType("FilterInvoices*")), t6 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByCustom1$closure(), t1, H.findType("FilterInvoicesByCustom1*")), t7 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByCustom2$closure(), t1, H.findType("FilterInvoicesByCustom2*")), t8 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByCustom3$closure(), t1, H.findType("FilterInvoicesByCustom3*")), t9 = B.TypedReducer$(D.invoice_reducer___filterInvoicesByCustom4$closure(), t1, H.findType("FilterInvoicesByCustom4*")), t10 = B.TypedReducer$(D.invoice_reducer___startListMultiselect$closure(), t1, H.findType("StartInvoiceMultiselect*")), t11 = B.TypedReducer$(D.invoice_reducer___addToListMultiselect$closure(), t1, H.findType("AddToInvoiceMultiselect*")), t12 = B.TypedReducer$(D.invoice_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromInvoiceMultiselect*")), t13 = B.TypedReducer$(D.invoice_reducer___clearListMultiselect$closure(), t1, H.findType("ClearInvoiceMultiselect*")), t14 = B.TypedReducer$(D.invoice_reducer___viewInvoiceList$closure(), t1, type$.legacy_ViewInvoiceList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "invoicesReducer", "$get$invoicesReducer", function() { var t1 = type$.legacy_InvoiceState, t2 = B.TypedReducer$(D.invoice_reducer___updateInvoice$closure(), t1, H.findType("SaveInvoiceSuccess*")), t3 = B.TypedReducer$(D.invoice_reducer___addInvoice$closure(), t1, H.findType("AddInvoiceSuccess*")), t4 = B.TypedReducer$(D.invoice_reducer___setLoadedInvoices$closure(), t1, H.findType("LoadInvoicesSuccess*")), t5 = B.TypedReducer$(D.invoice_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(D.invoice_reducer___updateInvoice$closure(), t1, H.findType("LoadInvoiceSuccess*")), t7 = B.TypedReducer$(D.invoice_reducer___markInvoicesSentSuccess$closure(), t1, H.findType("MarkInvoicesSentSuccess*")), t8 = B.TypedReducer$(D.invoice_reducer___markInvoicesPaidSuccess$closure(), t1, H.findType("MarkInvoicesPaidSuccess*")), t9 = B.TypedReducer$(D.invoice_reducer___reverseInvoicesSuccess$closure(), t1, H.findType("ReverseInvoicesSuccess*")), t10 = B.TypedReducer$(D.invoice_reducer___cancelInvoicesSuccess$closure(), t1, H.findType("CancelInvoicesSuccess*")), t11 = B.TypedReducer$(D.invoice_reducer___emailInvoiceSuccess$closure(), t1, H.findType("EmailInvoiceSuccess*")), t12 = B.TypedReducer$(D.invoice_reducer___archiveInvoiceSuccess$closure(), t1, H.findType("ArchiveInvoicesSuccess*")), t13 = B.TypedReducer$(D.invoice_reducer___deleteInvoiceSuccess$closure(), t1, H.findType("DeleteInvoicesSuccess*")), t14 = B.TypedReducer$(D.invoice_reducer___restoreInvoiceSuccess$closure(), t1, H.findType("RestoreInvoicesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownInvoiceList", "$get$memoizedDropdownInvoiceList", function() { var t1 = type$.legacy_String, t2 = type$.legacy_List_legacy_String; return O.memo7(new Z.memoizedDropdownInvoiceList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, t2, t1, t2); }); _lazyOld($, "memoizedFilteredInvoiceList", "$get$memoizedFilteredInvoiceList", function() { return O.memo8(new Z.memoizedFilteredInvoiceList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedInvoiceStatsForClient", "$get$memoizedInvoiceStatsForClient", function() { return O.memo2(new Z.memoizedInvoiceStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedInvoiceStatsForDesign", "$get$memoizedInvoiceStatsForDesign", function() { return O.memo2(new Z.memoizedInvoiceStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedInvoiceStatsForSubscription", "$get$memoizedInvoiceStatsForSubscription", function() { return O.memo2(new Z.memoizedInvoiceStatsForSubscription_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedInvoiceStatsForUser", "$get$memoizedInvoiceStatsForUser", function() { return O.memo2(new Z.memoizedInvoiceStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$invoiceStateSerializer", "$get$_$invoiceStateSerializer", function() { return new B._$InvoiceStateSerializer(); }); _lazyOld($, "_$invoiceUIStateSerializer", "$get$_$invoiceUIStateSerializer", function() { return new B._$InvoiceUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer8", "$get$forceSelectedReducer0", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new R.forceSelectedReducer_closure7(), t1, H.findType("ViewPayment*")), t3 = B.TypedReducer$(new R.forceSelectedReducer_closure8(), t1, type$.legacy_ViewPaymentList), t4 = B.TypedReducer$(new R.forceSelectedReducer_closure9(), t1, H.findType("FilterPaymentsByState*")), t5 = B.TypedReducer$(new R.forceSelectedReducer_closure10(), t1, H.findType("FilterPayments*")), t6 = B.TypedReducer$(new R.forceSelectedReducer_closure11(), t1, H.findType("FilterPaymentsByCustom1*")), t7 = B.TypedReducer$(new R.forceSelectedReducer_closure12(), t1, H.findType("FilterPaymentsByCustom2*")), t8 = B.TypedReducer$(new R.forceSelectedReducer_closure13(), t1, H.findType("FilterPaymentsByCustom3*")), t9 = B.TypedReducer$(new R.forceSelectedReducer_closure14(), t1, H.findType("FilterPaymentsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer3", "$get$tabIndexReducer0", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new R.tabIndexReducer_closure1(), t1, H.findType("UpdatePaymentTab*")), t3 = B.TypedReducer$(new R.tabIndexReducer_closure2(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer8", "$get$selectedIdReducer0", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new R.selectedIdReducer_closure18(), t1, H.findType("ArchivePaymentsSuccess*")), t3 = B.TypedReducer$(new R.selectedIdReducer_closure19(), t1, H.findType("DeletePaymentsSuccess*")), t4 = B.TypedReducer$(new R.selectedIdReducer_closure20(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new R.selectedIdReducer_closure21(), t1, H.findType("ViewPayment*")), t6 = B.TypedReducer$(new R.selectedIdReducer_closure22(), t1, H.findType("AddPaymentSuccess*")), t7 = B.TypedReducer$(new R.selectedIdReducer_closure23(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new R.selectedIdReducer_closure24(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new R.selectedIdReducer_closure25(), t1, H.findType("SortPayments*")), t10 = B.TypedReducer$(new R.selectedIdReducer_closure26(), t1, H.findType("FilterPayments*")), t11 = B.TypedReducer$(new R.selectedIdReducer_closure27(), t1, H.findType("FilterPaymentsByState*")), t12 = B.TypedReducer$(new R.selectedIdReducer_closure28(), t1, H.findType("FilterPaymentsByCustom1*")), t13 = B.TypedReducer$(new R.selectedIdReducer_closure29(), t1, H.findType("FilterPaymentsByCustom2*")), t14 = B.TypedReducer$(new R.selectedIdReducer_closure30(), t1, H.findType("FilterPaymentsByCustom3*")), t15 = B.TypedReducer$(new R.selectedIdReducer_closure31(), t1, H.findType("FilterPaymentsByCustom4*")), t16 = B.TypedReducer$(new R.selectedIdReducer_closure32(), t1, type$.legacy_ClearEntitySelection), t17 = B.TypedReducer$(new R.selectedIdReducer_closure33(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer8", "$get$editingReducer0", function() { var t1 = type$.legacy_PaymentEntity, t2 = B.TypedReducer$(R.payment_reducer___updateEditing$closure(), t1, H.findType("SavePaymentSuccess*")), t3 = B.TypedReducer$(R.payment_reducer___updateEditing$closure(), t1, H.findType("AddPaymentSuccess*")), t4 = B.TypedReducer$(new R.editingReducer_closure10(), t1, H.findType("RestorePaymentsSuccess*")), t5 = B.TypedReducer$(new R.editingReducer_closure11(), t1, H.findType("ArchivePaymentsSuccess*")), t6 = B.TypedReducer$(new R.editingReducer_closure12(), t1, H.findType("DeletePaymentsSuccess*")), t7 = B.TypedReducer$(R.payment_reducer___updateEditing$closure(), t1, type$.legacy_EditPayment), t8 = B.TypedReducer$(R.payment_reducer___updateEditing$closure(), t1, type$.legacy_ViewRefundPayment), t9 = B.TypedReducer$(new R.editingReducer_closure13(), t1, H.findType("UpdatePayment*")), t10 = B.TypedReducer$(R.payment_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "paymentListReducer", "$get$paymentListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(R.payment_reducer___sortPayments$closure(), t1, H.findType("SortPayments*")), t3 = B.TypedReducer$(R.payment_reducer___filterPaymentsByState$closure(), t1, H.findType("FilterPaymentsByState*")), t4 = B.TypedReducer$(R.payment_reducer___filterPayments$closure(), t1, H.findType("FilterPayments*")), t5 = B.TypedReducer$(R.payment_reducer___filterPaymentsByCustom1$closure(), t1, H.findType("FilterPaymentsByCustom1*")), t6 = B.TypedReducer$(R.payment_reducer___filterPaymentsByCustom2$closure(), t1, H.findType("FilterPaymentsByCustom2*")), t7 = B.TypedReducer$(R.payment_reducer___filterPaymentsByCustom3$closure(), t1, H.findType("FilterPaymentsByCustom3*")), t8 = B.TypedReducer$(R.payment_reducer___filterPaymentsByCustom4$closure(), t1, H.findType("FilterPaymentsByCustom4*")), t9 = B.TypedReducer$(R.payment_reducer___startListMultiselect$closure(), t1, H.findType("StartPaymentMultiselect*")), t10 = B.TypedReducer$(R.payment_reducer___addToListMultiselect$closure(), t1, H.findType("AddToPaymentMultiselect*")), t11 = B.TypedReducer$(R.payment_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromPaymentMultiselect*")), t12 = B.TypedReducer$(R.payment_reducer___clearListMultiselect$closure(), t1, H.findType("ClearPaymentMultiselect*")), t13 = B.TypedReducer$(R.payment_reducer___viewPaymentList$closure(), t1, type$.legacy_ViewPaymentList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "paymentsReducer", "$get$paymentsReducer", function() { var t1 = type$.legacy_PaymentState, t2 = B.TypedReducer$(R.payment_reducer___updatePayment$closure(), t1, H.findType("SavePaymentSuccess*")), t3 = B.TypedReducer$(R.payment_reducer___addPayment$closure(), t1, H.findType("AddPaymentSuccess*")), t4 = B.TypedReducer$(R.payment_reducer___setLoadedPayments$closure(), t1, H.findType("LoadPaymentsSuccess*")), t5 = B.TypedReducer$(R.payment_reducer___setLoadedPayment$closure(), t1, H.findType("LoadPaymentSuccess*")), t6 = B.TypedReducer$(R.payment_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(R.payment_reducer___archivePaymentSuccess$closure(), t1, H.findType("ArchivePaymentsSuccess*")), t8 = B.TypedReducer$(R.payment_reducer___deletePaymentSuccess$closure(), t1, H.findType("DeletePaymentsSuccess*")), t9 = B.TypedReducer$(R.payment_reducer___restorePaymentSuccess$closure(), t1, H.findType("RestorePaymentsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedPaymentsByInvoice", "$get$memoizedPaymentsByInvoice", function() { return O.memo3(new Q.memoizedPaymentsByInvoice_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_PaymentEntity); }); _lazyOld($, "memoizedPaymentsByCredit", "$get$memoizedPaymentsByCredit", function() { return O.memo3(new Q.memoizedPaymentsByCredit_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_PaymentEntity); }); _lazyOld($, "memoizedFilteredPaymentList", "$get$memoizedFilteredPaymentList", function() { return O.memo7(new Q.memoizedFilteredPaymentList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedPaymentStatsForClient", "$get$memoizedPaymentStatsForClient", function() { return O.memo3(new Q.memoizedPaymentStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$paymentStateSerializer", "$get$_$paymentStateSerializer", function() { return new L._$PaymentStateSerializer(); }); _lazyOld($, "_$paymentUIStateSerializer", "$get$_$paymentUIStateSerializer", function() { return new L._$PaymentUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer9", "$get$forceSelectedReducer12", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new L.forceSelectedReducer_closure95(), t1, type$.legacy_ViewPaymentTerm), t3 = B.TypedReducer$(new L.forceSelectedReducer_closure96(), t1, type$.legacy_ViewPaymentTermList), t4 = B.TypedReducer$(new L.forceSelectedReducer_closure97(), t1, H.findType("FilterPaymentTermsByState*")), t5 = B.TypedReducer$(new L.forceSelectedReducer_closure98(), t1, H.findType("FilterPaymentTerms*")), t6 = B.TypedReducer$(new L.forceSelectedReducer_closure99(), t1, H.findType("FilterPaymentTermsByCustom1*")), t7 = B.TypedReducer$(new L.forceSelectedReducer_closure100(), t1, H.findType("FilterPaymentTermsByCustom2*")), t8 = B.TypedReducer$(new L.forceSelectedReducer_closure101(), t1, H.findType("FilterPaymentTermsByCustom3*")), t9 = B.TypedReducer$(new L.forceSelectedReducer_closure102(), t1, H.findType("FilterPaymentTermsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer9", "$get$selectedIdReducer12", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new L.selectedIdReducer_closure193(), t1, H.findType("ArchivePaymentTermsSuccess*")), t3 = B.TypedReducer$(new L.selectedIdReducer_closure194(), t1, H.findType("DeletePaymentTermsSuccess*")), t4 = B.TypedReducer$(new L.selectedIdReducer_closure195(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new L.selectedIdReducer_closure196(), t1, type$.legacy_ViewPaymentTerm), t6 = B.TypedReducer$(new L.selectedIdReducer_closure197(), t1, H.findType("AddPaymentTermSuccess*")), t7 = B.TypedReducer$(new L.selectedIdReducer_closure198(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new L.selectedIdReducer_closure199(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new L.selectedIdReducer_closure200(), t1, H.findType("SortPaymentTerms*")), t10 = B.TypedReducer$(new L.selectedIdReducer_closure201(), t1, H.findType("FilterPaymentTerms*")), t11 = B.TypedReducer$(new L.selectedIdReducer_closure202(), t1, H.findType("FilterPaymentTermsByState*")), t12 = B.TypedReducer$(new L.selectedIdReducer_closure203(), t1, H.findType("FilterPaymentTermsByCustom1*")), t13 = B.TypedReducer$(new L.selectedIdReducer_closure204(), t1, H.findType("FilterPaymentTermsByCustom2*")), t14 = B.TypedReducer$(new L.selectedIdReducer_closure205(), t1, H.findType("FilterPaymentTermsByCustom3*")), t15 = B.TypedReducer$(new L.selectedIdReducer_closure206(), t1, H.findType("FilterPaymentTermsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer9", "$get$editingReducer12", function() { var t1 = type$.legacy_PaymentTermEntity, t2 = B.TypedReducer$(L.payment_term_reducer___updateEditing$closure(), t1, H.findType("SavePaymentTermSuccess*")), t3 = B.TypedReducer$(L.payment_term_reducer___updateEditing$closure(), t1, H.findType("AddPaymentTermSuccess*")), t4 = B.TypedReducer$(new L.editingReducer_closure62(), t1, H.findType("RestorePaymentTermsSuccess*")), t5 = B.TypedReducer$(new L.editingReducer_closure63(), t1, H.findType("ArchivePaymentTermsSuccess*")), t6 = B.TypedReducer$(new L.editingReducer_closure64(), t1, H.findType("DeletePaymentTermsSuccess*")), t7 = B.TypedReducer$(L.payment_term_reducer___updateEditing$closure(), t1, type$.legacy_EditPaymentTerm), t8 = B.TypedReducer$(new L.editingReducer_closure65(), t1, H.findType("UpdatePaymentTerm*")), t9 = B.TypedReducer$(L.payment_term_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "paymentTermListReducer", "$get$paymentTermListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(L.payment_term_reducer___sortPaymentTerms$closure(), t1, H.findType("SortPaymentTerms*")), t3 = B.TypedReducer$(L.payment_term_reducer___filterPaymentTermsByState$closure(), t1, H.findType("FilterPaymentTermsByState*")), t4 = B.TypedReducer$(L.payment_term_reducer___filterPaymentTerms$closure(), t1, H.findType("FilterPaymentTerms*")), t5 = B.TypedReducer$(L.payment_term_reducer___filterPaymentTermsByCustom1$closure(), t1, H.findType("FilterPaymentTermsByCustom1*")), t6 = B.TypedReducer$(L.payment_term_reducer___filterPaymentTermsByCustom2$closure(), t1, H.findType("FilterPaymentTermsByCustom2*")), t7 = B.TypedReducer$(L.payment_term_reducer___startListMultiselect$closure(), t1, H.findType("StartPaymentTermMultiselect*")), t8 = B.TypedReducer$(L.payment_term_reducer___addToListMultiselect$closure(), t1, H.findType("AddToPaymentTermMultiselect*")), t9 = B.TypedReducer$(L.payment_term_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromPaymentTermMultiselect*")), t10 = B.TypedReducer$(L.payment_term_reducer___clearListMultiselect$closure(), t1, H.findType("ClearPaymentTermMultiselect*")), t11 = B.TypedReducer$(L.payment_term_reducer___viewPaymentTermList$closure(), t1, type$.legacy_ViewPaymentTermList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "paymentTermsReducer", "$get$paymentTermsReducer", function() { var t1 = type$.legacy_PaymentTermState, t2 = B.TypedReducer$(L.payment_term_reducer___updatePaymentTerm$closure(), t1, H.findType("SavePaymentTermSuccess*")), t3 = B.TypedReducer$(L.payment_term_reducer___addPaymentTerm$closure(), t1, H.findType("AddPaymentTermSuccess*")), t4 = B.TypedReducer$(L.payment_term_reducer___setLoadedPaymentTerms$closure(), t1, H.findType("LoadPaymentTermsSuccess*")), t5 = B.TypedReducer$(L.payment_term_reducer___setLoadedPaymentTerm$closure(), t1, H.findType("LoadPaymentTermSuccess*")), t6 = B.TypedReducer$(L.payment_term_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(L.payment_term_reducer___archivePaymentTermSuccess$closure(), t1, H.findType("ArchivePaymentTermsSuccess*")), t8 = B.TypedReducer$(L.payment_term_reducer___deletePaymentTermSuccess$closure(), t1, H.findType("DeletePaymentTermsSuccess*")), t9 = B.TypedReducer$(L.payment_term_reducer___restorePaymentTermSuccess$closure(), t1, H.findType("RestorePaymentTermsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownPaymentTermList", "$get$memoizedDropdownPaymentTermList", function() { return O.memo2(new V.memoizedDropdownPaymentTermList_closure(), H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredPaymentTermList", "$get$memoizedFilteredPaymentTermList", function() { return O.memo4(new V.memoizedFilteredPaymentTermList_closure(), type$.legacy_SelectionState, H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$paymentTermStateSerializer", "$get$_$paymentTermStateSerializer", function() { return new N._$PaymentTermStateSerializer(); }); _lazyOld($, "_$paymentTermUIStateSerializer", "$get$_$paymentTermUIStateSerializer", function() { return new N._$PaymentTermUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer10", "$get$forceSelectedReducer22", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new B.forceSelectedReducer_closure175(), t1, type$.legacy_ViewProduct), t3 = B.TypedReducer$(new B.forceSelectedReducer_closure176(), t1, type$.legacy_ViewProductList), t4 = B.TypedReducer$(new B.forceSelectedReducer_closure177(), t1, H.findType("FilterProductsByState*")), t5 = B.TypedReducer$(new B.forceSelectedReducer_closure178(), t1, H.findType("FilterProducts*")), t6 = B.TypedReducer$(new B.forceSelectedReducer_closure179(), t1, H.findType("FilterProductsByCustom1*")), t7 = B.TypedReducer$(new B.forceSelectedReducer_closure180(), t1, H.findType("FilterProductsByCustom2*")), t8 = B.TypedReducer$(new B.forceSelectedReducer_closure181(), t1, H.findType("FilterProductsByCustom3*")), t9 = B.TypedReducer$(new B.forceSelectedReducer_closure182(), t1, H.findType("FilterProductsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer4", "$get$tabIndexReducer11", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new B.tabIndexReducer_closure23(), t1, H.findType("UpdateProductTab*")), t3 = B.TypedReducer$(new B.tabIndexReducer_closure24(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "editingReducer10", "$get$editingReducer22", function() { var t1 = type$.legacy_ProductEntity, t2 = B.TypedReducer$(B.product_reducer___updateEditing$closure(), t1, H.findType("SaveProductSuccess*")), t3 = B.TypedReducer$(B.product_reducer___updateEditing$closure(), t1, H.findType("AddProductSuccess*")), t4 = B.TypedReducer$(B.product_reducer___updateEditing$closure(), t1, type$.legacy_EditProduct), t5 = B.TypedReducer$(new B.editingReducer_closure126(), t1, H.findType("UpdateProduct*")), t6 = B.TypedReducer$(new B.editingReducer_closure127(), t1, H.findType("RestoreProductsSuccess*")), t7 = B.TypedReducer$(new B.editingReducer_closure128(), t1, H.findType("ArchiveProductsSuccess*")), t8 = B.TypedReducer$(new B.editingReducer_closure129(), t1, H.findType("DeleteProductsSuccess*")), t9 = B.TypedReducer$(B.product_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer10", "$get$selectedIdReducer22", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new B.selectedIdReducer_closure352(), t1, H.findType("ArchiveProductsSuccess*")), t3 = B.TypedReducer$(new B.selectedIdReducer_closure353(), t1, H.findType("DeleteProductsSuccess*")), t4 = B.TypedReducer$(new B.selectedIdReducer_closure354(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new B.selectedIdReducer_closure355(), t1, type$.legacy_ViewProduct), t6 = B.TypedReducer$(new B.selectedIdReducer_closure356(), t1, H.findType("AddProductSuccess*")), t7 = B.TypedReducer$(new B.selectedIdReducer_closure357(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new B.selectedIdReducer_closure358(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new B.selectedIdReducer_closure359(), t1, H.findType("SortProducts*")), t10 = B.TypedReducer$(new B.selectedIdReducer_closure360(), t1, H.findType("FilterProducts*")), t11 = B.TypedReducer$(new B.selectedIdReducer_closure361(), t1, H.findType("FilterProductsByState*")), t12 = B.TypedReducer$(new B.selectedIdReducer_closure362(), t1, H.findType("FilterProductsByCustom1*")), t13 = B.TypedReducer$(new B.selectedIdReducer_closure363(), t1, H.findType("FilterProductsByCustom2*")), t14 = B.TypedReducer$(new B.selectedIdReducer_closure364(), t1, H.findType("FilterProductsByCustom3*")), t15 = B.TypedReducer$(new B.selectedIdReducer_closure365(), t1, H.findType("FilterProductsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "productListReducer", "$get$productListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(B.product_reducer___sortProducts$closure(), t1, H.findType("SortProducts*")), t3 = B.TypedReducer$(B.product_reducer___filterProducts$closure(), t1, H.findType("FilterProducts*")), t4 = B.TypedReducer$(B.product_reducer___filterProductsByState$closure(), t1, H.findType("FilterProductsByState*")), t5 = B.TypedReducer$(B.product_reducer___filterProductsByCustom1$closure(), t1, H.findType("FilterProductsByCustom1*")), t6 = B.TypedReducer$(B.product_reducer___filterProductsByCustom2$closure(), t1, H.findType("FilterProductsByCustom2*")), t7 = B.TypedReducer$(B.product_reducer___filterProductsByCustom3$closure(), t1, H.findType("FilterProductsByCustom3*")), t8 = B.TypedReducer$(B.product_reducer___filterProductsByCustom4$closure(), t1, H.findType("FilterProductsByCustom4*")), t9 = B.TypedReducer$(B.product_reducer___startListMultiselect$closure(), t1, H.findType("StartProductMultiselect*")), t10 = B.TypedReducer$(B.product_reducer___addToListMultiselect$closure(), t1, H.findType("AddToProductMultiselect*")), t11 = B.TypedReducer$(B.product_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromProductMultiselect*")), t12 = B.TypedReducer$(B.product_reducer___clearListMultiselect$closure(), t1, H.findType("ClearProductMultiselect*")), t13 = B.TypedReducer$(B.product_reducer___viewClientList$closure(), t1, type$.legacy_ViewProductList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "productsReducer", "$get$productsReducer", function() { var t1 = type$.legacy_ProductState, t2 = B.TypedReducer$(B.product_reducer___updateProduct$closure(), t1, H.findType("SaveProductSuccess*")), t3 = B.TypedReducer$(B.product_reducer___addProduct$closure(), t1, H.findType("AddProductSuccess*")), t4 = B.TypedReducer$(B.product_reducer___setLoadedProducts$closure(), t1, H.findType("LoadProductsSuccess*")), t5 = B.TypedReducer$(B.product_reducer___setLoadedProduct$closure(), t1, H.findType("LoadProductSuccess*")), t6 = B.TypedReducer$(B.product_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(B.product_reducer___archiveProductSuccess$closure(), t1, H.findType("ArchiveProductsSuccess*")), t8 = B.TypedReducer$(B.product_reducer___deleteProductSuccess$closure(), t1, H.findType("DeleteProductsSuccess*")), t9 = B.TypedReducer$(B.product_reducer___restoreProductSuccess$closure(), t1, H.findType("RestoreProductsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownProductList", "$get$memoizedDropdownProductList", function() { return O.memo3(new O.memoizedDropdownProductList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedProductList", "$get$memoizedProductList", function() { return O.memo1(new O.memoizedProductList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredProductList", "$get$memoizedFilteredProductList", function() { return O.memo5(new O.memoizedFilteredProductList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "_$productStateSerializer", "$get$_$productStateSerializer", function() { return new Y._$ProductStateSerializer(); }); _lazyOld($, "_$productUIStateSerializer", "$get$_$productUIStateSerializer", function() { return new Y._$ProductUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer11", "$get$forceSelectedReducer1", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new G.forceSelectedReducer_closure15(), t1, type$.legacy_ViewProject), t3 = B.TypedReducer$(new G.forceSelectedReducer_closure16(), t1, type$.legacy_ViewProjectList), t4 = B.TypedReducer$(new G.forceSelectedReducer_closure17(), t1, H.findType("FilterProjectsByState*")), t5 = B.TypedReducer$(new G.forceSelectedReducer_closure18(), t1, H.findType("FilterProjects*")), t6 = B.TypedReducer$(new G.forceSelectedReducer_closure19(), t1, H.findType("FilterProjectsByCustom1*")), t7 = B.TypedReducer$(new G.forceSelectedReducer_closure20(), t1, H.findType("FilterProjectsByCustom2*")), t8 = B.TypedReducer$(new G.forceSelectedReducer_closure21(), t1, H.findType("FilterProjectsByCustom3*")), t9 = B.TypedReducer$(new G.forceSelectedReducer_closure22(), t1, H.findType("FilterProjectsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer5", "$get$tabIndexReducer1", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new G.tabIndexReducer_closure3(), t1, H.findType("UpdateProjectTab*")), t3 = B.TypedReducer$(new G.tabIndexReducer_closure4(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer0", "$get$saveCompleterReducer", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new G.saveCompleterReducer_closure(), t1, type$.legacy_EditProject); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer0", "$get$cancelCompleterReducer", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new G.cancelCompleterReducer_closure(), t1, type$.legacy_EditProject); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer11", "$get$selectedIdReducer1", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new G.selectedIdReducer_closure34(), t1, H.findType("ArchiveProjectSuccess*")), t3 = B.TypedReducer$(new G.selectedIdReducer_closure35(), t1, H.findType("DeleteProjectSuccess*")), t4 = B.TypedReducer$(new G.selectedIdReducer_closure36(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new G.selectedIdReducer_closure37(), t1, type$.legacy_ViewProject), t6 = B.TypedReducer$(new G.selectedIdReducer_closure38(), t1, H.findType("AddProjectSuccess*")), t7 = B.TypedReducer$(new G.selectedIdReducer_closure39(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new G.selectedIdReducer_closure40(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new G.selectedIdReducer_closure41(), t1, H.findType("SortProjects*")), t10 = B.TypedReducer$(new G.selectedIdReducer_closure42(), t1, H.findType("FilterProjects*")), t11 = B.TypedReducer$(new G.selectedIdReducer_closure43(), t1, H.findType("FilterProjectsByState*")), t12 = B.TypedReducer$(new G.selectedIdReducer_closure44(), t1, H.findType("FilterProjectsByCustom1*")), t13 = B.TypedReducer$(new G.selectedIdReducer_closure45(), t1, H.findType("FilterProjectsByCustom2*")), t14 = B.TypedReducer$(new G.selectedIdReducer_closure46(), t1, H.findType("FilterProjectsByCustom3*")), t15 = B.TypedReducer$(new G.selectedIdReducer_closure47(), t1, H.findType("FilterProjectsByCustom4*")), t16 = B.TypedReducer$(new G.selectedIdReducer_closure48(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer11", "$get$editingReducer1", function() { var t1 = type$.legacy_ProjectEntity, t2 = B.TypedReducer$(G.project_reducer___updateEditing$closure(), t1, H.findType("SaveProjectSuccess*")), t3 = B.TypedReducer$(G.project_reducer___updateEditing$closure(), t1, H.findType("AddProjectSuccess*")), t4 = B.TypedReducer$(new G.editingReducer_closure14(), t1, H.findType("RestoreProjectSuccess*")), t5 = B.TypedReducer$(new G.editingReducer_closure15(), t1, H.findType("ArchiveProjectSuccess*")), t6 = B.TypedReducer$(new G.editingReducer_closure16(), t1, H.findType("DeleteProjectSuccess*")), t7 = B.TypedReducer$(G.project_reducer___updateEditing$closure(), t1, type$.legacy_EditProject), t8 = B.TypedReducer$(new G.editingReducer_closure17(), t1, H.findType("UpdateProject*")), t9 = B.TypedReducer$(G.project_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "projectListReducer", "$get$projectListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(G.project_reducer___sortProjects$closure(), t1, H.findType("SortProjects*")), t3 = B.TypedReducer$(G.project_reducer___filterProjectsByState$closure(), t1, H.findType("FilterProjectsByState*")), t4 = B.TypedReducer$(G.project_reducer___filterProjects$closure(), t1, H.findType("FilterProjects*")), t5 = B.TypedReducer$(G.project_reducer___filterProjectsByCustom1$closure(), t1, H.findType("FilterProjectsByCustom1*")), t6 = B.TypedReducer$(G.project_reducer___filterProjectsByCustom2$closure(), t1, H.findType("FilterProjectsByCustom2*")), t7 = B.TypedReducer$(G.project_reducer___filterProjectsByCustom3$closure(), t1, H.findType("FilterProjectsByCustom3*")), t8 = B.TypedReducer$(G.project_reducer___filterProjectsByCustom4$closure(), t1, H.findType("FilterProjectsByCustom4*")), t9 = B.TypedReducer$(G.project_reducer___startListMultiselect$closure(), t1, H.findType("StartProjectMultiselect*")), t10 = B.TypedReducer$(G.project_reducer___addToListMultiselect$closure(), t1, H.findType("AddToProjectMultiselect*")), t11 = B.TypedReducer$(G.project_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromProjectMultiselect*")), t12 = B.TypedReducer$(G.project_reducer___clearListMultiselect$closure(), t1, H.findType("ClearProjectMultiselect*")), t13 = B.TypedReducer$(G.project_reducer___viewProjectList$closure(), t1, type$.legacy_ViewProjectList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "projectsReducer", "$get$projectsReducer", function() { var t1 = type$.legacy_ProjectState, t2 = B.TypedReducer$(G.project_reducer___updateProject$closure(), t1, H.findType("SaveProjectSuccess*")), t3 = B.TypedReducer$(G.project_reducer___addProject$closure(), t1, H.findType("AddProjectSuccess*")), t4 = B.TypedReducer$(G.project_reducer___setLoadedProjects$closure(), t1, H.findType("LoadProjectsSuccess*")), t5 = B.TypedReducer$(G.project_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(G.project_reducer___setLoadedProject$closure(), t1, H.findType("LoadProjectSuccess*")), t7 = B.TypedReducer$(G.project_reducer___archiveProjectSuccess$closure(), t1, H.findType("ArchiveProjectSuccess*")), t8 = B.TypedReducer$(G.project_reducer___deleteProjectSuccess$closure(), t1, H.findType("DeleteProjectSuccess*")), t9 = B.TypedReducer$(G.project_reducer___restoreProjectSuccess$closure(), t1, H.findType("RestoreProjectSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownProjectList", "$get$memoizedDropdownProjectList", function() { return O.memo5(new Q.memoizedDropdownProjectList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredProjectList", "$get$memoizedFilteredProjectList", function() { return O.memo6(new Q.memoizedFilteredProjectList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedProjectStatsForClient", "$get$memoizedProjectStatsForClient", function() { return O.memo2(new Q.memoizedProjectStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedProjectStatsForUser", "$get$memoizedProjectStatsForUser", function() { return O.memo2(new Q.memoizedProjectStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$projectStateSerializer", "$get$_$projectStateSerializer", function() { return new D._$ProjectStateSerializer(); }); _lazyOld($, "_$projectUIStateSerializer", "$get$_$projectUIStateSerializer", function() { return new D._$ProjectUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer12", "$get$forceSelectedReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new L.forceSelectedReducer_closure(), t1, type$.legacy_ViewQuote), t3 = B.TypedReducer$(new L.forceSelectedReducer_closure0(), t1, type$.legacy_ViewQuoteList), t4 = B.TypedReducer$(new L.forceSelectedReducer_closure1(), t1, H.findType("FilterQuotesByState*")), t5 = B.TypedReducer$(new L.forceSelectedReducer_closure2(), t1, H.findType("FilterQuotes*")), t6 = B.TypedReducer$(new L.forceSelectedReducer_closure3(), t1, H.findType("FilterQuotesByCustom1*")), t7 = B.TypedReducer$(new L.forceSelectedReducer_closure4(), t1, H.findType("FilterQuotesByCustom2*")), t8 = B.TypedReducer$(new L.forceSelectedReducer_closure5(), t1, H.findType("FilterQuotesByCustom3*")), t9 = B.TypedReducer$(new L.forceSelectedReducer_closure6(), t1, H.findType("FilterQuotesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer6", "$get$tabIndexReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new L.tabIndexReducer_closure(), t1, H.findType("UpdateQuoteTab*")), t3 = B.TypedReducer$(new L.tabIndexReducer_closure0(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer1", "$get$historyActivityIdReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new L.historyActivityIdReducer_closure(), t1, type$.legacy_ShowPdfQuote); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemReducer0", "$get$editingItemReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new L.editingItemReducer_closure(), t1, type$.legacy_EditQuote), t3 = B.TypedReducer$(new L.editingItemReducer_closure0(), t1, H.findType("EditQuoteItem*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer12", "$get$selectedIdReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new L.selectedIdReducer_closure(), t1, H.findType("ArchiveQuotesSuccess*")), t3 = B.TypedReducer$(new L.selectedIdReducer_closure0(), t1, H.findType("DeleteQuotesSuccess*")), t4 = B.TypedReducer$(new L.selectedIdReducer_closure1(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new L.selectedIdReducer_closure2(), t1, type$.legacy_ViewQuote), t6 = B.TypedReducer$(new L.selectedIdReducer_closure3(), t1, H.findType("AddQuoteSuccess*")), t7 = B.TypedReducer$(new L.selectedIdReducer_closure4(), t1, type$.legacy_ShowEmailQuote), t8 = B.TypedReducer$(new L.selectedIdReducer_closure5(), t1, type$.legacy_ShowPdfQuote), t9 = B.TypedReducer$(new L.selectedIdReducer_closure6(), t1, type$.legacy_SelectCompany), t10 = B.TypedReducer$(new L.selectedIdReducer_closure7(), t1, type$.legacy_ClearEntityFilter), t11 = B.TypedReducer$(new L.selectedIdReducer_closure8(), t1, H.findType("SortQuotes*")), t12 = B.TypedReducer$(new L.selectedIdReducer_closure9(), t1, H.findType("FilterQuotes*")), t13 = B.TypedReducer$(new L.selectedIdReducer_closure10(), t1, H.findType("FilterQuotesByState*")), t14 = B.TypedReducer$(new L.selectedIdReducer_closure11(), t1, H.findType("FilterQuotesByStatus*")), t15 = B.TypedReducer$(new L.selectedIdReducer_closure12(), t1, H.findType("FilterQuotesByCustom1*")), t16 = B.TypedReducer$(new L.selectedIdReducer_closure13(), t1, H.findType("FilterQuotesByCustom2*")), t17 = B.TypedReducer$(new L.selectedIdReducer_closure14(), t1, H.findType("FilterQuotesByCustom3*")), t18 = B.TypedReducer$(new L.selectedIdReducer_closure15(), t1, H.findType("FilterQuotesByCustom4*")), t19 = B.TypedReducer$(new L.selectedIdReducer_closure16(), t1, type$.legacy_ClearEntitySelection), t20 = B.TypedReducer$(new L.selectedIdReducer_closure17(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer12", "$get$editingReducer", function() { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = B.TypedReducer$(L.quote_reducer___updateEditing$closure(), t1, H.findType("SaveQuoteSuccess*")), t3 = B.TypedReducer$(L.quote_reducer___updateEditing$closure(), t1, H.findType("AddQuoteSuccess*")), t4 = B.TypedReducer$(L.quote_reducer___updateEditing$closure(), t1, type$.legacy_EditQuote), t5 = B.TypedReducer$(new L.editingReducer_closure(), t1, H.findType("UpdateQuote*")), t6 = H.findType("AddQuoteItem*"), t7 = B.TypedReducer$(new L.editingReducer_closure0(), t1, t6), t8 = B.TypedReducer$(new L.editingReducer_closure1(), t1, H.findType("MoveQuoteItem*")), t9 = H.findType("DeleteQuoteItem*"), t10 = B.TypedReducer$(new L.editingReducer_closure2(), t1, t9), t11 = H.findType("UpdateQuoteItem*"), t12 = B.TypedReducer$(new L.editingReducer_closure3(), t1, t11), t13 = B.TypedReducer$(new L.editingReducer_closure4(), t1, H.findType("UpdateQuoteClient*")), t14 = B.TypedReducer$(new L.editingReducer_closure5(), t1, H.findType("RestoreQuotesSuccess*")), t15 = B.TypedReducer$(new L.editingReducer_closure6(), t1, H.findType("ArchiveQuotesSuccess*")), t16 = B.TypedReducer$(new L.editingReducer_closure7(), t1, H.findType("DeleteQuotesSuccess*")); t6 = B.TypedReducer$(L.quote_reducer___addQuoteItem$closure(), t1, t6); t17 = B.TypedReducer$(L.quote_reducer___addQuoteItems$closure(), t1, H.findType("AddQuoteItems*")); t9 = B.TypedReducer$(L.quote_reducer___removeQuoteItem$closure(), t1, t9); t11 = B.TypedReducer$(L.quote_reducer___updateQuoteItem$closure(), t1, t11); t18 = B.TypedReducer$(L.quote_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = B.TypedReducer$(new L.editingReducer_closure8(), t1, H.findType("AddQuoteContact*")); t20 = B.TypedReducer$(new L.editingReducer_closure9(), t1, H.findType("RemoveQuoteContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "quoteListReducer", "$get$quoteListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(L.quote_reducer___sortQuotes$closure(), t1, H.findType("SortQuotes*")), t3 = B.TypedReducer$(L.quote_reducer___filterQuotesByState$closure(), t1, H.findType("FilterQuotesByState*")), t4 = B.TypedReducer$(L.quote_reducer___filterQuotesByStatus$closure(), t1, H.findType("FilterQuotesByStatus*")), t5 = B.TypedReducer$(L.quote_reducer___filterQuotes$closure(), t1, H.findType("FilterQuotes*")), t6 = B.TypedReducer$(L.quote_reducer___filterQuotesByCustom1$closure(), t1, H.findType("FilterQuotesByCustom1*")), t7 = B.TypedReducer$(L.quote_reducer___filterQuotesByCustom2$closure(), t1, H.findType("FilterQuotesByCustom2*")), t8 = B.TypedReducer$(L.quote_reducer___filterQuotesByCustom3$closure(), t1, H.findType("FilterQuotesByCustom3*")), t9 = B.TypedReducer$(L.quote_reducer___filterQuotesByCustom4$closure(), t1, H.findType("FilterQuotesByCustom4*")), t10 = B.TypedReducer$(L.quote_reducer___startListMultiselect$closure(), t1, H.findType("StartQuoteMultiselect*")), t11 = B.TypedReducer$(L.quote_reducer___addToListMultiselect$closure(), t1, H.findType("AddToQuoteMultiselect*")), t12 = B.TypedReducer$(L.quote_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromQuoteMultiselect*")), t13 = B.TypedReducer$(L.quote_reducer___clearListMultiselect$closure(), t1, H.findType("ClearQuoteMultiselect*")), t14 = B.TypedReducer$(L.quote_reducer___viewQuoteList$closure(), t1, type$.legacy_ViewQuoteList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "quotesReducer", "$get$quotesReducer", function() { var t1 = type$.legacy_QuoteState, t2 = B.TypedReducer$(L.quote_reducer___updateQuote$closure(), t1, H.findType("SaveQuoteSuccess*")), t3 = B.TypedReducer$(L.quote_reducer___addQuote$closure(), t1, H.findType("AddQuoteSuccess*")), t4 = B.TypedReducer$(L.quote_reducer___setLoadedQuotes$closure(), t1, H.findType("LoadQuotesSuccess*")), t5 = B.TypedReducer$(L.quote_reducer___updateQuote$closure(), t1, H.findType("LoadQuoteSuccess*")), t6 = B.TypedReducer$(L.quote_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(L.quote_reducer___markSentQuoteSuccess$closure(), t1, H.findType("MarkSentQuoteSuccess*")), t8 = B.TypedReducer$(L.quote_reducer___archiveQuoteSuccess$closure(), t1, H.findType("ArchiveQuotesSuccess*")), t9 = B.TypedReducer$(L.quote_reducer___deleteQuoteSuccess$closure(), t1, H.findType("DeleteQuotesSuccess*")), t10 = B.TypedReducer$(L.quote_reducer___restoreQuoteSuccess$closure(), t1, H.findType("RestoreQuotesSuccess*")), t11 = B.TypedReducer$(L.quote_reducer___convertQuoteSuccess$closure(), t1, H.findType("ConvertQuoteSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredQuoteList", "$get$memoizedFilteredQuoteList", function() { return O.memo6(new Y.memoizedFilteredQuoteList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedQuoteStatsForClient", "$get$memoizedQuoteStatsForClient", function() { return O.memo2(new Y.memoizedQuoteStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedQuoteStatsForDesign", "$get$memoizedQuoteStatsForDesign", function() { return O.memo2(new Y.memoizedQuoteStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedQuoteStatsForUser", "$get$memoizedQuoteStatsForUser", function() { return O.memo2(new Y.memoizedQuoteStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$quoteStateSerializer", "$get$_$quoteStateSerializer", function() { return new G._$QuoteStateSerializer(); }); _lazyOld($, "_$quoteUIStateSerializer", "$get$_$quoteUIStateSerializer", function() { return new G._$QuoteUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer13", "$get$forceSelectedReducer19", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new E.forceSelectedReducer_closure151(), t1, type$.legacy_ViewRecurringExpense), t3 = B.TypedReducer$(new E.forceSelectedReducer_closure152(), t1, type$.legacy_ViewRecurringExpenseList), t4 = B.TypedReducer$(new E.forceSelectedReducer_closure153(), t1, H.findType("FilterRecurringExpensesByState*")), t5 = B.TypedReducer$(new E.forceSelectedReducer_closure154(), t1, H.findType("FilterRecurringExpenses*")), t6 = B.TypedReducer$(new E.forceSelectedReducer_closure155(), t1, H.findType("FilterRecurringExpensesByCustom1*")), t7 = B.TypedReducer$(new E.forceSelectedReducer_closure156(), t1, H.findType("FilterRecurringExpensesByCustom2*")), t8 = B.TypedReducer$(new E.forceSelectedReducer_closure157(), t1, H.findType("FilterRecurringExpensesByCustom3*")), t9 = B.TypedReducer$(new E.forceSelectedReducer_closure158(), t1, H.findType("FilterRecurringExpensesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer7", "$get$tabIndexReducer8", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new E.tabIndexReducer_closure17(), t1, H.findType("UpdateRecurringExpenseTab*")), t3 = B.TypedReducer$(new E.tabIndexReducer_closure18(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer13", "$get$selectedIdReducer19", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new E.selectedIdReducer_closure301(), t1, H.findType("ArchiveRecurringExpensesSuccess*")), t3 = B.TypedReducer$(new E.selectedIdReducer_closure302(), t1, H.findType("DeleteRecurringExpensesSuccess*")), t4 = B.TypedReducer$(new E.selectedIdReducer_closure303(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new E.selectedIdReducer_closure304(), t1, type$.legacy_ViewRecurringExpense), t6 = B.TypedReducer$(new E.selectedIdReducer_closure305(), t1, H.findType("AddRecurringExpenseSuccess*")), t7 = B.TypedReducer$(new E.selectedIdReducer_closure306(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new E.selectedIdReducer_closure307(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new E.selectedIdReducer_closure308(), t1, H.findType("SortRecurringExpenses*")), t10 = B.TypedReducer$(new E.selectedIdReducer_closure309(), t1, H.findType("FilterRecurringExpenses*")), t11 = B.TypedReducer$(new E.selectedIdReducer_closure310(), t1, H.findType("FilterRecurringExpensesByState*")), t12 = B.TypedReducer$(new E.selectedIdReducer_closure311(), t1, H.findType("FilterRecurringExpensesByCustom1*")), t13 = B.TypedReducer$(new E.selectedIdReducer_closure312(), t1, H.findType("FilterRecurringExpensesByCustom2*")), t14 = B.TypedReducer$(new E.selectedIdReducer_closure313(), t1, H.findType("FilterRecurringExpensesByCustom3*")), t15 = B.TypedReducer$(new E.selectedIdReducer_closure314(), t1, H.findType("FilterRecurringExpensesByCustom4*")), t16 = B.TypedReducer$(new E.selectedIdReducer_closure315(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer13", "$get$editingReducer19", function() { var t1 = type$.legacy_ExpenseEntity, t2 = B.TypedReducer$(E.recurring_expense_reducer___updateEditing$closure(), t1, H.findType("SaveRecurringExpenseSuccess*")), t3 = B.TypedReducer$(E.recurring_expense_reducer___updateEditing$closure(), t1, H.findType("AddRecurringExpenseSuccess*")), t4 = B.TypedReducer$(new E.editingReducer_closure97(), t1, H.findType("RestoreRecurringExpensesSuccess*")), t5 = B.TypedReducer$(new E.editingReducer_closure98(), t1, H.findType("ArchiveRecurringExpensesSuccess*")), t6 = B.TypedReducer$(new E.editingReducer_closure99(), t1, H.findType("DeleteRecurringExpensesSuccess*")), t7 = B.TypedReducer$(E.recurring_expense_reducer___updateEditing$closure(), t1, type$.legacy_EditRecurringExpense), t8 = B.TypedReducer$(new E.editingReducer_closure100(), t1, H.findType("UpdateRecurringExpense*")), t9 = B.TypedReducer$(E.recurring_expense_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "recurringExpenseListReducer", "$get$recurringExpenseListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(E.recurring_expense_reducer___sortRecurringExpenses$closure(), t1, H.findType("SortRecurringExpenses*")), t3 = B.TypedReducer$(E.recurring_expense_reducer___filterRecurringExpensesByState$closure(), t1, H.findType("FilterRecurringExpensesByState*")), t4 = B.TypedReducer$(E.recurring_expense_reducer___filterRecurringExpenses$closure(), t1, H.findType("FilterRecurringExpenses*")), t5 = B.TypedReducer$(E.recurring_expense_reducer___filterRecurringExpensesByCustom1$closure(), t1, H.findType("FilterRecurringExpensesByCustom1*")), t6 = B.TypedReducer$(E.recurring_expense_reducer___filterRecurringExpensesByCustom2$closure(), t1, H.findType("FilterRecurringExpensesByCustom2*")), t7 = B.TypedReducer$(E.recurring_expense_reducer___startListMultiselect$closure(), t1, H.findType("StartRecurringExpenseMultiselect*")), t8 = B.TypedReducer$(E.recurring_expense_reducer___addToListMultiselect$closure(), t1, H.findType("AddToRecurringExpenseMultiselect*")), t9 = B.TypedReducer$(E.recurring_expense_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromRecurringExpenseMultiselect*")), t10 = B.TypedReducer$(E.recurring_expense_reducer___clearListMultiselect$closure(), t1, H.findType("ClearRecurringExpenseMultiselect*")), t11 = B.TypedReducer$(E.recurring_expense_reducer___viewRecurringExpenseList$closure(), t1, type$.legacy_ViewRecurringExpenseList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "recurringExpensesReducer", "$get$recurringExpensesReducer", function() { var t1 = type$.legacy_RecurringExpenseState, t2 = B.TypedReducer$(E.recurring_expense_reducer___updateRecurringExpense$closure(), t1, H.findType("SaveRecurringExpenseSuccess*")), t3 = B.TypedReducer$(E.recurring_expense_reducer___addRecurringExpense$closure(), t1, H.findType("AddRecurringExpenseSuccess*")), t4 = B.TypedReducer$(E.recurring_expense_reducer___setLoadedRecurringExpenses$closure(), t1, H.findType("LoadRecurringExpensesSuccess*")), t5 = B.TypedReducer$(E.recurring_expense_reducer___setLoadedRecurringExpense$closure(), t1, H.findType("LoadRecurringExpenseSuccess*")), t6 = B.TypedReducer$(E.recurring_expense_reducer___startRecurringExpensesSuccess$closure(), t1, H.findType("StartRecurringExpensesSuccess*")), t7 = B.TypedReducer$(E.recurring_expense_reducer___stopRecurringExpensesSuccess$closure(), t1, H.findType("StopRecurringExpensesSuccess*")), t8 = B.TypedReducer$(E.recurring_expense_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t9 = B.TypedReducer$(E.recurring_expense_reducer___archiveRecurringExpenseSuccess$closure(), t1, H.findType("ArchiveRecurringExpensesSuccess*")), t10 = B.TypedReducer$(E.recurring_expense_reducer___deleteRecurringExpenseSuccess$closure(), t1, H.findType("DeleteRecurringExpensesSuccess*")), t11 = B.TypedReducer$(E.recurring_expense_reducer___restoreRecurringExpenseSuccess$closure(), t1, H.findType("RestoreRecurringExpensesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredRecurringExpenseList", "$get$memoizedFilteredRecurringExpenseList", function() { return O.memo9(new A.memoizedFilteredRecurringExpenseList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedRecurringExpenseStatsForClient", "$get$memoizedRecurringExpenseStatsForClient", function() { return O.memo2(new A.memoizedRecurringExpenseStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringExpenseStatsForVendor", "$get$memoizedRecurringExpenseStatsForVendor", function() { return O.memo2(new A.memoizedRecurringExpenseStatsForVendor_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringExpenseStatsForUser", "$get$memoizedRecurringExpenseStatsForUser", function() { return O.memo2(new A.memoizedRecurringExpenseStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringExpenseStatsForExpense", "$get$memoizedRecurringExpenseStatsForExpense", function() { return O.memo2(new A.memoizedRecurringExpenseStatsForExpense_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$recurringExpenseStateSerializer", "$get$_$recurringExpenseStateSerializer", function() { return new K._$RecurringExpenseStateSerializer(); }); _lazyOld($, "_$recurringExpenseUIStateSerializer", "$get$_$recurringExpenseUIStateSerializer", function() { return new K._$RecurringExpenseUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer14", "$get$forceSelectedReducer15", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new A.forceSelectedReducer_closure119(), t1, type$.legacy_ViewRecurringInvoice), t3 = B.TypedReducer$(new A.forceSelectedReducer_closure120(), t1, type$.legacy_ViewRecurringInvoiceList), t4 = B.TypedReducer$(new A.forceSelectedReducer_closure121(), t1, H.findType("FilterRecurringInvoicesByState*")), t5 = B.TypedReducer$(new A.forceSelectedReducer_closure122(), t1, H.findType("FilterRecurringInvoices*")), t6 = B.TypedReducer$(new A.forceSelectedReducer_closure123(), t1, H.findType("FilterRecurringInvoicesByCustom1*")), t7 = B.TypedReducer$(new A.forceSelectedReducer_closure124(), t1, H.findType("FilterRecurringInvoicesByCustom2*")), t8 = B.TypedReducer$(new A.forceSelectedReducer_closure125(), t1, H.findType("FilterRecurringInvoicesByCustom3*")), t9 = B.TypedReducer$(new A.forceSelectedReducer_closure126(), t1, H.findType("FilterRecurringInvoicesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer8", "$get$tabIndexReducer6", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new A.tabIndexReducer_closure13(), t1, H.findType("UpdateRecurringInvoiceTab*")), t3 = B.TypedReducer$(new A.tabIndexReducer_closure14(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "historyActivityIdReducer2", "$get$historyActivityIdReducer1", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new A.historyActivityIdReducer_closure1(), t1, type$.legacy_ShowPdfRecurringInvoice); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingItemIndexReducer0", "$get$editingItemIndexReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new A.editingItemIndexReducer_closure(), t1, type$.legacy_EditRecurringInvoice), t3 = B.TypedReducer$(new A.editingItemIndexReducer_closure0(), t1, H.findType("EditRecurringInvoiceItem*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer14", "$get$selectedIdReducer15", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new A.selectedIdReducer_closure237(), t1, H.findType("ArchiveRecurringInvoicesSuccess*")), t3 = B.TypedReducer$(new A.selectedIdReducer_closure238(), t1, H.findType("DeleteRecurringInvoicesSuccess*")), t4 = B.TypedReducer$(new A.selectedIdReducer_closure239(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new A.selectedIdReducer_closure240(), t1, type$.legacy_ViewRecurringInvoice), t6 = B.TypedReducer$(new A.selectedIdReducer_closure241(), t1, H.findType("AddRecurringInvoiceSuccess*")), t7 = B.TypedReducer$(new A.selectedIdReducer_closure242(), t1, H.findType("ShowEmailRecurringInvoice*")), t8 = B.TypedReducer$(new A.selectedIdReducer_closure243(), t1, type$.legacy_ShowPdfRecurringInvoice), t9 = B.TypedReducer$(new A.selectedIdReducer_closure244(), t1, type$.legacy_SelectCompany), t10 = B.TypedReducer$(new A.selectedIdReducer_closure245(), t1, type$.legacy_ClearEntityFilter), t11 = B.TypedReducer$(new A.selectedIdReducer_closure246(), t1, H.findType("SortRecurringInvoices*")), t12 = B.TypedReducer$(new A.selectedIdReducer_closure247(), t1, H.findType("FilterRecurringInvoices*")), t13 = B.TypedReducer$(new A.selectedIdReducer_closure248(), t1, H.findType("FilterRecurringInvoicesByState*")), t14 = B.TypedReducer$(new A.selectedIdReducer_closure249(), t1, H.findType("FilterRecurringInvoicesByStatus*")), t15 = B.TypedReducer$(new A.selectedIdReducer_closure250(), t1, H.findType("FilterRecurringInvoicesByCustom1*")), t16 = B.TypedReducer$(new A.selectedIdReducer_closure251(), t1, H.findType("FilterRecurringInvoicesByCustom2*")), t17 = B.TypedReducer$(new A.selectedIdReducer_closure252(), t1, H.findType("FilterRecurringInvoicesByCustom3*")), t18 = B.TypedReducer$(new A.selectedIdReducer_closure253(), t1, H.findType("FilterRecurringInvoicesByCustom4*")), t19 = B.TypedReducer$(new A.selectedIdReducer_closure254(), t1, type$.legacy_ClearEntitySelection), t20 = B.TypedReducer$(new A.selectedIdReducer_closure255(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer14", "$get$editingReducer15", function() { var t17, t18, t19, t20, t1 = type$.legacy_InvoiceEntity, t2 = B.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, H.findType("SaveRecurringInvoiceSuccess*")), t3 = B.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, H.findType("AddRecurringInvoiceSuccess*")), t4 = B.TypedReducer$(A.recurring_invoice_reducer___updateEditing$closure(), t1, type$.legacy_EditRecurringInvoice), t5 = B.TypedReducer$(new A.editingReducer_closure74(), t1, H.findType("UpdateRecurringInvoice*")), t6 = H.findType("AddRecurringInvoiceItem*"), t7 = B.TypedReducer$(new A.editingReducer_closure75(), t1, t6), t8 = B.TypedReducer$(new A.editingReducer_closure76(), t1, H.findType("MoveRecurringInvoiceItem*")), t9 = H.findType("DeleteRecurringInvoiceItem*"), t10 = B.TypedReducer$(new A.editingReducer_closure77(), t1, t9), t11 = H.findType("UpdateRecurringInvoiceItem*"), t12 = B.TypedReducer$(new A.editingReducer_closure78(), t1, t11), t13 = B.TypedReducer$(new A.editingReducer_closure79(), t1, H.findType("UpdateRecurringInvoiceClient*")), t14 = B.TypedReducer$(new A.editingReducer_closure80(), t1, H.findType("RestoreRecurringInvoicesSuccess*")), t15 = B.TypedReducer$(new A.editingReducer_closure81(), t1, H.findType("ArchiveRecurringInvoicesSuccess*")), t16 = B.TypedReducer$(new A.editingReducer_closure82(), t1, H.findType("DeleteRecurringInvoicesSuccess*")); t6 = B.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoiceItem$closure(), t1, t6); t17 = B.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoiceItems$closure(), t1, H.findType("AddRecurringInvoiceItems*")); t9 = B.TypedReducer$(A.recurring_invoice_reducer___removeRecurringInvoiceItem$closure(), t1, t9); t11 = B.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoiceItem$closure(), t1, t11); t18 = B.TypedReducer$(A.recurring_invoice_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); t19 = B.TypedReducer$(new A.editingReducer_closure83(), t1, H.findType("AddRecurringInvoiceContact*")); t20 = B.TypedReducer$(new A.editingReducer_closure84(), t1, H.findType("RemoveRecurringInvoiceContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t7.get$$call(), t8.get$$call(), t10.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t6.get$$call(), t17.get$$call(), t9.get$$call(), t11.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call()], type$.JSArray_of_legacy_legacy_InvoiceEntity_Function_2_legacy_InvoiceEntity_and_dynamic), t1); }); _lazyOld($, "recurringInvoiceListReducer", "$get$recurringInvoiceListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(A.recurring_invoice_reducer___sortRecurringInvoices$closure(), t1, H.findType("SortRecurringInvoices*")), t3 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByState$closure(), t1, H.findType("FilterRecurringInvoicesByState*")), t4 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure(), t1, H.findType("FilterRecurringInvoicesByStatus*")), t5 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoices$closure(), t1, H.findType("FilterRecurringInvoices*")), t6 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure(), t1, H.findType("FilterRecurringInvoicesByCustom1*")), t7 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure(), t1, H.findType("FilterRecurringInvoicesByCustom2*")), t8 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure(), t1, H.findType("FilterRecurringInvoicesByCustom3*")), t9 = B.TypedReducer$(A.recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure(), t1, H.findType("FilterRecurringInvoicesByCustom4*")), t10 = B.TypedReducer$(A.recurring_invoice_reducer___startListMultiselect$closure(), t1, H.findType("StartRecurringInvoiceMultiselect*")), t11 = B.TypedReducer$(A.recurring_invoice_reducer___addToListMultiselect$closure(), t1, H.findType("AddToRecurringInvoiceMultiselect*")), t12 = B.TypedReducer$(A.recurring_invoice_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromRecurringInvoiceMultiselect*")), t13 = B.TypedReducer$(A.recurring_invoice_reducer___clearListMultiselect$closure(), t1, H.findType("ClearRecurringInvoiceMultiselect*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "recurringInvoicesReducer", "$get$recurringInvoicesReducer", function() { var t1 = type$.legacy_RecurringInvoiceState, t2 = B.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoice$closure(), t1, H.findType("SaveRecurringInvoiceSuccess*")), t3 = B.TypedReducer$(A.recurring_invoice_reducer___addRecurringInvoice$closure(), t1, H.findType("AddRecurringInvoiceSuccess*")), t4 = B.TypedReducer$(A.recurring_invoice_reducer___setLoadedRecurringInvoices$closure(), t1, H.findType("LoadRecurringInvoicesSuccess*")), t5 = B.TypedReducer$(A.recurring_invoice_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(A.recurring_invoice_reducer___updateRecurringInvoice$closure(), t1, H.findType("LoadRecurringInvoiceSuccess*")), t7 = B.TypedReducer$(A.recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure(), t1, H.findType("EmailRecurringInvoiceSuccess*")), t8 = B.TypedReducer$(A.recurring_invoice_reducer___startRecurringInvoicesSuccess$closure(), t1, H.findType("StartRecurringInvoicesSuccess*")), t9 = B.TypedReducer$(A.recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure(), t1, H.findType("StopRecurringInvoicesSuccess*")), t10 = B.TypedReducer$(A.recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure(), t1, H.findType("ArchiveRecurringInvoicesSuccess*")), t11 = B.TypedReducer$(A.recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure(), t1, H.findType("DeleteRecurringInvoicesSuccess*")), t12 = B.TypedReducer$(A.recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure(), t1, H.findType("RestoreRecurringInvoicesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredRecurringInvoiceList", "$get$memoizedFilteredRecurringInvoiceList", function() { return O.memo6(new L.memoizedFilteredRecurringInvoiceList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedRecurringInvoiceStatsForClient", "$get$memoizedRecurringInvoiceStatsForClient", function() { return O.memo2(new L.memoizedRecurringInvoiceStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringInvoiceStatsForUser", "$get$memoizedRecurringInvoiceStatsForUser", function() { return O.memo2(new L.memoizedRecurringInvoiceStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringInvoiceStatsForInvoice", "$get$memoizedRecurringInvoiceStatsForInvoice", function() { return O.memo2(new L.memoizedRecurringInvoiceStatsForInvoice_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringInvoiceStatsForDesign", "$get$memoizedRecurringInvoiceStatsForDesign", function() { return O.memo2(new L.memoizedRecurringInvoiceStatsForDesign_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedRecurringInvoiceStatsForSubscription", "$get$memoizedRecurringInvoiceStatsForSubscription", function() { return O.memo2(new L.memoizedRecurringInvoiceStatsForSubscription_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$recurringInvoiceStateSerializer", "$get$_$recurringInvoiceStateSerializer", function() { return new Q._$RecurringInvoiceStateSerializer(); }); _lazyOld($, "_$recurringInvoiceUIStateSerializer", "$get$_$recurringInvoiceUIStateSerializer", function() { return new Q._$RecurringInvoiceUIStateSerializer(); }); _lazyOld($, "_$reportsUIStateSerializer", "$get$_$reportsUIStateSerializer", function() { return new G._$ReportsUIStateSerializer(); }); _lazyOld($, "settingsUIReducer", "$get$settingsUIReducer", function() { var t1 = type$.legacy_SettingsUIState, t2 = B.TypedReducer$(new Q.settingsUIReducer_closure(), t1, type$.legacy_ViewSettings), t3 = B.TypedReducer$(new Q.settingsUIReducer_closure0(), t1, H.findType("UpdateCompany*")), t4 = B.TypedReducer$(new Q.settingsUIReducer_closure1(), t1, H.findType("UpdateSettings*")), t5 = B.TypedReducer$(new Q.settingsUIReducer_closure2(), t1, H.findType("UpdateUserSettings*")), t6 = B.TypedReducer$(new Q.settingsUIReducer_closure3(), t1, H.findType("ResetSettings*")), t7 = B.TypedReducer$(new Q.settingsUIReducer_closure4(), t1, H.findType("SaveCompanySuccess*")), t8 = B.TypedReducer$(new Q.settingsUIReducer_closure5(), t1, H.findType("SaveGroupSuccess*")), t9 = B.TypedReducer$(new Q.settingsUIReducer_closure6(), t1, H.findType("SaveClientSuccess*")), t10 = B.TypedReducer$(new Q.settingsUIReducer_closure7(), t1, H.findType("SaveAuthUserSuccess*")), t11 = B.TypedReducer$(new Q.settingsUIReducer_closure8(), t1, H.findType("FilterSettings*")), t12 = B.TypedReducer$(new Q.settingsUIReducer_closure9(), t1, H.findType("ClearSettingsFilter*")), t13 = B.TypedReducer$(new Q.settingsUIReducer_closure10(), t1, H.findType("UpdateSettingsTab*")), t14 = B.TypedReducer$(new Q.settingsUIReducer_closure11(), t1, H.findType("UpdateSettingsTemplate*")), t15 = B.TypedReducer$(new Q.settingsUIReducer_closure12(), t1, H.findType("UpdatedSetting*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "staticReducer", "$get$staticReducer", function() { var t1 = type$.legacy_StaticState, t2 = B.TypedReducer$(Q.static_reducer__staticLoadedReducer$closure(), t1, H.findType("LoadStaticSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedCountryList", "$get$memoizedCountryList", function() { return O.memo1(new V.memoizedCountryList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedGroupList", "$get$memoizedGroupList", function() { return O.memo1(new V.memoizedGroupList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedLanguageList", "$get$memoizedLanguageList", function() { return O.memo1(new V.memoizedLanguageList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedCurrencyList", "$get$memoizedCurrencyList", function() { return O.memo1(new V.memoizedCurrencyList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedTimezoneList", "$get$memoizedTimezoneList", function() { return O.memo1(new V.memoizedTimezoneList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedDateFormatList", "$get$memoizedDateFormatList", function() { return O.memo1(new V.memoizedDateFormatList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedIndustryList", "$get$memoizedIndustryList", function() { return O.memo1(new V.memoizedIndustryList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedSizeList", "$get$memoizedSizeList", function() { return O.memo1(new V.memoizedSizeList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedGatewayList", "$get$memoizedGatewayList", function() { return O.memo1(new V.memoizedGatewayList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedPaymentTypeList", "$get$memoizedPaymentTypeList", function() { return O.memo1(new V.memoizedPaymentTypeList_closure(), H.findType("BuiltMap*"), type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFontMap", "$get$memoizedFontMap", function() { return O.memo1(new V.memoizedFontMap_closure(), type$.legacy_List_dynamic, H.findType("BuiltMap*")); }); _lazyOld($, "_$staticStateSerializer", "$get$_$staticStateSerializer", function() { return new B._$StaticStateSerializer(); }); _lazyOld($, "forceSelectedReducer15", "$get$forceSelectedReducer18", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new X.forceSelectedReducer_closure143(), t1, type$.legacy_ViewSubscription), t3 = B.TypedReducer$(new X.forceSelectedReducer_closure144(), t1, type$.legacy_ViewSubscriptionList), t4 = B.TypedReducer$(new X.forceSelectedReducer_closure145(), t1, H.findType("FilterSubscriptionsByState*")), t5 = B.TypedReducer$(new X.forceSelectedReducer_closure146(), t1, H.findType("FilterSubscriptions*")), t6 = B.TypedReducer$(new X.forceSelectedReducer_closure147(), t1, H.findType("FilterSubscriptionsByCustom1*")), t7 = B.TypedReducer$(new X.forceSelectedReducer_closure148(), t1, H.findType("FilterSubscriptionsByCustom2*")), t8 = B.TypedReducer$(new X.forceSelectedReducer_closure149(), t1, H.findType("FilterSubscriptionsByCustom3*")), t9 = B.TypedReducer$(new X.forceSelectedReducer_closure150(), t1, H.findType("FilterSubscriptionsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer9", "$get$tabIndexReducer7", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new X.tabIndexReducer_closure15(), t1, H.findType("UpdateSubscriptionTab*")), t3 = B.TypedReducer$(new X.tabIndexReducer_closure16(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer15", "$get$selectedIdReducer18", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new X.selectedIdReducer_closure286(), t1, H.findType("ArchiveSubscriptionsSuccess*")), t3 = B.TypedReducer$(new X.selectedIdReducer_closure287(), t1, H.findType("DeleteSubscriptionsSuccess*")), t4 = B.TypedReducer$(new X.selectedIdReducer_closure288(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new X.selectedIdReducer_closure289(), t1, type$.legacy_ViewSubscription), t6 = B.TypedReducer$(new X.selectedIdReducer_closure290(), t1, H.findType("AddSubscriptionSuccess*")), t7 = B.TypedReducer$(new X.selectedIdReducer_closure291(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new X.selectedIdReducer_closure292(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new X.selectedIdReducer_closure293(), t1, H.findType("SortSubscriptions*")), t10 = B.TypedReducer$(new X.selectedIdReducer_closure294(), t1, H.findType("FilterSubscriptions*")), t11 = B.TypedReducer$(new X.selectedIdReducer_closure295(), t1, H.findType("FilterSubscriptionsByState*")), t12 = B.TypedReducer$(new X.selectedIdReducer_closure296(), t1, H.findType("FilterSubscriptionsByCustom1*")), t13 = B.TypedReducer$(new X.selectedIdReducer_closure297(), t1, H.findType("FilterSubscriptionsByCustom2*")), t14 = B.TypedReducer$(new X.selectedIdReducer_closure298(), t1, H.findType("FilterSubscriptionsByCustom3*")), t15 = B.TypedReducer$(new X.selectedIdReducer_closure299(), t1, H.findType("FilterSubscriptionsByCustom4*")), t16 = B.TypedReducer$(new X.selectedIdReducer_closure300(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer15", "$get$editingReducer18", function() { var t1 = type$.legacy_SubscriptionEntity, t2 = B.TypedReducer$(X.subscription_reducer___updateEditing$closure(), t1, H.findType("SaveSubscriptionSuccess*")), t3 = B.TypedReducer$(X.subscription_reducer___updateEditing$closure(), t1, H.findType("AddSubscriptionSuccess*")), t4 = B.TypedReducer$(new X.editingReducer_closure93(), t1, H.findType("RestoreSubscriptionsSuccess*")), t5 = B.TypedReducer$(new X.editingReducer_closure94(), t1, H.findType("ArchiveSubscriptionsSuccess*")), t6 = B.TypedReducer$(new X.editingReducer_closure95(), t1, H.findType("DeleteSubscriptionsSuccess*")), t7 = B.TypedReducer$(X.subscription_reducer___updateEditing$closure(), t1, type$.legacy_EditSubscription), t8 = B.TypedReducer$(new X.editingReducer_closure96(), t1, H.findType("UpdateSubscription*")), t9 = B.TypedReducer$(X.subscription_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "subscriptionListReducer", "$get$subscriptionListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(X.subscription_reducer___sortSubscriptions$closure(), t1, H.findType("SortSubscriptions*")), t3 = B.TypedReducer$(X.subscription_reducer___filterSubscriptionsByState$closure(), t1, H.findType("FilterSubscriptionsByState*")), t4 = B.TypedReducer$(X.subscription_reducer___filterSubscriptions$closure(), t1, H.findType("FilterSubscriptions*")), t5 = B.TypedReducer$(X.subscription_reducer___filterSubscriptionsByCustom1$closure(), t1, H.findType("FilterSubscriptionsByCustom1*")), t6 = B.TypedReducer$(X.subscription_reducer___filterSubscriptionsByCustom2$closure(), t1, H.findType("FilterSubscriptionsByCustom2*")), t7 = B.TypedReducer$(X.subscription_reducer___startListMultiselect$closure(), t1, H.findType("StartSubscriptionMultiselect*")), t8 = B.TypedReducer$(X.subscription_reducer___addToListMultiselect$closure(), t1, H.findType("AddToSubscriptionMultiselect*")), t9 = B.TypedReducer$(X.subscription_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromSubscriptionMultiselect*")), t10 = B.TypedReducer$(X.subscription_reducer___clearListMultiselect$closure(), t1, H.findType("ClearSubscriptionMultiselect*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "subscriptionsReducer", "$get$subscriptionsReducer", function() { var t1 = type$.legacy_SubscriptionState, t2 = B.TypedReducer$(X.subscription_reducer___updateSubscription$closure(), t1, H.findType("SaveSubscriptionSuccess*")), t3 = B.TypedReducer$(X.subscription_reducer___addSubscription$closure(), t1, H.findType("AddSubscriptionSuccess*")), t4 = B.TypedReducer$(X.subscription_reducer___setLoadedSubscriptions$closure(), t1, H.findType("LoadSubscriptionsSuccess*")), t5 = B.TypedReducer$(X.subscription_reducer___setLoadedSubscription$closure(), t1, H.findType("LoadSubscriptionSuccess*")), t6 = B.TypedReducer$(X.subscription_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(X.subscription_reducer___archiveSubscriptionSuccess$closure(), t1, H.findType("ArchiveSubscriptionsSuccess*")), t8 = B.TypedReducer$(X.subscription_reducer___deleteSubscriptionSuccess$closure(), t1, H.findType("DeleteSubscriptionsSuccess*")), t9 = B.TypedReducer$(X.subscription_reducer___restoreSubscriptionSuccess$closure(), t1, H.findType("RestoreSubscriptionsSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredSubscriptionList", "$get$memoizedFilteredSubscriptionList", function() { return O.memo4(new F.memoizedFilteredSubscriptionList_closure(), type$.legacy_SelectionState, H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$subscriptionStateSerializer", "$get$_$subscriptionStateSerializer", function() { return new M._$SubscriptionStateSerializer(); }); _lazyOld($, "_$subscriptionUIStateSerializer", "$get$_$subscriptionUIStateSerializer", function() { return new M._$SubscriptionUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer16", "$get$forceSelectedReducer2", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new N.forceSelectedReducer_closure23(), t1, type$.legacy_ViewTask), t3 = B.TypedReducer$(new N.forceSelectedReducer_closure24(), t1, type$.legacy_ViewTaskList), t4 = B.TypedReducer$(new N.forceSelectedReducer_closure25(), t1, H.findType("FilterTasksByState*")), t5 = B.TypedReducer$(new N.forceSelectedReducer_closure26(), t1, H.findType("FilterTasks*")), t6 = B.TypedReducer$(new N.forceSelectedReducer_closure27(), t1, H.findType("FilterTasksByCustom1*")), t7 = B.TypedReducer$(new N.forceSelectedReducer_closure28(), t1, H.findType("FilterTasksByCustom2*")), t8 = B.TypedReducer$(new N.forceSelectedReducer_closure29(), t1, H.findType("FilterTasksByCustom3*")), t9 = B.TypedReducer$(new N.forceSelectedReducer_closure30(), t1, H.findType("FilterTasksByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer10", "$get$tabIndexReducer2", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new N.tabIndexReducer_closure5(), t1, H.findType("UpdateTaskTab*")), t3 = B.TypedReducer$(new N.tabIndexReducer_closure6(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "editingTimeReducer", "$get$editingTimeReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new N.editingTimeReducer_closure(), t1, type$.legacy_EditTask), t3 = B.TypedReducer$(new N.editingTimeReducer_closure0(), t1, H.findType("EditTaskTime*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer16", "$get$selectedIdReducer2", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new N.selectedIdReducer_closure49(), t1, H.findType("ArchiveTaskSuccess*")), t3 = B.TypedReducer$(new N.selectedIdReducer_closure50(), t1, H.findType("DeleteTaskSuccess*")), t4 = B.TypedReducer$(new N.selectedIdReducer_closure51(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new N.selectedIdReducer_closure52(), t1, type$.legacy_ViewTask), t6 = B.TypedReducer$(new N.selectedIdReducer_closure53(), t1, H.findType("AddTaskSuccess*")), t7 = B.TypedReducer$(new N.selectedIdReducer_closure54(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new N.selectedIdReducer_closure55(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new N.selectedIdReducer_closure56(), t1, H.findType("SortTasks*")), t10 = B.TypedReducer$(new N.selectedIdReducer_closure57(), t1, H.findType("FilterTasks*")), t11 = B.TypedReducer$(new N.selectedIdReducer_closure58(), t1, H.findType("FilterTasksByState*")), t12 = B.TypedReducer$(new N.selectedIdReducer_closure59(), t1, H.findType("FilterTasksByStatus*")), t13 = B.TypedReducer$(new N.selectedIdReducer_closure60(), t1, H.findType("FilterTasksByCustom1*")), t14 = B.TypedReducer$(new N.selectedIdReducer_closure61(), t1, H.findType("FilterTasksByCustom2*")), t15 = B.TypedReducer$(new N.selectedIdReducer_closure62(), t1, H.findType("FilterTasksByCustom3*")), t16 = B.TypedReducer$(new N.selectedIdReducer_closure63(), t1, H.findType("FilterTasksByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer16", "$get$editingReducer2", function() { var t1 = type$.legacy_TaskEntity, t2 = B.TypedReducer$(N.task_reducer___updateEditing$closure(), t1, H.findType("SaveTaskSuccess*")), t3 = B.TypedReducer$(N.task_reducer___updateEditing$closure(), t1, H.findType("AddTaskSuccess*")), t4 = B.TypedReducer$(new N.editingReducer_closure18(), t1, H.findType("RestoreTaskSuccess*")), t5 = B.TypedReducer$(new N.editingReducer_closure19(), t1, H.findType("ArchiveTaskSuccess*")), t6 = B.TypedReducer$(new N.editingReducer_closure20(), t1, H.findType("DeleteTaskSuccess*")), t7 = B.TypedReducer$(N.task_reducer___updateEditing$closure(), t1, type$.legacy_EditTask), t8 = B.TypedReducer$(new N.editingReducer_closure21(), t1, H.findType("UpdateTask*")), t9 = B.TypedReducer$(N.task_reducer___addTaskTime$closure(), t1, H.findType("AddTaskTime*")), t10 = B.TypedReducer$(N.task_reducer___removeTaskTime$closure(), t1, H.findType("DeleteTaskTime*")), t11 = B.TypedReducer$(N.task_reducer___updateTaskTime$closure(), t1, H.findType("UpdateTaskTime*")), t12 = B.TypedReducer$(N.task_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "taskListReducer", "$get$taskListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(N.task_reducer___sortTasks$closure(), t1, H.findType("SortTasks*")), t3 = B.TypedReducer$(N.task_reducer___filterTasksByState$closure(), t1, H.findType("FilterTasksByState*")), t4 = B.TypedReducer$(N.task_reducer___filterTasksByStatus$closure(), t1, H.findType("FilterTasksByStatus*")), t5 = B.TypedReducer$(N.task_reducer___filterTasks$closure(), t1, H.findType("FilterTasks*")), t6 = B.TypedReducer$(N.task_reducer___filterTasksByCustom1$closure(), t1, H.findType("FilterTasksByCustom1*")), t7 = B.TypedReducer$(N.task_reducer___filterTasksByCustom2$closure(), t1, H.findType("FilterTasksByCustom2*")), t8 = B.TypedReducer$(N.task_reducer___startListMultiselect$closure(), t1, H.findType("StartTaskMultiselect*")), t9 = B.TypedReducer$(N.task_reducer___addToListMultiselect$closure(), t1, H.findType("AddToTaskMultiselect*")), t10 = B.TypedReducer$(N.task_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromTaskMultiselect*")), t11 = B.TypedReducer$(N.task_reducer___clearListMultiselect$closure(), t1, H.findType("ClearTaskMultiselect*")), t12 = B.TypedReducer$(N.task_reducer___viewTaskList$closure(), t1, type$.legacy_ViewTaskList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "tasksReducer", "$get$tasksReducer", function() { var t1 = type$.legacy_TaskState, t2 = B.TypedReducer$(N.task_reducer___updateTask$closure(), t1, H.findType("SaveTaskSuccess*")), t3 = B.TypedReducer$(N.task_reducer___addTask$closure(), t1, H.findType("AddTaskSuccess*")), t4 = B.TypedReducer$(N.task_reducer___setLoadedTasks$closure(), t1, H.findType("LoadTasksSuccess*")), t5 = B.TypedReducer$(N.task_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t6 = B.TypedReducer$(N.task_reducer___setLoadedTask$closure(), t1, H.findType("LoadTaskSuccess*")), t7 = B.TypedReducer$(N.task_reducer___archiveTaskSuccess$closure(), t1, H.findType("ArchiveTaskSuccess*")), t8 = B.TypedReducer$(N.task_reducer___deleteTaskSuccess$closure(), t1, H.findType("DeleteTaskSuccess*")), t9 = B.TypedReducer$(N.task_reducer___restoreTaskSuccess$closure(), t1, H.findType("RestoreTaskSuccess*")), t10 = B.TypedReducer$(N.task_reducer___sortTasksSuccess$closure(), t1, H.findType("SortTasksSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedTaskList", "$get$memoizedTaskList", function() { return O.memo5(new U.memoizedTaskList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedKanbanTaskList", "$get$memoizedKanbanTaskList", function() { return O.memo9(new U.memoizedKanbanTaskList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredTaskList", "$get$memoizedFilteredTaskList", function() { return O.memo9(new U.memoizedFilteredTaskList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedTaskStatsForClient", "$get$memoizedTaskStatsForClient", function() { return O.memo2(new U.memoizedTaskStatsForClient_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedTaskStatsForProject", "$get$memoizedTaskStatsForProject", function() { return O.memo2(new U.memoizedTaskStatsForProject_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedTaskStatsForUser", "$get$memoizedTaskStatsForUser", function() { return O.memo2(new U.memoizedTaskStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$taskStateSerializer", "$get$_$taskStateSerializer", function() { return new M._$TaskStateSerializer(); }); _lazyOld($, "_$taskUIStateSerializer", "$get$_$taskUIStateSerializer", function() { return new M._$TaskUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer17", "$get$forceSelectedReducer17", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new A.forceSelectedReducer_closure135(), t1, type$.legacy_ViewTaskStatus), t3 = B.TypedReducer$(new A.forceSelectedReducer_closure136(), t1, type$.legacy_ViewTaskStatusList), t4 = B.TypedReducer$(new A.forceSelectedReducer_closure137(), t1, H.findType("FilterTaskStatusesByState*")), t5 = B.TypedReducer$(new A.forceSelectedReducer_closure138(), t1, H.findType("FilterTaskStatuses*")), t6 = B.TypedReducer$(new A.forceSelectedReducer_closure139(), t1, H.findType("FilterTaskStatusesByCustom1*")), t7 = B.TypedReducer$(new A.forceSelectedReducer_closure140(), t1, H.findType("FilterTaskStatusesByCustom2*")), t8 = B.TypedReducer$(new A.forceSelectedReducer_closure141(), t1, H.findType("FilterTaskStatusesByCustom3*")), t9 = B.TypedReducer$(new A.forceSelectedReducer_closure142(), t1, H.findType("FilterTaskStatusesByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer17", "$get$selectedIdReducer17", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new A.selectedIdReducer_closure271(), t1, H.findType("ArchiveTaskStatusesSuccess*")), t3 = B.TypedReducer$(new A.selectedIdReducer_closure272(), t1, H.findType("DeleteTaskStatusesSuccess*")), t4 = B.TypedReducer$(new A.selectedIdReducer_closure273(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new A.selectedIdReducer_closure274(), t1, type$.legacy_ViewTaskStatus), t6 = B.TypedReducer$(new A.selectedIdReducer_closure275(), t1, H.findType("AddTaskStatusSuccess*")), t7 = B.TypedReducer$(new A.selectedIdReducer_closure276(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new A.selectedIdReducer_closure277(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new A.selectedIdReducer_closure278(), t1, H.findType("SortTaskStatuses*")), t10 = B.TypedReducer$(new A.selectedIdReducer_closure279(), t1, H.findType("FilterTaskStatuses*")), t11 = B.TypedReducer$(new A.selectedIdReducer_closure280(), t1, H.findType("FilterTaskStatusesByState*")), t12 = B.TypedReducer$(new A.selectedIdReducer_closure281(), t1, H.findType("FilterTaskStatusesByCustom1*")), t13 = B.TypedReducer$(new A.selectedIdReducer_closure282(), t1, H.findType("FilterTaskStatusesByCustom2*")), t14 = B.TypedReducer$(new A.selectedIdReducer_closure283(), t1, H.findType("FilterTaskStatusesByCustom3*")), t15 = B.TypedReducer$(new A.selectedIdReducer_closure284(), t1, H.findType("FilterTaskStatusesByCustom4*")), t16 = B.TypedReducer$(new A.selectedIdReducer_closure285(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer17", "$get$editingReducer17", function() { var t1 = type$.legacy_TaskStatusEntity, t2 = B.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, H.findType("SaveTaskStatusSuccess*")), t3 = B.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, H.findType("AddTaskStatusSuccess*")), t4 = B.TypedReducer$(new A.editingReducer_closure89(), t1, H.findType("RestoreTaskStatusesSuccess*")), t5 = B.TypedReducer$(new A.editingReducer_closure90(), t1, H.findType("ArchiveTaskStatusesSuccess*")), t6 = B.TypedReducer$(new A.editingReducer_closure91(), t1, H.findType("DeleteTaskStatusesSuccess*")), t7 = B.TypedReducer$(A.task_status_reducer___updateEditing$closure(), t1, type$.legacy_EditTaskStatus), t8 = B.TypedReducer$(new A.editingReducer_closure92(), t1, H.findType("UpdateTaskStatus*")), t9 = B.TypedReducer$(A.task_status_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "taskStatusListReducer", "$get$taskStatusListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(A.task_status_reducer___sortTaskStatuses$closure(), t1, H.findType("SortTaskStatuses*")), t3 = B.TypedReducer$(A.task_status_reducer___filterTaskStatusesByState$closure(), t1, H.findType("FilterTaskStatusesByState*")), t4 = B.TypedReducer$(A.task_status_reducer___filterTaskStatuses$closure(), t1, H.findType("FilterTaskStatuses*")), t5 = B.TypedReducer$(A.task_status_reducer___filterTaskStatusesByCustom1$closure(), t1, H.findType("FilterTaskStatusesByCustom1*")), t6 = B.TypedReducer$(A.task_status_reducer___filterTaskStatusesByCustom2$closure(), t1, H.findType("FilterTaskStatusesByCustom2*")), t7 = B.TypedReducer$(A.task_status_reducer___startListMultiselect$closure(), t1, H.findType("StartTaskStatusMultiselect*")), t8 = B.TypedReducer$(A.task_status_reducer___addToListMultiselect$closure(), t1, H.findType("AddToTaskStatusMultiselect*")), t9 = B.TypedReducer$(A.task_status_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromTaskStatusMultiselect*")), t10 = B.TypedReducer$(A.task_status_reducer___clearListMultiselect$closure(), t1, H.findType("ClearTaskStatusMultiselect*")), t11 = B.TypedReducer$(A.task_status_reducer___viewTaskStatusList$closure(), t1, type$.legacy_ViewTaskStatusList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "taskStatusesReducer", "$get$taskStatusesReducer", function() { var t1 = type$.legacy_TaskStatusState, t2 = B.TypedReducer$(A.task_status_reducer___updateTaskStatus$closure(), t1, H.findType("SaveTaskStatusSuccess*")), t3 = B.TypedReducer$(A.task_status_reducer___addTaskStatus$closure(), t1, H.findType("AddTaskStatusSuccess*")), t4 = B.TypedReducer$(A.task_status_reducer___setLoadedTaskStatuses$closure(), t1, H.findType("LoadTaskStatusesSuccess*")), t5 = B.TypedReducer$(A.task_status_reducer___setLoadedTaskStatus$closure(), t1, H.findType("LoadTaskStatusSuccess*")), t6 = B.TypedReducer$(A.task_status_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(A.task_status_reducer___archiveTaskStatusSuccess$closure(), t1, H.findType("ArchiveTaskStatusesSuccess*")), t8 = B.TypedReducer$(A.task_status_reducer___deleteTaskStatusSuccess$closure(), t1, H.findType("DeleteTaskStatusesSuccess*")), t9 = B.TypedReducer$(A.task_status_reducer___restoreTaskStatusSuccess$closure(), t1, H.findType("RestoreTaskStatusesSuccess*")), t10 = B.TypedReducer$(A.task_status_reducer___sortTaskStatusSuccess$closure(), t1, H.findType("SortTasksSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownTaskStatusList", "$get$memoizedDropdownTaskStatusList", function() { return O.memo4(new U.memoizedDropdownTaskStatusList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_StaticState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredTaskStatusList", "$get$memoizedFilteredTaskStatusList", function() { return O.memo4(new U.memoizedFilteredTaskStatusList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedCalculateTaskStatusAmount", "$get$memoizedCalculateTaskStatusAmount", function() { return O.memo2(new U.memoizedCalculateTaskStatusAmount_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_int); }); _lazyOld($, "memoizedTaskStatsForTaskStatus", "$get$memoizedTaskStatsForTaskStatus", function() { return O.memo2(new U.memoizedTaskStatsForTaskStatus_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_EntityStats); }); _lazyOld($, "_$taskStatusStateSerializer", "$get$_$taskStatusStateSerializer", function() { return new L._$TaskStatusStateSerializer(); }); _lazyOld($, "_$taskStatusUIStateSerializer", "$get$_$taskStatusUIStateSerializer", function() { return new L._$TaskStatusUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer18", "$get$forceSelectedReducer8", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Z.forceSelectedReducer_closure67(), t1, type$.legacy_ViewTaxRate), t3 = B.TypedReducer$(new Z.forceSelectedReducer_closure68(), t1, type$.legacy_ViewTaxRateList), t4 = B.TypedReducer$(new Z.forceSelectedReducer_closure69(), t1, H.findType("FilterTaxRatesByState*")), t5 = B.TypedReducer$(new Z.forceSelectedReducer_closure70(), t1, H.findType("FilterTaxRates*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer18", "$get$selectedIdReducer8", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new Z.selectedIdReducer_closure134(), t1, H.findType("ArchiveTaxRatesSuccess*")), t3 = B.TypedReducer$(new Z.selectedIdReducer_closure135(), t1, H.findType("DeleteTaxRatesSuccess*")), t4 = B.TypedReducer$(new Z.selectedIdReducer_closure136(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new Z.selectedIdReducer_closure137(), t1, type$.legacy_ViewTaxRate), t6 = B.TypedReducer$(new Z.selectedIdReducer_closure138(), t1, H.findType("AddTaxRateSuccess*")), t7 = B.TypedReducer$(new Z.selectedIdReducer_closure139(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new Z.selectedIdReducer_closure140(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new Z.selectedIdReducer_closure141(), t1, H.findType("SortTaxRates*")), t10 = B.TypedReducer$(new Z.selectedIdReducer_closure142(), t1, H.findType("FilterTaxRates*")), t11 = B.TypedReducer$(new Z.selectedIdReducer_closure143(), t1, H.findType("FilterTaxRatesByState*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer18", "$get$editingReducer8", function() { var t1 = type$.legacy_TaxRateEntity, t2 = B.TypedReducer$(Z.tax_rate_reducer___updateEditing$closure(), t1, H.findType("SaveTaxRateSuccess*")), t3 = B.TypedReducer$(Z.tax_rate_reducer___updateEditing$closure(), t1, H.findType("AddTaxRateSuccess*")), t4 = B.TypedReducer$(new Z.editingReducer_closure39(), t1, H.findType("RestoreTaxRatesSuccess*")), t5 = B.TypedReducer$(new Z.editingReducer_closure40(), t1, H.findType("ArchiveTaxRatesSuccess*")), t6 = B.TypedReducer$(new Z.editingReducer_closure41(), t1, H.findType("DeleteTaxRatesSuccess*")), t7 = B.TypedReducer$(Z.tax_rate_reducer___updateEditing$closure(), t1, type$.legacy_EditTaxRate), t8 = B.TypedReducer$(new Z.editingReducer_closure42(), t1, H.findType("UpdateTaxRate*")), t9 = B.TypedReducer$(Z.tax_rate_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "taxRateListReducer", "$get$taxRateListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(Z.tax_rate_reducer___sortTaxRates$closure(), t1, H.findType("SortTaxRates*")), t3 = B.TypedReducer$(Z.tax_rate_reducer___filterTaxRatesByState$closure(), t1, H.findType("FilterTaxRatesByState*")), t4 = B.TypedReducer$(Z.tax_rate_reducer___filterTaxRates$closure(), t1, H.findType("FilterTaxRates*")), t5 = B.TypedReducer$(Z.tax_rate_reducer___startListMultiselect$closure(), t1, H.findType("StartTaxRateMultiselect*")), t6 = B.TypedReducer$(Z.tax_rate_reducer___addToListMultiselect$closure(), t1, H.findType("AddToTaxRateMultiselect*")), t7 = B.TypedReducer$(Z.tax_rate_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromTaxRateMultiselect*")), t8 = B.TypedReducer$(Z.tax_rate_reducer___clearListMultiselect$closure(), t1, H.findType("ClearTaxRateMultiselect*")), t9 = B.TypedReducer$(Z.tax_rate_reducer___viewTaxRateList$closure(), t1, type$.legacy_ViewTaxRateList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "taxRatesReducer", "$get$taxRatesReducer", function() { var t1 = type$.legacy_TaxRateState, t2 = B.TypedReducer$(Z.tax_rate_reducer___updateTaxRate$closure(), t1, H.findType("SaveTaxRateSuccess*")), t3 = B.TypedReducer$(Z.tax_rate_reducer___addTaxRate$closure(), t1, H.findType("AddTaxRateSuccess*")), t4 = B.TypedReducer$(Z.tax_rate_reducer___setLoadedTaxRates$closure(), t1, H.findType("LoadTaxRatesSuccess*")), t5 = B.TypedReducer$(Z.tax_rate_reducer___setLoadedTaxRate$closure(), t1, H.findType("LoadTaxRateSuccess*")), t6 = B.TypedReducer$(Z.tax_rate_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(Z.tax_rate_reducer___archiveTaxRateSuccess$closure(), t1, H.findType("ArchiveTaxRatesSuccess*")), t8 = B.TypedReducer$(Z.tax_rate_reducer___deleteTaxRateSuccess$closure(), t1, H.findType("DeleteTaxRatesSuccess*")), t9 = B.TypedReducer$(Z.tax_rate_reducer___restoreTaxRateSuccess$closure(), t1, H.findType("RestoreTaxRatesSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredTaxRateList", "$get$memoizedFilteredTaxRateList", function() { return O.memo4(new G.memoizedFilteredTaxRateList_closure(), type$.legacy_SelectionState, H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$taxRateStateSerializer", "$get$_$taxRateStateSerializer", function() { return new Q._$TaxRateStateSerializer(); }); _lazyOld($, "_$taxRateUIStateSerializer", "$get$_$taxRateUIStateSerializer", function() { return new Q._$TaxRateUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer19", "$get$forceSelectedReducer13", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new S.forceSelectedReducer_closure103(), t1, type$.legacy_ViewToken), t3 = B.TypedReducer$(new S.forceSelectedReducer_closure104(), t1, type$.legacy_ViewTokenList), t4 = B.TypedReducer$(new S.forceSelectedReducer_closure105(), t1, H.findType("FilterTokensByState*")), t5 = B.TypedReducer$(new S.forceSelectedReducer_closure106(), t1, H.findType("FilterTokens*")), t6 = B.TypedReducer$(new S.forceSelectedReducer_closure107(), t1, H.findType("FilterTokensByCustom1*")), t7 = B.TypedReducer$(new S.forceSelectedReducer_closure108(), t1, H.findType("FilterTokensByCustom2*")), t8 = B.TypedReducer$(new S.forceSelectedReducer_closure109(), t1, H.findType("FilterTokensByCustom3*")), t9 = B.TypedReducer$(new S.forceSelectedReducer_closure110(), t1, H.findType("FilterTokensByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer19", "$get$selectedIdReducer13", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new S.selectedIdReducer_closure207(), t1, H.findType("ArchiveTokensSuccess*")), t3 = B.TypedReducer$(new S.selectedIdReducer_closure208(), t1, H.findType("DeleteTokensSuccess*")), t4 = B.TypedReducer$(new S.selectedIdReducer_closure209(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new S.selectedIdReducer_closure210(), t1, type$.legacy_ViewToken), t6 = B.TypedReducer$(new S.selectedIdReducer_closure211(), t1, H.findType("AddTokenSuccess*")), t7 = B.TypedReducer$(new S.selectedIdReducer_closure212(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new S.selectedIdReducer_closure213(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new S.selectedIdReducer_closure214(), t1, H.findType("SortTokens*")), t10 = B.TypedReducer$(new S.selectedIdReducer_closure215(), t1, H.findType("FilterTokens*")), t11 = B.TypedReducer$(new S.selectedIdReducer_closure216(), t1, H.findType("FilterTokensByState*")), t12 = B.TypedReducer$(new S.selectedIdReducer_closure217(), t1, H.findType("FilterTokensByCustom1*")), t13 = B.TypedReducer$(new S.selectedIdReducer_closure218(), t1, H.findType("FilterTokensByCustom2*")), t14 = B.TypedReducer$(new S.selectedIdReducer_closure219(), t1, H.findType("FilterTokensByCustom3*")), t15 = B.TypedReducer$(new S.selectedIdReducer_closure220(), t1, H.findType("FilterTokensByCustom4*")), t16 = B.TypedReducer$(new S.selectedIdReducer_closure221(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer19", "$get$editingReducer13", function() { var t1 = type$.legacy_TokenEntity, t2 = B.TypedReducer$(S.token_reducer___updateEditing$closure(), t1, H.findType("SaveTokenSuccess*")), t3 = B.TypedReducer$(S.token_reducer___updateEditing$closure(), t1, H.findType("AddTokenSuccess*")), t4 = B.TypedReducer$(new S.editingReducer_closure66(), t1, H.findType("RestoreTokensSuccess*")), t5 = B.TypedReducer$(new S.editingReducer_closure67(), t1, H.findType("ArchiveTokensSuccess*")), t6 = B.TypedReducer$(new S.editingReducer_closure68(), t1, H.findType("DeleteTokensSuccess*")), t7 = B.TypedReducer$(S.token_reducer___updateEditing$closure(), t1, type$.legacy_EditToken), t8 = B.TypedReducer$(new S.editingReducer_closure69(), t1, H.findType("UpdateToken*")), t9 = B.TypedReducer$(S.token_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "tokenListReducer", "$get$tokenListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(S.token_reducer___sortTokens$closure(), t1, H.findType("SortTokens*")), t3 = B.TypedReducer$(S.token_reducer___filterTokensByState$closure(), t1, H.findType("FilterTokensByState*")), t4 = B.TypedReducer$(S.token_reducer___filterTokens$closure(), t1, H.findType("FilterTokens*")), t5 = B.TypedReducer$(S.token_reducer___filterTokensByCustom1$closure(), t1, H.findType("FilterTokensByCustom1*")), t6 = B.TypedReducer$(S.token_reducer___filterTokensByCustom2$closure(), t1, H.findType("FilterTokensByCustom2*")), t7 = B.TypedReducer$(S.token_reducer___startListMultiselect$closure(), t1, H.findType("StartTokenMultiselect*")), t8 = B.TypedReducer$(S.token_reducer___addToListMultiselect$closure(), t1, H.findType("AddToTokenMultiselect*")), t9 = B.TypedReducer$(S.token_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromTokenMultiselect*")), t10 = B.TypedReducer$(S.token_reducer___clearListMultiselect$closure(), t1, H.findType("ClearTokenMultiselect*")), t11 = B.TypedReducer$(S.token_reducer___viewTokenList$closure(), t1, type$.legacy_ViewTokenList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "tokensReducer", "$get$tokensReducer", function() { var t1 = type$.legacy_TokenState, t2 = B.TypedReducer$(S.token_reducer___updateToken$closure(), t1, H.findType("SaveTokenSuccess*")), t3 = B.TypedReducer$(S.token_reducer___addToken$closure(), t1, H.findType("AddTokenSuccess*")), t4 = B.TypedReducer$(S.token_reducer___setLoadedTokens$closure(), t1, H.findType("LoadTokensSuccess*")), t5 = B.TypedReducer$(S.token_reducer___setLoadedToken$closure(), t1, H.findType("LoadTokenSuccess*")), t6 = B.TypedReducer$(S.token_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(S.token_reducer___archiveTokenSuccess$closure(), t1, H.findType("ArchiveTokensSuccess*")), t8 = B.TypedReducer$(S.token_reducer___deleteTokenSuccess$closure(), t1, H.findType("DeleteTokensSuccess*")), t9 = B.TypedReducer$(S.token_reducer___restoreTokenSuccess$closure(), t1, H.findType("RestoreTokensSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredTokenList", "$get$memoizedFilteredTokenList", function() { return O.memo4(new O.memoizedFilteredTokenList_closure(), type$.legacy_SelectionState, H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$tokenStateSerializer", "$get$_$tokenStateSerializer", function() { return new N._$TokenStateSerializer(); }); _lazyOld($, "_$tokenUIStateSerializer", "$get$_$tokenUIStateSerializer", function() { return new N._$TokenUIStateSerializer(); }); _lazyOld($, "_$listUIStateSerializer", "$get$_$listUIStateSerializer", function() { return new Q._$ListUIStateSerializer(); }); _lazyOld($, "sortFieldsReducer", "$get$sortFieldsReducer", function() { var t1 = H.findType("BuiltMap*"), t2 = B.TypedReducer$(new Y.sortFieldsReducer_closure(), t1, H.findType("SortClients*")), t3 = B.TypedReducer$(new Y.sortFieldsReducer_closure0(), t1, H.findType("SortProducts*")), t4 = B.TypedReducer$(new Y.sortFieldsReducer_closure1(), t1, H.findType("SortInvoices*")), t5 = B.TypedReducer$(new Y.sortFieldsReducer_closure2(), t1, H.findType("SortPayments*")), t6 = B.TypedReducer$(new Y.sortFieldsReducer_closure3(), t1, H.findType("SortRecurringInvoices*")), t7 = B.TypedReducer$(new Y.sortFieldsReducer_closure4(), t1, H.findType("SortQuotes*")), t8 = B.TypedReducer$(new Y.sortFieldsReducer_closure5(), t1, H.findType("SortCredits*")), t9 = B.TypedReducer$(new Y.sortFieldsReducer_closure6(), t1, H.findType("SortProjects*")), t10 = B.TypedReducer$(new Y.sortFieldsReducer_closure7(), t1, H.findType("SortTasks*")), t11 = B.TypedReducer$(new Y.sortFieldsReducer_closure8(), t1, H.findType("SortVendors*")), t12 = B.TypedReducer$(new Y.sortFieldsReducer_closure9(), t1, H.findType("SortExpenses*")), t13 = B.TypedReducer$(new Y.sortFieldsReducer_closure10(), t1, H.findType("SortPaymentTerms*")), t14 = B.TypedReducer$(new Y.sortFieldsReducer_closure11(), t1, H.findType("SortTaxRates*")), t15 = B.TypedReducer$(new Y.sortFieldsReducer_closure12(), t1, H.findType("SortCompanyGateways*")), t16 = B.TypedReducer$(new Y.sortFieldsReducer_closure13(), t1, H.findType("SortUsers*")), t17 = B.TypedReducer$(new Y.sortFieldsReducer_closure14(), t1, H.findType("SortGroups*")), t18 = B.TypedReducer$(new Y.sortFieldsReducer_closure15(), t1, H.findType("SortDesigns*")), t19 = B.TypedReducer$(new Y.sortFieldsReducer_closure16(), t1, H.findType("SortTokens*")), t20 = B.TypedReducer$(new Y.sortFieldsReducer_closure17(), t1, H.findType("SortWebhooks*")), t21 = B.TypedReducer$(new Y.sortFieldsReducer_closure18(), t1, H.findType("SortExpenseCategories*")), t22 = B.TypedReducer$(new Y.sortFieldsReducer_closure19(), t1, H.findType("SortTaskStatuses*")), t23 = B.TypedReducer$(new Y.sortFieldsReducer_closure20(), t1, H.findType("SortSubscriptions*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call(), t22.get$$call(), t23.get$$call()], H.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "sidebarEditorReducer", "$get$sidebarEditorReducer", function() { var t1 = H.findType("BuiltMap*"), t2 = B.TypedReducer$(new Y.sidebarEditorReducer_closure(), t1, H.findType("ToggleEditorLayout*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "menuVisibleReducer", "$get$menuVisibleReducer", function() { var t1 = type$.legacy_bool, t2 = type$.legacy_UpdateUserPreferences, t3 = B.TypedReducer$(new Y.menuVisibleReducer_closure(), t1, t2); t2 = B.TypedReducer$(new Y.menuVisibleReducer_closure0(), t1, t2); return B.combineReducers(H.setRuntimeTypeInfo([t3.get$$call(), t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "historyVisibleReducer", "$get$historyVisibleReducer", function() { var t1 = type$.legacy_bool, t2 = type$.legacy_UpdateUserPreferences, t3 = B.TypedReducer$(new Y.historyVisibleReducer_closure(), t1, t2); t2 = B.TypedReducer$(new Y.historyVisibleReducer_closure0(), t1, t2); return B.combineReducers(H.setRuntimeTypeInfo([t3.get$$call(), t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "layoutReducer", "$get$layoutReducer", function() { var t1 = type$.legacy_AppLayout, t2 = B.TypedReducer$(new Y.layoutReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "moduleLayoutReducer", "$get$moduleLayoutReducer", function() { var t1 = type$.legacy_ModuleLayout, t2 = B.TypedReducer$(new Y.moduleLayoutReducer_closure(), t1, type$.legacy_UpdateUserPreferences), t3 = B.TypedReducer$(new Y.moduleLayoutReducer_closure0(), t1, H.findType("SwitchListTableLayout*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "rowsPerPageReducer", "$get$rowsPerPageReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new Y.rowsPerPageReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "manuSidebarReducer", "$get$manuSidebarReducer", function() { var t1 = type$.legacy_AppSidebarMode, t2 = B.TypedReducer$(new Y.manuSidebarReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "historySidebarReducer", "$get$historySidebarReducer", function() { var t1 = type$.legacy_AppSidebarMode, t2 = B.TypedReducer$(new Y.historySidebarReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "darkModeReducer", "$get$darkModeReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.darkModeReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "persistDataReducer", "$get$persistDataReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.persistDataReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "showKanbanReducer", "$get$showKanbanReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.showKanbanReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "isFilterVisibleReducer", "$get$isFilterVisibleReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.isFilterVisibleReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "longPressReducer", "$get$longPressReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.longPressReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "isPreviewVisibleReducer", "$get$isPreviewVisibleReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.isPreviewVisibleReducer_closure(), t1, H.findType("TogglePreviewSidebar*")), t3 = B.TypedReducer$(new Y.isPreviewVisibleReducer_closure0(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "requireAuthenticationReducer", "$get$requireAuthenticationReducer", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new Y.requireAuthenticationReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "colorThemeReducer", "$get$colorThemeReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new Y.colorThemeReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "customColorsReducer", "$get$customColorsReducer", function() { var t1 = H.findType("BuiltMap*"), t2 = B.TypedReducer$(new Y.customColorsReducer_closure(), t1, type$.legacy_UpdateUserPreferences); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], H.findType("JSArray*(BuiltMap*,@)*>")), t1); }); _lazyOld($, "historyReducer", "$get$historyReducer", function() { var t1 = H.findType("BuiltList*"), t2 = B.TypedReducer$(new Y.historyReducer_closure(), t1, H.findType("PopLastHistory*")), t3 = B.TypedReducer$(new Y.historyReducer_closure0(), t1, type$.legacy_ViewDashboard), t4 = B.TypedReducer$(new Y.historyReducer_closure1(), t1, type$.legacy_ViewReports), t5 = B.TypedReducer$(new Y.historyReducer_closure2(), t1, type$.legacy_ViewSettings), t6 = B.TypedReducer$(new Y.historyReducer_closure3(), t1, type$.legacy_ViewClient), t7 = B.TypedReducer$(new Y.historyReducer_closure4(), t1, type$.legacy_EditClient), t8 = B.TypedReducer$(new Y.historyReducer_closure5(), t1, type$.legacy_ViewProduct), t9 = B.TypedReducer$(new Y.historyReducer_closure6(), t1, type$.legacy_EditProduct), t10 = B.TypedReducer$(new Y.historyReducer_closure7(), t1, type$.legacy_ViewInvoice), t11 = B.TypedReducer$(new Y.historyReducer_closure8(), t1, type$.legacy_EditInvoice), t12 = B.TypedReducer$(new Y.historyReducer_closure9(), t1, H.findType("ViewPayment*")), t13 = B.TypedReducer$(new Y.historyReducer_closure10(), t1, type$.legacy_EditPayment), t14 = B.TypedReducer$(new Y.historyReducer_closure11(), t1, type$.legacy_ViewQuote), t15 = B.TypedReducer$(new Y.historyReducer_closure12(), t1, type$.legacy_EditQuote), t16 = B.TypedReducer$(new Y.historyReducer_closure13(), t1, type$.legacy_ViewTask), t17 = B.TypedReducer$(new Y.historyReducer_closure14(), t1, type$.legacy_EditTask), t18 = B.TypedReducer$(new Y.historyReducer_closure15(), t1, type$.legacy_ViewProject), t19 = B.TypedReducer$(new Y.historyReducer_closure16(), t1, type$.legacy_EditProject), t20 = B.TypedReducer$(new Y.historyReducer_closure17(), t1, type$.legacy_ViewVendor), t21 = B.TypedReducer$(new Y.historyReducer_closure18(), t1, type$.legacy_EditVendor), t22 = B.TypedReducer$(new Y.historyReducer_closure19(), t1, type$.legacy_ViewExpense), t23 = B.TypedReducer$(new Y.historyReducer_closure20(), t1, type$.legacy_EditExpense), t24 = B.TypedReducer$(new Y.historyReducer_closure21(), t1, type$.legacy_ViewCompanyGateway), t25 = B.TypedReducer$(new Y.historyReducer_closure22(), t1, type$.legacy_EditCompanyGateway), t26 = B.TypedReducer$(new Y.historyReducer_closure23(), t1, type$.legacy_ViewUser), t27 = B.TypedReducer$(new Y.historyReducer_closure24(), t1, type$.legacy_EditUser), t28 = B.TypedReducer$(new Y.historyReducer_closure25(), t1, type$.legacy_ViewGroup), t29 = B.TypedReducer$(new Y.historyReducer_closure26(), t1, type$.legacy_EditGroup), t30 = B.TypedReducer$(new Y.historyReducer_closure27(), t1, type$.legacy_ViewRecurringExpense), t31 = B.TypedReducer$(new Y.historyReducer_closure28(), t1, type$.legacy_EditRecurringExpense), t32 = B.TypedReducer$(new Y.historyReducer_closure29(), t1, type$.legacy_ViewSubscription), t33 = B.TypedReducer$(new Y.historyReducer_closure30(), t1, type$.legacy_EditSubscription), t34 = B.TypedReducer$(new Y.historyReducer_closure31(), t1, type$.legacy_ViewTaskStatus), t35 = B.TypedReducer$(new Y.historyReducer_closure32(), t1, type$.legacy_EditTaskStatus), t36 = B.TypedReducer$(new Y.historyReducer_closure33(), t1, type$.legacy_ViewExpenseCategory), t37 = B.TypedReducer$(new Y.historyReducer_closure34(), t1, type$.legacy_EditExpenseCategory), t38 = B.TypedReducer$(new Y.historyReducer_closure35(), t1, type$.legacy_ViewRecurringInvoice), t39 = B.TypedReducer$(new Y.historyReducer_closure36(), t1, type$.legacy_EditRecurringInvoice), t40 = B.TypedReducer$(new Y.historyReducer_closure37(), t1, type$.legacy_ViewWebhook), t41 = B.TypedReducer$(new Y.historyReducer_closure38(), t1, type$.legacy_EditWebhook), t42 = B.TypedReducer$(new Y.historyReducer_closure39(), t1, type$.legacy_ViewToken), t43 = B.TypedReducer$(new Y.historyReducer_closure40(), t1, type$.legacy_EditToken), t44 = B.TypedReducer$(new Y.historyReducer_closure41(), t1, type$.legacy_ViewPaymentTerm), t45 = B.TypedReducer$(new Y.historyReducer_closure42(), t1, type$.legacy_EditPaymentTerm), t46 = B.TypedReducer$(new Y.historyReducer_closure43(), t1, type$.legacy_EditDesign), t47 = B.TypedReducer$(new Y.historyReducer_closure44(), t1, type$.legacy_ViewCredit), t48 = B.TypedReducer$(new Y.historyReducer_closure45(), t1, type$.legacy_EditCredit), t49 = B.TypedReducer$(new Y.historyReducer_closure46(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call(), t18.get$$call(), t19.get$$call(), t20.get$$call(), t21.get$$call(), t22.get$$call(), t23.get$$call(), t24.get$$call(), t25.get$$call(), t26.get$$call(), t27.get$$call(), t28.get$$call(), t29.get$$call(), t30.get$$call(), t31.get$$call(), t32.get$$call(), t33.get$$call(), t34.get$$call(), t35.get$$call(), t36.get$$call(), t37.get$$call(), t38.get$$call(), t39.get$$call(), t40.get$$call(), t41.get$$call(), t42.get$$call(), t43.get$$call(), t44.get$$call(), t45.get$$call(), t46.get$$call(), t47.get$$call(), t48.get$$call(), t49.get$$call()], H.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "_$prefStateSerializer", "$get$_$prefStateSerializer", function() { return new X._$PrefStateSerializer(); }); _lazyOld($, "_$prefStateSortFieldSerializer", "$get$_$prefStateSortFieldSerializer", function() { return new X._$PrefStateSortFieldSerializer(); }); _lazyOld($, "_$companyPrefStateSerializer", "$get$_$companyPrefStateSerializer", function() { return new X._$CompanyPrefStateSerializer(); }); _lazyOld($, "_$appLayoutSerializer", "$get$_$appLayoutSerializer", function() { return new X._$AppLayoutSerializer(); }); _lazyOld($, "_$moduleLayoutSerializer", "$get$_$moduleLayoutSerializer", function() { return new X._$ModuleLayoutSerializer(); }); _lazyOld($, "_$appSidebarModeSerializer", "$get$_$appSidebarModeSerializer", function() { return new X._$AppSidebarModeSerializer(); }); _lazyOld($, "_$historyRecordSerializer", "$get$_$historyRecordSerializer", function() { return new X._$HistoryRecordSerializer(); }); _lazyOld($, "lastActivityReducer", "$get$lastActivityReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new D.lastActivityReducer_closure(), t1, H.findType("UpdateCurrentRoute*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "filterReducer", "$get$filterReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new D.filterReducer_closure(), t1, H.findType("FilterCompany*")), t3 = B.TypedReducer$(new D.filterReducer_closure0(), t1, type$.legacy_ViewDashboard); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "filterClearedAtReducer", "$get$filterClearedAtReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new D.filterClearedAtReducer_closure(), t1, H.findType("FilterCompany*")), t3 = B.TypedReducer$(new D.filterClearedAtReducer_closure0(), t1, type$.legacy_ViewDashboard); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "currentRouteReducer", "$get$currentRouteReducer", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new D.currentRouteReducer_closure(), t1, H.findType("UpdateCurrentRoute*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "selectedCompanyIndexReducer", "$get$selectedCompanyIndexReducer", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new D.selectedCompanyIndexReducer_closure(), t1, type$.legacy_SelectCompany); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "previewStackReducer", "$get$previewStackReducer", function() { var t1 = H.findType("BuiltList*"), t2 = B.TypedReducer$(new D.previewStackReducer_closure(), t1, type$.legacy_PreviewEntity), t3 = B.TypedReducer$(new D.previewStackReducer_closure0(), t1, H.findType("ClearPreviewStack*")), t4 = B.TypedReducer$(new D.previewStackReducer_closure1(), t1, H.findType("PopPreviewStack*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call()], H.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "filterStackReducer", "$get$filterStackReducer", function() { var t1 = H.findType("BuiltList*"), t2 = B.TypedReducer$(new D.filterStackReducer_closure(), t1, type$.legacy_ClearEntityFilter), t3 = B.TypedReducer$(new D.filterStackReducer_closure0(), t1, type$.legacy_FilterByEntity), t4 = B.TypedReducer$(new D.filterStackReducer_closure1(), t1, H.findType("PopFilterStack*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call()], H.findType("JSArray*(BuiltList*,@)*>")), t1); }); _lazyOld($, "_$uIStateSerializer", "$get$_$uIStateSerializer", function() { return new U._$UIStateSerializer(); }); _lazyOld($, "forceSelectedReducer20", "$get$forceSelectedReducer9", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new E.forceSelectedReducer_closure71(), t1, type$.legacy_ViewUser), t3 = B.TypedReducer$(new E.forceSelectedReducer_closure72(), t1, type$.legacy_ViewUserList), t4 = B.TypedReducer$(new E.forceSelectedReducer_closure73(), t1, H.findType("FilterUsersByState*")), t5 = B.TypedReducer$(new E.forceSelectedReducer_closure74(), t1, H.findType("FilterUsers*")), t6 = B.TypedReducer$(new E.forceSelectedReducer_closure75(), t1, H.findType("FilterUsersByCustom1*")), t7 = B.TypedReducer$(new E.forceSelectedReducer_closure76(), t1, H.findType("FilterUsersByCustom2*")), t8 = B.TypedReducer$(new E.forceSelectedReducer_closure77(), t1, H.findType("FilterUsersByCustom3*")), t9 = B.TypedReducer$(new E.forceSelectedReducer_closure78(), t1, H.findType("FilterUsersByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer20", "$get$selectedIdReducer9", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new E.selectedIdReducer_closure144(), t1, H.findType("ArchiveUserSuccess*")), t3 = B.TypedReducer$(new E.selectedIdReducer_closure145(), t1, H.findType("DeleteUserSuccess*")), t4 = B.TypedReducer$(new E.selectedIdReducer_closure146(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new E.selectedIdReducer_closure147(), t1, type$.legacy_ViewUser), t6 = B.TypedReducer$(new E.selectedIdReducer_closure148(), t1, H.findType("AddUserSuccess*")), t7 = B.TypedReducer$(new E.selectedIdReducer_closure149(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new E.selectedIdReducer_closure150(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new E.selectedIdReducer_closure151(), t1, H.findType("SortUsers*")), t10 = B.TypedReducer$(new E.selectedIdReducer_closure152(), t1, H.findType("FilterUsers*")), t11 = B.TypedReducer$(new E.selectedIdReducer_closure153(), t1, H.findType("FilterUsersByState*")), t12 = B.TypedReducer$(new E.selectedIdReducer_closure154(), t1, H.findType("FilterUsersByCustom1*")), t13 = B.TypedReducer$(new E.selectedIdReducer_closure155(), t1, H.findType("FilterUsersByCustom2*")), t14 = B.TypedReducer$(new E.selectedIdReducer_closure156(), t1, H.findType("FilterUsersByCustom3*")), t15 = B.TypedReducer$(new E.selectedIdReducer_closure157(), t1, H.findType("FilterUsersByCustom4*")), t16 = B.TypedReducer$(new E.selectedIdReducer_closure158(), t1, type$.legacy_ClearEntitySelection), t17 = B.TypedReducer$(new E.selectedIdReducer_closure159(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call(), t17.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer20", "$get$editingReducer9", function() { var t1 = type$.legacy_UserEntity, t2 = B.TypedReducer$(E.user_reducer___updateEditing$closure(), t1, H.findType("SaveUserSuccess*")), t3 = B.TypedReducer$(E.user_reducer___updateEditing$closure(), t1, H.findType("AddUserSuccess*")), t4 = B.TypedReducer$(new E.editingReducer_closure43(), t1, H.findType("RestoreUserSuccess*")), t5 = B.TypedReducer$(new E.editingReducer_closure44(), t1, H.findType("ArchiveUserSuccess*")), t6 = B.TypedReducer$(new E.editingReducer_closure45(), t1, H.findType("DeleteUserSuccess*")), t7 = B.TypedReducer$(E.user_reducer___updateEditing$closure(), t1, type$.legacy_EditUser), t8 = B.TypedReducer$(new E.editingReducer_closure46(), t1, H.findType("UpdateUser*")), t9 = B.TypedReducer$(E.user_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "userListReducer", "$get$userListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(E.user_reducer___sortUsers$closure(), t1, H.findType("SortUsers*")), t3 = B.TypedReducer$(E.user_reducer___filterUsersByState$closure(), t1, H.findType("FilterUsersByState*")), t4 = B.TypedReducer$(E.user_reducer___filterUsers$closure(), t1, H.findType("FilterUsers*")), t5 = B.TypedReducer$(E.user_reducer___filterUsersByCustom1$closure(), t1, H.findType("FilterUsersByCustom1*")), t6 = B.TypedReducer$(E.user_reducer___filterUsersByCustom2$closure(), t1, H.findType("FilterUsersByCustom2*")), t7 = B.TypedReducer$(E.user_reducer___filterUsersByCustom3$closure(), t1, H.findType("FilterUsersByCustom3*")), t8 = B.TypedReducer$(E.user_reducer___filterUsersByCustom4$closure(), t1, H.findType("FilterUsersByCustom4*")), t9 = B.TypedReducer$(E.user_reducer___startListMultiselect$closure(), t1, H.findType("StartUserMultiselect*")), t10 = B.TypedReducer$(E.user_reducer___addToListMultiselect$closure(), t1, H.findType("AddToUserMultiselect*")), t11 = B.TypedReducer$(E.user_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromUserMultiselect*")), t12 = B.TypedReducer$(E.user_reducer___clearListMultiselect$closure(), t1, H.findType("ClearUserMultiselect*")), t13 = B.TypedReducer$(E.user_reducer___viewUserList$closure(), t1, type$.legacy_ViewUserList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "usersReducer", "$get$usersReducer", function() { var t1 = type$.legacy_UserState, t2 = B.TypedReducer$(E.user_reducer___updateUser$closure(), t1, H.findType("SaveUserSuccess*")), t3 = B.TypedReducer$(E.user_reducer___updateAuthUser$closure(), t1, H.findType("SaveAuthUserSuccess*")), t4 = B.TypedReducer$(E.user_reducer___connectOAuthUser$closure(), t1, H.findType("ConnecOAuthUserSuccess*")), t5 = B.TypedReducer$(E.user_reducer___connectGmailUser$closure(), t1, H.findType("ConnecGmailUserSuccess*")), t6 = B.TypedReducer$(E.user_reducer___addUser$closure(), t1, H.findType("AddUserSuccess*")), t7 = B.TypedReducer$(E.user_reducer___setLoadedUsers$closure(), t1, H.findType("LoadUsersSuccess*")), t8 = B.TypedReducer$(E.user_reducer___setLoadedUser$closure(), t1, H.findType("LoadUserSuccess*")), t9 = B.TypedReducer$(E.user_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t10 = B.TypedReducer$(E.user_reducer___archiveUserSuccess$closure(), t1, H.findType("ArchiveUserSuccess*")), t11 = B.TypedReducer$(E.user_reducer___deleteUserSuccess$closure(), t1, H.findType("DeleteUserSuccess*")), t12 = B.TypedReducer$(E.user_reducer___restoreUserSuccess$closure(), t1, H.findType("RestoreUserSuccess*")), t13 = B.TypedReducer$(E.user_reducer___removeUserSuccess$closure(), t1, H.findType("RemoveUserSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredUserList", "$get$memoizedFilteredUserList", function() { return O.memo5(new L.memoizedFilteredUserList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_String, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedUserList", "$get$memoizedUserList", function() { return O.memo1(new L.memoizedUserList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedGmailUserList", "$get$memoizedGmailUserList", function() { return O.memo1(new L.memoizedGmailUserList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_List_legacy_String); }); _lazyOld($, "_$userStateSerializer", "$get$_$userStateSerializer", function() { return new Q._$UserStateSerializer(); }); _lazyOld($, "_$userUIStateSerializer", "$get$_$userUIStateSerializer", function() { return new Q._$UserUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer21", "$get$forceSelectedReducer3", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new K.forceSelectedReducer_closure31(), t1, type$.legacy_ViewVendor), t3 = B.TypedReducer$(new K.forceSelectedReducer_closure32(), t1, type$.legacy_ViewVendorList), t4 = B.TypedReducer$(new K.forceSelectedReducer_closure33(), t1, H.findType("FilterVendorsByState*")), t5 = B.TypedReducer$(new K.forceSelectedReducer_closure34(), t1, H.findType("FilterVendors*")), t6 = B.TypedReducer$(new K.forceSelectedReducer_closure35(), t1, H.findType("FilterVendorsByCustom1*")), t7 = B.TypedReducer$(new K.forceSelectedReducer_closure36(), t1, H.findType("FilterVendorsByCustom2*")), t8 = B.TypedReducer$(new K.forceSelectedReducer_closure37(), t1, H.findType("FilterVendorsByCustom3*")), t9 = B.TypedReducer$(new K.forceSelectedReducer_closure38(), t1, H.findType("FilterVendorsByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "tabIndexReducer11", "$get$tabIndexReducer3", function() { var t1 = type$.legacy_int, t2 = B.TypedReducer$(new K.tabIndexReducer_closure7(), t1, H.findType("UpdateVendorTab*")), t3 = B.TypedReducer$(new K.tabIndexReducer_closure8(), t1, type$.legacy_PreviewEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], type$.JSArray_of_legacy_legacy_int_Function_2_legacy_int_and_dynamic), t1); }); _lazyOld($, "saveCompleterReducer1", "$get$saveCompleterReducer0", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new K.saveCompleterReducer_closure0(), t1, type$.legacy_EditVendor); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "cancelCompleterReducer1", "$get$cancelCompleterReducer0", function() { var t1 = type$.legacy_Completer_legacy_SelectableEntity, t2 = B.TypedReducer$(new K.cancelCompleterReducer_closure0(), t1, type$.legacy_EditVendor); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call()], type$.JSArray_of_legacy_legacy_Completer_legacy_SelectableEntity_Function_2_legacy_Completer_legacy_SelectableEntity_and_dynamic), t1); }); _lazyOld($, "editingVendorContactReducer", "$get$editingVendorContactReducer", function() { var t1 = type$.legacy_VendorContactEntity, t2 = B.TypedReducer$(K.vendor_reducer__editVendorContact$closure(), t1, type$.legacy_EditVendor), t3 = B.TypedReducer$(K.vendor_reducer__editVendorContact$closure(), t1, H.findType("EditVendorContact*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "selectedIdReducer21", "$get$selectedIdReducer3", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new K.selectedIdReducer_closure64(), t1, H.findType("ArchiveVendorSuccess*")), t3 = B.TypedReducer$(new K.selectedIdReducer_closure65(), t1, H.findType("DeleteVendorSuccess*")), t4 = B.TypedReducer$(new K.selectedIdReducer_closure66(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new K.selectedIdReducer_closure67(), t1, type$.legacy_ViewVendor), t6 = B.TypedReducer$(new K.selectedIdReducer_closure68(), t1, H.findType("AddVendorSuccess*")), t7 = B.TypedReducer$(new K.selectedIdReducer_closure69(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new K.selectedIdReducer_closure70(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new K.selectedIdReducer_closure71(), t1, H.findType("SortVendors*")), t10 = B.TypedReducer$(new K.selectedIdReducer_closure72(), t1, H.findType("FilterVendors*")), t11 = B.TypedReducer$(new K.selectedIdReducer_closure73(), t1, H.findType("FilterVendorsByState*")), t12 = B.TypedReducer$(new K.selectedIdReducer_closure74(), t1, H.findType("FilterVendorsByCustom1*")), t13 = B.TypedReducer$(new K.selectedIdReducer_closure75(), t1, H.findType("FilterVendorsByCustom2*")), t14 = B.TypedReducer$(new K.selectedIdReducer_closure76(), t1, H.findType("FilterVendorsByCustom3*")), t15 = B.TypedReducer$(new K.selectedIdReducer_closure77(), t1, H.findType("FilterVendorsByCustom4*")), t16 = B.TypedReducer$(new K.selectedIdReducer_closure78(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer21", "$get$editingReducer3", function() { var t1 = type$.legacy_VendorEntity, t2 = B.TypedReducer$(K.vendor_reducer___updateEditing$closure(), t1, H.findType("SaveVendorSuccess*")), t3 = B.TypedReducer$(K.vendor_reducer___updateEditing$closure(), t1, H.findType("AddVendorSuccess*")), t4 = B.TypedReducer$(new K.editingReducer_closure22(), t1, H.findType("RestoreVendorSuccess*")), t5 = B.TypedReducer$(new K.editingReducer_closure23(), t1, H.findType("ArchiveVendorSuccess*")), t6 = B.TypedReducer$(new K.editingReducer_closure24(), t1, H.findType("DeleteVendorSuccess*")), t7 = B.TypedReducer$(K.vendor_reducer___updateEditing$closure(), t1, type$.legacy_EditVendor), t8 = B.TypedReducer$(new K.editingReducer_closure25(), t1, H.findType("UpdateVendor*")), t9 = B.TypedReducer$(K.vendor_reducer___addContact$closure(), t1, H.findType("AddVendorContact*")), t10 = B.TypedReducer$(K.vendor_reducer___removeContact$closure(), t1, H.findType("DeleteVendorContact*")), t11 = B.TypedReducer$(K.vendor_reducer___updateContact$closure(), t1, H.findType("UpdateVendorContact*")), t12 = B.TypedReducer$(K.vendor_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "vendorListReducer", "$get$vendorListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(K.vendor_reducer___sortVendors$closure(), t1, H.findType("SortVendors*")), t3 = B.TypedReducer$(K.vendor_reducer___filterVendorsByState$closure(), t1, H.findType("FilterVendorsByState*")), t4 = B.TypedReducer$(K.vendor_reducer___filterVendors$closure(), t1, H.findType("FilterVendors*")), t5 = B.TypedReducer$(K.vendor_reducer___filterVendorsByCustom1$closure(), t1, H.findType("FilterVendorsByCustom1*")), t6 = B.TypedReducer$(K.vendor_reducer___filterVendorsByCustom2$closure(), t1, H.findType("FilterVendorsByCustom2*")), t7 = B.TypedReducer$(K.vendor_reducer___filterVendorsByCustom3$closure(), t1, H.findType("FilterVendorsByCustom3*")), t8 = B.TypedReducer$(K.vendor_reducer___filterVendorsByCustom4$closure(), t1, H.findType("FilterVendorsByCustom4*")), t9 = B.TypedReducer$(K.vendor_reducer___startListMultiselect$closure(), t1, H.findType("StartVendorMultiselect*")), t10 = B.TypedReducer$(K.vendor_reducer___addToListMultiselect$closure(), t1, H.findType("AddToVendorMultiselect*")), t11 = B.TypedReducer$(K.vendor_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromVendorMultiselect*")), t12 = B.TypedReducer$(K.vendor_reducer___clearListMultiselect$closure(), t1, H.findType("ClearVendorMultiselect*")), t13 = B.TypedReducer$(K.vendor_reducer___viewVendorList$closure(), t1, type$.legacy_ViewVendorList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "vendorsReducer", "$get$vendorsReducer", function() { var t1 = type$.legacy_VendorState, t2 = B.TypedReducer$(K.vendor_reducer___updateVendor$closure(), t1, H.findType("SaveVendorSuccess*")), t3 = B.TypedReducer$(K.vendor_reducer___addVendor$closure(), t1, H.findType("AddVendorSuccess*")), t4 = B.TypedReducer$(K.vendor_reducer___setLoadedVendors$closure(), t1, H.findType("LoadVendorsSuccess*")), t5 = B.TypedReducer$(K.vendor_reducer___setLoadedVendor$closure(), t1, H.findType("LoadVendorSuccess*")), t6 = B.TypedReducer$(K.vendor_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(K.vendor_reducer___archiveVendorSuccess$closure(), t1, H.findType("ArchiveVendorSuccess*")), t8 = B.TypedReducer$(K.vendor_reducer___deleteVendorSuccess$closure(), t1, H.findType("DeleteVendorSuccess*")), t9 = B.TypedReducer$(K.vendor_reducer___restoreVendorSuccess$closure(), t1, H.findType("RestoreVendorSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedDropdownVendorList", "$get$memoizedDropdownVendorList", function() { return O.memo4(new G.memoizedDropdownVendorList_closure(), type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedFilteredVendorList", "$get$memoizedFilteredVendorList", function() { return O.memo6(new G.memoizedFilteredVendorList_closure(), type$.legacy_SelectionState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_List_legacy_String); }); _lazyOld($, "memoizedVendorStatsForUser", "$get$memoizedVendorStatsForUser", function() { return O.memo2(new G.memoizedVendorStatsForUser_closure(), type$.legacy_String, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_EntityStats); }); _lazyOld($, "memoizedCalculateVendorBalance", "$get$memoizedCalculateVendorBalance", function() { var t1 = type$.legacy_String; return O.memo4(new G.memoizedCalculateVendorBalance_closure(), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltList_legacy_String, type$.legacy_double); }); _lazyOld($, "_$vendorStateSerializer", "$get$_$vendorStateSerializer", function() { return new Y._$VendorStateSerializer(); }); _lazyOld($, "_$vendorUIStateSerializer", "$get$_$vendorUIStateSerializer", function() { return new Y._$VendorUIStateSerializer(); }); _lazyOld($, "forceSelectedReducer22", "$get$forceSelectedReducer14", function() { var t1 = type$.legacy_bool, t2 = B.TypedReducer$(new L.forceSelectedReducer_closure111(), t1, type$.legacy_ViewWebhook), t3 = B.TypedReducer$(new L.forceSelectedReducer_closure112(), t1, type$.legacy_ViewWebhookList), t4 = B.TypedReducer$(new L.forceSelectedReducer_closure113(), t1, H.findType("FilterWebhooksByState*")), t5 = B.TypedReducer$(new L.forceSelectedReducer_closure114(), t1, H.findType("FilterWebhooks*")), t6 = B.TypedReducer$(new L.forceSelectedReducer_closure115(), t1, H.findType("FilterWebhooksByCustom1*")), t7 = B.TypedReducer$(new L.forceSelectedReducer_closure116(), t1, H.findType("FilterWebhooksByCustom2*")), t8 = B.TypedReducer$(new L.forceSelectedReducer_closure117(), t1, H.findType("FilterWebhooksByCustom3*")), t9 = B.TypedReducer$(new L.forceSelectedReducer_closure118(), t1, H.findType("FilterWebhooksByCustom4*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], type$.JSArray_of_legacy_legacy_bool_Function_2_legacy_bool_and_dynamic), t1); }); _lazyOld($, "selectedIdReducer22", "$get$selectedIdReducer14", function() { var t1 = type$.legacy_String, t2 = B.TypedReducer$(new L.selectedIdReducer_closure222(), t1, H.findType("ArchiveWebhooksSuccess*")), t3 = B.TypedReducer$(new L.selectedIdReducer_closure223(), t1, H.findType("DeleteWebhooksSuccess*")), t4 = B.TypedReducer$(new L.selectedIdReducer_closure224(), t1, type$.legacy_PreviewEntity), t5 = B.TypedReducer$(new L.selectedIdReducer_closure225(), t1, type$.legacy_ViewWebhook), t6 = B.TypedReducer$(new L.selectedIdReducer_closure226(), t1, H.findType("AddWebhookSuccess*")), t7 = B.TypedReducer$(new L.selectedIdReducer_closure227(), t1, type$.legacy_SelectCompany), t8 = B.TypedReducer$(new L.selectedIdReducer_closure228(), t1, type$.legacy_ClearEntityFilter), t9 = B.TypedReducer$(new L.selectedIdReducer_closure229(), t1, H.findType("SortWebhooks*")), t10 = B.TypedReducer$(new L.selectedIdReducer_closure230(), t1, H.findType("FilterWebhooks*")), t11 = B.TypedReducer$(new L.selectedIdReducer_closure231(), t1, H.findType("FilterWebhooksByState*")), t12 = B.TypedReducer$(new L.selectedIdReducer_closure232(), t1, H.findType("FilterWebhooksByCustom1*")), t13 = B.TypedReducer$(new L.selectedIdReducer_closure233(), t1, H.findType("FilterWebhooksByCustom2*")), t14 = B.TypedReducer$(new L.selectedIdReducer_closure234(), t1, H.findType("FilterWebhooksByCustom3*")), t15 = B.TypedReducer$(new L.selectedIdReducer_closure235(), t1, H.findType("FilterWebhooksByCustom4*")), t16 = B.TypedReducer$(new L.selectedIdReducer_closure236(), t1, type$.legacy_FilterByEntity); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call(), t12.get$$call(), t13.get$$call(), t14.get$$call(), t15.get$$call(), t16.get$$call()], type$.JSArray_of_legacy_legacy_String_Function_2_legacy_String_and_dynamic), t1); }); _lazyOld($, "editingReducer22", "$get$editingReducer14", function() { var t1 = type$.legacy_WebhookEntity, t2 = B.TypedReducer$(L.webhook_reducer___updateEditing$closure(), t1, H.findType("SaveWebhookSuccess*")), t3 = B.TypedReducer$(L.webhook_reducer___updateEditing$closure(), t1, H.findType("AddWebhookSuccess*")), t4 = B.TypedReducer$(new L.editingReducer_closure70(), t1, H.findType("RestoreWebhooksSuccess*")), t5 = B.TypedReducer$(new L.editingReducer_closure71(), t1, H.findType("ArchiveWebhooksSuccess*")), t6 = B.TypedReducer$(new L.editingReducer_closure72(), t1, H.findType("DeleteWebhooksSuccess*")), t7 = B.TypedReducer$(L.webhook_reducer___updateEditing$closure(), t1, type$.legacy_EditWebhook), t8 = B.TypedReducer$(new L.editingReducer_closure73(), t1, H.findType("UpdateWebhook*")), t9 = B.TypedReducer$(L.webhook_reducer___clearEditing$closure(), t1, type$.legacy_DiscardChanges); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "webhookListReducer", "$get$webhookListReducer", function() { var t1 = type$.legacy_ListUIState, t2 = B.TypedReducer$(L.webhook_reducer___sortWebhooks$closure(), t1, H.findType("SortWebhooks*")), t3 = B.TypedReducer$(L.webhook_reducer___filterWebhooksByState$closure(), t1, H.findType("FilterWebhooksByState*")), t4 = B.TypedReducer$(L.webhook_reducer___filterWebhooks$closure(), t1, H.findType("FilterWebhooks*")), t5 = B.TypedReducer$(L.webhook_reducer___filterWebhooksByCustom1$closure(), t1, H.findType("FilterWebhooksByCustom1*")), t6 = B.TypedReducer$(L.webhook_reducer___filterWebhooksByCustom2$closure(), t1, H.findType("FilterWebhooksByCustom2*")), t7 = B.TypedReducer$(L.webhook_reducer___startListMultiselect$closure(), t1, H.findType("StartWebhookMultiselect*")), t8 = B.TypedReducer$(L.webhook_reducer___addToListMultiselect$closure(), t1, H.findType("AddToWebhookMultiselect*")), t9 = B.TypedReducer$(L.webhook_reducer___removeFromListMultiselect$closure(), t1, H.findType("RemoveFromWebhookMultiselect*")), t10 = B.TypedReducer$(L.webhook_reducer___clearListMultiselect$closure(), t1, H.findType("ClearWebhookMultiselect*")), t11 = B.TypedReducer$(L.webhook_reducer___viewWebhookList$closure(), t1, type$.legacy_ViewWebhookList); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call(), t10.get$$call(), t11.get$$call()], type$.JSArray_of_legacy_legacy_ListUIState_Function_2_legacy_ListUIState_and_dynamic), t1); }); _lazyOld($, "webhooksReducer", "$get$webhooksReducer", function() { var t1 = type$.legacy_WebhookState, t2 = B.TypedReducer$(L.webhook_reducer___updateWebhook$closure(), t1, H.findType("SaveWebhookSuccess*")), t3 = B.TypedReducer$(L.webhook_reducer___addWebhook$closure(), t1, H.findType("AddWebhookSuccess*")), t4 = B.TypedReducer$(L.webhook_reducer___setLoadedWebhooks$closure(), t1, H.findType("LoadWebhooksSuccess*")), t5 = B.TypedReducer$(L.webhook_reducer___setLoadedWebhook$closure(), t1, H.findType("LoadWebhookSuccess*")), t6 = B.TypedReducer$(L.webhook_reducer___setLoadedCompany$closure(), t1, type$.legacy_LoadCompanySuccess), t7 = B.TypedReducer$(L.webhook_reducer___archiveWebhookSuccess$closure(), t1, H.findType("ArchiveWebhooksSuccess*")), t8 = B.TypedReducer$(L.webhook_reducer___deleteWebhookSuccess$closure(), t1, H.findType("DeleteWebhooksSuccess*")), t9 = B.TypedReducer$(L.webhook_reducer___restoreWebhookSuccess$closure(), t1, H.findType("RestoreWebhooksSuccess*")); return B.combineReducers(H.setRuntimeTypeInfo([t2.get$$call(), t3.get$$call(), t4.get$$call(), t5.get$$call(), t6.get$$call(), t7.get$$call(), t8.get$$call(), t9.get$$call()], H.findType("JSArray")), t1); }); _lazyOld($, "memoizedFilteredWebhookList", "$get$memoizedFilteredWebhookList", function() { return O.memo4(new E.memoizedFilteredWebhookList_closure(), type$.legacy_SelectionState, H.findType("BuiltMap*"), type$.legacy_BuiltList_legacy_String, type$.legacy_ListUIState, type$.legacy_List_legacy_String); }); _lazyOld($, "_$webhookStateSerializer", "$get$_$webhookStateSerializer", function() { return new V._$WebhookStateSerializer(); }); _lazyOld($, "_$webhookUIStateSerializer", "$get$_$webhookUIStateSerializer", function() { return new V._$WebhookUIStateSerializer(); }); _lazyOld($, "AppDataTable__headingRowKey", "$get$AppDataTable__headingRowKey", function() { return N.UniqueKey$(); }); _lazyOld($, "_SortArrowState__turnTween0", "$get$_SortArrowState__turnTween0", function() { return R.Tween$(0, 3.141592653589793, type$.legacy_double).chain$1(R.CurveTween$(C.Cubic_JUR0)); }); _lazyOld($, "_ClientEditState__formKey", "$get$_ClientEditState__formKey", function() { return N.GlobalKey_GlobalKey("_clientEdit", type$.legacy_FormState); }); _lazyOld($, "_CompanyGatewayEditState__formKey", "$get$_CompanyGatewayEditState__formKey", function() { return N.GlobalKey_GlobalKey("_companyGatewayEdit", type$.legacy_FormState); }); _lazyOld($, "_CreditEditState__formKey", "$get$_CreditEditState__formKey", function() { return N.GlobalKey_GlobalKey("_creditEdit", type$.legacy_FormState); }); _lazyOld($, "_DesignEditState__formKey", "$get$_DesignEditState__formKey", function() { return N.GlobalKey_GlobalKey("_designEdit", type$.legacy_FormState); }); _lazyOld($, "_DocumentEditState__formKey", "$get$_DocumentEditState__formKey", function() { return N.GlobalKey_GlobalKey("_documentEdit", type$.legacy_FormState); }); _lazyOld($, "_ExpenseEditState__formKey", "$get$_ExpenseEditState__formKey", function() { return N.GlobalKey_GlobalKey("_expenseEdit", type$.legacy_FormState); }); _lazyOld($, "_ExpenseCategoryEditState__formKey", "$get$_ExpenseCategoryEditState__formKey", function() { return N.GlobalKey_GlobalKey("_expenseCategoryEdit", type$.legacy_FormState); }); _lazyOld($, "_GroupEditState__formKey", "$get$_GroupEditState__formKey", function() { return N.GlobalKey_GlobalKey("_groupEdit", type$.legacy_FormState); }); _lazyOld($, "_InvoiceEditState__formKey", "$get$_InvoiceEditState__formKey", function() { return N.GlobalKey_GlobalKey("_invoiceEdit", type$.legacy_FormState); }); _lazyOld($, "_PaymentEditState__formKey", "$get$_PaymentEditState__formKey", function() { return N.GlobalKey_GlobalKey("_paymentEdit", type$.legacy_FormState); }); _lazyOld($, "_PaymentRefundState__formKey", "$get$_PaymentRefundState__formKey", function() { return N.GlobalKey_GlobalKey("_paymentRefund", type$.legacy_FormState); }); _lazyOld($, "_PaymentTermEditState__formKey", "$get$_PaymentTermEditState__formKey", function() { return N.GlobalKey_GlobalKey("_paymentTermEdit", type$.legacy_FormState); }); _lazyOld($, "_ProductEditState__formKey", "$get$_ProductEditState__formKey", function() { return N.GlobalKey_GlobalKey("_productEdit", type$.legacy_FormState); }); _lazyOld($, "_ProjectEditState__formKey", "$get$_ProjectEditState__formKey", function() { return N.GlobalKey_GlobalKey("_projectEdit", type$.legacy_FormState); }); _lazyOld($, "_QuoteEditState__formKey", "$get$_QuoteEditState__formKey", function() { return N.GlobalKey_GlobalKey("_quoteEdit", type$.legacy_FormState); }); _lazyOld($, "_RecurringInvoiceEditState__formKey", "$get$_RecurringInvoiceEditState__formKey", function() { return N.GlobalKey_GlobalKey("_recurringInvoiceEdit", type$.legacy_FormState); }); _lazyOld($, "memoizedClientReport", "$get$memoizedClientReport", function() { return O.memo5(new A.memoizedClientReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedCreditReport", "$get$memoizedCreditReport", function() { return O.memo6(new L.memoizedCreditReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedDocumentReport", "$get$memoizedDocumentReport", function() { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return O.memo10(new R.memoizedDocumentReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_ReportResult); }); _lazyOld($, "memoizedExpenseReport", "$get$memoizedExpenseReport", function() { return O.memo9(new M.memoizedExpenseReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedInvoiceItemReport", "$get$memoizedInvoiceItemReport", function() { return O.memo6(new D.memoizedInvoiceItemReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedInvoiceReport", "$get$memoizedInvoiceReport", function() { return O.memo6(new X.memoizedInvoiceReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedInvoiceTaxReport", "$get$memoizedInvoiceTaxReport", function() { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return O.memo9(new O.memoizedInvoiceTaxReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, H.findType("BuiltMap*"), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedPaymentReport", "$get$memoizedPaymentReport", function() { return O.memo6(new K.memoizedPaymentReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedPaymentTaxReport", "$get$memoizedPaymentTaxReport", function() { var t1 = type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity; return O.memo9(new X.memoizedPaymentTaxReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, H.findType("BuiltMap*"), t1, t1, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedProductReport", "$get$memoizedProductReport", function() { return O.memo6(new N.memoizedProductReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedProfitAndLossReport", "$get$memoizedProfitAndLossReport", function() { return O.memo9(new K.memoizedProfitAndLossReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_PaymentEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ExpenseCategoryEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedQuoteItemReport", "$get$memoizedQuoteItemReport", function() { return O.memo6(new T.memoizedQuoteItemReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProductEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizedQuoteReport", "$get$memoizedQuoteReport", function() { return O.memo7(new Y.memoizedQuoteReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_VendorEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "memoizeedGroupTotals", "$get$memoizeedGroupTotals", function() { return O.memo5(new L.memoizeedGroupTotals_closure(), type$.legacy_ReportResult, type$.legacy_ReportsUIState, type$.legacy_ReportSettingsEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_CurrencyEntity, type$.legacy_CompanyEntity, H.findType("GroupTotals*")); }); _lazyOld($, "memoizedTaskReport", "$get$memoizedTaskReport", function() { return O.memo10(new E.memoizedTaskReport_closure(), type$.legacy_UserCompanyEntity, type$.legacy_ReportsUIState, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_InvoiceEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_GroupEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ClientEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_TaskStatusEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_UserEntity, type$.legacy_BuiltMap_of_legacy_String_and_legacy_ProjectEntity, type$.legacy_StaticState, type$.legacy_ReportResult); }); _lazyOld($, "_AccountManagementState__formKey", "$get$_AccountManagementState__formKey", function() { return N.GlobalKey_GlobalKey("_accountManagement", type$.legacy_FormState); }); _lazyOld($, "_BuyNowButtonsState__formKey", "$get$_BuyNowButtonsState__formKey", function() { return N.GlobalKey_GlobalKey("_buyNowButtons", type$.legacy_FormState); }); _lazyOld($, "_ClientPortalState__formKey", "$get$_ClientPortalState__formKey", function() { return N.GlobalKey_GlobalKey("_clientPortal", type$.legacy_FormState); }); _lazyOld($, "_CompanyDetailsState__formKey", "$get$_CompanyDetailsState__formKey", function() { return N.GlobalKey_GlobalKey("_companyDetails", type$.legacy_FormState); }); _lazyOld($, "_CustomFieldsState__formKey", "$get$_CustomFieldsState__formKey", function() { return N.GlobalKey_GlobalKey("_customFields", type$.legacy_FormState); }); _lazyOld($, "_EmailSettingsState__formKey", "$get$_EmailSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_emailSettings", type$.legacy_FormState); }); _lazyOld($, "_ExpenseSettingsState__formKey", "$get$_ExpenseSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_expenseSettings", type$.legacy_FormState); }); _lazyOld($, "_GeneratedNumbersState__formKey", "$get$_GeneratedNumbersState__formKey", function() { return N.GlobalKey_GlobalKey("_generatedNumbers", type$.legacy_FormState); }); _lazyOld($, "_ImportExportState__formKey", "$get$_ImportExportState__formKey", function() { return N.GlobalKey_GlobalKey("_importExport", type$.legacy_FormState); }); _lazyOld($, "_InvoiceDesignState__formKey", "$get$_InvoiceDesignState__formKey", function() { return N.GlobalKey_GlobalKey("_invoiceDesign", type$.legacy_FormState); }); _lazyOld($, "_LocalizationSettingsState__formKey", "$get$_LocalizationSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_localizationSettings", type$.legacy_FormState); }); _lazyOld($, "_OnlinePaymentsState__formKey", "$get$_OnlinePaymentsState__formKey", function() { return N.GlobalKey_GlobalKey("_onlinePayments", type$.legacy_FormState); }); _lazyOld($, "_ProductSettingsState__formKey", "$get$_ProductSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_productSettings", type$.legacy_FormState); }); _lazyOld($, "_SettingsWizardState__formKey", "$get$_SettingsWizardState__formKey", function() { return N.GlobalKey_GlobalKey("_settingsWizard", type$.legacy_FormState); }); _lazyOld($, "_TaskSettingsState__formKey", "$get$_TaskSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_taskSettings", type$.legacy_FormState); }); _lazyOld($, "_TaxSettingsState__formKey", "$get$_TaxSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_taxSettings", type$.legacy_FormState); }); _lazyOld($, "_TemplatesAndRemindersState__formKey", "$get$_TemplatesAndRemindersState__formKey", function() { return N.GlobalKey_GlobalKey("_templatesAndReminders", type$.legacy_FormState); }); _lazyOld($, "_UserDetailsState__formKey", "$get$_UserDetailsState__formKey", function() { return N.GlobalKey_GlobalKey("_userDetails", type$.legacy_FormState); }); _lazyOld($, "_EnableTwoFactorState__formKey", "$get$_EnableTwoFactorState__formKey", function() { return N.GlobalKey_GlobalKey("_twoFactor", type$.legacy_FormState); }); _lazyOld($, "_WorkflowSettingsState__formKey", "$get$_WorkflowSettingsState__formKey", function() { return N.GlobalKey_GlobalKey("_workflowSettings", type$.legacy_FormState); }); _lazyOld($, "_SubscriptionEditState__formKey", "$get$_SubscriptionEditState__formKey", function() { return N.GlobalKey_GlobalKey("_subscriptionEdit", type$.legacy_FormState); }); _lazyOld($, "_TaskEditState__formKey", "$get$_TaskEditState__formKey", function() { return N.GlobalKey_GlobalKey("_taskEdit", type$.legacy_FormState); }); _lazyOld($, "_TaskStatusEditState__formKey", "$get$_TaskStatusEditState__formKey", function() { return N.GlobalKey_GlobalKey("_taskStatusEdit", type$.legacy_FormState); }); _lazyOld($, "_TaxRateEditState__formKey", "$get$_TaxRateEditState__formKey", function() { return N.GlobalKey_GlobalKey("_taxRateEdit", type$.legacy_FormState); }); _lazyOld($, "_TokenEditState__formKey", "$get$_TokenEditState__formKey", function() { return N.GlobalKey_GlobalKey("_tokenEdit", type$.legacy_FormState); }); _lazyOld($, "_UserEditState__formKey", "$get$_UserEditState__formKey", function() { return N.GlobalKey_GlobalKey("_userEdit", type$.legacy_FormState); }); _lazyOld($, "_VendorEditState__formKey", "$get$_VendorEditState__formKey", function() { return N.GlobalKey_GlobalKey("_vendorEdit", type$.legacy_FormState); }); _lazyOld($, "_WebhookEditState__formKey", "$get$_WebhookEditState__formKey", function() { return N.GlobalKey_GlobalKey("_webhookEdit", type$.legacy_FormState); }); _lazyOld($, "_googleSignIn", "$get$_googleSignIn", function() { return new K.GoogleSignIn(H.setRuntimeTypeInfo(["email", "openid", "profile"], type$.JSArray_legacy_String), P.StreamController_StreamController$broadcast(null, null, false, type$.nullable_GoogleSignInAccount)); }); _lazyFinal($, "Logger_root", "$get$Logger_root", function() { return F.Logger_Logger(""); }); _lazyFinal($, "uuid", "$get$uuid0", function() { return K.Uuid$(); }); _lazyFinal($, "uuid0", "$get$uuid", function() { return K.Uuid$(); }); _lazyFinal($, "_lock", "$get$_lock", function() { return O.Lock_Lock(); }); _lazyFinal($, "PackageInfoPlatform__token", "$get$PackageInfoPlatform__token", function() { return new P.Object(); }); _lazy($, "PackageInfoPlatform__instance", "$get$PackageInfoPlatform__instance", function() { return new D.MethodChannelPackageInfo($.$get$PackageInfoPlatform__token()); }); _lazyFinal($, "context", "$get$context", function() { return new M.Context($.$get$Style_platform(), null); }); _lazyFinal($, "Style_posix", "$get$Style_posix", function() { return new E.PosixStyle(P.RegExp_RegExp("/", true, false), P.RegExp_RegExp("[^/]$", true, false), P.RegExp_RegExp("^/", true, false)); }); _lazyFinal($, "Style_windows", "$get$Style_windows", function() { return new L.WindowsStyle(P.RegExp_RegExp("[/\\\\]", true, false), P.RegExp_RegExp("[^/\\\\]$", true, false), P.RegExp_RegExp("^(\\\\\\\\[^\\\\]+\\\\[^\\\\/]+|[a-zA-Z]:[/\\\\])", true, false), P.RegExp_RegExp("^[/\\\\](?![/\\\\])", true, false)); }); _lazyFinal($, "Style_url", "$get$Style_url", function() { return new F.UrlStyle(P.RegExp_RegExp("/", true, false), P.RegExp_RegExp("(^[a-zA-Z][-+.a-zA-Z\\d]*://|[^/])$", true, false), P.RegExp_RegExp("[a-zA-Z][-+.a-zA-Z\\d]*://[^/]*", true, false), P.RegExp_RegExp("^/", true, false)); }); _lazyFinal($, "Style_platform", "$get$Style_platform", function() { return O.Style__getPlatformStyle(); }); _lazyFinal($, "PathProviderPlatform__token", "$get$PathProviderPlatform__token", function() { return new P.Object(); }); _lazy($, "PathProviderPlatform__instance", "$get$PathProviderPlatform__instance", function() { return new Z.MethodChannelPathProvider(A.MethodChannel$("plugins.flutter.io/path_provider", C.C_StandardMethodCodec, null), $.$get$PathProviderPlatform__token()); }); _lazyFinal($, "PermissionHandlerPlatform__token", "$get$PermissionHandlerPlatform__token", function() { return new P.Object(); }); _lazy($, "PermissionHandlerPlatform__instance", "$get$PermissionHandlerPlatform__instance", function() { return new E.MethodChannelPermissionHandler($.$get$PermissionHandlerPlatform__token()); }); _lazyFinal($, "_logTable", "$get$_logTable", function() { return K._createLogTable(); }); _lazyFinal($, "_expTable", "$get$_expTable", function() { return K._createExpTable(); }); _lazyFinal($, "HubAdapter__instance", "$get$HubAdapter__instance", function() { return new O.HubAdapter(); }); _lazyFinal($, "NoOpHub__instance", "$get$NoOpHub__instance", function() { return new U.NoOpHub(); }); _lazy($, "Sentry__hub", "$get$Sentry__hub", function() { return U.NoOpHub_NoOpHub(); }); _lazy($, "SharedPreferencesStorePlatform__instance", "$get$SharedPreferencesStorePlatform__instance", function() { return new F.MethodChannelSharedPreferencesStore(); }); _lazy($, "_lookupMessagesMap", "$get$_lookupMessagesMap", function() { return P.LinkedHashMap_LinkedHashMap$_literal(["en", new X.EnMessages(), "en_short", new X.EnShortMessages(), "es", new O.EsMessages(), "es_short", new O.EsShortMessages()], type$.String, H.findType("LookupMessages")); }); _lazyFinal($, "UrlLauncherPlatform__token", "$get$UrlLauncherPlatform__token", function() { return new P.Object(); }); _lazy($, "UrlLauncherPlatform__instance", "$get$UrlLauncherPlatform__instance", function() { return new F.MethodChannelUrlLauncher($.$get$UrlLauncherPlatform__token()); }); _lazyFinal($, "UrlLauncherPlugin__supportedSchemes", "$get$UrlLauncherPlugin__supportedSchemes", function() { return P.LinkedHashSet_LinkedHashSet$_literal(["http", "https"], type$.String).union$1(C.Set_4e8j2); }); _lazyFinal($, "Uuid__byteToHex", "$get$Uuid__byteToHex", function() { var i, _list = J.JSArray_JSArray$allocateGrowable(256, type$.String); for (i = 0; i < 256; ++i) _list[i] = C.JSString_methods.padLeft$2(C.JSInt_methods.toRadixString$1(i, 16), 2, "0"); return _list; }); _lazyFinal($, "UuidUtil__random", "$get$UuidUtil__random", function() { return P.Random_Random(null); }); _lazyFinal($, "Version__versionRegex", "$get$Version__versionRegex", function() { return P.RegExp_RegExp("^([\\d.]+)(-([0-9A-Za-z\\-.]+))?(\\+([0-9A-Za-z\\-.]+))?$", true, false); }); _lazyFinal($, "Version__buildRegex", "$get$Version__buildRegex", function() { return P.RegExp_RegExp("^[0-9A-Za-z\\-.]+$", true, false); }); _lazyFinal($, "Version__preReleaseRegex", "$get$Version__preReleaseRegex", function() { return P.RegExp_RegExp("^[0-9A-Za-z\\-]+$", true, false); }); })(); (function nativeSupport() { !function() { var intern = function(s) { var o = {}; o[s] = 1; return Object.keys(hunkHelpers.convertToFastObject(o))[0]; }; init.getIsolateTag = function(name) { return intern("___dart_" + name + init.isolateTag); }; var tableProperty = "___dart_isolate_tags_"; var usedProperties = Object[tableProperty] || (Object[tableProperty] = Object.create(null)); var rootProperty = "_ZxYxX"; for (var i = 0;; i++) { var property = intern(rootProperty + "_" + i + "_"); if (!(property in usedProperties)) { usedProperties[property] = 1; init.isolateTag = property; break; } } init.dispatchPropertyName = init.getIsolateTag("dispatch_record"); }(); hunkHelpers.setOrUpdateInterceptorsByTag({AnimationEffectReadOnly: J.Interceptor, AnimationEffectTiming: J.Interceptor, AnimationEffectTimingReadOnly: J.Interceptor, AnimationTimeline: J.Interceptor, AnimationWorkletGlobalScope: J.Interceptor, AuthenticatorAssertionResponse: J.Interceptor, AuthenticatorAttestationResponse: J.Interceptor, AuthenticatorResponse: J.Interceptor, BackgroundFetchFetch: J.Interceptor, BackgroundFetchManager: J.Interceptor, BackgroundFetchSettledFetch: J.Interceptor, BarProp: J.Interceptor, BarcodeDetector: J.Interceptor, BudgetState: J.Interceptor, CacheStorage: J.Interceptor, CanvasGradient: J.Interceptor, CanvasPattern: J.Interceptor, Clients: J.Interceptor, CookieStore: J.Interceptor, Coordinates: J.Interceptor, CredentialsContainer: J.Interceptor, Crypto: J.Interceptor, CryptoKey: J.Interceptor, CSS: J.Interceptor, CSSVariableReferenceValue: J.Interceptor, CustomElementRegistry: J.Interceptor, DataTransfer: J.Interceptor, DataTransferItem: J.Interceptor, DeprecatedStorageInfo: J.Interceptor, DeprecatedStorageQuota: J.Interceptor, DeprecationReport: J.Interceptor, DetectedBarcode: J.Interceptor, DetectedFace: J.Interceptor, DetectedText: J.Interceptor, DeviceAcceleration: J.Interceptor, DeviceRotationRate: J.Interceptor, DirectoryReader: J.Interceptor, DocumentOrShadowRoot: J.Interceptor, DocumentTimeline: J.Interceptor, DOMImplementation: J.Interceptor, Iterator: J.Interceptor, DOMMatrix: J.Interceptor, DOMMatrixReadOnly: J.Interceptor, DOMParser: J.Interceptor, DOMPoint: J.Interceptor, DOMPointReadOnly: J.Interceptor, DOMQuad: J.Interceptor, DOMStringMap: J.Interceptor, External: J.Interceptor, FaceDetector: J.Interceptor, FontFaceSource: J.Interceptor, FormData: J.Interceptor, GamepadPose: J.Interceptor, Geolocation: J.Interceptor, Position: J.Interceptor, Headers: J.Interceptor, HTMLHyperlinkElementUtils: J.Interceptor, IdleDeadline: J.Interceptor, ImageBitmap: J.Interceptor, ImageBitmapRenderingContext: J.Interceptor, ImageCapture: J.Interceptor, InputDeviceCapabilities: J.Interceptor, IntersectionObserver: J.Interceptor, IntersectionObserverEntry: J.Interceptor, InterventionReport: J.Interceptor, KeyframeEffect: J.Interceptor, KeyframeEffectReadOnly: J.Interceptor, MediaCapabilities: J.Interceptor, MediaCapabilitiesInfo: J.Interceptor, MediaDeviceInfo: J.Interceptor, MediaError: J.Interceptor, MediaKeyStatusMap: J.Interceptor, MediaKeySystemAccess: J.Interceptor, MediaKeys: J.Interceptor, MediaKeysPolicy: J.Interceptor, MediaMetadata: J.Interceptor, MediaSession: J.Interceptor, MediaSettingsRange: J.Interceptor, MemoryInfo: J.Interceptor, MessageChannel: J.Interceptor, Metadata: J.Interceptor, MutationObserver: J.Interceptor, WebKitMutationObserver: J.Interceptor, MutationRecord: J.Interceptor, NavigationPreloadManager: J.Interceptor, NavigatorAutomationInformation: J.Interceptor, NavigatorCookies: J.Interceptor, NodeFilter: J.Interceptor, NodeIterator: J.Interceptor, NonDocumentTypeChildNode: J.Interceptor, NonElementParentNode: J.Interceptor, NoncedElement: J.Interceptor, OffscreenCanvasRenderingContext2D: J.Interceptor, PaintRenderingContext2D: J.Interceptor, PaintSize: J.Interceptor, PaintWorkletGlobalScope: J.Interceptor, Path2D: J.Interceptor, PaymentAddress: J.Interceptor, PaymentInstruments: J.Interceptor, PaymentManager: J.Interceptor, PaymentResponse: J.Interceptor, PerformanceNavigation: J.Interceptor, PerformanceObserver: J.Interceptor, PerformanceObserverEntryList: J.Interceptor, PerformanceTiming: J.Interceptor, Permissions: J.Interceptor, PhotoCapabilities: J.Interceptor, PositionError: J.Interceptor, Presentation: J.Interceptor, PresentationReceiver: J.Interceptor, PushManager: J.Interceptor, PushSubscription: J.Interceptor, PushSubscriptionOptions: J.Interceptor, Range: J.Interceptor, ReportBody: J.Interceptor, ReportingObserver: J.Interceptor, ResizeObserver: J.Interceptor, ResizeObserverEntry: J.Interceptor, RTCCertificate: J.Interceptor, RTCIceCandidate: J.Interceptor, mozRTCIceCandidate: J.Interceptor, RTCRtpContributingSource: J.Interceptor, RTCRtpReceiver: J.Interceptor, RTCRtpSender: J.Interceptor, RTCSessionDescription: J.Interceptor, mozRTCSessionDescription: J.Interceptor, RTCStatsResponse: J.Interceptor, Screen: J.Interceptor, ScrollState: J.Interceptor, ScrollTimeline: J.Interceptor, Selection: J.Interceptor, SharedArrayBuffer: J.Interceptor, SpeechRecognitionAlternative: J.Interceptor, StaticRange: J.Interceptor, StorageManager: J.Interceptor, StyleMedia: J.Interceptor, StylePropertyMap: J.Interceptor, StylePropertyMapReadonly: J.Interceptor, SyncManager: J.Interceptor, TextDetector: J.Interceptor, TextMetrics: J.Interceptor, TrackDefault: J.Interceptor, TreeWalker: J.Interceptor, TrustedHTML: J.Interceptor, TrustedScriptURL: J.Interceptor, TrustedURL: J.Interceptor, UnderlyingSourceBase: J.Interceptor, URLSearchParams: J.Interceptor, VRCoordinateSystem: J.Interceptor, VRDisplayCapabilities: J.Interceptor, VREyeParameters: J.Interceptor, VRFrameData: J.Interceptor, VRFrameOfReference: J.Interceptor, VRPose: J.Interceptor, VRStageBounds: J.Interceptor, VRStageBoundsPoint: J.Interceptor, VRStageParameters: J.Interceptor, ValidityState: J.Interceptor, VideoPlaybackQuality: J.Interceptor, WorkletAnimation: J.Interceptor, WorkletGlobalScope: J.Interceptor, XPathEvaluator: J.Interceptor, XPathExpression: J.Interceptor, XPathNSResolver: J.Interceptor, XPathResult: J.Interceptor, XMLSerializer: J.Interceptor, XSLTProcessor: J.Interceptor, Bluetooth: J.Interceptor, BluetoothCharacteristicProperties: J.Interceptor, BluetoothRemoteGATTServer: J.Interceptor, BluetoothRemoteGATTService: J.Interceptor, BluetoothUUID: J.Interceptor, BudgetService: J.Interceptor, Cache: J.Interceptor, DOMFileSystemSync: J.Interceptor, DirectoryEntrySync: J.Interceptor, DirectoryReaderSync: J.Interceptor, EntrySync: J.Interceptor, FileEntrySync: J.Interceptor, FileReaderSync: J.Interceptor, FileWriterSync: J.Interceptor, HTMLAllCollection: J.Interceptor, Mojo: J.Interceptor, MojoHandle: J.Interceptor, MojoWatcher: J.Interceptor, NFC: J.Interceptor, PagePopupController: J.Interceptor, SubtleCrypto: J.Interceptor, USBAlternateInterface: J.Interceptor, USBConfiguration: J.Interceptor, USBDevice: J.Interceptor, USBEndpoint: J.Interceptor, USBInTransferResult: J.Interceptor, USBInterface: J.Interceptor, USBIsochronousInTransferPacket: J.Interceptor, USBIsochronousInTransferResult: J.Interceptor, USBIsochronousOutTransferPacket: J.Interceptor, USBIsochronousOutTransferResult: J.Interceptor, USBOutTransferResult: J.Interceptor, WorkerLocation: J.Interceptor, Worklet: J.Interceptor, IDBFactory: J.Interceptor, IDBObserver: J.Interceptor, IDBObserverChanges: J.Interceptor, SVGAnimatedAngle: J.Interceptor, SVGAnimatedBoolean: J.Interceptor, SVGAnimatedEnumeration: J.Interceptor, SVGAnimatedInteger: J.Interceptor, SVGAnimatedLength: J.Interceptor, SVGAnimatedLengthList: J.Interceptor, SVGAnimatedNumber: J.Interceptor, SVGAnimatedNumberList: J.Interceptor, SVGAnimatedPreserveAspectRatio: J.Interceptor, SVGAnimatedRect: J.Interceptor, SVGAnimatedString: J.Interceptor, SVGAnimatedTransformList: J.Interceptor, SVGMatrix: J.Interceptor, SVGPoint: J.Interceptor, SVGPreserveAspectRatio: J.Interceptor, SVGUnitTypes: J.Interceptor, AudioListener: J.Interceptor, AudioWorkletGlobalScope: J.Interceptor, AudioWorkletProcessor: J.Interceptor, PeriodicWave: J.Interceptor, ANGLEInstancedArrays: J.Interceptor, ANGLE_instanced_arrays: J.Interceptor, WebGLBuffer: J.Interceptor, WebGLCanvas: J.Interceptor, WebGLColorBufferFloat: J.Interceptor, WebGLCompressedTextureASTC: J.Interceptor, WebGLCompressedTextureATC: J.Interceptor, WEBGL_compressed_texture_atc: J.Interceptor, WebGLCompressedTextureETC1: J.Interceptor, WEBGL_compressed_texture_etc1: J.Interceptor, WebGLCompressedTextureETC: J.Interceptor, WebGLCompressedTexturePVRTC: J.Interceptor, WEBGL_compressed_texture_pvrtc: J.Interceptor, WebGLCompressedTextureS3TC: J.Interceptor, WEBGL_compressed_texture_s3tc: J.Interceptor, WebGLCompressedTextureS3TCsRGB: J.Interceptor, WebGLDebugRendererInfo: J.Interceptor, WEBGL_debug_renderer_info: J.Interceptor, WebGLDebugShaders: J.Interceptor, WEBGL_debug_shaders: J.Interceptor, WebGLDepthTexture: J.Interceptor, WEBGL_depth_texture: J.Interceptor, WebGLDrawBuffers: J.Interceptor, WEBGL_draw_buffers: J.Interceptor, EXTsRGB: J.Interceptor, EXT_sRGB: J.Interceptor, EXTBlendMinMax: J.Interceptor, EXT_blend_minmax: J.Interceptor, EXTColorBufferFloat: J.Interceptor, EXTColorBufferHalfFloat: J.Interceptor, EXTDisjointTimerQuery: J.Interceptor, EXTDisjointTimerQueryWebGL2: J.Interceptor, EXTFragDepth: J.Interceptor, EXT_frag_depth: J.Interceptor, EXTShaderTextureLOD: J.Interceptor, EXT_shader_texture_lod: J.Interceptor, EXTTextureFilterAnisotropic: J.Interceptor, EXT_texture_filter_anisotropic: J.Interceptor, WebGLFramebuffer: J.Interceptor, WebGLGetBufferSubDataAsync: J.Interceptor, WebGLLoseContext: J.Interceptor, WebGLExtensionLoseContext: J.Interceptor, WEBGL_lose_context: J.Interceptor, OESElementIndexUint: J.Interceptor, OES_element_index_uint: J.Interceptor, OESStandardDerivatives: J.Interceptor, OES_standard_derivatives: J.Interceptor, OESTextureFloat: J.Interceptor, OES_texture_float: J.Interceptor, OESTextureFloatLinear: J.Interceptor, OES_texture_float_linear: J.Interceptor, OESTextureHalfFloat: J.Interceptor, OES_texture_half_float: J.Interceptor, OESTextureHalfFloatLinear: J.Interceptor, OES_texture_half_float_linear: J.Interceptor, OESVertexArrayObject: J.Interceptor, OES_vertex_array_object: J.Interceptor, WebGLProgram: J.Interceptor, WebGLQuery: J.Interceptor, WebGLRenderbuffer: J.Interceptor, WebGLRenderingContext: J.Interceptor, WebGL2RenderingContext: J.Interceptor, WebGLSampler: J.Interceptor, WebGLShader: J.Interceptor, WebGLShaderPrecisionFormat: J.Interceptor, WebGLSync: J.Interceptor, WebGLTexture: J.Interceptor, WebGLTimerQueryEXT: J.Interceptor, WebGLTransformFeedback: J.Interceptor, WebGLUniformLocation: J.Interceptor, WebGLVertexArrayObject: J.Interceptor, WebGLVertexArrayObjectOES: J.Interceptor, WebGL: J.Interceptor, WebGL2RenderingContextBase: J.Interceptor, Database: J.Interceptor, SQLError: J.Interceptor, SQLResultSet: J.Interceptor, SQLTransaction: J.Interceptor, ArrayBuffer: H.NativeByteBuffer, ArrayBufferView: H.NativeTypedData, DataView: H.NativeByteData, Float32Array: H.NativeFloat32List, Float64Array: H.NativeFloat64List, Int16Array: H.NativeInt16List, Int32Array: H.NativeInt32List, Int8Array: H.NativeInt8List, Uint16Array: H.NativeUint16List, Uint32Array: H.NativeUint32List, Uint8ClampedArray: H.NativeUint8ClampedList, CanvasPixelArray: H.NativeUint8ClampedList, Uint8Array: H.NativeUint8List, HTMLBRElement: W.HtmlElement, HTMLContentElement: W.HtmlElement, HTMLDListElement: W.HtmlElement, HTMLDataListElement: W.HtmlElement, HTMLDetailsElement: W.HtmlElement, HTMLDialogElement: W.HtmlElement, HTMLHRElement: W.HtmlElement, HTMLHeadElement: W.HtmlElement, HTMLHeadingElement: W.HtmlElement, HTMLHtmlElement: W.HtmlElement, HTMLLegendElement: W.HtmlElement, HTMLLinkElement: W.HtmlElement, HTMLMenuElement: W.HtmlElement, HTMLModElement: W.HtmlElement, HTMLOListElement: W.HtmlElement, HTMLOptGroupElement: W.HtmlElement, HTMLPictureElement: W.HtmlElement, HTMLPreElement: W.HtmlElement, HTMLQuoteElement: W.HtmlElement, HTMLShadowElement: W.HtmlElement, HTMLSourceElement: W.HtmlElement, HTMLTableCaptionElement: W.HtmlElement, HTMLTableCellElement: W.HtmlElement, HTMLTableDataCellElement: W.HtmlElement, HTMLTableHeaderCellElement: W.HtmlElement, HTMLTableColElement: W.HtmlElement, HTMLTimeElement: W.HtmlElement, HTMLTitleElement: W.HtmlElement, HTMLTrackElement: W.HtmlElement, HTMLUListElement: W.HtmlElement, HTMLUnknownElement: W.HtmlElement, HTMLDirectoryElement: W.HtmlElement, HTMLFontElement: W.HtmlElement, HTMLFrameElement: W.HtmlElement, HTMLFrameSetElement: W.HtmlElement, HTMLMarqueeElement: W.HtmlElement, HTMLElement: W.HtmlElement, AccessibleNodeList: W.AccessibleNodeList, HTMLAnchorElement: W.AnchorElement, Animation: W.Animation, HTMLAreaElement: W.AreaElement, BackgroundFetchClickEvent: W.BackgroundFetchEvent, BackgroundFetchEvent: W.BackgroundFetchEvent, BackgroundFetchFailEvent: W.BackgroundFetchEvent, BackgroundFetchedEvent: W.BackgroundFetchEvent, BackgroundFetchRegistration: W.BackgroundFetchRegistration, HTMLBaseElement: W.BaseElement, BeforeUnloadEvent: W.BeforeUnloadEvent, Blob: W.Blob, BluetoothRemoteGATTDescriptor: W.BluetoothRemoteGattDescriptor, Body: W.Body, Request: W.Body, Response: W.Body, HTMLBodyElement: W.BodyElement, BroadcastChannel: W.BroadcastChannel, HTMLButtonElement: W.ButtonElement, HTMLCanvasElement: W.CanvasElement, CanvasRenderingContext2D: W.CanvasRenderingContext2D, CDATASection: W.CharacterData, CharacterData: W.CharacterData, Comment: W.CharacterData, ProcessingInstruction: W.CharacterData, Text: W.CharacterData, Client: W.Client, WindowClient: W.Client, PublicKeyCredential: W.Credential, Credential: W.Credential, CredentialUserData: W.CredentialUserData, CSSKeyframesRule: W.CssKeyframesRule, MozCSSKeyframesRule: W.CssKeyframesRule, WebKitCSSKeyframesRule: W.CssKeyframesRule, CSSKeywordValue: W.CssKeywordValue, CSSNumericValue: W.CssNumericValue, CSSPerspective: W.CssPerspective, CSSCharsetRule: W.CssRule, CSSConditionRule: W.CssRule, CSSFontFaceRule: W.CssRule, CSSGroupingRule: W.CssRule, CSSImportRule: W.CssRule, CSSKeyframeRule: W.CssRule, MozCSSKeyframeRule: W.CssRule, WebKitCSSKeyframeRule: W.CssRule, CSSMediaRule: W.CssRule, CSSNamespaceRule: W.CssRule, CSSPageRule: W.CssRule, CSSStyleRule: W.CssRule, CSSSupportsRule: W.CssRule, CSSViewportRule: W.CssRule, CSSRule: W.CssRule, CSSStyleDeclaration: W.CssStyleDeclaration, MSStyleCSSProperties: W.CssStyleDeclaration, CSS2Properties: W.CssStyleDeclaration, CSSStyleSheet: W.CssStyleSheet, CSSImageValue: W.CssStyleValue, CSSPositionValue: W.CssStyleValue, CSSResourceValue: W.CssStyleValue, CSSURLImageValue: W.CssStyleValue, CSSStyleValue: W.CssStyleValue, CSSMatrixComponent: W.CssTransformComponent, CSSRotation: W.CssTransformComponent, CSSScale: W.CssTransformComponent, CSSSkew: W.CssTransformComponent, CSSTranslation: W.CssTransformComponent, CSSTransformComponent: W.CssTransformComponent, CSSTransformValue: W.CssTransformValue, CSSUnitValue: W.CssUnitValue, CSSUnparsedValue: W.CssUnparsedValue, HTMLDataElement: W.DataElement, DataTransferItemList: W.DataTransferItemList, HTMLDivElement: W.DivElement, XMLDocument: W.Document0, Document: W.Document0, DOMError: W.DomError, DOMException: W.DomException, ClientRectList: W.DomRectList, DOMRectList: W.DomRectList, DOMRectReadOnly: W.DomRectReadOnly, DOMStringList: W.DomStringList, DOMTokenList: W.DomTokenList, Element: W.Element, HTMLEmbedElement: W.EmbedElement, DirectoryEntry: W.Entry, Entry: W.Entry, FileEntry: W.Entry, AnimationEvent: W.Event, AnimationPlaybackEvent: W.Event, ApplicationCacheErrorEvent: W.Event, BeforeInstallPromptEvent: W.Event, BlobEvent: W.Event, ClipboardEvent: W.Event, CloseEvent: W.Event, CustomEvent: W.Event, DeviceMotionEvent: W.Event, DeviceOrientationEvent: W.Event, ErrorEvent: W.Event, FontFaceSetLoadEvent: W.Event, GamepadEvent: W.Event, HashChangeEvent: W.Event, MediaEncryptedEvent: W.Event, MediaKeyMessageEvent: W.Event, MediaStreamEvent: W.Event, MediaStreamTrackEvent: W.Event, MessageEvent: W.Event, MIDIConnectionEvent: W.Event, MIDIMessageEvent: W.Event, MutationEvent: W.Event, PageTransitionEvent: W.Event, PaymentRequestUpdateEvent: W.Event, PopStateEvent: W.Event, PresentationConnectionAvailableEvent: W.Event, PresentationConnectionCloseEvent: W.Event, PromiseRejectionEvent: W.Event, RTCDataChannelEvent: W.Event, RTCDTMFToneChangeEvent: W.Event, RTCPeerConnectionIceEvent: W.Event, RTCTrackEvent: W.Event, SecurityPolicyViolationEvent: W.Event, SensorErrorEvent: W.Event, SpeechRecognitionError: W.Event, SpeechRecognitionEvent: W.Event, StorageEvent: W.Event, TrackEvent: W.Event, TransitionEvent: W.Event, WebKitTransitionEvent: W.Event, VRDeviceEvent: W.Event, VRDisplayEvent: W.Event, VRSessionEvent: W.Event, MojoInterfaceRequestEvent: W.Event, USBConnectionEvent: W.Event, AudioProcessingEvent: W.Event, OfflineAudioCompletionEvent: W.Event, WebGLContextEvent: W.Event, Event: W.Event, InputEvent: W.Event, SubmitEvent: W.Event, AbsoluteOrientationSensor: W.EventTarget, Accelerometer: W.EventTarget, AccessibleNode: W.EventTarget, AmbientLightSensor: W.EventTarget, ApplicationCache: W.EventTarget, DOMApplicationCache: W.EventTarget, OfflineResourceList: W.EventTarget, BatteryManager: W.EventTarget, EventSource: W.EventTarget, Gyroscope: W.EventTarget, LinearAccelerationSensor: W.EventTarget, Magnetometer: W.EventTarget, MediaDevices: W.EventTarget, MediaRecorder: W.EventTarget, MediaSource: W.EventTarget, MIDIAccess: W.EventTarget, NetworkInformation: W.EventTarget, OrientationSensor: W.EventTarget, Performance: W.EventTarget, PermissionStatus: W.EventTarget, PresentationConnectionList: W.EventTarget, PresentationRequest: W.EventTarget, RelativeOrientationSensor: W.EventTarget, RemotePlayback: W.EventTarget, RTCDTMFSender: W.EventTarget, RTCPeerConnection: W.EventTarget, webkitRTCPeerConnection: W.EventTarget, mozRTCPeerConnection: W.EventTarget, Sensor: W.EventTarget, ServiceWorker: W.EventTarget, ServiceWorkerContainer: W.EventTarget, ServiceWorkerRegistration: W.EventTarget, SharedWorker: W.EventTarget, SpeechRecognition: W.EventTarget, SpeechSynthesis: W.EventTarget, VR: W.EventTarget, VRDevice: W.EventTarget, VRDisplay: W.EventTarget, VRSession: W.EventTarget, VisualViewport: W.EventTarget, WebSocket: W.EventTarget, Worker: W.EventTarget, WorkerPerformance: W.EventTarget, BluetoothDevice: W.EventTarget, BluetoothRemoteGATTCharacteristic: W.EventTarget, Clipboard: W.EventTarget, MojoInterfaceInterceptor: W.EventTarget, USB: W.EventTarget, IDBOpenDBRequest: W.EventTarget, IDBVersionChangeRequest: W.EventTarget, IDBRequest: W.EventTarget, IDBTransaction: W.EventTarget, AnalyserNode: W.EventTarget, RealtimeAnalyserNode: W.EventTarget, AudioBufferSourceNode: W.EventTarget, AudioDestinationNode: W.EventTarget, AudioNode: W.EventTarget, AudioScheduledSourceNode: W.EventTarget, AudioWorkletNode: W.EventTarget, BiquadFilterNode: W.EventTarget, ChannelMergerNode: W.EventTarget, AudioChannelMerger: W.EventTarget, ChannelSplitterNode: W.EventTarget, AudioChannelSplitter: W.EventTarget, ConstantSourceNode: W.EventTarget, ConvolverNode: W.EventTarget, DelayNode: W.EventTarget, DynamicsCompressorNode: W.EventTarget, GainNode: W.EventTarget, AudioGainNode: W.EventTarget, IIRFilterNode: W.EventTarget, MediaElementAudioSourceNode: W.EventTarget, MediaStreamAudioDestinationNode: W.EventTarget, MediaStreamAudioSourceNode: W.EventTarget, OscillatorNode: W.EventTarget, Oscillator: W.EventTarget, PannerNode: W.EventTarget, AudioPannerNode: W.EventTarget, webkitAudioPannerNode: W.EventTarget, ScriptProcessorNode: W.EventTarget, JavaScriptAudioNode: W.EventTarget, StereoPannerNode: W.EventTarget, WaveShaperNode: W.EventTarget, EventTarget: W.EventTarget, AbortPaymentEvent: W.ExtendableEvent, CanMakePaymentEvent: W.ExtendableEvent, ExtendableMessageEvent: W.ExtendableEvent, FetchEvent: W.ExtendableEvent, ForeignFetchEvent: W.ExtendableEvent, InstallEvent: W.ExtendableEvent, NotificationEvent: W.ExtendableEvent, PaymentRequestEvent: W.ExtendableEvent, PushEvent: W.ExtendableEvent, SyncEvent: W.ExtendableEvent, ExtendableEvent: W.ExtendableEvent, FederatedCredential: W.FederatedCredential, HTMLFieldSetElement: W.FieldSetElement, File: W.File, FileList: W.FileList, FileReader: W.FileReader, DOMFileSystem: W.FileSystem, FileWriter: W.FileWriter, FontFace: W.FontFace, FontFaceSet: W.FontFaceSet, HTMLFormElement: W.FormElement, Gamepad: W.Gamepad, GamepadButton: W.GamepadButton, History: W.History, HTMLCollection: W.HtmlCollection, HTMLFormControlsCollection: W.HtmlCollection, HTMLOptionsCollection: W.HtmlCollection, HTMLDocument: W.HtmlDocument, XMLHttpRequest: W.HttpRequest, XMLHttpRequestUpload: W.HttpRequestEventTarget, XMLHttpRequestEventTarget: W.HttpRequestEventTarget, HTMLIFrameElement: W.IFrameElement, ImageData: W.ImageData, HTMLImageElement: W.ImageElement, HTMLInputElement: W.InputElement, KeyboardEvent: W.KeyboardEvent, HTMLLIElement: W.LIElement, HTMLLabelElement: W.LabelElement, Location: W.Location, HTMLMapElement: W.MapElement, HTMLAudioElement: W.MediaElement, HTMLMediaElement: W.MediaElement, MediaKeySession: W.MediaKeySession, MediaList: W.MediaList, MediaQueryList: W.MediaQueryList, MediaQueryListEvent: W.MediaQueryListEvent, MediaStream: W.MediaStream, CanvasCaptureMediaStreamTrack: W.MediaStreamTrack, MediaStreamTrack: W.MediaStreamTrack, MessagePort: W.MessagePort, HTMLMetaElement: W.MetaElement, HTMLMeterElement: W.MeterElement, MIDIInputMap: W.MidiInputMap, MIDIOutputMap: W.MidiOutputMap, MIDIInput: W.MidiPort, MIDIOutput: W.MidiPort, MIDIPort: W.MidiPort, MimeType: W.MimeType, MimeTypeArray: W.MimeTypeArray, MouseEvent: W.MouseEvent, DragEvent: W.MouseEvent, Navigator: W.Navigator0, WorkerNavigator: W.NavigatorConcurrentHardware, NavigatorConcurrentHardware: W.NavigatorConcurrentHardware, NavigatorUserMediaError: W.NavigatorUserMediaError, DocumentFragment: W.Node, ShadowRoot: W.Node, DocumentType: W.Node, Node: W.Node, NodeList: W.NodeList, RadioNodeList: W.NodeList, Notification: W.Notification, HTMLObjectElement: W.ObjectElement, OffscreenCanvas: W.OffscreenCanvas, HTMLOptionElement: W.OptionElement, HTMLOutputElement: W.OutputElement, OverconstrainedError: W.OverconstrainedError, HTMLParagraphElement: W.ParagraphElement, HTMLParamElement: W.ParamElement, PasswordCredential: W.PasswordCredential, PaymentRequest: W.PaymentRequest, PerformanceEntry: W.PerformanceEntry, PerformanceLongTaskTiming: W.PerformanceEntry, PerformanceMark: W.PerformanceEntry, PerformanceMeasure: W.PerformanceEntry, PerformanceNavigationTiming: W.PerformanceEntry, PerformancePaintTiming: W.PerformanceEntry, PerformanceResourceTiming: W.PerformanceEntry, TaskAttributionTiming: W.PerformanceEntry, PerformanceServerTiming: W.PerformanceServerTiming, Plugin: W.Plugin, PluginArray: W.PluginArray, PointerEvent: W.PointerEvent, PresentationAvailability: W.PresentationAvailability, PresentationConnection: W.PresentationConnection, HTMLProgressElement: W.ProgressElement, ProgressEvent: W.ProgressEvent, ResourceProgressEvent: W.ProgressEvent, PushMessageData: W.PushMessageData, RelatedApplication: W.RelatedApplication, RTCDataChannel: W.RtcDataChannel, DataChannel: W.RtcDataChannel, RTCLegacyStatsReport: W.RtcLegacyStatsReport, RTCStatsReport: W.RtcStatsReport, ScreenOrientation: W.ScreenOrientation, HTMLScriptElement: W.ScriptElement, HTMLSelectElement: W.SelectElement, SharedWorkerGlobalScope: W.SharedWorkerGlobalScope, HTMLSlotElement: W.SlotElement, SourceBuffer: W.SourceBuffer, SourceBufferList: W.SourceBufferList, HTMLSpanElement: W.SpanElement, SpeechGrammar: W.SpeechGrammar, SpeechGrammarList: W.SpeechGrammarList, SpeechRecognitionResult: W.SpeechRecognitionResult, SpeechSynthesisEvent: W.SpeechSynthesisEvent, SpeechSynthesisUtterance: W.SpeechSynthesisUtterance, SpeechSynthesisVoice: W.SpeechSynthesisVoice, Storage: W.Storage, HTMLStyleElement: W.StyleElement, StyleSheet: W.StyleSheet, HTMLTableElement: W.TableElement, HTMLTableRowElement: W.TableRowElement, HTMLTableSectionElement: W.TableSectionElement, HTMLTemplateElement: W.TemplateElement, HTMLTextAreaElement: W.TextAreaElement, TextTrack: W.TextTrack, TextTrackCue: W.TextTrackCue, TextTrackCueList: W.TextTrackCueList, TextTrackList: W.TextTrackList, TimeRanges: W.TimeRanges, Touch: W.Touch, TouchEvent: W.TouchEvent, TouchList: W.TouchList, TrackDefaultList: W.TrackDefaultList, CompositionEvent: W.UIEvent, FocusEvent: W.UIEvent, TextEvent: W.UIEvent, UIEvent: W.UIEvent, URL: W.Url, HTMLVideoElement: W.VideoElement, VideoTrack: W.VideoTrack, VideoTrackList: W.VideoTrackList, VTTCue: W.VttCue, VTTRegion: W.VttRegion, WheelEvent: W.WheelEvent, Window: W.Window, DOMWindow: W.Window, DedicatedWorkerGlobalScope: W.WorkerGlobalScope, ServiceWorkerGlobalScope: W.WorkerGlobalScope, WorkerGlobalScope: W.WorkerGlobalScope, Attr: W._Attr, CSSRuleList: W._CssRuleList, ClientRect: W._DomRect, DOMRect: W._DomRect, GamepadList: W._GamepadList, NamedNodeMap: W._NamedNodeMap, MozNamedAttrMap: W._NamedNodeMap, Report: W._Report, SpeechRecognitionResultList: W._SpeechRecognitionResultList, StyleSheetList: W._StyleSheetList, IDBCursor: P.Cursor, IDBCursorWithValue: P.CursorWithValue, IDBDatabase: P.Database, IDBIndex: P.Index, IDBKeyRange: P.KeyRange, IDBObjectStore: P.ObjectStore, IDBObservation: P.Observation, IDBVersionChangeEvent: P.VersionChangeEvent, SVGAngle: P.Angle, SVGAElement: P.GraphicsElement, SVGCircleElement: P.GraphicsElement, SVGClipPathElement: P.GraphicsElement, SVGDefsElement: P.GraphicsElement, SVGEllipseElement: P.GraphicsElement, SVGForeignObjectElement: P.GraphicsElement, SVGGElement: P.GraphicsElement, SVGGeometryElement: P.GraphicsElement, SVGImageElement: P.GraphicsElement, SVGLineElement: P.GraphicsElement, SVGPathElement: P.GraphicsElement, SVGPolygonElement: P.GraphicsElement, SVGPolylineElement: P.GraphicsElement, SVGRectElement: P.GraphicsElement, SVGSwitchElement: P.GraphicsElement, SVGTSpanElement: P.GraphicsElement, SVGTextContentElement: P.GraphicsElement, SVGTextElement: P.GraphicsElement, SVGTextPathElement: P.GraphicsElement, SVGTextPositioningElement: P.GraphicsElement, SVGUseElement: P.GraphicsElement, SVGGraphicsElement: P.GraphicsElement, SVGLength: P.Length, SVGLengthList: P.LengthList, SVGNumber: P.Number, SVGNumberList: P.NumberList, SVGPointList: P.PointList, SVGRect: P.Rect0, SVGScriptElement: P.ScriptElement0, SVGStringList: P.StringList, SVGAnimateElement: P.SvgElement, SVGAnimateMotionElement: P.SvgElement, SVGAnimateTransformElement: P.SvgElement, SVGAnimationElement: P.SvgElement, SVGDescElement: P.SvgElement, SVGDiscardElement: P.SvgElement, SVGFEBlendElement: P.SvgElement, SVGFEColorMatrixElement: P.SvgElement, SVGFEComponentTransferElement: P.SvgElement, SVGFECompositeElement: P.SvgElement, SVGFEConvolveMatrixElement: P.SvgElement, SVGFEDiffuseLightingElement: P.SvgElement, SVGFEDisplacementMapElement: P.SvgElement, SVGFEDistantLightElement: P.SvgElement, SVGFEFloodElement: P.SvgElement, SVGFEFuncAElement: P.SvgElement, SVGFEFuncBElement: P.SvgElement, SVGFEFuncGElement: P.SvgElement, SVGFEFuncRElement: P.SvgElement, SVGFEGaussianBlurElement: P.SvgElement, SVGFEImageElement: P.SvgElement, SVGFEMergeElement: P.SvgElement, SVGFEMergeNodeElement: P.SvgElement, SVGFEMorphologyElement: P.SvgElement, SVGFEOffsetElement: P.SvgElement, SVGFEPointLightElement: P.SvgElement, SVGFESpecularLightingElement: P.SvgElement, SVGFESpotLightElement: P.SvgElement, SVGFETileElement: P.SvgElement, SVGFETurbulenceElement: P.SvgElement, SVGFilterElement: P.SvgElement, SVGLinearGradientElement: P.SvgElement, SVGMarkerElement: P.SvgElement, SVGMaskElement: P.SvgElement, SVGMetadataElement: P.SvgElement, SVGPatternElement: P.SvgElement, SVGRadialGradientElement: P.SvgElement, SVGSetElement: P.SvgElement, SVGStopElement: P.SvgElement, SVGStyleElement: P.SvgElement, SVGSymbolElement: P.SvgElement, SVGTitleElement: P.SvgElement, SVGViewElement: P.SvgElement, SVGGradientElement: P.SvgElement, SVGComponentTransferFunctionElement: P.SvgElement, SVGFEDropShadowElement: P.SvgElement, SVGMPathElement: P.SvgElement, SVGElement: P.SvgElement, SVGSVGElement: P.SvgSvgElement, SVGTransform: P.Transform0, SVGTransformList: P.TransformList, AudioBuffer: P.AudioBuffer, AudioParam: P.AudioParam, AudioParamMap: P.AudioParamMap, AudioTrack: P.AudioTrack, AudioTrackList: P.AudioTrackList, AudioContext: P.BaseAudioContext, webkitAudioContext: P.BaseAudioContext, BaseAudioContext: P.BaseAudioContext, OfflineAudioContext: P.OfflineAudioContext, WebGLActiveInfo: P.ActiveInfo, SQLResultSetRowList: P.SqlResultSetRowList}); hunkHelpers.setOrUpdateLeafTags({AnimationEffectReadOnly: true, AnimationEffectTiming: true, AnimationEffectTimingReadOnly: true, AnimationTimeline: true, AnimationWorkletGlobalScope: true, AuthenticatorAssertionResponse: true, AuthenticatorAttestationResponse: true, AuthenticatorResponse: true, BackgroundFetchFetch: true, BackgroundFetchManager: true, BackgroundFetchSettledFetch: true, BarProp: true, BarcodeDetector: true, BudgetState: true, CacheStorage: true, CanvasGradient: true, CanvasPattern: true, Clients: true, CookieStore: true, Coordinates: true, CredentialsContainer: true, Crypto: true, CryptoKey: true, CSS: true, CSSVariableReferenceValue: true, CustomElementRegistry: true, DataTransfer: true, DataTransferItem: true, DeprecatedStorageInfo: true, DeprecatedStorageQuota: true, DeprecationReport: true, DetectedBarcode: true, DetectedFace: true, DetectedText: true, DeviceAcceleration: true, DeviceRotationRate: true, DirectoryReader: true, DocumentOrShadowRoot: true, DocumentTimeline: true, DOMImplementation: true, Iterator: true, DOMMatrix: true, DOMMatrixReadOnly: true, DOMParser: true, DOMPoint: true, DOMPointReadOnly: true, DOMQuad: true, DOMStringMap: true, External: true, FaceDetector: true, FontFaceSource: true, FormData: true, GamepadPose: true, Geolocation: true, Position: true, Headers: true, HTMLHyperlinkElementUtils: true, IdleDeadline: true, ImageBitmap: true, ImageBitmapRenderingContext: true, ImageCapture: true, InputDeviceCapabilities: true, IntersectionObserver: true, IntersectionObserverEntry: true, InterventionReport: true, KeyframeEffect: true, KeyframeEffectReadOnly: true, MediaCapabilities: true, MediaCapabilitiesInfo: true, MediaDeviceInfo: true, MediaError: true, MediaKeyStatusMap: true, MediaKeySystemAccess: true, MediaKeys: true, MediaKeysPolicy: true, MediaMetadata: true, MediaSession: true, MediaSettingsRange: true, MemoryInfo: true, MessageChannel: true, Metadata: true, MutationObserver: true, WebKitMutationObserver: true, MutationRecord: true, NavigationPreloadManager: true, NavigatorAutomationInformation: true, NavigatorCookies: true, NodeFilter: true, NodeIterator: true, NonDocumentTypeChildNode: true, NonElementParentNode: true, NoncedElement: true, OffscreenCanvasRenderingContext2D: true, PaintRenderingContext2D: true, PaintSize: true, PaintWorkletGlobalScope: true, Path2D: true, PaymentAddress: true, PaymentInstruments: true, PaymentManager: true, PaymentResponse: true, PerformanceNavigation: true, PerformanceObserver: true, PerformanceObserverEntryList: true, PerformanceTiming: true, Permissions: true, PhotoCapabilities: true, PositionError: true, Presentation: true, PresentationReceiver: true, PushManager: true, PushSubscription: true, PushSubscriptionOptions: true, Range: true, ReportBody: true, ReportingObserver: true, ResizeObserver: true, ResizeObserverEntry: true, RTCCertificate: true, RTCIceCandidate: true, mozRTCIceCandidate: true, RTCRtpContributingSource: true, RTCRtpReceiver: true, RTCRtpSender: true, RTCSessionDescription: true, mozRTCSessionDescription: true, RTCStatsResponse: true, Screen: true, ScrollState: true, ScrollTimeline: true, Selection: true, SharedArrayBuffer: true, SpeechRecognitionAlternative: true, StaticRange: true, StorageManager: true, StyleMedia: true, StylePropertyMap: true, StylePropertyMapReadonly: true, SyncManager: true, TextDetector: true, TextMetrics: true, TrackDefault: true, TreeWalker: true, TrustedHTML: true, TrustedScriptURL: true, TrustedURL: true, UnderlyingSourceBase: true, URLSearchParams: true, VRCoordinateSystem: true, VRDisplayCapabilities: true, VREyeParameters: true, VRFrameData: true, VRFrameOfReference: true, VRPose: true, VRStageBounds: true, VRStageBoundsPoint: true, VRStageParameters: true, ValidityState: true, VideoPlaybackQuality: true, WorkletAnimation: true, WorkletGlobalScope: true, XPathEvaluator: true, XPathExpression: true, XPathNSResolver: true, XPathResult: true, XMLSerializer: true, XSLTProcessor: true, Bluetooth: true, BluetoothCharacteristicProperties: true, BluetoothRemoteGATTServer: true, BluetoothRemoteGATTService: true, BluetoothUUID: true, BudgetService: true, Cache: true, DOMFileSystemSync: true, DirectoryEntrySync: true, DirectoryReaderSync: true, EntrySync: true, FileEntrySync: true, FileReaderSync: true, FileWriterSync: true, HTMLAllCollection: true, Mojo: true, MojoHandle: true, MojoWatcher: true, NFC: true, PagePopupController: true, SubtleCrypto: true, USBAlternateInterface: true, USBConfiguration: true, USBDevice: true, USBEndpoint: true, USBInTransferResult: true, USBInterface: true, USBIsochronousInTransferPacket: true, USBIsochronousInTransferResult: true, USBIsochronousOutTransferPacket: true, USBIsochronousOutTransferResult: true, USBOutTransferResult: true, WorkerLocation: true, Worklet: true, IDBFactory: true, IDBObserver: true, IDBObserverChanges: true, SVGAnimatedAngle: true, SVGAnimatedBoolean: true, SVGAnimatedEnumeration: true, SVGAnimatedInteger: true, SVGAnimatedLength: true, SVGAnimatedLengthList: true, SVGAnimatedNumber: true, SVGAnimatedNumberList: true, SVGAnimatedPreserveAspectRatio: true, SVGAnimatedRect: true, SVGAnimatedString: true, SVGAnimatedTransformList: true, SVGMatrix: true, SVGPoint: true, SVGPreserveAspectRatio: true, SVGUnitTypes: true, AudioListener: true, AudioWorkletGlobalScope: true, AudioWorkletProcessor: true, PeriodicWave: true, ANGLEInstancedArrays: true, ANGLE_instanced_arrays: true, WebGLBuffer: true, WebGLCanvas: true, WebGLColorBufferFloat: true, WebGLCompressedTextureASTC: true, WebGLCompressedTextureATC: true, WEBGL_compressed_texture_atc: true, WebGLCompressedTextureETC1: true, WEBGL_compressed_texture_etc1: true, WebGLCompressedTextureETC: true, WebGLCompressedTexturePVRTC: true, WEBGL_compressed_texture_pvrtc: true, WebGLCompressedTextureS3TC: true, WEBGL_compressed_texture_s3tc: true, WebGLCompressedTextureS3TCsRGB: true, WebGLDebugRendererInfo: true, WEBGL_debug_renderer_info: true, WebGLDebugShaders: true, WEBGL_debug_shaders: true, WebGLDepthTexture: true, WEBGL_depth_texture: true, WebGLDrawBuffers: true, WEBGL_draw_buffers: true, EXTsRGB: true, EXT_sRGB: true, EXTBlendMinMax: true, EXT_blend_minmax: true, EXTColorBufferFloat: true, EXTColorBufferHalfFloat: true, EXTDisjointTimerQuery: true, EXTDisjointTimerQueryWebGL2: true, EXTFragDepth: true, EXT_frag_depth: true, EXTShaderTextureLOD: true, EXT_shader_texture_lod: true, EXTTextureFilterAnisotropic: true, EXT_texture_filter_anisotropic: true, WebGLFramebuffer: true, WebGLGetBufferSubDataAsync: true, WebGLLoseContext: true, WebGLExtensionLoseContext: true, WEBGL_lose_context: true, OESElementIndexUint: true, OES_element_index_uint: true, OESStandardDerivatives: true, OES_standard_derivatives: true, OESTextureFloat: true, OES_texture_float: true, OESTextureFloatLinear: true, OES_texture_float_linear: true, OESTextureHalfFloat: true, OES_texture_half_float: true, OESTextureHalfFloatLinear: true, OES_texture_half_float_linear: true, OESVertexArrayObject: true, OES_vertex_array_object: true, WebGLProgram: true, WebGLQuery: true, WebGLRenderbuffer: true, WebGLRenderingContext: true, WebGL2RenderingContext: true, WebGLSampler: true, WebGLShader: true, WebGLShaderPrecisionFormat: true, WebGLSync: true, WebGLTexture: true, WebGLTimerQueryEXT: true, WebGLTransformFeedback: true, WebGLUniformLocation: true, WebGLVertexArrayObject: true, WebGLVertexArrayObjectOES: true, WebGL: true, WebGL2RenderingContextBase: true, Database: true, SQLError: true, SQLResultSet: true, SQLTransaction: true, ArrayBuffer: true, ArrayBufferView: false, DataView: true, Float32Array: true, Float64Array: true, Int16Array: true, Int32Array: true, Int8Array: true, Uint16Array: true, Uint32Array: true, Uint8ClampedArray: true, CanvasPixelArray: true, Uint8Array: false, HTMLBRElement: true, HTMLContentElement: true, HTMLDListElement: true, HTMLDataListElement: true, HTMLDetailsElement: true, HTMLDialogElement: true, HTMLHRElement: true, HTMLHeadElement: true, HTMLHeadingElement: true, HTMLHtmlElement: true, HTMLLegendElement: true, HTMLLinkElement: true, HTMLMenuElement: true, HTMLModElement: true, HTMLOListElement: true, HTMLOptGroupElement: true, HTMLPictureElement: true, HTMLPreElement: true, HTMLQuoteElement: true, HTMLShadowElement: true, HTMLSourceElement: true, HTMLTableCaptionElement: true, HTMLTableCellElement: true, HTMLTableDataCellElement: true, HTMLTableHeaderCellElement: true, HTMLTableColElement: true, HTMLTimeElement: true, HTMLTitleElement: true, HTMLTrackElement: true, HTMLUListElement: true, HTMLUnknownElement: true, HTMLDirectoryElement: true, HTMLFontElement: true, HTMLFrameElement: true, HTMLFrameSetElement: true, HTMLMarqueeElement: true, HTMLElement: false, AccessibleNodeList: true, HTMLAnchorElement: true, Animation: true, HTMLAreaElement: true, BackgroundFetchClickEvent: true, BackgroundFetchEvent: true, BackgroundFetchFailEvent: true, BackgroundFetchedEvent: true, BackgroundFetchRegistration: true, HTMLBaseElement: true, BeforeUnloadEvent: true, Blob: false, BluetoothRemoteGATTDescriptor: true, Body: true, Request: true, Response: true, HTMLBodyElement: true, BroadcastChannel: true, HTMLButtonElement: true, HTMLCanvasElement: true, CanvasRenderingContext2D: true, CDATASection: true, CharacterData: true, Comment: true, ProcessingInstruction: true, Text: true, Client: true, WindowClient: true, PublicKeyCredential: true, Credential: false, CredentialUserData: true, CSSKeyframesRule: true, MozCSSKeyframesRule: true, WebKitCSSKeyframesRule: true, CSSKeywordValue: true, CSSNumericValue: false, CSSPerspective: true, CSSCharsetRule: true, CSSConditionRule: true, CSSFontFaceRule: true, CSSGroupingRule: true, CSSImportRule: true, CSSKeyframeRule: true, MozCSSKeyframeRule: true, WebKitCSSKeyframeRule: true, CSSMediaRule: true, CSSNamespaceRule: true, CSSPageRule: true, CSSStyleRule: true, CSSSupportsRule: true, CSSViewportRule: true, CSSRule: false, CSSStyleDeclaration: true, MSStyleCSSProperties: true, CSS2Properties: true, CSSStyleSheet: true, CSSImageValue: true, CSSPositionValue: true, CSSResourceValue: true, CSSURLImageValue: true, CSSStyleValue: false, CSSMatrixComponent: true, CSSRotation: true, CSSScale: true, CSSSkew: true, CSSTranslation: true, CSSTransformComponent: false, CSSTransformValue: true, CSSUnitValue: true, CSSUnparsedValue: true, HTMLDataElement: true, DataTransferItemList: true, HTMLDivElement: true, XMLDocument: true, Document: false, DOMError: true, DOMException: true, ClientRectList: true, DOMRectList: true, DOMRectReadOnly: false, DOMStringList: true, DOMTokenList: true, Element: false, HTMLEmbedElement: true, DirectoryEntry: true, Entry: true, FileEntry: true, AnimationEvent: true, AnimationPlaybackEvent: true, ApplicationCacheErrorEvent: true, BeforeInstallPromptEvent: true, BlobEvent: true, ClipboardEvent: true, CloseEvent: true, CustomEvent: true, DeviceMotionEvent: true, DeviceOrientationEvent: true, ErrorEvent: true, FontFaceSetLoadEvent: true, GamepadEvent: true, HashChangeEvent: true, MediaEncryptedEvent: true, MediaKeyMessageEvent: true, MediaStreamEvent: true, MediaStreamTrackEvent: true, MessageEvent: true, MIDIConnectionEvent: true, MIDIMessageEvent: true, MutationEvent: true, PageTransitionEvent: true, PaymentRequestUpdateEvent: true, PopStateEvent: true, PresentationConnectionAvailableEvent: true, PresentationConnectionCloseEvent: true, PromiseRejectionEvent: true, RTCDataChannelEvent: true, RTCDTMFToneChangeEvent: true, RTCPeerConnectionIceEvent: true, RTCTrackEvent: true, SecurityPolicyViolationEvent: true, SensorErrorEvent: true, SpeechRecognitionError: true, SpeechRecognitionEvent: true, StorageEvent: true, TrackEvent: true, TransitionEvent: true, WebKitTransitionEvent: true, VRDeviceEvent: true, VRDisplayEvent: true, VRSessionEvent: true, MojoInterfaceRequestEvent: true, USBConnectionEvent: true, AudioProcessingEvent: true, OfflineAudioCompletionEvent: true, WebGLContextEvent: true, Event: false, InputEvent: false, SubmitEvent: false, AbsoluteOrientationSensor: true, Accelerometer: true, AccessibleNode: true, AmbientLightSensor: true, ApplicationCache: true, DOMApplicationCache: true, OfflineResourceList: true, BatteryManager: true, EventSource: true, Gyroscope: true, LinearAccelerationSensor: true, Magnetometer: true, MediaDevices: true, MediaRecorder: true, MediaSource: true, MIDIAccess: true, NetworkInformation: true, OrientationSensor: true, Performance: true, PermissionStatus: true, PresentationConnectionList: true, PresentationRequest: true, RelativeOrientationSensor: true, RemotePlayback: true, RTCDTMFSender: true, RTCPeerConnection: true, webkitRTCPeerConnection: true, mozRTCPeerConnection: true, Sensor: true, ServiceWorker: true, ServiceWorkerContainer: true, ServiceWorkerRegistration: true, SharedWorker: true, SpeechRecognition: true, SpeechSynthesis: true, VR: true, VRDevice: true, VRDisplay: true, VRSession: true, VisualViewport: true, WebSocket: true, Worker: true, WorkerPerformance: true, BluetoothDevice: true, BluetoothRemoteGATTCharacteristic: true, Clipboard: true, MojoInterfaceInterceptor: true, USB: true, IDBOpenDBRequest: true, IDBVersionChangeRequest: true, IDBRequest: true, IDBTransaction: true, AnalyserNode: true, RealtimeAnalyserNode: true, AudioBufferSourceNode: true, AudioDestinationNode: true, AudioNode: true, AudioScheduledSourceNode: true, AudioWorkletNode: true, BiquadFilterNode: true, ChannelMergerNode: true, AudioChannelMerger: true, ChannelSplitterNode: true, AudioChannelSplitter: true, ConstantSourceNode: true, ConvolverNode: true, DelayNode: true, DynamicsCompressorNode: true, GainNode: true, AudioGainNode: true, IIRFilterNode: true, MediaElementAudioSourceNode: true, MediaStreamAudioDestinationNode: true, MediaStreamAudioSourceNode: true, OscillatorNode: true, Oscillator: true, PannerNode: true, AudioPannerNode: true, webkitAudioPannerNode: true, ScriptProcessorNode: true, JavaScriptAudioNode: true, StereoPannerNode: true, WaveShaperNode: true, EventTarget: false, AbortPaymentEvent: true, CanMakePaymentEvent: true, ExtendableMessageEvent: true, FetchEvent: true, ForeignFetchEvent: true, InstallEvent: true, NotificationEvent: true, PaymentRequestEvent: true, PushEvent: true, SyncEvent: true, ExtendableEvent: false, FederatedCredential: true, HTMLFieldSetElement: true, File: true, FileList: true, FileReader: true, DOMFileSystem: true, FileWriter: true, FontFace: true, FontFaceSet: true, HTMLFormElement: true, Gamepad: true, GamepadButton: true, History: true, HTMLCollection: true, HTMLFormControlsCollection: true, HTMLOptionsCollection: true, HTMLDocument: true, XMLHttpRequest: true, XMLHttpRequestUpload: true, XMLHttpRequestEventTarget: false, HTMLIFrameElement: true, ImageData: true, HTMLImageElement: true, HTMLInputElement: true, KeyboardEvent: true, HTMLLIElement: true, HTMLLabelElement: true, Location: true, HTMLMapElement: true, HTMLAudioElement: true, HTMLMediaElement: false, MediaKeySession: true, MediaList: true, MediaQueryList: true, MediaQueryListEvent: true, MediaStream: true, CanvasCaptureMediaStreamTrack: true, MediaStreamTrack: true, MessagePort: true, HTMLMetaElement: true, HTMLMeterElement: true, MIDIInputMap: true, MIDIOutputMap: true, MIDIInput: true, MIDIOutput: true, MIDIPort: true, MimeType: true, MimeTypeArray: true, MouseEvent: false, DragEvent: false, Navigator: true, WorkerNavigator: true, NavigatorConcurrentHardware: false, NavigatorUserMediaError: true, DocumentFragment: true, ShadowRoot: true, DocumentType: true, Node: false, NodeList: true, RadioNodeList: true, Notification: true, HTMLObjectElement: true, OffscreenCanvas: true, HTMLOptionElement: true, HTMLOutputElement: true, OverconstrainedError: true, HTMLParagraphElement: true, HTMLParamElement: true, PasswordCredential: true, PaymentRequest: true, PerformanceEntry: true, PerformanceLongTaskTiming: true, PerformanceMark: true, PerformanceMeasure: true, PerformanceNavigationTiming: true, PerformancePaintTiming: true, PerformanceResourceTiming: true, TaskAttributionTiming: true, PerformanceServerTiming: true, Plugin: true, PluginArray: true, PointerEvent: true, PresentationAvailability: true, PresentationConnection: true, HTMLProgressElement: true, ProgressEvent: true, ResourceProgressEvent: true, PushMessageData: true, RelatedApplication: true, RTCDataChannel: true, DataChannel: true, RTCLegacyStatsReport: true, RTCStatsReport: true, ScreenOrientation: true, HTMLScriptElement: true, HTMLSelectElement: true, SharedWorkerGlobalScope: true, HTMLSlotElement: true, SourceBuffer: true, SourceBufferList: true, HTMLSpanElement: true, SpeechGrammar: true, SpeechGrammarList: true, SpeechRecognitionResult: true, SpeechSynthesisEvent: true, SpeechSynthesisUtterance: true, SpeechSynthesisVoice: true, Storage: true, HTMLStyleElement: true, StyleSheet: false, HTMLTableElement: true, HTMLTableRowElement: true, HTMLTableSectionElement: true, HTMLTemplateElement: true, HTMLTextAreaElement: true, TextTrack: true, TextTrackCue: false, TextTrackCueList: true, TextTrackList: true, TimeRanges: true, Touch: true, TouchEvent: true, TouchList: true, TrackDefaultList: true, CompositionEvent: true, FocusEvent: true, TextEvent: true, UIEvent: false, URL: true, HTMLVideoElement: true, VideoTrack: true, VideoTrackList: true, VTTCue: true, VTTRegion: true, WheelEvent: true, Window: true, DOMWindow: true, DedicatedWorkerGlobalScope: true, ServiceWorkerGlobalScope: true, WorkerGlobalScope: false, Attr: true, CSSRuleList: true, ClientRect: true, DOMRect: true, GamepadList: true, NamedNodeMap: true, MozNamedAttrMap: true, Report: true, SpeechRecognitionResultList: true, StyleSheetList: true, IDBCursor: false, IDBCursorWithValue: true, IDBDatabase: true, IDBIndex: true, IDBKeyRange: true, IDBObjectStore: true, IDBObservation: true, IDBVersionChangeEvent: true, SVGAngle: true, SVGAElement: true, SVGCircleElement: true, SVGClipPathElement: true, SVGDefsElement: true, SVGEllipseElement: true, SVGForeignObjectElement: true, SVGGElement: true, SVGGeometryElement: true, SVGImageElement: true, SVGLineElement: true, SVGPathElement: true, SVGPolygonElement: true, SVGPolylineElement: true, SVGRectElement: true, SVGSwitchElement: true, SVGTSpanElement: true, SVGTextContentElement: true, SVGTextElement: true, SVGTextPathElement: true, SVGTextPositioningElement: true, SVGUseElement: true, SVGGraphicsElement: false, SVGLength: true, SVGLengthList: true, SVGNumber: true, SVGNumberList: true, SVGPointList: true, SVGRect: true, SVGScriptElement: true, SVGStringList: true, SVGAnimateElement: true, SVGAnimateMotionElement: true, SVGAnimateTransformElement: true, SVGAnimationElement: true, SVGDescElement: true, SVGDiscardElement: true, SVGFEBlendElement: true, SVGFEColorMatrixElement: true, SVGFEComponentTransferElement: true, SVGFECompositeElement: true, SVGFEConvolveMatrixElement: true, SVGFEDiffuseLightingElement: true, SVGFEDisplacementMapElement: true, SVGFEDistantLightElement: true, SVGFEFloodElement: true, SVGFEFuncAElement: true, SVGFEFuncBElement: true, SVGFEFuncGElement: true, SVGFEFuncRElement: true, SVGFEGaussianBlurElement: true, SVGFEImageElement: true, SVGFEMergeElement: true, SVGFEMergeNodeElement: true, SVGFEMorphologyElement: true, SVGFEOffsetElement: true, SVGFEPointLightElement: true, SVGFESpecularLightingElement: true, SVGFESpotLightElement: true, SVGFETileElement: true, SVGFETurbulenceElement: true, SVGFilterElement: true, SVGLinearGradientElement: true, SVGMarkerElement: true, SVGMaskElement: true, SVGMetadataElement: true, SVGPatternElement: true, SVGRadialGradientElement: true, SVGSetElement: true, SVGStopElement: true, SVGStyleElement: true, SVGSymbolElement: true, SVGTitleElement: true, SVGViewElement: true, SVGGradientElement: true, SVGComponentTransferFunctionElement: true, SVGFEDropShadowElement: true, SVGMPathElement: true, SVGElement: false, SVGSVGElement: true, SVGTransform: true, SVGTransformList: true, AudioBuffer: true, AudioParam: true, AudioParamMap: true, AudioTrack: true, AudioTrackList: true, AudioContext: true, webkitAudioContext: true, BaseAudioContext: false, OfflineAudioContext: true, WebGLActiveInfo: true, SQLResultSetRowList: true}); H.NativeTypedArray.$nativeSuperclassTag = "ArrayBufferView"; H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin.$nativeSuperclassTag = "ArrayBufferView"; H._NativeTypedArrayOfDouble_NativeTypedArray_ListMixin_FixedLengthListMixin.$nativeSuperclassTag = "ArrayBufferView"; H.NativeTypedArrayOfDouble.$nativeSuperclassTag = "ArrayBufferView"; H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin.$nativeSuperclassTag = "ArrayBufferView"; H._NativeTypedArrayOfInt_NativeTypedArray_ListMixin_FixedLengthListMixin.$nativeSuperclassTag = "ArrayBufferView"; H.NativeTypedArrayOfInt.$nativeSuperclassTag = "ArrayBufferView"; W._SourceBufferList_EventTarget_ListMixin.$nativeSuperclassTag = "EventTarget"; W._SourceBufferList_EventTarget_ListMixin_ImmutableListMixin.$nativeSuperclassTag = "EventTarget"; W._TextTrackList_EventTarget_ListMixin.$nativeSuperclassTag = "EventTarget"; W._TextTrackList_EventTarget_ListMixin_ImmutableListMixin.$nativeSuperclassTag = "EventTarget"; })(); Function.prototype.call$1 = function(a) { return this(a); }; Function.prototype.call$0 = function() { return this(); }; Function.prototype.call$2 = function(a, b) { return this(a, b); }; Function.prototype.call$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$2$1 = function(a) { return this(a); }; Function.prototype.call$4 = function(a, b, c, d) { return this(a, b, c, d); }; Function.prototype.call$1$1 = function(a) { return this(a); }; Function.prototype.call$3$1 = function(a) { return this(a); }; Function.prototype.call$3$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$2$2 = function(a, b) { return this(a, b); }; Function.prototype.call$1$2 = function(a, b) { return this(a, b); }; Function.prototype.call$5 = function(a, b, c, d, e) { return this(a, b, c, d, e); }; Function.prototype.call$1$0 = function() { return this(); }; Function.prototype.call$2$0 = function() { return this(); }; Function.prototype.call$1$5 = function(a, b, c, d, e) { return this(a, b, c, d, e); }; Function.prototype.call$2$3 = function(a, b, c) { return this(a, b, c); }; Function.prototype.call$6 = function(a, b, c, d, e, f) { return this(a, b, c, d, e, f); }; Function.prototype.call$10 = function(a, b, c, d, e, f, g, h, i, j) { return this(a, b, c, d, e, f, g, h, i, j); }; Function.prototype.call$9 = function(a, b, c, d, e, f, g, h, i) { return this(a, b, c, d, e, f, g, h, i); }; Function.prototype.call$7 = function(a, b, c, d, e, f, g) { return this(a, b, c, d, e, f, g); }; Function.prototype.call$8 = function(a, b, c, d, e, f, g, h) { return this(a, b, c, d, e, f, g, h); }; convertAllToFastObject(holders); convertToFastObject($); (function(callback) { if (typeof document === "undefined") { callback(null); return; } if (typeof document.currentScript != "undefined") { callback(document.currentScript); return; } var scripts = document.scripts; function onLoad(event) { for (var i = 0; i < scripts.length; ++i) scripts[i].removeEventListener("load", onLoad, false); callback(event.target); } for (var i = 0; i < scripts.length; ++i) scripts[i].addEventListener("load", onLoad, false); })(function(currentScript) { init.currentScript = currentScript; var callMain = F.main0; if (typeof dartMainRunner === "function") dartMainRunner(callMain, []); else callMain([]); }); })();